diff --git a/.github/workflows/build-wheels.yml b/.github/workflows/build-wheels.yml new file mode 100644 index 00000000..47de5259 --- /dev/null +++ b/.github/workflows/build-wheels.yml @@ -0,0 +1,62 @@ +name: Mercury wheels Build and Publish to PyPI + +on: + workflow_dispatch: + push: + branches: + - main + +jobs: + build-mercury-wheels: + name: Build wheels on ${{ matrix.os }} + runs-on: ${{ matrix.os }} + environment: + name: pypi + url: https://pypi.org/p/mercury-python + permissions: + id-token: write + strategy: + matrix: + os: [ubuntu-latest] + + steps: + - uses: actions/checkout@v4 + with: + detch-depth: 1 + + - name: Install packages + run: sudo apt-get update && sudo apt-get install -y zlib1g-dev libssl-dev make + + - name: Set up Python + uses: actions/setup-python@v3 + with: + python-version: '3.x' + + - name: Set up QEMU + if: runner.os == 'Linux' + uses: docker/setup-qemu-action@v3 + with: + platforms: all + + - name: Install pip packages + run: python -m pip install cython cibuildwheel==2.20.0 + + - name: Build Mercury + run: ./configure && make && cp -r src/cython/* ./ + + - name: Build wheels + uses: pypa/cibuildwheel@v2.20.0 + env: + CIBW_ARCHS_LINUX: x86_64 aarch64 + CIBW_ENVIRONMENT: CC='g++' CXX='g++' MERCURY_DIR='./' + CIBW_SKIP: "*-musllinux_* pp*" + CIBW_BEFORE_ALL: yum install -y openssl-devel make zlib-devel || apt-get install -y zlib1g-dev libssl-dev make || apk add zlib1g-dev libssl-dev make + CIBW_TEST_COMMAND: cd {project} && python mercury_python_test.py + + - name: Upload to S3 + env: + AWS_ACCESS_KEY_ID: ${{secrets.ACCESS_KEY_ID}} + AWS_SECRET_ACCESS_KEY: ${{secrets.ACCESS_KEY_SECRET}} + AWS_DEFAULT_REGION: us-east-1 + S3_BUCKET: ${{secrets.S3_BUCKET}} + run: VERSION=$(cat src/cython/_version.py | tr -d '\n' | cut -d \' -f2) && aws s3 cp wheelhouse/ "s3://$S3_BUCKET/version=$VERSION" --recursive diff --git a/Makefile b/Makefile index a420e707..7307c5c3 100644 --- a/Makefile +++ b/Makefile @@ -21,8 +21,8 @@ else endif .PHONY: install install-no-systemd -install: install-mercury install-resources install-etc-config install-systemd -install-nosystemd: install-mercury install-resources install-etc-config +install: install-mercury install-etc-config +install-nosystemd: install-mercury install-etc-config .PHONY: install-mercury install-mercury: @@ -33,17 +33,7 @@ else $(INSTALLDATA) mercury /usr/share/bash-completion/completions/ # note: completion script has same name as binary endif -.PHONY: install-resources -install-resources: -ifneq ($(wildcard src/Makefile), src/Makefile) - @echo $(COLOR_RED) "error: run ./configure before running make (src/Makefile is missing)" $(COLOR_OFF) -else - cd resources && $(MAKE) install -endif - -# leave this variable empty; we want to force the user to set it, as a -# reminder that they should create a usable local configuration -MERCURY_CFG = +MERCURY_CFG = mercury.cfg .PHONY: install-etc-config install-etc-config: ifneq ($(wildcard src/Makefile), src/Makefile) @@ -53,10 +43,7 @@ ifneq ($(MERCURY_CFG),) $(INSTALL) -d /etc/mercury $(INSTALLDATA) $(MERCURY_CFG) /etc/mercury/mercury.cfg else - @echo $(COLOR_RED) "error: you must specify the configuration file; run as 'make install MERCURY_CFG=filename'" $(COLOR_OFF) - @echo $(COLOR_RED) "where 'filename' is the configuration file you want to use for this installation. You can" $(COLOR_OFF) - @echo $(COLOR_RED) "use mercury.cfg as a template, but you *must* change the interface line to the appropriate" $(COLOR_OFF) - @echo $(COLOR_RED) "network interface for your system. (Use 'cat /proc/net/dev' to see Linux interfaces.)" $(COLOR_OFF) + @echo $(COLOR_RED) "error: no configuration file specified; run as 'make install MERCURY_CFG=filename'" $(COLOR_OFF) @/bin/false endif endif @@ -77,7 +64,6 @@ ifneq ($(wildcard src/Makefile), src/Makefile) @echo $(COLOR_RED) "error: run ./configure before running make (src/Makefile is missing)" $(COLOR_OFF) else cd src && $(MAKE) install-nonroot - cd resources && $(MAKE) install-nonroot endif .PHONY: install-certtools @@ -99,7 +85,6 @@ else rm -f /etc/mercury/mercury.cfg rm -rf /etc/mercury cd src && $(MAKE) uninstall - cd resources && $(MAKE) uninstall endif .PHONY: uninstall-systemd @@ -189,10 +174,8 @@ ifneq ($(wildcard src/Makefile), src/Makefile) else cd src && $(MAKE) distclean cd test && $(MAKE) distclean - cd resources && $(MAKE) distclean rm -rf autom4te.cache config.log config.status Makefile_helper.mk rm -f lib/*.so - -git clean -xf endif .PHONY: package-deb diff --git a/VERSION b/VERSION index 6a6a3d8e..097a15a2 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -2.6.1 +2.6.2 diff --git a/build_pkg.sh b/build_pkg.sh index e4516b64..b687db51 100755 --- a/build_pkg.sh +++ b/build_pkg.sh @@ -89,8 +89,7 @@ if [ "$BUILDTYPE" == "deb" ]; then --after-remove ./install_mercury/postuninstall_remove \ --deb-after-purge ./install_mercury/postuninstall_purge \ ./src/mercury=/usr/local/bin/ mercury.cfg=/etc/mercury/ \ - ./mercury=/usr/share/bash-completion/completions/ \ - ./resources/resources.tgz=/usr/local/share/mercury/ + ./mercury=/usr/share/bash-completion/completions/ elif [ "$BUILDTYPE" == "rpm" ]; then @@ -104,6 +103,5 @@ elif [ "$BUILDTYPE" == "rpm" ]; then --description "$DESCRIPTION" \ --after-remove ./install_mercury/postuninstall_rpm \ ./install_mercury/mercury.service=/usr/lib/systemd/system/ \ - ./src/mercury=/usr/local/bin/ mercury.cfg=/etc/mercury/ \ - ./resources/pyasn.db=/usr/local/share/mercury/ ./resources/fingerprint_db.json.gz=/usr/local/share/mercury/ + ./src/mercury=/usr/local/bin/ mercury.cfg=/etc/mercury/ fi diff --git a/configure b/configure index 69c31a49..46b0f7fa 100755 --- a/configure +++ b/configure @@ -5925,7 +5925,7 @@ else case e in #( printf "%s\n" "$as_me: WARNING: llvm not found; make fuzz-test may not work" >&2;} ;; esac fi -ac_config_files="$ac_config_files src/libmerc/Makefile src/cython/Makefile src/Makefile test/Makefile unit_tests/Makefile resources/Makefile Makefile_helper.mk install_mercury/mercury.service" +ac_config_files="$ac_config_files src/libmerc/Makefile src/cython/Makefile src/Makefile test/Makefile unit_tests/Makefile Makefile_helper.mk install_mercury/mercury.service" cat >confcache <<\_ACEOF # This file is a shell script that caches the results of configure @@ -6633,7 +6633,6 @@ do "src/Makefile") CONFIG_FILES="$CONFIG_FILES src/Makefile" ;; "test/Makefile") CONFIG_FILES="$CONFIG_FILES test/Makefile" ;; "unit_tests/Makefile") CONFIG_FILES="$CONFIG_FILES unit_tests/Makefile" ;; - "resources/Makefile") CONFIG_FILES="$CONFIG_FILES resources/Makefile" ;; "Makefile_helper.mk") CONFIG_FILES="$CONFIG_FILES Makefile_helper.mk" ;; "install_mercury/mercury.service") CONFIG_FILES="$CONFIG_FILES install_mercury/mercury.service" ;; diff --git a/configure.ac b/configure.ac index 5feb9fb9..65efec53 100644 --- a/configure.ac +++ b/configure.ac @@ -102,5 +102,5 @@ AS_IF([test "x$CLANGPP" = xyes], AS_IF([test "x$LLVM" = xyes], [], [AC_MSG_WARN([llvm not found; make fuzz-test may not work])]) -AC_CONFIG_FILES(src/libmerc/Makefile src/cython/Makefile src/Makefile test/Makefile unit_tests/Makefile resources/Makefile Makefile_helper.mk install_mercury/mercury.service) +AC_CONFIG_FILES(src/libmerc/Makefile src/cython/Makefile src/Makefile test/Makefile unit_tests/Makefile Makefile_helper.mk install_mercury/mercury.service) AC_OUTPUT diff --git a/doc/CHANGELOG.md b/doc/CHANGELOG.md index 7ba8efe3..96c46daf 100644 --- a/doc/CHANGELOG.md +++ b/doc/CHANGELOG.md @@ -1,5 +1,31 @@ # CHANGELOG for Mercury +## VERSION 2.6.2 +* Removed default interface from template configuration file + `mercury.cfg` and added runtime check to require that an interface + be specified when a configuration file is used. +* Added `--crypto-assess=` option, which implements an + assessment of the cryptographic security of TLS, DTLS, and QUIC + sessions and clients. The currently implemented policies are + `quantum_safe` and `quantum_safe_verbose`. The former is the + default, and the latter provides human-readable names. +* Integrated support for the IPSec protocols IKEv2 and ESP. +* Integrated minimal LDAP support, which provides details only for + `bindRequest` and `bindResponse` messages. +* Added support for the `LINKTYPE_LINUX_SLL` (Linux 'Cooked Capture'). +* Improved the `stats` test to avoid spurious failues, by allowing + mercury JSON output and mercury stats counts to differ by up to + 10% due to lossy stats collection. +* Enabled `--raw-features` and `--reassembly` to be enabled through + the configuration file. +* Refactored `pmercury` to use `c++` code where possible. +* Re-enabled ^C signal handler for PCAP processing. +* Moved `dns.id` and `ip.id` fields to the tail end of the JSON + record, to improve Parquet compressibility. +* Classification improved to allow multiple fingerprints to utilize + the same Weighted Naive Bayes models. +* Various internal improvements and unit test tweaks. + ## VERSION 2.6.1 * Improved STUN implementation: added test cases, fixed fingerprint feature nits, renamed variables for consistency with the RFCs, and diff --git a/doc/sphinx/Doxyfile b/doc/sphinx/Doxyfile index 7f80f004..a5cf045c 100644 --- a/doc/sphinx/Doxyfile +++ b/doc/sphinx/Doxyfile @@ -842,6 +842,7 @@ FILE_PATTERNS = *.c \ *.dox \ *.py \ *.pyw \ + *.pyx \ *.f90 \ *.f95 \ *.f03 \ diff --git a/doc/sphinx/source/conf.py b/doc/sphinx/source/conf.py index 03049384..a60e52cd 100644 --- a/doc/sphinx/source/conf.py +++ b/doc/sphinx/source/conf.py @@ -15,10 +15,17 @@ # -- General configuration --------------------------------------------------- # https://www.sphinx-doc.org/en/master/usage/configuration.html#general-configuration +import os import sys sys.path.append("./docproj/ext/breathe/") +sys.path.append(os.path.abspath('../../../src/cython/')) -extensions = ['breathe'] +extensions = [ + 'breathe', + 'sphinx.ext.autodoc', + 'sphinx.ext.viewcode', + 'sphinx_autodoc_typehints' +] breathe_default_project = "mercury" @@ -29,7 +36,7 @@ # https://www.sphinx-doc.org/en/master/usage/configuration.html#options-for-html-output html_theme = 'sphinx_rtd_theme' # 'alabaster' -html_static_path = ['_static'] +#html_static_path = ['_static'] ################################### @@ -38,5 +45,5 @@ } breathe_projects_source = { - "mercury" : ( "../../../", ["src/libmerc/datum.h"] ) + "mercury" : ( "../../../", ["src/libmerc/datum.h"]) } diff --git a/doc/sphinx/source/index.rst b/doc/sphinx/source/index.rst index e1484109..dd4bd0f6 100644 --- a/doc/sphinx/source/index.rst +++ b/doc/sphinx/source/index.rst @@ -72,6 +72,12 @@ Mercury Library Documentation .. doxygengroup:: bitoperations :project: mercury +Mercury Python Library Documentation +==================================== + +.. automodule:: mercury + :members: + :show-inheritance: Indices and tables diff --git a/mercury.cfg b/mercury.cfg index 98c8a4e7..e9d09d30 100644 --- a/mercury.cfg +++ b/mercury.cfg @@ -8,10 +8,10 @@ # ignored, as are unparseable lines. # network interface for packet capture -capture = ens33 +#capture = ens33 # name of JSON output file or directory for fingerprints and metadata -fingerprint = fingerprint.json +fingerprint = metadata.json # filter out packets based on protocol #select = dns,dhcp,dtls,tcp,http,tls,wireguard @@ -23,13 +23,13 @@ fingerprint = fingerprint.json # nonselected-udp-data # 'dns-json' causes DNS responses to be reported with full detail in JSON -# dns-json +dns-json # 'certs-json' causes certificates to be reported with full detail in JSON -# certs-json +certs-json # 'metadata' causes extensive metadata to be reported in JSON -# metadata +metadata # after dropping root privileges, change to this user user = mercury @@ -47,7 +47,7 @@ threads = cpu buffer = 0.05 # perform analysis, include results in JSON output file -analysis = 1 +#analysis = 1 # set resource directory # resources = /usr/local/share/mercury/resources.tgz diff --git a/python/MANIFEST.in b/python/MANIFEST.in deleted file mode 100644 index 558c495e..00000000 --- a/python/MANIFEST.in +++ /dev/null @@ -1,6 +0,0 @@ -include ../resources/* -include ../resources/equivalence-classes/* -include ../LICENSE -include README.md -include config.yaml -include requirements.txt diff --git a/python/README.md b/python/README.md index e2b87fde..f4ab9d84 100644 --- a/python/README.md +++ b/python/README.md @@ -1,280 +1,74 @@ # pmercury -pmercury provides a Python reference implementation for network fingerprinting and advanced analysis techniques. As an example, the code can generate a TLS fingerprint given a network interface or packet capture file, and then leverage the provided fingerprint database to perform process identification. +`pmercury` is a tool to process packet captures or listen to a network interface and report JSON records similar to `mercury`. `pmercury` is powered by the cython interface into the core `mercury` code, ensuring consistent behavior between the two programs. -There are four distinct (but related) components: +In additional to `pmercury`, this folder contains two tools to facilitate users building a custom `mercury`-compatible resources file that enables process identification: -* protocols/*.pyx - A Python libraries providing APIs for fingerprint generation and inferencing -* pmercury - A wrapper around protocols/*.pyx that can process pcaps or listen to a network interface -* ../src/python-inference/* - A Cython port of protocols/tls.pyx that can be called from C++14 or higher code (and is used to perform process inference in mercury) -* ../resources/fingerprint_db.json.gz - The star of the show; a detailed database associating billions of network and endpoint observations +* `mercury_network_monitor.py`: a data collection tool that associates the process and operating system with network protocol fingerprints and destination context. +* `build_mercury_resources.py`: a tool that operates on `mercury_network_monitor.py` output to build a `mercury`-compatible resources file. -## Installation -pmercury depends on libpcap-dev: - -```bash -sudo apt-get install libpcap-dev -``` - -On Linux and Python 3.6 and 3.7, install pmercury with pip: - -```bash -pip3 install pmercury -``` - -To build cython extensions: - -```bash -python setup.py build_ext --inplace -``` - -To install pmercury: - -```bash -python setup.py install -``` - -## pmercury - -pmercury is designed to highlight the functionality of the protocol classes and to provide a simple interface into the fingerprint database. - - -### Dependencies +## Dependencies pmercury requires Python 3.6+ along with the following packages: ```bash -pip3 install pyasn -pip3 install hpack pip3 install pypcap -pip3 install pyyaml -pip3 install cryptography - -pip3 install pyasn hpack pypcap pyyaml cryptography +pip3 install mercury-python ``` -pip3 can be installed with 'sudo apt install python3-pip’ on debian/ubuntu, or the equivalent command for your OS. - -### Usage - -```bash -./pmercury [OPTIONS] [INPUT] [OUTPUT] -INPUT - [-c or --capture] capture_interface # live packet capture - [-r or --read] read_file_name # read packets from file - [-d or --fp_db] fingerprint_database # fingerprint database file (if you are not using the default) +## Usage -OUTPUT - [-f or --fingerprint] fingerprint_file_name # write fingerprints to file (stdout is the default) +Basic `pmercury` is similar to `mercury`'s command line functionality: -OPTIONS - [-l or --lookup] # return database entry for a double quoted fingerprint string - [-n or --num-procs] # return the top-n most probable processes - [-s or --sslkeylogfile] # filename of sslkeylog output for decryption - -FLAGS - [-a or --analysis] # perform process identification - [-w or --human-readable] # return human readable fingerprint string - [-g or --group-flows] # aggregate packet-based fingerprints to flow-based - [-e or --endpoint] # aggregate packet-based fingerprints to endpoint-based - [-x or --experimental] # turns on all experimental features - [-h or --help] # help text +```bash +usage: pmercury [-h] [-c CAPTURE_INTERFACE] [-r PCAP_FILE] [-f OUTPUT_FILE] [-a] [-x RESOURCES] [-t] + +options: + -h, --help show this help message and exit + -c CAPTURE_INTERFACE, --capture CAPTURE_INTERFACE + live packet capture + -r PCAP_FILE, --read PCAP_FILE + read packets from file + -f OUTPUT_FILE, --fingerprint OUTPUT_FILE + write fingerprints to file + -a, --analysis perform process identification + --resources RESOURCES + use resources file + --reassembly turn on reassembly ``` -The input can be either a list of packet capture files or a network interface. +## Custom Databases -A default fingerprint database is supplied in the resources directory. Updating the repository is currently the only way to get the latest generated database. If you specify your own database, there may be some problems if the formatting is not as expected. Please raise an issue if this is an important use case for you. +The analysis functionality needs a current resources file that contains a fingerprint database. To facilitate testing, we provide some simple python tools to help collect ground truth and build a resources archive. -The -a switch tells pmercury to perform inferencing on each observed ClientHello packet. The results are comprised of a 4-tuple specifying the name of the process (process) and a score representing the confidence of the algorithm in selecting that process (score). -### Examples +### Collecting Ground Truth -Looking up a fingerprint string in the database: +`mercury_network_monitor.py` extracts network metadata through the `mercury` cython interface and endpoint metadata (like the process name) through the cross-platform `psutil` python package. Sample usage: ```bash -~/ $: ./pmercury -l "(0301)(c014c01300390035002fc00ac00900380032000a001300050004)((0000)(000a0006000400170018)(000b00020100)(0017)(ff01))" | jq . -{ - "str_repr": "(0301)(c014c01300390035002fc00ac00900380032000a001300050004)((0000)(000a0006000400170018)(000b00020100)(0017)(ff01))", - "first_seen": "2019-07-22", - "last_seen": "2019-07-25", - "max_implementation_date": "2015-09", - "min_implementation_date": "1999-01", - "total_count": 2, - "process_info": [ - ... +~/ $: python mercury_network_monitor.py -i -o ``` -Performing process identification: +To run without root, you may need to give your specific version of python special privileges: ```bash -~/ $: ./pmercury -r ../test/data/top_100_fingerprints.pcap -a | jq . -{ - "src_ip": "10.0.2.15", - "dst_ip": "172.217.7.228", - "src_port": 37582, - "dst_port": 443, - "protocol": 6, - "server_name": "www.google.com", - "timestamp": "2019-08-06 13:45:51.157055", - "fingerprints": { - "tls": "(0303)(c02c...)((0000)...)" - } - "analysis": { - "process": "Microsoft Office (WinNT)", - "score": 0.9811716395 - } -} -{ - ... +~/ $: sudo setcap cap_net_raw,cap_net_admin,cap_dac_override+eip /usr/bin/python3.11 ``` -### Experimental Features - -TLS client fingerprint extraction and process identification is relatively mature. The following are additional pmercury features that either have less thought put into their development, undergone less testing, and/or do not have associated fingerprint databases: - -* TLS decryption and fingerprint extraction - Currently decrypts TLS sessions when supplied a file in [NSS Key Log Format](https://developer.mozilla.org/en-US/docs/Mozilla/Projects/NSS/Key_Log_Format) and extracts the internal HTTP/1.x and HTTP/2 requests and responses. -* TLS server certificate extraction - Currently extracts metadata from the first certificate; no associated auxiliary data. -* SSH server/client fingerprint extraction - Currently extracts metadata from the initial two messages from an SSH client or server. -These features can be turned on by invoking the **-x** option. +### Building a `mercury`-Compatible Resources File -To perform decryption with HTTP/2 data extraction: +Once `mercury_network_monitor.py` generates a sufficient amount of labeled records, you can then generate a resources file: ```bash -~/ $: ./pmercury -r ../test/data/test_decrypt.pcap -s ../test/data/sslkeylogfile.log -w -x -{ - "src_ip": "10.0.2.15", - "dst_ip": "216.58.194.163", - "src_port": 46362, - "dst_port": 443, - "protocol": 6, - "event_start": "2019-09-04 16:03:52.933118", - "fingerprints": { - "tls_decrypt_h2": "(3a6d6574686f643a20474554)..." - }, - "tls_decrypt_h2": [ - {":method": "GET"}, - {":authority": "clientservices.googleapis.com"}, - {":scheme": "https"}, - {":path": "/chrome-variations/seed?osname=linux&channel=beta&milestone=76"}, - {"if-none-match": "314f8267d4516ba24ac54575521acebdbe10d2ec"}, - {"a-im": "x-bm,gzip"}, - {"sec-fetch-site": "none"}, - {"user-agent": "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/76.0.3809.80 Safari/537.36"}, - {"accept-encoding": "gzip, deflate, br"} - ] -} +~/ $: python build_mercury_resources.py -d -r ``` - -## protocols/tls.py - -tls.py is designed to be a relatively self-contained Python library that provides a rich set of features w.r.t. TLS fingerprinting. The goal is for this library to be as easy as possible to integrate into any Python3 program. Please raise issues if it there are any awkward integration points. - -### Dependencies - -tls.py requires Python 3.6 along with the following packages: +Within the resources directory that you chose, there will be a `resources-mp.tgz` file, which can be used to enable inline mercury classification: ```bash -sudo pip3 install numpy -sudo pip3 install pyasn -``` - -### Useful Functions - -The TLS class can be instantiated with the following: - -```python -tls = TLS(database) -``` - -tls.py has the ability to extract a fingerprint string from the TCP data associated with a ClientHello. This function will return the fingerprint string and server_name. If the exact fingerprint string was not present in the database, this function will attempt to find and return an approximate match: - -```python -def fingerprint(self, data): - ... - return protocol_type, fp_str_, approx_str_, server_name -``` - -Process identification is also handled, and is implemented with the help of lru_cache to improve performance. The function takes a fingerprint string, approximate fingerprint string which can be None, SNI, destination address, destination port, and an optional integer specifying the number of potential processes to return. This function return a dictionary with the inferred process, score, malware indicator, probability of malware, and an optional list of probable processes (probable_processes): - -```python -def proc_identify(self, fp_str_, context_, dest_addr, dest_port, list_procs=0): - server_name = None - if context_ != None and 'server_name' in context_: - server_name = context_['server_name'] - # fingerprint approximate matching if necessary - ... - - return self.identify(fp_str_, server_name, dest_addr, dest_port, list_procs) -``` - - -## protocols/*.py -Other supported protocols in varying stages of development include: -* TCP fingerprint extraction - Currently only based on TCP options; no fingerprint database. -* TLS server fingerprint extraction - Currently only based on ServerHello; no fingerprint database. -* HTTP/1.x client fingerprint extraction - Currently extracts all headers from the HTTP/1.x request; no fingerprint database. -* HTTP/1.x server fingerprint extraction - Currently extracts all headers from the HTTP/1.x response; no fingerprint database. -* DHCP - Currently extracts DHCP options and contextual data; no fingerprint database - - -## Cython C++ Inferface - - -## Fingerprint Database - -The fingerprint database is a gzipped, 1 JSON object per line file. Each fingerprint contains the following metadata: - -```javascript -{ - "str_repr": "(0303)(003d...)((0000)...)", // String representation of the fingerprint - "first_seen": "2018-06-05", // Date the fingerprint was first observed - "last_seen": "2019-08-10", // Date the fingerprint was last observed - "max_implementation_date": "2008-08", // Maximum RFC date that is associated with parameters in the fingerprint - "min_implementation_date": "2002-06", // Minimum RFC date that is associated with parameters in the fingerprint - "total_count": 123, // Total number of sessions observed using this fingerprint - "process_info": [ // Top-10 most common processes using this fingerprint - ... - ] -} -``` - -Each process object contains some metadata along with objects that represent the destinations the process was observed contacting. The destination information is represented as equivalence classes, e.g., IP addresses are generalized to autonomous systems. For this open source version, the destination information is computed from the top-100 most popular destinations per process. - -```javascript -{ - "process": "nmap.exe", // Name of the process - "sha256": "F78 ... 99B", // SHA-256 hash of the process executable - "count": 10, // Total number of sessions observed using this process/fingerprint pair - "classes_ip_as": { // Autonomous system equivalence class for IP addresses - "109:Cisco_Systems": 6, - ... - } - "classes_hostname_tlds": { // Top level domain equivalence class for server name indication - "com": 9, - ... - } - "classes_hostname_domains": { // Domain name equivalence class for server name indication - "cisco.com": 6, - ... - } - "classes_port_applications": { // Port application equivalence class for port number - "https": 9, - ... - } - "os_info": { // Top-5 most common operating systems observed with this process/fingerprint pair - "(WinNT)...(10.0.17134)": 8, // (OS)(OS Edition)(OS Version) -> number of sessions - ... - } -} -``` - - -## Acknowledgments - -This product includes GeoLite2 data created by MaxMind, available from [https://www.maxmind.com](https://www.maxmind.com). - -We make use of Mozilla's [Public Suffix List](https://publicsuffix.org/list/) which is subject to the terms of the [Mozilla Public License, v. 2.0](https://mozilla.org/MPL/2.0/). +~/ $: ../src/mercury -r -f output.json -a --resources=resources/resources-mp.tgz +``` \ No newline at end of file diff --git a/python/build_mercury_resources.py b/python/build_mercury_resources.py new file mode 100644 index 00000000..4102cfb9 --- /dev/null +++ b/python/build_mercury_resources.py @@ -0,0 +1,190 @@ +import os +import json +import argparse +import datetime +import subprocess +from collections import defaultdict + + +class MercResourcesBuilder: + + def __init__(self, data_dir, resources_dir): + self.SUPPORTED_PROTOCOLS = set(['tls','http','quic']) + + self.fp_database = {} + self.resources_dir = resources_dir + + # gen database + fpdb, tls_prevalence = self.gen_database(data_dir) + + # write out fingerprint_db + with open(f'{self.resources_dir}/fingerprint_db.json','w') as out_: + for fp in fpdb: + out_.write(f'{json.dumps(fp)}\n') + # create version file + with open(f'{self.resources_dir}/VERSION','w') as out_: + out_.write(f'{datetime.datetime.now():%Y.%m.%d}; 2.0.full\n') + # create DoH watchlist file + with open(f'{self.resources_dir}/doh-watchlist.txt','w') as out_: + out_.write(f'1.1.1.1\n') + out_.write(f'1.0.0.1\n') + out_.write(f'8.8.8.8\n') + out_.write(f'8.8.4.4\n') + out_.write(f'9.9.9.9\n') + # create fp prevalence file + with open(f'{self.resources_dir}/fp_prevalence_tls.txt','w') as out_: + for v,k in sorted([(v,k) for k,v in tls_prevalence.items()], reverse=True)[:1000]: + out_.write(f'{k}\n') + subprocess.run(['tar', 'cvzf', f'{self.resources_dir}/resources-mp.tgz', f'-C', self.resources_dir, + 'fingerprint_db.json', 'VERSION', 'doh-watchlist.txt', 'fp_prevalence_tls.txt']) + + + # TODO: use python psl package? + def get_domain_name(self, hostname): + if hostname == None or hostname == 'None': + return 'None' + + components = hostname.split('.') + if len(components) <= 2: + return hostname + + return f'{components[-2]}.{components[-1]}' + + + def extract_data_features(self, merc_record): + + # check if fingerprint is available and a supported type + if 'fingerprints' not in merc_record: + return None, None, None, None, None, None, None, None + fp_type = next(iter(merc_record['fingerprints'])) + if fp_type not in self.SUPPORTED_PROTOCOLS: + return None, None, None, None, None, None, None, None + + # check if we got process information + if 'ground_truth' not in merc_record or 'process_name' not in merc_record['ground_truth']: + return None, None, None, None, None, None, None, None + + if 'parent_name' in merc_record['ground_truth']: + label = f"({merc_record['ground_truth']['parent_name']})({merc_record['ground_truth']['process_name']})" + else: + label = f"(Unknown)({merc_record['ground_truth']['process_name']})" + sha256 = merc_record['ground_truth']['process_hash'] + fp_str = merc_record['fingerprints'][fp_type] + dst_ip = merc_record['dst_ip'] + dst_port = merc_record['dst_port'] + if fp_type in ['tls','quic']: + try: + hostname = merc_record['tls']['client']['server_name'] + except: + hostname = 'None' + elif fp_type == 'http': + try: + hostname = merc_record['http']['request']['host'] + except: + hostname = 'None' + else: + hostname = 'None' + if fp_type == 'http': + try: + user_agent = merc_record['http']['request']['user_agent'] + except: + user_agent = 'None' + else: + user_agent = None + + return fp_type, label, sha256, fp_str, dst_ip, dst_port, hostname, user_agent + + def gen_database(self, data_dir): + fpdb = {} + tls_prevalence = defaultdict(int) + for filename in os.listdir(data_dir): + + for line in open(f'{data_dir}/{filename}'): + try: + merc_record = json.loads(line) + except: + continue + + fp_type, label, sha256, fp_str, dst_ip, dst_port, hostname, user_agent = self.extract_data_features(merc_record) + if label == None: + continue + if fp_type == 'tls': + tls_prevalence[fp_str] += 1 + + if fp_str not in fpdb: + fpdb[fp_str] = {} + fpdb[fp_str]['total_count'] = 0 + fpdb[fp_str]['fp_type'] = fp_type + fpdb[fp_str]['process_info'] = {} + if label not in fpdb[fp_str]['process_info']: + fpdb[fp_str]['process_info'][label] = {} + fpdb[fp_str]['process_info'][label]['count'] = 0 + fpdb[fp_str]['process_info'][label]['sha256'] = sha256 + fpdb[fp_str]['process_info'][label]['classes_port_port'] = defaultdict(int) + fpdb[fp_str]['process_info'][label]['classes_ip_ip'] = defaultdict(int) + fpdb[fp_str]['process_info'][label]['classes_user_agent'] = defaultdict(int) + fpdb[fp_str]['process_info'][label]['classes_hostname_sni'] = defaultdict(int) + fpdb[fp_str]['process_info'][label]['classes_hostname_domains'] = defaultdict(int) + + fpdb[fp_str]['total_count'] += 1 + fpdb[fp_str]['process_info'][label]['count'] += 1 + fpdb[fp_str]['process_info'][label]['classes_port_port'][str(dst_port)] += 1 + fpdb[fp_str]['process_info'][label]['classes_ip_ip'][dst_ip] += 1 + if hostname != None: + fpdb[fp_str]['process_info'][label]['classes_hostname_sni'][hostname] += 1 + fpdb[fp_str]['process_info'][label]['classes_hostname_domains'][self.get_domain_name(hostname)] += 1 + if user_agent != None: + fpdb[fp_str]['process_info'][label]['classes_user_agent'][user_agent] += 1 + + fpdb_out = [] + for fp_str, fp_data in fpdb.items(): + new_fp = {} + new_fp['str_repr'] = fp_str + new_fp['total_count'] = fp_data['total_count'] + new_fp['fp_type'] = fp_data['fp_type'] + new_fp['process_info'] = [] + for process, process_data in fp_data['process_info'].items(): + new_process = {} + new_process['process'] = process + new_process['count'] = process_data['count'] + new_process['sha256'] = process_data['sha256'] + new_process['malware'] = False + new_process['classes_port_port'] = {} + for k,v in process_data['classes_port_port'].items(): + new_process['classes_port_port'][k] = v + new_process['classes_ip_ip'] = {} + for k,v in process_data['classes_ip_ip'].items(): + new_process['classes_ip_ip'][k] = v + new_process['classes_user_agent'] = {} + for k,v in process_data['classes_user_agent'].items(): + new_process['classes_user_agent'][k] = v + new_process['classes_hostname_sni'] = {} + for k,v in process_data['classes_hostname_sni'].items(): + new_process['classes_hostname_sni'][k] = v + new_process['classes_hostname_domains'] = {} + for k,v in process_data['classes_hostname_domains'].items(): + new_process['classes_hostname_domains'][k] = v + + new_fp['process_info'].append(new_process) + fpdb_out.append(new_fp) + + return fpdb_out, tls_prevalence + + + +def main(): + parser = argparse.ArgumentParser() + parser.add_argument('-d','--data-dir',action='store',dest='data_dir', + help='path to location of mercury_network_monitor.py output',default='data') + parser.add_argument('-r','--resources-dir',action='store',dest='resources_dir', + help='path to write out resources file',default='resources') + args = parser.parse_args() + + mrb = MercResourcesBuilder(args.data_dir, args.resources_dir) + + +if __name__ == "__main__": + main() + + + diff --git a/python/config.yaml b/python/config.yaml deleted file mode 100644 index 6fe22be1..00000000 --- a/python/config.yaml +++ /dev/null @@ -1,86 +0,0 @@ ---- -http: - static_names: - - accept-charset - - accept-language - - authorization - - cache-control - - host - - if-modified-since - - keep-alive - - user-agent - - x-flash-version - - x-p2p-peerdist - static_names_and_values: - - accept - - accept-encoding - - connection - - dnt - - dpr - - upgrade-insecure-requests - - x-requested-with - preamble: - - method - - version - context: - - user-agent - - host - - x-forwarded-for - - via - - uri - -http_server: - static_names: - - appex-activity-id - - cdnuuid - - cf-ray - - content-range - - content-type - - date - - etag - - expires - - flow_context - - ms-cv - - msregion - - ms-requestid - - request-id - - vary - - x-amz-cf-pop - - x-amz-request-id - - x-azure-ref-originshield - - x-cache - - x-cache-hits - - x-ccc - - x-diagnostic-s - - x-feserver - - x-hw - - x-msedge-ref - - x-ocsp-responder-id - - x-requestid - - x-served-by - - x-timer - - x-trace-context - static_names_and_values: - - access-control-allow-credentials - - access-control-allow-headers - - access-control-allow-methods - - access-control-expose-headers - - cache-control - - connection - - content-language - - content-transfer-encoding - - p3p - - pragma - - server - - strict-transport-security - - x-aspnetmvc-version - - x-aspnet-version - - x-cid - - x-ms-version - - x-xss-protection - preamble: - - version - - code - - reason - context: - - via diff --git a/python/mercury_network_monitor.py b/python/mercury_network_monitor.py new file mode 100644 index 00000000..03679bf0 --- /dev/null +++ b/python/mercury_network_monitor.py @@ -0,0 +1,268 @@ +import os +import sys +import json +import pcap +import time +import fcntl +import socket +import asyncio +import hashlib +import pathlib +import argparse +import binascii +import datetime +import platform +from functools import lru_cache +from threading import Thread + +import psutil +import mercury + + +class EndpointInfo: + + def __init__(self): + self.process_map = {} + self.os_info = { + 'os': platform.system(), + 'os_edition': platform.release(), + 'os_version': platform.version(), + } + + + def update_process_map(self): + while True: + for p in psutil.process_iter(['name', 'ppid', 'exe']): + if p.pid not in self.process_map or p.info['name'] != self.process_map[p.pid]['process_name']: + endpoint_obj = {'process_name': p.info['name'], + 'process_hash': self.get_process_hash(p.info['exe']), + 'process_path': p.info['exe'], + 'ppid': p.info['ppid']} + self.process_map[p.pid] = endpoint_obj + + + def update_process_map_pid(self, pid): + if pid in self.process_map: + return self.process_map[pid] + else: + attempts = 10 + while attempts > 0: + if psutil.pid_exists(pid): + proc = psutil.Process(pid=pid) + with proc.oneshot(): + endpoint_obj = {'process_name': proc.name(), + 'process_hash': self.get_process_hash(proc.exe()), + 'process_path': proc.exe(), + 'ppid': proc.ppid()} + self.process_map[pid] = endpoint_obj + return self.process_map[pid] + attempts -= 1 + return None + + + @lru_cache(maxsize=512) + def get_process_hash(self, process_path): + if process_path == None or process_path == '': + return None + try: + return hashlib.sha256(open(process_path,'rb').read()).hexdigest() + except: + return None + + + def get_process_info(self, pid): + if pid in self.process_map: + return self.process_map[pid] + return self.update_process_map_pid(pid) + + + +class NetworkInfo: + + def __init__(self): + self.network_map = {} + + + def update_network_map(self): + while True: + for c in psutil.net_connections(): + pid = c[6] + if pid == None: + continue + + if c[2] == socket.SOCK_STREAM: + protocol = 6 + elif c[2] == socket.SOCK_DGRAM: + protocol = 17 + else: + continue + + if len(c[3]) == 0: + src_ip = 'none' + src_port = 'none' + else: + src_ip = c[3][0] + src_port = c[3][1] + if len(c[4]) == 0: + dst_ip = 'none' + dst_port = 'none' + else: + dst_ip = c[4][0] + dst_port = c[4][1] + + if src_ip == '0.0.0.0': + src_ip = 'none' + + network_tuple = f'{src_ip},{src_port},{dst_ip},{dst_port},{protocol}' + if network_tuple not in self.network_map: + net_obj = {'pid': pid, + 'src_ip': src_ip, + 'src_port': src_port, + 'dst_ip': dst_ip, + 'dst_port': dst_port, + 'protocol': protocol} + self.network_map[network_tuple] = net_obj + + + def get_connection_info(self, flow_key): + if flow_key in self.network_map: + return self.network_map[flow_key] + return None + + + def print_network_map(self): + print('print_network_map()') + for k,v in self.network_map.items(): + print(f'{k}:-:{v}') + + + +class Monitor: + + def __init__(self, network_interface, out_folder, rotate_num): + self.rand_id = binascii.b2a_hex(os.urandom(15)).decode()[0:8] + self.network_interface = network_interface + self.out_folder = out_folder + if not os.path.isdir(self.out_folder): + os.makedirs(self.out_folder) + self.written_records = 0 + self.file_no = -1 + self.rotate_num = rotate_num + self.cur_datetime = datetime.datetime.today().strftime('%Y-%m-%d') + self.out_file = None + self.rotate_output_file() + + self.endpoint_info = EndpointInfo() + self.network_info = NetworkInfo() + + self.net_info_thread = Thread(target=self.network_info.update_network_map, daemon=True) + self.net_info_thread.start() + + self.endpoint_info_thread = Thread(target=self.endpoint_info.update_process_map, daemon=True) + self.endpoint_info_thread.start() + + self.libmerc = mercury.Mercury(metadata_output=True, dns_json_output=True, + certs_json_output=True) + self.libmerc.mercury_init() + + + def rotate_output_file(self): + if self.cur_datetime != datetime.datetime.today().strftime('%Y-%m-%d'): + self.cur_datetime = datetime.datetime.today().strftime('%Y-%m-%d') + self.file_no = -1 + if self.out_file != None: + self.out_file.close() + self.file_no += 1 + self.out_file = open(f'{self.out_folder}/network-monitor-{self.cur_datetime}-{self.rand_id}-{self.file_no}.json','a') + + + def write_output(self, record): + self.out_file.write(f'{json.dumps(record)}\n') + self.written_records += 1 + if self.written_records >= self.rotate_num: + self.written_records = 0 + self.rotate_output_file() + + + def execute(self): + import signal + def signal_handler(signal, frame): + if self.out_file != None: + self.out_file.close() + sys.exit(0) + signal.signal(signal.SIGINT, signal_handler) + + p = pcap.pcap(self.network_interface, promisc=True, immediate=True, timeout_ms=50) + + while True: + p.dispatch(1, self.process_packet) + + + def process_packet(self, ts, buf): + r = self.libmerc.get_mercury_json(buf) + + if r != None: + r['event_start'] = time.time() + flow_key = f"{r['src_ip']},{r['src_port']},{r['dst_ip']},{r['dst_port']},{r['protocol']}" + flow_key_r = f"{r['dst_ip']},{r['dst_port']},{r['src_ip']},{r['src_port']},{r['protocol']}" + + conn_info = self.network_info.get_connection_info(flow_key) + if conn_info == None: + conn_info = self.network_info.get_connection_info(flow_key_r) + if conn_info == None: + min_flow_key = f"none,{r['src_port']},none,none,{r['protocol']}" + conn_info = self.network_info.get_connection_info(min_flow_key) + + if conn_info == None: + time.sleep(0.1) + conn_info = self.network_info.get_connection_info(flow_key) + if conn_info == None: + conn_info = self.network_info.get_connection_info(flow_key_r) + + ground_truth = {} + if conn_info != None: + proc_info = self.endpoint_info.get_process_info(conn_info['pid']) + if proc_info == None: + time.sleep(0.1) + proc_info = self.endpoint_info.get_process_info(conn_info['pid']) + + if proc_info != None: + ground_truth['process_name'] = proc_info['process_name'] + ground_truth['process_hash'] = proc_info['process_hash'] + ground_truth['process_path'] = proc_info['process_path'] + + # get parent info + parent_info = self.endpoint_info.get_process_info(proc_info['ppid']) + if parent_info != None: + ground_truth['parent_name'] = parent_info['process_name'] + ground_truth['parent_hash'] = parent_info['process_hash'] + ground_truth['parent_path'] = parent_info['process_path'] + else: + ground_truth['process_pid'] = conn_info['pid'] + os_info = self.endpoint_info.os_info + ground_truth['os'] = os_info['os'] + ground_truth['os_version'] = os_info['os_version'] + ground_truth['os_edition'] = os_info['os_edition'] + r['ground_truth'] = ground_truth + self.write_output(r) + + +def main(): + parser = argparse.ArgumentParser() + parser.add_argument('-m','--mode',action='store',dest='mode', + help='operation mode: endpoint',default='endpoint') + parser.add_argument('-i','--interface',action='store',dest='network_interface', + help='network interface to monitor',default='enp0s3') + parser.add_argument('-o','--output-folder',action='store',dest='out_folder', + help='full path to folder to write output',default='nm-output') + parser.add_argument('-l','--limit',action='store',dest='limit', + help='rotate output file after ',default='1000') + args = parser.parse_args() + + monitorer = Monitor(args.network_interface, args.out_folder, int(args.limit)) + monitorer.execute() + + +if __name__ == "__main__": + main() + diff --git a/python/pmercury b/python/pmercury new file mode 100755 index 00000000..32ef4c82 --- /dev/null +++ b/python/pmercury @@ -0,0 +1,102 @@ +#!/usr/bin/env python3 + +""" + Copyright (c) 2024 Cisco Systems, Inc. All rights reserved. + License at https://github.com/cisco/mercury/blob/master/LICENSE +""" + +import sys +import json +import pcap +import signal +import argparse + +from mercury import * + + +class MercuryInterface: + + def __init__(self, interface, pcap_file, output, analyze=False, resources=None, reassembly=False): + + self.output = output + self.analyze = analyze + self.resources = resources + + packet_filter_cfg_str = b'all' + if reassembly: + packet_filter_cfg_str += b';reassembly' + + if self.analyze == True and self.resources != None: + self.libmerc = Mercury(do_analysis=True, resources=self.resources.encode(), packet_filter_cfg=packet_filter_cfg_str) + else: + self.libmerc = Mercury(packet_filter_cfg=packet_filter_cfg_str) + self.libmerc.mercury_init() + + if self.output != sys.stdout: + self.out_file_pointer = open(output, 'w', buffering=8192*64) + + if pcap_file != None: + self.process_pcap(pcap_file) + elif interface != None: + self.process_capture(interface) + + if self.out_file_pointer != None: + self.out_file_pointer.flush() + if self.out_file_pointer != sys.stdout: + self.out_file_pointer.close() + + + def process_pcap(self, pcap_file): + p = pcap.pcap(pcap_file) + p.dispatch(-1, self.process_packet) + + + def process_capture(self, iface): + def signal_handler(signal, frame): + if self.out_file_pointer != None: + self.out_file_pointer.flush() + if self.out_file_pointer != sys.stdout: + self.out_file_pointer.close() + sys.exit(0) + signal.signal(signal.SIGINT, signal_handler) + + p = pcap.pcap(iface) + while 1: + p.dispatch(-1, self.process_packet) + nrecv, ndrop, nifdrop = p.stats() + print('nrecv: % 12i, ndrop: % 12i, nifdrop: % 12i' % (nrecv, ndrop, nifdrop)) + + + def process_packet(self, ts, buf): + result = self.libmerc.get_mercury_json(buf) + if result != None and not self.out_file_pointer.closed: + self.out_file_pointer.write(f'{json.dumps(result)}\n') + + + +def main(): + parser = argparse.ArgumentParser() + parser.add_argument('-c','--capture',action='store',dest='capture_interface', + help='live packet capture',default=None) + parser.add_argument('-r','--read',action='store',dest='pcap_file', + help='read packets from file',default=None) + parser.add_argument('-f','--fingerprint',action='store',dest='output_file', + help='write fingerprints to file',default=sys.stdout) + parser.add_argument('-a','--analysis',action='store_true',dest='analyze', + help='perform process identification',default=False) + parser.add_argument('--resources',action='store',dest='resources', + help='use resources file ',default=None) + parser.add_argument('--reassembly',action='store_true',dest='reassembly', + help='turn on reassembly',default=False) + options = parser.parse_args() + + if (options.pcap_file == None) and (options.capture_interface == None): + print('error: need a pcap or interface') + sys.exit(0) + + MercuryInterface(options.capture_interface, options.pcap_file, options.output_file, options.analyze, + options.resources, options.reassembly) + + +if __name__ == '__main__': + sys.exit(main()) diff --git a/python/pmercury/__init__.py b/python/pmercury/__init__.py deleted file mode 100644 index e69de29b..00000000 diff --git a/python/pmercury/cython-bak/dtls.c b/python/pmercury/cython-bak/dtls.c deleted file mode 100644 index 1753da4d..00000000 --- a/python/pmercury/cython-bak/dtls.c +++ /dev/null @@ -1,8476 +0,0 @@ -/* Generated by Cython 0.29.14 */ - -#define PY_SSIZE_T_CLEAN -#include "Python.h" -#ifndef Py_PYTHON_H - #error Python headers needed to compile C extensions, please install development version of Python. -#elif PY_VERSION_HEX < 0x02060000 || (0x03000000 <= PY_VERSION_HEX && PY_VERSION_HEX < 0x03030000) - #error Cython requires Python 2.6+ or Python 3.3+. -#else -#define CYTHON_ABI "0_29_14" -#define CYTHON_HEX_VERSION 0x001D0EF0 -#define CYTHON_FUTURE_DIVISION 1 -#include -#ifndef offsetof - #define offsetof(type, member) ( (size_t) & ((type*)0) -> member ) -#endif -#if !defined(WIN32) && !defined(MS_WINDOWS) - #ifndef __stdcall - #define __stdcall - #endif - #ifndef __cdecl - #define __cdecl - #endif - #ifndef __fastcall - #define __fastcall - #endif -#endif -#ifndef DL_IMPORT - #define DL_IMPORT(t) t -#endif -#ifndef DL_EXPORT - #define DL_EXPORT(t) t -#endif -#define __PYX_COMMA , -#ifndef HAVE_LONG_LONG - #if PY_VERSION_HEX >= 0x02070000 - #define HAVE_LONG_LONG - #endif -#endif -#ifndef PY_LONG_LONG - #define PY_LONG_LONG LONG_LONG -#endif -#ifndef Py_HUGE_VAL - #define Py_HUGE_VAL HUGE_VAL -#endif -#ifdef PYPY_VERSION - #define CYTHON_COMPILING_IN_PYPY 1 - #define CYTHON_COMPILING_IN_PYSTON 0 - #define CYTHON_COMPILING_IN_CPYTHON 0 - #undef CYTHON_USE_TYPE_SLOTS - #define CYTHON_USE_TYPE_SLOTS 0 - #undef CYTHON_USE_PYTYPE_LOOKUP - #define CYTHON_USE_PYTYPE_LOOKUP 0 - #if PY_VERSION_HEX < 0x03050000 - #undef CYTHON_USE_ASYNC_SLOTS - #define CYTHON_USE_ASYNC_SLOTS 0 - #elif !defined(CYTHON_USE_ASYNC_SLOTS) - #define CYTHON_USE_ASYNC_SLOTS 1 - #endif - #undef CYTHON_USE_PYLIST_INTERNALS - #define CYTHON_USE_PYLIST_INTERNALS 0 - #undef CYTHON_USE_UNICODE_INTERNALS - #define CYTHON_USE_UNICODE_INTERNALS 0 - #undef CYTHON_USE_UNICODE_WRITER - #define CYTHON_USE_UNICODE_WRITER 0 - #undef CYTHON_USE_PYLONG_INTERNALS - #define CYTHON_USE_PYLONG_INTERNALS 0 - #undef CYTHON_AVOID_BORROWED_REFS - #define CYTHON_AVOID_BORROWED_REFS 1 - #undef CYTHON_ASSUME_SAFE_MACROS - #define CYTHON_ASSUME_SAFE_MACROS 0 - #undef CYTHON_UNPACK_METHODS - #define CYTHON_UNPACK_METHODS 0 - #undef CYTHON_FAST_THREAD_STATE - #define CYTHON_FAST_THREAD_STATE 0 - #undef CYTHON_FAST_PYCALL - #define CYTHON_FAST_PYCALL 0 - #undef CYTHON_PEP489_MULTI_PHASE_INIT - #define CYTHON_PEP489_MULTI_PHASE_INIT 0 - #undef CYTHON_USE_TP_FINALIZE - #define CYTHON_USE_TP_FINALIZE 0 - #undef CYTHON_USE_DICT_VERSIONS - #define CYTHON_USE_DICT_VERSIONS 0 - #undef CYTHON_USE_EXC_INFO_STACK - #define CYTHON_USE_EXC_INFO_STACK 0 -#elif defined(PYSTON_VERSION) - #define CYTHON_COMPILING_IN_PYPY 0 - #define CYTHON_COMPILING_IN_PYSTON 1 - #define CYTHON_COMPILING_IN_CPYTHON 0 - #ifndef CYTHON_USE_TYPE_SLOTS - #define CYTHON_USE_TYPE_SLOTS 1 - #endif - #undef CYTHON_USE_PYTYPE_LOOKUP - #define CYTHON_USE_PYTYPE_LOOKUP 0 - #undef CYTHON_USE_ASYNC_SLOTS - #define CYTHON_USE_ASYNC_SLOTS 0 - #undef CYTHON_USE_PYLIST_INTERNALS - #define CYTHON_USE_PYLIST_INTERNALS 0 - #ifndef CYTHON_USE_UNICODE_INTERNALS - #define CYTHON_USE_UNICODE_INTERNALS 1 - #endif - #undef CYTHON_USE_UNICODE_WRITER - #define CYTHON_USE_UNICODE_WRITER 0 - #undef CYTHON_USE_PYLONG_INTERNALS - #define CYTHON_USE_PYLONG_INTERNALS 0 - #ifndef CYTHON_AVOID_BORROWED_REFS - #define CYTHON_AVOID_BORROWED_REFS 0 - #endif - #ifndef CYTHON_ASSUME_SAFE_MACROS - #define CYTHON_ASSUME_SAFE_MACROS 1 - #endif - #ifndef CYTHON_UNPACK_METHODS - #define CYTHON_UNPACK_METHODS 1 - #endif - #undef CYTHON_FAST_THREAD_STATE - #define CYTHON_FAST_THREAD_STATE 0 - #undef CYTHON_FAST_PYCALL - #define CYTHON_FAST_PYCALL 0 - #undef CYTHON_PEP489_MULTI_PHASE_INIT - #define CYTHON_PEP489_MULTI_PHASE_INIT 0 - #undef CYTHON_USE_TP_FINALIZE - #define CYTHON_USE_TP_FINALIZE 0 - #undef CYTHON_USE_DICT_VERSIONS - #define CYTHON_USE_DICT_VERSIONS 0 - #undef CYTHON_USE_EXC_INFO_STACK - #define CYTHON_USE_EXC_INFO_STACK 0 -#else - #define CYTHON_COMPILING_IN_PYPY 0 - #define CYTHON_COMPILING_IN_PYSTON 0 - #define CYTHON_COMPILING_IN_CPYTHON 1 - #ifndef CYTHON_USE_TYPE_SLOTS - #define CYTHON_USE_TYPE_SLOTS 1 - #endif - #if PY_VERSION_HEX < 0x02070000 - #undef CYTHON_USE_PYTYPE_LOOKUP - #define CYTHON_USE_PYTYPE_LOOKUP 0 - #elif !defined(CYTHON_USE_PYTYPE_LOOKUP) - #define CYTHON_USE_PYTYPE_LOOKUP 1 - #endif - #if PY_MAJOR_VERSION < 3 - #undef CYTHON_USE_ASYNC_SLOTS - #define CYTHON_USE_ASYNC_SLOTS 0 - #elif !defined(CYTHON_USE_ASYNC_SLOTS) - #define CYTHON_USE_ASYNC_SLOTS 1 - #endif - #if PY_VERSION_HEX < 0x02070000 - #undef CYTHON_USE_PYLONG_INTERNALS - #define CYTHON_USE_PYLONG_INTERNALS 0 - #elif !defined(CYTHON_USE_PYLONG_INTERNALS) - #define CYTHON_USE_PYLONG_INTERNALS 1 - #endif - #ifndef CYTHON_USE_PYLIST_INTERNALS - #define CYTHON_USE_PYLIST_INTERNALS 1 - #endif - #ifndef CYTHON_USE_UNICODE_INTERNALS - #define CYTHON_USE_UNICODE_INTERNALS 1 - #endif - #if PY_VERSION_HEX < 0x030300F0 - #undef CYTHON_USE_UNICODE_WRITER - #define CYTHON_USE_UNICODE_WRITER 0 - #elif !defined(CYTHON_USE_UNICODE_WRITER) - #define CYTHON_USE_UNICODE_WRITER 1 - #endif - #ifndef CYTHON_AVOID_BORROWED_REFS - #define CYTHON_AVOID_BORROWED_REFS 0 - #endif - #ifndef CYTHON_ASSUME_SAFE_MACROS - #define CYTHON_ASSUME_SAFE_MACROS 1 - #endif - #ifndef CYTHON_UNPACK_METHODS - #define CYTHON_UNPACK_METHODS 1 - #endif - #ifndef CYTHON_FAST_THREAD_STATE - #define CYTHON_FAST_THREAD_STATE 1 - #endif - #ifndef CYTHON_FAST_PYCALL - #define CYTHON_FAST_PYCALL 1 - #endif - #ifndef CYTHON_PEP489_MULTI_PHASE_INIT - #define CYTHON_PEP489_MULTI_PHASE_INIT (PY_VERSION_HEX >= 0x03050000) - #endif - #ifndef CYTHON_USE_TP_FINALIZE - #define CYTHON_USE_TP_FINALIZE (PY_VERSION_HEX >= 0x030400a1) - #endif - #ifndef CYTHON_USE_DICT_VERSIONS - #define CYTHON_USE_DICT_VERSIONS (PY_VERSION_HEX >= 0x030600B1) - #endif - #ifndef CYTHON_USE_EXC_INFO_STACK - #define CYTHON_USE_EXC_INFO_STACK (PY_VERSION_HEX >= 0x030700A3) - #endif -#endif -#if !defined(CYTHON_FAST_PYCCALL) -#define CYTHON_FAST_PYCCALL (CYTHON_FAST_PYCALL && PY_VERSION_HEX >= 0x030600B1) -#endif -#if CYTHON_USE_PYLONG_INTERNALS - #include "longintrepr.h" - #undef SHIFT - #undef BASE - #undef MASK - #ifdef SIZEOF_VOID_P - enum { __pyx_check_sizeof_voidp = 1 / (int)(SIZEOF_VOID_P == sizeof(void*)) }; - #endif -#endif -#ifndef __has_attribute - #define __has_attribute(x) 0 -#endif -#ifndef __has_cpp_attribute - #define __has_cpp_attribute(x) 0 -#endif -#ifndef CYTHON_RESTRICT - #if defined(__GNUC__) - #define CYTHON_RESTRICT __restrict__ - #elif defined(_MSC_VER) && _MSC_VER >= 1400 - #define CYTHON_RESTRICT __restrict - #elif defined (__STDC_VERSION__) && __STDC_VERSION__ >= 199901L - #define CYTHON_RESTRICT restrict - #else - #define CYTHON_RESTRICT - #endif -#endif -#ifndef CYTHON_UNUSED -# if defined(__GNUC__) -# if !(defined(__cplusplus)) || (__GNUC__ > 3 || (__GNUC__ == 3 && __GNUC_MINOR__ >= 4)) -# define CYTHON_UNUSED __attribute__ ((__unused__)) -# else -# define CYTHON_UNUSED -# endif -# elif defined(__ICC) || (defined(__INTEL_COMPILER) && !defined(_MSC_VER)) -# define CYTHON_UNUSED __attribute__ ((__unused__)) -# else -# define CYTHON_UNUSED -# endif -#endif -#ifndef CYTHON_MAYBE_UNUSED_VAR -# if defined(__cplusplus) - template void CYTHON_MAYBE_UNUSED_VAR( const T& ) { } -# else -# define CYTHON_MAYBE_UNUSED_VAR(x) (void)(x) -# endif -#endif -#ifndef CYTHON_NCP_UNUSED -# if CYTHON_COMPILING_IN_CPYTHON -# define CYTHON_NCP_UNUSED -# else -# define CYTHON_NCP_UNUSED CYTHON_UNUSED -# endif -#endif -#define __Pyx_void_to_None(void_result) ((void)(void_result), Py_INCREF(Py_None), Py_None) -#ifdef _MSC_VER - #ifndef _MSC_STDINT_H_ - #if _MSC_VER < 1300 - typedef unsigned char uint8_t; - typedef unsigned int uint32_t; - #else - typedef unsigned __int8 uint8_t; - typedef unsigned __int32 uint32_t; - #endif - #endif -#else - #include -#endif -#ifndef CYTHON_FALLTHROUGH - #if defined(__cplusplus) && __cplusplus >= 201103L - #if __has_cpp_attribute(fallthrough) - #define CYTHON_FALLTHROUGH [[fallthrough]] - #elif __has_cpp_attribute(clang::fallthrough) - #define CYTHON_FALLTHROUGH [[clang::fallthrough]] - #elif __has_cpp_attribute(gnu::fallthrough) - #define CYTHON_FALLTHROUGH [[gnu::fallthrough]] - #endif - #endif - #ifndef CYTHON_FALLTHROUGH - #if __has_attribute(fallthrough) - #define CYTHON_FALLTHROUGH __attribute__((fallthrough)) - #else - #define CYTHON_FALLTHROUGH - #endif - #endif - #if defined(__clang__ ) && defined(__apple_build_version__) - #if __apple_build_version__ < 7000000 - #undef CYTHON_FALLTHROUGH - #define CYTHON_FALLTHROUGH - #endif - #endif -#endif - -#ifndef CYTHON_INLINE - #if defined(__clang__) - #define CYTHON_INLINE __inline__ __attribute__ ((__unused__)) - #elif defined(__GNUC__) - #define CYTHON_INLINE __inline__ - #elif defined(_MSC_VER) - #define CYTHON_INLINE __inline - #elif defined (__STDC_VERSION__) && __STDC_VERSION__ >= 199901L - #define CYTHON_INLINE inline - #else - #define CYTHON_INLINE - #endif -#endif - -#if CYTHON_COMPILING_IN_PYPY && PY_VERSION_HEX < 0x02070600 && !defined(Py_OptimizeFlag) - #define Py_OptimizeFlag 0 -#endif -#define __PYX_BUILD_PY_SSIZE_T "n" -#define CYTHON_FORMAT_SSIZE_T "z" -#if PY_MAJOR_VERSION < 3 - #define __Pyx_BUILTIN_MODULE_NAME "__builtin__" - #define __Pyx_PyCode_New(a, k, l, s, f, code, c, n, v, fv, cell, fn, name, fline, lnos)\ - PyCode_New(a+k, l, s, f, code, c, n, v, fv, cell, fn, name, fline, lnos) - #define __Pyx_DefaultClassType PyClass_Type -#else - #define __Pyx_BUILTIN_MODULE_NAME "builtins" -#if PY_VERSION_HEX >= 0x030800A4 && PY_VERSION_HEX < 0x030800B2 - #define __Pyx_PyCode_New(a, k, l, s, f, code, c, n, v, fv, cell, fn, name, fline, lnos)\ - PyCode_New(a, 0, k, l, s, f, code, c, n, v, fv, cell, fn, name, fline, lnos) -#else - #define __Pyx_PyCode_New(a, k, l, s, f, code, c, n, v, fv, cell, fn, name, fline, lnos)\ - PyCode_New(a, k, l, s, f, code, c, n, v, fv, cell, fn, name, fline, lnos) -#endif - #define __Pyx_DefaultClassType PyType_Type -#endif -#ifndef Py_TPFLAGS_CHECKTYPES - #define Py_TPFLAGS_CHECKTYPES 0 -#endif -#ifndef Py_TPFLAGS_HAVE_INDEX - #define Py_TPFLAGS_HAVE_INDEX 0 -#endif -#ifndef Py_TPFLAGS_HAVE_NEWBUFFER - #define Py_TPFLAGS_HAVE_NEWBUFFER 0 -#endif -#ifndef Py_TPFLAGS_HAVE_FINALIZE - #define Py_TPFLAGS_HAVE_FINALIZE 0 -#endif -#ifndef METH_STACKLESS - #define METH_STACKLESS 0 -#endif -#if PY_VERSION_HEX <= 0x030700A3 || !defined(METH_FASTCALL) - #ifndef METH_FASTCALL - #define METH_FASTCALL 0x80 - #endif - typedef PyObject *(*__Pyx_PyCFunctionFast) (PyObject *self, PyObject *const *args, Py_ssize_t nargs); - typedef PyObject *(*__Pyx_PyCFunctionFastWithKeywords) (PyObject *self, PyObject *const *args, - Py_ssize_t nargs, PyObject *kwnames); -#else - #define __Pyx_PyCFunctionFast _PyCFunctionFast - #define __Pyx_PyCFunctionFastWithKeywords _PyCFunctionFastWithKeywords -#endif -#if CYTHON_FAST_PYCCALL -#define __Pyx_PyFastCFunction_Check(func)\ - ((PyCFunction_Check(func) && (METH_FASTCALL == (PyCFunction_GET_FLAGS(func) & ~(METH_CLASS | METH_STATIC | METH_COEXIST | METH_KEYWORDS | METH_STACKLESS))))) -#else -#define __Pyx_PyFastCFunction_Check(func) 0 -#endif -#if CYTHON_COMPILING_IN_PYPY && !defined(PyObject_Malloc) - #define PyObject_Malloc(s) PyMem_Malloc(s) - #define PyObject_Free(p) PyMem_Free(p) - #define PyObject_Realloc(p) PyMem_Realloc(p) -#endif -#if CYTHON_COMPILING_IN_CPYTHON && PY_VERSION_HEX < 0x030400A1 - #define PyMem_RawMalloc(n) PyMem_Malloc(n) - #define PyMem_RawRealloc(p, n) PyMem_Realloc(p, n) - #define PyMem_RawFree(p) PyMem_Free(p) -#endif -#if CYTHON_COMPILING_IN_PYSTON - #define __Pyx_PyCode_HasFreeVars(co) PyCode_HasFreeVars(co) - #define __Pyx_PyFrame_SetLineNumber(frame, lineno) PyFrame_SetLineNumber(frame, lineno) -#else - #define __Pyx_PyCode_HasFreeVars(co) (PyCode_GetNumFree(co) > 0) - #define __Pyx_PyFrame_SetLineNumber(frame, lineno) (frame)->f_lineno = (lineno) -#endif -#if !CYTHON_FAST_THREAD_STATE || PY_VERSION_HEX < 0x02070000 - #define __Pyx_PyThreadState_Current PyThreadState_GET() -#elif PY_VERSION_HEX >= 0x03060000 - #define __Pyx_PyThreadState_Current _PyThreadState_UncheckedGet() -#elif PY_VERSION_HEX >= 0x03000000 - #define __Pyx_PyThreadState_Current PyThreadState_GET() -#else - #define __Pyx_PyThreadState_Current _PyThreadState_Current -#endif -#if PY_VERSION_HEX < 0x030700A2 && !defined(PyThread_tss_create) && !defined(Py_tss_NEEDS_INIT) -#include "pythread.h" -#define Py_tss_NEEDS_INIT 0 -typedef int Py_tss_t; -static CYTHON_INLINE int PyThread_tss_create(Py_tss_t *key) { - *key = PyThread_create_key(); - return 0; -} -static CYTHON_INLINE Py_tss_t * PyThread_tss_alloc(void) { - Py_tss_t *key = (Py_tss_t *)PyObject_Malloc(sizeof(Py_tss_t)); - *key = Py_tss_NEEDS_INIT; - return key; -} -static CYTHON_INLINE void PyThread_tss_free(Py_tss_t *key) { - PyObject_Free(key); -} -static CYTHON_INLINE int PyThread_tss_is_created(Py_tss_t *key) { - return *key != Py_tss_NEEDS_INIT; -} -static CYTHON_INLINE void PyThread_tss_delete(Py_tss_t *key) { - PyThread_delete_key(*key); - *key = Py_tss_NEEDS_INIT; -} -static CYTHON_INLINE int PyThread_tss_set(Py_tss_t *key, void *value) { - return PyThread_set_key_value(*key, value); -} -static CYTHON_INLINE void * PyThread_tss_get(Py_tss_t *key) { - return PyThread_get_key_value(*key); -} -#endif -#if CYTHON_COMPILING_IN_CPYTHON || defined(_PyDict_NewPresized) -#define __Pyx_PyDict_NewPresized(n) ((n <= 8) ? PyDict_New() : _PyDict_NewPresized(n)) -#else -#define __Pyx_PyDict_NewPresized(n) PyDict_New() -#endif -#if PY_MAJOR_VERSION >= 3 || CYTHON_FUTURE_DIVISION - #define __Pyx_PyNumber_Divide(x,y) PyNumber_TrueDivide(x,y) - #define __Pyx_PyNumber_InPlaceDivide(x,y) PyNumber_InPlaceTrueDivide(x,y) -#else - #define __Pyx_PyNumber_Divide(x,y) PyNumber_Divide(x,y) - #define __Pyx_PyNumber_InPlaceDivide(x,y) PyNumber_InPlaceDivide(x,y) -#endif -#if CYTHON_COMPILING_IN_CPYTHON && PY_VERSION_HEX >= 0x030500A1 && CYTHON_USE_UNICODE_INTERNALS -#define __Pyx_PyDict_GetItemStr(dict, name) _PyDict_GetItem_KnownHash(dict, name, ((PyASCIIObject *) name)->hash) -#else -#define __Pyx_PyDict_GetItemStr(dict, name) PyDict_GetItem(dict, name) -#endif -#if PY_VERSION_HEX > 0x03030000 && defined(PyUnicode_KIND) - #define CYTHON_PEP393_ENABLED 1 - #define __Pyx_PyUnicode_READY(op) (likely(PyUnicode_IS_READY(op)) ?\ - 0 : _PyUnicode_Ready((PyObject *)(op))) - #define __Pyx_PyUnicode_GET_LENGTH(u) PyUnicode_GET_LENGTH(u) - #define __Pyx_PyUnicode_READ_CHAR(u, i) PyUnicode_READ_CHAR(u, i) - #define __Pyx_PyUnicode_MAX_CHAR_VALUE(u) PyUnicode_MAX_CHAR_VALUE(u) - #define __Pyx_PyUnicode_KIND(u) PyUnicode_KIND(u) - #define __Pyx_PyUnicode_DATA(u) PyUnicode_DATA(u) - #define __Pyx_PyUnicode_READ(k, d, i) PyUnicode_READ(k, d, i) - #define __Pyx_PyUnicode_WRITE(k, d, i, ch) PyUnicode_WRITE(k, d, i, ch) - #define __Pyx_PyUnicode_IS_TRUE(u) (0 != (likely(PyUnicode_IS_READY(u)) ? PyUnicode_GET_LENGTH(u) : PyUnicode_GET_SIZE(u))) -#else - #define CYTHON_PEP393_ENABLED 0 - #define PyUnicode_1BYTE_KIND 1 - #define PyUnicode_2BYTE_KIND 2 - #define PyUnicode_4BYTE_KIND 4 - #define __Pyx_PyUnicode_READY(op) (0) - #define __Pyx_PyUnicode_GET_LENGTH(u) PyUnicode_GET_SIZE(u) - #define __Pyx_PyUnicode_READ_CHAR(u, i) ((Py_UCS4)(PyUnicode_AS_UNICODE(u)[i])) - #define __Pyx_PyUnicode_MAX_CHAR_VALUE(u) ((sizeof(Py_UNICODE) == 2) ? 65535 : 1114111) - #define __Pyx_PyUnicode_KIND(u) (sizeof(Py_UNICODE)) - #define __Pyx_PyUnicode_DATA(u) ((void*)PyUnicode_AS_UNICODE(u)) - #define __Pyx_PyUnicode_READ(k, d, i) ((void)(k), (Py_UCS4)(((Py_UNICODE*)d)[i])) - #define __Pyx_PyUnicode_WRITE(k, d, i, ch) (((void)(k)), ((Py_UNICODE*)d)[i] = ch) - #define __Pyx_PyUnicode_IS_TRUE(u) (0 != PyUnicode_GET_SIZE(u)) -#endif -#if CYTHON_COMPILING_IN_PYPY - #define __Pyx_PyUnicode_Concat(a, b) PyNumber_Add(a, b) - #define __Pyx_PyUnicode_ConcatSafe(a, b) PyNumber_Add(a, b) -#else - #define __Pyx_PyUnicode_Concat(a, b) PyUnicode_Concat(a, b) - #define __Pyx_PyUnicode_ConcatSafe(a, b) ((unlikely((a) == Py_None) || unlikely((b) == Py_None)) ?\ - PyNumber_Add(a, b) : __Pyx_PyUnicode_Concat(a, b)) -#endif -#if CYTHON_COMPILING_IN_PYPY && !defined(PyUnicode_Contains) - #define PyUnicode_Contains(u, s) PySequence_Contains(u, s) -#endif -#if CYTHON_COMPILING_IN_PYPY && !defined(PyByteArray_Check) - #define PyByteArray_Check(obj) PyObject_TypeCheck(obj, &PyByteArray_Type) -#endif -#if CYTHON_COMPILING_IN_PYPY && !defined(PyObject_Format) - #define PyObject_Format(obj, fmt) PyObject_CallMethod(obj, "__format__", "O", fmt) -#endif -#define __Pyx_PyString_FormatSafe(a, b) ((unlikely((a) == Py_None || (PyString_Check(b) && !PyString_CheckExact(b)))) ? PyNumber_Remainder(a, b) : __Pyx_PyString_Format(a, b)) -#define __Pyx_PyUnicode_FormatSafe(a, b) ((unlikely((a) == Py_None || (PyUnicode_Check(b) && !PyUnicode_CheckExact(b)))) ? PyNumber_Remainder(a, b) : PyUnicode_Format(a, b)) -#if PY_MAJOR_VERSION >= 3 - #define __Pyx_PyString_Format(a, b) PyUnicode_Format(a, b) -#else - #define __Pyx_PyString_Format(a, b) PyString_Format(a, b) -#endif -#if PY_MAJOR_VERSION < 3 && !defined(PyObject_ASCII) - #define PyObject_ASCII(o) PyObject_Repr(o) -#endif -#if PY_MAJOR_VERSION >= 3 - #define PyBaseString_Type PyUnicode_Type - #define PyStringObject PyUnicodeObject - #define PyString_Type PyUnicode_Type - #define PyString_Check PyUnicode_Check - #define PyString_CheckExact PyUnicode_CheckExact - #define PyObject_Unicode PyObject_Str -#endif -#if PY_MAJOR_VERSION >= 3 - #define __Pyx_PyBaseString_Check(obj) PyUnicode_Check(obj) - #define __Pyx_PyBaseString_CheckExact(obj) PyUnicode_CheckExact(obj) -#else - #define __Pyx_PyBaseString_Check(obj) (PyString_Check(obj) || PyUnicode_Check(obj)) - #define __Pyx_PyBaseString_CheckExact(obj) (PyString_CheckExact(obj) || PyUnicode_CheckExact(obj)) -#endif -#ifndef PySet_CheckExact - #define PySet_CheckExact(obj) (Py_TYPE(obj) == &PySet_Type) -#endif -#if CYTHON_ASSUME_SAFE_MACROS - #define __Pyx_PySequence_SIZE(seq) Py_SIZE(seq) -#else - #define __Pyx_PySequence_SIZE(seq) PySequence_Size(seq) -#endif -#if PY_MAJOR_VERSION >= 3 - #define PyIntObject PyLongObject - #define PyInt_Type PyLong_Type - #define PyInt_Check(op) PyLong_Check(op) - #define PyInt_CheckExact(op) PyLong_CheckExact(op) - #define PyInt_FromString PyLong_FromString - #define PyInt_FromUnicode PyLong_FromUnicode - #define PyInt_FromLong PyLong_FromLong - #define PyInt_FromSize_t PyLong_FromSize_t - #define PyInt_FromSsize_t PyLong_FromSsize_t - #define PyInt_AsLong PyLong_AsLong - #define PyInt_AS_LONG PyLong_AS_LONG - #define PyInt_AsSsize_t PyLong_AsSsize_t - #define PyInt_AsUnsignedLongMask PyLong_AsUnsignedLongMask - #define PyInt_AsUnsignedLongLongMask PyLong_AsUnsignedLongLongMask - #define PyNumber_Int PyNumber_Long -#endif -#if PY_MAJOR_VERSION >= 3 - #define PyBoolObject PyLongObject -#endif -#if PY_MAJOR_VERSION >= 3 && CYTHON_COMPILING_IN_PYPY - #ifndef PyUnicode_InternFromString - #define PyUnicode_InternFromString(s) PyUnicode_FromString(s) - #endif -#endif -#if PY_VERSION_HEX < 0x030200A4 - typedef long Py_hash_t; - #define __Pyx_PyInt_FromHash_t PyInt_FromLong - #define __Pyx_PyInt_AsHash_t PyInt_AsLong -#else - #define __Pyx_PyInt_FromHash_t PyInt_FromSsize_t - #define __Pyx_PyInt_AsHash_t PyInt_AsSsize_t -#endif -#if PY_MAJOR_VERSION >= 3 - #define __Pyx_PyMethod_New(func, self, klass) ((self) ? PyMethod_New(func, self) : (Py_INCREF(func), func)) -#else - #define __Pyx_PyMethod_New(func, self, klass) PyMethod_New(func, self, klass) -#endif -#if CYTHON_USE_ASYNC_SLOTS - #if PY_VERSION_HEX >= 0x030500B1 - #define __Pyx_PyAsyncMethodsStruct PyAsyncMethods - #define __Pyx_PyType_AsAsync(obj) (Py_TYPE(obj)->tp_as_async) - #else - #define __Pyx_PyType_AsAsync(obj) ((__Pyx_PyAsyncMethodsStruct*) (Py_TYPE(obj)->tp_reserved)) - #endif -#else - #define __Pyx_PyType_AsAsync(obj) NULL -#endif -#ifndef __Pyx_PyAsyncMethodsStruct - typedef struct { - unaryfunc am_await; - unaryfunc am_aiter; - unaryfunc am_anext; - } __Pyx_PyAsyncMethodsStruct; -#endif - -#if defined(WIN32) || defined(MS_WINDOWS) - #define _USE_MATH_DEFINES -#endif -#include -#ifdef NAN -#define __PYX_NAN() ((float) NAN) -#else -static CYTHON_INLINE float __PYX_NAN() { - float value; - memset(&value, 0xFF, sizeof(value)); - return value; -} -#endif -#if defined(__CYGWIN__) && defined(_LDBL_EQ_DBL) -#define __Pyx_truncl trunc -#else -#define __Pyx_truncl truncl -#endif - - -#define __PYX_ERR(f_index, lineno, Ln_error) \ -{ \ - __pyx_filename = __pyx_f[f_index]; __pyx_lineno = lineno; __pyx_clineno = __LINE__; goto Ln_error; \ -} - -#ifndef __PYX_EXTERN_C - #ifdef __cplusplus - #define __PYX_EXTERN_C extern "C" - #else - #define __PYX_EXTERN_C extern - #endif -#endif - -#define __PYX_HAVE__pmercury__protocols__dtls -#define __PYX_HAVE_API__pmercury__protocols__dtls -/* Early includes */ -#include -#include -#include "arpa/inet.h" -#ifdef _OPENMP -#include -#endif /* _OPENMP */ - -#if defined(PYREX_WITHOUT_ASSERTIONS) && !defined(CYTHON_WITHOUT_ASSERTIONS) -#define CYTHON_WITHOUT_ASSERTIONS -#endif - -typedef struct {PyObject **p; const char *s; const Py_ssize_t n; const char* encoding; - const char is_unicode; const char is_str; const char intern; } __Pyx_StringTabEntry; - -#define __PYX_DEFAULT_STRING_ENCODING_IS_ASCII 0 -#define __PYX_DEFAULT_STRING_ENCODING_IS_UTF8 0 -#define __PYX_DEFAULT_STRING_ENCODING_IS_DEFAULT (PY_MAJOR_VERSION >= 3 && __PYX_DEFAULT_STRING_ENCODING_IS_UTF8) -#define __PYX_DEFAULT_STRING_ENCODING "" -#define __Pyx_PyObject_FromString __Pyx_PyBytes_FromString -#define __Pyx_PyObject_FromStringAndSize __Pyx_PyBytes_FromStringAndSize -#define __Pyx_uchar_cast(c) ((unsigned char)c) -#define __Pyx_long_cast(x) ((long)x) -#define __Pyx_fits_Py_ssize_t(v, type, is_signed) (\ - (sizeof(type) < sizeof(Py_ssize_t)) ||\ - (sizeof(type) > sizeof(Py_ssize_t) &&\ - likely(v < (type)PY_SSIZE_T_MAX ||\ - v == (type)PY_SSIZE_T_MAX) &&\ - (!is_signed || likely(v > (type)PY_SSIZE_T_MIN ||\ - v == (type)PY_SSIZE_T_MIN))) ||\ - (sizeof(type) == sizeof(Py_ssize_t) &&\ - (is_signed || likely(v < (type)PY_SSIZE_T_MAX ||\ - v == (type)PY_SSIZE_T_MAX))) ) -static CYTHON_INLINE int __Pyx_is_valid_index(Py_ssize_t i, Py_ssize_t limit) { - return (size_t) i < (size_t) limit; -} -#if defined (__cplusplus) && __cplusplus >= 201103L - #include - #define __Pyx_sst_abs(value) std::abs(value) -#elif SIZEOF_INT >= SIZEOF_SIZE_T - #define __Pyx_sst_abs(value) abs(value) -#elif SIZEOF_LONG >= SIZEOF_SIZE_T - #define __Pyx_sst_abs(value) labs(value) -#elif defined (_MSC_VER) - #define __Pyx_sst_abs(value) ((Py_ssize_t)_abs64(value)) -#elif defined (__STDC_VERSION__) && __STDC_VERSION__ >= 199901L - #define __Pyx_sst_abs(value) llabs(value) -#elif defined (__GNUC__) - #define __Pyx_sst_abs(value) __builtin_llabs(value) -#else - #define __Pyx_sst_abs(value) ((value<0) ? -value : value) -#endif -static CYTHON_INLINE const char* __Pyx_PyObject_AsString(PyObject*); -static CYTHON_INLINE const char* __Pyx_PyObject_AsStringAndSize(PyObject*, Py_ssize_t* length); -#define __Pyx_PyByteArray_FromString(s) PyByteArray_FromStringAndSize((const char*)s, strlen((const char*)s)) -#define __Pyx_PyByteArray_FromStringAndSize(s, l) PyByteArray_FromStringAndSize((const char*)s, l) -#define __Pyx_PyBytes_FromString PyBytes_FromString -#define __Pyx_PyBytes_FromStringAndSize PyBytes_FromStringAndSize -static CYTHON_INLINE PyObject* __Pyx_PyUnicode_FromString(const char*); -#if PY_MAJOR_VERSION < 3 - #define __Pyx_PyStr_FromString __Pyx_PyBytes_FromString - #define __Pyx_PyStr_FromStringAndSize __Pyx_PyBytes_FromStringAndSize -#else - #define __Pyx_PyStr_FromString __Pyx_PyUnicode_FromString - #define __Pyx_PyStr_FromStringAndSize __Pyx_PyUnicode_FromStringAndSize -#endif -#define __Pyx_PyBytes_AsWritableString(s) ((char*) PyBytes_AS_STRING(s)) -#define __Pyx_PyBytes_AsWritableSString(s) ((signed char*) PyBytes_AS_STRING(s)) -#define __Pyx_PyBytes_AsWritableUString(s) ((unsigned char*) PyBytes_AS_STRING(s)) -#define __Pyx_PyBytes_AsString(s) ((const char*) PyBytes_AS_STRING(s)) -#define __Pyx_PyBytes_AsSString(s) ((const signed char*) PyBytes_AS_STRING(s)) -#define __Pyx_PyBytes_AsUString(s) ((const unsigned char*) PyBytes_AS_STRING(s)) -#define __Pyx_PyObject_AsWritableString(s) ((char*) __Pyx_PyObject_AsString(s)) -#define __Pyx_PyObject_AsWritableSString(s) ((signed char*) __Pyx_PyObject_AsString(s)) -#define __Pyx_PyObject_AsWritableUString(s) ((unsigned char*) __Pyx_PyObject_AsString(s)) -#define __Pyx_PyObject_AsSString(s) ((const signed char*) __Pyx_PyObject_AsString(s)) -#define __Pyx_PyObject_AsUString(s) ((const unsigned char*) __Pyx_PyObject_AsString(s)) -#define __Pyx_PyObject_FromCString(s) __Pyx_PyObject_FromString((const char*)s) -#define __Pyx_PyBytes_FromCString(s) __Pyx_PyBytes_FromString((const char*)s) -#define __Pyx_PyByteArray_FromCString(s) __Pyx_PyByteArray_FromString((const char*)s) -#define __Pyx_PyStr_FromCString(s) __Pyx_PyStr_FromString((const char*)s) -#define __Pyx_PyUnicode_FromCString(s) __Pyx_PyUnicode_FromString((const char*)s) -static CYTHON_INLINE size_t __Pyx_Py_UNICODE_strlen(const Py_UNICODE *u) { - const Py_UNICODE *u_end = u; - while (*u_end++) ; - return (size_t)(u_end - u - 1); -} -#define __Pyx_PyUnicode_FromUnicode(u) PyUnicode_FromUnicode(u, __Pyx_Py_UNICODE_strlen(u)) -#define __Pyx_PyUnicode_FromUnicodeAndLength PyUnicode_FromUnicode -#define __Pyx_PyUnicode_AsUnicode PyUnicode_AsUnicode -#define __Pyx_NewRef(obj) (Py_INCREF(obj), obj) -#define __Pyx_Owned_Py_None(b) __Pyx_NewRef(Py_None) -static CYTHON_INLINE PyObject * __Pyx_PyBool_FromLong(long b); -static CYTHON_INLINE int __Pyx_PyObject_IsTrue(PyObject*); -static CYTHON_INLINE int __Pyx_PyObject_IsTrueAndDecref(PyObject*); -static CYTHON_INLINE PyObject* __Pyx_PyNumber_IntOrLong(PyObject* x); -#define __Pyx_PySequence_Tuple(obj)\ - (likely(PyTuple_CheckExact(obj)) ? __Pyx_NewRef(obj) : PySequence_Tuple(obj)) -static CYTHON_INLINE Py_ssize_t __Pyx_PyIndex_AsSsize_t(PyObject*); -static CYTHON_INLINE PyObject * __Pyx_PyInt_FromSize_t(size_t); -#if CYTHON_ASSUME_SAFE_MACROS -#define __pyx_PyFloat_AsDouble(x) (PyFloat_CheckExact(x) ? PyFloat_AS_DOUBLE(x) : PyFloat_AsDouble(x)) -#else -#define __pyx_PyFloat_AsDouble(x) PyFloat_AsDouble(x) -#endif -#define __pyx_PyFloat_AsFloat(x) ((float) __pyx_PyFloat_AsDouble(x)) -#if PY_MAJOR_VERSION >= 3 -#define __Pyx_PyNumber_Int(x) (PyLong_CheckExact(x) ? __Pyx_NewRef(x) : PyNumber_Long(x)) -#else -#define __Pyx_PyNumber_Int(x) (PyInt_CheckExact(x) ? __Pyx_NewRef(x) : PyNumber_Int(x)) -#endif -#define __Pyx_PyNumber_Float(x) (PyFloat_CheckExact(x) ? __Pyx_NewRef(x) : PyNumber_Float(x)) -#if PY_MAJOR_VERSION < 3 && __PYX_DEFAULT_STRING_ENCODING_IS_ASCII -static int __Pyx_sys_getdefaultencoding_not_ascii; -static int __Pyx_init_sys_getdefaultencoding_params(void) { - PyObject* sys; - PyObject* default_encoding = NULL; - PyObject* ascii_chars_u = NULL; - PyObject* ascii_chars_b = NULL; - const char* default_encoding_c; - sys = PyImport_ImportModule("sys"); - if (!sys) goto bad; - default_encoding = PyObject_CallMethod(sys, (char*) "getdefaultencoding", NULL); - Py_DECREF(sys); - if (!default_encoding) goto bad; - default_encoding_c = PyBytes_AsString(default_encoding); - if (!default_encoding_c) goto bad; - if (strcmp(default_encoding_c, "ascii") == 0) { - __Pyx_sys_getdefaultencoding_not_ascii = 0; - } else { - char ascii_chars[128]; - int c; - for (c = 0; c < 128; c++) { - ascii_chars[c] = c; - } - __Pyx_sys_getdefaultencoding_not_ascii = 1; - ascii_chars_u = PyUnicode_DecodeASCII(ascii_chars, 128, NULL); - if (!ascii_chars_u) goto bad; - ascii_chars_b = PyUnicode_AsEncodedString(ascii_chars_u, default_encoding_c, NULL); - if (!ascii_chars_b || !PyBytes_Check(ascii_chars_b) || memcmp(ascii_chars, PyBytes_AS_STRING(ascii_chars_b), 128) != 0) { - PyErr_Format( - PyExc_ValueError, - "This module compiled with c_string_encoding=ascii, but default encoding '%.200s' is not a superset of ascii.", - default_encoding_c); - goto bad; - } - Py_DECREF(ascii_chars_u); - Py_DECREF(ascii_chars_b); - } - Py_DECREF(default_encoding); - return 0; -bad: - Py_XDECREF(default_encoding); - Py_XDECREF(ascii_chars_u); - Py_XDECREF(ascii_chars_b); - return -1; -} -#endif -#if __PYX_DEFAULT_STRING_ENCODING_IS_DEFAULT && PY_MAJOR_VERSION >= 3 -#define __Pyx_PyUnicode_FromStringAndSize(c_str, size) PyUnicode_DecodeUTF8(c_str, size, NULL) -#else -#define __Pyx_PyUnicode_FromStringAndSize(c_str, size) PyUnicode_Decode(c_str, size, __PYX_DEFAULT_STRING_ENCODING, NULL) -#if __PYX_DEFAULT_STRING_ENCODING_IS_DEFAULT -static char* __PYX_DEFAULT_STRING_ENCODING; -static int __Pyx_init_sys_getdefaultencoding_params(void) { - PyObject* sys; - PyObject* default_encoding = NULL; - char* default_encoding_c; - sys = PyImport_ImportModule("sys"); - if (!sys) goto bad; - default_encoding = PyObject_CallMethod(sys, (char*) (const char*) "getdefaultencoding", NULL); - Py_DECREF(sys); - if (!default_encoding) goto bad; - default_encoding_c = PyBytes_AsString(default_encoding); - if (!default_encoding_c) goto bad; - __PYX_DEFAULT_STRING_ENCODING = (char*) malloc(strlen(default_encoding_c) + 1); - if (!__PYX_DEFAULT_STRING_ENCODING) goto bad; - strcpy(__PYX_DEFAULT_STRING_ENCODING, default_encoding_c); - Py_DECREF(default_encoding); - return 0; -bad: - Py_XDECREF(default_encoding); - return -1; -} -#endif -#endif - - -/* Test for GCC > 2.95 */ -#if defined(__GNUC__) && (__GNUC__ > 2 || (__GNUC__ == 2 && (__GNUC_MINOR__ > 95))) - #define likely(x) __builtin_expect(!!(x), 1) - #define unlikely(x) __builtin_expect(!!(x), 0) -#else /* !__GNUC__ or GCC < 2.95 */ - #define likely(x) (x) - #define unlikely(x) (x) -#endif /* __GNUC__ */ -static CYTHON_INLINE void __Pyx_pretend_to_initialize(void* ptr) { (void)ptr; } - -static PyObject *__pyx_m = NULL; -static PyObject *__pyx_d; -static PyObject *__pyx_b; -static PyObject *__pyx_cython_runtime = NULL; -static PyObject *__pyx_empty_tuple; -static PyObject *__pyx_empty_bytes; -static PyObject *__pyx_empty_unicode; -static int __pyx_lineno; -static int __pyx_clineno = 0; -static const char * __pyx_cfilenm= __FILE__; -static const char *__pyx_filename; - - -static const char *__pyx_f[] = { - "pmercury/protocols/dtls.pyx", - "stringsource", -}; - -/*--- Type declarations ---*/ -struct __pyx_obj_8pmercury_9protocols_4dtls_DTLS; - -/* "pmercury/protocols/dtls.pyx":33 - * - * - * cdef class DTLS(): # <<<<<<<<<<<<<< - * cdef dict fp_db - * - */ -struct __pyx_obj_8pmercury_9protocols_4dtls_DTLS { - PyObject_HEAD - PyObject *fp_db; -}; - - -/* --- Runtime support code (head) --- */ -/* Refnanny.proto */ -#ifndef CYTHON_REFNANNY - #define CYTHON_REFNANNY 0 -#endif -#if CYTHON_REFNANNY - typedef struct { - void (*INCREF)(void*, PyObject*, int); - void (*DECREF)(void*, PyObject*, int); - void (*GOTREF)(void*, PyObject*, int); - void (*GIVEREF)(void*, PyObject*, int); - void* (*SetupContext)(const char*, int, const char*); - void (*FinishContext)(void**); - } __Pyx_RefNannyAPIStruct; - static __Pyx_RefNannyAPIStruct *__Pyx_RefNanny = NULL; - static __Pyx_RefNannyAPIStruct *__Pyx_RefNannyImportAPI(const char *modname); - #define __Pyx_RefNannyDeclarations void *__pyx_refnanny = NULL; -#ifdef WITH_THREAD - #define __Pyx_RefNannySetupContext(name, acquire_gil)\ - if (acquire_gil) {\ - PyGILState_STATE __pyx_gilstate_save = PyGILState_Ensure();\ - __pyx_refnanny = __Pyx_RefNanny->SetupContext((name), __LINE__, __FILE__);\ - PyGILState_Release(__pyx_gilstate_save);\ - } else {\ - __pyx_refnanny = __Pyx_RefNanny->SetupContext((name), __LINE__, __FILE__);\ - } -#else - #define __Pyx_RefNannySetupContext(name, acquire_gil)\ - __pyx_refnanny = __Pyx_RefNanny->SetupContext((name), __LINE__, __FILE__) -#endif - #define __Pyx_RefNannyFinishContext()\ - __Pyx_RefNanny->FinishContext(&__pyx_refnanny) - #define __Pyx_INCREF(r) __Pyx_RefNanny->INCREF(__pyx_refnanny, (PyObject *)(r), __LINE__) - #define __Pyx_DECREF(r) __Pyx_RefNanny->DECREF(__pyx_refnanny, (PyObject *)(r), __LINE__) - #define __Pyx_GOTREF(r) __Pyx_RefNanny->GOTREF(__pyx_refnanny, (PyObject *)(r), __LINE__) - #define __Pyx_GIVEREF(r) __Pyx_RefNanny->GIVEREF(__pyx_refnanny, (PyObject *)(r), __LINE__) - #define __Pyx_XINCREF(r) do { if((r) != NULL) {__Pyx_INCREF(r); }} while(0) - #define __Pyx_XDECREF(r) do { if((r) != NULL) {__Pyx_DECREF(r); }} while(0) - #define __Pyx_XGOTREF(r) do { if((r) != NULL) {__Pyx_GOTREF(r); }} while(0) - #define __Pyx_XGIVEREF(r) do { if((r) != NULL) {__Pyx_GIVEREF(r);}} while(0) -#else - #define __Pyx_RefNannyDeclarations - #define __Pyx_RefNannySetupContext(name, acquire_gil) - #define __Pyx_RefNannyFinishContext() - #define __Pyx_INCREF(r) Py_INCREF(r) - #define __Pyx_DECREF(r) Py_DECREF(r) - #define __Pyx_GOTREF(r) - #define __Pyx_GIVEREF(r) - #define __Pyx_XINCREF(r) Py_XINCREF(r) - #define __Pyx_XDECREF(r) Py_XDECREF(r) - #define __Pyx_XGOTREF(r) - #define __Pyx_XGIVEREF(r) -#endif -#define __Pyx_XDECREF_SET(r, v) do {\ - PyObject *tmp = (PyObject *) r;\ - r = v; __Pyx_XDECREF(tmp);\ - } while (0) -#define __Pyx_DECREF_SET(r, v) do {\ - PyObject *tmp = (PyObject *) r;\ - r = v; __Pyx_DECREF(tmp);\ - } while (0) -#define __Pyx_CLEAR(r) do { PyObject* tmp = ((PyObject*)(r)); r = NULL; __Pyx_DECREF(tmp);} while(0) -#define __Pyx_XCLEAR(r) do { if((r) != NULL) {PyObject* tmp = ((PyObject*)(r)); r = NULL; __Pyx_DECREF(tmp);}} while(0) - -/* PyObjectGetAttrStr.proto */ -#if CYTHON_USE_TYPE_SLOTS -static CYTHON_INLINE PyObject* __Pyx_PyObject_GetAttrStr(PyObject* obj, PyObject* attr_name); -#else -#define __Pyx_PyObject_GetAttrStr(o,n) PyObject_GetAttr(o,n) -#endif - -/* GetBuiltinName.proto */ -static PyObject *__Pyx_GetBuiltinName(PyObject *name); - -/* RaiseDoubleKeywords.proto */ -static void __Pyx_RaiseDoubleKeywordsError(const char* func_name, PyObject* kw_name); - -/* ParseKeywords.proto */ -static int __Pyx_ParseOptionalKeywords(PyObject *kwds, PyObject **argnames[],\ - PyObject *kwds2, PyObject *values[], Py_ssize_t num_pos_args,\ - const char* function_name); - -/* RaiseArgTupleInvalid.proto */ -static void __Pyx_RaiseArgtupleInvalid(const char* func_name, int exact, - Py_ssize_t num_min, Py_ssize_t num_max, Py_ssize_t num_found); - -/* PyIntCompare.proto */ -static CYTHON_INLINE PyObject* __Pyx_PyInt_EqObjC(PyObject *op1, PyObject *op2, long intval, long inplace); - -/* GetItemInt.proto */ -#define __Pyx_GetItemInt(o, i, type, is_signed, to_py_func, is_list, wraparound, boundscheck)\ - (__Pyx_fits_Py_ssize_t(i, type, is_signed) ?\ - __Pyx_GetItemInt_Fast(o, (Py_ssize_t)i, is_list, wraparound, boundscheck) :\ - (is_list ? (PyErr_SetString(PyExc_IndexError, "list index out of range"), (PyObject*)NULL) :\ - __Pyx_GetItemInt_Generic(o, to_py_func(i)))) -#define __Pyx_GetItemInt_List(o, i, type, is_signed, to_py_func, is_list, wraparound, boundscheck)\ - (__Pyx_fits_Py_ssize_t(i, type, is_signed) ?\ - __Pyx_GetItemInt_List_Fast(o, (Py_ssize_t)i, wraparound, boundscheck) :\ - (PyErr_SetString(PyExc_IndexError, "list index out of range"), (PyObject*)NULL)) -static CYTHON_INLINE PyObject *__Pyx_GetItemInt_List_Fast(PyObject *o, Py_ssize_t i, - int wraparound, int boundscheck); -#define __Pyx_GetItemInt_Tuple(o, i, type, is_signed, to_py_func, is_list, wraparound, boundscheck)\ - (__Pyx_fits_Py_ssize_t(i, type, is_signed) ?\ - __Pyx_GetItemInt_Tuple_Fast(o, (Py_ssize_t)i, wraparound, boundscheck) :\ - (PyErr_SetString(PyExc_IndexError, "tuple index out of range"), (PyObject*)NULL)) -static CYTHON_INLINE PyObject *__Pyx_GetItemInt_Tuple_Fast(PyObject *o, Py_ssize_t i, - int wraparound, int boundscheck); -static PyObject *__Pyx_GetItemInt_Generic(PyObject *o, PyObject* j); -static CYTHON_INLINE PyObject *__Pyx_GetItemInt_Fast(PyObject *o, Py_ssize_t i, - int is_list, int wraparound, int boundscheck); - -/* ObjectGetItem.proto */ -#if CYTHON_USE_TYPE_SLOTS -static CYTHON_INLINE PyObject *__Pyx_PyObject_GetItem(PyObject *obj, PyObject* key); -#else -#define __Pyx_PyObject_GetItem(obj, key) PyObject_GetItem(obj, key) -#endif - -/* PyIntBinop.proto */ -#if !CYTHON_COMPILING_IN_PYPY -static PyObject* __Pyx_PyInt_AddObjC(PyObject *op1, PyObject *op2, long intval, int inplace, int zerodivision_check); -#else -#define __Pyx_PyInt_AddObjC(op1, op2, intval, inplace, zerodivision_check)\ - (inplace ? PyNumber_InPlaceAdd(op1, op2) : PyNumber_Add(op1, op2)) -#endif - -/* ArgTypeTest.proto */ -#define __Pyx_ArgTypeTest(obj, type, none_allowed, name, exact)\ - ((likely((Py_TYPE(obj) == type) | (none_allowed && (obj == Py_None)))) ? 1 :\ - __Pyx__ArgTypeTest(obj, type, name, exact)) -static int __Pyx__ArgTypeTest(PyObject *obj, PyTypeObject *type, const char *name, int exact); - -/* BuildPyUnicode.proto */ -static PyObject* __Pyx_PyUnicode_BuildFromAscii(Py_ssize_t ulength, char* chars, int clength, - int prepend_sign, char padding_char); - -/* CIntToPyUnicode.proto */ -static CYTHON_INLINE PyObject* __Pyx_PyUnicode_From_unsigned_char(unsigned char value, Py_ssize_t width, char padding_char, char format_char); - -/* IncludeStringH.proto */ -#include - -/* JoinPyUnicode.proto */ -static PyObject* __Pyx_PyUnicode_Join(PyObject* value_tuple, Py_ssize_t value_count, Py_ssize_t result_ulength, - Py_UCS4 max_char); - -/* PyDictVersioning.proto */ -#if CYTHON_USE_DICT_VERSIONS && CYTHON_USE_TYPE_SLOTS -#define __PYX_DICT_VERSION_INIT ((PY_UINT64_T) -1) -#define __PYX_GET_DICT_VERSION(dict) (((PyDictObject*)(dict))->ma_version_tag) -#define __PYX_UPDATE_DICT_CACHE(dict, value, cache_var, version_var)\ - (version_var) = __PYX_GET_DICT_VERSION(dict);\ - (cache_var) = (value); -#define __PYX_PY_DICT_LOOKUP_IF_MODIFIED(VAR, DICT, LOOKUP) {\ - static PY_UINT64_T __pyx_dict_version = 0;\ - static PyObject *__pyx_dict_cached_value = NULL;\ - if (likely(__PYX_GET_DICT_VERSION(DICT) == __pyx_dict_version)) {\ - (VAR) = __pyx_dict_cached_value;\ - } else {\ - (VAR) = __pyx_dict_cached_value = (LOOKUP);\ - __pyx_dict_version = __PYX_GET_DICT_VERSION(DICT);\ - }\ -} -static CYTHON_INLINE PY_UINT64_T __Pyx_get_tp_dict_version(PyObject *obj); -static CYTHON_INLINE PY_UINT64_T __Pyx_get_object_dict_version(PyObject *obj); -static CYTHON_INLINE int __Pyx_object_dict_version_matches(PyObject* obj, PY_UINT64_T tp_dict_version, PY_UINT64_T obj_dict_version); -#else -#define __PYX_GET_DICT_VERSION(dict) (0) -#define __PYX_UPDATE_DICT_CACHE(dict, value, cache_var, version_var) -#define __PYX_PY_DICT_LOOKUP_IF_MODIFIED(VAR, DICT, LOOKUP) (VAR) = (LOOKUP); -#endif - -/* GetModuleGlobalName.proto */ -#if CYTHON_USE_DICT_VERSIONS -#define __Pyx_GetModuleGlobalName(var, name) {\ - static PY_UINT64_T __pyx_dict_version = 0;\ - static PyObject *__pyx_dict_cached_value = NULL;\ - (var) = (likely(__pyx_dict_version == __PYX_GET_DICT_VERSION(__pyx_d))) ?\ - (likely(__pyx_dict_cached_value) ? __Pyx_NewRef(__pyx_dict_cached_value) : __Pyx_GetBuiltinName(name)) :\ - __Pyx__GetModuleGlobalName(name, &__pyx_dict_version, &__pyx_dict_cached_value);\ -} -#define __Pyx_GetModuleGlobalNameUncached(var, name) {\ - PY_UINT64_T __pyx_dict_version;\ - PyObject *__pyx_dict_cached_value;\ - (var) = __Pyx__GetModuleGlobalName(name, &__pyx_dict_version, &__pyx_dict_cached_value);\ -} -static PyObject *__Pyx__GetModuleGlobalName(PyObject *name, PY_UINT64_T *dict_version, PyObject **dict_cached_value); -#else -#define __Pyx_GetModuleGlobalName(var, name) (var) = __Pyx__GetModuleGlobalName(name) -#define __Pyx_GetModuleGlobalNameUncached(var, name) (var) = __Pyx__GetModuleGlobalName(name) -static CYTHON_INLINE PyObject *__Pyx__GetModuleGlobalName(PyObject *name); -#endif - -/* PyFunctionFastCall.proto */ -#if CYTHON_FAST_PYCALL -#define __Pyx_PyFunction_FastCall(func, args, nargs)\ - __Pyx_PyFunction_FastCallDict((func), (args), (nargs), NULL) -#if 1 || PY_VERSION_HEX < 0x030600B1 -static PyObject *__Pyx_PyFunction_FastCallDict(PyObject *func, PyObject **args, Py_ssize_t nargs, PyObject *kwargs); -#else -#define __Pyx_PyFunction_FastCallDict(func, args, nargs, kwargs) _PyFunction_FastCallDict(func, args, nargs, kwargs) -#endif -#define __Pyx_BUILD_ASSERT_EXPR(cond)\ - (sizeof(char [1 - 2*!(cond)]) - 1) -#ifndef Py_MEMBER_SIZE -#define Py_MEMBER_SIZE(type, member) sizeof(((type *)0)->member) -#endif - static size_t __pyx_pyframe_localsplus_offset = 0; - #include "frameobject.h" - #define __Pxy_PyFrame_Initialize_Offsets()\ - ((void)__Pyx_BUILD_ASSERT_EXPR(sizeof(PyFrameObject) == offsetof(PyFrameObject, f_localsplus) + Py_MEMBER_SIZE(PyFrameObject, f_localsplus)),\ - (void)(__pyx_pyframe_localsplus_offset = ((size_t)PyFrame_Type.tp_basicsize) - Py_MEMBER_SIZE(PyFrameObject, f_localsplus))) - #define __Pyx_PyFrame_GetLocalsplus(frame)\ - (assert(__pyx_pyframe_localsplus_offset), (PyObject **)(((char *)(frame)) + __pyx_pyframe_localsplus_offset)) -#endif - -/* PyCFunctionFastCall.proto */ -#if CYTHON_FAST_PYCCALL -static CYTHON_INLINE PyObject *__Pyx_PyCFunction_FastCall(PyObject *func, PyObject **args, Py_ssize_t nargs); -#else -#define __Pyx_PyCFunction_FastCall(func, args, nargs) (assert(0), NULL) -#endif - -/* PyObjectCall.proto */ -#if CYTHON_COMPILING_IN_CPYTHON -static CYTHON_INLINE PyObject* __Pyx_PyObject_Call(PyObject *func, PyObject *arg, PyObject *kw); -#else -#define __Pyx_PyObject_Call(func, arg, kw) PyObject_Call(func, arg, kw) -#endif - -/* PyObjectCallMethO.proto */ -#if CYTHON_COMPILING_IN_CPYTHON -static CYTHON_INLINE PyObject* __Pyx_PyObject_CallMethO(PyObject *func, PyObject *arg); -#endif - -/* PyObjectCallNoArg.proto */ -#if CYTHON_COMPILING_IN_CPYTHON -static CYTHON_INLINE PyObject* __Pyx_PyObject_CallNoArg(PyObject *func); -#else -#define __Pyx_PyObject_CallNoArg(func) __Pyx_PyObject_Call(func, __pyx_empty_tuple, NULL) -#endif - -/* PyObjectCallOneArg.proto */ -static CYTHON_INLINE PyObject* __Pyx_PyObject_CallOneArg(PyObject *func, PyObject *arg); - -/* ListAppend.proto */ -#if CYTHON_USE_PYLIST_INTERNALS && CYTHON_ASSUME_SAFE_MACROS -static CYTHON_INLINE int __Pyx_PyList_Append(PyObject* list, PyObject* x) { - PyListObject* L = (PyListObject*) list; - Py_ssize_t len = Py_SIZE(list); - if (likely(L->allocated > len) & likely(len > (L->allocated >> 1))) { - Py_INCREF(x); - PyList_SET_ITEM(list, len, x); - Py_SIZE(list) = len+1; - return 0; - } - return PyList_Append(list, x); -} -#else -#define __Pyx_PyList_Append(L,x) PyList_Append(L,x) -#endif - -/* RaiseTooManyValuesToUnpack.proto */ -static CYTHON_INLINE void __Pyx_RaiseTooManyValuesError(Py_ssize_t expected); - -/* RaiseNeedMoreValuesToUnpack.proto */ -static CYTHON_INLINE void __Pyx_RaiseNeedMoreValuesError(Py_ssize_t index); - -/* IterFinish.proto */ -static CYTHON_INLINE int __Pyx_IterFinish(void); - -/* UnpackItemEndCheck.proto */ -static int __Pyx_IternextUnpackEndCheck(PyObject *retval, Py_ssize_t expected); - -/* PyIntBinop.proto */ -#if !CYTHON_COMPILING_IN_PYPY -static PyObject* __Pyx_PyInt_AddCObj(PyObject *op1, PyObject *op2, long intval, int inplace, int zerodivision_check); -#else -#define __Pyx_PyInt_AddCObj(op1, op2, intval, inplace, zerodivision_check)\ - (inplace ? PyNumber_InPlaceAdd(op1, op2) : PyNumber_Add(op1, op2)) -#endif - -/* PyErrExceptionMatches.proto */ -#if CYTHON_FAST_THREAD_STATE -#define __Pyx_PyErr_ExceptionMatches(err) __Pyx_PyErr_ExceptionMatchesInState(__pyx_tstate, err) -static CYTHON_INLINE int __Pyx_PyErr_ExceptionMatchesInState(PyThreadState* tstate, PyObject* err); -#else -#define __Pyx_PyErr_ExceptionMatches(err) PyErr_ExceptionMatches(err) -#endif - -/* PyThreadStateGet.proto */ -#if CYTHON_FAST_THREAD_STATE -#define __Pyx_PyThreadState_declare PyThreadState *__pyx_tstate; -#define __Pyx_PyThreadState_assign __pyx_tstate = __Pyx_PyThreadState_Current; -#define __Pyx_PyErr_Occurred() __pyx_tstate->curexc_type -#else -#define __Pyx_PyThreadState_declare -#define __Pyx_PyThreadState_assign -#define __Pyx_PyErr_Occurred() PyErr_Occurred() -#endif - -/* PyErrFetchRestore.proto */ -#if CYTHON_FAST_THREAD_STATE -#define __Pyx_PyErr_Clear() __Pyx_ErrRestore(NULL, NULL, NULL) -#define __Pyx_ErrRestoreWithState(type, value, tb) __Pyx_ErrRestoreInState(PyThreadState_GET(), type, value, tb) -#define __Pyx_ErrFetchWithState(type, value, tb) __Pyx_ErrFetchInState(PyThreadState_GET(), type, value, tb) -#define __Pyx_ErrRestore(type, value, tb) __Pyx_ErrRestoreInState(__pyx_tstate, type, value, tb) -#define __Pyx_ErrFetch(type, value, tb) __Pyx_ErrFetchInState(__pyx_tstate, type, value, tb) -static CYTHON_INLINE void __Pyx_ErrRestoreInState(PyThreadState *tstate, PyObject *type, PyObject *value, PyObject *tb); -static CYTHON_INLINE void __Pyx_ErrFetchInState(PyThreadState *tstate, PyObject **type, PyObject **value, PyObject **tb); -#if CYTHON_COMPILING_IN_CPYTHON -#define __Pyx_PyErr_SetNone(exc) (Py_INCREF(exc), __Pyx_ErrRestore((exc), NULL, NULL)) -#else -#define __Pyx_PyErr_SetNone(exc) PyErr_SetNone(exc) -#endif -#else -#define __Pyx_PyErr_Clear() PyErr_Clear() -#define __Pyx_PyErr_SetNone(exc) PyErr_SetNone(exc) -#define __Pyx_ErrRestoreWithState(type, value, tb) PyErr_Restore(type, value, tb) -#define __Pyx_ErrFetchWithState(type, value, tb) PyErr_Fetch(type, value, tb) -#define __Pyx_ErrRestoreInState(tstate, type, value, tb) PyErr_Restore(type, value, tb) -#define __Pyx_ErrFetchInState(tstate, type, value, tb) PyErr_Fetch(type, value, tb) -#define __Pyx_ErrRestore(type, value, tb) PyErr_Restore(type, value, tb) -#define __Pyx_ErrFetch(type, value, tb) PyErr_Fetch(type, value, tb) -#endif - -/* GetAttr.proto */ -static CYTHON_INLINE PyObject *__Pyx_GetAttr(PyObject *, PyObject *); - -/* GetAttr3.proto */ -static CYTHON_INLINE PyObject *__Pyx_GetAttr3(PyObject *, PyObject *, PyObject *); - -/* Import.proto */ -static PyObject *__Pyx_Import(PyObject *name, PyObject *from_list, int level); - -/* ImportFrom.proto */ -static PyObject* __Pyx_ImportFrom(PyObject* module, PyObject* name); - -/* PyObjectCall2Args.proto */ -static CYTHON_UNUSED PyObject* __Pyx_PyObject_Call2Args(PyObject* function, PyObject* arg1, PyObject* arg2); - -/* RaiseException.proto */ -static void __Pyx_Raise(PyObject *type, PyObject *value, PyObject *tb, PyObject *cause); - -/* HasAttr.proto */ -static CYTHON_INLINE int __Pyx_HasAttr(PyObject *, PyObject *); - -/* PyObject_GenericGetAttrNoDict.proto */ -#if CYTHON_USE_TYPE_SLOTS && CYTHON_USE_PYTYPE_LOOKUP && PY_VERSION_HEX < 0x03070000 -static CYTHON_INLINE PyObject* __Pyx_PyObject_GenericGetAttrNoDict(PyObject* obj, PyObject* attr_name); -#else -#define __Pyx_PyObject_GenericGetAttrNoDict PyObject_GenericGetAttr -#endif - -/* PyObject_GenericGetAttr.proto */ -#if CYTHON_USE_TYPE_SLOTS && CYTHON_USE_PYTYPE_LOOKUP && PY_VERSION_HEX < 0x03070000 -static PyObject* __Pyx_PyObject_GenericGetAttr(PyObject* obj, PyObject* attr_name); -#else -#define __Pyx_PyObject_GenericGetAttr PyObject_GenericGetAttr -#endif - -/* SetupReduce.proto */ -static int __Pyx_setup_reduce(PyObject* type_obj); - -/* PyObjectGetMethod.proto */ -static int __Pyx_PyObject_GetMethod(PyObject *obj, PyObject *name, PyObject **method); - -/* PyObjectCallMethod1.proto */ -static PyObject* __Pyx_PyObject_CallMethod1(PyObject* obj, PyObject* method_name, PyObject* arg); - -/* append.proto */ -static CYTHON_INLINE int __Pyx_PyObject_Append(PyObject* L, PyObject* x); - -/* GetNameInClass.proto */ -#define __Pyx_GetNameInClass(var, nmspace, name) (var) = __Pyx__GetNameInClass(nmspace, name) -static PyObject *__Pyx__GetNameInClass(PyObject *nmspace, PyObject *name); - -/* CLineInTraceback.proto */ -#ifdef CYTHON_CLINE_IN_TRACEBACK -#define __Pyx_CLineForTraceback(tstate, c_line) (((CYTHON_CLINE_IN_TRACEBACK)) ? c_line : 0) -#else -static int __Pyx_CLineForTraceback(PyThreadState *tstate, int c_line); -#endif - -/* CodeObjectCache.proto */ -typedef struct { - PyCodeObject* code_object; - int code_line; -} __Pyx_CodeObjectCacheEntry; -struct __Pyx_CodeObjectCache { - int count; - int max_count; - __Pyx_CodeObjectCacheEntry* entries; -}; -static struct __Pyx_CodeObjectCache __pyx_code_cache = {0,0,NULL}; -static int __pyx_bisect_code_objects(__Pyx_CodeObjectCacheEntry* entries, int count, int code_line); -static PyCodeObject *__pyx_find_code_object(int code_line); -static void __pyx_insert_code_object(int code_line, PyCodeObject* code_object); - -/* AddTraceback.proto */ -static void __Pyx_AddTraceback(const char *funcname, int c_line, - int py_line, const char *filename); - -/* CIntToPy.proto */ -static CYTHON_INLINE PyObject* __Pyx_PyInt_From_unsigned_int(unsigned int value); - -/* CIntToPy.proto */ -static CYTHON_INLINE PyObject* __Pyx_PyInt_From_long(long value); - -/* CIntToPy.proto */ -static CYTHON_INLINE PyObject* __Pyx_PyInt_From_uint16_t(uint16_t value); - -/* CIntFromPy.proto */ -static CYTHON_INLINE unsigned int __Pyx_PyInt_As_unsigned_int(PyObject *); - -/* CIntFromPy.proto */ -static CYTHON_INLINE long __Pyx_PyInt_As_long(PyObject *); - -/* CIntFromPy.proto */ -static CYTHON_INLINE uint16_t __Pyx_PyInt_As_uint16_t(PyObject *); - -/* CIntFromPy.proto */ -static CYTHON_INLINE int __Pyx_PyInt_As_int(PyObject *); - -/* FastTypeChecks.proto */ -#if CYTHON_COMPILING_IN_CPYTHON -#define __Pyx_TypeCheck(obj, type) __Pyx_IsSubtype(Py_TYPE(obj), (PyTypeObject *)type) -static CYTHON_INLINE int __Pyx_IsSubtype(PyTypeObject *a, PyTypeObject *b); -static CYTHON_INLINE int __Pyx_PyErr_GivenExceptionMatches(PyObject *err, PyObject *type); -static CYTHON_INLINE int __Pyx_PyErr_GivenExceptionMatches2(PyObject *err, PyObject *type1, PyObject *type2); -#else -#define __Pyx_TypeCheck(obj, type) PyObject_TypeCheck(obj, (PyTypeObject *)type) -#define __Pyx_PyErr_GivenExceptionMatches(err, type) PyErr_GivenExceptionMatches(err, type) -#define __Pyx_PyErr_GivenExceptionMatches2(err, type1, type2) (PyErr_GivenExceptionMatches(err, type1) || PyErr_GivenExceptionMatches(err, type2)) -#endif -#define __Pyx_PyException_Check(obj) __Pyx_TypeCheck(obj, PyExc_Exception) - -/* CStringEquals.proto */ -static CYTHON_INLINE int __Pyx_StrEq(const char *, const char *); - -/* CheckBinaryVersion.proto */ -static int __Pyx_check_binary_version(void); - -/* InitStrings.proto */ -static int __Pyx_InitStrings(__Pyx_StringTabEntry *t); - - -/* Module declarations from 'libc.math' */ - -/* Module declarations from 'libc.stdint' */ - -/* Module declarations from 'pmercury.protocols.dtls' */ -static PyTypeObject *__pyx_ptype_8pmercury_9protocols_4dtls_DTLS = 0; -static PyObject *__pyx_f_8pmercury_9protocols_4dtls___pyx_unpickle_DTLS__set_state(struct __pyx_obj_8pmercury_9protocols_4dtls_DTLS *, PyObject *); /*proto*/ -#define __Pyx_MODULE_NAME "pmercury.protocols.dtls" -extern int __pyx_module_is_main_pmercury__protocols__dtls; -int __pyx_module_is_main_pmercury__protocols__dtls = 0; - -/* Implementation of 'pmercury.protocols.dtls' */ -static PyObject *__pyx_builtin_staticmethod; -static const char __pyx_k_[] = "("; -static const char __pyx_k_c[] = "c"; -static const char __pyx_k_s[] = "(%s)"; -static const char __pyx_k__2[] = ")"; -static const char __pyx_k__4[] = "()"; -static const char __pyx_k__5[] = ""; -static const char __pyx_k__6[] = "/../"; -static const char __pyx_k__7[] = "*"; -static const char __pyx_k_cs[] = "cs_"; -static const char __pyx_k_os[] = "os"; -static const char __pyx_k_02x[] = "02x"; -static const char __pyx_k_buf[] = "buf"; -static const char __pyx_k_hex[] = "hex"; -static const char __pyx_k_new[] = "__new__"; -static const char __pyx_k_sys[] = "sys"; -static const char __pyx_k_DTLS[] = "DTLS"; -static const char __pyx_k_data[] = "data"; -static const char __pyx_k_dict[] = "__dict__"; -static const char __pyx_k_file[] = "__file__"; -static const char __pyx_k_json[] = "json"; -static const char __pyx_k_main[] = "__main__"; -static const char __pyx_k_name[] = "name"; -static const char __pyx_k_path[] = "path"; -static const char __pyx_k_test[] = "__test__"; -static const char __pyx_k_append[] = "append"; -static const char __pyx_k_config[] = "config"; -static const char __pyx_k_dst_ip[] = "dst_ip"; -static const char __pyx_k_fp_str[] = "fp_str"; -static const char __pyx_k_import[] = "__import__"; -static const char __pyx_k_name_2[] = "__name__"; -static const char __pyx_k_offset[] = "offset"; -static const char __pyx_k_pickle[] = "pickle"; -static const char __pyx_k_reduce[] = "__reduce__"; -static const char __pyx_k_update[] = "update"; -static const char __pyx_k_abspath[] = "abspath"; -static const char __pyx_k_context[] = "context_"; -static const char __pyx_k_dirname[] = "dirname"; -static const char __pyx_k_ext_len[] = "ext_len"; -static const char __pyx_k_maxsize[] = "maxsize"; -static const char __pyx_k_data_len[] = "data_len"; -static const char __pyx_k_dst_port[] = "dst_port"; -static const char __pyx_k_fp_str_2[] = "fp_str_"; -static const char __pyx_k_getstate[] = "__getstate__"; -static const char __pyx_k_operator[] = "operator"; -static const char __pyx_k_pyx_type[] = "__pyx_type"; -static const char __pyx_k_setstate[] = "__setstate__"; -static const char __pyx_k_context_2[] = "context"; -static const char __pyx_k_functools[] = "functools"; -static const char __pyx_k_lru_cache[] = "lru_cache"; -static const char __pyx_k_pyx_state[] = "__pyx_state"; -static const char __pyx_k_reduce_ex[] = "__reduce_ex__"; -static const char __pyx_k_list_procs[] = "list_procs"; -static const char __pyx_k_pyx_result[] = "__pyx_result"; -static const char __pyx_k_tmp_fp_ext[] = "tmp_fp_ext"; -static const char __pyx_k_PickleError[] = "PickleError"; -static const char __pyx_k_fingerprint[] = "fingerprint"; -static const char __pyx_k_fp_database[] = "fp_database"; -static const char __pyx_k_server_name[] = "server_name"; -static const char __pyx_k_pyx_checksum[] = "__pyx_checksum"; -static const char __pyx_k_staticmethod[] = "staticmethod"; -static const char __pyx_k_stringsource[] = "stringsource"; -static const char __pyx_k_approx_fp_str[] = "approx_fp_str"; -static const char __pyx_k_cookie_length[] = "cookie_length"; -static const char __pyx_k_ext_total_len[] = "ext_total_len"; -static const char __pyx_k_reduce_cython[] = "__reduce_cython__"; -static const char __pyx_k_proto_identify[] = "proto_identify"; -static const char __pyx_k_parse_extension[] = "parse_extension"; -static const char __pyx_k_pyx_PickleError[] = "__pyx_PickleError"; -static const char __pyx_k_setstate_cython[] = "__setstate_cython__"; -static const char __pyx_k_pyx_unpickle_DTLS[] = "__pyx_unpickle_DTLS"; -static const char __pyx_k_session_id_length[] = "session_id_length"; -static const char __pyx_k_MAX_CACHED_RESULTS[] = "MAX_CACHED_RESULTS"; -static const char __pyx_k_cline_in_traceback[] = "cline_in_traceback"; -static const char __pyx_k_degrease_type_code[] = "degrease_type_code"; -static const char __pyx_k_get_database_entry[] = "get_database_entry"; -static const char __pyx_k_extract_server_name[] = "extract_server_name"; -static const char __pyx_k_cipher_suites_length[] = "cipher_suites_length"; -static const char __pyx_k_pmercury_protocols_dtls[] = "pmercury.protocols.dtls"; -static const char __pyx_k_pmercury_utils_tls_utils[] = "pmercury.utils.tls_utils"; -static const char __pyx_k_compression_methods_length[] = "compression_methods_length"; -static const char __pyx_k_pmercury_protocols_dtls_pyx[] = "pmercury/protocols/dtls.pyx"; -static const char __pyx_k_Copyright_c_2019_Cisco_Systems[] = "\n Copyright (c) 2019 Cisco Systems, Inc. All rights reserved.\n License at https://github.com/cisco/mercury/blob/master/LICENSE\n"; -static const char __pyx_k_Incompatible_checksums_s_vs_0x05[] = "Incompatible checksums (%s vs 0x0525e0f = (fp_db))"; -static PyObject *__pyx_kp_u_; -static PyObject *__pyx_kp_u_02x; -static PyObject *__pyx_n_s_DTLS; -static PyObject *__pyx_kp_s_Incompatible_checksums_s_vs_0x05; -static PyObject *__pyx_n_s_MAX_CACHED_RESULTS; -static PyObject *__pyx_n_s_PickleError; -static PyObject *__pyx_kp_u__2; -static PyObject *__pyx_kp_u__4; -static PyObject *__pyx_kp_u__5; -static PyObject *__pyx_kp_u__6; -static PyObject *__pyx_n_s__7; -static PyObject *__pyx_n_s_abspath; -static PyObject *__pyx_n_s_append; -static PyObject *__pyx_n_s_approx_fp_str; -static PyObject *__pyx_n_s_buf; -static PyObject *__pyx_n_s_c; -static PyObject *__pyx_n_s_cipher_suites_length; -static PyObject *__pyx_n_s_cline_in_traceback; -static PyObject *__pyx_n_s_compression_methods_length; -static PyObject *__pyx_n_s_config; -static PyObject *__pyx_n_s_context; -static PyObject *__pyx_n_s_context_2; -static PyObject *__pyx_n_s_cookie_length; -static PyObject *__pyx_n_s_cs; -static PyObject *__pyx_n_s_data; -static PyObject *__pyx_n_u_data; -static PyObject *__pyx_n_s_data_len; -static PyObject *__pyx_n_s_degrease_type_code; -static PyObject *__pyx_n_s_dict; -static PyObject *__pyx_n_s_dirname; -static PyObject *__pyx_n_s_dst_ip; -static PyObject *__pyx_n_s_dst_port; -static PyObject *__pyx_n_s_ext_len; -static PyObject *__pyx_n_s_ext_total_len; -static PyObject *__pyx_n_s_extract_server_name; -static PyObject *__pyx_n_s_file; -static PyObject *__pyx_n_s_fingerprint; -static PyObject *__pyx_n_s_fp_database; -static PyObject *__pyx_n_s_fp_str; -static PyObject *__pyx_n_s_fp_str_2; -static PyObject *__pyx_n_s_functools; -static PyObject *__pyx_n_s_get_database_entry; -static PyObject *__pyx_n_s_getstate; -static PyObject *__pyx_n_s_hex; -static PyObject *__pyx_n_s_import; -static PyObject *__pyx_n_s_json; -static PyObject *__pyx_n_s_list_procs; -static PyObject *__pyx_n_s_lru_cache; -static PyObject *__pyx_n_s_main; -static PyObject *__pyx_n_s_maxsize; -static PyObject *__pyx_n_u_name; -static PyObject *__pyx_n_s_name_2; -static PyObject *__pyx_n_s_new; -static PyObject *__pyx_n_s_offset; -static PyObject *__pyx_n_s_operator; -static PyObject *__pyx_n_s_os; -static PyObject *__pyx_n_s_parse_extension; -static PyObject *__pyx_n_s_path; -static PyObject *__pyx_n_s_pickle; -static PyObject *__pyx_n_s_pmercury_protocols_dtls; -static PyObject *__pyx_kp_s_pmercury_protocols_dtls_pyx; -static PyObject *__pyx_n_s_pmercury_utils_tls_utils; -static PyObject *__pyx_n_s_proto_identify; -static PyObject *__pyx_n_s_pyx_PickleError; -static PyObject *__pyx_n_s_pyx_checksum; -static PyObject *__pyx_n_s_pyx_result; -static PyObject *__pyx_n_s_pyx_state; -static PyObject *__pyx_n_s_pyx_type; -static PyObject *__pyx_n_s_pyx_unpickle_DTLS; -static PyObject *__pyx_n_s_reduce; -static PyObject *__pyx_n_s_reduce_cython; -static PyObject *__pyx_n_s_reduce_ex; -static PyObject *__pyx_kp_u_s; -static PyObject *__pyx_n_s_server_name; -static PyObject *__pyx_n_u_server_name; -static PyObject *__pyx_n_s_session_id_length; -static PyObject *__pyx_n_s_setstate; -static PyObject *__pyx_n_s_setstate_cython; -static PyObject *__pyx_n_s_staticmethod; -static PyObject *__pyx_kp_s_stringsource; -static PyObject *__pyx_n_s_sys; -static PyObject *__pyx_n_s_test; -static PyObject *__pyx_n_s_tmp_fp_ext; -static PyObject *__pyx_n_s_update; -static int __pyx_pf_8pmercury_9protocols_4dtls_4DTLS___init__(struct __pyx_obj_8pmercury_9protocols_4dtls_DTLS *__pyx_v_self, CYTHON_UNUSED PyObject *__pyx_v_fp_database, CYTHON_UNUSED PyObject *__pyx_v_config); /* proto */ -static PyObject *__pyx_pf_8pmercury_9protocols_4dtls_4DTLS_2proto_identify(PyObject *__pyx_v_data, PyObject *__pyx_v_offset, PyObject *__pyx_v_data_len); /* proto */ -static PyObject *__pyx_pf_8pmercury_9protocols_4dtls_4DTLS_4fingerprint(PyObject *__pyx_v_data, unsigned int __pyx_v_offset, unsigned int __pyx_v_data_len); /* proto */ -static PyObject *__pyx_pf_8pmercury_9protocols_4dtls_4DTLS_6get_database_entry(CYTHON_UNUSED struct __pyx_obj_8pmercury_9protocols_4dtls_DTLS *__pyx_v_self, CYTHON_UNUSED PyObject *__pyx_v_fp_str, CYTHON_UNUSED PyObject *__pyx_v_approx_fp_str); /* proto */ -static PyObject *__pyx_pf_8pmercury_9protocols_4dtls_4DTLS_8get_human_readable(CYTHON_UNUSED struct __pyx_obj_8pmercury_9protocols_4dtls_DTLS *__pyx_v_self, CYTHON_UNUSED PyObject *__pyx_v_fp_str_); /* proto */ -static PyObject *__pyx_pf_8pmercury_9protocols_4dtls_4DTLS_10proc_identify(CYTHON_UNUSED struct __pyx_obj_8pmercury_9protocols_4dtls_DTLS *__pyx_v_self, CYTHON_UNUSED PyObject *__pyx_v_fp_str_, CYTHON_UNUSED PyObject *__pyx_v_context_, CYTHON_UNUSED PyObject *__pyx_v_dst_ip, CYTHON_UNUSED PyObject *__pyx_v_dst_port, CYTHON_UNUSED PyObject *__pyx_v_list_procs); /* proto */ -static PyObject *__pyx_pf_8pmercury_9protocols_4dtls_4DTLS_12__reduce_cython__(struct __pyx_obj_8pmercury_9protocols_4dtls_DTLS *__pyx_v_self); /* proto */ -static PyObject *__pyx_pf_8pmercury_9protocols_4dtls_4DTLS_14__setstate_cython__(struct __pyx_obj_8pmercury_9protocols_4dtls_DTLS *__pyx_v_self, PyObject *__pyx_v___pyx_state); /* proto */ -static PyObject *__pyx_pf_8pmercury_9protocols_4dtls___pyx_unpickle_DTLS(CYTHON_UNUSED PyObject *__pyx_self, PyObject *__pyx_v___pyx_type, long __pyx_v___pyx_checksum, PyObject *__pyx_v___pyx_state); /* proto */ -static PyObject *__pyx_tp_new_8pmercury_9protocols_4dtls_DTLS(PyTypeObject *t, PyObject *a, PyObject *k); /*proto*/ -static PyObject *__pyx_int_1; -static PyObject *__pyx_int_2; -static PyObject *__pyx_int_4; -static PyObject *__pyx_int_5; -static PyObject *__pyx_int_13; -static PyObject *__pyx_int_22; -static PyObject *__pyx_int_25; -static PyObject *__pyx_int_26; -static PyObject *__pyx_int_27; -static PyObject *__pyx_int_253; -static PyObject *__pyx_int_254; -static PyObject *__pyx_int_5398031; -static PyObject *__pyx_int_16777216; -static PyObject *__pyx_tuple__3; -static PyObject *__pyx_tuple__8; -static PyObject *__pyx_tuple__10; -static PyObject *__pyx_tuple__12; -static PyObject *__pyx_codeobj__9; -static PyObject *__pyx_codeobj__11; -static PyObject *__pyx_codeobj__13; -/* Late includes */ - -/* "pmercury/protocols/dtls.pyx":36 - * cdef dict fp_db - * - * def __init__(self, fp_database=None, config=None): # <<<<<<<<<<<<<< - * self.fp_db = None - * - */ - -/* Python wrapper */ -static int __pyx_pw_8pmercury_9protocols_4dtls_4DTLS_1__init__(PyObject *__pyx_v_self, PyObject *__pyx_args, PyObject *__pyx_kwds); /*proto*/ -static int __pyx_pw_8pmercury_9protocols_4dtls_4DTLS_1__init__(PyObject *__pyx_v_self, PyObject *__pyx_args, PyObject *__pyx_kwds) { - CYTHON_UNUSED PyObject *__pyx_v_fp_database = 0; - CYTHON_UNUSED PyObject *__pyx_v_config = 0; - int __pyx_r; - __Pyx_RefNannyDeclarations - __Pyx_RefNannySetupContext("__init__ (wrapper)", 0); - { - static PyObject **__pyx_pyargnames[] = {&__pyx_n_s_fp_database,&__pyx_n_s_config,0}; - PyObject* values[2] = {0,0}; - values[0] = ((PyObject *)Py_None); - values[1] = ((PyObject *)Py_None); - if (unlikely(__pyx_kwds)) { - Py_ssize_t kw_args; - const Py_ssize_t pos_args = PyTuple_GET_SIZE(__pyx_args); - switch (pos_args) { - case 2: values[1] = PyTuple_GET_ITEM(__pyx_args, 1); - CYTHON_FALLTHROUGH; - case 1: values[0] = PyTuple_GET_ITEM(__pyx_args, 0); - CYTHON_FALLTHROUGH; - case 0: break; - default: goto __pyx_L5_argtuple_error; - } - kw_args = PyDict_Size(__pyx_kwds); - switch (pos_args) { - case 0: - if (kw_args > 0) { - PyObject* value = __Pyx_PyDict_GetItemStr(__pyx_kwds, __pyx_n_s_fp_database); - if (value) { values[0] = value; kw_args--; } - } - CYTHON_FALLTHROUGH; - case 1: - if (kw_args > 0) { - PyObject* value = __Pyx_PyDict_GetItemStr(__pyx_kwds, __pyx_n_s_config); - if (value) { values[1] = value; kw_args--; } - } - } - if (unlikely(kw_args > 0)) { - if (unlikely(__Pyx_ParseOptionalKeywords(__pyx_kwds, __pyx_pyargnames, 0, values, pos_args, "__init__") < 0)) __PYX_ERR(0, 36, __pyx_L3_error) - } - } else { - switch (PyTuple_GET_SIZE(__pyx_args)) { - case 2: values[1] = PyTuple_GET_ITEM(__pyx_args, 1); - CYTHON_FALLTHROUGH; - case 1: values[0] = PyTuple_GET_ITEM(__pyx_args, 0); - CYTHON_FALLTHROUGH; - case 0: break; - default: goto __pyx_L5_argtuple_error; - } - } - __pyx_v_fp_database = values[0]; - __pyx_v_config = values[1]; - } - goto __pyx_L4_argument_unpacking_done; - __pyx_L5_argtuple_error:; - __Pyx_RaiseArgtupleInvalid("__init__", 0, 0, 2, PyTuple_GET_SIZE(__pyx_args)); __PYX_ERR(0, 36, __pyx_L3_error) - __pyx_L3_error:; - __Pyx_AddTraceback("pmercury.protocols.dtls.DTLS.__init__", __pyx_clineno, __pyx_lineno, __pyx_filename); - __Pyx_RefNannyFinishContext(); - return -1; - __pyx_L4_argument_unpacking_done:; - __pyx_r = __pyx_pf_8pmercury_9protocols_4dtls_4DTLS___init__(((struct __pyx_obj_8pmercury_9protocols_4dtls_DTLS *)__pyx_v_self), __pyx_v_fp_database, __pyx_v_config); - - /* function exit code */ - __Pyx_RefNannyFinishContext(); - return __pyx_r; -} - -static int __pyx_pf_8pmercury_9protocols_4dtls_4DTLS___init__(struct __pyx_obj_8pmercury_9protocols_4dtls_DTLS *__pyx_v_self, CYTHON_UNUSED PyObject *__pyx_v_fp_database, CYTHON_UNUSED PyObject *__pyx_v_config) { - int __pyx_r; - __Pyx_RefNannyDeclarations - __Pyx_RefNannySetupContext("__init__", 0); - - /* "pmercury/protocols/dtls.pyx":37 - * - * def __init__(self, fp_database=None, config=None): - * self.fp_db = None # <<<<<<<<<<<<<< - * - * - */ - __Pyx_INCREF(Py_None); - __Pyx_GIVEREF(Py_None); - __Pyx_GOTREF(__pyx_v_self->fp_db); - __Pyx_DECREF(__pyx_v_self->fp_db); - __pyx_v_self->fp_db = ((PyObject*)Py_None); - - /* "pmercury/protocols/dtls.pyx":36 - * cdef dict fp_db - * - * def __init__(self, fp_database=None, config=None): # <<<<<<<<<<<<<< - * self.fp_db = None - * - */ - - /* function exit code */ - __pyx_r = 0; - __Pyx_RefNannyFinishContext(); - return __pyx_r; -} - -/* "pmercury/protocols/dtls.pyx":41 - * - * @staticmethod - * def proto_identify(data, offset, data_len): # <<<<<<<<<<<<<< - * if data_len-offset < 27: - * return False - */ - -/* Python wrapper */ -static PyObject *__pyx_pw_8pmercury_9protocols_4dtls_4DTLS_3proto_identify(CYTHON_UNUSED PyObject *__pyx_self, PyObject *__pyx_args, PyObject *__pyx_kwds); /*proto*/ -static PyMethodDef __pyx_mdef_8pmercury_9protocols_4dtls_4DTLS_3proto_identify = {"proto_identify", (PyCFunction)(void*)(PyCFunctionWithKeywords)__pyx_pw_8pmercury_9protocols_4dtls_4DTLS_3proto_identify, METH_VARARGS|METH_KEYWORDS, 0}; -static PyObject *__pyx_pw_8pmercury_9protocols_4dtls_4DTLS_3proto_identify(CYTHON_UNUSED PyObject *__pyx_self, PyObject *__pyx_args, PyObject *__pyx_kwds) { - PyObject *__pyx_v_data = 0; - PyObject *__pyx_v_offset = 0; - PyObject *__pyx_v_data_len = 0; - PyObject *__pyx_r = 0; - __Pyx_RefNannyDeclarations - __Pyx_RefNannySetupContext("proto_identify (wrapper)", 0); - { - static PyObject **__pyx_pyargnames[] = {&__pyx_n_s_data,&__pyx_n_s_offset,&__pyx_n_s_data_len,0}; - PyObject* values[3] = {0,0,0}; - if (unlikely(__pyx_kwds)) { - Py_ssize_t kw_args; - const Py_ssize_t pos_args = PyTuple_GET_SIZE(__pyx_args); - switch (pos_args) { - case 3: values[2] = PyTuple_GET_ITEM(__pyx_args, 2); - CYTHON_FALLTHROUGH; - case 2: values[1] = PyTuple_GET_ITEM(__pyx_args, 1); - CYTHON_FALLTHROUGH; - case 1: values[0] = PyTuple_GET_ITEM(__pyx_args, 0); - CYTHON_FALLTHROUGH; - case 0: break; - default: goto __pyx_L5_argtuple_error; - } - kw_args = PyDict_Size(__pyx_kwds); - switch (pos_args) { - case 0: - if (likely((values[0] = __Pyx_PyDict_GetItemStr(__pyx_kwds, __pyx_n_s_data)) != 0)) kw_args--; - else goto __pyx_L5_argtuple_error; - CYTHON_FALLTHROUGH; - case 1: - if (likely((values[1] = __Pyx_PyDict_GetItemStr(__pyx_kwds, __pyx_n_s_offset)) != 0)) kw_args--; - else { - __Pyx_RaiseArgtupleInvalid("proto_identify", 1, 3, 3, 1); __PYX_ERR(0, 41, __pyx_L3_error) - } - CYTHON_FALLTHROUGH; - case 2: - if (likely((values[2] = __Pyx_PyDict_GetItemStr(__pyx_kwds, __pyx_n_s_data_len)) != 0)) kw_args--; - else { - __Pyx_RaiseArgtupleInvalid("proto_identify", 1, 3, 3, 2); __PYX_ERR(0, 41, __pyx_L3_error) - } - } - if (unlikely(kw_args > 0)) { - if (unlikely(__Pyx_ParseOptionalKeywords(__pyx_kwds, __pyx_pyargnames, 0, values, pos_args, "proto_identify") < 0)) __PYX_ERR(0, 41, __pyx_L3_error) - } - } else if (PyTuple_GET_SIZE(__pyx_args) != 3) { - goto __pyx_L5_argtuple_error; - } else { - values[0] = PyTuple_GET_ITEM(__pyx_args, 0); - values[1] = PyTuple_GET_ITEM(__pyx_args, 1); - values[2] = PyTuple_GET_ITEM(__pyx_args, 2); - } - __pyx_v_data = values[0]; - __pyx_v_offset = values[1]; - __pyx_v_data_len = values[2]; - } - goto __pyx_L4_argument_unpacking_done; - __pyx_L5_argtuple_error:; - __Pyx_RaiseArgtupleInvalid("proto_identify", 1, 3, 3, PyTuple_GET_SIZE(__pyx_args)); __PYX_ERR(0, 41, __pyx_L3_error) - __pyx_L3_error:; - __Pyx_AddTraceback("pmercury.protocols.dtls.DTLS.proto_identify", __pyx_clineno, __pyx_lineno, __pyx_filename); - __Pyx_RefNannyFinishContext(); - return NULL; - __pyx_L4_argument_unpacking_done:; - __pyx_r = __pyx_pf_8pmercury_9protocols_4dtls_4DTLS_2proto_identify(__pyx_v_data, __pyx_v_offset, __pyx_v_data_len); - - /* function exit code */ - __Pyx_RefNannyFinishContext(); - return __pyx_r; -} - -static PyObject *__pyx_pf_8pmercury_9protocols_4dtls_4DTLS_2proto_identify(PyObject *__pyx_v_data, PyObject *__pyx_v_offset, PyObject *__pyx_v_data_len) { - PyObject *__pyx_r = NULL; - __Pyx_RefNannyDeclarations - PyObject *__pyx_t_1 = NULL; - PyObject *__pyx_t_2 = NULL; - int __pyx_t_3; - int __pyx_t_4; - __Pyx_RefNannySetupContext("proto_identify", 0); - - /* "pmercury/protocols/dtls.pyx":42 - * @staticmethod - * def proto_identify(data, offset, data_len): - * if data_len-offset < 27: # <<<<<<<<<<<<<< - * return False - * if (data[offset] == 22 and - */ - __pyx_t_1 = PyNumber_Subtract(__pyx_v_data_len, __pyx_v_offset); if (unlikely(!__pyx_t_1)) __PYX_ERR(0, 42, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_1); - __pyx_t_2 = PyObject_RichCompare(__pyx_t_1, __pyx_int_27, Py_LT); __Pyx_XGOTREF(__pyx_t_2); if (unlikely(!__pyx_t_2)) __PYX_ERR(0, 42, __pyx_L1_error) - __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0; - __pyx_t_3 = __Pyx_PyObject_IsTrue(__pyx_t_2); if (unlikely(__pyx_t_3 < 0)) __PYX_ERR(0, 42, __pyx_L1_error) - __Pyx_DECREF(__pyx_t_2); __pyx_t_2 = 0; - if (__pyx_t_3) { - - /* "pmercury/protocols/dtls.pyx":43 - * def proto_identify(data, offset, data_len): - * if data_len-offset < 27: - * return False # <<<<<<<<<<<<<< - * if (data[offset] == 22 and - * data[offset+1] == 254 and - */ - __Pyx_XDECREF(__pyx_r); - __Pyx_INCREF(Py_False); - __pyx_r = Py_False; - goto __pyx_L0; - - /* "pmercury/protocols/dtls.pyx":42 - * @staticmethod - * def proto_identify(data, offset, data_len): - * if data_len-offset < 27: # <<<<<<<<<<<<<< - * return False - * if (data[offset] == 22 and - */ - } - - /* "pmercury/protocols/dtls.pyx":44 - * if data_len-offset < 27: - * return False - * if (data[offset] == 22 and # <<<<<<<<<<<<<< - * data[offset+1] == 254 and - * data[offset+2] >= 253 and - */ - __pyx_t_2 = __Pyx_PyObject_GetItem(__pyx_v_data, __pyx_v_offset); if (unlikely(!__pyx_t_2)) __PYX_ERR(0, 44, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_2); - __pyx_t_1 = __Pyx_PyInt_EqObjC(__pyx_t_2, __pyx_int_22, 22, 0); if (unlikely(!__pyx_t_1)) __PYX_ERR(0, 44, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_1); - __Pyx_DECREF(__pyx_t_2); __pyx_t_2 = 0; - __pyx_t_4 = __Pyx_PyObject_IsTrue(__pyx_t_1); if (unlikely(__pyx_t_4 < 0)) __PYX_ERR(0, 44, __pyx_L1_error) - __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0; - if (__pyx_t_4) { - } else { - __pyx_t_3 = __pyx_t_4; - goto __pyx_L5_bool_binop_done; - } - - /* "pmercury/protocols/dtls.pyx":45 - * return False - * if (data[offset] == 22 and - * data[offset+1] == 254 and # <<<<<<<<<<<<<< - * data[offset+2] >= 253 and - * data[offset+13] == 1 and - */ - __pyx_t_1 = __Pyx_PyInt_AddObjC(__pyx_v_offset, __pyx_int_1, 1, 0, 0); if (unlikely(!__pyx_t_1)) __PYX_ERR(0, 45, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_1); - __pyx_t_2 = __Pyx_PyObject_GetItem(__pyx_v_data, __pyx_t_1); if (unlikely(!__pyx_t_2)) __PYX_ERR(0, 45, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_2); - __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0; - __pyx_t_1 = __Pyx_PyInt_EqObjC(__pyx_t_2, __pyx_int_254, 0xFE, 0); if (unlikely(!__pyx_t_1)) __PYX_ERR(0, 45, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_1); - __Pyx_DECREF(__pyx_t_2); __pyx_t_2 = 0; - __pyx_t_4 = __Pyx_PyObject_IsTrue(__pyx_t_1); if (unlikely(__pyx_t_4 < 0)) __PYX_ERR(0, 45, __pyx_L1_error) - __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0; - if (__pyx_t_4) { - } else { - __pyx_t_3 = __pyx_t_4; - goto __pyx_L5_bool_binop_done; - } - - /* "pmercury/protocols/dtls.pyx":46 - * if (data[offset] == 22 and - * data[offset+1] == 254 and - * data[offset+2] >= 253 and # <<<<<<<<<<<<<< - * data[offset+13] == 1 and - * data[offset+25] == 254 and - */ - __pyx_t_1 = __Pyx_PyInt_AddObjC(__pyx_v_offset, __pyx_int_2, 2, 0, 0); if (unlikely(!__pyx_t_1)) __PYX_ERR(0, 46, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_1); - __pyx_t_2 = __Pyx_PyObject_GetItem(__pyx_v_data, __pyx_t_1); if (unlikely(!__pyx_t_2)) __PYX_ERR(0, 46, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_2); - __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0; - __pyx_t_1 = PyObject_RichCompare(__pyx_t_2, __pyx_int_253, Py_GE); __Pyx_XGOTREF(__pyx_t_1); if (unlikely(!__pyx_t_1)) __PYX_ERR(0, 46, __pyx_L1_error) - __Pyx_DECREF(__pyx_t_2); __pyx_t_2 = 0; - __pyx_t_4 = __Pyx_PyObject_IsTrue(__pyx_t_1); if (unlikely(__pyx_t_4 < 0)) __PYX_ERR(0, 46, __pyx_L1_error) - __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0; - if (__pyx_t_4) { - } else { - __pyx_t_3 = __pyx_t_4; - goto __pyx_L5_bool_binop_done; - } - - /* "pmercury/protocols/dtls.pyx":47 - * data[offset+1] == 254 and - * data[offset+2] >= 253 and - * data[offset+13] == 1 and # <<<<<<<<<<<<<< - * data[offset+25] == 254 and - * data[offset+26] >= 253): - */ - __pyx_t_1 = __Pyx_PyInt_AddObjC(__pyx_v_offset, __pyx_int_13, 13, 0, 0); if (unlikely(!__pyx_t_1)) __PYX_ERR(0, 47, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_1); - __pyx_t_2 = __Pyx_PyObject_GetItem(__pyx_v_data, __pyx_t_1); if (unlikely(!__pyx_t_2)) __PYX_ERR(0, 47, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_2); - __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0; - __pyx_t_1 = __Pyx_PyInt_EqObjC(__pyx_t_2, __pyx_int_1, 1, 0); if (unlikely(!__pyx_t_1)) __PYX_ERR(0, 47, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_1); - __Pyx_DECREF(__pyx_t_2); __pyx_t_2 = 0; - __pyx_t_4 = __Pyx_PyObject_IsTrue(__pyx_t_1); if (unlikely(__pyx_t_4 < 0)) __PYX_ERR(0, 47, __pyx_L1_error) - __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0; - if (__pyx_t_4) { - } else { - __pyx_t_3 = __pyx_t_4; - goto __pyx_L5_bool_binop_done; - } - - /* "pmercury/protocols/dtls.pyx":48 - * data[offset+2] >= 253 and - * data[offset+13] == 1 and - * data[offset+25] == 254 and # <<<<<<<<<<<<<< - * data[offset+26] >= 253): - * return True - */ - __pyx_t_1 = __Pyx_PyInt_AddObjC(__pyx_v_offset, __pyx_int_25, 25, 0, 0); if (unlikely(!__pyx_t_1)) __PYX_ERR(0, 48, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_1); - __pyx_t_2 = __Pyx_PyObject_GetItem(__pyx_v_data, __pyx_t_1); if (unlikely(!__pyx_t_2)) __PYX_ERR(0, 48, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_2); - __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0; - __pyx_t_1 = __Pyx_PyInt_EqObjC(__pyx_t_2, __pyx_int_254, 0xFE, 0); if (unlikely(!__pyx_t_1)) __PYX_ERR(0, 48, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_1); - __Pyx_DECREF(__pyx_t_2); __pyx_t_2 = 0; - __pyx_t_4 = __Pyx_PyObject_IsTrue(__pyx_t_1); if (unlikely(__pyx_t_4 < 0)) __PYX_ERR(0, 48, __pyx_L1_error) - __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0; - if (__pyx_t_4) { - } else { - __pyx_t_3 = __pyx_t_4; - goto __pyx_L5_bool_binop_done; - } - - /* "pmercury/protocols/dtls.pyx":49 - * data[offset+13] == 1 and - * data[offset+25] == 254 and - * data[offset+26] >= 253): # <<<<<<<<<<<<<< - * return True - * return False - */ - __pyx_t_1 = __Pyx_PyInt_AddObjC(__pyx_v_offset, __pyx_int_26, 26, 0, 0); if (unlikely(!__pyx_t_1)) __PYX_ERR(0, 49, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_1); - __pyx_t_2 = __Pyx_PyObject_GetItem(__pyx_v_data, __pyx_t_1); if (unlikely(!__pyx_t_2)) __PYX_ERR(0, 49, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_2); - __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0; - __pyx_t_1 = PyObject_RichCompare(__pyx_t_2, __pyx_int_253, Py_GE); __Pyx_XGOTREF(__pyx_t_1); if (unlikely(!__pyx_t_1)) __PYX_ERR(0, 49, __pyx_L1_error) - __Pyx_DECREF(__pyx_t_2); __pyx_t_2 = 0; - __pyx_t_4 = __Pyx_PyObject_IsTrue(__pyx_t_1); if (unlikely(__pyx_t_4 < 0)) __PYX_ERR(0, 49, __pyx_L1_error) - __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0; - __pyx_t_3 = __pyx_t_4; - __pyx_L5_bool_binop_done:; - - /* "pmercury/protocols/dtls.pyx":44 - * if data_len-offset < 27: - * return False - * if (data[offset] == 22 and # <<<<<<<<<<<<<< - * data[offset+1] == 254 and - * data[offset+2] >= 253 and - */ - if (__pyx_t_3) { - - /* "pmercury/protocols/dtls.pyx":50 - * data[offset+25] == 254 and - * data[offset+26] >= 253): - * return True # <<<<<<<<<<<<<< - * return False - * - */ - __Pyx_XDECREF(__pyx_r); - __Pyx_INCREF(Py_True); - __pyx_r = Py_True; - goto __pyx_L0; - - /* "pmercury/protocols/dtls.pyx":44 - * if data_len-offset < 27: - * return False - * if (data[offset] == 22 and # <<<<<<<<<<<<<< - * data[offset+1] == 254 and - * data[offset+2] >= 253 and - */ - } - - /* "pmercury/protocols/dtls.pyx":51 - * data[offset+26] >= 253): - * return True - * return False # <<<<<<<<<<<<<< - * - * - */ - __Pyx_XDECREF(__pyx_r); - __Pyx_INCREF(Py_False); - __pyx_r = Py_False; - goto __pyx_L0; - - /* "pmercury/protocols/dtls.pyx":41 - * - * @staticmethod - * def proto_identify(data, offset, data_len): # <<<<<<<<<<<<<< - * if data_len-offset < 27: - * return False - */ - - /* function exit code */ - __pyx_L1_error:; - __Pyx_XDECREF(__pyx_t_1); - __Pyx_XDECREF(__pyx_t_2); - __Pyx_AddTraceback("pmercury.protocols.dtls.DTLS.proto_identify", __pyx_clineno, __pyx_lineno, __pyx_filename); - __pyx_r = NULL; - __pyx_L0:; - __Pyx_XGIVEREF(__pyx_r); - __Pyx_RefNannyFinishContext(); - return __pyx_r; -} - -/* "pmercury/protocols/dtls.pyx":55 - * - * @staticmethod - * def fingerprint(bytes data, unsigned int offset, unsigned int data_len): # <<<<<<<<<<<<<< - * cdef unsigned char *buf = data - * offset += 13 - */ - -/* Python wrapper */ -static PyObject *__pyx_pw_8pmercury_9protocols_4dtls_4DTLS_5fingerprint(CYTHON_UNUSED PyObject *__pyx_self, PyObject *__pyx_args, PyObject *__pyx_kwds); /*proto*/ -static PyMethodDef __pyx_mdef_8pmercury_9protocols_4dtls_4DTLS_5fingerprint = {"fingerprint", (PyCFunction)(void*)(PyCFunctionWithKeywords)__pyx_pw_8pmercury_9protocols_4dtls_4DTLS_5fingerprint, METH_VARARGS|METH_KEYWORDS, 0}; -static PyObject *__pyx_pw_8pmercury_9protocols_4dtls_4DTLS_5fingerprint(CYTHON_UNUSED PyObject *__pyx_self, PyObject *__pyx_args, PyObject *__pyx_kwds) { - PyObject *__pyx_v_data = 0; - unsigned int __pyx_v_offset; - unsigned int __pyx_v_data_len; - PyObject *__pyx_r = 0; - __Pyx_RefNannyDeclarations - __Pyx_RefNannySetupContext("fingerprint (wrapper)", 0); - { - static PyObject **__pyx_pyargnames[] = {&__pyx_n_s_data,&__pyx_n_s_offset,&__pyx_n_s_data_len,0}; - PyObject* values[3] = {0,0,0}; - if (unlikely(__pyx_kwds)) { - Py_ssize_t kw_args; - const Py_ssize_t pos_args = PyTuple_GET_SIZE(__pyx_args); - switch (pos_args) { - case 3: values[2] = PyTuple_GET_ITEM(__pyx_args, 2); - CYTHON_FALLTHROUGH; - case 2: values[1] = PyTuple_GET_ITEM(__pyx_args, 1); - CYTHON_FALLTHROUGH; - case 1: values[0] = PyTuple_GET_ITEM(__pyx_args, 0); - CYTHON_FALLTHROUGH; - case 0: break; - default: goto __pyx_L5_argtuple_error; - } - kw_args = PyDict_Size(__pyx_kwds); - switch (pos_args) { - case 0: - if (likely((values[0] = __Pyx_PyDict_GetItemStr(__pyx_kwds, __pyx_n_s_data)) != 0)) kw_args--; - else goto __pyx_L5_argtuple_error; - CYTHON_FALLTHROUGH; - case 1: - if (likely((values[1] = __Pyx_PyDict_GetItemStr(__pyx_kwds, __pyx_n_s_offset)) != 0)) kw_args--; - else { - __Pyx_RaiseArgtupleInvalid("fingerprint", 1, 3, 3, 1); __PYX_ERR(0, 55, __pyx_L3_error) - } - CYTHON_FALLTHROUGH; - case 2: - if (likely((values[2] = __Pyx_PyDict_GetItemStr(__pyx_kwds, __pyx_n_s_data_len)) != 0)) kw_args--; - else { - __Pyx_RaiseArgtupleInvalid("fingerprint", 1, 3, 3, 2); __PYX_ERR(0, 55, __pyx_L3_error) - } - } - if (unlikely(kw_args > 0)) { - if (unlikely(__Pyx_ParseOptionalKeywords(__pyx_kwds, __pyx_pyargnames, 0, values, pos_args, "fingerprint") < 0)) __PYX_ERR(0, 55, __pyx_L3_error) - } - } else if (PyTuple_GET_SIZE(__pyx_args) != 3) { - goto __pyx_L5_argtuple_error; - } else { - values[0] = PyTuple_GET_ITEM(__pyx_args, 0); - values[1] = PyTuple_GET_ITEM(__pyx_args, 1); - values[2] = PyTuple_GET_ITEM(__pyx_args, 2); - } - __pyx_v_data = ((PyObject*)values[0]); - __pyx_v_offset = __Pyx_PyInt_As_unsigned_int(values[1]); if (unlikely((__pyx_v_offset == (unsigned int)-1) && PyErr_Occurred())) __PYX_ERR(0, 55, __pyx_L3_error) - __pyx_v_data_len = __Pyx_PyInt_As_unsigned_int(values[2]); if (unlikely((__pyx_v_data_len == (unsigned int)-1) && PyErr_Occurred())) __PYX_ERR(0, 55, __pyx_L3_error) - } - goto __pyx_L4_argument_unpacking_done; - __pyx_L5_argtuple_error:; - __Pyx_RaiseArgtupleInvalid("fingerprint", 1, 3, 3, PyTuple_GET_SIZE(__pyx_args)); __PYX_ERR(0, 55, __pyx_L3_error) - __pyx_L3_error:; - __Pyx_AddTraceback("pmercury.protocols.dtls.DTLS.fingerprint", __pyx_clineno, __pyx_lineno, __pyx_filename); - __Pyx_RefNannyFinishContext(); - return NULL; - __pyx_L4_argument_unpacking_done:; - if (unlikely(!__Pyx_ArgTypeTest(((PyObject *)__pyx_v_data), (&PyBytes_Type), 1, "data", 1))) __PYX_ERR(0, 55, __pyx_L1_error) - __pyx_r = __pyx_pf_8pmercury_9protocols_4dtls_4DTLS_4fingerprint(__pyx_v_data, __pyx_v_offset, __pyx_v_data_len); - - /* function exit code */ - goto __pyx_L0; - __pyx_L1_error:; - __pyx_r = NULL; - __pyx_L0:; - __Pyx_RefNannyFinishContext(); - return __pyx_r; -} - -static PyObject *__pyx_pf_8pmercury_9protocols_4dtls_4DTLS_4fingerprint(PyObject *__pyx_v_data, unsigned int __pyx_v_offset, unsigned int __pyx_v_data_len) { - unsigned char *__pyx_v_buf; - PyObject *__pyx_v_c = 0; - uint8_t __pyx_v_session_id_length; - uint8_t __pyx_v_cookie_length; - uint16_t __pyx_v_cipher_suites_length; - PyObject *__pyx_v_cs_ = 0; - uint8_t __pyx_v_compression_methods_length; - uint16_t __pyx_v_ext_total_len; - PyObject *__pyx_v_server_name = NULL; - PyObject *__pyx_v_tmp_fp_ext = NULL; - PyObject *__pyx_v_ext_len = NULL; - PyObject *__pyx_v_context = 0; - PyObject *__pyx_r = NULL; - __Pyx_RefNannyDeclarations - unsigned char *__pyx_t_1; - PyObject *__pyx_t_2 = NULL; - Py_ssize_t __pyx_t_3; - Py_UCS4 __pyx_t_4; - PyObject *__pyx_t_5 = NULL; - int __pyx_t_6; - PyObject *__pyx_t_7 = NULL; - PyObject *__pyx_t_8 = NULL; - int __pyx_t_9; - PyObject *__pyx_t_10 = NULL; - int __pyx_t_11; - PyObject *__pyx_t_12 = NULL; - PyObject *(*__pyx_t_13)(PyObject *); - unsigned int __pyx_t_14; - uint16_t __pyx_t_15; - __Pyx_RefNannySetupContext("fingerprint", 0); - - /* "pmercury/protocols/dtls.pyx":56 - * @staticmethod - * def fingerprint(bytes data, unsigned int offset, unsigned int data_len): - * cdef unsigned char *buf = data # <<<<<<<<<<<<<< - * offset += 13 - * - */ - if (unlikely(__pyx_v_data == Py_None)) { - PyErr_SetString(PyExc_TypeError, "expected bytes, NoneType found"); - __PYX_ERR(0, 56, __pyx_L1_error) - } - __pyx_t_1 = __Pyx_PyBytes_AsWritableUString(__pyx_v_data); if (unlikely((!__pyx_t_1) && PyErr_Occurred())) __PYX_ERR(0, 56, __pyx_L1_error) - __pyx_v_buf = __pyx_t_1; - - /* "pmercury/protocols/dtls.pyx":57 - * def fingerprint(bytes data, unsigned int offset, unsigned int data_len): - * cdef unsigned char *buf = data - * offset += 13 # <<<<<<<<<<<<<< - * - * # extract handshake version - */ - __pyx_v_offset = (__pyx_v_offset + 13); - - /* "pmercury/protocols/dtls.pyx":60 - * - * # extract handshake version - * cdef list c = [f'({buf[offset+12]:02x}{buf[offset+13]:02x})'] # <<<<<<<<<<<<<< - * - * # skip header/client_random - */ - __pyx_t_2 = PyTuple_New(4); if (unlikely(!__pyx_t_2)) __PYX_ERR(0, 60, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_2); - __pyx_t_3 = 0; - __pyx_t_4 = 127; - __Pyx_INCREF(__pyx_kp_u_); - __pyx_t_3 += 1; - __Pyx_GIVEREF(__pyx_kp_u_); - PyTuple_SET_ITEM(__pyx_t_2, 0, __pyx_kp_u_); - __pyx_t_5 = __Pyx_PyUnicode_From_unsigned_char((__pyx_v_buf[(__pyx_v_offset + 12)]), 2, '0', 'x'); if (unlikely(!__pyx_t_5)) __PYX_ERR(0, 60, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_5); - __pyx_t_3 += __Pyx_PyUnicode_GET_LENGTH(__pyx_t_5); - __Pyx_GIVEREF(__pyx_t_5); - PyTuple_SET_ITEM(__pyx_t_2, 1, __pyx_t_5); - __pyx_t_5 = 0; - __pyx_t_5 = __Pyx_PyUnicode_From_unsigned_char((__pyx_v_buf[(__pyx_v_offset + 13)]), 2, '0', 'x'); if (unlikely(!__pyx_t_5)) __PYX_ERR(0, 60, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_5); - __pyx_t_3 += __Pyx_PyUnicode_GET_LENGTH(__pyx_t_5); - __Pyx_GIVEREF(__pyx_t_5); - PyTuple_SET_ITEM(__pyx_t_2, 2, __pyx_t_5); - __pyx_t_5 = 0; - __Pyx_INCREF(__pyx_kp_u__2); - __pyx_t_3 += 1; - __Pyx_GIVEREF(__pyx_kp_u__2); - PyTuple_SET_ITEM(__pyx_t_2, 3, __pyx_kp_u__2); - __pyx_t_5 = __Pyx_PyUnicode_Join(__pyx_t_2, 4, __pyx_t_3, __pyx_t_4); if (unlikely(!__pyx_t_5)) __PYX_ERR(0, 60, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_5); - __Pyx_DECREF(__pyx_t_2); __pyx_t_2 = 0; - __pyx_t_2 = PyList_New(1); if (unlikely(!__pyx_t_2)) __PYX_ERR(0, 60, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_2); - __Pyx_GIVEREF(__pyx_t_5); - PyList_SET_ITEM(__pyx_t_2, 0, __pyx_t_5); - __pyx_t_5 = 0; - __pyx_v_c = ((PyObject*)__pyx_t_2); - __pyx_t_2 = 0; - - /* "pmercury/protocols/dtls.pyx":63 - * - * # skip header/client_random - * offset += 46 # <<<<<<<<<<<<<< - * - * # parse/skip session_id - */ - __pyx_v_offset = (__pyx_v_offset + 46); - - /* "pmercury/protocols/dtls.pyx":66 - * - * # parse/skip session_id - * cdef uint8_t session_id_length = buf[offset] # <<<<<<<<<<<<<< - * offset += 1 + session_id_length - * if offset >= data_len: - */ - __pyx_v_session_id_length = (__pyx_v_buf[__pyx_v_offset]); - - /* "pmercury/protocols/dtls.pyx":67 - * # parse/skip session_id - * cdef uint8_t session_id_length = buf[offset] - * offset += 1 + session_id_length # <<<<<<<<<<<<<< - * if offset >= data_len: - * return None, None - */ - __pyx_v_offset = (__pyx_v_offset + (1 + __pyx_v_session_id_length)); - - /* "pmercury/protocols/dtls.pyx":68 - * cdef uint8_t session_id_length = buf[offset] - * offset += 1 + session_id_length - * if offset >= data_len: # <<<<<<<<<<<<<< - * return None, None - * - */ - __pyx_t_6 = ((__pyx_v_offset >= __pyx_v_data_len) != 0); - if (__pyx_t_6) { - - /* "pmercury/protocols/dtls.pyx":69 - * offset += 1 + session_id_length - * if offset >= data_len: - * return None, None # <<<<<<<<<<<<<< - * - * # parse/skip cookie - */ - __Pyx_XDECREF(__pyx_r); - __Pyx_INCREF(__pyx_tuple__3); - __pyx_r = __pyx_tuple__3; - goto __pyx_L0; - - /* "pmercury/protocols/dtls.pyx":68 - * cdef uint8_t session_id_length = buf[offset] - * offset += 1 + session_id_length - * if offset >= data_len: # <<<<<<<<<<<<<< - * return None, None - * - */ - } - - /* "pmercury/protocols/dtls.pyx":72 - * - * # parse/skip cookie - * cdef uint8_t cookie_length = buf[offset] # <<<<<<<<<<<<<< - * offset += 1 + cookie_length - * if offset >= data_len: - */ - __pyx_v_cookie_length = (__pyx_v_buf[__pyx_v_offset]); - - /* "pmercury/protocols/dtls.pyx":73 - * # parse/skip cookie - * cdef uint8_t cookie_length = buf[offset] - * offset += 1 + cookie_length # <<<<<<<<<<<<<< - * if offset >= data_len: - * return None, None - */ - __pyx_v_offset = (__pyx_v_offset + (1 + __pyx_v_cookie_length)); - - /* "pmercury/protocols/dtls.pyx":74 - * cdef uint8_t cookie_length = buf[offset] - * offset += 1 + cookie_length - * if offset >= data_len: # <<<<<<<<<<<<<< - * return None, None - * - */ - __pyx_t_6 = ((__pyx_v_offset >= __pyx_v_data_len) != 0); - if (__pyx_t_6) { - - /* "pmercury/protocols/dtls.pyx":75 - * offset += 1 + cookie_length - * if offset >= data_len: - * return None, None # <<<<<<<<<<<<<< - * - * # parse/extract/skip cipher_suites length - */ - __Pyx_XDECREF(__pyx_r); - __Pyx_INCREF(__pyx_tuple__3); - __pyx_r = __pyx_tuple__3; - goto __pyx_L0; - - /* "pmercury/protocols/dtls.pyx":74 - * cdef uint8_t cookie_length = buf[offset] - * offset += 1 + cookie_length - * if offset >= data_len: # <<<<<<<<<<<<<< - * return None, None - * - */ - } - - /* "pmercury/protocols/dtls.pyx":78 - * - * # parse/extract/skip cipher_suites length - * cdef uint16_t cipher_suites_length = htons(deref((buf+offset))) # <<<<<<<<<<<<<< - * offset += 2 - * if offset >= data_len: - */ - __pyx_v_cipher_suites_length = htons((*((uint16_t *)(__pyx_v_buf + __pyx_v_offset)))); - - /* "pmercury/protocols/dtls.pyx":79 - * # parse/extract/skip cipher_suites length - * cdef uint16_t cipher_suites_length = htons(deref((buf+offset))) - * offset += 2 # <<<<<<<<<<<<<< - * if offset >= data_len: - * return None, None - */ - __pyx_v_offset = (__pyx_v_offset + 2); - - /* "pmercury/protocols/dtls.pyx":80 - * cdef uint16_t cipher_suites_length = htons(deref((buf+offset))) - * offset += 2 - * if offset >= data_len: # <<<<<<<<<<<<<< - * return None, None - * - */ - __pyx_t_6 = ((__pyx_v_offset >= __pyx_v_data_len) != 0); - if (__pyx_t_6) { - - /* "pmercury/protocols/dtls.pyx":81 - * offset += 2 - * if offset >= data_len: - * return None, None # <<<<<<<<<<<<<< - * - * # parse/extract/skip cipher_suites - */ - __Pyx_XDECREF(__pyx_r); - __Pyx_INCREF(__pyx_tuple__3); - __pyx_r = __pyx_tuple__3; - goto __pyx_L0; - - /* "pmercury/protocols/dtls.pyx":80 - * cdef uint16_t cipher_suites_length = htons(deref((buf+offset))) - * offset += 2 - * if offset >= data_len: # <<<<<<<<<<<<<< - * return None, None - * - */ - } - - /* "pmercury/protocols/dtls.pyx":84 - * - * # parse/extract/skip cipher_suites - * cdef str cs_ = degrease_type_code(data, offset) # <<<<<<<<<<<<<< - * if cipher_suites_length > 2: - * cs_ += buf[offset+2:offset+cipher_suites_length].hex() - */ - __Pyx_GetModuleGlobalName(__pyx_t_5, __pyx_n_s_degrease_type_code); if (unlikely(!__pyx_t_5)) __PYX_ERR(0, 84, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_5); - __pyx_t_7 = __Pyx_PyInt_From_unsigned_int(__pyx_v_offset); if (unlikely(!__pyx_t_7)) __PYX_ERR(0, 84, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_7); - __pyx_t_8 = NULL; - __pyx_t_9 = 0; - if (CYTHON_UNPACK_METHODS && unlikely(PyMethod_Check(__pyx_t_5))) { - __pyx_t_8 = PyMethod_GET_SELF(__pyx_t_5); - if (likely(__pyx_t_8)) { - PyObject* function = PyMethod_GET_FUNCTION(__pyx_t_5); - __Pyx_INCREF(__pyx_t_8); - __Pyx_INCREF(function); - __Pyx_DECREF_SET(__pyx_t_5, function); - __pyx_t_9 = 1; - } - } - #if CYTHON_FAST_PYCALL - if (PyFunction_Check(__pyx_t_5)) { - PyObject *__pyx_temp[3] = {__pyx_t_8, __pyx_v_data, __pyx_t_7}; - __pyx_t_2 = __Pyx_PyFunction_FastCall(__pyx_t_5, __pyx_temp+1-__pyx_t_9, 2+__pyx_t_9); if (unlikely(!__pyx_t_2)) __PYX_ERR(0, 84, __pyx_L1_error) - __Pyx_XDECREF(__pyx_t_8); __pyx_t_8 = 0; - __Pyx_GOTREF(__pyx_t_2); - __Pyx_DECREF(__pyx_t_7); __pyx_t_7 = 0; - } else - #endif - #if CYTHON_FAST_PYCCALL - if (__Pyx_PyFastCFunction_Check(__pyx_t_5)) { - PyObject *__pyx_temp[3] = {__pyx_t_8, __pyx_v_data, __pyx_t_7}; - __pyx_t_2 = __Pyx_PyCFunction_FastCall(__pyx_t_5, __pyx_temp+1-__pyx_t_9, 2+__pyx_t_9); if (unlikely(!__pyx_t_2)) __PYX_ERR(0, 84, __pyx_L1_error) - __Pyx_XDECREF(__pyx_t_8); __pyx_t_8 = 0; - __Pyx_GOTREF(__pyx_t_2); - __Pyx_DECREF(__pyx_t_7); __pyx_t_7 = 0; - } else - #endif - { - __pyx_t_10 = PyTuple_New(2+__pyx_t_9); if (unlikely(!__pyx_t_10)) __PYX_ERR(0, 84, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_10); - if (__pyx_t_8) { - __Pyx_GIVEREF(__pyx_t_8); PyTuple_SET_ITEM(__pyx_t_10, 0, __pyx_t_8); __pyx_t_8 = NULL; - } - __Pyx_INCREF(__pyx_v_data); - __Pyx_GIVEREF(__pyx_v_data); - PyTuple_SET_ITEM(__pyx_t_10, 0+__pyx_t_9, __pyx_v_data); - __Pyx_GIVEREF(__pyx_t_7); - PyTuple_SET_ITEM(__pyx_t_10, 1+__pyx_t_9, __pyx_t_7); - __pyx_t_7 = 0; - __pyx_t_2 = __Pyx_PyObject_Call(__pyx_t_5, __pyx_t_10, NULL); if (unlikely(!__pyx_t_2)) __PYX_ERR(0, 84, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_2); - __Pyx_DECREF(__pyx_t_10); __pyx_t_10 = 0; - } - __Pyx_DECREF(__pyx_t_5); __pyx_t_5 = 0; - if (!(likely(PyUnicode_CheckExact(__pyx_t_2))||((__pyx_t_2) == Py_None)||(PyErr_Format(PyExc_TypeError, "Expected %.16s, got %.200s", "unicode", Py_TYPE(__pyx_t_2)->tp_name), 0))) __PYX_ERR(0, 84, __pyx_L1_error) - __pyx_v_cs_ = ((PyObject*)__pyx_t_2); - __pyx_t_2 = 0; - - /* "pmercury/protocols/dtls.pyx":85 - * # parse/extract/skip cipher_suites - * cdef str cs_ = degrease_type_code(data, offset) - * if cipher_suites_length > 2: # <<<<<<<<<<<<<< - * cs_ += buf[offset+2:offset+cipher_suites_length].hex() - * c.append('(%s)' % cs_) - */ - __pyx_t_6 = ((__pyx_v_cipher_suites_length > 2) != 0); - if (__pyx_t_6) { - - /* "pmercury/protocols/dtls.pyx":86 - * cdef str cs_ = degrease_type_code(data, offset) - * if cipher_suites_length > 2: - * cs_ += buf[offset+2:offset+cipher_suites_length].hex() # <<<<<<<<<<<<<< - * c.append('(%s)' % cs_) - * offset += cipher_suites_length - */ - __pyx_t_5 = __Pyx_PyBytes_FromStringAndSize(((const char*)__pyx_v_buf) + (__pyx_v_offset + 2), (__pyx_v_offset + __pyx_v_cipher_suites_length) - (__pyx_v_offset + 2)); if (unlikely(!__pyx_t_5)) __PYX_ERR(0, 86, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_5); - __pyx_t_10 = __Pyx_PyObject_GetAttrStr(__pyx_t_5, __pyx_n_s_hex); if (unlikely(!__pyx_t_10)) __PYX_ERR(0, 86, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_10); - __Pyx_DECREF(__pyx_t_5); __pyx_t_5 = 0; - __pyx_t_5 = NULL; - if (CYTHON_UNPACK_METHODS && likely(PyMethod_Check(__pyx_t_10))) { - __pyx_t_5 = PyMethod_GET_SELF(__pyx_t_10); - if (likely(__pyx_t_5)) { - PyObject* function = PyMethod_GET_FUNCTION(__pyx_t_10); - __Pyx_INCREF(__pyx_t_5); - __Pyx_INCREF(function); - __Pyx_DECREF_SET(__pyx_t_10, function); - } - } - __pyx_t_2 = (__pyx_t_5) ? __Pyx_PyObject_CallOneArg(__pyx_t_10, __pyx_t_5) : __Pyx_PyObject_CallNoArg(__pyx_t_10); - __Pyx_XDECREF(__pyx_t_5); __pyx_t_5 = 0; - if (unlikely(!__pyx_t_2)) __PYX_ERR(0, 86, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_2); - __Pyx_DECREF(__pyx_t_10); __pyx_t_10 = 0; - __pyx_t_10 = PyNumber_InPlaceAdd(__pyx_v_cs_, __pyx_t_2); if (unlikely(!__pyx_t_10)) __PYX_ERR(0, 86, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_10); - __Pyx_DECREF(__pyx_t_2); __pyx_t_2 = 0; - if (!(likely(PyUnicode_CheckExact(__pyx_t_10))||((__pyx_t_10) == Py_None)||(PyErr_Format(PyExc_TypeError, "Expected %.16s, got %.200s", "unicode", Py_TYPE(__pyx_t_10)->tp_name), 0))) __PYX_ERR(0, 86, __pyx_L1_error) - __Pyx_DECREF_SET(__pyx_v_cs_, ((PyObject*)__pyx_t_10)); - __pyx_t_10 = 0; - - /* "pmercury/protocols/dtls.pyx":85 - * # parse/extract/skip cipher_suites - * cdef str cs_ = degrease_type_code(data, offset) - * if cipher_suites_length > 2: # <<<<<<<<<<<<<< - * cs_ += buf[offset+2:offset+cipher_suites_length].hex() - * c.append('(%s)' % cs_) - */ - } - - /* "pmercury/protocols/dtls.pyx":87 - * if cipher_suites_length > 2: - * cs_ += buf[offset+2:offset+cipher_suites_length].hex() - * c.append('(%s)' % cs_) # <<<<<<<<<<<<<< - * offset += cipher_suites_length - * if offset >= data_len: - */ - __pyx_t_10 = PyUnicode_Format(__pyx_kp_u_s, __pyx_v_cs_); if (unlikely(!__pyx_t_10)) __PYX_ERR(0, 87, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_10); - __pyx_t_11 = __Pyx_PyList_Append(__pyx_v_c, __pyx_t_10); if (unlikely(__pyx_t_11 == ((int)-1))) __PYX_ERR(0, 87, __pyx_L1_error) - __Pyx_DECREF(__pyx_t_10); __pyx_t_10 = 0; - - /* "pmercury/protocols/dtls.pyx":88 - * cs_ += buf[offset+2:offset+cipher_suites_length].hex() - * c.append('(%s)' % cs_) - * offset += cipher_suites_length # <<<<<<<<<<<<<< - * if offset >= data_len: - * c.append('()') - */ - __pyx_v_offset = (__pyx_v_offset + __pyx_v_cipher_suites_length); - - /* "pmercury/protocols/dtls.pyx":89 - * c.append('(%s)' % cs_) - * offset += cipher_suites_length - * if offset >= data_len: # <<<<<<<<<<<<<< - * c.append('()') - * return ''.join(c), None - */ - __pyx_t_6 = ((__pyx_v_offset >= __pyx_v_data_len) != 0); - if (__pyx_t_6) { - - /* "pmercury/protocols/dtls.pyx":90 - * offset += cipher_suites_length - * if offset >= data_len: - * c.append('()') # <<<<<<<<<<<<<< - * return ''.join(c), None - * - */ - __pyx_t_11 = __Pyx_PyList_Append(__pyx_v_c, __pyx_kp_u__4); if (unlikely(__pyx_t_11 == ((int)-1))) __PYX_ERR(0, 90, __pyx_L1_error) - - /* "pmercury/protocols/dtls.pyx":91 - * if offset >= data_len: - * c.append('()') - * return ''.join(c), None # <<<<<<<<<<<<<< - * - * # parse/skip compression method - */ - __Pyx_XDECREF(__pyx_r); - __pyx_t_10 = PyUnicode_Join(__pyx_kp_u__5, __pyx_v_c); if (unlikely(!__pyx_t_10)) __PYX_ERR(0, 91, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_10); - __pyx_t_2 = PyTuple_New(2); if (unlikely(!__pyx_t_2)) __PYX_ERR(0, 91, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_2); - __Pyx_GIVEREF(__pyx_t_10); - PyTuple_SET_ITEM(__pyx_t_2, 0, __pyx_t_10); - __Pyx_INCREF(Py_None); - __Pyx_GIVEREF(Py_None); - PyTuple_SET_ITEM(__pyx_t_2, 1, Py_None); - __pyx_t_10 = 0; - __pyx_r = __pyx_t_2; - __pyx_t_2 = 0; - goto __pyx_L0; - - /* "pmercury/protocols/dtls.pyx":89 - * c.append('(%s)' % cs_) - * offset += cipher_suites_length - * if offset >= data_len: # <<<<<<<<<<<<<< - * c.append('()') - * return ''.join(c), None - */ - } - - /* "pmercury/protocols/dtls.pyx":94 - * - * # parse/skip compression method - * cdef uint8_t compression_methods_length = buf[offset] # <<<<<<<<<<<<<< - * offset += 1 + compression_methods_length - * if offset >= data_len: - */ - __pyx_v_compression_methods_length = (__pyx_v_buf[__pyx_v_offset]); - - /* "pmercury/protocols/dtls.pyx":95 - * # parse/skip compression method - * cdef uint8_t compression_methods_length = buf[offset] - * offset += 1 + compression_methods_length # <<<<<<<<<<<<<< - * if offset >= data_len: - * c.append('()') - */ - __pyx_v_offset = (__pyx_v_offset + (1 + __pyx_v_compression_methods_length)); - - /* "pmercury/protocols/dtls.pyx":96 - * cdef uint8_t compression_methods_length = buf[offset] - * offset += 1 + compression_methods_length - * if offset >= data_len: # <<<<<<<<<<<<<< - * c.append('()') - * return ''.join(c), None - */ - __pyx_t_6 = ((__pyx_v_offset >= __pyx_v_data_len) != 0); - if (__pyx_t_6) { - - /* "pmercury/protocols/dtls.pyx":97 - * offset += 1 + compression_methods_length - * if offset >= data_len: - * c.append('()') # <<<<<<<<<<<<<< - * return ''.join(c), None - * - */ - __pyx_t_11 = __Pyx_PyList_Append(__pyx_v_c, __pyx_kp_u__4); if (unlikely(__pyx_t_11 == ((int)-1))) __PYX_ERR(0, 97, __pyx_L1_error) - - /* "pmercury/protocols/dtls.pyx":98 - * if offset >= data_len: - * c.append('()') - * return ''.join(c), None # <<<<<<<<<<<<<< - * - * # parse/skip extensions length - */ - __Pyx_XDECREF(__pyx_r); - __pyx_t_2 = PyUnicode_Join(__pyx_kp_u__5, __pyx_v_c); if (unlikely(!__pyx_t_2)) __PYX_ERR(0, 98, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_2); - __pyx_t_10 = PyTuple_New(2); if (unlikely(!__pyx_t_10)) __PYX_ERR(0, 98, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_10); - __Pyx_GIVEREF(__pyx_t_2); - PyTuple_SET_ITEM(__pyx_t_10, 0, __pyx_t_2); - __Pyx_INCREF(Py_None); - __Pyx_GIVEREF(Py_None); - PyTuple_SET_ITEM(__pyx_t_10, 1, Py_None); - __pyx_t_2 = 0; - __pyx_r = __pyx_t_10; - __pyx_t_10 = 0; - goto __pyx_L0; - - /* "pmercury/protocols/dtls.pyx":96 - * cdef uint8_t compression_methods_length = buf[offset] - * offset += 1 + compression_methods_length - * if offset >= data_len: # <<<<<<<<<<<<<< - * c.append('()') - * return ''.join(c), None - */ - } - - /* "pmercury/protocols/dtls.pyx":101 - * - * # parse/skip extensions length - * cdef uint16_t ext_total_len = htons(deref((buf+offset))) # <<<<<<<<<<<<<< - * offset += 2 - * if offset >= data_len: - */ - __pyx_v_ext_total_len = htons((*((uint16_t *)(__pyx_v_buf + __pyx_v_offset)))); - - /* "pmercury/protocols/dtls.pyx":102 - * # parse/skip extensions length - * cdef uint16_t ext_total_len = htons(deref((buf+offset))) - * offset += 2 # <<<<<<<<<<<<<< - * if offset >= data_len: - * c.append('()') - */ - __pyx_v_offset = (__pyx_v_offset + 2); - - /* "pmercury/protocols/dtls.pyx":103 - * cdef uint16_t ext_total_len = htons(deref((buf+offset))) - * offset += 2 - * if offset >= data_len: # <<<<<<<<<<<<<< - * c.append('()') - * return ''.join(c), None - */ - __pyx_t_6 = ((__pyx_v_offset >= __pyx_v_data_len) != 0); - if (__pyx_t_6) { - - /* "pmercury/protocols/dtls.pyx":104 - * offset += 2 - * if offset >= data_len: - * c.append('()') # <<<<<<<<<<<<<< - * return ''.join(c), None - * - */ - __pyx_t_11 = __Pyx_PyList_Append(__pyx_v_c, __pyx_kp_u__4); if (unlikely(__pyx_t_11 == ((int)-1))) __PYX_ERR(0, 104, __pyx_L1_error) - - /* "pmercury/protocols/dtls.pyx":105 - * if offset >= data_len: - * c.append('()') - * return ''.join(c), None # <<<<<<<<<<<<<< - * - * # parse/extract/skip extension type/length/values - */ - __Pyx_XDECREF(__pyx_r); - __pyx_t_10 = PyUnicode_Join(__pyx_kp_u__5, __pyx_v_c); if (unlikely(!__pyx_t_10)) __PYX_ERR(0, 105, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_10); - __pyx_t_2 = PyTuple_New(2); if (unlikely(!__pyx_t_2)) __PYX_ERR(0, 105, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_2); - __Pyx_GIVEREF(__pyx_t_10); - PyTuple_SET_ITEM(__pyx_t_2, 0, __pyx_t_10); - __Pyx_INCREF(Py_None); - __Pyx_GIVEREF(Py_None); - PyTuple_SET_ITEM(__pyx_t_2, 1, Py_None); - __pyx_t_10 = 0; - __pyx_r = __pyx_t_2; - __pyx_t_2 = 0; - goto __pyx_L0; - - /* "pmercury/protocols/dtls.pyx":103 - * cdef uint16_t ext_total_len = htons(deref((buf+offset))) - * offset += 2 - * if offset >= data_len: # <<<<<<<<<<<<<< - * c.append('()') - * return ''.join(c), None - */ - } - - /* "pmercury/protocols/dtls.pyx":108 - * - * # parse/extract/skip extension type/length/values - * c.append('(') # <<<<<<<<<<<<<< - * server_name = None - * while ext_total_len > 0: - */ - __pyx_t_11 = __Pyx_PyList_Append(__pyx_v_c, __pyx_kp_u_); if (unlikely(__pyx_t_11 == ((int)-1))) __PYX_ERR(0, 108, __pyx_L1_error) - - /* "pmercury/protocols/dtls.pyx":109 - * # parse/extract/skip extension type/length/values - * c.append('(') - * server_name = None # <<<<<<<<<<<<<< - * while ext_total_len > 0: - * if offset >= data_len: - */ - __Pyx_INCREF(Py_None); - __pyx_v_server_name = Py_None; - - /* "pmercury/protocols/dtls.pyx":110 - * c.append('(') - * server_name = None - * while ext_total_len > 0: # <<<<<<<<<<<<<< - * if offset >= data_len: - * c.append(')') - */ - while (1) { - __pyx_t_6 = ((__pyx_v_ext_total_len > 0) != 0); - if (!__pyx_t_6) break; - - /* "pmercury/protocols/dtls.pyx":111 - * server_name = None - * while ext_total_len > 0: - * if offset >= data_len: # <<<<<<<<<<<<<< - * c.append(')') - * return ''.join(c), server_name - */ - __pyx_t_6 = ((__pyx_v_offset >= __pyx_v_data_len) != 0); - if (__pyx_t_6) { - - /* "pmercury/protocols/dtls.pyx":112 - * while ext_total_len > 0: - * if offset >= data_len: - * c.append(')') # <<<<<<<<<<<<<< - * return ''.join(c), server_name - * - */ - __pyx_t_11 = __Pyx_PyList_Append(__pyx_v_c, __pyx_kp_u__2); if (unlikely(__pyx_t_11 == ((int)-1))) __PYX_ERR(0, 112, __pyx_L1_error) - - /* "pmercury/protocols/dtls.pyx":113 - * if offset >= data_len: - * c.append(')') - * return ''.join(c), server_name # <<<<<<<<<<<<<< - * - * # extract server name for process/malware identification - */ - __Pyx_XDECREF(__pyx_r); - __pyx_t_2 = PyUnicode_Join(__pyx_kp_u__5, __pyx_v_c); if (unlikely(!__pyx_t_2)) __PYX_ERR(0, 113, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_2); - __pyx_t_10 = PyTuple_New(2); if (unlikely(!__pyx_t_10)) __PYX_ERR(0, 113, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_10); - __Pyx_GIVEREF(__pyx_t_2); - PyTuple_SET_ITEM(__pyx_t_10, 0, __pyx_t_2); - __Pyx_INCREF(__pyx_v_server_name); - __Pyx_GIVEREF(__pyx_v_server_name); - PyTuple_SET_ITEM(__pyx_t_10, 1, __pyx_v_server_name); - __pyx_t_2 = 0; - __pyx_r = __pyx_t_10; - __pyx_t_10 = 0; - goto __pyx_L0; - - /* "pmercury/protocols/dtls.pyx":111 - * server_name = None - * while ext_total_len > 0: - * if offset >= data_len: # <<<<<<<<<<<<<< - * c.append(')') - * return ''.join(c), server_name - */ - } - - /* "pmercury/protocols/dtls.pyx":116 - * - * # extract server name for process/malware identification - * if htons(deref((buf+offset))) == 0: # <<<<<<<<<<<<<< - * server_name = extract_server_name(data, offset+2, data_len) - * - */ - __pyx_t_6 = ((htons((*((uint16_t *)(__pyx_v_buf + __pyx_v_offset)))) == 0) != 0); - if (__pyx_t_6) { - - /* "pmercury/protocols/dtls.pyx":117 - * # extract server name for process/malware identification - * if htons(deref((buf+offset))) == 0: - * server_name = extract_server_name(data, offset+2, data_len) # <<<<<<<<<<<<<< - * - * tmp_fp_ext, offset, ext_len = parse_extension(data, offset) - */ - __Pyx_GetModuleGlobalName(__pyx_t_2, __pyx_n_s_extract_server_name); if (unlikely(!__pyx_t_2)) __PYX_ERR(0, 117, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_2); - __pyx_t_5 = __Pyx_PyInt_From_long((__pyx_v_offset + 2)); if (unlikely(!__pyx_t_5)) __PYX_ERR(0, 117, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_5); - __pyx_t_7 = __Pyx_PyInt_From_unsigned_int(__pyx_v_data_len); if (unlikely(!__pyx_t_7)) __PYX_ERR(0, 117, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_7); - __pyx_t_8 = NULL; - __pyx_t_9 = 0; - if (CYTHON_UNPACK_METHODS && unlikely(PyMethod_Check(__pyx_t_2))) { - __pyx_t_8 = PyMethod_GET_SELF(__pyx_t_2); - if (likely(__pyx_t_8)) { - PyObject* function = PyMethod_GET_FUNCTION(__pyx_t_2); - __Pyx_INCREF(__pyx_t_8); - __Pyx_INCREF(function); - __Pyx_DECREF_SET(__pyx_t_2, function); - __pyx_t_9 = 1; - } - } - #if CYTHON_FAST_PYCALL - if (PyFunction_Check(__pyx_t_2)) { - PyObject *__pyx_temp[4] = {__pyx_t_8, __pyx_v_data, __pyx_t_5, __pyx_t_7}; - __pyx_t_10 = __Pyx_PyFunction_FastCall(__pyx_t_2, __pyx_temp+1-__pyx_t_9, 3+__pyx_t_9); if (unlikely(!__pyx_t_10)) __PYX_ERR(0, 117, __pyx_L1_error) - __Pyx_XDECREF(__pyx_t_8); __pyx_t_8 = 0; - __Pyx_GOTREF(__pyx_t_10); - __Pyx_DECREF(__pyx_t_5); __pyx_t_5 = 0; - __Pyx_DECREF(__pyx_t_7); __pyx_t_7 = 0; - } else - #endif - #if CYTHON_FAST_PYCCALL - if (__Pyx_PyFastCFunction_Check(__pyx_t_2)) { - PyObject *__pyx_temp[4] = {__pyx_t_8, __pyx_v_data, __pyx_t_5, __pyx_t_7}; - __pyx_t_10 = __Pyx_PyCFunction_FastCall(__pyx_t_2, __pyx_temp+1-__pyx_t_9, 3+__pyx_t_9); if (unlikely(!__pyx_t_10)) __PYX_ERR(0, 117, __pyx_L1_error) - __Pyx_XDECREF(__pyx_t_8); __pyx_t_8 = 0; - __Pyx_GOTREF(__pyx_t_10); - __Pyx_DECREF(__pyx_t_5); __pyx_t_5 = 0; - __Pyx_DECREF(__pyx_t_7); __pyx_t_7 = 0; - } else - #endif - { - __pyx_t_12 = PyTuple_New(3+__pyx_t_9); if (unlikely(!__pyx_t_12)) __PYX_ERR(0, 117, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_12); - if (__pyx_t_8) { - __Pyx_GIVEREF(__pyx_t_8); PyTuple_SET_ITEM(__pyx_t_12, 0, __pyx_t_8); __pyx_t_8 = NULL; - } - __Pyx_INCREF(__pyx_v_data); - __Pyx_GIVEREF(__pyx_v_data); - PyTuple_SET_ITEM(__pyx_t_12, 0+__pyx_t_9, __pyx_v_data); - __Pyx_GIVEREF(__pyx_t_5); - PyTuple_SET_ITEM(__pyx_t_12, 1+__pyx_t_9, __pyx_t_5); - __Pyx_GIVEREF(__pyx_t_7); - PyTuple_SET_ITEM(__pyx_t_12, 2+__pyx_t_9, __pyx_t_7); - __pyx_t_5 = 0; - __pyx_t_7 = 0; - __pyx_t_10 = __Pyx_PyObject_Call(__pyx_t_2, __pyx_t_12, NULL); if (unlikely(!__pyx_t_10)) __PYX_ERR(0, 117, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_10); - __Pyx_DECREF(__pyx_t_12); __pyx_t_12 = 0; - } - __Pyx_DECREF(__pyx_t_2); __pyx_t_2 = 0; - __Pyx_DECREF_SET(__pyx_v_server_name, __pyx_t_10); - __pyx_t_10 = 0; - - /* "pmercury/protocols/dtls.pyx":116 - * - * # extract server name for process/malware identification - * if htons(deref((buf+offset))) == 0: # <<<<<<<<<<<<<< - * server_name = extract_server_name(data, offset+2, data_len) - * - */ - } - - /* "pmercury/protocols/dtls.pyx":119 - * server_name = extract_server_name(data, offset+2, data_len) - * - * tmp_fp_ext, offset, ext_len = parse_extension(data, offset) # <<<<<<<<<<<<<< - * if ext_len+4 > ext_total_len: - * c.append(')') - */ - __Pyx_GetModuleGlobalName(__pyx_t_2, __pyx_n_s_parse_extension); if (unlikely(!__pyx_t_2)) __PYX_ERR(0, 119, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_2); - __pyx_t_12 = __Pyx_PyInt_From_unsigned_int(__pyx_v_offset); if (unlikely(!__pyx_t_12)) __PYX_ERR(0, 119, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_12); - __pyx_t_7 = NULL; - __pyx_t_9 = 0; - if (CYTHON_UNPACK_METHODS && unlikely(PyMethod_Check(__pyx_t_2))) { - __pyx_t_7 = PyMethod_GET_SELF(__pyx_t_2); - if (likely(__pyx_t_7)) { - PyObject* function = PyMethod_GET_FUNCTION(__pyx_t_2); - __Pyx_INCREF(__pyx_t_7); - __Pyx_INCREF(function); - __Pyx_DECREF_SET(__pyx_t_2, function); - __pyx_t_9 = 1; - } - } - #if CYTHON_FAST_PYCALL - if (PyFunction_Check(__pyx_t_2)) { - PyObject *__pyx_temp[3] = {__pyx_t_7, __pyx_v_data, __pyx_t_12}; - __pyx_t_10 = __Pyx_PyFunction_FastCall(__pyx_t_2, __pyx_temp+1-__pyx_t_9, 2+__pyx_t_9); if (unlikely(!__pyx_t_10)) __PYX_ERR(0, 119, __pyx_L1_error) - __Pyx_XDECREF(__pyx_t_7); __pyx_t_7 = 0; - __Pyx_GOTREF(__pyx_t_10); - __Pyx_DECREF(__pyx_t_12); __pyx_t_12 = 0; - } else - #endif - #if CYTHON_FAST_PYCCALL - if (__Pyx_PyFastCFunction_Check(__pyx_t_2)) { - PyObject *__pyx_temp[3] = {__pyx_t_7, __pyx_v_data, __pyx_t_12}; - __pyx_t_10 = __Pyx_PyCFunction_FastCall(__pyx_t_2, __pyx_temp+1-__pyx_t_9, 2+__pyx_t_9); if (unlikely(!__pyx_t_10)) __PYX_ERR(0, 119, __pyx_L1_error) - __Pyx_XDECREF(__pyx_t_7); __pyx_t_7 = 0; - __Pyx_GOTREF(__pyx_t_10); - __Pyx_DECREF(__pyx_t_12); __pyx_t_12 = 0; - } else - #endif - { - __pyx_t_5 = PyTuple_New(2+__pyx_t_9); if (unlikely(!__pyx_t_5)) __PYX_ERR(0, 119, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_5); - if (__pyx_t_7) { - __Pyx_GIVEREF(__pyx_t_7); PyTuple_SET_ITEM(__pyx_t_5, 0, __pyx_t_7); __pyx_t_7 = NULL; - } - __Pyx_INCREF(__pyx_v_data); - __Pyx_GIVEREF(__pyx_v_data); - PyTuple_SET_ITEM(__pyx_t_5, 0+__pyx_t_9, __pyx_v_data); - __Pyx_GIVEREF(__pyx_t_12); - PyTuple_SET_ITEM(__pyx_t_5, 1+__pyx_t_9, __pyx_t_12); - __pyx_t_12 = 0; - __pyx_t_10 = __Pyx_PyObject_Call(__pyx_t_2, __pyx_t_5, NULL); if (unlikely(!__pyx_t_10)) __PYX_ERR(0, 119, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_10); - __Pyx_DECREF(__pyx_t_5); __pyx_t_5 = 0; - } - __Pyx_DECREF(__pyx_t_2); __pyx_t_2 = 0; - if ((likely(PyTuple_CheckExact(__pyx_t_10))) || (PyList_CheckExact(__pyx_t_10))) { - PyObject* sequence = __pyx_t_10; - Py_ssize_t size = __Pyx_PySequence_SIZE(sequence); - if (unlikely(size != 3)) { - if (size > 3) __Pyx_RaiseTooManyValuesError(3); - else if (size >= 0) __Pyx_RaiseNeedMoreValuesError(size); - __PYX_ERR(0, 119, __pyx_L1_error) - } - #if CYTHON_ASSUME_SAFE_MACROS && !CYTHON_AVOID_BORROWED_REFS - if (likely(PyTuple_CheckExact(sequence))) { - __pyx_t_2 = PyTuple_GET_ITEM(sequence, 0); - __pyx_t_5 = PyTuple_GET_ITEM(sequence, 1); - __pyx_t_12 = PyTuple_GET_ITEM(sequence, 2); - } else { - __pyx_t_2 = PyList_GET_ITEM(sequence, 0); - __pyx_t_5 = PyList_GET_ITEM(sequence, 1); - __pyx_t_12 = PyList_GET_ITEM(sequence, 2); - } - __Pyx_INCREF(__pyx_t_2); - __Pyx_INCREF(__pyx_t_5); - __Pyx_INCREF(__pyx_t_12); - #else - __pyx_t_2 = PySequence_ITEM(sequence, 0); if (unlikely(!__pyx_t_2)) __PYX_ERR(0, 119, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_2); - __pyx_t_5 = PySequence_ITEM(sequence, 1); if (unlikely(!__pyx_t_5)) __PYX_ERR(0, 119, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_5); - __pyx_t_12 = PySequence_ITEM(sequence, 2); if (unlikely(!__pyx_t_12)) __PYX_ERR(0, 119, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_12); - #endif - __Pyx_DECREF(__pyx_t_10); __pyx_t_10 = 0; - } else { - Py_ssize_t index = -1; - __pyx_t_7 = PyObject_GetIter(__pyx_t_10); if (unlikely(!__pyx_t_7)) __PYX_ERR(0, 119, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_7); - __Pyx_DECREF(__pyx_t_10); __pyx_t_10 = 0; - __pyx_t_13 = Py_TYPE(__pyx_t_7)->tp_iternext; - index = 0; __pyx_t_2 = __pyx_t_13(__pyx_t_7); if (unlikely(!__pyx_t_2)) goto __pyx_L14_unpacking_failed; - __Pyx_GOTREF(__pyx_t_2); - index = 1; __pyx_t_5 = __pyx_t_13(__pyx_t_7); if (unlikely(!__pyx_t_5)) goto __pyx_L14_unpacking_failed; - __Pyx_GOTREF(__pyx_t_5); - index = 2; __pyx_t_12 = __pyx_t_13(__pyx_t_7); if (unlikely(!__pyx_t_12)) goto __pyx_L14_unpacking_failed; - __Pyx_GOTREF(__pyx_t_12); - if (__Pyx_IternextUnpackEndCheck(__pyx_t_13(__pyx_t_7), 3) < 0) __PYX_ERR(0, 119, __pyx_L1_error) - __pyx_t_13 = NULL; - __Pyx_DECREF(__pyx_t_7); __pyx_t_7 = 0; - goto __pyx_L15_unpacking_done; - __pyx_L14_unpacking_failed:; - __Pyx_DECREF(__pyx_t_7); __pyx_t_7 = 0; - __pyx_t_13 = NULL; - if (__Pyx_IterFinish() == 0) __Pyx_RaiseNeedMoreValuesError(index); - __PYX_ERR(0, 119, __pyx_L1_error) - __pyx_L15_unpacking_done:; - } - __pyx_t_14 = __Pyx_PyInt_As_unsigned_int(__pyx_t_5); if (unlikely((__pyx_t_14 == (unsigned int)-1) && PyErr_Occurred())) __PYX_ERR(0, 119, __pyx_L1_error) - __Pyx_DECREF(__pyx_t_5); __pyx_t_5 = 0; - __Pyx_XDECREF_SET(__pyx_v_tmp_fp_ext, __pyx_t_2); - __pyx_t_2 = 0; - __pyx_v_offset = __pyx_t_14; - __Pyx_XDECREF_SET(__pyx_v_ext_len, __pyx_t_12); - __pyx_t_12 = 0; - - /* "pmercury/protocols/dtls.pyx":120 - * - * tmp_fp_ext, offset, ext_len = parse_extension(data, offset) - * if ext_len+4 > ext_total_len: # <<<<<<<<<<<<<< - * c.append(')') - * return ''.join(c), server_name - */ - __pyx_t_10 = __Pyx_PyInt_AddObjC(__pyx_v_ext_len, __pyx_int_4, 4, 0, 0); if (unlikely(!__pyx_t_10)) __PYX_ERR(0, 120, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_10); - __pyx_t_12 = __Pyx_PyInt_From_uint16_t(__pyx_v_ext_total_len); if (unlikely(!__pyx_t_12)) __PYX_ERR(0, 120, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_12); - __pyx_t_5 = PyObject_RichCompare(__pyx_t_10, __pyx_t_12, Py_GT); __Pyx_XGOTREF(__pyx_t_5); if (unlikely(!__pyx_t_5)) __PYX_ERR(0, 120, __pyx_L1_error) - __Pyx_DECREF(__pyx_t_10); __pyx_t_10 = 0; - __Pyx_DECREF(__pyx_t_12); __pyx_t_12 = 0; - __pyx_t_6 = __Pyx_PyObject_IsTrue(__pyx_t_5); if (unlikely(__pyx_t_6 < 0)) __PYX_ERR(0, 120, __pyx_L1_error) - __Pyx_DECREF(__pyx_t_5); __pyx_t_5 = 0; - if (__pyx_t_6) { - - /* "pmercury/protocols/dtls.pyx":121 - * tmp_fp_ext, offset, ext_len = parse_extension(data, offset) - * if ext_len+4 > ext_total_len: - * c.append(')') # <<<<<<<<<<<<<< - * return ''.join(c), server_name - * c.append('(%s)' % tmp_fp_ext) - */ - __pyx_t_11 = __Pyx_PyList_Append(__pyx_v_c, __pyx_kp_u__2); if (unlikely(__pyx_t_11 == ((int)-1))) __PYX_ERR(0, 121, __pyx_L1_error) - - /* "pmercury/protocols/dtls.pyx":122 - * if ext_len+4 > ext_total_len: - * c.append(')') - * return ''.join(c), server_name # <<<<<<<<<<<<<< - * c.append('(%s)' % tmp_fp_ext) - * - */ - __Pyx_XDECREF(__pyx_r); - __pyx_t_5 = PyUnicode_Join(__pyx_kp_u__5, __pyx_v_c); if (unlikely(!__pyx_t_5)) __PYX_ERR(0, 122, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_5); - __pyx_t_12 = PyTuple_New(2); if (unlikely(!__pyx_t_12)) __PYX_ERR(0, 122, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_12); - __Pyx_GIVEREF(__pyx_t_5); - PyTuple_SET_ITEM(__pyx_t_12, 0, __pyx_t_5); - __Pyx_INCREF(__pyx_v_server_name); - __Pyx_GIVEREF(__pyx_v_server_name); - PyTuple_SET_ITEM(__pyx_t_12, 1, __pyx_v_server_name); - __pyx_t_5 = 0; - __pyx_r = __pyx_t_12; - __pyx_t_12 = 0; - goto __pyx_L0; - - /* "pmercury/protocols/dtls.pyx":120 - * - * tmp_fp_ext, offset, ext_len = parse_extension(data, offset) - * if ext_len+4 > ext_total_len: # <<<<<<<<<<<<<< - * c.append(')') - * return ''.join(c), server_name - */ - } - - /* "pmercury/protocols/dtls.pyx":123 - * c.append(')') - * return ''.join(c), server_name - * c.append('(%s)' % tmp_fp_ext) # <<<<<<<<<<<<<< - * - * ext_total_len -= 4 + ext_len - */ - __pyx_t_12 = __Pyx_PyUnicode_FormatSafe(__pyx_kp_u_s, __pyx_v_tmp_fp_ext); if (unlikely(!__pyx_t_12)) __PYX_ERR(0, 123, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_12); - __pyx_t_11 = __Pyx_PyList_Append(__pyx_v_c, __pyx_t_12); if (unlikely(__pyx_t_11 == ((int)-1))) __PYX_ERR(0, 123, __pyx_L1_error) - __Pyx_DECREF(__pyx_t_12); __pyx_t_12 = 0; - - /* "pmercury/protocols/dtls.pyx":125 - * c.append('(%s)' % tmp_fp_ext) - * - * ext_total_len -= 4 + ext_len # <<<<<<<<<<<<<< - * c.append(')') - * - */ - __pyx_t_12 = __Pyx_PyInt_From_uint16_t(__pyx_v_ext_total_len); if (unlikely(!__pyx_t_12)) __PYX_ERR(0, 125, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_12); - __pyx_t_5 = __Pyx_PyInt_AddCObj(__pyx_int_4, __pyx_v_ext_len, 4, 0, 0); if (unlikely(!__pyx_t_5)) __PYX_ERR(0, 125, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_5); - __pyx_t_10 = PyNumber_InPlaceSubtract(__pyx_t_12, __pyx_t_5); if (unlikely(!__pyx_t_10)) __PYX_ERR(0, 125, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_10); - __Pyx_DECREF(__pyx_t_12); __pyx_t_12 = 0; - __Pyx_DECREF(__pyx_t_5); __pyx_t_5 = 0; - __pyx_t_15 = __Pyx_PyInt_As_uint16_t(__pyx_t_10); if (unlikely((__pyx_t_15 == ((uint16_t)-1)) && PyErr_Occurred())) __PYX_ERR(0, 125, __pyx_L1_error) - __Pyx_DECREF(__pyx_t_10); __pyx_t_10 = 0; - __pyx_v_ext_total_len = __pyx_t_15; - } - - /* "pmercury/protocols/dtls.pyx":126 - * - * ext_total_len -= 4 + ext_len - * c.append(')') # <<<<<<<<<<<<<< - * - * cdef list context = None - */ - __pyx_t_11 = __Pyx_PyList_Append(__pyx_v_c, __pyx_kp_u__2); if (unlikely(__pyx_t_11 == ((int)-1))) __PYX_ERR(0, 126, __pyx_L1_error) - - /* "pmercury/protocols/dtls.pyx":128 - * c.append(')') - * - * cdef list context = None # <<<<<<<<<<<<<< - * if server_name != None: - * context = [{'name':'server_name', 'data':server_name}] - */ - __Pyx_INCREF(Py_None); - __pyx_v_context = ((PyObject*)Py_None); - - /* "pmercury/protocols/dtls.pyx":129 - * - * cdef list context = None - * if server_name != None: # <<<<<<<<<<<<<< - * context = [{'name':'server_name', 'data':server_name}] - * - */ - __pyx_t_10 = PyObject_RichCompare(__pyx_v_server_name, Py_None, Py_NE); __Pyx_XGOTREF(__pyx_t_10); if (unlikely(!__pyx_t_10)) __PYX_ERR(0, 129, __pyx_L1_error) - __pyx_t_6 = __Pyx_PyObject_IsTrue(__pyx_t_10); if (unlikely(__pyx_t_6 < 0)) __PYX_ERR(0, 129, __pyx_L1_error) - __Pyx_DECREF(__pyx_t_10); __pyx_t_10 = 0; - if (__pyx_t_6) { - - /* "pmercury/protocols/dtls.pyx":130 - * cdef list context = None - * if server_name != None: - * context = [{'name':'server_name', 'data':server_name}] # <<<<<<<<<<<<<< - * - * return ''.join(c), context - */ - __pyx_t_10 = __Pyx_PyDict_NewPresized(2); if (unlikely(!__pyx_t_10)) __PYX_ERR(0, 130, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_10); - if (PyDict_SetItem(__pyx_t_10, __pyx_n_u_name, __pyx_n_u_server_name) < 0) __PYX_ERR(0, 130, __pyx_L1_error) - if (PyDict_SetItem(__pyx_t_10, __pyx_n_u_data, __pyx_v_server_name) < 0) __PYX_ERR(0, 130, __pyx_L1_error) - __pyx_t_5 = PyList_New(1); if (unlikely(!__pyx_t_5)) __PYX_ERR(0, 130, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_5); - __Pyx_GIVEREF(__pyx_t_10); - PyList_SET_ITEM(__pyx_t_5, 0, __pyx_t_10); - __pyx_t_10 = 0; - __Pyx_DECREF_SET(__pyx_v_context, ((PyObject*)__pyx_t_5)); - __pyx_t_5 = 0; - - /* "pmercury/protocols/dtls.pyx":129 - * - * cdef list context = None - * if server_name != None: # <<<<<<<<<<<<<< - * context = [{'name':'server_name', 'data':server_name}] - * - */ - } - - /* "pmercury/protocols/dtls.pyx":132 - * context = [{'name':'server_name', 'data':server_name}] - * - * return ''.join(c), context # <<<<<<<<<<<<<< - * - * - */ - __Pyx_XDECREF(__pyx_r); - __pyx_t_5 = PyUnicode_Join(__pyx_kp_u__5, __pyx_v_c); if (unlikely(!__pyx_t_5)) __PYX_ERR(0, 132, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_5); - __pyx_t_10 = PyTuple_New(2); if (unlikely(!__pyx_t_10)) __PYX_ERR(0, 132, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_10); - __Pyx_GIVEREF(__pyx_t_5); - PyTuple_SET_ITEM(__pyx_t_10, 0, __pyx_t_5); - __Pyx_INCREF(__pyx_v_context); - __Pyx_GIVEREF(__pyx_v_context); - PyTuple_SET_ITEM(__pyx_t_10, 1, __pyx_v_context); - __pyx_t_5 = 0; - __pyx_r = __pyx_t_10; - __pyx_t_10 = 0; - goto __pyx_L0; - - /* "pmercury/protocols/dtls.pyx":55 - * - * @staticmethod - * def fingerprint(bytes data, unsigned int offset, unsigned int data_len): # <<<<<<<<<<<<<< - * cdef unsigned char *buf = data - * offset += 13 - */ - - /* function exit code */ - __pyx_L1_error:; - __Pyx_XDECREF(__pyx_t_2); - __Pyx_XDECREF(__pyx_t_5); - __Pyx_XDECREF(__pyx_t_7); - __Pyx_XDECREF(__pyx_t_8); - __Pyx_XDECREF(__pyx_t_10); - __Pyx_XDECREF(__pyx_t_12); - __Pyx_AddTraceback("pmercury.protocols.dtls.DTLS.fingerprint", __pyx_clineno, __pyx_lineno, __pyx_filename); - __pyx_r = NULL; - __pyx_L0:; - __Pyx_XDECREF(__pyx_v_c); - __Pyx_XDECREF(__pyx_v_cs_); - __Pyx_XDECREF(__pyx_v_server_name); - __Pyx_XDECREF(__pyx_v_tmp_fp_ext); - __Pyx_XDECREF(__pyx_v_ext_len); - __Pyx_XDECREF(__pyx_v_context); - __Pyx_XGIVEREF(__pyx_r); - __Pyx_RefNannyFinishContext(); - return __pyx_r; -} - -/* "pmercury/protocols/dtls.pyx":136 - * - * @functools.lru_cache(maxsize=MAX_CACHED_RESULTS) - * def get_database_entry(self, fp_str, approx_fp_str): # <<<<<<<<<<<<<< - * return None - * - */ - -/* Python wrapper */ -static PyObject *__pyx_pw_8pmercury_9protocols_4dtls_4DTLS_7get_database_entry(PyObject *__pyx_v_self, PyObject *__pyx_args, PyObject *__pyx_kwds); /*proto*/ -static PyObject *__pyx_pw_8pmercury_9protocols_4dtls_4DTLS_7get_database_entry(PyObject *__pyx_v_self, PyObject *__pyx_args, PyObject *__pyx_kwds) { - CYTHON_UNUSED PyObject *__pyx_v_fp_str = 0; - CYTHON_UNUSED PyObject *__pyx_v_approx_fp_str = 0; - PyObject *__pyx_r = 0; - __Pyx_RefNannyDeclarations - __Pyx_RefNannySetupContext("get_database_entry (wrapper)", 0); - { - static PyObject **__pyx_pyargnames[] = {&__pyx_n_s_fp_str,&__pyx_n_s_approx_fp_str,0}; - PyObject* values[2] = {0,0}; - if (unlikely(__pyx_kwds)) { - Py_ssize_t kw_args; - const Py_ssize_t pos_args = PyTuple_GET_SIZE(__pyx_args); - switch (pos_args) { - case 2: values[1] = PyTuple_GET_ITEM(__pyx_args, 1); - CYTHON_FALLTHROUGH; - case 1: values[0] = PyTuple_GET_ITEM(__pyx_args, 0); - CYTHON_FALLTHROUGH; - case 0: break; - default: goto __pyx_L5_argtuple_error; - } - kw_args = PyDict_Size(__pyx_kwds); - switch (pos_args) { - case 0: - if (likely((values[0] = __Pyx_PyDict_GetItemStr(__pyx_kwds, __pyx_n_s_fp_str)) != 0)) kw_args--; - else goto __pyx_L5_argtuple_error; - CYTHON_FALLTHROUGH; - case 1: - if (likely((values[1] = __Pyx_PyDict_GetItemStr(__pyx_kwds, __pyx_n_s_approx_fp_str)) != 0)) kw_args--; - else { - __Pyx_RaiseArgtupleInvalid("get_database_entry", 1, 2, 2, 1); __PYX_ERR(0, 136, __pyx_L3_error) - } - } - if (unlikely(kw_args > 0)) { - if (unlikely(__Pyx_ParseOptionalKeywords(__pyx_kwds, __pyx_pyargnames, 0, values, pos_args, "get_database_entry") < 0)) __PYX_ERR(0, 136, __pyx_L3_error) - } - } else if (PyTuple_GET_SIZE(__pyx_args) != 2) { - goto __pyx_L5_argtuple_error; - } else { - values[0] = PyTuple_GET_ITEM(__pyx_args, 0); - values[1] = PyTuple_GET_ITEM(__pyx_args, 1); - } - __pyx_v_fp_str = values[0]; - __pyx_v_approx_fp_str = values[1]; - } - goto __pyx_L4_argument_unpacking_done; - __pyx_L5_argtuple_error:; - __Pyx_RaiseArgtupleInvalid("get_database_entry", 1, 2, 2, PyTuple_GET_SIZE(__pyx_args)); __PYX_ERR(0, 136, __pyx_L3_error) - __pyx_L3_error:; - __Pyx_AddTraceback("pmercury.protocols.dtls.DTLS.get_database_entry", __pyx_clineno, __pyx_lineno, __pyx_filename); - __Pyx_RefNannyFinishContext(); - return NULL; - __pyx_L4_argument_unpacking_done:; - __pyx_r = __pyx_pf_8pmercury_9protocols_4dtls_4DTLS_6get_database_entry(((struct __pyx_obj_8pmercury_9protocols_4dtls_DTLS *)__pyx_v_self), __pyx_v_fp_str, __pyx_v_approx_fp_str); - - /* function exit code */ - __Pyx_RefNannyFinishContext(); - return __pyx_r; -} - -static PyObject *__pyx_pf_8pmercury_9protocols_4dtls_4DTLS_6get_database_entry(CYTHON_UNUSED struct __pyx_obj_8pmercury_9protocols_4dtls_DTLS *__pyx_v_self, CYTHON_UNUSED PyObject *__pyx_v_fp_str, CYTHON_UNUSED PyObject *__pyx_v_approx_fp_str) { - PyObject *__pyx_r = NULL; - __Pyx_RefNannyDeclarations - __Pyx_RefNannySetupContext("get_database_entry", 0); - - /* "pmercury/protocols/dtls.pyx":137 - * @functools.lru_cache(maxsize=MAX_CACHED_RESULTS) - * def get_database_entry(self, fp_str, approx_fp_str): - * return None # <<<<<<<<<<<<<< - * - * - */ - __Pyx_XDECREF(__pyx_r); - __pyx_r = Py_None; __Pyx_INCREF(Py_None); - goto __pyx_L0; - - /* "pmercury/protocols/dtls.pyx":136 - * - * @functools.lru_cache(maxsize=MAX_CACHED_RESULTS) - * def get_database_entry(self, fp_str, approx_fp_str): # <<<<<<<<<<<<<< - * return None - * - */ - - /* function exit code */ - __pyx_L0:; - __Pyx_XGIVEREF(__pyx_r); - __Pyx_RefNannyFinishContext(); - return __pyx_r; -} - -/* "pmercury/protocols/dtls.pyx":140 - * - * - * def get_human_readable(self, fp_str_): # <<<<<<<<<<<<<< - * return None - * - */ - -/* Python wrapper */ -static PyObject *__pyx_pw_8pmercury_9protocols_4dtls_4DTLS_9get_human_readable(PyObject *__pyx_v_self, PyObject *__pyx_v_fp_str_); /*proto*/ -static PyObject *__pyx_pw_8pmercury_9protocols_4dtls_4DTLS_9get_human_readable(PyObject *__pyx_v_self, PyObject *__pyx_v_fp_str_) { - PyObject *__pyx_r = 0; - __Pyx_RefNannyDeclarations - __Pyx_RefNannySetupContext("get_human_readable (wrapper)", 0); - __pyx_r = __pyx_pf_8pmercury_9protocols_4dtls_4DTLS_8get_human_readable(((struct __pyx_obj_8pmercury_9protocols_4dtls_DTLS *)__pyx_v_self), ((PyObject *)__pyx_v_fp_str_)); - - /* function exit code */ - __Pyx_RefNannyFinishContext(); - return __pyx_r; -} - -static PyObject *__pyx_pf_8pmercury_9protocols_4dtls_4DTLS_8get_human_readable(CYTHON_UNUSED struct __pyx_obj_8pmercury_9protocols_4dtls_DTLS *__pyx_v_self, CYTHON_UNUSED PyObject *__pyx_v_fp_str_) { - PyObject *__pyx_r = NULL; - __Pyx_RefNannyDeclarations - __Pyx_RefNannySetupContext("get_human_readable", 0); - - /* "pmercury/protocols/dtls.pyx":141 - * - * def get_human_readable(self, fp_str_): - * return None # <<<<<<<<<<<<<< - * - * - */ - __Pyx_XDECREF(__pyx_r); - __pyx_r = Py_None; __Pyx_INCREF(Py_None); - goto __pyx_L0; - - /* "pmercury/protocols/dtls.pyx":140 - * - * - * def get_human_readable(self, fp_str_): # <<<<<<<<<<<<<< - * return None - * - */ - - /* function exit code */ - __pyx_L0:; - __Pyx_XGIVEREF(__pyx_r); - __Pyx_RefNannyFinishContext(); - return __pyx_r; -} - -/* "pmercury/protocols/dtls.pyx":144 - * - * - * def proc_identify(self, fp_str_, context_, dst_ip, dst_port, list_procs=5): # <<<<<<<<<<<<<< - * return None - * - */ - -/* Python wrapper */ -static PyObject *__pyx_pw_8pmercury_9protocols_4dtls_4DTLS_11proc_identify(PyObject *__pyx_v_self, PyObject *__pyx_args, PyObject *__pyx_kwds); /*proto*/ -static PyObject *__pyx_pw_8pmercury_9protocols_4dtls_4DTLS_11proc_identify(PyObject *__pyx_v_self, PyObject *__pyx_args, PyObject *__pyx_kwds) { - CYTHON_UNUSED PyObject *__pyx_v_fp_str_ = 0; - CYTHON_UNUSED PyObject *__pyx_v_context_ = 0; - CYTHON_UNUSED PyObject *__pyx_v_dst_ip = 0; - CYTHON_UNUSED PyObject *__pyx_v_dst_port = 0; - CYTHON_UNUSED PyObject *__pyx_v_list_procs = 0; - PyObject *__pyx_r = 0; - __Pyx_RefNannyDeclarations - __Pyx_RefNannySetupContext("proc_identify (wrapper)", 0); - { - static PyObject **__pyx_pyargnames[] = {&__pyx_n_s_fp_str_2,&__pyx_n_s_context,&__pyx_n_s_dst_ip,&__pyx_n_s_dst_port,&__pyx_n_s_list_procs,0}; - PyObject* values[5] = {0,0,0,0,0}; - values[4] = ((PyObject *)__pyx_int_5); - if (unlikely(__pyx_kwds)) { - Py_ssize_t kw_args; - const Py_ssize_t pos_args = PyTuple_GET_SIZE(__pyx_args); - switch (pos_args) { - case 5: values[4] = PyTuple_GET_ITEM(__pyx_args, 4); - CYTHON_FALLTHROUGH; - case 4: values[3] = PyTuple_GET_ITEM(__pyx_args, 3); - CYTHON_FALLTHROUGH; - case 3: values[2] = PyTuple_GET_ITEM(__pyx_args, 2); - CYTHON_FALLTHROUGH; - case 2: values[1] = PyTuple_GET_ITEM(__pyx_args, 1); - CYTHON_FALLTHROUGH; - case 1: values[0] = PyTuple_GET_ITEM(__pyx_args, 0); - CYTHON_FALLTHROUGH; - case 0: break; - default: goto __pyx_L5_argtuple_error; - } - kw_args = PyDict_Size(__pyx_kwds); - switch (pos_args) { - case 0: - if (likely((values[0] = __Pyx_PyDict_GetItemStr(__pyx_kwds, __pyx_n_s_fp_str_2)) != 0)) kw_args--; - else goto __pyx_L5_argtuple_error; - CYTHON_FALLTHROUGH; - case 1: - if (likely((values[1] = __Pyx_PyDict_GetItemStr(__pyx_kwds, __pyx_n_s_context)) != 0)) kw_args--; - else { - __Pyx_RaiseArgtupleInvalid("proc_identify", 0, 4, 5, 1); __PYX_ERR(0, 144, __pyx_L3_error) - } - CYTHON_FALLTHROUGH; - case 2: - if (likely((values[2] = __Pyx_PyDict_GetItemStr(__pyx_kwds, __pyx_n_s_dst_ip)) != 0)) kw_args--; - else { - __Pyx_RaiseArgtupleInvalid("proc_identify", 0, 4, 5, 2); __PYX_ERR(0, 144, __pyx_L3_error) - } - CYTHON_FALLTHROUGH; - case 3: - if (likely((values[3] = __Pyx_PyDict_GetItemStr(__pyx_kwds, __pyx_n_s_dst_port)) != 0)) kw_args--; - else { - __Pyx_RaiseArgtupleInvalid("proc_identify", 0, 4, 5, 3); __PYX_ERR(0, 144, __pyx_L3_error) - } - CYTHON_FALLTHROUGH; - case 4: - if (kw_args > 0) { - PyObject* value = __Pyx_PyDict_GetItemStr(__pyx_kwds, __pyx_n_s_list_procs); - if (value) { values[4] = value; kw_args--; } - } - } - if (unlikely(kw_args > 0)) { - if (unlikely(__Pyx_ParseOptionalKeywords(__pyx_kwds, __pyx_pyargnames, 0, values, pos_args, "proc_identify") < 0)) __PYX_ERR(0, 144, __pyx_L3_error) - } - } else { - switch (PyTuple_GET_SIZE(__pyx_args)) { - case 5: values[4] = PyTuple_GET_ITEM(__pyx_args, 4); - CYTHON_FALLTHROUGH; - case 4: values[3] = PyTuple_GET_ITEM(__pyx_args, 3); - values[2] = PyTuple_GET_ITEM(__pyx_args, 2); - values[1] = PyTuple_GET_ITEM(__pyx_args, 1); - values[0] = PyTuple_GET_ITEM(__pyx_args, 0); - break; - default: goto __pyx_L5_argtuple_error; - } - } - __pyx_v_fp_str_ = values[0]; - __pyx_v_context_ = values[1]; - __pyx_v_dst_ip = values[2]; - __pyx_v_dst_port = values[3]; - __pyx_v_list_procs = values[4]; - } - goto __pyx_L4_argument_unpacking_done; - __pyx_L5_argtuple_error:; - __Pyx_RaiseArgtupleInvalid("proc_identify", 0, 4, 5, PyTuple_GET_SIZE(__pyx_args)); __PYX_ERR(0, 144, __pyx_L3_error) - __pyx_L3_error:; - __Pyx_AddTraceback("pmercury.protocols.dtls.DTLS.proc_identify", __pyx_clineno, __pyx_lineno, __pyx_filename); - __Pyx_RefNannyFinishContext(); - return NULL; - __pyx_L4_argument_unpacking_done:; - __pyx_r = __pyx_pf_8pmercury_9protocols_4dtls_4DTLS_10proc_identify(((struct __pyx_obj_8pmercury_9protocols_4dtls_DTLS *)__pyx_v_self), __pyx_v_fp_str_, __pyx_v_context_, __pyx_v_dst_ip, __pyx_v_dst_port, __pyx_v_list_procs); - - /* function exit code */ - __Pyx_RefNannyFinishContext(); - return __pyx_r; -} - -static PyObject *__pyx_pf_8pmercury_9protocols_4dtls_4DTLS_10proc_identify(CYTHON_UNUSED struct __pyx_obj_8pmercury_9protocols_4dtls_DTLS *__pyx_v_self, CYTHON_UNUSED PyObject *__pyx_v_fp_str_, CYTHON_UNUSED PyObject *__pyx_v_context_, CYTHON_UNUSED PyObject *__pyx_v_dst_ip, CYTHON_UNUSED PyObject *__pyx_v_dst_port, CYTHON_UNUSED PyObject *__pyx_v_list_procs) { - PyObject *__pyx_r = NULL; - __Pyx_RefNannyDeclarations - __Pyx_RefNannySetupContext("proc_identify", 0); - - /* "pmercury/protocols/dtls.pyx":145 - * - * def proc_identify(self, fp_str_, context_, dst_ip, dst_port, list_procs=5): - * return None # <<<<<<<<<<<<<< - * - */ - __Pyx_XDECREF(__pyx_r); - __pyx_r = Py_None; __Pyx_INCREF(Py_None); - goto __pyx_L0; - - /* "pmercury/protocols/dtls.pyx":144 - * - * - * def proc_identify(self, fp_str_, context_, dst_ip, dst_port, list_procs=5): # <<<<<<<<<<<<<< - * return None - * - */ - - /* function exit code */ - __pyx_L0:; - __Pyx_XGIVEREF(__pyx_r); - __Pyx_RefNannyFinishContext(); - return __pyx_r; -} - -/* "(tree fragment)":1 - * def __reduce_cython__(self): # <<<<<<<<<<<<<< - * cdef tuple state - * cdef object _dict - */ - -/* Python wrapper */ -static PyObject *__pyx_pw_8pmercury_9protocols_4dtls_4DTLS_13__reduce_cython__(PyObject *__pyx_v_self, CYTHON_UNUSED PyObject *unused); /*proto*/ -static PyObject *__pyx_pw_8pmercury_9protocols_4dtls_4DTLS_13__reduce_cython__(PyObject *__pyx_v_self, CYTHON_UNUSED PyObject *unused) { - PyObject *__pyx_r = 0; - __Pyx_RefNannyDeclarations - __Pyx_RefNannySetupContext("__reduce_cython__ (wrapper)", 0); - __pyx_r = __pyx_pf_8pmercury_9protocols_4dtls_4DTLS_12__reduce_cython__(((struct __pyx_obj_8pmercury_9protocols_4dtls_DTLS *)__pyx_v_self)); - - /* function exit code */ - __Pyx_RefNannyFinishContext(); - return __pyx_r; -} - -static PyObject *__pyx_pf_8pmercury_9protocols_4dtls_4DTLS_12__reduce_cython__(struct __pyx_obj_8pmercury_9protocols_4dtls_DTLS *__pyx_v_self) { - PyObject *__pyx_v_state = 0; - PyObject *__pyx_v__dict = 0; - int __pyx_v_use_setstate; - PyObject *__pyx_r = NULL; - __Pyx_RefNannyDeclarations - PyObject *__pyx_t_1 = NULL; - int __pyx_t_2; - int __pyx_t_3; - PyObject *__pyx_t_4 = NULL; - PyObject *__pyx_t_5 = NULL; - __Pyx_RefNannySetupContext("__reduce_cython__", 0); - - /* "(tree fragment)":5 - * cdef object _dict - * cdef bint use_setstate - * state = (self.fp_db,) # <<<<<<<<<<<<<< - * _dict = getattr(self, '__dict__', None) - * if _dict is not None: - */ - __pyx_t_1 = PyTuple_New(1); if (unlikely(!__pyx_t_1)) __PYX_ERR(1, 5, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_1); - __Pyx_INCREF(__pyx_v_self->fp_db); - __Pyx_GIVEREF(__pyx_v_self->fp_db); - PyTuple_SET_ITEM(__pyx_t_1, 0, __pyx_v_self->fp_db); - __pyx_v_state = ((PyObject*)__pyx_t_1); - __pyx_t_1 = 0; - - /* "(tree fragment)":6 - * cdef bint use_setstate - * state = (self.fp_db,) - * _dict = getattr(self, '__dict__', None) # <<<<<<<<<<<<<< - * if _dict is not None: - * state += (_dict,) - */ - __pyx_t_1 = __Pyx_GetAttr3(((PyObject *)__pyx_v_self), __pyx_n_s_dict, Py_None); if (unlikely(!__pyx_t_1)) __PYX_ERR(1, 6, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_1); - __pyx_v__dict = __pyx_t_1; - __pyx_t_1 = 0; - - /* "(tree fragment)":7 - * state = (self.fp_db,) - * _dict = getattr(self, '__dict__', None) - * if _dict is not None: # <<<<<<<<<<<<<< - * state += (_dict,) - * use_setstate = True - */ - __pyx_t_2 = (__pyx_v__dict != Py_None); - __pyx_t_3 = (__pyx_t_2 != 0); - if (__pyx_t_3) { - - /* "(tree fragment)":8 - * _dict = getattr(self, '__dict__', None) - * if _dict is not None: - * state += (_dict,) # <<<<<<<<<<<<<< - * use_setstate = True - * else: - */ - __pyx_t_1 = PyTuple_New(1); if (unlikely(!__pyx_t_1)) __PYX_ERR(1, 8, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_1); - __Pyx_INCREF(__pyx_v__dict); - __Pyx_GIVEREF(__pyx_v__dict); - PyTuple_SET_ITEM(__pyx_t_1, 0, __pyx_v__dict); - __pyx_t_4 = PyNumber_InPlaceAdd(__pyx_v_state, __pyx_t_1); if (unlikely(!__pyx_t_4)) __PYX_ERR(1, 8, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_4); - __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0; - __Pyx_DECREF_SET(__pyx_v_state, ((PyObject*)__pyx_t_4)); - __pyx_t_4 = 0; - - /* "(tree fragment)":9 - * if _dict is not None: - * state += (_dict,) - * use_setstate = True # <<<<<<<<<<<<<< - * else: - * use_setstate = self.fp_db is not None - */ - __pyx_v_use_setstate = 1; - - /* "(tree fragment)":7 - * state = (self.fp_db,) - * _dict = getattr(self, '__dict__', None) - * if _dict is not None: # <<<<<<<<<<<<<< - * state += (_dict,) - * use_setstate = True - */ - goto __pyx_L3; - } - - /* "(tree fragment)":11 - * use_setstate = True - * else: - * use_setstate = self.fp_db is not None # <<<<<<<<<<<<<< - * if use_setstate: - * return __pyx_unpickle_DTLS, (type(self), 0x0525e0f, None), state - */ - /*else*/ { - __pyx_t_3 = (__pyx_v_self->fp_db != ((PyObject*)Py_None)); - __pyx_v_use_setstate = __pyx_t_3; - } - __pyx_L3:; - - /* "(tree fragment)":12 - * else: - * use_setstate = self.fp_db is not None - * if use_setstate: # <<<<<<<<<<<<<< - * return __pyx_unpickle_DTLS, (type(self), 0x0525e0f, None), state - * else: - */ - __pyx_t_3 = (__pyx_v_use_setstate != 0); - if (__pyx_t_3) { - - /* "(tree fragment)":13 - * use_setstate = self.fp_db is not None - * if use_setstate: - * return __pyx_unpickle_DTLS, (type(self), 0x0525e0f, None), state # <<<<<<<<<<<<<< - * else: - * return __pyx_unpickle_DTLS, (type(self), 0x0525e0f, state) - */ - __Pyx_XDECREF(__pyx_r); - __Pyx_GetModuleGlobalName(__pyx_t_4, __pyx_n_s_pyx_unpickle_DTLS); if (unlikely(!__pyx_t_4)) __PYX_ERR(1, 13, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_4); - __pyx_t_1 = PyTuple_New(3); if (unlikely(!__pyx_t_1)) __PYX_ERR(1, 13, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_1); - __Pyx_INCREF(((PyObject *)Py_TYPE(((PyObject *)__pyx_v_self)))); - __Pyx_GIVEREF(((PyObject *)Py_TYPE(((PyObject *)__pyx_v_self)))); - PyTuple_SET_ITEM(__pyx_t_1, 0, ((PyObject *)Py_TYPE(((PyObject *)__pyx_v_self)))); - __Pyx_INCREF(__pyx_int_5398031); - __Pyx_GIVEREF(__pyx_int_5398031); - PyTuple_SET_ITEM(__pyx_t_1, 1, __pyx_int_5398031); - __Pyx_INCREF(Py_None); - __Pyx_GIVEREF(Py_None); - PyTuple_SET_ITEM(__pyx_t_1, 2, Py_None); - __pyx_t_5 = PyTuple_New(3); if (unlikely(!__pyx_t_5)) __PYX_ERR(1, 13, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_5); - __Pyx_GIVEREF(__pyx_t_4); - PyTuple_SET_ITEM(__pyx_t_5, 0, __pyx_t_4); - __Pyx_GIVEREF(__pyx_t_1); - PyTuple_SET_ITEM(__pyx_t_5, 1, __pyx_t_1); - __Pyx_INCREF(__pyx_v_state); - __Pyx_GIVEREF(__pyx_v_state); - PyTuple_SET_ITEM(__pyx_t_5, 2, __pyx_v_state); - __pyx_t_4 = 0; - __pyx_t_1 = 0; - __pyx_r = __pyx_t_5; - __pyx_t_5 = 0; - goto __pyx_L0; - - /* "(tree fragment)":12 - * else: - * use_setstate = self.fp_db is not None - * if use_setstate: # <<<<<<<<<<<<<< - * return __pyx_unpickle_DTLS, (type(self), 0x0525e0f, None), state - * else: - */ - } - - /* "(tree fragment)":15 - * return __pyx_unpickle_DTLS, (type(self), 0x0525e0f, None), state - * else: - * return __pyx_unpickle_DTLS, (type(self), 0x0525e0f, state) # <<<<<<<<<<<<<< - * def __setstate_cython__(self, __pyx_state): - * __pyx_unpickle_DTLS__set_state(self, __pyx_state) - */ - /*else*/ { - __Pyx_XDECREF(__pyx_r); - __Pyx_GetModuleGlobalName(__pyx_t_5, __pyx_n_s_pyx_unpickle_DTLS); if (unlikely(!__pyx_t_5)) __PYX_ERR(1, 15, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_5); - __pyx_t_1 = PyTuple_New(3); if (unlikely(!__pyx_t_1)) __PYX_ERR(1, 15, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_1); - __Pyx_INCREF(((PyObject *)Py_TYPE(((PyObject *)__pyx_v_self)))); - __Pyx_GIVEREF(((PyObject *)Py_TYPE(((PyObject *)__pyx_v_self)))); - PyTuple_SET_ITEM(__pyx_t_1, 0, ((PyObject *)Py_TYPE(((PyObject *)__pyx_v_self)))); - __Pyx_INCREF(__pyx_int_5398031); - __Pyx_GIVEREF(__pyx_int_5398031); - PyTuple_SET_ITEM(__pyx_t_1, 1, __pyx_int_5398031); - __Pyx_INCREF(__pyx_v_state); - __Pyx_GIVEREF(__pyx_v_state); - PyTuple_SET_ITEM(__pyx_t_1, 2, __pyx_v_state); - __pyx_t_4 = PyTuple_New(2); if (unlikely(!__pyx_t_4)) __PYX_ERR(1, 15, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_4); - __Pyx_GIVEREF(__pyx_t_5); - PyTuple_SET_ITEM(__pyx_t_4, 0, __pyx_t_5); - __Pyx_GIVEREF(__pyx_t_1); - PyTuple_SET_ITEM(__pyx_t_4, 1, __pyx_t_1); - __pyx_t_5 = 0; - __pyx_t_1 = 0; - __pyx_r = __pyx_t_4; - __pyx_t_4 = 0; - goto __pyx_L0; - } - - /* "(tree fragment)":1 - * def __reduce_cython__(self): # <<<<<<<<<<<<<< - * cdef tuple state - * cdef object _dict - */ - - /* function exit code */ - __pyx_L1_error:; - __Pyx_XDECREF(__pyx_t_1); - __Pyx_XDECREF(__pyx_t_4); - __Pyx_XDECREF(__pyx_t_5); - __Pyx_AddTraceback("pmercury.protocols.dtls.DTLS.__reduce_cython__", __pyx_clineno, __pyx_lineno, __pyx_filename); - __pyx_r = NULL; - __pyx_L0:; - __Pyx_XDECREF(__pyx_v_state); - __Pyx_XDECREF(__pyx_v__dict); - __Pyx_XGIVEREF(__pyx_r); - __Pyx_RefNannyFinishContext(); - return __pyx_r; -} - -/* "(tree fragment)":16 - * else: - * return __pyx_unpickle_DTLS, (type(self), 0x0525e0f, state) - * def __setstate_cython__(self, __pyx_state): # <<<<<<<<<<<<<< - * __pyx_unpickle_DTLS__set_state(self, __pyx_state) - */ - -/* Python wrapper */ -static PyObject *__pyx_pw_8pmercury_9protocols_4dtls_4DTLS_15__setstate_cython__(PyObject *__pyx_v_self, PyObject *__pyx_v___pyx_state); /*proto*/ -static PyObject *__pyx_pw_8pmercury_9protocols_4dtls_4DTLS_15__setstate_cython__(PyObject *__pyx_v_self, PyObject *__pyx_v___pyx_state) { - PyObject *__pyx_r = 0; - __Pyx_RefNannyDeclarations - __Pyx_RefNannySetupContext("__setstate_cython__ (wrapper)", 0); - __pyx_r = __pyx_pf_8pmercury_9protocols_4dtls_4DTLS_14__setstate_cython__(((struct __pyx_obj_8pmercury_9protocols_4dtls_DTLS *)__pyx_v_self), ((PyObject *)__pyx_v___pyx_state)); - - /* function exit code */ - __Pyx_RefNannyFinishContext(); - return __pyx_r; -} - -static PyObject *__pyx_pf_8pmercury_9protocols_4dtls_4DTLS_14__setstate_cython__(struct __pyx_obj_8pmercury_9protocols_4dtls_DTLS *__pyx_v_self, PyObject *__pyx_v___pyx_state) { - PyObject *__pyx_r = NULL; - __Pyx_RefNannyDeclarations - PyObject *__pyx_t_1 = NULL; - __Pyx_RefNannySetupContext("__setstate_cython__", 0); - - /* "(tree fragment)":17 - * return __pyx_unpickle_DTLS, (type(self), 0x0525e0f, state) - * def __setstate_cython__(self, __pyx_state): - * __pyx_unpickle_DTLS__set_state(self, __pyx_state) # <<<<<<<<<<<<<< - */ - if (!(likely(PyTuple_CheckExact(__pyx_v___pyx_state))||((__pyx_v___pyx_state) == Py_None)||(PyErr_Format(PyExc_TypeError, "Expected %.16s, got %.200s", "tuple", Py_TYPE(__pyx_v___pyx_state)->tp_name), 0))) __PYX_ERR(1, 17, __pyx_L1_error) - __pyx_t_1 = __pyx_f_8pmercury_9protocols_4dtls___pyx_unpickle_DTLS__set_state(__pyx_v_self, ((PyObject*)__pyx_v___pyx_state)); if (unlikely(!__pyx_t_1)) __PYX_ERR(1, 17, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_1); - __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0; - - /* "(tree fragment)":16 - * else: - * return __pyx_unpickle_DTLS, (type(self), 0x0525e0f, state) - * def __setstate_cython__(self, __pyx_state): # <<<<<<<<<<<<<< - * __pyx_unpickle_DTLS__set_state(self, __pyx_state) - */ - - /* function exit code */ - __pyx_r = Py_None; __Pyx_INCREF(Py_None); - goto __pyx_L0; - __pyx_L1_error:; - __Pyx_XDECREF(__pyx_t_1); - __Pyx_AddTraceback("pmercury.protocols.dtls.DTLS.__setstate_cython__", __pyx_clineno, __pyx_lineno, __pyx_filename); - __pyx_r = NULL; - __pyx_L0:; - __Pyx_XGIVEREF(__pyx_r); - __Pyx_RefNannyFinishContext(); - return __pyx_r; -} - -/* "(tree fragment)":1 - * def __pyx_unpickle_DTLS(__pyx_type, long __pyx_checksum, __pyx_state): # <<<<<<<<<<<<<< - * cdef object __pyx_PickleError - * cdef object __pyx_result - */ - -/* Python wrapper */ -static PyObject *__pyx_pw_8pmercury_9protocols_4dtls_1__pyx_unpickle_DTLS(PyObject *__pyx_self, PyObject *__pyx_args, PyObject *__pyx_kwds); /*proto*/ -static PyMethodDef __pyx_mdef_8pmercury_9protocols_4dtls_1__pyx_unpickle_DTLS = {"__pyx_unpickle_DTLS", (PyCFunction)(void*)(PyCFunctionWithKeywords)__pyx_pw_8pmercury_9protocols_4dtls_1__pyx_unpickle_DTLS, METH_VARARGS|METH_KEYWORDS, 0}; -static PyObject *__pyx_pw_8pmercury_9protocols_4dtls_1__pyx_unpickle_DTLS(PyObject *__pyx_self, PyObject *__pyx_args, PyObject *__pyx_kwds) { - PyObject *__pyx_v___pyx_type = 0; - long __pyx_v___pyx_checksum; - PyObject *__pyx_v___pyx_state = 0; - PyObject *__pyx_r = 0; - __Pyx_RefNannyDeclarations - __Pyx_RefNannySetupContext("__pyx_unpickle_DTLS (wrapper)", 0); - { - static PyObject **__pyx_pyargnames[] = {&__pyx_n_s_pyx_type,&__pyx_n_s_pyx_checksum,&__pyx_n_s_pyx_state,0}; - PyObject* values[3] = {0,0,0}; - if (unlikely(__pyx_kwds)) { - Py_ssize_t kw_args; - const Py_ssize_t pos_args = PyTuple_GET_SIZE(__pyx_args); - switch (pos_args) { - case 3: values[2] = PyTuple_GET_ITEM(__pyx_args, 2); - CYTHON_FALLTHROUGH; - case 2: values[1] = PyTuple_GET_ITEM(__pyx_args, 1); - CYTHON_FALLTHROUGH; - case 1: values[0] = PyTuple_GET_ITEM(__pyx_args, 0); - CYTHON_FALLTHROUGH; - case 0: break; - default: goto __pyx_L5_argtuple_error; - } - kw_args = PyDict_Size(__pyx_kwds); - switch (pos_args) { - case 0: - if (likely((values[0] = __Pyx_PyDict_GetItemStr(__pyx_kwds, __pyx_n_s_pyx_type)) != 0)) kw_args--; - else goto __pyx_L5_argtuple_error; - CYTHON_FALLTHROUGH; - case 1: - if (likely((values[1] = __Pyx_PyDict_GetItemStr(__pyx_kwds, __pyx_n_s_pyx_checksum)) != 0)) kw_args--; - else { - __Pyx_RaiseArgtupleInvalid("__pyx_unpickle_DTLS", 1, 3, 3, 1); __PYX_ERR(1, 1, __pyx_L3_error) - } - CYTHON_FALLTHROUGH; - case 2: - if (likely((values[2] = __Pyx_PyDict_GetItemStr(__pyx_kwds, __pyx_n_s_pyx_state)) != 0)) kw_args--; - else { - __Pyx_RaiseArgtupleInvalid("__pyx_unpickle_DTLS", 1, 3, 3, 2); __PYX_ERR(1, 1, __pyx_L3_error) - } - } - if (unlikely(kw_args > 0)) { - if (unlikely(__Pyx_ParseOptionalKeywords(__pyx_kwds, __pyx_pyargnames, 0, values, pos_args, "__pyx_unpickle_DTLS") < 0)) __PYX_ERR(1, 1, __pyx_L3_error) - } - } else if (PyTuple_GET_SIZE(__pyx_args) != 3) { - goto __pyx_L5_argtuple_error; - } else { - values[0] = PyTuple_GET_ITEM(__pyx_args, 0); - values[1] = PyTuple_GET_ITEM(__pyx_args, 1); - values[2] = PyTuple_GET_ITEM(__pyx_args, 2); - } - __pyx_v___pyx_type = values[0]; - __pyx_v___pyx_checksum = __Pyx_PyInt_As_long(values[1]); if (unlikely((__pyx_v___pyx_checksum == (long)-1) && PyErr_Occurred())) __PYX_ERR(1, 1, __pyx_L3_error) - __pyx_v___pyx_state = values[2]; - } - goto __pyx_L4_argument_unpacking_done; - __pyx_L5_argtuple_error:; - __Pyx_RaiseArgtupleInvalid("__pyx_unpickle_DTLS", 1, 3, 3, PyTuple_GET_SIZE(__pyx_args)); __PYX_ERR(1, 1, __pyx_L3_error) - __pyx_L3_error:; - __Pyx_AddTraceback("pmercury.protocols.dtls.__pyx_unpickle_DTLS", __pyx_clineno, __pyx_lineno, __pyx_filename); - __Pyx_RefNannyFinishContext(); - return NULL; - __pyx_L4_argument_unpacking_done:; - __pyx_r = __pyx_pf_8pmercury_9protocols_4dtls___pyx_unpickle_DTLS(__pyx_self, __pyx_v___pyx_type, __pyx_v___pyx_checksum, __pyx_v___pyx_state); - - /* function exit code */ - __Pyx_RefNannyFinishContext(); - return __pyx_r; -} - -static PyObject *__pyx_pf_8pmercury_9protocols_4dtls___pyx_unpickle_DTLS(CYTHON_UNUSED PyObject *__pyx_self, PyObject *__pyx_v___pyx_type, long __pyx_v___pyx_checksum, PyObject *__pyx_v___pyx_state) { - PyObject *__pyx_v___pyx_PickleError = 0; - PyObject *__pyx_v___pyx_result = 0; - PyObject *__pyx_r = NULL; - __Pyx_RefNannyDeclarations - int __pyx_t_1; - PyObject *__pyx_t_2 = NULL; - PyObject *__pyx_t_3 = NULL; - PyObject *__pyx_t_4 = NULL; - PyObject *__pyx_t_5 = NULL; - int __pyx_t_6; - __Pyx_RefNannySetupContext("__pyx_unpickle_DTLS", 0); - - /* "(tree fragment)":4 - * cdef object __pyx_PickleError - * cdef object __pyx_result - * if __pyx_checksum != 0x0525e0f: # <<<<<<<<<<<<<< - * from pickle import PickleError as __pyx_PickleError - * raise __pyx_PickleError("Incompatible checksums (%s vs 0x0525e0f = (fp_db))" % __pyx_checksum) - */ - __pyx_t_1 = ((__pyx_v___pyx_checksum != 0x0525e0f) != 0); - if (__pyx_t_1) { - - /* "(tree fragment)":5 - * cdef object __pyx_result - * if __pyx_checksum != 0x0525e0f: - * from pickle import PickleError as __pyx_PickleError # <<<<<<<<<<<<<< - * raise __pyx_PickleError("Incompatible checksums (%s vs 0x0525e0f = (fp_db))" % __pyx_checksum) - * __pyx_result = DTLS.__new__(__pyx_type) - */ - __pyx_t_2 = PyList_New(1); if (unlikely(!__pyx_t_2)) __PYX_ERR(1, 5, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_2); - __Pyx_INCREF(__pyx_n_s_PickleError); - __Pyx_GIVEREF(__pyx_n_s_PickleError); - PyList_SET_ITEM(__pyx_t_2, 0, __pyx_n_s_PickleError); - __pyx_t_3 = __Pyx_Import(__pyx_n_s_pickle, __pyx_t_2, 0); if (unlikely(!__pyx_t_3)) __PYX_ERR(1, 5, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_3); - __Pyx_DECREF(__pyx_t_2); __pyx_t_2 = 0; - __pyx_t_2 = __Pyx_ImportFrom(__pyx_t_3, __pyx_n_s_PickleError); if (unlikely(!__pyx_t_2)) __PYX_ERR(1, 5, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_2); - __Pyx_INCREF(__pyx_t_2); - __pyx_v___pyx_PickleError = __pyx_t_2; - __Pyx_DECREF(__pyx_t_2); __pyx_t_2 = 0; - __Pyx_DECREF(__pyx_t_3); __pyx_t_3 = 0; - - /* "(tree fragment)":6 - * if __pyx_checksum != 0x0525e0f: - * from pickle import PickleError as __pyx_PickleError - * raise __pyx_PickleError("Incompatible checksums (%s vs 0x0525e0f = (fp_db))" % __pyx_checksum) # <<<<<<<<<<<<<< - * __pyx_result = DTLS.__new__(__pyx_type) - * if __pyx_state is not None: - */ - __pyx_t_2 = __Pyx_PyInt_From_long(__pyx_v___pyx_checksum); if (unlikely(!__pyx_t_2)) __PYX_ERR(1, 6, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_2); - __pyx_t_4 = __Pyx_PyString_Format(__pyx_kp_s_Incompatible_checksums_s_vs_0x05, __pyx_t_2); if (unlikely(!__pyx_t_4)) __PYX_ERR(1, 6, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_4); - __Pyx_DECREF(__pyx_t_2); __pyx_t_2 = 0; - __Pyx_INCREF(__pyx_v___pyx_PickleError); - __pyx_t_2 = __pyx_v___pyx_PickleError; __pyx_t_5 = NULL; - if (CYTHON_UNPACK_METHODS && unlikely(PyMethod_Check(__pyx_t_2))) { - __pyx_t_5 = PyMethod_GET_SELF(__pyx_t_2); - if (likely(__pyx_t_5)) { - PyObject* function = PyMethod_GET_FUNCTION(__pyx_t_2); - __Pyx_INCREF(__pyx_t_5); - __Pyx_INCREF(function); - __Pyx_DECREF_SET(__pyx_t_2, function); - } - } - __pyx_t_3 = (__pyx_t_5) ? __Pyx_PyObject_Call2Args(__pyx_t_2, __pyx_t_5, __pyx_t_4) : __Pyx_PyObject_CallOneArg(__pyx_t_2, __pyx_t_4); - __Pyx_XDECREF(__pyx_t_5); __pyx_t_5 = 0; - __Pyx_DECREF(__pyx_t_4); __pyx_t_4 = 0; - if (unlikely(!__pyx_t_3)) __PYX_ERR(1, 6, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_3); - __Pyx_DECREF(__pyx_t_2); __pyx_t_2 = 0; - __Pyx_Raise(__pyx_t_3, 0, 0, 0); - __Pyx_DECREF(__pyx_t_3); __pyx_t_3 = 0; - __PYX_ERR(1, 6, __pyx_L1_error) - - /* "(tree fragment)":4 - * cdef object __pyx_PickleError - * cdef object __pyx_result - * if __pyx_checksum != 0x0525e0f: # <<<<<<<<<<<<<< - * from pickle import PickleError as __pyx_PickleError - * raise __pyx_PickleError("Incompatible checksums (%s vs 0x0525e0f = (fp_db))" % __pyx_checksum) - */ - } - - /* "(tree fragment)":7 - * from pickle import PickleError as __pyx_PickleError - * raise __pyx_PickleError("Incompatible checksums (%s vs 0x0525e0f = (fp_db))" % __pyx_checksum) - * __pyx_result = DTLS.__new__(__pyx_type) # <<<<<<<<<<<<<< - * if __pyx_state is not None: - * __pyx_unpickle_DTLS__set_state( __pyx_result, __pyx_state) - */ - __pyx_t_2 = __Pyx_PyObject_GetAttrStr(((PyObject *)__pyx_ptype_8pmercury_9protocols_4dtls_DTLS), __pyx_n_s_new); if (unlikely(!__pyx_t_2)) __PYX_ERR(1, 7, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_2); - __pyx_t_4 = NULL; - if (CYTHON_UNPACK_METHODS && likely(PyMethod_Check(__pyx_t_2))) { - __pyx_t_4 = PyMethod_GET_SELF(__pyx_t_2); - if (likely(__pyx_t_4)) { - PyObject* function = PyMethod_GET_FUNCTION(__pyx_t_2); - __Pyx_INCREF(__pyx_t_4); - __Pyx_INCREF(function); - __Pyx_DECREF_SET(__pyx_t_2, function); - } - } - __pyx_t_3 = (__pyx_t_4) ? __Pyx_PyObject_Call2Args(__pyx_t_2, __pyx_t_4, __pyx_v___pyx_type) : __Pyx_PyObject_CallOneArg(__pyx_t_2, __pyx_v___pyx_type); - __Pyx_XDECREF(__pyx_t_4); __pyx_t_4 = 0; - if (unlikely(!__pyx_t_3)) __PYX_ERR(1, 7, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_3); - __Pyx_DECREF(__pyx_t_2); __pyx_t_2 = 0; - __pyx_v___pyx_result = __pyx_t_3; - __pyx_t_3 = 0; - - /* "(tree fragment)":8 - * raise __pyx_PickleError("Incompatible checksums (%s vs 0x0525e0f = (fp_db))" % __pyx_checksum) - * __pyx_result = DTLS.__new__(__pyx_type) - * if __pyx_state is not None: # <<<<<<<<<<<<<< - * __pyx_unpickle_DTLS__set_state( __pyx_result, __pyx_state) - * return __pyx_result - */ - __pyx_t_1 = (__pyx_v___pyx_state != Py_None); - __pyx_t_6 = (__pyx_t_1 != 0); - if (__pyx_t_6) { - - /* "(tree fragment)":9 - * __pyx_result = DTLS.__new__(__pyx_type) - * if __pyx_state is not None: - * __pyx_unpickle_DTLS__set_state( __pyx_result, __pyx_state) # <<<<<<<<<<<<<< - * return __pyx_result - * cdef __pyx_unpickle_DTLS__set_state(DTLS __pyx_result, tuple __pyx_state): - */ - if (!(likely(PyTuple_CheckExact(__pyx_v___pyx_state))||((__pyx_v___pyx_state) == Py_None)||(PyErr_Format(PyExc_TypeError, "Expected %.16s, got %.200s", "tuple", Py_TYPE(__pyx_v___pyx_state)->tp_name), 0))) __PYX_ERR(1, 9, __pyx_L1_error) - __pyx_t_3 = __pyx_f_8pmercury_9protocols_4dtls___pyx_unpickle_DTLS__set_state(((struct __pyx_obj_8pmercury_9protocols_4dtls_DTLS *)__pyx_v___pyx_result), ((PyObject*)__pyx_v___pyx_state)); if (unlikely(!__pyx_t_3)) __PYX_ERR(1, 9, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_3); - __Pyx_DECREF(__pyx_t_3); __pyx_t_3 = 0; - - /* "(tree fragment)":8 - * raise __pyx_PickleError("Incompatible checksums (%s vs 0x0525e0f = (fp_db))" % __pyx_checksum) - * __pyx_result = DTLS.__new__(__pyx_type) - * if __pyx_state is not None: # <<<<<<<<<<<<<< - * __pyx_unpickle_DTLS__set_state( __pyx_result, __pyx_state) - * return __pyx_result - */ - } - - /* "(tree fragment)":10 - * if __pyx_state is not None: - * __pyx_unpickle_DTLS__set_state( __pyx_result, __pyx_state) - * return __pyx_result # <<<<<<<<<<<<<< - * cdef __pyx_unpickle_DTLS__set_state(DTLS __pyx_result, tuple __pyx_state): - * __pyx_result.fp_db = __pyx_state[0] - */ - __Pyx_XDECREF(__pyx_r); - __Pyx_INCREF(__pyx_v___pyx_result); - __pyx_r = __pyx_v___pyx_result; - goto __pyx_L0; - - /* "(tree fragment)":1 - * def __pyx_unpickle_DTLS(__pyx_type, long __pyx_checksum, __pyx_state): # <<<<<<<<<<<<<< - * cdef object __pyx_PickleError - * cdef object __pyx_result - */ - - /* function exit code */ - __pyx_L1_error:; - __Pyx_XDECREF(__pyx_t_2); - __Pyx_XDECREF(__pyx_t_3); - __Pyx_XDECREF(__pyx_t_4); - __Pyx_XDECREF(__pyx_t_5); - __Pyx_AddTraceback("pmercury.protocols.dtls.__pyx_unpickle_DTLS", __pyx_clineno, __pyx_lineno, __pyx_filename); - __pyx_r = NULL; - __pyx_L0:; - __Pyx_XDECREF(__pyx_v___pyx_PickleError); - __Pyx_XDECREF(__pyx_v___pyx_result); - __Pyx_XGIVEREF(__pyx_r); - __Pyx_RefNannyFinishContext(); - return __pyx_r; -} - -/* "(tree fragment)":11 - * __pyx_unpickle_DTLS__set_state( __pyx_result, __pyx_state) - * return __pyx_result - * cdef __pyx_unpickle_DTLS__set_state(DTLS __pyx_result, tuple __pyx_state): # <<<<<<<<<<<<<< - * __pyx_result.fp_db = __pyx_state[0] - * if len(__pyx_state) > 1 and hasattr(__pyx_result, '__dict__'): - */ - -static PyObject *__pyx_f_8pmercury_9protocols_4dtls___pyx_unpickle_DTLS__set_state(struct __pyx_obj_8pmercury_9protocols_4dtls_DTLS *__pyx_v___pyx_result, PyObject *__pyx_v___pyx_state) { - PyObject *__pyx_r = NULL; - __Pyx_RefNannyDeclarations - PyObject *__pyx_t_1 = NULL; - int __pyx_t_2; - Py_ssize_t __pyx_t_3; - int __pyx_t_4; - int __pyx_t_5; - PyObject *__pyx_t_6 = NULL; - PyObject *__pyx_t_7 = NULL; - PyObject *__pyx_t_8 = NULL; - __Pyx_RefNannySetupContext("__pyx_unpickle_DTLS__set_state", 0); - - /* "(tree fragment)":12 - * return __pyx_result - * cdef __pyx_unpickle_DTLS__set_state(DTLS __pyx_result, tuple __pyx_state): - * __pyx_result.fp_db = __pyx_state[0] # <<<<<<<<<<<<<< - * if len(__pyx_state) > 1 and hasattr(__pyx_result, '__dict__'): - * __pyx_result.__dict__.update(__pyx_state[1]) - */ - if (unlikely(__pyx_v___pyx_state == Py_None)) { - PyErr_SetString(PyExc_TypeError, "'NoneType' object is not subscriptable"); - __PYX_ERR(1, 12, __pyx_L1_error) - } - __pyx_t_1 = __Pyx_GetItemInt_Tuple(__pyx_v___pyx_state, 0, long, 1, __Pyx_PyInt_From_long, 0, 0, 1); if (unlikely(!__pyx_t_1)) __PYX_ERR(1, 12, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_1); - if (!(likely(PyDict_CheckExact(__pyx_t_1))||((__pyx_t_1) == Py_None)||(PyErr_Format(PyExc_TypeError, "Expected %.16s, got %.200s", "dict", Py_TYPE(__pyx_t_1)->tp_name), 0))) __PYX_ERR(1, 12, __pyx_L1_error) - __Pyx_GIVEREF(__pyx_t_1); - __Pyx_GOTREF(__pyx_v___pyx_result->fp_db); - __Pyx_DECREF(__pyx_v___pyx_result->fp_db); - __pyx_v___pyx_result->fp_db = ((PyObject*)__pyx_t_1); - __pyx_t_1 = 0; - - /* "(tree fragment)":13 - * cdef __pyx_unpickle_DTLS__set_state(DTLS __pyx_result, tuple __pyx_state): - * __pyx_result.fp_db = __pyx_state[0] - * if len(__pyx_state) > 1 and hasattr(__pyx_result, '__dict__'): # <<<<<<<<<<<<<< - * __pyx_result.__dict__.update(__pyx_state[1]) - */ - if (unlikely(__pyx_v___pyx_state == Py_None)) { - PyErr_SetString(PyExc_TypeError, "object of type 'NoneType' has no len()"); - __PYX_ERR(1, 13, __pyx_L1_error) - } - __pyx_t_3 = PyTuple_GET_SIZE(__pyx_v___pyx_state); if (unlikely(__pyx_t_3 == ((Py_ssize_t)-1))) __PYX_ERR(1, 13, __pyx_L1_error) - __pyx_t_4 = ((__pyx_t_3 > 1) != 0); - if (__pyx_t_4) { - } else { - __pyx_t_2 = __pyx_t_4; - goto __pyx_L4_bool_binop_done; - } - __pyx_t_4 = __Pyx_HasAttr(((PyObject *)__pyx_v___pyx_result), __pyx_n_s_dict); if (unlikely(__pyx_t_4 == ((int)-1))) __PYX_ERR(1, 13, __pyx_L1_error) - __pyx_t_5 = (__pyx_t_4 != 0); - __pyx_t_2 = __pyx_t_5; - __pyx_L4_bool_binop_done:; - if (__pyx_t_2) { - - /* "(tree fragment)":14 - * __pyx_result.fp_db = __pyx_state[0] - * if len(__pyx_state) > 1 and hasattr(__pyx_result, '__dict__'): - * __pyx_result.__dict__.update(__pyx_state[1]) # <<<<<<<<<<<<<< - */ - __pyx_t_6 = __Pyx_PyObject_GetAttrStr(((PyObject *)__pyx_v___pyx_result), __pyx_n_s_dict); if (unlikely(!__pyx_t_6)) __PYX_ERR(1, 14, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_6); - __pyx_t_7 = __Pyx_PyObject_GetAttrStr(__pyx_t_6, __pyx_n_s_update); if (unlikely(!__pyx_t_7)) __PYX_ERR(1, 14, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_7); - __Pyx_DECREF(__pyx_t_6); __pyx_t_6 = 0; - if (unlikely(__pyx_v___pyx_state == Py_None)) { - PyErr_SetString(PyExc_TypeError, "'NoneType' object is not subscriptable"); - __PYX_ERR(1, 14, __pyx_L1_error) - } - __pyx_t_6 = __Pyx_GetItemInt_Tuple(__pyx_v___pyx_state, 1, long, 1, __Pyx_PyInt_From_long, 0, 0, 1); if (unlikely(!__pyx_t_6)) __PYX_ERR(1, 14, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_6); - __pyx_t_8 = NULL; - if (CYTHON_UNPACK_METHODS && likely(PyMethod_Check(__pyx_t_7))) { - __pyx_t_8 = PyMethod_GET_SELF(__pyx_t_7); - if (likely(__pyx_t_8)) { - PyObject* function = PyMethod_GET_FUNCTION(__pyx_t_7); - __Pyx_INCREF(__pyx_t_8); - __Pyx_INCREF(function); - __Pyx_DECREF_SET(__pyx_t_7, function); - } - } - __pyx_t_1 = (__pyx_t_8) ? __Pyx_PyObject_Call2Args(__pyx_t_7, __pyx_t_8, __pyx_t_6) : __Pyx_PyObject_CallOneArg(__pyx_t_7, __pyx_t_6); - __Pyx_XDECREF(__pyx_t_8); __pyx_t_8 = 0; - __Pyx_DECREF(__pyx_t_6); __pyx_t_6 = 0; - if (unlikely(!__pyx_t_1)) __PYX_ERR(1, 14, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_1); - __Pyx_DECREF(__pyx_t_7); __pyx_t_7 = 0; - __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0; - - /* "(tree fragment)":13 - * cdef __pyx_unpickle_DTLS__set_state(DTLS __pyx_result, tuple __pyx_state): - * __pyx_result.fp_db = __pyx_state[0] - * if len(__pyx_state) > 1 and hasattr(__pyx_result, '__dict__'): # <<<<<<<<<<<<<< - * __pyx_result.__dict__.update(__pyx_state[1]) - */ - } - - /* "(tree fragment)":11 - * __pyx_unpickle_DTLS__set_state( __pyx_result, __pyx_state) - * return __pyx_result - * cdef __pyx_unpickle_DTLS__set_state(DTLS __pyx_result, tuple __pyx_state): # <<<<<<<<<<<<<< - * __pyx_result.fp_db = __pyx_state[0] - * if len(__pyx_state) > 1 and hasattr(__pyx_result, '__dict__'): - */ - - /* function exit code */ - __pyx_r = Py_None; __Pyx_INCREF(Py_None); - goto __pyx_L0; - __pyx_L1_error:; - __Pyx_XDECREF(__pyx_t_1); - __Pyx_XDECREF(__pyx_t_6); - __Pyx_XDECREF(__pyx_t_7); - __Pyx_XDECREF(__pyx_t_8); - __Pyx_AddTraceback("pmercury.protocols.dtls.__pyx_unpickle_DTLS__set_state", __pyx_clineno, __pyx_lineno, __pyx_filename); - __pyx_r = 0; - __pyx_L0:; - __Pyx_XGIVEREF(__pyx_r); - __Pyx_RefNannyFinishContext(); - return __pyx_r; -} - -static PyObject *__pyx_tp_new_8pmercury_9protocols_4dtls_DTLS(PyTypeObject *t, CYTHON_UNUSED PyObject *a, CYTHON_UNUSED PyObject *k) { - struct __pyx_obj_8pmercury_9protocols_4dtls_DTLS *p; - PyObject *o; - if (likely((t->tp_flags & Py_TPFLAGS_IS_ABSTRACT) == 0)) { - o = (*t->tp_alloc)(t, 0); - } else { - o = (PyObject *) PyBaseObject_Type.tp_new(t, __pyx_empty_tuple, 0); - } - if (unlikely(!o)) return 0; - p = ((struct __pyx_obj_8pmercury_9protocols_4dtls_DTLS *)o); - p->fp_db = ((PyObject*)Py_None); Py_INCREF(Py_None); - return o; -} - -static void __pyx_tp_dealloc_8pmercury_9protocols_4dtls_DTLS(PyObject *o) { - struct __pyx_obj_8pmercury_9protocols_4dtls_DTLS *p = (struct __pyx_obj_8pmercury_9protocols_4dtls_DTLS *)o; - #if CYTHON_USE_TP_FINALIZE - if (unlikely(PyType_HasFeature(Py_TYPE(o), Py_TPFLAGS_HAVE_FINALIZE) && Py_TYPE(o)->tp_finalize) && !_PyGC_FINALIZED(o)) { - if (PyObject_CallFinalizerFromDealloc(o)) return; - } - #endif - PyObject_GC_UnTrack(o); - Py_CLEAR(p->fp_db); - (*Py_TYPE(o)->tp_free)(o); -} - -static int __pyx_tp_traverse_8pmercury_9protocols_4dtls_DTLS(PyObject *o, visitproc v, void *a) { - int e; - struct __pyx_obj_8pmercury_9protocols_4dtls_DTLS *p = (struct __pyx_obj_8pmercury_9protocols_4dtls_DTLS *)o; - if (p->fp_db) { - e = (*v)(p->fp_db, a); if (e) return e; - } - return 0; -} - -static int __pyx_tp_clear_8pmercury_9protocols_4dtls_DTLS(PyObject *o) { - PyObject* tmp; - struct __pyx_obj_8pmercury_9protocols_4dtls_DTLS *p = (struct __pyx_obj_8pmercury_9protocols_4dtls_DTLS *)o; - tmp = ((PyObject*)p->fp_db); - p->fp_db = ((PyObject*)Py_None); Py_INCREF(Py_None); - Py_XDECREF(tmp); - return 0; -} - -static PyMethodDef __pyx_methods_8pmercury_9protocols_4dtls_DTLS[] = { - {"proto_identify", (PyCFunction)(void*)(PyCFunctionWithKeywords)__pyx_pw_8pmercury_9protocols_4dtls_4DTLS_3proto_identify, METH_VARARGS|METH_KEYWORDS, 0}, - {"fingerprint", (PyCFunction)(void*)(PyCFunctionWithKeywords)__pyx_pw_8pmercury_9protocols_4dtls_4DTLS_5fingerprint, METH_VARARGS|METH_KEYWORDS, 0}, - {"get_database_entry", (PyCFunction)(void*)(PyCFunctionWithKeywords)__pyx_pw_8pmercury_9protocols_4dtls_4DTLS_7get_database_entry, METH_VARARGS|METH_KEYWORDS, 0}, - {"get_human_readable", (PyCFunction)__pyx_pw_8pmercury_9protocols_4dtls_4DTLS_9get_human_readable, METH_O, 0}, - {"proc_identify", (PyCFunction)(void*)(PyCFunctionWithKeywords)__pyx_pw_8pmercury_9protocols_4dtls_4DTLS_11proc_identify, METH_VARARGS|METH_KEYWORDS, 0}, - {"__reduce_cython__", (PyCFunction)__pyx_pw_8pmercury_9protocols_4dtls_4DTLS_13__reduce_cython__, METH_NOARGS, 0}, - {"__setstate_cython__", (PyCFunction)__pyx_pw_8pmercury_9protocols_4dtls_4DTLS_15__setstate_cython__, METH_O, 0}, - {0, 0, 0, 0} -}; - -static PyTypeObject __pyx_type_8pmercury_9protocols_4dtls_DTLS = { - PyVarObject_HEAD_INIT(0, 0) - "pmercury.protocols.dtls.DTLS", /*tp_name*/ - sizeof(struct __pyx_obj_8pmercury_9protocols_4dtls_DTLS), /*tp_basicsize*/ - 0, /*tp_itemsize*/ - __pyx_tp_dealloc_8pmercury_9protocols_4dtls_DTLS, /*tp_dealloc*/ - #if PY_VERSION_HEX < 0x030800b4 - 0, /*tp_print*/ - #endif - #if PY_VERSION_HEX >= 0x030800b4 - 0, /*tp_vectorcall_offset*/ - #endif - 0, /*tp_getattr*/ - 0, /*tp_setattr*/ - #if PY_MAJOR_VERSION < 3 - 0, /*tp_compare*/ - #endif - #if PY_MAJOR_VERSION >= 3 - 0, /*tp_as_async*/ - #endif - 0, /*tp_repr*/ - 0, /*tp_as_number*/ - 0, /*tp_as_sequence*/ - 0, /*tp_as_mapping*/ - 0, /*tp_hash*/ - 0, /*tp_call*/ - 0, /*tp_str*/ - 0, /*tp_getattro*/ - 0, /*tp_setattro*/ - 0, /*tp_as_buffer*/ - Py_TPFLAGS_DEFAULT|Py_TPFLAGS_HAVE_VERSION_TAG|Py_TPFLAGS_CHECKTYPES|Py_TPFLAGS_HAVE_NEWBUFFER|Py_TPFLAGS_BASETYPE|Py_TPFLAGS_HAVE_GC, /*tp_flags*/ - 0, /*tp_doc*/ - __pyx_tp_traverse_8pmercury_9protocols_4dtls_DTLS, /*tp_traverse*/ - __pyx_tp_clear_8pmercury_9protocols_4dtls_DTLS, /*tp_clear*/ - 0, /*tp_richcompare*/ - 0, /*tp_weaklistoffset*/ - 0, /*tp_iter*/ - 0, /*tp_iternext*/ - __pyx_methods_8pmercury_9protocols_4dtls_DTLS, /*tp_methods*/ - 0, /*tp_members*/ - 0, /*tp_getset*/ - 0, /*tp_base*/ - 0, /*tp_dict*/ - 0, /*tp_descr_get*/ - 0, /*tp_descr_set*/ - 0, /*tp_dictoffset*/ - __pyx_pw_8pmercury_9protocols_4dtls_4DTLS_1__init__, /*tp_init*/ - 0, /*tp_alloc*/ - __pyx_tp_new_8pmercury_9protocols_4dtls_DTLS, /*tp_new*/ - 0, /*tp_free*/ - 0, /*tp_is_gc*/ - 0, /*tp_bases*/ - 0, /*tp_mro*/ - 0, /*tp_cache*/ - 0, /*tp_subclasses*/ - 0, /*tp_weaklist*/ - 0, /*tp_del*/ - 0, /*tp_version_tag*/ - #if PY_VERSION_HEX >= 0x030400a1 - 0, /*tp_finalize*/ - #endif - #if PY_VERSION_HEX >= 0x030800b1 - 0, /*tp_vectorcall*/ - #endif - #if PY_VERSION_HEX >= 0x030800b4 && PY_VERSION_HEX < 0x03090000 - 0, /*tp_print*/ - #endif -}; - -static PyMethodDef __pyx_methods[] = { - {0, 0, 0, 0} -}; - -static int __pyx_import_star_set(PyObject *o, PyObject* py_name, char *name) { - static const char* internal_type_names[] = { - "DTLS", - "uint16_t", - "uint32_t", - "uint64_t", - "uint8_t", - 0 - }; - const char** type_name = internal_type_names; - while (*type_name) { - if (__Pyx_StrEq(name, *type_name)) { - PyErr_Format(PyExc_TypeError, "Cannot overwrite C type %s", name); - goto bad; - } - type_name++; - } - if (0); - else { - if (PyObject_SetAttr(__pyx_m, py_name, o) < 0) goto bad; - } - return 0; - bad: - return -1; -} - -static int -__Pyx_import_all_from(PyObject *locals, PyObject *v) -{ - PyObject *all = PyObject_GetAttrString(v, "__all__"); - PyObject *dict, *name, *value; - int skip_leading_underscores = 0; - int pos, err; - if (all == NULL) { - if (!PyErr_ExceptionMatches(PyExc_AttributeError)) - return -1; - PyErr_Clear(); - dict = PyObject_GetAttrString(v, "__dict__"); - if (dict == NULL) { - if (!PyErr_ExceptionMatches(PyExc_AttributeError)) - return -1; - PyErr_SetString(PyExc_ImportError, - "from-import-* object has no __dict__ and no __all__"); - return -1; - } -#if PY_MAJOR_VERSION < 3 - all = PyObject_CallMethod(dict, (char *)"keys", NULL); -#else - all = PyMapping_Keys(dict); -#endif - Py_DECREF(dict); - if (all == NULL) - return -1; - skip_leading_underscores = 1; - } - for (pos = 0, err = 0; ; pos++) { - name = PySequence_GetItem(all, pos); - if (name == NULL) { - if (!PyErr_ExceptionMatches(PyExc_IndexError)) - err = -1; - else - PyErr_Clear(); - break; - } - if (skip_leading_underscores && -#if PY_MAJOR_VERSION < 3 - PyString_Check(name) && - PyString_AS_STRING(name)[0] == '_') -#else - PyUnicode_Check(name) && - PyUnicode_AS_UNICODE(name)[0] == '_') -#endif - { - Py_DECREF(name); - continue; - } - value = PyObject_GetAttr(v, name); - if (value == NULL) - err = -1; - else if (PyDict_CheckExact(locals)) - err = PyDict_SetItem(locals, name, value); - else - err = PyObject_SetItem(locals, name, value); - Py_DECREF(name); - Py_XDECREF(value); - if (err != 0) - break; - } - Py_DECREF(all); - return err; -} -static int __pyx_import_star(PyObject* m) { - int i; - int ret = -1; - char* s; - PyObject *locals = 0; - PyObject *list = 0; -#if PY_MAJOR_VERSION >= 3 - PyObject *utf8_name = 0; -#endif - PyObject *name; - PyObject *item; - locals = PyDict_New(); if (!locals) goto bad; - if (__Pyx_import_all_from(locals, m) < 0) goto bad; - list = PyDict_Items(locals); if (!list) goto bad; - for(i=0; i= 3 - utf8_name = PyUnicode_AsUTF8String(name); - if (!utf8_name) goto bad; - s = PyBytes_AS_STRING(utf8_name); - if (__pyx_import_star_set(item, name, s) < 0) goto bad; - Py_DECREF(utf8_name); utf8_name = 0; -#else - s = PyString_AsString(name); - if (!s) goto bad; - if (__pyx_import_star_set(item, name, s) < 0) goto bad; -#endif - } - ret = 0; -bad: - Py_XDECREF(locals); - Py_XDECREF(list); -#if PY_MAJOR_VERSION >= 3 - Py_XDECREF(utf8_name); -#endif - return ret; -} - - - -#if PY_MAJOR_VERSION >= 3 -#if CYTHON_PEP489_MULTI_PHASE_INIT -static PyObject* __pyx_pymod_create(PyObject *spec, PyModuleDef *def); /*proto*/ -static int __pyx_pymod_exec_dtls(PyObject* module); /*proto*/ -static PyModuleDef_Slot __pyx_moduledef_slots[] = { - {Py_mod_create, (void*)__pyx_pymod_create}, - {Py_mod_exec, (void*)__pyx_pymod_exec_dtls}, - {0, NULL} -}; -#endif - -static struct PyModuleDef __pyx_moduledef = { - PyModuleDef_HEAD_INIT, - "dtls", - __pyx_k_Copyright_c_2019_Cisco_Systems, /* m_doc */ - #if CYTHON_PEP489_MULTI_PHASE_INIT - 0, /* m_size */ - #else - -1, /* m_size */ - #endif - __pyx_methods /* m_methods */, - #if CYTHON_PEP489_MULTI_PHASE_INIT - __pyx_moduledef_slots, /* m_slots */ - #else - NULL, /* m_reload */ - #endif - NULL, /* m_traverse */ - NULL, /* m_clear */ - NULL /* m_free */ -}; -#endif -#ifndef CYTHON_SMALL_CODE -#if defined(__clang__) - #define CYTHON_SMALL_CODE -#elif defined(__GNUC__) && (__GNUC__ > 4 || (__GNUC__ == 4 && __GNUC_MINOR__ >= 3)) - #define CYTHON_SMALL_CODE __attribute__((cold)) -#else - #define CYTHON_SMALL_CODE -#endif -#endif - -static __Pyx_StringTabEntry __pyx_string_tab[] = { - {&__pyx_kp_u_, __pyx_k_, sizeof(__pyx_k_), 0, 1, 0, 0}, - {&__pyx_kp_u_02x, __pyx_k_02x, sizeof(__pyx_k_02x), 0, 1, 0, 0}, - {&__pyx_n_s_DTLS, __pyx_k_DTLS, sizeof(__pyx_k_DTLS), 0, 0, 1, 1}, - {&__pyx_kp_s_Incompatible_checksums_s_vs_0x05, __pyx_k_Incompatible_checksums_s_vs_0x05, sizeof(__pyx_k_Incompatible_checksums_s_vs_0x05), 0, 0, 1, 0}, - {&__pyx_n_s_MAX_CACHED_RESULTS, __pyx_k_MAX_CACHED_RESULTS, sizeof(__pyx_k_MAX_CACHED_RESULTS), 0, 0, 1, 1}, - {&__pyx_n_s_PickleError, __pyx_k_PickleError, sizeof(__pyx_k_PickleError), 0, 0, 1, 1}, - {&__pyx_kp_u__2, __pyx_k__2, sizeof(__pyx_k__2), 0, 1, 0, 0}, - {&__pyx_kp_u__4, __pyx_k__4, sizeof(__pyx_k__4), 0, 1, 0, 0}, - {&__pyx_kp_u__5, __pyx_k__5, sizeof(__pyx_k__5), 0, 1, 0, 0}, - {&__pyx_kp_u__6, __pyx_k__6, sizeof(__pyx_k__6), 0, 1, 0, 0}, - {&__pyx_n_s__7, __pyx_k__7, sizeof(__pyx_k__7), 0, 0, 1, 1}, - {&__pyx_n_s_abspath, __pyx_k_abspath, sizeof(__pyx_k_abspath), 0, 0, 1, 1}, - {&__pyx_n_s_append, __pyx_k_append, sizeof(__pyx_k_append), 0, 0, 1, 1}, - {&__pyx_n_s_approx_fp_str, __pyx_k_approx_fp_str, sizeof(__pyx_k_approx_fp_str), 0, 0, 1, 1}, - {&__pyx_n_s_buf, __pyx_k_buf, sizeof(__pyx_k_buf), 0, 0, 1, 1}, - {&__pyx_n_s_c, __pyx_k_c, sizeof(__pyx_k_c), 0, 0, 1, 1}, - {&__pyx_n_s_cipher_suites_length, __pyx_k_cipher_suites_length, sizeof(__pyx_k_cipher_suites_length), 0, 0, 1, 1}, - {&__pyx_n_s_cline_in_traceback, __pyx_k_cline_in_traceback, sizeof(__pyx_k_cline_in_traceback), 0, 0, 1, 1}, - {&__pyx_n_s_compression_methods_length, __pyx_k_compression_methods_length, sizeof(__pyx_k_compression_methods_length), 0, 0, 1, 1}, - {&__pyx_n_s_config, __pyx_k_config, sizeof(__pyx_k_config), 0, 0, 1, 1}, - {&__pyx_n_s_context, __pyx_k_context, sizeof(__pyx_k_context), 0, 0, 1, 1}, - {&__pyx_n_s_context_2, __pyx_k_context_2, sizeof(__pyx_k_context_2), 0, 0, 1, 1}, - {&__pyx_n_s_cookie_length, __pyx_k_cookie_length, sizeof(__pyx_k_cookie_length), 0, 0, 1, 1}, - {&__pyx_n_s_cs, __pyx_k_cs, sizeof(__pyx_k_cs), 0, 0, 1, 1}, - {&__pyx_n_s_data, __pyx_k_data, sizeof(__pyx_k_data), 0, 0, 1, 1}, - {&__pyx_n_u_data, __pyx_k_data, sizeof(__pyx_k_data), 0, 1, 0, 1}, - {&__pyx_n_s_data_len, __pyx_k_data_len, sizeof(__pyx_k_data_len), 0, 0, 1, 1}, - {&__pyx_n_s_degrease_type_code, __pyx_k_degrease_type_code, sizeof(__pyx_k_degrease_type_code), 0, 0, 1, 1}, - {&__pyx_n_s_dict, __pyx_k_dict, sizeof(__pyx_k_dict), 0, 0, 1, 1}, - {&__pyx_n_s_dirname, __pyx_k_dirname, sizeof(__pyx_k_dirname), 0, 0, 1, 1}, - {&__pyx_n_s_dst_ip, __pyx_k_dst_ip, sizeof(__pyx_k_dst_ip), 0, 0, 1, 1}, - {&__pyx_n_s_dst_port, __pyx_k_dst_port, sizeof(__pyx_k_dst_port), 0, 0, 1, 1}, - {&__pyx_n_s_ext_len, __pyx_k_ext_len, sizeof(__pyx_k_ext_len), 0, 0, 1, 1}, - {&__pyx_n_s_ext_total_len, __pyx_k_ext_total_len, sizeof(__pyx_k_ext_total_len), 0, 0, 1, 1}, - {&__pyx_n_s_extract_server_name, __pyx_k_extract_server_name, sizeof(__pyx_k_extract_server_name), 0, 0, 1, 1}, - {&__pyx_n_s_file, __pyx_k_file, sizeof(__pyx_k_file), 0, 0, 1, 1}, - {&__pyx_n_s_fingerprint, __pyx_k_fingerprint, sizeof(__pyx_k_fingerprint), 0, 0, 1, 1}, - {&__pyx_n_s_fp_database, __pyx_k_fp_database, sizeof(__pyx_k_fp_database), 0, 0, 1, 1}, - {&__pyx_n_s_fp_str, __pyx_k_fp_str, sizeof(__pyx_k_fp_str), 0, 0, 1, 1}, - {&__pyx_n_s_fp_str_2, __pyx_k_fp_str_2, sizeof(__pyx_k_fp_str_2), 0, 0, 1, 1}, - {&__pyx_n_s_functools, __pyx_k_functools, sizeof(__pyx_k_functools), 0, 0, 1, 1}, - {&__pyx_n_s_get_database_entry, __pyx_k_get_database_entry, sizeof(__pyx_k_get_database_entry), 0, 0, 1, 1}, - {&__pyx_n_s_getstate, __pyx_k_getstate, sizeof(__pyx_k_getstate), 0, 0, 1, 1}, - {&__pyx_n_s_hex, __pyx_k_hex, sizeof(__pyx_k_hex), 0, 0, 1, 1}, - {&__pyx_n_s_import, __pyx_k_import, sizeof(__pyx_k_import), 0, 0, 1, 1}, - {&__pyx_n_s_json, __pyx_k_json, sizeof(__pyx_k_json), 0, 0, 1, 1}, - {&__pyx_n_s_list_procs, __pyx_k_list_procs, sizeof(__pyx_k_list_procs), 0, 0, 1, 1}, - {&__pyx_n_s_lru_cache, __pyx_k_lru_cache, sizeof(__pyx_k_lru_cache), 0, 0, 1, 1}, - {&__pyx_n_s_main, __pyx_k_main, sizeof(__pyx_k_main), 0, 0, 1, 1}, - {&__pyx_n_s_maxsize, __pyx_k_maxsize, sizeof(__pyx_k_maxsize), 0, 0, 1, 1}, - {&__pyx_n_u_name, __pyx_k_name, sizeof(__pyx_k_name), 0, 1, 0, 1}, - {&__pyx_n_s_name_2, __pyx_k_name_2, sizeof(__pyx_k_name_2), 0, 0, 1, 1}, - {&__pyx_n_s_new, __pyx_k_new, sizeof(__pyx_k_new), 0, 0, 1, 1}, - {&__pyx_n_s_offset, __pyx_k_offset, sizeof(__pyx_k_offset), 0, 0, 1, 1}, - {&__pyx_n_s_operator, __pyx_k_operator, sizeof(__pyx_k_operator), 0, 0, 1, 1}, - {&__pyx_n_s_os, __pyx_k_os, sizeof(__pyx_k_os), 0, 0, 1, 1}, - {&__pyx_n_s_parse_extension, __pyx_k_parse_extension, sizeof(__pyx_k_parse_extension), 0, 0, 1, 1}, - {&__pyx_n_s_path, __pyx_k_path, sizeof(__pyx_k_path), 0, 0, 1, 1}, - {&__pyx_n_s_pickle, __pyx_k_pickle, sizeof(__pyx_k_pickle), 0, 0, 1, 1}, - {&__pyx_n_s_pmercury_protocols_dtls, __pyx_k_pmercury_protocols_dtls, sizeof(__pyx_k_pmercury_protocols_dtls), 0, 0, 1, 1}, - {&__pyx_kp_s_pmercury_protocols_dtls_pyx, __pyx_k_pmercury_protocols_dtls_pyx, sizeof(__pyx_k_pmercury_protocols_dtls_pyx), 0, 0, 1, 0}, - {&__pyx_n_s_pmercury_utils_tls_utils, __pyx_k_pmercury_utils_tls_utils, sizeof(__pyx_k_pmercury_utils_tls_utils), 0, 0, 1, 1}, - {&__pyx_n_s_proto_identify, __pyx_k_proto_identify, sizeof(__pyx_k_proto_identify), 0, 0, 1, 1}, - {&__pyx_n_s_pyx_PickleError, __pyx_k_pyx_PickleError, sizeof(__pyx_k_pyx_PickleError), 0, 0, 1, 1}, - {&__pyx_n_s_pyx_checksum, __pyx_k_pyx_checksum, sizeof(__pyx_k_pyx_checksum), 0, 0, 1, 1}, - {&__pyx_n_s_pyx_result, __pyx_k_pyx_result, sizeof(__pyx_k_pyx_result), 0, 0, 1, 1}, - {&__pyx_n_s_pyx_state, __pyx_k_pyx_state, sizeof(__pyx_k_pyx_state), 0, 0, 1, 1}, - {&__pyx_n_s_pyx_type, __pyx_k_pyx_type, sizeof(__pyx_k_pyx_type), 0, 0, 1, 1}, - {&__pyx_n_s_pyx_unpickle_DTLS, __pyx_k_pyx_unpickle_DTLS, sizeof(__pyx_k_pyx_unpickle_DTLS), 0, 0, 1, 1}, - {&__pyx_n_s_reduce, __pyx_k_reduce, sizeof(__pyx_k_reduce), 0, 0, 1, 1}, - {&__pyx_n_s_reduce_cython, __pyx_k_reduce_cython, sizeof(__pyx_k_reduce_cython), 0, 0, 1, 1}, - {&__pyx_n_s_reduce_ex, __pyx_k_reduce_ex, sizeof(__pyx_k_reduce_ex), 0, 0, 1, 1}, - {&__pyx_kp_u_s, __pyx_k_s, sizeof(__pyx_k_s), 0, 1, 0, 0}, - {&__pyx_n_s_server_name, __pyx_k_server_name, sizeof(__pyx_k_server_name), 0, 0, 1, 1}, - {&__pyx_n_u_server_name, __pyx_k_server_name, sizeof(__pyx_k_server_name), 0, 1, 0, 1}, - {&__pyx_n_s_session_id_length, __pyx_k_session_id_length, sizeof(__pyx_k_session_id_length), 0, 0, 1, 1}, - {&__pyx_n_s_setstate, __pyx_k_setstate, sizeof(__pyx_k_setstate), 0, 0, 1, 1}, - {&__pyx_n_s_setstate_cython, __pyx_k_setstate_cython, sizeof(__pyx_k_setstate_cython), 0, 0, 1, 1}, - {&__pyx_n_s_staticmethod, __pyx_k_staticmethod, sizeof(__pyx_k_staticmethod), 0, 0, 1, 1}, - {&__pyx_kp_s_stringsource, __pyx_k_stringsource, sizeof(__pyx_k_stringsource), 0, 0, 1, 0}, - {&__pyx_n_s_sys, __pyx_k_sys, sizeof(__pyx_k_sys), 0, 0, 1, 1}, - {&__pyx_n_s_test, __pyx_k_test, sizeof(__pyx_k_test), 0, 0, 1, 1}, - {&__pyx_n_s_tmp_fp_ext, __pyx_k_tmp_fp_ext, sizeof(__pyx_k_tmp_fp_ext), 0, 0, 1, 1}, - {&__pyx_n_s_update, __pyx_k_update, sizeof(__pyx_k_update), 0, 0, 1, 1}, - {0, 0, 0, 0, 0, 0, 0} -}; -static CYTHON_SMALL_CODE int __Pyx_InitCachedBuiltins(void) { - __pyx_builtin_staticmethod = __Pyx_GetBuiltinName(__pyx_n_s_staticmethod); if (!__pyx_builtin_staticmethod) __PYX_ERR(0, 40, __pyx_L1_error) - return 0; - __pyx_L1_error:; - return -1; -} - -static CYTHON_SMALL_CODE int __Pyx_InitCachedConstants(void) { - __Pyx_RefNannyDeclarations - __Pyx_RefNannySetupContext("__Pyx_InitCachedConstants", 0); - - /* "pmercury/protocols/dtls.pyx":69 - * offset += 1 + session_id_length - * if offset >= data_len: - * return None, None # <<<<<<<<<<<<<< - * - * # parse/skip cookie - */ - __pyx_tuple__3 = PyTuple_Pack(2, Py_None, Py_None); if (unlikely(!__pyx_tuple__3)) __PYX_ERR(0, 69, __pyx_L1_error) - __Pyx_GOTREF(__pyx_tuple__3); - __Pyx_GIVEREF(__pyx_tuple__3); - - /* "pmercury/protocols/dtls.pyx":41 - * - * @staticmethod - * def proto_identify(data, offset, data_len): # <<<<<<<<<<<<<< - * if data_len-offset < 27: - * return False - */ - __pyx_tuple__8 = PyTuple_Pack(3, __pyx_n_s_data, __pyx_n_s_offset, __pyx_n_s_data_len); if (unlikely(!__pyx_tuple__8)) __PYX_ERR(0, 41, __pyx_L1_error) - __Pyx_GOTREF(__pyx_tuple__8); - __Pyx_GIVEREF(__pyx_tuple__8); - __pyx_codeobj__9 = (PyObject*)__Pyx_PyCode_New(3, 0, 3, 0, CO_OPTIMIZED|CO_NEWLOCALS, __pyx_empty_bytes, __pyx_empty_tuple, __pyx_empty_tuple, __pyx_tuple__8, __pyx_empty_tuple, __pyx_empty_tuple, __pyx_kp_s_pmercury_protocols_dtls_pyx, __pyx_n_s_proto_identify, 41, __pyx_empty_bytes); if (unlikely(!__pyx_codeobj__9)) __PYX_ERR(0, 41, __pyx_L1_error) - - /* "pmercury/protocols/dtls.pyx":55 - * - * @staticmethod - * def fingerprint(bytes data, unsigned int offset, unsigned int data_len): # <<<<<<<<<<<<<< - * cdef unsigned char *buf = data - * offset += 13 - */ - __pyx_tuple__10 = PyTuple_Pack(15, __pyx_n_s_data, __pyx_n_s_offset, __pyx_n_s_data_len, __pyx_n_s_buf, __pyx_n_s_c, __pyx_n_s_session_id_length, __pyx_n_s_cookie_length, __pyx_n_s_cipher_suites_length, __pyx_n_s_cs, __pyx_n_s_compression_methods_length, __pyx_n_s_ext_total_len, __pyx_n_s_server_name, __pyx_n_s_tmp_fp_ext, __pyx_n_s_ext_len, __pyx_n_s_context_2); if (unlikely(!__pyx_tuple__10)) __PYX_ERR(0, 55, __pyx_L1_error) - __Pyx_GOTREF(__pyx_tuple__10); - __Pyx_GIVEREF(__pyx_tuple__10); - __pyx_codeobj__11 = (PyObject*)__Pyx_PyCode_New(3, 0, 15, 0, CO_OPTIMIZED|CO_NEWLOCALS, __pyx_empty_bytes, __pyx_empty_tuple, __pyx_empty_tuple, __pyx_tuple__10, __pyx_empty_tuple, __pyx_empty_tuple, __pyx_kp_s_pmercury_protocols_dtls_pyx, __pyx_n_s_fingerprint, 55, __pyx_empty_bytes); if (unlikely(!__pyx_codeobj__11)) __PYX_ERR(0, 55, __pyx_L1_error) - - /* "(tree fragment)":1 - * def __pyx_unpickle_DTLS(__pyx_type, long __pyx_checksum, __pyx_state): # <<<<<<<<<<<<<< - * cdef object __pyx_PickleError - * cdef object __pyx_result - */ - __pyx_tuple__12 = PyTuple_Pack(5, __pyx_n_s_pyx_type, __pyx_n_s_pyx_checksum, __pyx_n_s_pyx_state, __pyx_n_s_pyx_PickleError, __pyx_n_s_pyx_result); if (unlikely(!__pyx_tuple__12)) __PYX_ERR(1, 1, __pyx_L1_error) - __Pyx_GOTREF(__pyx_tuple__12); - __Pyx_GIVEREF(__pyx_tuple__12); - __pyx_codeobj__13 = (PyObject*)__Pyx_PyCode_New(3, 0, 5, 0, CO_OPTIMIZED|CO_NEWLOCALS, __pyx_empty_bytes, __pyx_empty_tuple, __pyx_empty_tuple, __pyx_tuple__12, __pyx_empty_tuple, __pyx_empty_tuple, __pyx_kp_s_stringsource, __pyx_n_s_pyx_unpickle_DTLS, 1, __pyx_empty_bytes); if (unlikely(!__pyx_codeobj__13)) __PYX_ERR(1, 1, __pyx_L1_error) - __Pyx_RefNannyFinishContext(); - return 0; - __pyx_L1_error:; - __Pyx_RefNannyFinishContext(); - return -1; -} - -static CYTHON_SMALL_CODE int __Pyx_InitGlobals(void) { - if (__Pyx_InitStrings(__pyx_string_tab) < 0) __PYX_ERR(0, 1, __pyx_L1_error); - __pyx_int_1 = PyInt_FromLong(1); if (unlikely(!__pyx_int_1)) __PYX_ERR(0, 1, __pyx_L1_error) - __pyx_int_2 = PyInt_FromLong(2); if (unlikely(!__pyx_int_2)) __PYX_ERR(0, 1, __pyx_L1_error) - __pyx_int_4 = PyInt_FromLong(4); if (unlikely(!__pyx_int_4)) __PYX_ERR(0, 1, __pyx_L1_error) - __pyx_int_5 = PyInt_FromLong(5); if (unlikely(!__pyx_int_5)) __PYX_ERR(0, 1, __pyx_L1_error) - __pyx_int_13 = PyInt_FromLong(13); if (unlikely(!__pyx_int_13)) __PYX_ERR(0, 1, __pyx_L1_error) - __pyx_int_22 = PyInt_FromLong(22); if (unlikely(!__pyx_int_22)) __PYX_ERR(0, 1, __pyx_L1_error) - __pyx_int_25 = PyInt_FromLong(25); if (unlikely(!__pyx_int_25)) __PYX_ERR(0, 1, __pyx_L1_error) - __pyx_int_26 = PyInt_FromLong(26); if (unlikely(!__pyx_int_26)) __PYX_ERR(0, 1, __pyx_L1_error) - __pyx_int_27 = PyInt_FromLong(27); if (unlikely(!__pyx_int_27)) __PYX_ERR(0, 1, __pyx_L1_error) - __pyx_int_253 = PyInt_FromLong(253); if (unlikely(!__pyx_int_253)) __PYX_ERR(0, 1, __pyx_L1_error) - __pyx_int_254 = PyInt_FromLong(254); if (unlikely(!__pyx_int_254)) __PYX_ERR(0, 1, __pyx_L1_error) - __pyx_int_5398031 = PyInt_FromLong(5398031L); if (unlikely(!__pyx_int_5398031)) __PYX_ERR(0, 1, __pyx_L1_error) - __pyx_int_16777216 = PyInt_FromLong(16777216L); if (unlikely(!__pyx_int_16777216)) __PYX_ERR(0, 1, __pyx_L1_error) - return 0; - __pyx_L1_error:; - return -1; -} - -static CYTHON_SMALL_CODE int __Pyx_modinit_global_init_code(void); /*proto*/ -static CYTHON_SMALL_CODE int __Pyx_modinit_variable_export_code(void); /*proto*/ -static CYTHON_SMALL_CODE int __Pyx_modinit_function_export_code(void); /*proto*/ -static CYTHON_SMALL_CODE int __Pyx_modinit_type_init_code(void); /*proto*/ -static CYTHON_SMALL_CODE int __Pyx_modinit_type_import_code(void); /*proto*/ -static CYTHON_SMALL_CODE int __Pyx_modinit_variable_import_code(void); /*proto*/ -static CYTHON_SMALL_CODE int __Pyx_modinit_function_import_code(void); /*proto*/ - -static int __Pyx_modinit_global_init_code(void) { - __Pyx_RefNannyDeclarations - __Pyx_RefNannySetupContext("__Pyx_modinit_global_init_code", 0); - /*--- Global init code ---*/ - __Pyx_RefNannyFinishContext(); - return 0; -} - -static int __Pyx_modinit_variable_export_code(void) { - __Pyx_RefNannyDeclarations - __Pyx_RefNannySetupContext("__Pyx_modinit_variable_export_code", 0); - /*--- Variable export code ---*/ - __Pyx_RefNannyFinishContext(); - return 0; -} - -static int __Pyx_modinit_function_export_code(void) { - __Pyx_RefNannyDeclarations - __Pyx_RefNannySetupContext("__Pyx_modinit_function_export_code", 0); - /*--- Function export code ---*/ - __Pyx_RefNannyFinishContext(); - return 0; -} - -static int __Pyx_modinit_type_init_code(void) { - __Pyx_RefNannyDeclarations - __Pyx_RefNannySetupContext("__Pyx_modinit_type_init_code", 0); - /*--- Type init code ---*/ - if (PyType_Ready(&__pyx_type_8pmercury_9protocols_4dtls_DTLS) < 0) __PYX_ERR(0, 33, __pyx_L1_error) - #if PY_VERSION_HEX < 0x030800B1 - __pyx_type_8pmercury_9protocols_4dtls_DTLS.tp_print = 0; - #endif - if ((CYTHON_USE_TYPE_SLOTS && CYTHON_USE_PYTYPE_LOOKUP) && likely(!__pyx_type_8pmercury_9protocols_4dtls_DTLS.tp_dictoffset && __pyx_type_8pmercury_9protocols_4dtls_DTLS.tp_getattro == PyObject_GenericGetAttr)) { - __pyx_type_8pmercury_9protocols_4dtls_DTLS.tp_getattro = __Pyx_PyObject_GenericGetAttr; - } - if (PyObject_SetAttr(__pyx_m, __pyx_n_s_DTLS, (PyObject *)&__pyx_type_8pmercury_9protocols_4dtls_DTLS) < 0) __PYX_ERR(0, 33, __pyx_L1_error) - if (__Pyx_setup_reduce((PyObject*)&__pyx_type_8pmercury_9protocols_4dtls_DTLS) < 0) __PYX_ERR(0, 33, __pyx_L1_error) - __pyx_ptype_8pmercury_9protocols_4dtls_DTLS = &__pyx_type_8pmercury_9protocols_4dtls_DTLS; - __Pyx_RefNannyFinishContext(); - return 0; - __pyx_L1_error:; - __Pyx_RefNannyFinishContext(); - return -1; -} - -static int __Pyx_modinit_type_import_code(void) { - __Pyx_RefNannyDeclarations - __Pyx_RefNannySetupContext("__Pyx_modinit_type_import_code", 0); - /*--- Type import code ---*/ - __Pyx_RefNannyFinishContext(); - return 0; -} - -static int __Pyx_modinit_variable_import_code(void) { - __Pyx_RefNannyDeclarations - __Pyx_RefNannySetupContext("__Pyx_modinit_variable_import_code", 0); - /*--- Variable import code ---*/ - __Pyx_RefNannyFinishContext(); - return 0; -} - -static int __Pyx_modinit_function_import_code(void) { - __Pyx_RefNannyDeclarations - __Pyx_RefNannySetupContext("__Pyx_modinit_function_import_code", 0); - /*--- Function import code ---*/ - __Pyx_RefNannyFinishContext(); - return 0; -} - - -#if PY_MAJOR_VERSION < 3 -#ifdef CYTHON_NO_PYINIT_EXPORT -#define __Pyx_PyMODINIT_FUNC void -#else -#define __Pyx_PyMODINIT_FUNC PyMODINIT_FUNC -#endif -#else -#ifdef CYTHON_NO_PYINIT_EXPORT -#define __Pyx_PyMODINIT_FUNC PyObject * -#else -#define __Pyx_PyMODINIT_FUNC PyMODINIT_FUNC -#endif -#endif - - -#if PY_MAJOR_VERSION < 3 -__Pyx_PyMODINIT_FUNC initdtls(void) CYTHON_SMALL_CODE; /*proto*/ -__Pyx_PyMODINIT_FUNC initdtls(void) -#else -__Pyx_PyMODINIT_FUNC PyInit_dtls(void) CYTHON_SMALL_CODE; /*proto*/ -__Pyx_PyMODINIT_FUNC PyInit_dtls(void) -#if CYTHON_PEP489_MULTI_PHASE_INIT -{ - return PyModuleDef_Init(&__pyx_moduledef); -} -static CYTHON_SMALL_CODE int __Pyx_check_single_interpreter(void) { - #if PY_VERSION_HEX >= 0x030700A1 - static PY_INT64_T main_interpreter_id = -1; - PY_INT64_T current_id = PyInterpreterState_GetID(PyThreadState_Get()->interp); - if (main_interpreter_id == -1) { - main_interpreter_id = current_id; - return (unlikely(current_id == -1)) ? -1 : 0; - } else if (unlikely(main_interpreter_id != current_id)) - #else - static PyInterpreterState *main_interpreter = NULL; - PyInterpreterState *current_interpreter = PyThreadState_Get()->interp; - if (!main_interpreter) { - main_interpreter = current_interpreter; - } else if (unlikely(main_interpreter != current_interpreter)) - #endif - { - PyErr_SetString( - PyExc_ImportError, - "Interpreter change detected - this module can only be loaded into one interpreter per process."); - return -1; - } - return 0; -} -static CYTHON_SMALL_CODE int __Pyx_copy_spec_to_module(PyObject *spec, PyObject *moddict, const char* from_name, const char* to_name, int allow_none) { - PyObject *value = PyObject_GetAttrString(spec, from_name); - int result = 0; - if (likely(value)) { - if (allow_none || value != Py_None) { - result = PyDict_SetItemString(moddict, to_name, value); - } - Py_DECREF(value); - } else if (PyErr_ExceptionMatches(PyExc_AttributeError)) { - PyErr_Clear(); - } else { - result = -1; - } - return result; -} -static CYTHON_SMALL_CODE PyObject* __pyx_pymod_create(PyObject *spec, CYTHON_UNUSED PyModuleDef *def) { - PyObject *module = NULL, *moddict, *modname; - if (__Pyx_check_single_interpreter()) - return NULL; - if (__pyx_m) - return __Pyx_NewRef(__pyx_m); - modname = PyObject_GetAttrString(spec, "name"); - if (unlikely(!modname)) goto bad; - module = PyModule_NewObject(modname); - Py_DECREF(modname); - if (unlikely(!module)) goto bad; - moddict = PyModule_GetDict(module); - if (unlikely(!moddict)) goto bad; - if (unlikely(__Pyx_copy_spec_to_module(spec, moddict, "loader", "__loader__", 1) < 0)) goto bad; - if (unlikely(__Pyx_copy_spec_to_module(spec, moddict, "origin", "__file__", 1) < 0)) goto bad; - if (unlikely(__Pyx_copy_spec_to_module(spec, moddict, "parent", "__package__", 1) < 0)) goto bad; - if (unlikely(__Pyx_copy_spec_to_module(spec, moddict, "submodule_search_locations", "__path__", 0) < 0)) goto bad; - return module; -bad: - Py_XDECREF(module); - return NULL; -} - - -static CYTHON_SMALL_CODE int __pyx_pymod_exec_dtls(PyObject *__pyx_pyinit_module) -#endif -#endif -{ - PyObject *__pyx_t_1 = NULL; - PyObject *__pyx_t_2 = NULL; - PyObject *__pyx_t_3 = NULL; - PyObject *__pyx_t_4 = NULL; - PyObject *__pyx_t_5 = NULL; - int __pyx_t_6; - __Pyx_RefNannyDeclarations - #if CYTHON_PEP489_MULTI_PHASE_INIT - if (__pyx_m) { - if (__pyx_m == __pyx_pyinit_module) return 0; - PyErr_SetString(PyExc_RuntimeError, "Module 'dtls' has already been imported. Re-initialisation is not supported."); - return -1; - } - #elif PY_MAJOR_VERSION >= 3 - if (__pyx_m) return __Pyx_NewRef(__pyx_m); - #endif - #if CYTHON_REFNANNY -__Pyx_RefNanny = __Pyx_RefNannyImportAPI("refnanny"); -if (!__Pyx_RefNanny) { - PyErr_Clear(); - __Pyx_RefNanny = __Pyx_RefNannyImportAPI("Cython.Runtime.refnanny"); - if (!__Pyx_RefNanny) - Py_FatalError("failed to import 'refnanny' module"); -} -#endif - __Pyx_RefNannySetupContext("__Pyx_PyMODINIT_FUNC PyInit_dtls(void)", 0); - if (__Pyx_check_binary_version() < 0) __PYX_ERR(0, 1, __pyx_L1_error) - #ifdef __Pxy_PyFrame_Initialize_Offsets - __Pxy_PyFrame_Initialize_Offsets(); - #endif - __pyx_empty_tuple = PyTuple_New(0); if (unlikely(!__pyx_empty_tuple)) __PYX_ERR(0, 1, __pyx_L1_error) - __pyx_empty_bytes = PyBytes_FromStringAndSize("", 0); if (unlikely(!__pyx_empty_bytes)) __PYX_ERR(0, 1, __pyx_L1_error) - __pyx_empty_unicode = PyUnicode_FromStringAndSize("", 0); if (unlikely(!__pyx_empty_unicode)) __PYX_ERR(0, 1, __pyx_L1_error) - #ifdef __Pyx_CyFunction_USED - if (__pyx_CyFunction_init() < 0) __PYX_ERR(0, 1, __pyx_L1_error) - #endif - #ifdef __Pyx_FusedFunction_USED - if (__pyx_FusedFunction_init() < 0) __PYX_ERR(0, 1, __pyx_L1_error) - #endif - #ifdef __Pyx_Coroutine_USED - if (__pyx_Coroutine_init() < 0) __PYX_ERR(0, 1, __pyx_L1_error) - #endif - #ifdef __Pyx_Generator_USED - if (__pyx_Generator_init() < 0) __PYX_ERR(0, 1, __pyx_L1_error) - #endif - #ifdef __Pyx_AsyncGen_USED - if (__pyx_AsyncGen_init() < 0) __PYX_ERR(0, 1, __pyx_L1_error) - #endif - #ifdef __Pyx_StopAsyncIteration_USED - if (__pyx_StopAsyncIteration_init() < 0) __PYX_ERR(0, 1, __pyx_L1_error) - #endif - /*--- Library function declarations ---*/ - /*--- Threads initialization code ---*/ - #if defined(__PYX_FORCE_INIT_THREADS) && __PYX_FORCE_INIT_THREADS - #ifdef WITH_THREAD /* Python build with threading support? */ - PyEval_InitThreads(); - #endif - #endif - /*--- Module creation code ---*/ - #if CYTHON_PEP489_MULTI_PHASE_INIT - __pyx_m = __pyx_pyinit_module; - Py_INCREF(__pyx_m); - #else - #if PY_MAJOR_VERSION < 3 - __pyx_m = Py_InitModule4("dtls", __pyx_methods, __pyx_k_Copyright_c_2019_Cisco_Systems, 0, PYTHON_API_VERSION); Py_XINCREF(__pyx_m); - #else - __pyx_m = PyModule_Create(&__pyx_moduledef); - #endif - if (unlikely(!__pyx_m)) __PYX_ERR(0, 1, __pyx_L1_error) - #endif - __pyx_d = PyModule_GetDict(__pyx_m); if (unlikely(!__pyx_d)) __PYX_ERR(0, 1, __pyx_L1_error) - Py_INCREF(__pyx_d); - __pyx_b = PyImport_AddModule(__Pyx_BUILTIN_MODULE_NAME); if (unlikely(!__pyx_b)) __PYX_ERR(0, 1, __pyx_L1_error) - Py_INCREF(__pyx_b); - __pyx_cython_runtime = PyImport_AddModule((char *) "cython_runtime"); if (unlikely(!__pyx_cython_runtime)) __PYX_ERR(0, 1, __pyx_L1_error) - Py_INCREF(__pyx_cython_runtime); - if (PyObject_SetAttrString(__pyx_m, "__builtins__", __pyx_b) < 0) __PYX_ERR(0, 1, __pyx_L1_error); - /*--- Initialize various global constants etc. ---*/ - if (__Pyx_InitGlobals() < 0) __PYX_ERR(0, 1, __pyx_L1_error) - #if PY_MAJOR_VERSION < 3 && (__PYX_DEFAULT_STRING_ENCODING_IS_ASCII || __PYX_DEFAULT_STRING_ENCODING_IS_DEFAULT) - if (__Pyx_init_sys_getdefaultencoding_params() < 0) __PYX_ERR(0, 1, __pyx_L1_error) - #endif - if (__pyx_module_is_main_pmercury__protocols__dtls) { - if (PyObject_SetAttr(__pyx_m, __pyx_n_s_name_2, __pyx_n_s_main) < 0) __PYX_ERR(0, 1, __pyx_L1_error) - } - #if PY_MAJOR_VERSION >= 3 - { - PyObject *modules = PyImport_GetModuleDict(); if (unlikely(!modules)) __PYX_ERR(0, 1, __pyx_L1_error) - if (!PyDict_GetItemString(modules, "pmercury.protocols.dtls")) { - if (unlikely(PyDict_SetItemString(modules, "pmercury.protocols.dtls", __pyx_m) < 0)) __PYX_ERR(0, 1, __pyx_L1_error) - } - } - #endif - /*--- Builtin init code ---*/ - if (__Pyx_InitCachedBuiltins() < 0) goto __pyx_L1_error; - /*--- Constants init code ---*/ - if (__Pyx_InitCachedConstants() < 0) goto __pyx_L1_error; - /*--- Global type/function init code ---*/ - (void)__Pyx_modinit_global_init_code(); - (void)__Pyx_modinit_variable_export_code(); - (void)__Pyx_modinit_function_export_code(); - if (unlikely(__Pyx_modinit_type_init_code() != 0)) goto __pyx_L1_error; - (void)__Pyx_modinit_type_import_code(); - (void)__Pyx_modinit_variable_import_code(); - (void)__Pyx_modinit_function_import_code(); - /*--- Execution code ---*/ - #if defined(__Pyx_Generator_USED) || defined(__Pyx_Coroutine_USED) - if (__Pyx_patch_abc() < 0) __PYX_ERR(0, 1, __pyx_L1_error) - #endif - - /* "pmercury/protocols/dtls.pyx":8 - * """ - * - * import os # <<<<<<<<<<<<<< - * import sys - * import json - */ - __pyx_t_1 = __Pyx_Import(__pyx_n_s_os, 0, 0); if (unlikely(!__pyx_t_1)) __PYX_ERR(0, 8, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_1); - if (PyDict_SetItem(__pyx_d, __pyx_n_s_os, __pyx_t_1) < 0) __PYX_ERR(0, 8, __pyx_L1_error) - __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0; - - /* "pmercury/protocols/dtls.pyx":9 - * - * import os - * import sys # <<<<<<<<<<<<<< - * import json - * import operator - */ - __pyx_t_1 = __Pyx_Import(__pyx_n_s_sys, 0, 0); if (unlikely(!__pyx_t_1)) __PYX_ERR(0, 9, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_1); - if (PyDict_SetItem(__pyx_d, __pyx_n_s_sys, __pyx_t_1) < 0) __PYX_ERR(0, 9, __pyx_L1_error) - __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0; - - /* "pmercury/protocols/dtls.pyx":10 - * import os - * import sys - * import json # <<<<<<<<<<<<<< - * import operator - * import functools - */ - __pyx_t_1 = __Pyx_Import(__pyx_n_s_json, 0, 0); if (unlikely(!__pyx_t_1)) __PYX_ERR(0, 10, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_1); - if (PyDict_SetItem(__pyx_d, __pyx_n_s_json, __pyx_t_1) < 0) __PYX_ERR(0, 10, __pyx_L1_error) - __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0; - - /* "pmercury/protocols/dtls.pyx":11 - * import sys - * import json - * import operator # <<<<<<<<<<<<<< - * import functools - * from sys import path - */ - __pyx_t_1 = __Pyx_Import(__pyx_n_s_operator, 0, 0); if (unlikely(!__pyx_t_1)) __PYX_ERR(0, 11, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_1); - if (PyDict_SetItem(__pyx_d, __pyx_n_s_operator, __pyx_t_1) < 0) __PYX_ERR(0, 11, __pyx_L1_error) - __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0; - - /* "pmercury/protocols/dtls.pyx":12 - * import json - * import operator - * import functools # <<<<<<<<<<<<<< - * from sys import path - * - */ - __pyx_t_1 = __Pyx_Import(__pyx_n_s_functools, 0, 0); if (unlikely(!__pyx_t_1)) __PYX_ERR(0, 12, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_1); - if (PyDict_SetItem(__pyx_d, __pyx_n_s_functools, __pyx_t_1) < 0) __PYX_ERR(0, 12, __pyx_L1_error) - __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0; - - /* "pmercury/protocols/dtls.pyx":13 - * import operator - * import functools - * from sys import path # <<<<<<<<<<<<<< - * - * sys.path.append(os.path.dirname(os.path.abspath(__file__))) - */ - __pyx_t_1 = PyList_New(1); if (unlikely(!__pyx_t_1)) __PYX_ERR(0, 13, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_1); - __Pyx_INCREF(__pyx_n_s_path); - __Pyx_GIVEREF(__pyx_n_s_path); - PyList_SET_ITEM(__pyx_t_1, 0, __pyx_n_s_path); - __pyx_t_2 = __Pyx_Import(__pyx_n_s_sys, __pyx_t_1, 0); if (unlikely(!__pyx_t_2)) __PYX_ERR(0, 13, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_2); - __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0; - __pyx_t_1 = __Pyx_ImportFrom(__pyx_t_2, __pyx_n_s_path); if (unlikely(!__pyx_t_1)) __PYX_ERR(0, 13, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_1); - if (PyDict_SetItem(__pyx_d, __pyx_n_s_path, __pyx_t_1) < 0) __PYX_ERR(0, 13, __pyx_L1_error) - __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0; - __Pyx_DECREF(__pyx_t_2); __pyx_t_2 = 0; - - /* "pmercury/protocols/dtls.pyx":15 - * from sys import path - * - * sys.path.append(os.path.dirname(os.path.abspath(__file__))) # <<<<<<<<<<<<<< - * sys.path.append(os.path.dirname(os.path.abspath(__file__))+'/../') - * from pmercury.utils.tls_utils import * - */ - __Pyx_GetModuleGlobalName(__pyx_t_2, __pyx_n_s_sys); if (unlikely(!__pyx_t_2)) __PYX_ERR(0, 15, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_2); - __pyx_t_1 = __Pyx_PyObject_GetAttrStr(__pyx_t_2, __pyx_n_s_path); if (unlikely(!__pyx_t_1)) __PYX_ERR(0, 15, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_1); - __Pyx_DECREF(__pyx_t_2); __pyx_t_2 = 0; - __Pyx_GetModuleGlobalName(__pyx_t_2, __pyx_n_s_os); if (unlikely(!__pyx_t_2)) __PYX_ERR(0, 15, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_2); - __pyx_t_3 = __Pyx_PyObject_GetAttrStr(__pyx_t_2, __pyx_n_s_path); if (unlikely(!__pyx_t_3)) __PYX_ERR(0, 15, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_3); - __Pyx_DECREF(__pyx_t_2); __pyx_t_2 = 0; - __pyx_t_2 = __Pyx_PyObject_GetAttrStr(__pyx_t_3, __pyx_n_s_dirname); if (unlikely(!__pyx_t_2)) __PYX_ERR(0, 15, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_2); - __Pyx_DECREF(__pyx_t_3); __pyx_t_3 = 0; - __Pyx_GetModuleGlobalName(__pyx_t_3, __pyx_n_s_os); if (unlikely(!__pyx_t_3)) __PYX_ERR(0, 15, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_3); - __pyx_t_4 = __Pyx_PyObject_GetAttrStr(__pyx_t_3, __pyx_n_s_path); if (unlikely(!__pyx_t_4)) __PYX_ERR(0, 15, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_4); - __Pyx_DECREF(__pyx_t_3); __pyx_t_3 = 0; - __pyx_t_3 = __Pyx_PyObject_GetAttrStr(__pyx_t_4, __pyx_n_s_abspath); if (unlikely(!__pyx_t_3)) __PYX_ERR(0, 15, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_3); - __Pyx_DECREF(__pyx_t_4); __pyx_t_4 = 0; - __Pyx_GetModuleGlobalName(__pyx_t_4, __pyx_n_s_file); if (unlikely(!__pyx_t_4)) __PYX_ERR(0, 15, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_4); - __pyx_t_5 = __Pyx_PyObject_CallOneArg(__pyx_t_3, __pyx_t_4); if (unlikely(!__pyx_t_5)) __PYX_ERR(0, 15, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_5); - __Pyx_DECREF(__pyx_t_3); __pyx_t_3 = 0; - __Pyx_DECREF(__pyx_t_4); __pyx_t_4 = 0; - __pyx_t_4 = __Pyx_PyObject_CallOneArg(__pyx_t_2, __pyx_t_5); if (unlikely(!__pyx_t_4)) __PYX_ERR(0, 15, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_4); - __Pyx_DECREF(__pyx_t_2); __pyx_t_2 = 0; - __Pyx_DECREF(__pyx_t_5); __pyx_t_5 = 0; - __pyx_t_6 = __Pyx_PyObject_Append(__pyx_t_1, __pyx_t_4); if (unlikely(__pyx_t_6 == ((int)-1))) __PYX_ERR(0, 15, __pyx_L1_error) - __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0; - __Pyx_DECREF(__pyx_t_4); __pyx_t_4 = 0; - - /* "pmercury/protocols/dtls.pyx":16 - * - * sys.path.append(os.path.dirname(os.path.abspath(__file__))) - * sys.path.append(os.path.dirname(os.path.abspath(__file__))+'/../') # <<<<<<<<<<<<<< - * from pmercury.utils.tls_utils import * - * - */ - __Pyx_GetModuleGlobalName(__pyx_t_4, __pyx_n_s_sys); if (unlikely(!__pyx_t_4)) __PYX_ERR(0, 16, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_4); - __pyx_t_1 = __Pyx_PyObject_GetAttrStr(__pyx_t_4, __pyx_n_s_path); if (unlikely(!__pyx_t_1)) __PYX_ERR(0, 16, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_1); - __Pyx_DECREF(__pyx_t_4); __pyx_t_4 = 0; - __Pyx_GetModuleGlobalName(__pyx_t_4, __pyx_n_s_os); if (unlikely(!__pyx_t_4)) __PYX_ERR(0, 16, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_4); - __pyx_t_5 = __Pyx_PyObject_GetAttrStr(__pyx_t_4, __pyx_n_s_path); if (unlikely(!__pyx_t_5)) __PYX_ERR(0, 16, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_5); - __Pyx_DECREF(__pyx_t_4); __pyx_t_4 = 0; - __pyx_t_4 = __Pyx_PyObject_GetAttrStr(__pyx_t_5, __pyx_n_s_dirname); if (unlikely(!__pyx_t_4)) __PYX_ERR(0, 16, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_4); - __Pyx_DECREF(__pyx_t_5); __pyx_t_5 = 0; - __Pyx_GetModuleGlobalName(__pyx_t_5, __pyx_n_s_os); if (unlikely(!__pyx_t_5)) __PYX_ERR(0, 16, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_5); - __pyx_t_2 = __Pyx_PyObject_GetAttrStr(__pyx_t_5, __pyx_n_s_path); if (unlikely(!__pyx_t_2)) __PYX_ERR(0, 16, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_2); - __Pyx_DECREF(__pyx_t_5); __pyx_t_5 = 0; - __pyx_t_5 = __Pyx_PyObject_GetAttrStr(__pyx_t_2, __pyx_n_s_abspath); if (unlikely(!__pyx_t_5)) __PYX_ERR(0, 16, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_5); - __Pyx_DECREF(__pyx_t_2); __pyx_t_2 = 0; - __Pyx_GetModuleGlobalName(__pyx_t_2, __pyx_n_s_file); if (unlikely(!__pyx_t_2)) __PYX_ERR(0, 16, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_2); - __pyx_t_3 = __Pyx_PyObject_CallOneArg(__pyx_t_5, __pyx_t_2); if (unlikely(!__pyx_t_3)) __PYX_ERR(0, 16, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_3); - __Pyx_DECREF(__pyx_t_5); __pyx_t_5 = 0; - __Pyx_DECREF(__pyx_t_2); __pyx_t_2 = 0; - __pyx_t_2 = __Pyx_PyObject_CallOneArg(__pyx_t_4, __pyx_t_3); if (unlikely(!__pyx_t_2)) __PYX_ERR(0, 16, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_2); - __Pyx_DECREF(__pyx_t_4); __pyx_t_4 = 0; - __Pyx_DECREF(__pyx_t_3); __pyx_t_3 = 0; - __pyx_t_3 = PyNumber_Add(__pyx_t_2, __pyx_kp_u__6); if (unlikely(!__pyx_t_3)) __PYX_ERR(0, 16, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_3); - __Pyx_DECREF(__pyx_t_2); __pyx_t_2 = 0; - __pyx_t_6 = __Pyx_PyObject_Append(__pyx_t_1, __pyx_t_3); if (unlikely(__pyx_t_6 == ((int)-1))) __PYX_ERR(0, 16, __pyx_L1_error) - __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0; - __Pyx_DECREF(__pyx_t_3); __pyx_t_3 = 0; - - /* "pmercury/protocols/dtls.pyx":17 - * sys.path.append(os.path.dirname(os.path.abspath(__file__))) - * sys.path.append(os.path.dirname(os.path.abspath(__file__))+'/../') - * from pmercury.utils.tls_utils import * # <<<<<<<<<<<<<< - * - * from cython.operator cimport dereference as deref - */ - __pyx_t_3 = PyList_New(1); if (unlikely(!__pyx_t_3)) __PYX_ERR(0, 17, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_3); - __Pyx_INCREF(__pyx_n_s__7); - __Pyx_GIVEREF(__pyx_n_s__7); - PyList_SET_ITEM(__pyx_t_3, 0, __pyx_n_s__7); - __pyx_t_1 = __Pyx_Import(__pyx_n_s_pmercury_utils_tls_utils, __pyx_t_3, 0); if (unlikely(!__pyx_t_1)) __PYX_ERR(0, 17, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_1); - __Pyx_DECREF(__pyx_t_3); __pyx_t_3 = 0; - if (__pyx_import_star(__pyx_t_1) < 0) __PYX_ERR(0, 17, __pyx_L1_error); - __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0; - - /* "pmercury/protocols/dtls.pyx":30 - * uint16_t htons(uint16_t hostshort) - * - * MAX_CACHED_RESULTS = 2**24 # <<<<<<<<<<<<<< - * - * - */ - if (PyDict_SetItem(__pyx_d, __pyx_n_s_MAX_CACHED_RESULTS, __pyx_int_16777216) < 0) __PYX_ERR(0, 30, __pyx_L1_error) - - /* "pmercury/protocols/dtls.pyx":41 - * - * @staticmethod - * def proto_identify(data, offset, data_len): # <<<<<<<<<<<<<< - * if data_len-offset < 27: - * return False - */ - __pyx_t_1 = PyCFunction_NewEx(&__pyx_mdef_8pmercury_9protocols_4dtls_4DTLS_3proto_identify, NULL, __pyx_n_s_pmercury_protocols_dtls); if (unlikely(!__pyx_t_1)) __PYX_ERR(0, 41, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_1); - if (PyDict_SetItem((PyObject *)__pyx_ptype_8pmercury_9protocols_4dtls_DTLS->tp_dict, __pyx_n_s_proto_identify, __pyx_t_1) < 0) __PYX_ERR(0, 41, __pyx_L1_error) - __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0; - PyType_Modified(__pyx_ptype_8pmercury_9protocols_4dtls_DTLS); - - /* "pmercury/protocols/dtls.pyx":40 - * - * - * @staticmethod # <<<<<<<<<<<<<< - * def proto_identify(data, offset, data_len): - * if data_len-offset < 27: - */ - __Pyx_GetNameInClass(__pyx_t_1, (PyObject *)__pyx_ptype_8pmercury_9protocols_4dtls_DTLS, __pyx_n_s_proto_identify); if (unlikely(!__pyx_t_1)) __PYX_ERR(0, 41, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_1); - __pyx_t_3 = __Pyx_PyObject_CallOneArg(__pyx_builtin_staticmethod, __pyx_t_1); if (unlikely(!__pyx_t_3)) __PYX_ERR(0, 40, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_3); - __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0; - if (PyDict_SetItem((PyObject *)__pyx_ptype_8pmercury_9protocols_4dtls_DTLS->tp_dict, __pyx_n_s_proto_identify, __pyx_t_3) < 0) __PYX_ERR(0, 41, __pyx_L1_error) - __Pyx_DECREF(__pyx_t_3); __pyx_t_3 = 0; - PyType_Modified(__pyx_ptype_8pmercury_9protocols_4dtls_DTLS); - - /* "pmercury/protocols/dtls.pyx":55 - * - * @staticmethod - * def fingerprint(bytes data, unsigned int offset, unsigned int data_len): # <<<<<<<<<<<<<< - * cdef unsigned char *buf = data - * offset += 13 - */ - __pyx_t_3 = PyCFunction_NewEx(&__pyx_mdef_8pmercury_9protocols_4dtls_4DTLS_5fingerprint, NULL, __pyx_n_s_pmercury_protocols_dtls); if (unlikely(!__pyx_t_3)) __PYX_ERR(0, 55, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_3); - if (PyDict_SetItem((PyObject *)__pyx_ptype_8pmercury_9protocols_4dtls_DTLS->tp_dict, __pyx_n_s_fingerprint, __pyx_t_3) < 0) __PYX_ERR(0, 55, __pyx_L1_error) - __Pyx_DECREF(__pyx_t_3); __pyx_t_3 = 0; - PyType_Modified(__pyx_ptype_8pmercury_9protocols_4dtls_DTLS); - - /* "pmercury/protocols/dtls.pyx":54 - * - * - * @staticmethod # <<<<<<<<<<<<<< - * def fingerprint(bytes data, unsigned int offset, unsigned int data_len): - * cdef unsigned char *buf = data - */ - __Pyx_GetNameInClass(__pyx_t_3, (PyObject *)__pyx_ptype_8pmercury_9protocols_4dtls_DTLS, __pyx_n_s_fingerprint); if (unlikely(!__pyx_t_3)) __PYX_ERR(0, 55, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_3); - __pyx_t_1 = __Pyx_PyObject_CallOneArg(__pyx_builtin_staticmethod, __pyx_t_3); if (unlikely(!__pyx_t_1)) __PYX_ERR(0, 54, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_1); - __Pyx_DECREF(__pyx_t_3); __pyx_t_3 = 0; - if (PyDict_SetItem((PyObject *)__pyx_ptype_8pmercury_9protocols_4dtls_DTLS->tp_dict, __pyx_n_s_fingerprint, __pyx_t_1) < 0) __PYX_ERR(0, 55, __pyx_L1_error) - __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0; - PyType_Modified(__pyx_ptype_8pmercury_9protocols_4dtls_DTLS); - - /* "pmercury/protocols/dtls.pyx":135 - * - * - * @functools.lru_cache(maxsize=MAX_CACHED_RESULTS) # <<<<<<<<<<<<<< - * def get_database_entry(self, fp_str, approx_fp_str): - * return None - */ - __Pyx_GetModuleGlobalName(__pyx_t_3, __pyx_n_s_functools); if (unlikely(!__pyx_t_3)) __PYX_ERR(0, 135, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_3); - __pyx_t_2 = __Pyx_PyObject_GetAttrStr(__pyx_t_3, __pyx_n_s_lru_cache); if (unlikely(!__pyx_t_2)) __PYX_ERR(0, 135, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_2); - __Pyx_DECREF(__pyx_t_3); __pyx_t_3 = 0; - __pyx_t_3 = __Pyx_PyDict_NewPresized(1); if (unlikely(!__pyx_t_3)) __PYX_ERR(0, 135, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_3); - __Pyx_GetModuleGlobalName(__pyx_t_4, __pyx_n_s_MAX_CACHED_RESULTS); if (unlikely(!__pyx_t_4)) __PYX_ERR(0, 135, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_4); - if (PyDict_SetItem(__pyx_t_3, __pyx_n_s_maxsize, __pyx_t_4) < 0) __PYX_ERR(0, 135, __pyx_L1_error) - __Pyx_DECREF(__pyx_t_4); __pyx_t_4 = 0; - __pyx_t_4 = __Pyx_PyObject_Call(__pyx_t_2, __pyx_empty_tuple, __pyx_t_3); if (unlikely(!__pyx_t_4)) __PYX_ERR(0, 135, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_4); - __Pyx_DECREF(__pyx_t_2); __pyx_t_2 = 0; - __Pyx_DECREF(__pyx_t_3); __pyx_t_3 = 0; - - /* "pmercury/protocols/dtls.pyx":136 - * - * @functools.lru_cache(maxsize=MAX_CACHED_RESULTS) - * def get_database_entry(self, fp_str, approx_fp_str): # <<<<<<<<<<<<<< - * return None - * - */ - __Pyx_GetNameInClass(__pyx_t_3, (PyObject *)__pyx_ptype_8pmercury_9protocols_4dtls_DTLS, __pyx_n_s_get_database_entry); if (unlikely(!__pyx_t_3)) __PYX_ERR(0, 136, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_3); - __pyx_t_2 = NULL; - if (CYTHON_UNPACK_METHODS && unlikely(PyMethod_Check(__pyx_t_4))) { - __pyx_t_2 = PyMethod_GET_SELF(__pyx_t_4); - if (likely(__pyx_t_2)) { - PyObject* function = PyMethod_GET_FUNCTION(__pyx_t_4); - __Pyx_INCREF(__pyx_t_2); - __Pyx_INCREF(function); - __Pyx_DECREF_SET(__pyx_t_4, function); - } - } - __pyx_t_1 = (__pyx_t_2) ? __Pyx_PyObject_Call2Args(__pyx_t_4, __pyx_t_2, __pyx_t_3) : __Pyx_PyObject_CallOneArg(__pyx_t_4, __pyx_t_3); - __Pyx_XDECREF(__pyx_t_2); __pyx_t_2 = 0; - __Pyx_DECREF(__pyx_t_3); __pyx_t_3 = 0; - if (unlikely(!__pyx_t_1)) __PYX_ERR(0, 135, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_1); - __Pyx_DECREF(__pyx_t_4); __pyx_t_4 = 0; - if (PyDict_SetItem((PyObject *)__pyx_ptype_8pmercury_9protocols_4dtls_DTLS->tp_dict, __pyx_n_s_get_database_entry, __pyx_t_1) < 0) __PYX_ERR(0, 136, __pyx_L1_error) - __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0; - PyType_Modified(__pyx_ptype_8pmercury_9protocols_4dtls_DTLS); - - /* "(tree fragment)":1 - * def __pyx_unpickle_DTLS(__pyx_type, long __pyx_checksum, __pyx_state): # <<<<<<<<<<<<<< - * cdef object __pyx_PickleError - * cdef object __pyx_result - */ - __pyx_t_1 = PyCFunction_NewEx(&__pyx_mdef_8pmercury_9protocols_4dtls_1__pyx_unpickle_DTLS, NULL, __pyx_n_s_pmercury_protocols_dtls); if (unlikely(!__pyx_t_1)) __PYX_ERR(1, 1, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_1); - if (PyDict_SetItem(__pyx_d, __pyx_n_s_pyx_unpickle_DTLS, __pyx_t_1) < 0) __PYX_ERR(1, 1, __pyx_L1_error) - __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0; - - /* "pmercury/protocols/dtls.pyx":1 - * #cython: language_level=3, wraparound=False, cdivision=True, infer_types=True, initializedcheck=False, c_string_type=bytes, embedsignature=False, nonecheck=False # <<<<<<<<<<<<<< - * - * """ - */ - __pyx_t_1 = __Pyx_PyDict_NewPresized(0); if (unlikely(!__pyx_t_1)) __PYX_ERR(0, 1, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_1); - if (PyDict_SetItem(__pyx_d, __pyx_n_s_test, __pyx_t_1) < 0) __PYX_ERR(0, 1, __pyx_L1_error) - __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0; - - /*--- Wrapped vars code ---*/ - - goto __pyx_L0; - __pyx_L1_error:; - __Pyx_XDECREF(__pyx_t_1); - __Pyx_XDECREF(__pyx_t_2); - __Pyx_XDECREF(__pyx_t_3); - __Pyx_XDECREF(__pyx_t_4); - __Pyx_XDECREF(__pyx_t_5); - if (__pyx_m) { - if (__pyx_d) { - __Pyx_AddTraceback("init pmercury.protocols.dtls", __pyx_clineno, __pyx_lineno, __pyx_filename); - } - Py_CLEAR(__pyx_m); - } else if (!PyErr_Occurred()) { - PyErr_SetString(PyExc_ImportError, "init pmercury.protocols.dtls"); - } - __pyx_L0:; - __Pyx_RefNannyFinishContext(); - #if CYTHON_PEP489_MULTI_PHASE_INIT - return (__pyx_m != NULL) ? 0 : -1; - #elif PY_MAJOR_VERSION >= 3 - return __pyx_m; - #else - return; - #endif -} - -/* --- Runtime support code --- */ -/* Refnanny */ -#if CYTHON_REFNANNY -static __Pyx_RefNannyAPIStruct *__Pyx_RefNannyImportAPI(const char *modname) { - PyObject *m = NULL, *p = NULL; - void *r = NULL; - m = PyImport_ImportModule(modname); - if (!m) goto end; - p = PyObject_GetAttrString(m, "RefNannyAPI"); - if (!p) goto end; - r = PyLong_AsVoidPtr(p); -end: - Py_XDECREF(p); - Py_XDECREF(m); - return (__Pyx_RefNannyAPIStruct *)r; -} -#endif - -/* PyObjectGetAttrStr */ -#if CYTHON_USE_TYPE_SLOTS -static CYTHON_INLINE PyObject* __Pyx_PyObject_GetAttrStr(PyObject* obj, PyObject* attr_name) { - PyTypeObject* tp = Py_TYPE(obj); - if (likely(tp->tp_getattro)) - return tp->tp_getattro(obj, attr_name); -#if PY_MAJOR_VERSION < 3 - if (likely(tp->tp_getattr)) - return tp->tp_getattr(obj, PyString_AS_STRING(attr_name)); -#endif - return PyObject_GetAttr(obj, attr_name); -} -#endif - -/* GetBuiltinName */ -static PyObject *__Pyx_GetBuiltinName(PyObject *name) { - PyObject* result = __Pyx_PyObject_GetAttrStr(__pyx_b, name); - if (unlikely(!result)) { - PyErr_Format(PyExc_NameError, -#if PY_MAJOR_VERSION >= 3 - "name '%U' is not defined", name); -#else - "name '%.200s' is not defined", PyString_AS_STRING(name)); -#endif - } - return result; -} - -/* RaiseDoubleKeywords */ -static void __Pyx_RaiseDoubleKeywordsError( - const char* func_name, - PyObject* kw_name) -{ - PyErr_Format(PyExc_TypeError, - #if PY_MAJOR_VERSION >= 3 - "%s() got multiple values for keyword argument '%U'", func_name, kw_name); - #else - "%s() got multiple values for keyword argument '%s'", func_name, - PyString_AsString(kw_name)); - #endif -} - -/* ParseKeywords */ -static int __Pyx_ParseOptionalKeywords( - PyObject *kwds, - PyObject **argnames[], - PyObject *kwds2, - PyObject *values[], - Py_ssize_t num_pos_args, - const char* function_name) -{ - PyObject *key = 0, *value = 0; - Py_ssize_t pos = 0; - PyObject*** name; - PyObject*** first_kw_arg = argnames + num_pos_args; - while (PyDict_Next(kwds, &pos, &key, &value)) { - name = first_kw_arg; - while (*name && (**name != key)) name++; - if (*name) { - values[name-argnames] = value; - continue; - } - name = first_kw_arg; - #if PY_MAJOR_VERSION < 3 - if (likely(PyString_CheckExact(key)) || likely(PyString_Check(key))) { - while (*name) { - if ((CYTHON_COMPILING_IN_PYPY || PyString_GET_SIZE(**name) == PyString_GET_SIZE(key)) - && _PyString_Eq(**name, key)) { - values[name-argnames] = value; - break; - } - name++; - } - if (*name) continue; - else { - PyObject*** argname = argnames; - while (argname != first_kw_arg) { - if ((**argname == key) || ( - (CYTHON_COMPILING_IN_PYPY || PyString_GET_SIZE(**argname) == PyString_GET_SIZE(key)) - && _PyString_Eq(**argname, key))) { - goto arg_passed_twice; - } - argname++; - } - } - } else - #endif - if (likely(PyUnicode_Check(key))) { - while (*name) { - int cmp = (**name == key) ? 0 : - #if !CYTHON_COMPILING_IN_PYPY && PY_MAJOR_VERSION >= 3 - (PyUnicode_GET_SIZE(**name) != PyUnicode_GET_SIZE(key)) ? 1 : - #endif - PyUnicode_Compare(**name, key); - if (cmp < 0 && unlikely(PyErr_Occurred())) goto bad; - if (cmp == 0) { - values[name-argnames] = value; - break; - } - name++; - } - if (*name) continue; - else { - PyObject*** argname = argnames; - while (argname != first_kw_arg) { - int cmp = (**argname == key) ? 0 : - #if !CYTHON_COMPILING_IN_PYPY && PY_MAJOR_VERSION >= 3 - (PyUnicode_GET_SIZE(**argname) != PyUnicode_GET_SIZE(key)) ? 1 : - #endif - PyUnicode_Compare(**argname, key); - if (cmp < 0 && unlikely(PyErr_Occurred())) goto bad; - if (cmp == 0) goto arg_passed_twice; - argname++; - } - } - } else - goto invalid_keyword_type; - if (kwds2) { - if (unlikely(PyDict_SetItem(kwds2, key, value))) goto bad; - } else { - goto invalid_keyword; - } - } - return 0; -arg_passed_twice: - __Pyx_RaiseDoubleKeywordsError(function_name, key); - goto bad; -invalid_keyword_type: - PyErr_Format(PyExc_TypeError, - "%.200s() keywords must be strings", function_name); - goto bad; -invalid_keyword: - PyErr_Format(PyExc_TypeError, - #if PY_MAJOR_VERSION < 3 - "%.200s() got an unexpected keyword argument '%.200s'", - function_name, PyString_AsString(key)); - #else - "%s() got an unexpected keyword argument '%U'", - function_name, key); - #endif -bad: - return -1; -} - -/* RaiseArgTupleInvalid */ -static void __Pyx_RaiseArgtupleInvalid( - const char* func_name, - int exact, - Py_ssize_t num_min, - Py_ssize_t num_max, - Py_ssize_t num_found) -{ - Py_ssize_t num_expected; - const char *more_or_less; - if (num_found < num_min) { - num_expected = num_min; - more_or_less = "at least"; - } else { - num_expected = num_max; - more_or_less = "at most"; - } - if (exact) { - more_or_less = "exactly"; - } - PyErr_Format(PyExc_TypeError, - "%.200s() takes %.8s %" CYTHON_FORMAT_SSIZE_T "d positional argument%.1s (%" CYTHON_FORMAT_SSIZE_T "d given)", - func_name, more_or_less, num_expected, - (num_expected == 1) ? "" : "s", num_found); -} - -/* PyIntCompare */ -static CYTHON_INLINE PyObject* __Pyx_PyInt_EqObjC(PyObject *op1, PyObject *op2, CYTHON_UNUSED long intval, CYTHON_UNUSED long inplace) { - if (op1 == op2) { - Py_RETURN_TRUE; - } - #if PY_MAJOR_VERSION < 3 - if (likely(PyInt_CheckExact(op1))) { - const long b = intval; - long a = PyInt_AS_LONG(op1); - if (a == b) Py_RETURN_TRUE; else Py_RETURN_FALSE; - } - #endif - #if CYTHON_USE_PYLONG_INTERNALS - if (likely(PyLong_CheckExact(op1))) { - int unequal; - unsigned long uintval; - Py_ssize_t size = Py_SIZE(op1); - const digit* digits = ((PyLongObject*)op1)->ob_digit; - if (intval == 0) { - if (size == 0) Py_RETURN_TRUE; else Py_RETURN_FALSE; - } else if (intval < 0) { - if (size >= 0) - Py_RETURN_FALSE; - intval = -intval; - size = -size; - } else { - if (size <= 0) - Py_RETURN_FALSE; - } - uintval = (unsigned long) intval; -#if PyLong_SHIFT * 4 < SIZEOF_LONG*8 - if (uintval >> (PyLong_SHIFT * 4)) { - unequal = (size != 5) || (digits[0] != (uintval & (unsigned long) PyLong_MASK)) - | (digits[1] != ((uintval >> (1 * PyLong_SHIFT)) & (unsigned long) PyLong_MASK)) | (digits[2] != ((uintval >> (2 * PyLong_SHIFT)) & (unsigned long) PyLong_MASK)) | (digits[3] != ((uintval >> (3 * PyLong_SHIFT)) & (unsigned long) PyLong_MASK)) | (digits[4] != ((uintval >> (4 * PyLong_SHIFT)) & (unsigned long) PyLong_MASK)); - } else -#endif -#if PyLong_SHIFT * 3 < SIZEOF_LONG*8 - if (uintval >> (PyLong_SHIFT * 3)) { - unequal = (size != 4) || (digits[0] != (uintval & (unsigned long) PyLong_MASK)) - | (digits[1] != ((uintval >> (1 * PyLong_SHIFT)) & (unsigned long) PyLong_MASK)) | (digits[2] != ((uintval >> (2 * PyLong_SHIFT)) & (unsigned long) PyLong_MASK)) | (digits[3] != ((uintval >> (3 * PyLong_SHIFT)) & (unsigned long) PyLong_MASK)); - } else -#endif -#if PyLong_SHIFT * 2 < SIZEOF_LONG*8 - if (uintval >> (PyLong_SHIFT * 2)) { - unequal = (size != 3) || (digits[0] != (uintval & (unsigned long) PyLong_MASK)) - | (digits[1] != ((uintval >> (1 * PyLong_SHIFT)) & (unsigned long) PyLong_MASK)) | (digits[2] != ((uintval >> (2 * PyLong_SHIFT)) & (unsigned long) PyLong_MASK)); - } else -#endif -#if PyLong_SHIFT * 1 < SIZEOF_LONG*8 - if (uintval >> (PyLong_SHIFT * 1)) { - unequal = (size != 2) || (digits[0] != (uintval & (unsigned long) PyLong_MASK)) - | (digits[1] != ((uintval >> (1 * PyLong_SHIFT)) & (unsigned long) PyLong_MASK)); - } else -#endif - unequal = (size != 1) || (((unsigned long) digits[0]) != (uintval & (unsigned long) PyLong_MASK)); - if (unequal == 0) Py_RETURN_TRUE; else Py_RETURN_FALSE; - } - #endif - if (PyFloat_CheckExact(op1)) { - const long b = intval; - double a = PyFloat_AS_DOUBLE(op1); - if ((double)a == (double)b) Py_RETURN_TRUE; else Py_RETURN_FALSE; - } - return ( - PyObject_RichCompare(op1, op2, Py_EQ)); -} - -/* GetItemInt */ -static PyObject *__Pyx_GetItemInt_Generic(PyObject *o, PyObject* j) { - PyObject *r; - if (!j) return NULL; - r = PyObject_GetItem(o, j); - Py_DECREF(j); - return r; -} -static CYTHON_INLINE PyObject *__Pyx_GetItemInt_List_Fast(PyObject *o, Py_ssize_t i, - CYTHON_NCP_UNUSED int wraparound, - CYTHON_NCP_UNUSED int boundscheck) { -#if CYTHON_ASSUME_SAFE_MACROS && !CYTHON_AVOID_BORROWED_REFS - Py_ssize_t wrapped_i = i; - if (wraparound & unlikely(i < 0)) { - wrapped_i += PyList_GET_SIZE(o); - } - if ((!boundscheck) || likely(__Pyx_is_valid_index(wrapped_i, PyList_GET_SIZE(o)))) { - PyObject *r = PyList_GET_ITEM(o, wrapped_i); - Py_INCREF(r); - return r; - } - return __Pyx_GetItemInt_Generic(o, PyInt_FromSsize_t(i)); -#else - return PySequence_GetItem(o, i); -#endif -} -static CYTHON_INLINE PyObject *__Pyx_GetItemInt_Tuple_Fast(PyObject *o, Py_ssize_t i, - CYTHON_NCP_UNUSED int wraparound, - CYTHON_NCP_UNUSED int boundscheck) { -#if CYTHON_ASSUME_SAFE_MACROS && !CYTHON_AVOID_BORROWED_REFS - Py_ssize_t wrapped_i = i; - if (wraparound & unlikely(i < 0)) { - wrapped_i += PyTuple_GET_SIZE(o); - } - if ((!boundscheck) || likely(__Pyx_is_valid_index(wrapped_i, PyTuple_GET_SIZE(o)))) { - PyObject *r = PyTuple_GET_ITEM(o, wrapped_i); - Py_INCREF(r); - return r; - } - return __Pyx_GetItemInt_Generic(o, PyInt_FromSsize_t(i)); -#else - return PySequence_GetItem(o, i); -#endif -} -static CYTHON_INLINE PyObject *__Pyx_GetItemInt_Fast(PyObject *o, Py_ssize_t i, int is_list, - CYTHON_NCP_UNUSED int wraparound, - CYTHON_NCP_UNUSED int boundscheck) { -#if CYTHON_ASSUME_SAFE_MACROS && !CYTHON_AVOID_BORROWED_REFS && CYTHON_USE_TYPE_SLOTS - if (is_list || PyList_CheckExact(o)) { - Py_ssize_t n = ((!wraparound) | likely(i >= 0)) ? i : i + PyList_GET_SIZE(o); - if ((!boundscheck) || (likely(__Pyx_is_valid_index(n, PyList_GET_SIZE(o))))) { - PyObject *r = PyList_GET_ITEM(o, n); - Py_INCREF(r); - return r; - } - } - else if (PyTuple_CheckExact(o)) { - Py_ssize_t n = ((!wraparound) | likely(i >= 0)) ? i : i + PyTuple_GET_SIZE(o); - if ((!boundscheck) || likely(__Pyx_is_valid_index(n, PyTuple_GET_SIZE(o)))) { - PyObject *r = PyTuple_GET_ITEM(o, n); - Py_INCREF(r); - return r; - } - } else { - PySequenceMethods *m = Py_TYPE(o)->tp_as_sequence; - if (likely(m && m->sq_item)) { - if (wraparound && unlikely(i < 0) && likely(m->sq_length)) { - Py_ssize_t l = m->sq_length(o); - if (likely(l >= 0)) { - i += l; - } else { - if (!PyErr_ExceptionMatches(PyExc_OverflowError)) - return NULL; - PyErr_Clear(); - } - } - return m->sq_item(o, i); - } - } -#else - if (is_list || PySequence_Check(o)) { - return PySequence_GetItem(o, i); - } -#endif - return __Pyx_GetItemInt_Generic(o, PyInt_FromSsize_t(i)); -} - -/* ObjectGetItem */ -#if CYTHON_USE_TYPE_SLOTS -static PyObject *__Pyx_PyObject_GetIndex(PyObject *obj, PyObject* index) { - PyObject *runerr; - Py_ssize_t key_value; - PySequenceMethods *m = Py_TYPE(obj)->tp_as_sequence; - if (unlikely(!(m && m->sq_item))) { - PyErr_Format(PyExc_TypeError, "'%.200s' object is not subscriptable", Py_TYPE(obj)->tp_name); - return NULL; - } - key_value = __Pyx_PyIndex_AsSsize_t(index); - if (likely(key_value != -1 || !(runerr = PyErr_Occurred()))) { - return __Pyx_GetItemInt_Fast(obj, key_value, 0, 1, 1); - } - if (PyErr_GivenExceptionMatches(runerr, PyExc_OverflowError)) { - PyErr_Clear(); - PyErr_Format(PyExc_IndexError, "cannot fit '%.200s' into an index-sized integer", Py_TYPE(index)->tp_name); - } - return NULL; -} -static PyObject *__Pyx_PyObject_GetItem(PyObject *obj, PyObject* key) { - PyMappingMethods *m = Py_TYPE(obj)->tp_as_mapping; - if (likely(m && m->mp_subscript)) { - return m->mp_subscript(obj, key); - } - return __Pyx_PyObject_GetIndex(obj, key); -} -#endif - -/* PyIntBinop */ -#if !CYTHON_COMPILING_IN_PYPY -static PyObject* __Pyx_PyInt_AddObjC(PyObject *op1, PyObject *op2, CYTHON_UNUSED long intval, int inplace, int zerodivision_check) { - (void)inplace; - (void)zerodivision_check; - #if PY_MAJOR_VERSION < 3 - if (likely(PyInt_CheckExact(op1))) { - const long b = intval; - long x; - long a = PyInt_AS_LONG(op1); - x = (long)((unsigned long)a + b); - if (likely((x^a) >= 0 || (x^b) >= 0)) - return PyInt_FromLong(x); - return PyLong_Type.tp_as_number->nb_add(op1, op2); - } - #endif - #if CYTHON_USE_PYLONG_INTERNALS - if (likely(PyLong_CheckExact(op1))) { - const long b = intval; - long a, x; -#ifdef HAVE_LONG_LONG - const PY_LONG_LONG llb = intval; - PY_LONG_LONG lla, llx; -#endif - const digit* digits = ((PyLongObject*)op1)->ob_digit; - const Py_ssize_t size = Py_SIZE(op1); - if (likely(__Pyx_sst_abs(size) <= 1)) { - a = likely(size) ? digits[0] : 0; - if (size == -1) a = -a; - } else { - switch (size) { - case -2: - if (8 * sizeof(long) - 1 > 2 * PyLong_SHIFT) { - a = -(long) (((((unsigned long)digits[1]) << PyLong_SHIFT) | (unsigned long)digits[0])); - break; -#ifdef HAVE_LONG_LONG - } else if (8 * sizeof(PY_LONG_LONG) - 1 > 2 * PyLong_SHIFT) { - lla = -(PY_LONG_LONG) (((((unsigned PY_LONG_LONG)digits[1]) << PyLong_SHIFT) | (unsigned PY_LONG_LONG)digits[0])); - goto long_long; -#endif - } - CYTHON_FALLTHROUGH; - case 2: - if (8 * sizeof(long) - 1 > 2 * PyLong_SHIFT) { - a = (long) (((((unsigned long)digits[1]) << PyLong_SHIFT) | (unsigned long)digits[0])); - break; -#ifdef HAVE_LONG_LONG - } else if (8 * sizeof(PY_LONG_LONG) - 1 > 2 * PyLong_SHIFT) { - lla = (PY_LONG_LONG) (((((unsigned PY_LONG_LONG)digits[1]) << PyLong_SHIFT) | (unsigned PY_LONG_LONG)digits[0])); - goto long_long; -#endif - } - CYTHON_FALLTHROUGH; - case -3: - if (8 * sizeof(long) - 1 > 3 * PyLong_SHIFT) { - a = -(long) (((((((unsigned long)digits[2]) << PyLong_SHIFT) | (unsigned long)digits[1]) << PyLong_SHIFT) | (unsigned long)digits[0])); - break; -#ifdef HAVE_LONG_LONG - } else if (8 * sizeof(PY_LONG_LONG) - 1 > 3 * PyLong_SHIFT) { - lla = -(PY_LONG_LONG) (((((((unsigned PY_LONG_LONG)digits[2]) << PyLong_SHIFT) | (unsigned PY_LONG_LONG)digits[1]) << PyLong_SHIFT) | (unsigned PY_LONG_LONG)digits[0])); - goto long_long; -#endif - } - CYTHON_FALLTHROUGH; - case 3: - if (8 * sizeof(long) - 1 > 3 * PyLong_SHIFT) { - a = (long) (((((((unsigned long)digits[2]) << PyLong_SHIFT) | (unsigned long)digits[1]) << PyLong_SHIFT) | (unsigned long)digits[0])); - break; -#ifdef HAVE_LONG_LONG - } else if (8 * sizeof(PY_LONG_LONG) - 1 > 3 * PyLong_SHIFT) { - lla = (PY_LONG_LONG) (((((((unsigned PY_LONG_LONG)digits[2]) << PyLong_SHIFT) | (unsigned PY_LONG_LONG)digits[1]) << PyLong_SHIFT) | (unsigned PY_LONG_LONG)digits[0])); - goto long_long; -#endif - } - CYTHON_FALLTHROUGH; - case -4: - if (8 * sizeof(long) - 1 > 4 * PyLong_SHIFT) { - a = -(long) (((((((((unsigned long)digits[3]) << PyLong_SHIFT) | (unsigned long)digits[2]) << PyLong_SHIFT) | (unsigned long)digits[1]) << PyLong_SHIFT) | (unsigned long)digits[0])); - break; -#ifdef HAVE_LONG_LONG - } else if (8 * sizeof(PY_LONG_LONG) - 1 > 4 * PyLong_SHIFT) { - lla = -(PY_LONG_LONG) (((((((((unsigned PY_LONG_LONG)digits[3]) << PyLong_SHIFT) | (unsigned PY_LONG_LONG)digits[2]) << PyLong_SHIFT) | (unsigned PY_LONG_LONG)digits[1]) << PyLong_SHIFT) | (unsigned PY_LONG_LONG)digits[0])); - goto long_long; -#endif - } - CYTHON_FALLTHROUGH; - case 4: - if (8 * sizeof(long) - 1 > 4 * PyLong_SHIFT) { - a = (long) (((((((((unsigned long)digits[3]) << PyLong_SHIFT) | (unsigned long)digits[2]) << PyLong_SHIFT) | (unsigned long)digits[1]) << PyLong_SHIFT) | (unsigned long)digits[0])); - break; -#ifdef HAVE_LONG_LONG - } else if (8 * sizeof(PY_LONG_LONG) - 1 > 4 * PyLong_SHIFT) { - lla = (PY_LONG_LONG) (((((((((unsigned PY_LONG_LONG)digits[3]) << PyLong_SHIFT) | (unsigned PY_LONG_LONG)digits[2]) << PyLong_SHIFT) | (unsigned PY_LONG_LONG)digits[1]) << PyLong_SHIFT) | (unsigned PY_LONG_LONG)digits[0])); - goto long_long; -#endif - } - CYTHON_FALLTHROUGH; - default: return PyLong_Type.tp_as_number->nb_add(op1, op2); - } - } - x = a + b; - return PyLong_FromLong(x); -#ifdef HAVE_LONG_LONG - long_long: - llx = lla + llb; - return PyLong_FromLongLong(llx); -#endif - - - } - #endif - if (PyFloat_CheckExact(op1)) { - const long b = intval; - double a = PyFloat_AS_DOUBLE(op1); - double result; - PyFPE_START_PROTECT("add", return NULL) - result = ((double)a) + (double)b; - PyFPE_END_PROTECT(result) - return PyFloat_FromDouble(result); - } - return (inplace ? PyNumber_InPlaceAdd : PyNumber_Add)(op1, op2); -} -#endif - -/* ArgTypeTest */ -static int __Pyx__ArgTypeTest(PyObject *obj, PyTypeObject *type, const char *name, int exact) -{ - if (unlikely(!type)) { - PyErr_SetString(PyExc_SystemError, "Missing type object"); - return 0; - } - else if (exact) { - #if PY_MAJOR_VERSION == 2 - if ((type == &PyBaseString_Type) && likely(__Pyx_PyBaseString_CheckExact(obj))) return 1; - #endif - } - else { - if (likely(__Pyx_TypeCheck(obj, type))) return 1; - } - PyErr_Format(PyExc_TypeError, - "Argument '%.200s' has incorrect type (expected %.200s, got %.200s)", - name, type->tp_name, Py_TYPE(obj)->tp_name); - return 0; -} - -/* CIntToDigits */ -static const char DIGIT_PAIRS_10[2*10*10+1] = { - "00010203040506070809" - "10111213141516171819" - "20212223242526272829" - "30313233343536373839" - "40414243444546474849" - "50515253545556575859" - "60616263646566676869" - "70717273747576777879" - "80818283848586878889" - "90919293949596979899" -}; -static const char DIGIT_PAIRS_8[2*8*8+1] = { - "0001020304050607" - "1011121314151617" - "2021222324252627" - "3031323334353637" - "4041424344454647" - "5051525354555657" - "6061626364656667" - "7071727374757677" -}; -static const char DIGITS_HEX[2*16+1] = { - "0123456789abcdef" - "0123456789ABCDEF" -}; - -/* BuildPyUnicode */ -static PyObject* __Pyx_PyUnicode_BuildFromAscii(Py_ssize_t ulength, char* chars, int clength, - int prepend_sign, char padding_char) { - PyObject *uval; - Py_ssize_t uoffset = ulength - clength; -#if CYTHON_USE_UNICODE_INTERNALS - Py_ssize_t i; -#if CYTHON_PEP393_ENABLED - void *udata; - uval = PyUnicode_New(ulength, 127); - if (unlikely(!uval)) return NULL; - udata = PyUnicode_DATA(uval); -#else - Py_UNICODE *udata; - uval = PyUnicode_FromUnicode(NULL, ulength); - if (unlikely(!uval)) return NULL; - udata = PyUnicode_AS_UNICODE(uval); -#endif - if (uoffset > 0) { - i = 0; - if (prepend_sign) { - __Pyx_PyUnicode_WRITE(PyUnicode_1BYTE_KIND, udata, 0, '-'); - i++; - } - for (; i < uoffset; i++) { - __Pyx_PyUnicode_WRITE(PyUnicode_1BYTE_KIND, udata, i, padding_char); - } - } - for (i=0; i < clength; i++) { - __Pyx_PyUnicode_WRITE(PyUnicode_1BYTE_KIND, udata, uoffset+i, chars[i]); - } -#else - { - PyObject *sign = NULL, *padding = NULL; - uval = NULL; - if (uoffset > 0) { - prepend_sign = !!prepend_sign; - if (uoffset > prepend_sign) { - padding = PyUnicode_FromOrdinal(padding_char); - if (likely(padding) && uoffset > prepend_sign + 1) { - PyObject *tmp; - PyObject *repeat = PyInt_FromSize_t(uoffset - prepend_sign); - if (unlikely(!repeat)) goto done_or_error; - tmp = PyNumber_Multiply(padding, repeat); - Py_DECREF(repeat); - Py_DECREF(padding); - padding = tmp; - } - if (unlikely(!padding)) goto done_or_error; - } - if (prepend_sign) { - sign = PyUnicode_FromOrdinal('-'); - if (unlikely(!sign)) goto done_or_error; - } - } - uval = PyUnicode_DecodeASCII(chars, clength, NULL); - if (likely(uval) && padding) { - PyObject *tmp = PyNumber_Add(padding, uval); - Py_DECREF(uval); - uval = tmp; - } - if (likely(uval) && sign) { - PyObject *tmp = PyNumber_Add(sign, uval); - Py_DECREF(uval); - uval = tmp; - } -done_or_error: - Py_XDECREF(padding); - Py_XDECREF(sign); - } -#endif - return uval; -} - -/* CIntToPyUnicode */ -#ifdef _MSC_VER - #ifndef _MSC_STDINT_H_ - #if _MSC_VER < 1300 - typedef unsigned short uint16_t; - #else - typedef unsigned __int16 uint16_t; - #endif - #endif -#else - #include -#endif -#if defined(__GNUC__) && (__GNUC__ > 4 || (__GNUC__ == 4 && __GNUC_MINOR__ >= 6)) -#define GCC_DIAGNOSTIC -#endif -static CYTHON_INLINE PyObject* __Pyx_PyUnicode_From_unsigned_char(unsigned char value, Py_ssize_t width, char padding_char, char format_char) { - char digits[sizeof(unsigned char)*3+2]; - char *dpos, *end = digits + sizeof(unsigned char)*3+2; - const char *hex_digits = DIGITS_HEX; - Py_ssize_t length, ulength; - int prepend_sign, last_one_off; - unsigned char remaining; -#ifdef GCC_DIAGNOSTIC -#pragma GCC diagnostic push -#pragma GCC diagnostic ignored "-Wconversion" -#endif - const unsigned char neg_one = (unsigned char) -1, const_zero = (unsigned char) 0; -#ifdef GCC_DIAGNOSTIC -#pragma GCC diagnostic pop -#endif - const int is_unsigned = neg_one > const_zero; - if (format_char == 'X') { - hex_digits += 16; - format_char = 'x'; - } - remaining = value; - last_one_off = 0; - dpos = end; - do { - int digit_pos; - switch (format_char) { - case 'o': - digit_pos = abs((int)(remaining % (8*8))); - remaining = (unsigned char) (remaining / (8*8)); - dpos -= 2; - *(uint16_t*)dpos = ((const uint16_t*)DIGIT_PAIRS_8)[digit_pos]; - last_one_off = (digit_pos < 8); - break; - case 'd': - digit_pos = abs((int)(remaining % (10*10))); - remaining = (unsigned char) (remaining / (10*10)); - dpos -= 2; - *(uint16_t*)dpos = ((const uint16_t*)DIGIT_PAIRS_10)[digit_pos]; - last_one_off = (digit_pos < 10); - break; - case 'x': - *(--dpos) = hex_digits[abs((int)(remaining % 16))]; - remaining = (unsigned char) (remaining / 16); - break; - default: - assert(0); - break; - } - } while (unlikely(remaining != 0)); - if (last_one_off) { - assert(*dpos == '0'); - dpos++; - } - length = end - dpos; - ulength = length; - prepend_sign = 0; - if (!is_unsigned && value <= neg_one) { - if (padding_char == ' ' || width <= length + 1) { - *(--dpos) = '-'; - ++length; - } else { - prepend_sign = 1; - } - ++ulength; - } - if (width > ulength) { - ulength = width; - } - if (ulength == 1) { - return PyUnicode_FromOrdinal(*dpos); - } - return __Pyx_PyUnicode_BuildFromAscii(ulength, dpos, (int) length, prepend_sign, padding_char); -} - -/* JoinPyUnicode */ -static PyObject* __Pyx_PyUnicode_Join(PyObject* value_tuple, Py_ssize_t value_count, Py_ssize_t result_ulength, - CYTHON_UNUSED Py_UCS4 max_char) { -#if CYTHON_USE_UNICODE_INTERNALS && CYTHON_ASSUME_SAFE_MACROS && !CYTHON_AVOID_BORROWED_REFS - PyObject *result_uval; - int result_ukind; - Py_ssize_t i, char_pos; - void *result_udata; -#if CYTHON_PEP393_ENABLED - result_uval = PyUnicode_New(result_ulength, max_char); - if (unlikely(!result_uval)) return NULL; - result_ukind = (max_char <= 255) ? PyUnicode_1BYTE_KIND : (max_char <= 65535) ? PyUnicode_2BYTE_KIND : PyUnicode_4BYTE_KIND; - result_udata = PyUnicode_DATA(result_uval); -#else - result_uval = PyUnicode_FromUnicode(NULL, result_ulength); - if (unlikely(!result_uval)) return NULL; - result_ukind = sizeof(Py_UNICODE); - result_udata = PyUnicode_AS_UNICODE(result_uval); -#endif - char_pos = 0; - for (i=0; i < value_count; i++) { - int ukind; - Py_ssize_t ulength; - void *udata; - PyObject *uval = PyTuple_GET_ITEM(value_tuple, i); - if (unlikely(__Pyx_PyUnicode_READY(uval))) - goto bad; - ulength = __Pyx_PyUnicode_GET_LENGTH(uval); - if (unlikely(!ulength)) - continue; - if (unlikely(char_pos + ulength < 0)) - goto overflow; - ukind = __Pyx_PyUnicode_KIND(uval); - udata = __Pyx_PyUnicode_DATA(uval); - if (!CYTHON_PEP393_ENABLED || ukind == result_ukind) { - memcpy((char *)result_udata + char_pos * result_ukind, udata, (size_t) (ulength * result_ukind)); - } else { - #if CYTHON_COMPILING_IN_CPYTHON && PY_VERSION_HEX >= 0x030300F0 || defined(_PyUnicode_FastCopyCharacters) - _PyUnicode_FastCopyCharacters(result_uval, char_pos, uval, 0, ulength); - #else - Py_ssize_t j; - for (j=0; j < ulength; j++) { - Py_UCS4 uchar = __Pyx_PyUnicode_READ(ukind, udata, j); - __Pyx_PyUnicode_WRITE(result_ukind, result_udata, char_pos+j, uchar); - } - #endif - } - char_pos += ulength; - } - return result_uval; -overflow: - PyErr_SetString(PyExc_OverflowError, "join() result is too long for a Python string"); -bad: - Py_DECREF(result_uval); - return NULL; -#else - result_ulength++; - value_count++; - return PyUnicode_Join(__pyx_empty_unicode, value_tuple); -#endif -} - -/* PyDictVersioning */ -#if CYTHON_USE_DICT_VERSIONS && CYTHON_USE_TYPE_SLOTS -static CYTHON_INLINE PY_UINT64_T __Pyx_get_tp_dict_version(PyObject *obj) { - PyObject *dict = Py_TYPE(obj)->tp_dict; - return likely(dict) ? __PYX_GET_DICT_VERSION(dict) : 0; -} -static CYTHON_INLINE PY_UINT64_T __Pyx_get_object_dict_version(PyObject *obj) { - PyObject **dictptr = NULL; - Py_ssize_t offset = Py_TYPE(obj)->tp_dictoffset; - if (offset) { -#if CYTHON_COMPILING_IN_CPYTHON - dictptr = (likely(offset > 0)) ? (PyObject **) ((char *)obj + offset) : _PyObject_GetDictPtr(obj); -#else - dictptr = _PyObject_GetDictPtr(obj); -#endif - } - return (dictptr && *dictptr) ? __PYX_GET_DICT_VERSION(*dictptr) : 0; -} -static CYTHON_INLINE int __Pyx_object_dict_version_matches(PyObject* obj, PY_UINT64_T tp_dict_version, PY_UINT64_T obj_dict_version) { - PyObject *dict = Py_TYPE(obj)->tp_dict; - if (unlikely(!dict) || unlikely(tp_dict_version != __PYX_GET_DICT_VERSION(dict))) - return 0; - return obj_dict_version == __Pyx_get_object_dict_version(obj); -} -#endif - -/* GetModuleGlobalName */ -#if CYTHON_USE_DICT_VERSIONS -static PyObject *__Pyx__GetModuleGlobalName(PyObject *name, PY_UINT64_T *dict_version, PyObject **dict_cached_value) -#else -static CYTHON_INLINE PyObject *__Pyx__GetModuleGlobalName(PyObject *name) -#endif -{ - PyObject *result; -#if !CYTHON_AVOID_BORROWED_REFS -#if CYTHON_COMPILING_IN_CPYTHON && PY_VERSION_HEX >= 0x030500A1 - result = _PyDict_GetItem_KnownHash(__pyx_d, name, ((PyASCIIObject *) name)->hash); - __PYX_UPDATE_DICT_CACHE(__pyx_d, result, *dict_cached_value, *dict_version) - if (likely(result)) { - return __Pyx_NewRef(result); - } else if (unlikely(PyErr_Occurred())) { - return NULL; - } -#else - result = PyDict_GetItem(__pyx_d, name); - __PYX_UPDATE_DICT_CACHE(__pyx_d, result, *dict_cached_value, *dict_version) - if (likely(result)) { - return __Pyx_NewRef(result); - } -#endif -#else - result = PyObject_GetItem(__pyx_d, name); - __PYX_UPDATE_DICT_CACHE(__pyx_d, result, *dict_cached_value, *dict_version) - if (likely(result)) { - return __Pyx_NewRef(result); - } - PyErr_Clear(); -#endif - return __Pyx_GetBuiltinName(name); -} - -/* PyFunctionFastCall */ -#if CYTHON_FAST_PYCALL -static PyObject* __Pyx_PyFunction_FastCallNoKw(PyCodeObject *co, PyObject **args, Py_ssize_t na, - PyObject *globals) { - PyFrameObject *f; - PyThreadState *tstate = __Pyx_PyThreadState_Current; - PyObject **fastlocals; - Py_ssize_t i; - PyObject *result; - assert(globals != NULL); - /* XXX Perhaps we should create a specialized - PyFrame_New() that doesn't take locals, but does - take builtins without sanity checking them. - */ - assert(tstate != NULL); - f = PyFrame_New(tstate, co, globals, NULL); - if (f == NULL) { - return NULL; - } - fastlocals = __Pyx_PyFrame_GetLocalsplus(f); - for (i = 0; i < na; i++) { - Py_INCREF(*args); - fastlocals[i] = *args++; - } - result = PyEval_EvalFrameEx(f,0); - ++tstate->recursion_depth; - Py_DECREF(f); - --tstate->recursion_depth; - return result; -} -#if 1 || PY_VERSION_HEX < 0x030600B1 -static PyObject *__Pyx_PyFunction_FastCallDict(PyObject *func, PyObject **args, Py_ssize_t nargs, PyObject *kwargs) { - PyCodeObject *co = (PyCodeObject *)PyFunction_GET_CODE(func); - PyObject *globals = PyFunction_GET_GLOBALS(func); - PyObject *argdefs = PyFunction_GET_DEFAULTS(func); - PyObject *closure; -#if PY_MAJOR_VERSION >= 3 - PyObject *kwdefs; -#endif - PyObject *kwtuple, **k; - PyObject **d; - Py_ssize_t nd; - Py_ssize_t nk; - PyObject *result; - assert(kwargs == NULL || PyDict_Check(kwargs)); - nk = kwargs ? PyDict_Size(kwargs) : 0; - if (Py_EnterRecursiveCall((char*)" while calling a Python object")) { - return NULL; - } - if ( -#if PY_MAJOR_VERSION >= 3 - co->co_kwonlyargcount == 0 && -#endif - likely(kwargs == NULL || nk == 0) && - co->co_flags == (CO_OPTIMIZED | CO_NEWLOCALS | CO_NOFREE)) { - if (argdefs == NULL && co->co_argcount == nargs) { - result = __Pyx_PyFunction_FastCallNoKw(co, args, nargs, globals); - goto done; - } - else if (nargs == 0 && argdefs != NULL - && co->co_argcount == Py_SIZE(argdefs)) { - /* function called with no arguments, but all parameters have - a default value: use default values as arguments .*/ - args = &PyTuple_GET_ITEM(argdefs, 0); - result =__Pyx_PyFunction_FastCallNoKw(co, args, Py_SIZE(argdefs), globals); - goto done; - } - } - if (kwargs != NULL) { - Py_ssize_t pos, i; - kwtuple = PyTuple_New(2 * nk); - if (kwtuple == NULL) { - result = NULL; - goto done; - } - k = &PyTuple_GET_ITEM(kwtuple, 0); - pos = i = 0; - while (PyDict_Next(kwargs, &pos, &k[i], &k[i+1])) { - Py_INCREF(k[i]); - Py_INCREF(k[i+1]); - i += 2; - } - nk = i / 2; - } - else { - kwtuple = NULL; - k = NULL; - } - closure = PyFunction_GET_CLOSURE(func); -#if PY_MAJOR_VERSION >= 3 - kwdefs = PyFunction_GET_KW_DEFAULTS(func); -#endif - if (argdefs != NULL) { - d = &PyTuple_GET_ITEM(argdefs, 0); - nd = Py_SIZE(argdefs); - } - else { - d = NULL; - nd = 0; - } -#if PY_MAJOR_VERSION >= 3 - result = PyEval_EvalCodeEx((PyObject*)co, globals, (PyObject *)NULL, - args, (int)nargs, - k, (int)nk, - d, (int)nd, kwdefs, closure); -#else - result = PyEval_EvalCodeEx(co, globals, (PyObject *)NULL, - args, (int)nargs, - k, (int)nk, - d, (int)nd, closure); -#endif - Py_XDECREF(kwtuple); -done: - Py_LeaveRecursiveCall(); - return result; -} -#endif -#endif - -/* PyCFunctionFastCall */ -#if CYTHON_FAST_PYCCALL -static CYTHON_INLINE PyObject * __Pyx_PyCFunction_FastCall(PyObject *func_obj, PyObject **args, Py_ssize_t nargs) { - PyCFunctionObject *func = (PyCFunctionObject*)func_obj; - PyCFunction meth = PyCFunction_GET_FUNCTION(func); - PyObject *self = PyCFunction_GET_SELF(func); - int flags = PyCFunction_GET_FLAGS(func); - assert(PyCFunction_Check(func)); - assert(METH_FASTCALL == (flags & ~(METH_CLASS | METH_STATIC | METH_COEXIST | METH_KEYWORDS | METH_STACKLESS))); - assert(nargs >= 0); - assert(nargs == 0 || args != NULL); - /* _PyCFunction_FastCallDict() must not be called with an exception set, - because it may clear it (directly or indirectly) and so the - caller loses its exception */ - assert(!PyErr_Occurred()); - if ((PY_VERSION_HEX < 0x030700A0) || unlikely(flags & METH_KEYWORDS)) { - return (*((__Pyx_PyCFunctionFastWithKeywords)(void*)meth)) (self, args, nargs, NULL); - } else { - return (*((__Pyx_PyCFunctionFast)(void*)meth)) (self, args, nargs); - } -} -#endif - -/* PyObjectCall */ -#if CYTHON_COMPILING_IN_CPYTHON -static CYTHON_INLINE PyObject* __Pyx_PyObject_Call(PyObject *func, PyObject *arg, PyObject *kw) { - PyObject *result; - ternaryfunc call = func->ob_type->tp_call; - if (unlikely(!call)) - return PyObject_Call(func, arg, kw); - if (unlikely(Py_EnterRecursiveCall((char*)" while calling a Python object"))) - return NULL; - result = (*call)(func, arg, kw); - Py_LeaveRecursiveCall(); - if (unlikely(!result) && unlikely(!PyErr_Occurred())) { - PyErr_SetString( - PyExc_SystemError, - "NULL result without error in PyObject_Call"); - } - return result; -} -#endif - -/* PyObjectCallMethO */ -#if CYTHON_COMPILING_IN_CPYTHON -static CYTHON_INLINE PyObject* __Pyx_PyObject_CallMethO(PyObject *func, PyObject *arg) { - PyObject *self, *result; - PyCFunction cfunc; - cfunc = PyCFunction_GET_FUNCTION(func); - self = PyCFunction_GET_SELF(func); - if (unlikely(Py_EnterRecursiveCall((char*)" while calling a Python object"))) - return NULL; - result = cfunc(self, arg); - Py_LeaveRecursiveCall(); - if (unlikely(!result) && unlikely(!PyErr_Occurred())) { - PyErr_SetString( - PyExc_SystemError, - "NULL result without error in PyObject_Call"); - } - return result; -} -#endif - -/* PyObjectCallNoArg */ -#if CYTHON_COMPILING_IN_CPYTHON -static CYTHON_INLINE PyObject* __Pyx_PyObject_CallNoArg(PyObject *func) { -#if CYTHON_FAST_PYCALL - if (PyFunction_Check(func)) { - return __Pyx_PyFunction_FastCall(func, NULL, 0); - } -#endif -#ifdef __Pyx_CyFunction_USED - if (likely(PyCFunction_Check(func) || __Pyx_CyFunction_Check(func))) -#else - if (likely(PyCFunction_Check(func))) -#endif - { - if (likely(PyCFunction_GET_FLAGS(func) & METH_NOARGS)) { - return __Pyx_PyObject_CallMethO(func, NULL); - } - } - return __Pyx_PyObject_Call(func, __pyx_empty_tuple, NULL); -} -#endif - -/* PyObjectCallOneArg */ -#if CYTHON_COMPILING_IN_CPYTHON -static PyObject* __Pyx__PyObject_CallOneArg(PyObject *func, PyObject *arg) { - PyObject *result; - PyObject *args = PyTuple_New(1); - if (unlikely(!args)) return NULL; - Py_INCREF(arg); - PyTuple_SET_ITEM(args, 0, arg); - result = __Pyx_PyObject_Call(func, args, NULL); - Py_DECREF(args); - return result; -} -static CYTHON_INLINE PyObject* __Pyx_PyObject_CallOneArg(PyObject *func, PyObject *arg) { -#if CYTHON_FAST_PYCALL - if (PyFunction_Check(func)) { - return __Pyx_PyFunction_FastCall(func, &arg, 1); - } -#endif - if (likely(PyCFunction_Check(func))) { - if (likely(PyCFunction_GET_FLAGS(func) & METH_O)) { - return __Pyx_PyObject_CallMethO(func, arg); -#if CYTHON_FAST_PYCCALL - } else if (PyCFunction_GET_FLAGS(func) & METH_FASTCALL) { - return __Pyx_PyCFunction_FastCall(func, &arg, 1); -#endif - } - } - return __Pyx__PyObject_CallOneArg(func, arg); -} -#else -static CYTHON_INLINE PyObject* __Pyx_PyObject_CallOneArg(PyObject *func, PyObject *arg) { - PyObject *result; - PyObject *args = PyTuple_Pack(1, arg); - if (unlikely(!args)) return NULL; - result = __Pyx_PyObject_Call(func, args, NULL); - Py_DECREF(args); - return result; -} -#endif - -/* RaiseTooManyValuesToUnpack */ -static CYTHON_INLINE void __Pyx_RaiseTooManyValuesError(Py_ssize_t expected) { - PyErr_Format(PyExc_ValueError, - "too many values to unpack (expected %" CYTHON_FORMAT_SSIZE_T "d)", expected); -} - -/* RaiseNeedMoreValuesToUnpack */ -static CYTHON_INLINE void __Pyx_RaiseNeedMoreValuesError(Py_ssize_t index) { - PyErr_Format(PyExc_ValueError, - "need more than %" CYTHON_FORMAT_SSIZE_T "d value%.1s to unpack", - index, (index == 1) ? "" : "s"); -} - -/* IterFinish */ -static CYTHON_INLINE int __Pyx_IterFinish(void) { -#if CYTHON_FAST_THREAD_STATE - PyThreadState *tstate = __Pyx_PyThreadState_Current; - PyObject* exc_type = tstate->curexc_type; - if (unlikely(exc_type)) { - if (likely(__Pyx_PyErr_GivenExceptionMatches(exc_type, PyExc_StopIteration))) { - PyObject *exc_value, *exc_tb; - exc_value = tstate->curexc_value; - exc_tb = tstate->curexc_traceback; - tstate->curexc_type = 0; - tstate->curexc_value = 0; - tstate->curexc_traceback = 0; - Py_DECREF(exc_type); - Py_XDECREF(exc_value); - Py_XDECREF(exc_tb); - return 0; - } else { - return -1; - } - } - return 0; -#else - if (unlikely(PyErr_Occurred())) { - if (likely(PyErr_ExceptionMatches(PyExc_StopIteration))) { - PyErr_Clear(); - return 0; - } else { - return -1; - } - } - return 0; -#endif -} - -/* UnpackItemEndCheck */ -static int __Pyx_IternextUnpackEndCheck(PyObject *retval, Py_ssize_t expected) { - if (unlikely(retval)) { - Py_DECREF(retval); - __Pyx_RaiseTooManyValuesError(expected); - return -1; - } else { - return __Pyx_IterFinish(); - } - return 0; -} - -/* PyIntBinop */ -#if !CYTHON_COMPILING_IN_PYPY -static PyObject* __Pyx_PyInt_AddCObj(PyObject *op1, PyObject *op2, CYTHON_UNUSED long intval, int inplace, int zerodivision_check) { - (void)inplace; - (void)zerodivision_check; - #if PY_MAJOR_VERSION < 3 - if (likely(PyInt_CheckExact(op2))) { - const long a = intval; - long x; - long b = PyInt_AS_LONG(op2); - x = (long)((unsigned long)a + b); - if (likely((x^a) >= 0 || (x^b) >= 0)) - return PyInt_FromLong(x); - return PyLong_Type.tp_as_number->nb_add(op1, op2); - } - #endif - #if CYTHON_USE_PYLONG_INTERNALS - if (likely(PyLong_CheckExact(op2))) { - const long a = intval; - long b, x; -#ifdef HAVE_LONG_LONG - const PY_LONG_LONG lla = intval; - PY_LONG_LONG llb, llx; -#endif - const digit* digits = ((PyLongObject*)op2)->ob_digit; - const Py_ssize_t size = Py_SIZE(op2); - if (likely(__Pyx_sst_abs(size) <= 1)) { - b = likely(size) ? digits[0] : 0; - if (size == -1) b = -b; - } else { - switch (size) { - case -2: - if (8 * sizeof(long) - 1 > 2 * PyLong_SHIFT) { - b = -(long) (((((unsigned long)digits[1]) << PyLong_SHIFT) | (unsigned long)digits[0])); - break; -#ifdef HAVE_LONG_LONG - } else if (8 * sizeof(PY_LONG_LONG) - 1 > 2 * PyLong_SHIFT) { - llb = -(PY_LONG_LONG) (((((unsigned PY_LONG_LONG)digits[1]) << PyLong_SHIFT) | (unsigned PY_LONG_LONG)digits[0])); - goto long_long; -#endif - } - CYTHON_FALLTHROUGH; - case 2: - if (8 * sizeof(long) - 1 > 2 * PyLong_SHIFT) { - b = (long) (((((unsigned long)digits[1]) << PyLong_SHIFT) | (unsigned long)digits[0])); - break; -#ifdef HAVE_LONG_LONG - } else if (8 * sizeof(PY_LONG_LONG) - 1 > 2 * PyLong_SHIFT) { - llb = (PY_LONG_LONG) (((((unsigned PY_LONG_LONG)digits[1]) << PyLong_SHIFT) | (unsigned PY_LONG_LONG)digits[0])); - goto long_long; -#endif - } - CYTHON_FALLTHROUGH; - case -3: - if (8 * sizeof(long) - 1 > 3 * PyLong_SHIFT) { - b = -(long) (((((((unsigned long)digits[2]) << PyLong_SHIFT) | (unsigned long)digits[1]) << PyLong_SHIFT) | (unsigned long)digits[0])); - break; -#ifdef HAVE_LONG_LONG - } else if (8 * sizeof(PY_LONG_LONG) - 1 > 3 * PyLong_SHIFT) { - llb = -(PY_LONG_LONG) (((((((unsigned PY_LONG_LONG)digits[2]) << PyLong_SHIFT) | (unsigned PY_LONG_LONG)digits[1]) << PyLong_SHIFT) | (unsigned PY_LONG_LONG)digits[0])); - goto long_long; -#endif - } - CYTHON_FALLTHROUGH; - case 3: - if (8 * sizeof(long) - 1 > 3 * PyLong_SHIFT) { - b = (long) (((((((unsigned long)digits[2]) << PyLong_SHIFT) | (unsigned long)digits[1]) << PyLong_SHIFT) | (unsigned long)digits[0])); - break; -#ifdef HAVE_LONG_LONG - } else if (8 * sizeof(PY_LONG_LONG) - 1 > 3 * PyLong_SHIFT) { - llb = (PY_LONG_LONG) (((((((unsigned PY_LONG_LONG)digits[2]) << PyLong_SHIFT) | (unsigned PY_LONG_LONG)digits[1]) << PyLong_SHIFT) | (unsigned PY_LONG_LONG)digits[0])); - goto long_long; -#endif - } - CYTHON_FALLTHROUGH; - case -4: - if (8 * sizeof(long) - 1 > 4 * PyLong_SHIFT) { - b = -(long) (((((((((unsigned long)digits[3]) << PyLong_SHIFT) | (unsigned long)digits[2]) << PyLong_SHIFT) | (unsigned long)digits[1]) << PyLong_SHIFT) | (unsigned long)digits[0])); - break; -#ifdef HAVE_LONG_LONG - } else if (8 * sizeof(PY_LONG_LONG) - 1 > 4 * PyLong_SHIFT) { - llb = -(PY_LONG_LONG) (((((((((unsigned PY_LONG_LONG)digits[3]) << PyLong_SHIFT) | (unsigned PY_LONG_LONG)digits[2]) << PyLong_SHIFT) | (unsigned PY_LONG_LONG)digits[1]) << PyLong_SHIFT) | (unsigned PY_LONG_LONG)digits[0])); - goto long_long; -#endif - } - CYTHON_FALLTHROUGH; - case 4: - if (8 * sizeof(long) - 1 > 4 * PyLong_SHIFT) { - b = (long) (((((((((unsigned long)digits[3]) << PyLong_SHIFT) | (unsigned long)digits[2]) << PyLong_SHIFT) | (unsigned long)digits[1]) << PyLong_SHIFT) | (unsigned long)digits[0])); - break; -#ifdef HAVE_LONG_LONG - } else if (8 * sizeof(PY_LONG_LONG) - 1 > 4 * PyLong_SHIFT) { - llb = (PY_LONG_LONG) (((((((((unsigned PY_LONG_LONG)digits[3]) << PyLong_SHIFT) | (unsigned PY_LONG_LONG)digits[2]) << PyLong_SHIFT) | (unsigned PY_LONG_LONG)digits[1]) << PyLong_SHIFT) | (unsigned PY_LONG_LONG)digits[0])); - goto long_long; -#endif - } - CYTHON_FALLTHROUGH; - default: return PyLong_Type.tp_as_number->nb_add(op1, op2); - } - } - x = a + b; - return PyLong_FromLong(x); -#ifdef HAVE_LONG_LONG - long_long: - llx = lla + llb; - return PyLong_FromLongLong(llx); -#endif - - - } - #endif - if (PyFloat_CheckExact(op2)) { - const long a = intval; - double b = PyFloat_AS_DOUBLE(op2); - double result; - PyFPE_START_PROTECT("add", return NULL) - result = ((double)a) + (double)b; - PyFPE_END_PROTECT(result) - return PyFloat_FromDouble(result); - } - return (inplace ? PyNumber_InPlaceAdd : PyNumber_Add)(op1, op2); -} -#endif - -/* PyErrExceptionMatches */ -#if CYTHON_FAST_THREAD_STATE -static int __Pyx_PyErr_ExceptionMatchesTuple(PyObject *exc_type, PyObject *tuple) { - Py_ssize_t i, n; - n = PyTuple_GET_SIZE(tuple); -#if PY_MAJOR_VERSION >= 3 - for (i=0; icurexc_type; - if (exc_type == err) return 1; - if (unlikely(!exc_type)) return 0; - if (unlikely(PyTuple_Check(err))) - return __Pyx_PyErr_ExceptionMatchesTuple(exc_type, err); - return __Pyx_PyErr_GivenExceptionMatches(exc_type, err); -} -#endif - -/* PyErrFetchRestore */ -#if CYTHON_FAST_THREAD_STATE -static CYTHON_INLINE void __Pyx_ErrRestoreInState(PyThreadState *tstate, PyObject *type, PyObject *value, PyObject *tb) { - PyObject *tmp_type, *tmp_value, *tmp_tb; - tmp_type = tstate->curexc_type; - tmp_value = tstate->curexc_value; - tmp_tb = tstate->curexc_traceback; - tstate->curexc_type = type; - tstate->curexc_value = value; - tstate->curexc_traceback = tb; - Py_XDECREF(tmp_type); - Py_XDECREF(tmp_value); - Py_XDECREF(tmp_tb); -} -static CYTHON_INLINE void __Pyx_ErrFetchInState(PyThreadState *tstate, PyObject **type, PyObject **value, PyObject **tb) { - *type = tstate->curexc_type; - *value = tstate->curexc_value; - *tb = tstate->curexc_traceback; - tstate->curexc_type = 0; - tstate->curexc_value = 0; - tstate->curexc_traceback = 0; -} -#endif - -/* GetAttr */ -static CYTHON_INLINE PyObject *__Pyx_GetAttr(PyObject *o, PyObject *n) { -#if CYTHON_USE_TYPE_SLOTS -#if PY_MAJOR_VERSION >= 3 - if (likely(PyUnicode_Check(n))) -#else - if (likely(PyString_Check(n))) -#endif - return __Pyx_PyObject_GetAttrStr(o, n); -#endif - return PyObject_GetAttr(o, n); -} - -/* GetAttr3 */ -static PyObject *__Pyx_GetAttr3Default(PyObject *d) { - __Pyx_PyThreadState_declare - __Pyx_PyThreadState_assign - if (unlikely(!__Pyx_PyErr_ExceptionMatches(PyExc_AttributeError))) - return NULL; - __Pyx_PyErr_Clear(); - Py_INCREF(d); - return d; -} -static CYTHON_INLINE PyObject *__Pyx_GetAttr3(PyObject *o, PyObject *n, PyObject *d) { - PyObject *r = __Pyx_GetAttr(o, n); - return (likely(r)) ? r : __Pyx_GetAttr3Default(d); -} - -/* Import */ -static PyObject *__Pyx_Import(PyObject *name, PyObject *from_list, int level) { - PyObject *empty_list = 0; - PyObject *module = 0; - PyObject *global_dict = 0; - PyObject *empty_dict = 0; - PyObject *list; - #if PY_MAJOR_VERSION < 3 - PyObject *py_import; - py_import = __Pyx_PyObject_GetAttrStr(__pyx_b, __pyx_n_s_import); - if (!py_import) - goto bad; - #endif - if (from_list) - list = from_list; - else { - empty_list = PyList_New(0); - if (!empty_list) - goto bad; - list = empty_list; - } - global_dict = PyModule_GetDict(__pyx_m); - if (!global_dict) - goto bad; - empty_dict = PyDict_New(); - if (!empty_dict) - goto bad; - { - #if PY_MAJOR_VERSION >= 3 - if (level == -1) { - if (strchr(__Pyx_MODULE_NAME, '.')) { - module = PyImport_ImportModuleLevelObject( - name, global_dict, empty_dict, list, 1); - if (!module) { - if (!PyErr_ExceptionMatches(PyExc_ImportError)) - goto bad; - PyErr_Clear(); - } - } - level = 0; - } - #endif - if (!module) { - #if PY_MAJOR_VERSION < 3 - PyObject *py_level = PyInt_FromLong(level); - if (!py_level) - goto bad; - module = PyObject_CallFunctionObjArgs(py_import, - name, global_dict, empty_dict, list, py_level, (PyObject *)NULL); - Py_DECREF(py_level); - #else - module = PyImport_ImportModuleLevelObject( - name, global_dict, empty_dict, list, level); - #endif - } - } -bad: - #if PY_MAJOR_VERSION < 3 - Py_XDECREF(py_import); - #endif - Py_XDECREF(empty_list); - Py_XDECREF(empty_dict); - return module; -} - -/* ImportFrom */ -static PyObject* __Pyx_ImportFrom(PyObject* module, PyObject* name) { - PyObject* value = __Pyx_PyObject_GetAttrStr(module, name); - if (unlikely(!value) && PyErr_ExceptionMatches(PyExc_AttributeError)) { - PyErr_Format(PyExc_ImportError, - #if PY_MAJOR_VERSION < 3 - "cannot import name %.230s", PyString_AS_STRING(name)); - #else - "cannot import name %S", name); - #endif - } - return value; -} - -/* PyObjectCall2Args */ -static CYTHON_UNUSED PyObject* __Pyx_PyObject_Call2Args(PyObject* function, PyObject* arg1, PyObject* arg2) { - PyObject *args, *result = NULL; - #if CYTHON_FAST_PYCALL - if (PyFunction_Check(function)) { - PyObject *args[2] = {arg1, arg2}; - return __Pyx_PyFunction_FastCall(function, args, 2); - } - #endif - #if CYTHON_FAST_PYCCALL - if (__Pyx_PyFastCFunction_Check(function)) { - PyObject *args[2] = {arg1, arg2}; - return __Pyx_PyCFunction_FastCall(function, args, 2); - } - #endif - args = PyTuple_New(2); - if (unlikely(!args)) goto done; - Py_INCREF(arg1); - PyTuple_SET_ITEM(args, 0, arg1); - Py_INCREF(arg2); - PyTuple_SET_ITEM(args, 1, arg2); - Py_INCREF(function); - result = __Pyx_PyObject_Call(function, args, NULL); - Py_DECREF(args); - Py_DECREF(function); -done: - return result; -} - -/* RaiseException */ -#if PY_MAJOR_VERSION < 3 -static void __Pyx_Raise(PyObject *type, PyObject *value, PyObject *tb, - CYTHON_UNUSED PyObject *cause) { - __Pyx_PyThreadState_declare - Py_XINCREF(type); - if (!value || value == Py_None) - value = NULL; - else - Py_INCREF(value); - if (!tb || tb == Py_None) - tb = NULL; - else { - Py_INCREF(tb); - if (!PyTraceBack_Check(tb)) { - PyErr_SetString(PyExc_TypeError, - "raise: arg 3 must be a traceback or None"); - goto raise_error; - } - } - if (PyType_Check(type)) { -#if CYTHON_COMPILING_IN_PYPY - if (!value) { - Py_INCREF(Py_None); - value = Py_None; - } -#endif - PyErr_NormalizeException(&type, &value, &tb); - } else { - if (value) { - PyErr_SetString(PyExc_TypeError, - "instance exception may not have a separate value"); - goto raise_error; - } - value = type; - type = (PyObject*) Py_TYPE(type); - Py_INCREF(type); - if (!PyType_IsSubtype((PyTypeObject *)type, (PyTypeObject *)PyExc_BaseException)) { - PyErr_SetString(PyExc_TypeError, - "raise: exception class must be a subclass of BaseException"); - goto raise_error; - } - } - __Pyx_PyThreadState_assign - __Pyx_ErrRestore(type, value, tb); - return; -raise_error: - Py_XDECREF(value); - Py_XDECREF(type); - Py_XDECREF(tb); - return; -} -#else -static void __Pyx_Raise(PyObject *type, PyObject *value, PyObject *tb, PyObject *cause) { - PyObject* owned_instance = NULL; - if (tb == Py_None) { - tb = 0; - } else if (tb && !PyTraceBack_Check(tb)) { - PyErr_SetString(PyExc_TypeError, - "raise: arg 3 must be a traceback or None"); - goto bad; - } - if (value == Py_None) - value = 0; - if (PyExceptionInstance_Check(type)) { - if (value) { - PyErr_SetString(PyExc_TypeError, - "instance exception may not have a separate value"); - goto bad; - } - value = type; - type = (PyObject*) Py_TYPE(value); - } else if (PyExceptionClass_Check(type)) { - PyObject *instance_class = NULL; - if (value && PyExceptionInstance_Check(value)) { - instance_class = (PyObject*) Py_TYPE(value); - if (instance_class != type) { - int is_subclass = PyObject_IsSubclass(instance_class, type); - if (!is_subclass) { - instance_class = NULL; - } else if (unlikely(is_subclass == -1)) { - goto bad; - } else { - type = instance_class; - } - } - } - if (!instance_class) { - PyObject *args; - if (!value) - args = PyTuple_New(0); - else if (PyTuple_Check(value)) { - Py_INCREF(value); - args = value; - } else - args = PyTuple_Pack(1, value); - if (!args) - goto bad; - owned_instance = PyObject_Call(type, args, NULL); - Py_DECREF(args); - if (!owned_instance) - goto bad; - value = owned_instance; - if (!PyExceptionInstance_Check(value)) { - PyErr_Format(PyExc_TypeError, - "calling %R should have returned an instance of " - "BaseException, not %R", - type, Py_TYPE(value)); - goto bad; - } - } - } else { - PyErr_SetString(PyExc_TypeError, - "raise: exception class must be a subclass of BaseException"); - goto bad; - } - if (cause) { - PyObject *fixed_cause; - if (cause == Py_None) { - fixed_cause = NULL; - } else if (PyExceptionClass_Check(cause)) { - fixed_cause = PyObject_CallObject(cause, NULL); - if (fixed_cause == NULL) - goto bad; - } else if (PyExceptionInstance_Check(cause)) { - fixed_cause = cause; - Py_INCREF(fixed_cause); - } else { - PyErr_SetString(PyExc_TypeError, - "exception causes must derive from " - "BaseException"); - goto bad; - } - PyException_SetCause(value, fixed_cause); - } - PyErr_SetObject(type, value); - if (tb) { -#if CYTHON_COMPILING_IN_PYPY - PyObject *tmp_type, *tmp_value, *tmp_tb; - PyErr_Fetch(&tmp_type, &tmp_value, &tmp_tb); - Py_INCREF(tb); - PyErr_Restore(tmp_type, tmp_value, tb); - Py_XDECREF(tmp_tb); -#else - PyThreadState *tstate = __Pyx_PyThreadState_Current; - PyObject* tmp_tb = tstate->curexc_traceback; - if (tb != tmp_tb) { - Py_INCREF(tb); - tstate->curexc_traceback = tb; - Py_XDECREF(tmp_tb); - } -#endif - } -bad: - Py_XDECREF(owned_instance); - return; -} -#endif - -/* HasAttr */ -static CYTHON_INLINE int __Pyx_HasAttr(PyObject *o, PyObject *n) { - PyObject *r; - if (unlikely(!__Pyx_PyBaseString_Check(n))) { - PyErr_SetString(PyExc_TypeError, - "hasattr(): attribute name must be string"); - return -1; - } - r = __Pyx_GetAttr(o, n); - if (unlikely(!r)) { - PyErr_Clear(); - return 0; - } else { - Py_DECREF(r); - return 1; - } -} - -/* PyObject_GenericGetAttrNoDict */ -#if CYTHON_USE_TYPE_SLOTS && CYTHON_USE_PYTYPE_LOOKUP && PY_VERSION_HEX < 0x03070000 -static PyObject *__Pyx_RaiseGenericGetAttributeError(PyTypeObject *tp, PyObject *attr_name) { - PyErr_Format(PyExc_AttributeError, -#if PY_MAJOR_VERSION >= 3 - "'%.50s' object has no attribute '%U'", - tp->tp_name, attr_name); -#else - "'%.50s' object has no attribute '%.400s'", - tp->tp_name, PyString_AS_STRING(attr_name)); -#endif - return NULL; -} -static CYTHON_INLINE PyObject* __Pyx_PyObject_GenericGetAttrNoDict(PyObject* obj, PyObject* attr_name) { - PyObject *descr; - PyTypeObject *tp = Py_TYPE(obj); - if (unlikely(!PyString_Check(attr_name))) { - return PyObject_GenericGetAttr(obj, attr_name); - } - assert(!tp->tp_dictoffset); - descr = _PyType_Lookup(tp, attr_name); - if (unlikely(!descr)) { - return __Pyx_RaiseGenericGetAttributeError(tp, attr_name); - } - Py_INCREF(descr); - #if PY_MAJOR_VERSION < 3 - if (likely(PyType_HasFeature(Py_TYPE(descr), Py_TPFLAGS_HAVE_CLASS))) - #endif - { - descrgetfunc f = Py_TYPE(descr)->tp_descr_get; - if (unlikely(f)) { - PyObject *res = f(descr, obj, (PyObject *)tp); - Py_DECREF(descr); - return res; - } - } - return descr; -} -#endif - -/* PyObject_GenericGetAttr */ -#if CYTHON_USE_TYPE_SLOTS && CYTHON_USE_PYTYPE_LOOKUP && PY_VERSION_HEX < 0x03070000 -static PyObject* __Pyx_PyObject_GenericGetAttr(PyObject* obj, PyObject* attr_name) { - if (unlikely(Py_TYPE(obj)->tp_dictoffset)) { - return PyObject_GenericGetAttr(obj, attr_name); - } - return __Pyx_PyObject_GenericGetAttrNoDict(obj, attr_name); -} -#endif - -/* SetupReduce */ -static int __Pyx_setup_reduce_is_named(PyObject* meth, PyObject* name) { - int ret; - PyObject *name_attr; - name_attr = __Pyx_PyObject_GetAttrStr(meth, __pyx_n_s_name_2); - if (likely(name_attr)) { - ret = PyObject_RichCompareBool(name_attr, name, Py_EQ); - } else { - ret = -1; - } - if (unlikely(ret < 0)) { - PyErr_Clear(); - ret = 0; - } - Py_XDECREF(name_attr); - return ret; -} -static int __Pyx_setup_reduce(PyObject* type_obj) { - int ret = 0; - PyObject *object_reduce = NULL; - PyObject *object_reduce_ex = NULL; - PyObject *reduce = NULL; - PyObject *reduce_ex = NULL; - PyObject *reduce_cython = NULL; - PyObject *setstate = NULL; - PyObject *setstate_cython = NULL; -#if CYTHON_USE_PYTYPE_LOOKUP - if (_PyType_Lookup((PyTypeObject*)type_obj, __pyx_n_s_getstate)) goto GOOD; -#else - if (PyObject_HasAttr(type_obj, __pyx_n_s_getstate)) goto GOOD; -#endif -#if CYTHON_USE_PYTYPE_LOOKUP - object_reduce_ex = _PyType_Lookup(&PyBaseObject_Type, __pyx_n_s_reduce_ex); if (!object_reduce_ex) goto BAD; -#else - object_reduce_ex = __Pyx_PyObject_GetAttrStr((PyObject*)&PyBaseObject_Type, __pyx_n_s_reduce_ex); if (!object_reduce_ex) goto BAD; -#endif - reduce_ex = __Pyx_PyObject_GetAttrStr(type_obj, __pyx_n_s_reduce_ex); if (unlikely(!reduce_ex)) goto BAD; - if (reduce_ex == object_reduce_ex) { -#if CYTHON_USE_PYTYPE_LOOKUP - object_reduce = _PyType_Lookup(&PyBaseObject_Type, __pyx_n_s_reduce); if (!object_reduce) goto BAD; -#else - object_reduce = __Pyx_PyObject_GetAttrStr((PyObject*)&PyBaseObject_Type, __pyx_n_s_reduce); if (!object_reduce) goto BAD; -#endif - reduce = __Pyx_PyObject_GetAttrStr(type_obj, __pyx_n_s_reduce); if (unlikely(!reduce)) goto BAD; - if (reduce == object_reduce || __Pyx_setup_reduce_is_named(reduce, __pyx_n_s_reduce_cython)) { - reduce_cython = __Pyx_PyObject_GetAttrStr(type_obj, __pyx_n_s_reduce_cython); if (unlikely(!reduce_cython)) goto BAD; - ret = PyDict_SetItem(((PyTypeObject*)type_obj)->tp_dict, __pyx_n_s_reduce, reduce_cython); if (unlikely(ret < 0)) goto BAD; - ret = PyDict_DelItem(((PyTypeObject*)type_obj)->tp_dict, __pyx_n_s_reduce_cython); if (unlikely(ret < 0)) goto BAD; - setstate = __Pyx_PyObject_GetAttrStr(type_obj, __pyx_n_s_setstate); - if (!setstate) PyErr_Clear(); - if (!setstate || __Pyx_setup_reduce_is_named(setstate, __pyx_n_s_setstate_cython)) { - setstate_cython = __Pyx_PyObject_GetAttrStr(type_obj, __pyx_n_s_setstate_cython); if (unlikely(!setstate_cython)) goto BAD; - ret = PyDict_SetItem(((PyTypeObject*)type_obj)->tp_dict, __pyx_n_s_setstate, setstate_cython); if (unlikely(ret < 0)) goto BAD; - ret = PyDict_DelItem(((PyTypeObject*)type_obj)->tp_dict, __pyx_n_s_setstate_cython); if (unlikely(ret < 0)) goto BAD; - } - PyType_Modified((PyTypeObject*)type_obj); - } - } - goto GOOD; -BAD: - if (!PyErr_Occurred()) - PyErr_Format(PyExc_RuntimeError, "Unable to initialize pickling for %s", ((PyTypeObject*)type_obj)->tp_name); - ret = -1; -GOOD: -#if !CYTHON_USE_PYTYPE_LOOKUP - Py_XDECREF(object_reduce); - Py_XDECREF(object_reduce_ex); -#endif - Py_XDECREF(reduce); - Py_XDECREF(reduce_ex); - Py_XDECREF(reduce_cython); - Py_XDECREF(setstate); - Py_XDECREF(setstate_cython); - return ret; -} - -/* PyObjectGetMethod */ -static int __Pyx_PyObject_GetMethod(PyObject *obj, PyObject *name, PyObject **method) { - PyObject *attr; -#if CYTHON_UNPACK_METHODS && CYTHON_COMPILING_IN_CPYTHON && CYTHON_USE_PYTYPE_LOOKUP - PyTypeObject *tp = Py_TYPE(obj); - PyObject *descr; - descrgetfunc f = NULL; - PyObject **dictptr, *dict; - int meth_found = 0; - assert (*method == NULL); - if (unlikely(tp->tp_getattro != PyObject_GenericGetAttr)) { - attr = __Pyx_PyObject_GetAttrStr(obj, name); - goto try_unpack; - } - if (unlikely(tp->tp_dict == NULL) && unlikely(PyType_Ready(tp) < 0)) { - return 0; - } - descr = _PyType_Lookup(tp, name); - if (likely(descr != NULL)) { - Py_INCREF(descr); -#if PY_MAJOR_VERSION >= 3 - #ifdef __Pyx_CyFunction_USED - if (likely(PyFunction_Check(descr) || (Py_TYPE(descr) == &PyMethodDescr_Type) || __Pyx_CyFunction_Check(descr))) - #else - if (likely(PyFunction_Check(descr) || (Py_TYPE(descr) == &PyMethodDescr_Type))) - #endif -#else - #ifdef __Pyx_CyFunction_USED - if (likely(PyFunction_Check(descr) || __Pyx_CyFunction_Check(descr))) - #else - if (likely(PyFunction_Check(descr))) - #endif -#endif - { - meth_found = 1; - } else { - f = Py_TYPE(descr)->tp_descr_get; - if (f != NULL && PyDescr_IsData(descr)) { - attr = f(descr, obj, (PyObject *)Py_TYPE(obj)); - Py_DECREF(descr); - goto try_unpack; - } - } - } - dictptr = _PyObject_GetDictPtr(obj); - if (dictptr != NULL && (dict = *dictptr) != NULL) { - Py_INCREF(dict); - attr = __Pyx_PyDict_GetItemStr(dict, name); - if (attr != NULL) { - Py_INCREF(attr); - Py_DECREF(dict); - Py_XDECREF(descr); - goto try_unpack; - } - Py_DECREF(dict); - } - if (meth_found) { - *method = descr; - return 1; - } - if (f != NULL) { - attr = f(descr, obj, (PyObject *)Py_TYPE(obj)); - Py_DECREF(descr); - goto try_unpack; - } - if (descr != NULL) { - *method = descr; - return 0; - } - PyErr_Format(PyExc_AttributeError, -#if PY_MAJOR_VERSION >= 3 - "'%.50s' object has no attribute '%U'", - tp->tp_name, name); -#else - "'%.50s' object has no attribute '%.400s'", - tp->tp_name, PyString_AS_STRING(name)); -#endif - return 0; -#else - attr = __Pyx_PyObject_GetAttrStr(obj, name); - goto try_unpack; -#endif -try_unpack: -#if CYTHON_UNPACK_METHODS - if (likely(attr) && PyMethod_Check(attr) && likely(PyMethod_GET_SELF(attr) == obj)) { - PyObject *function = PyMethod_GET_FUNCTION(attr); - Py_INCREF(function); - Py_DECREF(attr); - *method = function; - return 1; - } -#endif - *method = attr; - return 0; -} - -/* PyObjectCallMethod1 */ -static PyObject* __Pyx__PyObject_CallMethod1(PyObject* method, PyObject* arg) { - PyObject *result = __Pyx_PyObject_CallOneArg(method, arg); - Py_DECREF(method); - return result; -} -static PyObject* __Pyx_PyObject_CallMethod1(PyObject* obj, PyObject* method_name, PyObject* arg) { - PyObject *method = NULL, *result; - int is_method = __Pyx_PyObject_GetMethod(obj, method_name, &method); - if (likely(is_method)) { - result = __Pyx_PyObject_Call2Args(method, obj, arg); - Py_DECREF(method); - return result; - } - if (unlikely(!method)) return NULL; - return __Pyx__PyObject_CallMethod1(method, arg); -} - -/* append */ -static CYTHON_INLINE int __Pyx_PyObject_Append(PyObject* L, PyObject* x) { - if (likely(PyList_CheckExact(L))) { - if (unlikely(__Pyx_PyList_Append(L, x) < 0)) return -1; - } else { - PyObject* retval = __Pyx_PyObject_CallMethod1(L, __pyx_n_s_append, x); - if (unlikely(!retval)) - return -1; - Py_DECREF(retval); - } - return 0; -} - -/* GetNameInClass */ -static PyObject *__Pyx_GetGlobalNameAfterAttributeLookup(PyObject *name) { - PyObject *result; - __Pyx_PyThreadState_declare - __Pyx_PyThreadState_assign - if (unlikely(!__Pyx_PyErr_ExceptionMatches(PyExc_AttributeError))) - return NULL; - __Pyx_PyErr_Clear(); - __Pyx_GetModuleGlobalNameUncached(result, name); - return result; -} -static PyObject *__Pyx__GetNameInClass(PyObject *nmspace, PyObject *name) { - PyObject *result; - result = __Pyx_PyObject_GetAttrStr(nmspace, name); - if (!result) { - result = __Pyx_GetGlobalNameAfterAttributeLookup(name); - } - return result; -} - -/* CLineInTraceback */ -#ifndef CYTHON_CLINE_IN_TRACEBACK -static int __Pyx_CLineForTraceback(PyThreadState *tstate, int c_line) { - PyObject *use_cline; - PyObject *ptype, *pvalue, *ptraceback; -#if CYTHON_COMPILING_IN_CPYTHON - PyObject **cython_runtime_dict; -#endif - if (unlikely(!__pyx_cython_runtime)) { - return c_line; - } - __Pyx_ErrFetchInState(tstate, &ptype, &pvalue, &ptraceback); -#if CYTHON_COMPILING_IN_CPYTHON - cython_runtime_dict = _PyObject_GetDictPtr(__pyx_cython_runtime); - if (likely(cython_runtime_dict)) { - __PYX_PY_DICT_LOOKUP_IF_MODIFIED( - use_cline, *cython_runtime_dict, - __Pyx_PyDict_GetItemStr(*cython_runtime_dict, __pyx_n_s_cline_in_traceback)) - } else -#endif - { - PyObject *use_cline_obj = __Pyx_PyObject_GetAttrStr(__pyx_cython_runtime, __pyx_n_s_cline_in_traceback); - if (use_cline_obj) { - use_cline = PyObject_Not(use_cline_obj) ? Py_False : Py_True; - Py_DECREF(use_cline_obj); - } else { - PyErr_Clear(); - use_cline = NULL; - } - } - if (!use_cline) { - c_line = 0; - PyObject_SetAttr(__pyx_cython_runtime, __pyx_n_s_cline_in_traceback, Py_False); - } - else if (use_cline == Py_False || (use_cline != Py_True && PyObject_Not(use_cline) != 0)) { - c_line = 0; - } - __Pyx_ErrRestoreInState(tstate, ptype, pvalue, ptraceback); - return c_line; -} -#endif - -/* CodeObjectCache */ -static int __pyx_bisect_code_objects(__Pyx_CodeObjectCacheEntry* entries, int count, int code_line) { - int start = 0, mid = 0, end = count - 1; - if (end >= 0 && code_line > entries[end].code_line) { - return count; - } - while (start < end) { - mid = start + (end - start) / 2; - if (code_line < entries[mid].code_line) { - end = mid; - } else if (code_line > entries[mid].code_line) { - start = mid + 1; - } else { - return mid; - } - } - if (code_line <= entries[mid].code_line) { - return mid; - } else { - return mid + 1; - } -} -static PyCodeObject *__pyx_find_code_object(int code_line) { - PyCodeObject* code_object; - int pos; - if (unlikely(!code_line) || unlikely(!__pyx_code_cache.entries)) { - return NULL; - } - pos = __pyx_bisect_code_objects(__pyx_code_cache.entries, __pyx_code_cache.count, code_line); - if (unlikely(pos >= __pyx_code_cache.count) || unlikely(__pyx_code_cache.entries[pos].code_line != code_line)) { - return NULL; - } - code_object = __pyx_code_cache.entries[pos].code_object; - Py_INCREF(code_object); - return code_object; -} -static void __pyx_insert_code_object(int code_line, PyCodeObject* code_object) { - int pos, i; - __Pyx_CodeObjectCacheEntry* entries = __pyx_code_cache.entries; - if (unlikely(!code_line)) { - return; - } - if (unlikely(!entries)) { - entries = (__Pyx_CodeObjectCacheEntry*)PyMem_Malloc(64*sizeof(__Pyx_CodeObjectCacheEntry)); - if (likely(entries)) { - __pyx_code_cache.entries = entries; - __pyx_code_cache.max_count = 64; - __pyx_code_cache.count = 1; - entries[0].code_line = code_line; - entries[0].code_object = code_object; - Py_INCREF(code_object); - } - return; - } - pos = __pyx_bisect_code_objects(__pyx_code_cache.entries, __pyx_code_cache.count, code_line); - if ((pos < __pyx_code_cache.count) && unlikely(__pyx_code_cache.entries[pos].code_line == code_line)) { - PyCodeObject* tmp = entries[pos].code_object; - entries[pos].code_object = code_object; - Py_DECREF(tmp); - return; - } - if (__pyx_code_cache.count == __pyx_code_cache.max_count) { - int new_max = __pyx_code_cache.max_count + 64; - entries = (__Pyx_CodeObjectCacheEntry*)PyMem_Realloc( - __pyx_code_cache.entries, (size_t)new_max*sizeof(__Pyx_CodeObjectCacheEntry)); - if (unlikely(!entries)) { - return; - } - __pyx_code_cache.entries = entries; - __pyx_code_cache.max_count = new_max; - } - for (i=__pyx_code_cache.count; i>pos; i--) { - entries[i] = entries[i-1]; - } - entries[pos].code_line = code_line; - entries[pos].code_object = code_object; - __pyx_code_cache.count++; - Py_INCREF(code_object); -} - -/* AddTraceback */ -#include "compile.h" -#include "frameobject.h" -#include "traceback.h" -static PyCodeObject* __Pyx_CreateCodeObjectForTraceback( - const char *funcname, int c_line, - int py_line, const char *filename) { - PyCodeObject *py_code = 0; - PyObject *py_srcfile = 0; - PyObject *py_funcname = 0; - #if PY_MAJOR_VERSION < 3 - py_srcfile = PyString_FromString(filename); - #else - py_srcfile = PyUnicode_FromString(filename); - #endif - if (!py_srcfile) goto bad; - if (c_line) { - #if PY_MAJOR_VERSION < 3 - py_funcname = PyString_FromFormat( "%s (%s:%d)", funcname, __pyx_cfilenm, c_line); - #else - py_funcname = PyUnicode_FromFormat( "%s (%s:%d)", funcname, __pyx_cfilenm, c_line); - #endif - } - else { - #if PY_MAJOR_VERSION < 3 - py_funcname = PyString_FromString(funcname); - #else - py_funcname = PyUnicode_FromString(funcname); - #endif - } - if (!py_funcname) goto bad; - py_code = __Pyx_PyCode_New( - 0, - 0, - 0, - 0, - 0, - __pyx_empty_bytes, /*PyObject *code,*/ - __pyx_empty_tuple, /*PyObject *consts,*/ - __pyx_empty_tuple, /*PyObject *names,*/ - __pyx_empty_tuple, /*PyObject *varnames,*/ - __pyx_empty_tuple, /*PyObject *freevars,*/ - __pyx_empty_tuple, /*PyObject *cellvars,*/ - py_srcfile, /*PyObject *filename,*/ - py_funcname, /*PyObject *name,*/ - py_line, - __pyx_empty_bytes /*PyObject *lnotab*/ - ); - Py_DECREF(py_srcfile); - Py_DECREF(py_funcname); - return py_code; -bad: - Py_XDECREF(py_srcfile); - Py_XDECREF(py_funcname); - return NULL; -} -static void __Pyx_AddTraceback(const char *funcname, int c_line, - int py_line, const char *filename) { - PyCodeObject *py_code = 0; - PyFrameObject *py_frame = 0; - PyThreadState *tstate = __Pyx_PyThreadState_Current; - if (c_line) { - c_line = __Pyx_CLineForTraceback(tstate, c_line); - } - py_code = __pyx_find_code_object(c_line ? -c_line : py_line); - if (!py_code) { - py_code = __Pyx_CreateCodeObjectForTraceback( - funcname, c_line, py_line, filename); - if (!py_code) goto bad; - __pyx_insert_code_object(c_line ? -c_line : py_line, py_code); - } - py_frame = PyFrame_New( - tstate, /*PyThreadState *tstate,*/ - py_code, /*PyCodeObject *code,*/ - __pyx_d, /*PyObject *globals,*/ - 0 /*PyObject *locals*/ - ); - if (!py_frame) goto bad; - __Pyx_PyFrame_SetLineNumber(py_frame, py_line); - PyTraceBack_Here(py_frame); -bad: - Py_XDECREF(py_code); - Py_XDECREF(py_frame); -} - -/* CIntFromPyVerify */ -#define __PYX_VERIFY_RETURN_INT(target_type, func_type, func_value)\ - __PYX__VERIFY_RETURN_INT(target_type, func_type, func_value, 0) -#define __PYX_VERIFY_RETURN_INT_EXC(target_type, func_type, func_value)\ - __PYX__VERIFY_RETURN_INT(target_type, func_type, func_value, 1) -#define __PYX__VERIFY_RETURN_INT(target_type, func_type, func_value, exc)\ - {\ - func_type value = func_value;\ - if (sizeof(target_type) < sizeof(func_type)) {\ - if (unlikely(value != (func_type) (target_type) value)) {\ - func_type zero = 0;\ - if (exc && unlikely(value == (func_type)-1 && PyErr_Occurred()))\ - return (target_type) -1;\ - if (is_unsigned && unlikely(value < zero))\ - goto raise_neg_overflow;\ - else\ - goto raise_overflow;\ - }\ - }\ - return (target_type) value;\ - } - -/* CIntToPy */ -static CYTHON_INLINE PyObject* __Pyx_PyInt_From_unsigned_int(unsigned int value) { - const unsigned int neg_one = (unsigned int) ((unsigned int) 0 - (unsigned int) 1), const_zero = (unsigned int) 0; - const int is_unsigned = neg_one > const_zero; - if (is_unsigned) { - if (sizeof(unsigned int) < sizeof(long)) { - return PyInt_FromLong((long) value); - } else if (sizeof(unsigned int) <= sizeof(unsigned long)) { - return PyLong_FromUnsignedLong((unsigned long) value); -#ifdef HAVE_LONG_LONG - } else if (sizeof(unsigned int) <= sizeof(unsigned PY_LONG_LONG)) { - return PyLong_FromUnsignedLongLong((unsigned PY_LONG_LONG) value); -#endif - } - } else { - if (sizeof(unsigned int) <= sizeof(long)) { - return PyInt_FromLong((long) value); -#ifdef HAVE_LONG_LONG - } else if (sizeof(unsigned int) <= sizeof(PY_LONG_LONG)) { - return PyLong_FromLongLong((PY_LONG_LONG) value); -#endif - } - } - { - int one = 1; int little = (int)*(unsigned char *)&one; - unsigned char *bytes = (unsigned char *)&value; - return _PyLong_FromByteArray(bytes, sizeof(unsigned int), - little, !is_unsigned); - } -} - -/* CIntToPy */ -static CYTHON_INLINE PyObject* __Pyx_PyInt_From_long(long value) { - const long neg_one = (long) ((long) 0 - (long) 1), const_zero = (long) 0; - const int is_unsigned = neg_one > const_zero; - if (is_unsigned) { - if (sizeof(long) < sizeof(long)) { - return PyInt_FromLong((long) value); - } else if (sizeof(long) <= sizeof(unsigned long)) { - return PyLong_FromUnsignedLong((unsigned long) value); -#ifdef HAVE_LONG_LONG - } else if (sizeof(long) <= sizeof(unsigned PY_LONG_LONG)) { - return PyLong_FromUnsignedLongLong((unsigned PY_LONG_LONG) value); -#endif - } - } else { - if (sizeof(long) <= sizeof(long)) { - return PyInt_FromLong((long) value); -#ifdef HAVE_LONG_LONG - } else if (sizeof(long) <= sizeof(PY_LONG_LONG)) { - return PyLong_FromLongLong((PY_LONG_LONG) value); -#endif - } - } - { - int one = 1; int little = (int)*(unsigned char *)&one; - unsigned char *bytes = (unsigned char *)&value; - return _PyLong_FromByteArray(bytes, sizeof(long), - little, !is_unsigned); - } -} - -/* CIntToPy */ -static CYTHON_INLINE PyObject* __Pyx_PyInt_From_uint16_t(uint16_t value) { - const uint16_t neg_one = (uint16_t) ((uint16_t) 0 - (uint16_t) 1), const_zero = (uint16_t) 0; - const int is_unsigned = neg_one > const_zero; - if (is_unsigned) { - if (sizeof(uint16_t) < sizeof(long)) { - return PyInt_FromLong((long) value); - } else if (sizeof(uint16_t) <= sizeof(unsigned long)) { - return PyLong_FromUnsignedLong((unsigned long) value); -#ifdef HAVE_LONG_LONG - } else if (sizeof(uint16_t) <= sizeof(unsigned PY_LONG_LONG)) { - return PyLong_FromUnsignedLongLong((unsigned PY_LONG_LONG) value); -#endif - } - } else { - if (sizeof(uint16_t) <= sizeof(long)) { - return PyInt_FromLong((long) value); -#ifdef HAVE_LONG_LONG - } else if (sizeof(uint16_t) <= sizeof(PY_LONG_LONG)) { - return PyLong_FromLongLong((PY_LONG_LONG) value); -#endif - } - } - { - int one = 1; int little = (int)*(unsigned char *)&one; - unsigned char *bytes = (unsigned char *)&value; - return _PyLong_FromByteArray(bytes, sizeof(uint16_t), - little, !is_unsigned); - } -} - -/* CIntFromPy */ -static CYTHON_INLINE unsigned int __Pyx_PyInt_As_unsigned_int(PyObject *x) { - const unsigned int neg_one = (unsigned int) ((unsigned int) 0 - (unsigned int) 1), const_zero = (unsigned int) 0; - const int is_unsigned = neg_one > const_zero; -#if PY_MAJOR_VERSION < 3 - if (likely(PyInt_Check(x))) { - if (sizeof(unsigned int) < sizeof(long)) { - __PYX_VERIFY_RETURN_INT(unsigned int, long, PyInt_AS_LONG(x)) - } else { - long val = PyInt_AS_LONG(x); - if (is_unsigned && unlikely(val < 0)) { - goto raise_neg_overflow; - } - return (unsigned int) val; - } - } else -#endif - if (likely(PyLong_Check(x))) { - if (is_unsigned) { -#if CYTHON_USE_PYLONG_INTERNALS - const digit* digits = ((PyLongObject*)x)->ob_digit; - switch (Py_SIZE(x)) { - case 0: return (unsigned int) 0; - case 1: __PYX_VERIFY_RETURN_INT(unsigned int, digit, digits[0]) - case 2: - if (8 * sizeof(unsigned int) > 1 * PyLong_SHIFT) { - if (8 * sizeof(unsigned long) > 2 * PyLong_SHIFT) { - __PYX_VERIFY_RETURN_INT(unsigned int, unsigned long, (((((unsigned long)digits[1]) << PyLong_SHIFT) | (unsigned long)digits[0]))) - } else if (8 * sizeof(unsigned int) >= 2 * PyLong_SHIFT) { - return (unsigned int) (((((unsigned int)digits[1]) << PyLong_SHIFT) | (unsigned int)digits[0])); - } - } - break; - case 3: - if (8 * sizeof(unsigned int) > 2 * PyLong_SHIFT) { - if (8 * sizeof(unsigned long) > 3 * PyLong_SHIFT) { - __PYX_VERIFY_RETURN_INT(unsigned int, unsigned long, (((((((unsigned long)digits[2]) << PyLong_SHIFT) | (unsigned long)digits[1]) << PyLong_SHIFT) | (unsigned long)digits[0]))) - } else if (8 * sizeof(unsigned int) >= 3 * PyLong_SHIFT) { - return (unsigned int) (((((((unsigned int)digits[2]) << PyLong_SHIFT) | (unsigned int)digits[1]) << PyLong_SHIFT) | (unsigned int)digits[0])); - } - } - break; - case 4: - if (8 * sizeof(unsigned int) > 3 * PyLong_SHIFT) { - if (8 * sizeof(unsigned long) > 4 * PyLong_SHIFT) { - __PYX_VERIFY_RETURN_INT(unsigned int, unsigned long, (((((((((unsigned long)digits[3]) << PyLong_SHIFT) | (unsigned long)digits[2]) << PyLong_SHIFT) | (unsigned long)digits[1]) << PyLong_SHIFT) | (unsigned long)digits[0]))) - } else if (8 * sizeof(unsigned int) >= 4 * PyLong_SHIFT) { - return (unsigned int) (((((((((unsigned int)digits[3]) << PyLong_SHIFT) | (unsigned int)digits[2]) << PyLong_SHIFT) | (unsigned int)digits[1]) << PyLong_SHIFT) | (unsigned int)digits[0])); - } - } - break; - } -#endif -#if CYTHON_COMPILING_IN_CPYTHON - if (unlikely(Py_SIZE(x) < 0)) { - goto raise_neg_overflow; - } -#else - { - int result = PyObject_RichCompareBool(x, Py_False, Py_LT); - if (unlikely(result < 0)) - return (unsigned int) -1; - if (unlikely(result == 1)) - goto raise_neg_overflow; - } -#endif - if (sizeof(unsigned int) <= sizeof(unsigned long)) { - __PYX_VERIFY_RETURN_INT_EXC(unsigned int, unsigned long, PyLong_AsUnsignedLong(x)) -#ifdef HAVE_LONG_LONG - } else if (sizeof(unsigned int) <= sizeof(unsigned PY_LONG_LONG)) { - __PYX_VERIFY_RETURN_INT_EXC(unsigned int, unsigned PY_LONG_LONG, PyLong_AsUnsignedLongLong(x)) -#endif - } - } else { -#if CYTHON_USE_PYLONG_INTERNALS - const digit* digits = ((PyLongObject*)x)->ob_digit; - switch (Py_SIZE(x)) { - case 0: return (unsigned int) 0; - case -1: __PYX_VERIFY_RETURN_INT(unsigned int, sdigit, (sdigit) (-(sdigit)digits[0])) - case 1: __PYX_VERIFY_RETURN_INT(unsigned int, digit, +digits[0]) - case -2: - if (8 * sizeof(unsigned int) - 1 > 1 * PyLong_SHIFT) { - if (8 * sizeof(unsigned long) > 2 * PyLong_SHIFT) { - __PYX_VERIFY_RETURN_INT(unsigned int, long, -(long) (((((unsigned long)digits[1]) << PyLong_SHIFT) | (unsigned long)digits[0]))) - } else if (8 * sizeof(unsigned int) - 1 > 2 * PyLong_SHIFT) { - return (unsigned int) (((unsigned int)-1)*(((((unsigned int)digits[1]) << PyLong_SHIFT) | (unsigned int)digits[0]))); - } - } - break; - case 2: - if (8 * sizeof(unsigned int) > 1 * PyLong_SHIFT) { - if (8 * sizeof(unsigned long) > 2 * PyLong_SHIFT) { - __PYX_VERIFY_RETURN_INT(unsigned int, unsigned long, (((((unsigned long)digits[1]) << PyLong_SHIFT) | (unsigned long)digits[0]))) - } else if (8 * sizeof(unsigned int) - 1 > 2 * PyLong_SHIFT) { - return (unsigned int) ((((((unsigned int)digits[1]) << PyLong_SHIFT) | (unsigned int)digits[0]))); - } - } - break; - case -3: - if (8 * sizeof(unsigned int) - 1 > 2 * PyLong_SHIFT) { - if (8 * sizeof(unsigned long) > 3 * PyLong_SHIFT) { - __PYX_VERIFY_RETURN_INT(unsigned int, long, -(long) (((((((unsigned long)digits[2]) << PyLong_SHIFT) | (unsigned long)digits[1]) << PyLong_SHIFT) | (unsigned long)digits[0]))) - } else if (8 * sizeof(unsigned int) - 1 > 3 * PyLong_SHIFT) { - return (unsigned int) (((unsigned int)-1)*(((((((unsigned int)digits[2]) << PyLong_SHIFT) | (unsigned int)digits[1]) << PyLong_SHIFT) | (unsigned int)digits[0]))); - } - } - break; - case 3: - if (8 * sizeof(unsigned int) > 2 * PyLong_SHIFT) { - if (8 * sizeof(unsigned long) > 3 * PyLong_SHIFT) { - __PYX_VERIFY_RETURN_INT(unsigned int, unsigned long, (((((((unsigned long)digits[2]) << PyLong_SHIFT) | (unsigned long)digits[1]) << PyLong_SHIFT) | (unsigned long)digits[0]))) - } else if (8 * sizeof(unsigned int) - 1 > 3 * PyLong_SHIFT) { - return (unsigned int) ((((((((unsigned int)digits[2]) << PyLong_SHIFT) | (unsigned int)digits[1]) << PyLong_SHIFT) | (unsigned int)digits[0]))); - } - } - break; - case -4: - if (8 * sizeof(unsigned int) - 1 > 3 * PyLong_SHIFT) { - if (8 * sizeof(unsigned long) > 4 * PyLong_SHIFT) { - __PYX_VERIFY_RETURN_INT(unsigned int, long, -(long) (((((((((unsigned long)digits[3]) << PyLong_SHIFT) | (unsigned long)digits[2]) << PyLong_SHIFT) | (unsigned long)digits[1]) << PyLong_SHIFT) | (unsigned long)digits[0]))) - } else if (8 * sizeof(unsigned int) - 1 > 4 * PyLong_SHIFT) { - return (unsigned int) (((unsigned int)-1)*(((((((((unsigned int)digits[3]) << PyLong_SHIFT) | (unsigned int)digits[2]) << PyLong_SHIFT) | (unsigned int)digits[1]) << PyLong_SHIFT) | (unsigned int)digits[0]))); - } - } - break; - case 4: - if (8 * sizeof(unsigned int) > 3 * PyLong_SHIFT) { - if (8 * sizeof(unsigned long) > 4 * PyLong_SHIFT) { - __PYX_VERIFY_RETURN_INT(unsigned int, unsigned long, (((((((((unsigned long)digits[3]) << PyLong_SHIFT) | (unsigned long)digits[2]) << PyLong_SHIFT) | (unsigned long)digits[1]) << PyLong_SHIFT) | (unsigned long)digits[0]))) - } else if (8 * sizeof(unsigned int) - 1 > 4 * PyLong_SHIFT) { - return (unsigned int) ((((((((((unsigned int)digits[3]) << PyLong_SHIFT) | (unsigned int)digits[2]) << PyLong_SHIFT) | (unsigned int)digits[1]) << PyLong_SHIFT) | (unsigned int)digits[0]))); - } - } - break; - } -#endif - if (sizeof(unsigned int) <= sizeof(long)) { - __PYX_VERIFY_RETURN_INT_EXC(unsigned int, long, PyLong_AsLong(x)) -#ifdef HAVE_LONG_LONG - } else if (sizeof(unsigned int) <= sizeof(PY_LONG_LONG)) { - __PYX_VERIFY_RETURN_INT_EXC(unsigned int, PY_LONG_LONG, PyLong_AsLongLong(x)) -#endif - } - } - { -#if CYTHON_COMPILING_IN_PYPY && !defined(_PyLong_AsByteArray) - PyErr_SetString(PyExc_RuntimeError, - "_PyLong_AsByteArray() not available in PyPy, cannot convert large numbers"); -#else - unsigned int val; - PyObject *v = __Pyx_PyNumber_IntOrLong(x); - #if PY_MAJOR_VERSION < 3 - if (likely(v) && !PyLong_Check(v)) { - PyObject *tmp = v; - v = PyNumber_Long(tmp); - Py_DECREF(tmp); - } - #endif - if (likely(v)) { - int one = 1; int is_little = (int)*(unsigned char *)&one; - unsigned char *bytes = (unsigned char *)&val; - int ret = _PyLong_AsByteArray((PyLongObject *)v, - bytes, sizeof(val), - is_little, !is_unsigned); - Py_DECREF(v); - if (likely(!ret)) - return val; - } -#endif - return (unsigned int) -1; - } - } else { - unsigned int val; - PyObject *tmp = __Pyx_PyNumber_IntOrLong(x); - if (!tmp) return (unsigned int) -1; - val = __Pyx_PyInt_As_unsigned_int(tmp); - Py_DECREF(tmp); - return val; - } -raise_overflow: - PyErr_SetString(PyExc_OverflowError, - "value too large to convert to unsigned int"); - return (unsigned int) -1; -raise_neg_overflow: - PyErr_SetString(PyExc_OverflowError, - "can't convert negative value to unsigned int"); - return (unsigned int) -1; -} - -/* CIntFromPy */ -static CYTHON_INLINE long __Pyx_PyInt_As_long(PyObject *x) { - const long neg_one = (long) ((long) 0 - (long) 1), const_zero = (long) 0; - const int is_unsigned = neg_one > const_zero; -#if PY_MAJOR_VERSION < 3 - if (likely(PyInt_Check(x))) { - if (sizeof(long) < sizeof(long)) { - __PYX_VERIFY_RETURN_INT(long, long, PyInt_AS_LONG(x)) - } else { - long val = PyInt_AS_LONG(x); - if (is_unsigned && unlikely(val < 0)) { - goto raise_neg_overflow; - } - return (long) val; - } - } else -#endif - if (likely(PyLong_Check(x))) { - if (is_unsigned) { -#if CYTHON_USE_PYLONG_INTERNALS - const digit* digits = ((PyLongObject*)x)->ob_digit; - switch (Py_SIZE(x)) { - case 0: return (long) 0; - case 1: __PYX_VERIFY_RETURN_INT(long, digit, digits[0]) - case 2: - if (8 * sizeof(long) > 1 * PyLong_SHIFT) { - if (8 * sizeof(unsigned long) > 2 * PyLong_SHIFT) { - __PYX_VERIFY_RETURN_INT(long, unsigned long, (((((unsigned long)digits[1]) << PyLong_SHIFT) | (unsigned long)digits[0]))) - } else if (8 * sizeof(long) >= 2 * PyLong_SHIFT) { - return (long) (((((long)digits[1]) << PyLong_SHIFT) | (long)digits[0])); - } - } - break; - case 3: - if (8 * sizeof(long) > 2 * PyLong_SHIFT) { - if (8 * sizeof(unsigned long) > 3 * PyLong_SHIFT) { - __PYX_VERIFY_RETURN_INT(long, unsigned long, (((((((unsigned long)digits[2]) << PyLong_SHIFT) | (unsigned long)digits[1]) << PyLong_SHIFT) | (unsigned long)digits[0]))) - } else if (8 * sizeof(long) >= 3 * PyLong_SHIFT) { - return (long) (((((((long)digits[2]) << PyLong_SHIFT) | (long)digits[1]) << PyLong_SHIFT) | (long)digits[0])); - } - } - break; - case 4: - if (8 * sizeof(long) > 3 * PyLong_SHIFT) { - if (8 * sizeof(unsigned long) > 4 * PyLong_SHIFT) { - __PYX_VERIFY_RETURN_INT(long, unsigned long, (((((((((unsigned long)digits[3]) << PyLong_SHIFT) | (unsigned long)digits[2]) << PyLong_SHIFT) | (unsigned long)digits[1]) << PyLong_SHIFT) | (unsigned long)digits[0]))) - } else if (8 * sizeof(long) >= 4 * PyLong_SHIFT) { - return (long) (((((((((long)digits[3]) << PyLong_SHIFT) | (long)digits[2]) << PyLong_SHIFT) | (long)digits[1]) << PyLong_SHIFT) | (long)digits[0])); - } - } - break; - } -#endif -#if CYTHON_COMPILING_IN_CPYTHON - if (unlikely(Py_SIZE(x) < 0)) { - goto raise_neg_overflow; - } -#else - { - int result = PyObject_RichCompareBool(x, Py_False, Py_LT); - if (unlikely(result < 0)) - return (long) -1; - if (unlikely(result == 1)) - goto raise_neg_overflow; - } -#endif - if (sizeof(long) <= sizeof(unsigned long)) { - __PYX_VERIFY_RETURN_INT_EXC(long, unsigned long, PyLong_AsUnsignedLong(x)) -#ifdef HAVE_LONG_LONG - } else if (sizeof(long) <= sizeof(unsigned PY_LONG_LONG)) { - __PYX_VERIFY_RETURN_INT_EXC(long, unsigned PY_LONG_LONG, PyLong_AsUnsignedLongLong(x)) -#endif - } - } else { -#if CYTHON_USE_PYLONG_INTERNALS - const digit* digits = ((PyLongObject*)x)->ob_digit; - switch (Py_SIZE(x)) { - case 0: return (long) 0; - case -1: __PYX_VERIFY_RETURN_INT(long, sdigit, (sdigit) (-(sdigit)digits[0])) - case 1: __PYX_VERIFY_RETURN_INT(long, digit, +digits[0]) - case -2: - if (8 * sizeof(long) - 1 > 1 * PyLong_SHIFT) { - if (8 * sizeof(unsigned long) > 2 * PyLong_SHIFT) { - __PYX_VERIFY_RETURN_INT(long, long, -(long) (((((unsigned long)digits[1]) << PyLong_SHIFT) | (unsigned long)digits[0]))) - } else if (8 * sizeof(long) - 1 > 2 * PyLong_SHIFT) { - return (long) (((long)-1)*(((((long)digits[1]) << PyLong_SHIFT) | (long)digits[0]))); - } - } - break; - case 2: - if (8 * sizeof(long) > 1 * PyLong_SHIFT) { - if (8 * sizeof(unsigned long) > 2 * PyLong_SHIFT) { - __PYX_VERIFY_RETURN_INT(long, unsigned long, (((((unsigned long)digits[1]) << PyLong_SHIFT) | (unsigned long)digits[0]))) - } else if (8 * sizeof(long) - 1 > 2 * PyLong_SHIFT) { - return (long) ((((((long)digits[1]) << PyLong_SHIFT) | (long)digits[0]))); - } - } - break; - case -3: - if (8 * sizeof(long) - 1 > 2 * PyLong_SHIFT) { - if (8 * sizeof(unsigned long) > 3 * PyLong_SHIFT) { - __PYX_VERIFY_RETURN_INT(long, long, -(long) (((((((unsigned long)digits[2]) << PyLong_SHIFT) | (unsigned long)digits[1]) << PyLong_SHIFT) | (unsigned long)digits[0]))) - } else if (8 * sizeof(long) - 1 > 3 * PyLong_SHIFT) { - return (long) (((long)-1)*(((((((long)digits[2]) << PyLong_SHIFT) | (long)digits[1]) << PyLong_SHIFT) | (long)digits[0]))); - } - } - break; - case 3: - if (8 * sizeof(long) > 2 * PyLong_SHIFT) { - if (8 * sizeof(unsigned long) > 3 * PyLong_SHIFT) { - __PYX_VERIFY_RETURN_INT(long, unsigned long, (((((((unsigned long)digits[2]) << PyLong_SHIFT) | (unsigned long)digits[1]) << PyLong_SHIFT) | (unsigned long)digits[0]))) - } else if (8 * sizeof(long) - 1 > 3 * PyLong_SHIFT) { - return (long) ((((((((long)digits[2]) << PyLong_SHIFT) | (long)digits[1]) << PyLong_SHIFT) | (long)digits[0]))); - } - } - break; - case -4: - if (8 * sizeof(long) - 1 > 3 * PyLong_SHIFT) { - if (8 * sizeof(unsigned long) > 4 * PyLong_SHIFT) { - __PYX_VERIFY_RETURN_INT(long, long, -(long) (((((((((unsigned long)digits[3]) << PyLong_SHIFT) | (unsigned long)digits[2]) << PyLong_SHIFT) | (unsigned long)digits[1]) << PyLong_SHIFT) | (unsigned long)digits[0]))) - } else if (8 * sizeof(long) - 1 > 4 * PyLong_SHIFT) { - return (long) (((long)-1)*(((((((((long)digits[3]) << PyLong_SHIFT) | (long)digits[2]) << PyLong_SHIFT) | (long)digits[1]) << PyLong_SHIFT) | (long)digits[0]))); - } - } - break; - case 4: - if (8 * sizeof(long) > 3 * PyLong_SHIFT) { - if (8 * sizeof(unsigned long) > 4 * PyLong_SHIFT) { - __PYX_VERIFY_RETURN_INT(long, unsigned long, (((((((((unsigned long)digits[3]) << PyLong_SHIFT) | (unsigned long)digits[2]) << PyLong_SHIFT) | (unsigned long)digits[1]) << PyLong_SHIFT) | (unsigned long)digits[0]))) - } else if (8 * sizeof(long) - 1 > 4 * PyLong_SHIFT) { - return (long) ((((((((((long)digits[3]) << PyLong_SHIFT) | (long)digits[2]) << PyLong_SHIFT) | (long)digits[1]) << PyLong_SHIFT) | (long)digits[0]))); - } - } - break; - } -#endif - if (sizeof(long) <= sizeof(long)) { - __PYX_VERIFY_RETURN_INT_EXC(long, long, PyLong_AsLong(x)) -#ifdef HAVE_LONG_LONG - } else if (sizeof(long) <= sizeof(PY_LONG_LONG)) { - __PYX_VERIFY_RETURN_INT_EXC(long, PY_LONG_LONG, PyLong_AsLongLong(x)) -#endif - } - } - { -#if CYTHON_COMPILING_IN_PYPY && !defined(_PyLong_AsByteArray) - PyErr_SetString(PyExc_RuntimeError, - "_PyLong_AsByteArray() not available in PyPy, cannot convert large numbers"); -#else - long val; - PyObject *v = __Pyx_PyNumber_IntOrLong(x); - #if PY_MAJOR_VERSION < 3 - if (likely(v) && !PyLong_Check(v)) { - PyObject *tmp = v; - v = PyNumber_Long(tmp); - Py_DECREF(tmp); - } - #endif - if (likely(v)) { - int one = 1; int is_little = (int)*(unsigned char *)&one; - unsigned char *bytes = (unsigned char *)&val; - int ret = _PyLong_AsByteArray((PyLongObject *)v, - bytes, sizeof(val), - is_little, !is_unsigned); - Py_DECREF(v); - if (likely(!ret)) - return val; - } -#endif - return (long) -1; - } - } else { - long val; - PyObject *tmp = __Pyx_PyNumber_IntOrLong(x); - if (!tmp) return (long) -1; - val = __Pyx_PyInt_As_long(tmp); - Py_DECREF(tmp); - return val; - } -raise_overflow: - PyErr_SetString(PyExc_OverflowError, - "value too large to convert to long"); - return (long) -1; -raise_neg_overflow: - PyErr_SetString(PyExc_OverflowError, - "can't convert negative value to long"); - return (long) -1; -} - -/* CIntFromPy */ -static CYTHON_INLINE uint16_t __Pyx_PyInt_As_uint16_t(PyObject *x) { - const uint16_t neg_one = (uint16_t) ((uint16_t) 0 - (uint16_t) 1), const_zero = (uint16_t) 0; - const int is_unsigned = neg_one > const_zero; -#if PY_MAJOR_VERSION < 3 - if (likely(PyInt_Check(x))) { - if (sizeof(uint16_t) < sizeof(long)) { - __PYX_VERIFY_RETURN_INT(uint16_t, long, PyInt_AS_LONG(x)) - } else { - long val = PyInt_AS_LONG(x); - if (is_unsigned && unlikely(val < 0)) { - goto raise_neg_overflow; - } - return (uint16_t) val; - } - } else -#endif - if (likely(PyLong_Check(x))) { - if (is_unsigned) { -#if CYTHON_USE_PYLONG_INTERNALS - const digit* digits = ((PyLongObject*)x)->ob_digit; - switch (Py_SIZE(x)) { - case 0: return (uint16_t) 0; - case 1: __PYX_VERIFY_RETURN_INT(uint16_t, digit, digits[0]) - case 2: - if (8 * sizeof(uint16_t) > 1 * PyLong_SHIFT) { - if (8 * sizeof(unsigned long) > 2 * PyLong_SHIFT) { - __PYX_VERIFY_RETURN_INT(uint16_t, unsigned long, (((((unsigned long)digits[1]) << PyLong_SHIFT) | (unsigned long)digits[0]))) - } else if (8 * sizeof(uint16_t) >= 2 * PyLong_SHIFT) { - return (uint16_t) (((((uint16_t)digits[1]) << PyLong_SHIFT) | (uint16_t)digits[0])); - } - } - break; - case 3: - if (8 * sizeof(uint16_t) > 2 * PyLong_SHIFT) { - if (8 * sizeof(unsigned long) > 3 * PyLong_SHIFT) { - __PYX_VERIFY_RETURN_INT(uint16_t, unsigned long, (((((((unsigned long)digits[2]) << PyLong_SHIFT) | (unsigned long)digits[1]) << PyLong_SHIFT) | (unsigned long)digits[0]))) - } else if (8 * sizeof(uint16_t) >= 3 * PyLong_SHIFT) { - return (uint16_t) (((((((uint16_t)digits[2]) << PyLong_SHIFT) | (uint16_t)digits[1]) << PyLong_SHIFT) | (uint16_t)digits[0])); - } - } - break; - case 4: - if (8 * sizeof(uint16_t) > 3 * PyLong_SHIFT) { - if (8 * sizeof(unsigned long) > 4 * PyLong_SHIFT) { - __PYX_VERIFY_RETURN_INT(uint16_t, unsigned long, (((((((((unsigned long)digits[3]) << PyLong_SHIFT) | (unsigned long)digits[2]) << PyLong_SHIFT) | (unsigned long)digits[1]) << PyLong_SHIFT) | (unsigned long)digits[0]))) - } else if (8 * sizeof(uint16_t) >= 4 * PyLong_SHIFT) { - return (uint16_t) (((((((((uint16_t)digits[3]) << PyLong_SHIFT) | (uint16_t)digits[2]) << PyLong_SHIFT) | (uint16_t)digits[1]) << PyLong_SHIFT) | (uint16_t)digits[0])); - } - } - break; - } -#endif -#if CYTHON_COMPILING_IN_CPYTHON - if (unlikely(Py_SIZE(x) < 0)) { - goto raise_neg_overflow; - } -#else - { - int result = PyObject_RichCompareBool(x, Py_False, Py_LT); - if (unlikely(result < 0)) - return (uint16_t) -1; - if (unlikely(result == 1)) - goto raise_neg_overflow; - } -#endif - if (sizeof(uint16_t) <= sizeof(unsigned long)) { - __PYX_VERIFY_RETURN_INT_EXC(uint16_t, unsigned long, PyLong_AsUnsignedLong(x)) -#ifdef HAVE_LONG_LONG - } else if (sizeof(uint16_t) <= sizeof(unsigned PY_LONG_LONG)) { - __PYX_VERIFY_RETURN_INT_EXC(uint16_t, unsigned PY_LONG_LONG, PyLong_AsUnsignedLongLong(x)) -#endif - } - } else { -#if CYTHON_USE_PYLONG_INTERNALS - const digit* digits = ((PyLongObject*)x)->ob_digit; - switch (Py_SIZE(x)) { - case 0: return (uint16_t) 0; - case -1: __PYX_VERIFY_RETURN_INT(uint16_t, sdigit, (sdigit) (-(sdigit)digits[0])) - case 1: __PYX_VERIFY_RETURN_INT(uint16_t, digit, +digits[0]) - case -2: - if (8 * sizeof(uint16_t) - 1 > 1 * PyLong_SHIFT) { - if (8 * sizeof(unsigned long) > 2 * PyLong_SHIFT) { - __PYX_VERIFY_RETURN_INT(uint16_t, long, -(long) (((((unsigned long)digits[1]) << PyLong_SHIFT) | (unsigned long)digits[0]))) - } else if (8 * sizeof(uint16_t) - 1 > 2 * PyLong_SHIFT) { - return (uint16_t) (((uint16_t)-1)*(((((uint16_t)digits[1]) << PyLong_SHIFT) | (uint16_t)digits[0]))); - } - } - break; - case 2: - if (8 * sizeof(uint16_t) > 1 * PyLong_SHIFT) { - if (8 * sizeof(unsigned long) > 2 * PyLong_SHIFT) { - __PYX_VERIFY_RETURN_INT(uint16_t, unsigned long, (((((unsigned long)digits[1]) << PyLong_SHIFT) | (unsigned long)digits[0]))) - } else if (8 * sizeof(uint16_t) - 1 > 2 * PyLong_SHIFT) { - return (uint16_t) ((((((uint16_t)digits[1]) << PyLong_SHIFT) | (uint16_t)digits[0]))); - } - } - break; - case -3: - if (8 * sizeof(uint16_t) - 1 > 2 * PyLong_SHIFT) { - if (8 * sizeof(unsigned long) > 3 * PyLong_SHIFT) { - __PYX_VERIFY_RETURN_INT(uint16_t, long, -(long) (((((((unsigned long)digits[2]) << PyLong_SHIFT) | (unsigned long)digits[1]) << PyLong_SHIFT) | (unsigned long)digits[0]))) - } else if (8 * sizeof(uint16_t) - 1 > 3 * PyLong_SHIFT) { - return (uint16_t) (((uint16_t)-1)*(((((((uint16_t)digits[2]) << PyLong_SHIFT) | (uint16_t)digits[1]) << PyLong_SHIFT) | (uint16_t)digits[0]))); - } - } - break; - case 3: - if (8 * sizeof(uint16_t) > 2 * PyLong_SHIFT) { - if (8 * sizeof(unsigned long) > 3 * PyLong_SHIFT) { - __PYX_VERIFY_RETURN_INT(uint16_t, unsigned long, (((((((unsigned long)digits[2]) << PyLong_SHIFT) | (unsigned long)digits[1]) << PyLong_SHIFT) | (unsigned long)digits[0]))) - } else if (8 * sizeof(uint16_t) - 1 > 3 * PyLong_SHIFT) { - return (uint16_t) ((((((((uint16_t)digits[2]) << PyLong_SHIFT) | (uint16_t)digits[1]) << PyLong_SHIFT) | (uint16_t)digits[0]))); - } - } - break; - case -4: - if (8 * sizeof(uint16_t) - 1 > 3 * PyLong_SHIFT) { - if (8 * sizeof(unsigned long) > 4 * PyLong_SHIFT) { - __PYX_VERIFY_RETURN_INT(uint16_t, long, -(long) (((((((((unsigned long)digits[3]) << PyLong_SHIFT) | (unsigned long)digits[2]) << PyLong_SHIFT) | (unsigned long)digits[1]) << PyLong_SHIFT) | (unsigned long)digits[0]))) - } else if (8 * sizeof(uint16_t) - 1 > 4 * PyLong_SHIFT) { - return (uint16_t) (((uint16_t)-1)*(((((((((uint16_t)digits[3]) << PyLong_SHIFT) | (uint16_t)digits[2]) << PyLong_SHIFT) | (uint16_t)digits[1]) << PyLong_SHIFT) | (uint16_t)digits[0]))); - } - } - break; - case 4: - if (8 * sizeof(uint16_t) > 3 * PyLong_SHIFT) { - if (8 * sizeof(unsigned long) > 4 * PyLong_SHIFT) { - __PYX_VERIFY_RETURN_INT(uint16_t, unsigned long, (((((((((unsigned long)digits[3]) << PyLong_SHIFT) | (unsigned long)digits[2]) << PyLong_SHIFT) | (unsigned long)digits[1]) << PyLong_SHIFT) | (unsigned long)digits[0]))) - } else if (8 * sizeof(uint16_t) - 1 > 4 * PyLong_SHIFT) { - return (uint16_t) ((((((((((uint16_t)digits[3]) << PyLong_SHIFT) | (uint16_t)digits[2]) << PyLong_SHIFT) | (uint16_t)digits[1]) << PyLong_SHIFT) | (uint16_t)digits[0]))); - } - } - break; - } -#endif - if (sizeof(uint16_t) <= sizeof(long)) { - __PYX_VERIFY_RETURN_INT_EXC(uint16_t, long, PyLong_AsLong(x)) -#ifdef HAVE_LONG_LONG - } else if (sizeof(uint16_t) <= sizeof(PY_LONG_LONG)) { - __PYX_VERIFY_RETURN_INT_EXC(uint16_t, PY_LONG_LONG, PyLong_AsLongLong(x)) -#endif - } - } - { -#if CYTHON_COMPILING_IN_PYPY && !defined(_PyLong_AsByteArray) - PyErr_SetString(PyExc_RuntimeError, - "_PyLong_AsByteArray() not available in PyPy, cannot convert large numbers"); -#else - uint16_t val; - PyObject *v = __Pyx_PyNumber_IntOrLong(x); - #if PY_MAJOR_VERSION < 3 - if (likely(v) && !PyLong_Check(v)) { - PyObject *tmp = v; - v = PyNumber_Long(tmp); - Py_DECREF(tmp); - } - #endif - if (likely(v)) { - int one = 1; int is_little = (int)*(unsigned char *)&one; - unsigned char *bytes = (unsigned char *)&val; - int ret = _PyLong_AsByteArray((PyLongObject *)v, - bytes, sizeof(val), - is_little, !is_unsigned); - Py_DECREF(v); - if (likely(!ret)) - return val; - } -#endif - return (uint16_t) -1; - } - } else { - uint16_t val; - PyObject *tmp = __Pyx_PyNumber_IntOrLong(x); - if (!tmp) return (uint16_t) -1; - val = __Pyx_PyInt_As_uint16_t(tmp); - Py_DECREF(tmp); - return val; - } -raise_overflow: - PyErr_SetString(PyExc_OverflowError, - "value too large to convert to uint16_t"); - return (uint16_t) -1; -raise_neg_overflow: - PyErr_SetString(PyExc_OverflowError, - "can't convert negative value to uint16_t"); - return (uint16_t) -1; -} - -/* CIntFromPy */ -static CYTHON_INLINE int __Pyx_PyInt_As_int(PyObject *x) { - const int neg_one = (int) ((int) 0 - (int) 1), const_zero = (int) 0; - const int is_unsigned = neg_one > const_zero; -#if PY_MAJOR_VERSION < 3 - if (likely(PyInt_Check(x))) { - if (sizeof(int) < sizeof(long)) { - __PYX_VERIFY_RETURN_INT(int, long, PyInt_AS_LONG(x)) - } else { - long val = PyInt_AS_LONG(x); - if (is_unsigned && unlikely(val < 0)) { - goto raise_neg_overflow; - } - return (int) val; - } - } else -#endif - if (likely(PyLong_Check(x))) { - if (is_unsigned) { -#if CYTHON_USE_PYLONG_INTERNALS - const digit* digits = ((PyLongObject*)x)->ob_digit; - switch (Py_SIZE(x)) { - case 0: return (int) 0; - case 1: __PYX_VERIFY_RETURN_INT(int, digit, digits[0]) - case 2: - if (8 * sizeof(int) > 1 * PyLong_SHIFT) { - if (8 * sizeof(unsigned long) > 2 * PyLong_SHIFT) { - __PYX_VERIFY_RETURN_INT(int, unsigned long, (((((unsigned long)digits[1]) << PyLong_SHIFT) | (unsigned long)digits[0]))) - } else if (8 * sizeof(int) >= 2 * PyLong_SHIFT) { - return (int) (((((int)digits[1]) << PyLong_SHIFT) | (int)digits[0])); - } - } - break; - case 3: - if (8 * sizeof(int) > 2 * PyLong_SHIFT) { - if (8 * sizeof(unsigned long) > 3 * PyLong_SHIFT) { - __PYX_VERIFY_RETURN_INT(int, unsigned long, (((((((unsigned long)digits[2]) << PyLong_SHIFT) | (unsigned long)digits[1]) << PyLong_SHIFT) | (unsigned long)digits[0]))) - } else if (8 * sizeof(int) >= 3 * PyLong_SHIFT) { - return (int) (((((((int)digits[2]) << PyLong_SHIFT) | (int)digits[1]) << PyLong_SHIFT) | (int)digits[0])); - } - } - break; - case 4: - if (8 * sizeof(int) > 3 * PyLong_SHIFT) { - if (8 * sizeof(unsigned long) > 4 * PyLong_SHIFT) { - __PYX_VERIFY_RETURN_INT(int, unsigned long, (((((((((unsigned long)digits[3]) << PyLong_SHIFT) | (unsigned long)digits[2]) << PyLong_SHIFT) | (unsigned long)digits[1]) << PyLong_SHIFT) | (unsigned long)digits[0]))) - } else if (8 * sizeof(int) >= 4 * PyLong_SHIFT) { - return (int) (((((((((int)digits[3]) << PyLong_SHIFT) | (int)digits[2]) << PyLong_SHIFT) | (int)digits[1]) << PyLong_SHIFT) | (int)digits[0])); - } - } - break; - } -#endif -#if CYTHON_COMPILING_IN_CPYTHON - if (unlikely(Py_SIZE(x) < 0)) { - goto raise_neg_overflow; - } -#else - { - int result = PyObject_RichCompareBool(x, Py_False, Py_LT); - if (unlikely(result < 0)) - return (int) -1; - if (unlikely(result == 1)) - goto raise_neg_overflow; - } -#endif - if (sizeof(int) <= sizeof(unsigned long)) { - __PYX_VERIFY_RETURN_INT_EXC(int, unsigned long, PyLong_AsUnsignedLong(x)) -#ifdef HAVE_LONG_LONG - } else if (sizeof(int) <= sizeof(unsigned PY_LONG_LONG)) { - __PYX_VERIFY_RETURN_INT_EXC(int, unsigned PY_LONG_LONG, PyLong_AsUnsignedLongLong(x)) -#endif - } - } else { -#if CYTHON_USE_PYLONG_INTERNALS - const digit* digits = ((PyLongObject*)x)->ob_digit; - switch (Py_SIZE(x)) { - case 0: return (int) 0; - case -1: __PYX_VERIFY_RETURN_INT(int, sdigit, (sdigit) (-(sdigit)digits[0])) - case 1: __PYX_VERIFY_RETURN_INT(int, digit, +digits[0]) - case -2: - if (8 * sizeof(int) - 1 > 1 * PyLong_SHIFT) { - if (8 * sizeof(unsigned long) > 2 * PyLong_SHIFT) { - __PYX_VERIFY_RETURN_INT(int, long, -(long) (((((unsigned long)digits[1]) << PyLong_SHIFT) | (unsigned long)digits[0]))) - } else if (8 * sizeof(int) - 1 > 2 * PyLong_SHIFT) { - return (int) (((int)-1)*(((((int)digits[1]) << PyLong_SHIFT) | (int)digits[0]))); - } - } - break; - case 2: - if (8 * sizeof(int) > 1 * PyLong_SHIFT) { - if (8 * sizeof(unsigned long) > 2 * PyLong_SHIFT) { - __PYX_VERIFY_RETURN_INT(int, unsigned long, (((((unsigned long)digits[1]) << PyLong_SHIFT) | (unsigned long)digits[0]))) - } else if (8 * sizeof(int) - 1 > 2 * PyLong_SHIFT) { - return (int) ((((((int)digits[1]) << PyLong_SHIFT) | (int)digits[0]))); - } - } - break; - case -3: - if (8 * sizeof(int) - 1 > 2 * PyLong_SHIFT) { - if (8 * sizeof(unsigned long) > 3 * PyLong_SHIFT) { - __PYX_VERIFY_RETURN_INT(int, long, -(long) (((((((unsigned long)digits[2]) << PyLong_SHIFT) | (unsigned long)digits[1]) << PyLong_SHIFT) | (unsigned long)digits[0]))) - } else if (8 * sizeof(int) - 1 > 3 * PyLong_SHIFT) { - return (int) (((int)-1)*(((((((int)digits[2]) << PyLong_SHIFT) | (int)digits[1]) << PyLong_SHIFT) | (int)digits[0]))); - } - } - break; - case 3: - if (8 * sizeof(int) > 2 * PyLong_SHIFT) { - if (8 * sizeof(unsigned long) > 3 * PyLong_SHIFT) { - __PYX_VERIFY_RETURN_INT(int, unsigned long, (((((((unsigned long)digits[2]) << PyLong_SHIFT) | (unsigned long)digits[1]) << PyLong_SHIFT) | (unsigned long)digits[0]))) - } else if (8 * sizeof(int) - 1 > 3 * PyLong_SHIFT) { - return (int) ((((((((int)digits[2]) << PyLong_SHIFT) | (int)digits[1]) << PyLong_SHIFT) | (int)digits[0]))); - } - } - break; - case -4: - if (8 * sizeof(int) - 1 > 3 * PyLong_SHIFT) { - if (8 * sizeof(unsigned long) > 4 * PyLong_SHIFT) { - __PYX_VERIFY_RETURN_INT(int, long, -(long) (((((((((unsigned long)digits[3]) << PyLong_SHIFT) | (unsigned long)digits[2]) << PyLong_SHIFT) | (unsigned long)digits[1]) << PyLong_SHIFT) | (unsigned long)digits[0]))) - } else if (8 * sizeof(int) - 1 > 4 * PyLong_SHIFT) { - return (int) (((int)-1)*(((((((((int)digits[3]) << PyLong_SHIFT) | (int)digits[2]) << PyLong_SHIFT) | (int)digits[1]) << PyLong_SHIFT) | (int)digits[0]))); - } - } - break; - case 4: - if (8 * sizeof(int) > 3 * PyLong_SHIFT) { - if (8 * sizeof(unsigned long) > 4 * PyLong_SHIFT) { - __PYX_VERIFY_RETURN_INT(int, unsigned long, (((((((((unsigned long)digits[3]) << PyLong_SHIFT) | (unsigned long)digits[2]) << PyLong_SHIFT) | (unsigned long)digits[1]) << PyLong_SHIFT) | (unsigned long)digits[0]))) - } else if (8 * sizeof(int) - 1 > 4 * PyLong_SHIFT) { - return (int) ((((((((((int)digits[3]) << PyLong_SHIFT) | (int)digits[2]) << PyLong_SHIFT) | (int)digits[1]) << PyLong_SHIFT) | (int)digits[0]))); - } - } - break; - } -#endif - if (sizeof(int) <= sizeof(long)) { - __PYX_VERIFY_RETURN_INT_EXC(int, long, PyLong_AsLong(x)) -#ifdef HAVE_LONG_LONG - } else if (sizeof(int) <= sizeof(PY_LONG_LONG)) { - __PYX_VERIFY_RETURN_INT_EXC(int, PY_LONG_LONG, PyLong_AsLongLong(x)) -#endif - } - } - { -#if CYTHON_COMPILING_IN_PYPY && !defined(_PyLong_AsByteArray) - PyErr_SetString(PyExc_RuntimeError, - "_PyLong_AsByteArray() not available in PyPy, cannot convert large numbers"); -#else - int val; - PyObject *v = __Pyx_PyNumber_IntOrLong(x); - #if PY_MAJOR_VERSION < 3 - if (likely(v) && !PyLong_Check(v)) { - PyObject *tmp = v; - v = PyNumber_Long(tmp); - Py_DECREF(tmp); - } - #endif - if (likely(v)) { - int one = 1; int is_little = (int)*(unsigned char *)&one; - unsigned char *bytes = (unsigned char *)&val; - int ret = _PyLong_AsByteArray((PyLongObject *)v, - bytes, sizeof(val), - is_little, !is_unsigned); - Py_DECREF(v); - if (likely(!ret)) - return val; - } -#endif - return (int) -1; - } - } else { - int val; - PyObject *tmp = __Pyx_PyNumber_IntOrLong(x); - if (!tmp) return (int) -1; - val = __Pyx_PyInt_As_int(tmp); - Py_DECREF(tmp); - return val; - } -raise_overflow: - PyErr_SetString(PyExc_OverflowError, - "value too large to convert to int"); - return (int) -1; -raise_neg_overflow: - PyErr_SetString(PyExc_OverflowError, - "can't convert negative value to int"); - return (int) -1; -} - -/* FastTypeChecks */ -#if CYTHON_COMPILING_IN_CPYTHON -static int __Pyx_InBases(PyTypeObject *a, PyTypeObject *b) { - while (a) { - a = a->tp_base; - if (a == b) - return 1; - } - return b == &PyBaseObject_Type; -} -static CYTHON_INLINE int __Pyx_IsSubtype(PyTypeObject *a, PyTypeObject *b) { - PyObject *mro; - if (a == b) return 1; - mro = a->tp_mro; - if (likely(mro)) { - Py_ssize_t i, n; - n = PyTuple_GET_SIZE(mro); - for (i = 0; i < n; i++) { - if (PyTuple_GET_ITEM(mro, i) == (PyObject *)b) - return 1; - } - return 0; - } - return __Pyx_InBases(a, b); -} -#if PY_MAJOR_VERSION == 2 -static int __Pyx_inner_PyErr_GivenExceptionMatches2(PyObject *err, PyObject* exc_type1, PyObject* exc_type2) { - PyObject *exception, *value, *tb; - int res; - __Pyx_PyThreadState_declare - __Pyx_PyThreadState_assign - __Pyx_ErrFetch(&exception, &value, &tb); - res = exc_type1 ? PyObject_IsSubclass(err, exc_type1) : 0; - if (unlikely(res == -1)) { - PyErr_WriteUnraisable(err); - res = 0; - } - if (!res) { - res = PyObject_IsSubclass(err, exc_type2); - if (unlikely(res == -1)) { - PyErr_WriteUnraisable(err); - res = 0; - } - } - __Pyx_ErrRestore(exception, value, tb); - return res; -} -#else -static CYTHON_INLINE int __Pyx_inner_PyErr_GivenExceptionMatches2(PyObject *err, PyObject* exc_type1, PyObject *exc_type2) { - int res = exc_type1 ? __Pyx_IsSubtype((PyTypeObject*)err, (PyTypeObject*)exc_type1) : 0; - if (!res) { - res = __Pyx_IsSubtype((PyTypeObject*)err, (PyTypeObject*)exc_type2); - } - return res; -} -#endif -static int __Pyx_PyErr_GivenExceptionMatchesTuple(PyObject *exc_type, PyObject *tuple) { - Py_ssize_t i, n; - assert(PyExceptionClass_Check(exc_type)); - n = PyTuple_GET_SIZE(tuple); -#if PY_MAJOR_VERSION >= 3 - for (i=0; ip) { - #if PY_MAJOR_VERSION < 3 - if (t->is_unicode) { - *t->p = PyUnicode_DecodeUTF8(t->s, t->n - 1, NULL); - } else if (t->intern) { - *t->p = PyString_InternFromString(t->s); - } else { - *t->p = PyString_FromStringAndSize(t->s, t->n - 1); - } - #else - if (t->is_unicode | t->is_str) { - if (t->intern) { - *t->p = PyUnicode_InternFromString(t->s); - } else if (t->encoding) { - *t->p = PyUnicode_Decode(t->s, t->n - 1, t->encoding, NULL); - } else { - *t->p = PyUnicode_FromStringAndSize(t->s, t->n - 1); - } - } else { - *t->p = PyBytes_FromStringAndSize(t->s, t->n - 1); - } - #endif - if (!*t->p) - return -1; - if (PyObject_Hash(*t->p) == -1) - return -1; - ++t; - } - return 0; -} - -static CYTHON_INLINE PyObject* __Pyx_PyUnicode_FromString(const char* c_str) { - return __Pyx_PyUnicode_FromStringAndSize(c_str, (Py_ssize_t)strlen(c_str)); -} -static CYTHON_INLINE const char* __Pyx_PyObject_AsString(PyObject* o) { - Py_ssize_t ignore; - return __Pyx_PyObject_AsStringAndSize(o, &ignore); -} -#if __PYX_DEFAULT_STRING_ENCODING_IS_ASCII || __PYX_DEFAULT_STRING_ENCODING_IS_DEFAULT -#if !CYTHON_PEP393_ENABLED -static const char* __Pyx_PyUnicode_AsStringAndSize(PyObject* o, Py_ssize_t *length) { - char* defenc_c; - PyObject* defenc = _PyUnicode_AsDefaultEncodedString(o, NULL); - if (!defenc) return NULL; - defenc_c = PyBytes_AS_STRING(defenc); -#if __PYX_DEFAULT_STRING_ENCODING_IS_ASCII - { - char* end = defenc_c + PyBytes_GET_SIZE(defenc); - char* c; - for (c = defenc_c; c < end; c++) { - if ((unsigned char) (*c) >= 128) { - PyUnicode_AsASCIIString(o); - return NULL; - } - } - } -#endif - *length = PyBytes_GET_SIZE(defenc); - return defenc_c; -} -#else -static CYTHON_INLINE const char* __Pyx_PyUnicode_AsStringAndSize(PyObject* o, Py_ssize_t *length) { - if (unlikely(__Pyx_PyUnicode_READY(o) == -1)) return NULL; -#if __PYX_DEFAULT_STRING_ENCODING_IS_ASCII - if (likely(PyUnicode_IS_ASCII(o))) { - *length = PyUnicode_GET_LENGTH(o); - return PyUnicode_AsUTF8(o); - } else { - PyUnicode_AsASCIIString(o); - return NULL; - } -#else - return PyUnicode_AsUTF8AndSize(o, length); -#endif -} -#endif -#endif -static CYTHON_INLINE const char* __Pyx_PyObject_AsStringAndSize(PyObject* o, Py_ssize_t *length) { -#if __PYX_DEFAULT_STRING_ENCODING_IS_ASCII || __PYX_DEFAULT_STRING_ENCODING_IS_DEFAULT - if ( -#if PY_MAJOR_VERSION < 3 && __PYX_DEFAULT_STRING_ENCODING_IS_ASCII - __Pyx_sys_getdefaultencoding_not_ascii && -#endif - PyUnicode_Check(o)) { - return __Pyx_PyUnicode_AsStringAndSize(o, length); - } else -#endif -#if (!CYTHON_COMPILING_IN_PYPY) || (defined(PyByteArray_AS_STRING) && defined(PyByteArray_GET_SIZE)) - if (PyByteArray_Check(o)) { - *length = PyByteArray_GET_SIZE(o); - return PyByteArray_AS_STRING(o); - } else -#endif - { - char* result; - int r = PyBytes_AsStringAndSize(o, &result, length); - if (unlikely(r < 0)) { - return NULL; - } else { - return result; - } - } -} -static CYTHON_INLINE int __Pyx_PyObject_IsTrue(PyObject* x) { - int is_true = x == Py_True; - if (is_true | (x == Py_False) | (x == Py_None)) return is_true; - else return PyObject_IsTrue(x); -} -static CYTHON_INLINE int __Pyx_PyObject_IsTrueAndDecref(PyObject* x) { - int retval; - if (unlikely(!x)) return -1; - retval = __Pyx_PyObject_IsTrue(x); - Py_DECREF(x); - return retval; -} -static PyObject* __Pyx_PyNumber_IntOrLongWrongResultType(PyObject* result, const char* type_name) { -#if PY_MAJOR_VERSION >= 3 - if (PyLong_Check(result)) { - if (PyErr_WarnFormat(PyExc_DeprecationWarning, 1, - "__int__ returned non-int (type %.200s). " - "The ability to return an instance of a strict subclass of int " - "is deprecated, and may be removed in a future version of Python.", - Py_TYPE(result)->tp_name)) { - Py_DECREF(result); - return NULL; - } - return result; - } -#endif - PyErr_Format(PyExc_TypeError, - "__%.4s__ returned non-%.4s (type %.200s)", - type_name, type_name, Py_TYPE(result)->tp_name); - Py_DECREF(result); - return NULL; -} -static CYTHON_INLINE PyObject* __Pyx_PyNumber_IntOrLong(PyObject* x) { -#if CYTHON_USE_TYPE_SLOTS - PyNumberMethods *m; -#endif - const char *name = NULL; - PyObject *res = NULL; -#if PY_MAJOR_VERSION < 3 - if (likely(PyInt_Check(x) || PyLong_Check(x))) -#else - if (likely(PyLong_Check(x))) -#endif - return __Pyx_NewRef(x); -#if CYTHON_USE_TYPE_SLOTS - m = Py_TYPE(x)->tp_as_number; - #if PY_MAJOR_VERSION < 3 - if (m && m->nb_int) { - name = "int"; - res = m->nb_int(x); - } - else if (m && m->nb_long) { - name = "long"; - res = m->nb_long(x); - } - #else - if (likely(m && m->nb_int)) { - name = "int"; - res = m->nb_int(x); - } - #endif -#else - if (!PyBytes_CheckExact(x) && !PyUnicode_CheckExact(x)) { - res = PyNumber_Int(x); - } -#endif - if (likely(res)) { -#if PY_MAJOR_VERSION < 3 - if (unlikely(!PyInt_Check(res) && !PyLong_Check(res))) { -#else - if (unlikely(!PyLong_CheckExact(res))) { -#endif - return __Pyx_PyNumber_IntOrLongWrongResultType(res, name); - } - } - else if (!PyErr_Occurred()) { - PyErr_SetString(PyExc_TypeError, - "an integer is required"); - } - return res; -} -static CYTHON_INLINE Py_ssize_t __Pyx_PyIndex_AsSsize_t(PyObject* b) { - Py_ssize_t ival; - PyObject *x; -#if PY_MAJOR_VERSION < 3 - if (likely(PyInt_CheckExact(b))) { - if (sizeof(Py_ssize_t) >= sizeof(long)) - return PyInt_AS_LONG(b); - else - return PyInt_AsSsize_t(b); - } -#endif - if (likely(PyLong_CheckExact(b))) { - #if CYTHON_USE_PYLONG_INTERNALS - const digit* digits = ((PyLongObject*)b)->ob_digit; - const Py_ssize_t size = Py_SIZE(b); - if (likely(__Pyx_sst_abs(size) <= 1)) { - ival = likely(size) ? digits[0] : 0; - if (size == -1) ival = -ival; - return ival; - } else { - switch (size) { - case 2: - if (8 * sizeof(Py_ssize_t) > 2 * PyLong_SHIFT) { - return (Py_ssize_t) (((((size_t)digits[1]) << PyLong_SHIFT) | (size_t)digits[0])); - } - break; - case -2: - if (8 * sizeof(Py_ssize_t) > 2 * PyLong_SHIFT) { - return -(Py_ssize_t) (((((size_t)digits[1]) << PyLong_SHIFT) | (size_t)digits[0])); - } - break; - case 3: - if (8 * sizeof(Py_ssize_t) > 3 * PyLong_SHIFT) { - return (Py_ssize_t) (((((((size_t)digits[2]) << PyLong_SHIFT) | (size_t)digits[1]) << PyLong_SHIFT) | (size_t)digits[0])); - } - break; - case -3: - if (8 * sizeof(Py_ssize_t) > 3 * PyLong_SHIFT) { - return -(Py_ssize_t) (((((((size_t)digits[2]) << PyLong_SHIFT) | (size_t)digits[1]) << PyLong_SHIFT) | (size_t)digits[0])); - } - break; - case 4: - if (8 * sizeof(Py_ssize_t) > 4 * PyLong_SHIFT) { - return (Py_ssize_t) (((((((((size_t)digits[3]) << PyLong_SHIFT) | (size_t)digits[2]) << PyLong_SHIFT) | (size_t)digits[1]) << PyLong_SHIFT) | (size_t)digits[0])); - } - break; - case -4: - if (8 * sizeof(Py_ssize_t) > 4 * PyLong_SHIFT) { - return -(Py_ssize_t) (((((((((size_t)digits[3]) << PyLong_SHIFT) | (size_t)digits[2]) << PyLong_SHIFT) | (size_t)digits[1]) << PyLong_SHIFT) | (size_t)digits[0])); - } - break; - } - } - #endif - return PyLong_AsSsize_t(b); - } - x = PyNumber_Index(b); - if (!x) return -1; - ival = PyInt_AsSsize_t(x); - Py_DECREF(x); - return ival; -} -static CYTHON_INLINE PyObject * __Pyx_PyBool_FromLong(long b) { - return b ? __Pyx_NewRef(Py_True) : __Pyx_NewRef(Py_False); -} -static CYTHON_INLINE PyObject * __Pyx_PyInt_FromSize_t(size_t ival) { - return PyInt_FromSize_t(ival); -} - - -#endif /* Py_PYTHON_H */ diff --git a/python/pmercury/cython-bak/dtls.pyx b/python/pmercury/cython-bak/dtls.pyx deleted file mode 100644 index 57b1a30e..00000000 --- a/python/pmercury/cython-bak/dtls.pyx +++ /dev/null @@ -1,146 +0,0 @@ -#cython: language_level=3, wraparound=False, cdivision=True, infer_types=True, initializedcheck=False, c_string_type=bytes, embedsignature=False, nonecheck=False - -""" - Copyright (c) 2019 Cisco Systems, Inc. All rights reserved. - License at https://github.com/cisco/mercury/blob/master/LICENSE -""" - -import os -import sys -import json -import operator -import functools -from sys import path - -sys.path.append(os.path.dirname(os.path.abspath(__file__))) -sys.path.append(os.path.dirname(os.path.abspath(__file__))+'/../') -from pmercury.utils.tls_utils import * - -from cython.operator cimport dereference as deref -from libc.math cimport exp, log, fmax -from libc.stdint cimport uint8_t, uint16_t, uint32_t, uint64_t - -IF UNAME_SYSNAME == "Windows": - cdef extern from "winsock2.h": - uint16_t htons(uint16_t hostshort) -ELSE: - cdef extern from "arpa/inet.h": - uint16_t htons(uint16_t hostshort) - -MAX_CACHED_RESULTS = 2**24 - - -cdef class DTLS(): - cdef dict fp_db - - def __init__(self, fp_database=None, config=None): - self.fp_db = None - - - @staticmethod - def proto_identify(data, offset, data_len): - if data_len-offset < 27: - return False - if (data[offset] == 22 and - data[offset+1] == 254 and - data[offset+2] >= 253 and - data[offset+13] == 1 and - data[offset+25] == 254 and - data[offset+26] >= 253): - return True - return False - - - @staticmethod - def fingerprint(bytes data, unsigned int offset, unsigned int data_len): - cdef unsigned char *buf = data - offset += 13 - - # extract handshake version - cdef list c = [f'({buf[offset+12]:02x}{buf[offset+13]:02x})'] - - # skip header/client_random - offset += 46 - - # parse/skip session_id - cdef uint8_t session_id_length = buf[offset] - offset += 1 + session_id_length - if offset >= data_len: - return None, None - - # parse/skip cookie - cdef uint8_t cookie_length = buf[offset] - offset += 1 + cookie_length - if offset >= data_len: - return None, None - - # parse/extract/skip cipher_suites length - cdef uint16_t cipher_suites_length = htons(deref((buf+offset))) - offset += 2 - if offset >= data_len: - return None, None - - # parse/extract/skip cipher_suites - cdef str cs_ = degrease_type_code(data, offset) - if cipher_suites_length > 2: - cs_ += buf[offset+2:offset+cipher_suites_length].hex() - c.append('(%s)' % cs_) - offset += cipher_suites_length - if offset >= data_len: - c.append('()') - return ''.join(c), None - - # parse/skip compression method - cdef uint8_t compression_methods_length = buf[offset] - offset += 1 + compression_methods_length - if offset >= data_len: - c.append('()') - return ''.join(c), None - - # parse/skip extensions length - cdef uint16_t ext_total_len = htons(deref((buf+offset))) - offset += 2 - if offset >= data_len: - c.append('()') - return ''.join(c), None - - # parse/extract/skip extension type/length/values - c.append('(') - server_name = None - while ext_total_len > 0: - if offset >= data_len: - c.append(')') - return ''.join(c), server_name - - # extract server name for process/malware identification - if htons(deref((buf+offset))) == 0: - server_name = extract_server_name(data, offset+2, data_len) - - tmp_fp_ext, offset, ext_len = parse_extension(data, offset) - if ext_len+4 > ext_total_len: - c.append(')') - return ''.join(c), server_name - c.append('(%s)' % tmp_fp_ext) - - ext_total_len -= 4 + ext_len - c.append(')') - - cdef list context = None - if server_name != None: - context = [{'name':'server_name', 'data':server_name}] - - return ''.join(c), context - - - @functools.lru_cache(maxsize=MAX_CACHED_RESULTS) - def get_database_entry(self, fp_str, approx_fp_str): - return None - - - def get_human_readable(self, fp_str_): - return None - - - def proc_identify(self, fp_str_, context_, dst_ip, dst_port, list_procs=5): - return None - diff --git a/python/pmercury/cython-bak/dtls_server.c b/python/pmercury/cython-bak/dtls_server.c deleted file mode 100644 index 25b8f285..00000000 --- a/python/pmercury/cython-bak/dtls_server.c +++ /dev/null @@ -1,7382 +0,0 @@ -/* Generated by Cython 0.29.14 */ - -#define PY_SSIZE_T_CLEAN -#include "Python.h" -#ifndef Py_PYTHON_H - #error Python headers needed to compile C extensions, please install development version of Python. -#elif PY_VERSION_HEX < 0x02060000 || (0x03000000 <= PY_VERSION_HEX && PY_VERSION_HEX < 0x03030000) - #error Cython requires Python 2.6+ or Python 3.3+. -#else -#define CYTHON_ABI "0_29_14" -#define CYTHON_HEX_VERSION 0x001D0EF0 -#define CYTHON_FUTURE_DIVISION 1 -#include -#ifndef offsetof - #define offsetof(type, member) ( (size_t) & ((type*)0) -> member ) -#endif -#if !defined(WIN32) && !defined(MS_WINDOWS) - #ifndef __stdcall - #define __stdcall - #endif - #ifndef __cdecl - #define __cdecl - #endif - #ifndef __fastcall - #define __fastcall - #endif -#endif -#ifndef DL_IMPORT - #define DL_IMPORT(t) t -#endif -#ifndef DL_EXPORT - #define DL_EXPORT(t) t -#endif -#define __PYX_COMMA , -#ifndef HAVE_LONG_LONG - #if PY_VERSION_HEX >= 0x02070000 - #define HAVE_LONG_LONG - #endif -#endif -#ifndef PY_LONG_LONG - #define PY_LONG_LONG LONG_LONG -#endif -#ifndef Py_HUGE_VAL - #define Py_HUGE_VAL HUGE_VAL -#endif -#ifdef PYPY_VERSION - #define CYTHON_COMPILING_IN_PYPY 1 - #define CYTHON_COMPILING_IN_PYSTON 0 - #define CYTHON_COMPILING_IN_CPYTHON 0 - #undef CYTHON_USE_TYPE_SLOTS - #define CYTHON_USE_TYPE_SLOTS 0 - #undef CYTHON_USE_PYTYPE_LOOKUP - #define CYTHON_USE_PYTYPE_LOOKUP 0 - #if PY_VERSION_HEX < 0x03050000 - #undef CYTHON_USE_ASYNC_SLOTS - #define CYTHON_USE_ASYNC_SLOTS 0 - #elif !defined(CYTHON_USE_ASYNC_SLOTS) - #define CYTHON_USE_ASYNC_SLOTS 1 - #endif - #undef CYTHON_USE_PYLIST_INTERNALS - #define CYTHON_USE_PYLIST_INTERNALS 0 - #undef CYTHON_USE_UNICODE_INTERNALS - #define CYTHON_USE_UNICODE_INTERNALS 0 - #undef CYTHON_USE_UNICODE_WRITER - #define CYTHON_USE_UNICODE_WRITER 0 - #undef CYTHON_USE_PYLONG_INTERNALS - #define CYTHON_USE_PYLONG_INTERNALS 0 - #undef CYTHON_AVOID_BORROWED_REFS - #define CYTHON_AVOID_BORROWED_REFS 1 - #undef CYTHON_ASSUME_SAFE_MACROS - #define CYTHON_ASSUME_SAFE_MACROS 0 - #undef CYTHON_UNPACK_METHODS - #define CYTHON_UNPACK_METHODS 0 - #undef CYTHON_FAST_THREAD_STATE - #define CYTHON_FAST_THREAD_STATE 0 - #undef CYTHON_FAST_PYCALL - #define CYTHON_FAST_PYCALL 0 - #undef CYTHON_PEP489_MULTI_PHASE_INIT - #define CYTHON_PEP489_MULTI_PHASE_INIT 0 - #undef CYTHON_USE_TP_FINALIZE - #define CYTHON_USE_TP_FINALIZE 0 - #undef CYTHON_USE_DICT_VERSIONS - #define CYTHON_USE_DICT_VERSIONS 0 - #undef CYTHON_USE_EXC_INFO_STACK - #define CYTHON_USE_EXC_INFO_STACK 0 -#elif defined(PYSTON_VERSION) - #define CYTHON_COMPILING_IN_PYPY 0 - #define CYTHON_COMPILING_IN_PYSTON 1 - #define CYTHON_COMPILING_IN_CPYTHON 0 - #ifndef CYTHON_USE_TYPE_SLOTS - #define CYTHON_USE_TYPE_SLOTS 1 - #endif - #undef CYTHON_USE_PYTYPE_LOOKUP - #define CYTHON_USE_PYTYPE_LOOKUP 0 - #undef CYTHON_USE_ASYNC_SLOTS - #define CYTHON_USE_ASYNC_SLOTS 0 - #undef CYTHON_USE_PYLIST_INTERNALS - #define CYTHON_USE_PYLIST_INTERNALS 0 - #ifndef CYTHON_USE_UNICODE_INTERNALS - #define CYTHON_USE_UNICODE_INTERNALS 1 - #endif - #undef CYTHON_USE_UNICODE_WRITER - #define CYTHON_USE_UNICODE_WRITER 0 - #undef CYTHON_USE_PYLONG_INTERNALS - #define CYTHON_USE_PYLONG_INTERNALS 0 - #ifndef CYTHON_AVOID_BORROWED_REFS - #define CYTHON_AVOID_BORROWED_REFS 0 - #endif - #ifndef CYTHON_ASSUME_SAFE_MACROS - #define CYTHON_ASSUME_SAFE_MACROS 1 - #endif - #ifndef CYTHON_UNPACK_METHODS - #define CYTHON_UNPACK_METHODS 1 - #endif - #undef CYTHON_FAST_THREAD_STATE - #define CYTHON_FAST_THREAD_STATE 0 - #undef CYTHON_FAST_PYCALL - #define CYTHON_FAST_PYCALL 0 - #undef CYTHON_PEP489_MULTI_PHASE_INIT - #define CYTHON_PEP489_MULTI_PHASE_INIT 0 - #undef CYTHON_USE_TP_FINALIZE - #define CYTHON_USE_TP_FINALIZE 0 - #undef CYTHON_USE_DICT_VERSIONS - #define CYTHON_USE_DICT_VERSIONS 0 - #undef CYTHON_USE_EXC_INFO_STACK - #define CYTHON_USE_EXC_INFO_STACK 0 -#else - #define CYTHON_COMPILING_IN_PYPY 0 - #define CYTHON_COMPILING_IN_PYSTON 0 - #define CYTHON_COMPILING_IN_CPYTHON 1 - #ifndef CYTHON_USE_TYPE_SLOTS - #define CYTHON_USE_TYPE_SLOTS 1 - #endif - #if PY_VERSION_HEX < 0x02070000 - #undef CYTHON_USE_PYTYPE_LOOKUP - #define CYTHON_USE_PYTYPE_LOOKUP 0 - #elif !defined(CYTHON_USE_PYTYPE_LOOKUP) - #define CYTHON_USE_PYTYPE_LOOKUP 1 - #endif - #if PY_MAJOR_VERSION < 3 - #undef CYTHON_USE_ASYNC_SLOTS - #define CYTHON_USE_ASYNC_SLOTS 0 - #elif !defined(CYTHON_USE_ASYNC_SLOTS) - #define CYTHON_USE_ASYNC_SLOTS 1 - #endif - #if PY_VERSION_HEX < 0x02070000 - #undef CYTHON_USE_PYLONG_INTERNALS - #define CYTHON_USE_PYLONG_INTERNALS 0 - #elif !defined(CYTHON_USE_PYLONG_INTERNALS) - #define CYTHON_USE_PYLONG_INTERNALS 1 - #endif - #ifndef CYTHON_USE_PYLIST_INTERNALS - #define CYTHON_USE_PYLIST_INTERNALS 1 - #endif - #ifndef CYTHON_USE_UNICODE_INTERNALS - #define CYTHON_USE_UNICODE_INTERNALS 1 - #endif - #if PY_VERSION_HEX < 0x030300F0 - #undef CYTHON_USE_UNICODE_WRITER - #define CYTHON_USE_UNICODE_WRITER 0 - #elif !defined(CYTHON_USE_UNICODE_WRITER) - #define CYTHON_USE_UNICODE_WRITER 1 - #endif - #ifndef CYTHON_AVOID_BORROWED_REFS - #define CYTHON_AVOID_BORROWED_REFS 0 - #endif - #ifndef CYTHON_ASSUME_SAFE_MACROS - #define CYTHON_ASSUME_SAFE_MACROS 1 - #endif - #ifndef CYTHON_UNPACK_METHODS - #define CYTHON_UNPACK_METHODS 1 - #endif - #ifndef CYTHON_FAST_THREAD_STATE - #define CYTHON_FAST_THREAD_STATE 1 - #endif - #ifndef CYTHON_FAST_PYCALL - #define CYTHON_FAST_PYCALL 1 - #endif - #ifndef CYTHON_PEP489_MULTI_PHASE_INIT - #define CYTHON_PEP489_MULTI_PHASE_INIT (PY_VERSION_HEX >= 0x03050000) - #endif - #ifndef CYTHON_USE_TP_FINALIZE - #define CYTHON_USE_TP_FINALIZE (PY_VERSION_HEX >= 0x030400a1) - #endif - #ifndef CYTHON_USE_DICT_VERSIONS - #define CYTHON_USE_DICT_VERSIONS (PY_VERSION_HEX >= 0x030600B1) - #endif - #ifndef CYTHON_USE_EXC_INFO_STACK - #define CYTHON_USE_EXC_INFO_STACK (PY_VERSION_HEX >= 0x030700A3) - #endif -#endif -#if !defined(CYTHON_FAST_PYCCALL) -#define CYTHON_FAST_PYCCALL (CYTHON_FAST_PYCALL && PY_VERSION_HEX >= 0x030600B1) -#endif -#if CYTHON_USE_PYLONG_INTERNALS - #include "longintrepr.h" - #undef SHIFT - #undef BASE - #undef MASK - #ifdef SIZEOF_VOID_P - enum { __pyx_check_sizeof_voidp = 1 / (int)(SIZEOF_VOID_P == sizeof(void*)) }; - #endif -#endif -#ifndef __has_attribute - #define __has_attribute(x) 0 -#endif -#ifndef __has_cpp_attribute - #define __has_cpp_attribute(x) 0 -#endif -#ifndef CYTHON_RESTRICT - #if defined(__GNUC__) - #define CYTHON_RESTRICT __restrict__ - #elif defined(_MSC_VER) && _MSC_VER >= 1400 - #define CYTHON_RESTRICT __restrict - #elif defined (__STDC_VERSION__) && __STDC_VERSION__ >= 199901L - #define CYTHON_RESTRICT restrict - #else - #define CYTHON_RESTRICT - #endif -#endif -#ifndef CYTHON_UNUSED -# if defined(__GNUC__) -# if !(defined(__cplusplus)) || (__GNUC__ > 3 || (__GNUC__ == 3 && __GNUC_MINOR__ >= 4)) -# define CYTHON_UNUSED __attribute__ ((__unused__)) -# else -# define CYTHON_UNUSED -# endif -# elif defined(__ICC) || (defined(__INTEL_COMPILER) && !defined(_MSC_VER)) -# define CYTHON_UNUSED __attribute__ ((__unused__)) -# else -# define CYTHON_UNUSED -# endif -#endif -#ifndef CYTHON_MAYBE_UNUSED_VAR -# if defined(__cplusplus) - template void CYTHON_MAYBE_UNUSED_VAR( const T& ) { } -# else -# define CYTHON_MAYBE_UNUSED_VAR(x) (void)(x) -# endif -#endif -#ifndef CYTHON_NCP_UNUSED -# if CYTHON_COMPILING_IN_CPYTHON -# define CYTHON_NCP_UNUSED -# else -# define CYTHON_NCP_UNUSED CYTHON_UNUSED -# endif -#endif -#define __Pyx_void_to_None(void_result) ((void)(void_result), Py_INCREF(Py_None), Py_None) -#ifdef _MSC_VER - #ifndef _MSC_STDINT_H_ - #if _MSC_VER < 1300 - typedef unsigned char uint8_t; - typedef unsigned int uint32_t; - #else - typedef unsigned __int8 uint8_t; - typedef unsigned __int32 uint32_t; - #endif - #endif -#else - #include -#endif -#ifndef CYTHON_FALLTHROUGH - #if defined(__cplusplus) && __cplusplus >= 201103L - #if __has_cpp_attribute(fallthrough) - #define CYTHON_FALLTHROUGH [[fallthrough]] - #elif __has_cpp_attribute(clang::fallthrough) - #define CYTHON_FALLTHROUGH [[clang::fallthrough]] - #elif __has_cpp_attribute(gnu::fallthrough) - #define CYTHON_FALLTHROUGH [[gnu::fallthrough]] - #endif - #endif - #ifndef CYTHON_FALLTHROUGH - #if __has_attribute(fallthrough) - #define CYTHON_FALLTHROUGH __attribute__((fallthrough)) - #else - #define CYTHON_FALLTHROUGH - #endif - #endif - #if defined(__clang__ ) && defined(__apple_build_version__) - #if __apple_build_version__ < 7000000 - #undef CYTHON_FALLTHROUGH - #define CYTHON_FALLTHROUGH - #endif - #endif -#endif - -#ifndef CYTHON_INLINE - #if defined(__clang__) - #define CYTHON_INLINE __inline__ __attribute__ ((__unused__)) - #elif defined(__GNUC__) - #define CYTHON_INLINE __inline__ - #elif defined(_MSC_VER) - #define CYTHON_INLINE __inline - #elif defined (__STDC_VERSION__) && __STDC_VERSION__ >= 199901L - #define CYTHON_INLINE inline - #else - #define CYTHON_INLINE - #endif -#endif - -#if CYTHON_COMPILING_IN_PYPY && PY_VERSION_HEX < 0x02070600 && !defined(Py_OptimizeFlag) - #define Py_OptimizeFlag 0 -#endif -#define __PYX_BUILD_PY_SSIZE_T "n" -#define CYTHON_FORMAT_SSIZE_T "z" -#if PY_MAJOR_VERSION < 3 - #define __Pyx_BUILTIN_MODULE_NAME "__builtin__" - #define __Pyx_PyCode_New(a, k, l, s, f, code, c, n, v, fv, cell, fn, name, fline, lnos)\ - PyCode_New(a+k, l, s, f, code, c, n, v, fv, cell, fn, name, fline, lnos) - #define __Pyx_DefaultClassType PyClass_Type -#else - #define __Pyx_BUILTIN_MODULE_NAME "builtins" -#if PY_VERSION_HEX >= 0x030800A4 && PY_VERSION_HEX < 0x030800B2 - #define __Pyx_PyCode_New(a, k, l, s, f, code, c, n, v, fv, cell, fn, name, fline, lnos)\ - PyCode_New(a, 0, k, l, s, f, code, c, n, v, fv, cell, fn, name, fline, lnos) -#else - #define __Pyx_PyCode_New(a, k, l, s, f, code, c, n, v, fv, cell, fn, name, fline, lnos)\ - PyCode_New(a, k, l, s, f, code, c, n, v, fv, cell, fn, name, fline, lnos) -#endif - #define __Pyx_DefaultClassType PyType_Type -#endif -#ifndef Py_TPFLAGS_CHECKTYPES - #define Py_TPFLAGS_CHECKTYPES 0 -#endif -#ifndef Py_TPFLAGS_HAVE_INDEX - #define Py_TPFLAGS_HAVE_INDEX 0 -#endif -#ifndef Py_TPFLAGS_HAVE_NEWBUFFER - #define Py_TPFLAGS_HAVE_NEWBUFFER 0 -#endif -#ifndef Py_TPFLAGS_HAVE_FINALIZE - #define Py_TPFLAGS_HAVE_FINALIZE 0 -#endif -#ifndef METH_STACKLESS - #define METH_STACKLESS 0 -#endif -#if PY_VERSION_HEX <= 0x030700A3 || !defined(METH_FASTCALL) - #ifndef METH_FASTCALL - #define METH_FASTCALL 0x80 - #endif - typedef PyObject *(*__Pyx_PyCFunctionFast) (PyObject *self, PyObject *const *args, Py_ssize_t nargs); - typedef PyObject *(*__Pyx_PyCFunctionFastWithKeywords) (PyObject *self, PyObject *const *args, - Py_ssize_t nargs, PyObject *kwnames); -#else - #define __Pyx_PyCFunctionFast _PyCFunctionFast - #define __Pyx_PyCFunctionFastWithKeywords _PyCFunctionFastWithKeywords -#endif -#if CYTHON_FAST_PYCCALL -#define __Pyx_PyFastCFunction_Check(func)\ - ((PyCFunction_Check(func) && (METH_FASTCALL == (PyCFunction_GET_FLAGS(func) & ~(METH_CLASS | METH_STATIC | METH_COEXIST | METH_KEYWORDS | METH_STACKLESS))))) -#else -#define __Pyx_PyFastCFunction_Check(func) 0 -#endif -#if CYTHON_COMPILING_IN_PYPY && !defined(PyObject_Malloc) - #define PyObject_Malloc(s) PyMem_Malloc(s) - #define PyObject_Free(p) PyMem_Free(p) - #define PyObject_Realloc(p) PyMem_Realloc(p) -#endif -#if CYTHON_COMPILING_IN_CPYTHON && PY_VERSION_HEX < 0x030400A1 - #define PyMem_RawMalloc(n) PyMem_Malloc(n) - #define PyMem_RawRealloc(p, n) PyMem_Realloc(p, n) - #define PyMem_RawFree(p) PyMem_Free(p) -#endif -#if CYTHON_COMPILING_IN_PYSTON - #define __Pyx_PyCode_HasFreeVars(co) PyCode_HasFreeVars(co) - #define __Pyx_PyFrame_SetLineNumber(frame, lineno) PyFrame_SetLineNumber(frame, lineno) -#else - #define __Pyx_PyCode_HasFreeVars(co) (PyCode_GetNumFree(co) > 0) - #define __Pyx_PyFrame_SetLineNumber(frame, lineno) (frame)->f_lineno = (lineno) -#endif -#if !CYTHON_FAST_THREAD_STATE || PY_VERSION_HEX < 0x02070000 - #define __Pyx_PyThreadState_Current PyThreadState_GET() -#elif PY_VERSION_HEX >= 0x03060000 - #define __Pyx_PyThreadState_Current _PyThreadState_UncheckedGet() -#elif PY_VERSION_HEX >= 0x03000000 - #define __Pyx_PyThreadState_Current PyThreadState_GET() -#else - #define __Pyx_PyThreadState_Current _PyThreadState_Current -#endif -#if PY_VERSION_HEX < 0x030700A2 && !defined(PyThread_tss_create) && !defined(Py_tss_NEEDS_INIT) -#include "pythread.h" -#define Py_tss_NEEDS_INIT 0 -typedef int Py_tss_t; -static CYTHON_INLINE int PyThread_tss_create(Py_tss_t *key) { - *key = PyThread_create_key(); - return 0; -} -static CYTHON_INLINE Py_tss_t * PyThread_tss_alloc(void) { - Py_tss_t *key = (Py_tss_t *)PyObject_Malloc(sizeof(Py_tss_t)); - *key = Py_tss_NEEDS_INIT; - return key; -} -static CYTHON_INLINE void PyThread_tss_free(Py_tss_t *key) { - PyObject_Free(key); -} -static CYTHON_INLINE int PyThread_tss_is_created(Py_tss_t *key) { - return *key != Py_tss_NEEDS_INIT; -} -static CYTHON_INLINE void PyThread_tss_delete(Py_tss_t *key) { - PyThread_delete_key(*key); - *key = Py_tss_NEEDS_INIT; -} -static CYTHON_INLINE int PyThread_tss_set(Py_tss_t *key, void *value) { - return PyThread_set_key_value(*key, value); -} -static CYTHON_INLINE void * PyThread_tss_get(Py_tss_t *key) { - return PyThread_get_key_value(*key); -} -#endif -#if CYTHON_COMPILING_IN_CPYTHON || defined(_PyDict_NewPresized) -#define __Pyx_PyDict_NewPresized(n) ((n <= 8) ? PyDict_New() : _PyDict_NewPresized(n)) -#else -#define __Pyx_PyDict_NewPresized(n) PyDict_New() -#endif -#if PY_MAJOR_VERSION >= 3 || CYTHON_FUTURE_DIVISION - #define __Pyx_PyNumber_Divide(x,y) PyNumber_TrueDivide(x,y) - #define __Pyx_PyNumber_InPlaceDivide(x,y) PyNumber_InPlaceTrueDivide(x,y) -#else - #define __Pyx_PyNumber_Divide(x,y) PyNumber_Divide(x,y) - #define __Pyx_PyNumber_InPlaceDivide(x,y) PyNumber_InPlaceDivide(x,y) -#endif -#if CYTHON_COMPILING_IN_CPYTHON && PY_VERSION_HEX >= 0x030500A1 && CYTHON_USE_UNICODE_INTERNALS -#define __Pyx_PyDict_GetItemStr(dict, name) _PyDict_GetItem_KnownHash(dict, name, ((PyASCIIObject *) name)->hash) -#else -#define __Pyx_PyDict_GetItemStr(dict, name) PyDict_GetItem(dict, name) -#endif -#if PY_VERSION_HEX > 0x03030000 && defined(PyUnicode_KIND) - #define CYTHON_PEP393_ENABLED 1 - #define __Pyx_PyUnicode_READY(op) (likely(PyUnicode_IS_READY(op)) ?\ - 0 : _PyUnicode_Ready((PyObject *)(op))) - #define __Pyx_PyUnicode_GET_LENGTH(u) PyUnicode_GET_LENGTH(u) - #define __Pyx_PyUnicode_READ_CHAR(u, i) PyUnicode_READ_CHAR(u, i) - #define __Pyx_PyUnicode_MAX_CHAR_VALUE(u) PyUnicode_MAX_CHAR_VALUE(u) - #define __Pyx_PyUnicode_KIND(u) PyUnicode_KIND(u) - #define __Pyx_PyUnicode_DATA(u) PyUnicode_DATA(u) - #define __Pyx_PyUnicode_READ(k, d, i) PyUnicode_READ(k, d, i) - #define __Pyx_PyUnicode_WRITE(k, d, i, ch) PyUnicode_WRITE(k, d, i, ch) - #define __Pyx_PyUnicode_IS_TRUE(u) (0 != (likely(PyUnicode_IS_READY(u)) ? PyUnicode_GET_LENGTH(u) : PyUnicode_GET_SIZE(u))) -#else - #define CYTHON_PEP393_ENABLED 0 - #define PyUnicode_1BYTE_KIND 1 - #define PyUnicode_2BYTE_KIND 2 - #define PyUnicode_4BYTE_KIND 4 - #define __Pyx_PyUnicode_READY(op) (0) - #define __Pyx_PyUnicode_GET_LENGTH(u) PyUnicode_GET_SIZE(u) - #define __Pyx_PyUnicode_READ_CHAR(u, i) ((Py_UCS4)(PyUnicode_AS_UNICODE(u)[i])) - #define __Pyx_PyUnicode_MAX_CHAR_VALUE(u) ((sizeof(Py_UNICODE) == 2) ? 65535 : 1114111) - #define __Pyx_PyUnicode_KIND(u) (sizeof(Py_UNICODE)) - #define __Pyx_PyUnicode_DATA(u) ((void*)PyUnicode_AS_UNICODE(u)) - #define __Pyx_PyUnicode_READ(k, d, i) ((void)(k), (Py_UCS4)(((Py_UNICODE*)d)[i])) - #define __Pyx_PyUnicode_WRITE(k, d, i, ch) (((void)(k)), ((Py_UNICODE*)d)[i] = ch) - #define __Pyx_PyUnicode_IS_TRUE(u) (0 != PyUnicode_GET_SIZE(u)) -#endif -#if CYTHON_COMPILING_IN_PYPY - #define __Pyx_PyUnicode_Concat(a, b) PyNumber_Add(a, b) - #define __Pyx_PyUnicode_ConcatSafe(a, b) PyNumber_Add(a, b) -#else - #define __Pyx_PyUnicode_Concat(a, b) PyUnicode_Concat(a, b) - #define __Pyx_PyUnicode_ConcatSafe(a, b) ((unlikely((a) == Py_None) || unlikely((b) == Py_None)) ?\ - PyNumber_Add(a, b) : __Pyx_PyUnicode_Concat(a, b)) -#endif -#if CYTHON_COMPILING_IN_PYPY && !defined(PyUnicode_Contains) - #define PyUnicode_Contains(u, s) PySequence_Contains(u, s) -#endif -#if CYTHON_COMPILING_IN_PYPY && !defined(PyByteArray_Check) - #define PyByteArray_Check(obj) PyObject_TypeCheck(obj, &PyByteArray_Type) -#endif -#if CYTHON_COMPILING_IN_PYPY && !defined(PyObject_Format) - #define PyObject_Format(obj, fmt) PyObject_CallMethod(obj, "__format__", "O", fmt) -#endif -#define __Pyx_PyString_FormatSafe(a, b) ((unlikely((a) == Py_None || (PyString_Check(b) && !PyString_CheckExact(b)))) ? PyNumber_Remainder(a, b) : __Pyx_PyString_Format(a, b)) -#define __Pyx_PyUnicode_FormatSafe(a, b) ((unlikely((a) == Py_None || (PyUnicode_Check(b) && !PyUnicode_CheckExact(b)))) ? PyNumber_Remainder(a, b) : PyUnicode_Format(a, b)) -#if PY_MAJOR_VERSION >= 3 - #define __Pyx_PyString_Format(a, b) PyUnicode_Format(a, b) -#else - #define __Pyx_PyString_Format(a, b) PyString_Format(a, b) -#endif -#if PY_MAJOR_VERSION < 3 && !defined(PyObject_ASCII) - #define PyObject_ASCII(o) PyObject_Repr(o) -#endif -#if PY_MAJOR_VERSION >= 3 - #define PyBaseString_Type PyUnicode_Type - #define PyStringObject PyUnicodeObject - #define PyString_Type PyUnicode_Type - #define PyString_Check PyUnicode_Check - #define PyString_CheckExact PyUnicode_CheckExact - #define PyObject_Unicode PyObject_Str -#endif -#if PY_MAJOR_VERSION >= 3 - #define __Pyx_PyBaseString_Check(obj) PyUnicode_Check(obj) - #define __Pyx_PyBaseString_CheckExact(obj) PyUnicode_CheckExact(obj) -#else - #define __Pyx_PyBaseString_Check(obj) (PyString_Check(obj) || PyUnicode_Check(obj)) - #define __Pyx_PyBaseString_CheckExact(obj) (PyString_CheckExact(obj) || PyUnicode_CheckExact(obj)) -#endif -#ifndef PySet_CheckExact - #define PySet_CheckExact(obj) (Py_TYPE(obj) == &PySet_Type) -#endif -#if CYTHON_ASSUME_SAFE_MACROS - #define __Pyx_PySequence_SIZE(seq) Py_SIZE(seq) -#else - #define __Pyx_PySequence_SIZE(seq) PySequence_Size(seq) -#endif -#if PY_MAJOR_VERSION >= 3 - #define PyIntObject PyLongObject - #define PyInt_Type PyLong_Type - #define PyInt_Check(op) PyLong_Check(op) - #define PyInt_CheckExact(op) PyLong_CheckExact(op) - #define PyInt_FromString PyLong_FromString - #define PyInt_FromUnicode PyLong_FromUnicode - #define PyInt_FromLong PyLong_FromLong - #define PyInt_FromSize_t PyLong_FromSize_t - #define PyInt_FromSsize_t PyLong_FromSsize_t - #define PyInt_AsLong PyLong_AsLong - #define PyInt_AS_LONG PyLong_AS_LONG - #define PyInt_AsSsize_t PyLong_AsSsize_t - #define PyInt_AsUnsignedLongMask PyLong_AsUnsignedLongMask - #define PyInt_AsUnsignedLongLongMask PyLong_AsUnsignedLongLongMask - #define PyNumber_Int PyNumber_Long -#endif -#if PY_MAJOR_VERSION >= 3 - #define PyBoolObject PyLongObject -#endif -#if PY_MAJOR_VERSION >= 3 && CYTHON_COMPILING_IN_PYPY - #ifndef PyUnicode_InternFromString - #define PyUnicode_InternFromString(s) PyUnicode_FromString(s) - #endif -#endif -#if PY_VERSION_HEX < 0x030200A4 - typedef long Py_hash_t; - #define __Pyx_PyInt_FromHash_t PyInt_FromLong - #define __Pyx_PyInt_AsHash_t PyInt_AsLong -#else - #define __Pyx_PyInt_FromHash_t PyInt_FromSsize_t - #define __Pyx_PyInt_AsHash_t PyInt_AsSsize_t -#endif -#if PY_MAJOR_VERSION >= 3 - #define __Pyx_PyMethod_New(func, self, klass) ((self) ? PyMethod_New(func, self) : (Py_INCREF(func), func)) -#else - #define __Pyx_PyMethod_New(func, self, klass) PyMethod_New(func, self, klass) -#endif -#if CYTHON_USE_ASYNC_SLOTS - #if PY_VERSION_HEX >= 0x030500B1 - #define __Pyx_PyAsyncMethodsStruct PyAsyncMethods - #define __Pyx_PyType_AsAsync(obj) (Py_TYPE(obj)->tp_as_async) - #else - #define __Pyx_PyType_AsAsync(obj) ((__Pyx_PyAsyncMethodsStruct*) (Py_TYPE(obj)->tp_reserved)) - #endif -#else - #define __Pyx_PyType_AsAsync(obj) NULL -#endif -#ifndef __Pyx_PyAsyncMethodsStruct - typedef struct { - unaryfunc am_await; - unaryfunc am_aiter; - unaryfunc am_anext; - } __Pyx_PyAsyncMethodsStruct; -#endif - -#if defined(WIN32) || defined(MS_WINDOWS) - #define _USE_MATH_DEFINES -#endif -#include -#ifdef NAN -#define __PYX_NAN() ((float) NAN) -#else -static CYTHON_INLINE float __PYX_NAN() { - float value; - memset(&value, 0xFF, sizeof(value)); - return value; -} -#endif -#if defined(__CYGWIN__) && defined(_LDBL_EQ_DBL) -#define __Pyx_truncl trunc -#else -#define __Pyx_truncl truncl -#endif - - -#define __PYX_ERR(f_index, lineno, Ln_error) \ -{ \ - __pyx_filename = __pyx_f[f_index]; __pyx_lineno = lineno; __pyx_clineno = __LINE__; goto Ln_error; \ -} - -#ifndef __PYX_EXTERN_C - #ifdef __cplusplus - #define __PYX_EXTERN_C extern "C" - #else - #define __PYX_EXTERN_C extern - #endif -#endif - -#define __PYX_HAVE__pmercury__protocols__dtls_server -#define __PYX_HAVE_API__pmercury__protocols__dtls_server -/* Early includes */ -#include -#include "arpa/inet.h" -#ifdef _OPENMP -#include -#endif /* _OPENMP */ - -#if defined(PYREX_WITHOUT_ASSERTIONS) && !defined(CYTHON_WITHOUT_ASSERTIONS) -#define CYTHON_WITHOUT_ASSERTIONS -#endif - -typedef struct {PyObject **p; const char *s; const Py_ssize_t n; const char* encoding; - const char is_unicode; const char is_str; const char intern; } __Pyx_StringTabEntry; - -#define __PYX_DEFAULT_STRING_ENCODING_IS_ASCII 0 -#define __PYX_DEFAULT_STRING_ENCODING_IS_UTF8 0 -#define __PYX_DEFAULT_STRING_ENCODING_IS_DEFAULT (PY_MAJOR_VERSION >= 3 && __PYX_DEFAULT_STRING_ENCODING_IS_UTF8) -#define __PYX_DEFAULT_STRING_ENCODING "" -#define __Pyx_PyObject_FromString __Pyx_PyBytes_FromString -#define __Pyx_PyObject_FromStringAndSize __Pyx_PyBytes_FromStringAndSize -#define __Pyx_uchar_cast(c) ((unsigned char)c) -#define __Pyx_long_cast(x) ((long)x) -#define __Pyx_fits_Py_ssize_t(v, type, is_signed) (\ - (sizeof(type) < sizeof(Py_ssize_t)) ||\ - (sizeof(type) > sizeof(Py_ssize_t) &&\ - likely(v < (type)PY_SSIZE_T_MAX ||\ - v == (type)PY_SSIZE_T_MAX) &&\ - (!is_signed || likely(v > (type)PY_SSIZE_T_MIN ||\ - v == (type)PY_SSIZE_T_MIN))) ||\ - (sizeof(type) == sizeof(Py_ssize_t) &&\ - (is_signed || likely(v < (type)PY_SSIZE_T_MAX ||\ - v == (type)PY_SSIZE_T_MAX))) ) -static CYTHON_INLINE int __Pyx_is_valid_index(Py_ssize_t i, Py_ssize_t limit) { - return (size_t) i < (size_t) limit; -} -#if defined (__cplusplus) && __cplusplus >= 201103L - #include - #define __Pyx_sst_abs(value) std::abs(value) -#elif SIZEOF_INT >= SIZEOF_SIZE_T - #define __Pyx_sst_abs(value) abs(value) -#elif SIZEOF_LONG >= SIZEOF_SIZE_T - #define __Pyx_sst_abs(value) labs(value) -#elif defined (_MSC_VER) - #define __Pyx_sst_abs(value) ((Py_ssize_t)_abs64(value)) -#elif defined (__STDC_VERSION__) && __STDC_VERSION__ >= 199901L - #define __Pyx_sst_abs(value) llabs(value) -#elif defined (__GNUC__) - #define __Pyx_sst_abs(value) __builtin_llabs(value) -#else - #define __Pyx_sst_abs(value) ((value<0) ? -value : value) -#endif -static CYTHON_INLINE const char* __Pyx_PyObject_AsString(PyObject*); -static CYTHON_INLINE const char* __Pyx_PyObject_AsStringAndSize(PyObject*, Py_ssize_t* length); -#define __Pyx_PyByteArray_FromString(s) PyByteArray_FromStringAndSize((const char*)s, strlen((const char*)s)) -#define __Pyx_PyByteArray_FromStringAndSize(s, l) PyByteArray_FromStringAndSize((const char*)s, l) -#define __Pyx_PyBytes_FromString PyBytes_FromString -#define __Pyx_PyBytes_FromStringAndSize PyBytes_FromStringAndSize -static CYTHON_INLINE PyObject* __Pyx_PyUnicode_FromString(const char*); -#if PY_MAJOR_VERSION < 3 - #define __Pyx_PyStr_FromString __Pyx_PyBytes_FromString - #define __Pyx_PyStr_FromStringAndSize __Pyx_PyBytes_FromStringAndSize -#else - #define __Pyx_PyStr_FromString __Pyx_PyUnicode_FromString - #define __Pyx_PyStr_FromStringAndSize __Pyx_PyUnicode_FromStringAndSize -#endif -#define __Pyx_PyBytes_AsWritableString(s) ((char*) PyBytes_AS_STRING(s)) -#define __Pyx_PyBytes_AsWritableSString(s) ((signed char*) PyBytes_AS_STRING(s)) -#define __Pyx_PyBytes_AsWritableUString(s) ((unsigned char*) PyBytes_AS_STRING(s)) -#define __Pyx_PyBytes_AsString(s) ((const char*) PyBytes_AS_STRING(s)) -#define __Pyx_PyBytes_AsSString(s) ((const signed char*) PyBytes_AS_STRING(s)) -#define __Pyx_PyBytes_AsUString(s) ((const unsigned char*) PyBytes_AS_STRING(s)) -#define __Pyx_PyObject_AsWritableString(s) ((char*) __Pyx_PyObject_AsString(s)) -#define __Pyx_PyObject_AsWritableSString(s) ((signed char*) __Pyx_PyObject_AsString(s)) -#define __Pyx_PyObject_AsWritableUString(s) ((unsigned char*) __Pyx_PyObject_AsString(s)) -#define __Pyx_PyObject_AsSString(s) ((const signed char*) __Pyx_PyObject_AsString(s)) -#define __Pyx_PyObject_AsUString(s) ((const unsigned char*) __Pyx_PyObject_AsString(s)) -#define __Pyx_PyObject_FromCString(s) __Pyx_PyObject_FromString((const char*)s) -#define __Pyx_PyBytes_FromCString(s) __Pyx_PyBytes_FromString((const char*)s) -#define __Pyx_PyByteArray_FromCString(s) __Pyx_PyByteArray_FromString((const char*)s) -#define __Pyx_PyStr_FromCString(s) __Pyx_PyStr_FromString((const char*)s) -#define __Pyx_PyUnicode_FromCString(s) __Pyx_PyUnicode_FromString((const char*)s) -static CYTHON_INLINE size_t __Pyx_Py_UNICODE_strlen(const Py_UNICODE *u) { - const Py_UNICODE *u_end = u; - while (*u_end++) ; - return (size_t)(u_end - u - 1); -} -#define __Pyx_PyUnicode_FromUnicode(u) PyUnicode_FromUnicode(u, __Pyx_Py_UNICODE_strlen(u)) -#define __Pyx_PyUnicode_FromUnicodeAndLength PyUnicode_FromUnicode -#define __Pyx_PyUnicode_AsUnicode PyUnicode_AsUnicode -#define __Pyx_NewRef(obj) (Py_INCREF(obj), obj) -#define __Pyx_Owned_Py_None(b) __Pyx_NewRef(Py_None) -static CYTHON_INLINE PyObject * __Pyx_PyBool_FromLong(long b); -static CYTHON_INLINE int __Pyx_PyObject_IsTrue(PyObject*); -static CYTHON_INLINE int __Pyx_PyObject_IsTrueAndDecref(PyObject*); -static CYTHON_INLINE PyObject* __Pyx_PyNumber_IntOrLong(PyObject* x); -#define __Pyx_PySequence_Tuple(obj)\ - (likely(PyTuple_CheckExact(obj)) ? __Pyx_NewRef(obj) : PySequence_Tuple(obj)) -static CYTHON_INLINE Py_ssize_t __Pyx_PyIndex_AsSsize_t(PyObject*); -static CYTHON_INLINE PyObject * __Pyx_PyInt_FromSize_t(size_t); -#if CYTHON_ASSUME_SAFE_MACROS -#define __pyx_PyFloat_AsDouble(x) (PyFloat_CheckExact(x) ? PyFloat_AS_DOUBLE(x) : PyFloat_AsDouble(x)) -#else -#define __pyx_PyFloat_AsDouble(x) PyFloat_AsDouble(x) -#endif -#define __pyx_PyFloat_AsFloat(x) ((float) __pyx_PyFloat_AsDouble(x)) -#if PY_MAJOR_VERSION >= 3 -#define __Pyx_PyNumber_Int(x) (PyLong_CheckExact(x) ? __Pyx_NewRef(x) : PyNumber_Long(x)) -#else -#define __Pyx_PyNumber_Int(x) (PyInt_CheckExact(x) ? __Pyx_NewRef(x) : PyNumber_Int(x)) -#endif -#define __Pyx_PyNumber_Float(x) (PyFloat_CheckExact(x) ? __Pyx_NewRef(x) : PyNumber_Float(x)) -#if PY_MAJOR_VERSION < 3 && __PYX_DEFAULT_STRING_ENCODING_IS_ASCII -static int __Pyx_sys_getdefaultencoding_not_ascii; -static int __Pyx_init_sys_getdefaultencoding_params(void) { - PyObject* sys; - PyObject* default_encoding = NULL; - PyObject* ascii_chars_u = NULL; - PyObject* ascii_chars_b = NULL; - const char* default_encoding_c; - sys = PyImport_ImportModule("sys"); - if (!sys) goto bad; - default_encoding = PyObject_CallMethod(sys, (char*) "getdefaultencoding", NULL); - Py_DECREF(sys); - if (!default_encoding) goto bad; - default_encoding_c = PyBytes_AsString(default_encoding); - if (!default_encoding_c) goto bad; - if (strcmp(default_encoding_c, "ascii") == 0) { - __Pyx_sys_getdefaultencoding_not_ascii = 0; - } else { - char ascii_chars[128]; - int c; - for (c = 0; c < 128; c++) { - ascii_chars[c] = c; - } - __Pyx_sys_getdefaultencoding_not_ascii = 1; - ascii_chars_u = PyUnicode_DecodeASCII(ascii_chars, 128, NULL); - if (!ascii_chars_u) goto bad; - ascii_chars_b = PyUnicode_AsEncodedString(ascii_chars_u, default_encoding_c, NULL); - if (!ascii_chars_b || !PyBytes_Check(ascii_chars_b) || memcmp(ascii_chars, PyBytes_AS_STRING(ascii_chars_b), 128) != 0) { - PyErr_Format( - PyExc_ValueError, - "This module compiled with c_string_encoding=ascii, but default encoding '%.200s' is not a superset of ascii.", - default_encoding_c); - goto bad; - } - Py_DECREF(ascii_chars_u); - Py_DECREF(ascii_chars_b); - } - Py_DECREF(default_encoding); - return 0; -bad: - Py_XDECREF(default_encoding); - Py_XDECREF(ascii_chars_u); - Py_XDECREF(ascii_chars_b); - return -1; -} -#endif -#if __PYX_DEFAULT_STRING_ENCODING_IS_DEFAULT && PY_MAJOR_VERSION >= 3 -#define __Pyx_PyUnicode_FromStringAndSize(c_str, size) PyUnicode_DecodeUTF8(c_str, size, NULL) -#else -#define __Pyx_PyUnicode_FromStringAndSize(c_str, size) PyUnicode_Decode(c_str, size, __PYX_DEFAULT_STRING_ENCODING, NULL) -#if __PYX_DEFAULT_STRING_ENCODING_IS_DEFAULT -static char* __PYX_DEFAULT_STRING_ENCODING; -static int __Pyx_init_sys_getdefaultencoding_params(void) { - PyObject* sys; - PyObject* default_encoding = NULL; - char* default_encoding_c; - sys = PyImport_ImportModule("sys"); - if (!sys) goto bad; - default_encoding = PyObject_CallMethod(sys, (char*) (const char*) "getdefaultencoding", NULL); - Py_DECREF(sys); - if (!default_encoding) goto bad; - default_encoding_c = PyBytes_AsString(default_encoding); - if (!default_encoding_c) goto bad; - __PYX_DEFAULT_STRING_ENCODING = (char*) malloc(strlen(default_encoding_c) + 1); - if (!__PYX_DEFAULT_STRING_ENCODING) goto bad; - strcpy(__PYX_DEFAULT_STRING_ENCODING, default_encoding_c); - Py_DECREF(default_encoding); - return 0; -bad: - Py_XDECREF(default_encoding); - return -1; -} -#endif -#endif - - -/* Test for GCC > 2.95 */ -#if defined(__GNUC__) && (__GNUC__ > 2 || (__GNUC__ == 2 && (__GNUC_MINOR__ > 95))) - #define likely(x) __builtin_expect(!!(x), 1) - #define unlikely(x) __builtin_expect(!!(x), 0) -#else /* !__GNUC__ or GCC < 2.95 */ - #define likely(x) (x) - #define unlikely(x) (x) -#endif /* __GNUC__ */ -static CYTHON_INLINE void __Pyx_pretend_to_initialize(void* ptr) { (void)ptr; } - -static PyObject *__pyx_m = NULL; -static PyObject *__pyx_d; -static PyObject *__pyx_b; -static PyObject *__pyx_cython_runtime = NULL; -static PyObject *__pyx_empty_tuple; -static PyObject *__pyx_empty_bytes; -static PyObject *__pyx_empty_unicode; -static int __pyx_lineno; -static int __pyx_clineno = 0; -static const char * __pyx_cfilenm= __FILE__; -static const char *__pyx_filename; - - -static const char *__pyx_f[] = { - "pmercury/protocols/dtls_server.pyx", -}; - -/*--- Type declarations ---*/ - -/* --- Runtime support code (head) --- */ -/* Refnanny.proto */ -#ifndef CYTHON_REFNANNY - #define CYTHON_REFNANNY 0 -#endif -#if CYTHON_REFNANNY - typedef struct { - void (*INCREF)(void*, PyObject*, int); - void (*DECREF)(void*, PyObject*, int); - void (*GOTREF)(void*, PyObject*, int); - void (*GIVEREF)(void*, PyObject*, int); - void* (*SetupContext)(const char*, int, const char*); - void (*FinishContext)(void**); - } __Pyx_RefNannyAPIStruct; - static __Pyx_RefNannyAPIStruct *__Pyx_RefNanny = NULL; - static __Pyx_RefNannyAPIStruct *__Pyx_RefNannyImportAPI(const char *modname); - #define __Pyx_RefNannyDeclarations void *__pyx_refnanny = NULL; -#ifdef WITH_THREAD - #define __Pyx_RefNannySetupContext(name, acquire_gil)\ - if (acquire_gil) {\ - PyGILState_STATE __pyx_gilstate_save = PyGILState_Ensure();\ - __pyx_refnanny = __Pyx_RefNanny->SetupContext((name), __LINE__, __FILE__);\ - PyGILState_Release(__pyx_gilstate_save);\ - } else {\ - __pyx_refnanny = __Pyx_RefNanny->SetupContext((name), __LINE__, __FILE__);\ - } -#else - #define __Pyx_RefNannySetupContext(name, acquire_gil)\ - __pyx_refnanny = __Pyx_RefNanny->SetupContext((name), __LINE__, __FILE__) -#endif - #define __Pyx_RefNannyFinishContext()\ - __Pyx_RefNanny->FinishContext(&__pyx_refnanny) - #define __Pyx_INCREF(r) __Pyx_RefNanny->INCREF(__pyx_refnanny, (PyObject *)(r), __LINE__) - #define __Pyx_DECREF(r) __Pyx_RefNanny->DECREF(__pyx_refnanny, (PyObject *)(r), __LINE__) - #define __Pyx_GOTREF(r) __Pyx_RefNanny->GOTREF(__pyx_refnanny, (PyObject *)(r), __LINE__) - #define __Pyx_GIVEREF(r) __Pyx_RefNanny->GIVEREF(__pyx_refnanny, (PyObject *)(r), __LINE__) - #define __Pyx_XINCREF(r) do { if((r) != NULL) {__Pyx_INCREF(r); }} while(0) - #define __Pyx_XDECREF(r) do { if((r) != NULL) {__Pyx_DECREF(r); }} while(0) - #define __Pyx_XGOTREF(r) do { if((r) != NULL) {__Pyx_GOTREF(r); }} while(0) - #define __Pyx_XGIVEREF(r) do { if((r) != NULL) {__Pyx_GIVEREF(r);}} while(0) -#else - #define __Pyx_RefNannyDeclarations - #define __Pyx_RefNannySetupContext(name, acquire_gil) - #define __Pyx_RefNannyFinishContext() - #define __Pyx_INCREF(r) Py_INCREF(r) - #define __Pyx_DECREF(r) Py_DECREF(r) - #define __Pyx_GOTREF(r) - #define __Pyx_GIVEREF(r) - #define __Pyx_XINCREF(r) Py_XINCREF(r) - #define __Pyx_XDECREF(r) Py_XDECREF(r) - #define __Pyx_XGOTREF(r) - #define __Pyx_XGIVEREF(r) -#endif -#define __Pyx_XDECREF_SET(r, v) do {\ - PyObject *tmp = (PyObject *) r;\ - r = v; __Pyx_XDECREF(tmp);\ - } while (0) -#define __Pyx_DECREF_SET(r, v) do {\ - PyObject *tmp = (PyObject *) r;\ - r = v; __Pyx_DECREF(tmp);\ - } while (0) -#define __Pyx_CLEAR(r) do { PyObject* tmp = ((PyObject*)(r)); r = NULL; __Pyx_DECREF(tmp);} while(0) -#define __Pyx_XCLEAR(r) do { if((r) != NULL) {PyObject* tmp = ((PyObject*)(r)); r = NULL; __Pyx_DECREF(tmp);}} while(0) - -/* PyObjectGetAttrStr.proto */ -#if CYTHON_USE_TYPE_SLOTS -static CYTHON_INLINE PyObject* __Pyx_PyObject_GetAttrStr(PyObject* obj, PyObject* attr_name); -#else -#define __Pyx_PyObject_GetAttrStr(o,n) PyObject_GetAttr(o,n) -#endif - -/* GetBuiltinName.proto */ -static PyObject *__Pyx_GetBuiltinName(PyObject *name); - -/* RaiseDoubleKeywords.proto */ -static void __Pyx_RaiseDoubleKeywordsError(const char* func_name, PyObject* kw_name); - -/* ParseKeywords.proto */ -static int __Pyx_ParseOptionalKeywords(PyObject *kwds, PyObject **argnames[],\ - PyObject *kwds2, PyObject *values[], Py_ssize_t num_pos_args,\ - const char* function_name); - -/* RaiseArgTupleInvalid.proto */ -static void __Pyx_RaiseArgtupleInvalid(const char* func_name, int exact, - Py_ssize_t num_min, Py_ssize_t num_max, Py_ssize_t num_found); - -/* PyObjectSetAttrStr.proto */ -#if CYTHON_USE_TYPE_SLOTS -#define __Pyx_PyObject_DelAttrStr(o,n) __Pyx_PyObject_SetAttrStr(o, n, NULL) -static CYTHON_INLINE int __Pyx_PyObject_SetAttrStr(PyObject* obj, PyObject* attr_name, PyObject* value); -#else -#define __Pyx_PyObject_DelAttrStr(o,n) PyObject_DelAttr(o,n) -#define __Pyx_PyObject_SetAttrStr(o,n,v) PyObject_SetAttr(o,n,v) -#endif - -/* PyIntCompare.proto */ -static CYTHON_INLINE PyObject* __Pyx_PyInt_EqObjC(PyObject *op1, PyObject *op2, long intval, long inplace); - -/* GetItemInt.proto */ -#define __Pyx_GetItemInt(o, i, type, is_signed, to_py_func, is_list, wraparound, boundscheck)\ - (__Pyx_fits_Py_ssize_t(i, type, is_signed) ?\ - __Pyx_GetItemInt_Fast(o, (Py_ssize_t)i, is_list, wraparound, boundscheck) :\ - (is_list ? (PyErr_SetString(PyExc_IndexError, "list index out of range"), (PyObject*)NULL) :\ - __Pyx_GetItemInt_Generic(o, to_py_func(i)))) -#define __Pyx_GetItemInt_List(o, i, type, is_signed, to_py_func, is_list, wraparound, boundscheck)\ - (__Pyx_fits_Py_ssize_t(i, type, is_signed) ?\ - __Pyx_GetItemInt_List_Fast(o, (Py_ssize_t)i, wraparound, boundscheck) :\ - (PyErr_SetString(PyExc_IndexError, "list index out of range"), (PyObject*)NULL)) -static CYTHON_INLINE PyObject *__Pyx_GetItemInt_List_Fast(PyObject *o, Py_ssize_t i, - int wraparound, int boundscheck); -#define __Pyx_GetItemInt_Tuple(o, i, type, is_signed, to_py_func, is_list, wraparound, boundscheck)\ - (__Pyx_fits_Py_ssize_t(i, type, is_signed) ?\ - __Pyx_GetItemInt_Tuple_Fast(o, (Py_ssize_t)i, wraparound, boundscheck) :\ - (PyErr_SetString(PyExc_IndexError, "tuple index out of range"), (PyObject*)NULL)) -static CYTHON_INLINE PyObject *__Pyx_GetItemInt_Tuple_Fast(PyObject *o, Py_ssize_t i, - int wraparound, int boundscheck); -static PyObject *__Pyx_GetItemInt_Generic(PyObject *o, PyObject* j); -static CYTHON_INLINE PyObject *__Pyx_GetItemInt_Fast(PyObject *o, Py_ssize_t i, - int is_list, int wraparound, int boundscheck); - -/* ObjectGetItem.proto */ -#if CYTHON_USE_TYPE_SLOTS -static CYTHON_INLINE PyObject *__Pyx_PyObject_GetItem(PyObject *obj, PyObject* key); -#else -#define __Pyx_PyObject_GetItem(obj, key) PyObject_GetItem(obj, key) -#endif - -/* PyIntBinop.proto */ -#if !CYTHON_COMPILING_IN_PYPY -static PyObject* __Pyx_PyInt_AddObjC(PyObject *op1, PyObject *op2, long intval, int inplace, int zerodivision_check); -#else -#define __Pyx_PyInt_AddObjC(op1, op2, intval, inplace, zerodivision_check)\ - (inplace ? PyNumber_InPlaceAdd(op1, op2) : PyNumber_Add(op1, op2)) -#endif - -/* ArgTypeTest.proto */ -#define __Pyx_ArgTypeTest(obj, type, none_allowed, name, exact)\ - ((likely((Py_TYPE(obj) == type) | (none_allowed && (obj == Py_None)))) ? 1 :\ - __Pyx__ArgTypeTest(obj, type, name, exact)) -static int __Pyx__ArgTypeTest(PyObject *obj, PyTypeObject *type, const char *name, int exact); - -/* BuildPyUnicode.proto */ -static PyObject* __Pyx_PyUnicode_BuildFromAscii(Py_ssize_t ulength, char* chars, int clength, - int prepend_sign, char padding_char); - -/* CIntToPyUnicode.proto */ -static CYTHON_INLINE PyObject* __Pyx_PyUnicode_From_unsigned_char(unsigned char value, Py_ssize_t width, char padding_char, char format_char); - -/* IncludeStringH.proto */ -#include - -/* JoinPyUnicode.proto */ -static PyObject* __Pyx_PyUnicode_Join(PyObject* value_tuple, Py_ssize_t value_count, Py_ssize_t result_ulength, - Py_UCS4 max_char); - -/* PyDictVersioning.proto */ -#if CYTHON_USE_DICT_VERSIONS && CYTHON_USE_TYPE_SLOTS -#define __PYX_DICT_VERSION_INIT ((PY_UINT64_T) -1) -#define __PYX_GET_DICT_VERSION(dict) (((PyDictObject*)(dict))->ma_version_tag) -#define __PYX_UPDATE_DICT_CACHE(dict, value, cache_var, version_var)\ - (version_var) = __PYX_GET_DICT_VERSION(dict);\ - (cache_var) = (value); -#define __PYX_PY_DICT_LOOKUP_IF_MODIFIED(VAR, DICT, LOOKUP) {\ - static PY_UINT64_T __pyx_dict_version = 0;\ - static PyObject *__pyx_dict_cached_value = NULL;\ - if (likely(__PYX_GET_DICT_VERSION(DICT) == __pyx_dict_version)) {\ - (VAR) = __pyx_dict_cached_value;\ - } else {\ - (VAR) = __pyx_dict_cached_value = (LOOKUP);\ - __pyx_dict_version = __PYX_GET_DICT_VERSION(DICT);\ - }\ -} -static CYTHON_INLINE PY_UINT64_T __Pyx_get_tp_dict_version(PyObject *obj); -static CYTHON_INLINE PY_UINT64_T __Pyx_get_object_dict_version(PyObject *obj); -static CYTHON_INLINE int __Pyx_object_dict_version_matches(PyObject* obj, PY_UINT64_T tp_dict_version, PY_UINT64_T obj_dict_version); -#else -#define __PYX_GET_DICT_VERSION(dict) (0) -#define __PYX_UPDATE_DICT_CACHE(dict, value, cache_var, version_var) -#define __PYX_PY_DICT_LOOKUP_IF_MODIFIED(VAR, DICT, LOOKUP) (VAR) = (LOOKUP); -#endif - -/* GetModuleGlobalName.proto */ -#if CYTHON_USE_DICT_VERSIONS -#define __Pyx_GetModuleGlobalName(var, name) {\ - static PY_UINT64_T __pyx_dict_version = 0;\ - static PyObject *__pyx_dict_cached_value = NULL;\ - (var) = (likely(__pyx_dict_version == __PYX_GET_DICT_VERSION(__pyx_d))) ?\ - (likely(__pyx_dict_cached_value) ? __Pyx_NewRef(__pyx_dict_cached_value) : __Pyx_GetBuiltinName(name)) :\ - __Pyx__GetModuleGlobalName(name, &__pyx_dict_version, &__pyx_dict_cached_value);\ -} -#define __Pyx_GetModuleGlobalNameUncached(var, name) {\ - PY_UINT64_T __pyx_dict_version;\ - PyObject *__pyx_dict_cached_value;\ - (var) = __Pyx__GetModuleGlobalName(name, &__pyx_dict_version, &__pyx_dict_cached_value);\ -} -static PyObject *__Pyx__GetModuleGlobalName(PyObject *name, PY_UINT64_T *dict_version, PyObject **dict_cached_value); -#else -#define __Pyx_GetModuleGlobalName(var, name) (var) = __Pyx__GetModuleGlobalName(name) -#define __Pyx_GetModuleGlobalNameUncached(var, name) (var) = __Pyx__GetModuleGlobalName(name) -static CYTHON_INLINE PyObject *__Pyx__GetModuleGlobalName(PyObject *name); -#endif - -/* PyFunctionFastCall.proto */ -#if CYTHON_FAST_PYCALL -#define __Pyx_PyFunction_FastCall(func, args, nargs)\ - __Pyx_PyFunction_FastCallDict((func), (args), (nargs), NULL) -#if 1 || PY_VERSION_HEX < 0x030600B1 -static PyObject *__Pyx_PyFunction_FastCallDict(PyObject *func, PyObject **args, Py_ssize_t nargs, PyObject *kwargs); -#else -#define __Pyx_PyFunction_FastCallDict(func, args, nargs, kwargs) _PyFunction_FastCallDict(func, args, nargs, kwargs) -#endif -#define __Pyx_BUILD_ASSERT_EXPR(cond)\ - (sizeof(char [1 - 2*!(cond)]) - 1) -#ifndef Py_MEMBER_SIZE -#define Py_MEMBER_SIZE(type, member) sizeof(((type *)0)->member) -#endif - static size_t __pyx_pyframe_localsplus_offset = 0; - #include "frameobject.h" - #define __Pxy_PyFrame_Initialize_Offsets()\ - ((void)__Pyx_BUILD_ASSERT_EXPR(sizeof(PyFrameObject) == offsetof(PyFrameObject, f_localsplus) + Py_MEMBER_SIZE(PyFrameObject, f_localsplus)),\ - (void)(__pyx_pyframe_localsplus_offset = ((size_t)PyFrame_Type.tp_basicsize) - Py_MEMBER_SIZE(PyFrameObject, f_localsplus))) - #define __Pyx_PyFrame_GetLocalsplus(frame)\ - (assert(__pyx_pyframe_localsplus_offset), (PyObject **)(((char *)(frame)) + __pyx_pyframe_localsplus_offset)) -#endif - -/* PyCFunctionFastCall.proto */ -#if CYTHON_FAST_PYCCALL -static CYTHON_INLINE PyObject *__Pyx_PyCFunction_FastCall(PyObject *func, PyObject **args, Py_ssize_t nargs); -#else -#define __Pyx_PyCFunction_FastCall(func, args, nargs) (assert(0), NULL) -#endif - -/* PyObjectCall.proto */ -#if CYTHON_COMPILING_IN_CPYTHON -static CYTHON_INLINE PyObject* __Pyx_PyObject_Call(PyObject *func, PyObject *arg, PyObject *kw); -#else -#define __Pyx_PyObject_Call(func, arg, kw) PyObject_Call(func, arg, kw) -#endif - -/* RaiseTooManyValuesToUnpack.proto */ -static CYTHON_INLINE void __Pyx_RaiseTooManyValuesError(Py_ssize_t expected); - -/* RaiseNeedMoreValuesToUnpack.proto */ -static CYTHON_INLINE void __Pyx_RaiseNeedMoreValuesError(Py_ssize_t index); - -/* IterFinish.proto */ -static CYTHON_INLINE int __Pyx_IterFinish(void); - -/* UnpackItemEndCheck.proto */ -static int __Pyx_IternextUnpackEndCheck(PyObject *retval, Py_ssize_t expected); - -/* Import.proto */ -static PyObject *__Pyx_Import(PyObject *name, PyObject *from_list, int level); - -/* ListAppend.proto */ -#if CYTHON_USE_PYLIST_INTERNALS && CYTHON_ASSUME_SAFE_MACROS -static CYTHON_INLINE int __Pyx_PyList_Append(PyObject* list, PyObject* x) { - PyListObject* L = (PyListObject*) list; - Py_ssize_t len = Py_SIZE(list); - if (likely(L->allocated > len) & likely(len > (L->allocated >> 1))) { - Py_INCREF(x); - PyList_SET_ITEM(list, len, x); - Py_SIZE(list) = len+1; - return 0; - } - return PyList_Append(list, x); -} -#else -#define __Pyx_PyList_Append(L,x) PyList_Append(L,x) -#endif - -/* PyObjectCall2Args.proto */ -static CYTHON_UNUSED PyObject* __Pyx_PyObject_Call2Args(PyObject* function, PyObject* arg1, PyObject* arg2); - -/* PyObjectCallMethO.proto */ -#if CYTHON_COMPILING_IN_CPYTHON -static CYTHON_INLINE PyObject* __Pyx_PyObject_CallMethO(PyObject *func, PyObject *arg); -#endif - -/* PyObjectCallOneArg.proto */ -static CYTHON_INLINE PyObject* __Pyx_PyObject_CallOneArg(PyObject *func, PyObject *arg); - -/* PyObjectGetMethod.proto */ -static int __Pyx_PyObject_GetMethod(PyObject *obj, PyObject *name, PyObject **method); - -/* PyObjectCallMethod1.proto */ -static PyObject* __Pyx_PyObject_CallMethod1(PyObject* obj, PyObject* method_name, PyObject* arg); - -/* append.proto */ -static CYTHON_INLINE int __Pyx_PyObject_Append(PyObject* L, PyObject* x); - -/* ImportFrom.proto */ -static PyObject* __Pyx_ImportFrom(PyObject* module, PyObject* name); - -/* CalculateMetaclass.proto */ -static PyObject *__Pyx_CalculateMetaclass(PyTypeObject *metaclass, PyObject *bases); - -/* FetchCommonType.proto */ -static PyTypeObject* __Pyx_FetchCommonType(PyTypeObject* type); - -/* CythonFunction.proto */ -#define __Pyx_CyFunction_USED 1 -#define __Pyx_CYFUNCTION_STATICMETHOD 0x01 -#define __Pyx_CYFUNCTION_CLASSMETHOD 0x02 -#define __Pyx_CYFUNCTION_CCLASS 0x04 -#define __Pyx_CyFunction_GetClosure(f)\ - (((__pyx_CyFunctionObject *) (f))->func_closure) -#define __Pyx_CyFunction_GetClassObj(f)\ - (((__pyx_CyFunctionObject *) (f))->func_classobj) -#define __Pyx_CyFunction_Defaults(type, f)\ - ((type *)(((__pyx_CyFunctionObject *) (f))->defaults)) -#define __Pyx_CyFunction_SetDefaultsGetter(f, g)\ - ((__pyx_CyFunctionObject *) (f))->defaults_getter = (g) -typedef struct { - PyCFunctionObject func; -#if PY_VERSION_HEX < 0x030500A0 - PyObject *func_weakreflist; -#endif - PyObject *func_dict; - PyObject *func_name; - PyObject *func_qualname; - PyObject *func_doc; - PyObject *func_globals; - PyObject *func_code; - PyObject *func_closure; - PyObject *func_classobj; - void *defaults; - int defaults_pyobjects; - int flags; - PyObject *defaults_tuple; - PyObject *defaults_kwdict; - PyObject *(*defaults_getter)(PyObject *); - PyObject *func_annotations; -} __pyx_CyFunctionObject; -static PyTypeObject *__pyx_CyFunctionType = 0; -#define __Pyx_CyFunction_Check(obj) (__Pyx_TypeCheck(obj, __pyx_CyFunctionType)) -#define __Pyx_CyFunction_NewEx(ml, flags, qualname, self, module, globals, code)\ - __Pyx_CyFunction_New(__pyx_CyFunctionType, ml, flags, qualname, self, module, globals, code) -static PyObject *__Pyx_CyFunction_New(PyTypeObject *, PyMethodDef *ml, - int flags, PyObject* qualname, - PyObject *self, - PyObject *module, PyObject *globals, - PyObject* code); -static CYTHON_INLINE void *__Pyx_CyFunction_InitDefaults(PyObject *m, - size_t size, - int pyobjects); -static CYTHON_INLINE void __Pyx_CyFunction_SetDefaultsTuple(PyObject *m, - PyObject *tuple); -static CYTHON_INLINE void __Pyx_CyFunction_SetDefaultsKwDict(PyObject *m, - PyObject *dict); -static CYTHON_INLINE void __Pyx_CyFunction_SetAnnotationsDict(PyObject *m, - PyObject *dict); -static int __pyx_CyFunction_init(void); - -/* SetNameInClass.proto */ -#if CYTHON_COMPILING_IN_CPYTHON && PY_VERSION_HEX >= 0x030500A1 -#define __Pyx_SetNameInClass(ns, name, value)\ - (likely(PyDict_CheckExact(ns)) ? _PyDict_SetItem_KnownHash(ns, name, value, ((PyASCIIObject *) name)->hash) : PyObject_SetItem(ns, name, value)) -#elif CYTHON_COMPILING_IN_CPYTHON -#define __Pyx_SetNameInClass(ns, name, value)\ - (likely(PyDict_CheckExact(ns)) ? PyDict_SetItem(ns, name, value) : PyObject_SetItem(ns, name, value)) -#else -#define __Pyx_SetNameInClass(ns, name, value) PyObject_SetItem(ns, name, value) -#endif - -/* Py3ClassCreate.proto */ -static PyObject *__Pyx_Py3MetaclassPrepare(PyObject *metaclass, PyObject *bases, PyObject *name, PyObject *qualname, - PyObject *mkw, PyObject *modname, PyObject *doc); -static PyObject *__Pyx_Py3ClassCreate(PyObject *metaclass, PyObject *name, PyObject *bases, PyObject *dict, - PyObject *mkw, int calculate_metaclass, int allow_py2_metaclass); - -/* PyThreadStateGet.proto */ -#if CYTHON_FAST_THREAD_STATE -#define __Pyx_PyThreadState_declare PyThreadState *__pyx_tstate; -#define __Pyx_PyThreadState_assign __pyx_tstate = __Pyx_PyThreadState_Current; -#define __Pyx_PyErr_Occurred() __pyx_tstate->curexc_type -#else -#define __Pyx_PyThreadState_declare -#define __Pyx_PyThreadState_assign -#define __Pyx_PyErr_Occurred() PyErr_Occurred() -#endif - -/* PyErrFetchRestore.proto */ -#if CYTHON_FAST_THREAD_STATE -#define __Pyx_PyErr_Clear() __Pyx_ErrRestore(NULL, NULL, NULL) -#define __Pyx_ErrRestoreWithState(type, value, tb) __Pyx_ErrRestoreInState(PyThreadState_GET(), type, value, tb) -#define __Pyx_ErrFetchWithState(type, value, tb) __Pyx_ErrFetchInState(PyThreadState_GET(), type, value, tb) -#define __Pyx_ErrRestore(type, value, tb) __Pyx_ErrRestoreInState(__pyx_tstate, type, value, tb) -#define __Pyx_ErrFetch(type, value, tb) __Pyx_ErrFetchInState(__pyx_tstate, type, value, tb) -static CYTHON_INLINE void __Pyx_ErrRestoreInState(PyThreadState *tstate, PyObject *type, PyObject *value, PyObject *tb); -static CYTHON_INLINE void __Pyx_ErrFetchInState(PyThreadState *tstate, PyObject **type, PyObject **value, PyObject **tb); -#if CYTHON_COMPILING_IN_CPYTHON -#define __Pyx_PyErr_SetNone(exc) (Py_INCREF(exc), __Pyx_ErrRestore((exc), NULL, NULL)) -#else -#define __Pyx_PyErr_SetNone(exc) PyErr_SetNone(exc) -#endif -#else -#define __Pyx_PyErr_Clear() PyErr_Clear() -#define __Pyx_PyErr_SetNone(exc) PyErr_SetNone(exc) -#define __Pyx_ErrRestoreWithState(type, value, tb) PyErr_Restore(type, value, tb) -#define __Pyx_ErrFetchWithState(type, value, tb) PyErr_Fetch(type, value, tb) -#define __Pyx_ErrRestoreInState(tstate, type, value, tb) PyErr_Restore(type, value, tb) -#define __Pyx_ErrFetchInState(tstate, type, value, tb) PyErr_Fetch(type, value, tb) -#define __Pyx_ErrRestore(type, value, tb) PyErr_Restore(type, value, tb) -#define __Pyx_ErrFetch(type, value, tb) PyErr_Fetch(type, value, tb) -#endif - -/* CLineInTraceback.proto */ -#ifdef CYTHON_CLINE_IN_TRACEBACK -#define __Pyx_CLineForTraceback(tstate, c_line) (((CYTHON_CLINE_IN_TRACEBACK)) ? c_line : 0) -#else -static int __Pyx_CLineForTraceback(PyThreadState *tstate, int c_line); -#endif - -/* CodeObjectCache.proto */ -typedef struct { - PyCodeObject* code_object; - int code_line; -} __Pyx_CodeObjectCacheEntry; -struct __Pyx_CodeObjectCache { - int count; - int max_count; - __Pyx_CodeObjectCacheEntry* entries; -}; -static struct __Pyx_CodeObjectCache __pyx_code_cache = {0,0,NULL}; -static int __pyx_bisect_code_objects(__Pyx_CodeObjectCacheEntry* entries, int count, int code_line); -static PyCodeObject *__pyx_find_code_object(int code_line); -static void __pyx_insert_code_object(int code_line, PyCodeObject* code_object); - -/* AddTraceback.proto */ -static void __Pyx_AddTraceback(const char *funcname, int c_line, - int py_line, const char *filename); - -/* CIntToPy.proto */ -static CYTHON_INLINE PyObject* __Pyx_PyInt_From_unsigned_int(unsigned int value); - -/* CIntFromPy.proto */ -static CYTHON_INLINE unsigned int __Pyx_PyInt_As_unsigned_int(PyObject *); - -/* CIntToPy.proto */ -static CYTHON_INLINE PyObject* __Pyx_PyInt_From_long(long value); - -/* CIntFromPy.proto */ -static CYTHON_INLINE long __Pyx_PyInt_As_long(PyObject *); - -/* CIntFromPy.proto */ -static CYTHON_INLINE int __Pyx_PyInt_As_int(PyObject *); - -/* FastTypeChecks.proto */ -#if CYTHON_COMPILING_IN_CPYTHON -#define __Pyx_TypeCheck(obj, type) __Pyx_IsSubtype(Py_TYPE(obj), (PyTypeObject *)type) -static CYTHON_INLINE int __Pyx_IsSubtype(PyTypeObject *a, PyTypeObject *b); -static CYTHON_INLINE int __Pyx_PyErr_GivenExceptionMatches(PyObject *err, PyObject *type); -static CYTHON_INLINE int __Pyx_PyErr_GivenExceptionMatches2(PyObject *err, PyObject *type1, PyObject *type2); -#else -#define __Pyx_TypeCheck(obj, type) PyObject_TypeCheck(obj, (PyTypeObject *)type) -#define __Pyx_PyErr_GivenExceptionMatches(err, type) PyErr_GivenExceptionMatches(err, type) -#define __Pyx_PyErr_GivenExceptionMatches2(err, type1, type2) (PyErr_GivenExceptionMatches(err, type1) || PyErr_GivenExceptionMatches(err, type2)) -#endif -#define __Pyx_PyException_Check(obj) __Pyx_TypeCheck(obj, PyExc_Exception) - -/* CStringEquals.proto */ -static CYTHON_INLINE int __Pyx_StrEq(const char *, const char *); - -/* CheckBinaryVersion.proto */ -static int __Pyx_check_binary_version(void); - -/* InitStrings.proto */ -static int __Pyx_InitStrings(__Pyx_StringTabEntry *t); - - -/* Module declarations from 'libc.stdint' */ - -/* Module declarations from 'pmercury.protocols.dtls_server' */ -#define __Pyx_MODULE_NAME "pmercury.protocols.dtls_server" -extern int __pyx_module_is_main_pmercury__protocols__dtls_server; -int __pyx_module_is_main_pmercury__protocols__dtls_server = 0; - -/* Implementation of 'pmercury.protocols.dtls_server' */ -static PyObject *__pyx_builtin_staticmethod; -static const char __pyx_k_[] = "("; -static const char __pyx_k_s[] = "(%s)"; -static const char __pyx_k__2[] = ")"; -static const char __pyx_k__4[] = "()"; -static const char __pyx_k__5[] = "/../"; -static const char __pyx_k__6[] = "*"; -static const char __pyx_k_fp[] = "fp_"; -static const char __pyx_k_os[] = "os"; -static const char __pyx_k_02x[] = "02x"; -static const char __pyx_k_buf[] = "buf"; -static const char __pyx_k_doc[] = "__doc__"; -static const char __pyx_k_sys[] = "sys"; -static const char __pyx_k_data[] = "data"; -static const char __pyx_k_file[] = "__file__"; -static const char __pyx_k_init[] = "__init__"; -static const char __pyx_k_main[] = "__main__"; -static const char __pyx_k_name[] = "__name__"; -static const char __pyx_k_path[] = "path"; -static const char __pyx_k_self[] = "self"; -static const char __pyx_k_test[] = "__test__"; -static const char __pyx_k_fp_db[] = "fp_db"; -static const char __pyx_k_append[] = "append"; -static const char __pyx_k_config[] = "config"; -static const char __pyx_k_dst_ip[] = "dst_ip"; -static const char __pyx_k_fp_str[] = "fp_str"; -static const char __pyx_k_import[] = "__import__"; -static const char __pyx_k_module[] = "__module__"; -static const char __pyx_k_offset[] = "offset"; -static const char __pyx_k_abspath[] = "abspath"; -static const char __pyx_k_context[] = "context_"; -static const char __pyx_k_dirname[] = "dirname"; -static const char __pyx_k_ext_len[] = "ext_len"; -static const char __pyx_k_maxsize[] = "maxsize"; -static const char __pyx_k_prepare[] = "__prepare__"; -static const char __pyx_k_Protocol[] = "Protocol"; -static const char __pyx_k_data_len[] = "data_len"; -static const char __pyx_k_dst_port[] = "dst_port"; -static const char __pyx_k_fp_str_2[] = "fp_str_"; -static const char __pyx_k_qualname[] = "__qualname__"; -static const char __pyx_k_functools[] = "functools"; -static const char __pyx_k_lru_cache[] = "lru_cache"; -static const char __pyx_k_metaclass[] = "__metaclass__"; -static const char __pyx_k_list_procs[] = "list_procs"; -static const char __pyx_k_tmp_fp_ext[] = "tmp_fp_ext"; -static const char __pyx_k_DTLS_Server[] = "DTLS_Server"; -static const char __pyx_k_fingerprint[] = "fingerprint"; -static const char __pyx_k_fp_database[] = "fp_database"; -static const char __pyx_k_staticmethod[] = "staticmethod"; -static const char __pyx_k_approx_fp_str[] = "approx_fp_str"; -static const char __pyx_k_ext_total_len[] = "ext_total_len"; -static const char __pyx_k_proc_identify[] = "proc_identify"; -static const char __pyx_k_proto_identify[] = "proto_identify"; -static const char __pyx_k_parse_extension[] = "parse_extension"; -static const char __pyx_k_session_id_length[] = "session_id_length"; -static const char __pyx_k_DTLS_Server___init[] = "DTLS_Server.__init__"; -static const char __pyx_k_MAX_CACHED_RESULTS[] = "MAX_CACHED_RESULTS"; -static const char __pyx_k_cline_in_traceback[] = "cline_in_traceback"; -static const char __pyx_k_get_database_entry[] = "get_database_entry"; -static const char __pyx_k_get_human_readable[] = "get_human_readable"; -static const char __pyx_k_DTLS_Server_fingerprint[] = "DTLS_Server.fingerprint"; -static const char __pyx_k_pmercury_utils_tls_utils[] = "pmercury.utils.tls_utils"; -static const char __pyx_k_DTLS_Server_proc_identify[] = "DTLS_Server.proc_identify"; -static const char __pyx_k_DTLS_Server_proto_identify[] = "DTLS_Server.proto_identify"; -static const char __pyx_k_compression_methods_length[] = "compression_methods_length"; -static const char __pyx_k_pmercury_protocols_protocol[] = "pmercury.protocols.protocol"; -static const char __pyx_k_pmercury_utils_tls_constants[] = "pmercury.utils.tls_constants"; -static const char __pyx_k_Copyright_c_2019_Cisco_Systems[] = "\n Copyright (c) 2019 Cisco Systems, Inc. All rights reserved.\n License at https://github.com/cisco/mercury/blob/master/LICENSE\n"; -static const char __pyx_k_DTLS_Server_get_database_entry[] = "DTLS_Server.get_database_entry"; -static const char __pyx_k_DTLS_Server_get_human_readable[] = "DTLS_Server.get_human_readable"; -static const char __pyx_k_pmercury_protocols_dtls_server[] = "pmercury.protocols.dtls_server"; -static const char __pyx_k_pmercury_protocols_dtls_server_p[] = "pmercury/protocols/dtls_server.pyx"; -static PyObject *__pyx_kp_u_; -static PyObject *__pyx_kp_u_02x; -static PyObject *__pyx_n_s_DTLS_Server; -static PyObject *__pyx_n_s_DTLS_Server___init; -static PyObject *__pyx_n_s_DTLS_Server_fingerprint; -static PyObject *__pyx_n_s_DTLS_Server_get_database_entry; -static PyObject *__pyx_n_s_DTLS_Server_get_human_readable; -static PyObject *__pyx_n_s_DTLS_Server_proc_identify; -static PyObject *__pyx_n_s_DTLS_Server_proto_identify; -static PyObject *__pyx_n_s_MAX_CACHED_RESULTS; -static PyObject *__pyx_n_s_Protocol; -static PyObject *__pyx_kp_u__2; -static PyObject *__pyx_kp_u__4; -static PyObject *__pyx_kp_u__5; -static PyObject *__pyx_n_s__6; -static PyObject *__pyx_n_s_abspath; -static PyObject *__pyx_n_s_append; -static PyObject *__pyx_n_s_approx_fp_str; -static PyObject *__pyx_n_s_buf; -static PyObject *__pyx_n_s_cline_in_traceback; -static PyObject *__pyx_n_s_compression_methods_length; -static PyObject *__pyx_n_s_config; -static PyObject *__pyx_n_s_context; -static PyObject *__pyx_n_s_data; -static PyObject *__pyx_n_s_data_len; -static PyObject *__pyx_n_s_dirname; -static PyObject *__pyx_n_s_doc; -static PyObject *__pyx_n_s_dst_ip; -static PyObject *__pyx_n_s_dst_port; -static PyObject *__pyx_n_s_ext_len; -static PyObject *__pyx_n_s_ext_total_len; -static PyObject *__pyx_n_s_file; -static PyObject *__pyx_n_s_fingerprint; -static PyObject *__pyx_n_s_fp; -static PyObject *__pyx_n_s_fp_database; -static PyObject *__pyx_n_s_fp_db; -static PyObject *__pyx_n_s_fp_str; -static PyObject *__pyx_n_s_fp_str_2; -static PyObject *__pyx_n_s_functools; -static PyObject *__pyx_n_s_get_database_entry; -static PyObject *__pyx_n_s_get_human_readable; -static PyObject *__pyx_n_s_import; -static PyObject *__pyx_n_s_init; -static PyObject *__pyx_n_s_list_procs; -static PyObject *__pyx_n_s_lru_cache; -static PyObject *__pyx_n_s_main; -static PyObject *__pyx_n_s_maxsize; -static PyObject *__pyx_n_s_metaclass; -static PyObject *__pyx_n_s_module; -static PyObject *__pyx_n_s_name; -static PyObject *__pyx_n_s_offset; -static PyObject *__pyx_n_s_os; -static PyObject *__pyx_n_s_parse_extension; -static PyObject *__pyx_n_s_path; -static PyObject *__pyx_n_s_pmercury_protocols_dtls_server; -static PyObject *__pyx_kp_s_pmercury_protocols_dtls_server_p; -static PyObject *__pyx_n_s_pmercury_protocols_protocol; -static PyObject *__pyx_n_s_pmercury_utils_tls_constants; -static PyObject *__pyx_n_s_pmercury_utils_tls_utils; -static PyObject *__pyx_n_s_prepare; -static PyObject *__pyx_n_s_proc_identify; -static PyObject *__pyx_n_s_proto_identify; -static PyObject *__pyx_n_s_qualname; -static PyObject *__pyx_kp_u_s; -static PyObject *__pyx_n_s_self; -static PyObject *__pyx_n_s_session_id_length; -static PyObject *__pyx_n_s_staticmethod; -static PyObject *__pyx_n_s_sys; -static PyObject *__pyx_n_s_test; -static PyObject *__pyx_n_s_tmp_fp_ext; -static PyObject *__pyx_pf_8pmercury_9protocols_11dtls_server_11DTLS_Server___init__(CYTHON_UNUSED PyObject *__pyx_self, PyObject *__pyx_v_self, CYTHON_UNUSED PyObject *__pyx_v_fp_database, CYTHON_UNUSED PyObject *__pyx_v_config); /* proto */ -static PyObject *__pyx_pf_8pmercury_9protocols_11dtls_server_11DTLS_Server_2proto_identify(CYTHON_UNUSED PyObject *__pyx_self, PyObject *__pyx_v_data, PyObject *__pyx_v_offset, PyObject *__pyx_v_data_len); /* proto */ -static PyObject *__pyx_pf_8pmercury_9protocols_11dtls_server_11DTLS_Server_4fingerprint(CYTHON_UNUSED PyObject *__pyx_self, PyObject *__pyx_v_data, unsigned int __pyx_v_offset, unsigned int __pyx_v_data_len); /* proto */ -static PyObject *__pyx_pf_8pmercury_9protocols_11dtls_server_11DTLS_Server_6get_database_entry(CYTHON_UNUSED PyObject *__pyx_self, CYTHON_UNUSED PyObject *__pyx_v_self, CYTHON_UNUSED PyObject *__pyx_v_fp_str, CYTHON_UNUSED PyObject *__pyx_v_approx_fp_str); /* proto */ -static PyObject *__pyx_pf_8pmercury_9protocols_11dtls_server_11DTLS_Server_8get_human_readable(CYTHON_UNUSED PyObject *__pyx_self, CYTHON_UNUSED PyObject *__pyx_v_self, CYTHON_UNUSED PyObject *__pyx_v_fp_str_); /* proto */ -static PyObject *__pyx_pf_8pmercury_9protocols_11dtls_server_11DTLS_Server_10proc_identify(CYTHON_UNUSED PyObject *__pyx_self, CYTHON_UNUSED PyObject *__pyx_v_self, CYTHON_UNUSED PyObject *__pyx_v_fp_str_, CYTHON_UNUSED PyObject *__pyx_v_context_, CYTHON_UNUSED PyObject *__pyx_v_dst_ip, CYTHON_UNUSED PyObject *__pyx_v_dst_port, CYTHON_UNUSED PyObject *__pyx_v_list_procs); /* proto */ -static PyObject *__pyx_int_1; -static PyObject *__pyx_int_2; -static PyObject *__pyx_int_5; -static PyObject *__pyx_int_13; -static PyObject *__pyx_int_22; -static PyObject *__pyx_int_25; -static PyObject *__pyx_int_26; -static PyObject *__pyx_int_27; -static PyObject *__pyx_int_253; -static PyObject *__pyx_int_254; -static PyObject *__pyx_int_16777216; -static PyObject *__pyx_tuple__3; -static PyObject *__pyx_tuple__7; -static PyObject *__pyx_tuple__9; -static PyObject *__pyx_tuple__10; -static PyObject *__pyx_tuple__12; -static PyObject *__pyx_tuple__14; -static PyObject *__pyx_tuple__16; -static PyObject *__pyx_tuple__18; -static PyObject *__pyx_tuple__20; -static PyObject *__pyx_codeobj__8; -static PyObject *__pyx_codeobj__11; -static PyObject *__pyx_codeobj__13; -static PyObject *__pyx_codeobj__15; -static PyObject *__pyx_codeobj__17; -static PyObject *__pyx_codeobj__19; -/* Late includes */ - -/* "pmercury/protocols/dtls_server.pyx":35 - * class DTLS_Server(Protocol): - * - * def __init__(self, fp_database=None, config=None): # <<<<<<<<<<<<<< - * # populate fingerprint databases - * self.fp_db = {} - */ - -/* Python wrapper */ -static PyObject *__pyx_pw_8pmercury_9protocols_11dtls_server_11DTLS_Server_1__init__(PyObject *__pyx_self, PyObject *__pyx_args, PyObject *__pyx_kwds); /*proto*/ -static PyMethodDef __pyx_mdef_8pmercury_9protocols_11dtls_server_11DTLS_Server_1__init__ = {"__init__", (PyCFunction)(void*)(PyCFunctionWithKeywords)__pyx_pw_8pmercury_9protocols_11dtls_server_11DTLS_Server_1__init__, METH_VARARGS|METH_KEYWORDS, 0}; -static PyObject *__pyx_pw_8pmercury_9protocols_11dtls_server_11DTLS_Server_1__init__(PyObject *__pyx_self, PyObject *__pyx_args, PyObject *__pyx_kwds) { - PyObject *__pyx_v_self = 0; - CYTHON_UNUSED PyObject *__pyx_v_fp_database = 0; - CYTHON_UNUSED PyObject *__pyx_v_config = 0; - PyObject *__pyx_r = 0; - __Pyx_RefNannyDeclarations - __Pyx_RefNannySetupContext("__init__ (wrapper)", 0); - { - static PyObject **__pyx_pyargnames[] = {&__pyx_n_s_self,&__pyx_n_s_fp_database,&__pyx_n_s_config,0}; - PyObject* values[3] = {0,0,0}; - values[1] = ((PyObject *)((PyObject *)Py_None)); - values[2] = ((PyObject *)((PyObject *)Py_None)); - if (unlikely(__pyx_kwds)) { - Py_ssize_t kw_args; - const Py_ssize_t pos_args = PyTuple_GET_SIZE(__pyx_args); - switch (pos_args) { - case 3: values[2] = PyTuple_GET_ITEM(__pyx_args, 2); - CYTHON_FALLTHROUGH; - case 2: values[1] = PyTuple_GET_ITEM(__pyx_args, 1); - CYTHON_FALLTHROUGH; - case 1: values[0] = PyTuple_GET_ITEM(__pyx_args, 0); - CYTHON_FALLTHROUGH; - case 0: break; - default: goto __pyx_L5_argtuple_error; - } - kw_args = PyDict_Size(__pyx_kwds); - switch (pos_args) { - case 0: - if (likely((values[0] = __Pyx_PyDict_GetItemStr(__pyx_kwds, __pyx_n_s_self)) != 0)) kw_args--; - else goto __pyx_L5_argtuple_error; - CYTHON_FALLTHROUGH; - case 1: - if (kw_args > 0) { - PyObject* value = __Pyx_PyDict_GetItemStr(__pyx_kwds, __pyx_n_s_fp_database); - if (value) { values[1] = value; kw_args--; } - } - CYTHON_FALLTHROUGH; - case 2: - if (kw_args > 0) { - PyObject* value = __Pyx_PyDict_GetItemStr(__pyx_kwds, __pyx_n_s_config); - if (value) { values[2] = value; kw_args--; } - } - } - if (unlikely(kw_args > 0)) { - if (unlikely(__Pyx_ParseOptionalKeywords(__pyx_kwds, __pyx_pyargnames, 0, values, pos_args, "__init__") < 0)) __PYX_ERR(0, 35, __pyx_L3_error) - } - } else { - switch (PyTuple_GET_SIZE(__pyx_args)) { - case 3: values[2] = PyTuple_GET_ITEM(__pyx_args, 2); - CYTHON_FALLTHROUGH; - case 2: values[1] = PyTuple_GET_ITEM(__pyx_args, 1); - CYTHON_FALLTHROUGH; - case 1: values[0] = PyTuple_GET_ITEM(__pyx_args, 0); - break; - default: goto __pyx_L5_argtuple_error; - } - } - __pyx_v_self = values[0]; - __pyx_v_fp_database = values[1]; - __pyx_v_config = values[2]; - } - goto __pyx_L4_argument_unpacking_done; - __pyx_L5_argtuple_error:; - __Pyx_RaiseArgtupleInvalid("__init__", 0, 1, 3, PyTuple_GET_SIZE(__pyx_args)); __PYX_ERR(0, 35, __pyx_L3_error) - __pyx_L3_error:; - __Pyx_AddTraceback("pmercury.protocols.dtls_server.DTLS_Server.__init__", __pyx_clineno, __pyx_lineno, __pyx_filename); - __Pyx_RefNannyFinishContext(); - return NULL; - __pyx_L4_argument_unpacking_done:; - __pyx_r = __pyx_pf_8pmercury_9protocols_11dtls_server_11DTLS_Server___init__(__pyx_self, __pyx_v_self, __pyx_v_fp_database, __pyx_v_config); - - /* function exit code */ - __Pyx_RefNannyFinishContext(); - return __pyx_r; -} - -static PyObject *__pyx_pf_8pmercury_9protocols_11dtls_server_11DTLS_Server___init__(CYTHON_UNUSED PyObject *__pyx_self, PyObject *__pyx_v_self, CYTHON_UNUSED PyObject *__pyx_v_fp_database, CYTHON_UNUSED PyObject *__pyx_v_config) { - PyObject *__pyx_r = NULL; - __Pyx_RefNannyDeclarations - PyObject *__pyx_t_1 = NULL; - __Pyx_RefNannySetupContext("__init__", 0); - - /* "pmercury/protocols/dtls_server.pyx":37 - * def __init__(self, fp_database=None, config=None): - * # populate fingerprint databases - * self.fp_db = {} # <<<<<<<<<<<<<< - * - * - */ - __pyx_t_1 = __Pyx_PyDict_NewPresized(0); if (unlikely(!__pyx_t_1)) __PYX_ERR(0, 37, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_1); - if (__Pyx_PyObject_SetAttrStr(__pyx_v_self, __pyx_n_s_fp_db, __pyx_t_1) < 0) __PYX_ERR(0, 37, __pyx_L1_error) - __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0; - - /* "pmercury/protocols/dtls_server.pyx":35 - * class DTLS_Server(Protocol): - * - * def __init__(self, fp_database=None, config=None): # <<<<<<<<<<<<<< - * # populate fingerprint databases - * self.fp_db = {} - */ - - /* function exit code */ - __pyx_r = Py_None; __Pyx_INCREF(Py_None); - goto __pyx_L0; - __pyx_L1_error:; - __Pyx_XDECREF(__pyx_t_1); - __Pyx_AddTraceback("pmercury.protocols.dtls_server.DTLS_Server.__init__", __pyx_clineno, __pyx_lineno, __pyx_filename); - __pyx_r = NULL; - __pyx_L0:; - __Pyx_XGIVEREF(__pyx_r); - __Pyx_RefNannyFinishContext(); - return __pyx_r; -} - -/* "pmercury/protocols/dtls_server.pyx":41 - * - * @staticmethod - * def proto_identify(data, offset, data_len): # <<<<<<<<<<<<<< - * if data_len-offset < 27: - * return False - */ - -/* Python wrapper */ -static PyObject *__pyx_pw_8pmercury_9protocols_11dtls_server_11DTLS_Server_3proto_identify(PyObject *__pyx_self, PyObject *__pyx_args, PyObject *__pyx_kwds); /*proto*/ -static PyMethodDef __pyx_mdef_8pmercury_9protocols_11dtls_server_11DTLS_Server_3proto_identify = {"proto_identify", (PyCFunction)(void*)(PyCFunctionWithKeywords)__pyx_pw_8pmercury_9protocols_11dtls_server_11DTLS_Server_3proto_identify, METH_VARARGS|METH_KEYWORDS, 0}; -static PyObject *__pyx_pw_8pmercury_9protocols_11dtls_server_11DTLS_Server_3proto_identify(PyObject *__pyx_self, PyObject *__pyx_args, PyObject *__pyx_kwds) { - PyObject *__pyx_v_data = 0; - PyObject *__pyx_v_offset = 0; - PyObject *__pyx_v_data_len = 0; - PyObject *__pyx_r = 0; - __Pyx_RefNannyDeclarations - __Pyx_RefNannySetupContext("proto_identify (wrapper)", 0); - { - static PyObject **__pyx_pyargnames[] = {&__pyx_n_s_data,&__pyx_n_s_offset,&__pyx_n_s_data_len,0}; - PyObject* values[3] = {0,0,0}; - if (unlikely(__pyx_kwds)) { - Py_ssize_t kw_args; - const Py_ssize_t pos_args = PyTuple_GET_SIZE(__pyx_args); - switch (pos_args) { - case 3: values[2] = PyTuple_GET_ITEM(__pyx_args, 2); - CYTHON_FALLTHROUGH; - case 2: values[1] = PyTuple_GET_ITEM(__pyx_args, 1); - CYTHON_FALLTHROUGH; - case 1: values[0] = PyTuple_GET_ITEM(__pyx_args, 0); - CYTHON_FALLTHROUGH; - case 0: break; - default: goto __pyx_L5_argtuple_error; - } - kw_args = PyDict_Size(__pyx_kwds); - switch (pos_args) { - case 0: - if (likely((values[0] = __Pyx_PyDict_GetItemStr(__pyx_kwds, __pyx_n_s_data)) != 0)) kw_args--; - else goto __pyx_L5_argtuple_error; - CYTHON_FALLTHROUGH; - case 1: - if (likely((values[1] = __Pyx_PyDict_GetItemStr(__pyx_kwds, __pyx_n_s_offset)) != 0)) kw_args--; - else { - __Pyx_RaiseArgtupleInvalid("proto_identify", 1, 3, 3, 1); __PYX_ERR(0, 41, __pyx_L3_error) - } - CYTHON_FALLTHROUGH; - case 2: - if (likely((values[2] = __Pyx_PyDict_GetItemStr(__pyx_kwds, __pyx_n_s_data_len)) != 0)) kw_args--; - else { - __Pyx_RaiseArgtupleInvalid("proto_identify", 1, 3, 3, 2); __PYX_ERR(0, 41, __pyx_L3_error) - } - } - if (unlikely(kw_args > 0)) { - if (unlikely(__Pyx_ParseOptionalKeywords(__pyx_kwds, __pyx_pyargnames, 0, values, pos_args, "proto_identify") < 0)) __PYX_ERR(0, 41, __pyx_L3_error) - } - } else if (PyTuple_GET_SIZE(__pyx_args) != 3) { - goto __pyx_L5_argtuple_error; - } else { - values[0] = PyTuple_GET_ITEM(__pyx_args, 0); - values[1] = PyTuple_GET_ITEM(__pyx_args, 1); - values[2] = PyTuple_GET_ITEM(__pyx_args, 2); - } - __pyx_v_data = values[0]; - __pyx_v_offset = values[1]; - __pyx_v_data_len = values[2]; - } - goto __pyx_L4_argument_unpacking_done; - __pyx_L5_argtuple_error:; - __Pyx_RaiseArgtupleInvalid("proto_identify", 1, 3, 3, PyTuple_GET_SIZE(__pyx_args)); __PYX_ERR(0, 41, __pyx_L3_error) - __pyx_L3_error:; - __Pyx_AddTraceback("pmercury.protocols.dtls_server.DTLS_Server.proto_identify", __pyx_clineno, __pyx_lineno, __pyx_filename); - __Pyx_RefNannyFinishContext(); - return NULL; - __pyx_L4_argument_unpacking_done:; - __pyx_r = __pyx_pf_8pmercury_9protocols_11dtls_server_11DTLS_Server_2proto_identify(__pyx_self, __pyx_v_data, __pyx_v_offset, __pyx_v_data_len); - - /* function exit code */ - __Pyx_RefNannyFinishContext(); - return __pyx_r; -} - -static PyObject *__pyx_pf_8pmercury_9protocols_11dtls_server_11DTLS_Server_2proto_identify(CYTHON_UNUSED PyObject *__pyx_self, PyObject *__pyx_v_data, PyObject *__pyx_v_offset, PyObject *__pyx_v_data_len) { - PyObject *__pyx_r = NULL; - __Pyx_RefNannyDeclarations - PyObject *__pyx_t_1 = NULL; - PyObject *__pyx_t_2 = NULL; - int __pyx_t_3; - int __pyx_t_4; - __Pyx_RefNannySetupContext("proto_identify", 0); - - /* "pmercury/protocols/dtls_server.pyx":42 - * @staticmethod - * def proto_identify(data, offset, data_len): - * if data_len-offset < 27: # <<<<<<<<<<<<<< - * return False - * if (data[offset] == 22 and - */ - __pyx_t_1 = PyNumber_Subtract(__pyx_v_data_len, __pyx_v_offset); if (unlikely(!__pyx_t_1)) __PYX_ERR(0, 42, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_1); - __pyx_t_2 = PyObject_RichCompare(__pyx_t_1, __pyx_int_27, Py_LT); __Pyx_XGOTREF(__pyx_t_2); if (unlikely(!__pyx_t_2)) __PYX_ERR(0, 42, __pyx_L1_error) - __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0; - __pyx_t_3 = __Pyx_PyObject_IsTrue(__pyx_t_2); if (unlikely(__pyx_t_3 < 0)) __PYX_ERR(0, 42, __pyx_L1_error) - __Pyx_DECREF(__pyx_t_2); __pyx_t_2 = 0; - if (__pyx_t_3) { - - /* "pmercury/protocols/dtls_server.pyx":43 - * def proto_identify(data, offset, data_len): - * if data_len-offset < 27: - * return False # <<<<<<<<<<<<<< - * if (data[offset] == 22 and - * data[offset+1] == 254 and - */ - __Pyx_XDECREF(__pyx_r); - __Pyx_INCREF(Py_False); - __pyx_r = Py_False; - goto __pyx_L0; - - /* "pmercury/protocols/dtls_server.pyx":42 - * @staticmethod - * def proto_identify(data, offset, data_len): - * if data_len-offset < 27: # <<<<<<<<<<<<<< - * return False - * if (data[offset] == 22 and - */ - } - - /* "pmercury/protocols/dtls_server.pyx":44 - * if data_len-offset < 27: - * return False - * if (data[offset] == 22 and # <<<<<<<<<<<<<< - * data[offset+1] == 254 and - * data[offset+2] >= 253 and - */ - __pyx_t_2 = __Pyx_PyObject_GetItem(__pyx_v_data, __pyx_v_offset); if (unlikely(!__pyx_t_2)) __PYX_ERR(0, 44, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_2); - __pyx_t_1 = __Pyx_PyInt_EqObjC(__pyx_t_2, __pyx_int_22, 22, 0); if (unlikely(!__pyx_t_1)) __PYX_ERR(0, 44, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_1); - __Pyx_DECREF(__pyx_t_2); __pyx_t_2 = 0; - __pyx_t_4 = __Pyx_PyObject_IsTrue(__pyx_t_1); if (unlikely(__pyx_t_4 < 0)) __PYX_ERR(0, 44, __pyx_L1_error) - __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0; - if (__pyx_t_4) { - } else { - __pyx_t_3 = __pyx_t_4; - goto __pyx_L5_bool_binop_done; - } - - /* "pmercury/protocols/dtls_server.pyx":45 - * return False - * if (data[offset] == 22 and - * data[offset+1] == 254 and # <<<<<<<<<<<<<< - * data[offset+2] >= 253 and - * data[offset+13] == 2 and - */ - __pyx_t_1 = __Pyx_PyInt_AddObjC(__pyx_v_offset, __pyx_int_1, 1, 0, 0); if (unlikely(!__pyx_t_1)) __PYX_ERR(0, 45, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_1); - __pyx_t_2 = __Pyx_PyObject_GetItem(__pyx_v_data, __pyx_t_1); if (unlikely(!__pyx_t_2)) __PYX_ERR(0, 45, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_2); - __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0; - __pyx_t_1 = __Pyx_PyInt_EqObjC(__pyx_t_2, __pyx_int_254, 0xFE, 0); if (unlikely(!__pyx_t_1)) __PYX_ERR(0, 45, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_1); - __Pyx_DECREF(__pyx_t_2); __pyx_t_2 = 0; - __pyx_t_4 = __Pyx_PyObject_IsTrue(__pyx_t_1); if (unlikely(__pyx_t_4 < 0)) __PYX_ERR(0, 45, __pyx_L1_error) - __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0; - if (__pyx_t_4) { - } else { - __pyx_t_3 = __pyx_t_4; - goto __pyx_L5_bool_binop_done; - } - - /* "pmercury/protocols/dtls_server.pyx":46 - * if (data[offset] == 22 and - * data[offset+1] == 254 and - * data[offset+2] >= 253 and # <<<<<<<<<<<<<< - * data[offset+13] == 2 and - * data[offset+25] == 254 and - */ - __pyx_t_1 = __Pyx_PyInt_AddObjC(__pyx_v_offset, __pyx_int_2, 2, 0, 0); if (unlikely(!__pyx_t_1)) __PYX_ERR(0, 46, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_1); - __pyx_t_2 = __Pyx_PyObject_GetItem(__pyx_v_data, __pyx_t_1); if (unlikely(!__pyx_t_2)) __PYX_ERR(0, 46, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_2); - __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0; - __pyx_t_1 = PyObject_RichCompare(__pyx_t_2, __pyx_int_253, Py_GE); __Pyx_XGOTREF(__pyx_t_1); if (unlikely(!__pyx_t_1)) __PYX_ERR(0, 46, __pyx_L1_error) - __Pyx_DECREF(__pyx_t_2); __pyx_t_2 = 0; - __pyx_t_4 = __Pyx_PyObject_IsTrue(__pyx_t_1); if (unlikely(__pyx_t_4 < 0)) __PYX_ERR(0, 46, __pyx_L1_error) - __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0; - if (__pyx_t_4) { - } else { - __pyx_t_3 = __pyx_t_4; - goto __pyx_L5_bool_binop_done; - } - - /* "pmercury/protocols/dtls_server.pyx":47 - * data[offset+1] == 254 and - * data[offset+2] >= 253 and - * data[offset+13] == 2 and # <<<<<<<<<<<<<< - * data[offset+25] == 254 and - * data[offset+26] >= 253): - */ - __pyx_t_1 = __Pyx_PyInt_AddObjC(__pyx_v_offset, __pyx_int_13, 13, 0, 0); if (unlikely(!__pyx_t_1)) __PYX_ERR(0, 47, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_1); - __pyx_t_2 = __Pyx_PyObject_GetItem(__pyx_v_data, __pyx_t_1); if (unlikely(!__pyx_t_2)) __PYX_ERR(0, 47, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_2); - __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0; - __pyx_t_1 = __Pyx_PyInt_EqObjC(__pyx_t_2, __pyx_int_2, 2, 0); if (unlikely(!__pyx_t_1)) __PYX_ERR(0, 47, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_1); - __Pyx_DECREF(__pyx_t_2); __pyx_t_2 = 0; - __pyx_t_4 = __Pyx_PyObject_IsTrue(__pyx_t_1); if (unlikely(__pyx_t_4 < 0)) __PYX_ERR(0, 47, __pyx_L1_error) - __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0; - if (__pyx_t_4) { - } else { - __pyx_t_3 = __pyx_t_4; - goto __pyx_L5_bool_binop_done; - } - - /* "pmercury/protocols/dtls_server.pyx":48 - * data[offset+2] >= 253 and - * data[offset+13] == 2 and - * data[offset+25] == 254 and # <<<<<<<<<<<<<< - * data[offset+26] >= 253): - * return True - */ - __pyx_t_1 = __Pyx_PyInt_AddObjC(__pyx_v_offset, __pyx_int_25, 25, 0, 0); if (unlikely(!__pyx_t_1)) __PYX_ERR(0, 48, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_1); - __pyx_t_2 = __Pyx_PyObject_GetItem(__pyx_v_data, __pyx_t_1); if (unlikely(!__pyx_t_2)) __PYX_ERR(0, 48, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_2); - __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0; - __pyx_t_1 = __Pyx_PyInt_EqObjC(__pyx_t_2, __pyx_int_254, 0xFE, 0); if (unlikely(!__pyx_t_1)) __PYX_ERR(0, 48, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_1); - __Pyx_DECREF(__pyx_t_2); __pyx_t_2 = 0; - __pyx_t_4 = __Pyx_PyObject_IsTrue(__pyx_t_1); if (unlikely(__pyx_t_4 < 0)) __PYX_ERR(0, 48, __pyx_L1_error) - __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0; - if (__pyx_t_4) { - } else { - __pyx_t_3 = __pyx_t_4; - goto __pyx_L5_bool_binop_done; - } - - /* "pmercury/protocols/dtls_server.pyx":49 - * data[offset+13] == 2 and - * data[offset+25] == 254 and - * data[offset+26] >= 253): # <<<<<<<<<<<<<< - * return True - * return False - */ - __pyx_t_1 = __Pyx_PyInt_AddObjC(__pyx_v_offset, __pyx_int_26, 26, 0, 0); if (unlikely(!__pyx_t_1)) __PYX_ERR(0, 49, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_1); - __pyx_t_2 = __Pyx_PyObject_GetItem(__pyx_v_data, __pyx_t_1); if (unlikely(!__pyx_t_2)) __PYX_ERR(0, 49, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_2); - __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0; - __pyx_t_1 = PyObject_RichCompare(__pyx_t_2, __pyx_int_253, Py_GE); __Pyx_XGOTREF(__pyx_t_1); if (unlikely(!__pyx_t_1)) __PYX_ERR(0, 49, __pyx_L1_error) - __Pyx_DECREF(__pyx_t_2); __pyx_t_2 = 0; - __pyx_t_4 = __Pyx_PyObject_IsTrue(__pyx_t_1); if (unlikely(__pyx_t_4 < 0)) __PYX_ERR(0, 49, __pyx_L1_error) - __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0; - __pyx_t_3 = __pyx_t_4; - __pyx_L5_bool_binop_done:; - - /* "pmercury/protocols/dtls_server.pyx":44 - * if data_len-offset < 27: - * return False - * if (data[offset] == 22 and # <<<<<<<<<<<<<< - * data[offset+1] == 254 and - * data[offset+2] >= 253 and - */ - if (__pyx_t_3) { - - /* "pmercury/protocols/dtls_server.pyx":50 - * data[offset+25] == 254 and - * data[offset+26] >= 253): - * return True # <<<<<<<<<<<<<< - * return False - * - */ - __Pyx_XDECREF(__pyx_r); - __Pyx_INCREF(Py_True); - __pyx_r = Py_True; - goto __pyx_L0; - - /* "pmercury/protocols/dtls_server.pyx":44 - * if data_len-offset < 27: - * return False - * if (data[offset] == 22 and # <<<<<<<<<<<<<< - * data[offset+1] == 254 and - * data[offset+2] >= 253 and - */ - } - - /* "pmercury/protocols/dtls_server.pyx":51 - * data[offset+26] >= 253): - * return True - * return False # <<<<<<<<<<<<<< - * - * - */ - __Pyx_XDECREF(__pyx_r); - __Pyx_INCREF(Py_False); - __pyx_r = Py_False; - goto __pyx_L0; - - /* "pmercury/protocols/dtls_server.pyx":41 - * - * @staticmethod - * def proto_identify(data, offset, data_len): # <<<<<<<<<<<<<< - * if data_len-offset < 27: - * return False - */ - - /* function exit code */ - __pyx_L1_error:; - __Pyx_XDECREF(__pyx_t_1); - __Pyx_XDECREF(__pyx_t_2); - __Pyx_AddTraceback("pmercury.protocols.dtls_server.DTLS_Server.proto_identify", __pyx_clineno, __pyx_lineno, __pyx_filename); - __pyx_r = NULL; - __pyx_L0:; - __Pyx_XGIVEREF(__pyx_r); - __Pyx_RefNannyFinishContext(); - return __pyx_r; -} - -/* "pmercury/protocols/dtls_server.pyx":55 - * - * @staticmethod - * def fingerprint(bytes data, unsigned int offset, unsigned int data_len): # <<<<<<<<<<<<<< - * cdef unsigned char *buf = data - * offset += 13 - */ - -/* Python wrapper */ -static PyObject *__pyx_pw_8pmercury_9protocols_11dtls_server_11DTLS_Server_5fingerprint(PyObject *__pyx_self, PyObject *__pyx_args, PyObject *__pyx_kwds); /*proto*/ -static PyMethodDef __pyx_mdef_8pmercury_9protocols_11dtls_server_11DTLS_Server_5fingerprint = {"fingerprint", (PyCFunction)(void*)(PyCFunctionWithKeywords)__pyx_pw_8pmercury_9protocols_11dtls_server_11DTLS_Server_5fingerprint, METH_VARARGS|METH_KEYWORDS, 0}; -static PyObject *__pyx_pw_8pmercury_9protocols_11dtls_server_11DTLS_Server_5fingerprint(PyObject *__pyx_self, PyObject *__pyx_args, PyObject *__pyx_kwds) { - PyObject *__pyx_v_data = 0; - unsigned int __pyx_v_offset; - unsigned int __pyx_v_data_len; - PyObject *__pyx_r = 0; - __Pyx_RefNannyDeclarations - __Pyx_RefNannySetupContext("fingerprint (wrapper)", 0); - { - static PyObject **__pyx_pyargnames[] = {&__pyx_n_s_data,&__pyx_n_s_offset,&__pyx_n_s_data_len,0}; - PyObject* values[3] = {0,0,0}; - if (unlikely(__pyx_kwds)) { - Py_ssize_t kw_args; - const Py_ssize_t pos_args = PyTuple_GET_SIZE(__pyx_args); - switch (pos_args) { - case 3: values[2] = PyTuple_GET_ITEM(__pyx_args, 2); - CYTHON_FALLTHROUGH; - case 2: values[1] = PyTuple_GET_ITEM(__pyx_args, 1); - CYTHON_FALLTHROUGH; - case 1: values[0] = PyTuple_GET_ITEM(__pyx_args, 0); - CYTHON_FALLTHROUGH; - case 0: break; - default: goto __pyx_L5_argtuple_error; - } - kw_args = PyDict_Size(__pyx_kwds); - switch (pos_args) { - case 0: - if (likely((values[0] = __Pyx_PyDict_GetItemStr(__pyx_kwds, __pyx_n_s_data)) != 0)) kw_args--; - else goto __pyx_L5_argtuple_error; - CYTHON_FALLTHROUGH; - case 1: - if (likely((values[1] = __Pyx_PyDict_GetItemStr(__pyx_kwds, __pyx_n_s_offset)) != 0)) kw_args--; - else { - __Pyx_RaiseArgtupleInvalid("fingerprint", 1, 3, 3, 1); __PYX_ERR(0, 55, __pyx_L3_error) - } - CYTHON_FALLTHROUGH; - case 2: - if (likely((values[2] = __Pyx_PyDict_GetItemStr(__pyx_kwds, __pyx_n_s_data_len)) != 0)) kw_args--; - else { - __Pyx_RaiseArgtupleInvalid("fingerprint", 1, 3, 3, 2); __PYX_ERR(0, 55, __pyx_L3_error) - } - } - if (unlikely(kw_args > 0)) { - if (unlikely(__Pyx_ParseOptionalKeywords(__pyx_kwds, __pyx_pyargnames, 0, values, pos_args, "fingerprint") < 0)) __PYX_ERR(0, 55, __pyx_L3_error) - } - } else if (PyTuple_GET_SIZE(__pyx_args) != 3) { - goto __pyx_L5_argtuple_error; - } else { - values[0] = PyTuple_GET_ITEM(__pyx_args, 0); - values[1] = PyTuple_GET_ITEM(__pyx_args, 1); - values[2] = PyTuple_GET_ITEM(__pyx_args, 2); - } - __pyx_v_data = ((PyObject*)values[0]); - __pyx_v_offset = __Pyx_PyInt_As_unsigned_int(values[1]); if (unlikely((__pyx_v_offset == (unsigned int)-1) && PyErr_Occurred())) __PYX_ERR(0, 55, __pyx_L3_error) - __pyx_v_data_len = __Pyx_PyInt_As_unsigned_int(values[2]); if (unlikely((__pyx_v_data_len == (unsigned int)-1) && PyErr_Occurred())) __PYX_ERR(0, 55, __pyx_L3_error) - } - goto __pyx_L4_argument_unpacking_done; - __pyx_L5_argtuple_error:; - __Pyx_RaiseArgtupleInvalid("fingerprint", 1, 3, 3, PyTuple_GET_SIZE(__pyx_args)); __PYX_ERR(0, 55, __pyx_L3_error) - __pyx_L3_error:; - __Pyx_AddTraceback("pmercury.protocols.dtls_server.DTLS_Server.fingerprint", __pyx_clineno, __pyx_lineno, __pyx_filename); - __Pyx_RefNannyFinishContext(); - return NULL; - __pyx_L4_argument_unpacking_done:; - if (unlikely(!__Pyx_ArgTypeTest(((PyObject *)__pyx_v_data), (&PyBytes_Type), 1, "data", 1))) __PYX_ERR(0, 55, __pyx_L1_error) - __pyx_r = __pyx_pf_8pmercury_9protocols_11dtls_server_11DTLS_Server_4fingerprint(__pyx_self, __pyx_v_data, __pyx_v_offset, __pyx_v_data_len); - - /* function exit code */ - goto __pyx_L0; - __pyx_L1_error:; - __pyx_r = NULL; - __pyx_L0:; - __Pyx_RefNannyFinishContext(); - return __pyx_r; -} - -static PyObject *__pyx_pf_8pmercury_9protocols_11dtls_server_11DTLS_Server_4fingerprint(CYTHON_UNUSED PyObject *__pyx_self, PyObject *__pyx_v_data, unsigned int __pyx_v_offset, unsigned int __pyx_v_data_len) { - unsigned char *__pyx_v_buf; - PyObject *__pyx_v_fp_ = 0; - unsigned int __pyx_v_session_id_length; - unsigned int __pyx_v_compression_methods_length; - unsigned int __pyx_v_ext_total_len; - PyObject *__pyx_v_tmp_fp_ext = 0; - unsigned int __pyx_v_ext_len; - PyObject *__pyx_r = NULL; - __Pyx_RefNannyDeclarations - unsigned char *__pyx_t_1; - PyObject *__pyx_t_2 = NULL; - Py_ssize_t __pyx_t_3; - Py_UCS4 __pyx_t_4; - PyObject *__pyx_t_5 = NULL; - int __pyx_t_6; - PyObject *__pyx_t_7 = NULL; - PyObject *__pyx_t_8 = NULL; - int __pyx_t_9; - PyObject *__pyx_t_10 = NULL; - PyObject *(*__pyx_t_11)(PyObject *); - unsigned int __pyx_t_12; - unsigned int __pyx_t_13; - __Pyx_RefNannySetupContext("fingerprint", 0); - - /* "pmercury/protocols/dtls_server.pyx":56 - * @staticmethod - * def fingerprint(bytes data, unsigned int offset, unsigned int data_len): - * cdef unsigned char *buf = data # <<<<<<<<<<<<<< - * offset += 13 - * - */ - if (unlikely(__pyx_v_data == Py_None)) { - PyErr_SetString(PyExc_TypeError, "expected bytes, NoneType found"); - __PYX_ERR(0, 56, __pyx_L1_error) - } - __pyx_t_1 = __Pyx_PyBytes_AsWritableUString(__pyx_v_data); if (unlikely((!__pyx_t_1) && PyErr_Occurred())) __PYX_ERR(0, 56, __pyx_L1_error) - __pyx_v_buf = __pyx_t_1; - - /* "pmercury/protocols/dtls_server.pyx":57 - * def fingerprint(bytes data, unsigned int offset, unsigned int data_len): - * cdef unsigned char *buf = data - * offset += 13 # <<<<<<<<<<<<<< - * - * # extract handshake version - */ - __pyx_v_offset = (__pyx_v_offset + 13); - - /* "pmercury/protocols/dtls_server.pyx":60 - * - * # extract handshake version - * cdef str fp_ = f'({buf[offset+12]:02x}{buf[offset+13]:02x})' # <<<<<<<<<<<<<< - * - * # skip header/server_random - */ - __pyx_t_2 = PyTuple_New(4); if (unlikely(!__pyx_t_2)) __PYX_ERR(0, 60, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_2); - __pyx_t_3 = 0; - __pyx_t_4 = 127; - __Pyx_INCREF(__pyx_kp_u_); - __pyx_t_3 += 1; - __Pyx_GIVEREF(__pyx_kp_u_); - PyTuple_SET_ITEM(__pyx_t_2, 0, __pyx_kp_u_); - __pyx_t_5 = __Pyx_PyUnicode_From_unsigned_char((__pyx_v_buf[(__pyx_v_offset + 12)]), 2, '0', 'x'); if (unlikely(!__pyx_t_5)) __PYX_ERR(0, 60, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_5); - __pyx_t_3 += __Pyx_PyUnicode_GET_LENGTH(__pyx_t_5); - __Pyx_GIVEREF(__pyx_t_5); - PyTuple_SET_ITEM(__pyx_t_2, 1, __pyx_t_5); - __pyx_t_5 = 0; - __pyx_t_5 = __Pyx_PyUnicode_From_unsigned_char((__pyx_v_buf[(__pyx_v_offset + 13)]), 2, '0', 'x'); if (unlikely(!__pyx_t_5)) __PYX_ERR(0, 60, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_5); - __pyx_t_3 += __Pyx_PyUnicode_GET_LENGTH(__pyx_t_5); - __Pyx_GIVEREF(__pyx_t_5); - PyTuple_SET_ITEM(__pyx_t_2, 2, __pyx_t_5); - __pyx_t_5 = 0; - __Pyx_INCREF(__pyx_kp_u__2); - __pyx_t_3 += 1; - __Pyx_GIVEREF(__pyx_kp_u__2); - PyTuple_SET_ITEM(__pyx_t_2, 3, __pyx_kp_u__2); - __pyx_t_5 = __Pyx_PyUnicode_Join(__pyx_t_2, 4, __pyx_t_3, __pyx_t_4); if (unlikely(!__pyx_t_5)) __PYX_ERR(0, 60, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_5); - __Pyx_DECREF(__pyx_t_2); __pyx_t_2 = 0; - __pyx_v_fp_ = ((PyObject*)__pyx_t_5); - __pyx_t_5 = 0; - - /* "pmercury/protocols/dtls_server.pyx":63 - * - * # skip header/server_random - * offset += 46 # <<<<<<<<<<<<<< - * - * # parse/skip session_id - */ - __pyx_v_offset = (__pyx_v_offset + 46); - - /* "pmercury/protocols/dtls_server.pyx":66 - * - * # parse/skip session_id - * cdef unsigned int session_id_length = buf[offset] # <<<<<<<<<<<<<< - * offset += 1 + session_id_length - * if offset >= data_len: - */ - __pyx_v_session_id_length = (__pyx_v_buf[__pyx_v_offset]); - - /* "pmercury/protocols/dtls_server.pyx":67 - * # parse/skip session_id - * cdef unsigned int session_id_length = buf[offset] - * offset += 1 + session_id_length # <<<<<<<<<<<<<< - * if offset >= data_len: - * return None, None - */ - __pyx_v_offset = (__pyx_v_offset + (1 + __pyx_v_session_id_length)); - - /* "pmercury/protocols/dtls_server.pyx":68 - * cdef unsigned int session_id_length = buf[offset] - * offset += 1 + session_id_length - * if offset >= data_len: # <<<<<<<<<<<<<< - * return None, None - * - */ - __pyx_t_6 = ((__pyx_v_offset >= __pyx_v_data_len) != 0); - if (__pyx_t_6) { - - /* "pmercury/protocols/dtls_server.pyx":69 - * offset += 1 + session_id_length - * if offset >= data_len: - * return None, None # <<<<<<<<<<<<<< - * - * # parse selected_cipher_suite - */ - __Pyx_XDECREF(__pyx_r); - __Pyx_INCREF(__pyx_tuple__3); - __pyx_r = __pyx_tuple__3; - goto __pyx_L0; - - /* "pmercury/protocols/dtls_server.pyx":68 - * cdef unsigned int session_id_length = buf[offset] - * offset += 1 + session_id_length - * if offset >= data_len: # <<<<<<<<<<<<<< - * return None, None - * - */ - } - - /* "pmercury/protocols/dtls_server.pyx":72 - * - * # parse selected_cipher_suite - * fp_ += f'({buf[offset]:02x}{buf[offset+1]:02x})' # <<<<<<<<<<<<<< - * offset += 2 - * if offset >= data_len: - */ - __pyx_t_5 = PyTuple_New(4); if (unlikely(!__pyx_t_5)) __PYX_ERR(0, 72, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_5); - __pyx_t_3 = 0; - __pyx_t_4 = 127; - __Pyx_INCREF(__pyx_kp_u_); - __pyx_t_3 += 1; - __Pyx_GIVEREF(__pyx_kp_u_); - PyTuple_SET_ITEM(__pyx_t_5, 0, __pyx_kp_u_); - __pyx_t_2 = __Pyx_PyUnicode_From_unsigned_char((__pyx_v_buf[__pyx_v_offset]), 2, '0', 'x'); if (unlikely(!__pyx_t_2)) __PYX_ERR(0, 72, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_2); - __pyx_t_3 += __Pyx_PyUnicode_GET_LENGTH(__pyx_t_2); - __Pyx_GIVEREF(__pyx_t_2); - PyTuple_SET_ITEM(__pyx_t_5, 1, __pyx_t_2); - __pyx_t_2 = 0; - __pyx_t_2 = __Pyx_PyUnicode_From_unsigned_char((__pyx_v_buf[(__pyx_v_offset + 1)]), 2, '0', 'x'); if (unlikely(!__pyx_t_2)) __PYX_ERR(0, 72, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_2); - __pyx_t_3 += __Pyx_PyUnicode_GET_LENGTH(__pyx_t_2); - __Pyx_GIVEREF(__pyx_t_2); - PyTuple_SET_ITEM(__pyx_t_5, 2, __pyx_t_2); - __pyx_t_2 = 0; - __Pyx_INCREF(__pyx_kp_u__2); - __pyx_t_3 += 1; - __Pyx_GIVEREF(__pyx_kp_u__2); - PyTuple_SET_ITEM(__pyx_t_5, 3, __pyx_kp_u__2); - __pyx_t_2 = __Pyx_PyUnicode_Join(__pyx_t_5, 4, __pyx_t_3, __pyx_t_4); if (unlikely(!__pyx_t_2)) __PYX_ERR(0, 72, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_2); - __Pyx_DECREF(__pyx_t_5); __pyx_t_5 = 0; - __pyx_t_5 = __Pyx_PyUnicode_Concat(__pyx_v_fp_, __pyx_t_2); if (unlikely(!__pyx_t_5)) __PYX_ERR(0, 72, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_5); - __Pyx_DECREF(__pyx_t_2); __pyx_t_2 = 0; - __Pyx_DECREF_SET(__pyx_v_fp_, ((PyObject*)__pyx_t_5)); - __pyx_t_5 = 0; - - /* "pmercury/protocols/dtls_server.pyx":73 - * # parse selected_cipher_suite - * fp_ += f'({buf[offset]:02x}{buf[offset+1]:02x})' - * offset += 2 # <<<<<<<<<<<<<< - * if offset >= data_len: - * return fp_+'()', None - */ - __pyx_v_offset = (__pyx_v_offset + 2); - - /* "pmercury/protocols/dtls_server.pyx":74 - * fp_ += f'({buf[offset]:02x}{buf[offset+1]:02x})' - * offset += 2 - * if offset >= data_len: # <<<<<<<<<<<<<< - * return fp_+'()', None - * - */ - __pyx_t_6 = ((__pyx_v_offset >= __pyx_v_data_len) != 0); - if (__pyx_t_6) { - - /* "pmercury/protocols/dtls_server.pyx":75 - * offset += 2 - * if offset >= data_len: - * return fp_+'()', None # <<<<<<<<<<<<<< - * - * # parse/skip compression method - */ - __Pyx_XDECREF(__pyx_r); - __pyx_t_5 = __Pyx_PyUnicode_Concat(__pyx_v_fp_, __pyx_kp_u__4); if (unlikely(!__pyx_t_5)) __PYX_ERR(0, 75, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_5); - __pyx_t_2 = PyTuple_New(2); if (unlikely(!__pyx_t_2)) __PYX_ERR(0, 75, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_2); - __Pyx_GIVEREF(__pyx_t_5); - PyTuple_SET_ITEM(__pyx_t_2, 0, __pyx_t_5); - __Pyx_INCREF(Py_None); - __Pyx_GIVEREF(Py_None); - PyTuple_SET_ITEM(__pyx_t_2, 1, Py_None); - __pyx_t_5 = 0; - __pyx_r = __pyx_t_2; - __pyx_t_2 = 0; - goto __pyx_L0; - - /* "pmercury/protocols/dtls_server.pyx":74 - * fp_ += f'({buf[offset]:02x}{buf[offset+1]:02x})' - * offset += 2 - * if offset >= data_len: # <<<<<<<<<<<<<< - * return fp_+'()', None - * - */ - } - - /* "pmercury/protocols/dtls_server.pyx":78 - * - * # parse/skip compression method - * cdef unsigned int compression_methods_length = buf[offset] # <<<<<<<<<<<<<< - * offset += 1 + compression_methods_length - * if offset >= data_len: - */ - __pyx_v_compression_methods_length = (__pyx_v_buf[__pyx_v_offset]); - - /* "pmercury/protocols/dtls_server.pyx":79 - * # parse/skip compression method - * cdef unsigned int compression_methods_length = buf[offset] - * offset += 1 + compression_methods_length # <<<<<<<<<<<<<< - * if offset >= data_len: - * return fp_+'()', None - */ - __pyx_v_offset = (__pyx_v_offset + (1 + __pyx_v_compression_methods_length)); - - /* "pmercury/protocols/dtls_server.pyx":80 - * cdef unsigned int compression_methods_length = buf[offset] - * offset += 1 + compression_methods_length - * if offset >= data_len: # <<<<<<<<<<<<<< - * return fp_+'()', None - * - */ - __pyx_t_6 = ((__pyx_v_offset >= __pyx_v_data_len) != 0); - if (__pyx_t_6) { - - /* "pmercury/protocols/dtls_server.pyx":81 - * offset += 1 + compression_methods_length - * if offset >= data_len: - * return fp_+'()', None # <<<<<<<<<<<<<< - * - * # parse/skip extensions length - */ - __Pyx_XDECREF(__pyx_r); - __pyx_t_2 = __Pyx_PyUnicode_Concat(__pyx_v_fp_, __pyx_kp_u__4); if (unlikely(!__pyx_t_2)) __PYX_ERR(0, 81, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_2); - __pyx_t_5 = PyTuple_New(2); if (unlikely(!__pyx_t_5)) __PYX_ERR(0, 81, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_5); - __Pyx_GIVEREF(__pyx_t_2); - PyTuple_SET_ITEM(__pyx_t_5, 0, __pyx_t_2); - __Pyx_INCREF(Py_None); - __Pyx_GIVEREF(Py_None); - PyTuple_SET_ITEM(__pyx_t_5, 1, Py_None); - __pyx_t_2 = 0; - __pyx_r = __pyx_t_5; - __pyx_t_5 = 0; - goto __pyx_L0; - - /* "pmercury/protocols/dtls_server.pyx":80 - * cdef unsigned int compression_methods_length = buf[offset] - * offset += 1 + compression_methods_length - * if offset >= data_len: # <<<<<<<<<<<<<< - * return fp_+'()', None - * - */ - } - - /* "pmercury/protocols/dtls_server.pyx":84 - * - * # parse/skip extensions length - * cdef unsigned int ext_total_len = htons(deref((buf+offset))) # <<<<<<<<<<<<<< - * offset += 2 - * if offset >= data_len: - */ - __pyx_v_ext_total_len = htons((*((uint16_t *)(__pyx_v_buf + __pyx_v_offset)))); - - /* "pmercury/protocols/dtls_server.pyx":85 - * # parse/skip extensions length - * cdef unsigned int ext_total_len = htons(deref((buf+offset))) - * offset += 2 # <<<<<<<<<<<<<< - * if offset >= data_len: - * return fp_+'()', None - */ - __pyx_v_offset = (__pyx_v_offset + 2); - - /* "pmercury/protocols/dtls_server.pyx":86 - * cdef unsigned int ext_total_len = htons(deref((buf+offset))) - * offset += 2 - * if offset >= data_len: # <<<<<<<<<<<<<< - * return fp_+'()', None - * - */ - __pyx_t_6 = ((__pyx_v_offset >= __pyx_v_data_len) != 0); - if (__pyx_t_6) { - - /* "pmercury/protocols/dtls_server.pyx":87 - * offset += 2 - * if offset >= data_len: - * return fp_+'()', None # <<<<<<<<<<<<<< - * - * # parse/extract/skip extension type/length/values - */ - __Pyx_XDECREF(__pyx_r); - __pyx_t_5 = __Pyx_PyUnicode_Concat(__pyx_v_fp_, __pyx_kp_u__4); if (unlikely(!__pyx_t_5)) __PYX_ERR(0, 87, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_5); - __pyx_t_2 = PyTuple_New(2); if (unlikely(!__pyx_t_2)) __PYX_ERR(0, 87, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_2); - __Pyx_GIVEREF(__pyx_t_5); - PyTuple_SET_ITEM(__pyx_t_2, 0, __pyx_t_5); - __Pyx_INCREF(Py_None); - __Pyx_GIVEREF(Py_None); - PyTuple_SET_ITEM(__pyx_t_2, 1, Py_None); - __pyx_t_5 = 0; - __pyx_r = __pyx_t_2; - __pyx_t_2 = 0; - goto __pyx_L0; - - /* "pmercury/protocols/dtls_server.pyx":86 - * cdef unsigned int ext_total_len = htons(deref((buf+offset))) - * offset += 2 - * if offset >= data_len: # <<<<<<<<<<<<<< - * return fp_+'()', None - * - */ - } - - /* "pmercury/protocols/dtls_server.pyx":92 - * cdef str tmp_fp_ext - * cdef unsigned int ext_len - * fp_ += '(' # <<<<<<<<<<<<<< - * while ext_total_len > 0: - * if offset >= data_len: - */ - __pyx_t_2 = __Pyx_PyUnicode_Concat(__pyx_v_fp_, __pyx_kp_u_); if (unlikely(!__pyx_t_2)) __PYX_ERR(0, 92, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_2); - __Pyx_DECREF_SET(__pyx_v_fp_, ((PyObject*)__pyx_t_2)); - __pyx_t_2 = 0; - - /* "pmercury/protocols/dtls_server.pyx":93 - * cdef unsigned int ext_len - * fp_ += '(' - * while ext_total_len > 0: # <<<<<<<<<<<<<< - * if offset >= data_len: - * return fp_+')', None - */ - while (1) { - __pyx_t_6 = ((__pyx_v_ext_total_len > 0) != 0); - if (!__pyx_t_6) break; - - /* "pmercury/protocols/dtls_server.pyx":94 - * fp_ += '(' - * while ext_total_len > 0: - * if offset >= data_len: # <<<<<<<<<<<<<< - * return fp_+')', None - * - */ - __pyx_t_6 = ((__pyx_v_offset >= __pyx_v_data_len) != 0); - if (__pyx_t_6) { - - /* "pmercury/protocols/dtls_server.pyx":95 - * while ext_total_len > 0: - * if offset >= data_len: - * return fp_+')', None # <<<<<<<<<<<<<< - * - * tmp_fp_ext, offset, ext_len = parse_extension(data, offset) - */ - __Pyx_XDECREF(__pyx_r); - __pyx_t_2 = __Pyx_PyUnicode_Concat(__pyx_v_fp_, __pyx_kp_u__2); if (unlikely(!__pyx_t_2)) __PYX_ERR(0, 95, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_2); - __pyx_t_5 = PyTuple_New(2); if (unlikely(!__pyx_t_5)) __PYX_ERR(0, 95, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_5); - __Pyx_GIVEREF(__pyx_t_2); - PyTuple_SET_ITEM(__pyx_t_5, 0, __pyx_t_2); - __Pyx_INCREF(Py_None); - __Pyx_GIVEREF(Py_None); - PyTuple_SET_ITEM(__pyx_t_5, 1, Py_None); - __pyx_t_2 = 0; - __pyx_r = __pyx_t_5; - __pyx_t_5 = 0; - goto __pyx_L0; - - /* "pmercury/protocols/dtls_server.pyx":94 - * fp_ += '(' - * while ext_total_len > 0: - * if offset >= data_len: # <<<<<<<<<<<<<< - * return fp_+')', None - * - */ - } - - /* "pmercury/protocols/dtls_server.pyx":97 - * return fp_+')', None - * - * tmp_fp_ext, offset, ext_len = parse_extension(data, offset) # <<<<<<<<<<<<<< - * fp_ += '(%s)' % tmp_fp_ext - * - */ - __Pyx_GetModuleGlobalName(__pyx_t_2, __pyx_n_s_parse_extension); if (unlikely(!__pyx_t_2)) __PYX_ERR(0, 97, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_2); - __pyx_t_7 = __Pyx_PyInt_From_unsigned_int(__pyx_v_offset); if (unlikely(!__pyx_t_7)) __PYX_ERR(0, 97, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_7); - __pyx_t_8 = NULL; - __pyx_t_9 = 0; - if (CYTHON_UNPACK_METHODS && unlikely(PyMethod_Check(__pyx_t_2))) { - __pyx_t_8 = PyMethod_GET_SELF(__pyx_t_2); - if (likely(__pyx_t_8)) { - PyObject* function = PyMethod_GET_FUNCTION(__pyx_t_2); - __Pyx_INCREF(__pyx_t_8); - __Pyx_INCREF(function); - __Pyx_DECREF_SET(__pyx_t_2, function); - __pyx_t_9 = 1; - } - } - #if CYTHON_FAST_PYCALL - if (PyFunction_Check(__pyx_t_2)) { - PyObject *__pyx_temp[3] = {__pyx_t_8, __pyx_v_data, __pyx_t_7}; - __pyx_t_5 = __Pyx_PyFunction_FastCall(__pyx_t_2, __pyx_temp+1-__pyx_t_9, 2+__pyx_t_9); if (unlikely(!__pyx_t_5)) __PYX_ERR(0, 97, __pyx_L1_error) - __Pyx_XDECREF(__pyx_t_8); __pyx_t_8 = 0; - __Pyx_GOTREF(__pyx_t_5); - __Pyx_DECREF(__pyx_t_7); __pyx_t_7 = 0; - } else - #endif - #if CYTHON_FAST_PYCCALL - if (__Pyx_PyFastCFunction_Check(__pyx_t_2)) { - PyObject *__pyx_temp[3] = {__pyx_t_8, __pyx_v_data, __pyx_t_7}; - __pyx_t_5 = __Pyx_PyCFunction_FastCall(__pyx_t_2, __pyx_temp+1-__pyx_t_9, 2+__pyx_t_9); if (unlikely(!__pyx_t_5)) __PYX_ERR(0, 97, __pyx_L1_error) - __Pyx_XDECREF(__pyx_t_8); __pyx_t_8 = 0; - __Pyx_GOTREF(__pyx_t_5); - __Pyx_DECREF(__pyx_t_7); __pyx_t_7 = 0; - } else - #endif - { - __pyx_t_10 = PyTuple_New(2+__pyx_t_9); if (unlikely(!__pyx_t_10)) __PYX_ERR(0, 97, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_10); - if (__pyx_t_8) { - __Pyx_GIVEREF(__pyx_t_8); PyTuple_SET_ITEM(__pyx_t_10, 0, __pyx_t_8); __pyx_t_8 = NULL; - } - __Pyx_INCREF(__pyx_v_data); - __Pyx_GIVEREF(__pyx_v_data); - PyTuple_SET_ITEM(__pyx_t_10, 0+__pyx_t_9, __pyx_v_data); - __Pyx_GIVEREF(__pyx_t_7); - PyTuple_SET_ITEM(__pyx_t_10, 1+__pyx_t_9, __pyx_t_7); - __pyx_t_7 = 0; - __pyx_t_5 = __Pyx_PyObject_Call(__pyx_t_2, __pyx_t_10, NULL); if (unlikely(!__pyx_t_5)) __PYX_ERR(0, 97, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_5); - __Pyx_DECREF(__pyx_t_10); __pyx_t_10 = 0; - } - __Pyx_DECREF(__pyx_t_2); __pyx_t_2 = 0; - if ((likely(PyTuple_CheckExact(__pyx_t_5))) || (PyList_CheckExact(__pyx_t_5))) { - PyObject* sequence = __pyx_t_5; - Py_ssize_t size = __Pyx_PySequence_SIZE(sequence); - if (unlikely(size != 3)) { - if (size > 3) __Pyx_RaiseTooManyValuesError(3); - else if (size >= 0) __Pyx_RaiseNeedMoreValuesError(size); - __PYX_ERR(0, 97, __pyx_L1_error) - } - #if CYTHON_ASSUME_SAFE_MACROS && !CYTHON_AVOID_BORROWED_REFS - if (likely(PyTuple_CheckExact(sequence))) { - __pyx_t_2 = PyTuple_GET_ITEM(sequence, 0); - __pyx_t_10 = PyTuple_GET_ITEM(sequence, 1); - __pyx_t_7 = PyTuple_GET_ITEM(sequence, 2); - } else { - __pyx_t_2 = PyList_GET_ITEM(sequence, 0); - __pyx_t_10 = PyList_GET_ITEM(sequence, 1); - __pyx_t_7 = PyList_GET_ITEM(sequence, 2); - } - __Pyx_INCREF(__pyx_t_2); - __Pyx_INCREF(__pyx_t_10); - __Pyx_INCREF(__pyx_t_7); - #else - __pyx_t_2 = PySequence_ITEM(sequence, 0); if (unlikely(!__pyx_t_2)) __PYX_ERR(0, 97, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_2); - __pyx_t_10 = PySequence_ITEM(sequence, 1); if (unlikely(!__pyx_t_10)) __PYX_ERR(0, 97, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_10); - __pyx_t_7 = PySequence_ITEM(sequence, 2); if (unlikely(!__pyx_t_7)) __PYX_ERR(0, 97, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_7); - #endif - __Pyx_DECREF(__pyx_t_5); __pyx_t_5 = 0; - } else { - Py_ssize_t index = -1; - __pyx_t_8 = PyObject_GetIter(__pyx_t_5); if (unlikely(!__pyx_t_8)) __PYX_ERR(0, 97, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_8); - __Pyx_DECREF(__pyx_t_5); __pyx_t_5 = 0; - __pyx_t_11 = Py_TYPE(__pyx_t_8)->tp_iternext; - index = 0; __pyx_t_2 = __pyx_t_11(__pyx_t_8); if (unlikely(!__pyx_t_2)) goto __pyx_L10_unpacking_failed; - __Pyx_GOTREF(__pyx_t_2); - index = 1; __pyx_t_10 = __pyx_t_11(__pyx_t_8); if (unlikely(!__pyx_t_10)) goto __pyx_L10_unpacking_failed; - __Pyx_GOTREF(__pyx_t_10); - index = 2; __pyx_t_7 = __pyx_t_11(__pyx_t_8); if (unlikely(!__pyx_t_7)) goto __pyx_L10_unpacking_failed; - __Pyx_GOTREF(__pyx_t_7); - if (__Pyx_IternextUnpackEndCheck(__pyx_t_11(__pyx_t_8), 3) < 0) __PYX_ERR(0, 97, __pyx_L1_error) - __pyx_t_11 = NULL; - __Pyx_DECREF(__pyx_t_8); __pyx_t_8 = 0; - goto __pyx_L11_unpacking_done; - __pyx_L10_unpacking_failed:; - __Pyx_DECREF(__pyx_t_8); __pyx_t_8 = 0; - __pyx_t_11 = NULL; - if (__Pyx_IterFinish() == 0) __Pyx_RaiseNeedMoreValuesError(index); - __PYX_ERR(0, 97, __pyx_L1_error) - __pyx_L11_unpacking_done:; - } - if (!(likely(PyUnicode_CheckExact(__pyx_t_2))||((__pyx_t_2) == Py_None)||(PyErr_Format(PyExc_TypeError, "Expected %.16s, got %.200s", "unicode", Py_TYPE(__pyx_t_2)->tp_name), 0))) __PYX_ERR(0, 97, __pyx_L1_error) - __pyx_t_12 = __Pyx_PyInt_As_unsigned_int(__pyx_t_10); if (unlikely((__pyx_t_12 == (unsigned int)-1) && PyErr_Occurred())) __PYX_ERR(0, 97, __pyx_L1_error) - __Pyx_DECREF(__pyx_t_10); __pyx_t_10 = 0; - __pyx_t_13 = __Pyx_PyInt_As_unsigned_int(__pyx_t_7); if (unlikely((__pyx_t_13 == (unsigned int)-1) && PyErr_Occurred())) __PYX_ERR(0, 97, __pyx_L1_error) - __Pyx_DECREF(__pyx_t_7); __pyx_t_7 = 0; - __Pyx_XDECREF_SET(__pyx_v_tmp_fp_ext, ((PyObject*)__pyx_t_2)); - __pyx_t_2 = 0; - __pyx_v_offset = __pyx_t_12; - __pyx_v_ext_len = __pyx_t_13; - - /* "pmercury/protocols/dtls_server.pyx":98 - * - * tmp_fp_ext, offset, ext_len = parse_extension(data, offset) - * fp_ += '(%s)' % tmp_fp_ext # <<<<<<<<<<<<<< - * - * ext_total_len -= 4 + ext_len - */ - __pyx_t_5 = PyUnicode_Format(__pyx_kp_u_s, __pyx_v_tmp_fp_ext); if (unlikely(!__pyx_t_5)) __PYX_ERR(0, 98, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_5); - __pyx_t_7 = __Pyx_PyUnicode_Concat(__pyx_v_fp_, __pyx_t_5); if (unlikely(!__pyx_t_7)) __PYX_ERR(0, 98, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_7); - __Pyx_DECREF(__pyx_t_5); __pyx_t_5 = 0; - __Pyx_DECREF_SET(__pyx_v_fp_, ((PyObject*)__pyx_t_7)); - __pyx_t_7 = 0; - - /* "pmercury/protocols/dtls_server.pyx":100 - * fp_ += '(%s)' % tmp_fp_ext - * - * ext_total_len -= 4 + ext_len # <<<<<<<<<<<<<< - * fp_ += ')' - * - */ - __pyx_v_ext_total_len = (__pyx_v_ext_total_len - (4 + __pyx_v_ext_len)); - } - - /* "pmercury/protocols/dtls_server.pyx":101 - * - * ext_total_len -= 4 + ext_len - * fp_ += ')' # <<<<<<<<<<<<<< - * - * return fp_, None - */ - __pyx_t_7 = __Pyx_PyUnicode_Concat(__pyx_v_fp_, __pyx_kp_u__2); if (unlikely(!__pyx_t_7)) __PYX_ERR(0, 101, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_7); - __Pyx_DECREF_SET(__pyx_v_fp_, ((PyObject*)__pyx_t_7)); - __pyx_t_7 = 0; - - /* "pmercury/protocols/dtls_server.pyx":103 - * fp_ += ')' - * - * return fp_, None # <<<<<<<<<<<<<< - * - * - */ - __Pyx_XDECREF(__pyx_r); - __pyx_t_7 = PyTuple_New(2); if (unlikely(!__pyx_t_7)) __PYX_ERR(0, 103, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_7); - __Pyx_INCREF(__pyx_v_fp_); - __Pyx_GIVEREF(__pyx_v_fp_); - PyTuple_SET_ITEM(__pyx_t_7, 0, __pyx_v_fp_); - __Pyx_INCREF(Py_None); - __Pyx_GIVEREF(Py_None); - PyTuple_SET_ITEM(__pyx_t_7, 1, Py_None); - __pyx_r = __pyx_t_7; - __pyx_t_7 = 0; - goto __pyx_L0; - - /* "pmercury/protocols/dtls_server.pyx":55 - * - * @staticmethod - * def fingerprint(bytes data, unsigned int offset, unsigned int data_len): # <<<<<<<<<<<<<< - * cdef unsigned char *buf = data - * offset += 13 - */ - - /* function exit code */ - __pyx_L1_error:; - __Pyx_XDECREF(__pyx_t_2); - __Pyx_XDECREF(__pyx_t_5); - __Pyx_XDECREF(__pyx_t_7); - __Pyx_XDECREF(__pyx_t_8); - __Pyx_XDECREF(__pyx_t_10); - __Pyx_AddTraceback("pmercury.protocols.dtls_server.DTLS_Server.fingerprint", __pyx_clineno, __pyx_lineno, __pyx_filename); - __pyx_r = NULL; - __pyx_L0:; - __Pyx_XDECREF(__pyx_v_fp_); - __Pyx_XDECREF(__pyx_v_tmp_fp_ext); - __Pyx_XGIVEREF(__pyx_r); - __Pyx_RefNannyFinishContext(); - return __pyx_r; -} - -/* "pmercury/protocols/dtls_server.pyx":107 - * - * @functools.lru_cache(maxsize=MAX_CACHED_RESULTS) - * def get_database_entry(self, fp_str, approx_fp_str): # <<<<<<<<<<<<<< - * return None - * - */ - -/* Python wrapper */ -static PyObject *__pyx_pw_8pmercury_9protocols_11dtls_server_11DTLS_Server_7get_database_entry(PyObject *__pyx_self, PyObject *__pyx_args, PyObject *__pyx_kwds); /*proto*/ -static PyMethodDef __pyx_mdef_8pmercury_9protocols_11dtls_server_11DTLS_Server_7get_database_entry = {"get_database_entry", (PyCFunction)(void*)(PyCFunctionWithKeywords)__pyx_pw_8pmercury_9protocols_11dtls_server_11DTLS_Server_7get_database_entry, METH_VARARGS|METH_KEYWORDS, 0}; -static PyObject *__pyx_pw_8pmercury_9protocols_11dtls_server_11DTLS_Server_7get_database_entry(PyObject *__pyx_self, PyObject *__pyx_args, PyObject *__pyx_kwds) { - CYTHON_UNUSED PyObject *__pyx_v_self = 0; - CYTHON_UNUSED PyObject *__pyx_v_fp_str = 0; - CYTHON_UNUSED PyObject *__pyx_v_approx_fp_str = 0; - PyObject *__pyx_r = 0; - __Pyx_RefNannyDeclarations - __Pyx_RefNannySetupContext("get_database_entry (wrapper)", 0); - { - static PyObject **__pyx_pyargnames[] = {&__pyx_n_s_self,&__pyx_n_s_fp_str,&__pyx_n_s_approx_fp_str,0}; - PyObject* values[3] = {0,0,0}; - if (unlikely(__pyx_kwds)) { - Py_ssize_t kw_args; - const Py_ssize_t pos_args = PyTuple_GET_SIZE(__pyx_args); - switch (pos_args) { - case 3: values[2] = PyTuple_GET_ITEM(__pyx_args, 2); - CYTHON_FALLTHROUGH; - case 2: values[1] = PyTuple_GET_ITEM(__pyx_args, 1); - CYTHON_FALLTHROUGH; - case 1: values[0] = PyTuple_GET_ITEM(__pyx_args, 0); - CYTHON_FALLTHROUGH; - case 0: break; - default: goto __pyx_L5_argtuple_error; - } - kw_args = PyDict_Size(__pyx_kwds); - switch (pos_args) { - case 0: - if (likely((values[0] = __Pyx_PyDict_GetItemStr(__pyx_kwds, __pyx_n_s_self)) != 0)) kw_args--; - else goto __pyx_L5_argtuple_error; - CYTHON_FALLTHROUGH; - case 1: - if (likely((values[1] = __Pyx_PyDict_GetItemStr(__pyx_kwds, __pyx_n_s_fp_str)) != 0)) kw_args--; - else { - __Pyx_RaiseArgtupleInvalid("get_database_entry", 1, 3, 3, 1); __PYX_ERR(0, 107, __pyx_L3_error) - } - CYTHON_FALLTHROUGH; - case 2: - if (likely((values[2] = __Pyx_PyDict_GetItemStr(__pyx_kwds, __pyx_n_s_approx_fp_str)) != 0)) kw_args--; - else { - __Pyx_RaiseArgtupleInvalid("get_database_entry", 1, 3, 3, 2); __PYX_ERR(0, 107, __pyx_L3_error) - } - } - if (unlikely(kw_args > 0)) { - if (unlikely(__Pyx_ParseOptionalKeywords(__pyx_kwds, __pyx_pyargnames, 0, values, pos_args, "get_database_entry") < 0)) __PYX_ERR(0, 107, __pyx_L3_error) - } - } else if (PyTuple_GET_SIZE(__pyx_args) != 3) { - goto __pyx_L5_argtuple_error; - } else { - values[0] = PyTuple_GET_ITEM(__pyx_args, 0); - values[1] = PyTuple_GET_ITEM(__pyx_args, 1); - values[2] = PyTuple_GET_ITEM(__pyx_args, 2); - } - __pyx_v_self = values[0]; - __pyx_v_fp_str = values[1]; - __pyx_v_approx_fp_str = values[2]; - } - goto __pyx_L4_argument_unpacking_done; - __pyx_L5_argtuple_error:; - __Pyx_RaiseArgtupleInvalid("get_database_entry", 1, 3, 3, PyTuple_GET_SIZE(__pyx_args)); __PYX_ERR(0, 107, __pyx_L3_error) - __pyx_L3_error:; - __Pyx_AddTraceback("pmercury.protocols.dtls_server.DTLS_Server.get_database_entry", __pyx_clineno, __pyx_lineno, __pyx_filename); - __Pyx_RefNannyFinishContext(); - return NULL; - __pyx_L4_argument_unpacking_done:; - __pyx_r = __pyx_pf_8pmercury_9protocols_11dtls_server_11DTLS_Server_6get_database_entry(__pyx_self, __pyx_v_self, __pyx_v_fp_str, __pyx_v_approx_fp_str); - - /* function exit code */ - __Pyx_RefNannyFinishContext(); - return __pyx_r; -} - -static PyObject *__pyx_pf_8pmercury_9protocols_11dtls_server_11DTLS_Server_6get_database_entry(CYTHON_UNUSED PyObject *__pyx_self, CYTHON_UNUSED PyObject *__pyx_v_self, CYTHON_UNUSED PyObject *__pyx_v_fp_str, CYTHON_UNUSED PyObject *__pyx_v_approx_fp_str) { - PyObject *__pyx_r = NULL; - __Pyx_RefNannyDeclarations - __Pyx_RefNannySetupContext("get_database_entry", 0); - - /* "pmercury/protocols/dtls_server.pyx":108 - * @functools.lru_cache(maxsize=MAX_CACHED_RESULTS) - * def get_database_entry(self, fp_str, approx_fp_str): - * return None # <<<<<<<<<<<<<< - * - * - */ - __Pyx_XDECREF(__pyx_r); - __pyx_r = Py_None; __Pyx_INCREF(Py_None); - goto __pyx_L0; - - /* "pmercury/protocols/dtls_server.pyx":107 - * - * @functools.lru_cache(maxsize=MAX_CACHED_RESULTS) - * def get_database_entry(self, fp_str, approx_fp_str): # <<<<<<<<<<<<<< - * return None - * - */ - - /* function exit code */ - __pyx_L0:; - __Pyx_XGIVEREF(__pyx_r); - __Pyx_RefNannyFinishContext(); - return __pyx_r; -} - -/* "pmercury/protocols/dtls_server.pyx":111 - * - * - * def get_human_readable(self, fp_str_): # <<<<<<<<<<<<<< - * return None - * - */ - -/* Python wrapper */ -static PyObject *__pyx_pw_8pmercury_9protocols_11dtls_server_11DTLS_Server_9get_human_readable(PyObject *__pyx_self, PyObject *__pyx_args, PyObject *__pyx_kwds); /*proto*/ -static PyMethodDef __pyx_mdef_8pmercury_9protocols_11dtls_server_11DTLS_Server_9get_human_readable = {"get_human_readable", (PyCFunction)(void*)(PyCFunctionWithKeywords)__pyx_pw_8pmercury_9protocols_11dtls_server_11DTLS_Server_9get_human_readable, METH_VARARGS|METH_KEYWORDS, 0}; -static PyObject *__pyx_pw_8pmercury_9protocols_11dtls_server_11DTLS_Server_9get_human_readable(PyObject *__pyx_self, PyObject *__pyx_args, PyObject *__pyx_kwds) { - CYTHON_UNUSED PyObject *__pyx_v_self = 0; - CYTHON_UNUSED PyObject *__pyx_v_fp_str_ = 0; - PyObject *__pyx_r = 0; - __Pyx_RefNannyDeclarations - __Pyx_RefNannySetupContext("get_human_readable (wrapper)", 0); - { - static PyObject **__pyx_pyargnames[] = {&__pyx_n_s_self,&__pyx_n_s_fp_str_2,0}; - PyObject* values[2] = {0,0}; - if (unlikely(__pyx_kwds)) { - Py_ssize_t kw_args; - const Py_ssize_t pos_args = PyTuple_GET_SIZE(__pyx_args); - switch (pos_args) { - case 2: values[1] = PyTuple_GET_ITEM(__pyx_args, 1); - CYTHON_FALLTHROUGH; - case 1: values[0] = PyTuple_GET_ITEM(__pyx_args, 0); - CYTHON_FALLTHROUGH; - case 0: break; - default: goto __pyx_L5_argtuple_error; - } - kw_args = PyDict_Size(__pyx_kwds); - switch (pos_args) { - case 0: - if (likely((values[0] = __Pyx_PyDict_GetItemStr(__pyx_kwds, __pyx_n_s_self)) != 0)) kw_args--; - else goto __pyx_L5_argtuple_error; - CYTHON_FALLTHROUGH; - case 1: - if (likely((values[1] = __Pyx_PyDict_GetItemStr(__pyx_kwds, __pyx_n_s_fp_str_2)) != 0)) kw_args--; - else { - __Pyx_RaiseArgtupleInvalid("get_human_readable", 1, 2, 2, 1); __PYX_ERR(0, 111, __pyx_L3_error) - } - } - if (unlikely(kw_args > 0)) { - if (unlikely(__Pyx_ParseOptionalKeywords(__pyx_kwds, __pyx_pyargnames, 0, values, pos_args, "get_human_readable") < 0)) __PYX_ERR(0, 111, __pyx_L3_error) - } - } else if (PyTuple_GET_SIZE(__pyx_args) != 2) { - goto __pyx_L5_argtuple_error; - } else { - values[0] = PyTuple_GET_ITEM(__pyx_args, 0); - values[1] = PyTuple_GET_ITEM(__pyx_args, 1); - } - __pyx_v_self = values[0]; - __pyx_v_fp_str_ = values[1]; - } - goto __pyx_L4_argument_unpacking_done; - __pyx_L5_argtuple_error:; - __Pyx_RaiseArgtupleInvalid("get_human_readable", 1, 2, 2, PyTuple_GET_SIZE(__pyx_args)); __PYX_ERR(0, 111, __pyx_L3_error) - __pyx_L3_error:; - __Pyx_AddTraceback("pmercury.protocols.dtls_server.DTLS_Server.get_human_readable", __pyx_clineno, __pyx_lineno, __pyx_filename); - __Pyx_RefNannyFinishContext(); - return NULL; - __pyx_L4_argument_unpacking_done:; - __pyx_r = __pyx_pf_8pmercury_9protocols_11dtls_server_11DTLS_Server_8get_human_readable(__pyx_self, __pyx_v_self, __pyx_v_fp_str_); - - /* function exit code */ - __Pyx_RefNannyFinishContext(); - return __pyx_r; -} - -static PyObject *__pyx_pf_8pmercury_9protocols_11dtls_server_11DTLS_Server_8get_human_readable(CYTHON_UNUSED PyObject *__pyx_self, CYTHON_UNUSED PyObject *__pyx_v_self, CYTHON_UNUSED PyObject *__pyx_v_fp_str_) { - PyObject *__pyx_r = NULL; - __Pyx_RefNannyDeclarations - __Pyx_RefNannySetupContext("get_human_readable", 0); - - /* "pmercury/protocols/dtls_server.pyx":112 - * - * def get_human_readable(self, fp_str_): - * return None # <<<<<<<<<<<<<< - * - * - */ - __Pyx_XDECREF(__pyx_r); - __pyx_r = Py_None; __Pyx_INCREF(Py_None); - goto __pyx_L0; - - /* "pmercury/protocols/dtls_server.pyx":111 - * - * - * def get_human_readable(self, fp_str_): # <<<<<<<<<<<<<< - * return None - * - */ - - /* function exit code */ - __pyx_L0:; - __Pyx_XGIVEREF(__pyx_r); - __Pyx_RefNannyFinishContext(); - return __pyx_r; -} - -/* "pmercury/protocols/dtls_server.pyx":115 - * - * - * def proc_identify(self, fp_str_, context_, dst_ip, dst_port, list_procs=5): # <<<<<<<<<<<<<< - * return None - * - */ - -/* Python wrapper */ -static PyObject *__pyx_pw_8pmercury_9protocols_11dtls_server_11DTLS_Server_11proc_identify(PyObject *__pyx_self, PyObject *__pyx_args, PyObject *__pyx_kwds); /*proto*/ -static PyMethodDef __pyx_mdef_8pmercury_9protocols_11dtls_server_11DTLS_Server_11proc_identify = {"proc_identify", (PyCFunction)(void*)(PyCFunctionWithKeywords)__pyx_pw_8pmercury_9protocols_11dtls_server_11DTLS_Server_11proc_identify, METH_VARARGS|METH_KEYWORDS, 0}; -static PyObject *__pyx_pw_8pmercury_9protocols_11dtls_server_11DTLS_Server_11proc_identify(PyObject *__pyx_self, PyObject *__pyx_args, PyObject *__pyx_kwds) { - CYTHON_UNUSED PyObject *__pyx_v_self = 0; - CYTHON_UNUSED PyObject *__pyx_v_fp_str_ = 0; - CYTHON_UNUSED PyObject *__pyx_v_context_ = 0; - CYTHON_UNUSED PyObject *__pyx_v_dst_ip = 0; - CYTHON_UNUSED PyObject *__pyx_v_dst_port = 0; - CYTHON_UNUSED PyObject *__pyx_v_list_procs = 0; - PyObject *__pyx_r = 0; - __Pyx_RefNannyDeclarations - __Pyx_RefNannySetupContext("proc_identify (wrapper)", 0); - { - static PyObject **__pyx_pyargnames[] = {&__pyx_n_s_self,&__pyx_n_s_fp_str_2,&__pyx_n_s_context,&__pyx_n_s_dst_ip,&__pyx_n_s_dst_port,&__pyx_n_s_list_procs,0}; - PyObject* values[6] = {0,0,0,0,0,0}; - values[5] = ((PyObject *)((PyObject *)__pyx_int_5)); - if (unlikely(__pyx_kwds)) { - Py_ssize_t kw_args; - const Py_ssize_t pos_args = PyTuple_GET_SIZE(__pyx_args); - switch (pos_args) { - case 6: values[5] = PyTuple_GET_ITEM(__pyx_args, 5); - CYTHON_FALLTHROUGH; - case 5: values[4] = PyTuple_GET_ITEM(__pyx_args, 4); - CYTHON_FALLTHROUGH; - case 4: values[3] = PyTuple_GET_ITEM(__pyx_args, 3); - CYTHON_FALLTHROUGH; - case 3: values[2] = PyTuple_GET_ITEM(__pyx_args, 2); - CYTHON_FALLTHROUGH; - case 2: values[1] = PyTuple_GET_ITEM(__pyx_args, 1); - CYTHON_FALLTHROUGH; - case 1: values[0] = PyTuple_GET_ITEM(__pyx_args, 0); - CYTHON_FALLTHROUGH; - case 0: break; - default: goto __pyx_L5_argtuple_error; - } - kw_args = PyDict_Size(__pyx_kwds); - switch (pos_args) { - case 0: - if (likely((values[0] = __Pyx_PyDict_GetItemStr(__pyx_kwds, __pyx_n_s_self)) != 0)) kw_args--; - else goto __pyx_L5_argtuple_error; - CYTHON_FALLTHROUGH; - case 1: - if (likely((values[1] = __Pyx_PyDict_GetItemStr(__pyx_kwds, __pyx_n_s_fp_str_2)) != 0)) kw_args--; - else { - __Pyx_RaiseArgtupleInvalid("proc_identify", 0, 5, 6, 1); __PYX_ERR(0, 115, __pyx_L3_error) - } - CYTHON_FALLTHROUGH; - case 2: - if (likely((values[2] = __Pyx_PyDict_GetItemStr(__pyx_kwds, __pyx_n_s_context)) != 0)) kw_args--; - else { - __Pyx_RaiseArgtupleInvalid("proc_identify", 0, 5, 6, 2); __PYX_ERR(0, 115, __pyx_L3_error) - } - CYTHON_FALLTHROUGH; - case 3: - if (likely((values[3] = __Pyx_PyDict_GetItemStr(__pyx_kwds, __pyx_n_s_dst_ip)) != 0)) kw_args--; - else { - __Pyx_RaiseArgtupleInvalid("proc_identify", 0, 5, 6, 3); __PYX_ERR(0, 115, __pyx_L3_error) - } - CYTHON_FALLTHROUGH; - case 4: - if (likely((values[4] = __Pyx_PyDict_GetItemStr(__pyx_kwds, __pyx_n_s_dst_port)) != 0)) kw_args--; - else { - __Pyx_RaiseArgtupleInvalid("proc_identify", 0, 5, 6, 4); __PYX_ERR(0, 115, __pyx_L3_error) - } - CYTHON_FALLTHROUGH; - case 5: - if (kw_args > 0) { - PyObject* value = __Pyx_PyDict_GetItemStr(__pyx_kwds, __pyx_n_s_list_procs); - if (value) { values[5] = value; kw_args--; } - } - } - if (unlikely(kw_args > 0)) { - if (unlikely(__Pyx_ParseOptionalKeywords(__pyx_kwds, __pyx_pyargnames, 0, values, pos_args, "proc_identify") < 0)) __PYX_ERR(0, 115, __pyx_L3_error) - } - } else { - switch (PyTuple_GET_SIZE(__pyx_args)) { - case 6: values[5] = PyTuple_GET_ITEM(__pyx_args, 5); - CYTHON_FALLTHROUGH; - case 5: values[4] = PyTuple_GET_ITEM(__pyx_args, 4); - values[3] = PyTuple_GET_ITEM(__pyx_args, 3); - values[2] = PyTuple_GET_ITEM(__pyx_args, 2); - values[1] = PyTuple_GET_ITEM(__pyx_args, 1); - values[0] = PyTuple_GET_ITEM(__pyx_args, 0); - break; - default: goto __pyx_L5_argtuple_error; - } - } - __pyx_v_self = values[0]; - __pyx_v_fp_str_ = values[1]; - __pyx_v_context_ = values[2]; - __pyx_v_dst_ip = values[3]; - __pyx_v_dst_port = values[4]; - __pyx_v_list_procs = values[5]; - } - goto __pyx_L4_argument_unpacking_done; - __pyx_L5_argtuple_error:; - __Pyx_RaiseArgtupleInvalid("proc_identify", 0, 5, 6, PyTuple_GET_SIZE(__pyx_args)); __PYX_ERR(0, 115, __pyx_L3_error) - __pyx_L3_error:; - __Pyx_AddTraceback("pmercury.protocols.dtls_server.DTLS_Server.proc_identify", __pyx_clineno, __pyx_lineno, __pyx_filename); - __Pyx_RefNannyFinishContext(); - return NULL; - __pyx_L4_argument_unpacking_done:; - __pyx_r = __pyx_pf_8pmercury_9protocols_11dtls_server_11DTLS_Server_10proc_identify(__pyx_self, __pyx_v_self, __pyx_v_fp_str_, __pyx_v_context_, __pyx_v_dst_ip, __pyx_v_dst_port, __pyx_v_list_procs); - - /* function exit code */ - __Pyx_RefNannyFinishContext(); - return __pyx_r; -} - -static PyObject *__pyx_pf_8pmercury_9protocols_11dtls_server_11DTLS_Server_10proc_identify(CYTHON_UNUSED PyObject *__pyx_self, CYTHON_UNUSED PyObject *__pyx_v_self, CYTHON_UNUSED PyObject *__pyx_v_fp_str_, CYTHON_UNUSED PyObject *__pyx_v_context_, CYTHON_UNUSED PyObject *__pyx_v_dst_ip, CYTHON_UNUSED PyObject *__pyx_v_dst_port, CYTHON_UNUSED PyObject *__pyx_v_list_procs) { - PyObject *__pyx_r = NULL; - __Pyx_RefNannyDeclarations - __Pyx_RefNannySetupContext("proc_identify", 0); - - /* "pmercury/protocols/dtls_server.pyx":116 - * - * def proc_identify(self, fp_str_, context_, dst_ip, dst_port, list_procs=5): - * return None # <<<<<<<<<<<<<< - * - */ - __Pyx_XDECREF(__pyx_r); - __pyx_r = Py_None; __Pyx_INCREF(Py_None); - goto __pyx_L0; - - /* "pmercury/protocols/dtls_server.pyx":115 - * - * - * def proc_identify(self, fp_str_, context_, dst_ip, dst_port, list_procs=5): # <<<<<<<<<<<<<< - * return None - * - */ - - /* function exit code */ - __pyx_L0:; - __Pyx_XGIVEREF(__pyx_r); - __Pyx_RefNannyFinishContext(); - return __pyx_r; -} - -static PyMethodDef __pyx_methods[] = { - {0, 0, 0, 0} -}; - -static int __pyx_import_star_set(PyObject *o, PyObject* py_name, char *name) { - static const char* internal_type_names[] = { - "uint16_t", - "uint32_t", - "uint64_t", - "uint8_t", - 0 - }; - const char** type_name = internal_type_names; - while (*type_name) { - if (__Pyx_StrEq(name, *type_name)) { - PyErr_Format(PyExc_TypeError, "Cannot overwrite C type %s", name); - goto bad; - } - type_name++; - } - if (0); - else { - if (PyObject_SetAttr(__pyx_m, py_name, o) < 0) goto bad; - } - return 0; - bad: - return -1; -} - -static int -__Pyx_import_all_from(PyObject *locals, PyObject *v) -{ - PyObject *all = PyObject_GetAttrString(v, "__all__"); - PyObject *dict, *name, *value; - int skip_leading_underscores = 0; - int pos, err; - if (all == NULL) { - if (!PyErr_ExceptionMatches(PyExc_AttributeError)) - return -1; - PyErr_Clear(); - dict = PyObject_GetAttrString(v, "__dict__"); - if (dict == NULL) { - if (!PyErr_ExceptionMatches(PyExc_AttributeError)) - return -1; - PyErr_SetString(PyExc_ImportError, - "from-import-* object has no __dict__ and no __all__"); - return -1; - } -#if PY_MAJOR_VERSION < 3 - all = PyObject_CallMethod(dict, (char *)"keys", NULL); -#else - all = PyMapping_Keys(dict); -#endif - Py_DECREF(dict); - if (all == NULL) - return -1; - skip_leading_underscores = 1; - } - for (pos = 0, err = 0; ; pos++) { - name = PySequence_GetItem(all, pos); - if (name == NULL) { - if (!PyErr_ExceptionMatches(PyExc_IndexError)) - err = -1; - else - PyErr_Clear(); - break; - } - if (skip_leading_underscores && -#if PY_MAJOR_VERSION < 3 - PyString_Check(name) && - PyString_AS_STRING(name)[0] == '_') -#else - PyUnicode_Check(name) && - PyUnicode_AS_UNICODE(name)[0] == '_') -#endif - { - Py_DECREF(name); - continue; - } - value = PyObject_GetAttr(v, name); - if (value == NULL) - err = -1; - else if (PyDict_CheckExact(locals)) - err = PyDict_SetItem(locals, name, value); - else - err = PyObject_SetItem(locals, name, value); - Py_DECREF(name); - Py_XDECREF(value); - if (err != 0) - break; - } - Py_DECREF(all); - return err; -} -static int __pyx_import_star(PyObject* m) { - int i; - int ret = -1; - char* s; - PyObject *locals = 0; - PyObject *list = 0; -#if PY_MAJOR_VERSION >= 3 - PyObject *utf8_name = 0; -#endif - PyObject *name; - PyObject *item; - locals = PyDict_New(); if (!locals) goto bad; - if (__Pyx_import_all_from(locals, m) < 0) goto bad; - list = PyDict_Items(locals); if (!list) goto bad; - for(i=0; i= 3 - utf8_name = PyUnicode_AsUTF8String(name); - if (!utf8_name) goto bad; - s = PyBytes_AS_STRING(utf8_name); - if (__pyx_import_star_set(item, name, s) < 0) goto bad; - Py_DECREF(utf8_name); utf8_name = 0; -#else - s = PyString_AsString(name); - if (!s) goto bad; - if (__pyx_import_star_set(item, name, s) < 0) goto bad; -#endif - } - ret = 0; -bad: - Py_XDECREF(locals); - Py_XDECREF(list); -#if PY_MAJOR_VERSION >= 3 - Py_XDECREF(utf8_name); -#endif - return ret; -} - - - -#if PY_MAJOR_VERSION >= 3 -#if CYTHON_PEP489_MULTI_PHASE_INIT -static PyObject* __pyx_pymod_create(PyObject *spec, PyModuleDef *def); /*proto*/ -static int __pyx_pymod_exec_dtls_server(PyObject* module); /*proto*/ -static PyModuleDef_Slot __pyx_moduledef_slots[] = { - {Py_mod_create, (void*)__pyx_pymod_create}, - {Py_mod_exec, (void*)__pyx_pymod_exec_dtls_server}, - {0, NULL} -}; -#endif - -static struct PyModuleDef __pyx_moduledef = { - PyModuleDef_HEAD_INIT, - "dtls_server", - __pyx_k_Copyright_c_2019_Cisco_Systems, /* m_doc */ - #if CYTHON_PEP489_MULTI_PHASE_INIT - 0, /* m_size */ - #else - -1, /* m_size */ - #endif - __pyx_methods /* m_methods */, - #if CYTHON_PEP489_MULTI_PHASE_INIT - __pyx_moduledef_slots, /* m_slots */ - #else - NULL, /* m_reload */ - #endif - NULL, /* m_traverse */ - NULL, /* m_clear */ - NULL /* m_free */ -}; -#endif -#ifndef CYTHON_SMALL_CODE -#if defined(__clang__) - #define CYTHON_SMALL_CODE -#elif defined(__GNUC__) && (__GNUC__ > 4 || (__GNUC__ == 4 && __GNUC_MINOR__ >= 3)) - #define CYTHON_SMALL_CODE __attribute__((cold)) -#else - #define CYTHON_SMALL_CODE -#endif -#endif - -static __Pyx_StringTabEntry __pyx_string_tab[] = { - {&__pyx_kp_u_, __pyx_k_, sizeof(__pyx_k_), 0, 1, 0, 0}, - {&__pyx_kp_u_02x, __pyx_k_02x, sizeof(__pyx_k_02x), 0, 1, 0, 0}, - {&__pyx_n_s_DTLS_Server, __pyx_k_DTLS_Server, sizeof(__pyx_k_DTLS_Server), 0, 0, 1, 1}, - {&__pyx_n_s_DTLS_Server___init, __pyx_k_DTLS_Server___init, sizeof(__pyx_k_DTLS_Server___init), 0, 0, 1, 1}, - {&__pyx_n_s_DTLS_Server_fingerprint, __pyx_k_DTLS_Server_fingerprint, sizeof(__pyx_k_DTLS_Server_fingerprint), 0, 0, 1, 1}, - {&__pyx_n_s_DTLS_Server_get_database_entry, __pyx_k_DTLS_Server_get_database_entry, sizeof(__pyx_k_DTLS_Server_get_database_entry), 0, 0, 1, 1}, - {&__pyx_n_s_DTLS_Server_get_human_readable, __pyx_k_DTLS_Server_get_human_readable, sizeof(__pyx_k_DTLS_Server_get_human_readable), 0, 0, 1, 1}, - {&__pyx_n_s_DTLS_Server_proc_identify, __pyx_k_DTLS_Server_proc_identify, sizeof(__pyx_k_DTLS_Server_proc_identify), 0, 0, 1, 1}, - {&__pyx_n_s_DTLS_Server_proto_identify, __pyx_k_DTLS_Server_proto_identify, sizeof(__pyx_k_DTLS_Server_proto_identify), 0, 0, 1, 1}, - {&__pyx_n_s_MAX_CACHED_RESULTS, __pyx_k_MAX_CACHED_RESULTS, sizeof(__pyx_k_MAX_CACHED_RESULTS), 0, 0, 1, 1}, - {&__pyx_n_s_Protocol, __pyx_k_Protocol, sizeof(__pyx_k_Protocol), 0, 0, 1, 1}, - {&__pyx_kp_u__2, __pyx_k__2, sizeof(__pyx_k__2), 0, 1, 0, 0}, - {&__pyx_kp_u__4, __pyx_k__4, sizeof(__pyx_k__4), 0, 1, 0, 0}, - {&__pyx_kp_u__5, __pyx_k__5, sizeof(__pyx_k__5), 0, 1, 0, 0}, - {&__pyx_n_s__6, __pyx_k__6, sizeof(__pyx_k__6), 0, 0, 1, 1}, - {&__pyx_n_s_abspath, __pyx_k_abspath, sizeof(__pyx_k_abspath), 0, 0, 1, 1}, - {&__pyx_n_s_append, __pyx_k_append, sizeof(__pyx_k_append), 0, 0, 1, 1}, - {&__pyx_n_s_approx_fp_str, __pyx_k_approx_fp_str, sizeof(__pyx_k_approx_fp_str), 0, 0, 1, 1}, - {&__pyx_n_s_buf, __pyx_k_buf, sizeof(__pyx_k_buf), 0, 0, 1, 1}, - {&__pyx_n_s_cline_in_traceback, __pyx_k_cline_in_traceback, sizeof(__pyx_k_cline_in_traceback), 0, 0, 1, 1}, - {&__pyx_n_s_compression_methods_length, __pyx_k_compression_methods_length, sizeof(__pyx_k_compression_methods_length), 0, 0, 1, 1}, - {&__pyx_n_s_config, __pyx_k_config, sizeof(__pyx_k_config), 0, 0, 1, 1}, - {&__pyx_n_s_context, __pyx_k_context, sizeof(__pyx_k_context), 0, 0, 1, 1}, - {&__pyx_n_s_data, __pyx_k_data, sizeof(__pyx_k_data), 0, 0, 1, 1}, - {&__pyx_n_s_data_len, __pyx_k_data_len, sizeof(__pyx_k_data_len), 0, 0, 1, 1}, - {&__pyx_n_s_dirname, __pyx_k_dirname, sizeof(__pyx_k_dirname), 0, 0, 1, 1}, - {&__pyx_n_s_doc, __pyx_k_doc, sizeof(__pyx_k_doc), 0, 0, 1, 1}, - {&__pyx_n_s_dst_ip, __pyx_k_dst_ip, sizeof(__pyx_k_dst_ip), 0, 0, 1, 1}, - {&__pyx_n_s_dst_port, __pyx_k_dst_port, sizeof(__pyx_k_dst_port), 0, 0, 1, 1}, - {&__pyx_n_s_ext_len, __pyx_k_ext_len, sizeof(__pyx_k_ext_len), 0, 0, 1, 1}, - {&__pyx_n_s_ext_total_len, __pyx_k_ext_total_len, sizeof(__pyx_k_ext_total_len), 0, 0, 1, 1}, - {&__pyx_n_s_file, __pyx_k_file, sizeof(__pyx_k_file), 0, 0, 1, 1}, - {&__pyx_n_s_fingerprint, __pyx_k_fingerprint, sizeof(__pyx_k_fingerprint), 0, 0, 1, 1}, - {&__pyx_n_s_fp, __pyx_k_fp, sizeof(__pyx_k_fp), 0, 0, 1, 1}, - {&__pyx_n_s_fp_database, __pyx_k_fp_database, sizeof(__pyx_k_fp_database), 0, 0, 1, 1}, - {&__pyx_n_s_fp_db, __pyx_k_fp_db, sizeof(__pyx_k_fp_db), 0, 0, 1, 1}, - {&__pyx_n_s_fp_str, __pyx_k_fp_str, sizeof(__pyx_k_fp_str), 0, 0, 1, 1}, - {&__pyx_n_s_fp_str_2, __pyx_k_fp_str_2, sizeof(__pyx_k_fp_str_2), 0, 0, 1, 1}, - {&__pyx_n_s_functools, __pyx_k_functools, sizeof(__pyx_k_functools), 0, 0, 1, 1}, - {&__pyx_n_s_get_database_entry, __pyx_k_get_database_entry, sizeof(__pyx_k_get_database_entry), 0, 0, 1, 1}, - {&__pyx_n_s_get_human_readable, __pyx_k_get_human_readable, sizeof(__pyx_k_get_human_readable), 0, 0, 1, 1}, - {&__pyx_n_s_import, __pyx_k_import, sizeof(__pyx_k_import), 0, 0, 1, 1}, - {&__pyx_n_s_init, __pyx_k_init, sizeof(__pyx_k_init), 0, 0, 1, 1}, - {&__pyx_n_s_list_procs, __pyx_k_list_procs, sizeof(__pyx_k_list_procs), 0, 0, 1, 1}, - {&__pyx_n_s_lru_cache, __pyx_k_lru_cache, sizeof(__pyx_k_lru_cache), 0, 0, 1, 1}, - {&__pyx_n_s_main, __pyx_k_main, sizeof(__pyx_k_main), 0, 0, 1, 1}, - {&__pyx_n_s_maxsize, __pyx_k_maxsize, sizeof(__pyx_k_maxsize), 0, 0, 1, 1}, - {&__pyx_n_s_metaclass, __pyx_k_metaclass, sizeof(__pyx_k_metaclass), 0, 0, 1, 1}, - {&__pyx_n_s_module, __pyx_k_module, sizeof(__pyx_k_module), 0, 0, 1, 1}, - {&__pyx_n_s_name, __pyx_k_name, sizeof(__pyx_k_name), 0, 0, 1, 1}, - {&__pyx_n_s_offset, __pyx_k_offset, sizeof(__pyx_k_offset), 0, 0, 1, 1}, - {&__pyx_n_s_os, __pyx_k_os, sizeof(__pyx_k_os), 0, 0, 1, 1}, - {&__pyx_n_s_parse_extension, __pyx_k_parse_extension, sizeof(__pyx_k_parse_extension), 0, 0, 1, 1}, - {&__pyx_n_s_path, __pyx_k_path, sizeof(__pyx_k_path), 0, 0, 1, 1}, - {&__pyx_n_s_pmercury_protocols_dtls_server, __pyx_k_pmercury_protocols_dtls_server, sizeof(__pyx_k_pmercury_protocols_dtls_server), 0, 0, 1, 1}, - {&__pyx_kp_s_pmercury_protocols_dtls_server_p, __pyx_k_pmercury_protocols_dtls_server_p, sizeof(__pyx_k_pmercury_protocols_dtls_server_p), 0, 0, 1, 0}, - {&__pyx_n_s_pmercury_protocols_protocol, __pyx_k_pmercury_protocols_protocol, sizeof(__pyx_k_pmercury_protocols_protocol), 0, 0, 1, 1}, - {&__pyx_n_s_pmercury_utils_tls_constants, __pyx_k_pmercury_utils_tls_constants, sizeof(__pyx_k_pmercury_utils_tls_constants), 0, 0, 1, 1}, - {&__pyx_n_s_pmercury_utils_tls_utils, __pyx_k_pmercury_utils_tls_utils, sizeof(__pyx_k_pmercury_utils_tls_utils), 0, 0, 1, 1}, - {&__pyx_n_s_prepare, __pyx_k_prepare, sizeof(__pyx_k_prepare), 0, 0, 1, 1}, - {&__pyx_n_s_proc_identify, __pyx_k_proc_identify, sizeof(__pyx_k_proc_identify), 0, 0, 1, 1}, - {&__pyx_n_s_proto_identify, __pyx_k_proto_identify, sizeof(__pyx_k_proto_identify), 0, 0, 1, 1}, - {&__pyx_n_s_qualname, __pyx_k_qualname, sizeof(__pyx_k_qualname), 0, 0, 1, 1}, - {&__pyx_kp_u_s, __pyx_k_s, sizeof(__pyx_k_s), 0, 1, 0, 0}, - {&__pyx_n_s_self, __pyx_k_self, sizeof(__pyx_k_self), 0, 0, 1, 1}, - {&__pyx_n_s_session_id_length, __pyx_k_session_id_length, sizeof(__pyx_k_session_id_length), 0, 0, 1, 1}, - {&__pyx_n_s_staticmethod, __pyx_k_staticmethod, sizeof(__pyx_k_staticmethod), 0, 0, 1, 1}, - {&__pyx_n_s_sys, __pyx_k_sys, sizeof(__pyx_k_sys), 0, 0, 1, 1}, - {&__pyx_n_s_test, __pyx_k_test, sizeof(__pyx_k_test), 0, 0, 1, 1}, - {&__pyx_n_s_tmp_fp_ext, __pyx_k_tmp_fp_ext, sizeof(__pyx_k_tmp_fp_ext), 0, 0, 1, 1}, - {0, 0, 0, 0, 0, 0, 0} -}; -static CYTHON_SMALL_CODE int __Pyx_InitCachedBuiltins(void) { - __pyx_builtin_staticmethod = __Pyx_GetBuiltinName(__pyx_n_s_staticmethod); if (!__pyx_builtin_staticmethod) __PYX_ERR(0, 40, __pyx_L1_error) - return 0; - __pyx_L1_error:; - return -1; -} - -static CYTHON_SMALL_CODE int __Pyx_InitCachedConstants(void) { - __Pyx_RefNannyDeclarations - __Pyx_RefNannySetupContext("__Pyx_InitCachedConstants", 0); - - /* "pmercury/protocols/dtls_server.pyx":69 - * offset += 1 + session_id_length - * if offset >= data_len: - * return None, None # <<<<<<<<<<<<<< - * - * # parse selected_cipher_suite - */ - __pyx_tuple__3 = PyTuple_Pack(2, Py_None, Py_None); if (unlikely(!__pyx_tuple__3)) __PYX_ERR(0, 69, __pyx_L1_error) - __Pyx_GOTREF(__pyx_tuple__3); - __Pyx_GIVEREF(__pyx_tuple__3); - - /* "pmercury/protocols/dtls_server.pyx":35 - * class DTLS_Server(Protocol): - * - * def __init__(self, fp_database=None, config=None): # <<<<<<<<<<<<<< - * # populate fingerprint databases - * self.fp_db = {} - */ - __pyx_tuple__7 = PyTuple_Pack(3, __pyx_n_s_self, __pyx_n_s_fp_database, __pyx_n_s_config); if (unlikely(!__pyx_tuple__7)) __PYX_ERR(0, 35, __pyx_L1_error) - __Pyx_GOTREF(__pyx_tuple__7); - __Pyx_GIVEREF(__pyx_tuple__7); - __pyx_codeobj__8 = (PyObject*)__Pyx_PyCode_New(3, 0, 3, 0, CO_OPTIMIZED|CO_NEWLOCALS, __pyx_empty_bytes, __pyx_empty_tuple, __pyx_empty_tuple, __pyx_tuple__7, __pyx_empty_tuple, __pyx_empty_tuple, __pyx_kp_s_pmercury_protocols_dtls_server_p, __pyx_n_s_init, 35, __pyx_empty_bytes); if (unlikely(!__pyx_codeobj__8)) __PYX_ERR(0, 35, __pyx_L1_error) - __pyx_tuple__9 = PyTuple_Pack(2, ((PyObject *)Py_None), ((PyObject *)Py_None)); if (unlikely(!__pyx_tuple__9)) __PYX_ERR(0, 35, __pyx_L1_error) - __Pyx_GOTREF(__pyx_tuple__9); - __Pyx_GIVEREF(__pyx_tuple__9); - - /* "pmercury/protocols/dtls_server.pyx":41 - * - * @staticmethod - * def proto_identify(data, offset, data_len): # <<<<<<<<<<<<<< - * if data_len-offset < 27: - * return False - */ - __pyx_tuple__10 = PyTuple_Pack(3, __pyx_n_s_data, __pyx_n_s_offset, __pyx_n_s_data_len); if (unlikely(!__pyx_tuple__10)) __PYX_ERR(0, 41, __pyx_L1_error) - __Pyx_GOTREF(__pyx_tuple__10); - __Pyx_GIVEREF(__pyx_tuple__10); - __pyx_codeobj__11 = (PyObject*)__Pyx_PyCode_New(3, 0, 3, 0, CO_OPTIMIZED|CO_NEWLOCALS, __pyx_empty_bytes, __pyx_empty_tuple, __pyx_empty_tuple, __pyx_tuple__10, __pyx_empty_tuple, __pyx_empty_tuple, __pyx_kp_s_pmercury_protocols_dtls_server_p, __pyx_n_s_proto_identify, 41, __pyx_empty_bytes); if (unlikely(!__pyx_codeobj__11)) __PYX_ERR(0, 41, __pyx_L1_error) - - /* "pmercury/protocols/dtls_server.pyx":55 - * - * @staticmethod - * def fingerprint(bytes data, unsigned int offset, unsigned int data_len): # <<<<<<<<<<<<<< - * cdef unsigned char *buf = data - * offset += 13 - */ - __pyx_tuple__12 = PyTuple_Pack(10, __pyx_n_s_data, __pyx_n_s_offset, __pyx_n_s_data_len, __pyx_n_s_buf, __pyx_n_s_fp, __pyx_n_s_session_id_length, __pyx_n_s_compression_methods_length, __pyx_n_s_ext_total_len, __pyx_n_s_tmp_fp_ext, __pyx_n_s_ext_len); if (unlikely(!__pyx_tuple__12)) __PYX_ERR(0, 55, __pyx_L1_error) - __Pyx_GOTREF(__pyx_tuple__12); - __Pyx_GIVEREF(__pyx_tuple__12); - __pyx_codeobj__13 = (PyObject*)__Pyx_PyCode_New(3, 0, 10, 0, CO_OPTIMIZED|CO_NEWLOCALS, __pyx_empty_bytes, __pyx_empty_tuple, __pyx_empty_tuple, __pyx_tuple__12, __pyx_empty_tuple, __pyx_empty_tuple, __pyx_kp_s_pmercury_protocols_dtls_server_p, __pyx_n_s_fingerprint, 55, __pyx_empty_bytes); if (unlikely(!__pyx_codeobj__13)) __PYX_ERR(0, 55, __pyx_L1_error) - - /* "pmercury/protocols/dtls_server.pyx":107 - * - * @functools.lru_cache(maxsize=MAX_CACHED_RESULTS) - * def get_database_entry(self, fp_str, approx_fp_str): # <<<<<<<<<<<<<< - * return None - * - */ - __pyx_tuple__14 = PyTuple_Pack(3, __pyx_n_s_self, __pyx_n_s_fp_str, __pyx_n_s_approx_fp_str); if (unlikely(!__pyx_tuple__14)) __PYX_ERR(0, 107, __pyx_L1_error) - __Pyx_GOTREF(__pyx_tuple__14); - __Pyx_GIVEREF(__pyx_tuple__14); - __pyx_codeobj__15 = (PyObject*)__Pyx_PyCode_New(3, 0, 3, 0, CO_OPTIMIZED|CO_NEWLOCALS, __pyx_empty_bytes, __pyx_empty_tuple, __pyx_empty_tuple, __pyx_tuple__14, __pyx_empty_tuple, __pyx_empty_tuple, __pyx_kp_s_pmercury_protocols_dtls_server_p, __pyx_n_s_get_database_entry, 107, __pyx_empty_bytes); if (unlikely(!__pyx_codeobj__15)) __PYX_ERR(0, 107, __pyx_L1_error) - - /* "pmercury/protocols/dtls_server.pyx":111 - * - * - * def get_human_readable(self, fp_str_): # <<<<<<<<<<<<<< - * return None - * - */ - __pyx_tuple__16 = PyTuple_Pack(2, __pyx_n_s_self, __pyx_n_s_fp_str_2); if (unlikely(!__pyx_tuple__16)) __PYX_ERR(0, 111, __pyx_L1_error) - __Pyx_GOTREF(__pyx_tuple__16); - __Pyx_GIVEREF(__pyx_tuple__16); - __pyx_codeobj__17 = (PyObject*)__Pyx_PyCode_New(2, 0, 2, 0, CO_OPTIMIZED|CO_NEWLOCALS, __pyx_empty_bytes, __pyx_empty_tuple, __pyx_empty_tuple, __pyx_tuple__16, __pyx_empty_tuple, __pyx_empty_tuple, __pyx_kp_s_pmercury_protocols_dtls_server_p, __pyx_n_s_get_human_readable, 111, __pyx_empty_bytes); if (unlikely(!__pyx_codeobj__17)) __PYX_ERR(0, 111, __pyx_L1_error) - - /* "pmercury/protocols/dtls_server.pyx":115 - * - * - * def proc_identify(self, fp_str_, context_, dst_ip, dst_port, list_procs=5): # <<<<<<<<<<<<<< - * return None - * - */ - __pyx_tuple__18 = PyTuple_Pack(6, __pyx_n_s_self, __pyx_n_s_fp_str_2, __pyx_n_s_context, __pyx_n_s_dst_ip, __pyx_n_s_dst_port, __pyx_n_s_list_procs); if (unlikely(!__pyx_tuple__18)) __PYX_ERR(0, 115, __pyx_L1_error) - __Pyx_GOTREF(__pyx_tuple__18); - __Pyx_GIVEREF(__pyx_tuple__18); - __pyx_codeobj__19 = (PyObject*)__Pyx_PyCode_New(6, 0, 6, 0, CO_OPTIMIZED|CO_NEWLOCALS, __pyx_empty_bytes, __pyx_empty_tuple, __pyx_empty_tuple, __pyx_tuple__18, __pyx_empty_tuple, __pyx_empty_tuple, __pyx_kp_s_pmercury_protocols_dtls_server_p, __pyx_n_s_proc_identify, 115, __pyx_empty_bytes); if (unlikely(!__pyx_codeobj__19)) __PYX_ERR(0, 115, __pyx_L1_error) - __pyx_tuple__20 = PyTuple_Pack(1, ((PyObject *)__pyx_int_5)); if (unlikely(!__pyx_tuple__20)) __PYX_ERR(0, 115, __pyx_L1_error) - __Pyx_GOTREF(__pyx_tuple__20); - __Pyx_GIVEREF(__pyx_tuple__20); - __Pyx_RefNannyFinishContext(); - return 0; - __pyx_L1_error:; - __Pyx_RefNannyFinishContext(); - return -1; -} - -static CYTHON_SMALL_CODE int __Pyx_InitGlobals(void) { - if (__Pyx_InitStrings(__pyx_string_tab) < 0) __PYX_ERR(0, 1, __pyx_L1_error); - __pyx_int_1 = PyInt_FromLong(1); if (unlikely(!__pyx_int_1)) __PYX_ERR(0, 1, __pyx_L1_error) - __pyx_int_2 = PyInt_FromLong(2); if (unlikely(!__pyx_int_2)) __PYX_ERR(0, 1, __pyx_L1_error) - __pyx_int_5 = PyInt_FromLong(5); if (unlikely(!__pyx_int_5)) __PYX_ERR(0, 1, __pyx_L1_error) - __pyx_int_13 = PyInt_FromLong(13); if (unlikely(!__pyx_int_13)) __PYX_ERR(0, 1, __pyx_L1_error) - __pyx_int_22 = PyInt_FromLong(22); if (unlikely(!__pyx_int_22)) __PYX_ERR(0, 1, __pyx_L1_error) - __pyx_int_25 = PyInt_FromLong(25); if (unlikely(!__pyx_int_25)) __PYX_ERR(0, 1, __pyx_L1_error) - __pyx_int_26 = PyInt_FromLong(26); if (unlikely(!__pyx_int_26)) __PYX_ERR(0, 1, __pyx_L1_error) - __pyx_int_27 = PyInt_FromLong(27); if (unlikely(!__pyx_int_27)) __PYX_ERR(0, 1, __pyx_L1_error) - __pyx_int_253 = PyInt_FromLong(253); if (unlikely(!__pyx_int_253)) __PYX_ERR(0, 1, __pyx_L1_error) - __pyx_int_254 = PyInt_FromLong(254); if (unlikely(!__pyx_int_254)) __PYX_ERR(0, 1, __pyx_L1_error) - __pyx_int_16777216 = PyInt_FromLong(16777216L); if (unlikely(!__pyx_int_16777216)) __PYX_ERR(0, 1, __pyx_L1_error) - return 0; - __pyx_L1_error:; - return -1; -} - -static CYTHON_SMALL_CODE int __Pyx_modinit_global_init_code(void); /*proto*/ -static CYTHON_SMALL_CODE int __Pyx_modinit_variable_export_code(void); /*proto*/ -static CYTHON_SMALL_CODE int __Pyx_modinit_function_export_code(void); /*proto*/ -static CYTHON_SMALL_CODE int __Pyx_modinit_type_init_code(void); /*proto*/ -static CYTHON_SMALL_CODE int __Pyx_modinit_type_import_code(void); /*proto*/ -static CYTHON_SMALL_CODE int __Pyx_modinit_variable_import_code(void); /*proto*/ -static CYTHON_SMALL_CODE int __Pyx_modinit_function_import_code(void); /*proto*/ - -static int __Pyx_modinit_global_init_code(void) { - __Pyx_RefNannyDeclarations - __Pyx_RefNannySetupContext("__Pyx_modinit_global_init_code", 0); - /*--- Global init code ---*/ - __Pyx_RefNannyFinishContext(); - return 0; -} - -static int __Pyx_modinit_variable_export_code(void) { - __Pyx_RefNannyDeclarations - __Pyx_RefNannySetupContext("__Pyx_modinit_variable_export_code", 0); - /*--- Variable export code ---*/ - __Pyx_RefNannyFinishContext(); - return 0; -} - -static int __Pyx_modinit_function_export_code(void) { - __Pyx_RefNannyDeclarations - __Pyx_RefNannySetupContext("__Pyx_modinit_function_export_code", 0); - /*--- Function export code ---*/ - __Pyx_RefNannyFinishContext(); - return 0; -} - -static int __Pyx_modinit_type_init_code(void) { - __Pyx_RefNannyDeclarations - __Pyx_RefNannySetupContext("__Pyx_modinit_type_init_code", 0); - /*--- Type init code ---*/ - __Pyx_RefNannyFinishContext(); - return 0; -} - -static int __Pyx_modinit_type_import_code(void) { - __Pyx_RefNannyDeclarations - __Pyx_RefNannySetupContext("__Pyx_modinit_type_import_code", 0); - /*--- Type import code ---*/ - __Pyx_RefNannyFinishContext(); - return 0; -} - -static int __Pyx_modinit_variable_import_code(void) { - __Pyx_RefNannyDeclarations - __Pyx_RefNannySetupContext("__Pyx_modinit_variable_import_code", 0); - /*--- Variable import code ---*/ - __Pyx_RefNannyFinishContext(); - return 0; -} - -static int __Pyx_modinit_function_import_code(void) { - __Pyx_RefNannyDeclarations - __Pyx_RefNannySetupContext("__Pyx_modinit_function_import_code", 0); - /*--- Function import code ---*/ - __Pyx_RefNannyFinishContext(); - return 0; -} - - -#if PY_MAJOR_VERSION < 3 -#ifdef CYTHON_NO_PYINIT_EXPORT -#define __Pyx_PyMODINIT_FUNC void -#else -#define __Pyx_PyMODINIT_FUNC PyMODINIT_FUNC -#endif -#else -#ifdef CYTHON_NO_PYINIT_EXPORT -#define __Pyx_PyMODINIT_FUNC PyObject * -#else -#define __Pyx_PyMODINIT_FUNC PyMODINIT_FUNC -#endif -#endif - - -#if PY_MAJOR_VERSION < 3 -__Pyx_PyMODINIT_FUNC initdtls_server(void) CYTHON_SMALL_CODE; /*proto*/ -__Pyx_PyMODINIT_FUNC initdtls_server(void) -#else -__Pyx_PyMODINIT_FUNC PyInit_dtls_server(void) CYTHON_SMALL_CODE; /*proto*/ -__Pyx_PyMODINIT_FUNC PyInit_dtls_server(void) -#if CYTHON_PEP489_MULTI_PHASE_INIT -{ - return PyModuleDef_Init(&__pyx_moduledef); -} -static CYTHON_SMALL_CODE int __Pyx_check_single_interpreter(void) { - #if PY_VERSION_HEX >= 0x030700A1 - static PY_INT64_T main_interpreter_id = -1; - PY_INT64_T current_id = PyInterpreterState_GetID(PyThreadState_Get()->interp); - if (main_interpreter_id == -1) { - main_interpreter_id = current_id; - return (unlikely(current_id == -1)) ? -1 : 0; - } else if (unlikely(main_interpreter_id != current_id)) - #else - static PyInterpreterState *main_interpreter = NULL; - PyInterpreterState *current_interpreter = PyThreadState_Get()->interp; - if (!main_interpreter) { - main_interpreter = current_interpreter; - } else if (unlikely(main_interpreter != current_interpreter)) - #endif - { - PyErr_SetString( - PyExc_ImportError, - "Interpreter change detected - this module can only be loaded into one interpreter per process."); - return -1; - } - return 0; -} -static CYTHON_SMALL_CODE int __Pyx_copy_spec_to_module(PyObject *spec, PyObject *moddict, const char* from_name, const char* to_name, int allow_none) { - PyObject *value = PyObject_GetAttrString(spec, from_name); - int result = 0; - if (likely(value)) { - if (allow_none || value != Py_None) { - result = PyDict_SetItemString(moddict, to_name, value); - } - Py_DECREF(value); - } else if (PyErr_ExceptionMatches(PyExc_AttributeError)) { - PyErr_Clear(); - } else { - result = -1; - } - return result; -} -static CYTHON_SMALL_CODE PyObject* __pyx_pymod_create(PyObject *spec, CYTHON_UNUSED PyModuleDef *def) { - PyObject *module = NULL, *moddict, *modname; - if (__Pyx_check_single_interpreter()) - return NULL; - if (__pyx_m) - return __Pyx_NewRef(__pyx_m); - modname = PyObject_GetAttrString(spec, "name"); - if (unlikely(!modname)) goto bad; - module = PyModule_NewObject(modname); - Py_DECREF(modname); - if (unlikely(!module)) goto bad; - moddict = PyModule_GetDict(module); - if (unlikely(!moddict)) goto bad; - if (unlikely(__Pyx_copy_spec_to_module(spec, moddict, "loader", "__loader__", 1) < 0)) goto bad; - if (unlikely(__Pyx_copy_spec_to_module(spec, moddict, "origin", "__file__", 1) < 0)) goto bad; - if (unlikely(__Pyx_copy_spec_to_module(spec, moddict, "parent", "__package__", 1) < 0)) goto bad; - if (unlikely(__Pyx_copy_spec_to_module(spec, moddict, "submodule_search_locations", "__path__", 0) < 0)) goto bad; - return module; -bad: - Py_XDECREF(module); - return NULL; -} - - -static CYTHON_SMALL_CODE int __pyx_pymod_exec_dtls_server(PyObject *__pyx_pyinit_module) -#endif -#endif -{ - PyObject *__pyx_t_1 = NULL; - PyObject *__pyx_t_2 = NULL; - PyObject *__pyx_t_3 = NULL; - PyObject *__pyx_t_4 = NULL; - PyObject *__pyx_t_5 = NULL; - int __pyx_t_6; - PyObject *__pyx_t_7 = NULL; - PyObject *__pyx_t_8 = NULL; - __Pyx_RefNannyDeclarations - #if CYTHON_PEP489_MULTI_PHASE_INIT - if (__pyx_m) { - if (__pyx_m == __pyx_pyinit_module) return 0; - PyErr_SetString(PyExc_RuntimeError, "Module 'dtls_server' has already been imported. Re-initialisation is not supported."); - return -1; - } - #elif PY_MAJOR_VERSION >= 3 - if (__pyx_m) return __Pyx_NewRef(__pyx_m); - #endif - #if CYTHON_REFNANNY -__Pyx_RefNanny = __Pyx_RefNannyImportAPI("refnanny"); -if (!__Pyx_RefNanny) { - PyErr_Clear(); - __Pyx_RefNanny = __Pyx_RefNannyImportAPI("Cython.Runtime.refnanny"); - if (!__Pyx_RefNanny) - Py_FatalError("failed to import 'refnanny' module"); -} -#endif - __Pyx_RefNannySetupContext("__Pyx_PyMODINIT_FUNC PyInit_dtls_server(void)", 0); - if (__Pyx_check_binary_version() < 0) __PYX_ERR(0, 1, __pyx_L1_error) - #ifdef __Pxy_PyFrame_Initialize_Offsets - __Pxy_PyFrame_Initialize_Offsets(); - #endif - __pyx_empty_tuple = PyTuple_New(0); if (unlikely(!__pyx_empty_tuple)) __PYX_ERR(0, 1, __pyx_L1_error) - __pyx_empty_bytes = PyBytes_FromStringAndSize("", 0); if (unlikely(!__pyx_empty_bytes)) __PYX_ERR(0, 1, __pyx_L1_error) - __pyx_empty_unicode = PyUnicode_FromStringAndSize("", 0); if (unlikely(!__pyx_empty_unicode)) __PYX_ERR(0, 1, __pyx_L1_error) - #ifdef __Pyx_CyFunction_USED - if (__pyx_CyFunction_init() < 0) __PYX_ERR(0, 1, __pyx_L1_error) - #endif - #ifdef __Pyx_FusedFunction_USED - if (__pyx_FusedFunction_init() < 0) __PYX_ERR(0, 1, __pyx_L1_error) - #endif - #ifdef __Pyx_Coroutine_USED - if (__pyx_Coroutine_init() < 0) __PYX_ERR(0, 1, __pyx_L1_error) - #endif - #ifdef __Pyx_Generator_USED - if (__pyx_Generator_init() < 0) __PYX_ERR(0, 1, __pyx_L1_error) - #endif - #ifdef __Pyx_AsyncGen_USED - if (__pyx_AsyncGen_init() < 0) __PYX_ERR(0, 1, __pyx_L1_error) - #endif - #ifdef __Pyx_StopAsyncIteration_USED - if (__pyx_StopAsyncIteration_init() < 0) __PYX_ERR(0, 1, __pyx_L1_error) - #endif - /*--- Library function declarations ---*/ - /*--- Threads initialization code ---*/ - #if defined(__PYX_FORCE_INIT_THREADS) && __PYX_FORCE_INIT_THREADS - #ifdef WITH_THREAD /* Python build with threading support? */ - PyEval_InitThreads(); - #endif - #endif - /*--- Module creation code ---*/ - #if CYTHON_PEP489_MULTI_PHASE_INIT - __pyx_m = __pyx_pyinit_module; - Py_INCREF(__pyx_m); - #else - #if PY_MAJOR_VERSION < 3 - __pyx_m = Py_InitModule4("dtls_server", __pyx_methods, __pyx_k_Copyright_c_2019_Cisco_Systems, 0, PYTHON_API_VERSION); Py_XINCREF(__pyx_m); - #else - __pyx_m = PyModule_Create(&__pyx_moduledef); - #endif - if (unlikely(!__pyx_m)) __PYX_ERR(0, 1, __pyx_L1_error) - #endif - __pyx_d = PyModule_GetDict(__pyx_m); if (unlikely(!__pyx_d)) __PYX_ERR(0, 1, __pyx_L1_error) - Py_INCREF(__pyx_d); - __pyx_b = PyImport_AddModule(__Pyx_BUILTIN_MODULE_NAME); if (unlikely(!__pyx_b)) __PYX_ERR(0, 1, __pyx_L1_error) - Py_INCREF(__pyx_b); - __pyx_cython_runtime = PyImport_AddModule((char *) "cython_runtime"); if (unlikely(!__pyx_cython_runtime)) __PYX_ERR(0, 1, __pyx_L1_error) - Py_INCREF(__pyx_cython_runtime); - if (PyObject_SetAttrString(__pyx_m, "__builtins__", __pyx_b) < 0) __PYX_ERR(0, 1, __pyx_L1_error); - /*--- Initialize various global constants etc. ---*/ - if (__Pyx_InitGlobals() < 0) __PYX_ERR(0, 1, __pyx_L1_error) - #if PY_MAJOR_VERSION < 3 && (__PYX_DEFAULT_STRING_ENCODING_IS_ASCII || __PYX_DEFAULT_STRING_ENCODING_IS_DEFAULT) - if (__Pyx_init_sys_getdefaultencoding_params() < 0) __PYX_ERR(0, 1, __pyx_L1_error) - #endif - if (__pyx_module_is_main_pmercury__protocols__dtls_server) { - if (PyObject_SetAttr(__pyx_m, __pyx_n_s_name, __pyx_n_s_main) < 0) __PYX_ERR(0, 1, __pyx_L1_error) - } - #if PY_MAJOR_VERSION >= 3 - { - PyObject *modules = PyImport_GetModuleDict(); if (unlikely(!modules)) __PYX_ERR(0, 1, __pyx_L1_error) - if (!PyDict_GetItemString(modules, "pmercury.protocols.dtls_server")) { - if (unlikely(PyDict_SetItemString(modules, "pmercury.protocols.dtls_server", __pyx_m) < 0)) __PYX_ERR(0, 1, __pyx_L1_error) - } - } - #endif - /*--- Builtin init code ---*/ - if (__Pyx_InitCachedBuiltins() < 0) goto __pyx_L1_error; - /*--- Constants init code ---*/ - if (__Pyx_InitCachedConstants() < 0) goto __pyx_L1_error; - /*--- Global type/function init code ---*/ - (void)__Pyx_modinit_global_init_code(); - (void)__Pyx_modinit_variable_export_code(); - (void)__Pyx_modinit_function_export_code(); - (void)__Pyx_modinit_type_init_code(); - (void)__Pyx_modinit_type_import_code(); - (void)__Pyx_modinit_variable_import_code(); - (void)__Pyx_modinit_function_import_code(); - /*--- Execution code ---*/ - #if defined(__Pyx_Generator_USED) || defined(__Pyx_Coroutine_USED) - if (__Pyx_patch_abc() < 0) __PYX_ERR(0, 1, __pyx_L1_error) - #endif - - /* "pmercury/protocols/dtls_server.pyx":8 - * """ - * - * import os # <<<<<<<<<<<<<< - * import sys - * - */ - __pyx_t_1 = __Pyx_Import(__pyx_n_s_os, 0, 0); if (unlikely(!__pyx_t_1)) __PYX_ERR(0, 8, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_1); - if (PyDict_SetItem(__pyx_d, __pyx_n_s_os, __pyx_t_1) < 0) __PYX_ERR(0, 8, __pyx_L1_error) - __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0; - - /* "pmercury/protocols/dtls_server.pyx":9 - * - * import os - * import sys # <<<<<<<<<<<<<< - * - * sys.path.append(os.path.dirname(os.path.abspath(__file__))) - */ - __pyx_t_1 = __Pyx_Import(__pyx_n_s_sys, 0, 0); if (unlikely(!__pyx_t_1)) __PYX_ERR(0, 9, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_1); - if (PyDict_SetItem(__pyx_d, __pyx_n_s_sys, __pyx_t_1) < 0) __PYX_ERR(0, 9, __pyx_L1_error) - __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0; - - /* "pmercury/protocols/dtls_server.pyx":11 - * import sys - * - * sys.path.append(os.path.dirname(os.path.abspath(__file__))) # <<<<<<<<<<<<<< - * sys.path.append(os.path.dirname(os.path.abspath(__file__))+'/../') - * from pmercury.utils.tls_utils import * - */ - __Pyx_GetModuleGlobalName(__pyx_t_1, __pyx_n_s_sys); if (unlikely(!__pyx_t_1)) __PYX_ERR(0, 11, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_1); - __pyx_t_2 = __Pyx_PyObject_GetAttrStr(__pyx_t_1, __pyx_n_s_path); if (unlikely(!__pyx_t_2)) __PYX_ERR(0, 11, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_2); - __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0; - __Pyx_GetModuleGlobalName(__pyx_t_1, __pyx_n_s_os); if (unlikely(!__pyx_t_1)) __PYX_ERR(0, 11, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_1); - __pyx_t_3 = __Pyx_PyObject_GetAttrStr(__pyx_t_1, __pyx_n_s_path); if (unlikely(!__pyx_t_3)) __PYX_ERR(0, 11, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_3); - __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0; - __pyx_t_1 = __Pyx_PyObject_GetAttrStr(__pyx_t_3, __pyx_n_s_dirname); if (unlikely(!__pyx_t_1)) __PYX_ERR(0, 11, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_1); - __Pyx_DECREF(__pyx_t_3); __pyx_t_3 = 0; - __Pyx_GetModuleGlobalName(__pyx_t_3, __pyx_n_s_os); if (unlikely(!__pyx_t_3)) __PYX_ERR(0, 11, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_3); - __pyx_t_4 = __Pyx_PyObject_GetAttrStr(__pyx_t_3, __pyx_n_s_path); if (unlikely(!__pyx_t_4)) __PYX_ERR(0, 11, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_4); - __Pyx_DECREF(__pyx_t_3); __pyx_t_3 = 0; - __pyx_t_3 = __Pyx_PyObject_GetAttrStr(__pyx_t_4, __pyx_n_s_abspath); if (unlikely(!__pyx_t_3)) __PYX_ERR(0, 11, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_3); - __Pyx_DECREF(__pyx_t_4); __pyx_t_4 = 0; - __Pyx_GetModuleGlobalName(__pyx_t_4, __pyx_n_s_file); if (unlikely(!__pyx_t_4)) __PYX_ERR(0, 11, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_4); - __pyx_t_5 = __Pyx_PyObject_CallOneArg(__pyx_t_3, __pyx_t_4); if (unlikely(!__pyx_t_5)) __PYX_ERR(0, 11, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_5); - __Pyx_DECREF(__pyx_t_3); __pyx_t_3 = 0; - __Pyx_DECREF(__pyx_t_4); __pyx_t_4 = 0; - __pyx_t_4 = __Pyx_PyObject_CallOneArg(__pyx_t_1, __pyx_t_5); if (unlikely(!__pyx_t_4)) __PYX_ERR(0, 11, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_4); - __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0; - __Pyx_DECREF(__pyx_t_5); __pyx_t_5 = 0; - __pyx_t_6 = __Pyx_PyObject_Append(__pyx_t_2, __pyx_t_4); if (unlikely(__pyx_t_6 == ((int)-1))) __PYX_ERR(0, 11, __pyx_L1_error) - __Pyx_DECREF(__pyx_t_2); __pyx_t_2 = 0; - __Pyx_DECREF(__pyx_t_4); __pyx_t_4 = 0; - - /* "pmercury/protocols/dtls_server.pyx":12 - * - * sys.path.append(os.path.dirname(os.path.abspath(__file__))) - * sys.path.append(os.path.dirname(os.path.abspath(__file__))+'/../') # <<<<<<<<<<<<<< - * from pmercury.utils.tls_utils import * - * from pmercury.utils.tls_constants import * - */ - __Pyx_GetModuleGlobalName(__pyx_t_4, __pyx_n_s_sys); if (unlikely(!__pyx_t_4)) __PYX_ERR(0, 12, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_4); - __pyx_t_2 = __Pyx_PyObject_GetAttrStr(__pyx_t_4, __pyx_n_s_path); if (unlikely(!__pyx_t_2)) __PYX_ERR(0, 12, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_2); - __Pyx_DECREF(__pyx_t_4); __pyx_t_4 = 0; - __Pyx_GetModuleGlobalName(__pyx_t_4, __pyx_n_s_os); if (unlikely(!__pyx_t_4)) __PYX_ERR(0, 12, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_4); - __pyx_t_5 = __Pyx_PyObject_GetAttrStr(__pyx_t_4, __pyx_n_s_path); if (unlikely(!__pyx_t_5)) __PYX_ERR(0, 12, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_5); - __Pyx_DECREF(__pyx_t_4); __pyx_t_4 = 0; - __pyx_t_4 = __Pyx_PyObject_GetAttrStr(__pyx_t_5, __pyx_n_s_dirname); if (unlikely(!__pyx_t_4)) __PYX_ERR(0, 12, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_4); - __Pyx_DECREF(__pyx_t_5); __pyx_t_5 = 0; - __Pyx_GetModuleGlobalName(__pyx_t_5, __pyx_n_s_os); if (unlikely(!__pyx_t_5)) __PYX_ERR(0, 12, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_5); - __pyx_t_1 = __Pyx_PyObject_GetAttrStr(__pyx_t_5, __pyx_n_s_path); if (unlikely(!__pyx_t_1)) __PYX_ERR(0, 12, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_1); - __Pyx_DECREF(__pyx_t_5); __pyx_t_5 = 0; - __pyx_t_5 = __Pyx_PyObject_GetAttrStr(__pyx_t_1, __pyx_n_s_abspath); if (unlikely(!__pyx_t_5)) __PYX_ERR(0, 12, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_5); - __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0; - __Pyx_GetModuleGlobalName(__pyx_t_1, __pyx_n_s_file); if (unlikely(!__pyx_t_1)) __PYX_ERR(0, 12, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_1); - __pyx_t_3 = __Pyx_PyObject_CallOneArg(__pyx_t_5, __pyx_t_1); if (unlikely(!__pyx_t_3)) __PYX_ERR(0, 12, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_3); - __Pyx_DECREF(__pyx_t_5); __pyx_t_5 = 0; - __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0; - __pyx_t_1 = __Pyx_PyObject_CallOneArg(__pyx_t_4, __pyx_t_3); if (unlikely(!__pyx_t_1)) __PYX_ERR(0, 12, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_1); - __Pyx_DECREF(__pyx_t_4); __pyx_t_4 = 0; - __Pyx_DECREF(__pyx_t_3); __pyx_t_3 = 0; - __pyx_t_3 = PyNumber_Add(__pyx_t_1, __pyx_kp_u__5); if (unlikely(!__pyx_t_3)) __PYX_ERR(0, 12, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_3); - __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0; - __pyx_t_6 = __Pyx_PyObject_Append(__pyx_t_2, __pyx_t_3); if (unlikely(__pyx_t_6 == ((int)-1))) __PYX_ERR(0, 12, __pyx_L1_error) - __Pyx_DECREF(__pyx_t_2); __pyx_t_2 = 0; - __Pyx_DECREF(__pyx_t_3); __pyx_t_3 = 0; - - /* "pmercury/protocols/dtls_server.pyx":13 - * sys.path.append(os.path.dirname(os.path.abspath(__file__))) - * sys.path.append(os.path.dirname(os.path.abspath(__file__))+'/../') - * from pmercury.utils.tls_utils import * # <<<<<<<<<<<<<< - * from pmercury.utils.tls_constants import * - * from pmercury.protocols.protocol import Protocol - */ - __pyx_t_3 = PyList_New(1); if (unlikely(!__pyx_t_3)) __PYX_ERR(0, 13, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_3); - __Pyx_INCREF(__pyx_n_s__6); - __Pyx_GIVEREF(__pyx_n_s__6); - PyList_SET_ITEM(__pyx_t_3, 0, __pyx_n_s__6); - __pyx_t_2 = __Pyx_Import(__pyx_n_s_pmercury_utils_tls_utils, __pyx_t_3, 0); if (unlikely(!__pyx_t_2)) __PYX_ERR(0, 13, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_2); - __Pyx_DECREF(__pyx_t_3); __pyx_t_3 = 0; - if (__pyx_import_star(__pyx_t_2) < 0) __PYX_ERR(0, 13, __pyx_L1_error); - __Pyx_DECREF(__pyx_t_2); __pyx_t_2 = 0; - - /* "pmercury/protocols/dtls_server.pyx":14 - * sys.path.append(os.path.dirname(os.path.abspath(__file__))+'/../') - * from pmercury.utils.tls_utils import * - * from pmercury.utils.tls_constants import * # <<<<<<<<<<<<<< - * from pmercury.protocols.protocol import Protocol - * - */ - __pyx_t_2 = PyList_New(1); if (unlikely(!__pyx_t_2)) __PYX_ERR(0, 14, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_2); - __Pyx_INCREF(__pyx_n_s__6); - __Pyx_GIVEREF(__pyx_n_s__6); - PyList_SET_ITEM(__pyx_t_2, 0, __pyx_n_s__6); - __pyx_t_3 = __Pyx_Import(__pyx_n_s_pmercury_utils_tls_constants, __pyx_t_2, 0); if (unlikely(!__pyx_t_3)) __PYX_ERR(0, 14, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_3); - __Pyx_DECREF(__pyx_t_2); __pyx_t_2 = 0; - if (__pyx_import_star(__pyx_t_3) < 0) __PYX_ERR(0, 14, __pyx_L1_error); - __Pyx_DECREF(__pyx_t_3); __pyx_t_3 = 0; - - /* "pmercury/protocols/dtls_server.pyx":15 - * from pmercury.utils.tls_utils import * - * from pmercury.utils.tls_constants import * - * from pmercury.protocols.protocol import Protocol # <<<<<<<<<<<<<< - * - * import functools - */ - __pyx_t_3 = PyList_New(1); if (unlikely(!__pyx_t_3)) __PYX_ERR(0, 15, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_3); - __Pyx_INCREF(__pyx_n_s_Protocol); - __Pyx_GIVEREF(__pyx_n_s_Protocol); - PyList_SET_ITEM(__pyx_t_3, 0, __pyx_n_s_Protocol); - __pyx_t_2 = __Pyx_Import(__pyx_n_s_pmercury_protocols_protocol, __pyx_t_3, 0); if (unlikely(!__pyx_t_2)) __PYX_ERR(0, 15, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_2); - __Pyx_DECREF(__pyx_t_3); __pyx_t_3 = 0; - __pyx_t_3 = __Pyx_ImportFrom(__pyx_t_2, __pyx_n_s_Protocol); if (unlikely(!__pyx_t_3)) __PYX_ERR(0, 15, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_3); - if (PyDict_SetItem(__pyx_d, __pyx_n_s_Protocol, __pyx_t_3) < 0) __PYX_ERR(0, 15, __pyx_L1_error) - __Pyx_DECREF(__pyx_t_3); __pyx_t_3 = 0; - __Pyx_DECREF(__pyx_t_2); __pyx_t_2 = 0; - - /* "pmercury/protocols/dtls_server.pyx":17 - * from pmercury.protocols.protocol import Protocol - * - * import functools # <<<<<<<<<<<<<< - * - * from cython.operator cimport dereference as deref - */ - __pyx_t_2 = __Pyx_Import(__pyx_n_s_functools, 0, 0); if (unlikely(!__pyx_t_2)) __PYX_ERR(0, 17, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_2); - if (PyDict_SetItem(__pyx_d, __pyx_n_s_functools, __pyx_t_2) < 0) __PYX_ERR(0, 17, __pyx_L1_error) - __Pyx_DECREF(__pyx_t_2); __pyx_t_2 = 0; - - /* "pmercury/protocols/dtls_server.pyx":30 - * - * - * MAX_CACHED_RESULTS = 2**24 # <<<<<<<<<<<<<< - * - * - */ - if (PyDict_SetItem(__pyx_d, __pyx_n_s_MAX_CACHED_RESULTS, __pyx_int_16777216) < 0) __PYX_ERR(0, 30, __pyx_L1_error) - - /* "pmercury/protocols/dtls_server.pyx":33 - * - * - * class DTLS_Server(Protocol): # <<<<<<<<<<<<<< - * - * def __init__(self, fp_database=None, config=None): - */ - __Pyx_GetModuleGlobalName(__pyx_t_2, __pyx_n_s_Protocol); if (unlikely(!__pyx_t_2)) __PYX_ERR(0, 33, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_2); - __pyx_t_3 = PyTuple_New(1); if (unlikely(!__pyx_t_3)) __PYX_ERR(0, 33, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_3); - __Pyx_GIVEREF(__pyx_t_2); - PyTuple_SET_ITEM(__pyx_t_3, 0, __pyx_t_2); - __pyx_t_2 = 0; - __pyx_t_2 = __Pyx_CalculateMetaclass(NULL, __pyx_t_3); if (unlikely(!__pyx_t_2)) __PYX_ERR(0, 33, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_2); - __pyx_t_1 = __Pyx_Py3MetaclassPrepare(__pyx_t_2, __pyx_t_3, __pyx_n_s_DTLS_Server, __pyx_n_s_DTLS_Server, (PyObject *) NULL, __pyx_n_s_pmercury_protocols_dtls_server, (PyObject *) NULL); if (unlikely(!__pyx_t_1)) __PYX_ERR(0, 33, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_1); - - /* "pmercury/protocols/dtls_server.pyx":35 - * class DTLS_Server(Protocol): - * - * def __init__(self, fp_database=None, config=None): # <<<<<<<<<<<<<< - * # populate fingerprint databases - * self.fp_db = {} - */ - __pyx_t_4 = __Pyx_CyFunction_NewEx(&__pyx_mdef_8pmercury_9protocols_11dtls_server_11DTLS_Server_1__init__, 0, __pyx_n_s_DTLS_Server___init, NULL, __pyx_n_s_pmercury_protocols_dtls_server, __pyx_d, ((PyObject *)__pyx_codeobj__8)); if (unlikely(!__pyx_t_4)) __PYX_ERR(0, 35, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_4); - __Pyx_CyFunction_SetDefaultsTuple(__pyx_t_4, __pyx_tuple__9); - if (__Pyx_SetNameInClass(__pyx_t_1, __pyx_n_s_init, __pyx_t_4) < 0) __PYX_ERR(0, 35, __pyx_L1_error) - __Pyx_DECREF(__pyx_t_4); __pyx_t_4 = 0; - - /* "pmercury/protocols/dtls_server.pyx":41 - * - * @staticmethod - * def proto_identify(data, offset, data_len): # <<<<<<<<<<<<<< - * if data_len-offset < 27: - * return False - */ - __pyx_t_4 = __Pyx_CyFunction_NewEx(&__pyx_mdef_8pmercury_9protocols_11dtls_server_11DTLS_Server_3proto_identify, __Pyx_CYFUNCTION_STATICMETHOD, __pyx_n_s_DTLS_Server_proto_identify, NULL, __pyx_n_s_pmercury_protocols_dtls_server, __pyx_d, ((PyObject *)__pyx_codeobj__11)); if (unlikely(!__pyx_t_4)) __PYX_ERR(0, 41, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_4); - - /* "pmercury/protocols/dtls_server.pyx":40 - * - * - * @staticmethod # <<<<<<<<<<<<<< - * def proto_identify(data, offset, data_len): - * if data_len-offset < 27: - */ - __pyx_t_5 = __Pyx_PyObject_CallOneArg(__pyx_builtin_staticmethod, __pyx_t_4); if (unlikely(!__pyx_t_5)) __PYX_ERR(0, 40, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_5); - __Pyx_DECREF(__pyx_t_4); __pyx_t_4 = 0; - if (__Pyx_SetNameInClass(__pyx_t_1, __pyx_n_s_proto_identify, __pyx_t_5) < 0) __PYX_ERR(0, 41, __pyx_L1_error) - __Pyx_DECREF(__pyx_t_5); __pyx_t_5 = 0; - - /* "pmercury/protocols/dtls_server.pyx":55 - * - * @staticmethod - * def fingerprint(bytes data, unsigned int offset, unsigned int data_len): # <<<<<<<<<<<<<< - * cdef unsigned char *buf = data - * offset += 13 - */ - __pyx_t_5 = __Pyx_CyFunction_NewEx(&__pyx_mdef_8pmercury_9protocols_11dtls_server_11DTLS_Server_5fingerprint, __Pyx_CYFUNCTION_STATICMETHOD, __pyx_n_s_DTLS_Server_fingerprint, NULL, __pyx_n_s_pmercury_protocols_dtls_server, __pyx_d, ((PyObject *)__pyx_codeobj__13)); if (unlikely(!__pyx_t_5)) __PYX_ERR(0, 55, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_5); - - /* "pmercury/protocols/dtls_server.pyx":54 - * - * - * @staticmethod # <<<<<<<<<<<<<< - * def fingerprint(bytes data, unsigned int offset, unsigned int data_len): - * cdef unsigned char *buf = data - */ - __pyx_t_4 = __Pyx_PyObject_CallOneArg(__pyx_builtin_staticmethod, __pyx_t_5); if (unlikely(!__pyx_t_4)) __PYX_ERR(0, 54, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_4); - __Pyx_DECREF(__pyx_t_5); __pyx_t_5 = 0; - if (__Pyx_SetNameInClass(__pyx_t_1, __pyx_n_s_fingerprint, __pyx_t_4) < 0) __PYX_ERR(0, 55, __pyx_L1_error) - __Pyx_DECREF(__pyx_t_4); __pyx_t_4 = 0; - - /* "pmercury/protocols/dtls_server.pyx":106 - * - * - * @functools.lru_cache(maxsize=MAX_CACHED_RESULTS) # <<<<<<<<<<<<<< - * def get_database_entry(self, fp_str, approx_fp_str): - * return None - */ - __Pyx_GetModuleGlobalName(__pyx_t_5, __pyx_n_s_functools); if (unlikely(!__pyx_t_5)) __PYX_ERR(0, 106, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_5); - __pyx_t_7 = __Pyx_PyObject_GetAttrStr(__pyx_t_5, __pyx_n_s_lru_cache); if (unlikely(!__pyx_t_7)) __PYX_ERR(0, 106, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_7); - __Pyx_DECREF(__pyx_t_5); __pyx_t_5 = 0; - __pyx_t_5 = __Pyx_PyDict_NewPresized(1); if (unlikely(!__pyx_t_5)) __PYX_ERR(0, 106, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_5); - __Pyx_GetModuleGlobalName(__pyx_t_8, __pyx_n_s_MAX_CACHED_RESULTS); if (unlikely(!__pyx_t_8)) __PYX_ERR(0, 106, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_8); - if (PyDict_SetItem(__pyx_t_5, __pyx_n_s_maxsize, __pyx_t_8) < 0) __PYX_ERR(0, 106, __pyx_L1_error) - __Pyx_DECREF(__pyx_t_8); __pyx_t_8 = 0; - __pyx_t_8 = __Pyx_PyObject_Call(__pyx_t_7, __pyx_empty_tuple, __pyx_t_5); if (unlikely(!__pyx_t_8)) __PYX_ERR(0, 106, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_8); - __Pyx_DECREF(__pyx_t_7); __pyx_t_7 = 0; - __Pyx_DECREF(__pyx_t_5); __pyx_t_5 = 0; - - /* "pmercury/protocols/dtls_server.pyx":107 - * - * @functools.lru_cache(maxsize=MAX_CACHED_RESULTS) - * def get_database_entry(self, fp_str, approx_fp_str): # <<<<<<<<<<<<<< - * return None - * - */ - __pyx_t_5 = __Pyx_CyFunction_NewEx(&__pyx_mdef_8pmercury_9protocols_11dtls_server_11DTLS_Server_7get_database_entry, 0, __pyx_n_s_DTLS_Server_get_database_entry, NULL, __pyx_n_s_pmercury_protocols_dtls_server, __pyx_d, ((PyObject *)__pyx_codeobj__15)); if (unlikely(!__pyx_t_5)) __PYX_ERR(0, 107, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_5); - __pyx_t_7 = NULL; - if (CYTHON_UNPACK_METHODS && unlikely(PyMethod_Check(__pyx_t_8))) { - __pyx_t_7 = PyMethod_GET_SELF(__pyx_t_8); - if (likely(__pyx_t_7)) { - PyObject* function = PyMethod_GET_FUNCTION(__pyx_t_8); - __Pyx_INCREF(__pyx_t_7); - __Pyx_INCREF(function); - __Pyx_DECREF_SET(__pyx_t_8, function); - } - } - __pyx_t_4 = (__pyx_t_7) ? __Pyx_PyObject_Call2Args(__pyx_t_8, __pyx_t_7, __pyx_t_5) : __Pyx_PyObject_CallOneArg(__pyx_t_8, __pyx_t_5); - __Pyx_XDECREF(__pyx_t_7); __pyx_t_7 = 0; - __Pyx_DECREF(__pyx_t_5); __pyx_t_5 = 0; - if (unlikely(!__pyx_t_4)) __PYX_ERR(0, 106, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_4); - __Pyx_DECREF(__pyx_t_8); __pyx_t_8 = 0; - if (__Pyx_SetNameInClass(__pyx_t_1, __pyx_n_s_get_database_entry, __pyx_t_4) < 0) __PYX_ERR(0, 107, __pyx_L1_error) - __Pyx_DECREF(__pyx_t_4); __pyx_t_4 = 0; - - /* "pmercury/protocols/dtls_server.pyx":111 - * - * - * def get_human_readable(self, fp_str_): # <<<<<<<<<<<<<< - * return None - * - */ - __pyx_t_4 = __Pyx_CyFunction_NewEx(&__pyx_mdef_8pmercury_9protocols_11dtls_server_11DTLS_Server_9get_human_readable, 0, __pyx_n_s_DTLS_Server_get_human_readable, NULL, __pyx_n_s_pmercury_protocols_dtls_server, __pyx_d, ((PyObject *)__pyx_codeobj__17)); if (unlikely(!__pyx_t_4)) __PYX_ERR(0, 111, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_4); - if (__Pyx_SetNameInClass(__pyx_t_1, __pyx_n_s_get_human_readable, __pyx_t_4) < 0) __PYX_ERR(0, 111, __pyx_L1_error) - __Pyx_DECREF(__pyx_t_4); __pyx_t_4 = 0; - - /* "pmercury/protocols/dtls_server.pyx":115 - * - * - * def proc_identify(self, fp_str_, context_, dst_ip, dst_port, list_procs=5): # <<<<<<<<<<<<<< - * return None - * - */ - __pyx_t_4 = __Pyx_CyFunction_NewEx(&__pyx_mdef_8pmercury_9protocols_11dtls_server_11DTLS_Server_11proc_identify, 0, __pyx_n_s_DTLS_Server_proc_identify, NULL, __pyx_n_s_pmercury_protocols_dtls_server, __pyx_d, ((PyObject *)__pyx_codeobj__19)); if (unlikely(!__pyx_t_4)) __PYX_ERR(0, 115, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_4); - __Pyx_CyFunction_SetDefaultsTuple(__pyx_t_4, __pyx_tuple__20); - if (__Pyx_SetNameInClass(__pyx_t_1, __pyx_n_s_proc_identify, __pyx_t_4) < 0) __PYX_ERR(0, 115, __pyx_L1_error) - __Pyx_DECREF(__pyx_t_4); __pyx_t_4 = 0; - - /* "pmercury/protocols/dtls_server.pyx":33 - * - * - * class DTLS_Server(Protocol): # <<<<<<<<<<<<<< - * - * def __init__(self, fp_database=None, config=None): - */ - __pyx_t_4 = __Pyx_Py3ClassCreate(__pyx_t_2, __pyx_n_s_DTLS_Server, __pyx_t_3, __pyx_t_1, NULL, 0, 0); if (unlikely(!__pyx_t_4)) __PYX_ERR(0, 33, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_4); - if (PyDict_SetItem(__pyx_d, __pyx_n_s_DTLS_Server, __pyx_t_4) < 0) __PYX_ERR(0, 33, __pyx_L1_error) - __Pyx_DECREF(__pyx_t_4); __pyx_t_4 = 0; - __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0; - __Pyx_DECREF(__pyx_t_2); __pyx_t_2 = 0; - __Pyx_DECREF(__pyx_t_3); __pyx_t_3 = 0; - - /* "pmercury/protocols/dtls_server.pyx":1 - * #cython: language_level=3, wraparound=False, cdivision=True, infer_types=True, initializedcheck=False, c_string_type=bytes, embedsignature=False # <<<<<<<<<<<<<< - * - * """ - */ - __pyx_t_3 = __Pyx_PyDict_NewPresized(0); if (unlikely(!__pyx_t_3)) __PYX_ERR(0, 1, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_3); - if (PyDict_SetItem(__pyx_d, __pyx_n_s_test, __pyx_t_3) < 0) __PYX_ERR(0, 1, __pyx_L1_error) - __Pyx_DECREF(__pyx_t_3); __pyx_t_3 = 0; - - /*--- Wrapped vars code ---*/ - - goto __pyx_L0; - __pyx_L1_error:; - __Pyx_XDECREF(__pyx_t_1); - __Pyx_XDECREF(__pyx_t_2); - __Pyx_XDECREF(__pyx_t_3); - __Pyx_XDECREF(__pyx_t_4); - __Pyx_XDECREF(__pyx_t_5); - __Pyx_XDECREF(__pyx_t_7); - __Pyx_XDECREF(__pyx_t_8); - if (__pyx_m) { - if (__pyx_d) { - __Pyx_AddTraceback("init pmercury.protocols.dtls_server", __pyx_clineno, __pyx_lineno, __pyx_filename); - } - Py_CLEAR(__pyx_m); - } else if (!PyErr_Occurred()) { - PyErr_SetString(PyExc_ImportError, "init pmercury.protocols.dtls_server"); - } - __pyx_L0:; - __Pyx_RefNannyFinishContext(); - #if CYTHON_PEP489_MULTI_PHASE_INIT - return (__pyx_m != NULL) ? 0 : -1; - #elif PY_MAJOR_VERSION >= 3 - return __pyx_m; - #else - return; - #endif -} - -/* --- Runtime support code --- */ -/* Refnanny */ -#if CYTHON_REFNANNY -static __Pyx_RefNannyAPIStruct *__Pyx_RefNannyImportAPI(const char *modname) { - PyObject *m = NULL, *p = NULL; - void *r = NULL; - m = PyImport_ImportModule(modname); - if (!m) goto end; - p = PyObject_GetAttrString(m, "RefNannyAPI"); - if (!p) goto end; - r = PyLong_AsVoidPtr(p); -end: - Py_XDECREF(p); - Py_XDECREF(m); - return (__Pyx_RefNannyAPIStruct *)r; -} -#endif - -/* PyObjectGetAttrStr */ -#if CYTHON_USE_TYPE_SLOTS -static CYTHON_INLINE PyObject* __Pyx_PyObject_GetAttrStr(PyObject* obj, PyObject* attr_name) { - PyTypeObject* tp = Py_TYPE(obj); - if (likely(tp->tp_getattro)) - return tp->tp_getattro(obj, attr_name); -#if PY_MAJOR_VERSION < 3 - if (likely(tp->tp_getattr)) - return tp->tp_getattr(obj, PyString_AS_STRING(attr_name)); -#endif - return PyObject_GetAttr(obj, attr_name); -} -#endif - -/* GetBuiltinName */ -static PyObject *__Pyx_GetBuiltinName(PyObject *name) { - PyObject* result = __Pyx_PyObject_GetAttrStr(__pyx_b, name); - if (unlikely(!result)) { - PyErr_Format(PyExc_NameError, -#if PY_MAJOR_VERSION >= 3 - "name '%U' is not defined", name); -#else - "name '%.200s' is not defined", PyString_AS_STRING(name)); -#endif - } - return result; -} - -/* RaiseDoubleKeywords */ -static void __Pyx_RaiseDoubleKeywordsError( - const char* func_name, - PyObject* kw_name) -{ - PyErr_Format(PyExc_TypeError, - #if PY_MAJOR_VERSION >= 3 - "%s() got multiple values for keyword argument '%U'", func_name, kw_name); - #else - "%s() got multiple values for keyword argument '%s'", func_name, - PyString_AsString(kw_name)); - #endif -} - -/* ParseKeywords */ -static int __Pyx_ParseOptionalKeywords( - PyObject *kwds, - PyObject **argnames[], - PyObject *kwds2, - PyObject *values[], - Py_ssize_t num_pos_args, - const char* function_name) -{ - PyObject *key = 0, *value = 0; - Py_ssize_t pos = 0; - PyObject*** name; - PyObject*** first_kw_arg = argnames + num_pos_args; - while (PyDict_Next(kwds, &pos, &key, &value)) { - name = first_kw_arg; - while (*name && (**name != key)) name++; - if (*name) { - values[name-argnames] = value; - continue; - } - name = first_kw_arg; - #if PY_MAJOR_VERSION < 3 - if (likely(PyString_CheckExact(key)) || likely(PyString_Check(key))) { - while (*name) { - if ((CYTHON_COMPILING_IN_PYPY || PyString_GET_SIZE(**name) == PyString_GET_SIZE(key)) - && _PyString_Eq(**name, key)) { - values[name-argnames] = value; - break; - } - name++; - } - if (*name) continue; - else { - PyObject*** argname = argnames; - while (argname != first_kw_arg) { - if ((**argname == key) || ( - (CYTHON_COMPILING_IN_PYPY || PyString_GET_SIZE(**argname) == PyString_GET_SIZE(key)) - && _PyString_Eq(**argname, key))) { - goto arg_passed_twice; - } - argname++; - } - } - } else - #endif - if (likely(PyUnicode_Check(key))) { - while (*name) { - int cmp = (**name == key) ? 0 : - #if !CYTHON_COMPILING_IN_PYPY && PY_MAJOR_VERSION >= 3 - (PyUnicode_GET_SIZE(**name) != PyUnicode_GET_SIZE(key)) ? 1 : - #endif - PyUnicode_Compare(**name, key); - if (cmp < 0 && unlikely(PyErr_Occurred())) goto bad; - if (cmp == 0) { - values[name-argnames] = value; - break; - } - name++; - } - if (*name) continue; - else { - PyObject*** argname = argnames; - while (argname != first_kw_arg) { - int cmp = (**argname == key) ? 0 : - #if !CYTHON_COMPILING_IN_PYPY && PY_MAJOR_VERSION >= 3 - (PyUnicode_GET_SIZE(**argname) != PyUnicode_GET_SIZE(key)) ? 1 : - #endif - PyUnicode_Compare(**argname, key); - if (cmp < 0 && unlikely(PyErr_Occurred())) goto bad; - if (cmp == 0) goto arg_passed_twice; - argname++; - } - } - } else - goto invalid_keyword_type; - if (kwds2) { - if (unlikely(PyDict_SetItem(kwds2, key, value))) goto bad; - } else { - goto invalid_keyword; - } - } - return 0; -arg_passed_twice: - __Pyx_RaiseDoubleKeywordsError(function_name, key); - goto bad; -invalid_keyword_type: - PyErr_Format(PyExc_TypeError, - "%.200s() keywords must be strings", function_name); - goto bad; -invalid_keyword: - PyErr_Format(PyExc_TypeError, - #if PY_MAJOR_VERSION < 3 - "%.200s() got an unexpected keyword argument '%.200s'", - function_name, PyString_AsString(key)); - #else - "%s() got an unexpected keyword argument '%U'", - function_name, key); - #endif -bad: - return -1; -} - -/* RaiseArgTupleInvalid */ -static void __Pyx_RaiseArgtupleInvalid( - const char* func_name, - int exact, - Py_ssize_t num_min, - Py_ssize_t num_max, - Py_ssize_t num_found) -{ - Py_ssize_t num_expected; - const char *more_or_less; - if (num_found < num_min) { - num_expected = num_min; - more_or_less = "at least"; - } else { - num_expected = num_max; - more_or_less = "at most"; - } - if (exact) { - more_or_less = "exactly"; - } - PyErr_Format(PyExc_TypeError, - "%.200s() takes %.8s %" CYTHON_FORMAT_SSIZE_T "d positional argument%.1s (%" CYTHON_FORMAT_SSIZE_T "d given)", - func_name, more_or_less, num_expected, - (num_expected == 1) ? "" : "s", num_found); -} - -/* PyObjectSetAttrStr */ -#if CYTHON_USE_TYPE_SLOTS -static CYTHON_INLINE int __Pyx_PyObject_SetAttrStr(PyObject* obj, PyObject* attr_name, PyObject* value) { - PyTypeObject* tp = Py_TYPE(obj); - if (likely(tp->tp_setattro)) - return tp->tp_setattro(obj, attr_name, value); -#if PY_MAJOR_VERSION < 3 - if (likely(tp->tp_setattr)) - return tp->tp_setattr(obj, PyString_AS_STRING(attr_name), value); -#endif - return PyObject_SetAttr(obj, attr_name, value); -} -#endif - -/* PyIntCompare */ -static CYTHON_INLINE PyObject* __Pyx_PyInt_EqObjC(PyObject *op1, PyObject *op2, CYTHON_UNUSED long intval, CYTHON_UNUSED long inplace) { - if (op1 == op2) { - Py_RETURN_TRUE; - } - #if PY_MAJOR_VERSION < 3 - if (likely(PyInt_CheckExact(op1))) { - const long b = intval; - long a = PyInt_AS_LONG(op1); - if (a == b) Py_RETURN_TRUE; else Py_RETURN_FALSE; - } - #endif - #if CYTHON_USE_PYLONG_INTERNALS - if (likely(PyLong_CheckExact(op1))) { - int unequal; - unsigned long uintval; - Py_ssize_t size = Py_SIZE(op1); - const digit* digits = ((PyLongObject*)op1)->ob_digit; - if (intval == 0) { - if (size == 0) Py_RETURN_TRUE; else Py_RETURN_FALSE; - } else if (intval < 0) { - if (size >= 0) - Py_RETURN_FALSE; - intval = -intval; - size = -size; - } else { - if (size <= 0) - Py_RETURN_FALSE; - } - uintval = (unsigned long) intval; -#if PyLong_SHIFT * 4 < SIZEOF_LONG*8 - if (uintval >> (PyLong_SHIFT * 4)) { - unequal = (size != 5) || (digits[0] != (uintval & (unsigned long) PyLong_MASK)) - | (digits[1] != ((uintval >> (1 * PyLong_SHIFT)) & (unsigned long) PyLong_MASK)) | (digits[2] != ((uintval >> (2 * PyLong_SHIFT)) & (unsigned long) PyLong_MASK)) | (digits[3] != ((uintval >> (3 * PyLong_SHIFT)) & (unsigned long) PyLong_MASK)) | (digits[4] != ((uintval >> (4 * PyLong_SHIFT)) & (unsigned long) PyLong_MASK)); - } else -#endif -#if PyLong_SHIFT * 3 < SIZEOF_LONG*8 - if (uintval >> (PyLong_SHIFT * 3)) { - unequal = (size != 4) || (digits[0] != (uintval & (unsigned long) PyLong_MASK)) - | (digits[1] != ((uintval >> (1 * PyLong_SHIFT)) & (unsigned long) PyLong_MASK)) | (digits[2] != ((uintval >> (2 * PyLong_SHIFT)) & (unsigned long) PyLong_MASK)) | (digits[3] != ((uintval >> (3 * PyLong_SHIFT)) & (unsigned long) PyLong_MASK)); - } else -#endif -#if PyLong_SHIFT * 2 < SIZEOF_LONG*8 - if (uintval >> (PyLong_SHIFT * 2)) { - unequal = (size != 3) || (digits[0] != (uintval & (unsigned long) PyLong_MASK)) - | (digits[1] != ((uintval >> (1 * PyLong_SHIFT)) & (unsigned long) PyLong_MASK)) | (digits[2] != ((uintval >> (2 * PyLong_SHIFT)) & (unsigned long) PyLong_MASK)); - } else -#endif -#if PyLong_SHIFT * 1 < SIZEOF_LONG*8 - if (uintval >> (PyLong_SHIFT * 1)) { - unequal = (size != 2) || (digits[0] != (uintval & (unsigned long) PyLong_MASK)) - | (digits[1] != ((uintval >> (1 * PyLong_SHIFT)) & (unsigned long) PyLong_MASK)); - } else -#endif - unequal = (size != 1) || (((unsigned long) digits[0]) != (uintval & (unsigned long) PyLong_MASK)); - if (unequal == 0) Py_RETURN_TRUE; else Py_RETURN_FALSE; - } - #endif - if (PyFloat_CheckExact(op1)) { - const long b = intval; - double a = PyFloat_AS_DOUBLE(op1); - if ((double)a == (double)b) Py_RETURN_TRUE; else Py_RETURN_FALSE; - } - return ( - PyObject_RichCompare(op1, op2, Py_EQ)); -} - -/* GetItemInt */ -static PyObject *__Pyx_GetItemInt_Generic(PyObject *o, PyObject* j) { - PyObject *r; - if (!j) return NULL; - r = PyObject_GetItem(o, j); - Py_DECREF(j); - return r; -} -static CYTHON_INLINE PyObject *__Pyx_GetItemInt_List_Fast(PyObject *o, Py_ssize_t i, - CYTHON_NCP_UNUSED int wraparound, - CYTHON_NCP_UNUSED int boundscheck) { -#if CYTHON_ASSUME_SAFE_MACROS && !CYTHON_AVOID_BORROWED_REFS - Py_ssize_t wrapped_i = i; - if (wraparound & unlikely(i < 0)) { - wrapped_i += PyList_GET_SIZE(o); - } - if ((!boundscheck) || likely(__Pyx_is_valid_index(wrapped_i, PyList_GET_SIZE(o)))) { - PyObject *r = PyList_GET_ITEM(o, wrapped_i); - Py_INCREF(r); - return r; - } - return __Pyx_GetItemInt_Generic(o, PyInt_FromSsize_t(i)); -#else - return PySequence_GetItem(o, i); -#endif -} -static CYTHON_INLINE PyObject *__Pyx_GetItemInt_Tuple_Fast(PyObject *o, Py_ssize_t i, - CYTHON_NCP_UNUSED int wraparound, - CYTHON_NCP_UNUSED int boundscheck) { -#if CYTHON_ASSUME_SAFE_MACROS && !CYTHON_AVOID_BORROWED_REFS - Py_ssize_t wrapped_i = i; - if (wraparound & unlikely(i < 0)) { - wrapped_i += PyTuple_GET_SIZE(o); - } - if ((!boundscheck) || likely(__Pyx_is_valid_index(wrapped_i, PyTuple_GET_SIZE(o)))) { - PyObject *r = PyTuple_GET_ITEM(o, wrapped_i); - Py_INCREF(r); - return r; - } - return __Pyx_GetItemInt_Generic(o, PyInt_FromSsize_t(i)); -#else - return PySequence_GetItem(o, i); -#endif -} -static CYTHON_INLINE PyObject *__Pyx_GetItemInt_Fast(PyObject *o, Py_ssize_t i, int is_list, - CYTHON_NCP_UNUSED int wraparound, - CYTHON_NCP_UNUSED int boundscheck) { -#if CYTHON_ASSUME_SAFE_MACROS && !CYTHON_AVOID_BORROWED_REFS && CYTHON_USE_TYPE_SLOTS - if (is_list || PyList_CheckExact(o)) { - Py_ssize_t n = ((!wraparound) | likely(i >= 0)) ? i : i + PyList_GET_SIZE(o); - if ((!boundscheck) || (likely(__Pyx_is_valid_index(n, PyList_GET_SIZE(o))))) { - PyObject *r = PyList_GET_ITEM(o, n); - Py_INCREF(r); - return r; - } - } - else if (PyTuple_CheckExact(o)) { - Py_ssize_t n = ((!wraparound) | likely(i >= 0)) ? i : i + PyTuple_GET_SIZE(o); - if ((!boundscheck) || likely(__Pyx_is_valid_index(n, PyTuple_GET_SIZE(o)))) { - PyObject *r = PyTuple_GET_ITEM(o, n); - Py_INCREF(r); - return r; - } - } else { - PySequenceMethods *m = Py_TYPE(o)->tp_as_sequence; - if (likely(m && m->sq_item)) { - if (wraparound && unlikely(i < 0) && likely(m->sq_length)) { - Py_ssize_t l = m->sq_length(o); - if (likely(l >= 0)) { - i += l; - } else { - if (!PyErr_ExceptionMatches(PyExc_OverflowError)) - return NULL; - PyErr_Clear(); - } - } - return m->sq_item(o, i); - } - } -#else - if (is_list || PySequence_Check(o)) { - return PySequence_GetItem(o, i); - } -#endif - return __Pyx_GetItemInt_Generic(o, PyInt_FromSsize_t(i)); -} - -/* ObjectGetItem */ -#if CYTHON_USE_TYPE_SLOTS -static PyObject *__Pyx_PyObject_GetIndex(PyObject *obj, PyObject* index) { - PyObject *runerr; - Py_ssize_t key_value; - PySequenceMethods *m = Py_TYPE(obj)->tp_as_sequence; - if (unlikely(!(m && m->sq_item))) { - PyErr_Format(PyExc_TypeError, "'%.200s' object is not subscriptable", Py_TYPE(obj)->tp_name); - return NULL; - } - key_value = __Pyx_PyIndex_AsSsize_t(index); - if (likely(key_value != -1 || !(runerr = PyErr_Occurred()))) { - return __Pyx_GetItemInt_Fast(obj, key_value, 0, 1, 1); - } - if (PyErr_GivenExceptionMatches(runerr, PyExc_OverflowError)) { - PyErr_Clear(); - PyErr_Format(PyExc_IndexError, "cannot fit '%.200s' into an index-sized integer", Py_TYPE(index)->tp_name); - } - return NULL; -} -static PyObject *__Pyx_PyObject_GetItem(PyObject *obj, PyObject* key) { - PyMappingMethods *m = Py_TYPE(obj)->tp_as_mapping; - if (likely(m && m->mp_subscript)) { - return m->mp_subscript(obj, key); - } - return __Pyx_PyObject_GetIndex(obj, key); -} -#endif - -/* PyIntBinop */ -#if !CYTHON_COMPILING_IN_PYPY -static PyObject* __Pyx_PyInt_AddObjC(PyObject *op1, PyObject *op2, CYTHON_UNUSED long intval, int inplace, int zerodivision_check) { - (void)inplace; - (void)zerodivision_check; - #if PY_MAJOR_VERSION < 3 - if (likely(PyInt_CheckExact(op1))) { - const long b = intval; - long x; - long a = PyInt_AS_LONG(op1); - x = (long)((unsigned long)a + b); - if (likely((x^a) >= 0 || (x^b) >= 0)) - return PyInt_FromLong(x); - return PyLong_Type.tp_as_number->nb_add(op1, op2); - } - #endif - #if CYTHON_USE_PYLONG_INTERNALS - if (likely(PyLong_CheckExact(op1))) { - const long b = intval; - long a, x; -#ifdef HAVE_LONG_LONG - const PY_LONG_LONG llb = intval; - PY_LONG_LONG lla, llx; -#endif - const digit* digits = ((PyLongObject*)op1)->ob_digit; - const Py_ssize_t size = Py_SIZE(op1); - if (likely(__Pyx_sst_abs(size) <= 1)) { - a = likely(size) ? digits[0] : 0; - if (size == -1) a = -a; - } else { - switch (size) { - case -2: - if (8 * sizeof(long) - 1 > 2 * PyLong_SHIFT) { - a = -(long) (((((unsigned long)digits[1]) << PyLong_SHIFT) | (unsigned long)digits[0])); - break; -#ifdef HAVE_LONG_LONG - } else if (8 * sizeof(PY_LONG_LONG) - 1 > 2 * PyLong_SHIFT) { - lla = -(PY_LONG_LONG) (((((unsigned PY_LONG_LONG)digits[1]) << PyLong_SHIFT) | (unsigned PY_LONG_LONG)digits[0])); - goto long_long; -#endif - } - CYTHON_FALLTHROUGH; - case 2: - if (8 * sizeof(long) - 1 > 2 * PyLong_SHIFT) { - a = (long) (((((unsigned long)digits[1]) << PyLong_SHIFT) | (unsigned long)digits[0])); - break; -#ifdef HAVE_LONG_LONG - } else if (8 * sizeof(PY_LONG_LONG) - 1 > 2 * PyLong_SHIFT) { - lla = (PY_LONG_LONG) (((((unsigned PY_LONG_LONG)digits[1]) << PyLong_SHIFT) | (unsigned PY_LONG_LONG)digits[0])); - goto long_long; -#endif - } - CYTHON_FALLTHROUGH; - case -3: - if (8 * sizeof(long) - 1 > 3 * PyLong_SHIFT) { - a = -(long) (((((((unsigned long)digits[2]) << PyLong_SHIFT) | (unsigned long)digits[1]) << PyLong_SHIFT) | (unsigned long)digits[0])); - break; -#ifdef HAVE_LONG_LONG - } else if (8 * sizeof(PY_LONG_LONG) - 1 > 3 * PyLong_SHIFT) { - lla = -(PY_LONG_LONG) (((((((unsigned PY_LONG_LONG)digits[2]) << PyLong_SHIFT) | (unsigned PY_LONG_LONG)digits[1]) << PyLong_SHIFT) | (unsigned PY_LONG_LONG)digits[0])); - goto long_long; -#endif - } - CYTHON_FALLTHROUGH; - case 3: - if (8 * sizeof(long) - 1 > 3 * PyLong_SHIFT) { - a = (long) (((((((unsigned long)digits[2]) << PyLong_SHIFT) | (unsigned long)digits[1]) << PyLong_SHIFT) | (unsigned long)digits[0])); - break; -#ifdef HAVE_LONG_LONG - } else if (8 * sizeof(PY_LONG_LONG) - 1 > 3 * PyLong_SHIFT) { - lla = (PY_LONG_LONG) (((((((unsigned PY_LONG_LONG)digits[2]) << PyLong_SHIFT) | (unsigned PY_LONG_LONG)digits[1]) << PyLong_SHIFT) | (unsigned PY_LONG_LONG)digits[0])); - goto long_long; -#endif - } - CYTHON_FALLTHROUGH; - case -4: - if (8 * sizeof(long) - 1 > 4 * PyLong_SHIFT) { - a = -(long) (((((((((unsigned long)digits[3]) << PyLong_SHIFT) | (unsigned long)digits[2]) << PyLong_SHIFT) | (unsigned long)digits[1]) << PyLong_SHIFT) | (unsigned long)digits[0])); - break; -#ifdef HAVE_LONG_LONG - } else if (8 * sizeof(PY_LONG_LONG) - 1 > 4 * PyLong_SHIFT) { - lla = -(PY_LONG_LONG) (((((((((unsigned PY_LONG_LONG)digits[3]) << PyLong_SHIFT) | (unsigned PY_LONG_LONG)digits[2]) << PyLong_SHIFT) | (unsigned PY_LONG_LONG)digits[1]) << PyLong_SHIFT) | (unsigned PY_LONG_LONG)digits[0])); - goto long_long; -#endif - } - CYTHON_FALLTHROUGH; - case 4: - if (8 * sizeof(long) - 1 > 4 * PyLong_SHIFT) { - a = (long) (((((((((unsigned long)digits[3]) << PyLong_SHIFT) | (unsigned long)digits[2]) << PyLong_SHIFT) | (unsigned long)digits[1]) << PyLong_SHIFT) | (unsigned long)digits[0])); - break; -#ifdef HAVE_LONG_LONG - } else if (8 * sizeof(PY_LONG_LONG) - 1 > 4 * PyLong_SHIFT) { - lla = (PY_LONG_LONG) (((((((((unsigned PY_LONG_LONG)digits[3]) << PyLong_SHIFT) | (unsigned PY_LONG_LONG)digits[2]) << PyLong_SHIFT) | (unsigned PY_LONG_LONG)digits[1]) << PyLong_SHIFT) | (unsigned PY_LONG_LONG)digits[0])); - goto long_long; -#endif - } - CYTHON_FALLTHROUGH; - default: return PyLong_Type.tp_as_number->nb_add(op1, op2); - } - } - x = a + b; - return PyLong_FromLong(x); -#ifdef HAVE_LONG_LONG - long_long: - llx = lla + llb; - return PyLong_FromLongLong(llx); -#endif - - - } - #endif - if (PyFloat_CheckExact(op1)) { - const long b = intval; - double a = PyFloat_AS_DOUBLE(op1); - double result; - PyFPE_START_PROTECT("add", return NULL) - result = ((double)a) + (double)b; - PyFPE_END_PROTECT(result) - return PyFloat_FromDouble(result); - } - return (inplace ? PyNumber_InPlaceAdd : PyNumber_Add)(op1, op2); -} -#endif - -/* ArgTypeTest */ -static int __Pyx__ArgTypeTest(PyObject *obj, PyTypeObject *type, const char *name, int exact) -{ - if (unlikely(!type)) { - PyErr_SetString(PyExc_SystemError, "Missing type object"); - return 0; - } - else if (exact) { - #if PY_MAJOR_VERSION == 2 - if ((type == &PyBaseString_Type) && likely(__Pyx_PyBaseString_CheckExact(obj))) return 1; - #endif - } - else { - if (likely(__Pyx_TypeCheck(obj, type))) return 1; - } - PyErr_Format(PyExc_TypeError, - "Argument '%.200s' has incorrect type (expected %.200s, got %.200s)", - name, type->tp_name, Py_TYPE(obj)->tp_name); - return 0; -} - -/* CIntToDigits */ -static const char DIGIT_PAIRS_10[2*10*10+1] = { - "00010203040506070809" - "10111213141516171819" - "20212223242526272829" - "30313233343536373839" - "40414243444546474849" - "50515253545556575859" - "60616263646566676869" - "70717273747576777879" - "80818283848586878889" - "90919293949596979899" -}; -static const char DIGIT_PAIRS_8[2*8*8+1] = { - "0001020304050607" - "1011121314151617" - "2021222324252627" - "3031323334353637" - "4041424344454647" - "5051525354555657" - "6061626364656667" - "7071727374757677" -}; -static const char DIGITS_HEX[2*16+1] = { - "0123456789abcdef" - "0123456789ABCDEF" -}; - -/* BuildPyUnicode */ -static PyObject* __Pyx_PyUnicode_BuildFromAscii(Py_ssize_t ulength, char* chars, int clength, - int prepend_sign, char padding_char) { - PyObject *uval; - Py_ssize_t uoffset = ulength - clength; -#if CYTHON_USE_UNICODE_INTERNALS - Py_ssize_t i; -#if CYTHON_PEP393_ENABLED - void *udata; - uval = PyUnicode_New(ulength, 127); - if (unlikely(!uval)) return NULL; - udata = PyUnicode_DATA(uval); -#else - Py_UNICODE *udata; - uval = PyUnicode_FromUnicode(NULL, ulength); - if (unlikely(!uval)) return NULL; - udata = PyUnicode_AS_UNICODE(uval); -#endif - if (uoffset > 0) { - i = 0; - if (prepend_sign) { - __Pyx_PyUnicode_WRITE(PyUnicode_1BYTE_KIND, udata, 0, '-'); - i++; - } - for (; i < uoffset; i++) { - __Pyx_PyUnicode_WRITE(PyUnicode_1BYTE_KIND, udata, i, padding_char); - } - } - for (i=0; i < clength; i++) { - __Pyx_PyUnicode_WRITE(PyUnicode_1BYTE_KIND, udata, uoffset+i, chars[i]); - } -#else - { - PyObject *sign = NULL, *padding = NULL; - uval = NULL; - if (uoffset > 0) { - prepend_sign = !!prepend_sign; - if (uoffset > prepend_sign) { - padding = PyUnicode_FromOrdinal(padding_char); - if (likely(padding) && uoffset > prepend_sign + 1) { - PyObject *tmp; - PyObject *repeat = PyInt_FromSize_t(uoffset - prepend_sign); - if (unlikely(!repeat)) goto done_or_error; - tmp = PyNumber_Multiply(padding, repeat); - Py_DECREF(repeat); - Py_DECREF(padding); - padding = tmp; - } - if (unlikely(!padding)) goto done_or_error; - } - if (prepend_sign) { - sign = PyUnicode_FromOrdinal('-'); - if (unlikely(!sign)) goto done_or_error; - } - } - uval = PyUnicode_DecodeASCII(chars, clength, NULL); - if (likely(uval) && padding) { - PyObject *tmp = PyNumber_Add(padding, uval); - Py_DECREF(uval); - uval = tmp; - } - if (likely(uval) && sign) { - PyObject *tmp = PyNumber_Add(sign, uval); - Py_DECREF(uval); - uval = tmp; - } -done_or_error: - Py_XDECREF(padding); - Py_XDECREF(sign); - } -#endif - return uval; -} - -/* CIntToPyUnicode */ -#ifdef _MSC_VER - #ifndef _MSC_STDINT_H_ - #if _MSC_VER < 1300 - typedef unsigned short uint16_t; - #else - typedef unsigned __int16 uint16_t; - #endif - #endif -#else - #include -#endif -#if defined(__GNUC__) && (__GNUC__ > 4 || (__GNUC__ == 4 && __GNUC_MINOR__ >= 6)) -#define GCC_DIAGNOSTIC -#endif -static CYTHON_INLINE PyObject* __Pyx_PyUnicode_From_unsigned_char(unsigned char value, Py_ssize_t width, char padding_char, char format_char) { - char digits[sizeof(unsigned char)*3+2]; - char *dpos, *end = digits + sizeof(unsigned char)*3+2; - const char *hex_digits = DIGITS_HEX; - Py_ssize_t length, ulength; - int prepend_sign, last_one_off; - unsigned char remaining; -#ifdef GCC_DIAGNOSTIC -#pragma GCC diagnostic push -#pragma GCC diagnostic ignored "-Wconversion" -#endif - const unsigned char neg_one = (unsigned char) -1, const_zero = (unsigned char) 0; -#ifdef GCC_DIAGNOSTIC -#pragma GCC diagnostic pop -#endif - const int is_unsigned = neg_one > const_zero; - if (format_char == 'X') { - hex_digits += 16; - format_char = 'x'; - } - remaining = value; - last_one_off = 0; - dpos = end; - do { - int digit_pos; - switch (format_char) { - case 'o': - digit_pos = abs((int)(remaining % (8*8))); - remaining = (unsigned char) (remaining / (8*8)); - dpos -= 2; - *(uint16_t*)dpos = ((const uint16_t*)DIGIT_PAIRS_8)[digit_pos]; - last_one_off = (digit_pos < 8); - break; - case 'd': - digit_pos = abs((int)(remaining % (10*10))); - remaining = (unsigned char) (remaining / (10*10)); - dpos -= 2; - *(uint16_t*)dpos = ((const uint16_t*)DIGIT_PAIRS_10)[digit_pos]; - last_one_off = (digit_pos < 10); - break; - case 'x': - *(--dpos) = hex_digits[abs((int)(remaining % 16))]; - remaining = (unsigned char) (remaining / 16); - break; - default: - assert(0); - break; - } - } while (unlikely(remaining != 0)); - if (last_one_off) { - assert(*dpos == '0'); - dpos++; - } - length = end - dpos; - ulength = length; - prepend_sign = 0; - if (!is_unsigned && value <= neg_one) { - if (padding_char == ' ' || width <= length + 1) { - *(--dpos) = '-'; - ++length; - } else { - prepend_sign = 1; - } - ++ulength; - } - if (width > ulength) { - ulength = width; - } - if (ulength == 1) { - return PyUnicode_FromOrdinal(*dpos); - } - return __Pyx_PyUnicode_BuildFromAscii(ulength, dpos, (int) length, prepend_sign, padding_char); -} - -/* JoinPyUnicode */ -static PyObject* __Pyx_PyUnicode_Join(PyObject* value_tuple, Py_ssize_t value_count, Py_ssize_t result_ulength, - CYTHON_UNUSED Py_UCS4 max_char) { -#if CYTHON_USE_UNICODE_INTERNALS && CYTHON_ASSUME_SAFE_MACROS && !CYTHON_AVOID_BORROWED_REFS - PyObject *result_uval; - int result_ukind; - Py_ssize_t i, char_pos; - void *result_udata; -#if CYTHON_PEP393_ENABLED - result_uval = PyUnicode_New(result_ulength, max_char); - if (unlikely(!result_uval)) return NULL; - result_ukind = (max_char <= 255) ? PyUnicode_1BYTE_KIND : (max_char <= 65535) ? PyUnicode_2BYTE_KIND : PyUnicode_4BYTE_KIND; - result_udata = PyUnicode_DATA(result_uval); -#else - result_uval = PyUnicode_FromUnicode(NULL, result_ulength); - if (unlikely(!result_uval)) return NULL; - result_ukind = sizeof(Py_UNICODE); - result_udata = PyUnicode_AS_UNICODE(result_uval); -#endif - char_pos = 0; - for (i=0; i < value_count; i++) { - int ukind; - Py_ssize_t ulength; - void *udata; - PyObject *uval = PyTuple_GET_ITEM(value_tuple, i); - if (unlikely(__Pyx_PyUnicode_READY(uval))) - goto bad; - ulength = __Pyx_PyUnicode_GET_LENGTH(uval); - if (unlikely(!ulength)) - continue; - if (unlikely(char_pos + ulength < 0)) - goto overflow; - ukind = __Pyx_PyUnicode_KIND(uval); - udata = __Pyx_PyUnicode_DATA(uval); - if (!CYTHON_PEP393_ENABLED || ukind == result_ukind) { - memcpy((char *)result_udata + char_pos * result_ukind, udata, (size_t) (ulength * result_ukind)); - } else { - #if CYTHON_COMPILING_IN_CPYTHON && PY_VERSION_HEX >= 0x030300F0 || defined(_PyUnicode_FastCopyCharacters) - _PyUnicode_FastCopyCharacters(result_uval, char_pos, uval, 0, ulength); - #else - Py_ssize_t j; - for (j=0; j < ulength; j++) { - Py_UCS4 uchar = __Pyx_PyUnicode_READ(ukind, udata, j); - __Pyx_PyUnicode_WRITE(result_ukind, result_udata, char_pos+j, uchar); - } - #endif - } - char_pos += ulength; - } - return result_uval; -overflow: - PyErr_SetString(PyExc_OverflowError, "join() result is too long for a Python string"); -bad: - Py_DECREF(result_uval); - return NULL; -#else - result_ulength++; - value_count++; - return PyUnicode_Join(__pyx_empty_unicode, value_tuple); -#endif -} - -/* PyDictVersioning */ -#if CYTHON_USE_DICT_VERSIONS && CYTHON_USE_TYPE_SLOTS -static CYTHON_INLINE PY_UINT64_T __Pyx_get_tp_dict_version(PyObject *obj) { - PyObject *dict = Py_TYPE(obj)->tp_dict; - return likely(dict) ? __PYX_GET_DICT_VERSION(dict) : 0; -} -static CYTHON_INLINE PY_UINT64_T __Pyx_get_object_dict_version(PyObject *obj) { - PyObject **dictptr = NULL; - Py_ssize_t offset = Py_TYPE(obj)->tp_dictoffset; - if (offset) { -#if CYTHON_COMPILING_IN_CPYTHON - dictptr = (likely(offset > 0)) ? (PyObject **) ((char *)obj + offset) : _PyObject_GetDictPtr(obj); -#else - dictptr = _PyObject_GetDictPtr(obj); -#endif - } - return (dictptr && *dictptr) ? __PYX_GET_DICT_VERSION(*dictptr) : 0; -} -static CYTHON_INLINE int __Pyx_object_dict_version_matches(PyObject* obj, PY_UINT64_T tp_dict_version, PY_UINT64_T obj_dict_version) { - PyObject *dict = Py_TYPE(obj)->tp_dict; - if (unlikely(!dict) || unlikely(tp_dict_version != __PYX_GET_DICT_VERSION(dict))) - return 0; - return obj_dict_version == __Pyx_get_object_dict_version(obj); -} -#endif - -/* GetModuleGlobalName */ -#if CYTHON_USE_DICT_VERSIONS -static PyObject *__Pyx__GetModuleGlobalName(PyObject *name, PY_UINT64_T *dict_version, PyObject **dict_cached_value) -#else -static CYTHON_INLINE PyObject *__Pyx__GetModuleGlobalName(PyObject *name) -#endif -{ - PyObject *result; -#if !CYTHON_AVOID_BORROWED_REFS -#if CYTHON_COMPILING_IN_CPYTHON && PY_VERSION_HEX >= 0x030500A1 - result = _PyDict_GetItem_KnownHash(__pyx_d, name, ((PyASCIIObject *) name)->hash); - __PYX_UPDATE_DICT_CACHE(__pyx_d, result, *dict_cached_value, *dict_version) - if (likely(result)) { - return __Pyx_NewRef(result); - } else if (unlikely(PyErr_Occurred())) { - return NULL; - } -#else - result = PyDict_GetItem(__pyx_d, name); - __PYX_UPDATE_DICT_CACHE(__pyx_d, result, *dict_cached_value, *dict_version) - if (likely(result)) { - return __Pyx_NewRef(result); - } -#endif -#else - result = PyObject_GetItem(__pyx_d, name); - __PYX_UPDATE_DICT_CACHE(__pyx_d, result, *dict_cached_value, *dict_version) - if (likely(result)) { - return __Pyx_NewRef(result); - } - PyErr_Clear(); -#endif - return __Pyx_GetBuiltinName(name); -} - -/* PyFunctionFastCall */ -#if CYTHON_FAST_PYCALL -static PyObject* __Pyx_PyFunction_FastCallNoKw(PyCodeObject *co, PyObject **args, Py_ssize_t na, - PyObject *globals) { - PyFrameObject *f; - PyThreadState *tstate = __Pyx_PyThreadState_Current; - PyObject **fastlocals; - Py_ssize_t i; - PyObject *result; - assert(globals != NULL); - /* XXX Perhaps we should create a specialized - PyFrame_New() that doesn't take locals, but does - take builtins without sanity checking them. - */ - assert(tstate != NULL); - f = PyFrame_New(tstate, co, globals, NULL); - if (f == NULL) { - return NULL; - } - fastlocals = __Pyx_PyFrame_GetLocalsplus(f); - for (i = 0; i < na; i++) { - Py_INCREF(*args); - fastlocals[i] = *args++; - } - result = PyEval_EvalFrameEx(f,0); - ++tstate->recursion_depth; - Py_DECREF(f); - --tstate->recursion_depth; - return result; -} -#if 1 || PY_VERSION_HEX < 0x030600B1 -static PyObject *__Pyx_PyFunction_FastCallDict(PyObject *func, PyObject **args, Py_ssize_t nargs, PyObject *kwargs) { - PyCodeObject *co = (PyCodeObject *)PyFunction_GET_CODE(func); - PyObject *globals = PyFunction_GET_GLOBALS(func); - PyObject *argdefs = PyFunction_GET_DEFAULTS(func); - PyObject *closure; -#if PY_MAJOR_VERSION >= 3 - PyObject *kwdefs; -#endif - PyObject *kwtuple, **k; - PyObject **d; - Py_ssize_t nd; - Py_ssize_t nk; - PyObject *result; - assert(kwargs == NULL || PyDict_Check(kwargs)); - nk = kwargs ? PyDict_Size(kwargs) : 0; - if (Py_EnterRecursiveCall((char*)" while calling a Python object")) { - return NULL; - } - if ( -#if PY_MAJOR_VERSION >= 3 - co->co_kwonlyargcount == 0 && -#endif - likely(kwargs == NULL || nk == 0) && - co->co_flags == (CO_OPTIMIZED | CO_NEWLOCALS | CO_NOFREE)) { - if (argdefs == NULL && co->co_argcount == nargs) { - result = __Pyx_PyFunction_FastCallNoKw(co, args, nargs, globals); - goto done; - } - else if (nargs == 0 && argdefs != NULL - && co->co_argcount == Py_SIZE(argdefs)) { - /* function called with no arguments, but all parameters have - a default value: use default values as arguments .*/ - args = &PyTuple_GET_ITEM(argdefs, 0); - result =__Pyx_PyFunction_FastCallNoKw(co, args, Py_SIZE(argdefs), globals); - goto done; - } - } - if (kwargs != NULL) { - Py_ssize_t pos, i; - kwtuple = PyTuple_New(2 * nk); - if (kwtuple == NULL) { - result = NULL; - goto done; - } - k = &PyTuple_GET_ITEM(kwtuple, 0); - pos = i = 0; - while (PyDict_Next(kwargs, &pos, &k[i], &k[i+1])) { - Py_INCREF(k[i]); - Py_INCREF(k[i+1]); - i += 2; - } - nk = i / 2; - } - else { - kwtuple = NULL; - k = NULL; - } - closure = PyFunction_GET_CLOSURE(func); -#if PY_MAJOR_VERSION >= 3 - kwdefs = PyFunction_GET_KW_DEFAULTS(func); -#endif - if (argdefs != NULL) { - d = &PyTuple_GET_ITEM(argdefs, 0); - nd = Py_SIZE(argdefs); - } - else { - d = NULL; - nd = 0; - } -#if PY_MAJOR_VERSION >= 3 - result = PyEval_EvalCodeEx((PyObject*)co, globals, (PyObject *)NULL, - args, (int)nargs, - k, (int)nk, - d, (int)nd, kwdefs, closure); -#else - result = PyEval_EvalCodeEx(co, globals, (PyObject *)NULL, - args, (int)nargs, - k, (int)nk, - d, (int)nd, closure); -#endif - Py_XDECREF(kwtuple); -done: - Py_LeaveRecursiveCall(); - return result; -} -#endif -#endif - -/* PyCFunctionFastCall */ -#if CYTHON_FAST_PYCCALL -static CYTHON_INLINE PyObject * __Pyx_PyCFunction_FastCall(PyObject *func_obj, PyObject **args, Py_ssize_t nargs) { - PyCFunctionObject *func = (PyCFunctionObject*)func_obj; - PyCFunction meth = PyCFunction_GET_FUNCTION(func); - PyObject *self = PyCFunction_GET_SELF(func); - int flags = PyCFunction_GET_FLAGS(func); - assert(PyCFunction_Check(func)); - assert(METH_FASTCALL == (flags & ~(METH_CLASS | METH_STATIC | METH_COEXIST | METH_KEYWORDS | METH_STACKLESS))); - assert(nargs >= 0); - assert(nargs == 0 || args != NULL); - /* _PyCFunction_FastCallDict() must not be called with an exception set, - because it may clear it (directly or indirectly) and so the - caller loses its exception */ - assert(!PyErr_Occurred()); - if ((PY_VERSION_HEX < 0x030700A0) || unlikely(flags & METH_KEYWORDS)) { - return (*((__Pyx_PyCFunctionFastWithKeywords)(void*)meth)) (self, args, nargs, NULL); - } else { - return (*((__Pyx_PyCFunctionFast)(void*)meth)) (self, args, nargs); - } -} -#endif - -/* PyObjectCall */ -#if CYTHON_COMPILING_IN_CPYTHON -static CYTHON_INLINE PyObject* __Pyx_PyObject_Call(PyObject *func, PyObject *arg, PyObject *kw) { - PyObject *result; - ternaryfunc call = func->ob_type->tp_call; - if (unlikely(!call)) - return PyObject_Call(func, arg, kw); - if (unlikely(Py_EnterRecursiveCall((char*)" while calling a Python object"))) - return NULL; - result = (*call)(func, arg, kw); - Py_LeaveRecursiveCall(); - if (unlikely(!result) && unlikely(!PyErr_Occurred())) { - PyErr_SetString( - PyExc_SystemError, - "NULL result without error in PyObject_Call"); - } - return result; -} -#endif - -/* RaiseTooManyValuesToUnpack */ -static CYTHON_INLINE void __Pyx_RaiseTooManyValuesError(Py_ssize_t expected) { - PyErr_Format(PyExc_ValueError, - "too many values to unpack (expected %" CYTHON_FORMAT_SSIZE_T "d)", expected); -} - -/* RaiseNeedMoreValuesToUnpack */ -static CYTHON_INLINE void __Pyx_RaiseNeedMoreValuesError(Py_ssize_t index) { - PyErr_Format(PyExc_ValueError, - "need more than %" CYTHON_FORMAT_SSIZE_T "d value%.1s to unpack", - index, (index == 1) ? "" : "s"); -} - -/* IterFinish */ -static CYTHON_INLINE int __Pyx_IterFinish(void) { -#if CYTHON_FAST_THREAD_STATE - PyThreadState *tstate = __Pyx_PyThreadState_Current; - PyObject* exc_type = tstate->curexc_type; - if (unlikely(exc_type)) { - if (likely(__Pyx_PyErr_GivenExceptionMatches(exc_type, PyExc_StopIteration))) { - PyObject *exc_value, *exc_tb; - exc_value = tstate->curexc_value; - exc_tb = tstate->curexc_traceback; - tstate->curexc_type = 0; - tstate->curexc_value = 0; - tstate->curexc_traceback = 0; - Py_DECREF(exc_type); - Py_XDECREF(exc_value); - Py_XDECREF(exc_tb); - return 0; - } else { - return -1; - } - } - return 0; -#else - if (unlikely(PyErr_Occurred())) { - if (likely(PyErr_ExceptionMatches(PyExc_StopIteration))) { - PyErr_Clear(); - return 0; - } else { - return -1; - } - } - return 0; -#endif -} - -/* UnpackItemEndCheck */ -static int __Pyx_IternextUnpackEndCheck(PyObject *retval, Py_ssize_t expected) { - if (unlikely(retval)) { - Py_DECREF(retval); - __Pyx_RaiseTooManyValuesError(expected); - return -1; - } else { - return __Pyx_IterFinish(); - } - return 0; -} - -/* Import */ -static PyObject *__Pyx_Import(PyObject *name, PyObject *from_list, int level) { - PyObject *empty_list = 0; - PyObject *module = 0; - PyObject *global_dict = 0; - PyObject *empty_dict = 0; - PyObject *list; - #if PY_MAJOR_VERSION < 3 - PyObject *py_import; - py_import = __Pyx_PyObject_GetAttrStr(__pyx_b, __pyx_n_s_import); - if (!py_import) - goto bad; - #endif - if (from_list) - list = from_list; - else { - empty_list = PyList_New(0); - if (!empty_list) - goto bad; - list = empty_list; - } - global_dict = PyModule_GetDict(__pyx_m); - if (!global_dict) - goto bad; - empty_dict = PyDict_New(); - if (!empty_dict) - goto bad; - { - #if PY_MAJOR_VERSION >= 3 - if (level == -1) { - if (strchr(__Pyx_MODULE_NAME, '.')) { - module = PyImport_ImportModuleLevelObject( - name, global_dict, empty_dict, list, 1); - if (!module) { - if (!PyErr_ExceptionMatches(PyExc_ImportError)) - goto bad; - PyErr_Clear(); - } - } - level = 0; - } - #endif - if (!module) { - #if PY_MAJOR_VERSION < 3 - PyObject *py_level = PyInt_FromLong(level); - if (!py_level) - goto bad; - module = PyObject_CallFunctionObjArgs(py_import, - name, global_dict, empty_dict, list, py_level, (PyObject *)NULL); - Py_DECREF(py_level); - #else - module = PyImport_ImportModuleLevelObject( - name, global_dict, empty_dict, list, level); - #endif - } - } -bad: - #if PY_MAJOR_VERSION < 3 - Py_XDECREF(py_import); - #endif - Py_XDECREF(empty_list); - Py_XDECREF(empty_dict); - return module; -} - -/* PyObjectCall2Args */ -static CYTHON_UNUSED PyObject* __Pyx_PyObject_Call2Args(PyObject* function, PyObject* arg1, PyObject* arg2) { - PyObject *args, *result = NULL; - #if CYTHON_FAST_PYCALL - if (PyFunction_Check(function)) { - PyObject *args[2] = {arg1, arg2}; - return __Pyx_PyFunction_FastCall(function, args, 2); - } - #endif - #if CYTHON_FAST_PYCCALL - if (__Pyx_PyFastCFunction_Check(function)) { - PyObject *args[2] = {arg1, arg2}; - return __Pyx_PyCFunction_FastCall(function, args, 2); - } - #endif - args = PyTuple_New(2); - if (unlikely(!args)) goto done; - Py_INCREF(arg1); - PyTuple_SET_ITEM(args, 0, arg1); - Py_INCREF(arg2); - PyTuple_SET_ITEM(args, 1, arg2); - Py_INCREF(function); - result = __Pyx_PyObject_Call(function, args, NULL); - Py_DECREF(args); - Py_DECREF(function); -done: - return result; -} - -/* PyObjectCallMethO */ -#if CYTHON_COMPILING_IN_CPYTHON -static CYTHON_INLINE PyObject* __Pyx_PyObject_CallMethO(PyObject *func, PyObject *arg) { - PyObject *self, *result; - PyCFunction cfunc; - cfunc = PyCFunction_GET_FUNCTION(func); - self = PyCFunction_GET_SELF(func); - if (unlikely(Py_EnterRecursiveCall((char*)" while calling a Python object"))) - return NULL; - result = cfunc(self, arg); - Py_LeaveRecursiveCall(); - if (unlikely(!result) && unlikely(!PyErr_Occurred())) { - PyErr_SetString( - PyExc_SystemError, - "NULL result without error in PyObject_Call"); - } - return result; -} -#endif - -/* PyObjectCallOneArg */ -#if CYTHON_COMPILING_IN_CPYTHON -static PyObject* __Pyx__PyObject_CallOneArg(PyObject *func, PyObject *arg) { - PyObject *result; - PyObject *args = PyTuple_New(1); - if (unlikely(!args)) return NULL; - Py_INCREF(arg); - PyTuple_SET_ITEM(args, 0, arg); - result = __Pyx_PyObject_Call(func, args, NULL); - Py_DECREF(args); - return result; -} -static CYTHON_INLINE PyObject* __Pyx_PyObject_CallOneArg(PyObject *func, PyObject *arg) { -#if CYTHON_FAST_PYCALL - if (PyFunction_Check(func)) { - return __Pyx_PyFunction_FastCall(func, &arg, 1); - } -#endif - if (likely(PyCFunction_Check(func))) { - if (likely(PyCFunction_GET_FLAGS(func) & METH_O)) { - return __Pyx_PyObject_CallMethO(func, arg); -#if CYTHON_FAST_PYCCALL - } else if (PyCFunction_GET_FLAGS(func) & METH_FASTCALL) { - return __Pyx_PyCFunction_FastCall(func, &arg, 1); -#endif - } - } - return __Pyx__PyObject_CallOneArg(func, arg); -} -#else -static CYTHON_INLINE PyObject* __Pyx_PyObject_CallOneArg(PyObject *func, PyObject *arg) { - PyObject *result; - PyObject *args = PyTuple_Pack(1, arg); - if (unlikely(!args)) return NULL; - result = __Pyx_PyObject_Call(func, args, NULL); - Py_DECREF(args); - return result; -} -#endif - -/* PyObjectGetMethod */ -static int __Pyx_PyObject_GetMethod(PyObject *obj, PyObject *name, PyObject **method) { - PyObject *attr; -#if CYTHON_UNPACK_METHODS && CYTHON_COMPILING_IN_CPYTHON && CYTHON_USE_PYTYPE_LOOKUP - PyTypeObject *tp = Py_TYPE(obj); - PyObject *descr; - descrgetfunc f = NULL; - PyObject **dictptr, *dict; - int meth_found = 0; - assert (*method == NULL); - if (unlikely(tp->tp_getattro != PyObject_GenericGetAttr)) { - attr = __Pyx_PyObject_GetAttrStr(obj, name); - goto try_unpack; - } - if (unlikely(tp->tp_dict == NULL) && unlikely(PyType_Ready(tp) < 0)) { - return 0; - } - descr = _PyType_Lookup(tp, name); - if (likely(descr != NULL)) { - Py_INCREF(descr); -#if PY_MAJOR_VERSION >= 3 - #ifdef __Pyx_CyFunction_USED - if (likely(PyFunction_Check(descr) || (Py_TYPE(descr) == &PyMethodDescr_Type) || __Pyx_CyFunction_Check(descr))) - #else - if (likely(PyFunction_Check(descr) || (Py_TYPE(descr) == &PyMethodDescr_Type))) - #endif -#else - #ifdef __Pyx_CyFunction_USED - if (likely(PyFunction_Check(descr) || __Pyx_CyFunction_Check(descr))) - #else - if (likely(PyFunction_Check(descr))) - #endif -#endif - { - meth_found = 1; - } else { - f = Py_TYPE(descr)->tp_descr_get; - if (f != NULL && PyDescr_IsData(descr)) { - attr = f(descr, obj, (PyObject *)Py_TYPE(obj)); - Py_DECREF(descr); - goto try_unpack; - } - } - } - dictptr = _PyObject_GetDictPtr(obj); - if (dictptr != NULL && (dict = *dictptr) != NULL) { - Py_INCREF(dict); - attr = __Pyx_PyDict_GetItemStr(dict, name); - if (attr != NULL) { - Py_INCREF(attr); - Py_DECREF(dict); - Py_XDECREF(descr); - goto try_unpack; - } - Py_DECREF(dict); - } - if (meth_found) { - *method = descr; - return 1; - } - if (f != NULL) { - attr = f(descr, obj, (PyObject *)Py_TYPE(obj)); - Py_DECREF(descr); - goto try_unpack; - } - if (descr != NULL) { - *method = descr; - return 0; - } - PyErr_Format(PyExc_AttributeError, -#if PY_MAJOR_VERSION >= 3 - "'%.50s' object has no attribute '%U'", - tp->tp_name, name); -#else - "'%.50s' object has no attribute '%.400s'", - tp->tp_name, PyString_AS_STRING(name)); -#endif - return 0; -#else - attr = __Pyx_PyObject_GetAttrStr(obj, name); - goto try_unpack; -#endif -try_unpack: -#if CYTHON_UNPACK_METHODS - if (likely(attr) && PyMethod_Check(attr) && likely(PyMethod_GET_SELF(attr) == obj)) { - PyObject *function = PyMethod_GET_FUNCTION(attr); - Py_INCREF(function); - Py_DECREF(attr); - *method = function; - return 1; - } -#endif - *method = attr; - return 0; -} - -/* PyObjectCallMethod1 */ -static PyObject* __Pyx__PyObject_CallMethod1(PyObject* method, PyObject* arg) { - PyObject *result = __Pyx_PyObject_CallOneArg(method, arg); - Py_DECREF(method); - return result; -} -static PyObject* __Pyx_PyObject_CallMethod1(PyObject* obj, PyObject* method_name, PyObject* arg) { - PyObject *method = NULL, *result; - int is_method = __Pyx_PyObject_GetMethod(obj, method_name, &method); - if (likely(is_method)) { - result = __Pyx_PyObject_Call2Args(method, obj, arg); - Py_DECREF(method); - return result; - } - if (unlikely(!method)) return NULL; - return __Pyx__PyObject_CallMethod1(method, arg); -} - -/* append */ -static CYTHON_INLINE int __Pyx_PyObject_Append(PyObject* L, PyObject* x) { - if (likely(PyList_CheckExact(L))) { - if (unlikely(__Pyx_PyList_Append(L, x) < 0)) return -1; - } else { - PyObject* retval = __Pyx_PyObject_CallMethod1(L, __pyx_n_s_append, x); - if (unlikely(!retval)) - return -1; - Py_DECREF(retval); - } - return 0; -} - -/* ImportFrom */ -static PyObject* __Pyx_ImportFrom(PyObject* module, PyObject* name) { - PyObject* value = __Pyx_PyObject_GetAttrStr(module, name); - if (unlikely(!value) && PyErr_ExceptionMatches(PyExc_AttributeError)) { - PyErr_Format(PyExc_ImportError, - #if PY_MAJOR_VERSION < 3 - "cannot import name %.230s", PyString_AS_STRING(name)); - #else - "cannot import name %S", name); - #endif - } - return value; -} - -/* CalculateMetaclass */ -static PyObject *__Pyx_CalculateMetaclass(PyTypeObject *metaclass, PyObject *bases) { - Py_ssize_t i, nbases = PyTuple_GET_SIZE(bases); - for (i=0; i < nbases; i++) { - PyTypeObject *tmptype; - PyObject *tmp = PyTuple_GET_ITEM(bases, i); - tmptype = Py_TYPE(tmp); -#if PY_MAJOR_VERSION < 3 - if (tmptype == &PyClass_Type) - continue; -#endif - if (!metaclass) { - metaclass = tmptype; - continue; - } - if (PyType_IsSubtype(metaclass, tmptype)) - continue; - if (PyType_IsSubtype(tmptype, metaclass)) { - metaclass = tmptype; - continue; - } - PyErr_SetString(PyExc_TypeError, - "metaclass conflict: " - "the metaclass of a derived class " - "must be a (non-strict) subclass " - "of the metaclasses of all its bases"); - return NULL; - } - if (!metaclass) { -#if PY_MAJOR_VERSION < 3 - metaclass = &PyClass_Type; -#else - metaclass = &PyType_Type; -#endif - } - Py_INCREF((PyObject*) metaclass); - return (PyObject*) metaclass; -} - -/* FetchCommonType */ -static PyTypeObject* __Pyx_FetchCommonType(PyTypeObject* type) { - PyObject* fake_module; - PyTypeObject* cached_type = NULL; - fake_module = PyImport_AddModule((char*) "_cython_" CYTHON_ABI); - if (!fake_module) return NULL; - Py_INCREF(fake_module); - cached_type = (PyTypeObject*) PyObject_GetAttrString(fake_module, type->tp_name); - if (cached_type) { - if (!PyType_Check((PyObject*)cached_type)) { - PyErr_Format(PyExc_TypeError, - "Shared Cython type %.200s is not a type object", - type->tp_name); - goto bad; - } - if (cached_type->tp_basicsize != type->tp_basicsize) { - PyErr_Format(PyExc_TypeError, - "Shared Cython type %.200s has the wrong size, try recompiling", - type->tp_name); - goto bad; - } - } else { - if (!PyErr_ExceptionMatches(PyExc_AttributeError)) goto bad; - PyErr_Clear(); - if (PyType_Ready(type) < 0) goto bad; - if (PyObject_SetAttrString(fake_module, type->tp_name, (PyObject*) type) < 0) - goto bad; - Py_INCREF(type); - cached_type = type; - } -done: - Py_DECREF(fake_module); - return cached_type; -bad: - Py_XDECREF(cached_type); - cached_type = NULL; - goto done; -} - -/* CythonFunction */ -#include -static PyObject * -__Pyx_CyFunction_get_doc(__pyx_CyFunctionObject *op, CYTHON_UNUSED void *closure) -{ - if (unlikely(op->func_doc == NULL)) { - if (op->func.m_ml->ml_doc) { -#if PY_MAJOR_VERSION >= 3 - op->func_doc = PyUnicode_FromString(op->func.m_ml->ml_doc); -#else - op->func_doc = PyString_FromString(op->func.m_ml->ml_doc); -#endif - if (unlikely(op->func_doc == NULL)) - return NULL; - } else { - Py_INCREF(Py_None); - return Py_None; - } - } - Py_INCREF(op->func_doc); - return op->func_doc; -} -static int -__Pyx_CyFunction_set_doc(__pyx_CyFunctionObject *op, PyObject *value, CYTHON_UNUSED void *context) -{ - PyObject *tmp = op->func_doc; - if (value == NULL) { - value = Py_None; - } - Py_INCREF(value); - op->func_doc = value; - Py_XDECREF(tmp); - return 0; -} -static PyObject * -__Pyx_CyFunction_get_name(__pyx_CyFunctionObject *op, CYTHON_UNUSED void *context) -{ - if (unlikely(op->func_name == NULL)) { -#if PY_MAJOR_VERSION >= 3 - op->func_name = PyUnicode_InternFromString(op->func.m_ml->ml_name); -#else - op->func_name = PyString_InternFromString(op->func.m_ml->ml_name); -#endif - if (unlikely(op->func_name == NULL)) - return NULL; - } - Py_INCREF(op->func_name); - return op->func_name; -} -static int -__Pyx_CyFunction_set_name(__pyx_CyFunctionObject *op, PyObject *value, CYTHON_UNUSED void *context) -{ - PyObject *tmp; -#if PY_MAJOR_VERSION >= 3 - if (unlikely(value == NULL || !PyUnicode_Check(value))) -#else - if (unlikely(value == NULL || !PyString_Check(value))) -#endif - { - PyErr_SetString(PyExc_TypeError, - "__name__ must be set to a string object"); - return -1; - } - tmp = op->func_name; - Py_INCREF(value); - op->func_name = value; - Py_XDECREF(tmp); - return 0; -} -static PyObject * -__Pyx_CyFunction_get_qualname(__pyx_CyFunctionObject *op, CYTHON_UNUSED void *context) -{ - Py_INCREF(op->func_qualname); - return op->func_qualname; -} -static int -__Pyx_CyFunction_set_qualname(__pyx_CyFunctionObject *op, PyObject *value, CYTHON_UNUSED void *context) -{ - PyObject *tmp; -#if PY_MAJOR_VERSION >= 3 - if (unlikely(value == NULL || !PyUnicode_Check(value))) -#else - if (unlikely(value == NULL || !PyString_Check(value))) -#endif - { - PyErr_SetString(PyExc_TypeError, - "__qualname__ must be set to a string object"); - return -1; - } - tmp = op->func_qualname; - Py_INCREF(value); - op->func_qualname = value; - Py_XDECREF(tmp); - return 0; -} -static PyObject * -__Pyx_CyFunction_get_self(__pyx_CyFunctionObject *m, CYTHON_UNUSED void *closure) -{ - PyObject *self; - self = m->func_closure; - if (self == NULL) - self = Py_None; - Py_INCREF(self); - return self; -} -static PyObject * -__Pyx_CyFunction_get_dict(__pyx_CyFunctionObject *op, CYTHON_UNUSED void *context) -{ - if (unlikely(op->func_dict == NULL)) { - op->func_dict = PyDict_New(); - if (unlikely(op->func_dict == NULL)) - return NULL; - } - Py_INCREF(op->func_dict); - return op->func_dict; -} -static int -__Pyx_CyFunction_set_dict(__pyx_CyFunctionObject *op, PyObject *value, CYTHON_UNUSED void *context) -{ - PyObject *tmp; - if (unlikely(value == NULL)) { - PyErr_SetString(PyExc_TypeError, - "function's dictionary may not be deleted"); - return -1; - } - if (unlikely(!PyDict_Check(value))) { - PyErr_SetString(PyExc_TypeError, - "setting function's dictionary to a non-dict"); - return -1; - } - tmp = op->func_dict; - Py_INCREF(value); - op->func_dict = value; - Py_XDECREF(tmp); - return 0; -} -static PyObject * -__Pyx_CyFunction_get_globals(__pyx_CyFunctionObject *op, CYTHON_UNUSED void *context) -{ - Py_INCREF(op->func_globals); - return op->func_globals; -} -static PyObject * -__Pyx_CyFunction_get_closure(CYTHON_UNUSED __pyx_CyFunctionObject *op, CYTHON_UNUSED void *context) -{ - Py_INCREF(Py_None); - return Py_None; -} -static PyObject * -__Pyx_CyFunction_get_code(__pyx_CyFunctionObject *op, CYTHON_UNUSED void *context) -{ - PyObject* result = (op->func_code) ? op->func_code : Py_None; - Py_INCREF(result); - return result; -} -static int -__Pyx_CyFunction_init_defaults(__pyx_CyFunctionObject *op) { - int result = 0; - PyObject *res = op->defaults_getter((PyObject *) op); - if (unlikely(!res)) - return -1; - #if CYTHON_ASSUME_SAFE_MACROS && !CYTHON_AVOID_BORROWED_REFS - op->defaults_tuple = PyTuple_GET_ITEM(res, 0); - Py_INCREF(op->defaults_tuple); - op->defaults_kwdict = PyTuple_GET_ITEM(res, 1); - Py_INCREF(op->defaults_kwdict); - #else - op->defaults_tuple = PySequence_ITEM(res, 0); - if (unlikely(!op->defaults_tuple)) result = -1; - else { - op->defaults_kwdict = PySequence_ITEM(res, 1); - if (unlikely(!op->defaults_kwdict)) result = -1; - } - #endif - Py_DECREF(res); - return result; -} -static int -__Pyx_CyFunction_set_defaults(__pyx_CyFunctionObject *op, PyObject* value, CYTHON_UNUSED void *context) { - PyObject* tmp; - if (!value) { - value = Py_None; - } else if (value != Py_None && !PyTuple_Check(value)) { - PyErr_SetString(PyExc_TypeError, - "__defaults__ must be set to a tuple object"); - return -1; - } - Py_INCREF(value); - tmp = op->defaults_tuple; - op->defaults_tuple = value; - Py_XDECREF(tmp); - return 0; -} -static PyObject * -__Pyx_CyFunction_get_defaults(__pyx_CyFunctionObject *op, CYTHON_UNUSED void *context) { - PyObject* result = op->defaults_tuple; - if (unlikely(!result)) { - if (op->defaults_getter) { - if (__Pyx_CyFunction_init_defaults(op) < 0) return NULL; - result = op->defaults_tuple; - } else { - result = Py_None; - } - } - Py_INCREF(result); - return result; -} -static int -__Pyx_CyFunction_set_kwdefaults(__pyx_CyFunctionObject *op, PyObject* value, CYTHON_UNUSED void *context) { - PyObject* tmp; - if (!value) { - value = Py_None; - } else if (value != Py_None && !PyDict_Check(value)) { - PyErr_SetString(PyExc_TypeError, - "__kwdefaults__ must be set to a dict object"); - return -1; - } - Py_INCREF(value); - tmp = op->defaults_kwdict; - op->defaults_kwdict = value; - Py_XDECREF(tmp); - return 0; -} -static PyObject * -__Pyx_CyFunction_get_kwdefaults(__pyx_CyFunctionObject *op, CYTHON_UNUSED void *context) { - PyObject* result = op->defaults_kwdict; - if (unlikely(!result)) { - if (op->defaults_getter) { - if (__Pyx_CyFunction_init_defaults(op) < 0) return NULL; - result = op->defaults_kwdict; - } else { - result = Py_None; - } - } - Py_INCREF(result); - return result; -} -static int -__Pyx_CyFunction_set_annotations(__pyx_CyFunctionObject *op, PyObject* value, CYTHON_UNUSED void *context) { - PyObject* tmp; - if (!value || value == Py_None) { - value = NULL; - } else if (!PyDict_Check(value)) { - PyErr_SetString(PyExc_TypeError, - "__annotations__ must be set to a dict object"); - return -1; - } - Py_XINCREF(value); - tmp = op->func_annotations; - op->func_annotations = value; - Py_XDECREF(tmp); - return 0; -} -static PyObject * -__Pyx_CyFunction_get_annotations(__pyx_CyFunctionObject *op, CYTHON_UNUSED void *context) { - PyObject* result = op->func_annotations; - if (unlikely(!result)) { - result = PyDict_New(); - if (unlikely(!result)) return NULL; - op->func_annotations = result; - } - Py_INCREF(result); - return result; -} -static PyGetSetDef __pyx_CyFunction_getsets[] = { - {(char *) "func_doc", (getter)__Pyx_CyFunction_get_doc, (setter)__Pyx_CyFunction_set_doc, 0, 0}, - {(char *) "__doc__", (getter)__Pyx_CyFunction_get_doc, (setter)__Pyx_CyFunction_set_doc, 0, 0}, - {(char *) "func_name", (getter)__Pyx_CyFunction_get_name, (setter)__Pyx_CyFunction_set_name, 0, 0}, - {(char *) "__name__", (getter)__Pyx_CyFunction_get_name, (setter)__Pyx_CyFunction_set_name, 0, 0}, - {(char *) "__qualname__", (getter)__Pyx_CyFunction_get_qualname, (setter)__Pyx_CyFunction_set_qualname, 0, 0}, - {(char *) "__self__", (getter)__Pyx_CyFunction_get_self, 0, 0, 0}, - {(char *) "func_dict", (getter)__Pyx_CyFunction_get_dict, (setter)__Pyx_CyFunction_set_dict, 0, 0}, - {(char *) "__dict__", (getter)__Pyx_CyFunction_get_dict, (setter)__Pyx_CyFunction_set_dict, 0, 0}, - {(char *) "func_globals", (getter)__Pyx_CyFunction_get_globals, 0, 0, 0}, - {(char *) "__globals__", (getter)__Pyx_CyFunction_get_globals, 0, 0, 0}, - {(char *) "func_closure", (getter)__Pyx_CyFunction_get_closure, 0, 0, 0}, - {(char *) "__closure__", (getter)__Pyx_CyFunction_get_closure, 0, 0, 0}, - {(char *) "func_code", (getter)__Pyx_CyFunction_get_code, 0, 0, 0}, - {(char *) "__code__", (getter)__Pyx_CyFunction_get_code, 0, 0, 0}, - {(char *) "func_defaults", (getter)__Pyx_CyFunction_get_defaults, (setter)__Pyx_CyFunction_set_defaults, 0, 0}, - {(char *) "__defaults__", (getter)__Pyx_CyFunction_get_defaults, (setter)__Pyx_CyFunction_set_defaults, 0, 0}, - {(char *) "__kwdefaults__", (getter)__Pyx_CyFunction_get_kwdefaults, (setter)__Pyx_CyFunction_set_kwdefaults, 0, 0}, - {(char *) "__annotations__", (getter)__Pyx_CyFunction_get_annotations, (setter)__Pyx_CyFunction_set_annotations, 0, 0}, - {0, 0, 0, 0, 0} -}; -static PyMemberDef __pyx_CyFunction_members[] = { - {(char *) "__module__", T_OBJECT, offsetof(PyCFunctionObject, m_module), PY_WRITE_RESTRICTED, 0}, - {0, 0, 0, 0, 0} -}; -static PyObject * -__Pyx_CyFunction_reduce(__pyx_CyFunctionObject *m, CYTHON_UNUSED PyObject *args) -{ -#if PY_MAJOR_VERSION >= 3 - return PyUnicode_FromString(m->func.m_ml->ml_name); -#else - return PyString_FromString(m->func.m_ml->ml_name); -#endif -} -static PyMethodDef __pyx_CyFunction_methods[] = { - {"__reduce__", (PyCFunction)__Pyx_CyFunction_reduce, METH_VARARGS, 0}, - {0, 0, 0, 0} -}; -#if PY_VERSION_HEX < 0x030500A0 -#define __Pyx_CyFunction_weakreflist(cyfunc) ((cyfunc)->func_weakreflist) -#else -#define __Pyx_CyFunction_weakreflist(cyfunc) ((cyfunc)->func.m_weakreflist) -#endif -static PyObject *__Pyx_CyFunction_New(PyTypeObject *type, PyMethodDef *ml, int flags, PyObject* qualname, - PyObject *closure, PyObject *module, PyObject* globals, PyObject* code) { - __pyx_CyFunctionObject *op = PyObject_GC_New(__pyx_CyFunctionObject, type); - if (op == NULL) - return NULL; - op->flags = flags; - __Pyx_CyFunction_weakreflist(op) = NULL; - op->func.m_ml = ml; - op->func.m_self = (PyObject *) op; - Py_XINCREF(closure); - op->func_closure = closure; - Py_XINCREF(module); - op->func.m_module = module; - op->func_dict = NULL; - op->func_name = NULL; - Py_INCREF(qualname); - op->func_qualname = qualname; - op->func_doc = NULL; - op->func_classobj = NULL; - op->func_globals = globals; - Py_INCREF(op->func_globals); - Py_XINCREF(code); - op->func_code = code; - op->defaults_pyobjects = 0; - op->defaults = NULL; - op->defaults_tuple = NULL; - op->defaults_kwdict = NULL; - op->defaults_getter = NULL; - op->func_annotations = NULL; - PyObject_GC_Track(op); - return (PyObject *) op; -} -static int -__Pyx_CyFunction_clear(__pyx_CyFunctionObject *m) -{ - Py_CLEAR(m->func_closure); - Py_CLEAR(m->func.m_module); - Py_CLEAR(m->func_dict); - Py_CLEAR(m->func_name); - Py_CLEAR(m->func_qualname); - Py_CLEAR(m->func_doc); - Py_CLEAR(m->func_globals); - Py_CLEAR(m->func_code); - Py_CLEAR(m->func_classobj); - Py_CLEAR(m->defaults_tuple); - Py_CLEAR(m->defaults_kwdict); - Py_CLEAR(m->func_annotations); - if (m->defaults) { - PyObject **pydefaults = __Pyx_CyFunction_Defaults(PyObject *, m); - int i; - for (i = 0; i < m->defaults_pyobjects; i++) - Py_XDECREF(pydefaults[i]); - PyObject_Free(m->defaults); - m->defaults = NULL; - } - return 0; -} -static void __Pyx__CyFunction_dealloc(__pyx_CyFunctionObject *m) -{ - if (__Pyx_CyFunction_weakreflist(m) != NULL) - PyObject_ClearWeakRefs((PyObject *) m); - __Pyx_CyFunction_clear(m); - PyObject_GC_Del(m); -} -static void __Pyx_CyFunction_dealloc(__pyx_CyFunctionObject *m) -{ - PyObject_GC_UnTrack(m); - __Pyx__CyFunction_dealloc(m); -} -static int __Pyx_CyFunction_traverse(__pyx_CyFunctionObject *m, visitproc visit, void *arg) -{ - Py_VISIT(m->func_closure); - Py_VISIT(m->func.m_module); - Py_VISIT(m->func_dict); - Py_VISIT(m->func_name); - Py_VISIT(m->func_qualname); - Py_VISIT(m->func_doc); - Py_VISIT(m->func_globals); - Py_VISIT(m->func_code); - Py_VISIT(m->func_classobj); - Py_VISIT(m->defaults_tuple); - Py_VISIT(m->defaults_kwdict); - if (m->defaults) { - PyObject **pydefaults = __Pyx_CyFunction_Defaults(PyObject *, m); - int i; - for (i = 0; i < m->defaults_pyobjects; i++) - Py_VISIT(pydefaults[i]); - } - return 0; -} -static PyObject *__Pyx_CyFunction_descr_get(PyObject *func, PyObject *obj, PyObject *type) -{ - __pyx_CyFunctionObject *m = (__pyx_CyFunctionObject *) func; - if (m->flags & __Pyx_CYFUNCTION_STATICMETHOD) { - Py_INCREF(func); - return func; - } - if (m->flags & __Pyx_CYFUNCTION_CLASSMETHOD) { - if (type == NULL) - type = (PyObject *)(Py_TYPE(obj)); - return __Pyx_PyMethod_New(func, type, (PyObject *)(Py_TYPE(type))); - } - if (obj == Py_None) - obj = NULL; - return __Pyx_PyMethod_New(func, obj, type); -} -static PyObject* -__Pyx_CyFunction_repr(__pyx_CyFunctionObject *op) -{ -#if PY_MAJOR_VERSION >= 3 - return PyUnicode_FromFormat("", - op->func_qualname, (void *)op); -#else - return PyString_FromFormat("", - PyString_AsString(op->func_qualname), (void *)op); -#endif -} -static PyObject * __Pyx_CyFunction_CallMethod(PyObject *func, PyObject *self, PyObject *arg, PyObject *kw) { - PyCFunctionObject* f = (PyCFunctionObject*)func; - PyCFunction meth = f->m_ml->ml_meth; - Py_ssize_t size; - switch (f->m_ml->ml_flags & (METH_VARARGS | METH_KEYWORDS | METH_NOARGS | METH_O)) { - case METH_VARARGS: - if (likely(kw == NULL || PyDict_Size(kw) == 0)) - return (*meth)(self, arg); - break; - case METH_VARARGS | METH_KEYWORDS: - return (*(PyCFunctionWithKeywords)(void*)meth)(self, arg, kw); - case METH_NOARGS: - if (likely(kw == NULL || PyDict_Size(kw) == 0)) { - size = PyTuple_GET_SIZE(arg); - if (likely(size == 0)) - return (*meth)(self, NULL); - PyErr_Format(PyExc_TypeError, - "%.200s() takes no arguments (%" CYTHON_FORMAT_SSIZE_T "d given)", - f->m_ml->ml_name, size); - return NULL; - } - break; - case METH_O: - if (likely(kw == NULL || PyDict_Size(kw) == 0)) { - size = PyTuple_GET_SIZE(arg); - if (likely(size == 1)) { - PyObject *result, *arg0; - #if CYTHON_ASSUME_SAFE_MACROS && !CYTHON_AVOID_BORROWED_REFS - arg0 = PyTuple_GET_ITEM(arg, 0); - #else - arg0 = PySequence_ITEM(arg, 0); if (unlikely(!arg0)) return NULL; - #endif - result = (*meth)(self, arg0); - #if !(CYTHON_ASSUME_SAFE_MACROS && !CYTHON_AVOID_BORROWED_REFS) - Py_DECREF(arg0); - #endif - return result; - } - PyErr_Format(PyExc_TypeError, - "%.200s() takes exactly one argument (%" CYTHON_FORMAT_SSIZE_T "d given)", - f->m_ml->ml_name, size); - return NULL; - } - break; - default: - PyErr_SetString(PyExc_SystemError, "Bad call flags in " - "__Pyx_CyFunction_Call. METH_OLDARGS is no " - "longer supported!"); - return NULL; - } - PyErr_Format(PyExc_TypeError, "%.200s() takes no keyword arguments", - f->m_ml->ml_name); - return NULL; -} -static CYTHON_INLINE PyObject *__Pyx_CyFunction_Call(PyObject *func, PyObject *arg, PyObject *kw) { - return __Pyx_CyFunction_CallMethod(func, ((PyCFunctionObject*)func)->m_self, arg, kw); -} -static PyObject *__Pyx_CyFunction_CallAsMethod(PyObject *func, PyObject *args, PyObject *kw) { - PyObject *result; - __pyx_CyFunctionObject *cyfunc = (__pyx_CyFunctionObject *) func; - if ((cyfunc->flags & __Pyx_CYFUNCTION_CCLASS) && !(cyfunc->flags & __Pyx_CYFUNCTION_STATICMETHOD)) { - Py_ssize_t argc; - PyObject *new_args; - PyObject *self; - argc = PyTuple_GET_SIZE(args); - new_args = PyTuple_GetSlice(args, 1, argc); - if (unlikely(!new_args)) - return NULL; - self = PyTuple_GetItem(args, 0); - if (unlikely(!self)) { - Py_DECREF(new_args); - return NULL; - } - result = __Pyx_CyFunction_CallMethod(func, self, new_args, kw); - Py_DECREF(new_args); - } else { - result = __Pyx_CyFunction_Call(func, args, kw); - } - return result; -} -static PyTypeObject __pyx_CyFunctionType_type = { - PyVarObject_HEAD_INIT(0, 0) - "cython_function_or_method", - sizeof(__pyx_CyFunctionObject), - 0, - (destructor) __Pyx_CyFunction_dealloc, - 0, - 0, - 0, -#if PY_MAJOR_VERSION < 3 - 0, -#else - 0, -#endif - (reprfunc) __Pyx_CyFunction_repr, - 0, - 0, - 0, - 0, - __Pyx_CyFunction_CallAsMethod, - 0, - 0, - 0, - 0, - Py_TPFLAGS_DEFAULT | Py_TPFLAGS_HAVE_GC, - 0, - (traverseproc) __Pyx_CyFunction_traverse, - (inquiry) __Pyx_CyFunction_clear, - 0, -#if PY_VERSION_HEX < 0x030500A0 - offsetof(__pyx_CyFunctionObject, func_weakreflist), -#else - offsetof(PyCFunctionObject, m_weakreflist), -#endif - 0, - 0, - __pyx_CyFunction_methods, - __pyx_CyFunction_members, - __pyx_CyFunction_getsets, - 0, - 0, - __Pyx_CyFunction_descr_get, - 0, - offsetof(__pyx_CyFunctionObject, func_dict), - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, -#if PY_VERSION_HEX >= 0x030400a1 - 0, -#endif -#if PY_VERSION_HEX >= 0x030800b1 - 0, -#endif -#if PY_VERSION_HEX >= 0x030800b4 && PY_VERSION_HEX < 0x03090000 - 0, -#endif -}; -static int __pyx_CyFunction_init(void) { - __pyx_CyFunctionType = __Pyx_FetchCommonType(&__pyx_CyFunctionType_type); - if (unlikely(__pyx_CyFunctionType == NULL)) { - return -1; - } - return 0; -} -static CYTHON_INLINE void *__Pyx_CyFunction_InitDefaults(PyObject *func, size_t size, int pyobjects) { - __pyx_CyFunctionObject *m = (__pyx_CyFunctionObject *) func; - m->defaults = PyObject_Malloc(size); - if (unlikely(!m->defaults)) - return PyErr_NoMemory(); - memset(m->defaults, 0, size); - m->defaults_pyobjects = pyobjects; - return m->defaults; -} -static CYTHON_INLINE void __Pyx_CyFunction_SetDefaultsTuple(PyObject *func, PyObject *tuple) { - __pyx_CyFunctionObject *m = (__pyx_CyFunctionObject *) func; - m->defaults_tuple = tuple; - Py_INCREF(tuple); -} -static CYTHON_INLINE void __Pyx_CyFunction_SetDefaultsKwDict(PyObject *func, PyObject *dict) { - __pyx_CyFunctionObject *m = (__pyx_CyFunctionObject *) func; - m->defaults_kwdict = dict; - Py_INCREF(dict); -} -static CYTHON_INLINE void __Pyx_CyFunction_SetAnnotationsDict(PyObject *func, PyObject *dict) { - __pyx_CyFunctionObject *m = (__pyx_CyFunctionObject *) func; - m->func_annotations = dict; - Py_INCREF(dict); -} - -/* Py3ClassCreate */ -static PyObject *__Pyx_Py3MetaclassPrepare(PyObject *metaclass, PyObject *bases, PyObject *name, - PyObject *qualname, PyObject *mkw, PyObject *modname, PyObject *doc) { - PyObject *ns; - if (metaclass) { - PyObject *prep = __Pyx_PyObject_GetAttrStr(metaclass, __pyx_n_s_prepare); - if (prep) { - PyObject *pargs = PyTuple_Pack(2, name, bases); - if (unlikely(!pargs)) { - Py_DECREF(prep); - return NULL; - } - ns = PyObject_Call(prep, pargs, mkw); - Py_DECREF(prep); - Py_DECREF(pargs); - } else { - if (unlikely(!PyErr_ExceptionMatches(PyExc_AttributeError))) - return NULL; - PyErr_Clear(); - ns = PyDict_New(); - } - } else { - ns = PyDict_New(); - } - if (unlikely(!ns)) - return NULL; - if (unlikely(PyObject_SetItem(ns, __pyx_n_s_module, modname) < 0)) goto bad; - if (unlikely(PyObject_SetItem(ns, __pyx_n_s_qualname, qualname) < 0)) goto bad; - if (unlikely(doc && PyObject_SetItem(ns, __pyx_n_s_doc, doc) < 0)) goto bad; - return ns; -bad: - Py_DECREF(ns); - return NULL; -} -static PyObject *__Pyx_Py3ClassCreate(PyObject *metaclass, PyObject *name, PyObject *bases, - PyObject *dict, PyObject *mkw, - int calculate_metaclass, int allow_py2_metaclass) { - PyObject *result, *margs; - PyObject *owned_metaclass = NULL; - if (allow_py2_metaclass) { - owned_metaclass = PyObject_GetItem(dict, __pyx_n_s_metaclass); - if (owned_metaclass) { - metaclass = owned_metaclass; - } else if (likely(PyErr_ExceptionMatches(PyExc_KeyError))) { - PyErr_Clear(); - } else { - return NULL; - } - } - if (calculate_metaclass && (!metaclass || PyType_Check(metaclass))) { - metaclass = __Pyx_CalculateMetaclass((PyTypeObject*) metaclass, bases); - Py_XDECREF(owned_metaclass); - if (unlikely(!metaclass)) - return NULL; - owned_metaclass = metaclass; - } - margs = PyTuple_Pack(3, name, bases, dict); - if (unlikely(!margs)) { - result = NULL; - } else { - result = PyObject_Call(metaclass, margs, mkw); - Py_DECREF(margs); - } - Py_XDECREF(owned_metaclass); - return result; -} - -/* PyErrFetchRestore */ -#if CYTHON_FAST_THREAD_STATE -static CYTHON_INLINE void __Pyx_ErrRestoreInState(PyThreadState *tstate, PyObject *type, PyObject *value, PyObject *tb) { - PyObject *tmp_type, *tmp_value, *tmp_tb; - tmp_type = tstate->curexc_type; - tmp_value = tstate->curexc_value; - tmp_tb = tstate->curexc_traceback; - tstate->curexc_type = type; - tstate->curexc_value = value; - tstate->curexc_traceback = tb; - Py_XDECREF(tmp_type); - Py_XDECREF(tmp_value); - Py_XDECREF(tmp_tb); -} -static CYTHON_INLINE void __Pyx_ErrFetchInState(PyThreadState *tstate, PyObject **type, PyObject **value, PyObject **tb) { - *type = tstate->curexc_type; - *value = tstate->curexc_value; - *tb = tstate->curexc_traceback; - tstate->curexc_type = 0; - tstate->curexc_value = 0; - tstate->curexc_traceback = 0; -} -#endif - -/* CLineInTraceback */ -#ifndef CYTHON_CLINE_IN_TRACEBACK -static int __Pyx_CLineForTraceback(PyThreadState *tstate, int c_line) { - PyObject *use_cline; - PyObject *ptype, *pvalue, *ptraceback; -#if CYTHON_COMPILING_IN_CPYTHON - PyObject **cython_runtime_dict; -#endif - if (unlikely(!__pyx_cython_runtime)) { - return c_line; - } - __Pyx_ErrFetchInState(tstate, &ptype, &pvalue, &ptraceback); -#if CYTHON_COMPILING_IN_CPYTHON - cython_runtime_dict = _PyObject_GetDictPtr(__pyx_cython_runtime); - if (likely(cython_runtime_dict)) { - __PYX_PY_DICT_LOOKUP_IF_MODIFIED( - use_cline, *cython_runtime_dict, - __Pyx_PyDict_GetItemStr(*cython_runtime_dict, __pyx_n_s_cline_in_traceback)) - } else -#endif - { - PyObject *use_cline_obj = __Pyx_PyObject_GetAttrStr(__pyx_cython_runtime, __pyx_n_s_cline_in_traceback); - if (use_cline_obj) { - use_cline = PyObject_Not(use_cline_obj) ? Py_False : Py_True; - Py_DECREF(use_cline_obj); - } else { - PyErr_Clear(); - use_cline = NULL; - } - } - if (!use_cline) { - c_line = 0; - PyObject_SetAttr(__pyx_cython_runtime, __pyx_n_s_cline_in_traceback, Py_False); - } - else if (use_cline == Py_False || (use_cline != Py_True && PyObject_Not(use_cline) != 0)) { - c_line = 0; - } - __Pyx_ErrRestoreInState(tstate, ptype, pvalue, ptraceback); - return c_line; -} -#endif - -/* CodeObjectCache */ -static int __pyx_bisect_code_objects(__Pyx_CodeObjectCacheEntry* entries, int count, int code_line) { - int start = 0, mid = 0, end = count - 1; - if (end >= 0 && code_line > entries[end].code_line) { - return count; - } - while (start < end) { - mid = start + (end - start) / 2; - if (code_line < entries[mid].code_line) { - end = mid; - } else if (code_line > entries[mid].code_line) { - start = mid + 1; - } else { - return mid; - } - } - if (code_line <= entries[mid].code_line) { - return mid; - } else { - return mid + 1; - } -} -static PyCodeObject *__pyx_find_code_object(int code_line) { - PyCodeObject* code_object; - int pos; - if (unlikely(!code_line) || unlikely(!__pyx_code_cache.entries)) { - return NULL; - } - pos = __pyx_bisect_code_objects(__pyx_code_cache.entries, __pyx_code_cache.count, code_line); - if (unlikely(pos >= __pyx_code_cache.count) || unlikely(__pyx_code_cache.entries[pos].code_line != code_line)) { - return NULL; - } - code_object = __pyx_code_cache.entries[pos].code_object; - Py_INCREF(code_object); - return code_object; -} -static void __pyx_insert_code_object(int code_line, PyCodeObject* code_object) { - int pos, i; - __Pyx_CodeObjectCacheEntry* entries = __pyx_code_cache.entries; - if (unlikely(!code_line)) { - return; - } - if (unlikely(!entries)) { - entries = (__Pyx_CodeObjectCacheEntry*)PyMem_Malloc(64*sizeof(__Pyx_CodeObjectCacheEntry)); - if (likely(entries)) { - __pyx_code_cache.entries = entries; - __pyx_code_cache.max_count = 64; - __pyx_code_cache.count = 1; - entries[0].code_line = code_line; - entries[0].code_object = code_object; - Py_INCREF(code_object); - } - return; - } - pos = __pyx_bisect_code_objects(__pyx_code_cache.entries, __pyx_code_cache.count, code_line); - if ((pos < __pyx_code_cache.count) && unlikely(__pyx_code_cache.entries[pos].code_line == code_line)) { - PyCodeObject* tmp = entries[pos].code_object; - entries[pos].code_object = code_object; - Py_DECREF(tmp); - return; - } - if (__pyx_code_cache.count == __pyx_code_cache.max_count) { - int new_max = __pyx_code_cache.max_count + 64; - entries = (__Pyx_CodeObjectCacheEntry*)PyMem_Realloc( - __pyx_code_cache.entries, (size_t)new_max*sizeof(__Pyx_CodeObjectCacheEntry)); - if (unlikely(!entries)) { - return; - } - __pyx_code_cache.entries = entries; - __pyx_code_cache.max_count = new_max; - } - for (i=__pyx_code_cache.count; i>pos; i--) { - entries[i] = entries[i-1]; - } - entries[pos].code_line = code_line; - entries[pos].code_object = code_object; - __pyx_code_cache.count++; - Py_INCREF(code_object); -} - -/* AddTraceback */ -#include "compile.h" -#include "frameobject.h" -#include "traceback.h" -static PyCodeObject* __Pyx_CreateCodeObjectForTraceback( - const char *funcname, int c_line, - int py_line, const char *filename) { - PyCodeObject *py_code = 0; - PyObject *py_srcfile = 0; - PyObject *py_funcname = 0; - #if PY_MAJOR_VERSION < 3 - py_srcfile = PyString_FromString(filename); - #else - py_srcfile = PyUnicode_FromString(filename); - #endif - if (!py_srcfile) goto bad; - if (c_line) { - #if PY_MAJOR_VERSION < 3 - py_funcname = PyString_FromFormat( "%s (%s:%d)", funcname, __pyx_cfilenm, c_line); - #else - py_funcname = PyUnicode_FromFormat( "%s (%s:%d)", funcname, __pyx_cfilenm, c_line); - #endif - } - else { - #if PY_MAJOR_VERSION < 3 - py_funcname = PyString_FromString(funcname); - #else - py_funcname = PyUnicode_FromString(funcname); - #endif - } - if (!py_funcname) goto bad; - py_code = __Pyx_PyCode_New( - 0, - 0, - 0, - 0, - 0, - __pyx_empty_bytes, /*PyObject *code,*/ - __pyx_empty_tuple, /*PyObject *consts,*/ - __pyx_empty_tuple, /*PyObject *names,*/ - __pyx_empty_tuple, /*PyObject *varnames,*/ - __pyx_empty_tuple, /*PyObject *freevars,*/ - __pyx_empty_tuple, /*PyObject *cellvars,*/ - py_srcfile, /*PyObject *filename,*/ - py_funcname, /*PyObject *name,*/ - py_line, - __pyx_empty_bytes /*PyObject *lnotab*/ - ); - Py_DECREF(py_srcfile); - Py_DECREF(py_funcname); - return py_code; -bad: - Py_XDECREF(py_srcfile); - Py_XDECREF(py_funcname); - return NULL; -} -static void __Pyx_AddTraceback(const char *funcname, int c_line, - int py_line, const char *filename) { - PyCodeObject *py_code = 0; - PyFrameObject *py_frame = 0; - PyThreadState *tstate = __Pyx_PyThreadState_Current; - if (c_line) { - c_line = __Pyx_CLineForTraceback(tstate, c_line); - } - py_code = __pyx_find_code_object(c_line ? -c_line : py_line); - if (!py_code) { - py_code = __Pyx_CreateCodeObjectForTraceback( - funcname, c_line, py_line, filename); - if (!py_code) goto bad; - __pyx_insert_code_object(c_line ? -c_line : py_line, py_code); - } - py_frame = PyFrame_New( - tstate, /*PyThreadState *tstate,*/ - py_code, /*PyCodeObject *code,*/ - __pyx_d, /*PyObject *globals,*/ - 0 /*PyObject *locals*/ - ); - if (!py_frame) goto bad; - __Pyx_PyFrame_SetLineNumber(py_frame, py_line); - PyTraceBack_Here(py_frame); -bad: - Py_XDECREF(py_code); - Py_XDECREF(py_frame); -} - -/* CIntFromPyVerify */ -#define __PYX_VERIFY_RETURN_INT(target_type, func_type, func_value)\ - __PYX__VERIFY_RETURN_INT(target_type, func_type, func_value, 0) -#define __PYX_VERIFY_RETURN_INT_EXC(target_type, func_type, func_value)\ - __PYX__VERIFY_RETURN_INT(target_type, func_type, func_value, 1) -#define __PYX__VERIFY_RETURN_INT(target_type, func_type, func_value, exc)\ - {\ - func_type value = func_value;\ - if (sizeof(target_type) < sizeof(func_type)) {\ - if (unlikely(value != (func_type) (target_type) value)) {\ - func_type zero = 0;\ - if (exc && unlikely(value == (func_type)-1 && PyErr_Occurred()))\ - return (target_type) -1;\ - if (is_unsigned && unlikely(value < zero))\ - goto raise_neg_overflow;\ - else\ - goto raise_overflow;\ - }\ - }\ - return (target_type) value;\ - } - -/* CIntToPy */ -static CYTHON_INLINE PyObject* __Pyx_PyInt_From_unsigned_int(unsigned int value) { - const unsigned int neg_one = (unsigned int) ((unsigned int) 0 - (unsigned int) 1), const_zero = (unsigned int) 0; - const int is_unsigned = neg_one > const_zero; - if (is_unsigned) { - if (sizeof(unsigned int) < sizeof(long)) { - return PyInt_FromLong((long) value); - } else if (sizeof(unsigned int) <= sizeof(unsigned long)) { - return PyLong_FromUnsignedLong((unsigned long) value); -#ifdef HAVE_LONG_LONG - } else if (sizeof(unsigned int) <= sizeof(unsigned PY_LONG_LONG)) { - return PyLong_FromUnsignedLongLong((unsigned PY_LONG_LONG) value); -#endif - } - } else { - if (sizeof(unsigned int) <= sizeof(long)) { - return PyInt_FromLong((long) value); -#ifdef HAVE_LONG_LONG - } else if (sizeof(unsigned int) <= sizeof(PY_LONG_LONG)) { - return PyLong_FromLongLong((PY_LONG_LONG) value); -#endif - } - } - { - int one = 1; int little = (int)*(unsigned char *)&one; - unsigned char *bytes = (unsigned char *)&value; - return _PyLong_FromByteArray(bytes, sizeof(unsigned int), - little, !is_unsigned); - } -} - -/* CIntFromPy */ -static CYTHON_INLINE unsigned int __Pyx_PyInt_As_unsigned_int(PyObject *x) { - const unsigned int neg_one = (unsigned int) ((unsigned int) 0 - (unsigned int) 1), const_zero = (unsigned int) 0; - const int is_unsigned = neg_one > const_zero; -#if PY_MAJOR_VERSION < 3 - if (likely(PyInt_Check(x))) { - if (sizeof(unsigned int) < sizeof(long)) { - __PYX_VERIFY_RETURN_INT(unsigned int, long, PyInt_AS_LONG(x)) - } else { - long val = PyInt_AS_LONG(x); - if (is_unsigned && unlikely(val < 0)) { - goto raise_neg_overflow; - } - return (unsigned int) val; - } - } else -#endif - if (likely(PyLong_Check(x))) { - if (is_unsigned) { -#if CYTHON_USE_PYLONG_INTERNALS - const digit* digits = ((PyLongObject*)x)->ob_digit; - switch (Py_SIZE(x)) { - case 0: return (unsigned int) 0; - case 1: __PYX_VERIFY_RETURN_INT(unsigned int, digit, digits[0]) - case 2: - if (8 * sizeof(unsigned int) > 1 * PyLong_SHIFT) { - if (8 * sizeof(unsigned long) > 2 * PyLong_SHIFT) { - __PYX_VERIFY_RETURN_INT(unsigned int, unsigned long, (((((unsigned long)digits[1]) << PyLong_SHIFT) | (unsigned long)digits[0]))) - } else if (8 * sizeof(unsigned int) >= 2 * PyLong_SHIFT) { - return (unsigned int) (((((unsigned int)digits[1]) << PyLong_SHIFT) | (unsigned int)digits[0])); - } - } - break; - case 3: - if (8 * sizeof(unsigned int) > 2 * PyLong_SHIFT) { - if (8 * sizeof(unsigned long) > 3 * PyLong_SHIFT) { - __PYX_VERIFY_RETURN_INT(unsigned int, unsigned long, (((((((unsigned long)digits[2]) << PyLong_SHIFT) | (unsigned long)digits[1]) << PyLong_SHIFT) | (unsigned long)digits[0]))) - } else if (8 * sizeof(unsigned int) >= 3 * PyLong_SHIFT) { - return (unsigned int) (((((((unsigned int)digits[2]) << PyLong_SHIFT) | (unsigned int)digits[1]) << PyLong_SHIFT) | (unsigned int)digits[0])); - } - } - break; - case 4: - if (8 * sizeof(unsigned int) > 3 * PyLong_SHIFT) { - if (8 * sizeof(unsigned long) > 4 * PyLong_SHIFT) { - __PYX_VERIFY_RETURN_INT(unsigned int, unsigned long, (((((((((unsigned long)digits[3]) << PyLong_SHIFT) | (unsigned long)digits[2]) << PyLong_SHIFT) | (unsigned long)digits[1]) << PyLong_SHIFT) | (unsigned long)digits[0]))) - } else if (8 * sizeof(unsigned int) >= 4 * PyLong_SHIFT) { - return (unsigned int) (((((((((unsigned int)digits[3]) << PyLong_SHIFT) | (unsigned int)digits[2]) << PyLong_SHIFT) | (unsigned int)digits[1]) << PyLong_SHIFT) | (unsigned int)digits[0])); - } - } - break; - } -#endif -#if CYTHON_COMPILING_IN_CPYTHON - if (unlikely(Py_SIZE(x) < 0)) { - goto raise_neg_overflow; - } -#else - { - int result = PyObject_RichCompareBool(x, Py_False, Py_LT); - if (unlikely(result < 0)) - return (unsigned int) -1; - if (unlikely(result == 1)) - goto raise_neg_overflow; - } -#endif - if (sizeof(unsigned int) <= sizeof(unsigned long)) { - __PYX_VERIFY_RETURN_INT_EXC(unsigned int, unsigned long, PyLong_AsUnsignedLong(x)) -#ifdef HAVE_LONG_LONG - } else if (sizeof(unsigned int) <= sizeof(unsigned PY_LONG_LONG)) { - __PYX_VERIFY_RETURN_INT_EXC(unsigned int, unsigned PY_LONG_LONG, PyLong_AsUnsignedLongLong(x)) -#endif - } - } else { -#if CYTHON_USE_PYLONG_INTERNALS - const digit* digits = ((PyLongObject*)x)->ob_digit; - switch (Py_SIZE(x)) { - case 0: return (unsigned int) 0; - case -1: __PYX_VERIFY_RETURN_INT(unsigned int, sdigit, (sdigit) (-(sdigit)digits[0])) - case 1: __PYX_VERIFY_RETURN_INT(unsigned int, digit, +digits[0]) - case -2: - if (8 * sizeof(unsigned int) - 1 > 1 * PyLong_SHIFT) { - if (8 * sizeof(unsigned long) > 2 * PyLong_SHIFT) { - __PYX_VERIFY_RETURN_INT(unsigned int, long, -(long) (((((unsigned long)digits[1]) << PyLong_SHIFT) | (unsigned long)digits[0]))) - } else if (8 * sizeof(unsigned int) - 1 > 2 * PyLong_SHIFT) { - return (unsigned int) (((unsigned int)-1)*(((((unsigned int)digits[1]) << PyLong_SHIFT) | (unsigned int)digits[0]))); - } - } - break; - case 2: - if (8 * sizeof(unsigned int) > 1 * PyLong_SHIFT) { - if (8 * sizeof(unsigned long) > 2 * PyLong_SHIFT) { - __PYX_VERIFY_RETURN_INT(unsigned int, unsigned long, (((((unsigned long)digits[1]) << PyLong_SHIFT) | (unsigned long)digits[0]))) - } else if (8 * sizeof(unsigned int) - 1 > 2 * PyLong_SHIFT) { - return (unsigned int) ((((((unsigned int)digits[1]) << PyLong_SHIFT) | (unsigned int)digits[0]))); - } - } - break; - case -3: - if (8 * sizeof(unsigned int) - 1 > 2 * PyLong_SHIFT) { - if (8 * sizeof(unsigned long) > 3 * PyLong_SHIFT) { - __PYX_VERIFY_RETURN_INT(unsigned int, long, -(long) (((((((unsigned long)digits[2]) << PyLong_SHIFT) | (unsigned long)digits[1]) << PyLong_SHIFT) | (unsigned long)digits[0]))) - } else if (8 * sizeof(unsigned int) - 1 > 3 * PyLong_SHIFT) { - return (unsigned int) (((unsigned int)-1)*(((((((unsigned int)digits[2]) << PyLong_SHIFT) | (unsigned int)digits[1]) << PyLong_SHIFT) | (unsigned int)digits[0]))); - } - } - break; - case 3: - if (8 * sizeof(unsigned int) > 2 * PyLong_SHIFT) { - if (8 * sizeof(unsigned long) > 3 * PyLong_SHIFT) { - __PYX_VERIFY_RETURN_INT(unsigned int, unsigned long, (((((((unsigned long)digits[2]) << PyLong_SHIFT) | (unsigned long)digits[1]) << PyLong_SHIFT) | (unsigned long)digits[0]))) - } else if (8 * sizeof(unsigned int) - 1 > 3 * PyLong_SHIFT) { - return (unsigned int) ((((((((unsigned int)digits[2]) << PyLong_SHIFT) | (unsigned int)digits[1]) << PyLong_SHIFT) | (unsigned int)digits[0]))); - } - } - break; - case -4: - if (8 * sizeof(unsigned int) - 1 > 3 * PyLong_SHIFT) { - if (8 * sizeof(unsigned long) > 4 * PyLong_SHIFT) { - __PYX_VERIFY_RETURN_INT(unsigned int, long, -(long) (((((((((unsigned long)digits[3]) << PyLong_SHIFT) | (unsigned long)digits[2]) << PyLong_SHIFT) | (unsigned long)digits[1]) << PyLong_SHIFT) | (unsigned long)digits[0]))) - } else if (8 * sizeof(unsigned int) - 1 > 4 * PyLong_SHIFT) { - return (unsigned int) (((unsigned int)-1)*(((((((((unsigned int)digits[3]) << PyLong_SHIFT) | (unsigned int)digits[2]) << PyLong_SHIFT) | (unsigned int)digits[1]) << PyLong_SHIFT) | (unsigned int)digits[0]))); - } - } - break; - case 4: - if (8 * sizeof(unsigned int) > 3 * PyLong_SHIFT) { - if (8 * sizeof(unsigned long) > 4 * PyLong_SHIFT) { - __PYX_VERIFY_RETURN_INT(unsigned int, unsigned long, (((((((((unsigned long)digits[3]) << PyLong_SHIFT) | (unsigned long)digits[2]) << PyLong_SHIFT) | (unsigned long)digits[1]) << PyLong_SHIFT) | (unsigned long)digits[0]))) - } else if (8 * sizeof(unsigned int) - 1 > 4 * PyLong_SHIFT) { - return (unsigned int) ((((((((((unsigned int)digits[3]) << PyLong_SHIFT) | (unsigned int)digits[2]) << PyLong_SHIFT) | (unsigned int)digits[1]) << PyLong_SHIFT) | (unsigned int)digits[0]))); - } - } - break; - } -#endif - if (sizeof(unsigned int) <= sizeof(long)) { - __PYX_VERIFY_RETURN_INT_EXC(unsigned int, long, PyLong_AsLong(x)) -#ifdef HAVE_LONG_LONG - } else if (sizeof(unsigned int) <= sizeof(PY_LONG_LONG)) { - __PYX_VERIFY_RETURN_INT_EXC(unsigned int, PY_LONG_LONG, PyLong_AsLongLong(x)) -#endif - } - } - { -#if CYTHON_COMPILING_IN_PYPY && !defined(_PyLong_AsByteArray) - PyErr_SetString(PyExc_RuntimeError, - "_PyLong_AsByteArray() not available in PyPy, cannot convert large numbers"); -#else - unsigned int val; - PyObject *v = __Pyx_PyNumber_IntOrLong(x); - #if PY_MAJOR_VERSION < 3 - if (likely(v) && !PyLong_Check(v)) { - PyObject *tmp = v; - v = PyNumber_Long(tmp); - Py_DECREF(tmp); - } - #endif - if (likely(v)) { - int one = 1; int is_little = (int)*(unsigned char *)&one; - unsigned char *bytes = (unsigned char *)&val; - int ret = _PyLong_AsByteArray((PyLongObject *)v, - bytes, sizeof(val), - is_little, !is_unsigned); - Py_DECREF(v); - if (likely(!ret)) - return val; - } -#endif - return (unsigned int) -1; - } - } else { - unsigned int val; - PyObject *tmp = __Pyx_PyNumber_IntOrLong(x); - if (!tmp) return (unsigned int) -1; - val = __Pyx_PyInt_As_unsigned_int(tmp); - Py_DECREF(tmp); - return val; - } -raise_overflow: - PyErr_SetString(PyExc_OverflowError, - "value too large to convert to unsigned int"); - return (unsigned int) -1; -raise_neg_overflow: - PyErr_SetString(PyExc_OverflowError, - "can't convert negative value to unsigned int"); - return (unsigned int) -1; -} - -/* CIntToPy */ -static CYTHON_INLINE PyObject* __Pyx_PyInt_From_long(long value) { - const long neg_one = (long) ((long) 0 - (long) 1), const_zero = (long) 0; - const int is_unsigned = neg_one > const_zero; - if (is_unsigned) { - if (sizeof(long) < sizeof(long)) { - return PyInt_FromLong((long) value); - } else if (sizeof(long) <= sizeof(unsigned long)) { - return PyLong_FromUnsignedLong((unsigned long) value); -#ifdef HAVE_LONG_LONG - } else if (sizeof(long) <= sizeof(unsigned PY_LONG_LONG)) { - return PyLong_FromUnsignedLongLong((unsigned PY_LONG_LONG) value); -#endif - } - } else { - if (sizeof(long) <= sizeof(long)) { - return PyInt_FromLong((long) value); -#ifdef HAVE_LONG_LONG - } else if (sizeof(long) <= sizeof(PY_LONG_LONG)) { - return PyLong_FromLongLong((PY_LONG_LONG) value); -#endif - } - } - { - int one = 1; int little = (int)*(unsigned char *)&one; - unsigned char *bytes = (unsigned char *)&value; - return _PyLong_FromByteArray(bytes, sizeof(long), - little, !is_unsigned); - } -} - -/* CIntFromPy */ -static CYTHON_INLINE long __Pyx_PyInt_As_long(PyObject *x) { - const long neg_one = (long) ((long) 0 - (long) 1), const_zero = (long) 0; - const int is_unsigned = neg_one > const_zero; -#if PY_MAJOR_VERSION < 3 - if (likely(PyInt_Check(x))) { - if (sizeof(long) < sizeof(long)) { - __PYX_VERIFY_RETURN_INT(long, long, PyInt_AS_LONG(x)) - } else { - long val = PyInt_AS_LONG(x); - if (is_unsigned && unlikely(val < 0)) { - goto raise_neg_overflow; - } - return (long) val; - } - } else -#endif - if (likely(PyLong_Check(x))) { - if (is_unsigned) { -#if CYTHON_USE_PYLONG_INTERNALS - const digit* digits = ((PyLongObject*)x)->ob_digit; - switch (Py_SIZE(x)) { - case 0: return (long) 0; - case 1: __PYX_VERIFY_RETURN_INT(long, digit, digits[0]) - case 2: - if (8 * sizeof(long) > 1 * PyLong_SHIFT) { - if (8 * sizeof(unsigned long) > 2 * PyLong_SHIFT) { - __PYX_VERIFY_RETURN_INT(long, unsigned long, (((((unsigned long)digits[1]) << PyLong_SHIFT) | (unsigned long)digits[0]))) - } else if (8 * sizeof(long) >= 2 * PyLong_SHIFT) { - return (long) (((((long)digits[1]) << PyLong_SHIFT) | (long)digits[0])); - } - } - break; - case 3: - if (8 * sizeof(long) > 2 * PyLong_SHIFT) { - if (8 * sizeof(unsigned long) > 3 * PyLong_SHIFT) { - __PYX_VERIFY_RETURN_INT(long, unsigned long, (((((((unsigned long)digits[2]) << PyLong_SHIFT) | (unsigned long)digits[1]) << PyLong_SHIFT) | (unsigned long)digits[0]))) - } else if (8 * sizeof(long) >= 3 * PyLong_SHIFT) { - return (long) (((((((long)digits[2]) << PyLong_SHIFT) | (long)digits[1]) << PyLong_SHIFT) | (long)digits[0])); - } - } - break; - case 4: - if (8 * sizeof(long) > 3 * PyLong_SHIFT) { - if (8 * sizeof(unsigned long) > 4 * PyLong_SHIFT) { - __PYX_VERIFY_RETURN_INT(long, unsigned long, (((((((((unsigned long)digits[3]) << PyLong_SHIFT) | (unsigned long)digits[2]) << PyLong_SHIFT) | (unsigned long)digits[1]) << PyLong_SHIFT) | (unsigned long)digits[0]))) - } else if (8 * sizeof(long) >= 4 * PyLong_SHIFT) { - return (long) (((((((((long)digits[3]) << PyLong_SHIFT) | (long)digits[2]) << PyLong_SHIFT) | (long)digits[1]) << PyLong_SHIFT) | (long)digits[0])); - } - } - break; - } -#endif -#if CYTHON_COMPILING_IN_CPYTHON - if (unlikely(Py_SIZE(x) < 0)) { - goto raise_neg_overflow; - } -#else - { - int result = PyObject_RichCompareBool(x, Py_False, Py_LT); - if (unlikely(result < 0)) - return (long) -1; - if (unlikely(result == 1)) - goto raise_neg_overflow; - } -#endif - if (sizeof(long) <= sizeof(unsigned long)) { - __PYX_VERIFY_RETURN_INT_EXC(long, unsigned long, PyLong_AsUnsignedLong(x)) -#ifdef HAVE_LONG_LONG - } else if (sizeof(long) <= sizeof(unsigned PY_LONG_LONG)) { - __PYX_VERIFY_RETURN_INT_EXC(long, unsigned PY_LONG_LONG, PyLong_AsUnsignedLongLong(x)) -#endif - } - } else { -#if CYTHON_USE_PYLONG_INTERNALS - const digit* digits = ((PyLongObject*)x)->ob_digit; - switch (Py_SIZE(x)) { - case 0: return (long) 0; - case -1: __PYX_VERIFY_RETURN_INT(long, sdigit, (sdigit) (-(sdigit)digits[0])) - case 1: __PYX_VERIFY_RETURN_INT(long, digit, +digits[0]) - case -2: - if (8 * sizeof(long) - 1 > 1 * PyLong_SHIFT) { - if (8 * sizeof(unsigned long) > 2 * PyLong_SHIFT) { - __PYX_VERIFY_RETURN_INT(long, long, -(long) (((((unsigned long)digits[1]) << PyLong_SHIFT) | (unsigned long)digits[0]))) - } else if (8 * sizeof(long) - 1 > 2 * PyLong_SHIFT) { - return (long) (((long)-1)*(((((long)digits[1]) << PyLong_SHIFT) | (long)digits[0]))); - } - } - break; - case 2: - if (8 * sizeof(long) > 1 * PyLong_SHIFT) { - if (8 * sizeof(unsigned long) > 2 * PyLong_SHIFT) { - __PYX_VERIFY_RETURN_INT(long, unsigned long, (((((unsigned long)digits[1]) << PyLong_SHIFT) | (unsigned long)digits[0]))) - } else if (8 * sizeof(long) - 1 > 2 * PyLong_SHIFT) { - return (long) ((((((long)digits[1]) << PyLong_SHIFT) | (long)digits[0]))); - } - } - break; - case -3: - if (8 * sizeof(long) - 1 > 2 * PyLong_SHIFT) { - if (8 * sizeof(unsigned long) > 3 * PyLong_SHIFT) { - __PYX_VERIFY_RETURN_INT(long, long, -(long) (((((((unsigned long)digits[2]) << PyLong_SHIFT) | (unsigned long)digits[1]) << PyLong_SHIFT) | (unsigned long)digits[0]))) - } else if (8 * sizeof(long) - 1 > 3 * PyLong_SHIFT) { - return (long) (((long)-1)*(((((((long)digits[2]) << PyLong_SHIFT) | (long)digits[1]) << PyLong_SHIFT) | (long)digits[0]))); - } - } - break; - case 3: - if (8 * sizeof(long) > 2 * PyLong_SHIFT) { - if (8 * sizeof(unsigned long) > 3 * PyLong_SHIFT) { - __PYX_VERIFY_RETURN_INT(long, unsigned long, (((((((unsigned long)digits[2]) << PyLong_SHIFT) | (unsigned long)digits[1]) << PyLong_SHIFT) | (unsigned long)digits[0]))) - } else if (8 * sizeof(long) - 1 > 3 * PyLong_SHIFT) { - return (long) ((((((((long)digits[2]) << PyLong_SHIFT) | (long)digits[1]) << PyLong_SHIFT) | (long)digits[0]))); - } - } - break; - case -4: - if (8 * sizeof(long) - 1 > 3 * PyLong_SHIFT) { - if (8 * sizeof(unsigned long) > 4 * PyLong_SHIFT) { - __PYX_VERIFY_RETURN_INT(long, long, -(long) (((((((((unsigned long)digits[3]) << PyLong_SHIFT) | (unsigned long)digits[2]) << PyLong_SHIFT) | (unsigned long)digits[1]) << PyLong_SHIFT) | (unsigned long)digits[0]))) - } else if (8 * sizeof(long) - 1 > 4 * PyLong_SHIFT) { - return (long) (((long)-1)*(((((((((long)digits[3]) << PyLong_SHIFT) | (long)digits[2]) << PyLong_SHIFT) | (long)digits[1]) << PyLong_SHIFT) | (long)digits[0]))); - } - } - break; - case 4: - if (8 * sizeof(long) > 3 * PyLong_SHIFT) { - if (8 * sizeof(unsigned long) > 4 * PyLong_SHIFT) { - __PYX_VERIFY_RETURN_INT(long, unsigned long, (((((((((unsigned long)digits[3]) << PyLong_SHIFT) | (unsigned long)digits[2]) << PyLong_SHIFT) | (unsigned long)digits[1]) << PyLong_SHIFT) | (unsigned long)digits[0]))) - } else if (8 * sizeof(long) - 1 > 4 * PyLong_SHIFT) { - return (long) ((((((((((long)digits[3]) << PyLong_SHIFT) | (long)digits[2]) << PyLong_SHIFT) | (long)digits[1]) << PyLong_SHIFT) | (long)digits[0]))); - } - } - break; - } -#endif - if (sizeof(long) <= sizeof(long)) { - __PYX_VERIFY_RETURN_INT_EXC(long, long, PyLong_AsLong(x)) -#ifdef HAVE_LONG_LONG - } else if (sizeof(long) <= sizeof(PY_LONG_LONG)) { - __PYX_VERIFY_RETURN_INT_EXC(long, PY_LONG_LONG, PyLong_AsLongLong(x)) -#endif - } - } - { -#if CYTHON_COMPILING_IN_PYPY && !defined(_PyLong_AsByteArray) - PyErr_SetString(PyExc_RuntimeError, - "_PyLong_AsByteArray() not available in PyPy, cannot convert large numbers"); -#else - long val; - PyObject *v = __Pyx_PyNumber_IntOrLong(x); - #if PY_MAJOR_VERSION < 3 - if (likely(v) && !PyLong_Check(v)) { - PyObject *tmp = v; - v = PyNumber_Long(tmp); - Py_DECREF(tmp); - } - #endif - if (likely(v)) { - int one = 1; int is_little = (int)*(unsigned char *)&one; - unsigned char *bytes = (unsigned char *)&val; - int ret = _PyLong_AsByteArray((PyLongObject *)v, - bytes, sizeof(val), - is_little, !is_unsigned); - Py_DECREF(v); - if (likely(!ret)) - return val; - } -#endif - return (long) -1; - } - } else { - long val; - PyObject *tmp = __Pyx_PyNumber_IntOrLong(x); - if (!tmp) return (long) -1; - val = __Pyx_PyInt_As_long(tmp); - Py_DECREF(tmp); - return val; - } -raise_overflow: - PyErr_SetString(PyExc_OverflowError, - "value too large to convert to long"); - return (long) -1; -raise_neg_overflow: - PyErr_SetString(PyExc_OverflowError, - "can't convert negative value to long"); - return (long) -1; -} - -/* CIntFromPy */ -static CYTHON_INLINE int __Pyx_PyInt_As_int(PyObject *x) { - const int neg_one = (int) ((int) 0 - (int) 1), const_zero = (int) 0; - const int is_unsigned = neg_one > const_zero; -#if PY_MAJOR_VERSION < 3 - if (likely(PyInt_Check(x))) { - if (sizeof(int) < sizeof(long)) { - __PYX_VERIFY_RETURN_INT(int, long, PyInt_AS_LONG(x)) - } else { - long val = PyInt_AS_LONG(x); - if (is_unsigned && unlikely(val < 0)) { - goto raise_neg_overflow; - } - return (int) val; - } - } else -#endif - if (likely(PyLong_Check(x))) { - if (is_unsigned) { -#if CYTHON_USE_PYLONG_INTERNALS - const digit* digits = ((PyLongObject*)x)->ob_digit; - switch (Py_SIZE(x)) { - case 0: return (int) 0; - case 1: __PYX_VERIFY_RETURN_INT(int, digit, digits[0]) - case 2: - if (8 * sizeof(int) > 1 * PyLong_SHIFT) { - if (8 * sizeof(unsigned long) > 2 * PyLong_SHIFT) { - __PYX_VERIFY_RETURN_INT(int, unsigned long, (((((unsigned long)digits[1]) << PyLong_SHIFT) | (unsigned long)digits[0]))) - } else if (8 * sizeof(int) >= 2 * PyLong_SHIFT) { - return (int) (((((int)digits[1]) << PyLong_SHIFT) | (int)digits[0])); - } - } - break; - case 3: - if (8 * sizeof(int) > 2 * PyLong_SHIFT) { - if (8 * sizeof(unsigned long) > 3 * PyLong_SHIFT) { - __PYX_VERIFY_RETURN_INT(int, unsigned long, (((((((unsigned long)digits[2]) << PyLong_SHIFT) | (unsigned long)digits[1]) << PyLong_SHIFT) | (unsigned long)digits[0]))) - } else if (8 * sizeof(int) >= 3 * PyLong_SHIFT) { - return (int) (((((((int)digits[2]) << PyLong_SHIFT) | (int)digits[1]) << PyLong_SHIFT) | (int)digits[0])); - } - } - break; - case 4: - if (8 * sizeof(int) > 3 * PyLong_SHIFT) { - if (8 * sizeof(unsigned long) > 4 * PyLong_SHIFT) { - __PYX_VERIFY_RETURN_INT(int, unsigned long, (((((((((unsigned long)digits[3]) << PyLong_SHIFT) | (unsigned long)digits[2]) << PyLong_SHIFT) | (unsigned long)digits[1]) << PyLong_SHIFT) | (unsigned long)digits[0]))) - } else if (8 * sizeof(int) >= 4 * PyLong_SHIFT) { - return (int) (((((((((int)digits[3]) << PyLong_SHIFT) | (int)digits[2]) << PyLong_SHIFT) | (int)digits[1]) << PyLong_SHIFT) | (int)digits[0])); - } - } - break; - } -#endif -#if CYTHON_COMPILING_IN_CPYTHON - if (unlikely(Py_SIZE(x) < 0)) { - goto raise_neg_overflow; - } -#else - { - int result = PyObject_RichCompareBool(x, Py_False, Py_LT); - if (unlikely(result < 0)) - return (int) -1; - if (unlikely(result == 1)) - goto raise_neg_overflow; - } -#endif - if (sizeof(int) <= sizeof(unsigned long)) { - __PYX_VERIFY_RETURN_INT_EXC(int, unsigned long, PyLong_AsUnsignedLong(x)) -#ifdef HAVE_LONG_LONG - } else if (sizeof(int) <= sizeof(unsigned PY_LONG_LONG)) { - __PYX_VERIFY_RETURN_INT_EXC(int, unsigned PY_LONG_LONG, PyLong_AsUnsignedLongLong(x)) -#endif - } - } else { -#if CYTHON_USE_PYLONG_INTERNALS - const digit* digits = ((PyLongObject*)x)->ob_digit; - switch (Py_SIZE(x)) { - case 0: return (int) 0; - case -1: __PYX_VERIFY_RETURN_INT(int, sdigit, (sdigit) (-(sdigit)digits[0])) - case 1: __PYX_VERIFY_RETURN_INT(int, digit, +digits[0]) - case -2: - if (8 * sizeof(int) - 1 > 1 * PyLong_SHIFT) { - if (8 * sizeof(unsigned long) > 2 * PyLong_SHIFT) { - __PYX_VERIFY_RETURN_INT(int, long, -(long) (((((unsigned long)digits[1]) << PyLong_SHIFT) | (unsigned long)digits[0]))) - } else if (8 * sizeof(int) - 1 > 2 * PyLong_SHIFT) { - return (int) (((int)-1)*(((((int)digits[1]) << PyLong_SHIFT) | (int)digits[0]))); - } - } - break; - case 2: - if (8 * sizeof(int) > 1 * PyLong_SHIFT) { - if (8 * sizeof(unsigned long) > 2 * PyLong_SHIFT) { - __PYX_VERIFY_RETURN_INT(int, unsigned long, (((((unsigned long)digits[1]) << PyLong_SHIFT) | (unsigned long)digits[0]))) - } else if (8 * sizeof(int) - 1 > 2 * PyLong_SHIFT) { - return (int) ((((((int)digits[1]) << PyLong_SHIFT) | (int)digits[0]))); - } - } - break; - case -3: - if (8 * sizeof(int) - 1 > 2 * PyLong_SHIFT) { - if (8 * sizeof(unsigned long) > 3 * PyLong_SHIFT) { - __PYX_VERIFY_RETURN_INT(int, long, -(long) (((((((unsigned long)digits[2]) << PyLong_SHIFT) | (unsigned long)digits[1]) << PyLong_SHIFT) | (unsigned long)digits[0]))) - } else if (8 * sizeof(int) - 1 > 3 * PyLong_SHIFT) { - return (int) (((int)-1)*(((((((int)digits[2]) << PyLong_SHIFT) | (int)digits[1]) << PyLong_SHIFT) | (int)digits[0]))); - } - } - break; - case 3: - if (8 * sizeof(int) > 2 * PyLong_SHIFT) { - if (8 * sizeof(unsigned long) > 3 * PyLong_SHIFT) { - __PYX_VERIFY_RETURN_INT(int, unsigned long, (((((((unsigned long)digits[2]) << PyLong_SHIFT) | (unsigned long)digits[1]) << PyLong_SHIFT) | (unsigned long)digits[0]))) - } else if (8 * sizeof(int) - 1 > 3 * PyLong_SHIFT) { - return (int) ((((((((int)digits[2]) << PyLong_SHIFT) | (int)digits[1]) << PyLong_SHIFT) | (int)digits[0]))); - } - } - break; - case -4: - if (8 * sizeof(int) - 1 > 3 * PyLong_SHIFT) { - if (8 * sizeof(unsigned long) > 4 * PyLong_SHIFT) { - __PYX_VERIFY_RETURN_INT(int, long, -(long) (((((((((unsigned long)digits[3]) << PyLong_SHIFT) | (unsigned long)digits[2]) << PyLong_SHIFT) | (unsigned long)digits[1]) << PyLong_SHIFT) | (unsigned long)digits[0]))) - } else if (8 * sizeof(int) - 1 > 4 * PyLong_SHIFT) { - return (int) (((int)-1)*(((((((((int)digits[3]) << PyLong_SHIFT) | (int)digits[2]) << PyLong_SHIFT) | (int)digits[1]) << PyLong_SHIFT) | (int)digits[0]))); - } - } - break; - case 4: - if (8 * sizeof(int) > 3 * PyLong_SHIFT) { - if (8 * sizeof(unsigned long) > 4 * PyLong_SHIFT) { - __PYX_VERIFY_RETURN_INT(int, unsigned long, (((((((((unsigned long)digits[3]) << PyLong_SHIFT) | (unsigned long)digits[2]) << PyLong_SHIFT) | (unsigned long)digits[1]) << PyLong_SHIFT) | (unsigned long)digits[0]))) - } else if (8 * sizeof(int) - 1 > 4 * PyLong_SHIFT) { - return (int) ((((((((((int)digits[3]) << PyLong_SHIFT) | (int)digits[2]) << PyLong_SHIFT) | (int)digits[1]) << PyLong_SHIFT) | (int)digits[0]))); - } - } - break; - } -#endif - if (sizeof(int) <= sizeof(long)) { - __PYX_VERIFY_RETURN_INT_EXC(int, long, PyLong_AsLong(x)) -#ifdef HAVE_LONG_LONG - } else if (sizeof(int) <= sizeof(PY_LONG_LONG)) { - __PYX_VERIFY_RETURN_INT_EXC(int, PY_LONG_LONG, PyLong_AsLongLong(x)) -#endif - } - } - { -#if CYTHON_COMPILING_IN_PYPY && !defined(_PyLong_AsByteArray) - PyErr_SetString(PyExc_RuntimeError, - "_PyLong_AsByteArray() not available in PyPy, cannot convert large numbers"); -#else - int val; - PyObject *v = __Pyx_PyNumber_IntOrLong(x); - #if PY_MAJOR_VERSION < 3 - if (likely(v) && !PyLong_Check(v)) { - PyObject *tmp = v; - v = PyNumber_Long(tmp); - Py_DECREF(tmp); - } - #endif - if (likely(v)) { - int one = 1; int is_little = (int)*(unsigned char *)&one; - unsigned char *bytes = (unsigned char *)&val; - int ret = _PyLong_AsByteArray((PyLongObject *)v, - bytes, sizeof(val), - is_little, !is_unsigned); - Py_DECREF(v); - if (likely(!ret)) - return val; - } -#endif - return (int) -1; - } - } else { - int val; - PyObject *tmp = __Pyx_PyNumber_IntOrLong(x); - if (!tmp) return (int) -1; - val = __Pyx_PyInt_As_int(tmp); - Py_DECREF(tmp); - return val; - } -raise_overflow: - PyErr_SetString(PyExc_OverflowError, - "value too large to convert to int"); - return (int) -1; -raise_neg_overflow: - PyErr_SetString(PyExc_OverflowError, - "can't convert negative value to int"); - return (int) -1; -} - -/* FastTypeChecks */ -#if CYTHON_COMPILING_IN_CPYTHON -static int __Pyx_InBases(PyTypeObject *a, PyTypeObject *b) { - while (a) { - a = a->tp_base; - if (a == b) - return 1; - } - return b == &PyBaseObject_Type; -} -static CYTHON_INLINE int __Pyx_IsSubtype(PyTypeObject *a, PyTypeObject *b) { - PyObject *mro; - if (a == b) return 1; - mro = a->tp_mro; - if (likely(mro)) { - Py_ssize_t i, n; - n = PyTuple_GET_SIZE(mro); - for (i = 0; i < n; i++) { - if (PyTuple_GET_ITEM(mro, i) == (PyObject *)b) - return 1; - } - return 0; - } - return __Pyx_InBases(a, b); -} -#if PY_MAJOR_VERSION == 2 -static int __Pyx_inner_PyErr_GivenExceptionMatches2(PyObject *err, PyObject* exc_type1, PyObject* exc_type2) { - PyObject *exception, *value, *tb; - int res; - __Pyx_PyThreadState_declare - __Pyx_PyThreadState_assign - __Pyx_ErrFetch(&exception, &value, &tb); - res = exc_type1 ? PyObject_IsSubclass(err, exc_type1) : 0; - if (unlikely(res == -1)) { - PyErr_WriteUnraisable(err); - res = 0; - } - if (!res) { - res = PyObject_IsSubclass(err, exc_type2); - if (unlikely(res == -1)) { - PyErr_WriteUnraisable(err); - res = 0; - } - } - __Pyx_ErrRestore(exception, value, tb); - return res; -} -#else -static CYTHON_INLINE int __Pyx_inner_PyErr_GivenExceptionMatches2(PyObject *err, PyObject* exc_type1, PyObject *exc_type2) { - int res = exc_type1 ? __Pyx_IsSubtype((PyTypeObject*)err, (PyTypeObject*)exc_type1) : 0; - if (!res) { - res = __Pyx_IsSubtype((PyTypeObject*)err, (PyTypeObject*)exc_type2); - } - return res; -} -#endif -static int __Pyx_PyErr_GivenExceptionMatchesTuple(PyObject *exc_type, PyObject *tuple) { - Py_ssize_t i, n; - assert(PyExceptionClass_Check(exc_type)); - n = PyTuple_GET_SIZE(tuple); -#if PY_MAJOR_VERSION >= 3 - for (i=0; ip) { - #if PY_MAJOR_VERSION < 3 - if (t->is_unicode) { - *t->p = PyUnicode_DecodeUTF8(t->s, t->n - 1, NULL); - } else if (t->intern) { - *t->p = PyString_InternFromString(t->s); - } else { - *t->p = PyString_FromStringAndSize(t->s, t->n - 1); - } - #else - if (t->is_unicode | t->is_str) { - if (t->intern) { - *t->p = PyUnicode_InternFromString(t->s); - } else if (t->encoding) { - *t->p = PyUnicode_Decode(t->s, t->n - 1, t->encoding, NULL); - } else { - *t->p = PyUnicode_FromStringAndSize(t->s, t->n - 1); - } - } else { - *t->p = PyBytes_FromStringAndSize(t->s, t->n - 1); - } - #endif - if (!*t->p) - return -1; - if (PyObject_Hash(*t->p) == -1) - return -1; - ++t; - } - return 0; -} - -static CYTHON_INLINE PyObject* __Pyx_PyUnicode_FromString(const char* c_str) { - return __Pyx_PyUnicode_FromStringAndSize(c_str, (Py_ssize_t)strlen(c_str)); -} -static CYTHON_INLINE const char* __Pyx_PyObject_AsString(PyObject* o) { - Py_ssize_t ignore; - return __Pyx_PyObject_AsStringAndSize(o, &ignore); -} -#if __PYX_DEFAULT_STRING_ENCODING_IS_ASCII || __PYX_DEFAULT_STRING_ENCODING_IS_DEFAULT -#if !CYTHON_PEP393_ENABLED -static const char* __Pyx_PyUnicode_AsStringAndSize(PyObject* o, Py_ssize_t *length) { - char* defenc_c; - PyObject* defenc = _PyUnicode_AsDefaultEncodedString(o, NULL); - if (!defenc) return NULL; - defenc_c = PyBytes_AS_STRING(defenc); -#if __PYX_DEFAULT_STRING_ENCODING_IS_ASCII - { - char* end = defenc_c + PyBytes_GET_SIZE(defenc); - char* c; - for (c = defenc_c; c < end; c++) { - if ((unsigned char) (*c) >= 128) { - PyUnicode_AsASCIIString(o); - return NULL; - } - } - } -#endif - *length = PyBytes_GET_SIZE(defenc); - return defenc_c; -} -#else -static CYTHON_INLINE const char* __Pyx_PyUnicode_AsStringAndSize(PyObject* o, Py_ssize_t *length) { - if (unlikely(__Pyx_PyUnicode_READY(o) == -1)) return NULL; -#if __PYX_DEFAULT_STRING_ENCODING_IS_ASCII - if (likely(PyUnicode_IS_ASCII(o))) { - *length = PyUnicode_GET_LENGTH(o); - return PyUnicode_AsUTF8(o); - } else { - PyUnicode_AsASCIIString(o); - return NULL; - } -#else - return PyUnicode_AsUTF8AndSize(o, length); -#endif -} -#endif -#endif -static CYTHON_INLINE const char* __Pyx_PyObject_AsStringAndSize(PyObject* o, Py_ssize_t *length) { -#if __PYX_DEFAULT_STRING_ENCODING_IS_ASCII || __PYX_DEFAULT_STRING_ENCODING_IS_DEFAULT - if ( -#if PY_MAJOR_VERSION < 3 && __PYX_DEFAULT_STRING_ENCODING_IS_ASCII - __Pyx_sys_getdefaultencoding_not_ascii && -#endif - PyUnicode_Check(o)) { - return __Pyx_PyUnicode_AsStringAndSize(o, length); - } else -#endif -#if (!CYTHON_COMPILING_IN_PYPY) || (defined(PyByteArray_AS_STRING) && defined(PyByteArray_GET_SIZE)) - if (PyByteArray_Check(o)) { - *length = PyByteArray_GET_SIZE(o); - return PyByteArray_AS_STRING(o); - } else -#endif - { - char* result; - int r = PyBytes_AsStringAndSize(o, &result, length); - if (unlikely(r < 0)) { - return NULL; - } else { - return result; - } - } -} -static CYTHON_INLINE int __Pyx_PyObject_IsTrue(PyObject* x) { - int is_true = x == Py_True; - if (is_true | (x == Py_False) | (x == Py_None)) return is_true; - else return PyObject_IsTrue(x); -} -static CYTHON_INLINE int __Pyx_PyObject_IsTrueAndDecref(PyObject* x) { - int retval; - if (unlikely(!x)) return -1; - retval = __Pyx_PyObject_IsTrue(x); - Py_DECREF(x); - return retval; -} -static PyObject* __Pyx_PyNumber_IntOrLongWrongResultType(PyObject* result, const char* type_name) { -#if PY_MAJOR_VERSION >= 3 - if (PyLong_Check(result)) { - if (PyErr_WarnFormat(PyExc_DeprecationWarning, 1, - "__int__ returned non-int (type %.200s). " - "The ability to return an instance of a strict subclass of int " - "is deprecated, and may be removed in a future version of Python.", - Py_TYPE(result)->tp_name)) { - Py_DECREF(result); - return NULL; - } - return result; - } -#endif - PyErr_Format(PyExc_TypeError, - "__%.4s__ returned non-%.4s (type %.200s)", - type_name, type_name, Py_TYPE(result)->tp_name); - Py_DECREF(result); - return NULL; -} -static CYTHON_INLINE PyObject* __Pyx_PyNumber_IntOrLong(PyObject* x) { -#if CYTHON_USE_TYPE_SLOTS - PyNumberMethods *m; -#endif - const char *name = NULL; - PyObject *res = NULL; -#if PY_MAJOR_VERSION < 3 - if (likely(PyInt_Check(x) || PyLong_Check(x))) -#else - if (likely(PyLong_Check(x))) -#endif - return __Pyx_NewRef(x); -#if CYTHON_USE_TYPE_SLOTS - m = Py_TYPE(x)->tp_as_number; - #if PY_MAJOR_VERSION < 3 - if (m && m->nb_int) { - name = "int"; - res = m->nb_int(x); - } - else if (m && m->nb_long) { - name = "long"; - res = m->nb_long(x); - } - #else - if (likely(m && m->nb_int)) { - name = "int"; - res = m->nb_int(x); - } - #endif -#else - if (!PyBytes_CheckExact(x) && !PyUnicode_CheckExact(x)) { - res = PyNumber_Int(x); - } -#endif - if (likely(res)) { -#if PY_MAJOR_VERSION < 3 - if (unlikely(!PyInt_Check(res) && !PyLong_Check(res))) { -#else - if (unlikely(!PyLong_CheckExact(res))) { -#endif - return __Pyx_PyNumber_IntOrLongWrongResultType(res, name); - } - } - else if (!PyErr_Occurred()) { - PyErr_SetString(PyExc_TypeError, - "an integer is required"); - } - return res; -} -static CYTHON_INLINE Py_ssize_t __Pyx_PyIndex_AsSsize_t(PyObject* b) { - Py_ssize_t ival; - PyObject *x; -#if PY_MAJOR_VERSION < 3 - if (likely(PyInt_CheckExact(b))) { - if (sizeof(Py_ssize_t) >= sizeof(long)) - return PyInt_AS_LONG(b); - else - return PyInt_AsSsize_t(b); - } -#endif - if (likely(PyLong_CheckExact(b))) { - #if CYTHON_USE_PYLONG_INTERNALS - const digit* digits = ((PyLongObject*)b)->ob_digit; - const Py_ssize_t size = Py_SIZE(b); - if (likely(__Pyx_sst_abs(size) <= 1)) { - ival = likely(size) ? digits[0] : 0; - if (size == -1) ival = -ival; - return ival; - } else { - switch (size) { - case 2: - if (8 * sizeof(Py_ssize_t) > 2 * PyLong_SHIFT) { - return (Py_ssize_t) (((((size_t)digits[1]) << PyLong_SHIFT) | (size_t)digits[0])); - } - break; - case -2: - if (8 * sizeof(Py_ssize_t) > 2 * PyLong_SHIFT) { - return -(Py_ssize_t) (((((size_t)digits[1]) << PyLong_SHIFT) | (size_t)digits[0])); - } - break; - case 3: - if (8 * sizeof(Py_ssize_t) > 3 * PyLong_SHIFT) { - return (Py_ssize_t) (((((((size_t)digits[2]) << PyLong_SHIFT) | (size_t)digits[1]) << PyLong_SHIFT) | (size_t)digits[0])); - } - break; - case -3: - if (8 * sizeof(Py_ssize_t) > 3 * PyLong_SHIFT) { - return -(Py_ssize_t) (((((((size_t)digits[2]) << PyLong_SHIFT) | (size_t)digits[1]) << PyLong_SHIFT) | (size_t)digits[0])); - } - break; - case 4: - if (8 * sizeof(Py_ssize_t) > 4 * PyLong_SHIFT) { - return (Py_ssize_t) (((((((((size_t)digits[3]) << PyLong_SHIFT) | (size_t)digits[2]) << PyLong_SHIFT) | (size_t)digits[1]) << PyLong_SHIFT) | (size_t)digits[0])); - } - break; - case -4: - if (8 * sizeof(Py_ssize_t) > 4 * PyLong_SHIFT) { - return -(Py_ssize_t) (((((((((size_t)digits[3]) << PyLong_SHIFT) | (size_t)digits[2]) << PyLong_SHIFT) | (size_t)digits[1]) << PyLong_SHIFT) | (size_t)digits[0])); - } - break; - } - } - #endif - return PyLong_AsSsize_t(b); - } - x = PyNumber_Index(b); - if (!x) return -1; - ival = PyInt_AsSsize_t(x); - Py_DECREF(x); - return ival; -} -static CYTHON_INLINE PyObject * __Pyx_PyBool_FromLong(long b) { - return b ? __Pyx_NewRef(Py_True) : __Pyx_NewRef(Py_False); -} -static CYTHON_INLINE PyObject * __Pyx_PyInt_FromSize_t(size_t ival) { - return PyInt_FromSize_t(ival); -} - - -#endif /* Py_PYTHON_H */ diff --git a/python/pmercury/cython-bak/dtls_server.pyx b/python/pmercury/cython-bak/dtls_server.pyx deleted file mode 100644 index c3e86fd8..00000000 --- a/python/pmercury/cython-bak/dtls_server.pyx +++ /dev/null @@ -1,117 +0,0 @@ -#cython: language_level=3, wraparound=False, cdivision=True, infer_types=True, initializedcheck=False, c_string_type=bytes, embedsignature=False - -""" - Copyright (c) 2019 Cisco Systems, Inc. All rights reserved. - License at https://github.com/cisco/mercury/blob/master/LICENSE -""" - -import os -import sys - -sys.path.append(os.path.dirname(os.path.abspath(__file__))) -sys.path.append(os.path.dirname(os.path.abspath(__file__))+'/../') -from pmercury.utils.tls_utils import * -from pmercury.utils.tls_constants import * -from pmercury.protocols.protocol import Protocol - -import functools - -from cython.operator cimport dereference as deref -from libc.stdint cimport uint8_t, uint16_t, uint32_t, uint64_t - -IF UNAME_SYSNAME == "Windows": - cdef extern from "winsock2.h": - uint16_t htons(uint16_t hostshort) -ELSE: - cdef extern from "arpa/inet.h": - uint16_t htons(uint16_t hostshort) - - -MAX_CACHED_RESULTS = 2**24 - - -class DTLS_Server(Protocol): - - def __init__(self, fp_database=None, config=None): - # populate fingerprint databases - self.fp_db = {} - - - @staticmethod - def proto_identify(data, offset, data_len): - if data_len-offset < 27: - return False - if (data[offset] == 22 and - data[offset+1] == 254 and - data[offset+2] >= 253 and - data[offset+13] == 2 and - data[offset+25] == 254 and - data[offset+26] >= 253): - return True - return False - - - @staticmethod - def fingerprint(bytes data, unsigned int offset, unsigned int data_len): - cdef unsigned char *buf = data - offset += 13 - - # extract handshake version - cdef str fp_ = f'({buf[offset+12]:02x}{buf[offset+13]:02x})' - - # skip header/server_random - offset += 46 - - # parse/skip session_id - cdef unsigned int session_id_length = buf[offset] - offset += 1 + session_id_length - if offset >= data_len: - return None, None - - # parse selected_cipher_suite - fp_ += f'({buf[offset]:02x}{buf[offset+1]:02x})' - offset += 2 - if offset >= data_len: - return fp_+'()', None - - # parse/skip compression method - cdef unsigned int compression_methods_length = buf[offset] - offset += 1 + compression_methods_length - if offset >= data_len: - return fp_+'()', None - - # parse/skip extensions length - cdef unsigned int ext_total_len = htons(deref((buf+offset))) - offset += 2 - if offset >= data_len: - return fp_+'()', None - - # parse/extract/skip extension type/length/values - cdef str tmp_fp_ext - cdef unsigned int ext_len - fp_ += '(' - while ext_total_len > 0: - if offset >= data_len: - return fp_+')', None - - tmp_fp_ext, offset, ext_len = parse_extension(data, offset) - fp_ += '(%s)' % tmp_fp_ext - - ext_total_len -= 4 + ext_len - fp_ += ')' - - return fp_, None - - - @functools.lru_cache(maxsize=MAX_CACHED_RESULTS) - def get_database_entry(self, fp_str, approx_fp_str): - return None - - - def get_human_readable(self, fp_str_): - return None - - - def proc_identify(self, fp_str_, context_, dst_ip, dst_port, list_procs=5): - return None - diff --git a/python/pmercury/cython-bak/http.c b/python/pmercury/cython-bak/http.c deleted file mode 100644 index 7a5df650..00000000 --- a/python/pmercury/cython-bak/http.c +++ /dev/null @@ -1,9569 +0,0 @@ -/* Generated by Cython 0.29.14 */ - -/* BEGIN: Cython Metadata -{ - "distutils": { - "name": "pmercury.protocols.http", - "sources": [ - "/home/blake/Cisco/mercury-transition/python/pmercury/protocols/http.pyx" - ] - }, - "module_name": "pmercury.protocols.http" -} -END: Cython Metadata */ - -#define PY_SSIZE_T_CLEAN -#include "Python.h" -#ifndef Py_PYTHON_H - #error Python headers needed to compile C extensions, please install development version of Python. -#elif PY_VERSION_HEX < 0x02060000 || (0x03000000 <= PY_VERSION_HEX && PY_VERSION_HEX < 0x03030000) - #error Cython requires Python 2.6+ or Python 3.3+. -#else -#define CYTHON_ABI "0_29_14" -#define CYTHON_HEX_VERSION 0x001D0EF0 -#define CYTHON_FUTURE_DIVISION 1 -#include -#ifndef offsetof - #define offsetof(type, member) ( (size_t) & ((type*)0) -> member ) -#endif -#if !defined(WIN32) && !defined(MS_WINDOWS) - #ifndef __stdcall - #define __stdcall - #endif - #ifndef __cdecl - #define __cdecl - #endif - #ifndef __fastcall - #define __fastcall - #endif -#endif -#ifndef DL_IMPORT - #define DL_IMPORT(t) t -#endif -#ifndef DL_EXPORT - #define DL_EXPORT(t) t -#endif -#define __PYX_COMMA , -#ifndef HAVE_LONG_LONG - #if PY_VERSION_HEX >= 0x02070000 - #define HAVE_LONG_LONG - #endif -#endif -#ifndef PY_LONG_LONG - #define PY_LONG_LONG LONG_LONG -#endif -#ifndef Py_HUGE_VAL - #define Py_HUGE_VAL HUGE_VAL -#endif -#ifdef PYPY_VERSION - #define CYTHON_COMPILING_IN_PYPY 1 - #define CYTHON_COMPILING_IN_PYSTON 0 - #define CYTHON_COMPILING_IN_CPYTHON 0 - #undef CYTHON_USE_TYPE_SLOTS - #define CYTHON_USE_TYPE_SLOTS 0 - #undef CYTHON_USE_PYTYPE_LOOKUP - #define CYTHON_USE_PYTYPE_LOOKUP 0 - #if PY_VERSION_HEX < 0x03050000 - #undef CYTHON_USE_ASYNC_SLOTS - #define CYTHON_USE_ASYNC_SLOTS 0 - #elif !defined(CYTHON_USE_ASYNC_SLOTS) - #define CYTHON_USE_ASYNC_SLOTS 1 - #endif - #undef CYTHON_USE_PYLIST_INTERNALS - #define CYTHON_USE_PYLIST_INTERNALS 0 - #undef CYTHON_USE_UNICODE_INTERNALS - #define CYTHON_USE_UNICODE_INTERNALS 0 - #undef CYTHON_USE_UNICODE_WRITER - #define CYTHON_USE_UNICODE_WRITER 0 - #undef CYTHON_USE_PYLONG_INTERNALS - #define CYTHON_USE_PYLONG_INTERNALS 0 - #undef CYTHON_AVOID_BORROWED_REFS - #define CYTHON_AVOID_BORROWED_REFS 1 - #undef CYTHON_ASSUME_SAFE_MACROS - #define CYTHON_ASSUME_SAFE_MACROS 0 - #undef CYTHON_UNPACK_METHODS - #define CYTHON_UNPACK_METHODS 0 - #undef CYTHON_FAST_THREAD_STATE - #define CYTHON_FAST_THREAD_STATE 0 - #undef CYTHON_FAST_PYCALL - #define CYTHON_FAST_PYCALL 0 - #undef CYTHON_PEP489_MULTI_PHASE_INIT - #define CYTHON_PEP489_MULTI_PHASE_INIT 0 - #undef CYTHON_USE_TP_FINALIZE - #define CYTHON_USE_TP_FINALIZE 0 - #undef CYTHON_USE_DICT_VERSIONS - #define CYTHON_USE_DICT_VERSIONS 0 - #undef CYTHON_USE_EXC_INFO_STACK - #define CYTHON_USE_EXC_INFO_STACK 0 -#elif defined(PYSTON_VERSION) - #define CYTHON_COMPILING_IN_PYPY 0 - #define CYTHON_COMPILING_IN_PYSTON 1 - #define CYTHON_COMPILING_IN_CPYTHON 0 - #ifndef CYTHON_USE_TYPE_SLOTS - #define CYTHON_USE_TYPE_SLOTS 1 - #endif - #undef CYTHON_USE_PYTYPE_LOOKUP - #define CYTHON_USE_PYTYPE_LOOKUP 0 - #undef CYTHON_USE_ASYNC_SLOTS - #define CYTHON_USE_ASYNC_SLOTS 0 - #undef CYTHON_USE_PYLIST_INTERNALS - #define CYTHON_USE_PYLIST_INTERNALS 0 - #ifndef CYTHON_USE_UNICODE_INTERNALS - #define CYTHON_USE_UNICODE_INTERNALS 1 - #endif - #undef CYTHON_USE_UNICODE_WRITER - #define CYTHON_USE_UNICODE_WRITER 0 - #undef CYTHON_USE_PYLONG_INTERNALS - #define CYTHON_USE_PYLONG_INTERNALS 0 - #ifndef CYTHON_AVOID_BORROWED_REFS - #define CYTHON_AVOID_BORROWED_REFS 0 - #endif - #ifndef CYTHON_ASSUME_SAFE_MACROS - #define CYTHON_ASSUME_SAFE_MACROS 1 - #endif - #ifndef CYTHON_UNPACK_METHODS - #define CYTHON_UNPACK_METHODS 1 - #endif - #undef CYTHON_FAST_THREAD_STATE - #define CYTHON_FAST_THREAD_STATE 0 - #undef CYTHON_FAST_PYCALL - #define CYTHON_FAST_PYCALL 0 - #undef CYTHON_PEP489_MULTI_PHASE_INIT - #define CYTHON_PEP489_MULTI_PHASE_INIT 0 - #undef CYTHON_USE_TP_FINALIZE - #define CYTHON_USE_TP_FINALIZE 0 - #undef CYTHON_USE_DICT_VERSIONS - #define CYTHON_USE_DICT_VERSIONS 0 - #undef CYTHON_USE_EXC_INFO_STACK - #define CYTHON_USE_EXC_INFO_STACK 0 -#else - #define CYTHON_COMPILING_IN_PYPY 0 - #define CYTHON_COMPILING_IN_PYSTON 0 - #define CYTHON_COMPILING_IN_CPYTHON 1 - #ifndef CYTHON_USE_TYPE_SLOTS - #define CYTHON_USE_TYPE_SLOTS 1 - #endif - #if PY_VERSION_HEX < 0x02070000 - #undef CYTHON_USE_PYTYPE_LOOKUP - #define CYTHON_USE_PYTYPE_LOOKUP 0 - #elif !defined(CYTHON_USE_PYTYPE_LOOKUP) - #define CYTHON_USE_PYTYPE_LOOKUP 1 - #endif - #if PY_MAJOR_VERSION < 3 - #undef CYTHON_USE_ASYNC_SLOTS - #define CYTHON_USE_ASYNC_SLOTS 0 - #elif !defined(CYTHON_USE_ASYNC_SLOTS) - #define CYTHON_USE_ASYNC_SLOTS 1 - #endif - #if PY_VERSION_HEX < 0x02070000 - #undef CYTHON_USE_PYLONG_INTERNALS - #define CYTHON_USE_PYLONG_INTERNALS 0 - #elif !defined(CYTHON_USE_PYLONG_INTERNALS) - #define CYTHON_USE_PYLONG_INTERNALS 1 - #endif - #ifndef CYTHON_USE_PYLIST_INTERNALS - #define CYTHON_USE_PYLIST_INTERNALS 1 - #endif - #ifndef CYTHON_USE_UNICODE_INTERNALS - #define CYTHON_USE_UNICODE_INTERNALS 1 - #endif - #if PY_VERSION_HEX < 0x030300F0 - #undef CYTHON_USE_UNICODE_WRITER - #define CYTHON_USE_UNICODE_WRITER 0 - #elif !defined(CYTHON_USE_UNICODE_WRITER) - #define CYTHON_USE_UNICODE_WRITER 1 - #endif - #ifndef CYTHON_AVOID_BORROWED_REFS - #define CYTHON_AVOID_BORROWED_REFS 0 - #endif - #ifndef CYTHON_ASSUME_SAFE_MACROS - #define CYTHON_ASSUME_SAFE_MACROS 1 - #endif - #ifndef CYTHON_UNPACK_METHODS - #define CYTHON_UNPACK_METHODS 1 - #endif - #ifndef CYTHON_FAST_THREAD_STATE - #define CYTHON_FAST_THREAD_STATE 1 - #endif - #ifndef CYTHON_FAST_PYCALL - #define CYTHON_FAST_PYCALL 1 - #endif - #ifndef CYTHON_PEP489_MULTI_PHASE_INIT - #define CYTHON_PEP489_MULTI_PHASE_INIT (PY_VERSION_HEX >= 0x03050000) - #endif - #ifndef CYTHON_USE_TP_FINALIZE - #define CYTHON_USE_TP_FINALIZE (PY_VERSION_HEX >= 0x030400a1) - #endif - #ifndef CYTHON_USE_DICT_VERSIONS - #define CYTHON_USE_DICT_VERSIONS (PY_VERSION_HEX >= 0x030600B1) - #endif - #ifndef CYTHON_USE_EXC_INFO_STACK - #define CYTHON_USE_EXC_INFO_STACK (PY_VERSION_HEX >= 0x030700A3) - #endif -#endif -#if !defined(CYTHON_FAST_PYCCALL) -#define CYTHON_FAST_PYCCALL (CYTHON_FAST_PYCALL && PY_VERSION_HEX >= 0x030600B1) -#endif -#if CYTHON_USE_PYLONG_INTERNALS - #include "longintrepr.h" - #undef SHIFT - #undef BASE - #undef MASK - #ifdef SIZEOF_VOID_P - enum { __pyx_check_sizeof_voidp = 1 / (int)(SIZEOF_VOID_P == sizeof(void*)) }; - #endif -#endif -#ifndef __has_attribute - #define __has_attribute(x) 0 -#endif -#ifndef __has_cpp_attribute - #define __has_cpp_attribute(x) 0 -#endif -#ifndef CYTHON_RESTRICT - #if defined(__GNUC__) - #define CYTHON_RESTRICT __restrict__ - #elif defined(_MSC_VER) && _MSC_VER >= 1400 - #define CYTHON_RESTRICT __restrict - #elif defined (__STDC_VERSION__) && __STDC_VERSION__ >= 199901L - #define CYTHON_RESTRICT restrict - #else - #define CYTHON_RESTRICT - #endif -#endif -#ifndef CYTHON_UNUSED -# if defined(__GNUC__) -# if !(defined(__cplusplus)) || (__GNUC__ > 3 || (__GNUC__ == 3 && __GNUC_MINOR__ >= 4)) -# define CYTHON_UNUSED __attribute__ ((__unused__)) -# else -# define CYTHON_UNUSED -# endif -# elif defined(__ICC) || (defined(__INTEL_COMPILER) && !defined(_MSC_VER)) -# define CYTHON_UNUSED __attribute__ ((__unused__)) -# else -# define CYTHON_UNUSED -# endif -#endif -#ifndef CYTHON_MAYBE_UNUSED_VAR -# if defined(__cplusplus) - template void CYTHON_MAYBE_UNUSED_VAR( const T& ) { } -# else -# define CYTHON_MAYBE_UNUSED_VAR(x) (void)(x) -# endif -#endif -#ifndef CYTHON_NCP_UNUSED -# if CYTHON_COMPILING_IN_CPYTHON -# define CYTHON_NCP_UNUSED -# else -# define CYTHON_NCP_UNUSED CYTHON_UNUSED -# endif -#endif -#define __Pyx_void_to_None(void_result) ((void)(void_result), Py_INCREF(Py_None), Py_None) -#ifdef _MSC_VER - #ifndef _MSC_STDINT_H_ - #if _MSC_VER < 1300 - typedef unsigned char uint8_t; - typedef unsigned int uint32_t; - #else - typedef unsigned __int8 uint8_t; - typedef unsigned __int32 uint32_t; - #endif - #endif -#else - #include -#endif -#ifndef CYTHON_FALLTHROUGH - #if defined(__cplusplus) && __cplusplus >= 201103L - #if __has_cpp_attribute(fallthrough) - #define CYTHON_FALLTHROUGH [[fallthrough]] - #elif __has_cpp_attribute(clang::fallthrough) - #define CYTHON_FALLTHROUGH [[clang::fallthrough]] - #elif __has_cpp_attribute(gnu::fallthrough) - #define CYTHON_FALLTHROUGH [[gnu::fallthrough]] - #endif - #endif - #ifndef CYTHON_FALLTHROUGH - #if __has_attribute(fallthrough) - #define CYTHON_FALLTHROUGH __attribute__((fallthrough)) - #else - #define CYTHON_FALLTHROUGH - #endif - #endif - #if defined(__clang__ ) && defined(__apple_build_version__) - #if __apple_build_version__ < 7000000 - #undef CYTHON_FALLTHROUGH - #define CYTHON_FALLTHROUGH - #endif - #endif -#endif - -#ifndef CYTHON_INLINE - #if defined(__clang__) - #define CYTHON_INLINE __inline__ __attribute__ ((__unused__)) - #elif defined(__GNUC__) - #define CYTHON_INLINE __inline__ - #elif defined(_MSC_VER) - #define CYTHON_INLINE __inline - #elif defined (__STDC_VERSION__) && __STDC_VERSION__ >= 199901L - #define CYTHON_INLINE inline - #else - #define CYTHON_INLINE - #endif -#endif - -#if CYTHON_COMPILING_IN_PYPY && PY_VERSION_HEX < 0x02070600 && !defined(Py_OptimizeFlag) - #define Py_OptimizeFlag 0 -#endif -#define __PYX_BUILD_PY_SSIZE_T "n" -#define CYTHON_FORMAT_SSIZE_T "z" -#if PY_MAJOR_VERSION < 3 - #define __Pyx_BUILTIN_MODULE_NAME "__builtin__" - #define __Pyx_PyCode_New(a, k, l, s, f, code, c, n, v, fv, cell, fn, name, fline, lnos)\ - PyCode_New(a+k, l, s, f, code, c, n, v, fv, cell, fn, name, fline, lnos) - #define __Pyx_DefaultClassType PyClass_Type -#else - #define __Pyx_BUILTIN_MODULE_NAME "builtins" -#if PY_VERSION_HEX >= 0x030800A4 && PY_VERSION_HEX < 0x030800B2 - #define __Pyx_PyCode_New(a, k, l, s, f, code, c, n, v, fv, cell, fn, name, fline, lnos)\ - PyCode_New(a, 0, k, l, s, f, code, c, n, v, fv, cell, fn, name, fline, lnos) -#else - #define __Pyx_PyCode_New(a, k, l, s, f, code, c, n, v, fv, cell, fn, name, fline, lnos)\ - PyCode_New(a, k, l, s, f, code, c, n, v, fv, cell, fn, name, fline, lnos) -#endif - #define __Pyx_DefaultClassType PyType_Type -#endif -#ifndef Py_TPFLAGS_CHECKTYPES - #define Py_TPFLAGS_CHECKTYPES 0 -#endif -#ifndef Py_TPFLAGS_HAVE_INDEX - #define Py_TPFLAGS_HAVE_INDEX 0 -#endif -#ifndef Py_TPFLAGS_HAVE_NEWBUFFER - #define Py_TPFLAGS_HAVE_NEWBUFFER 0 -#endif -#ifndef Py_TPFLAGS_HAVE_FINALIZE - #define Py_TPFLAGS_HAVE_FINALIZE 0 -#endif -#ifndef METH_STACKLESS - #define METH_STACKLESS 0 -#endif -#if PY_VERSION_HEX <= 0x030700A3 || !defined(METH_FASTCALL) - #ifndef METH_FASTCALL - #define METH_FASTCALL 0x80 - #endif - typedef PyObject *(*__Pyx_PyCFunctionFast) (PyObject *self, PyObject *const *args, Py_ssize_t nargs); - typedef PyObject *(*__Pyx_PyCFunctionFastWithKeywords) (PyObject *self, PyObject *const *args, - Py_ssize_t nargs, PyObject *kwnames); -#else - #define __Pyx_PyCFunctionFast _PyCFunctionFast - #define __Pyx_PyCFunctionFastWithKeywords _PyCFunctionFastWithKeywords -#endif -#if CYTHON_FAST_PYCCALL -#define __Pyx_PyFastCFunction_Check(func)\ - ((PyCFunction_Check(func) && (METH_FASTCALL == (PyCFunction_GET_FLAGS(func) & ~(METH_CLASS | METH_STATIC | METH_COEXIST | METH_KEYWORDS | METH_STACKLESS))))) -#else -#define __Pyx_PyFastCFunction_Check(func) 0 -#endif -#if CYTHON_COMPILING_IN_PYPY && !defined(PyObject_Malloc) - #define PyObject_Malloc(s) PyMem_Malloc(s) - #define PyObject_Free(p) PyMem_Free(p) - #define PyObject_Realloc(p) PyMem_Realloc(p) -#endif -#if CYTHON_COMPILING_IN_CPYTHON && PY_VERSION_HEX < 0x030400A1 - #define PyMem_RawMalloc(n) PyMem_Malloc(n) - #define PyMem_RawRealloc(p, n) PyMem_Realloc(p, n) - #define PyMem_RawFree(p) PyMem_Free(p) -#endif -#if CYTHON_COMPILING_IN_PYSTON - #define __Pyx_PyCode_HasFreeVars(co) PyCode_HasFreeVars(co) - #define __Pyx_PyFrame_SetLineNumber(frame, lineno) PyFrame_SetLineNumber(frame, lineno) -#else - #define __Pyx_PyCode_HasFreeVars(co) (PyCode_GetNumFree(co) > 0) - #define __Pyx_PyFrame_SetLineNumber(frame, lineno) (frame)->f_lineno = (lineno) -#endif -#if !CYTHON_FAST_THREAD_STATE || PY_VERSION_HEX < 0x02070000 - #define __Pyx_PyThreadState_Current PyThreadState_GET() -#elif PY_VERSION_HEX >= 0x03060000 - #define __Pyx_PyThreadState_Current _PyThreadState_UncheckedGet() -#elif PY_VERSION_HEX >= 0x03000000 - #define __Pyx_PyThreadState_Current PyThreadState_GET() -#else - #define __Pyx_PyThreadState_Current _PyThreadState_Current -#endif -#if PY_VERSION_HEX < 0x030700A2 && !defined(PyThread_tss_create) && !defined(Py_tss_NEEDS_INIT) -#include "pythread.h" -#define Py_tss_NEEDS_INIT 0 -typedef int Py_tss_t; -static CYTHON_INLINE int PyThread_tss_create(Py_tss_t *key) { - *key = PyThread_create_key(); - return 0; -} -static CYTHON_INLINE Py_tss_t * PyThread_tss_alloc(void) { - Py_tss_t *key = (Py_tss_t *)PyObject_Malloc(sizeof(Py_tss_t)); - *key = Py_tss_NEEDS_INIT; - return key; -} -static CYTHON_INLINE void PyThread_tss_free(Py_tss_t *key) { - PyObject_Free(key); -} -static CYTHON_INLINE int PyThread_tss_is_created(Py_tss_t *key) { - return *key != Py_tss_NEEDS_INIT; -} -static CYTHON_INLINE void PyThread_tss_delete(Py_tss_t *key) { - PyThread_delete_key(*key); - *key = Py_tss_NEEDS_INIT; -} -static CYTHON_INLINE int PyThread_tss_set(Py_tss_t *key, void *value) { - return PyThread_set_key_value(*key, value); -} -static CYTHON_INLINE void * PyThread_tss_get(Py_tss_t *key) { - return PyThread_get_key_value(*key); -} -#endif -#if CYTHON_COMPILING_IN_CPYTHON || defined(_PyDict_NewPresized) -#define __Pyx_PyDict_NewPresized(n) ((n <= 8) ? PyDict_New() : _PyDict_NewPresized(n)) -#else -#define __Pyx_PyDict_NewPresized(n) PyDict_New() -#endif -#if PY_MAJOR_VERSION >= 3 || CYTHON_FUTURE_DIVISION - #define __Pyx_PyNumber_Divide(x,y) PyNumber_TrueDivide(x,y) - #define __Pyx_PyNumber_InPlaceDivide(x,y) PyNumber_InPlaceTrueDivide(x,y) -#else - #define __Pyx_PyNumber_Divide(x,y) PyNumber_Divide(x,y) - #define __Pyx_PyNumber_InPlaceDivide(x,y) PyNumber_InPlaceDivide(x,y) -#endif -#if CYTHON_COMPILING_IN_CPYTHON && PY_VERSION_HEX >= 0x030500A1 && CYTHON_USE_UNICODE_INTERNALS -#define __Pyx_PyDict_GetItemStr(dict, name) _PyDict_GetItem_KnownHash(dict, name, ((PyASCIIObject *) name)->hash) -#else -#define __Pyx_PyDict_GetItemStr(dict, name) PyDict_GetItem(dict, name) -#endif -#if PY_VERSION_HEX > 0x03030000 && defined(PyUnicode_KIND) - #define CYTHON_PEP393_ENABLED 1 - #define __Pyx_PyUnicode_READY(op) (likely(PyUnicode_IS_READY(op)) ?\ - 0 : _PyUnicode_Ready((PyObject *)(op))) - #define __Pyx_PyUnicode_GET_LENGTH(u) PyUnicode_GET_LENGTH(u) - #define __Pyx_PyUnicode_READ_CHAR(u, i) PyUnicode_READ_CHAR(u, i) - #define __Pyx_PyUnicode_MAX_CHAR_VALUE(u) PyUnicode_MAX_CHAR_VALUE(u) - #define __Pyx_PyUnicode_KIND(u) PyUnicode_KIND(u) - #define __Pyx_PyUnicode_DATA(u) PyUnicode_DATA(u) - #define __Pyx_PyUnicode_READ(k, d, i) PyUnicode_READ(k, d, i) - #define __Pyx_PyUnicode_WRITE(k, d, i, ch) PyUnicode_WRITE(k, d, i, ch) - #define __Pyx_PyUnicode_IS_TRUE(u) (0 != (likely(PyUnicode_IS_READY(u)) ? PyUnicode_GET_LENGTH(u) : PyUnicode_GET_SIZE(u))) -#else - #define CYTHON_PEP393_ENABLED 0 - #define PyUnicode_1BYTE_KIND 1 - #define PyUnicode_2BYTE_KIND 2 - #define PyUnicode_4BYTE_KIND 4 - #define __Pyx_PyUnicode_READY(op) (0) - #define __Pyx_PyUnicode_GET_LENGTH(u) PyUnicode_GET_SIZE(u) - #define __Pyx_PyUnicode_READ_CHAR(u, i) ((Py_UCS4)(PyUnicode_AS_UNICODE(u)[i])) - #define __Pyx_PyUnicode_MAX_CHAR_VALUE(u) ((sizeof(Py_UNICODE) == 2) ? 65535 : 1114111) - #define __Pyx_PyUnicode_KIND(u) (sizeof(Py_UNICODE)) - #define __Pyx_PyUnicode_DATA(u) ((void*)PyUnicode_AS_UNICODE(u)) - #define __Pyx_PyUnicode_READ(k, d, i) ((void)(k), (Py_UCS4)(((Py_UNICODE*)d)[i])) - #define __Pyx_PyUnicode_WRITE(k, d, i, ch) (((void)(k)), ((Py_UNICODE*)d)[i] = ch) - #define __Pyx_PyUnicode_IS_TRUE(u) (0 != PyUnicode_GET_SIZE(u)) -#endif -#if CYTHON_COMPILING_IN_PYPY - #define __Pyx_PyUnicode_Concat(a, b) PyNumber_Add(a, b) - #define __Pyx_PyUnicode_ConcatSafe(a, b) PyNumber_Add(a, b) -#else - #define __Pyx_PyUnicode_Concat(a, b) PyUnicode_Concat(a, b) - #define __Pyx_PyUnicode_ConcatSafe(a, b) ((unlikely((a) == Py_None) || unlikely((b) == Py_None)) ?\ - PyNumber_Add(a, b) : __Pyx_PyUnicode_Concat(a, b)) -#endif -#if CYTHON_COMPILING_IN_PYPY && !defined(PyUnicode_Contains) - #define PyUnicode_Contains(u, s) PySequence_Contains(u, s) -#endif -#if CYTHON_COMPILING_IN_PYPY && !defined(PyByteArray_Check) - #define PyByteArray_Check(obj) PyObject_TypeCheck(obj, &PyByteArray_Type) -#endif -#if CYTHON_COMPILING_IN_PYPY && !defined(PyObject_Format) - #define PyObject_Format(obj, fmt) PyObject_CallMethod(obj, "__format__", "O", fmt) -#endif -#define __Pyx_PyString_FormatSafe(a, b) ((unlikely((a) == Py_None || (PyString_Check(b) && !PyString_CheckExact(b)))) ? PyNumber_Remainder(a, b) : __Pyx_PyString_Format(a, b)) -#define __Pyx_PyUnicode_FormatSafe(a, b) ((unlikely((a) == Py_None || (PyUnicode_Check(b) && !PyUnicode_CheckExact(b)))) ? PyNumber_Remainder(a, b) : PyUnicode_Format(a, b)) -#if PY_MAJOR_VERSION >= 3 - #define __Pyx_PyString_Format(a, b) PyUnicode_Format(a, b) -#else - #define __Pyx_PyString_Format(a, b) PyString_Format(a, b) -#endif -#if PY_MAJOR_VERSION < 3 && !defined(PyObject_ASCII) - #define PyObject_ASCII(o) PyObject_Repr(o) -#endif -#if PY_MAJOR_VERSION >= 3 - #define PyBaseString_Type PyUnicode_Type - #define PyStringObject PyUnicodeObject - #define PyString_Type PyUnicode_Type - #define PyString_Check PyUnicode_Check - #define PyString_CheckExact PyUnicode_CheckExact - #define PyObject_Unicode PyObject_Str -#endif -#if PY_MAJOR_VERSION >= 3 - #define __Pyx_PyBaseString_Check(obj) PyUnicode_Check(obj) - #define __Pyx_PyBaseString_CheckExact(obj) PyUnicode_CheckExact(obj) -#else - #define __Pyx_PyBaseString_Check(obj) (PyString_Check(obj) || PyUnicode_Check(obj)) - #define __Pyx_PyBaseString_CheckExact(obj) (PyString_CheckExact(obj) || PyUnicode_CheckExact(obj)) -#endif -#ifndef PySet_CheckExact - #define PySet_CheckExact(obj) (Py_TYPE(obj) == &PySet_Type) -#endif -#if CYTHON_ASSUME_SAFE_MACROS - #define __Pyx_PySequence_SIZE(seq) Py_SIZE(seq) -#else - #define __Pyx_PySequence_SIZE(seq) PySequence_Size(seq) -#endif -#if PY_MAJOR_VERSION >= 3 - #define PyIntObject PyLongObject - #define PyInt_Type PyLong_Type - #define PyInt_Check(op) PyLong_Check(op) - #define PyInt_CheckExact(op) PyLong_CheckExact(op) - #define PyInt_FromString PyLong_FromString - #define PyInt_FromUnicode PyLong_FromUnicode - #define PyInt_FromLong PyLong_FromLong - #define PyInt_FromSize_t PyLong_FromSize_t - #define PyInt_FromSsize_t PyLong_FromSsize_t - #define PyInt_AsLong PyLong_AsLong - #define PyInt_AS_LONG PyLong_AS_LONG - #define PyInt_AsSsize_t PyLong_AsSsize_t - #define PyInt_AsUnsignedLongMask PyLong_AsUnsignedLongMask - #define PyInt_AsUnsignedLongLongMask PyLong_AsUnsignedLongLongMask - #define PyNumber_Int PyNumber_Long -#endif -#if PY_MAJOR_VERSION >= 3 - #define PyBoolObject PyLongObject -#endif -#if PY_MAJOR_VERSION >= 3 && CYTHON_COMPILING_IN_PYPY - #ifndef PyUnicode_InternFromString - #define PyUnicode_InternFromString(s) PyUnicode_FromString(s) - #endif -#endif -#if PY_VERSION_HEX < 0x030200A4 - typedef long Py_hash_t; - #define __Pyx_PyInt_FromHash_t PyInt_FromLong - #define __Pyx_PyInt_AsHash_t PyInt_AsLong -#else - #define __Pyx_PyInt_FromHash_t PyInt_FromSsize_t - #define __Pyx_PyInt_AsHash_t PyInt_AsSsize_t -#endif -#if PY_MAJOR_VERSION >= 3 - #define __Pyx_PyMethod_New(func, self, klass) ((self) ? PyMethod_New(func, self) : (Py_INCREF(func), func)) -#else - #define __Pyx_PyMethod_New(func, self, klass) PyMethod_New(func, self, klass) -#endif -#if CYTHON_USE_ASYNC_SLOTS - #if PY_VERSION_HEX >= 0x030500B1 - #define __Pyx_PyAsyncMethodsStruct PyAsyncMethods - #define __Pyx_PyType_AsAsync(obj) (Py_TYPE(obj)->tp_as_async) - #else - #define __Pyx_PyType_AsAsync(obj) ((__Pyx_PyAsyncMethodsStruct*) (Py_TYPE(obj)->tp_reserved)) - #endif -#else - #define __Pyx_PyType_AsAsync(obj) NULL -#endif -#ifndef __Pyx_PyAsyncMethodsStruct - typedef struct { - unaryfunc am_await; - unaryfunc am_aiter; - unaryfunc am_anext; - } __Pyx_PyAsyncMethodsStruct; -#endif - -#if defined(WIN32) || defined(MS_WINDOWS) - #define _USE_MATH_DEFINES -#endif -#include -#ifdef NAN -#define __PYX_NAN() ((float) NAN) -#else -static CYTHON_INLINE float __PYX_NAN() { - float value; - memset(&value, 0xFF, sizeof(value)); - return value; -} -#endif -#if defined(__CYGWIN__) && defined(_LDBL_EQ_DBL) -#define __Pyx_truncl trunc -#else -#define __Pyx_truncl truncl -#endif - - -#define __PYX_ERR(f_index, lineno, Ln_error) \ -{ \ - __pyx_filename = __pyx_f[f_index]; __pyx_lineno = lineno; __pyx_clineno = __LINE__; goto Ln_error; \ -} - -#ifndef __PYX_EXTERN_C - #ifdef __cplusplus - #define __PYX_EXTERN_C extern "C" - #else - #define __PYX_EXTERN_C extern - #endif -#endif - -#define __PYX_HAVE__pmercury__protocols__http -#define __PYX_HAVE_API__pmercury__protocols__http -/* Early includes */ -#ifdef _OPENMP -#include -#endif /* _OPENMP */ - -#if defined(PYREX_WITHOUT_ASSERTIONS) && !defined(CYTHON_WITHOUT_ASSERTIONS) -#define CYTHON_WITHOUT_ASSERTIONS -#endif - -typedef struct {PyObject **p; const char *s; const Py_ssize_t n; const char* encoding; - const char is_unicode; const char is_str; const char intern; } __Pyx_StringTabEntry; - -#define __PYX_DEFAULT_STRING_ENCODING_IS_ASCII 0 -#define __PYX_DEFAULT_STRING_ENCODING_IS_UTF8 0 -#define __PYX_DEFAULT_STRING_ENCODING_IS_DEFAULT (PY_MAJOR_VERSION >= 3 && __PYX_DEFAULT_STRING_ENCODING_IS_UTF8) -#define __PYX_DEFAULT_STRING_ENCODING "" -#define __Pyx_PyObject_FromString __Pyx_PyBytes_FromString -#define __Pyx_PyObject_FromStringAndSize __Pyx_PyBytes_FromStringAndSize -#define __Pyx_uchar_cast(c) ((unsigned char)c) -#define __Pyx_long_cast(x) ((long)x) -#define __Pyx_fits_Py_ssize_t(v, type, is_signed) (\ - (sizeof(type) < sizeof(Py_ssize_t)) ||\ - (sizeof(type) > sizeof(Py_ssize_t) &&\ - likely(v < (type)PY_SSIZE_T_MAX ||\ - v == (type)PY_SSIZE_T_MAX) &&\ - (!is_signed || likely(v > (type)PY_SSIZE_T_MIN ||\ - v == (type)PY_SSIZE_T_MIN))) ||\ - (sizeof(type) == sizeof(Py_ssize_t) &&\ - (is_signed || likely(v < (type)PY_SSIZE_T_MAX ||\ - v == (type)PY_SSIZE_T_MAX))) ) -static CYTHON_INLINE int __Pyx_is_valid_index(Py_ssize_t i, Py_ssize_t limit) { - return (size_t) i < (size_t) limit; -} -#if defined (__cplusplus) && __cplusplus >= 201103L - #include - #define __Pyx_sst_abs(value) std::abs(value) -#elif SIZEOF_INT >= SIZEOF_SIZE_T - #define __Pyx_sst_abs(value) abs(value) -#elif SIZEOF_LONG >= SIZEOF_SIZE_T - #define __Pyx_sst_abs(value) labs(value) -#elif defined (_MSC_VER) - #define __Pyx_sst_abs(value) ((Py_ssize_t)_abs64(value)) -#elif defined (__STDC_VERSION__) && __STDC_VERSION__ >= 199901L - #define __Pyx_sst_abs(value) llabs(value) -#elif defined (__GNUC__) - #define __Pyx_sst_abs(value) __builtin_llabs(value) -#else - #define __Pyx_sst_abs(value) ((value<0) ? -value : value) -#endif -static CYTHON_INLINE const char* __Pyx_PyObject_AsString(PyObject*); -static CYTHON_INLINE const char* __Pyx_PyObject_AsStringAndSize(PyObject*, Py_ssize_t* length); -#define __Pyx_PyByteArray_FromString(s) PyByteArray_FromStringAndSize((const char*)s, strlen((const char*)s)) -#define __Pyx_PyByteArray_FromStringAndSize(s, l) PyByteArray_FromStringAndSize((const char*)s, l) -#define __Pyx_PyBytes_FromString PyBytes_FromString -#define __Pyx_PyBytes_FromStringAndSize PyBytes_FromStringAndSize -static CYTHON_INLINE PyObject* __Pyx_PyUnicode_FromString(const char*); -#if PY_MAJOR_VERSION < 3 - #define __Pyx_PyStr_FromString __Pyx_PyBytes_FromString - #define __Pyx_PyStr_FromStringAndSize __Pyx_PyBytes_FromStringAndSize -#else - #define __Pyx_PyStr_FromString __Pyx_PyUnicode_FromString - #define __Pyx_PyStr_FromStringAndSize __Pyx_PyUnicode_FromStringAndSize -#endif -#define __Pyx_PyBytes_AsWritableString(s) ((char*) PyBytes_AS_STRING(s)) -#define __Pyx_PyBytes_AsWritableSString(s) ((signed char*) PyBytes_AS_STRING(s)) -#define __Pyx_PyBytes_AsWritableUString(s) ((unsigned char*) PyBytes_AS_STRING(s)) -#define __Pyx_PyBytes_AsString(s) ((const char*) PyBytes_AS_STRING(s)) -#define __Pyx_PyBytes_AsSString(s) ((const signed char*) PyBytes_AS_STRING(s)) -#define __Pyx_PyBytes_AsUString(s) ((const unsigned char*) PyBytes_AS_STRING(s)) -#define __Pyx_PyObject_AsWritableString(s) ((char*) __Pyx_PyObject_AsString(s)) -#define __Pyx_PyObject_AsWritableSString(s) ((signed char*) __Pyx_PyObject_AsString(s)) -#define __Pyx_PyObject_AsWritableUString(s) ((unsigned char*) __Pyx_PyObject_AsString(s)) -#define __Pyx_PyObject_AsSString(s) ((const signed char*) __Pyx_PyObject_AsString(s)) -#define __Pyx_PyObject_AsUString(s) ((const unsigned char*) __Pyx_PyObject_AsString(s)) -#define __Pyx_PyObject_FromCString(s) __Pyx_PyObject_FromString((const char*)s) -#define __Pyx_PyBytes_FromCString(s) __Pyx_PyBytes_FromString((const char*)s) -#define __Pyx_PyByteArray_FromCString(s) __Pyx_PyByteArray_FromString((const char*)s) -#define __Pyx_PyStr_FromCString(s) __Pyx_PyStr_FromString((const char*)s) -#define __Pyx_PyUnicode_FromCString(s) __Pyx_PyUnicode_FromString((const char*)s) -static CYTHON_INLINE size_t __Pyx_Py_UNICODE_strlen(const Py_UNICODE *u) { - const Py_UNICODE *u_end = u; - while (*u_end++) ; - return (size_t)(u_end - u - 1); -} -#define __Pyx_PyUnicode_FromUnicode(u) PyUnicode_FromUnicode(u, __Pyx_Py_UNICODE_strlen(u)) -#define __Pyx_PyUnicode_FromUnicodeAndLength PyUnicode_FromUnicode -#define __Pyx_PyUnicode_AsUnicode PyUnicode_AsUnicode -#define __Pyx_NewRef(obj) (Py_INCREF(obj), obj) -#define __Pyx_Owned_Py_None(b) __Pyx_NewRef(Py_None) -static CYTHON_INLINE PyObject * __Pyx_PyBool_FromLong(long b); -static CYTHON_INLINE int __Pyx_PyObject_IsTrue(PyObject*); -static CYTHON_INLINE int __Pyx_PyObject_IsTrueAndDecref(PyObject*); -static CYTHON_INLINE PyObject* __Pyx_PyNumber_IntOrLong(PyObject* x); -#define __Pyx_PySequence_Tuple(obj)\ - (likely(PyTuple_CheckExact(obj)) ? __Pyx_NewRef(obj) : PySequence_Tuple(obj)) -static CYTHON_INLINE Py_ssize_t __Pyx_PyIndex_AsSsize_t(PyObject*); -static CYTHON_INLINE PyObject * __Pyx_PyInt_FromSize_t(size_t); -#if CYTHON_ASSUME_SAFE_MACROS -#define __pyx_PyFloat_AsDouble(x) (PyFloat_CheckExact(x) ? PyFloat_AS_DOUBLE(x) : PyFloat_AsDouble(x)) -#else -#define __pyx_PyFloat_AsDouble(x) PyFloat_AsDouble(x) -#endif -#define __pyx_PyFloat_AsFloat(x) ((float) __pyx_PyFloat_AsDouble(x)) -#if PY_MAJOR_VERSION >= 3 -#define __Pyx_PyNumber_Int(x) (PyLong_CheckExact(x) ? __Pyx_NewRef(x) : PyNumber_Long(x)) -#else -#define __Pyx_PyNumber_Int(x) (PyInt_CheckExact(x) ? __Pyx_NewRef(x) : PyNumber_Int(x)) -#endif -#define __Pyx_PyNumber_Float(x) (PyFloat_CheckExact(x) ? __Pyx_NewRef(x) : PyNumber_Float(x)) -#if PY_MAJOR_VERSION < 3 && __PYX_DEFAULT_STRING_ENCODING_IS_ASCII -static int __Pyx_sys_getdefaultencoding_not_ascii; -static int __Pyx_init_sys_getdefaultencoding_params(void) { - PyObject* sys; - PyObject* default_encoding = NULL; - PyObject* ascii_chars_u = NULL; - PyObject* ascii_chars_b = NULL; - const char* default_encoding_c; - sys = PyImport_ImportModule("sys"); - if (!sys) goto bad; - default_encoding = PyObject_CallMethod(sys, (char*) "getdefaultencoding", NULL); - Py_DECREF(sys); - if (!default_encoding) goto bad; - default_encoding_c = PyBytes_AsString(default_encoding); - if (!default_encoding_c) goto bad; - if (strcmp(default_encoding_c, "ascii") == 0) { - __Pyx_sys_getdefaultencoding_not_ascii = 0; - } else { - char ascii_chars[128]; - int c; - for (c = 0; c < 128; c++) { - ascii_chars[c] = c; - } - __Pyx_sys_getdefaultencoding_not_ascii = 1; - ascii_chars_u = PyUnicode_DecodeASCII(ascii_chars, 128, NULL); - if (!ascii_chars_u) goto bad; - ascii_chars_b = PyUnicode_AsEncodedString(ascii_chars_u, default_encoding_c, NULL); - if (!ascii_chars_b || !PyBytes_Check(ascii_chars_b) || memcmp(ascii_chars, PyBytes_AS_STRING(ascii_chars_b), 128) != 0) { - PyErr_Format( - PyExc_ValueError, - "This module compiled with c_string_encoding=ascii, but default encoding '%.200s' is not a superset of ascii.", - default_encoding_c); - goto bad; - } - Py_DECREF(ascii_chars_u); - Py_DECREF(ascii_chars_b); - } - Py_DECREF(default_encoding); - return 0; -bad: - Py_XDECREF(default_encoding); - Py_XDECREF(ascii_chars_u); - Py_XDECREF(ascii_chars_b); - return -1; -} -#endif -#if __PYX_DEFAULT_STRING_ENCODING_IS_DEFAULT && PY_MAJOR_VERSION >= 3 -#define __Pyx_PyUnicode_FromStringAndSize(c_str, size) PyUnicode_DecodeUTF8(c_str, size, NULL) -#else -#define __Pyx_PyUnicode_FromStringAndSize(c_str, size) PyUnicode_Decode(c_str, size, __PYX_DEFAULT_STRING_ENCODING, NULL) -#if __PYX_DEFAULT_STRING_ENCODING_IS_DEFAULT -static char* __PYX_DEFAULT_STRING_ENCODING; -static int __Pyx_init_sys_getdefaultencoding_params(void) { - PyObject* sys; - PyObject* default_encoding = NULL; - char* default_encoding_c; - sys = PyImport_ImportModule("sys"); - if (!sys) goto bad; - default_encoding = PyObject_CallMethod(sys, (char*) (const char*) "getdefaultencoding", NULL); - Py_DECREF(sys); - if (!default_encoding) goto bad; - default_encoding_c = PyBytes_AsString(default_encoding); - if (!default_encoding_c) goto bad; - __PYX_DEFAULT_STRING_ENCODING = (char*) malloc(strlen(default_encoding_c) + 1); - if (!__PYX_DEFAULT_STRING_ENCODING) goto bad; - strcpy(__PYX_DEFAULT_STRING_ENCODING, default_encoding_c); - Py_DECREF(default_encoding); - return 0; -bad: - Py_XDECREF(default_encoding); - return -1; -} -#endif -#endif - - -/* Test for GCC > 2.95 */ -#if defined(__GNUC__) && (__GNUC__ > 2 || (__GNUC__ == 2 && (__GNUC_MINOR__ > 95))) - #define likely(x) __builtin_expect(!!(x), 1) - #define unlikely(x) __builtin_expect(!!(x), 0) -#else /* !__GNUC__ or GCC < 2.95 */ - #define likely(x) (x) - #define unlikely(x) (x) -#endif /* __GNUC__ */ -static CYTHON_INLINE void __Pyx_pretend_to_initialize(void* ptr) { (void)ptr; } - -static PyObject *__pyx_m = NULL; -static PyObject *__pyx_d; -static PyObject *__pyx_b; -static PyObject *__pyx_cython_runtime = NULL; -static PyObject *__pyx_empty_tuple; -static PyObject *__pyx_empty_bytes; -static PyObject *__pyx_empty_unicode; -static int __pyx_lineno; -static int __pyx_clineno = 0; -static const char * __pyx_cfilenm= __FILE__; -static const char *__pyx_filename; - - -static const char *__pyx_f[] = { - "http.pyx", -}; - -/*--- Type declarations ---*/ - -/* --- Runtime support code (head) --- */ -/* Refnanny.proto */ -#ifndef CYTHON_REFNANNY - #define CYTHON_REFNANNY 0 -#endif -#if CYTHON_REFNANNY - typedef struct { - void (*INCREF)(void*, PyObject*, int); - void (*DECREF)(void*, PyObject*, int); - void (*GOTREF)(void*, PyObject*, int); - void (*GIVEREF)(void*, PyObject*, int); - void* (*SetupContext)(const char*, int, const char*); - void (*FinishContext)(void**); - } __Pyx_RefNannyAPIStruct; - static __Pyx_RefNannyAPIStruct *__Pyx_RefNanny = NULL; - static __Pyx_RefNannyAPIStruct *__Pyx_RefNannyImportAPI(const char *modname); - #define __Pyx_RefNannyDeclarations void *__pyx_refnanny = NULL; -#ifdef WITH_THREAD - #define __Pyx_RefNannySetupContext(name, acquire_gil)\ - if (acquire_gil) {\ - PyGILState_STATE __pyx_gilstate_save = PyGILState_Ensure();\ - __pyx_refnanny = __Pyx_RefNanny->SetupContext((name), __LINE__, __FILE__);\ - PyGILState_Release(__pyx_gilstate_save);\ - } else {\ - __pyx_refnanny = __Pyx_RefNanny->SetupContext((name), __LINE__, __FILE__);\ - } -#else - #define __Pyx_RefNannySetupContext(name, acquire_gil)\ - __pyx_refnanny = __Pyx_RefNanny->SetupContext((name), __LINE__, __FILE__) -#endif - #define __Pyx_RefNannyFinishContext()\ - __Pyx_RefNanny->FinishContext(&__pyx_refnanny) - #define __Pyx_INCREF(r) __Pyx_RefNanny->INCREF(__pyx_refnanny, (PyObject *)(r), __LINE__) - #define __Pyx_DECREF(r) __Pyx_RefNanny->DECREF(__pyx_refnanny, (PyObject *)(r), __LINE__) - #define __Pyx_GOTREF(r) __Pyx_RefNanny->GOTREF(__pyx_refnanny, (PyObject *)(r), __LINE__) - #define __Pyx_GIVEREF(r) __Pyx_RefNanny->GIVEREF(__pyx_refnanny, (PyObject *)(r), __LINE__) - #define __Pyx_XINCREF(r) do { if((r) != NULL) {__Pyx_INCREF(r); }} while(0) - #define __Pyx_XDECREF(r) do { if((r) != NULL) {__Pyx_DECREF(r); }} while(0) - #define __Pyx_XGOTREF(r) do { if((r) != NULL) {__Pyx_GOTREF(r); }} while(0) - #define __Pyx_XGIVEREF(r) do { if((r) != NULL) {__Pyx_GIVEREF(r);}} while(0) -#else - #define __Pyx_RefNannyDeclarations - #define __Pyx_RefNannySetupContext(name, acquire_gil) - #define __Pyx_RefNannyFinishContext() - #define __Pyx_INCREF(r) Py_INCREF(r) - #define __Pyx_DECREF(r) Py_DECREF(r) - #define __Pyx_GOTREF(r) - #define __Pyx_GIVEREF(r) - #define __Pyx_XINCREF(r) Py_XINCREF(r) - #define __Pyx_XDECREF(r) Py_XDECREF(r) - #define __Pyx_XGOTREF(r) - #define __Pyx_XGIVEREF(r) -#endif -#define __Pyx_XDECREF_SET(r, v) do {\ - PyObject *tmp = (PyObject *) r;\ - r = v; __Pyx_XDECREF(tmp);\ - } while (0) -#define __Pyx_DECREF_SET(r, v) do {\ - PyObject *tmp = (PyObject *) r;\ - r = v; __Pyx_DECREF(tmp);\ - } while (0) -#define __Pyx_CLEAR(r) do { PyObject* tmp = ((PyObject*)(r)); r = NULL; __Pyx_DECREF(tmp);} while(0) -#define __Pyx_XCLEAR(r) do { if((r) != NULL) {PyObject* tmp = ((PyObject*)(r)); r = NULL; __Pyx_DECREF(tmp);}} while(0) - -/* PyObjectGetAttrStr.proto */ -#if CYTHON_USE_TYPE_SLOTS -static CYTHON_INLINE PyObject* __Pyx_PyObject_GetAttrStr(PyObject* obj, PyObject* attr_name); -#else -#define __Pyx_PyObject_GetAttrStr(o,n) PyObject_GetAttr(o,n) -#endif - -/* GetBuiltinName.proto */ -static PyObject *__Pyx_GetBuiltinName(PyObject *name); - -/* RaiseDoubleKeywords.proto */ -static void __Pyx_RaiseDoubleKeywordsError(const char* func_name, PyObject* kw_name); - -/* ParseKeywords.proto */ -static int __Pyx_ParseOptionalKeywords(PyObject *kwds, PyObject **argnames[],\ - PyObject *kwds2, PyObject *values[], Py_ssize_t num_pos_args,\ - const char* function_name); - -/* RaiseArgTupleInvalid.proto */ -static void __Pyx_RaiseArgtupleInvalid(const char* func_name, int exact, - Py_ssize_t num_min, Py_ssize_t num_max, Py_ssize_t num_found); - -/* PyFunctionFastCall.proto */ -#if CYTHON_FAST_PYCALL -#define __Pyx_PyFunction_FastCall(func, args, nargs)\ - __Pyx_PyFunction_FastCallDict((func), (args), (nargs), NULL) -#if 1 || PY_VERSION_HEX < 0x030600B1 -static PyObject *__Pyx_PyFunction_FastCallDict(PyObject *func, PyObject **args, Py_ssize_t nargs, PyObject *kwargs); -#else -#define __Pyx_PyFunction_FastCallDict(func, args, nargs, kwargs) _PyFunction_FastCallDict(func, args, nargs, kwargs) -#endif -#define __Pyx_BUILD_ASSERT_EXPR(cond)\ - (sizeof(char [1 - 2*!(cond)]) - 1) -#ifndef Py_MEMBER_SIZE -#define Py_MEMBER_SIZE(type, member) sizeof(((type *)0)->member) -#endif - static size_t __pyx_pyframe_localsplus_offset = 0; - #include "frameobject.h" - #define __Pxy_PyFrame_Initialize_Offsets()\ - ((void)__Pyx_BUILD_ASSERT_EXPR(sizeof(PyFrameObject) == offsetof(PyFrameObject, f_localsplus) + Py_MEMBER_SIZE(PyFrameObject, f_localsplus)),\ - (void)(__pyx_pyframe_localsplus_offset = ((size_t)PyFrame_Type.tp_basicsize) - Py_MEMBER_SIZE(PyFrameObject, f_localsplus))) - #define __Pyx_PyFrame_GetLocalsplus(frame)\ - (assert(__pyx_pyframe_localsplus_offset), (PyObject **)(((char *)(frame)) + __pyx_pyframe_localsplus_offset)) -#endif - -/* PyObjectCall.proto */ -#if CYTHON_COMPILING_IN_CPYTHON -static CYTHON_INLINE PyObject* __Pyx_PyObject_Call(PyObject *func, PyObject *arg, PyObject *kw); -#else -#define __Pyx_PyObject_Call(func, arg, kw) PyObject_Call(func, arg, kw) -#endif - -/* PyObjectCallMethO.proto */ -#if CYTHON_COMPILING_IN_CPYTHON -static CYTHON_INLINE PyObject* __Pyx_PyObject_CallMethO(PyObject *func, PyObject *arg); -#endif - -/* PyObjectCallNoArg.proto */ -#if CYTHON_COMPILING_IN_CPYTHON -static CYTHON_INLINE PyObject* __Pyx_PyObject_CallNoArg(PyObject *func); -#else -#define __Pyx_PyObject_CallNoArg(func) __Pyx_PyObject_Call(func, __pyx_empty_tuple, NULL) -#endif - -/* PyCFunctionFastCall.proto */ -#if CYTHON_FAST_PYCCALL -static CYTHON_INLINE PyObject *__Pyx_PyCFunction_FastCall(PyObject *func, PyObject **args, Py_ssize_t nargs); -#else -#define __Pyx_PyCFunction_FastCall(func, args, nargs) (assert(0), NULL) -#endif - -/* PyObjectCallOneArg.proto */ -static CYTHON_INLINE PyObject* __Pyx_PyObject_CallOneArg(PyObject *func, PyObject *arg); - -/* PyObjectSetAttrStr.proto */ -#if CYTHON_USE_TYPE_SLOTS -#define __Pyx_PyObject_DelAttrStr(o,n) __Pyx_PyObject_SetAttrStr(o, n, NULL) -static CYTHON_INLINE int __Pyx_PyObject_SetAttrStr(PyObject* obj, PyObject* attr_name, PyObject* value); -#else -#define __Pyx_PyObject_DelAttrStr(o,n) PyObject_DelAttr(o,n) -#define __Pyx_PyObject_SetAttrStr(o,n,v) PyObject_SetAttr(o,n,v) -#endif - -/* PyDictVersioning.proto */ -#if CYTHON_USE_DICT_VERSIONS && CYTHON_USE_TYPE_SLOTS -#define __PYX_DICT_VERSION_INIT ((PY_UINT64_T) -1) -#define __PYX_GET_DICT_VERSION(dict) (((PyDictObject*)(dict))->ma_version_tag) -#define __PYX_UPDATE_DICT_CACHE(dict, value, cache_var, version_var)\ - (version_var) = __PYX_GET_DICT_VERSION(dict);\ - (cache_var) = (value); -#define __PYX_PY_DICT_LOOKUP_IF_MODIFIED(VAR, DICT, LOOKUP) {\ - static PY_UINT64_T __pyx_dict_version = 0;\ - static PyObject *__pyx_dict_cached_value = NULL;\ - if (likely(__PYX_GET_DICT_VERSION(DICT) == __pyx_dict_version)) {\ - (VAR) = __pyx_dict_cached_value;\ - } else {\ - (VAR) = __pyx_dict_cached_value = (LOOKUP);\ - __pyx_dict_version = __PYX_GET_DICT_VERSION(DICT);\ - }\ -} -static CYTHON_INLINE PY_UINT64_T __Pyx_get_tp_dict_version(PyObject *obj); -static CYTHON_INLINE PY_UINT64_T __Pyx_get_object_dict_version(PyObject *obj); -static CYTHON_INLINE int __Pyx_object_dict_version_matches(PyObject* obj, PY_UINT64_T tp_dict_version, PY_UINT64_T obj_dict_version); -#else -#define __PYX_GET_DICT_VERSION(dict) (0) -#define __PYX_UPDATE_DICT_CACHE(dict, value, cache_var, version_var) -#define __PYX_PY_DICT_LOOKUP_IF_MODIFIED(VAR, DICT, LOOKUP) (VAR) = (LOOKUP); -#endif - -/* GetModuleGlobalName.proto */ -#if CYTHON_USE_DICT_VERSIONS -#define __Pyx_GetModuleGlobalName(var, name) {\ - static PY_UINT64_T __pyx_dict_version = 0;\ - static PyObject *__pyx_dict_cached_value = NULL;\ - (var) = (likely(__pyx_dict_version == __PYX_GET_DICT_VERSION(__pyx_d))) ?\ - (likely(__pyx_dict_cached_value) ? __Pyx_NewRef(__pyx_dict_cached_value) : __Pyx_GetBuiltinName(name)) :\ - __Pyx__GetModuleGlobalName(name, &__pyx_dict_version, &__pyx_dict_cached_value);\ -} -#define __Pyx_GetModuleGlobalNameUncached(var, name) {\ - PY_UINT64_T __pyx_dict_version;\ - PyObject *__pyx_dict_cached_value;\ - (var) = __Pyx__GetModuleGlobalName(name, &__pyx_dict_version, &__pyx_dict_cached_value);\ -} -static PyObject *__Pyx__GetModuleGlobalName(PyObject *name, PY_UINT64_T *dict_version, PyObject **dict_cached_value); -#else -#define __Pyx_GetModuleGlobalName(var, name) (var) = __Pyx__GetModuleGlobalName(name) -#define __Pyx_GetModuleGlobalNameUncached(var, name) (var) = __Pyx__GetModuleGlobalName(name) -static CYTHON_INLINE PyObject *__Pyx__GetModuleGlobalName(PyObject *name); -#endif - -/* PySequenceContains.proto */ -static CYTHON_INLINE int __Pyx_PySequence_ContainsTF(PyObject* item, PyObject* seq, int eq) { - int result = PySequence_Contains(seq, item); - return unlikely(result < 0) ? result : (result == (eq == Py_EQ)); -} - -/* DictGetItem.proto */ -#if PY_MAJOR_VERSION >= 3 && !CYTHON_COMPILING_IN_PYPY -static PyObject *__Pyx_PyDict_GetItem(PyObject *d, PyObject* key); -#define __Pyx_PyObject_Dict_GetItem(obj, name)\ - (likely(PyDict_CheckExact(obj)) ?\ - __Pyx_PyDict_GetItem(obj, name) : PyObject_GetItem(obj, name)) -#else -#define __Pyx_PyDict_GetItem(d, key) PyObject_GetItem(d, key) -#define __Pyx_PyObject_Dict_GetItem(obj, name) PyObject_GetItem(obj, name) -#endif - -/* FetchCommonType.proto */ -static PyTypeObject* __Pyx_FetchCommonType(PyTypeObject* type); - -/* CythonFunction.proto */ -#define __Pyx_CyFunction_USED 1 -#define __Pyx_CYFUNCTION_STATICMETHOD 0x01 -#define __Pyx_CYFUNCTION_CLASSMETHOD 0x02 -#define __Pyx_CYFUNCTION_CCLASS 0x04 -#define __Pyx_CyFunction_GetClosure(f)\ - (((__pyx_CyFunctionObject *) (f))->func_closure) -#define __Pyx_CyFunction_GetClassObj(f)\ - (((__pyx_CyFunctionObject *) (f))->func_classobj) -#define __Pyx_CyFunction_Defaults(type, f)\ - ((type *)(((__pyx_CyFunctionObject *) (f))->defaults)) -#define __Pyx_CyFunction_SetDefaultsGetter(f, g)\ - ((__pyx_CyFunctionObject *) (f))->defaults_getter = (g) -typedef struct { - PyCFunctionObject func; -#if PY_VERSION_HEX < 0x030500A0 - PyObject *func_weakreflist; -#endif - PyObject *func_dict; - PyObject *func_name; - PyObject *func_qualname; - PyObject *func_doc; - PyObject *func_globals; - PyObject *func_code; - PyObject *func_closure; - PyObject *func_classobj; - void *defaults; - int defaults_pyobjects; - int flags; - PyObject *defaults_tuple; - PyObject *defaults_kwdict; - PyObject *(*defaults_getter)(PyObject *); - PyObject *func_annotations; -} __pyx_CyFunctionObject; -static PyTypeObject *__pyx_CyFunctionType = 0; -#define __Pyx_CyFunction_Check(obj) (__Pyx_TypeCheck(obj, __pyx_CyFunctionType)) -#define __Pyx_CyFunction_NewEx(ml, flags, qualname, self, module, globals, code)\ - __Pyx_CyFunction_New(__pyx_CyFunctionType, ml, flags, qualname, self, module, globals, code) -static PyObject *__Pyx_CyFunction_New(PyTypeObject *, PyMethodDef *ml, - int flags, PyObject* qualname, - PyObject *self, - PyObject *module, PyObject *globals, - PyObject* code); -static CYTHON_INLINE void *__Pyx_CyFunction_InitDefaults(PyObject *m, - size_t size, - int pyobjects); -static CYTHON_INLINE void __Pyx_CyFunction_SetDefaultsTuple(PyObject *m, - PyObject *tuple); -static CYTHON_INLINE void __Pyx_CyFunction_SetDefaultsKwDict(PyObject *m, - PyObject *dict); -static CYTHON_INLINE void __Pyx_CyFunction_SetAnnotationsDict(PyObject *m, - PyObject *dict); -static int __pyx_CyFunction_init(void); - -/* ListAppend.proto */ -#if CYTHON_USE_PYLIST_INTERNALS && CYTHON_ASSUME_SAFE_MACROS -static CYTHON_INLINE int __Pyx_PyList_Append(PyObject* list, PyObject* x) { - PyListObject* L = (PyListObject*) list; - Py_ssize_t len = Py_SIZE(list); - if (likely(L->allocated > len) & likely(len > (L->allocated >> 1))) { - Py_INCREF(x); - PyList_SET_ITEM(list, len, x); - Py_SIZE(list) = len+1; - return 0; - } - return PyList_Append(list, x); -} -#else -#define __Pyx_PyList_Append(L,x) PyList_Append(L,x) -#endif - -/* PyObjectCall2Args.proto */ -static CYTHON_UNUSED PyObject* __Pyx_PyObject_Call2Args(PyObject* function, PyObject* arg1, PyObject* arg2); - -/* PyObjectGetMethod.proto */ -static int __Pyx_PyObject_GetMethod(PyObject *obj, PyObject *name, PyObject **method); - -/* PyObjectCallMethod1.proto */ -static PyObject* __Pyx_PyObject_CallMethod1(PyObject* obj, PyObject* method_name, PyObject* arg); - -/* append.proto */ -static CYTHON_INLINE int __Pyx_PyObject_Append(PyObject* L, PyObject* x); - -/* PyIntCompare.proto */ -static CYTHON_INLINE PyObject* __Pyx_PyInt_EqObjC(PyObject *op1, PyObject *op2, long intval, long inplace); - -/* GetItemInt.proto */ -#define __Pyx_GetItemInt(o, i, type, is_signed, to_py_func, is_list, wraparound, boundscheck)\ - (__Pyx_fits_Py_ssize_t(i, type, is_signed) ?\ - __Pyx_GetItemInt_Fast(o, (Py_ssize_t)i, is_list, wraparound, boundscheck) :\ - (is_list ? (PyErr_SetString(PyExc_IndexError, "list index out of range"), (PyObject*)NULL) :\ - __Pyx_GetItemInt_Generic(o, to_py_func(i)))) -#define __Pyx_GetItemInt_List(o, i, type, is_signed, to_py_func, is_list, wraparound, boundscheck)\ - (__Pyx_fits_Py_ssize_t(i, type, is_signed) ?\ - __Pyx_GetItemInt_List_Fast(o, (Py_ssize_t)i, wraparound, boundscheck) :\ - (PyErr_SetString(PyExc_IndexError, "list index out of range"), (PyObject*)NULL)) -static CYTHON_INLINE PyObject *__Pyx_GetItemInt_List_Fast(PyObject *o, Py_ssize_t i, - int wraparound, int boundscheck); -#define __Pyx_GetItemInt_Tuple(o, i, type, is_signed, to_py_func, is_list, wraparound, boundscheck)\ - (__Pyx_fits_Py_ssize_t(i, type, is_signed) ?\ - __Pyx_GetItemInt_Tuple_Fast(o, (Py_ssize_t)i, wraparound, boundscheck) :\ - (PyErr_SetString(PyExc_IndexError, "tuple index out of range"), (PyObject*)NULL)) -static CYTHON_INLINE PyObject *__Pyx_GetItemInt_Tuple_Fast(PyObject *o, Py_ssize_t i, - int wraparound, int boundscheck); -static PyObject *__Pyx_GetItemInt_Generic(PyObject *o, PyObject* j); -static CYTHON_INLINE PyObject *__Pyx_GetItemInt_Fast(PyObject *o, Py_ssize_t i, - int is_list, int wraparound, int boundscheck); - -/* ObjectGetItem.proto */ -#if CYTHON_USE_TYPE_SLOTS -static CYTHON_INLINE PyObject *__Pyx_PyObject_GetItem(PyObject *obj, PyObject* key); -#else -#define __Pyx_PyObject_GetItem(obj, key) PyObject_GetItem(obj, key) -#endif - -/* PyIntBinop.proto */ -#if !CYTHON_COMPILING_IN_PYPY -static PyObject* __Pyx_PyInt_AddObjC(PyObject *op1, PyObject *op2, long intval, int inplace, int zerodivision_check); -#else -#define __Pyx_PyInt_AddObjC(op1, op2, intval, inplace, zerodivision_check)\ - (inplace ? PyNumber_InPlaceAdd(op1, op2) : PyNumber_Add(op1, op2)) -#endif - -/* ArgTypeTest.proto */ -#define __Pyx_ArgTypeTest(obj, type, none_allowed, name, exact)\ - ((likely((Py_TYPE(obj) == type) | (none_allowed && (obj == Py_None)))) ? 1 :\ - __Pyx__ArgTypeTest(obj, type, name, exact)) -static int __Pyx__ArgTypeTest(PyObject *obj, PyTypeObject *type, const char *name, int exact); - -/* IncludeStringH.proto */ -#include - -/* BytesEquals.proto */ -static CYTHON_INLINE int __Pyx_PyBytes_Equals(PyObject* s1, PyObject* s2, int equals); - -/* UnpackUnboundCMethod.proto */ -typedef struct { - PyObject *type; - PyObject **method_name; - PyCFunction func; - PyObject *method; - int flag; -} __Pyx_CachedCFunction; - -/* CallUnboundCMethod0.proto */ -static PyObject* __Pyx__CallUnboundCMethod0(__Pyx_CachedCFunction* cfunc, PyObject* self); -#if CYTHON_COMPILING_IN_CPYTHON -#define __Pyx_CallUnboundCMethod0(cfunc, self)\ - (likely((cfunc)->func) ?\ - (likely((cfunc)->flag == METH_NOARGS) ? (*((cfunc)->func))(self, NULL) :\ - (PY_VERSION_HEX >= 0x030600B1 && likely((cfunc)->flag == METH_FASTCALL) ?\ - (PY_VERSION_HEX >= 0x030700A0 ?\ - (*(__Pyx_PyCFunctionFast)(void*)(PyCFunction)(cfunc)->func)(self, &__pyx_empty_tuple, 0) :\ - (*(__Pyx_PyCFunctionFastWithKeywords)(void*)(PyCFunction)(cfunc)->func)(self, &__pyx_empty_tuple, 0, NULL)) :\ - (PY_VERSION_HEX >= 0x030700A0 && (cfunc)->flag == (METH_FASTCALL | METH_KEYWORDS) ?\ - (*(__Pyx_PyCFunctionFastWithKeywords)(void*)(PyCFunction)(cfunc)->func)(self, &__pyx_empty_tuple, 0, NULL) :\ - (likely((cfunc)->flag == (METH_VARARGS | METH_KEYWORDS)) ? ((*(PyCFunctionWithKeywords)(void*)(PyCFunction)(cfunc)->func)(self, __pyx_empty_tuple, NULL)) :\ - ((cfunc)->flag == METH_VARARGS ? (*((cfunc)->func))(self, __pyx_empty_tuple) :\ - __Pyx__CallUnboundCMethod0(cfunc, self)))))) :\ - __Pyx__CallUnboundCMethod0(cfunc, self)) -#else -#define __Pyx_CallUnboundCMethod0(cfunc, self) __Pyx__CallUnboundCMethod0(cfunc, self) -#endif - -/* pyfrozenset_new.proto */ -static CYTHON_INLINE PyObject* __Pyx_PyFrozenSet_New(PyObject* it); - -/* PySetContains.proto */ -static CYTHON_INLINE int __Pyx_PySet_ContainsTF(PyObject* key, PyObject* set, int eq); - -/* PyDictContains.proto */ -static CYTHON_INLINE int __Pyx_PyDict_ContainsTF(PyObject* item, PyObject* dict, int eq) { - int result = PyDict_Contains(dict, item); - return unlikely(result < 0) ? result : (result == (eq == Py_EQ)); -} - -/* GetTopmostException.proto */ -#if CYTHON_USE_EXC_INFO_STACK -static _PyErr_StackItem * __Pyx_PyErr_GetTopmostException(PyThreadState *tstate); -#endif - -/* PyThreadStateGet.proto */ -#if CYTHON_FAST_THREAD_STATE -#define __Pyx_PyThreadState_declare PyThreadState *__pyx_tstate; -#define __Pyx_PyThreadState_assign __pyx_tstate = __Pyx_PyThreadState_Current; -#define __Pyx_PyErr_Occurred() __pyx_tstate->curexc_type -#else -#define __Pyx_PyThreadState_declare -#define __Pyx_PyThreadState_assign -#define __Pyx_PyErr_Occurred() PyErr_Occurred() -#endif - -/* SaveResetException.proto */ -#if CYTHON_FAST_THREAD_STATE -#define __Pyx_ExceptionSave(type, value, tb) __Pyx__ExceptionSave(__pyx_tstate, type, value, tb) -static CYTHON_INLINE void __Pyx__ExceptionSave(PyThreadState *tstate, PyObject **type, PyObject **value, PyObject **tb); -#define __Pyx_ExceptionReset(type, value, tb) __Pyx__ExceptionReset(__pyx_tstate, type, value, tb) -static CYTHON_INLINE void __Pyx__ExceptionReset(PyThreadState *tstate, PyObject *type, PyObject *value, PyObject *tb); -#else -#define __Pyx_ExceptionSave(type, value, tb) PyErr_GetExcInfo(type, value, tb) -#define __Pyx_ExceptionReset(type, value, tb) PyErr_SetExcInfo(type, value, tb) -#endif - -/* PyErrExceptionMatches.proto */ -#if CYTHON_FAST_THREAD_STATE -#define __Pyx_PyErr_ExceptionMatches(err) __Pyx_PyErr_ExceptionMatchesInState(__pyx_tstate, err) -static CYTHON_INLINE int __Pyx_PyErr_ExceptionMatchesInState(PyThreadState* tstate, PyObject* err); -#else -#define __Pyx_PyErr_ExceptionMatches(err) PyErr_ExceptionMatches(err) -#endif - -/* GetException.proto */ -#if CYTHON_FAST_THREAD_STATE -#define __Pyx_GetException(type, value, tb) __Pyx__GetException(__pyx_tstate, type, value, tb) -static int __Pyx__GetException(PyThreadState *tstate, PyObject **type, PyObject **value, PyObject **tb); -#else -static int __Pyx_GetException(PyObject **type, PyObject **value, PyObject **tb); -#endif - -/* SliceObject.proto */ -static CYTHON_INLINE PyObject* __Pyx_PyObject_GetSlice( - PyObject* obj, Py_ssize_t cstart, Py_ssize_t cstop, - PyObject** py_start, PyObject** py_stop, PyObject** py_slice, - int has_cstart, int has_cstop, int wraparound); - -/* ListCompAppend.proto */ -#if CYTHON_USE_PYLIST_INTERNALS && CYTHON_ASSUME_SAFE_MACROS -static CYTHON_INLINE int __Pyx_ListComp_Append(PyObject* list, PyObject* x) { - PyListObject* L = (PyListObject*) list; - Py_ssize_t len = Py_SIZE(list); - if (likely(L->allocated > len)) { - Py_INCREF(x); - PyList_SET_ITEM(list, len, x); - Py_SIZE(list) = len+1; - return 0; - } - return PyList_Append(list, x); -} -#else -#define __Pyx_ListComp_Append(L,x) PyList_Append(L,x) -#endif - -/* Import.proto */ -static PyObject *__Pyx_Import(PyObject *name, PyObject *from_list, int level); - -/* ImportFrom.proto */ -static PyObject* __Pyx_ImportFrom(PyObject* module, PyObject* name); - -/* CalculateMetaclass.proto */ -static PyObject *__Pyx_CalculateMetaclass(PyTypeObject *metaclass, PyObject *bases); - -/* SetNameInClass.proto */ -#if CYTHON_COMPILING_IN_CPYTHON && PY_VERSION_HEX >= 0x030500A1 -#define __Pyx_SetNameInClass(ns, name, value)\ - (likely(PyDict_CheckExact(ns)) ? _PyDict_SetItem_KnownHash(ns, name, value, ((PyASCIIObject *) name)->hash) : PyObject_SetItem(ns, name, value)) -#elif CYTHON_COMPILING_IN_CPYTHON -#define __Pyx_SetNameInClass(ns, name, value)\ - (likely(PyDict_CheckExact(ns)) ? PyDict_SetItem(ns, name, value) : PyObject_SetItem(ns, name, value)) -#else -#define __Pyx_SetNameInClass(ns, name, value) PyObject_SetItem(ns, name, value) -#endif - -/* Py3ClassCreate.proto */ -static PyObject *__Pyx_Py3MetaclassPrepare(PyObject *metaclass, PyObject *bases, PyObject *name, PyObject *qualname, - PyObject *mkw, PyObject *modname, PyObject *doc); -static PyObject *__Pyx_Py3ClassCreate(PyObject *metaclass, PyObject *name, PyObject *bases, PyObject *dict, - PyObject *mkw, int calculate_metaclass, int allow_py2_metaclass); - -/* PyErrFetchRestore.proto */ -#if CYTHON_FAST_THREAD_STATE -#define __Pyx_PyErr_Clear() __Pyx_ErrRestore(NULL, NULL, NULL) -#define __Pyx_ErrRestoreWithState(type, value, tb) __Pyx_ErrRestoreInState(PyThreadState_GET(), type, value, tb) -#define __Pyx_ErrFetchWithState(type, value, tb) __Pyx_ErrFetchInState(PyThreadState_GET(), type, value, tb) -#define __Pyx_ErrRestore(type, value, tb) __Pyx_ErrRestoreInState(__pyx_tstate, type, value, tb) -#define __Pyx_ErrFetch(type, value, tb) __Pyx_ErrFetchInState(__pyx_tstate, type, value, tb) -static CYTHON_INLINE void __Pyx_ErrRestoreInState(PyThreadState *tstate, PyObject *type, PyObject *value, PyObject *tb); -static CYTHON_INLINE void __Pyx_ErrFetchInState(PyThreadState *tstate, PyObject **type, PyObject **value, PyObject **tb); -#if CYTHON_COMPILING_IN_CPYTHON -#define __Pyx_PyErr_SetNone(exc) (Py_INCREF(exc), __Pyx_ErrRestore((exc), NULL, NULL)) -#else -#define __Pyx_PyErr_SetNone(exc) PyErr_SetNone(exc) -#endif -#else -#define __Pyx_PyErr_Clear() PyErr_Clear() -#define __Pyx_PyErr_SetNone(exc) PyErr_SetNone(exc) -#define __Pyx_ErrRestoreWithState(type, value, tb) PyErr_Restore(type, value, tb) -#define __Pyx_ErrFetchWithState(type, value, tb) PyErr_Fetch(type, value, tb) -#define __Pyx_ErrRestoreInState(tstate, type, value, tb) PyErr_Restore(type, value, tb) -#define __Pyx_ErrFetchInState(tstate, type, value, tb) PyErr_Fetch(type, value, tb) -#define __Pyx_ErrRestore(type, value, tb) PyErr_Restore(type, value, tb) -#define __Pyx_ErrFetch(type, value, tb) PyErr_Fetch(type, value, tb) -#endif - -/* CLineInTraceback.proto */ -#ifdef CYTHON_CLINE_IN_TRACEBACK -#define __Pyx_CLineForTraceback(tstate, c_line) (((CYTHON_CLINE_IN_TRACEBACK)) ? c_line : 0) -#else -static int __Pyx_CLineForTraceback(PyThreadState *tstate, int c_line); -#endif - -/* CodeObjectCache.proto */ -typedef struct { - PyCodeObject* code_object; - int code_line; -} __Pyx_CodeObjectCacheEntry; -struct __Pyx_CodeObjectCache { - int count; - int max_count; - __Pyx_CodeObjectCacheEntry* entries; -}; -static struct __Pyx_CodeObjectCache __pyx_code_cache = {0,0,NULL}; -static int __pyx_bisect_code_objects(__Pyx_CodeObjectCacheEntry* entries, int count, int code_line); -static PyCodeObject *__pyx_find_code_object(int code_line); -static void __pyx_insert_code_object(int code_line, PyCodeObject* code_object); - -/* AddTraceback.proto */ -static void __Pyx_AddTraceback(const char *funcname, int c_line, - int py_line, const char *filename); - -/* CIntToPy.proto */ -static CYTHON_INLINE PyObject* __Pyx_PyInt_From_long(long value); - -/* CIntFromPy.proto */ -static CYTHON_INLINE unsigned int __Pyx_PyInt_As_unsigned_int(PyObject *); - -/* CIntFromPy.proto */ -static CYTHON_INLINE long __Pyx_PyInt_As_long(PyObject *); - -/* CIntFromPy.proto */ -static CYTHON_INLINE int __Pyx_PyInt_As_int(PyObject *); - -/* FastTypeChecks.proto */ -#if CYTHON_COMPILING_IN_CPYTHON -#define __Pyx_TypeCheck(obj, type) __Pyx_IsSubtype(Py_TYPE(obj), (PyTypeObject *)type) -static CYTHON_INLINE int __Pyx_IsSubtype(PyTypeObject *a, PyTypeObject *b); -static CYTHON_INLINE int __Pyx_PyErr_GivenExceptionMatches(PyObject *err, PyObject *type); -static CYTHON_INLINE int __Pyx_PyErr_GivenExceptionMatches2(PyObject *err, PyObject *type1, PyObject *type2); -#else -#define __Pyx_TypeCheck(obj, type) PyObject_TypeCheck(obj, (PyTypeObject *)type) -#define __Pyx_PyErr_GivenExceptionMatches(err, type) PyErr_GivenExceptionMatches(err, type) -#define __Pyx_PyErr_GivenExceptionMatches2(err, type1, type2) (PyErr_GivenExceptionMatches(err, type1) || PyErr_GivenExceptionMatches(err, type2)) -#endif -#define __Pyx_PyException_Check(obj) __Pyx_TypeCheck(obj, PyExc_Exception) - -/* CheckBinaryVersion.proto */ -static int __Pyx_check_binary_version(void); - -/* InitStrings.proto */ -static int __Pyx_InitStrings(__Pyx_StringTabEntry *t); - - -/* Module declarations from 'pmercury.protocols.http' */ -#define __Pyx_MODULE_NAME "pmercury.protocols.http" -extern int __pyx_module_is_main_pmercury__protocols__http; -int __pyx_module_is_main_pmercury__protocols__http = 0; - -/* Implementation of 'pmercury.protocols.http' */ -static PyObject *__pyx_builtin_staticmethod; -static PyObject *__pyx_builtin_map; -static PyObject *__pyx_builtin_UnicodeDecodeError; -static PyObject *__pyx_builtin_range; -static const char __pyx_k_[] = "*"; -static const char __pyx_k_c[] = "c"; -static const char __pyx_k_h[] = "h_"; -static const char __pyx_k_i[] = "i"; -static const char __pyx_k_s[] = "(%s)"; -static const char __pyx_k_t[] = "t_"; -static const char __pyx_k_x[] = "x"; -static const char __pyx_k__2[] = "-"; -static const char __pyx_k__3[] = "_"; -static const char __pyx_k__5[] = "\r\n"; -static const char __pyx_k__8[] = ""; -static const char __pyx_k__9[] = ": "; -static const char __pyx_k_os[] = "os"; -static const char __pyx_k_rh[] = "rh"; -static const char __pyx_k_t0[] = "t0_"; -static const char __pyx_k__11[] = ")"; -static const char __pyx_k__14[] = "/../"; -static const char __pyx_k_dnt[] = "dnt"; -static const char __pyx_k_doc[] = "__doc__"; -static const char __pyx_k_dpr[] = "dpr"; -static const char __pyx_k_h_c[] = "h_c"; -static const char __pyx_k_hex[] = "hex"; -static const char __pyx_k_map[] = "map"; -static const char __pyx_k_sys[] = "sys"; -static const char __pyx_k_uri[] = "uri"; -static const char __pyx_k_HTTP[] = "HTTP"; -static const char __pyx_k_data[] = "data"; -static const char __pyx_k_file[] = "__file__"; -static const char __pyx_k_fp_h[] = "fp_h"; -static const char __pyx_k_host[] = "host"; -static const char __pyx_k_http[] = "http"; -static const char __pyx_k_init[] = "__init__"; -static const char __pyx_k_main[] = "__main__"; -static const char __pyx_k_name[] = "name"; -static const char __pyx_k_path[] = "path"; -static const char __pyx_k_self[] = "self"; -static const char __pyx_k_test[] = "__test__"; -static const char __pyx_k_debug[] = "debug"; -static const char __pyx_k_field[] = "field"; -static const char __pyx_k_fp_db[] = "fp_db"; -static const char __pyx_k_lower[] = "lower"; -static const char __pyx_k_range[] = "range"; -static const char __pyx_k_split[] = "split"; -static const char __pyx_k_accept[] = "accept"; -static const char __pyx_k_append[] = "append"; -static const char __pyx_k_approx[] = "approx"; -static const char __pyx_k_config[] = "config"; -static const char __pyx_k_decode[] = "decode"; -static const char __pyx_k_dst_ip[] = "dst_ip"; -static const char __pyx_k_encode[] = "encode"; -static const char __pyx_k_fp_str[] = "fp_str_"; -static const char __pyx_k_import[] = "__import__"; -static const char __pyx_k_method[] = "method"; -static const char __pyx_k_module[] = "__module__"; -static const char __pyx_k_name_2[] = "__name__"; -static const char __pyx_k_offset[] = "offset"; -static const char __pyx_k_origin[] = "origin"; -static const char __pyx_k_abspath[] = "abspath"; -static const char __pyx_k_context[] = "context"; -static const char __pyx_k_dirname[] = "dirname"; -static const char __pyx_k_fromhex[] = "fromhex"; -static const char __pyx_k_headers[] = "headers"; -static const char __pyx_k_http_ah[] = "http_ah"; -static const char __pyx_k_prepare[] = "__prepare__"; -static const char __pyx_k_replace[] = "replace"; -static const char __pyx_k_request[] = "request"; -static const char __pyx_k_version[] = "version"; -static const char __pyx_k_Protocol[] = "Protocol"; -static const char __pyx_k_data_len[] = "data_len"; -static const char __pyx_k_dst_port[] = "dst_port"; -static const char __pyx_k_endpoint[] = "endpoint"; -static const char __pyx_k_http_ctx[] = "http_ctx"; -static const char __pyx_k_http_pyx[] = "http.pyx"; -static const char __pyx_k_preamble[] = "preamble"; -static const char __pyx_k_qualname[] = "__qualname__"; -static const char __pyx_k_t0_lower[] = "t0_lower"; -static const char __pyx_k_context_2[] = "context_"; -static const char __pyx_k_http_cish[] = "http_cish"; -static const char __pyx_k_http_cssh[] = "http_cssh"; -static const char __pyx_k_list_oses[] = "list_oses"; -static const char __pyx_k_metaclass[] = "__metaclass__"; -static const char __pyx_k_connection[] = "connection"; -static const char __pyx_k_list_procs[] = "list_procs"; -static const char __pyx_k_user_agent[] = "user-agent"; -static const char __pyx_k_HTTP___init[] = "HTTP.__init__"; -static const char __pyx_k_all_headers[] = "all_headers"; -static const char __pyx_k_fingerprint[] = "fingerprint"; -static const char __pyx_k_fp_database[] = "fp_database"; -static const char __pyx_k_os_identify[] = "os_identify"; -static const char __pyx_k_content_type[] = "content-type"; -static const char __pyx_k_headers_data[] = "headers_data"; -static const char __pyx_k_intervention[] = "intervention"; -static const char __pyx_k_staticmethod[] = "staticmethod"; -static const char __pyx_k_user_agent_2[] = "user_agent"; -static const char __pyx_k_cache_control[] = "cache-control"; -static const char __pyx_k_proc_identify[] = "proc_identify"; -static const char __pyx_k_content_length[] = "content-length"; -static const char __pyx_k_proto_identify[] = "proto_identify"; -static const char __pyx_k_viewport_width[] = "viewport-width"; -static const char __pyx_k_accept_encoding[] = "accept-encoding"; -static const char __pyx_k_accept_language[] = "accept-language"; -static const char __pyx_k_contextual_data[] = "contextual_data"; -static const char __pyx_k_x_forwarded_for[] = "x-forwarded-for"; -static const char __pyx_k_HTTP_fingerprint[] = "HTTP.fingerprint"; -static const char __pyx_k_HTTP_os_identify[] = "HTTP.os_identify"; -static const char __pyx_k_x_requested_with[] = "x-requested-with"; -static const char __pyx_k_x_forwarded_for_2[] = "x_forwarded_for"; -static const char __pyx_k_HTTP_proc_identify[] = "HTTP.proc_identify"; -static const char __pyx_k_UnicodeDecodeError[] = "UnicodeDecodeError"; -static const char __pyx_k_cline_in_traceback[] = "cline_in_traceback"; -static const char __pyx_k_get_human_readable[] = "get_human_readable"; -static const char __pyx_k_HTTP_proto_identify[] = "HTTP.proto_identify"; -static const char __pyx_k_HTTP_get_human_readable[] = "HTTP.get_human_readable"; -static const char __pyx_k_pmercury_protocols_http[] = "pmercury.protocols.http"; -static const char __pyx_k_upgrade_insecure_requests[] = "upgrade-insecure-requests"; -static const char __pyx_k_HTTP___init___locals_lambda[] = "HTTP.__init__.."; -static const char __pyx_k_pmercury_protocols_protocol[] = "pmercury.protocols.protocol"; -static const char __pyx_k_case_sensitive_static_headers[] = "case_sensitive_static_headers"; -static const char __pyx_k_Copyright_c_2019_Cisco_Systems[] = "\n Copyright (c) 2019 Cisco Systems, Inc. All rights reserved.\n License at https://github.com/cisco/mercury/blob/master/LICENSE\n"; -static const char __pyx_k_case_insensitive_static_headers[] = "case_insensitive_static_headers"; -static PyObject *__pyx_kp_u_; -static PyObject *__pyx_n_s_HTTP; -static PyObject *__pyx_n_s_HTTP___init; -static PyObject *__pyx_n_s_HTTP___init___locals_lambda; -static PyObject *__pyx_n_s_HTTP_fingerprint; -static PyObject *__pyx_n_s_HTTP_get_human_readable; -static PyObject *__pyx_n_s_HTTP_os_identify; -static PyObject *__pyx_n_s_HTTP_proc_identify; -static PyObject *__pyx_n_s_HTTP_proto_identify; -static PyObject *__pyx_n_s_Protocol; -static PyObject *__pyx_n_s_UnicodeDecodeError; -static PyObject *__pyx_kp_u__11; -static PyObject *__pyx_kp_u__14; -static PyObject *__pyx_kp_u__2; -static PyObject *__pyx_n_u__3; -static PyObject *__pyx_kp_b__5; -static PyObject *__pyx_kp_b__8; -static PyObject *__pyx_kp_u__8; -static PyObject *__pyx_kp_b__9; -static PyObject *__pyx_n_s_abspath; -static PyObject *__pyx_n_b_accept; -static PyObject *__pyx_kp_b_accept_encoding; -static PyObject *__pyx_kp_b_accept_language; -static PyObject *__pyx_n_s_all_headers; -static PyObject *__pyx_n_s_append; -static PyObject *__pyx_n_s_approx; -static PyObject *__pyx_n_s_c; -static PyObject *__pyx_kp_b_cache_control; -static PyObject *__pyx_n_s_case_insensitive_static_headers; -static PyObject *__pyx_n_u_case_insensitive_static_headers; -static PyObject *__pyx_n_s_case_sensitive_static_headers; -static PyObject *__pyx_n_u_case_sensitive_static_headers; -static PyObject *__pyx_n_s_cline_in_traceback; -static PyObject *__pyx_n_s_config; -static PyObject *__pyx_n_b_connection; -static PyObject *__pyx_kp_b_content_length; -static PyObject *__pyx_kp_b_content_type; -static PyObject *__pyx_n_s_context; -static PyObject *__pyx_n_u_context; -static PyObject *__pyx_n_s_context_2; -static PyObject *__pyx_n_s_contextual_data; -static PyObject *__pyx_n_s_data; -static PyObject *__pyx_n_u_data; -static PyObject *__pyx_n_s_data_len; -static PyObject *__pyx_n_s_debug; -static PyObject *__pyx_n_s_decode; -static PyObject *__pyx_n_s_dirname; -static PyObject *__pyx_n_b_dnt; -static PyObject *__pyx_n_s_doc; -static PyObject *__pyx_n_b_dpr; -static PyObject *__pyx_n_s_dst_ip; -static PyObject *__pyx_n_s_dst_port; -static PyObject *__pyx_n_s_encode; -static PyObject *__pyx_n_s_endpoint; -static PyObject *__pyx_n_s_field; -static PyObject *__pyx_n_s_file; -static PyObject *__pyx_n_s_fingerprint; -static PyObject *__pyx_n_s_fp_database; -static PyObject *__pyx_n_s_fp_db; -static PyObject *__pyx_n_s_fp_h; -static PyObject *__pyx_n_s_fp_str; -static PyObject *__pyx_n_s_fromhex; -static PyObject *__pyx_n_s_get_human_readable; -static PyObject *__pyx_n_s_h; -static PyObject *__pyx_n_s_h_c; -static PyObject *__pyx_n_s_headers; -static PyObject *__pyx_n_s_headers_data; -static PyObject *__pyx_n_s_hex; -static PyObject *__pyx_n_b_host; -static PyObject *__pyx_n_u_host; -static PyObject *__pyx_n_u_http; -static PyObject *__pyx_n_s_http_ah; -static PyObject *__pyx_n_s_http_cish; -static PyObject *__pyx_n_s_http_cssh; -static PyObject *__pyx_n_s_http_ctx; -static PyObject *__pyx_kp_s_http_pyx; -static PyObject *__pyx_n_s_i; -static PyObject *__pyx_n_s_import; -static PyObject *__pyx_n_s_init; -static PyObject *__pyx_n_b_intervention; -static PyObject *__pyx_n_s_list_oses; -static PyObject *__pyx_n_s_list_procs; -static PyObject *__pyx_n_s_lower; -static PyObject *__pyx_n_s_main; -static PyObject *__pyx_n_s_map; -static PyObject *__pyx_n_s_metaclass; -static PyObject *__pyx_n_u_method; -static PyObject *__pyx_n_s_module; -static PyObject *__pyx_n_u_name; -static PyObject *__pyx_n_s_name_2; -static PyObject *__pyx_n_s_offset; -static PyObject *__pyx_n_b_origin; -static PyObject *__pyx_n_s_os; -static PyObject *__pyx_n_s_os_identify; -static PyObject *__pyx_n_s_path; -static PyObject *__pyx_n_s_pmercury_protocols_http; -static PyObject *__pyx_n_s_pmercury_protocols_protocol; -static PyObject *__pyx_n_u_preamble; -static PyObject *__pyx_n_s_prepare; -static PyObject *__pyx_n_s_proc_identify; -static PyObject *__pyx_n_s_proto_identify; -static PyObject *__pyx_n_s_qualname; -static PyObject *__pyx_n_s_range; -static PyObject *__pyx_n_s_replace; -static PyObject *__pyx_n_s_request; -static PyObject *__pyx_n_s_rh; -static PyObject *__pyx_kp_u_s; -static PyObject *__pyx_n_s_self; -static PyObject *__pyx_n_s_split; -static PyObject *__pyx_n_s_staticmethod; -static PyObject *__pyx_n_s_sys; -static PyObject *__pyx_n_s_t; -static PyObject *__pyx_n_s_t0; -static PyObject *__pyx_n_s_t0_lower; -static PyObject *__pyx_n_s_test; -static PyObject *__pyx_kp_b_upgrade_insecure_requests; -static PyObject *__pyx_n_u_uri; -static PyObject *__pyx_kp_b_user_agent; -static PyObject *__pyx_n_u_user_agent_2; -static PyObject *__pyx_n_u_version; -static PyObject *__pyx_kp_b_viewport_width; -static PyObject *__pyx_n_s_x; -static PyObject *__pyx_kp_b_x_forwarded_for; -static PyObject *__pyx_n_u_x_forwarded_for_2; -static PyObject *__pyx_kp_b_x_requested_with; -static PyObject *__pyx_lambda_funcdef_lambda(CYTHON_UNUSED PyObject *__pyx_self, PyObject *__pyx_v_x); /* proto */ -static PyObject *__pyx_lambda_funcdef_lambda1(CYTHON_UNUSED PyObject *__pyx_self, PyObject *__pyx_v_x); /* proto */ -static PyObject *__pyx_pf_8pmercury_9protocols_4http_4HTTP___init__(CYTHON_UNUSED PyObject *__pyx_self, PyObject *__pyx_v_self, CYTHON_UNUSED PyObject *__pyx_v_fp_database, PyObject *__pyx_v_config); /* proto */ -static PyObject *__pyx_pf_8pmercury_9protocols_4http_4HTTP_2proto_identify(CYTHON_UNUSED PyObject *__pyx_self, PyObject *__pyx_v_data, PyObject *__pyx_v_offset, PyObject *__pyx_v_data_len); /* proto */ -static PyObject *__pyx_pf_8pmercury_9protocols_4http_4HTTP_4fingerprint(CYTHON_UNUSED PyObject *__pyx_self, PyObject *__pyx_v_data, unsigned int __pyx_v_offset, CYTHON_UNUSED unsigned int __pyx_v_data_len); /* proto */ -static PyObject *__pyx_pf_8pmercury_9protocols_4http_4HTTP_6get_human_readable(CYTHON_UNUSED PyObject *__pyx_self, CYTHON_UNUSED PyObject *__pyx_v_self, PyObject *__pyx_v_fp_str_); /* proto */ -static PyObject *__pyx_pf_8pmercury_9protocols_4http_4HTTP_8proc_identify(CYTHON_UNUSED PyObject *__pyx_self, CYTHON_UNUSED PyObject *__pyx_v_self, CYTHON_UNUSED PyObject *__pyx_v_fp_str_, CYTHON_UNUSED PyObject *__pyx_v_context_, CYTHON_UNUSED PyObject *__pyx_v_dst_ip, CYTHON_UNUSED PyObject *__pyx_v_dst_port, CYTHON_UNUSED PyObject *__pyx_v_list_procs, CYTHON_UNUSED PyObject *__pyx_v_endpoint, CYTHON_UNUSED PyObject *__pyx_v_approx, CYTHON_UNUSED PyObject *__pyx_v_debug); /* proto */ -static PyObject *__pyx_pf_8pmercury_9protocols_4http_4HTTP_10os_identify(CYTHON_UNUSED PyObject *__pyx_self, CYTHON_UNUSED PyObject *__pyx_v_self, CYTHON_UNUSED PyObject *__pyx_v_fp_str_, CYTHON_UNUSED PyObject *__pyx_v_list_oses); /* proto */ -static __Pyx_CachedCFunction __pyx_umethod_PyBytes_Type_hex = {0, &__pyx_n_s_hex, 0, 0, 0}; -static __Pyx_CachedCFunction __pyx_umethod_PyBytes_Type_lower = {0, &__pyx_n_s_lower, 0, 0, 0}; -static PyObject *__pyx_int_0; -static PyObject *__pyx_int_1; -static PyObject *__pyx_int_2; -static PyObject *__pyx_int_3; -static PyObject *__pyx_int_16; -static PyObject *__pyx_int_32; -static PyObject *__pyx_int_69; -static PyObject *__pyx_int_71; -static PyObject *__pyx_int_84; -static PyObject *__pyx_int_neg_1; -static PyObject *__pyx_tuple__4; -static PyObject *__pyx_tuple__6; -static PyObject *__pyx_tuple__7; -static PyObject *__pyx_slice__12; -static PyObject *__pyx_slice__13; -static PyObject *__pyx_tuple__10; -static PyObject *__pyx_tuple__15; -static PyObject *__pyx_tuple__17; -static PyObject *__pyx_tuple__18; -static PyObject *__pyx_tuple__20; -static PyObject *__pyx_tuple__22; -static PyObject *__pyx_tuple__24; -static PyObject *__pyx_tuple__26; -static PyObject *__pyx_tuple__27; -static PyObject *__pyx_tuple__29; -static PyObject *__pyx_codeobj__16; -static PyObject *__pyx_codeobj__19; -static PyObject *__pyx_codeobj__21; -static PyObject *__pyx_codeobj__23; -static PyObject *__pyx_codeobj__25; -static PyObject *__pyx_codeobj__28; -/* Late includes */ - -/* "pmercury/protocols/http.pyx":18 - * class HTTP(Protocol): - * - * def __init__(self, fp_database=None, config=None): # <<<<<<<<<<<<<< - * # populate fingerprint databases - * self.fp_db = {} - */ - -/* Python wrapper */ -static PyObject *__pyx_pw_8pmercury_9protocols_4http_4HTTP_1__init__(PyObject *__pyx_self, PyObject *__pyx_args, PyObject *__pyx_kwds); /*proto*/ -static PyMethodDef __pyx_mdef_8pmercury_9protocols_4http_4HTTP_1__init__ = {"__init__", (PyCFunction)(void*)(PyCFunctionWithKeywords)__pyx_pw_8pmercury_9protocols_4http_4HTTP_1__init__, METH_VARARGS|METH_KEYWORDS, 0}; -static PyObject *__pyx_pw_8pmercury_9protocols_4http_4HTTP_1__init__(PyObject *__pyx_self, PyObject *__pyx_args, PyObject *__pyx_kwds) { - PyObject *__pyx_v_self = 0; - CYTHON_UNUSED PyObject *__pyx_v_fp_database = 0; - PyObject *__pyx_v_config = 0; - PyObject *__pyx_r = 0; - __Pyx_RefNannyDeclarations - __Pyx_RefNannySetupContext("__init__ (wrapper)", 0); - { - static PyObject **__pyx_pyargnames[] = {&__pyx_n_s_self,&__pyx_n_s_fp_database,&__pyx_n_s_config,0}; - PyObject* values[3] = {0,0,0}; - values[1] = ((PyObject *)((PyObject *)Py_None)); - values[2] = ((PyObject *)((PyObject *)Py_None)); - if (unlikely(__pyx_kwds)) { - Py_ssize_t kw_args; - const Py_ssize_t pos_args = PyTuple_GET_SIZE(__pyx_args); - switch (pos_args) { - case 3: values[2] = PyTuple_GET_ITEM(__pyx_args, 2); - CYTHON_FALLTHROUGH; - case 2: values[1] = PyTuple_GET_ITEM(__pyx_args, 1); - CYTHON_FALLTHROUGH; - case 1: values[0] = PyTuple_GET_ITEM(__pyx_args, 0); - CYTHON_FALLTHROUGH; - case 0: break; - default: goto __pyx_L5_argtuple_error; - } - kw_args = PyDict_Size(__pyx_kwds); - switch (pos_args) { - case 0: - if (likely((values[0] = __Pyx_PyDict_GetItemStr(__pyx_kwds, __pyx_n_s_self)) != 0)) kw_args--; - else goto __pyx_L5_argtuple_error; - CYTHON_FALLTHROUGH; - case 1: - if (kw_args > 0) { - PyObject* value = __Pyx_PyDict_GetItemStr(__pyx_kwds, __pyx_n_s_fp_database); - if (value) { values[1] = value; kw_args--; } - } - CYTHON_FALLTHROUGH; - case 2: - if (kw_args > 0) { - PyObject* value = __Pyx_PyDict_GetItemStr(__pyx_kwds, __pyx_n_s_config); - if (value) { values[2] = value; kw_args--; } - } - } - if (unlikely(kw_args > 0)) { - if (unlikely(__Pyx_ParseOptionalKeywords(__pyx_kwds, __pyx_pyargnames, 0, values, pos_args, "__init__") < 0)) __PYX_ERR(0, 18, __pyx_L3_error) - } - } else { - switch (PyTuple_GET_SIZE(__pyx_args)) { - case 3: values[2] = PyTuple_GET_ITEM(__pyx_args, 2); - CYTHON_FALLTHROUGH; - case 2: values[1] = PyTuple_GET_ITEM(__pyx_args, 1); - CYTHON_FALLTHROUGH; - case 1: values[0] = PyTuple_GET_ITEM(__pyx_args, 0); - break; - default: goto __pyx_L5_argtuple_error; - } - } - __pyx_v_self = values[0]; - __pyx_v_fp_database = values[1]; - __pyx_v_config = values[2]; - } - goto __pyx_L4_argument_unpacking_done; - __pyx_L5_argtuple_error:; - __Pyx_RaiseArgtupleInvalid("__init__", 0, 1, 3, PyTuple_GET_SIZE(__pyx_args)); __PYX_ERR(0, 18, __pyx_L3_error) - __pyx_L3_error:; - __Pyx_AddTraceback("pmercury.protocols.http.HTTP.__init__", __pyx_clineno, __pyx_lineno, __pyx_filename); - __Pyx_RefNannyFinishContext(); - return NULL; - __pyx_L4_argument_unpacking_done:; - __pyx_r = __pyx_pf_8pmercury_9protocols_4http_4HTTP___init__(__pyx_self, __pyx_v_self, __pyx_v_fp_database, __pyx_v_config); - - /* function exit code */ - __Pyx_RefNannyFinishContext(); - return __pyx_r; -} - -/* "pmercury/protocols/http.pyx":39 - * if config['http']['case_insensitive_static_headers'] == ['*']: - * HTTP.all_headers = True - * HTTP.case_insensitive_static_headers = set(map(lambda x: x.lower().encode(), config['http']['case_insensitive_static_headers'])) # <<<<<<<<<<<<<< - * if 'case_sensitive_static_headers' in config['http']: - * if config['http']['case_sensitive_static_headers'] == ['*']: - */ - -/* Python wrapper */ -static PyObject *__pyx_pw_8pmercury_9protocols_4http_4HTTP_8__init___lambda(PyObject *__pyx_self, PyObject *__pyx_v_x); /*proto*/ -static PyMethodDef __pyx_mdef_8pmercury_9protocols_4http_4HTTP_8__init___lambda = {"lambda", (PyCFunction)__pyx_pw_8pmercury_9protocols_4http_4HTTP_8__init___lambda, METH_O, 0}; -static PyObject *__pyx_pw_8pmercury_9protocols_4http_4HTTP_8__init___lambda(PyObject *__pyx_self, PyObject *__pyx_v_x) { - PyObject *__pyx_r = 0; - __Pyx_RefNannyDeclarations - __Pyx_RefNannySetupContext("lambda (wrapper)", 0); - __pyx_r = __pyx_lambda_funcdef_lambda(__pyx_self, ((PyObject *)__pyx_v_x)); - - /* function exit code */ - __Pyx_RefNannyFinishContext(); - return __pyx_r; -} - -static PyObject *__pyx_lambda_funcdef_lambda(CYTHON_UNUSED PyObject *__pyx_self, PyObject *__pyx_v_x) { - PyObject *__pyx_r = NULL; - __Pyx_RefNannyDeclarations - PyObject *__pyx_t_1 = NULL; - PyObject *__pyx_t_2 = NULL; - PyObject *__pyx_t_3 = NULL; - PyObject *__pyx_t_4 = NULL; - __Pyx_RefNannySetupContext("lambda", 0); - __Pyx_XDECREF(__pyx_r); - __pyx_t_3 = __Pyx_PyObject_GetAttrStr(__pyx_v_x, __pyx_n_s_lower); if (unlikely(!__pyx_t_3)) __PYX_ERR(0, 39, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_3); - __pyx_t_4 = NULL; - if (CYTHON_UNPACK_METHODS && likely(PyMethod_Check(__pyx_t_3))) { - __pyx_t_4 = PyMethod_GET_SELF(__pyx_t_3); - if (likely(__pyx_t_4)) { - PyObject* function = PyMethod_GET_FUNCTION(__pyx_t_3); - __Pyx_INCREF(__pyx_t_4); - __Pyx_INCREF(function); - __Pyx_DECREF_SET(__pyx_t_3, function); - } - } - __pyx_t_2 = (__pyx_t_4) ? __Pyx_PyObject_CallOneArg(__pyx_t_3, __pyx_t_4) : __Pyx_PyObject_CallNoArg(__pyx_t_3); - __Pyx_XDECREF(__pyx_t_4); __pyx_t_4 = 0; - if (unlikely(!__pyx_t_2)) __PYX_ERR(0, 39, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_2); - __Pyx_DECREF(__pyx_t_3); __pyx_t_3 = 0; - __pyx_t_3 = __Pyx_PyObject_GetAttrStr(__pyx_t_2, __pyx_n_s_encode); if (unlikely(!__pyx_t_3)) __PYX_ERR(0, 39, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_3); - __Pyx_DECREF(__pyx_t_2); __pyx_t_2 = 0; - __pyx_t_2 = NULL; - if (CYTHON_UNPACK_METHODS && likely(PyMethod_Check(__pyx_t_3))) { - __pyx_t_2 = PyMethod_GET_SELF(__pyx_t_3); - if (likely(__pyx_t_2)) { - PyObject* function = PyMethod_GET_FUNCTION(__pyx_t_3); - __Pyx_INCREF(__pyx_t_2); - __Pyx_INCREF(function); - __Pyx_DECREF_SET(__pyx_t_3, function); - } - } - __pyx_t_1 = (__pyx_t_2) ? __Pyx_PyObject_CallOneArg(__pyx_t_3, __pyx_t_2) : __Pyx_PyObject_CallNoArg(__pyx_t_3); - __Pyx_XDECREF(__pyx_t_2); __pyx_t_2 = 0; - if (unlikely(!__pyx_t_1)) __PYX_ERR(0, 39, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_1); - __Pyx_DECREF(__pyx_t_3); __pyx_t_3 = 0; - __pyx_r = __pyx_t_1; - __pyx_t_1 = 0; - goto __pyx_L0; - - /* function exit code */ - __pyx_L1_error:; - __Pyx_XDECREF(__pyx_t_1); - __Pyx_XDECREF(__pyx_t_2); - __Pyx_XDECREF(__pyx_t_3); - __Pyx_XDECREF(__pyx_t_4); - __Pyx_AddTraceback("pmercury.protocols.http.HTTP.__init__.lambda", __pyx_clineno, __pyx_lineno, __pyx_filename); - __pyx_r = NULL; - __pyx_L0:; - __Pyx_XGIVEREF(__pyx_r); - __Pyx_RefNannyFinishContext(); - return __pyx_r; -} - -/* "pmercury/protocols/http.pyx":43 - * if config['http']['case_sensitive_static_headers'] == ['*']: - * HTTP.all_headers = True - * HTTP.case_sensitive_static_headers = set(map(lambda x: x.encode(), config['http']['case_sensitive_static_headers'])) # <<<<<<<<<<<<<< - * if 'preamble' in config['http']: - * if 'method' in config['http']['preamble']: - */ - -/* Python wrapper */ -static PyObject *__pyx_pw_8pmercury_9protocols_4http_4HTTP_8__init___1lambda1(PyObject *__pyx_self, PyObject *__pyx_v_x); /*proto*/ -static PyMethodDef __pyx_mdef_8pmercury_9protocols_4http_4HTTP_8__init___1lambda1 = {"lambda1", (PyCFunction)__pyx_pw_8pmercury_9protocols_4http_4HTTP_8__init___1lambda1, METH_O, 0}; -static PyObject *__pyx_pw_8pmercury_9protocols_4http_4HTTP_8__init___1lambda1(PyObject *__pyx_self, PyObject *__pyx_v_x) { - PyObject *__pyx_r = 0; - __Pyx_RefNannyDeclarations - __Pyx_RefNannySetupContext("lambda1 (wrapper)", 0); - __pyx_r = __pyx_lambda_funcdef_lambda1(__pyx_self, ((PyObject *)__pyx_v_x)); - - /* function exit code */ - __Pyx_RefNannyFinishContext(); - return __pyx_r; -} - -static PyObject *__pyx_lambda_funcdef_lambda1(CYTHON_UNUSED PyObject *__pyx_self, PyObject *__pyx_v_x) { - PyObject *__pyx_r = NULL; - __Pyx_RefNannyDeclarations - PyObject *__pyx_t_1 = NULL; - PyObject *__pyx_t_2 = NULL; - PyObject *__pyx_t_3 = NULL; - __Pyx_RefNannySetupContext("lambda1", 0); - __Pyx_XDECREF(__pyx_r); - __pyx_t_2 = __Pyx_PyObject_GetAttrStr(__pyx_v_x, __pyx_n_s_encode); if (unlikely(!__pyx_t_2)) __PYX_ERR(0, 43, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_2); - __pyx_t_3 = NULL; - if (CYTHON_UNPACK_METHODS && likely(PyMethod_Check(__pyx_t_2))) { - __pyx_t_3 = PyMethod_GET_SELF(__pyx_t_2); - if (likely(__pyx_t_3)) { - PyObject* function = PyMethod_GET_FUNCTION(__pyx_t_2); - __Pyx_INCREF(__pyx_t_3); - __Pyx_INCREF(function); - __Pyx_DECREF_SET(__pyx_t_2, function); - } - } - __pyx_t_1 = (__pyx_t_3) ? __Pyx_PyObject_CallOneArg(__pyx_t_2, __pyx_t_3) : __Pyx_PyObject_CallNoArg(__pyx_t_2); - __Pyx_XDECREF(__pyx_t_3); __pyx_t_3 = 0; - if (unlikely(!__pyx_t_1)) __PYX_ERR(0, 43, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_1); - __Pyx_DECREF(__pyx_t_2); __pyx_t_2 = 0; - __pyx_r = __pyx_t_1; - __pyx_t_1 = 0; - goto __pyx_L0; - - /* function exit code */ - __pyx_L1_error:; - __Pyx_XDECREF(__pyx_t_1); - __Pyx_XDECREF(__pyx_t_2); - __Pyx_XDECREF(__pyx_t_3); - __Pyx_AddTraceback("pmercury.protocols.http.HTTP.__init__.lambda1", __pyx_clineno, __pyx_lineno, __pyx_filename); - __pyx_r = NULL; - __pyx_L0:; - __Pyx_XGIVEREF(__pyx_r); - __Pyx_RefNannyFinishContext(); - return __pyx_r; -} - -/* "pmercury/protocols/http.pyx":18 - * class HTTP(Protocol): - * - * def __init__(self, fp_database=None, config=None): # <<<<<<<<<<<<<< - * # populate fingerprint databases - * self.fp_db = {} - */ - -static PyObject *__pyx_pf_8pmercury_9protocols_4http_4HTTP___init__(CYTHON_UNUSED PyObject *__pyx_self, PyObject *__pyx_v_self, CYTHON_UNUSED PyObject *__pyx_v_fp_database, PyObject *__pyx_v_config) { - PyObject *__pyx_v_c = NULL; - PyObject *__pyx_r = NULL; - __Pyx_RefNannyDeclarations - PyObject *__pyx_t_1 = NULL; - int __pyx_t_2; - int __pyx_t_3; - int __pyx_t_4; - PyObject *__pyx_t_5 = NULL; - PyObject *__pyx_t_6 = NULL; - int __pyx_t_7; - Py_ssize_t __pyx_t_8; - PyObject *(*__pyx_t_9)(PyObject *); - PyObject *__pyx_t_10 = NULL; - PyObject *__pyx_t_11 = NULL; - PyObject *__pyx_t_12 = NULL; - __Pyx_RefNannySetupContext("__init__", 0); - - /* "pmercury/protocols/http.pyx":20 - * def __init__(self, fp_database=None, config=None): - * # populate fingerprint databases - * self.fp_db = {} # <<<<<<<<<<<<<< - * - * # configuration - */ - __pyx_t_1 = __Pyx_PyDict_NewPresized(0); if (unlikely(!__pyx_t_1)) __PYX_ERR(0, 20, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_1); - if (__Pyx_PyObject_SetAttrStr(__pyx_v_self, __pyx_n_s_fp_db, __pyx_t_1) < 0) __PYX_ERR(0, 20, __pyx_L1_error) - __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0; - - /* "pmercury/protocols/http.pyx":23 - * - * # configuration - * HTTP.all_headers = False # <<<<<<<<<<<<<< - * if config == None or 'http' not in config: - * HTTP.case_insensitive_static_headers = set([b'upgrade-insecure-requests',b'dnt',b'accept-language',b'connection', - */ - __Pyx_GetModuleGlobalName(__pyx_t_1, __pyx_n_s_HTTP); if (unlikely(!__pyx_t_1)) __PYX_ERR(0, 23, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_1); - if (__Pyx_PyObject_SetAttrStr(__pyx_t_1, __pyx_n_s_all_headers, Py_False) < 0) __PYX_ERR(0, 23, __pyx_L1_error) - __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0; - - /* "pmercury/protocols/http.pyx":24 - * # configuration - * HTTP.all_headers = False - * if config == None or 'http' not in config: # <<<<<<<<<<<<<< - * HTTP.case_insensitive_static_headers = set([b'upgrade-insecure-requests',b'dnt',b'accept-language',b'connection', - * b'x-requested-with',b'accept-encoding',b'content-length',b'accept', - */ - __pyx_t_1 = PyObject_RichCompare(__pyx_v_config, Py_None, Py_EQ); __Pyx_XGOTREF(__pyx_t_1); if (unlikely(!__pyx_t_1)) __PYX_ERR(0, 24, __pyx_L1_error) - __pyx_t_3 = __Pyx_PyObject_IsTrue(__pyx_t_1); if (unlikely(__pyx_t_3 < 0)) __PYX_ERR(0, 24, __pyx_L1_error) - __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0; - if (!__pyx_t_3) { - } else { - __pyx_t_2 = __pyx_t_3; - goto __pyx_L4_bool_binop_done; - } - __pyx_t_3 = (__Pyx_PySequence_ContainsTF(__pyx_n_u_http, __pyx_v_config, Py_NE)); if (unlikely(__pyx_t_3 < 0)) __PYX_ERR(0, 24, __pyx_L1_error) - __pyx_t_4 = (__pyx_t_3 != 0); - __pyx_t_2 = __pyx_t_4; - __pyx_L4_bool_binop_done:; - if (__pyx_t_2) { - - /* "pmercury/protocols/http.pyx":25 - * HTTP.all_headers = False - * if config == None or 'http' not in config: - * HTTP.case_insensitive_static_headers = set([b'upgrade-insecure-requests',b'dnt',b'accept-language',b'connection', # <<<<<<<<<<<<<< - * b'x-requested-with',b'accept-encoding',b'content-length',b'accept', - * b'viewport-width',b'intervention',b'dpr',b'cache-control']) - */ - __pyx_t_1 = PySet_New(0); if (unlikely(!__pyx_t_1)) __PYX_ERR(0, 25, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_1); - if (PySet_Add(__pyx_t_1, __pyx_kp_b_upgrade_insecure_requests) < 0) __PYX_ERR(0, 25, __pyx_L1_error) - if (PySet_Add(__pyx_t_1, __pyx_n_b_dnt) < 0) __PYX_ERR(0, 25, __pyx_L1_error) - if (PySet_Add(__pyx_t_1, __pyx_kp_b_accept_language) < 0) __PYX_ERR(0, 25, __pyx_L1_error) - if (PySet_Add(__pyx_t_1, __pyx_n_b_connection) < 0) __PYX_ERR(0, 25, __pyx_L1_error) - if (PySet_Add(__pyx_t_1, __pyx_kp_b_x_requested_with) < 0) __PYX_ERR(0, 25, __pyx_L1_error) - if (PySet_Add(__pyx_t_1, __pyx_kp_b_accept_encoding) < 0) __PYX_ERR(0, 25, __pyx_L1_error) - if (PySet_Add(__pyx_t_1, __pyx_kp_b_content_length) < 0) __PYX_ERR(0, 25, __pyx_L1_error) - if (PySet_Add(__pyx_t_1, __pyx_n_b_accept) < 0) __PYX_ERR(0, 25, __pyx_L1_error) - if (PySet_Add(__pyx_t_1, __pyx_kp_b_viewport_width) < 0) __PYX_ERR(0, 25, __pyx_L1_error) - if (PySet_Add(__pyx_t_1, __pyx_n_b_intervention) < 0) __PYX_ERR(0, 25, __pyx_L1_error) - if (PySet_Add(__pyx_t_1, __pyx_n_b_dpr) < 0) __PYX_ERR(0, 25, __pyx_L1_error) - if (PySet_Add(__pyx_t_1, __pyx_kp_b_cache_control) < 0) __PYX_ERR(0, 25, __pyx_L1_error) - __Pyx_GetModuleGlobalName(__pyx_t_5, __pyx_n_s_HTTP); if (unlikely(!__pyx_t_5)) __PYX_ERR(0, 25, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_5); - if (__Pyx_PyObject_SetAttrStr(__pyx_t_5, __pyx_n_s_case_insensitive_static_headers, __pyx_t_1) < 0) __PYX_ERR(0, 25, __pyx_L1_error) - __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0; - __Pyx_DECREF(__pyx_t_5); __pyx_t_5 = 0; - - /* "pmercury/protocols/http.pyx":28 - * b'x-requested-with',b'accept-encoding',b'content-length',b'accept', - * b'viewport-width',b'intervention',b'dpr',b'cache-control']) - * HTTP.case_sensitive_static_headers = set([b'content-type',b'origin']) # <<<<<<<<<<<<<< - * HTTP.headers_data = [0,2] - * HTTP.contextual_data = {b'user-agent':'user_agent',b'host':'host',b'x-forwarded-for':'x_forwarded_for'} - */ - __pyx_t_5 = PySet_New(0); if (unlikely(!__pyx_t_5)) __PYX_ERR(0, 28, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_5); - if (PySet_Add(__pyx_t_5, __pyx_kp_b_content_type) < 0) __PYX_ERR(0, 28, __pyx_L1_error) - if (PySet_Add(__pyx_t_5, __pyx_n_b_origin) < 0) __PYX_ERR(0, 28, __pyx_L1_error) - __Pyx_GetModuleGlobalName(__pyx_t_1, __pyx_n_s_HTTP); if (unlikely(!__pyx_t_1)) __PYX_ERR(0, 28, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_1); - if (__Pyx_PyObject_SetAttrStr(__pyx_t_1, __pyx_n_s_case_sensitive_static_headers, __pyx_t_5) < 0) __PYX_ERR(0, 28, __pyx_L1_error) - __Pyx_DECREF(__pyx_t_5); __pyx_t_5 = 0; - __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0; - - /* "pmercury/protocols/http.pyx":29 - * b'viewport-width',b'intervention',b'dpr',b'cache-control']) - * HTTP.case_sensitive_static_headers = set([b'content-type',b'origin']) - * HTTP.headers_data = [0,2] # <<<<<<<<<<<<<< - * HTTP.contextual_data = {b'user-agent':'user_agent',b'host':'host',b'x-forwarded-for':'x_forwarded_for'} - * else: - */ - __pyx_t_1 = PyList_New(2); if (unlikely(!__pyx_t_1)) __PYX_ERR(0, 29, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_1); - __Pyx_INCREF(__pyx_int_0); - __Pyx_GIVEREF(__pyx_int_0); - PyList_SET_ITEM(__pyx_t_1, 0, __pyx_int_0); - __Pyx_INCREF(__pyx_int_2); - __Pyx_GIVEREF(__pyx_int_2); - PyList_SET_ITEM(__pyx_t_1, 1, __pyx_int_2); - __Pyx_GetModuleGlobalName(__pyx_t_5, __pyx_n_s_HTTP); if (unlikely(!__pyx_t_5)) __PYX_ERR(0, 29, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_5); - if (__Pyx_PyObject_SetAttrStr(__pyx_t_5, __pyx_n_s_headers_data, __pyx_t_1) < 0) __PYX_ERR(0, 29, __pyx_L1_error) - __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0; - __Pyx_DECREF(__pyx_t_5); __pyx_t_5 = 0; - - /* "pmercury/protocols/http.pyx":30 - * HTTP.case_sensitive_static_headers = set([b'content-type',b'origin']) - * HTTP.headers_data = [0,2] - * HTTP.contextual_data = {b'user-agent':'user_agent',b'host':'host',b'x-forwarded-for':'x_forwarded_for'} # <<<<<<<<<<<<<< - * else: - * HTTP.case_insensitive_static_headers = set([]) - */ - __pyx_t_5 = __Pyx_PyDict_NewPresized(3); if (unlikely(!__pyx_t_5)) __PYX_ERR(0, 30, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_5); - if (PyDict_SetItem(__pyx_t_5, __pyx_kp_b_user_agent, __pyx_n_u_user_agent_2) < 0) __PYX_ERR(0, 30, __pyx_L1_error) - if (PyDict_SetItem(__pyx_t_5, __pyx_n_b_host, __pyx_n_u_host) < 0) __PYX_ERR(0, 30, __pyx_L1_error) - if (PyDict_SetItem(__pyx_t_5, __pyx_kp_b_x_forwarded_for, __pyx_n_u_x_forwarded_for_2) < 0) __PYX_ERR(0, 30, __pyx_L1_error) - __Pyx_GetModuleGlobalName(__pyx_t_1, __pyx_n_s_HTTP); if (unlikely(!__pyx_t_1)) __PYX_ERR(0, 30, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_1); - if (__Pyx_PyObject_SetAttrStr(__pyx_t_1, __pyx_n_s_contextual_data, __pyx_t_5) < 0) __PYX_ERR(0, 30, __pyx_L1_error) - __Pyx_DECREF(__pyx_t_5); __pyx_t_5 = 0; - __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0; - - /* "pmercury/protocols/http.pyx":24 - * # configuration - * HTTP.all_headers = False - * if config == None or 'http' not in config: # <<<<<<<<<<<<<< - * HTTP.case_insensitive_static_headers = set([b'upgrade-insecure-requests',b'dnt',b'accept-language',b'connection', - * b'x-requested-with',b'accept-encoding',b'content-length',b'accept', - */ - goto __pyx_L3; - } - - /* "pmercury/protocols/http.pyx":32 - * HTTP.contextual_data = {b'user-agent':'user_agent',b'host':'host',b'x-forwarded-for':'x_forwarded_for'} - * else: - * HTTP.case_insensitive_static_headers = set([]) # <<<<<<<<<<<<<< - * HTTP.case_sensitive_static_headers = set([]) - * HTTP.headers_data = [] - */ - /*else*/ { - __pyx_t_1 = PySet_New(0); if (unlikely(!__pyx_t_1)) __PYX_ERR(0, 32, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_1); - __Pyx_GetModuleGlobalName(__pyx_t_5, __pyx_n_s_HTTP); if (unlikely(!__pyx_t_5)) __PYX_ERR(0, 32, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_5); - if (__Pyx_PyObject_SetAttrStr(__pyx_t_5, __pyx_n_s_case_insensitive_static_headers, __pyx_t_1) < 0) __PYX_ERR(0, 32, __pyx_L1_error) - __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0; - __Pyx_DECREF(__pyx_t_5); __pyx_t_5 = 0; - - /* "pmercury/protocols/http.pyx":33 - * else: - * HTTP.case_insensitive_static_headers = set([]) - * HTTP.case_sensitive_static_headers = set([]) # <<<<<<<<<<<<<< - * HTTP.headers_data = [] - * HTTP.contextual_data = {} - */ - __pyx_t_5 = PySet_New(0); if (unlikely(!__pyx_t_5)) __PYX_ERR(0, 33, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_5); - __Pyx_GetModuleGlobalName(__pyx_t_1, __pyx_n_s_HTTP); if (unlikely(!__pyx_t_1)) __PYX_ERR(0, 33, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_1); - if (__Pyx_PyObject_SetAttrStr(__pyx_t_1, __pyx_n_s_case_sensitive_static_headers, __pyx_t_5) < 0) __PYX_ERR(0, 33, __pyx_L1_error) - __Pyx_DECREF(__pyx_t_5); __pyx_t_5 = 0; - __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0; - - /* "pmercury/protocols/http.pyx":34 - * HTTP.case_insensitive_static_headers = set([]) - * HTTP.case_sensitive_static_headers = set([]) - * HTTP.headers_data = [] # <<<<<<<<<<<<<< - * HTTP.contextual_data = {} - * if 'case_insensitive_static_headers' in config['http']: - */ - __pyx_t_1 = PyList_New(0); if (unlikely(!__pyx_t_1)) __PYX_ERR(0, 34, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_1); - __Pyx_GetModuleGlobalName(__pyx_t_5, __pyx_n_s_HTTP); if (unlikely(!__pyx_t_5)) __PYX_ERR(0, 34, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_5); - if (__Pyx_PyObject_SetAttrStr(__pyx_t_5, __pyx_n_s_headers_data, __pyx_t_1) < 0) __PYX_ERR(0, 34, __pyx_L1_error) - __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0; - __Pyx_DECREF(__pyx_t_5); __pyx_t_5 = 0; - - /* "pmercury/protocols/http.pyx":35 - * HTTP.case_sensitive_static_headers = set([]) - * HTTP.headers_data = [] - * HTTP.contextual_data = {} # <<<<<<<<<<<<<< - * if 'case_insensitive_static_headers' in config['http']: - * if config['http']['case_insensitive_static_headers'] == ['*']: - */ - __pyx_t_5 = __Pyx_PyDict_NewPresized(0); if (unlikely(!__pyx_t_5)) __PYX_ERR(0, 35, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_5); - __Pyx_GetModuleGlobalName(__pyx_t_1, __pyx_n_s_HTTP); if (unlikely(!__pyx_t_1)) __PYX_ERR(0, 35, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_1); - if (__Pyx_PyObject_SetAttrStr(__pyx_t_1, __pyx_n_s_contextual_data, __pyx_t_5) < 0) __PYX_ERR(0, 35, __pyx_L1_error) - __Pyx_DECREF(__pyx_t_5); __pyx_t_5 = 0; - __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0; - - /* "pmercury/protocols/http.pyx":36 - * HTTP.headers_data = [] - * HTTP.contextual_data = {} - * if 'case_insensitive_static_headers' in config['http']: # <<<<<<<<<<<<<< - * if config['http']['case_insensitive_static_headers'] == ['*']: - * HTTP.all_headers = True - */ - __pyx_t_1 = __Pyx_PyObject_Dict_GetItem(__pyx_v_config, __pyx_n_u_http); if (unlikely(!__pyx_t_1)) __PYX_ERR(0, 36, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_1); - __pyx_t_2 = (__Pyx_PySequence_ContainsTF(__pyx_n_u_case_insensitive_static_headers, __pyx_t_1, Py_EQ)); if (unlikely(__pyx_t_2 < 0)) __PYX_ERR(0, 36, __pyx_L1_error) - __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0; - __pyx_t_4 = (__pyx_t_2 != 0); - if (__pyx_t_4) { - - /* "pmercury/protocols/http.pyx":37 - * HTTP.contextual_data = {} - * if 'case_insensitive_static_headers' in config['http']: - * if config['http']['case_insensitive_static_headers'] == ['*']: # <<<<<<<<<<<<<< - * HTTP.all_headers = True - * HTTP.case_insensitive_static_headers = set(map(lambda x: x.lower().encode(), config['http']['case_insensitive_static_headers'])) - */ - __pyx_t_1 = __Pyx_PyObject_Dict_GetItem(__pyx_v_config, __pyx_n_u_http); if (unlikely(!__pyx_t_1)) __PYX_ERR(0, 37, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_1); - __pyx_t_5 = __Pyx_PyObject_Dict_GetItem(__pyx_t_1, __pyx_n_u_case_insensitive_static_headers); if (unlikely(!__pyx_t_5)) __PYX_ERR(0, 37, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_5); - __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0; - __pyx_t_1 = PyList_New(1); if (unlikely(!__pyx_t_1)) __PYX_ERR(0, 37, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_1); - __Pyx_INCREF(__pyx_kp_u_); - __Pyx_GIVEREF(__pyx_kp_u_); - PyList_SET_ITEM(__pyx_t_1, 0, __pyx_kp_u_); - __pyx_t_6 = PyObject_RichCompare(__pyx_t_5, __pyx_t_1, Py_EQ); __Pyx_XGOTREF(__pyx_t_6); if (unlikely(!__pyx_t_6)) __PYX_ERR(0, 37, __pyx_L1_error) - __Pyx_DECREF(__pyx_t_5); __pyx_t_5 = 0; - __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0; - __pyx_t_4 = __Pyx_PyObject_IsTrue(__pyx_t_6); if (unlikely(__pyx_t_4 < 0)) __PYX_ERR(0, 37, __pyx_L1_error) - __Pyx_DECREF(__pyx_t_6); __pyx_t_6 = 0; - if (__pyx_t_4) { - - /* "pmercury/protocols/http.pyx":38 - * if 'case_insensitive_static_headers' in config['http']: - * if config['http']['case_insensitive_static_headers'] == ['*']: - * HTTP.all_headers = True # <<<<<<<<<<<<<< - * HTTP.case_insensitive_static_headers = set(map(lambda x: x.lower().encode(), config['http']['case_insensitive_static_headers'])) - * if 'case_sensitive_static_headers' in config['http']: - */ - __Pyx_GetModuleGlobalName(__pyx_t_6, __pyx_n_s_HTTP); if (unlikely(!__pyx_t_6)) __PYX_ERR(0, 38, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_6); - if (__Pyx_PyObject_SetAttrStr(__pyx_t_6, __pyx_n_s_all_headers, Py_True) < 0) __PYX_ERR(0, 38, __pyx_L1_error) - __Pyx_DECREF(__pyx_t_6); __pyx_t_6 = 0; - - /* "pmercury/protocols/http.pyx":37 - * HTTP.contextual_data = {} - * if 'case_insensitive_static_headers' in config['http']: - * if config['http']['case_insensitive_static_headers'] == ['*']: # <<<<<<<<<<<<<< - * HTTP.all_headers = True - * HTTP.case_insensitive_static_headers = set(map(lambda x: x.lower().encode(), config['http']['case_insensitive_static_headers'])) - */ - } - - /* "pmercury/protocols/http.pyx":39 - * if config['http']['case_insensitive_static_headers'] == ['*']: - * HTTP.all_headers = True - * HTTP.case_insensitive_static_headers = set(map(lambda x: x.lower().encode(), config['http']['case_insensitive_static_headers'])) # <<<<<<<<<<<<<< - * if 'case_sensitive_static_headers' in config['http']: - * if config['http']['case_sensitive_static_headers'] == ['*']: - */ - __pyx_t_6 = __Pyx_CyFunction_NewEx(&__pyx_mdef_8pmercury_9protocols_4http_4HTTP_8__init___lambda, 0, __pyx_n_s_HTTP___init___locals_lambda, NULL, __pyx_n_s_pmercury_protocols_http, __pyx_d, NULL); if (unlikely(!__pyx_t_6)) __PYX_ERR(0, 39, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_6); - __pyx_t_1 = __Pyx_PyObject_Dict_GetItem(__pyx_v_config, __pyx_n_u_http); if (unlikely(!__pyx_t_1)) __PYX_ERR(0, 39, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_1); - __pyx_t_5 = __Pyx_PyObject_Dict_GetItem(__pyx_t_1, __pyx_n_u_case_insensitive_static_headers); if (unlikely(!__pyx_t_5)) __PYX_ERR(0, 39, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_5); - __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0; - __pyx_t_1 = PyTuple_New(2); if (unlikely(!__pyx_t_1)) __PYX_ERR(0, 39, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_1); - __Pyx_GIVEREF(__pyx_t_6); - PyTuple_SET_ITEM(__pyx_t_1, 0, __pyx_t_6); - __Pyx_GIVEREF(__pyx_t_5); - PyTuple_SET_ITEM(__pyx_t_1, 1, __pyx_t_5); - __pyx_t_6 = 0; - __pyx_t_5 = 0; - __pyx_t_5 = __Pyx_PyObject_Call(__pyx_builtin_map, __pyx_t_1, NULL); if (unlikely(!__pyx_t_5)) __PYX_ERR(0, 39, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_5); - __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0; - __pyx_t_1 = PySet_New(__pyx_t_5); if (unlikely(!__pyx_t_1)) __PYX_ERR(0, 39, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_1); - __Pyx_DECREF(__pyx_t_5); __pyx_t_5 = 0; - __Pyx_GetModuleGlobalName(__pyx_t_5, __pyx_n_s_HTTP); if (unlikely(!__pyx_t_5)) __PYX_ERR(0, 39, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_5); - if (__Pyx_PyObject_SetAttrStr(__pyx_t_5, __pyx_n_s_case_insensitive_static_headers, __pyx_t_1) < 0) __PYX_ERR(0, 39, __pyx_L1_error) - __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0; - __Pyx_DECREF(__pyx_t_5); __pyx_t_5 = 0; - - /* "pmercury/protocols/http.pyx":36 - * HTTP.headers_data = [] - * HTTP.contextual_data = {} - * if 'case_insensitive_static_headers' in config['http']: # <<<<<<<<<<<<<< - * if config['http']['case_insensitive_static_headers'] == ['*']: - * HTTP.all_headers = True - */ - } - - /* "pmercury/protocols/http.pyx":40 - * HTTP.all_headers = True - * HTTP.case_insensitive_static_headers = set(map(lambda x: x.lower().encode(), config['http']['case_insensitive_static_headers'])) - * if 'case_sensitive_static_headers' in config['http']: # <<<<<<<<<<<<<< - * if config['http']['case_sensitive_static_headers'] == ['*']: - * HTTP.all_headers = True - */ - __pyx_t_5 = __Pyx_PyObject_Dict_GetItem(__pyx_v_config, __pyx_n_u_http); if (unlikely(!__pyx_t_5)) __PYX_ERR(0, 40, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_5); - __pyx_t_4 = (__Pyx_PySequence_ContainsTF(__pyx_n_u_case_sensitive_static_headers, __pyx_t_5, Py_EQ)); if (unlikely(__pyx_t_4 < 0)) __PYX_ERR(0, 40, __pyx_L1_error) - __Pyx_DECREF(__pyx_t_5); __pyx_t_5 = 0; - __pyx_t_2 = (__pyx_t_4 != 0); - if (__pyx_t_2) { - - /* "pmercury/protocols/http.pyx":41 - * HTTP.case_insensitive_static_headers = set(map(lambda x: x.lower().encode(), config['http']['case_insensitive_static_headers'])) - * if 'case_sensitive_static_headers' in config['http']: - * if config['http']['case_sensitive_static_headers'] == ['*']: # <<<<<<<<<<<<<< - * HTTP.all_headers = True - * HTTP.case_sensitive_static_headers = set(map(lambda x: x.encode(), config['http']['case_sensitive_static_headers'])) - */ - __pyx_t_5 = __Pyx_PyObject_Dict_GetItem(__pyx_v_config, __pyx_n_u_http); if (unlikely(!__pyx_t_5)) __PYX_ERR(0, 41, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_5); - __pyx_t_1 = __Pyx_PyObject_Dict_GetItem(__pyx_t_5, __pyx_n_u_case_sensitive_static_headers); if (unlikely(!__pyx_t_1)) __PYX_ERR(0, 41, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_1); - __Pyx_DECREF(__pyx_t_5); __pyx_t_5 = 0; - __pyx_t_5 = PyList_New(1); if (unlikely(!__pyx_t_5)) __PYX_ERR(0, 41, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_5); - __Pyx_INCREF(__pyx_kp_u_); - __Pyx_GIVEREF(__pyx_kp_u_); - PyList_SET_ITEM(__pyx_t_5, 0, __pyx_kp_u_); - __pyx_t_6 = PyObject_RichCompare(__pyx_t_1, __pyx_t_5, Py_EQ); __Pyx_XGOTREF(__pyx_t_6); if (unlikely(!__pyx_t_6)) __PYX_ERR(0, 41, __pyx_L1_error) - __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0; - __Pyx_DECREF(__pyx_t_5); __pyx_t_5 = 0; - __pyx_t_2 = __Pyx_PyObject_IsTrue(__pyx_t_6); if (unlikely(__pyx_t_2 < 0)) __PYX_ERR(0, 41, __pyx_L1_error) - __Pyx_DECREF(__pyx_t_6); __pyx_t_6 = 0; - if (__pyx_t_2) { - - /* "pmercury/protocols/http.pyx":42 - * if 'case_sensitive_static_headers' in config['http']: - * if config['http']['case_sensitive_static_headers'] == ['*']: - * HTTP.all_headers = True # <<<<<<<<<<<<<< - * HTTP.case_sensitive_static_headers = set(map(lambda x: x.encode(), config['http']['case_sensitive_static_headers'])) - * if 'preamble' in config['http']: - */ - __Pyx_GetModuleGlobalName(__pyx_t_6, __pyx_n_s_HTTP); if (unlikely(!__pyx_t_6)) __PYX_ERR(0, 42, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_6); - if (__Pyx_PyObject_SetAttrStr(__pyx_t_6, __pyx_n_s_all_headers, Py_True) < 0) __PYX_ERR(0, 42, __pyx_L1_error) - __Pyx_DECREF(__pyx_t_6); __pyx_t_6 = 0; - - /* "pmercury/protocols/http.pyx":41 - * HTTP.case_insensitive_static_headers = set(map(lambda x: x.lower().encode(), config['http']['case_insensitive_static_headers'])) - * if 'case_sensitive_static_headers' in config['http']: - * if config['http']['case_sensitive_static_headers'] == ['*']: # <<<<<<<<<<<<<< - * HTTP.all_headers = True - * HTTP.case_sensitive_static_headers = set(map(lambda x: x.encode(), config['http']['case_sensitive_static_headers'])) - */ - } - - /* "pmercury/protocols/http.pyx":43 - * if config['http']['case_sensitive_static_headers'] == ['*']: - * HTTP.all_headers = True - * HTTP.case_sensitive_static_headers = set(map(lambda x: x.encode(), config['http']['case_sensitive_static_headers'])) # <<<<<<<<<<<<<< - * if 'preamble' in config['http']: - * if 'method' in config['http']['preamble']: - */ - __pyx_t_6 = __Pyx_CyFunction_NewEx(&__pyx_mdef_8pmercury_9protocols_4http_4HTTP_8__init___1lambda1, 0, __pyx_n_s_HTTP___init___locals_lambda, NULL, __pyx_n_s_pmercury_protocols_http, __pyx_d, NULL); if (unlikely(!__pyx_t_6)) __PYX_ERR(0, 43, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_6); - __pyx_t_5 = __Pyx_PyObject_Dict_GetItem(__pyx_v_config, __pyx_n_u_http); if (unlikely(!__pyx_t_5)) __PYX_ERR(0, 43, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_5); - __pyx_t_1 = __Pyx_PyObject_Dict_GetItem(__pyx_t_5, __pyx_n_u_case_sensitive_static_headers); if (unlikely(!__pyx_t_1)) __PYX_ERR(0, 43, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_1); - __Pyx_DECREF(__pyx_t_5); __pyx_t_5 = 0; - __pyx_t_5 = PyTuple_New(2); if (unlikely(!__pyx_t_5)) __PYX_ERR(0, 43, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_5); - __Pyx_GIVEREF(__pyx_t_6); - PyTuple_SET_ITEM(__pyx_t_5, 0, __pyx_t_6); - __Pyx_GIVEREF(__pyx_t_1); - PyTuple_SET_ITEM(__pyx_t_5, 1, __pyx_t_1); - __pyx_t_6 = 0; - __pyx_t_1 = 0; - __pyx_t_1 = __Pyx_PyObject_Call(__pyx_builtin_map, __pyx_t_5, NULL); if (unlikely(!__pyx_t_1)) __PYX_ERR(0, 43, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_1); - __Pyx_DECREF(__pyx_t_5); __pyx_t_5 = 0; - __pyx_t_5 = PySet_New(__pyx_t_1); if (unlikely(!__pyx_t_5)) __PYX_ERR(0, 43, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_5); - __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0; - __Pyx_GetModuleGlobalName(__pyx_t_1, __pyx_n_s_HTTP); if (unlikely(!__pyx_t_1)) __PYX_ERR(0, 43, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_1); - if (__Pyx_PyObject_SetAttrStr(__pyx_t_1, __pyx_n_s_case_sensitive_static_headers, __pyx_t_5) < 0) __PYX_ERR(0, 43, __pyx_L1_error) - __Pyx_DECREF(__pyx_t_5); __pyx_t_5 = 0; - __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0; - - /* "pmercury/protocols/http.pyx":40 - * HTTP.all_headers = True - * HTTP.case_insensitive_static_headers = set(map(lambda x: x.lower().encode(), config['http']['case_insensitive_static_headers'])) - * if 'case_sensitive_static_headers' in config['http']: # <<<<<<<<<<<<<< - * if config['http']['case_sensitive_static_headers'] == ['*']: - * HTTP.all_headers = True - */ - } - - /* "pmercury/protocols/http.pyx":44 - * HTTP.all_headers = True - * HTTP.case_sensitive_static_headers = set(map(lambda x: x.encode(), config['http']['case_sensitive_static_headers'])) - * if 'preamble' in config['http']: # <<<<<<<<<<<<<< - * if 'method' in config['http']['preamble']: - * HTTP.headers_data.append(0) - */ - __pyx_t_1 = __Pyx_PyObject_Dict_GetItem(__pyx_v_config, __pyx_n_u_http); if (unlikely(!__pyx_t_1)) __PYX_ERR(0, 44, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_1); - __pyx_t_2 = (__Pyx_PySequence_ContainsTF(__pyx_n_u_preamble, __pyx_t_1, Py_EQ)); if (unlikely(__pyx_t_2 < 0)) __PYX_ERR(0, 44, __pyx_L1_error) - __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0; - __pyx_t_4 = (__pyx_t_2 != 0); - if (__pyx_t_4) { - - /* "pmercury/protocols/http.pyx":45 - * HTTP.case_sensitive_static_headers = set(map(lambda x: x.encode(), config['http']['case_sensitive_static_headers'])) - * if 'preamble' in config['http']: - * if 'method' in config['http']['preamble']: # <<<<<<<<<<<<<< - * HTTP.headers_data.append(0) - * if 'uri' in config['http']['preamble']: - */ - __pyx_t_1 = __Pyx_PyObject_Dict_GetItem(__pyx_v_config, __pyx_n_u_http); if (unlikely(!__pyx_t_1)) __PYX_ERR(0, 45, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_1); - __pyx_t_5 = __Pyx_PyObject_Dict_GetItem(__pyx_t_1, __pyx_n_u_preamble); if (unlikely(!__pyx_t_5)) __PYX_ERR(0, 45, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_5); - __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0; - __pyx_t_4 = (__Pyx_PySequence_ContainsTF(__pyx_n_u_method, __pyx_t_5, Py_EQ)); if (unlikely(__pyx_t_4 < 0)) __PYX_ERR(0, 45, __pyx_L1_error) - __Pyx_DECREF(__pyx_t_5); __pyx_t_5 = 0; - __pyx_t_2 = (__pyx_t_4 != 0); - if (__pyx_t_2) { - - /* "pmercury/protocols/http.pyx":46 - * if 'preamble' in config['http']: - * if 'method' in config['http']['preamble']: - * HTTP.headers_data.append(0) # <<<<<<<<<<<<<< - * if 'uri' in config['http']['preamble']: - * HTTP.headers_data.append(1) - */ - __Pyx_GetModuleGlobalName(__pyx_t_5, __pyx_n_s_HTTP); if (unlikely(!__pyx_t_5)) __PYX_ERR(0, 46, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_5); - __pyx_t_1 = __Pyx_PyObject_GetAttrStr(__pyx_t_5, __pyx_n_s_headers_data); if (unlikely(!__pyx_t_1)) __PYX_ERR(0, 46, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_1); - __Pyx_DECREF(__pyx_t_5); __pyx_t_5 = 0; - __pyx_t_7 = __Pyx_PyObject_Append(__pyx_t_1, __pyx_int_0); if (unlikely(__pyx_t_7 == ((int)-1))) __PYX_ERR(0, 46, __pyx_L1_error) - __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0; - - /* "pmercury/protocols/http.pyx":45 - * HTTP.case_sensitive_static_headers = set(map(lambda x: x.encode(), config['http']['case_sensitive_static_headers'])) - * if 'preamble' in config['http']: - * if 'method' in config['http']['preamble']: # <<<<<<<<<<<<<< - * HTTP.headers_data.append(0) - * if 'uri' in config['http']['preamble']: - */ - } - - /* "pmercury/protocols/http.pyx":47 - * if 'method' in config['http']['preamble']: - * HTTP.headers_data.append(0) - * if 'uri' in config['http']['preamble']: # <<<<<<<<<<<<<< - * HTTP.headers_data.append(1) - * if 'version' in config['http']['preamble']: - */ - __pyx_t_1 = __Pyx_PyObject_Dict_GetItem(__pyx_v_config, __pyx_n_u_http); if (unlikely(!__pyx_t_1)) __PYX_ERR(0, 47, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_1); - __pyx_t_5 = __Pyx_PyObject_Dict_GetItem(__pyx_t_1, __pyx_n_u_preamble); if (unlikely(!__pyx_t_5)) __PYX_ERR(0, 47, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_5); - __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0; - __pyx_t_2 = (__Pyx_PySequence_ContainsTF(__pyx_n_u_uri, __pyx_t_5, Py_EQ)); if (unlikely(__pyx_t_2 < 0)) __PYX_ERR(0, 47, __pyx_L1_error) - __Pyx_DECREF(__pyx_t_5); __pyx_t_5 = 0; - __pyx_t_4 = (__pyx_t_2 != 0); - if (__pyx_t_4) { - - /* "pmercury/protocols/http.pyx":48 - * HTTP.headers_data.append(0) - * if 'uri' in config['http']['preamble']: - * HTTP.headers_data.append(1) # <<<<<<<<<<<<<< - * if 'version' in config['http']['preamble']: - * HTTP.headers_data.append(2) - */ - __Pyx_GetModuleGlobalName(__pyx_t_5, __pyx_n_s_HTTP); if (unlikely(!__pyx_t_5)) __PYX_ERR(0, 48, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_5); - __pyx_t_1 = __Pyx_PyObject_GetAttrStr(__pyx_t_5, __pyx_n_s_headers_data); if (unlikely(!__pyx_t_1)) __PYX_ERR(0, 48, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_1); - __Pyx_DECREF(__pyx_t_5); __pyx_t_5 = 0; - __pyx_t_7 = __Pyx_PyObject_Append(__pyx_t_1, __pyx_int_1); if (unlikely(__pyx_t_7 == ((int)-1))) __PYX_ERR(0, 48, __pyx_L1_error) - __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0; - - /* "pmercury/protocols/http.pyx":47 - * if 'method' in config['http']['preamble']: - * HTTP.headers_data.append(0) - * if 'uri' in config['http']['preamble']: # <<<<<<<<<<<<<< - * HTTP.headers_data.append(1) - * if 'version' in config['http']['preamble']: - */ - } - - /* "pmercury/protocols/http.pyx":49 - * if 'uri' in config['http']['preamble']: - * HTTP.headers_data.append(1) - * if 'version' in config['http']['preamble']: # <<<<<<<<<<<<<< - * HTTP.headers_data.append(2) - * if '*' in config['http']['preamble']: - */ - __pyx_t_1 = __Pyx_PyObject_Dict_GetItem(__pyx_v_config, __pyx_n_u_http); if (unlikely(!__pyx_t_1)) __PYX_ERR(0, 49, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_1); - __pyx_t_5 = __Pyx_PyObject_Dict_GetItem(__pyx_t_1, __pyx_n_u_preamble); if (unlikely(!__pyx_t_5)) __PYX_ERR(0, 49, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_5); - __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0; - __pyx_t_4 = (__Pyx_PySequence_ContainsTF(__pyx_n_u_version, __pyx_t_5, Py_EQ)); if (unlikely(__pyx_t_4 < 0)) __PYX_ERR(0, 49, __pyx_L1_error) - __Pyx_DECREF(__pyx_t_5); __pyx_t_5 = 0; - __pyx_t_2 = (__pyx_t_4 != 0); - if (__pyx_t_2) { - - /* "pmercury/protocols/http.pyx":50 - * HTTP.headers_data.append(1) - * if 'version' in config['http']['preamble']: - * HTTP.headers_data.append(2) # <<<<<<<<<<<<<< - * if '*' in config['http']['preamble']: - * HTTP.headers_data = [0,1,2] - */ - __Pyx_GetModuleGlobalName(__pyx_t_5, __pyx_n_s_HTTP); if (unlikely(!__pyx_t_5)) __PYX_ERR(0, 50, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_5); - __pyx_t_1 = __Pyx_PyObject_GetAttrStr(__pyx_t_5, __pyx_n_s_headers_data); if (unlikely(!__pyx_t_1)) __PYX_ERR(0, 50, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_1); - __Pyx_DECREF(__pyx_t_5); __pyx_t_5 = 0; - __pyx_t_7 = __Pyx_PyObject_Append(__pyx_t_1, __pyx_int_2); if (unlikely(__pyx_t_7 == ((int)-1))) __PYX_ERR(0, 50, __pyx_L1_error) - __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0; - - /* "pmercury/protocols/http.pyx":49 - * if 'uri' in config['http']['preamble']: - * HTTP.headers_data.append(1) - * if 'version' in config['http']['preamble']: # <<<<<<<<<<<<<< - * HTTP.headers_data.append(2) - * if '*' in config['http']['preamble']: - */ - } - - /* "pmercury/protocols/http.pyx":51 - * if 'version' in config['http']['preamble']: - * HTTP.headers_data.append(2) - * if '*' in config['http']['preamble']: # <<<<<<<<<<<<<< - * HTTP.headers_data = [0,1,2] - * if 'context' in config['http']: - */ - __pyx_t_1 = __Pyx_PyObject_Dict_GetItem(__pyx_v_config, __pyx_n_u_http); if (unlikely(!__pyx_t_1)) __PYX_ERR(0, 51, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_1); - __pyx_t_5 = __Pyx_PyObject_Dict_GetItem(__pyx_t_1, __pyx_n_u_preamble); if (unlikely(!__pyx_t_5)) __PYX_ERR(0, 51, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_5); - __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0; - __pyx_t_2 = (__Pyx_PySequence_ContainsTF(__pyx_kp_u_, __pyx_t_5, Py_EQ)); if (unlikely(__pyx_t_2 < 0)) __PYX_ERR(0, 51, __pyx_L1_error) - __Pyx_DECREF(__pyx_t_5); __pyx_t_5 = 0; - __pyx_t_4 = (__pyx_t_2 != 0); - if (__pyx_t_4) { - - /* "pmercury/protocols/http.pyx":52 - * HTTP.headers_data.append(2) - * if '*' in config['http']['preamble']: - * HTTP.headers_data = [0,1,2] # <<<<<<<<<<<<<< - * if 'context' in config['http']: - * for c in config['http']['context']: - */ - __pyx_t_5 = PyList_New(3); if (unlikely(!__pyx_t_5)) __PYX_ERR(0, 52, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_5); - __Pyx_INCREF(__pyx_int_0); - __Pyx_GIVEREF(__pyx_int_0); - PyList_SET_ITEM(__pyx_t_5, 0, __pyx_int_0); - __Pyx_INCREF(__pyx_int_1); - __Pyx_GIVEREF(__pyx_int_1); - PyList_SET_ITEM(__pyx_t_5, 1, __pyx_int_1); - __Pyx_INCREF(__pyx_int_2); - __Pyx_GIVEREF(__pyx_int_2); - PyList_SET_ITEM(__pyx_t_5, 2, __pyx_int_2); - __Pyx_GetModuleGlobalName(__pyx_t_1, __pyx_n_s_HTTP); if (unlikely(!__pyx_t_1)) __PYX_ERR(0, 52, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_1); - if (__Pyx_PyObject_SetAttrStr(__pyx_t_1, __pyx_n_s_headers_data, __pyx_t_5) < 0) __PYX_ERR(0, 52, __pyx_L1_error) - __Pyx_DECREF(__pyx_t_5); __pyx_t_5 = 0; - __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0; - - /* "pmercury/protocols/http.pyx":51 - * if 'version' in config['http']['preamble']: - * HTTP.headers_data.append(2) - * if '*' in config['http']['preamble']: # <<<<<<<<<<<<<< - * HTTP.headers_data = [0,1,2] - * if 'context' in config['http']: - */ - } - - /* "pmercury/protocols/http.pyx":44 - * HTTP.all_headers = True - * HTTP.case_sensitive_static_headers = set(map(lambda x: x.encode(), config['http']['case_sensitive_static_headers'])) - * if 'preamble' in config['http']: # <<<<<<<<<<<<<< - * if 'method' in config['http']['preamble']: - * HTTP.headers_data.append(0) - */ - } - - /* "pmercury/protocols/http.pyx":53 - * if '*' in config['http']['preamble']: - * HTTP.headers_data = [0,1,2] - * if 'context' in config['http']: # <<<<<<<<<<<<<< - * for c in config['http']['context']: - * HTTP.contextual_data[c.encode()] = c.lower().replace('-','_') - */ - __pyx_t_1 = __Pyx_PyObject_Dict_GetItem(__pyx_v_config, __pyx_n_u_http); if (unlikely(!__pyx_t_1)) __PYX_ERR(0, 53, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_1); - __pyx_t_4 = (__Pyx_PySequence_ContainsTF(__pyx_n_u_context, __pyx_t_1, Py_EQ)); if (unlikely(__pyx_t_4 < 0)) __PYX_ERR(0, 53, __pyx_L1_error) - __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0; - __pyx_t_2 = (__pyx_t_4 != 0); - if (__pyx_t_2) { - - /* "pmercury/protocols/http.pyx":54 - * HTTP.headers_data = [0,1,2] - * if 'context' in config['http']: - * for c in config['http']['context']: # <<<<<<<<<<<<<< - * HTTP.contextual_data[c.encode()] = c.lower().replace('-','_') - * - */ - __pyx_t_1 = __Pyx_PyObject_Dict_GetItem(__pyx_v_config, __pyx_n_u_http); if (unlikely(!__pyx_t_1)) __PYX_ERR(0, 54, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_1); - __pyx_t_5 = __Pyx_PyObject_Dict_GetItem(__pyx_t_1, __pyx_n_u_context); if (unlikely(!__pyx_t_5)) __PYX_ERR(0, 54, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_5); - __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0; - if (likely(PyList_CheckExact(__pyx_t_5)) || PyTuple_CheckExact(__pyx_t_5)) { - __pyx_t_1 = __pyx_t_5; __Pyx_INCREF(__pyx_t_1); __pyx_t_8 = 0; - __pyx_t_9 = NULL; - } else { - __pyx_t_8 = -1; __pyx_t_1 = PyObject_GetIter(__pyx_t_5); if (unlikely(!__pyx_t_1)) __PYX_ERR(0, 54, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_1); - __pyx_t_9 = Py_TYPE(__pyx_t_1)->tp_iternext; if (unlikely(!__pyx_t_9)) __PYX_ERR(0, 54, __pyx_L1_error) - } - __Pyx_DECREF(__pyx_t_5); __pyx_t_5 = 0; - for (;;) { - if (likely(!__pyx_t_9)) { - if (likely(PyList_CheckExact(__pyx_t_1))) { - if (__pyx_t_8 >= PyList_GET_SIZE(__pyx_t_1)) break; - #if CYTHON_ASSUME_SAFE_MACROS && !CYTHON_AVOID_BORROWED_REFS - __pyx_t_5 = PyList_GET_ITEM(__pyx_t_1, __pyx_t_8); __Pyx_INCREF(__pyx_t_5); __pyx_t_8++; if (unlikely(0 < 0)) __PYX_ERR(0, 54, __pyx_L1_error) - #else - __pyx_t_5 = PySequence_ITEM(__pyx_t_1, __pyx_t_8); __pyx_t_8++; if (unlikely(!__pyx_t_5)) __PYX_ERR(0, 54, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_5); - #endif - } else { - if (__pyx_t_8 >= PyTuple_GET_SIZE(__pyx_t_1)) break; - #if CYTHON_ASSUME_SAFE_MACROS && !CYTHON_AVOID_BORROWED_REFS - __pyx_t_5 = PyTuple_GET_ITEM(__pyx_t_1, __pyx_t_8); __Pyx_INCREF(__pyx_t_5); __pyx_t_8++; if (unlikely(0 < 0)) __PYX_ERR(0, 54, __pyx_L1_error) - #else - __pyx_t_5 = PySequence_ITEM(__pyx_t_1, __pyx_t_8); __pyx_t_8++; if (unlikely(!__pyx_t_5)) __PYX_ERR(0, 54, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_5); - #endif - } - } else { - __pyx_t_5 = __pyx_t_9(__pyx_t_1); - if (unlikely(!__pyx_t_5)) { - PyObject* exc_type = PyErr_Occurred(); - if (exc_type) { - if (likely(__Pyx_PyErr_GivenExceptionMatches(exc_type, PyExc_StopIteration))) PyErr_Clear(); - else __PYX_ERR(0, 54, __pyx_L1_error) - } - break; - } - __Pyx_GOTREF(__pyx_t_5); - } - __Pyx_XDECREF_SET(__pyx_v_c, __pyx_t_5); - __pyx_t_5 = 0; - - /* "pmercury/protocols/http.pyx":55 - * if 'context' in config['http']: - * for c in config['http']['context']: - * HTTP.contextual_data[c.encode()] = c.lower().replace('-','_') # <<<<<<<<<<<<<< - * - * - */ - __pyx_t_6 = __Pyx_PyObject_GetAttrStr(__pyx_v_c, __pyx_n_s_lower); if (unlikely(!__pyx_t_6)) __PYX_ERR(0, 55, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_6); - __pyx_t_10 = NULL; - if (CYTHON_UNPACK_METHODS && likely(PyMethod_Check(__pyx_t_6))) { - __pyx_t_10 = PyMethod_GET_SELF(__pyx_t_6); - if (likely(__pyx_t_10)) { - PyObject* function = PyMethod_GET_FUNCTION(__pyx_t_6); - __Pyx_INCREF(__pyx_t_10); - __Pyx_INCREF(function); - __Pyx_DECREF_SET(__pyx_t_6, function); - } - } - __pyx_t_5 = (__pyx_t_10) ? __Pyx_PyObject_CallOneArg(__pyx_t_6, __pyx_t_10) : __Pyx_PyObject_CallNoArg(__pyx_t_6); - __Pyx_XDECREF(__pyx_t_10); __pyx_t_10 = 0; - if (unlikely(!__pyx_t_5)) __PYX_ERR(0, 55, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_5); - __Pyx_DECREF(__pyx_t_6); __pyx_t_6 = 0; - __pyx_t_6 = __Pyx_PyObject_GetAttrStr(__pyx_t_5, __pyx_n_s_replace); if (unlikely(!__pyx_t_6)) __PYX_ERR(0, 55, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_6); - __Pyx_DECREF(__pyx_t_5); __pyx_t_5 = 0; - __pyx_t_5 = __Pyx_PyObject_Call(__pyx_t_6, __pyx_tuple__4, NULL); if (unlikely(!__pyx_t_5)) __PYX_ERR(0, 55, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_5); - __Pyx_DECREF(__pyx_t_6); __pyx_t_6 = 0; - __Pyx_GetModuleGlobalName(__pyx_t_6, __pyx_n_s_HTTP); if (unlikely(!__pyx_t_6)) __PYX_ERR(0, 55, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_6); - __pyx_t_10 = __Pyx_PyObject_GetAttrStr(__pyx_t_6, __pyx_n_s_contextual_data); if (unlikely(!__pyx_t_10)) __PYX_ERR(0, 55, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_10); - __Pyx_DECREF(__pyx_t_6); __pyx_t_6 = 0; - __pyx_t_11 = __Pyx_PyObject_GetAttrStr(__pyx_v_c, __pyx_n_s_encode); if (unlikely(!__pyx_t_11)) __PYX_ERR(0, 55, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_11); - __pyx_t_12 = NULL; - if (CYTHON_UNPACK_METHODS && likely(PyMethod_Check(__pyx_t_11))) { - __pyx_t_12 = PyMethod_GET_SELF(__pyx_t_11); - if (likely(__pyx_t_12)) { - PyObject* function = PyMethod_GET_FUNCTION(__pyx_t_11); - __Pyx_INCREF(__pyx_t_12); - __Pyx_INCREF(function); - __Pyx_DECREF_SET(__pyx_t_11, function); - } - } - __pyx_t_6 = (__pyx_t_12) ? __Pyx_PyObject_CallOneArg(__pyx_t_11, __pyx_t_12) : __Pyx_PyObject_CallNoArg(__pyx_t_11); - __Pyx_XDECREF(__pyx_t_12); __pyx_t_12 = 0; - if (unlikely(!__pyx_t_6)) __PYX_ERR(0, 55, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_6); - __Pyx_DECREF(__pyx_t_11); __pyx_t_11 = 0; - if (unlikely(PyObject_SetItem(__pyx_t_10, __pyx_t_6, __pyx_t_5) < 0)) __PYX_ERR(0, 55, __pyx_L1_error) - __Pyx_DECREF(__pyx_t_10); __pyx_t_10 = 0; - __Pyx_DECREF(__pyx_t_6); __pyx_t_6 = 0; - __Pyx_DECREF(__pyx_t_5); __pyx_t_5 = 0; - - /* "pmercury/protocols/http.pyx":54 - * HTTP.headers_data = [0,1,2] - * if 'context' in config['http']: - * for c in config['http']['context']: # <<<<<<<<<<<<<< - * HTTP.contextual_data[c.encode()] = c.lower().replace('-','_') - * - */ - } - __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0; - - /* "pmercury/protocols/http.pyx":53 - * if '*' in config['http']['preamble']: - * HTTP.headers_data = [0,1,2] - * if 'context' in config['http']: # <<<<<<<<<<<<<< - * for c in config['http']['context']: - * HTTP.contextual_data[c.encode()] = c.lower().replace('-','_') - */ - } - } - __pyx_L3:; - - /* "pmercury/protocols/http.pyx":18 - * class HTTP(Protocol): - * - * def __init__(self, fp_database=None, config=None): # <<<<<<<<<<<<<< - * # populate fingerprint databases - * self.fp_db = {} - */ - - /* function exit code */ - __pyx_r = Py_None; __Pyx_INCREF(Py_None); - goto __pyx_L0; - __pyx_L1_error:; - __Pyx_XDECREF(__pyx_t_1); - __Pyx_XDECREF(__pyx_t_5); - __Pyx_XDECREF(__pyx_t_6); - __Pyx_XDECREF(__pyx_t_10); - __Pyx_XDECREF(__pyx_t_11); - __Pyx_XDECREF(__pyx_t_12); - __Pyx_AddTraceback("pmercury.protocols.http.HTTP.__init__", __pyx_clineno, __pyx_lineno, __pyx_filename); - __pyx_r = NULL; - __pyx_L0:; - __Pyx_XDECREF(__pyx_v_c); - __Pyx_XGIVEREF(__pyx_r); - __Pyx_RefNannyFinishContext(); - return __pyx_r; -} - -/* "pmercury/protocols/http.pyx":59 - * - * @staticmethod - * def proto_identify(data, offset, data_len): # <<<<<<<<<<<<<< - * if data_len-offset < 16: - * return False - */ - -/* Python wrapper */ -static PyObject *__pyx_pw_8pmercury_9protocols_4http_4HTTP_3proto_identify(PyObject *__pyx_self, PyObject *__pyx_args, PyObject *__pyx_kwds); /*proto*/ -static PyMethodDef __pyx_mdef_8pmercury_9protocols_4http_4HTTP_3proto_identify = {"proto_identify", (PyCFunction)(void*)(PyCFunctionWithKeywords)__pyx_pw_8pmercury_9protocols_4http_4HTTP_3proto_identify, METH_VARARGS|METH_KEYWORDS, 0}; -static PyObject *__pyx_pw_8pmercury_9protocols_4http_4HTTP_3proto_identify(PyObject *__pyx_self, PyObject *__pyx_args, PyObject *__pyx_kwds) { - PyObject *__pyx_v_data = 0; - PyObject *__pyx_v_offset = 0; - PyObject *__pyx_v_data_len = 0; - PyObject *__pyx_r = 0; - __Pyx_RefNannyDeclarations - __Pyx_RefNannySetupContext("proto_identify (wrapper)", 0); - { - static PyObject **__pyx_pyargnames[] = {&__pyx_n_s_data,&__pyx_n_s_offset,&__pyx_n_s_data_len,0}; - PyObject* values[3] = {0,0,0}; - if (unlikely(__pyx_kwds)) { - Py_ssize_t kw_args; - const Py_ssize_t pos_args = PyTuple_GET_SIZE(__pyx_args); - switch (pos_args) { - case 3: values[2] = PyTuple_GET_ITEM(__pyx_args, 2); - CYTHON_FALLTHROUGH; - case 2: values[1] = PyTuple_GET_ITEM(__pyx_args, 1); - CYTHON_FALLTHROUGH; - case 1: values[0] = PyTuple_GET_ITEM(__pyx_args, 0); - CYTHON_FALLTHROUGH; - case 0: break; - default: goto __pyx_L5_argtuple_error; - } - kw_args = PyDict_Size(__pyx_kwds); - switch (pos_args) { - case 0: - if (likely((values[0] = __Pyx_PyDict_GetItemStr(__pyx_kwds, __pyx_n_s_data)) != 0)) kw_args--; - else goto __pyx_L5_argtuple_error; - CYTHON_FALLTHROUGH; - case 1: - if (likely((values[1] = __Pyx_PyDict_GetItemStr(__pyx_kwds, __pyx_n_s_offset)) != 0)) kw_args--; - else { - __Pyx_RaiseArgtupleInvalid("proto_identify", 1, 3, 3, 1); __PYX_ERR(0, 59, __pyx_L3_error) - } - CYTHON_FALLTHROUGH; - case 2: - if (likely((values[2] = __Pyx_PyDict_GetItemStr(__pyx_kwds, __pyx_n_s_data_len)) != 0)) kw_args--; - else { - __Pyx_RaiseArgtupleInvalid("proto_identify", 1, 3, 3, 2); __PYX_ERR(0, 59, __pyx_L3_error) - } - } - if (unlikely(kw_args > 0)) { - if (unlikely(__Pyx_ParseOptionalKeywords(__pyx_kwds, __pyx_pyargnames, 0, values, pos_args, "proto_identify") < 0)) __PYX_ERR(0, 59, __pyx_L3_error) - } - } else if (PyTuple_GET_SIZE(__pyx_args) != 3) { - goto __pyx_L5_argtuple_error; - } else { - values[0] = PyTuple_GET_ITEM(__pyx_args, 0); - values[1] = PyTuple_GET_ITEM(__pyx_args, 1); - values[2] = PyTuple_GET_ITEM(__pyx_args, 2); - } - __pyx_v_data = values[0]; - __pyx_v_offset = values[1]; - __pyx_v_data_len = values[2]; - } - goto __pyx_L4_argument_unpacking_done; - __pyx_L5_argtuple_error:; - __Pyx_RaiseArgtupleInvalid("proto_identify", 1, 3, 3, PyTuple_GET_SIZE(__pyx_args)); __PYX_ERR(0, 59, __pyx_L3_error) - __pyx_L3_error:; - __Pyx_AddTraceback("pmercury.protocols.http.HTTP.proto_identify", __pyx_clineno, __pyx_lineno, __pyx_filename); - __Pyx_RefNannyFinishContext(); - return NULL; - __pyx_L4_argument_unpacking_done:; - __pyx_r = __pyx_pf_8pmercury_9protocols_4http_4HTTP_2proto_identify(__pyx_self, __pyx_v_data, __pyx_v_offset, __pyx_v_data_len); - - /* function exit code */ - __Pyx_RefNannyFinishContext(); - return __pyx_r; -} - -static PyObject *__pyx_pf_8pmercury_9protocols_4http_4HTTP_2proto_identify(CYTHON_UNUSED PyObject *__pyx_self, PyObject *__pyx_v_data, PyObject *__pyx_v_offset, PyObject *__pyx_v_data_len) { - PyObject *__pyx_r = NULL; - __Pyx_RefNannyDeclarations - PyObject *__pyx_t_1 = NULL; - PyObject *__pyx_t_2 = NULL; - int __pyx_t_3; - int __pyx_t_4; - __Pyx_RefNannySetupContext("proto_identify", 0); - - /* "pmercury/protocols/http.pyx":60 - * @staticmethod - * def proto_identify(data, offset, data_len): - * if data_len-offset < 16: # <<<<<<<<<<<<<< - * return False - * if (data[offset] == 71 and - */ - __pyx_t_1 = PyNumber_Subtract(__pyx_v_data_len, __pyx_v_offset); if (unlikely(!__pyx_t_1)) __PYX_ERR(0, 60, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_1); - __pyx_t_2 = PyObject_RichCompare(__pyx_t_1, __pyx_int_16, Py_LT); __Pyx_XGOTREF(__pyx_t_2); if (unlikely(!__pyx_t_2)) __PYX_ERR(0, 60, __pyx_L1_error) - __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0; - __pyx_t_3 = __Pyx_PyObject_IsTrue(__pyx_t_2); if (unlikely(__pyx_t_3 < 0)) __PYX_ERR(0, 60, __pyx_L1_error) - __Pyx_DECREF(__pyx_t_2); __pyx_t_2 = 0; - if (__pyx_t_3) { - - /* "pmercury/protocols/http.pyx":61 - * def proto_identify(data, offset, data_len): - * if data_len-offset < 16: - * return False # <<<<<<<<<<<<<< - * if (data[offset] == 71 and - * data[offset+1] == 69 and - */ - __Pyx_XDECREF(__pyx_r); - __Pyx_INCREF(Py_False); - __pyx_r = Py_False; - goto __pyx_L0; - - /* "pmercury/protocols/http.pyx":60 - * @staticmethod - * def proto_identify(data, offset, data_len): - * if data_len-offset < 16: # <<<<<<<<<<<<<< - * return False - * if (data[offset] == 71 and - */ - } - - /* "pmercury/protocols/http.pyx":62 - * if data_len-offset < 16: - * return False - * if (data[offset] == 71 and # <<<<<<<<<<<<<< - * data[offset+1] == 69 and - * data[offset+2] == 84 and - */ - __pyx_t_2 = __Pyx_PyObject_GetItem(__pyx_v_data, __pyx_v_offset); if (unlikely(!__pyx_t_2)) __PYX_ERR(0, 62, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_2); - __pyx_t_1 = __Pyx_PyInt_EqObjC(__pyx_t_2, __pyx_int_71, 71, 0); if (unlikely(!__pyx_t_1)) __PYX_ERR(0, 62, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_1); - __Pyx_DECREF(__pyx_t_2); __pyx_t_2 = 0; - __pyx_t_4 = __Pyx_PyObject_IsTrue(__pyx_t_1); if (unlikely(__pyx_t_4 < 0)) __PYX_ERR(0, 62, __pyx_L1_error) - __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0; - if (__pyx_t_4) { - } else { - __pyx_t_3 = __pyx_t_4; - goto __pyx_L5_bool_binop_done; - } - - /* "pmercury/protocols/http.pyx":63 - * return False - * if (data[offset] == 71 and - * data[offset+1] == 69 and # <<<<<<<<<<<<<< - * data[offset+2] == 84 and - * data[offset+3] == 32): - */ - __pyx_t_1 = __Pyx_PyInt_AddObjC(__pyx_v_offset, __pyx_int_1, 1, 0, 0); if (unlikely(!__pyx_t_1)) __PYX_ERR(0, 63, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_1); - __pyx_t_2 = __Pyx_PyObject_GetItem(__pyx_v_data, __pyx_t_1); if (unlikely(!__pyx_t_2)) __PYX_ERR(0, 63, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_2); - __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0; - __pyx_t_1 = __Pyx_PyInt_EqObjC(__pyx_t_2, __pyx_int_69, 69, 0); if (unlikely(!__pyx_t_1)) __PYX_ERR(0, 63, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_1); - __Pyx_DECREF(__pyx_t_2); __pyx_t_2 = 0; - __pyx_t_4 = __Pyx_PyObject_IsTrue(__pyx_t_1); if (unlikely(__pyx_t_4 < 0)) __PYX_ERR(0, 63, __pyx_L1_error) - __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0; - if (__pyx_t_4) { - } else { - __pyx_t_3 = __pyx_t_4; - goto __pyx_L5_bool_binop_done; - } - - /* "pmercury/protocols/http.pyx":64 - * if (data[offset] == 71 and - * data[offset+1] == 69 and - * data[offset+2] == 84 and # <<<<<<<<<<<<<< - * data[offset+3] == 32): - * return True - */ - __pyx_t_1 = __Pyx_PyInt_AddObjC(__pyx_v_offset, __pyx_int_2, 2, 0, 0); if (unlikely(!__pyx_t_1)) __PYX_ERR(0, 64, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_1); - __pyx_t_2 = __Pyx_PyObject_GetItem(__pyx_v_data, __pyx_t_1); if (unlikely(!__pyx_t_2)) __PYX_ERR(0, 64, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_2); - __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0; - __pyx_t_1 = __Pyx_PyInt_EqObjC(__pyx_t_2, __pyx_int_84, 84, 0); if (unlikely(!__pyx_t_1)) __PYX_ERR(0, 64, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_1); - __Pyx_DECREF(__pyx_t_2); __pyx_t_2 = 0; - __pyx_t_4 = __Pyx_PyObject_IsTrue(__pyx_t_1); if (unlikely(__pyx_t_4 < 0)) __PYX_ERR(0, 64, __pyx_L1_error) - __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0; - if (__pyx_t_4) { - } else { - __pyx_t_3 = __pyx_t_4; - goto __pyx_L5_bool_binop_done; - } - - /* "pmercury/protocols/http.pyx":65 - * data[offset+1] == 69 and - * data[offset+2] == 84 and - * data[offset+3] == 32): # <<<<<<<<<<<<<< - * return True - * return False - */ - __pyx_t_1 = __Pyx_PyInt_AddObjC(__pyx_v_offset, __pyx_int_3, 3, 0, 0); if (unlikely(!__pyx_t_1)) __PYX_ERR(0, 65, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_1); - __pyx_t_2 = __Pyx_PyObject_GetItem(__pyx_v_data, __pyx_t_1); if (unlikely(!__pyx_t_2)) __PYX_ERR(0, 65, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_2); - __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0; - __pyx_t_1 = __Pyx_PyInt_EqObjC(__pyx_t_2, __pyx_int_32, 32, 0); if (unlikely(!__pyx_t_1)) __PYX_ERR(0, 65, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_1); - __Pyx_DECREF(__pyx_t_2); __pyx_t_2 = 0; - __pyx_t_4 = __Pyx_PyObject_IsTrue(__pyx_t_1); if (unlikely(__pyx_t_4 < 0)) __PYX_ERR(0, 65, __pyx_L1_error) - __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0; - __pyx_t_3 = __pyx_t_4; - __pyx_L5_bool_binop_done:; - - /* "pmercury/protocols/http.pyx":62 - * if data_len-offset < 16: - * return False - * if (data[offset] == 71 and # <<<<<<<<<<<<<< - * data[offset+1] == 69 and - * data[offset+2] == 84 and - */ - if (__pyx_t_3) { - - /* "pmercury/protocols/http.pyx":66 - * data[offset+2] == 84 and - * data[offset+3] == 32): - * return True # <<<<<<<<<<<<<< - * return False - * - */ - __Pyx_XDECREF(__pyx_r); - __Pyx_INCREF(Py_True); - __pyx_r = Py_True; - goto __pyx_L0; - - /* "pmercury/protocols/http.pyx":62 - * if data_len-offset < 16: - * return False - * if (data[offset] == 71 and # <<<<<<<<<<<<<< - * data[offset+1] == 69 and - * data[offset+2] == 84 and - */ - } - - /* "pmercury/protocols/http.pyx":67 - * data[offset+3] == 32): - * return True - * return False # <<<<<<<<<<<<<< - * - * - */ - __Pyx_XDECREF(__pyx_r); - __Pyx_INCREF(Py_False); - __pyx_r = Py_False; - goto __pyx_L0; - - /* "pmercury/protocols/http.pyx":59 - * - * @staticmethod - * def proto_identify(data, offset, data_len): # <<<<<<<<<<<<<< - * if data_len-offset < 16: - * return False - */ - - /* function exit code */ - __pyx_L1_error:; - __Pyx_XDECREF(__pyx_t_1); - __Pyx_XDECREF(__pyx_t_2); - __Pyx_AddTraceback("pmercury.protocols.http.HTTP.proto_identify", __pyx_clineno, __pyx_lineno, __pyx_filename); - __pyx_r = NULL; - __pyx_L0:; - __Pyx_XGIVEREF(__pyx_r); - __Pyx_RefNannyFinishContext(); - return __pyx_r; -} - -/* "pmercury/protocols/http.pyx":71 - * - * @staticmethod - * def fingerprint(bytes data, unsigned int offset, unsigned int data_len): # <<<<<<<<<<<<<< - * cdef list t_ = data[offset:].split(b'\x0d\x0a', 1) - * cdef list request = t_[0].split() - */ - -/* Python wrapper */ -static PyObject *__pyx_pw_8pmercury_9protocols_4http_4HTTP_5fingerprint(PyObject *__pyx_self, PyObject *__pyx_args, PyObject *__pyx_kwds); /*proto*/ -static PyMethodDef __pyx_mdef_8pmercury_9protocols_4http_4HTTP_5fingerprint = {"fingerprint", (PyCFunction)(void*)(PyCFunctionWithKeywords)__pyx_pw_8pmercury_9protocols_4http_4HTTP_5fingerprint, METH_VARARGS|METH_KEYWORDS, 0}; -static PyObject *__pyx_pw_8pmercury_9protocols_4http_4HTTP_5fingerprint(PyObject *__pyx_self, PyObject *__pyx_args, PyObject *__pyx_kwds) { - PyObject *__pyx_v_data = 0; - unsigned int __pyx_v_offset; - CYTHON_UNUSED unsigned int __pyx_v_data_len; - PyObject *__pyx_r = 0; - __Pyx_RefNannyDeclarations - __Pyx_RefNannySetupContext("fingerprint (wrapper)", 0); - { - static PyObject **__pyx_pyargnames[] = {&__pyx_n_s_data,&__pyx_n_s_offset,&__pyx_n_s_data_len,0}; - PyObject* values[3] = {0,0,0}; - if (unlikely(__pyx_kwds)) { - Py_ssize_t kw_args; - const Py_ssize_t pos_args = PyTuple_GET_SIZE(__pyx_args); - switch (pos_args) { - case 3: values[2] = PyTuple_GET_ITEM(__pyx_args, 2); - CYTHON_FALLTHROUGH; - case 2: values[1] = PyTuple_GET_ITEM(__pyx_args, 1); - CYTHON_FALLTHROUGH; - case 1: values[0] = PyTuple_GET_ITEM(__pyx_args, 0); - CYTHON_FALLTHROUGH; - case 0: break; - default: goto __pyx_L5_argtuple_error; - } - kw_args = PyDict_Size(__pyx_kwds); - switch (pos_args) { - case 0: - if (likely((values[0] = __Pyx_PyDict_GetItemStr(__pyx_kwds, __pyx_n_s_data)) != 0)) kw_args--; - else goto __pyx_L5_argtuple_error; - CYTHON_FALLTHROUGH; - case 1: - if (likely((values[1] = __Pyx_PyDict_GetItemStr(__pyx_kwds, __pyx_n_s_offset)) != 0)) kw_args--; - else { - __Pyx_RaiseArgtupleInvalid("fingerprint", 1, 3, 3, 1); __PYX_ERR(0, 71, __pyx_L3_error) - } - CYTHON_FALLTHROUGH; - case 2: - if (likely((values[2] = __Pyx_PyDict_GetItemStr(__pyx_kwds, __pyx_n_s_data_len)) != 0)) kw_args--; - else { - __Pyx_RaiseArgtupleInvalid("fingerprint", 1, 3, 3, 2); __PYX_ERR(0, 71, __pyx_L3_error) - } - } - if (unlikely(kw_args > 0)) { - if (unlikely(__Pyx_ParseOptionalKeywords(__pyx_kwds, __pyx_pyargnames, 0, values, pos_args, "fingerprint") < 0)) __PYX_ERR(0, 71, __pyx_L3_error) - } - } else if (PyTuple_GET_SIZE(__pyx_args) != 3) { - goto __pyx_L5_argtuple_error; - } else { - values[0] = PyTuple_GET_ITEM(__pyx_args, 0); - values[1] = PyTuple_GET_ITEM(__pyx_args, 1); - values[2] = PyTuple_GET_ITEM(__pyx_args, 2); - } - __pyx_v_data = ((PyObject*)values[0]); - __pyx_v_offset = __Pyx_PyInt_As_unsigned_int(values[1]); if (unlikely((__pyx_v_offset == (unsigned int)-1) && PyErr_Occurred())) __PYX_ERR(0, 71, __pyx_L3_error) - __pyx_v_data_len = __Pyx_PyInt_As_unsigned_int(values[2]); if (unlikely((__pyx_v_data_len == (unsigned int)-1) && PyErr_Occurred())) __PYX_ERR(0, 71, __pyx_L3_error) - } - goto __pyx_L4_argument_unpacking_done; - __pyx_L5_argtuple_error:; - __Pyx_RaiseArgtupleInvalid("fingerprint", 1, 3, 3, PyTuple_GET_SIZE(__pyx_args)); __PYX_ERR(0, 71, __pyx_L3_error) - __pyx_L3_error:; - __Pyx_AddTraceback("pmercury.protocols.http.HTTP.fingerprint", __pyx_clineno, __pyx_lineno, __pyx_filename); - __Pyx_RefNannyFinishContext(); - return NULL; - __pyx_L4_argument_unpacking_done:; - if (unlikely(!__Pyx_ArgTypeTest(((PyObject *)__pyx_v_data), (&PyBytes_Type), 1, "data", 1))) __PYX_ERR(0, 71, __pyx_L1_error) - __pyx_r = __pyx_pf_8pmercury_9protocols_4http_4HTTP_4fingerprint(__pyx_self, __pyx_v_data, __pyx_v_offset, __pyx_v_data_len); - - /* function exit code */ - goto __pyx_L0; - __pyx_L1_error:; - __pyx_r = NULL; - __pyx_L0:; - __Pyx_RefNannyFinishContext(); - return __pyx_r; -} - -static PyObject *__pyx_pf_8pmercury_9protocols_4http_4HTTP_4fingerprint(CYTHON_UNUSED PyObject *__pyx_self, PyObject *__pyx_v_data, unsigned int __pyx_v_offset, CYTHON_UNUSED unsigned int __pyx_v_data_len) { - PyObject *__pyx_v_t_ = 0; - PyObject *__pyx_v_request = 0; - PyObject *__pyx_v_c = 0; - PyObject *__pyx_v_rh = NULL; - int __pyx_v_http_ah; - PyObject *__pyx_v_http_cish = 0; - PyObject *__pyx_v_http_cssh = 0; - PyObject *__pyx_v_http_ctx = 0; - PyObject *__pyx_v_headers = 0; - PyObject *__pyx_v_t0_ = 0; - PyObject *__pyx_v_t0_lower = 0; - PyObject *__pyx_v_context = NULL; - PyObject *__pyx_v_h_ = NULL; - PyObject *__pyx_v_h_c = NULL; - PyObject *__pyx_r = NULL; - __Pyx_RefNannyDeclarations - PyObject *__pyx_t_1 = NULL; - PyObject *__pyx_t_2 = NULL; - PyObject *__pyx_t_3 = NULL; - Py_ssize_t __pyx_t_4; - int __pyx_t_5; - PyObject *(*__pyx_t_6)(PyObject *); - PyObject *__pyx_t_7 = NULL; - int __pyx_t_8; - int __pyx_t_9; - PyObject *__pyx_t_10 = NULL; - PyObject *__pyx_t_11 = NULL; - PyObject *__pyx_t_12 = NULL; - PyObject *__pyx_t_13 = NULL; - int __pyx_t_14; - PyObject *__pyx_t_15 = NULL; - PyObject *__pyx_t_16 = NULL; - PyObject *__pyx_t_17 = NULL; - __Pyx_RefNannySetupContext("fingerprint", 0); - - /* "pmercury/protocols/http.pyx":72 - * @staticmethod - * def fingerprint(bytes data, unsigned int offset, unsigned int data_len): - * cdef list t_ = data[offset:].split(b'\x0d\x0a', 1) # <<<<<<<<<<<<<< - * cdef list request = t_[0].split() - * if len(request) < 3: - */ - if (unlikely(__pyx_v_data == Py_None)) { - PyErr_SetString(PyExc_TypeError, "'NoneType' object is not subscriptable"); - __PYX_ERR(0, 72, __pyx_L1_error) - } - __pyx_t_1 = PySequence_GetSlice(__pyx_v_data, __pyx_v_offset, PY_SSIZE_T_MAX); if (unlikely(!__pyx_t_1)) __PYX_ERR(0, 72, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_1); - __pyx_t_2 = __Pyx_PyObject_GetAttrStr(__pyx_t_1, __pyx_n_s_split); if (unlikely(!__pyx_t_2)) __PYX_ERR(0, 72, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_2); - __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0; - __pyx_t_1 = __Pyx_PyObject_Call(__pyx_t_2, __pyx_tuple__6, NULL); if (unlikely(!__pyx_t_1)) __PYX_ERR(0, 72, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_1); - __Pyx_DECREF(__pyx_t_2); __pyx_t_2 = 0; - if (!(likely(PyList_CheckExact(__pyx_t_1))||((__pyx_t_1) == Py_None)||(PyErr_Format(PyExc_TypeError, "Expected %.16s, got %.200s", "list", Py_TYPE(__pyx_t_1)->tp_name), 0))) __PYX_ERR(0, 72, __pyx_L1_error) - __pyx_v_t_ = ((PyObject*)__pyx_t_1); - __pyx_t_1 = 0; - - /* "pmercury/protocols/http.pyx":73 - * def fingerprint(bytes data, unsigned int offset, unsigned int data_len): - * cdef list t_ = data[offset:].split(b'\x0d\x0a', 1) - * cdef list request = t_[0].split() # <<<<<<<<<<<<<< - * if len(request) < 3: - * return None, None - */ - if (unlikely(__pyx_v_t_ == Py_None)) { - PyErr_SetString(PyExc_TypeError, "'NoneType' object is not subscriptable"); - __PYX_ERR(0, 73, __pyx_L1_error) - } - __pyx_t_2 = __Pyx_GetItemInt_List(__pyx_v_t_, 0, long, 1, __Pyx_PyInt_From_long, 1, 0, 1); if (unlikely(!__pyx_t_2)) __PYX_ERR(0, 73, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_2); - __pyx_t_3 = __Pyx_PyObject_GetAttrStr(__pyx_t_2, __pyx_n_s_split); if (unlikely(!__pyx_t_3)) __PYX_ERR(0, 73, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_3); - __Pyx_DECREF(__pyx_t_2); __pyx_t_2 = 0; - __pyx_t_2 = NULL; - if (CYTHON_UNPACK_METHODS && likely(PyMethod_Check(__pyx_t_3))) { - __pyx_t_2 = PyMethod_GET_SELF(__pyx_t_3); - if (likely(__pyx_t_2)) { - PyObject* function = PyMethod_GET_FUNCTION(__pyx_t_3); - __Pyx_INCREF(__pyx_t_2); - __Pyx_INCREF(function); - __Pyx_DECREF_SET(__pyx_t_3, function); - } - } - __pyx_t_1 = (__pyx_t_2) ? __Pyx_PyObject_CallOneArg(__pyx_t_3, __pyx_t_2) : __Pyx_PyObject_CallNoArg(__pyx_t_3); - __Pyx_XDECREF(__pyx_t_2); __pyx_t_2 = 0; - if (unlikely(!__pyx_t_1)) __PYX_ERR(0, 73, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_1); - __Pyx_DECREF(__pyx_t_3); __pyx_t_3 = 0; - if (!(likely(PyList_CheckExact(__pyx_t_1))||((__pyx_t_1) == Py_None)||(PyErr_Format(PyExc_TypeError, "Expected %.16s, got %.200s", "list", Py_TYPE(__pyx_t_1)->tp_name), 0))) __PYX_ERR(0, 73, __pyx_L1_error) - __pyx_v_request = ((PyObject*)__pyx_t_1); - __pyx_t_1 = 0; - - /* "pmercury/protocols/http.pyx":74 - * cdef list t_ = data[offset:].split(b'\x0d\x0a', 1) - * cdef list request = t_[0].split() - * if len(request) < 3: # <<<<<<<<<<<<<< - * return None, None - * - */ - if (unlikely(__pyx_v_request == Py_None)) { - PyErr_SetString(PyExc_TypeError, "object of type 'NoneType' has no len()"); - __PYX_ERR(0, 74, __pyx_L1_error) - } - __pyx_t_4 = PyList_GET_SIZE(__pyx_v_request); if (unlikely(__pyx_t_4 == ((Py_ssize_t)-1))) __PYX_ERR(0, 74, __pyx_L1_error) - __pyx_t_5 = ((__pyx_t_4 < 3) != 0); - if (__pyx_t_5) { - - /* "pmercury/protocols/http.pyx":75 - * cdef list request = t_[0].split() - * if len(request) < 3: - * return None, None # <<<<<<<<<<<<<< - * - * cdef list c = [] - */ - __Pyx_XDECREF(__pyx_r); - __Pyx_INCREF(__pyx_tuple__7); - __pyx_r = __pyx_tuple__7; - goto __pyx_L0; - - /* "pmercury/protocols/http.pyx":74 - * cdef list t_ = data[offset:].split(b'\x0d\x0a', 1) - * cdef list request = t_[0].split() - * if len(request) < 3: # <<<<<<<<<<<<<< - * return None, None - * - */ - } - - /* "pmercury/protocols/http.pyx":77 - * return None, None - * - * cdef list c = [] # <<<<<<<<<<<<<< - * for rh in HTTP.headers_data: - * c.append('(%s)' % request[rh].hex()) - */ - __pyx_t_1 = PyList_New(0); if (unlikely(!__pyx_t_1)) __PYX_ERR(0, 77, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_1); - __pyx_v_c = ((PyObject*)__pyx_t_1); - __pyx_t_1 = 0; - - /* "pmercury/protocols/http.pyx":78 - * - * cdef list c = [] - * for rh in HTTP.headers_data: # <<<<<<<<<<<<<< - * c.append('(%s)' % request[rh].hex()) - * - */ - __Pyx_GetModuleGlobalName(__pyx_t_1, __pyx_n_s_HTTP); if (unlikely(!__pyx_t_1)) __PYX_ERR(0, 78, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_1); - __pyx_t_3 = __Pyx_PyObject_GetAttrStr(__pyx_t_1, __pyx_n_s_headers_data); if (unlikely(!__pyx_t_3)) __PYX_ERR(0, 78, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_3); - __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0; - if (likely(PyList_CheckExact(__pyx_t_3)) || PyTuple_CheckExact(__pyx_t_3)) { - __pyx_t_1 = __pyx_t_3; __Pyx_INCREF(__pyx_t_1); __pyx_t_4 = 0; - __pyx_t_6 = NULL; - } else { - __pyx_t_4 = -1; __pyx_t_1 = PyObject_GetIter(__pyx_t_3); if (unlikely(!__pyx_t_1)) __PYX_ERR(0, 78, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_1); - __pyx_t_6 = Py_TYPE(__pyx_t_1)->tp_iternext; if (unlikely(!__pyx_t_6)) __PYX_ERR(0, 78, __pyx_L1_error) - } - __Pyx_DECREF(__pyx_t_3); __pyx_t_3 = 0; - for (;;) { - if (likely(!__pyx_t_6)) { - if (likely(PyList_CheckExact(__pyx_t_1))) { - if (__pyx_t_4 >= PyList_GET_SIZE(__pyx_t_1)) break; - #if CYTHON_ASSUME_SAFE_MACROS && !CYTHON_AVOID_BORROWED_REFS - __pyx_t_3 = PyList_GET_ITEM(__pyx_t_1, __pyx_t_4); __Pyx_INCREF(__pyx_t_3); __pyx_t_4++; if (unlikely(0 < 0)) __PYX_ERR(0, 78, __pyx_L1_error) - #else - __pyx_t_3 = PySequence_ITEM(__pyx_t_1, __pyx_t_4); __pyx_t_4++; if (unlikely(!__pyx_t_3)) __PYX_ERR(0, 78, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_3); - #endif - } else { - if (__pyx_t_4 >= PyTuple_GET_SIZE(__pyx_t_1)) break; - #if CYTHON_ASSUME_SAFE_MACROS && !CYTHON_AVOID_BORROWED_REFS - __pyx_t_3 = PyTuple_GET_ITEM(__pyx_t_1, __pyx_t_4); __Pyx_INCREF(__pyx_t_3); __pyx_t_4++; if (unlikely(0 < 0)) __PYX_ERR(0, 78, __pyx_L1_error) - #else - __pyx_t_3 = PySequence_ITEM(__pyx_t_1, __pyx_t_4); __pyx_t_4++; if (unlikely(!__pyx_t_3)) __PYX_ERR(0, 78, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_3); - #endif - } - } else { - __pyx_t_3 = __pyx_t_6(__pyx_t_1); - if (unlikely(!__pyx_t_3)) { - PyObject* exc_type = PyErr_Occurred(); - if (exc_type) { - if (likely(__Pyx_PyErr_GivenExceptionMatches(exc_type, PyExc_StopIteration))) PyErr_Clear(); - else __PYX_ERR(0, 78, __pyx_L1_error) - } - break; - } - __Pyx_GOTREF(__pyx_t_3); - } - __Pyx_XDECREF_SET(__pyx_v_rh, __pyx_t_3); - __pyx_t_3 = 0; - - /* "pmercury/protocols/http.pyx":79 - * cdef list c = [] - * for rh in HTTP.headers_data: - * c.append('(%s)' % request[rh].hex()) # <<<<<<<<<<<<<< - * - * if len(t_) == 1: - */ - if (unlikely(__pyx_v_request == Py_None)) { - PyErr_SetString(PyExc_TypeError, "'NoneType' object is not subscriptable"); - __PYX_ERR(0, 79, __pyx_L1_error) - } - __pyx_t_2 = __Pyx_PyObject_GetItem(__pyx_v_request, __pyx_v_rh); if (unlikely(!__pyx_t_2)) __PYX_ERR(0, 79, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_2); - __pyx_t_7 = __Pyx_PyObject_GetAttrStr(__pyx_t_2, __pyx_n_s_hex); if (unlikely(!__pyx_t_7)) __PYX_ERR(0, 79, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_7); - __Pyx_DECREF(__pyx_t_2); __pyx_t_2 = 0; - __pyx_t_2 = NULL; - if (CYTHON_UNPACK_METHODS && likely(PyMethod_Check(__pyx_t_7))) { - __pyx_t_2 = PyMethod_GET_SELF(__pyx_t_7); - if (likely(__pyx_t_2)) { - PyObject* function = PyMethod_GET_FUNCTION(__pyx_t_7); - __Pyx_INCREF(__pyx_t_2); - __Pyx_INCREF(function); - __Pyx_DECREF_SET(__pyx_t_7, function); - } - } - __pyx_t_3 = (__pyx_t_2) ? __Pyx_PyObject_CallOneArg(__pyx_t_7, __pyx_t_2) : __Pyx_PyObject_CallNoArg(__pyx_t_7); - __Pyx_XDECREF(__pyx_t_2); __pyx_t_2 = 0; - if (unlikely(!__pyx_t_3)) __PYX_ERR(0, 79, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_3); - __Pyx_DECREF(__pyx_t_7); __pyx_t_7 = 0; - __pyx_t_7 = __Pyx_PyUnicode_FormatSafe(__pyx_kp_u_s, __pyx_t_3); if (unlikely(!__pyx_t_7)) __PYX_ERR(0, 79, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_7); - __Pyx_DECREF(__pyx_t_3); __pyx_t_3 = 0; - __pyx_t_8 = __Pyx_PyList_Append(__pyx_v_c, __pyx_t_7); if (unlikely(__pyx_t_8 == ((int)-1))) __PYX_ERR(0, 79, __pyx_L1_error) - __Pyx_DECREF(__pyx_t_7); __pyx_t_7 = 0; - - /* "pmercury/protocols/http.pyx":78 - * - * cdef list c = [] - * for rh in HTTP.headers_data: # <<<<<<<<<<<<<< - * c.append('(%s)' % request[rh].hex()) - * - */ - } - __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0; - - /* "pmercury/protocols/http.pyx":81 - * c.append('(%s)' % request[rh].hex()) - * - * if len(t_) == 1: # <<<<<<<<<<<<<< - * return ''.join(c), None - * - */ - if (unlikely(__pyx_v_t_ == Py_None)) { - PyErr_SetString(PyExc_TypeError, "object of type 'NoneType' has no len()"); - __PYX_ERR(0, 81, __pyx_L1_error) - } - __pyx_t_4 = PyList_GET_SIZE(__pyx_v_t_); if (unlikely(__pyx_t_4 == ((Py_ssize_t)-1))) __PYX_ERR(0, 81, __pyx_L1_error) - __pyx_t_5 = ((__pyx_t_4 == 1) != 0); - if (__pyx_t_5) { - - /* "pmercury/protocols/http.pyx":82 - * - * if len(t_) == 1: - * return ''.join(c), None # <<<<<<<<<<<<<< - * - * cdef bint http_ah = HTTP.all_headers - */ - __Pyx_XDECREF(__pyx_r); - __pyx_t_1 = PyUnicode_Join(__pyx_kp_u__8, __pyx_v_c); if (unlikely(!__pyx_t_1)) __PYX_ERR(0, 82, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_1); - __pyx_t_7 = PyTuple_New(2); if (unlikely(!__pyx_t_7)) __PYX_ERR(0, 82, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_7); - __Pyx_GIVEREF(__pyx_t_1); - PyTuple_SET_ITEM(__pyx_t_7, 0, __pyx_t_1); - __Pyx_INCREF(Py_None); - __Pyx_GIVEREF(Py_None); - PyTuple_SET_ITEM(__pyx_t_7, 1, Py_None); - __pyx_t_1 = 0; - __pyx_r = __pyx_t_7; - __pyx_t_7 = 0; - goto __pyx_L0; - - /* "pmercury/protocols/http.pyx":81 - * c.append('(%s)' % request[rh].hex()) - * - * if len(t_) == 1: # <<<<<<<<<<<<<< - * return ''.join(c), None - * - */ - } - - /* "pmercury/protocols/http.pyx":84 - * return ''.join(c), None - * - * cdef bint http_ah = HTTP.all_headers # <<<<<<<<<<<<<< - * cdef set http_cish = HTTP.case_insensitive_static_headers - * cdef set http_cssh = HTTP.case_sensitive_static_headers - */ - __Pyx_GetModuleGlobalName(__pyx_t_7, __pyx_n_s_HTTP); if (unlikely(!__pyx_t_7)) __PYX_ERR(0, 84, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_7); - __pyx_t_1 = __Pyx_PyObject_GetAttrStr(__pyx_t_7, __pyx_n_s_all_headers); if (unlikely(!__pyx_t_1)) __PYX_ERR(0, 84, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_1); - __Pyx_DECREF(__pyx_t_7); __pyx_t_7 = 0; - __pyx_t_5 = __Pyx_PyObject_IsTrue(__pyx_t_1); if (unlikely((__pyx_t_5 == (int)-1) && PyErr_Occurred())) __PYX_ERR(0, 84, __pyx_L1_error) - __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0; - __pyx_v_http_ah = __pyx_t_5; - - /* "pmercury/protocols/http.pyx":85 - * - * cdef bint http_ah = HTTP.all_headers - * cdef set http_cish = HTTP.case_insensitive_static_headers # <<<<<<<<<<<<<< - * cdef set http_cssh = HTTP.case_sensitive_static_headers - * cdef dict http_ctx = HTTP.contextual_data - */ - __Pyx_GetModuleGlobalName(__pyx_t_1, __pyx_n_s_HTTP); if (unlikely(!__pyx_t_1)) __PYX_ERR(0, 85, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_1); - __pyx_t_7 = __Pyx_PyObject_GetAttrStr(__pyx_t_1, __pyx_n_s_case_insensitive_static_headers); if (unlikely(!__pyx_t_7)) __PYX_ERR(0, 85, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_7); - __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0; - if (!(likely(PySet_CheckExact(__pyx_t_7))||((__pyx_t_7) == Py_None)||(PyErr_Format(PyExc_TypeError, "Expected %.16s, got %.200s", "set", Py_TYPE(__pyx_t_7)->tp_name), 0))) __PYX_ERR(0, 85, __pyx_L1_error) - __pyx_v_http_cish = ((PyObject*)__pyx_t_7); - __pyx_t_7 = 0; - - /* "pmercury/protocols/http.pyx":86 - * cdef bint http_ah = HTTP.all_headers - * cdef set http_cish = HTTP.case_insensitive_static_headers - * cdef set http_cssh = HTTP.case_sensitive_static_headers # <<<<<<<<<<<<<< - * cdef dict http_ctx = HTTP.contextual_data - * cdef list headers = t_[1].split(b'\x0d\x0a') - */ - __Pyx_GetModuleGlobalName(__pyx_t_7, __pyx_n_s_HTTP); if (unlikely(!__pyx_t_7)) __PYX_ERR(0, 86, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_7); - __pyx_t_1 = __Pyx_PyObject_GetAttrStr(__pyx_t_7, __pyx_n_s_case_sensitive_static_headers); if (unlikely(!__pyx_t_1)) __PYX_ERR(0, 86, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_1); - __Pyx_DECREF(__pyx_t_7); __pyx_t_7 = 0; - if (!(likely(PySet_CheckExact(__pyx_t_1))||((__pyx_t_1) == Py_None)||(PyErr_Format(PyExc_TypeError, "Expected %.16s, got %.200s", "set", Py_TYPE(__pyx_t_1)->tp_name), 0))) __PYX_ERR(0, 86, __pyx_L1_error) - __pyx_v_http_cssh = ((PyObject*)__pyx_t_1); - __pyx_t_1 = 0; - - /* "pmercury/protocols/http.pyx":87 - * cdef set http_cish = HTTP.case_insensitive_static_headers - * cdef set http_cssh = HTTP.case_sensitive_static_headers - * cdef dict http_ctx = HTTP.contextual_data # <<<<<<<<<<<<<< - * cdef list headers = t_[1].split(b'\x0d\x0a') - * cdef bytes t0_ - */ - __Pyx_GetModuleGlobalName(__pyx_t_1, __pyx_n_s_HTTP); if (unlikely(!__pyx_t_1)) __PYX_ERR(0, 87, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_1); - __pyx_t_7 = __Pyx_PyObject_GetAttrStr(__pyx_t_1, __pyx_n_s_contextual_data); if (unlikely(!__pyx_t_7)) __PYX_ERR(0, 87, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_7); - __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0; - if (!(likely(PyDict_CheckExact(__pyx_t_7))||((__pyx_t_7) == Py_None)||(PyErr_Format(PyExc_TypeError, "Expected %.16s, got %.200s", "dict", Py_TYPE(__pyx_t_7)->tp_name), 0))) __PYX_ERR(0, 87, __pyx_L1_error) - __pyx_v_http_ctx = ((PyObject*)__pyx_t_7); - __pyx_t_7 = 0; - - /* "pmercury/protocols/http.pyx":88 - * cdef set http_cssh = HTTP.case_sensitive_static_headers - * cdef dict http_ctx = HTTP.contextual_data - * cdef list headers = t_[1].split(b'\x0d\x0a') # <<<<<<<<<<<<<< - * cdef bytes t0_ - * cdef bytes t0_lower - */ - if (unlikely(__pyx_v_t_ == Py_None)) { - PyErr_SetString(PyExc_TypeError, "'NoneType' object is not subscriptable"); - __PYX_ERR(0, 88, __pyx_L1_error) - } - __pyx_t_1 = __Pyx_GetItemInt_List(__pyx_v_t_, 1, long, 1, __Pyx_PyInt_From_long, 1, 0, 1); if (unlikely(!__pyx_t_1)) __PYX_ERR(0, 88, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_1); - __pyx_t_3 = __Pyx_PyObject_GetAttrStr(__pyx_t_1, __pyx_n_s_split); if (unlikely(!__pyx_t_3)) __PYX_ERR(0, 88, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_3); - __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0; - __pyx_t_1 = NULL; - if (CYTHON_UNPACK_METHODS && likely(PyMethod_Check(__pyx_t_3))) { - __pyx_t_1 = PyMethod_GET_SELF(__pyx_t_3); - if (likely(__pyx_t_1)) { - PyObject* function = PyMethod_GET_FUNCTION(__pyx_t_3); - __Pyx_INCREF(__pyx_t_1); - __Pyx_INCREF(function); - __Pyx_DECREF_SET(__pyx_t_3, function); - } - } - __pyx_t_7 = (__pyx_t_1) ? __Pyx_PyObject_Call2Args(__pyx_t_3, __pyx_t_1, __pyx_kp_b__5) : __Pyx_PyObject_CallOneArg(__pyx_t_3, __pyx_kp_b__5); - __Pyx_XDECREF(__pyx_t_1); __pyx_t_1 = 0; - if (unlikely(!__pyx_t_7)) __PYX_ERR(0, 88, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_7); - __Pyx_DECREF(__pyx_t_3); __pyx_t_3 = 0; - if (!(likely(PyList_CheckExact(__pyx_t_7))||((__pyx_t_7) == Py_None)||(PyErr_Format(PyExc_TypeError, "Expected %.16s, got %.200s", "list", Py_TYPE(__pyx_t_7)->tp_name), 0))) __PYX_ERR(0, 88, __pyx_L1_error) - __pyx_v_headers = ((PyObject*)__pyx_t_7); - __pyx_t_7 = 0; - - /* "pmercury/protocols/http.pyx":91 - * cdef bytes t0_ - * cdef bytes t0_lower - * context = [] # <<<<<<<<<<<<<< - * for h_ in headers: - * if h_ == b'': - */ - __pyx_t_7 = PyList_New(0); if (unlikely(!__pyx_t_7)) __PYX_ERR(0, 91, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_7); - __pyx_v_context = ((PyObject*)__pyx_t_7); - __pyx_t_7 = 0; - - /* "pmercury/protocols/http.pyx":92 - * cdef bytes t0_lower - * context = [] - * for h_ in headers: # <<<<<<<<<<<<<< - * if h_ == b'': - * break - */ - if (unlikely(__pyx_v_headers == Py_None)) { - PyErr_SetString(PyExc_TypeError, "'NoneType' object is not iterable"); - __PYX_ERR(0, 92, __pyx_L1_error) - } - __pyx_t_7 = __pyx_v_headers; __Pyx_INCREF(__pyx_t_7); __pyx_t_4 = 0; - for (;;) { - if (__pyx_t_4 >= PyList_GET_SIZE(__pyx_t_7)) break; - #if CYTHON_ASSUME_SAFE_MACROS && !CYTHON_AVOID_BORROWED_REFS - __pyx_t_3 = PyList_GET_ITEM(__pyx_t_7, __pyx_t_4); __Pyx_INCREF(__pyx_t_3); __pyx_t_4++; if (unlikely(0 < 0)) __PYX_ERR(0, 92, __pyx_L1_error) - #else - __pyx_t_3 = PySequence_ITEM(__pyx_t_7, __pyx_t_4); __pyx_t_4++; if (unlikely(!__pyx_t_3)) __PYX_ERR(0, 92, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_3); - #endif - __Pyx_XDECREF_SET(__pyx_v_h_, __pyx_t_3); - __pyx_t_3 = 0; - - /* "pmercury/protocols/http.pyx":93 - * context = [] - * for h_ in headers: - * if h_ == b'': # <<<<<<<<<<<<<< - * break - * t0_ = h_.split(b'\x3a\x20',1)[0] - */ - __pyx_t_5 = (__Pyx_PyBytes_Equals(__pyx_v_h_, __pyx_kp_b__8, Py_EQ)); if (unlikely(__pyx_t_5 < 0)) __PYX_ERR(0, 93, __pyx_L1_error) - if (__pyx_t_5) { - - /* "pmercury/protocols/http.pyx":94 - * for h_ in headers: - * if h_ == b'': - * break # <<<<<<<<<<<<<< - * t0_ = h_.split(b'\x3a\x20',1)[0] - * t0_lower = t0_.lower() - */ - goto __pyx_L8_break; - - /* "pmercury/protocols/http.pyx":93 - * context = [] - * for h_ in headers: - * if h_ == b'': # <<<<<<<<<<<<<< - * break - * t0_ = h_.split(b'\x3a\x20',1)[0] - */ - } - - /* "pmercury/protocols/http.pyx":95 - * if h_ == b'': - * break - * t0_ = h_.split(b'\x3a\x20',1)[0] # <<<<<<<<<<<<<< - * t0_lower = t0_.lower() - * - */ - __pyx_t_3 = __Pyx_PyObject_GetAttrStr(__pyx_v_h_, __pyx_n_s_split); if (unlikely(!__pyx_t_3)) __PYX_ERR(0, 95, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_3); - __pyx_t_1 = __Pyx_PyObject_Call(__pyx_t_3, __pyx_tuple__10, NULL); if (unlikely(!__pyx_t_1)) __PYX_ERR(0, 95, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_1); - __Pyx_DECREF(__pyx_t_3); __pyx_t_3 = 0; - __pyx_t_3 = __Pyx_GetItemInt(__pyx_t_1, 0, long, 1, __Pyx_PyInt_From_long, 0, 0, 1); if (unlikely(!__pyx_t_3)) __PYX_ERR(0, 95, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_3); - __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0; - if (!(likely(PyBytes_CheckExact(__pyx_t_3))||((__pyx_t_3) == Py_None)||(PyErr_Format(PyExc_TypeError, "Expected %.16s, got %.200s", "bytes", Py_TYPE(__pyx_t_3)->tp_name), 0))) __PYX_ERR(0, 95, __pyx_L1_error) - __Pyx_XDECREF_SET(__pyx_v_t0_, ((PyObject*)__pyx_t_3)); - __pyx_t_3 = 0; - - /* "pmercury/protocols/http.pyx":96 - * break - * t0_ = h_.split(b'\x3a\x20',1)[0] - * t0_lower = t0_.lower() # <<<<<<<<<<<<<< - * - * - */ - __pyx_t_3 = __Pyx_CallUnboundCMethod0(&__pyx_umethod_PyBytes_Type_lower, __pyx_v_t0_); if (unlikely(!__pyx_t_3)) __PYX_ERR(0, 96, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_3); - if (!(likely(PyBytes_CheckExact(__pyx_t_3))||((__pyx_t_3) == Py_None)||(PyErr_Format(PyExc_TypeError, "Expected %.16s, got %.200s", "bytes", Py_TYPE(__pyx_t_3)->tp_name), 0))) __PYX_ERR(0, 96, __pyx_L1_error) - __Pyx_XDECREF_SET(__pyx_v_t0_lower, ((PyObject*)__pyx_t_3)); - __pyx_t_3 = 0; - - /* "pmercury/protocols/http.pyx":99 - * - * - * if http_ah: # <<<<<<<<<<<<<< - * h_c = h_.hex() - * elif t0_lower in http_cish: - */ - __pyx_t_5 = (__pyx_v_http_ah != 0); - if (__pyx_t_5) { - - /* "pmercury/protocols/http.pyx":100 - * - * if http_ah: - * h_c = h_.hex() # <<<<<<<<<<<<<< - * elif t0_lower in http_cish: - * h_c = h_.hex() - */ - __pyx_t_1 = __Pyx_PyObject_GetAttrStr(__pyx_v_h_, __pyx_n_s_hex); if (unlikely(!__pyx_t_1)) __PYX_ERR(0, 100, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_1); - __pyx_t_2 = NULL; - if (CYTHON_UNPACK_METHODS && likely(PyMethod_Check(__pyx_t_1))) { - __pyx_t_2 = PyMethod_GET_SELF(__pyx_t_1); - if (likely(__pyx_t_2)) { - PyObject* function = PyMethod_GET_FUNCTION(__pyx_t_1); - __Pyx_INCREF(__pyx_t_2); - __Pyx_INCREF(function); - __Pyx_DECREF_SET(__pyx_t_1, function); - } - } - __pyx_t_3 = (__pyx_t_2) ? __Pyx_PyObject_CallOneArg(__pyx_t_1, __pyx_t_2) : __Pyx_PyObject_CallNoArg(__pyx_t_1); - __Pyx_XDECREF(__pyx_t_2); __pyx_t_2 = 0; - if (unlikely(!__pyx_t_3)) __PYX_ERR(0, 100, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_3); - __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0; - __Pyx_XDECREF_SET(__pyx_v_h_c, __pyx_t_3); - __pyx_t_3 = 0; - - /* "pmercury/protocols/http.pyx":99 - * - * - * if http_ah: # <<<<<<<<<<<<<< - * h_c = h_.hex() - * elif t0_lower in http_cish: - */ - goto __pyx_L10; - } - - /* "pmercury/protocols/http.pyx":101 - * if http_ah: - * h_c = h_.hex() - * elif t0_lower in http_cish: # <<<<<<<<<<<<<< - * h_c = h_.hex() - * elif t0_ in http_cssh: - */ - if (unlikely(__pyx_v_http_cish == Py_None)) { - PyErr_SetString(PyExc_TypeError, "'NoneType' object is not iterable"); - __PYX_ERR(0, 101, __pyx_L1_error) - } - __pyx_t_5 = (__Pyx_PySet_ContainsTF(__pyx_v_t0_lower, __pyx_v_http_cish, Py_EQ)); if (unlikely(__pyx_t_5 < 0)) __PYX_ERR(0, 101, __pyx_L1_error) - __pyx_t_9 = (__pyx_t_5 != 0); - if (__pyx_t_9) { - - /* "pmercury/protocols/http.pyx":102 - * h_c = h_.hex() - * elif t0_lower in http_cish: - * h_c = h_.hex() # <<<<<<<<<<<<<< - * elif t0_ in http_cssh: - * h_c = h_.hex() - */ - __pyx_t_1 = __Pyx_PyObject_GetAttrStr(__pyx_v_h_, __pyx_n_s_hex); if (unlikely(!__pyx_t_1)) __PYX_ERR(0, 102, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_1); - __pyx_t_2 = NULL; - if (CYTHON_UNPACK_METHODS && likely(PyMethod_Check(__pyx_t_1))) { - __pyx_t_2 = PyMethod_GET_SELF(__pyx_t_1); - if (likely(__pyx_t_2)) { - PyObject* function = PyMethod_GET_FUNCTION(__pyx_t_1); - __Pyx_INCREF(__pyx_t_2); - __Pyx_INCREF(function); - __Pyx_DECREF_SET(__pyx_t_1, function); - } - } - __pyx_t_3 = (__pyx_t_2) ? __Pyx_PyObject_CallOneArg(__pyx_t_1, __pyx_t_2) : __Pyx_PyObject_CallNoArg(__pyx_t_1); - __Pyx_XDECREF(__pyx_t_2); __pyx_t_2 = 0; - if (unlikely(!__pyx_t_3)) __PYX_ERR(0, 102, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_3); - __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0; - __Pyx_XDECREF_SET(__pyx_v_h_c, __pyx_t_3); - __pyx_t_3 = 0; - - /* "pmercury/protocols/http.pyx":101 - * if http_ah: - * h_c = h_.hex() - * elif t0_lower in http_cish: # <<<<<<<<<<<<<< - * h_c = h_.hex() - * elif t0_ in http_cssh: - */ - goto __pyx_L10; - } - - /* "pmercury/protocols/http.pyx":103 - * elif t0_lower in http_cish: - * h_c = h_.hex() - * elif t0_ in http_cssh: # <<<<<<<<<<<<<< - * h_c = h_.hex() - * else: - */ - if (unlikely(__pyx_v_http_cssh == Py_None)) { - PyErr_SetString(PyExc_TypeError, "'NoneType' object is not iterable"); - __PYX_ERR(0, 103, __pyx_L1_error) - } - __pyx_t_9 = (__Pyx_PySet_ContainsTF(__pyx_v_t0_, __pyx_v_http_cssh, Py_EQ)); if (unlikely(__pyx_t_9 < 0)) __PYX_ERR(0, 103, __pyx_L1_error) - __pyx_t_5 = (__pyx_t_9 != 0); - if (__pyx_t_5) { - - /* "pmercury/protocols/http.pyx":104 - * h_c = h_.hex() - * elif t0_ in http_cssh: - * h_c = h_.hex() # <<<<<<<<<<<<<< - * else: - * h_c = t0_.hex() - */ - __pyx_t_1 = __Pyx_PyObject_GetAttrStr(__pyx_v_h_, __pyx_n_s_hex); if (unlikely(!__pyx_t_1)) __PYX_ERR(0, 104, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_1); - __pyx_t_2 = NULL; - if (CYTHON_UNPACK_METHODS && likely(PyMethod_Check(__pyx_t_1))) { - __pyx_t_2 = PyMethod_GET_SELF(__pyx_t_1); - if (likely(__pyx_t_2)) { - PyObject* function = PyMethod_GET_FUNCTION(__pyx_t_1); - __Pyx_INCREF(__pyx_t_2); - __Pyx_INCREF(function); - __Pyx_DECREF_SET(__pyx_t_1, function); - } - } - __pyx_t_3 = (__pyx_t_2) ? __Pyx_PyObject_CallOneArg(__pyx_t_1, __pyx_t_2) : __Pyx_PyObject_CallNoArg(__pyx_t_1); - __Pyx_XDECREF(__pyx_t_2); __pyx_t_2 = 0; - if (unlikely(!__pyx_t_3)) __PYX_ERR(0, 104, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_3); - __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0; - __Pyx_XDECREF_SET(__pyx_v_h_c, __pyx_t_3); - __pyx_t_3 = 0; - - /* "pmercury/protocols/http.pyx":103 - * elif t0_lower in http_cish: - * h_c = h_.hex() - * elif t0_ in http_cssh: # <<<<<<<<<<<<<< - * h_c = h_.hex() - * else: - */ - goto __pyx_L10; - } - - /* "pmercury/protocols/http.pyx":106 - * h_c = h_.hex() - * else: - * h_c = t0_.hex() # <<<<<<<<<<<<<< - * - * c.append('(%s)' % h_c) - */ - /*else*/ { - __pyx_t_3 = __Pyx_CallUnboundCMethod0(&__pyx_umethod_PyBytes_Type_hex, __pyx_v_t0_); if (unlikely(!__pyx_t_3)) __PYX_ERR(0, 106, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_3); - __Pyx_XDECREF_SET(__pyx_v_h_c, __pyx_t_3); - __pyx_t_3 = 0; - } - __pyx_L10:; - - /* "pmercury/protocols/http.pyx":108 - * h_c = t0_.hex() - * - * c.append('(%s)' % h_c) # <<<<<<<<<<<<<< - * if t0_lower in http_ctx: - * if b'\x3a\x20' in h_: - */ - __pyx_t_3 = __Pyx_PyUnicode_FormatSafe(__pyx_kp_u_s, __pyx_v_h_c); if (unlikely(!__pyx_t_3)) __PYX_ERR(0, 108, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_3); - __pyx_t_8 = __Pyx_PyList_Append(__pyx_v_c, __pyx_t_3); if (unlikely(__pyx_t_8 == ((int)-1))) __PYX_ERR(0, 108, __pyx_L1_error) - __Pyx_DECREF(__pyx_t_3); __pyx_t_3 = 0; - - /* "pmercury/protocols/http.pyx":109 - * - * c.append('(%s)' % h_c) - * if t0_lower in http_ctx: # <<<<<<<<<<<<<< - * if b'\x3a\x20' in h_: - * try: - */ - if (unlikely(__pyx_v_http_ctx == Py_None)) { - PyErr_SetString(PyExc_TypeError, "'NoneType' object is not iterable"); - __PYX_ERR(0, 109, __pyx_L1_error) - } - __pyx_t_5 = (__Pyx_PyDict_ContainsTF(__pyx_v_t0_lower, __pyx_v_http_ctx, Py_EQ)); if (unlikely(__pyx_t_5 < 0)) __PYX_ERR(0, 109, __pyx_L1_error) - __pyx_t_9 = (__pyx_t_5 != 0); - if (__pyx_t_9) { - - /* "pmercury/protocols/http.pyx":110 - * c.append('(%s)' % h_c) - * if t0_lower in http_ctx: - * if b'\x3a\x20' in h_: # <<<<<<<<<<<<<< - * try: - * context.append({'name':http_ctx[t0_lower], 'data':h_.split(b'\x3a\x20',1)[1].decode()}) - */ - __pyx_t_9 = (__Pyx_PySequence_ContainsTF(__pyx_kp_b__9, __pyx_v_h_, Py_EQ)); if (unlikely(__pyx_t_9 < 0)) __PYX_ERR(0, 110, __pyx_L1_error) - __pyx_t_5 = (__pyx_t_9 != 0); - if (__pyx_t_5) { - - /* "pmercury/protocols/http.pyx":111 - * if t0_lower in http_ctx: - * if b'\x3a\x20' in h_: - * try: # <<<<<<<<<<<<<< - * context.append({'name':http_ctx[t0_lower], 'data':h_.split(b'\x3a\x20',1)[1].decode()}) - * except UnicodeDecodeError: - */ - { - __Pyx_PyThreadState_declare - __Pyx_PyThreadState_assign - __Pyx_ExceptionSave(&__pyx_t_10, &__pyx_t_11, &__pyx_t_12); - __Pyx_XGOTREF(__pyx_t_10); - __Pyx_XGOTREF(__pyx_t_11); - __Pyx_XGOTREF(__pyx_t_12); - /*try:*/ { - - /* "pmercury/protocols/http.pyx":112 - * if b'\x3a\x20' in h_: - * try: - * context.append({'name':http_ctx[t0_lower], 'data':h_.split(b'\x3a\x20',1)[1].decode()}) # <<<<<<<<<<<<<< - * except UnicodeDecodeError: - * context.append({'name':http_ctx[t0_lower], 'data':h_.split(b'\x3a\x20',1)[1].hex()}) - */ - __pyx_t_3 = __Pyx_PyDict_NewPresized(2); if (unlikely(!__pyx_t_3)) __PYX_ERR(0, 112, __pyx_L13_error) - __Pyx_GOTREF(__pyx_t_3); - if (unlikely(__pyx_v_http_ctx == Py_None)) { - PyErr_SetString(PyExc_TypeError, "'NoneType' object is not subscriptable"); - __PYX_ERR(0, 112, __pyx_L13_error) - } - __pyx_t_1 = __Pyx_PyDict_GetItem(__pyx_v_http_ctx, __pyx_v_t0_lower); if (unlikely(!__pyx_t_1)) __PYX_ERR(0, 112, __pyx_L13_error) - __Pyx_GOTREF(__pyx_t_1); - if (PyDict_SetItem(__pyx_t_3, __pyx_n_u_name, __pyx_t_1) < 0) __PYX_ERR(0, 112, __pyx_L13_error) - __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0; - __pyx_t_2 = __Pyx_PyObject_GetAttrStr(__pyx_v_h_, __pyx_n_s_split); if (unlikely(!__pyx_t_2)) __PYX_ERR(0, 112, __pyx_L13_error) - __Pyx_GOTREF(__pyx_t_2); - __pyx_t_13 = __Pyx_PyObject_Call(__pyx_t_2, __pyx_tuple__10, NULL); if (unlikely(!__pyx_t_13)) __PYX_ERR(0, 112, __pyx_L13_error) - __Pyx_GOTREF(__pyx_t_13); - __Pyx_DECREF(__pyx_t_2); __pyx_t_2 = 0; - __pyx_t_2 = __Pyx_GetItemInt(__pyx_t_13, 1, long, 1, __Pyx_PyInt_From_long, 0, 0, 1); if (unlikely(!__pyx_t_2)) __PYX_ERR(0, 112, __pyx_L13_error) - __Pyx_GOTREF(__pyx_t_2); - __Pyx_DECREF(__pyx_t_13); __pyx_t_13 = 0; - __pyx_t_13 = __Pyx_PyObject_GetAttrStr(__pyx_t_2, __pyx_n_s_decode); if (unlikely(!__pyx_t_13)) __PYX_ERR(0, 112, __pyx_L13_error) - __Pyx_GOTREF(__pyx_t_13); - __Pyx_DECREF(__pyx_t_2); __pyx_t_2 = 0; - __pyx_t_2 = NULL; - if (CYTHON_UNPACK_METHODS && likely(PyMethod_Check(__pyx_t_13))) { - __pyx_t_2 = PyMethod_GET_SELF(__pyx_t_13); - if (likely(__pyx_t_2)) { - PyObject* function = PyMethod_GET_FUNCTION(__pyx_t_13); - __Pyx_INCREF(__pyx_t_2); - __Pyx_INCREF(function); - __Pyx_DECREF_SET(__pyx_t_13, function); - } - } - __pyx_t_1 = (__pyx_t_2) ? __Pyx_PyObject_CallOneArg(__pyx_t_13, __pyx_t_2) : __Pyx_PyObject_CallNoArg(__pyx_t_13); - __Pyx_XDECREF(__pyx_t_2); __pyx_t_2 = 0; - if (unlikely(!__pyx_t_1)) __PYX_ERR(0, 112, __pyx_L13_error) - __Pyx_GOTREF(__pyx_t_1); - __Pyx_DECREF(__pyx_t_13); __pyx_t_13 = 0; - if (PyDict_SetItem(__pyx_t_3, __pyx_n_u_data, __pyx_t_1) < 0) __PYX_ERR(0, 112, __pyx_L13_error) - __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0; - __pyx_t_8 = __Pyx_PyList_Append(__pyx_v_context, __pyx_t_3); if (unlikely(__pyx_t_8 == ((int)-1))) __PYX_ERR(0, 112, __pyx_L13_error) - __Pyx_DECREF(__pyx_t_3); __pyx_t_3 = 0; - - /* "pmercury/protocols/http.pyx":111 - * if t0_lower in http_ctx: - * if b'\x3a\x20' in h_: - * try: # <<<<<<<<<<<<<< - * context.append({'name':http_ctx[t0_lower], 'data':h_.split(b'\x3a\x20',1)[1].decode()}) - * except UnicodeDecodeError: - */ - } - __Pyx_XDECREF(__pyx_t_10); __pyx_t_10 = 0; - __Pyx_XDECREF(__pyx_t_11); __pyx_t_11 = 0; - __Pyx_XDECREF(__pyx_t_12); __pyx_t_12 = 0; - goto __pyx_L20_try_end; - __pyx_L13_error:; - __Pyx_XDECREF(__pyx_t_1); __pyx_t_1 = 0; - __Pyx_XDECREF(__pyx_t_13); __pyx_t_13 = 0; - __Pyx_XDECREF(__pyx_t_2); __pyx_t_2 = 0; - __Pyx_XDECREF(__pyx_t_3); __pyx_t_3 = 0; - - /* "pmercury/protocols/http.pyx":113 - * try: - * context.append({'name':http_ctx[t0_lower], 'data':h_.split(b'\x3a\x20',1)[1].decode()}) - * except UnicodeDecodeError: # <<<<<<<<<<<<<< - * context.append({'name':http_ctx[t0_lower], 'data':h_.split(b'\x3a\x20',1)[1].hex()}) - * else: - */ - __pyx_t_14 = __Pyx_PyErr_ExceptionMatches(__pyx_builtin_UnicodeDecodeError); - if (__pyx_t_14) { - __Pyx_AddTraceback("pmercury.protocols.http.HTTP.fingerprint", __pyx_clineno, __pyx_lineno, __pyx_filename); - if (__Pyx_GetException(&__pyx_t_3, &__pyx_t_1, &__pyx_t_13) < 0) __PYX_ERR(0, 113, __pyx_L15_except_error) - __Pyx_GOTREF(__pyx_t_3); - __Pyx_GOTREF(__pyx_t_1); - __Pyx_GOTREF(__pyx_t_13); - - /* "pmercury/protocols/http.pyx":114 - * context.append({'name':http_ctx[t0_lower], 'data':h_.split(b'\x3a\x20',1)[1].decode()}) - * except UnicodeDecodeError: - * context.append({'name':http_ctx[t0_lower], 'data':h_.split(b'\x3a\x20',1)[1].hex()}) # <<<<<<<<<<<<<< - * else: - * context.append({'name':http_ctx[t0_lower], 'data':''}) - */ - __pyx_t_2 = __Pyx_PyDict_NewPresized(2); if (unlikely(!__pyx_t_2)) __PYX_ERR(0, 114, __pyx_L15_except_error) - __Pyx_GOTREF(__pyx_t_2); - if (unlikely(__pyx_v_http_ctx == Py_None)) { - PyErr_SetString(PyExc_TypeError, "'NoneType' object is not subscriptable"); - __PYX_ERR(0, 114, __pyx_L15_except_error) - } - __pyx_t_15 = __Pyx_PyDict_GetItem(__pyx_v_http_ctx, __pyx_v_t0_lower); if (unlikely(!__pyx_t_15)) __PYX_ERR(0, 114, __pyx_L15_except_error) - __Pyx_GOTREF(__pyx_t_15); - if (PyDict_SetItem(__pyx_t_2, __pyx_n_u_name, __pyx_t_15) < 0) __PYX_ERR(0, 114, __pyx_L15_except_error) - __Pyx_DECREF(__pyx_t_15); __pyx_t_15 = 0; - __pyx_t_16 = __Pyx_PyObject_GetAttrStr(__pyx_v_h_, __pyx_n_s_split); if (unlikely(!__pyx_t_16)) __PYX_ERR(0, 114, __pyx_L15_except_error) - __Pyx_GOTREF(__pyx_t_16); - __pyx_t_17 = __Pyx_PyObject_Call(__pyx_t_16, __pyx_tuple__10, NULL); if (unlikely(!__pyx_t_17)) __PYX_ERR(0, 114, __pyx_L15_except_error) - __Pyx_GOTREF(__pyx_t_17); - __Pyx_DECREF(__pyx_t_16); __pyx_t_16 = 0; - __pyx_t_16 = __Pyx_GetItemInt(__pyx_t_17, 1, long, 1, __Pyx_PyInt_From_long, 0, 0, 1); if (unlikely(!__pyx_t_16)) __PYX_ERR(0, 114, __pyx_L15_except_error) - __Pyx_GOTREF(__pyx_t_16); - __Pyx_DECREF(__pyx_t_17); __pyx_t_17 = 0; - __pyx_t_17 = __Pyx_PyObject_GetAttrStr(__pyx_t_16, __pyx_n_s_hex); if (unlikely(!__pyx_t_17)) __PYX_ERR(0, 114, __pyx_L15_except_error) - __Pyx_GOTREF(__pyx_t_17); - __Pyx_DECREF(__pyx_t_16); __pyx_t_16 = 0; - __pyx_t_16 = NULL; - if (CYTHON_UNPACK_METHODS && likely(PyMethod_Check(__pyx_t_17))) { - __pyx_t_16 = PyMethod_GET_SELF(__pyx_t_17); - if (likely(__pyx_t_16)) { - PyObject* function = PyMethod_GET_FUNCTION(__pyx_t_17); - __Pyx_INCREF(__pyx_t_16); - __Pyx_INCREF(function); - __Pyx_DECREF_SET(__pyx_t_17, function); - } - } - __pyx_t_15 = (__pyx_t_16) ? __Pyx_PyObject_CallOneArg(__pyx_t_17, __pyx_t_16) : __Pyx_PyObject_CallNoArg(__pyx_t_17); - __Pyx_XDECREF(__pyx_t_16); __pyx_t_16 = 0; - if (unlikely(!__pyx_t_15)) __PYX_ERR(0, 114, __pyx_L15_except_error) - __Pyx_GOTREF(__pyx_t_15); - __Pyx_DECREF(__pyx_t_17); __pyx_t_17 = 0; - if (PyDict_SetItem(__pyx_t_2, __pyx_n_u_data, __pyx_t_15) < 0) __PYX_ERR(0, 114, __pyx_L15_except_error) - __Pyx_DECREF(__pyx_t_15); __pyx_t_15 = 0; - __pyx_t_8 = __Pyx_PyList_Append(__pyx_v_context, __pyx_t_2); if (unlikely(__pyx_t_8 == ((int)-1))) __PYX_ERR(0, 114, __pyx_L15_except_error) - __Pyx_DECREF(__pyx_t_2); __pyx_t_2 = 0; - __Pyx_XDECREF(__pyx_t_3); __pyx_t_3 = 0; - __Pyx_XDECREF(__pyx_t_1); __pyx_t_1 = 0; - __Pyx_XDECREF(__pyx_t_13); __pyx_t_13 = 0; - goto __pyx_L14_exception_handled; - } - goto __pyx_L15_except_error; - __pyx_L15_except_error:; - - /* "pmercury/protocols/http.pyx":111 - * if t0_lower in http_ctx: - * if b'\x3a\x20' in h_: - * try: # <<<<<<<<<<<<<< - * context.append({'name':http_ctx[t0_lower], 'data':h_.split(b'\x3a\x20',1)[1].decode()}) - * except UnicodeDecodeError: - */ - __Pyx_XGIVEREF(__pyx_t_10); - __Pyx_XGIVEREF(__pyx_t_11); - __Pyx_XGIVEREF(__pyx_t_12); - __Pyx_ExceptionReset(__pyx_t_10, __pyx_t_11, __pyx_t_12); - goto __pyx_L1_error; - __pyx_L14_exception_handled:; - __Pyx_XGIVEREF(__pyx_t_10); - __Pyx_XGIVEREF(__pyx_t_11); - __Pyx_XGIVEREF(__pyx_t_12); - __Pyx_ExceptionReset(__pyx_t_10, __pyx_t_11, __pyx_t_12); - __pyx_L20_try_end:; - } - - /* "pmercury/protocols/http.pyx":110 - * c.append('(%s)' % h_c) - * if t0_lower in http_ctx: - * if b'\x3a\x20' in h_: # <<<<<<<<<<<<<< - * try: - * context.append({'name':http_ctx[t0_lower], 'data':h_.split(b'\x3a\x20',1)[1].decode()}) - */ - goto __pyx_L12; - } - - /* "pmercury/protocols/http.pyx":116 - * context.append({'name':http_ctx[t0_lower], 'data':h_.split(b'\x3a\x20',1)[1].hex()}) - * else: - * context.append({'name':http_ctx[t0_lower], 'data':''}) # <<<<<<<<<<<<<< - * - * return ''.join(c), context - */ - /*else*/ { - __pyx_t_13 = __Pyx_PyDict_NewPresized(2); if (unlikely(!__pyx_t_13)) __PYX_ERR(0, 116, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_13); - if (unlikely(__pyx_v_http_ctx == Py_None)) { - PyErr_SetString(PyExc_TypeError, "'NoneType' object is not subscriptable"); - __PYX_ERR(0, 116, __pyx_L1_error) - } - __pyx_t_1 = __Pyx_PyDict_GetItem(__pyx_v_http_ctx, __pyx_v_t0_lower); if (unlikely(!__pyx_t_1)) __PYX_ERR(0, 116, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_1); - if (PyDict_SetItem(__pyx_t_13, __pyx_n_u_name, __pyx_t_1) < 0) __PYX_ERR(0, 116, __pyx_L1_error) - __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0; - if (PyDict_SetItem(__pyx_t_13, __pyx_n_u_data, __pyx_kp_u__8) < 0) __PYX_ERR(0, 116, __pyx_L1_error) - __pyx_t_8 = __Pyx_PyList_Append(__pyx_v_context, __pyx_t_13); if (unlikely(__pyx_t_8 == ((int)-1))) __PYX_ERR(0, 116, __pyx_L1_error) - __Pyx_DECREF(__pyx_t_13); __pyx_t_13 = 0; - } - __pyx_L12:; - - /* "pmercury/protocols/http.pyx":109 - * - * c.append('(%s)' % h_c) - * if t0_lower in http_ctx: # <<<<<<<<<<<<<< - * if b'\x3a\x20' in h_: - * try: - */ - } - - /* "pmercury/protocols/http.pyx":92 - * cdef bytes t0_lower - * context = [] - * for h_ in headers: # <<<<<<<<<<<<<< - * if h_ == b'': - * break - */ - } - __pyx_L8_break:; - __Pyx_DECREF(__pyx_t_7); __pyx_t_7 = 0; - - /* "pmercury/protocols/http.pyx":118 - * context.append({'name':http_ctx[t0_lower], 'data':''}) - * - * return ''.join(c), context # <<<<<<<<<<<<<< - * - * - */ - __Pyx_XDECREF(__pyx_r); - __pyx_t_7 = PyUnicode_Join(__pyx_kp_u__8, __pyx_v_c); if (unlikely(!__pyx_t_7)) __PYX_ERR(0, 118, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_7); - __pyx_t_13 = PyTuple_New(2); if (unlikely(!__pyx_t_13)) __PYX_ERR(0, 118, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_13); - __Pyx_GIVEREF(__pyx_t_7); - PyTuple_SET_ITEM(__pyx_t_13, 0, __pyx_t_7); - __Pyx_INCREF(__pyx_v_context); - __Pyx_GIVEREF(__pyx_v_context); - PyTuple_SET_ITEM(__pyx_t_13, 1, __pyx_v_context); - __pyx_t_7 = 0; - __pyx_r = __pyx_t_13; - __pyx_t_13 = 0; - goto __pyx_L0; - - /* "pmercury/protocols/http.pyx":71 - * - * @staticmethod - * def fingerprint(bytes data, unsigned int offset, unsigned int data_len): # <<<<<<<<<<<<<< - * cdef list t_ = data[offset:].split(b'\x0d\x0a', 1) - * cdef list request = t_[0].split() - */ - - /* function exit code */ - __pyx_L1_error:; - __Pyx_XDECREF(__pyx_t_1); - __Pyx_XDECREF(__pyx_t_2); - __Pyx_XDECREF(__pyx_t_3); - __Pyx_XDECREF(__pyx_t_7); - __Pyx_XDECREF(__pyx_t_13); - __Pyx_XDECREF(__pyx_t_15); - __Pyx_XDECREF(__pyx_t_16); - __Pyx_XDECREF(__pyx_t_17); - __Pyx_AddTraceback("pmercury.protocols.http.HTTP.fingerprint", __pyx_clineno, __pyx_lineno, __pyx_filename); - __pyx_r = NULL; - __pyx_L0:; - __Pyx_XDECREF(__pyx_v_t_); - __Pyx_XDECREF(__pyx_v_request); - __Pyx_XDECREF(__pyx_v_c); - __Pyx_XDECREF(__pyx_v_rh); - __Pyx_XDECREF(__pyx_v_http_cish); - __Pyx_XDECREF(__pyx_v_http_cssh); - __Pyx_XDECREF(__pyx_v_http_ctx); - __Pyx_XDECREF(__pyx_v_headers); - __Pyx_XDECREF(__pyx_v_t0_); - __Pyx_XDECREF(__pyx_v_t0_lower); - __Pyx_XDECREF(__pyx_v_context); - __Pyx_XDECREF(__pyx_v_h_); - __Pyx_XDECREF(__pyx_v_h_c); - __Pyx_XGIVEREF(__pyx_r); - __Pyx_RefNannyFinishContext(); - return __pyx_r; -} - -/* "pmercury/protocols/http.pyx":121 - * - * - * def get_human_readable(self, fp_str_): # <<<<<<<<<<<<<< - * t_ = [bytes.fromhex(x[1:]) for x in fp_str_.split(')')[:-1]] - * try: - */ - -/* Python wrapper */ -static PyObject *__pyx_pw_8pmercury_9protocols_4http_4HTTP_7get_human_readable(PyObject *__pyx_self, PyObject *__pyx_args, PyObject *__pyx_kwds); /*proto*/ -static PyMethodDef __pyx_mdef_8pmercury_9protocols_4http_4HTTP_7get_human_readable = {"get_human_readable", (PyCFunction)(void*)(PyCFunctionWithKeywords)__pyx_pw_8pmercury_9protocols_4http_4HTTP_7get_human_readable, METH_VARARGS|METH_KEYWORDS, 0}; -static PyObject *__pyx_pw_8pmercury_9protocols_4http_4HTTP_7get_human_readable(PyObject *__pyx_self, PyObject *__pyx_args, PyObject *__pyx_kwds) { - CYTHON_UNUSED PyObject *__pyx_v_self = 0; - PyObject *__pyx_v_fp_str_ = 0; - PyObject *__pyx_r = 0; - __Pyx_RefNannyDeclarations - __Pyx_RefNannySetupContext("get_human_readable (wrapper)", 0); - { - static PyObject **__pyx_pyargnames[] = {&__pyx_n_s_self,&__pyx_n_s_fp_str,0}; - PyObject* values[2] = {0,0}; - if (unlikely(__pyx_kwds)) { - Py_ssize_t kw_args; - const Py_ssize_t pos_args = PyTuple_GET_SIZE(__pyx_args); - switch (pos_args) { - case 2: values[1] = PyTuple_GET_ITEM(__pyx_args, 1); - CYTHON_FALLTHROUGH; - case 1: values[0] = PyTuple_GET_ITEM(__pyx_args, 0); - CYTHON_FALLTHROUGH; - case 0: break; - default: goto __pyx_L5_argtuple_error; - } - kw_args = PyDict_Size(__pyx_kwds); - switch (pos_args) { - case 0: - if (likely((values[0] = __Pyx_PyDict_GetItemStr(__pyx_kwds, __pyx_n_s_self)) != 0)) kw_args--; - else goto __pyx_L5_argtuple_error; - CYTHON_FALLTHROUGH; - case 1: - if (likely((values[1] = __Pyx_PyDict_GetItemStr(__pyx_kwds, __pyx_n_s_fp_str)) != 0)) kw_args--; - else { - __Pyx_RaiseArgtupleInvalid("get_human_readable", 1, 2, 2, 1); __PYX_ERR(0, 121, __pyx_L3_error) - } - } - if (unlikely(kw_args > 0)) { - if (unlikely(__Pyx_ParseOptionalKeywords(__pyx_kwds, __pyx_pyargnames, 0, values, pos_args, "get_human_readable") < 0)) __PYX_ERR(0, 121, __pyx_L3_error) - } - } else if (PyTuple_GET_SIZE(__pyx_args) != 2) { - goto __pyx_L5_argtuple_error; - } else { - values[0] = PyTuple_GET_ITEM(__pyx_args, 0); - values[1] = PyTuple_GET_ITEM(__pyx_args, 1); - } - __pyx_v_self = values[0]; - __pyx_v_fp_str_ = values[1]; - } - goto __pyx_L4_argument_unpacking_done; - __pyx_L5_argtuple_error:; - __Pyx_RaiseArgtupleInvalid("get_human_readable", 1, 2, 2, PyTuple_GET_SIZE(__pyx_args)); __PYX_ERR(0, 121, __pyx_L3_error) - __pyx_L3_error:; - __Pyx_AddTraceback("pmercury.protocols.http.HTTP.get_human_readable", __pyx_clineno, __pyx_lineno, __pyx_filename); - __Pyx_RefNannyFinishContext(); - return NULL; - __pyx_L4_argument_unpacking_done:; - __pyx_r = __pyx_pf_8pmercury_9protocols_4http_4HTTP_6get_human_readable(__pyx_self, __pyx_v_self, __pyx_v_fp_str_); - - /* function exit code */ - __Pyx_RefNannyFinishContext(); - return __pyx_r; -} - -static PyObject *__pyx_pf_8pmercury_9protocols_4http_4HTTP_6get_human_readable(CYTHON_UNUSED PyObject *__pyx_self, CYTHON_UNUSED PyObject *__pyx_v_self, PyObject *__pyx_v_fp_str_) { - PyObject *__pyx_v_t_ = NULL; - PyObject *__pyx_v_fp_h = NULL; - Py_ssize_t __pyx_v_i; - PyObject *__pyx_v_field = NULL; - PyObject *__pyx_7genexpr__pyx_v_x = NULL; - PyObject *__pyx_r = NULL; - __Pyx_RefNannyDeclarations - PyObject *__pyx_t_1 = NULL; - PyObject *__pyx_t_2 = NULL; - PyObject *__pyx_t_3 = NULL; - PyObject *__pyx_t_4 = NULL; - Py_ssize_t __pyx_t_5; - PyObject *(*__pyx_t_6)(PyObject *); - PyObject *__pyx_t_7 = NULL; - PyObject *__pyx_t_8 = NULL; - PyObject *__pyx_t_9 = NULL; - PyObject *__pyx_t_10 = NULL; - PyObject *__pyx_t_11 = NULL; - PyObject *__pyx_t_12 = NULL; - PyObject *__pyx_t_13 = NULL; - Py_ssize_t __pyx_t_14; - Py_ssize_t __pyx_t_15; - Py_ssize_t __pyx_t_16; - int __pyx_t_17; - int __pyx_t_18; - __Pyx_RefNannySetupContext("get_human_readable", 0); - - /* "pmercury/protocols/http.pyx":122 - * - * def get_human_readable(self, fp_str_): - * t_ = [bytes.fromhex(x[1:]) for x in fp_str_.split(')')[:-1]] # <<<<<<<<<<<<<< - * try: - * fp_h = [{'method':t_[0].decode()},{'version':t_[1].decode()}] - */ - { /* enter inner scope */ - __pyx_t_1 = PyList_New(0); if (unlikely(!__pyx_t_1)) __PYX_ERR(0, 122, __pyx_L5_error) - __Pyx_GOTREF(__pyx_t_1); - __pyx_t_3 = __Pyx_PyObject_GetAttrStr(__pyx_v_fp_str_, __pyx_n_s_split); if (unlikely(!__pyx_t_3)) __PYX_ERR(0, 122, __pyx_L5_error) - __Pyx_GOTREF(__pyx_t_3); - __pyx_t_4 = NULL; - if (CYTHON_UNPACK_METHODS && likely(PyMethod_Check(__pyx_t_3))) { - __pyx_t_4 = PyMethod_GET_SELF(__pyx_t_3); - if (likely(__pyx_t_4)) { - PyObject* function = PyMethod_GET_FUNCTION(__pyx_t_3); - __Pyx_INCREF(__pyx_t_4); - __Pyx_INCREF(function); - __Pyx_DECREF_SET(__pyx_t_3, function); - } - } - __pyx_t_2 = (__pyx_t_4) ? __Pyx_PyObject_Call2Args(__pyx_t_3, __pyx_t_4, __pyx_kp_u__11) : __Pyx_PyObject_CallOneArg(__pyx_t_3, __pyx_kp_u__11); - __Pyx_XDECREF(__pyx_t_4); __pyx_t_4 = 0; - if (unlikely(!__pyx_t_2)) __PYX_ERR(0, 122, __pyx_L5_error) - __Pyx_GOTREF(__pyx_t_2); - __Pyx_DECREF(__pyx_t_3); __pyx_t_3 = 0; - __pyx_t_3 = __Pyx_PyObject_GetSlice(__pyx_t_2, 0, -1L, NULL, NULL, &__pyx_slice__12, 0, 1, 1); if (unlikely(!__pyx_t_3)) __PYX_ERR(0, 122, __pyx_L5_error) - __Pyx_GOTREF(__pyx_t_3); - __Pyx_DECREF(__pyx_t_2); __pyx_t_2 = 0; - if (likely(PyList_CheckExact(__pyx_t_3)) || PyTuple_CheckExact(__pyx_t_3)) { - __pyx_t_2 = __pyx_t_3; __Pyx_INCREF(__pyx_t_2); __pyx_t_5 = 0; - __pyx_t_6 = NULL; - } else { - __pyx_t_5 = -1; __pyx_t_2 = PyObject_GetIter(__pyx_t_3); if (unlikely(!__pyx_t_2)) __PYX_ERR(0, 122, __pyx_L5_error) - __Pyx_GOTREF(__pyx_t_2); - __pyx_t_6 = Py_TYPE(__pyx_t_2)->tp_iternext; if (unlikely(!__pyx_t_6)) __PYX_ERR(0, 122, __pyx_L5_error) - } - __Pyx_DECREF(__pyx_t_3); __pyx_t_3 = 0; - for (;;) { - if (likely(!__pyx_t_6)) { - if (likely(PyList_CheckExact(__pyx_t_2))) { - if (__pyx_t_5 >= PyList_GET_SIZE(__pyx_t_2)) break; - #if CYTHON_ASSUME_SAFE_MACROS && !CYTHON_AVOID_BORROWED_REFS - __pyx_t_3 = PyList_GET_ITEM(__pyx_t_2, __pyx_t_5); __Pyx_INCREF(__pyx_t_3); __pyx_t_5++; if (unlikely(0 < 0)) __PYX_ERR(0, 122, __pyx_L5_error) - #else - __pyx_t_3 = PySequence_ITEM(__pyx_t_2, __pyx_t_5); __pyx_t_5++; if (unlikely(!__pyx_t_3)) __PYX_ERR(0, 122, __pyx_L5_error) - __Pyx_GOTREF(__pyx_t_3); - #endif - } else { - if (__pyx_t_5 >= PyTuple_GET_SIZE(__pyx_t_2)) break; - #if CYTHON_ASSUME_SAFE_MACROS && !CYTHON_AVOID_BORROWED_REFS - __pyx_t_3 = PyTuple_GET_ITEM(__pyx_t_2, __pyx_t_5); __Pyx_INCREF(__pyx_t_3); __pyx_t_5++; if (unlikely(0 < 0)) __PYX_ERR(0, 122, __pyx_L5_error) - #else - __pyx_t_3 = PySequence_ITEM(__pyx_t_2, __pyx_t_5); __pyx_t_5++; if (unlikely(!__pyx_t_3)) __PYX_ERR(0, 122, __pyx_L5_error) - __Pyx_GOTREF(__pyx_t_3); - #endif - } - } else { - __pyx_t_3 = __pyx_t_6(__pyx_t_2); - if (unlikely(!__pyx_t_3)) { - PyObject* exc_type = PyErr_Occurred(); - if (exc_type) { - if (likely(__Pyx_PyErr_GivenExceptionMatches(exc_type, PyExc_StopIteration))) PyErr_Clear(); - else __PYX_ERR(0, 122, __pyx_L5_error) - } - break; - } - __Pyx_GOTREF(__pyx_t_3); - } - __Pyx_XDECREF_SET(__pyx_7genexpr__pyx_v_x, __pyx_t_3); - __pyx_t_3 = 0; - __pyx_t_4 = __Pyx_PyObject_GetAttrStr(((PyObject *)(&PyBytes_Type)), __pyx_n_s_fromhex); if (unlikely(!__pyx_t_4)) __PYX_ERR(0, 122, __pyx_L5_error) - __Pyx_GOTREF(__pyx_t_4); - __pyx_t_7 = __Pyx_PyObject_GetSlice(__pyx_7genexpr__pyx_v_x, 1, 0, NULL, NULL, &__pyx_slice__13, 1, 0, 1); if (unlikely(!__pyx_t_7)) __PYX_ERR(0, 122, __pyx_L5_error) - __Pyx_GOTREF(__pyx_t_7); - __pyx_t_8 = NULL; - if (CYTHON_UNPACK_METHODS && likely(PyMethod_Check(__pyx_t_4))) { - __pyx_t_8 = PyMethod_GET_SELF(__pyx_t_4); - if (likely(__pyx_t_8)) { - PyObject* function = PyMethod_GET_FUNCTION(__pyx_t_4); - __Pyx_INCREF(__pyx_t_8); - __Pyx_INCREF(function); - __Pyx_DECREF_SET(__pyx_t_4, function); - } - } - __pyx_t_3 = (__pyx_t_8) ? __Pyx_PyObject_Call2Args(__pyx_t_4, __pyx_t_8, __pyx_t_7) : __Pyx_PyObject_CallOneArg(__pyx_t_4, __pyx_t_7); - __Pyx_XDECREF(__pyx_t_8); __pyx_t_8 = 0; - __Pyx_DECREF(__pyx_t_7); __pyx_t_7 = 0; - if (unlikely(!__pyx_t_3)) __PYX_ERR(0, 122, __pyx_L5_error) - __Pyx_GOTREF(__pyx_t_3); - __Pyx_DECREF(__pyx_t_4); __pyx_t_4 = 0; - if (unlikely(__Pyx_ListComp_Append(__pyx_t_1, (PyObject*)__pyx_t_3))) __PYX_ERR(0, 122, __pyx_L5_error) - __Pyx_DECREF(__pyx_t_3); __pyx_t_3 = 0; - } - __Pyx_DECREF(__pyx_t_2); __pyx_t_2 = 0; - __Pyx_XDECREF(__pyx_7genexpr__pyx_v_x); __pyx_7genexpr__pyx_v_x = 0; - goto __pyx_L8_exit_scope; - __pyx_L5_error:; - __Pyx_XDECREF(__pyx_7genexpr__pyx_v_x); __pyx_7genexpr__pyx_v_x = 0; - goto __pyx_L1_error; - __pyx_L8_exit_scope:; - } /* exit inner scope */ - __pyx_v_t_ = ((PyObject*)__pyx_t_1); - __pyx_t_1 = 0; - - /* "pmercury/protocols/http.pyx":123 - * def get_human_readable(self, fp_str_): - * t_ = [bytes.fromhex(x[1:]) for x in fp_str_.split(')')[:-1]] - * try: # <<<<<<<<<<<<<< - * fp_h = [{'method':t_[0].decode()},{'version':t_[1].decode()}] - * except: - */ - { - __Pyx_PyThreadState_declare - __Pyx_PyThreadState_assign - __Pyx_ExceptionSave(&__pyx_t_9, &__pyx_t_10, &__pyx_t_11); - __Pyx_XGOTREF(__pyx_t_9); - __Pyx_XGOTREF(__pyx_t_10); - __Pyx_XGOTREF(__pyx_t_11); - /*try:*/ { - - /* "pmercury/protocols/http.pyx":124 - * t_ = [bytes.fromhex(x[1:]) for x in fp_str_.split(')')[:-1]] - * try: - * fp_h = [{'method':t_[0].decode()},{'version':t_[1].decode()}] # <<<<<<<<<<<<<< - * except: - * fp_h = [{'method':t_[0].hex()},{'version':t_[1].hex()}] - */ - __pyx_t_1 = __Pyx_PyDict_NewPresized(1); if (unlikely(!__pyx_t_1)) __PYX_ERR(0, 124, __pyx_L9_error) - __Pyx_GOTREF(__pyx_t_1); - __pyx_t_3 = __Pyx_GetItemInt_List(__pyx_v_t_, 0, long, 1, __Pyx_PyInt_From_long, 1, 0, 1); if (unlikely(!__pyx_t_3)) __PYX_ERR(0, 124, __pyx_L9_error) - __Pyx_GOTREF(__pyx_t_3); - __pyx_t_4 = __Pyx_PyObject_GetAttrStr(__pyx_t_3, __pyx_n_s_decode); if (unlikely(!__pyx_t_4)) __PYX_ERR(0, 124, __pyx_L9_error) - __Pyx_GOTREF(__pyx_t_4); - __Pyx_DECREF(__pyx_t_3); __pyx_t_3 = 0; - __pyx_t_3 = NULL; - if (CYTHON_UNPACK_METHODS && likely(PyMethod_Check(__pyx_t_4))) { - __pyx_t_3 = PyMethod_GET_SELF(__pyx_t_4); - if (likely(__pyx_t_3)) { - PyObject* function = PyMethod_GET_FUNCTION(__pyx_t_4); - __Pyx_INCREF(__pyx_t_3); - __Pyx_INCREF(function); - __Pyx_DECREF_SET(__pyx_t_4, function); - } - } - __pyx_t_2 = (__pyx_t_3) ? __Pyx_PyObject_CallOneArg(__pyx_t_4, __pyx_t_3) : __Pyx_PyObject_CallNoArg(__pyx_t_4); - __Pyx_XDECREF(__pyx_t_3); __pyx_t_3 = 0; - if (unlikely(!__pyx_t_2)) __PYX_ERR(0, 124, __pyx_L9_error) - __Pyx_GOTREF(__pyx_t_2); - __Pyx_DECREF(__pyx_t_4); __pyx_t_4 = 0; - if (PyDict_SetItem(__pyx_t_1, __pyx_n_u_method, __pyx_t_2) < 0) __PYX_ERR(0, 124, __pyx_L9_error) - __Pyx_DECREF(__pyx_t_2); __pyx_t_2 = 0; - __pyx_t_2 = __Pyx_PyDict_NewPresized(1); if (unlikely(!__pyx_t_2)) __PYX_ERR(0, 124, __pyx_L9_error) - __Pyx_GOTREF(__pyx_t_2); - __pyx_t_3 = __Pyx_GetItemInt_List(__pyx_v_t_, 1, long, 1, __Pyx_PyInt_From_long, 1, 0, 1); if (unlikely(!__pyx_t_3)) __PYX_ERR(0, 124, __pyx_L9_error) - __Pyx_GOTREF(__pyx_t_3); - __pyx_t_7 = __Pyx_PyObject_GetAttrStr(__pyx_t_3, __pyx_n_s_decode); if (unlikely(!__pyx_t_7)) __PYX_ERR(0, 124, __pyx_L9_error) - __Pyx_GOTREF(__pyx_t_7); - __Pyx_DECREF(__pyx_t_3); __pyx_t_3 = 0; - __pyx_t_3 = NULL; - if (CYTHON_UNPACK_METHODS && likely(PyMethod_Check(__pyx_t_7))) { - __pyx_t_3 = PyMethod_GET_SELF(__pyx_t_7); - if (likely(__pyx_t_3)) { - PyObject* function = PyMethod_GET_FUNCTION(__pyx_t_7); - __Pyx_INCREF(__pyx_t_3); - __Pyx_INCREF(function); - __Pyx_DECREF_SET(__pyx_t_7, function); - } - } - __pyx_t_4 = (__pyx_t_3) ? __Pyx_PyObject_CallOneArg(__pyx_t_7, __pyx_t_3) : __Pyx_PyObject_CallNoArg(__pyx_t_7); - __Pyx_XDECREF(__pyx_t_3); __pyx_t_3 = 0; - if (unlikely(!__pyx_t_4)) __PYX_ERR(0, 124, __pyx_L9_error) - __Pyx_GOTREF(__pyx_t_4); - __Pyx_DECREF(__pyx_t_7); __pyx_t_7 = 0; - if (PyDict_SetItem(__pyx_t_2, __pyx_n_u_version, __pyx_t_4) < 0) __PYX_ERR(0, 124, __pyx_L9_error) - __Pyx_DECREF(__pyx_t_4); __pyx_t_4 = 0; - __pyx_t_4 = PyList_New(2); if (unlikely(!__pyx_t_4)) __PYX_ERR(0, 124, __pyx_L9_error) - __Pyx_GOTREF(__pyx_t_4); - __Pyx_GIVEREF(__pyx_t_1); - PyList_SET_ITEM(__pyx_t_4, 0, __pyx_t_1); - __Pyx_GIVEREF(__pyx_t_2); - PyList_SET_ITEM(__pyx_t_4, 1, __pyx_t_2); - __pyx_t_1 = 0; - __pyx_t_2 = 0; - __pyx_v_fp_h = ((PyObject*)__pyx_t_4); - __pyx_t_4 = 0; - - /* "pmercury/protocols/http.pyx":123 - * def get_human_readable(self, fp_str_): - * t_ = [bytes.fromhex(x[1:]) for x in fp_str_.split(')')[:-1]] - * try: # <<<<<<<<<<<<<< - * fp_h = [{'method':t_[0].decode()},{'version':t_[1].decode()}] - * except: - */ - } - __Pyx_XDECREF(__pyx_t_9); __pyx_t_9 = 0; - __Pyx_XDECREF(__pyx_t_10); __pyx_t_10 = 0; - __Pyx_XDECREF(__pyx_t_11); __pyx_t_11 = 0; - goto __pyx_L14_try_end; - __pyx_L9_error:; - __Pyx_XDECREF(__pyx_t_1); __pyx_t_1 = 0; - __Pyx_XDECREF(__pyx_t_2); __pyx_t_2 = 0; - __Pyx_XDECREF(__pyx_t_3); __pyx_t_3 = 0; - __Pyx_XDECREF(__pyx_t_4); __pyx_t_4 = 0; - __Pyx_XDECREF(__pyx_t_7); __pyx_t_7 = 0; - __Pyx_XDECREF(__pyx_t_8); __pyx_t_8 = 0; - - /* "pmercury/protocols/http.pyx":125 - * try: - * fp_h = [{'method':t_[0].decode()},{'version':t_[1].decode()}] - * except: # <<<<<<<<<<<<<< - * fp_h = [{'method':t_[0].hex()},{'version':t_[1].hex()}] - * for i in range(2, len(t_)-1): - */ - /*except:*/ { - __Pyx_AddTraceback("pmercury.protocols.http.HTTP.get_human_readable", __pyx_clineno, __pyx_lineno, __pyx_filename); - if (__Pyx_GetException(&__pyx_t_4, &__pyx_t_2, &__pyx_t_1) < 0) __PYX_ERR(0, 125, __pyx_L11_except_error) - __Pyx_GOTREF(__pyx_t_4); - __Pyx_GOTREF(__pyx_t_2); - __Pyx_GOTREF(__pyx_t_1); - - /* "pmercury/protocols/http.pyx":126 - * fp_h = [{'method':t_[0].decode()},{'version':t_[1].decode()}] - * except: - * fp_h = [{'method':t_[0].hex()},{'version':t_[1].hex()}] # <<<<<<<<<<<<<< - * for i in range(2, len(t_)-1): - * field = t_[i].split(b': ',1) - */ - __pyx_t_7 = __Pyx_PyDict_NewPresized(1); if (unlikely(!__pyx_t_7)) __PYX_ERR(0, 126, __pyx_L11_except_error) - __Pyx_GOTREF(__pyx_t_7); - __pyx_t_8 = __Pyx_GetItemInt_List(__pyx_v_t_, 0, long, 1, __Pyx_PyInt_From_long, 1, 0, 1); if (unlikely(!__pyx_t_8)) __PYX_ERR(0, 126, __pyx_L11_except_error) - __Pyx_GOTREF(__pyx_t_8); - __pyx_t_12 = __Pyx_PyObject_GetAttrStr(__pyx_t_8, __pyx_n_s_hex); if (unlikely(!__pyx_t_12)) __PYX_ERR(0, 126, __pyx_L11_except_error) - __Pyx_GOTREF(__pyx_t_12); - __Pyx_DECREF(__pyx_t_8); __pyx_t_8 = 0; - __pyx_t_8 = NULL; - if (CYTHON_UNPACK_METHODS && likely(PyMethod_Check(__pyx_t_12))) { - __pyx_t_8 = PyMethod_GET_SELF(__pyx_t_12); - if (likely(__pyx_t_8)) { - PyObject* function = PyMethod_GET_FUNCTION(__pyx_t_12); - __Pyx_INCREF(__pyx_t_8); - __Pyx_INCREF(function); - __Pyx_DECREF_SET(__pyx_t_12, function); - } - } - __pyx_t_3 = (__pyx_t_8) ? __Pyx_PyObject_CallOneArg(__pyx_t_12, __pyx_t_8) : __Pyx_PyObject_CallNoArg(__pyx_t_12); - __Pyx_XDECREF(__pyx_t_8); __pyx_t_8 = 0; - if (unlikely(!__pyx_t_3)) __PYX_ERR(0, 126, __pyx_L11_except_error) - __Pyx_GOTREF(__pyx_t_3); - __Pyx_DECREF(__pyx_t_12); __pyx_t_12 = 0; - if (PyDict_SetItem(__pyx_t_7, __pyx_n_u_method, __pyx_t_3) < 0) __PYX_ERR(0, 126, __pyx_L11_except_error) - __Pyx_DECREF(__pyx_t_3); __pyx_t_3 = 0; - __pyx_t_3 = __Pyx_PyDict_NewPresized(1); if (unlikely(!__pyx_t_3)) __PYX_ERR(0, 126, __pyx_L11_except_error) - __Pyx_GOTREF(__pyx_t_3); - __pyx_t_8 = __Pyx_GetItemInt_List(__pyx_v_t_, 1, long, 1, __Pyx_PyInt_From_long, 1, 0, 1); if (unlikely(!__pyx_t_8)) __PYX_ERR(0, 126, __pyx_L11_except_error) - __Pyx_GOTREF(__pyx_t_8); - __pyx_t_13 = __Pyx_PyObject_GetAttrStr(__pyx_t_8, __pyx_n_s_hex); if (unlikely(!__pyx_t_13)) __PYX_ERR(0, 126, __pyx_L11_except_error) - __Pyx_GOTREF(__pyx_t_13); - __Pyx_DECREF(__pyx_t_8); __pyx_t_8 = 0; - __pyx_t_8 = NULL; - if (CYTHON_UNPACK_METHODS && likely(PyMethod_Check(__pyx_t_13))) { - __pyx_t_8 = PyMethod_GET_SELF(__pyx_t_13); - if (likely(__pyx_t_8)) { - PyObject* function = PyMethod_GET_FUNCTION(__pyx_t_13); - __Pyx_INCREF(__pyx_t_8); - __Pyx_INCREF(function); - __Pyx_DECREF_SET(__pyx_t_13, function); - } - } - __pyx_t_12 = (__pyx_t_8) ? __Pyx_PyObject_CallOneArg(__pyx_t_13, __pyx_t_8) : __Pyx_PyObject_CallNoArg(__pyx_t_13); - __Pyx_XDECREF(__pyx_t_8); __pyx_t_8 = 0; - if (unlikely(!__pyx_t_12)) __PYX_ERR(0, 126, __pyx_L11_except_error) - __Pyx_GOTREF(__pyx_t_12); - __Pyx_DECREF(__pyx_t_13); __pyx_t_13 = 0; - if (PyDict_SetItem(__pyx_t_3, __pyx_n_u_version, __pyx_t_12) < 0) __PYX_ERR(0, 126, __pyx_L11_except_error) - __Pyx_DECREF(__pyx_t_12); __pyx_t_12 = 0; - __pyx_t_12 = PyList_New(2); if (unlikely(!__pyx_t_12)) __PYX_ERR(0, 126, __pyx_L11_except_error) - __Pyx_GOTREF(__pyx_t_12); - __Pyx_GIVEREF(__pyx_t_7); - PyList_SET_ITEM(__pyx_t_12, 0, __pyx_t_7); - __Pyx_GIVEREF(__pyx_t_3); - PyList_SET_ITEM(__pyx_t_12, 1, __pyx_t_3); - __pyx_t_7 = 0; - __pyx_t_3 = 0; - __Pyx_XDECREF_SET(__pyx_v_fp_h, ((PyObject*)__pyx_t_12)); - __pyx_t_12 = 0; - __Pyx_XDECREF(__pyx_t_4); __pyx_t_4 = 0; - __Pyx_XDECREF(__pyx_t_2); __pyx_t_2 = 0; - __Pyx_XDECREF(__pyx_t_1); __pyx_t_1 = 0; - goto __pyx_L10_exception_handled; - } - __pyx_L11_except_error:; - - /* "pmercury/protocols/http.pyx":123 - * def get_human_readable(self, fp_str_): - * t_ = [bytes.fromhex(x[1:]) for x in fp_str_.split(')')[:-1]] - * try: # <<<<<<<<<<<<<< - * fp_h = [{'method':t_[0].decode()},{'version':t_[1].decode()}] - * except: - */ - __Pyx_XGIVEREF(__pyx_t_9); - __Pyx_XGIVEREF(__pyx_t_10); - __Pyx_XGIVEREF(__pyx_t_11); - __Pyx_ExceptionReset(__pyx_t_9, __pyx_t_10, __pyx_t_11); - goto __pyx_L1_error; - __pyx_L10_exception_handled:; - __Pyx_XGIVEREF(__pyx_t_9); - __Pyx_XGIVEREF(__pyx_t_10); - __Pyx_XGIVEREF(__pyx_t_11); - __Pyx_ExceptionReset(__pyx_t_9, __pyx_t_10, __pyx_t_11); - __pyx_L14_try_end:; - } - - /* "pmercury/protocols/http.pyx":127 - * except: - * fp_h = [{'method':t_[0].hex()},{'version':t_[1].hex()}] - * for i in range(2, len(t_)-1): # <<<<<<<<<<<<<< - * field = t_[i].split(b': ',1) - * if len(field) == 2: - */ - __pyx_t_5 = PyList_GET_SIZE(__pyx_v_t_); if (unlikely(__pyx_t_5 == ((Py_ssize_t)-1))) __PYX_ERR(0, 127, __pyx_L1_error) - __pyx_t_14 = (__pyx_t_5 - 1); - __pyx_t_5 = __pyx_t_14; - for (__pyx_t_15 = 2; __pyx_t_15 < __pyx_t_5; __pyx_t_15+=1) { - __pyx_v_i = __pyx_t_15; - - /* "pmercury/protocols/http.pyx":128 - * fp_h = [{'method':t_[0].hex()},{'version':t_[1].hex()}] - * for i in range(2, len(t_)-1): - * field = t_[i].split(b': ',1) # <<<<<<<<<<<<<< - * if len(field) == 2: - * try: - */ - __pyx_t_1 = __Pyx_GetItemInt_List(__pyx_v_t_, __pyx_v_i, Py_ssize_t, 1, PyInt_FromSsize_t, 1, 1, 1); if (unlikely(!__pyx_t_1)) __PYX_ERR(0, 128, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_1); - __pyx_t_2 = __Pyx_PyObject_GetAttrStr(__pyx_t_1, __pyx_n_s_split); if (unlikely(!__pyx_t_2)) __PYX_ERR(0, 128, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_2); - __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0; - __pyx_t_1 = __Pyx_PyObject_Call(__pyx_t_2, __pyx_tuple__10, NULL); if (unlikely(!__pyx_t_1)) __PYX_ERR(0, 128, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_1); - __Pyx_DECREF(__pyx_t_2); __pyx_t_2 = 0; - __Pyx_XDECREF_SET(__pyx_v_field, __pyx_t_1); - __pyx_t_1 = 0; - - /* "pmercury/protocols/http.pyx":129 - * for i in range(2, len(t_)-1): - * field = t_[i].split(b': ',1) - * if len(field) == 2: # <<<<<<<<<<<<<< - * try: - * fp_h.append({field[0].decode(): field[1].decode()}) - */ - __pyx_t_16 = PyObject_Length(__pyx_v_field); if (unlikely(__pyx_t_16 == ((Py_ssize_t)-1))) __PYX_ERR(0, 129, __pyx_L1_error) - __pyx_t_17 = ((__pyx_t_16 == 2) != 0); - if (__pyx_t_17) { - - /* "pmercury/protocols/http.pyx":130 - * field = t_[i].split(b': ',1) - * if len(field) == 2: - * try: # <<<<<<<<<<<<<< - * fp_h.append({field[0].decode(): field[1].decode()}) - * except: - */ - { - __Pyx_PyThreadState_declare - __Pyx_PyThreadState_assign - __Pyx_ExceptionSave(&__pyx_t_11, &__pyx_t_10, &__pyx_t_9); - __Pyx_XGOTREF(__pyx_t_11); - __Pyx_XGOTREF(__pyx_t_10); - __Pyx_XGOTREF(__pyx_t_9); - /*try:*/ { - - /* "pmercury/protocols/http.pyx":131 - * if len(field) == 2: - * try: - * fp_h.append({field[0].decode(): field[1].decode()}) # <<<<<<<<<<<<<< - * except: - * fp_h.append({field[0].hex(): field[1].hex()}) - */ - __pyx_t_1 = __Pyx_PyDict_NewPresized(1); if (unlikely(!__pyx_t_1)) __PYX_ERR(0, 131, __pyx_L20_error) - __Pyx_GOTREF(__pyx_t_1); - __pyx_t_4 = __Pyx_GetItemInt(__pyx_v_field, 0, long, 1, __Pyx_PyInt_From_long, 0, 0, 1); if (unlikely(!__pyx_t_4)) __PYX_ERR(0, 131, __pyx_L20_error) - __Pyx_GOTREF(__pyx_t_4); - __pyx_t_12 = __Pyx_PyObject_GetAttrStr(__pyx_t_4, __pyx_n_s_decode); if (unlikely(!__pyx_t_12)) __PYX_ERR(0, 131, __pyx_L20_error) - __Pyx_GOTREF(__pyx_t_12); - __Pyx_DECREF(__pyx_t_4); __pyx_t_4 = 0; - __pyx_t_4 = NULL; - if (CYTHON_UNPACK_METHODS && likely(PyMethod_Check(__pyx_t_12))) { - __pyx_t_4 = PyMethod_GET_SELF(__pyx_t_12); - if (likely(__pyx_t_4)) { - PyObject* function = PyMethod_GET_FUNCTION(__pyx_t_12); - __Pyx_INCREF(__pyx_t_4); - __Pyx_INCREF(function); - __Pyx_DECREF_SET(__pyx_t_12, function); - } - } - __pyx_t_2 = (__pyx_t_4) ? __Pyx_PyObject_CallOneArg(__pyx_t_12, __pyx_t_4) : __Pyx_PyObject_CallNoArg(__pyx_t_12); - __Pyx_XDECREF(__pyx_t_4); __pyx_t_4 = 0; - if (unlikely(!__pyx_t_2)) __PYX_ERR(0, 131, __pyx_L20_error) - __Pyx_GOTREF(__pyx_t_2); - __Pyx_DECREF(__pyx_t_12); __pyx_t_12 = 0; - __pyx_t_4 = __Pyx_GetItemInt(__pyx_v_field, 1, long, 1, __Pyx_PyInt_From_long, 0, 0, 1); if (unlikely(!__pyx_t_4)) __PYX_ERR(0, 131, __pyx_L20_error) - __Pyx_GOTREF(__pyx_t_4); - __pyx_t_3 = __Pyx_PyObject_GetAttrStr(__pyx_t_4, __pyx_n_s_decode); if (unlikely(!__pyx_t_3)) __PYX_ERR(0, 131, __pyx_L20_error) - __Pyx_GOTREF(__pyx_t_3); - __Pyx_DECREF(__pyx_t_4); __pyx_t_4 = 0; - __pyx_t_4 = NULL; - if (CYTHON_UNPACK_METHODS && likely(PyMethod_Check(__pyx_t_3))) { - __pyx_t_4 = PyMethod_GET_SELF(__pyx_t_3); - if (likely(__pyx_t_4)) { - PyObject* function = PyMethod_GET_FUNCTION(__pyx_t_3); - __Pyx_INCREF(__pyx_t_4); - __Pyx_INCREF(function); - __Pyx_DECREF_SET(__pyx_t_3, function); - } - } - __pyx_t_12 = (__pyx_t_4) ? __Pyx_PyObject_CallOneArg(__pyx_t_3, __pyx_t_4) : __Pyx_PyObject_CallNoArg(__pyx_t_3); - __Pyx_XDECREF(__pyx_t_4); __pyx_t_4 = 0; - if (unlikely(!__pyx_t_12)) __PYX_ERR(0, 131, __pyx_L20_error) - __Pyx_GOTREF(__pyx_t_12); - __Pyx_DECREF(__pyx_t_3); __pyx_t_3 = 0; - if (PyDict_SetItem(__pyx_t_1, __pyx_t_2, __pyx_t_12) < 0) __PYX_ERR(0, 131, __pyx_L20_error) - __Pyx_DECREF(__pyx_t_2); __pyx_t_2 = 0; - __Pyx_DECREF(__pyx_t_12); __pyx_t_12 = 0; - __pyx_t_18 = __Pyx_PyList_Append(__pyx_v_fp_h, __pyx_t_1); if (unlikely(__pyx_t_18 == ((int)-1))) __PYX_ERR(0, 131, __pyx_L20_error) - __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0; - - /* "pmercury/protocols/http.pyx":130 - * field = t_[i].split(b': ',1) - * if len(field) == 2: - * try: # <<<<<<<<<<<<<< - * fp_h.append({field[0].decode(): field[1].decode()}) - * except: - */ - } - __Pyx_XDECREF(__pyx_t_11); __pyx_t_11 = 0; - __Pyx_XDECREF(__pyx_t_10); __pyx_t_10 = 0; - __Pyx_XDECREF(__pyx_t_9); __pyx_t_9 = 0; - goto __pyx_L27_try_end; - __pyx_L20_error:; - __Pyx_XDECREF(__pyx_t_1); __pyx_t_1 = 0; - __Pyx_XDECREF(__pyx_t_12); __pyx_t_12 = 0; - __Pyx_XDECREF(__pyx_t_13); __pyx_t_13 = 0; - __Pyx_XDECREF(__pyx_t_2); __pyx_t_2 = 0; - __Pyx_XDECREF(__pyx_t_3); __pyx_t_3 = 0; - __Pyx_XDECREF(__pyx_t_4); __pyx_t_4 = 0; - __Pyx_XDECREF(__pyx_t_7); __pyx_t_7 = 0; - __Pyx_XDECREF(__pyx_t_8); __pyx_t_8 = 0; - - /* "pmercury/protocols/http.pyx":132 - * try: - * fp_h.append({field[0].decode(): field[1].decode()}) - * except: # <<<<<<<<<<<<<< - * fp_h.append({field[0].hex(): field[1].hex()}) - * else: - */ - /*except:*/ { - __Pyx_AddTraceback("pmercury.protocols.http.HTTP.get_human_readable", __pyx_clineno, __pyx_lineno, __pyx_filename); - if (__Pyx_GetException(&__pyx_t_1, &__pyx_t_12, &__pyx_t_2) < 0) __PYX_ERR(0, 132, __pyx_L22_except_error) - __Pyx_GOTREF(__pyx_t_1); - __Pyx_GOTREF(__pyx_t_12); - __Pyx_GOTREF(__pyx_t_2); - - /* "pmercury/protocols/http.pyx":133 - * fp_h.append({field[0].decode(): field[1].decode()}) - * except: - * fp_h.append({field[0].hex(): field[1].hex()}) # <<<<<<<<<<<<<< - * else: - * try: - */ - __pyx_t_3 = __Pyx_PyDict_NewPresized(1); if (unlikely(!__pyx_t_3)) __PYX_ERR(0, 133, __pyx_L22_except_error) - __Pyx_GOTREF(__pyx_t_3); - __pyx_t_7 = __Pyx_GetItemInt(__pyx_v_field, 0, long, 1, __Pyx_PyInt_From_long, 0, 0, 1); if (unlikely(!__pyx_t_7)) __PYX_ERR(0, 133, __pyx_L22_except_error) - __Pyx_GOTREF(__pyx_t_7); - __pyx_t_13 = __Pyx_PyObject_GetAttrStr(__pyx_t_7, __pyx_n_s_hex); if (unlikely(!__pyx_t_13)) __PYX_ERR(0, 133, __pyx_L22_except_error) - __Pyx_GOTREF(__pyx_t_13); - __Pyx_DECREF(__pyx_t_7); __pyx_t_7 = 0; - __pyx_t_7 = NULL; - if (CYTHON_UNPACK_METHODS && likely(PyMethod_Check(__pyx_t_13))) { - __pyx_t_7 = PyMethod_GET_SELF(__pyx_t_13); - if (likely(__pyx_t_7)) { - PyObject* function = PyMethod_GET_FUNCTION(__pyx_t_13); - __Pyx_INCREF(__pyx_t_7); - __Pyx_INCREF(function); - __Pyx_DECREF_SET(__pyx_t_13, function); - } - } - __pyx_t_4 = (__pyx_t_7) ? __Pyx_PyObject_CallOneArg(__pyx_t_13, __pyx_t_7) : __Pyx_PyObject_CallNoArg(__pyx_t_13); - __Pyx_XDECREF(__pyx_t_7); __pyx_t_7 = 0; - if (unlikely(!__pyx_t_4)) __PYX_ERR(0, 133, __pyx_L22_except_error) - __Pyx_GOTREF(__pyx_t_4); - __Pyx_DECREF(__pyx_t_13); __pyx_t_13 = 0; - __pyx_t_7 = __Pyx_GetItemInt(__pyx_v_field, 1, long, 1, __Pyx_PyInt_From_long, 0, 0, 1); if (unlikely(!__pyx_t_7)) __PYX_ERR(0, 133, __pyx_L22_except_error) - __Pyx_GOTREF(__pyx_t_7); - __pyx_t_8 = __Pyx_PyObject_GetAttrStr(__pyx_t_7, __pyx_n_s_hex); if (unlikely(!__pyx_t_8)) __PYX_ERR(0, 133, __pyx_L22_except_error) - __Pyx_GOTREF(__pyx_t_8); - __Pyx_DECREF(__pyx_t_7); __pyx_t_7 = 0; - __pyx_t_7 = NULL; - if (CYTHON_UNPACK_METHODS && likely(PyMethod_Check(__pyx_t_8))) { - __pyx_t_7 = PyMethod_GET_SELF(__pyx_t_8); - if (likely(__pyx_t_7)) { - PyObject* function = PyMethod_GET_FUNCTION(__pyx_t_8); - __Pyx_INCREF(__pyx_t_7); - __Pyx_INCREF(function); - __Pyx_DECREF_SET(__pyx_t_8, function); - } - } - __pyx_t_13 = (__pyx_t_7) ? __Pyx_PyObject_CallOneArg(__pyx_t_8, __pyx_t_7) : __Pyx_PyObject_CallNoArg(__pyx_t_8); - __Pyx_XDECREF(__pyx_t_7); __pyx_t_7 = 0; - if (unlikely(!__pyx_t_13)) __PYX_ERR(0, 133, __pyx_L22_except_error) - __Pyx_GOTREF(__pyx_t_13); - __Pyx_DECREF(__pyx_t_8); __pyx_t_8 = 0; - if (PyDict_SetItem(__pyx_t_3, __pyx_t_4, __pyx_t_13) < 0) __PYX_ERR(0, 133, __pyx_L22_except_error) - __Pyx_DECREF(__pyx_t_4); __pyx_t_4 = 0; - __Pyx_DECREF(__pyx_t_13); __pyx_t_13 = 0; - __pyx_t_18 = __Pyx_PyList_Append(__pyx_v_fp_h, __pyx_t_3); if (unlikely(__pyx_t_18 == ((int)-1))) __PYX_ERR(0, 133, __pyx_L22_except_error) - __Pyx_DECREF(__pyx_t_3); __pyx_t_3 = 0; - __Pyx_XDECREF(__pyx_t_1); __pyx_t_1 = 0; - __Pyx_XDECREF(__pyx_t_12); __pyx_t_12 = 0; - __Pyx_XDECREF(__pyx_t_2); __pyx_t_2 = 0; - goto __pyx_L21_exception_handled; - } - __pyx_L22_except_error:; - - /* "pmercury/protocols/http.pyx":130 - * field = t_[i].split(b': ',1) - * if len(field) == 2: - * try: # <<<<<<<<<<<<<< - * fp_h.append({field[0].decode(): field[1].decode()}) - * except: - */ - __Pyx_XGIVEREF(__pyx_t_11); - __Pyx_XGIVEREF(__pyx_t_10); - __Pyx_XGIVEREF(__pyx_t_9); - __Pyx_ExceptionReset(__pyx_t_11, __pyx_t_10, __pyx_t_9); - goto __pyx_L1_error; - __pyx_L21_exception_handled:; - __Pyx_XGIVEREF(__pyx_t_11); - __Pyx_XGIVEREF(__pyx_t_10); - __Pyx_XGIVEREF(__pyx_t_9); - __Pyx_ExceptionReset(__pyx_t_11, __pyx_t_10, __pyx_t_9); - __pyx_L27_try_end:; - } - - /* "pmercury/protocols/http.pyx":129 - * for i in range(2, len(t_)-1): - * field = t_[i].split(b': ',1) - * if len(field) == 2: # <<<<<<<<<<<<<< - * try: - * fp_h.append({field[0].decode(): field[1].decode()}) - */ - goto __pyx_L19; - } - - /* "pmercury/protocols/http.pyx":135 - * fp_h.append({field[0].hex(): field[1].hex()}) - * else: - * try: # <<<<<<<<<<<<<< - * fp_h.append({field[0].decode(): ''}) - * except: - */ - /*else*/ { - { - __Pyx_PyThreadState_declare - __Pyx_PyThreadState_assign - __Pyx_ExceptionSave(&__pyx_t_9, &__pyx_t_10, &__pyx_t_11); - __Pyx_XGOTREF(__pyx_t_9); - __Pyx_XGOTREF(__pyx_t_10); - __Pyx_XGOTREF(__pyx_t_11); - /*try:*/ { - - /* "pmercury/protocols/http.pyx":136 - * else: - * try: - * fp_h.append({field[0].decode(): ''}) # <<<<<<<<<<<<<< - * except: - * fp_h.append({field[0].hex(): ''}) - */ - __pyx_t_2 = __Pyx_PyDict_NewPresized(1); if (unlikely(!__pyx_t_2)) __PYX_ERR(0, 136, __pyx_L30_error) - __Pyx_GOTREF(__pyx_t_2); - __pyx_t_1 = __Pyx_GetItemInt(__pyx_v_field, 0, long, 1, __Pyx_PyInt_From_long, 0, 0, 1); if (unlikely(!__pyx_t_1)) __PYX_ERR(0, 136, __pyx_L30_error) - __Pyx_GOTREF(__pyx_t_1); - __pyx_t_3 = __Pyx_PyObject_GetAttrStr(__pyx_t_1, __pyx_n_s_decode); if (unlikely(!__pyx_t_3)) __PYX_ERR(0, 136, __pyx_L30_error) - __Pyx_GOTREF(__pyx_t_3); - __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0; - __pyx_t_1 = NULL; - if (CYTHON_UNPACK_METHODS && likely(PyMethod_Check(__pyx_t_3))) { - __pyx_t_1 = PyMethod_GET_SELF(__pyx_t_3); - if (likely(__pyx_t_1)) { - PyObject* function = PyMethod_GET_FUNCTION(__pyx_t_3); - __Pyx_INCREF(__pyx_t_1); - __Pyx_INCREF(function); - __Pyx_DECREF_SET(__pyx_t_3, function); - } - } - __pyx_t_12 = (__pyx_t_1) ? __Pyx_PyObject_CallOneArg(__pyx_t_3, __pyx_t_1) : __Pyx_PyObject_CallNoArg(__pyx_t_3); - __Pyx_XDECREF(__pyx_t_1); __pyx_t_1 = 0; - if (unlikely(!__pyx_t_12)) __PYX_ERR(0, 136, __pyx_L30_error) - __Pyx_GOTREF(__pyx_t_12); - __Pyx_DECREF(__pyx_t_3); __pyx_t_3 = 0; - if (PyDict_SetItem(__pyx_t_2, __pyx_t_12, __pyx_kp_u__8) < 0) __PYX_ERR(0, 136, __pyx_L30_error) - __Pyx_DECREF(__pyx_t_12); __pyx_t_12 = 0; - __pyx_t_18 = __Pyx_PyList_Append(__pyx_v_fp_h, __pyx_t_2); if (unlikely(__pyx_t_18 == ((int)-1))) __PYX_ERR(0, 136, __pyx_L30_error) - __Pyx_DECREF(__pyx_t_2); __pyx_t_2 = 0; - - /* "pmercury/protocols/http.pyx":135 - * fp_h.append({field[0].hex(): field[1].hex()}) - * else: - * try: # <<<<<<<<<<<<<< - * fp_h.append({field[0].decode(): ''}) - * except: - */ - } - __Pyx_XDECREF(__pyx_t_9); __pyx_t_9 = 0; - __Pyx_XDECREF(__pyx_t_10); __pyx_t_10 = 0; - __Pyx_XDECREF(__pyx_t_11); __pyx_t_11 = 0; - goto __pyx_L37_try_end; - __pyx_L30_error:; - __Pyx_XDECREF(__pyx_t_1); __pyx_t_1 = 0; - __Pyx_XDECREF(__pyx_t_12); __pyx_t_12 = 0; - __Pyx_XDECREF(__pyx_t_13); __pyx_t_13 = 0; - __Pyx_XDECREF(__pyx_t_2); __pyx_t_2 = 0; - __Pyx_XDECREF(__pyx_t_3); __pyx_t_3 = 0; - __Pyx_XDECREF(__pyx_t_4); __pyx_t_4 = 0; - __Pyx_XDECREF(__pyx_t_7); __pyx_t_7 = 0; - __Pyx_XDECREF(__pyx_t_8); __pyx_t_8 = 0; - - /* "pmercury/protocols/http.pyx":137 - * try: - * fp_h.append({field[0].decode(): ''}) - * except: # <<<<<<<<<<<<<< - * fp_h.append({field[0].hex(): ''}) - * return fp_h - */ - /*except:*/ { - __Pyx_AddTraceback("pmercury.protocols.http.HTTP.get_human_readable", __pyx_clineno, __pyx_lineno, __pyx_filename); - if (__Pyx_GetException(&__pyx_t_2, &__pyx_t_12, &__pyx_t_3) < 0) __PYX_ERR(0, 137, __pyx_L32_except_error) - __Pyx_GOTREF(__pyx_t_2); - __Pyx_GOTREF(__pyx_t_12); - __Pyx_GOTREF(__pyx_t_3); - - /* "pmercury/protocols/http.pyx":138 - * fp_h.append({field[0].decode(): ''}) - * except: - * fp_h.append({field[0].hex(): ''}) # <<<<<<<<<<<<<< - * return fp_h - * - */ - __pyx_t_1 = __Pyx_PyDict_NewPresized(1); if (unlikely(!__pyx_t_1)) __PYX_ERR(0, 138, __pyx_L32_except_error) - __Pyx_GOTREF(__pyx_t_1); - __pyx_t_4 = __Pyx_GetItemInt(__pyx_v_field, 0, long, 1, __Pyx_PyInt_From_long, 0, 0, 1); if (unlikely(!__pyx_t_4)) __PYX_ERR(0, 138, __pyx_L32_except_error) - __Pyx_GOTREF(__pyx_t_4); - __pyx_t_8 = __Pyx_PyObject_GetAttrStr(__pyx_t_4, __pyx_n_s_hex); if (unlikely(!__pyx_t_8)) __PYX_ERR(0, 138, __pyx_L32_except_error) - __Pyx_GOTREF(__pyx_t_8); - __Pyx_DECREF(__pyx_t_4); __pyx_t_4 = 0; - __pyx_t_4 = NULL; - if (CYTHON_UNPACK_METHODS && likely(PyMethod_Check(__pyx_t_8))) { - __pyx_t_4 = PyMethod_GET_SELF(__pyx_t_8); - if (likely(__pyx_t_4)) { - PyObject* function = PyMethod_GET_FUNCTION(__pyx_t_8); - __Pyx_INCREF(__pyx_t_4); - __Pyx_INCREF(function); - __Pyx_DECREF_SET(__pyx_t_8, function); - } - } - __pyx_t_13 = (__pyx_t_4) ? __Pyx_PyObject_CallOneArg(__pyx_t_8, __pyx_t_4) : __Pyx_PyObject_CallNoArg(__pyx_t_8); - __Pyx_XDECREF(__pyx_t_4); __pyx_t_4 = 0; - if (unlikely(!__pyx_t_13)) __PYX_ERR(0, 138, __pyx_L32_except_error) - __Pyx_GOTREF(__pyx_t_13); - __Pyx_DECREF(__pyx_t_8); __pyx_t_8 = 0; - if (PyDict_SetItem(__pyx_t_1, __pyx_t_13, __pyx_kp_u__8) < 0) __PYX_ERR(0, 138, __pyx_L32_except_error) - __Pyx_DECREF(__pyx_t_13); __pyx_t_13 = 0; - __pyx_t_18 = __Pyx_PyList_Append(__pyx_v_fp_h, __pyx_t_1); if (unlikely(__pyx_t_18 == ((int)-1))) __PYX_ERR(0, 138, __pyx_L32_except_error) - __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0; - __Pyx_XDECREF(__pyx_t_2); __pyx_t_2 = 0; - __Pyx_XDECREF(__pyx_t_12); __pyx_t_12 = 0; - __Pyx_XDECREF(__pyx_t_3); __pyx_t_3 = 0; - goto __pyx_L31_exception_handled; - } - __pyx_L32_except_error:; - - /* "pmercury/protocols/http.pyx":135 - * fp_h.append({field[0].hex(): field[1].hex()}) - * else: - * try: # <<<<<<<<<<<<<< - * fp_h.append({field[0].decode(): ''}) - * except: - */ - __Pyx_XGIVEREF(__pyx_t_9); - __Pyx_XGIVEREF(__pyx_t_10); - __Pyx_XGIVEREF(__pyx_t_11); - __Pyx_ExceptionReset(__pyx_t_9, __pyx_t_10, __pyx_t_11); - goto __pyx_L1_error; - __pyx_L31_exception_handled:; - __Pyx_XGIVEREF(__pyx_t_9); - __Pyx_XGIVEREF(__pyx_t_10); - __Pyx_XGIVEREF(__pyx_t_11); - __Pyx_ExceptionReset(__pyx_t_9, __pyx_t_10, __pyx_t_11); - __pyx_L37_try_end:; - } - } - __pyx_L19:; - } - - /* "pmercury/protocols/http.pyx":139 - * except: - * fp_h.append({field[0].hex(): ''}) - * return fp_h # <<<<<<<<<<<<<< - * - * - */ - __Pyx_XDECREF(__pyx_r); - __Pyx_INCREF(__pyx_v_fp_h); - __pyx_r = __pyx_v_fp_h; - goto __pyx_L0; - - /* "pmercury/protocols/http.pyx":121 - * - * - * def get_human_readable(self, fp_str_): # <<<<<<<<<<<<<< - * t_ = [bytes.fromhex(x[1:]) for x in fp_str_.split(')')[:-1]] - * try: - */ - - /* function exit code */ - __pyx_L1_error:; - __Pyx_XDECREF(__pyx_t_1); - __Pyx_XDECREF(__pyx_t_2); - __Pyx_XDECREF(__pyx_t_3); - __Pyx_XDECREF(__pyx_t_4); - __Pyx_XDECREF(__pyx_t_7); - __Pyx_XDECREF(__pyx_t_8); - __Pyx_XDECREF(__pyx_t_12); - __Pyx_XDECREF(__pyx_t_13); - __Pyx_AddTraceback("pmercury.protocols.http.HTTP.get_human_readable", __pyx_clineno, __pyx_lineno, __pyx_filename); - __pyx_r = NULL; - __pyx_L0:; - __Pyx_XDECREF(__pyx_v_t_); - __Pyx_XDECREF(__pyx_v_fp_h); - __Pyx_XDECREF(__pyx_v_field); - __Pyx_XDECREF(__pyx_7genexpr__pyx_v_x); - __Pyx_XGIVEREF(__pyx_r); - __Pyx_RefNannyFinishContext(); - return __pyx_r; -} - -/* "pmercury/protocols/http.pyx":142 - * - * - * def proc_identify(self, fp_str_, context_, dst_ip, dst_port, list_procs=0, endpoint=None, approx=True, debug=None): # <<<<<<<<<<<<<< - * return None - * - */ - -/* Python wrapper */ -static PyObject *__pyx_pw_8pmercury_9protocols_4http_4HTTP_9proc_identify(PyObject *__pyx_self, PyObject *__pyx_args, PyObject *__pyx_kwds); /*proto*/ -static PyMethodDef __pyx_mdef_8pmercury_9protocols_4http_4HTTP_9proc_identify = {"proc_identify", (PyCFunction)(void*)(PyCFunctionWithKeywords)__pyx_pw_8pmercury_9protocols_4http_4HTTP_9proc_identify, METH_VARARGS|METH_KEYWORDS, 0}; -static PyObject *__pyx_pw_8pmercury_9protocols_4http_4HTTP_9proc_identify(PyObject *__pyx_self, PyObject *__pyx_args, PyObject *__pyx_kwds) { - CYTHON_UNUSED PyObject *__pyx_v_self = 0; - CYTHON_UNUSED PyObject *__pyx_v_fp_str_ = 0; - CYTHON_UNUSED PyObject *__pyx_v_context_ = 0; - CYTHON_UNUSED PyObject *__pyx_v_dst_ip = 0; - CYTHON_UNUSED PyObject *__pyx_v_dst_port = 0; - CYTHON_UNUSED PyObject *__pyx_v_list_procs = 0; - CYTHON_UNUSED PyObject *__pyx_v_endpoint = 0; - CYTHON_UNUSED PyObject *__pyx_v_approx = 0; - CYTHON_UNUSED PyObject *__pyx_v_debug = 0; - PyObject *__pyx_r = 0; - __Pyx_RefNannyDeclarations - __Pyx_RefNannySetupContext("proc_identify (wrapper)", 0); - { - static PyObject **__pyx_pyargnames[] = {&__pyx_n_s_self,&__pyx_n_s_fp_str,&__pyx_n_s_context_2,&__pyx_n_s_dst_ip,&__pyx_n_s_dst_port,&__pyx_n_s_list_procs,&__pyx_n_s_endpoint,&__pyx_n_s_approx,&__pyx_n_s_debug,0}; - PyObject* values[9] = {0,0,0,0,0,0,0,0,0}; - values[5] = ((PyObject *)((PyObject *)__pyx_int_0)); - values[6] = ((PyObject *)((PyObject *)Py_None)); - values[7] = ((PyObject *)((PyObject *)Py_True)); - values[8] = ((PyObject *)((PyObject *)Py_None)); - if (unlikely(__pyx_kwds)) { - Py_ssize_t kw_args; - const Py_ssize_t pos_args = PyTuple_GET_SIZE(__pyx_args); - switch (pos_args) { - case 9: values[8] = PyTuple_GET_ITEM(__pyx_args, 8); - CYTHON_FALLTHROUGH; - case 8: values[7] = PyTuple_GET_ITEM(__pyx_args, 7); - CYTHON_FALLTHROUGH; - case 7: values[6] = PyTuple_GET_ITEM(__pyx_args, 6); - CYTHON_FALLTHROUGH; - case 6: values[5] = PyTuple_GET_ITEM(__pyx_args, 5); - CYTHON_FALLTHROUGH; - case 5: values[4] = PyTuple_GET_ITEM(__pyx_args, 4); - CYTHON_FALLTHROUGH; - case 4: values[3] = PyTuple_GET_ITEM(__pyx_args, 3); - CYTHON_FALLTHROUGH; - case 3: values[2] = PyTuple_GET_ITEM(__pyx_args, 2); - CYTHON_FALLTHROUGH; - case 2: values[1] = PyTuple_GET_ITEM(__pyx_args, 1); - CYTHON_FALLTHROUGH; - case 1: values[0] = PyTuple_GET_ITEM(__pyx_args, 0); - CYTHON_FALLTHROUGH; - case 0: break; - default: goto __pyx_L5_argtuple_error; - } - kw_args = PyDict_Size(__pyx_kwds); - switch (pos_args) { - case 0: - if (likely((values[0] = __Pyx_PyDict_GetItemStr(__pyx_kwds, __pyx_n_s_self)) != 0)) kw_args--; - else goto __pyx_L5_argtuple_error; - CYTHON_FALLTHROUGH; - case 1: - if (likely((values[1] = __Pyx_PyDict_GetItemStr(__pyx_kwds, __pyx_n_s_fp_str)) != 0)) kw_args--; - else { - __Pyx_RaiseArgtupleInvalid("proc_identify", 0, 5, 9, 1); __PYX_ERR(0, 142, __pyx_L3_error) - } - CYTHON_FALLTHROUGH; - case 2: - if (likely((values[2] = __Pyx_PyDict_GetItemStr(__pyx_kwds, __pyx_n_s_context_2)) != 0)) kw_args--; - else { - __Pyx_RaiseArgtupleInvalid("proc_identify", 0, 5, 9, 2); __PYX_ERR(0, 142, __pyx_L3_error) - } - CYTHON_FALLTHROUGH; - case 3: - if (likely((values[3] = __Pyx_PyDict_GetItemStr(__pyx_kwds, __pyx_n_s_dst_ip)) != 0)) kw_args--; - else { - __Pyx_RaiseArgtupleInvalid("proc_identify", 0, 5, 9, 3); __PYX_ERR(0, 142, __pyx_L3_error) - } - CYTHON_FALLTHROUGH; - case 4: - if (likely((values[4] = __Pyx_PyDict_GetItemStr(__pyx_kwds, __pyx_n_s_dst_port)) != 0)) kw_args--; - else { - __Pyx_RaiseArgtupleInvalid("proc_identify", 0, 5, 9, 4); __PYX_ERR(0, 142, __pyx_L3_error) - } - CYTHON_FALLTHROUGH; - case 5: - if (kw_args > 0) { - PyObject* value = __Pyx_PyDict_GetItemStr(__pyx_kwds, __pyx_n_s_list_procs); - if (value) { values[5] = value; kw_args--; } - } - CYTHON_FALLTHROUGH; - case 6: - if (kw_args > 0) { - PyObject* value = __Pyx_PyDict_GetItemStr(__pyx_kwds, __pyx_n_s_endpoint); - if (value) { values[6] = value; kw_args--; } - } - CYTHON_FALLTHROUGH; - case 7: - if (kw_args > 0) { - PyObject* value = __Pyx_PyDict_GetItemStr(__pyx_kwds, __pyx_n_s_approx); - if (value) { values[7] = value; kw_args--; } - } - CYTHON_FALLTHROUGH; - case 8: - if (kw_args > 0) { - PyObject* value = __Pyx_PyDict_GetItemStr(__pyx_kwds, __pyx_n_s_debug); - if (value) { values[8] = value; kw_args--; } - } - } - if (unlikely(kw_args > 0)) { - if (unlikely(__Pyx_ParseOptionalKeywords(__pyx_kwds, __pyx_pyargnames, 0, values, pos_args, "proc_identify") < 0)) __PYX_ERR(0, 142, __pyx_L3_error) - } - } else { - switch (PyTuple_GET_SIZE(__pyx_args)) { - case 9: values[8] = PyTuple_GET_ITEM(__pyx_args, 8); - CYTHON_FALLTHROUGH; - case 8: values[7] = PyTuple_GET_ITEM(__pyx_args, 7); - CYTHON_FALLTHROUGH; - case 7: values[6] = PyTuple_GET_ITEM(__pyx_args, 6); - CYTHON_FALLTHROUGH; - case 6: values[5] = PyTuple_GET_ITEM(__pyx_args, 5); - CYTHON_FALLTHROUGH; - case 5: values[4] = PyTuple_GET_ITEM(__pyx_args, 4); - values[3] = PyTuple_GET_ITEM(__pyx_args, 3); - values[2] = PyTuple_GET_ITEM(__pyx_args, 2); - values[1] = PyTuple_GET_ITEM(__pyx_args, 1); - values[0] = PyTuple_GET_ITEM(__pyx_args, 0); - break; - default: goto __pyx_L5_argtuple_error; - } - } - __pyx_v_self = values[0]; - __pyx_v_fp_str_ = values[1]; - __pyx_v_context_ = values[2]; - __pyx_v_dst_ip = values[3]; - __pyx_v_dst_port = values[4]; - __pyx_v_list_procs = values[5]; - __pyx_v_endpoint = values[6]; - __pyx_v_approx = values[7]; - __pyx_v_debug = values[8]; - } - goto __pyx_L4_argument_unpacking_done; - __pyx_L5_argtuple_error:; - __Pyx_RaiseArgtupleInvalid("proc_identify", 0, 5, 9, PyTuple_GET_SIZE(__pyx_args)); __PYX_ERR(0, 142, __pyx_L3_error) - __pyx_L3_error:; - __Pyx_AddTraceback("pmercury.protocols.http.HTTP.proc_identify", __pyx_clineno, __pyx_lineno, __pyx_filename); - __Pyx_RefNannyFinishContext(); - return NULL; - __pyx_L4_argument_unpacking_done:; - __pyx_r = __pyx_pf_8pmercury_9protocols_4http_4HTTP_8proc_identify(__pyx_self, __pyx_v_self, __pyx_v_fp_str_, __pyx_v_context_, __pyx_v_dst_ip, __pyx_v_dst_port, __pyx_v_list_procs, __pyx_v_endpoint, __pyx_v_approx, __pyx_v_debug); - - /* function exit code */ - __Pyx_RefNannyFinishContext(); - return __pyx_r; -} - -static PyObject *__pyx_pf_8pmercury_9protocols_4http_4HTTP_8proc_identify(CYTHON_UNUSED PyObject *__pyx_self, CYTHON_UNUSED PyObject *__pyx_v_self, CYTHON_UNUSED PyObject *__pyx_v_fp_str_, CYTHON_UNUSED PyObject *__pyx_v_context_, CYTHON_UNUSED PyObject *__pyx_v_dst_ip, CYTHON_UNUSED PyObject *__pyx_v_dst_port, CYTHON_UNUSED PyObject *__pyx_v_list_procs, CYTHON_UNUSED PyObject *__pyx_v_endpoint, CYTHON_UNUSED PyObject *__pyx_v_approx, CYTHON_UNUSED PyObject *__pyx_v_debug) { - PyObject *__pyx_r = NULL; - __Pyx_RefNannyDeclarations - __Pyx_RefNannySetupContext("proc_identify", 0); - - /* "pmercury/protocols/http.pyx":143 - * - * def proc_identify(self, fp_str_, context_, dst_ip, dst_port, list_procs=0, endpoint=None, approx=True, debug=None): - * return None # <<<<<<<<<<<<<< - * - * - */ - __Pyx_XDECREF(__pyx_r); - __pyx_r = Py_None; __Pyx_INCREF(Py_None); - goto __pyx_L0; - - /* "pmercury/protocols/http.pyx":142 - * - * - * def proc_identify(self, fp_str_, context_, dst_ip, dst_port, list_procs=0, endpoint=None, approx=True, debug=None): # <<<<<<<<<<<<<< - * return None - * - */ - - /* function exit code */ - __pyx_L0:; - __Pyx_XGIVEREF(__pyx_r); - __Pyx_RefNannyFinishContext(); - return __pyx_r; -} - -/* "pmercury/protocols/http.pyx":146 - * - * - * def os_identify(self, fp_str_, list_oses=0): # <<<<<<<<<<<<<< - * return None - */ - -/* Python wrapper */ -static PyObject *__pyx_pw_8pmercury_9protocols_4http_4HTTP_11os_identify(PyObject *__pyx_self, PyObject *__pyx_args, PyObject *__pyx_kwds); /*proto*/ -static PyMethodDef __pyx_mdef_8pmercury_9protocols_4http_4HTTP_11os_identify = {"os_identify", (PyCFunction)(void*)(PyCFunctionWithKeywords)__pyx_pw_8pmercury_9protocols_4http_4HTTP_11os_identify, METH_VARARGS|METH_KEYWORDS, 0}; -static PyObject *__pyx_pw_8pmercury_9protocols_4http_4HTTP_11os_identify(PyObject *__pyx_self, PyObject *__pyx_args, PyObject *__pyx_kwds) { - CYTHON_UNUSED PyObject *__pyx_v_self = 0; - CYTHON_UNUSED PyObject *__pyx_v_fp_str_ = 0; - CYTHON_UNUSED PyObject *__pyx_v_list_oses = 0; - PyObject *__pyx_r = 0; - __Pyx_RefNannyDeclarations - __Pyx_RefNannySetupContext("os_identify (wrapper)", 0); - { - static PyObject **__pyx_pyargnames[] = {&__pyx_n_s_self,&__pyx_n_s_fp_str,&__pyx_n_s_list_oses,0}; - PyObject* values[3] = {0,0,0}; - values[2] = ((PyObject *)((PyObject *)__pyx_int_0)); - if (unlikely(__pyx_kwds)) { - Py_ssize_t kw_args; - const Py_ssize_t pos_args = PyTuple_GET_SIZE(__pyx_args); - switch (pos_args) { - case 3: values[2] = PyTuple_GET_ITEM(__pyx_args, 2); - CYTHON_FALLTHROUGH; - case 2: values[1] = PyTuple_GET_ITEM(__pyx_args, 1); - CYTHON_FALLTHROUGH; - case 1: values[0] = PyTuple_GET_ITEM(__pyx_args, 0); - CYTHON_FALLTHROUGH; - case 0: break; - default: goto __pyx_L5_argtuple_error; - } - kw_args = PyDict_Size(__pyx_kwds); - switch (pos_args) { - case 0: - if (likely((values[0] = __Pyx_PyDict_GetItemStr(__pyx_kwds, __pyx_n_s_self)) != 0)) kw_args--; - else goto __pyx_L5_argtuple_error; - CYTHON_FALLTHROUGH; - case 1: - if (likely((values[1] = __Pyx_PyDict_GetItemStr(__pyx_kwds, __pyx_n_s_fp_str)) != 0)) kw_args--; - else { - __Pyx_RaiseArgtupleInvalid("os_identify", 0, 2, 3, 1); __PYX_ERR(0, 146, __pyx_L3_error) - } - CYTHON_FALLTHROUGH; - case 2: - if (kw_args > 0) { - PyObject* value = __Pyx_PyDict_GetItemStr(__pyx_kwds, __pyx_n_s_list_oses); - if (value) { values[2] = value; kw_args--; } - } - } - if (unlikely(kw_args > 0)) { - if (unlikely(__Pyx_ParseOptionalKeywords(__pyx_kwds, __pyx_pyargnames, 0, values, pos_args, "os_identify") < 0)) __PYX_ERR(0, 146, __pyx_L3_error) - } - } else { - switch (PyTuple_GET_SIZE(__pyx_args)) { - case 3: values[2] = PyTuple_GET_ITEM(__pyx_args, 2); - CYTHON_FALLTHROUGH; - case 2: values[1] = PyTuple_GET_ITEM(__pyx_args, 1); - values[0] = PyTuple_GET_ITEM(__pyx_args, 0); - break; - default: goto __pyx_L5_argtuple_error; - } - } - __pyx_v_self = values[0]; - __pyx_v_fp_str_ = values[1]; - __pyx_v_list_oses = values[2]; - } - goto __pyx_L4_argument_unpacking_done; - __pyx_L5_argtuple_error:; - __Pyx_RaiseArgtupleInvalid("os_identify", 0, 2, 3, PyTuple_GET_SIZE(__pyx_args)); __PYX_ERR(0, 146, __pyx_L3_error) - __pyx_L3_error:; - __Pyx_AddTraceback("pmercury.protocols.http.HTTP.os_identify", __pyx_clineno, __pyx_lineno, __pyx_filename); - __Pyx_RefNannyFinishContext(); - return NULL; - __pyx_L4_argument_unpacking_done:; - __pyx_r = __pyx_pf_8pmercury_9protocols_4http_4HTTP_10os_identify(__pyx_self, __pyx_v_self, __pyx_v_fp_str_, __pyx_v_list_oses); - - /* function exit code */ - __Pyx_RefNannyFinishContext(); - return __pyx_r; -} - -static PyObject *__pyx_pf_8pmercury_9protocols_4http_4HTTP_10os_identify(CYTHON_UNUSED PyObject *__pyx_self, CYTHON_UNUSED PyObject *__pyx_v_self, CYTHON_UNUSED PyObject *__pyx_v_fp_str_, CYTHON_UNUSED PyObject *__pyx_v_list_oses) { - PyObject *__pyx_r = NULL; - __Pyx_RefNannyDeclarations - __Pyx_RefNannySetupContext("os_identify", 0); - - /* "pmercury/protocols/http.pyx":147 - * - * def os_identify(self, fp_str_, list_oses=0): - * return None # <<<<<<<<<<<<<< - */ - __Pyx_XDECREF(__pyx_r); - __pyx_r = Py_None; __Pyx_INCREF(Py_None); - goto __pyx_L0; - - /* "pmercury/protocols/http.pyx":146 - * - * - * def os_identify(self, fp_str_, list_oses=0): # <<<<<<<<<<<<<< - * return None - */ - - /* function exit code */ - __pyx_L0:; - __Pyx_XGIVEREF(__pyx_r); - __Pyx_RefNannyFinishContext(); - return __pyx_r; -} - -static PyMethodDef __pyx_methods[] = { - {0, 0, 0, 0} -}; - -#if PY_MAJOR_VERSION >= 3 -#if CYTHON_PEP489_MULTI_PHASE_INIT -static PyObject* __pyx_pymod_create(PyObject *spec, PyModuleDef *def); /*proto*/ -static int __pyx_pymod_exec_http(PyObject* module); /*proto*/ -static PyModuleDef_Slot __pyx_moduledef_slots[] = { - {Py_mod_create, (void*)__pyx_pymod_create}, - {Py_mod_exec, (void*)__pyx_pymod_exec_http}, - {0, NULL} -}; -#endif - -static struct PyModuleDef __pyx_moduledef = { - PyModuleDef_HEAD_INIT, - "http", - __pyx_k_Copyright_c_2019_Cisco_Systems, /* m_doc */ - #if CYTHON_PEP489_MULTI_PHASE_INIT - 0, /* m_size */ - #else - -1, /* m_size */ - #endif - __pyx_methods /* m_methods */, - #if CYTHON_PEP489_MULTI_PHASE_INIT - __pyx_moduledef_slots, /* m_slots */ - #else - NULL, /* m_reload */ - #endif - NULL, /* m_traverse */ - NULL, /* m_clear */ - NULL /* m_free */ -}; -#endif -#ifndef CYTHON_SMALL_CODE -#if defined(__clang__) - #define CYTHON_SMALL_CODE -#elif defined(__GNUC__) && (__GNUC__ > 4 || (__GNUC__ == 4 && __GNUC_MINOR__ >= 3)) - #define CYTHON_SMALL_CODE __attribute__((cold)) -#else - #define CYTHON_SMALL_CODE -#endif -#endif - -static __Pyx_StringTabEntry __pyx_string_tab[] = { - {&__pyx_kp_u_, __pyx_k_, sizeof(__pyx_k_), 0, 1, 0, 0}, - {&__pyx_n_s_HTTP, __pyx_k_HTTP, sizeof(__pyx_k_HTTP), 0, 0, 1, 1}, - {&__pyx_n_s_HTTP___init, __pyx_k_HTTP___init, sizeof(__pyx_k_HTTP___init), 0, 0, 1, 1}, - {&__pyx_n_s_HTTP___init___locals_lambda, __pyx_k_HTTP___init___locals_lambda, sizeof(__pyx_k_HTTP___init___locals_lambda), 0, 0, 1, 1}, - {&__pyx_n_s_HTTP_fingerprint, __pyx_k_HTTP_fingerprint, sizeof(__pyx_k_HTTP_fingerprint), 0, 0, 1, 1}, - {&__pyx_n_s_HTTP_get_human_readable, __pyx_k_HTTP_get_human_readable, sizeof(__pyx_k_HTTP_get_human_readable), 0, 0, 1, 1}, - {&__pyx_n_s_HTTP_os_identify, __pyx_k_HTTP_os_identify, sizeof(__pyx_k_HTTP_os_identify), 0, 0, 1, 1}, - {&__pyx_n_s_HTTP_proc_identify, __pyx_k_HTTP_proc_identify, sizeof(__pyx_k_HTTP_proc_identify), 0, 0, 1, 1}, - {&__pyx_n_s_HTTP_proto_identify, __pyx_k_HTTP_proto_identify, sizeof(__pyx_k_HTTP_proto_identify), 0, 0, 1, 1}, - {&__pyx_n_s_Protocol, __pyx_k_Protocol, sizeof(__pyx_k_Protocol), 0, 0, 1, 1}, - {&__pyx_n_s_UnicodeDecodeError, __pyx_k_UnicodeDecodeError, sizeof(__pyx_k_UnicodeDecodeError), 0, 0, 1, 1}, - {&__pyx_kp_u__11, __pyx_k__11, sizeof(__pyx_k__11), 0, 1, 0, 0}, - {&__pyx_kp_u__14, __pyx_k__14, sizeof(__pyx_k__14), 0, 1, 0, 0}, - {&__pyx_kp_u__2, __pyx_k__2, sizeof(__pyx_k__2), 0, 1, 0, 0}, - {&__pyx_n_u__3, __pyx_k__3, sizeof(__pyx_k__3), 0, 1, 0, 1}, - {&__pyx_kp_b__5, __pyx_k__5, sizeof(__pyx_k__5), 0, 0, 0, 0}, - {&__pyx_kp_b__8, __pyx_k__8, sizeof(__pyx_k__8), 0, 0, 0, 0}, - {&__pyx_kp_u__8, __pyx_k__8, sizeof(__pyx_k__8), 0, 1, 0, 0}, - {&__pyx_kp_b__9, __pyx_k__9, sizeof(__pyx_k__9), 0, 0, 0, 0}, - {&__pyx_n_s_abspath, __pyx_k_abspath, sizeof(__pyx_k_abspath), 0, 0, 1, 1}, - {&__pyx_n_b_accept, __pyx_k_accept, sizeof(__pyx_k_accept), 0, 0, 0, 1}, - {&__pyx_kp_b_accept_encoding, __pyx_k_accept_encoding, sizeof(__pyx_k_accept_encoding), 0, 0, 0, 0}, - {&__pyx_kp_b_accept_language, __pyx_k_accept_language, sizeof(__pyx_k_accept_language), 0, 0, 0, 0}, - {&__pyx_n_s_all_headers, __pyx_k_all_headers, sizeof(__pyx_k_all_headers), 0, 0, 1, 1}, - {&__pyx_n_s_append, __pyx_k_append, sizeof(__pyx_k_append), 0, 0, 1, 1}, - {&__pyx_n_s_approx, __pyx_k_approx, sizeof(__pyx_k_approx), 0, 0, 1, 1}, - {&__pyx_n_s_c, __pyx_k_c, sizeof(__pyx_k_c), 0, 0, 1, 1}, - {&__pyx_kp_b_cache_control, __pyx_k_cache_control, sizeof(__pyx_k_cache_control), 0, 0, 0, 0}, - {&__pyx_n_s_case_insensitive_static_headers, __pyx_k_case_insensitive_static_headers, sizeof(__pyx_k_case_insensitive_static_headers), 0, 0, 1, 1}, - {&__pyx_n_u_case_insensitive_static_headers, __pyx_k_case_insensitive_static_headers, sizeof(__pyx_k_case_insensitive_static_headers), 0, 1, 0, 1}, - {&__pyx_n_s_case_sensitive_static_headers, __pyx_k_case_sensitive_static_headers, sizeof(__pyx_k_case_sensitive_static_headers), 0, 0, 1, 1}, - {&__pyx_n_u_case_sensitive_static_headers, __pyx_k_case_sensitive_static_headers, sizeof(__pyx_k_case_sensitive_static_headers), 0, 1, 0, 1}, - {&__pyx_n_s_cline_in_traceback, __pyx_k_cline_in_traceback, sizeof(__pyx_k_cline_in_traceback), 0, 0, 1, 1}, - {&__pyx_n_s_config, __pyx_k_config, sizeof(__pyx_k_config), 0, 0, 1, 1}, - {&__pyx_n_b_connection, __pyx_k_connection, sizeof(__pyx_k_connection), 0, 0, 0, 1}, - {&__pyx_kp_b_content_length, __pyx_k_content_length, sizeof(__pyx_k_content_length), 0, 0, 0, 0}, - {&__pyx_kp_b_content_type, __pyx_k_content_type, sizeof(__pyx_k_content_type), 0, 0, 0, 0}, - {&__pyx_n_s_context, __pyx_k_context, sizeof(__pyx_k_context), 0, 0, 1, 1}, - {&__pyx_n_u_context, __pyx_k_context, sizeof(__pyx_k_context), 0, 1, 0, 1}, - {&__pyx_n_s_context_2, __pyx_k_context_2, sizeof(__pyx_k_context_2), 0, 0, 1, 1}, - {&__pyx_n_s_contextual_data, __pyx_k_contextual_data, sizeof(__pyx_k_contextual_data), 0, 0, 1, 1}, - {&__pyx_n_s_data, __pyx_k_data, sizeof(__pyx_k_data), 0, 0, 1, 1}, - {&__pyx_n_u_data, __pyx_k_data, sizeof(__pyx_k_data), 0, 1, 0, 1}, - {&__pyx_n_s_data_len, __pyx_k_data_len, sizeof(__pyx_k_data_len), 0, 0, 1, 1}, - {&__pyx_n_s_debug, __pyx_k_debug, sizeof(__pyx_k_debug), 0, 0, 1, 1}, - {&__pyx_n_s_decode, __pyx_k_decode, sizeof(__pyx_k_decode), 0, 0, 1, 1}, - {&__pyx_n_s_dirname, __pyx_k_dirname, sizeof(__pyx_k_dirname), 0, 0, 1, 1}, - {&__pyx_n_b_dnt, __pyx_k_dnt, sizeof(__pyx_k_dnt), 0, 0, 0, 1}, - {&__pyx_n_s_doc, __pyx_k_doc, sizeof(__pyx_k_doc), 0, 0, 1, 1}, - {&__pyx_n_b_dpr, __pyx_k_dpr, sizeof(__pyx_k_dpr), 0, 0, 0, 1}, - {&__pyx_n_s_dst_ip, __pyx_k_dst_ip, sizeof(__pyx_k_dst_ip), 0, 0, 1, 1}, - {&__pyx_n_s_dst_port, __pyx_k_dst_port, sizeof(__pyx_k_dst_port), 0, 0, 1, 1}, - {&__pyx_n_s_encode, __pyx_k_encode, sizeof(__pyx_k_encode), 0, 0, 1, 1}, - {&__pyx_n_s_endpoint, __pyx_k_endpoint, sizeof(__pyx_k_endpoint), 0, 0, 1, 1}, - {&__pyx_n_s_field, __pyx_k_field, sizeof(__pyx_k_field), 0, 0, 1, 1}, - {&__pyx_n_s_file, __pyx_k_file, sizeof(__pyx_k_file), 0, 0, 1, 1}, - {&__pyx_n_s_fingerprint, __pyx_k_fingerprint, sizeof(__pyx_k_fingerprint), 0, 0, 1, 1}, - {&__pyx_n_s_fp_database, __pyx_k_fp_database, sizeof(__pyx_k_fp_database), 0, 0, 1, 1}, - {&__pyx_n_s_fp_db, __pyx_k_fp_db, sizeof(__pyx_k_fp_db), 0, 0, 1, 1}, - {&__pyx_n_s_fp_h, __pyx_k_fp_h, sizeof(__pyx_k_fp_h), 0, 0, 1, 1}, - {&__pyx_n_s_fp_str, __pyx_k_fp_str, sizeof(__pyx_k_fp_str), 0, 0, 1, 1}, - {&__pyx_n_s_fromhex, __pyx_k_fromhex, sizeof(__pyx_k_fromhex), 0, 0, 1, 1}, - {&__pyx_n_s_get_human_readable, __pyx_k_get_human_readable, sizeof(__pyx_k_get_human_readable), 0, 0, 1, 1}, - {&__pyx_n_s_h, __pyx_k_h, sizeof(__pyx_k_h), 0, 0, 1, 1}, - {&__pyx_n_s_h_c, __pyx_k_h_c, sizeof(__pyx_k_h_c), 0, 0, 1, 1}, - {&__pyx_n_s_headers, __pyx_k_headers, sizeof(__pyx_k_headers), 0, 0, 1, 1}, - {&__pyx_n_s_headers_data, __pyx_k_headers_data, sizeof(__pyx_k_headers_data), 0, 0, 1, 1}, - {&__pyx_n_s_hex, __pyx_k_hex, sizeof(__pyx_k_hex), 0, 0, 1, 1}, - {&__pyx_n_b_host, __pyx_k_host, sizeof(__pyx_k_host), 0, 0, 0, 1}, - {&__pyx_n_u_host, __pyx_k_host, sizeof(__pyx_k_host), 0, 1, 0, 1}, - {&__pyx_n_u_http, __pyx_k_http, sizeof(__pyx_k_http), 0, 1, 0, 1}, - {&__pyx_n_s_http_ah, __pyx_k_http_ah, sizeof(__pyx_k_http_ah), 0, 0, 1, 1}, - {&__pyx_n_s_http_cish, __pyx_k_http_cish, sizeof(__pyx_k_http_cish), 0, 0, 1, 1}, - {&__pyx_n_s_http_cssh, __pyx_k_http_cssh, sizeof(__pyx_k_http_cssh), 0, 0, 1, 1}, - {&__pyx_n_s_http_ctx, __pyx_k_http_ctx, sizeof(__pyx_k_http_ctx), 0, 0, 1, 1}, - {&__pyx_kp_s_http_pyx, __pyx_k_http_pyx, sizeof(__pyx_k_http_pyx), 0, 0, 1, 0}, - {&__pyx_n_s_i, __pyx_k_i, sizeof(__pyx_k_i), 0, 0, 1, 1}, - {&__pyx_n_s_import, __pyx_k_import, sizeof(__pyx_k_import), 0, 0, 1, 1}, - {&__pyx_n_s_init, __pyx_k_init, sizeof(__pyx_k_init), 0, 0, 1, 1}, - {&__pyx_n_b_intervention, __pyx_k_intervention, sizeof(__pyx_k_intervention), 0, 0, 0, 1}, - {&__pyx_n_s_list_oses, __pyx_k_list_oses, sizeof(__pyx_k_list_oses), 0, 0, 1, 1}, - {&__pyx_n_s_list_procs, __pyx_k_list_procs, sizeof(__pyx_k_list_procs), 0, 0, 1, 1}, - {&__pyx_n_s_lower, __pyx_k_lower, sizeof(__pyx_k_lower), 0, 0, 1, 1}, - {&__pyx_n_s_main, __pyx_k_main, sizeof(__pyx_k_main), 0, 0, 1, 1}, - {&__pyx_n_s_map, __pyx_k_map, sizeof(__pyx_k_map), 0, 0, 1, 1}, - {&__pyx_n_s_metaclass, __pyx_k_metaclass, sizeof(__pyx_k_metaclass), 0, 0, 1, 1}, - {&__pyx_n_u_method, __pyx_k_method, sizeof(__pyx_k_method), 0, 1, 0, 1}, - {&__pyx_n_s_module, __pyx_k_module, sizeof(__pyx_k_module), 0, 0, 1, 1}, - {&__pyx_n_u_name, __pyx_k_name, sizeof(__pyx_k_name), 0, 1, 0, 1}, - {&__pyx_n_s_name_2, __pyx_k_name_2, sizeof(__pyx_k_name_2), 0, 0, 1, 1}, - {&__pyx_n_s_offset, __pyx_k_offset, sizeof(__pyx_k_offset), 0, 0, 1, 1}, - {&__pyx_n_b_origin, __pyx_k_origin, sizeof(__pyx_k_origin), 0, 0, 0, 1}, - {&__pyx_n_s_os, __pyx_k_os, sizeof(__pyx_k_os), 0, 0, 1, 1}, - {&__pyx_n_s_os_identify, __pyx_k_os_identify, sizeof(__pyx_k_os_identify), 0, 0, 1, 1}, - {&__pyx_n_s_path, __pyx_k_path, sizeof(__pyx_k_path), 0, 0, 1, 1}, - {&__pyx_n_s_pmercury_protocols_http, __pyx_k_pmercury_protocols_http, sizeof(__pyx_k_pmercury_protocols_http), 0, 0, 1, 1}, - {&__pyx_n_s_pmercury_protocols_protocol, __pyx_k_pmercury_protocols_protocol, sizeof(__pyx_k_pmercury_protocols_protocol), 0, 0, 1, 1}, - {&__pyx_n_u_preamble, __pyx_k_preamble, sizeof(__pyx_k_preamble), 0, 1, 0, 1}, - {&__pyx_n_s_prepare, __pyx_k_prepare, sizeof(__pyx_k_prepare), 0, 0, 1, 1}, - {&__pyx_n_s_proc_identify, __pyx_k_proc_identify, sizeof(__pyx_k_proc_identify), 0, 0, 1, 1}, - {&__pyx_n_s_proto_identify, __pyx_k_proto_identify, sizeof(__pyx_k_proto_identify), 0, 0, 1, 1}, - {&__pyx_n_s_qualname, __pyx_k_qualname, sizeof(__pyx_k_qualname), 0, 0, 1, 1}, - {&__pyx_n_s_range, __pyx_k_range, sizeof(__pyx_k_range), 0, 0, 1, 1}, - {&__pyx_n_s_replace, __pyx_k_replace, sizeof(__pyx_k_replace), 0, 0, 1, 1}, - {&__pyx_n_s_request, __pyx_k_request, sizeof(__pyx_k_request), 0, 0, 1, 1}, - {&__pyx_n_s_rh, __pyx_k_rh, sizeof(__pyx_k_rh), 0, 0, 1, 1}, - {&__pyx_kp_u_s, __pyx_k_s, sizeof(__pyx_k_s), 0, 1, 0, 0}, - {&__pyx_n_s_self, __pyx_k_self, sizeof(__pyx_k_self), 0, 0, 1, 1}, - {&__pyx_n_s_split, __pyx_k_split, sizeof(__pyx_k_split), 0, 0, 1, 1}, - {&__pyx_n_s_staticmethod, __pyx_k_staticmethod, sizeof(__pyx_k_staticmethod), 0, 0, 1, 1}, - {&__pyx_n_s_sys, __pyx_k_sys, sizeof(__pyx_k_sys), 0, 0, 1, 1}, - {&__pyx_n_s_t, __pyx_k_t, sizeof(__pyx_k_t), 0, 0, 1, 1}, - {&__pyx_n_s_t0, __pyx_k_t0, sizeof(__pyx_k_t0), 0, 0, 1, 1}, - {&__pyx_n_s_t0_lower, __pyx_k_t0_lower, sizeof(__pyx_k_t0_lower), 0, 0, 1, 1}, - {&__pyx_n_s_test, __pyx_k_test, sizeof(__pyx_k_test), 0, 0, 1, 1}, - {&__pyx_kp_b_upgrade_insecure_requests, __pyx_k_upgrade_insecure_requests, sizeof(__pyx_k_upgrade_insecure_requests), 0, 0, 0, 0}, - {&__pyx_n_u_uri, __pyx_k_uri, sizeof(__pyx_k_uri), 0, 1, 0, 1}, - {&__pyx_kp_b_user_agent, __pyx_k_user_agent, sizeof(__pyx_k_user_agent), 0, 0, 0, 0}, - {&__pyx_n_u_user_agent_2, __pyx_k_user_agent_2, sizeof(__pyx_k_user_agent_2), 0, 1, 0, 1}, - {&__pyx_n_u_version, __pyx_k_version, sizeof(__pyx_k_version), 0, 1, 0, 1}, - {&__pyx_kp_b_viewport_width, __pyx_k_viewport_width, sizeof(__pyx_k_viewport_width), 0, 0, 0, 0}, - {&__pyx_n_s_x, __pyx_k_x, sizeof(__pyx_k_x), 0, 0, 1, 1}, - {&__pyx_kp_b_x_forwarded_for, __pyx_k_x_forwarded_for, sizeof(__pyx_k_x_forwarded_for), 0, 0, 0, 0}, - {&__pyx_n_u_x_forwarded_for_2, __pyx_k_x_forwarded_for_2, sizeof(__pyx_k_x_forwarded_for_2), 0, 1, 0, 1}, - {&__pyx_kp_b_x_requested_with, __pyx_k_x_requested_with, sizeof(__pyx_k_x_requested_with), 0, 0, 0, 0}, - {0, 0, 0, 0, 0, 0, 0} -}; -static CYTHON_SMALL_CODE int __Pyx_InitCachedBuiltins(void) { - __pyx_builtin_staticmethod = __Pyx_GetBuiltinName(__pyx_n_s_staticmethod); if (!__pyx_builtin_staticmethod) __PYX_ERR(0, 58, __pyx_L1_error) - __pyx_builtin_map = __Pyx_GetBuiltinName(__pyx_n_s_map); if (!__pyx_builtin_map) __PYX_ERR(0, 39, __pyx_L1_error) - __pyx_builtin_UnicodeDecodeError = __Pyx_GetBuiltinName(__pyx_n_s_UnicodeDecodeError); if (!__pyx_builtin_UnicodeDecodeError) __PYX_ERR(0, 113, __pyx_L1_error) - __pyx_builtin_range = __Pyx_GetBuiltinName(__pyx_n_s_range); if (!__pyx_builtin_range) __PYX_ERR(0, 127, __pyx_L1_error) - return 0; - __pyx_L1_error:; - return -1; -} - -static CYTHON_SMALL_CODE int __Pyx_InitCachedConstants(void) { - __Pyx_RefNannyDeclarations - __Pyx_RefNannySetupContext("__Pyx_InitCachedConstants", 0); - - /* "pmercury/protocols/http.pyx":55 - * if 'context' in config['http']: - * for c in config['http']['context']: - * HTTP.contextual_data[c.encode()] = c.lower().replace('-','_') # <<<<<<<<<<<<<< - * - * - */ - __pyx_tuple__4 = PyTuple_Pack(2, __pyx_kp_u__2, __pyx_n_u__3); if (unlikely(!__pyx_tuple__4)) __PYX_ERR(0, 55, __pyx_L1_error) - __Pyx_GOTREF(__pyx_tuple__4); - __Pyx_GIVEREF(__pyx_tuple__4); - - /* "pmercury/protocols/http.pyx":72 - * @staticmethod - * def fingerprint(bytes data, unsigned int offset, unsigned int data_len): - * cdef list t_ = data[offset:].split(b'\x0d\x0a', 1) # <<<<<<<<<<<<<< - * cdef list request = t_[0].split() - * if len(request) < 3: - */ - __pyx_tuple__6 = PyTuple_Pack(2, __pyx_kp_b__5, __pyx_int_1); if (unlikely(!__pyx_tuple__6)) __PYX_ERR(0, 72, __pyx_L1_error) - __Pyx_GOTREF(__pyx_tuple__6); - __Pyx_GIVEREF(__pyx_tuple__6); - - /* "pmercury/protocols/http.pyx":75 - * cdef list request = t_[0].split() - * if len(request) < 3: - * return None, None # <<<<<<<<<<<<<< - * - * cdef list c = [] - */ - __pyx_tuple__7 = PyTuple_Pack(2, Py_None, Py_None); if (unlikely(!__pyx_tuple__7)) __PYX_ERR(0, 75, __pyx_L1_error) - __Pyx_GOTREF(__pyx_tuple__7); - __Pyx_GIVEREF(__pyx_tuple__7); - - /* "pmercury/protocols/http.pyx":95 - * if h_ == b'': - * break - * t0_ = h_.split(b'\x3a\x20',1)[0] # <<<<<<<<<<<<<< - * t0_lower = t0_.lower() - * - */ - __pyx_tuple__10 = PyTuple_Pack(2, __pyx_kp_b__9, __pyx_int_1); if (unlikely(!__pyx_tuple__10)) __PYX_ERR(0, 95, __pyx_L1_error) - __Pyx_GOTREF(__pyx_tuple__10); - __Pyx_GIVEREF(__pyx_tuple__10); - - /* "pmercury/protocols/http.pyx":122 - * - * def get_human_readable(self, fp_str_): - * t_ = [bytes.fromhex(x[1:]) for x in fp_str_.split(')')[:-1]] # <<<<<<<<<<<<<< - * try: - * fp_h = [{'method':t_[0].decode()},{'version':t_[1].decode()}] - */ - __pyx_slice__12 = PySlice_New(Py_None, __pyx_int_neg_1, Py_None); if (unlikely(!__pyx_slice__12)) __PYX_ERR(0, 122, __pyx_L1_error) - __Pyx_GOTREF(__pyx_slice__12); - __Pyx_GIVEREF(__pyx_slice__12); - __pyx_slice__13 = PySlice_New(__pyx_int_1, Py_None, Py_None); if (unlikely(!__pyx_slice__13)) __PYX_ERR(0, 122, __pyx_L1_error) - __Pyx_GOTREF(__pyx_slice__13); - __Pyx_GIVEREF(__pyx_slice__13); - - /* "pmercury/protocols/http.pyx":18 - * class HTTP(Protocol): - * - * def __init__(self, fp_database=None, config=None): # <<<<<<<<<<<<<< - * # populate fingerprint databases - * self.fp_db = {} - */ - __pyx_tuple__15 = PyTuple_Pack(4, __pyx_n_s_self, __pyx_n_s_fp_database, __pyx_n_s_config, __pyx_n_s_c); if (unlikely(!__pyx_tuple__15)) __PYX_ERR(0, 18, __pyx_L1_error) - __Pyx_GOTREF(__pyx_tuple__15); - __Pyx_GIVEREF(__pyx_tuple__15); - __pyx_codeobj__16 = (PyObject*)__Pyx_PyCode_New(3, 0, 4, 0, CO_OPTIMIZED|CO_NEWLOCALS, __pyx_empty_bytes, __pyx_empty_tuple, __pyx_empty_tuple, __pyx_tuple__15, __pyx_empty_tuple, __pyx_empty_tuple, __pyx_kp_s_http_pyx, __pyx_n_s_init, 18, __pyx_empty_bytes); if (unlikely(!__pyx_codeobj__16)) __PYX_ERR(0, 18, __pyx_L1_error) - __pyx_tuple__17 = PyTuple_Pack(2, ((PyObject *)Py_None), ((PyObject *)Py_None)); if (unlikely(!__pyx_tuple__17)) __PYX_ERR(0, 18, __pyx_L1_error) - __Pyx_GOTREF(__pyx_tuple__17); - __Pyx_GIVEREF(__pyx_tuple__17); - - /* "pmercury/protocols/http.pyx":59 - * - * @staticmethod - * def proto_identify(data, offset, data_len): # <<<<<<<<<<<<<< - * if data_len-offset < 16: - * return False - */ - __pyx_tuple__18 = PyTuple_Pack(3, __pyx_n_s_data, __pyx_n_s_offset, __pyx_n_s_data_len); if (unlikely(!__pyx_tuple__18)) __PYX_ERR(0, 59, __pyx_L1_error) - __Pyx_GOTREF(__pyx_tuple__18); - __Pyx_GIVEREF(__pyx_tuple__18); - __pyx_codeobj__19 = (PyObject*)__Pyx_PyCode_New(3, 0, 3, 0, CO_OPTIMIZED|CO_NEWLOCALS, __pyx_empty_bytes, __pyx_empty_tuple, __pyx_empty_tuple, __pyx_tuple__18, __pyx_empty_tuple, __pyx_empty_tuple, __pyx_kp_s_http_pyx, __pyx_n_s_proto_identify, 59, __pyx_empty_bytes); if (unlikely(!__pyx_codeobj__19)) __PYX_ERR(0, 59, __pyx_L1_error) - - /* "pmercury/protocols/http.pyx":71 - * - * @staticmethod - * def fingerprint(bytes data, unsigned int offset, unsigned int data_len): # <<<<<<<<<<<<<< - * cdef list t_ = data[offset:].split(b'\x0d\x0a', 1) - * cdef list request = t_[0].split() - */ - __pyx_tuple__20 = PyTuple_Pack(17, __pyx_n_s_data, __pyx_n_s_offset, __pyx_n_s_data_len, __pyx_n_s_t, __pyx_n_s_request, __pyx_n_s_c, __pyx_n_s_rh, __pyx_n_s_http_ah, __pyx_n_s_http_cish, __pyx_n_s_http_cssh, __pyx_n_s_http_ctx, __pyx_n_s_headers, __pyx_n_s_t0, __pyx_n_s_t0_lower, __pyx_n_s_context, __pyx_n_s_h, __pyx_n_s_h_c); if (unlikely(!__pyx_tuple__20)) __PYX_ERR(0, 71, __pyx_L1_error) - __Pyx_GOTREF(__pyx_tuple__20); - __Pyx_GIVEREF(__pyx_tuple__20); - __pyx_codeobj__21 = (PyObject*)__Pyx_PyCode_New(3, 0, 17, 0, CO_OPTIMIZED|CO_NEWLOCALS, __pyx_empty_bytes, __pyx_empty_tuple, __pyx_empty_tuple, __pyx_tuple__20, __pyx_empty_tuple, __pyx_empty_tuple, __pyx_kp_s_http_pyx, __pyx_n_s_fingerprint, 71, __pyx_empty_bytes); if (unlikely(!__pyx_codeobj__21)) __PYX_ERR(0, 71, __pyx_L1_error) - - /* "pmercury/protocols/http.pyx":121 - * - * - * def get_human_readable(self, fp_str_): # <<<<<<<<<<<<<< - * t_ = [bytes.fromhex(x[1:]) for x in fp_str_.split(')')[:-1]] - * try: - */ - __pyx_tuple__22 = PyTuple_Pack(7, __pyx_n_s_self, __pyx_n_s_fp_str, __pyx_n_s_t, __pyx_n_s_fp_h, __pyx_n_s_i, __pyx_n_s_field, __pyx_n_s_x); if (unlikely(!__pyx_tuple__22)) __PYX_ERR(0, 121, __pyx_L1_error) - __Pyx_GOTREF(__pyx_tuple__22); - __Pyx_GIVEREF(__pyx_tuple__22); - __pyx_codeobj__23 = (PyObject*)__Pyx_PyCode_New(2, 0, 7, 0, CO_OPTIMIZED|CO_NEWLOCALS, __pyx_empty_bytes, __pyx_empty_tuple, __pyx_empty_tuple, __pyx_tuple__22, __pyx_empty_tuple, __pyx_empty_tuple, __pyx_kp_s_http_pyx, __pyx_n_s_get_human_readable, 121, __pyx_empty_bytes); if (unlikely(!__pyx_codeobj__23)) __PYX_ERR(0, 121, __pyx_L1_error) - - /* "pmercury/protocols/http.pyx":142 - * - * - * def proc_identify(self, fp_str_, context_, dst_ip, dst_port, list_procs=0, endpoint=None, approx=True, debug=None): # <<<<<<<<<<<<<< - * return None - * - */ - __pyx_tuple__24 = PyTuple_Pack(9, __pyx_n_s_self, __pyx_n_s_fp_str, __pyx_n_s_context_2, __pyx_n_s_dst_ip, __pyx_n_s_dst_port, __pyx_n_s_list_procs, __pyx_n_s_endpoint, __pyx_n_s_approx, __pyx_n_s_debug); if (unlikely(!__pyx_tuple__24)) __PYX_ERR(0, 142, __pyx_L1_error) - __Pyx_GOTREF(__pyx_tuple__24); - __Pyx_GIVEREF(__pyx_tuple__24); - __pyx_codeobj__25 = (PyObject*)__Pyx_PyCode_New(9, 0, 9, 0, CO_OPTIMIZED|CO_NEWLOCALS, __pyx_empty_bytes, __pyx_empty_tuple, __pyx_empty_tuple, __pyx_tuple__24, __pyx_empty_tuple, __pyx_empty_tuple, __pyx_kp_s_http_pyx, __pyx_n_s_proc_identify, 142, __pyx_empty_bytes); if (unlikely(!__pyx_codeobj__25)) __PYX_ERR(0, 142, __pyx_L1_error) - __pyx_tuple__26 = PyTuple_Pack(4, ((PyObject *)__pyx_int_0), ((PyObject *)Py_None), ((PyObject *)Py_True), ((PyObject *)Py_None)); if (unlikely(!__pyx_tuple__26)) __PYX_ERR(0, 142, __pyx_L1_error) - __Pyx_GOTREF(__pyx_tuple__26); - __Pyx_GIVEREF(__pyx_tuple__26); - - /* "pmercury/protocols/http.pyx":146 - * - * - * def os_identify(self, fp_str_, list_oses=0): # <<<<<<<<<<<<<< - * return None - */ - __pyx_tuple__27 = PyTuple_Pack(3, __pyx_n_s_self, __pyx_n_s_fp_str, __pyx_n_s_list_oses); if (unlikely(!__pyx_tuple__27)) __PYX_ERR(0, 146, __pyx_L1_error) - __Pyx_GOTREF(__pyx_tuple__27); - __Pyx_GIVEREF(__pyx_tuple__27); - __pyx_codeobj__28 = (PyObject*)__Pyx_PyCode_New(3, 0, 3, 0, CO_OPTIMIZED|CO_NEWLOCALS, __pyx_empty_bytes, __pyx_empty_tuple, __pyx_empty_tuple, __pyx_tuple__27, __pyx_empty_tuple, __pyx_empty_tuple, __pyx_kp_s_http_pyx, __pyx_n_s_os_identify, 146, __pyx_empty_bytes); if (unlikely(!__pyx_codeobj__28)) __PYX_ERR(0, 146, __pyx_L1_error) - __pyx_tuple__29 = PyTuple_Pack(1, ((PyObject *)__pyx_int_0)); if (unlikely(!__pyx_tuple__29)) __PYX_ERR(0, 146, __pyx_L1_error) - __Pyx_GOTREF(__pyx_tuple__29); - __Pyx_GIVEREF(__pyx_tuple__29); - __Pyx_RefNannyFinishContext(); - return 0; - __pyx_L1_error:; - __Pyx_RefNannyFinishContext(); - return -1; -} - -static CYTHON_SMALL_CODE int __Pyx_InitGlobals(void) { - __pyx_umethod_PyBytes_Type_hex.type = (PyObject*)&PyBytes_Type; - __pyx_umethod_PyBytes_Type_lower.type = (PyObject*)&PyBytes_Type; - if (__Pyx_InitStrings(__pyx_string_tab) < 0) __PYX_ERR(0, 1, __pyx_L1_error); - __pyx_int_0 = PyInt_FromLong(0); if (unlikely(!__pyx_int_0)) __PYX_ERR(0, 1, __pyx_L1_error) - __pyx_int_1 = PyInt_FromLong(1); if (unlikely(!__pyx_int_1)) __PYX_ERR(0, 1, __pyx_L1_error) - __pyx_int_2 = PyInt_FromLong(2); if (unlikely(!__pyx_int_2)) __PYX_ERR(0, 1, __pyx_L1_error) - __pyx_int_3 = PyInt_FromLong(3); if (unlikely(!__pyx_int_3)) __PYX_ERR(0, 1, __pyx_L1_error) - __pyx_int_16 = PyInt_FromLong(16); if (unlikely(!__pyx_int_16)) __PYX_ERR(0, 1, __pyx_L1_error) - __pyx_int_32 = PyInt_FromLong(32); if (unlikely(!__pyx_int_32)) __PYX_ERR(0, 1, __pyx_L1_error) - __pyx_int_69 = PyInt_FromLong(69); if (unlikely(!__pyx_int_69)) __PYX_ERR(0, 1, __pyx_L1_error) - __pyx_int_71 = PyInt_FromLong(71); if (unlikely(!__pyx_int_71)) __PYX_ERR(0, 1, __pyx_L1_error) - __pyx_int_84 = PyInt_FromLong(84); if (unlikely(!__pyx_int_84)) __PYX_ERR(0, 1, __pyx_L1_error) - __pyx_int_neg_1 = PyInt_FromLong(-1); if (unlikely(!__pyx_int_neg_1)) __PYX_ERR(0, 1, __pyx_L1_error) - return 0; - __pyx_L1_error:; - return -1; -} - -static CYTHON_SMALL_CODE int __Pyx_modinit_global_init_code(void); /*proto*/ -static CYTHON_SMALL_CODE int __Pyx_modinit_variable_export_code(void); /*proto*/ -static CYTHON_SMALL_CODE int __Pyx_modinit_function_export_code(void); /*proto*/ -static CYTHON_SMALL_CODE int __Pyx_modinit_type_init_code(void); /*proto*/ -static CYTHON_SMALL_CODE int __Pyx_modinit_type_import_code(void); /*proto*/ -static CYTHON_SMALL_CODE int __Pyx_modinit_variable_import_code(void); /*proto*/ -static CYTHON_SMALL_CODE int __Pyx_modinit_function_import_code(void); /*proto*/ - -static int __Pyx_modinit_global_init_code(void) { - __Pyx_RefNannyDeclarations - __Pyx_RefNannySetupContext("__Pyx_modinit_global_init_code", 0); - /*--- Global init code ---*/ - __Pyx_RefNannyFinishContext(); - return 0; -} - -static int __Pyx_modinit_variable_export_code(void) { - __Pyx_RefNannyDeclarations - __Pyx_RefNannySetupContext("__Pyx_modinit_variable_export_code", 0); - /*--- Variable export code ---*/ - __Pyx_RefNannyFinishContext(); - return 0; -} - -static int __Pyx_modinit_function_export_code(void) { - __Pyx_RefNannyDeclarations - __Pyx_RefNannySetupContext("__Pyx_modinit_function_export_code", 0); - /*--- Function export code ---*/ - __Pyx_RefNannyFinishContext(); - return 0; -} - -static int __Pyx_modinit_type_init_code(void) { - __Pyx_RefNannyDeclarations - __Pyx_RefNannySetupContext("__Pyx_modinit_type_init_code", 0); - /*--- Type init code ---*/ - __Pyx_RefNannyFinishContext(); - return 0; -} - -static int __Pyx_modinit_type_import_code(void) { - __Pyx_RefNannyDeclarations - __Pyx_RefNannySetupContext("__Pyx_modinit_type_import_code", 0); - /*--- Type import code ---*/ - __Pyx_RefNannyFinishContext(); - return 0; -} - -static int __Pyx_modinit_variable_import_code(void) { - __Pyx_RefNannyDeclarations - __Pyx_RefNannySetupContext("__Pyx_modinit_variable_import_code", 0); - /*--- Variable import code ---*/ - __Pyx_RefNannyFinishContext(); - return 0; -} - -static int __Pyx_modinit_function_import_code(void) { - __Pyx_RefNannyDeclarations - __Pyx_RefNannySetupContext("__Pyx_modinit_function_import_code", 0); - /*--- Function import code ---*/ - __Pyx_RefNannyFinishContext(); - return 0; -} - - -#if PY_MAJOR_VERSION < 3 -#ifdef CYTHON_NO_PYINIT_EXPORT -#define __Pyx_PyMODINIT_FUNC void -#else -#define __Pyx_PyMODINIT_FUNC PyMODINIT_FUNC -#endif -#else -#ifdef CYTHON_NO_PYINIT_EXPORT -#define __Pyx_PyMODINIT_FUNC PyObject * -#else -#define __Pyx_PyMODINIT_FUNC PyMODINIT_FUNC -#endif -#endif - - -#if PY_MAJOR_VERSION < 3 -__Pyx_PyMODINIT_FUNC inithttp(void) CYTHON_SMALL_CODE; /*proto*/ -__Pyx_PyMODINIT_FUNC inithttp(void) -#else -__Pyx_PyMODINIT_FUNC PyInit_http(void) CYTHON_SMALL_CODE; /*proto*/ -__Pyx_PyMODINIT_FUNC PyInit_http(void) -#if CYTHON_PEP489_MULTI_PHASE_INIT -{ - return PyModuleDef_Init(&__pyx_moduledef); -} -static CYTHON_SMALL_CODE int __Pyx_check_single_interpreter(void) { - #if PY_VERSION_HEX >= 0x030700A1 - static PY_INT64_T main_interpreter_id = -1; - PY_INT64_T current_id = PyInterpreterState_GetID(PyThreadState_Get()->interp); - if (main_interpreter_id == -1) { - main_interpreter_id = current_id; - return (unlikely(current_id == -1)) ? -1 : 0; - } else if (unlikely(main_interpreter_id != current_id)) - #else - static PyInterpreterState *main_interpreter = NULL; - PyInterpreterState *current_interpreter = PyThreadState_Get()->interp; - if (!main_interpreter) { - main_interpreter = current_interpreter; - } else if (unlikely(main_interpreter != current_interpreter)) - #endif - { - PyErr_SetString( - PyExc_ImportError, - "Interpreter change detected - this module can only be loaded into one interpreter per process."); - return -1; - } - return 0; -} -static CYTHON_SMALL_CODE int __Pyx_copy_spec_to_module(PyObject *spec, PyObject *moddict, const char* from_name, const char* to_name, int allow_none) { - PyObject *value = PyObject_GetAttrString(spec, from_name); - int result = 0; - if (likely(value)) { - if (allow_none || value != Py_None) { - result = PyDict_SetItemString(moddict, to_name, value); - } - Py_DECREF(value); - } else if (PyErr_ExceptionMatches(PyExc_AttributeError)) { - PyErr_Clear(); - } else { - result = -1; - } - return result; -} -static CYTHON_SMALL_CODE PyObject* __pyx_pymod_create(PyObject *spec, CYTHON_UNUSED PyModuleDef *def) { - PyObject *module = NULL, *moddict, *modname; - if (__Pyx_check_single_interpreter()) - return NULL; - if (__pyx_m) - return __Pyx_NewRef(__pyx_m); - modname = PyObject_GetAttrString(spec, "name"); - if (unlikely(!modname)) goto bad; - module = PyModule_NewObject(modname); - Py_DECREF(modname); - if (unlikely(!module)) goto bad; - moddict = PyModule_GetDict(module); - if (unlikely(!moddict)) goto bad; - if (unlikely(__Pyx_copy_spec_to_module(spec, moddict, "loader", "__loader__", 1) < 0)) goto bad; - if (unlikely(__Pyx_copy_spec_to_module(spec, moddict, "origin", "__file__", 1) < 0)) goto bad; - if (unlikely(__Pyx_copy_spec_to_module(spec, moddict, "parent", "__package__", 1) < 0)) goto bad; - if (unlikely(__Pyx_copy_spec_to_module(spec, moddict, "submodule_search_locations", "__path__", 0) < 0)) goto bad; - return module; -bad: - Py_XDECREF(module); - return NULL; -} - - -static CYTHON_SMALL_CODE int __pyx_pymod_exec_http(PyObject *__pyx_pyinit_module) -#endif -#endif -{ - PyObject *__pyx_t_1 = NULL; - PyObject *__pyx_t_2 = NULL; - PyObject *__pyx_t_3 = NULL; - PyObject *__pyx_t_4 = NULL; - PyObject *__pyx_t_5 = NULL; - int __pyx_t_6; - __Pyx_RefNannyDeclarations - #if CYTHON_PEP489_MULTI_PHASE_INIT - if (__pyx_m) { - if (__pyx_m == __pyx_pyinit_module) return 0; - PyErr_SetString(PyExc_RuntimeError, "Module 'http' has already been imported. Re-initialisation is not supported."); - return -1; - } - #elif PY_MAJOR_VERSION >= 3 - if (__pyx_m) return __Pyx_NewRef(__pyx_m); - #endif - #if CYTHON_REFNANNY -__Pyx_RefNanny = __Pyx_RefNannyImportAPI("refnanny"); -if (!__Pyx_RefNanny) { - PyErr_Clear(); - __Pyx_RefNanny = __Pyx_RefNannyImportAPI("Cython.Runtime.refnanny"); - if (!__Pyx_RefNanny) - Py_FatalError("failed to import 'refnanny' module"); -} -#endif - __Pyx_RefNannySetupContext("__Pyx_PyMODINIT_FUNC PyInit_http(void)", 0); - if (__Pyx_check_binary_version() < 0) __PYX_ERR(0, 1, __pyx_L1_error) - #ifdef __Pxy_PyFrame_Initialize_Offsets - __Pxy_PyFrame_Initialize_Offsets(); - #endif - __pyx_empty_tuple = PyTuple_New(0); if (unlikely(!__pyx_empty_tuple)) __PYX_ERR(0, 1, __pyx_L1_error) - __pyx_empty_bytes = PyBytes_FromStringAndSize("", 0); if (unlikely(!__pyx_empty_bytes)) __PYX_ERR(0, 1, __pyx_L1_error) - __pyx_empty_unicode = PyUnicode_FromStringAndSize("", 0); if (unlikely(!__pyx_empty_unicode)) __PYX_ERR(0, 1, __pyx_L1_error) - #ifdef __Pyx_CyFunction_USED - if (__pyx_CyFunction_init() < 0) __PYX_ERR(0, 1, __pyx_L1_error) - #endif - #ifdef __Pyx_FusedFunction_USED - if (__pyx_FusedFunction_init() < 0) __PYX_ERR(0, 1, __pyx_L1_error) - #endif - #ifdef __Pyx_Coroutine_USED - if (__pyx_Coroutine_init() < 0) __PYX_ERR(0, 1, __pyx_L1_error) - #endif - #ifdef __Pyx_Generator_USED - if (__pyx_Generator_init() < 0) __PYX_ERR(0, 1, __pyx_L1_error) - #endif - #ifdef __Pyx_AsyncGen_USED - if (__pyx_AsyncGen_init() < 0) __PYX_ERR(0, 1, __pyx_L1_error) - #endif - #ifdef __Pyx_StopAsyncIteration_USED - if (__pyx_StopAsyncIteration_init() < 0) __PYX_ERR(0, 1, __pyx_L1_error) - #endif - /*--- Library function declarations ---*/ - /*--- Threads initialization code ---*/ - #if defined(__PYX_FORCE_INIT_THREADS) && __PYX_FORCE_INIT_THREADS - #ifdef WITH_THREAD /* Python build with threading support? */ - PyEval_InitThreads(); - #endif - #endif - /*--- Module creation code ---*/ - #if CYTHON_PEP489_MULTI_PHASE_INIT - __pyx_m = __pyx_pyinit_module; - Py_INCREF(__pyx_m); - #else - #if PY_MAJOR_VERSION < 3 - __pyx_m = Py_InitModule4("http", __pyx_methods, __pyx_k_Copyright_c_2019_Cisco_Systems, 0, PYTHON_API_VERSION); Py_XINCREF(__pyx_m); - #else - __pyx_m = PyModule_Create(&__pyx_moduledef); - #endif - if (unlikely(!__pyx_m)) __PYX_ERR(0, 1, __pyx_L1_error) - #endif - __pyx_d = PyModule_GetDict(__pyx_m); if (unlikely(!__pyx_d)) __PYX_ERR(0, 1, __pyx_L1_error) - Py_INCREF(__pyx_d); - __pyx_b = PyImport_AddModule(__Pyx_BUILTIN_MODULE_NAME); if (unlikely(!__pyx_b)) __PYX_ERR(0, 1, __pyx_L1_error) - Py_INCREF(__pyx_b); - __pyx_cython_runtime = PyImport_AddModule((char *) "cython_runtime"); if (unlikely(!__pyx_cython_runtime)) __PYX_ERR(0, 1, __pyx_L1_error) - Py_INCREF(__pyx_cython_runtime); - if (PyObject_SetAttrString(__pyx_m, "__builtins__", __pyx_b) < 0) __PYX_ERR(0, 1, __pyx_L1_error); - /*--- Initialize various global constants etc. ---*/ - if (__Pyx_InitGlobals() < 0) __PYX_ERR(0, 1, __pyx_L1_error) - #if PY_MAJOR_VERSION < 3 && (__PYX_DEFAULT_STRING_ENCODING_IS_ASCII || __PYX_DEFAULT_STRING_ENCODING_IS_DEFAULT) - if (__Pyx_init_sys_getdefaultencoding_params() < 0) __PYX_ERR(0, 1, __pyx_L1_error) - #endif - if (__pyx_module_is_main_pmercury__protocols__http) { - if (PyObject_SetAttr(__pyx_m, __pyx_n_s_name_2, __pyx_n_s_main) < 0) __PYX_ERR(0, 1, __pyx_L1_error) - } - #if PY_MAJOR_VERSION >= 3 - { - PyObject *modules = PyImport_GetModuleDict(); if (unlikely(!modules)) __PYX_ERR(0, 1, __pyx_L1_error) - if (!PyDict_GetItemString(modules, "pmercury.protocols.http")) { - if (unlikely(PyDict_SetItemString(modules, "pmercury.protocols.http", __pyx_m) < 0)) __PYX_ERR(0, 1, __pyx_L1_error) - } - } - #endif - /*--- Builtin init code ---*/ - if (__Pyx_InitCachedBuiltins() < 0) goto __pyx_L1_error; - /*--- Constants init code ---*/ - if (__Pyx_InitCachedConstants() < 0) goto __pyx_L1_error; - /*--- Global type/function init code ---*/ - (void)__Pyx_modinit_global_init_code(); - (void)__Pyx_modinit_variable_export_code(); - (void)__Pyx_modinit_function_export_code(); - (void)__Pyx_modinit_type_init_code(); - (void)__Pyx_modinit_type_import_code(); - (void)__Pyx_modinit_variable_import_code(); - (void)__Pyx_modinit_function_import_code(); - /*--- Execution code ---*/ - #if defined(__Pyx_Generator_USED) || defined(__Pyx_Coroutine_USED) - if (__Pyx_patch_abc() < 0) __PYX_ERR(0, 1, __pyx_L1_error) - #endif - - /* "pmercury/protocols/http.pyx":8 - * """ - * - * import os # <<<<<<<<<<<<<< - * import sys - * - */ - __pyx_t_1 = __Pyx_Import(__pyx_n_s_os, 0, 0); if (unlikely(!__pyx_t_1)) __PYX_ERR(0, 8, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_1); - if (PyDict_SetItem(__pyx_d, __pyx_n_s_os, __pyx_t_1) < 0) __PYX_ERR(0, 8, __pyx_L1_error) - __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0; - - /* "pmercury/protocols/http.pyx":9 - * - * import os - * import sys # <<<<<<<<<<<<<< - * - * sys.path.append(os.path.dirname(os.path.abspath(__file__))) - */ - __pyx_t_1 = __Pyx_Import(__pyx_n_s_sys, 0, 0); if (unlikely(!__pyx_t_1)) __PYX_ERR(0, 9, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_1); - if (PyDict_SetItem(__pyx_d, __pyx_n_s_sys, __pyx_t_1) < 0) __PYX_ERR(0, 9, __pyx_L1_error) - __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0; - - /* "pmercury/protocols/http.pyx":11 - * import sys - * - * sys.path.append(os.path.dirname(os.path.abspath(__file__))) # <<<<<<<<<<<<<< - * sys.path.append(os.path.dirname(os.path.abspath(__file__))+'/../') - * from pmercury.protocols.protocol import Protocol - */ - __Pyx_GetModuleGlobalName(__pyx_t_1, __pyx_n_s_sys); if (unlikely(!__pyx_t_1)) __PYX_ERR(0, 11, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_1); - __pyx_t_2 = __Pyx_PyObject_GetAttrStr(__pyx_t_1, __pyx_n_s_path); if (unlikely(!__pyx_t_2)) __PYX_ERR(0, 11, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_2); - __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0; - __Pyx_GetModuleGlobalName(__pyx_t_1, __pyx_n_s_os); if (unlikely(!__pyx_t_1)) __PYX_ERR(0, 11, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_1); - __pyx_t_3 = __Pyx_PyObject_GetAttrStr(__pyx_t_1, __pyx_n_s_path); if (unlikely(!__pyx_t_3)) __PYX_ERR(0, 11, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_3); - __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0; - __pyx_t_1 = __Pyx_PyObject_GetAttrStr(__pyx_t_3, __pyx_n_s_dirname); if (unlikely(!__pyx_t_1)) __PYX_ERR(0, 11, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_1); - __Pyx_DECREF(__pyx_t_3); __pyx_t_3 = 0; - __Pyx_GetModuleGlobalName(__pyx_t_3, __pyx_n_s_os); if (unlikely(!__pyx_t_3)) __PYX_ERR(0, 11, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_3); - __pyx_t_4 = __Pyx_PyObject_GetAttrStr(__pyx_t_3, __pyx_n_s_path); if (unlikely(!__pyx_t_4)) __PYX_ERR(0, 11, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_4); - __Pyx_DECREF(__pyx_t_3); __pyx_t_3 = 0; - __pyx_t_3 = __Pyx_PyObject_GetAttrStr(__pyx_t_4, __pyx_n_s_abspath); if (unlikely(!__pyx_t_3)) __PYX_ERR(0, 11, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_3); - __Pyx_DECREF(__pyx_t_4); __pyx_t_4 = 0; - __Pyx_GetModuleGlobalName(__pyx_t_4, __pyx_n_s_file); if (unlikely(!__pyx_t_4)) __PYX_ERR(0, 11, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_4); - __pyx_t_5 = __Pyx_PyObject_CallOneArg(__pyx_t_3, __pyx_t_4); if (unlikely(!__pyx_t_5)) __PYX_ERR(0, 11, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_5); - __Pyx_DECREF(__pyx_t_3); __pyx_t_3 = 0; - __Pyx_DECREF(__pyx_t_4); __pyx_t_4 = 0; - __pyx_t_4 = __Pyx_PyObject_CallOneArg(__pyx_t_1, __pyx_t_5); if (unlikely(!__pyx_t_4)) __PYX_ERR(0, 11, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_4); - __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0; - __Pyx_DECREF(__pyx_t_5); __pyx_t_5 = 0; - __pyx_t_6 = __Pyx_PyObject_Append(__pyx_t_2, __pyx_t_4); if (unlikely(__pyx_t_6 == ((int)-1))) __PYX_ERR(0, 11, __pyx_L1_error) - __Pyx_DECREF(__pyx_t_2); __pyx_t_2 = 0; - __Pyx_DECREF(__pyx_t_4); __pyx_t_4 = 0; - - /* "pmercury/protocols/http.pyx":12 - * - * sys.path.append(os.path.dirname(os.path.abspath(__file__))) - * sys.path.append(os.path.dirname(os.path.abspath(__file__))+'/../') # <<<<<<<<<<<<<< - * from pmercury.protocols.protocol import Protocol - * - */ - __Pyx_GetModuleGlobalName(__pyx_t_4, __pyx_n_s_sys); if (unlikely(!__pyx_t_4)) __PYX_ERR(0, 12, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_4); - __pyx_t_2 = __Pyx_PyObject_GetAttrStr(__pyx_t_4, __pyx_n_s_path); if (unlikely(!__pyx_t_2)) __PYX_ERR(0, 12, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_2); - __Pyx_DECREF(__pyx_t_4); __pyx_t_4 = 0; - __Pyx_GetModuleGlobalName(__pyx_t_4, __pyx_n_s_os); if (unlikely(!__pyx_t_4)) __PYX_ERR(0, 12, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_4); - __pyx_t_5 = __Pyx_PyObject_GetAttrStr(__pyx_t_4, __pyx_n_s_path); if (unlikely(!__pyx_t_5)) __PYX_ERR(0, 12, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_5); - __Pyx_DECREF(__pyx_t_4); __pyx_t_4 = 0; - __pyx_t_4 = __Pyx_PyObject_GetAttrStr(__pyx_t_5, __pyx_n_s_dirname); if (unlikely(!__pyx_t_4)) __PYX_ERR(0, 12, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_4); - __Pyx_DECREF(__pyx_t_5); __pyx_t_5 = 0; - __Pyx_GetModuleGlobalName(__pyx_t_5, __pyx_n_s_os); if (unlikely(!__pyx_t_5)) __PYX_ERR(0, 12, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_5); - __pyx_t_1 = __Pyx_PyObject_GetAttrStr(__pyx_t_5, __pyx_n_s_path); if (unlikely(!__pyx_t_1)) __PYX_ERR(0, 12, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_1); - __Pyx_DECREF(__pyx_t_5); __pyx_t_5 = 0; - __pyx_t_5 = __Pyx_PyObject_GetAttrStr(__pyx_t_1, __pyx_n_s_abspath); if (unlikely(!__pyx_t_5)) __PYX_ERR(0, 12, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_5); - __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0; - __Pyx_GetModuleGlobalName(__pyx_t_1, __pyx_n_s_file); if (unlikely(!__pyx_t_1)) __PYX_ERR(0, 12, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_1); - __pyx_t_3 = __Pyx_PyObject_CallOneArg(__pyx_t_5, __pyx_t_1); if (unlikely(!__pyx_t_3)) __PYX_ERR(0, 12, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_3); - __Pyx_DECREF(__pyx_t_5); __pyx_t_5 = 0; - __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0; - __pyx_t_1 = __Pyx_PyObject_CallOneArg(__pyx_t_4, __pyx_t_3); if (unlikely(!__pyx_t_1)) __PYX_ERR(0, 12, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_1); - __Pyx_DECREF(__pyx_t_4); __pyx_t_4 = 0; - __Pyx_DECREF(__pyx_t_3); __pyx_t_3 = 0; - __pyx_t_3 = PyNumber_Add(__pyx_t_1, __pyx_kp_u__14); if (unlikely(!__pyx_t_3)) __PYX_ERR(0, 12, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_3); - __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0; - __pyx_t_6 = __Pyx_PyObject_Append(__pyx_t_2, __pyx_t_3); if (unlikely(__pyx_t_6 == ((int)-1))) __PYX_ERR(0, 12, __pyx_L1_error) - __Pyx_DECREF(__pyx_t_2); __pyx_t_2 = 0; - __Pyx_DECREF(__pyx_t_3); __pyx_t_3 = 0; - - /* "pmercury/protocols/http.pyx":13 - * sys.path.append(os.path.dirname(os.path.abspath(__file__))) - * sys.path.append(os.path.dirname(os.path.abspath(__file__))+'/../') - * from pmercury.protocols.protocol import Protocol # <<<<<<<<<<<<<< - * - * - */ - __pyx_t_3 = PyList_New(1); if (unlikely(!__pyx_t_3)) __PYX_ERR(0, 13, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_3); - __Pyx_INCREF(__pyx_n_s_Protocol); - __Pyx_GIVEREF(__pyx_n_s_Protocol); - PyList_SET_ITEM(__pyx_t_3, 0, __pyx_n_s_Protocol); - __pyx_t_2 = __Pyx_Import(__pyx_n_s_pmercury_protocols_protocol, __pyx_t_3, 0); if (unlikely(!__pyx_t_2)) __PYX_ERR(0, 13, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_2); - __Pyx_DECREF(__pyx_t_3); __pyx_t_3 = 0; - __pyx_t_3 = __Pyx_ImportFrom(__pyx_t_2, __pyx_n_s_Protocol); if (unlikely(!__pyx_t_3)) __PYX_ERR(0, 13, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_3); - if (PyDict_SetItem(__pyx_d, __pyx_n_s_Protocol, __pyx_t_3) < 0) __PYX_ERR(0, 13, __pyx_L1_error) - __Pyx_DECREF(__pyx_t_3); __pyx_t_3 = 0; - __Pyx_DECREF(__pyx_t_2); __pyx_t_2 = 0; - - /* "pmercury/protocols/http.pyx":16 - * - * - * class HTTP(Protocol): # <<<<<<<<<<<<<< - * - * def __init__(self, fp_database=None, config=None): - */ - __Pyx_GetModuleGlobalName(__pyx_t_2, __pyx_n_s_Protocol); if (unlikely(!__pyx_t_2)) __PYX_ERR(0, 16, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_2); - __pyx_t_3 = PyTuple_New(1); if (unlikely(!__pyx_t_3)) __PYX_ERR(0, 16, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_3); - __Pyx_GIVEREF(__pyx_t_2); - PyTuple_SET_ITEM(__pyx_t_3, 0, __pyx_t_2); - __pyx_t_2 = 0; - __pyx_t_2 = __Pyx_CalculateMetaclass(NULL, __pyx_t_3); if (unlikely(!__pyx_t_2)) __PYX_ERR(0, 16, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_2); - __pyx_t_1 = __Pyx_Py3MetaclassPrepare(__pyx_t_2, __pyx_t_3, __pyx_n_s_HTTP, __pyx_n_s_HTTP, (PyObject *) NULL, __pyx_n_s_pmercury_protocols_http, (PyObject *) NULL); if (unlikely(!__pyx_t_1)) __PYX_ERR(0, 16, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_1); - - /* "pmercury/protocols/http.pyx":18 - * class HTTP(Protocol): - * - * def __init__(self, fp_database=None, config=None): # <<<<<<<<<<<<<< - * # populate fingerprint databases - * self.fp_db = {} - */ - __pyx_t_4 = __Pyx_CyFunction_NewEx(&__pyx_mdef_8pmercury_9protocols_4http_4HTTP_1__init__, 0, __pyx_n_s_HTTP___init, NULL, __pyx_n_s_pmercury_protocols_http, __pyx_d, ((PyObject *)__pyx_codeobj__16)); if (unlikely(!__pyx_t_4)) __PYX_ERR(0, 18, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_4); - __Pyx_CyFunction_SetDefaultsTuple(__pyx_t_4, __pyx_tuple__17); - if (__Pyx_SetNameInClass(__pyx_t_1, __pyx_n_s_init, __pyx_t_4) < 0) __PYX_ERR(0, 18, __pyx_L1_error) - __Pyx_DECREF(__pyx_t_4); __pyx_t_4 = 0; - - /* "pmercury/protocols/http.pyx":59 - * - * @staticmethod - * def proto_identify(data, offset, data_len): # <<<<<<<<<<<<<< - * if data_len-offset < 16: - * return False - */ - __pyx_t_4 = __Pyx_CyFunction_NewEx(&__pyx_mdef_8pmercury_9protocols_4http_4HTTP_3proto_identify, __Pyx_CYFUNCTION_STATICMETHOD, __pyx_n_s_HTTP_proto_identify, NULL, __pyx_n_s_pmercury_protocols_http, __pyx_d, ((PyObject *)__pyx_codeobj__19)); if (unlikely(!__pyx_t_4)) __PYX_ERR(0, 59, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_4); - - /* "pmercury/protocols/http.pyx":58 - * - * - * @staticmethod # <<<<<<<<<<<<<< - * def proto_identify(data, offset, data_len): - * if data_len-offset < 16: - */ - __pyx_t_5 = __Pyx_PyObject_CallOneArg(__pyx_builtin_staticmethod, __pyx_t_4); if (unlikely(!__pyx_t_5)) __PYX_ERR(0, 58, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_5); - __Pyx_DECREF(__pyx_t_4); __pyx_t_4 = 0; - if (__Pyx_SetNameInClass(__pyx_t_1, __pyx_n_s_proto_identify, __pyx_t_5) < 0) __PYX_ERR(0, 59, __pyx_L1_error) - __Pyx_DECREF(__pyx_t_5); __pyx_t_5 = 0; - - /* "pmercury/protocols/http.pyx":71 - * - * @staticmethod - * def fingerprint(bytes data, unsigned int offset, unsigned int data_len): # <<<<<<<<<<<<<< - * cdef list t_ = data[offset:].split(b'\x0d\x0a', 1) - * cdef list request = t_[0].split() - */ - __pyx_t_5 = __Pyx_CyFunction_NewEx(&__pyx_mdef_8pmercury_9protocols_4http_4HTTP_5fingerprint, __Pyx_CYFUNCTION_STATICMETHOD, __pyx_n_s_HTTP_fingerprint, NULL, __pyx_n_s_pmercury_protocols_http, __pyx_d, ((PyObject *)__pyx_codeobj__21)); if (unlikely(!__pyx_t_5)) __PYX_ERR(0, 71, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_5); - - /* "pmercury/protocols/http.pyx":70 - * - * - * @staticmethod # <<<<<<<<<<<<<< - * def fingerprint(bytes data, unsigned int offset, unsigned int data_len): - * cdef list t_ = data[offset:].split(b'\x0d\x0a', 1) - */ - __pyx_t_4 = __Pyx_PyObject_CallOneArg(__pyx_builtin_staticmethod, __pyx_t_5); if (unlikely(!__pyx_t_4)) __PYX_ERR(0, 70, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_4); - __Pyx_DECREF(__pyx_t_5); __pyx_t_5 = 0; - if (__Pyx_SetNameInClass(__pyx_t_1, __pyx_n_s_fingerprint, __pyx_t_4) < 0) __PYX_ERR(0, 71, __pyx_L1_error) - __Pyx_DECREF(__pyx_t_4); __pyx_t_4 = 0; - - /* "pmercury/protocols/http.pyx":121 - * - * - * def get_human_readable(self, fp_str_): # <<<<<<<<<<<<<< - * t_ = [bytes.fromhex(x[1:]) for x in fp_str_.split(')')[:-1]] - * try: - */ - __pyx_t_4 = __Pyx_CyFunction_NewEx(&__pyx_mdef_8pmercury_9protocols_4http_4HTTP_7get_human_readable, 0, __pyx_n_s_HTTP_get_human_readable, NULL, __pyx_n_s_pmercury_protocols_http, __pyx_d, ((PyObject *)__pyx_codeobj__23)); if (unlikely(!__pyx_t_4)) __PYX_ERR(0, 121, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_4); - if (__Pyx_SetNameInClass(__pyx_t_1, __pyx_n_s_get_human_readable, __pyx_t_4) < 0) __PYX_ERR(0, 121, __pyx_L1_error) - __Pyx_DECREF(__pyx_t_4); __pyx_t_4 = 0; - - /* "pmercury/protocols/http.pyx":142 - * - * - * def proc_identify(self, fp_str_, context_, dst_ip, dst_port, list_procs=0, endpoint=None, approx=True, debug=None): # <<<<<<<<<<<<<< - * return None - * - */ - __pyx_t_4 = __Pyx_CyFunction_NewEx(&__pyx_mdef_8pmercury_9protocols_4http_4HTTP_9proc_identify, 0, __pyx_n_s_HTTP_proc_identify, NULL, __pyx_n_s_pmercury_protocols_http, __pyx_d, ((PyObject *)__pyx_codeobj__25)); if (unlikely(!__pyx_t_4)) __PYX_ERR(0, 142, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_4); - __Pyx_CyFunction_SetDefaultsTuple(__pyx_t_4, __pyx_tuple__26); - if (__Pyx_SetNameInClass(__pyx_t_1, __pyx_n_s_proc_identify, __pyx_t_4) < 0) __PYX_ERR(0, 142, __pyx_L1_error) - __Pyx_DECREF(__pyx_t_4); __pyx_t_4 = 0; - - /* "pmercury/protocols/http.pyx":146 - * - * - * def os_identify(self, fp_str_, list_oses=0): # <<<<<<<<<<<<<< - * return None - */ - __pyx_t_4 = __Pyx_CyFunction_NewEx(&__pyx_mdef_8pmercury_9protocols_4http_4HTTP_11os_identify, 0, __pyx_n_s_HTTP_os_identify, NULL, __pyx_n_s_pmercury_protocols_http, __pyx_d, ((PyObject *)__pyx_codeobj__28)); if (unlikely(!__pyx_t_4)) __PYX_ERR(0, 146, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_4); - __Pyx_CyFunction_SetDefaultsTuple(__pyx_t_4, __pyx_tuple__29); - if (__Pyx_SetNameInClass(__pyx_t_1, __pyx_n_s_os_identify, __pyx_t_4) < 0) __PYX_ERR(0, 146, __pyx_L1_error) - __Pyx_DECREF(__pyx_t_4); __pyx_t_4 = 0; - - /* "pmercury/protocols/http.pyx":16 - * - * - * class HTTP(Protocol): # <<<<<<<<<<<<<< - * - * def __init__(self, fp_database=None, config=None): - */ - __pyx_t_4 = __Pyx_Py3ClassCreate(__pyx_t_2, __pyx_n_s_HTTP, __pyx_t_3, __pyx_t_1, NULL, 0, 0); if (unlikely(!__pyx_t_4)) __PYX_ERR(0, 16, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_4); - if (PyDict_SetItem(__pyx_d, __pyx_n_s_HTTP, __pyx_t_4) < 0) __PYX_ERR(0, 16, __pyx_L1_error) - __Pyx_DECREF(__pyx_t_4); __pyx_t_4 = 0; - __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0; - __Pyx_DECREF(__pyx_t_2); __pyx_t_2 = 0; - __Pyx_DECREF(__pyx_t_3); __pyx_t_3 = 0; - - /* "pmercury/protocols/http.pyx":1 - * #cython: language_level=3, cdivision=True, infer_types=True, initializedcheck=False, c_string_type=bytes, embedsignature=False # <<<<<<<<<<<<<< - * - * """ - */ - __pyx_t_3 = __Pyx_PyDict_NewPresized(0); if (unlikely(!__pyx_t_3)) __PYX_ERR(0, 1, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_3); - if (PyDict_SetItem(__pyx_d, __pyx_n_s_test, __pyx_t_3) < 0) __PYX_ERR(0, 1, __pyx_L1_error) - __Pyx_DECREF(__pyx_t_3); __pyx_t_3 = 0; - - /*--- Wrapped vars code ---*/ - - goto __pyx_L0; - __pyx_L1_error:; - __Pyx_XDECREF(__pyx_t_1); - __Pyx_XDECREF(__pyx_t_2); - __Pyx_XDECREF(__pyx_t_3); - __Pyx_XDECREF(__pyx_t_4); - __Pyx_XDECREF(__pyx_t_5); - if (__pyx_m) { - if (__pyx_d) { - __Pyx_AddTraceback("init pmercury.protocols.http", __pyx_clineno, __pyx_lineno, __pyx_filename); - } - Py_CLEAR(__pyx_m); - } else if (!PyErr_Occurred()) { - PyErr_SetString(PyExc_ImportError, "init pmercury.protocols.http"); - } - __pyx_L0:; - __Pyx_RefNannyFinishContext(); - #if CYTHON_PEP489_MULTI_PHASE_INIT - return (__pyx_m != NULL) ? 0 : -1; - #elif PY_MAJOR_VERSION >= 3 - return __pyx_m; - #else - return; - #endif -} - -/* --- Runtime support code --- */ -/* Refnanny */ -#if CYTHON_REFNANNY -static __Pyx_RefNannyAPIStruct *__Pyx_RefNannyImportAPI(const char *modname) { - PyObject *m = NULL, *p = NULL; - void *r = NULL; - m = PyImport_ImportModule(modname); - if (!m) goto end; - p = PyObject_GetAttrString(m, "RefNannyAPI"); - if (!p) goto end; - r = PyLong_AsVoidPtr(p); -end: - Py_XDECREF(p); - Py_XDECREF(m); - return (__Pyx_RefNannyAPIStruct *)r; -} -#endif - -/* PyObjectGetAttrStr */ -#if CYTHON_USE_TYPE_SLOTS -static CYTHON_INLINE PyObject* __Pyx_PyObject_GetAttrStr(PyObject* obj, PyObject* attr_name) { - PyTypeObject* tp = Py_TYPE(obj); - if (likely(tp->tp_getattro)) - return tp->tp_getattro(obj, attr_name); -#if PY_MAJOR_VERSION < 3 - if (likely(tp->tp_getattr)) - return tp->tp_getattr(obj, PyString_AS_STRING(attr_name)); -#endif - return PyObject_GetAttr(obj, attr_name); -} -#endif - -/* GetBuiltinName */ -static PyObject *__Pyx_GetBuiltinName(PyObject *name) { - PyObject* result = __Pyx_PyObject_GetAttrStr(__pyx_b, name); - if (unlikely(!result)) { - PyErr_Format(PyExc_NameError, -#if PY_MAJOR_VERSION >= 3 - "name '%U' is not defined", name); -#else - "name '%.200s' is not defined", PyString_AS_STRING(name)); -#endif - } - return result; -} - -/* RaiseDoubleKeywords */ -static void __Pyx_RaiseDoubleKeywordsError( - const char* func_name, - PyObject* kw_name) -{ - PyErr_Format(PyExc_TypeError, - #if PY_MAJOR_VERSION >= 3 - "%s() got multiple values for keyword argument '%U'", func_name, kw_name); - #else - "%s() got multiple values for keyword argument '%s'", func_name, - PyString_AsString(kw_name)); - #endif -} - -/* ParseKeywords */ -static int __Pyx_ParseOptionalKeywords( - PyObject *kwds, - PyObject **argnames[], - PyObject *kwds2, - PyObject *values[], - Py_ssize_t num_pos_args, - const char* function_name) -{ - PyObject *key = 0, *value = 0; - Py_ssize_t pos = 0; - PyObject*** name; - PyObject*** first_kw_arg = argnames + num_pos_args; - while (PyDict_Next(kwds, &pos, &key, &value)) { - name = first_kw_arg; - while (*name && (**name != key)) name++; - if (*name) { - values[name-argnames] = value; - continue; - } - name = first_kw_arg; - #if PY_MAJOR_VERSION < 3 - if (likely(PyString_CheckExact(key)) || likely(PyString_Check(key))) { - while (*name) { - if ((CYTHON_COMPILING_IN_PYPY || PyString_GET_SIZE(**name) == PyString_GET_SIZE(key)) - && _PyString_Eq(**name, key)) { - values[name-argnames] = value; - break; - } - name++; - } - if (*name) continue; - else { - PyObject*** argname = argnames; - while (argname != first_kw_arg) { - if ((**argname == key) || ( - (CYTHON_COMPILING_IN_PYPY || PyString_GET_SIZE(**argname) == PyString_GET_SIZE(key)) - && _PyString_Eq(**argname, key))) { - goto arg_passed_twice; - } - argname++; - } - } - } else - #endif - if (likely(PyUnicode_Check(key))) { - while (*name) { - int cmp = (**name == key) ? 0 : - #if !CYTHON_COMPILING_IN_PYPY && PY_MAJOR_VERSION >= 3 - (PyUnicode_GET_SIZE(**name) != PyUnicode_GET_SIZE(key)) ? 1 : - #endif - PyUnicode_Compare(**name, key); - if (cmp < 0 && unlikely(PyErr_Occurred())) goto bad; - if (cmp == 0) { - values[name-argnames] = value; - break; - } - name++; - } - if (*name) continue; - else { - PyObject*** argname = argnames; - while (argname != first_kw_arg) { - int cmp = (**argname == key) ? 0 : - #if !CYTHON_COMPILING_IN_PYPY && PY_MAJOR_VERSION >= 3 - (PyUnicode_GET_SIZE(**argname) != PyUnicode_GET_SIZE(key)) ? 1 : - #endif - PyUnicode_Compare(**argname, key); - if (cmp < 0 && unlikely(PyErr_Occurred())) goto bad; - if (cmp == 0) goto arg_passed_twice; - argname++; - } - } - } else - goto invalid_keyword_type; - if (kwds2) { - if (unlikely(PyDict_SetItem(kwds2, key, value))) goto bad; - } else { - goto invalid_keyword; - } - } - return 0; -arg_passed_twice: - __Pyx_RaiseDoubleKeywordsError(function_name, key); - goto bad; -invalid_keyword_type: - PyErr_Format(PyExc_TypeError, - "%.200s() keywords must be strings", function_name); - goto bad; -invalid_keyword: - PyErr_Format(PyExc_TypeError, - #if PY_MAJOR_VERSION < 3 - "%.200s() got an unexpected keyword argument '%.200s'", - function_name, PyString_AsString(key)); - #else - "%s() got an unexpected keyword argument '%U'", - function_name, key); - #endif -bad: - return -1; -} - -/* RaiseArgTupleInvalid */ -static void __Pyx_RaiseArgtupleInvalid( - const char* func_name, - int exact, - Py_ssize_t num_min, - Py_ssize_t num_max, - Py_ssize_t num_found) -{ - Py_ssize_t num_expected; - const char *more_or_less; - if (num_found < num_min) { - num_expected = num_min; - more_or_less = "at least"; - } else { - num_expected = num_max; - more_or_less = "at most"; - } - if (exact) { - more_or_less = "exactly"; - } - PyErr_Format(PyExc_TypeError, - "%.200s() takes %.8s %" CYTHON_FORMAT_SSIZE_T "d positional argument%.1s (%" CYTHON_FORMAT_SSIZE_T "d given)", - func_name, more_or_less, num_expected, - (num_expected == 1) ? "" : "s", num_found); -} - -/* PyFunctionFastCall */ -#if CYTHON_FAST_PYCALL -static PyObject* __Pyx_PyFunction_FastCallNoKw(PyCodeObject *co, PyObject **args, Py_ssize_t na, - PyObject *globals) { - PyFrameObject *f; - PyThreadState *tstate = __Pyx_PyThreadState_Current; - PyObject **fastlocals; - Py_ssize_t i; - PyObject *result; - assert(globals != NULL); - /* XXX Perhaps we should create a specialized - PyFrame_New() that doesn't take locals, but does - take builtins without sanity checking them. - */ - assert(tstate != NULL); - f = PyFrame_New(tstate, co, globals, NULL); - if (f == NULL) { - return NULL; - } - fastlocals = __Pyx_PyFrame_GetLocalsplus(f); - for (i = 0; i < na; i++) { - Py_INCREF(*args); - fastlocals[i] = *args++; - } - result = PyEval_EvalFrameEx(f,0); - ++tstate->recursion_depth; - Py_DECREF(f); - --tstate->recursion_depth; - return result; -} -#if 1 || PY_VERSION_HEX < 0x030600B1 -static PyObject *__Pyx_PyFunction_FastCallDict(PyObject *func, PyObject **args, Py_ssize_t nargs, PyObject *kwargs) { - PyCodeObject *co = (PyCodeObject *)PyFunction_GET_CODE(func); - PyObject *globals = PyFunction_GET_GLOBALS(func); - PyObject *argdefs = PyFunction_GET_DEFAULTS(func); - PyObject *closure; -#if PY_MAJOR_VERSION >= 3 - PyObject *kwdefs; -#endif - PyObject *kwtuple, **k; - PyObject **d; - Py_ssize_t nd; - Py_ssize_t nk; - PyObject *result; - assert(kwargs == NULL || PyDict_Check(kwargs)); - nk = kwargs ? PyDict_Size(kwargs) : 0; - if (Py_EnterRecursiveCall((char*)" while calling a Python object")) { - return NULL; - } - if ( -#if PY_MAJOR_VERSION >= 3 - co->co_kwonlyargcount == 0 && -#endif - likely(kwargs == NULL || nk == 0) && - co->co_flags == (CO_OPTIMIZED | CO_NEWLOCALS | CO_NOFREE)) { - if (argdefs == NULL && co->co_argcount == nargs) { - result = __Pyx_PyFunction_FastCallNoKw(co, args, nargs, globals); - goto done; - } - else if (nargs == 0 && argdefs != NULL - && co->co_argcount == Py_SIZE(argdefs)) { - /* function called with no arguments, but all parameters have - a default value: use default values as arguments .*/ - args = &PyTuple_GET_ITEM(argdefs, 0); - result =__Pyx_PyFunction_FastCallNoKw(co, args, Py_SIZE(argdefs), globals); - goto done; - } - } - if (kwargs != NULL) { - Py_ssize_t pos, i; - kwtuple = PyTuple_New(2 * nk); - if (kwtuple == NULL) { - result = NULL; - goto done; - } - k = &PyTuple_GET_ITEM(kwtuple, 0); - pos = i = 0; - while (PyDict_Next(kwargs, &pos, &k[i], &k[i+1])) { - Py_INCREF(k[i]); - Py_INCREF(k[i+1]); - i += 2; - } - nk = i / 2; - } - else { - kwtuple = NULL; - k = NULL; - } - closure = PyFunction_GET_CLOSURE(func); -#if PY_MAJOR_VERSION >= 3 - kwdefs = PyFunction_GET_KW_DEFAULTS(func); -#endif - if (argdefs != NULL) { - d = &PyTuple_GET_ITEM(argdefs, 0); - nd = Py_SIZE(argdefs); - } - else { - d = NULL; - nd = 0; - } -#if PY_MAJOR_VERSION >= 3 - result = PyEval_EvalCodeEx((PyObject*)co, globals, (PyObject *)NULL, - args, (int)nargs, - k, (int)nk, - d, (int)nd, kwdefs, closure); -#else - result = PyEval_EvalCodeEx(co, globals, (PyObject *)NULL, - args, (int)nargs, - k, (int)nk, - d, (int)nd, closure); -#endif - Py_XDECREF(kwtuple); -done: - Py_LeaveRecursiveCall(); - return result; -} -#endif -#endif - -/* PyObjectCall */ -#if CYTHON_COMPILING_IN_CPYTHON -static CYTHON_INLINE PyObject* __Pyx_PyObject_Call(PyObject *func, PyObject *arg, PyObject *kw) { - PyObject *result; - ternaryfunc call = func->ob_type->tp_call; - if (unlikely(!call)) - return PyObject_Call(func, arg, kw); - if (unlikely(Py_EnterRecursiveCall((char*)" while calling a Python object"))) - return NULL; - result = (*call)(func, arg, kw); - Py_LeaveRecursiveCall(); - if (unlikely(!result) && unlikely(!PyErr_Occurred())) { - PyErr_SetString( - PyExc_SystemError, - "NULL result without error in PyObject_Call"); - } - return result; -} -#endif - -/* PyObjectCallMethO */ -#if CYTHON_COMPILING_IN_CPYTHON -static CYTHON_INLINE PyObject* __Pyx_PyObject_CallMethO(PyObject *func, PyObject *arg) { - PyObject *self, *result; - PyCFunction cfunc; - cfunc = PyCFunction_GET_FUNCTION(func); - self = PyCFunction_GET_SELF(func); - if (unlikely(Py_EnterRecursiveCall((char*)" while calling a Python object"))) - return NULL; - result = cfunc(self, arg); - Py_LeaveRecursiveCall(); - if (unlikely(!result) && unlikely(!PyErr_Occurred())) { - PyErr_SetString( - PyExc_SystemError, - "NULL result without error in PyObject_Call"); - } - return result; -} -#endif - -/* PyObjectCallNoArg */ -#if CYTHON_COMPILING_IN_CPYTHON -static CYTHON_INLINE PyObject* __Pyx_PyObject_CallNoArg(PyObject *func) { -#if CYTHON_FAST_PYCALL - if (PyFunction_Check(func)) { - return __Pyx_PyFunction_FastCall(func, NULL, 0); - } -#endif -#ifdef __Pyx_CyFunction_USED - if (likely(PyCFunction_Check(func) || __Pyx_CyFunction_Check(func))) -#else - if (likely(PyCFunction_Check(func))) -#endif - { - if (likely(PyCFunction_GET_FLAGS(func) & METH_NOARGS)) { - return __Pyx_PyObject_CallMethO(func, NULL); - } - } - return __Pyx_PyObject_Call(func, __pyx_empty_tuple, NULL); -} -#endif - -/* PyCFunctionFastCall */ -#if CYTHON_FAST_PYCCALL -static CYTHON_INLINE PyObject * __Pyx_PyCFunction_FastCall(PyObject *func_obj, PyObject **args, Py_ssize_t nargs) { - PyCFunctionObject *func = (PyCFunctionObject*)func_obj; - PyCFunction meth = PyCFunction_GET_FUNCTION(func); - PyObject *self = PyCFunction_GET_SELF(func); - int flags = PyCFunction_GET_FLAGS(func); - assert(PyCFunction_Check(func)); - assert(METH_FASTCALL == (flags & ~(METH_CLASS | METH_STATIC | METH_COEXIST | METH_KEYWORDS | METH_STACKLESS))); - assert(nargs >= 0); - assert(nargs == 0 || args != NULL); - /* _PyCFunction_FastCallDict() must not be called with an exception set, - because it may clear it (directly or indirectly) and so the - caller loses its exception */ - assert(!PyErr_Occurred()); - if ((PY_VERSION_HEX < 0x030700A0) || unlikely(flags & METH_KEYWORDS)) { - return (*((__Pyx_PyCFunctionFastWithKeywords)(void*)meth)) (self, args, nargs, NULL); - } else { - return (*((__Pyx_PyCFunctionFast)(void*)meth)) (self, args, nargs); - } -} -#endif - -/* PyObjectCallOneArg */ -#if CYTHON_COMPILING_IN_CPYTHON -static PyObject* __Pyx__PyObject_CallOneArg(PyObject *func, PyObject *arg) { - PyObject *result; - PyObject *args = PyTuple_New(1); - if (unlikely(!args)) return NULL; - Py_INCREF(arg); - PyTuple_SET_ITEM(args, 0, arg); - result = __Pyx_PyObject_Call(func, args, NULL); - Py_DECREF(args); - return result; -} -static CYTHON_INLINE PyObject* __Pyx_PyObject_CallOneArg(PyObject *func, PyObject *arg) { -#if CYTHON_FAST_PYCALL - if (PyFunction_Check(func)) { - return __Pyx_PyFunction_FastCall(func, &arg, 1); - } -#endif - if (likely(PyCFunction_Check(func))) { - if (likely(PyCFunction_GET_FLAGS(func) & METH_O)) { - return __Pyx_PyObject_CallMethO(func, arg); -#if CYTHON_FAST_PYCCALL - } else if (PyCFunction_GET_FLAGS(func) & METH_FASTCALL) { - return __Pyx_PyCFunction_FastCall(func, &arg, 1); -#endif - } - } - return __Pyx__PyObject_CallOneArg(func, arg); -} -#else -static CYTHON_INLINE PyObject* __Pyx_PyObject_CallOneArg(PyObject *func, PyObject *arg) { - PyObject *result; - PyObject *args = PyTuple_Pack(1, arg); - if (unlikely(!args)) return NULL; - result = __Pyx_PyObject_Call(func, args, NULL); - Py_DECREF(args); - return result; -} -#endif - -/* PyObjectSetAttrStr */ -#if CYTHON_USE_TYPE_SLOTS -static CYTHON_INLINE int __Pyx_PyObject_SetAttrStr(PyObject* obj, PyObject* attr_name, PyObject* value) { - PyTypeObject* tp = Py_TYPE(obj); - if (likely(tp->tp_setattro)) - return tp->tp_setattro(obj, attr_name, value); -#if PY_MAJOR_VERSION < 3 - if (likely(tp->tp_setattr)) - return tp->tp_setattr(obj, PyString_AS_STRING(attr_name), value); -#endif - return PyObject_SetAttr(obj, attr_name, value); -} -#endif - -/* PyDictVersioning */ -#if CYTHON_USE_DICT_VERSIONS && CYTHON_USE_TYPE_SLOTS -static CYTHON_INLINE PY_UINT64_T __Pyx_get_tp_dict_version(PyObject *obj) { - PyObject *dict = Py_TYPE(obj)->tp_dict; - return likely(dict) ? __PYX_GET_DICT_VERSION(dict) : 0; -} -static CYTHON_INLINE PY_UINT64_T __Pyx_get_object_dict_version(PyObject *obj) { - PyObject **dictptr = NULL; - Py_ssize_t offset = Py_TYPE(obj)->tp_dictoffset; - if (offset) { -#if CYTHON_COMPILING_IN_CPYTHON - dictptr = (likely(offset > 0)) ? (PyObject **) ((char *)obj + offset) : _PyObject_GetDictPtr(obj); -#else - dictptr = _PyObject_GetDictPtr(obj); -#endif - } - return (dictptr && *dictptr) ? __PYX_GET_DICT_VERSION(*dictptr) : 0; -} -static CYTHON_INLINE int __Pyx_object_dict_version_matches(PyObject* obj, PY_UINT64_T tp_dict_version, PY_UINT64_T obj_dict_version) { - PyObject *dict = Py_TYPE(obj)->tp_dict; - if (unlikely(!dict) || unlikely(tp_dict_version != __PYX_GET_DICT_VERSION(dict))) - return 0; - return obj_dict_version == __Pyx_get_object_dict_version(obj); -} -#endif - -/* GetModuleGlobalName */ -#if CYTHON_USE_DICT_VERSIONS -static PyObject *__Pyx__GetModuleGlobalName(PyObject *name, PY_UINT64_T *dict_version, PyObject **dict_cached_value) -#else -static CYTHON_INLINE PyObject *__Pyx__GetModuleGlobalName(PyObject *name) -#endif -{ - PyObject *result; -#if !CYTHON_AVOID_BORROWED_REFS -#if CYTHON_COMPILING_IN_CPYTHON && PY_VERSION_HEX >= 0x030500A1 - result = _PyDict_GetItem_KnownHash(__pyx_d, name, ((PyASCIIObject *) name)->hash); - __PYX_UPDATE_DICT_CACHE(__pyx_d, result, *dict_cached_value, *dict_version) - if (likely(result)) { - return __Pyx_NewRef(result); - } else if (unlikely(PyErr_Occurred())) { - return NULL; - } -#else - result = PyDict_GetItem(__pyx_d, name); - __PYX_UPDATE_DICT_CACHE(__pyx_d, result, *dict_cached_value, *dict_version) - if (likely(result)) { - return __Pyx_NewRef(result); - } -#endif -#else - result = PyObject_GetItem(__pyx_d, name); - __PYX_UPDATE_DICT_CACHE(__pyx_d, result, *dict_cached_value, *dict_version) - if (likely(result)) { - return __Pyx_NewRef(result); - } - PyErr_Clear(); -#endif - return __Pyx_GetBuiltinName(name); -} - -/* DictGetItem */ -#if PY_MAJOR_VERSION >= 3 && !CYTHON_COMPILING_IN_PYPY -static PyObject *__Pyx_PyDict_GetItem(PyObject *d, PyObject* key) { - PyObject *value; - value = PyDict_GetItemWithError(d, key); - if (unlikely(!value)) { - if (!PyErr_Occurred()) { - if (unlikely(PyTuple_Check(key))) { - PyObject* args = PyTuple_Pack(1, key); - if (likely(args)) { - PyErr_SetObject(PyExc_KeyError, args); - Py_DECREF(args); - } - } else { - PyErr_SetObject(PyExc_KeyError, key); - } - } - return NULL; - } - Py_INCREF(value); - return value; -} -#endif - -/* FetchCommonType */ -static PyTypeObject* __Pyx_FetchCommonType(PyTypeObject* type) { - PyObject* fake_module; - PyTypeObject* cached_type = NULL; - fake_module = PyImport_AddModule((char*) "_cython_" CYTHON_ABI); - if (!fake_module) return NULL; - Py_INCREF(fake_module); - cached_type = (PyTypeObject*) PyObject_GetAttrString(fake_module, type->tp_name); - if (cached_type) { - if (!PyType_Check((PyObject*)cached_type)) { - PyErr_Format(PyExc_TypeError, - "Shared Cython type %.200s is not a type object", - type->tp_name); - goto bad; - } - if (cached_type->tp_basicsize != type->tp_basicsize) { - PyErr_Format(PyExc_TypeError, - "Shared Cython type %.200s has the wrong size, try recompiling", - type->tp_name); - goto bad; - } - } else { - if (!PyErr_ExceptionMatches(PyExc_AttributeError)) goto bad; - PyErr_Clear(); - if (PyType_Ready(type) < 0) goto bad; - if (PyObject_SetAttrString(fake_module, type->tp_name, (PyObject*) type) < 0) - goto bad; - Py_INCREF(type); - cached_type = type; - } -done: - Py_DECREF(fake_module); - return cached_type; -bad: - Py_XDECREF(cached_type); - cached_type = NULL; - goto done; -} - -/* CythonFunction */ -#include -static PyObject * -__Pyx_CyFunction_get_doc(__pyx_CyFunctionObject *op, CYTHON_UNUSED void *closure) -{ - if (unlikely(op->func_doc == NULL)) { - if (op->func.m_ml->ml_doc) { -#if PY_MAJOR_VERSION >= 3 - op->func_doc = PyUnicode_FromString(op->func.m_ml->ml_doc); -#else - op->func_doc = PyString_FromString(op->func.m_ml->ml_doc); -#endif - if (unlikely(op->func_doc == NULL)) - return NULL; - } else { - Py_INCREF(Py_None); - return Py_None; - } - } - Py_INCREF(op->func_doc); - return op->func_doc; -} -static int -__Pyx_CyFunction_set_doc(__pyx_CyFunctionObject *op, PyObject *value, CYTHON_UNUSED void *context) -{ - PyObject *tmp = op->func_doc; - if (value == NULL) { - value = Py_None; - } - Py_INCREF(value); - op->func_doc = value; - Py_XDECREF(tmp); - return 0; -} -static PyObject * -__Pyx_CyFunction_get_name(__pyx_CyFunctionObject *op, CYTHON_UNUSED void *context) -{ - if (unlikely(op->func_name == NULL)) { -#if PY_MAJOR_VERSION >= 3 - op->func_name = PyUnicode_InternFromString(op->func.m_ml->ml_name); -#else - op->func_name = PyString_InternFromString(op->func.m_ml->ml_name); -#endif - if (unlikely(op->func_name == NULL)) - return NULL; - } - Py_INCREF(op->func_name); - return op->func_name; -} -static int -__Pyx_CyFunction_set_name(__pyx_CyFunctionObject *op, PyObject *value, CYTHON_UNUSED void *context) -{ - PyObject *tmp; -#if PY_MAJOR_VERSION >= 3 - if (unlikely(value == NULL || !PyUnicode_Check(value))) -#else - if (unlikely(value == NULL || !PyString_Check(value))) -#endif - { - PyErr_SetString(PyExc_TypeError, - "__name__ must be set to a string object"); - return -1; - } - tmp = op->func_name; - Py_INCREF(value); - op->func_name = value; - Py_XDECREF(tmp); - return 0; -} -static PyObject * -__Pyx_CyFunction_get_qualname(__pyx_CyFunctionObject *op, CYTHON_UNUSED void *context) -{ - Py_INCREF(op->func_qualname); - return op->func_qualname; -} -static int -__Pyx_CyFunction_set_qualname(__pyx_CyFunctionObject *op, PyObject *value, CYTHON_UNUSED void *context) -{ - PyObject *tmp; -#if PY_MAJOR_VERSION >= 3 - if (unlikely(value == NULL || !PyUnicode_Check(value))) -#else - if (unlikely(value == NULL || !PyString_Check(value))) -#endif - { - PyErr_SetString(PyExc_TypeError, - "__qualname__ must be set to a string object"); - return -1; - } - tmp = op->func_qualname; - Py_INCREF(value); - op->func_qualname = value; - Py_XDECREF(tmp); - return 0; -} -static PyObject * -__Pyx_CyFunction_get_self(__pyx_CyFunctionObject *m, CYTHON_UNUSED void *closure) -{ - PyObject *self; - self = m->func_closure; - if (self == NULL) - self = Py_None; - Py_INCREF(self); - return self; -} -static PyObject * -__Pyx_CyFunction_get_dict(__pyx_CyFunctionObject *op, CYTHON_UNUSED void *context) -{ - if (unlikely(op->func_dict == NULL)) { - op->func_dict = PyDict_New(); - if (unlikely(op->func_dict == NULL)) - return NULL; - } - Py_INCREF(op->func_dict); - return op->func_dict; -} -static int -__Pyx_CyFunction_set_dict(__pyx_CyFunctionObject *op, PyObject *value, CYTHON_UNUSED void *context) -{ - PyObject *tmp; - if (unlikely(value == NULL)) { - PyErr_SetString(PyExc_TypeError, - "function's dictionary may not be deleted"); - return -1; - } - if (unlikely(!PyDict_Check(value))) { - PyErr_SetString(PyExc_TypeError, - "setting function's dictionary to a non-dict"); - return -1; - } - tmp = op->func_dict; - Py_INCREF(value); - op->func_dict = value; - Py_XDECREF(tmp); - return 0; -} -static PyObject * -__Pyx_CyFunction_get_globals(__pyx_CyFunctionObject *op, CYTHON_UNUSED void *context) -{ - Py_INCREF(op->func_globals); - return op->func_globals; -} -static PyObject * -__Pyx_CyFunction_get_closure(CYTHON_UNUSED __pyx_CyFunctionObject *op, CYTHON_UNUSED void *context) -{ - Py_INCREF(Py_None); - return Py_None; -} -static PyObject * -__Pyx_CyFunction_get_code(__pyx_CyFunctionObject *op, CYTHON_UNUSED void *context) -{ - PyObject* result = (op->func_code) ? op->func_code : Py_None; - Py_INCREF(result); - return result; -} -static int -__Pyx_CyFunction_init_defaults(__pyx_CyFunctionObject *op) { - int result = 0; - PyObject *res = op->defaults_getter((PyObject *) op); - if (unlikely(!res)) - return -1; - #if CYTHON_ASSUME_SAFE_MACROS && !CYTHON_AVOID_BORROWED_REFS - op->defaults_tuple = PyTuple_GET_ITEM(res, 0); - Py_INCREF(op->defaults_tuple); - op->defaults_kwdict = PyTuple_GET_ITEM(res, 1); - Py_INCREF(op->defaults_kwdict); - #else - op->defaults_tuple = PySequence_ITEM(res, 0); - if (unlikely(!op->defaults_tuple)) result = -1; - else { - op->defaults_kwdict = PySequence_ITEM(res, 1); - if (unlikely(!op->defaults_kwdict)) result = -1; - } - #endif - Py_DECREF(res); - return result; -} -static int -__Pyx_CyFunction_set_defaults(__pyx_CyFunctionObject *op, PyObject* value, CYTHON_UNUSED void *context) { - PyObject* tmp; - if (!value) { - value = Py_None; - } else if (value != Py_None && !PyTuple_Check(value)) { - PyErr_SetString(PyExc_TypeError, - "__defaults__ must be set to a tuple object"); - return -1; - } - Py_INCREF(value); - tmp = op->defaults_tuple; - op->defaults_tuple = value; - Py_XDECREF(tmp); - return 0; -} -static PyObject * -__Pyx_CyFunction_get_defaults(__pyx_CyFunctionObject *op, CYTHON_UNUSED void *context) { - PyObject* result = op->defaults_tuple; - if (unlikely(!result)) { - if (op->defaults_getter) { - if (__Pyx_CyFunction_init_defaults(op) < 0) return NULL; - result = op->defaults_tuple; - } else { - result = Py_None; - } - } - Py_INCREF(result); - return result; -} -static int -__Pyx_CyFunction_set_kwdefaults(__pyx_CyFunctionObject *op, PyObject* value, CYTHON_UNUSED void *context) { - PyObject* tmp; - if (!value) { - value = Py_None; - } else if (value != Py_None && !PyDict_Check(value)) { - PyErr_SetString(PyExc_TypeError, - "__kwdefaults__ must be set to a dict object"); - return -1; - } - Py_INCREF(value); - tmp = op->defaults_kwdict; - op->defaults_kwdict = value; - Py_XDECREF(tmp); - return 0; -} -static PyObject * -__Pyx_CyFunction_get_kwdefaults(__pyx_CyFunctionObject *op, CYTHON_UNUSED void *context) { - PyObject* result = op->defaults_kwdict; - if (unlikely(!result)) { - if (op->defaults_getter) { - if (__Pyx_CyFunction_init_defaults(op) < 0) return NULL; - result = op->defaults_kwdict; - } else { - result = Py_None; - } - } - Py_INCREF(result); - return result; -} -static int -__Pyx_CyFunction_set_annotations(__pyx_CyFunctionObject *op, PyObject* value, CYTHON_UNUSED void *context) { - PyObject* tmp; - if (!value || value == Py_None) { - value = NULL; - } else if (!PyDict_Check(value)) { - PyErr_SetString(PyExc_TypeError, - "__annotations__ must be set to a dict object"); - return -1; - } - Py_XINCREF(value); - tmp = op->func_annotations; - op->func_annotations = value; - Py_XDECREF(tmp); - return 0; -} -static PyObject * -__Pyx_CyFunction_get_annotations(__pyx_CyFunctionObject *op, CYTHON_UNUSED void *context) { - PyObject* result = op->func_annotations; - if (unlikely(!result)) { - result = PyDict_New(); - if (unlikely(!result)) return NULL; - op->func_annotations = result; - } - Py_INCREF(result); - return result; -} -static PyGetSetDef __pyx_CyFunction_getsets[] = { - {(char *) "func_doc", (getter)__Pyx_CyFunction_get_doc, (setter)__Pyx_CyFunction_set_doc, 0, 0}, - {(char *) "__doc__", (getter)__Pyx_CyFunction_get_doc, (setter)__Pyx_CyFunction_set_doc, 0, 0}, - {(char *) "func_name", (getter)__Pyx_CyFunction_get_name, (setter)__Pyx_CyFunction_set_name, 0, 0}, - {(char *) "__name__", (getter)__Pyx_CyFunction_get_name, (setter)__Pyx_CyFunction_set_name, 0, 0}, - {(char *) "__qualname__", (getter)__Pyx_CyFunction_get_qualname, (setter)__Pyx_CyFunction_set_qualname, 0, 0}, - {(char *) "__self__", (getter)__Pyx_CyFunction_get_self, 0, 0, 0}, - {(char *) "func_dict", (getter)__Pyx_CyFunction_get_dict, (setter)__Pyx_CyFunction_set_dict, 0, 0}, - {(char *) "__dict__", (getter)__Pyx_CyFunction_get_dict, (setter)__Pyx_CyFunction_set_dict, 0, 0}, - {(char *) "func_globals", (getter)__Pyx_CyFunction_get_globals, 0, 0, 0}, - {(char *) "__globals__", (getter)__Pyx_CyFunction_get_globals, 0, 0, 0}, - {(char *) "func_closure", (getter)__Pyx_CyFunction_get_closure, 0, 0, 0}, - {(char *) "__closure__", (getter)__Pyx_CyFunction_get_closure, 0, 0, 0}, - {(char *) "func_code", (getter)__Pyx_CyFunction_get_code, 0, 0, 0}, - {(char *) "__code__", (getter)__Pyx_CyFunction_get_code, 0, 0, 0}, - {(char *) "func_defaults", (getter)__Pyx_CyFunction_get_defaults, (setter)__Pyx_CyFunction_set_defaults, 0, 0}, - {(char *) "__defaults__", (getter)__Pyx_CyFunction_get_defaults, (setter)__Pyx_CyFunction_set_defaults, 0, 0}, - {(char *) "__kwdefaults__", (getter)__Pyx_CyFunction_get_kwdefaults, (setter)__Pyx_CyFunction_set_kwdefaults, 0, 0}, - {(char *) "__annotations__", (getter)__Pyx_CyFunction_get_annotations, (setter)__Pyx_CyFunction_set_annotations, 0, 0}, - {0, 0, 0, 0, 0} -}; -static PyMemberDef __pyx_CyFunction_members[] = { - {(char *) "__module__", T_OBJECT, offsetof(PyCFunctionObject, m_module), PY_WRITE_RESTRICTED, 0}, - {0, 0, 0, 0, 0} -}; -static PyObject * -__Pyx_CyFunction_reduce(__pyx_CyFunctionObject *m, CYTHON_UNUSED PyObject *args) -{ -#if PY_MAJOR_VERSION >= 3 - return PyUnicode_FromString(m->func.m_ml->ml_name); -#else - return PyString_FromString(m->func.m_ml->ml_name); -#endif -} -static PyMethodDef __pyx_CyFunction_methods[] = { - {"__reduce__", (PyCFunction)__Pyx_CyFunction_reduce, METH_VARARGS, 0}, - {0, 0, 0, 0} -}; -#if PY_VERSION_HEX < 0x030500A0 -#define __Pyx_CyFunction_weakreflist(cyfunc) ((cyfunc)->func_weakreflist) -#else -#define __Pyx_CyFunction_weakreflist(cyfunc) ((cyfunc)->func.m_weakreflist) -#endif -static PyObject *__Pyx_CyFunction_New(PyTypeObject *type, PyMethodDef *ml, int flags, PyObject* qualname, - PyObject *closure, PyObject *module, PyObject* globals, PyObject* code) { - __pyx_CyFunctionObject *op = PyObject_GC_New(__pyx_CyFunctionObject, type); - if (op == NULL) - return NULL; - op->flags = flags; - __Pyx_CyFunction_weakreflist(op) = NULL; - op->func.m_ml = ml; - op->func.m_self = (PyObject *) op; - Py_XINCREF(closure); - op->func_closure = closure; - Py_XINCREF(module); - op->func.m_module = module; - op->func_dict = NULL; - op->func_name = NULL; - Py_INCREF(qualname); - op->func_qualname = qualname; - op->func_doc = NULL; - op->func_classobj = NULL; - op->func_globals = globals; - Py_INCREF(op->func_globals); - Py_XINCREF(code); - op->func_code = code; - op->defaults_pyobjects = 0; - op->defaults = NULL; - op->defaults_tuple = NULL; - op->defaults_kwdict = NULL; - op->defaults_getter = NULL; - op->func_annotations = NULL; - PyObject_GC_Track(op); - return (PyObject *) op; -} -static int -__Pyx_CyFunction_clear(__pyx_CyFunctionObject *m) -{ - Py_CLEAR(m->func_closure); - Py_CLEAR(m->func.m_module); - Py_CLEAR(m->func_dict); - Py_CLEAR(m->func_name); - Py_CLEAR(m->func_qualname); - Py_CLEAR(m->func_doc); - Py_CLEAR(m->func_globals); - Py_CLEAR(m->func_code); - Py_CLEAR(m->func_classobj); - Py_CLEAR(m->defaults_tuple); - Py_CLEAR(m->defaults_kwdict); - Py_CLEAR(m->func_annotations); - if (m->defaults) { - PyObject **pydefaults = __Pyx_CyFunction_Defaults(PyObject *, m); - int i; - for (i = 0; i < m->defaults_pyobjects; i++) - Py_XDECREF(pydefaults[i]); - PyObject_Free(m->defaults); - m->defaults = NULL; - } - return 0; -} -static void __Pyx__CyFunction_dealloc(__pyx_CyFunctionObject *m) -{ - if (__Pyx_CyFunction_weakreflist(m) != NULL) - PyObject_ClearWeakRefs((PyObject *) m); - __Pyx_CyFunction_clear(m); - PyObject_GC_Del(m); -} -static void __Pyx_CyFunction_dealloc(__pyx_CyFunctionObject *m) -{ - PyObject_GC_UnTrack(m); - __Pyx__CyFunction_dealloc(m); -} -static int __Pyx_CyFunction_traverse(__pyx_CyFunctionObject *m, visitproc visit, void *arg) -{ - Py_VISIT(m->func_closure); - Py_VISIT(m->func.m_module); - Py_VISIT(m->func_dict); - Py_VISIT(m->func_name); - Py_VISIT(m->func_qualname); - Py_VISIT(m->func_doc); - Py_VISIT(m->func_globals); - Py_VISIT(m->func_code); - Py_VISIT(m->func_classobj); - Py_VISIT(m->defaults_tuple); - Py_VISIT(m->defaults_kwdict); - if (m->defaults) { - PyObject **pydefaults = __Pyx_CyFunction_Defaults(PyObject *, m); - int i; - for (i = 0; i < m->defaults_pyobjects; i++) - Py_VISIT(pydefaults[i]); - } - return 0; -} -static PyObject *__Pyx_CyFunction_descr_get(PyObject *func, PyObject *obj, PyObject *type) -{ - __pyx_CyFunctionObject *m = (__pyx_CyFunctionObject *) func; - if (m->flags & __Pyx_CYFUNCTION_STATICMETHOD) { - Py_INCREF(func); - return func; - } - if (m->flags & __Pyx_CYFUNCTION_CLASSMETHOD) { - if (type == NULL) - type = (PyObject *)(Py_TYPE(obj)); - return __Pyx_PyMethod_New(func, type, (PyObject *)(Py_TYPE(type))); - } - if (obj == Py_None) - obj = NULL; - return __Pyx_PyMethod_New(func, obj, type); -} -static PyObject* -__Pyx_CyFunction_repr(__pyx_CyFunctionObject *op) -{ -#if PY_MAJOR_VERSION >= 3 - return PyUnicode_FromFormat("", - op->func_qualname, (void *)op); -#else - return PyString_FromFormat("", - PyString_AsString(op->func_qualname), (void *)op); -#endif -} -static PyObject * __Pyx_CyFunction_CallMethod(PyObject *func, PyObject *self, PyObject *arg, PyObject *kw) { - PyCFunctionObject* f = (PyCFunctionObject*)func; - PyCFunction meth = f->m_ml->ml_meth; - Py_ssize_t size; - switch (f->m_ml->ml_flags & (METH_VARARGS | METH_KEYWORDS | METH_NOARGS | METH_O)) { - case METH_VARARGS: - if (likely(kw == NULL || PyDict_Size(kw) == 0)) - return (*meth)(self, arg); - break; - case METH_VARARGS | METH_KEYWORDS: - return (*(PyCFunctionWithKeywords)(void*)meth)(self, arg, kw); - case METH_NOARGS: - if (likely(kw == NULL || PyDict_Size(kw) == 0)) { - size = PyTuple_GET_SIZE(arg); - if (likely(size == 0)) - return (*meth)(self, NULL); - PyErr_Format(PyExc_TypeError, - "%.200s() takes no arguments (%" CYTHON_FORMAT_SSIZE_T "d given)", - f->m_ml->ml_name, size); - return NULL; - } - break; - case METH_O: - if (likely(kw == NULL || PyDict_Size(kw) == 0)) { - size = PyTuple_GET_SIZE(arg); - if (likely(size == 1)) { - PyObject *result, *arg0; - #if CYTHON_ASSUME_SAFE_MACROS && !CYTHON_AVOID_BORROWED_REFS - arg0 = PyTuple_GET_ITEM(arg, 0); - #else - arg0 = PySequence_ITEM(arg, 0); if (unlikely(!arg0)) return NULL; - #endif - result = (*meth)(self, arg0); - #if !(CYTHON_ASSUME_SAFE_MACROS && !CYTHON_AVOID_BORROWED_REFS) - Py_DECREF(arg0); - #endif - return result; - } - PyErr_Format(PyExc_TypeError, - "%.200s() takes exactly one argument (%" CYTHON_FORMAT_SSIZE_T "d given)", - f->m_ml->ml_name, size); - return NULL; - } - break; - default: - PyErr_SetString(PyExc_SystemError, "Bad call flags in " - "__Pyx_CyFunction_Call. METH_OLDARGS is no " - "longer supported!"); - return NULL; - } - PyErr_Format(PyExc_TypeError, "%.200s() takes no keyword arguments", - f->m_ml->ml_name); - return NULL; -} -static CYTHON_INLINE PyObject *__Pyx_CyFunction_Call(PyObject *func, PyObject *arg, PyObject *kw) { - return __Pyx_CyFunction_CallMethod(func, ((PyCFunctionObject*)func)->m_self, arg, kw); -} -static PyObject *__Pyx_CyFunction_CallAsMethod(PyObject *func, PyObject *args, PyObject *kw) { - PyObject *result; - __pyx_CyFunctionObject *cyfunc = (__pyx_CyFunctionObject *) func; - if ((cyfunc->flags & __Pyx_CYFUNCTION_CCLASS) && !(cyfunc->flags & __Pyx_CYFUNCTION_STATICMETHOD)) { - Py_ssize_t argc; - PyObject *new_args; - PyObject *self; - argc = PyTuple_GET_SIZE(args); - new_args = PyTuple_GetSlice(args, 1, argc); - if (unlikely(!new_args)) - return NULL; - self = PyTuple_GetItem(args, 0); - if (unlikely(!self)) { - Py_DECREF(new_args); - return NULL; - } - result = __Pyx_CyFunction_CallMethod(func, self, new_args, kw); - Py_DECREF(new_args); - } else { - result = __Pyx_CyFunction_Call(func, args, kw); - } - return result; -} -static PyTypeObject __pyx_CyFunctionType_type = { - PyVarObject_HEAD_INIT(0, 0) - "cython_function_or_method", - sizeof(__pyx_CyFunctionObject), - 0, - (destructor) __Pyx_CyFunction_dealloc, - 0, - 0, - 0, -#if PY_MAJOR_VERSION < 3 - 0, -#else - 0, -#endif - (reprfunc) __Pyx_CyFunction_repr, - 0, - 0, - 0, - 0, - __Pyx_CyFunction_CallAsMethod, - 0, - 0, - 0, - 0, - Py_TPFLAGS_DEFAULT | Py_TPFLAGS_HAVE_GC, - 0, - (traverseproc) __Pyx_CyFunction_traverse, - (inquiry) __Pyx_CyFunction_clear, - 0, -#if PY_VERSION_HEX < 0x030500A0 - offsetof(__pyx_CyFunctionObject, func_weakreflist), -#else - offsetof(PyCFunctionObject, m_weakreflist), -#endif - 0, - 0, - __pyx_CyFunction_methods, - __pyx_CyFunction_members, - __pyx_CyFunction_getsets, - 0, - 0, - __Pyx_CyFunction_descr_get, - 0, - offsetof(__pyx_CyFunctionObject, func_dict), - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, -#if PY_VERSION_HEX >= 0x030400a1 - 0, -#endif -#if PY_VERSION_HEX >= 0x030800b1 - 0, -#endif -#if PY_VERSION_HEX >= 0x030800b4 && PY_VERSION_HEX < 0x03090000 - 0, -#endif -}; -static int __pyx_CyFunction_init(void) { - __pyx_CyFunctionType = __Pyx_FetchCommonType(&__pyx_CyFunctionType_type); - if (unlikely(__pyx_CyFunctionType == NULL)) { - return -1; - } - return 0; -} -static CYTHON_INLINE void *__Pyx_CyFunction_InitDefaults(PyObject *func, size_t size, int pyobjects) { - __pyx_CyFunctionObject *m = (__pyx_CyFunctionObject *) func; - m->defaults = PyObject_Malloc(size); - if (unlikely(!m->defaults)) - return PyErr_NoMemory(); - memset(m->defaults, 0, size); - m->defaults_pyobjects = pyobjects; - return m->defaults; -} -static CYTHON_INLINE void __Pyx_CyFunction_SetDefaultsTuple(PyObject *func, PyObject *tuple) { - __pyx_CyFunctionObject *m = (__pyx_CyFunctionObject *) func; - m->defaults_tuple = tuple; - Py_INCREF(tuple); -} -static CYTHON_INLINE void __Pyx_CyFunction_SetDefaultsKwDict(PyObject *func, PyObject *dict) { - __pyx_CyFunctionObject *m = (__pyx_CyFunctionObject *) func; - m->defaults_kwdict = dict; - Py_INCREF(dict); -} -static CYTHON_INLINE void __Pyx_CyFunction_SetAnnotationsDict(PyObject *func, PyObject *dict) { - __pyx_CyFunctionObject *m = (__pyx_CyFunctionObject *) func; - m->func_annotations = dict; - Py_INCREF(dict); -} - -/* PyObjectCall2Args */ -static CYTHON_UNUSED PyObject* __Pyx_PyObject_Call2Args(PyObject* function, PyObject* arg1, PyObject* arg2) { - PyObject *args, *result = NULL; - #if CYTHON_FAST_PYCALL - if (PyFunction_Check(function)) { - PyObject *args[2] = {arg1, arg2}; - return __Pyx_PyFunction_FastCall(function, args, 2); - } - #endif - #if CYTHON_FAST_PYCCALL - if (__Pyx_PyFastCFunction_Check(function)) { - PyObject *args[2] = {arg1, arg2}; - return __Pyx_PyCFunction_FastCall(function, args, 2); - } - #endif - args = PyTuple_New(2); - if (unlikely(!args)) goto done; - Py_INCREF(arg1); - PyTuple_SET_ITEM(args, 0, arg1); - Py_INCREF(arg2); - PyTuple_SET_ITEM(args, 1, arg2); - Py_INCREF(function); - result = __Pyx_PyObject_Call(function, args, NULL); - Py_DECREF(args); - Py_DECREF(function); -done: - return result; -} - -/* PyObjectGetMethod */ -static int __Pyx_PyObject_GetMethod(PyObject *obj, PyObject *name, PyObject **method) { - PyObject *attr; -#if CYTHON_UNPACK_METHODS && CYTHON_COMPILING_IN_CPYTHON && CYTHON_USE_PYTYPE_LOOKUP - PyTypeObject *tp = Py_TYPE(obj); - PyObject *descr; - descrgetfunc f = NULL; - PyObject **dictptr, *dict; - int meth_found = 0; - assert (*method == NULL); - if (unlikely(tp->tp_getattro != PyObject_GenericGetAttr)) { - attr = __Pyx_PyObject_GetAttrStr(obj, name); - goto try_unpack; - } - if (unlikely(tp->tp_dict == NULL) && unlikely(PyType_Ready(tp) < 0)) { - return 0; - } - descr = _PyType_Lookup(tp, name); - if (likely(descr != NULL)) { - Py_INCREF(descr); -#if PY_MAJOR_VERSION >= 3 - #ifdef __Pyx_CyFunction_USED - if (likely(PyFunction_Check(descr) || (Py_TYPE(descr) == &PyMethodDescr_Type) || __Pyx_CyFunction_Check(descr))) - #else - if (likely(PyFunction_Check(descr) || (Py_TYPE(descr) == &PyMethodDescr_Type))) - #endif -#else - #ifdef __Pyx_CyFunction_USED - if (likely(PyFunction_Check(descr) || __Pyx_CyFunction_Check(descr))) - #else - if (likely(PyFunction_Check(descr))) - #endif -#endif - { - meth_found = 1; - } else { - f = Py_TYPE(descr)->tp_descr_get; - if (f != NULL && PyDescr_IsData(descr)) { - attr = f(descr, obj, (PyObject *)Py_TYPE(obj)); - Py_DECREF(descr); - goto try_unpack; - } - } - } - dictptr = _PyObject_GetDictPtr(obj); - if (dictptr != NULL && (dict = *dictptr) != NULL) { - Py_INCREF(dict); - attr = __Pyx_PyDict_GetItemStr(dict, name); - if (attr != NULL) { - Py_INCREF(attr); - Py_DECREF(dict); - Py_XDECREF(descr); - goto try_unpack; - } - Py_DECREF(dict); - } - if (meth_found) { - *method = descr; - return 1; - } - if (f != NULL) { - attr = f(descr, obj, (PyObject *)Py_TYPE(obj)); - Py_DECREF(descr); - goto try_unpack; - } - if (descr != NULL) { - *method = descr; - return 0; - } - PyErr_Format(PyExc_AttributeError, -#if PY_MAJOR_VERSION >= 3 - "'%.50s' object has no attribute '%U'", - tp->tp_name, name); -#else - "'%.50s' object has no attribute '%.400s'", - tp->tp_name, PyString_AS_STRING(name)); -#endif - return 0; -#else - attr = __Pyx_PyObject_GetAttrStr(obj, name); - goto try_unpack; -#endif -try_unpack: -#if CYTHON_UNPACK_METHODS - if (likely(attr) && PyMethod_Check(attr) && likely(PyMethod_GET_SELF(attr) == obj)) { - PyObject *function = PyMethod_GET_FUNCTION(attr); - Py_INCREF(function); - Py_DECREF(attr); - *method = function; - return 1; - } -#endif - *method = attr; - return 0; -} - -/* PyObjectCallMethod1 */ -static PyObject* __Pyx__PyObject_CallMethod1(PyObject* method, PyObject* arg) { - PyObject *result = __Pyx_PyObject_CallOneArg(method, arg); - Py_DECREF(method); - return result; -} -static PyObject* __Pyx_PyObject_CallMethod1(PyObject* obj, PyObject* method_name, PyObject* arg) { - PyObject *method = NULL, *result; - int is_method = __Pyx_PyObject_GetMethod(obj, method_name, &method); - if (likely(is_method)) { - result = __Pyx_PyObject_Call2Args(method, obj, arg); - Py_DECREF(method); - return result; - } - if (unlikely(!method)) return NULL; - return __Pyx__PyObject_CallMethod1(method, arg); -} - -/* append */ -static CYTHON_INLINE int __Pyx_PyObject_Append(PyObject* L, PyObject* x) { - if (likely(PyList_CheckExact(L))) { - if (unlikely(__Pyx_PyList_Append(L, x) < 0)) return -1; - } else { - PyObject* retval = __Pyx_PyObject_CallMethod1(L, __pyx_n_s_append, x); - if (unlikely(!retval)) - return -1; - Py_DECREF(retval); - } - return 0; -} - -/* PyIntCompare */ -static CYTHON_INLINE PyObject* __Pyx_PyInt_EqObjC(PyObject *op1, PyObject *op2, CYTHON_UNUSED long intval, CYTHON_UNUSED long inplace) { - if (op1 == op2) { - Py_RETURN_TRUE; - } - #if PY_MAJOR_VERSION < 3 - if (likely(PyInt_CheckExact(op1))) { - const long b = intval; - long a = PyInt_AS_LONG(op1); - if (a == b) Py_RETURN_TRUE; else Py_RETURN_FALSE; - } - #endif - #if CYTHON_USE_PYLONG_INTERNALS - if (likely(PyLong_CheckExact(op1))) { - int unequal; - unsigned long uintval; - Py_ssize_t size = Py_SIZE(op1); - const digit* digits = ((PyLongObject*)op1)->ob_digit; - if (intval == 0) { - if (size == 0) Py_RETURN_TRUE; else Py_RETURN_FALSE; - } else if (intval < 0) { - if (size >= 0) - Py_RETURN_FALSE; - intval = -intval; - size = -size; - } else { - if (size <= 0) - Py_RETURN_FALSE; - } - uintval = (unsigned long) intval; -#if PyLong_SHIFT * 4 < SIZEOF_LONG*8 - if (uintval >> (PyLong_SHIFT * 4)) { - unequal = (size != 5) || (digits[0] != (uintval & (unsigned long) PyLong_MASK)) - | (digits[1] != ((uintval >> (1 * PyLong_SHIFT)) & (unsigned long) PyLong_MASK)) | (digits[2] != ((uintval >> (2 * PyLong_SHIFT)) & (unsigned long) PyLong_MASK)) | (digits[3] != ((uintval >> (3 * PyLong_SHIFT)) & (unsigned long) PyLong_MASK)) | (digits[4] != ((uintval >> (4 * PyLong_SHIFT)) & (unsigned long) PyLong_MASK)); - } else -#endif -#if PyLong_SHIFT * 3 < SIZEOF_LONG*8 - if (uintval >> (PyLong_SHIFT * 3)) { - unequal = (size != 4) || (digits[0] != (uintval & (unsigned long) PyLong_MASK)) - | (digits[1] != ((uintval >> (1 * PyLong_SHIFT)) & (unsigned long) PyLong_MASK)) | (digits[2] != ((uintval >> (2 * PyLong_SHIFT)) & (unsigned long) PyLong_MASK)) | (digits[3] != ((uintval >> (3 * PyLong_SHIFT)) & (unsigned long) PyLong_MASK)); - } else -#endif -#if PyLong_SHIFT * 2 < SIZEOF_LONG*8 - if (uintval >> (PyLong_SHIFT * 2)) { - unequal = (size != 3) || (digits[0] != (uintval & (unsigned long) PyLong_MASK)) - | (digits[1] != ((uintval >> (1 * PyLong_SHIFT)) & (unsigned long) PyLong_MASK)) | (digits[2] != ((uintval >> (2 * PyLong_SHIFT)) & (unsigned long) PyLong_MASK)); - } else -#endif -#if PyLong_SHIFT * 1 < SIZEOF_LONG*8 - if (uintval >> (PyLong_SHIFT * 1)) { - unequal = (size != 2) || (digits[0] != (uintval & (unsigned long) PyLong_MASK)) - | (digits[1] != ((uintval >> (1 * PyLong_SHIFT)) & (unsigned long) PyLong_MASK)); - } else -#endif - unequal = (size != 1) || (((unsigned long) digits[0]) != (uintval & (unsigned long) PyLong_MASK)); - if (unequal == 0) Py_RETURN_TRUE; else Py_RETURN_FALSE; - } - #endif - if (PyFloat_CheckExact(op1)) { - const long b = intval; - double a = PyFloat_AS_DOUBLE(op1); - if ((double)a == (double)b) Py_RETURN_TRUE; else Py_RETURN_FALSE; - } - return ( - PyObject_RichCompare(op1, op2, Py_EQ)); -} - -/* GetItemInt */ -static PyObject *__Pyx_GetItemInt_Generic(PyObject *o, PyObject* j) { - PyObject *r; - if (!j) return NULL; - r = PyObject_GetItem(o, j); - Py_DECREF(j); - return r; -} -static CYTHON_INLINE PyObject *__Pyx_GetItemInt_List_Fast(PyObject *o, Py_ssize_t i, - CYTHON_NCP_UNUSED int wraparound, - CYTHON_NCP_UNUSED int boundscheck) { -#if CYTHON_ASSUME_SAFE_MACROS && !CYTHON_AVOID_BORROWED_REFS - Py_ssize_t wrapped_i = i; - if (wraparound & unlikely(i < 0)) { - wrapped_i += PyList_GET_SIZE(o); - } - if ((!boundscheck) || likely(__Pyx_is_valid_index(wrapped_i, PyList_GET_SIZE(o)))) { - PyObject *r = PyList_GET_ITEM(o, wrapped_i); - Py_INCREF(r); - return r; - } - return __Pyx_GetItemInt_Generic(o, PyInt_FromSsize_t(i)); -#else - return PySequence_GetItem(o, i); -#endif -} -static CYTHON_INLINE PyObject *__Pyx_GetItemInt_Tuple_Fast(PyObject *o, Py_ssize_t i, - CYTHON_NCP_UNUSED int wraparound, - CYTHON_NCP_UNUSED int boundscheck) { -#if CYTHON_ASSUME_SAFE_MACROS && !CYTHON_AVOID_BORROWED_REFS - Py_ssize_t wrapped_i = i; - if (wraparound & unlikely(i < 0)) { - wrapped_i += PyTuple_GET_SIZE(o); - } - if ((!boundscheck) || likely(__Pyx_is_valid_index(wrapped_i, PyTuple_GET_SIZE(o)))) { - PyObject *r = PyTuple_GET_ITEM(o, wrapped_i); - Py_INCREF(r); - return r; - } - return __Pyx_GetItemInt_Generic(o, PyInt_FromSsize_t(i)); -#else - return PySequence_GetItem(o, i); -#endif -} -static CYTHON_INLINE PyObject *__Pyx_GetItemInt_Fast(PyObject *o, Py_ssize_t i, int is_list, - CYTHON_NCP_UNUSED int wraparound, - CYTHON_NCP_UNUSED int boundscheck) { -#if CYTHON_ASSUME_SAFE_MACROS && !CYTHON_AVOID_BORROWED_REFS && CYTHON_USE_TYPE_SLOTS - if (is_list || PyList_CheckExact(o)) { - Py_ssize_t n = ((!wraparound) | likely(i >= 0)) ? i : i + PyList_GET_SIZE(o); - if ((!boundscheck) || (likely(__Pyx_is_valid_index(n, PyList_GET_SIZE(o))))) { - PyObject *r = PyList_GET_ITEM(o, n); - Py_INCREF(r); - return r; - } - } - else if (PyTuple_CheckExact(o)) { - Py_ssize_t n = ((!wraparound) | likely(i >= 0)) ? i : i + PyTuple_GET_SIZE(o); - if ((!boundscheck) || likely(__Pyx_is_valid_index(n, PyTuple_GET_SIZE(o)))) { - PyObject *r = PyTuple_GET_ITEM(o, n); - Py_INCREF(r); - return r; - } - } else { - PySequenceMethods *m = Py_TYPE(o)->tp_as_sequence; - if (likely(m && m->sq_item)) { - if (wraparound && unlikely(i < 0) && likely(m->sq_length)) { - Py_ssize_t l = m->sq_length(o); - if (likely(l >= 0)) { - i += l; - } else { - if (!PyErr_ExceptionMatches(PyExc_OverflowError)) - return NULL; - PyErr_Clear(); - } - } - return m->sq_item(o, i); - } - } -#else - if (is_list || PySequence_Check(o)) { - return PySequence_GetItem(o, i); - } -#endif - return __Pyx_GetItemInt_Generic(o, PyInt_FromSsize_t(i)); -} - -/* ObjectGetItem */ -#if CYTHON_USE_TYPE_SLOTS -static PyObject *__Pyx_PyObject_GetIndex(PyObject *obj, PyObject* index) { - PyObject *runerr; - Py_ssize_t key_value; - PySequenceMethods *m = Py_TYPE(obj)->tp_as_sequence; - if (unlikely(!(m && m->sq_item))) { - PyErr_Format(PyExc_TypeError, "'%.200s' object is not subscriptable", Py_TYPE(obj)->tp_name); - return NULL; - } - key_value = __Pyx_PyIndex_AsSsize_t(index); - if (likely(key_value != -1 || !(runerr = PyErr_Occurred()))) { - return __Pyx_GetItemInt_Fast(obj, key_value, 0, 1, 1); - } - if (PyErr_GivenExceptionMatches(runerr, PyExc_OverflowError)) { - PyErr_Clear(); - PyErr_Format(PyExc_IndexError, "cannot fit '%.200s' into an index-sized integer", Py_TYPE(index)->tp_name); - } - return NULL; -} -static PyObject *__Pyx_PyObject_GetItem(PyObject *obj, PyObject* key) { - PyMappingMethods *m = Py_TYPE(obj)->tp_as_mapping; - if (likely(m && m->mp_subscript)) { - return m->mp_subscript(obj, key); - } - return __Pyx_PyObject_GetIndex(obj, key); -} -#endif - -/* PyIntBinop */ -#if !CYTHON_COMPILING_IN_PYPY -static PyObject* __Pyx_PyInt_AddObjC(PyObject *op1, PyObject *op2, CYTHON_UNUSED long intval, int inplace, int zerodivision_check) { - (void)inplace; - (void)zerodivision_check; - #if PY_MAJOR_VERSION < 3 - if (likely(PyInt_CheckExact(op1))) { - const long b = intval; - long x; - long a = PyInt_AS_LONG(op1); - x = (long)((unsigned long)a + b); - if (likely((x^a) >= 0 || (x^b) >= 0)) - return PyInt_FromLong(x); - return PyLong_Type.tp_as_number->nb_add(op1, op2); - } - #endif - #if CYTHON_USE_PYLONG_INTERNALS - if (likely(PyLong_CheckExact(op1))) { - const long b = intval; - long a, x; -#ifdef HAVE_LONG_LONG - const PY_LONG_LONG llb = intval; - PY_LONG_LONG lla, llx; -#endif - const digit* digits = ((PyLongObject*)op1)->ob_digit; - const Py_ssize_t size = Py_SIZE(op1); - if (likely(__Pyx_sst_abs(size) <= 1)) { - a = likely(size) ? digits[0] : 0; - if (size == -1) a = -a; - } else { - switch (size) { - case -2: - if (8 * sizeof(long) - 1 > 2 * PyLong_SHIFT) { - a = -(long) (((((unsigned long)digits[1]) << PyLong_SHIFT) | (unsigned long)digits[0])); - break; -#ifdef HAVE_LONG_LONG - } else if (8 * sizeof(PY_LONG_LONG) - 1 > 2 * PyLong_SHIFT) { - lla = -(PY_LONG_LONG) (((((unsigned PY_LONG_LONG)digits[1]) << PyLong_SHIFT) | (unsigned PY_LONG_LONG)digits[0])); - goto long_long; -#endif - } - CYTHON_FALLTHROUGH; - case 2: - if (8 * sizeof(long) - 1 > 2 * PyLong_SHIFT) { - a = (long) (((((unsigned long)digits[1]) << PyLong_SHIFT) | (unsigned long)digits[0])); - break; -#ifdef HAVE_LONG_LONG - } else if (8 * sizeof(PY_LONG_LONG) - 1 > 2 * PyLong_SHIFT) { - lla = (PY_LONG_LONG) (((((unsigned PY_LONG_LONG)digits[1]) << PyLong_SHIFT) | (unsigned PY_LONG_LONG)digits[0])); - goto long_long; -#endif - } - CYTHON_FALLTHROUGH; - case -3: - if (8 * sizeof(long) - 1 > 3 * PyLong_SHIFT) { - a = -(long) (((((((unsigned long)digits[2]) << PyLong_SHIFT) | (unsigned long)digits[1]) << PyLong_SHIFT) | (unsigned long)digits[0])); - break; -#ifdef HAVE_LONG_LONG - } else if (8 * sizeof(PY_LONG_LONG) - 1 > 3 * PyLong_SHIFT) { - lla = -(PY_LONG_LONG) (((((((unsigned PY_LONG_LONG)digits[2]) << PyLong_SHIFT) | (unsigned PY_LONG_LONG)digits[1]) << PyLong_SHIFT) | (unsigned PY_LONG_LONG)digits[0])); - goto long_long; -#endif - } - CYTHON_FALLTHROUGH; - case 3: - if (8 * sizeof(long) - 1 > 3 * PyLong_SHIFT) { - a = (long) (((((((unsigned long)digits[2]) << PyLong_SHIFT) | (unsigned long)digits[1]) << PyLong_SHIFT) | (unsigned long)digits[0])); - break; -#ifdef HAVE_LONG_LONG - } else if (8 * sizeof(PY_LONG_LONG) - 1 > 3 * PyLong_SHIFT) { - lla = (PY_LONG_LONG) (((((((unsigned PY_LONG_LONG)digits[2]) << PyLong_SHIFT) | (unsigned PY_LONG_LONG)digits[1]) << PyLong_SHIFT) | (unsigned PY_LONG_LONG)digits[0])); - goto long_long; -#endif - } - CYTHON_FALLTHROUGH; - case -4: - if (8 * sizeof(long) - 1 > 4 * PyLong_SHIFT) { - a = -(long) (((((((((unsigned long)digits[3]) << PyLong_SHIFT) | (unsigned long)digits[2]) << PyLong_SHIFT) | (unsigned long)digits[1]) << PyLong_SHIFT) | (unsigned long)digits[0])); - break; -#ifdef HAVE_LONG_LONG - } else if (8 * sizeof(PY_LONG_LONG) - 1 > 4 * PyLong_SHIFT) { - lla = -(PY_LONG_LONG) (((((((((unsigned PY_LONG_LONG)digits[3]) << PyLong_SHIFT) | (unsigned PY_LONG_LONG)digits[2]) << PyLong_SHIFT) | (unsigned PY_LONG_LONG)digits[1]) << PyLong_SHIFT) | (unsigned PY_LONG_LONG)digits[0])); - goto long_long; -#endif - } - CYTHON_FALLTHROUGH; - case 4: - if (8 * sizeof(long) - 1 > 4 * PyLong_SHIFT) { - a = (long) (((((((((unsigned long)digits[3]) << PyLong_SHIFT) | (unsigned long)digits[2]) << PyLong_SHIFT) | (unsigned long)digits[1]) << PyLong_SHIFT) | (unsigned long)digits[0])); - break; -#ifdef HAVE_LONG_LONG - } else if (8 * sizeof(PY_LONG_LONG) - 1 > 4 * PyLong_SHIFT) { - lla = (PY_LONG_LONG) (((((((((unsigned PY_LONG_LONG)digits[3]) << PyLong_SHIFT) | (unsigned PY_LONG_LONG)digits[2]) << PyLong_SHIFT) | (unsigned PY_LONG_LONG)digits[1]) << PyLong_SHIFT) | (unsigned PY_LONG_LONG)digits[0])); - goto long_long; -#endif - } - CYTHON_FALLTHROUGH; - default: return PyLong_Type.tp_as_number->nb_add(op1, op2); - } - } - x = a + b; - return PyLong_FromLong(x); -#ifdef HAVE_LONG_LONG - long_long: - llx = lla + llb; - return PyLong_FromLongLong(llx); -#endif - - - } - #endif - if (PyFloat_CheckExact(op1)) { - const long b = intval; - double a = PyFloat_AS_DOUBLE(op1); - double result; - PyFPE_START_PROTECT("add", return NULL) - result = ((double)a) + (double)b; - PyFPE_END_PROTECT(result) - return PyFloat_FromDouble(result); - } - return (inplace ? PyNumber_InPlaceAdd : PyNumber_Add)(op1, op2); -} -#endif - -/* ArgTypeTest */ -static int __Pyx__ArgTypeTest(PyObject *obj, PyTypeObject *type, const char *name, int exact) -{ - if (unlikely(!type)) { - PyErr_SetString(PyExc_SystemError, "Missing type object"); - return 0; - } - else if (exact) { - #if PY_MAJOR_VERSION == 2 - if ((type == &PyBaseString_Type) && likely(__Pyx_PyBaseString_CheckExact(obj))) return 1; - #endif - } - else { - if (likely(__Pyx_TypeCheck(obj, type))) return 1; - } - PyErr_Format(PyExc_TypeError, - "Argument '%.200s' has incorrect type (expected %.200s, got %.200s)", - name, type->tp_name, Py_TYPE(obj)->tp_name); - return 0; -} - -/* BytesEquals */ -static CYTHON_INLINE int __Pyx_PyBytes_Equals(PyObject* s1, PyObject* s2, int equals) { -#if CYTHON_COMPILING_IN_PYPY - return PyObject_RichCompareBool(s1, s2, equals); -#else - if (s1 == s2) { - return (equals == Py_EQ); - } else if (PyBytes_CheckExact(s1) & PyBytes_CheckExact(s2)) { - const char *ps1, *ps2; - Py_ssize_t length = PyBytes_GET_SIZE(s1); - if (length != PyBytes_GET_SIZE(s2)) - return (equals == Py_NE); - ps1 = PyBytes_AS_STRING(s1); - ps2 = PyBytes_AS_STRING(s2); - if (ps1[0] != ps2[0]) { - return (equals == Py_NE); - } else if (length == 1) { - return (equals == Py_EQ); - } else { - int result; -#if CYTHON_USE_UNICODE_INTERNALS - Py_hash_t hash1, hash2; - hash1 = ((PyBytesObject*)s1)->ob_shash; - hash2 = ((PyBytesObject*)s2)->ob_shash; - if (hash1 != hash2 && hash1 != -1 && hash2 != -1) { - return (equals == Py_NE); - } -#endif - result = memcmp(ps1, ps2, (size_t)length); - return (equals == Py_EQ) ? (result == 0) : (result != 0); - } - } else if ((s1 == Py_None) & PyBytes_CheckExact(s2)) { - return (equals == Py_NE); - } else if ((s2 == Py_None) & PyBytes_CheckExact(s1)) { - return (equals == Py_NE); - } else { - int result; - PyObject* py_result = PyObject_RichCompare(s1, s2, equals); - if (!py_result) - return -1; - result = __Pyx_PyObject_IsTrue(py_result); - Py_DECREF(py_result); - return result; - } -#endif -} - -/* UnpackUnboundCMethod */ -static int __Pyx_TryUnpackUnboundCMethod(__Pyx_CachedCFunction* target) { - PyObject *method; - method = __Pyx_PyObject_GetAttrStr(target->type, *target->method_name); - if (unlikely(!method)) - return -1; - target->method = method; -#if CYTHON_COMPILING_IN_CPYTHON - #if PY_MAJOR_VERSION >= 3 - if (likely(__Pyx_TypeCheck(method, &PyMethodDescr_Type))) - #endif - { - PyMethodDescrObject *descr = (PyMethodDescrObject*) method; - target->func = descr->d_method->ml_meth; - target->flag = descr->d_method->ml_flags & ~(METH_CLASS | METH_STATIC | METH_COEXIST | METH_STACKLESS); - } -#endif - return 0; -} - -/* CallUnboundCMethod0 */ -static PyObject* __Pyx__CallUnboundCMethod0(__Pyx_CachedCFunction* cfunc, PyObject* self) { - PyObject *args, *result = NULL; - if (unlikely(!cfunc->method) && unlikely(__Pyx_TryUnpackUnboundCMethod(cfunc) < 0)) return NULL; -#if CYTHON_ASSUME_SAFE_MACROS - args = PyTuple_New(1); - if (unlikely(!args)) goto bad; - Py_INCREF(self); - PyTuple_SET_ITEM(args, 0, self); -#else - args = PyTuple_Pack(1, self); - if (unlikely(!args)) goto bad; -#endif - result = __Pyx_PyObject_Call(cfunc->method, args, NULL); - Py_DECREF(args); -bad: - return result; -} - -/* pyfrozenset_new */ -static CYTHON_INLINE PyObject* __Pyx_PyFrozenSet_New(PyObject* it) { - if (it) { - PyObject* result; -#if CYTHON_COMPILING_IN_PYPY - PyObject* args; - args = PyTuple_Pack(1, it); - if (unlikely(!args)) - return NULL; - result = PyObject_Call((PyObject*)&PyFrozenSet_Type, args, NULL); - Py_DECREF(args); - return result; -#else - if (PyFrozenSet_CheckExact(it)) { - Py_INCREF(it); - return it; - } - result = PyFrozenSet_New(it); - if (unlikely(!result)) - return NULL; - if (likely(PySet_GET_SIZE(result))) - return result; - Py_DECREF(result); -#endif - } -#if CYTHON_USE_TYPE_SLOTS - return PyFrozenSet_Type.tp_new(&PyFrozenSet_Type, __pyx_empty_tuple, NULL); -#else - return PyObject_Call((PyObject*)&PyFrozenSet_Type, __pyx_empty_tuple, NULL); -#endif -} - -/* PySetContains */ -static int __Pyx_PySet_ContainsUnhashable(PyObject *set, PyObject *key) { - int result = -1; - if (PySet_Check(key) && PyErr_ExceptionMatches(PyExc_TypeError)) { - PyObject *tmpkey; - PyErr_Clear(); - tmpkey = __Pyx_PyFrozenSet_New(key); - if (tmpkey != NULL) { - result = PySet_Contains(set, tmpkey); - Py_DECREF(tmpkey); - } - } - return result; -} -static CYTHON_INLINE int __Pyx_PySet_ContainsTF(PyObject* key, PyObject* set, int eq) { - int result = PySet_Contains(set, key); - if (unlikely(result < 0)) { - result = __Pyx_PySet_ContainsUnhashable(set, key); - } - return unlikely(result < 0) ? result : (result == (eq == Py_EQ)); -} - -/* GetTopmostException */ -#if CYTHON_USE_EXC_INFO_STACK -static _PyErr_StackItem * -__Pyx_PyErr_GetTopmostException(PyThreadState *tstate) -{ - _PyErr_StackItem *exc_info = tstate->exc_info; - while ((exc_info->exc_type == NULL || exc_info->exc_type == Py_None) && - exc_info->previous_item != NULL) - { - exc_info = exc_info->previous_item; - } - return exc_info; -} -#endif - -/* SaveResetException */ -#if CYTHON_FAST_THREAD_STATE -static CYTHON_INLINE void __Pyx__ExceptionSave(PyThreadState *tstate, PyObject **type, PyObject **value, PyObject **tb) { - #if CYTHON_USE_EXC_INFO_STACK - _PyErr_StackItem *exc_info = __Pyx_PyErr_GetTopmostException(tstate); - *type = exc_info->exc_type; - *value = exc_info->exc_value; - *tb = exc_info->exc_traceback; - #else - *type = tstate->exc_type; - *value = tstate->exc_value; - *tb = tstate->exc_traceback; - #endif - Py_XINCREF(*type); - Py_XINCREF(*value); - Py_XINCREF(*tb); -} -static CYTHON_INLINE void __Pyx__ExceptionReset(PyThreadState *tstate, PyObject *type, PyObject *value, PyObject *tb) { - PyObject *tmp_type, *tmp_value, *tmp_tb; - #if CYTHON_USE_EXC_INFO_STACK - _PyErr_StackItem *exc_info = tstate->exc_info; - tmp_type = exc_info->exc_type; - tmp_value = exc_info->exc_value; - tmp_tb = exc_info->exc_traceback; - exc_info->exc_type = type; - exc_info->exc_value = value; - exc_info->exc_traceback = tb; - #else - tmp_type = tstate->exc_type; - tmp_value = tstate->exc_value; - tmp_tb = tstate->exc_traceback; - tstate->exc_type = type; - tstate->exc_value = value; - tstate->exc_traceback = tb; - #endif - Py_XDECREF(tmp_type); - Py_XDECREF(tmp_value); - Py_XDECREF(tmp_tb); -} -#endif - -/* PyErrExceptionMatches */ -#if CYTHON_FAST_THREAD_STATE -static int __Pyx_PyErr_ExceptionMatchesTuple(PyObject *exc_type, PyObject *tuple) { - Py_ssize_t i, n; - n = PyTuple_GET_SIZE(tuple); -#if PY_MAJOR_VERSION >= 3 - for (i=0; icurexc_type; - if (exc_type == err) return 1; - if (unlikely(!exc_type)) return 0; - if (unlikely(PyTuple_Check(err))) - return __Pyx_PyErr_ExceptionMatchesTuple(exc_type, err); - return __Pyx_PyErr_GivenExceptionMatches(exc_type, err); -} -#endif - -/* GetException */ -#if CYTHON_FAST_THREAD_STATE -static int __Pyx__GetException(PyThreadState *tstate, PyObject **type, PyObject **value, PyObject **tb) -#else -static int __Pyx_GetException(PyObject **type, PyObject **value, PyObject **tb) -#endif -{ - PyObject *local_type, *local_value, *local_tb; -#if CYTHON_FAST_THREAD_STATE - PyObject *tmp_type, *tmp_value, *tmp_tb; - local_type = tstate->curexc_type; - local_value = tstate->curexc_value; - local_tb = tstate->curexc_traceback; - tstate->curexc_type = 0; - tstate->curexc_value = 0; - tstate->curexc_traceback = 0; -#else - PyErr_Fetch(&local_type, &local_value, &local_tb); -#endif - PyErr_NormalizeException(&local_type, &local_value, &local_tb); -#if CYTHON_FAST_THREAD_STATE - if (unlikely(tstate->curexc_type)) -#else - if (unlikely(PyErr_Occurred())) -#endif - goto bad; - #if PY_MAJOR_VERSION >= 3 - if (local_tb) { - if (unlikely(PyException_SetTraceback(local_value, local_tb) < 0)) - goto bad; - } - #endif - Py_XINCREF(local_tb); - Py_XINCREF(local_type); - Py_XINCREF(local_value); - *type = local_type; - *value = local_value; - *tb = local_tb; -#if CYTHON_FAST_THREAD_STATE - #if CYTHON_USE_EXC_INFO_STACK - { - _PyErr_StackItem *exc_info = tstate->exc_info; - tmp_type = exc_info->exc_type; - tmp_value = exc_info->exc_value; - tmp_tb = exc_info->exc_traceback; - exc_info->exc_type = local_type; - exc_info->exc_value = local_value; - exc_info->exc_traceback = local_tb; - } - #else - tmp_type = tstate->exc_type; - tmp_value = tstate->exc_value; - tmp_tb = tstate->exc_traceback; - tstate->exc_type = local_type; - tstate->exc_value = local_value; - tstate->exc_traceback = local_tb; - #endif - Py_XDECREF(tmp_type); - Py_XDECREF(tmp_value); - Py_XDECREF(tmp_tb); -#else - PyErr_SetExcInfo(local_type, local_value, local_tb); -#endif - return 0; -bad: - *type = 0; - *value = 0; - *tb = 0; - Py_XDECREF(local_type); - Py_XDECREF(local_value); - Py_XDECREF(local_tb); - return -1; -} - -/* SliceObject */ -static CYTHON_INLINE PyObject* __Pyx_PyObject_GetSlice(PyObject* obj, - Py_ssize_t cstart, Py_ssize_t cstop, - PyObject** _py_start, PyObject** _py_stop, PyObject** _py_slice, - int has_cstart, int has_cstop, CYTHON_UNUSED int wraparound) { -#if CYTHON_USE_TYPE_SLOTS - PyMappingMethods* mp; -#if PY_MAJOR_VERSION < 3 - PySequenceMethods* ms = Py_TYPE(obj)->tp_as_sequence; - if (likely(ms && ms->sq_slice)) { - if (!has_cstart) { - if (_py_start && (*_py_start != Py_None)) { - cstart = __Pyx_PyIndex_AsSsize_t(*_py_start); - if ((cstart == (Py_ssize_t)-1) && PyErr_Occurred()) goto bad; - } else - cstart = 0; - } - if (!has_cstop) { - if (_py_stop && (*_py_stop != Py_None)) { - cstop = __Pyx_PyIndex_AsSsize_t(*_py_stop); - if ((cstop == (Py_ssize_t)-1) && PyErr_Occurred()) goto bad; - } else - cstop = PY_SSIZE_T_MAX; - } - if (wraparound && unlikely((cstart < 0) | (cstop < 0)) && likely(ms->sq_length)) { - Py_ssize_t l = ms->sq_length(obj); - if (likely(l >= 0)) { - if (cstop < 0) { - cstop += l; - if (cstop < 0) cstop = 0; - } - if (cstart < 0) { - cstart += l; - if (cstart < 0) cstart = 0; - } - } else { - if (!PyErr_ExceptionMatches(PyExc_OverflowError)) - goto bad; - PyErr_Clear(); - } - } - return ms->sq_slice(obj, cstart, cstop); - } -#endif - mp = Py_TYPE(obj)->tp_as_mapping; - if (likely(mp && mp->mp_subscript)) -#endif - { - PyObject* result; - PyObject *py_slice, *py_start, *py_stop; - if (_py_slice) { - py_slice = *_py_slice; - } else { - PyObject* owned_start = NULL; - PyObject* owned_stop = NULL; - if (_py_start) { - py_start = *_py_start; - } else { - if (has_cstart) { - owned_start = py_start = PyInt_FromSsize_t(cstart); - if (unlikely(!py_start)) goto bad; - } else - py_start = Py_None; - } - if (_py_stop) { - py_stop = *_py_stop; - } else { - if (has_cstop) { - owned_stop = py_stop = PyInt_FromSsize_t(cstop); - if (unlikely(!py_stop)) { - Py_XDECREF(owned_start); - goto bad; - } - } else - py_stop = Py_None; - } - py_slice = PySlice_New(py_start, py_stop, Py_None); - Py_XDECREF(owned_start); - Py_XDECREF(owned_stop); - if (unlikely(!py_slice)) goto bad; - } -#if CYTHON_USE_TYPE_SLOTS - result = mp->mp_subscript(obj, py_slice); -#else - result = PyObject_GetItem(obj, py_slice); -#endif - if (!_py_slice) { - Py_DECREF(py_slice); - } - return result; - } - PyErr_Format(PyExc_TypeError, - "'%.200s' object is unsliceable", Py_TYPE(obj)->tp_name); -bad: - return NULL; -} - -/* Import */ -static PyObject *__Pyx_Import(PyObject *name, PyObject *from_list, int level) { - PyObject *empty_list = 0; - PyObject *module = 0; - PyObject *global_dict = 0; - PyObject *empty_dict = 0; - PyObject *list; - #if PY_MAJOR_VERSION < 3 - PyObject *py_import; - py_import = __Pyx_PyObject_GetAttrStr(__pyx_b, __pyx_n_s_import); - if (!py_import) - goto bad; - #endif - if (from_list) - list = from_list; - else { - empty_list = PyList_New(0); - if (!empty_list) - goto bad; - list = empty_list; - } - global_dict = PyModule_GetDict(__pyx_m); - if (!global_dict) - goto bad; - empty_dict = PyDict_New(); - if (!empty_dict) - goto bad; - { - #if PY_MAJOR_VERSION >= 3 - if (level == -1) { - if (strchr(__Pyx_MODULE_NAME, '.')) { - module = PyImport_ImportModuleLevelObject( - name, global_dict, empty_dict, list, 1); - if (!module) { - if (!PyErr_ExceptionMatches(PyExc_ImportError)) - goto bad; - PyErr_Clear(); - } - } - level = 0; - } - #endif - if (!module) { - #if PY_MAJOR_VERSION < 3 - PyObject *py_level = PyInt_FromLong(level); - if (!py_level) - goto bad; - module = PyObject_CallFunctionObjArgs(py_import, - name, global_dict, empty_dict, list, py_level, (PyObject *)NULL); - Py_DECREF(py_level); - #else - module = PyImport_ImportModuleLevelObject( - name, global_dict, empty_dict, list, level); - #endif - } - } -bad: - #if PY_MAJOR_VERSION < 3 - Py_XDECREF(py_import); - #endif - Py_XDECREF(empty_list); - Py_XDECREF(empty_dict); - return module; -} - -/* ImportFrom */ -static PyObject* __Pyx_ImportFrom(PyObject* module, PyObject* name) { - PyObject* value = __Pyx_PyObject_GetAttrStr(module, name); - if (unlikely(!value) && PyErr_ExceptionMatches(PyExc_AttributeError)) { - PyErr_Format(PyExc_ImportError, - #if PY_MAJOR_VERSION < 3 - "cannot import name %.230s", PyString_AS_STRING(name)); - #else - "cannot import name %S", name); - #endif - } - return value; -} - -/* CalculateMetaclass */ -static PyObject *__Pyx_CalculateMetaclass(PyTypeObject *metaclass, PyObject *bases) { - Py_ssize_t i, nbases = PyTuple_GET_SIZE(bases); - for (i=0; i < nbases; i++) { - PyTypeObject *tmptype; - PyObject *tmp = PyTuple_GET_ITEM(bases, i); - tmptype = Py_TYPE(tmp); -#if PY_MAJOR_VERSION < 3 - if (tmptype == &PyClass_Type) - continue; -#endif - if (!metaclass) { - metaclass = tmptype; - continue; - } - if (PyType_IsSubtype(metaclass, tmptype)) - continue; - if (PyType_IsSubtype(tmptype, metaclass)) { - metaclass = tmptype; - continue; - } - PyErr_SetString(PyExc_TypeError, - "metaclass conflict: " - "the metaclass of a derived class " - "must be a (non-strict) subclass " - "of the metaclasses of all its bases"); - return NULL; - } - if (!metaclass) { -#if PY_MAJOR_VERSION < 3 - metaclass = &PyClass_Type; -#else - metaclass = &PyType_Type; -#endif - } - Py_INCREF((PyObject*) metaclass); - return (PyObject*) metaclass; -} - -/* Py3ClassCreate */ -static PyObject *__Pyx_Py3MetaclassPrepare(PyObject *metaclass, PyObject *bases, PyObject *name, - PyObject *qualname, PyObject *mkw, PyObject *modname, PyObject *doc) { - PyObject *ns; - if (metaclass) { - PyObject *prep = __Pyx_PyObject_GetAttrStr(metaclass, __pyx_n_s_prepare); - if (prep) { - PyObject *pargs = PyTuple_Pack(2, name, bases); - if (unlikely(!pargs)) { - Py_DECREF(prep); - return NULL; - } - ns = PyObject_Call(prep, pargs, mkw); - Py_DECREF(prep); - Py_DECREF(pargs); - } else { - if (unlikely(!PyErr_ExceptionMatches(PyExc_AttributeError))) - return NULL; - PyErr_Clear(); - ns = PyDict_New(); - } - } else { - ns = PyDict_New(); - } - if (unlikely(!ns)) - return NULL; - if (unlikely(PyObject_SetItem(ns, __pyx_n_s_module, modname) < 0)) goto bad; - if (unlikely(PyObject_SetItem(ns, __pyx_n_s_qualname, qualname) < 0)) goto bad; - if (unlikely(doc && PyObject_SetItem(ns, __pyx_n_s_doc, doc) < 0)) goto bad; - return ns; -bad: - Py_DECREF(ns); - return NULL; -} -static PyObject *__Pyx_Py3ClassCreate(PyObject *metaclass, PyObject *name, PyObject *bases, - PyObject *dict, PyObject *mkw, - int calculate_metaclass, int allow_py2_metaclass) { - PyObject *result, *margs; - PyObject *owned_metaclass = NULL; - if (allow_py2_metaclass) { - owned_metaclass = PyObject_GetItem(dict, __pyx_n_s_metaclass); - if (owned_metaclass) { - metaclass = owned_metaclass; - } else if (likely(PyErr_ExceptionMatches(PyExc_KeyError))) { - PyErr_Clear(); - } else { - return NULL; - } - } - if (calculate_metaclass && (!metaclass || PyType_Check(metaclass))) { - metaclass = __Pyx_CalculateMetaclass((PyTypeObject*) metaclass, bases); - Py_XDECREF(owned_metaclass); - if (unlikely(!metaclass)) - return NULL; - owned_metaclass = metaclass; - } - margs = PyTuple_Pack(3, name, bases, dict); - if (unlikely(!margs)) { - result = NULL; - } else { - result = PyObject_Call(metaclass, margs, mkw); - Py_DECREF(margs); - } - Py_XDECREF(owned_metaclass); - return result; -} - -/* PyErrFetchRestore */ -#if CYTHON_FAST_THREAD_STATE -static CYTHON_INLINE void __Pyx_ErrRestoreInState(PyThreadState *tstate, PyObject *type, PyObject *value, PyObject *tb) { - PyObject *tmp_type, *tmp_value, *tmp_tb; - tmp_type = tstate->curexc_type; - tmp_value = tstate->curexc_value; - tmp_tb = tstate->curexc_traceback; - tstate->curexc_type = type; - tstate->curexc_value = value; - tstate->curexc_traceback = tb; - Py_XDECREF(tmp_type); - Py_XDECREF(tmp_value); - Py_XDECREF(tmp_tb); -} -static CYTHON_INLINE void __Pyx_ErrFetchInState(PyThreadState *tstate, PyObject **type, PyObject **value, PyObject **tb) { - *type = tstate->curexc_type; - *value = tstate->curexc_value; - *tb = tstate->curexc_traceback; - tstate->curexc_type = 0; - tstate->curexc_value = 0; - tstate->curexc_traceback = 0; -} -#endif - -/* CLineInTraceback */ -#ifndef CYTHON_CLINE_IN_TRACEBACK -static int __Pyx_CLineForTraceback(PyThreadState *tstate, int c_line) { - PyObject *use_cline; - PyObject *ptype, *pvalue, *ptraceback; -#if CYTHON_COMPILING_IN_CPYTHON - PyObject **cython_runtime_dict; -#endif - if (unlikely(!__pyx_cython_runtime)) { - return c_line; - } - __Pyx_ErrFetchInState(tstate, &ptype, &pvalue, &ptraceback); -#if CYTHON_COMPILING_IN_CPYTHON - cython_runtime_dict = _PyObject_GetDictPtr(__pyx_cython_runtime); - if (likely(cython_runtime_dict)) { - __PYX_PY_DICT_LOOKUP_IF_MODIFIED( - use_cline, *cython_runtime_dict, - __Pyx_PyDict_GetItemStr(*cython_runtime_dict, __pyx_n_s_cline_in_traceback)) - } else -#endif - { - PyObject *use_cline_obj = __Pyx_PyObject_GetAttrStr(__pyx_cython_runtime, __pyx_n_s_cline_in_traceback); - if (use_cline_obj) { - use_cline = PyObject_Not(use_cline_obj) ? Py_False : Py_True; - Py_DECREF(use_cline_obj); - } else { - PyErr_Clear(); - use_cline = NULL; - } - } - if (!use_cline) { - c_line = 0; - PyObject_SetAttr(__pyx_cython_runtime, __pyx_n_s_cline_in_traceback, Py_False); - } - else if (use_cline == Py_False || (use_cline != Py_True && PyObject_Not(use_cline) != 0)) { - c_line = 0; - } - __Pyx_ErrRestoreInState(tstate, ptype, pvalue, ptraceback); - return c_line; -} -#endif - -/* CodeObjectCache */ -static int __pyx_bisect_code_objects(__Pyx_CodeObjectCacheEntry* entries, int count, int code_line) { - int start = 0, mid = 0, end = count - 1; - if (end >= 0 && code_line > entries[end].code_line) { - return count; - } - while (start < end) { - mid = start + (end - start) / 2; - if (code_line < entries[mid].code_line) { - end = mid; - } else if (code_line > entries[mid].code_line) { - start = mid + 1; - } else { - return mid; - } - } - if (code_line <= entries[mid].code_line) { - return mid; - } else { - return mid + 1; - } -} -static PyCodeObject *__pyx_find_code_object(int code_line) { - PyCodeObject* code_object; - int pos; - if (unlikely(!code_line) || unlikely(!__pyx_code_cache.entries)) { - return NULL; - } - pos = __pyx_bisect_code_objects(__pyx_code_cache.entries, __pyx_code_cache.count, code_line); - if (unlikely(pos >= __pyx_code_cache.count) || unlikely(__pyx_code_cache.entries[pos].code_line != code_line)) { - return NULL; - } - code_object = __pyx_code_cache.entries[pos].code_object; - Py_INCREF(code_object); - return code_object; -} -static void __pyx_insert_code_object(int code_line, PyCodeObject* code_object) { - int pos, i; - __Pyx_CodeObjectCacheEntry* entries = __pyx_code_cache.entries; - if (unlikely(!code_line)) { - return; - } - if (unlikely(!entries)) { - entries = (__Pyx_CodeObjectCacheEntry*)PyMem_Malloc(64*sizeof(__Pyx_CodeObjectCacheEntry)); - if (likely(entries)) { - __pyx_code_cache.entries = entries; - __pyx_code_cache.max_count = 64; - __pyx_code_cache.count = 1; - entries[0].code_line = code_line; - entries[0].code_object = code_object; - Py_INCREF(code_object); - } - return; - } - pos = __pyx_bisect_code_objects(__pyx_code_cache.entries, __pyx_code_cache.count, code_line); - if ((pos < __pyx_code_cache.count) && unlikely(__pyx_code_cache.entries[pos].code_line == code_line)) { - PyCodeObject* tmp = entries[pos].code_object; - entries[pos].code_object = code_object; - Py_DECREF(tmp); - return; - } - if (__pyx_code_cache.count == __pyx_code_cache.max_count) { - int new_max = __pyx_code_cache.max_count + 64; - entries = (__Pyx_CodeObjectCacheEntry*)PyMem_Realloc( - __pyx_code_cache.entries, (size_t)new_max*sizeof(__Pyx_CodeObjectCacheEntry)); - if (unlikely(!entries)) { - return; - } - __pyx_code_cache.entries = entries; - __pyx_code_cache.max_count = new_max; - } - for (i=__pyx_code_cache.count; i>pos; i--) { - entries[i] = entries[i-1]; - } - entries[pos].code_line = code_line; - entries[pos].code_object = code_object; - __pyx_code_cache.count++; - Py_INCREF(code_object); -} - -/* AddTraceback */ -#include "compile.h" -#include "frameobject.h" -#include "traceback.h" -static PyCodeObject* __Pyx_CreateCodeObjectForTraceback( - const char *funcname, int c_line, - int py_line, const char *filename) { - PyCodeObject *py_code = 0; - PyObject *py_srcfile = 0; - PyObject *py_funcname = 0; - #if PY_MAJOR_VERSION < 3 - py_srcfile = PyString_FromString(filename); - #else - py_srcfile = PyUnicode_FromString(filename); - #endif - if (!py_srcfile) goto bad; - if (c_line) { - #if PY_MAJOR_VERSION < 3 - py_funcname = PyString_FromFormat( "%s (%s:%d)", funcname, __pyx_cfilenm, c_line); - #else - py_funcname = PyUnicode_FromFormat( "%s (%s:%d)", funcname, __pyx_cfilenm, c_line); - #endif - } - else { - #if PY_MAJOR_VERSION < 3 - py_funcname = PyString_FromString(funcname); - #else - py_funcname = PyUnicode_FromString(funcname); - #endif - } - if (!py_funcname) goto bad; - py_code = __Pyx_PyCode_New( - 0, - 0, - 0, - 0, - 0, - __pyx_empty_bytes, /*PyObject *code,*/ - __pyx_empty_tuple, /*PyObject *consts,*/ - __pyx_empty_tuple, /*PyObject *names,*/ - __pyx_empty_tuple, /*PyObject *varnames,*/ - __pyx_empty_tuple, /*PyObject *freevars,*/ - __pyx_empty_tuple, /*PyObject *cellvars,*/ - py_srcfile, /*PyObject *filename,*/ - py_funcname, /*PyObject *name,*/ - py_line, - __pyx_empty_bytes /*PyObject *lnotab*/ - ); - Py_DECREF(py_srcfile); - Py_DECREF(py_funcname); - return py_code; -bad: - Py_XDECREF(py_srcfile); - Py_XDECREF(py_funcname); - return NULL; -} -static void __Pyx_AddTraceback(const char *funcname, int c_line, - int py_line, const char *filename) { - PyCodeObject *py_code = 0; - PyFrameObject *py_frame = 0; - PyThreadState *tstate = __Pyx_PyThreadState_Current; - if (c_line) { - c_line = __Pyx_CLineForTraceback(tstate, c_line); - } - py_code = __pyx_find_code_object(c_line ? -c_line : py_line); - if (!py_code) { - py_code = __Pyx_CreateCodeObjectForTraceback( - funcname, c_line, py_line, filename); - if (!py_code) goto bad; - __pyx_insert_code_object(c_line ? -c_line : py_line, py_code); - } - py_frame = PyFrame_New( - tstate, /*PyThreadState *tstate,*/ - py_code, /*PyCodeObject *code,*/ - __pyx_d, /*PyObject *globals,*/ - 0 /*PyObject *locals*/ - ); - if (!py_frame) goto bad; - __Pyx_PyFrame_SetLineNumber(py_frame, py_line); - PyTraceBack_Here(py_frame); -bad: - Py_XDECREF(py_code); - Py_XDECREF(py_frame); -} - -/* CIntFromPyVerify */ -#define __PYX_VERIFY_RETURN_INT(target_type, func_type, func_value)\ - __PYX__VERIFY_RETURN_INT(target_type, func_type, func_value, 0) -#define __PYX_VERIFY_RETURN_INT_EXC(target_type, func_type, func_value)\ - __PYX__VERIFY_RETURN_INT(target_type, func_type, func_value, 1) -#define __PYX__VERIFY_RETURN_INT(target_type, func_type, func_value, exc)\ - {\ - func_type value = func_value;\ - if (sizeof(target_type) < sizeof(func_type)) {\ - if (unlikely(value != (func_type) (target_type) value)) {\ - func_type zero = 0;\ - if (exc && unlikely(value == (func_type)-1 && PyErr_Occurred()))\ - return (target_type) -1;\ - if (is_unsigned && unlikely(value < zero))\ - goto raise_neg_overflow;\ - else\ - goto raise_overflow;\ - }\ - }\ - return (target_type) value;\ - } - -/* CIntToPy */ -static CYTHON_INLINE PyObject* __Pyx_PyInt_From_long(long value) { - const long neg_one = (long) ((long) 0 - (long) 1), const_zero = (long) 0; - const int is_unsigned = neg_one > const_zero; - if (is_unsigned) { - if (sizeof(long) < sizeof(long)) { - return PyInt_FromLong((long) value); - } else if (sizeof(long) <= sizeof(unsigned long)) { - return PyLong_FromUnsignedLong((unsigned long) value); -#ifdef HAVE_LONG_LONG - } else if (sizeof(long) <= sizeof(unsigned PY_LONG_LONG)) { - return PyLong_FromUnsignedLongLong((unsigned PY_LONG_LONG) value); -#endif - } - } else { - if (sizeof(long) <= sizeof(long)) { - return PyInt_FromLong((long) value); -#ifdef HAVE_LONG_LONG - } else if (sizeof(long) <= sizeof(PY_LONG_LONG)) { - return PyLong_FromLongLong((PY_LONG_LONG) value); -#endif - } - } - { - int one = 1; int little = (int)*(unsigned char *)&one; - unsigned char *bytes = (unsigned char *)&value; - return _PyLong_FromByteArray(bytes, sizeof(long), - little, !is_unsigned); - } -} - -/* CIntFromPy */ -static CYTHON_INLINE unsigned int __Pyx_PyInt_As_unsigned_int(PyObject *x) { - const unsigned int neg_one = (unsigned int) ((unsigned int) 0 - (unsigned int) 1), const_zero = (unsigned int) 0; - const int is_unsigned = neg_one > const_zero; -#if PY_MAJOR_VERSION < 3 - if (likely(PyInt_Check(x))) { - if (sizeof(unsigned int) < sizeof(long)) { - __PYX_VERIFY_RETURN_INT(unsigned int, long, PyInt_AS_LONG(x)) - } else { - long val = PyInt_AS_LONG(x); - if (is_unsigned && unlikely(val < 0)) { - goto raise_neg_overflow; - } - return (unsigned int) val; - } - } else -#endif - if (likely(PyLong_Check(x))) { - if (is_unsigned) { -#if CYTHON_USE_PYLONG_INTERNALS - const digit* digits = ((PyLongObject*)x)->ob_digit; - switch (Py_SIZE(x)) { - case 0: return (unsigned int) 0; - case 1: __PYX_VERIFY_RETURN_INT(unsigned int, digit, digits[0]) - case 2: - if (8 * sizeof(unsigned int) > 1 * PyLong_SHIFT) { - if (8 * sizeof(unsigned long) > 2 * PyLong_SHIFT) { - __PYX_VERIFY_RETURN_INT(unsigned int, unsigned long, (((((unsigned long)digits[1]) << PyLong_SHIFT) | (unsigned long)digits[0]))) - } else if (8 * sizeof(unsigned int) >= 2 * PyLong_SHIFT) { - return (unsigned int) (((((unsigned int)digits[1]) << PyLong_SHIFT) | (unsigned int)digits[0])); - } - } - break; - case 3: - if (8 * sizeof(unsigned int) > 2 * PyLong_SHIFT) { - if (8 * sizeof(unsigned long) > 3 * PyLong_SHIFT) { - __PYX_VERIFY_RETURN_INT(unsigned int, unsigned long, (((((((unsigned long)digits[2]) << PyLong_SHIFT) | (unsigned long)digits[1]) << PyLong_SHIFT) | (unsigned long)digits[0]))) - } else if (8 * sizeof(unsigned int) >= 3 * PyLong_SHIFT) { - return (unsigned int) (((((((unsigned int)digits[2]) << PyLong_SHIFT) | (unsigned int)digits[1]) << PyLong_SHIFT) | (unsigned int)digits[0])); - } - } - break; - case 4: - if (8 * sizeof(unsigned int) > 3 * PyLong_SHIFT) { - if (8 * sizeof(unsigned long) > 4 * PyLong_SHIFT) { - __PYX_VERIFY_RETURN_INT(unsigned int, unsigned long, (((((((((unsigned long)digits[3]) << PyLong_SHIFT) | (unsigned long)digits[2]) << PyLong_SHIFT) | (unsigned long)digits[1]) << PyLong_SHIFT) | (unsigned long)digits[0]))) - } else if (8 * sizeof(unsigned int) >= 4 * PyLong_SHIFT) { - return (unsigned int) (((((((((unsigned int)digits[3]) << PyLong_SHIFT) | (unsigned int)digits[2]) << PyLong_SHIFT) | (unsigned int)digits[1]) << PyLong_SHIFT) | (unsigned int)digits[0])); - } - } - break; - } -#endif -#if CYTHON_COMPILING_IN_CPYTHON - if (unlikely(Py_SIZE(x) < 0)) { - goto raise_neg_overflow; - } -#else - { - int result = PyObject_RichCompareBool(x, Py_False, Py_LT); - if (unlikely(result < 0)) - return (unsigned int) -1; - if (unlikely(result == 1)) - goto raise_neg_overflow; - } -#endif - if (sizeof(unsigned int) <= sizeof(unsigned long)) { - __PYX_VERIFY_RETURN_INT_EXC(unsigned int, unsigned long, PyLong_AsUnsignedLong(x)) -#ifdef HAVE_LONG_LONG - } else if (sizeof(unsigned int) <= sizeof(unsigned PY_LONG_LONG)) { - __PYX_VERIFY_RETURN_INT_EXC(unsigned int, unsigned PY_LONG_LONG, PyLong_AsUnsignedLongLong(x)) -#endif - } - } else { -#if CYTHON_USE_PYLONG_INTERNALS - const digit* digits = ((PyLongObject*)x)->ob_digit; - switch (Py_SIZE(x)) { - case 0: return (unsigned int) 0; - case -1: __PYX_VERIFY_RETURN_INT(unsigned int, sdigit, (sdigit) (-(sdigit)digits[0])) - case 1: __PYX_VERIFY_RETURN_INT(unsigned int, digit, +digits[0]) - case -2: - if (8 * sizeof(unsigned int) - 1 > 1 * PyLong_SHIFT) { - if (8 * sizeof(unsigned long) > 2 * PyLong_SHIFT) { - __PYX_VERIFY_RETURN_INT(unsigned int, long, -(long) (((((unsigned long)digits[1]) << PyLong_SHIFT) | (unsigned long)digits[0]))) - } else if (8 * sizeof(unsigned int) - 1 > 2 * PyLong_SHIFT) { - return (unsigned int) (((unsigned int)-1)*(((((unsigned int)digits[1]) << PyLong_SHIFT) | (unsigned int)digits[0]))); - } - } - break; - case 2: - if (8 * sizeof(unsigned int) > 1 * PyLong_SHIFT) { - if (8 * sizeof(unsigned long) > 2 * PyLong_SHIFT) { - __PYX_VERIFY_RETURN_INT(unsigned int, unsigned long, (((((unsigned long)digits[1]) << PyLong_SHIFT) | (unsigned long)digits[0]))) - } else if (8 * sizeof(unsigned int) - 1 > 2 * PyLong_SHIFT) { - return (unsigned int) ((((((unsigned int)digits[1]) << PyLong_SHIFT) | (unsigned int)digits[0]))); - } - } - break; - case -3: - if (8 * sizeof(unsigned int) - 1 > 2 * PyLong_SHIFT) { - if (8 * sizeof(unsigned long) > 3 * PyLong_SHIFT) { - __PYX_VERIFY_RETURN_INT(unsigned int, long, -(long) (((((((unsigned long)digits[2]) << PyLong_SHIFT) | (unsigned long)digits[1]) << PyLong_SHIFT) | (unsigned long)digits[0]))) - } else if (8 * sizeof(unsigned int) - 1 > 3 * PyLong_SHIFT) { - return (unsigned int) (((unsigned int)-1)*(((((((unsigned int)digits[2]) << PyLong_SHIFT) | (unsigned int)digits[1]) << PyLong_SHIFT) | (unsigned int)digits[0]))); - } - } - break; - case 3: - if (8 * sizeof(unsigned int) > 2 * PyLong_SHIFT) { - if (8 * sizeof(unsigned long) > 3 * PyLong_SHIFT) { - __PYX_VERIFY_RETURN_INT(unsigned int, unsigned long, (((((((unsigned long)digits[2]) << PyLong_SHIFT) | (unsigned long)digits[1]) << PyLong_SHIFT) | (unsigned long)digits[0]))) - } else if (8 * sizeof(unsigned int) - 1 > 3 * PyLong_SHIFT) { - return (unsigned int) ((((((((unsigned int)digits[2]) << PyLong_SHIFT) | (unsigned int)digits[1]) << PyLong_SHIFT) | (unsigned int)digits[0]))); - } - } - break; - case -4: - if (8 * sizeof(unsigned int) - 1 > 3 * PyLong_SHIFT) { - if (8 * sizeof(unsigned long) > 4 * PyLong_SHIFT) { - __PYX_VERIFY_RETURN_INT(unsigned int, long, -(long) (((((((((unsigned long)digits[3]) << PyLong_SHIFT) | (unsigned long)digits[2]) << PyLong_SHIFT) | (unsigned long)digits[1]) << PyLong_SHIFT) | (unsigned long)digits[0]))) - } else if (8 * sizeof(unsigned int) - 1 > 4 * PyLong_SHIFT) { - return (unsigned int) (((unsigned int)-1)*(((((((((unsigned int)digits[3]) << PyLong_SHIFT) | (unsigned int)digits[2]) << PyLong_SHIFT) | (unsigned int)digits[1]) << PyLong_SHIFT) | (unsigned int)digits[0]))); - } - } - break; - case 4: - if (8 * sizeof(unsigned int) > 3 * PyLong_SHIFT) { - if (8 * sizeof(unsigned long) > 4 * PyLong_SHIFT) { - __PYX_VERIFY_RETURN_INT(unsigned int, unsigned long, (((((((((unsigned long)digits[3]) << PyLong_SHIFT) | (unsigned long)digits[2]) << PyLong_SHIFT) | (unsigned long)digits[1]) << PyLong_SHIFT) | (unsigned long)digits[0]))) - } else if (8 * sizeof(unsigned int) - 1 > 4 * PyLong_SHIFT) { - return (unsigned int) ((((((((((unsigned int)digits[3]) << PyLong_SHIFT) | (unsigned int)digits[2]) << PyLong_SHIFT) | (unsigned int)digits[1]) << PyLong_SHIFT) | (unsigned int)digits[0]))); - } - } - break; - } -#endif - if (sizeof(unsigned int) <= sizeof(long)) { - __PYX_VERIFY_RETURN_INT_EXC(unsigned int, long, PyLong_AsLong(x)) -#ifdef HAVE_LONG_LONG - } else if (sizeof(unsigned int) <= sizeof(PY_LONG_LONG)) { - __PYX_VERIFY_RETURN_INT_EXC(unsigned int, PY_LONG_LONG, PyLong_AsLongLong(x)) -#endif - } - } - { -#if CYTHON_COMPILING_IN_PYPY && !defined(_PyLong_AsByteArray) - PyErr_SetString(PyExc_RuntimeError, - "_PyLong_AsByteArray() not available in PyPy, cannot convert large numbers"); -#else - unsigned int val; - PyObject *v = __Pyx_PyNumber_IntOrLong(x); - #if PY_MAJOR_VERSION < 3 - if (likely(v) && !PyLong_Check(v)) { - PyObject *tmp = v; - v = PyNumber_Long(tmp); - Py_DECREF(tmp); - } - #endif - if (likely(v)) { - int one = 1; int is_little = (int)*(unsigned char *)&one; - unsigned char *bytes = (unsigned char *)&val; - int ret = _PyLong_AsByteArray((PyLongObject *)v, - bytes, sizeof(val), - is_little, !is_unsigned); - Py_DECREF(v); - if (likely(!ret)) - return val; - } -#endif - return (unsigned int) -1; - } - } else { - unsigned int val; - PyObject *tmp = __Pyx_PyNumber_IntOrLong(x); - if (!tmp) return (unsigned int) -1; - val = __Pyx_PyInt_As_unsigned_int(tmp); - Py_DECREF(tmp); - return val; - } -raise_overflow: - PyErr_SetString(PyExc_OverflowError, - "value too large to convert to unsigned int"); - return (unsigned int) -1; -raise_neg_overflow: - PyErr_SetString(PyExc_OverflowError, - "can't convert negative value to unsigned int"); - return (unsigned int) -1; -} - -/* CIntFromPy */ -static CYTHON_INLINE long __Pyx_PyInt_As_long(PyObject *x) { - const long neg_one = (long) ((long) 0 - (long) 1), const_zero = (long) 0; - const int is_unsigned = neg_one > const_zero; -#if PY_MAJOR_VERSION < 3 - if (likely(PyInt_Check(x))) { - if (sizeof(long) < sizeof(long)) { - __PYX_VERIFY_RETURN_INT(long, long, PyInt_AS_LONG(x)) - } else { - long val = PyInt_AS_LONG(x); - if (is_unsigned && unlikely(val < 0)) { - goto raise_neg_overflow; - } - return (long) val; - } - } else -#endif - if (likely(PyLong_Check(x))) { - if (is_unsigned) { -#if CYTHON_USE_PYLONG_INTERNALS - const digit* digits = ((PyLongObject*)x)->ob_digit; - switch (Py_SIZE(x)) { - case 0: return (long) 0; - case 1: __PYX_VERIFY_RETURN_INT(long, digit, digits[0]) - case 2: - if (8 * sizeof(long) > 1 * PyLong_SHIFT) { - if (8 * sizeof(unsigned long) > 2 * PyLong_SHIFT) { - __PYX_VERIFY_RETURN_INT(long, unsigned long, (((((unsigned long)digits[1]) << PyLong_SHIFT) | (unsigned long)digits[0]))) - } else if (8 * sizeof(long) >= 2 * PyLong_SHIFT) { - return (long) (((((long)digits[1]) << PyLong_SHIFT) | (long)digits[0])); - } - } - break; - case 3: - if (8 * sizeof(long) > 2 * PyLong_SHIFT) { - if (8 * sizeof(unsigned long) > 3 * PyLong_SHIFT) { - __PYX_VERIFY_RETURN_INT(long, unsigned long, (((((((unsigned long)digits[2]) << PyLong_SHIFT) | (unsigned long)digits[1]) << PyLong_SHIFT) | (unsigned long)digits[0]))) - } else if (8 * sizeof(long) >= 3 * PyLong_SHIFT) { - return (long) (((((((long)digits[2]) << PyLong_SHIFT) | (long)digits[1]) << PyLong_SHIFT) | (long)digits[0])); - } - } - break; - case 4: - if (8 * sizeof(long) > 3 * PyLong_SHIFT) { - if (8 * sizeof(unsigned long) > 4 * PyLong_SHIFT) { - __PYX_VERIFY_RETURN_INT(long, unsigned long, (((((((((unsigned long)digits[3]) << PyLong_SHIFT) | (unsigned long)digits[2]) << PyLong_SHIFT) | (unsigned long)digits[1]) << PyLong_SHIFT) | (unsigned long)digits[0]))) - } else if (8 * sizeof(long) >= 4 * PyLong_SHIFT) { - return (long) (((((((((long)digits[3]) << PyLong_SHIFT) | (long)digits[2]) << PyLong_SHIFT) | (long)digits[1]) << PyLong_SHIFT) | (long)digits[0])); - } - } - break; - } -#endif -#if CYTHON_COMPILING_IN_CPYTHON - if (unlikely(Py_SIZE(x) < 0)) { - goto raise_neg_overflow; - } -#else - { - int result = PyObject_RichCompareBool(x, Py_False, Py_LT); - if (unlikely(result < 0)) - return (long) -1; - if (unlikely(result == 1)) - goto raise_neg_overflow; - } -#endif - if (sizeof(long) <= sizeof(unsigned long)) { - __PYX_VERIFY_RETURN_INT_EXC(long, unsigned long, PyLong_AsUnsignedLong(x)) -#ifdef HAVE_LONG_LONG - } else if (sizeof(long) <= sizeof(unsigned PY_LONG_LONG)) { - __PYX_VERIFY_RETURN_INT_EXC(long, unsigned PY_LONG_LONG, PyLong_AsUnsignedLongLong(x)) -#endif - } - } else { -#if CYTHON_USE_PYLONG_INTERNALS - const digit* digits = ((PyLongObject*)x)->ob_digit; - switch (Py_SIZE(x)) { - case 0: return (long) 0; - case -1: __PYX_VERIFY_RETURN_INT(long, sdigit, (sdigit) (-(sdigit)digits[0])) - case 1: __PYX_VERIFY_RETURN_INT(long, digit, +digits[0]) - case -2: - if (8 * sizeof(long) - 1 > 1 * PyLong_SHIFT) { - if (8 * sizeof(unsigned long) > 2 * PyLong_SHIFT) { - __PYX_VERIFY_RETURN_INT(long, long, -(long) (((((unsigned long)digits[1]) << PyLong_SHIFT) | (unsigned long)digits[0]))) - } else if (8 * sizeof(long) - 1 > 2 * PyLong_SHIFT) { - return (long) (((long)-1)*(((((long)digits[1]) << PyLong_SHIFT) | (long)digits[0]))); - } - } - break; - case 2: - if (8 * sizeof(long) > 1 * PyLong_SHIFT) { - if (8 * sizeof(unsigned long) > 2 * PyLong_SHIFT) { - __PYX_VERIFY_RETURN_INT(long, unsigned long, (((((unsigned long)digits[1]) << PyLong_SHIFT) | (unsigned long)digits[0]))) - } else if (8 * sizeof(long) - 1 > 2 * PyLong_SHIFT) { - return (long) ((((((long)digits[1]) << PyLong_SHIFT) | (long)digits[0]))); - } - } - break; - case -3: - if (8 * sizeof(long) - 1 > 2 * PyLong_SHIFT) { - if (8 * sizeof(unsigned long) > 3 * PyLong_SHIFT) { - __PYX_VERIFY_RETURN_INT(long, long, -(long) (((((((unsigned long)digits[2]) << PyLong_SHIFT) | (unsigned long)digits[1]) << PyLong_SHIFT) | (unsigned long)digits[0]))) - } else if (8 * sizeof(long) - 1 > 3 * PyLong_SHIFT) { - return (long) (((long)-1)*(((((((long)digits[2]) << PyLong_SHIFT) | (long)digits[1]) << PyLong_SHIFT) | (long)digits[0]))); - } - } - break; - case 3: - if (8 * sizeof(long) > 2 * PyLong_SHIFT) { - if (8 * sizeof(unsigned long) > 3 * PyLong_SHIFT) { - __PYX_VERIFY_RETURN_INT(long, unsigned long, (((((((unsigned long)digits[2]) << PyLong_SHIFT) | (unsigned long)digits[1]) << PyLong_SHIFT) | (unsigned long)digits[0]))) - } else if (8 * sizeof(long) - 1 > 3 * PyLong_SHIFT) { - return (long) ((((((((long)digits[2]) << PyLong_SHIFT) | (long)digits[1]) << PyLong_SHIFT) | (long)digits[0]))); - } - } - break; - case -4: - if (8 * sizeof(long) - 1 > 3 * PyLong_SHIFT) { - if (8 * sizeof(unsigned long) > 4 * PyLong_SHIFT) { - __PYX_VERIFY_RETURN_INT(long, long, -(long) (((((((((unsigned long)digits[3]) << PyLong_SHIFT) | (unsigned long)digits[2]) << PyLong_SHIFT) | (unsigned long)digits[1]) << PyLong_SHIFT) | (unsigned long)digits[0]))) - } else if (8 * sizeof(long) - 1 > 4 * PyLong_SHIFT) { - return (long) (((long)-1)*(((((((((long)digits[3]) << PyLong_SHIFT) | (long)digits[2]) << PyLong_SHIFT) | (long)digits[1]) << PyLong_SHIFT) | (long)digits[0]))); - } - } - break; - case 4: - if (8 * sizeof(long) > 3 * PyLong_SHIFT) { - if (8 * sizeof(unsigned long) > 4 * PyLong_SHIFT) { - __PYX_VERIFY_RETURN_INT(long, unsigned long, (((((((((unsigned long)digits[3]) << PyLong_SHIFT) | (unsigned long)digits[2]) << PyLong_SHIFT) | (unsigned long)digits[1]) << PyLong_SHIFT) | (unsigned long)digits[0]))) - } else if (8 * sizeof(long) - 1 > 4 * PyLong_SHIFT) { - return (long) ((((((((((long)digits[3]) << PyLong_SHIFT) | (long)digits[2]) << PyLong_SHIFT) | (long)digits[1]) << PyLong_SHIFT) | (long)digits[0]))); - } - } - break; - } -#endif - if (sizeof(long) <= sizeof(long)) { - __PYX_VERIFY_RETURN_INT_EXC(long, long, PyLong_AsLong(x)) -#ifdef HAVE_LONG_LONG - } else if (sizeof(long) <= sizeof(PY_LONG_LONG)) { - __PYX_VERIFY_RETURN_INT_EXC(long, PY_LONG_LONG, PyLong_AsLongLong(x)) -#endif - } - } - { -#if CYTHON_COMPILING_IN_PYPY && !defined(_PyLong_AsByteArray) - PyErr_SetString(PyExc_RuntimeError, - "_PyLong_AsByteArray() not available in PyPy, cannot convert large numbers"); -#else - long val; - PyObject *v = __Pyx_PyNumber_IntOrLong(x); - #if PY_MAJOR_VERSION < 3 - if (likely(v) && !PyLong_Check(v)) { - PyObject *tmp = v; - v = PyNumber_Long(tmp); - Py_DECREF(tmp); - } - #endif - if (likely(v)) { - int one = 1; int is_little = (int)*(unsigned char *)&one; - unsigned char *bytes = (unsigned char *)&val; - int ret = _PyLong_AsByteArray((PyLongObject *)v, - bytes, sizeof(val), - is_little, !is_unsigned); - Py_DECREF(v); - if (likely(!ret)) - return val; - } -#endif - return (long) -1; - } - } else { - long val; - PyObject *tmp = __Pyx_PyNumber_IntOrLong(x); - if (!tmp) return (long) -1; - val = __Pyx_PyInt_As_long(tmp); - Py_DECREF(tmp); - return val; - } -raise_overflow: - PyErr_SetString(PyExc_OverflowError, - "value too large to convert to long"); - return (long) -1; -raise_neg_overflow: - PyErr_SetString(PyExc_OverflowError, - "can't convert negative value to long"); - return (long) -1; -} - -/* CIntFromPy */ -static CYTHON_INLINE int __Pyx_PyInt_As_int(PyObject *x) { - const int neg_one = (int) ((int) 0 - (int) 1), const_zero = (int) 0; - const int is_unsigned = neg_one > const_zero; -#if PY_MAJOR_VERSION < 3 - if (likely(PyInt_Check(x))) { - if (sizeof(int) < sizeof(long)) { - __PYX_VERIFY_RETURN_INT(int, long, PyInt_AS_LONG(x)) - } else { - long val = PyInt_AS_LONG(x); - if (is_unsigned && unlikely(val < 0)) { - goto raise_neg_overflow; - } - return (int) val; - } - } else -#endif - if (likely(PyLong_Check(x))) { - if (is_unsigned) { -#if CYTHON_USE_PYLONG_INTERNALS - const digit* digits = ((PyLongObject*)x)->ob_digit; - switch (Py_SIZE(x)) { - case 0: return (int) 0; - case 1: __PYX_VERIFY_RETURN_INT(int, digit, digits[0]) - case 2: - if (8 * sizeof(int) > 1 * PyLong_SHIFT) { - if (8 * sizeof(unsigned long) > 2 * PyLong_SHIFT) { - __PYX_VERIFY_RETURN_INT(int, unsigned long, (((((unsigned long)digits[1]) << PyLong_SHIFT) | (unsigned long)digits[0]))) - } else if (8 * sizeof(int) >= 2 * PyLong_SHIFT) { - return (int) (((((int)digits[1]) << PyLong_SHIFT) | (int)digits[0])); - } - } - break; - case 3: - if (8 * sizeof(int) > 2 * PyLong_SHIFT) { - if (8 * sizeof(unsigned long) > 3 * PyLong_SHIFT) { - __PYX_VERIFY_RETURN_INT(int, unsigned long, (((((((unsigned long)digits[2]) << PyLong_SHIFT) | (unsigned long)digits[1]) << PyLong_SHIFT) | (unsigned long)digits[0]))) - } else if (8 * sizeof(int) >= 3 * PyLong_SHIFT) { - return (int) (((((((int)digits[2]) << PyLong_SHIFT) | (int)digits[1]) << PyLong_SHIFT) | (int)digits[0])); - } - } - break; - case 4: - if (8 * sizeof(int) > 3 * PyLong_SHIFT) { - if (8 * sizeof(unsigned long) > 4 * PyLong_SHIFT) { - __PYX_VERIFY_RETURN_INT(int, unsigned long, (((((((((unsigned long)digits[3]) << PyLong_SHIFT) | (unsigned long)digits[2]) << PyLong_SHIFT) | (unsigned long)digits[1]) << PyLong_SHIFT) | (unsigned long)digits[0]))) - } else if (8 * sizeof(int) >= 4 * PyLong_SHIFT) { - return (int) (((((((((int)digits[3]) << PyLong_SHIFT) | (int)digits[2]) << PyLong_SHIFT) | (int)digits[1]) << PyLong_SHIFT) | (int)digits[0])); - } - } - break; - } -#endif -#if CYTHON_COMPILING_IN_CPYTHON - if (unlikely(Py_SIZE(x) < 0)) { - goto raise_neg_overflow; - } -#else - { - int result = PyObject_RichCompareBool(x, Py_False, Py_LT); - if (unlikely(result < 0)) - return (int) -1; - if (unlikely(result == 1)) - goto raise_neg_overflow; - } -#endif - if (sizeof(int) <= sizeof(unsigned long)) { - __PYX_VERIFY_RETURN_INT_EXC(int, unsigned long, PyLong_AsUnsignedLong(x)) -#ifdef HAVE_LONG_LONG - } else if (sizeof(int) <= sizeof(unsigned PY_LONG_LONG)) { - __PYX_VERIFY_RETURN_INT_EXC(int, unsigned PY_LONG_LONG, PyLong_AsUnsignedLongLong(x)) -#endif - } - } else { -#if CYTHON_USE_PYLONG_INTERNALS - const digit* digits = ((PyLongObject*)x)->ob_digit; - switch (Py_SIZE(x)) { - case 0: return (int) 0; - case -1: __PYX_VERIFY_RETURN_INT(int, sdigit, (sdigit) (-(sdigit)digits[0])) - case 1: __PYX_VERIFY_RETURN_INT(int, digit, +digits[0]) - case -2: - if (8 * sizeof(int) - 1 > 1 * PyLong_SHIFT) { - if (8 * sizeof(unsigned long) > 2 * PyLong_SHIFT) { - __PYX_VERIFY_RETURN_INT(int, long, -(long) (((((unsigned long)digits[1]) << PyLong_SHIFT) | (unsigned long)digits[0]))) - } else if (8 * sizeof(int) - 1 > 2 * PyLong_SHIFT) { - return (int) (((int)-1)*(((((int)digits[1]) << PyLong_SHIFT) | (int)digits[0]))); - } - } - break; - case 2: - if (8 * sizeof(int) > 1 * PyLong_SHIFT) { - if (8 * sizeof(unsigned long) > 2 * PyLong_SHIFT) { - __PYX_VERIFY_RETURN_INT(int, unsigned long, (((((unsigned long)digits[1]) << PyLong_SHIFT) | (unsigned long)digits[0]))) - } else if (8 * sizeof(int) - 1 > 2 * PyLong_SHIFT) { - return (int) ((((((int)digits[1]) << PyLong_SHIFT) | (int)digits[0]))); - } - } - break; - case -3: - if (8 * sizeof(int) - 1 > 2 * PyLong_SHIFT) { - if (8 * sizeof(unsigned long) > 3 * PyLong_SHIFT) { - __PYX_VERIFY_RETURN_INT(int, long, -(long) (((((((unsigned long)digits[2]) << PyLong_SHIFT) | (unsigned long)digits[1]) << PyLong_SHIFT) | (unsigned long)digits[0]))) - } else if (8 * sizeof(int) - 1 > 3 * PyLong_SHIFT) { - return (int) (((int)-1)*(((((((int)digits[2]) << PyLong_SHIFT) | (int)digits[1]) << PyLong_SHIFT) | (int)digits[0]))); - } - } - break; - case 3: - if (8 * sizeof(int) > 2 * PyLong_SHIFT) { - if (8 * sizeof(unsigned long) > 3 * PyLong_SHIFT) { - __PYX_VERIFY_RETURN_INT(int, unsigned long, (((((((unsigned long)digits[2]) << PyLong_SHIFT) | (unsigned long)digits[1]) << PyLong_SHIFT) | (unsigned long)digits[0]))) - } else if (8 * sizeof(int) - 1 > 3 * PyLong_SHIFT) { - return (int) ((((((((int)digits[2]) << PyLong_SHIFT) | (int)digits[1]) << PyLong_SHIFT) | (int)digits[0]))); - } - } - break; - case -4: - if (8 * sizeof(int) - 1 > 3 * PyLong_SHIFT) { - if (8 * sizeof(unsigned long) > 4 * PyLong_SHIFT) { - __PYX_VERIFY_RETURN_INT(int, long, -(long) (((((((((unsigned long)digits[3]) << PyLong_SHIFT) | (unsigned long)digits[2]) << PyLong_SHIFT) | (unsigned long)digits[1]) << PyLong_SHIFT) | (unsigned long)digits[0]))) - } else if (8 * sizeof(int) - 1 > 4 * PyLong_SHIFT) { - return (int) (((int)-1)*(((((((((int)digits[3]) << PyLong_SHIFT) | (int)digits[2]) << PyLong_SHIFT) | (int)digits[1]) << PyLong_SHIFT) | (int)digits[0]))); - } - } - break; - case 4: - if (8 * sizeof(int) > 3 * PyLong_SHIFT) { - if (8 * sizeof(unsigned long) > 4 * PyLong_SHIFT) { - __PYX_VERIFY_RETURN_INT(int, unsigned long, (((((((((unsigned long)digits[3]) << PyLong_SHIFT) | (unsigned long)digits[2]) << PyLong_SHIFT) | (unsigned long)digits[1]) << PyLong_SHIFT) | (unsigned long)digits[0]))) - } else if (8 * sizeof(int) - 1 > 4 * PyLong_SHIFT) { - return (int) ((((((((((int)digits[3]) << PyLong_SHIFT) | (int)digits[2]) << PyLong_SHIFT) | (int)digits[1]) << PyLong_SHIFT) | (int)digits[0]))); - } - } - break; - } -#endif - if (sizeof(int) <= sizeof(long)) { - __PYX_VERIFY_RETURN_INT_EXC(int, long, PyLong_AsLong(x)) -#ifdef HAVE_LONG_LONG - } else if (sizeof(int) <= sizeof(PY_LONG_LONG)) { - __PYX_VERIFY_RETURN_INT_EXC(int, PY_LONG_LONG, PyLong_AsLongLong(x)) -#endif - } - } - { -#if CYTHON_COMPILING_IN_PYPY && !defined(_PyLong_AsByteArray) - PyErr_SetString(PyExc_RuntimeError, - "_PyLong_AsByteArray() not available in PyPy, cannot convert large numbers"); -#else - int val; - PyObject *v = __Pyx_PyNumber_IntOrLong(x); - #if PY_MAJOR_VERSION < 3 - if (likely(v) && !PyLong_Check(v)) { - PyObject *tmp = v; - v = PyNumber_Long(tmp); - Py_DECREF(tmp); - } - #endif - if (likely(v)) { - int one = 1; int is_little = (int)*(unsigned char *)&one; - unsigned char *bytes = (unsigned char *)&val; - int ret = _PyLong_AsByteArray((PyLongObject *)v, - bytes, sizeof(val), - is_little, !is_unsigned); - Py_DECREF(v); - if (likely(!ret)) - return val; - } -#endif - return (int) -1; - } - } else { - int val; - PyObject *tmp = __Pyx_PyNumber_IntOrLong(x); - if (!tmp) return (int) -1; - val = __Pyx_PyInt_As_int(tmp); - Py_DECREF(tmp); - return val; - } -raise_overflow: - PyErr_SetString(PyExc_OverflowError, - "value too large to convert to int"); - return (int) -1; -raise_neg_overflow: - PyErr_SetString(PyExc_OverflowError, - "can't convert negative value to int"); - return (int) -1; -} - -/* FastTypeChecks */ -#if CYTHON_COMPILING_IN_CPYTHON -static int __Pyx_InBases(PyTypeObject *a, PyTypeObject *b) { - while (a) { - a = a->tp_base; - if (a == b) - return 1; - } - return b == &PyBaseObject_Type; -} -static CYTHON_INLINE int __Pyx_IsSubtype(PyTypeObject *a, PyTypeObject *b) { - PyObject *mro; - if (a == b) return 1; - mro = a->tp_mro; - if (likely(mro)) { - Py_ssize_t i, n; - n = PyTuple_GET_SIZE(mro); - for (i = 0; i < n; i++) { - if (PyTuple_GET_ITEM(mro, i) == (PyObject *)b) - return 1; - } - return 0; - } - return __Pyx_InBases(a, b); -} -#if PY_MAJOR_VERSION == 2 -static int __Pyx_inner_PyErr_GivenExceptionMatches2(PyObject *err, PyObject* exc_type1, PyObject* exc_type2) { - PyObject *exception, *value, *tb; - int res; - __Pyx_PyThreadState_declare - __Pyx_PyThreadState_assign - __Pyx_ErrFetch(&exception, &value, &tb); - res = exc_type1 ? PyObject_IsSubclass(err, exc_type1) : 0; - if (unlikely(res == -1)) { - PyErr_WriteUnraisable(err); - res = 0; - } - if (!res) { - res = PyObject_IsSubclass(err, exc_type2); - if (unlikely(res == -1)) { - PyErr_WriteUnraisable(err); - res = 0; - } - } - __Pyx_ErrRestore(exception, value, tb); - return res; -} -#else -static CYTHON_INLINE int __Pyx_inner_PyErr_GivenExceptionMatches2(PyObject *err, PyObject* exc_type1, PyObject *exc_type2) { - int res = exc_type1 ? __Pyx_IsSubtype((PyTypeObject*)err, (PyTypeObject*)exc_type1) : 0; - if (!res) { - res = __Pyx_IsSubtype((PyTypeObject*)err, (PyTypeObject*)exc_type2); - } - return res; -} -#endif -static int __Pyx_PyErr_GivenExceptionMatchesTuple(PyObject *exc_type, PyObject *tuple) { - Py_ssize_t i, n; - assert(PyExceptionClass_Check(exc_type)); - n = PyTuple_GET_SIZE(tuple); -#if PY_MAJOR_VERSION >= 3 - for (i=0; ip) { - #if PY_MAJOR_VERSION < 3 - if (t->is_unicode) { - *t->p = PyUnicode_DecodeUTF8(t->s, t->n - 1, NULL); - } else if (t->intern) { - *t->p = PyString_InternFromString(t->s); - } else { - *t->p = PyString_FromStringAndSize(t->s, t->n - 1); - } - #else - if (t->is_unicode | t->is_str) { - if (t->intern) { - *t->p = PyUnicode_InternFromString(t->s); - } else if (t->encoding) { - *t->p = PyUnicode_Decode(t->s, t->n - 1, t->encoding, NULL); - } else { - *t->p = PyUnicode_FromStringAndSize(t->s, t->n - 1); - } - } else { - *t->p = PyBytes_FromStringAndSize(t->s, t->n - 1); - } - #endif - if (!*t->p) - return -1; - if (PyObject_Hash(*t->p) == -1) - return -1; - ++t; - } - return 0; -} - -static CYTHON_INLINE PyObject* __Pyx_PyUnicode_FromString(const char* c_str) { - return __Pyx_PyUnicode_FromStringAndSize(c_str, (Py_ssize_t)strlen(c_str)); -} -static CYTHON_INLINE const char* __Pyx_PyObject_AsString(PyObject* o) { - Py_ssize_t ignore; - return __Pyx_PyObject_AsStringAndSize(o, &ignore); -} -#if __PYX_DEFAULT_STRING_ENCODING_IS_ASCII || __PYX_DEFAULT_STRING_ENCODING_IS_DEFAULT -#if !CYTHON_PEP393_ENABLED -static const char* __Pyx_PyUnicode_AsStringAndSize(PyObject* o, Py_ssize_t *length) { - char* defenc_c; - PyObject* defenc = _PyUnicode_AsDefaultEncodedString(o, NULL); - if (!defenc) return NULL; - defenc_c = PyBytes_AS_STRING(defenc); -#if __PYX_DEFAULT_STRING_ENCODING_IS_ASCII - { - char* end = defenc_c + PyBytes_GET_SIZE(defenc); - char* c; - for (c = defenc_c; c < end; c++) { - if ((unsigned char) (*c) >= 128) { - PyUnicode_AsASCIIString(o); - return NULL; - } - } - } -#endif - *length = PyBytes_GET_SIZE(defenc); - return defenc_c; -} -#else -static CYTHON_INLINE const char* __Pyx_PyUnicode_AsStringAndSize(PyObject* o, Py_ssize_t *length) { - if (unlikely(__Pyx_PyUnicode_READY(o) == -1)) return NULL; -#if __PYX_DEFAULT_STRING_ENCODING_IS_ASCII - if (likely(PyUnicode_IS_ASCII(o))) { - *length = PyUnicode_GET_LENGTH(o); - return PyUnicode_AsUTF8(o); - } else { - PyUnicode_AsASCIIString(o); - return NULL; - } -#else - return PyUnicode_AsUTF8AndSize(o, length); -#endif -} -#endif -#endif -static CYTHON_INLINE const char* __Pyx_PyObject_AsStringAndSize(PyObject* o, Py_ssize_t *length) { -#if __PYX_DEFAULT_STRING_ENCODING_IS_ASCII || __PYX_DEFAULT_STRING_ENCODING_IS_DEFAULT - if ( -#if PY_MAJOR_VERSION < 3 && __PYX_DEFAULT_STRING_ENCODING_IS_ASCII - __Pyx_sys_getdefaultencoding_not_ascii && -#endif - PyUnicode_Check(o)) { - return __Pyx_PyUnicode_AsStringAndSize(o, length); - } else -#endif -#if (!CYTHON_COMPILING_IN_PYPY) || (defined(PyByteArray_AS_STRING) && defined(PyByteArray_GET_SIZE)) - if (PyByteArray_Check(o)) { - *length = PyByteArray_GET_SIZE(o); - return PyByteArray_AS_STRING(o); - } else -#endif - { - char* result; - int r = PyBytes_AsStringAndSize(o, &result, length); - if (unlikely(r < 0)) { - return NULL; - } else { - return result; - } - } -} -static CYTHON_INLINE int __Pyx_PyObject_IsTrue(PyObject* x) { - int is_true = x == Py_True; - if (is_true | (x == Py_False) | (x == Py_None)) return is_true; - else return PyObject_IsTrue(x); -} -static CYTHON_INLINE int __Pyx_PyObject_IsTrueAndDecref(PyObject* x) { - int retval; - if (unlikely(!x)) return -1; - retval = __Pyx_PyObject_IsTrue(x); - Py_DECREF(x); - return retval; -} -static PyObject* __Pyx_PyNumber_IntOrLongWrongResultType(PyObject* result, const char* type_name) { -#if PY_MAJOR_VERSION >= 3 - if (PyLong_Check(result)) { - if (PyErr_WarnFormat(PyExc_DeprecationWarning, 1, - "__int__ returned non-int (type %.200s). " - "The ability to return an instance of a strict subclass of int " - "is deprecated, and may be removed in a future version of Python.", - Py_TYPE(result)->tp_name)) { - Py_DECREF(result); - return NULL; - } - return result; - } -#endif - PyErr_Format(PyExc_TypeError, - "__%.4s__ returned non-%.4s (type %.200s)", - type_name, type_name, Py_TYPE(result)->tp_name); - Py_DECREF(result); - return NULL; -} -static CYTHON_INLINE PyObject* __Pyx_PyNumber_IntOrLong(PyObject* x) { -#if CYTHON_USE_TYPE_SLOTS - PyNumberMethods *m; -#endif - const char *name = NULL; - PyObject *res = NULL; -#if PY_MAJOR_VERSION < 3 - if (likely(PyInt_Check(x) || PyLong_Check(x))) -#else - if (likely(PyLong_Check(x))) -#endif - return __Pyx_NewRef(x); -#if CYTHON_USE_TYPE_SLOTS - m = Py_TYPE(x)->tp_as_number; - #if PY_MAJOR_VERSION < 3 - if (m && m->nb_int) { - name = "int"; - res = m->nb_int(x); - } - else if (m && m->nb_long) { - name = "long"; - res = m->nb_long(x); - } - #else - if (likely(m && m->nb_int)) { - name = "int"; - res = m->nb_int(x); - } - #endif -#else - if (!PyBytes_CheckExact(x) && !PyUnicode_CheckExact(x)) { - res = PyNumber_Int(x); - } -#endif - if (likely(res)) { -#if PY_MAJOR_VERSION < 3 - if (unlikely(!PyInt_Check(res) && !PyLong_Check(res))) { -#else - if (unlikely(!PyLong_CheckExact(res))) { -#endif - return __Pyx_PyNumber_IntOrLongWrongResultType(res, name); - } - } - else if (!PyErr_Occurred()) { - PyErr_SetString(PyExc_TypeError, - "an integer is required"); - } - return res; -} -static CYTHON_INLINE Py_ssize_t __Pyx_PyIndex_AsSsize_t(PyObject* b) { - Py_ssize_t ival; - PyObject *x; -#if PY_MAJOR_VERSION < 3 - if (likely(PyInt_CheckExact(b))) { - if (sizeof(Py_ssize_t) >= sizeof(long)) - return PyInt_AS_LONG(b); - else - return PyInt_AsSsize_t(b); - } -#endif - if (likely(PyLong_CheckExact(b))) { - #if CYTHON_USE_PYLONG_INTERNALS - const digit* digits = ((PyLongObject*)b)->ob_digit; - const Py_ssize_t size = Py_SIZE(b); - if (likely(__Pyx_sst_abs(size) <= 1)) { - ival = likely(size) ? digits[0] : 0; - if (size == -1) ival = -ival; - return ival; - } else { - switch (size) { - case 2: - if (8 * sizeof(Py_ssize_t) > 2 * PyLong_SHIFT) { - return (Py_ssize_t) (((((size_t)digits[1]) << PyLong_SHIFT) | (size_t)digits[0])); - } - break; - case -2: - if (8 * sizeof(Py_ssize_t) > 2 * PyLong_SHIFT) { - return -(Py_ssize_t) (((((size_t)digits[1]) << PyLong_SHIFT) | (size_t)digits[0])); - } - break; - case 3: - if (8 * sizeof(Py_ssize_t) > 3 * PyLong_SHIFT) { - return (Py_ssize_t) (((((((size_t)digits[2]) << PyLong_SHIFT) | (size_t)digits[1]) << PyLong_SHIFT) | (size_t)digits[0])); - } - break; - case -3: - if (8 * sizeof(Py_ssize_t) > 3 * PyLong_SHIFT) { - return -(Py_ssize_t) (((((((size_t)digits[2]) << PyLong_SHIFT) | (size_t)digits[1]) << PyLong_SHIFT) | (size_t)digits[0])); - } - break; - case 4: - if (8 * sizeof(Py_ssize_t) > 4 * PyLong_SHIFT) { - return (Py_ssize_t) (((((((((size_t)digits[3]) << PyLong_SHIFT) | (size_t)digits[2]) << PyLong_SHIFT) | (size_t)digits[1]) << PyLong_SHIFT) | (size_t)digits[0])); - } - break; - case -4: - if (8 * sizeof(Py_ssize_t) > 4 * PyLong_SHIFT) { - return -(Py_ssize_t) (((((((((size_t)digits[3]) << PyLong_SHIFT) | (size_t)digits[2]) << PyLong_SHIFT) | (size_t)digits[1]) << PyLong_SHIFT) | (size_t)digits[0])); - } - break; - } - } - #endif - return PyLong_AsSsize_t(b); - } - x = PyNumber_Index(b); - if (!x) return -1; - ival = PyInt_AsSsize_t(x); - Py_DECREF(x); - return ival; -} -static CYTHON_INLINE PyObject * __Pyx_PyBool_FromLong(long b) { - return b ? __Pyx_NewRef(Py_True) : __Pyx_NewRef(Py_False); -} -static CYTHON_INLINE PyObject * __Pyx_PyInt_FromSize_t(size_t ival) { - return PyInt_FromSize_t(ival); -} - - -#endif /* Py_PYTHON_H */ diff --git a/python/pmercury/cython-bak/http.pyx b/python/pmercury/cython-bak/http.pyx deleted file mode 100644 index 9695f66f..00000000 --- a/python/pmercury/cython-bak/http.pyx +++ /dev/null @@ -1,147 +0,0 @@ -#cython: language_level=3, cdivision=True, infer_types=True, initializedcheck=False, c_string_type=bytes, embedsignature=False - -""" - Copyright (c) 2019 Cisco Systems, Inc. All rights reserved. - License at https://github.com/cisco/mercury/blob/master/LICENSE -""" - -import os -import sys - -sys.path.append(os.path.dirname(os.path.abspath(__file__))) -sys.path.append(os.path.dirname(os.path.abspath(__file__))+'/../') -from pmercury.protocols.protocol import Protocol - - -class HTTP(Protocol): - - def __init__(self, fp_database=None, config=None): - # populate fingerprint databases - self.fp_db = {} - - # configuration - HTTP.all_headers = False - if config == None or 'http' not in config: - HTTP.case_insensitive_static_headers = set([b'upgrade-insecure-requests',b'dnt',b'accept-language',b'connection', - b'x-requested-with',b'accept-encoding',b'content-length',b'accept', - b'viewport-width',b'intervention',b'dpr',b'cache-control']) - HTTP.case_sensitive_static_headers = set([b'content-type',b'origin']) - HTTP.headers_data = [0,2] - HTTP.contextual_data = {b'user-agent':'user_agent',b'host':'host',b'x-forwarded-for':'x_forwarded_for'} - else: - HTTP.case_insensitive_static_headers = set([]) - HTTP.case_sensitive_static_headers = set([]) - HTTP.headers_data = [] - HTTP.contextual_data = {} - if 'case_insensitive_static_headers' in config['http']: - if config['http']['case_insensitive_static_headers'] == ['*']: - HTTP.all_headers = True - HTTP.case_insensitive_static_headers = set(map(lambda x: x.lower().encode(), config['http']['case_insensitive_static_headers'])) - if 'case_sensitive_static_headers' in config['http']: - if config['http']['case_sensitive_static_headers'] == ['*']: - HTTP.all_headers = True - HTTP.case_sensitive_static_headers = set(map(lambda x: x.encode(), config['http']['case_sensitive_static_headers'])) - if 'preamble' in config['http']: - if 'method' in config['http']['preamble']: - HTTP.headers_data.append(0) - if 'uri' in config['http']['preamble']: - HTTP.headers_data.append(1) - if 'version' in config['http']['preamble']: - HTTP.headers_data.append(2) - if '*' in config['http']['preamble']: - HTTP.headers_data = [0,1,2] - if 'context' in config['http']: - for c in config['http']['context']: - HTTP.contextual_data[c.encode()] = c.lower().replace('-','_') - - - @staticmethod - def proto_identify(data, offset, data_len): - if data_len-offset < 16: - return False - if (data[offset] == 71 and - data[offset+1] == 69 and - data[offset+2] == 84 and - data[offset+3] == 32): - return True - return False - - - @staticmethod - def fingerprint(bytes data, unsigned int offset, unsigned int data_len): - cdef list t_ = data[offset:].split(b'\x0d\x0a', 1) - cdef list request = t_[0].split() - if len(request) < 3: - return None, None - - cdef list c = [] - for rh in HTTP.headers_data: - c.append('(%s)' % request[rh].hex()) - - if len(t_) == 1: - return ''.join(c), None - - cdef bint http_ah = HTTP.all_headers - cdef set http_cish = HTTP.case_insensitive_static_headers - cdef set http_cssh = HTTP.case_sensitive_static_headers - cdef dict http_ctx = HTTP.contextual_data - cdef list headers = t_[1].split(b'\x0d\x0a') - cdef bytes t0_ - cdef bytes t0_lower - context = [] - for h_ in headers: - if h_ == b'': - break - t0_ = h_.split(b'\x3a\x20',1)[0] - t0_lower = t0_.lower() - - - if http_ah: - h_c = h_.hex() - elif t0_lower in http_cish: - h_c = h_.hex() - elif t0_ in http_cssh: - h_c = h_.hex() - else: - h_c = t0_.hex() - - c.append('(%s)' % h_c) - if t0_lower in http_ctx: - if b'\x3a\x20' in h_: - try: - context.append({'name':http_ctx[t0_lower], 'data':h_.split(b'\x3a\x20',1)[1].decode()}) - except UnicodeDecodeError: - context.append({'name':http_ctx[t0_lower], 'data':h_.split(b'\x3a\x20',1)[1].hex()}) - else: - context.append({'name':http_ctx[t0_lower], 'data':''}) - - return ''.join(c), context - - - def get_human_readable(self, fp_str_): - t_ = [bytes.fromhex(x[1:]) for x in fp_str_.split(')')[:-1]] - try: - fp_h = [{'method':t_[0].decode()},{'version':t_[1].decode()}] - except: - fp_h = [{'method':t_[0].hex()},{'version':t_[1].hex()}] - for i in range(2, len(t_)-1): - field = t_[i].split(b': ',1) - if len(field) == 2: - try: - fp_h.append({field[0].decode(): field[1].decode()}) - except: - fp_h.append({field[0].hex(): field[1].hex()}) - else: - try: - fp_h.append({field[0].decode(): ''}) - except: - fp_h.append({field[0].hex(): ''}) - return fp_h - - - def proc_identify(self, fp_str_, context_, dst_ip, dst_port, list_procs=0, endpoint=None, approx=True, debug=None): - return None - - - def os_identify(self, fp_str_, list_oses=0): - return None diff --git a/python/pmercury/cython-bak/http_server.c b/python/pmercury/cython-bak/http_server.c deleted file mode 100644 index 60d006d5..00000000 --- a/python/pmercury/cython-bak/http_server.c +++ /dev/null @@ -1,9729 +0,0 @@ -/* Generated by Cython 0.29.14 */ - -#define PY_SSIZE_T_CLEAN -#include "Python.h" -#ifndef Py_PYTHON_H - #error Python headers needed to compile C extensions, please install development version of Python. -#elif PY_VERSION_HEX < 0x02060000 || (0x03000000 <= PY_VERSION_HEX && PY_VERSION_HEX < 0x03030000) - #error Cython requires Python 2.6+ or Python 3.3+. -#else -#define CYTHON_ABI "0_29_14" -#define CYTHON_HEX_VERSION 0x001D0EF0 -#define CYTHON_FUTURE_DIVISION 1 -#include -#ifndef offsetof - #define offsetof(type, member) ( (size_t) & ((type*)0) -> member ) -#endif -#if !defined(WIN32) && !defined(MS_WINDOWS) - #ifndef __stdcall - #define __stdcall - #endif - #ifndef __cdecl - #define __cdecl - #endif - #ifndef __fastcall - #define __fastcall - #endif -#endif -#ifndef DL_IMPORT - #define DL_IMPORT(t) t -#endif -#ifndef DL_EXPORT - #define DL_EXPORT(t) t -#endif -#define __PYX_COMMA , -#ifndef HAVE_LONG_LONG - #if PY_VERSION_HEX >= 0x02070000 - #define HAVE_LONG_LONG - #endif -#endif -#ifndef PY_LONG_LONG - #define PY_LONG_LONG LONG_LONG -#endif -#ifndef Py_HUGE_VAL - #define Py_HUGE_VAL HUGE_VAL -#endif -#ifdef PYPY_VERSION - #define CYTHON_COMPILING_IN_PYPY 1 - #define CYTHON_COMPILING_IN_PYSTON 0 - #define CYTHON_COMPILING_IN_CPYTHON 0 - #undef CYTHON_USE_TYPE_SLOTS - #define CYTHON_USE_TYPE_SLOTS 0 - #undef CYTHON_USE_PYTYPE_LOOKUP - #define CYTHON_USE_PYTYPE_LOOKUP 0 - #if PY_VERSION_HEX < 0x03050000 - #undef CYTHON_USE_ASYNC_SLOTS - #define CYTHON_USE_ASYNC_SLOTS 0 - #elif !defined(CYTHON_USE_ASYNC_SLOTS) - #define CYTHON_USE_ASYNC_SLOTS 1 - #endif - #undef CYTHON_USE_PYLIST_INTERNALS - #define CYTHON_USE_PYLIST_INTERNALS 0 - #undef CYTHON_USE_UNICODE_INTERNALS - #define CYTHON_USE_UNICODE_INTERNALS 0 - #undef CYTHON_USE_UNICODE_WRITER - #define CYTHON_USE_UNICODE_WRITER 0 - #undef CYTHON_USE_PYLONG_INTERNALS - #define CYTHON_USE_PYLONG_INTERNALS 0 - #undef CYTHON_AVOID_BORROWED_REFS - #define CYTHON_AVOID_BORROWED_REFS 1 - #undef CYTHON_ASSUME_SAFE_MACROS - #define CYTHON_ASSUME_SAFE_MACROS 0 - #undef CYTHON_UNPACK_METHODS - #define CYTHON_UNPACK_METHODS 0 - #undef CYTHON_FAST_THREAD_STATE - #define CYTHON_FAST_THREAD_STATE 0 - #undef CYTHON_FAST_PYCALL - #define CYTHON_FAST_PYCALL 0 - #undef CYTHON_PEP489_MULTI_PHASE_INIT - #define CYTHON_PEP489_MULTI_PHASE_INIT 0 - #undef CYTHON_USE_TP_FINALIZE - #define CYTHON_USE_TP_FINALIZE 0 - #undef CYTHON_USE_DICT_VERSIONS - #define CYTHON_USE_DICT_VERSIONS 0 - #undef CYTHON_USE_EXC_INFO_STACK - #define CYTHON_USE_EXC_INFO_STACK 0 -#elif defined(PYSTON_VERSION) - #define CYTHON_COMPILING_IN_PYPY 0 - #define CYTHON_COMPILING_IN_PYSTON 1 - #define CYTHON_COMPILING_IN_CPYTHON 0 - #ifndef CYTHON_USE_TYPE_SLOTS - #define CYTHON_USE_TYPE_SLOTS 1 - #endif - #undef CYTHON_USE_PYTYPE_LOOKUP - #define CYTHON_USE_PYTYPE_LOOKUP 0 - #undef CYTHON_USE_ASYNC_SLOTS - #define CYTHON_USE_ASYNC_SLOTS 0 - #undef CYTHON_USE_PYLIST_INTERNALS - #define CYTHON_USE_PYLIST_INTERNALS 0 - #ifndef CYTHON_USE_UNICODE_INTERNALS - #define CYTHON_USE_UNICODE_INTERNALS 1 - #endif - #undef CYTHON_USE_UNICODE_WRITER - #define CYTHON_USE_UNICODE_WRITER 0 - #undef CYTHON_USE_PYLONG_INTERNALS - #define CYTHON_USE_PYLONG_INTERNALS 0 - #ifndef CYTHON_AVOID_BORROWED_REFS - #define CYTHON_AVOID_BORROWED_REFS 0 - #endif - #ifndef CYTHON_ASSUME_SAFE_MACROS - #define CYTHON_ASSUME_SAFE_MACROS 1 - #endif - #ifndef CYTHON_UNPACK_METHODS - #define CYTHON_UNPACK_METHODS 1 - #endif - #undef CYTHON_FAST_THREAD_STATE - #define CYTHON_FAST_THREAD_STATE 0 - #undef CYTHON_FAST_PYCALL - #define CYTHON_FAST_PYCALL 0 - #undef CYTHON_PEP489_MULTI_PHASE_INIT - #define CYTHON_PEP489_MULTI_PHASE_INIT 0 - #undef CYTHON_USE_TP_FINALIZE - #define CYTHON_USE_TP_FINALIZE 0 - #undef CYTHON_USE_DICT_VERSIONS - #define CYTHON_USE_DICT_VERSIONS 0 - #undef CYTHON_USE_EXC_INFO_STACK - #define CYTHON_USE_EXC_INFO_STACK 0 -#else - #define CYTHON_COMPILING_IN_PYPY 0 - #define CYTHON_COMPILING_IN_PYSTON 0 - #define CYTHON_COMPILING_IN_CPYTHON 1 - #ifndef CYTHON_USE_TYPE_SLOTS - #define CYTHON_USE_TYPE_SLOTS 1 - #endif - #if PY_VERSION_HEX < 0x02070000 - #undef CYTHON_USE_PYTYPE_LOOKUP - #define CYTHON_USE_PYTYPE_LOOKUP 0 - #elif !defined(CYTHON_USE_PYTYPE_LOOKUP) - #define CYTHON_USE_PYTYPE_LOOKUP 1 - #endif - #if PY_MAJOR_VERSION < 3 - #undef CYTHON_USE_ASYNC_SLOTS - #define CYTHON_USE_ASYNC_SLOTS 0 - #elif !defined(CYTHON_USE_ASYNC_SLOTS) - #define CYTHON_USE_ASYNC_SLOTS 1 - #endif - #if PY_VERSION_HEX < 0x02070000 - #undef CYTHON_USE_PYLONG_INTERNALS - #define CYTHON_USE_PYLONG_INTERNALS 0 - #elif !defined(CYTHON_USE_PYLONG_INTERNALS) - #define CYTHON_USE_PYLONG_INTERNALS 1 - #endif - #ifndef CYTHON_USE_PYLIST_INTERNALS - #define CYTHON_USE_PYLIST_INTERNALS 1 - #endif - #ifndef CYTHON_USE_UNICODE_INTERNALS - #define CYTHON_USE_UNICODE_INTERNALS 1 - #endif - #if PY_VERSION_HEX < 0x030300F0 - #undef CYTHON_USE_UNICODE_WRITER - #define CYTHON_USE_UNICODE_WRITER 0 - #elif !defined(CYTHON_USE_UNICODE_WRITER) - #define CYTHON_USE_UNICODE_WRITER 1 - #endif - #ifndef CYTHON_AVOID_BORROWED_REFS - #define CYTHON_AVOID_BORROWED_REFS 0 - #endif - #ifndef CYTHON_ASSUME_SAFE_MACROS - #define CYTHON_ASSUME_SAFE_MACROS 1 - #endif - #ifndef CYTHON_UNPACK_METHODS - #define CYTHON_UNPACK_METHODS 1 - #endif - #ifndef CYTHON_FAST_THREAD_STATE - #define CYTHON_FAST_THREAD_STATE 1 - #endif - #ifndef CYTHON_FAST_PYCALL - #define CYTHON_FAST_PYCALL 1 - #endif - #ifndef CYTHON_PEP489_MULTI_PHASE_INIT - #define CYTHON_PEP489_MULTI_PHASE_INIT (PY_VERSION_HEX >= 0x03050000) - #endif - #ifndef CYTHON_USE_TP_FINALIZE - #define CYTHON_USE_TP_FINALIZE (PY_VERSION_HEX >= 0x030400a1) - #endif - #ifndef CYTHON_USE_DICT_VERSIONS - #define CYTHON_USE_DICT_VERSIONS (PY_VERSION_HEX >= 0x030600B1) - #endif - #ifndef CYTHON_USE_EXC_INFO_STACK - #define CYTHON_USE_EXC_INFO_STACK (PY_VERSION_HEX >= 0x030700A3) - #endif -#endif -#if !defined(CYTHON_FAST_PYCCALL) -#define CYTHON_FAST_PYCCALL (CYTHON_FAST_PYCALL && PY_VERSION_HEX >= 0x030600B1) -#endif -#if CYTHON_USE_PYLONG_INTERNALS - #include "longintrepr.h" - #undef SHIFT - #undef BASE - #undef MASK - #ifdef SIZEOF_VOID_P - enum { __pyx_check_sizeof_voidp = 1 / (int)(SIZEOF_VOID_P == sizeof(void*)) }; - #endif -#endif -#ifndef __has_attribute - #define __has_attribute(x) 0 -#endif -#ifndef __has_cpp_attribute - #define __has_cpp_attribute(x) 0 -#endif -#ifndef CYTHON_RESTRICT - #if defined(__GNUC__) - #define CYTHON_RESTRICT __restrict__ - #elif defined(_MSC_VER) && _MSC_VER >= 1400 - #define CYTHON_RESTRICT __restrict - #elif defined (__STDC_VERSION__) && __STDC_VERSION__ >= 199901L - #define CYTHON_RESTRICT restrict - #else - #define CYTHON_RESTRICT - #endif -#endif -#ifndef CYTHON_UNUSED -# if defined(__GNUC__) -# if !(defined(__cplusplus)) || (__GNUC__ > 3 || (__GNUC__ == 3 && __GNUC_MINOR__ >= 4)) -# define CYTHON_UNUSED __attribute__ ((__unused__)) -# else -# define CYTHON_UNUSED -# endif -# elif defined(__ICC) || (defined(__INTEL_COMPILER) && !defined(_MSC_VER)) -# define CYTHON_UNUSED __attribute__ ((__unused__)) -# else -# define CYTHON_UNUSED -# endif -#endif -#ifndef CYTHON_MAYBE_UNUSED_VAR -# if defined(__cplusplus) - template void CYTHON_MAYBE_UNUSED_VAR( const T& ) { } -# else -# define CYTHON_MAYBE_UNUSED_VAR(x) (void)(x) -# endif -#endif -#ifndef CYTHON_NCP_UNUSED -# if CYTHON_COMPILING_IN_CPYTHON -# define CYTHON_NCP_UNUSED -# else -# define CYTHON_NCP_UNUSED CYTHON_UNUSED -# endif -#endif -#define __Pyx_void_to_None(void_result) ((void)(void_result), Py_INCREF(Py_None), Py_None) -#ifdef _MSC_VER - #ifndef _MSC_STDINT_H_ - #if _MSC_VER < 1300 - typedef unsigned char uint8_t; - typedef unsigned int uint32_t; - #else - typedef unsigned __int8 uint8_t; - typedef unsigned __int32 uint32_t; - #endif - #endif -#else - #include -#endif -#ifndef CYTHON_FALLTHROUGH - #if defined(__cplusplus) && __cplusplus >= 201103L - #if __has_cpp_attribute(fallthrough) - #define CYTHON_FALLTHROUGH [[fallthrough]] - #elif __has_cpp_attribute(clang::fallthrough) - #define CYTHON_FALLTHROUGH [[clang::fallthrough]] - #elif __has_cpp_attribute(gnu::fallthrough) - #define CYTHON_FALLTHROUGH [[gnu::fallthrough]] - #endif - #endif - #ifndef CYTHON_FALLTHROUGH - #if __has_attribute(fallthrough) - #define CYTHON_FALLTHROUGH __attribute__((fallthrough)) - #else - #define CYTHON_FALLTHROUGH - #endif - #endif - #if defined(__clang__ ) && defined(__apple_build_version__) - #if __apple_build_version__ < 7000000 - #undef CYTHON_FALLTHROUGH - #define CYTHON_FALLTHROUGH - #endif - #endif -#endif - -#ifndef CYTHON_INLINE - #if defined(__clang__) - #define CYTHON_INLINE __inline__ __attribute__ ((__unused__)) - #elif defined(__GNUC__) - #define CYTHON_INLINE __inline__ - #elif defined(_MSC_VER) - #define CYTHON_INLINE __inline - #elif defined (__STDC_VERSION__) && __STDC_VERSION__ >= 199901L - #define CYTHON_INLINE inline - #else - #define CYTHON_INLINE - #endif -#endif - -#if CYTHON_COMPILING_IN_PYPY && PY_VERSION_HEX < 0x02070600 && !defined(Py_OptimizeFlag) - #define Py_OptimizeFlag 0 -#endif -#define __PYX_BUILD_PY_SSIZE_T "n" -#define CYTHON_FORMAT_SSIZE_T "z" -#if PY_MAJOR_VERSION < 3 - #define __Pyx_BUILTIN_MODULE_NAME "__builtin__" - #define __Pyx_PyCode_New(a, k, l, s, f, code, c, n, v, fv, cell, fn, name, fline, lnos)\ - PyCode_New(a+k, l, s, f, code, c, n, v, fv, cell, fn, name, fline, lnos) - #define __Pyx_DefaultClassType PyClass_Type -#else - #define __Pyx_BUILTIN_MODULE_NAME "builtins" -#if PY_VERSION_HEX >= 0x030800A4 && PY_VERSION_HEX < 0x030800B2 - #define __Pyx_PyCode_New(a, k, l, s, f, code, c, n, v, fv, cell, fn, name, fline, lnos)\ - PyCode_New(a, 0, k, l, s, f, code, c, n, v, fv, cell, fn, name, fline, lnos) -#else - #define __Pyx_PyCode_New(a, k, l, s, f, code, c, n, v, fv, cell, fn, name, fline, lnos)\ - PyCode_New(a, k, l, s, f, code, c, n, v, fv, cell, fn, name, fline, lnos) -#endif - #define __Pyx_DefaultClassType PyType_Type -#endif -#ifndef Py_TPFLAGS_CHECKTYPES - #define Py_TPFLAGS_CHECKTYPES 0 -#endif -#ifndef Py_TPFLAGS_HAVE_INDEX - #define Py_TPFLAGS_HAVE_INDEX 0 -#endif -#ifndef Py_TPFLAGS_HAVE_NEWBUFFER - #define Py_TPFLAGS_HAVE_NEWBUFFER 0 -#endif -#ifndef Py_TPFLAGS_HAVE_FINALIZE - #define Py_TPFLAGS_HAVE_FINALIZE 0 -#endif -#ifndef METH_STACKLESS - #define METH_STACKLESS 0 -#endif -#if PY_VERSION_HEX <= 0x030700A3 || !defined(METH_FASTCALL) - #ifndef METH_FASTCALL - #define METH_FASTCALL 0x80 - #endif - typedef PyObject *(*__Pyx_PyCFunctionFast) (PyObject *self, PyObject *const *args, Py_ssize_t nargs); - typedef PyObject *(*__Pyx_PyCFunctionFastWithKeywords) (PyObject *self, PyObject *const *args, - Py_ssize_t nargs, PyObject *kwnames); -#else - #define __Pyx_PyCFunctionFast _PyCFunctionFast - #define __Pyx_PyCFunctionFastWithKeywords _PyCFunctionFastWithKeywords -#endif -#if CYTHON_FAST_PYCCALL -#define __Pyx_PyFastCFunction_Check(func)\ - ((PyCFunction_Check(func) && (METH_FASTCALL == (PyCFunction_GET_FLAGS(func) & ~(METH_CLASS | METH_STATIC | METH_COEXIST | METH_KEYWORDS | METH_STACKLESS))))) -#else -#define __Pyx_PyFastCFunction_Check(func) 0 -#endif -#if CYTHON_COMPILING_IN_PYPY && !defined(PyObject_Malloc) - #define PyObject_Malloc(s) PyMem_Malloc(s) - #define PyObject_Free(p) PyMem_Free(p) - #define PyObject_Realloc(p) PyMem_Realloc(p) -#endif -#if CYTHON_COMPILING_IN_CPYTHON && PY_VERSION_HEX < 0x030400A1 - #define PyMem_RawMalloc(n) PyMem_Malloc(n) - #define PyMem_RawRealloc(p, n) PyMem_Realloc(p, n) - #define PyMem_RawFree(p) PyMem_Free(p) -#endif -#if CYTHON_COMPILING_IN_PYSTON - #define __Pyx_PyCode_HasFreeVars(co) PyCode_HasFreeVars(co) - #define __Pyx_PyFrame_SetLineNumber(frame, lineno) PyFrame_SetLineNumber(frame, lineno) -#else - #define __Pyx_PyCode_HasFreeVars(co) (PyCode_GetNumFree(co) > 0) - #define __Pyx_PyFrame_SetLineNumber(frame, lineno) (frame)->f_lineno = (lineno) -#endif -#if !CYTHON_FAST_THREAD_STATE || PY_VERSION_HEX < 0x02070000 - #define __Pyx_PyThreadState_Current PyThreadState_GET() -#elif PY_VERSION_HEX >= 0x03060000 - #define __Pyx_PyThreadState_Current _PyThreadState_UncheckedGet() -#elif PY_VERSION_HEX >= 0x03000000 - #define __Pyx_PyThreadState_Current PyThreadState_GET() -#else - #define __Pyx_PyThreadState_Current _PyThreadState_Current -#endif -#if PY_VERSION_HEX < 0x030700A2 && !defined(PyThread_tss_create) && !defined(Py_tss_NEEDS_INIT) -#include "pythread.h" -#define Py_tss_NEEDS_INIT 0 -typedef int Py_tss_t; -static CYTHON_INLINE int PyThread_tss_create(Py_tss_t *key) { - *key = PyThread_create_key(); - return 0; -} -static CYTHON_INLINE Py_tss_t * PyThread_tss_alloc(void) { - Py_tss_t *key = (Py_tss_t *)PyObject_Malloc(sizeof(Py_tss_t)); - *key = Py_tss_NEEDS_INIT; - return key; -} -static CYTHON_INLINE void PyThread_tss_free(Py_tss_t *key) { - PyObject_Free(key); -} -static CYTHON_INLINE int PyThread_tss_is_created(Py_tss_t *key) { - return *key != Py_tss_NEEDS_INIT; -} -static CYTHON_INLINE void PyThread_tss_delete(Py_tss_t *key) { - PyThread_delete_key(*key); - *key = Py_tss_NEEDS_INIT; -} -static CYTHON_INLINE int PyThread_tss_set(Py_tss_t *key, void *value) { - return PyThread_set_key_value(*key, value); -} -static CYTHON_INLINE void * PyThread_tss_get(Py_tss_t *key) { - return PyThread_get_key_value(*key); -} -#endif -#if CYTHON_COMPILING_IN_CPYTHON || defined(_PyDict_NewPresized) -#define __Pyx_PyDict_NewPresized(n) ((n <= 8) ? PyDict_New() : _PyDict_NewPresized(n)) -#else -#define __Pyx_PyDict_NewPresized(n) PyDict_New() -#endif -#if PY_MAJOR_VERSION >= 3 || CYTHON_FUTURE_DIVISION - #define __Pyx_PyNumber_Divide(x,y) PyNumber_TrueDivide(x,y) - #define __Pyx_PyNumber_InPlaceDivide(x,y) PyNumber_InPlaceTrueDivide(x,y) -#else - #define __Pyx_PyNumber_Divide(x,y) PyNumber_Divide(x,y) - #define __Pyx_PyNumber_InPlaceDivide(x,y) PyNumber_InPlaceDivide(x,y) -#endif -#if CYTHON_COMPILING_IN_CPYTHON && PY_VERSION_HEX >= 0x030500A1 && CYTHON_USE_UNICODE_INTERNALS -#define __Pyx_PyDict_GetItemStr(dict, name) _PyDict_GetItem_KnownHash(dict, name, ((PyASCIIObject *) name)->hash) -#else -#define __Pyx_PyDict_GetItemStr(dict, name) PyDict_GetItem(dict, name) -#endif -#if PY_VERSION_HEX > 0x03030000 && defined(PyUnicode_KIND) - #define CYTHON_PEP393_ENABLED 1 - #define __Pyx_PyUnicode_READY(op) (likely(PyUnicode_IS_READY(op)) ?\ - 0 : _PyUnicode_Ready((PyObject *)(op))) - #define __Pyx_PyUnicode_GET_LENGTH(u) PyUnicode_GET_LENGTH(u) - #define __Pyx_PyUnicode_READ_CHAR(u, i) PyUnicode_READ_CHAR(u, i) - #define __Pyx_PyUnicode_MAX_CHAR_VALUE(u) PyUnicode_MAX_CHAR_VALUE(u) - #define __Pyx_PyUnicode_KIND(u) PyUnicode_KIND(u) - #define __Pyx_PyUnicode_DATA(u) PyUnicode_DATA(u) - #define __Pyx_PyUnicode_READ(k, d, i) PyUnicode_READ(k, d, i) - #define __Pyx_PyUnicode_WRITE(k, d, i, ch) PyUnicode_WRITE(k, d, i, ch) - #define __Pyx_PyUnicode_IS_TRUE(u) (0 != (likely(PyUnicode_IS_READY(u)) ? PyUnicode_GET_LENGTH(u) : PyUnicode_GET_SIZE(u))) -#else - #define CYTHON_PEP393_ENABLED 0 - #define PyUnicode_1BYTE_KIND 1 - #define PyUnicode_2BYTE_KIND 2 - #define PyUnicode_4BYTE_KIND 4 - #define __Pyx_PyUnicode_READY(op) (0) - #define __Pyx_PyUnicode_GET_LENGTH(u) PyUnicode_GET_SIZE(u) - #define __Pyx_PyUnicode_READ_CHAR(u, i) ((Py_UCS4)(PyUnicode_AS_UNICODE(u)[i])) - #define __Pyx_PyUnicode_MAX_CHAR_VALUE(u) ((sizeof(Py_UNICODE) == 2) ? 65535 : 1114111) - #define __Pyx_PyUnicode_KIND(u) (sizeof(Py_UNICODE)) - #define __Pyx_PyUnicode_DATA(u) ((void*)PyUnicode_AS_UNICODE(u)) - #define __Pyx_PyUnicode_READ(k, d, i) ((void)(k), (Py_UCS4)(((Py_UNICODE*)d)[i])) - #define __Pyx_PyUnicode_WRITE(k, d, i, ch) (((void)(k)), ((Py_UNICODE*)d)[i] = ch) - #define __Pyx_PyUnicode_IS_TRUE(u) (0 != PyUnicode_GET_SIZE(u)) -#endif -#if CYTHON_COMPILING_IN_PYPY - #define __Pyx_PyUnicode_Concat(a, b) PyNumber_Add(a, b) - #define __Pyx_PyUnicode_ConcatSafe(a, b) PyNumber_Add(a, b) -#else - #define __Pyx_PyUnicode_Concat(a, b) PyUnicode_Concat(a, b) - #define __Pyx_PyUnicode_ConcatSafe(a, b) ((unlikely((a) == Py_None) || unlikely((b) == Py_None)) ?\ - PyNumber_Add(a, b) : __Pyx_PyUnicode_Concat(a, b)) -#endif -#if CYTHON_COMPILING_IN_PYPY && !defined(PyUnicode_Contains) - #define PyUnicode_Contains(u, s) PySequence_Contains(u, s) -#endif -#if CYTHON_COMPILING_IN_PYPY && !defined(PyByteArray_Check) - #define PyByteArray_Check(obj) PyObject_TypeCheck(obj, &PyByteArray_Type) -#endif -#if CYTHON_COMPILING_IN_PYPY && !defined(PyObject_Format) - #define PyObject_Format(obj, fmt) PyObject_CallMethod(obj, "__format__", "O", fmt) -#endif -#define __Pyx_PyString_FormatSafe(a, b) ((unlikely((a) == Py_None || (PyString_Check(b) && !PyString_CheckExact(b)))) ? PyNumber_Remainder(a, b) : __Pyx_PyString_Format(a, b)) -#define __Pyx_PyUnicode_FormatSafe(a, b) ((unlikely((a) == Py_None || (PyUnicode_Check(b) && !PyUnicode_CheckExact(b)))) ? PyNumber_Remainder(a, b) : PyUnicode_Format(a, b)) -#if PY_MAJOR_VERSION >= 3 - #define __Pyx_PyString_Format(a, b) PyUnicode_Format(a, b) -#else - #define __Pyx_PyString_Format(a, b) PyString_Format(a, b) -#endif -#if PY_MAJOR_VERSION < 3 && !defined(PyObject_ASCII) - #define PyObject_ASCII(o) PyObject_Repr(o) -#endif -#if PY_MAJOR_VERSION >= 3 - #define PyBaseString_Type PyUnicode_Type - #define PyStringObject PyUnicodeObject - #define PyString_Type PyUnicode_Type - #define PyString_Check PyUnicode_Check - #define PyString_CheckExact PyUnicode_CheckExact - #define PyObject_Unicode PyObject_Str -#endif -#if PY_MAJOR_VERSION >= 3 - #define __Pyx_PyBaseString_Check(obj) PyUnicode_Check(obj) - #define __Pyx_PyBaseString_CheckExact(obj) PyUnicode_CheckExact(obj) -#else - #define __Pyx_PyBaseString_Check(obj) (PyString_Check(obj) || PyUnicode_Check(obj)) - #define __Pyx_PyBaseString_CheckExact(obj) (PyString_CheckExact(obj) || PyUnicode_CheckExact(obj)) -#endif -#ifndef PySet_CheckExact - #define PySet_CheckExact(obj) (Py_TYPE(obj) == &PySet_Type) -#endif -#if CYTHON_ASSUME_SAFE_MACROS - #define __Pyx_PySequence_SIZE(seq) Py_SIZE(seq) -#else - #define __Pyx_PySequence_SIZE(seq) PySequence_Size(seq) -#endif -#if PY_MAJOR_VERSION >= 3 - #define PyIntObject PyLongObject - #define PyInt_Type PyLong_Type - #define PyInt_Check(op) PyLong_Check(op) - #define PyInt_CheckExact(op) PyLong_CheckExact(op) - #define PyInt_FromString PyLong_FromString - #define PyInt_FromUnicode PyLong_FromUnicode - #define PyInt_FromLong PyLong_FromLong - #define PyInt_FromSize_t PyLong_FromSize_t - #define PyInt_FromSsize_t PyLong_FromSsize_t - #define PyInt_AsLong PyLong_AsLong - #define PyInt_AS_LONG PyLong_AS_LONG - #define PyInt_AsSsize_t PyLong_AsSsize_t - #define PyInt_AsUnsignedLongMask PyLong_AsUnsignedLongMask - #define PyInt_AsUnsignedLongLongMask PyLong_AsUnsignedLongLongMask - #define PyNumber_Int PyNumber_Long -#endif -#if PY_MAJOR_VERSION >= 3 - #define PyBoolObject PyLongObject -#endif -#if PY_MAJOR_VERSION >= 3 && CYTHON_COMPILING_IN_PYPY - #ifndef PyUnicode_InternFromString - #define PyUnicode_InternFromString(s) PyUnicode_FromString(s) - #endif -#endif -#if PY_VERSION_HEX < 0x030200A4 - typedef long Py_hash_t; - #define __Pyx_PyInt_FromHash_t PyInt_FromLong - #define __Pyx_PyInt_AsHash_t PyInt_AsLong -#else - #define __Pyx_PyInt_FromHash_t PyInt_FromSsize_t - #define __Pyx_PyInt_AsHash_t PyInt_AsSsize_t -#endif -#if PY_MAJOR_VERSION >= 3 - #define __Pyx_PyMethod_New(func, self, klass) ((self) ? PyMethod_New(func, self) : (Py_INCREF(func), func)) -#else - #define __Pyx_PyMethod_New(func, self, klass) PyMethod_New(func, self, klass) -#endif -#if CYTHON_USE_ASYNC_SLOTS - #if PY_VERSION_HEX >= 0x030500B1 - #define __Pyx_PyAsyncMethodsStruct PyAsyncMethods - #define __Pyx_PyType_AsAsync(obj) (Py_TYPE(obj)->tp_as_async) - #else - #define __Pyx_PyType_AsAsync(obj) ((__Pyx_PyAsyncMethodsStruct*) (Py_TYPE(obj)->tp_reserved)) - #endif -#else - #define __Pyx_PyType_AsAsync(obj) NULL -#endif -#ifndef __Pyx_PyAsyncMethodsStruct - typedef struct { - unaryfunc am_await; - unaryfunc am_aiter; - unaryfunc am_anext; - } __Pyx_PyAsyncMethodsStruct; -#endif - -#if defined(WIN32) || defined(MS_WINDOWS) - #define _USE_MATH_DEFINES -#endif -#include -#ifdef NAN -#define __PYX_NAN() ((float) NAN) -#else -static CYTHON_INLINE float __PYX_NAN() { - float value; - memset(&value, 0xFF, sizeof(value)); - return value; -} -#endif -#if defined(__CYGWIN__) && defined(_LDBL_EQ_DBL) -#define __Pyx_truncl trunc -#else -#define __Pyx_truncl truncl -#endif - - -#define __PYX_ERR(f_index, lineno, Ln_error) \ -{ \ - __pyx_filename = __pyx_f[f_index]; __pyx_lineno = lineno; __pyx_clineno = __LINE__; goto Ln_error; \ -} - -#ifndef __PYX_EXTERN_C - #ifdef __cplusplus - #define __PYX_EXTERN_C extern "C" - #else - #define __PYX_EXTERN_C extern - #endif -#endif - -#define __PYX_HAVE__pmercury__protocols__http_server -#define __PYX_HAVE_API__pmercury__protocols__http_server -/* Early includes */ -#ifdef _OPENMP -#include -#endif /* _OPENMP */ - -#if defined(PYREX_WITHOUT_ASSERTIONS) && !defined(CYTHON_WITHOUT_ASSERTIONS) -#define CYTHON_WITHOUT_ASSERTIONS -#endif - -typedef struct {PyObject **p; const char *s; const Py_ssize_t n; const char* encoding; - const char is_unicode; const char is_str; const char intern; } __Pyx_StringTabEntry; - -#define __PYX_DEFAULT_STRING_ENCODING_IS_ASCII 0 -#define __PYX_DEFAULT_STRING_ENCODING_IS_UTF8 0 -#define __PYX_DEFAULT_STRING_ENCODING_IS_DEFAULT (PY_MAJOR_VERSION >= 3 && __PYX_DEFAULT_STRING_ENCODING_IS_UTF8) -#define __PYX_DEFAULT_STRING_ENCODING "" -#define __Pyx_PyObject_FromString __Pyx_PyBytes_FromString -#define __Pyx_PyObject_FromStringAndSize __Pyx_PyBytes_FromStringAndSize -#define __Pyx_uchar_cast(c) ((unsigned char)c) -#define __Pyx_long_cast(x) ((long)x) -#define __Pyx_fits_Py_ssize_t(v, type, is_signed) (\ - (sizeof(type) < sizeof(Py_ssize_t)) ||\ - (sizeof(type) > sizeof(Py_ssize_t) &&\ - likely(v < (type)PY_SSIZE_T_MAX ||\ - v == (type)PY_SSIZE_T_MAX) &&\ - (!is_signed || likely(v > (type)PY_SSIZE_T_MIN ||\ - v == (type)PY_SSIZE_T_MIN))) ||\ - (sizeof(type) == sizeof(Py_ssize_t) &&\ - (is_signed || likely(v < (type)PY_SSIZE_T_MAX ||\ - v == (type)PY_SSIZE_T_MAX))) ) -static CYTHON_INLINE int __Pyx_is_valid_index(Py_ssize_t i, Py_ssize_t limit) { - return (size_t) i < (size_t) limit; -} -#if defined (__cplusplus) && __cplusplus >= 201103L - #include - #define __Pyx_sst_abs(value) std::abs(value) -#elif SIZEOF_INT >= SIZEOF_SIZE_T - #define __Pyx_sst_abs(value) abs(value) -#elif SIZEOF_LONG >= SIZEOF_SIZE_T - #define __Pyx_sst_abs(value) labs(value) -#elif defined (_MSC_VER) - #define __Pyx_sst_abs(value) ((Py_ssize_t)_abs64(value)) -#elif defined (__STDC_VERSION__) && __STDC_VERSION__ >= 199901L - #define __Pyx_sst_abs(value) llabs(value) -#elif defined (__GNUC__) - #define __Pyx_sst_abs(value) __builtin_llabs(value) -#else - #define __Pyx_sst_abs(value) ((value<0) ? -value : value) -#endif -static CYTHON_INLINE const char* __Pyx_PyObject_AsString(PyObject*); -static CYTHON_INLINE const char* __Pyx_PyObject_AsStringAndSize(PyObject*, Py_ssize_t* length); -#define __Pyx_PyByteArray_FromString(s) PyByteArray_FromStringAndSize((const char*)s, strlen((const char*)s)) -#define __Pyx_PyByteArray_FromStringAndSize(s, l) PyByteArray_FromStringAndSize((const char*)s, l) -#define __Pyx_PyBytes_FromString PyBytes_FromString -#define __Pyx_PyBytes_FromStringAndSize PyBytes_FromStringAndSize -static CYTHON_INLINE PyObject* __Pyx_PyUnicode_FromString(const char*); -#if PY_MAJOR_VERSION < 3 - #define __Pyx_PyStr_FromString __Pyx_PyBytes_FromString - #define __Pyx_PyStr_FromStringAndSize __Pyx_PyBytes_FromStringAndSize -#else - #define __Pyx_PyStr_FromString __Pyx_PyUnicode_FromString - #define __Pyx_PyStr_FromStringAndSize __Pyx_PyUnicode_FromStringAndSize -#endif -#define __Pyx_PyBytes_AsWritableString(s) ((char*) PyBytes_AS_STRING(s)) -#define __Pyx_PyBytes_AsWritableSString(s) ((signed char*) PyBytes_AS_STRING(s)) -#define __Pyx_PyBytes_AsWritableUString(s) ((unsigned char*) PyBytes_AS_STRING(s)) -#define __Pyx_PyBytes_AsString(s) ((const char*) PyBytes_AS_STRING(s)) -#define __Pyx_PyBytes_AsSString(s) ((const signed char*) PyBytes_AS_STRING(s)) -#define __Pyx_PyBytes_AsUString(s) ((const unsigned char*) PyBytes_AS_STRING(s)) -#define __Pyx_PyObject_AsWritableString(s) ((char*) __Pyx_PyObject_AsString(s)) -#define __Pyx_PyObject_AsWritableSString(s) ((signed char*) __Pyx_PyObject_AsString(s)) -#define __Pyx_PyObject_AsWritableUString(s) ((unsigned char*) __Pyx_PyObject_AsString(s)) -#define __Pyx_PyObject_AsSString(s) ((const signed char*) __Pyx_PyObject_AsString(s)) -#define __Pyx_PyObject_AsUString(s) ((const unsigned char*) __Pyx_PyObject_AsString(s)) -#define __Pyx_PyObject_FromCString(s) __Pyx_PyObject_FromString((const char*)s) -#define __Pyx_PyBytes_FromCString(s) __Pyx_PyBytes_FromString((const char*)s) -#define __Pyx_PyByteArray_FromCString(s) __Pyx_PyByteArray_FromString((const char*)s) -#define __Pyx_PyStr_FromCString(s) __Pyx_PyStr_FromString((const char*)s) -#define __Pyx_PyUnicode_FromCString(s) __Pyx_PyUnicode_FromString((const char*)s) -static CYTHON_INLINE size_t __Pyx_Py_UNICODE_strlen(const Py_UNICODE *u) { - const Py_UNICODE *u_end = u; - while (*u_end++) ; - return (size_t)(u_end - u - 1); -} -#define __Pyx_PyUnicode_FromUnicode(u) PyUnicode_FromUnicode(u, __Pyx_Py_UNICODE_strlen(u)) -#define __Pyx_PyUnicode_FromUnicodeAndLength PyUnicode_FromUnicode -#define __Pyx_PyUnicode_AsUnicode PyUnicode_AsUnicode -#define __Pyx_NewRef(obj) (Py_INCREF(obj), obj) -#define __Pyx_Owned_Py_None(b) __Pyx_NewRef(Py_None) -static CYTHON_INLINE PyObject * __Pyx_PyBool_FromLong(long b); -static CYTHON_INLINE int __Pyx_PyObject_IsTrue(PyObject*); -static CYTHON_INLINE int __Pyx_PyObject_IsTrueAndDecref(PyObject*); -static CYTHON_INLINE PyObject* __Pyx_PyNumber_IntOrLong(PyObject* x); -#define __Pyx_PySequence_Tuple(obj)\ - (likely(PyTuple_CheckExact(obj)) ? __Pyx_NewRef(obj) : PySequence_Tuple(obj)) -static CYTHON_INLINE Py_ssize_t __Pyx_PyIndex_AsSsize_t(PyObject*); -static CYTHON_INLINE PyObject * __Pyx_PyInt_FromSize_t(size_t); -#if CYTHON_ASSUME_SAFE_MACROS -#define __pyx_PyFloat_AsDouble(x) (PyFloat_CheckExact(x) ? PyFloat_AS_DOUBLE(x) : PyFloat_AsDouble(x)) -#else -#define __pyx_PyFloat_AsDouble(x) PyFloat_AsDouble(x) -#endif -#define __pyx_PyFloat_AsFloat(x) ((float) __pyx_PyFloat_AsDouble(x)) -#if PY_MAJOR_VERSION >= 3 -#define __Pyx_PyNumber_Int(x) (PyLong_CheckExact(x) ? __Pyx_NewRef(x) : PyNumber_Long(x)) -#else -#define __Pyx_PyNumber_Int(x) (PyInt_CheckExact(x) ? __Pyx_NewRef(x) : PyNumber_Int(x)) -#endif -#define __Pyx_PyNumber_Float(x) (PyFloat_CheckExact(x) ? __Pyx_NewRef(x) : PyNumber_Float(x)) -#if PY_MAJOR_VERSION < 3 && __PYX_DEFAULT_STRING_ENCODING_IS_ASCII -static int __Pyx_sys_getdefaultencoding_not_ascii; -static int __Pyx_init_sys_getdefaultencoding_params(void) { - PyObject* sys; - PyObject* default_encoding = NULL; - PyObject* ascii_chars_u = NULL; - PyObject* ascii_chars_b = NULL; - const char* default_encoding_c; - sys = PyImport_ImportModule("sys"); - if (!sys) goto bad; - default_encoding = PyObject_CallMethod(sys, (char*) "getdefaultencoding", NULL); - Py_DECREF(sys); - if (!default_encoding) goto bad; - default_encoding_c = PyBytes_AsString(default_encoding); - if (!default_encoding_c) goto bad; - if (strcmp(default_encoding_c, "ascii") == 0) { - __Pyx_sys_getdefaultencoding_not_ascii = 0; - } else { - char ascii_chars[128]; - int c; - for (c = 0; c < 128; c++) { - ascii_chars[c] = c; - } - __Pyx_sys_getdefaultencoding_not_ascii = 1; - ascii_chars_u = PyUnicode_DecodeASCII(ascii_chars, 128, NULL); - if (!ascii_chars_u) goto bad; - ascii_chars_b = PyUnicode_AsEncodedString(ascii_chars_u, default_encoding_c, NULL); - if (!ascii_chars_b || !PyBytes_Check(ascii_chars_b) || memcmp(ascii_chars, PyBytes_AS_STRING(ascii_chars_b), 128) != 0) { - PyErr_Format( - PyExc_ValueError, - "This module compiled with c_string_encoding=ascii, but default encoding '%.200s' is not a superset of ascii.", - default_encoding_c); - goto bad; - } - Py_DECREF(ascii_chars_u); - Py_DECREF(ascii_chars_b); - } - Py_DECREF(default_encoding); - return 0; -bad: - Py_XDECREF(default_encoding); - Py_XDECREF(ascii_chars_u); - Py_XDECREF(ascii_chars_b); - return -1; -} -#endif -#if __PYX_DEFAULT_STRING_ENCODING_IS_DEFAULT && PY_MAJOR_VERSION >= 3 -#define __Pyx_PyUnicode_FromStringAndSize(c_str, size) PyUnicode_DecodeUTF8(c_str, size, NULL) -#else -#define __Pyx_PyUnicode_FromStringAndSize(c_str, size) PyUnicode_Decode(c_str, size, __PYX_DEFAULT_STRING_ENCODING, NULL) -#if __PYX_DEFAULT_STRING_ENCODING_IS_DEFAULT -static char* __PYX_DEFAULT_STRING_ENCODING; -static int __Pyx_init_sys_getdefaultencoding_params(void) { - PyObject* sys; - PyObject* default_encoding = NULL; - char* default_encoding_c; - sys = PyImport_ImportModule("sys"); - if (!sys) goto bad; - default_encoding = PyObject_CallMethod(sys, (char*) (const char*) "getdefaultencoding", NULL); - Py_DECREF(sys); - if (!default_encoding) goto bad; - default_encoding_c = PyBytes_AsString(default_encoding); - if (!default_encoding_c) goto bad; - __PYX_DEFAULT_STRING_ENCODING = (char*) malloc(strlen(default_encoding_c) + 1); - if (!__PYX_DEFAULT_STRING_ENCODING) goto bad; - strcpy(__PYX_DEFAULT_STRING_ENCODING, default_encoding_c); - Py_DECREF(default_encoding); - return 0; -bad: - Py_XDECREF(default_encoding); - return -1; -} -#endif -#endif - - -/* Test for GCC > 2.95 */ -#if defined(__GNUC__) && (__GNUC__ > 2 || (__GNUC__ == 2 && (__GNUC_MINOR__ > 95))) - #define likely(x) __builtin_expect(!!(x), 1) - #define unlikely(x) __builtin_expect(!!(x), 0) -#else /* !__GNUC__ or GCC < 2.95 */ - #define likely(x) (x) - #define unlikely(x) (x) -#endif /* __GNUC__ */ -static CYTHON_INLINE void __Pyx_pretend_to_initialize(void* ptr) { (void)ptr; } - -static PyObject *__pyx_m = NULL; -static PyObject *__pyx_d; -static PyObject *__pyx_b; -static PyObject *__pyx_cython_runtime = NULL; -static PyObject *__pyx_empty_tuple; -static PyObject *__pyx_empty_bytes; -static PyObject *__pyx_empty_unicode; -static int __pyx_lineno; -static int __pyx_clineno = 0; -static const char * __pyx_cfilenm= __FILE__; -static const char *__pyx_filename; - - -static const char *__pyx_f[] = { - "pmercury/protocols/http_server.pyx", -}; - -/*--- Type declarations ---*/ - -/* --- Runtime support code (head) --- */ -/* Refnanny.proto */ -#ifndef CYTHON_REFNANNY - #define CYTHON_REFNANNY 0 -#endif -#if CYTHON_REFNANNY - typedef struct { - void (*INCREF)(void*, PyObject*, int); - void (*DECREF)(void*, PyObject*, int); - void (*GOTREF)(void*, PyObject*, int); - void (*GIVEREF)(void*, PyObject*, int); - void* (*SetupContext)(const char*, int, const char*); - void (*FinishContext)(void**); - } __Pyx_RefNannyAPIStruct; - static __Pyx_RefNannyAPIStruct *__Pyx_RefNanny = NULL; - static __Pyx_RefNannyAPIStruct *__Pyx_RefNannyImportAPI(const char *modname); - #define __Pyx_RefNannyDeclarations void *__pyx_refnanny = NULL; -#ifdef WITH_THREAD - #define __Pyx_RefNannySetupContext(name, acquire_gil)\ - if (acquire_gil) {\ - PyGILState_STATE __pyx_gilstate_save = PyGILState_Ensure();\ - __pyx_refnanny = __Pyx_RefNanny->SetupContext((name), __LINE__, __FILE__);\ - PyGILState_Release(__pyx_gilstate_save);\ - } else {\ - __pyx_refnanny = __Pyx_RefNanny->SetupContext((name), __LINE__, __FILE__);\ - } -#else - #define __Pyx_RefNannySetupContext(name, acquire_gil)\ - __pyx_refnanny = __Pyx_RefNanny->SetupContext((name), __LINE__, __FILE__) -#endif - #define __Pyx_RefNannyFinishContext()\ - __Pyx_RefNanny->FinishContext(&__pyx_refnanny) - #define __Pyx_INCREF(r) __Pyx_RefNanny->INCREF(__pyx_refnanny, (PyObject *)(r), __LINE__) - #define __Pyx_DECREF(r) __Pyx_RefNanny->DECREF(__pyx_refnanny, (PyObject *)(r), __LINE__) - #define __Pyx_GOTREF(r) __Pyx_RefNanny->GOTREF(__pyx_refnanny, (PyObject *)(r), __LINE__) - #define __Pyx_GIVEREF(r) __Pyx_RefNanny->GIVEREF(__pyx_refnanny, (PyObject *)(r), __LINE__) - #define __Pyx_XINCREF(r) do { if((r) != NULL) {__Pyx_INCREF(r); }} while(0) - #define __Pyx_XDECREF(r) do { if((r) != NULL) {__Pyx_DECREF(r); }} while(0) - #define __Pyx_XGOTREF(r) do { if((r) != NULL) {__Pyx_GOTREF(r); }} while(0) - #define __Pyx_XGIVEREF(r) do { if((r) != NULL) {__Pyx_GIVEREF(r);}} while(0) -#else - #define __Pyx_RefNannyDeclarations - #define __Pyx_RefNannySetupContext(name, acquire_gil) - #define __Pyx_RefNannyFinishContext() - #define __Pyx_INCREF(r) Py_INCREF(r) - #define __Pyx_DECREF(r) Py_DECREF(r) - #define __Pyx_GOTREF(r) - #define __Pyx_GIVEREF(r) - #define __Pyx_XINCREF(r) Py_XINCREF(r) - #define __Pyx_XDECREF(r) Py_XDECREF(r) - #define __Pyx_XGOTREF(r) - #define __Pyx_XGIVEREF(r) -#endif -#define __Pyx_XDECREF_SET(r, v) do {\ - PyObject *tmp = (PyObject *) r;\ - r = v; __Pyx_XDECREF(tmp);\ - } while (0) -#define __Pyx_DECREF_SET(r, v) do {\ - PyObject *tmp = (PyObject *) r;\ - r = v; __Pyx_DECREF(tmp);\ - } while (0) -#define __Pyx_CLEAR(r) do { PyObject* tmp = ((PyObject*)(r)); r = NULL; __Pyx_DECREF(tmp);} while(0) -#define __Pyx_XCLEAR(r) do { if((r) != NULL) {PyObject* tmp = ((PyObject*)(r)); r = NULL; __Pyx_DECREF(tmp);}} while(0) - -/* PyObjectGetAttrStr.proto */ -#if CYTHON_USE_TYPE_SLOTS -static CYTHON_INLINE PyObject* __Pyx_PyObject_GetAttrStr(PyObject* obj, PyObject* attr_name); -#else -#define __Pyx_PyObject_GetAttrStr(o,n) PyObject_GetAttr(o,n) -#endif - -/* GetBuiltinName.proto */ -static PyObject *__Pyx_GetBuiltinName(PyObject *name); - -/* RaiseDoubleKeywords.proto */ -static void __Pyx_RaiseDoubleKeywordsError(const char* func_name, PyObject* kw_name); - -/* ParseKeywords.proto */ -static int __Pyx_ParseOptionalKeywords(PyObject *kwds, PyObject **argnames[],\ - PyObject *kwds2, PyObject *values[], Py_ssize_t num_pos_args,\ - const char* function_name); - -/* RaiseArgTupleInvalid.proto */ -static void __Pyx_RaiseArgtupleInvalid(const char* func_name, int exact, - Py_ssize_t num_min, Py_ssize_t num_max, Py_ssize_t num_found); - -/* PyFunctionFastCall.proto */ -#if CYTHON_FAST_PYCALL -#define __Pyx_PyFunction_FastCall(func, args, nargs)\ - __Pyx_PyFunction_FastCallDict((func), (args), (nargs), NULL) -#if 1 || PY_VERSION_HEX < 0x030600B1 -static PyObject *__Pyx_PyFunction_FastCallDict(PyObject *func, PyObject **args, Py_ssize_t nargs, PyObject *kwargs); -#else -#define __Pyx_PyFunction_FastCallDict(func, args, nargs, kwargs) _PyFunction_FastCallDict(func, args, nargs, kwargs) -#endif -#define __Pyx_BUILD_ASSERT_EXPR(cond)\ - (sizeof(char [1 - 2*!(cond)]) - 1) -#ifndef Py_MEMBER_SIZE -#define Py_MEMBER_SIZE(type, member) sizeof(((type *)0)->member) -#endif - static size_t __pyx_pyframe_localsplus_offset = 0; - #include "frameobject.h" - #define __Pxy_PyFrame_Initialize_Offsets()\ - ((void)__Pyx_BUILD_ASSERT_EXPR(sizeof(PyFrameObject) == offsetof(PyFrameObject, f_localsplus) + Py_MEMBER_SIZE(PyFrameObject, f_localsplus)),\ - (void)(__pyx_pyframe_localsplus_offset = ((size_t)PyFrame_Type.tp_basicsize) - Py_MEMBER_SIZE(PyFrameObject, f_localsplus))) - #define __Pyx_PyFrame_GetLocalsplus(frame)\ - (assert(__pyx_pyframe_localsplus_offset), (PyObject **)(((char *)(frame)) + __pyx_pyframe_localsplus_offset)) -#endif - -/* PyObjectCall.proto */ -#if CYTHON_COMPILING_IN_CPYTHON -static CYTHON_INLINE PyObject* __Pyx_PyObject_Call(PyObject *func, PyObject *arg, PyObject *kw); -#else -#define __Pyx_PyObject_Call(func, arg, kw) PyObject_Call(func, arg, kw) -#endif - -/* PyObjectCallMethO.proto */ -#if CYTHON_COMPILING_IN_CPYTHON -static CYTHON_INLINE PyObject* __Pyx_PyObject_CallMethO(PyObject *func, PyObject *arg); -#endif - -/* PyObjectCallNoArg.proto */ -#if CYTHON_COMPILING_IN_CPYTHON -static CYTHON_INLINE PyObject* __Pyx_PyObject_CallNoArg(PyObject *func); -#else -#define __Pyx_PyObject_CallNoArg(func) __Pyx_PyObject_Call(func, __pyx_empty_tuple, NULL) -#endif - -/* PyCFunctionFastCall.proto */ -#if CYTHON_FAST_PYCCALL -static CYTHON_INLINE PyObject *__Pyx_PyCFunction_FastCall(PyObject *func, PyObject **args, Py_ssize_t nargs); -#else -#define __Pyx_PyCFunction_FastCall(func, args, nargs) (assert(0), NULL) -#endif - -/* PyObjectCallOneArg.proto */ -static CYTHON_INLINE PyObject* __Pyx_PyObject_CallOneArg(PyObject *func, PyObject *arg); - -/* PyObjectSetAttrStr.proto */ -#if CYTHON_USE_TYPE_SLOTS -#define __Pyx_PyObject_DelAttrStr(o,n) __Pyx_PyObject_SetAttrStr(o, n, NULL) -static CYTHON_INLINE int __Pyx_PyObject_SetAttrStr(PyObject* obj, PyObject* attr_name, PyObject* value); -#else -#define __Pyx_PyObject_DelAttrStr(o,n) PyObject_DelAttr(o,n) -#define __Pyx_PyObject_SetAttrStr(o,n,v) PyObject_SetAttr(o,n,v) -#endif - -/* PyDictVersioning.proto */ -#if CYTHON_USE_DICT_VERSIONS && CYTHON_USE_TYPE_SLOTS -#define __PYX_DICT_VERSION_INIT ((PY_UINT64_T) -1) -#define __PYX_GET_DICT_VERSION(dict) (((PyDictObject*)(dict))->ma_version_tag) -#define __PYX_UPDATE_DICT_CACHE(dict, value, cache_var, version_var)\ - (version_var) = __PYX_GET_DICT_VERSION(dict);\ - (cache_var) = (value); -#define __PYX_PY_DICT_LOOKUP_IF_MODIFIED(VAR, DICT, LOOKUP) {\ - static PY_UINT64_T __pyx_dict_version = 0;\ - static PyObject *__pyx_dict_cached_value = NULL;\ - if (likely(__PYX_GET_DICT_VERSION(DICT) == __pyx_dict_version)) {\ - (VAR) = __pyx_dict_cached_value;\ - } else {\ - (VAR) = __pyx_dict_cached_value = (LOOKUP);\ - __pyx_dict_version = __PYX_GET_DICT_VERSION(DICT);\ - }\ -} -static CYTHON_INLINE PY_UINT64_T __Pyx_get_tp_dict_version(PyObject *obj); -static CYTHON_INLINE PY_UINT64_T __Pyx_get_object_dict_version(PyObject *obj); -static CYTHON_INLINE int __Pyx_object_dict_version_matches(PyObject* obj, PY_UINT64_T tp_dict_version, PY_UINT64_T obj_dict_version); -#else -#define __PYX_GET_DICT_VERSION(dict) (0) -#define __PYX_UPDATE_DICT_CACHE(dict, value, cache_var, version_var) -#define __PYX_PY_DICT_LOOKUP_IF_MODIFIED(VAR, DICT, LOOKUP) (VAR) = (LOOKUP); -#endif - -/* GetModuleGlobalName.proto */ -#if CYTHON_USE_DICT_VERSIONS -#define __Pyx_GetModuleGlobalName(var, name) {\ - static PY_UINT64_T __pyx_dict_version = 0;\ - static PyObject *__pyx_dict_cached_value = NULL;\ - (var) = (likely(__pyx_dict_version == __PYX_GET_DICT_VERSION(__pyx_d))) ?\ - (likely(__pyx_dict_cached_value) ? __Pyx_NewRef(__pyx_dict_cached_value) : __Pyx_GetBuiltinName(name)) :\ - __Pyx__GetModuleGlobalName(name, &__pyx_dict_version, &__pyx_dict_cached_value);\ -} -#define __Pyx_GetModuleGlobalNameUncached(var, name) {\ - PY_UINT64_T __pyx_dict_version;\ - PyObject *__pyx_dict_cached_value;\ - (var) = __Pyx__GetModuleGlobalName(name, &__pyx_dict_version, &__pyx_dict_cached_value);\ -} -static PyObject *__Pyx__GetModuleGlobalName(PyObject *name, PY_UINT64_T *dict_version, PyObject **dict_cached_value); -#else -#define __Pyx_GetModuleGlobalName(var, name) (var) = __Pyx__GetModuleGlobalName(name) -#define __Pyx_GetModuleGlobalNameUncached(var, name) (var) = __Pyx__GetModuleGlobalName(name) -static CYTHON_INLINE PyObject *__Pyx__GetModuleGlobalName(PyObject *name); -#endif - -/* PySequenceContains.proto */ -static CYTHON_INLINE int __Pyx_PySequence_ContainsTF(PyObject* item, PyObject* seq, int eq) { - int result = PySequence_Contains(seq, item); - return unlikely(result < 0) ? result : (result == (eq == Py_EQ)); -} - -/* DictGetItem.proto */ -#if PY_MAJOR_VERSION >= 3 && !CYTHON_COMPILING_IN_PYPY -static PyObject *__Pyx_PyDict_GetItem(PyObject *d, PyObject* key); -#define __Pyx_PyObject_Dict_GetItem(obj, name)\ - (likely(PyDict_CheckExact(obj)) ?\ - __Pyx_PyDict_GetItem(obj, name) : PyObject_GetItem(obj, name)) -#else -#define __Pyx_PyDict_GetItem(d, key) PyObject_GetItem(d, key) -#define __Pyx_PyObject_Dict_GetItem(obj, name) PyObject_GetItem(obj, name) -#endif - -/* FetchCommonType.proto */ -static PyTypeObject* __Pyx_FetchCommonType(PyTypeObject* type); - -/* CythonFunction.proto */ -#define __Pyx_CyFunction_USED 1 -#define __Pyx_CYFUNCTION_STATICMETHOD 0x01 -#define __Pyx_CYFUNCTION_CLASSMETHOD 0x02 -#define __Pyx_CYFUNCTION_CCLASS 0x04 -#define __Pyx_CyFunction_GetClosure(f)\ - (((__pyx_CyFunctionObject *) (f))->func_closure) -#define __Pyx_CyFunction_GetClassObj(f)\ - (((__pyx_CyFunctionObject *) (f))->func_classobj) -#define __Pyx_CyFunction_Defaults(type, f)\ - ((type *)(((__pyx_CyFunctionObject *) (f))->defaults)) -#define __Pyx_CyFunction_SetDefaultsGetter(f, g)\ - ((__pyx_CyFunctionObject *) (f))->defaults_getter = (g) -typedef struct { - PyCFunctionObject func; -#if PY_VERSION_HEX < 0x030500A0 - PyObject *func_weakreflist; -#endif - PyObject *func_dict; - PyObject *func_name; - PyObject *func_qualname; - PyObject *func_doc; - PyObject *func_globals; - PyObject *func_code; - PyObject *func_closure; - PyObject *func_classobj; - void *defaults; - int defaults_pyobjects; - int flags; - PyObject *defaults_tuple; - PyObject *defaults_kwdict; - PyObject *(*defaults_getter)(PyObject *); - PyObject *func_annotations; -} __pyx_CyFunctionObject; -static PyTypeObject *__pyx_CyFunctionType = 0; -#define __Pyx_CyFunction_Check(obj) (__Pyx_TypeCheck(obj, __pyx_CyFunctionType)) -#define __Pyx_CyFunction_NewEx(ml, flags, qualname, self, module, globals, code)\ - __Pyx_CyFunction_New(__pyx_CyFunctionType, ml, flags, qualname, self, module, globals, code) -static PyObject *__Pyx_CyFunction_New(PyTypeObject *, PyMethodDef *ml, - int flags, PyObject* qualname, - PyObject *self, - PyObject *module, PyObject *globals, - PyObject* code); -static CYTHON_INLINE void *__Pyx_CyFunction_InitDefaults(PyObject *m, - size_t size, - int pyobjects); -static CYTHON_INLINE void __Pyx_CyFunction_SetDefaultsTuple(PyObject *m, - PyObject *tuple); -static CYTHON_INLINE void __Pyx_CyFunction_SetDefaultsKwDict(PyObject *m, - PyObject *dict); -static CYTHON_INLINE void __Pyx_CyFunction_SetAnnotationsDict(PyObject *m, - PyObject *dict); -static int __pyx_CyFunction_init(void); - -/* ListAppend.proto */ -#if CYTHON_USE_PYLIST_INTERNALS && CYTHON_ASSUME_SAFE_MACROS -static CYTHON_INLINE int __Pyx_PyList_Append(PyObject* list, PyObject* x) { - PyListObject* L = (PyListObject*) list; - Py_ssize_t len = Py_SIZE(list); - if (likely(L->allocated > len) & likely(len > (L->allocated >> 1))) { - Py_INCREF(x); - PyList_SET_ITEM(list, len, x); - Py_SIZE(list) = len+1; - return 0; - } - return PyList_Append(list, x); -} -#else -#define __Pyx_PyList_Append(L,x) PyList_Append(L,x) -#endif - -/* PyObjectCall2Args.proto */ -static CYTHON_UNUSED PyObject* __Pyx_PyObject_Call2Args(PyObject* function, PyObject* arg1, PyObject* arg2); - -/* PyObjectGetMethod.proto */ -static int __Pyx_PyObject_GetMethod(PyObject *obj, PyObject *name, PyObject **method); - -/* PyObjectCallMethod1.proto */ -static PyObject* __Pyx_PyObject_CallMethod1(PyObject* obj, PyObject* method_name, PyObject* arg); - -/* append.proto */ -static CYTHON_INLINE int __Pyx_PyObject_Append(PyObject* L, PyObject* x); - -/* PyIntCompare.proto */ -static CYTHON_INLINE PyObject* __Pyx_PyInt_EqObjC(PyObject *op1, PyObject *op2, long intval, long inplace); - -/* GetItemInt.proto */ -#define __Pyx_GetItemInt(o, i, type, is_signed, to_py_func, is_list, wraparound, boundscheck)\ - (__Pyx_fits_Py_ssize_t(i, type, is_signed) ?\ - __Pyx_GetItemInt_Fast(o, (Py_ssize_t)i, is_list, wraparound, boundscheck) :\ - (is_list ? (PyErr_SetString(PyExc_IndexError, "list index out of range"), (PyObject*)NULL) :\ - __Pyx_GetItemInt_Generic(o, to_py_func(i)))) -#define __Pyx_GetItemInt_List(o, i, type, is_signed, to_py_func, is_list, wraparound, boundscheck)\ - (__Pyx_fits_Py_ssize_t(i, type, is_signed) ?\ - __Pyx_GetItemInt_List_Fast(o, (Py_ssize_t)i, wraparound, boundscheck) :\ - (PyErr_SetString(PyExc_IndexError, "list index out of range"), (PyObject*)NULL)) -static CYTHON_INLINE PyObject *__Pyx_GetItemInt_List_Fast(PyObject *o, Py_ssize_t i, - int wraparound, int boundscheck); -#define __Pyx_GetItemInt_Tuple(o, i, type, is_signed, to_py_func, is_list, wraparound, boundscheck)\ - (__Pyx_fits_Py_ssize_t(i, type, is_signed) ?\ - __Pyx_GetItemInt_Tuple_Fast(o, (Py_ssize_t)i, wraparound, boundscheck) :\ - (PyErr_SetString(PyExc_IndexError, "tuple index out of range"), (PyObject*)NULL)) -static CYTHON_INLINE PyObject *__Pyx_GetItemInt_Tuple_Fast(PyObject *o, Py_ssize_t i, - int wraparound, int boundscheck); -static PyObject *__Pyx_GetItemInt_Generic(PyObject *o, PyObject* j); -static CYTHON_INLINE PyObject *__Pyx_GetItemInt_Fast(PyObject *o, Py_ssize_t i, - int is_list, int wraparound, int boundscheck); - -/* ObjectGetItem.proto */ -#if CYTHON_USE_TYPE_SLOTS -static CYTHON_INLINE PyObject *__Pyx_PyObject_GetItem(PyObject *obj, PyObject* key); -#else -#define __Pyx_PyObject_GetItem(obj, key) PyObject_GetItem(obj, key) -#endif - -/* PyIntBinop.proto */ -#if !CYTHON_COMPILING_IN_PYPY -static PyObject* __Pyx_PyInt_AddObjC(PyObject *op1, PyObject *op2, long intval, int inplace, int zerodivision_check); -#else -#define __Pyx_PyInt_AddObjC(op1, op2, intval, inplace, zerodivision_check)\ - (inplace ? PyNumber_InPlaceAdd(op1, op2) : PyNumber_Add(op1, op2)) -#endif - -/* ArgTypeTest.proto */ -#define __Pyx_ArgTypeTest(obj, type, none_allowed, name, exact)\ - ((likely((Py_TYPE(obj) == type) | (none_allowed && (obj == Py_None)))) ? 1 :\ - __Pyx__ArgTypeTest(obj, type, name, exact)) -static int __Pyx__ArgTypeTest(PyObject *obj, PyTypeObject *type, const char *name, int exact); - -/* GetTopmostException.proto */ -#if CYTHON_USE_EXC_INFO_STACK -static _PyErr_StackItem * __Pyx_PyErr_GetTopmostException(PyThreadState *tstate); -#endif - -/* PyThreadStateGet.proto */ -#if CYTHON_FAST_THREAD_STATE -#define __Pyx_PyThreadState_declare PyThreadState *__pyx_tstate; -#define __Pyx_PyThreadState_assign __pyx_tstate = __Pyx_PyThreadState_Current; -#define __Pyx_PyErr_Occurred() __pyx_tstate->curexc_type -#else -#define __Pyx_PyThreadState_declare -#define __Pyx_PyThreadState_assign -#define __Pyx_PyErr_Occurred() PyErr_Occurred() -#endif - -/* SaveResetException.proto */ -#if CYTHON_FAST_THREAD_STATE -#define __Pyx_ExceptionSave(type, value, tb) __Pyx__ExceptionSave(__pyx_tstate, type, value, tb) -static CYTHON_INLINE void __Pyx__ExceptionSave(PyThreadState *tstate, PyObject **type, PyObject **value, PyObject **tb); -#define __Pyx_ExceptionReset(type, value, tb) __Pyx__ExceptionReset(__pyx_tstate, type, value, tb) -static CYTHON_INLINE void __Pyx__ExceptionReset(PyThreadState *tstate, PyObject *type, PyObject *value, PyObject *tb); -#else -#define __Pyx_ExceptionSave(type, value, tb) PyErr_GetExcInfo(type, value, tb) -#define __Pyx_ExceptionReset(type, value, tb) PyErr_SetExcInfo(type, value, tb) -#endif - -/* PyErrExceptionMatches.proto */ -#if CYTHON_FAST_THREAD_STATE -#define __Pyx_PyErr_ExceptionMatches(err) __Pyx_PyErr_ExceptionMatchesInState(__pyx_tstate, err) -static CYTHON_INLINE int __Pyx_PyErr_ExceptionMatchesInState(PyThreadState* tstate, PyObject* err); -#else -#define __Pyx_PyErr_ExceptionMatches(err) PyErr_ExceptionMatches(err) -#endif - -/* GetException.proto */ -#if CYTHON_FAST_THREAD_STATE -#define __Pyx_GetException(type, value, tb) __Pyx__GetException(__pyx_tstate, type, value, tb) -static int __Pyx__GetException(PyThreadState *tstate, PyObject **type, PyObject **value, PyObject **tb); -#else -static int __Pyx_GetException(PyObject **type, PyObject **value, PyObject **tb); -#endif - -/* IncludeStringH.proto */ -#include - -/* BytesEquals.proto */ -static CYTHON_INLINE int __Pyx_PyBytes_Equals(PyObject* s1, PyObject* s2, int equals); - -/* UnicodeEquals.proto */ -static CYTHON_INLINE int __Pyx_PyUnicode_Equals(PyObject* s1, PyObject* s2, int equals); - -/* SliceTupleAndList.proto */ -#if CYTHON_COMPILING_IN_CPYTHON -static CYTHON_INLINE PyObject* __Pyx_PyList_GetSlice(PyObject* src, Py_ssize_t start, Py_ssize_t stop); -static CYTHON_INLINE PyObject* __Pyx_PyTuple_GetSlice(PyObject* src, Py_ssize_t start, Py_ssize_t stop); -#else -#define __Pyx_PyList_GetSlice(seq, start, stop) PySequence_GetSlice(seq, start, stop) -#define __Pyx_PyTuple_GetSlice(seq, start, stop) PySequence_GetSlice(seq, start, stop) -#endif - -/* pyfrozenset_new.proto */ -static CYTHON_INLINE PyObject* __Pyx_PyFrozenSet_New(PyObject* it); - -/* PySetContains.proto */ -static CYTHON_INLINE int __Pyx_PySet_ContainsTF(PyObject* key, PyObject* set, int eq); - -/* PyDictContains.proto */ -static CYTHON_INLINE int __Pyx_PyDict_ContainsTF(PyObject* item, PyObject* dict, int eq) { - int result = PyDict_Contains(dict, item); - return unlikely(result < 0) ? result : (result == (eq == Py_EQ)); -} - -/* SliceObject.proto */ -static CYTHON_INLINE PyObject* __Pyx_PyObject_GetSlice( - PyObject* obj, Py_ssize_t cstart, Py_ssize_t cstop, - PyObject** py_start, PyObject** py_stop, PyObject** py_slice, - int has_cstart, int has_cstop, int wraparound); - -/* ListCompAppend.proto */ -#if CYTHON_USE_PYLIST_INTERNALS && CYTHON_ASSUME_SAFE_MACROS -static CYTHON_INLINE int __Pyx_ListComp_Append(PyObject* list, PyObject* x) { - PyListObject* L = (PyListObject*) list; - Py_ssize_t len = Py_SIZE(list); - if (likely(L->allocated > len)) { - Py_INCREF(x); - PyList_SET_ITEM(list, len, x); - Py_SIZE(list) = len+1; - return 0; - } - return PyList_Append(list, x); -} -#else -#define __Pyx_ListComp_Append(L,x) PyList_Append(L,x) -#endif - -/* Import.proto */ -static PyObject *__Pyx_Import(PyObject *name, PyObject *from_list, int level); - -/* ImportFrom.proto */ -static PyObject* __Pyx_ImportFrom(PyObject* module, PyObject* name); - -/* CalculateMetaclass.proto */ -static PyObject *__Pyx_CalculateMetaclass(PyTypeObject *metaclass, PyObject *bases); - -/* SetNameInClass.proto */ -#if CYTHON_COMPILING_IN_CPYTHON && PY_VERSION_HEX >= 0x030500A1 -#define __Pyx_SetNameInClass(ns, name, value)\ - (likely(PyDict_CheckExact(ns)) ? _PyDict_SetItem_KnownHash(ns, name, value, ((PyASCIIObject *) name)->hash) : PyObject_SetItem(ns, name, value)) -#elif CYTHON_COMPILING_IN_CPYTHON -#define __Pyx_SetNameInClass(ns, name, value)\ - (likely(PyDict_CheckExact(ns)) ? PyDict_SetItem(ns, name, value) : PyObject_SetItem(ns, name, value)) -#else -#define __Pyx_SetNameInClass(ns, name, value) PyObject_SetItem(ns, name, value) -#endif - -/* Py3ClassCreate.proto */ -static PyObject *__Pyx_Py3MetaclassPrepare(PyObject *metaclass, PyObject *bases, PyObject *name, PyObject *qualname, - PyObject *mkw, PyObject *modname, PyObject *doc); -static PyObject *__Pyx_Py3ClassCreate(PyObject *metaclass, PyObject *name, PyObject *bases, PyObject *dict, - PyObject *mkw, int calculate_metaclass, int allow_py2_metaclass); - -/* PyErrFetchRestore.proto */ -#if CYTHON_FAST_THREAD_STATE -#define __Pyx_PyErr_Clear() __Pyx_ErrRestore(NULL, NULL, NULL) -#define __Pyx_ErrRestoreWithState(type, value, tb) __Pyx_ErrRestoreInState(PyThreadState_GET(), type, value, tb) -#define __Pyx_ErrFetchWithState(type, value, tb) __Pyx_ErrFetchInState(PyThreadState_GET(), type, value, tb) -#define __Pyx_ErrRestore(type, value, tb) __Pyx_ErrRestoreInState(__pyx_tstate, type, value, tb) -#define __Pyx_ErrFetch(type, value, tb) __Pyx_ErrFetchInState(__pyx_tstate, type, value, tb) -static CYTHON_INLINE void __Pyx_ErrRestoreInState(PyThreadState *tstate, PyObject *type, PyObject *value, PyObject *tb); -static CYTHON_INLINE void __Pyx_ErrFetchInState(PyThreadState *tstate, PyObject **type, PyObject **value, PyObject **tb); -#if CYTHON_COMPILING_IN_CPYTHON -#define __Pyx_PyErr_SetNone(exc) (Py_INCREF(exc), __Pyx_ErrRestore((exc), NULL, NULL)) -#else -#define __Pyx_PyErr_SetNone(exc) PyErr_SetNone(exc) -#endif -#else -#define __Pyx_PyErr_Clear() PyErr_Clear() -#define __Pyx_PyErr_SetNone(exc) PyErr_SetNone(exc) -#define __Pyx_ErrRestoreWithState(type, value, tb) PyErr_Restore(type, value, tb) -#define __Pyx_ErrFetchWithState(type, value, tb) PyErr_Fetch(type, value, tb) -#define __Pyx_ErrRestoreInState(tstate, type, value, tb) PyErr_Restore(type, value, tb) -#define __Pyx_ErrFetchInState(tstate, type, value, tb) PyErr_Fetch(type, value, tb) -#define __Pyx_ErrRestore(type, value, tb) PyErr_Restore(type, value, tb) -#define __Pyx_ErrFetch(type, value, tb) PyErr_Fetch(type, value, tb) -#endif - -/* CLineInTraceback.proto */ -#ifdef CYTHON_CLINE_IN_TRACEBACK -#define __Pyx_CLineForTraceback(tstate, c_line) (((CYTHON_CLINE_IN_TRACEBACK)) ? c_line : 0) -#else -static int __Pyx_CLineForTraceback(PyThreadState *tstate, int c_line); -#endif - -/* CodeObjectCache.proto */ -typedef struct { - PyCodeObject* code_object; - int code_line; -} __Pyx_CodeObjectCacheEntry; -struct __Pyx_CodeObjectCache { - int count; - int max_count; - __Pyx_CodeObjectCacheEntry* entries; -}; -static struct __Pyx_CodeObjectCache __pyx_code_cache = {0,0,NULL}; -static int __pyx_bisect_code_objects(__Pyx_CodeObjectCacheEntry* entries, int count, int code_line); -static PyCodeObject *__pyx_find_code_object(int code_line); -static void __pyx_insert_code_object(int code_line, PyCodeObject* code_object); - -/* AddTraceback.proto */ -static void __Pyx_AddTraceback(const char *funcname, int c_line, - int py_line, const char *filename); - -/* CIntToPy.proto */ -static CYTHON_INLINE PyObject* __Pyx_PyInt_From_long(long value); - -/* CIntFromPy.proto */ -static CYTHON_INLINE unsigned int __Pyx_PyInt_As_unsigned_int(PyObject *); - -/* CIntFromPy.proto */ -static CYTHON_INLINE long __Pyx_PyInt_As_long(PyObject *); - -/* CIntFromPy.proto */ -static CYTHON_INLINE int __Pyx_PyInt_As_int(PyObject *); - -/* FastTypeChecks.proto */ -#if CYTHON_COMPILING_IN_CPYTHON -#define __Pyx_TypeCheck(obj, type) __Pyx_IsSubtype(Py_TYPE(obj), (PyTypeObject *)type) -static CYTHON_INLINE int __Pyx_IsSubtype(PyTypeObject *a, PyTypeObject *b); -static CYTHON_INLINE int __Pyx_PyErr_GivenExceptionMatches(PyObject *err, PyObject *type); -static CYTHON_INLINE int __Pyx_PyErr_GivenExceptionMatches2(PyObject *err, PyObject *type1, PyObject *type2); -#else -#define __Pyx_TypeCheck(obj, type) PyObject_TypeCheck(obj, (PyTypeObject *)type) -#define __Pyx_PyErr_GivenExceptionMatches(err, type) PyErr_GivenExceptionMatches(err, type) -#define __Pyx_PyErr_GivenExceptionMatches2(err, type1, type2) (PyErr_GivenExceptionMatches(err, type1) || PyErr_GivenExceptionMatches(err, type2)) -#endif -#define __Pyx_PyException_Check(obj) __Pyx_TypeCheck(obj, PyExc_Exception) - -/* CheckBinaryVersion.proto */ -static int __Pyx_check_binary_version(void); - -/* InitStrings.proto */ -static int __Pyx_InitStrings(__Pyx_StringTabEntry *t); - - -/* Module declarations from 'pmercury.protocols.http_server' */ -#define __Pyx_MODULE_NAME "pmercury.protocols.http_server" -extern int __pyx_module_is_main_pmercury__protocols__http_server; -int __pyx_module_is_main_pmercury__protocols__http_server = 0; - -/* Implementation of 'pmercury.protocols.http_server' */ -static PyObject *__pyx_builtin_staticmethod; -static PyObject *__pyx_builtin_map; -static PyObject *__pyx_builtin_IndexError; -static PyObject *__pyx_builtin_UnicodeDecodeError; -static PyObject *__pyx_builtin_range; -static const char __pyx_k_[] = "*"; -static const char __pyx_k_c[] = "c"; -static const char __pyx_k_h[] = "h_"; -static const char __pyx_k_i[] = "i"; -static const char __pyx_k_s[] = "(%s)"; -static const char __pyx_k_t[] = "t_"; -static const char __pyx_k_x[] = "x"; -static const char __pyx_k__2[] = "-"; -static const char __pyx_k__3[] = "_"; -static const char __pyx_k__5[] = "\r\n"; -static const char __pyx_k__7[] = " "; -static const char __pyx_k_os[] = "os"; -static const char __pyx_k_rh[] = "rh"; -static const char __pyx_k_t0[] = "t0_"; -static const char __pyx_k__10[] = "()"; -static const char __pyx_k__11[] = ""; -static const char __pyx_k__12[] = ": "; -static const char __pyx_k__14[] = ")"; -static const char __pyx_k__17[] = "/../"; -static const char __pyx_k_doc[] = "__doc__"; -static const char __pyx_k_h_c[] = "h_c"; -static const char __pyx_k_hex[] = "hex"; -static const char __pyx_k_map[] = "map"; -static const char __pyx_k_p3p[] = "p3p"; -static const char __pyx_k_sys[] = "sys"; -static const char __pyx_k_via[] = "via"; -static const char __pyx_k_code[] = "code"; -static const char __pyx_k_data[] = "data"; -static const char __pyx_k_date[] = "date"; -static const char __pyx_k_etag[] = "etag"; -static const char __pyx_k_file[] = "__file__"; -static const char __pyx_k_fp_h[] = "fp_h"; -static const char __pyx_k_init[] = "__init__"; -static const char __pyx_k_main[] = "__main__"; -static const char __pyx_k_name[] = "name"; -static const char __pyx_k_path[] = "path"; -static const char __pyx_k_self[] = "self"; -static const char __pyx_k_test[] = "__test__"; -static const char __pyx_k_vary[] = "vary"; -static const char __pyx_k_x_hw[] = "x-hw"; -static const char __pyx_k_field[] = "field"; -static const char __pyx_k_fp_db[] = "fp_db"; -static const char __pyx_k_lower[] = "lower"; -static const char __pyx_k_ms_cv[] = "ms-cv"; -static const char __pyx_k_range[] = "range"; -static const char __pyx_k_split[] = "split"; -static const char __pyx_k_x_ccc[] = "x-ccc"; -static const char __pyx_k_x_cid[] = "x-cid"; -static const char __pyx_k_append[] = "append"; -static const char __pyx_k_cf_ray[] = "cf-ray"; -static const char __pyx_k_config[] = "config"; -static const char __pyx_k_decode[] = "decode"; -static const char __pyx_k_encode[] = "encode"; -static const char __pyx_k_fp_str[] = "fp_str_"; -static const char __pyx_k_import[] = "__import__"; -static const char __pyx_k_module[] = "__module__"; -static const char __pyx_k_name_2[] = "__name__"; -static const char __pyx_k_offset[] = "offset"; -static const char __pyx_k_pragma[] = "pragma"; -static const char __pyx_k_reason[] = "reason"; -static const char __pyx_k_server[] = "server"; -static const char __pyx_k_abspath[] = "abspath"; -static const char __pyx_k_cdnuuid[] = "cdnuuid"; -static const char __pyx_k_context[] = "context"; -static const char __pyx_k_dirname[] = "dirname"; -static const char __pyx_k_expires[] = "expires"; -static const char __pyx_k_fromhex[] = "fromhex"; -static const char __pyx_k_headers[] = "headers"; -static const char __pyx_k_http_ah[] = "http_ah"; -static const char __pyx_k_http_sn[] = "http_sn"; -static const char __pyx_k_prepare[] = "__prepare__"; -static const char __pyx_k_replace[] = "replace"; -static const char __pyx_k_version[] = "version"; -static const char __pyx_k_x_cache[] = "x-cache"; -static const char __pyx_k_x_timer[] = "x-timer"; -static const char __pyx_k_Protocol[] = "Protocol"; -static const char __pyx_k_data_len[] = "data_len"; -static const char __pyx_k_http_ahd[] = "http_ahd"; -static const char __pyx_k_http_ctx[] = "http_ctx"; -static const char __pyx_k_http_snv[] = "http_snv"; -static const char __pyx_k_msregion[] = "msregion"; -static const char __pyx_k_preamble[] = "preamble"; -static const char __pyx_k_qualname[] = "__qualname__"; -static const char __pyx_k_response[] = "response"; -static const char __pyx_k_t0_lower[] = "t0_lower"; -static const char __pyx_k_metaclass[] = "__metaclass__"; -static const char __pyx_k_IndexError[] = "IndexError"; -static const char __pyx_k_connection[] = "connection"; -static const char __pyx_k_request_id[] = "request-id"; -static const char __pyx_k_x_feserver[] = "x-feserver"; -static const char __pyx_k_HTTP_Server[] = "HTTP_Server"; -static const char __pyx_k_all_headers[] = "all_headers"; -static const char __pyx_k_fingerprint[] = "fingerprint"; -static const char __pyx_k_fp_database[] = "fp_database"; -static const char __pyx_k_http_server[] = "http_server"; -static const char __pyx_k_x_requestid[] = "x-requestid"; -static const char __pyx_k_x_served_by[] = "x-served-by"; -static const char __pyx_k_content_type[] = "content-type"; -static const char __pyx_k_flow_context[] = "flow_context"; -static const char __pyx_k_headers_data[] = "headers_data"; -static const char __pyx_k_ms_requestid[] = "ms-requestid"; -static const char __pyx_k_static_names[] = "static_names"; -static const char __pyx_k_staticmethod[] = "staticmethod"; -static const char __pyx_k_x_amz_cf_pop[] = "x-amz-cf-pop"; -static const char __pyx_k_x_cache_hits[] = "x-cache-hits"; -static const char __pyx_k_x_ms_version[] = "x-ms-version"; -static const char __pyx_k_x_msedge_ref[] = "x-msedge-ref"; -static const char __pyx_k_cache_control[] = "cache-control"; -static const char __pyx_k_content_range[] = "content-range"; -static const char __pyx_k_proto_identify[] = "proto_identify"; -static const char __pyx_k_x_diagnostic_s[] = "x-diagnostic-s"; -static const char __pyx_k_contextual_data[] = "contextual_data"; -static const char __pyx_k_x_trace_context[] = "x-trace-context"; -static const char __pyx_k_content_language[] = "content-language"; -static const char __pyx_k_x_amz_request_id[] = "x-amz-request-id"; -static const char __pyx_k_x_aspnet_version[] = "x-aspnet-version"; -static const char __pyx_k_x_xss_protection[] = "x-xss-protection"; -static const char __pyx_k_appex_activity_id[] = "appex-activity-id"; -static const char __pyx_k_HTTP_Server___init[] = "HTTP_Server.__init__"; -static const char __pyx_k_UnicodeDecodeError[] = "UnicodeDecodeError"; -static const char __pyx_k_cline_in_traceback[] = "cline_in_traceback"; -static const char __pyx_k_get_human_readable[] = "get_human_readable"; -static const char __pyx_k_x_aspnetmvc_version[] = "x-aspnetmvc-version"; -static const char __pyx_k_x_ocsp_responder_id[] = "x-ocsp-responder-id"; -static const char __pyx_k_all_headers_and_data[] = "all_headers_and_data"; -static const char __pyx_k_HTTP_Server_fingerprint[] = "HTTP_Server.fingerprint"; -static const char __pyx_k_static_names_and_values[] = "static_names_and_values"; -static const char __pyx_k_x_azure_ref_originshield[] = "x-azure-ref-originshield"; -static const char __pyx_k_content_transfer_encoding[] = "content-transfer-encoding"; -static const char __pyx_k_strict_transport_security[] = "strict-transport-security"; -static const char __pyx_k_HTTP_Server_proto_identify[] = "HTTP_Server.proto_identify"; -static const char __pyx_k_pmercury_protocols_protocol[] = "pmercury.protocols.protocol"; -static const char __pyx_k_access_control_allow_headers[] = "access-control-allow-headers"; -static const char __pyx_k_access_control_allow_methods[] = "access-control-allow-methods"; -static const char __pyx_k_access_control_expose_headers[] = "access-control-expose-headers"; -static const char __pyx_k_Copyright_c_2019_Cisco_Systems[] = "\n Copyright (c) 2019 Cisco Systems, Inc. All rights reserved.\n License at https://github.com/cisco/mercury/blob/master/LICENSE\n"; -static const char __pyx_k_HTTP_Server_get_human_readable[] = "HTTP_Server.get_human_readable"; -static const char __pyx_k_pmercury_protocols_http_server[] = "pmercury.protocols.http_server"; -static const char __pyx_k_HTTP_Server___init___locals_lamb[] = "HTTP_Server.__init__.."; -static const char __pyx_k_access_control_allow_credentials[] = "access-control-allow-credentials"; -static const char __pyx_k_pmercury_protocols_http_server_p[] = "pmercury/protocols/http_server.pyx"; -static PyObject *__pyx_kp_u_; -static PyObject *__pyx_n_s_HTTP_Server; -static PyObject *__pyx_n_s_HTTP_Server___init; -static PyObject *__pyx_n_s_HTTP_Server___init___locals_lamb; -static PyObject *__pyx_n_s_HTTP_Server_fingerprint; -static PyObject *__pyx_n_s_HTTP_Server_get_human_readable; -static PyObject *__pyx_n_s_HTTP_Server_proto_identify; -static PyObject *__pyx_n_s_IndexError; -static PyObject *__pyx_n_s_Protocol; -static PyObject *__pyx_n_s_UnicodeDecodeError; -static PyObject *__pyx_kp_u__10; -static PyObject *__pyx_kp_b__11; -static PyObject *__pyx_kp_u__11; -static PyObject *__pyx_kp_b__12; -static PyObject *__pyx_kp_u__14; -static PyObject *__pyx_kp_u__17; -static PyObject *__pyx_kp_u__2; -static PyObject *__pyx_n_u__3; -static PyObject *__pyx_kp_b__5; -static PyObject *__pyx_kp_b__7; -static PyObject *__pyx_n_s_abspath; -static PyObject *__pyx_kp_b_access_control_allow_credentials; -static PyObject *__pyx_kp_b_access_control_allow_headers; -static PyObject *__pyx_kp_b_access_control_allow_methods; -static PyObject *__pyx_kp_b_access_control_expose_headers; -static PyObject *__pyx_n_s_all_headers; -static PyObject *__pyx_n_s_all_headers_and_data; -static PyObject *__pyx_n_s_append; -static PyObject *__pyx_kp_b_appex_activity_id; -static PyObject *__pyx_n_s_c; -static PyObject *__pyx_kp_b_cache_control; -static PyObject *__pyx_n_b_cdnuuid; -static PyObject *__pyx_kp_b_cf_ray; -static PyObject *__pyx_n_s_cline_in_traceback; -static PyObject *__pyx_n_u_code; -static PyObject *__pyx_n_s_config; -static PyObject *__pyx_n_b_connection; -static PyObject *__pyx_kp_b_content_language; -static PyObject *__pyx_kp_b_content_range; -static PyObject *__pyx_kp_b_content_transfer_encoding; -static PyObject *__pyx_kp_b_content_type; -static PyObject *__pyx_n_s_context; -static PyObject *__pyx_n_u_context; -static PyObject *__pyx_n_s_contextual_data; -static PyObject *__pyx_n_s_data; -static PyObject *__pyx_n_u_data; -static PyObject *__pyx_n_s_data_len; -static PyObject *__pyx_n_b_date; -static PyObject *__pyx_n_s_decode; -static PyObject *__pyx_n_s_dirname; -static PyObject *__pyx_n_s_doc; -static PyObject *__pyx_n_s_encode; -static PyObject *__pyx_n_b_etag; -static PyObject *__pyx_n_b_expires; -static PyObject *__pyx_n_s_field; -static PyObject *__pyx_n_s_file; -static PyObject *__pyx_n_s_fingerprint; -static PyObject *__pyx_n_b_flow_context; -static PyObject *__pyx_n_s_fp_database; -static PyObject *__pyx_n_s_fp_db; -static PyObject *__pyx_n_s_fp_h; -static PyObject *__pyx_n_s_fp_str; -static PyObject *__pyx_n_s_fromhex; -static PyObject *__pyx_n_s_get_human_readable; -static PyObject *__pyx_n_s_h; -static PyObject *__pyx_n_s_h_c; -static PyObject *__pyx_n_s_headers; -static PyObject *__pyx_n_s_headers_data; -static PyObject *__pyx_n_s_hex; -static PyObject *__pyx_n_s_http_ah; -static PyObject *__pyx_n_s_http_ahd; -static PyObject *__pyx_n_s_http_ctx; -static PyObject *__pyx_n_u_http_server; -static PyObject *__pyx_n_s_http_sn; -static PyObject *__pyx_n_s_http_snv; -static PyObject *__pyx_n_s_i; -static PyObject *__pyx_n_s_import; -static PyObject *__pyx_n_s_init; -static PyObject *__pyx_n_s_lower; -static PyObject *__pyx_n_s_main; -static PyObject *__pyx_n_s_map; -static PyObject *__pyx_n_s_metaclass; -static PyObject *__pyx_n_s_module; -static PyObject *__pyx_kp_b_ms_cv; -static PyObject *__pyx_kp_b_ms_requestid; -static PyObject *__pyx_n_b_msregion; -static PyObject *__pyx_n_u_name; -static PyObject *__pyx_n_s_name_2; -static PyObject *__pyx_n_s_offset; -static PyObject *__pyx_n_s_os; -static PyObject *__pyx_n_b_p3p; -static PyObject *__pyx_n_s_path; -static PyObject *__pyx_n_s_pmercury_protocols_http_server; -static PyObject *__pyx_kp_s_pmercury_protocols_http_server_p; -static PyObject *__pyx_n_s_pmercury_protocols_protocol; -static PyObject *__pyx_n_b_pragma; -static PyObject *__pyx_n_u_preamble; -static PyObject *__pyx_n_s_prepare; -static PyObject *__pyx_n_s_proto_identify; -static PyObject *__pyx_n_s_qualname; -static PyObject *__pyx_n_s_range; -static PyObject *__pyx_n_u_reason; -static PyObject *__pyx_n_s_replace; -static PyObject *__pyx_kp_b_request_id; -static PyObject *__pyx_n_s_response; -static PyObject *__pyx_n_u_response; -static PyObject *__pyx_n_s_rh; -static PyObject *__pyx_kp_u_s; -static PyObject *__pyx_n_s_self; -static PyObject *__pyx_n_b_server; -static PyObject *__pyx_n_s_split; -static PyObject *__pyx_n_s_static_names; -static PyObject *__pyx_n_u_static_names; -static PyObject *__pyx_n_s_static_names_and_values; -static PyObject *__pyx_n_u_static_names_and_values; -static PyObject *__pyx_n_s_staticmethod; -static PyObject *__pyx_kp_b_strict_transport_security; -static PyObject *__pyx_n_s_sys; -static PyObject *__pyx_n_s_t; -static PyObject *__pyx_n_s_t0; -static PyObject *__pyx_n_s_t0_lower; -static PyObject *__pyx_n_s_test; -static PyObject *__pyx_n_b_vary; -static PyObject *__pyx_n_u_version; -static PyObject *__pyx_n_b_via; -static PyObject *__pyx_n_u_via; -static PyObject *__pyx_n_s_x; -static PyObject *__pyx_kp_b_x_amz_cf_pop; -static PyObject *__pyx_kp_b_x_amz_request_id; -static PyObject *__pyx_kp_b_x_aspnet_version; -static PyObject *__pyx_kp_b_x_aspnetmvc_version; -static PyObject *__pyx_kp_b_x_azure_ref_originshield; -static PyObject *__pyx_kp_b_x_cache; -static PyObject *__pyx_kp_b_x_cache_hits; -static PyObject *__pyx_kp_b_x_ccc; -static PyObject *__pyx_kp_b_x_cid; -static PyObject *__pyx_kp_b_x_diagnostic_s; -static PyObject *__pyx_kp_b_x_feserver; -static PyObject *__pyx_kp_b_x_hw; -static PyObject *__pyx_kp_b_x_ms_version; -static PyObject *__pyx_kp_b_x_msedge_ref; -static PyObject *__pyx_kp_b_x_ocsp_responder_id; -static PyObject *__pyx_kp_b_x_requestid; -static PyObject *__pyx_kp_b_x_served_by; -static PyObject *__pyx_kp_b_x_timer; -static PyObject *__pyx_kp_b_x_trace_context; -static PyObject *__pyx_kp_b_x_xss_protection; -static PyObject *__pyx_lambda_funcdef_lambda(CYTHON_UNUSED PyObject *__pyx_self, PyObject *__pyx_v_x); /* proto */ -static PyObject *__pyx_lambda_funcdef_lambda1(CYTHON_UNUSED PyObject *__pyx_self, PyObject *__pyx_v_x); /* proto */ -static PyObject *__pyx_pf_8pmercury_9protocols_11http_server_11HTTP_Server___init__(CYTHON_UNUSED PyObject *__pyx_self, PyObject *__pyx_v_self, CYTHON_UNUSED PyObject *__pyx_v_fp_database, PyObject *__pyx_v_config); /* proto */ -static PyObject *__pyx_pf_8pmercury_9protocols_11http_server_11HTTP_Server_2proto_identify(CYTHON_UNUSED PyObject *__pyx_self, PyObject *__pyx_v_data, PyObject *__pyx_v_offset, PyObject *__pyx_v_data_len); /* proto */ -static PyObject *__pyx_pf_8pmercury_9protocols_11http_server_11HTTP_Server_4fingerprint(CYTHON_UNUSED PyObject *__pyx_self, PyObject *__pyx_v_data, unsigned int __pyx_v_offset, CYTHON_UNUSED unsigned int __pyx_v_data_len); /* proto */ -static PyObject *__pyx_pf_8pmercury_9protocols_11http_server_11HTTP_Server_6get_human_readable(CYTHON_UNUSED PyObject *__pyx_self, CYTHON_UNUSED PyObject *__pyx_v_self, PyObject *__pyx_v_fp_str_); /* proto */ -static PyObject *__pyx_int_0; -static PyObject *__pyx_int_1; -static PyObject *__pyx_int_2; -static PyObject *__pyx_int_3; -static PyObject *__pyx_int_4; -static PyObject *__pyx_int_5; -static PyObject *__pyx_int_16; -static PyObject *__pyx_int_47; -static PyObject *__pyx_int_49; -static PyObject *__pyx_int_72; -static PyObject *__pyx_int_80; -static PyObject *__pyx_int_84; -static PyObject *__pyx_int_neg_1; -static PyObject *__pyx_tuple__4; -static PyObject *__pyx_tuple__6; -static PyObject *__pyx_tuple__8; -static PyObject *__pyx_tuple__9; -static PyObject *__pyx_slice__15; -static PyObject *__pyx_slice__16; -static PyObject *__pyx_tuple__13; -static PyObject *__pyx_tuple__18; -static PyObject *__pyx_tuple__20; -static PyObject *__pyx_tuple__21; -static PyObject *__pyx_tuple__23; -static PyObject *__pyx_tuple__25; -static PyObject *__pyx_codeobj__19; -static PyObject *__pyx_codeobj__22; -static PyObject *__pyx_codeobj__24; -static PyObject *__pyx_codeobj__26; -/* Late includes */ - -/* "pmercury/protocols/http_server.pyx":18 - * class HTTP_Server(Protocol): - * - * def __init__(self, fp_database=None, config=None): # <<<<<<<<<<<<<< - * # populate fingerprint databases - * self.fp_db = {} - */ - -/* Python wrapper */ -static PyObject *__pyx_pw_8pmercury_9protocols_11http_server_11HTTP_Server_1__init__(PyObject *__pyx_self, PyObject *__pyx_args, PyObject *__pyx_kwds); /*proto*/ -static PyMethodDef __pyx_mdef_8pmercury_9protocols_11http_server_11HTTP_Server_1__init__ = {"__init__", (PyCFunction)(void*)(PyCFunctionWithKeywords)__pyx_pw_8pmercury_9protocols_11http_server_11HTTP_Server_1__init__, METH_VARARGS|METH_KEYWORDS, 0}; -static PyObject *__pyx_pw_8pmercury_9protocols_11http_server_11HTTP_Server_1__init__(PyObject *__pyx_self, PyObject *__pyx_args, PyObject *__pyx_kwds) { - PyObject *__pyx_v_self = 0; - CYTHON_UNUSED PyObject *__pyx_v_fp_database = 0; - PyObject *__pyx_v_config = 0; - PyObject *__pyx_r = 0; - __Pyx_RefNannyDeclarations - __Pyx_RefNannySetupContext("__init__ (wrapper)", 0); - { - static PyObject **__pyx_pyargnames[] = {&__pyx_n_s_self,&__pyx_n_s_fp_database,&__pyx_n_s_config,0}; - PyObject* values[3] = {0,0,0}; - values[1] = ((PyObject *)((PyObject *)Py_None)); - values[2] = ((PyObject *)((PyObject *)Py_None)); - if (unlikely(__pyx_kwds)) { - Py_ssize_t kw_args; - const Py_ssize_t pos_args = PyTuple_GET_SIZE(__pyx_args); - switch (pos_args) { - case 3: values[2] = PyTuple_GET_ITEM(__pyx_args, 2); - CYTHON_FALLTHROUGH; - case 2: values[1] = PyTuple_GET_ITEM(__pyx_args, 1); - CYTHON_FALLTHROUGH; - case 1: values[0] = PyTuple_GET_ITEM(__pyx_args, 0); - CYTHON_FALLTHROUGH; - case 0: break; - default: goto __pyx_L5_argtuple_error; - } - kw_args = PyDict_Size(__pyx_kwds); - switch (pos_args) { - case 0: - if (likely((values[0] = __Pyx_PyDict_GetItemStr(__pyx_kwds, __pyx_n_s_self)) != 0)) kw_args--; - else goto __pyx_L5_argtuple_error; - CYTHON_FALLTHROUGH; - case 1: - if (kw_args > 0) { - PyObject* value = __Pyx_PyDict_GetItemStr(__pyx_kwds, __pyx_n_s_fp_database); - if (value) { values[1] = value; kw_args--; } - } - CYTHON_FALLTHROUGH; - case 2: - if (kw_args > 0) { - PyObject* value = __Pyx_PyDict_GetItemStr(__pyx_kwds, __pyx_n_s_config); - if (value) { values[2] = value; kw_args--; } - } - } - if (unlikely(kw_args > 0)) { - if (unlikely(__Pyx_ParseOptionalKeywords(__pyx_kwds, __pyx_pyargnames, 0, values, pos_args, "__init__") < 0)) __PYX_ERR(0, 18, __pyx_L3_error) - } - } else { - switch (PyTuple_GET_SIZE(__pyx_args)) { - case 3: values[2] = PyTuple_GET_ITEM(__pyx_args, 2); - CYTHON_FALLTHROUGH; - case 2: values[1] = PyTuple_GET_ITEM(__pyx_args, 1); - CYTHON_FALLTHROUGH; - case 1: values[0] = PyTuple_GET_ITEM(__pyx_args, 0); - break; - default: goto __pyx_L5_argtuple_error; - } - } - __pyx_v_self = values[0]; - __pyx_v_fp_database = values[1]; - __pyx_v_config = values[2]; - } - goto __pyx_L4_argument_unpacking_done; - __pyx_L5_argtuple_error:; - __Pyx_RaiseArgtupleInvalid("__init__", 0, 1, 3, PyTuple_GET_SIZE(__pyx_args)); __PYX_ERR(0, 18, __pyx_L3_error) - __pyx_L3_error:; - __Pyx_AddTraceback("pmercury.protocols.http_server.HTTP_Server.__init__", __pyx_clineno, __pyx_lineno, __pyx_filename); - __Pyx_RefNannyFinishContext(); - return NULL; - __pyx_L4_argument_unpacking_done:; - __pyx_r = __pyx_pf_8pmercury_9protocols_11http_server_11HTTP_Server___init__(__pyx_self, __pyx_v_self, __pyx_v_fp_database, __pyx_v_config); - - /* function exit code */ - __Pyx_RefNannyFinishContext(); - return __pyx_r; -} - -/* "pmercury/protocols/http_server.pyx":47 - * if config['http_server']['static_names'] == ['*']: - * HTTP_Server.all_headers = True - * HTTP_Server.static_names = set(map(lambda x: x.encode(), config['http_server']['static_names'])) # <<<<<<<<<<<<<< - * if 'static_names_and_values' in config['http_server']: - * if config['http_server']['static_names_and_values'] == ['*']: - */ - -/* Python wrapper */ -static PyObject *__pyx_pw_8pmercury_9protocols_11http_server_11HTTP_Server_8__init___lambda(PyObject *__pyx_self, PyObject *__pyx_v_x); /*proto*/ -static PyMethodDef __pyx_mdef_8pmercury_9protocols_11http_server_11HTTP_Server_8__init___lambda = {"lambda", (PyCFunction)__pyx_pw_8pmercury_9protocols_11http_server_11HTTP_Server_8__init___lambda, METH_O, 0}; -static PyObject *__pyx_pw_8pmercury_9protocols_11http_server_11HTTP_Server_8__init___lambda(PyObject *__pyx_self, PyObject *__pyx_v_x) { - PyObject *__pyx_r = 0; - __Pyx_RefNannyDeclarations - __Pyx_RefNannySetupContext("lambda (wrapper)", 0); - __pyx_r = __pyx_lambda_funcdef_lambda(__pyx_self, ((PyObject *)__pyx_v_x)); - - /* function exit code */ - __Pyx_RefNannyFinishContext(); - return __pyx_r; -} - -static PyObject *__pyx_lambda_funcdef_lambda(CYTHON_UNUSED PyObject *__pyx_self, PyObject *__pyx_v_x) { - PyObject *__pyx_r = NULL; - __Pyx_RefNannyDeclarations - PyObject *__pyx_t_1 = NULL; - PyObject *__pyx_t_2 = NULL; - PyObject *__pyx_t_3 = NULL; - __Pyx_RefNannySetupContext("lambda", 0); - __Pyx_XDECREF(__pyx_r); - __pyx_t_2 = __Pyx_PyObject_GetAttrStr(__pyx_v_x, __pyx_n_s_encode); if (unlikely(!__pyx_t_2)) __PYX_ERR(0, 47, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_2); - __pyx_t_3 = NULL; - if (CYTHON_UNPACK_METHODS && likely(PyMethod_Check(__pyx_t_2))) { - __pyx_t_3 = PyMethod_GET_SELF(__pyx_t_2); - if (likely(__pyx_t_3)) { - PyObject* function = PyMethod_GET_FUNCTION(__pyx_t_2); - __Pyx_INCREF(__pyx_t_3); - __Pyx_INCREF(function); - __Pyx_DECREF_SET(__pyx_t_2, function); - } - } - __pyx_t_1 = (__pyx_t_3) ? __Pyx_PyObject_CallOneArg(__pyx_t_2, __pyx_t_3) : __Pyx_PyObject_CallNoArg(__pyx_t_2); - __Pyx_XDECREF(__pyx_t_3); __pyx_t_3 = 0; - if (unlikely(!__pyx_t_1)) __PYX_ERR(0, 47, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_1); - __Pyx_DECREF(__pyx_t_2); __pyx_t_2 = 0; - __pyx_r = __pyx_t_1; - __pyx_t_1 = 0; - goto __pyx_L0; - - /* function exit code */ - __pyx_L1_error:; - __Pyx_XDECREF(__pyx_t_1); - __Pyx_XDECREF(__pyx_t_2); - __Pyx_XDECREF(__pyx_t_3); - __Pyx_AddTraceback("pmercury.protocols.http_server.HTTP_Server.__init__.lambda", __pyx_clineno, __pyx_lineno, __pyx_filename); - __pyx_r = NULL; - __pyx_L0:; - __Pyx_XGIVEREF(__pyx_r); - __Pyx_RefNannyFinishContext(); - return __pyx_r; -} - -/* "pmercury/protocols/http_server.pyx":51 - * if config['http_server']['static_names_and_values'] == ['*']: - * HTTP_Server.all_headers_and_data = True - * HTTP_Server.static_names_and_values = set(map(lambda x: x.encode(), config['http_server']['static_names_and_values'])) # <<<<<<<<<<<<<< - * if 'preamble' in config['http_server']: - * if 'version' in config['http_server']['preamble']: - */ - -/* Python wrapper */ -static PyObject *__pyx_pw_8pmercury_9protocols_11http_server_11HTTP_Server_8__init___1lambda1(PyObject *__pyx_self, PyObject *__pyx_v_x); /*proto*/ -static PyMethodDef __pyx_mdef_8pmercury_9protocols_11http_server_11HTTP_Server_8__init___1lambda1 = {"lambda1", (PyCFunction)__pyx_pw_8pmercury_9protocols_11http_server_11HTTP_Server_8__init___1lambda1, METH_O, 0}; -static PyObject *__pyx_pw_8pmercury_9protocols_11http_server_11HTTP_Server_8__init___1lambda1(PyObject *__pyx_self, PyObject *__pyx_v_x) { - PyObject *__pyx_r = 0; - __Pyx_RefNannyDeclarations - __Pyx_RefNannySetupContext("lambda1 (wrapper)", 0); - __pyx_r = __pyx_lambda_funcdef_lambda1(__pyx_self, ((PyObject *)__pyx_v_x)); - - /* function exit code */ - __Pyx_RefNannyFinishContext(); - return __pyx_r; -} - -static PyObject *__pyx_lambda_funcdef_lambda1(CYTHON_UNUSED PyObject *__pyx_self, PyObject *__pyx_v_x) { - PyObject *__pyx_r = NULL; - __Pyx_RefNannyDeclarations - PyObject *__pyx_t_1 = NULL; - PyObject *__pyx_t_2 = NULL; - PyObject *__pyx_t_3 = NULL; - __Pyx_RefNannySetupContext("lambda1", 0); - __Pyx_XDECREF(__pyx_r); - __pyx_t_2 = __Pyx_PyObject_GetAttrStr(__pyx_v_x, __pyx_n_s_encode); if (unlikely(!__pyx_t_2)) __PYX_ERR(0, 51, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_2); - __pyx_t_3 = NULL; - if (CYTHON_UNPACK_METHODS && likely(PyMethod_Check(__pyx_t_2))) { - __pyx_t_3 = PyMethod_GET_SELF(__pyx_t_2); - if (likely(__pyx_t_3)) { - PyObject* function = PyMethod_GET_FUNCTION(__pyx_t_2); - __Pyx_INCREF(__pyx_t_3); - __Pyx_INCREF(function); - __Pyx_DECREF_SET(__pyx_t_2, function); - } - } - __pyx_t_1 = (__pyx_t_3) ? __Pyx_PyObject_CallOneArg(__pyx_t_2, __pyx_t_3) : __Pyx_PyObject_CallNoArg(__pyx_t_2); - __Pyx_XDECREF(__pyx_t_3); __pyx_t_3 = 0; - if (unlikely(!__pyx_t_1)) __PYX_ERR(0, 51, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_1); - __Pyx_DECREF(__pyx_t_2); __pyx_t_2 = 0; - __pyx_r = __pyx_t_1; - __pyx_t_1 = 0; - goto __pyx_L0; - - /* function exit code */ - __pyx_L1_error:; - __Pyx_XDECREF(__pyx_t_1); - __Pyx_XDECREF(__pyx_t_2); - __Pyx_XDECREF(__pyx_t_3); - __Pyx_AddTraceback("pmercury.protocols.http_server.HTTP_Server.__init__.lambda1", __pyx_clineno, __pyx_lineno, __pyx_filename); - __pyx_r = NULL; - __pyx_L0:; - __Pyx_XGIVEREF(__pyx_r); - __Pyx_RefNannyFinishContext(); - return __pyx_r; -} - -/* "pmercury/protocols/http_server.pyx":18 - * class HTTP_Server(Protocol): - * - * def __init__(self, fp_database=None, config=None): # <<<<<<<<<<<<<< - * # populate fingerprint databases - * self.fp_db = {} - */ - -static PyObject *__pyx_pf_8pmercury_9protocols_11http_server_11HTTP_Server___init__(CYTHON_UNUSED PyObject *__pyx_self, PyObject *__pyx_v_self, CYTHON_UNUSED PyObject *__pyx_v_fp_database, PyObject *__pyx_v_config) { - PyObject *__pyx_v_c = NULL; - PyObject *__pyx_r = NULL; - __Pyx_RefNannyDeclarations - PyObject *__pyx_t_1 = NULL; - int __pyx_t_2; - int __pyx_t_3; - int __pyx_t_4; - PyObject *__pyx_t_5 = NULL; - PyObject *__pyx_t_6 = NULL; - int __pyx_t_7; - Py_ssize_t __pyx_t_8; - PyObject *(*__pyx_t_9)(PyObject *); - PyObject *__pyx_t_10 = NULL; - PyObject *__pyx_t_11 = NULL; - PyObject *__pyx_t_12 = NULL; - __Pyx_RefNannySetupContext("__init__", 0); - - /* "pmercury/protocols/http_server.pyx":20 - * def __init__(self, fp_database=None, config=None): - * # populate fingerprint databases - * self.fp_db = {} # <<<<<<<<<<<<<< - * - * # configuration - */ - __pyx_t_1 = __Pyx_PyDict_NewPresized(0); if (unlikely(!__pyx_t_1)) __PYX_ERR(0, 20, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_1); - if (__Pyx_PyObject_SetAttrStr(__pyx_v_self, __pyx_n_s_fp_db, __pyx_t_1) < 0) __PYX_ERR(0, 20, __pyx_L1_error) - __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0; - - /* "pmercury/protocols/http_server.pyx":23 - * - * # configuration - * HTTP_Server.all_headers = False # <<<<<<<<<<<<<< - * HTTP_Server.all_headers_and_data = False - * if config == None or 'http_server' not in config: - */ - __Pyx_GetModuleGlobalName(__pyx_t_1, __pyx_n_s_HTTP_Server); if (unlikely(!__pyx_t_1)) __PYX_ERR(0, 23, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_1); - if (__Pyx_PyObject_SetAttrStr(__pyx_t_1, __pyx_n_s_all_headers, Py_False) < 0) __PYX_ERR(0, 23, __pyx_L1_error) - __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0; - - /* "pmercury/protocols/http_server.pyx":24 - * # configuration - * HTTP_Server.all_headers = False - * HTTP_Server.all_headers_and_data = False # <<<<<<<<<<<<<< - * if config == None or 'http_server' not in config: - * HTTP_Server.static_names = set([b'appex-activity-id',b'cdnuuid',b'cf-ray',b'content-range',b'content-type', - */ - __Pyx_GetModuleGlobalName(__pyx_t_1, __pyx_n_s_HTTP_Server); if (unlikely(!__pyx_t_1)) __PYX_ERR(0, 24, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_1); - if (__Pyx_PyObject_SetAttrStr(__pyx_t_1, __pyx_n_s_all_headers_and_data, Py_False) < 0) __PYX_ERR(0, 24, __pyx_L1_error) - __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0; - - /* "pmercury/protocols/http_server.pyx":25 - * HTTP_Server.all_headers = False - * HTTP_Server.all_headers_and_data = False - * if config == None or 'http_server' not in config: # <<<<<<<<<<<<<< - * HTTP_Server.static_names = set([b'appex-activity-id',b'cdnuuid',b'cf-ray',b'content-range',b'content-type', - * b'date',b'etag',b'expires',b'flow_context',b'ms-cv',b'msregion',b'ms-requestid', - */ - __pyx_t_1 = PyObject_RichCompare(__pyx_v_config, Py_None, Py_EQ); __Pyx_XGOTREF(__pyx_t_1); if (unlikely(!__pyx_t_1)) __PYX_ERR(0, 25, __pyx_L1_error) - __pyx_t_3 = __Pyx_PyObject_IsTrue(__pyx_t_1); if (unlikely(__pyx_t_3 < 0)) __PYX_ERR(0, 25, __pyx_L1_error) - __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0; - if (!__pyx_t_3) { - } else { - __pyx_t_2 = __pyx_t_3; - goto __pyx_L4_bool_binop_done; - } - __pyx_t_3 = (__Pyx_PySequence_ContainsTF(__pyx_n_u_http_server, __pyx_v_config, Py_NE)); if (unlikely(__pyx_t_3 < 0)) __PYX_ERR(0, 25, __pyx_L1_error) - __pyx_t_4 = (__pyx_t_3 != 0); - __pyx_t_2 = __pyx_t_4; - __pyx_L4_bool_binop_done:; - if (__pyx_t_2) { - - /* "pmercury/protocols/http_server.pyx":26 - * HTTP_Server.all_headers_and_data = False - * if config == None or 'http_server' not in config: - * HTTP_Server.static_names = set([b'appex-activity-id',b'cdnuuid',b'cf-ray',b'content-range',b'content-type', # <<<<<<<<<<<<<< - * b'date',b'etag',b'expires',b'flow_context',b'ms-cv',b'msregion',b'ms-requestid', - * b'request-id',b'vary',b'x-amz-cf-pop',b'x-amz-request-id',b'x-azure-ref-originshield', - */ - __pyx_t_1 = PySet_New(0); if (unlikely(!__pyx_t_1)) __PYX_ERR(0, 26, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_1); - if (PySet_Add(__pyx_t_1, __pyx_kp_b_appex_activity_id) < 0) __PYX_ERR(0, 26, __pyx_L1_error) - if (PySet_Add(__pyx_t_1, __pyx_n_b_cdnuuid) < 0) __PYX_ERR(0, 26, __pyx_L1_error) - if (PySet_Add(__pyx_t_1, __pyx_kp_b_cf_ray) < 0) __PYX_ERR(0, 26, __pyx_L1_error) - if (PySet_Add(__pyx_t_1, __pyx_kp_b_content_range) < 0) __PYX_ERR(0, 26, __pyx_L1_error) - if (PySet_Add(__pyx_t_1, __pyx_kp_b_content_type) < 0) __PYX_ERR(0, 26, __pyx_L1_error) - if (PySet_Add(__pyx_t_1, __pyx_n_b_date) < 0) __PYX_ERR(0, 26, __pyx_L1_error) - if (PySet_Add(__pyx_t_1, __pyx_n_b_etag) < 0) __PYX_ERR(0, 26, __pyx_L1_error) - if (PySet_Add(__pyx_t_1, __pyx_n_b_expires) < 0) __PYX_ERR(0, 26, __pyx_L1_error) - if (PySet_Add(__pyx_t_1, __pyx_n_b_flow_context) < 0) __PYX_ERR(0, 26, __pyx_L1_error) - if (PySet_Add(__pyx_t_1, __pyx_kp_b_ms_cv) < 0) __PYX_ERR(0, 26, __pyx_L1_error) - if (PySet_Add(__pyx_t_1, __pyx_n_b_msregion) < 0) __PYX_ERR(0, 26, __pyx_L1_error) - if (PySet_Add(__pyx_t_1, __pyx_kp_b_ms_requestid) < 0) __PYX_ERR(0, 26, __pyx_L1_error) - if (PySet_Add(__pyx_t_1, __pyx_kp_b_request_id) < 0) __PYX_ERR(0, 26, __pyx_L1_error) - if (PySet_Add(__pyx_t_1, __pyx_n_b_vary) < 0) __PYX_ERR(0, 26, __pyx_L1_error) - if (PySet_Add(__pyx_t_1, __pyx_kp_b_x_amz_cf_pop) < 0) __PYX_ERR(0, 26, __pyx_L1_error) - if (PySet_Add(__pyx_t_1, __pyx_kp_b_x_amz_request_id) < 0) __PYX_ERR(0, 26, __pyx_L1_error) - if (PySet_Add(__pyx_t_1, __pyx_kp_b_x_azure_ref_originshield) < 0) __PYX_ERR(0, 26, __pyx_L1_error) - if (PySet_Add(__pyx_t_1, __pyx_kp_b_x_cache) < 0) __PYX_ERR(0, 26, __pyx_L1_error) - if (PySet_Add(__pyx_t_1, __pyx_kp_b_x_cache_hits) < 0) __PYX_ERR(0, 26, __pyx_L1_error) - if (PySet_Add(__pyx_t_1, __pyx_kp_b_x_ccc) < 0) __PYX_ERR(0, 26, __pyx_L1_error) - if (PySet_Add(__pyx_t_1, __pyx_kp_b_x_diagnostic_s) < 0) __PYX_ERR(0, 26, __pyx_L1_error) - if (PySet_Add(__pyx_t_1, __pyx_kp_b_x_feserver) < 0) __PYX_ERR(0, 26, __pyx_L1_error) - if (PySet_Add(__pyx_t_1, __pyx_kp_b_x_hw) < 0) __PYX_ERR(0, 26, __pyx_L1_error) - if (PySet_Add(__pyx_t_1, __pyx_kp_b_x_msedge_ref) < 0) __PYX_ERR(0, 26, __pyx_L1_error) - if (PySet_Add(__pyx_t_1, __pyx_kp_b_x_ocsp_responder_id) < 0) __PYX_ERR(0, 26, __pyx_L1_error) - if (PySet_Add(__pyx_t_1, __pyx_kp_b_x_requestid) < 0) __PYX_ERR(0, 26, __pyx_L1_error) - if (PySet_Add(__pyx_t_1, __pyx_kp_b_x_served_by) < 0) __PYX_ERR(0, 26, __pyx_L1_error) - if (PySet_Add(__pyx_t_1, __pyx_kp_b_x_timer) < 0) __PYX_ERR(0, 26, __pyx_L1_error) - if (PySet_Add(__pyx_t_1, __pyx_kp_b_x_trace_context) < 0) __PYX_ERR(0, 26, __pyx_L1_error) - __Pyx_GetModuleGlobalName(__pyx_t_5, __pyx_n_s_HTTP_Server); if (unlikely(!__pyx_t_5)) __PYX_ERR(0, 26, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_5); - if (__Pyx_PyObject_SetAttrStr(__pyx_t_5, __pyx_n_s_static_names, __pyx_t_1) < 0) __PYX_ERR(0, 26, __pyx_L1_error) - __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0; - __Pyx_DECREF(__pyx_t_5); __pyx_t_5 = 0; - - /* "pmercury/protocols/http_server.pyx":32 - * b'x-msedge-ref',b'x-ocsp-responder-id',b'x-requestid',b'x-served-by',b'x-timer', - * b'x-trace-context']) - * HTTP_Server.static_names_and_values = set([b'access-control-allow-credentials',b'access-control-allow-headers', # <<<<<<<<<<<<<< - * b'access-control-allow-methods',b'access-control-expose-headers', - * b'cache-control',b'connection',b'content-language',b'content-transfer-encoding', - */ - __pyx_t_5 = PySet_New(0); if (unlikely(!__pyx_t_5)) __PYX_ERR(0, 32, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_5); - if (PySet_Add(__pyx_t_5, __pyx_kp_b_access_control_allow_credentials) < 0) __PYX_ERR(0, 32, __pyx_L1_error) - if (PySet_Add(__pyx_t_5, __pyx_kp_b_access_control_allow_headers) < 0) __PYX_ERR(0, 32, __pyx_L1_error) - if (PySet_Add(__pyx_t_5, __pyx_kp_b_access_control_allow_methods) < 0) __PYX_ERR(0, 32, __pyx_L1_error) - if (PySet_Add(__pyx_t_5, __pyx_kp_b_access_control_expose_headers) < 0) __PYX_ERR(0, 32, __pyx_L1_error) - if (PySet_Add(__pyx_t_5, __pyx_kp_b_cache_control) < 0) __PYX_ERR(0, 32, __pyx_L1_error) - if (PySet_Add(__pyx_t_5, __pyx_n_b_connection) < 0) __PYX_ERR(0, 32, __pyx_L1_error) - if (PySet_Add(__pyx_t_5, __pyx_kp_b_content_language) < 0) __PYX_ERR(0, 32, __pyx_L1_error) - if (PySet_Add(__pyx_t_5, __pyx_kp_b_content_transfer_encoding) < 0) __PYX_ERR(0, 32, __pyx_L1_error) - if (PySet_Add(__pyx_t_5, __pyx_n_b_p3p) < 0) __PYX_ERR(0, 32, __pyx_L1_error) - if (PySet_Add(__pyx_t_5, __pyx_n_b_pragma) < 0) __PYX_ERR(0, 32, __pyx_L1_error) - if (PySet_Add(__pyx_t_5, __pyx_n_b_server) < 0) __PYX_ERR(0, 32, __pyx_L1_error) - if (PySet_Add(__pyx_t_5, __pyx_kp_b_strict_transport_security) < 0) __PYX_ERR(0, 32, __pyx_L1_error) - if (PySet_Add(__pyx_t_5, __pyx_kp_b_x_aspnetmvc_version) < 0) __PYX_ERR(0, 32, __pyx_L1_error) - if (PySet_Add(__pyx_t_5, __pyx_kp_b_x_aspnet_version) < 0) __PYX_ERR(0, 32, __pyx_L1_error) - if (PySet_Add(__pyx_t_5, __pyx_kp_b_x_cid) < 0) __PYX_ERR(0, 32, __pyx_L1_error) - if (PySet_Add(__pyx_t_5, __pyx_kp_b_x_ms_version) < 0) __PYX_ERR(0, 32, __pyx_L1_error) - if (PySet_Add(__pyx_t_5, __pyx_kp_b_x_xss_protection) < 0) __PYX_ERR(0, 32, __pyx_L1_error) - __Pyx_GetModuleGlobalName(__pyx_t_1, __pyx_n_s_HTTP_Server); if (unlikely(!__pyx_t_1)) __PYX_ERR(0, 32, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_1); - if (__Pyx_PyObject_SetAttrStr(__pyx_t_1, __pyx_n_s_static_names_and_values, __pyx_t_5) < 0) __PYX_ERR(0, 32, __pyx_L1_error) - __Pyx_DECREF(__pyx_t_5); __pyx_t_5 = 0; - __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0; - - /* "pmercury/protocols/http_server.pyx":37 - * b'p3p',b'pragma',b'server',b'strict-transport-security',b'x-aspnetmvc-version', - * b'x-aspnet-version',b'x-cid',b'x-ms-version',b'x-xss-protection']) - * HTTP_Server.headers_data = [0,1,2] # <<<<<<<<<<<<<< - * HTTP_Server.contextual_data = {b'via':'via'} - * else: - */ - __pyx_t_1 = PyList_New(3); if (unlikely(!__pyx_t_1)) __PYX_ERR(0, 37, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_1); - __Pyx_INCREF(__pyx_int_0); - __Pyx_GIVEREF(__pyx_int_0); - PyList_SET_ITEM(__pyx_t_1, 0, __pyx_int_0); - __Pyx_INCREF(__pyx_int_1); - __Pyx_GIVEREF(__pyx_int_1); - PyList_SET_ITEM(__pyx_t_1, 1, __pyx_int_1); - __Pyx_INCREF(__pyx_int_2); - __Pyx_GIVEREF(__pyx_int_2); - PyList_SET_ITEM(__pyx_t_1, 2, __pyx_int_2); - __Pyx_GetModuleGlobalName(__pyx_t_5, __pyx_n_s_HTTP_Server); if (unlikely(!__pyx_t_5)) __PYX_ERR(0, 37, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_5); - if (__Pyx_PyObject_SetAttrStr(__pyx_t_5, __pyx_n_s_headers_data, __pyx_t_1) < 0) __PYX_ERR(0, 37, __pyx_L1_error) - __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0; - __Pyx_DECREF(__pyx_t_5); __pyx_t_5 = 0; - - /* "pmercury/protocols/http_server.pyx":38 - * b'x-aspnet-version',b'x-cid',b'x-ms-version',b'x-xss-protection']) - * HTTP_Server.headers_data = [0,1,2] - * HTTP_Server.contextual_data = {b'via':'via'} # <<<<<<<<<<<<<< - * else: - * HTTP_Server.static_names = set([]) - */ - __pyx_t_5 = __Pyx_PyDict_NewPresized(1); if (unlikely(!__pyx_t_5)) __PYX_ERR(0, 38, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_5); - if (PyDict_SetItem(__pyx_t_5, __pyx_n_b_via, __pyx_n_u_via) < 0) __PYX_ERR(0, 38, __pyx_L1_error) - __Pyx_GetModuleGlobalName(__pyx_t_1, __pyx_n_s_HTTP_Server); if (unlikely(!__pyx_t_1)) __PYX_ERR(0, 38, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_1); - if (__Pyx_PyObject_SetAttrStr(__pyx_t_1, __pyx_n_s_contextual_data, __pyx_t_5) < 0) __PYX_ERR(0, 38, __pyx_L1_error) - __Pyx_DECREF(__pyx_t_5); __pyx_t_5 = 0; - __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0; - - /* "pmercury/protocols/http_server.pyx":25 - * HTTP_Server.all_headers = False - * HTTP_Server.all_headers_and_data = False - * if config == None or 'http_server' not in config: # <<<<<<<<<<<<<< - * HTTP_Server.static_names = set([b'appex-activity-id',b'cdnuuid',b'cf-ray',b'content-range',b'content-type', - * b'date',b'etag',b'expires',b'flow_context',b'ms-cv',b'msregion',b'ms-requestid', - */ - goto __pyx_L3; - } - - /* "pmercury/protocols/http_server.pyx":40 - * HTTP_Server.contextual_data = {b'via':'via'} - * else: - * HTTP_Server.static_names = set([]) # <<<<<<<<<<<<<< - * HTTP_Server.static_names_and_values = set([]) - * HTTP_Server.headers_data = [] - */ - /*else*/ { - __pyx_t_1 = PySet_New(0); if (unlikely(!__pyx_t_1)) __PYX_ERR(0, 40, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_1); - __Pyx_GetModuleGlobalName(__pyx_t_5, __pyx_n_s_HTTP_Server); if (unlikely(!__pyx_t_5)) __PYX_ERR(0, 40, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_5); - if (__Pyx_PyObject_SetAttrStr(__pyx_t_5, __pyx_n_s_static_names, __pyx_t_1) < 0) __PYX_ERR(0, 40, __pyx_L1_error) - __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0; - __Pyx_DECREF(__pyx_t_5); __pyx_t_5 = 0; - - /* "pmercury/protocols/http_server.pyx":41 - * else: - * HTTP_Server.static_names = set([]) - * HTTP_Server.static_names_and_values = set([]) # <<<<<<<<<<<<<< - * HTTP_Server.headers_data = [] - * HTTP_Server.contextual_data = {} - */ - __pyx_t_5 = PySet_New(0); if (unlikely(!__pyx_t_5)) __PYX_ERR(0, 41, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_5); - __Pyx_GetModuleGlobalName(__pyx_t_1, __pyx_n_s_HTTP_Server); if (unlikely(!__pyx_t_1)) __PYX_ERR(0, 41, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_1); - if (__Pyx_PyObject_SetAttrStr(__pyx_t_1, __pyx_n_s_static_names_and_values, __pyx_t_5) < 0) __PYX_ERR(0, 41, __pyx_L1_error) - __Pyx_DECREF(__pyx_t_5); __pyx_t_5 = 0; - __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0; - - /* "pmercury/protocols/http_server.pyx":42 - * HTTP_Server.static_names = set([]) - * HTTP_Server.static_names_and_values = set([]) - * HTTP_Server.headers_data = [] # <<<<<<<<<<<<<< - * HTTP_Server.contextual_data = {} - * if 'static_names' in config['http_server']: - */ - __pyx_t_1 = PyList_New(0); if (unlikely(!__pyx_t_1)) __PYX_ERR(0, 42, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_1); - __Pyx_GetModuleGlobalName(__pyx_t_5, __pyx_n_s_HTTP_Server); if (unlikely(!__pyx_t_5)) __PYX_ERR(0, 42, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_5); - if (__Pyx_PyObject_SetAttrStr(__pyx_t_5, __pyx_n_s_headers_data, __pyx_t_1) < 0) __PYX_ERR(0, 42, __pyx_L1_error) - __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0; - __Pyx_DECREF(__pyx_t_5); __pyx_t_5 = 0; - - /* "pmercury/protocols/http_server.pyx":43 - * HTTP_Server.static_names_and_values = set([]) - * HTTP_Server.headers_data = [] - * HTTP_Server.contextual_data = {} # <<<<<<<<<<<<<< - * if 'static_names' in config['http_server']: - * if config['http_server']['static_names'] == ['*']: - */ - __pyx_t_5 = __Pyx_PyDict_NewPresized(0); if (unlikely(!__pyx_t_5)) __PYX_ERR(0, 43, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_5); - __Pyx_GetModuleGlobalName(__pyx_t_1, __pyx_n_s_HTTP_Server); if (unlikely(!__pyx_t_1)) __PYX_ERR(0, 43, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_1); - if (__Pyx_PyObject_SetAttrStr(__pyx_t_1, __pyx_n_s_contextual_data, __pyx_t_5) < 0) __PYX_ERR(0, 43, __pyx_L1_error) - __Pyx_DECREF(__pyx_t_5); __pyx_t_5 = 0; - __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0; - - /* "pmercury/protocols/http_server.pyx":44 - * HTTP_Server.headers_data = [] - * HTTP_Server.contextual_data = {} - * if 'static_names' in config['http_server']: # <<<<<<<<<<<<<< - * if config['http_server']['static_names'] == ['*']: - * HTTP_Server.all_headers = True - */ - __pyx_t_1 = __Pyx_PyObject_Dict_GetItem(__pyx_v_config, __pyx_n_u_http_server); if (unlikely(!__pyx_t_1)) __PYX_ERR(0, 44, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_1); - __pyx_t_2 = (__Pyx_PySequence_ContainsTF(__pyx_n_u_static_names, __pyx_t_1, Py_EQ)); if (unlikely(__pyx_t_2 < 0)) __PYX_ERR(0, 44, __pyx_L1_error) - __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0; - __pyx_t_4 = (__pyx_t_2 != 0); - if (__pyx_t_4) { - - /* "pmercury/protocols/http_server.pyx":45 - * HTTP_Server.contextual_data = {} - * if 'static_names' in config['http_server']: - * if config['http_server']['static_names'] == ['*']: # <<<<<<<<<<<<<< - * HTTP_Server.all_headers = True - * HTTP_Server.static_names = set(map(lambda x: x.encode(), config['http_server']['static_names'])) - */ - __pyx_t_1 = __Pyx_PyObject_Dict_GetItem(__pyx_v_config, __pyx_n_u_http_server); if (unlikely(!__pyx_t_1)) __PYX_ERR(0, 45, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_1); - __pyx_t_5 = __Pyx_PyObject_Dict_GetItem(__pyx_t_1, __pyx_n_u_static_names); if (unlikely(!__pyx_t_5)) __PYX_ERR(0, 45, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_5); - __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0; - __pyx_t_1 = PyList_New(1); if (unlikely(!__pyx_t_1)) __PYX_ERR(0, 45, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_1); - __Pyx_INCREF(__pyx_kp_u_); - __Pyx_GIVEREF(__pyx_kp_u_); - PyList_SET_ITEM(__pyx_t_1, 0, __pyx_kp_u_); - __pyx_t_6 = PyObject_RichCompare(__pyx_t_5, __pyx_t_1, Py_EQ); __Pyx_XGOTREF(__pyx_t_6); if (unlikely(!__pyx_t_6)) __PYX_ERR(0, 45, __pyx_L1_error) - __Pyx_DECREF(__pyx_t_5); __pyx_t_5 = 0; - __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0; - __pyx_t_4 = __Pyx_PyObject_IsTrue(__pyx_t_6); if (unlikely(__pyx_t_4 < 0)) __PYX_ERR(0, 45, __pyx_L1_error) - __Pyx_DECREF(__pyx_t_6); __pyx_t_6 = 0; - if (__pyx_t_4) { - - /* "pmercury/protocols/http_server.pyx":46 - * if 'static_names' in config['http_server']: - * if config['http_server']['static_names'] == ['*']: - * HTTP_Server.all_headers = True # <<<<<<<<<<<<<< - * HTTP_Server.static_names = set(map(lambda x: x.encode(), config['http_server']['static_names'])) - * if 'static_names_and_values' in config['http_server']: - */ - __Pyx_GetModuleGlobalName(__pyx_t_6, __pyx_n_s_HTTP_Server); if (unlikely(!__pyx_t_6)) __PYX_ERR(0, 46, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_6); - if (__Pyx_PyObject_SetAttrStr(__pyx_t_6, __pyx_n_s_all_headers, Py_True) < 0) __PYX_ERR(0, 46, __pyx_L1_error) - __Pyx_DECREF(__pyx_t_6); __pyx_t_6 = 0; - - /* "pmercury/protocols/http_server.pyx":45 - * HTTP_Server.contextual_data = {} - * if 'static_names' in config['http_server']: - * if config['http_server']['static_names'] == ['*']: # <<<<<<<<<<<<<< - * HTTP_Server.all_headers = True - * HTTP_Server.static_names = set(map(lambda x: x.encode(), config['http_server']['static_names'])) - */ - } - - /* "pmercury/protocols/http_server.pyx":47 - * if config['http_server']['static_names'] == ['*']: - * HTTP_Server.all_headers = True - * HTTP_Server.static_names = set(map(lambda x: x.encode(), config['http_server']['static_names'])) # <<<<<<<<<<<<<< - * if 'static_names_and_values' in config['http_server']: - * if config['http_server']['static_names_and_values'] == ['*']: - */ - __pyx_t_6 = __Pyx_CyFunction_NewEx(&__pyx_mdef_8pmercury_9protocols_11http_server_11HTTP_Server_8__init___lambda, 0, __pyx_n_s_HTTP_Server___init___locals_lamb, NULL, __pyx_n_s_pmercury_protocols_http_server, __pyx_d, NULL); if (unlikely(!__pyx_t_6)) __PYX_ERR(0, 47, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_6); - __pyx_t_1 = __Pyx_PyObject_Dict_GetItem(__pyx_v_config, __pyx_n_u_http_server); if (unlikely(!__pyx_t_1)) __PYX_ERR(0, 47, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_1); - __pyx_t_5 = __Pyx_PyObject_Dict_GetItem(__pyx_t_1, __pyx_n_u_static_names); if (unlikely(!__pyx_t_5)) __PYX_ERR(0, 47, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_5); - __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0; - __pyx_t_1 = PyTuple_New(2); if (unlikely(!__pyx_t_1)) __PYX_ERR(0, 47, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_1); - __Pyx_GIVEREF(__pyx_t_6); - PyTuple_SET_ITEM(__pyx_t_1, 0, __pyx_t_6); - __Pyx_GIVEREF(__pyx_t_5); - PyTuple_SET_ITEM(__pyx_t_1, 1, __pyx_t_5); - __pyx_t_6 = 0; - __pyx_t_5 = 0; - __pyx_t_5 = __Pyx_PyObject_Call(__pyx_builtin_map, __pyx_t_1, NULL); if (unlikely(!__pyx_t_5)) __PYX_ERR(0, 47, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_5); - __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0; - __pyx_t_1 = PySet_New(__pyx_t_5); if (unlikely(!__pyx_t_1)) __PYX_ERR(0, 47, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_1); - __Pyx_DECREF(__pyx_t_5); __pyx_t_5 = 0; - __Pyx_GetModuleGlobalName(__pyx_t_5, __pyx_n_s_HTTP_Server); if (unlikely(!__pyx_t_5)) __PYX_ERR(0, 47, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_5); - if (__Pyx_PyObject_SetAttrStr(__pyx_t_5, __pyx_n_s_static_names, __pyx_t_1) < 0) __PYX_ERR(0, 47, __pyx_L1_error) - __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0; - __Pyx_DECREF(__pyx_t_5); __pyx_t_5 = 0; - - /* "pmercury/protocols/http_server.pyx":44 - * HTTP_Server.headers_data = [] - * HTTP_Server.contextual_data = {} - * if 'static_names' in config['http_server']: # <<<<<<<<<<<<<< - * if config['http_server']['static_names'] == ['*']: - * HTTP_Server.all_headers = True - */ - } - - /* "pmercury/protocols/http_server.pyx":48 - * HTTP_Server.all_headers = True - * HTTP_Server.static_names = set(map(lambda x: x.encode(), config['http_server']['static_names'])) - * if 'static_names_and_values' in config['http_server']: # <<<<<<<<<<<<<< - * if config['http_server']['static_names_and_values'] == ['*']: - * HTTP_Server.all_headers_and_data = True - */ - __pyx_t_5 = __Pyx_PyObject_Dict_GetItem(__pyx_v_config, __pyx_n_u_http_server); if (unlikely(!__pyx_t_5)) __PYX_ERR(0, 48, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_5); - __pyx_t_4 = (__Pyx_PySequence_ContainsTF(__pyx_n_u_static_names_and_values, __pyx_t_5, Py_EQ)); if (unlikely(__pyx_t_4 < 0)) __PYX_ERR(0, 48, __pyx_L1_error) - __Pyx_DECREF(__pyx_t_5); __pyx_t_5 = 0; - __pyx_t_2 = (__pyx_t_4 != 0); - if (__pyx_t_2) { - - /* "pmercury/protocols/http_server.pyx":49 - * HTTP_Server.static_names = set(map(lambda x: x.encode(), config['http_server']['static_names'])) - * if 'static_names_and_values' in config['http_server']: - * if config['http_server']['static_names_and_values'] == ['*']: # <<<<<<<<<<<<<< - * HTTP_Server.all_headers_and_data = True - * HTTP_Server.static_names_and_values = set(map(lambda x: x.encode(), config['http_server']['static_names_and_values'])) - */ - __pyx_t_5 = __Pyx_PyObject_Dict_GetItem(__pyx_v_config, __pyx_n_u_http_server); if (unlikely(!__pyx_t_5)) __PYX_ERR(0, 49, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_5); - __pyx_t_1 = __Pyx_PyObject_Dict_GetItem(__pyx_t_5, __pyx_n_u_static_names_and_values); if (unlikely(!__pyx_t_1)) __PYX_ERR(0, 49, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_1); - __Pyx_DECREF(__pyx_t_5); __pyx_t_5 = 0; - __pyx_t_5 = PyList_New(1); if (unlikely(!__pyx_t_5)) __PYX_ERR(0, 49, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_5); - __Pyx_INCREF(__pyx_kp_u_); - __Pyx_GIVEREF(__pyx_kp_u_); - PyList_SET_ITEM(__pyx_t_5, 0, __pyx_kp_u_); - __pyx_t_6 = PyObject_RichCompare(__pyx_t_1, __pyx_t_5, Py_EQ); __Pyx_XGOTREF(__pyx_t_6); if (unlikely(!__pyx_t_6)) __PYX_ERR(0, 49, __pyx_L1_error) - __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0; - __Pyx_DECREF(__pyx_t_5); __pyx_t_5 = 0; - __pyx_t_2 = __Pyx_PyObject_IsTrue(__pyx_t_6); if (unlikely(__pyx_t_2 < 0)) __PYX_ERR(0, 49, __pyx_L1_error) - __Pyx_DECREF(__pyx_t_6); __pyx_t_6 = 0; - if (__pyx_t_2) { - - /* "pmercury/protocols/http_server.pyx":50 - * if 'static_names_and_values' in config['http_server']: - * if config['http_server']['static_names_and_values'] == ['*']: - * HTTP_Server.all_headers_and_data = True # <<<<<<<<<<<<<< - * HTTP_Server.static_names_and_values = set(map(lambda x: x.encode(), config['http_server']['static_names_and_values'])) - * if 'preamble' in config['http_server']: - */ - __Pyx_GetModuleGlobalName(__pyx_t_6, __pyx_n_s_HTTP_Server); if (unlikely(!__pyx_t_6)) __PYX_ERR(0, 50, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_6); - if (__Pyx_PyObject_SetAttrStr(__pyx_t_6, __pyx_n_s_all_headers_and_data, Py_True) < 0) __PYX_ERR(0, 50, __pyx_L1_error) - __Pyx_DECREF(__pyx_t_6); __pyx_t_6 = 0; - - /* "pmercury/protocols/http_server.pyx":49 - * HTTP_Server.static_names = set(map(lambda x: x.encode(), config['http_server']['static_names'])) - * if 'static_names_and_values' in config['http_server']: - * if config['http_server']['static_names_and_values'] == ['*']: # <<<<<<<<<<<<<< - * HTTP_Server.all_headers_and_data = True - * HTTP_Server.static_names_and_values = set(map(lambda x: x.encode(), config['http_server']['static_names_and_values'])) - */ - } - - /* "pmercury/protocols/http_server.pyx":51 - * if config['http_server']['static_names_and_values'] == ['*']: - * HTTP_Server.all_headers_and_data = True - * HTTP_Server.static_names_and_values = set(map(lambda x: x.encode(), config['http_server']['static_names_and_values'])) # <<<<<<<<<<<<<< - * if 'preamble' in config['http_server']: - * if 'version' in config['http_server']['preamble']: - */ - __pyx_t_6 = __Pyx_CyFunction_NewEx(&__pyx_mdef_8pmercury_9protocols_11http_server_11HTTP_Server_8__init___1lambda1, 0, __pyx_n_s_HTTP_Server___init___locals_lamb, NULL, __pyx_n_s_pmercury_protocols_http_server, __pyx_d, NULL); if (unlikely(!__pyx_t_6)) __PYX_ERR(0, 51, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_6); - __pyx_t_5 = __Pyx_PyObject_Dict_GetItem(__pyx_v_config, __pyx_n_u_http_server); if (unlikely(!__pyx_t_5)) __PYX_ERR(0, 51, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_5); - __pyx_t_1 = __Pyx_PyObject_Dict_GetItem(__pyx_t_5, __pyx_n_u_static_names_and_values); if (unlikely(!__pyx_t_1)) __PYX_ERR(0, 51, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_1); - __Pyx_DECREF(__pyx_t_5); __pyx_t_5 = 0; - __pyx_t_5 = PyTuple_New(2); if (unlikely(!__pyx_t_5)) __PYX_ERR(0, 51, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_5); - __Pyx_GIVEREF(__pyx_t_6); - PyTuple_SET_ITEM(__pyx_t_5, 0, __pyx_t_6); - __Pyx_GIVEREF(__pyx_t_1); - PyTuple_SET_ITEM(__pyx_t_5, 1, __pyx_t_1); - __pyx_t_6 = 0; - __pyx_t_1 = 0; - __pyx_t_1 = __Pyx_PyObject_Call(__pyx_builtin_map, __pyx_t_5, NULL); if (unlikely(!__pyx_t_1)) __PYX_ERR(0, 51, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_1); - __Pyx_DECREF(__pyx_t_5); __pyx_t_5 = 0; - __pyx_t_5 = PySet_New(__pyx_t_1); if (unlikely(!__pyx_t_5)) __PYX_ERR(0, 51, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_5); - __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0; - __Pyx_GetModuleGlobalName(__pyx_t_1, __pyx_n_s_HTTP_Server); if (unlikely(!__pyx_t_1)) __PYX_ERR(0, 51, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_1); - if (__Pyx_PyObject_SetAttrStr(__pyx_t_1, __pyx_n_s_static_names_and_values, __pyx_t_5) < 0) __PYX_ERR(0, 51, __pyx_L1_error) - __Pyx_DECREF(__pyx_t_5); __pyx_t_5 = 0; - __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0; - - /* "pmercury/protocols/http_server.pyx":48 - * HTTP_Server.all_headers = True - * HTTP_Server.static_names = set(map(lambda x: x.encode(), config['http_server']['static_names'])) - * if 'static_names_and_values' in config['http_server']: # <<<<<<<<<<<<<< - * if config['http_server']['static_names_and_values'] == ['*']: - * HTTP_Server.all_headers_and_data = True - */ - } - - /* "pmercury/protocols/http_server.pyx":52 - * HTTP_Server.all_headers_and_data = True - * HTTP_Server.static_names_and_values = set(map(lambda x: x.encode(), config['http_server']['static_names_and_values'])) - * if 'preamble' in config['http_server']: # <<<<<<<<<<<<<< - * if 'version' in config['http_server']['preamble']: - * HTTP_Server.headers_data.append(0) - */ - __pyx_t_1 = __Pyx_PyObject_Dict_GetItem(__pyx_v_config, __pyx_n_u_http_server); if (unlikely(!__pyx_t_1)) __PYX_ERR(0, 52, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_1); - __pyx_t_2 = (__Pyx_PySequence_ContainsTF(__pyx_n_u_preamble, __pyx_t_1, Py_EQ)); if (unlikely(__pyx_t_2 < 0)) __PYX_ERR(0, 52, __pyx_L1_error) - __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0; - __pyx_t_4 = (__pyx_t_2 != 0); - if (__pyx_t_4) { - - /* "pmercury/protocols/http_server.pyx":53 - * HTTP_Server.static_names_and_values = set(map(lambda x: x.encode(), config['http_server']['static_names_and_values'])) - * if 'preamble' in config['http_server']: - * if 'version' in config['http_server']['preamble']: # <<<<<<<<<<<<<< - * HTTP_Server.headers_data.append(0) - * if 'code' in config['http_server']['preamble']: - */ - __pyx_t_1 = __Pyx_PyObject_Dict_GetItem(__pyx_v_config, __pyx_n_u_http_server); if (unlikely(!__pyx_t_1)) __PYX_ERR(0, 53, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_1); - __pyx_t_5 = __Pyx_PyObject_Dict_GetItem(__pyx_t_1, __pyx_n_u_preamble); if (unlikely(!__pyx_t_5)) __PYX_ERR(0, 53, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_5); - __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0; - __pyx_t_4 = (__Pyx_PySequence_ContainsTF(__pyx_n_u_version, __pyx_t_5, Py_EQ)); if (unlikely(__pyx_t_4 < 0)) __PYX_ERR(0, 53, __pyx_L1_error) - __Pyx_DECREF(__pyx_t_5); __pyx_t_5 = 0; - __pyx_t_2 = (__pyx_t_4 != 0); - if (__pyx_t_2) { - - /* "pmercury/protocols/http_server.pyx":54 - * if 'preamble' in config['http_server']: - * if 'version' in config['http_server']['preamble']: - * HTTP_Server.headers_data.append(0) # <<<<<<<<<<<<<< - * if 'code' in config['http_server']['preamble']: - * HTTP_Server.headers_data.append(1) - */ - __Pyx_GetModuleGlobalName(__pyx_t_5, __pyx_n_s_HTTP_Server); if (unlikely(!__pyx_t_5)) __PYX_ERR(0, 54, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_5); - __pyx_t_1 = __Pyx_PyObject_GetAttrStr(__pyx_t_5, __pyx_n_s_headers_data); if (unlikely(!__pyx_t_1)) __PYX_ERR(0, 54, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_1); - __Pyx_DECREF(__pyx_t_5); __pyx_t_5 = 0; - __pyx_t_7 = __Pyx_PyObject_Append(__pyx_t_1, __pyx_int_0); if (unlikely(__pyx_t_7 == ((int)-1))) __PYX_ERR(0, 54, __pyx_L1_error) - __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0; - - /* "pmercury/protocols/http_server.pyx":53 - * HTTP_Server.static_names_and_values = set(map(lambda x: x.encode(), config['http_server']['static_names_and_values'])) - * if 'preamble' in config['http_server']: - * if 'version' in config['http_server']['preamble']: # <<<<<<<<<<<<<< - * HTTP_Server.headers_data.append(0) - * if 'code' in config['http_server']['preamble']: - */ - } - - /* "pmercury/protocols/http_server.pyx":55 - * if 'version' in config['http_server']['preamble']: - * HTTP_Server.headers_data.append(0) - * if 'code' in config['http_server']['preamble']: # <<<<<<<<<<<<<< - * HTTP_Server.headers_data.append(1) - * if 'reason' in config['http_server']['preamble']: - */ - __pyx_t_1 = __Pyx_PyObject_Dict_GetItem(__pyx_v_config, __pyx_n_u_http_server); if (unlikely(!__pyx_t_1)) __PYX_ERR(0, 55, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_1); - __pyx_t_5 = __Pyx_PyObject_Dict_GetItem(__pyx_t_1, __pyx_n_u_preamble); if (unlikely(!__pyx_t_5)) __PYX_ERR(0, 55, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_5); - __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0; - __pyx_t_2 = (__Pyx_PySequence_ContainsTF(__pyx_n_u_code, __pyx_t_5, Py_EQ)); if (unlikely(__pyx_t_2 < 0)) __PYX_ERR(0, 55, __pyx_L1_error) - __Pyx_DECREF(__pyx_t_5); __pyx_t_5 = 0; - __pyx_t_4 = (__pyx_t_2 != 0); - if (__pyx_t_4) { - - /* "pmercury/protocols/http_server.pyx":56 - * HTTP_Server.headers_data.append(0) - * if 'code' in config['http_server']['preamble']: - * HTTP_Server.headers_data.append(1) # <<<<<<<<<<<<<< - * if 'reason' in config['http_server']['preamble']: - * HTTP_Server.headers_data.append(2) - */ - __Pyx_GetModuleGlobalName(__pyx_t_5, __pyx_n_s_HTTP_Server); if (unlikely(!__pyx_t_5)) __PYX_ERR(0, 56, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_5); - __pyx_t_1 = __Pyx_PyObject_GetAttrStr(__pyx_t_5, __pyx_n_s_headers_data); if (unlikely(!__pyx_t_1)) __PYX_ERR(0, 56, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_1); - __Pyx_DECREF(__pyx_t_5); __pyx_t_5 = 0; - __pyx_t_7 = __Pyx_PyObject_Append(__pyx_t_1, __pyx_int_1); if (unlikely(__pyx_t_7 == ((int)-1))) __PYX_ERR(0, 56, __pyx_L1_error) - __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0; - - /* "pmercury/protocols/http_server.pyx":55 - * if 'version' in config['http_server']['preamble']: - * HTTP_Server.headers_data.append(0) - * if 'code' in config['http_server']['preamble']: # <<<<<<<<<<<<<< - * HTTP_Server.headers_data.append(1) - * if 'reason' in config['http_server']['preamble']: - */ - } - - /* "pmercury/protocols/http_server.pyx":57 - * if 'code' in config['http_server']['preamble']: - * HTTP_Server.headers_data.append(1) - * if 'reason' in config['http_server']['preamble']: # <<<<<<<<<<<<<< - * HTTP_Server.headers_data.append(2) - * if '*' in config['http_server']['preamble']: - */ - __pyx_t_1 = __Pyx_PyObject_Dict_GetItem(__pyx_v_config, __pyx_n_u_http_server); if (unlikely(!__pyx_t_1)) __PYX_ERR(0, 57, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_1); - __pyx_t_5 = __Pyx_PyObject_Dict_GetItem(__pyx_t_1, __pyx_n_u_preamble); if (unlikely(!__pyx_t_5)) __PYX_ERR(0, 57, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_5); - __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0; - __pyx_t_4 = (__Pyx_PySequence_ContainsTF(__pyx_n_u_reason, __pyx_t_5, Py_EQ)); if (unlikely(__pyx_t_4 < 0)) __PYX_ERR(0, 57, __pyx_L1_error) - __Pyx_DECREF(__pyx_t_5); __pyx_t_5 = 0; - __pyx_t_2 = (__pyx_t_4 != 0); - if (__pyx_t_2) { - - /* "pmercury/protocols/http_server.pyx":58 - * HTTP_Server.headers_data.append(1) - * if 'reason' in config['http_server']['preamble']: - * HTTP_Server.headers_data.append(2) # <<<<<<<<<<<<<< - * if '*' in config['http_server']['preamble']: - * HTTP_Server.headers_data = [0,1,2] - */ - __Pyx_GetModuleGlobalName(__pyx_t_5, __pyx_n_s_HTTP_Server); if (unlikely(!__pyx_t_5)) __PYX_ERR(0, 58, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_5); - __pyx_t_1 = __Pyx_PyObject_GetAttrStr(__pyx_t_5, __pyx_n_s_headers_data); if (unlikely(!__pyx_t_1)) __PYX_ERR(0, 58, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_1); - __Pyx_DECREF(__pyx_t_5); __pyx_t_5 = 0; - __pyx_t_7 = __Pyx_PyObject_Append(__pyx_t_1, __pyx_int_2); if (unlikely(__pyx_t_7 == ((int)-1))) __PYX_ERR(0, 58, __pyx_L1_error) - __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0; - - /* "pmercury/protocols/http_server.pyx":57 - * if 'code' in config['http_server']['preamble']: - * HTTP_Server.headers_data.append(1) - * if 'reason' in config['http_server']['preamble']: # <<<<<<<<<<<<<< - * HTTP_Server.headers_data.append(2) - * if '*' in config['http_server']['preamble']: - */ - } - - /* "pmercury/protocols/http_server.pyx":59 - * if 'reason' in config['http_server']['preamble']: - * HTTP_Server.headers_data.append(2) - * if '*' in config['http_server']['preamble']: # <<<<<<<<<<<<<< - * HTTP_Server.headers_data = [0,1,2] - * if 'context' in config['http_server']: - */ - __pyx_t_1 = __Pyx_PyObject_Dict_GetItem(__pyx_v_config, __pyx_n_u_http_server); if (unlikely(!__pyx_t_1)) __PYX_ERR(0, 59, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_1); - __pyx_t_5 = __Pyx_PyObject_Dict_GetItem(__pyx_t_1, __pyx_n_u_preamble); if (unlikely(!__pyx_t_5)) __PYX_ERR(0, 59, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_5); - __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0; - __pyx_t_2 = (__Pyx_PySequence_ContainsTF(__pyx_kp_u_, __pyx_t_5, Py_EQ)); if (unlikely(__pyx_t_2 < 0)) __PYX_ERR(0, 59, __pyx_L1_error) - __Pyx_DECREF(__pyx_t_5); __pyx_t_5 = 0; - __pyx_t_4 = (__pyx_t_2 != 0); - if (__pyx_t_4) { - - /* "pmercury/protocols/http_server.pyx":60 - * HTTP_Server.headers_data.append(2) - * if '*' in config['http_server']['preamble']: - * HTTP_Server.headers_data = [0,1,2] # <<<<<<<<<<<<<< - * if 'context' in config['http_server']: - * for c in config['http_server']['context']: - */ - __pyx_t_5 = PyList_New(3); if (unlikely(!__pyx_t_5)) __PYX_ERR(0, 60, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_5); - __Pyx_INCREF(__pyx_int_0); - __Pyx_GIVEREF(__pyx_int_0); - PyList_SET_ITEM(__pyx_t_5, 0, __pyx_int_0); - __Pyx_INCREF(__pyx_int_1); - __Pyx_GIVEREF(__pyx_int_1); - PyList_SET_ITEM(__pyx_t_5, 1, __pyx_int_1); - __Pyx_INCREF(__pyx_int_2); - __Pyx_GIVEREF(__pyx_int_2); - PyList_SET_ITEM(__pyx_t_5, 2, __pyx_int_2); - __Pyx_GetModuleGlobalName(__pyx_t_1, __pyx_n_s_HTTP_Server); if (unlikely(!__pyx_t_1)) __PYX_ERR(0, 60, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_1); - if (__Pyx_PyObject_SetAttrStr(__pyx_t_1, __pyx_n_s_headers_data, __pyx_t_5) < 0) __PYX_ERR(0, 60, __pyx_L1_error) - __Pyx_DECREF(__pyx_t_5); __pyx_t_5 = 0; - __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0; - - /* "pmercury/protocols/http_server.pyx":59 - * if 'reason' in config['http_server']['preamble']: - * HTTP_Server.headers_data.append(2) - * if '*' in config['http_server']['preamble']: # <<<<<<<<<<<<<< - * HTTP_Server.headers_data = [0,1,2] - * if 'context' in config['http_server']: - */ - } - - /* "pmercury/protocols/http_server.pyx":52 - * HTTP_Server.all_headers_and_data = True - * HTTP_Server.static_names_and_values = set(map(lambda x: x.encode(), config['http_server']['static_names_and_values'])) - * if 'preamble' in config['http_server']: # <<<<<<<<<<<<<< - * if 'version' in config['http_server']['preamble']: - * HTTP_Server.headers_data.append(0) - */ - } - - /* "pmercury/protocols/http_server.pyx":61 - * if '*' in config['http_server']['preamble']: - * HTTP_Server.headers_data = [0,1,2] - * if 'context' in config['http_server']: # <<<<<<<<<<<<<< - * for c in config['http_server']['context']: - * HTTP_Server.contextual_data[c.encode()] = c.lower().replace('-','_') - */ - __pyx_t_1 = __Pyx_PyObject_Dict_GetItem(__pyx_v_config, __pyx_n_u_http_server); if (unlikely(!__pyx_t_1)) __PYX_ERR(0, 61, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_1); - __pyx_t_4 = (__Pyx_PySequence_ContainsTF(__pyx_n_u_context, __pyx_t_1, Py_EQ)); if (unlikely(__pyx_t_4 < 0)) __PYX_ERR(0, 61, __pyx_L1_error) - __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0; - __pyx_t_2 = (__pyx_t_4 != 0); - if (__pyx_t_2) { - - /* "pmercury/protocols/http_server.pyx":62 - * HTTP_Server.headers_data = [0,1,2] - * if 'context' in config['http_server']: - * for c in config['http_server']['context']: # <<<<<<<<<<<<<< - * HTTP_Server.contextual_data[c.encode()] = c.lower().replace('-','_') - * - */ - __pyx_t_1 = __Pyx_PyObject_Dict_GetItem(__pyx_v_config, __pyx_n_u_http_server); if (unlikely(!__pyx_t_1)) __PYX_ERR(0, 62, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_1); - __pyx_t_5 = __Pyx_PyObject_Dict_GetItem(__pyx_t_1, __pyx_n_u_context); if (unlikely(!__pyx_t_5)) __PYX_ERR(0, 62, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_5); - __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0; - if (likely(PyList_CheckExact(__pyx_t_5)) || PyTuple_CheckExact(__pyx_t_5)) { - __pyx_t_1 = __pyx_t_5; __Pyx_INCREF(__pyx_t_1); __pyx_t_8 = 0; - __pyx_t_9 = NULL; - } else { - __pyx_t_8 = -1; __pyx_t_1 = PyObject_GetIter(__pyx_t_5); if (unlikely(!__pyx_t_1)) __PYX_ERR(0, 62, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_1); - __pyx_t_9 = Py_TYPE(__pyx_t_1)->tp_iternext; if (unlikely(!__pyx_t_9)) __PYX_ERR(0, 62, __pyx_L1_error) - } - __Pyx_DECREF(__pyx_t_5); __pyx_t_5 = 0; - for (;;) { - if (likely(!__pyx_t_9)) { - if (likely(PyList_CheckExact(__pyx_t_1))) { - if (__pyx_t_8 >= PyList_GET_SIZE(__pyx_t_1)) break; - #if CYTHON_ASSUME_SAFE_MACROS && !CYTHON_AVOID_BORROWED_REFS - __pyx_t_5 = PyList_GET_ITEM(__pyx_t_1, __pyx_t_8); __Pyx_INCREF(__pyx_t_5); __pyx_t_8++; if (unlikely(0 < 0)) __PYX_ERR(0, 62, __pyx_L1_error) - #else - __pyx_t_5 = PySequence_ITEM(__pyx_t_1, __pyx_t_8); __pyx_t_8++; if (unlikely(!__pyx_t_5)) __PYX_ERR(0, 62, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_5); - #endif - } else { - if (__pyx_t_8 >= PyTuple_GET_SIZE(__pyx_t_1)) break; - #if CYTHON_ASSUME_SAFE_MACROS && !CYTHON_AVOID_BORROWED_REFS - __pyx_t_5 = PyTuple_GET_ITEM(__pyx_t_1, __pyx_t_8); __Pyx_INCREF(__pyx_t_5); __pyx_t_8++; if (unlikely(0 < 0)) __PYX_ERR(0, 62, __pyx_L1_error) - #else - __pyx_t_5 = PySequence_ITEM(__pyx_t_1, __pyx_t_8); __pyx_t_8++; if (unlikely(!__pyx_t_5)) __PYX_ERR(0, 62, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_5); - #endif - } - } else { - __pyx_t_5 = __pyx_t_9(__pyx_t_1); - if (unlikely(!__pyx_t_5)) { - PyObject* exc_type = PyErr_Occurred(); - if (exc_type) { - if (likely(__Pyx_PyErr_GivenExceptionMatches(exc_type, PyExc_StopIteration))) PyErr_Clear(); - else __PYX_ERR(0, 62, __pyx_L1_error) - } - break; - } - __Pyx_GOTREF(__pyx_t_5); - } - __Pyx_XDECREF_SET(__pyx_v_c, __pyx_t_5); - __pyx_t_5 = 0; - - /* "pmercury/protocols/http_server.pyx":63 - * if 'context' in config['http_server']: - * for c in config['http_server']['context']: - * HTTP_Server.contextual_data[c.encode()] = c.lower().replace('-','_') # <<<<<<<<<<<<<< - * - * - */ - __pyx_t_6 = __Pyx_PyObject_GetAttrStr(__pyx_v_c, __pyx_n_s_lower); if (unlikely(!__pyx_t_6)) __PYX_ERR(0, 63, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_6); - __pyx_t_10 = NULL; - if (CYTHON_UNPACK_METHODS && likely(PyMethod_Check(__pyx_t_6))) { - __pyx_t_10 = PyMethod_GET_SELF(__pyx_t_6); - if (likely(__pyx_t_10)) { - PyObject* function = PyMethod_GET_FUNCTION(__pyx_t_6); - __Pyx_INCREF(__pyx_t_10); - __Pyx_INCREF(function); - __Pyx_DECREF_SET(__pyx_t_6, function); - } - } - __pyx_t_5 = (__pyx_t_10) ? __Pyx_PyObject_CallOneArg(__pyx_t_6, __pyx_t_10) : __Pyx_PyObject_CallNoArg(__pyx_t_6); - __Pyx_XDECREF(__pyx_t_10); __pyx_t_10 = 0; - if (unlikely(!__pyx_t_5)) __PYX_ERR(0, 63, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_5); - __Pyx_DECREF(__pyx_t_6); __pyx_t_6 = 0; - __pyx_t_6 = __Pyx_PyObject_GetAttrStr(__pyx_t_5, __pyx_n_s_replace); if (unlikely(!__pyx_t_6)) __PYX_ERR(0, 63, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_6); - __Pyx_DECREF(__pyx_t_5); __pyx_t_5 = 0; - __pyx_t_5 = __Pyx_PyObject_Call(__pyx_t_6, __pyx_tuple__4, NULL); if (unlikely(!__pyx_t_5)) __PYX_ERR(0, 63, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_5); - __Pyx_DECREF(__pyx_t_6); __pyx_t_6 = 0; - __Pyx_GetModuleGlobalName(__pyx_t_6, __pyx_n_s_HTTP_Server); if (unlikely(!__pyx_t_6)) __PYX_ERR(0, 63, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_6); - __pyx_t_10 = __Pyx_PyObject_GetAttrStr(__pyx_t_6, __pyx_n_s_contextual_data); if (unlikely(!__pyx_t_10)) __PYX_ERR(0, 63, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_10); - __Pyx_DECREF(__pyx_t_6); __pyx_t_6 = 0; - __pyx_t_11 = __Pyx_PyObject_GetAttrStr(__pyx_v_c, __pyx_n_s_encode); if (unlikely(!__pyx_t_11)) __PYX_ERR(0, 63, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_11); - __pyx_t_12 = NULL; - if (CYTHON_UNPACK_METHODS && likely(PyMethod_Check(__pyx_t_11))) { - __pyx_t_12 = PyMethod_GET_SELF(__pyx_t_11); - if (likely(__pyx_t_12)) { - PyObject* function = PyMethod_GET_FUNCTION(__pyx_t_11); - __Pyx_INCREF(__pyx_t_12); - __Pyx_INCREF(function); - __Pyx_DECREF_SET(__pyx_t_11, function); - } - } - __pyx_t_6 = (__pyx_t_12) ? __Pyx_PyObject_CallOneArg(__pyx_t_11, __pyx_t_12) : __Pyx_PyObject_CallNoArg(__pyx_t_11); - __Pyx_XDECREF(__pyx_t_12); __pyx_t_12 = 0; - if (unlikely(!__pyx_t_6)) __PYX_ERR(0, 63, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_6); - __Pyx_DECREF(__pyx_t_11); __pyx_t_11 = 0; - if (unlikely(PyObject_SetItem(__pyx_t_10, __pyx_t_6, __pyx_t_5) < 0)) __PYX_ERR(0, 63, __pyx_L1_error) - __Pyx_DECREF(__pyx_t_10); __pyx_t_10 = 0; - __Pyx_DECREF(__pyx_t_6); __pyx_t_6 = 0; - __Pyx_DECREF(__pyx_t_5); __pyx_t_5 = 0; - - /* "pmercury/protocols/http_server.pyx":62 - * HTTP_Server.headers_data = [0,1,2] - * if 'context' in config['http_server']: - * for c in config['http_server']['context']: # <<<<<<<<<<<<<< - * HTTP_Server.contextual_data[c.encode()] = c.lower().replace('-','_') - * - */ - } - __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0; - - /* "pmercury/protocols/http_server.pyx":61 - * if '*' in config['http_server']['preamble']: - * HTTP_Server.headers_data = [0,1,2] - * if 'context' in config['http_server']: # <<<<<<<<<<<<<< - * for c in config['http_server']['context']: - * HTTP_Server.contextual_data[c.encode()] = c.lower().replace('-','_') - */ - } - } - __pyx_L3:; - - /* "pmercury/protocols/http_server.pyx":18 - * class HTTP_Server(Protocol): - * - * def __init__(self, fp_database=None, config=None): # <<<<<<<<<<<<<< - * # populate fingerprint databases - * self.fp_db = {} - */ - - /* function exit code */ - __pyx_r = Py_None; __Pyx_INCREF(Py_None); - goto __pyx_L0; - __pyx_L1_error:; - __Pyx_XDECREF(__pyx_t_1); - __Pyx_XDECREF(__pyx_t_5); - __Pyx_XDECREF(__pyx_t_6); - __Pyx_XDECREF(__pyx_t_10); - __Pyx_XDECREF(__pyx_t_11); - __Pyx_XDECREF(__pyx_t_12); - __Pyx_AddTraceback("pmercury.protocols.http_server.HTTP_Server.__init__", __pyx_clineno, __pyx_lineno, __pyx_filename); - __pyx_r = NULL; - __pyx_L0:; - __Pyx_XDECREF(__pyx_v_c); - __Pyx_XGIVEREF(__pyx_r); - __Pyx_RefNannyFinishContext(); - return __pyx_r; -} - -/* "pmercury/protocols/http_server.pyx":67 - * - * @staticmethod - * def proto_identify(data, offset, data_len): # <<<<<<<<<<<<<< - * if data_len-offset < 16: - * return False - */ - -/* Python wrapper */ -static PyObject *__pyx_pw_8pmercury_9protocols_11http_server_11HTTP_Server_3proto_identify(PyObject *__pyx_self, PyObject *__pyx_args, PyObject *__pyx_kwds); /*proto*/ -static PyMethodDef __pyx_mdef_8pmercury_9protocols_11http_server_11HTTP_Server_3proto_identify = {"proto_identify", (PyCFunction)(void*)(PyCFunctionWithKeywords)__pyx_pw_8pmercury_9protocols_11http_server_11HTTP_Server_3proto_identify, METH_VARARGS|METH_KEYWORDS, 0}; -static PyObject *__pyx_pw_8pmercury_9protocols_11http_server_11HTTP_Server_3proto_identify(PyObject *__pyx_self, PyObject *__pyx_args, PyObject *__pyx_kwds) { - PyObject *__pyx_v_data = 0; - PyObject *__pyx_v_offset = 0; - PyObject *__pyx_v_data_len = 0; - PyObject *__pyx_r = 0; - __Pyx_RefNannyDeclarations - __Pyx_RefNannySetupContext("proto_identify (wrapper)", 0); - { - static PyObject **__pyx_pyargnames[] = {&__pyx_n_s_data,&__pyx_n_s_offset,&__pyx_n_s_data_len,0}; - PyObject* values[3] = {0,0,0}; - if (unlikely(__pyx_kwds)) { - Py_ssize_t kw_args; - const Py_ssize_t pos_args = PyTuple_GET_SIZE(__pyx_args); - switch (pos_args) { - case 3: values[2] = PyTuple_GET_ITEM(__pyx_args, 2); - CYTHON_FALLTHROUGH; - case 2: values[1] = PyTuple_GET_ITEM(__pyx_args, 1); - CYTHON_FALLTHROUGH; - case 1: values[0] = PyTuple_GET_ITEM(__pyx_args, 0); - CYTHON_FALLTHROUGH; - case 0: break; - default: goto __pyx_L5_argtuple_error; - } - kw_args = PyDict_Size(__pyx_kwds); - switch (pos_args) { - case 0: - if (likely((values[0] = __Pyx_PyDict_GetItemStr(__pyx_kwds, __pyx_n_s_data)) != 0)) kw_args--; - else goto __pyx_L5_argtuple_error; - CYTHON_FALLTHROUGH; - case 1: - if (likely((values[1] = __Pyx_PyDict_GetItemStr(__pyx_kwds, __pyx_n_s_offset)) != 0)) kw_args--; - else { - __Pyx_RaiseArgtupleInvalid("proto_identify", 1, 3, 3, 1); __PYX_ERR(0, 67, __pyx_L3_error) - } - CYTHON_FALLTHROUGH; - case 2: - if (likely((values[2] = __Pyx_PyDict_GetItemStr(__pyx_kwds, __pyx_n_s_data_len)) != 0)) kw_args--; - else { - __Pyx_RaiseArgtupleInvalid("proto_identify", 1, 3, 3, 2); __PYX_ERR(0, 67, __pyx_L3_error) - } - } - if (unlikely(kw_args > 0)) { - if (unlikely(__Pyx_ParseOptionalKeywords(__pyx_kwds, __pyx_pyargnames, 0, values, pos_args, "proto_identify") < 0)) __PYX_ERR(0, 67, __pyx_L3_error) - } - } else if (PyTuple_GET_SIZE(__pyx_args) != 3) { - goto __pyx_L5_argtuple_error; - } else { - values[0] = PyTuple_GET_ITEM(__pyx_args, 0); - values[1] = PyTuple_GET_ITEM(__pyx_args, 1); - values[2] = PyTuple_GET_ITEM(__pyx_args, 2); - } - __pyx_v_data = values[0]; - __pyx_v_offset = values[1]; - __pyx_v_data_len = values[2]; - } - goto __pyx_L4_argument_unpacking_done; - __pyx_L5_argtuple_error:; - __Pyx_RaiseArgtupleInvalid("proto_identify", 1, 3, 3, PyTuple_GET_SIZE(__pyx_args)); __PYX_ERR(0, 67, __pyx_L3_error) - __pyx_L3_error:; - __Pyx_AddTraceback("pmercury.protocols.http_server.HTTP_Server.proto_identify", __pyx_clineno, __pyx_lineno, __pyx_filename); - __Pyx_RefNannyFinishContext(); - return NULL; - __pyx_L4_argument_unpacking_done:; - __pyx_r = __pyx_pf_8pmercury_9protocols_11http_server_11HTTP_Server_2proto_identify(__pyx_self, __pyx_v_data, __pyx_v_offset, __pyx_v_data_len); - - /* function exit code */ - __Pyx_RefNannyFinishContext(); - return __pyx_r; -} - -static PyObject *__pyx_pf_8pmercury_9protocols_11http_server_11HTTP_Server_2proto_identify(CYTHON_UNUSED PyObject *__pyx_self, PyObject *__pyx_v_data, PyObject *__pyx_v_offset, PyObject *__pyx_v_data_len) { - PyObject *__pyx_r = NULL; - __Pyx_RefNannyDeclarations - PyObject *__pyx_t_1 = NULL; - PyObject *__pyx_t_2 = NULL; - int __pyx_t_3; - int __pyx_t_4; - __Pyx_RefNannySetupContext("proto_identify", 0); - - /* "pmercury/protocols/http_server.pyx":68 - * @staticmethod - * def proto_identify(data, offset, data_len): - * if data_len-offset < 16: # <<<<<<<<<<<<<< - * return False - * if (data[offset] == 72 and - */ - __pyx_t_1 = PyNumber_Subtract(__pyx_v_data_len, __pyx_v_offset); if (unlikely(!__pyx_t_1)) __PYX_ERR(0, 68, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_1); - __pyx_t_2 = PyObject_RichCompare(__pyx_t_1, __pyx_int_16, Py_LT); __Pyx_XGOTREF(__pyx_t_2); if (unlikely(!__pyx_t_2)) __PYX_ERR(0, 68, __pyx_L1_error) - __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0; - __pyx_t_3 = __Pyx_PyObject_IsTrue(__pyx_t_2); if (unlikely(__pyx_t_3 < 0)) __PYX_ERR(0, 68, __pyx_L1_error) - __Pyx_DECREF(__pyx_t_2); __pyx_t_2 = 0; - if (__pyx_t_3) { - - /* "pmercury/protocols/http_server.pyx":69 - * def proto_identify(data, offset, data_len): - * if data_len-offset < 16: - * return False # <<<<<<<<<<<<<< - * if (data[offset] == 72 and - * data[offset+1] == 84 and - */ - __Pyx_XDECREF(__pyx_r); - __Pyx_INCREF(Py_False); - __pyx_r = Py_False; - goto __pyx_L0; - - /* "pmercury/protocols/http_server.pyx":68 - * @staticmethod - * def proto_identify(data, offset, data_len): - * if data_len-offset < 16: # <<<<<<<<<<<<<< - * return False - * if (data[offset] == 72 and - */ - } - - /* "pmercury/protocols/http_server.pyx":70 - * if data_len-offset < 16: - * return False - * if (data[offset] == 72 and # <<<<<<<<<<<<<< - * data[offset+1] == 84 and - * data[offset+2] == 84 and - */ - __pyx_t_2 = __Pyx_PyObject_GetItem(__pyx_v_data, __pyx_v_offset); if (unlikely(!__pyx_t_2)) __PYX_ERR(0, 70, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_2); - __pyx_t_1 = __Pyx_PyInt_EqObjC(__pyx_t_2, __pyx_int_72, 72, 0); if (unlikely(!__pyx_t_1)) __PYX_ERR(0, 70, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_1); - __Pyx_DECREF(__pyx_t_2); __pyx_t_2 = 0; - __pyx_t_4 = __Pyx_PyObject_IsTrue(__pyx_t_1); if (unlikely(__pyx_t_4 < 0)) __PYX_ERR(0, 70, __pyx_L1_error) - __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0; - if (__pyx_t_4) { - } else { - __pyx_t_3 = __pyx_t_4; - goto __pyx_L5_bool_binop_done; - } - - /* "pmercury/protocols/http_server.pyx":71 - * return False - * if (data[offset] == 72 and - * data[offset+1] == 84 and # <<<<<<<<<<<<<< - * data[offset+2] == 84 and - * data[offset+3] == 80 and - */ - __pyx_t_1 = __Pyx_PyInt_AddObjC(__pyx_v_offset, __pyx_int_1, 1, 0, 0); if (unlikely(!__pyx_t_1)) __PYX_ERR(0, 71, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_1); - __pyx_t_2 = __Pyx_PyObject_GetItem(__pyx_v_data, __pyx_t_1); if (unlikely(!__pyx_t_2)) __PYX_ERR(0, 71, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_2); - __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0; - __pyx_t_1 = __Pyx_PyInt_EqObjC(__pyx_t_2, __pyx_int_84, 84, 0); if (unlikely(!__pyx_t_1)) __PYX_ERR(0, 71, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_1); - __Pyx_DECREF(__pyx_t_2); __pyx_t_2 = 0; - __pyx_t_4 = __Pyx_PyObject_IsTrue(__pyx_t_1); if (unlikely(__pyx_t_4 < 0)) __PYX_ERR(0, 71, __pyx_L1_error) - __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0; - if (__pyx_t_4) { - } else { - __pyx_t_3 = __pyx_t_4; - goto __pyx_L5_bool_binop_done; - } - - /* "pmercury/protocols/http_server.pyx":72 - * if (data[offset] == 72 and - * data[offset+1] == 84 and - * data[offset+2] == 84 and # <<<<<<<<<<<<<< - * data[offset+3] == 80 and - * data[offset+4] == 47 and - */ - __pyx_t_1 = __Pyx_PyInt_AddObjC(__pyx_v_offset, __pyx_int_2, 2, 0, 0); if (unlikely(!__pyx_t_1)) __PYX_ERR(0, 72, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_1); - __pyx_t_2 = __Pyx_PyObject_GetItem(__pyx_v_data, __pyx_t_1); if (unlikely(!__pyx_t_2)) __PYX_ERR(0, 72, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_2); - __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0; - __pyx_t_1 = __Pyx_PyInt_EqObjC(__pyx_t_2, __pyx_int_84, 84, 0); if (unlikely(!__pyx_t_1)) __PYX_ERR(0, 72, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_1); - __Pyx_DECREF(__pyx_t_2); __pyx_t_2 = 0; - __pyx_t_4 = __Pyx_PyObject_IsTrue(__pyx_t_1); if (unlikely(__pyx_t_4 < 0)) __PYX_ERR(0, 72, __pyx_L1_error) - __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0; - if (__pyx_t_4) { - } else { - __pyx_t_3 = __pyx_t_4; - goto __pyx_L5_bool_binop_done; - } - - /* "pmercury/protocols/http_server.pyx":73 - * data[offset+1] == 84 and - * data[offset+2] == 84 and - * data[offset+3] == 80 and # <<<<<<<<<<<<<< - * data[offset+4] == 47 and - * data[offset+5] == 49): - */ - __pyx_t_1 = __Pyx_PyInt_AddObjC(__pyx_v_offset, __pyx_int_3, 3, 0, 0); if (unlikely(!__pyx_t_1)) __PYX_ERR(0, 73, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_1); - __pyx_t_2 = __Pyx_PyObject_GetItem(__pyx_v_data, __pyx_t_1); if (unlikely(!__pyx_t_2)) __PYX_ERR(0, 73, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_2); - __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0; - __pyx_t_1 = __Pyx_PyInt_EqObjC(__pyx_t_2, __pyx_int_80, 80, 0); if (unlikely(!__pyx_t_1)) __PYX_ERR(0, 73, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_1); - __Pyx_DECREF(__pyx_t_2); __pyx_t_2 = 0; - __pyx_t_4 = __Pyx_PyObject_IsTrue(__pyx_t_1); if (unlikely(__pyx_t_4 < 0)) __PYX_ERR(0, 73, __pyx_L1_error) - __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0; - if (__pyx_t_4) { - } else { - __pyx_t_3 = __pyx_t_4; - goto __pyx_L5_bool_binop_done; - } - - /* "pmercury/protocols/http_server.pyx":74 - * data[offset+2] == 84 and - * data[offset+3] == 80 and - * data[offset+4] == 47 and # <<<<<<<<<<<<<< - * data[offset+5] == 49): - * return True - */ - __pyx_t_1 = __Pyx_PyInt_AddObjC(__pyx_v_offset, __pyx_int_4, 4, 0, 0); if (unlikely(!__pyx_t_1)) __PYX_ERR(0, 74, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_1); - __pyx_t_2 = __Pyx_PyObject_GetItem(__pyx_v_data, __pyx_t_1); if (unlikely(!__pyx_t_2)) __PYX_ERR(0, 74, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_2); - __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0; - __pyx_t_1 = __Pyx_PyInt_EqObjC(__pyx_t_2, __pyx_int_47, 47, 0); if (unlikely(!__pyx_t_1)) __PYX_ERR(0, 74, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_1); - __Pyx_DECREF(__pyx_t_2); __pyx_t_2 = 0; - __pyx_t_4 = __Pyx_PyObject_IsTrue(__pyx_t_1); if (unlikely(__pyx_t_4 < 0)) __PYX_ERR(0, 74, __pyx_L1_error) - __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0; - if (__pyx_t_4) { - } else { - __pyx_t_3 = __pyx_t_4; - goto __pyx_L5_bool_binop_done; - } - - /* "pmercury/protocols/http_server.pyx":75 - * data[offset+3] == 80 and - * data[offset+4] == 47 and - * data[offset+5] == 49): # <<<<<<<<<<<<<< - * return True - * return False - */ - __pyx_t_1 = __Pyx_PyInt_AddObjC(__pyx_v_offset, __pyx_int_5, 5, 0, 0); if (unlikely(!__pyx_t_1)) __PYX_ERR(0, 75, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_1); - __pyx_t_2 = __Pyx_PyObject_GetItem(__pyx_v_data, __pyx_t_1); if (unlikely(!__pyx_t_2)) __PYX_ERR(0, 75, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_2); - __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0; - __pyx_t_1 = __Pyx_PyInt_EqObjC(__pyx_t_2, __pyx_int_49, 49, 0); if (unlikely(!__pyx_t_1)) __PYX_ERR(0, 75, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_1); - __Pyx_DECREF(__pyx_t_2); __pyx_t_2 = 0; - __pyx_t_4 = __Pyx_PyObject_IsTrue(__pyx_t_1); if (unlikely(__pyx_t_4 < 0)) __PYX_ERR(0, 75, __pyx_L1_error) - __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0; - __pyx_t_3 = __pyx_t_4; - __pyx_L5_bool_binop_done:; - - /* "pmercury/protocols/http_server.pyx":70 - * if data_len-offset < 16: - * return False - * if (data[offset] == 72 and # <<<<<<<<<<<<<< - * data[offset+1] == 84 and - * data[offset+2] == 84 and - */ - if (__pyx_t_3) { - - /* "pmercury/protocols/http_server.pyx":76 - * data[offset+4] == 47 and - * data[offset+5] == 49): - * return True # <<<<<<<<<<<<<< - * return False - * - */ - __Pyx_XDECREF(__pyx_r); - __Pyx_INCREF(Py_True); - __pyx_r = Py_True; - goto __pyx_L0; - - /* "pmercury/protocols/http_server.pyx":70 - * if data_len-offset < 16: - * return False - * if (data[offset] == 72 and # <<<<<<<<<<<<<< - * data[offset+1] == 84 and - * data[offset+2] == 84 and - */ - } - - /* "pmercury/protocols/http_server.pyx":77 - * data[offset+5] == 49): - * return True - * return False # <<<<<<<<<<<<<< - * - * - */ - __Pyx_XDECREF(__pyx_r); - __Pyx_INCREF(Py_False); - __pyx_r = Py_False; - goto __pyx_L0; - - /* "pmercury/protocols/http_server.pyx":67 - * - * @staticmethod - * def proto_identify(data, offset, data_len): # <<<<<<<<<<<<<< - * if data_len-offset < 16: - * return False - */ - - /* function exit code */ - __pyx_L1_error:; - __Pyx_XDECREF(__pyx_t_1); - __Pyx_XDECREF(__pyx_t_2); - __Pyx_AddTraceback("pmercury.protocols.http_server.HTTP_Server.proto_identify", __pyx_clineno, __pyx_lineno, __pyx_filename); - __pyx_r = NULL; - __pyx_L0:; - __Pyx_XGIVEREF(__pyx_r); - __Pyx_RefNannyFinishContext(); - return __pyx_r; -} - -/* "pmercury/protocols/http_server.pyx":81 - * - * @staticmethod - * def fingerprint(bytes data, unsigned int offset, unsigned int data_len): # <<<<<<<<<<<<<< - * cdef list t_ = data[offset:].split(b'\x0d\x0a', 1) - * cdef list response = t_[0].split(b'\x20',2) - */ - -/* Python wrapper */ -static PyObject *__pyx_pw_8pmercury_9protocols_11http_server_11HTTP_Server_5fingerprint(PyObject *__pyx_self, PyObject *__pyx_args, PyObject *__pyx_kwds); /*proto*/ -static PyMethodDef __pyx_mdef_8pmercury_9protocols_11http_server_11HTTP_Server_5fingerprint = {"fingerprint", (PyCFunction)(void*)(PyCFunctionWithKeywords)__pyx_pw_8pmercury_9protocols_11http_server_11HTTP_Server_5fingerprint, METH_VARARGS|METH_KEYWORDS, 0}; -static PyObject *__pyx_pw_8pmercury_9protocols_11http_server_11HTTP_Server_5fingerprint(PyObject *__pyx_self, PyObject *__pyx_args, PyObject *__pyx_kwds) { - PyObject *__pyx_v_data = 0; - unsigned int __pyx_v_offset; - CYTHON_UNUSED unsigned int __pyx_v_data_len; - PyObject *__pyx_r = 0; - __Pyx_RefNannyDeclarations - __Pyx_RefNannySetupContext("fingerprint (wrapper)", 0); - { - static PyObject **__pyx_pyargnames[] = {&__pyx_n_s_data,&__pyx_n_s_offset,&__pyx_n_s_data_len,0}; - PyObject* values[3] = {0,0,0}; - if (unlikely(__pyx_kwds)) { - Py_ssize_t kw_args; - const Py_ssize_t pos_args = PyTuple_GET_SIZE(__pyx_args); - switch (pos_args) { - case 3: values[2] = PyTuple_GET_ITEM(__pyx_args, 2); - CYTHON_FALLTHROUGH; - case 2: values[1] = PyTuple_GET_ITEM(__pyx_args, 1); - CYTHON_FALLTHROUGH; - case 1: values[0] = PyTuple_GET_ITEM(__pyx_args, 0); - CYTHON_FALLTHROUGH; - case 0: break; - default: goto __pyx_L5_argtuple_error; - } - kw_args = PyDict_Size(__pyx_kwds); - switch (pos_args) { - case 0: - if (likely((values[0] = __Pyx_PyDict_GetItemStr(__pyx_kwds, __pyx_n_s_data)) != 0)) kw_args--; - else goto __pyx_L5_argtuple_error; - CYTHON_FALLTHROUGH; - case 1: - if (likely((values[1] = __Pyx_PyDict_GetItemStr(__pyx_kwds, __pyx_n_s_offset)) != 0)) kw_args--; - else { - __Pyx_RaiseArgtupleInvalid("fingerprint", 1, 3, 3, 1); __PYX_ERR(0, 81, __pyx_L3_error) - } - CYTHON_FALLTHROUGH; - case 2: - if (likely((values[2] = __Pyx_PyDict_GetItemStr(__pyx_kwds, __pyx_n_s_data_len)) != 0)) kw_args--; - else { - __Pyx_RaiseArgtupleInvalid("fingerprint", 1, 3, 3, 2); __PYX_ERR(0, 81, __pyx_L3_error) - } - } - if (unlikely(kw_args > 0)) { - if (unlikely(__Pyx_ParseOptionalKeywords(__pyx_kwds, __pyx_pyargnames, 0, values, pos_args, "fingerprint") < 0)) __PYX_ERR(0, 81, __pyx_L3_error) - } - } else if (PyTuple_GET_SIZE(__pyx_args) != 3) { - goto __pyx_L5_argtuple_error; - } else { - values[0] = PyTuple_GET_ITEM(__pyx_args, 0); - values[1] = PyTuple_GET_ITEM(__pyx_args, 1); - values[2] = PyTuple_GET_ITEM(__pyx_args, 2); - } - __pyx_v_data = ((PyObject*)values[0]); - __pyx_v_offset = __Pyx_PyInt_As_unsigned_int(values[1]); if (unlikely((__pyx_v_offset == (unsigned int)-1) && PyErr_Occurred())) __PYX_ERR(0, 81, __pyx_L3_error) - __pyx_v_data_len = __Pyx_PyInt_As_unsigned_int(values[2]); if (unlikely((__pyx_v_data_len == (unsigned int)-1) && PyErr_Occurred())) __PYX_ERR(0, 81, __pyx_L3_error) - } - goto __pyx_L4_argument_unpacking_done; - __pyx_L5_argtuple_error:; - __Pyx_RaiseArgtupleInvalid("fingerprint", 1, 3, 3, PyTuple_GET_SIZE(__pyx_args)); __PYX_ERR(0, 81, __pyx_L3_error) - __pyx_L3_error:; - __Pyx_AddTraceback("pmercury.protocols.http_server.HTTP_Server.fingerprint", __pyx_clineno, __pyx_lineno, __pyx_filename); - __Pyx_RefNannyFinishContext(); - return NULL; - __pyx_L4_argument_unpacking_done:; - if (unlikely(!__Pyx_ArgTypeTest(((PyObject *)__pyx_v_data), (&PyBytes_Type), 1, "data", 1))) __PYX_ERR(0, 81, __pyx_L1_error) - __pyx_r = __pyx_pf_8pmercury_9protocols_11http_server_11HTTP_Server_4fingerprint(__pyx_self, __pyx_v_data, __pyx_v_offset, __pyx_v_data_len); - - /* function exit code */ - goto __pyx_L0; - __pyx_L1_error:; - __pyx_r = NULL; - __pyx_L0:; - __Pyx_RefNannyFinishContext(); - return __pyx_r; -} - -static PyObject *__pyx_pf_8pmercury_9protocols_11http_server_11HTTP_Server_4fingerprint(CYTHON_UNUSED PyObject *__pyx_self, PyObject *__pyx_v_data, unsigned int __pyx_v_offset, CYTHON_UNUSED unsigned int __pyx_v_data_len) { - PyObject *__pyx_v_t_ = 0; - PyObject *__pyx_v_response = 0; - PyObject *__pyx_v_c = 0; - PyObject *__pyx_v_rh = NULL; - PyObject *__pyx_v_headers = 0; - int __pyx_v_http_ah; - int __pyx_v_http_ahd; - PyObject *__pyx_v_http_sn = 0; - PyObject *__pyx_v_http_snv = 0; - PyObject *__pyx_v_http_ctx = 0; - PyObject *__pyx_v_h_c = 0; - PyObject *__pyx_v_context = NULL; - PyObject *__pyx_v_h_ = NULL; - PyObject *__pyx_v_t0_ = NULL; - PyObject *__pyx_v_t0_lower = NULL; - PyObject *__pyx_r = NULL; - __Pyx_RefNannyDeclarations - PyObject *__pyx_t_1 = NULL; - PyObject *__pyx_t_2 = NULL; - Py_ssize_t __pyx_t_3; - int __pyx_t_4; - PyObject *(*__pyx_t_5)(PyObject *); - PyObject *__pyx_t_6 = NULL; - PyObject *__pyx_t_7 = NULL; - PyObject *__pyx_t_8 = NULL; - PyObject *__pyx_t_9 = NULL; - PyObject *__pyx_t_10 = NULL; - int __pyx_t_11; - int __pyx_t_12; - int __pyx_t_13; - PyObject *__pyx_t_14 = NULL; - PyObject *__pyx_t_15 = NULL; - PyObject *__pyx_t_16 = NULL; - PyObject *__pyx_t_17 = NULL; - __Pyx_RefNannySetupContext("fingerprint", 0); - - /* "pmercury/protocols/http_server.pyx":82 - * @staticmethod - * def fingerprint(bytes data, unsigned int offset, unsigned int data_len): - * cdef list t_ = data[offset:].split(b'\x0d\x0a', 1) # <<<<<<<<<<<<<< - * cdef list response = t_[0].split(b'\x20',2) - * if len(response) < 2: - */ - if (unlikely(__pyx_v_data == Py_None)) { - PyErr_SetString(PyExc_TypeError, "'NoneType' object is not subscriptable"); - __PYX_ERR(0, 82, __pyx_L1_error) - } - __pyx_t_1 = PySequence_GetSlice(__pyx_v_data, __pyx_v_offset, PY_SSIZE_T_MAX); if (unlikely(!__pyx_t_1)) __PYX_ERR(0, 82, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_1); - __pyx_t_2 = __Pyx_PyObject_GetAttrStr(__pyx_t_1, __pyx_n_s_split); if (unlikely(!__pyx_t_2)) __PYX_ERR(0, 82, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_2); - __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0; - __pyx_t_1 = __Pyx_PyObject_Call(__pyx_t_2, __pyx_tuple__6, NULL); if (unlikely(!__pyx_t_1)) __PYX_ERR(0, 82, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_1); - __Pyx_DECREF(__pyx_t_2); __pyx_t_2 = 0; - if (!(likely(PyList_CheckExact(__pyx_t_1))||((__pyx_t_1) == Py_None)||(PyErr_Format(PyExc_TypeError, "Expected %.16s, got %.200s", "list", Py_TYPE(__pyx_t_1)->tp_name), 0))) __PYX_ERR(0, 82, __pyx_L1_error) - __pyx_v_t_ = ((PyObject*)__pyx_t_1); - __pyx_t_1 = 0; - - /* "pmercury/protocols/http_server.pyx":83 - * def fingerprint(bytes data, unsigned int offset, unsigned int data_len): - * cdef list t_ = data[offset:].split(b'\x0d\x0a', 1) - * cdef list response = t_[0].split(b'\x20',2) # <<<<<<<<<<<<<< - * if len(response) < 2: - * return None, None - */ - if (unlikely(__pyx_v_t_ == Py_None)) { - PyErr_SetString(PyExc_TypeError, "'NoneType' object is not subscriptable"); - __PYX_ERR(0, 83, __pyx_L1_error) - } - __pyx_t_1 = __Pyx_GetItemInt_List(__pyx_v_t_, 0, long, 1, __Pyx_PyInt_From_long, 1, 0, 1); if (unlikely(!__pyx_t_1)) __PYX_ERR(0, 83, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_1); - __pyx_t_2 = __Pyx_PyObject_GetAttrStr(__pyx_t_1, __pyx_n_s_split); if (unlikely(!__pyx_t_2)) __PYX_ERR(0, 83, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_2); - __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0; - __pyx_t_1 = __Pyx_PyObject_Call(__pyx_t_2, __pyx_tuple__8, NULL); if (unlikely(!__pyx_t_1)) __PYX_ERR(0, 83, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_1); - __Pyx_DECREF(__pyx_t_2); __pyx_t_2 = 0; - if (!(likely(PyList_CheckExact(__pyx_t_1))||((__pyx_t_1) == Py_None)||(PyErr_Format(PyExc_TypeError, "Expected %.16s, got %.200s", "list", Py_TYPE(__pyx_t_1)->tp_name), 0))) __PYX_ERR(0, 83, __pyx_L1_error) - __pyx_v_response = ((PyObject*)__pyx_t_1); - __pyx_t_1 = 0; - - /* "pmercury/protocols/http_server.pyx":84 - * cdef list t_ = data[offset:].split(b'\x0d\x0a', 1) - * cdef list response = t_[0].split(b'\x20',2) - * if len(response) < 2: # <<<<<<<<<<<<<< - * return None, None - * - */ - if (unlikely(__pyx_v_response == Py_None)) { - PyErr_SetString(PyExc_TypeError, "object of type 'NoneType' has no len()"); - __PYX_ERR(0, 84, __pyx_L1_error) - } - __pyx_t_3 = PyList_GET_SIZE(__pyx_v_response); if (unlikely(__pyx_t_3 == ((Py_ssize_t)-1))) __PYX_ERR(0, 84, __pyx_L1_error) - __pyx_t_4 = ((__pyx_t_3 < 2) != 0); - if (__pyx_t_4) { - - /* "pmercury/protocols/http_server.pyx":85 - * cdef list response = t_[0].split(b'\x20',2) - * if len(response) < 2: - * return None, None # <<<<<<<<<<<<<< - * - * cdef list c = [] - */ - __Pyx_XDECREF(__pyx_r); - __Pyx_INCREF(__pyx_tuple__9); - __pyx_r = __pyx_tuple__9; - goto __pyx_L0; - - /* "pmercury/protocols/http_server.pyx":84 - * cdef list t_ = data[offset:].split(b'\x0d\x0a', 1) - * cdef list response = t_[0].split(b'\x20',2) - * if len(response) < 2: # <<<<<<<<<<<<<< - * return None, None - * - */ - } - - /* "pmercury/protocols/http_server.pyx":87 - * return None, None - * - * cdef list c = [] # <<<<<<<<<<<<<< - * for rh in HTTP_Server.headers_data: - * try: - */ - __pyx_t_1 = PyList_New(0); if (unlikely(!__pyx_t_1)) __PYX_ERR(0, 87, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_1); - __pyx_v_c = ((PyObject*)__pyx_t_1); - __pyx_t_1 = 0; - - /* "pmercury/protocols/http_server.pyx":88 - * - * cdef list c = [] - * for rh in HTTP_Server.headers_data: # <<<<<<<<<<<<<< - * try: - * c.append('(%s)' % response[rh].hex()) - */ - __Pyx_GetModuleGlobalName(__pyx_t_1, __pyx_n_s_HTTP_Server); if (unlikely(!__pyx_t_1)) __PYX_ERR(0, 88, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_1); - __pyx_t_2 = __Pyx_PyObject_GetAttrStr(__pyx_t_1, __pyx_n_s_headers_data); if (unlikely(!__pyx_t_2)) __PYX_ERR(0, 88, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_2); - __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0; - if (likely(PyList_CheckExact(__pyx_t_2)) || PyTuple_CheckExact(__pyx_t_2)) { - __pyx_t_1 = __pyx_t_2; __Pyx_INCREF(__pyx_t_1); __pyx_t_3 = 0; - __pyx_t_5 = NULL; - } else { - __pyx_t_3 = -1; __pyx_t_1 = PyObject_GetIter(__pyx_t_2); if (unlikely(!__pyx_t_1)) __PYX_ERR(0, 88, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_1); - __pyx_t_5 = Py_TYPE(__pyx_t_1)->tp_iternext; if (unlikely(!__pyx_t_5)) __PYX_ERR(0, 88, __pyx_L1_error) - } - __Pyx_DECREF(__pyx_t_2); __pyx_t_2 = 0; - for (;;) { - if (likely(!__pyx_t_5)) { - if (likely(PyList_CheckExact(__pyx_t_1))) { - if (__pyx_t_3 >= PyList_GET_SIZE(__pyx_t_1)) break; - #if CYTHON_ASSUME_SAFE_MACROS && !CYTHON_AVOID_BORROWED_REFS - __pyx_t_2 = PyList_GET_ITEM(__pyx_t_1, __pyx_t_3); __Pyx_INCREF(__pyx_t_2); __pyx_t_3++; if (unlikely(0 < 0)) __PYX_ERR(0, 88, __pyx_L1_error) - #else - __pyx_t_2 = PySequence_ITEM(__pyx_t_1, __pyx_t_3); __pyx_t_3++; if (unlikely(!__pyx_t_2)) __PYX_ERR(0, 88, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_2); - #endif - } else { - if (__pyx_t_3 >= PyTuple_GET_SIZE(__pyx_t_1)) break; - #if CYTHON_ASSUME_SAFE_MACROS && !CYTHON_AVOID_BORROWED_REFS - __pyx_t_2 = PyTuple_GET_ITEM(__pyx_t_1, __pyx_t_3); __Pyx_INCREF(__pyx_t_2); __pyx_t_3++; if (unlikely(0 < 0)) __PYX_ERR(0, 88, __pyx_L1_error) - #else - __pyx_t_2 = PySequence_ITEM(__pyx_t_1, __pyx_t_3); __pyx_t_3++; if (unlikely(!__pyx_t_2)) __PYX_ERR(0, 88, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_2); - #endif - } - } else { - __pyx_t_2 = __pyx_t_5(__pyx_t_1); - if (unlikely(!__pyx_t_2)) { - PyObject* exc_type = PyErr_Occurred(); - if (exc_type) { - if (likely(__Pyx_PyErr_GivenExceptionMatches(exc_type, PyExc_StopIteration))) PyErr_Clear(); - else __PYX_ERR(0, 88, __pyx_L1_error) - } - break; - } - __Pyx_GOTREF(__pyx_t_2); - } - __Pyx_XDECREF_SET(__pyx_v_rh, __pyx_t_2); - __pyx_t_2 = 0; - - /* "pmercury/protocols/http_server.pyx":89 - * cdef list c = [] - * for rh in HTTP_Server.headers_data: - * try: # <<<<<<<<<<<<<< - * c.append('(%s)' % response[rh].hex()) - * except IndexError: - */ - { - __Pyx_PyThreadState_declare - __Pyx_PyThreadState_assign - __Pyx_ExceptionSave(&__pyx_t_6, &__pyx_t_7, &__pyx_t_8); - __Pyx_XGOTREF(__pyx_t_6); - __Pyx_XGOTREF(__pyx_t_7); - __Pyx_XGOTREF(__pyx_t_8); - /*try:*/ { - - /* "pmercury/protocols/http_server.pyx":90 - * for rh in HTTP_Server.headers_data: - * try: - * c.append('(%s)' % response[rh].hex()) # <<<<<<<<<<<<<< - * except IndexError: - * c.append('()') - */ - if (unlikely(__pyx_v_response == Py_None)) { - PyErr_SetString(PyExc_TypeError, "'NoneType' object is not subscriptable"); - __PYX_ERR(0, 90, __pyx_L6_error) - } - __pyx_t_9 = __Pyx_PyObject_GetItem(__pyx_v_response, __pyx_v_rh); if (unlikely(!__pyx_t_9)) __PYX_ERR(0, 90, __pyx_L6_error) - __Pyx_GOTREF(__pyx_t_9); - __pyx_t_10 = __Pyx_PyObject_GetAttrStr(__pyx_t_9, __pyx_n_s_hex); if (unlikely(!__pyx_t_10)) __PYX_ERR(0, 90, __pyx_L6_error) - __Pyx_GOTREF(__pyx_t_10); - __Pyx_DECREF(__pyx_t_9); __pyx_t_9 = 0; - __pyx_t_9 = NULL; - if (CYTHON_UNPACK_METHODS && likely(PyMethod_Check(__pyx_t_10))) { - __pyx_t_9 = PyMethod_GET_SELF(__pyx_t_10); - if (likely(__pyx_t_9)) { - PyObject* function = PyMethod_GET_FUNCTION(__pyx_t_10); - __Pyx_INCREF(__pyx_t_9); - __Pyx_INCREF(function); - __Pyx_DECREF_SET(__pyx_t_10, function); - } - } - __pyx_t_2 = (__pyx_t_9) ? __Pyx_PyObject_CallOneArg(__pyx_t_10, __pyx_t_9) : __Pyx_PyObject_CallNoArg(__pyx_t_10); - __Pyx_XDECREF(__pyx_t_9); __pyx_t_9 = 0; - if (unlikely(!__pyx_t_2)) __PYX_ERR(0, 90, __pyx_L6_error) - __Pyx_GOTREF(__pyx_t_2); - __Pyx_DECREF(__pyx_t_10); __pyx_t_10 = 0; - __pyx_t_10 = __Pyx_PyUnicode_FormatSafe(__pyx_kp_u_s, __pyx_t_2); if (unlikely(!__pyx_t_10)) __PYX_ERR(0, 90, __pyx_L6_error) - __Pyx_GOTREF(__pyx_t_10); - __Pyx_DECREF(__pyx_t_2); __pyx_t_2 = 0; - __pyx_t_11 = __Pyx_PyList_Append(__pyx_v_c, __pyx_t_10); if (unlikely(__pyx_t_11 == ((int)-1))) __PYX_ERR(0, 90, __pyx_L6_error) - __Pyx_DECREF(__pyx_t_10); __pyx_t_10 = 0; - - /* "pmercury/protocols/http_server.pyx":89 - * cdef list c = [] - * for rh in HTTP_Server.headers_data: - * try: # <<<<<<<<<<<<<< - * c.append('(%s)' % response[rh].hex()) - * except IndexError: - */ - } - __Pyx_XDECREF(__pyx_t_6); __pyx_t_6 = 0; - __Pyx_XDECREF(__pyx_t_7); __pyx_t_7 = 0; - __Pyx_XDECREF(__pyx_t_8); __pyx_t_8 = 0; - goto __pyx_L13_try_end; - __pyx_L6_error:; - __Pyx_XDECREF(__pyx_t_10); __pyx_t_10 = 0; - __Pyx_XDECREF(__pyx_t_2); __pyx_t_2 = 0; - __Pyx_XDECREF(__pyx_t_9); __pyx_t_9 = 0; - - /* "pmercury/protocols/http_server.pyx":91 - * try: - * c.append('(%s)' % response[rh].hex()) - * except IndexError: # <<<<<<<<<<<<<< - * c.append('()') - * - */ - __pyx_t_12 = __Pyx_PyErr_ExceptionMatches(__pyx_builtin_IndexError); - if (__pyx_t_12) { - __Pyx_AddTraceback("pmercury.protocols.http_server.HTTP_Server.fingerprint", __pyx_clineno, __pyx_lineno, __pyx_filename); - if (__Pyx_GetException(&__pyx_t_10, &__pyx_t_2, &__pyx_t_9) < 0) __PYX_ERR(0, 91, __pyx_L8_except_error) - __Pyx_GOTREF(__pyx_t_10); - __Pyx_GOTREF(__pyx_t_2); - __Pyx_GOTREF(__pyx_t_9); - - /* "pmercury/protocols/http_server.pyx":92 - * c.append('(%s)' % response[rh].hex()) - * except IndexError: - * c.append('()') # <<<<<<<<<<<<<< - * - * if len(t_) == 1: - */ - __pyx_t_11 = __Pyx_PyList_Append(__pyx_v_c, __pyx_kp_u__10); if (unlikely(__pyx_t_11 == ((int)-1))) __PYX_ERR(0, 92, __pyx_L8_except_error) - __Pyx_XDECREF(__pyx_t_10); __pyx_t_10 = 0; - __Pyx_XDECREF(__pyx_t_2); __pyx_t_2 = 0; - __Pyx_XDECREF(__pyx_t_9); __pyx_t_9 = 0; - goto __pyx_L7_exception_handled; - } - goto __pyx_L8_except_error; - __pyx_L8_except_error:; - - /* "pmercury/protocols/http_server.pyx":89 - * cdef list c = [] - * for rh in HTTP_Server.headers_data: - * try: # <<<<<<<<<<<<<< - * c.append('(%s)' % response[rh].hex()) - * except IndexError: - */ - __Pyx_XGIVEREF(__pyx_t_6); - __Pyx_XGIVEREF(__pyx_t_7); - __Pyx_XGIVEREF(__pyx_t_8); - __Pyx_ExceptionReset(__pyx_t_6, __pyx_t_7, __pyx_t_8); - goto __pyx_L1_error; - __pyx_L7_exception_handled:; - __Pyx_XGIVEREF(__pyx_t_6); - __Pyx_XGIVEREF(__pyx_t_7); - __Pyx_XGIVEREF(__pyx_t_8); - __Pyx_ExceptionReset(__pyx_t_6, __pyx_t_7, __pyx_t_8); - __pyx_L13_try_end:; - } - - /* "pmercury/protocols/http_server.pyx":88 - * - * cdef list c = [] - * for rh in HTTP_Server.headers_data: # <<<<<<<<<<<<<< - * try: - * c.append('(%s)' % response[rh].hex()) - */ - } - __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0; - - /* "pmercury/protocols/http_server.pyx":94 - * c.append('()') - * - * if len(t_) == 1: # <<<<<<<<<<<<<< - * return ''.join(c), None - * - */ - if (unlikely(__pyx_v_t_ == Py_None)) { - PyErr_SetString(PyExc_TypeError, "object of type 'NoneType' has no len()"); - __PYX_ERR(0, 94, __pyx_L1_error) - } - __pyx_t_3 = PyList_GET_SIZE(__pyx_v_t_); if (unlikely(__pyx_t_3 == ((Py_ssize_t)-1))) __PYX_ERR(0, 94, __pyx_L1_error) - __pyx_t_4 = ((__pyx_t_3 == 1) != 0); - if (__pyx_t_4) { - - /* "pmercury/protocols/http_server.pyx":95 - * - * if len(t_) == 1: - * return ''.join(c), None # <<<<<<<<<<<<<< - * - * cdef list headers = t_[1].split(b'\x0d\x0a') - */ - __Pyx_XDECREF(__pyx_r); - __pyx_t_1 = PyUnicode_Join(__pyx_kp_u__11, __pyx_v_c); if (unlikely(!__pyx_t_1)) __PYX_ERR(0, 95, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_1); - __pyx_t_9 = PyTuple_New(2); if (unlikely(!__pyx_t_9)) __PYX_ERR(0, 95, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_9); - __Pyx_GIVEREF(__pyx_t_1); - PyTuple_SET_ITEM(__pyx_t_9, 0, __pyx_t_1); - __Pyx_INCREF(Py_None); - __Pyx_GIVEREF(Py_None); - PyTuple_SET_ITEM(__pyx_t_9, 1, Py_None); - __pyx_t_1 = 0; - __pyx_r = __pyx_t_9; - __pyx_t_9 = 0; - goto __pyx_L0; - - /* "pmercury/protocols/http_server.pyx":94 - * c.append('()') - * - * if len(t_) == 1: # <<<<<<<<<<<<<< - * return ''.join(c), None - * - */ - } - - /* "pmercury/protocols/http_server.pyx":97 - * return ''.join(c), None - * - * cdef list headers = t_[1].split(b'\x0d\x0a') # <<<<<<<<<<<<<< - * if headers[0] == '': - * headers = headers[1:] - */ - if (unlikely(__pyx_v_t_ == Py_None)) { - PyErr_SetString(PyExc_TypeError, "'NoneType' object is not subscriptable"); - __PYX_ERR(0, 97, __pyx_L1_error) - } - __pyx_t_1 = __Pyx_GetItemInt_List(__pyx_v_t_, 1, long, 1, __Pyx_PyInt_From_long, 1, 0, 1); if (unlikely(!__pyx_t_1)) __PYX_ERR(0, 97, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_1); - __pyx_t_2 = __Pyx_PyObject_GetAttrStr(__pyx_t_1, __pyx_n_s_split); if (unlikely(!__pyx_t_2)) __PYX_ERR(0, 97, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_2); - __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0; - __pyx_t_1 = NULL; - if (CYTHON_UNPACK_METHODS && likely(PyMethod_Check(__pyx_t_2))) { - __pyx_t_1 = PyMethod_GET_SELF(__pyx_t_2); - if (likely(__pyx_t_1)) { - PyObject* function = PyMethod_GET_FUNCTION(__pyx_t_2); - __Pyx_INCREF(__pyx_t_1); - __Pyx_INCREF(function); - __Pyx_DECREF_SET(__pyx_t_2, function); - } - } - __pyx_t_9 = (__pyx_t_1) ? __Pyx_PyObject_Call2Args(__pyx_t_2, __pyx_t_1, __pyx_kp_b__5) : __Pyx_PyObject_CallOneArg(__pyx_t_2, __pyx_kp_b__5); - __Pyx_XDECREF(__pyx_t_1); __pyx_t_1 = 0; - if (unlikely(!__pyx_t_9)) __PYX_ERR(0, 97, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_9); - __Pyx_DECREF(__pyx_t_2); __pyx_t_2 = 0; - if (!(likely(PyList_CheckExact(__pyx_t_9))||((__pyx_t_9) == Py_None)||(PyErr_Format(PyExc_TypeError, "Expected %.16s, got %.200s", "list", Py_TYPE(__pyx_t_9)->tp_name), 0))) __PYX_ERR(0, 97, __pyx_L1_error) - __pyx_v_headers = ((PyObject*)__pyx_t_9); - __pyx_t_9 = 0; - - /* "pmercury/protocols/http_server.pyx":98 - * - * cdef list headers = t_[1].split(b'\x0d\x0a') - * if headers[0] == '': # <<<<<<<<<<<<<< - * headers = headers[1:] - * cdef bint http_ah = HTTP_Server.all_headers - */ - if (unlikely(__pyx_v_headers == Py_None)) { - PyErr_SetString(PyExc_TypeError, "'NoneType' object is not subscriptable"); - __PYX_ERR(0, 98, __pyx_L1_error) - } - __pyx_t_9 = __Pyx_GetItemInt_List(__pyx_v_headers, 0, long, 1, __Pyx_PyInt_From_long, 1, 0, 1); if (unlikely(!__pyx_t_9)) __PYX_ERR(0, 98, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_9); - __pyx_t_4 = (__Pyx_PyUnicode_Equals(__pyx_t_9, __pyx_kp_u__11, Py_EQ)); if (unlikely(__pyx_t_4 < 0)) __PYX_ERR(0, 98, __pyx_L1_error) - __Pyx_DECREF(__pyx_t_9); __pyx_t_9 = 0; - if (__pyx_t_4) { - - /* "pmercury/protocols/http_server.pyx":99 - * cdef list headers = t_[1].split(b'\x0d\x0a') - * if headers[0] == '': - * headers = headers[1:] # <<<<<<<<<<<<<< - * cdef bint http_ah = HTTP_Server.all_headers - * cdef bint http_ahd = HTTP_Server.all_headers_and_data - */ - if (unlikely(__pyx_v_headers == Py_None)) { - PyErr_SetString(PyExc_TypeError, "'NoneType' object is not subscriptable"); - __PYX_ERR(0, 99, __pyx_L1_error) - } - __pyx_t_9 = __Pyx_PyList_GetSlice(__pyx_v_headers, 1, PY_SSIZE_T_MAX); if (unlikely(!__pyx_t_9)) __PYX_ERR(0, 99, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_9); - __Pyx_DECREF_SET(__pyx_v_headers, ((PyObject*)__pyx_t_9)); - __pyx_t_9 = 0; - - /* "pmercury/protocols/http_server.pyx":98 - * - * cdef list headers = t_[1].split(b'\x0d\x0a') - * if headers[0] == '': # <<<<<<<<<<<<<< - * headers = headers[1:] - * cdef bint http_ah = HTTP_Server.all_headers - */ - } - - /* "pmercury/protocols/http_server.pyx":100 - * if headers[0] == '': - * headers = headers[1:] - * cdef bint http_ah = HTTP_Server.all_headers # <<<<<<<<<<<<<< - * cdef bint http_ahd = HTTP_Server.all_headers_and_data - * cdef set http_sn = HTTP_Server.static_names - */ - __Pyx_GetModuleGlobalName(__pyx_t_9, __pyx_n_s_HTTP_Server); if (unlikely(!__pyx_t_9)) __PYX_ERR(0, 100, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_9); - __pyx_t_2 = __Pyx_PyObject_GetAttrStr(__pyx_t_9, __pyx_n_s_all_headers); if (unlikely(!__pyx_t_2)) __PYX_ERR(0, 100, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_2); - __Pyx_DECREF(__pyx_t_9); __pyx_t_9 = 0; - __pyx_t_4 = __Pyx_PyObject_IsTrue(__pyx_t_2); if (unlikely((__pyx_t_4 == (int)-1) && PyErr_Occurred())) __PYX_ERR(0, 100, __pyx_L1_error) - __Pyx_DECREF(__pyx_t_2); __pyx_t_2 = 0; - __pyx_v_http_ah = __pyx_t_4; - - /* "pmercury/protocols/http_server.pyx":101 - * headers = headers[1:] - * cdef bint http_ah = HTTP_Server.all_headers - * cdef bint http_ahd = HTTP_Server.all_headers_and_data # <<<<<<<<<<<<<< - * cdef set http_sn = HTTP_Server.static_names - * cdef set http_snv = HTTP_Server.static_names_and_values - */ - __Pyx_GetModuleGlobalName(__pyx_t_2, __pyx_n_s_HTTP_Server); if (unlikely(!__pyx_t_2)) __PYX_ERR(0, 101, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_2); - __pyx_t_9 = __Pyx_PyObject_GetAttrStr(__pyx_t_2, __pyx_n_s_all_headers_and_data); if (unlikely(!__pyx_t_9)) __PYX_ERR(0, 101, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_9); - __Pyx_DECREF(__pyx_t_2); __pyx_t_2 = 0; - __pyx_t_4 = __Pyx_PyObject_IsTrue(__pyx_t_9); if (unlikely((__pyx_t_4 == (int)-1) && PyErr_Occurred())) __PYX_ERR(0, 101, __pyx_L1_error) - __Pyx_DECREF(__pyx_t_9); __pyx_t_9 = 0; - __pyx_v_http_ahd = __pyx_t_4; - - /* "pmercury/protocols/http_server.pyx":102 - * cdef bint http_ah = HTTP_Server.all_headers - * cdef bint http_ahd = HTTP_Server.all_headers_and_data - * cdef set http_sn = HTTP_Server.static_names # <<<<<<<<<<<<<< - * cdef set http_snv = HTTP_Server.static_names_and_values - * cdef dict http_ctx = HTTP_Server.contextual_data - */ - __Pyx_GetModuleGlobalName(__pyx_t_9, __pyx_n_s_HTTP_Server); if (unlikely(!__pyx_t_9)) __PYX_ERR(0, 102, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_9); - __pyx_t_2 = __Pyx_PyObject_GetAttrStr(__pyx_t_9, __pyx_n_s_static_names); if (unlikely(!__pyx_t_2)) __PYX_ERR(0, 102, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_2); - __Pyx_DECREF(__pyx_t_9); __pyx_t_9 = 0; - if (!(likely(PySet_CheckExact(__pyx_t_2))||((__pyx_t_2) == Py_None)||(PyErr_Format(PyExc_TypeError, "Expected %.16s, got %.200s", "set", Py_TYPE(__pyx_t_2)->tp_name), 0))) __PYX_ERR(0, 102, __pyx_L1_error) - __pyx_v_http_sn = ((PyObject*)__pyx_t_2); - __pyx_t_2 = 0; - - /* "pmercury/protocols/http_server.pyx":103 - * cdef bint http_ahd = HTTP_Server.all_headers_and_data - * cdef set http_sn = HTTP_Server.static_names - * cdef set http_snv = HTTP_Server.static_names_and_values # <<<<<<<<<<<<<< - * cdef dict http_ctx = HTTP_Server.contextual_data - * cdef str h_c - */ - __Pyx_GetModuleGlobalName(__pyx_t_2, __pyx_n_s_HTTP_Server); if (unlikely(!__pyx_t_2)) __PYX_ERR(0, 103, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_2); - __pyx_t_9 = __Pyx_PyObject_GetAttrStr(__pyx_t_2, __pyx_n_s_static_names_and_values); if (unlikely(!__pyx_t_9)) __PYX_ERR(0, 103, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_9); - __Pyx_DECREF(__pyx_t_2); __pyx_t_2 = 0; - if (!(likely(PySet_CheckExact(__pyx_t_9))||((__pyx_t_9) == Py_None)||(PyErr_Format(PyExc_TypeError, "Expected %.16s, got %.200s", "set", Py_TYPE(__pyx_t_9)->tp_name), 0))) __PYX_ERR(0, 103, __pyx_L1_error) - __pyx_v_http_snv = ((PyObject*)__pyx_t_9); - __pyx_t_9 = 0; - - /* "pmercury/protocols/http_server.pyx":104 - * cdef set http_sn = HTTP_Server.static_names - * cdef set http_snv = HTTP_Server.static_names_and_values - * cdef dict http_ctx = HTTP_Server.contextual_data # <<<<<<<<<<<<<< - * cdef str h_c - * context = [] - */ - __Pyx_GetModuleGlobalName(__pyx_t_9, __pyx_n_s_HTTP_Server); if (unlikely(!__pyx_t_9)) __PYX_ERR(0, 104, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_9); - __pyx_t_2 = __Pyx_PyObject_GetAttrStr(__pyx_t_9, __pyx_n_s_contextual_data); if (unlikely(!__pyx_t_2)) __PYX_ERR(0, 104, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_2); - __Pyx_DECREF(__pyx_t_9); __pyx_t_9 = 0; - if (!(likely(PyDict_CheckExact(__pyx_t_2))||((__pyx_t_2) == Py_None)||(PyErr_Format(PyExc_TypeError, "Expected %.16s, got %.200s", "dict", Py_TYPE(__pyx_t_2)->tp_name), 0))) __PYX_ERR(0, 104, __pyx_L1_error) - __pyx_v_http_ctx = ((PyObject*)__pyx_t_2); - __pyx_t_2 = 0; - - /* "pmercury/protocols/http_server.pyx":106 - * cdef dict http_ctx = HTTP_Server.contextual_data - * cdef str h_c - * context = [] # <<<<<<<<<<<<<< - * for h_ in headers: - * if h_ == b'': - */ - __pyx_t_2 = PyList_New(0); if (unlikely(!__pyx_t_2)) __PYX_ERR(0, 106, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_2); - __pyx_v_context = ((PyObject*)__pyx_t_2); - __pyx_t_2 = 0; - - /* "pmercury/protocols/http_server.pyx":107 - * cdef str h_c - * context = [] - * for h_ in headers: # <<<<<<<<<<<<<< - * if h_ == b'': - * break - */ - if (unlikely(__pyx_v_headers == Py_None)) { - PyErr_SetString(PyExc_TypeError, "'NoneType' object is not iterable"); - __PYX_ERR(0, 107, __pyx_L1_error) - } - __pyx_t_2 = __pyx_v_headers; __Pyx_INCREF(__pyx_t_2); __pyx_t_3 = 0; - for (;;) { - if (__pyx_t_3 >= PyList_GET_SIZE(__pyx_t_2)) break; - #if CYTHON_ASSUME_SAFE_MACROS && !CYTHON_AVOID_BORROWED_REFS - __pyx_t_9 = PyList_GET_ITEM(__pyx_t_2, __pyx_t_3); __Pyx_INCREF(__pyx_t_9); __pyx_t_3++; if (unlikely(0 < 0)) __PYX_ERR(0, 107, __pyx_L1_error) - #else - __pyx_t_9 = PySequence_ITEM(__pyx_t_2, __pyx_t_3); __pyx_t_3++; if (unlikely(!__pyx_t_9)) __PYX_ERR(0, 107, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_9); - #endif - __Pyx_XDECREF_SET(__pyx_v_h_, __pyx_t_9); - __pyx_t_9 = 0; - - /* "pmercury/protocols/http_server.pyx":108 - * context = [] - * for h_ in headers: - * if h_ == b'': # <<<<<<<<<<<<<< - * break - * t0_ = h_.split(b'\x3a\x20',1)[0] - */ - __pyx_t_4 = (__Pyx_PyBytes_Equals(__pyx_v_h_, __pyx_kp_b__11, Py_EQ)); if (unlikely(__pyx_t_4 < 0)) __PYX_ERR(0, 108, __pyx_L1_error) - if (__pyx_t_4) { - - /* "pmercury/protocols/http_server.pyx":109 - * for h_ in headers: - * if h_ == b'': - * break # <<<<<<<<<<<<<< - * t0_ = h_.split(b'\x3a\x20',1)[0] - * t0_lower = t0_.lower() - */ - goto __pyx_L19_break; - - /* "pmercury/protocols/http_server.pyx":108 - * context = [] - * for h_ in headers: - * if h_ == b'': # <<<<<<<<<<<<<< - * break - * t0_ = h_.split(b'\x3a\x20',1)[0] - */ - } - - /* "pmercury/protocols/http_server.pyx":110 - * if h_ == b'': - * break - * t0_ = h_.split(b'\x3a\x20',1)[0] # <<<<<<<<<<<<<< - * t0_lower = t0_.lower() - * - */ - __pyx_t_9 = __Pyx_PyObject_GetAttrStr(__pyx_v_h_, __pyx_n_s_split); if (unlikely(!__pyx_t_9)) __PYX_ERR(0, 110, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_9); - __pyx_t_1 = __Pyx_PyObject_Call(__pyx_t_9, __pyx_tuple__13, NULL); if (unlikely(!__pyx_t_1)) __PYX_ERR(0, 110, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_1); - __Pyx_DECREF(__pyx_t_9); __pyx_t_9 = 0; - __pyx_t_9 = __Pyx_GetItemInt(__pyx_t_1, 0, long, 1, __Pyx_PyInt_From_long, 0, 0, 1); if (unlikely(!__pyx_t_9)) __PYX_ERR(0, 110, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_9); - __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0; - __Pyx_XDECREF_SET(__pyx_v_t0_, __pyx_t_9); - __pyx_t_9 = 0; - - /* "pmercury/protocols/http_server.pyx":111 - * break - * t0_ = h_.split(b'\x3a\x20',1)[0] - * t0_lower = t0_.lower() # <<<<<<<<<<<<<< - * - * h_c = '' - */ - __pyx_t_1 = __Pyx_PyObject_GetAttrStr(__pyx_v_t0_, __pyx_n_s_lower); if (unlikely(!__pyx_t_1)) __PYX_ERR(0, 111, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_1); - __pyx_t_10 = NULL; - if (CYTHON_UNPACK_METHODS && likely(PyMethod_Check(__pyx_t_1))) { - __pyx_t_10 = PyMethod_GET_SELF(__pyx_t_1); - if (likely(__pyx_t_10)) { - PyObject* function = PyMethod_GET_FUNCTION(__pyx_t_1); - __Pyx_INCREF(__pyx_t_10); - __Pyx_INCREF(function); - __Pyx_DECREF_SET(__pyx_t_1, function); - } - } - __pyx_t_9 = (__pyx_t_10) ? __Pyx_PyObject_CallOneArg(__pyx_t_1, __pyx_t_10) : __Pyx_PyObject_CallNoArg(__pyx_t_1); - __Pyx_XDECREF(__pyx_t_10); __pyx_t_10 = 0; - if (unlikely(!__pyx_t_9)) __PYX_ERR(0, 111, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_9); - __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0; - __Pyx_XDECREF_SET(__pyx_v_t0_lower, __pyx_t_9); - __pyx_t_9 = 0; - - /* "pmercury/protocols/http_server.pyx":113 - * t0_lower = t0_.lower() - * - * h_c = '' # <<<<<<<<<<<<<< - * if http_ahd: - * h_c = h_.hex() - */ - __Pyx_INCREF(__pyx_kp_u__11); - __Pyx_XDECREF_SET(__pyx_v_h_c, __pyx_kp_u__11); - - /* "pmercury/protocols/http_server.pyx":114 - * - * h_c = '' - * if http_ahd: # <<<<<<<<<<<<<< - * h_c = h_.hex() - * elif t0_lower in http_snv: - */ - __pyx_t_4 = (__pyx_v_http_ahd != 0); - if (__pyx_t_4) { - - /* "pmercury/protocols/http_server.pyx":115 - * h_c = '' - * if http_ahd: - * h_c = h_.hex() # <<<<<<<<<<<<<< - * elif t0_lower in http_snv: - * h_c = h_.hex() - */ - __pyx_t_1 = __Pyx_PyObject_GetAttrStr(__pyx_v_h_, __pyx_n_s_hex); if (unlikely(!__pyx_t_1)) __PYX_ERR(0, 115, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_1); - __pyx_t_10 = NULL; - if (CYTHON_UNPACK_METHODS && likely(PyMethod_Check(__pyx_t_1))) { - __pyx_t_10 = PyMethod_GET_SELF(__pyx_t_1); - if (likely(__pyx_t_10)) { - PyObject* function = PyMethod_GET_FUNCTION(__pyx_t_1); - __Pyx_INCREF(__pyx_t_10); - __Pyx_INCREF(function); - __Pyx_DECREF_SET(__pyx_t_1, function); - } - } - __pyx_t_9 = (__pyx_t_10) ? __Pyx_PyObject_CallOneArg(__pyx_t_1, __pyx_t_10) : __Pyx_PyObject_CallNoArg(__pyx_t_1); - __Pyx_XDECREF(__pyx_t_10); __pyx_t_10 = 0; - if (unlikely(!__pyx_t_9)) __PYX_ERR(0, 115, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_9); - __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0; - if (!(likely(PyUnicode_CheckExact(__pyx_t_9))||((__pyx_t_9) == Py_None)||(PyErr_Format(PyExc_TypeError, "Expected %.16s, got %.200s", "unicode", Py_TYPE(__pyx_t_9)->tp_name), 0))) __PYX_ERR(0, 115, __pyx_L1_error) - __Pyx_DECREF_SET(__pyx_v_h_c, ((PyObject*)__pyx_t_9)); - __pyx_t_9 = 0; - - /* "pmercury/protocols/http_server.pyx":114 - * - * h_c = '' - * if http_ahd: # <<<<<<<<<<<<<< - * h_c = h_.hex() - * elif t0_lower in http_snv: - */ - goto __pyx_L21; - } - - /* "pmercury/protocols/http_server.pyx":116 - * if http_ahd: - * h_c = h_.hex() - * elif t0_lower in http_snv: # <<<<<<<<<<<<<< - * h_c = h_.hex() - * elif t0_lower in http_sn: - */ - if (unlikely(__pyx_v_http_snv == Py_None)) { - PyErr_SetString(PyExc_TypeError, "'NoneType' object is not iterable"); - __PYX_ERR(0, 116, __pyx_L1_error) - } - __pyx_t_4 = (__Pyx_PySet_ContainsTF(__pyx_v_t0_lower, __pyx_v_http_snv, Py_EQ)); if (unlikely(__pyx_t_4 < 0)) __PYX_ERR(0, 116, __pyx_L1_error) - __pyx_t_13 = (__pyx_t_4 != 0); - if (__pyx_t_13) { - - /* "pmercury/protocols/http_server.pyx":117 - * h_c = h_.hex() - * elif t0_lower in http_snv: - * h_c = h_.hex() # <<<<<<<<<<<<<< - * elif t0_lower in http_sn: - * h_c = t0_.hex() - */ - __pyx_t_1 = __Pyx_PyObject_GetAttrStr(__pyx_v_h_, __pyx_n_s_hex); if (unlikely(!__pyx_t_1)) __PYX_ERR(0, 117, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_1); - __pyx_t_10 = NULL; - if (CYTHON_UNPACK_METHODS && likely(PyMethod_Check(__pyx_t_1))) { - __pyx_t_10 = PyMethod_GET_SELF(__pyx_t_1); - if (likely(__pyx_t_10)) { - PyObject* function = PyMethod_GET_FUNCTION(__pyx_t_1); - __Pyx_INCREF(__pyx_t_10); - __Pyx_INCREF(function); - __Pyx_DECREF_SET(__pyx_t_1, function); - } - } - __pyx_t_9 = (__pyx_t_10) ? __Pyx_PyObject_CallOneArg(__pyx_t_1, __pyx_t_10) : __Pyx_PyObject_CallNoArg(__pyx_t_1); - __Pyx_XDECREF(__pyx_t_10); __pyx_t_10 = 0; - if (unlikely(!__pyx_t_9)) __PYX_ERR(0, 117, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_9); - __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0; - if (!(likely(PyUnicode_CheckExact(__pyx_t_9))||((__pyx_t_9) == Py_None)||(PyErr_Format(PyExc_TypeError, "Expected %.16s, got %.200s", "unicode", Py_TYPE(__pyx_t_9)->tp_name), 0))) __PYX_ERR(0, 117, __pyx_L1_error) - __Pyx_DECREF_SET(__pyx_v_h_c, ((PyObject*)__pyx_t_9)); - __pyx_t_9 = 0; - - /* "pmercury/protocols/http_server.pyx":116 - * if http_ahd: - * h_c = h_.hex() - * elif t0_lower in http_snv: # <<<<<<<<<<<<<< - * h_c = h_.hex() - * elif t0_lower in http_sn: - */ - goto __pyx_L21; - } - - /* "pmercury/protocols/http_server.pyx":118 - * elif t0_lower in http_snv: - * h_c = h_.hex() - * elif t0_lower in http_sn: # <<<<<<<<<<<<<< - * h_c = t0_.hex() - * elif http_ah: - */ - if (unlikely(__pyx_v_http_sn == Py_None)) { - PyErr_SetString(PyExc_TypeError, "'NoneType' object is not iterable"); - __PYX_ERR(0, 118, __pyx_L1_error) - } - __pyx_t_13 = (__Pyx_PySet_ContainsTF(__pyx_v_t0_lower, __pyx_v_http_sn, Py_EQ)); if (unlikely(__pyx_t_13 < 0)) __PYX_ERR(0, 118, __pyx_L1_error) - __pyx_t_4 = (__pyx_t_13 != 0); - if (__pyx_t_4) { - - /* "pmercury/protocols/http_server.pyx":119 - * h_c = h_.hex() - * elif t0_lower in http_sn: - * h_c = t0_.hex() # <<<<<<<<<<<<<< - * elif http_ah: - * h_c = t0_.hex() - */ - __pyx_t_1 = __Pyx_PyObject_GetAttrStr(__pyx_v_t0_, __pyx_n_s_hex); if (unlikely(!__pyx_t_1)) __PYX_ERR(0, 119, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_1); - __pyx_t_10 = NULL; - if (CYTHON_UNPACK_METHODS && likely(PyMethod_Check(__pyx_t_1))) { - __pyx_t_10 = PyMethod_GET_SELF(__pyx_t_1); - if (likely(__pyx_t_10)) { - PyObject* function = PyMethod_GET_FUNCTION(__pyx_t_1); - __Pyx_INCREF(__pyx_t_10); - __Pyx_INCREF(function); - __Pyx_DECREF_SET(__pyx_t_1, function); - } - } - __pyx_t_9 = (__pyx_t_10) ? __Pyx_PyObject_CallOneArg(__pyx_t_1, __pyx_t_10) : __Pyx_PyObject_CallNoArg(__pyx_t_1); - __Pyx_XDECREF(__pyx_t_10); __pyx_t_10 = 0; - if (unlikely(!__pyx_t_9)) __PYX_ERR(0, 119, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_9); - __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0; - if (!(likely(PyUnicode_CheckExact(__pyx_t_9))||((__pyx_t_9) == Py_None)||(PyErr_Format(PyExc_TypeError, "Expected %.16s, got %.200s", "unicode", Py_TYPE(__pyx_t_9)->tp_name), 0))) __PYX_ERR(0, 119, __pyx_L1_error) - __Pyx_DECREF_SET(__pyx_v_h_c, ((PyObject*)__pyx_t_9)); - __pyx_t_9 = 0; - - /* "pmercury/protocols/http_server.pyx":118 - * elif t0_lower in http_snv: - * h_c = h_.hex() - * elif t0_lower in http_sn: # <<<<<<<<<<<<<< - * h_c = t0_.hex() - * elif http_ah: - */ - goto __pyx_L21; - } - - /* "pmercury/protocols/http_server.pyx":120 - * elif t0_lower in http_sn: - * h_c = t0_.hex() - * elif http_ah: # <<<<<<<<<<<<<< - * h_c = t0_.hex() - * - */ - __pyx_t_4 = (__pyx_v_http_ah != 0); - if (__pyx_t_4) { - - /* "pmercury/protocols/http_server.pyx":121 - * h_c = t0_.hex() - * elif http_ah: - * h_c = t0_.hex() # <<<<<<<<<<<<<< - * - * if h_c != '': - */ - __pyx_t_1 = __Pyx_PyObject_GetAttrStr(__pyx_v_t0_, __pyx_n_s_hex); if (unlikely(!__pyx_t_1)) __PYX_ERR(0, 121, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_1); - __pyx_t_10 = NULL; - if (CYTHON_UNPACK_METHODS && likely(PyMethod_Check(__pyx_t_1))) { - __pyx_t_10 = PyMethod_GET_SELF(__pyx_t_1); - if (likely(__pyx_t_10)) { - PyObject* function = PyMethod_GET_FUNCTION(__pyx_t_1); - __Pyx_INCREF(__pyx_t_10); - __Pyx_INCREF(function); - __Pyx_DECREF_SET(__pyx_t_1, function); - } - } - __pyx_t_9 = (__pyx_t_10) ? __Pyx_PyObject_CallOneArg(__pyx_t_1, __pyx_t_10) : __Pyx_PyObject_CallNoArg(__pyx_t_1); - __Pyx_XDECREF(__pyx_t_10); __pyx_t_10 = 0; - if (unlikely(!__pyx_t_9)) __PYX_ERR(0, 121, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_9); - __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0; - if (!(likely(PyUnicode_CheckExact(__pyx_t_9))||((__pyx_t_9) == Py_None)||(PyErr_Format(PyExc_TypeError, "Expected %.16s, got %.200s", "unicode", Py_TYPE(__pyx_t_9)->tp_name), 0))) __PYX_ERR(0, 121, __pyx_L1_error) - __Pyx_DECREF_SET(__pyx_v_h_c, ((PyObject*)__pyx_t_9)); - __pyx_t_9 = 0; - - /* "pmercury/protocols/http_server.pyx":120 - * elif t0_lower in http_sn: - * h_c = t0_.hex() - * elif http_ah: # <<<<<<<<<<<<<< - * h_c = t0_.hex() - * - */ - } - __pyx_L21:; - - /* "pmercury/protocols/http_server.pyx":123 - * h_c = t0_.hex() - * - * if h_c != '': # <<<<<<<<<<<<<< - * c.append('(%s)' % h_c) - * if t0_lower in http_ctx: - */ - __pyx_t_4 = (__Pyx_PyUnicode_Equals(__pyx_v_h_c, __pyx_kp_u__11, Py_NE)); if (unlikely(__pyx_t_4 < 0)) __PYX_ERR(0, 123, __pyx_L1_error) - __pyx_t_13 = (__pyx_t_4 != 0); - if (__pyx_t_13) { - - /* "pmercury/protocols/http_server.pyx":124 - * - * if h_c != '': - * c.append('(%s)' % h_c) # <<<<<<<<<<<<<< - * if t0_lower in http_ctx: - * if b'\x3a\x20' in h_: - */ - __pyx_t_9 = PyUnicode_Format(__pyx_kp_u_s, __pyx_v_h_c); if (unlikely(!__pyx_t_9)) __PYX_ERR(0, 124, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_9); - __pyx_t_11 = __Pyx_PyList_Append(__pyx_v_c, __pyx_t_9); if (unlikely(__pyx_t_11 == ((int)-1))) __PYX_ERR(0, 124, __pyx_L1_error) - __Pyx_DECREF(__pyx_t_9); __pyx_t_9 = 0; - - /* "pmercury/protocols/http_server.pyx":123 - * h_c = t0_.hex() - * - * if h_c != '': # <<<<<<<<<<<<<< - * c.append('(%s)' % h_c) - * if t0_lower in http_ctx: - */ - } - - /* "pmercury/protocols/http_server.pyx":125 - * if h_c != '': - * c.append('(%s)' % h_c) - * if t0_lower in http_ctx: # <<<<<<<<<<<<<< - * if b'\x3a\x20' in h_: - * try: - */ - if (unlikely(__pyx_v_http_ctx == Py_None)) { - PyErr_SetString(PyExc_TypeError, "'NoneType' object is not iterable"); - __PYX_ERR(0, 125, __pyx_L1_error) - } - __pyx_t_13 = (__Pyx_PyDict_ContainsTF(__pyx_v_t0_lower, __pyx_v_http_ctx, Py_EQ)); if (unlikely(__pyx_t_13 < 0)) __PYX_ERR(0, 125, __pyx_L1_error) - __pyx_t_4 = (__pyx_t_13 != 0); - if (__pyx_t_4) { - - /* "pmercury/protocols/http_server.pyx":126 - * c.append('(%s)' % h_c) - * if t0_lower in http_ctx: - * if b'\x3a\x20' in h_: # <<<<<<<<<<<<<< - * try: - * context.append({'name':http_ctx[t0_lower], 'data':h_.split(b'\x3a\x20',1)[1].decode()}) - */ - __pyx_t_4 = (__Pyx_PySequence_ContainsTF(__pyx_kp_b__12, __pyx_v_h_, Py_EQ)); if (unlikely(__pyx_t_4 < 0)) __PYX_ERR(0, 126, __pyx_L1_error) - __pyx_t_13 = (__pyx_t_4 != 0); - if (__pyx_t_13) { - - /* "pmercury/protocols/http_server.pyx":127 - * if t0_lower in http_ctx: - * if b'\x3a\x20' in h_: - * try: # <<<<<<<<<<<<<< - * context.append({'name':http_ctx[t0_lower], 'data':h_.split(b'\x3a\x20',1)[1].decode()}) - * except UnicodeDecodeError: - */ - { - __Pyx_PyThreadState_declare - __Pyx_PyThreadState_assign - __Pyx_ExceptionSave(&__pyx_t_8, &__pyx_t_7, &__pyx_t_6); - __Pyx_XGOTREF(__pyx_t_8); - __Pyx_XGOTREF(__pyx_t_7); - __Pyx_XGOTREF(__pyx_t_6); - /*try:*/ { - - /* "pmercury/protocols/http_server.pyx":128 - * if b'\x3a\x20' in h_: - * try: - * context.append({'name':http_ctx[t0_lower], 'data':h_.split(b'\x3a\x20',1)[1].decode()}) # <<<<<<<<<<<<<< - * except UnicodeDecodeError: - * context.append({'name':http_ctx[t0_lower], 'data':h_.split(b'\x3a\x20',1)[1].hex()}) - */ - __pyx_t_9 = __Pyx_PyDict_NewPresized(2); if (unlikely(!__pyx_t_9)) __PYX_ERR(0, 128, __pyx_L25_error) - __Pyx_GOTREF(__pyx_t_9); - if (unlikely(__pyx_v_http_ctx == Py_None)) { - PyErr_SetString(PyExc_TypeError, "'NoneType' object is not subscriptable"); - __PYX_ERR(0, 128, __pyx_L25_error) - } - __pyx_t_1 = __Pyx_PyDict_GetItem(__pyx_v_http_ctx, __pyx_v_t0_lower); if (unlikely(!__pyx_t_1)) __PYX_ERR(0, 128, __pyx_L25_error) - __Pyx_GOTREF(__pyx_t_1); - if (PyDict_SetItem(__pyx_t_9, __pyx_n_u_name, __pyx_t_1) < 0) __PYX_ERR(0, 128, __pyx_L25_error) - __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0; - __pyx_t_10 = __Pyx_PyObject_GetAttrStr(__pyx_v_h_, __pyx_n_s_split); if (unlikely(!__pyx_t_10)) __PYX_ERR(0, 128, __pyx_L25_error) - __Pyx_GOTREF(__pyx_t_10); - __pyx_t_14 = __Pyx_PyObject_Call(__pyx_t_10, __pyx_tuple__13, NULL); if (unlikely(!__pyx_t_14)) __PYX_ERR(0, 128, __pyx_L25_error) - __Pyx_GOTREF(__pyx_t_14); - __Pyx_DECREF(__pyx_t_10); __pyx_t_10 = 0; - __pyx_t_10 = __Pyx_GetItemInt(__pyx_t_14, 1, long, 1, __Pyx_PyInt_From_long, 0, 0, 1); if (unlikely(!__pyx_t_10)) __PYX_ERR(0, 128, __pyx_L25_error) - __Pyx_GOTREF(__pyx_t_10); - __Pyx_DECREF(__pyx_t_14); __pyx_t_14 = 0; - __pyx_t_14 = __Pyx_PyObject_GetAttrStr(__pyx_t_10, __pyx_n_s_decode); if (unlikely(!__pyx_t_14)) __PYX_ERR(0, 128, __pyx_L25_error) - __Pyx_GOTREF(__pyx_t_14); - __Pyx_DECREF(__pyx_t_10); __pyx_t_10 = 0; - __pyx_t_10 = NULL; - if (CYTHON_UNPACK_METHODS && likely(PyMethod_Check(__pyx_t_14))) { - __pyx_t_10 = PyMethod_GET_SELF(__pyx_t_14); - if (likely(__pyx_t_10)) { - PyObject* function = PyMethod_GET_FUNCTION(__pyx_t_14); - __Pyx_INCREF(__pyx_t_10); - __Pyx_INCREF(function); - __Pyx_DECREF_SET(__pyx_t_14, function); - } - } - __pyx_t_1 = (__pyx_t_10) ? __Pyx_PyObject_CallOneArg(__pyx_t_14, __pyx_t_10) : __Pyx_PyObject_CallNoArg(__pyx_t_14); - __Pyx_XDECREF(__pyx_t_10); __pyx_t_10 = 0; - if (unlikely(!__pyx_t_1)) __PYX_ERR(0, 128, __pyx_L25_error) - __Pyx_GOTREF(__pyx_t_1); - __Pyx_DECREF(__pyx_t_14); __pyx_t_14 = 0; - if (PyDict_SetItem(__pyx_t_9, __pyx_n_u_data, __pyx_t_1) < 0) __PYX_ERR(0, 128, __pyx_L25_error) - __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0; - __pyx_t_11 = __Pyx_PyList_Append(__pyx_v_context, __pyx_t_9); if (unlikely(__pyx_t_11 == ((int)-1))) __PYX_ERR(0, 128, __pyx_L25_error) - __Pyx_DECREF(__pyx_t_9); __pyx_t_9 = 0; - - /* "pmercury/protocols/http_server.pyx":127 - * if t0_lower in http_ctx: - * if b'\x3a\x20' in h_: - * try: # <<<<<<<<<<<<<< - * context.append({'name':http_ctx[t0_lower], 'data':h_.split(b'\x3a\x20',1)[1].decode()}) - * except UnicodeDecodeError: - */ - } - __Pyx_XDECREF(__pyx_t_8); __pyx_t_8 = 0; - __Pyx_XDECREF(__pyx_t_7); __pyx_t_7 = 0; - __Pyx_XDECREF(__pyx_t_6); __pyx_t_6 = 0; - goto __pyx_L32_try_end; - __pyx_L25_error:; - __Pyx_XDECREF(__pyx_t_1); __pyx_t_1 = 0; - __Pyx_XDECREF(__pyx_t_10); __pyx_t_10 = 0; - __Pyx_XDECREF(__pyx_t_14); __pyx_t_14 = 0; - __Pyx_XDECREF(__pyx_t_9); __pyx_t_9 = 0; - - /* "pmercury/protocols/http_server.pyx":129 - * try: - * context.append({'name':http_ctx[t0_lower], 'data':h_.split(b'\x3a\x20',1)[1].decode()}) - * except UnicodeDecodeError: # <<<<<<<<<<<<<< - * context.append({'name':http_ctx[t0_lower], 'data':h_.split(b'\x3a\x20',1)[1].hex()}) - * else: - */ - __pyx_t_12 = __Pyx_PyErr_ExceptionMatches(__pyx_builtin_UnicodeDecodeError); - if (__pyx_t_12) { - __Pyx_AddTraceback("pmercury.protocols.http_server.HTTP_Server.fingerprint", __pyx_clineno, __pyx_lineno, __pyx_filename); - if (__Pyx_GetException(&__pyx_t_9, &__pyx_t_1, &__pyx_t_14) < 0) __PYX_ERR(0, 129, __pyx_L27_except_error) - __Pyx_GOTREF(__pyx_t_9); - __Pyx_GOTREF(__pyx_t_1); - __Pyx_GOTREF(__pyx_t_14); - - /* "pmercury/protocols/http_server.pyx":130 - * context.append({'name':http_ctx[t0_lower], 'data':h_.split(b'\x3a\x20',1)[1].decode()}) - * except UnicodeDecodeError: - * context.append({'name':http_ctx[t0_lower], 'data':h_.split(b'\x3a\x20',1)[1].hex()}) # <<<<<<<<<<<<<< - * else: - * context.append({'name':http_ctx[t0_lower], 'data':''}) - */ - __pyx_t_10 = __Pyx_PyDict_NewPresized(2); if (unlikely(!__pyx_t_10)) __PYX_ERR(0, 130, __pyx_L27_except_error) - __Pyx_GOTREF(__pyx_t_10); - if (unlikely(__pyx_v_http_ctx == Py_None)) { - PyErr_SetString(PyExc_TypeError, "'NoneType' object is not subscriptable"); - __PYX_ERR(0, 130, __pyx_L27_except_error) - } - __pyx_t_15 = __Pyx_PyDict_GetItem(__pyx_v_http_ctx, __pyx_v_t0_lower); if (unlikely(!__pyx_t_15)) __PYX_ERR(0, 130, __pyx_L27_except_error) - __Pyx_GOTREF(__pyx_t_15); - if (PyDict_SetItem(__pyx_t_10, __pyx_n_u_name, __pyx_t_15) < 0) __PYX_ERR(0, 130, __pyx_L27_except_error) - __Pyx_DECREF(__pyx_t_15); __pyx_t_15 = 0; - __pyx_t_16 = __Pyx_PyObject_GetAttrStr(__pyx_v_h_, __pyx_n_s_split); if (unlikely(!__pyx_t_16)) __PYX_ERR(0, 130, __pyx_L27_except_error) - __Pyx_GOTREF(__pyx_t_16); - __pyx_t_17 = __Pyx_PyObject_Call(__pyx_t_16, __pyx_tuple__13, NULL); if (unlikely(!__pyx_t_17)) __PYX_ERR(0, 130, __pyx_L27_except_error) - __Pyx_GOTREF(__pyx_t_17); - __Pyx_DECREF(__pyx_t_16); __pyx_t_16 = 0; - __pyx_t_16 = __Pyx_GetItemInt(__pyx_t_17, 1, long, 1, __Pyx_PyInt_From_long, 0, 0, 1); if (unlikely(!__pyx_t_16)) __PYX_ERR(0, 130, __pyx_L27_except_error) - __Pyx_GOTREF(__pyx_t_16); - __Pyx_DECREF(__pyx_t_17); __pyx_t_17 = 0; - __pyx_t_17 = __Pyx_PyObject_GetAttrStr(__pyx_t_16, __pyx_n_s_hex); if (unlikely(!__pyx_t_17)) __PYX_ERR(0, 130, __pyx_L27_except_error) - __Pyx_GOTREF(__pyx_t_17); - __Pyx_DECREF(__pyx_t_16); __pyx_t_16 = 0; - __pyx_t_16 = NULL; - if (CYTHON_UNPACK_METHODS && likely(PyMethod_Check(__pyx_t_17))) { - __pyx_t_16 = PyMethod_GET_SELF(__pyx_t_17); - if (likely(__pyx_t_16)) { - PyObject* function = PyMethod_GET_FUNCTION(__pyx_t_17); - __Pyx_INCREF(__pyx_t_16); - __Pyx_INCREF(function); - __Pyx_DECREF_SET(__pyx_t_17, function); - } - } - __pyx_t_15 = (__pyx_t_16) ? __Pyx_PyObject_CallOneArg(__pyx_t_17, __pyx_t_16) : __Pyx_PyObject_CallNoArg(__pyx_t_17); - __Pyx_XDECREF(__pyx_t_16); __pyx_t_16 = 0; - if (unlikely(!__pyx_t_15)) __PYX_ERR(0, 130, __pyx_L27_except_error) - __Pyx_GOTREF(__pyx_t_15); - __Pyx_DECREF(__pyx_t_17); __pyx_t_17 = 0; - if (PyDict_SetItem(__pyx_t_10, __pyx_n_u_data, __pyx_t_15) < 0) __PYX_ERR(0, 130, __pyx_L27_except_error) - __Pyx_DECREF(__pyx_t_15); __pyx_t_15 = 0; - __pyx_t_11 = __Pyx_PyList_Append(__pyx_v_context, __pyx_t_10); if (unlikely(__pyx_t_11 == ((int)-1))) __PYX_ERR(0, 130, __pyx_L27_except_error) - __Pyx_DECREF(__pyx_t_10); __pyx_t_10 = 0; - __Pyx_XDECREF(__pyx_t_9); __pyx_t_9 = 0; - __Pyx_XDECREF(__pyx_t_1); __pyx_t_1 = 0; - __Pyx_XDECREF(__pyx_t_14); __pyx_t_14 = 0; - goto __pyx_L26_exception_handled; - } - goto __pyx_L27_except_error; - __pyx_L27_except_error:; - - /* "pmercury/protocols/http_server.pyx":127 - * if t0_lower in http_ctx: - * if b'\x3a\x20' in h_: - * try: # <<<<<<<<<<<<<< - * context.append({'name':http_ctx[t0_lower], 'data':h_.split(b'\x3a\x20',1)[1].decode()}) - * except UnicodeDecodeError: - */ - __Pyx_XGIVEREF(__pyx_t_8); - __Pyx_XGIVEREF(__pyx_t_7); - __Pyx_XGIVEREF(__pyx_t_6); - __Pyx_ExceptionReset(__pyx_t_8, __pyx_t_7, __pyx_t_6); - goto __pyx_L1_error; - __pyx_L26_exception_handled:; - __Pyx_XGIVEREF(__pyx_t_8); - __Pyx_XGIVEREF(__pyx_t_7); - __Pyx_XGIVEREF(__pyx_t_6); - __Pyx_ExceptionReset(__pyx_t_8, __pyx_t_7, __pyx_t_6); - __pyx_L32_try_end:; - } - - /* "pmercury/protocols/http_server.pyx":126 - * c.append('(%s)' % h_c) - * if t0_lower in http_ctx: - * if b'\x3a\x20' in h_: # <<<<<<<<<<<<<< - * try: - * context.append({'name':http_ctx[t0_lower], 'data':h_.split(b'\x3a\x20',1)[1].decode()}) - */ - goto __pyx_L24; - } - - /* "pmercury/protocols/http_server.pyx":132 - * context.append({'name':http_ctx[t0_lower], 'data':h_.split(b'\x3a\x20',1)[1].hex()}) - * else: - * context.append({'name':http_ctx[t0_lower], 'data':''}) # <<<<<<<<<<<<<< - * - * return ''.join(c), context - */ - /*else*/ { - __pyx_t_14 = __Pyx_PyDict_NewPresized(2); if (unlikely(!__pyx_t_14)) __PYX_ERR(0, 132, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_14); - if (unlikely(__pyx_v_http_ctx == Py_None)) { - PyErr_SetString(PyExc_TypeError, "'NoneType' object is not subscriptable"); - __PYX_ERR(0, 132, __pyx_L1_error) - } - __pyx_t_1 = __Pyx_PyDict_GetItem(__pyx_v_http_ctx, __pyx_v_t0_lower); if (unlikely(!__pyx_t_1)) __PYX_ERR(0, 132, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_1); - if (PyDict_SetItem(__pyx_t_14, __pyx_n_u_name, __pyx_t_1) < 0) __PYX_ERR(0, 132, __pyx_L1_error) - __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0; - if (PyDict_SetItem(__pyx_t_14, __pyx_n_u_data, __pyx_kp_u__11) < 0) __PYX_ERR(0, 132, __pyx_L1_error) - __pyx_t_11 = __Pyx_PyList_Append(__pyx_v_context, __pyx_t_14); if (unlikely(__pyx_t_11 == ((int)-1))) __PYX_ERR(0, 132, __pyx_L1_error) - __Pyx_DECREF(__pyx_t_14); __pyx_t_14 = 0; - } - __pyx_L24:; - - /* "pmercury/protocols/http_server.pyx":125 - * if h_c != '': - * c.append('(%s)' % h_c) - * if t0_lower in http_ctx: # <<<<<<<<<<<<<< - * if b'\x3a\x20' in h_: - * try: - */ - } - - /* "pmercury/protocols/http_server.pyx":107 - * cdef str h_c - * context = [] - * for h_ in headers: # <<<<<<<<<<<<<< - * if h_ == b'': - * break - */ - } - __pyx_L19_break:; - __Pyx_DECREF(__pyx_t_2); __pyx_t_2 = 0; - - /* "pmercury/protocols/http_server.pyx":134 - * context.append({'name':http_ctx[t0_lower], 'data':''}) - * - * return ''.join(c), context # <<<<<<<<<<<<<< - * - * - */ - __Pyx_XDECREF(__pyx_r); - __pyx_t_2 = PyUnicode_Join(__pyx_kp_u__11, __pyx_v_c); if (unlikely(!__pyx_t_2)) __PYX_ERR(0, 134, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_2); - __pyx_t_14 = PyTuple_New(2); if (unlikely(!__pyx_t_14)) __PYX_ERR(0, 134, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_14); - __Pyx_GIVEREF(__pyx_t_2); - PyTuple_SET_ITEM(__pyx_t_14, 0, __pyx_t_2); - __Pyx_INCREF(__pyx_v_context); - __Pyx_GIVEREF(__pyx_v_context); - PyTuple_SET_ITEM(__pyx_t_14, 1, __pyx_v_context); - __pyx_t_2 = 0; - __pyx_r = __pyx_t_14; - __pyx_t_14 = 0; - goto __pyx_L0; - - /* "pmercury/protocols/http_server.pyx":81 - * - * @staticmethod - * def fingerprint(bytes data, unsigned int offset, unsigned int data_len): # <<<<<<<<<<<<<< - * cdef list t_ = data[offset:].split(b'\x0d\x0a', 1) - * cdef list response = t_[0].split(b'\x20',2) - */ - - /* function exit code */ - __pyx_L1_error:; - __Pyx_XDECREF(__pyx_t_1); - __Pyx_XDECREF(__pyx_t_2); - __Pyx_XDECREF(__pyx_t_9); - __Pyx_XDECREF(__pyx_t_10); - __Pyx_XDECREF(__pyx_t_14); - __Pyx_XDECREF(__pyx_t_15); - __Pyx_XDECREF(__pyx_t_16); - __Pyx_XDECREF(__pyx_t_17); - __Pyx_AddTraceback("pmercury.protocols.http_server.HTTP_Server.fingerprint", __pyx_clineno, __pyx_lineno, __pyx_filename); - __pyx_r = NULL; - __pyx_L0:; - __Pyx_XDECREF(__pyx_v_t_); - __Pyx_XDECREF(__pyx_v_response); - __Pyx_XDECREF(__pyx_v_c); - __Pyx_XDECREF(__pyx_v_rh); - __Pyx_XDECREF(__pyx_v_headers); - __Pyx_XDECREF(__pyx_v_http_sn); - __Pyx_XDECREF(__pyx_v_http_snv); - __Pyx_XDECREF(__pyx_v_http_ctx); - __Pyx_XDECREF(__pyx_v_h_c); - __Pyx_XDECREF(__pyx_v_context); - __Pyx_XDECREF(__pyx_v_h_); - __Pyx_XDECREF(__pyx_v_t0_); - __Pyx_XDECREF(__pyx_v_t0_lower); - __Pyx_XGIVEREF(__pyx_r); - __Pyx_RefNannyFinishContext(); - return __pyx_r; -} - -/* "pmercury/protocols/http_server.pyx":137 - * - * - * def get_human_readable(self, fp_str_): # <<<<<<<<<<<<<< - * t_ = [bytes.fromhex(x[1:]) for x in fp_str_.split(')')[:-1]] - * try: - */ - -/* Python wrapper */ -static PyObject *__pyx_pw_8pmercury_9protocols_11http_server_11HTTP_Server_7get_human_readable(PyObject *__pyx_self, PyObject *__pyx_args, PyObject *__pyx_kwds); /*proto*/ -static PyMethodDef __pyx_mdef_8pmercury_9protocols_11http_server_11HTTP_Server_7get_human_readable = {"get_human_readable", (PyCFunction)(void*)(PyCFunctionWithKeywords)__pyx_pw_8pmercury_9protocols_11http_server_11HTTP_Server_7get_human_readable, METH_VARARGS|METH_KEYWORDS, 0}; -static PyObject *__pyx_pw_8pmercury_9protocols_11http_server_11HTTP_Server_7get_human_readable(PyObject *__pyx_self, PyObject *__pyx_args, PyObject *__pyx_kwds) { - CYTHON_UNUSED PyObject *__pyx_v_self = 0; - PyObject *__pyx_v_fp_str_ = 0; - PyObject *__pyx_r = 0; - __Pyx_RefNannyDeclarations - __Pyx_RefNannySetupContext("get_human_readable (wrapper)", 0); - { - static PyObject **__pyx_pyargnames[] = {&__pyx_n_s_self,&__pyx_n_s_fp_str,0}; - PyObject* values[2] = {0,0}; - if (unlikely(__pyx_kwds)) { - Py_ssize_t kw_args; - const Py_ssize_t pos_args = PyTuple_GET_SIZE(__pyx_args); - switch (pos_args) { - case 2: values[1] = PyTuple_GET_ITEM(__pyx_args, 1); - CYTHON_FALLTHROUGH; - case 1: values[0] = PyTuple_GET_ITEM(__pyx_args, 0); - CYTHON_FALLTHROUGH; - case 0: break; - default: goto __pyx_L5_argtuple_error; - } - kw_args = PyDict_Size(__pyx_kwds); - switch (pos_args) { - case 0: - if (likely((values[0] = __Pyx_PyDict_GetItemStr(__pyx_kwds, __pyx_n_s_self)) != 0)) kw_args--; - else goto __pyx_L5_argtuple_error; - CYTHON_FALLTHROUGH; - case 1: - if (likely((values[1] = __Pyx_PyDict_GetItemStr(__pyx_kwds, __pyx_n_s_fp_str)) != 0)) kw_args--; - else { - __Pyx_RaiseArgtupleInvalid("get_human_readable", 1, 2, 2, 1); __PYX_ERR(0, 137, __pyx_L3_error) - } - } - if (unlikely(kw_args > 0)) { - if (unlikely(__Pyx_ParseOptionalKeywords(__pyx_kwds, __pyx_pyargnames, 0, values, pos_args, "get_human_readable") < 0)) __PYX_ERR(0, 137, __pyx_L3_error) - } - } else if (PyTuple_GET_SIZE(__pyx_args) != 2) { - goto __pyx_L5_argtuple_error; - } else { - values[0] = PyTuple_GET_ITEM(__pyx_args, 0); - values[1] = PyTuple_GET_ITEM(__pyx_args, 1); - } - __pyx_v_self = values[0]; - __pyx_v_fp_str_ = values[1]; - } - goto __pyx_L4_argument_unpacking_done; - __pyx_L5_argtuple_error:; - __Pyx_RaiseArgtupleInvalid("get_human_readable", 1, 2, 2, PyTuple_GET_SIZE(__pyx_args)); __PYX_ERR(0, 137, __pyx_L3_error) - __pyx_L3_error:; - __Pyx_AddTraceback("pmercury.protocols.http_server.HTTP_Server.get_human_readable", __pyx_clineno, __pyx_lineno, __pyx_filename); - __Pyx_RefNannyFinishContext(); - return NULL; - __pyx_L4_argument_unpacking_done:; - __pyx_r = __pyx_pf_8pmercury_9protocols_11http_server_11HTTP_Server_6get_human_readable(__pyx_self, __pyx_v_self, __pyx_v_fp_str_); - - /* function exit code */ - __Pyx_RefNannyFinishContext(); - return __pyx_r; -} - -static PyObject *__pyx_pf_8pmercury_9protocols_11http_server_11HTTP_Server_6get_human_readable(CYTHON_UNUSED PyObject *__pyx_self, CYTHON_UNUSED PyObject *__pyx_v_self, PyObject *__pyx_v_fp_str_) { - PyObject *__pyx_v_t_ = NULL; - PyObject *__pyx_v_fp_h = NULL; - Py_ssize_t __pyx_v_i; - PyObject *__pyx_v_field = NULL; - PyObject *__pyx_7genexpr__pyx_v_x = NULL; - PyObject *__pyx_r = NULL; - __Pyx_RefNannyDeclarations - PyObject *__pyx_t_1 = NULL; - PyObject *__pyx_t_2 = NULL; - PyObject *__pyx_t_3 = NULL; - PyObject *__pyx_t_4 = NULL; - Py_ssize_t __pyx_t_5; - PyObject *(*__pyx_t_6)(PyObject *); - PyObject *__pyx_t_7 = NULL; - PyObject *__pyx_t_8 = NULL; - PyObject *__pyx_t_9 = NULL; - PyObject *__pyx_t_10 = NULL; - PyObject *__pyx_t_11 = NULL; - PyObject *__pyx_t_12 = NULL; - PyObject *__pyx_t_13 = NULL; - PyObject *__pyx_t_14 = NULL; - Py_ssize_t __pyx_t_15; - Py_ssize_t __pyx_t_16; - Py_ssize_t __pyx_t_17; - int __pyx_t_18; - int __pyx_t_19; - __Pyx_RefNannySetupContext("get_human_readable", 0); - - /* "pmercury/protocols/http_server.pyx":138 - * - * def get_human_readable(self, fp_str_): - * t_ = [bytes.fromhex(x[1:]) for x in fp_str_.split(')')[:-1]] # <<<<<<<<<<<<<< - * try: - * fp_h = [{'version':t_[0].decode()},{'code':t_[1].decode()},{'response':t_[2].decode()}] - */ - { /* enter inner scope */ - __pyx_t_1 = PyList_New(0); if (unlikely(!__pyx_t_1)) __PYX_ERR(0, 138, __pyx_L5_error) - __Pyx_GOTREF(__pyx_t_1); - __pyx_t_3 = __Pyx_PyObject_GetAttrStr(__pyx_v_fp_str_, __pyx_n_s_split); if (unlikely(!__pyx_t_3)) __PYX_ERR(0, 138, __pyx_L5_error) - __Pyx_GOTREF(__pyx_t_3); - __pyx_t_4 = NULL; - if (CYTHON_UNPACK_METHODS && likely(PyMethod_Check(__pyx_t_3))) { - __pyx_t_4 = PyMethod_GET_SELF(__pyx_t_3); - if (likely(__pyx_t_4)) { - PyObject* function = PyMethod_GET_FUNCTION(__pyx_t_3); - __Pyx_INCREF(__pyx_t_4); - __Pyx_INCREF(function); - __Pyx_DECREF_SET(__pyx_t_3, function); - } - } - __pyx_t_2 = (__pyx_t_4) ? __Pyx_PyObject_Call2Args(__pyx_t_3, __pyx_t_4, __pyx_kp_u__14) : __Pyx_PyObject_CallOneArg(__pyx_t_3, __pyx_kp_u__14); - __Pyx_XDECREF(__pyx_t_4); __pyx_t_4 = 0; - if (unlikely(!__pyx_t_2)) __PYX_ERR(0, 138, __pyx_L5_error) - __Pyx_GOTREF(__pyx_t_2); - __Pyx_DECREF(__pyx_t_3); __pyx_t_3 = 0; - __pyx_t_3 = __Pyx_PyObject_GetSlice(__pyx_t_2, 0, -1L, NULL, NULL, &__pyx_slice__15, 0, 1, 0); if (unlikely(!__pyx_t_3)) __PYX_ERR(0, 138, __pyx_L5_error) - __Pyx_GOTREF(__pyx_t_3); - __Pyx_DECREF(__pyx_t_2); __pyx_t_2 = 0; - if (likely(PyList_CheckExact(__pyx_t_3)) || PyTuple_CheckExact(__pyx_t_3)) { - __pyx_t_2 = __pyx_t_3; __Pyx_INCREF(__pyx_t_2); __pyx_t_5 = 0; - __pyx_t_6 = NULL; - } else { - __pyx_t_5 = -1; __pyx_t_2 = PyObject_GetIter(__pyx_t_3); if (unlikely(!__pyx_t_2)) __PYX_ERR(0, 138, __pyx_L5_error) - __Pyx_GOTREF(__pyx_t_2); - __pyx_t_6 = Py_TYPE(__pyx_t_2)->tp_iternext; if (unlikely(!__pyx_t_6)) __PYX_ERR(0, 138, __pyx_L5_error) - } - __Pyx_DECREF(__pyx_t_3); __pyx_t_3 = 0; - for (;;) { - if (likely(!__pyx_t_6)) { - if (likely(PyList_CheckExact(__pyx_t_2))) { - if (__pyx_t_5 >= PyList_GET_SIZE(__pyx_t_2)) break; - #if CYTHON_ASSUME_SAFE_MACROS && !CYTHON_AVOID_BORROWED_REFS - __pyx_t_3 = PyList_GET_ITEM(__pyx_t_2, __pyx_t_5); __Pyx_INCREF(__pyx_t_3); __pyx_t_5++; if (unlikely(0 < 0)) __PYX_ERR(0, 138, __pyx_L5_error) - #else - __pyx_t_3 = PySequence_ITEM(__pyx_t_2, __pyx_t_5); __pyx_t_5++; if (unlikely(!__pyx_t_3)) __PYX_ERR(0, 138, __pyx_L5_error) - __Pyx_GOTREF(__pyx_t_3); - #endif - } else { - if (__pyx_t_5 >= PyTuple_GET_SIZE(__pyx_t_2)) break; - #if CYTHON_ASSUME_SAFE_MACROS && !CYTHON_AVOID_BORROWED_REFS - __pyx_t_3 = PyTuple_GET_ITEM(__pyx_t_2, __pyx_t_5); __Pyx_INCREF(__pyx_t_3); __pyx_t_5++; if (unlikely(0 < 0)) __PYX_ERR(0, 138, __pyx_L5_error) - #else - __pyx_t_3 = PySequence_ITEM(__pyx_t_2, __pyx_t_5); __pyx_t_5++; if (unlikely(!__pyx_t_3)) __PYX_ERR(0, 138, __pyx_L5_error) - __Pyx_GOTREF(__pyx_t_3); - #endif - } - } else { - __pyx_t_3 = __pyx_t_6(__pyx_t_2); - if (unlikely(!__pyx_t_3)) { - PyObject* exc_type = PyErr_Occurred(); - if (exc_type) { - if (likely(__Pyx_PyErr_GivenExceptionMatches(exc_type, PyExc_StopIteration))) PyErr_Clear(); - else __PYX_ERR(0, 138, __pyx_L5_error) - } - break; - } - __Pyx_GOTREF(__pyx_t_3); - } - __Pyx_XDECREF_SET(__pyx_7genexpr__pyx_v_x, __pyx_t_3); - __pyx_t_3 = 0; - __pyx_t_4 = __Pyx_PyObject_GetAttrStr(((PyObject *)(&PyBytes_Type)), __pyx_n_s_fromhex); if (unlikely(!__pyx_t_4)) __PYX_ERR(0, 138, __pyx_L5_error) - __Pyx_GOTREF(__pyx_t_4); - __pyx_t_7 = __Pyx_PyObject_GetSlice(__pyx_7genexpr__pyx_v_x, 1, 0, NULL, NULL, &__pyx_slice__16, 1, 0, 0); if (unlikely(!__pyx_t_7)) __PYX_ERR(0, 138, __pyx_L5_error) - __Pyx_GOTREF(__pyx_t_7); - __pyx_t_8 = NULL; - if (CYTHON_UNPACK_METHODS && likely(PyMethod_Check(__pyx_t_4))) { - __pyx_t_8 = PyMethod_GET_SELF(__pyx_t_4); - if (likely(__pyx_t_8)) { - PyObject* function = PyMethod_GET_FUNCTION(__pyx_t_4); - __Pyx_INCREF(__pyx_t_8); - __Pyx_INCREF(function); - __Pyx_DECREF_SET(__pyx_t_4, function); - } - } - __pyx_t_3 = (__pyx_t_8) ? __Pyx_PyObject_Call2Args(__pyx_t_4, __pyx_t_8, __pyx_t_7) : __Pyx_PyObject_CallOneArg(__pyx_t_4, __pyx_t_7); - __Pyx_XDECREF(__pyx_t_8); __pyx_t_8 = 0; - __Pyx_DECREF(__pyx_t_7); __pyx_t_7 = 0; - if (unlikely(!__pyx_t_3)) __PYX_ERR(0, 138, __pyx_L5_error) - __Pyx_GOTREF(__pyx_t_3); - __Pyx_DECREF(__pyx_t_4); __pyx_t_4 = 0; - if (unlikely(__Pyx_ListComp_Append(__pyx_t_1, (PyObject*)__pyx_t_3))) __PYX_ERR(0, 138, __pyx_L5_error) - __Pyx_DECREF(__pyx_t_3); __pyx_t_3 = 0; - } - __Pyx_DECREF(__pyx_t_2); __pyx_t_2 = 0; - __Pyx_XDECREF(__pyx_7genexpr__pyx_v_x); __pyx_7genexpr__pyx_v_x = 0; - goto __pyx_L8_exit_scope; - __pyx_L5_error:; - __Pyx_XDECREF(__pyx_7genexpr__pyx_v_x); __pyx_7genexpr__pyx_v_x = 0; - goto __pyx_L1_error; - __pyx_L8_exit_scope:; - } /* exit inner scope */ - __pyx_v_t_ = ((PyObject*)__pyx_t_1); - __pyx_t_1 = 0; - - /* "pmercury/protocols/http_server.pyx":139 - * def get_human_readable(self, fp_str_): - * t_ = [bytes.fromhex(x[1:]) for x in fp_str_.split(')')[:-1]] - * try: # <<<<<<<<<<<<<< - * fp_h = [{'version':t_[0].decode()},{'code':t_[1].decode()},{'response':t_[2].decode()}] - * except: - */ - { - __Pyx_PyThreadState_declare - __Pyx_PyThreadState_assign - __Pyx_ExceptionSave(&__pyx_t_9, &__pyx_t_10, &__pyx_t_11); - __Pyx_XGOTREF(__pyx_t_9); - __Pyx_XGOTREF(__pyx_t_10); - __Pyx_XGOTREF(__pyx_t_11); - /*try:*/ { - - /* "pmercury/protocols/http_server.pyx":140 - * t_ = [bytes.fromhex(x[1:]) for x in fp_str_.split(')')[:-1]] - * try: - * fp_h = [{'version':t_[0].decode()},{'code':t_[1].decode()},{'response':t_[2].decode()}] # <<<<<<<<<<<<<< - * except: - * fp_h = [{'version':t_[0].hex()},{'code':t_[1].hex()},{'response':t_[2].hex()}] - */ - __pyx_t_1 = __Pyx_PyDict_NewPresized(1); if (unlikely(!__pyx_t_1)) __PYX_ERR(0, 140, __pyx_L9_error) - __Pyx_GOTREF(__pyx_t_1); - __pyx_t_3 = __Pyx_GetItemInt_List(__pyx_v_t_, 0, long, 1, __Pyx_PyInt_From_long, 1, 0, 1); if (unlikely(!__pyx_t_3)) __PYX_ERR(0, 140, __pyx_L9_error) - __Pyx_GOTREF(__pyx_t_3); - __pyx_t_4 = __Pyx_PyObject_GetAttrStr(__pyx_t_3, __pyx_n_s_decode); if (unlikely(!__pyx_t_4)) __PYX_ERR(0, 140, __pyx_L9_error) - __Pyx_GOTREF(__pyx_t_4); - __Pyx_DECREF(__pyx_t_3); __pyx_t_3 = 0; - __pyx_t_3 = NULL; - if (CYTHON_UNPACK_METHODS && likely(PyMethod_Check(__pyx_t_4))) { - __pyx_t_3 = PyMethod_GET_SELF(__pyx_t_4); - if (likely(__pyx_t_3)) { - PyObject* function = PyMethod_GET_FUNCTION(__pyx_t_4); - __Pyx_INCREF(__pyx_t_3); - __Pyx_INCREF(function); - __Pyx_DECREF_SET(__pyx_t_4, function); - } - } - __pyx_t_2 = (__pyx_t_3) ? __Pyx_PyObject_CallOneArg(__pyx_t_4, __pyx_t_3) : __Pyx_PyObject_CallNoArg(__pyx_t_4); - __Pyx_XDECREF(__pyx_t_3); __pyx_t_3 = 0; - if (unlikely(!__pyx_t_2)) __PYX_ERR(0, 140, __pyx_L9_error) - __Pyx_GOTREF(__pyx_t_2); - __Pyx_DECREF(__pyx_t_4); __pyx_t_4 = 0; - if (PyDict_SetItem(__pyx_t_1, __pyx_n_u_version, __pyx_t_2) < 0) __PYX_ERR(0, 140, __pyx_L9_error) - __Pyx_DECREF(__pyx_t_2); __pyx_t_2 = 0; - __pyx_t_2 = __Pyx_PyDict_NewPresized(1); if (unlikely(!__pyx_t_2)) __PYX_ERR(0, 140, __pyx_L9_error) - __Pyx_GOTREF(__pyx_t_2); - __pyx_t_3 = __Pyx_GetItemInt_List(__pyx_v_t_, 1, long, 1, __Pyx_PyInt_From_long, 1, 0, 1); if (unlikely(!__pyx_t_3)) __PYX_ERR(0, 140, __pyx_L9_error) - __Pyx_GOTREF(__pyx_t_3); - __pyx_t_7 = __Pyx_PyObject_GetAttrStr(__pyx_t_3, __pyx_n_s_decode); if (unlikely(!__pyx_t_7)) __PYX_ERR(0, 140, __pyx_L9_error) - __Pyx_GOTREF(__pyx_t_7); - __Pyx_DECREF(__pyx_t_3); __pyx_t_3 = 0; - __pyx_t_3 = NULL; - if (CYTHON_UNPACK_METHODS && likely(PyMethod_Check(__pyx_t_7))) { - __pyx_t_3 = PyMethod_GET_SELF(__pyx_t_7); - if (likely(__pyx_t_3)) { - PyObject* function = PyMethod_GET_FUNCTION(__pyx_t_7); - __Pyx_INCREF(__pyx_t_3); - __Pyx_INCREF(function); - __Pyx_DECREF_SET(__pyx_t_7, function); - } - } - __pyx_t_4 = (__pyx_t_3) ? __Pyx_PyObject_CallOneArg(__pyx_t_7, __pyx_t_3) : __Pyx_PyObject_CallNoArg(__pyx_t_7); - __Pyx_XDECREF(__pyx_t_3); __pyx_t_3 = 0; - if (unlikely(!__pyx_t_4)) __PYX_ERR(0, 140, __pyx_L9_error) - __Pyx_GOTREF(__pyx_t_4); - __Pyx_DECREF(__pyx_t_7); __pyx_t_7 = 0; - if (PyDict_SetItem(__pyx_t_2, __pyx_n_u_code, __pyx_t_4) < 0) __PYX_ERR(0, 140, __pyx_L9_error) - __Pyx_DECREF(__pyx_t_4); __pyx_t_4 = 0; - __pyx_t_4 = __Pyx_PyDict_NewPresized(1); if (unlikely(!__pyx_t_4)) __PYX_ERR(0, 140, __pyx_L9_error) - __Pyx_GOTREF(__pyx_t_4); - __pyx_t_3 = __Pyx_GetItemInt_List(__pyx_v_t_, 2, long, 1, __Pyx_PyInt_From_long, 1, 0, 1); if (unlikely(!__pyx_t_3)) __PYX_ERR(0, 140, __pyx_L9_error) - __Pyx_GOTREF(__pyx_t_3); - __pyx_t_8 = __Pyx_PyObject_GetAttrStr(__pyx_t_3, __pyx_n_s_decode); if (unlikely(!__pyx_t_8)) __PYX_ERR(0, 140, __pyx_L9_error) - __Pyx_GOTREF(__pyx_t_8); - __Pyx_DECREF(__pyx_t_3); __pyx_t_3 = 0; - __pyx_t_3 = NULL; - if (CYTHON_UNPACK_METHODS && likely(PyMethod_Check(__pyx_t_8))) { - __pyx_t_3 = PyMethod_GET_SELF(__pyx_t_8); - if (likely(__pyx_t_3)) { - PyObject* function = PyMethod_GET_FUNCTION(__pyx_t_8); - __Pyx_INCREF(__pyx_t_3); - __Pyx_INCREF(function); - __Pyx_DECREF_SET(__pyx_t_8, function); - } - } - __pyx_t_7 = (__pyx_t_3) ? __Pyx_PyObject_CallOneArg(__pyx_t_8, __pyx_t_3) : __Pyx_PyObject_CallNoArg(__pyx_t_8); - __Pyx_XDECREF(__pyx_t_3); __pyx_t_3 = 0; - if (unlikely(!__pyx_t_7)) __PYX_ERR(0, 140, __pyx_L9_error) - __Pyx_GOTREF(__pyx_t_7); - __Pyx_DECREF(__pyx_t_8); __pyx_t_8 = 0; - if (PyDict_SetItem(__pyx_t_4, __pyx_n_u_response, __pyx_t_7) < 0) __PYX_ERR(0, 140, __pyx_L9_error) - __Pyx_DECREF(__pyx_t_7); __pyx_t_7 = 0; - __pyx_t_7 = PyList_New(3); if (unlikely(!__pyx_t_7)) __PYX_ERR(0, 140, __pyx_L9_error) - __Pyx_GOTREF(__pyx_t_7); - __Pyx_GIVEREF(__pyx_t_1); - PyList_SET_ITEM(__pyx_t_7, 0, __pyx_t_1); - __Pyx_GIVEREF(__pyx_t_2); - PyList_SET_ITEM(__pyx_t_7, 1, __pyx_t_2); - __Pyx_GIVEREF(__pyx_t_4); - PyList_SET_ITEM(__pyx_t_7, 2, __pyx_t_4); - __pyx_t_1 = 0; - __pyx_t_2 = 0; - __pyx_t_4 = 0; - __pyx_v_fp_h = ((PyObject*)__pyx_t_7); - __pyx_t_7 = 0; - - /* "pmercury/protocols/http_server.pyx":139 - * def get_human_readable(self, fp_str_): - * t_ = [bytes.fromhex(x[1:]) for x in fp_str_.split(')')[:-1]] - * try: # <<<<<<<<<<<<<< - * fp_h = [{'version':t_[0].decode()},{'code':t_[1].decode()},{'response':t_[2].decode()}] - * except: - */ - } - __Pyx_XDECREF(__pyx_t_9); __pyx_t_9 = 0; - __Pyx_XDECREF(__pyx_t_10); __pyx_t_10 = 0; - __Pyx_XDECREF(__pyx_t_11); __pyx_t_11 = 0; - goto __pyx_L14_try_end; - __pyx_L9_error:; - __Pyx_XDECREF(__pyx_t_1); __pyx_t_1 = 0; - __Pyx_XDECREF(__pyx_t_2); __pyx_t_2 = 0; - __Pyx_XDECREF(__pyx_t_3); __pyx_t_3 = 0; - __Pyx_XDECREF(__pyx_t_4); __pyx_t_4 = 0; - __Pyx_XDECREF(__pyx_t_7); __pyx_t_7 = 0; - __Pyx_XDECREF(__pyx_t_8); __pyx_t_8 = 0; - - /* "pmercury/protocols/http_server.pyx":141 - * try: - * fp_h = [{'version':t_[0].decode()},{'code':t_[1].decode()},{'response':t_[2].decode()}] - * except: # <<<<<<<<<<<<<< - * fp_h = [{'version':t_[0].hex()},{'code':t_[1].hex()},{'response':t_[2].hex()}] - * for i in range(3, len(t_)-1): - */ - /*except:*/ { - __Pyx_AddTraceback("pmercury.protocols.http_server.HTTP_Server.get_human_readable", __pyx_clineno, __pyx_lineno, __pyx_filename); - if (__Pyx_GetException(&__pyx_t_7, &__pyx_t_4, &__pyx_t_2) < 0) __PYX_ERR(0, 141, __pyx_L11_except_error) - __Pyx_GOTREF(__pyx_t_7); - __Pyx_GOTREF(__pyx_t_4); - __Pyx_GOTREF(__pyx_t_2); - - /* "pmercury/protocols/http_server.pyx":142 - * fp_h = [{'version':t_[0].decode()},{'code':t_[1].decode()},{'response':t_[2].decode()}] - * except: - * fp_h = [{'version':t_[0].hex()},{'code':t_[1].hex()},{'response':t_[2].hex()}] # <<<<<<<<<<<<<< - * for i in range(3, len(t_)-1): - * field = t_[i].split(b': ') - */ - __pyx_t_1 = __Pyx_PyDict_NewPresized(1); if (unlikely(!__pyx_t_1)) __PYX_ERR(0, 142, __pyx_L11_except_error) - __Pyx_GOTREF(__pyx_t_1); - __pyx_t_3 = __Pyx_GetItemInt_List(__pyx_v_t_, 0, long, 1, __Pyx_PyInt_From_long, 1, 0, 1); if (unlikely(!__pyx_t_3)) __PYX_ERR(0, 142, __pyx_L11_except_error) - __Pyx_GOTREF(__pyx_t_3); - __pyx_t_12 = __Pyx_PyObject_GetAttrStr(__pyx_t_3, __pyx_n_s_hex); if (unlikely(!__pyx_t_12)) __PYX_ERR(0, 142, __pyx_L11_except_error) - __Pyx_GOTREF(__pyx_t_12); - __Pyx_DECREF(__pyx_t_3); __pyx_t_3 = 0; - __pyx_t_3 = NULL; - if (CYTHON_UNPACK_METHODS && likely(PyMethod_Check(__pyx_t_12))) { - __pyx_t_3 = PyMethod_GET_SELF(__pyx_t_12); - if (likely(__pyx_t_3)) { - PyObject* function = PyMethod_GET_FUNCTION(__pyx_t_12); - __Pyx_INCREF(__pyx_t_3); - __Pyx_INCREF(function); - __Pyx_DECREF_SET(__pyx_t_12, function); - } - } - __pyx_t_8 = (__pyx_t_3) ? __Pyx_PyObject_CallOneArg(__pyx_t_12, __pyx_t_3) : __Pyx_PyObject_CallNoArg(__pyx_t_12); - __Pyx_XDECREF(__pyx_t_3); __pyx_t_3 = 0; - if (unlikely(!__pyx_t_8)) __PYX_ERR(0, 142, __pyx_L11_except_error) - __Pyx_GOTREF(__pyx_t_8); - __Pyx_DECREF(__pyx_t_12); __pyx_t_12 = 0; - if (PyDict_SetItem(__pyx_t_1, __pyx_n_u_version, __pyx_t_8) < 0) __PYX_ERR(0, 142, __pyx_L11_except_error) - __Pyx_DECREF(__pyx_t_8); __pyx_t_8 = 0; - __pyx_t_8 = __Pyx_PyDict_NewPresized(1); if (unlikely(!__pyx_t_8)) __PYX_ERR(0, 142, __pyx_L11_except_error) - __Pyx_GOTREF(__pyx_t_8); - __pyx_t_3 = __Pyx_GetItemInt_List(__pyx_v_t_, 1, long, 1, __Pyx_PyInt_From_long, 1, 0, 1); if (unlikely(!__pyx_t_3)) __PYX_ERR(0, 142, __pyx_L11_except_error) - __Pyx_GOTREF(__pyx_t_3); - __pyx_t_13 = __Pyx_PyObject_GetAttrStr(__pyx_t_3, __pyx_n_s_hex); if (unlikely(!__pyx_t_13)) __PYX_ERR(0, 142, __pyx_L11_except_error) - __Pyx_GOTREF(__pyx_t_13); - __Pyx_DECREF(__pyx_t_3); __pyx_t_3 = 0; - __pyx_t_3 = NULL; - if (CYTHON_UNPACK_METHODS && likely(PyMethod_Check(__pyx_t_13))) { - __pyx_t_3 = PyMethod_GET_SELF(__pyx_t_13); - if (likely(__pyx_t_3)) { - PyObject* function = PyMethod_GET_FUNCTION(__pyx_t_13); - __Pyx_INCREF(__pyx_t_3); - __Pyx_INCREF(function); - __Pyx_DECREF_SET(__pyx_t_13, function); - } - } - __pyx_t_12 = (__pyx_t_3) ? __Pyx_PyObject_CallOneArg(__pyx_t_13, __pyx_t_3) : __Pyx_PyObject_CallNoArg(__pyx_t_13); - __Pyx_XDECREF(__pyx_t_3); __pyx_t_3 = 0; - if (unlikely(!__pyx_t_12)) __PYX_ERR(0, 142, __pyx_L11_except_error) - __Pyx_GOTREF(__pyx_t_12); - __Pyx_DECREF(__pyx_t_13); __pyx_t_13 = 0; - if (PyDict_SetItem(__pyx_t_8, __pyx_n_u_code, __pyx_t_12) < 0) __PYX_ERR(0, 142, __pyx_L11_except_error) - __Pyx_DECREF(__pyx_t_12); __pyx_t_12 = 0; - __pyx_t_12 = __Pyx_PyDict_NewPresized(1); if (unlikely(!__pyx_t_12)) __PYX_ERR(0, 142, __pyx_L11_except_error) - __Pyx_GOTREF(__pyx_t_12); - __pyx_t_3 = __Pyx_GetItemInt_List(__pyx_v_t_, 2, long, 1, __Pyx_PyInt_From_long, 1, 0, 1); if (unlikely(!__pyx_t_3)) __PYX_ERR(0, 142, __pyx_L11_except_error) - __Pyx_GOTREF(__pyx_t_3); - __pyx_t_14 = __Pyx_PyObject_GetAttrStr(__pyx_t_3, __pyx_n_s_hex); if (unlikely(!__pyx_t_14)) __PYX_ERR(0, 142, __pyx_L11_except_error) - __Pyx_GOTREF(__pyx_t_14); - __Pyx_DECREF(__pyx_t_3); __pyx_t_3 = 0; - __pyx_t_3 = NULL; - if (CYTHON_UNPACK_METHODS && likely(PyMethod_Check(__pyx_t_14))) { - __pyx_t_3 = PyMethod_GET_SELF(__pyx_t_14); - if (likely(__pyx_t_3)) { - PyObject* function = PyMethod_GET_FUNCTION(__pyx_t_14); - __Pyx_INCREF(__pyx_t_3); - __Pyx_INCREF(function); - __Pyx_DECREF_SET(__pyx_t_14, function); - } - } - __pyx_t_13 = (__pyx_t_3) ? __Pyx_PyObject_CallOneArg(__pyx_t_14, __pyx_t_3) : __Pyx_PyObject_CallNoArg(__pyx_t_14); - __Pyx_XDECREF(__pyx_t_3); __pyx_t_3 = 0; - if (unlikely(!__pyx_t_13)) __PYX_ERR(0, 142, __pyx_L11_except_error) - __Pyx_GOTREF(__pyx_t_13); - __Pyx_DECREF(__pyx_t_14); __pyx_t_14 = 0; - if (PyDict_SetItem(__pyx_t_12, __pyx_n_u_response, __pyx_t_13) < 0) __PYX_ERR(0, 142, __pyx_L11_except_error) - __Pyx_DECREF(__pyx_t_13); __pyx_t_13 = 0; - __pyx_t_13 = PyList_New(3); if (unlikely(!__pyx_t_13)) __PYX_ERR(0, 142, __pyx_L11_except_error) - __Pyx_GOTREF(__pyx_t_13); - __Pyx_GIVEREF(__pyx_t_1); - PyList_SET_ITEM(__pyx_t_13, 0, __pyx_t_1); - __Pyx_GIVEREF(__pyx_t_8); - PyList_SET_ITEM(__pyx_t_13, 1, __pyx_t_8); - __Pyx_GIVEREF(__pyx_t_12); - PyList_SET_ITEM(__pyx_t_13, 2, __pyx_t_12); - __pyx_t_1 = 0; - __pyx_t_8 = 0; - __pyx_t_12 = 0; - __Pyx_XDECREF_SET(__pyx_v_fp_h, ((PyObject*)__pyx_t_13)); - __pyx_t_13 = 0; - __Pyx_XDECREF(__pyx_t_7); __pyx_t_7 = 0; - __Pyx_XDECREF(__pyx_t_4); __pyx_t_4 = 0; - __Pyx_XDECREF(__pyx_t_2); __pyx_t_2 = 0; - goto __pyx_L10_exception_handled; - } - __pyx_L11_except_error:; - - /* "pmercury/protocols/http_server.pyx":139 - * def get_human_readable(self, fp_str_): - * t_ = [bytes.fromhex(x[1:]) for x in fp_str_.split(')')[:-1]] - * try: # <<<<<<<<<<<<<< - * fp_h = [{'version':t_[0].decode()},{'code':t_[1].decode()},{'response':t_[2].decode()}] - * except: - */ - __Pyx_XGIVEREF(__pyx_t_9); - __Pyx_XGIVEREF(__pyx_t_10); - __Pyx_XGIVEREF(__pyx_t_11); - __Pyx_ExceptionReset(__pyx_t_9, __pyx_t_10, __pyx_t_11); - goto __pyx_L1_error; - __pyx_L10_exception_handled:; - __Pyx_XGIVEREF(__pyx_t_9); - __Pyx_XGIVEREF(__pyx_t_10); - __Pyx_XGIVEREF(__pyx_t_11); - __Pyx_ExceptionReset(__pyx_t_9, __pyx_t_10, __pyx_t_11); - __pyx_L14_try_end:; - } - - /* "pmercury/protocols/http_server.pyx":143 - * except: - * fp_h = [{'version':t_[0].hex()},{'code':t_[1].hex()},{'response':t_[2].hex()}] - * for i in range(3, len(t_)-1): # <<<<<<<<<<<<<< - * field = t_[i].split(b': ') - * if len(field) == 2: - */ - __pyx_t_5 = PyList_GET_SIZE(__pyx_v_t_); if (unlikely(__pyx_t_5 == ((Py_ssize_t)-1))) __PYX_ERR(0, 143, __pyx_L1_error) - __pyx_t_15 = (__pyx_t_5 - 1); - __pyx_t_5 = __pyx_t_15; - for (__pyx_t_16 = 3; __pyx_t_16 < __pyx_t_5; __pyx_t_16+=1) { - __pyx_v_i = __pyx_t_16; - - /* "pmercury/protocols/http_server.pyx":144 - * fp_h = [{'version':t_[0].hex()},{'code':t_[1].hex()},{'response':t_[2].hex()}] - * for i in range(3, len(t_)-1): - * field = t_[i].split(b': ') # <<<<<<<<<<<<<< - * if len(field) == 2: - * try: - */ - __pyx_t_4 = __Pyx_GetItemInt_List(__pyx_v_t_, __pyx_v_i, Py_ssize_t, 1, PyInt_FromSsize_t, 1, 0, 1); if (unlikely(!__pyx_t_4)) __PYX_ERR(0, 144, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_4); - __pyx_t_7 = __Pyx_PyObject_GetAttrStr(__pyx_t_4, __pyx_n_s_split); if (unlikely(!__pyx_t_7)) __PYX_ERR(0, 144, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_7); - __Pyx_DECREF(__pyx_t_4); __pyx_t_4 = 0; - __pyx_t_4 = NULL; - if (CYTHON_UNPACK_METHODS && likely(PyMethod_Check(__pyx_t_7))) { - __pyx_t_4 = PyMethod_GET_SELF(__pyx_t_7); - if (likely(__pyx_t_4)) { - PyObject* function = PyMethod_GET_FUNCTION(__pyx_t_7); - __Pyx_INCREF(__pyx_t_4); - __Pyx_INCREF(function); - __Pyx_DECREF_SET(__pyx_t_7, function); - } - } - __pyx_t_2 = (__pyx_t_4) ? __Pyx_PyObject_Call2Args(__pyx_t_7, __pyx_t_4, __pyx_kp_b__12) : __Pyx_PyObject_CallOneArg(__pyx_t_7, __pyx_kp_b__12); - __Pyx_XDECREF(__pyx_t_4); __pyx_t_4 = 0; - if (unlikely(!__pyx_t_2)) __PYX_ERR(0, 144, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_2); - __Pyx_DECREF(__pyx_t_7); __pyx_t_7 = 0; - __Pyx_XDECREF_SET(__pyx_v_field, __pyx_t_2); - __pyx_t_2 = 0; - - /* "pmercury/protocols/http_server.pyx":145 - * for i in range(3, len(t_)-1): - * field = t_[i].split(b': ') - * if len(field) == 2: # <<<<<<<<<<<<<< - * try: - * fp_h.append({field[0].decode(): field[1].decode()}) - */ - __pyx_t_17 = PyObject_Length(__pyx_v_field); if (unlikely(__pyx_t_17 == ((Py_ssize_t)-1))) __PYX_ERR(0, 145, __pyx_L1_error) - __pyx_t_18 = ((__pyx_t_17 == 2) != 0); - if (__pyx_t_18) { - - /* "pmercury/protocols/http_server.pyx":146 - * field = t_[i].split(b': ') - * if len(field) == 2: - * try: # <<<<<<<<<<<<<< - * fp_h.append({field[0].decode(): field[1].decode()}) - * except: - */ - { - __Pyx_PyThreadState_declare - __Pyx_PyThreadState_assign - __Pyx_ExceptionSave(&__pyx_t_11, &__pyx_t_10, &__pyx_t_9); - __Pyx_XGOTREF(__pyx_t_11); - __Pyx_XGOTREF(__pyx_t_10); - __Pyx_XGOTREF(__pyx_t_9); - /*try:*/ { - - /* "pmercury/protocols/http_server.pyx":147 - * if len(field) == 2: - * try: - * fp_h.append({field[0].decode(): field[1].decode()}) # <<<<<<<<<<<<<< - * except: - * fp_h.append({field[0].hex(): field[1].hex()}) - */ - __pyx_t_2 = __Pyx_PyDict_NewPresized(1); if (unlikely(!__pyx_t_2)) __PYX_ERR(0, 147, __pyx_L20_error) - __Pyx_GOTREF(__pyx_t_2); - __pyx_t_4 = __Pyx_GetItemInt(__pyx_v_field, 0, long, 1, __Pyx_PyInt_From_long, 0, 0, 1); if (unlikely(!__pyx_t_4)) __PYX_ERR(0, 147, __pyx_L20_error) - __Pyx_GOTREF(__pyx_t_4); - __pyx_t_13 = __Pyx_PyObject_GetAttrStr(__pyx_t_4, __pyx_n_s_decode); if (unlikely(!__pyx_t_13)) __PYX_ERR(0, 147, __pyx_L20_error) - __Pyx_GOTREF(__pyx_t_13); - __Pyx_DECREF(__pyx_t_4); __pyx_t_4 = 0; - __pyx_t_4 = NULL; - if (CYTHON_UNPACK_METHODS && likely(PyMethod_Check(__pyx_t_13))) { - __pyx_t_4 = PyMethod_GET_SELF(__pyx_t_13); - if (likely(__pyx_t_4)) { - PyObject* function = PyMethod_GET_FUNCTION(__pyx_t_13); - __Pyx_INCREF(__pyx_t_4); - __Pyx_INCREF(function); - __Pyx_DECREF_SET(__pyx_t_13, function); - } - } - __pyx_t_7 = (__pyx_t_4) ? __Pyx_PyObject_CallOneArg(__pyx_t_13, __pyx_t_4) : __Pyx_PyObject_CallNoArg(__pyx_t_13); - __Pyx_XDECREF(__pyx_t_4); __pyx_t_4 = 0; - if (unlikely(!__pyx_t_7)) __PYX_ERR(0, 147, __pyx_L20_error) - __Pyx_GOTREF(__pyx_t_7); - __Pyx_DECREF(__pyx_t_13); __pyx_t_13 = 0; - __pyx_t_4 = __Pyx_GetItemInt(__pyx_v_field, 1, long, 1, __Pyx_PyInt_From_long, 0, 0, 1); if (unlikely(!__pyx_t_4)) __PYX_ERR(0, 147, __pyx_L20_error) - __Pyx_GOTREF(__pyx_t_4); - __pyx_t_12 = __Pyx_PyObject_GetAttrStr(__pyx_t_4, __pyx_n_s_decode); if (unlikely(!__pyx_t_12)) __PYX_ERR(0, 147, __pyx_L20_error) - __Pyx_GOTREF(__pyx_t_12); - __Pyx_DECREF(__pyx_t_4); __pyx_t_4 = 0; - __pyx_t_4 = NULL; - if (CYTHON_UNPACK_METHODS && likely(PyMethod_Check(__pyx_t_12))) { - __pyx_t_4 = PyMethod_GET_SELF(__pyx_t_12); - if (likely(__pyx_t_4)) { - PyObject* function = PyMethod_GET_FUNCTION(__pyx_t_12); - __Pyx_INCREF(__pyx_t_4); - __Pyx_INCREF(function); - __Pyx_DECREF_SET(__pyx_t_12, function); - } - } - __pyx_t_13 = (__pyx_t_4) ? __Pyx_PyObject_CallOneArg(__pyx_t_12, __pyx_t_4) : __Pyx_PyObject_CallNoArg(__pyx_t_12); - __Pyx_XDECREF(__pyx_t_4); __pyx_t_4 = 0; - if (unlikely(!__pyx_t_13)) __PYX_ERR(0, 147, __pyx_L20_error) - __Pyx_GOTREF(__pyx_t_13); - __Pyx_DECREF(__pyx_t_12); __pyx_t_12 = 0; - if (PyDict_SetItem(__pyx_t_2, __pyx_t_7, __pyx_t_13) < 0) __PYX_ERR(0, 147, __pyx_L20_error) - __Pyx_DECREF(__pyx_t_7); __pyx_t_7 = 0; - __Pyx_DECREF(__pyx_t_13); __pyx_t_13 = 0; - __pyx_t_19 = __Pyx_PyList_Append(__pyx_v_fp_h, __pyx_t_2); if (unlikely(__pyx_t_19 == ((int)-1))) __PYX_ERR(0, 147, __pyx_L20_error) - __Pyx_DECREF(__pyx_t_2); __pyx_t_2 = 0; - - /* "pmercury/protocols/http_server.pyx":146 - * field = t_[i].split(b': ') - * if len(field) == 2: - * try: # <<<<<<<<<<<<<< - * fp_h.append({field[0].decode(): field[1].decode()}) - * except: - */ - } - __Pyx_XDECREF(__pyx_t_11); __pyx_t_11 = 0; - __Pyx_XDECREF(__pyx_t_10); __pyx_t_10 = 0; - __Pyx_XDECREF(__pyx_t_9); __pyx_t_9 = 0; - goto __pyx_L27_try_end; - __pyx_L20_error:; - __Pyx_XDECREF(__pyx_t_1); __pyx_t_1 = 0; - __Pyx_XDECREF(__pyx_t_12); __pyx_t_12 = 0; - __Pyx_XDECREF(__pyx_t_13); __pyx_t_13 = 0; - __Pyx_XDECREF(__pyx_t_14); __pyx_t_14 = 0; - __Pyx_XDECREF(__pyx_t_2); __pyx_t_2 = 0; - __Pyx_XDECREF(__pyx_t_3); __pyx_t_3 = 0; - __Pyx_XDECREF(__pyx_t_4); __pyx_t_4 = 0; - __Pyx_XDECREF(__pyx_t_7); __pyx_t_7 = 0; - __Pyx_XDECREF(__pyx_t_8); __pyx_t_8 = 0; - - /* "pmercury/protocols/http_server.pyx":148 - * try: - * fp_h.append({field[0].decode(): field[1].decode()}) - * except: # <<<<<<<<<<<<<< - * fp_h.append({field[0].hex(): field[1].hex()}) - * else: - */ - /*except:*/ { - __Pyx_AddTraceback("pmercury.protocols.http_server.HTTP_Server.get_human_readable", __pyx_clineno, __pyx_lineno, __pyx_filename); - if (__Pyx_GetException(&__pyx_t_2, &__pyx_t_13, &__pyx_t_7) < 0) __PYX_ERR(0, 148, __pyx_L22_except_error) - __Pyx_GOTREF(__pyx_t_2); - __Pyx_GOTREF(__pyx_t_13); - __Pyx_GOTREF(__pyx_t_7); - - /* "pmercury/protocols/http_server.pyx":149 - * fp_h.append({field[0].decode(): field[1].decode()}) - * except: - * fp_h.append({field[0].hex(): field[1].hex()}) # <<<<<<<<<<<<<< - * else: - * try: - */ - __pyx_t_12 = __Pyx_PyDict_NewPresized(1); if (unlikely(!__pyx_t_12)) __PYX_ERR(0, 149, __pyx_L22_except_error) - __Pyx_GOTREF(__pyx_t_12); - __pyx_t_8 = __Pyx_GetItemInt(__pyx_v_field, 0, long, 1, __Pyx_PyInt_From_long, 0, 0, 1); if (unlikely(!__pyx_t_8)) __PYX_ERR(0, 149, __pyx_L22_except_error) - __Pyx_GOTREF(__pyx_t_8); - __pyx_t_1 = __Pyx_PyObject_GetAttrStr(__pyx_t_8, __pyx_n_s_hex); if (unlikely(!__pyx_t_1)) __PYX_ERR(0, 149, __pyx_L22_except_error) - __Pyx_GOTREF(__pyx_t_1); - __Pyx_DECREF(__pyx_t_8); __pyx_t_8 = 0; - __pyx_t_8 = NULL; - if (CYTHON_UNPACK_METHODS && likely(PyMethod_Check(__pyx_t_1))) { - __pyx_t_8 = PyMethod_GET_SELF(__pyx_t_1); - if (likely(__pyx_t_8)) { - PyObject* function = PyMethod_GET_FUNCTION(__pyx_t_1); - __Pyx_INCREF(__pyx_t_8); - __Pyx_INCREF(function); - __Pyx_DECREF_SET(__pyx_t_1, function); - } - } - __pyx_t_4 = (__pyx_t_8) ? __Pyx_PyObject_CallOneArg(__pyx_t_1, __pyx_t_8) : __Pyx_PyObject_CallNoArg(__pyx_t_1); - __Pyx_XDECREF(__pyx_t_8); __pyx_t_8 = 0; - if (unlikely(!__pyx_t_4)) __PYX_ERR(0, 149, __pyx_L22_except_error) - __Pyx_GOTREF(__pyx_t_4); - __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0; - __pyx_t_8 = __Pyx_GetItemInt(__pyx_v_field, 1, long, 1, __Pyx_PyInt_From_long, 0, 0, 1); if (unlikely(!__pyx_t_8)) __PYX_ERR(0, 149, __pyx_L22_except_error) - __Pyx_GOTREF(__pyx_t_8); - __pyx_t_14 = __Pyx_PyObject_GetAttrStr(__pyx_t_8, __pyx_n_s_hex); if (unlikely(!__pyx_t_14)) __PYX_ERR(0, 149, __pyx_L22_except_error) - __Pyx_GOTREF(__pyx_t_14); - __Pyx_DECREF(__pyx_t_8); __pyx_t_8 = 0; - __pyx_t_8 = NULL; - if (CYTHON_UNPACK_METHODS && likely(PyMethod_Check(__pyx_t_14))) { - __pyx_t_8 = PyMethod_GET_SELF(__pyx_t_14); - if (likely(__pyx_t_8)) { - PyObject* function = PyMethod_GET_FUNCTION(__pyx_t_14); - __Pyx_INCREF(__pyx_t_8); - __Pyx_INCREF(function); - __Pyx_DECREF_SET(__pyx_t_14, function); - } - } - __pyx_t_1 = (__pyx_t_8) ? __Pyx_PyObject_CallOneArg(__pyx_t_14, __pyx_t_8) : __Pyx_PyObject_CallNoArg(__pyx_t_14); - __Pyx_XDECREF(__pyx_t_8); __pyx_t_8 = 0; - if (unlikely(!__pyx_t_1)) __PYX_ERR(0, 149, __pyx_L22_except_error) - __Pyx_GOTREF(__pyx_t_1); - __Pyx_DECREF(__pyx_t_14); __pyx_t_14 = 0; - if (PyDict_SetItem(__pyx_t_12, __pyx_t_4, __pyx_t_1) < 0) __PYX_ERR(0, 149, __pyx_L22_except_error) - __Pyx_DECREF(__pyx_t_4); __pyx_t_4 = 0; - __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0; - __pyx_t_19 = __Pyx_PyList_Append(__pyx_v_fp_h, __pyx_t_12); if (unlikely(__pyx_t_19 == ((int)-1))) __PYX_ERR(0, 149, __pyx_L22_except_error) - __Pyx_DECREF(__pyx_t_12); __pyx_t_12 = 0; - __Pyx_XDECREF(__pyx_t_2); __pyx_t_2 = 0; - __Pyx_XDECREF(__pyx_t_13); __pyx_t_13 = 0; - __Pyx_XDECREF(__pyx_t_7); __pyx_t_7 = 0; - goto __pyx_L21_exception_handled; - } - __pyx_L22_except_error:; - - /* "pmercury/protocols/http_server.pyx":146 - * field = t_[i].split(b': ') - * if len(field) == 2: - * try: # <<<<<<<<<<<<<< - * fp_h.append({field[0].decode(): field[1].decode()}) - * except: - */ - __Pyx_XGIVEREF(__pyx_t_11); - __Pyx_XGIVEREF(__pyx_t_10); - __Pyx_XGIVEREF(__pyx_t_9); - __Pyx_ExceptionReset(__pyx_t_11, __pyx_t_10, __pyx_t_9); - goto __pyx_L1_error; - __pyx_L21_exception_handled:; - __Pyx_XGIVEREF(__pyx_t_11); - __Pyx_XGIVEREF(__pyx_t_10); - __Pyx_XGIVEREF(__pyx_t_9); - __Pyx_ExceptionReset(__pyx_t_11, __pyx_t_10, __pyx_t_9); - __pyx_L27_try_end:; - } - - /* "pmercury/protocols/http_server.pyx":145 - * for i in range(3, len(t_)-1): - * field = t_[i].split(b': ') - * if len(field) == 2: # <<<<<<<<<<<<<< - * try: - * fp_h.append({field[0].decode(): field[1].decode()}) - */ - goto __pyx_L19; - } - - /* "pmercury/protocols/http_server.pyx":151 - * fp_h.append({field[0].hex(): field[1].hex()}) - * else: - * try: # <<<<<<<<<<<<<< - * fp_h.append({field[0].decode(): ''}) - * except: - */ - /*else*/ { - { - __Pyx_PyThreadState_declare - __Pyx_PyThreadState_assign - __Pyx_ExceptionSave(&__pyx_t_9, &__pyx_t_10, &__pyx_t_11); - __Pyx_XGOTREF(__pyx_t_9); - __Pyx_XGOTREF(__pyx_t_10); - __Pyx_XGOTREF(__pyx_t_11); - /*try:*/ { - - /* "pmercury/protocols/http_server.pyx":152 - * else: - * try: - * fp_h.append({field[0].decode(): ''}) # <<<<<<<<<<<<<< - * except: - * fp_h.append({field[0].hex(): ''}) - */ - __pyx_t_7 = __Pyx_PyDict_NewPresized(1); if (unlikely(!__pyx_t_7)) __PYX_ERR(0, 152, __pyx_L30_error) - __Pyx_GOTREF(__pyx_t_7); - __pyx_t_2 = __Pyx_GetItemInt(__pyx_v_field, 0, long, 1, __Pyx_PyInt_From_long, 0, 0, 1); if (unlikely(!__pyx_t_2)) __PYX_ERR(0, 152, __pyx_L30_error) - __Pyx_GOTREF(__pyx_t_2); - __pyx_t_12 = __Pyx_PyObject_GetAttrStr(__pyx_t_2, __pyx_n_s_decode); if (unlikely(!__pyx_t_12)) __PYX_ERR(0, 152, __pyx_L30_error) - __Pyx_GOTREF(__pyx_t_12); - __Pyx_DECREF(__pyx_t_2); __pyx_t_2 = 0; - __pyx_t_2 = NULL; - if (CYTHON_UNPACK_METHODS && likely(PyMethod_Check(__pyx_t_12))) { - __pyx_t_2 = PyMethod_GET_SELF(__pyx_t_12); - if (likely(__pyx_t_2)) { - PyObject* function = PyMethod_GET_FUNCTION(__pyx_t_12); - __Pyx_INCREF(__pyx_t_2); - __Pyx_INCREF(function); - __Pyx_DECREF_SET(__pyx_t_12, function); - } - } - __pyx_t_13 = (__pyx_t_2) ? __Pyx_PyObject_CallOneArg(__pyx_t_12, __pyx_t_2) : __Pyx_PyObject_CallNoArg(__pyx_t_12); - __Pyx_XDECREF(__pyx_t_2); __pyx_t_2 = 0; - if (unlikely(!__pyx_t_13)) __PYX_ERR(0, 152, __pyx_L30_error) - __Pyx_GOTREF(__pyx_t_13); - __Pyx_DECREF(__pyx_t_12); __pyx_t_12 = 0; - if (PyDict_SetItem(__pyx_t_7, __pyx_t_13, __pyx_kp_u__11) < 0) __PYX_ERR(0, 152, __pyx_L30_error) - __Pyx_DECREF(__pyx_t_13); __pyx_t_13 = 0; - __pyx_t_19 = __Pyx_PyList_Append(__pyx_v_fp_h, __pyx_t_7); if (unlikely(__pyx_t_19 == ((int)-1))) __PYX_ERR(0, 152, __pyx_L30_error) - __Pyx_DECREF(__pyx_t_7); __pyx_t_7 = 0; - - /* "pmercury/protocols/http_server.pyx":151 - * fp_h.append({field[0].hex(): field[1].hex()}) - * else: - * try: # <<<<<<<<<<<<<< - * fp_h.append({field[0].decode(): ''}) - * except: - */ - } - __Pyx_XDECREF(__pyx_t_9); __pyx_t_9 = 0; - __Pyx_XDECREF(__pyx_t_10); __pyx_t_10 = 0; - __Pyx_XDECREF(__pyx_t_11); __pyx_t_11 = 0; - goto __pyx_L37_try_end; - __pyx_L30_error:; - __Pyx_XDECREF(__pyx_t_1); __pyx_t_1 = 0; - __Pyx_XDECREF(__pyx_t_12); __pyx_t_12 = 0; - __Pyx_XDECREF(__pyx_t_13); __pyx_t_13 = 0; - __Pyx_XDECREF(__pyx_t_14); __pyx_t_14 = 0; - __Pyx_XDECREF(__pyx_t_2); __pyx_t_2 = 0; - __Pyx_XDECREF(__pyx_t_3); __pyx_t_3 = 0; - __Pyx_XDECREF(__pyx_t_4); __pyx_t_4 = 0; - __Pyx_XDECREF(__pyx_t_7); __pyx_t_7 = 0; - __Pyx_XDECREF(__pyx_t_8); __pyx_t_8 = 0; - - /* "pmercury/protocols/http_server.pyx":153 - * try: - * fp_h.append({field[0].decode(): ''}) - * except: # <<<<<<<<<<<<<< - * fp_h.append({field[0].hex(): ''}) - * return fp_h - */ - /*except:*/ { - __Pyx_AddTraceback("pmercury.protocols.http_server.HTTP_Server.get_human_readable", __pyx_clineno, __pyx_lineno, __pyx_filename); - if (__Pyx_GetException(&__pyx_t_7, &__pyx_t_13, &__pyx_t_12) < 0) __PYX_ERR(0, 153, __pyx_L32_except_error) - __Pyx_GOTREF(__pyx_t_7); - __Pyx_GOTREF(__pyx_t_13); - __Pyx_GOTREF(__pyx_t_12); - - /* "pmercury/protocols/http_server.pyx":154 - * fp_h.append({field[0].decode(): ''}) - * except: - * fp_h.append({field[0].hex(): ''}) # <<<<<<<<<<<<<< - * return fp_h - */ - __pyx_t_2 = __Pyx_PyDict_NewPresized(1); if (unlikely(!__pyx_t_2)) __PYX_ERR(0, 154, __pyx_L32_except_error) - __Pyx_GOTREF(__pyx_t_2); - __pyx_t_4 = __Pyx_GetItemInt(__pyx_v_field, 0, long, 1, __Pyx_PyInt_From_long, 0, 0, 1); if (unlikely(!__pyx_t_4)) __PYX_ERR(0, 154, __pyx_L32_except_error) - __Pyx_GOTREF(__pyx_t_4); - __pyx_t_14 = __Pyx_PyObject_GetAttrStr(__pyx_t_4, __pyx_n_s_hex); if (unlikely(!__pyx_t_14)) __PYX_ERR(0, 154, __pyx_L32_except_error) - __Pyx_GOTREF(__pyx_t_14); - __Pyx_DECREF(__pyx_t_4); __pyx_t_4 = 0; - __pyx_t_4 = NULL; - if (CYTHON_UNPACK_METHODS && likely(PyMethod_Check(__pyx_t_14))) { - __pyx_t_4 = PyMethod_GET_SELF(__pyx_t_14); - if (likely(__pyx_t_4)) { - PyObject* function = PyMethod_GET_FUNCTION(__pyx_t_14); - __Pyx_INCREF(__pyx_t_4); - __Pyx_INCREF(function); - __Pyx_DECREF_SET(__pyx_t_14, function); - } - } - __pyx_t_1 = (__pyx_t_4) ? __Pyx_PyObject_CallOneArg(__pyx_t_14, __pyx_t_4) : __Pyx_PyObject_CallNoArg(__pyx_t_14); - __Pyx_XDECREF(__pyx_t_4); __pyx_t_4 = 0; - if (unlikely(!__pyx_t_1)) __PYX_ERR(0, 154, __pyx_L32_except_error) - __Pyx_GOTREF(__pyx_t_1); - __Pyx_DECREF(__pyx_t_14); __pyx_t_14 = 0; - if (PyDict_SetItem(__pyx_t_2, __pyx_t_1, __pyx_kp_u__11) < 0) __PYX_ERR(0, 154, __pyx_L32_except_error) - __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0; - __pyx_t_19 = __Pyx_PyList_Append(__pyx_v_fp_h, __pyx_t_2); if (unlikely(__pyx_t_19 == ((int)-1))) __PYX_ERR(0, 154, __pyx_L32_except_error) - __Pyx_DECREF(__pyx_t_2); __pyx_t_2 = 0; - __Pyx_XDECREF(__pyx_t_7); __pyx_t_7 = 0; - __Pyx_XDECREF(__pyx_t_13); __pyx_t_13 = 0; - __Pyx_XDECREF(__pyx_t_12); __pyx_t_12 = 0; - goto __pyx_L31_exception_handled; - } - __pyx_L32_except_error:; - - /* "pmercury/protocols/http_server.pyx":151 - * fp_h.append({field[0].hex(): field[1].hex()}) - * else: - * try: # <<<<<<<<<<<<<< - * fp_h.append({field[0].decode(): ''}) - * except: - */ - __Pyx_XGIVEREF(__pyx_t_9); - __Pyx_XGIVEREF(__pyx_t_10); - __Pyx_XGIVEREF(__pyx_t_11); - __Pyx_ExceptionReset(__pyx_t_9, __pyx_t_10, __pyx_t_11); - goto __pyx_L1_error; - __pyx_L31_exception_handled:; - __Pyx_XGIVEREF(__pyx_t_9); - __Pyx_XGIVEREF(__pyx_t_10); - __Pyx_XGIVEREF(__pyx_t_11); - __Pyx_ExceptionReset(__pyx_t_9, __pyx_t_10, __pyx_t_11); - __pyx_L37_try_end:; - } - } - __pyx_L19:; - } - - /* "pmercury/protocols/http_server.pyx":155 - * except: - * fp_h.append({field[0].hex(): ''}) - * return fp_h # <<<<<<<<<<<<<< - */ - __Pyx_XDECREF(__pyx_r); - __Pyx_INCREF(__pyx_v_fp_h); - __pyx_r = __pyx_v_fp_h; - goto __pyx_L0; - - /* "pmercury/protocols/http_server.pyx":137 - * - * - * def get_human_readable(self, fp_str_): # <<<<<<<<<<<<<< - * t_ = [bytes.fromhex(x[1:]) for x in fp_str_.split(')')[:-1]] - * try: - */ - - /* function exit code */ - __pyx_L1_error:; - __Pyx_XDECREF(__pyx_t_1); - __Pyx_XDECREF(__pyx_t_2); - __Pyx_XDECREF(__pyx_t_3); - __Pyx_XDECREF(__pyx_t_4); - __Pyx_XDECREF(__pyx_t_7); - __Pyx_XDECREF(__pyx_t_8); - __Pyx_XDECREF(__pyx_t_12); - __Pyx_XDECREF(__pyx_t_13); - __Pyx_XDECREF(__pyx_t_14); - __Pyx_AddTraceback("pmercury.protocols.http_server.HTTP_Server.get_human_readable", __pyx_clineno, __pyx_lineno, __pyx_filename); - __pyx_r = NULL; - __pyx_L0:; - __Pyx_XDECREF(__pyx_v_t_); - __Pyx_XDECREF(__pyx_v_fp_h); - __Pyx_XDECREF(__pyx_v_field); - __Pyx_XDECREF(__pyx_7genexpr__pyx_v_x); - __Pyx_XGIVEREF(__pyx_r); - __Pyx_RefNannyFinishContext(); - return __pyx_r; -} - -static PyMethodDef __pyx_methods[] = { - {0, 0, 0, 0} -}; - -#if PY_MAJOR_VERSION >= 3 -#if CYTHON_PEP489_MULTI_PHASE_INIT -static PyObject* __pyx_pymod_create(PyObject *spec, PyModuleDef *def); /*proto*/ -static int __pyx_pymod_exec_http_server(PyObject* module); /*proto*/ -static PyModuleDef_Slot __pyx_moduledef_slots[] = { - {Py_mod_create, (void*)__pyx_pymod_create}, - {Py_mod_exec, (void*)__pyx_pymod_exec_http_server}, - {0, NULL} -}; -#endif - -static struct PyModuleDef __pyx_moduledef = { - PyModuleDef_HEAD_INIT, - "http_server", - __pyx_k_Copyright_c_2019_Cisco_Systems, /* m_doc */ - #if CYTHON_PEP489_MULTI_PHASE_INIT - 0, /* m_size */ - #else - -1, /* m_size */ - #endif - __pyx_methods /* m_methods */, - #if CYTHON_PEP489_MULTI_PHASE_INIT - __pyx_moduledef_slots, /* m_slots */ - #else - NULL, /* m_reload */ - #endif - NULL, /* m_traverse */ - NULL, /* m_clear */ - NULL /* m_free */ -}; -#endif -#ifndef CYTHON_SMALL_CODE -#if defined(__clang__) - #define CYTHON_SMALL_CODE -#elif defined(__GNUC__) && (__GNUC__ > 4 || (__GNUC__ == 4 && __GNUC_MINOR__ >= 3)) - #define CYTHON_SMALL_CODE __attribute__((cold)) -#else - #define CYTHON_SMALL_CODE -#endif -#endif - -static __Pyx_StringTabEntry __pyx_string_tab[] = { - {&__pyx_kp_u_, __pyx_k_, sizeof(__pyx_k_), 0, 1, 0, 0}, - {&__pyx_n_s_HTTP_Server, __pyx_k_HTTP_Server, sizeof(__pyx_k_HTTP_Server), 0, 0, 1, 1}, - {&__pyx_n_s_HTTP_Server___init, __pyx_k_HTTP_Server___init, sizeof(__pyx_k_HTTP_Server___init), 0, 0, 1, 1}, - {&__pyx_n_s_HTTP_Server___init___locals_lamb, __pyx_k_HTTP_Server___init___locals_lamb, sizeof(__pyx_k_HTTP_Server___init___locals_lamb), 0, 0, 1, 1}, - {&__pyx_n_s_HTTP_Server_fingerprint, __pyx_k_HTTP_Server_fingerprint, sizeof(__pyx_k_HTTP_Server_fingerprint), 0, 0, 1, 1}, - {&__pyx_n_s_HTTP_Server_get_human_readable, __pyx_k_HTTP_Server_get_human_readable, sizeof(__pyx_k_HTTP_Server_get_human_readable), 0, 0, 1, 1}, - {&__pyx_n_s_HTTP_Server_proto_identify, __pyx_k_HTTP_Server_proto_identify, sizeof(__pyx_k_HTTP_Server_proto_identify), 0, 0, 1, 1}, - {&__pyx_n_s_IndexError, __pyx_k_IndexError, sizeof(__pyx_k_IndexError), 0, 0, 1, 1}, - {&__pyx_n_s_Protocol, __pyx_k_Protocol, sizeof(__pyx_k_Protocol), 0, 0, 1, 1}, - {&__pyx_n_s_UnicodeDecodeError, __pyx_k_UnicodeDecodeError, sizeof(__pyx_k_UnicodeDecodeError), 0, 0, 1, 1}, - {&__pyx_kp_u__10, __pyx_k__10, sizeof(__pyx_k__10), 0, 1, 0, 0}, - {&__pyx_kp_b__11, __pyx_k__11, sizeof(__pyx_k__11), 0, 0, 0, 0}, - {&__pyx_kp_u__11, __pyx_k__11, sizeof(__pyx_k__11), 0, 1, 0, 0}, - {&__pyx_kp_b__12, __pyx_k__12, sizeof(__pyx_k__12), 0, 0, 0, 0}, - {&__pyx_kp_u__14, __pyx_k__14, sizeof(__pyx_k__14), 0, 1, 0, 0}, - {&__pyx_kp_u__17, __pyx_k__17, sizeof(__pyx_k__17), 0, 1, 0, 0}, - {&__pyx_kp_u__2, __pyx_k__2, sizeof(__pyx_k__2), 0, 1, 0, 0}, - {&__pyx_n_u__3, __pyx_k__3, sizeof(__pyx_k__3), 0, 1, 0, 1}, - {&__pyx_kp_b__5, __pyx_k__5, sizeof(__pyx_k__5), 0, 0, 0, 0}, - {&__pyx_kp_b__7, __pyx_k__7, sizeof(__pyx_k__7), 0, 0, 0, 0}, - {&__pyx_n_s_abspath, __pyx_k_abspath, sizeof(__pyx_k_abspath), 0, 0, 1, 1}, - {&__pyx_kp_b_access_control_allow_credentials, __pyx_k_access_control_allow_credentials, sizeof(__pyx_k_access_control_allow_credentials), 0, 0, 0, 0}, - {&__pyx_kp_b_access_control_allow_headers, __pyx_k_access_control_allow_headers, sizeof(__pyx_k_access_control_allow_headers), 0, 0, 0, 0}, - {&__pyx_kp_b_access_control_allow_methods, __pyx_k_access_control_allow_methods, sizeof(__pyx_k_access_control_allow_methods), 0, 0, 0, 0}, - {&__pyx_kp_b_access_control_expose_headers, __pyx_k_access_control_expose_headers, sizeof(__pyx_k_access_control_expose_headers), 0, 0, 0, 0}, - {&__pyx_n_s_all_headers, __pyx_k_all_headers, sizeof(__pyx_k_all_headers), 0, 0, 1, 1}, - {&__pyx_n_s_all_headers_and_data, __pyx_k_all_headers_and_data, sizeof(__pyx_k_all_headers_and_data), 0, 0, 1, 1}, - {&__pyx_n_s_append, __pyx_k_append, sizeof(__pyx_k_append), 0, 0, 1, 1}, - {&__pyx_kp_b_appex_activity_id, __pyx_k_appex_activity_id, sizeof(__pyx_k_appex_activity_id), 0, 0, 0, 0}, - {&__pyx_n_s_c, __pyx_k_c, sizeof(__pyx_k_c), 0, 0, 1, 1}, - {&__pyx_kp_b_cache_control, __pyx_k_cache_control, sizeof(__pyx_k_cache_control), 0, 0, 0, 0}, - {&__pyx_n_b_cdnuuid, __pyx_k_cdnuuid, sizeof(__pyx_k_cdnuuid), 0, 0, 0, 1}, - {&__pyx_kp_b_cf_ray, __pyx_k_cf_ray, sizeof(__pyx_k_cf_ray), 0, 0, 0, 0}, - {&__pyx_n_s_cline_in_traceback, __pyx_k_cline_in_traceback, sizeof(__pyx_k_cline_in_traceback), 0, 0, 1, 1}, - {&__pyx_n_u_code, __pyx_k_code, sizeof(__pyx_k_code), 0, 1, 0, 1}, - {&__pyx_n_s_config, __pyx_k_config, sizeof(__pyx_k_config), 0, 0, 1, 1}, - {&__pyx_n_b_connection, __pyx_k_connection, sizeof(__pyx_k_connection), 0, 0, 0, 1}, - {&__pyx_kp_b_content_language, __pyx_k_content_language, sizeof(__pyx_k_content_language), 0, 0, 0, 0}, - {&__pyx_kp_b_content_range, __pyx_k_content_range, sizeof(__pyx_k_content_range), 0, 0, 0, 0}, - {&__pyx_kp_b_content_transfer_encoding, __pyx_k_content_transfer_encoding, sizeof(__pyx_k_content_transfer_encoding), 0, 0, 0, 0}, - {&__pyx_kp_b_content_type, __pyx_k_content_type, sizeof(__pyx_k_content_type), 0, 0, 0, 0}, - {&__pyx_n_s_context, __pyx_k_context, sizeof(__pyx_k_context), 0, 0, 1, 1}, - {&__pyx_n_u_context, __pyx_k_context, sizeof(__pyx_k_context), 0, 1, 0, 1}, - {&__pyx_n_s_contextual_data, __pyx_k_contextual_data, sizeof(__pyx_k_contextual_data), 0, 0, 1, 1}, - {&__pyx_n_s_data, __pyx_k_data, sizeof(__pyx_k_data), 0, 0, 1, 1}, - {&__pyx_n_u_data, __pyx_k_data, sizeof(__pyx_k_data), 0, 1, 0, 1}, - {&__pyx_n_s_data_len, __pyx_k_data_len, sizeof(__pyx_k_data_len), 0, 0, 1, 1}, - {&__pyx_n_b_date, __pyx_k_date, sizeof(__pyx_k_date), 0, 0, 0, 1}, - {&__pyx_n_s_decode, __pyx_k_decode, sizeof(__pyx_k_decode), 0, 0, 1, 1}, - {&__pyx_n_s_dirname, __pyx_k_dirname, sizeof(__pyx_k_dirname), 0, 0, 1, 1}, - {&__pyx_n_s_doc, __pyx_k_doc, sizeof(__pyx_k_doc), 0, 0, 1, 1}, - {&__pyx_n_s_encode, __pyx_k_encode, sizeof(__pyx_k_encode), 0, 0, 1, 1}, - {&__pyx_n_b_etag, __pyx_k_etag, sizeof(__pyx_k_etag), 0, 0, 0, 1}, - {&__pyx_n_b_expires, __pyx_k_expires, sizeof(__pyx_k_expires), 0, 0, 0, 1}, - {&__pyx_n_s_field, __pyx_k_field, sizeof(__pyx_k_field), 0, 0, 1, 1}, - {&__pyx_n_s_file, __pyx_k_file, sizeof(__pyx_k_file), 0, 0, 1, 1}, - {&__pyx_n_s_fingerprint, __pyx_k_fingerprint, sizeof(__pyx_k_fingerprint), 0, 0, 1, 1}, - {&__pyx_n_b_flow_context, __pyx_k_flow_context, sizeof(__pyx_k_flow_context), 0, 0, 0, 1}, - {&__pyx_n_s_fp_database, __pyx_k_fp_database, sizeof(__pyx_k_fp_database), 0, 0, 1, 1}, - {&__pyx_n_s_fp_db, __pyx_k_fp_db, sizeof(__pyx_k_fp_db), 0, 0, 1, 1}, - {&__pyx_n_s_fp_h, __pyx_k_fp_h, sizeof(__pyx_k_fp_h), 0, 0, 1, 1}, - {&__pyx_n_s_fp_str, __pyx_k_fp_str, sizeof(__pyx_k_fp_str), 0, 0, 1, 1}, - {&__pyx_n_s_fromhex, __pyx_k_fromhex, sizeof(__pyx_k_fromhex), 0, 0, 1, 1}, - {&__pyx_n_s_get_human_readable, __pyx_k_get_human_readable, sizeof(__pyx_k_get_human_readable), 0, 0, 1, 1}, - {&__pyx_n_s_h, __pyx_k_h, sizeof(__pyx_k_h), 0, 0, 1, 1}, - {&__pyx_n_s_h_c, __pyx_k_h_c, sizeof(__pyx_k_h_c), 0, 0, 1, 1}, - {&__pyx_n_s_headers, __pyx_k_headers, sizeof(__pyx_k_headers), 0, 0, 1, 1}, - {&__pyx_n_s_headers_data, __pyx_k_headers_data, sizeof(__pyx_k_headers_data), 0, 0, 1, 1}, - {&__pyx_n_s_hex, __pyx_k_hex, sizeof(__pyx_k_hex), 0, 0, 1, 1}, - {&__pyx_n_s_http_ah, __pyx_k_http_ah, sizeof(__pyx_k_http_ah), 0, 0, 1, 1}, - {&__pyx_n_s_http_ahd, __pyx_k_http_ahd, sizeof(__pyx_k_http_ahd), 0, 0, 1, 1}, - {&__pyx_n_s_http_ctx, __pyx_k_http_ctx, sizeof(__pyx_k_http_ctx), 0, 0, 1, 1}, - {&__pyx_n_u_http_server, __pyx_k_http_server, sizeof(__pyx_k_http_server), 0, 1, 0, 1}, - {&__pyx_n_s_http_sn, __pyx_k_http_sn, sizeof(__pyx_k_http_sn), 0, 0, 1, 1}, - {&__pyx_n_s_http_snv, __pyx_k_http_snv, sizeof(__pyx_k_http_snv), 0, 0, 1, 1}, - {&__pyx_n_s_i, __pyx_k_i, sizeof(__pyx_k_i), 0, 0, 1, 1}, - {&__pyx_n_s_import, __pyx_k_import, sizeof(__pyx_k_import), 0, 0, 1, 1}, - {&__pyx_n_s_init, __pyx_k_init, sizeof(__pyx_k_init), 0, 0, 1, 1}, - {&__pyx_n_s_lower, __pyx_k_lower, sizeof(__pyx_k_lower), 0, 0, 1, 1}, - {&__pyx_n_s_main, __pyx_k_main, sizeof(__pyx_k_main), 0, 0, 1, 1}, - {&__pyx_n_s_map, __pyx_k_map, sizeof(__pyx_k_map), 0, 0, 1, 1}, - {&__pyx_n_s_metaclass, __pyx_k_metaclass, sizeof(__pyx_k_metaclass), 0, 0, 1, 1}, - {&__pyx_n_s_module, __pyx_k_module, sizeof(__pyx_k_module), 0, 0, 1, 1}, - {&__pyx_kp_b_ms_cv, __pyx_k_ms_cv, sizeof(__pyx_k_ms_cv), 0, 0, 0, 0}, - {&__pyx_kp_b_ms_requestid, __pyx_k_ms_requestid, sizeof(__pyx_k_ms_requestid), 0, 0, 0, 0}, - {&__pyx_n_b_msregion, __pyx_k_msregion, sizeof(__pyx_k_msregion), 0, 0, 0, 1}, - {&__pyx_n_u_name, __pyx_k_name, sizeof(__pyx_k_name), 0, 1, 0, 1}, - {&__pyx_n_s_name_2, __pyx_k_name_2, sizeof(__pyx_k_name_2), 0, 0, 1, 1}, - {&__pyx_n_s_offset, __pyx_k_offset, sizeof(__pyx_k_offset), 0, 0, 1, 1}, - {&__pyx_n_s_os, __pyx_k_os, sizeof(__pyx_k_os), 0, 0, 1, 1}, - {&__pyx_n_b_p3p, __pyx_k_p3p, sizeof(__pyx_k_p3p), 0, 0, 0, 1}, - {&__pyx_n_s_path, __pyx_k_path, sizeof(__pyx_k_path), 0, 0, 1, 1}, - {&__pyx_n_s_pmercury_protocols_http_server, __pyx_k_pmercury_protocols_http_server, sizeof(__pyx_k_pmercury_protocols_http_server), 0, 0, 1, 1}, - {&__pyx_kp_s_pmercury_protocols_http_server_p, __pyx_k_pmercury_protocols_http_server_p, sizeof(__pyx_k_pmercury_protocols_http_server_p), 0, 0, 1, 0}, - {&__pyx_n_s_pmercury_protocols_protocol, __pyx_k_pmercury_protocols_protocol, sizeof(__pyx_k_pmercury_protocols_protocol), 0, 0, 1, 1}, - {&__pyx_n_b_pragma, __pyx_k_pragma, sizeof(__pyx_k_pragma), 0, 0, 0, 1}, - {&__pyx_n_u_preamble, __pyx_k_preamble, sizeof(__pyx_k_preamble), 0, 1, 0, 1}, - {&__pyx_n_s_prepare, __pyx_k_prepare, sizeof(__pyx_k_prepare), 0, 0, 1, 1}, - {&__pyx_n_s_proto_identify, __pyx_k_proto_identify, sizeof(__pyx_k_proto_identify), 0, 0, 1, 1}, - {&__pyx_n_s_qualname, __pyx_k_qualname, sizeof(__pyx_k_qualname), 0, 0, 1, 1}, - {&__pyx_n_s_range, __pyx_k_range, sizeof(__pyx_k_range), 0, 0, 1, 1}, - {&__pyx_n_u_reason, __pyx_k_reason, sizeof(__pyx_k_reason), 0, 1, 0, 1}, - {&__pyx_n_s_replace, __pyx_k_replace, sizeof(__pyx_k_replace), 0, 0, 1, 1}, - {&__pyx_kp_b_request_id, __pyx_k_request_id, sizeof(__pyx_k_request_id), 0, 0, 0, 0}, - {&__pyx_n_s_response, __pyx_k_response, sizeof(__pyx_k_response), 0, 0, 1, 1}, - {&__pyx_n_u_response, __pyx_k_response, sizeof(__pyx_k_response), 0, 1, 0, 1}, - {&__pyx_n_s_rh, __pyx_k_rh, sizeof(__pyx_k_rh), 0, 0, 1, 1}, - {&__pyx_kp_u_s, __pyx_k_s, sizeof(__pyx_k_s), 0, 1, 0, 0}, - {&__pyx_n_s_self, __pyx_k_self, sizeof(__pyx_k_self), 0, 0, 1, 1}, - {&__pyx_n_b_server, __pyx_k_server, sizeof(__pyx_k_server), 0, 0, 0, 1}, - {&__pyx_n_s_split, __pyx_k_split, sizeof(__pyx_k_split), 0, 0, 1, 1}, - {&__pyx_n_s_static_names, __pyx_k_static_names, sizeof(__pyx_k_static_names), 0, 0, 1, 1}, - {&__pyx_n_u_static_names, __pyx_k_static_names, sizeof(__pyx_k_static_names), 0, 1, 0, 1}, - {&__pyx_n_s_static_names_and_values, __pyx_k_static_names_and_values, sizeof(__pyx_k_static_names_and_values), 0, 0, 1, 1}, - {&__pyx_n_u_static_names_and_values, __pyx_k_static_names_and_values, sizeof(__pyx_k_static_names_and_values), 0, 1, 0, 1}, - {&__pyx_n_s_staticmethod, __pyx_k_staticmethod, sizeof(__pyx_k_staticmethod), 0, 0, 1, 1}, - {&__pyx_kp_b_strict_transport_security, __pyx_k_strict_transport_security, sizeof(__pyx_k_strict_transport_security), 0, 0, 0, 0}, - {&__pyx_n_s_sys, __pyx_k_sys, sizeof(__pyx_k_sys), 0, 0, 1, 1}, - {&__pyx_n_s_t, __pyx_k_t, sizeof(__pyx_k_t), 0, 0, 1, 1}, - {&__pyx_n_s_t0, __pyx_k_t0, sizeof(__pyx_k_t0), 0, 0, 1, 1}, - {&__pyx_n_s_t0_lower, __pyx_k_t0_lower, sizeof(__pyx_k_t0_lower), 0, 0, 1, 1}, - {&__pyx_n_s_test, __pyx_k_test, sizeof(__pyx_k_test), 0, 0, 1, 1}, - {&__pyx_n_b_vary, __pyx_k_vary, sizeof(__pyx_k_vary), 0, 0, 0, 1}, - {&__pyx_n_u_version, __pyx_k_version, sizeof(__pyx_k_version), 0, 1, 0, 1}, - {&__pyx_n_b_via, __pyx_k_via, sizeof(__pyx_k_via), 0, 0, 0, 1}, - {&__pyx_n_u_via, __pyx_k_via, sizeof(__pyx_k_via), 0, 1, 0, 1}, - {&__pyx_n_s_x, __pyx_k_x, sizeof(__pyx_k_x), 0, 0, 1, 1}, - {&__pyx_kp_b_x_amz_cf_pop, __pyx_k_x_amz_cf_pop, sizeof(__pyx_k_x_amz_cf_pop), 0, 0, 0, 0}, - {&__pyx_kp_b_x_amz_request_id, __pyx_k_x_amz_request_id, sizeof(__pyx_k_x_amz_request_id), 0, 0, 0, 0}, - {&__pyx_kp_b_x_aspnet_version, __pyx_k_x_aspnet_version, sizeof(__pyx_k_x_aspnet_version), 0, 0, 0, 0}, - {&__pyx_kp_b_x_aspnetmvc_version, __pyx_k_x_aspnetmvc_version, sizeof(__pyx_k_x_aspnetmvc_version), 0, 0, 0, 0}, - {&__pyx_kp_b_x_azure_ref_originshield, __pyx_k_x_azure_ref_originshield, sizeof(__pyx_k_x_azure_ref_originshield), 0, 0, 0, 0}, - {&__pyx_kp_b_x_cache, __pyx_k_x_cache, sizeof(__pyx_k_x_cache), 0, 0, 0, 0}, - {&__pyx_kp_b_x_cache_hits, __pyx_k_x_cache_hits, sizeof(__pyx_k_x_cache_hits), 0, 0, 0, 0}, - {&__pyx_kp_b_x_ccc, __pyx_k_x_ccc, sizeof(__pyx_k_x_ccc), 0, 0, 0, 0}, - {&__pyx_kp_b_x_cid, __pyx_k_x_cid, sizeof(__pyx_k_x_cid), 0, 0, 0, 0}, - {&__pyx_kp_b_x_diagnostic_s, __pyx_k_x_diagnostic_s, sizeof(__pyx_k_x_diagnostic_s), 0, 0, 0, 0}, - {&__pyx_kp_b_x_feserver, __pyx_k_x_feserver, sizeof(__pyx_k_x_feserver), 0, 0, 0, 0}, - {&__pyx_kp_b_x_hw, __pyx_k_x_hw, sizeof(__pyx_k_x_hw), 0, 0, 0, 0}, - {&__pyx_kp_b_x_ms_version, __pyx_k_x_ms_version, sizeof(__pyx_k_x_ms_version), 0, 0, 0, 0}, - {&__pyx_kp_b_x_msedge_ref, __pyx_k_x_msedge_ref, sizeof(__pyx_k_x_msedge_ref), 0, 0, 0, 0}, - {&__pyx_kp_b_x_ocsp_responder_id, __pyx_k_x_ocsp_responder_id, sizeof(__pyx_k_x_ocsp_responder_id), 0, 0, 0, 0}, - {&__pyx_kp_b_x_requestid, __pyx_k_x_requestid, sizeof(__pyx_k_x_requestid), 0, 0, 0, 0}, - {&__pyx_kp_b_x_served_by, __pyx_k_x_served_by, sizeof(__pyx_k_x_served_by), 0, 0, 0, 0}, - {&__pyx_kp_b_x_timer, __pyx_k_x_timer, sizeof(__pyx_k_x_timer), 0, 0, 0, 0}, - {&__pyx_kp_b_x_trace_context, __pyx_k_x_trace_context, sizeof(__pyx_k_x_trace_context), 0, 0, 0, 0}, - {&__pyx_kp_b_x_xss_protection, __pyx_k_x_xss_protection, sizeof(__pyx_k_x_xss_protection), 0, 0, 0, 0}, - {0, 0, 0, 0, 0, 0, 0} -}; -static CYTHON_SMALL_CODE int __Pyx_InitCachedBuiltins(void) { - __pyx_builtin_staticmethod = __Pyx_GetBuiltinName(__pyx_n_s_staticmethod); if (!__pyx_builtin_staticmethod) __PYX_ERR(0, 66, __pyx_L1_error) - __pyx_builtin_map = __Pyx_GetBuiltinName(__pyx_n_s_map); if (!__pyx_builtin_map) __PYX_ERR(0, 47, __pyx_L1_error) - __pyx_builtin_IndexError = __Pyx_GetBuiltinName(__pyx_n_s_IndexError); if (!__pyx_builtin_IndexError) __PYX_ERR(0, 91, __pyx_L1_error) - __pyx_builtin_UnicodeDecodeError = __Pyx_GetBuiltinName(__pyx_n_s_UnicodeDecodeError); if (!__pyx_builtin_UnicodeDecodeError) __PYX_ERR(0, 129, __pyx_L1_error) - __pyx_builtin_range = __Pyx_GetBuiltinName(__pyx_n_s_range); if (!__pyx_builtin_range) __PYX_ERR(0, 143, __pyx_L1_error) - return 0; - __pyx_L1_error:; - return -1; -} - -static CYTHON_SMALL_CODE int __Pyx_InitCachedConstants(void) { - __Pyx_RefNannyDeclarations - __Pyx_RefNannySetupContext("__Pyx_InitCachedConstants", 0); - - /* "pmercury/protocols/http_server.pyx":63 - * if 'context' in config['http_server']: - * for c in config['http_server']['context']: - * HTTP_Server.contextual_data[c.encode()] = c.lower().replace('-','_') # <<<<<<<<<<<<<< - * - * - */ - __pyx_tuple__4 = PyTuple_Pack(2, __pyx_kp_u__2, __pyx_n_u__3); if (unlikely(!__pyx_tuple__4)) __PYX_ERR(0, 63, __pyx_L1_error) - __Pyx_GOTREF(__pyx_tuple__4); - __Pyx_GIVEREF(__pyx_tuple__4); - - /* "pmercury/protocols/http_server.pyx":82 - * @staticmethod - * def fingerprint(bytes data, unsigned int offset, unsigned int data_len): - * cdef list t_ = data[offset:].split(b'\x0d\x0a', 1) # <<<<<<<<<<<<<< - * cdef list response = t_[0].split(b'\x20',2) - * if len(response) < 2: - */ - __pyx_tuple__6 = PyTuple_Pack(2, __pyx_kp_b__5, __pyx_int_1); if (unlikely(!__pyx_tuple__6)) __PYX_ERR(0, 82, __pyx_L1_error) - __Pyx_GOTREF(__pyx_tuple__6); - __Pyx_GIVEREF(__pyx_tuple__6); - - /* "pmercury/protocols/http_server.pyx":83 - * def fingerprint(bytes data, unsigned int offset, unsigned int data_len): - * cdef list t_ = data[offset:].split(b'\x0d\x0a', 1) - * cdef list response = t_[0].split(b'\x20',2) # <<<<<<<<<<<<<< - * if len(response) < 2: - * return None, None - */ - __pyx_tuple__8 = PyTuple_Pack(2, __pyx_kp_b__7, __pyx_int_2); if (unlikely(!__pyx_tuple__8)) __PYX_ERR(0, 83, __pyx_L1_error) - __Pyx_GOTREF(__pyx_tuple__8); - __Pyx_GIVEREF(__pyx_tuple__8); - - /* "pmercury/protocols/http_server.pyx":85 - * cdef list response = t_[0].split(b'\x20',2) - * if len(response) < 2: - * return None, None # <<<<<<<<<<<<<< - * - * cdef list c = [] - */ - __pyx_tuple__9 = PyTuple_Pack(2, Py_None, Py_None); if (unlikely(!__pyx_tuple__9)) __PYX_ERR(0, 85, __pyx_L1_error) - __Pyx_GOTREF(__pyx_tuple__9); - __Pyx_GIVEREF(__pyx_tuple__9); - - /* "pmercury/protocols/http_server.pyx":110 - * if h_ == b'': - * break - * t0_ = h_.split(b'\x3a\x20',1)[0] # <<<<<<<<<<<<<< - * t0_lower = t0_.lower() - * - */ - __pyx_tuple__13 = PyTuple_Pack(2, __pyx_kp_b__12, __pyx_int_1); if (unlikely(!__pyx_tuple__13)) __PYX_ERR(0, 110, __pyx_L1_error) - __Pyx_GOTREF(__pyx_tuple__13); - __Pyx_GIVEREF(__pyx_tuple__13); - - /* "pmercury/protocols/http_server.pyx":138 - * - * def get_human_readable(self, fp_str_): - * t_ = [bytes.fromhex(x[1:]) for x in fp_str_.split(')')[:-1]] # <<<<<<<<<<<<<< - * try: - * fp_h = [{'version':t_[0].decode()},{'code':t_[1].decode()},{'response':t_[2].decode()}] - */ - __pyx_slice__15 = PySlice_New(Py_None, __pyx_int_neg_1, Py_None); if (unlikely(!__pyx_slice__15)) __PYX_ERR(0, 138, __pyx_L1_error) - __Pyx_GOTREF(__pyx_slice__15); - __Pyx_GIVEREF(__pyx_slice__15); - __pyx_slice__16 = PySlice_New(__pyx_int_1, Py_None, Py_None); if (unlikely(!__pyx_slice__16)) __PYX_ERR(0, 138, __pyx_L1_error) - __Pyx_GOTREF(__pyx_slice__16); - __Pyx_GIVEREF(__pyx_slice__16); - - /* "pmercury/protocols/http_server.pyx":18 - * class HTTP_Server(Protocol): - * - * def __init__(self, fp_database=None, config=None): # <<<<<<<<<<<<<< - * # populate fingerprint databases - * self.fp_db = {} - */ - __pyx_tuple__18 = PyTuple_Pack(4, __pyx_n_s_self, __pyx_n_s_fp_database, __pyx_n_s_config, __pyx_n_s_c); if (unlikely(!__pyx_tuple__18)) __PYX_ERR(0, 18, __pyx_L1_error) - __Pyx_GOTREF(__pyx_tuple__18); - __Pyx_GIVEREF(__pyx_tuple__18); - __pyx_codeobj__19 = (PyObject*)__Pyx_PyCode_New(3, 0, 4, 0, CO_OPTIMIZED|CO_NEWLOCALS, __pyx_empty_bytes, __pyx_empty_tuple, __pyx_empty_tuple, __pyx_tuple__18, __pyx_empty_tuple, __pyx_empty_tuple, __pyx_kp_s_pmercury_protocols_http_server_p, __pyx_n_s_init, 18, __pyx_empty_bytes); if (unlikely(!__pyx_codeobj__19)) __PYX_ERR(0, 18, __pyx_L1_error) - __pyx_tuple__20 = PyTuple_Pack(2, ((PyObject *)Py_None), ((PyObject *)Py_None)); if (unlikely(!__pyx_tuple__20)) __PYX_ERR(0, 18, __pyx_L1_error) - __Pyx_GOTREF(__pyx_tuple__20); - __Pyx_GIVEREF(__pyx_tuple__20); - - /* "pmercury/protocols/http_server.pyx":67 - * - * @staticmethod - * def proto_identify(data, offset, data_len): # <<<<<<<<<<<<<< - * if data_len-offset < 16: - * return False - */ - __pyx_tuple__21 = PyTuple_Pack(3, __pyx_n_s_data, __pyx_n_s_offset, __pyx_n_s_data_len); if (unlikely(!__pyx_tuple__21)) __PYX_ERR(0, 67, __pyx_L1_error) - __Pyx_GOTREF(__pyx_tuple__21); - __Pyx_GIVEREF(__pyx_tuple__21); - __pyx_codeobj__22 = (PyObject*)__Pyx_PyCode_New(3, 0, 3, 0, CO_OPTIMIZED|CO_NEWLOCALS, __pyx_empty_bytes, __pyx_empty_tuple, __pyx_empty_tuple, __pyx_tuple__21, __pyx_empty_tuple, __pyx_empty_tuple, __pyx_kp_s_pmercury_protocols_http_server_p, __pyx_n_s_proto_identify, 67, __pyx_empty_bytes); if (unlikely(!__pyx_codeobj__22)) __PYX_ERR(0, 67, __pyx_L1_error) - - /* "pmercury/protocols/http_server.pyx":81 - * - * @staticmethod - * def fingerprint(bytes data, unsigned int offset, unsigned int data_len): # <<<<<<<<<<<<<< - * cdef list t_ = data[offset:].split(b'\x0d\x0a', 1) - * cdef list response = t_[0].split(b'\x20',2) - */ - __pyx_tuple__23 = PyTuple_Pack(18, __pyx_n_s_data, __pyx_n_s_offset, __pyx_n_s_data_len, __pyx_n_s_t, __pyx_n_s_response, __pyx_n_s_c, __pyx_n_s_rh, __pyx_n_s_headers, __pyx_n_s_http_ah, __pyx_n_s_http_ahd, __pyx_n_s_http_sn, __pyx_n_s_http_snv, __pyx_n_s_http_ctx, __pyx_n_s_h_c, __pyx_n_s_context, __pyx_n_s_h, __pyx_n_s_t0, __pyx_n_s_t0_lower); if (unlikely(!__pyx_tuple__23)) __PYX_ERR(0, 81, __pyx_L1_error) - __Pyx_GOTREF(__pyx_tuple__23); - __Pyx_GIVEREF(__pyx_tuple__23); - __pyx_codeobj__24 = (PyObject*)__Pyx_PyCode_New(3, 0, 18, 0, CO_OPTIMIZED|CO_NEWLOCALS, __pyx_empty_bytes, __pyx_empty_tuple, __pyx_empty_tuple, __pyx_tuple__23, __pyx_empty_tuple, __pyx_empty_tuple, __pyx_kp_s_pmercury_protocols_http_server_p, __pyx_n_s_fingerprint, 81, __pyx_empty_bytes); if (unlikely(!__pyx_codeobj__24)) __PYX_ERR(0, 81, __pyx_L1_error) - - /* "pmercury/protocols/http_server.pyx":137 - * - * - * def get_human_readable(self, fp_str_): # <<<<<<<<<<<<<< - * t_ = [bytes.fromhex(x[1:]) for x in fp_str_.split(')')[:-1]] - * try: - */ - __pyx_tuple__25 = PyTuple_Pack(7, __pyx_n_s_self, __pyx_n_s_fp_str, __pyx_n_s_t, __pyx_n_s_fp_h, __pyx_n_s_i, __pyx_n_s_field, __pyx_n_s_x); if (unlikely(!__pyx_tuple__25)) __PYX_ERR(0, 137, __pyx_L1_error) - __Pyx_GOTREF(__pyx_tuple__25); - __Pyx_GIVEREF(__pyx_tuple__25); - __pyx_codeobj__26 = (PyObject*)__Pyx_PyCode_New(2, 0, 7, 0, CO_OPTIMIZED|CO_NEWLOCALS, __pyx_empty_bytes, __pyx_empty_tuple, __pyx_empty_tuple, __pyx_tuple__25, __pyx_empty_tuple, __pyx_empty_tuple, __pyx_kp_s_pmercury_protocols_http_server_p, __pyx_n_s_get_human_readable, 137, __pyx_empty_bytes); if (unlikely(!__pyx_codeobj__26)) __PYX_ERR(0, 137, __pyx_L1_error) - __Pyx_RefNannyFinishContext(); - return 0; - __pyx_L1_error:; - __Pyx_RefNannyFinishContext(); - return -1; -} - -static CYTHON_SMALL_CODE int __Pyx_InitGlobals(void) { - if (__Pyx_InitStrings(__pyx_string_tab) < 0) __PYX_ERR(0, 1, __pyx_L1_error); - __pyx_int_0 = PyInt_FromLong(0); if (unlikely(!__pyx_int_0)) __PYX_ERR(0, 1, __pyx_L1_error) - __pyx_int_1 = PyInt_FromLong(1); if (unlikely(!__pyx_int_1)) __PYX_ERR(0, 1, __pyx_L1_error) - __pyx_int_2 = PyInt_FromLong(2); if (unlikely(!__pyx_int_2)) __PYX_ERR(0, 1, __pyx_L1_error) - __pyx_int_3 = PyInt_FromLong(3); if (unlikely(!__pyx_int_3)) __PYX_ERR(0, 1, __pyx_L1_error) - __pyx_int_4 = PyInt_FromLong(4); if (unlikely(!__pyx_int_4)) __PYX_ERR(0, 1, __pyx_L1_error) - __pyx_int_5 = PyInt_FromLong(5); if (unlikely(!__pyx_int_5)) __PYX_ERR(0, 1, __pyx_L1_error) - __pyx_int_16 = PyInt_FromLong(16); if (unlikely(!__pyx_int_16)) __PYX_ERR(0, 1, __pyx_L1_error) - __pyx_int_47 = PyInt_FromLong(47); if (unlikely(!__pyx_int_47)) __PYX_ERR(0, 1, __pyx_L1_error) - __pyx_int_49 = PyInt_FromLong(49); if (unlikely(!__pyx_int_49)) __PYX_ERR(0, 1, __pyx_L1_error) - __pyx_int_72 = PyInt_FromLong(72); if (unlikely(!__pyx_int_72)) __PYX_ERR(0, 1, __pyx_L1_error) - __pyx_int_80 = PyInt_FromLong(80); if (unlikely(!__pyx_int_80)) __PYX_ERR(0, 1, __pyx_L1_error) - __pyx_int_84 = PyInt_FromLong(84); if (unlikely(!__pyx_int_84)) __PYX_ERR(0, 1, __pyx_L1_error) - __pyx_int_neg_1 = PyInt_FromLong(-1); if (unlikely(!__pyx_int_neg_1)) __PYX_ERR(0, 1, __pyx_L1_error) - return 0; - __pyx_L1_error:; - return -1; -} - -static CYTHON_SMALL_CODE int __Pyx_modinit_global_init_code(void); /*proto*/ -static CYTHON_SMALL_CODE int __Pyx_modinit_variable_export_code(void); /*proto*/ -static CYTHON_SMALL_CODE int __Pyx_modinit_function_export_code(void); /*proto*/ -static CYTHON_SMALL_CODE int __Pyx_modinit_type_init_code(void); /*proto*/ -static CYTHON_SMALL_CODE int __Pyx_modinit_type_import_code(void); /*proto*/ -static CYTHON_SMALL_CODE int __Pyx_modinit_variable_import_code(void); /*proto*/ -static CYTHON_SMALL_CODE int __Pyx_modinit_function_import_code(void); /*proto*/ - -static int __Pyx_modinit_global_init_code(void) { - __Pyx_RefNannyDeclarations - __Pyx_RefNannySetupContext("__Pyx_modinit_global_init_code", 0); - /*--- Global init code ---*/ - __Pyx_RefNannyFinishContext(); - return 0; -} - -static int __Pyx_modinit_variable_export_code(void) { - __Pyx_RefNannyDeclarations - __Pyx_RefNannySetupContext("__Pyx_modinit_variable_export_code", 0); - /*--- Variable export code ---*/ - __Pyx_RefNannyFinishContext(); - return 0; -} - -static int __Pyx_modinit_function_export_code(void) { - __Pyx_RefNannyDeclarations - __Pyx_RefNannySetupContext("__Pyx_modinit_function_export_code", 0); - /*--- Function export code ---*/ - __Pyx_RefNannyFinishContext(); - return 0; -} - -static int __Pyx_modinit_type_init_code(void) { - __Pyx_RefNannyDeclarations - __Pyx_RefNannySetupContext("__Pyx_modinit_type_init_code", 0); - /*--- Type init code ---*/ - __Pyx_RefNannyFinishContext(); - return 0; -} - -static int __Pyx_modinit_type_import_code(void) { - __Pyx_RefNannyDeclarations - __Pyx_RefNannySetupContext("__Pyx_modinit_type_import_code", 0); - /*--- Type import code ---*/ - __Pyx_RefNannyFinishContext(); - return 0; -} - -static int __Pyx_modinit_variable_import_code(void) { - __Pyx_RefNannyDeclarations - __Pyx_RefNannySetupContext("__Pyx_modinit_variable_import_code", 0); - /*--- Variable import code ---*/ - __Pyx_RefNannyFinishContext(); - return 0; -} - -static int __Pyx_modinit_function_import_code(void) { - __Pyx_RefNannyDeclarations - __Pyx_RefNannySetupContext("__Pyx_modinit_function_import_code", 0); - /*--- Function import code ---*/ - __Pyx_RefNannyFinishContext(); - return 0; -} - - -#if PY_MAJOR_VERSION < 3 -#ifdef CYTHON_NO_PYINIT_EXPORT -#define __Pyx_PyMODINIT_FUNC void -#else -#define __Pyx_PyMODINIT_FUNC PyMODINIT_FUNC -#endif -#else -#ifdef CYTHON_NO_PYINIT_EXPORT -#define __Pyx_PyMODINIT_FUNC PyObject * -#else -#define __Pyx_PyMODINIT_FUNC PyMODINIT_FUNC -#endif -#endif - - -#if PY_MAJOR_VERSION < 3 -__Pyx_PyMODINIT_FUNC inithttp_server(void) CYTHON_SMALL_CODE; /*proto*/ -__Pyx_PyMODINIT_FUNC inithttp_server(void) -#else -__Pyx_PyMODINIT_FUNC PyInit_http_server(void) CYTHON_SMALL_CODE; /*proto*/ -__Pyx_PyMODINIT_FUNC PyInit_http_server(void) -#if CYTHON_PEP489_MULTI_PHASE_INIT -{ - return PyModuleDef_Init(&__pyx_moduledef); -} -static CYTHON_SMALL_CODE int __Pyx_check_single_interpreter(void) { - #if PY_VERSION_HEX >= 0x030700A1 - static PY_INT64_T main_interpreter_id = -1; - PY_INT64_T current_id = PyInterpreterState_GetID(PyThreadState_Get()->interp); - if (main_interpreter_id == -1) { - main_interpreter_id = current_id; - return (unlikely(current_id == -1)) ? -1 : 0; - } else if (unlikely(main_interpreter_id != current_id)) - #else - static PyInterpreterState *main_interpreter = NULL; - PyInterpreterState *current_interpreter = PyThreadState_Get()->interp; - if (!main_interpreter) { - main_interpreter = current_interpreter; - } else if (unlikely(main_interpreter != current_interpreter)) - #endif - { - PyErr_SetString( - PyExc_ImportError, - "Interpreter change detected - this module can only be loaded into one interpreter per process."); - return -1; - } - return 0; -} -static CYTHON_SMALL_CODE int __Pyx_copy_spec_to_module(PyObject *spec, PyObject *moddict, const char* from_name, const char* to_name, int allow_none) { - PyObject *value = PyObject_GetAttrString(spec, from_name); - int result = 0; - if (likely(value)) { - if (allow_none || value != Py_None) { - result = PyDict_SetItemString(moddict, to_name, value); - } - Py_DECREF(value); - } else if (PyErr_ExceptionMatches(PyExc_AttributeError)) { - PyErr_Clear(); - } else { - result = -1; - } - return result; -} -static CYTHON_SMALL_CODE PyObject* __pyx_pymod_create(PyObject *spec, CYTHON_UNUSED PyModuleDef *def) { - PyObject *module = NULL, *moddict, *modname; - if (__Pyx_check_single_interpreter()) - return NULL; - if (__pyx_m) - return __Pyx_NewRef(__pyx_m); - modname = PyObject_GetAttrString(spec, "name"); - if (unlikely(!modname)) goto bad; - module = PyModule_NewObject(modname); - Py_DECREF(modname); - if (unlikely(!module)) goto bad; - moddict = PyModule_GetDict(module); - if (unlikely(!moddict)) goto bad; - if (unlikely(__Pyx_copy_spec_to_module(spec, moddict, "loader", "__loader__", 1) < 0)) goto bad; - if (unlikely(__Pyx_copy_spec_to_module(spec, moddict, "origin", "__file__", 1) < 0)) goto bad; - if (unlikely(__Pyx_copy_spec_to_module(spec, moddict, "parent", "__package__", 1) < 0)) goto bad; - if (unlikely(__Pyx_copy_spec_to_module(spec, moddict, "submodule_search_locations", "__path__", 0) < 0)) goto bad; - return module; -bad: - Py_XDECREF(module); - return NULL; -} - - -static CYTHON_SMALL_CODE int __pyx_pymod_exec_http_server(PyObject *__pyx_pyinit_module) -#endif -#endif -{ - PyObject *__pyx_t_1 = NULL; - PyObject *__pyx_t_2 = NULL; - PyObject *__pyx_t_3 = NULL; - PyObject *__pyx_t_4 = NULL; - PyObject *__pyx_t_5 = NULL; - int __pyx_t_6; - __Pyx_RefNannyDeclarations - #if CYTHON_PEP489_MULTI_PHASE_INIT - if (__pyx_m) { - if (__pyx_m == __pyx_pyinit_module) return 0; - PyErr_SetString(PyExc_RuntimeError, "Module 'http_server' has already been imported. Re-initialisation is not supported."); - return -1; - } - #elif PY_MAJOR_VERSION >= 3 - if (__pyx_m) return __Pyx_NewRef(__pyx_m); - #endif - #if CYTHON_REFNANNY -__Pyx_RefNanny = __Pyx_RefNannyImportAPI("refnanny"); -if (!__Pyx_RefNanny) { - PyErr_Clear(); - __Pyx_RefNanny = __Pyx_RefNannyImportAPI("Cython.Runtime.refnanny"); - if (!__Pyx_RefNanny) - Py_FatalError("failed to import 'refnanny' module"); -} -#endif - __Pyx_RefNannySetupContext("__Pyx_PyMODINIT_FUNC PyInit_http_server(void)", 0); - if (__Pyx_check_binary_version() < 0) __PYX_ERR(0, 1, __pyx_L1_error) - #ifdef __Pxy_PyFrame_Initialize_Offsets - __Pxy_PyFrame_Initialize_Offsets(); - #endif - __pyx_empty_tuple = PyTuple_New(0); if (unlikely(!__pyx_empty_tuple)) __PYX_ERR(0, 1, __pyx_L1_error) - __pyx_empty_bytes = PyBytes_FromStringAndSize("", 0); if (unlikely(!__pyx_empty_bytes)) __PYX_ERR(0, 1, __pyx_L1_error) - __pyx_empty_unicode = PyUnicode_FromStringAndSize("", 0); if (unlikely(!__pyx_empty_unicode)) __PYX_ERR(0, 1, __pyx_L1_error) - #ifdef __Pyx_CyFunction_USED - if (__pyx_CyFunction_init() < 0) __PYX_ERR(0, 1, __pyx_L1_error) - #endif - #ifdef __Pyx_FusedFunction_USED - if (__pyx_FusedFunction_init() < 0) __PYX_ERR(0, 1, __pyx_L1_error) - #endif - #ifdef __Pyx_Coroutine_USED - if (__pyx_Coroutine_init() < 0) __PYX_ERR(0, 1, __pyx_L1_error) - #endif - #ifdef __Pyx_Generator_USED - if (__pyx_Generator_init() < 0) __PYX_ERR(0, 1, __pyx_L1_error) - #endif - #ifdef __Pyx_AsyncGen_USED - if (__pyx_AsyncGen_init() < 0) __PYX_ERR(0, 1, __pyx_L1_error) - #endif - #ifdef __Pyx_StopAsyncIteration_USED - if (__pyx_StopAsyncIteration_init() < 0) __PYX_ERR(0, 1, __pyx_L1_error) - #endif - /*--- Library function declarations ---*/ - /*--- Threads initialization code ---*/ - #if defined(__PYX_FORCE_INIT_THREADS) && __PYX_FORCE_INIT_THREADS - #ifdef WITH_THREAD /* Python build with threading support? */ - PyEval_InitThreads(); - #endif - #endif - /*--- Module creation code ---*/ - #if CYTHON_PEP489_MULTI_PHASE_INIT - __pyx_m = __pyx_pyinit_module; - Py_INCREF(__pyx_m); - #else - #if PY_MAJOR_VERSION < 3 - __pyx_m = Py_InitModule4("http_server", __pyx_methods, __pyx_k_Copyright_c_2019_Cisco_Systems, 0, PYTHON_API_VERSION); Py_XINCREF(__pyx_m); - #else - __pyx_m = PyModule_Create(&__pyx_moduledef); - #endif - if (unlikely(!__pyx_m)) __PYX_ERR(0, 1, __pyx_L1_error) - #endif - __pyx_d = PyModule_GetDict(__pyx_m); if (unlikely(!__pyx_d)) __PYX_ERR(0, 1, __pyx_L1_error) - Py_INCREF(__pyx_d); - __pyx_b = PyImport_AddModule(__Pyx_BUILTIN_MODULE_NAME); if (unlikely(!__pyx_b)) __PYX_ERR(0, 1, __pyx_L1_error) - Py_INCREF(__pyx_b); - __pyx_cython_runtime = PyImport_AddModule((char *) "cython_runtime"); if (unlikely(!__pyx_cython_runtime)) __PYX_ERR(0, 1, __pyx_L1_error) - Py_INCREF(__pyx_cython_runtime); - if (PyObject_SetAttrString(__pyx_m, "__builtins__", __pyx_b) < 0) __PYX_ERR(0, 1, __pyx_L1_error); - /*--- Initialize various global constants etc. ---*/ - if (__Pyx_InitGlobals() < 0) __PYX_ERR(0, 1, __pyx_L1_error) - #if PY_MAJOR_VERSION < 3 && (__PYX_DEFAULT_STRING_ENCODING_IS_ASCII || __PYX_DEFAULT_STRING_ENCODING_IS_DEFAULT) - if (__Pyx_init_sys_getdefaultencoding_params() < 0) __PYX_ERR(0, 1, __pyx_L1_error) - #endif - if (__pyx_module_is_main_pmercury__protocols__http_server) { - if (PyObject_SetAttr(__pyx_m, __pyx_n_s_name_2, __pyx_n_s_main) < 0) __PYX_ERR(0, 1, __pyx_L1_error) - } - #if PY_MAJOR_VERSION >= 3 - { - PyObject *modules = PyImport_GetModuleDict(); if (unlikely(!modules)) __PYX_ERR(0, 1, __pyx_L1_error) - if (!PyDict_GetItemString(modules, "pmercury.protocols.http_server")) { - if (unlikely(PyDict_SetItemString(modules, "pmercury.protocols.http_server", __pyx_m) < 0)) __PYX_ERR(0, 1, __pyx_L1_error) - } - } - #endif - /*--- Builtin init code ---*/ - if (__Pyx_InitCachedBuiltins() < 0) goto __pyx_L1_error; - /*--- Constants init code ---*/ - if (__Pyx_InitCachedConstants() < 0) goto __pyx_L1_error; - /*--- Global type/function init code ---*/ - (void)__Pyx_modinit_global_init_code(); - (void)__Pyx_modinit_variable_export_code(); - (void)__Pyx_modinit_function_export_code(); - (void)__Pyx_modinit_type_init_code(); - (void)__Pyx_modinit_type_import_code(); - (void)__Pyx_modinit_variable_import_code(); - (void)__Pyx_modinit_function_import_code(); - /*--- Execution code ---*/ - #if defined(__Pyx_Generator_USED) || defined(__Pyx_Coroutine_USED) - if (__Pyx_patch_abc() < 0) __PYX_ERR(0, 1, __pyx_L1_error) - #endif - - /* "pmercury/protocols/http_server.pyx":8 - * """ - * - * import os # <<<<<<<<<<<<<< - * import sys - * - */ - __pyx_t_1 = __Pyx_Import(__pyx_n_s_os, 0, 0); if (unlikely(!__pyx_t_1)) __PYX_ERR(0, 8, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_1); - if (PyDict_SetItem(__pyx_d, __pyx_n_s_os, __pyx_t_1) < 0) __PYX_ERR(0, 8, __pyx_L1_error) - __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0; - - /* "pmercury/protocols/http_server.pyx":9 - * - * import os - * import sys # <<<<<<<<<<<<<< - * - * sys.path.append(os.path.dirname(os.path.abspath(__file__))) - */ - __pyx_t_1 = __Pyx_Import(__pyx_n_s_sys, 0, 0); if (unlikely(!__pyx_t_1)) __PYX_ERR(0, 9, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_1); - if (PyDict_SetItem(__pyx_d, __pyx_n_s_sys, __pyx_t_1) < 0) __PYX_ERR(0, 9, __pyx_L1_error) - __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0; - - /* "pmercury/protocols/http_server.pyx":11 - * import sys - * - * sys.path.append(os.path.dirname(os.path.abspath(__file__))) # <<<<<<<<<<<<<< - * sys.path.append(os.path.dirname(os.path.abspath(__file__))+'/../') - * from pmercury.protocols.protocol import Protocol - */ - __Pyx_GetModuleGlobalName(__pyx_t_1, __pyx_n_s_sys); if (unlikely(!__pyx_t_1)) __PYX_ERR(0, 11, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_1); - __pyx_t_2 = __Pyx_PyObject_GetAttrStr(__pyx_t_1, __pyx_n_s_path); if (unlikely(!__pyx_t_2)) __PYX_ERR(0, 11, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_2); - __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0; - __Pyx_GetModuleGlobalName(__pyx_t_1, __pyx_n_s_os); if (unlikely(!__pyx_t_1)) __PYX_ERR(0, 11, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_1); - __pyx_t_3 = __Pyx_PyObject_GetAttrStr(__pyx_t_1, __pyx_n_s_path); if (unlikely(!__pyx_t_3)) __PYX_ERR(0, 11, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_3); - __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0; - __pyx_t_1 = __Pyx_PyObject_GetAttrStr(__pyx_t_3, __pyx_n_s_dirname); if (unlikely(!__pyx_t_1)) __PYX_ERR(0, 11, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_1); - __Pyx_DECREF(__pyx_t_3); __pyx_t_3 = 0; - __Pyx_GetModuleGlobalName(__pyx_t_3, __pyx_n_s_os); if (unlikely(!__pyx_t_3)) __PYX_ERR(0, 11, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_3); - __pyx_t_4 = __Pyx_PyObject_GetAttrStr(__pyx_t_3, __pyx_n_s_path); if (unlikely(!__pyx_t_4)) __PYX_ERR(0, 11, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_4); - __Pyx_DECREF(__pyx_t_3); __pyx_t_3 = 0; - __pyx_t_3 = __Pyx_PyObject_GetAttrStr(__pyx_t_4, __pyx_n_s_abspath); if (unlikely(!__pyx_t_3)) __PYX_ERR(0, 11, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_3); - __Pyx_DECREF(__pyx_t_4); __pyx_t_4 = 0; - __Pyx_GetModuleGlobalName(__pyx_t_4, __pyx_n_s_file); if (unlikely(!__pyx_t_4)) __PYX_ERR(0, 11, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_4); - __pyx_t_5 = __Pyx_PyObject_CallOneArg(__pyx_t_3, __pyx_t_4); if (unlikely(!__pyx_t_5)) __PYX_ERR(0, 11, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_5); - __Pyx_DECREF(__pyx_t_3); __pyx_t_3 = 0; - __Pyx_DECREF(__pyx_t_4); __pyx_t_4 = 0; - __pyx_t_4 = __Pyx_PyObject_CallOneArg(__pyx_t_1, __pyx_t_5); if (unlikely(!__pyx_t_4)) __PYX_ERR(0, 11, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_4); - __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0; - __Pyx_DECREF(__pyx_t_5); __pyx_t_5 = 0; - __pyx_t_6 = __Pyx_PyObject_Append(__pyx_t_2, __pyx_t_4); if (unlikely(__pyx_t_6 == ((int)-1))) __PYX_ERR(0, 11, __pyx_L1_error) - __Pyx_DECREF(__pyx_t_2); __pyx_t_2 = 0; - __Pyx_DECREF(__pyx_t_4); __pyx_t_4 = 0; - - /* "pmercury/protocols/http_server.pyx":12 - * - * sys.path.append(os.path.dirname(os.path.abspath(__file__))) - * sys.path.append(os.path.dirname(os.path.abspath(__file__))+'/../') # <<<<<<<<<<<<<< - * from pmercury.protocols.protocol import Protocol - * - */ - __Pyx_GetModuleGlobalName(__pyx_t_4, __pyx_n_s_sys); if (unlikely(!__pyx_t_4)) __PYX_ERR(0, 12, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_4); - __pyx_t_2 = __Pyx_PyObject_GetAttrStr(__pyx_t_4, __pyx_n_s_path); if (unlikely(!__pyx_t_2)) __PYX_ERR(0, 12, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_2); - __Pyx_DECREF(__pyx_t_4); __pyx_t_4 = 0; - __Pyx_GetModuleGlobalName(__pyx_t_4, __pyx_n_s_os); if (unlikely(!__pyx_t_4)) __PYX_ERR(0, 12, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_4); - __pyx_t_5 = __Pyx_PyObject_GetAttrStr(__pyx_t_4, __pyx_n_s_path); if (unlikely(!__pyx_t_5)) __PYX_ERR(0, 12, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_5); - __Pyx_DECREF(__pyx_t_4); __pyx_t_4 = 0; - __pyx_t_4 = __Pyx_PyObject_GetAttrStr(__pyx_t_5, __pyx_n_s_dirname); if (unlikely(!__pyx_t_4)) __PYX_ERR(0, 12, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_4); - __Pyx_DECREF(__pyx_t_5); __pyx_t_5 = 0; - __Pyx_GetModuleGlobalName(__pyx_t_5, __pyx_n_s_os); if (unlikely(!__pyx_t_5)) __PYX_ERR(0, 12, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_5); - __pyx_t_1 = __Pyx_PyObject_GetAttrStr(__pyx_t_5, __pyx_n_s_path); if (unlikely(!__pyx_t_1)) __PYX_ERR(0, 12, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_1); - __Pyx_DECREF(__pyx_t_5); __pyx_t_5 = 0; - __pyx_t_5 = __Pyx_PyObject_GetAttrStr(__pyx_t_1, __pyx_n_s_abspath); if (unlikely(!__pyx_t_5)) __PYX_ERR(0, 12, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_5); - __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0; - __Pyx_GetModuleGlobalName(__pyx_t_1, __pyx_n_s_file); if (unlikely(!__pyx_t_1)) __PYX_ERR(0, 12, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_1); - __pyx_t_3 = __Pyx_PyObject_CallOneArg(__pyx_t_5, __pyx_t_1); if (unlikely(!__pyx_t_3)) __PYX_ERR(0, 12, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_3); - __Pyx_DECREF(__pyx_t_5); __pyx_t_5 = 0; - __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0; - __pyx_t_1 = __Pyx_PyObject_CallOneArg(__pyx_t_4, __pyx_t_3); if (unlikely(!__pyx_t_1)) __PYX_ERR(0, 12, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_1); - __Pyx_DECREF(__pyx_t_4); __pyx_t_4 = 0; - __Pyx_DECREF(__pyx_t_3); __pyx_t_3 = 0; - __pyx_t_3 = PyNumber_Add(__pyx_t_1, __pyx_kp_u__17); if (unlikely(!__pyx_t_3)) __PYX_ERR(0, 12, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_3); - __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0; - __pyx_t_6 = __Pyx_PyObject_Append(__pyx_t_2, __pyx_t_3); if (unlikely(__pyx_t_6 == ((int)-1))) __PYX_ERR(0, 12, __pyx_L1_error) - __Pyx_DECREF(__pyx_t_2); __pyx_t_2 = 0; - __Pyx_DECREF(__pyx_t_3); __pyx_t_3 = 0; - - /* "pmercury/protocols/http_server.pyx":13 - * sys.path.append(os.path.dirname(os.path.abspath(__file__))) - * sys.path.append(os.path.dirname(os.path.abspath(__file__))+'/../') - * from pmercury.protocols.protocol import Protocol # <<<<<<<<<<<<<< - * - * - */ - __pyx_t_3 = PyList_New(1); if (unlikely(!__pyx_t_3)) __PYX_ERR(0, 13, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_3); - __Pyx_INCREF(__pyx_n_s_Protocol); - __Pyx_GIVEREF(__pyx_n_s_Protocol); - PyList_SET_ITEM(__pyx_t_3, 0, __pyx_n_s_Protocol); - __pyx_t_2 = __Pyx_Import(__pyx_n_s_pmercury_protocols_protocol, __pyx_t_3, 0); if (unlikely(!__pyx_t_2)) __PYX_ERR(0, 13, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_2); - __Pyx_DECREF(__pyx_t_3); __pyx_t_3 = 0; - __pyx_t_3 = __Pyx_ImportFrom(__pyx_t_2, __pyx_n_s_Protocol); if (unlikely(!__pyx_t_3)) __PYX_ERR(0, 13, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_3); - if (PyDict_SetItem(__pyx_d, __pyx_n_s_Protocol, __pyx_t_3) < 0) __PYX_ERR(0, 13, __pyx_L1_error) - __Pyx_DECREF(__pyx_t_3); __pyx_t_3 = 0; - __Pyx_DECREF(__pyx_t_2); __pyx_t_2 = 0; - - /* "pmercury/protocols/http_server.pyx":16 - * - * - * class HTTP_Server(Protocol): # <<<<<<<<<<<<<< - * - * def __init__(self, fp_database=None, config=None): - */ - __Pyx_GetModuleGlobalName(__pyx_t_2, __pyx_n_s_Protocol); if (unlikely(!__pyx_t_2)) __PYX_ERR(0, 16, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_2); - __pyx_t_3 = PyTuple_New(1); if (unlikely(!__pyx_t_3)) __PYX_ERR(0, 16, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_3); - __Pyx_GIVEREF(__pyx_t_2); - PyTuple_SET_ITEM(__pyx_t_3, 0, __pyx_t_2); - __pyx_t_2 = 0; - __pyx_t_2 = __Pyx_CalculateMetaclass(NULL, __pyx_t_3); if (unlikely(!__pyx_t_2)) __PYX_ERR(0, 16, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_2); - __pyx_t_1 = __Pyx_Py3MetaclassPrepare(__pyx_t_2, __pyx_t_3, __pyx_n_s_HTTP_Server, __pyx_n_s_HTTP_Server, (PyObject *) NULL, __pyx_n_s_pmercury_protocols_http_server, (PyObject *) NULL); if (unlikely(!__pyx_t_1)) __PYX_ERR(0, 16, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_1); - - /* "pmercury/protocols/http_server.pyx":18 - * class HTTP_Server(Protocol): - * - * def __init__(self, fp_database=None, config=None): # <<<<<<<<<<<<<< - * # populate fingerprint databases - * self.fp_db = {} - */ - __pyx_t_4 = __Pyx_CyFunction_NewEx(&__pyx_mdef_8pmercury_9protocols_11http_server_11HTTP_Server_1__init__, 0, __pyx_n_s_HTTP_Server___init, NULL, __pyx_n_s_pmercury_protocols_http_server, __pyx_d, ((PyObject *)__pyx_codeobj__19)); if (unlikely(!__pyx_t_4)) __PYX_ERR(0, 18, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_4); - __Pyx_CyFunction_SetDefaultsTuple(__pyx_t_4, __pyx_tuple__20); - if (__Pyx_SetNameInClass(__pyx_t_1, __pyx_n_s_init, __pyx_t_4) < 0) __PYX_ERR(0, 18, __pyx_L1_error) - __Pyx_DECREF(__pyx_t_4); __pyx_t_4 = 0; - - /* "pmercury/protocols/http_server.pyx":67 - * - * @staticmethod - * def proto_identify(data, offset, data_len): # <<<<<<<<<<<<<< - * if data_len-offset < 16: - * return False - */ - __pyx_t_4 = __Pyx_CyFunction_NewEx(&__pyx_mdef_8pmercury_9protocols_11http_server_11HTTP_Server_3proto_identify, __Pyx_CYFUNCTION_STATICMETHOD, __pyx_n_s_HTTP_Server_proto_identify, NULL, __pyx_n_s_pmercury_protocols_http_server, __pyx_d, ((PyObject *)__pyx_codeobj__22)); if (unlikely(!__pyx_t_4)) __PYX_ERR(0, 67, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_4); - - /* "pmercury/protocols/http_server.pyx":66 - * - * - * @staticmethod # <<<<<<<<<<<<<< - * def proto_identify(data, offset, data_len): - * if data_len-offset < 16: - */ - __pyx_t_5 = __Pyx_PyObject_CallOneArg(__pyx_builtin_staticmethod, __pyx_t_4); if (unlikely(!__pyx_t_5)) __PYX_ERR(0, 66, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_5); - __Pyx_DECREF(__pyx_t_4); __pyx_t_4 = 0; - if (__Pyx_SetNameInClass(__pyx_t_1, __pyx_n_s_proto_identify, __pyx_t_5) < 0) __PYX_ERR(0, 67, __pyx_L1_error) - __Pyx_DECREF(__pyx_t_5); __pyx_t_5 = 0; - - /* "pmercury/protocols/http_server.pyx":81 - * - * @staticmethod - * def fingerprint(bytes data, unsigned int offset, unsigned int data_len): # <<<<<<<<<<<<<< - * cdef list t_ = data[offset:].split(b'\x0d\x0a', 1) - * cdef list response = t_[0].split(b'\x20',2) - */ - __pyx_t_5 = __Pyx_CyFunction_NewEx(&__pyx_mdef_8pmercury_9protocols_11http_server_11HTTP_Server_5fingerprint, __Pyx_CYFUNCTION_STATICMETHOD, __pyx_n_s_HTTP_Server_fingerprint, NULL, __pyx_n_s_pmercury_protocols_http_server, __pyx_d, ((PyObject *)__pyx_codeobj__24)); if (unlikely(!__pyx_t_5)) __PYX_ERR(0, 81, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_5); - - /* "pmercury/protocols/http_server.pyx":80 - * - * - * @staticmethod # <<<<<<<<<<<<<< - * def fingerprint(bytes data, unsigned int offset, unsigned int data_len): - * cdef list t_ = data[offset:].split(b'\x0d\x0a', 1) - */ - __pyx_t_4 = __Pyx_PyObject_CallOneArg(__pyx_builtin_staticmethod, __pyx_t_5); if (unlikely(!__pyx_t_4)) __PYX_ERR(0, 80, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_4); - __Pyx_DECREF(__pyx_t_5); __pyx_t_5 = 0; - if (__Pyx_SetNameInClass(__pyx_t_1, __pyx_n_s_fingerprint, __pyx_t_4) < 0) __PYX_ERR(0, 81, __pyx_L1_error) - __Pyx_DECREF(__pyx_t_4); __pyx_t_4 = 0; - - /* "pmercury/protocols/http_server.pyx":137 - * - * - * def get_human_readable(self, fp_str_): # <<<<<<<<<<<<<< - * t_ = [bytes.fromhex(x[1:]) for x in fp_str_.split(')')[:-1]] - * try: - */ - __pyx_t_4 = __Pyx_CyFunction_NewEx(&__pyx_mdef_8pmercury_9protocols_11http_server_11HTTP_Server_7get_human_readable, 0, __pyx_n_s_HTTP_Server_get_human_readable, NULL, __pyx_n_s_pmercury_protocols_http_server, __pyx_d, ((PyObject *)__pyx_codeobj__26)); if (unlikely(!__pyx_t_4)) __PYX_ERR(0, 137, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_4); - if (__Pyx_SetNameInClass(__pyx_t_1, __pyx_n_s_get_human_readable, __pyx_t_4) < 0) __PYX_ERR(0, 137, __pyx_L1_error) - __Pyx_DECREF(__pyx_t_4); __pyx_t_4 = 0; - - /* "pmercury/protocols/http_server.pyx":16 - * - * - * class HTTP_Server(Protocol): # <<<<<<<<<<<<<< - * - * def __init__(self, fp_database=None, config=None): - */ - __pyx_t_4 = __Pyx_Py3ClassCreate(__pyx_t_2, __pyx_n_s_HTTP_Server, __pyx_t_3, __pyx_t_1, NULL, 0, 0); if (unlikely(!__pyx_t_4)) __PYX_ERR(0, 16, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_4); - if (PyDict_SetItem(__pyx_d, __pyx_n_s_HTTP_Server, __pyx_t_4) < 0) __PYX_ERR(0, 16, __pyx_L1_error) - __Pyx_DECREF(__pyx_t_4); __pyx_t_4 = 0; - __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0; - __Pyx_DECREF(__pyx_t_2); __pyx_t_2 = 0; - __Pyx_DECREF(__pyx_t_3); __pyx_t_3 = 0; - - /* "pmercury/protocols/http_server.pyx":1 - * #cython: language_level=3, wraparound=False, cdivision=True, infer_types=True, initializedcheck=False, c_string_type=bytes, embedsignature=False # <<<<<<<<<<<<<< - * - * """ - */ - __pyx_t_3 = __Pyx_PyDict_NewPresized(0); if (unlikely(!__pyx_t_3)) __PYX_ERR(0, 1, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_3); - if (PyDict_SetItem(__pyx_d, __pyx_n_s_test, __pyx_t_3) < 0) __PYX_ERR(0, 1, __pyx_L1_error) - __Pyx_DECREF(__pyx_t_3); __pyx_t_3 = 0; - - /*--- Wrapped vars code ---*/ - - goto __pyx_L0; - __pyx_L1_error:; - __Pyx_XDECREF(__pyx_t_1); - __Pyx_XDECREF(__pyx_t_2); - __Pyx_XDECREF(__pyx_t_3); - __Pyx_XDECREF(__pyx_t_4); - __Pyx_XDECREF(__pyx_t_5); - if (__pyx_m) { - if (__pyx_d) { - __Pyx_AddTraceback("init pmercury.protocols.http_server", __pyx_clineno, __pyx_lineno, __pyx_filename); - } - Py_CLEAR(__pyx_m); - } else if (!PyErr_Occurred()) { - PyErr_SetString(PyExc_ImportError, "init pmercury.protocols.http_server"); - } - __pyx_L0:; - __Pyx_RefNannyFinishContext(); - #if CYTHON_PEP489_MULTI_PHASE_INIT - return (__pyx_m != NULL) ? 0 : -1; - #elif PY_MAJOR_VERSION >= 3 - return __pyx_m; - #else - return; - #endif -} - -/* --- Runtime support code --- */ -/* Refnanny */ -#if CYTHON_REFNANNY -static __Pyx_RefNannyAPIStruct *__Pyx_RefNannyImportAPI(const char *modname) { - PyObject *m = NULL, *p = NULL; - void *r = NULL; - m = PyImport_ImportModule(modname); - if (!m) goto end; - p = PyObject_GetAttrString(m, "RefNannyAPI"); - if (!p) goto end; - r = PyLong_AsVoidPtr(p); -end: - Py_XDECREF(p); - Py_XDECREF(m); - return (__Pyx_RefNannyAPIStruct *)r; -} -#endif - -/* PyObjectGetAttrStr */ -#if CYTHON_USE_TYPE_SLOTS -static CYTHON_INLINE PyObject* __Pyx_PyObject_GetAttrStr(PyObject* obj, PyObject* attr_name) { - PyTypeObject* tp = Py_TYPE(obj); - if (likely(tp->tp_getattro)) - return tp->tp_getattro(obj, attr_name); -#if PY_MAJOR_VERSION < 3 - if (likely(tp->tp_getattr)) - return tp->tp_getattr(obj, PyString_AS_STRING(attr_name)); -#endif - return PyObject_GetAttr(obj, attr_name); -} -#endif - -/* GetBuiltinName */ -static PyObject *__Pyx_GetBuiltinName(PyObject *name) { - PyObject* result = __Pyx_PyObject_GetAttrStr(__pyx_b, name); - if (unlikely(!result)) { - PyErr_Format(PyExc_NameError, -#if PY_MAJOR_VERSION >= 3 - "name '%U' is not defined", name); -#else - "name '%.200s' is not defined", PyString_AS_STRING(name)); -#endif - } - return result; -} - -/* RaiseDoubleKeywords */ -static void __Pyx_RaiseDoubleKeywordsError( - const char* func_name, - PyObject* kw_name) -{ - PyErr_Format(PyExc_TypeError, - #if PY_MAJOR_VERSION >= 3 - "%s() got multiple values for keyword argument '%U'", func_name, kw_name); - #else - "%s() got multiple values for keyword argument '%s'", func_name, - PyString_AsString(kw_name)); - #endif -} - -/* ParseKeywords */ -static int __Pyx_ParseOptionalKeywords( - PyObject *kwds, - PyObject **argnames[], - PyObject *kwds2, - PyObject *values[], - Py_ssize_t num_pos_args, - const char* function_name) -{ - PyObject *key = 0, *value = 0; - Py_ssize_t pos = 0; - PyObject*** name; - PyObject*** first_kw_arg = argnames + num_pos_args; - while (PyDict_Next(kwds, &pos, &key, &value)) { - name = first_kw_arg; - while (*name && (**name != key)) name++; - if (*name) { - values[name-argnames] = value; - continue; - } - name = first_kw_arg; - #if PY_MAJOR_VERSION < 3 - if (likely(PyString_CheckExact(key)) || likely(PyString_Check(key))) { - while (*name) { - if ((CYTHON_COMPILING_IN_PYPY || PyString_GET_SIZE(**name) == PyString_GET_SIZE(key)) - && _PyString_Eq(**name, key)) { - values[name-argnames] = value; - break; - } - name++; - } - if (*name) continue; - else { - PyObject*** argname = argnames; - while (argname != first_kw_arg) { - if ((**argname == key) || ( - (CYTHON_COMPILING_IN_PYPY || PyString_GET_SIZE(**argname) == PyString_GET_SIZE(key)) - && _PyString_Eq(**argname, key))) { - goto arg_passed_twice; - } - argname++; - } - } - } else - #endif - if (likely(PyUnicode_Check(key))) { - while (*name) { - int cmp = (**name == key) ? 0 : - #if !CYTHON_COMPILING_IN_PYPY && PY_MAJOR_VERSION >= 3 - (PyUnicode_GET_SIZE(**name) != PyUnicode_GET_SIZE(key)) ? 1 : - #endif - PyUnicode_Compare(**name, key); - if (cmp < 0 && unlikely(PyErr_Occurred())) goto bad; - if (cmp == 0) { - values[name-argnames] = value; - break; - } - name++; - } - if (*name) continue; - else { - PyObject*** argname = argnames; - while (argname != first_kw_arg) { - int cmp = (**argname == key) ? 0 : - #if !CYTHON_COMPILING_IN_PYPY && PY_MAJOR_VERSION >= 3 - (PyUnicode_GET_SIZE(**argname) != PyUnicode_GET_SIZE(key)) ? 1 : - #endif - PyUnicode_Compare(**argname, key); - if (cmp < 0 && unlikely(PyErr_Occurred())) goto bad; - if (cmp == 0) goto arg_passed_twice; - argname++; - } - } - } else - goto invalid_keyword_type; - if (kwds2) { - if (unlikely(PyDict_SetItem(kwds2, key, value))) goto bad; - } else { - goto invalid_keyword; - } - } - return 0; -arg_passed_twice: - __Pyx_RaiseDoubleKeywordsError(function_name, key); - goto bad; -invalid_keyword_type: - PyErr_Format(PyExc_TypeError, - "%.200s() keywords must be strings", function_name); - goto bad; -invalid_keyword: - PyErr_Format(PyExc_TypeError, - #if PY_MAJOR_VERSION < 3 - "%.200s() got an unexpected keyword argument '%.200s'", - function_name, PyString_AsString(key)); - #else - "%s() got an unexpected keyword argument '%U'", - function_name, key); - #endif -bad: - return -1; -} - -/* RaiseArgTupleInvalid */ -static void __Pyx_RaiseArgtupleInvalid( - const char* func_name, - int exact, - Py_ssize_t num_min, - Py_ssize_t num_max, - Py_ssize_t num_found) -{ - Py_ssize_t num_expected; - const char *more_or_less; - if (num_found < num_min) { - num_expected = num_min; - more_or_less = "at least"; - } else { - num_expected = num_max; - more_or_less = "at most"; - } - if (exact) { - more_or_less = "exactly"; - } - PyErr_Format(PyExc_TypeError, - "%.200s() takes %.8s %" CYTHON_FORMAT_SSIZE_T "d positional argument%.1s (%" CYTHON_FORMAT_SSIZE_T "d given)", - func_name, more_or_less, num_expected, - (num_expected == 1) ? "" : "s", num_found); -} - -/* PyFunctionFastCall */ -#if CYTHON_FAST_PYCALL -static PyObject* __Pyx_PyFunction_FastCallNoKw(PyCodeObject *co, PyObject **args, Py_ssize_t na, - PyObject *globals) { - PyFrameObject *f; - PyThreadState *tstate = __Pyx_PyThreadState_Current; - PyObject **fastlocals; - Py_ssize_t i; - PyObject *result; - assert(globals != NULL); - /* XXX Perhaps we should create a specialized - PyFrame_New() that doesn't take locals, but does - take builtins without sanity checking them. - */ - assert(tstate != NULL); - f = PyFrame_New(tstate, co, globals, NULL); - if (f == NULL) { - return NULL; - } - fastlocals = __Pyx_PyFrame_GetLocalsplus(f); - for (i = 0; i < na; i++) { - Py_INCREF(*args); - fastlocals[i] = *args++; - } - result = PyEval_EvalFrameEx(f,0); - ++tstate->recursion_depth; - Py_DECREF(f); - --tstate->recursion_depth; - return result; -} -#if 1 || PY_VERSION_HEX < 0x030600B1 -static PyObject *__Pyx_PyFunction_FastCallDict(PyObject *func, PyObject **args, Py_ssize_t nargs, PyObject *kwargs) { - PyCodeObject *co = (PyCodeObject *)PyFunction_GET_CODE(func); - PyObject *globals = PyFunction_GET_GLOBALS(func); - PyObject *argdefs = PyFunction_GET_DEFAULTS(func); - PyObject *closure; -#if PY_MAJOR_VERSION >= 3 - PyObject *kwdefs; -#endif - PyObject *kwtuple, **k; - PyObject **d; - Py_ssize_t nd; - Py_ssize_t nk; - PyObject *result; - assert(kwargs == NULL || PyDict_Check(kwargs)); - nk = kwargs ? PyDict_Size(kwargs) : 0; - if (Py_EnterRecursiveCall((char*)" while calling a Python object")) { - return NULL; - } - if ( -#if PY_MAJOR_VERSION >= 3 - co->co_kwonlyargcount == 0 && -#endif - likely(kwargs == NULL || nk == 0) && - co->co_flags == (CO_OPTIMIZED | CO_NEWLOCALS | CO_NOFREE)) { - if (argdefs == NULL && co->co_argcount == nargs) { - result = __Pyx_PyFunction_FastCallNoKw(co, args, nargs, globals); - goto done; - } - else if (nargs == 0 && argdefs != NULL - && co->co_argcount == Py_SIZE(argdefs)) { - /* function called with no arguments, but all parameters have - a default value: use default values as arguments .*/ - args = &PyTuple_GET_ITEM(argdefs, 0); - result =__Pyx_PyFunction_FastCallNoKw(co, args, Py_SIZE(argdefs), globals); - goto done; - } - } - if (kwargs != NULL) { - Py_ssize_t pos, i; - kwtuple = PyTuple_New(2 * nk); - if (kwtuple == NULL) { - result = NULL; - goto done; - } - k = &PyTuple_GET_ITEM(kwtuple, 0); - pos = i = 0; - while (PyDict_Next(kwargs, &pos, &k[i], &k[i+1])) { - Py_INCREF(k[i]); - Py_INCREF(k[i+1]); - i += 2; - } - nk = i / 2; - } - else { - kwtuple = NULL; - k = NULL; - } - closure = PyFunction_GET_CLOSURE(func); -#if PY_MAJOR_VERSION >= 3 - kwdefs = PyFunction_GET_KW_DEFAULTS(func); -#endif - if (argdefs != NULL) { - d = &PyTuple_GET_ITEM(argdefs, 0); - nd = Py_SIZE(argdefs); - } - else { - d = NULL; - nd = 0; - } -#if PY_MAJOR_VERSION >= 3 - result = PyEval_EvalCodeEx((PyObject*)co, globals, (PyObject *)NULL, - args, (int)nargs, - k, (int)nk, - d, (int)nd, kwdefs, closure); -#else - result = PyEval_EvalCodeEx(co, globals, (PyObject *)NULL, - args, (int)nargs, - k, (int)nk, - d, (int)nd, closure); -#endif - Py_XDECREF(kwtuple); -done: - Py_LeaveRecursiveCall(); - return result; -} -#endif -#endif - -/* PyObjectCall */ -#if CYTHON_COMPILING_IN_CPYTHON -static CYTHON_INLINE PyObject* __Pyx_PyObject_Call(PyObject *func, PyObject *arg, PyObject *kw) { - PyObject *result; - ternaryfunc call = func->ob_type->tp_call; - if (unlikely(!call)) - return PyObject_Call(func, arg, kw); - if (unlikely(Py_EnterRecursiveCall((char*)" while calling a Python object"))) - return NULL; - result = (*call)(func, arg, kw); - Py_LeaveRecursiveCall(); - if (unlikely(!result) && unlikely(!PyErr_Occurred())) { - PyErr_SetString( - PyExc_SystemError, - "NULL result without error in PyObject_Call"); - } - return result; -} -#endif - -/* PyObjectCallMethO */ -#if CYTHON_COMPILING_IN_CPYTHON -static CYTHON_INLINE PyObject* __Pyx_PyObject_CallMethO(PyObject *func, PyObject *arg) { - PyObject *self, *result; - PyCFunction cfunc; - cfunc = PyCFunction_GET_FUNCTION(func); - self = PyCFunction_GET_SELF(func); - if (unlikely(Py_EnterRecursiveCall((char*)" while calling a Python object"))) - return NULL; - result = cfunc(self, arg); - Py_LeaveRecursiveCall(); - if (unlikely(!result) && unlikely(!PyErr_Occurred())) { - PyErr_SetString( - PyExc_SystemError, - "NULL result without error in PyObject_Call"); - } - return result; -} -#endif - -/* PyObjectCallNoArg */ -#if CYTHON_COMPILING_IN_CPYTHON -static CYTHON_INLINE PyObject* __Pyx_PyObject_CallNoArg(PyObject *func) { -#if CYTHON_FAST_PYCALL - if (PyFunction_Check(func)) { - return __Pyx_PyFunction_FastCall(func, NULL, 0); - } -#endif -#ifdef __Pyx_CyFunction_USED - if (likely(PyCFunction_Check(func) || __Pyx_CyFunction_Check(func))) -#else - if (likely(PyCFunction_Check(func))) -#endif - { - if (likely(PyCFunction_GET_FLAGS(func) & METH_NOARGS)) { - return __Pyx_PyObject_CallMethO(func, NULL); - } - } - return __Pyx_PyObject_Call(func, __pyx_empty_tuple, NULL); -} -#endif - -/* PyCFunctionFastCall */ -#if CYTHON_FAST_PYCCALL -static CYTHON_INLINE PyObject * __Pyx_PyCFunction_FastCall(PyObject *func_obj, PyObject **args, Py_ssize_t nargs) { - PyCFunctionObject *func = (PyCFunctionObject*)func_obj; - PyCFunction meth = PyCFunction_GET_FUNCTION(func); - PyObject *self = PyCFunction_GET_SELF(func); - int flags = PyCFunction_GET_FLAGS(func); - assert(PyCFunction_Check(func)); - assert(METH_FASTCALL == (flags & ~(METH_CLASS | METH_STATIC | METH_COEXIST | METH_KEYWORDS | METH_STACKLESS))); - assert(nargs >= 0); - assert(nargs == 0 || args != NULL); - /* _PyCFunction_FastCallDict() must not be called with an exception set, - because it may clear it (directly or indirectly) and so the - caller loses its exception */ - assert(!PyErr_Occurred()); - if ((PY_VERSION_HEX < 0x030700A0) || unlikely(flags & METH_KEYWORDS)) { - return (*((__Pyx_PyCFunctionFastWithKeywords)(void*)meth)) (self, args, nargs, NULL); - } else { - return (*((__Pyx_PyCFunctionFast)(void*)meth)) (self, args, nargs); - } -} -#endif - -/* PyObjectCallOneArg */ -#if CYTHON_COMPILING_IN_CPYTHON -static PyObject* __Pyx__PyObject_CallOneArg(PyObject *func, PyObject *arg) { - PyObject *result; - PyObject *args = PyTuple_New(1); - if (unlikely(!args)) return NULL; - Py_INCREF(arg); - PyTuple_SET_ITEM(args, 0, arg); - result = __Pyx_PyObject_Call(func, args, NULL); - Py_DECREF(args); - return result; -} -static CYTHON_INLINE PyObject* __Pyx_PyObject_CallOneArg(PyObject *func, PyObject *arg) { -#if CYTHON_FAST_PYCALL - if (PyFunction_Check(func)) { - return __Pyx_PyFunction_FastCall(func, &arg, 1); - } -#endif - if (likely(PyCFunction_Check(func))) { - if (likely(PyCFunction_GET_FLAGS(func) & METH_O)) { - return __Pyx_PyObject_CallMethO(func, arg); -#if CYTHON_FAST_PYCCALL - } else if (PyCFunction_GET_FLAGS(func) & METH_FASTCALL) { - return __Pyx_PyCFunction_FastCall(func, &arg, 1); -#endif - } - } - return __Pyx__PyObject_CallOneArg(func, arg); -} -#else -static CYTHON_INLINE PyObject* __Pyx_PyObject_CallOneArg(PyObject *func, PyObject *arg) { - PyObject *result; - PyObject *args = PyTuple_Pack(1, arg); - if (unlikely(!args)) return NULL; - result = __Pyx_PyObject_Call(func, args, NULL); - Py_DECREF(args); - return result; -} -#endif - -/* PyObjectSetAttrStr */ -#if CYTHON_USE_TYPE_SLOTS -static CYTHON_INLINE int __Pyx_PyObject_SetAttrStr(PyObject* obj, PyObject* attr_name, PyObject* value) { - PyTypeObject* tp = Py_TYPE(obj); - if (likely(tp->tp_setattro)) - return tp->tp_setattro(obj, attr_name, value); -#if PY_MAJOR_VERSION < 3 - if (likely(tp->tp_setattr)) - return tp->tp_setattr(obj, PyString_AS_STRING(attr_name), value); -#endif - return PyObject_SetAttr(obj, attr_name, value); -} -#endif - -/* PyDictVersioning */ -#if CYTHON_USE_DICT_VERSIONS && CYTHON_USE_TYPE_SLOTS -static CYTHON_INLINE PY_UINT64_T __Pyx_get_tp_dict_version(PyObject *obj) { - PyObject *dict = Py_TYPE(obj)->tp_dict; - return likely(dict) ? __PYX_GET_DICT_VERSION(dict) : 0; -} -static CYTHON_INLINE PY_UINT64_T __Pyx_get_object_dict_version(PyObject *obj) { - PyObject **dictptr = NULL; - Py_ssize_t offset = Py_TYPE(obj)->tp_dictoffset; - if (offset) { -#if CYTHON_COMPILING_IN_CPYTHON - dictptr = (likely(offset > 0)) ? (PyObject **) ((char *)obj + offset) : _PyObject_GetDictPtr(obj); -#else - dictptr = _PyObject_GetDictPtr(obj); -#endif - } - return (dictptr && *dictptr) ? __PYX_GET_DICT_VERSION(*dictptr) : 0; -} -static CYTHON_INLINE int __Pyx_object_dict_version_matches(PyObject* obj, PY_UINT64_T tp_dict_version, PY_UINT64_T obj_dict_version) { - PyObject *dict = Py_TYPE(obj)->tp_dict; - if (unlikely(!dict) || unlikely(tp_dict_version != __PYX_GET_DICT_VERSION(dict))) - return 0; - return obj_dict_version == __Pyx_get_object_dict_version(obj); -} -#endif - -/* GetModuleGlobalName */ -#if CYTHON_USE_DICT_VERSIONS -static PyObject *__Pyx__GetModuleGlobalName(PyObject *name, PY_UINT64_T *dict_version, PyObject **dict_cached_value) -#else -static CYTHON_INLINE PyObject *__Pyx__GetModuleGlobalName(PyObject *name) -#endif -{ - PyObject *result; -#if !CYTHON_AVOID_BORROWED_REFS -#if CYTHON_COMPILING_IN_CPYTHON && PY_VERSION_HEX >= 0x030500A1 - result = _PyDict_GetItem_KnownHash(__pyx_d, name, ((PyASCIIObject *) name)->hash); - __PYX_UPDATE_DICT_CACHE(__pyx_d, result, *dict_cached_value, *dict_version) - if (likely(result)) { - return __Pyx_NewRef(result); - } else if (unlikely(PyErr_Occurred())) { - return NULL; - } -#else - result = PyDict_GetItem(__pyx_d, name); - __PYX_UPDATE_DICT_CACHE(__pyx_d, result, *dict_cached_value, *dict_version) - if (likely(result)) { - return __Pyx_NewRef(result); - } -#endif -#else - result = PyObject_GetItem(__pyx_d, name); - __PYX_UPDATE_DICT_CACHE(__pyx_d, result, *dict_cached_value, *dict_version) - if (likely(result)) { - return __Pyx_NewRef(result); - } - PyErr_Clear(); -#endif - return __Pyx_GetBuiltinName(name); -} - -/* DictGetItem */ -#if PY_MAJOR_VERSION >= 3 && !CYTHON_COMPILING_IN_PYPY -static PyObject *__Pyx_PyDict_GetItem(PyObject *d, PyObject* key) { - PyObject *value; - value = PyDict_GetItemWithError(d, key); - if (unlikely(!value)) { - if (!PyErr_Occurred()) { - if (unlikely(PyTuple_Check(key))) { - PyObject* args = PyTuple_Pack(1, key); - if (likely(args)) { - PyErr_SetObject(PyExc_KeyError, args); - Py_DECREF(args); - } - } else { - PyErr_SetObject(PyExc_KeyError, key); - } - } - return NULL; - } - Py_INCREF(value); - return value; -} -#endif - -/* FetchCommonType */ -static PyTypeObject* __Pyx_FetchCommonType(PyTypeObject* type) { - PyObject* fake_module; - PyTypeObject* cached_type = NULL; - fake_module = PyImport_AddModule((char*) "_cython_" CYTHON_ABI); - if (!fake_module) return NULL; - Py_INCREF(fake_module); - cached_type = (PyTypeObject*) PyObject_GetAttrString(fake_module, type->tp_name); - if (cached_type) { - if (!PyType_Check((PyObject*)cached_type)) { - PyErr_Format(PyExc_TypeError, - "Shared Cython type %.200s is not a type object", - type->tp_name); - goto bad; - } - if (cached_type->tp_basicsize != type->tp_basicsize) { - PyErr_Format(PyExc_TypeError, - "Shared Cython type %.200s has the wrong size, try recompiling", - type->tp_name); - goto bad; - } - } else { - if (!PyErr_ExceptionMatches(PyExc_AttributeError)) goto bad; - PyErr_Clear(); - if (PyType_Ready(type) < 0) goto bad; - if (PyObject_SetAttrString(fake_module, type->tp_name, (PyObject*) type) < 0) - goto bad; - Py_INCREF(type); - cached_type = type; - } -done: - Py_DECREF(fake_module); - return cached_type; -bad: - Py_XDECREF(cached_type); - cached_type = NULL; - goto done; -} - -/* CythonFunction */ -#include -static PyObject * -__Pyx_CyFunction_get_doc(__pyx_CyFunctionObject *op, CYTHON_UNUSED void *closure) -{ - if (unlikely(op->func_doc == NULL)) { - if (op->func.m_ml->ml_doc) { -#if PY_MAJOR_VERSION >= 3 - op->func_doc = PyUnicode_FromString(op->func.m_ml->ml_doc); -#else - op->func_doc = PyString_FromString(op->func.m_ml->ml_doc); -#endif - if (unlikely(op->func_doc == NULL)) - return NULL; - } else { - Py_INCREF(Py_None); - return Py_None; - } - } - Py_INCREF(op->func_doc); - return op->func_doc; -} -static int -__Pyx_CyFunction_set_doc(__pyx_CyFunctionObject *op, PyObject *value, CYTHON_UNUSED void *context) -{ - PyObject *tmp = op->func_doc; - if (value == NULL) { - value = Py_None; - } - Py_INCREF(value); - op->func_doc = value; - Py_XDECREF(tmp); - return 0; -} -static PyObject * -__Pyx_CyFunction_get_name(__pyx_CyFunctionObject *op, CYTHON_UNUSED void *context) -{ - if (unlikely(op->func_name == NULL)) { -#if PY_MAJOR_VERSION >= 3 - op->func_name = PyUnicode_InternFromString(op->func.m_ml->ml_name); -#else - op->func_name = PyString_InternFromString(op->func.m_ml->ml_name); -#endif - if (unlikely(op->func_name == NULL)) - return NULL; - } - Py_INCREF(op->func_name); - return op->func_name; -} -static int -__Pyx_CyFunction_set_name(__pyx_CyFunctionObject *op, PyObject *value, CYTHON_UNUSED void *context) -{ - PyObject *tmp; -#if PY_MAJOR_VERSION >= 3 - if (unlikely(value == NULL || !PyUnicode_Check(value))) -#else - if (unlikely(value == NULL || !PyString_Check(value))) -#endif - { - PyErr_SetString(PyExc_TypeError, - "__name__ must be set to a string object"); - return -1; - } - tmp = op->func_name; - Py_INCREF(value); - op->func_name = value; - Py_XDECREF(tmp); - return 0; -} -static PyObject * -__Pyx_CyFunction_get_qualname(__pyx_CyFunctionObject *op, CYTHON_UNUSED void *context) -{ - Py_INCREF(op->func_qualname); - return op->func_qualname; -} -static int -__Pyx_CyFunction_set_qualname(__pyx_CyFunctionObject *op, PyObject *value, CYTHON_UNUSED void *context) -{ - PyObject *tmp; -#if PY_MAJOR_VERSION >= 3 - if (unlikely(value == NULL || !PyUnicode_Check(value))) -#else - if (unlikely(value == NULL || !PyString_Check(value))) -#endif - { - PyErr_SetString(PyExc_TypeError, - "__qualname__ must be set to a string object"); - return -1; - } - tmp = op->func_qualname; - Py_INCREF(value); - op->func_qualname = value; - Py_XDECREF(tmp); - return 0; -} -static PyObject * -__Pyx_CyFunction_get_self(__pyx_CyFunctionObject *m, CYTHON_UNUSED void *closure) -{ - PyObject *self; - self = m->func_closure; - if (self == NULL) - self = Py_None; - Py_INCREF(self); - return self; -} -static PyObject * -__Pyx_CyFunction_get_dict(__pyx_CyFunctionObject *op, CYTHON_UNUSED void *context) -{ - if (unlikely(op->func_dict == NULL)) { - op->func_dict = PyDict_New(); - if (unlikely(op->func_dict == NULL)) - return NULL; - } - Py_INCREF(op->func_dict); - return op->func_dict; -} -static int -__Pyx_CyFunction_set_dict(__pyx_CyFunctionObject *op, PyObject *value, CYTHON_UNUSED void *context) -{ - PyObject *tmp; - if (unlikely(value == NULL)) { - PyErr_SetString(PyExc_TypeError, - "function's dictionary may not be deleted"); - return -1; - } - if (unlikely(!PyDict_Check(value))) { - PyErr_SetString(PyExc_TypeError, - "setting function's dictionary to a non-dict"); - return -1; - } - tmp = op->func_dict; - Py_INCREF(value); - op->func_dict = value; - Py_XDECREF(tmp); - return 0; -} -static PyObject * -__Pyx_CyFunction_get_globals(__pyx_CyFunctionObject *op, CYTHON_UNUSED void *context) -{ - Py_INCREF(op->func_globals); - return op->func_globals; -} -static PyObject * -__Pyx_CyFunction_get_closure(CYTHON_UNUSED __pyx_CyFunctionObject *op, CYTHON_UNUSED void *context) -{ - Py_INCREF(Py_None); - return Py_None; -} -static PyObject * -__Pyx_CyFunction_get_code(__pyx_CyFunctionObject *op, CYTHON_UNUSED void *context) -{ - PyObject* result = (op->func_code) ? op->func_code : Py_None; - Py_INCREF(result); - return result; -} -static int -__Pyx_CyFunction_init_defaults(__pyx_CyFunctionObject *op) { - int result = 0; - PyObject *res = op->defaults_getter((PyObject *) op); - if (unlikely(!res)) - return -1; - #if CYTHON_ASSUME_SAFE_MACROS && !CYTHON_AVOID_BORROWED_REFS - op->defaults_tuple = PyTuple_GET_ITEM(res, 0); - Py_INCREF(op->defaults_tuple); - op->defaults_kwdict = PyTuple_GET_ITEM(res, 1); - Py_INCREF(op->defaults_kwdict); - #else - op->defaults_tuple = PySequence_ITEM(res, 0); - if (unlikely(!op->defaults_tuple)) result = -1; - else { - op->defaults_kwdict = PySequence_ITEM(res, 1); - if (unlikely(!op->defaults_kwdict)) result = -1; - } - #endif - Py_DECREF(res); - return result; -} -static int -__Pyx_CyFunction_set_defaults(__pyx_CyFunctionObject *op, PyObject* value, CYTHON_UNUSED void *context) { - PyObject* tmp; - if (!value) { - value = Py_None; - } else if (value != Py_None && !PyTuple_Check(value)) { - PyErr_SetString(PyExc_TypeError, - "__defaults__ must be set to a tuple object"); - return -1; - } - Py_INCREF(value); - tmp = op->defaults_tuple; - op->defaults_tuple = value; - Py_XDECREF(tmp); - return 0; -} -static PyObject * -__Pyx_CyFunction_get_defaults(__pyx_CyFunctionObject *op, CYTHON_UNUSED void *context) { - PyObject* result = op->defaults_tuple; - if (unlikely(!result)) { - if (op->defaults_getter) { - if (__Pyx_CyFunction_init_defaults(op) < 0) return NULL; - result = op->defaults_tuple; - } else { - result = Py_None; - } - } - Py_INCREF(result); - return result; -} -static int -__Pyx_CyFunction_set_kwdefaults(__pyx_CyFunctionObject *op, PyObject* value, CYTHON_UNUSED void *context) { - PyObject* tmp; - if (!value) { - value = Py_None; - } else if (value != Py_None && !PyDict_Check(value)) { - PyErr_SetString(PyExc_TypeError, - "__kwdefaults__ must be set to a dict object"); - return -1; - } - Py_INCREF(value); - tmp = op->defaults_kwdict; - op->defaults_kwdict = value; - Py_XDECREF(tmp); - return 0; -} -static PyObject * -__Pyx_CyFunction_get_kwdefaults(__pyx_CyFunctionObject *op, CYTHON_UNUSED void *context) { - PyObject* result = op->defaults_kwdict; - if (unlikely(!result)) { - if (op->defaults_getter) { - if (__Pyx_CyFunction_init_defaults(op) < 0) return NULL; - result = op->defaults_kwdict; - } else { - result = Py_None; - } - } - Py_INCREF(result); - return result; -} -static int -__Pyx_CyFunction_set_annotations(__pyx_CyFunctionObject *op, PyObject* value, CYTHON_UNUSED void *context) { - PyObject* tmp; - if (!value || value == Py_None) { - value = NULL; - } else if (!PyDict_Check(value)) { - PyErr_SetString(PyExc_TypeError, - "__annotations__ must be set to a dict object"); - return -1; - } - Py_XINCREF(value); - tmp = op->func_annotations; - op->func_annotations = value; - Py_XDECREF(tmp); - return 0; -} -static PyObject * -__Pyx_CyFunction_get_annotations(__pyx_CyFunctionObject *op, CYTHON_UNUSED void *context) { - PyObject* result = op->func_annotations; - if (unlikely(!result)) { - result = PyDict_New(); - if (unlikely(!result)) return NULL; - op->func_annotations = result; - } - Py_INCREF(result); - return result; -} -static PyGetSetDef __pyx_CyFunction_getsets[] = { - {(char *) "func_doc", (getter)__Pyx_CyFunction_get_doc, (setter)__Pyx_CyFunction_set_doc, 0, 0}, - {(char *) "__doc__", (getter)__Pyx_CyFunction_get_doc, (setter)__Pyx_CyFunction_set_doc, 0, 0}, - {(char *) "func_name", (getter)__Pyx_CyFunction_get_name, (setter)__Pyx_CyFunction_set_name, 0, 0}, - {(char *) "__name__", (getter)__Pyx_CyFunction_get_name, (setter)__Pyx_CyFunction_set_name, 0, 0}, - {(char *) "__qualname__", (getter)__Pyx_CyFunction_get_qualname, (setter)__Pyx_CyFunction_set_qualname, 0, 0}, - {(char *) "__self__", (getter)__Pyx_CyFunction_get_self, 0, 0, 0}, - {(char *) "func_dict", (getter)__Pyx_CyFunction_get_dict, (setter)__Pyx_CyFunction_set_dict, 0, 0}, - {(char *) "__dict__", (getter)__Pyx_CyFunction_get_dict, (setter)__Pyx_CyFunction_set_dict, 0, 0}, - {(char *) "func_globals", (getter)__Pyx_CyFunction_get_globals, 0, 0, 0}, - {(char *) "__globals__", (getter)__Pyx_CyFunction_get_globals, 0, 0, 0}, - {(char *) "func_closure", (getter)__Pyx_CyFunction_get_closure, 0, 0, 0}, - {(char *) "__closure__", (getter)__Pyx_CyFunction_get_closure, 0, 0, 0}, - {(char *) "func_code", (getter)__Pyx_CyFunction_get_code, 0, 0, 0}, - {(char *) "__code__", (getter)__Pyx_CyFunction_get_code, 0, 0, 0}, - {(char *) "func_defaults", (getter)__Pyx_CyFunction_get_defaults, (setter)__Pyx_CyFunction_set_defaults, 0, 0}, - {(char *) "__defaults__", (getter)__Pyx_CyFunction_get_defaults, (setter)__Pyx_CyFunction_set_defaults, 0, 0}, - {(char *) "__kwdefaults__", (getter)__Pyx_CyFunction_get_kwdefaults, (setter)__Pyx_CyFunction_set_kwdefaults, 0, 0}, - {(char *) "__annotations__", (getter)__Pyx_CyFunction_get_annotations, (setter)__Pyx_CyFunction_set_annotations, 0, 0}, - {0, 0, 0, 0, 0} -}; -static PyMemberDef __pyx_CyFunction_members[] = { - {(char *) "__module__", T_OBJECT, offsetof(PyCFunctionObject, m_module), PY_WRITE_RESTRICTED, 0}, - {0, 0, 0, 0, 0} -}; -static PyObject * -__Pyx_CyFunction_reduce(__pyx_CyFunctionObject *m, CYTHON_UNUSED PyObject *args) -{ -#if PY_MAJOR_VERSION >= 3 - return PyUnicode_FromString(m->func.m_ml->ml_name); -#else - return PyString_FromString(m->func.m_ml->ml_name); -#endif -} -static PyMethodDef __pyx_CyFunction_methods[] = { - {"__reduce__", (PyCFunction)__Pyx_CyFunction_reduce, METH_VARARGS, 0}, - {0, 0, 0, 0} -}; -#if PY_VERSION_HEX < 0x030500A0 -#define __Pyx_CyFunction_weakreflist(cyfunc) ((cyfunc)->func_weakreflist) -#else -#define __Pyx_CyFunction_weakreflist(cyfunc) ((cyfunc)->func.m_weakreflist) -#endif -static PyObject *__Pyx_CyFunction_New(PyTypeObject *type, PyMethodDef *ml, int flags, PyObject* qualname, - PyObject *closure, PyObject *module, PyObject* globals, PyObject* code) { - __pyx_CyFunctionObject *op = PyObject_GC_New(__pyx_CyFunctionObject, type); - if (op == NULL) - return NULL; - op->flags = flags; - __Pyx_CyFunction_weakreflist(op) = NULL; - op->func.m_ml = ml; - op->func.m_self = (PyObject *) op; - Py_XINCREF(closure); - op->func_closure = closure; - Py_XINCREF(module); - op->func.m_module = module; - op->func_dict = NULL; - op->func_name = NULL; - Py_INCREF(qualname); - op->func_qualname = qualname; - op->func_doc = NULL; - op->func_classobj = NULL; - op->func_globals = globals; - Py_INCREF(op->func_globals); - Py_XINCREF(code); - op->func_code = code; - op->defaults_pyobjects = 0; - op->defaults = NULL; - op->defaults_tuple = NULL; - op->defaults_kwdict = NULL; - op->defaults_getter = NULL; - op->func_annotations = NULL; - PyObject_GC_Track(op); - return (PyObject *) op; -} -static int -__Pyx_CyFunction_clear(__pyx_CyFunctionObject *m) -{ - Py_CLEAR(m->func_closure); - Py_CLEAR(m->func.m_module); - Py_CLEAR(m->func_dict); - Py_CLEAR(m->func_name); - Py_CLEAR(m->func_qualname); - Py_CLEAR(m->func_doc); - Py_CLEAR(m->func_globals); - Py_CLEAR(m->func_code); - Py_CLEAR(m->func_classobj); - Py_CLEAR(m->defaults_tuple); - Py_CLEAR(m->defaults_kwdict); - Py_CLEAR(m->func_annotations); - if (m->defaults) { - PyObject **pydefaults = __Pyx_CyFunction_Defaults(PyObject *, m); - int i; - for (i = 0; i < m->defaults_pyobjects; i++) - Py_XDECREF(pydefaults[i]); - PyObject_Free(m->defaults); - m->defaults = NULL; - } - return 0; -} -static void __Pyx__CyFunction_dealloc(__pyx_CyFunctionObject *m) -{ - if (__Pyx_CyFunction_weakreflist(m) != NULL) - PyObject_ClearWeakRefs((PyObject *) m); - __Pyx_CyFunction_clear(m); - PyObject_GC_Del(m); -} -static void __Pyx_CyFunction_dealloc(__pyx_CyFunctionObject *m) -{ - PyObject_GC_UnTrack(m); - __Pyx__CyFunction_dealloc(m); -} -static int __Pyx_CyFunction_traverse(__pyx_CyFunctionObject *m, visitproc visit, void *arg) -{ - Py_VISIT(m->func_closure); - Py_VISIT(m->func.m_module); - Py_VISIT(m->func_dict); - Py_VISIT(m->func_name); - Py_VISIT(m->func_qualname); - Py_VISIT(m->func_doc); - Py_VISIT(m->func_globals); - Py_VISIT(m->func_code); - Py_VISIT(m->func_classobj); - Py_VISIT(m->defaults_tuple); - Py_VISIT(m->defaults_kwdict); - if (m->defaults) { - PyObject **pydefaults = __Pyx_CyFunction_Defaults(PyObject *, m); - int i; - for (i = 0; i < m->defaults_pyobjects; i++) - Py_VISIT(pydefaults[i]); - } - return 0; -} -static PyObject *__Pyx_CyFunction_descr_get(PyObject *func, PyObject *obj, PyObject *type) -{ - __pyx_CyFunctionObject *m = (__pyx_CyFunctionObject *) func; - if (m->flags & __Pyx_CYFUNCTION_STATICMETHOD) { - Py_INCREF(func); - return func; - } - if (m->flags & __Pyx_CYFUNCTION_CLASSMETHOD) { - if (type == NULL) - type = (PyObject *)(Py_TYPE(obj)); - return __Pyx_PyMethod_New(func, type, (PyObject *)(Py_TYPE(type))); - } - if (obj == Py_None) - obj = NULL; - return __Pyx_PyMethod_New(func, obj, type); -} -static PyObject* -__Pyx_CyFunction_repr(__pyx_CyFunctionObject *op) -{ -#if PY_MAJOR_VERSION >= 3 - return PyUnicode_FromFormat("", - op->func_qualname, (void *)op); -#else - return PyString_FromFormat("", - PyString_AsString(op->func_qualname), (void *)op); -#endif -} -static PyObject * __Pyx_CyFunction_CallMethod(PyObject *func, PyObject *self, PyObject *arg, PyObject *kw) { - PyCFunctionObject* f = (PyCFunctionObject*)func; - PyCFunction meth = f->m_ml->ml_meth; - Py_ssize_t size; - switch (f->m_ml->ml_flags & (METH_VARARGS | METH_KEYWORDS | METH_NOARGS | METH_O)) { - case METH_VARARGS: - if (likely(kw == NULL || PyDict_Size(kw) == 0)) - return (*meth)(self, arg); - break; - case METH_VARARGS | METH_KEYWORDS: - return (*(PyCFunctionWithKeywords)(void*)meth)(self, arg, kw); - case METH_NOARGS: - if (likely(kw == NULL || PyDict_Size(kw) == 0)) { - size = PyTuple_GET_SIZE(arg); - if (likely(size == 0)) - return (*meth)(self, NULL); - PyErr_Format(PyExc_TypeError, - "%.200s() takes no arguments (%" CYTHON_FORMAT_SSIZE_T "d given)", - f->m_ml->ml_name, size); - return NULL; - } - break; - case METH_O: - if (likely(kw == NULL || PyDict_Size(kw) == 0)) { - size = PyTuple_GET_SIZE(arg); - if (likely(size == 1)) { - PyObject *result, *arg0; - #if CYTHON_ASSUME_SAFE_MACROS && !CYTHON_AVOID_BORROWED_REFS - arg0 = PyTuple_GET_ITEM(arg, 0); - #else - arg0 = PySequence_ITEM(arg, 0); if (unlikely(!arg0)) return NULL; - #endif - result = (*meth)(self, arg0); - #if !(CYTHON_ASSUME_SAFE_MACROS && !CYTHON_AVOID_BORROWED_REFS) - Py_DECREF(arg0); - #endif - return result; - } - PyErr_Format(PyExc_TypeError, - "%.200s() takes exactly one argument (%" CYTHON_FORMAT_SSIZE_T "d given)", - f->m_ml->ml_name, size); - return NULL; - } - break; - default: - PyErr_SetString(PyExc_SystemError, "Bad call flags in " - "__Pyx_CyFunction_Call. METH_OLDARGS is no " - "longer supported!"); - return NULL; - } - PyErr_Format(PyExc_TypeError, "%.200s() takes no keyword arguments", - f->m_ml->ml_name); - return NULL; -} -static CYTHON_INLINE PyObject *__Pyx_CyFunction_Call(PyObject *func, PyObject *arg, PyObject *kw) { - return __Pyx_CyFunction_CallMethod(func, ((PyCFunctionObject*)func)->m_self, arg, kw); -} -static PyObject *__Pyx_CyFunction_CallAsMethod(PyObject *func, PyObject *args, PyObject *kw) { - PyObject *result; - __pyx_CyFunctionObject *cyfunc = (__pyx_CyFunctionObject *) func; - if ((cyfunc->flags & __Pyx_CYFUNCTION_CCLASS) && !(cyfunc->flags & __Pyx_CYFUNCTION_STATICMETHOD)) { - Py_ssize_t argc; - PyObject *new_args; - PyObject *self; - argc = PyTuple_GET_SIZE(args); - new_args = PyTuple_GetSlice(args, 1, argc); - if (unlikely(!new_args)) - return NULL; - self = PyTuple_GetItem(args, 0); - if (unlikely(!self)) { - Py_DECREF(new_args); - return NULL; - } - result = __Pyx_CyFunction_CallMethod(func, self, new_args, kw); - Py_DECREF(new_args); - } else { - result = __Pyx_CyFunction_Call(func, args, kw); - } - return result; -} -static PyTypeObject __pyx_CyFunctionType_type = { - PyVarObject_HEAD_INIT(0, 0) - "cython_function_or_method", - sizeof(__pyx_CyFunctionObject), - 0, - (destructor) __Pyx_CyFunction_dealloc, - 0, - 0, - 0, -#if PY_MAJOR_VERSION < 3 - 0, -#else - 0, -#endif - (reprfunc) __Pyx_CyFunction_repr, - 0, - 0, - 0, - 0, - __Pyx_CyFunction_CallAsMethod, - 0, - 0, - 0, - 0, - Py_TPFLAGS_DEFAULT | Py_TPFLAGS_HAVE_GC, - 0, - (traverseproc) __Pyx_CyFunction_traverse, - (inquiry) __Pyx_CyFunction_clear, - 0, -#if PY_VERSION_HEX < 0x030500A0 - offsetof(__pyx_CyFunctionObject, func_weakreflist), -#else - offsetof(PyCFunctionObject, m_weakreflist), -#endif - 0, - 0, - __pyx_CyFunction_methods, - __pyx_CyFunction_members, - __pyx_CyFunction_getsets, - 0, - 0, - __Pyx_CyFunction_descr_get, - 0, - offsetof(__pyx_CyFunctionObject, func_dict), - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, -#if PY_VERSION_HEX >= 0x030400a1 - 0, -#endif -#if PY_VERSION_HEX >= 0x030800b1 - 0, -#endif -#if PY_VERSION_HEX >= 0x030800b4 && PY_VERSION_HEX < 0x03090000 - 0, -#endif -}; -static int __pyx_CyFunction_init(void) { - __pyx_CyFunctionType = __Pyx_FetchCommonType(&__pyx_CyFunctionType_type); - if (unlikely(__pyx_CyFunctionType == NULL)) { - return -1; - } - return 0; -} -static CYTHON_INLINE void *__Pyx_CyFunction_InitDefaults(PyObject *func, size_t size, int pyobjects) { - __pyx_CyFunctionObject *m = (__pyx_CyFunctionObject *) func; - m->defaults = PyObject_Malloc(size); - if (unlikely(!m->defaults)) - return PyErr_NoMemory(); - memset(m->defaults, 0, size); - m->defaults_pyobjects = pyobjects; - return m->defaults; -} -static CYTHON_INLINE void __Pyx_CyFunction_SetDefaultsTuple(PyObject *func, PyObject *tuple) { - __pyx_CyFunctionObject *m = (__pyx_CyFunctionObject *) func; - m->defaults_tuple = tuple; - Py_INCREF(tuple); -} -static CYTHON_INLINE void __Pyx_CyFunction_SetDefaultsKwDict(PyObject *func, PyObject *dict) { - __pyx_CyFunctionObject *m = (__pyx_CyFunctionObject *) func; - m->defaults_kwdict = dict; - Py_INCREF(dict); -} -static CYTHON_INLINE void __Pyx_CyFunction_SetAnnotationsDict(PyObject *func, PyObject *dict) { - __pyx_CyFunctionObject *m = (__pyx_CyFunctionObject *) func; - m->func_annotations = dict; - Py_INCREF(dict); -} - -/* PyObjectCall2Args */ -static CYTHON_UNUSED PyObject* __Pyx_PyObject_Call2Args(PyObject* function, PyObject* arg1, PyObject* arg2) { - PyObject *args, *result = NULL; - #if CYTHON_FAST_PYCALL - if (PyFunction_Check(function)) { - PyObject *args[2] = {arg1, arg2}; - return __Pyx_PyFunction_FastCall(function, args, 2); - } - #endif - #if CYTHON_FAST_PYCCALL - if (__Pyx_PyFastCFunction_Check(function)) { - PyObject *args[2] = {arg1, arg2}; - return __Pyx_PyCFunction_FastCall(function, args, 2); - } - #endif - args = PyTuple_New(2); - if (unlikely(!args)) goto done; - Py_INCREF(arg1); - PyTuple_SET_ITEM(args, 0, arg1); - Py_INCREF(arg2); - PyTuple_SET_ITEM(args, 1, arg2); - Py_INCREF(function); - result = __Pyx_PyObject_Call(function, args, NULL); - Py_DECREF(args); - Py_DECREF(function); -done: - return result; -} - -/* PyObjectGetMethod */ -static int __Pyx_PyObject_GetMethod(PyObject *obj, PyObject *name, PyObject **method) { - PyObject *attr; -#if CYTHON_UNPACK_METHODS && CYTHON_COMPILING_IN_CPYTHON && CYTHON_USE_PYTYPE_LOOKUP - PyTypeObject *tp = Py_TYPE(obj); - PyObject *descr; - descrgetfunc f = NULL; - PyObject **dictptr, *dict; - int meth_found = 0; - assert (*method == NULL); - if (unlikely(tp->tp_getattro != PyObject_GenericGetAttr)) { - attr = __Pyx_PyObject_GetAttrStr(obj, name); - goto try_unpack; - } - if (unlikely(tp->tp_dict == NULL) && unlikely(PyType_Ready(tp) < 0)) { - return 0; - } - descr = _PyType_Lookup(tp, name); - if (likely(descr != NULL)) { - Py_INCREF(descr); -#if PY_MAJOR_VERSION >= 3 - #ifdef __Pyx_CyFunction_USED - if (likely(PyFunction_Check(descr) || (Py_TYPE(descr) == &PyMethodDescr_Type) || __Pyx_CyFunction_Check(descr))) - #else - if (likely(PyFunction_Check(descr) || (Py_TYPE(descr) == &PyMethodDescr_Type))) - #endif -#else - #ifdef __Pyx_CyFunction_USED - if (likely(PyFunction_Check(descr) || __Pyx_CyFunction_Check(descr))) - #else - if (likely(PyFunction_Check(descr))) - #endif -#endif - { - meth_found = 1; - } else { - f = Py_TYPE(descr)->tp_descr_get; - if (f != NULL && PyDescr_IsData(descr)) { - attr = f(descr, obj, (PyObject *)Py_TYPE(obj)); - Py_DECREF(descr); - goto try_unpack; - } - } - } - dictptr = _PyObject_GetDictPtr(obj); - if (dictptr != NULL && (dict = *dictptr) != NULL) { - Py_INCREF(dict); - attr = __Pyx_PyDict_GetItemStr(dict, name); - if (attr != NULL) { - Py_INCREF(attr); - Py_DECREF(dict); - Py_XDECREF(descr); - goto try_unpack; - } - Py_DECREF(dict); - } - if (meth_found) { - *method = descr; - return 1; - } - if (f != NULL) { - attr = f(descr, obj, (PyObject *)Py_TYPE(obj)); - Py_DECREF(descr); - goto try_unpack; - } - if (descr != NULL) { - *method = descr; - return 0; - } - PyErr_Format(PyExc_AttributeError, -#if PY_MAJOR_VERSION >= 3 - "'%.50s' object has no attribute '%U'", - tp->tp_name, name); -#else - "'%.50s' object has no attribute '%.400s'", - tp->tp_name, PyString_AS_STRING(name)); -#endif - return 0; -#else - attr = __Pyx_PyObject_GetAttrStr(obj, name); - goto try_unpack; -#endif -try_unpack: -#if CYTHON_UNPACK_METHODS - if (likely(attr) && PyMethod_Check(attr) && likely(PyMethod_GET_SELF(attr) == obj)) { - PyObject *function = PyMethod_GET_FUNCTION(attr); - Py_INCREF(function); - Py_DECREF(attr); - *method = function; - return 1; - } -#endif - *method = attr; - return 0; -} - -/* PyObjectCallMethod1 */ -static PyObject* __Pyx__PyObject_CallMethod1(PyObject* method, PyObject* arg) { - PyObject *result = __Pyx_PyObject_CallOneArg(method, arg); - Py_DECREF(method); - return result; -} -static PyObject* __Pyx_PyObject_CallMethod1(PyObject* obj, PyObject* method_name, PyObject* arg) { - PyObject *method = NULL, *result; - int is_method = __Pyx_PyObject_GetMethod(obj, method_name, &method); - if (likely(is_method)) { - result = __Pyx_PyObject_Call2Args(method, obj, arg); - Py_DECREF(method); - return result; - } - if (unlikely(!method)) return NULL; - return __Pyx__PyObject_CallMethod1(method, arg); -} - -/* append */ -static CYTHON_INLINE int __Pyx_PyObject_Append(PyObject* L, PyObject* x) { - if (likely(PyList_CheckExact(L))) { - if (unlikely(__Pyx_PyList_Append(L, x) < 0)) return -1; - } else { - PyObject* retval = __Pyx_PyObject_CallMethod1(L, __pyx_n_s_append, x); - if (unlikely(!retval)) - return -1; - Py_DECREF(retval); - } - return 0; -} - -/* PyIntCompare */ -static CYTHON_INLINE PyObject* __Pyx_PyInt_EqObjC(PyObject *op1, PyObject *op2, CYTHON_UNUSED long intval, CYTHON_UNUSED long inplace) { - if (op1 == op2) { - Py_RETURN_TRUE; - } - #if PY_MAJOR_VERSION < 3 - if (likely(PyInt_CheckExact(op1))) { - const long b = intval; - long a = PyInt_AS_LONG(op1); - if (a == b) Py_RETURN_TRUE; else Py_RETURN_FALSE; - } - #endif - #if CYTHON_USE_PYLONG_INTERNALS - if (likely(PyLong_CheckExact(op1))) { - int unequal; - unsigned long uintval; - Py_ssize_t size = Py_SIZE(op1); - const digit* digits = ((PyLongObject*)op1)->ob_digit; - if (intval == 0) { - if (size == 0) Py_RETURN_TRUE; else Py_RETURN_FALSE; - } else if (intval < 0) { - if (size >= 0) - Py_RETURN_FALSE; - intval = -intval; - size = -size; - } else { - if (size <= 0) - Py_RETURN_FALSE; - } - uintval = (unsigned long) intval; -#if PyLong_SHIFT * 4 < SIZEOF_LONG*8 - if (uintval >> (PyLong_SHIFT * 4)) { - unequal = (size != 5) || (digits[0] != (uintval & (unsigned long) PyLong_MASK)) - | (digits[1] != ((uintval >> (1 * PyLong_SHIFT)) & (unsigned long) PyLong_MASK)) | (digits[2] != ((uintval >> (2 * PyLong_SHIFT)) & (unsigned long) PyLong_MASK)) | (digits[3] != ((uintval >> (3 * PyLong_SHIFT)) & (unsigned long) PyLong_MASK)) | (digits[4] != ((uintval >> (4 * PyLong_SHIFT)) & (unsigned long) PyLong_MASK)); - } else -#endif -#if PyLong_SHIFT * 3 < SIZEOF_LONG*8 - if (uintval >> (PyLong_SHIFT * 3)) { - unequal = (size != 4) || (digits[0] != (uintval & (unsigned long) PyLong_MASK)) - | (digits[1] != ((uintval >> (1 * PyLong_SHIFT)) & (unsigned long) PyLong_MASK)) | (digits[2] != ((uintval >> (2 * PyLong_SHIFT)) & (unsigned long) PyLong_MASK)) | (digits[3] != ((uintval >> (3 * PyLong_SHIFT)) & (unsigned long) PyLong_MASK)); - } else -#endif -#if PyLong_SHIFT * 2 < SIZEOF_LONG*8 - if (uintval >> (PyLong_SHIFT * 2)) { - unequal = (size != 3) || (digits[0] != (uintval & (unsigned long) PyLong_MASK)) - | (digits[1] != ((uintval >> (1 * PyLong_SHIFT)) & (unsigned long) PyLong_MASK)) | (digits[2] != ((uintval >> (2 * PyLong_SHIFT)) & (unsigned long) PyLong_MASK)); - } else -#endif -#if PyLong_SHIFT * 1 < SIZEOF_LONG*8 - if (uintval >> (PyLong_SHIFT * 1)) { - unequal = (size != 2) || (digits[0] != (uintval & (unsigned long) PyLong_MASK)) - | (digits[1] != ((uintval >> (1 * PyLong_SHIFT)) & (unsigned long) PyLong_MASK)); - } else -#endif - unequal = (size != 1) || (((unsigned long) digits[0]) != (uintval & (unsigned long) PyLong_MASK)); - if (unequal == 0) Py_RETURN_TRUE; else Py_RETURN_FALSE; - } - #endif - if (PyFloat_CheckExact(op1)) { - const long b = intval; - double a = PyFloat_AS_DOUBLE(op1); - if ((double)a == (double)b) Py_RETURN_TRUE; else Py_RETURN_FALSE; - } - return ( - PyObject_RichCompare(op1, op2, Py_EQ)); -} - -/* GetItemInt */ -static PyObject *__Pyx_GetItemInt_Generic(PyObject *o, PyObject* j) { - PyObject *r; - if (!j) return NULL; - r = PyObject_GetItem(o, j); - Py_DECREF(j); - return r; -} -static CYTHON_INLINE PyObject *__Pyx_GetItemInt_List_Fast(PyObject *o, Py_ssize_t i, - CYTHON_NCP_UNUSED int wraparound, - CYTHON_NCP_UNUSED int boundscheck) { -#if CYTHON_ASSUME_SAFE_MACROS && !CYTHON_AVOID_BORROWED_REFS - Py_ssize_t wrapped_i = i; - if (wraparound & unlikely(i < 0)) { - wrapped_i += PyList_GET_SIZE(o); - } - if ((!boundscheck) || likely(__Pyx_is_valid_index(wrapped_i, PyList_GET_SIZE(o)))) { - PyObject *r = PyList_GET_ITEM(o, wrapped_i); - Py_INCREF(r); - return r; - } - return __Pyx_GetItemInt_Generic(o, PyInt_FromSsize_t(i)); -#else - return PySequence_GetItem(o, i); -#endif -} -static CYTHON_INLINE PyObject *__Pyx_GetItemInt_Tuple_Fast(PyObject *o, Py_ssize_t i, - CYTHON_NCP_UNUSED int wraparound, - CYTHON_NCP_UNUSED int boundscheck) { -#if CYTHON_ASSUME_SAFE_MACROS && !CYTHON_AVOID_BORROWED_REFS - Py_ssize_t wrapped_i = i; - if (wraparound & unlikely(i < 0)) { - wrapped_i += PyTuple_GET_SIZE(o); - } - if ((!boundscheck) || likely(__Pyx_is_valid_index(wrapped_i, PyTuple_GET_SIZE(o)))) { - PyObject *r = PyTuple_GET_ITEM(o, wrapped_i); - Py_INCREF(r); - return r; - } - return __Pyx_GetItemInt_Generic(o, PyInt_FromSsize_t(i)); -#else - return PySequence_GetItem(o, i); -#endif -} -static CYTHON_INLINE PyObject *__Pyx_GetItemInt_Fast(PyObject *o, Py_ssize_t i, int is_list, - CYTHON_NCP_UNUSED int wraparound, - CYTHON_NCP_UNUSED int boundscheck) { -#if CYTHON_ASSUME_SAFE_MACROS && !CYTHON_AVOID_BORROWED_REFS && CYTHON_USE_TYPE_SLOTS - if (is_list || PyList_CheckExact(o)) { - Py_ssize_t n = ((!wraparound) | likely(i >= 0)) ? i : i + PyList_GET_SIZE(o); - if ((!boundscheck) || (likely(__Pyx_is_valid_index(n, PyList_GET_SIZE(o))))) { - PyObject *r = PyList_GET_ITEM(o, n); - Py_INCREF(r); - return r; - } - } - else if (PyTuple_CheckExact(o)) { - Py_ssize_t n = ((!wraparound) | likely(i >= 0)) ? i : i + PyTuple_GET_SIZE(o); - if ((!boundscheck) || likely(__Pyx_is_valid_index(n, PyTuple_GET_SIZE(o)))) { - PyObject *r = PyTuple_GET_ITEM(o, n); - Py_INCREF(r); - return r; - } - } else { - PySequenceMethods *m = Py_TYPE(o)->tp_as_sequence; - if (likely(m && m->sq_item)) { - if (wraparound && unlikely(i < 0) && likely(m->sq_length)) { - Py_ssize_t l = m->sq_length(o); - if (likely(l >= 0)) { - i += l; - } else { - if (!PyErr_ExceptionMatches(PyExc_OverflowError)) - return NULL; - PyErr_Clear(); - } - } - return m->sq_item(o, i); - } - } -#else - if (is_list || PySequence_Check(o)) { - return PySequence_GetItem(o, i); - } -#endif - return __Pyx_GetItemInt_Generic(o, PyInt_FromSsize_t(i)); -} - -/* ObjectGetItem */ -#if CYTHON_USE_TYPE_SLOTS -static PyObject *__Pyx_PyObject_GetIndex(PyObject *obj, PyObject* index) { - PyObject *runerr; - Py_ssize_t key_value; - PySequenceMethods *m = Py_TYPE(obj)->tp_as_sequence; - if (unlikely(!(m && m->sq_item))) { - PyErr_Format(PyExc_TypeError, "'%.200s' object is not subscriptable", Py_TYPE(obj)->tp_name); - return NULL; - } - key_value = __Pyx_PyIndex_AsSsize_t(index); - if (likely(key_value != -1 || !(runerr = PyErr_Occurred()))) { - return __Pyx_GetItemInt_Fast(obj, key_value, 0, 1, 1); - } - if (PyErr_GivenExceptionMatches(runerr, PyExc_OverflowError)) { - PyErr_Clear(); - PyErr_Format(PyExc_IndexError, "cannot fit '%.200s' into an index-sized integer", Py_TYPE(index)->tp_name); - } - return NULL; -} -static PyObject *__Pyx_PyObject_GetItem(PyObject *obj, PyObject* key) { - PyMappingMethods *m = Py_TYPE(obj)->tp_as_mapping; - if (likely(m && m->mp_subscript)) { - return m->mp_subscript(obj, key); - } - return __Pyx_PyObject_GetIndex(obj, key); -} -#endif - -/* PyIntBinop */ -#if !CYTHON_COMPILING_IN_PYPY -static PyObject* __Pyx_PyInt_AddObjC(PyObject *op1, PyObject *op2, CYTHON_UNUSED long intval, int inplace, int zerodivision_check) { - (void)inplace; - (void)zerodivision_check; - #if PY_MAJOR_VERSION < 3 - if (likely(PyInt_CheckExact(op1))) { - const long b = intval; - long x; - long a = PyInt_AS_LONG(op1); - x = (long)((unsigned long)a + b); - if (likely((x^a) >= 0 || (x^b) >= 0)) - return PyInt_FromLong(x); - return PyLong_Type.tp_as_number->nb_add(op1, op2); - } - #endif - #if CYTHON_USE_PYLONG_INTERNALS - if (likely(PyLong_CheckExact(op1))) { - const long b = intval; - long a, x; -#ifdef HAVE_LONG_LONG - const PY_LONG_LONG llb = intval; - PY_LONG_LONG lla, llx; -#endif - const digit* digits = ((PyLongObject*)op1)->ob_digit; - const Py_ssize_t size = Py_SIZE(op1); - if (likely(__Pyx_sst_abs(size) <= 1)) { - a = likely(size) ? digits[0] : 0; - if (size == -1) a = -a; - } else { - switch (size) { - case -2: - if (8 * sizeof(long) - 1 > 2 * PyLong_SHIFT) { - a = -(long) (((((unsigned long)digits[1]) << PyLong_SHIFT) | (unsigned long)digits[0])); - break; -#ifdef HAVE_LONG_LONG - } else if (8 * sizeof(PY_LONG_LONG) - 1 > 2 * PyLong_SHIFT) { - lla = -(PY_LONG_LONG) (((((unsigned PY_LONG_LONG)digits[1]) << PyLong_SHIFT) | (unsigned PY_LONG_LONG)digits[0])); - goto long_long; -#endif - } - CYTHON_FALLTHROUGH; - case 2: - if (8 * sizeof(long) - 1 > 2 * PyLong_SHIFT) { - a = (long) (((((unsigned long)digits[1]) << PyLong_SHIFT) | (unsigned long)digits[0])); - break; -#ifdef HAVE_LONG_LONG - } else if (8 * sizeof(PY_LONG_LONG) - 1 > 2 * PyLong_SHIFT) { - lla = (PY_LONG_LONG) (((((unsigned PY_LONG_LONG)digits[1]) << PyLong_SHIFT) | (unsigned PY_LONG_LONG)digits[0])); - goto long_long; -#endif - } - CYTHON_FALLTHROUGH; - case -3: - if (8 * sizeof(long) - 1 > 3 * PyLong_SHIFT) { - a = -(long) (((((((unsigned long)digits[2]) << PyLong_SHIFT) | (unsigned long)digits[1]) << PyLong_SHIFT) | (unsigned long)digits[0])); - break; -#ifdef HAVE_LONG_LONG - } else if (8 * sizeof(PY_LONG_LONG) - 1 > 3 * PyLong_SHIFT) { - lla = -(PY_LONG_LONG) (((((((unsigned PY_LONG_LONG)digits[2]) << PyLong_SHIFT) | (unsigned PY_LONG_LONG)digits[1]) << PyLong_SHIFT) | (unsigned PY_LONG_LONG)digits[0])); - goto long_long; -#endif - } - CYTHON_FALLTHROUGH; - case 3: - if (8 * sizeof(long) - 1 > 3 * PyLong_SHIFT) { - a = (long) (((((((unsigned long)digits[2]) << PyLong_SHIFT) | (unsigned long)digits[1]) << PyLong_SHIFT) | (unsigned long)digits[0])); - break; -#ifdef HAVE_LONG_LONG - } else if (8 * sizeof(PY_LONG_LONG) - 1 > 3 * PyLong_SHIFT) { - lla = (PY_LONG_LONG) (((((((unsigned PY_LONG_LONG)digits[2]) << PyLong_SHIFT) | (unsigned PY_LONG_LONG)digits[1]) << PyLong_SHIFT) | (unsigned PY_LONG_LONG)digits[0])); - goto long_long; -#endif - } - CYTHON_FALLTHROUGH; - case -4: - if (8 * sizeof(long) - 1 > 4 * PyLong_SHIFT) { - a = -(long) (((((((((unsigned long)digits[3]) << PyLong_SHIFT) | (unsigned long)digits[2]) << PyLong_SHIFT) | (unsigned long)digits[1]) << PyLong_SHIFT) | (unsigned long)digits[0])); - break; -#ifdef HAVE_LONG_LONG - } else if (8 * sizeof(PY_LONG_LONG) - 1 > 4 * PyLong_SHIFT) { - lla = -(PY_LONG_LONG) (((((((((unsigned PY_LONG_LONG)digits[3]) << PyLong_SHIFT) | (unsigned PY_LONG_LONG)digits[2]) << PyLong_SHIFT) | (unsigned PY_LONG_LONG)digits[1]) << PyLong_SHIFT) | (unsigned PY_LONG_LONG)digits[0])); - goto long_long; -#endif - } - CYTHON_FALLTHROUGH; - case 4: - if (8 * sizeof(long) - 1 > 4 * PyLong_SHIFT) { - a = (long) (((((((((unsigned long)digits[3]) << PyLong_SHIFT) | (unsigned long)digits[2]) << PyLong_SHIFT) | (unsigned long)digits[1]) << PyLong_SHIFT) | (unsigned long)digits[0])); - break; -#ifdef HAVE_LONG_LONG - } else if (8 * sizeof(PY_LONG_LONG) - 1 > 4 * PyLong_SHIFT) { - lla = (PY_LONG_LONG) (((((((((unsigned PY_LONG_LONG)digits[3]) << PyLong_SHIFT) | (unsigned PY_LONG_LONG)digits[2]) << PyLong_SHIFT) | (unsigned PY_LONG_LONG)digits[1]) << PyLong_SHIFT) | (unsigned PY_LONG_LONG)digits[0])); - goto long_long; -#endif - } - CYTHON_FALLTHROUGH; - default: return PyLong_Type.tp_as_number->nb_add(op1, op2); - } - } - x = a + b; - return PyLong_FromLong(x); -#ifdef HAVE_LONG_LONG - long_long: - llx = lla + llb; - return PyLong_FromLongLong(llx); -#endif - - - } - #endif - if (PyFloat_CheckExact(op1)) { - const long b = intval; - double a = PyFloat_AS_DOUBLE(op1); - double result; - PyFPE_START_PROTECT("add", return NULL) - result = ((double)a) + (double)b; - PyFPE_END_PROTECT(result) - return PyFloat_FromDouble(result); - } - return (inplace ? PyNumber_InPlaceAdd : PyNumber_Add)(op1, op2); -} -#endif - -/* ArgTypeTest */ -static int __Pyx__ArgTypeTest(PyObject *obj, PyTypeObject *type, const char *name, int exact) -{ - if (unlikely(!type)) { - PyErr_SetString(PyExc_SystemError, "Missing type object"); - return 0; - } - else if (exact) { - #if PY_MAJOR_VERSION == 2 - if ((type == &PyBaseString_Type) && likely(__Pyx_PyBaseString_CheckExact(obj))) return 1; - #endif - } - else { - if (likely(__Pyx_TypeCheck(obj, type))) return 1; - } - PyErr_Format(PyExc_TypeError, - "Argument '%.200s' has incorrect type (expected %.200s, got %.200s)", - name, type->tp_name, Py_TYPE(obj)->tp_name); - return 0; -} - -/* GetTopmostException */ -#if CYTHON_USE_EXC_INFO_STACK -static _PyErr_StackItem * -__Pyx_PyErr_GetTopmostException(PyThreadState *tstate) -{ - _PyErr_StackItem *exc_info = tstate->exc_info; - while ((exc_info->exc_type == NULL || exc_info->exc_type == Py_None) && - exc_info->previous_item != NULL) - { - exc_info = exc_info->previous_item; - } - return exc_info; -} -#endif - -/* SaveResetException */ -#if CYTHON_FAST_THREAD_STATE -static CYTHON_INLINE void __Pyx__ExceptionSave(PyThreadState *tstate, PyObject **type, PyObject **value, PyObject **tb) { - #if CYTHON_USE_EXC_INFO_STACK - _PyErr_StackItem *exc_info = __Pyx_PyErr_GetTopmostException(tstate); - *type = exc_info->exc_type; - *value = exc_info->exc_value; - *tb = exc_info->exc_traceback; - #else - *type = tstate->exc_type; - *value = tstate->exc_value; - *tb = tstate->exc_traceback; - #endif - Py_XINCREF(*type); - Py_XINCREF(*value); - Py_XINCREF(*tb); -} -static CYTHON_INLINE void __Pyx__ExceptionReset(PyThreadState *tstate, PyObject *type, PyObject *value, PyObject *tb) { - PyObject *tmp_type, *tmp_value, *tmp_tb; - #if CYTHON_USE_EXC_INFO_STACK - _PyErr_StackItem *exc_info = tstate->exc_info; - tmp_type = exc_info->exc_type; - tmp_value = exc_info->exc_value; - tmp_tb = exc_info->exc_traceback; - exc_info->exc_type = type; - exc_info->exc_value = value; - exc_info->exc_traceback = tb; - #else - tmp_type = tstate->exc_type; - tmp_value = tstate->exc_value; - tmp_tb = tstate->exc_traceback; - tstate->exc_type = type; - tstate->exc_value = value; - tstate->exc_traceback = tb; - #endif - Py_XDECREF(tmp_type); - Py_XDECREF(tmp_value); - Py_XDECREF(tmp_tb); -} -#endif - -/* PyErrExceptionMatches */ -#if CYTHON_FAST_THREAD_STATE -static int __Pyx_PyErr_ExceptionMatchesTuple(PyObject *exc_type, PyObject *tuple) { - Py_ssize_t i, n; - n = PyTuple_GET_SIZE(tuple); -#if PY_MAJOR_VERSION >= 3 - for (i=0; icurexc_type; - if (exc_type == err) return 1; - if (unlikely(!exc_type)) return 0; - if (unlikely(PyTuple_Check(err))) - return __Pyx_PyErr_ExceptionMatchesTuple(exc_type, err); - return __Pyx_PyErr_GivenExceptionMatches(exc_type, err); -} -#endif - -/* GetException */ -#if CYTHON_FAST_THREAD_STATE -static int __Pyx__GetException(PyThreadState *tstate, PyObject **type, PyObject **value, PyObject **tb) -#else -static int __Pyx_GetException(PyObject **type, PyObject **value, PyObject **tb) -#endif -{ - PyObject *local_type, *local_value, *local_tb; -#if CYTHON_FAST_THREAD_STATE - PyObject *tmp_type, *tmp_value, *tmp_tb; - local_type = tstate->curexc_type; - local_value = tstate->curexc_value; - local_tb = tstate->curexc_traceback; - tstate->curexc_type = 0; - tstate->curexc_value = 0; - tstate->curexc_traceback = 0; -#else - PyErr_Fetch(&local_type, &local_value, &local_tb); -#endif - PyErr_NormalizeException(&local_type, &local_value, &local_tb); -#if CYTHON_FAST_THREAD_STATE - if (unlikely(tstate->curexc_type)) -#else - if (unlikely(PyErr_Occurred())) -#endif - goto bad; - #if PY_MAJOR_VERSION >= 3 - if (local_tb) { - if (unlikely(PyException_SetTraceback(local_value, local_tb) < 0)) - goto bad; - } - #endif - Py_XINCREF(local_tb); - Py_XINCREF(local_type); - Py_XINCREF(local_value); - *type = local_type; - *value = local_value; - *tb = local_tb; -#if CYTHON_FAST_THREAD_STATE - #if CYTHON_USE_EXC_INFO_STACK - { - _PyErr_StackItem *exc_info = tstate->exc_info; - tmp_type = exc_info->exc_type; - tmp_value = exc_info->exc_value; - tmp_tb = exc_info->exc_traceback; - exc_info->exc_type = local_type; - exc_info->exc_value = local_value; - exc_info->exc_traceback = local_tb; - } - #else - tmp_type = tstate->exc_type; - tmp_value = tstate->exc_value; - tmp_tb = tstate->exc_traceback; - tstate->exc_type = local_type; - tstate->exc_value = local_value; - tstate->exc_traceback = local_tb; - #endif - Py_XDECREF(tmp_type); - Py_XDECREF(tmp_value); - Py_XDECREF(tmp_tb); -#else - PyErr_SetExcInfo(local_type, local_value, local_tb); -#endif - return 0; -bad: - *type = 0; - *value = 0; - *tb = 0; - Py_XDECREF(local_type); - Py_XDECREF(local_value); - Py_XDECREF(local_tb); - return -1; -} - -/* BytesEquals */ -static CYTHON_INLINE int __Pyx_PyBytes_Equals(PyObject* s1, PyObject* s2, int equals) { -#if CYTHON_COMPILING_IN_PYPY - return PyObject_RichCompareBool(s1, s2, equals); -#else - if (s1 == s2) { - return (equals == Py_EQ); - } else if (PyBytes_CheckExact(s1) & PyBytes_CheckExact(s2)) { - const char *ps1, *ps2; - Py_ssize_t length = PyBytes_GET_SIZE(s1); - if (length != PyBytes_GET_SIZE(s2)) - return (equals == Py_NE); - ps1 = PyBytes_AS_STRING(s1); - ps2 = PyBytes_AS_STRING(s2); - if (ps1[0] != ps2[0]) { - return (equals == Py_NE); - } else if (length == 1) { - return (equals == Py_EQ); - } else { - int result; -#if CYTHON_USE_UNICODE_INTERNALS - Py_hash_t hash1, hash2; - hash1 = ((PyBytesObject*)s1)->ob_shash; - hash2 = ((PyBytesObject*)s2)->ob_shash; - if (hash1 != hash2 && hash1 != -1 && hash2 != -1) { - return (equals == Py_NE); - } -#endif - result = memcmp(ps1, ps2, (size_t)length); - return (equals == Py_EQ) ? (result == 0) : (result != 0); - } - } else if ((s1 == Py_None) & PyBytes_CheckExact(s2)) { - return (equals == Py_NE); - } else if ((s2 == Py_None) & PyBytes_CheckExact(s1)) { - return (equals == Py_NE); - } else { - int result; - PyObject* py_result = PyObject_RichCompare(s1, s2, equals); - if (!py_result) - return -1; - result = __Pyx_PyObject_IsTrue(py_result); - Py_DECREF(py_result); - return result; - } -#endif -} - -/* UnicodeEquals */ -static CYTHON_INLINE int __Pyx_PyUnicode_Equals(PyObject* s1, PyObject* s2, int equals) { -#if CYTHON_COMPILING_IN_PYPY - return PyObject_RichCompareBool(s1, s2, equals); -#else -#if PY_MAJOR_VERSION < 3 - PyObject* owned_ref = NULL; -#endif - int s1_is_unicode, s2_is_unicode; - if (s1 == s2) { - goto return_eq; - } - s1_is_unicode = PyUnicode_CheckExact(s1); - s2_is_unicode = PyUnicode_CheckExact(s2); -#if PY_MAJOR_VERSION < 3 - if ((s1_is_unicode & (!s2_is_unicode)) && PyString_CheckExact(s2)) { - owned_ref = PyUnicode_FromObject(s2); - if (unlikely(!owned_ref)) - return -1; - s2 = owned_ref; - s2_is_unicode = 1; - } else if ((s2_is_unicode & (!s1_is_unicode)) && PyString_CheckExact(s1)) { - owned_ref = PyUnicode_FromObject(s1); - if (unlikely(!owned_ref)) - return -1; - s1 = owned_ref; - s1_is_unicode = 1; - } else if (((!s2_is_unicode) & (!s1_is_unicode))) { - return __Pyx_PyBytes_Equals(s1, s2, equals); - } -#endif - if (s1_is_unicode & s2_is_unicode) { - Py_ssize_t length; - int kind; - void *data1, *data2; - if (unlikely(__Pyx_PyUnicode_READY(s1) < 0) || unlikely(__Pyx_PyUnicode_READY(s2) < 0)) - return -1; - length = __Pyx_PyUnicode_GET_LENGTH(s1); - if (length != __Pyx_PyUnicode_GET_LENGTH(s2)) { - goto return_ne; - } -#if CYTHON_USE_UNICODE_INTERNALS - { - Py_hash_t hash1, hash2; - #if CYTHON_PEP393_ENABLED - hash1 = ((PyASCIIObject*)s1)->hash; - hash2 = ((PyASCIIObject*)s2)->hash; - #else - hash1 = ((PyUnicodeObject*)s1)->hash; - hash2 = ((PyUnicodeObject*)s2)->hash; - #endif - if (hash1 != hash2 && hash1 != -1 && hash2 != -1) { - goto return_ne; - } - } -#endif - kind = __Pyx_PyUnicode_KIND(s1); - if (kind != __Pyx_PyUnicode_KIND(s2)) { - goto return_ne; - } - data1 = __Pyx_PyUnicode_DATA(s1); - data2 = __Pyx_PyUnicode_DATA(s2); - if (__Pyx_PyUnicode_READ(kind, data1, 0) != __Pyx_PyUnicode_READ(kind, data2, 0)) { - goto return_ne; - } else if (length == 1) { - goto return_eq; - } else { - int result = memcmp(data1, data2, (size_t)(length * kind)); - #if PY_MAJOR_VERSION < 3 - Py_XDECREF(owned_ref); - #endif - return (equals == Py_EQ) ? (result == 0) : (result != 0); - } - } else if ((s1 == Py_None) & s2_is_unicode) { - goto return_ne; - } else if ((s2 == Py_None) & s1_is_unicode) { - goto return_ne; - } else { - int result; - PyObject* py_result = PyObject_RichCompare(s1, s2, equals); - #if PY_MAJOR_VERSION < 3 - Py_XDECREF(owned_ref); - #endif - if (!py_result) - return -1; - result = __Pyx_PyObject_IsTrue(py_result); - Py_DECREF(py_result); - return result; - } -return_eq: - #if PY_MAJOR_VERSION < 3 - Py_XDECREF(owned_ref); - #endif - return (equals == Py_EQ); -return_ne: - #if PY_MAJOR_VERSION < 3 - Py_XDECREF(owned_ref); - #endif - return (equals == Py_NE); -#endif -} - -/* SliceTupleAndList */ -#if CYTHON_COMPILING_IN_CPYTHON -static CYTHON_INLINE void __Pyx_crop_slice(Py_ssize_t* _start, Py_ssize_t* _stop, Py_ssize_t* _length) { - Py_ssize_t start = *_start, stop = *_stop, length = *_length; - if (start < 0) { - start += length; - if (start < 0) - start = 0; - } - if (stop < 0) - stop += length; - else if (stop > length) - stop = length; - *_length = stop - start; - *_start = start; - *_stop = stop; -} -static CYTHON_INLINE void __Pyx_copy_object_array(PyObject** CYTHON_RESTRICT src, PyObject** CYTHON_RESTRICT dest, Py_ssize_t length) { - PyObject *v; - Py_ssize_t i; - for (i = 0; i < length; i++) { - v = dest[i] = src[i]; - Py_INCREF(v); - } -} -static CYTHON_INLINE PyObject* __Pyx_PyList_GetSlice( - PyObject* src, Py_ssize_t start, Py_ssize_t stop) { - PyObject* dest; - Py_ssize_t length = PyList_GET_SIZE(src); - __Pyx_crop_slice(&start, &stop, &length); - if (unlikely(length <= 0)) - return PyList_New(0); - dest = PyList_New(length); - if (unlikely(!dest)) - return NULL; - __Pyx_copy_object_array( - ((PyListObject*)src)->ob_item + start, - ((PyListObject*)dest)->ob_item, - length); - return dest; -} -static CYTHON_INLINE PyObject* __Pyx_PyTuple_GetSlice( - PyObject* src, Py_ssize_t start, Py_ssize_t stop) { - PyObject* dest; - Py_ssize_t length = PyTuple_GET_SIZE(src); - __Pyx_crop_slice(&start, &stop, &length); - if (unlikely(length <= 0)) - return PyTuple_New(0); - dest = PyTuple_New(length); - if (unlikely(!dest)) - return NULL; - __Pyx_copy_object_array( - ((PyTupleObject*)src)->ob_item + start, - ((PyTupleObject*)dest)->ob_item, - length); - return dest; -} -#endif - -/* pyfrozenset_new */ -static CYTHON_INLINE PyObject* __Pyx_PyFrozenSet_New(PyObject* it) { - if (it) { - PyObject* result; -#if CYTHON_COMPILING_IN_PYPY - PyObject* args; - args = PyTuple_Pack(1, it); - if (unlikely(!args)) - return NULL; - result = PyObject_Call((PyObject*)&PyFrozenSet_Type, args, NULL); - Py_DECREF(args); - return result; -#else - if (PyFrozenSet_CheckExact(it)) { - Py_INCREF(it); - return it; - } - result = PyFrozenSet_New(it); - if (unlikely(!result)) - return NULL; - if (likely(PySet_GET_SIZE(result))) - return result; - Py_DECREF(result); -#endif - } -#if CYTHON_USE_TYPE_SLOTS - return PyFrozenSet_Type.tp_new(&PyFrozenSet_Type, __pyx_empty_tuple, NULL); -#else - return PyObject_Call((PyObject*)&PyFrozenSet_Type, __pyx_empty_tuple, NULL); -#endif -} - -/* PySetContains */ -static int __Pyx_PySet_ContainsUnhashable(PyObject *set, PyObject *key) { - int result = -1; - if (PySet_Check(key) && PyErr_ExceptionMatches(PyExc_TypeError)) { - PyObject *tmpkey; - PyErr_Clear(); - tmpkey = __Pyx_PyFrozenSet_New(key); - if (tmpkey != NULL) { - result = PySet_Contains(set, tmpkey); - Py_DECREF(tmpkey); - } - } - return result; -} -static CYTHON_INLINE int __Pyx_PySet_ContainsTF(PyObject* key, PyObject* set, int eq) { - int result = PySet_Contains(set, key); - if (unlikely(result < 0)) { - result = __Pyx_PySet_ContainsUnhashable(set, key); - } - return unlikely(result < 0) ? result : (result == (eq == Py_EQ)); -} - -/* SliceObject */ -static CYTHON_INLINE PyObject* __Pyx_PyObject_GetSlice(PyObject* obj, - Py_ssize_t cstart, Py_ssize_t cstop, - PyObject** _py_start, PyObject** _py_stop, PyObject** _py_slice, - int has_cstart, int has_cstop, CYTHON_UNUSED int wraparound) { -#if CYTHON_USE_TYPE_SLOTS - PyMappingMethods* mp; -#if PY_MAJOR_VERSION < 3 - PySequenceMethods* ms = Py_TYPE(obj)->tp_as_sequence; - if (likely(ms && ms->sq_slice)) { - if (!has_cstart) { - if (_py_start && (*_py_start != Py_None)) { - cstart = __Pyx_PyIndex_AsSsize_t(*_py_start); - if ((cstart == (Py_ssize_t)-1) && PyErr_Occurred()) goto bad; - } else - cstart = 0; - } - if (!has_cstop) { - if (_py_stop && (*_py_stop != Py_None)) { - cstop = __Pyx_PyIndex_AsSsize_t(*_py_stop); - if ((cstop == (Py_ssize_t)-1) && PyErr_Occurred()) goto bad; - } else - cstop = PY_SSIZE_T_MAX; - } - if (wraparound && unlikely((cstart < 0) | (cstop < 0)) && likely(ms->sq_length)) { - Py_ssize_t l = ms->sq_length(obj); - if (likely(l >= 0)) { - if (cstop < 0) { - cstop += l; - if (cstop < 0) cstop = 0; - } - if (cstart < 0) { - cstart += l; - if (cstart < 0) cstart = 0; - } - } else { - if (!PyErr_ExceptionMatches(PyExc_OverflowError)) - goto bad; - PyErr_Clear(); - } - } - return ms->sq_slice(obj, cstart, cstop); - } -#endif - mp = Py_TYPE(obj)->tp_as_mapping; - if (likely(mp && mp->mp_subscript)) -#endif - { - PyObject* result; - PyObject *py_slice, *py_start, *py_stop; - if (_py_slice) { - py_slice = *_py_slice; - } else { - PyObject* owned_start = NULL; - PyObject* owned_stop = NULL; - if (_py_start) { - py_start = *_py_start; - } else { - if (has_cstart) { - owned_start = py_start = PyInt_FromSsize_t(cstart); - if (unlikely(!py_start)) goto bad; - } else - py_start = Py_None; - } - if (_py_stop) { - py_stop = *_py_stop; - } else { - if (has_cstop) { - owned_stop = py_stop = PyInt_FromSsize_t(cstop); - if (unlikely(!py_stop)) { - Py_XDECREF(owned_start); - goto bad; - } - } else - py_stop = Py_None; - } - py_slice = PySlice_New(py_start, py_stop, Py_None); - Py_XDECREF(owned_start); - Py_XDECREF(owned_stop); - if (unlikely(!py_slice)) goto bad; - } -#if CYTHON_USE_TYPE_SLOTS - result = mp->mp_subscript(obj, py_slice); -#else - result = PyObject_GetItem(obj, py_slice); -#endif - if (!_py_slice) { - Py_DECREF(py_slice); - } - return result; - } - PyErr_Format(PyExc_TypeError, - "'%.200s' object is unsliceable", Py_TYPE(obj)->tp_name); -bad: - return NULL; -} - -/* Import */ -static PyObject *__Pyx_Import(PyObject *name, PyObject *from_list, int level) { - PyObject *empty_list = 0; - PyObject *module = 0; - PyObject *global_dict = 0; - PyObject *empty_dict = 0; - PyObject *list; - #if PY_MAJOR_VERSION < 3 - PyObject *py_import; - py_import = __Pyx_PyObject_GetAttrStr(__pyx_b, __pyx_n_s_import); - if (!py_import) - goto bad; - #endif - if (from_list) - list = from_list; - else { - empty_list = PyList_New(0); - if (!empty_list) - goto bad; - list = empty_list; - } - global_dict = PyModule_GetDict(__pyx_m); - if (!global_dict) - goto bad; - empty_dict = PyDict_New(); - if (!empty_dict) - goto bad; - { - #if PY_MAJOR_VERSION >= 3 - if (level == -1) { - if (strchr(__Pyx_MODULE_NAME, '.')) { - module = PyImport_ImportModuleLevelObject( - name, global_dict, empty_dict, list, 1); - if (!module) { - if (!PyErr_ExceptionMatches(PyExc_ImportError)) - goto bad; - PyErr_Clear(); - } - } - level = 0; - } - #endif - if (!module) { - #if PY_MAJOR_VERSION < 3 - PyObject *py_level = PyInt_FromLong(level); - if (!py_level) - goto bad; - module = PyObject_CallFunctionObjArgs(py_import, - name, global_dict, empty_dict, list, py_level, (PyObject *)NULL); - Py_DECREF(py_level); - #else - module = PyImport_ImportModuleLevelObject( - name, global_dict, empty_dict, list, level); - #endif - } - } -bad: - #if PY_MAJOR_VERSION < 3 - Py_XDECREF(py_import); - #endif - Py_XDECREF(empty_list); - Py_XDECREF(empty_dict); - return module; -} - -/* ImportFrom */ -static PyObject* __Pyx_ImportFrom(PyObject* module, PyObject* name) { - PyObject* value = __Pyx_PyObject_GetAttrStr(module, name); - if (unlikely(!value) && PyErr_ExceptionMatches(PyExc_AttributeError)) { - PyErr_Format(PyExc_ImportError, - #if PY_MAJOR_VERSION < 3 - "cannot import name %.230s", PyString_AS_STRING(name)); - #else - "cannot import name %S", name); - #endif - } - return value; -} - -/* CalculateMetaclass */ -static PyObject *__Pyx_CalculateMetaclass(PyTypeObject *metaclass, PyObject *bases) { - Py_ssize_t i, nbases = PyTuple_GET_SIZE(bases); - for (i=0; i < nbases; i++) { - PyTypeObject *tmptype; - PyObject *tmp = PyTuple_GET_ITEM(bases, i); - tmptype = Py_TYPE(tmp); -#if PY_MAJOR_VERSION < 3 - if (tmptype == &PyClass_Type) - continue; -#endif - if (!metaclass) { - metaclass = tmptype; - continue; - } - if (PyType_IsSubtype(metaclass, tmptype)) - continue; - if (PyType_IsSubtype(tmptype, metaclass)) { - metaclass = tmptype; - continue; - } - PyErr_SetString(PyExc_TypeError, - "metaclass conflict: " - "the metaclass of a derived class " - "must be a (non-strict) subclass " - "of the metaclasses of all its bases"); - return NULL; - } - if (!metaclass) { -#if PY_MAJOR_VERSION < 3 - metaclass = &PyClass_Type; -#else - metaclass = &PyType_Type; -#endif - } - Py_INCREF((PyObject*) metaclass); - return (PyObject*) metaclass; -} - -/* Py3ClassCreate */ -static PyObject *__Pyx_Py3MetaclassPrepare(PyObject *metaclass, PyObject *bases, PyObject *name, - PyObject *qualname, PyObject *mkw, PyObject *modname, PyObject *doc) { - PyObject *ns; - if (metaclass) { - PyObject *prep = __Pyx_PyObject_GetAttrStr(metaclass, __pyx_n_s_prepare); - if (prep) { - PyObject *pargs = PyTuple_Pack(2, name, bases); - if (unlikely(!pargs)) { - Py_DECREF(prep); - return NULL; - } - ns = PyObject_Call(prep, pargs, mkw); - Py_DECREF(prep); - Py_DECREF(pargs); - } else { - if (unlikely(!PyErr_ExceptionMatches(PyExc_AttributeError))) - return NULL; - PyErr_Clear(); - ns = PyDict_New(); - } - } else { - ns = PyDict_New(); - } - if (unlikely(!ns)) - return NULL; - if (unlikely(PyObject_SetItem(ns, __pyx_n_s_module, modname) < 0)) goto bad; - if (unlikely(PyObject_SetItem(ns, __pyx_n_s_qualname, qualname) < 0)) goto bad; - if (unlikely(doc && PyObject_SetItem(ns, __pyx_n_s_doc, doc) < 0)) goto bad; - return ns; -bad: - Py_DECREF(ns); - return NULL; -} -static PyObject *__Pyx_Py3ClassCreate(PyObject *metaclass, PyObject *name, PyObject *bases, - PyObject *dict, PyObject *mkw, - int calculate_metaclass, int allow_py2_metaclass) { - PyObject *result, *margs; - PyObject *owned_metaclass = NULL; - if (allow_py2_metaclass) { - owned_metaclass = PyObject_GetItem(dict, __pyx_n_s_metaclass); - if (owned_metaclass) { - metaclass = owned_metaclass; - } else if (likely(PyErr_ExceptionMatches(PyExc_KeyError))) { - PyErr_Clear(); - } else { - return NULL; - } - } - if (calculate_metaclass && (!metaclass || PyType_Check(metaclass))) { - metaclass = __Pyx_CalculateMetaclass((PyTypeObject*) metaclass, bases); - Py_XDECREF(owned_metaclass); - if (unlikely(!metaclass)) - return NULL; - owned_metaclass = metaclass; - } - margs = PyTuple_Pack(3, name, bases, dict); - if (unlikely(!margs)) { - result = NULL; - } else { - result = PyObject_Call(metaclass, margs, mkw); - Py_DECREF(margs); - } - Py_XDECREF(owned_metaclass); - return result; -} - -/* PyErrFetchRestore */ -#if CYTHON_FAST_THREAD_STATE -static CYTHON_INLINE void __Pyx_ErrRestoreInState(PyThreadState *tstate, PyObject *type, PyObject *value, PyObject *tb) { - PyObject *tmp_type, *tmp_value, *tmp_tb; - tmp_type = tstate->curexc_type; - tmp_value = tstate->curexc_value; - tmp_tb = tstate->curexc_traceback; - tstate->curexc_type = type; - tstate->curexc_value = value; - tstate->curexc_traceback = tb; - Py_XDECREF(tmp_type); - Py_XDECREF(tmp_value); - Py_XDECREF(tmp_tb); -} -static CYTHON_INLINE void __Pyx_ErrFetchInState(PyThreadState *tstate, PyObject **type, PyObject **value, PyObject **tb) { - *type = tstate->curexc_type; - *value = tstate->curexc_value; - *tb = tstate->curexc_traceback; - tstate->curexc_type = 0; - tstate->curexc_value = 0; - tstate->curexc_traceback = 0; -} -#endif - -/* CLineInTraceback */ -#ifndef CYTHON_CLINE_IN_TRACEBACK -static int __Pyx_CLineForTraceback(PyThreadState *tstate, int c_line) { - PyObject *use_cline; - PyObject *ptype, *pvalue, *ptraceback; -#if CYTHON_COMPILING_IN_CPYTHON - PyObject **cython_runtime_dict; -#endif - if (unlikely(!__pyx_cython_runtime)) { - return c_line; - } - __Pyx_ErrFetchInState(tstate, &ptype, &pvalue, &ptraceback); -#if CYTHON_COMPILING_IN_CPYTHON - cython_runtime_dict = _PyObject_GetDictPtr(__pyx_cython_runtime); - if (likely(cython_runtime_dict)) { - __PYX_PY_DICT_LOOKUP_IF_MODIFIED( - use_cline, *cython_runtime_dict, - __Pyx_PyDict_GetItemStr(*cython_runtime_dict, __pyx_n_s_cline_in_traceback)) - } else -#endif - { - PyObject *use_cline_obj = __Pyx_PyObject_GetAttrStr(__pyx_cython_runtime, __pyx_n_s_cline_in_traceback); - if (use_cline_obj) { - use_cline = PyObject_Not(use_cline_obj) ? Py_False : Py_True; - Py_DECREF(use_cline_obj); - } else { - PyErr_Clear(); - use_cline = NULL; - } - } - if (!use_cline) { - c_line = 0; - PyObject_SetAttr(__pyx_cython_runtime, __pyx_n_s_cline_in_traceback, Py_False); - } - else if (use_cline == Py_False || (use_cline != Py_True && PyObject_Not(use_cline) != 0)) { - c_line = 0; - } - __Pyx_ErrRestoreInState(tstate, ptype, pvalue, ptraceback); - return c_line; -} -#endif - -/* CodeObjectCache */ -static int __pyx_bisect_code_objects(__Pyx_CodeObjectCacheEntry* entries, int count, int code_line) { - int start = 0, mid = 0, end = count - 1; - if (end >= 0 && code_line > entries[end].code_line) { - return count; - } - while (start < end) { - mid = start + (end - start) / 2; - if (code_line < entries[mid].code_line) { - end = mid; - } else if (code_line > entries[mid].code_line) { - start = mid + 1; - } else { - return mid; - } - } - if (code_line <= entries[mid].code_line) { - return mid; - } else { - return mid + 1; - } -} -static PyCodeObject *__pyx_find_code_object(int code_line) { - PyCodeObject* code_object; - int pos; - if (unlikely(!code_line) || unlikely(!__pyx_code_cache.entries)) { - return NULL; - } - pos = __pyx_bisect_code_objects(__pyx_code_cache.entries, __pyx_code_cache.count, code_line); - if (unlikely(pos >= __pyx_code_cache.count) || unlikely(__pyx_code_cache.entries[pos].code_line != code_line)) { - return NULL; - } - code_object = __pyx_code_cache.entries[pos].code_object; - Py_INCREF(code_object); - return code_object; -} -static void __pyx_insert_code_object(int code_line, PyCodeObject* code_object) { - int pos, i; - __Pyx_CodeObjectCacheEntry* entries = __pyx_code_cache.entries; - if (unlikely(!code_line)) { - return; - } - if (unlikely(!entries)) { - entries = (__Pyx_CodeObjectCacheEntry*)PyMem_Malloc(64*sizeof(__Pyx_CodeObjectCacheEntry)); - if (likely(entries)) { - __pyx_code_cache.entries = entries; - __pyx_code_cache.max_count = 64; - __pyx_code_cache.count = 1; - entries[0].code_line = code_line; - entries[0].code_object = code_object; - Py_INCREF(code_object); - } - return; - } - pos = __pyx_bisect_code_objects(__pyx_code_cache.entries, __pyx_code_cache.count, code_line); - if ((pos < __pyx_code_cache.count) && unlikely(__pyx_code_cache.entries[pos].code_line == code_line)) { - PyCodeObject* tmp = entries[pos].code_object; - entries[pos].code_object = code_object; - Py_DECREF(tmp); - return; - } - if (__pyx_code_cache.count == __pyx_code_cache.max_count) { - int new_max = __pyx_code_cache.max_count + 64; - entries = (__Pyx_CodeObjectCacheEntry*)PyMem_Realloc( - __pyx_code_cache.entries, (size_t)new_max*sizeof(__Pyx_CodeObjectCacheEntry)); - if (unlikely(!entries)) { - return; - } - __pyx_code_cache.entries = entries; - __pyx_code_cache.max_count = new_max; - } - for (i=__pyx_code_cache.count; i>pos; i--) { - entries[i] = entries[i-1]; - } - entries[pos].code_line = code_line; - entries[pos].code_object = code_object; - __pyx_code_cache.count++; - Py_INCREF(code_object); -} - -/* AddTraceback */ -#include "compile.h" -#include "frameobject.h" -#include "traceback.h" -static PyCodeObject* __Pyx_CreateCodeObjectForTraceback( - const char *funcname, int c_line, - int py_line, const char *filename) { - PyCodeObject *py_code = 0; - PyObject *py_srcfile = 0; - PyObject *py_funcname = 0; - #if PY_MAJOR_VERSION < 3 - py_srcfile = PyString_FromString(filename); - #else - py_srcfile = PyUnicode_FromString(filename); - #endif - if (!py_srcfile) goto bad; - if (c_line) { - #if PY_MAJOR_VERSION < 3 - py_funcname = PyString_FromFormat( "%s (%s:%d)", funcname, __pyx_cfilenm, c_line); - #else - py_funcname = PyUnicode_FromFormat( "%s (%s:%d)", funcname, __pyx_cfilenm, c_line); - #endif - } - else { - #if PY_MAJOR_VERSION < 3 - py_funcname = PyString_FromString(funcname); - #else - py_funcname = PyUnicode_FromString(funcname); - #endif - } - if (!py_funcname) goto bad; - py_code = __Pyx_PyCode_New( - 0, - 0, - 0, - 0, - 0, - __pyx_empty_bytes, /*PyObject *code,*/ - __pyx_empty_tuple, /*PyObject *consts,*/ - __pyx_empty_tuple, /*PyObject *names,*/ - __pyx_empty_tuple, /*PyObject *varnames,*/ - __pyx_empty_tuple, /*PyObject *freevars,*/ - __pyx_empty_tuple, /*PyObject *cellvars,*/ - py_srcfile, /*PyObject *filename,*/ - py_funcname, /*PyObject *name,*/ - py_line, - __pyx_empty_bytes /*PyObject *lnotab*/ - ); - Py_DECREF(py_srcfile); - Py_DECREF(py_funcname); - return py_code; -bad: - Py_XDECREF(py_srcfile); - Py_XDECREF(py_funcname); - return NULL; -} -static void __Pyx_AddTraceback(const char *funcname, int c_line, - int py_line, const char *filename) { - PyCodeObject *py_code = 0; - PyFrameObject *py_frame = 0; - PyThreadState *tstate = __Pyx_PyThreadState_Current; - if (c_line) { - c_line = __Pyx_CLineForTraceback(tstate, c_line); - } - py_code = __pyx_find_code_object(c_line ? -c_line : py_line); - if (!py_code) { - py_code = __Pyx_CreateCodeObjectForTraceback( - funcname, c_line, py_line, filename); - if (!py_code) goto bad; - __pyx_insert_code_object(c_line ? -c_line : py_line, py_code); - } - py_frame = PyFrame_New( - tstate, /*PyThreadState *tstate,*/ - py_code, /*PyCodeObject *code,*/ - __pyx_d, /*PyObject *globals,*/ - 0 /*PyObject *locals*/ - ); - if (!py_frame) goto bad; - __Pyx_PyFrame_SetLineNumber(py_frame, py_line); - PyTraceBack_Here(py_frame); -bad: - Py_XDECREF(py_code); - Py_XDECREF(py_frame); -} - -/* CIntFromPyVerify */ -#define __PYX_VERIFY_RETURN_INT(target_type, func_type, func_value)\ - __PYX__VERIFY_RETURN_INT(target_type, func_type, func_value, 0) -#define __PYX_VERIFY_RETURN_INT_EXC(target_type, func_type, func_value)\ - __PYX__VERIFY_RETURN_INT(target_type, func_type, func_value, 1) -#define __PYX__VERIFY_RETURN_INT(target_type, func_type, func_value, exc)\ - {\ - func_type value = func_value;\ - if (sizeof(target_type) < sizeof(func_type)) {\ - if (unlikely(value != (func_type) (target_type) value)) {\ - func_type zero = 0;\ - if (exc && unlikely(value == (func_type)-1 && PyErr_Occurred()))\ - return (target_type) -1;\ - if (is_unsigned && unlikely(value < zero))\ - goto raise_neg_overflow;\ - else\ - goto raise_overflow;\ - }\ - }\ - return (target_type) value;\ - } - -/* CIntToPy */ -static CYTHON_INLINE PyObject* __Pyx_PyInt_From_long(long value) { - const long neg_one = (long) ((long) 0 - (long) 1), const_zero = (long) 0; - const int is_unsigned = neg_one > const_zero; - if (is_unsigned) { - if (sizeof(long) < sizeof(long)) { - return PyInt_FromLong((long) value); - } else if (sizeof(long) <= sizeof(unsigned long)) { - return PyLong_FromUnsignedLong((unsigned long) value); -#ifdef HAVE_LONG_LONG - } else if (sizeof(long) <= sizeof(unsigned PY_LONG_LONG)) { - return PyLong_FromUnsignedLongLong((unsigned PY_LONG_LONG) value); -#endif - } - } else { - if (sizeof(long) <= sizeof(long)) { - return PyInt_FromLong((long) value); -#ifdef HAVE_LONG_LONG - } else if (sizeof(long) <= sizeof(PY_LONG_LONG)) { - return PyLong_FromLongLong((PY_LONG_LONG) value); -#endif - } - } - { - int one = 1; int little = (int)*(unsigned char *)&one; - unsigned char *bytes = (unsigned char *)&value; - return _PyLong_FromByteArray(bytes, sizeof(long), - little, !is_unsigned); - } -} - -/* CIntFromPy */ -static CYTHON_INLINE unsigned int __Pyx_PyInt_As_unsigned_int(PyObject *x) { - const unsigned int neg_one = (unsigned int) ((unsigned int) 0 - (unsigned int) 1), const_zero = (unsigned int) 0; - const int is_unsigned = neg_one > const_zero; -#if PY_MAJOR_VERSION < 3 - if (likely(PyInt_Check(x))) { - if (sizeof(unsigned int) < sizeof(long)) { - __PYX_VERIFY_RETURN_INT(unsigned int, long, PyInt_AS_LONG(x)) - } else { - long val = PyInt_AS_LONG(x); - if (is_unsigned && unlikely(val < 0)) { - goto raise_neg_overflow; - } - return (unsigned int) val; - } - } else -#endif - if (likely(PyLong_Check(x))) { - if (is_unsigned) { -#if CYTHON_USE_PYLONG_INTERNALS - const digit* digits = ((PyLongObject*)x)->ob_digit; - switch (Py_SIZE(x)) { - case 0: return (unsigned int) 0; - case 1: __PYX_VERIFY_RETURN_INT(unsigned int, digit, digits[0]) - case 2: - if (8 * sizeof(unsigned int) > 1 * PyLong_SHIFT) { - if (8 * sizeof(unsigned long) > 2 * PyLong_SHIFT) { - __PYX_VERIFY_RETURN_INT(unsigned int, unsigned long, (((((unsigned long)digits[1]) << PyLong_SHIFT) | (unsigned long)digits[0]))) - } else if (8 * sizeof(unsigned int) >= 2 * PyLong_SHIFT) { - return (unsigned int) (((((unsigned int)digits[1]) << PyLong_SHIFT) | (unsigned int)digits[0])); - } - } - break; - case 3: - if (8 * sizeof(unsigned int) > 2 * PyLong_SHIFT) { - if (8 * sizeof(unsigned long) > 3 * PyLong_SHIFT) { - __PYX_VERIFY_RETURN_INT(unsigned int, unsigned long, (((((((unsigned long)digits[2]) << PyLong_SHIFT) | (unsigned long)digits[1]) << PyLong_SHIFT) | (unsigned long)digits[0]))) - } else if (8 * sizeof(unsigned int) >= 3 * PyLong_SHIFT) { - return (unsigned int) (((((((unsigned int)digits[2]) << PyLong_SHIFT) | (unsigned int)digits[1]) << PyLong_SHIFT) | (unsigned int)digits[0])); - } - } - break; - case 4: - if (8 * sizeof(unsigned int) > 3 * PyLong_SHIFT) { - if (8 * sizeof(unsigned long) > 4 * PyLong_SHIFT) { - __PYX_VERIFY_RETURN_INT(unsigned int, unsigned long, (((((((((unsigned long)digits[3]) << PyLong_SHIFT) | (unsigned long)digits[2]) << PyLong_SHIFT) | (unsigned long)digits[1]) << PyLong_SHIFT) | (unsigned long)digits[0]))) - } else if (8 * sizeof(unsigned int) >= 4 * PyLong_SHIFT) { - return (unsigned int) (((((((((unsigned int)digits[3]) << PyLong_SHIFT) | (unsigned int)digits[2]) << PyLong_SHIFT) | (unsigned int)digits[1]) << PyLong_SHIFT) | (unsigned int)digits[0])); - } - } - break; - } -#endif -#if CYTHON_COMPILING_IN_CPYTHON - if (unlikely(Py_SIZE(x) < 0)) { - goto raise_neg_overflow; - } -#else - { - int result = PyObject_RichCompareBool(x, Py_False, Py_LT); - if (unlikely(result < 0)) - return (unsigned int) -1; - if (unlikely(result == 1)) - goto raise_neg_overflow; - } -#endif - if (sizeof(unsigned int) <= sizeof(unsigned long)) { - __PYX_VERIFY_RETURN_INT_EXC(unsigned int, unsigned long, PyLong_AsUnsignedLong(x)) -#ifdef HAVE_LONG_LONG - } else if (sizeof(unsigned int) <= sizeof(unsigned PY_LONG_LONG)) { - __PYX_VERIFY_RETURN_INT_EXC(unsigned int, unsigned PY_LONG_LONG, PyLong_AsUnsignedLongLong(x)) -#endif - } - } else { -#if CYTHON_USE_PYLONG_INTERNALS - const digit* digits = ((PyLongObject*)x)->ob_digit; - switch (Py_SIZE(x)) { - case 0: return (unsigned int) 0; - case -1: __PYX_VERIFY_RETURN_INT(unsigned int, sdigit, (sdigit) (-(sdigit)digits[0])) - case 1: __PYX_VERIFY_RETURN_INT(unsigned int, digit, +digits[0]) - case -2: - if (8 * sizeof(unsigned int) - 1 > 1 * PyLong_SHIFT) { - if (8 * sizeof(unsigned long) > 2 * PyLong_SHIFT) { - __PYX_VERIFY_RETURN_INT(unsigned int, long, -(long) (((((unsigned long)digits[1]) << PyLong_SHIFT) | (unsigned long)digits[0]))) - } else if (8 * sizeof(unsigned int) - 1 > 2 * PyLong_SHIFT) { - return (unsigned int) (((unsigned int)-1)*(((((unsigned int)digits[1]) << PyLong_SHIFT) | (unsigned int)digits[0]))); - } - } - break; - case 2: - if (8 * sizeof(unsigned int) > 1 * PyLong_SHIFT) { - if (8 * sizeof(unsigned long) > 2 * PyLong_SHIFT) { - __PYX_VERIFY_RETURN_INT(unsigned int, unsigned long, (((((unsigned long)digits[1]) << PyLong_SHIFT) | (unsigned long)digits[0]))) - } else if (8 * sizeof(unsigned int) - 1 > 2 * PyLong_SHIFT) { - return (unsigned int) ((((((unsigned int)digits[1]) << PyLong_SHIFT) | (unsigned int)digits[0]))); - } - } - break; - case -3: - if (8 * sizeof(unsigned int) - 1 > 2 * PyLong_SHIFT) { - if (8 * sizeof(unsigned long) > 3 * PyLong_SHIFT) { - __PYX_VERIFY_RETURN_INT(unsigned int, long, -(long) (((((((unsigned long)digits[2]) << PyLong_SHIFT) | (unsigned long)digits[1]) << PyLong_SHIFT) | (unsigned long)digits[0]))) - } else if (8 * sizeof(unsigned int) - 1 > 3 * PyLong_SHIFT) { - return (unsigned int) (((unsigned int)-1)*(((((((unsigned int)digits[2]) << PyLong_SHIFT) | (unsigned int)digits[1]) << PyLong_SHIFT) | (unsigned int)digits[0]))); - } - } - break; - case 3: - if (8 * sizeof(unsigned int) > 2 * PyLong_SHIFT) { - if (8 * sizeof(unsigned long) > 3 * PyLong_SHIFT) { - __PYX_VERIFY_RETURN_INT(unsigned int, unsigned long, (((((((unsigned long)digits[2]) << PyLong_SHIFT) | (unsigned long)digits[1]) << PyLong_SHIFT) | (unsigned long)digits[0]))) - } else if (8 * sizeof(unsigned int) - 1 > 3 * PyLong_SHIFT) { - return (unsigned int) ((((((((unsigned int)digits[2]) << PyLong_SHIFT) | (unsigned int)digits[1]) << PyLong_SHIFT) | (unsigned int)digits[0]))); - } - } - break; - case -4: - if (8 * sizeof(unsigned int) - 1 > 3 * PyLong_SHIFT) { - if (8 * sizeof(unsigned long) > 4 * PyLong_SHIFT) { - __PYX_VERIFY_RETURN_INT(unsigned int, long, -(long) (((((((((unsigned long)digits[3]) << PyLong_SHIFT) | (unsigned long)digits[2]) << PyLong_SHIFT) | (unsigned long)digits[1]) << PyLong_SHIFT) | (unsigned long)digits[0]))) - } else if (8 * sizeof(unsigned int) - 1 > 4 * PyLong_SHIFT) { - return (unsigned int) (((unsigned int)-1)*(((((((((unsigned int)digits[3]) << PyLong_SHIFT) | (unsigned int)digits[2]) << PyLong_SHIFT) | (unsigned int)digits[1]) << PyLong_SHIFT) | (unsigned int)digits[0]))); - } - } - break; - case 4: - if (8 * sizeof(unsigned int) > 3 * PyLong_SHIFT) { - if (8 * sizeof(unsigned long) > 4 * PyLong_SHIFT) { - __PYX_VERIFY_RETURN_INT(unsigned int, unsigned long, (((((((((unsigned long)digits[3]) << PyLong_SHIFT) | (unsigned long)digits[2]) << PyLong_SHIFT) | (unsigned long)digits[1]) << PyLong_SHIFT) | (unsigned long)digits[0]))) - } else if (8 * sizeof(unsigned int) - 1 > 4 * PyLong_SHIFT) { - return (unsigned int) ((((((((((unsigned int)digits[3]) << PyLong_SHIFT) | (unsigned int)digits[2]) << PyLong_SHIFT) | (unsigned int)digits[1]) << PyLong_SHIFT) | (unsigned int)digits[0]))); - } - } - break; - } -#endif - if (sizeof(unsigned int) <= sizeof(long)) { - __PYX_VERIFY_RETURN_INT_EXC(unsigned int, long, PyLong_AsLong(x)) -#ifdef HAVE_LONG_LONG - } else if (sizeof(unsigned int) <= sizeof(PY_LONG_LONG)) { - __PYX_VERIFY_RETURN_INT_EXC(unsigned int, PY_LONG_LONG, PyLong_AsLongLong(x)) -#endif - } - } - { -#if CYTHON_COMPILING_IN_PYPY && !defined(_PyLong_AsByteArray) - PyErr_SetString(PyExc_RuntimeError, - "_PyLong_AsByteArray() not available in PyPy, cannot convert large numbers"); -#else - unsigned int val; - PyObject *v = __Pyx_PyNumber_IntOrLong(x); - #if PY_MAJOR_VERSION < 3 - if (likely(v) && !PyLong_Check(v)) { - PyObject *tmp = v; - v = PyNumber_Long(tmp); - Py_DECREF(tmp); - } - #endif - if (likely(v)) { - int one = 1; int is_little = (int)*(unsigned char *)&one; - unsigned char *bytes = (unsigned char *)&val; - int ret = _PyLong_AsByteArray((PyLongObject *)v, - bytes, sizeof(val), - is_little, !is_unsigned); - Py_DECREF(v); - if (likely(!ret)) - return val; - } -#endif - return (unsigned int) -1; - } - } else { - unsigned int val; - PyObject *tmp = __Pyx_PyNumber_IntOrLong(x); - if (!tmp) return (unsigned int) -1; - val = __Pyx_PyInt_As_unsigned_int(tmp); - Py_DECREF(tmp); - return val; - } -raise_overflow: - PyErr_SetString(PyExc_OverflowError, - "value too large to convert to unsigned int"); - return (unsigned int) -1; -raise_neg_overflow: - PyErr_SetString(PyExc_OverflowError, - "can't convert negative value to unsigned int"); - return (unsigned int) -1; -} - -/* CIntFromPy */ -static CYTHON_INLINE long __Pyx_PyInt_As_long(PyObject *x) { - const long neg_one = (long) ((long) 0 - (long) 1), const_zero = (long) 0; - const int is_unsigned = neg_one > const_zero; -#if PY_MAJOR_VERSION < 3 - if (likely(PyInt_Check(x))) { - if (sizeof(long) < sizeof(long)) { - __PYX_VERIFY_RETURN_INT(long, long, PyInt_AS_LONG(x)) - } else { - long val = PyInt_AS_LONG(x); - if (is_unsigned && unlikely(val < 0)) { - goto raise_neg_overflow; - } - return (long) val; - } - } else -#endif - if (likely(PyLong_Check(x))) { - if (is_unsigned) { -#if CYTHON_USE_PYLONG_INTERNALS - const digit* digits = ((PyLongObject*)x)->ob_digit; - switch (Py_SIZE(x)) { - case 0: return (long) 0; - case 1: __PYX_VERIFY_RETURN_INT(long, digit, digits[0]) - case 2: - if (8 * sizeof(long) > 1 * PyLong_SHIFT) { - if (8 * sizeof(unsigned long) > 2 * PyLong_SHIFT) { - __PYX_VERIFY_RETURN_INT(long, unsigned long, (((((unsigned long)digits[1]) << PyLong_SHIFT) | (unsigned long)digits[0]))) - } else if (8 * sizeof(long) >= 2 * PyLong_SHIFT) { - return (long) (((((long)digits[1]) << PyLong_SHIFT) | (long)digits[0])); - } - } - break; - case 3: - if (8 * sizeof(long) > 2 * PyLong_SHIFT) { - if (8 * sizeof(unsigned long) > 3 * PyLong_SHIFT) { - __PYX_VERIFY_RETURN_INT(long, unsigned long, (((((((unsigned long)digits[2]) << PyLong_SHIFT) | (unsigned long)digits[1]) << PyLong_SHIFT) | (unsigned long)digits[0]))) - } else if (8 * sizeof(long) >= 3 * PyLong_SHIFT) { - return (long) (((((((long)digits[2]) << PyLong_SHIFT) | (long)digits[1]) << PyLong_SHIFT) | (long)digits[0])); - } - } - break; - case 4: - if (8 * sizeof(long) > 3 * PyLong_SHIFT) { - if (8 * sizeof(unsigned long) > 4 * PyLong_SHIFT) { - __PYX_VERIFY_RETURN_INT(long, unsigned long, (((((((((unsigned long)digits[3]) << PyLong_SHIFT) | (unsigned long)digits[2]) << PyLong_SHIFT) | (unsigned long)digits[1]) << PyLong_SHIFT) | (unsigned long)digits[0]))) - } else if (8 * sizeof(long) >= 4 * PyLong_SHIFT) { - return (long) (((((((((long)digits[3]) << PyLong_SHIFT) | (long)digits[2]) << PyLong_SHIFT) | (long)digits[1]) << PyLong_SHIFT) | (long)digits[0])); - } - } - break; - } -#endif -#if CYTHON_COMPILING_IN_CPYTHON - if (unlikely(Py_SIZE(x) < 0)) { - goto raise_neg_overflow; - } -#else - { - int result = PyObject_RichCompareBool(x, Py_False, Py_LT); - if (unlikely(result < 0)) - return (long) -1; - if (unlikely(result == 1)) - goto raise_neg_overflow; - } -#endif - if (sizeof(long) <= sizeof(unsigned long)) { - __PYX_VERIFY_RETURN_INT_EXC(long, unsigned long, PyLong_AsUnsignedLong(x)) -#ifdef HAVE_LONG_LONG - } else if (sizeof(long) <= sizeof(unsigned PY_LONG_LONG)) { - __PYX_VERIFY_RETURN_INT_EXC(long, unsigned PY_LONG_LONG, PyLong_AsUnsignedLongLong(x)) -#endif - } - } else { -#if CYTHON_USE_PYLONG_INTERNALS - const digit* digits = ((PyLongObject*)x)->ob_digit; - switch (Py_SIZE(x)) { - case 0: return (long) 0; - case -1: __PYX_VERIFY_RETURN_INT(long, sdigit, (sdigit) (-(sdigit)digits[0])) - case 1: __PYX_VERIFY_RETURN_INT(long, digit, +digits[0]) - case -2: - if (8 * sizeof(long) - 1 > 1 * PyLong_SHIFT) { - if (8 * sizeof(unsigned long) > 2 * PyLong_SHIFT) { - __PYX_VERIFY_RETURN_INT(long, long, -(long) (((((unsigned long)digits[1]) << PyLong_SHIFT) | (unsigned long)digits[0]))) - } else if (8 * sizeof(long) - 1 > 2 * PyLong_SHIFT) { - return (long) (((long)-1)*(((((long)digits[1]) << PyLong_SHIFT) | (long)digits[0]))); - } - } - break; - case 2: - if (8 * sizeof(long) > 1 * PyLong_SHIFT) { - if (8 * sizeof(unsigned long) > 2 * PyLong_SHIFT) { - __PYX_VERIFY_RETURN_INT(long, unsigned long, (((((unsigned long)digits[1]) << PyLong_SHIFT) | (unsigned long)digits[0]))) - } else if (8 * sizeof(long) - 1 > 2 * PyLong_SHIFT) { - return (long) ((((((long)digits[1]) << PyLong_SHIFT) | (long)digits[0]))); - } - } - break; - case -3: - if (8 * sizeof(long) - 1 > 2 * PyLong_SHIFT) { - if (8 * sizeof(unsigned long) > 3 * PyLong_SHIFT) { - __PYX_VERIFY_RETURN_INT(long, long, -(long) (((((((unsigned long)digits[2]) << PyLong_SHIFT) | (unsigned long)digits[1]) << PyLong_SHIFT) | (unsigned long)digits[0]))) - } else if (8 * sizeof(long) - 1 > 3 * PyLong_SHIFT) { - return (long) (((long)-1)*(((((((long)digits[2]) << PyLong_SHIFT) | (long)digits[1]) << PyLong_SHIFT) | (long)digits[0]))); - } - } - break; - case 3: - if (8 * sizeof(long) > 2 * PyLong_SHIFT) { - if (8 * sizeof(unsigned long) > 3 * PyLong_SHIFT) { - __PYX_VERIFY_RETURN_INT(long, unsigned long, (((((((unsigned long)digits[2]) << PyLong_SHIFT) | (unsigned long)digits[1]) << PyLong_SHIFT) | (unsigned long)digits[0]))) - } else if (8 * sizeof(long) - 1 > 3 * PyLong_SHIFT) { - return (long) ((((((((long)digits[2]) << PyLong_SHIFT) | (long)digits[1]) << PyLong_SHIFT) | (long)digits[0]))); - } - } - break; - case -4: - if (8 * sizeof(long) - 1 > 3 * PyLong_SHIFT) { - if (8 * sizeof(unsigned long) > 4 * PyLong_SHIFT) { - __PYX_VERIFY_RETURN_INT(long, long, -(long) (((((((((unsigned long)digits[3]) << PyLong_SHIFT) | (unsigned long)digits[2]) << PyLong_SHIFT) | (unsigned long)digits[1]) << PyLong_SHIFT) | (unsigned long)digits[0]))) - } else if (8 * sizeof(long) - 1 > 4 * PyLong_SHIFT) { - return (long) (((long)-1)*(((((((((long)digits[3]) << PyLong_SHIFT) | (long)digits[2]) << PyLong_SHIFT) | (long)digits[1]) << PyLong_SHIFT) | (long)digits[0]))); - } - } - break; - case 4: - if (8 * sizeof(long) > 3 * PyLong_SHIFT) { - if (8 * sizeof(unsigned long) > 4 * PyLong_SHIFT) { - __PYX_VERIFY_RETURN_INT(long, unsigned long, (((((((((unsigned long)digits[3]) << PyLong_SHIFT) | (unsigned long)digits[2]) << PyLong_SHIFT) | (unsigned long)digits[1]) << PyLong_SHIFT) | (unsigned long)digits[0]))) - } else if (8 * sizeof(long) - 1 > 4 * PyLong_SHIFT) { - return (long) ((((((((((long)digits[3]) << PyLong_SHIFT) | (long)digits[2]) << PyLong_SHIFT) | (long)digits[1]) << PyLong_SHIFT) | (long)digits[0]))); - } - } - break; - } -#endif - if (sizeof(long) <= sizeof(long)) { - __PYX_VERIFY_RETURN_INT_EXC(long, long, PyLong_AsLong(x)) -#ifdef HAVE_LONG_LONG - } else if (sizeof(long) <= sizeof(PY_LONG_LONG)) { - __PYX_VERIFY_RETURN_INT_EXC(long, PY_LONG_LONG, PyLong_AsLongLong(x)) -#endif - } - } - { -#if CYTHON_COMPILING_IN_PYPY && !defined(_PyLong_AsByteArray) - PyErr_SetString(PyExc_RuntimeError, - "_PyLong_AsByteArray() not available in PyPy, cannot convert large numbers"); -#else - long val; - PyObject *v = __Pyx_PyNumber_IntOrLong(x); - #if PY_MAJOR_VERSION < 3 - if (likely(v) && !PyLong_Check(v)) { - PyObject *tmp = v; - v = PyNumber_Long(tmp); - Py_DECREF(tmp); - } - #endif - if (likely(v)) { - int one = 1; int is_little = (int)*(unsigned char *)&one; - unsigned char *bytes = (unsigned char *)&val; - int ret = _PyLong_AsByteArray((PyLongObject *)v, - bytes, sizeof(val), - is_little, !is_unsigned); - Py_DECREF(v); - if (likely(!ret)) - return val; - } -#endif - return (long) -1; - } - } else { - long val; - PyObject *tmp = __Pyx_PyNumber_IntOrLong(x); - if (!tmp) return (long) -1; - val = __Pyx_PyInt_As_long(tmp); - Py_DECREF(tmp); - return val; - } -raise_overflow: - PyErr_SetString(PyExc_OverflowError, - "value too large to convert to long"); - return (long) -1; -raise_neg_overflow: - PyErr_SetString(PyExc_OverflowError, - "can't convert negative value to long"); - return (long) -1; -} - -/* CIntFromPy */ -static CYTHON_INLINE int __Pyx_PyInt_As_int(PyObject *x) { - const int neg_one = (int) ((int) 0 - (int) 1), const_zero = (int) 0; - const int is_unsigned = neg_one > const_zero; -#if PY_MAJOR_VERSION < 3 - if (likely(PyInt_Check(x))) { - if (sizeof(int) < sizeof(long)) { - __PYX_VERIFY_RETURN_INT(int, long, PyInt_AS_LONG(x)) - } else { - long val = PyInt_AS_LONG(x); - if (is_unsigned && unlikely(val < 0)) { - goto raise_neg_overflow; - } - return (int) val; - } - } else -#endif - if (likely(PyLong_Check(x))) { - if (is_unsigned) { -#if CYTHON_USE_PYLONG_INTERNALS - const digit* digits = ((PyLongObject*)x)->ob_digit; - switch (Py_SIZE(x)) { - case 0: return (int) 0; - case 1: __PYX_VERIFY_RETURN_INT(int, digit, digits[0]) - case 2: - if (8 * sizeof(int) > 1 * PyLong_SHIFT) { - if (8 * sizeof(unsigned long) > 2 * PyLong_SHIFT) { - __PYX_VERIFY_RETURN_INT(int, unsigned long, (((((unsigned long)digits[1]) << PyLong_SHIFT) | (unsigned long)digits[0]))) - } else if (8 * sizeof(int) >= 2 * PyLong_SHIFT) { - return (int) (((((int)digits[1]) << PyLong_SHIFT) | (int)digits[0])); - } - } - break; - case 3: - if (8 * sizeof(int) > 2 * PyLong_SHIFT) { - if (8 * sizeof(unsigned long) > 3 * PyLong_SHIFT) { - __PYX_VERIFY_RETURN_INT(int, unsigned long, (((((((unsigned long)digits[2]) << PyLong_SHIFT) | (unsigned long)digits[1]) << PyLong_SHIFT) | (unsigned long)digits[0]))) - } else if (8 * sizeof(int) >= 3 * PyLong_SHIFT) { - return (int) (((((((int)digits[2]) << PyLong_SHIFT) | (int)digits[1]) << PyLong_SHIFT) | (int)digits[0])); - } - } - break; - case 4: - if (8 * sizeof(int) > 3 * PyLong_SHIFT) { - if (8 * sizeof(unsigned long) > 4 * PyLong_SHIFT) { - __PYX_VERIFY_RETURN_INT(int, unsigned long, (((((((((unsigned long)digits[3]) << PyLong_SHIFT) | (unsigned long)digits[2]) << PyLong_SHIFT) | (unsigned long)digits[1]) << PyLong_SHIFT) | (unsigned long)digits[0]))) - } else if (8 * sizeof(int) >= 4 * PyLong_SHIFT) { - return (int) (((((((((int)digits[3]) << PyLong_SHIFT) | (int)digits[2]) << PyLong_SHIFT) | (int)digits[1]) << PyLong_SHIFT) | (int)digits[0])); - } - } - break; - } -#endif -#if CYTHON_COMPILING_IN_CPYTHON - if (unlikely(Py_SIZE(x) < 0)) { - goto raise_neg_overflow; - } -#else - { - int result = PyObject_RichCompareBool(x, Py_False, Py_LT); - if (unlikely(result < 0)) - return (int) -1; - if (unlikely(result == 1)) - goto raise_neg_overflow; - } -#endif - if (sizeof(int) <= sizeof(unsigned long)) { - __PYX_VERIFY_RETURN_INT_EXC(int, unsigned long, PyLong_AsUnsignedLong(x)) -#ifdef HAVE_LONG_LONG - } else if (sizeof(int) <= sizeof(unsigned PY_LONG_LONG)) { - __PYX_VERIFY_RETURN_INT_EXC(int, unsigned PY_LONG_LONG, PyLong_AsUnsignedLongLong(x)) -#endif - } - } else { -#if CYTHON_USE_PYLONG_INTERNALS - const digit* digits = ((PyLongObject*)x)->ob_digit; - switch (Py_SIZE(x)) { - case 0: return (int) 0; - case -1: __PYX_VERIFY_RETURN_INT(int, sdigit, (sdigit) (-(sdigit)digits[0])) - case 1: __PYX_VERIFY_RETURN_INT(int, digit, +digits[0]) - case -2: - if (8 * sizeof(int) - 1 > 1 * PyLong_SHIFT) { - if (8 * sizeof(unsigned long) > 2 * PyLong_SHIFT) { - __PYX_VERIFY_RETURN_INT(int, long, -(long) (((((unsigned long)digits[1]) << PyLong_SHIFT) | (unsigned long)digits[0]))) - } else if (8 * sizeof(int) - 1 > 2 * PyLong_SHIFT) { - return (int) (((int)-1)*(((((int)digits[1]) << PyLong_SHIFT) | (int)digits[0]))); - } - } - break; - case 2: - if (8 * sizeof(int) > 1 * PyLong_SHIFT) { - if (8 * sizeof(unsigned long) > 2 * PyLong_SHIFT) { - __PYX_VERIFY_RETURN_INT(int, unsigned long, (((((unsigned long)digits[1]) << PyLong_SHIFT) | (unsigned long)digits[0]))) - } else if (8 * sizeof(int) - 1 > 2 * PyLong_SHIFT) { - return (int) ((((((int)digits[1]) << PyLong_SHIFT) | (int)digits[0]))); - } - } - break; - case -3: - if (8 * sizeof(int) - 1 > 2 * PyLong_SHIFT) { - if (8 * sizeof(unsigned long) > 3 * PyLong_SHIFT) { - __PYX_VERIFY_RETURN_INT(int, long, -(long) (((((((unsigned long)digits[2]) << PyLong_SHIFT) | (unsigned long)digits[1]) << PyLong_SHIFT) | (unsigned long)digits[0]))) - } else if (8 * sizeof(int) - 1 > 3 * PyLong_SHIFT) { - return (int) (((int)-1)*(((((((int)digits[2]) << PyLong_SHIFT) | (int)digits[1]) << PyLong_SHIFT) | (int)digits[0]))); - } - } - break; - case 3: - if (8 * sizeof(int) > 2 * PyLong_SHIFT) { - if (8 * sizeof(unsigned long) > 3 * PyLong_SHIFT) { - __PYX_VERIFY_RETURN_INT(int, unsigned long, (((((((unsigned long)digits[2]) << PyLong_SHIFT) | (unsigned long)digits[1]) << PyLong_SHIFT) | (unsigned long)digits[0]))) - } else if (8 * sizeof(int) - 1 > 3 * PyLong_SHIFT) { - return (int) ((((((((int)digits[2]) << PyLong_SHIFT) | (int)digits[1]) << PyLong_SHIFT) | (int)digits[0]))); - } - } - break; - case -4: - if (8 * sizeof(int) - 1 > 3 * PyLong_SHIFT) { - if (8 * sizeof(unsigned long) > 4 * PyLong_SHIFT) { - __PYX_VERIFY_RETURN_INT(int, long, -(long) (((((((((unsigned long)digits[3]) << PyLong_SHIFT) | (unsigned long)digits[2]) << PyLong_SHIFT) | (unsigned long)digits[1]) << PyLong_SHIFT) | (unsigned long)digits[0]))) - } else if (8 * sizeof(int) - 1 > 4 * PyLong_SHIFT) { - return (int) (((int)-1)*(((((((((int)digits[3]) << PyLong_SHIFT) | (int)digits[2]) << PyLong_SHIFT) | (int)digits[1]) << PyLong_SHIFT) | (int)digits[0]))); - } - } - break; - case 4: - if (8 * sizeof(int) > 3 * PyLong_SHIFT) { - if (8 * sizeof(unsigned long) > 4 * PyLong_SHIFT) { - __PYX_VERIFY_RETURN_INT(int, unsigned long, (((((((((unsigned long)digits[3]) << PyLong_SHIFT) | (unsigned long)digits[2]) << PyLong_SHIFT) | (unsigned long)digits[1]) << PyLong_SHIFT) | (unsigned long)digits[0]))) - } else if (8 * sizeof(int) - 1 > 4 * PyLong_SHIFT) { - return (int) ((((((((((int)digits[3]) << PyLong_SHIFT) | (int)digits[2]) << PyLong_SHIFT) | (int)digits[1]) << PyLong_SHIFT) | (int)digits[0]))); - } - } - break; - } -#endif - if (sizeof(int) <= sizeof(long)) { - __PYX_VERIFY_RETURN_INT_EXC(int, long, PyLong_AsLong(x)) -#ifdef HAVE_LONG_LONG - } else if (sizeof(int) <= sizeof(PY_LONG_LONG)) { - __PYX_VERIFY_RETURN_INT_EXC(int, PY_LONG_LONG, PyLong_AsLongLong(x)) -#endif - } - } - { -#if CYTHON_COMPILING_IN_PYPY && !defined(_PyLong_AsByteArray) - PyErr_SetString(PyExc_RuntimeError, - "_PyLong_AsByteArray() not available in PyPy, cannot convert large numbers"); -#else - int val; - PyObject *v = __Pyx_PyNumber_IntOrLong(x); - #if PY_MAJOR_VERSION < 3 - if (likely(v) && !PyLong_Check(v)) { - PyObject *tmp = v; - v = PyNumber_Long(tmp); - Py_DECREF(tmp); - } - #endif - if (likely(v)) { - int one = 1; int is_little = (int)*(unsigned char *)&one; - unsigned char *bytes = (unsigned char *)&val; - int ret = _PyLong_AsByteArray((PyLongObject *)v, - bytes, sizeof(val), - is_little, !is_unsigned); - Py_DECREF(v); - if (likely(!ret)) - return val; - } -#endif - return (int) -1; - } - } else { - int val; - PyObject *tmp = __Pyx_PyNumber_IntOrLong(x); - if (!tmp) return (int) -1; - val = __Pyx_PyInt_As_int(tmp); - Py_DECREF(tmp); - return val; - } -raise_overflow: - PyErr_SetString(PyExc_OverflowError, - "value too large to convert to int"); - return (int) -1; -raise_neg_overflow: - PyErr_SetString(PyExc_OverflowError, - "can't convert negative value to int"); - return (int) -1; -} - -/* FastTypeChecks */ -#if CYTHON_COMPILING_IN_CPYTHON -static int __Pyx_InBases(PyTypeObject *a, PyTypeObject *b) { - while (a) { - a = a->tp_base; - if (a == b) - return 1; - } - return b == &PyBaseObject_Type; -} -static CYTHON_INLINE int __Pyx_IsSubtype(PyTypeObject *a, PyTypeObject *b) { - PyObject *mro; - if (a == b) return 1; - mro = a->tp_mro; - if (likely(mro)) { - Py_ssize_t i, n; - n = PyTuple_GET_SIZE(mro); - for (i = 0; i < n; i++) { - if (PyTuple_GET_ITEM(mro, i) == (PyObject *)b) - return 1; - } - return 0; - } - return __Pyx_InBases(a, b); -} -#if PY_MAJOR_VERSION == 2 -static int __Pyx_inner_PyErr_GivenExceptionMatches2(PyObject *err, PyObject* exc_type1, PyObject* exc_type2) { - PyObject *exception, *value, *tb; - int res; - __Pyx_PyThreadState_declare - __Pyx_PyThreadState_assign - __Pyx_ErrFetch(&exception, &value, &tb); - res = exc_type1 ? PyObject_IsSubclass(err, exc_type1) : 0; - if (unlikely(res == -1)) { - PyErr_WriteUnraisable(err); - res = 0; - } - if (!res) { - res = PyObject_IsSubclass(err, exc_type2); - if (unlikely(res == -1)) { - PyErr_WriteUnraisable(err); - res = 0; - } - } - __Pyx_ErrRestore(exception, value, tb); - return res; -} -#else -static CYTHON_INLINE int __Pyx_inner_PyErr_GivenExceptionMatches2(PyObject *err, PyObject* exc_type1, PyObject *exc_type2) { - int res = exc_type1 ? __Pyx_IsSubtype((PyTypeObject*)err, (PyTypeObject*)exc_type1) : 0; - if (!res) { - res = __Pyx_IsSubtype((PyTypeObject*)err, (PyTypeObject*)exc_type2); - } - return res; -} -#endif -static int __Pyx_PyErr_GivenExceptionMatchesTuple(PyObject *exc_type, PyObject *tuple) { - Py_ssize_t i, n; - assert(PyExceptionClass_Check(exc_type)); - n = PyTuple_GET_SIZE(tuple); -#if PY_MAJOR_VERSION >= 3 - for (i=0; ip) { - #if PY_MAJOR_VERSION < 3 - if (t->is_unicode) { - *t->p = PyUnicode_DecodeUTF8(t->s, t->n - 1, NULL); - } else if (t->intern) { - *t->p = PyString_InternFromString(t->s); - } else { - *t->p = PyString_FromStringAndSize(t->s, t->n - 1); - } - #else - if (t->is_unicode | t->is_str) { - if (t->intern) { - *t->p = PyUnicode_InternFromString(t->s); - } else if (t->encoding) { - *t->p = PyUnicode_Decode(t->s, t->n - 1, t->encoding, NULL); - } else { - *t->p = PyUnicode_FromStringAndSize(t->s, t->n - 1); - } - } else { - *t->p = PyBytes_FromStringAndSize(t->s, t->n - 1); - } - #endif - if (!*t->p) - return -1; - if (PyObject_Hash(*t->p) == -1) - return -1; - ++t; - } - return 0; -} - -static CYTHON_INLINE PyObject* __Pyx_PyUnicode_FromString(const char* c_str) { - return __Pyx_PyUnicode_FromStringAndSize(c_str, (Py_ssize_t)strlen(c_str)); -} -static CYTHON_INLINE const char* __Pyx_PyObject_AsString(PyObject* o) { - Py_ssize_t ignore; - return __Pyx_PyObject_AsStringAndSize(o, &ignore); -} -#if __PYX_DEFAULT_STRING_ENCODING_IS_ASCII || __PYX_DEFAULT_STRING_ENCODING_IS_DEFAULT -#if !CYTHON_PEP393_ENABLED -static const char* __Pyx_PyUnicode_AsStringAndSize(PyObject* o, Py_ssize_t *length) { - char* defenc_c; - PyObject* defenc = _PyUnicode_AsDefaultEncodedString(o, NULL); - if (!defenc) return NULL; - defenc_c = PyBytes_AS_STRING(defenc); -#if __PYX_DEFAULT_STRING_ENCODING_IS_ASCII - { - char* end = defenc_c + PyBytes_GET_SIZE(defenc); - char* c; - for (c = defenc_c; c < end; c++) { - if ((unsigned char) (*c) >= 128) { - PyUnicode_AsASCIIString(o); - return NULL; - } - } - } -#endif - *length = PyBytes_GET_SIZE(defenc); - return defenc_c; -} -#else -static CYTHON_INLINE const char* __Pyx_PyUnicode_AsStringAndSize(PyObject* o, Py_ssize_t *length) { - if (unlikely(__Pyx_PyUnicode_READY(o) == -1)) return NULL; -#if __PYX_DEFAULT_STRING_ENCODING_IS_ASCII - if (likely(PyUnicode_IS_ASCII(o))) { - *length = PyUnicode_GET_LENGTH(o); - return PyUnicode_AsUTF8(o); - } else { - PyUnicode_AsASCIIString(o); - return NULL; - } -#else - return PyUnicode_AsUTF8AndSize(o, length); -#endif -} -#endif -#endif -static CYTHON_INLINE const char* __Pyx_PyObject_AsStringAndSize(PyObject* o, Py_ssize_t *length) { -#if __PYX_DEFAULT_STRING_ENCODING_IS_ASCII || __PYX_DEFAULT_STRING_ENCODING_IS_DEFAULT - if ( -#if PY_MAJOR_VERSION < 3 && __PYX_DEFAULT_STRING_ENCODING_IS_ASCII - __Pyx_sys_getdefaultencoding_not_ascii && -#endif - PyUnicode_Check(o)) { - return __Pyx_PyUnicode_AsStringAndSize(o, length); - } else -#endif -#if (!CYTHON_COMPILING_IN_PYPY) || (defined(PyByteArray_AS_STRING) && defined(PyByteArray_GET_SIZE)) - if (PyByteArray_Check(o)) { - *length = PyByteArray_GET_SIZE(o); - return PyByteArray_AS_STRING(o); - } else -#endif - { - char* result; - int r = PyBytes_AsStringAndSize(o, &result, length); - if (unlikely(r < 0)) { - return NULL; - } else { - return result; - } - } -} -static CYTHON_INLINE int __Pyx_PyObject_IsTrue(PyObject* x) { - int is_true = x == Py_True; - if (is_true | (x == Py_False) | (x == Py_None)) return is_true; - else return PyObject_IsTrue(x); -} -static CYTHON_INLINE int __Pyx_PyObject_IsTrueAndDecref(PyObject* x) { - int retval; - if (unlikely(!x)) return -1; - retval = __Pyx_PyObject_IsTrue(x); - Py_DECREF(x); - return retval; -} -static PyObject* __Pyx_PyNumber_IntOrLongWrongResultType(PyObject* result, const char* type_name) { -#if PY_MAJOR_VERSION >= 3 - if (PyLong_Check(result)) { - if (PyErr_WarnFormat(PyExc_DeprecationWarning, 1, - "__int__ returned non-int (type %.200s). " - "The ability to return an instance of a strict subclass of int " - "is deprecated, and may be removed in a future version of Python.", - Py_TYPE(result)->tp_name)) { - Py_DECREF(result); - return NULL; - } - return result; - } -#endif - PyErr_Format(PyExc_TypeError, - "__%.4s__ returned non-%.4s (type %.200s)", - type_name, type_name, Py_TYPE(result)->tp_name); - Py_DECREF(result); - return NULL; -} -static CYTHON_INLINE PyObject* __Pyx_PyNumber_IntOrLong(PyObject* x) { -#if CYTHON_USE_TYPE_SLOTS - PyNumberMethods *m; -#endif - const char *name = NULL; - PyObject *res = NULL; -#if PY_MAJOR_VERSION < 3 - if (likely(PyInt_Check(x) || PyLong_Check(x))) -#else - if (likely(PyLong_Check(x))) -#endif - return __Pyx_NewRef(x); -#if CYTHON_USE_TYPE_SLOTS - m = Py_TYPE(x)->tp_as_number; - #if PY_MAJOR_VERSION < 3 - if (m && m->nb_int) { - name = "int"; - res = m->nb_int(x); - } - else if (m && m->nb_long) { - name = "long"; - res = m->nb_long(x); - } - #else - if (likely(m && m->nb_int)) { - name = "int"; - res = m->nb_int(x); - } - #endif -#else - if (!PyBytes_CheckExact(x) && !PyUnicode_CheckExact(x)) { - res = PyNumber_Int(x); - } -#endif - if (likely(res)) { -#if PY_MAJOR_VERSION < 3 - if (unlikely(!PyInt_Check(res) && !PyLong_Check(res))) { -#else - if (unlikely(!PyLong_CheckExact(res))) { -#endif - return __Pyx_PyNumber_IntOrLongWrongResultType(res, name); - } - } - else if (!PyErr_Occurred()) { - PyErr_SetString(PyExc_TypeError, - "an integer is required"); - } - return res; -} -static CYTHON_INLINE Py_ssize_t __Pyx_PyIndex_AsSsize_t(PyObject* b) { - Py_ssize_t ival; - PyObject *x; -#if PY_MAJOR_VERSION < 3 - if (likely(PyInt_CheckExact(b))) { - if (sizeof(Py_ssize_t) >= sizeof(long)) - return PyInt_AS_LONG(b); - else - return PyInt_AsSsize_t(b); - } -#endif - if (likely(PyLong_CheckExact(b))) { - #if CYTHON_USE_PYLONG_INTERNALS - const digit* digits = ((PyLongObject*)b)->ob_digit; - const Py_ssize_t size = Py_SIZE(b); - if (likely(__Pyx_sst_abs(size) <= 1)) { - ival = likely(size) ? digits[0] : 0; - if (size == -1) ival = -ival; - return ival; - } else { - switch (size) { - case 2: - if (8 * sizeof(Py_ssize_t) > 2 * PyLong_SHIFT) { - return (Py_ssize_t) (((((size_t)digits[1]) << PyLong_SHIFT) | (size_t)digits[0])); - } - break; - case -2: - if (8 * sizeof(Py_ssize_t) > 2 * PyLong_SHIFT) { - return -(Py_ssize_t) (((((size_t)digits[1]) << PyLong_SHIFT) | (size_t)digits[0])); - } - break; - case 3: - if (8 * sizeof(Py_ssize_t) > 3 * PyLong_SHIFT) { - return (Py_ssize_t) (((((((size_t)digits[2]) << PyLong_SHIFT) | (size_t)digits[1]) << PyLong_SHIFT) | (size_t)digits[0])); - } - break; - case -3: - if (8 * sizeof(Py_ssize_t) > 3 * PyLong_SHIFT) { - return -(Py_ssize_t) (((((((size_t)digits[2]) << PyLong_SHIFT) | (size_t)digits[1]) << PyLong_SHIFT) | (size_t)digits[0])); - } - break; - case 4: - if (8 * sizeof(Py_ssize_t) > 4 * PyLong_SHIFT) { - return (Py_ssize_t) (((((((((size_t)digits[3]) << PyLong_SHIFT) | (size_t)digits[2]) << PyLong_SHIFT) | (size_t)digits[1]) << PyLong_SHIFT) | (size_t)digits[0])); - } - break; - case -4: - if (8 * sizeof(Py_ssize_t) > 4 * PyLong_SHIFT) { - return -(Py_ssize_t) (((((((((size_t)digits[3]) << PyLong_SHIFT) | (size_t)digits[2]) << PyLong_SHIFT) | (size_t)digits[1]) << PyLong_SHIFT) | (size_t)digits[0])); - } - break; - } - } - #endif - return PyLong_AsSsize_t(b); - } - x = PyNumber_Index(b); - if (!x) return -1; - ival = PyInt_AsSsize_t(x); - Py_DECREF(x); - return ival; -} -static CYTHON_INLINE PyObject * __Pyx_PyBool_FromLong(long b) { - return b ? __Pyx_NewRef(Py_True) : __Pyx_NewRef(Py_False); -} -static CYTHON_INLINE PyObject * __Pyx_PyInt_FromSize_t(size_t ival) { - return PyInt_FromSize_t(ival); -} - - -#endif /* Py_PYTHON_H */ diff --git a/python/pmercury/cython-bak/http_server.pyx b/python/pmercury/cython-bak/http_server.pyx deleted file mode 100644 index c585a7b9..00000000 --- a/python/pmercury/cython-bak/http_server.pyx +++ /dev/null @@ -1,155 +0,0 @@ -#cython: language_level=3, wraparound=False, cdivision=True, infer_types=True, initializedcheck=False, c_string_type=bytes, embedsignature=False - -""" - Copyright (c) 2019 Cisco Systems, Inc. All rights reserved. - License at https://github.com/cisco/mercury/blob/master/LICENSE -""" - -import os -import sys - -sys.path.append(os.path.dirname(os.path.abspath(__file__))) -sys.path.append(os.path.dirname(os.path.abspath(__file__))+'/../') -from pmercury.protocols.protocol import Protocol - - -class HTTP_Server(Protocol): - - def __init__(self, fp_database=None, config=None): - # populate fingerprint databases - self.fp_db = {} - - # configuration - HTTP_Server.all_headers = False - HTTP_Server.all_headers_and_data = False - if config == None or 'http_server' not in config: - HTTP_Server.static_names = set([b'appex-activity-id',b'cdnuuid',b'cf-ray',b'content-range',b'content-type', - b'date',b'etag',b'expires',b'flow_context',b'ms-cv',b'msregion',b'ms-requestid', - b'request-id',b'vary',b'x-amz-cf-pop',b'x-amz-request-id',b'x-azure-ref-originshield', - b'x-cache',b'x-cache-hits',b'x-ccc',b'x-diagnostic-s',b'x-feserver',b'x-hw', - b'x-msedge-ref',b'x-ocsp-responder-id',b'x-requestid',b'x-served-by',b'x-timer', - b'x-trace-context']) - HTTP_Server.static_names_and_values = set([b'access-control-allow-credentials',b'access-control-allow-headers', - b'access-control-allow-methods',b'access-control-expose-headers', - b'cache-control',b'connection',b'content-language',b'content-transfer-encoding', - b'p3p',b'pragma',b'server',b'strict-transport-security',b'x-aspnetmvc-version', - b'x-aspnet-version',b'x-cid',b'x-ms-version',b'x-xss-protection']) - HTTP_Server.headers_data = [0,1,2] - HTTP_Server.contextual_data = {b'via':'via'} - else: - HTTP_Server.static_names = set([]) - HTTP_Server.static_names_and_values = set([]) - HTTP_Server.headers_data = [] - HTTP_Server.contextual_data = {} - if 'static_names' in config['http_server']: - if config['http_server']['static_names'] == ['*']: - HTTP_Server.all_headers = True - HTTP_Server.static_names = set(map(lambda x: x.encode(), config['http_server']['static_names'])) - if 'static_names_and_values' in config['http_server']: - if config['http_server']['static_names_and_values'] == ['*']: - HTTP_Server.all_headers_and_data = True - HTTP_Server.static_names_and_values = set(map(lambda x: x.encode(), config['http_server']['static_names_and_values'])) - if 'preamble' in config['http_server']: - if 'version' in config['http_server']['preamble']: - HTTP_Server.headers_data.append(0) - if 'code' in config['http_server']['preamble']: - HTTP_Server.headers_data.append(1) - if 'reason' in config['http_server']['preamble']: - HTTP_Server.headers_data.append(2) - if '*' in config['http_server']['preamble']: - HTTP_Server.headers_data = [0,1,2] - if 'context' in config['http_server']: - for c in config['http_server']['context']: - HTTP_Server.contextual_data[c.encode()] = c.lower().replace('-','_') - - - @staticmethod - def proto_identify(data, offset, data_len): - if data_len-offset < 16: - return False - if (data[offset] == 72 and - data[offset+1] == 84 and - data[offset+2] == 84 and - data[offset+3] == 80 and - data[offset+4] == 47 and - data[offset+5] == 49): - return True - return False - - - @staticmethod - def fingerprint(bytes data, unsigned int offset, unsigned int data_len): - cdef list t_ = data[offset:].split(b'\x0d\x0a', 1) - cdef list response = t_[0].split(b'\x20',2) - if len(response) < 2: - return None, None - - cdef list c = [] - for rh in HTTP_Server.headers_data: - try: - c.append('(%s)' % response[rh].hex()) - except IndexError: - c.append('()') - - if len(t_) == 1: - return ''.join(c), None - - cdef list headers = t_[1].split(b'\x0d\x0a') - if headers[0] == '': - headers = headers[1:] - cdef bint http_ah = HTTP_Server.all_headers - cdef bint http_ahd = HTTP_Server.all_headers_and_data - cdef set http_sn = HTTP_Server.static_names - cdef set http_snv = HTTP_Server.static_names_and_values - cdef dict http_ctx = HTTP_Server.contextual_data - cdef str h_c - context = [] - for h_ in headers: - if h_ == b'': - break - t0_ = h_.split(b'\x3a\x20',1)[0] - t0_lower = t0_.lower() - - h_c = '' - if http_ahd: - h_c = h_.hex() - elif t0_lower in http_snv: - h_c = h_.hex() - elif t0_lower in http_sn: - h_c = t0_.hex() - elif http_ah: - h_c = t0_.hex() - - if h_c != '': - c.append('(%s)' % h_c) - if t0_lower in http_ctx: - if b'\x3a\x20' in h_: - try: - context.append({'name':http_ctx[t0_lower], 'data':h_.split(b'\x3a\x20',1)[1].decode()}) - except UnicodeDecodeError: - context.append({'name':http_ctx[t0_lower], 'data':h_.split(b'\x3a\x20',1)[1].hex()}) - else: - context.append({'name':http_ctx[t0_lower], 'data':''}) - - return ''.join(c), context - - - def get_human_readable(self, fp_str_): - t_ = [bytes.fromhex(x[1:]) for x in fp_str_.split(')')[:-1]] - try: - fp_h = [{'version':t_[0].decode()},{'code':t_[1].decode()},{'response':t_[2].decode()}] - except: - fp_h = [{'version':t_[0].hex()},{'code':t_[1].hex()},{'response':t_[2].hex()}] - for i in range(3, len(t_)-1): - field = t_[i].split(b': ') - if len(field) == 2: - try: - fp_h.append({field[0].decode(): field[1].decode()}) - except: - fp_h.append({field[0].hex(): field[1].hex()}) - else: - try: - fp_h.append({field[0].decode(): ''}) - except: - fp_h.append({field[0].hex(): ''}) - return fp_h diff --git a/python/pmercury/cython-bak/packet_proc.c b/python/pmercury/cython-bak/packet_proc.c deleted file mode 100644 index efca3de8..00000000 --- a/python/pmercury/cython-bak/packet_proc.c +++ /dev/null @@ -1,7609 +0,0 @@ -/* Generated by Cython 0.29.14 */ - -#define PY_SSIZE_T_CLEAN -#include "Python.h" -#ifndef Py_PYTHON_H - #error Python headers needed to compile C extensions, please install development version of Python. -#elif PY_VERSION_HEX < 0x02060000 || (0x03000000 <= PY_VERSION_HEX && PY_VERSION_HEX < 0x03030000) - #error Cython requires Python 2.6+ or Python 3.3+. -#else -#define CYTHON_ABI "0_29_14" -#define CYTHON_HEX_VERSION 0x001D0EF0 -#define CYTHON_FUTURE_DIVISION 1 -#include -#ifndef offsetof - #define offsetof(type, member) ( (size_t) & ((type*)0) -> member ) -#endif -#if !defined(WIN32) && !defined(MS_WINDOWS) - #ifndef __stdcall - #define __stdcall - #endif - #ifndef __cdecl - #define __cdecl - #endif - #ifndef __fastcall - #define __fastcall - #endif -#endif -#ifndef DL_IMPORT - #define DL_IMPORT(t) t -#endif -#ifndef DL_EXPORT - #define DL_EXPORT(t) t -#endif -#define __PYX_COMMA , -#ifndef HAVE_LONG_LONG - #if PY_VERSION_HEX >= 0x02070000 - #define HAVE_LONG_LONG - #endif -#endif -#ifndef PY_LONG_LONG - #define PY_LONG_LONG LONG_LONG -#endif -#ifndef Py_HUGE_VAL - #define Py_HUGE_VAL HUGE_VAL -#endif -#ifdef PYPY_VERSION - #define CYTHON_COMPILING_IN_PYPY 1 - #define CYTHON_COMPILING_IN_PYSTON 0 - #define CYTHON_COMPILING_IN_CPYTHON 0 - #undef CYTHON_USE_TYPE_SLOTS - #define CYTHON_USE_TYPE_SLOTS 0 - #undef CYTHON_USE_PYTYPE_LOOKUP - #define CYTHON_USE_PYTYPE_LOOKUP 0 - #if PY_VERSION_HEX < 0x03050000 - #undef CYTHON_USE_ASYNC_SLOTS - #define CYTHON_USE_ASYNC_SLOTS 0 - #elif !defined(CYTHON_USE_ASYNC_SLOTS) - #define CYTHON_USE_ASYNC_SLOTS 1 - #endif - #undef CYTHON_USE_PYLIST_INTERNALS - #define CYTHON_USE_PYLIST_INTERNALS 0 - #undef CYTHON_USE_UNICODE_INTERNALS - #define CYTHON_USE_UNICODE_INTERNALS 0 - #undef CYTHON_USE_UNICODE_WRITER - #define CYTHON_USE_UNICODE_WRITER 0 - #undef CYTHON_USE_PYLONG_INTERNALS - #define CYTHON_USE_PYLONG_INTERNALS 0 - #undef CYTHON_AVOID_BORROWED_REFS - #define CYTHON_AVOID_BORROWED_REFS 1 - #undef CYTHON_ASSUME_SAFE_MACROS - #define CYTHON_ASSUME_SAFE_MACROS 0 - #undef CYTHON_UNPACK_METHODS - #define CYTHON_UNPACK_METHODS 0 - #undef CYTHON_FAST_THREAD_STATE - #define CYTHON_FAST_THREAD_STATE 0 - #undef CYTHON_FAST_PYCALL - #define CYTHON_FAST_PYCALL 0 - #undef CYTHON_PEP489_MULTI_PHASE_INIT - #define CYTHON_PEP489_MULTI_PHASE_INIT 0 - #undef CYTHON_USE_TP_FINALIZE - #define CYTHON_USE_TP_FINALIZE 0 - #undef CYTHON_USE_DICT_VERSIONS - #define CYTHON_USE_DICT_VERSIONS 0 - #undef CYTHON_USE_EXC_INFO_STACK - #define CYTHON_USE_EXC_INFO_STACK 0 -#elif defined(PYSTON_VERSION) - #define CYTHON_COMPILING_IN_PYPY 0 - #define CYTHON_COMPILING_IN_PYSTON 1 - #define CYTHON_COMPILING_IN_CPYTHON 0 - #ifndef CYTHON_USE_TYPE_SLOTS - #define CYTHON_USE_TYPE_SLOTS 1 - #endif - #undef CYTHON_USE_PYTYPE_LOOKUP - #define CYTHON_USE_PYTYPE_LOOKUP 0 - #undef CYTHON_USE_ASYNC_SLOTS - #define CYTHON_USE_ASYNC_SLOTS 0 - #undef CYTHON_USE_PYLIST_INTERNALS - #define CYTHON_USE_PYLIST_INTERNALS 0 - #ifndef CYTHON_USE_UNICODE_INTERNALS - #define CYTHON_USE_UNICODE_INTERNALS 1 - #endif - #undef CYTHON_USE_UNICODE_WRITER - #define CYTHON_USE_UNICODE_WRITER 0 - #undef CYTHON_USE_PYLONG_INTERNALS - #define CYTHON_USE_PYLONG_INTERNALS 0 - #ifndef CYTHON_AVOID_BORROWED_REFS - #define CYTHON_AVOID_BORROWED_REFS 0 - #endif - #ifndef CYTHON_ASSUME_SAFE_MACROS - #define CYTHON_ASSUME_SAFE_MACROS 1 - #endif - #ifndef CYTHON_UNPACK_METHODS - #define CYTHON_UNPACK_METHODS 1 - #endif - #undef CYTHON_FAST_THREAD_STATE - #define CYTHON_FAST_THREAD_STATE 0 - #undef CYTHON_FAST_PYCALL - #define CYTHON_FAST_PYCALL 0 - #undef CYTHON_PEP489_MULTI_PHASE_INIT - #define CYTHON_PEP489_MULTI_PHASE_INIT 0 - #undef CYTHON_USE_TP_FINALIZE - #define CYTHON_USE_TP_FINALIZE 0 - #undef CYTHON_USE_DICT_VERSIONS - #define CYTHON_USE_DICT_VERSIONS 0 - #undef CYTHON_USE_EXC_INFO_STACK - #define CYTHON_USE_EXC_INFO_STACK 0 -#else - #define CYTHON_COMPILING_IN_PYPY 0 - #define CYTHON_COMPILING_IN_PYSTON 0 - #define CYTHON_COMPILING_IN_CPYTHON 1 - #ifndef CYTHON_USE_TYPE_SLOTS - #define CYTHON_USE_TYPE_SLOTS 1 - #endif - #if PY_VERSION_HEX < 0x02070000 - #undef CYTHON_USE_PYTYPE_LOOKUP - #define CYTHON_USE_PYTYPE_LOOKUP 0 - #elif !defined(CYTHON_USE_PYTYPE_LOOKUP) - #define CYTHON_USE_PYTYPE_LOOKUP 1 - #endif - #if PY_MAJOR_VERSION < 3 - #undef CYTHON_USE_ASYNC_SLOTS - #define CYTHON_USE_ASYNC_SLOTS 0 - #elif !defined(CYTHON_USE_ASYNC_SLOTS) - #define CYTHON_USE_ASYNC_SLOTS 1 - #endif - #if PY_VERSION_HEX < 0x02070000 - #undef CYTHON_USE_PYLONG_INTERNALS - #define CYTHON_USE_PYLONG_INTERNALS 0 - #elif !defined(CYTHON_USE_PYLONG_INTERNALS) - #define CYTHON_USE_PYLONG_INTERNALS 1 - #endif - #ifndef CYTHON_USE_PYLIST_INTERNALS - #define CYTHON_USE_PYLIST_INTERNALS 1 - #endif - #ifndef CYTHON_USE_UNICODE_INTERNALS - #define CYTHON_USE_UNICODE_INTERNALS 1 - #endif - #if PY_VERSION_HEX < 0x030300F0 - #undef CYTHON_USE_UNICODE_WRITER - #define CYTHON_USE_UNICODE_WRITER 0 - #elif !defined(CYTHON_USE_UNICODE_WRITER) - #define CYTHON_USE_UNICODE_WRITER 1 - #endif - #ifndef CYTHON_AVOID_BORROWED_REFS - #define CYTHON_AVOID_BORROWED_REFS 0 - #endif - #ifndef CYTHON_ASSUME_SAFE_MACROS - #define CYTHON_ASSUME_SAFE_MACROS 1 - #endif - #ifndef CYTHON_UNPACK_METHODS - #define CYTHON_UNPACK_METHODS 1 - #endif - #ifndef CYTHON_FAST_THREAD_STATE - #define CYTHON_FAST_THREAD_STATE 1 - #endif - #ifndef CYTHON_FAST_PYCALL - #define CYTHON_FAST_PYCALL 1 - #endif - #ifndef CYTHON_PEP489_MULTI_PHASE_INIT - #define CYTHON_PEP489_MULTI_PHASE_INIT (PY_VERSION_HEX >= 0x03050000) - #endif - #ifndef CYTHON_USE_TP_FINALIZE - #define CYTHON_USE_TP_FINALIZE (PY_VERSION_HEX >= 0x030400a1) - #endif - #ifndef CYTHON_USE_DICT_VERSIONS - #define CYTHON_USE_DICT_VERSIONS (PY_VERSION_HEX >= 0x030600B1) - #endif - #ifndef CYTHON_USE_EXC_INFO_STACK - #define CYTHON_USE_EXC_INFO_STACK (PY_VERSION_HEX >= 0x030700A3) - #endif -#endif -#if !defined(CYTHON_FAST_PYCCALL) -#define CYTHON_FAST_PYCCALL (CYTHON_FAST_PYCALL && PY_VERSION_HEX >= 0x030600B1) -#endif -#if CYTHON_USE_PYLONG_INTERNALS - #include "longintrepr.h" - #undef SHIFT - #undef BASE - #undef MASK - #ifdef SIZEOF_VOID_P - enum { __pyx_check_sizeof_voidp = 1 / (int)(SIZEOF_VOID_P == sizeof(void*)) }; - #endif -#endif -#ifndef __has_attribute - #define __has_attribute(x) 0 -#endif -#ifndef __has_cpp_attribute - #define __has_cpp_attribute(x) 0 -#endif -#ifndef CYTHON_RESTRICT - #if defined(__GNUC__) - #define CYTHON_RESTRICT __restrict__ - #elif defined(_MSC_VER) && _MSC_VER >= 1400 - #define CYTHON_RESTRICT __restrict - #elif defined (__STDC_VERSION__) && __STDC_VERSION__ >= 199901L - #define CYTHON_RESTRICT restrict - #else - #define CYTHON_RESTRICT - #endif -#endif -#ifndef CYTHON_UNUSED -# if defined(__GNUC__) -# if !(defined(__cplusplus)) || (__GNUC__ > 3 || (__GNUC__ == 3 && __GNUC_MINOR__ >= 4)) -# define CYTHON_UNUSED __attribute__ ((__unused__)) -# else -# define CYTHON_UNUSED -# endif -# elif defined(__ICC) || (defined(__INTEL_COMPILER) && !defined(_MSC_VER)) -# define CYTHON_UNUSED __attribute__ ((__unused__)) -# else -# define CYTHON_UNUSED -# endif -#endif -#ifndef CYTHON_MAYBE_UNUSED_VAR -# if defined(__cplusplus) - template void CYTHON_MAYBE_UNUSED_VAR( const T& ) { } -# else -# define CYTHON_MAYBE_UNUSED_VAR(x) (void)(x) -# endif -#endif -#ifndef CYTHON_NCP_UNUSED -# if CYTHON_COMPILING_IN_CPYTHON -# define CYTHON_NCP_UNUSED -# else -# define CYTHON_NCP_UNUSED CYTHON_UNUSED -# endif -#endif -#define __Pyx_void_to_None(void_result) ((void)(void_result), Py_INCREF(Py_None), Py_None) -#ifdef _MSC_VER - #ifndef _MSC_STDINT_H_ - #if _MSC_VER < 1300 - typedef unsigned char uint8_t; - typedef unsigned int uint32_t; - #else - typedef unsigned __int8 uint8_t; - typedef unsigned __int32 uint32_t; - #endif - #endif -#else - #include -#endif -#ifndef CYTHON_FALLTHROUGH - #if defined(__cplusplus) && __cplusplus >= 201103L - #if __has_cpp_attribute(fallthrough) - #define CYTHON_FALLTHROUGH [[fallthrough]] - #elif __has_cpp_attribute(clang::fallthrough) - #define CYTHON_FALLTHROUGH [[clang::fallthrough]] - #elif __has_cpp_attribute(gnu::fallthrough) - #define CYTHON_FALLTHROUGH [[gnu::fallthrough]] - #endif - #endif - #ifndef CYTHON_FALLTHROUGH - #if __has_attribute(fallthrough) - #define CYTHON_FALLTHROUGH __attribute__((fallthrough)) - #else - #define CYTHON_FALLTHROUGH - #endif - #endif - #if defined(__clang__ ) && defined(__apple_build_version__) - #if __apple_build_version__ < 7000000 - #undef CYTHON_FALLTHROUGH - #define CYTHON_FALLTHROUGH - #endif - #endif -#endif - -#ifndef CYTHON_INLINE - #if defined(__clang__) - #define CYTHON_INLINE __inline__ __attribute__ ((__unused__)) - #elif defined(__GNUC__) - #define CYTHON_INLINE __inline__ - #elif defined(_MSC_VER) - #define CYTHON_INLINE __inline - #elif defined (__STDC_VERSION__) && __STDC_VERSION__ >= 199901L - #define CYTHON_INLINE inline - #else - #define CYTHON_INLINE - #endif -#endif - -#if CYTHON_COMPILING_IN_PYPY && PY_VERSION_HEX < 0x02070600 && !defined(Py_OptimizeFlag) - #define Py_OptimizeFlag 0 -#endif -#define __PYX_BUILD_PY_SSIZE_T "n" -#define CYTHON_FORMAT_SSIZE_T "z" -#if PY_MAJOR_VERSION < 3 - #define __Pyx_BUILTIN_MODULE_NAME "__builtin__" - #define __Pyx_PyCode_New(a, k, l, s, f, code, c, n, v, fv, cell, fn, name, fline, lnos)\ - PyCode_New(a+k, l, s, f, code, c, n, v, fv, cell, fn, name, fline, lnos) - #define __Pyx_DefaultClassType PyClass_Type -#else - #define __Pyx_BUILTIN_MODULE_NAME "builtins" -#if PY_VERSION_HEX >= 0x030800A4 && PY_VERSION_HEX < 0x030800B2 - #define __Pyx_PyCode_New(a, k, l, s, f, code, c, n, v, fv, cell, fn, name, fline, lnos)\ - PyCode_New(a, 0, k, l, s, f, code, c, n, v, fv, cell, fn, name, fline, lnos) -#else - #define __Pyx_PyCode_New(a, k, l, s, f, code, c, n, v, fv, cell, fn, name, fline, lnos)\ - PyCode_New(a, k, l, s, f, code, c, n, v, fv, cell, fn, name, fline, lnos) -#endif - #define __Pyx_DefaultClassType PyType_Type -#endif -#ifndef Py_TPFLAGS_CHECKTYPES - #define Py_TPFLAGS_CHECKTYPES 0 -#endif -#ifndef Py_TPFLAGS_HAVE_INDEX - #define Py_TPFLAGS_HAVE_INDEX 0 -#endif -#ifndef Py_TPFLAGS_HAVE_NEWBUFFER - #define Py_TPFLAGS_HAVE_NEWBUFFER 0 -#endif -#ifndef Py_TPFLAGS_HAVE_FINALIZE - #define Py_TPFLAGS_HAVE_FINALIZE 0 -#endif -#ifndef METH_STACKLESS - #define METH_STACKLESS 0 -#endif -#if PY_VERSION_HEX <= 0x030700A3 || !defined(METH_FASTCALL) - #ifndef METH_FASTCALL - #define METH_FASTCALL 0x80 - #endif - typedef PyObject *(*__Pyx_PyCFunctionFast) (PyObject *self, PyObject *const *args, Py_ssize_t nargs); - typedef PyObject *(*__Pyx_PyCFunctionFastWithKeywords) (PyObject *self, PyObject *const *args, - Py_ssize_t nargs, PyObject *kwnames); -#else - #define __Pyx_PyCFunctionFast _PyCFunctionFast - #define __Pyx_PyCFunctionFastWithKeywords _PyCFunctionFastWithKeywords -#endif -#if CYTHON_FAST_PYCCALL -#define __Pyx_PyFastCFunction_Check(func)\ - ((PyCFunction_Check(func) && (METH_FASTCALL == (PyCFunction_GET_FLAGS(func) & ~(METH_CLASS | METH_STATIC | METH_COEXIST | METH_KEYWORDS | METH_STACKLESS))))) -#else -#define __Pyx_PyFastCFunction_Check(func) 0 -#endif -#if CYTHON_COMPILING_IN_PYPY && !defined(PyObject_Malloc) - #define PyObject_Malloc(s) PyMem_Malloc(s) - #define PyObject_Free(p) PyMem_Free(p) - #define PyObject_Realloc(p) PyMem_Realloc(p) -#endif -#if CYTHON_COMPILING_IN_CPYTHON && PY_VERSION_HEX < 0x030400A1 - #define PyMem_RawMalloc(n) PyMem_Malloc(n) - #define PyMem_RawRealloc(p, n) PyMem_Realloc(p, n) - #define PyMem_RawFree(p) PyMem_Free(p) -#endif -#if CYTHON_COMPILING_IN_PYSTON - #define __Pyx_PyCode_HasFreeVars(co) PyCode_HasFreeVars(co) - #define __Pyx_PyFrame_SetLineNumber(frame, lineno) PyFrame_SetLineNumber(frame, lineno) -#else - #define __Pyx_PyCode_HasFreeVars(co) (PyCode_GetNumFree(co) > 0) - #define __Pyx_PyFrame_SetLineNumber(frame, lineno) (frame)->f_lineno = (lineno) -#endif -#if !CYTHON_FAST_THREAD_STATE || PY_VERSION_HEX < 0x02070000 - #define __Pyx_PyThreadState_Current PyThreadState_GET() -#elif PY_VERSION_HEX >= 0x03060000 - #define __Pyx_PyThreadState_Current _PyThreadState_UncheckedGet() -#elif PY_VERSION_HEX >= 0x03000000 - #define __Pyx_PyThreadState_Current PyThreadState_GET() -#else - #define __Pyx_PyThreadState_Current _PyThreadState_Current -#endif -#if PY_VERSION_HEX < 0x030700A2 && !defined(PyThread_tss_create) && !defined(Py_tss_NEEDS_INIT) -#include "pythread.h" -#define Py_tss_NEEDS_INIT 0 -typedef int Py_tss_t; -static CYTHON_INLINE int PyThread_tss_create(Py_tss_t *key) { - *key = PyThread_create_key(); - return 0; -} -static CYTHON_INLINE Py_tss_t * PyThread_tss_alloc(void) { - Py_tss_t *key = (Py_tss_t *)PyObject_Malloc(sizeof(Py_tss_t)); - *key = Py_tss_NEEDS_INIT; - return key; -} -static CYTHON_INLINE void PyThread_tss_free(Py_tss_t *key) { - PyObject_Free(key); -} -static CYTHON_INLINE int PyThread_tss_is_created(Py_tss_t *key) { - return *key != Py_tss_NEEDS_INIT; -} -static CYTHON_INLINE void PyThread_tss_delete(Py_tss_t *key) { - PyThread_delete_key(*key); - *key = Py_tss_NEEDS_INIT; -} -static CYTHON_INLINE int PyThread_tss_set(Py_tss_t *key, void *value) { - return PyThread_set_key_value(*key, value); -} -static CYTHON_INLINE void * PyThread_tss_get(Py_tss_t *key) { - return PyThread_get_key_value(*key); -} -#endif -#if CYTHON_COMPILING_IN_CPYTHON || defined(_PyDict_NewPresized) -#define __Pyx_PyDict_NewPresized(n) ((n <= 8) ? PyDict_New() : _PyDict_NewPresized(n)) -#else -#define __Pyx_PyDict_NewPresized(n) PyDict_New() -#endif -#if PY_MAJOR_VERSION >= 3 || CYTHON_FUTURE_DIVISION - #define __Pyx_PyNumber_Divide(x,y) PyNumber_TrueDivide(x,y) - #define __Pyx_PyNumber_InPlaceDivide(x,y) PyNumber_InPlaceTrueDivide(x,y) -#else - #define __Pyx_PyNumber_Divide(x,y) PyNumber_Divide(x,y) - #define __Pyx_PyNumber_InPlaceDivide(x,y) PyNumber_InPlaceDivide(x,y) -#endif -#if CYTHON_COMPILING_IN_CPYTHON && PY_VERSION_HEX >= 0x030500A1 && CYTHON_USE_UNICODE_INTERNALS -#define __Pyx_PyDict_GetItemStr(dict, name) _PyDict_GetItem_KnownHash(dict, name, ((PyASCIIObject *) name)->hash) -#else -#define __Pyx_PyDict_GetItemStr(dict, name) PyDict_GetItem(dict, name) -#endif -#if PY_VERSION_HEX > 0x03030000 && defined(PyUnicode_KIND) - #define CYTHON_PEP393_ENABLED 1 - #define __Pyx_PyUnicode_READY(op) (likely(PyUnicode_IS_READY(op)) ?\ - 0 : _PyUnicode_Ready((PyObject *)(op))) - #define __Pyx_PyUnicode_GET_LENGTH(u) PyUnicode_GET_LENGTH(u) - #define __Pyx_PyUnicode_READ_CHAR(u, i) PyUnicode_READ_CHAR(u, i) - #define __Pyx_PyUnicode_MAX_CHAR_VALUE(u) PyUnicode_MAX_CHAR_VALUE(u) - #define __Pyx_PyUnicode_KIND(u) PyUnicode_KIND(u) - #define __Pyx_PyUnicode_DATA(u) PyUnicode_DATA(u) - #define __Pyx_PyUnicode_READ(k, d, i) PyUnicode_READ(k, d, i) - #define __Pyx_PyUnicode_WRITE(k, d, i, ch) PyUnicode_WRITE(k, d, i, ch) - #define __Pyx_PyUnicode_IS_TRUE(u) (0 != (likely(PyUnicode_IS_READY(u)) ? PyUnicode_GET_LENGTH(u) : PyUnicode_GET_SIZE(u))) -#else - #define CYTHON_PEP393_ENABLED 0 - #define PyUnicode_1BYTE_KIND 1 - #define PyUnicode_2BYTE_KIND 2 - #define PyUnicode_4BYTE_KIND 4 - #define __Pyx_PyUnicode_READY(op) (0) - #define __Pyx_PyUnicode_GET_LENGTH(u) PyUnicode_GET_SIZE(u) - #define __Pyx_PyUnicode_READ_CHAR(u, i) ((Py_UCS4)(PyUnicode_AS_UNICODE(u)[i])) - #define __Pyx_PyUnicode_MAX_CHAR_VALUE(u) ((sizeof(Py_UNICODE) == 2) ? 65535 : 1114111) - #define __Pyx_PyUnicode_KIND(u) (sizeof(Py_UNICODE)) - #define __Pyx_PyUnicode_DATA(u) ((void*)PyUnicode_AS_UNICODE(u)) - #define __Pyx_PyUnicode_READ(k, d, i) ((void)(k), (Py_UCS4)(((Py_UNICODE*)d)[i])) - #define __Pyx_PyUnicode_WRITE(k, d, i, ch) (((void)(k)), ((Py_UNICODE*)d)[i] = ch) - #define __Pyx_PyUnicode_IS_TRUE(u) (0 != PyUnicode_GET_SIZE(u)) -#endif -#if CYTHON_COMPILING_IN_PYPY - #define __Pyx_PyUnicode_Concat(a, b) PyNumber_Add(a, b) - #define __Pyx_PyUnicode_ConcatSafe(a, b) PyNumber_Add(a, b) -#else - #define __Pyx_PyUnicode_Concat(a, b) PyUnicode_Concat(a, b) - #define __Pyx_PyUnicode_ConcatSafe(a, b) ((unlikely((a) == Py_None) || unlikely((b) == Py_None)) ?\ - PyNumber_Add(a, b) : __Pyx_PyUnicode_Concat(a, b)) -#endif -#if CYTHON_COMPILING_IN_PYPY && !defined(PyUnicode_Contains) - #define PyUnicode_Contains(u, s) PySequence_Contains(u, s) -#endif -#if CYTHON_COMPILING_IN_PYPY && !defined(PyByteArray_Check) - #define PyByteArray_Check(obj) PyObject_TypeCheck(obj, &PyByteArray_Type) -#endif -#if CYTHON_COMPILING_IN_PYPY && !defined(PyObject_Format) - #define PyObject_Format(obj, fmt) PyObject_CallMethod(obj, "__format__", "O", fmt) -#endif -#define __Pyx_PyString_FormatSafe(a, b) ((unlikely((a) == Py_None || (PyString_Check(b) && !PyString_CheckExact(b)))) ? PyNumber_Remainder(a, b) : __Pyx_PyString_Format(a, b)) -#define __Pyx_PyUnicode_FormatSafe(a, b) ((unlikely((a) == Py_None || (PyUnicode_Check(b) && !PyUnicode_CheckExact(b)))) ? PyNumber_Remainder(a, b) : PyUnicode_Format(a, b)) -#if PY_MAJOR_VERSION >= 3 - #define __Pyx_PyString_Format(a, b) PyUnicode_Format(a, b) -#else - #define __Pyx_PyString_Format(a, b) PyString_Format(a, b) -#endif -#if PY_MAJOR_VERSION < 3 && !defined(PyObject_ASCII) - #define PyObject_ASCII(o) PyObject_Repr(o) -#endif -#if PY_MAJOR_VERSION >= 3 - #define PyBaseString_Type PyUnicode_Type - #define PyStringObject PyUnicodeObject - #define PyString_Type PyUnicode_Type - #define PyString_Check PyUnicode_Check - #define PyString_CheckExact PyUnicode_CheckExact - #define PyObject_Unicode PyObject_Str -#endif -#if PY_MAJOR_VERSION >= 3 - #define __Pyx_PyBaseString_Check(obj) PyUnicode_Check(obj) - #define __Pyx_PyBaseString_CheckExact(obj) PyUnicode_CheckExact(obj) -#else - #define __Pyx_PyBaseString_Check(obj) (PyString_Check(obj) || PyUnicode_Check(obj)) - #define __Pyx_PyBaseString_CheckExact(obj) (PyString_CheckExact(obj) || PyUnicode_CheckExact(obj)) -#endif -#ifndef PySet_CheckExact - #define PySet_CheckExact(obj) (Py_TYPE(obj) == &PySet_Type) -#endif -#if CYTHON_ASSUME_SAFE_MACROS - #define __Pyx_PySequence_SIZE(seq) Py_SIZE(seq) -#else - #define __Pyx_PySequence_SIZE(seq) PySequence_Size(seq) -#endif -#if PY_MAJOR_VERSION >= 3 - #define PyIntObject PyLongObject - #define PyInt_Type PyLong_Type - #define PyInt_Check(op) PyLong_Check(op) - #define PyInt_CheckExact(op) PyLong_CheckExact(op) - #define PyInt_FromString PyLong_FromString - #define PyInt_FromUnicode PyLong_FromUnicode - #define PyInt_FromLong PyLong_FromLong - #define PyInt_FromSize_t PyLong_FromSize_t - #define PyInt_FromSsize_t PyLong_FromSsize_t - #define PyInt_AsLong PyLong_AsLong - #define PyInt_AS_LONG PyLong_AS_LONG - #define PyInt_AsSsize_t PyLong_AsSsize_t - #define PyInt_AsUnsignedLongMask PyLong_AsUnsignedLongMask - #define PyInt_AsUnsignedLongLongMask PyLong_AsUnsignedLongLongMask - #define PyNumber_Int PyNumber_Long -#endif -#if PY_MAJOR_VERSION >= 3 - #define PyBoolObject PyLongObject -#endif -#if PY_MAJOR_VERSION >= 3 && CYTHON_COMPILING_IN_PYPY - #ifndef PyUnicode_InternFromString - #define PyUnicode_InternFromString(s) PyUnicode_FromString(s) - #endif -#endif -#if PY_VERSION_HEX < 0x030200A4 - typedef long Py_hash_t; - #define __Pyx_PyInt_FromHash_t PyInt_FromLong - #define __Pyx_PyInt_AsHash_t PyInt_AsLong -#else - #define __Pyx_PyInt_FromHash_t PyInt_FromSsize_t - #define __Pyx_PyInt_AsHash_t PyInt_AsSsize_t -#endif -#if PY_MAJOR_VERSION >= 3 - #define __Pyx_PyMethod_New(func, self, klass) ((self) ? PyMethod_New(func, self) : (Py_INCREF(func), func)) -#else - #define __Pyx_PyMethod_New(func, self, klass) PyMethod_New(func, self, klass) -#endif -#if CYTHON_USE_ASYNC_SLOTS - #if PY_VERSION_HEX >= 0x030500B1 - #define __Pyx_PyAsyncMethodsStruct PyAsyncMethods - #define __Pyx_PyType_AsAsync(obj) (Py_TYPE(obj)->tp_as_async) - #else - #define __Pyx_PyType_AsAsync(obj) ((__Pyx_PyAsyncMethodsStruct*) (Py_TYPE(obj)->tp_reserved)) - #endif -#else - #define __Pyx_PyType_AsAsync(obj) NULL -#endif -#ifndef __Pyx_PyAsyncMethodsStruct - typedef struct { - unaryfunc am_await; - unaryfunc am_aiter; - unaryfunc am_anext; - } __Pyx_PyAsyncMethodsStruct; -#endif - -#if defined(WIN32) || defined(MS_WINDOWS) - #define _USE_MATH_DEFINES -#endif -#include -#ifdef NAN -#define __PYX_NAN() ((float) NAN) -#else -static CYTHON_INLINE float __PYX_NAN() { - float value; - memset(&value, 0xFF, sizeof(value)); - return value; -} -#endif -#if defined(__CYGWIN__) && defined(_LDBL_EQ_DBL) -#define __Pyx_truncl trunc -#else -#define __Pyx_truncl truncl -#endif - - -#define __PYX_ERR(f_index, lineno, Ln_error) \ -{ \ - __pyx_filename = __pyx_f[f_index]; __pyx_lineno = lineno; __pyx_clineno = __LINE__; goto Ln_error; \ -} - -#ifndef __PYX_EXTERN_C - #ifdef __cplusplus - #define __PYX_EXTERN_C extern "C" - #else - #define __PYX_EXTERN_C extern - #endif -#endif - -#define __PYX_HAVE__pmercury__utils__packet_proc -#define __PYX_HAVE_API__pmercury__utils__packet_proc -/* Early includes */ -#include -#include "arpa/inet.h" -#ifdef _OPENMP -#include -#endif /* _OPENMP */ - -#if defined(PYREX_WITHOUT_ASSERTIONS) && !defined(CYTHON_WITHOUT_ASSERTIONS) -#define CYTHON_WITHOUT_ASSERTIONS -#endif - -typedef struct {PyObject **p; const char *s; const Py_ssize_t n; const char* encoding; - const char is_unicode; const char is_str; const char intern; } __Pyx_StringTabEntry; - -#define __PYX_DEFAULT_STRING_ENCODING_IS_ASCII 0 -#define __PYX_DEFAULT_STRING_ENCODING_IS_UTF8 0 -#define __PYX_DEFAULT_STRING_ENCODING_IS_DEFAULT (PY_MAJOR_VERSION >= 3 && __PYX_DEFAULT_STRING_ENCODING_IS_UTF8) -#define __PYX_DEFAULT_STRING_ENCODING "" -#define __Pyx_PyObject_FromString __Pyx_PyBytes_FromString -#define __Pyx_PyObject_FromStringAndSize __Pyx_PyBytes_FromStringAndSize -#define __Pyx_uchar_cast(c) ((unsigned char)c) -#define __Pyx_long_cast(x) ((long)x) -#define __Pyx_fits_Py_ssize_t(v, type, is_signed) (\ - (sizeof(type) < sizeof(Py_ssize_t)) ||\ - (sizeof(type) > sizeof(Py_ssize_t) &&\ - likely(v < (type)PY_SSIZE_T_MAX ||\ - v == (type)PY_SSIZE_T_MAX) &&\ - (!is_signed || likely(v > (type)PY_SSIZE_T_MIN ||\ - v == (type)PY_SSIZE_T_MIN))) ||\ - (sizeof(type) == sizeof(Py_ssize_t) &&\ - (is_signed || likely(v < (type)PY_SSIZE_T_MAX ||\ - v == (type)PY_SSIZE_T_MAX))) ) -static CYTHON_INLINE int __Pyx_is_valid_index(Py_ssize_t i, Py_ssize_t limit) { - return (size_t) i < (size_t) limit; -} -#if defined (__cplusplus) && __cplusplus >= 201103L - #include - #define __Pyx_sst_abs(value) std::abs(value) -#elif SIZEOF_INT >= SIZEOF_SIZE_T - #define __Pyx_sst_abs(value) abs(value) -#elif SIZEOF_LONG >= SIZEOF_SIZE_T - #define __Pyx_sst_abs(value) labs(value) -#elif defined (_MSC_VER) - #define __Pyx_sst_abs(value) ((Py_ssize_t)_abs64(value)) -#elif defined (__STDC_VERSION__) && __STDC_VERSION__ >= 199901L - #define __Pyx_sst_abs(value) llabs(value) -#elif defined (__GNUC__) - #define __Pyx_sst_abs(value) __builtin_llabs(value) -#else - #define __Pyx_sst_abs(value) ((value<0) ? -value : value) -#endif -static CYTHON_INLINE const char* __Pyx_PyObject_AsString(PyObject*); -static CYTHON_INLINE const char* __Pyx_PyObject_AsStringAndSize(PyObject*, Py_ssize_t* length); -#define __Pyx_PyByteArray_FromString(s) PyByteArray_FromStringAndSize((const char*)s, strlen((const char*)s)) -#define __Pyx_PyByteArray_FromStringAndSize(s, l) PyByteArray_FromStringAndSize((const char*)s, l) -#define __Pyx_PyBytes_FromString PyBytes_FromString -#define __Pyx_PyBytes_FromStringAndSize PyBytes_FromStringAndSize -static CYTHON_INLINE PyObject* __Pyx_PyUnicode_FromString(const char*); -#if PY_MAJOR_VERSION < 3 - #define __Pyx_PyStr_FromString __Pyx_PyBytes_FromString - #define __Pyx_PyStr_FromStringAndSize __Pyx_PyBytes_FromStringAndSize -#else - #define __Pyx_PyStr_FromString __Pyx_PyUnicode_FromString - #define __Pyx_PyStr_FromStringAndSize __Pyx_PyUnicode_FromStringAndSize -#endif -#define __Pyx_PyBytes_AsWritableString(s) ((char*) PyBytes_AS_STRING(s)) -#define __Pyx_PyBytes_AsWritableSString(s) ((signed char*) PyBytes_AS_STRING(s)) -#define __Pyx_PyBytes_AsWritableUString(s) ((unsigned char*) PyBytes_AS_STRING(s)) -#define __Pyx_PyBytes_AsString(s) ((const char*) PyBytes_AS_STRING(s)) -#define __Pyx_PyBytes_AsSString(s) ((const signed char*) PyBytes_AS_STRING(s)) -#define __Pyx_PyBytes_AsUString(s) ((const unsigned char*) PyBytes_AS_STRING(s)) -#define __Pyx_PyObject_AsWritableString(s) ((char*) __Pyx_PyObject_AsString(s)) -#define __Pyx_PyObject_AsWritableSString(s) ((signed char*) __Pyx_PyObject_AsString(s)) -#define __Pyx_PyObject_AsWritableUString(s) ((unsigned char*) __Pyx_PyObject_AsString(s)) -#define __Pyx_PyObject_AsSString(s) ((const signed char*) __Pyx_PyObject_AsString(s)) -#define __Pyx_PyObject_AsUString(s) ((const unsigned char*) __Pyx_PyObject_AsString(s)) -#define __Pyx_PyObject_FromCString(s) __Pyx_PyObject_FromString((const char*)s) -#define __Pyx_PyBytes_FromCString(s) __Pyx_PyBytes_FromString((const char*)s) -#define __Pyx_PyByteArray_FromCString(s) __Pyx_PyByteArray_FromString((const char*)s) -#define __Pyx_PyStr_FromCString(s) __Pyx_PyStr_FromString((const char*)s) -#define __Pyx_PyUnicode_FromCString(s) __Pyx_PyUnicode_FromString((const char*)s) -static CYTHON_INLINE size_t __Pyx_Py_UNICODE_strlen(const Py_UNICODE *u) { - const Py_UNICODE *u_end = u; - while (*u_end++) ; - return (size_t)(u_end - u - 1); -} -#define __Pyx_PyUnicode_FromUnicode(u) PyUnicode_FromUnicode(u, __Pyx_Py_UNICODE_strlen(u)) -#define __Pyx_PyUnicode_FromUnicodeAndLength PyUnicode_FromUnicode -#define __Pyx_PyUnicode_AsUnicode PyUnicode_AsUnicode -#define __Pyx_NewRef(obj) (Py_INCREF(obj), obj) -#define __Pyx_Owned_Py_None(b) __Pyx_NewRef(Py_None) -static CYTHON_INLINE PyObject * __Pyx_PyBool_FromLong(long b); -static CYTHON_INLINE int __Pyx_PyObject_IsTrue(PyObject*); -static CYTHON_INLINE int __Pyx_PyObject_IsTrueAndDecref(PyObject*); -static CYTHON_INLINE PyObject* __Pyx_PyNumber_IntOrLong(PyObject* x); -#define __Pyx_PySequence_Tuple(obj)\ - (likely(PyTuple_CheckExact(obj)) ? __Pyx_NewRef(obj) : PySequence_Tuple(obj)) -static CYTHON_INLINE Py_ssize_t __Pyx_PyIndex_AsSsize_t(PyObject*); -static CYTHON_INLINE PyObject * __Pyx_PyInt_FromSize_t(size_t); -#if CYTHON_ASSUME_SAFE_MACROS -#define __pyx_PyFloat_AsDouble(x) (PyFloat_CheckExact(x) ? PyFloat_AS_DOUBLE(x) : PyFloat_AsDouble(x)) -#else -#define __pyx_PyFloat_AsDouble(x) PyFloat_AsDouble(x) -#endif -#define __pyx_PyFloat_AsFloat(x) ((float) __pyx_PyFloat_AsDouble(x)) -#if PY_MAJOR_VERSION >= 3 -#define __Pyx_PyNumber_Int(x) (PyLong_CheckExact(x) ? __Pyx_NewRef(x) : PyNumber_Long(x)) -#else -#define __Pyx_PyNumber_Int(x) (PyInt_CheckExact(x) ? __Pyx_NewRef(x) : PyNumber_Int(x)) -#endif -#define __Pyx_PyNumber_Float(x) (PyFloat_CheckExact(x) ? __Pyx_NewRef(x) : PyNumber_Float(x)) -#if PY_MAJOR_VERSION < 3 && __PYX_DEFAULT_STRING_ENCODING_IS_ASCII -static int __Pyx_sys_getdefaultencoding_not_ascii; -static int __Pyx_init_sys_getdefaultencoding_params(void) { - PyObject* sys; - PyObject* default_encoding = NULL; - PyObject* ascii_chars_u = NULL; - PyObject* ascii_chars_b = NULL; - const char* default_encoding_c; - sys = PyImport_ImportModule("sys"); - if (!sys) goto bad; - default_encoding = PyObject_CallMethod(sys, (char*) "getdefaultencoding", NULL); - Py_DECREF(sys); - if (!default_encoding) goto bad; - default_encoding_c = PyBytes_AsString(default_encoding); - if (!default_encoding_c) goto bad; - if (strcmp(default_encoding_c, "ascii") == 0) { - __Pyx_sys_getdefaultencoding_not_ascii = 0; - } else { - char ascii_chars[128]; - int c; - for (c = 0; c < 128; c++) { - ascii_chars[c] = c; - } - __Pyx_sys_getdefaultencoding_not_ascii = 1; - ascii_chars_u = PyUnicode_DecodeASCII(ascii_chars, 128, NULL); - if (!ascii_chars_u) goto bad; - ascii_chars_b = PyUnicode_AsEncodedString(ascii_chars_u, default_encoding_c, NULL); - if (!ascii_chars_b || !PyBytes_Check(ascii_chars_b) || memcmp(ascii_chars, PyBytes_AS_STRING(ascii_chars_b), 128) != 0) { - PyErr_Format( - PyExc_ValueError, - "This module compiled with c_string_encoding=ascii, but default encoding '%.200s' is not a superset of ascii.", - default_encoding_c); - goto bad; - } - Py_DECREF(ascii_chars_u); - Py_DECREF(ascii_chars_b); - } - Py_DECREF(default_encoding); - return 0; -bad: - Py_XDECREF(default_encoding); - Py_XDECREF(ascii_chars_u); - Py_XDECREF(ascii_chars_b); - return -1; -} -#endif -#if __PYX_DEFAULT_STRING_ENCODING_IS_DEFAULT && PY_MAJOR_VERSION >= 3 -#define __Pyx_PyUnicode_FromStringAndSize(c_str, size) PyUnicode_DecodeUTF8(c_str, size, NULL) -#else -#define __Pyx_PyUnicode_FromStringAndSize(c_str, size) PyUnicode_Decode(c_str, size, __PYX_DEFAULT_STRING_ENCODING, NULL) -#if __PYX_DEFAULT_STRING_ENCODING_IS_DEFAULT -static char* __PYX_DEFAULT_STRING_ENCODING; -static int __Pyx_init_sys_getdefaultencoding_params(void) { - PyObject* sys; - PyObject* default_encoding = NULL; - char* default_encoding_c; - sys = PyImport_ImportModule("sys"); - if (!sys) goto bad; - default_encoding = PyObject_CallMethod(sys, (char*) (const char*) "getdefaultencoding", NULL); - Py_DECREF(sys); - if (!default_encoding) goto bad; - default_encoding_c = PyBytes_AsString(default_encoding); - if (!default_encoding_c) goto bad; - __PYX_DEFAULT_STRING_ENCODING = (char*) malloc(strlen(default_encoding_c) + 1); - if (!__PYX_DEFAULT_STRING_ENCODING) goto bad; - strcpy(__PYX_DEFAULT_STRING_ENCODING, default_encoding_c); - Py_DECREF(default_encoding); - return 0; -bad: - Py_XDECREF(default_encoding); - return -1; -} -#endif -#endif - - -/* Test for GCC > 2.95 */ -#if defined(__GNUC__) && (__GNUC__ > 2 || (__GNUC__ == 2 && (__GNUC_MINOR__ > 95))) - #define likely(x) __builtin_expect(!!(x), 1) - #define unlikely(x) __builtin_expect(!!(x), 0) -#else /* !__GNUC__ or GCC < 2.95 */ - #define likely(x) (x) - #define unlikely(x) (x) -#endif /* __GNUC__ */ -static CYTHON_INLINE void __Pyx_pretend_to_initialize(void* ptr) { (void)ptr; } - -static PyObject *__pyx_m = NULL; -static PyObject *__pyx_d; -static PyObject *__pyx_b; -static PyObject *__pyx_cython_runtime = NULL; -static PyObject *__pyx_empty_tuple; -static PyObject *__pyx_empty_bytes; -static PyObject *__pyx_empty_unicode; -static int __pyx_lineno; -static int __pyx_clineno = 0; -static const char * __pyx_cfilenm= __FILE__; -static const char *__pyx_filename; - - -static const char *__pyx_f[] = { - "pmercury/utils/packet_proc.pyx", -}; - -/*--- Type declarations ---*/ - -/* --- Runtime support code (head) --- */ -/* Refnanny.proto */ -#ifndef CYTHON_REFNANNY - #define CYTHON_REFNANNY 0 -#endif -#if CYTHON_REFNANNY - typedef struct { - void (*INCREF)(void*, PyObject*, int); - void (*DECREF)(void*, PyObject*, int); - void (*GOTREF)(void*, PyObject*, int); - void (*GIVEREF)(void*, PyObject*, int); - void* (*SetupContext)(const char*, int, const char*); - void (*FinishContext)(void**); - } __Pyx_RefNannyAPIStruct; - static __Pyx_RefNannyAPIStruct *__Pyx_RefNanny = NULL; - static __Pyx_RefNannyAPIStruct *__Pyx_RefNannyImportAPI(const char *modname); - #define __Pyx_RefNannyDeclarations void *__pyx_refnanny = NULL; -#ifdef WITH_THREAD - #define __Pyx_RefNannySetupContext(name, acquire_gil)\ - if (acquire_gil) {\ - PyGILState_STATE __pyx_gilstate_save = PyGILState_Ensure();\ - __pyx_refnanny = __Pyx_RefNanny->SetupContext((name), __LINE__, __FILE__);\ - PyGILState_Release(__pyx_gilstate_save);\ - } else {\ - __pyx_refnanny = __Pyx_RefNanny->SetupContext((name), __LINE__, __FILE__);\ - } -#else - #define __Pyx_RefNannySetupContext(name, acquire_gil)\ - __pyx_refnanny = __Pyx_RefNanny->SetupContext((name), __LINE__, __FILE__) -#endif - #define __Pyx_RefNannyFinishContext()\ - __Pyx_RefNanny->FinishContext(&__pyx_refnanny) - #define __Pyx_INCREF(r) __Pyx_RefNanny->INCREF(__pyx_refnanny, (PyObject *)(r), __LINE__) - #define __Pyx_DECREF(r) __Pyx_RefNanny->DECREF(__pyx_refnanny, (PyObject *)(r), __LINE__) - #define __Pyx_GOTREF(r) __Pyx_RefNanny->GOTREF(__pyx_refnanny, (PyObject *)(r), __LINE__) - #define __Pyx_GIVEREF(r) __Pyx_RefNanny->GIVEREF(__pyx_refnanny, (PyObject *)(r), __LINE__) - #define __Pyx_XINCREF(r) do { if((r) != NULL) {__Pyx_INCREF(r); }} while(0) - #define __Pyx_XDECREF(r) do { if((r) != NULL) {__Pyx_DECREF(r); }} while(0) - #define __Pyx_XGOTREF(r) do { if((r) != NULL) {__Pyx_GOTREF(r); }} while(0) - #define __Pyx_XGIVEREF(r) do { if((r) != NULL) {__Pyx_GIVEREF(r);}} while(0) -#else - #define __Pyx_RefNannyDeclarations - #define __Pyx_RefNannySetupContext(name, acquire_gil) - #define __Pyx_RefNannyFinishContext() - #define __Pyx_INCREF(r) Py_INCREF(r) - #define __Pyx_DECREF(r) Py_DECREF(r) - #define __Pyx_GOTREF(r) - #define __Pyx_GIVEREF(r) - #define __Pyx_XINCREF(r) Py_XINCREF(r) - #define __Pyx_XDECREF(r) Py_XDECREF(r) - #define __Pyx_XGOTREF(r) - #define __Pyx_XGIVEREF(r) -#endif -#define __Pyx_XDECREF_SET(r, v) do {\ - PyObject *tmp = (PyObject *) r;\ - r = v; __Pyx_XDECREF(tmp);\ - } while (0) -#define __Pyx_DECREF_SET(r, v) do {\ - PyObject *tmp = (PyObject *) r;\ - r = v; __Pyx_DECREF(tmp);\ - } while (0) -#define __Pyx_CLEAR(r) do { PyObject* tmp = ((PyObject*)(r)); r = NULL; __Pyx_DECREF(tmp);} while(0) -#define __Pyx_XCLEAR(r) do { if((r) != NULL) {PyObject* tmp = ((PyObject*)(r)); r = NULL; __Pyx_DECREF(tmp);}} while(0) - -/* RaiseArgTupleInvalid.proto */ -static void __Pyx_RaiseArgtupleInvalid(const char* func_name, int exact, - Py_ssize_t num_min, Py_ssize_t num_max, Py_ssize_t num_found); - -/* RaiseDoubleKeywords.proto */ -static void __Pyx_RaiseDoubleKeywordsError(const char* func_name, PyObject* kw_name); - -/* ParseKeywords.proto */ -static int __Pyx_ParseOptionalKeywords(PyObject *kwds, PyObject **argnames[],\ - PyObject *kwds2, PyObject *values[], Py_ssize_t num_pos_args,\ - const char* function_name); - -/* ArgTypeTest.proto */ -#define __Pyx_ArgTypeTest(obj, type, none_allowed, name, exact)\ - ((likely((Py_TYPE(obj) == type) | (none_allowed && (obj == Py_None)))) ? 1 :\ - __Pyx__ArgTypeTest(obj, type, name, exact)) -static int __Pyx__ArgTypeTest(PyObject *obj, PyTypeObject *type, const char *name, int exact); - -/* PyObjectGetAttrStr.proto */ -#if CYTHON_USE_TYPE_SLOTS -static CYTHON_INLINE PyObject* __Pyx_PyObject_GetAttrStr(PyObject* obj, PyObject* attr_name); -#else -#define __Pyx_PyObject_GetAttrStr(o,n) PyObject_GetAttr(o,n) -#endif - -/* GetBuiltinName.proto */ -static PyObject *__Pyx_GetBuiltinName(PyObject *name); - -/* PyDictVersioning.proto */ -#if CYTHON_USE_DICT_VERSIONS && CYTHON_USE_TYPE_SLOTS -#define __PYX_DICT_VERSION_INIT ((PY_UINT64_T) -1) -#define __PYX_GET_DICT_VERSION(dict) (((PyDictObject*)(dict))->ma_version_tag) -#define __PYX_UPDATE_DICT_CACHE(dict, value, cache_var, version_var)\ - (version_var) = __PYX_GET_DICT_VERSION(dict);\ - (cache_var) = (value); -#define __PYX_PY_DICT_LOOKUP_IF_MODIFIED(VAR, DICT, LOOKUP) {\ - static PY_UINT64_T __pyx_dict_version = 0;\ - static PyObject *__pyx_dict_cached_value = NULL;\ - if (likely(__PYX_GET_DICT_VERSION(DICT) == __pyx_dict_version)) {\ - (VAR) = __pyx_dict_cached_value;\ - } else {\ - (VAR) = __pyx_dict_cached_value = (LOOKUP);\ - __pyx_dict_version = __PYX_GET_DICT_VERSION(DICT);\ - }\ -} -static CYTHON_INLINE PY_UINT64_T __Pyx_get_tp_dict_version(PyObject *obj); -static CYTHON_INLINE PY_UINT64_T __Pyx_get_object_dict_version(PyObject *obj); -static CYTHON_INLINE int __Pyx_object_dict_version_matches(PyObject* obj, PY_UINT64_T tp_dict_version, PY_UINT64_T obj_dict_version); -#else -#define __PYX_GET_DICT_VERSION(dict) (0) -#define __PYX_UPDATE_DICT_CACHE(dict, value, cache_var, version_var) -#define __PYX_PY_DICT_LOOKUP_IF_MODIFIED(VAR, DICT, LOOKUP) (VAR) = (LOOKUP); -#endif - -/* GetModuleGlobalName.proto */ -#if CYTHON_USE_DICT_VERSIONS -#define __Pyx_GetModuleGlobalName(var, name) {\ - static PY_UINT64_T __pyx_dict_version = 0;\ - static PyObject *__pyx_dict_cached_value = NULL;\ - (var) = (likely(__pyx_dict_version == __PYX_GET_DICT_VERSION(__pyx_d))) ?\ - (likely(__pyx_dict_cached_value) ? __Pyx_NewRef(__pyx_dict_cached_value) : __Pyx_GetBuiltinName(name)) :\ - __Pyx__GetModuleGlobalName(name, &__pyx_dict_version, &__pyx_dict_cached_value);\ -} -#define __Pyx_GetModuleGlobalNameUncached(var, name) {\ - PY_UINT64_T __pyx_dict_version;\ - PyObject *__pyx_dict_cached_value;\ - (var) = __Pyx__GetModuleGlobalName(name, &__pyx_dict_version, &__pyx_dict_cached_value);\ -} -static PyObject *__Pyx__GetModuleGlobalName(PyObject *name, PY_UINT64_T *dict_version, PyObject **dict_cached_value); -#else -#define __Pyx_GetModuleGlobalName(var, name) (var) = __Pyx__GetModuleGlobalName(name) -#define __Pyx_GetModuleGlobalNameUncached(var, name) (var) = __Pyx__GetModuleGlobalName(name) -static CYTHON_INLINE PyObject *__Pyx__GetModuleGlobalName(PyObject *name); -#endif - -/* PyFunctionFastCall.proto */ -#if CYTHON_FAST_PYCALL -#define __Pyx_PyFunction_FastCall(func, args, nargs)\ - __Pyx_PyFunction_FastCallDict((func), (args), (nargs), NULL) -#if 1 || PY_VERSION_HEX < 0x030600B1 -static PyObject *__Pyx_PyFunction_FastCallDict(PyObject *func, PyObject **args, Py_ssize_t nargs, PyObject *kwargs); -#else -#define __Pyx_PyFunction_FastCallDict(func, args, nargs, kwargs) _PyFunction_FastCallDict(func, args, nargs, kwargs) -#endif -#define __Pyx_BUILD_ASSERT_EXPR(cond)\ - (sizeof(char [1 - 2*!(cond)]) - 1) -#ifndef Py_MEMBER_SIZE -#define Py_MEMBER_SIZE(type, member) sizeof(((type *)0)->member) -#endif - static size_t __pyx_pyframe_localsplus_offset = 0; - #include "frameobject.h" - #define __Pxy_PyFrame_Initialize_Offsets()\ - ((void)__Pyx_BUILD_ASSERT_EXPR(sizeof(PyFrameObject) == offsetof(PyFrameObject, f_localsplus) + Py_MEMBER_SIZE(PyFrameObject, f_localsplus)),\ - (void)(__pyx_pyframe_localsplus_offset = ((size_t)PyFrame_Type.tp_basicsize) - Py_MEMBER_SIZE(PyFrameObject, f_localsplus))) - #define __Pyx_PyFrame_GetLocalsplus(frame)\ - (assert(__pyx_pyframe_localsplus_offset), (PyObject **)(((char *)(frame)) + __pyx_pyframe_localsplus_offset)) -#endif - -/* PyCFunctionFastCall.proto */ -#if CYTHON_FAST_PYCCALL -static CYTHON_INLINE PyObject *__Pyx_PyCFunction_FastCall(PyObject *func, PyObject **args, Py_ssize_t nargs); -#else -#define __Pyx_PyCFunction_FastCall(func, args, nargs) (assert(0), NULL) -#endif - -/* PyObjectCall.proto */ -#if CYTHON_COMPILING_IN_CPYTHON -static CYTHON_INLINE PyObject* __Pyx_PyObject_Call(PyObject *func, PyObject *arg, PyObject *kw); -#else -#define __Pyx_PyObject_Call(func, arg, kw) PyObject_Call(func, arg, kw) -#endif - -/* RaiseTooManyValuesToUnpack.proto */ -static CYTHON_INLINE void __Pyx_RaiseTooManyValuesError(Py_ssize_t expected); - -/* RaiseNeedMoreValuesToUnpack.proto */ -static CYTHON_INLINE void __Pyx_RaiseNeedMoreValuesError(Py_ssize_t index); - -/* IterFinish.proto */ -static CYTHON_INLINE int __Pyx_IterFinish(void); - -/* UnpackItemEndCheck.proto */ -static int __Pyx_IternextUnpackEndCheck(PyObject *retval, Py_ssize_t expected); - -/* PyObjectFormatSimple.proto */ -#if CYTHON_COMPILING_IN_PYPY - #define __Pyx_PyObject_FormatSimple(s, f) (\ - likely(PyUnicode_CheckExact(s)) ? (Py_INCREF(s), s) :\ - PyObject_Format(s, f)) -#elif PY_MAJOR_VERSION < 3 - #define __Pyx_PyObject_FormatSimple(s, f) (\ - likely(PyUnicode_CheckExact(s)) ? (Py_INCREF(s), s) :\ - likely(PyString_CheckExact(s)) ? PyUnicode_FromEncodedObject(s, NULL, "strict") :\ - PyObject_Format(s, f)) -#elif CYTHON_USE_TYPE_SLOTS - #define __Pyx_PyObject_FormatSimple(s, f) (\ - likely(PyUnicode_CheckExact(s)) ? (Py_INCREF(s), s) :\ - likely(PyLong_CheckExact(s)) ? PyLong_Type.tp_str(s) :\ - likely(PyFloat_CheckExact(s)) ? PyFloat_Type.tp_str(s) :\ - PyObject_Format(s, f)) -#else - #define __Pyx_PyObject_FormatSimple(s, f) (\ - likely(PyUnicode_CheckExact(s)) ? (Py_INCREF(s), s) :\ - PyObject_Format(s, f)) -#endif - -/* IncludeStringH.proto */ -#include - -/* JoinPyUnicode.proto */ -static PyObject* __Pyx_PyUnicode_Join(PyObject* value_tuple, Py_ssize_t value_count, Py_ssize_t result_ulength, - Py_UCS4 max_char); - -/* PyObjectFormat.proto */ -#if CYTHON_USE_UNICODE_WRITER -static PyObject* __Pyx_PyObject_Format(PyObject* s, PyObject* f); -#else -#define __Pyx_PyObject_Format(s, f) PyObject_Format(s, f) -#endif - -/* None.proto */ -static CYTHON_INLINE void __Pyx_RaiseUnboundLocalError(const char *varname); - -/* BytesEquals.proto */ -static CYTHON_INLINE int __Pyx_PyBytes_Equals(PyObject* s1, PyObject* s2, int equals); - -/* UnicodeEquals.proto */ -static CYTHON_INLINE int __Pyx_PyUnicode_Equals(PyObject* s1, PyObject* s2, int equals); - -/* DictGetItem.proto */ -#if PY_MAJOR_VERSION >= 3 && !CYTHON_COMPILING_IN_PYPY -static PyObject *__Pyx_PyDict_GetItem(PyObject *d, PyObject* key); -#define __Pyx_PyObject_Dict_GetItem(obj, name)\ - (likely(PyDict_CheckExact(obj)) ?\ - __Pyx_PyDict_GetItem(obj, name) : PyObject_GetItem(obj, name)) -#else -#define __Pyx_PyDict_GetItem(d, key) PyObject_GetItem(d, key) -#define __Pyx_PyObject_Dict_GetItem(obj, name) PyObject_GetItem(obj, name) -#endif - -/* PyDictContains.proto */ -static CYTHON_INLINE int __Pyx_PyDict_ContainsTF(PyObject* item, PyObject* dict, int eq) { - int result = PyDict_Contains(dict, item); - return unlikely(result < 0) ? result : (result == (eq == Py_EQ)); -} - -/* Import.proto */ -static PyObject *__Pyx_Import(PyObject *name, PyObject *from_list, int level); - -/* ImportFrom.proto */ -static PyObject* __Pyx_ImportFrom(PyObject* module, PyObject* name); - -/* PyThreadStateGet.proto */ -#if CYTHON_FAST_THREAD_STATE -#define __Pyx_PyThreadState_declare PyThreadState *__pyx_tstate; -#define __Pyx_PyThreadState_assign __pyx_tstate = __Pyx_PyThreadState_Current; -#define __Pyx_PyErr_Occurred() __pyx_tstate->curexc_type -#else -#define __Pyx_PyThreadState_declare -#define __Pyx_PyThreadState_assign -#define __Pyx_PyErr_Occurred() PyErr_Occurred() -#endif - -/* PyErrFetchRestore.proto */ -#if CYTHON_FAST_THREAD_STATE -#define __Pyx_PyErr_Clear() __Pyx_ErrRestore(NULL, NULL, NULL) -#define __Pyx_ErrRestoreWithState(type, value, tb) __Pyx_ErrRestoreInState(PyThreadState_GET(), type, value, tb) -#define __Pyx_ErrFetchWithState(type, value, tb) __Pyx_ErrFetchInState(PyThreadState_GET(), type, value, tb) -#define __Pyx_ErrRestore(type, value, tb) __Pyx_ErrRestoreInState(__pyx_tstate, type, value, tb) -#define __Pyx_ErrFetch(type, value, tb) __Pyx_ErrFetchInState(__pyx_tstate, type, value, tb) -static CYTHON_INLINE void __Pyx_ErrRestoreInState(PyThreadState *tstate, PyObject *type, PyObject *value, PyObject *tb); -static CYTHON_INLINE void __Pyx_ErrFetchInState(PyThreadState *tstate, PyObject **type, PyObject **value, PyObject **tb); -#if CYTHON_COMPILING_IN_CPYTHON -#define __Pyx_PyErr_SetNone(exc) (Py_INCREF(exc), __Pyx_ErrRestore((exc), NULL, NULL)) -#else -#define __Pyx_PyErr_SetNone(exc) PyErr_SetNone(exc) -#endif -#else -#define __Pyx_PyErr_Clear() PyErr_Clear() -#define __Pyx_PyErr_SetNone(exc) PyErr_SetNone(exc) -#define __Pyx_ErrRestoreWithState(type, value, tb) PyErr_Restore(type, value, tb) -#define __Pyx_ErrFetchWithState(type, value, tb) PyErr_Fetch(type, value, tb) -#define __Pyx_ErrRestoreInState(tstate, type, value, tb) PyErr_Restore(type, value, tb) -#define __Pyx_ErrFetchInState(tstate, type, value, tb) PyErr_Fetch(type, value, tb) -#define __Pyx_ErrRestore(type, value, tb) PyErr_Restore(type, value, tb) -#define __Pyx_ErrFetch(type, value, tb) PyErr_Fetch(type, value, tb) -#endif - -/* CLineInTraceback.proto */ -#ifdef CYTHON_CLINE_IN_TRACEBACK -#define __Pyx_CLineForTraceback(tstate, c_line) (((CYTHON_CLINE_IN_TRACEBACK)) ? c_line : 0) -#else -static int __Pyx_CLineForTraceback(PyThreadState *tstate, int c_line); -#endif - -/* CodeObjectCache.proto */ -typedef struct { - PyCodeObject* code_object; - int code_line; -} __Pyx_CodeObjectCacheEntry; -struct __Pyx_CodeObjectCache { - int count; - int max_count; - __Pyx_CodeObjectCacheEntry* entries; -}; -static struct __Pyx_CodeObjectCache __pyx_code_cache = {0,0,NULL}; -static int __pyx_bisect_code_objects(__Pyx_CodeObjectCacheEntry* entries, int count, int code_line); -static PyCodeObject *__pyx_find_code_object(int code_line); -static void __pyx_insert_code_object(int code_line, PyCodeObject* code_object); - -/* AddTraceback.proto */ -static void __Pyx_AddTraceback(const char *funcname, int c_line, - int py_line, const char *filename); - -/* CIntToPy.proto */ -static CYTHON_INLINE PyObject* __Pyx_PyInt_From_uint16_t(uint16_t value); - -/* CIntToPy.proto */ -static CYTHON_INLINE PyObject* __Pyx_PyInt_From_uint8_t(uint8_t value); - -/* CIntToPy.proto */ -static CYTHON_INLINE PyObject* __Pyx_PyInt_From_long(long value); - -/* CIntFromPy.proto */ -static CYTHON_INLINE long __Pyx_PyInt_As_long(PyObject *); - -/* CIntFromPy.proto */ -static CYTHON_INLINE int __Pyx_PyInt_As_int(PyObject *); - -/* FastTypeChecks.proto */ -#if CYTHON_COMPILING_IN_CPYTHON -#define __Pyx_TypeCheck(obj, type) __Pyx_IsSubtype(Py_TYPE(obj), (PyTypeObject *)type) -static CYTHON_INLINE int __Pyx_IsSubtype(PyTypeObject *a, PyTypeObject *b); -static CYTHON_INLINE int __Pyx_PyErr_GivenExceptionMatches(PyObject *err, PyObject *type); -static CYTHON_INLINE int __Pyx_PyErr_GivenExceptionMatches2(PyObject *err, PyObject *type1, PyObject *type2); -#else -#define __Pyx_TypeCheck(obj, type) PyObject_TypeCheck(obj, (PyTypeObject *)type) -#define __Pyx_PyErr_GivenExceptionMatches(err, type) PyErr_GivenExceptionMatches(err, type) -#define __Pyx_PyErr_GivenExceptionMatches2(err, type1, type2) (PyErr_GivenExceptionMatches(err, type1) || PyErr_GivenExceptionMatches(err, type2)) -#endif -#define __Pyx_PyException_Check(obj) __Pyx_TypeCheck(obj, PyExc_Exception) - -/* CheckBinaryVersion.proto */ -static int __Pyx_check_binary_version(void); - -/* InitStrings.proto */ -static int __Pyx_InitStrings(__Pyx_StringTabEntry *t); - - -/* Module declarations from 'libc.stdint' */ - -/* Module declarations from 'pmercury.utils.packet_proc' */ -#define __Pyx_MODULE_NAME "pmercury.utils.packet_proc" -extern int __pyx_module_is_main_pmercury__utils__packet_proc; -int __pyx_module_is_main_pmercury__utils__packet_proc = 0; - -/* Implementation of 'pmercury.utils.packet_proc' */ -static const char __pyx_k_[] = "."; -static const char __pyx_k_o[] = "o_"; -static const char __pyx_k_x[] = "x_"; -static const char __pyx_k__2[] = ":"; -static const char __pyx_k_ts[] = "ts"; -static const char __pyx_k_02x[] = "02x"; -static const char __pyx_k_TCP[] = "TCP"; -static const char __pyx_k_TLS[] = "TLS"; -static const char __pyx_k_buf[] = "buf"; -static const char __pyx_k_sys[] = "sys"; -static const char __pyx_k_tcp[] = "tcp"; -static const char __pyx_k_tls[] = "tls"; -static const char __pyx_k_DHCP[] = "DHCP"; -static const char __pyx_k_DTLS[] = "DTLS"; -static const char __pyx_k_HTTP[] = "HTTP"; -static const char __pyx_k_data[] = "data"; -static const char __pyx_k_dhcp[] = "dhcp"; -static const char __pyx_k_dtls[] = "dtls"; -static const char __pyx_k_flow[] = "flow"; -static const char __pyx_k_http[] = "http"; -static const char __pyx_k_main[] = "__main__"; -static const char __pyx_k_name[] = "name"; -static const char __pyx_k_test[] = "__test__"; -static const char __pyx_k_IQUIC[] = "IQUIC"; -static const char __pyx_k_iquic[] = "iquic"; -static const char __pyx_k_dst_ip[] = "dst_ip"; -static const char __pyx_k_fp_str[] = "fp_str_"; -static const char __pyx_k_import[] = "__import__"; -static const char __pyx_k_name_2[] = "__name__"; -static const char __pyx_k_src_ip[] = "src_ip"; -static const char __pyx_k_context[] = "context_"; -static const char __pyx_k_fp_type[] = "fp_type"; -static const char __pyx_k_ip_type[] = "ip_type"; -static const char __pyx_k_data_len[] = "data_len"; -static const char __pyx_k_dst_port[] = "dst_port"; -static const char __pyx_k_fp_str_2[] = "fp_str_2_"; -static const char __pyx_k_pkt_proc[] = "pkt_proc"; -static const char __pyx_k_protocol[] = "protocol"; -static const char __pyx_k_src_port[] = "src_port"; -static const char __pyx_k_context_2[] = "context_2_"; -static const char __pyx_k_fp_type_2[] = "fp_type_2"; -static const char __pyx_k_ip_length[] = "ip_length"; -static const char __pyx_k_ip_offset[] = "ip_offset"; -static const char __pyx_k_TLS_Server[] = "TLS_Server"; -static const char __pyx_k_app_offset[] = "app_offset"; -static const char __pyx_k_tls_server[] = "tls_server"; -static const char __pyx_k_DTLS_Server[] = "DTLS_Server"; -static const char __pyx_k_HTTP_Server[] = "HTTP_Server"; -static const char __pyx_k_dtls_server[] = "dtls_server"; -static const char __pyx_k_event_start[] = "event_start"; -static const char __pyx_k_fingerprint[] = "fingerprint"; -static const char __pyx_k_http_server[] = "http_server"; -static const char __pyx_k_prot_length[] = "prot_length"; -static const char __pyx_k_prot_offset[] = "prot_offset"; -static const char __pyx_k_fingerprints[] = "fingerprints"; -static const char __pyx_k_server_certs[] = "server_certs"; -static const char __pyx_k_TLS_Certificate[] = "TLS_Certificate"; -static const char __pyx_k_cline_in_traceback[] = "cline_in_traceback"; -static const char __pyx_k_pmercury_protocols_tcp[] = "pmercury.protocols.tcp"; -static const char __pyx_k_pmercury_protocols_tls[] = "pmercury.protocols.tls"; -static const char __pyx_k_pmercury_protocols_dhcp[] = "pmercury.protocols.dhcp"; -static const char __pyx_k_pmercury_protocols_dtls[] = "pmercury.protocols.dtls"; -static const char __pyx_k_pmercury_protocols_http[] = "pmercury.protocols.http"; -static const char __pyx_k_pmercury_protocols_iquic[] = "pmercury.protocols.iquic"; -static const char __pyx_k_pmercury_utils_packet_proc[] = "pmercury.utils.packet_proc"; -static const char __pyx_k_pmercury_protocols_tls_server[] = "pmercury.protocols.tls_server"; -static const char __pyx_k_Copyright_c_2019_Cisco_Systems[] = "\n Copyright (c) 2019 Cisco Systems, Inc. All rights reserved.\n License at https://github.com/cisco/mercury/blob/master/LICENSE\n"; -static const char __pyx_k_pmercury_protocols_dtls_server[] = "pmercury.protocols.dtls_server"; -static const char __pyx_k_pmercury_protocols_http_server[] = "pmercury.protocols.http_server"; -static const char __pyx_k_pmercury_utils_packet_proc_pyx[] = "pmercury/utils/packet_proc.pyx"; -static const char __pyx_k_pmercury_protocols_tls_certifica[] = "pmercury.protocols.tls_certificate"; -static PyObject *__pyx_kp_u_; -static PyObject *__pyx_kp_u_02x; -static PyObject *__pyx_n_s_DHCP; -static PyObject *__pyx_n_s_DTLS; -static PyObject *__pyx_n_s_DTLS_Server; -static PyObject *__pyx_n_s_HTTP; -static PyObject *__pyx_n_s_HTTP_Server; -static PyObject *__pyx_n_s_IQUIC; -static PyObject *__pyx_n_s_TCP; -static PyObject *__pyx_n_s_TLS; -static PyObject *__pyx_n_s_TLS_Certificate; -static PyObject *__pyx_n_s_TLS_Server; -static PyObject *__pyx_kp_u__2; -static PyObject *__pyx_n_s_app_offset; -static PyObject *__pyx_n_s_buf; -static PyObject *__pyx_n_s_cline_in_traceback; -static PyObject *__pyx_n_s_context; -static PyObject *__pyx_n_s_context_2; -static PyObject *__pyx_n_s_data; -static PyObject *__pyx_n_u_data; -static PyObject *__pyx_n_s_data_len; -static PyObject *__pyx_n_u_dhcp; -static PyObject *__pyx_n_s_dst_ip; -static PyObject *__pyx_n_u_dst_ip; -static PyObject *__pyx_n_s_dst_port; -static PyObject *__pyx_n_u_dst_port; -static PyObject *__pyx_n_u_dtls; -static PyObject *__pyx_n_u_dtls_server; -static PyObject *__pyx_n_u_event_start; -static PyObject *__pyx_n_s_fingerprint; -static PyObject *__pyx_n_u_fingerprints; -static PyObject *__pyx_n_s_flow; -static PyObject *__pyx_n_s_fp_str; -static PyObject *__pyx_n_s_fp_str_2; -static PyObject *__pyx_n_s_fp_type; -static PyObject *__pyx_n_s_fp_type_2; -static PyObject *__pyx_n_u_http; -static PyObject *__pyx_n_u_http_server; -static PyObject *__pyx_n_s_import; -static PyObject *__pyx_n_s_ip_length; -static PyObject *__pyx_n_s_ip_offset; -static PyObject *__pyx_n_s_ip_type; -static PyObject *__pyx_n_u_iquic; -static PyObject *__pyx_n_s_main; -static PyObject *__pyx_n_u_name; -static PyObject *__pyx_n_s_name_2; -static PyObject *__pyx_n_s_o; -static PyObject *__pyx_n_s_pkt_proc; -static PyObject *__pyx_n_s_pmercury_protocols_dhcp; -static PyObject *__pyx_n_s_pmercury_protocols_dtls; -static PyObject *__pyx_n_s_pmercury_protocols_dtls_server; -static PyObject *__pyx_n_s_pmercury_protocols_http; -static PyObject *__pyx_n_s_pmercury_protocols_http_server; -static PyObject *__pyx_n_s_pmercury_protocols_iquic; -static PyObject *__pyx_n_s_pmercury_protocols_tcp; -static PyObject *__pyx_n_s_pmercury_protocols_tls; -static PyObject *__pyx_n_s_pmercury_protocols_tls_certifica; -static PyObject *__pyx_n_s_pmercury_protocols_tls_server; -static PyObject *__pyx_n_s_pmercury_utils_packet_proc; -static PyObject *__pyx_kp_s_pmercury_utils_packet_proc_pyx; -static PyObject *__pyx_n_s_prot_length; -static PyObject *__pyx_n_s_prot_offset; -static PyObject *__pyx_n_s_protocol; -static PyObject *__pyx_n_u_protocol; -static PyObject *__pyx_n_u_server_certs; -static PyObject *__pyx_n_s_src_ip; -static PyObject *__pyx_n_u_src_ip; -static PyObject *__pyx_n_s_src_port; -static PyObject *__pyx_n_u_src_port; -static PyObject *__pyx_n_s_sys; -static PyObject *__pyx_n_u_tcp; -static PyObject *__pyx_n_s_test; -static PyObject *__pyx_n_u_tls; -static PyObject *__pyx_n_u_tls_server; -static PyObject *__pyx_n_s_ts; -static PyObject *__pyx_n_s_x; -static PyObject *__pyx_pf_8pmercury_5utils_11packet_proc_pkt_proc(CYTHON_UNUSED PyObject *__pyx_self, double __pyx_v_ts, PyObject *__pyx_v_data); /* proto */ -static PyObject *__pyx_tuple__3; -static PyObject *__pyx_codeobj__4; -/* Late includes */ - -/* "pmercury/utils/packet_proc.pyx":33 - * - * - * def pkt_proc(double ts, bytes data): # <<<<<<<<<<<<<< - * cdef uint8_t *buf = data - * - */ - -/* Python wrapper */ -static PyObject *__pyx_pw_8pmercury_5utils_11packet_proc_1pkt_proc(PyObject *__pyx_self, PyObject *__pyx_args, PyObject *__pyx_kwds); /*proto*/ -static PyMethodDef __pyx_mdef_8pmercury_5utils_11packet_proc_1pkt_proc = {"pkt_proc", (PyCFunction)(void*)(PyCFunctionWithKeywords)__pyx_pw_8pmercury_5utils_11packet_proc_1pkt_proc, METH_VARARGS|METH_KEYWORDS, 0}; -static PyObject *__pyx_pw_8pmercury_5utils_11packet_proc_1pkt_proc(PyObject *__pyx_self, PyObject *__pyx_args, PyObject *__pyx_kwds) { - double __pyx_v_ts; - PyObject *__pyx_v_data = 0; - PyObject *__pyx_r = 0; - __Pyx_RefNannyDeclarations - __Pyx_RefNannySetupContext("pkt_proc (wrapper)", 0); - { - static PyObject **__pyx_pyargnames[] = {&__pyx_n_s_ts,&__pyx_n_s_data,0}; - PyObject* values[2] = {0,0}; - if (unlikely(__pyx_kwds)) { - Py_ssize_t kw_args; - const Py_ssize_t pos_args = PyTuple_GET_SIZE(__pyx_args); - switch (pos_args) { - case 2: values[1] = PyTuple_GET_ITEM(__pyx_args, 1); - CYTHON_FALLTHROUGH; - case 1: values[0] = PyTuple_GET_ITEM(__pyx_args, 0); - CYTHON_FALLTHROUGH; - case 0: break; - default: goto __pyx_L5_argtuple_error; - } - kw_args = PyDict_Size(__pyx_kwds); - switch (pos_args) { - case 0: - if (likely((values[0] = __Pyx_PyDict_GetItemStr(__pyx_kwds, __pyx_n_s_ts)) != 0)) kw_args--; - else goto __pyx_L5_argtuple_error; - CYTHON_FALLTHROUGH; - case 1: - if (likely((values[1] = __Pyx_PyDict_GetItemStr(__pyx_kwds, __pyx_n_s_data)) != 0)) kw_args--; - else { - __Pyx_RaiseArgtupleInvalid("pkt_proc", 1, 2, 2, 1); __PYX_ERR(0, 33, __pyx_L3_error) - } - } - if (unlikely(kw_args > 0)) { - if (unlikely(__Pyx_ParseOptionalKeywords(__pyx_kwds, __pyx_pyargnames, 0, values, pos_args, "pkt_proc") < 0)) __PYX_ERR(0, 33, __pyx_L3_error) - } - } else if (PyTuple_GET_SIZE(__pyx_args) != 2) { - goto __pyx_L5_argtuple_error; - } else { - values[0] = PyTuple_GET_ITEM(__pyx_args, 0); - values[1] = PyTuple_GET_ITEM(__pyx_args, 1); - } - __pyx_v_ts = __pyx_PyFloat_AsDouble(values[0]); if (unlikely((__pyx_v_ts == (double)-1) && PyErr_Occurred())) __PYX_ERR(0, 33, __pyx_L3_error) - __pyx_v_data = ((PyObject*)values[1]); - } - goto __pyx_L4_argument_unpacking_done; - __pyx_L5_argtuple_error:; - __Pyx_RaiseArgtupleInvalid("pkt_proc", 1, 2, 2, PyTuple_GET_SIZE(__pyx_args)); __PYX_ERR(0, 33, __pyx_L3_error) - __pyx_L3_error:; - __Pyx_AddTraceback("pmercury.utils.packet_proc.pkt_proc", __pyx_clineno, __pyx_lineno, __pyx_filename); - __Pyx_RefNannyFinishContext(); - return NULL; - __pyx_L4_argument_unpacking_done:; - if (unlikely(!__Pyx_ArgTypeTest(((PyObject *)__pyx_v_data), (&PyBytes_Type), 1, "data", 1))) __PYX_ERR(0, 33, __pyx_L1_error) - __pyx_r = __pyx_pf_8pmercury_5utils_11packet_proc_pkt_proc(__pyx_self, __pyx_v_ts, __pyx_v_data); - - /* function exit code */ - goto __pyx_L0; - __pyx_L1_error:; - __pyx_r = NULL; - __pyx_L0:; - __Pyx_RefNannyFinishContext(); - return __pyx_r; -} - -static PyObject *__pyx_pf_8pmercury_5utils_11packet_proc_pkt_proc(CYTHON_UNUSED PyObject *__pyx_self, double __pyx_v_ts, PyObject *__pyx_v_data) { - uint8_t *__pyx_v_buf; - uint16_t __pyx_v_ip_type; - uint16_t __pyx_v_ip_length; - uint16_t __pyx_v_ip_offset; - uint16_t __pyx_v_protocol; - uint16_t __pyx_v_data_len; - uint16_t __pyx_v_src_port; - uint16_t __pyx_v_dst_port; - uint16_t __pyx_v_prot_length; - uint16_t __pyx_v_prot_offset; - uint16_t __pyx_v_app_offset; - PyObject *__pyx_v_fp_type = 0; - PyObject *__pyx_v_fp_type_2 = 0; - PyObject *__pyx_v_src_ip = 0; - PyObject *__pyx_v_dst_ip = 0; - PyObject *__pyx_v_context_ = 0; - PyObject *__pyx_v_context_2_ = 0; - PyObject *__pyx_v_flow = 0; - PyObject *__pyx_v_fp_str_ = NULL; - PyObject *__pyx_v_fp_str_2_ = NULL; - long __pyx_v_o_; - PyObject *__pyx_v_x_ = NULL; - PyObject *__pyx_r = NULL; - __Pyx_RefNannyDeclarations - uint8_t *__pyx_t_1; - int __pyx_t_2; - int __pyx_t_3; - Py_ssize_t __pyx_t_4; - PyObject *__pyx_t_5 = NULL; - PyObject *__pyx_t_6 = NULL; - PyObject *__pyx_t_7 = NULL; - PyObject *__pyx_t_8 = NULL; - PyObject *__pyx_t_9 = NULL; - int __pyx_t_10; - PyObject *__pyx_t_11 = NULL; - PyObject *(*__pyx_t_12)(PyObject *); - Py_UCS4 __pyx_t_13; - __Pyx_RefNannySetupContext("pkt_proc", 0); - - /* "pmercury/utils/packet_proc.pyx":34 - * - * def pkt_proc(double ts, bytes data): - * cdef uint8_t *buf = data # <<<<<<<<<<<<<< - * - * cdef uint16_t ip_type = 4 - */ - if (unlikely(__pyx_v_data == Py_None)) { - PyErr_SetString(PyExc_TypeError, "expected bytes, NoneType found"); - __PYX_ERR(0, 34, __pyx_L1_error) - } - __pyx_t_1 = __Pyx_PyBytes_AsWritableUString(__pyx_v_data); if (unlikely((!__pyx_t_1) && PyErr_Occurred())) __PYX_ERR(0, 34, __pyx_L1_error) - __pyx_v_buf = __pyx_t_1; - - /* "pmercury/utils/packet_proc.pyx":36 - * cdef uint8_t *buf = data - * - * cdef uint16_t ip_type = 4 # <<<<<<<<<<<<<< - * cdef uint16_t ip_length, ip_offset, protocol - * - */ - __pyx_v_ip_type = 4; - - /* "pmercury/utils/packet_proc.pyx":39 - * cdef uint16_t ip_length, ip_offset, protocol - * - * if buf[12] == 0x08 and buf[13] == 0x00: # IPv4 # <<<<<<<<<<<<<< - * ip_length = 20 - * ip_offset = 14 - */ - __pyx_t_3 = (((__pyx_v_buf[12]) == 0x08) != 0); - if (__pyx_t_3) { - } else { - __pyx_t_2 = __pyx_t_3; - goto __pyx_L4_bool_binop_done; - } - __pyx_t_3 = (((__pyx_v_buf[13]) == 0x00) != 0); - __pyx_t_2 = __pyx_t_3; - __pyx_L4_bool_binop_done:; - if (__pyx_t_2) { - - /* "pmercury/utils/packet_proc.pyx":40 - * - * if buf[12] == 0x08 and buf[13] == 0x00: # IPv4 - * ip_length = 20 # <<<<<<<<<<<<<< - * ip_offset = 14 - * protocol = buf[23] - */ - __pyx_v_ip_length = 20; - - /* "pmercury/utils/packet_proc.pyx":41 - * if buf[12] == 0x08 and buf[13] == 0x00: # IPv4 - * ip_length = 20 - * ip_offset = 14 # <<<<<<<<<<<<<< - * protocol = buf[23] - * elif buf[12] == 0x86 and buf[13] == 0xdd: # IPv6 - */ - __pyx_v_ip_offset = 14; - - /* "pmercury/utils/packet_proc.pyx":42 - * ip_length = 20 - * ip_offset = 14 - * protocol = buf[23] # <<<<<<<<<<<<<< - * elif buf[12] == 0x86 and buf[13] == 0xdd: # IPv6 - * ip_type = 6 - */ - __pyx_v_protocol = (__pyx_v_buf[23]); - - /* "pmercury/utils/packet_proc.pyx":39 - * cdef uint16_t ip_length, ip_offset, protocol - * - * if buf[12] == 0x08 and buf[13] == 0x00: # IPv4 # <<<<<<<<<<<<<< - * ip_length = 20 - * ip_offset = 14 - */ - goto __pyx_L3; - } - - /* "pmercury/utils/packet_proc.pyx":43 - * ip_offset = 14 - * protocol = buf[23] - * elif buf[12] == 0x86 and buf[13] == 0xdd: # IPv6 # <<<<<<<<<<<<<< - * ip_type = 6 - * ip_length = 40 - */ - __pyx_t_3 = (((__pyx_v_buf[12]) == 0x86) != 0); - if (__pyx_t_3) { - } else { - __pyx_t_2 = __pyx_t_3; - goto __pyx_L6_bool_binop_done; - } - __pyx_t_3 = (((__pyx_v_buf[13]) == 0xdd) != 0); - __pyx_t_2 = __pyx_t_3; - __pyx_L6_bool_binop_done:; - if (__pyx_t_2) { - - /* "pmercury/utils/packet_proc.pyx":44 - * protocol = buf[23] - * elif buf[12] == 0x86 and buf[13] == 0xdd: # IPv6 - * ip_type = 6 # <<<<<<<<<<<<<< - * ip_length = 40 - * ip_offset = 14 - */ - __pyx_v_ip_type = 6; - - /* "pmercury/utils/packet_proc.pyx":45 - * elif buf[12] == 0x86 and buf[13] == 0xdd: # IPv6 - * ip_type = 6 - * ip_length = 40 # <<<<<<<<<<<<<< - * ip_offset = 14 - * protocol = buf[20] - */ - __pyx_v_ip_length = 40; - - /* "pmercury/utils/packet_proc.pyx":46 - * ip_type = 6 - * ip_length = 40 - * ip_offset = 14 # <<<<<<<<<<<<<< - * protocol = buf[20] - * elif buf[14] == 0x08 and buf[15] == 0x00: # IPv4 (hack for linux cooked capture) - */ - __pyx_v_ip_offset = 14; - - /* "pmercury/utils/packet_proc.pyx":47 - * ip_length = 40 - * ip_offset = 14 - * protocol = buf[20] # <<<<<<<<<<<<<< - * elif buf[14] == 0x08 and buf[15] == 0x00: # IPv4 (hack for linux cooked capture) - * ip_length = 20 - */ - __pyx_v_protocol = (__pyx_v_buf[20]); - - /* "pmercury/utils/packet_proc.pyx":43 - * ip_offset = 14 - * protocol = buf[23] - * elif buf[12] == 0x86 and buf[13] == 0xdd: # IPv6 # <<<<<<<<<<<<<< - * ip_type = 6 - * ip_length = 40 - */ - goto __pyx_L3; - } - - /* "pmercury/utils/packet_proc.pyx":48 - * ip_offset = 14 - * protocol = buf[20] - * elif buf[14] == 0x08 and buf[15] == 0x00: # IPv4 (hack for linux cooked capture) # <<<<<<<<<<<<<< - * ip_length = 20 - * ip_offset = 16 - */ - __pyx_t_3 = (((__pyx_v_buf[14]) == 0x08) != 0); - if (__pyx_t_3) { - } else { - __pyx_t_2 = __pyx_t_3; - goto __pyx_L8_bool_binop_done; - } - __pyx_t_3 = (((__pyx_v_buf[15]) == 0x00) != 0); - __pyx_t_2 = __pyx_t_3; - __pyx_L8_bool_binop_done:; - if (__pyx_t_2) { - - /* "pmercury/utils/packet_proc.pyx":49 - * protocol = buf[20] - * elif buf[14] == 0x08 and buf[15] == 0x00: # IPv4 (hack for linux cooked capture) - * ip_length = 20 # <<<<<<<<<<<<<< - * ip_offset = 16 - * protocol = buf[25] - */ - __pyx_v_ip_length = 20; - - /* "pmercury/utils/packet_proc.pyx":50 - * elif buf[14] == 0x08 and buf[15] == 0x00: # IPv4 (hack for linux cooked capture) - * ip_length = 20 - * ip_offset = 16 # <<<<<<<<<<<<<< - * protocol = buf[25] - * else: # currently skip other types - */ - __pyx_v_ip_offset = 16; - - /* "pmercury/utils/packet_proc.pyx":51 - * ip_length = 20 - * ip_offset = 16 - * protocol = buf[25] # <<<<<<<<<<<<<< - * else: # currently skip other types - * return None - */ - __pyx_v_protocol = (__pyx_v_buf[25]); - - /* "pmercury/utils/packet_proc.pyx":48 - * ip_offset = 14 - * protocol = buf[20] - * elif buf[14] == 0x08 and buf[15] == 0x00: # IPv4 (hack for linux cooked capture) # <<<<<<<<<<<<<< - * ip_length = 20 - * ip_offset = 16 - */ - goto __pyx_L3; - } - - /* "pmercury/utils/packet_proc.pyx":53 - * protocol = buf[25] - * else: # currently skip other types - * return None # <<<<<<<<<<<<<< - * - * cdef uint16_t data_len - */ - /*else*/ { - __Pyx_XDECREF(__pyx_r); - __pyx_r = Py_None; __Pyx_INCREF(Py_None); - goto __pyx_L0; - } - __pyx_L3:; - - /* "pmercury/utils/packet_proc.pyx":62 - * cdef dict flow - * - * data_len = len(data) # <<<<<<<<<<<<<< - * fp_str_ = None - * fp_str_2_ = None - */ - if (unlikely(__pyx_v_data == Py_None)) { - PyErr_SetString(PyExc_TypeError, "object of type 'NoneType' has no len()"); - __PYX_ERR(0, 62, __pyx_L1_error) - } - __pyx_t_4 = PyBytes_GET_SIZE(__pyx_v_data); if (unlikely(__pyx_t_4 == ((Py_ssize_t)-1))) __PYX_ERR(0, 62, __pyx_L1_error) - __pyx_v_data_len = __pyx_t_4; - - /* "pmercury/utils/packet_proc.pyx":63 - * - * data_len = len(data) - * fp_str_ = None # <<<<<<<<<<<<<< - * fp_str_2_ = None - * prot_offset = 0 - */ - __Pyx_INCREF(Py_None); - __pyx_v_fp_str_ = Py_None; - - /* "pmercury/utils/packet_proc.pyx":64 - * data_len = len(data) - * fp_str_ = None - * fp_str_2_ = None # <<<<<<<<<<<<<< - * prot_offset = 0 - * if protocol == 6: - */ - __Pyx_INCREF(Py_None); - __pyx_v_fp_str_2_ = Py_None; - - /* "pmercury/utils/packet_proc.pyx":65 - * fp_str_ = None - * fp_str_2_ = None - * prot_offset = 0 # <<<<<<<<<<<<<< - * if protocol == 6: - * prot_offset = ip_offset+ip_length - */ - __pyx_v_prot_offset = 0; - - /* "pmercury/utils/packet_proc.pyx":66 - * fp_str_2_ = None - * prot_offset = 0 - * if protocol == 6: # <<<<<<<<<<<<<< - * prot_offset = ip_offset+ip_length - * if prot_offset+20 > data_len: - */ - switch (__pyx_v_protocol) { - case 6: - - /* "pmercury/utils/packet_proc.pyx":67 - * prot_offset = 0 - * if protocol == 6: - * prot_offset = ip_offset+ip_length # <<<<<<<<<<<<<< - * if prot_offset+20 > data_len: - * return None - */ - __pyx_v_prot_offset = (__pyx_v_ip_offset + __pyx_v_ip_length); - - /* "pmercury/utils/packet_proc.pyx":68 - * if protocol == 6: - * prot_offset = ip_offset+ip_length - * if prot_offset+20 > data_len: # <<<<<<<<<<<<<< - * return None - * prot_length = (buf[prot_offset+12] >> 0x04)*4 - */ - __pyx_t_2 = (((__pyx_v_prot_offset + 20) > __pyx_v_data_len) != 0); - if (__pyx_t_2) { - - /* "pmercury/utils/packet_proc.pyx":69 - * prot_offset = ip_offset+ip_length - * if prot_offset+20 > data_len: - * return None # <<<<<<<<<<<<<< - * prot_length = (buf[prot_offset+12] >> 0x04)*4 - * app_offset = prot_offset + prot_length - */ - __Pyx_XDECREF(__pyx_r); - __pyx_r = Py_None; __Pyx_INCREF(Py_None); - goto __pyx_L0; - - /* "pmercury/utils/packet_proc.pyx":68 - * if protocol == 6: - * prot_offset = ip_offset+ip_length - * if prot_offset+20 > data_len: # <<<<<<<<<<<<<< - * return None - * prot_length = (buf[prot_offset+12] >> 0x04)*4 - */ - } - - /* "pmercury/utils/packet_proc.pyx":70 - * if prot_offset+20 > data_len: - * return None - * prot_length = (buf[prot_offset+12] >> 0x04)*4 # <<<<<<<<<<<<<< - * app_offset = prot_offset + prot_length - * if buf[prot_offset+13] == 2: - */ - __pyx_v_prot_length = (((__pyx_v_buf[(__pyx_v_prot_offset + 12)]) >> 0x04) * 4); - - /* "pmercury/utils/packet_proc.pyx":71 - * return None - * prot_length = (buf[prot_offset+12] >> 0x04)*4 - * app_offset = prot_offset + prot_length # <<<<<<<<<<<<<< - * if buf[prot_offset+13] == 2: - * fp_str_, context_ = TCP.fingerprint(data, prot_offset, app_offset) - */ - __pyx_v_app_offset = (__pyx_v_prot_offset + __pyx_v_prot_length); - - /* "pmercury/utils/packet_proc.pyx":72 - * prot_length = (buf[prot_offset+12] >> 0x04)*4 - * app_offset = prot_offset + prot_length - * if buf[prot_offset+13] == 2: # <<<<<<<<<<<<<< - * fp_str_, context_ = TCP.fingerprint(data, prot_offset, app_offset) - * fp_type = 'tcp' - */ - __pyx_t_2 = (((__pyx_v_buf[(__pyx_v_prot_offset + 13)]) == 2) != 0); - if (__pyx_t_2) { - - /* "pmercury/utils/packet_proc.pyx":73 - * app_offset = prot_offset + prot_length - * if buf[prot_offset+13] == 2: - * fp_str_, context_ = TCP.fingerprint(data, prot_offset, app_offset) # <<<<<<<<<<<<<< - * fp_type = 'tcp' - * elif data_len - app_offset < 16: - */ - __Pyx_GetModuleGlobalName(__pyx_t_6, __pyx_n_s_TCP); if (unlikely(!__pyx_t_6)) __PYX_ERR(0, 73, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_6); - __pyx_t_7 = __Pyx_PyObject_GetAttrStr(__pyx_t_6, __pyx_n_s_fingerprint); if (unlikely(!__pyx_t_7)) __PYX_ERR(0, 73, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_7); - __Pyx_DECREF(__pyx_t_6); __pyx_t_6 = 0; - __pyx_t_6 = __Pyx_PyInt_From_uint16_t(__pyx_v_prot_offset); if (unlikely(!__pyx_t_6)) __PYX_ERR(0, 73, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_6); - __pyx_t_8 = __Pyx_PyInt_From_uint16_t(__pyx_v_app_offset); if (unlikely(!__pyx_t_8)) __PYX_ERR(0, 73, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_8); - __pyx_t_9 = NULL; - __pyx_t_10 = 0; - if (CYTHON_UNPACK_METHODS && unlikely(PyMethod_Check(__pyx_t_7))) { - __pyx_t_9 = PyMethod_GET_SELF(__pyx_t_7); - if (likely(__pyx_t_9)) { - PyObject* function = PyMethod_GET_FUNCTION(__pyx_t_7); - __Pyx_INCREF(__pyx_t_9); - __Pyx_INCREF(function); - __Pyx_DECREF_SET(__pyx_t_7, function); - __pyx_t_10 = 1; - } - } - #if CYTHON_FAST_PYCALL - if (PyFunction_Check(__pyx_t_7)) { - PyObject *__pyx_temp[4] = {__pyx_t_9, __pyx_v_data, __pyx_t_6, __pyx_t_8}; - __pyx_t_5 = __Pyx_PyFunction_FastCall(__pyx_t_7, __pyx_temp+1-__pyx_t_10, 3+__pyx_t_10); if (unlikely(!__pyx_t_5)) __PYX_ERR(0, 73, __pyx_L1_error) - __Pyx_XDECREF(__pyx_t_9); __pyx_t_9 = 0; - __Pyx_GOTREF(__pyx_t_5); - __Pyx_DECREF(__pyx_t_6); __pyx_t_6 = 0; - __Pyx_DECREF(__pyx_t_8); __pyx_t_8 = 0; - } else - #endif - #if CYTHON_FAST_PYCCALL - if (__Pyx_PyFastCFunction_Check(__pyx_t_7)) { - PyObject *__pyx_temp[4] = {__pyx_t_9, __pyx_v_data, __pyx_t_6, __pyx_t_8}; - __pyx_t_5 = __Pyx_PyCFunction_FastCall(__pyx_t_7, __pyx_temp+1-__pyx_t_10, 3+__pyx_t_10); if (unlikely(!__pyx_t_5)) __PYX_ERR(0, 73, __pyx_L1_error) - __Pyx_XDECREF(__pyx_t_9); __pyx_t_9 = 0; - __Pyx_GOTREF(__pyx_t_5); - __Pyx_DECREF(__pyx_t_6); __pyx_t_6 = 0; - __Pyx_DECREF(__pyx_t_8); __pyx_t_8 = 0; - } else - #endif - { - __pyx_t_11 = PyTuple_New(3+__pyx_t_10); if (unlikely(!__pyx_t_11)) __PYX_ERR(0, 73, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_11); - if (__pyx_t_9) { - __Pyx_GIVEREF(__pyx_t_9); PyTuple_SET_ITEM(__pyx_t_11, 0, __pyx_t_9); __pyx_t_9 = NULL; - } - __Pyx_INCREF(__pyx_v_data); - __Pyx_GIVEREF(__pyx_v_data); - PyTuple_SET_ITEM(__pyx_t_11, 0+__pyx_t_10, __pyx_v_data); - __Pyx_GIVEREF(__pyx_t_6); - PyTuple_SET_ITEM(__pyx_t_11, 1+__pyx_t_10, __pyx_t_6); - __Pyx_GIVEREF(__pyx_t_8); - PyTuple_SET_ITEM(__pyx_t_11, 2+__pyx_t_10, __pyx_t_8); - __pyx_t_6 = 0; - __pyx_t_8 = 0; - __pyx_t_5 = __Pyx_PyObject_Call(__pyx_t_7, __pyx_t_11, NULL); if (unlikely(!__pyx_t_5)) __PYX_ERR(0, 73, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_5); - __Pyx_DECREF(__pyx_t_11); __pyx_t_11 = 0; - } - __Pyx_DECREF(__pyx_t_7); __pyx_t_7 = 0; - if ((likely(PyTuple_CheckExact(__pyx_t_5))) || (PyList_CheckExact(__pyx_t_5))) { - PyObject* sequence = __pyx_t_5; - Py_ssize_t size = __Pyx_PySequence_SIZE(sequence); - if (unlikely(size != 2)) { - if (size > 2) __Pyx_RaiseTooManyValuesError(2); - else if (size >= 0) __Pyx_RaiseNeedMoreValuesError(size); - __PYX_ERR(0, 73, __pyx_L1_error) - } - #if CYTHON_ASSUME_SAFE_MACROS && !CYTHON_AVOID_BORROWED_REFS - if (likely(PyTuple_CheckExact(sequence))) { - __pyx_t_7 = PyTuple_GET_ITEM(sequence, 0); - __pyx_t_11 = PyTuple_GET_ITEM(sequence, 1); - } else { - __pyx_t_7 = PyList_GET_ITEM(sequence, 0); - __pyx_t_11 = PyList_GET_ITEM(sequence, 1); - } - __Pyx_INCREF(__pyx_t_7); - __Pyx_INCREF(__pyx_t_11); - #else - __pyx_t_7 = PySequence_ITEM(sequence, 0); if (unlikely(!__pyx_t_7)) __PYX_ERR(0, 73, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_7); - __pyx_t_11 = PySequence_ITEM(sequence, 1); if (unlikely(!__pyx_t_11)) __PYX_ERR(0, 73, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_11); - #endif - __Pyx_DECREF(__pyx_t_5); __pyx_t_5 = 0; - } else { - Py_ssize_t index = -1; - __pyx_t_8 = PyObject_GetIter(__pyx_t_5); if (unlikely(!__pyx_t_8)) __PYX_ERR(0, 73, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_8); - __Pyx_DECREF(__pyx_t_5); __pyx_t_5 = 0; - __pyx_t_12 = Py_TYPE(__pyx_t_8)->tp_iternext; - index = 0; __pyx_t_7 = __pyx_t_12(__pyx_t_8); if (unlikely(!__pyx_t_7)) goto __pyx_L12_unpacking_failed; - __Pyx_GOTREF(__pyx_t_7); - index = 1; __pyx_t_11 = __pyx_t_12(__pyx_t_8); if (unlikely(!__pyx_t_11)) goto __pyx_L12_unpacking_failed; - __Pyx_GOTREF(__pyx_t_11); - if (__Pyx_IternextUnpackEndCheck(__pyx_t_12(__pyx_t_8), 2) < 0) __PYX_ERR(0, 73, __pyx_L1_error) - __pyx_t_12 = NULL; - __Pyx_DECREF(__pyx_t_8); __pyx_t_8 = 0; - goto __pyx_L13_unpacking_done; - __pyx_L12_unpacking_failed:; - __Pyx_DECREF(__pyx_t_8); __pyx_t_8 = 0; - __pyx_t_12 = NULL; - if (__Pyx_IterFinish() == 0) __Pyx_RaiseNeedMoreValuesError(index); - __PYX_ERR(0, 73, __pyx_L1_error) - __pyx_L13_unpacking_done:; - } - if (!(likely(PyList_CheckExact(__pyx_t_11))||((__pyx_t_11) == Py_None)||(PyErr_Format(PyExc_TypeError, "Expected %.16s, got %.200s", "list", Py_TYPE(__pyx_t_11)->tp_name), 0))) __PYX_ERR(0, 73, __pyx_L1_error) - __Pyx_DECREF_SET(__pyx_v_fp_str_, __pyx_t_7); - __pyx_t_7 = 0; - __pyx_v_context_ = ((PyObject*)__pyx_t_11); - __pyx_t_11 = 0; - - /* "pmercury/utils/packet_proc.pyx":74 - * if buf[prot_offset+13] == 2: - * fp_str_, context_ = TCP.fingerprint(data, prot_offset, app_offset) - * fp_type = 'tcp' # <<<<<<<<<<<<<< - * elif data_len - app_offset < 16: - * return None - */ - __Pyx_INCREF(__pyx_n_u_tcp); - __pyx_v_fp_type = __pyx_n_u_tcp; - - /* "pmercury/utils/packet_proc.pyx":72 - * prot_length = (buf[prot_offset+12] >> 0x04)*4 - * app_offset = prot_offset + prot_length - * if buf[prot_offset+13] == 2: # <<<<<<<<<<<<<< - * fp_str_, context_ = TCP.fingerprint(data, prot_offset, app_offset) - * fp_type = 'tcp' - */ - goto __pyx_L11; - } - - /* "pmercury/utils/packet_proc.pyx":75 - * fp_str_, context_ = TCP.fingerprint(data, prot_offset, app_offset) - * fp_type = 'tcp' - * elif data_len - app_offset < 16: # <<<<<<<<<<<<<< - * return None - * elif buf[app_offset] == 22 and buf[app_offset+1] == 3: - */ - __pyx_t_2 = (((__pyx_v_data_len - __pyx_v_app_offset) < 16) != 0); - if (__pyx_t_2) { - - /* "pmercury/utils/packet_proc.pyx":76 - * fp_type = 'tcp' - * elif data_len - app_offset < 16: - * return None # <<<<<<<<<<<<<< - * elif buf[app_offset] == 22 and buf[app_offset+1] == 3: - * if buf[app_offset+5] == 1 and buf[app_offset+9] == 3: - */ - __Pyx_XDECREF(__pyx_r); - __pyx_r = Py_None; __Pyx_INCREF(Py_None); - goto __pyx_L0; - - /* "pmercury/utils/packet_proc.pyx":75 - * fp_str_, context_ = TCP.fingerprint(data, prot_offset, app_offset) - * fp_type = 'tcp' - * elif data_len - app_offset < 16: # <<<<<<<<<<<<<< - * return None - * elif buf[app_offset] == 22 and buf[app_offset+1] == 3: - */ - } - - /* "pmercury/utils/packet_proc.pyx":77 - * elif data_len - app_offset < 16: - * return None - * elif buf[app_offset] == 22 and buf[app_offset+1] == 3: # <<<<<<<<<<<<<< - * if buf[app_offset+5] == 1 and buf[app_offset+9] == 3: - * fp_str_, context_ = TLS.fingerprint(data, app_offset, data_len) - */ - __pyx_t_3 = (((__pyx_v_buf[__pyx_v_app_offset]) == 22) != 0); - if (__pyx_t_3) { - } else { - __pyx_t_2 = __pyx_t_3; - goto __pyx_L14_bool_binop_done; - } - __pyx_t_3 = (((__pyx_v_buf[(__pyx_v_app_offset + 1)]) == 3) != 0); - __pyx_t_2 = __pyx_t_3; - __pyx_L14_bool_binop_done:; - if (__pyx_t_2) { - - /* "pmercury/utils/packet_proc.pyx":78 - * return None - * elif buf[app_offset] == 22 and buf[app_offset+1] == 3: - * if buf[app_offset+5] == 1 and buf[app_offset+9] == 3: # <<<<<<<<<<<<<< - * fp_str_, context_ = TLS.fingerprint(data, app_offset, data_len) - * fp_type = 'tls' - */ - __pyx_t_3 = (((__pyx_v_buf[(__pyx_v_app_offset + 5)]) == 1) != 0); - if (__pyx_t_3) { - } else { - __pyx_t_2 = __pyx_t_3; - goto __pyx_L17_bool_binop_done; - } - __pyx_t_3 = (((__pyx_v_buf[(__pyx_v_app_offset + 9)]) == 3) != 0); - __pyx_t_2 = __pyx_t_3; - __pyx_L17_bool_binop_done:; - if (__pyx_t_2) { - - /* "pmercury/utils/packet_proc.pyx":79 - * elif buf[app_offset] == 22 and buf[app_offset+1] == 3: - * if buf[app_offset+5] == 1 and buf[app_offset+9] == 3: - * fp_str_, context_ = TLS.fingerprint(data, app_offset, data_len) # <<<<<<<<<<<<<< - * fp_type = 'tls' - * elif buf[app_offset+5] == 2 and buf[app_offset+9] == 3: - */ - __Pyx_GetModuleGlobalName(__pyx_t_11, __pyx_n_s_TLS); if (unlikely(!__pyx_t_11)) __PYX_ERR(0, 79, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_11); - __pyx_t_7 = __Pyx_PyObject_GetAttrStr(__pyx_t_11, __pyx_n_s_fingerprint); if (unlikely(!__pyx_t_7)) __PYX_ERR(0, 79, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_7); - __Pyx_DECREF(__pyx_t_11); __pyx_t_11 = 0; - __pyx_t_11 = __Pyx_PyInt_From_uint16_t(__pyx_v_app_offset); if (unlikely(!__pyx_t_11)) __PYX_ERR(0, 79, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_11); - __pyx_t_8 = __Pyx_PyInt_From_uint16_t(__pyx_v_data_len); if (unlikely(!__pyx_t_8)) __PYX_ERR(0, 79, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_8); - __pyx_t_6 = NULL; - __pyx_t_10 = 0; - if (CYTHON_UNPACK_METHODS && unlikely(PyMethod_Check(__pyx_t_7))) { - __pyx_t_6 = PyMethod_GET_SELF(__pyx_t_7); - if (likely(__pyx_t_6)) { - PyObject* function = PyMethod_GET_FUNCTION(__pyx_t_7); - __Pyx_INCREF(__pyx_t_6); - __Pyx_INCREF(function); - __Pyx_DECREF_SET(__pyx_t_7, function); - __pyx_t_10 = 1; - } - } - #if CYTHON_FAST_PYCALL - if (PyFunction_Check(__pyx_t_7)) { - PyObject *__pyx_temp[4] = {__pyx_t_6, __pyx_v_data, __pyx_t_11, __pyx_t_8}; - __pyx_t_5 = __Pyx_PyFunction_FastCall(__pyx_t_7, __pyx_temp+1-__pyx_t_10, 3+__pyx_t_10); if (unlikely(!__pyx_t_5)) __PYX_ERR(0, 79, __pyx_L1_error) - __Pyx_XDECREF(__pyx_t_6); __pyx_t_6 = 0; - __Pyx_GOTREF(__pyx_t_5); - __Pyx_DECREF(__pyx_t_11); __pyx_t_11 = 0; - __Pyx_DECREF(__pyx_t_8); __pyx_t_8 = 0; - } else - #endif - #if CYTHON_FAST_PYCCALL - if (__Pyx_PyFastCFunction_Check(__pyx_t_7)) { - PyObject *__pyx_temp[4] = {__pyx_t_6, __pyx_v_data, __pyx_t_11, __pyx_t_8}; - __pyx_t_5 = __Pyx_PyCFunction_FastCall(__pyx_t_7, __pyx_temp+1-__pyx_t_10, 3+__pyx_t_10); if (unlikely(!__pyx_t_5)) __PYX_ERR(0, 79, __pyx_L1_error) - __Pyx_XDECREF(__pyx_t_6); __pyx_t_6 = 0; - __Pyx_GOTREF(__pyx_t_5); - __Pyx_DECREF(__pyx_t_11); __pyx_t_11 = 0; - __Pyx_DECREF(__pyx_t_8); __pyx_t_8 = 0; - } else - #endif - { - __pyx_t_9 = PyTuple_New(3+__pyx_t_10); if (unlikely(!__pyx_t_9)) __PYX_ERR(0, 79, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_9); - if (__pyx_t_6) { - __Pyx_GIVEREF(__pyx_t_6); PyTuple_SET_ITEM(__pyx_t_9, 0, __pyx_t_6); __pyx_t_6 = NULL; - } - __Pyx_INCREF(__pyx_v_data); - __Pyx_GIVEREF(__pyx_v_data); - PyTuple_SET_ITEM(__pyx_t_9, 0+__pyx_t_10, __pyx_v_data); - __Pyx_GIVEREF(__pyx_t_11); - PyTuple_SET_ITEM(__pyx_t_9, 1+__pyx_t_10, __pyx_t_11); - __Pyx_GIVEREF(__pyx_t_8); - PyTuple_SET_ITEM(__pyx_t_9, 2+__pyx_t_10, __pyx_t_8); - __pyx_t_11 = 0; - __pyx_t_8 = 0; - __pyx_t_5 = __Pyx_PyObject_Call(__pyx_t_7, __pyx_t_9, NULL); if (unlikely(!__pyx_t_5)) __PYX_ERR(0, 79, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_5); - __Pyx_DECREF(__pyx_t_9); __pyx_t_9 = 0; - } - __Pyx_DECREF(__pyx_t_7); __pyx_t_7 = 0; - if ((likely(PyTuple_CheckExact(__pyx_t_5))) || (PyList_CheckExact(__pyx_t_5))) { - PyObject* sequence = __pyx_t_5; - Py_ssize_t size = __Pyx_PySequence_SIZE(sequence); - if (unlikely(size != 2)) { - if (size > 2) __Pyx_RaiseTooManyValuesError(2); - else if (size >= 0) __Pyx_RaiseNeedMoreValuesError(size); - __PYX_ERR(0, 79, __pyx_L1_error) - } - #if CYTHON_ASSUME_SAFE_MACROS && !CYTHON_AVOID_BORROWED_REFS - if (likely(PyTuple_CheckExact(sequence))) { - __pyx_t_7 = PyTuple_GET_ITEM(sequence, 0); - __pyx_t_9 = PyTuple_GET_ITEM(sequence, 1); - } else { - __pyx_t_7 = PyList_GET_ITEM(sequence, 0); - __pyx_t_9 = PyList_GET_ITEM(sequence, 1); - } - __Pyx_INCREF(__pyx_t_7); - __Pyx_INCREF(__pyx_t_9); - #else - __pyx_t_7 = PySequence_ITEM(sequence, 0); if (unlikely(!__pyx_t_7)) __PYX_ERR(0, 79, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_7); - __pyx_t_9 = PySequence_ITEM(sequence, 1); if (unlikely(!__pyx_t_9)) __PYX_ERR(0, 79, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_9); - #endif - __Pyx_DECREF(__pyx_t_5); __pyx_t_5 = 0; - } else { - Py_ssize_t index = -1; - __pyx_t_8 = PyObject_GetIter(__pyx_t_5); if (unlikely(!__pyx_t_8)) __PYX_ERR(0, 79, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_8); - __Pyx_DECREF(__pyx_t_5); __pyx_t_5 = 0; - __pyx_t_12 = Py_TYPE(__pyx_t_8)->tp_iternext; - index = 0; __pyx_t_7 = __pyx_t_12(__pyx_t_8); if (unlikely(!__pyx_t_7)) goto __pyx_L19_unpacking_failed; - __Pyx_GOTREF(__pyx_t_7); - index = 1; __pyx_t_9 = __pyx_t_12(__pyx_t_8); if (unlikely(!__pyx_t_9)) goto __pyx_L19_unpacking_failed; - __Pyx_GOTREF(__pyx_t_9); - if (__Pyx_IternextUnpackEndCheck(__pyx_t_12(__pyx_t_8), 2) < 0) __PYX_ERR(0, 79, __pyx_L1_error) - __pyx_t_12 = NULL; - __Pyx_DECREF(__pyx_t_8); __pyx_t_8 = 0; - goto __pyx_L20_unpacking_done; - __pyx_L19_unpacking_failed:; - __Pyx_DECREF(__pyx_t_8); __pyx_t_8 = 0; - __pyx_t_12 = NULL; - if (__Pyx_IterFinish() == 0) __Pyx_RaiseNeedMoreValuesError(index); - __PYX_ERR(0, 79, __pyx_L1_error) - __pyx_L20_unpacking_done:; - } - if (!(likely(PyList_CheckExact(__pyx_t_9))||((__pyx_t_9) == Py_None)||(PyErr_Format(PyExc_TypeError, "Expected %.16s, got %.200s", "list", Py_TYPE(__pyx_t_9)->tp_name), 0))) __PYX_ERR(0, 79, __pyx_L1_error) - __Pyx_DECREF_SET(__pyx_v_fp_str_, __pyx_t_7); - __pyx_t_7 = 0; - __pyx_v_context_ = ((PyObject*)__pyx_t_9); - __pyx_t_9 = 0; - - /* "pmercury/utils/packet_proc.pyx":80 - * if buf[app_offset+5] == 1 and buf[app_offset+9] == 3: - * fp_str_, context_ = TLS.fingerprint(data, app_offset, data_len) - * fp_type = 'tls' # <<<<<<<<<<<<<< - * elif buf[app_offset+5] == 2 and buf[app_offset+9] == 3: - * fp_str_, context_ = TLS_Server.fingerprint(data, app_offset, data_len) - */ - __Pyx_INCREF(__pyx_n_u_tls); - __pyx_v_fp_type = __pyx_n_u_tls; - - /* "pmercury/utils/packet_proc.pyx":78 - * return None - * elif buf[app_offset] == 22 and buf[app_offset+1] == 3: - * if buf[app_offset+5] == 1 and buf[app_offset+9] == 3: # <<<<<<<<<<<<<< - * fp_str_, context_ = TLS.fingerprint(data, app_offset, data_len) - * fp_type = 'tls' - */ - goto __pyx_L16; - } - - /* "pmercury/utils/packet_proc.pyx":81 - * fp_str_, context_ = TLS.fingerprint(data, app_offset, data_len) - * fp_type = 'tls' - * elif buf[app_offset+5] == 2 and buf[app_offset+9] == 3: # <<<<<<<<<<<<<< - * fp_str_, context_ = TLS_Server.fingerprint(data, app_offset, data_len) - * fp_type = 'tls_server' - */ - __pyx_t_3 = (((__pyx_v_buf[(__pyx_v_app_offset + 5)]) == 2) != 0); - if (__pyx_t_3) { - } else { - __pyx_t_2 = __pyx_t_3; - goto __pyx_L21_bool_binop_done; - } - __pyx_t_3 = (((__pyx_v_buf[(__pyx_v_app_offset + 9)]) == 3) != 0); - __pyx_t_2 = __pyx_t_3; - __pyx_L21_bool_binop_done:; - if (__pyx_t_2) { - - /* "pmercury/utils/packet_proc.pyx":82 - * fp_type = 'tls' - * elif buf[app_offset+5] == 2 and buf[app_offset+9] == 3: - * fp_str_, context_ = TLS_Server.fingerprint(data, app_offset, data_len) # <<<<<<<<<<<<<< - * fp_type = 'tls_server' - * fp_str_2_, context_2_ = TLS_Certificate.fingerprint(data, app_offset, data_len) - */ - __Pyx_GetModuleGlobalName(__pyx_t_9, __pyx_n_s_TLS_Server); if (unlikely(!__pyx_t_9)) __PYX_ERR(0, 82, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_9); - __pyx_t_7 = __Pyx_PyObject_GetAttrStr(__pyx_t_9, __pyx_n_s_fingerprint); if (unlikely(!__pyx_t_7)) __PYX_ERR(0, 82, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_7); - __Pyx_DECREF(__pyx_t_9); __pyx_t_9 = 0; - __pyx_t_9 = __Pyx_PyInt_From_uint16_t(__pyx_v_app_offset); if (unlikely(!__pyx_t_9)) __PYX_ERR(0, 82, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_9); - __pyx_t_8 = __Pyx_PyInt_From_uint16_t(__pyx_v_data_len); if (unlikely(!__pyx_t_8)) __PYX_ERR(0, 82, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_8); - __pyx_t_11 = NULL; - __pyx_t_10 = 0; - if (CYTHON_UNPACK_METHODS && unlikely(PyMethod_Check(__pyx_t_7))) { - __pyx_t_11 = PyMethod_GET_SELF(__pyx_t_7); - if (likely(__pyx_t_11)) { - PyObject* function = PyMethod_GET_FUNCTION(__pyx_t_7); - __Pyx_INCREF(__pyx_t_11); - __Pyx_INCREF(function); - __Pyx_DECREF_SET(__pyx_t_7, function); - __pyx_t_10 = 1; - } - } - #if CYTHON_FAST_PYCALL - if (PyFunction_Check(__pyx_t_7)) { - PyObject *__pyx_temp[4] = {__pyx_t_11, __pyx_v_data, __pyx_t_9, __pyx_t_8}; - __pyx_t_5 = __Pyx_PyFunction_FastCall(__pyx_t_7, __pyx_temp+1-__pyx_t_10, 3+__pyx_t_10); if (unlikely(!__pyx_t_5)) __PYX_ERR(0, 82, __pyx_L1_error) - __Pyx_XDECREF(__pyx_t_11); __pyx_t_11 = 0; - __Pyx_GOTREF(__pyx_t_5); - __Pyx_DECREF(__pyx_t_9); __pyx_t_9 = 0; - __Pyx_DECREF(__pyx_t_8); __pyx_t_8 = 0; - } else - #endif - #if CYTHON_FAST_PYCCALL - if (__Pyx_PyFastCFunction_Check(__pyx_t_7)) { - PyObject *__pyx_temp[4] = {__pyx_t_11, __pyx_v_data, __pyx_t_9, __pyx_t_8}; - __pyx_t_5 = __Pyx_PyCFunction_FastCall(__pyx_t_7, __pyx_temp+1-__pyx_t_10, 3+__pyx_t_10); if (unlikely(!__pyx_t_5)) __PYX_ERR(0, 82, __pyx_L1_error) - __Pyx_XDECREF(__pyx_t_11); __pyx_t_11 = 0; - __Pyx_GOTREF(__pyx_t_5); - __Pyx_DECREF(__pyx_t_9); __pyx_t_9 = 0; - __Pyx_DECREF(__pyx_t_8); __pyx_t_8 = 0; - } else - #endif - { - __pyx_t_6 = PyTuple_New(3+__pyx_t_10); if (unlikely(!__pyx_t_6)) __PYX_ERR(0, 82, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_6); - if (__pyx_t_11) { - __Pyx_GIVEREF(__pyx_t_11); PyTuple_SET_ITEM(__pyx_t_6, 0, __pyx_t_11); __pyx_t_11 = NULL; - } - __Pyx_INCREF(__pyx_v_data); - __Pyx_GIVEREF(__pyx_v_data); - PyTuple_SET_ITEM(__pyx_t_6, 0+__pyx_t_10, __pyx_v_data); - __Pyx_GIVEREF(__pyx_t_9); - PyTuple_SET_ITEM(__pyx_t_6, 1+__pyx_t_10, __pyx_t_9); - __Pyx_GIVEREF(__pyx_t_8); - PyTuple_SET_ITEM(__pyx_t_6, 2+__pyx_t_10, __pyx_t_8); - __pyx_t_9 = 0; - __pyx_t_8 = 0; - __pyx_t_5 = __Pyx_PyObject_Call(__pyx_t_7, __pyx_t_6, NULL); if (unlikely(!__pyx_t_5)) __PYX_ERR(0, 82, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_5); - __Pyx_DECREF(__pyx_t_6); __pyx_t_6 = 0; - } - __Pyx_DECREF(__pyx_t_7); __pyx_t_7 = 0; - if ((likely(PyTuple_CheckExact(__pyx_t_5))) || (PyList_CheckExact(__pyx_t_5))) { - PyObject* sequence = __pyx_t_5; - Py_ssize_t size = __Pyx_PySequence_SIZE(sequence); - if (unlikely(size != 2)) { - if (size > 2) __Pyx_RaiseTooManyValuesError(2); - else if (size >= 0) __Pyx_RaiseNeedMoreValuesError(size); - __PYX_ERR(0, 82, __pyx_L1_error) - } - #if CYTHON_ASSUME_SAFE_MACROS && !CYTHON_AVOID_BORROWED_REFS - if (likely(PyTuple_CheckExact(sequence))) { - __pyx_t_7 = PyTuple_GET_ITEM(sequence, 0); - __pyx_t_6 = PyTuple_GET_ITEM(sequence, 1); - } else { - __pyx_t_7 = PyList_GET_ITEM(sequence, 0); - __pyx_t_6 = PyList_GET_ITEM(sequence, 1); - } - __Pyx_INCREF(__pyx_t_7); - __Pyx_INCREF(__pyx_t_6); - #else - __pyx_t_7 = PySequence_ITEM(sequence, 0); if (unlikely(!__pyx_t_7)) __PYX_ERR(0, 82, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_7); - __pyx_t_6 = PySequence_ITEM(sequence, 1); if (unlikely(!__pyx_t_6)) __PYX_ERR(0, 82, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_6); - #endif - __Pyx_DECREF(__pyx_t_5); __pyx_t_5 = 0; - } else { - Py_ssize_t index = -1; - __pyx_t_8 = PyObject_GetIter(__pyx_t_5); if (unlikely(!__pyx_t_8)) __PYX_ERR(0, 82, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_8); - __Pyx_DECREF(__pyx_t_5); __pyx_t_5 = 0; - __pyx_t_12 = Py_TYPE(__pyx_t_8)->tp_iternext; - index = 0; __pyx_t_7 = __pyx_t_12(__pyx_t_8); if (unlikely(!__pyx_t_7)) goto __pyx_L23_unpacking_failed; - __Pyx_GOTREF(__pyx_t_7); - index = 1; __pyx_t_6 = __pyx_t_12(__pyx_t_8); if (unlikely(!__pyx_t_6)) goto __pyx_L23_unpacking_failed; - __Pyx_GOTREF(__pyx_t_6); - if (__Pyx_IternextUnpackEndCheck(__pyx_t_12(__pyx_t_8), 2) < 0) __PYX_ERR(0, 82, __pyx_L1_error) - __pyx_t_12 = NULL; - __Pyx_DECREF(__pyx_t_8); __pyx_t_8 = 0; - goto __pyx_L24_unpacking_done; - __pyx_L23_unpacking_failed:; - __Pyx_DECREF(__pyx_t_8); __pyx_t_8 = 0; - __pyx_t_12 = NULL; - if (__Pyx_IterFinish() == 0) __Pyx_RaiseNeedMoreValuesError(index); - __PYX_ERR(0, 82, __pyx_L1_error) - __pyx_L24_unpacking_done:; - } - if (!(likely(PyList_CheckExact(__pyx_t_6))||((__pyx_t_6) == Py_None)||(PyErr_Format(PyExc_TypeError, "Expected %.16s, got %.200s", "list", Py_TYPE(__pyx_t_6)->tp_name), 0))) __PYX_ERR(0, 82, __pyx_L1_error) - __Pyx_DECREF_SET(__pyx_v_fp_str_, __pyx_t_7); - __pyx_t_7 = 0; - __pyx_v_context_ = ((PyObject*)__pyx_t_6); - __pyx_t_6 = 0; - - /* "pmercury/utils/packet_proc.pyx":83 - * elif buf[app_offset+5] == 2 and buf[app_offset+9] == 3: - * fp_str_, context_ = TLS_Server.fingerprint(data, app_offset, data_len) - * fp_type = 'tls_server' # <<<<<<<<<<<<<< - * fp_str_2_, context_2_ = TLS_Certificate.fingerprint(data, app_offset, data_len) - * fp_type_2 = 'server_certs' - */ - __Pyx_INCREF(__pyx_n_u_tls_server); - __pyx_v_fp_type = __pyx_n_u_tls_server; - - /* "pmercury/utils/packet_proc.pyx":84 - * fp_str_, context_ = TLS_Server.fingerprint(data, app_offset, data_len) - * fp_type = 'tls_server' - * fp_str_2_, context_2_ = TLS_Certificate.fingerprint(data, app_offset, data_len) # <<<<<<<<<<<<<< - * fp_type_2 = 'server_certs' - * elif buf[app_offset+5] == 11: - */ - __Pyx_GetModuleGlobalName(__pyx_t_6, __pyx_n_s_TLS_Certificate); if (unlikely(!__pyx_t_6)) __PYX_ERR(0, 84, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_6); - __pyx_t_7 = __Pyx_PyObject_GetAttrStr(__pyx_t_6, __pyx_n_s_fingerprint); if (unlikely(!__pyx_t_7)) __PYX_ERR(0, 84, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_7); - __Pyx_DECREF(__pyx_t_6); __pyx_t_6 = 0; - __pyx_t_6 = __Pyx_PyInt_From_uint16_t(__pyx_v_app_offset); if (unlikely(!__pyx_t_6)) __PYX_ERR(0, 84, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_6); - __pyx_t_8 = __Pyx_PyInt_From_uint16_t(__pyx_v_data_len); if (unlikely(!__pyx_t_8)) __PYX_ERR(0, 84, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_8); - __pyx_t_9 = NULL; - __pyx_t_10 = 0; - if (CYTHON_UNPACK_METHODS && unlikely(PyMethod_Check(__pyx_t_7))) { - __pyx_t_9 = PyMethod_GET_SELF(__pyx_t_7); - if (likely(__pyx_t_9)) { - PyObject* function = PyMethod_GET_FUNCTION(__pyx_t_7); - __Pyx_INCREF(__pyx_t_9); - __Pyx_INCREF(function); - __Pyx_DECREF_SET(__pyx_t_7, function); - __pyx_t_10 = 1; - } - } - #if CYTHON_FAST_PYCALL - if (PyFunction_Check(__pyx_t_7)) { - PyObject *__pyx_temp[4] = {__pyx_t_9, __pyx_v_data, __pyx_t_6, __pyx_t_8}; - __pyx_t_5 = __Pyx_PyFunction_FastCall(__pyx_t_7, __pyx_temp+1-__pyx_t_10, 3+__pyx_t_10); if (unlikely(!__pyx_t_5)) __PYX_ERR(0, 84, __pyx_L1_error) - __Pyx_XDECREF(__pyx_t_9); __pyx_t_9 = 0; - __Pyx_GOTREF(__pyx_t_5); - __Pyx_DECREF(__pyx_t_6); __pyx_t_6 = 0; - __Pyx_DECREF(__pyx_t_8); __pyx_t_8 = 0; - } else - #endif - #if CYTHON_FAST_PYCCALL - if (__Pyx_PyFastCFunction_Check(__pyx_t_7)) { - PyObject *__pyx_temp[4] = {__pyx_t_9, __pyx_v_data, __pyx_t_6, __pyx_t_8}; - __pyx_t_5 = __Pyx_PyCFunction_FastCall(__pyx_t_7, __pyx_temp+1-__pyx_t_10, 3+__pyx_t_10); if (unlikely(!__pyx_t_5)) __PYX_ERR(0, 84, __pyx_L1_error) - __Pyx_XDECREF(__pyx_t_9); __pyx_t_9 = 0; - __Pyx_GOTREF(__pyx_t_5); - __Pyx_DECREF(__pyx_t_6); __pyx_t_6 = 0; - __Pyx_DECREF(__pyx_t_8); __pyx_t_8 = 0; - } else - #endif - { - __pyx_t_11 = PyTuple_New(3+__pyx_t_10); if (unlikely(!__pyx_t_11)) __PYX_ERR(0, 84, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_11); - if (__pyx_t_9) { - __Pyx_GIVEREF(__pyx_t_9); PyTuple_SET_ITEM(__pyx_t_11, 0, __pyx_t_9); __pyx_t_9 = NULL; - } - __Pyx_INCREF(__pyx_v_data); - __Pyx_GIVEREF(__pyx_v_data); - PyTuple_SET_ITEM(__pyx_t_11, 0+__pyx_t_10, __pyx_v_data); - __Pyx_GIVEREF(__pyx_t_6); - PyTuple_SET_ITEM(__pyx_t_11, 1+__pyx_t_10, __pyx_t_6); - __Pyx_GIVEREF(__pyx_t_8); - PyTuple_SET_ITEM(__pyx_t_11, 2+__pyx_t_10, __pyx_t_8); - __pyx_t_6 = 0; - __pyx_t_8 = 0; - __pyx_t_5 = __Pyx_PyObject_Call(__pyx_t_7, __pyx_t_11, NULL); if (unlikely(!__pyx_t_5)) __PYX_ERR(0, 84, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_5); - __Pyx_DECREF(__pyx_t_11); __pyx_t_11 = 0; - } - __Pyx_DECREF(__pyx_t_7); __pyx_t_7 = 0; - if ((likely(PyTuple_CheckExact(__pyx_t_5))) || (PyList_CheckExact(__pyx_t_5))) { - PyObject* sequence = __pyx_t_5; - Py_ssize_t size = __Pyx_PySequence_SIZE(sequence); - if (unlikely(size != 2)) { - if (size > 2) __Pyx_RaiseTooManyValuesError(2); - else if (size >= 0) __Pyx_RaiseNeedMoreValuesError(size); - __PYX_ERR(0, 84, __pyx_L1_error) - } - #if CYTHON_ASSUME_SAFE_MACROS && !CYTHON_AVOID_BORROWED_REFS - if (likely(PyTuple_CheckExact(sequence))) { - __pyx_t_7 = PyTuple_GET_ITEM(sequence, 0); - __pyx_t_11 = PyTuple_GET_ITEM(sequence, 1); - } else { - __pyx_t_7 = PyList_GET_ITEM(sequence, 0); - __pyx_t_11 = PyList_GET_ITEM(sequence, 1); - } - __Pyx_INCREF(__pyx_t_7); - __Pyx_INCREF(__pyx_t_11); - #else - __pyx_t_7 = PySequence_ITEM(sequence, 0); if (unlikely(!__pyx_t_7)) __PYX_ERR(0, 84, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_7); - __pyx_t_11 = PySequence_ITEM(sequence, 1); if (unlikely(!__pyx_t_11)) __PYX_ERR(0, 84, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_11); - #endif - __Pyx_DECREF(__pyx_t_5); __pyx_t_5 = 0; - } else { - Py_ssize_t index = -1; - __pyx_t_8 = PyObject_GetIter(__pyx_t_5); if (unlikely(!__pyx_t_8)) __PYX_ERR(0, 84, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_8); - __Pyx_DECREF(__pyx_t_5); __pyx_t_5 = 0; - __pyx_t_12 = Py_TYPE(__pyx_t_8)->tp_iternext; - index = 0; __pyx_t_7 = __pyx_t_12(__pyx_t_8); if (unlikely(!__pyx_t_7)) goto __pyx_L25_unpacking_failed; - __Pyx_GOTREF(__pyx_t_7); - index = 1; __pyx_t_11 = __pyx_t_12(__pyx_t_8); if (unlikely(!__pyx_t_11)) goto __pyx_L25_unpacking_failed; - __Pyx_GOTREF(__pyx_t_11); - if (__Pyx_IternextUnpackEndCheck(__pyx_t_12(__pyx_t_8), 2) < 0) __PYX_ERR(0, 84, __pyx_L1_error) - __pyx_t_12 = NULL; - __Pyx_DECREF(__pyx_t_8); __pyx_t_8 = 0; - goto __pyx_L26_unpacking_done; - __pyx_L25_unpacking_failed:; - __Pyx_DECREF(__pyx_t_8); __pyx_t_8 = 0; - __pyx_t_12 = NULL; - if (__Pyx_IterFinish() == 0) __Pyx_RaiseNeedMoreValuesError(index); - __PYX_ERR(0, 84, __pyx_L1_error) - __pyx_L26_unpacking_done:; - } - if (!(likely(PyList_CheckExact(__pyx_t_11))||((__pyx_t_11) == Py_None)||(PyErr_Format(PyExc_TypeError, "Expected %.16s, got %.200s", "list", Py_TYPE(__pyx_t_11)->tp_name), 0))) __PYX_ERR(0, 84, __pyx_L1_error) - __Pyx_DECREF_SET(__pyx_v_fp_str_2_, __pyx_t_7); - __pyx_t_7 = 0; - __pyx_v_context_2_ = ((PyObject*)__pyx_t_11); - __pyx_t_11 = 0; - - /* "pmercury/utils/packet_proc.pyx":85 - * fp_type = 'tls_server' - * fp_str_2_, context_2_ = TLS_Certificate.fingerprint(data, app_offset, data_len) - * fp_type_2 = 'server_certs' # <<<<<<<<<<<<<< - * elif buf[app_offset+5] == 11: - * fp_str_, context_ = TLS_Certificate.fingerprint(data, app_offset, data_len) - */ - __Pyx_INCREF(__pyx_n_u_server_certs); - __pyx_v_fp_type_2 = __pyx_n_u_server_certs; - - /* "pmercury/utils/packet_proc.pyx":81 - * fp_str_, context_ = TLS.fingerprint(data, app_offset, data_len) - * fp_type = 'tls' - * elif buf[app_offset+5] == 2 and buf[app_offset+9] == 3: # <<<<<<<<<<<<<< - * fp_str_, context_ = TLS_Server.fingerprint(data, app_offset, data_len) - * fp_type = 'tls_server' - */ - goto __pyx_L16; - } - - /* "pmercury/utils/packet_proc.pyx":86 - * fp_str_2_, context_2_ = TLS_Certificate.fingerprint(data, app_offset, data_len) - * fp_type_2 = 'server_certs' - * elif buf[app_offset+5] == 11: # <<<<<<<<<<<<<< - * fp_str_, context_ = TLS_Certificate.fingerprint(data, app_offset, data_len) - * fp_type = 'server_certs' - */ - __pyx_t_2 = (((__pyx_v_buf[(__pyx_v_app_offset + 5)]) == 11) != 0); - if (__pyx_t_2) { - - /* "pmercury/utils/packet_proc.pyx":87 - * fp_type_2 = 'server_certs' - * elif buf[app_offset+5] == 11: - * fp_str_, context_ = TLS_Certificate.fingerprint(data, app_offset, data_len) # <<<<<<<<<<<<<< - * fp_type = 'server_certs' - * elif buf[app_offset+2] == 84: - */ - __Pyx_GetModuleGlobalName(__pyx_t_11, __pyx_n_s_TLS_Certificate); if (unlikely(!__pyx_t_11)) __PYX_ERR(0, 87, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_11); - __pyx_t_7 = __Pyx_PyObject_GetAttrStr(__pyx_t_11, __pyx_n_s_fingerprint); if (unlikely(!__pyx_t_7)) __PYX_ERR(0, 87, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_7); - __Pyx_DECREF(__pyx_t_11); __pyx_t_11 = 0; - __pyx_t_11 = __Pyx_PyInt_From_uint16_t(__pyx_v_app_offset); if (unlikely(!__pyx_t_11)) __PYX_ERR(0, 87, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_11); - __pyx_t_8 = __Pyx_PyInt_From_uint16_t(__pyx_v_data_len); if (unlikely(!__pyx_t_8)) __PYX_ERR(0, 87, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_8); - __pyx_t_6 = NULL; - __pyx_t_10 = 0; - if (CYTHON_UNPACK_METHODS && unlikely(PyMethod_Check(__pyx_t_7))) { - __pyx_t_6 = PyMethod_GET_SELF(__pyx_t_7); - if (likely(__pyx_t_6)) { - PyObject* function = PyMethod_GET_FUNCTION(__pyx_t_7); - __Pyx_INCREF(__pyx_t_6); - __Pyx_INCREF(function); - __Pyx_DECREF_SET(__pyx_t_7, function); - __pyx_t_10 = 1; - } - } - #if CYTHON_FAST_PYCALL - if (PyFunction_Check(__pyx_t_7)) { - PyObject *__pyx_temp[4] = {__pyx_t_6, __pyx_v_data, __pyx_t_11, __pyx_t_8}; - __pyx_t_5 = __Pyx_PyFunction_FastCall(__pyx_t_7, __pyx_temp+1-__pyx_t_10, 3+__pyx_t_10); if (unlikely(!__pyx_t_5)) __PYX_ERR(0, 87, __pyx_L1_error) - __Pyx_XDECREF(__pyx_t_6); __pyx_t_6 = 0; - __Pyx_GOTREF(__pyx_t_5); - __Pyx_DECREF(__pyx_t_11); __pyx_t_11 = 0; - __Pyx_DECREF(__pyx_t_8); __pyx_t_8 = 0; - } else - #endif - #if CYTHON_FAST_PYCCALL - if (__Pyx_PyFastCFunction_Check(__pyx_t_7)) { - PyObject *__pyx_temp[4] = {__pyx_t_6, __pyx_v_data, __pyx_t_11, __pyx_t_8}; - __pyx_t_5 = __Pyx_PyCFunction_FastCall(__pyx_t_7, __pyx_temp+1-__pyx_t_10, 3+__pyx_t_10); if (unlikely(!__pyx_t_5)) __PYX_ERR(0, 87, __pyx_L1_error) - __Pyx_XDECREF(__pyx_t_6); __pyx_t_6 = 0; - __Pyx_GOTREF(__pyx_t_5); - __Pyx_DECREF(__pyx_t_11); __pyx_t_11 = 0; - __Pyx_DECREF(__pyx_t_8); __pyx_t_8 = 0; - } else - #endif - { - __pyx_t_9 = PyTuple_New(3+__pyx_t_10); if (unlikely(!__pyx_t_9)) __PYX_ERR(0, 87, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_9); - if (__pyx_t_6) { - __Pyx_GIVEREF(__pyx_t_6); PyTuple_SET_ITEM(__pyx_t_9, 0, __pyx_t_6); __pyx_t_6 = NULL; - } - __Pyx_INCREF(__pyx_v_data); - __Pyx_GIVEREF(__pyx_v_data); - PyTuple_SET_ITEM(__pyx_t_9, 0+__pyx_t_10, __pyx_v_data); - __Pyx_GIVEREF(__pyx_t_11); - PyTuple_SET_ITEM(__pyx_t_9, 1+__pyx_t_10, __pyx_t_11); - __Pyx_GIVEREF(__pyx_t_8); - PyTuple_SET_ITEM(__pyx_t_9, 2+__pyx_t_10, __pyx_t_8); - __pyx_t_11 = 0; - __pyx_t_8 = 0; - __pyx_t_5 = __Pyx_PyObject_Call(__pyx_t_7, __pyx_t_9, NULL); if (unlikely(!__pyx_t_5)) __PYX_ERR(0, 87, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_5); - __Pyx_DECREF(__pyx_t_9); __pyx_t_9 = 0; - } - __Pyx_DECREF(__pyx_t_7); __pyx_t_7 = 0; - if ((likely(PyTuple_CheckExact(__pyx_t_5))) || (PyList_CheckExact(__pyx_t_5))) { - PyObject* sequence = __pyx_t_5; - Py_ssize_t size = __Pyx_PySequence_SIZE(sequence); - if (unlikely(size != 2)) { - if (size > 2) __Pyx_RaiseTooManyValuesError(2); - else if (size >= 0) __Pyx_RaiseNeedMoreValuesError(size); - __PYX_ERR(0, 87, __pyx_L1_error) - } - #if CYTHON_ASSUME_SAFE_MACROS && !CYTHON_AVOID_BORROWED_REFS - if (likely(PyTuple_CheckExact(sequence))) { - __pyx_t_7 = PyTuple_GET_ITEM(sequence, 0); - __pyx_t_9 = PyTuple_GET_ITEM(sequence, 1); - } else { - __pyx_t_7 = PyList_GET_ITEM(sequence, 0); - __pyx_t_9 = PyList_GET_ITEM(sequence, 1); - } - __Pyx_INCREF(__pyx_t_7); - __Pyx_INCREF(__pyx_t_9); - #else - __pyx_t_7 = PySequence_ITEM(sequence, 0); if (unlikely(!__pyx_t_7)) __PYX_ERR(0, 87, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_7); - __pyx_t_9 = PySequence_ITEM(sequence, 1); if (unlikely(!__pyx_t_9)) __PYX_ERR(0, 87, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_9); - #endif - __Pyx_DECREF(__pyx_t_5); __pyx_t_5 = 0; - } else { - Py_ssize_t index = -1; - __pyx_t_8 = PyObject_GetIter(__pyx_t_5); if (unlikely(!__pyx_t_8)) __PYX_ERR(0, 87, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_8); - __Pyx_DECREF(__pyx_t_5); __pyx_t_5 = 0; - __pyx_t_12 = Py_TYPE(__pyx_t_8)->tp_iternext; - index = 0; __pyx_t_7 = __pyx_t_12(__pyx_t_8); if (unlikely(!__pyx_t_7)) goto __pyx_L27_unpacking_failed; - __Pyx_GOTREF(__pyx_t_7); - index = 1; __pyx_t_9 = __pyx_t_12(__pyx_t_8); if (unlikely(!__pyx_t_9)) goto __pyx_L27_unpacking_failed; - __Pyx_GOTREF(__pyx_t_9); - if (__Pyx_IternextUnpackEndCheck(__pyx_t_12(__pyx_t_8), 2) < 0) __PYX_ERR(0, 87, __pyx_L1_error) - __pyx_t_12 = NULL; - __Pyx_DECREF(__pyx_t_8); __pyx_t_8 = 0; - goto __pyx_L28_unpacking_done; - __pyx_L27_unpacking_failed:; - __Pyx_DECREF(__pyx_t_8); __pyx_t_8 = 0; - __pyx_t_12 = NULL; - if (__Pyx_IterFinish() == 0) __Pyx_RaiseNeedMoreValuesError(index); - __PYX_ERR(0, 87, __pyx_L1_error) - __pyx_L28_unpacking_done:; - } - if (!(likely(PyList_CheckExact(__pyx_t_9))||((__pyx_t_9) == Py_None)||(PyErr_Format(PyExc_TypeError, "Expected %.16s, got %.200s", "list", Py_TYPE(__pyx_t_9)->tp_name), 0))) __PYX_ERR(0, 87, __pyx_L1_error) - __Pyx_DECREF_SET(__pyx_v_fp_str_, __pyx_t_7); - __pyx_t_7 = 0; - __pyx_v_context_ = ((PyObject*)__pyx_t_9); - __pyx_t_9 = 0; - - /* "pmercury/utils/packet_proc.pyx":88 - * elif buf[app_offset+5] == 11: - * fp_str_, context_ = TLS_Certificate.fingerprint(data, app_offset, data_len) - * fp_type = 'server_certs' # <<<<<<<<<<<<<< - * elif buf[app_offset+2] == 84: - * if (buf[app_offset] == 71 and buf[app_offset+3] == 32): - */ - __Pyx_INCREF(__pyx_n_u_server_certs); - __pyx_v_fp_type = __pyx_n_u_server_certs; - - /* "pmercury/utils/packet_proc.pyx":86 - * fp_str_2_, context_2_ = TLS_Certificate.fingerprint(data, app_offset, data_len) - * fp_type_2 = 'server_certs' - * elif buf[app_offset+5] == 11: # <<<<<<<<<<<<<< - * fp_str_, context_ = TLS_Certificate.fingerprint(data, app_offset, data_len) - * fp_type = 'server_certs' - */ - } - __pyx_L16:; - - /* "pmercury/utils/packet_proc.pyx":77 - * elif data_len - app_offset < 16: - * return None - * elif buf[app_offset] == 22 and buf[app_offset+1] == 3: # <<<<<<<<<<<<<< - * if buf[app_offset+5] == 1 and buf[app_offset+9] == 3: - * fp_str_, context_ = TLS.fingerprint(data, app_offset, data_len) - */ - goto __pyx_L11; - } - - /* "pmercury/utils/packet_proc.pyx":89 - * fp_str_, context_ = TLS_Certificate.fingerprint(data, app_offset, data_len) - * fp_type = 'server_certs' - * elif buf[app_offset+2] == 84: # <<<<<<<<<<<<<< - * if (buf[app_offset] == 71 and buf[app_offset+3] == 32): - * fp_str_, context_ = HTTP.fingerprint(data, app_offset, data_len) - */ - __pyx_t_2 = (((__pyx_v_buf[(__pyx_v_app_offset + 2)]) == 84) != 0); - if (__pyx_t_2) { - - /* "pmercury/utils/packet_proc.pyx":90 - * fp_type = 'server_certs' - * elif buf[app_offset+2] == 84: - * if (buf[app_offset] == 71 and buf[app_offset+3] == 32): # <<<<<<<<<<<<<< - * fp_str_, context_ = HTTP.fingerprint(data, app_offset, data_len) - * fp_type = 'http' - */ - __pyx_t_3 = (((__pyx_v_buf[__pyx_v_app_offset]) == 71) != 0); - if (__pyx_t_3) { - } else { - __pyx_t_2 = __pyx_t_3; - goto __pyx_L30_bool_binop_done; - } - __pyx_t_3 = (((__pyx_v_buf[(__pyx_v_app_offset + 3)]) == 32) != 0); - __pyx_t_2 = __pyx_t_3; - __pyx_L30_bool_binop_done:; - if (__pyx_t_2) { - - /* "pmercury/utils/packet_proc.pyx":91 - * elif buf[app_offset+2] == 84: - * if (buf[app_offset] == 71 and buf[app_offset+3] == 32): - * fp_str_, context_ = HTTP.fingerprint(data, app_offset, data_len) # <<<<<<<<<<<<<< - * fp_type = 'http' - * elif (buf[app_offset] == 72 and buf[app_offset+5] == 49): - */ - __Pyx_GetModuleGlobalName(__pyx_t_9, __pyx_n_s_HTTP); if (unlikely(!__pyx_t_9)) __PYX_ERR(0, 91, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_9); - __pyx_t_7 = __Pyx_PyObject_GetAttrStr(__pyx_t_9, __pyx_n_s_fingerprint); if (unlikely(!__pyx_t_7)) __PYX_ERR(0, 91, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_7); - __Pyx_DECREF(__pyx_t_9); __pyx_t_9 = 0; - __pyx_t_9 = __Pyx_PyInt_From_uint16_t(__pyx_v_app_offset); if (unlikely(!__pyx_t_9)) __PYX_ERR(0, 91, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_9); - __pyx_t_8 = __Pyx_PyInt_From_uint16_t(__pyx_v_data_len); if (unlikely(!__pyx_t_8)) __PYX_ERR(0, 91, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_8); - __pyx_t_11 = NULL; - __pyx_t_10 = 0; - if (CYTHON_UNPACK_METHODS && unlikely(PyMethod_Check(__pyx_t_7))) { - __pyx_t_11 = PyMethod_GET_SELF(__pyx_t_7); - if (likely(__pyx_t_11)) { - PyObject* function = PyMethod_GET_FUNCTION(__pyx_t_7); - __Pyx_INCREF(__pyx_t_11); - __Pyx_INCREF(function); - __Pyx_DECREF_SET(__pyx_t_7, function); - __pyx_t_10 = 1; - } - } - #if CYTHON_FAST_PYCALL - if (PyFunction_Check(__pyx_t_7)) { - PyObject *__pyx_temp[4] = {__pyx_t_11, __pyx_v_data, __pyx_t_9, __pyx_t_8}; - __pyx_t_5 = __Pyx_PyFunction_FastCall(__pyx_t_7, __pyx_temp+1-__pyx_t_10, 3+__pyx_t_10); if (unlikely(!__pyx_t_5)) __PYX_ERR(0, 91, __pyx_L1_error) - __Pyx_XDECREF(__pyx_t_11); __pyx_t_11 = 0; - __Pyx_GOTREF(__pyx_t_5); - __Pyx_DECREF(__pyx_t_9); __pyx_t_9 = 0; - __Pyx_DECREF(__pyx_t_8); __pyx_t_8 = 0; - } else - #endif - #if CYTHON_FAST_PYCCALL - if (__Pyx_PyFastCFunction_Check(__pyx_t_7)) { - PyObject *__pyx_temp[4] = {__pyx_t_11, __pyx_v_data, __pyx_t_9, __pyx_t_8}; - __pyx_t_5 = __Pyx_PyCFunction_FastCall(__pyx_t_7, __pyx_temp+1-__pyx_t_10, 3+__pyx_t_10); if (unlikely(!__pyx_t_5)) __PYX_ERR(0, 91, __pyx_L1_error) - __Pyx_XDECREF(__pyx_t_11); __pyx_t_11 = 0; - __Pyx_GOTREF(__pyx_t_5); - __Pyx_DECREF(__pyx_t_9); __pyx_t_9 = 0; - __Pyx_DECREF(__pyx_t_8); __pyx_t_8 = 0; - } else - #endif - { - __pyx_t_6 = PyTuple_New(3+__pyx_t_10); if (unlikely(!__pyx_t_6)) __PYX_ERR(0, 91, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_6); - if (__pyx_t_11) { - __Pyx_GIVEREF(__pyx_t_11); PyTuple_SET_ITEM(__pyx_t_6, 0, __pyx_t_11); __pyx_t_11 = NULL; - } - __Pyx_INCREF(__pyx_v_data); - __Pyx_GIVEREF(__pyx_v_data); - PyTuple_SET_ITEM(__pyx_t_6, 0+__pyx_t_10, __pyx_v_data); - __Pyx_GIVEREF(__pyx_t_9); - PyTuple_SET_ITEM(__pyx_t_6, 1+__pyx_t_10, __pyx_t_9); - __Pyx_GIVEREF(__pyx_t_8); - PyTuple_SET_ITEM(__pyx_t_6, 2+__pyx_t_10, __pyx_t_8); - __pyx_t_9 = 0; - __pyx_t_8 = 0; - __pyx_t_5 = __Pyx_PyObject_Call(__pyx_t_7, __pyx_t_6, NULL); if (unlikely(!__pyx_t_5)) __PYX_ERR(0, 91, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_5); - __Pyx_DECREF(__pyx_t_6); __pyx_t_6 = 0; - } - __Pyx_DECREF(__pyx_t_7); __pyx_t_7 = 0; - if ((likely(PyTuple_CheckExact(__pyx_t_5))) || (PyList_CheckExact(__pyx_t_5))) { - PyObject* sequence = __pyx_t_5; - Py_ssize_t size = __Pyx_PySequence_SIZE(sequence); - if (unlikely(size != 2)) { - if (size > 2) __Pyx_RaiseTooManyValuesError(2); - else if (size >= 0) __Pyx_RaiseNeedMoreValuesError(size); - __PYX_ERR(0, 91, __pyx_L1_error) - } - #if CYTHON_ASSUME_SAFE_MACROS && !CYTHON_AVOID_BORROWED_REFS - if (likely(PyTuple_CheckExact(sequence))) { - __pyx_t_7 = PyTuple_GET_ITEM(sequence, 0); - __pyx_t_6 = PyTuple_GET_ITEM(sequence, 1); - } else { - __pyx_t_7 = PyList_GET_ITEM(sequence, 0); - __pyx_t_6 = PyList_GET_ITEM(sequence, 1); - } - __Pyx_INCREF(__pyx_t_7); - __Pyx_INCREF(__pyx_t_6); - #else - __pyx_t_7 = PySequence_ITEM(sequence, 0); if (unlikely(!__pyx_t_7)) __PYX_ERR(0, 91, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_7); - __pyx_t_6 = PySequence_ITEM(sequence, 1); if (unlikely(!__pyx_t_6)) __PYX_ERR(0, 91, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_6); - #endif - __Pyx_DECREF(__pyx_t_5); __pyx_t_5 = 0; - } else { - Py_ssize_t index = -1; - __pyx_t_8 = PyObject_GetIter(__pyx_t_5); if (unlikely(!__pyx_t_8)) __PYX_ERR(0, 91, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_8); - __Pyx_DECREF(__pyx_t_5); __pyx_t_5 = 0; - __pyx_t_12 = Py_TYPE(__pyx_t_8)->tp_iternext; - index = 0; __pyx_t_7 = __pyx_t_12(__pyx_t_8); if (unlikely(!__pyx_t_7)) goto __pyx_L32_unpacking_failed; - __Pyx_GOTREF(__pyx_t_7); - index = 1; __pyx_t_6 = __pyx_t_12(__pyx_t_8); if (unlikely(!__pyx_t_6)) goto __pyx_L32_unpacking_failed; - __Pyx_GOTREF(__pyx_t_6); - if (__Pyx_IternextUnpackEndCheck(__pyx_t_12(__pyx_t_8), 2) < 0) __PYX_ERR(0, 91, __pyx_L1_error) - __pyx_t_12 = NULL; - __Pyx_DECREF(__pyx_t_8); __pyx_t_8 = 0; - goto __pyx_L33_unpacking_done; - __pyx_L32_unpacking_failed:; - __Pyx_DECREF(__pyx_t_8); __pyx_t_8 = 0; - __pyx_t_12 = NULL; - if (__Pyx_IterFinish() == 0) __Pyx_RaiseNeedMoreValuesError(index); - __PYX_ERR(0, 91, __pyx_L1_error) - __pyx_L33_unpacking_done:; - } - if (!(likely(PyList_CheckExact(__pyx_t_6))||((__pyx_t_6) == Py_None)||(PyErr_Format(PyExc_TypeError, "Expected %.16s, got %.200s", "list", Py_TYPE(__pyx_t_6)->tp_name), 0))) __PYX_ERR(0, 91, __pyx_L1_error) - __Pyx_DECREF_SET(__pyx_v_fp_str_, __pyx_t_7); - __pyx_t_7 = 0; - __pyx_v_context_ = ((PyObject*)__pyx_t_6); - __pyx_t_6 = 0; - - /* "pmercury/utils/packet_proc.pyx":92 - * if (buf[app_offset] == 71 and buf[app_offset+3] == 32): - * fp_str_, context_ = HTTP.fingerprint(data, app_offset, data_len) - * fp_type = 'http' # <<<<<<<<<<<<<< - * elif (buf[app_offset] == 72 and buf[app_offset+5] == 49): - * fp_str_, context_ = HTTP_Server.fingerprint(data, app_offset, data_len) - */ - __Pyx_INCREF(__pyx_n_u_http); - __pyx_v_fp_type = __pyx_n_u_http; - - /* "pmercury/utils/packet_proc.pyx":90 - * fp_type = 'server_certs' - * elif buf[app_offset+2] == 84: - * if (buf[app_offset] == 71 and buf[app_offset+3] == 32): # <<<<<<<<<<<<<< - * fp_str_, context_ = HTTP.fingerprint(data, app_offset, data_len) - * fp_type = 'http' - */ - goto __pyx_L29; - } - - /* "pmercury/utils/packet_proc.pyx":93 - * fp_str_, context_ = HTTP.fingerprint(data, app_offset, data_len) - * fp_type = 'http' - * elif (buf[app_offset] == 72 and buf[app_offset+5] == 49): # <<<<<<<<<<<<<< - * fp_str_, context_ = HTTP_Server.fingerprint(data, app_offset, data_len) - * fp_type = 'http_server' - */ - __pyx_t_3 = (((__pyx_v_buf[__pyx_v_app_offset]) == 72) != 0); - if (__pyx_t_3) { - } else { - __pyx_t_2 = __pyx_t_3; - goto __pyx_L34_bool_binop_done; - } - __pyx_t_3 = (((__pyx_v_buf[(__pyx_v_app_offset + 5)]) == 49) != 0); - __pyx_t_2 = __pyx_t_3; - __pyx_L34_bool_binop_done:; - if (__pyx_t_2) { - - /* "pmercury/utils/packet_proc.pyx":94 - * fp_type = 'http' - * elif (buf[app_offset] == 72 and buf[app_offset+5] == 49): - * fp_str_, context_ = HTTP_Server.fingerprint(data, app_offset, data_len) # <<<<<<<<<<<<<< - * fp_type = 'http_server' - * elif protocol == 17: - */ - __Pyx_GetModuleGlobalName(__pyx_t_6, __pyx_n_s_HTTP_Server); if (unlikely(!__pyx_t_6)) __PYX_ERR(0, 94, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_6); - __pyx_t_7 = __Pyx_PyObject_GetAttrStr(__pyx_t_6, __pyx_n_s_fingerprint); if (unlikely(!__pyx_t_7)) __PYX_ERR(0, 94, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_7); - __Pyx_DECREF(__pyx_t_6); __pyx_t_6 = 0; - __pyx_t_6 = __Pyx_PyInt_From_uint16_t(__pyx_v_app_offset); if (unlikely(!__pyx_t_6)) __PYX_ERR(0, 94, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_6); - __pyx_t_8 = __Pyx_PyInt_From_uint16_t(__pyx_v_data_len); if (unlikely(!__pyx_t_8)) __PYX_ERR(0, 94, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_8); - __pyx_t_9 = NULL; - __pyx_t_10 = 0; - if (CYTHON_UNPACK_METHODS && unlikely(PyMethod_Check(__pyx_t_7))) { - __pyx_t_9 = PyMethod_GET_SELF(__pyx_t_7); - if (likely(__pyx_t_9)) { - PyObject* function = PyMethod_GET_FUNCTION(__pyx_t_7); - __Pyx_INCREF(__pyx_t_9); - __Pyx_INCREF(function); - __Pyx_DECREF_SET(__pyx_t_7, function); - __pyx_t_10 = 1; - } - } - #if CYTHON_FAST_PYCALL - if (PyFunction_Check(__pyx_t_7)) { - PyObject *__pyx_temp[4] = {__pyx_t_9, __pyx_v_data, __pyx_t_6, __pyx_t_8}; - __pyx_t_5 = __Pyx_PyFunction_FastCall(__pyx_t_7, __pyx_temp+1-__pyx_t_10, 3+__pyx_t_10); if (unlikely(!__pyx_t_5)) __PYX_ERR(0, 94, __pyx_L1_error) - __Pyx_XDECREF(__pyx_t_9); __pyx_t_9 = 0; - __Pyx_GOTREF(__pyx_t_5); - __Pyx_DECREF(__pyx_t_6); __pyx_t_6 = 0; - __Pyx_DECREF(__pyx_t_8); __pyx_t_8 = 0; - } else - #endif - #if CYTHON_FAST_PYCCALL - if (__Pyx_PyFastCFunction_Check(__pyx_t_7)) { - PyObject *__pyx_temp[4] = {__pyx_t_9, __pyx_v_data, __pyx_t_6, __pyx_t_8}; - __pyx_t_5 = __Pyx_PyCFunction_FastCall(__pyx_t_7, __pyx_temp+1-__pyx_t_10, 3+__pyx_t_10); if (unlikely(!__pyx_t_5)) __PYX_ERR(0, 94, __pyx_L1_error) - __Pyx_XDECREF(__pyx_t_9); __pyx_t_9 = 0; - __Pyx_GOTREF(__pyx_t_5); - __Pyx_DECREF(__pyx_t_6); __pyx_t_6 = 0; - __Pyx_DECREF(__pyx_t_8); __pyx_t_8 = 0; - } else - #endif - { - __pyx_t_11 = PyTuple_New(3+__pyx_t_10); if (unlikely(!__pyx_t_11)) __PYX_ERR(0, 94, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_11); - if (__pyx_t_9) { - __Pyx_GIVEREF(__pyx_t_9); PyTuple_SET_ITEM(__pyx_t_11, 0, __pyx_t_9); __pyx_t_9 = NULL; - } - __Pyx_INCREF(__pyx_v_data); - __Pyx_GIVEREF(__pyx_v_data); - PyTuple_SET_ITEM(__pyx_t_11, 0+__pyx_t_10, __pyx_v_data); - __Pyx_GIVEREF(__pyx_t_6); - PyTuple_SET_ITEM(__pyx_t_11, 1+__pyx_t_10, __pyx_t_6); - __Pyx_GIVEREF(__pyx_t_8); - PyTuple_SET_ITEM(__pyx_t_11, 2+__pyx_t_10, __pyx_t_8); - __pyx_t_6 = 0; - __pyx_t_8 = 0; - __pyx_t_5 = __Pyx_PyObject_Call(__pyx_t_7, __pyx_t_11, NULL); if (unlikely(!__pyx_t_5)) __PYX_ERR(0, 94, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_5); - __Pyx_DECREF(__pyx_t_11); __pyx_t_11 = 0; - } - __Pyx_DECREF(__pyx_t_7); __pyx_t_7 = 0; - if ((likely(PyTuple_CheckExact(__pyx_t_5))) || (PyList_CheckExact(__pyx_t_5))) { - PyObject* sequence = __pyx_t_5; - Py_ssize_t size = __Pyx_PySequence_SIZE(sequence); - if (unlikely(size != 2)) { - if (size > 2) __Pyx_RaiseTooManyValuesError(2); - else if (size >= 0) __Pyx_RaiseNeedMoreValuesError(size); - __PYX_ERR(0, 94, __pyx_L1_error) - } - #if CYTHON_ASSUME_SAFE_MACROS && !CYTHON_AVOID_BORROWED_REFS - if (likely(PyTuple_CheckExact(sequence))) { - __pyx_t_7 = PyTuple_GET_ITEM(sequence, 0); - __pyx_t_11 = PyTuple_GET_ITEM(sequence, 1); - } else { - __pyx_t_7 = PyList_GET_ITEM(sequence, 0); - __pyx_t_11 = PyList_GET_ITEM(sequence, 1); - } - __Pyx_INCREF(__pyx_t_7); - __Pyx_INCREF(__pyx_t_11); - #else - __pyx_t_7 = PySequence_ITEM(sequence, 0); if (unlikely(!__pyx_t_7)) __PYX_ERR(0, 94, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_7); - __pyx_t_11 = PySequence_ITEM(sequence, 1); if (unlikely(!__pyx_t_11)) __PYX_ERR(0, 94, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_11); - #endif - __Pyx_DECREF(__pyx_t_5); __pyx_t_5 = 0; - } else { - Py_ssize_t index = -1; - __pyx_t_8 = PyObject_GetIter(__pyx_t_5); if (unlikely(!__pyx_t_8)) __PYX_ERR(0, 94, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_8); - __Pyx_DECREF(__pyx_t_5); __pyx_t_5 = 0; - __pyx_t_12 = Py_TYPE(__pyx_t_8)->tp_iternext; - index = 0; __pyx_t_7 = __pyx_t_12(__pyx_t_8); if (unlikely(!__pyx_t_7)) goto __pyx_L36_unpacking_failed; - __Pyx_GOTREF(__pyx_t_7); - index = 1; __pyx_t_11 = __pyx_t_12(__pyx_t_8); if (unlikely(!__pyx_t_11)) goto __pyx_L36_unpacking_failed; - __Pyx_GOTREF(__pyx_t_11); - if (__Pyx_IternextUnpackEndCheck(__pyx_t_12(__pyx_t_8), 2) < 0) __PYX_ERR(0, 94, __pyx_L1_error) - __pyx_t_12 = NULL; - __Pyx_DECREF(__pyx_t_8); __pyx_t_8 = 0; - goto __pyx_L37_unpacking_done; - __pyx_L36_unpacking_failed:; - __Pyx_DECREF(__pyx_t_8); __pyx_t_8 = 0; - __pyx_t_12 = NULL; - if (__Pyx_IterFinish() == 0) __Pyx_RaiseNeedMoreValuesError(index); - __PYX_ERR(0, 94, __pyx_L1_error) - __pyx_L37_unpacking_done:; - } - if (!(likely(PyList_CheckExact(__pyx_t_11))||((__pyx_t_11) == Py_None)||(PyErr_Format(PyExc_TypeError, "Expected %.16s, got %.200s", "list", Py_TYPE(__pyx_t_11)->tp_name), 0))) __PYX_ERR(0, 94, __pyx_L1_error) - __Pyx_DECREF_SET(__pyx_v_fp_str_, __pyx_t_7); - __pyx_t_7 = 0; - __pyx_v_context_ = ((PyObject*)__pyx_t_11); - __pyx_t_11 = 0; - - /* "pmercury/utils/packet_proc.pyx":95 - * elif (buf[app_offset] == 72 and buf[app_offset+5] == 49): - * fp_str_, context_ = HTTP_Server.fingerprint(data, app_offset, data_len) - * fp_type = 'http_server' # <<<<<<<<<<<<<< - * elif protocol == 17: - * prot_offset = ip_offset+ip_length - */ - __Pyx_INCREF(__pyx_n_u_http_server); - __pyx_v_fp_type = __pyx_n_u_http_server; - - /* "pmercury/utils/packet_proc.pyx":93 - * fp_str_, context_ = HTTP.fingerprint(data, app_offset, data_len) - * fp_type = 'http' - * elif (buf[app_offset] == 72 and buf[app_offset+5] == 49): # <<<<<<<<<<<<<< - * fp_str_, context_ = HTTP_Server.fingerprint(data, app_offset, data_len) - * fp_type = 'http_server' - */ - } - __pyx_L29:; - - /* "pmercury/utils/packet_proc.pyx":89 - * fp_str_, context_ = TLS_Certificate.fingerprint(data, app_offset, data_len) - * fp_type = 'server_certs' - * elif buf[app_offset+2] == 84: # <<<<<<<<<<<<<< - * if (buf[app_offset] == 71 and buf[app_offset+3] == 32): - * fp_str_, context_ = HTTP.fingerprint(data, app_offset, data_len) - */ - } - __pyx_L11:; - - /* "pmercury/utils/packet_proc.pyx":66 - * fp_str_2_ = None - * prot_offset = 0 - * if protocol == 6: # <<<<<<<<<<<<<< - * prot_offset = ip_offset+ip_length - * if prot_offset+20 > data_len: - */ - break; - case 17: - - /* "pmercury/utils/packet_proc.pyx":97 - * fp_type = 'http_server' - * elif protocol == 17: - * prot_offset = ip_offset+ip_length # <<<<<<<<<<<<<< - * prot_length = 8 - * app_offset = prot_offset + prot_length - */ - __pyx_v_prot_offset = (__pyx_v_ip_offset + __pyx_v_ip_length); - - /* "pmercury/utils/packet_proc.pyx":98 - * elif protocol == 17: - * prot_offset = ip_offset+ip_length - * prot_length = 8 # <<<<<<<<<<<<<< - * app_offset = prot_offset + prot_length - * - */ - __pyx_v_prot_length = 8; - - /* "pmercury/utils/packet_proc.pyx":99 - * prot_offset = ip_offset+ip_length - * prot_length = 8 - * app_offset = prot_offset + prot_length # <<<<<<<<<<<<<< - * - * if data_len - app_offset < 16: - */ - __pyx_v_app_offset = (__pyx_v_prot_offset + __pyx_v_prot_length); - - /* "pmercury/utils/packet_proc.pyx":101 - * app_offset = prot_offset + prot_length - * - * if data_len - app_offset < 16: # <<<<<<<<<<<<<< - * return None - * elif buf[app_offset] == 22 and buf[app_offset+1] == 254: - */ - __pyx_t_2 = (((__pyx_v_data_len - __pyx_v_app_offset) < 16) != 0); - if (__pyx_t_2) { - - /* "pmercury/utils/packet_proc.pyx":102 - * - * if data_len - app_offset < 16: - * return None # <<<<<<<<<<<<<< - * elif buf[app_offset] == 22 and buf[app_offset+1] == 254: - * if buf[app_offset+13] == 1 and buf[app_offset+25] == 254: - */ - __Pyx_XDECREF(__pyx_r); - __pyx_r = Py_None; __Pyx_INCREF(Py_None); - goto __pyx_L0; - - /* "pmercury/utils/packet_proc.pyx":101 - * app_offset = prot_offset + prot_length - * - * if data_len - app_offset < 16: # <<<<<<<<<<<<<< - * return None - * elif buf[app_offset] == 22 and buf[app_offset+1] == 254: - */ - } - - /* "pmercury/utils/packet_proc.pyx":103 - * if data_len - app_offset < 16: - * return None - * elif buf[app_offset] == 22 and buf[app_offset+1] == 254: # <<<<<<<<<<<<<< - * if buf[app_offset+13] == 1 and buf[app_offset+25] == 254: - * fp_str_, context_ = DTLS.fingerprint(data, app_offset, data_len) - */ - __pyx_t_3 = (((__pyx_v_buf[__pyx_v_app_offset]) == 22) != 0); - if (__pyx_t_3) { - } else { - __pyx_t_2 = __pyx_t_3; - goto __pyx_L39_bool_binop_done; - } - __pyx_t_3 = (((__pyx_v_buf[(__pyx_v_app_offset + 1)]) == 0xFE) != 0); - __pyx_t_2 = __pyx_t_3; - __pyx_L39_bool_binop_done:; - if (__pyx_t_2) { - - /* "pmercury/utils/packet_proc.pyx":104 - * return None - * elif buf[app_offset] == 22 and buf[app_offset+1] == 254: - * if buf[app_offset+13] == 1 and buf[app_offset+25] == 254: # <<<<<<<<<<<<<< - * fp_str_, context_ = DTLS.fingerprint(data, app_offset, data_len) - * fp_type = 'dtls' - */ - __pyx_t_3 = (((__pyx_v_buf[(__pyx_v_app_offset + 13)]) == 1) != 0); - if (__pyx_t_3) { - } else { - __pyx_t_2 = __pyx_t_3; - goto __pyx_L42_bool_binop_done; - } - __pyx_t_3 = (((__pyx_v_buf[(__pyx_v_app_offset + 25)]) == 0xFE) != 0); - __pyx_t_2 = __pyx_t_3; - __pyx_L42_bool_binop_done:; - if (__pyx_t_2) { - - /* "pmercury/utils/packet_proc.pyx":105 - * elif buf[app_offset] == 22 and buf[app_offset+1] == 254: - * if buf[app_offset+13] == 1 and buf[app_offset+25] == 254: - * fp_str_, context_ = DTLS.fingerprint(data, app_offset, data_len) # <<<<<<<<<<<<<< - * fp_type = 'dtls' - * elif buf[app_offset+13] == 2 and buf[app_offset+25] == 254: - */ - __Pyx_GetModuleGlobalName(__pyx_t_11, __pyx_n_s_DTLS); if (unlikely(!__pyx_t_11)) __PYX_ERR(0, 105, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_11); - __pyx_t_7 = __Pyx_PyObject_GetAttrStr(__pyx_t_11, __pyx_n_s_fingerprint); if (unlikely(!__pyx_t_7)) __PYX_ERR(0, 105, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_7); - __Pyx_DECREF(__pyx_t_11); __pyx_t_11 = 0; - __pyx_t_11 = __Pyx_PyInt_From_uint16_t(__pyx_v_app_offset); if (unlikely(!__pyx_t_11)) __PYX_ERR(0, 105, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_11); - __pyx_t_8 = __Pyx_PyInt_From_uint16_t(__pyx_v_data_len); if (unlikely(!__pyx_t_8)) __PYX_ERR(0, 105, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_8); - __pyx_t_6 = NULL; - __pyx_t_10 = 0; - if (CYTHON_UNPACK_METHODS && unlikely(PyMethod_Check(__pyx_t_7))) { - __pyx_t_6 = PyMethod_GET_SELF(__pyx_t_7); - if (likely(__pyx_t_6)) { - PyObject* function = PyMethod_GET_FUNCTION(__pyx_t_7); - __Pyx_INCREF(__pyx_t_6); - __Pyx_INCREF(function); - __Pyx_DECREF_SET(__pyx_t_7, function); - __pyx_t_10 = 1; - } - } - #if CYTHON_FAST_PYCALL - if (PyFunction_Check(__pyx_t_7)) { - PyObject *__pyx_temp[4] = {__pyx_t_6, __pyx_v_data, __pyx_t_11, __pyx_t_8}; - __pyx_t_5 = __Pyx_PyFunction_FastCall(__pyx_t_7, __pyx_temp+1-__pyx_t_10, 3+__pyx_t_10); if (unlikely(!__pyx_t_5)) __PYX_ERR(0, 105, __pyx_L1_error) - __Pyx_XDECREF(__pyx_t_6); __pyx_t_6 = 0; - __Pyx_GOTREF(__pyx_t_5); - __Pyx_DECREF(__pyx_t_11); __pyx_t_11 = 0; - __Pyx_DECREF(__pyx_t_8); __pyx_t_8 = 0; - } else - #endif - #if CYTHON_FAST_PYCCALL - if (__Pyx_PyFastCFunction_Check(__pyx_t_7)) { - PyObject *__pyx_temp[4] = {__pyx_t_6, __pyx_v_data, __pyx_t_11, __pyx_t_8}; - __pyx_t_5 = __Pyx_PyCFunction_FastCall(__pyx_t_7, __pyx_temp+1-__pyx_t_10, 3+__pyx_t_10); if (unlikely(!__pyx_t_5)) __PYX_ERR(0, 105, __pyx_L1_error) - __Pyx_XDECREF(__pyx_t_6); __pyx_t_6 = 0; - __Pyx_GOTREF(__pyx_t_5); - __Pyx_DECREF(__pyx_t_11); __pyx_t_11 = 0; - __Pyx_DECREF(__pyx_t_8); __pyx_t_8 = 0; - } else - #endif - { - __pyx_t_9 = PyTuple_New(3+__pyx_t_10); if (unlikely(!__pyx_t_9)) __PYX_ERR(0, 105, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_9); - if (__pyx_t_6) { - __Pyx_GIVEREF(__pyx_t_6); PyTuple_SET_ITEM(__pyx_t_9, 0, __pyx_t_6); __pyx_t_6 = NULL; - } - __Pyx_INCREF(__pyx_v_data); - __Pyx_GIVEREF(__pyx_v_data); - PyTuple_SET_ITEM(__pyx_t_9, 0+__pyx_t_10, __pyx_v_data); - __Pyx_GIVEREF(__pyx_t_11); - PyTuple_SET_ITEM(__pyx_t_9, 1+__pyx_t_10, __pyx_t_11); - __Pyx_GIVEREF(__pyx_t_8); - PyTuple_SET_ITEM(__pyx_t_9, 2+__pyx_t_10, __pyx_t_8); - __pyx_t_11 = 0; - __pyx_t_8 = 0; - __pyx_t_5 = __Pyx_PyObject_Call(__pyx_t_7, __pyx_t_9, NULL); if (unlikely(!__pyx_t_5)) __PYX_ERR(0, 105, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_5); - __Pyx_DECREF(__pyx_t_9); __pyx_t_9 = 0; - } - __Pyx_DECREF(__pyx_t_7); __pyx_t_7 = 0; - if ((likely(PyTuple_CheckExact(__pyx_t_5))) || (PyList_CheckExact(__pyx_t_5))) { - PyObject* sequence = __pyx_t_5; - Py_ssize_t size = __Pyx_PySequence_SIZE(sequence); - if (unlikely(size != 2)) { - if (size > 2) __Pyx_RaiseTooManyValuesError(2); - else if (size >= 0) __Pyx_RaiseNeedMoreValuesError(size); - __PYX_ERR(0, 105, __pyx_L1_error) - } - #if CYTHON_ASSUME_SAFE_MACROS && !CYTHON_AVOID_BORROWED_REFS - if (likely(PyTuple_CheckExact(sequence))) { - __pyx_t_7 = PyTuple_GET_ITEM(sequence, 0); - __pyx_t_9 = PyTuple_GET_ITEM(sequence, 1); - } else { - __pyx_t_7 = PyList_GET_ITEM(sequence, 0); - __pyx_t_9 = PyList_GET_ITEM(sequence, 1); - } - __Pyx_INCREF(__pyx_t_7); - __Pyx_INCREF(__pyx_t_9); - #else - __pyx_t_7 = PySequence_ITEM(sequence, 0); if (unlikely(!__pyx_t_7)) __PYX_ERR(0, 105, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_7); - __pyx_t_9 = PySequence_ITEM(sequence, 1); if (unlikely(!__pyx_t_9)) __PYX_ERR(0, 105, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_9); - #endif - __Pyx_DECREF(__pyx_t_5); __pyx_t_5 = 0; - } else { - Py_ssize_t index = -1; - __pyx_t_8 = PyObject_GetIter(__pyx_t_5); if (unlikely(!__pyx_t_8)) __PYX_ERR(0, 105, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_8); - __Pyx_DECREF(__pyx_t_5); __pyx_t_5 = 0; - __pyx_t_12 = Py_TYPE(__pyx_t_8)->tp_iternext; - index = 0; __pyx_t_7 = __pyx_t_12(__pyx_t_8); if (unlikely(!__pyx_t_7)) goto __pyx_L44_unpacking_failed; - __Pyx_GOTREF(__pyx_t_7); - index = 1; __pyx_t_9 = __pyx_t_12(__pyx_t_8); if (unlikely(!__pyx_t_9)) goto __pyx_L44_unpacking_failed; - __Pyx_GOTREF(__pyx_t_9); - if (__Pyx_IternextUnpackEndCheck(__pyx_t_12(__pyx_t_8), 2) < 0) __PYX_ERR(0, 105, __pyx_L1_error) - __pyx_t_12 = NULL; - __Pyx_DECREF(__pyx_t_8); __pyx_t_8 = 0; - goto __pyx_L45_unpacking_done; - __pyx_L44_unpacking_failed:; - __Pyx_DECREF(__pyx_t_8); __pyx_t_8 = 0; - __pyx_t_12 = NULL; - if (__Pyx_IterFinish() == 0) __Pyx_RaiseNeedMoreValuesError(index); - __PYX_ERR(0, 105, __pyx_L1_error) - __pyx_L45_unpacking_done:; - } - if (!(likely(PyList_CheckExact(__pyx_t_9))||((__pyx_t_9) == Py_None)||(PyErr_Format(PyExc_TypeError, "Expected %.16s, got %.200s", "list", Py_TYPE(__pyx_t_9)->tp_name), 0))) __PYX_ERR(0, 105, __pyx_L1_error) - __Pyx_DECREF_SET(__pyx_v_fp_str_, __pyx_t_7); - __pyx_t_7 = 0; - __pyx_v_context_ = ((PyObject*)__pyx_t_9); - __pyx_t_9 = 0; - - /* "pmercury/utils/packet_proc.pyx":106 - * if buf[app_offset+13] == 1 and buf[app_offset+25] == 254: - * fp_str_, context_ = DTLS.fingerprint(data, app_offset, data_len) - * fp_type = 'dtls' # <<<<<<<<<<<<<< - * elif buf[app_offset+13] == 2 and buf[app_offset+25] == 254: - * fp_str_, context_ = DTLS_Server.fingerprint(data, app_offset, data_len) - */ - __Pyx_INCREF(__pyx_n_u_dtls); - __pyx_v_fp_type = __pyx_n_u_dtls; - - /* "pmercury/utils/packet_proc.pyx":104 - * return None - * elif buf[app_offset] == 22 and buf[app_offset+1] == 254: - * if buf[app_offset+13] == 1 and buf[app_offset+25] == 254: # <<<<<<<<<<<<<< - * fp_str_, context_ = DTLS.fingerprint(data, app_offset, data_len) - * fp_type = 'dtls' - */ - goto __pyx_L41; - } - - /* "pmercury/utils/packet_proc.pyx":107 - * fp_str_, context_ = DTLS.fingerprint(data, app_offset, data_len) - * fp_type = 'dtls' - * elif buf[app_offset+13] == 2 and buf[app_offset+25] == 254: # <<<<<<<<<<<<<< - * fp_str_, context_ = DTLS_Server.fingerprint(data, app_offset, data_len) - * fp_type = 'dtls_server' - */ - __pyx_t_3 = (((__pyx_v_buf[(__pyx_v_app_offset + 13)]) == 2) != 0); - if (__pyx_t_3) { - } else { - __pyx_t_2 = __pyx_t_3; - goto __pyx_L46_bool_binop_done; - } - __pyx_t_3 = (((__pyx_v_buf[(__pyx_v_app_offset + 25)]) == 0xFE) != 0); - __pyx_t_2 = __pyx_t_3; - __pyx_L46_bool_binop_done:; - if (__pyx_t_2) { - - /* "pmercury/utils/packet_proc.pyx":108 - * fp_type = 'dtls' - * elif buf[app_offset+13] == 2 and buf[app_offset+25] == 254: - * fp_str_, context_ = DTLS_Server.fingerprint(data, app_offset, data_len) # <<<<<<<<<<<<<< - * fp_type = 'dtls_server' - * elif (buf[app_offset+1] == 0xff and buf[app_offset+2] == 0x00 and - */ - __Pyx_GetModuleGlobalName(__pyx_t_9, __pyx_n_s_DTLS_Server); if (unlikely(!__pyx_t_9)) __PYX_ERR(0, 108, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_9); - __pyx_t_7 = __Pyx_PyObject_GetAttrStr(__pyx_t_9, __pyx_n_s_fingerprint); if (unlikely(!__pyx_t_7)) __PYX_ERR(0, 108, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_7); - __Pyx_DECREF(__pyx_t_9); __pyx_t_9 = 0; - __pyx_t_9 = __Pyx_PyInt_From_uint16_t(__pyx_v_app_offset); if (unlikely(!__pyx_t_9)) __PYX_ERR(0, 108, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_9); - __pyx_t_8 = __Pyx_PyInt_From_uint16_t(__pyx_v_data_len); if (unlikely(!__pyx_t_8)) __PYX_ERR(0, 108, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_8); - __pyx_t_11 = NULL; - __pyx_t_10 = 0; - if (CYTHON_UNPACK_METHODS && unlikely(PyMethod_Check(__pyx_t_7))) { - __pyx_t_11 = PyMethod_GET_SELF(__pyx_t_7); - if (likely(__pyx_t_11)) { - PyObject* function = PyMethod_GET_FUNCTION(__pyx_t_7); - __Pyx_INCREF(__pyx_t_11); - __Pyx_INCREF(function); - __Pyx_DECREF_SET(__pyx_t_7, function); - __pyx_t_10 = 1; - } - } - #if CYTHON_FAST_PYCALL - if (PyFunction_Check(__pyx_t_7)) { - PyObject *__pyx_temp[4] = {__pyx_t_11, __pyx_v_data, __pyx_t_9, __pyx_t_8}; - __pyx_t_5 = __Pyx_PyFunction_FastCall(__pyx_t_7, __pyx_temp+1-__pyx_t_10, 3+__pyx_t_10); if (unlikely(!__pyx_t_5)) __PYX_ERR(0, 108, __pyx_L1_error) - __Pyx_XDECREF(__pyx_t_11); __pyx_t_11 = 0; - __Pyx_GOTREF(__pyx_t_5); - __Pyx_DECREF(__pyx_t_9); __pyx_t_9 = 0; - __Pyx_DECREF(__pyx_t_8); __pyx_t_8 = 0; - } else - #endif - #if CYTHON_FAST_PYCCALL - if (__Pyx_PyFastCFunction_Check(__pyx_t_7)) { - PyObject *__pyx_temp[4] = {__pyx_t_11, __pyx_v_data, __pyx_t_9, __pyx_t_8}; - __pyx_t_5 = __Pyx_PyCFunction_FastCall(__pyx_t_7, __pyx_temp+1-__pyx_t_10, 3+__pyx_t_10); if (unlikely(!__pyx_t_5)) __PYX_ERR(0, 108, __pyx_L1_error) - __Pyx_XDECREF(__pyx_t_11); __pyx_t_11 = 0; - __Pyx_GOTREF(__pyx_t_5); - __Pyx_DECREF(__pyx_t_9); __pyx_t_9 = 0; - __Pyx_DECREF(__pyx_t_8); __pyx_t_8 = 0; - } else - #endif - { - __pyx_t_6 = PyTuple_New(3+__pyx_t_10); if (unlikely(!__pyx_t_6)) __PYX_ERR(0, 108, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_6); - if (__pyx_t_11) { - __Pyx_GIVEREF(__pyx_t_11); PyTuple_SET_ITEM(__pyx_t_6, 0, __pyx_t_11); __pyx_t_11 = NULL; - } - __Pyx_INCREF(__pyx_v_data); - __Pyx_GIVEREF(__pyx_v_data); - PyTuple_SET_ITEM(__pyx_t_6, 0+__pyx_t_10, __pyx_v_data); - __Pyx_GIVEREF(__pyx_t_9); - PyTuple_SET_ITEM(__pyx_t_6, 1+__pyx_t_10, __pyx_t_9); - __Pyx_GIVEREF(__pyx_t_8); - PyTuple_SET_ITEM(__pyx_t_6, 2+__pyx_t_10, __pyx_t_8); - __pyx_t_9 = 0; - __pyx_t_8 = 0; - __pyx_t_5 = __Pyx_PyObject_Call(__pyx_t_7, __pyx_t_6, NULL); if (unlikely(!__pyx_t_5)) __PYX_ERR(0, 108, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_5); - __Pyx_DECREF(__pyx_t_6); __pyx_t_6 = 0; - } - __Pyx_DECREF(__pyx_t_7); __pyx_t_7 = 0; - if ((likely(PyTuple_CheckExact(__pyx_t_5))) || (PyList_CheckExact(__pyx_t_5))) { - PyObject* sequence = __pyx_t_5; - Py_ssize_t size = __Pyx_PySequence_SIZE(sequence); - if (unlikely(size != 2)) { - if (size > 2) __Pyx_RaiseTooManyValuesError(2); - else if (size >= 0) __Pyx_RaiseNeedMoreValuesError(size); - __PYX_ERR(0, 108, __pyx_L1_error) - } - #if CYTHON_ASSUME_SAFE_MACROS && !CYTHON_AVOID_BORROWED_REFS - if (likely(PyTuple_CheckExact(sequence))) { - __pyx_t_7 = PyTuple_GET_ITEM(sequence, 0); - __pyx_t_6 = PyTuple_GET_ITEM(sequence, 1); - } else { - __pyx_t_7 = PyList_GET_ITEM(sequence, 0); - __pyx_t_6 = PyList_GET_ITEM(sequence, 1); - } - __Pyx_INCREF(__pyx_t_7); - __Pyx_INCREF(__pyx_t_6); - #else - __pyx_t_7 = PySequence_ITEM(sequence, 0); if (unlikely(!__pyx_t_7)) __PYX_ERR(0, 108, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_7); - __pyx_t_6 = PySequence_ITEM(sequence, 1); if (unlikely(!__pyx_t_6)) __PYX_ERR(0, 108, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_6); - #endif - __Pyx_DECREF(__pyx_t_5); __pyx_t_5 = 0; - } else { - Py_ssize_t index = -1; - __pyx_t_8 = PyObject_GetIter(__pyx_t_5); if (unlikely(!__pyx_t_8)) __PYX_ERR(0, 108, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_8); - __Pyx_DECREF(__pyx_t_5); __pyx_t_5 = 0; - __pyx_t_12 = Py_TYPE(__pyx_t_8)->tp_iternext; - index = 0; __pyx_t_7 = __pyx_t_12(__pyx_t_8); if (unlikely(!__pyx_t_7)) goto __pyx_L48_unpacking_failed; - __Pyx_GOTREF(__pyx_t_7); - index = 1; __pyx_t_6 = __pyx_t_12(__pyx_t_8); if (unlikely(!__pyx_t_6)) goto __pyx_L48_unpacking_failed; - __Pyx_GOTREF(__pyx_t_6); - if (__Pyx_IternextUnpackEndCheck(__pyx_t_12(__pyx_t_8), 2) < 0) __PYX_ERR(0, 108, __pyx_L1_error) - __pyx_t_12 = NULL; - __Pyx_DECREF(__pyx_t_8); __pyx_t_8 = 0; - goto __pyx_L49_unpacking_done; - __pyx_L48_unpacking_failed:; - __Pyx_DECREF(__pyx_t_8); __pyx_t_8 = 0; - __pyx_t_12 = NULL; - if (__Pyx_IterFinish() == 0) __Pyx_RaiseNeedMoreValuesError(index); - __PYX_ERR(0, 108, __pyx_L1_error) - __pyx_L49_unpacking_done:; - } - if (!(likely(PyList_CheckExact(__pyx_t_6))||((__pyx_t_6) == Py_None)||(PyErr_Format(PyExc_TypeError, "Expected %.16s, got %.200s", "list", Py_TYPE(__pyx_t_6)->tp_name), 0))) __PYX_ERR(0, 108, __pyx_L1_error) - __Pyx_DECREF_SET(__pyx_v_fp_str_, __pyx_t_7); - __pyx_t_7 = 0; - __pyx_v_context_ = ((PyObject*)__pyx_t_6); - __pyx_t_6 = 0; - - /* "pmercury/utils/packet_proc.pyx":109 - * elif buf[app_offset+13] == 2 and buf[app_offset+25] == 254: - * fp_str_, context_ = DTLS_Server.fingerprint(data, app_offset, data_len) - * fp_type = 'dtls_server' # <<<<<<<<<<<<<< - * elif (buf[app_offset+1] == 0xff and buf[app_offset+2] == 0x00 and - * buf[app_offset+3] == 0x00 and buf[app_offset+4] == 0x18): - */ - __Pyx_INCREF(__pyx_n_u_dtls_server); - __pyx_v_fp_type = __pyx_n_u_dtls_server; - - /* "pmercury/utils/packet_proc.pyx":107 - * fp_str_, context_ = DTLS.fingerprint(data, app_offset, data_len) - * fp_type = 'dtls' - * elif buf[app_offset+13] == 2 and buf[app_offset+25] == 254: # <<<<<<<<<<<<<< - * fp_str_, context_ = DTLS_Server.fingerprint(data, app_offset, data_len) - * fp_type = 'dtls_server' - */ - } - __pyx_L41:; - - /* "pmercury/utils/packet_proc.pyx":103 - * if data_len - app_offset < 16: - * return None - * elif buf[app_offset] == 22 and buf[app_offset+1] == 254: # <<<<<<<<<<<<<< - * if buf[app_offset+13] == 1 and buf[app_offset+25] == 254: - * fp_str_, context_ = DTLS.fingerprint(data, app_offset, data_len) - */ - goto __pyx_L38; - } - - /* "pmercury/utils/packet_proc.pyx":110 - * fp_str_, context_ = DTLS_Server.fingerprint(data, app_offset, data_len) - * fp_type = 'dtls_server' - * elif (buf[app_offset+1] == 0xff and buf[app_offset+2] == 0x00 and # <<<<<<<<<<<<<< - * buf[app_offset+3] == 0x00 and buf[app_offset+4] == 0x18): - * fp_str_, context_ = IQUIC.fingerprint(data, app_offset, data_len) - */ - __pyx_t_3 = (((__pyx_v_buf[(__pyx_v_app_offset + 1)]) == 0xff) != 0); - if (__pyx_t_3) { - } else { - __pyx_t_2 = __pyx_t_3; - goto __pyx_L50_bool_binop_done; - } - __pyx_t_3 = (((__pyx_v_buf[(__pyx_v_app_offset + 2)]) == 0x00) != 0); - if (__pyx_t_3) { - } else { - __pyx_t_2 = __pyx_t_3; - goto __pyx_L50_bool_binop_done; - } - - /* "pmercury/utils/packet_proc.pyx":111 - * fp_type = 'dtls_server' - * elif (buf[app_offset+1] == 0xff and buf[app_offset+2] == 0x00 and - * buf[app_offset+3] == 0x00 and buf[app_offset+4] == 0x18): # <<<<<<<<<<<<<< - * fp_str_, context_ = IQUIC.fingerprint(data, app_offset, data_len) - * fp_type = 'iquic' - */ - __pyx_t_3 = (((__pyx_v_buf[(__pyx_v_app_offset + 3)]) == 0x00) != 0); - if (__pyx_t_3) { - } else { - __pyx_t_2 = __pyx_t_3; - goto __pyx_L50_bool_binop_done; - } - __pyx_t_3 = (((__pyx_v_buf[(__pyx_v_app_offset + 4)]) == 0x18) != 0); - __pyx_t_2 = __pyx_t_3; - __pyx_L50_bool_binop_done:; - - /* "pmercury/utils/packet_proc.pyx":110 - * fp_str_, context_ = DTLS_Server.fingerprint(data, app_offset, data_len) - * fp_type = 'dtls_server' - * elif (buf[app_offset+1] == 0xff and buf[app_offset+2] == 0x00 and # <<<<<<<<<<<<<< - * buf[app_offset+3] == 0x00 and buf[app_offset+4] == 0x18): - * fp_str_, context_ = IQUIC.fingerprint(data, app_offset, data_len) - */ - if (__pyx_t_2) { - - /* "pmercury/utils/packet_proc.pyx":112 - * elif (buf[app_offset+1] == 0xff and buf[app_offset+2] == 0x00 and - * buf[app_offset+3] == 0x00 and buf[app_offset+4] == 0x18): - * fp_str_, context_ = IQUIC.fingerprint(data, app_offset, data_len) # <<<<<<<<<<<<<< - * fp_type = 'iquic' - * elif data_len - app_offset < 240: - */ - __Pyx_GetModuleGlobalName(__pyx_t_6, __pyx_n_s_IQUIC); if (unlikely(!__pyx_t_6)) __PYX_ERR(0, 112, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_6); - __pyx_t_7 = __Pyx_PyObject_GetAttrStr(__pyx_t_6, __pyx_n_s_fingerprint); if (unlikely(!__pyx_t_7)) __PYX_ERR(0, 112, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_7); - __Pyx_DECREF(__pyx_t_6); __pyx_t_6 = 0; - __pyx_t_6 = __Pyx_PyInt_From_uint16_t(__pyx_v_app_offset); if (unlikely(!__pyx_t_6)) __PYX_ERR(0, 112, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_6); - __pyx_t_8 = __Pyx_PyInt_From_uint16_t(__pyx_v_data_len); if (unlikely(!__pyx_t_8)) __PYX_ERR(0, 112, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_8); - __pyx_t_9 = NULL; - __pyx_t_10 = 0; - if (CYTHON_UNPACK_METHODS && unlikely(PyMethod_Check(__pyx_t_7))) { - __pyx_t_9 = PyMethod_GET_SELF(__pyx_t_7); - if (likely(__pyx_t_9)) { - PyObject* function = PyMethod_GET_FUNCTION(__pyx_t_7); - __Pyx_INCREF(__pyx_t_9); - __Pyx_INCREF(function); - __Pyx_DECREF_SET(__pyx_t_7, function); - __pyx_t_10 = 1; - } - } - #if CYTHON_FAST_PYCALL - if (PyFunction_Check(__pyx_t_7)) { - PyObject *__pyx_temp[4] = {__pyx_t_9, __pyx_v_data, __pyx_t_6, __pyx_t_8}; - __pyx_t_5 = __Pyx_PyFunction_FastCall(__pyx_t_7, __pyx_temp+1-__pyx_t_10, 3+__pyx_t_10); if (unlikely(!__pyx_t_5)) __PYX_ERR(0, 112, __pyx_L1_error) - __Pyx_XDECREF(__pyx_t_9); __pyx_t_9 = 0; - __Pyx_GOTREF(__pyx_t_5); - __Pyx_DECREF(__pyx_t_6); __pyx_t_6 = 0; - __Pyx_DECREF(__pyx_t_8); __pyx_t_8 = 0; - } else - #endif - #if CYTHON_FAST_PYCCALL - if (__Pyx_PyFastCFunction_Check(__pyx_t_7)) { - PyObject *__pyx_temp[4] = {__pyx_t_9, __pyx_v_data, __pyx_t_6, __pyx_t_8}; - __pyx_t_5 = __Pyx_PyCFunction_FastCall(__pyx_t_7, __pyx_temp+1-__pyx_t_10, 3+__pyx_t_10); if (unlikely(!__pyx_t_5)) __PYX_ERR(0, 112, __pyx_L1_error) - __Pyx_XDECREF(__pyx_t_9); __pyx_t_9 = 0; - __Pyx_GOTREF(__pyx_t_5); - __Pyx_DECREF(__pyx_t_6); __pyx_t_6 = 0; - __Pyx_DECREF(__pyx_t_8); __pyx_t_8 = 0; - } else - #endif - { - __pyx_t_11 = PyTuple_New(3+__pyx_t_10); if (unlikely(!__pyx_t_11)) __PYX_ERR(0, 112, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_11); - if (__pyx_t_9) { - __Pyx_GIVEREF(__pyx_t_9); PyTuple_SET_ITEM(__pyx_t_11, 0, __pyx_t_9); __pyx_t_9 = NULL; - } - __Pyx_INCREF(__pyx_v_data); - __Pyx_GIVEREF(__pyx_v_data); - PyTuple_SET_ITEM(__pyx_t_11, 0+__pyx_t_10, __pyx_v_data); - __Pyx_GIVEREF(__pyx_t_6); - PyTuple_SET_ITEM(__pyx_t_11, 1+__pyx_t_10, __pyx_t_6); - __Pyx_GIVEREF(__pyx_t_8); - PyTuple_SET_ITEM(__pyx_t_11, 2+__pyx_t_10, __pyx_t_8); - __pyx_t_6 = 0; - __pyx_t_8 = 0; - __pyx_t_5 = __Pyx_PyObject_Call(__pyx_t_7, __pyx_t_11, NULL); if (unlikely(!__pyx_t_5)) __PYX_ERR(0, 112, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_5); - __Pyx_DECREF(__pyx_t_11); __pyx_t_11 = 0; - } - __Pyx_DECREF(__pyx_t_7); __pyx_t_7 = 0; - if ((likely(PyTuple_CheckExact(__pyx_t_5))) || (PyList_CheckExact(__pyx_t_5))) { - PyObject* sequence = __pyx_t_5; - Py_ssize_t size = __Pyx_PySequence_SIZE(sequence); - if (unlikely(size != 2)) { - if (size > 2) __Pyx_RaiseTooManyValuesError(2); - else if (size >= 0) __Pyx_RaiseNeedMoreValuesError(size); - __PYX_ERR(0, 112, __pyx_L1_error) - } - #if CYTHON_ASSUME_SAFE_MACROS && !CYTHON_AVOID_BORROWED_REFS - if (likely(PyTuple_CheckExact(sequence))) { - __pyx_t_7 = PyTuple_GET_ITEM(sequence, 0); - __pyx_t_11 = PyTuple_GET_ITEM(sequence, 1); - } else { - __pyx_t_7 = PyList_GET_ITEM(sequence, 0); - __pyx_t_11 = PyList_GET_ITEM(sequence, 1); - } - __Pyx_INCREF(__pyx_t_7); - __Pyx_INCREF(__pyx_t_11); - #else - __pyx_t_7 = PySequence_ITEM(sequence, 0); if (unlikely(!__pyx_t_7)) __PYX_ERR(0, 112, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_7); - __pyx_t_11 = PySequence_ITEM(sequence, 1); if (unlikely(!__pyx_t_11)) __PYX_ERR(0, 112, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_11); - #endif - __Pyx_DECREF(__pyx_t_5); __pyx_t_5 = 0; - } else { - Py_ssize_t index = -1; - __pyx_t_8 = PyObject_GetIter(__pyx_t_5); if (unlikely(!__pyx_t_8)) __PYX_ERR(0, 112, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_8); - __Pyx_DECREF(__pyx_t_5); __pyx_t_5 = 0; - __pyx_t_12 = Py_TYPE(__pyx_t_8)->tp_iternext; - index = 0; __pyx_t_7 = __pyx_t_12(__pyx_t_8); if (unlikely(!__pyx_t_7)) goto __pyx_L54_unpacking_failed; - __Pyx_GOTREF(__pyx_t_7); - index = 1; __pyx_t_11 = __pyx_t_12(__pyx_t_8); if (unlikely(!__pyx_t_11)) goto __pyx_L54_unpacking_failed; - __Pyx_GOTREF(__pyx_t_11); - if (__Pyx_IternextUnpackEndCheck(__pyx_t_12(__pyx_t_8), 2) < 0) __PYX_ERR(0, 112, __pyx_L1_error) - __pyx_t_12 = NULL; - __Pyx_DECREF(__pyx_t_8); __pyx_t_8 = 0; - goto __pyx_L55_unpacking_done; - __pyx_L54_unpacking_failed:; - __Pyx_DECREF(__pyx_t_8); __pyx_t_8 = 0; - __pyx_t_12 = NULL; - if (__Pyx_IterFinish() == 0) __Pyx_RaiseNeedMoreValuesError(index); - __PYX_ERR(0, 112, __pyx_L1_error) - __pyx_L55_unpacking_done:; - } - if (!(likely(PyList_CheckExact(__pyx_t_11))||((__pyx_t_11) == Py_None)||(PyErr_Format(PyExc_TypeError, "Expected %.16s, got %.200s", "list", Py_TYPE(__pyx_t_11)->tp_name), 0))) __PYX_ERR(0, 112, __pyx_L1_error) - __Pyx_DECREF_SET(__pyx_v_fp_str_, __pyx_t_7); - __pyx_t_7 = 0; - __pyx_v_context_ = ((PyObject*)__pyx_t_11); - __pyx_t_11 = 0; - - /* "pmercury/utils/packet_proc.pyx":113 - * buf[app_offset+3] == 0x00 and buf[app_offset+4] == 0x18): - * fp_str_, context_ = IQUIC.fingerprint(data, app_offset, data_len) - * fp_type = 'iquic' # <<<<<<<<<<<<<< - * elif data_len - app_offset < 240: - * return None - */ - __Pyx_INCREF(__pyx_n_u_iquic); - __pyx_v_fp_type = __pyx_n_u_iquic; - - /* "pmercury/utils/packet_proc.pyx":110 - * fp_str_, context_ = DTLS_Server.fingerprint(data, app_offset, data_len) - * fp_type = 'dtls_server' - * elif (buf[app_offset+1] == 0xff and buf[app_offset+2] == 0x00 and # <<<<<<<<<<<<<< - * buf[app_offset+3] == 0x00 and buf[app_offset+4] == 0x18): - * fp_str_, context_ = IQUIC.fingerprint(data, app_offset, data_len) - */ - goto __pyx_L38; - } - - /* "pmercury/utils/packet_proc.pyx":114 - * fp_str_, context_ = IQUIC.fingerprint(data, app_offset, data_len) - * fp_type = 'iquic' - * elif data_len - app_offset < 240: # <<<<<<<<<<<<<< - * return None - * elif (buf[app_offset+236] == 0x63 and - */ - __pyx_t_2 = (((__pyx_v_data_len - __pyx_v_app_offset) < 0xF0) != 0); - if (__pyx_t_2) { - - /* "pmercury/utils/packet_proc.pyx":115 - * fp_type = 'iquic' - * elif data_len - app_offset < 240: - * return None # <<<<<<<<<<<<<< - * elif (buf[app_offset+236] == 0x63 and - * buf[app_offset+237] == 0x82 and - */ - __Pyx_XDECREF(__pyx_r); - __pyx_r = Py_None; __Pyx_INCREF(Py_None); - goto __pyx_L0; - - /* "pmercury/utils/packet_proc.pyx":114 - * fp_str_, context_ = IQUIC.fingerprint(data, app_offset, data_len) - * fp_type = 'iquic' - * elif data_len - app_offset < 240: # <<<<<<<<<<<<<< - * return None - * elif (buf[app_offset+236] == 0x63 and - */ - } - - /* "pmercury/utils/packet_proc.pyx":116 - * elif data_len - app_offset < 240: - * return None - * elif (buf[app_offset+236] == 0x63 and # <<<<<<<<<<<<<< - * buf[app_offset+237] == 0x82 and - * buf[app_offset+238] == 0x53 and - */ - __pyx_t_3 = (((__pyx_v_buf[(__pyx_v_app_offset + 0xEC)]) == 0x63) != 0); - if (__pyx_t_3) { - } else { - __pyx_t_2 = __pyx_t_3; - goto __pyx_L56_bool_binop_done; - } - - /* "pmercury/utils/packet_proc.pyx":117 - * return None - * elif (buf[app_offset+236] == 0x63 and - * buf[app_offset+237] == 0x82 and # <<<<<<<<<<<<<< - * buf[app_offset+238] == 0x53 and - * buf[app_offset+239] == 0x63): - */ - __pyx_t_3 = (((__pyx_v_buf[(__pyx_v_app_offset + 0xED)]) == 0x82) != 0); - if (__pyx_t_3) { - } else { - __pyx_t_2 = __pyx_t_3; - goto __pyx_L56_bool_binop_done; - } - - /* "pmercury/utils/packet_proc.pyx":118 - * elif (buf[app_offset+236] == 0x63 and - * buf[app_offset+237] == 0x82 and - * buf[app_offset+238] == 0x53 and # <<<<<<<<<<<<<< - * buf[app_offset+239] == 0x63): - * fp_str_, context_ = DHCP.fingerprint(data, app_offset, data_len) - */ - __pyx_t_3 = (((__pyx_v_buf[(__pyx_v_app_offset + 0xEE)]) == 0x53) != 0); - if (__pyx_t_3) { - } else { - __pyx_t_2 = __pyx_t_3; - goto __pyx_L56_bool_binop_done; - } - - /* "pmercury/utils/packet_proc.pyx":119 - * buf[app_offset+237] == 0x82 and - * buf[app_offset+238] == 0x53 and - * buf[app_offset+239] == 0x63): # <<<<<<<<<<<<<< - * fp_str_, context_ = DHCP.fingerprint(data, app_offset, data_len) - * fp_type = 'dhcp' - */ - __pyx_t_3 = (((__pyx_v_buf[(__pyx_v_app_offset + 0xEF)]) == 0x63) != 0); - __pyx_t_2 = __pyx_t_3; - __pyx_L56_bool_binop_done:; - - /* "pmercury/utils/packet_proc.pyx":116 - * elif data_len - app_offset < 240: - * return None - * elif (buf[app_offset+236] == 0x63 and # <<<<<<<<<<<<<< - * buf[app_offset+237] == 0x82 and - * buf[app_offset+238] == 0x53 and - */ - if (__pyx_t_2) { - - /* "pmercury/utils/packet_proc.pyx":120 - * buf[app_offset+238] == 0x53 and - * buf[app_offset+239] == 0x63): - * fp_str_, context_ = DHCP.fingerprint(data, app_offset, data_len) # <<<<<<<<<<<<<< - * fp_type = 'dhcp' - * - */ - __Pyx_GetModuleGlobalName(__pyx_t_11, __pyx_n_s_DHCP); if (unlikely(!__pyx_t_11)) __PYX_ERR(0, 120, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_11); - __pyx_t_7 = __Pyx_PyObject_GetAttrStr(__pyx_t_11, __pyx_n_s_fingerprint); if (unlikely(!__pyx_t_7)) __PYX_ERR(0, 120, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_7); - __Pyx_DECREF(__pyx_t_11); __pyx_t_11 = 0; - __pyx_t_11 = __Pyx_PyInt_From_uint16_t(__pyx_v_app_offset); if (unlikely(!__pyx_t_11)) __PYX_ERR(0, 120, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_11); - __pyx_t_8 = __Pyx_PyInt_From_uint16_t(__pyx_v_data_len); if (unlikely(!__pyx_t_8)) __PYX_ERR(0, 120, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_8); - __pyx_t_6 = NULL; - __pyx_t_10 = 0; - if (CYTHON_UNPACK_METHODS && unlikely(PyMethod_Check(__pyx_t_7))) { - __pyx_t_6 = PyMethod_GET_SELF(__pyx_t_7); - if (likely(__pyx_t_6)) { - PyObject* function = PyMethod_GET_FUNCTION(__pyx_t_7); - __Pyx_INCREF(__pyx_t_6); - __Pyx_INCREF(function); - __Pyx_DECREF_SET(__pyx_t_7, function); - __pyx_t_10 = 1; - } - } - #if CYTHON_FAST_PYCALL - if (PyFunction_Check(__pyx_t_7)) { - PyObject *__pyx_temp[4] = {__pyx_t_6, __pyx_v_data, __pyx_t_11, __pyx_t_8}; - __pyx_t_5 = __Pyx_PyFunction_FastCall(__pyx_t_7, __pyx_temp+1-__pyx_t_10, 3+__pyx_t_10); if (unlikely(!__pyx_t_5)) __PYX_ERR(0, 120, __pyx_L1_error) - __Pyx_XDECREF(__pyx_t_6); __pyx_t_6 = 0; - __Pyx_GOTREF(__pyx_t_5); - __Pyx_DECREF(__pyx_t_11); __pyx_t_11 = 0; - __Pyx_DECREF(__pyx_t_8); __pyx_t_8 = 0; - } else - #endif - #if CYTHON_FAST_PYCCALL - if (__Pyx_PyFastCFunction_Check(__pyx_t_7)) { - PyObject *__pyx_temp[4] = {__pyx_t_6, __pyx_v_data, __pyx_t_11, __pyx_t_8}; - __pyx_t_5 = __Pyx_PyCFunction_FastCall(__pyx_t_7, __pyx_temp+1-__pyx_t_10, 3+__pyx_t_10); if (unlikely(!__pyx_t_5)) __PYX_ERR(0, 120, __pyx_L1_error) - __Pyx_XDECREF(__pyx_t_6); __pyx_t_6 = 0; - __Pyx_GOTREF(__pyx_t_5); - __Pyx_DECREF(__pyx_t_11); __pyx_t_11 = 0; - __Pyx_DECREF(__pyx_t_8); __pyx_t_8 = 0; - } else - #endif - { - __pyx_t_9 = PyTuple_New(3+__pyx_t_10); if (unlikely(!__pyx_t_9)) __PYX_ERR(0, 120, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_9); - if (__pyx_t_6) { - __Pyx_GIVEREF(__pyx_t_6); PyTuple_SET_ITEM(__pyx_t_9, 0, __pyx_t_6); __pyx_t_6 = NULL; - } - __Pyx_INCREF(__pyx_v_data); - __Pyx_GIVEREF(__pyx_v_data); - PyTuple_SET_ITEM(__pyx_t_9, 0+__pyx_t_10, __pyx_v_data); - __Pyx_GIVEREF(__pyx_t_11); - PyTuple_SET_ITEM(__pyx_t_9, 1+__pyx_t_10, __pyx_t_11); - __Pyx_GIVEREF(__pyx_t_8); - PyTuple_SET_ITEM(__pyx_t_9, 2+__pyx_t_10, __pyx_t_8); - __pyx_t_11 = 0; - __pyx_t_8 = 0; - __pyx_t_5 = __Pyx_PyObject_Call(__pyx_t_7, __pyx_t_9, NULL); if (unlikely(!__pyx_t_5)) __PYX_ERR(0, 120, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_5); - __Pyx_DECREF(__pyx_t_9); __pyx_t_9 = 0; - } - __Pyx_DECREF(__pyx_t_7); __pyx_t_7 = 0; - if ((likely(PyTuple_CheckExact(__pyx_t_5))) || (PyList_CheckExact(__pyx_t_5))) { - PyObject* sequence = __pyx_t_5; - Py_ssize_t size = __Pyx_PySequence_SIZE(sequence); - if (unlikely(size != 2)) { - if (size > 2) __Pyx_RaiseTooManyValuesError(2); - else if (size >= 0) __Pyx_RaiseNeedMoreValuesError(size); - __PYX_ERR(0, 120, __pyx_L1_error) - } - #if CYTHON_ASSUME_SAFE_MACROS && !CYTHON_AVOID_BORROWED_REFS - if (likely(PyTuple_CheckExact(sequence))) { - __pyx_t_7 = PyTuple_GET_ITEM(sequence, 0); - __pyx_t_9 = PyTuple_GET_ITEM(sequence, 1); - } else { - __pyx_t_7 = PyList_GET_ITEM(sequence, 0); - __pyx_t_9 = PyList_GET_ITEM(sequence, 1); - } - __Pyx_INCREF(__pyx_t_7); - __Pyx_INCREF(__pyx_t_9); - #else - __pyx_t_7 = PySequence_ITEM(sequence, 0); if (unlikely(!__pyx_t_7)) __PYX_ERR(0, 120, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_7); - __pyx_t_9 = PySequence_ITEM(sequence, 1); if (unlikely(!__pyx_t_9)) __PYX_ERR(0, 120, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_9); - #endif - __Pyx_DECREF(__pyx_t_5); __pyx_t_5 = 0; - } else { - Py_ssize_t index = -1; - __pyx_t_8 = PyObject_GetIter(__pyx_t_5); if (unlikely(!__pyx_t_8)) __PYX_ERR(0, 120, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_8); - __Pyx_DECREF(__pyx_t_5); __pyx_t_5 = 0; - __pyx_t_12 = Py_TYPE(__pyx_t_8)->tp_iternext; - index = 0; __pyx_t_7 = __pyx_t_12(__pyx_t_8); if (unlikely(!__pyx_t_7)) goto __pyx_L60_unpacking_failed; - __Pyx_GOTREF(__pyx_t_7); - index = 1; __pyx_t_9 = __pyx_t_12(__pyx_t_8); if (unlikely(!__pyx_t_9)) goto __pyx_L60_unpacking_failed; - __Pyx_GOTREF(__pyx_t_9); - if (__Pyx_IternextUnpackEndCheck(__pyx_t_12(__pyx_t_8), 2) < 0) __PYX_ERR(0, 120, __pyx_L1_error) - __pyx_t_12 = NULL; - __Pyx_DECREF(__pyx_t_8); __pyx_t_8 = 0; - goto __pyx_L61_unpacking_done; - __pyx_L60_unpacking_failed:; - __Pyx_DECREF(__pyx_t_8); __pyx_t_8 = 0; - __pyx_t_12 = NULL; - if (__Pyx_IterFinish() == 0) __Pyx_RaiseNeedMoreValuesError(index); - __PYX_ERR(0, 120, __pyx_L1_error) - __pyx_L61_unpacking_done:; - } - if (!(likely(PyList_CheckExact(__pyx_t_9))||((__pyx_t_9) == Py_None)||(PyErr_Format(PyExc_TypeError, "Expected %.16s, got %.200s", "list", Py_TYPE(__pyx_t_9)->tp_name), 0))) __PYX_ERR(0, 120, __pyx_L1_error) - __Pyx_DECREF_SET(__pyx_v_fp_str_, __pyx_t_7); - __pyx_t_7 = 0; - __pyx_v_context_ = ((PyObject*)__pyx_t_9); - __pyx_t_9 = 0; - - /* "pmercury/utils/packet_proc.pyx":121 - * buf[app_offset+239] == 0x63): - * fp_str_, context_ = DHCP.fingerprint(data, app_offset, data_len) - * fp_type = 'dhcp' # <<<<<<<<<<<<<< - * - * if fp_str_ == None: - */ - __Pyx_INCREF(__pyx_n_u_dhcp); - __pyx_v_fp_type = __pyx_n_u_dhcp; - - /* "pmercury/utils/packet_proc.pyx":116 - * elif data_len - app_offset < 240: - * return None - * elif (buf[app_offset+236] == 0x63 and # <<<<<<<<<<<<<< - * buf[app_offset+237] == 0x82 and - * buf[app_offset+238] == 0x53 and - */ - } - __pyx_L38:; - - /* "pmercury/utils/packet_proc.pyx":96 - * fp_str_, context_ = HTTP_Server.fingerprint(data, app_offset, data_len) - * fp_type = 'http_server' - * elif protocol == 17: # <<<<<<<<<<<<<< - * prot_offset = ip_offset+ip_length - * prot_length = 8 - */ - break; - default: break; - } - - /* "pmercury/utils/packet_proc.pyx":123 - * fp_type = 'dhcp' - * - * if fp_str_ == None: # <<<<<<<<<<<<<< - * return None - * - */ - __pyx_t_5 = PyObject_RichCompare(__pyx_v_fp_str_, Py_None, Py_EQ); __Pyx_XGOTREF(__pyx_t_5); if (unlikely(!__pyx_t_5)) __PYX_ERR(0, 123, __pyx_L1_error) - __pyx_t_2 = __Pyx_PyObject_IsTrue(__pyx_t_5); if (unlikely(__pyx_t_2 < 0)) __PYX_ERR(0, 123, __pyx_L1_error) - __Pyx_DECREF(__pyx_t_5); __pyx_t_5 = 0; - if (__pyx_t_2) { - - /* "pmercury/utils/packet_proc.pyx":124 - * - * if fp_str_ == None: - * return None # <<<<<<<<<<<<<< - * - * src_port = htons(deref((buf+prot_offset))) - */ - __Pyx_XDECREF(__pyx_r); - __pyx_r = Py_None; __Pyx_INCREF(Py_None); - goto __pyx_L0; - - /* "pmercury/utils/packet_proc.pyx":123 - * fp_type = 'dhcp' - * - * if fp_str_ == None: # <<<<<<<<<<<<<< - * return None - * - */ - } - - /* "pmercury/utils/packet_proc.pyx":126 - * return None - * - * src_port = htons(deref((buf+prot_offset))) # <<<<<<<<<<<<<< - * dst_port = htons(deref((buf+prot_offset+2))) - * if ip_type == 4: - */ - __pyx_v_src_port = htons((*((uint16_t *)(__pyx_v_buf + __pyx_v_prot_offset)))); - - /* "pmercury/utils/packet_proc.pyx":127 - * - * src_port = htons(deref((buf+prot_offset))) - * dst_port = htons(deref((buf+prot_offset+2))) # <<<<<<<<<<<<<< - * if ip_type == 4: - * o_ = prot_offset-8 - */ - __pyx_v_dst_port = htons((*((uint16_t *)((__pyx_v_buf + __pyx_v_prot_offset) + 2)))); - - /* "pmercury/utils/packet_proc.pyx":128 - * src_port = htons(deref((buf+prot_offset))) - * dst_port = htons(deref((buf+prot_offset+2))) - * if ip_type == 4: # <<<<<<<<<<<<<< - * o_ = prot_offset-8 - * src_ip = f'{buf[o_]}.{buf[o_+1]}.{buf[o_+2]}.{buf[o_+3]}' - */ - __pyx_t_2 = ((__pyx_v_ip_type == 4) != 0); - if (__pyx_t_2) { - - /* "pmercury/utils/packet_proc.pyx":129 - * dst_port = htons(deref((buf+prot_offset+2))) - * if ip_type == 4: - * o_ = prot_offset-8 # <<<<<<<<<<<<<< - * src_ip = f'{buf[o_]}.{buf[o_+1]}.{buf[o_+2]}.{buf[o_+3]}' - * o_ += 4 - */ - __pyx_v_o_ = (__pyx_v_prot_offset - 8); - - /* "pmercury/utils/packet_proc.pyx":130 - * if ip_type == 4: - * o_ = prot_offset-8 - * src_ip = f'{buf[o_]}.{buf[o_+1]}.{buf[o_+2]}.{buf[o_+3]}' # <<<<<<<<<<<<<< - * o_ += 4 - * dst_ip = f'{buf[o_]}.{buf[o_+1]}.{buf[o_+2]}.{buf[o_+3]}' - */ - __pyx_t_5 = PyTuple_New(7); if (unlikely(!__pyx_t_5)) __PYX_ERR(0, 130, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_5); - __pyx_t_4 = 0; - __pyx_t_13 = 127; - __pyx_t_9 = __Pyx_PyInt_From_uint8_t((__pyx_v_buf[__pyx_v_o_])); if (unlikely(!__pyx_t_9)) __PYX_ERR(0, 130, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_9); - __pyx_t_7 = __Pyx_PyObject_FormatSimple(__pyx_t_9, __pyx_empty_unicode); if (unlikely(!__pyx_t_7)) __PYX_ERR(0, 130, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_7); - __Pyx_DECREF(__pyx_t_9); __pyx_t_9 = 0; - __pyx_t_13 = (__Pyx_PyUnicode_MAX_CHAR_VALUE(__pyx_t_7) > __pyx_t_13) ? __Pyx_PyUnicode_MAX_CHAR_VALUE(__pyx_t_7) : __pyx_t_13; - __pyx_t_4 += __Pyx_PyUnicode_GET_LENGTH(__pyx_t_7); - __Pyx_GIVEREF(__pyx_t_7); - PyTuple_SET_ITEM(__pyx_t_5, 0, __pyx_t_7); - __pyx_t_7 = 0; - __Pyx_INCREF(__pyx_kp_u_); - __pyx_t_4 += 1; - __Pyx_GIVEREF(__pyx_kp_u_); - PyTuple_SET_ITEM(__pyx_t_5, 1, __pyx_kp_u_); - __pyx_t_7 = __Pyx_PyInt_From_uint8_t((__pyx_v_buf[(__pyx_v_o_ + 1)])); if (unlikely(!__pyx_t_7)) __PYX_ERR(0, 130, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_7); - __pyx_t_9 = __Pyx_PyObject_FormatSimple(__pyx_t_7, __pyx_empty_unicode); if (unlikely(!__pyx_t_9)) __PYX_ERR(0, 130, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_9); - __Pyx_DECREF(__pyx_t_7); __pyx_t_7 = 0; - __pyx_t_13 = (__Pyx_PyUnicode_MAX_CHAR_VALUE(__pyx_t_9) > __pyx_t_13) ? __Pyx_PyUnicode_MAX_CHAR_VALUE(__pyx_t_9) : __pyx_t_13; - __pyx_t_4 += __Pyx_PyUnicode_GET_LENGTH(__pyx_t_9); - __Pyx_GIVEREF(__pyx_t_9); - PyTuple_SET_ITEM(__pyx_t_5, 2, __pyx_t_9); - __pyx_t_9 = 0; - __Pyx_INCREF(__pyx_kp_u_); - __pyx_t_4 += 1; - __Pyx_GIVEREF(__pyx_kp_u_); - PyTuple_SET_ITEM(__pyx_t_5, 3, __pyx_kp_u_); - __pyx_t_9 = __Pyx_PyInt_From_uint8_t((__pyx_v_buf[(__pyx_v_o_ + 2)])); if (unlikely(!__pyx_t_9)) __PYX_ERR(0, 130, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_9); - __pyx_t_7 = __Pyx_PyObject_FormatSimple(__pyx_t_9, __pyx_empty_unicode); if (unlikely(!__pyx_t_7)) __PYX_ERR(0, 130, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_7); - __Pyx_DECREF(__pyx_t_9); __pyx_t_9 = 0; - __pyx_t_13 = (__Pyx_PyUnicode_MAX_CHAR_VALUE(__pyx_t_7) > __pyx_t_13) ? __Pyx_PyUnicode_MAX_CHAR_VALUE(__pyx_t_7) : __pyx_t_13; - __pyx_t_4 += __Pyx_PyUnicode_GET_LENGTH(__pyx_t_7); - __Pyx_GIVEREF(__pyx_t_7); - PyTuple_SET_ITEM(__pyx_t_5, 4, __pyx_t_7); - __pyx_t_7 = 0; - __Pyx_INCREF(__pyx_kp_u_); - __pyx_t_4 += 1; - __Pyx_GIVEREF(__pyx_kp_u_); - PyTuple_SET_ITEM(__pyx_t_5, 5, __pyx_kp_u_); - __pyx_t_7 = __Pyx_PyInt_From_uint8_t((__pyx_v_buf[(__pyx_v_o_ + 3)])); if (unlikely(!__pyx_t_7)) __PYX_ERR(0, 130, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_7); - __pyx_t_9 = __Pyx_PyObject_FormatSimple(__pyx_t_7, __pyx_empty_unicode); if (unlikely(!__pyx_t_9)) __PYX_ERR(0, 130, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_9); - __Pyx_DECREF(__pyx_t_7); __pyx_t_7 = 0; - __pyx_t_13 = (__Pyx_PyUnicode_MAX_CHAR_VALUE(__pyx_t_9) > __pyx_t_13) ? __Pyx_PyUnicode_MAX_CHAR_VALUE(__pyx_t_9) : __pyx_t_13; - __pyx_t_4 += __Pyx_PyUnicode_GET_LENGTH(__pyx_t_9); - __Pyx_GIVEREF(__pyx_t_9); - PyTuple_SET_ITEM(__pyx_t_5, 6, __pyx_t_9); - __pyx_t_9 = 0; - __pyx_t_9 = __Pyx_PyUnicode_Join(__pyx_t_5, 7, __pyx_t_4, __pyx_t_13); if (unlikely(!__pyx_t_9)) __PYX_ERR(0, 130, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_9); - __Pyx_DECREF(__pyx_t_5); __pyx_t_5 = 0; - __pyx_v_src_ip = ((PyObject*)__pyx_t_9); - __pyx_t_9 = 0; - - /* "pmercury/utils/packet_proc.pyx":131 - * o_ = prot_offset-8 - * src_ip = f'{buf[o_]}.{buf[o_+1]}.{buf[o_+2]}.{buf[o_+3]}' - * o_ += 4 # <<<<<<<<<<<<<< - * dst_ip = f'{buf[o_]}.{buf[o_+1]}.{buf[o_+2]}.{buf[o_+3]}' - * else: - */ - __pyx_v_o_ = (__pyx_v_o_ + 4); - - /* "pmercury/utils/packet_proc.pyx":132 - * src_ip = f'{buf[o_]}.{buf[o_+1]}.{buf[o_+2]}.{buf[o_+3]}' - * o_ += 4 - * dst_ip = f'{buf[o_]}.{buf[o_+1]}.{buf[o_+2]}.{buf[o_+3]}' # <<<<<<<<<<<<<< - * else: - * o_ = prot_offset-32 - */ - __pyx_t_9 = PyTuple_New(7); if (unlikely(!__pyx_t_9)) __PYX_ERR(0, 132, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_9); - __pyx_t_4 = 0; - __pyx_t_13 = 127; - __pyx_t_5 = __Pyx_PyInt_From_uint8_t((__pyx_v_buf[__pyx_v_o_])); if (unlikely(!__pyx_t_5)) __PYX_ERR(0, 132, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_5); - __pyx_t_7 = __Pyx_PyObject_FormatSimple(__pyx_t_5, __pyx_empty_unicode); if (unlikely(!__pyx_t_7)) __PYX_ERR(0, 132, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_7); - __Pyx_DECREF(__pyx_t_5); __pyx_t_5 = 0; - __pyx_t_13 = (__Pyx_PyUnicode_MAX_CHAR_VALUE(__pyx_t_7) > __pyx_t_13) ? __Pyx_PyUnicode_MAX_CHAR_VALUE(__pyx_t_7) : __pyx_t_13; - __pyx_t_4 += __Pyx_PyUnicode_GET_LENGTH(__pyx_t_7); - __Pyx_GIVEREF(__pyx_t_7); - PyTuple_SET_ITEM(__pyx_t_9, 0, __pyx_t_7); - __pyx_t_7 = 0; - __Pyx_INCREF(__pyx_kp_u_); - __pyx_t_4 += 1; - __Pyx_GIVEREF(__pyx_kp_u_); - PyTuple_SET_ITEM(__pyx_t_9, 1, __pyx_kp_u_); - __pyx_t_7 = __Pyx_PyInt_From_uint8_t((__pyx_v_buf[(__pyx_v_o_ + 1)])); if (unlikely(!__pyx_t_7)) __PYX_ERR(0, 132, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_7); - __pyx_t_5 = __Pyx_PyObject_FormatSimple(__pyx_t_7, __pyx_empty_unicode); if (unlikely(!__pyx_t_5)) __PYX_ERR(0, 132, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_5); - __Pyx_DECREF(__pyx_t_7); __pyx_t_7 = 0; - __pyx_t_13 = (__Pyx_PyUnicode_MAX_CHAR_VALUE(__pyx_t_5) > __pyx_t_13) ? __Pyx_PyUnicode_MAX_CHAR_VALUE(__pyx_t_5) : __pyx_t_13; - __pyx_t_4 += __Pyx_PyUnicode_GET_LENGTH(__pyx_t_5); - __Pyx_GIVEREF(__pyx_t_5); - PyTuple_SET_ITEM(__pyx_t_9, 2, __pyx_t_5); - __pyx_t_5 = 0; - __Pyx_INCREF(__pyx_kp_u_); - __pyx_t_4 += 1; - __Pyx_GIVEREF(__pyx_kp_u_); - PyTuple_SET_ITEM(__pyx_t_9, 3, __pyx_kp_u_); - __pyx_t_5 = __Pyx_PyInt_From_uint8_t((__pyx_v_buf[(__pyx_v_o_ + 2)])); if (unlikely(!__pyx_t_5)) __PYX_ERR(0, 132, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_5); - __pyx_t_7 = __Pyx_PyObject_FormatSimple(__pyx_t_5, __pyx_empty_unicode); if (unlikely(!__pyx_t_7)) __PYX_ERR(0, 132, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_7); - __Pyx_DECREF(__pyx_t_5); __pyx_t_5 = 0; - __pyx_t_13 = (__Pyx_PyUnicode_MAX_CHAR_VALUE(__pyx_t_7) > __pyx_t_13) ? __Pyx_PyUnicode_MAX_CHAR_VALUE(__pyx_t_7) : __pyx_t_13; - __pyx_t_4 += __Pyx_PyUnicode_GET_LENGTH(__pyx_t_7); - __Pyx_GIVEREF(__pyx_t_7); - PyTuple_SET_ITEM(__pyx_t_9, 4, __pyx_t_7); - __pyx_t_7 = 0; - __Pyx_INCREF(__pyx_kp_u_); - __pyx_t_4 += 1; - __Pyx_GIVEREF(__pyx_kp_u_); - PyTuple_SET_ITEM(__pyx_t_9, 5, __pyx_kp_u_); - __pyx_t_7 = __Pyx_PyInt_From_uint8_t((__pyx_v_buf[(__pyx_v_o_ + 3)])); if (unlikely(!__pyx_t_7)) __PYX_ERR(0, 132, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_7); - __pyx_t_5 = __Pyx_PyObject_FormatSimple(__pyx_t_7, __pyx_empty_unicode); if (unlikely(!__pyx_t_5)) __PYX_ERR(0, 132, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_5); - __Pyx_DECREF(__pyx_t_7); __pyx_t_7 = 0; - __pyx_t_13 = (__Pyx_PyUnicode_MAX_CHAR_VALUE(__pyx_t_5) > __pyx_t_13) ? __Pyx_PyUnicode_MAX_CHAR_VALUE(__pyx_t_5) : __pyx_t_13; - __pyx_t_4 += __Pyx_PyUnicode_GET_LENGTH(__pyx_t_5); - __Pyx_GIVEREF(__pyx_t_5); - PyTuple_SET_ITEM(__pyx_t_9, 6, __pyx_t_5); - __pyx_t_5 = 0; - __pyx_t_5 = __Pyx_PyUnicode_Join(__pyx_t_9, 7, __pyx_t_4, __pyx_t_13); if (unlikely(!__pyx_t_5)) __PYX_ERR(0, 132, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_5); - __Pyx_DECREF(__pyx_t_9); __pyx_t_9 = 0; - __pyx_v_dst_ip = ((PyObject*)__pyx_t_5); - __pyx_t_5 = 0; - - /* "pmercury/utils/packet_proc.pyx":128 - * src_port = htons(deref((buf+prot_offset))) - * dst_port = htons(deref((buf+prot_offset+2))) - * if ip_type == 4: # <<<<<<<<<<<<<< - * o_ = prot_offset-8 - * src_ip = f'{buf[o_]}.{buf[o_+1]}.{buf[o_+2]}.{buf[o_+3]}' - */ - goto __pyx_L63; - } - - /* "pmercury/utils/packet_proc.pyx":134 - * dst_ip = f'{buf[o_]}.{buf[o_+1]}.{buf[o_+2]}.{buf[o_+3]}' - * else: - * o_ = prot_offset-32 # <<<<<<<<<<<<<< - * src_ip = (f'{buf[o_]:02x}{buf[o_+1]:02x}:{buf[o_+2]:02x}{buf[o_+3]:02x}:' - * f'{buf[o_+4]:02x}{buf[o_+5]:02x}:{buf[o_+6]:02x}{buf[o_+7]:02x}:' - */ - /*else*/ { - __pyx_v_o_ = (__pyx_v_prot_offset - 32); - - /* "pmercury/utils/packet_proc.pyx":135 - * else: - * o_ = prot_offset-32 - * src_ip = (f'{buf[o_]:02x}{buf[o_+1]:02x}:{buf[o_+2]:02x}{buf[o_+3]:02x}:' # <<<<<<<<<<<<<< - * f'{buf[o_+4]:02x}{buf[o_+5]:02x}:{buf[o_+6]:02x}{buf[o_+7]:02x}:' - * f'{buf[o_+8]:02x}{buf[o_+9]:02x}:{buf[o_+10]:02x}{buf[o_+11]:02x}:' - */ - __pyx_t_5 = PyTuple_New(23); if (unlikely(!__pyx_t_5)) __PYX_ERR(0, 135, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_5); - __pyx_t_4 = 0; - __pyx_t_13 = 127; - __pyx_t_9 = __Pyx_PyInt_From_uint8_t((__pyx_v_buf[__pyx_v_o_])); if (unlikely(!__pyx_t_9)) __PYX_ERR(0, 135, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_9); - __pyx_t_7 = __Pyx_PyObject_Format(__pyx_t_9, __pyx_kp_u_02x); if (unlikely(!__pyx_t_7)) __PYX_ERR(0, 135, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_7); - __Pyx_DECREF(__pyx_t_9); __pyx_t_9 = 0; - __pyx_t_13 = (__Pyx_PyUnicode_MAX_CHAR_VALUE(__pyx_t_7) > __pyx_t_13) ? __Pyx_PyUnicode_MAX_CHAR_VALUE(__pyx_t_7) : __pyx_t_13; - __pyx_t_4 += __Pyx_PyUnicode_GET_LENGTH(__pyx_t_7); - __Pyx_GIVEREF(__pyx_t_7); - PyTuple_SET_ITEM(__pyx_t_5, 0, __pyx_t_7); - __pyx_t_7 = 0; - __pyx_t_7 = __Pyx_PyInt_From_uint8_t((__pyx_v_buf[(__pyx_v_o_ + 1)])); if (unlikely(!__pyx_t_7)) __PYX_ERR(0, 135, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_7); - __pyx_t_9 = __Pyx_PyObject_Format(__pyx_t_7, __pyx_kp_u_02x); if (unlikely(!__pyx_t_9)) __PYX_ERR(0, 135, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_9); - __Pyx_DECREF(__pyx_t_7); __pyx_t_7 = 0; - __pyx_t_13 = (__Pyx_PyUnicode_MAX_CHAR_VALUE(__pyx_t_9) > __pyx_t_13) ? __Pyx_PyUnicode_MAX_CHAR_VALUE(__pyx_t_9) : __pyx_t_13; - __pyx_t_4 += __Pyx_PyUnicode_GET_LENGTH(__pyx_t_9); - __Pyx_GIVEREF(__pyx_t_9); - PyTuple_SET_ITEM(__pyx_t_5, 1, __pyx_t_9); - __pyx_t_9 = 0; - __Pyx_INCREF(__pyx_kp_u__2); - __pyx_t_4 += 1; - __Pyx_GIVEREF(__pyx_kp_u__2); - PyTuple_SET_ITEM(__pyx_t_5, 2, __pyx_kp_u__2); - __pyx_t_9 = __Pyx_PyInt_From_uint8_t((__pyx_v_buf[(__pyx_v_o_ + 2)])); if (unlikely(!__pyx_t_9)) __PYX_ERR(0, 135, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_9); - __pyx_t_7 = __Pyx_PyObject_Format(__pyx_t_9, __pyx_kp_u_02x); if (unlikely(!__pyx_t_7)) __PYX_ERR(0, 135, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_7); - __Pyx_DECREF(__pyx_t_9); __pyx_t_9 = 0; - __pyx_t_13 = (__Pyx_PyUnicode_MAX_CHAR_VALUE(__pyx_t_7) > __pyx_t_13) ? __Pyx_PyUnicode_MAX_CHAR_VALUE(__pyx_t_7) : __pyx_t_13; - __pyx_t_4 += __Pyx_PyUnicode_GET_LENGTH(__pyx_t_7); - __Pyx_GIVEREF(__pyx_t_7); - PyTuple_SET_ITEM(__pyx_t_5, 3, __pyx_t_7); - __pyx_t_7 = 0; - __pyx_t_7 = __Pyx_PyInt_From_uint8_t((__pyx_v_buf[(__pyx_v_o_ + 3)])); if (unlikely(!__pyx_t_7)) __PYX_ERR(0, 135, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_7); - __pyx_t_9 = __Pyx_PyObject_Format(__pyx_t_7, __pyx_kp_u_02x); if (unlikely(!__pyx_t_9)) __PYX_ERR(0, 135, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_9); - __Pyx_DECREF(__pyx_t_7); __pyx_t_7 = 0; - __pyx_t_13 = (__Pyx_PyUnicode_MAX_CHAR_VALUE(__pyx_t_9) > __pyx_t_13) ? __Pyx_PyUnicode_MAX_CHAR_VALUE(__pyx_t_9) : __pyx_t_13; - __pyx_t_4 += __Pyx_PyUnicode_GET_LENGTH(__pyx_t_9); - __Pyx_GIVEREF(__pyx_t_9); - PyTuple_SET_ITEM(__pyx_t_5, 4, __pyx_t_9); - __pyx_t_9 = 0; - __Pyx_INCREF(__pyx_kp_u__2); - __pyx_t_4 += 1; - __Pyx_GIVEREF(__pyx_kp_u__2); - PyTuple_SET_ITEM(__pyx_t_5, 5, __pyx_kp_u__2); - - /* "pmercury/utils/packet_proc.pyx":136 - * o_ = prot_offset-32 - * src_ip = (f'{buf[o_]:02x}{buf[o_+1]:02x}:{buf[o_+2]:02x}{buf[o_+3]:02x}:' - * f'{buf[o_+4]:02x}{buf[o_+5]:02x}:{buf[o_+6]:02x}{buf[o_+7]:02x}:' # <<<<<<<<<<<<<< - * f'{buf[o_+8]:02x}{buf[o_+9]:02x}:{buf[o_+10]:02x}{buf[o_+11]:02x}:' - * f'{buf[o_+12]:02x}{buf[o_+13]:02x}:{buf[o_+14]:02x}{buf[o_+15]:02x}') - */ - __pyx_t_9 = __Pyx_PyInt_From_uint8_t((__pyx_v_buf[(__pyx_v_o_ + 4)])); if (unlikely(!__pyx_t_9)) __PYX_ERR(0, 136, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_9); - __pyx_t_7 = __Pyx_PyObject_Format(__pyx_t_9, __pyx_kp_u_02x); if (unlikely(!__pyx_t_7)) __PYX_ERR(0, 136, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_7); - __Pyx_DECREF(__pyx_t_9); __pyx_t_9 = 0; - __pyx_t_13 = (__Pyx_PyUnicode_MAX_CHAR_VALUE(__pyx_t_7) > __pyx_t_13) ? __Pyx_PyUnicode_MAX_CHAR_VALUE(__pyx_t_7) : __pyx_t_13; - __pyx_t_4 += __Pyx_PyUnicode_GET_LENGTH(__pyx_t_7); - __Pyx_GIVEREF(__pyx_t_7); - PyTuple_SET_ITEM(__pyx_t_5, 6, __pyx_t_7); - __pyx_t_7 = 0; - __pyx_t_7 = __Pyx_PyInt_From_uint8_t((__pyx_v_buf[(__pyx_v_o_ + 5)])); if (unlikely(!__pyx_t_7)) __PYX_ERR(0, 136, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_7); - __pyx_t_9 = __Pyx_PyObject_Format(__pyx_t_7, __pyx_kp_u_02x); if (unlikely(!__pyx_t_9)) __PYX_ERR(0, 136, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_9); - __Pyx_DECREF(__pyx_t_7); __pyx_t_7 = 0; - __pyx_t_13 = (__Pyx_PyUnicode_MAX_CHAR_VALUE(__pyx_t_9) > __pyx_t_13) ? __Pyx_PyUnicode_MAX_CHAR_VALUE(__pyx_t_9) : __pyx_t_13; - __pyx_t_4 += __Pyx_PyUnicode_GET_LENGTH(__pyx_t_9); - __Pyx_GIVEREF(__pyx_t_9); - PyTuple_SET_ITEM(__pyx_t_5, 7, __pyx_t_9); - __pyx_t_9 = 0; - __Pyx_INCREF(__pyx_kp_u__2); - __pyx_t_4 += 1; - __Pyx_GIVEREF(__pyx_kp_u__2); - PyTuple_SET_ITEM(__pyx_t_5, 8, __pyx_kp_u__2); - __pyx_t_9 = __Pyx_PyInt_From_uint8_t((__pyx_v_buf[(__pyx_v_o_ + 6)])); if (unlikely(!__pyx_t_9)) __PYX_ERR(0, 136, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_9); - __pyx_t_7 = __Pyx_PyObject_Format(__pyx_t_9, __pyx_kp_u_02x); if (unlikely(!__pyx_t_7)) __PYX_ERR(0, 136, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_7); - __Pyx_DECREF(__pyx_t_9); __pyx_t_9 = 0; - __pyx_t_13 = (__Pyx_PyUnicode_MAX_CHAR_VALUE(__pyx_t_7) > __pyx_t_13) ? __Pyx_PyUnicode_MAX_CHAR_VALUE(__pyx_t_7) : __pyx_t_13; - __pyx_t_4 += __Pyx_PyUnicode_GET_LENGTH(__pyx_t_7); - __Pyx_GIVEREF(__pyx_t_7); - PyTuple_SET_ITEM(__pyx_t_5, 9, __pyx_t_7); - __pyx_t_7 = 0; - __pyx_t_7 = __Pyx_PyInt_From_uint8_t((__pyx_v_buf[(__pyx_v_o_ + 7)])); if (unlikely(!__pyx_t_7)) __PYX_ERR(0, 136, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_7); - __pyx_t_9 = __Pyx_PyObject_Format(__pyx_t_7, __pyx_kp_u_02x); if (unlikely(!__pyx_t_9)) __PYX_ERR(0, 136, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_9); - __Pyx_DECREF(__pyx_t_7); __pyx_t_7 = 0; - __pyx_t_13 = (__Pyx_PyUnicode_MAX_CHAR_VALUE(__pyx_t_9) > __pyx_t_13) ? __Pyx_PyUnicode_MAX_CHAR_VALUE(__pyx_t_9) : __pyx_t_13; - __pyx_t_4 += __Pyx_PyUnicode_GET_LENGTH(__pyx_t_9); - __Pyx_GIVEREF(__pyx_t_9); - PyTuple_SET_ITEM(__pyx_t_5, 10, __pyx_t_9); - __pyx_t_9 = 0; - __Pyx_INCREF(__pyx_kp_u__2); - __pyx_t_4 += 1; - __Pyx_GIVEREF(__pyx_kp_u__2); - PyTuple_SET_ITEM(__pyx_t_5, 11, __pyx_kp_u__2); - - /* "pmercury/utils/packet_proc.pyx":137 - * src_ip = (f'{buf[o_]:02x}{buf[o_+1]:02x}:{buf[o_+2]:02x}{buf[o_+3]:02x}:' - * f'{buf[o_+4]:02x}{buf[o_+5]:02x}:{buf[o_+6]:02x}{buf[o_+7]:02x}:' - * f'{buf[o_+8]:02x}{buf[o_+9]:02x}:{buf[o_+10]:02x}{buf[o_+11]:02x}:' # <<<<<<<<<<<<<< - * f'{buf[o_+12]:02x}{buf[o_+13]:02x}:{buf[o_+14]:02x}{buf[o_+15]:02x}') - * o_ += 16 - */ - __pyx_t_9 = __Pyx_PyInt_From_uint8_t((__pyx_v_buf[(__pyx_v_o_ + 8)])); if (unlikely(!__pyx_t_9)) __PYX_ERR(0, 137, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_9); - __pyx_t_7 = __Pyx_PyObject_Format(__pyx_t_9, __pyx_kp_u_02x); if (unlikely(!__pyx_t_7)) __PYX_ERR(0, 137, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_7); - __Pyx_DECREF(__pyx_t_9); __pyx_t_9 = 0; - __pyx_t_13 = (__Pyx_PyUnicode_MAX_CHAR_VALUE(__pyx_t_7) > __pyx_t_13) ? __Pyx_PyUnicode_MAX_CHAR_VALUE(__pyx_t_7) : __pyx_t_13; - __pyx_t_4 += __Pyx_PyUnicode_GET_LENGTH(__pyx_t_7); - __Pyx_GIVEREF(__pyx_t_7); - PyTuple_SET_ITEM(__pyx_t_5, 12, __pyx_t_7); - __pyx_t_7 = 0; - __pyx_t_7 = __Pyx_PyInt_From_uint8_t((__pyx_v_buf[(__pyx_v_o_ + 9)])); if (unlikely(!__pyx_t_7)) __PYX_ERR(0, 137, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_7); - __pyx_t_9 = __Pyx_PyObject_Format(__pyx_t_7, __pyx_kp_u_02x); if (unlikely(!__pyx_t_9)) __PYX_ERR(0, 137, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_9); - __Pyx_DECREF(__pyx_t_7); __pyx_t_7 = 0; - __pyx_t_13 = (__Pyx_PyUnicode_MAX_CHAR_VALUE(__pyx_t_9) > __pyx_t_13) ? __Pyx_PyUnicode_MAX_CHAR_VALUE(__pyx_t_9) : __pyx_t_13; - __pyx_t_4 += __Pyx_PyUnicode_GET_LENGTH(__pyx_t_9); - __Pyx_GIVEREF(__pyx_t_9); - PyTuple_SET_ITEM(__pyx_t_5, 13, __pyx_t_9); - __pyx_t_9 = 0; - __Pyx_INCREF(__pyx_kp_u__2); - __pyx_t_4 += 1; - __Pyx_GIVEREF(__pyx_kp_u__2); - PyTuple_SET_ITEM(__pyx_t_5, 14, __pyx_kp_u__2); - __pyx_t_9 = __Pyx_PyInt_From_uint8_t((__pyx_v_buf[(__pyx_v_o_ + 10)])); if (unlikely(!__pyx_t_9)) __PYX_ERR(0, 137, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_9); - __pyx_t_7 = __Pyx_PyObject_Format(__pyx_t_9, __pyx_kp_u_02x); if (unlikely(!__pyx_t_7)) __PYX_ERR(0, 137, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_7); - __Pyx_DECREF(__pyx_t_9); __pyx_t_9 = 0; - __pyx_t_13 = (__Pyx_PyUnicode_MAX_CHAR_VALUE(__pyx_t_7) > __pyx_t_13) ? __Pyx_PyUnicode_MAX_CHAR_VALUE(__pyx_t_7) : __pyx_t_13; - __pyx_t_4 += __Pyx_PyUnicode_GET_LENGTH(__pyx_t_7); - __Pyx_GIVEREF(__pyx_t_7); - PyTuple_SET_ITEM(__pyx_t_5, 15, __pyx_t_7); - __pyx_t_7 = 0; - __pyx_t_7 = __Pyx_PyInt_From_uint8_t((__pyx_v_buf[(__pyx_v_o_ + 11)])); if (unlikely(!__pyx_t_7)) __PYX_ERR(0, 137, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_7); - __pyx_t_9 = __Pyx_PyObject_Format(__pyx_t_7, __pyx_kp_u_02x); if (unlikely(!__pyx_t_9)) __PYX_ERR(0, 137, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_9); - __Pyx_DECREF(__pyx_t_7); __pyx_t_7 = 0; - __pyx_t_13 = (__Pyx_PyUnicode_MAX_CHAR_VALUE(__pyx_t_9) > __pyx_t_13) ? __Pyx_PyUnicode_MAX_CHAR_VALUE(__pyx_t_9) : __pyx_t_13; - __pyx_t_4 += __Pyx_PyUnicode_GET_LENGTH(__pyx_t_9); - __Pyx_GIVEREF(__pyx_t_9); - PyTuple_SET_ITEM(__pyx_t_5, 16, __pyx_t_9); - __pyx_t_9 = 0; - __Pyx_INCREF(__pyx_kp_u__2); - __pyx_t_4 += 1; - __Pyx_GIVEREF(__pyx_kp_u__2); - PyTuple_SET_ITEM(__pyx_t_5, 17, __pyx_kp_u__2); - - /* "pmercury/utils/packet_proc.pyx":138 - * f'{buf[o_+4]:02x}{buf[o_+5]:02x}:{buf[o_+6]:02x}{buf[o_+7]:02x}:' - * f'{buf[o_+8]:02x}{buf[o_+9]:02x}:{buf[o_+10]:02x}{buf[o_+11]:02x}:' - * f'{buf[o_+12]:02x}{buf[o_+13]:02x}:{buf[o_+14]:02x}{buf[o_+15]:02x}') # <<<<<<<<<<<<<< - * o_ += 16 - * dst_ip = (f'{buf[o_]:02x}{buf[o_+1]:02x}:{buf[o_+2]:02x}{buf[o_+3]:02x}:' - */ - __pyx_t_9 = __Pyx_PyInt_From_uint8_t((__pyx_v_buf[(__pyx_v_o_ + 12)])); if (unlikely(!__pyx_t_9)) __PYX_ERR(0, 138, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_9); - __pyx_t_7 = __Pyx_PyObject_Format(__pyx_t_9, __pyx_kp_u_02x); if (unlikely(!__pyx_t_7)) __PYX_ERR(0, 138, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_7); - __Pyx_DECREF(__pyx_t_9); __pyx_t_9 = 0; - __pyx_t_13 = (__Pyx_PyUnicode_MAX_CHAR_VALUE(__pyx_t_7) > __pyx_t_13) ? __Pyx_PyUnicode_MAX_CHAR_VALUE(__pyx_t_7) : __pyx_t_13; - __pyx_t_4 += __Pyx_PyUnicode_GET_LENGTH(__pyx_t_7); - __Pyx_GIVEREF(__pyx_t_7); - PyTuple_SET_ITEM(__pyx_t_5, 18, __pyx_t_7); - __pyx_t_7 = 0; - __pyx_t_7 = __Pyx_PyInt_From_uint8_t((__pyx_v_buf[(__pyx_v_o_ + 13)])); if (unlikely(!__pyx_t_7)) __PYX_ERR(0, 138, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_7); - __pyx_t_9 = __Pyx_PyObject_Format(__pyx_t_7, __pyx_kp_u_02x); if (unlikely(!__pyx_t_9)) __PYX_ERR(0, 138, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_9); - __Pyx_DECREF(__pyx_t_7); __pyx_t_7 = 0; - __pyx_t_13 = (__Pyx_PyUnicode_MAX_CHAR_VALUE(__pyx_t_9) > __pyx_t_13) ? __Pyx_PyUnicode_MAX_CHAR_VALUE(__pyx_t_9) : __pyx_t_13; - __pyx_t_4 += __Pyx_PyUnicode_GET_LENGTH(__pyx_t_9); - __Pyx_GIVEREF(__pyx_t_9); - PyTuple_SET_ITEM(__pyx_t_5, 19, __pyx_t_9); - __pyx_t_9 = 0; - __Pyx_INCREF(__pyx_kp_u__2); - __pyx_t_4 += 1; - __Pyx_GIVEREF(__pyx_kp_u__2); - PyTuple_SET_ITEM(__pyx_t_5, 20, __pyx_kp_u__2); - __pyx_t_9 = __Pyx_PyInt_From_uint8_t((__pyx_v_buf[(__pyx_v_o_ + 14)])); if (unlikely(!__pyx_t_9)) __PYX_ERR(0, 138, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_9); - __pyx_t_7 = __Pyx_PyObject_Format(__pyx_t_9, __pyx_kp_u_02x); if (unlikely(!__pyx_t_7)) __PYX_ERR(0, 138, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_7); - __Pyx_DECREF(__pyx_t_9); __pyx_t_9 = 0; - __pyx_t_13 = (__Pyx_PyUnicode_MAX_CHAR_VALUE(__pyx_t_7) > __pyx_t_13) ? __Pyx_PyUnicode_MAX_CHAR_VALUE(__pyx_t_7) : __pyx_t_13; - __pyx_t_4 += __Pyx_PyUnicode_GET_LENGTH(__pyx_t_7); - __Pyx_GIVEREF(__pyx_t_7); - PyTuple_SET_ITEM(__pyx_t_5, 21, __pyx_t_7); - __pyx_t_7 = 0; - __pyx_t_7 = __Pyx_PyInt_From_uint8_t((__pyx_v_buf[(__pyx_v_o_ + 15)])); if (unlikely(!__pyx_t_7)) __PYX_ERR(0, 138, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_7); - __pyx_t_9 = __Pyx_PyObject_Format(__pyx_t_7, __pyx_kp_u_02x); if (unlikely(!__pyx_t_9)) __PYX_ERR(0, 138, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_9); - __Pyx_DECREF(__pyx_t_7); __pyx_t_7 = 0; - __pyx_t_13 = (__Pyx_PyUnicode_MAX_CHAR_VALUE(__pyx_t_9) > __pyx_t_13) ? __Pyx_PyUnicode_MAX_CHAR_VALUE(__pyx_t_9) : __pyx_t_13; - __pyx_t_4 += __Pyx_PyUnicode_GET_LENGTH(__pyx_t_9); - __Pyx_GIVEREF(__pyx_t_9); - PyTuple_SET_ITEM(__pyx_t_5, 22, __pyx_t_9); - __pyx_t_9 = 0; - - /* "pmercury/utils/packet_proc.pyx":135 - * else: - * o_ = prot_offset-32 - * src_ip = (f'{buf[o_]:02x}{buf[o_+1]:02x}:{buf[o_+2]:02x}{buf[o_+3]:02x}:' # <<<<<<<<<<<<<< - * f'{buf[o_+4]:02x}{buf[o_+5]:02x}:{buf[o_+6]:02x}{buf[o_+7]:02x}:' - * f'{buf[o_+8]:02x}{buf[o_+9]:02x}:{buf[o_+10]:02x}{buf[o_+11]:02x}:' - */ - __pyx_t_9 = __Pyx_PyUnicode_Join(__pyx_t_5, 23, __pyx_t_4, __pyx_t_13); if (unlikely(!__pyx_t_9)) __PYX_ERR(0, 135, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_9); - __Pyx_DECREF(__pyx_t_5); __pyx_t_5 = 0; - __pyx_v_src_ip = ((PyObject*)__pyx_t_9); - __pyx_t_9 = 0; - - /* "pmercury/utils/packet_proc.pyx":139 - * f'{buf[o_+8]:02x}{buf[o_+9]:02x}:{buf[o_+10]:02x}{buf[o_+11]:02x}:' - * f'{buf[o_+12]:02x}{buf[o_+13]:02x}:{buf[o_+14]:02x}{buf[o_+15]:02x}') - * o_ += 16 # <<<<<<<<<<<<<< - * dst_ip = (f'{buf[o_]:02x}{buf[o_+1]:02x}:{buf[o_+2]:02x}{buf[o_+3]:02x}:' - * f'{buf[o_+4]:02x}{buf[o_+5]:02x}:{buf[o_+6]:02x}{buf[o_+7]:02x}:' - */ - __pyx_v_o_ = (__pyx_v_o_ + 16); - - /* "pmercury/utils/packet_proc.pyx":140 - * f'{buf[o_+12]:02x}{buf[o_+13]:02x}:{buf[o_+14]:02x}{buf[o_+15]:02x}') - * o_ += 16 - * dst_ip = (f'{buf[o_]:02x}{buf[o_+1]:02x}:{buf[o_+2]:02x}{buf[o_+3]:02x}:' # <<<<<<<<<<<<<< - * f'{buf[o_+4]:02x}{buf[o_+5]:02x}:{buf[o_+6]:02x}{buf[o_+7]:02x}:' - * f'{buf[o_+8]:02x}{buf[o_+9]:02x}:{buf[o_+10]:02x}{buf[o_+11]:02x}:' - */ - __pyx_t_9 = PyTuple_New(23); if (unlikely(!__pyx_t_9)) __PYX_ERR(0, 140, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_9); - __pyx_t_4 = 0; - __pyx_t_13 = 127; - __pyx_t_5 = __Pyx_PyInt_From_uint8_t((__pyx_v_buf[__pyx_v_o_])); if (unlikely(!__pyx_t_5)) __PYX_ERR(0, 140, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_5); - __pyx_t_7 = __Pyx_PyObject_Format(__pyx_t_5, __pyx_kp_u_02x); if (unlikely(!__pyx_t_7)) __PYX_ERR(0, 140, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_7); - __Pyx_DECREF(__pyx_t_5); __pyx_t_5 = 0; - __pyx_t_13 = (__Pyx_PyUnicode_MAX_CHAR_VALUE(__pyx_t_7) > __pyx_t_13) ? __Pyx_PyUnicode_MAX_CHAR_VALUE(__pyx_t_7) : __pyx_t_13; - __pyx_t_4 += __Pyx_PyUnicode_GET_LENGTH(__pyx_t_7); - __Pyx_GIVEREF(__pyx_t_7); - PyTuple_SET_ITEM(__pyx_t_9, 0, __pyx_t_7); - __pyx_t_7 = 0; - __pyx_t_7 = __Pyx_PyInt_From_uint8_t((__pyx_v_buf[(__pyx_v_o_ + 1)])); if (unlikely(!__pyx_t_7)) __PYX_ERR(0, 140, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_7); - __pyx_t_5 = __Pyx_PyObject_Format(__pyx_t_7, __pyx_kp_u_02x); if (unlikely(!__pyx_t_5)) __PYX_ERR(0, 140, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_5); - __Pyx_DECREF(__pyx_t_7); __pyx_t_7 = 0; - __pyx_t_13 = (__Pyx_PyUnicode_MAX_CHAR_VALUE(__pyx_t_5) > __pyx_t_13) ? __Pyx_PyUnicode_MAX_CHAR_VALUE(__pyx_t_5) : __pyx_t_13; - __pyx_t_4 += __Pyx_PyUnicode_GET_LENGTH(__pyx_t_5); - __Pyx_GIVEREF(__pyx_t_5); - PyTuple_SET_ITEM(__pyx_t_9, 1, __pyx_t_5); - __pyx_t_5 = 0; - __Pyx_INCREF(__pyx_kp_u__2); - __pyx_t_4 += 1; - __Pyx_GIVEREF(__pyx_kp_u__2); - PyTuple_SET_ITEM(__pyx_t_9, 2, __pyx_kp_u__2); - __pyx_t_5 = __Pyx_PyInt_From_uint8_t((__pyx_v_buf[(__pyx_v_o_ + 2)])); if (unlikely(!__pyx_t_5)) __PYX_ERR(0, 140, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_5); - __pyx_t_7 = __Pyx_PyObject_Format(__pyx_t_5, __pyx_kp_u_02x); if (unlikely(!__pyx_t_7)) __PYX_ERR(0, 140, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_7); - __Pyx_DECREF(__pyx_t_5); __pyx_t_5 = 0; - __pyx_t_13 = (__Pyx_PyUnicode_MAX_CHAR_VALUE(__pyx_t_7) > __pyx_t_13) ? __Pyx_PyUnicode_MAX_CHAR_VALUE(__pyx_t_7) : __pyx_t_13; - __pyx_t_4 += __Pyx_PyUnicode_GET_LENGTH(__pyx_t_7); - __Pyx_GIVEREF(__pyx_t_7); - PyTuple_SET_ITEM(__pyx_t_9, 3, __pyx_t_7); - __pyx_t_7 = 0; - __pyx_t_7 = __Pyx_PyInt_From_uint8_t((__pyx_v_buf[(__pyx_v_o_ + 3)])); if (unlikely(!__pyx_t_7)) __PYX_ERR(0, 140, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_7); - __pyx_t_5 = __Pyx_PyObject_Format(__pyx_t_7, __pyx_kp_u_02x); if (unlikely(!__pyx_t_5)) __PYX_ERR(0, 140, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_5); - __Pyx_DECREF(__pyx_t_7); __pyx_t_7 = 0; - __pyx_t_13 = (__Pyx_PyUnicode_MAX_CHAR_VALUE(__pyx_t_5) > __pyx_t_13) ? __Pyx_PyUnicode_MAX_CHAR_VALUE(__pyx_t_5) : __pyx_t_13; - __pyx_t_4 += __Pyx_PyUnicode_GET_LENGTH(__pyx_t_5); - __Pyx_GIVEREF(__pyx_t_5); - PyTuple_SET_ITEM(__pyx_t_9, 4, __pyx_t_5); - __pyx_t_5 = 0; - __Pyx_INCREF(__pyx_kp_u__2); - __pyx_t_4 += 1; - __Pyx_GIVEREF(__pyx_kp_u__2); - PyTuple_SET_ITEM(__pyx_t_9, 5, __pyx_kp_u__2); - - /* "pmercury/utils/packet_proc.pyx":141 - * o_ += 16 - * dst_ip = (f'{buf[o_]:02x}{buf[o_+1]:02x}:{buf[o_+2]:02x}{buf[o_+3]:02x}:' - * f'{buf[o_+4]:02x}{buf[o_+5]:02x}:{buf[o_+6]:02x}{buf[o_+7]:02x}:' # <<<<<<<<<<<<<< - * f'{buf[o_+8]:02x}{buf[o_+9]:02x}:{buf[o_+10]:02x}{buf[o_+11]:02x}:' - * f'{buf[o_+12]:02x}{buf[o_+13]:02x}:{buf[o_+14]:02x}{buf[o_+15]:02x}') - */ - __pyx_t_5 = __Pyx_PyInt_From_uint8_t((__pyx_v_buf[(__pyx_v_o_ + 4)])); if (unlikely(!__pyx_t_5)) __PYX_ERR(0, 141, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_5); - __pyx_t_7 = __Pyx_PyObject_Format(__pyx_t_5, __pyx_kp_u_02x); if (unlikely(!__pyx_t_7)) __PYX_ERR(0, 141, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_7); - __Pyx_DECREF(__pyx_t_5); __pyx_t_5 = 0; - __pyx_t_13 = (__Pyx_PyUnicode_MAX_CHAR_VALUE(__pyx_t_7) > __pyx_t_13) ? __Pyx_PyUnicode_MAX_CHAR_VALUE(__pyx_t_7) : __pyx_t_13; - __pyx_t_4 += __Pyx_PyUnicode_GET_LENGTH(__pyx_t_7); - __Pyx_GIVEREF(__pyx_t_7); - PyTuple_SET_ITEM(__pyx_t_9, 6, __pyx_t_7); - __pyx_t_7 = 0; - __pyx_t_7 = __Pyx_PyInt_From_uint8_t((__pyx_v_buf[(__pyx_v_o_ + 5)])); if (unlikely(!__pyx_t_7)) __PYX_ERR(0, 141, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_7); - __pyx_t_5 = __Pyx_PyObject_Format(__pyx_t_7, __pyx_kp_u_02x); if (unlikely(!__pyx_t_5)) __PYX_ERR(0, 141, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_5); - __Pyx_DECREF(__pyx_t_7); __pyx_t_7 = 0; - __pyx_t_13 = (__Pyx_PyUnicode_MAX_CHAR_VALUE(__pyx_t_5) > __pyx_t_13) ? __Pyx_PyUnicode_MAX_CHAR_VALUE(__pyx_t_5) : __pyx_t_13; - __pyx_t_4 += __Pyx_PyUnicode_GET_LENGTH(__pyx_t_5); - __Pyx_GIVEREF(__pyx_t_5); - PyTuple_SET_ITEM(__pyx_t_9, 7, __pyx_t_5); - __pyx_t_5 = 0; - __Pyx_INCREF(__pyx_kp_u__2); - __pyx_t_4 += 1; - __Pyx_GIVEREF(__pyx_kp_u__2); - PyTuple_SET_ITEM(__pyx_t_9, 8, __pyx_kp_u__2); - __pyx_t_5 = __Pyx_PyInt_From_uint8_t((__pyx_v_buf[(__pyx_v_o_ + 6)])); if (unlikely(!__pyx_t_5)) __PYX_ERR(0, 141, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_5); - __pyx_t_7 = __Pyx_PyObject_Format(__pyx_t_5, __pyx_kp_u_02x); if (unlikely(!__pyx_t_7)) __PYX_ERR(0, 141, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_7); - __Pyx_DECREF(__pyx_t_5); __pyx_t_5 = 0; - __pyx_t_13 = (__Pyx_PyUnicode_MAX_CHAR_VALUE(__pyx_t_7) > __pyx_t_13) ? __Pyx_PyUnicode_MAX_CHAR_VALUE(__pyx_t_7) : __pyx_t_13; - __pyx_t_4 += __Pyx_PyUnicode_GET_LENGTH(__pyx_t_7); - __Pyx_GIVEREF(__pyx_t_7); - PyTuple_SET_ITEM(__pyx_t_9, 9, __pyx_t_7); - __pyx_t_7 = 0; - __pyx_t_7 = __Pyx_PyInt_From_uint8_t((__pyx_v_buf[(__pyx_v_o_ + 7)])); if (unlikely(!__pyx_t_7)) __PYX_ERR(0, 141, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_7); - __pyx_t_5 = __Pyx_PyObject_Format(__pyx_t_7, __pyx_kp_u_02x); if (unlikely(!__pyx_t_5)) __PYX_ERR(0, 141, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_5); - __Pyx_DECREF(__pyx_t_7); __pyx_t_7 = 0; - __pyx_t_13 = (__Pyx_PyUnicode_MAX_CHAR_VALUE(__pyx_t_5) > __pyx_t_13) ? __Pyx_PyUnicode_MAX_CHAR_VALUE(__pyx_t_5) : __pyx_t_13; - __pyx_t_4 += __Pyx_PyUnicode_GET_LENGTH(__pyx_t_5); - __Pyx_GIVEREF(__pyx_t_5); - PyTuple_SET_ITEM(__pyx_t_9, 10, __pyx_t_5); - __pyx_t_5 = 0; - __Pyx_INCREF(__pyx_kp_u__2); - __pyx_t_4 += 1; - __Pyx_GIVEREF(__pyx_kp_u__2); - PyTuple_SET_ITEM(__pyx_t_9, 11, __pyx_kp_u__2); - - /* "pmercury/utils/packet_proc.pyx":142 - * dst_ip = (f'{buf[o_]:02x}{buf[o_+1]:02x}:{buf[o_+2]:02x}{buf[o_+3]:02x}:' - * f'{buf[o_+4]:02x}{buf[o_+5]:02x}:{buf[o_+6]:02x}{buf[o_+7]:02x}:' - * f'{buf[o_+8]:02x}{buf[o_+9]:02x}:{buf[o_+10]:02x}{buf[o_+11]:02x}:' # <<<<<<<<<<<<<< - * f'{buf[o_+12]:02x}{buf[o_+13]:02x}:{buf[o_+14]:02x}{buf[o_+15]:02x}') - * - */ - __pyx_t_5 = __Pyx_PyInt_From_uint8_t((__pyx_v_buf[(__pyx_v_o_ + 8)])); if (unlikely(!__pyx_t_5)) __PYX_ERR(0, 142, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_5); - __pyx_t_7 = __Pyx_PyObject_Format(__pyx_t_5, __pyx_kp_u_02x); if (unlikely(!__pyx_t_7)) __PYX_ERR(0, 142, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_7); - __Pyx_DECREF(__pyx_t_5); __pyx_t_5 = 0; - __pyx_t_13 = (__Pyx_PyUnicode_MAX_CHAR_VALUE(__pyx_t_7) > __pyx_t_13) ? __Pyx_PyUnicode_MAX_CHAR_VALUE(__pyx_t_7) : __pyx_t_13; - __pyx_t_4 += __Pyx_PyUnicode_GET_LENGTH(__pyx_t_7); - __Pyx_GIVEREF(__pyx_t_7); - PyTuple_SET_ITEM(__pyx_t_9, 12, __pyx_t_7); - __pyx_t_7 = 0; - __pyx_t_7 = __Pyx_PyInt_From_uint8_t((__pyx_v_buf[(__pyx_v_o_ + 9)])); if (unlikely(!__pyx_t_7)) __PYX_ERR(0, 142, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_7); - __pyx_t_5 = __Pyx_PyObject_Format(__pyx_t_7, __pyx_kp_u_02x); if (unlikely(!__pyx_t_5)) __PYX_ERR(0, 142, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_5); - __Pyx_DECREF(__pyx_t_7); __pyx_t_7 = 0; - __pyx_t_13 = (__Pyx_PyUnicode_MAX_CHAR_VALUE(__pyx_t_5) > __pyx_t_13) ? __Pyx_PyUnicode_MAX_CHAR_VALUE(__pyx_t_5) : __pyx_t_13; - __pyx_t_4 += __Pyx_PyUnicode_GET_LENGTH(__pyx_t_5); - __Pyx_GIVEREF(__pyx_t_5); - PyTuple_SET_ITEM(__pyx_t_9, 13, __pyx_t_5); - __pyx_t_5 = 0; - __Pyx_INCREF(__pyx_kp_u__2); - __pyx_t_4 += 1; - __Pyx_GIVEREF(__pyx_kp_u__2); - PyTuple_SET_ITEM(__pyx_t_9, 14, __pyx_kp_u__2); - __pyx_t_5 = __Pyx_PyInt_From_uint8_t((__pyx_v_buf[(__pyx_v_o_ + 10)])); if (unlikely(!__pyx_t_5)) __PYX_ERR(0, 142, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_5); - __pyx_t_7 = __Pyx_PyObject_Format(__pyx_t_5, __pyx_kp_u_02x); if (unlikely(!__pyx_t_7)) __PYX_ERR(0, 142, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_7); - __Pyx_DECREF(__pyx_t_5); __pyx_t_5 = 0; - __pyx_t_13 = (__Pyx_PyUnicode_MAX_CHAR_VALUE(__pyx_t_7) > __pyx_t_13) ? __Pyx_PyUnicode_MAX_CHAR_VALUE(__pyx_t_7) : __pyx_t_13; - __pyx_t_4 += __Pyx_PyUnicode_GET_LENGTH(__pyx_t_7); - __Pyx_GIVEREF(__pyx_t_7); - PyTuple_SET_ITEM(__pyx_t_9, 15, __pyx_t_7); - __pyx_t_7 = 0; - __pyx_t_7 = __Pyx_PyInt_From_uint8_t((__pyx_v_buf[(__pyx_v_o_ + 11)])); if (unlikely(!__pyx_t_7)) __PYX_ERR(0, 142, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_7); - __pyx_t_5 = __Pyx_PyObject_Format(__pyx_t_7, __pyx_kp_u_02x); if (unlikely(!__pyx_t_5)) __PYX_ERR(0, 142, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_5); - __Pyx_DECREF(__pyx_t_7); __pyx_t_7 = 0; - __pyx_t_13 = (__Pyx_PyUnicode_MAX_CHAR_VALUE(__pyx_t_5) > __pyx_t_13) ? __Pyx_PyUnicode_MAX_CHAR_VALUE(__pyx_t_5) : __pyx_t_13; - __pyx_t_4 += __Pyx_PyUnicode_GET_LENGTH(__pyx_t_5); - __Pyx_GIVEREF(__pyx_t_5); - PyTuple_SET_ITEM(__pyx_t_9, 16, __pyx_t_5); - __pyx_t_5 = 0; - __Pyx_INCREF(__pyx_kp_u__2); - __pyx_t_4 += 1; - __Pyx_GIVEREF(__pyx_kp_u__2); - PyTuple_SET_ITEM(__pyx_t_9, 17, __pyx_kp_u__2); - - /* "pmercury/utils/packet_proc.pyx":143 - * f'{buf[o_+4]:02x}{buf[o_+5]:02x}:{buf[o_+6]:02x}{buf[o_+7]:02x}:' - * f'{buf[o_+8]:02x}{buf[o_+9]:02x}:{buf[o_+10]:02x}{buf[o_+11]:02x}:' - * f'{buf[o_+12]:02x}{buf[o_+13]:02x}:{buf[o_+14]:02x}{buf[o_+15]:02x}') # <<<<<<<<<<<<<< - * - * flow = {'src_ip':src_ip, - */ - __pyx_t_5 = __Pyx_PyInt_From_uint8_t((__pyx_v_buf[(__pyx_v_o_ + 12)])); if (unlikely(!__pyx_t_5)) __PYX_ERR(0, 143, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_5); - __pyx_t_7 = __Pyx_PyObject_Format(__pyx_t_5, __pyx_kp_u_02x); if (unlikely(!__pyx_t_7)) __PYX_ERR(0, 143, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_7); - __Pyx_DECREF(__pyx_t_5); __pyx_t_5 = 0; - __pyx_t_13 = (__Pyx_PyUnicode_MAX_CHAR_VALUE(__pyx_t_7) > __pyx_t_13) ? __Pyx_PyUnicode_MAX_CHAR_VALUE(__pyx_t_7) : __pyx_t_13; - __pyx_t_4 += __Pyx_PyUnicode_GET_LENGTH(__pyx_t_7); - __Pyx_GIVEREF(__pyx_t_7); - PyTuple_SET_ITEM(__pyx_t_9, 18, __pyx_t_7); - __pyx_t_7 = 0; - __pyx_t_7 = __Pyx_PyInt_From_uint8_t((__pyx_v_buf[(__pyx_v_o_ + 13)])); if (unlikely(!__pyx_t_7)) __PYX_ERR(0, 143, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_7); - __pyx_t_5 = __Pyx_PyObject_Format(__pyx_t_7, __pyx_kp_u_02x); if (unlikely(!__pyx_t_5)) __PYX_ERR(0, 143, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_5); - __Pyx_DECREF(__pyx_t_7); __pyx_t_7 = 0; - __pyx_t_13 = (__Pyx_PyUnicode_MAX_CHAR_VALUE(__pyx_t_5) > __pyx_t_13) ? __Pyx_PyUnicode_MAX_CHAR_VALUE(__pyx_t_5) : __pyx_t_13; - __pyx_t_4 += __Pyx_PyUnicode_GET_LENGTH(__pyx_t_5); - __Pyx_GIVEREF(__pyx_t_5); - PyTuple_SET_ITEM(__pyx_t_9, 19, __pyx_t_5); - __pyx_t_5 = 0; - __Pyx_INCREF(__pyx_kp_u__2); - __pyx_t_4 += 1; - __Pyx_GIVEREF(__pyx_kp_u__2); - PyTuple_SET_ITEM(__pyx_t_9, 20, __pyx_kp_u__2); - __pyx_t_5 = __Pyx_PyInt_From_uint8_t((__pyx_v_buf[(__pyx_v_o_ + 14)])); if (unlikely(!__pyx_t_5)) __PYX_ERR(0, 143, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_5); - __pyx_t_7 = __Pyx_PyObject_Format(__pyx_t_5, __pyx_kp_u_02x); if (unlikely(!__pyx_t_7)) __PYX_ERR(0, 143, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_7); - __Pyx_DECREF(__pyx_t_5); __pyx_t_5 = 0; - __pyx_t_13 = (__Pyx_PyUnicode_MAX_CHAR_VALUE(__pyx_t_7) > __pyx_t_13) ? __Pyx_PyUnicode_MAX_CHAR_VALUE(__pyx_t_7) : __pyx_t_13; - __pyx_t_4 += __Pyx_PyUnicode_GET_LENGTH(__pyx_t_7); - __Pyx_GIVEREF(__pyx_t_7); - PyTuple_SET_ITEM(__pyx_t_9, 21, __pyx_t_7); - __pyx_t_7 = 0; - __pyx_t_7 = __Pyx_PyInt_From_uint8_t((__pyx_v_buf[(__pyx_v_o_ + 15)])); if (unlikely(!__pyx_t_7)) __PYX_ERR(0, 143, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_7); - __pyx_t_5 = __Pyx_PyObject_Format(__pyx_t_7, __pyx_kp_u_02x); if (unlikely(!__pyx_t_5)) __PYX_ERR(0, 143, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_5); - __Pyx_DECREF(__pyx_t_7); __pyx_t_7 = 0; - __pyx_t_13 = (__Pyx_PyUnicode_MAX_CHAR_VALUE(__pyx_t_5) > __pyx_t_13) ? __Pyx_PyUnicode_MAX_CHAR_VALUE(__pyx_t_5) : __pyx_t_13; - __pyx_t_4 += __Pyx_PyUnicode_GET_LENGTH(__pyx_t_5); - __Pyx_GIVEREF(__pyx_t_5); - PyTuple_SET_ITEM(__pyx_t_9, 22, __pyx_t_5); - __pyx_t_5 = 0; - - /* "pmercury/utils/packet_proc.pyx":140 - * f'{buf[o_+12]:02x}{buf[o_+13]:02x}:{buf[o_+14]:02x}{buf[o_+15]:02x}') - * o_ += 16 - * dst_ip = (f'{buf[o_]:02x}{buf[o_+1]:02x}:{buf[o_+2]:02x}{buf[o_+3]:02x}:' # <<<<<<<<<<<<<< - * f'{buf[o_+4]:02x}{buf[o_+5]:02x}:{buf[o_+6]:02x}{buf[o_+7]:02x}:' - * f'{buf[o_+8]:02x}{buf[o_+9]:02x}:{buf[o_+10]:02x}{buf[o_+11]:02x}:' - */ - __pyx_t_5 = __Pyx_PyUnicode_Join(__pyx_t_9, 23, __pyx_t_4, __pyx_t_13); if (unlikely(!__pyx_t_5)) __PYX_ERR(0, 140, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_5); - __Pyx_DECREF(__pyx_t_9); __pyx_t_9 = 0; - __pyx_v_dst_ip = ((PyObject*)__pyx_t_5); - __pyx_t_5 = 0; - } - __pyx_L63:; - - /* "pmercury/utils/packet_proc.pyx":145 - * f'{buf[o_+12]:02x}{buf[o_+13]:02x}:{buf[o_+14]:02x}{buf[o_+15]:02x}') - * - * flow = {'src_ip':src_ip, # <<<<<<<<<<<<<< - * 'dst_ip':dst_ip, - * 'src_port':src_port, - */ - __pyx_t_5 = __Pyx_PyDict_NewPresized(7); if (unlikely(!__pyx_t_5)) __PYX_ERR(0, 145, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_5); - if (PyDict_SetItem(__pyx_t_5, __pyx_n_u_src_ip, __pyx_v_src_ip) < 0) __PYX_ERR(0, 145, __pyx_L1_error) - - /* "pmercury/utils/packet_proc.pyx":146 - * - * flow = {'src_ip':src_ip, - * 'dst_ip':dst_ip, # <<<<<<<<<<<<<< - * 'src_port':src_port, - * 'dst_port':dst_port, - */ - if (PyDict_SetItem(__pyx_t_5, __pyx_n_u_dst_ip, __pyx_v_dst_ip) < 0) __PYX_ERR(0, 145, __pyx_L1_error) - - /* "pmercury/utils/packet_proc.pyx":147 - * flow = {'src_ip':src_ip, - * 'dst_ip':dst_ip, - * 'src_port':src_port, # <<<<<<<<<<<<<< - * 'dst_port':dst_port, - * 'protocol':protocol, - */ - __pyx_t_9 = __Pyx_PyInt_From_uint16_t(__pyx_v_src_port); if (unlikely(!__pyx_t_9)) __PYX_ERR(0, 147, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_9); - if (PyDict_SetItem(__pyx_t_5, __pyx_n_u_src_port, __pyx_t_9) < 0) __PYX_ERR(0, 145, __pyx_L1_error) - __Pyx_DECREF(__pyx_t_9); __pyx_t_9 = 0; - - /* "pmercury/utils/packet_proc.pyx":148 - * 'dst_ip':dst_ip, - * 'src_port':src_port, - * 'dst_port':dst_port, # <<<<<<<<<<<<<< - * 'protocol':protocol, - * 'event_start':ts, - */ - __pyx_t_9 = __Pyx_PyInt_From_uint16_t(__pyx_v_dst_port); if (unlikely(!__pyx_t_9)) __PYX_ERR(0, 148, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_9); - if (PyDict_SetItem(__pyx_t_5, __pyx_n_u_dst_port, __pyx_t_9) < 0) __PYX_ERR(0, 145, __pyx_L1_error) - __Pyx_DECREF(__pyx_t_9); __pyx_t_9 = 0; - - /* "pmercury/utils/packet_proc.pyx":149 - * 'src_port':src_port, - * 'dst_port':dst_port, - * 'protocol':protocol, # <<<<<<<<<<<<<< - * 'event_start':ts, - * 'fingerprints': {}} - */ - __pyx_t_9 = __Pyx_PyInt_From_uint16_t(__pyx_v_protocol); if (unlikely(!__pyx_t_9)) __PYX_ERR(0, 149, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_9); - if (PyDict_SetItem(__pyx_t_5, __pyx_n_u_protocol, __pyx_t_9) < 0) __PYX_ERR(0, 145, __pyx_L1_error) - __Pyx_DECREF(__pyx_t_9); __pyx_t_9 = 0; - - /* "pmercury/utils/packet_proc.pyx":150 - * 'dst_port':dst_port, - * 'protocol':protocol, - * 'event_start':ts, # <<<<<<<<<<<<<< - * 'fingerprints': {}} - * if fp_type != 'server_certs': - */ - __pyx_t_9 = PyFloat_FromDouble(__pyx_v_ts); if (unlikely(!__pyx_t_9)) __PYX_ERR(0, 150, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_9); - if (PyDict_SetItem(__pyx_t_5, __pyx_n_u_event_start, __pyx_t_9) < 0) __PYX_ERR(0, 145, __pyx_L1_error) - __Pyx_DECREF(__pyx_t_9); __pyx_t_9 = 0; - - /* "pmercury/utils/packet_proc.pyx":151 - * 'protocol':protocol, - * 'event_start':ts, - * 'fingerprints': {}} # <<<<<<<<<<<<<< - * if fp_type != 'server_certs': - * flow['fingerprints'][fp_type] = fp_str_ - */ - __pyx_t_9 = __Pyx_PyDict_NewPresized(0); if (unlikely(!__pyx_t_9)) __PYX_ERR(0, 151, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_9); - if (PyDict_SetItem(__pyx_t_5, __pyx_n_u_fingerprints, __pyx_t_9) < 0) __PYX_ERR(0, 145, __pyx_L1_error) - __Pyx_DECREF(__pyx_t_9); __pyx_t_9 = 0; - __pyx_v_flow = ((PyObject*)__pyx_t_5); - __pyx_t_5 = 0; - - /* "pmercury/utils/packet_proc.pyx":152 - * 'event_start':ts, - * 'fingerprints': {}} - * if fp_type != 'server_certs': # <<<<<<<<<<<<<< - * flow['fingerprints'][fp_type] = fp_str_ - * else: - */ - if (unlikely(!__pyx_v_fp_type)) { __Pyx_RaiseUnboundLocalError("fp_type"); __PYX_ERR(0, 152, __pyx_L1_error) } - __pyx_t_2 = (__Pyx_PyUnicode_Equals(__pyx_v_fp_type, __pyx_n_u_server_certs, Py_NE)); if (unlikely(__pyx_t_2 < 0)) __PYX_ERR(0, 152, __pyx_L1_error) - __pyx_t_3 = (__pyx_t_2 != 0); - if (__pyx_t_3) { - - /* "pmercury/utils/packet_proc.pyx":153 - * 'fingerprints': {}} - * if fp_type != 'server_certs': - * flow['fingerprints'][fp_type] = fp_str_ # <<<<<<<<<<<<<< - * else: - * if 'tls' not in flow: - */ - __pyx_t_5 = __Pyx_PyDict_GetItem(__pyx_v_flow, __pyx_n_u_fingerprints); if (unlikely(!__pyx_t_5)) __PYX_ERR(0, 153, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_5); - if (unlikely(!__pyx_v_fp_type)) { __Pyx_RaiseUnboundLocalError("fp_type"); __PYX_ERR(0, 153, __pyx_L1_error) } - if (unlikely(PyObject_SetItem(__pyx_t_5, __pyx_v_fp_type, __pyx_v_fp_str_) < 0)) __PYX_ERR(0, 153, __pyx_L1_error) - __Pyx_DECREF(__pyx_t_5); __pyx_t_5 = 0; - - /* "pmercury/utils/packet_proc.pyx":152 - * 'event_start':ts, - * 'fingerprints': {}} - * if fp_type != 'server_certs': # <<<<<<<<<<<<<< - * flow['fingerprints'][fp_type] = fp_str_ - * else: - */ - goto __pyx_L64; - } - - /* "pmercury/utils/packet_proc.pyx":155 - * flow['fingerprints'][fp_type] = fp_str_ - * else: - * if 'tls' not in flow: # <<<<<<<<<<<<<< - * flow['tls'] = {} - * flow['tls'][fp_type] = fp_str_ - */ - /*else*/ { - __pyx_t_3 = (__Pyx_PyDict_ContainsTF(__pyx_n_u_tls, __pyx_v_flow, Py_NE)); if (unlikely(__pyx_t_3 < 0)) __PYX_ERR(0, 155, __pyx_L1_error) - __pyx_t_2 = (__pyx_t_3 != 0); - if (__pyx_t_2) { - - /* "pmercury/utils/packet_proc.pyx":156 - * else: - * if 'tls' not in flow: - * flow['tls'] = {} # <<<<<<<<<<<<<< - * flow['tls'][fp_type] = fp_str_ - * - */ - __pyx_t_5 = __Pyx_PyDict_NewPresized(0); if (unlikely(!__pyx_t_5)) __PYX_ERR(0, 156, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_5); - if (unlikely(PyDict_SetItem(__pyx_v_flow, __pyx_n_u_tls, __pyx_t_5) < 0)) __PYX_ERR(0, 156, __pyx_L1_error) - __Pyx_DECREF(__pyx_t_5); __pyx_t_5 = 0; - - /* "pmercury/utils/packet_proc.pyx":155 - * flow['fingerprints'][fp_type] = fp_str_ - * else: - * if 'tls' not in flow: # <<<<<<<<<<<<<< - * flow['tls'] = {} - * flow['tls'][fp_type] = fp_str_ - */ - } - - /* "pmercury/utils/packet_proc.pyx":157 - * if 'tls' not in flow: - * flow['tls'] = {} - * flow['tls'][fp_type] = fp_str_ # <<<<<<<<<<<<<< - * - * if context_ != None and context_ != []: - */ - __pyx_t_5 = __Pyx_PyDict_GetItem(__pyx_v_flow, __pyx_n_u_tls); if (unlikely(!__pyx_t_5)) __PYX_ERR(0, 157, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_5); - if (unlikely(!__pyx_v_fp_type)) { __Pyx_RaiseUnboundLocalError("fp_type"); __PYX_ERR(0, 157, __pyx_L1_error) } - if (unlikely(PyObject_SetItem(__pyx_t_5, __pyx_v_fp_type, __pyx_v_fp_str_) < 0)) __PYX_ERR(0, 157, __pyx_L1_error) - __Pyx_DECREF(__pyx_t_5); __pyx_t_5 = 0; - } - __pyx_L64:; - - /* "pmercury/utils/packet_proc.pyx":159 - * flow['tls'][fp_type] = fp_str_ - * - * if context_ != None and context_ != []: # <<<<<<<<<<<<<< - * flow[fp_type] = {} - * for x_ in context_: - */ - if (unlikely(!__pyx_v_context_)) { __Pyx_RaiseUnboundLocalError("context_"); __PYX_ERR(0, 159, __pyx_L1_error) } - __pyx_t_5 = PyObject_RichCompare(__pyx_v_context_, Py_None, Py_NE); __Pyx_XGOTREF(__pyx_t_5); if (unlikely(!__pyx_t_5)) __PYX_ERR(0, 159, __pyx_L1_error) - __pyx_t_3 = __Pyx_PyObject_IsTrue(__pyx_t_5); if (unlikely(__pyx_t_3 < 0)) __PYX_ERR(0, 159, __pyx_L1_error) - __Pyx_DECREF(__pyx_t_5); __pyx_t_5 = 0; - if (__pyx_t_3) { - } else { - __pyx_t_2 = __pyx_t_3; - goto __pyx_L67_bool_binop_done; - } - if (unlikely(!__pyx_v_context_)) { __Pyx_RaiseUnboundLocalError("context_"); __PYX_ERR(0, 159, __pyx_L1_error) } - __pyx_t_5 = PyList_New(0); if (unlikely(!__pyx_t_5)) __PYX_ERR(0, 159, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_5); - __pyx_t_9 = PyObject_RichCompare(__pyx_v_context_, __pyx_t_5, Py_NE); __Pyx_XGOTREF(__pyx_t_9); if (unlikely(!__pyx_t_9)) __PYX_ERR(0, 159, __pyx_L1_error) - __Pyx_DECREF(__pyx_t_5); __pyx_t_5 = 0; - __pyx_t_3 = __Pyx_PyObject_IsTrue(__pyx_t_9); if (unlikely(__pyx_t_3 < 0)) __PYX_ERR(0, 159, __pyx_L1_error) - __Pyx_DECREF(__pyx_t_9); __pyx_t_9 = 0; - __pyx_t_2 = __pyx_t_3; - __pyx_L67_bool_binop_done:; - if (__pyx_t_2) { - - /* "pmercury/utils/packet_proc.pyx":160 - * - * if context_ != None and context_ != []: - * flow[fp_type] = {} # <<<<<<<<<<<<<< - * for x_ in context_: - * flow[fp_type][x_['name']] = x_['data'] - */ - __pyx_t_9 = __Pyx_PyDict_NewPresized(0); if (unlikely(!__pyx_t_9)) __PYX_ERR(0, 160, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_9); - if (unlikely(!__pyx_v_fp_type)) { __Pyx_RaiseUnboundLocalError("fp_type"); __PYX_ERR(0, 160, __pyx_L1_error) } - if (unlikely(PyDict_SetItem(__pyx_v_flow, __pyx_v_fp_type, __pyx_t_9) < 0)) __PYX_ERR(0, 160, __pyx_L1_error) - __Pyx_DECREF(__pyx_t_9); __pyx_t_9 = 0; - - /* "pmercury/utils/packet_proc.pyx":161 - * if context_ != None and context_ != []: - * flow[fp_type] = {} - * for x_ in context_: # <<<<<<<<<<<<<< - * flow[fp_type][x_['name']] = x_['data'] - * - */ - if (unlikely(!__pyx_v_context_)) { __Pyx_RaiseUnboundLocalError("context_"); __PYX_ERR(0, 161, __pyx_L1_error) } - if (unlikely(__pyx_v_context_ == Py_None)) { - PyErr_SetString(PyExc_TypeError, "'NoneType' object is not iterable"); - __PYX_ERR(0, 161, __pyx_L1_error) - } - __pyx_t_9 = __pyx_v_context_; __Pyx_INCREF(__pyx_t_9); __pyx_t_4 = 0; - for (;;) { - if (__pyx_t_4 >= PyList_GET_SIZE(__pyx_t_9)) break; - #if CYTHON_ASSUME_SAFE_MACROS && !CYTHON_AVOID_BORROWED_REFS - __pyx_t_5 = PyList_GET_ITEM(__pyx_t_9, __pyx_t_4); __Pyx_INCREF(__pyx_t_5); __pyx_t_4++; if (unlikely(0 < 0)) __PYX_ERR(0, 161, __pyx_L1_error) - #else - __pyx_t_5 = PySequence_ITEM(__pyx_t_9, __pyx_t_4); __pyx_t_4++; if (unlikely(!__pyx_t_5)) __PYX_ERR(0, 161, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_5); - #endif - __Pyx_XDECREF_SET(__pyx_v_x_, __pyx_t_5); - __pyx_t_5 = 0; - - /* "pmercury/utils/packet_proc.pyx":162 - * flow[fp_type] = {} - * for x_ in context_: - * flow[fp_type][x_['name']] = x_['data'] # <<<<<<<<<<<<<< - * - * if fp_str_2_ != None: - */ - __pyx_t_5 = __Pyx_PyObject_Dict_GetItem(__pyx_v_x_, __pyx_n_u_data); if (unlikely(!__pyx_t_5)) __PYX_ERR(0, 162, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_5); - if (unlikely(!__pyx_v_fp_type)) { __Pyx_RaiseUnboundLocalError("fp_type"); __PYX_ERR(0, 162, __pyx_L1_error) } - __pyx_t_7 = __Pyx_PyDict_GetItem(__pyx_v_flow, __pyx_v_fp_type); if (unlikely(!__pyx_t_7)) __PYX_ERR(0, 162, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_7); - __pyx_t_8 = __Pyx_PyObject_Dict_GetItem(__pyx_v_x_, __pyx_n_u_name); if (unlikely(!__pyx_t_8)) __PYX_ERR(0, 162, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_8); - if (unlikely(PyObject_SetItem(__pyx_t_7, __pyx_t_8, __pyx_t_5) < 0)) __PYX_ERR(0, 162, __pyx_L1_error) - __Pyx_DECREF(__pyx_t_7); __pyx_t_7 = 0; - __Pyx_DECREF(__pyx_t_8); __pyx_t_8 = 0; - __Pyx_DECREF(__pyx_t_5); __pyx_t_5 = 0; - - /* "pmercury/utils/packet_proc.pyx":161 - * if context_ != None and context_ != []: - * flow[fp_type] = {} - * for x_ in context_: # <<<<<<<<<<<<<< - * flow[fp_type][x_['name']] = x_['data'] - * - */ - } - __Pyx_DECREF(__pyx_t_9); __pyx_t_9 = 0; - - /* "pmercury/utils/packet_proc.pyx":159 - * flow['tls'][fp_type] = fp_str_ - * - * if context_ != None and context_ != []: # <<<<<<<<<<<<<< - * flow[fp_type] = {} - * for x_ in context_: - */ - } - - /* "pmercury/utils/packet_proc.pyx":164 - * flow[fp_type][x_['name']] = x_['data'] - * - * if fp_str_2_ != None: # <<<<<<<<<<<<<< - * if fp_type_2 != 'server_certs': - * flow['fingerprints'][fp_type_2] = fp_str_2_ - */ - __pyx_t_9 = PyObject_RichCompare(__pyx_v_fp_str_2_, Py_None, Py_NE); __Pyx_XGOTREF(__pyx_t_9); if (unlikely(!__pyx_t_9)) __PYX_ERR(0, 164, __pyx_L1_error) - __pyx_t_2 = __Pyx_PyObject_IsTrue(__pyx_t_9); if (unlikely(__pyx_t_2 < 0)) __PYX_ERR(0, 164, __pyx_L1_error) - __Pyx_DECREF(__pyx_t_9); __pyx_t_9 = 0; - if (__pyx_t_2) { - - /* "pmercury/utils/packet_proc.pyx":165 - * - * if fp_str_2_ != None: - * if fp_type_2 != 'server_certs': # <<<<<<<<<<<<<< - * flow['fingerprints'][fp_type_2] = fp_str_2_ - * else: - */ - if (unlikely(!__pyx_v_fp_type_2)) { __Pyx_RaiseUnboundLocalError("fp_type_2"); __PYX_ERR(0, 165, __pyx_L1_error) } - __pyx_t_2 = (__Pyx_PyUnicode_Equals(__pyx_v_fp_type_2, __pyx_n_u_server_certs, Py_NE)); if (unlikely(__pyx_t_2 < 0)) __PYX_ERR(0, 165, __pyx_L1_error) - __pyx_t_3 = (__pyx_t_2 != 0); - if (__pyx_t_3) { - - /* "pmercury/utils/packet_proc.pyx":166 - * if fp_str_2_ != None: - * if fp_type_2 != 'server_certs': - * flow['fingerprints'][fp_type_2] = fp_str_2_ # <<<<<<<<<<<<<< - * else: - * if 'tls' not in flow: - */ - __pyx_t_9 = __Pyx_PyDict_GetItem(__pyx_v_flow, __pyx_n_u_fingerprints); if (unlikely(!__pyx_t_9)) __PYX_ERR(0, 166, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_9); - if (unlikely(!__pyx_v_fp_type_2)) { __Pyx_RaiseUnboundLocalError("fp_type_2"); __PYX_ERR(0, 166, __pyx_L1_error) } - if (unlikely(PyObject_SetItem(__pyx_t_9, __pyx_v_fp_type_2, __pyx_v_fp_str_2_) < 0)) __PYX_ERR(0, 166, __pyx_L1_error) - __Pyx_DECREF(__pyx_t_9); __pyx_t_9 = 0; - - /* "pmercury/utils/packet_proc.pyx":165 - * - * if fp_str_2_ != None: - * if fp_type_2 != 'server_certs': # <<<<<<<<<<<<<< - * flow['fingerprints'][fp_type_2] = fp_str_2_ - * else: - */ - goto __pyx_L72; - } - - /* "pmercury/utils/packet_proc.pyx":168 - * flow['fingerprints'][fp_type_2] = fp_str_2_ - * else: - * if 'tls' not in flow: # <<<<<<<<<<<<<< - * flow['tls'] = {} - * flow['tls'][fp_type_2] = fp_str_2_ - */ - /*else*/ { - __pyx_t_3 = (__Pyx_PyDict_ContainsTF(__pyx_n_u_tls, __pyx_v_flow, Py_NE)); if (unlikely(__pyx_t_3 < 0)) __PYX_ERR(0, 168, __pyx_L1_error) - __pyx_t_2 = (__pyx_t_3 != 0); - if (__pyx_t_2) { - - /* "pmercury/utils/packet_proc.pyx":169 - * else: - * if 'tls' not in flow: - * flow['tls'] = {} # <<<<<<<<<<<<<< - * flow['tls'][fp_type_2] = fp_str_2_ - * - */ - __pyx_t_9 = __Pyx_PyDict_NewPresized(0); if (unlikely(!__pyx_t_9)) __PYX_ERR(0, 169, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_9); - if (unlikely(PyDict_SetItem(__pyx_v_flow, __pyx_n_u_tls, __pyx_t_9) < 0)) __PYX_ERR(0, 169, __pyx_L1_error) - __Pyx_DECREF(__pyx_t_9); __pyx_t_9 = 0; - - /* "pmercury/utils/packet_proc.pyx":168 - * flow['fingerprints'][fp_type_2] = fp_str_2_ - * else: - * if 'tls' not in flow: # <<<<<<<<<<<<<< - * flow['tls'] = {} - * flow['tls'][fp_type_2] = fp_str_2_ - */ - } - - /* "pmercury/utils/packet_proc.pyx":170 - * if 'tls' not in flow: - * flow['tls'] = {} - * flow['tls'][fp_type_2] = fp_str_2_ # <<<<<<<<<<<<<< - * - * if context_2_ != None and context_2_ != []: - */ - __pyx_t_9 = __Pyx_PyDict_GetItem(__pyx_v_flow, __pyx_n_u_tls); if (unlikely(!__pyx_t_9)) __PYX_ERR(0, 170, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_9); - if (unlikely(!__pyx_v_fp_type_2)) { __Pyx_RaiseUnboundLocalError("fp_type_2"); __PYX_ERR(0, 170, __pyx_L1_error) } - if (unlikely(PyObject_SetItem(__pyx_t_9, __pyx_v_fp_type_2, __pyx_v_fp_str_2_) < 0)) __PYX_ERR(0, 170, __pyx_L1_error) - __Pyx_DECREF(__pyx_t_9); __pyx_t_9 = 0; - } - __pyx_L72:; - - /* "pmercury/utils/packet_proc.pyx":172 - * flow['tls'][fp_type_2] = fp_str_2_ - * - * if context_2_ != None and context_2_ != []: # <<<<<<<<<<<<<< - * flow[fp_type_2] = {} - * for x_ in context_2_: - */ - if (unlikely(!__pyx_v_context_2_)) { __Pyx_RaiseUnboundLocalError("context_2_"); __PYX_ERR(0, 172, __pyx_L1_error) } - __pyx_t_9 = PyObject_RichCompare(__pyx_v_context_2_, Py_None, Py_NE); __Pyx_XGOTREF(__pyx_t_9); if (unlikely(!__pyx_t_9)) __PYX_ERR(0, 172, __pyx_L1_error) - __pyx_t_3 = __Pyx_PyObject_IsTrue(__pyx_t_9); if (unlikely(__pyx_t_3 < 0)) __PYX_ERR(0, 172, __pyx_L1_error) - __Pyx_DECREF(__pyx_t_9); __pyx_t_9 = 0; - if (__pyx_t_3) { - } else { - __pyx_t_2 = __pyx_t_3; - goto __pyx_L75_bool_binop_done; - } - if (unlikely(!__pyx_v_context_2_)) { __Pyx_RaiseUnboundLocalError("context_2_"); __PYX_ERR(0, 172, __pyx_L1_error) } - __pyx_t_9 = PyList_New(0); if (unlikely(!__pyx_t_9)) __PYX_ERR(0, 172, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_9); - __pyx_t_5 = PyObject_RichCompare(__pyx_v_context_2_, __pyx_t_9, Py_NE); __Pyx_XGOTREF(__pyx_t_5); if (unlikely(!__pyx_t_5)) __PYX_ERR(0, 172, __pyx_L1_error) - __Pyx_DECREF(__pyx_t_9); __pyx_t_9 = 0; - __pyx_t_3 = __Pyx_PyObject_IsTrue(__pyx_t_5); if (unlikely(__pyx_t_3 < 0)) __PYX_ERR(0, 172, __pyx_L1_error) - __Pyx_DECREF(__pyx_t_5); __pyx_t_5 = 0; - __pyx_t_2 = __pyx_t_3; - __pyx_L75_bool_binop_done:; - if (__pyx_t_2) { - - /* "pmercury/utils/packet_proc.pyx":173 - * - * if context_2_ != None and context_2_ != []: - * flow[fp_type_2] = {} # <<<<<<<<<<<<<< - * for x_ in context_2_: - * flow[fp_type_2][x_['name']] = x_['data'] - */ - __pyx_t_5 = __Pyx_PyDict_NewPresized(0); if (unlikely(!__pyx_t_5)) __PYX_ERR(0, 173, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_5); - if (unlikely(!__pyx_v_fp_type_2)) { __Pyx_RaiseUnboundLocalError("fp_type_2"); __PYX_ERR(0, 173, __pyx_L1_error) } - if (unlikely(PyDict_SetItem(__pyx_v_flow, __pyx_v_fp_type_2, __pyx_t_5) < 0)) __PYX_ERR(0, 173, __pyx_L1_error) - __Pyx_DECREF(__pyx_t_5); __pyx_t_5 = 0; - - /* "pmercury/utils/packet_proc.pyx":174 - * if context_2_ != None and context_2_ != []: - * flow[fp_type_2] = {} - * for x_ in context_2_: # <<<<<<<<<<<<<< - * flow[fp_type_2][x_['name']] = x_['data'] - * - */ - if (unlikely(!__pyx_v_context_2_)) { __Pyx_RaiseUnboundLocalError("context_2_"); __PYX_ERR(0, 174, __pyx_L1_error) } - if (unlikely(__pyx_v_context_2_ == Py_None)) { - PyErr_SetString(PyExc_TypeError, "'NoneType' object is not iterable"); - __PYX_ERR(0, 174, __pyx_L1_error) - } - __pyx_t_5 = __pyx_v_context_2_; __Pyx_INCREF(__pyx_t_5); __pyx_t_4 = 0; - for (;;) { - if (__pyx_t_4 >= PyList_GET_SIZE(__pyx_t_5)) break; - #if CYTHON_ASSUME_SAFE_MACROS && !CYTHON_AVOID_BORROWED_REFS - __pyx_t_9 = PyList_GET_ITEM(__pyx_t_5, __pyx_t_4); __Pyx_INCREF(__pyx_t_9); __pyx_t_4++; if (unlikely(0 < 0)) __PYX_ERR(0, 174, __pyx_L1_error) - #else - __pyx_t_9 = PySequence_ITEM(__pyx_t_5, __pyx_t_4); __pyx_t_4++; if (unlikely(!__pyx_t_9)) __PYX_ERR(0, 174, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_9); - #endif - __Pyx_XDECREF_SET(__pyx_v_x_, __pyx_t_9); - __pyx_t_9 = 0; - - /* "pmercury/utils/packet_proc.pyx":175 - * flow[fp_type_2] = {} - * for x_ in context_2_: - * flow[fp_type_2][x_['name']] = x_['data'] # <<<<<<<<<<<<<< - * - * return flow - */ - __pyx_t_9 = __Pyx_PyObject_Dict_GetItem(__pyx_v_x_, __pyx_n_u_data); if (unlikely(!__pyx_t_9)) __PYX_ERR(0, 175, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_9); - if (unlikely(!__pyx_v_fp_type_2)) { __Pyx_RaiseUnboundLocalError("fp_type_2"); __PYX_ERR(0, 175, __pyx_L1_error) } - __pyx_t_8 = __Pyx_PyDict_GetItem(__pyx_v_flow, __pyx_v_fp_type_2); if (unlikely(!__pyx_t_8)) __PYX_ERR(0, 175, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_8); - __pyx_t_7 = __Pyx_PyObject_Dict_GetItem(__pyx_v_x_, __pyx_n_u_name); if (unlikely(!__pyx_t_7)) __PYX_ERR(0, 175, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_7); - if (unlikely(PyObject_SetItem(__pyx_t_8, __pyx_t_7, __pyx_t_9) < 0)) __PYX_ERR(0, 175, __pyx_L1_error) - __Pyx_DECREF(__pyx_t_8); __pyx_t_8 = 0; - __Pyx_DECREF(__pyx_t_7); __pyx_t_7 = 0; - __Pyx_DECREF(__pyx_t_9); __pyx_t_9 = 0; - - /* "pmercury/utils/packet_proc.pyx":174 - * if context_2_ != None and context_2_ != []: - * flow[fp_type_2] = {} - * for x_ in context_2_: # <<<<<<<<<<<<<< - * flow[fp_type_2][x_['name']] = x_['data'] - * - */ - } - __Pyx_DECREF(__pyx_t_5); __pyx_t_5 = 0; - - /* "pmercury/utils/packet_proc.pyx":172 - * flow['tls'][fp_type_2] = fp_str_2_ - * - * if context_2_ != None and context_2_ != []: # <<<<<<<<<<<<<< - * flow[fp_type_2] = {} - * for x_ in context_2_: - */ - } - - /* "pmercury/utils/packet_proc.pyx":164 - * flow[fp_type][x_['name']] = x_['data'] - * - * if fp_str_2_ != None: # <<<<<<<<<<<<<< - * if fp_type_2 != 'server_certs': - * flow['fingerprints'][fp_type_2] = fp_str_2_ - */ - } - - /* "pmercury/utils/packet_proc.pyx":177 - * flow[fp_type_2][x_['name']] = x_['data'] - * - * return flow # <<<<<<<<<<<<<< - */ - __Pyx_XDECREF(__pyx_r); - __Pyx_INCREF(__pyx_v_flow); - __pyx_r = __pyx_v_flow; - goto __pyx_L0; - - /* "pmercury/utils/packet_proc.pyx":33 - * - * - * def pkt_proc(double ts, bytes data): # <<<<<<<<<<<<<< - * cdef uint8_t *buf = data - * - */ - - /* function exit code */ - __pyx_L1_error:; - __Pyx_XDECREF(__pyx_t_5); - __Pyx_XDECREF(__pyx_t_6); - __Pyx_XDECREF(__pyx_t_7); - __Pyx_XDECREF(__pyx_t_8); - __Pyx_XDECREF(__pyx_t_9); - __Pyx_XDECREF(__pyx_t_11); - __Pyx_AddTraceback("pmercury.utils.packet_proc.pkt_proc", __pyx_clineno, __pyx_lineno, __pyx_filename); - __pyx_r = NULL; - __pyx_L0:; - __Pyx_XDECREF(__pyx_v_fp_type); - __Pyx_XDECREF(__pyx_v_fp_type_2); - __Pyx_XDECREF(__pyx_v_src_ip); - __Pyx_XDECREF(__pyx_v_dst_ip); - __Pyx_XDECREF(__pyx_v_context_); - __Pyx_XDECREF(__pyx_v_context_2_); - __Pyx_XDECREF(__pyx_v_flow); - __Pyx_XDECREF(__pyx_v_fp_str_); - __Pyx_XDECREF(__pyx_v_fp_str_2_); - __Pyx_XDECREF(__pyx_v_x_); - __Pyx_XGIVEREF(__pyx_r); - __Pyx_RefNannyFinishContext(); - return __pyx_r; -} - -static PyMethodDef __pyx_methods[] = { - {0, 0, 0, 0} -}; - -#if PY_MAJOR_VERSION >= 3 -#if CYTHON_PEP489_MULTI_PHASE_INIT -static PyObject* __pyx_pymod_create(PyObject *spec, PyModuleDef *def); /*proto*/ -static int __pyx_pymod_exec_packet_proc(PyObject* module); /*proto*/ -static PyModuleDef_Slot __pyx_moduledef_slots[] = { - {Py_mod_create, (void*)__pyx_pymod_create}, - {Py_mod_exec, (void*)__pyx_pymod_exec_packet_proc}, - {0, NULL} -}; -#endif - -static struct PyModuleDef __pyx_moduledef = { - PyModuleDef_HEAD_INIT, - "packet_proc", - __pyx_k_Copyright_c_2019_Cisco_Systems, /* m_doc */ - #if CYTHON_PEP489_MULTI_PHASE_INIT - 0, /* m_size */ - #else - -1, /* m_size */ - #endif - __pyx_methods /* m_methods */, - #if CYTHON_PEP489_MULTI_PHASE_INIT - __pyx_moduledef_slots, /* m_slots */ - #else - NULL, /* m_reload */ - #endif - NULL, /* m_traverse */ - NULL, /* m_clear */ - NULL /* m_free */ -}; -#endif -#ifndef CYTHON_SMALL_CODE -#if defined(__clang__) - #define CYTHON_SMALL_CODE -#elif defined(__GNUC__) && (__GNUC__ > 4 || (__GNUC__ == 4 && __GNUC_MINOR__ >= 3)) - #define CYTHON_SMALL_CODE __attribute__((cold)) -#else - #define CYTHON_SMALL_CODE -#endif -#endif - -static __Pyx_StringTabEntry __pyx_string_tab[] = { - {&__pyx_kp_u_, __pyx_k_, sizeof(__pyx_k_), 0, 1, 0, 0}, - {&__pyx_kp_u_02x, __pyx_k_02x, sizeof(__pyx_k_02x), 0, 1, 0, 0}, - {&__pyx_n_s_DHCP, __pyx_k_DHCP, sizeof(__pyx_k_DHCP), 0, 0, 1, 1}, - {&__pyx_n_s_DTLS, __pyx_k_DTLS, sizeof(__pyx_k_DTLS), 0, 0, 1, 1}, - {&__pyx_n_s_DTLS_Server, __pyx_k_DTLS_Server, sizeof(__pyx_k_DTLS_Server), 0, 0, 1, 1}, - {&__pyx_n_s_HTTP, __pyx_k_HTTP, sizeof(__pyx_k_HTTP), 0, 0, 1, 1}, - {&__pyx_n_s_HTTP_Server, __pyx_k_HTTP_Server, sizeof(__pyx_k_HTTP_Server), 0, 0, 1, 1}, - {&__pyx_n_s_IQUIC, __pyx_k_IQUIC, sizeof(__pyx_k_IQUIC), 0, 0, 1, 1}, - {&__pyx_n_s_TCP, __pyx_k_TCP, sizeof(__pyx_k_TCP), 0, 0, 1, 1}, - {&__pyx_n_s_TLS, __pyx_k_TLS, sizeof(__pyx_k_TLS), 0, 0, 1, 1}, - {&__pyx_n_s_TLS_Certificate, __pyx_k_TLS_Certificate, sizeof(__pyx_k_TLS_Certificate), 0, 0, 1, 1}, - {&__pyx_n_s_TLS_Server, __pyx_k_TLS_Server, sizeof(__pyx_k_TLS_Server), 0, 0, 1, 1}, - {&__pyx_kp_u__2, __pyx_k__2, sizeof(__pyx_k__2), 0, 1, 0, 0}, - {&__pyx_n_s_app_offset, __pyx_k_app_offset, sizeof(__pyx_k_app_offset), 0, 0, 1, 1}, - {&__pyx_n_s_buf, __pyx_k_buf, sizeof(__pyx_k_buf), 0, 0, 1, 1}, - {&__pyx_n_s_cline_in_traceback, __pyx_k_cline_in_traceback, sizeof(__pyx_k_cline_in_traceback), 0, 0, 1, 1}, - {&__pyx_n_s_context, __pyx_k_context, sizeof(__pyx_k_context), 0, 0, 1, 1}, - {&__pyx_n_s_context_2, __pyx_k_context_2, sizeof(__pyx_k_context_2), 0, 0, 1, 1}, - {&__pyx_n_s_data, __pyx_k_data, sizeof(__pyx_k_data), 0, 0, 1, 1}, - {&__pyx_n_u_data, __pyx_k_data, sizeof(__pyx_k_data), 0, 1, 0, 1}, - {&__pyx_n_s_data_len, __pyx_k_data_len, sizeof(__pyx_k_data_len), 0, 0, 1, 1}, - {&__pyx_n_u_dhcp, __pyx_k_dhcp, sizeof(__pyx_k_dhcp), 0, 1, 0, 1}, - {&__pyx_n_s_dst_ip, __pyx_k_dst_ip, sizeof(__pyx_k_dst_ip), 0, 0, 1, 1}, - {&__pyx_n_u_dst_ip, __pyx_k_dst_ip, sizeof(__pyx_k_dst_ip), 0, 1, 0, 1}, - {&__pyx_n_s_dst_port, __pyx_k_dst_port, sizeof(__pyx_k_dst_port), 0, 0, 1, 1}, - {&__pyx_n_u_dst_port, __pyx_k_dst_port, sizeof(__pyx_k_dst_port), 0, 1, 0, 1}, - {&__pyx_n_u_dtls, __pyx_k_dtls, sizeof(__pyx_k_dtls), 0, 1, 0, 1}, - {&__pyx_n_u_dtls_server, __pyx_k_dtls_server, sizeof(__pyx_k_dtls_server), 0, 1, 0, 1}, - {&__pyx_n_u_event_start, __pyx_k_event_start, sizeof(__pyx_k_event_start), 0, 1, 0, 1}, - {&__pyx_n_s_fingerprint, __pyx_k_fingerprint, sizeof(__pyx_k_fingerprint), 0, 0, 1, 1}, - {&__pyx_n_u_fingerprints, __pyx_k_fingerprints, sizeof(__pyx_k_fingerprints), 0, 1, 0, 1}, - {&__pyx_n_s_flow, __pyx_k_flow, sizeof(__pyx_k_flow), 0, 0, 1, 1}, - {&__pyx_n_s_fp_str, __pyx_k_fp_str, sizeof(__pyx_k_fp_str), 0, 0, 1, 1}, - {&__pyx_n_s_fp_str_2, __pyx_k_fp_str_2, sizeof(__pyx_k_fp_str_2), 0, 0, 1, 1}, - {&__pyx_n_s_fp_type, __pyx_k_fp_type, sizeof(__pyx_k_fp_type), 0, 0, 1, 1}, - {&__pyx_n_s_fp_type_2, __pyx_k_fp_type_2, sizeof(__pyx_k_fp_type_2), 0, 0, 1, 1}, - {&__pyx_n_u_http, __pyx_k_http, sizeof(__pyx_k_http), 0, 1, 0, 1}, - {&__pyx_n_u_http_server, __pyx_k_http_server, sizeof(__pyx_k_http_server), 0, 1, 0, 1}, - {&__pyx_n_s_import, __pyx_k_import, sizeof(__pyx_k_import), 0, 0, 1, 1}, - {&__pyx_n_s_ip_length, __pyx_k_ip_length, sizeof(__pyx_k_ip_length), 0, 0, 1, 1}, - {&__pyx_n_s_ip_offset, __pyx_k_ip_offset, sizeof(__pyx_k_ip_offset), 0, 0, 1, 1}, - {&__pyx_n_s_ip_type, __pyx_k_ip_type, sizeof(__pyx_k_ip_type), 0, 0, 1, 1}, - {&__pyx_n_u_iquic, __pyx_k_iquic, sizeof(__pyx_k_iquic), 0, 1, 0, 1}, - {&__pyx_n_s_main, __pyx_k_main, sizeof(__pyx_k_main), 0, 0, 1, 1}, - {&__pyx_n_u_name, __pyx_k_name, sizeof(__pyx_k_name), 0, 1, 0, 1}, - {&__pyx_n_s_name_2, __pyx_k_name_2, sizeof(__pyx_k_name_2), 0, 0, 1, 1}, - {&__pyx_n_s_o, __pyx_k_o, sizeof(__pyx_k_o), 0, 0, 1, 1}, - {&__pyx_n_s_pkt_proc, __pyx_k_pkt_proc, sizeof(__pyx_k_pkt_proc), 0, 0, 1, 1}, - {&__pyx_n_s_pmercury_protocols_dhcp, __pyx_k_pmercury_protocols_dhcp, sizeof(__pyx_k_pmercury_protocols_dhcp), 0, 0, 1, 1}, - {&__pyx_n_s_pmercury_protocols_dtls, __pyx_k_pmercury_protocols_dtls, sizeof(__pyx_k_pmercury_protocols_dtls), 0, 0, 1, 1}, - {&__pyx_n_s_pmercury_protocols_dtls_server, __pyx_k_pmercury_protocols_dtls_server, sizeof(__pyx_k_pmercury_protocols_dtls_server), 0, 0, 1, 1}, - {&__pyx_n_s_pmercury_protocols_http, __pyx_k_pmercury_protocols_http, sizeof(__pyx_k_pmercury_protocols_http), 0, 0, 1, 1}, - {&__pyx_n_s_pmercury_protocols_http_server, __pyx_k_pmercury_protocols_http_server, sizeof(__pyx_k_pmercury_protocols_http_server), 0, 0, 1, 1}, - {&__pyx_n_s_pmercury_protocols_iquic, __pyx_k_pmercury_protocols_iquic, sizeof(__pyx_k_pmercury_protocols_iquic), 0, 0, 1, 1}, - {&__pyx_n_s_pmercury_protocols_tcp, __pyx_k_pmercury_protocols_tcp, sizeof(__pyx_k_pmercury_protocols_tcp), 0, 0, 1, 1}, - {&__pyx_n_s_pmercury_protocols_tls, __pyx_k_pmercury_protocols_tls, sizeof(__pyx_k_pmercury_protocols_tls), 0, 0, 1, 1}, - {&__pyx_n_s_pmercury_protocols_tls_certifica, __pyx_k_pmercury_protocols_tls_certifica, sizeof(__pyx_k_pmercury_protocols_tls_certifica), 0, 0, 1, 1}, - {&__pyx_n_s_pmercury_protocols_tls_server, __pyx_k_pmercury_protocols_tls_server, sizeof(__pyx_k_pmercury_protocols_tls_server), 0, 0, 1, 1}, - {&__pyx_n_s_pmercury_utils_packet_proc, __pyx_k_pmercury_utils_packet_proc, sizeof(__pyx_k_pmercury_utils_packet_proc), 0, 0, 1, 1}, - {&__pyx_kp_s_pmercury_utils_packet_proc_pyx, __pyx_k_pmercury_utils_packet_proc_pyx, sizeof(__pyx_k_pmercury_utils_packet_proc_pyx), 0, 0, 1, 0}, - {&__pyx_n_s_prot_length, __pyx_k_prot_length, sizeof(__pyx_k_prot_length), 0, 0, 1, 1}, - {&__pyx_n_s_prot_offset, __pyx_k_prot_offset, sizeof(__pyx_k_prot_offset), 0, 0, 1, 1}, - {&__pyx_n_s_protocol, __pyx_k_protocol, sizeof(__pyx_k_protocol), 0, 0, 1, 1}, - {&__pyx_n_u_protocol, __pyx_k_protocol, sizeof(__pyx_k_protocol), 0, 1, 0, 1}, - {&__pyx_n_u_server_certs, __pyx_k_server_certs, sizeof(__pyx_k_server_certs), 0, 1, 0, 1}, - {&__pyx_n_s_src_ip, __pyx_k_src_ip, sizeof(__pyx_k_src_ip), 0, 0, 1, 1}, - {&__pyx_n_u_src_ip, __pyx_k_src_ip, sizeof(__pyx_k_src_ip), 0, 1, 0, 1}, - {&__pyx_n_s_src_port, __pyx_k_src_port, sizeof(__pyx_k_src_port), 0, 0, 1, 1}, - {&__pyx_n_u_src_port, __pyx_k_src_port, sizeof(__pyx_k_src_port), 0, 1, 0, 1}, - {&__pyx_n_s_sys, __pyx_k_sys, sizeof(__pyx_k_sys), 0, 0, 1, 1}, - {&__pyx_n_u_tcp, __pyx_k_tcp, sizeof(__pyx_k_tcp), 0, 1, 0, 1}, - {&__pyx_n_s_test, __pyx_k_test, sizeof(__pyx_k_test), 0, 0, 1, 1}, - {&__pyx_n_u_tls, __pyx_k_tls, sizeof(__pyx_k_tls), 0, 1, 0, 1}, - {&__pyx_n_u_tls_server, __pyx_k_tls_server, sizeof(__pyx_k_tls_server), 0, 1, 0, 1}, - {&__pyx_n_s_ts, __pyx_k_ts, sizeof(__pyx_k_ts), 0, 0, 1, 1}, - {&__pyx_n_s_x, __pyx_k_x, sizeof(__pyx_k_x), 0, 0, 1, 1}, - {0, 0, 0, 0, 0, 0, 0} -}; -static CYTHON_SMALL_CODE int __Pyx_InitCachedBuiltins(void) { - return 0; -} - -static CYTHON_SMALL_CODE int __Pyx_InitCachedConstants(void) { - __Pyx_RefNannyDeclarations - __Pyx_RefNannySetupContext("__Pyx_InitCachedConstants", 0); - - /* "pmercury/utils/packet_proc.pyx":33 - * - * - * def pkt_proc(double ts, bytes data): # <<<<<<<<<<<<<< - * cdef uint8_t *buf = data - * - */ - __pyx_tuple__3 = PyTuple_Pack(24, __pyx_n_s_ts, __pyx_n_s_data, __pyx_n_s_buf, __pyx_n_s_ip_type, __pyx_n_s_ip_length, __pyx_n_s_ip_offset, __pyx_n_s_protocol, __pyx_n_s_data_len, __pyx_n_s_src_port, __pyx_n_s_dst_port, __pyx_n_s_prot_length, __pyx_n_s_prot_offset, __pyx_n_s_app_offset, __pyx_n_s_fp_type, __pyx_n_s_fp_type_2, __pyx_n_s_src_ip, __pyx_n_s_dst_ip, __pyx_n_s_context, __pyx_n_s_context_2, __pyx_n_s_flow, __pyx_n_s_fp_str, __pyx_n_s_fp_str_2, __pyx_n_s_o, __pyx_n_s_x); if (unlikely(!__pyx_tuple__3)) __PYX_ERR(0, 33, __pyx_L1_error) - __Pyx_GOTREF(__pyx_tuple__3); - __Pyx_GIVEREF(__pyx_tuple__3); - __pyx_codeobj__4 = (PyObject*)__Pyx_PyCode_New(2, 0, 24, 0, CO_OPTIMIZED|CO_NEWLOCALS, __pyx_empty_bytes, __pyx_empty_tuple, __pyx_empty_tuple, __pyx_tuple__3, __pyx_empty_tuple, __pyx_empty_tuple, __pyx_kp_s_pmercury_utils_packet_proc_pyx, __pyx_n_s_pkt_proc, 33, __pyx_empty_bytes); if (unlikely(!__pyx_codeobj__4)) __PYX_ERR(0, 33, __pyx_L1_error) - __Pyx_RefNannyFinishContext(); - return 0; - __pyx_L1_error:; - __Pyx_RefNannyFinishContext(); - return -1; -} - -static CYTHON_SMALL_CODE int __Pyx_InitGlobals(void) { - if (__Pyx_InitStrings(__pyx_string_tab) < 0) __PYX_ERR(0, 1, __pyx_L1_error); - return 0; - __pyx_L1_error:; - return -1; -} - -static CYTHON_SMALL_CODE int __Pyx_modinit_global_init_code(void); /*proto*/ -static CYTHON_SMALL_CODE int __Pyx_modinit_variable_export_code(void); /*proto*/ -static CYTHON_SMALL_CODE int __Pyx_modinit_function_export_code(void); /*proto*/ -static CYTHON_SMALL_CODE int __Pyx_modinit_type_init_code(void); /*proto*/ -static CYTHON_SMALL_CODE int __Pyx_modinit_type_import_code(void); /*proto*/ -static CYTHON_SMALL_CODE int __Pyx_modinit_variable_import_code(void); /*proto*/ -static CYTHON_SMALL_CODE int __Pyx_modinit_function_import_code(void); /*proto*/ - -static int __Pyx_modinit_global_init_code(void) { - __Pyx_RefNannyDeclarations - __Pyx_RefNannySetupContext("__Pyx_modinit_global_init_code", 0); - /*--- Global init code ---*/ - __Pyx_RefNannyFinishContext(); - return 0; -} - -static int __Pyx_modinit_variable_export_code(void) { - __Pyx_RefNannyDeclarations - __Pyx_RefNannySetupContext("__Pyx_modinit_variable_export_code", 0); - /*--- Variable export code ---*/ - __Pyx_RefNannyFinishContext(); - return 0; -} - -static int __Pyx_modinit_function_export_code(void) { - __Pyx_RefNannyDeclarations - __Pyx_RefNannySetupContext("__Pyx_modinit_function_export_code", 0); - /*--- Function export code ---*/ - __Pyx_RefNannyFinishContext(); - return 0; -} - -static int __Pyx_modinit_type_init_code(void) { - __Pyx_RefNannyDeclarations - __Pyx_RefNannySetupContext("__Pyx_modinit_type_init_code", 0); - /*--- Type init code ---*/ - __Pyx_RefNannyFinishContext(); - return 0; -} - -static int __Pyx_modinit_type_import_code(void) { - __Pyx_RefNannyDeclarations - __Pyx_RefNannySetupContext("__Pyx_modinit_type_import_code", 0); - /*--- Type import code ---*/ - __Pyx_RefNannyFinishContext(); - return 0; -} - -static int __Pyx_modinit_variable_import_code(void) { - __Pyx_RefNannyDeclarations - __Pyx_RefNannySetupContext("__Pyx_modinit_variable_import_code", 0); - /*--- Variable import code ---*/ - __Pyx_RefNannyFinishContext(); - return 0; -} - -static int __Pyx_modinit_function_import_code(void) { - __Pyx_RefNannyDeclarations - __Pyx_RefNannySetupContext("__Pyx_modinit_function_import_code", 0); - /*--- Function import code ---*/ - __Pyx_RefNannyFinishContext(); - return 0; -} - - -#if PY_MAJOR_VERSION < 3 -#ifdef CYTHON_NO_PYINIT_EXPORT -#define __Pyx_PyMODINIT_FUNC void -#else -#define __Pyx_PyMODINIT_FUNC PyMODINIT_FUNC -#endif -#else -#ifdef CYTHON_NO_PYINIT_EXPORT -#define __Pyx_PyMODINIT_FUNC PyObject * -#else -#define __Pyx_PyMODINIT_FUNC PyMODINIT_FUNC -#endif -#endif - - -#if PY_MAJOR_VERSION < 3 -__Pyx_PyMODINIT_FUNC initpacket_proc(void) CYTHON_SMALL_CODE; /*proto*/ -__Pyx_PyMODINIT_FUNC initpacket_proc(void) -#else -__Pyx_PyMODINIT_FUNC PyInit_packet_proc(void) CYTHON_SMALL_CODE; /*proto*/ -__Pyx_PyMODINIT_FUNC PyInit_packet_proc(void) -#if CYTHON_PEP489_MULTI_PHASE_INIT -{ - return PyModuleDef_Init(&__pyx_moduledef); -} -static CYTHON_SMALL_CODE int __Pyx_check_single_interpreter(void) { - #if PY_VERSION_HEX >= 0x030700A1 - static PY_INT64_T main_interpreter_id = -1; - PY_INT64_T current_id = PyInterpreterState_GetID(PyThreadState_Get()->interp); - if (main_interpreter_id == -1) { - main_interpreter_id = current_id; - return (unlikely(current_id == -1)) ? -1 : 0; - } else if (unlikely(main_interpreter_id != current_id)) - #else - static PyInterpreterState *main_interpreter = NULL; - PyInterpreterState *current_interpreter = PyThreadState_Get()->interp; - if (!main_interpreter) { - main_interpreter = current_interpreter; - } else if (unlikely(main_interpreter != current_interpreter)) - #endif - { - PyErr_SetString( - PyExc_ImportError, - "Interpreter change detected - this module can only be loaded into one interpreter per process."); - return -1; - } - return 0; -} -static CYTHON_SMALL_CODE int __Pyx_copy_spec_to_module(PyObject *spec, PyObject *moddict, const char* from_name, const char* to_name, int allow_none) { - PyObject *value = PyObject_GetAttrString(spec, from_name); - int result = 0; - if (likely(value)) { - if (allow_none || value != Py_None) { - result = PyDict_SetItemString(moddict, to_name, value); - } - Py_DECREF(value); - } else if (PyErr_ExceptionMatches(PyExc_AttributeError)) { - PyErr_Clear(); - } else { - result = -1; - } - return result; -} -static CYTHON_SMALL_CODE PyObject* __pyx_pymod_create(PyObject *spec, CYTHON_UNUSED PyModuleDef *def) { - PyObject *module = NULL, *moddict, *modname; - if (__Pyx_check_single_interpreter()) - return NULL; - if (__pyx_m) - return __Pyx_NewRef(__pyx_m); - modname = PyObject_GetAttrString(spec, "name"); - if (unlikely(!modname)) goto bad; - module = PyModule_NewObject(modname); - Py_DECREF(modname); - if (unlikely(!module)) goto bad; - moddict = PyModule_GetDict(module); - if (unlikely(!moddict)) goto bad; - if (unlikely(__Pyx_copy_spec_to_module(spec, moddict, "loader", "__loader__", 1) < 0)) goto bad; - if (unlikely(__Pyx_copy_spec_to_module(spec, moddict, "origin", "__file__", 1) < 0)) goto bad; - if (unlikely(__Pyx_copy_spec_to_module(spec, moddict, "parent", "__package__", 1) < 0)) goto bad; - if (unlikely(__Pyx_copy_spec_to_module(spec, moddict, "submodule_search_locations", "__path__", 0) < 0)) goto bad; - return module; -bad: - Py_XDECREF(module); - return NULL; -} - - -static CYTHON_SMALL_CODE int __pyx_pymod_exec_packet_proc(PyObject *__pyx_pyinit_module) -#endif -#endif -{ - PyObject *__pyx_t_1 = NULL; - PyObject *__pyx_t_2 = NULL; - __Pyx_RefNannyDeclarations - #if CYTHON_PEP489_MULTI_PHASE_INIT - if (__pyx_m) { - if (__pyx_m == __pyx_pyinit_module) return 0; - PyErr_SetString(PyExc_RuntimeError, "Module 'packet_proc' has already been imported. Re-initialisation is not supported."); - return -1; - } - #elif PY_MAJOR_VERSION >= 3 - if (__pyx_m) return __Pyx_NewRef(__pyx_m); - #endif - #if CYTHON_REFNANNY -__Pyx_RefNanny = __Pyx_RefNannyImportAPI("refnanny"); -if (!__Pyx_RefNanny) { - PyErr_Clear(); - __Pyx_RefNanny = __Pyx_RefNannyImportAPI("Cython.Runtime.refnanny"); - if (!__Pyx_RefNanny) - Py_FatalError("failed to import 'refnanny' module"); -} -#endif - __Pyx_RefNannySetupContext("__Pyx_PyMODINIT_FUNC PyInit_packet_proc(void)", 0); - if (__Pyx_check_binary_version() < 0) __PYX_ERR(0, 1, __pyx_L1_error) - #ifdef __Pxy_PyFrame_Initialize_Offsets - __Pxy_PyFrame_Initialize_Offsets(); - #endif - __pyx_empty_tuple = PyTuple_New(0); if (unlikely(!__pyx_empty_tuple)) __PYX_ERR(0, 1, __pyx_L1_error) - __pyx_empty_bytes = PyBytes_FromStringAndSize("", 0); if (unlikely(!__pyx_empty_bytes)) __PYX_ERR(0, 1, __pyx_L1_error) - __pyx_empty_unicode = PyUnicode_FromStringAndSize("", 0); if (unlikely(!__pyx_empty_unicode)) __PYX_ERR(0, 1, __pyx_L1_error) - #ifdef __Pyx_CyFunction_USED - if (__pyx_CyFunction_init() < 0) __PYX_ERR(0, 1, __pyx_L1_error) - #endif - #ifdef __Pyx_FusedFunction_USED - if (__pyx_FusedFunction_init() < 0) __PYX_ERR(0, 1, __pyx_L1_error) - #endif - #ifdef __Pyx_Coroutine_USED - if (__pyx_Coroutine_init() < 0) __PYX_ERR(0, 1, __pyx_L1_error) - #endif - #ifdef __Pyx_Generator_USED - if (__pyx_Generator_init() < 0) __PYX_ERR(0, 1, __pyx_L1_error) - #endif - #ifdef __Pyx_AsyncGen_USED - if (__pyx_AsyncGen_init() < 0) __PYX_ERR(0, 1, __pyx_L1_error) - #endif - #ifdef __Pyx_StopAsyncIteration_USED - if (__pyx_StopAsyncIteration_init() < 0) __PYX_ERR(0, 1, __pyx_L1_error) - #endif - /*--- Library function declarations ---*/ - /*--- Threads initialization code ---*/ - #if defined(__PYX_FORCE_INIT_THREADS) && __PYX_FORCE_INIT_THREADS - #ifdef WITH_THREAD /* Python build with threading support? */ - PyEval_InitThreads(); - #endif - #endif - /*--- Module creation code ---*/ - #if CYTHON_PEP489_MULTI_PHASE_INIT - __pyx_m = __pyx_pyinit_module; - Py_INCREF(__pyx_m); - #else - #if PY_MAJOR_VERSION < 3 - __pyx_m = Py_InitModule4("packet_proc", __pyx_methods, __pyx_k_Copyright_c_2019_Cisco_Systems, 0, PYTHON_API_VERSION); Py_XINCREF(__pyx_m); - #else - __pyx_m = PyModule_Create(&__pyx_moduledef); - #endif - if (unlikely(!__pyx_m)) __PYX_ERR(0, 1, __pyx_L1_error) - #endif - __pyx_d = PyModule_GetDict(__pyx_m); if (unlikely(!__pyx_d)) __PYX_ERR(0, 1, __pyx_L1_error) - Py_INCREF(__pyx_d); - __pyx_b = PyImport_AddModule(__Pyx_BUILTIN_MODULE_NAME); if (unlikely(!__pyx_b)) __PYX_ERR(0, 1, __pyx_L1_error) - Py_INCREF(__pyx_b); - __pyx_cython_runtime = PyImport_AddModule((char *) "cython_runtime"); if (unlikely(!__pyx_cython_runtime)) __PYX_ERR(0, 1, __pyx_L1_error) - Py_INCREF(__pyx_cython_runtime); - if (PyObject_SetAttrString(__pyx_m, "__builtins__", __pyx_b) < 0) __PYX_ERR(0, 1, __pyx_L1_error); - /*--- Initialize various global constants etc. ---*/ - if (__Pyx_InitGlobals() < 0) __PYX_ERR(0, 1, __pyx_L1_error) - #if PY_MAJOR_VERSION < 3 && (__PYX_DEFAULT_STRING_ENCODING_IS_ASCII || __PYX_DEFAULT_STRING_ENCODING_IS_DEFAULT) - if (__Pyx_init_sys_getdefaultencoding_params() < 0) __PYX_ERR(0, 1, __pyx_L1_error) - #endif - if (__pyx_module_is_main_pmercury__utils__packet_proc) { - if (PyObject_SetAttr(__pyx_m, __pyx_n_s_name_2, __pyx_n_s_main) < 0) __PYX_ERR(0, 1, __pyx_L1_error) - } - #if PY_MAJOR_VERSION >= 3 - { - PyObject *modules = PyImport_GetModuleDict(); if (unlikely(!modules)) __PYX_ERR(0, 1, __pyx_L1_error) - if (!PyDict_GetItemString(modules, "pmercury.utils.packet_proc")) { - if (unlikely(PyDict_SetItemString(modules, "pmercury.utils.packet_proc", __pyx_m) < 0)) __PYX_ERR(0, 1, __pyx_L1_error) - } - } - #endif - /*--- Builtin init code ---*/ - if (__Pyx_InitCachedBuiltins() < 0) goto __pyx_L1_error; - /*--- Constants init code ---*/ - if (__Pyx_InitCachedConstants() < 0) goto __pyx_L1_error; - /*--- Global type/function init code ---*/ - (void)__Pyx_modinit_global_init_code(); - (void)__Pyx_modinit_variable_export_code(); - (void)__Pyx_modinit_function_export_code(); - (void)__Pyx_modinit_type_init_code(); - (void)__Pyx_modinit_type_import_code(); - (void)__Pyx_modinit_variable_import_code(); - (void)__Pyx_modinit_function_import_code(); - /*--- Execution code ---*/ - #if defined(__Pyx_Generator_USED) || defined(__Pyx_Coroutine_USED) - if (__Pyx_patch_abc() < 0) __PYX_ERR(0, 1, __pyx_L1_error) - #endif - - /* "pmercury/utils/packet_proc.pyx":8 - * """ - * - * import sys # <<<<<<<<<<<<<< - * - * from pmercury.protocols.tcp import TCP - */ - __pyx_t_1 = __Pyx_Import(__pyx_n_s_sys, 0, 0); if (unlikely(!__pyx_t_1)) __PYX_ERR(0, 8, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_1); - if (PyDict_SetItem(__pyx_d, __pyx_n_s_sys, __pyx_t_1) < 0) __PYX_ERR(0, 8, __pyx_L1_error) - __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0; - - /* "pmercury/utils/packet_proc.pyx":10 - * import sys - * - * from pmercury.protocols.tcp import TCP # <<<<<<<<<<<<<< - * from pmercury.protocols.tls import TLS - * from pmercury.protocols.dtls import DTLS - */ - __pyx_t_1 = PyList_New(1); if (unlikely(!__pyx_t_1)) __PYX_ERR(0, 10, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_1); - __Pyx_INCREF(__pyx_n_s_TCP); - __Pyx_GIVEREF(__pyx_n_s_TCP); - PyList_SET_ITEM(__pyx_t_1, 0, __pyx_n_s_TCP); - __pyx_t_2 = __Pyx_Import(__pyx_n_s_pmercury_protocols_tcp, __pyx_t_1, 0); if (unlikely(!__pyx_t_2)) __PYX_ERR(0, 10, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_2); - __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0; - __pyx_t_1 = __Pyx_ImportFrom(__pyx_t_2, __pyx_n_s_TCP); if (unlikely(!__pyx_t_1)) __PYX_ERR(0, 10, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_1); - if (PyDict_SetItem(__pyx_d, __pyx_n_s_TCP, __pyx_t_1) < 0) __PYX_ERR(0, 10, __pyx_L1_error) - __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0; - __Pyx_DECREF(__pyx_t_2); __pyx_t_2 = 0; - - /* "pmercury/utils/packet_proc.pyx":11 - * - * from pmercury.protocols.tcp import TCP - * from pmercury.protocols.tls import TLS # <<<<<<<<<<<<<< - * from pmercury.protocols.dtls import DTLS - * from pmercury.protocols.http import HTTP - */ - __pyx_t_2 = PyList_New(1); if (unlikely(!__pyx_t_2)) __PYX_ERR(0, 11, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_2); - __Pyx_INCREF(__pyx_n_s_TLS); - __Pyx_GIVEREF(__pyx_n_s_TLS); - PyList_SET_ITEM(__pyx_t_2, 0, __pyx_n_s_TLS); - __pyx_t_1 = __Pyx_Import(__pyx_n_s_pmercury_protocols_tls, __pyx_t_2, 0); if (unlikely(!__pyx_t_1)) __PYX_ERR(0, 11, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_1); - __Pyx_DECREF(__pyx_t_2); __pyx_t_2 = 0; - __pyx_t_2 = __Pyx_ImportFrom(__pyx_t_1, __pyx_n_s_TLS); if (unlikely(!__pyx_t_2)) __PYX_ERR(0, 11, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_2); - if (PyDict_SetItem(__pyx_d, __pyx_n_s_TLS, __pyx_t_2) < 0) __PYX_ERR(0, 11, __pyx_L1_error) - __Pyx_DECREF(__pyx_t_2); __pyx_t_2 = 0; - __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0; - - /* "pmercury/utils/packet_proc.pyx":12 - * from pmercury.protocols.tcp import TCP - * from pmercury.protocols.tls import TLS - * from pmercury.protocols.dtls import DTLS # <<<<<<<<<<<<<< - * from pmercury.protocols.http import HTTP - * from pmercury.protocols.dhcp import DHCP - */ - __pyx_t_1 = PyList_New(1); if (unlikely(!__pyx_t_1)) __PYX_ERR(0, 12, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_1); - __Pyx_INCREF(__pyx_n_s_DTLS); - __Pyx_GIVEREF(__pyx_n_s_DTLS); - PyList_SET_ITEM(__pyx_t_1, 0, __pyx_n_s_DTLS); - __pyx_t_2 = __Pyx_Import(__pyx_n_s_pmercury_protocols_dtls, __pyx_t_1, 0); if (unlikely(!__pyx_t_2)) __PYX_ERR(0, 12, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_2); - __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0; - __pyx_t_1 = __Pyx_ImportFrom(__pyx_t_2, __pyx_n_s_DTLS); if (unlikely(!__pyx_t_1)) __PYX_ERR(0, 12, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_1); - if (PyDict_SetItem(__pyx_d, __pyx_n_s_DTLS, __pyx_t_1) < 0) __PYX_ERR(0, 12, __pyx_L1_error) - __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0; - __Pyx_DECREF(__pyx_t_2); __pyx_t_2 = 0; - - /* "pmercury/utils/packet_proc.pyx":13 - * from pmercury.protocols.tls import TLS - * from pmercury.protocols.dtls import DTLS - * from pmercury.protocols.http import HTTP # <<<<<<<<<<<<<< - * from pmercury.protocols.dhcp import DHCP - * from pmercury.protocols.iquic import IQUIC - */ - __pyx_t_2 = PyList_New(1); if (unlikely(!__pyx_t_2)) __PYX_ERR(0, 13, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_2); - __Pyx_INCREF(__pyx_n_s_HTTP); - __Pyx_GIVEREF(__pyx_n_s_HTTP); - PyList_SET_ITEM(__pyx_t_2, 0, __pyx_n_s_HTTP); - __pyx_t_1 = __Pyx_Import(__pyx_n_s_pmercury_protocols_http, __pyx_t_2, 0); if (unlikely(!__pyx_t_1)) __PYX_ERR(0, 13, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_1); - __Pyx_DECREF(__pyx_t_2); __pyx_t_2 = 0; - __pyx_t_2 = __Pyx_ImportFrom(__pyx_t_1, __pyx_n_s_HTTP); if (unlikely(!__pyx_t_2)) __PYX_ERR(0, 13, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_2); - if (PyDict_SetItem(__pyx_d, __pyx_n_s_HTTP, __pyx_t_2) < 0) __PYX_ERR(0, 13, __pyx_L1_error) - __Pyx_DECREF(__pyx_t_2); __pyx_t_2 = 0; - __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0; - - /* "pmercury/utils/packet_proc.pyx":14 - * from pmercury.protocols.dtls import DTLS - * from pmercury.protocols.http import HTTP - * from pmercury.protocols.dhcp import DHCP # <<<<<<<<<<<<<< - * from pmercury.protocols.iquic import IQUIC - * from pmercury.protocols.tls_server import TLS_Server - */ - __pyx_t_1 = PyList_New(1); if (unlikely(!__pyx_t_1)) __PYX_ERR(0, 14, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_1); - __Pyx_INCREF(__pyx_n_s_DHCP); - __Pyx_GIVEREF(__pyx_n_s_DHCP); - PyList_SET_ITEM(__pyx_t_1, 0, __pyx_n_s_DHCP); - __pyx_t_2 = __Pyx_Import(__pyx_n_s_pmercury_protocols_dhcp, __pyx_t_1, 0); if (unlikely(!__pyx_t_2)) __PYX_ERR(0, 14, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_2); - __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0; - __pyx_t_1 = __Pyx_ImportFrom(__pyx_t_2, __pyx_n_s_DHCP); if (unlikely(!__pyx_t_1)) __PYX_ERR(0, 14, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_1); - if (PyDict_SetItem(__pyx_d, __pyx_n_s_DHCP, __pyx_t_1) < 0) __PYX_ERR(0, 14, __pyx_L1_error) - __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0; - __Pyx_DECREF(__pyx_t_2); __pyx_t_2 = 0; - - /* "pmercury/utils/packet_proc.pyx":15 - * from pmercury.protocols.http import HTTP - * from pmercury.protocols.dhcp import DHCP - * from pmercury.protocols.iquic import IQUIC # <<<<<<<<<<<<<< - * from pmercury.protocols.tls_server import TLS_Server - * from pmercury.protocols.dtls_server import DTLS_Server - */ - __pyx_t_2 = PyList_New(1); if (unlikely(!__pyx_t_2)) __PYX_ERR(0, 15, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_2); - __Pyx_INCREF(__pyx_n_s_IQUIC); - __Pyx_GIVEREF(__pyx_n_s_IQUIC); - PyList_SET_ITEM(__pyx_t_2, 0, __pyx_n_s_IQUIC); - __pyx_t_1 = __Pyx_Import(__pyx_n_s_pmercury_protocols_iquic, __pyx_t_2, 0); if (unlikely(!__pyx_t_1)) __PYX_ERR(0, 15, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_1); - __Pyx_DECREF(__pyx_t_2); __pyx_t_2 = 0; - __pyx_t_2 = __Pyx_ImportFrom(__pyx_t_1, __pyx_n_s_IQUIC); if (unlikely(!__pyx_t_2)) __PYX_ERR(0, 15, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_2); - if (PyDict_SetItem(__pyx_d, __pyx_n_s_IQUIC, __pyx_t_2) < 0) __PYX_ERR(0, 15, __pyx_L1_error) - __Pyx_DECREF(__pyx_t_2); __pyx_t_2 = 0; - __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0; - - /* "pmercury/utils/packet_proc.pyx":16 - * from pmercury.protocols.dhcp import DHCP - * from pmercury.protocols.iquic import IQUIC - * from pmercury.protocols.tls_server import TLS_Server # <<<<<<<<<<<<<< - * from pmercury.protocols.dtls_server import DTLS_Server - * from pmercury.protocols.http_server import HTTP_Server - */ - __pyx_t_1 = PyList_New(1); if (unlikely(!__pyx_t_1)) __PYX_ERR(0, 16, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_1); - __Pyx_INCREF(__pyx_n_s_TLS_Server); - __Pyx_GIVEREF(__pyx_n_s_TLS_Server); - PyList_SET_ITEM(__pyx_t_1, 0, __pyx_n_s_TLS_Server); - __pyx_t_2 = __Pyx_Import(__pyx_n_s_pmercury_protocols_tls_server, __pyx_t_1, 0); if (unlikely(!__pyx_t_2)) __PYX_ERR(0, 16, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_2); - __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0; - __pyx_t_1 = __Pyx_ImportFrom(__pyx_t_2, __pyx_n_s_TLS_Server); if (unlikely(!__pyx_t_1)) __PYX_ERR(0, 16, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_1); - if (PyDict_SetItem(__pyx_d, __pyx_n_s_TLS_Server, __pyx_t_1) < 0) __PYX_ERR(0, 16, __pyx_L1_error) - __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0; - __Pyx_DECREF(__pyx_t_2); __pyx_t_2 = 0; - - /* "pmercury/utils/packet_proc.pyx":17 - * from pmercury.protocols.iquic import IQUIC - * from pmercury.protocols.tls_server import TLS_Server - * from pmercury.protocols.dtls_server import DTLS_Server # <<<<<<<<<<<<<< - * from pmercury.protocols.http_server import HTTP_Server - * from pmercury.protocols.tls_certificate import TLS_Certificate - */ - __pyx_t_2 = PyList_New(1); if (unlikely(!__pyx_t_2)) __PYX_ERR(0, 17, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_2); - __Pyx_INCREF(__pyx_n_s_DTLS_Server); - __Pyx_GIVEREF(__pyx_n_s_DTLS_Server); - PyList_SET_ITEM(__pyx_t_2, 0, __pyx_n_s_DTLS_Server); - __pyx_t_1 = __Pyx_Import(__pyx_n_s_pmercury_protocols_dtls_server, __pyx_t_2, 0); if (unlikely(!__pyx_t_1)) __PYX_ERR(0, 17, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_1); - __Pyx_DECREF(__pyx_t_2); __pyx_t_2 = 0; - __pyx_t_2 = __Pyx_ImportFrom(__pyx_t_1, __pyx_n_s_DTLS_Server); if (unlikely(!__pyx_t_2)) __PYX_ERR(0, 17, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_2); - if (PyDict_SetItem(__pyx_d, __pyx_n_s_DTLS_Server, __pyx_t_2) < 0) __PYX_ERR(0, 17, __pyx_L1_error) - __Pyx_DECREF(__pyx_t_2); __pyx_t_2 = 0; - __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0; - - /* "pmercury/utils/packet_proc.pyx":18 - * from pmercury.protocols.tls_server import TLS_Server - * from pmercury.protocols.dtls_server import DTLS_Server - * from pmercury.protocols.http_server import HTTP_Server # <<<<<<<<<<<<<< - * from pmercury.protocols.tls_certificate import TLS_Certificate - * - */ - __pyx_t_1 = PyList_New(1); if (unlikely(!__pyx_t_1)) __PYX_ERR(0, 18, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_1); - __Pyx_INCREF(__pyx_n_s_HTTP_Server); - __Pyx_GIVEREF(__pyx_n_s_HTTP_Server); - PyList_SET_ITEM(__pyx_t_1, 0, __pyx_n_s_HTTP_Server); - __pyx_t_2 = __Pyx_Import(__pyx_n_s_pmercury_protocols_http_server, __pyx_t_1, 0); if (unlikely(!__pyx_t_2)) __PYX_ERR(0, 18, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_2); - __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0; - __pyx_t_1 = __Pyx_ImportFrom(__pyx_t_2, __pyx_n_s_HTTP_Server); if (unlikely(!__pyx_t_1)) __PYX_ERR(0, 18, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_1); - if (PyDict_SetItem(__pyx_d, __pyx_n_s_HTTP_Server, __pyx_t_1) < 0) __PYX_ERR(0, 18, __pyx_L1_error) - __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0; - __Pyx_DECREF(__pyx_t_2); __pyx_t_2 = 0; - - /* "pmercury/utils/packet_proc.pyx":19 - * from pmercury.protocols.dtls_server import DTLS_Server - * from pmercury.protocols.http_server import HTTP_Server - * from pmercury.protocols.tls_certificate import TLS_Certificate # <<<<<<<<<<<<<< - * - * - */ - __pyx_t_2 = PyList_New(1); if (unlikely(!__pyx_t_2)) __PYX_ERR(0, 19, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_2); - __Pyx_INCREF(__pyx_n_s_TLS_Certificate); - __Pyx_GIVEREF(__pyx_n_s_TLS_Certificate); - PyList_SET_ITEM(__pyx_t_2, 0, __pyx_n_s_TLS_Certificate); - __pyx_t_1 = __Pyx_Import(__pyx_n_s_pmercury_protocols_tls_certifica, __pyx_t_2, 0); if (unlikely(!__pyx_t_1)) __PYX_ERR(0, 19, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_1); - __Pyx_DECREF(__pyx_t_2); __pyx_t_2 = 0; - __pyx_t_2 = __Pyx_ImportFrom(__pyx_t_1, __pyx_n_s_TLS_Certificate); if (unlikely(!__pyx_t_2)) __PYX_ERR(0, 19, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_2); - if (PyDict_SetItem(__pyx_d, __pyx_n_s_TLS_Certificate, __pyx_t_2) < 0) __PYX_ERR(0, 19, __pyx_L1_error) - __Pyx_DECREF(__pyx_t_2); __pyx_t_2 = 0; - __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0; - - /* "pmercury/utils/packet_proc.pyx":33 - * - * - * def pkt_proc(double ts, bytes data): # <<<<<<<<<<<<<< - * cdef uint8_t *buf = data - * - */ - __pyx_t_1 = PyCFunction_NewEx(&__pyx_mdef_8pmercury_5utils_11packet_proc_1pkt_proc, NULL, __pyx_n_s_pmercury_utils_packet_proc); if (unlikely(!__pyx_t_1)) __PYX_ERR(0, 33, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_1); - if (PyDict_SetItem(__pyx_d, __pyx_n_s_pkt_proc, __pyx_t_1) < 0) __PYX_ERR(0, 33, __pyx_L1_error) - __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0; - - /* "pmercury/utils/packet_proc.pyx":1 - * #cython: language_level=3, wraparound=False, cdivision=True, infer_types=True, initializedcheck=False, c_string_type=bytes, embedsignature=False, nonecheck=False # <<<<<<<<<<<<<< - * - * """ - */ - __pyx_t_1 = __Pyx_PyDict_NewPresized(0); if (unlikely(!__pyx_t_1)) __PYX_ERR(0, 1, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_1); - if (PyDict_SetItem(__pyx_d, __pyx_n_s_test, __pyx_t_1) < 0) __PYX_ERR(0, 1, __pyx_L1_error) - __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0; - - /*--- Wrapped vars code ---*/ - - goto __pyx_L0; - __pyx_L1_error:; - __Pyx_XDECREF(__pyx_t_1); - __Pyx_XDECREF(__pyx_t_2); - if (__pyx_m) { - if (__pyx_d) { - __Pyx_AddTraceback("init pmercury.utils.packet_proc", __pyx_clineno, __pyx_lineno, __pyx_filename); - } - Py_CLEAR(__pyx_m); - } else if (!PyErr_Occurred()) { - PyErr_SetString(PyExc_ImportError, "init pmercury.utils.packet_proc"); - } - __pyx_L0:; - __Pyx_RefNannyFinishContext(); - #if CYTHON_PEP489_MULTI_PHASE_INIT - return (__pyx_m != NULL) ? 0 : -1; - #elif PY_MAJOR_VERSION >= 3 - return __pyx_m; - #else - return; - #endif -} - -/* --- Runtime support code --- */ -/* Refnanny */ -#if CYTHON_REFNANNY -static __Pyx_RefNannyAPIStruct *__Pyx_RefNannyImportAPI(const char *modname) { - PyObject *m = NULL, *p = NULL; - void *r = NULL; - m = PyImport_ImportModule(modname); - if (!m) goto end; - p = PyObject_GetAttrString(m, "RefNannyAPI"); - if (!p) goto end; - r = PyLong_AsVoidPtr(p); -end: - Py_XDECREF(p); - Py_XDECREF(m); - return (__Pyx_RefNannyAPIStruct *)r; -} -#endif - -/* RaiseArgTupleInvalid */ -static void __Pyx_RaiseArgtupleInvalid( - const char* func_name, - int exact, - Py_ssize_t num_min, - Py_ssize_t num_max, - Py_ssize_t num_found) -{ - Py_ssize_t num_expected; - const char *more_or_less; - if (num_found < num_min) { - num_expected = num_min; - more_or_less = "at least"; - } else { - num_expected = num_max; - more_or_less = "at most"; - } - if (exact) { - more_or_less = "exactly"; - } - PyErr_Format(PyExc_TypeError, - "%.200s() takes %.8s %" CYTHON_FORMAT_SSIZE_T "d positional argument%.1s (%" CYTHON_FORMAT_SSIZE_T "d given)", - func_name, more_or_less, num_expected, - (num_expected == 1) ? "" : "s", num_found); -} - -/* RaiseDoubleKeywords */ -static void __Pyx_RaiseDoubleKeywordsError( - const char* func_name, - PyObject* kw_name) -{ - PyErr_Format(PyExc_TypeError, - #if PY_MAJOR_VERSION >= 3 - "%s() got multiple values for keyword argument '%U'", func_name, kw_name); - #else - "%s() got multiple values for keyword argument '%s'", func_name, - PyString_AsString(kw_name)); - #endif -} - -/* ParseKeywords */ -static int __Pyx_ParseOptionalKeywords( - PyObject *kwds, - PyObject **argnames[], - PyObject *kwds2, - PyObject *values[], - Py_ssize_t num_pos_args, - const char* function_name) -{ - PyObject *key = 0, *value = 0; - Py_ssize_t pos = 0; - PyObject*** name; - PyObject*** first_kw_arg = argnames + num_pos_args; - while (PyDict_Next(kwds, &pos, &key, &value)) { - name = first_kw_arg; - while (*name && (**name != key)) name++; - if (*name) { - values[name-argnames] = value; - continue; - } - name = first_kw_arg; - #if PY_MAJOR_VERSION < 3 - if (likely(PyString_CheckExact(key)) || likely(PyString_Check(key))) { - while (*name) { - if ((CYTHON_COMPILING_IN_PYPY || PyString_GET_SIZE(**name) == PyString_GET_SIZE(key)) - && _PyString_Eq(**name, key)) { - values[name-argnames] = value; - break; - } - name++; - } - if (*name) continue; - else { - PyObject*** argname = argnames; - while (argname != first_kw_arg) { - if ((**argname == key) || ( - (CYTHON_COMPILING_IN_PYPY || PyString_GET_SIZE(**argname) == PyString_GET_SIZE(key)) - && _PyString_Eq(**argname, key))) { - goto arg_passed_twice; - } - argname++; - } - } - } else - #endif - if (likely(PyUnicode_Check(key))) { - while (*name) { - int cmp = (**name == key) ? 0 : - #if !CYTHON_COMPILING_IN_PYPY && PY_MAJOR_VERSION >= 3 - (PyUnicode_GET_SIZE(**name) != PyUnicode_GET_SIZE(key)) ? 1 : - #endif - PyUnicode_Compare(**name, key); - if (cmp < 0 && unlikely(PyErr_Occurred())) goto bad; - if (cmp == 0) { - values[name-argnames] = value; - break; - } - name++; - } - if (*name) continue; - else { - PyObject*** argname = argnames; - while (argname != first_kw_arg) { - int cmp = (**argname == key) ? 0 : - #if !CYTHON_COMPILING_IN_PYPY && PY_MAJOR_VERSION >= 3 - (PyUnicode_GET_SIZE(**argname) != PyUnicode_GET_SIZE(key)) ? 1 : - #endif - PyUnicode_Compare(**argname, key); - if (cmp < 0 && unlikely(PyErr_Occurred())) goto bad; - if (cmp == 0) goto arg_passed_twice; - argname++; - } - } - } else - goto invalid_keyword_type; - if (kwds2) { - if (unlikely(PyDict_SetItem(kwds2, key, value))) goto bad; - } else { - goto invalid_keyword; - } - } - return 0; -arg_passed_twice: - __Pyx_RaiseDoubleKeywordsError(function_name, key); - goto bad; -invalid_keyword_type: - PyErr_Format(PyExc_TypeError, - "%.200s() keywords must be strings", function_name); - goto bad; -invalid_keyword: - PyErr_Format(PyExc_TypeError, - #if PY_MAJOR_VERSION < 3 - "%.200s() got an unexpected keyword argument '%.200s'", - function_name, PyString_AsString(key)); - #else - "%s() got an unexpected keyword argument '%U'", - function_name, key); - #endif -bad: - return -1; -} - -/* ArgTypeTest */ -static int __Pyx__ArgTypeTest(PyObject *obj, PyTypeObject *type, const char *name, int exact) -{ - if (unlikely(!type)) { - PyErr_SetString(PyExc_SystemError, "Missing type object"); - return 0; - } - else if (exact) { - #if PY_MAJOR_VERSION == 2 - if ((type == &PyBaseString_Type) && likely(__Pyx_PyBaseString_CheckExact(obj))) return 1; - #endif - } - else { - if (likely(__Pyx_TypeCheck(obj, type))) return 1; - } - PyErr_Format(PyExc_TypeError, - "Argument '%.200s' has incorrect type (expected %.200s, got %.200s)", - name, type->tp_name, Py_TYPE(obj)->tp_name); - return 0; -} - -/* PyObjectGetAttrStr */ -#if CYTHON_USE_TYPE_SLOTS -static CYTHON_INLINE PyObject* __Pyx_PyObject_GetAttrStr(PyObject* obj, PyObject* attr_name) { - PyTypeObject* tp = Py_TYPE(obj); - if (likely(tp->tp_getattro)) - return tp->tp_getattro(obj, attr_name); -#if PY_MAJOR_VERSION < 3 - if (likely(tp->tp_getattr)) - return tp->tp_getattr(obj, PyString_AS_STRING(attr_name)); -#endif - return PyObject_GetAttr(obj, attr_name); -} -#endif - -/* GetBuiltinName */ -static PyObject *__Pyx_GetBuiltinName(PyObject *name) { - PyObject* result = __Pyx_PyObject_GetAttrStr(__pyx_b, name); - if (unlikely(!result)) { - PyErr_Format(PyExc_NameError, -#if PY_MAJOR_VERSION >= 3 - "name '%U' is not defined", name); -#else - "name '%.200s' is not defined", PyString_AS_STRING(name)); -#endif - } - return result; -} - -/* PyDictVersioning */ -#if CYTHON_USE_DICT_VERSIONS && CYTHON_USE_TYPE_SLOTS -static CYTHON_INLINE PY_UINT64_T __Pyx_get_tp_dict_version(PyObject *obj) { - PyObject *dict = Py_TYPE(obj)->tp_dict; - return likely(dict) ? __PYX_GET_DICT_VERSION(dict) : 0; -} -static CYTHON_INLINE PY_UINT64_T __Pyx_get_object_dict_version(PyObject *obj) { - PyObject **dictptr = NULL; - Py_ssize_t offset = Py_TYPE(obj)->tp_dictoffset; - if (offset) { -#if CYTHON_COMPILING_IN_CPYTHON - dictptr = (likely(offset > 0)) ? (PyObject **) ((char *)obj + offset) : _PyObject_GetDictPtr(obj); -#else - dictptr = _PyObject_GetDictPtr(obj); -#endif - } - return (dictptr && *dictptr) ? __PYX_GET_DICT_VERSION(*dictptr) : 0; -} -static CYTHON_INLINE int __Pyx_object_dict_version_matches(PyObject* obj, PY_UINT64_T tp_dict_version, PY_UINT64_T obj_dict_version) { - PyObject *dict = Py_TYPE(obj)->tp_dict; - if (unlikely(!dict) || unlikely(tp_dict_version != __PYX_GET_DICT_VERSION(dict))) - return 0; - return obj_dict_version == __Pyx_get_object_dict_version(obj); -} -#endif - -/* GetModuleGlobalName */ -#if CYTHON_USE_DICT_VERSIONS -static PyObject *__Pyx__GetModuleGlobalName(PyObject *name, PY_UINT64_T *dict_version, PyObject **dict_cached_value) -#else -static CYTHON_INLINE PyObject *__Pyx__GetModuleGlobalName(PyObject *name) -#endif -{ - PyObject *result; -#if !CYTHON_AVOID_BORROWED_REFS -#if CYTHON_COMPILING_IN_CPYTHON && PY_VERSION_HEX >= 0x030500A1 - result = _PyDict_GetItem_KnownHash(__pyx_d, name, ((PyASCIIObject *) name)->hash); - __PYX_UPDATE_DICT_CACHE(__pyx_d, result, *dict_cached_value, *dict_version) - if (likely(result)) { - return __Pyx_NewRef(result); - } else if (unlikely(PyErr_Occurred())) { - return NULL; - } -#else - result = PyDict_GetItem(__pyx_d, name); - __PYX_UPDATE_DICT_CACHE(__pyx_d, result, *dict_cached_value, *dict_version) - if (likely(result)) { - return __Pyx_NewRef(result); - } -#endif -#else - result = PyObject_GetItem(__pyx_d, name); - __PYX_UPDATE_DICT_CACHE(__pyx_d, result, *dict_cached_value, *dict_version) - if (likely(result)) { - return __Pyx_NewRef(result); - } - PyErr_Clear(); -#endif - return __Pyx_GetBuiltinName(name); -} - -/* PyFunctionFastCall */ -#if CYTHON_FAST_PYCALL -static PyObject* __Pyx_PyFunction_FastCallNoKw(PyCodeObject *co, PyObject **args, Py_ssize_t na, - PyObject *globals) { - PyFrameObject *f; - PyThreadState *tstate = __Pyx_PyThreadState_Current; - PyObject **fastlocals; - Py_ssize_t i; - PyObject *result; - assert(globals != NULL); - /* XXX Perhaps we should create a specialized - PyFrame_New() that doesn't take locals, but does - take builtins without sanity checking them. - */ - assert(tstate != NULL); - f = PyFrame_New(tstate, co, globals, NULL); - if (f == NULL) { - return NULL; - } - fastlocals = __Pyx_PyFrame_GetLocalsplus(f); - for (i = 0; i < na; i++) { - Py_INCREF(*args); - fastlocals[i] = *args++; - } - result = PyEval_EvalFrameEx(f,0); - ++tstate->recursion_depth; - Py_DECREF(f); - --tstate->recursion_depth; - return result; -} -#if 1 || PY_VERSION_HEX < 0x030600B1 -static PyObject *__Pyx_PyFunction_FastCallDict(PyObject *func, PyObject **args, Py_ssize_t nargs, PyObject *kwargs) { - PyCodeObject *co = (PyCodeObject *)PyFunction_GET_CODE(func); - PyObject *globals = PyFunction_GET_GLOBALS(func); - PyObject *argdefs = PyFunction_GET_DEFAULTS(func); - PyObject *closure; -#if PY_MAJOR_VERSION >= 3 - PyObject *kwdefs; -#endif - PyObject *kwtuple, **k; - PyObject **d; - Py_ssize_t nd; - Py_ssize_t nk; - PyObject *result; - assert(kwargs == NULL || PyDict_Check(kwargs)); - nk = kwargs ? PyDict_Size(kwargs) : 0; - if (Py_EnterRecursiveCall((char*)" while calling a Python object")) { - return NULL; - } - if ( -#if PY_MAJOR_VERSION >= 3 - co->co_kwonlyargcount == 0 && -#endif - likely(kwargs == NULL || nk == 0) && - co->co_flags == (CO_OPTIMIZED | CO_NEWLOCALS | CO_NOFREE)) { - if (argdefs == NULL && co->co_argcount == nargs) { - result = __Pyx_PyFunction_FastCallNoKw(co, args, nargs, globals); - goto done; - } - else if (nargs == 0 && argdefs != NULL - && co->co_argcount == Py_SIZE(argdefs)) { - /* function called with no arguments, but all parameters have - a default value: use default values as arguments .*/ - args = &PyTuple_GET_ITEM(argdefs, 0); - result =__Pyx_PyFunction_FastCallNoKw(co, args, Py_SIZE(argdefs), globals); - goto done; - } - } - if (kwargs != NULL) { - Py_ssize_t pos, i; - kwtuple = PyTuple_New(2 * nk); - if (kwtuple == NULL) { - result = NULL; - goto done; - } - k = &PyTuple_GET_ITEM(kwtuple, 0); - pos = i = 0; - while (PyDict_Next(kwargs, &pos, &k[i], &k[i+1])) { - Py_INCREF(k[i]); - Py_INCREF(k[i+1]); - i += 2; - } - nk = i / 2; - } - else { - kwtuple = NULL; - k = NULL; - } - closure = PyFunction_GET_CLOSURE(func); -#if PY_MAJOR_VERSION >= 3 - kwdefs = PyFunction_GET_KW_DEFAULTS(func); -#endif - if (argdefs != NULL) { - d = &PyTuple_GET_ITEM(argdefs, 0); - nd = Py_SIZE(argdefs); - } - else { - d = NULL; - nd = 0; - } -#if PY_MAJOR_VERSION >= 3 - result = PyEval_EvalCodeEx((PyObject*)co, globals, (PyObject *)NULL, - args, (int)nargs, - k, (int)nk, - d, (int)nd, kwdefs, closure); -#else - result = PyEval_EvalCodeEx(co, globals, (PyObject *)NULL, - args, (int)nargs, - k, (int)nk, - d, (int)nd, closure); -#endif - Py_XDECREF(kwtuple); -done: - Py_LeaveRecursiveCall(); - return result; -} -#endif -#endif - -/* PyCFunctionFastCall */ -#if CYTHON_FAST_PYCCALL -static CYTHON_INLINE PyObject * __Pyx_PyCFunction_FastCall(PyObject *func_obj, PyObject **args, Py_ssize_t nargs) { - PyCFunctionObject *func = (PyCFunctionObject*)func_obj; - PyCFunction meth = PyCFunction_GET_FUNCTION(func); - PyObject *self = PyCFunction_GET_SELF(func); - int flags = PyCFunction_GET_FLAGS(func); - assert(PyCFunction_Check(func)); - assert(METH_FASTCALL == (flags & ~(METH_CLASS | METH_STATIC | METH_COEXIST | METH_KEYWORDS | METH_STACKLESS))); - assert(nargs >= 0); - assert(nargs == 0 || args != NULL); - /* _PyCFunction_FastCallDict() must not be called with an exception set, - because it may clear it (directly or indirectly) and so the - caller loses its exception */ - assert(!PyErr_Occurred()); - if ((PY_VERSION_HEX < 0x030700A0) || unlikely(flags & METH_KEYWORDS)) { - return (*((__Pyx_PyCFunctionFastWithKeywords)(void*)meth)) (self, args, nargs, NULL); - } else { - return (*((__Pyx_PyCFunctionFast)(void*)meth)) (self, args, nargs); - } -} -#endif - -/* PyObjectCall */ -#if CYTHON_COMPILING_IN_CPYTHON -static CYTHON_INLINE PyObject* __Pyx_PyObject_Call(PyObject *func, PyObject *arg, PyObject *kw) { - PyObject *result; - ternaryfunc call = func->ob_type->tp_call; - if (unlikely(!call)) - return PyObject_Call(func, arg, kw); - if (unlikely(Py_EnterRecursiveCall((char*)" while calling a Python object"))) - return NULL; - result = (*call)(func, arg, kw); - Py_LeaveRecursiveCall(); - if (unlikely(!result) && unlikely(!PyErr_Occurred())) { - PyErr_SetString( - PyExc_SystemError, - "NULL result without error in PyObject_Call"); - } - return result; -} -#endif - -/* RaiseTooManyValuesToUnpack */ -static CYTHON_INLINE void __Pyx_RaiseTooManyValuesError(Py_ssize_t expected) { - PyErr_Format(PyExc_ValueError, - "too many values to unpack (expected %" CYTHON_FORMAT_SSIZE_T "d)", expected); -} - -/* RaiseNeedMoreValuesToUnpack */ -static CYTHON_INLINE void __Pyx_RaiseNeedMoreValuesError(Py_ssize_t index) { - PyErr_Format(PyExc_ValueError, - "need more than %" CYTHON_FORMAT_SSIZE_T "d value%.1s to unpack", - index, (index == 1) ? "" : "s"); -} - -/* IterFinish */ -static CYTHON_INLINE int __Pyx_IterFinish(void) { -#if CYTHON_FAST_THREAD_STATE - PyThreadState *tstate = __Pyx_PyThreadState_Current; - PyObject* exc_type = tstate->curexc_type; - if (unlikely(exc_type)) { - if (likely(__Pyx_PyErr_GivenExceptionMatches(exc_type, PyExc_StopIteration))) { - PyObject *exc_value, *exc_tb; - exc_value = tstate->curexc_value; - exc_tb = tstate->curexc_traceback; - tstate->curexc_type = 0; - tstate->curexc_value = 0; - tstate->curexc_traceback = 0; - Py_DECREF(exc_type); - Py_XDECREF(exc_value); - Py_XDECREF(exc_tb); - return 0; - } else { - return -1; - } - } - return 0; -#else - if (unlikely(PyErr_Occurred())) { - if (likely(PyErr_ExceptionMatches(PyExc_StopIteration))) { - PyErr_Clear(); - return 0; - } else { - return -1; - } - } - return 0; -#endif -} - -/* UnpackItemEndCheck */ -static int __Pyx_IternextUnpackEndCheck(PyObject *retval, Py_ssize_t expected) { - if (unlikely(retval)) { - Py_DECREF(retval); - __Pyx_RaiseTooManyValuesError(expected); - return -1; - } else { - return __Pyx_IterFinish(); - } - return 0; -} - -/* JoinPyUnicode */ -static PyObject* __Pyx_PyUnicode_Join(PyObject* value_tuple, Py_ssize_t value_count, Py_ssize_t result_ulength, - CYTHON_UNUSED Py_UCS4 max_char) { -#if CYTHON_USE_UNICODE_INTERNALS && CYTHON_ASSUME_SAFE_MACROS && !CYTHON_AVOID_BORROWED_REFS - PyObject *result_uval; - int result_ukind; - Py_ssize_t i, char_pos; - void *result_udata; -#if CYTHON_PEP393_ENABLED - result_uval = PyUnicode_New(result_ulength, max_char); - if (unlikely(!result_uval)) return NULL; - result_ukind = (max_char <= 255) ? PyUnicode_1BYTE_KIND : (max_char <= 65535) ? PyUnicode_2BYTE_KIND : PyUnicode_4BYTE_KIND; - result_udata = PyUnicode_DATA(result_uval); -#else - result_uval = PyUnicode_FromUnicode(NULL, result_ulength); - if (unlikely(!result_uval)) return NULL; - result_ukind = sizeof(Py_UNICODE); - result_udata = PyUnicode_AS_UNICODE(result_uval); -#endif - char_pos = 0; - for (i=0; i < value_count; i++) { - int ukind; - Py_ssize_t ulength; - void *udata; - PyObject *uval = PyTuple_GET_ITEM(value_tuple, i); - if (unlikely(__Pyx_PyUnicode_READY(uval))) - goto bad; - ulength = __Pyx_PyUnicode_GET_LENGTH(uval); - if (unlikely(!ulength)) - continue; - if (unlikely(char_pos + ulength < 0)) - goto overflow; - ukind = __Pyx_PyUnicode_KIND(uval); - udata = __Pyx_PyUnicode_DATA(uval); - if (!CYTHON_PEP393_ENABLED || ukind == result_ukind) { - memcpy((char *)result_udata + char_pos * result_ukind, udata, (size_t) (ulength * result_ukind)); - } else { - #if CYTHON_COMPILING_IN_CPYTHON && PY_VERSION_HEX >= 0x030300F0 || defined(_PyUnicode_FastCopyCharacters) - _PyUnicode_FastCopyCharacters(result_uval, char_pos, uval, 0, ulength); - #else - Py_ssize_t j; - for (j=0; j < ulength; j++) { - Py_UCS4 uchar = __Pyx_PyUnicode_READ(ukind, udata, j); - __Pyx_PyUnicode_WRITE(result_ukind, result_udata, char_pos+j, uchar); - } - #endif - } - char_pos += ulength; - } - return result_uval; -overflow: - PyErr_SetString(PyExc_OverflowError, "join() result is too long for a Python string"); -bad: - Py_DECREF(result_uval); - return NULL; -#else - result_ulength++; - value_count++; - return PyUnicode_Join(__pyx_empty_unicode, value_tuple); -#endif -} - -/* PyObjectFormat */ -#if CYTHON_USE_UNICODE_WRITER -static PyObject* __Pyx_PyObject_Format(PyObject* obj, PyObject* format_spec) { - int ret; - _PyUnicodeWriter writer; - if (likely(PyFloat_CheckExact(obj))) { -#if CYTHON_COMPILING_IN_CPYTHON && PY_VERSION_HEX < 0x03040000 - _PyUnicodeWriter_Init(&writer, 0); -#else - _PyUnicodeWriter_Init(&writer); -#endif - ret = _PyFloat_FormatAdvancedWriter( - &writer, - obj, - format_spec, 0, PyUnicode_GET_LENGTH(format_spec)); - } else if (likely(PyLong_CheckExact(obj))) { -#if CYTHON_COMPILING_IN_CPYTHON && PY_VERSION_HEX < 0x03040000 - _PyUnicodeWriter_Init(&writer, 0); -#else - _PyUnicodeWriter_Init(&writer); -#endif - ret = _PyLong_FormatAdvancedWriter( - &writer, - obj, - format_spec, 0, PyUnicode_GET_LENGTH(format_spec)); - } else { - return PyObject_Format(obj, format_spec); - } - if (unlikely(ret == -1)) { - _PyUnicodeWriter_Dealloc(&writer); - return NULL; - } - return _PyUnicodeWriter_Finish(&writer); -} -#endif - -/* None */ -static CYTHON_INLINE void __Pyx_RaiseUnboundLocalError(const char *varname) { - PyErr_Format(PyExc_UnboundLocalError, "local variable '%s' referenced before assignment", varname); -} - -/* BytesEquals */ -static CYTHON_INLINE int __Pyx_PyBytes_Equals(PyObject* s1, PyObject* s2, int equals) { -#if CYTHON_COMPILING_IN_PYPY - return PyObject_RichCompareBool(s1, s2, equals); -#else - if (s1 == s2) { - return (equals == Py_EQ); - } else if (PyBytes_CheckExact(s1) & PyBytes_CheckExact(s2)) { - const char *ps1, *ps2; - Py_ssize_t length = PyBytes_GET_SIZE(s1); - if (length != PyBytes_GET_SIZE(s2)) - return (equals == Py_NE); - ps1 = PyBytes_AS_STRING(s1); - ps2 = PyBytes_AS_STRING(s2); - if (ps1[0] != ps2[0]) { - return (equals == Py_NE); - } else if (length == 1) { - return (equals == Py_EQ); - } else { - int result; -#if CYTHON_USE_UNICODE_INTERNALS - Py_hash_t hash1, hash2; - hash1 = ((PyBytesObject*)s1)->ob_shash; - hash2 = ((PyBytesObject*)s2)->ob_shash; - if (hash1 != hash2 && hash1 != -1 && hash2 != -1) { - return (equals == Py_NE); - } -#endif - result = memcmp(ps1, ps2, (size_t)length); - return (equals == Py_EQ) ? (result == 0) : (result != 0); - } - } else if ((s1 == Py_None) & PyBytes_CheckExact(s2)) { - return (equals == Py_NE); - } else if ((s2 == Py_None) & PyBytes_CheckExact(s1)) { - return (equals == Py_NE); - } else { - int result; - PyObject* py_result = PyObject_RichCompare(s1, s2, equals); - if (!py_result) - return -1; - result = __Pyx_PyObject_IsTrue(py_result); - Py_DECREF(py_result); - return result; - } -#endif -} - -/* UnicodeEquals */ -static CYTHON_INLINE int __Pyx_PyUnicode_Equals(PyObject* s1, PyObject* s2, int equals) { -#if CYTHON_COMPILING_IN_PYPY - return PyObject_RichCompareBool(s1, s2, equals); -#else -#if PY_MAJOR_VERSION < 3 - PyObject* owned_ref = NULL; -#endif - int s1_is_unicode, s2_is_unicode; - if (s1 == s2) { - goto return_eq; - } - s1_is_unicode = PyUnicode_CheckExact(s1); - s2_is_unicode = PyUnicode_CheckExact(s2); -#if PY_MAJOR_VERSION < 3 - if ((s1_is_unicode & (!s2_is_unicode)) && PyString_CheckExact(s2)) { - owned_ref = PyUnicode_FromObject(s2); - if (unlikely(!owned_ref)) - return -1; - s2 = owned_ref; - s2_is_unicode = 1; - } else if ((s2_is_unicode & (!s1_is_unicode)) && PyString_CheckExact(s1)) { - owned_ref = PyUnicode_FromObject(s1); - if (unlikely(!owned_ref)) - return -1; - s1 = owned_ref; - s1_is_unicode = 1; - } else if (((!s2_is_unicode) & (!s1_is_unicode))) { - return __Pyx_PyBytes_Equals(s1, s2, equals); - } -#endif - if (s1_is_unicode & s2_is_unicode) { - Py_ssize_t length; - int kind; - void *data1, *data2; - if (unlikely(__Pyx_PyUnicode_READY(s1) < 0) || unlikely(__Pyx_PyUnicode_READY(s2) < 0)) - return -1; - length = __Pyx_PyUnicode_GET_LENGTH(s1); - if (length != __Pyx_PyUnicode_GET_LENGTH(s2)) { - goto return_ne; - } -#if CYTHON_USE_UNICODE_INTERNALS - { - Py_hash_t hash1, hash2; - #if CYTHON_PEP393_ENABLED - hash1 = ((PyASCIIObject*)s1)->hash; - hash2 = ((PyASCIIObject*)s2)->hash; - #else - hash1 = ((PyUnicodeObject*)s1)->hash; - hash2 = ((PyUnicodeObject*)s2)->hash; - #endif - if (hash1 != hash2 && hash1 != -1 && hash2 != -1) { - goto return_ne; - } - } -#endif - kind = __Pyx_PyUnicode_KIND(s1); - if (kind != __Pyx_PyUnicode_KIND(s2)) { - goto return_ne; - } - data1 = __Pyx_PyUnicode_DATA(s1); - data2 = __Pyx_PyUnicode_DATA(s2); - if (__Pyx_PyUnicode_READ(kind, data1, 0) != __Pyx_PyUnicode_READ(kind, data2, 0)) { - goto return_ne; - } else if (length == 1) { - goto return_eq; - } else { - int result = memcmp(data1, data2, (size_t)(length * kind)); - #if PY_MAJOR_VERSION < 3 - Py_XDECREF(owned_ref); - #endif - return (equals == Py_EQ) ? (result == 0) : (result != 0); - } - } else if ((s1 == Py_None) & s2_is_unicode) { - goto return_ne; - } else if ((s2 == Py_None) & s1_is_unicode) { - goto return_ne; - } else { - int result; - PyObject* py_result = PyObject_RichCompare(s1, s2, equals); - #if PY_MAJOR_VERSION < 3 - Py_XDECREF(owned_ref); - #endif - if (!py_result) - return -1; - result = __Pyx_PyObject_IsTrue(py_result); - Py_DECREF(py_result); - return result; - } -return_eq: - #if PY_MAJOR_VERSION < 3 - Py_XDECREF(owned_ref); - #endif - return (equals == Py_EQ); -return_ne: - #if PY_MAJOR_VERSION < 3 - Py_XDECREF(owned_ref); - #endif - return (equals == Py_NE); -#endif -} - -/* DictGetItem */ -#if PY_MAJOR_VERSION >= 3 && !CYTHON_COMPILING_IN_PYPY -static PyObject *__Pyx_PyDict_GetItem(PyObject *d, PyObject* key) { - PyObject *value; - value = PyDict_GetItemWithError(d, key); - if (unlikely(!value)) { - if (!PyErr_Occurred()) { - if (unlikely(PyTuple_Check(key))) { - PyObject* args = PyTuple_Pack(1, key); - if (likely(args)) { - PyErr_SetObject(PyExc_KeyError, args); - Py_DECREF(args); - } - } else { - PyErr_SetObject(PyExc_KeyError, key); - } - } - return NULL; - } - Py_INCREF(value); - return value; -} -#endif - -/* Import */ -static PyObject *__Pyx_Import(PyObject *name, PyObject *from_list, int level) { - PyObject *empty_list = 0; - PyObject *module = 0; - PyObject *global_dict = 0; - PyObject *empty_dict = 0; - PyObject *list; - #if PY_MAJOR_VERSION < 3 - PyObject *py_import; - py_import = __Pyx_PyObject_GetAttrStr(__pyx_b, __pyx_n_s_import); - if (!py_import) - goto bad; - #endif - if (from_list) - list = from_list; - else { - empty_list = PyList_New(0); - if (!empty_list) - goto bad; - list = empty_list; - } - global_dict = PyModule_GetDict(__pyx_m); - if (!global_dict) - goto bad; - empty_dict = PyDict_New(); - if (!empty_dict) - goto bad; - { - #if PY_MAJOR_VERSION >= 3 - if (level == -1) { - if (strchr(__Pyx_MODULE_NAME, '.')) { - module = PyImport_ImportModuleLevelObject( - name, global_dict, empty_dict, list, 1); - if (!module) { - if (!PyErr_ExceptionMatches(PyExc_ImportError)) - goto bad; - PyErr_Clear(); - } - } - level = 0; - } - #endif - if (!module) { - #if PY_MAJOR_VERSION < 3 - PyObject *py_level = PyInt_FromLong(level); - if (!py_level) - goto bad; - module = PyObject_CallFunctionObjArgs(py_import, - name, global_dict, empty_dict, list, py_level, (PyObject *)NULL); - Py_DECREF(py_level); - #else - module = PyImport_ImportModuleLevelObject( - name, global_dict, empty_dict, list, level); - #endif - } - } -bad: - #if PY_MAJOR_VERSION < 3 - Py_XDECREF(py_import); - #endif - Py_XDECREF(empty_list); - Py_XDECREF(empty_dict); - return module; -} - -/* ImportFrom */ -static PyObject* __Pyx_ImportFrom(PyObject* module, PyObject* name) { - PyObject* value = __Pyx_PyObject_GetAttrStr(module, name); - if (unlikely(!value) && PyErr_ExceptionMatches(PyExc_AttributeError)) { - PyErr_Format(PyExc_ImportError, - #if PY_MAJOR_VERSION < 3 - "cannot import name %.230s", PyString_AS_STRING(name)); - #else - "cannot import name %S", name); - #endif - } - return value; -} - -/* PyErrFetchRestore */ -#if CYTHON_FAST_THREAD_STATE -static CYTHON_INLINE void __Pyx_ErrRestoreInState(PyThreadState *tstate, PyObject *type, PyObject *value, PyObject *tb) { - PyObject *tmp_type, *tmp_value, *tmp_tb; - tmp_type = tstate->curexc_type; - tmp_value = tstate->curexc_value; - tmp_tb = tstate->curexc_traceback; - tstate->curexc_type = type; - tstate->curexc_value = value; - tstate->curexc_traceback = tb; - Py_XDECREF(tmp_type); - Py_XDECREF(tmp_value); - Py_XDECREF(tmp_tb); -} -static CYTHON_INLINE void __Pyx_ErrFetchInState(PyThreadState *tstate, PyObject **type, PyObject **value, PyObject **tb) { - *type = tstate->curexc_type; - *value = tstate->curexc_value; - *tb = tstate->curexc_traceback; - tstate->curexc_type = 0; - tstate->curexc_value = 0; - tstate->curexc_traceback = 0; -} -#endif - -/* CLineInTraceback */ -#ifndef CYTHON_CLINE_IN_TRACEBACK -static int __Pyx_CLineForTraceback(PyThreadState *tstate, int c_line) { - PyObject *use_cline; - PyObject *ptype, *pvalue, *ptraceback; -#if CYTHON_COMPILING_IN_CPYTHON - PyObject **cython_runtime_dict; -#endif - if (unlikely(!__pyx_cython_runtime)) { - return c_line; - } - __Pyx_ErrFetchInState(tstate, &ptype, &pvalue, &ptraceback); -#if CYTHON_COMPILING_IN_CPYTHON - cython_runtime_dict = _PyObject_GetDictPtr(__pyx_cython_runtime); - if (likely(cython_runtime_dict)) { - __PYX_PY_DICT_LOOKUP_IF_MODIFIED( - use_cline, *cython_runtime_dict, - __Pyx_PyDict_GetItemStr(*cython_runtime_dict, __pyx_n_s_cline_in_traceback)) - } else -#endif - { - PyObject *use_cline_obj = __Pyx_PyObject_GetAttrStr(__pyx_cython_runtime, __pyx_n_s_cline_in_traceback); - if (use_cline_obj) { - use_cline = PyObject_Not(use_cline_obj) ? Py_False : Py_True; - Py_DECREF(use_cline_obj); - } else { - PyErr_Clear(); - use_cline = NULL; - } - } - if (!use_cline) { - c_line = 0; - PyObject_SetAttr(__pyx_cython_runtime, __pyx_n_s_cline_in_traceback, Py_False); - } - else if (use_cline == Py_False || (use_cline != Py_True && PyObject_Not(use_cline) != 0)) { - c_line = 0; - } - __Pyx_ErrRestoreInState(tstate, ptype, pvalue, ptraceback); - return c_line; -} -#endif - -/* CodeObjectCache */ -static int __pyx_bisect_code_objects(__Pyx_CodeObjectCacheEntry* entries, int count, int code_line) { - int start = 0, mid = 0, end = count - 1; - if (end >= 0 && code_line > entries[end].code_line) { - return count; - } - while (start < end) { - mid = start + (end - start) / 2; - if (code_line < entries[mid].code_line) { - end = mid; - } else if (code_line > entries[mid].code_line) { - start = mid + 1; - } else { - return mid; - } - } - if (code_line <= entries[mid].code_line) { - return mid; - } else { - return mid + 1; - } -} -static PyCodeObject *__pyx_find_code_object(int code_line) { - PyCodeObject* code_object; - int pos; - if (unlikely(!code_line) || unlikely(!__pyx_code_cache.entries)) { - return NULL; - } - pos = __pyx_bisect_code_objects(__pyx_code_cache.entries, __pyx_code_cache.count, code_line); - if (unlikely(pos >= __pyx_code_cache.count) || unlikely(__pyx_code_cache.entries[pos].code_line != code_line)) { - return NULL; - } - code_object = __pyx_code_cache.entries[pos].code_object; - Py_INCREF(code_object); - return code_object; -} -static void __pyx_insert_code_object(int code_line, PyCodeObject* code_object) { - int pos, i; - __Pyx_CodeObjectCacheEntry* entries = __pyx_code_cache.entries; - if (unlikely(!code_line)) { - return; - } - if (unlikely(!entries)) { - entries = (__Pyx_CodeObjectCacheEntry*)PyMem_Malloc(64*sizeof(__Pyx_CodeObjectCacheEntry)); - if (likely(entries)) { - __pyx_code_cache.entries = entries; - __pyx_code_cache.max_count = 64; - __pyx_code_cache.count = 1; - entries[0].code_line = code_line; - entries[0].code_object = code_object; - Py_INCREF(code_object); - } - return; - } - pos = __pyx_bisect_code_objects(__pyx_code_cache.entries, __pyx_code_cache.count, code_line); - if ((pos < __pyx_code_cache.count) && unlikely(__pyx_code_cache.entries[pos].code_line == code_line)) { - PyCodeObject* tmp = entries[pos].code_object; - entries[pos].code_object = code_object; - Py_DECREF(tmp); - return; - } - if (__pyx_code_cache.count == __pyx_code_cache.max_count) { - int new_max = __pyx_code_cache.max_count + 64; - entries = (__Pyx_CodeObjectCacheEntry*)PyMem_Realloc( - __pyx_code_cache.entries, (size_t)new_max*sizeof(__Pyx_CodeObjectCacheEntry)); - if (unlikely(!entries)) { - return; - } - __pyx_code_cache.entries = entries; - __pyx_code_cache.max_count = new_max; - } - for (i=__pyx_code_cache.count; i>pos; i--) { - entries[i] = entries[i-1]; - } - entries[pos].code_line = code_line; - entries[pos].code_object = code_object; - __pyx_code_cache.count++; - Py_INCREF(code_object); -} - -/* AddTraceback */ -#include "compile.h" -#include "frameobject.h" -#include "traceback.h" -static PyCodeObject* __Pyx_CreateCodeObjectForTraceback( - const char *funcname, int c_line, - int py_line, const char *filename) { - PyCodeObject *py_code = 0; - PyObject *py_srcfile = 0; - PyObject *py_funcname = 0; - #if PY_MAJOR_VERSION < 3 - py_srcfile = PyString_FromString(filename); - #else - py_srcfile = PyUnicode_FromString(filename); - #endif - if (!py_srcfile) goto bad; - if (c_line) { - #if PY_MAJOR_VERSION < 3 - py_funcname = PyString_FromFormat( "%s (%s:%d)", funcname, __pyx_cfilenm, c_line); - #else - py_funcname = PyUnicode_FromFormat( "%s (%s:%d)", funcname, __pyx_cfilenm, c_line); - #endif - } - else { - #if PY_MAJOR_VERSION < 3 - py_funcname = PyString_FromString(funcname); - #else - py_funcname = PyUnicode_FromString(funcname); - #endif - } - if (!py_funcname) goto bad; - py_code = __Pyx_PyCode_New( - 0, - 0, - 0, - 0, - 0, - __pyx_empty_bytes, /*PyObject *code,*/ - __pyx_empty_tuple, /*PyObject *consts,*/ - __pyx_empty_tuple, /*PyObject *names,*/ - __pyx_empty_tuple, /*PyObject *varnames,*/ - __pyx_empty_tuple, /*PyObject *freevars,*/ - __pyx_empty_tuple, /*PyObject *cellvars,*/ - py_srcfile, /*PyObject *filename,*/ - py_funcname, /*PyObject *name,*/ - py_line, - __pyx_empty_bytes /*PyObject *lnotab*/ - ); - Py_DECREF(py_srcfile); - Py_DECREF(py_funcname); - return py_code; -bad: - Py_XDECREF(py_srcfile); - Py_XDECREF(py_funcname); - return NULL; -} -static void __Pyx_AddTraceback(const char *funcname, int c_line, - int py_line, const char *filename) { - PyCodeObject *py_code = 0; - PyFrameObject *py_frame = 0; - PyThreadState *tstate = __Pyx_PyThreadState_Current; - if (c_line) { - c_line = __Pyx_CLineForTraceback(tstate, c_line); - } - py_code = __pyx_find_code_object(c_line ? -c_line : py_line); - if (!py_code) { - py_code = __Pyx_CreateCodeObjectForTraceback( - funcname, c_line, py_line, filename); - if (!py_code) goto bad; - __pyx_insert_code_object(c_line ? -c_line : py_line, py_code); - } - py_frame = PyFrame_New( - tstate, /*PyThreadState *tstate,*/ - py_code, /*PyCodeObject *code,*/ - __pyx_d, /*PyObject *globals,*/ - 0 /*PyObject *locals*/ - ); - if (!py_frame) goto bad; - __Pyx_PyFrame_SetLineNumber(py_frame, py_line); - PyTraceBack_Here(py_frame); -bad: - Py_XDECREF(py_code); - Py_XDECREF(py_frame); -} - -/* CIntToPy */ -static CYTHON_INLINE PyObject* __Pyx_PyInt_From_uint16_t(uint16_t value) { - const uint16_t neg_one = (uint16_t) ((uint16_t) 0 - (uint16_t) 1), const_zero = (uint16_t) 0; - const int is_unsigned = neg_one > const_zero; - if (is_unsigned) { - if (sizeof(uint16_t) < sizeof(long)) { - return PyInt_FromLong((long) value); - } else if (sizeof(uint16_t) <= sizeof(unsigned long)) { - return PyLong_FromUnsignedLong((unsigned long) value); -#ifdef HAVE_LONG_LONG - } else if (sizeof(uint16_t) <= sizeof(unsigned PY_LONG_LONG)) { - return PyLong_FromUnsignedLongLong((unsigned PY_LONG_LONG) value); -#endif - } - } else { - if (sizeof(uint16_t) <= sizeof(long)) { - return PyInt_FromLong((long) value); -#ifdef HAVE_LONG_LONG - } else if (sizeof(uint16_t) <= sizeof(PY_LONG_LONG)) { - return PyLong_FromLongLong((PY_LONG_LONG) value); -#endif - } - } - { - int one = 1; int little = (int)*(unsigned char *)&one; - unsigned char *bytes = (unsigned char *)&value; - return _PyLong_FromByteArray(bytes, sizeof(uint16_t), - little, !is_unsigned); - } -} - -/* CIntToPy */ -static CYTHON_INLINE PyObject* __Pyx_PyInt_From_uint8_t(uint8_t value) { - const uint8_t neg_one = (uint8_t) ((uint8_t) 0 - (uint8_t) 1), const_zero = (uint8_t) 0; - const int is_unsigned = neg_one > const_zero; - if (is_unsigned) { - if (sizeof(uint8_t) < sizeof(long)) { - return PyInt_FromLong((long) value); - } else if (sizeof(uint8_t) <= sizeof(unsigned long)) { - return PyLong_FromUnsignedLong((unsigned long) value); -#ifdef HAVE_LONG_LONG - } else if (sizeof(uint8_t) <= sizeof(unsigned PY_LONG_LONG)) { - return PyLong_FromUnsignedLongLong((unsigned PY_LONG_LONG) value); -#endif - } - } else { - if (sizeof(uint8_t) <= sizeof(long)) { - return PyInt_FromLong((long) value); -#ifdef HAVE_LONG_LONG - } else if (sizeof(uint8_t) <= sizeof(PY_LONG_LONG)) { - return PyLong_FromLongLong((PY_LONG_LONG) value); -#endif - } - } - { - int one = 1; int little = (int)*(unsigned char *)&one; - unsigned char *bytes = (unsigned char *)&value; - return _PyLong_FromByteArray(bytes, sizeof(uint8_t), - little, !is_unsigned); - } -} - -/* CIntToPy */ -static CYTHON_INLINE PyObject* __Pyx_PyInt_From_long(long value) { - const long neg_one = (long) ((long) 0 - (long) 1), const_zero = (long) 0; - const int is_unsigned = neg_one > const_zero; - if (is_unsigned) { - if (sizeof(long) < sizeof(long)) { - return PyInt_FromLong((long) value); - } else if (sizeof(long) <= sizeof(unsigned long)) { - return PyLong_FromUnsignedLong((unsigned long) value); -#ifdef HAVE_LONG_LONG - } else if (sizeof(long) <= sizeof(unsigned PY_LONG_LONG)) { - return PyLong_FromUnsignedLongLong((unsigned PY_LONG_LONG) value); -#endif - } - } else { - if (sizeof(long) <= sizeof(long)) { - return PyInt_FromLong((long) value); -#ifdef HAVE_LONG_LONG - } else if (sizeof(long) <= sizeof(PY_LONG_LONG)) { - return PyLong_FromLongLong((PY_LONG_LONG) value); -#endif - } - } - { - int one = 1; int little = (int)*(unsigned char *)&one; - unsigned char *bytes = (unsigned char *)&value; - return _PyLong_FromByteArray(bytes, sizeof(long), - little, !is_unsigned); - } -} - -/* CIntFromPyVerify */ -#define __PYX_VERIFY_RETURN_INT(target_type, func_type, func_value)\ - __PYX__VERIFY_RETURN_INT(target_type, func_type, func_value, 0) -#define __PYX_VERIFY_RETURN_INT_EXC(target_type, func_type, func_value)\ - __PYX__VERIFY_RETURN_INT(target_type, func_type, func_value, 1) -#define __PYX__VERIFY_RETURN_INT(target_type, func_type, func_value, exc)\ - {\ - func_type value = func_value;\ - if (sizeof(target_type) < sizeof(func_type)) {\ - if (unlikely(value != (func_type) (target_type) value)) {\ - func_type zero = 0;\ - if (exc && unlikely(value == (func_type)-1 && PyErr_Occurred()))\ - return (target_type) -1;\ - if (is_unsigned && unlikely(value < zero))\ - goto raise_neg_overflow;\ - else\ - goto raise_overflow;\ - }\ - }\ - return (target_type) value;\ - } - -/* CIntFromPy */ -static CYTHON_INLINE long __Pyx_PyInt_As_long(PyObject *x) { - const long neg_one = (long) ((long) 0 - (long) 1), const_zero = (long) 0; - const int is_unsigned = neg_one > const_zero; -#if PY_MAJOR_VERSION < 3 - if (likely(PyInt_Check(x))) { - if (sizeof(long) < sizeof(long)) { - __PYX_VERIFY_RETURN_INT(long, long, PyInt_AS_LONG(x)) - } else { - long val = PyInt_AS_LONG(x); - if (is_unsigned && unlikely(val < 0)) { - goto raise_neg_overflow; - } - return (long) val; - } - } else -#endif - if (likely(PyLong_Check(x))) { - if (is_unsigned) { -#if CYTHON_USE_PYLONG_INTERNALS - const digit* digits = ((PyLongObject*)x)->ob_digit; - switch (Py_SIZE(x)) { - case 0: return (long) 0; - case 1: __PYX_VERIFY_RETURN_INT(long, digit, digits[0]) - case 2: - if (8 * sizeof(long) > 1 * PyLong_SHIFT) { - if (8 * sizeof(unsigned long) > 2 * PyLong_SHIFT) { - __PYX_VERIFY_RETURN_INT(long, unsigned long, (((((unsigned long)digits[1]) << PyLong_SHIFT) | (unsigned long)digits[0]))) - } else if (8 * sizeof(long) >= 2 * PyLong_SHIFT) { - return (long) (((((long)digits[1]) << PyLong_SHIFT) | (long)digits[0])); - } - } - break; - case 3: - if (8 * sizeof(long) > 2 * PyLong_SHIFT) { - if (8 * sizeof(unsigned long) > 3 * PyLong_SHIFT) { - __PYX_VERIFY_RETURN_INT(long, unsigned long, (((((((unsigned long)digits[2]) << PyLong_SHIFT) | (unsigned long)digits[1]) << PyLong_SHIFT) | (unsigned long)digits[0]))) - } else if (8 * sizeof(long) >= 3 * PyLong_SHIFT) { - return (long) (((((((long)digits[2]) << PyLong_SHIFT) | (long)digits[1]) << PyLong_SHIFT) | (long)digits[0])); - } - } - break; - case 4: - if (8 * sizeof(long) > 3 * PyLong_SHIFT) { - if (8 * sizeof(unsigned long) > 4 * PyLong_SHIFT) { - __PYX_VERIFY_RETURN_INT(long, unsigned long, (((((((((unsigned long)digits[3]) << PyLong_SHIFT) | (unsigned long)digits[2]) << PyLong_SHIFT) | (unsigned long)digits[1]) << PyLong_SHIFT) | (unsigned long)digits[0]))) - } else if (8 * sizeof(long) >= 4 * PyLong_SHIFT) { - return (long) (((((((((long)digits[3]) << PyLong_SHIFT) | (long)digits[2]) << PyLong_SHIFT) | (long)digits[1]) << PyLong_SHIFT) | (long)digits[0])); - } - } - break; - } -#endif -#if CYTHON_COMPILING_IN_CPYTHON - if (unlikely(Py_SIZE(x) < 0)) { - goto raise_neg_overflow; - } -#else - { - int result = PyObject_RichCompareBool(x, Py_False, Py_LT); - if (unlikely(result < 0)) - return (long) -1; - if (unlikely(result == 1)) - goto raise_neg_overflow; - } -#endif - if (sizeof(long) <= sizeof(unsigned long)) { - __PYX_VERIFY_RETURN_INT_EXC(long, unsigned long, PyLong_AsUnsignedLong(x)) -#ifdef HAVE_LONG_LONG - } else if (sizeof(long) <= sizeof(unsigned PY_LONG_LONG)) { - __PYX_VERIFY_RETURN_INT_EXC(long, unsigned PY_LONG_LONG, PyLong_AsUnsignedLongLong(x)) -#endif - } - } else { -#if CYTHON_USE_PYLONG_INTERNALS - const digit* digits = ((PyLongObject*)x)->ob_digit; - switch (Py_SIZE(x)) { - case 0: return (long) 0; - case -1: __PYX_VERIFY_RETURN_INT(long, sdigit, (sdigit) (-(sdigit)digits[0])) - case 1: __PYX_VERIFY_RETURN_INT(long, digit, +digits[0]) - case -2: - if (8 * sizeof(long) - 1 > 1 * PyLong_SHIFT) { - if (8 * sizeof(unsigned long) > 2 * PyLong_SHIFT) { - __PYX_VERIFY_RETURN_INT(long, long, -(long) (((((unsigned long)digits[1]) << PyLong_SHIFT) | (unsigned long)digits[0]))) - } else if (8 * sizeof(long) - 1 > 2 * PyLong_SHIFT) { - return (long) (((long)-1)*(((((long)digits[1]) << PyLong_SHIFT) | (long)digits[0]))); - } - } - break; - case 2: - if (8 * sizeof(long) > 1 * PyLong_SHIFT) { - if (8 * sizeof(unsigned long) > 2 * PyLong_SHIFT) { - __PYX_VERIFY_RETURN_INT(long, unsigned long, (((((unsigned long)digits[1]) << PyLong_SHIFT) | (unsigned long)digits[0]))) - } else if (8 * sizeof(long) - 1 > 2 * PyLong_SHIFT) { - return (long) ((((((long)digits[1]) << PyLong_SHIFT) | (long)digits[0]))); - } - } - break; - case -3: - if (8 * sizeof(long) - 1 > 2 * PyLong_SHIFT) { - if (8 * sizeof(unsigned long) > 3 * PyLong_SHIFT) { - __PYX_VERIFY_RETURN_INT(long, long, -(long) (((((((unsigned long)digits[2]) << PyLong_SHIFT) | (unsigned long)digits[1]) << PyLong_SHIFT) | (unsigned long)digits[0]))) - } else if (8 * sizeof(long) - 1 > 3 * PyLong_SHIFT) { - return (long) (((long)-1)*(((((((long)digits[2]) << PyLong_SHIFT) | (long)digits[1]) << PyLong_SHIFT) | (long)digits[0]))); - } - } - break; - case 3: - if (8 * sizeof(long) > 2 * PyLong_SHIFT) { - if (8 * sizeof(unsigned long) > 3 * PyLong_SHIFT) { - __PYX_VERIFY_RETURN_INT(long, unsigned long, (((((((unsigned long)digits[2]) << PyLong_SHIFT) | (unsigned long)digits[1]) << PyLong_SHIFT) | (unsigned long)digits[0]))) - } else if (8 * sizeof(long) - 1 > 3 * PyLong_SHIFT) { - return (long) ((((((((long)digits[2]) << PyLong_SHIFT) | (long)digits[1]) << PyLong_SHIFT) | (long)digits[0]))); - } - } - break; - case -4: - if (8 * sizeof(long) - 1 > 3 * PyLong_SHIFT) { - if (8 * sizeof(unsigned long) > 4 * PyLong_SHIFT) { - __PYX_VERIFY_RETURN_INT(long, long, -(long) (((((((((unsigned long)digits[3]) << PyLong_SHIFT) | (unsigned long)digits[2]) << PyLong_SHIFT) | (unsigned long)digits[1]) << PyLong_SHIFT) | (unsigned long)digits[0]))) - } else if (8 * sizeof(long) - 1 > 4 * PyLong_SHIFT) { - return (long) (((long)-1)*(((((((((long)digits[3]) << PyLong_SHIFT) | (long)digits[2]) << PyLong_SHIFT) | (long)digits[1]) << PyLong_SHIFT) | (long)digits[0]))); - } - } - break; - case 4: - if (8 * sizeof(long) > 3 * PyLong_SHIFT) { - if (8 * sizeof(unsigned long) > 4 * PyLong_SHIFT) { - __PYX_VERIFY_RETURN_INT(long, unsigned long, (((((((((unsigned long)digits[3]) << PyLong_SHIFT) | (unsigned long)digits[2]) << PyLong_SHIFT) | (unsigned long)digits[1]) << PyLong_SHIFT) | (unsigned long)digits[0]))) - } else if (8 * sizeof(long) - 1 > 4 * PyLong_SHIFT) { - return (long) ((((((((((long)digits[3]) << PyLong_SHIFT) | (long)digits[2]) << PyLong_SHIFT) | (long)digits[1]) << PyLong_SHIFT) | (long)digits[0]))); - } - } - break; - } -#endif - if (sizeof(long) <= sizeof(long)) { - __PYX_VERIFY_RETURN_INT_EXC(long, long, PyLong_AsLong(x)) -#ifdef HAVE_LONG_LONG - } else if (sizeof(long) <= sizeof(PY_LONG_LONG)) { - __PYX_VERIFY_RETURN_INT_EXC(long, PY_LONG_LONG, PyLong_AsLongLong(x)) -#endif - } - } - { -#if CYTHON_COMPILING_IN_PYPY && !defined(_PyLong_AsByteArray) - PyErr_SetString(PyExc_RuntimeError, - "_PyLong_AsByteArray() not available in PyPy, cannot convert large numbers"); -#else - long val; - PyObject *v = __Pyx_PyNumber_IntOrLong(x); - #if PY_MAJOR_VERSION < 3 - if (likely(v) && !PyLong_Check(v)) { - PyObject *tmp = v; - v = PyNumber_Long(tmp); - Py_DECREF(tmp); - } - #endif - if (likely(v)) { - int one = 1; int is_little = (int)*(unsigned char *)&one; - unsigned char *bytes = (unsigned char *)&val; - int ret = _PyLong_AsByteArray((PyLongObject *)v, - bytes, sizeof(val), - is_little, !is_unsigned); - Py_DECREF(v); - if (likely(!ret)) - return val; - } -#endif - return (long) -1; - } - } else { - long val; - PyObject *tmp = __Pyx_PyNumber_IntOrLong(x); - if (!tmp) return (long) -1; - val = __Pyx_PyInt_As_long(tmp); - Py_DECREF(tmp); - return val; - } -raise_overflow: - PyErr_SetString(PyExc_OverflowError, - "value too large to convert to long"); - return (long) -1; -raise_neg_overflow: - PyErr_SetString(PyExc_OverflowError, - "can't convert negative value to long"); - return (long) -1; -} - -/* CIntFromPy */ -static CYTHON_INLINE int __Pyx_PyInt_As_int(PyObject *x) { - const int neg_one = (int) ((int) 0 - (int) 1), const_zero = (int) 0; - const int is_unsigned = neg_one > const_zero; -#if PY_MAJOR_VERSION < 3 - if (likely(PyInt_Check(x))) { - if (sizeof(int) < sizeof(long)) { - __PYX_VERIFY_RETURN_INT(int, long, PyInt_AS_LONG(x)) - } else { - long val = PyInt_AS_LONG(x); - if (is_unsigned && unlikely(val < 0)) { - goto raise_neg_overflow; - } - return (int) val; - } - } else -#endif - if (likely(PyLong_Check(x))) { - if (is_unsigned) { -#if CYTHON_USE_PYLONG_INTERNALS - const digit* digits = ((PyLongObject*)x)->ob_digit; - switch (Py_SIZE(x)) { - case 0: return (int) 0; - case 1: __PYX_VERIFY_RETURN_INT(int, digit, digits[0]) - case 2: - if (8 * sizeof(int) > 1 * PyLong_SHIFT) { - if (8 * sizeof(unsigned long) > 2 * PyLong_SHIFT) { - __PYX_VERIFY_RETURN_INT(int, unsigned long, (((((unsigned long)digits[1]) << PyLong_SHIFT) | (unsigned long)digits[0]))) - } else if (8 * sizeof(int) >= 2 * PyLong_SHIFT) { - return (int) (((((int)digits[1]) << PyLong_SHIFT) | (int)digits[0])); - } - } - break; - case 3: - if (8 * sizeof(int) > 2 * PyLong_SHIFT) { - if (8 * sizeof(unsigned long) > 3 * PyLong_SHIFT) { - __PYX_VERIFY_RETURN_INT(int, unsigned long, (((((((unsigned long)digits[2]) << PyLong_SHIFT) | (unsigned long)digits[1]) << PyLong_SHIFT) | (unsigned long)digits[0]))) - } else if (8 * sizeof(int) >= 3 * PyLong_SHIFT) { - return (int) (((((((int)digits[2]) << PyLong_SHIFT) | (int)digits[1]) << PyLong_SHIFT) | (int)digits[0])); - } - } - break; - case 4: - if (8 * sizeof(int) > 3 * PyLong_SHIFT) { - if (8 * sizeof(unsigned long) > 4 * PyLong_SHIFT) { - __PYX_VERIFY_RETURN_INT(int, unsigned long, (((((((((unsigned long)digits[3]) << PyLong_SHIFT) | (unsigned long)digits[2]) << PyLong_SHIFT) | (unsigned long)digits[1]) << PyLong_SHIFT) | (unsigned long)digits[0]))) - } else if (8 * sizeof(int) >= 4 * PyLong_SHIFT) { - return (int) (((((((((int)digits[3]) << PyLong_SHIFT) | (int)digits[2]) << PyLong_SHIFT) | (int)digits[1]) << PyLong_SHIFT) | (int)digits[0])); - } - } - break; - } -#endif -#if CYTHON_COMPILING_IN_CPYTHON - if (unlikely(Py_SIZE(x) < 0)) { - goto raise_neg_overflow; - } -#else - { - int result = PyObject_RichCompareBool(x, Py_False, Py_LT); - if (unlikely(result < 0)) - return (int) -1; - if (unlikely(result == 1)) - goto raise_neg_overflow; - } -#endif - if (sizeof(int) <= sizeof(unsigned long)) { - __PYX_VERIFY_RETURN_INT_EXC(int, unsigned long, PyLong_AsUnsignedLong(x)) -#ifdef HAVE_LONG_LONG - } else if (sizeof(int) <= sizeof(unsigned PY_LONG_LONG)) { - __PYX_VERIFY_RETURN_INT_EXC(int, unsigned PY_LONG_LONG, PyLong_AsUnsignedLongLong(x)) -#endif - } - } else { -#if CYTHON_USE_PYLONG_INTERNALS - const digit* digits = ((PyLongObject*)x)->ob_digit; - switch (Py_SIZE(x)) { - case 0: return (int) 0; - case -1: __PYX_VERIFY_RETURN_INT(int, sdigit, (sdigit) (-(sdigit)digits[0])) - case 1: __PYX_VERIFY_RETURN_INT(int, digit, +digits[0]) - case -2: - if (8 * sizeof(int) - 1 > 1 * PyLong_SHIFT) { - if (8 * sizeof(unsigned long) > 2 * PyLong_SHIFT) { - __PYX_VERIFY_RETURN_INT(int, long, -(long) (((((unsigned long)digits[1]) << PyLong_SHIFT) | (unsigned long)digits[0]))) - } else if (8 * sizeof(int) - 1 > 2 * PyLong_SHIFT) { - return (int) (((int)-1)*(((((int)digits[1]) << PyLong_SHIFT) | (int)digits[0]))); - } - } - break; - case 2: - if (8 * sizeof(int) > 1 * PyLong_SHIFT) { - if (8 * sizeof(unsigned long) > 2 * PyLong_SHIFT) { - __PYX_VERIFY_RETURN_INT(int, unsigned long, (((((unsigned long)digits[1]) << PyLong_SHIFT) | (unsigned long)digits[0]))) - } else if (8 * sizeof(int) - 1 > 2 * PyLong_SHIFT) { - return (int) ((((((int)digits[1]) << PyLong_SHIFT) | (int)digits[0]))); - } - } - break; - case -3: - if (8 * sizeof(int) - 1 > 2 * PyLong_SHIFT) { - if (8 * sizeof(unsigned long) > 3 * PyLong_SHIFT) { - __PYX_VERIFY_RETURN_INT(int, long, -(long) (((((((unsigned long)digits[2]) << PyLong_SHIFT) | (unsigned long)digits[1]) << PyLong_SHIFT) | (unsigned long)digits[0]))) - } else if (8 * sizeof(int) - 1 > 3 * PyLong_SHIFT) { - return (int) (((int)-1)*(((((((int)digits[2]) << PyLong_SHIFT) | (int)digits[1]) << PyLong_SHIFT) | (int)digits[0]))); - } - } - break; - case 3: - if (8 * sizeof(int) > 2 * PyLong_SHIFT) { - if (8 * sizeof(unsigned long) > 3 * PyLong_SHIFT) { - __PYX_VERIFY_RETURN_INT(int, unsigned long, (((((((unsigned long)digits[2]) << PyLong_SHIFT) | (unsigned long)digits[1]) << PyLong_SHIFT) | (unsigned long)digits[0]))) - } else if (8 * sizeof(int) - 1 > 3 * PyLong_SHIFT) { - return (int) ((((((((int)digits[2]) << PyLong_SHIFT) | (int)digits[1]) << PyLong_SHIFT) | (int)digits[0]))); - } - } - break; - case -4: - if (8 * sizeof(int) - 1 > 3 * PyLong_SHIFT) { - if (8 * sizeof(unsigned long) > 4 * PyLong_SHIFT) { - __PYX_VERIFY_RETURN_INT(int, long, -(long) (((((((((unsigned long)digits[3]) << PyLong_SHIFT) | (unsigned long)digits[2]) << PyLong_SHIFT) | (unsigned long)digits[1]) << PyLong_SHIFT) | (unsigned long)digits[0]))) - } else if (8 * sizeof(int) - 1 > 4 * PyLong_SHIFT) { - return (int) (((int)-1)*(((((((((int)digits[3]) << PyLong_SHIFT) | (int)digits[2]) << PyLong_SHIFT) | (int)digits[1]) << PyLong_SHIFT) | (int)digits[0]))); - } - } - break; - case 4: - if (8 * sizeof(int) > 3 * PyLong_SHIFT) { - if (8 * sizeof(unsigned long) > 4 * PyLong_SHIFT) { - __PYX_VERIFY_RETURN_INT(int, unsigned long, (((((((((unsigned long)digits[3]) << PyLong_SHIFT) | (unsigned long)digits[2]) << PyLong_SHIFT) | (unsigned long)digits[1]) << PyLong_SHIFT) | (unsigned long)digits[0]))) - } else if (8 * sizeof(int) - 1 > 4 * PyLong_SHIFT) { - return (int) ((((((((((int)digits[3]) << PyLong_SHIFT) | (int)digits[2]) << PyLong_SHIFT) | (int)digits[1]) << PyLong_SHIFT) | (int)digits[0]))); - } - } - break; - } -#endif - if (sizeof(int) <= sizeof(long)) { - __PYX_VERIFY_RETURN_INT_EXC(int, long, PyLong_AsLong(x)) -#ifdef HAVE_LONG_LONG - } else if (sizeof(int) <= sizeof(PY_LONG_LONG)) { - __PYX_VERIFY_RETURN_INT_EXC(int, PY_LONG_LONG, PyLong_AsLongLong(x)) -#endif - } - } - { -#if CYTHON_COMPILING_IN_PYPY && !defined(_PyLong_AsByteArray) - PyErr_SetString(PyExc_RuntimeError, - "_PyLong_AsByteArray() not available in PyPy, cannot convert large numbers"); -#else - int val; - PyObject *v = __Pyx_PyNumber_IntOrLong(x); - #if PY_MAJOR_VERSION < 3 - if (likely(v) && !PyLong_Check(v)) { - PyObject *tmp = v; - v = PyNumber_Long(tmp); - Py_DECREF(tmp); - } - #endif - if (likely(v)) { - int one = 1; int is_little = (int)*(unsigned char *)&one; - unsigned char *bytes = (unsigned char *)&val; - int ret = _PyLong_AsByteArray((PyLongObject *)v, - bytes, sizeof(val), - is_little, !is_unsigned); - Py_DECREF(v); - if (likely(!ret)) - return val; - } -#endif - return (int) -1; - } - } else { - int val; - PyObject *tmp = __Pyx_PyNumber_IntOrLong(x); - if (!tmp) return (int) -1; - val = __Pyx_PyInt_As_int(tmp); - Py_DECREF(tmp); - return val; - } -raise_overflow: - PyErr_SetString(PyExc_OverflowError, - "value too large to convert to int"); - return (int) -1; -raise_neg_overflow: - PyErr_SetString(PyExc_OverflowError, - "can't convert negative value to int"); - return (int) -1; -} - -/* FastTypeChecks */ -#if CYTHON_COMPILING_IN_CPYTHON -static int __Pyx_InBases(PyTypeObject *a, PyTypeObject *b) { - while (a) { - a = a->tp_base; - if (a == b) - return 1; - } - return b == &PyBaseObject_Type; -} -static CYTHON_INLINE int __Pyx_IsSubtype(PyTypeObject *a, PyTypeObject *b) { - PyObject *mro; - if (a == b) return 1; - mro = a->tp_mro; - if (likely(mro)) { - Py_ssize_t i, n; - n = PyTuple_GET_SIZE(mro); - for (i = 0; i < n; i++) { - if (PyTuple_GET_ITEM(mro, i) == (PyObject *)b) - return 1; - } - return 0; - } - return __Pyx_InBases(a, b); -} -#if PY_MAJOR_VERSION == 2 -static int __Pyx_inner_PyErr_GivenExceptionMatches2(PyObject *err, PyObject* exc_type1, PyObject* exc_type2) { - PyObject *exception, *value, *tb; - int res; - __Pyx_PyThreadState_declare - __Pyx_PyThreadState_assign - __Pyx_ErrFetch(&exception, &value, &tb); - res = exc_type1 ? PyObject_IsSubclass(err, exc_type1) : 0; - if (unlikely(res == -1)) { - PyErr_WriteUnraisable(err); - res = 0; - } - if (!res) { - res = PyObject_IsSubclass(err, exc_type2); - if (unlikely(res == -1)) { - PyErr_WriteUnraisable(err); - res = 0; - } - } - __Pyx_ErrRestore(exception, value, tb); - return res; -} -#else -static CYTHON_INLINE int __Pyx_inner_PyErr_GivenExceptionMatches2(PyObject *err, PyObject* exc_type1, PyObject *exc_type2) { - int res = exc_type1 ? __Pyx_IsSubtype((PyTypeObject*)err, (PyTypeObject*)exc_type1) : 0; - if (!res) { - res = __Pyx_IsSubtype((PyTypeObject*)err, (PyTypeObject*)exc_type2); - } - return res; -} -#endif -static int __Pyx_PyErr_GivenExceptionMatchesTuple(PyObject *exc_type, PyObject *tuple) { - Py_ssize_t i, n; - assert(PyExceptionClass_Check(exc_type)); - n = PyTuple_GET_SIZE(tuple); -#if PY_MAJOR_VERSION >= 3 - for (i=0; ip) { - #if PY_MAJOR_VERSION < 3 - if (t->is_unicode) { - *t->p = PyUnicode_DecodeUTF8(t->s, t->n - 1, NULL); - } else if (t->intern) { - *t->p = PyString_InternFromString(t->s); - } else { - *t->p = PyString_FromStringAndSize(t->s, t->n - 1); - } - #else - if (t->is_unicode | t->is_str) { - if (t->intern) { - *t->p = PyUnicode_InternFromString(t->s); - } else if (t->encoding) { - *t->p = PyUnicode_Decode(t->s, t->n - 1, t->encoding, NULL); - } else { - *t->p = PyUnicode_FromStringAndSize(t->s, t->n - 1); - } - } else { - *t->p = PyBytes_FromStringAndSize(t->s, t->n - 1); - } - #endif - if (!*t->p) - return -1; - if (PyObject_Hash(*t->p) == -1) - return -1; - ++t; - } - return 0; -} - -static CYTHON_INLINE PyObject* __Pyx_PyUnicode_FromString(const char* c_str) { - return __Pyx_PyUnicode_FromStringAndSize(c_str, (Py_ssize_t)strlen(c_str)); -} -static CYTHON_INLINE const char* __Pyx_PyObject_AsString(PyObject* o) { - Py_ssize_t ignore; - return __Pyx_PyObject_AsStringAndSize(o, &ignore); -} -#if __PYX_DEFAULT_STRING_ENCODING_IS_ASCII || __PYX_DEFAULT_STRING_ENCODING_IS_DEFAULT -#if !CYTHON_PEP393_ENABLED -static const char* __Pyx_PyUnicode_AsStringAndSize(PyObject* o, Py_ssize_t *length) { - char* defenc_c; - PyObject* defenc = _PyUnicode_AsDefaultEncodedString(o, NULL); - if (!defenc) return NULL; - defenc_c = PyBytes_AS_STRING(defenc); -#if __PYX_DEFAULT_STRING_ENCODING_IS_ASCII - { - char* end = defenc_c + PyBytes_GET_SIZE(defenc); - char* c; - for (c = defenc_c; c < end; c++) { - if ((unsigned char) (*c) >= 128) { - PyUnicode_AsASCIIString(o); - return NULL; - } - } - } -#endif - *length = PyBytes_GET_SIZE(defenc); - return defenc_c; -} -#else -static CYTHON_INLINE const char* __Pyx_PyUnicode_AsStringAndSize(PyObject* o, Py_ssize_t *length) { - if (unlikely(__Pyx_PyUnicode_READY(o) == -1)) return NULL; -#if __PYX_DEFAULT_STRING_ENCODING_IS_ASCII - if (likely(PyUnicode_IS_ASCII(o))) { - *length = PyUnicode_GET_LENGTH(o); - return PyUnicode_AsUTF8(o); - } else { - PyUnicode_AsASCIIString(o); - return NULL; - } -#else - return PyUnicode_AsUTF8AndSize(o, length); -#endif -} -#endif -#endif -static CYTHON_INLINE const char* __Pyx_PyObject_AsStringAndSize(PyObject* o, Py_ssize_t *length) { -#if __PYX_DEFAULT_STRING_ENCODING_IS_ASCII || __PYX_DEFAULT_STRING_ENCODING_IS_DEFAULT - if ( -#if PY_MAJOR_VERSION < 3 && __PYX_DEFAULT_STRING_ENCODING_IS_ASCII - __Pyx_sys_getdefaultencoding_not_ascii && -#endif - PyUnicode_Check(o)) { - return __Pyx_PyUnicode_AsStringAndSize(o, length); - } else -#endif -#if (!CYTHON_COMPILING_IN_PYPY) || (defined(PyByteArray_AS_STRING) && defined(PyByteArray_GET_SIZE)) - if (PyByteArray_Check(o)) { - *length = PyByteArray_GET_SIZE(o); - return PyByteArray_AS_STRING(o); - } else -#endif - { - char* result; - int r = PyBytes_AsStringAndSize(o, &result, length); - if (unlikely(r < 0)) { - return NULL; - } else { - return result; - } - } -} -static CYTHON_INLINE int __Pyx_PyObject_IsTrue(PyObject* x) { - int is_true = x == Py_True; - if (is_true | (x == Py_False) | (x == Py_None)) return is_true; - else return PyObject_IsTrue(x); -} -static CYTHON_INLINE int __Pyx_PyObject_IsTrueAndDecref(PyObject* x) { - int retval; - if (unlikely(!x)) return -1; - retval = __Pyx_PyObject_IsTrue(x); - Py_DECREF(x); - return retval; -} -static PyObject* __Pyx_PyNumber_IntOrLongWrongResultType(PyObject* result, const char* type_name) { -#if PY_MAJOR_VERSION >= 3 - if (PyLong_Check(result)) { - if (PyErr_WarnFormat(PyExc_DeprecationWarning, 1, - "__int__ returned non-int (type %.200s). " - "The ability to return an instance of a strict subclass of int " - "is deprecated, and may be removed in a future version of Python.", - Py_TYPE(result)->tp_name)) { - Py_DECREF(result); - return NULL; - } - return result; - } -#endif - PyErr_Format(PyExc_TypeError, - "__%.4s__ returned non-%.4s (type %.200s)", - type_name, type_name, Py_TYPE(result)->tp_name); - Py_DECREF(result); - return NULL; -} -static CYTHON_INLINE PyObject* __Pyx_PyNumber_IntOrLong(PyObject* x) { -#if CYTHON_USE_TYPE_SLOTS - PyNumberMethods *m; -#endif - const char *name = NULL; - PyObject *res = NULL; -#if PY_MAJOR_VERSION < 3 - if (likely(PyInt_Check(x) || PyLong_Check(x))) -#else - if (likely(PyLong_Check(x))) -#endif - return __Pyx_NewRef(x); -#if CYTHON_USE_TYPE_SLOTS - m = Py_TYPE(x)->tp_as_number; - #if PY_MAJOR_VERSION < 3 - if (m && m->nb_int) { - name = "int"; - res = m->nb_int(x); - } - else if (m && m->nb_long) { - name = "long"; - res = m->nb_long(x); - } - #else - if (likely(m && m->nb_int)) { - name = "int"; - res = m->nb_int(x); - } - #endif -#else - if (!PyBytes_CheckExact(x) && !PyUnicode_CheckExact(x)) { - res = PyNumber_Int(x); - } -#endif - if (likely(res)) { -#if PY_MAJOR_VERSION < 3 - if (unlikely(!PyInt_Check(res) && !PyLong_Check(res))) { -#else - if (unlikely(!PyLong_CheckExact(res))) { -#endif - return __Pyx_PyNumber_IntOrLongWrongResultType(res, name); - } - } - else if (!PyErr_Occurred()) { - PyErr_SetString(PyExc_TypeError, - "an integer is required"); - } - return res; -} -static CYTHON_INLINE Py_ssize_t __Pyx_PyIndex_AsSsize_t(PyObject* b) { - Py_ssize_t ival; - PyObject *x; -#if PY_MAJOR_VERSION < 3 - if (likely(PyInt_CheckExact(b))) { - if (sizeof(Py_ssize_t) >= sizeof(long)) - return PyInt_AS_LONG(b); - else - return PyInt_AsSsize_t(b); - } -#endif - if (likely(PyLong_CheckExact(b))) { - #if CYTHON_USE_PYLONG_INTERNALS - const digit* digits = ((PyLongObject*)b)->ob_digit; - const Py_ssize_t size = Py_SIZE(b); - if (likely(__Pyx_sst_abs(size) <= 1)) { - ival = likely(size) ? digits[0] : 0; - if (size == -1) ival = -ival; - return ival; - } else { - switch (size) { - case 2: - if (8 * sizeof(Py_ssize_t) > 2 * PyLong_SHIFT) { - return (Py_ssize_t) (((((size_t)digits[1]) << PyLong_SHIFT) | (size_t)digits[0])); - } - break; - case -2: - if (8 * sizeof(Py_ssize_t) > 2 * PyLong_SHIFT) { - return -(Py_ssize_t) (((((size_t)digits[1]) << PyLong_SHIFT) | (size_t)digits[0])); - } - break; - case 3: - if (8 * sizeof(Py_ssize_t) > 3 * PyLong_SHIFT) { - return (Py_ssize_t) (((((((size_t)digits[2]) << PyLong_SHIFT) | (size_t)digits[1]) << PyLong_SHIFT) | (size_t)digits[0])); - } - break; - case -3: - if (8 * sizeof(Py_ssize_t) > 3 * PyLong_SHIFT) { - return -(Py_ssize_t) (((((((size_t)digits[2]) << PyLong_SHIFT) | (size_t)digits[1]) << PyLong_SHIFT) | (size_t)digits[0])); - } - break; - case 4: - if (8 * sizeof(Py_ssize_t) > 4 * PyLong_SHIFT) { - return (Py_ssize_t) (((((((((size_t)digits[3]) << PyLong_SHIFT) | (size_t)digits[2]) << PyLong_SHIFT) | (size_t)digits[1]) << PyLong_SHIFT) | (size_t)digits[0])); - } - break; - case -4: - if (8 * sizeof(Py_ssize_t) > 4 * PyLong_SHIFT) { - return -(Py_ssize_t) (((((((((size_t)digits[3]) << PyLong_SHIFT) | (size_t)digits[2]) << PyLong_SHIFT) | (size_t)digits[1]) << PyLong_SHIFT) | (size_t)digits[0])); - } - break; - } - } - #endif - return PyLong_AsSsize_t(b); - } - x = PyNumber_Index(b); - if (!x) return -1; - ival = PyInt_AsSsize_t(x); - Py_DECREF(x); - return ival; -} -static CYTHON_INLINE PyObject * __Pyx_PyBool_FromLong(long b) { - return b ? __Pyx_NewRef(Py_True) : __Pyx_NewRef(Py_False); -} -static CYTHON_INLINE PyObject * __Pyx_PyInt_FromSize_t(size_t ival) { - return PyInt_FromSize_t(ival); -} - - -#endif /* Py_PYTHON_H */ diff --git a/python/pmercury/cython-bak/packet_proc.pyx b/python/pmercury/cython-bak/packet_proc.pyx deleted file mode 100644 index 65ad8a20..00000000 --- a/python/pmercury/cython-bak/packet_proc.pyx +++ /dev/null @@ -1,189 +0,0 @@ -#cython: language_level=3, wraparound=False, cdivision=True, infer_types=True, initializedcheck=False, c_string_type=bytes, embedsignature=False, nonecheck=False - -""" - Copyright (c) 2019 Cisco Systems, Inc. All rights reserved. - License at https://github.com/cisco/mercury/blob/master/LICENSE -""" - -import sys - -from pmercury.protocols.tcp import TCP -from pmercury.protocols.tls import TLS -from pmercury.protocols.dtls import DTLS -from pmercury.protocols.http import HTTP -from pmercury.protocols.dhcp import DHCP -from pmercury.protocols.iquic import IQUIC -from pmercury.protocols.tls_server import TLS_Server -from pmercury.protocols.dtls_server import DTLS_Server -from pmercury.protocols.http_server import HTTP_Server -from pmercury.protocols.tls_certificate import TLS_Certificate - - -from cython.operator cimport dereference as deref -from libc.stdint cimport uint8_t, uint16_t, uint32_t, uint64_t - -IF UNAME_SYSNAME == "Windows": - cdef extern from "winsock2.h": - uint16_t htons(uint16_t hostshort) -ELSE: - cdef extern from "arpa/inet.h": - uint16_t htons(uint16_t hostshort) - - -def pkt_proc(double ts, bytes data): - cdef uint8_t *buf = data - - cdef uint16_t ip_type = 4 - cdef uint16_t ip_length, ip_offset, protocol - - if buf[12] == 0x08 and buf[13] == 0x00: # IPv4 - ip_length = 20 - ip_offset = 14 - protocol = buf[23] - elif buf[12] == 0x86 and buf[13] == 0xdd: # IPv6 - ip_type = 6 - ip_length = 40 - ip_offset = 14 - protocol = buf[20] - elif buf[14] == 0x08 and buf[15] == 0x00: # IPv4 (hack for linux cooked capture) - ip_length = 20 - ip_offset = 16 - protocol = buf[25] - elif buf[12] == 0x81 and buf[13] == 0x00: # IPv4 (hack for 802.1Q Virtual LAN) - if buf[16] == 0x08 and buf[17] == 0x00: # IPv4 - ip_length = 20 - ip_offset = 18 - protocol = buf[27] - elif buf[16] == 0x86 and buf[17] == 0xdd: # IPv6 - ip_type = 6 - ip_length = 40 - ip_offset = 18 - protocol = buf[24] - else: - return None - else: # currently skip other types - return None - - cdef uint16_t data_len - cdef uint16_t src_port, dst_port - cdef uint16_t prot_length, prot_offset, app_offset - cdef str fp_type, fp_type_2, src_ip, dst_ip - cdef list context_, context_2_ - cdef dict flow - - data_len = len(data) - fp_str_ = None - fp_str_2_ = None - prot_offset = 0 - if protocol == 6: - prot_offset = ip_offset+ip_length - if prot_offset+20 > data_len: - return None - prot_length = (buf[prot_offset+12] >> 0x04)*4 - app_offset = prot_offset + prot_length - if buf[prot_offset+13] == 2: - fp_str_, context_ = TCP.fingerprint(data, prot_offset, app_offset) - fp_type = 'tcp' - elif data_len - app_offset < 16: - return None - elif buf[app_offset] == 22 and buf[app_offset+1] == 3: - if buf[app_offset+5] == 1 and buf[app_offset+9] == 3: - fp_str_, context_ = TLS.fingerprint(data, app_offset, data_len) - fp_type = 'tls' - elif buf[app_offset+5] == 2 and buf[app_offset+9] == 3: - fp_str_, context_ = TLS_Server.fingerprint(data, app_offset, data_len) - fp_type = 'tls_server' - fp_str_2_, context_2_ = TLS_Certificate.fingerprint(data, app_offset, data_len) - fp_type_2 = 'server_certs' - elif buf[app_offset+5] == 11: - fp_str_, context_ = TLS_Certificate.fingerprint(data, app_offset, data_len) - fp_type = 'server_certs' - elif buf[app_offset+2] == 84: - if (buf[app_offset] == 71 and buf[app_offset+3] == 32): - fp_str_, context_ = HTTP.fingerprint(data, app_offset, data_len) - fp_type = 'http' - elif (buf[app_offset] == 72 and buf[app_offset+5] == 49): - fp_str_, context_ = HTTP_Server.fingerprint(data, app_offset, data_len) - fp_type = 'http_server' - elif protocol == 17: - prot_offset = ip_offset+ip_length - prot_length = 8 - app_offset = prot_offset + prot_length - - if data_len - app_offset < 16: - return None - elif buf[app_offset] == 22 and buf[app_offset+1] == 254: - if buf[app_offset+13] == 1 and buf[app_offset+25] == 254: - fp_str_, context_ = DTLS.fingerprint(data, app_offset, data_len) - fp_type = 'dtls' - elif buf[app_offset+13] == 2 and buf[app_offset+25] == 254: - fp_str_, context_ = DTLS_Server.fingerprint(data, app_offset, data_len) - fp_type = 'dtls_server' - elif (buf[app_offset+1] == 0xff and buf[app_offset+2] == 0x00 and - buf[app_offset+3] == 0x00 and buf[app_offset+4] == 0x18): - fp_str_, context_ = IQUIC.fingerprint(data, app_offset, data_len) - fp_type = 'iquic' - elif data_len - app_offset < 240: - return None - elif (buf[app_offset+236] == 0x63 and - buf[app_offset+237] == 0x82 and - buf[app_offset+238] == 0x53 and - buf[app_offset+239] == 0x63): - fp_str_, context_ = DHCP.fingerprint(data, app_offset, data_len) - fp_type = 'dhcp' - - if fp_str_ == None: - return None - - src_port = htons(deref((buf+prot_offset))) - dst_port = htons(deref((buf+prot_offset+2))) - if ip_type == 4: - o_ = prot_offset-8 - src_ip = f'{buf[o_]}.{buf[o_+1]}.{buf[o_+2]}.{buf[o_+3]}' - o_ += 4 - dst_ip = f'{buf[o_]}.{buf[o_+1]}.{buf[o_+2]}.{buf[o_+3]}' - else: - o_ = prot_offset-32 - src_ip = (f'{buf[o_]:02x}{buf[o_+1]:02x}:{buf[o_+2]:02x}{buf[o_+3]:02x}:' - f'{buf[o_+4]:02x}{buf[o_+5]:02x}:{buf[o_+6]:02x}{buf[o_+7]:02x}:' - f'{buf[o_+8]:02x}{buf[o_+9]:02x}:{buf[o_+10]:02x}{buf[o_+11]:02x}:' - f'{buf[o_+12]:02x}{buf[o_+13]:02x}:{buf[o_+14]:02x}{buf[o_+15]:02x}') - o_ += 16 - dst_ip = (f'{buf[o_]:02x}{buf[o_+1]:02x}:{buf[o_+2]:02x}{buf[o_+3]:02x}:' - f'{buf[o_+4]:02x}{buf[o_+5]:02x}:{buf[o_+6]:02x}{buf[o_+7]:02x}:' - f'{buf[o_+8]:02x}{buf[o_+9]:02x}:{buf[o_+10]:02x}{buf[o_+11]:02x}:' - f'{buf[o_+12]:02x}{buf[o_+13]:02x}:{buf[o_+14]:02x}{buf[o_+15]:02x}') - - flow = {'src_ip':src_ip, - 'dst_ip':dst_ip, - 'src_port':src_port, - 'dst_port':dst_port, - 'protocol':protocol, - 'event_start':ts, - 'fingerprints': {}} - if fp_type != 'server_certs': - flow['fingerprints'][fp_type] = fp_str_ - else: - if 'tls' not in flow: - flow['tls'] = {} - flow['tls'][fp_type] = fp_str_ - - if context_ != None and context_ != []: - flow[fp_type] = {} - for x_ in context_: - flow[fp_type][x_['name']] = x_['data'] - - if fp_str_2_ != None: - if fp_type_2 != 'server_certs': - flow['fingerprints'][fp_type_2] = fp_str_2_ - else: - if 'tls' not in flow: - flow['tls'] = {} - flow['tls'][fp_type_2] = fp_str_2_ - - if context_2_ != None and context_2_ != []: - flow[fp_type_2] = {} - for x_ in context_2_: - flow[fp_type_2][x_['name']] = x_['data'] - - return flow diff --git a/python/pmercury/cython-bak/tcp.c b/python/pmercury/cython-bak/tcp.c deleted file mode 100644 index 055c6240..00000000 --- a/python/pmercury/cython-bak/tcp.c +++ /dev/null @@ -1,8621 +0,0 @@ -/* Generated by Cython 0.29.14 */ - -/* BEGIN: Cython Metadata -{ - "distutils": { - "name": "pmercury.protocols.tcp", - "sources": [ - "/home/blake/Cisco/mercury-transition/python/pmercury/protocols/tcp.pyx" - ] - }, - "module_name": "pmercury.protocols.tcp" -} -END: Cython Metadata */ - -#define PY_SSIZE_T_CLEAN -#include "Python.h" -#ifndef Py_PYTHON_H - #error Python headers needed to compile C extensions, please install development version of Python. -#elif PY_VERSION_HEX < 0x02060000 || (0x03000000 <= PY_VERSION_HEX && PY_VERSION_HEX < 0x03030000) - #error Cython requires Python 2.6+ or Python 3.3+. -#else -#define CYTHON_ABI "0_29_14" -#define CYTHON_HEX_VERSION 0x001D0EF0 -#define CYTHON_FUTURE_DIVISION 1 -#include -#ifndef offsetof - #define offsetof(type, member) ( (size_t) & ((type*)0) -> member ) -#endif -#if !defined(WIN32) && !defined(MS_WINDOWS) - #ifndef __stdcall - #define __stdcall - #endif - #ifndef __cdecl - #define __cdecl - #endif - #ifndef __fastcall - #define __fastcall - #endif -#endif -#ifndef DL_IMPORT - #define DL_IMPORT(t) t -#endif -#ifndef DL_EXPORT - #define DL_EXPORT(t) t -#endif -#define __PYX_COMMA , -#ifndef HAVE_LONG_LONG - #if PY_VERSION_HEX >= 0x02070000 - #define HAVE_LONG_LONG - #endif -#endif -#ifndef PY_LONG_LONG - #define PY_LONG_LONG LONG_LONG -#endif -#ifndef Py_HUGE_VAL - #define Py_HUGE_VAL HUGE_VAL -#endif -#ifdef PYPY_VERSION - #define CYTHON_COMPILING_IN_PYPY 1 - #define CYTHON_COMPILING_IN_PYSTON 0 - #define CYTHON_COMPILING_IN_CPYTHON 0 - #undef CYTHON_USE_TYPE_SLOTS - #define CYTHON_USE_TYPE_SLOTS 0 - #undef CYTHON_USE_PYTYPE_LOOKUP - #define CYTHON_USE_PYTYPE_LOOKUP 0 - #if PY_VERSION_HEX < 0x03050000 - #undef CYTHON_USE_ASYNC_SLOTS - #define CYTHON_USE_ASYNC_SLOTS 0 - #elif !defined(CYTHON_USE_ASYNC_SLOTS) - #define CYTHON_USE_ASYNC_SLOTS 1 - #endif - #undef CYTHON_USE_PYLIST_INTERNALS - #define CYTHON_USE_PYLIST_INTERNALS 0 - #undef CYTHON_USE_UNICODE_INTERNALS - #define CYTHON_USE_UNICODE_INTERNALS 0 - #undef CYTHON_USE_UNICODE_WRITER - #define CYTHON_USE_UNICODE_WRITER 0 - #undef CYTHON_USE_PYLONG_INTERNALS - #define CYTHON_USE_PYLONG_INTERNALS 0 - #undef CYTHON_AVOID_BORROWED_REFS - #define CYTHON_AVOID_BORROWED_REFS 1 - #undef CYTHON_ASSUME_SAFE_MACROS - #define CYTHON_ASSUME_SAFE_MACROS 0 - #undef CYTHON_UNPACK_METHODS - #define CYTHON_UNPACK_METHODS 0 - #undef CYTHON_FAST_THREAD_STATE - #define CYTHON_FAST_THREAD_STATE 0 - #undef CYTHON_FAST_PYCALL - #define CYTHON_FAST_PYCALL 0 - #undef CYTHON_PEP489_MULTI_PHASE_INIT - #define CYTHON_PEP489_MULTI_PHASE_INIT 0 - #undef CYTHON_USE_TP_FINALIZE - #define CYTHON_USE_TP_FINALIZE 0 - #undef CYTHON_USE_DICT_VERSIONS - #define CYTHON_USE_DICT_VERSIONS 0 - #undef CYTHON_USE_EXC_INFO_STACK - #define CYTHON_USE_EXC_INFO_STACK 0 -#elif defined(PYSTON_VERSION) - #define CYTHON_COMPILING_IN_PYPY 0 - #define CYTHON_COMPILING_IN_PYSTON 1 - #define CYTHON_COMPILING_IN_CPYTHON 0 - #ifndef CYTHON_USE_TYPE_SLOTS - #define CYTHON_USE_TYPE_SLOTS 1 - #endif - #undef CYTHON_USE_PYTYPE_LOOKUP - #define CYTHON_USE_PYTYPE_LOOKUP 0 - #undef CYTHON_USE_ASYNC_SLOTS - #define CYTHON_USE_ASYNC_SLOTS 0 - #undef CYTHON_USE_PYLIST_INTERNALS - #define CYTHON_USE_PYLIST_INTERNALS 0 - #ifndef CYTHON_USE_UNICODE_INTERNALS - #define CYTHON_USE_UNICODE_INTERNALS 1 - #endif - #undef CYTHON_USE_UNICODE_WRITER - #define CYTHON_USE_UNICODE_WRITER 0 - #undef CYTHON_USE_PYLONG_INTERNALS - #define CYTHON_USE_PYLONG_INTERNALS 0 - #ifndef CYTHON_AVOID_BORROWED_REFS - #define CYTHON_AVOID_BORROWED_REFS 0 - #endif - #ifndef CYTHON_ASSUME_SAFE_MACROS - #define CYTHON_ASSUME_SAFE_MACROS 1 - #endif - #ifndef CYTHON_UNPACK_METHODS - #define CYTHON_UNPACK_METHODS 1 - #endif - #undef CYTHON_FAST_THREAD_STATE - #define CYTHON_FAST_THREAD_STATE 0 - #undef CYTHON_FAST_PYCALL - #define CYTHON_FAST_PYCALL 0 - #undef CYTHON_PEP489_MULTI_PHASE_INIT - #define CYTHON_PEP489_MULTI_PHASE_INIT 0 - #undef CYTHON_USE_TP_FINALIZE - #define CYTHON_USE_TP_FINALIZE 0 - #undef CYTHON_USE_DICT_VERSIONS - #define CYTHON_USE_DICT_VERSIONS 0 - #undef CYTHON_USE_EXC_INFO_STACK - #define CYTHON_USE_EXC_INFO_STACK 0 -#else - #define CYTHON_COMPILING_IN_PYPY 0 - #define CYTHON_COMPILING_IN_PYSTON 0 - #define CYTHON_COMPILING_IN_CPYTHON 1 - #ifndef CYTHON_USE_TYPE_SLOTS - #define CYTHON_USE_TYPE_SLOTS 1 - #endif - #if PY_VERSION_HEX < 0x02070000 - #undef CYTHON_USE_PYTYPE_LOOKUP - #define CYTHON_USE_PYTYPE_LOOKUP 0 - #elif !defined(CYTHON_USE_PYTYPE_LOOKUP) - #define CYTHON_USE_PYTYPE_LOOKUP 1 - #endif - #if PY_MAJOR_VERSION < 3 - #undef CYTHON_USE_ASYNC_SLOTS - #define CYTHON_USE_ASYNC_SLOTS 0 - #elif !defined(CYTHON_USE_ASYNC_SLOTS) - #define CYTHON_USE_ASYNC_SLOTS 1 - #endif - #if PY_VERSION_HEX < 0x02070000 - #undef CYTHON_USE_PYLONG_INTERNALS - #define CYTHON_USE_PYLONG_INTERNALS 0 - #elif !defined(CYTHON_USE_PYLONG_INTERNALS) - #define CYTHON_USE_PYLONG_INTERNALS 1 - #endif - #ifndef CYTHON_USE_PYLIST_INTERNALS - #define CYTHON_USE_PYLIST_INTERNALS 1 - #endif - #ifndef CYTHON_USE_UNICODE_INTERNALS - #define CYTHON_USE_UNICODE_INTERNALS 1 - #endif - #if PY_VERSION_HEX < 0x030300F0 - #undef CYTHON_USE_UNICODE_WRITER - #define CYTHON_USE_UNICODE_WRITER 0 - #elif !defined(CYTHON_USE_UNICODE_WRITER) - #define CYTHON_USE_UNICODE_WRITER 1 - #endif - #ifndef CYTHON_AVOID_BORROWED_REFS - #define CYTHON_AVOID_BORROWED_REFS 0 - #endif - #ifndef CYTHON_ASSUME_SAFE_MACROS - #define CYTHON_ASSUME_SAFE_MACROS 1 - #endif - #ifndef CYTHON_UNPACK_METHODS - #define CYTHON_UNPACK_METHODS 1 - #endif - #ifndef CYTHON_FAST_THREAD_STATE - #define CYTHON_FAST_THREAD_STATE 1 - #endif - #ifndef CYTHON_FAST_PYCALL - #define CYTHON_FAST_PYCALL 1 - #endif - #ifndef CYTHON_PEP489_MULTI_PHASE_INIT - #define CYTHON_PEP489_MULTI_PHASE_INIT (PY_VERSION_HEX >= 0x03050000) - #endif - #ifndef CYTHON_USE_TP_FINALIZE - #define CYTHON_USE_TP_FINALIZE (PY_VERSION_HEX >= 0x030400a1) - #endif - #ifndef CYTHON_USE_DICT_VERSIONS - #define CYTHON_USE_DICT_VERSIONS (PY_VERSION_HEX >= 0x030600B1) - #endif - #ifndef CYTHON_USE_EXC_INFO_STACK - #define CYTHON_USE_EXC_INFO_STACK (PY_VERSION_HEX >= 0x030700A3) - #endif -#endif -#if !defined(CYTHON_FAST_PYCCALL) -#define CYTHON_FAST_PYCCALL (CYTHON_FAST_PYCALL && PY_VERSION_HEX >= 0x030600B1) -#endif -#if CYTHON_USE_PYLONG_INTERNALS - #include "longintrepr.h" - #undef SHIFT - #undef BASE - #undef MASK - #ifdef SIZEOF_VOID_P - enum { __pyx_check_sizeof_voidp = 1 / (int)(SIZEOF_VOID_P == sizeof(void*)) }; - #endif -#endif -#ifndef __has_attribute - #define __has_attribute(x) 0 -#endif -#ifndef __has_cpp_attribute - #define __has_cpp_attribute(x) 0 -#endif -#ifndef CYTHON_RESTRICT - #if defined(__GNUC__) - #define CYTHON_RESTRICT __restrict__ - #elif defined(_MSC_VER) && _MSC_VER >= 1400 - #define CYTHON_RESTRICT __restrict - #elif defined (__STDC_VERSION__) && __STDC_VERSION__ >= 199901L - #define CYTHON_RESTRICT restrict - #else - #define CYTHON_RESTRICT - #endif -#endif -#ifndef CYTHON_UNUSED -# if defined(__GNUC__) -# if !(defined(__cplusplus)) || (__GNUC__ > 3 || (__GNUC__ == 3 && __GNUC_MINOR__ >= 4)) -# define CYTHON_UNUSED __attribute__ ((__unused__)) -# else -# define CYTHON_UNUSED -# endif -# elif defined(__ICC) || (defined(__INTEL_COMPILER) && !defined(_MSC_VER)) -# define CYTHON_UNUSED __attribute__ ((__unused__)) -# else -# define CYTHON_UNUSED -# endif -#endif -#ifndef CYTHON_MAYBE_UNUSED_VAR -# if defined(__cplusplus) - template void CYTHON_MAYBE_UNUSED_VAR( const T& ) { } -# else -# define CYTHON_MAYBE_UNUSED_VAR(x) (void)(x) -# endif -#endif -#ifndef CYTHON_NCP_UNUSED -# if CYTHON_COMPILING_IN_CPYTHON -# define CYTHON_NCP_UNUSED -# else -# define CYTHON_NCP_UNUSED CYTHON_UNUSED -# endif -#endif -#define __Pyx_void_to_None(void_result) ((void)(void_result), Py_INCREF(Py_None), Py_None) -#ifdef _MSC_VER - #ifndef _MSC_STDINT_H_ - #if _MSC_VER < 1300 - typedef unsigned char uint8_t; - typedef unsigned int uint32_t; - #else - typedef unsigned __int8 uint8_t; - typedef unsigned __int32 uint32_t; - #endif - #endif -#else - #include -#endif -#ifndef CYTHON_FALLTHROUGH - #if defined(__cplusplus) && __cplusplus >= 201103L - #if __has_cpp_attribute(fallthrough) - #define CYTHON_FALLTHROUGH [[fallthrough]] - #elif __has_cpp_attribute(clang::fallthrough) - #define CYTHON_FALLTHROUGH [[clang::fallthrough]] - #elif __has_cpp_attribute(gnu::fallthrough) - #define CYTHON_FALLTHROUGH [[gnu::fallthrough]] - #endif - #endif - #ifndef CYTHON_FALLTHROUGH - #if __has_attribute(fallthrough) - #define CYTHON_FALLTHROUGH __attribute__((fallthrough)) - #else - #define CYTHON_FALLTHROUGH - #endif - #endif - #if defined(__clang__ ) && defined(__apple_build_version__) - #if __apple_build_version__ < 7000000 - #undef CYTHON_FALLTHROUGH - #define CYTHON_FALLTHROUGH - #endif - #endif -#endif - -#ifndef CYTHON_INLINE - #if defined(__clang__) - #define CYTHON_INLINE __inline__ __attribute__ ((__unused__)) - #elif defined(__GNUC__) - #define CYTHON_INLINE __inline__ - #elif defined(_MSC_VER) - #define CYTHON_INLINE __inline - #elif defined (__STDC_VERSION__) && __STDC_VERSION__ >= 199901L - #define CYTHON_INLINE inline - #else - #define CYTHON_INLINE - #endif -#endif - -#if CYTHON_COMPILING_IN_PYPY && PY_VERSION_HEX < 0x02070600 && !defined(Py_OptimizeFlag) - #define Py_OptimizeFlag 0 -#endif -#define __PYX_BUILD_PY_SSIZE_T "n" -#define CYTHON_FORMAT_SSIZE_T "z" -#if PY_MAJOR_VERSION < 3 - #define __Pyx_BUILTIN_MODULE_NAME "__builtin__" - #define __Pyx_PyCode_New(a, k, l, s, f, code, c, n, v, fv, cell, fn, name, fline, lnos)\ - PyCode_New(a+k, l, s, f, code, c, n, v, fv, cell, fn, name, fline, lnos) - #define __Pyx_DefaultClassType PyClass_Type -#else - #define __Pyx_BUILTIN_MODULE_NAME "builtins" -#if PY_VERSION_HEX >= 0x030800A4 && PY_VERSION_HEX < 0x030800B2 - #define __Pyx_PyCode_New(a, k, l, s, f, code, c, n, v, fv, cell, fn, name, fline, lnos)\ - PyCode_New(a, 0, k, l, s, f, code, c, n, v, fv, cell, fn, name, fline, lnos) -#else - #define __Pyx_PyCode_New(a, k, l, s, f, code, c, n, v, fv, cell, fn, name, fline, lnos)\ - PyCode_New(a, k, l, s, f, code, c, n, v, fv, cell, fn, name, fline, lnos) -#endif - #define __Pyx_DefaultClassType PyType_Type -#endif -#ifndef Py_TPFLAGS_CHECKTYPES - #define Py_TPFLAGS_CHECKTYPES 0 -#endif -#ifndef Py_TPFLAGS_HAVE_INDEX - #define Py_TPFLAGS_HAVE_INDEX 0 -#endif -#ifndef Py_TPFLAGS_HAVE_NEWBUFFER - #define Py_TPFLAGS_HAVE_NEWBUFFER 0 -#endif -#ifndef Py_TPFLAGS_HAVE_FINALIZE - #define Py_TPFLAGS_HAVE_FINALIZE 0 -#endif -#ifndef METH_STACKLESS - #define METH_STACKLESS 0 -#endif -#if PY_VERSION_HEX <= 0x030700A3 || !defined(METH_FASTCALL) - #ifndef METH_FASTCALL - #define METH_FASTCALL 0x80 - #endif - typedef PyObject *(*__Pyx_PyCFunctionFast) (PyObject *self, PyObject *const *args, Py_ssize_t nargs); - typedef PyObject *(*__Pyx_PyCFunctionFastWithKeywords) (PyObject *self, PyObject *const *args, - Py_ssize_t nargs, PyObject *kwnames); -#else - #define __Pyx_PyCFunctionFast _PyCFunctionFast - #define __Pyx_PyCFunctionFastWithKeywords _PyCFunctionFastWithKeywords -#endif -#if CYTHON_FAST_PYCCALL -#define __Pyx_PyFastCFunction_Check(func)\ - ((PyCFunction_Check(func) && (METH_FASTCALL == (PyCFunction_GET_FLAGS(func) & ~(METH_CLASS | METH_STATIC | METH_COEXIST | METH_KEYWORDS | METH_STACKLESS))))) -#else -#define __Pyx_PyFastCFunction_Check(func) 0 -#endif -#if CYTHON_COMPILING_IN_PYPY && !defined(PyObject_Malloc) - #define PyObject_Malloc(s) PyMem_Malloc(s) - #define PyObject_Free(p) PyMem_Free(p) - #define PyObject_Realloc(p) PyMem_Realloc(p) -#endif -#if CYTHON_COMPILING_IN_CPYTHON && PY_VERSION_HEX < 0x030400A1 - #define PyMem_RawMalloc(n) PyMem_Malloc(n) - #define PyMem_RawRealloc(p, n) PyMem_Realloc(p, n) - #define PyMem_RawFree(p) PyMem_Free(p) -#endif -#if CYTHON_COMPILING_IN_PYSTON - #define __Pyx_PyCode_HasFreeVars(co) PyCode_HasFreeVars(co) - #define __Pyx_PyFrame_SetLineNumber(frame, lineno) PyFrame_SetLineNumber(frame, lineno) -#else - #define __Pyx_PyCode_HasFreeVars(co) (PyCode_GetNumFree(co) > 0) - #define __Pyx_PyFrame_SetLineNumber(frame, lineno) (frame)->f_lineno = (lineno) -#endif -#if !CYTHON_FAST_THREAD_STATE || PY_VERSION_HEX < 0x02070000 - #define __Pyx_PyThreadState_Current PyThreadState_GET() -#elif PY_VERSION_HEX >= 0x03060000 - #define __Pyx_PyThreadState_Current _PyThreadState_UncheckedGet() -#elif PY_VERSION_HEX >= 0x03000000 - #define __Pyx_PyThreadState_Current PyThreadState_GET() -#else - #define __Pyx_PyThreadState_Current _PyThreadState_Current -#endif -#if PY_VERSION_HEX < 0x030700A2 && !defined(PyThread_tss_create) && !defined(Py_tss_NEEDS_INIT) -#include "pythread.h" -#define Py_tss_NEEDS_INIT 0 -typedef int Py_tss_t; -static CYTHON_INLINE int PyThread_tss_create(Py_tss_t *key) { - *key = PyThread_create_key(); - return 0; -} -static CYTHON_INLINE Py_tss_t * PyThread_tss_alloc(void) { - Py_tss_t *key = (Py_tss_t *)PyObject_Malloc(sizeof(Py_tss_t)); - *key = Py_tss_NEEDS_INIT; - return key; -} -static CYTHON_INLINE void PyThread_tss_free(Py_tss_t *key) { - PyObject_Free(key); -} -static CYTHON_INLINE int PyThread_tss_is_created(Py_tss_t *key) { - return *key != Py_tss_NEEDS_INIT; -} -static CYTHON_INLINE void PyThread_tss_delete(Py_tss_t *key) { - PyThread_delete_key(*key); - *key = Py_tss_NEEDS_INIT; -} -static CYTHON_INLINE int PyThread_tss_set(Py_tss_t *key, void *value) { - return PyThread_set_key_value(*key, value); -} -static CYTHON_INLINE void * PyThread_tss_get(Py_tss_t *key) { - return PyThread_get_key_value(*key); -} -#endif -#if CYTHON_COMPILING_IN_CPYTHON || defined(_PyDict_NewPresized) -#define __Pyx_PyDict_NewPresized(n) ((n <= 8) ? PyDict_New() : _PyDict_NewPresized(n)) -#else -#define __Pyx_PyDict_NewPresized(n) PyDict_New() -#endif -#if PY_MAJOR_VERSION >= 3 || CYTHON_FUTURE_DIVISION - #define __Pyx_PyNumber_Divide(x,y) PyNumber_TrueDivide(x,y) - #define __Pyx_PyNumber_InPlaceDivide(x,y) PyNumber_InPlaceTrueDivide(x,y) -#else - #define __Pyx_PyNumber_Divide(x,y) PyNumber_Divide(x,y) - #define __Pyx_PyNumber_InPlaceDivide(x,y) PyNumber_InPlaceDivide(x,y) -#endif -#if CYTHON_COMPILING_IN_CPYTHON && PY_VERSION_HEX >= 0x030500A1 && CYTHON_USE_UNICODE_INTERNALS -#define __Pyx_PyDict_GetItemStr(dict, name) _PyDict_GetItem_KnownHash(dict, name, ((PyASCIIObject *) name)->hash) -#else -#define __Pyx_PyDict_GetItemStr(dict, name) PyDict_GetItem(dict, name) -#endif -#if PY_VERSION_HEX > 0x03030000 && defined(PyUnicode_KIND) - #define CYTHON_PEP393_ENABLED 1 - #define __Pyx_PyUnicode_READY(op) (likely(PyUnicode_IS_READY(op)) ?\ - 0 : _PyUnicode_Ready((PyObject *)(op))) - #define __Pyx_PyUnicode_GET_LENGTH(u) PyUnicode_GET_LENGTH(u) - #define __Pyx_PyUnicode_READ_CHAR(u, i) PyUnicode_READ_CHAR(u, i) - #define __Pyx_PyUnicode_MAX_CHAR_VALUE(u) PyUnicode_MAX_CHAR_VALUE(u) - #define __Pyx_PyUnicode_KIND(u) PyUnicode_KIND(u) - #define __Pyx_PyUnicode_DATA(u) PyUnicode_DATA(u) - #define __Pyx_PyUnicode_READ(k, d, i) PyUnicode_READ(k, d, i) - #define __Pyx_PyUnicode_WRITE(k, d, i, ch) PyUnicode_WRITE(k, d, i, ch) - #define __Pyx_PyUnicode_IS_TRUE(u) (0 != (likely(PyUnicode_IS_READY(u)) ? PyUnicode_GET_LENGTH(u) : PyUnicode_GET_SIZE(u))) -#else - #define CYTHON_PEP393_ENABLED 0 - #define PyUnicode_1BYTE_KIND 1 - #define PyUnicode_2BYTE_KIND 2 - #define PyUnicode_4BYTE_KIND 4 - #define __Pyx_PyUnicode_READY(op) (0) - #define __Pyx_PyUnicode_GET_LENGTH(u) PyUnicode_GET_SIZE(u) - #define __Pyx_PyUnicode_READ_CHAR(u, i) ((Py_UCS4)(PyUnicode_AS_UNICODE(u)[i])) - #define __Pyx_PyUnicode_MAX_CHAR_VALUE(u) ((sizeof(Py_UNICODE) == 2) ? 65535 : 1114111) - #define __Pyx_PyUnicode_KIND(u) (sizeof(Py_UNICODE)) - #define __Pyx_PyUnicode_DATA(u) ((void*)PyUnicode_AS_UNICODE(u)) - #define __Pyx_PyUnicode_READ(k, d, i) ((void)(k), (Py_UCS4)(((Py_UNICODE*)d)[i])) - #define __Pyx_PyUnicode_WRITE(k, d, i, ch) (((void)(k)), ((Py_UNICODE*)d)[i] = ch) - #define __Pyx_PyUnicode_IS_TRUE(u) (0 != PyUnicode_GET_SIZE(u)) -#endif -#if CYTHON_COMPILING_IN_PYPY - #define __Pyx_PyUnicode_Concat(a, b) PyNumber_Add(a, b) - #define __Pyx_PyUnicode_ConcatSafe(a, b) PyNumber_Add(a, b) -#else - #define __Pyx_PyUnicode_Concat(a, b) PyUnicode_Concat(a, b) - #define __Pyx_PyUnicode_ConcatSafe(a, b) ((unlikely((a) == Py_None) || unlikely((b) == Py_None)) ?\ - PyNumber_Add(a, b) : __Pyx_PyUnicode_Concat(a, b)) -#endif -#if CYTHON_COMPILING_IN_PYPY && !defined(PyUnicode_Contains) - #define PyUnicode_Contains(u, s) PySequence_Contains(u, s) -#endif -#if CYTHON_COMPILING_IN_PYPY && !defined(PyByteArray_Check) - #define PyByteArray_Check(obj) PyObject_TypeCheck(obj, &PyByteArray_Type) -#endif -#if CYTHON_COMPILING_IN_PYPY && !defined(PyObject_Format) - #define PyObject_Format(obj, fmt) PyObject_CallMethod(obj, "__format__", "O", fmt) -#endif -#define __Pyx_PyString_FormatSafe(a, b) ((unlikely((a) == Py_None || (PyString_Check(b) && !PyString_CheckExact(b)))) ? PyNumber_Remainder(a, b) : __Pyx_PyString_Format(a, b)) -#define __Pyx_PyUnicode_FormatSafe(a, b) ((unlikely((a) == Py_None || (PyUnicode_Check(b) && !PyUnicode_CheckExact(b)))) ? PyNumber_Remainder(a, b) : PyUnicode_Format(a, b)) -#if PY_MAJOR_VERSION >= 3 - #define __Pyx_PyString_Format(a, b) PyUnicode_Format(a, b) -#else - #define __Pyx_PyString_Format(a, b) PyString_Format(a, b) -#endif -#if PY_MAJOR_VERSION < 3 && !defined(PyObject_ASCII) - #define PyObject_ASCII(o) PyObject_Repr(o) -#endif -#if PY_MAJOR_VERSION >= 3 - #define PyBaseString_Type PyUnicode_Type - #define PyStringObject PyUnicodeObject - #define PyString_Type PyUnicode_Type - #define PyString_Check PyUnicode_Check - #define PyString_CheckExact PyUnicode_CheckExact - #define PyObject_Unicode PyObject_Str -#endif -#if PY_MAJOR_VERSION >= 3 - #define __Pyx_PyBaseString_Check(obj) PyUnicode_Check(obj) - #define __Pyx_PyBaseString_CheckExact(obj) PyUnicode_CheckExact(obj) -#else - #define __Pyx_PyBaseString_Check(obj) (PyString_Check(obj) || PyUnicode_Check(obj)) - #define __Pyx_PyBaseString_CheckExact(obj) (PyString_CheckExact(obj) || PyUnicode_CheckExact(obj)) -#endif -#ifndef PySet_CheckExact - #define PySet_CheckExact(obj) (Py_TYPE(obj) == &PySet_Type) -#endif -#if CYTHON_ASSUME_SAFE_MACROS - #define __Pyx_PySequence_SIZE(seq) Py_SIZE(seq) -#else - #define __Pyx_PySequence_SIZE(seq) PySequence_Size(seq) -#endif -#if PY_MAJOR_VERSION >= 3 - #define PyIntObject PyLongObject - #define PyInt_Type PyLong_Type - #define PyInt_Check(op) PyLong_Check(op) - #define PyInt_CheckExact(op) PyLong_CheckExact(op) - #define PyInt_FromString PyLong_FromString - #define PyInt_FromUnicode PyLong_FromUnicode - #define PyInt_FromLong PyLong_FromLong - #define PyInt_FromSize_t PyLong_FromSize_t - #define PyInt_FromSsize_t PyLong_FromSsize_t - #define PyInt_AsLong PyLong_AsLong - #define PyInt_AS_LONG PyLong_AS_LONG - #define PyInt_AsSsize_t PyLong_AsSsize_t - #define PyInt_AsUnsignedLongMask PyLong_AsUnsignedLongMask - #define PyInt_AsUnsignedLongLongMask PyLong_AsUnsignedLongLongMask - #define PyNumber_Int PyNumber_Long -#endif -#if PY_MAJOR_VERSION >= 3 - #define PyBoolObject PyLongObject -#endif -#if PY_MAJOR_VERSION >= 3 && CYTHON_COMPILING_IN_PYPY - #ifndef PyUnicode_InternFromString - #define PyUnicode_InternFromString(s) PyUnicode_FromString(s) - #endif -#endif -#if PY_VERSION_HEX < 0x030200A4 - typedef long Py_hash_t; - #define __Pyx_PyInt_FromHash_t PyInt_FromLong - #define __Pyx_PyInt_AsHash_t PyInt_AsLong -#else - #define __Pyx_PyInt_FromHash_t PyInt_FromSsize_t - #define __Pyx_PyInt_AsHash_t PyInt_AsSsize_t -#endif -#if PY_MAJOR_VERSION >= 3 - #define __Pyx_PyMethod_New(func, self, klass) ((self) ? PyMethod_New(func, self) : (Py_INCREF(func), func)) -#else - #define __Pyx_PyMethod_New(func, self, klass) PyMethod_New(func, self, klass) -#endif -#if CYTHON_USE_ASYNC_SLOTS - #if PY_VERSION_HEX >= 0x030500B1 - #define __Pyx_PyAsyncMethodsStruct PyAsyncMethods - #define __Pyx_PyType_AsAsync(obj) (Py_TYPE(obj)->tp_as_async) - #else - #define __Pyx_PyType_AsAsync(obj) ((__Pyx_PyAsyncMethodsStruct*) (Py_TYPE(obj)->tp_reserved)) - #endif -#else - #define __Pyx_PyType_AsAsync(obj) NULL -#endif -#ifndef __Pyx_PyAsyncMethodsStruct - typedef struct { - unaryfunc am_await; - unaryfunc am_aiter; - unaryfunc am_anext; - } __Pyx_PyAsyncMethodsStruct; -#endif - -#if defined(WIN32) || defined(MS_WINDOWS) - #define _USE_MATH_DEFINES -#endif -#include -#ifdef NAN -#define __PYX_NAN() ((float) NAN) -#else -static CYTHON_INLINE float __PYX_NAN() { - float value; - memset(&value, 0xFF, sizeof(value)); - return value; -} -#endif -#if defined(__CYGWIN__) && defined(_LDBL_EQ_DBL) -#define __Pyx_truncl trunc -#else -#define __Pyx_truncl truncl -#endif - - -#define __PYX_ERR(f_index, lineno, Ln_error) \ -{ \ - __pyx_filename = __pyx_f[f_index]; __pyx_lineno = lineno; __pyx_clineno = __LINE__; goto Ln_error; \ -} - -#ifndef __PYX_EXTERN_C - #ifdef __cplusplus - #define __PYX_EXTERN_C extern "C" - #else - #define __PYX_EXTERN_C extern - #endif -#endif - -#define __PYX_HAVE__pmercury__protocols__tcp -#define __PYX_HAVE_API__pmercury__protocols__tcp -/* Early includes */ -#ifdef _OPENMP -#include -#endif /* _OPENMP */ - -#if defined(PYREX_WITHOUT_ASSERTIONS) && !defined(CYTHON_WITHOUT_ASSERTIONS) -#define CYTHON_WITHOUT_ASSERTIONS -#endif - -typedef struct {PyObject **p; const char *s; const Py_ssize_t n; const char* encoding; - const char is_unicode; const char is_str; const char intern; } __Pyx_StringTabEntry; - -#define __PYX_DEFAULT_STRING_ENCODING_IS_ASCII 0 -#define __PYX_DEFAULT_STRING_ENCODING_IS_UTF8 0 -#define __PYX_DEFAULT_STRING_ENCODING_IS_DEFAULT (PY_MAJOR_VERSION >= 3 && __PYX_DEFAULT_STRING_ENCODING_IS_UTF8) -#define __PYX_DEFAULT_STRING_ENCODING "" -#define __Pyx_PyObject_FromString __Pyx_PyBytes_FromString -#define __Pyx_PyObject_FromStringAndSize __Pyx_PyBytes_FromStringAndSize -#define __Pyx_uchar_cast(c) ((unsigned char)c) -#define __Pyx_long_cast(x) ((long)x) -#define __Pyx_fits_Py_ssize_t(v, type, is_signed) (\ - (sizeof(type) < sizeof(Py_ssize_t)) ||\ - (sizeof(type) > sizeof(Py_ssize_t) &&\ - likely(v < (type)PY_SSIZE_T_MAX ||\ - v == (type)PY_SSIZE_T_MAX) &&\ - (!is_signed || likely(v > (type)PY_SSIZE_T_MIN ||\ - v == (type)PY_SSIZE_T_MIN))) ||\ - (sizeof(type) == sizeof(Py_ssize_t) &&\ - (is_signed || likely(v < (type)PY_SSIZE_T_MAX ||\ - v == (type)PY_SSIZE_T_MAX))) ) -static CYTHON_INLINE int __Pyx_is_valid_index(Py_ssize_t i, Py_ssize_t limit) { - return (size_t) i < (size_t) limit; -} -#if defined (__cplusplus) && __cplusplus >= 201103L - #include - #define __Pyx_sst_abs(value) std::abs(value) -#elif SIZEOF_INT >= SIZEOF_SIZE_T - #define __Pyx_sst_abs(value) abs(value) -#elif SIZEOF_LONG >= SIZEOF_SIZE_T - #define __Pyx_sst_abs(value) labs(value) -#elif defined (_MSC_VER) - #define __Pyx_sst_abs(value) ((Py_ssize_t)_abs64(value)) -#elif defined (__STDC_VERSION__) && __STDC_VERSION__ >= 199901L - #define __Pyx_sst_abs(value) llabs(value) -#elif defined (__GNUC__) - #define __Pyx_sst_abs(value) __builtin_llabs(value) -#else - #define __Pyx_sst_abs(value) ((value<0) ? -value : value) -#endif -static CYTHON_INLINE const char* __Pyx_PyObject_AsString(PyObject*); -static CYTHON_INLINE const char* __Pyx_PyObject_AsStringAndSize(PyObject*, Py_ssize_t* length); -#define __Pyx_PyByteArray_FromString(s) PyByteArray_FromStringAndSize((const char*)s, strlen((const char*)s)) -#define __Pyx_PyByteArray_FromStringAndSize(s, l) PyByteArray_FromStringAndSize((const char*)s, l) -#define __Pyx_PyBytes_FromString PyBytes_FromString -#define __Pyx_PyBytes_FromStringAndSize PyBytes_FromStringAndSize -static CYTHON_INLINE PyObject* __Pyx_PyUnicode_FromString(const char*); -#if PY_MAJOR_VERSION < 3 - #define __Pyx_PyStr_FromString __Pyx_PyBytes_FromString - #define __Pyx_PyStr_FromStringAndSize __Pyx_PyBytes_FromStringAndSize -#else - #define __Pyx_PyStr_FromString __Pyx_PyUnicode_FromString - #define __Pyx_PyStr_FromStringAndSize __Pyx_PyUnicode_FromStringAndSize -#endif -#define __Pyx_PyBytes_AsWritableString(s) ((char*) PyBytes_AS_STRING(s)) -#define __Pyx_PyBytes_AsWritableSString(s) ((signed char*) PyBytes_AS_STRING(s)) -#define __Pyx_PyBytes_AsWritableUString(s) ((unsigned char*) PyBytes_AS_STRING(s)) -#define __Pyx_PyBytes_AsString(s) ((const char*) PyBytes_AS_STRING(s)) -#define __Pyx_PyBytes_AsSString(s) ((const signed char*) PyBytes_AS_STRING(s)) -#define __Pyx_PyBytes_AsUString(s) ((const unsigned char*) PyBytes_AS_STRING(s)) -#define __Pyx_PyObject_AsWritableString(s) ((char*) __Pyx_PyObject_AsString(s)) -#define __Pyx_PyObject_AsWritableSString(s) ((signed char*) __Pyx_PyObject_AsString(s)) -#define __Pyx_PyObject_AsWritableUString(s) ((unsigned char*) __Pyx_PyObject_AsString(s)) -#define __Pyx_PyObject_AsSString(s) ((const signed char*) __Pyx_PyObject_AsString(s)) -#define __Pyx_PyObject_AsUString(s) ((const unsigned char*) __Pyx_PyObject_AsString(s)) -#define __Pyx_PyObject_FromCString(s) __Pyx_PyObject_FromString((const char*)s) -#define __Pyx_PyBytes_FromCString(s) __Pyx_PyBytes_FromString((const char*)s) -#define __Pyx_PyByteArray_FromCString(s) __Pyx_PyByteArray_FromString((const char*)s) -#define __Pyx_PyStr_FromCString(s) __Pyx_PyStr_FromString((const char*)s) -#define __Pyx_PyUnicode_FromCString(s) __Pyx_PyUnicode_FromString((const char*)s) -static CYTHON_INLINE size_t __Pyx_Py_UNICODE_strlen(const Py_UNICODE *u) { - const Py_UNICODE *u_end = u; - while (*u_end++) ; - return (size_t)(u_end - u - 1); -} -#define __Pyx_PyUnicode_FromUnicode(u) PyUnicode_FromUnicode(u, __Pyx_Py_UNICODE_strlen(u)) -#define __Pyx_PyUnicode_FromUnicodeAndLength PyUnicode_FromUnicode -#define __Pyx_PyUnicode_AsUnicode PyUnicode_AsUnicode -#define __Pyx_NewRef(obj) (Py_INCREF(obj), obj) -#define __Pyx_Owned_Py_None(b) __Pyx_NewRef(Py_None) -static CYTHON_INLINE PyObject * __Pyx_PyBool_FromLong(long b); -static CYTHON_INLINE int __Pyx_PyObject_IsTrue(PyObject*); -static CYTHON_INLINE int __Pyx_PyObject_IsTrueAndDecref(PyObject*); -static CYTHON_INLINE PyObject* __Pyx_PyNumber_IntOrLong(PyObject* x); -#define __Pyx_PySequence_Tuple(obj)\ - (likely(PyTuple_CheckExact(obj)) ? __Pyx_NewRef(obj) : PySequence_Tuple(obj)) -static CYTHON_INLINE Py_ssize_t __Pyx_PyIndex_AsSsize_t(PyObject*); -static CYTHON_INLINE PyObject * __Pyx_PyInt_FromSize_t(size_t); -#if CYTHON_ASSUME_SAFE_MACROS -#define __pyx_PyFloat_AsDouble(x) (PyFloat_CheckExact(x) ? PyFloat_AS_DOUBLE(x) : PyFloat_AsDouble(x)) -#else -#define __pyx_PyFloat_AsDouble(x) PyFloat_AsDouble(x) -#endif -#define __pyx_PyFloat_AsFloat(x) ((float) __pyx_PyFloat_AsDouble(x)) -#if PY_MAJOR_VERSION >= 3 -#define __Pyx_PyNumber_Int(x) (PyLong_CheckExact(x) ? __Pyx_NewRef(x) : PyNumber_Long(x)) -#else -#define __Pyx_PyNumber_Int(x) (PyInt_CheckExact(x) ? __Pyx_NewRef(x) : PyNumber_Int(x)) -#endif -#define __Pyx_PyNumber_Float(x) (PyFloat_CheckExact(x) ? __Pyx_NewRef(x) : PyNumber_Float(x)) -#if PY_MAJOR_VERSION < 3 && __PYX_DEFAULT_STRING_ENCODING_IS_ASCII -static int __Pyx_sys_getdefaultencoding_not_ascii; -static int __Pyx_init_sys_getdefaultencoding_params(void) { - PyObject* sys; - PyObject* default_encoding = NULL; - PyObject* ascii_chars_u = NULL; - PyObject* ascii_chars_b = NULL; - const char* default_encoding_c; - sys = PyImport_ImportModule("sys"); - if (!sys) goto bad; - default_encoding = PyObject_CallMethod(sys, (char*) "getdefaultencoding", NULL); - Py_DECREF(sys); - if (!default_encoding) goto bad; - default_encoding_c = PyBytes_AsString(default_encoding); - if (!default_encoding_c) goto bad; - if (strcmp(default_encoding_c, "ascii") == 0) { - __Pyx_sys_getdefaultencoding_not_ascii = 0; - } else { - char ascii_chars[128]; - int c; - for (c = 0; c < 128; c++) { - ascii_chars[c] = c; - } - __Pyx_sys_getdefaultencoding_not_ascii = 1; - ascii_chars_u = PyUnicode_DecodeASCII(ascii_chars, 128, NULL); - if (!ascii_chars_u) goto bad; - ascii_chars_b = PyUnicode_AsEncodedString(ascii_chars_u, default_encoding_c, NULL); - if (!ascii_chars_b || !PyBytes_Check(ascii_chars_b) || memcmp(ascii_chars, PyBytes_AS_STRING(ascii_chars_b), 128) != 0) { - PyErr_Format( - PyExc_ValueError, - "This module compiled with c_string_encoding=ascii, but default encoding '%.200s' is not a superset of ascii.", - default_encoding_c); - goto bad; - } - Py_DECREF(ascii_chars_u); - Py_DECREF(ascii_chars_b); - } - Py_DECREF(default_encoding); - return 0; -bad: - Py_XDECREF(default_encoding); - Py_XDECREF(ascii_chars_u); - Py_XDECREF(ascii_chars_b); - return -1; -} -#endif -#if __PYX_DEFAULT_STRING_ENCODING_IS_DEFAULT && PY_MAJOR_VERSION >= 3 -#define __Pyx_PyUnicode_FromStringAndSize(c_str, size) PyUnicode_DecodeUTF8(c_str, size, NULL) -#else -#define __Pyx_PyUnicode_FromStringAndSize(c_str, size) PyUnicode_Decode(c_str, size, __PYX_DEFAULT_STRING_ENCODING, NULL) -#if __PYX_DEFAULT_STRING_ENCODING_IS_DEFAULT -static char* __PYX_DEFAULT_STRING_ENCODING; -static int __Pyx_init_sys_getdefaultencoding_params(void) { - PyObject* sys; - PyObject* default_encoding = NULL; - char* default_encoding_c; - sys = PyImport_ImportModule("sys"); - if (!sys) goto bad; - default_encoding = PyObject_CallMethod(sys, (char*) (const char*) "getdefaultencoding", NULL); - Py_DECREF(sys); - if (!default_encoding) goto bad; - default_encoding_c = PyBytes_AsString(default_encoding); - if (!default_encoding_c) goto bad; - __PYX_DEFAULT_STRING_ENCODING = (char*) malloc(strlen(default_encoding_c) + 1); - if (!__PYX_DEFAULT_STRING_ENCODING) goto bad; - strcpy(__PYX_DEFAULT_STRING_ENCODING, default_encoding_c); - Py_DECREF(default_encoding); - return 0; -bad: - Py_XDECREF(default_encoding); - return -1; -} -#endif -#endif - - -/* Test for GCC > 2.95 */ -#if defined(__GNUC__) && (__GNUC__ > 2 || (__GNUC__ == 2 && (__GNUC_MINOR__ > 95))) - #define likely(x) __builtin_expect(!!(x), 1) - #define unlikely(x) __builtin_expect(!!(x), 0) -#else /* !__GNUC__ or GCC < 2.95 */ - #define likely(x) (x) - #define unlikely(x) (x) -#endif /* __GNUC__ */ -static CYTHON_INLINE void __Pyx_pretend_to_initialize(void* ptr) { (void)ptr; } - -static PyObject *__pyx_m = NULL; -static PyObject *__pyx_d; -static PyObject *__pyx_b; -static PyObject *__pyx_cython_runtime = NULL; -static PyObject *__pyx_empty_tuple; -static PyObject *__pyx_empty_bytes; -static PyObject *__pyx_empty_unicode; -static int __pyx_lineno; -static int __pyx_clineno = 0; -static const char * __pyx_cfilenm= __FILE__; -static const char *__pyx_filename; - - -static const char *__pyx_f[] = { - "tcp.pyx", - "stringsource", -}; - -/*--- Type declarations ---*/ -struct __pyx_obj_8pmercury_9protocols_3tcp_TCP; - -/* "pmercury/protocols/tcp.pyx":21 - * MAX_CACHED_RESULTS = 2**24 - * - * cdef class TCP: # <<<<<<<<<<<<<< - * cdef dict fp_db - * - */ -struct __pyx_obj_8pmercury_9protocols_3tcp_TCP { - PyObject_HEAD - PyObject *fp_db; -}; - - -/* --- Runtime support code (head) --- */ -/* Refnanny.proto */ -#ifndef CYTHON_REFNANNY - #define CYTHON_REFNANNY 0 -#endif -#if CYTHON_REFNANNY - typedef struct { - void (*INCREF)(void*, PyObject*, int); - void (*DECREF)(void*, PyObject*, int); - void (*GOTREF)(void*, PyObject*, int); - void (*GIVEREF)(void*, PyObject*, int); - void* (*SetupContext)(const char*, int, const char*); - void (*FinishContext)(void**); - } __Pyx_RefNannyAPIStruct; - static __Pyx_RefNannyAPIStruct *__Pyx_RefNanny = NULL; - static __Pyx_RefNannyAPIStruct *__Pyx_RefNannyImportAPI(const char *modname); - #define __Pyx_RefNannyDeclarations void *__pyx_refnanny = NULL; -#ifdef WITH_THREAD - #define __Pyx_RefNannySetupContext(name, acquire_gil)\ - if (acquire_gil) {\ - PyGILState_STATE __pyx_gilstate_save = PyGILState_Ensure();\ - __pyx_refnanny = __Pyx_RefNanny->SetupContext((name), __LINE__, __FILE__);\ - PyGILState_Release(__pyx_gilstate_save);\ - } else {\ - __pyx_refnanny = __Pyx_RefNanny->SetupContext((name), __LINE__, __FILE__);\ - } -#else - #define __Pyx_RefNannySetupContext(name, acquire_gil)\ - __pyx_refnanny = __Pyx_RefNanny->SetupContext((name), __LINE__, __FILE__) -#endif - #define __Pyx_RefNannyFinishContext()\ - __Pyx_RefNanny->FinishContext(&__pyx_refnanny) - #define __Pyx_INCREF(r) __Pyx_RefNanny->INCREF(__pyx_refnanny, (PyObject *)(r), __LINE__) - #define __Pyx_DECREF(r) __Pyx_RefNanny->DECREF(__pyx_refnanny, (PyObject *)(r), __LINE__) - #define __Pyx_GOTREF(r) __Pyx_RefNanny->GOTREF(__pyx_refnanny, (PyObject *)(r), __LINE__) - #define __Pyx_GIVEREF(r) __Pyx_RefNanny->GIVEREF(__pyx_refnanny, (PyObject *)(r), __LINE__) - #define __Pyx_XINCREF(r) do { if((r) != NULL) {__Pyx_INCREF(r); }} while(0) - #define __Pyx_XDECREF(r) do { if((r) != NULL) {__Pyx_DECREF(r); }} while(0) - #define __Pyx_XGOTREF(r) do { if((r) != NULL) {__Pyx_GOTREF(r); }} while(0) - #define __Pyx_XGIVEREF(r) do { if((r) != NULL) {__Pyx_GIVEREF(r);}} while(0) -#else - #define __Pyx_RefNannyDeclarations - #define __Pyx_RefNannySetupContext(name, acquire_gil) - #define __Pyx_RefNannyFinishContext() - #define __Pyx_INCREF(r) Py_INCREF(r) - #define __Pyx_DECREF(r) Py_DECREF(r) - #define __Pyx_GOTREF(r) - #define __Pyx_GIVEREF(r) - #define __Pyx_XINCREF(r) Py_XINCREF(r) - #define __Pyx_XDECREF(r) Py_XDECREF(r) - #define __Pyx_XGOTREF(r) - #define __Pyx_XGIVEREF(r) -#endif -#define __Pyx_XDECREF_SET(r, v) do {\ - PyObject *tmp = (PyObject *) r;\ - r = v; __Pyx_XDECREF(tmp);\ - } while (0) -#define __Pyx_DECREF_SET(r, v) do {\ - PyObject *tmp = (PyObject *) r;\ - r = v; __Pyx_DECREF(tmp);\ - } while (0) -#define __Pyx_CLEAR(r) do { PyObject* tmp = ((PyObject*)(r)); r = NULL; __Pyx_DECREF(tmp);} while(0) -#define __Pyx_XCLEAR(r) do { if((r) != NULL) {PyObject* tmp = ((PyObject*)(r)); r = NULL; __Pyx_DECREF(tmp);}} while(0) - -/* PyObjectGetAttrStr.proto */ -#if CYTHON_USE_TYPE_SLOTS -static CYTHON_INLINE PyObject* __Pyx_PyObject_GetAttrStr(PyObject* obj, PyObject* attr_name); -#else -#define __Pyx_PyObject_GetAttrStr(o,n) PyObject_GetAttr(o,n) -#endif - -/* GetBuiltinName.proto */ -static PyObject *__Pyx_GetBuiltinName(PyObject *name); - -/* RaiseDoubleKeywords.proto */ -static void __Pyx_RaiseDoubleKeywordsError(const char* func_name, PyObject* kw_name); - -/* ParseKeywords.proto */ -static int __Pyx_ParseOptionalKeywords(PyObject *kwds, PyObject **argnames[],\ - PyObject *kwds2, PyObject *values[], Py_ssize_t num_pos_args,\ - const char* function_name); - -/* RaiseArgTupleInvalid.proto */ -static void __Pyx_RaiseArgtupleInvalid(const char* func_name, int exact, - Py_ssize_t num_min, Py_ssize_t num_max, Py_ssize_t num_found); - -/* PyCFunctionFastCall.proto */ -#if CYTHON_FAST_PYCCALL -static CYTHON_INLINE PyObject *__Pyx_PyCFunction_FastCall(PyObject *func, PyObject **args, Py_ssize_t nargs); -#else -#define __Pyx_PyCFunction_FastCall(func, args, nargs) (assert(0), NULL) -#endif - -/* PyFunctionFastCall.proto */ -#if CYTHON_FAST_PYCALL -#define __Pyx_PyFunction_FastCall(func, args, nargs)\ - __Pyx_PyFunction_FastCallDict((func), (args), (nargs), NULL) -#if 1 || PY_VERSION_HEX < 0x030600B1 -static PyObject *__Pyx_PyFunction_FastCallDict(PyObject *func, PyObject **args, Py_ssize_t nargs, PyObject *kwargs); -#else -#define __Pyx_PyFunction_FastCallDict(func, args, nargs, kwargs) _PyFunction_FastCallDict(func, args, nargs, kwargs) -#endif -#define __Pyx_BUILD_ASSERT_EXPR(cond)\ - (sizeof(char [1 - 2*!(cond)]) - 1) -#ifndef Py_MEMBER_SIZE -#define Py_MEMBER_SIZE(type, member) sizeof(((type *)0)->member) -#endif - static size_t __pyx_pyframe_localsplus_offset = 0; - #include "frameobject.h" - #define __Pxy_PyFrame_Initialize_Offsets()\ - ((void)__Pyx_BUILD_ASSERT_EXPR(sizeof(PyFrameObject) == offsetof(PyFrameObject, f_localsplus) + Py_MEMBER_SIZE(PyFrameObject, f_localsplus)),\ - (void)(__pyx_pyframe_localsplus_offset = ((size_t)PyFrame_Type.tp_basicsize) - Py_MEMBER_SIZE(PyFrameObject, f_localsplus))) - #define __Pyx_PyFrame_GetLocalsplus(frame)\ - (assert(__pyx_pyframe_localsplus_offset), (PyObject **)(((char *)(frame)) + __pyx_pyframe_localsplus_offset)) -#endif - -/* PyObjectCall.proto */ -#if CYTHON_COMPILING_IN_CPYTHON -static CYTHON_INLINE PyObject* __Pyx_PyObject_Call(PyObject *func, PyObject *arg, PyObject *kw); -#else -#define __Pyx_PyObject_Call(func, arg, kw) PyObject_Call(func, arg, kw) -#endif - -/* PyObjectCall2Args.proto */ -static CYTHON_UNUSED PyObject* __Pyx_PyObject_Call2Args(PyObject* function, PyObject* arg1, PyObject* arg2); - -/* PyObjectCallMethO.proto */ -#if CYTHON_COMPILING_IN_CPYTHON -static CYTHON_INLINE PyObject* __Pyx_PyObject_CallMethO(PyObject *func, PyObject *arg); -#endif - -/* PyObjectCallOneArg.proto */ -static CYTHON_INLINE PyObject* __Pyx_PyObject_CallOneArg(PyObject *func, PyObject *arg); - -/* PyDictVersioning.proto */ -#if CYTHON_USE_DICT_VERSIONS && CYTHON_USE_TYPE_SLOTS -#define __PYX_DICT_VERSION_INIT ((PY_UINT64_T) -1) -#define __PYX_GET_DICT_VERSION(dict) (((PyDictObject*)(dict))->ma_version_tag) -#define __PYX_UPDATE_DICT_CACHE(dict, value, cache_var, version_var)\ - (version_var) = __PYX_GET_DICT_VERSION(dict);\ - (cache_var) = (value); -#define __PYX_PY_DICT_LOOKUP_IF_MODIFIED(VAR, DICT, LOOKUP) {\ - static PY_UINT64_T __pyx_dict_version = 0;\ - static PyObject *__pyx_dict_cached_value = NULL;\ - if (likely(__PYX_GET_DICT_VERSION(DICT) == __pyx_dict_version)) {\ - (VAR) = __pyx_dict_cached_value;\ - } else {\ - (VAR) = __pyx_dict_cached_value = (LOOKUP);\ - __pyx_dict_version = __PYX_GET_DICT_VERSION(DICT);\ - }\ -} -static CYTHON_INLINE PY_UINT64_T __Pyx_get_tp_dict_version(PyObject *obj); -static CYTHON_INLINE PY_UINT64_T __Pyx_get_object_dict_version(PyObject *obj); -static CYTHON_INLINE int __Pyx_object_dict_version_matches(PyObject* obj, PY_UINT64_T tp_dict_version, PY_UINT64_T obj_dict_version); -#else -#define __PYX_GET_DICT_VERSION(dict) (0) -#define __PYX_UPDATE_DICT_CACHE(dict, value, cache_var, version_var) -#define __PYX_PY_DICT_LOOKUP_IF_MODIFIED(VAR, DICT, LOOKUP) (VAR) = (LOOKUP); -#endif - -/* GetModuleGlobalName.proto */ -#if CYTHON_USE_DICT_VERSIONS -#define __Pyx_GetModuleGlobalName(var, name) {\ - static PY_UINT64_T __pyx_dict_version = 0;\ - static PyObject *__pyx_dict_cached_value = NULL;\ - (var) = (likely(__pyx_dict_version == __PYX_GET_DICT_VERSION(__pyx_d))) ?\ - (likely(__pyx_dict_cached_value) ? __Pyx_NewRef(__pyx_dict_cached_value) : __Pyx_GetBuiltinName(name)) :\ - __Pyx__GetModuleGlobalName(name, &__pyx_dict_version, &__pyx_dict_cached_value);\ -} -#define __Pyx_GetModuleGlobalNameUncached(var, name) {\ - PY_UINT64_T __pyx_dict_version;\ - PyObject *__pyx_dict_cached_value;\ - (var) = __Pyx__GetModuleGlobalName(name, &__pyx_dict_version, &__pyx_dict_cached_value);\ -} -static PyObject *__Pyx__GetModuleGlobalName(PyObject *name, PY_UINT64_T *dict_version, PyObject **dict_cached_value); -#else -#define __Pyx_GetModuleGlobalName(var, name) (var) = __Pyx__GetModuleGlobalName(name) -#define __Pyx_GetModuleGlobalNameUncached(var, name) (var) = __Pyx__GetModuleGlobalName(name) -static CYTHON_INLINE PyObject *__Pyx__GetModuleGlobalName(PyObject *name); -#endif - -/* DictGetItem.proto */ -#if PY_MAJOR_VERSION >= 3 && !CYTHON_COMPILING_IN_PYPY -static PyObject *__Pyx_PyDict_GetItem(PyObject *d, PyObject* key); -#define __Pyx_PyObject_Dict_GetItem(obj, name)\ - (likely(PyDict_CheckExact(obj)) ?\ - __Pyx_PyDict_GetItem(obj, name) : PyObject_GetItem(obj, name)) -#else -#define __Pyx_PyDict_GetItem(d, key) PyObject_GetItem(d, key) -#define __Pyx_PyObject_Dict_GetItem(obj, name) PyObject_GetItem(obj, name) -#endif - -/* ListAppend.proto */ -#if CYTHON_USE_PYLIST_INTERNALS && CYTHON_ASSUME_SAFE_MACROS -static CYTHON_INLINE int __Pyx_PyList_Append(PyObject* list, PyObject* x) { - PyListObject* L = (PyListObject*) list; - Py_ssize_t len = Py_SIZE(list); - if (likely(L->allocated > len) & likely(len > (L->allocated >> 1))) { - Py_INCREF(x); - PyList_SET_ITEM(list, len, x); - Py_SIZE(list) = len+1; - return 0; - } - return PyList_Append(list, x); -} -#else -#define __Pyx_PyList_Append(L,x) PyList_Append(L,x) -#endif - -/* GetItemInt.proto */ -#define __Pyx_GetItemInt(o, i, type, is_signed, to_py_func, is_list, wraparound, boundscheck)\ - (__Pyx_fits_Py_ssize_t(i, type, is_signed) ?\ - __Pyx_GetItemInt_Fast(o, (Py_ssize_t)i, is_list, wraparound, boundscheck) :\ - (is_list ? (PyErr_SetString(PyExc_IndexError, "list index out of range"), (PyObject*)NULL) :\ - __Pyx_GetItemInt_Generic(o, to_py_func(i)))) -#define __Pyx_GetItemInt_List(o, i, type, is_signed, to_py_func, is_list, wraparound, boundscheck)\ - (__Pyx_fits_Py_ssize_t(i, type, is_signed) ?\ - __Pyx_GetItemInt_List_Fast(o, (Py_ssize_t)i, wraparound, boundscheck) :\ - (PyErr_SetString(PyExc_IndexError, "list index out of range"), (PyObject*)NULL)) -static CYTHON_INLINE PyObject *__Pyx_GetItemInt_List_Fast(PyObject *o, Py_ssize_t i, - int wraparound, int boundscheck); -#define __Pyx_GetItemInt_Tuple(o, i, type, is_signed, to_py_func, is_list, wraparound, boundscheck)\ - (__Pyx_fits_Py_ssize_t(i, type, is_signed) ?\ - __Pyx_GetItemInt_Tuple_Fast(o, (Py_ssize_t)i, wraparound, boundscheck) :\ - (PyErr_SetString(PyExc_IndexError, "tuple index out of range"), (PyObject*)NULL)) -static CYTHON_INLINE PyObject *__Pyx_GetItemInt_Tuple_Fast(PyObject *o, Py_ssize_t i, - int wraparound, int boundscheck); -static PyObject *__Pyx_GetItemInt_Generic(PyObject *o, PyObject* j); -static CYTHON_INLINE PyObject *__Pyx_GetItemInt_Fast(PyObject *o, Py_ssize_t i, - int is_list, int wraparound, int boundscheck); - -/* ObjectGetItem.proto */ -#if CYTHON_USE_TYPE_SLOTS -static CYTHON_INLINE PyObject *__Pyx_PyObject_GetItem(PyObject *obj, PyObject* key); -#else -#define __Pyx_PyObject_GetItem(obj, key) PyObject_GetItem(obj, key) -#endif - -/* RaiseTooManyValuesToUnpack.proto */ -static CYTHON_INLINE void __Pyx_RaiseTooManyValuesError(Py_ssize_t expected); - -/* RaiseNeedMoreValuesToUnpack.proto */ -static CYTHON_INLINE void __Pyx_RaiseNeedMoreValuesError(Py_ssize_t index); - -/* IterFinish.proto */ -static CYTHON_INLINE int __Pyx_IterFinish(void); - -/* UnpackItemEndCheck.proto */ -static int __Pyx_IternextUnpackEndCheck(PyObject *retval, Py_ssize_t expected); - -/* SliceTupleAndList.proto */ -#if CYTHON_COMPILING_IN_CPYTHON -static CYTHON_INLINE PyObject* __Pyx_PyList_GetSlice(PyObject* src, Py_ssize_t start, Py_ssize_t stop); -static CYTHON_INLINE PyObject* __Pyx_PyTuple_GetSlice(PyObject* src, Py_ssize_t start, Py_ssize_t stop); -#else -#define __Pyx_PyList_GetSlice(seq, start, stop) PySequence_GetSlice(seq, start, stop) -#define __Pyx_PyTuple_GetSlice(seq, start, stop) PySequence_GetSlice(seq, start, stop) -#endif - -/* PyDictContains.proto */ -static CYTHON_INLINE int __Pyx_PyDict_ContainsTF(PyObject* item, PyObject* dict, int eq) { - int result = PyDict_Contains(dict, item); - return unlikely(result < 0) ? result : (result == (eq == Py_EQ)); -} - -/* PyIntCompare.proto */ -static CYTHON_INLINE PyObject* __Pyx_PyInt_NeObjC(PyObject *op1, PyObject *op2, long intval, long inplace); - -/* PyIntBinop.proto */ -#if !CYTHON_COMPILING_IN_PYPY -static PyObject* __Pyx_PyInt_AddObjC(PyObject *op1, PyObject *op2, long intval, int inplace, int zerodivision_check); -#else -#define __Pyx_PyInt_AddObjC(op1, op2, intval, inplace, zerodivision_check)\ - (inplace ? PyNumber_InPlaceAdd(op1, op2) : PyNumber_Add(op1, op2)) -#endif - -/* BuildPyUnicode.proto */ -static PyObject* __Pyx_PyUnicode_BuildFromAscii(Py_ssize_t ulength, char* chars, int clength, - int prepend_sign, char padding_char); - -/* CIntToPyUnicode.proto */ -static CYTHON_INLINE PyObject* __Pyx_PyUnicode_From_unsigned_char(unsigned char value, Py_ssize_t width, char padding_char, char format_char); - -/* IncludeStringH.proto */ -#include - -/* JoinPyUnicode.proto */ -static PyObject* __Pyx_PyUnicode_Join(PyObject* value_tuple, Py_ssize_t value_count, Py_ssize_t result_ulength, - Py_UCS4 max_char); - -/* CIntToPyUnicode.proto */ -static CYTHON_INLINE PyObject* __Pyx_PyUnicode_From_unsigned_int(unsigned int value, Py_ssize_t width, char padding_char, char format_char); - -/* PyObjectCallNoArg.proto */ -#if CYTHON_COMPILING_IN_CPYTHON -static CYTHON_INLINE PyObject* __Pyx_PyObject_CallNoArg(PyObject *func); -#else -#define __Pyx_PyObject_CallNoArg(func) __Pyx_PyObject_Call(func, __pyx_empty_tuple, NULL) -#endif - -/* PyObjectFormatAndDecref.proto */ -static CYTHON_INLINE PyObject* __Pyx_PyObject_FormatSimpleAndDecref(PyObject* s, PyObject* f); -static CYTHON_INLINE PyObject* __Pyx_PyObject_FormatAndDecref(PyObject* s, PyObject* f); - -/* PyErrExceptionMatches.proto */ -#if CYTHON_FAST_THREAD_STATE -#define __Pyx_PyErr_ExceptionMatches(err) __Pyx_PyErr_ExceptionMatchesInState(__pyx_tstate, err) -static CYTHON_INLINE int __Pyx_PyErr_ExceptionMatchesInState(PyThreadState* tstate, PyObject* err); -#else -#define __Pyx_PyErr_ExceptionMatches(err) PyErr_ExceptionMatches(err) -#endif - -/* PyThreadStateGet.proto */ -#if CYTHON_FAST_THREAD_STATE -#define __Pyx_PyThreadState_declare PyThreadState *__pyx_tstate; -#define __Pyx_PyThreadState_assign __pyx_tstate = __Pyx_PyThreadState_Current; -#define __Pyx_PyErr_Occurred() __pyx_tstate->curexc_type -#else -#define __Pyx_PyThreadState_declare -#define __Pyx_PyThreadState_assign -#define __Pyx_PyErr_Occurred() PyErr_Occurred() -#endif - -/* PyErrFetchRestore.proto */ -#if CYTHON_FAST_THREAD_STATE -#define __Pyx_PyErr_Clear() __Pyx_ErrRestore(NULL, NULL, NULL) -#define __Pyx_ErrRestoreWithState(type, value, tb) __Pyx_ErrRestoreInState(PyThreadState_GET(), type, value, tb) -#define __Pyx_ErrFetchWithState(type, value, tb) __Pyx_ErrFetchInState(PyThreadState_GET(), type, value, tb) -#define __Pyx_ErrRestore(type, value, tb) __Pyx_ErrRestoreInState(__pyx_tstate, type, value, tb) -#define __Pyx_ErrFetch(type, value, tb) __Pyx_ErrFetchInState(__pyx_tstate, type, value, tb) -static CYTHON_INLINE void __Pyx_ErrRestoreInState(PyThreadState *tstate, PyObject *type, PyObject *value, PyObject *tb); -static CYTHON_INLINE void __Pyx_ErrFetchInState(PyThreadState *tstate, PyObject **type, PyObject **value, PyObject **tb); -#if CYTHON_COMPILING_IN_CPYTHON -#define __Pyx_PyErr_SetNone(exc) (Py_INCREF(exc), __Pyx_ErrRestore((exc), NULL, NULL)) -#else -#define __Pyx_PyErr_SetNone(exc) PyErr_SetNone(exc) -#endif -#else -#define __Pyx_PyErr_Clear() PyErr_Clear() -#define __Pyx_PyErr_SetNone(exc) PyErr_SetNone(exc) -#define __Pyx_ErrRestoreWithState(type, value, tb) PyErr_Restore(type, value, tb) -#define __Pyx_ErrFetchWithState(type, value, tb) PyErr_Fetch(type, value, tb) -#define __Pyx_ErrRestoreInState(tstate, type, value, tb) PyErr_Restore(type, value, tb) -#define __Pyx_ErrFetchInState(tstate, type, value, tb) PyErr_Fetch(type, value, tb) -#define __Pyx_ErrRestore(type, value, tb) PyErr_Restore(type, value, tb) -#define __Pyx_ErrFetch(type, value, tb) PyErr_Fetch(type, value, tb) -#endif - -/* GetAttr.proto */ -static CYTHON_INLINE PyObject *__Pyx_GetAttr(PyObject *, PyObject *); - -/* GetAttr3.proto */ -static CYTHON_INLINE PyObject *__Pyx_GetAttr3(PyObject *, PyObject *, PyObject *); - -/* Import.proto */ -static PyObject *__Pyx_Import(PyObject *name, PyObject *from_list, int level); - -/* ImportFrom.proto */ -static PyObject* __Pyx_ImportFrom(PyObject* module, PyObject* name); - -/* RaiseException.proto */ -static void __Pyx_Raise(PyObject *type, PyObject *value, PyObject *tb, PyObject *cause); - -/* HasAttr.proto */ -static CYTHON_INLINE int __Pyx_HasAttr(PyObject *, PyObject *); - -/* PyObject_GenericGetAttrNoDict.proto */ -#if CYTHON_USE_TYPE_SLOTS && CYTHON_USE_PYTYPE_LOOKUP && PY_VERSION_HEX < 0x03070000 -static CYTHON_INLINE PyObject* __Pyx_PyObject_GenericGetAttrNoDict(PyObject* obj, PyObject* attr_name); -#else -#define __Pyx_PyObject_GenericGetAttrNoDict PyObject_GenericGetAttr -#endif - -/* PyObject_GenericGetAttr.proto */ -#if CYTHON_USE_TYPE_SLOTS && CYTHON_USE_PYTYPE_LOOKUP && PY_VERSION_HEX < 0x03070000 -static PyObject* __Pyx_PyObject_GenericGetAttr(PyObject* obj, PyObject* attr_name); -#else -#define __Pyx_PyObject_GenericGetAttr PyObject_GenericGetAttr -#endif - -/* SetupReduce.proto */ -static int __Pyx_setup_reduce(PyObject* type_obj); - -/* PyObjectGetMethod.proto */ -static int __Pyx_PyObject_GetMethod(PyObject *obj, PyObject *name, PyObject **method); - -/* PyObjectCallMethod1.proto */ -static PyObject* __Pyx_PyObject_CallMethod1(PyObject* obj, PyObject* method_name, PyObject* arg); - -/* append.proto */ -static CYTHON_INLINE int __Pyx_PyObject_Append(PyObject* L, PyObject* x); - -/* GetNameInClass.proto */ -#define __Pyx_GetNameInClass(var, nmspace, name) (var) = __Pyx__GetNameInClass(nmspace, name) -static PyObject *__Pyx__GetNameInClass(PyObject *nmspace, PyObject *name); - -/* CLineInTraceback.proto */ -#ifdef CYTHON_CLINE_IN_TRACEBACK -#define __Pyx_CLineForTraceback(tstate, c_line) (((CYTHON_CLINE_IN_TRACEBACK)) ? c_line : 0) -#else -static int __Pyx_CLineForTraceback(PyThreadState *tstate, int c_line); -#endif - -/* CodeObjectCache.proto */ -typedef struct { - PyCodeObject* code_object; - int code_line; -} __Pyx_CodeObjectCacheEntry; -struct __Pyx_CodeObjectCache { - int count; - int max_count; - __Pyx_CodeObjectCacheEntry* entries; -}; -static struct __Pyx_CodeObjectCache __pyx_code_cache = {0,0,NULL}; -static int __pyx_bisect_code_objects(__Pyx_CodeObjectCacheEntry* entries, int count, int code_line); -static PyCodeObject *__pyx_find_code_object(int code_line); -static void __pyx_insert_code_object(int code_line, PyCodeObject* code_object); - -/* AddTraceback.proto */ -static void __Pyx_AddTraceback(const char *funcname, int c_line, - int py_line, const char *filename); - -/* CIntToPy.proto */ -static CYTHON_INLINE PyObject* __Pyx_PyInt_From_long(long value); - -/* CIntToPy.proto */ -static CYTHON_INLINE PyObject* __Pyx_PyInt_From_unsigned_int(unsigned int value); - -/* CIntFromPy.proto */ -static CYTHON_INLINE unsigned int __Pyx_PyInt_As_unsigned_int(PyObject *); - -/* CIntFromPy.proto */ -static CYTHON_INLINE long __Pyx_PyInt_As_long(PyObject *); - -/* CIntFromPy.proto */ -static CYTHON_INLINE int __Pyx_PyInt_As_int(PyObject *); - -/* FastTypeChecks.proto */ -#if CYTHON_COMPILING_IN_CPYTHON -#define __Pyx_TypeCheck(obj, type) __Pyx_IsSubtype(Py_TYPE(obj), (PyTypeObject *)type) -static CYTHON_INLINE int __Pyx_IsSubtype(PyTypeObject *a, PyTypeObject *b); -static CYTHON_INLINE int __Pyx_PyErr_GivenExceptionMatches(PyObject *err, PyObject *type); -static CYTHON_INLINE int __Pyx_PyErr_GivenExceptionMatches2(PyObject *err, PyObject *type1, PyObject *type2); -#else -#define __Pyx_TypeCheck(obj, type) PyObject_TypeCheck(obj, (PyTypeObject *)type) -#define __Pyx_PyErr_GivenExceptionMatches(err, type) PyErr_GivenExceptionMatches(err, type) -#define __Pyx_PyErr_GivenExceptionMatches2(err, type1, type2) (PyErr_GivenExceptionMatches(err, type1) || PyErr_GivenExceptionMatches(err, type2)) -#endif -#define __Pyx_PyException_Check(obj) __Pyx_TypeCheck(obj, PyExc_Exception) - -/* CStringEquals.proto */ -static CYTHON_INLINE int __Pyx_StrEq(const char *, const char *); - -/* CheckBinaryVersion.proto */ -static int __Pyx_check_binary_version(void); - -/* InitStrings.proto */ -static int __Pyx_InitStrings(__Pyx_StringTabEntry *t); - - -/* Module declarations from 'pmercury.protocols.tcp' */ -static PyTypeObject *__pyx_ptype_8pmercury_9protocols_3tcp_TCP = 0; -static PyObject *__pyx_f_8pmercury_9protocols_3tcp___pyx_unpickle_TCP__set_state(struct __pyx_obj_8pmercury_9protocols_3tcp_TCP *, PyObject *); /*proto*/ -#define __Pyx_MODULE_NAME "pmercury.protocols.tcp" -extern int __pyx_module_is_main_pmercury__protocols__tcp; -int __pyx_module_is_main_pmercury__protocols__tcp = 0; - -/* Implementation of 'pmercury.protocols.tcp' */ -static PyObject *__pyx_builtin_staticmethod; -static const char __pyx_k_[] = "("; -static const char __pyx_k_c[] = "c"; -static const char __pyx_k__2[] = ")"; -static const char __pyx_k__3[] = ""; -static const char __pyx_k__4[] = "/../"; -static const char __pyx_k__5[] = "*"; -static const char __pyx_k_os[] = "os"; -static const char __pyx_k_02x[] = "02x"; -static const char __pyx_k_TCP[] = "TCP"; -static const char __pyx_k_buf[] = "buf"; -static const char __pyx_k_hex[] = "hex"; -static const char __pyx_k_new[] = "__new__"; -static const char __pyx_k_sys[] = "sys"; -static const char __pyx_k_data[] = "data"; -static const char __pyx_k_dict[] = "__dict__"; -static const char __pyx_k_file[] = "__file__"; -static const char __pyx_k_json[] = "json"; -static const char __pyx_k_kind[] = "kind"; -static const char __pyx_k_main[] = "__main__"; -static const char __pyx_k_name[] = "__name__"; -static const char __pyx_k_path[] = "path"; -static const char __pyx_k_sort[] = "sort"; -static const char __pyx_k_test[] = "__test__"; -static const char __pyx_k_02x_2[] = "(%02x)"; -static const char __pyx_k_debug[] = "debug"; -static const char __pyx_k_loads[] = "loads"; -static const char __pyx_k_popen[] = "popen"; -static const char __pyx_k_score[] = "score"; -static const char __pyx_k_append[] = "append"; -static const char __pyx_k_approx[] = "approx"; -static const char __pyx_k_config[] = "config"; -static const char __pyx_k_dst_ip[] = "dst_ip"; -static const char __pyx_k_fp_str[] = "fp_str_"; -static const char __pyx_k_import[] = "__import__"; -static const char __pyx_k_length[] = "length"; -static const char __pyx_k_offset[] = "offset"; -static const char __pyx_k_pickle[] = "pickle"; -static const char __pyx_k_reduce[] = "__reduce__"; -static const char __pyx_k_update[] = "update"; -static const char __pyx_k_zcat_s[] = "zcat %s"; -static const char __pyx_k_Unknown[] = "Unknown"; -static const char __pyx_k_abspath[] = "abspath"; -static const char __pyx_k_context[] = "context_"; -static const char __pyx_k_dirname[] = "dirname"; -static const char __pyx_k_maxsize[] = "maxsize"; -static const char __pyx_k_os_info[] = "os_info"; -static const char __pyx_k_reverse[] = "reverse"; -static const char __pyx_k_tcp_pyx[] = "tcp.pyx"; -static const char __pyx_k_Protocol[] = "Protocol"; -static const char __pyx_k_data_len[] = "data_len"; -static const char __pyx_k_dst_port[] = "dst_port"; -static const char __pyx_k_endpoint[] = "endpoint"; -static const char __pyx_k_fp_str_2[] = "fp_str"; -static const char __pyx_k_getstate[] = "__getstate__"; -static const char __pyx_k_pyx_type[] = "__pyx_type"; -static const char __pyx_k_setstate[] = "__setstate__"; -static const char __pyx_k_str_repr[] = "str_repr"; -static const char __pyx_k_functools[] = "functools"; -static const char __pyx_k_list_oses[] = "list_oses"; -static const char __pyx_k_lru_cache[] = "lru_cache"; -static const char __pyx_k_pyx_state[] = "__pyx_state"; -static const char __pyx_k_reduce_ex[] = "__reduce_ex__"; -static const char __pyx_k_list_procs[] = "list_procs"; -static const char __pyx_k_pyx_result[] = "__pyx_result"; -static const char __pyx_k_OrderedDict[] = "OrderedDict"; -static const char __pyx_k_PickleError[] = "PickleError"; -static const char __pyx_k_collections[] = "collections"; -static const char __pyx_k_fingerprint[] = "fingerprint"; -static const char __pyx_k_fp_database[] = "fp_database"; -static const char __pyx_k_os_identify[] = "os_identify"; -static const char __pyx_k_total_count[] = "total_count"; -static const char __pyx_k_pyx_checksum[] = "__pyx_checksum"; -static const char __pyx_k_staticmethod[] = "staticmethod"; -static const char __pyx_k_stringsource[] = "stringsource"; -static const char __pyx_k_approx_fp_str[] = "approx_fp_str"; -static const char __pyx_k_load_database[] = "load_database"; -static const char __pyx_k_probable_oses[] = "probable_oses"; -static const char __pyx_k_reduce_cython[] = "__reduce_cython__"; -static const char __pyx_k_clean_os_entry[] = "clean_os_entry"; -static const char __pyx_k_proto_identify[] = "proto_identify"; -static const char __pyx_k_pyx_PickleError[] = "__pyx_PickleError"; -static const char __pyx_k_setstate_cython[] = "__setstate_cython__"; -static const char __pyx_k_pyx_unpickle_TCP[] = "__pyx_unpickle_TCP"; -static const char __pyx_k_MAX_CACHED_RESULTS[] = "MAX_CACHED_RESULTS"; -static const char __pyx_k_cline_in_traceback[] = "cline_in_traceback"; -static const char __pyx_k_find_resource_path[] = "find_resource_path"; -static const char __pyx_k_get_database_entry[] = "get_database_entry"; -static const char __pyx_k_pmercury_protocols_tcp[] = "pmercury.protocols.tcp"; -static const char __pyx_k_pmercury_protocols_protocol[] = "pmercury.protocols.protocol"; -static const char __pyx_k_pmercury_utils_pmercury_utils[] = "pmercury.utils.pmercury_utils"; -static const char __pyx_k_Copyright_c_2019_Cisco_Systems[] = "\n Copyright (c) 2019 Cisco Systems, Inc. All rights reserved.\n License at https://github.com/cisco/mercury/blob/master/LICENSE\n"; -static const char __pyx_k_Incompatible_checksums_s_vs_0x05[] = "Incompatible checksums (%s vs 0x0525e0f = (fp_db))"; -static PyObject *__pyx_kp_u_; -static PyObject *__pyx_kp_u_02x; -static PyObject *__pyx_kp_u_02x_2; -static PyObject *__pyx_kp_s_Incompatible_checksums_s_vs_0x05; -static PyObject *__pyx_n_s_MAX_CACHED_RESULTS; -static PyObject *__pyx_n_s_OrderedDict; -static PyObject *__pyx_n_s_PickleError; -static PyObject *__pyx_n_s_Protocol; -static PyObject *__pyx_n_s_TCP; -static PyObject *__pyx_n_u_Unknown; -static PyObject *__pyx_kp_u__2; -static PyObject *__pyx_kp_u__3; -static PyObject *__pyx_kp_u__4; -static PyObject *__pyx_n_s__5; -static PyObject *__pyx_n_s_abspath; -static PyObject *__pyx_n_s_append; -static PyObject *__pyx_n_s_approx; -static PyObject *__pyx_n_s_approx_fp_str; -static PyObject *__pyx_n_s_buf; -static PyObject *__pyx_n_s_c; -static PyObject *__pyx_n_s_clean_os_entry; -static PyObject *__pyx_n_s_cline_in_traceback; -static PyObject *__pyx_n_s_collections; -static PyObject *__pyx_n_s_config; -static PyObject *__pyx_n_s_context; -static PyObject *__pyx_n_s_data; -static PyObject *__pyx_n_s_data_len; -static PyObject *__pyx_n_s_debug; -static PyObject *__pyx_n_s_dict; -static PyObject *__pyx_n_s_dirname; -static PyObject *__pyx_n_s_dst_ip; -static PyObject *__pyx_n_s_dst_port; -static PyObject *__pyx_n_s_endpoint; -static PyObject *__pyx_n_s_file; -static PyObject *__pyx_n_s_find_resource_path; -static PyObject *__pyx_n_s_fingerprint; -static PyObject *__pyx_n_s_fp_database; -static PyObject *__pyx_n_s_fp_str; -static PyObject *__pyx_n_s_fp_str_2; -static PyObject *__pyx_n_s_functools; -static PyObject *__pyx_n_s_get_database_entry; -static PyObject *__pyx_n_s_getstate; -static PyObject *__pyx_n_s_hex; -static PyObject *__pyx_n_s_import; -static PyObject *__pyx_n_s_json; -static PyObject *__pyx_n_s_kind; -static PyObject *__pyx_n_s_length; -static PyObject *__pyx_n_s_list_oses; -static PyObject *__pyx_n_s_list_procs; -static PyObject *__pyx_n_s_load_database; -static PyObject *__pyx_n_s_loads; -static PyObject *__pyx_n_s_lru_cache; -static PyObject *__pyx_n_s_main; -static PyObject *__pyx_n_s_maxsize; -static PyObject *__pyx_n_s_name; -static PyObject *__pyx_n_s_new; -static PyObject *__pyx_n_s_offset; -static PyObject *__pyx_n_s_os; -static PyObject *__pyx_n_u_os; -static PyObject *__pyx_n_s_os_identify; -static PyObject *__pyx_n_u_os_info; -static PyObject *__pyx_n_s_path; -static PyObject *__pyx_n_s_pickle; -static PyObject *__pyx_n_s_pmercury_protocols_protocol; -static PyObject *__pyx_n_s_pmercury_protocols_tcp; -static PyObject *__pyx_n_s_pmercury_utils_pmercury_utils; -static PyObject *__pyx_n_s_popen; -static PyObject *__pyx_n_u_probable_oses; -static PyObject *__pyx_n_s_proto_identify; -static PyObject *__pyx_n_s_pyx_PickleError; -static PyObject *__pyx_n_s_pyx_checksum; -static PyObject *__pyx_n_s_pyx_result; -static PyObject *__pyx_n_s_pyx_state; -static PyObject *__pyx_n_s_pyx_type; -static PyObject *__pyx_n_s_pyx_unpickle_TCP; -static PyObject *__pyx_n_s_reduce; -static PyObject *__pyx_n_s_reduce_cython; -static PyObject *__pyx_n_s_reduce_ex; -static PyObject *__pyx_n_s_reverse; -static PyObject *__pyx_n_u_score; -static PyObject *__pyx_n_s_setstate; -static PyObject *__pyx_n_s_setstate_cython; -static PyObject *__pyx_n_s_sort; -static PyObject *__pyx_n_s_staticmethod; -static PyObject *__pyx_n_u_str_repr; -static PyObject *__pyx_kp_s_stringsource; -static PyObject *__pyx_n_s_sys; -static PyObject *__pyx_kp_s_tcp_pyx; -static PyObject *__pyx_n_s_test; -static PyObject *__pyx_n_u_total_count; -static PyObject *__pyx_n_s_update; -static PyObject *__pyx_kp_u_zcat_s; -static int __pyx_pf_8pmercury_9protocols_3tcp_3TCP___init__(struct __pyx_obj_8pmercury_9protocols_3tcp_TCP *__pyx_v_self, PyObject *__pyx_v_fp_database, CYTHON_UNUSED PyObject *__pyx_v_config); /* proto */ -static PyObject *__pyx_pf_8pmercury_9protocols_3tcp_3TCP_2load_database(struct __pyx_obj_8pmercury_9protocols_3tcp_TCP *__pyx_v_self, PyObject *__pyx_v_fp_database); /* proto */ -static PyObject *__pyx_pf_8pmercury_9protocols_3tcp_3TCP_4clean_os_entry(CYTHON_UNUSED struct __pyx_obj_8pmercury_9protocols_3tcp_TCP *__pyx_v_self, PyObject *__pyx_v_os_info); /* proto */ -static PyObject *__pyx_pf_8pmercury_9protocols_3tcp_3TCP_6os_identify(struct __pyx_obj_8pmercury_9protocols_3tcp_TCP *__pyx_v_self, PyObject *__pyx_v_fp_str_, PyObject *__pyx_v_list_oses); /* proto */ -static PyObject *__pyx_pf_8pmercury_9protocols_3tcp_3TCP_8get_database_entry(struct __pyx_obj_8pmercury_9protocols_3tcp_TCP *__pyx_v_self, PyObject *__pyx_v_fp_str, CYTHON_UNUSED PyObject *__pyx_v_approx_fp_str); /* proto */ -static PyObject *__pyx_pf_8pmercury_9protocols_3tcp_3TCP_10proto_identify(PyObject *__pyx_v_data, PyObject *__pyx_v_offset, CYTHON_UNUSED PyObject *__pyx_v_data_len); /* proto */ -static PyObject *__pyx_pf_8pmercury_9protocols_3tcp_3TCP_12fingerprint(unsigned char *__pyx_v_buf, unsigned int __pyx_v_offset, unsigned int __pyx_v_data_len); /* proto */ -static PyObject *__pyx_pf_8pmercury_9protocols_3tcp_3TCP_14get_human_readable(CYTHON_UNUSED struct __pyx_obj_8pmercury_9protocols_3tcp_TCP *__pyx_v_self, CYTHON_UNUSED PyObject *__pyx_v_fp_str_); /* proto */ -static PyObject *__pyx_pf_8pmercury_9protocols_3tcp_3TCP_16proc_identify(CYTHON_UNUSED struct __pyx_obj_8pmercury_9protocols_3tcp_TCP *__pyx_v_self, CYTHON_UNUSED PyObject *__pyx_v_fp_str_, CYTHON_UNUSED PyObject *__pyx_v_context_, CYTHON_UNUSED PyObject *__pyx_v_dst_ip, CYTHON_UNUSED PyObject *__pyx_v_dst_port, CYTHON_UNUSED PyObject *__pyx_v_list_procs, CYTHON_UNUSED PyObject *__pyx_v_endpoint, CYTHON_UNUSED PyObject *__pyx_v_approx, CYTHON_UNUSED PyObject *__pyx_v_debug); /* proto */ -static PyObject *__pyx_pf_8pmercury_9protocols_3tcp_3TCP_18__reduce_cython__(struct __pyx_obj_8pmercury_9protocols_3tcp_TCP *__pyx_v_self); /* proto */ -static PyObject *__pyx_pf_8pmercury_9protocols_3tcp_3TCP_20__setstate_cython__(struct __pyx_obj_8pmercury_9protocols_3tcp_TCP *__pyx_v_self, PyObject *__pyx_v___pyx_state); /* proto */ -static PyObject *__pyx_pf_8pmercury_9protocols_3tcp___pyx_unpickle_TCP(CYTHON_UNUSED PyObject *__pyx_self, PyObject *__pyx_v___pyx_type, long __pyx_v___pyx_checksum, PyObject *__pyx_v___pyx_state); /* proto */ -static PyObject *__pyx_tp_new_8pmercury_9protocols_3tcp_TCP(PyTypeObject *t, PyObject *a, PyObject *k); /*proto*/ -static PyObject *__pyx_float_0_0; -static PyObject *__pyx_int_0; -static PyObject *__pyx_int_2; -static PyObject *__pyx_int_13; -static PyObject *__pyx_int_5398031; -static PyObject *__pyx_int_16777216; -static PyObject *__pyx_tuple__6; -static PyObject *__pyx_tuple__8; -static PyObject *__pyx_tuple__10; -static PyObject *__pyx_codeobj__7; -static PyObject *__pyx_codeobj__9; -static PyObject *__pyx_codeobj__11; -/* Late includes */ - -/* "pmercury/protocols/tcp.pyx":24 - * cdef dict fp_db - * - * def __init__(self, fp_database=None, config=None): # <<<<<<<<<<<<<< - * # populate fingerprint databases - * self.fp_db = None - */ - -/* Python wrapper */ -static int __pyx_pw_8pmercury_9protocols_3tcp_3TCP_1__init__(PyObject *__pyx_v_self, PyObject *__pyx_args, PyObject *__pyx_kwds); /*proto*/ -static int __pyx_pw_8pmercury_9protocols_3tcp_3TCP_1__init__(PyObject *__pyx_v_self, PyObject *__pyx_args, PyObject *__pyx_kwds) { - PyObject *__pyx_v_fp_database = 0; - CYTHON_UNUSED PyObject *__pyx_v_config = 0; - int __pyx_r; - __Pyx_RefNannyDeclarations - __Pyx_RefNannySetupContext("__init__ (wrapper)", 0); - { - static PyObject **__pyx_pyargnames[] = {&__pyx_n_s_fp_database,&__pyx_n_s_config,0}; - PyObject* values[2] = {0,0}; - values[0] = ((PyObject *)Py_None); - values[1] = ((PyObject *)Py_None); - if (unlikely(__pyx_kwds)) { - Py_ssize_t kw_args; - const Py_ssize_t pos_args = PyTuple_GET_SIZE(__pyx_args); - switch (pos_args) { - case 2: values[1] = PyTuple_GET_ITEM(__pyx_args, 1); - CYTHON_FALLTHROUGH; - case 1: values[0] = PyTuple_GET_ITEM(__pyx_args, 0); - CYTHON_FALLTHROUGH; - case 0: break; - default: goto __pyx_L5_argtuple_error; - } - kw_args = PyDict_Size(__pyx_kwds); - switch (pos_args) { - case 0: - if (kw_args > 0) { - PyObject* value = __Pyx_PyDict_GetItemStr(__pyx_kwds, __pyx_n_s_fp_database); - if (value) { values[0] = value; kw_args--; } - } - CYTHON_FALLTHROUGH; - case 1: - if (kw_args > 0) { - PyObject* value = __Pyx_PyDict_GetItemStr(__pyx_kwds, __pyx_n_s_config); - if (value) { values[1] = value; kw_args--; } - } - } - if (unlikely(kw_args > 0)) { - if (unlikely(__Pyx_ParseOptionalKeywords(__pyx_kwds, __pyx_pyargnames, 0, values, pos_args, "__init__") < 0)) __PYX_ERR(0, 24, __pyx_L3_error) - } - } else { - switch (PyTuple_GET_SIZE(__pyx_args)) { - case 2: values[1] = PyTuple_GET_ITEM(__pyx_args, 1); - CYTHON_FALLTHROUGH; - case 1: values[0] = PyTuple_GET_ITEM(__pyx_args, 0); - CYTHON_FALLTHROUGH; - case 0: break; - default: goto __pyx_L5_argtuple_error; - } - } - __pyx_v_fp_database = values[0]; - __pyx_v_config = values[1]; - } - goto __pyx_L4_argument_unpacking_done; - __pyx_L5_argtuple_error:; - __Pyx_RaiseArgtupleInvalid("__init__", 0, 0, 2, PyTuple_GET_SIZE(__pyx_args)); __PYX_ERR(0, 24, __pyx_L3_error) - __pyx_L3_error:; - __Pyx_AddTraceback("pmercury.protocols.tcp.TCP.__init__", __pyx_clineno, __pyx_lineno, __pyx_filename); - __Pyx_RefNannyFinishContext(); - return -1; - __pyx_L4_argument_unpacking_done:; - __pyx_r = __pyx_pf_8pmercury_9protocols_3tcp_3TCP___init__(((struct __pyx_obj_8pmercury_9protocols_3tcp_TCP *)__pyx_v_self), __pyx_v_fp_database, __pyx_v_config); - - /* function exit code */ - __Pyx_RefNannyFinishContext(); - return __pyx_r; -} - -static int __pyx_pf_8pmercury_9protocols_3tcp_3TCP___init__(struct __pyx_obj_8pmercury_9protocols_3tcp_TCP *__pyx_v_self, PyObject *__pyx_v_fp_database, CYTHON_UNUSED PyObject *__pyx_v_config) { - int __pyx_r; - __Pyx_RefNannyDeclarations - PyObject *__pyx_t_1 = NULL; - PyObject *__pyx_t_2 = NULL; - PyObject *__pyx_t_3 = NULL; - __Pyx_RefNannySetupContext("__init__", 0); - - /* "pmercury/protocols/tcp.pyx":26 - * def __init__(self, fp_database=None, config=None): - * # populate fingerprint databases - * self.fp_db = None # <<<<<<<<<<<<<< - * self.load_database(fp_database) - * - */ - __Pyx_INCREF(Py_None); - __Pyx_GIVEREF(Py_None); - __Pyx_GOTREF(__pyx_v_self->fp_db); - __Pyx_DECREF(__pyx_v_self->fp_db); - __pyx_v_self->fp_db = ((PyObject*)Py_None); - - /* "pmercury/protocols/tcp.pyx":27 - * # populate fingerprint databases - * self.fp_db = None - * self.load_database(fp_database) # <<<<<<<<<<<<<< - * - * - */ - __pyx_t_2 = __Pyx_PyObject_GetAttrStr(((PyObject *)__pyx_v_self), __pyx_n_s_load_database); if (unlikely(!__pyx_t_2)) __PYX_ERR(0, 27, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_2); - __pyx_t_3 = NULL; - if (CYTHON_UNPACK_METHODS && likely(PyMethod_Check(__pyx_t_2))) { - __pyx_t_3 = PyMethod_GET_SELF(__pyx_t_2); - if (likely(__pyx_t_3)) { - PyObject* function = PyMethod_GET_FUNCTION(__pyx_t_2); - __Pyx_INCREF(__pyx_t_3); - __Pyx_INCREF(function); - __Pyx_DECREF_SET(__pyx_t_2, function); - } - } - __pyx_t_1 = (__pyx_t_3) ? __Pyx_PyObject_Call2Args(__pyx_t_2, __pyx_t_3, __pyx_v_fp_database) : __Pyx_PyObject_CallOneArg(__pyx_t_2, __pyx_v_fp_database); - __Pyx_XDECREF(__pyx_t_3); __pyx_t_3 = 0; - if (unlikely(!__pyx_t_1)) __PYX_ERR(0, 27, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_1); - __Pyx_DECREF(__pyx_t_2); __pyx_t_2 = 0; - __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0; - - /* "pmercury/protocols/tcp.pyx":24 - * cdef dict fp_db - * - * def __init__(self, fp_database=None, config=None): # <<<<<<<<<<<<<< - * # populate fingerprint databases - * self.fp_db = None - */ - - /* function exit code */ - __pyx_r = 0; - goto __pyx_L0; - __pyx_L1_error:; - __Pyx_XDECREF(__pyx_t_1); - __Pyx_XDECREF(__pyx_t_2); - __Pyx_XDECREF(__pyx_t_3); - __Pyx_AddTraceback("pmercury.protocols.tcp.TCP.__init__", __pyx_clineno, __pyx_lineno, __pyx_filename); - __pyx_r = -1; - __pyx_L0:; - __Pyx_RefNannyFinishContext(); - return __pyx_r; -} - -/* "pmercury/protocols/tcp.pyx":30 - * - * - * def load_database(self, fp_database): # <<<<<<<<<<<<<< - * fp_database = find_resource_path(fp_database) - * if fp_database == None: - */ - -/* Python wrapper */ -static PyObject *__pyx_pw_8pmercury_9protocols_3tcp_3TCP_3load_database(PyObject *__pyx_v_self, PyObject *__pyx_v_fp_database); /*proto*/ -static PyObject *__pyx_pw_8pmercury_9protocols_3tcp_3TCP_3load_database(PyObject *__pyx_v_self, PyObject *__pyx_v_fp_database) { - PyObject *__pyx_r = 0; - __Pyx_RefNannyDeclarations - __Pyx_RefNannySetupContext("load_database (wrapper)", 0); - __pyx_r = __pyx_pf_8pmercury_9protocols_3tcp_3TCP_2load_database(((struct __pyx_obj_8pmercury_9protocols_3tcp_TCP *)__pyx_v_self), ((PyObject *)__pyx_v_fp_database)); - - /* function exit code */ - __Pyx_RefNannyFinishContext(); - return __pyx_r; -} - -static PyObject *__pyx_pf_8pmercury_9protocols_3tcp_3TCP_2load_database(struct __pyx_obj_8pmercury_9protocols_3tcp_TCP *__pyx_v_self, PyObject *__pyx_v_fp_database) { - PyObject *__pyx_v_line = NULL; - PyObject *__pyx_v_fp_ = NULL; - PyObject *__pyx_r = NULL; - __Pyx_RefNannyDeclarations - PyObject *__pyx_t_1 = NULL; - PyObject *__pyx_t_2 = NULL; - PyObject *__pyx_t_3 = NULL; - int __pyx_t_4; - PyObject *__pyx_t_5 = NULL; - Py_ssize_t __pyx_t_6; - PyObject *(*__pyx_t_7)(PyObject *); - PyObject *__pyx_t_8 = NULL; - __Pyx_RefNannySetupContext("load_database", 0); - __Pyx_INCREF(__pyx_v_fp_database); - - /* "pmercury/protocols/tcp.pyx":31 - * - * def load_database(self, fp_database): - * fp_database = find_resource_path(fp_database) # <<<<<<<<<<<<<< - * if fp_database == None: - * return - */ - __Pyx_GetModuleGlobalName(__pyx_t_2, __pyx_n_s_find_resource_path); if (unlikely(!__pyx_t_2)) __PYX_ERR(0, 31, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_2); - __pyx_t_3 = NULL; - if (CYTHON_UNPACK_METHODS && unlikely(PyMethod_Check(__pyx_t_2))) { - __pyx_t_3 = PyMethod_GET_SELF(__pyx_t_2); - if (likely(__pyx_t_3)) { - PyObject* function = PyMethod_GET_FUNCTION(__pyx_t_2); - __Pyx_INCREF(__pyx_t_3); - __Pyx_INCREF(function); - __Pyx_DECREF_SET(__pyx_t_2, function); - } - } - __pyx_t_1 = (__pyx_t_3) ? __Pyx_PyObject_Call2Args(__pyx_t_2, __pyx_t_3, __pyx_v_fp_database) : __Pyx_PyObject_CallOneArg(__pyx_t_2, __pyx_v_fp_database); - __Pyx_XDECREF(__pyx_t_3); __pyx_t_3 = 0; - if (unlikely(!__pyx_t_1)) __PYX_ERR(0, 31, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_1); - __Pyx_DECREF(__pyx_t_2); __pyx_t_2 = 0; - __Pyx_DECREF_SET(__pyx_v_fp_database, __pyx_t_1); - __pyx_t_1 = 0; - - /* "pmercury/protocols/tcp.pyx":32 - * def load_database(self, fp_database): - * fp_database = find_resource_path(fp_database) - * if fp_database == None: # <<<<<<<<<<<<<< - * return - * - */ - __pyx_t_1 = PyObject_RichCompare(__pyx_v_fp_database, Py_None, Py_EQ); __Pyx_XGOTREF(__pyx_t_1); if (unlikely(!__pyx_t_1)) __PYX_ERR(0, 32, __pyx_L1_error) - __pyx_t_4 = __Pyx_PyObject_IsTrue(__pyx_t_1); if (unlikely(__pyx_t_4 < 0)) __PYX_ERR(0, 32, __pyx_L1_error) - __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0; - if (__pyx_t_4) { - - /* "pmercury/protocols/tcp.pyx":33 - * fp_database = find_resource_path(fp_database) - * if fp_database == None: - * return # <<<<<<<<<<<<<< - * - * self.fp_db = {} - */ - __Pyx_XDECREF(__pyx_r); - __pyx_r = Py_None; __Pyx_INCREF(Py_None); - goto __pyx_L0; - - /* "pmercury/protocols/tcp.pyx":32 - * def load_database(self, fp_database): - * fp_database = find_resource_path(fp_database) - * if fp_database == None: # <<<<<<<<<<<<<< - * return - * - */ - } - - /* "pmercury/protocols/tcp.pyx":35 - * return - * - * self.fp_db = {} # <<<<<<<<<<<<<< - * - * IF UNAME_SYSNAME == "Windows": - */ - __pyx_t_1 = __Pyx_PyDict_NewPresized(0); if (unlikely(!__pyx_t_1)) __PYX_ERR(0, 35, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_1); - __Pyx_GIVEREF(__pyx_t_1); - __Pyx_GOTREF(__pyx_v_self->fp_db); - __Pyx_DECREF(__pyx_v_self->fp_db); - __pyx_v_self->fp_db = ((PyObject*)__pyx_t_1); - __pyx_t_1 = 0; - - /* "pmercury/protocols/tcp.pyx":44 - * self.fp_db[fp_['str_repr']] = fp_ - * ELSE: - * for line in os.popen('zcat %s' % (fp_database)): # <<<<<<<<<<<<<< - * fp_ = json.loads(line) - * fp_['os_info'] = self.clean_os_entry(fp_['os_info']) - */ - __Pyx_GetModuleGlobalName(__pyx_t_2, __pyx_n_s_os); if (unlikely(!__pyx_t_2)) __PYX_ERR(0, 44, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_2); - __pyx_t_3 = __Pyx_PyObject_GetAttrStr(__pyx_t_2, __pyx_n_s_popen); if (unlikely(!__pyx_t_3)) __PYX_ERR(0, 44, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_3); - __Pyx_DECREF(__pyx_t_2); __pyx_t_2 = 0; - __pyx_t_2 = __Pyx_PyUnicode_FormatSafe(__pyx_kp_u_zcat_s, __pyx_v_fp_database); if (unlikely(!__pyx_t_2)) __PYX_ERR(0, 44, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_2); - __pyx_t_5 = NULL; - if (CYTHON_UNPACK_METHODS && unlikely(PyMethod_Check(__pyx_t_3))) { - __pyx_t_5 = PyMethod_GET_SELF(__pyx_t_3); - if (likely(__pyx_t_5)) { - PyObject* function = PyMethod_GET_FUNCTION(__pyx_t_3); - __Pyx_INCREF(__pyx_t_5); - __Pyx_INCREF(function); - __Pyx_DECREF_SET(__pyx_t_3, function); - } - } - __pyx_t_1 = (__pyx_t_5) ? __Pyx_PyObject_Call2Args(__pyx_t_3, __pyx_t_5, __pyx_t_2) : __Pyx_PyObject_CallOneArg(__pyx_t_3, __pyx_t_2); - __Pyx_XDECREF(__pyx_t_5); __pyx_t_5 = 0; - __Pyx_DECREF(__pyx_t_2); __pyx_t_2 = 0; - if (unlikely(!__pyx_t_1)) __PYX_ERR(0, 44, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_1); - __Pyx_DECREF(__pyx_t_3); __pyx_t_3 = 0; - if (likely(PyList_CheckExact(__pyx_t_1)) || PyTuple_CheckExact(__pyx_t_1)) { - __pyx_t_3 = __pyx_t_1; __Pyx_INCREF(__pyx_t_3); __pyx_t_6 = 0; - __pyx_t_7 = NULL; - } else { - __pyx_t_6 = -1; __pyx_t_3 = PyObject_GetIter(__pyx_t_1); if (unlikely(!__pyx_t_3)) __PYX_ERR(0, 44, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_3); - __pyx_t_7 = Py_TYPE(__pyx_t_3)->tp_iternext; if (unlikely(!__pyx_t_7)) __PYX_ERR(0, 44, __pyx_L1_error) - } - __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0; - for (;;) { - if (likely(!__pyx_t_7)) { - if (likely(PyList_CheckExact(__pyx_t_3))) { - if (__pyx_t_6 >= PyList_GET_SIZE(__pyx_t_3)) break; - #if CYTHON_ASSUME_SAFE_MACROS && !CYTHON_AVOID_BORROWED_REFS - __pyx_t_1 = PyList_GET_ITEM(__pyx_t_3, __pyx_t_6); __Pyx_INCREF(__pyx_t_1); __pyx_t_6++; if (unlikely(0 < 0)) __PYX_ERR(0, 44, __pyx_L1_error) - #else - __pyx_t_1 = PySequence_ITEM(__pyx_t_3, __pyx_t_6); __pyx_t_6++; if (unlikely(!__pyx_t_1)) __PYX_ERR(0, 44, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_1); - #endif - } else { - if (__pyx_t_6 >= PyTuple_GET_SIZE(__pyx_t_3)) break; - #if CYTHON_ASSUME_SAFE_MACROS && !CYTHON_AVOID_BORROWED_REFS - __pyx_t_1 = PyTuple_GET_ITEM(__pyx_t_3, __pyx_t_6); __Pyx_INCREF(__pyx_t_1); __pyx_t_6++; if (unlikely(0 < 0)) __PYX_ERR(0, 44, __pyx_L1_error) - #else - __pyx_t_1 = PySequence_ITEM(__pyx_t_3, __pyx_t_6); __pyx_t_6++; if (unlikely(!__pyx_t_1)) __PYX_ERR(0, 44, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_1); - #endif - } - } else { - __pyx_t_1 = __pyx_t_7(__pyx_t_3); - if (unlikely(!__pyx_t_1)) { - PyObject* exc_type = PyErr_Occurred(); - if (exc_type) { - if (likely(__Pyx_PyErr_GivenExceptionMatches(exc_type, PyExc_StopIteration))) PyErr_Clear(); - else __PYX_ERR(0, 44, __pyx_L1_error) - } - break; - } - __Pyx_GOTREF(__pyx_t_1); - } - __Pyx_XDECREF_SET(__pyx_v_line, __pyx_t_1); - __pyx_t_1 = 0; - - /* "pmercury/protocols/tcp.pyx":45 - * ELSE: - * for line in os.popen('zcat %s' % (fp_database)): - * fp_ = json.loads(line) # <<<<<<<<<<<<<< - * fp_['os_info'] = self.clean_os_entry(fp_['os_info']) - * self.fp_db[fp_['str_repr']] = fp_ - */ - __Pyx_GetModuleGlobalName(__pyx_t_2, __pyx_n_s_json); if (unlikely(!__pyx_t_2)) __PYX_ERR(0, 45, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_2); - __pyx_t_5 = __Pyx_PyObject_GetAttrStr(__pyx_t_2, __pyx_n_s_loads); if (unlikely(!__pyx_t_5)) __PYX_ERR(0, 45, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_5); - __Pyx_DECREF(__pyx_t_2); __pyx_t_2 = 0; - __pyx_t_2 = NULL; - if (CYTHON_UNPACK_METHODS && unlikely(PyMethod_Check(__pyx_t_5))) { - __pyx_t_2 = PyMethod_GET_SELF(__pyx_t_5); - if (likely(__pyx_t_2)) { - PyObject* function = PyMethod_GET_FUNCTION(__pyx_t_5); - __Pyx_INCREF(__pyx_t_2); - __Pyx_INCREF(function); - __Pyx_DECREF_SET(__pyx_t_5, function); - } - } - __pyx_t_1 = (__pyx_t_2) ? __Pyx_PyObject_Call2Args(__pyx_t_5, __pyx_t_2, __pyx_v_line) : __Pyx_PyObject_CallOneArg(__pyx_t_5, __pyx_v_line); - __Pyx_XDECREF(__pyx_t_2); __pyx_t_2 = 0; - if (unlikely(!__pyx_t_1)) __PYX_ERR(0, 45, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_1); - __Pyx_DECREF(__pyx_t_5); __pyx_t_5 = 0; - __Pyx_XDECREF_SET(__pyx_v_fp_, __pyx_t_1); - __pyx_t_1 = 0; - - /* "pmercury/protocols/tcp.pyx":46 - * for line in os.popen('zcat %s' % (fp_database)): - * fp_ = json.loads(line) - * fp_['os_info'] = self.clean_os_entry(fp_['os_info']) # <<<<<<<<<<<<<< - * self.fp_db[fp_['str_repr']] = fp_ - * - */ - __pyx_t_5 = __Pyx_PyObject_GetAttrStr(((PyObject *)__pyx_v_self), __pyx_n_s_clean_os_entry); if (unlikely(!__pyx_t_5)) __PYX_ERR(0, 46, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_5); - __pyx_t_2 = __Pyx_PyObject_Dict_GetItem(__pyx_v_fp_, __pyx_n_u_os_info); if (unlikely(!__pyx_t_2)) __PYX_ERR(0, 46, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_2); - __pyx_t_8 = NULL; - if (CYTHON_UNPACK_METHODS && likely(PyMethod_Check(__pyx_t_5))) { - __pyx_t_8 = PyMethod_GET_SELF(__pyx_t_5); - if (likely(__pyx_t_8)) { - PyObject* function = PyMethod_GET_FUNCTION(__pyx_t_5); - __Pyx_INCREF(__pyx_t_8); - __Pyx_INCREF(function); - __Pyx_DECREF_SET(__pyx_t_5, function); - } - } - __pyx_t_1 = (__pyx_t_8) ? __Pyx_PyObject_Call2Args(__pyx_t_5, __pyx_t_8, __pyx_t_2) : __Pyx_PyObject_CallOneArg(__pyx_t_5, __pyx_t_2); - __Pyx_XDECREF(__pyx_t_8); __pyx_t_8 = 0; - __Pyx_DECREF(__pyx_t_2); __pyx_t_2 = 0; - if (unlikely(!__pyx_t_1)) __PYX_ERR(0, 46, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_1); - __Pyx_DECREF(__pyx_t_5); __pyx_t_5 = 0; - if (unlikely(PyObject_SetItem(__pyx_v_fp_, __pyx_n_u_os_info, __pyx_t_1) < 0)) __PYX_ERR(0, 46, __pyx_L1_error) - __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0; - - /* "pmercury/protocols/tcp.pyx":47 - * fp_ = json.loads(line) - * fp_['os_info'] = self.clean_os_entry(fp_['os_info']) - * self.fp_db[fp_['str_repr']] = fp_ # <<<<<<<<<<<<<< - * - * - */ - if (unlikely(__pyx_v_self->fp_db == Py_None)) { - PyErr_SetString(PyExc_TypeError, "'NoneType' object is not subscriptable"); - __PYX_ERR(0, 47, __pyx_L1_error) - } - __pyx_t_1 = __Pyx_PyObject_Dict_GetItem(__pyx_v_fp_, __pyx_n_u_str_repr); if (unlikely(!__pyx_t_1)) __PYX_ERR(0, 47, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_1); - if (unlikely(PyDict_SetItem(__pyx_v_self->fp_db, __pyx_t_1, __pyx_v_fp_) < 0)) __PYX_ERR(0, 47, __pyx_L1_error) - __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0; - - /* "pmercury/protocols/tcp.pyx":44 - * self.fp_db[fp_['str_repr']] = fp_ - * ELSE: - * for line in os.popen('zcat %s' % (fp_database)): # <<<<<<<<<<<<<< - * fp_ = json.loads(line) - * fp_['os_info'] = self.clean_os_entry(fp_['os_info']) - */ - } - __Pyx_DECREF(__pyx_t_3); __pyx_t_3 = 0; - - /* "pmercury/protocols/tcp.pyx":30 - * - * - * def load_database(self, fp_database): # <<<<<<<<<<<<<< - * fp_database = find_resource_path(fp_database) - * if fp_database == None: - */ - - /* function exit code */ - __pyx_r = Py_None; __Pyx_INCREF(Py_None); - goto __pyx_L0; - __pyx_L1_error:; - __Pyx_XDECREF(__pyx_t_1); - __Pyx_XDECREF(__pyx_t_2); - __Pyx_XDECREF(__pyx_t_3); - __Pyx_XDECREF(__pyx_t_5); - __Pyx_XDECREF(__pyx_t_8); - __Pyx_AddTraceback("pmercury.protocols.tcp.TCP.load_database", __pyx_clineno, __pyx_lineno, __pyx_filename); - __pyx_r = NULL; - __pyx_L0:; - __Pyx_XDECREF(__pyx_v_line); - __Pyx_XDECREF(__pyx_v_fp_); - __Pyx_XDECREF(__pyx_v_fp_database); - __Pyx_XGIVEREF(__pyx_r); - __Pyx_RefNannyFinishContext(); - return __pyx_r; -} - -/* "pmercury/protocols/tcp.pyx":50 - * - * - * def clean_os_entry(self, os_info): # <<<<<<<<<<<<<< - * tmp_os = [] - * for k in os_info: - */ - -/* Python wrapper */ -static PyObject *__pyx_pw_8pmercury_9protocols_3tcp_3TCP_5clean_os_entry(PyObject *__pyx_v_self, PyObject *__pyx_v_os_info); /*proto*/ -static PyObject *__pyx_pw_8pmercury_9protocols_3tcp_3TCP_5clean_os_entry(PyObject *__pyx_v_self, PyObject *__pyx_v_os_info) { - PyObject *__pyx_r = 0; - __Pyx_RefNannyDeclarations - __Pyx_RefNannySetupContext("clean_os_entry (wrapper)", 0); - __pyx_r = __pyx_pf_8pmercury_9protocols_3tcp_3TCP_4clean_os_entry(((struct __pyx_obj_8pmercury_9protocols_3tcp_TCP *)__pyx_v_self), ((PyObject *)__pyx_v_os_info)); - - /* function exit code */ - __Pyx_RefNannyFinishContext(); - return __pyx_r; -} - -static PyObject *__pyx_pf_8pmercury_9protocols_3tcp_3TCP_4clean_os_entry(CYTHON_UNUSED struct __pyx_obj_8pmercury_9protocols_3tcp_TCP *__pyx_v_self, PyObject *__pyx_v_os_info) { - PyObject *__pyx_v_tmp_os = NULL; - PyObject *__pyx_v_k = NULL; - PyObject *__pyx_v_c = NULL; - PyObject *__pyx_r = NULL; - __Pyx_RefNannyDeclarations - PyObject *__pyx_t_1 = NULL; - Py_ssize_t __pyx_t_2; - PyObject *(*__pyx_t_3)(PyObject *); - PyObject *__pyx_t_4 = NULL; - PyObject *__pyx_t_5 = NULL; - int __pyx_t_6; - PyObject *__pyx_t_7 = NULL; - PyObject *__pyx_t_8 = NULL; - PyObject *(*__pyx_t_9)(PyObject *); - __Pyx_RefNannySetupContext("clean_os_entry", 0); - __Pyx_INCREF(__pyx_v_os_info); - - /* "pmercury/protocols/tcp.pyx":51 - * - * def clean_os_entry(self, os_info): - * tmp_os = [] # <<<<<<<<<<<<<< - * for k in os_info: - * tmp_os.append((os_info[k],k)) - */ - __pyx_t_1 = PyList_New(0); if (unlikely(!__pyx_t_1)) __PYX_ERR(0, 51, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_1); - __pyx_v_tmp_os = ((PyObject*)__pyx_t_1); - __pyx_t_1 = 0; - - /* "pmercury/protocols/tcp.pyx":52 - * def clean_os_entry(self, os_info): - * tmp_os = [] - * for k in os_info: # <<<<<<<<<<<<<< - * tmp_os.append((os_info[k],k)) - * tmp_os.sort(reverse=True) - */ - if (likely(PyList_CheckExact(__pyx_v_os_info)) || PyTuple_CheckExact(__pyx_v_os_info)) { - __pyx_t_1 = __pyx_v_os_info; __Pyx_INCREF(__pyx_t_1); __pyx_t_2 = 0; - __pyx_t_3 = NULL; - } else { - __pyx_t_2 = -1; __pyx_t_1 = PyObject_GetIter(__pyx_v_os_info); if (unlikely(!__pyx_t_1)) __PYX_ERR(0, 52, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_1); - __pyx_t_3 = Py_TYPE(__pyx_t_1)->tp_iternext; if (unlikely(!__pyx_t_3)) __PYX_ERR(0, 52, __pyx_L1_error) - } - for (;;) { - if (likely(!__pyx_t_3)) { - if (likely(PyList_CheckExact(__pyx_t_1))) { - if (__pyx_t_2 >= PyList_GET_SIZE(__pyx_t_1)) break; - #if CYTHON_ASSUME_SAFE_MACROS && !CYTHON_AVOID_BORROWED_REFS - __pyx_t_4 = PyList_GET_ITEM(__pyx_t_1, __pyx_t_2); __Pyx_INCREF(__pyx_t_4); __pyx_t_2++; if (unlikely(0 < 0)) __PYX_ERR(0, 52, __pyx_L1_error) - #else - __pyx_t_4 = PySequence_ITEM(__pyx_t_1, __pyx_t_2); __pyx_t_2++; if (unlikely(!__pyx_t_4)) __PYX_ERR(0, 52, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_4); - #endif - } else { - if (__pyx_t_2 >= PyTuple_GET_SIZE(__pyx_t_1)) break; - #if CYTHON_ASSUME_SAFE_MACROS && !CYTHON_AVOID_BORROWED_REFS - __pyx_t_4 = PyTuple_GET_ITEM(__pyx_t_1, __pyx_t_2); __Pyx_INCREF(__pyx_t_4); __pyx_t_2++; if (unlikely(0 < 0)) __PYX_ERR(0, 52, __pyx_L1_error) - #else - __pyx_t_4 = PySequence_ITEM(__pyx_t_1, __pyx_t_2); __pyx_t_2++; if (unlikely(!__pyx_t_4)) __PYX_ERR(0, 52, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_4); - #endif - } - } else { - __pyx_t_4 = __pyx_t_3(__pyx_t_1); - if (unlikely(!__pyx_t_4)) { - PyObject* exc_type = PyErr_Occurred(); - if (exc_type) { - if (likely(__Pyx_PyErr_GivenExceptionMatches(exc_type, PyExc_StopIteration))) PyErr_Clear(); - else __PYX_ERR(0, 52, __pyx_L1_error) - } - break; - } - __Pyx_GOTREF(__pyx_t_4); - } - __Pyx_XDECREF_SET(__pyx_v_k, __pyx_t_4); - __pyx_t_4 = 0; - - /* "pmercury/protocols/tcp.pyx":53 - * tmp_os = [] - * for k in os_info: - * tmp_os.append((os_info[k],k)) # <<<<<<<<<<<<<< - * tmp_os.sort(reverse=True) - * os_info = OrderedDict({}) - */ - __pyx_t_4 = __Pyx_PyObject_GetItem(__pyx_v_os_info, __pyx_v_k); if (unlikely(!__pyx_t_4)) __PYX_ERR(0, 53, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_4); - __pyx_t_5 = PyTuple_New(2); if (unlikely(!__pyx_t_5)) __PYX_ERR(0, 53, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_5); - __Pyx_GIVEREF(__pyx_t_4); - PyTuple_SET_ITEM(__pyx_t_5, 0, __pyx_t_4); - __Pyx_INCREF(__pyx_v_k); - __Pyx_GIVEREF(__pyx_v_k); - PyTuple_SET_ITEM(__pyx_t_5, 1, __pyx_v_k); - __pyx_t_4 = 0; - __pyx_t_6 = __Pyx_PyList_Append(__pyx_v_tmp_os, __pyx_t_5); if (unlikely(__pyx_t_6 == ((int)-1))) __PYX_ERR(0, 53, __pyx_L1_error) - __Pyx_DECREF(__pyx_t_5); __pyx_t_5 = 0; - - /* "pmercury/protocols/tcp.pyx":52 - * def clean_os_entry(self, os_info): - * tmp_os = [] - * for k in os_info: # <<<<<<<<<<<<<< - * tmp_os.append((os_info[k],k)) - * tmp_os.sort(reverse=True) - */ - } - __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0; - - /* "pmercury/protocols/tcp.pyx":54 - * for k in os_info: - * tmp_os.append((os_info[k],k)) - * tmp_os.sort(reverse=True) # <<<<<<<<<<<<<< - * os_info = OrderedDict({}) - * for c,k in tmp_os: - */ - __pyx_t_1 = __Pyx_PyObject_GetAttrStr(__pyx_v_tmp_os, __pyx_n_s_sort); if (unlikely(!__pyx_t_1)) __PYX_ERR(0, 54, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_1); - __pyx_t_5 = __Pyx_PyDict_NewPresized(1); if (unlikely(!__pyx_t_5)) __PYX_ERR(0, 54, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_5); - if (PyDict_SetItem(__pyx_t_5, __pyx_n_s_reverse, Py_True) < 0) __PYX_ERR(0, 54, __pyx_L1_error) - __pyx_t_4 = __Pyx_PyObject_Call(__pyx_t_1, __pyx_empty_tuple, __pyx_t_5); if (unlikely(!__pyx_t_4)) __PYX_ERR(0, 54, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_4); - __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0; - __Pyx_DECREF(__pyx_t_5); __pyx_t_5 = 0; - __Pyx_DECREF(__pyx_t_4); __pyx_t_4 = 0; - - /* "pmercury/protocols/tcp.pyx":55 - * tmp_os.append((os_info[k],k)) - * tmp_os.sort(reverse=True) - * os_info = OrderedDict({}) # <<<<<<<<<<<<<< - * for c,k in tmp_os: - * os_info[k] = c - */ - __Pyx_GetModuleGlobalName(__pyx_t_5, __pyx_n_s_OrderedDict); if (unlikely(!__pyx_t_5)) __PYX_ERR(0, 55, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_5); - __pyx_t_1 = __Pyx_PyDict_NewPresized(0); if (unlikely(!__pyx_t_1)) __PYX_ERR(0, 55, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_1); - __pyx_t_7 = NULL; - if (CYTHON_UNPACK_METHODS && unlikely(PyMethod_Check(__pyx_t_5))) { - __pyx_t_7 = PyMethod_GET_SELF(__pyx_t_5); - if (likely(__pyx_t_7)) { - PyObject* function = PyMethod_GET_FUNCTION(__pyx_t_5); - __Pyx_INCREF(__pyx_t_7); - __Pyx_INCREF(function); - __Pyx_DECREF_SET(__pyx_t_5, function); - } - } - __pyx_t_4 = (__pyx_t_7) ? __Pyx_PyObject_Call2Args(__pyx_t_5, __pyx_t_7, __pyx_t_1) : __Pyx_PyObject_CallOneArg(__pyx_t_5, __pyx_t_1); - __Pyx_XDECREF(__pyx_t_7); __pyx_t_7 = 0; - __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0; - if (unlikely(!__pyx_t_4)) __PYX_ERR(0, 55, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_4); - __Pyx_DECREF(__pyx_t_5); __pyx_t_5 = 0; - __Pyx_DECREF_SET(__pyx_v_os_info, __pyx_t_4); - __pyx_t_4 = 0; - - /* "pmercury/protocols/tcp.pyx":56 - * tmp_os.sort(reverse=True) - * os_info = OrderedDict({}) - * for c,k in tmp_os: # <<<<<<<<<<<<<< - * os_info[k] = c - * return os_info - */ - __pyx_t_4 = __pyx_v_tmp_os; __Pyx_INCREF(__pyx_t_4); __pyx_t_2 = 0; - for (;;) { - if (__pyx_t_2 >= PyList_GET_SIZE(__pyx_t_4)) break; - #if CYTHON_ASSUME_SAFE_MACROS && !CYTHON_AVOID_BORROWED_REFS - __pyx_t_5 = PyList_GET_ITEM(__pyx_t_4, __pyx_t_2); __Pyx_INCREF(__pyx_t_5); __pyx_t_2++; if (unlikely(0 < 0)) __PYX_ERR(0, 56, __pyx_L1_error) - #else - __pyx_t_5 = PySequence_ITEM(__pyx_t_4, __pyx_t_2); __pyx_t_2++; if (unlikely(!__pyx_t_5)) __PYX_ERR(0, 56, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_5); - #endif - if ((likely(PyTuple_CheckExact(__pyx_t_5))) || (PyList_CheckExact(__pyx_t_5))) { - PyObject* sequence = __pyx_t_5; - Py_ssize_t size = __Pyx_PySequence_SIZE(sequence); - if (unlikely(size != 2)) { - if (size > 2) __Pyx_RaiseTooManyValuesError(2); - else if (size >= 0) __Pyx_RaiseNeedMoreValuesError(size); - __PYX_ERR(0, 56, __pyx_L1_error) - } - #if CYTHON_ASSUME_SAFE_MACROS && !CYTHON_AVOID_BORROWED_REFS - if (likely(PyTuple_CheckExact(sequence))) { - __pyx_t_1 = PyTuple_GET_ITEM(sequence, 0); - __pyx_t_7 = PyTuple_GET_ITEM(sequence, 1); - } else { - __pyx_t_1 = PyList_GET_ITEM(sequence, 0); - __pyx_t_7 = PyList_GET_ITEM(sequence, 1); - } - __Pyx_INCREF(__pyx_t_1); - __Pyx_INCREF(__pyx_t_7); - #else - __pyx_t_1 = PySequence_ITEM(sequence, 0); if (unlikely(!__pyx_t_1)) __PYX_ERR(0, 56, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_1); - __pyx_t_7 = PySequence_ITEM(sequence, 1); if (unlikely(!__pyx_t_7)) __PYX_ERR(0, 56, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_7); - #endif - __Pyx_DECREF(__pyx_t_5); __pyx_t_5 = 0; - } else { - Py_ssize_t index = -1; - __pyx_t_8 = PyObject_GetIter(__pyx_t_5); if (unlikely(!__pyx_t_8)) __PYX_ERR(0, 56, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_8); - __Pyx_DECREF(__pyx_t_5); __pyx_t_5 = 0; - __pyx_t_9 = Py_TYPE(__pyx_t_8)->tp_iternext; - index = 0; __pyx_t_1 = __pyx_t_9(__pyx_t_8); if (unlikely(!__pyx_t_1)) goto __pyx_L7_unpacking_failed; - __Pyx_GOTREF(__pyx_t_1); - index = 1; __pyx_t_7 = __pyx_t_9(__pyx_t_8); if (unlikely(!__pyx_t_7)) goto __pyx_L7_unpacking_failed; - __Pyx_GOTREF(__pyx_t_7); - if (__Pyx_IternextUnpackEndCheck(__pyx_t_9(__pyx_t_8), 2) < 0) __PYX_ERR(0, 56, __pyx_L1_error) - __pyx_t_9 = NULL; - __Pyx_DECREF(__pyx_t_8); __pyx_t_8 = 0; - goto __pyx_L8_unpacking_done; - __pyx_L7_unpacking_failed:; - __Pyx_DECREF(__pyx_t_8); __pyx_t_8 = 0; - __pyx_t_9 = NULL; - if (__Pyx_IterFinish() == 0) __Pyx_RaiseNeedMoreValuesError(index); - __PYX_ERR(0, 56, __pyx_L1_error) - __pyx_L8_unpacking_done:; - } - __Pyx_XDECREF_SET(__pyx_v_c, __pyx_t_1); - __pyx_t_1 = 0; - __Pyx_XDECREF_SET(__pyx_v_k, __pyx_t_7); - __pyx_t_7 = 0; - - /* "pmercury/protocols/tcp.pyx":57 - * os_info = OrderedDict({}) - * for c,k in tmp_os: - * os_info[k] = c # <<<<<<<<<<<<<< - * return os_info - * - */ - if (unlikely(PyObject_SetItem(__pyx_v_os_info, __pyx_v_k, __pyx_v_c) < 0)) __PYX_ERR(0, 57, __pyx_L1_error) - - /* "pmercury/protocols/tcp.pyx":56 - * tmp_os.sort(reverse=True) - * os_info = OrderedDict({}) - * for c,k in tmp_os: # <<<<<<<<<<<<<< - * os_info[k] = c - * return os_info - */ - } - __Pyx_DECREF(__pyx_t_4); __pyx_t_4 = 0; - - /* "pmercury/protocols/tcp.pyx":58 - * for c,k in tmp_os: - * os_info[k] = c - * return os_info # <<<<<<<<<<<<<< - * - * - */ - __Pyx_XDECREF(__pyx_r); - __Pyx_INCREF(__pyx_v_os_info); - __pyx_r = __pyx_v_os_info; - goto __pyx_L0; - - /* "pmercury/protocols/tcp.pyx":50 - * - * - * def clean_os_entry(self, os_info): # <<<<<<<<<<<<<< - * tmp_os = [] - * for k in os_info: - */ - - /* function exit code */ - __pyx_L1_error:; - __Pyx_XDECREF(__pyx_t_1); - __Pyx_XDECREF(__pyx_t_4); - __Pyx_XDECREF(__pyx_t_5); - __Pyx_XDECREF(__pyx_t_7); - __Pyx_XDECREF(__pyx_t_8); - __Pyx_AddTraceback("pmercury.protocols.tcp.TCP.clean_os_entry", __pyx_clineno, __pyx_lineno, __pyx_filename); - __pyx_r = NULL; - __pyx_L0:; - __Pyx_XDECREF(__pyx_v_tmp_os); - __Pyx_XDECREF(__pyx_v_k); - __Pyx_XDECREF(__pyx_v_c); - __Pyx_XDECREF(__pyx_v_os_info); - __Pyx_XGIVEREF(__pyx_r); - __Pyx_RefNannyFinishContext(); - return __pyx_r; -} - -/* "pmercury/protocols/tcp.pyx":62 - * - * @functools.lru_cache(maxsize=MAX_CACHED_RESULTS) - * def os_identify(self, fp_str_, list_oses=0): # <<<<<<<<<<<<<< - * fp_ = self.get_database_entry(fp_str_, None) - * if fp_ == None: - */ - -/* Python wrapper */ -static PyObject *__pyx_pw_8pmercury_9protocols_3tcp_3TCP_7os_identify(PyObject *__pyx_v_self, PyObject *__pyx_args, PyObject *__pyx_kwds); /*proto*/ -static PyObject *__pyx_pw_8pmercury_9protocols_3tcp_3TCP_7os_identify(PyObject *__pyx_v_self, PyObject *__pyx_args, PyObject *__pyx_kwds) { - PyObject *__pyx_v_fp_str_ = 0; - PyObject *__pyx_v_list_oses = 0; - PyObject *__pyx_r = 0; - __Pyx_RefNannyDeclarations - __Pyx_RefNannySetupContext("os_identify (wrapper)", 0); - { - static PyObject **__pyx_pyargnames[] = {&__pyx_n_s_fp_str,&__pyx_n_s_list_oses,0}; - PyObject* values[2] = {0,0}; - values[1] = ((PyObject *)__pyx_int_0); - if (unlikely(__pyx_kwds)) { - Py_ssize_t kw_args; - const Py_ssize_t pos_args = PyTuple_GET_SIZE(__pyx_args); - switch (pos_args) { - case 2: values[1] = PyTuple_GET_ITEM(__pyx_args, 1); - CYTHON_FALLTHROUGH; - case 1: values[0] = PyTuple_GET_ITEM(__pyx_args, 0); - CYTHON_FALLTHROUGH; - case 0: break; - default: goto __pyx_L5_argtuple_error; - } - kw_args = PyDict_Size(__pyx_kwds); - switch (pos_args) { - case 0: - if (likely((values[0] = __Pyx_PyDict_GetItemStr(__pyx_kwds, __pyx_n_s_fp_str)) != 0)) kw_args--; - else goto __pyx_L5_argtuple_error; - CYTHON_FALLTHROUGH; - case 1: - if (kw_args > 0) { - PyObject* value = __Pyx_PyDict_GetItemStr(__pyx_kwds, __pyx_n_s_list_oses); - if (value) { values[1] = value; kw_args--; } - } - } - if (unlikely(kw_args > 0)) { - if (unlikely(__Pyx_ParseOptionalKeywords(__pyx_kwds, __pyx_pyargnames, 0, values, pos_args, "os_identify") < 0)) __PYX_ERR(0, 62, __pyx_L3_error) - } - } else { - switch (PyTuple_GET_SIZE(__pyx_args)) { - case 2: values[1] = PyTuple_GET_ITEM(__pyx_args, 1); - CYTHON_FALLTHROUGH; - case 1: values[0] = PyTuple_GET_ITEM(__pyx_args, 0); - break; - default: goto __pyx_L5_argtuple_error; - } - } - __pyx_v_fp_str_ = values[0]; - __pyx_v_list_oses = values[1]; - } - goto __pyx_L4_argument_unpacking_done; - __pyx_L5_argtuple_error:; - __Pyx_RaiseArgtupleInvalid("os_identify", 0, 1, 2, PyTuple_GET_SIZE(__pyx_args)); __PYX_ERR(0, 62, __pyx_L3_error) - __pyx_L3_error:; - __Pyx_AddTraceback("pmercury.protocols.tcp.TCP.os_identify", __pyx_clineno, __pyx_lineno, __pyx_filename); - __Pyx_RefNannyFinishContext(); - return NULL; - __pyx_L4_argument_unpacking_done:; - __pyx_r = __pyx_pf_8pmercury_9protocols_3tcp_3TCP_6os_identify(((struct __pyx_obj_8pmercury_9protocols_3tcp_TCP *)__pyx_v_self), __pyx_v_fp_str_, __pyx_v_list_oses); - - /* function exit code */ - __Pyx_RefNannyFinishContext(); - return __pyx_r; -} - -static PyObject *__pyx_pf_8pmercury_9protocols_3tcp_3TCP_6os_identify(struct __pyx_obj_8pmercury_9protocols_3tcp_TCP *__pyx_v_self, PyObject *__pyx_v_fp_str_, PyObject *__pyx_v_list_oses) { - PyObject *__pyx_v_fp_ = NULL; - PyObject *__pyx_v_r_ = NULL; - PyObject *__pyx_v_os_info = NULL; - CYTHON_UNUSED PyObject *__pyx_v_fp_tc = NULL; - PyObject *__pyx_v_k = NULL; - PyObject *__pyx_v_out_ = NULL; - PyObject *__pyx_r = NULL; - __Pyx_RefNannyDeclarations - PyObject *__pyx_t_1 = NULL; - PyObject *__pyx_t_2 = NULL; - PyObject *__pyx_t_3 = NULL; - int __pyx_t_4; - PyObject *__pyx_t_5 = NULL; - int __pyx_t_6; - Py_ssize_t __pyx_t_7; - PyObject *(*__pyx_t_8)(PyObject *); - int __pyx_t_9; - Py_ssize_t __pyx_t_10; - __Pyx_RefNannySetupContext("os_identify", 0); - - /* "pmercury/protocols/tcp.pyx":63 - * @functools.lru_cache(maxsize=MAX_CACHED_RESULTS) - * def os_identify(self, fp_str_, list_oses=0): - * fp_ = self.get_database_entry(fp_str_, None) # <<<<<<<<<<<<<< - * if fp_ == None: - * return {'os': 'Unknown', 'score': 0.0} - */ - __pyx_t_2 = __Pyx_PyObject_GetAttrStr(((PyObject *)__pyx_v_self), __pyx_n_s_get_database_entry); if (unlikely(!__pyx_t_2)) __PYX_ERR(0, 63, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_2); - __pyx_t_3 = NULL; - __pyx_t_4 = 0; - if (CYTHON_UNPACK_METHODS && likely(PyMethod_Check(__pyx_t_2))) { - __pyx_t_3 = PyMethod_GET_SELF(__pyx_t_2); - if (likely(__pyx_t_3)) { - PyObject* function = PyMethod_GET_FUNCTION(__pyx_t_2); - __Pyx_INCREF(__pyx_t_3); - __Pyx_INCREF(function); - __Pyx_DECREF_SET(__pyx_t_2, function); - __pyx_t_4 = 1; - } - } - #if CYTHON_FAST_PYCALL - if (PyFunction_Check(__pyx_t_2)) { - PyObject *__pyx_temp[3] = {__pyx_t_3, __pyx_v_fp_str_, Py_None}; - __pyx_t_1 = __Pyx_PyFunction_FastCall(__pyx_t_2, __pyx_temp+1-__pyx_t_4, 2+__pyx_t_4); if (unlikely(!__pyx_t_1)) __PYX_ERR(0, 63, __pyx_L1_error) - __Pyx_XDECREF(__pyx_t_3); __pyx_t_3 = 0; - __Pyx_GOTREF(__pyx_t_1); - } else - #endif - #if CYTHON_FAST_PYCCALL - if (__Pyx_PyFastCFunction_Check(__pyx_t_2)) { - PyObject *__pyx_temp[3] = {__pyx_t_3, __pyx_v_fp_str_, Py_None}; - __pyx_t_1 = __Pyx_PyCFunction_FastCall(__pyx_t_2, __pyx_temp+1-__pyx_t_4, 2+__pyx_t_4); if (unlikely(!__pyx_t_1)) __PYX_ERR(0, 63, __pyx_L1_error) - __Pyx_XDECREF(__pyx_t_3); __pyx_t_3 = 0; - __Pyx_GOTREF(__pyx_t_1); - } else - #endif - { - __pyx_t_5 = PyTuple_New(2+__pyx_t_4); if (unlikely(!__pyx_t_5)) __PYX_ERR(0, 63, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_5); - if (__pyx_t_3) { - __Pyx_GIVEREF(__pyx_t_3); PyTuple_SET_ITEM(__pyx_t_5, 0, __pyx_t_3); __pyx_t_3 = NULL; - } - __Pyx_INCREF(__pyx_v_fp_str_); - __Pyx_GIVEREF(__pyx_v_fp_str_); - PyTuple_SET_ITEM(__pyx_t_5, 0+__pyx_t_4, __pyx_v_fp_str_); - __Pyx_INCREF(Py_None); - __Pyx_GIVEREF(Py_None); - PyTuple_SET_ITEM(__pyx_t_5, 1+__pyx_t_4, Py_None); - __pyx_t_1 = __Pyx_PyObject_Call(__pyx_t_2, __pyx_t_5, NULL); if (unlikely(!__pyx_t_1)) __PYX_ERR(0, 63, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_1); - __Pyx_DECREF(__pyx_t_5); __pyx_t_5 = 0; - } - __Pyx_DECREF(__pyx_t_2); __pyx_t_2 = 0; - __pyx_v_fp_ = __pyx_t_1; - __pyx_t_1 = 0; - - /* "pmercury/protocols/tcp.pyx":64 - * def os_identify(self, fp_str_, list_oses=0): - * fp_ = self.get_database_entry(fp_str_, None) - * if fp_ == None: # <<<<<<<<<<<<<< - * return {'os': 'Unknown', 'score': 0.0} - * - */ - __pyx_t_1 = PyObject_RichCompare(__pyx_v_fp_, Py_None, Py_EQ); __Pyx_XGOTREF(__pyx_t_1); if (unlikely(!__pyx_t_1)) __PYX_ERR(0, 64, __pyx_L1_error) - __pyx_t_6 = __Pyx_PyObject_IsTrue(__pyx_t_1); if (unlikely(__pyx_t_6 < 0)) __PYX_ERR(0, 64, __pyx_L1_error) - __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0; - if (__pyx_t_6) { - - /* "pmercury/protocols/tcp.pyx":65 - * fp_ = self.get_database_entry(fp_str_, None) - * if fp_ == None: - * return {'os': 'Unknown', 'score': 0.0} # <<<<<<<<<<<<<< - * - * r_ = [] - */ - __Pyx_XDECREF(__pyx_r); - __pyx_t_1 = __Pyx_PyDict_NewPresized(2); if (unlikely(!__pyx_t_1)) __PYX_ERR(0, 65, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_1); - if (PyDict_SetItem(__pyx_t_1, __pyx_n_u_os, __pyx_n_u_Unknown) < 0) __PYX_ERR(0, 65, __pyx_L1_error) - if (PyDict_SetItem(__pyx_t_1, __pyx_n_u_score, __pyx_float_0_0) < 0) __PYX_ERR(0, 65, __pyx_L1_error) - __pyx_r = __pyx_t_1; - __pyx_t_1 = 0; - goto __pyx_L0; - - /* "pmercury/protocols/tcp.pyx":64 - * def os_identify(self, fp_str_, list_oses=0): - * fp_ = self.get_database_entry(fp_str_, None) - * if fp_ == None: # <<<<<<<<<<<<<< - * return {'os': 'Unknown', 'score': 0.0} - * - */ - } - - /* "pmercury/protocols/tcp.pyx":67 - * return {'os': 'Unknown', 'score': 0.0} - * - * r_ = [] # <<<<<<<<<<<<<< - * os_info = fp_['os_info'] - * fp_tc = fp_['total_count'] - */ - __pyx_t_1 = PyList_New(0); if (unlikely(!__pyx_t_1)) __PYX_ERR(0, 67, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_1); - __pyx_v_r_ = ((PyObject*)__pyx_t_1); - __pyx_t_1 = 0; - - /* "pmercury/protocols/tcp.pyx":68 - * - * r_ = [] - * os_info = fp_['os_info'] # <<<<<<<<<<<<<< - * fp_tc = fp_['total_count'] - * for k in os_info: - */ - __pyx_t_1 = __Pyx_PyObject_Dict_GetItem(__pyx_v_fp_, __pyx_n_u_os_info); if (unlikely(!__pyx_t_1)) __PYX_ERR(0, 68, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_1); - __pyx_v_os_info = __pyx_t_1; - __pyx_t_1 = 0; - - /* "pmercury/protocols/tcp.pyx":69 - * r_ = [] - * os_info = fp_['os_info'] - * fp_tc = fp_['total_count'] # <<<<<<<<<<<<<< - * for k in os_info: - * r_.append({'os': k, 'score': os_info[k]}) - */ - __pyx_t_1 = __Pyx_PyObject_Dict_GetItem(__pyx_v_fp_, __pyx_n_u_total_count); if (unlikely(!__pyx_t_1)) __PYX_ERR(0, 69, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_1); - __pyx_v_fp_tc = __pyx_t_1; - __pyx_t_1 = 0; - - /* "pmercury/protocols/tcp.pyx":70 - * os_info = fp_['os_info'] - * fp_tc = fp_['total_count'] - * for k in os_info: # <<<<<<<<<<<<<< - * r_.append({'os': k, 'score': os_info[k]}) - * - */ - if (likely(PyList_CheckExact(__pyx_v_os_info)) || PyTuple_CheckExact(__pyx_v_os_info)) { - __pyx_t_1 = __pyx_v_os_info; __Pyx_INCREF(__pyx_t_1); __pyx_t_7 = 0; - __pyx_t_8 = NULL; - } else { - __pyx_t_7 = -1; __pyx_t_1 = PyObject_GetIter(__pyx_v_os_info); if (unlikely(!__pyx_t_1)) __PYX_ERR(0, 70, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_1); - __pyx_t_8 = Py_TYPE(__pyx_t_1)->tp_iternext; if (unlikely(!__pyx_t_8)) __PYX_ERR(0, 70, __pyx_L1_error) - } - for (;;) { - if (likely(!__pyx_t_8)) { - if (likely(PyList_CheckExact(__pyx_t_1))) { - if (__pyx_t_7 >= PyList_GET_SIZE(__pyx_t_1)) break; - #if CYTHON_ASSUME_SAFE_MACROS && !CYTHON_AVOID_BORROWED_REFS - __pyx_t_2 = PyList_GET_ITEM(__pyx_t_1, __pyx_t_7); __Pyx_INCREF(__pyx_t_2); __pyx_t_7++; if (unlikely(0 < 0)) __PYX_ERR(0, 70, __pyx_L1_error) - #else - __pyx_t_2 = PySequence_ITEM(__pyx_t_1, __pyx_t_7); __pyx_t_7++; if (unlikely(!__pyx_t_2)) __PYX_ERR(0, 70, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_2); - #endif - } else { - if (__pyx_t_7 >= PyTuple_GET_SIZE(__pyx_t_1)) break; - #if CYTHON_ASSUME_SAFE_MACROS && !CYTHON_AVOID_BORROWED_REFS - __pyx_t_2 = PyTuple_GET_ITEM(__pyx_t_1, __pyx_t_7); __Pyx_INCREF(__pyx_t_2); __pyx_t_7++; if (unlikely(0 < 0)) __PYX_ERR(0, 70, __pyx_L1_error) - #else - __pyx_t_2 = PySequence_ITEM(__pyx_t_1, __pyx_t_7); __pyx_t_7++; if (unlikely(!__pyx_t_2)) __PYX_ERR(0, 70, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_2); - #endif - } - } else { - __pyx_t_2 = __pyx_t_8(__pyx_t_1); - if (unlikely(!__pyx_t_2)) { - PyObject* exc_type = PyErr_Occurred(); - if (exc_type) { - if (likely(__Pyx_PyErr_GivenExceptionMatches(exc_type, PyExc_StopIteration))) PyErr_Clear(); - else __PYX_ERR(0, 70, __pyx_L1_error) - } - break; - } - __Pyx_GOTREF(__pyx_t_2); - } - __Pyx_XDECREF_SET(__pyx_v_k, __pyx_t_2); - __pyx_t_2 = 0; - - /* "pmercury/protocols/tcp.pyx":71 - * fp_tc = fp_['total_count'] - * for k in os_info: - * r_.append({'os': k, 'score': os_info[k]}) # <<<<<<<<<<<<<< - * - * out_ = {'os':r_[0]['os'], 'score':r_[0]['score']} - */ - __pyx_t_2 = __Pyx_PyDict_NewPresized(2); if (unlikely(!__pyx_t_2)) __PYX_ERR(0, 71, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_2); - if (PyDict_SetItem(__pyx_t_2, __pyx_n_u_os, __pyx_v_k) < 0) __PYX_ERR(0, 71, __pyx_L1_error) - __pyx_t_5 = __Pyx_PyObject_GetItem(__pyx_v_os_info, __pyx_v_k); if (unlikely(!__pyx_t_5)) __PYX_ERR(0, 71, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_5); - if (PyDict_SetItem(__pyx_t_2, __pyx_n_u_score, __pyx_t_5) < 0) __PYX_ERR(0, 71, __pyx_L1_error) - __Pyx_DECREF(__pyx_t_5); __pyx_t_5 = 0; - __pyx_t_9 = __Pyx_PyList_Append(__pyx_v_r_, __pyx_t_2); if (unlikely(__pyx_t_9 == ((int)-1))) __PYX_ERR(0, 71, __pyx_L1_error) - __Pyx_DECREF(__pyx_t_2); __pyx_t_2 = 0; - - /* "pmercury/protocols/tcp.pyx":70 - * os_info = fp_['os_info'] - * fp_tc = fp_['total_count'] - * for k in os_info: # <<<<<<<<<<<<<< - * r_.append({'os': k, 'score': os_info[k]}) - * - */ - } - __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0; - - /* "pmercury/protocols/tcp.pyx":73 - * r_.append({'os': k, 'score': os_info[k]}) - * - * out_ = {'os':r_[0]['os'], 'score':r_[0]['score']} # <<<<<<<<<<<<<< - * if list_oses > 0: - * out_['probable_oses'] = r_[0:list_oses] - */ - __pyx_t_1 = __Pyx_PyDict_NewPresized(2); if (unlikely(!__pyx_t_1)) __PYX_ERR(0, 73, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_1); - __pyx_t_2 = __Pyx_GetItemInt_List(__pyx_v_r_, 0, long, 1, __Pyx_PyInt_From_long, 1, 0, 1); if (unlikely(!__pyx_t_2)) __PYX_ERR(0, 73, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_2); - __pyx_t_5 = __Pyx_PyObject_Dict_GetItem(__pyx_t_2, __pyx_n_u_os); if (unlikely(!__pyx_t_5)) __PYX_ERR(0, 73, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_5); - __Pyx_DECREF(__pyx_t_2); __pyx_t_2 = 0; - if (PyDict_SetItem(__pyx_t_1, __pyx_n_u_os, __pyx_t_5) < 0) __PYX_ERR(0, 73, __pyx_L1_error) - __Pyx_DECREF(__pyx_t_5); __pyx_t_5 = 0; - __pyx_t_5 = __Pyx_GetItemInt_List(__pyx_v_r_, 0, long, 1, __Pyx_PyInt_From_long, 1, 0, 1); if (unlikely(!__pyx_t_5)) __PYX_ERR(0, 73, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_5); - __pyx_t_2 = __Pyx_PyObject_Dict_GetItem(__pyx_t_5, __pyx_n_u_score); if (unlikely(!__pyx_t_2)) __PYX_ERR(0, 73, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_2); - __Pyx_DECREF(__pyx_t_5); __pyx_t_5 = 0; - if (PyDict_SetItem(__pyx_t_1, __pyx_n_u_score, __pyx_t_2) < 0) __PYX_ERR(0, 73, __pyx_L1_error) - __Pyx_DECREF(__pyx_t_2); __pyx_t_2 = 0; - __pyx_v_out_ = ((PyObject*)__pyx_t_1); - __pyx_t_1 = 0; - - /* "pmercury/protocols/tcp.pyx":74 - * - * out_ = {'os':r_[0]['os'], 'score':r_[0]['score']} - * if list_oses > 0: # <<<<<<<<<<<<<< - * out_['probable_oses'] = r_[0:list_oses] - * - */ - __pyx_t_1 = PyObject_RichCompare(__pyx_v_list_oses, __pyx_int_0, Py_GT); __Pyx_XGOTREF(__pyx_t_1); if (unlikely(!__pyx_t_1)) __PYX_ERR(0, 74, __pyx_L1_error) - __pyx_t_6 = __Pyx_PyObject_IsTrue(__pyx_t_1); if (unlikely(__pyx_t_6 < 0)) __PYX_ERR(0, 74, __pyx_L1_error) - __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0; - if (__pyx_t_6) { - - /* "pmercury/protocols/tcp.pyx":75 - * out_ = {'os':r_[0]['os'], 'score':r_[0]['score']} - * if list_oses > 0: - * out_['probable_oses'] = r_[0:list_oses] # <<<<<<<<<<<<<< - * - * return out_ - */ - __Pyx_INCREF(__pyx_v_list_oses); - __pyx_t_1 = __pyx_v_list_oses; - __pyx_t_6 = (__pyx_t_1 == Py_None); - if (__pyx_t_6) { - __pyx_t_7 = PY_SSIZE_T_MAX; - } else { - __pyx_t_10 = __Pyx_PyIndex_AsSsize_t(__pyx_t_1); if (unlikely((__pyx_t_10 == (Py_ssize_t)-1) && PyErr_Occurred())) __PYX_ERR(0, 75, __pyx_L1_error) - __pyx_t_7 = __pyx_t_10; - } - __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0; - __pyx_t_1 = __Pyx_PyList_GetSlice(__pyx_v_r_, 0, __pyx_t_7); if (unlikely(!__pyx_t_1)) __PYX_ERR(0, 75, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_1); - if (unlikely(PyDict_SetItem(__pyx_v_out_, __pyx_n_u_probable_oses, __pyx_t_1) < 0)) __PYX_ERR(0, 75, __pyx_L1_error) - __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0; - - /* "pmercury/protocols/tcp.pyx":74 - * - * out_ = {'os':r_[0]['os'], 'score':r_[0]['score']} - * if list_oses > 0: # <<<<<<<<<<<<<< - * out_['probable_oses'] = r_[0:list_oses] - * - */ - } - - /* "pmercury/protocols/tcp.pyx":77 - * out_['probable_oses'] = r_[0:list_oses] - * - * return out_ # <<<<<<<<<<<<<< - * - * - */ - __Pyx_XDECREF(__pyx_r); - __Pyx_INCREF(__pyx_v_out_); - __pyx_r = __pyx_v_out_; - goto __pyx_L0; - - /* "pmercury/protocols/tcp.pyx":62 - * - * @functools.lru_cache(maxsize=MAX_CACHED_RESULTS) - * def os_identify(self, fp_str_, list_oses=0): # <<<<<<<<<<<<<< - * fp_ = self.get_database_entry(fp_str_, None) - * if fp_ == None: - */ - - /* function exit code */ - __pyx_L1_error:; - __Pyx_XDECREF(__pyx_t_1); - __Pyx_XDECREF(__pyx_t_2); - __Pyx_XDECREF(__pyx_t_3); - __Pyx_XDECREF(__pyx_t_5); - __Pyx_AddTraceback("pmercury.protocols.tcp.TCP.os_identify", __pyx_clineno, __pyx_lineno, __pyx_filename); - __pyx_r = NULL; - __pyx_L0:; - __Pyx_XDECREF(__pyx_v_fp_); - __Pyx_XDECREF(__pyx_v_r_); - __Pyx_XDECREF(__pyx_v_os_info); - __Pyx_XDECREF(__pyx_v_fp_tc); - __Pyx_XDECREF(__pyx_v_k); - __Pyx_XDECREF(__pyx_v_out_); - __Pyx_XGIVEREF(__pyx_r); - __Pyx_RefNannyFinishContext(); - return __pyx_r; -} - -/* "pmercury/protocols/tcp.pyx":81 - * - * @functools.lru_cache(maxsize=MAX_CACHED_RESULTS) - * def get_database_entry(self, fp_str, approx_fp_str): # <<<<<<<<<<<<<< - * if self.fp_db == None or fp_str not in self.fp_db: - * return None - */ - -/* Python wrapper */ -static PyObject *__pyx_pw_8pmercury_9protocols_3tcp_3TCP_9get_database_entry(PyObject *__pyx_v_self, PyObject *__pyx_args, PyObject *__pyx_kwds); /*proto*/ -static PyObject *__pyx_pw_8pmercury_9protocols_3tcp_3TCP_9get_database_entry(PyObject *__pyx_v_self, PyObject *__pyx_args, PyObject *__pyx_kwds) { - PyObject *__pyx_v_fp_str = 0; - CYTHON_UNUSED PyObject *__pyx_v_approx_fp_str = 0; - PyObject *__pyx_r = 0; - __Pyx_RefNannyDeclarations - __Pyx_RefNannySetupContext("get_database_entry (wrapper)", 0); - { - static PyObject **__pyx_pyargnames[] = {&__pyx_n_s_fp_str_2,&__pyx_n_s_approx_fp_str,0}; - PyObject* values[2] = {0,0}; - if (unlikely(__pyx_kwds)) { - Py_ssize_t kw_args; - const Py_ssize_t pos_args = PyTuple_GET_SIZE(__pyx_args); - switch (pos_args) { - case 2: values[1] = PyTuple_GET_ITEM(__pyx_args, 1); - CYTHON_FALLTHROUGH; - case 1: values[0] = PyTuple_GET_ITEM(__pyx_args, 0); - CYTHON_FALLTHROUGH; - case 0: break; - default: goto __pyx_L5_argtuple_error; - } - kw_args = PyDict_Size(__pyx_kwds); - switch (pos_args) { - case 0: - if (likely((values[0] = __Pyx_PyDict_GetItemStr(__pyx_kwds, __pyx_n_s_fp_str_2)) != 0)) kw_args--; - else goto __pyx_L5_argtuple_error; - CYTHON_FALLTHROUGH; - case 1: - if (likely((values[1] = __Pyx_PyDict_GetItemStr(__pyx_kwds, __pyx_n_s_approx_fp_str)) != 0)) kw_args--; - else { - __Pyx_RaiseArgtupleInvalid("get_database_entry", 1, 2, 2, 1); __PYX_ERR(0, 81, __pyx_L3_error) - } - } - if (unlikely(kw_args > 0)) { - if (unlikely(__Pyx_ParseOptionalKeywords(__pyx_kwds, __pyx_pyargnames, 0, values, pos_args, "get_database_entry") < 0)) __PYX_ERR(0, 81, __pyx_L3_error) - } - } else if (PyTuple_GET_SIZE(__pyx_args) != 2) { - goto __pyx_L5_argtuple_error; - } else { - values[0] = PyTuple_GET_ITEM(__pyx_args, 0); - values[1] = PyTuple_GET_ITEM(__pyx_args, 1); - } - __pyx_v_fp_str = values[0]; - __pyx_v_approx_fp_str = values[1]; - } - goto __pyx_L4_argument_unpacking_done; - __pyx_L5_argtuple_error:; - __Pyx_RaiseArgtupleInvalid("get_database_entry", 1, 2, 2, PyTuple_GET_SIZE(__pyx_args)); __PYX_ERR(0, 81, __pyx_L3_error) - __pyx_L3_error:; - __Pyx_AddTraceback("pmercury.protocols.tcp.TCP.get_database_entry", __pyx_clineno, __pyx_lineno, __pyx_filename); - __Pyx_RefNannyFinishContext(); - return NULL; - __pyx_L4_argument_unpacking_done:; - __pyx_r = __pyx_pf_8pmercury_9protocols_3tcp_3TCP_8get_database_entry(((struct __pyx_obj_8pmercury_9protocols_3tcp_TCP *)__pyx_v_self), __pyx_v_fp_str, __pyx_v_approx_fp_str); - - /* function exit code */ - __Pyx_RefNannyFinishContext(); - return __pyx_r; -} - -static PyObject *__pyx_pf_8pmercury_9protocols_3tcp_3TCP_8get_database_entry(struct __pyx_obj_8pmercury_9protocols_3tcp_TCP *__pyx_v_self, PyObject *__pyx_v_fp_str, CYTHON_UNUSED PyObject *__pyx_v_approx_fp_str) { - PyObject *__pyx_r = NULL; - __Pyx_RefNannyDeclarations - int __pyx_t_1; - PyObject *__pyx_t_2 = NULL; - int __pyx_t_3; - int __pyx_t_4; - __Pyx_RefNannySetupContext("get_database_entry", 0); - - /* "pmercury/protocols/tcp.pyx":82 - * @functools.lru_cache(maxsize=MAX_CACHED_RESULTS) - * def get_database_entry(self, fp_str, approx_fp_str): - * if self.fp_db == None or fp_str not in self.fp_db: # <<<<<<<<<<<<<< - * return None - * - */ - __pyx_t_2 = PyObject_RichCompare(__pyx_v_self->fp_db, Py_None, Py_EQ); __Pyx_XGOTREF(__pyx_t_2); if (unlikely(!__pyx_t_2)) __PYX_ERR(0, 82, __pyx_L1_error) - __pyx_t_3 = __Pyx_PyObject_IsTrue(__pyx_t_2); if (unlikely(__pyx_t_3 < 0)) __PYX_ERR(0, 82, __pyx_L1_error) - __Pyx_DECREF(__pyx_t_2); __pyx_t_2 = 0; - if (!__pyx_t_3) { - } else { - __pyx_t_1 = __pyx_t_3; - goto __pyx_L4_bool_binop_done; - } - if (unlikely(__pyx_v_self->fp_db == Py_None)) { - PyErr_SetString(PyExc_TypeError, "'NoneType' object is not iterable"); - __PYX_ERR(0, 82, __pyx_L1_error) - } - __pyx_t_3 = (__Pyx_PyDict_ContainsTF(__pyx_v_fp_str, __pyx_v_self->fp_db, Py_NE)); if (unlikely(__pyx_t_3 < 0)) __PYX_ERR(0, 82, __pyx_L1_error) - __pyx_t_4 = (__pyx_t_3 != 0); - __pyx_t_1 = __pyx_t_4; - __pyx_L4_bool_binop_done:; - if (__pyx_t_1) { - - /* "pmercury/protocols/tcp.pyx":83 - * def get_database_entry(self, fp_str, approx_fp_str): - * if self.fp_db == None or fp_str not in self.fp_db: - * return None # <<<<<<<<<<<<<< - * - * return self.fp_db[fp_str] - */ - __Pyx_XDECREF(__pyx_r); - __pyx_r = Py_None; __Pyx_INCREF(Py_None); - goto __pyx_L0; - - /* "pmercury/protocols/tcp.pyx":82 - * @functools.lru_cache(maxsize=MAX_CACHED_RESULTS) - * def get_database_entry(self, fp_str, approx_fp_str): - * if self.fp_db == None or fp_str not in self.fp_db: # <<<<<<<<<<<<<< - * return None - * - */ - } - - /* "pmercury/protocols/tcp.pyx":85 - * return None - * - * return self.fp_db[fp_str] # <<<<<<<<<<<<<< - * - * - */ - __Pyx_XDECREF(__pyx_r); - if (unlikely(__pyx_v_self->fp_db == Py_None)) { - PyErr_SetString(PyExc_TypeError, "'NoneType' object is not subscriptable"); - __PYX_ERR(0, 85, __pyx_L1_error) - } - __pyx_t_2 = __Pyx_PyDict_GetItem(__pyx_v_self->fp_db, __pyx_v_fp_str); if (unlikely(!__pyx_t_2)) __PYX_ERR(0, 85, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_2); - __pyx_r = __pyx_t_2; - __pyx_t_2 = 0; - goto __pyx_L0; - - /* "pmercury/protocols/tcp.pyx":81 - * - * @functools.lru_cache(maxsize=MAX_CACHED_RESULTS) - * def get_database_entry(self, fp_str, approx_fp_str): # <<<<<<<<<<<<<< - * if self.fp_db == None or fp_str not in self.fp_db: - * return None - */ - - /* function exit code */ - __pyx_L1_error:; - __Pyx_XDECREF(__pyx_t_2); - __Pyx_AddTraceback("pmercury.protocols.tcp.TCP.get_database_entry", __pyx_clineno, __pyx_lineno, __pyx_filename); - __pyx_r = NULL; - __pyx_L0:; - __Pyx_XGIVEREF(__pyx_r); - __Pyx_RefNannyFinishContext(); - return __pyx_r; -} - -/* "pmercury/protocols/tcp.pyx":89 - * - * @staticmethod - * def proto_identify(data, offset, data_len): # <<<<<<<<<<<<<< - * if data[offset+13] != 2: - * return False - */ - -/* Python wrapper */ -static PyObject *__pyx_pw_8pmercury_9protocols_3tcp_3TCP_11proto_identify(CYTHON_UNUSED PyObject *__pyx_self, PyObject *__pyx_args, PyObject *__pyx_kwds); /*proto*/ -static PyMethodDef __pyx_mdef_8pmercury_9protocols_3tcp_3TCP_11proto_identify = {"proto_identify", (PyCFunction)(void*)(PyCFunctionWithKeywords)__pyx_pw_8pmercury_9protocols_3tcp_3TCP_11proto_identify, METH_VARARGS|METH_KEYWORDS, 0}; -static PyObject *__pyx_pw_8pmercury_9protocols_3tcp_3TCP_11proto_identify(CYTHON_UNUSED PyObject *__pyx_self, PyObject *__pyx_args, PyObject *__pyx_kwds) { - PyObject *__pyx_v_data = 0; - PyObject *__pyx_v_offset = 0; - CYTHON_UNUSED PyObject *__pyx_v_data_len = 0; - PyObject *__pyx_r = 0; - __Pyx_RefNannyDeclarations - __Pyx_RefNannySetupContext("proto_identify (wrapper)", 0); - { - static PyObject **__pyx_pyargnames[] = {&__pyx_n_s_data,&__pyx_n_s_offset,&__pyx_n_s_data_len,0}; - PyObject* values[3] = {0,0,0}; - if (unlikely(__pyx_kwds)) { - Py_ssize_t kw_args; - const Py_ssize_t pos_args = PyTuple_GET_SIZE(__pyx_args); - switch (pos_args) { - case 3: values[2] = PyTuple_GET_ITEM(__pyx_args, 2); - CYTHON_FALLTHROUGH; - case 2: values[1] = PyTuple_GET_ITEM(__pyx_args, 1); - CYTHON_FALLTHROUGH; - case 1: values[0] = PyTuple_GET_ITEM(__pyx_args, 0); - CYTHON_FALLTHROUGH; - case 0: break; - default: goto __pyx_L5_argtuple_error; - } - kw_args = PyDict_Size(__pyx_kwds); - switch (pos_args) { - case 0: - if (likely((values[0] = __Pyx_PyDict_GetItemStr(__pyx_kwds, __pyx_n_s_data)) != 0)) kw_args--; - else goto __pyx_L5_argtuple_error; - CYTHON_FALLTHROUGH; - case 1: - if (likely((values[1] = __Pyx_PyDict_GetItemStr(__pyx_kwds, __pyx_n_s_offset)) != 0)) kw_args--; - else { - __Pyx_RaiseArgtupleInvalid("proto_identify", 1, 3, 3, 1); __PYX_ERR(0, 89, __pyx_L3_error) - } - CYTHON_FALLTHROUGH; - case 2: - if (likely((values[2] = __Pyx_PyDict_GetItemStr(__pyx_kwds, __pyx_n_s_data_len)) != 0)) kw_args--; - else { - __Pyx_RaiseArgtupleInvalid("proto_identify", 1, 3, 3, 2); __PYX_ERR(0, 89, __pyx_L3_error) - } - } - if (unlikely(kw_args > 0)) { - if (unlikely(__Pyx_ParseOptionalKeywords(__pyx_kwds, __pyx_pyargnames, 0, values, pos_args, "proto_identify") < 0)) __PYX_ERR(0, 89, __pyx_L3_error) - } - } else if (PyTuple_GET_SIZE(__pyx_args) != 3) { - goto __pyx_L5_argtuple_error; - } else { - values[0] = PyTuple_GET_ITEM(__pyx_args, 0); - values[1] = PyTuple_GET_ITEM(__pyx_args, 1); - values[2] = PyTuple_GET_ITEM(__pyx_args, 2); - } - __pyx_v_data = values[0]; - __pyx_v_offset = values[1]; - __pyx_v_data_len = values[2]; - } - goto __pyx_L4_argument_unpacking_done; - __pyx_L5_argtuple_error:; - __Pyx_RaiseArgtupleInvalid("proto_identify", 1, 3, 3, PyTuple_GET_SIZE(__pyx_args)); __PYX_ERR(0, 89, __pyx_L3_error) - __pyx_L3_error:; - __Pyx_AddTraceback("pmercury.protocols.tcp.TCP.proto_identify", __pyx_clineno, __pyx_lineno, __pyx_filename); - __Pyx_RefNannyFinishContext(); - return NULL; - __pyx_L4_argument_unpacking_done:; - __pyx_r = __pyx_pf_8pmercury_9protocols_3tcp_3TCP_10proto_identify(__pyx_v_data, __pyx_v_offset, __pyx_v_data_len); - - /* function exit code */ - __Pyx_RefNannyFinishContext(); - return __pyx_r; -} - -static PyObject *__pyx_pf_8pmercury_9protocols_3tcp_3TCP_10proto_identify(PyObject *__pyx_v_data, PyObject *__pyx_v_offset, CYTHON_UNUSED PyObject *__pyx_v_data_len) { - PyObject *__pyx_r = NULL; - __Pyx_RefNannyDeclarations - PyObject *__pyx_t_1 = NULL; - PyObject *__pyx_t_2 = NULL; - int __pyx_t_3; - __Pyx_RefNannySetupContext("proto_identify", 0); - - /* "pmercury/protocols/tcp.pyx":90 - * @staticmethod - * def proto_identify(data, offset, data_len): - * if data[offset+13] != 2: # <<<<<<<<<<<<<< - * return False - * return True - */ - __pyx_t_1 = __Pyx_PyInt_AddObjC(__pyx_v_offset, __pyx_int_13, 13, 0, 0); if (unlikely(!__pyx_t_1)) __PYX_ERR(0, 90, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_1); - __pyx_t_2 = __Pyx_PyObject_GetItem(__pyx_v_data, __pyx_t_1); if (unlikely(!__pyx_t_2)) __PYX_ERR(0, 90, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_2); - __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0; - __pyx_t_1 = __Pyx_PyInt_NeObjC(__pyx_t_2, __pyx_int_2, 2, 0); if (unlikely(!__pyx_t_1)) __PYX_ERR(0, 90, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_1); - __Pyx_DECREF(__pyx_t_2); __pyx_t_2 = 0; - __pyx_t_3 = __Pyx_PyObject_IsTrue(__pyx_t_1); if (unlikely(__pyx_t_3 < 0)) __PYX_ERR(0, 90, __pyx_L1_error) - __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0; - if (__pyx_t_3) { - - /* "pmercury/protocols/tcp.pyx":91 - * def proto_identify(data, offset, data_len): - * if data[offset+13] != 2: - * return False # <<<<<<<<<<<<<< - * return True - * - */ - __Pyx_XDECREF(__pyx_r); - __Pyx_INCREF(Py_False); - __pyx_r = Py_False; - goto __pyx_L0; - - /* "pmercury/protocols/tcp.pyx":90 - * @staticmethod - * def proto_identify(data, offset, data_len): - * if data[offset+13] != 2: # <<<<<<<<<<<<<< - * return False - * return True - */ - } - - /* "pmercury/protocols/tcp.pyx":92 - * if data[offset+13] != 2: - * return False - * return True # <<<<<<<<<<<<<< - * - * - */ - __Pyx_XDECREF(__pyx_r); - __Pyx_INCREF(Py_True); - __pyx_r = Py_True; - goto __pyx_L0; - - /* "pmercury/protocols/tcp.pyx":89 - * - * @staticmethod - * def proto_identify(data, offset, data_len): # <<<<<<<<<<<<<< - * if data[offset+13] != 2: - * return False - */ - - /* function exit code */ - __pyx_L1_error:; - __Pyx_XDECREF(__pyx_t_1); - __Pyx_XDECREF(__pyx_t_2); - __Pyx_AddTraceback("pmercury.protocols.tcp.TCP.proto_identify", __pyx_clineno, __pyx_lineno, __pyx_filename); - __pyx_r = NULL; - __pyx_L0:; - __Pyx_XGIVEREF(__pyx_r); - __Pyx_RefNannyFinishContext(); - return __pyx_r; -} - -/* "pmercury/protocols/tcp.pyx":96 - * - * @staticmethod - * def fingerprint(unsigned char *buf, unsigned int offset, unsigned int data_len): # <<<<<<<<<<<<<< - * cdef list c = [f'({buf[offset+14]:02x}{buf[offset+15]:02x})'] - * - */ - -/* Python wrapper */ -static PyObject *__pyx_pw_8pmercury_9protocols_3tcp_3TCP_13fingerprint(CYTHON_UNUSED PyObject *__pyx_self, PyObject *__pyx_args, PyObject *__pyx_kwds); /*proto*/ -static PyMethodDef __pyx_mdef_8pmercury_9protocols_3tcp_3TCP_13fingerprint = {"fingerprint", (PyCFunction)(void*)(PyCFunctionWithKeywords)__pyx_pw_8pmercury_9protocols_3tcp_3TCP_13fingerprint, METH_VARARGS|METH_KEYWORDS, 0}; -static PyObject *__pyx_pw_8pmercury_9protocols_3tcp_3TCP_13fingerprint(CYTHON_UNUSED PyObject *__pyx_self, PyObject *__pyx_args, PyObject *__pyx_kwds) { - unsigned char *__pyx_v_buf; - unsigned int __pyx_v_offset; - unsigned int __pyx_v_data_len; - PyObject *__pyx_r = 0; - __Pyx_RefNannyDeclarations - __Pyx_RefNannySetupContext("fingerprint (wrapper)", 0); - { - static PyObject **__pyx_pyargnames[] = {&__pyx_n_s_buf,&__pyx_n_s_offset,&__pyx_n_s_data_len,0}; - PyObject* values[3] = {0,0,0}; - if (unlikely(__pyx_kwds)) { - Py_ssize_t kw_args; - const Py_ssize_t pos_args = PyTuple_GET_SIZE(__pyx_args); - switch (pos_args) { - case 3: values[2] = PyTuple_GET_ITEM(__pyx_args, 2); - CYTHON_FALLTHROUGH; - case 2: values[1] = PyTuple_GET_ITEM(__pyx_args, 1); - CYTHON_FALLTHROUGH; - case 1: values[0] = PyTuple_GET_ITEM(__pyx_args, 0); - CYTHON_FALLTHROUGH; - case 0: break; - default: goto __pyx_L5_argtuple_error; - } - kw_args = PyDict_Size(__pyx_kwds); - switch (pos_args) { - case 0: - if (likely((values[0] = __Pyx_PyDict_GetItemStr(__pyx_kwds, __pyx_n_s_buf)) != 0)) kw_args--; - else goto __pyx_L5_argtuple_error; - CYTHON_FALLTHROUGH; - case 1: - if (likely((values[1] = __Pyx_PyDict_GetItemStr(__pyx_kwds, __pyx_n_s_offset)) != 0)) kw_args--; - else { - __Pyx_RaiseArgtupleInvalid("fingerprint", 1, 3, 3, 1); __PYX_ERR(0, 96, __pyx_L3_error) - } - CYTHON_FALLTHROUGH; - case 2: - if (likely((values[2] = __Pyx_PyDict_GetItemStr(__pyx_kwds, __pyx_n_s_data_len)) != 0)) kw_args--; - else { - __Pyx_RaiseArgtupleInvalid("fingerprint", 1, 3, 3, 2); __PYX_ERR(0, 96, __pyx_L3_error) - } - } - if (unlikely(kw_args > 0)) { - if (unlikely(__Pyx_ParseOptionalKeywords(__pyx_kwds, __pyx_pyargnames, 0, values, pos_args, "fingerprint") < 0)) __PYX_ERR(0, 96, __pyx_L3_error) - } - } else if (PyTuple_GET_SIZE(__pyx_args) != 3) { - goto __pyx_L5_argtuple_error; - } else { - values[0] = PyTuple_GET_ITEM(__pyx_args, 0); - values[1] = PyTuple_GET_ITEM(__pyx_args, 1); - values[2] = PyTuple_GET_ITEM(__pyx_args, 2); - } - __pyx_v_buf = __Pyx_PyObject_AsWritableUString(values[0]); if (unlikely((!__pyx_v_buf) && PyErr_Occurred())) __PYX_ERR(0, 96, __pyx_L3_error) - __pyx_v_offset = __Pyx_PyInt_As_unsigned_int(values[1]); if (unlikely((__pyx_v_offset == (unsigned int)-1) && PyErr_Occurred())) __PYX_ERR(0, 96, __pyx_L3_error) - __pyx_v_data_len = __Pyx_PyInt_As_unsigned_int(values[2]); if (unlikely((__pyx_v_data_len == (unsigned int)-1) && PyErr_Occurred())) __PYX_ERR(0, 96, __pyx_L3_error) - } - goto __pyx_L4_argument_unpacking_done; - __pyx_L5_argtuple_error:; - __Pyx_RaiseArgtupleInvalid("fingerprint", 1, 3, 3, PyTuple_GET_SIZE(__pyx_args)); __PYX_ERR(0, 96, __pyx_L3_error) - __pyx_L3_error:; - __Pyx_AddTraceback("pmercury.protocols.tcp.TCP.fingerprint", __pyx_clineno, __pyx_lineno, __pyx_filename); - __Pyx_RefNannyFinishContext(); - return NULL; - __pyx_L4_argument_unpacking_done:; - __pyx_r = __pyx_pf_8pmercury_9protocols_3tcp_3TCP_12fingerprint(__pyx_v_buf, __pyx_v_offset, __pyx_v_data_len); - - /* function exit code */ - __Pyx_RefNannyFinishContext(); - return __pyx_r; -} - -static PyObject *__pyx_pf_8pmercury_9protocols_3tcp_3TCP_12fingerprint(unsigned char *__pyx_v_buf, unsigned int __pyx_v_offset, unsigned int __pyx_v_data_len) { - PyObject *__pyx_v_c = 0; - unsigned int __pyx_v_kind; - unsigned int __pyx_v_length; - PyObject *__pyx_r = NULL; - __Pyx_RefNannyDeclarations - PyObject *__pyx_t_1 = NULL; - Py_ssize_t __pyx_t_2; - Py_UCS4 __pyx_t_3; - PyObject *__pyx_t_4 = NULL; - int __pyx_t_5; - int __pyx_t_6; - PyObject *__pyx_t_7 = NULL; - PyObject *__pyx_t_8 = NULL; - __Pyx_RefNannySetupContext("fingerprint", 0); - - /* "pmercury/protocols/tcp.pyx":97 - * @staticmethod - * def fingerprint(unsigned char *buf, unsigned int offset, unsigned int data_len): - * cdef list c = [f'({buf[offset+14]:02x}{buf[offset+15]:02x})'] # <<<<<<<<<<<<<< - * - * offset += 20 - */ - __pyx_t_1 = PyTuple_New(4); if (unlikely(!__pyx_t_1)) __PYX_ERR(0, 97, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_1); - __pyx_t_2 = 0; - __pyx_t_3 = 127; - __Pyx_INCREF(__pyx_kp_u_); - __pyx_t_2 += 1; - __Pyx_GIVEREF(__pyx_kp_u_); - PyTuple_SET_ITEM(__pyx_t_1, 0, __pyx_kp_u_); - __pyx_t_4 = __Pyx_PyUnicode_From_unsigned_char((__pyx_v_buf[(__pyx_v_offset + 14)]), 2, '0', 'x'); if (unlikely(!__pyx_t_4)) __PYX_ERR(0, 97, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_4); - __pyx_t_2 += __Pyx_PyUnicode_GET_LENGTH(__pyx_t_4); - __Pyx_GIVEREF(__pyx_t_4); - PyTuple_SET_ITEM(__pyx_t_1, 1, __pyx_t_4); - __pyx_t_4 = 0; - __pyx_t_4 = __Pyx_PyUnicode_From_unsigned_char((__pyx_v_buf[(__pyx_v_offset + 15)]), 2, '0', 'x'); if (unlikely(!__pyx_t_4)) __PYX_ERR(0, 97, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_4); - __pyx_t_2 += __Pyx_PyUnicode_GET_LENGTH(__pyx_t_4); - __Pyx_GIVEREF(__pyx_t_4); - PyTuple_SET_ITEM(__pyx_t_1, 2, __pyx_t_4); - __pyx_t_4 = 0; - __Pyx_INCREF(__pyx_kp_u__2); - __pyx_t_2 += 1; - __Pyx_GIVEREF(__pyx_kp_u__2); - PyTuple_SET_ITEM(__pyx_t_1, 3, __pyx_kp_u__2); - __pyx_t_4 = __Pyx_PyUnicode_Join(__pyx_t_1, 4, __pyx_t_2, __pyx_t_3); if (unlikely(!__pyx_t_4)) __PYX_ERR(0, 97, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_4); - __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0; - __pyx_t_1 = PyList_New(1); if (unlikely(!__pyx_t_1)) __PYX_ERR(0, 97, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_1); - __Pyx_GIVEREF(__pyx_t_4); - PyList_SET_ITEM(__pyx_t_1, 0, __pyx_t_4); - __pyx_t_4 = 0; - __pyx_v_c = ((PyObject*)__pyx_t_1); - __pyx_t_1 = 0; - - /* "pmercury/protocols/tcp.pyx":99 - * cdef list c = [f'({buf[offset+14]:02x}{buf[offset+15]:02x})'] - * - * offset += 20 # <<<<<<<<<<<<<< - * cdef unsigned int kind - * cdef unsigned int length - */ - __pyx_v_offset = (__pyx_v_offset + 20); - - /* "pmercury/protocols/tcp.pyx":103 - * cdef unsigned int length - * - * while offset < data_len: # <<<<<<<<<<<<<< - * kind = buf[offset] - * length = buf[offset+1] - */ - while (1) { - __pyx_t_5 = ((__pyx_v_offset < __pyx_v_data_len) != 0); - if (!__pyx_t_5) break; - - /* "pmercury/protocols/tcp.pyx":104 - * - * while offset < data_len: - * kind = buf[offset] # <<<<<<<<<<<<<< - * length = buf[offset+1] - * if kind == 0 or kind == 1: # End of Options / NOP - */ - __pyx_v_kind = (__pyx_v_buf[__pyx_v_offset]); - - /* "pmercury/protocols/tcp.pyx":105 - * while offset < data_len: - * kind = buf[offset] - * length = buf[offset+1] # <<<<<<<<<<<<<< - * if kind == 0 or kind == 1: # End of Options / NOP - * c.append('(%02x)' % kind) - */ - __pyx_v_length = (__pyx_v_buf[(__pyx_v_offset + 1)]); - - /* "pmercury/protocols/tcp.pyx":106 - * kind = buf[offset] - * length = buf[offset+1] - * if kind == 0 or kind == 1: # End of Options / NOP # <<<<<<<<<<<<<< - * c.append('(%02x)' % kind) - * offset += 1 - */ - switch (__pyx_v_kind) { - case 0: - case 1: - __pyx_t_5 = 1; - break; - default: - __pyx_t_5 = 0; - break; - } - if (__pyx_t_5) { - - /* "pmercury/protocols/tcp.pyx":107 - * length = buf[offset+1] - * if kind == 0 or kind == 1: # End of Options / NOP - * c.append('(%02x)' % kind) # <<<<<<<<<<<<<< - * offset += 1 - * elif kind != 2 and kind != 3: - */ - __pyx_t_1 = __Pyx_PyInt_From_unsigned_int(__pyx_v_kind); if (unlikely(!__pyx_t_1)) __PYX_ERR(0, 107, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_1); - __pyx_t_4 = PyUnicode_Format(__pyx_kp_u_02x_2, __pyx_t_1); if (unlikely(!__pyx_t_4)) __PYX_ERR(0, 107, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_4); - __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0; - __pyx_t_6 = __Pyx_PyList_Append(__pyx_v_c, __pyx_t_4); if (unlikely(__pyx_t_6 == ((int)-1))) __PYX_ERR(0, 107, __pyx_L1_error) - __Pyx_DECREF(__pyx_t_4); __pyx_t_4 = 0; - - /* "pmercury/protocols/tcp.pyx":108 - * if kind == 0 or kind == 1: # End of Options / NOP - * c.append('(%02x)' % kind) - * offset += 1 # <<<<<<<<<<<<<< - * elif kind != 2 and kind != 3: - * c.append('(%02x)' % kind) - */ - __pyx_v_offset = (__pyx_v_offset + 1); - - /* "pmercury/protocols/tcp.pyx":106 - * kind = buf[offset] - * length = buf[offset+1] - * if kind == 0 or kind == 1: # End of Options / NOP # <<<<<<<<<<<<<< - * c.append('(%02x)' % kind) - * offset += 1 - */ - goto __pyx_L5; - } - - /* "pmercury/protocols/tcp.pyx":109 - * c.append('(%02x)' % kind) - * offset += 1 - * elif kind != 2 and kind != 3: # <<<<<<<<<<<<<< - * c.append('(%02x)' % kind) - * offset += length - */ - switch (__pyx_v_kind) { - case 2: - case 3: - __pyx_t_5 = 0; - break; - default: - __pyx_t_5 = 1; - break; - } - if (__pyx_t_5) { - - /* "pmercury/protocols/tcp.pyx":110 - * offset += 1 - * elif kind != 2 and kind != 3: - * c.append('(%02x)' % kind) # <<<<<<<<<<<<<< - * offset += length - * else: - */ - __pyx_t_4 = __Pyx_PyInt_From_unsigned_int(__pyx_v_kind); if (unlikely(!__pyx_t_4)) __PYX_ERR(0, 110, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_4); - __pyx_t_1 = PyUnicode_Format(__pyx_kp_u_02x_2, __pyx_t_4); if (unlikely(!__pyx_t_1)) __PYX_ERR(0, 110, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_1); - __Pyx_DECREF(__pyx_t_4); __pyx_t_4 = 0; - __pyx_t_6 = __Pyx_PyList_Append(__pyx_v_c, __pyx_t_1); if (unlikely(__pyx_t_6 == ((int)-1))) __PYX_ERR(0, 110, __pyx_L1_error) - __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0; - - /* "pmercury/protocols/tcp.pyx":111 - * elif kind != 2 and kind != 3: - * c.append('(%02x)' % kind) - * offset += length # <<<<<<<<<<<<<< - * else: - * c.append('(%02x%s)' % (kind, buf[offset+1:offset+length].hex())) - */ - __pyx_v_offset = (__pyx_v_offset + __pyx_v_length); - - /* "pmercury/protocols/tcp.pyx":109 - * c.append('(%02x)' % kind) - * offset += 1 - * elif kind != 2 and kind != 3: # <<<<<<<<<<<<<< - * c.append('(%02x)' % kind) - * offset += length - */ - goto __pyx_L5; - } - - /* "pmercury/protocols/tcp.pyx":113 - * offset += length - * else: - * c.append('(%02x%s)' % (kind, buf[offset+1:offset+length].hex())) # <<<<<<<<<<<<<< - * offset += length - * - */ - /*else*/ { - __pyx_t_1 = PyTuple_New(4); if (unlikely(!__pyx_t_1)) __PYX_ERR(0, 113, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_1); - __pyx_t_2 = 0; - __pyx_t_3 = 127; - __Pyx_INCREF(__pyx_kp_u_); - __pyx_t_2 += 1; - __Pyx_GIVEREF(__pyx_kp_u_); - PyTuple_SET_ITEM(__pyx_t_1, 0, __pyx_kp_u_); - __pyx_t_4 = __Pyx_PyUnicode_From_unsigned_int(__pyx_v_kind, 2, '0', 'x'); if (unlikely(!__pyx_t_4)) __PYX_ERR(0, 113, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_4); - __pyx_t_2 += __Pyx_PyUnicode_GET_LENGTH(__pyx_t_4); - __Pyx_GIVEREF(__pyx_t_4); - PyTuple_SET_ITEM(__pyx_t_1, 1, __pyx_t_4); - __pyx_t_4 = 0; - __pyx_t_7 = __Pyx_PyBytes_FromStringAndSize(((const char*)__pyx_v_buf) + (__pyx_v_offset + 1), (__pyx_v_offset + __pyx_v_length) - (__pyx_v_offset + 1)); if (unlikely(!__pyx_t_7)) __PYX_ERR(0, 113, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_7); - __pyx_t_8 = __Pyx_PyObject_GetAttrStr(__pyx_t_7, __pyx_n_s_hex); if (unlikely(!__pyx_t_8)) __PYX_ERR(0, 113, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_8); - __Pyx_DECREF(__pyx_t_7); __pyx_t_7 = 0; - __pyx_t_7 = NULL; - if (CYTHON_UNPACK_METHODS && likely(PyMethod_Check(__pyx_t_8))) { - __pyx_t_7 = PyMethod_GET_SELF(__pyx_t_8); - if (likely(__pyx_t_7)) { - PyObject* function = PyMethod_GET_FUNCTION(__pyx_t_8); - __Pyx_INCREF(__pyx_t_7); - __Pyx_INCREF(function); - __Pyx_DECREF_SET(__pyx_t_8, function); - } - } - __pyx_t_4 = (__pyx_t_7) ? __Pyx_PyObject_CallOneArg(__pyx_t_8, __pyx_t_7) : __Pyx_PyObject_CallNoArg(__pyx_t_8); - __Pyx_XDECREF(__pyx_t_7); __pyx_t_7 = 0; - if (unlikely(!__pyx_t_4)) __PYX_ERR(0, 113, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_4); - __Pyx_DECREF(__pyx_t_8); __pyx_t_8 = 0; - __pyx_t_8 = __Pyx_PyObject_FormatSimpleAndDecref(PyObject_Unicode(__pyx_t_4), __pyx_empty_unicode); if (unlikely(!__pyx_t_8)) __PYX_ERR(0, 113, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_8); - __Pyx_DECREF(__pyx_t_4); __pyx_t_4 = 0; - __pyx_t_3 = (__Pyx_PyUnicode_MAX_CHAR_VALUE(__pyx_t_8) > __pyx_t_3) ? __Pyx_PyUnicode_MAX_CHAR_VALUE(__pyx_t_8) : __pyx_t_3; - __pyx_t_2 += __Pyx_PyUnicode_GET_LENGTH(__pyx_t_8); - __Pyx_GIVEREF(__pyx_t_8); - PyTuple_SET_ITEM(__pyx_t_1, 2, __pyx_t_8); - __pyx_t_8 = 0; - __Pyx_INCREF(__pyx_kp_u__2); - __pyx_t_2 += 1; - __Pyx_GIVEREF(__pyx_kp_u__2); - PyTuple_SET_ITEM(__pyx_t_1, 3, __pyx_kp_u__2); - __pyx_t_8 = __Pyx_PyUnicode_Join(__pyx_t_1, 4, __pyx_t_2, __pyx_t_3); if (unlikely(!__pyx_t_8)) __PYX_ERR(0, 113, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_8); - __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0; - __pyx_t_6 = __Pyx_PyList_Append(__pyx_v_c, __pyx_t_8); if (unlikely(__pyx_t_6 == ((int)-1))) __PYX_ERR(0, 113, __pyx_L1_error) - __Pyx_DECREF(__pyx_t_8); __pyx_t_8 = 0; - - /* "pmercury/protocols/tcp.pyx":114 - * else: - * c.append('(%02x%s)' % (kind, buf[offset+1:offset+length].hex())) - * offset += length # <<<<<<<<<<<<<< - * - * return ''.join(c), None - */ - __pyx_v_offset = (__pyx_v_offset + __pyx_v_length); - } - __pyx_L5:; - } - - /* "pmercury/protocols/tcp.pyx":116 - * offset += length - * - * return ''.join(c), None # <<<<<<<<<<<<<< - * - * - */ - __Pyx_XDECREF(__pyx_r); - __pyx_t_8 = PyUnicode_Join(__pyx_kp_u__3, __pyx_v_c); if (unlikely(!__pyx_t_8)) __PYX_ERR(0, 116, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_8); - __pyx_t_1 = PyTuple_New(2); if (unlikely(!__pyx_t_1)) __PYX_ERR(0, 116, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_1); - __Pyx_GIVEREF(__pyx_t_8); - PyTuple_SET_ITEM(__pyx_t_1, 0, __pyx_t_8); - __Pyx_INCREF(Py_None); - __Pyx_GIVEREF(Py_None); - PyTuple_SET_ITEM(__pyx_t_1, 1, Py_None); - __pyx_t_8 = 0; - __pyx_r = __pyx_t_1; - __pyx_t_1 = 0; - goto __pyx_L0; - - /* "pmercury/protocols/tcp.pyx":96 - * - * @staticmethod - * def fingerprint(unsigned char *buf, unsigned int offset, unsigned int data_len): # <<<<<<<<<<<<<< - * cdef list c = [f'({buf[offset+14]:02x}{buf[offset+15]:02x})'] - * - */ - - /* function exit code */ - __pyx_L1_error:; - __Pyx_XDECREF(__pyx_t_1); - __Pyx_XDECREF(__pyx_t_4); - __Pyx_XDECREF(__pyx_t_7); - __Pyx_XDECREF(__pyx_t_8); - __Pyx_AddTraceback("pmercury.protocols.tcp.TCP.fingerprint", __pyx_clineno, __pyx_lineno, __pyx_filename); - __pyx_r = NULL; - __pyx_L0:; - __Pyx_XDECREF(__pyx_v_c); - __Pyx_XGIVEREF(__pyx_r); - __Pyx_RefNannyFinishContext(); - return __pyx_r; -} - -/* "pmercury/protocols/tcp.pyx":119 - * - * - * def get_human_readable(self, fp_str_): # <<<<<<<<<<<<<< - * return None - * - */ - -/* Python wrapper */ -static PyObject *__pyx_pw_8pmercury_9protocols_3tcp_3TCP_15get_human_readable(PyObject *__pyx_v_self, PyObject *__pyx_v_fp_str_); /*proto*/ -static PyObject *__pyx_pw_8pmercury_9protocols_3tcp_3TCP_15get_human_readable(PyObject *__pyx_v_self, PyObject *__pyx_v_fp_str_) { - PyObject *__pyx_r = 0; - __Pyx_RefNannyDeclarations - __Pyx_RefNannySetupContext("get_human_readable (wrapper)", 0); - __pyx_r = __pyx_pf_8pmercury_9protocols_3tcp_3TCP_14get_human_readable(((struct __pyx_obj_8pmercury_9protocols_3tcp_TCP *)__pyx_v_self), ((PyObject *)__pyx_v_fp_str_)); - - /* function exit code */ - __Pyx_RefNannyFinishContext(); - return __pyx_r; -} - -static PyObject *__pyx_pf_8pmercury_9protocols_3tcp_3TCP_14get_human_readable(CYTHON_UNUSED struct __pyx_obj_8pmercury_9protocols_3tcp_TCP *__pyx_v_self, CYTHON_UNUSED PyObject *__pyx_v_fp_str_) { - PyObject *__pyx_r = NULL; - __Pyx_RefNannyDeclarations - __Pyx_RefNannySetupContext("get_human_readable", 0); - - /* "pmercury/protocols/tcp.pyx":120 - * - * def get_human_readable(self, fp_str_): - * return None # <<<<<<<<<<<<<< - * - * - */ - __Pyx_XDECREF(__pyx_r); - __pyx_r = Py_None; __Pyx_INCREF(Py_None); - goto __pyx_L0; - - /* "pmercury/protocols/tcp.pyx":119 - * - * - * def get_human_readable(self, fp_str_): # <<<<<<<<<<<<<< - * return None - * - */ - - /* function exit code */ - __pyx_L0:; - __Pyx_XGIVEREF(__pyx_r); - __Pyx_RefNannyFinishContext(); - return __pyx_r; -} - -/* "pmercury/protocols/tcp.pyx":123 - * - * - * def proc_identify(self, fp_str_, context_, dst_ip, dst_port, list_procs=0, endpoint=None, approx=True, debug=None): # <<<<<<<<<<<<<< - * return None - * - */ - -/* Python wrapper */ -static PyObject *__pyx_pw_8pmercury_9protocols_3tcp_3TCP_17proc_identify(PyObject *__pyx_v_self, PyObject *__pyx_args, PyObject *__pyx_kwds); /*proto*/ -static PyObject *__pyx_pw_8pmercury_9protocols_3tcp_3TCP_17proc_identify(PyObject *__pyx_v_self, PyObject *__pyx_args, PyObject *__pyx_kwds) { - CYTHON_UNUSED PyObject *__pyx_v_fp_str_ = 0; - CYTHON_UNUSED PyObject *__pyx_v_context_ = 0; - CYTHON_UNUSED PyObject *__pyx_v_dst_ip = 0; - CYTHON_UNUSED PyObject *__pyx_v_dst_port = 0; - CYTHON_UNUSED PyObject *__pyx_v_list_procs = 0; - CYTHON_UNUSED PyObject *__pyx_v_endpoint = 0; - CYTHON_UNUSED PyObject *__pyx_v_approx = 0; - CYTHON_UNUSED PyObject *__pyx_v_debug = 0; - PyObject *__pyx_r = 0; - __Pyx_RefNannyDeclarations - __Pyx_RefNannySetupContext("proc_identify (wrapper)", 0); - { - static PyObject **__pyx_pyargnames[] = {&__pyx_n_s_fp_str,&__pyx_n_s_context,&__pyx_n_s_dst_ip,&__pyx_n_s_dst_port,&__pyx_n_s_list_procs,&__pyx_n_s_endpoint,&__pyx_n_s_approx,&__pyx_n_s_debug,0}; - PyObject* values[8] = {0,0,0,0,0,0,0,0}; - values[4] = ((PyObject *)__pyx_int_0); - values[5] = ((PyObject *)Py_None); - values[6] = ((PyObject *)Py_True); - values[7] = ((PyObject *)Py_None); - if (unlikely(__pyx_kwds)) { - Py_ssize_t kw_args; - const Py_ssize_t pos_args = PyTuple_GET_SIZE(__pyx_args); - switch (pos_args) { - case 8: values[7] = PyTuple_GET_ITEM(__pyx_args, 7); - CYTHON_FALLTHROUGH; - case 7: values[6] = PyTuple_GET_ITEM(__pyx_args, 6); - CYTHON_FALLTHROUGH; - case 6: values[5] = PyTuple_GET_ITEM(__pyx_args, 5); - CYTHON_FALLTHROUGH; - case 5: values[4] = PyTuple_GET_ITEM(__pyx_args, 4); - CYTHON_FALLTHROUGH; - case 4: values[3] = PyTuple_GET_ITEM(__pyx_args, 3); - CYTHON_FALLTHROUGH; - case 3: values[2] = PyTuple_GET_ITEM(__pyx_args, 2); - CYTHON_FALLTHROUGH; - case 2: values[1] = PyTuple_GET_ITEM(__pyx_args, 1); - CYTHON_FALLTHROUGH; - case 1: values[0] = PyTuple_GET_ITEM(__pyx_args, 0); - CYTHON_FALLTHROUGH; - case 0: break; - default: goto __pyx_L5_argtuple_error; - } - kw_args = PyDict_Size(__pyx_kwds); - switch (pos_args) { - case 0: - if (likely((values[0] = __Pyx_PyDict_GetItemStr(__pyx_kwds, __pyx_n_s_fp_str)) != 0)) kw_args--; - else goto __pyx_L5_argtuple_error; - CYTHON_FALLTHROUGH; - case 1: - if (likely((values[1] = __Pyx_PyDict_GetItemStr(__pyx_kwds, __pyx_n_s_context)) != 0)) kw_args--; - else { - __Pyx_RaiseArgtupleInvalid("proc_identify", 0, 4, 8, 1); __PYX_ERR(0, 123, __pyx_L3_error) - } - CYTHON_FALLTHROUGH; - case 2: - if (likely((values[2] = __Pyx_PyDict_GetItemStr(__pyx_kwds, __pyx_n_s_dst_ip)) != 0)) kw_args--; - else { - __Pyx_RaiseArgtupleInvalid("proc_identify", 0, 4, 8, 2); __PYX_ERR(0, 123, __pyx_L3_error) - } - CYTHON_FALLTHROUGH; - case 3: - if (likely((values[3] = __Pyx_PyDict_GetItemStr(__pyx_kwds, __pyx_n_s_dst_port)) != 0)) kw_args--; - else { - __Pyx_RaiseArgtupleInvalid("proc_identify", 0, 4, 8, 3); __PYX_ERR(0, 123, __pyx_L3_error) - } - CYTHON_FALLTHROUGH; - case 4: - if (kw_args > 0) { - PyObject* value = __Pyx_PyDict_GetItemStr(__pyx_kwds, __pyx_n_s_list_procs); - if (value) { values[4] = value; kw_args--; } - } - CYTHON_FALLTHROUGH; - case 5: - if (kw_args > 0) { - PyObject* value = __Pyx_PyDict_GetItemStr(__pyx_kwds, __pyx_n_s_endpoint); - if (value) { values[5] = value; kw_args--; } - } - CYTHON_FALLTHROUGH; - case 6: - if (kw_args > 0) { - PyObject* value = __Pyx_PyDict_GetItemStr(__pyx_kwds, __pyx_n_s_approx); - if (value) { values[6] = value; kw_args--; } - } - CYTHON_FALLTHROUGH; - case 7: - if (kw_args > 0) { - PyObject* value = __Pyx_PyDict_GetItemStr(__pyx_kwds, __pyx_n_s_debug); - if (value) { values[7] = value; kw_args--; } - } - } - if (unlikely(kw_args > 0)) { - if (unlikely(__Pyx_ParseOptionalKeywords(__pyx_kwds, __pyx_pyargnames, 0, values, pos_args, "proc_identify") < 0)) __PYX_ERR(0, 123, __pyx_L3_error) - } - } else { - switch (PyTuple_GET_SIZE(__pyx_args)) { - case 8: values[7] = PyTuple_GET_ITEM(__pyx_args, 7); - CYTHON_FALLTHROUGH; - case 7: values[6] = PyTuple_GET_ITEM(__pyx_args, 6); - CYTHON_FALLTHROUGH; - case 6: values[5] = PyTuple_GET_ITEM(__pyx_args, 5); - CYTHON_FALLTHROUGH; - case 5: values[4] = PyTuple_GET_ITEM(__pyx_args, 4); - CYTHON_FALLTHROUGH; - case 4: values[3] = PyTuple_GET_ITEM(__pyx_args, 3); - values[2] = PyTuple_GET_ITEM(__pyx_args, 2); - values[1] = PyTuple_GET_ITEM(__pyx_args, 1); - values[0] = PyTuple_GET_ITEM(__pyx_args, 0); - break; - default: goto __pyx_L5_argtuple_error; - } - } - __pyx_v_fp_str_ = values[0]; - __pyx_v_context_ = values[1]; - __pyx_v_dst_ip = values[2]; - __pyx_v_dst_port = values[3]; - __pyx_v_list_procs = values[4]; - __pyx_v_endpoint = values[5]; - __pyx_v_approx = values[6]; - __pyx_v_debug = values[7]; - } - goto __pyx_L4_argument_unpacking_done; - __pyx_L5_argtuple_error:; - __Pyx_RaiseArgtupleInvalid("proc_identify", 0, 4, 8, PyTuple_GET_SIZE(__pyx_args)); __PYX_ERR(0, 123, __pyx_L3_error) - __pyx_L3_error:; - __Pyx_AddTraceback("pmercury.protocols.tcp.TCP.proc_identify", __pyx_clineno, __pyx_lineno, __pyx_filename); - __Pyx_RefNannyFinishContext(); - return NULL; - __pyx_L4_argument_unpacking_done:; - __pyx_r = __pyx_pf_8pmercury_9protocols_3tcp_3TCP_16proc_identify(((struct __pyx_obj_8pmercury_9protocols_3tcp_TCP *)__pyx_v_self), __pyx_v_fp_str_, __pyx_v_context_, __pyx_v_dst_ip, __pyx_v_dst_port, __pyx_v_list_procs, __pyx_v_endpoint, __pyx_v_approx, __pyx_v_debug); - - /* function exit code */ - __Pyx_RefNannyFinishContext(); - return __pyx_r; -} - -static PyObject *__pyx_pf_8pmercury_9protocols_3tcp_3TCP_16proc_identify(CYTHON_UNUSED struct __pyx_obj_8pmercury_9protocols_3tcp_TCP *__pyx_v_self, CYTHON_UNUSED PyObject *__pyx_v_fp_str_, CYTHON_UNUSED PyObject *__pyx_v_context_, CYTHON_UNUSED PyObject *__pyx_v_dst_ip, CYTHON_UNUSED PyObject *__pyx_v_dst_port, CYTHON_UNUSED PyObject *__pyx_v_list_procs, CYTHON_UNUSED PyObject *__pyx_v_endpoint, CYTHON_UNUSED PyObject *__pyx_v_approx, CYTHON_UNUSED PyObject *__pyx_v_debug) { - PyObject *__pyx_r = NULL; - __Pyx_RefNannyDeclarations - __Pyx_RefNannySetupContext("proc_identify", 0); - - /* "pmercury/protocols/tcp.pyx":124 - * - * def proc_identify(self, fp_str_, context_, dst_ip, dst_port, list_procs=0, endpoint=None, approx=True, debug=None): - * return None # <<<<<<<<<<<<<< - * - */ - __Pyx_XDECREF(__pyx_r); - __pyx_r = Py_None; __Pyx_INCREF(Py_None); - goto __pyx_L0; - - /* "pmercury/protocols/tcp.pyx":123 - * - * - * def proc_identify(self, fp_str_, context_, dst_ip, dst_port, list_procs=0, endpoint=None, approx=True, debug=None): # <<<<<<<<<<<<<< - * return None - * - */ - - /* function exit code */ - __pyx_L0:; - __Pyx_XGIVEREF(__pyx_r); - __Pyx_RefNannyFinishContext(); - return __pyx_r; -} - -/* "(tree fragment)":1 - * def __reduce_cython__(self): # <<<<<<<<<<<<<< - * cdef tuple state - * cdef object _dict - */ - -/* Python wrapper */ -static PyObject *__pyx_pw_8pmercury_9protocols_3tcp_3TCP_19__reduce_cython__(PyObject *__pyx_v_self, CYTHON_UNUSED PyObject *unused); /*proto*/ -static PyObject *__pyx_pw_8pmercury_9protocols_3tcp_3TCP_19__reduce_cython__(PyObject *__pyx_v_self, CYTHON_UNUSED PyObject *unused) { - PyObject *__pyx_r = 0; - __Pyx_RefNannyDeclarations - __Pyx_RefNannySetupContext("__reduce_cython__ (wrapper)", 0); - __pyx_r = __pyx_pf_8pmercury_9protocols_3tcp_3TCP_18__reduce_cython__(((struct __pyx_obj_8pmercury_9protocols_3tcp_TCP *)__pyx_v_self)); - - /* function exit code */ - __Pyx_RefNannyFinishContext(); - return __pyx_r; -} - -static PyObject *__pyx_pf_8pmercury_9protocols_3tcp_3TCP_18__reduce_cython__(struct __pyx_obj_8pmercury_9protocols_3tcp_TCP *__pyx_v_self) { - PyObject *__pyx_v_state = 0; - PyObject *__pyx_v__dict = 0; - int __pyx_v_use_setstate; - PyObject *__pyx_r = NULL; - __Pyx_RefNannyDeclarations - PyObject *__pyx_t_1 = NULL; - int __pyx_t_2; - int __pyx_t_3; - PyObject *__pyx_t_4 = NULL; - PyObject *__pyx_t_5 = NULL; - __Pyx_RefNannySetupContext("__reduce_cython__", 0); - - /* "(tree fragment)":5 - * cdef object _dict - * cdef bint use_setstate - * state = (self.fp_db,) # <<<<<<<<<<<<<< - * _dict = getattr(self, '__dict__', None) - * if _dict is not None: - */ - __pyx_t_1 = PyTuple_New(1); if (unlikely(!__pyx_t_1)) __PYX_ERR(1, 5, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_1); - __Pyx_INCREF(__pyx_v_self->fp_db); - __Pyx_GIVEREF(__pyx_v_self->fp_db); - PyTuple_SET_ITEM(__pyx_t_1, 0, __pyx_v_self->fp_db); - __pyx_v_state = ((PyObject*)__pyx_t_1); - __pyx_t_1 = 0; - - /* "(tree fragment)":6 - * cdef bint use_setstate - * state = (self.fp_db,) - * _dict = getattr(self, '__dict__', None) # <<<<<<<<<<<<<< - * if _dict is not None: - * state += (_dict,) - */ - __pyx_t_1 = __Pyx_GetAttr3(((PyObject *)__pyx_v_self), __pyx_n_s_dict, Py_None); if (unlikely(!__pyx_t_1)) __PYX_ERR(1, 6, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_1); - __pyx_v__dict = __pyx_t_1; - __pyx_t_1 = 0; - - /* "(tree fragment)":7 - * state = (self.fp_db,) - * _dict = getattr(self, '__dict__', None) - * if _dict is not None: # <<<<<<<<<<<<<< - * state += (_dict,) - * use_setstate = True - */ - __pyx_t_2 = (__pyx_v__dict != Py_None); - __pyx_t_3 = (__pyx_t_2 != 0); - if (__pyx_t_3) { - - /* "(tree fragment)":8 - * _dict = getattr(self, '__dict__', None) - * if _dict is not None: - * state += (_dict,) # <<<<<<<<<<<<<< - * use_setstate = True - * else: - */ - __pyx_t_1 = PyTuple_New(1); if (unlikely(!__pyx_t_1)) __PYX_ERR(1, 8, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_1); - __Pyx_INCREF(__pyx_v__dict); - __Pyx_GIVEREF(__pyx_v__dict); - PyTuple_SET_ITEM(__pyx_t_1, 0, __pyx_v__dict); - __pyx_t_4 = PyNumber_InPlaceAdd(__pyx_v_state, __pyx_t_1); if (unlikely(!__pyx_t_4)) __PYX_ERR(1, 8, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_4); - __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0; - __Pyx_DECREF_SET(__pyx_v_state, ((PyObject*)__pyx_t_4)); - __pyx_t_4 = 0; - - /* "(tree fragment)":9 - * if _dict is not None: - * state += (_dict,) - * use_setstate = True # <<<<<<<<<<<<<< - * else: - * use_setstate = self.fp_db is not None - */ - __pyx_v_use_setstate = 1; - - /* "(tree fragment)":7 - * state = (self.fp_db,) - * _dict = getattr(self, '__dict__', None) - * if _dict is not None: # <<<<<<<<<<<<<< - * state += (_dict,) - * use_setstate = True - */ - goto __pyx_L3; - } - - /* "(tree fragment)":11 - * use_setstate = True - * else: - * use_setstate = self.fp_db is not None # <<<<<<<<<<<<<< - * if use_setstate: - * return __pyx_unpickle_TCP, (type(self), 0x0525e0f, None), state - */ - /*else*/ { - __pyx_t_3 = (__pyx_v_self->fp_db != ((PyObject*)Py_None)); - __pyx_v_use_setstate = __pyx_t_3; - } - __pyx_L3:; - - /* "(tree fragment)":12 - * else: - * use_setstate = self.fp_db is not None - * if use_setstate: # <<<<<<<<<<<<<< - * return __pyx_unpickle_TCP, (type(self), 0x0525e0f, None), state - * else: - */ - __pyx_t_3 = (__pyx_v_use_setstate != 0); - if (__pyx_t_3) { - - /* "(tree fragment)":13 - * use_setstate = self.fp_db is not None - * if use_setstate: - * return __pyx_unpickle_TCP, (type(self), 0x0525e0f, None), state # <<<<<<<<<<<<<< - * else: - * return __pyx_unpickle_TCP, (type(self), 0x0525e0f, state) - */ - __Pyx_XDECREF(__pyx_r); - __Pyx_GetModuleGlobalName(__pyx_t_4, __pyx_n_s_pyx_unpickle_TCP); if (unlikely(!__pyx_t_4)) __PYX_ERR(1, 13, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_4); - __pyx_t_1 = PyTuple_New(3); if (unlikely(!__pyx_t_1)) __PYX_ERR(1, 13, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_1); - __Pyx_INCREF(((PyObject *)Py_TYPE(((PyObject *)__pyx_v_self)))); - __Pyx_GIVEREF(((PyObject *)Py_TYPE(((PyObject *)__pyx_v_self)))); - PyTuple_SET_ITEM(__pyx_t_1, 0, ((PyObject *)Py_TYPE(((PyObject *)__pyx_v_self)))); - __Pyx_INCREF(__pyx_int_5398031); - __Pyx_GIVEREF(__pyx_int_5398031); - PyTuple_SET_ITEM(__pyx_t_1, 1, __pyx_int_5398031); - __Pyx_INCREF(Py_None); - __Pyx_GIVEREF(Py_None); - PyTuple_SET_ITEM(__pyx_t_1, 2, Py_None); - __pyx_t_5 = PyTuple_New(3); if (unlikely(!__pyx_t_5)) __PYX_ERR(1, 13, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_5); - __Pyx_GIVEREF(__pyx_t_4); - PyTuple_SET_ITEM(__pyx_t_5, 0, __pyx_t_4); - __Pyx_GIVEREF(__pyx_t_1); - PyTuple_SET_ITEM(__pyx_t_5, 1, __pyx_t_1); - __Pyx_INCREF(__pyx_v_state); - __Pyx_GIVEREF(__pyx_v_state); - PyTuple_SET_ITEM(__pyx_t_5, 2, __pyx_v_state); - __pyx_t_4 = 0; - __pyx_t_1 = 0; - __pyx_r = __pyx_t_5; - __pyx_t_5 = 0; - goto __pyx_L0; - - /* "(tree fragment)":12 - * else: - * use_setstate = self.fp_db is not None - * if use_setstate: # <<<<<<<<<<<<<< - * return __pyx_unpickle_TCP, (type(self), 0x0525e0f, None), state - * else: - */ - } - - /* "(tree fragment)":15 - * return __pyx_unpickle_TCP, (type(self), 0x0525e0f, None), state - * else: - * return __pyx_unpickle_TCP, (type(self), 0x0525e0f, state) # <<<<<<<<<<<<<< - * def __setstate_cython__(self, __pyx_state): - * __pyx_unpickle_TCP__set_state(self, __pyx_state) - */ - /*else*/ { - __Pyx_XDECREF(__pyx_r); - __Pyx_GetModuleGlobalName(__pyx_t_5, __pyx_n_s_pyx_unpickle_TCP); if (unlikely(!__pyx_t_5)) __PYX_ERR(1, 15, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_5); - __pyx_t_1 = PyTuple_New(3); if (unlikely(!__pyx_t_1)) __PYX_ERR(1, 15, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_1); - __Pyx_INCREF(((PyObject *)Py_TYPE(((PyObject *)__pyx_v_self)))); - __Pyx_GIVEREF(((PyObject *)Py_TYPE(((PyObject *)__pyx_v_self)))); - PyTuple_SET_ITEM(__pyx_t_1, 0, ((PyObject *)Py_TYPE(((PyObject *)__pyx_v_self)))); - __Pyx_INCREF(__pyx_int_5398031); - __Pyx_GIVEREF(__pyx_int_5398031); - PyTuple_SET_ITEM(__pyx_t_1, 1, __pyx_int_5398031); - __Pyx_INCREF(__pyx_v_state); - __Pyx_GIVEREF(__pyx_v_state); - PyTuple_SET_ITEM(__pyx_t_1, 2, __pyx_v_state); - __pyx_t_4 = PyTuple_New(2); if (unlikely(!__pyx_t_4)) __PYX_ERR(1, 15, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_4); - __Pyx_GIVEREF(__pyx_t_5); - PyTuple_SET_ITEM(__pyx_t_4, 0, __pyx_t_5); - __Pyx_GIVEREF(__pyx_t_1); - PyTuple_SET_ITEM(__pyx_t_4, 1, __pyx_t_1); - __pyx_t_5 = 0; - __pyx_t_1 = 0; - __pyx_r = __pyx_t_4; - __pyx_t_4 = 0; - goto __pyx_L0; - } - - /* "(tree fragment)":1 - * def __reduce_cython__(self): # <<<<<<<<<<<<<< - * cdef tuple state - * cdef object _dict - */ - - /* function exit code */ - __pyx_L1_error:; - __Pyx_XDECREF(__pyx_t_1); - __Pyx_XDECREF(__pyx_t_4); - __Pyx_XDECREF(__pyx_t_5); - __Pyx_AddTraceback("pmercury.protocols.tcp.TCP.__reduce_cython__", __pyx_clineno, __pyx_lineno, __pyx_filename); - __pyx_r = NULL; - __pyx_L0:; - __Pyx_XDECREF(__pyx_v_state); - __Pyx_XDECREF(__pyx_v__dict); - __Pyx_XGIVEREF(__pyx_r); - __Pyx_RefNannyFinishContext(); - return __pyx_r; -} - -/* "(tree fragment)":16 - * else: - * return __pyx_unpickle_TCP, (type(self), 0x0525e0f, state) - * def __setstate_cython__(self, __pyx_state): # <<<<<<<<<<<<<< - * __pyx_unpickle_TCP__set_state(self, __pyx_state) - */ - -/* Python wrapper */ -static PyObject *__pyx_pw_8pmercury_9protocols_3tcp_3TCP_21__setstate_cython__(PyObject *__pyx_v_self, PyObject *__pyx_v___pyx_state); /*proto*/ -static PyObject *__pyx_pw_8pmercury_9protocols_3tcp_3TCP_21__setstate_cython__(PyObject *__pyx_v_self, PyObject *__pyx_v___pyx_state) { - PyObject *__pyx_r = 0; - __Pyx_RefNannyDeclarations - __Pyx_RefNannySetupContext("__setstate_cython__ (wrapper)", 0); - __pyx_r = __pyx_pf_8pmercury_9protocols_3tcp_3TCP_20__setstate_cython__(((struct __pyx_obj_8pmercury_9protocols_3tcp_TCP *)__pyx_v_self), ((PyObject *)__pyx_v___pyx_state)); - - /* function exit code */ - __Pyx_RefNannyFinishContext(); - return __pyx_r; -} - -static PyObject *__pyx_pf_8pmercury_9protocols_3tcp_3TCP_20__setstate_cython__(struct __pyx_obj_8pmercury_9protocols_3tcp_TCP *__pyx_v_self, PyObject *__pyx_v___pyx_state) { - PyObject *__pyx_r = NULL; - __Pyx_RefNannyDeclarations - PyObject *__pyx_t_1 = NULL; - __Pyx_RefNannySetupContext("__setstate_cython__", 0); - - /* "(tree fragment)":17 - * return __pyx_unpickle_TCP, (type(self), 0x0525e0f, state) - * def __setstate_cython__(self, __pyx_state): - * __pyx_unpickle_TCP__set_state(self, __pyx_state) # <<<<<<<<<<<<<< - */ - if (!(likely(PyTuple_CheckExact(__pyx_v___pyx_state))||((__pyx_v___pyx_state) == Py_None)||(PyErr_Format(PyExc_TypeError, "Expected %.16s, got %.200s", "tuple", Py_TYPE(__pyx_v___pyx_state)->tp_name), 0))) __PYX_ERR(1, 17, __pyx_L1_error) - __pyx_t_1 = __pyx_f_8pmercury_9protocols_3tcp___pyx_unpickle_TCP__set_state(__pyx_v_self, ((PyObject*)__pyx_v___pyx_state)); if (unlikely(!__pyx_t_1)) __PYX_ERR(1, 17, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_1); - __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0; - - /* "(tree fragment)":16 - * else: - * return __pyx_unpickle_TCP, (type(self), 0x0525e0f, state) - * def __setstate_cython__(self, __pyx_state): # <<<<<<<<<<<<<< - * __pyx_unpickle_TCP__set_state(self, __pyx_state) - */ - - /* function exit code */ - __pyx_r = Py_None; __Pyx_INCREF(Py_None); - goto __pyx_L0; - __pyx_L1_error:; - __Pyx_XDECREF(__pyx_t_1); - __Pyx_AddTraceback("pmercury.protocols.tcp.TCP.__setstate_cython__", __pyx_clineno, __pyx_lineno, __pyx_filename); - __pyx_r = NULL; - __pyx_L0:; - __Pyx_XGIVEREF(__pyx_r); - __Pyx_RefNannyFinishContext(); - return __pyx_r; -} - -/* "(tree fragment)":1 - * def __pyx_unpickle_TCP(__pyx_type, long __pyx_checksum, __pyx_state): # <<<<<<<<<<<<<< - * cdef object __pyx_PickleError - * cdef object __pyx_result - */ - -/* Python wrapper */ -static PyObject *__pyx_pw_8pmercury_9protocols_3tcp_1__pyx_unpickle_TCP(PyObject *__pyx_self, PyObject *__pyx_args, PyObject *__pyx_kwds); /*proto*/ -static PyMethodDef __pyx_mdef_8pmercury_9protocols_3tcp_1__pyx_unpickle_TCP = {"__pyx_unpickle_TCP", (PyCFunction)(void*)(PyCFunctionWithKeywords)__pyx_pw_8pmercury_9protocols_3tcp_1__pyx_unpickle_TCP, METH_VARARGS|METH_KEYWORDS, 0}; -static PyObject *__pyx_pw_8pmercury_9protocols_3tcp_1__pyx_unpickle_TCP(PyObject *__pyx_self, PyObject *__pyx_args, PyObject *__pyx_kwds) { - PyObject *__pyx_v___pyx_type = 0; - long __pyx_v___pyx_checksum; - PyObject *__pyx_v___pyx_state = 0; - PyObject *__pyx_r = 0; - __Pyx_RefNannyDeclarations - __Pyx_RefNannySetupContext("__pyx_unpickle_TCP (wrapper)", 0); - { - static PyObject **__pyx_pyargnames[] = {&__pyx_n_s_pyx_type,&__pyx_n_s_pyx_checksum,&__pyx_n_s_pyx_state,0}; - PyObject* values[3] = {0,0,0}; - if (unlikely(__pyx_kwds)) { - Py_ssize_t kw_args; - const Py_ssize_t pos_args = PyTuple_GET_SIZE(__pyx_args); - switch (pos_args) { - case 3: values[2] = PyTuple_GET_ITEM(__pyx_args, 2); - CYTHON_FALLTHROUGH; - case 2: values[1] = PyTuple_GET_ITEM(__pyx_args, 1); - CYTHON_FALLTHROUGH; - case 1: values[0] = PyTuple_GET_ITEM(__pyx_args, 0); - CYTHON_FALLTHROUGH; - case 0: break; - default: goto __pyx_L5_argtuple_error; - } - kw_args = PyDict_Size(__pyx_kwds); - switch (pos_args) { - case 0: - if (likely((values[0] = __Pyx_PyDict_GetItemStr(__pyx_kwds, __pyx_n_s_pyx_type)) != 0)) kw_args--; - else goto __pyx_L5_argtuple_error; - CYTHON_FALLTHROUGH; - case 1: - if (likely((values[1] = __Pyx_PyDict_GetItemStr(__pyx_kwds, __pyx_n_s_pyx_checksum)) != 0)) kw_args--; - else { - __Pyx_RaiseArgtupleInvalid("__pyx_unpickle_TCP", 1, 3, 3, 1); __PYX_ERR(1, 1, __pyx_L3_error) - } - CYTHON_FALLTHROUGH; - case 2: - if (likely((values[2] = __Pyx_PyDict_GetItemStr(__pyx_kwds, __pyx_n_s_pyx_state)) != 0)) kw_args--; - else { - __Pyx_RaiseArgtupleInvalid("__pyx_unpickle_TCP", 1, 3, 3, 2); __PYX_ERR(1, 1, __pyx_L3_error) - } - } - if (unlikely(kw_args > 0)) { - if (unlikely(__Pyx_ParseOptionalKeywords(__pyx_kwds, __pyx_pyargnames, 0, values, pos_args, "__pyx_unpickle_TCP") < 0)) __PYX_ERR(1, 1, __pyx_L3_error) - } - } else if (PyTuple_GET_SIZE(__pyx_args) != 3) { - goto __pyx_L5_argtuple_error; - } else { - values[0] = PyTuple_GET_ITEM(__pyx_args, 0); - values[1] = PyTuple_GET_ITEM(__pyx_args, 1); - values[2] = PyTuple_GET_ITEM(__pyx_args, 2); - } - __pyx_v___pyx_type = values[0]; - __pyx_v___pyx_checksum = __Pyx_PyInt_As_long(values[1]); if (unlikely((__pyx_v___pyx_checksum == (long)-1) && PyErr_Occurred())) __PYX_ERR(1, 1, __pyx_L3_error) - __pyx_v___pyx_state = values[2]; - } - goto __pyx_L4_argument_unpacking_done; - __pyx_L5_argtuple_error:; - __Pyx_RaiseArgtupleInvalid("__pyx_unpickle_TCP", 1, 3, 3, PyTuple_GET_SIZE(__pyx_args)); __PYX_ERR(1, 1, __pyx_L3_error) - __pyx_L3_error:; - __Pyx_AddTraceback("pmercury.protocols.tcp.__pyx_unpickle_TCP", __pyx_clineno, __pyx_lineno, __pyx_filename); - __Pyx_RefNannyFinishContext(); - return NULL; - __pyx_L4_argument_unpacking_done:; - __pyx_r = __pyx_pf_8pmercury_9protocols_3tcp___pyx_unpickle_TCP(__pyx_self, __pyx_v___pyx_type, __pyx_v___pyx_checksum, __pyx_v___pyx_state); - - /* function exit code */ - __Pyx_RefNannyFinishContext(); - return __pyx_r; -} - -static PyObject *__pyx_pf_8pmercury_9protocols_3tcp___pyx_unpickle_TCP(CYTHON_UNUSED PyObject *__pyx_self, PyObject *__pyx_v___pyx_type, long __pyx_v___pyx_checksum, PyObject *__pyx_v___pyx_state) { - PyObject *__pyx_v___pyx_PickleError = 0; - PyObject *__pyx_v___pyx_result = 0; - PyObject *__pyx_r = NULL; - __Pyx_RefNannyDeclarations - int __pyx_t_1; - PyObject *__pyx_t_2 = NULL; - PyObject *__pyx_t_3 = NULL; - PyObject *__pyx_t_4 = NULL; - PyObject *__pyx_t_5 = NULL; - int __pyx_t_6; - __Pyx_RefNannySetupContext("__pyx_unpickle_TCP", 0); - - /* "(tree fragment)":4 - * cdef object __pyx_PickleError - * cdef object __pyx_result - * if __pyx_checksum != 0x0525e0f: # <<<<<<<<<<<<<< - * from pickle import PickleError as __pyx_PickleError - * raise __pyx_PickleError("Incompatible checksums (%s vs 0x0525e0f = (fp_db))" % __pyx_checksum) - */ - __pyx_t_1 = ((__pyx_v___pyx_checksum != 0x0525e0f) != 0); - if (__pyx_t_1) { - - /* "(tree fragment)":5 - * cdef object __pyx_result - * if __pyx_checksum != 0x0525e0f: - * from pickle import PickleError as __pyx_PickleError # <<<<<<<<<<<<<< - * raise __pyx_PickleError("Incompatible checksums (%s vs 0x0525e0f = (fp_db))" % __pyx_checksum) - * __pyx_result = TCP.__new__(__pyx_type) - */ - __pyx_t_2 = PyList_New(1); if (unlikely(!__pyx_t_2)) __PYX_ERR(1, 5, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_2); - __Pyx_INCREF(__pyx_n_s_PickleError); - __Pyx_GIVEREF(__pyx_n_s_PickleError); - PyList_SET_ITEM(__pyx_t_2, 0, __pyx_n_s_PickleError); - __pyx_t_3 = __Pyx_Import(__pyx_n_s_pickle, __pyx_t_2, 0); if (unlikely(!__pyx_t_3)) __PYX_ERR(1, 5, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_3); - __Pyx_DECREF(__pyx_t_2); __pyx_t_2 = 0; - __pyx_t_2 = __Pyx_ImportFrom(__pyx_t_3, __pyx_n_s_PickleError); if (unlikely(!__pyx_t_2)) __PYX_ERR(1, 5, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_2); - __Pyx_INCREF(__pyx_t_2); - __pyx_v___pyx_PickleError = __pyx_t_2; - __Pyx_DECREF(__pyx_t_2); __pyx_t_2 = 0; - __Pyx_DECREF(__pyx_t_3); __pyx_t_3 = 0; - - /* "(tree fragment)":6 - * if __pyx_checksum != 0x0525e0f: - * from pickle import PickleError as __pyx_PickleError - * raise __pyx_PickleError("Incompatible checksums (%s vs 0x0525e0f = (fp_db))" % __pyx_checksum) # <<<<<<<<<<<<<< - * __pyx_result = TCP.__new__(__pyx_type) - * if __pyx_state is not None: - */ - __pyx_t_2 = __Pyx_PyInt_From_long(__pyx_v___pyx_checksum); if (unlikely(!__pyx_t_2)) __PYX_ERR(1, 6, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_2); - __pyx_t_4 = __Pyx_PyString_Format(__pyx_kp_s_Incompatible_checksums_s_vs_0x05, __pyx_t_2); if (unlikely(!__pyx_t_4)) __PYX_ERR(1, 6, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_4); - __Pyx_DECREF(__pyx_t_2); __pyx_t_2 = 0; - __Pyx_INCREF(__pyx_v___pyx_PickleError); - __pyx_t_2 = __pyx_v___pyx_PickleError; __pyx_t_5 = NULL; - if (CYTHON_UNPACK_METHODS && unlikely(PyMethod_Check(__pyx_t_2))) { - __pyx_t_5 = PyMethod_GET_SELF(__pyx_t_2); - if (likely(__pyx_t_5)) { - PyObject* function = PyMethod_GET_FUNCTION(__pyx_t_2); - __Pyx_INCREF(__pyx_t_5); - __Pyx_INCREF(function); - __Pyx_DECREF_SET(__pyx_t_2, function); - } - } - __pyx_t_3 = (__pyx_t_5) ? __Pyx_PyObject_Call2Args(__pyx_t_2, __pyx_t_5, __pyx_t_4) : __Pyx_PyObject_CallOneArg(__pyx_t_2, __pyx_t_4); - __Pyx_XDECREF(__pyx_t_5); __pyx_t_5 = 0; - __Pyx_DECREF(__pyx_t_4); __pyx_t_4 = 0; - if (unlikely(!__pyx_t_3)) __PYX_ERR(1, 6, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_3); - __Pyx_DECREF(__pyx_t_2); __pyx_t_2 = 0; - __Pyx_Raise(__pyx_t_3, 0, 0, 0); - __Pyx_DECREF(__pyx_t_3); __pyx_t_3 = 0; - __PYX_ERR(1, 6, __pyx_L1_error) - - /* "(tree fragment)":4 - * cdef object __pyx_PickleError - * cdef object __pyx_result - * if __pyx_checksum != 0x0525e0f: # <<<<<<<<<<<<<< - * from pickle import PickleError as __pyx_PickleError - * raise __pyx_PickleError("Incompatible checksums (%s vs 0x0525e0f = (fp_db))" % __pyx_checksum) - */ - } - - /* "(tree fragment)":7 - * from pickle import PickleError as __pyx_PickleError - * raise __pyx_PickleError("Incompatible checksums (%s vs 0x0525e0f = (fp_db))" % __pyx_checksum) - * __pyx_result = TCP.__new__(__pyx_type) # <<<<<<<<<<<<<< - * if __pyx_state is not None: - * __pyx_unpickle_TCP__set_state( __pyx_result, __pyx_state) - */ - __pyx_t_2 = __Pyx_PyObject_GetAttrStr(((PyObject *)__pyx_ptype_8pmercury_9protocols_3tcp_TCP), __pyx_n_s_new); if (unlikely(!__pyx_t_2)) __PYX_ERR(1, 7, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_2); - __pyx_t_4 = NULL; - if (CYTHON_UNPACK_METHODS && likely(PyMethod_Check(__pyx_t_2))) { - __pyx_t_4 = PyMethod_GET_SELF(__pyx_t_2); - if (likely(__pyx_t_4)) { - PyObject* function = PyMethod_GET_FUNCTION(__pyx_t_2); - __Pyx_INCREF(__pyx_t_4); - __Pyx_INCREF(function); - __Pyx_DECREF_SET(__pyx_t_2, function); - } - } - __pyx_t_3 = (__pyx_t_4) ? __Pyx_PyObject_Call2Args(__pyx_t_2, __pyx_t_4, __pyx_v___pyx_type) : __Pyx_PyObject_CallOneArg(__pyx_t_2, __pyx_v___pyx_type); - __Pyx_XDECREF(__pyx_t_4); __pyx_t_4 = 0; - if (unlikely(!__pyx_t_3)) __PYX_ERR(1, 7, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_3); - __Pyx_DECREF(__pyx_t_2); __pyx_t_2 = 0; - __pyx_v___pyx_result = __pyx_t_3; - __pyx_t_3 = 0; - - /* "(tree fragment)":8 - * raise __pyx_PickleError("Incompatible checksums (%s vs 0x0525e0f = (fp_db))" % __pyx_checksum) - * __pyx_result = TCP.__new__(__pyx_type) - * if __pyx_state is not None: # <<<<<<<<<<<<<< - * __pyx_unpickle_TCP__set_state( __pyx_result, __pyx_state) - * return __pyx_result - */ - __pyx_t_1 = (__pyx_v___pyx_state != Py_None); - __pyx_t_6 = (__pyx_t_1 != 0); - if (__pyx_t_6) { - - /* "(tree fragment)":9 - * __pyx_result = TCP.__new__(__pyx_type) - * if __pyx_state is not None: - * __pyx_unpickle_TCP__set_state( __pyx_result, __pyx_state) # <<<<<<<<<<<<<< - * return __pyx_result - * cdef __pyx_unpickle_TCP__set_state(TCP __pyx_result, tuple __pyx_state): - */ - if (!(likely(PyTuple_CheckExact(__pyx_v___pyx_state))||((__pyx_v___pyx_state) == Py_None)||(PyErr_Format(PyExc_TypeError, "Expected %.16s, got %.200s", "tuple", Py_TYPE(__pyx_v___pyx_state)->tp_name), 0))) __PYX_ERR(1, 9, __pyx_L1_error) - __pyx_t_3 = __pyx_f_8pmercury_9protocols_3tcp___pyx_unpickle_TCP__set_state(((struct __pyx_obj_8pmercury_9protocols_3tcp_TCP *)__pyx_v___pyx_result), ((PyObject*)__pyx_v___pyx_state)); if (unlikely(!__pyx_t_3)) __PYX_ERR(1, 9, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_3); - __Pyx_DECREF(__pyx_t_3); __pyx_t_3 = 0; - - /* "(tree fragment)":8 - * raise __pyx_PickleError("Incompatible checksums (%s vs 0x0525e0f = (fp_db))" % __pyx_checksum) - * __pyx_result = TCP.__new__(__pyx_type) - * if __pyx_state is not None: # <<<<<<<<<<<<<< - * __pyx_unpickle_TCP__set_state( __pyx_result, __pyx_state) - * return __pyx_result - */ - } - - /* "(tree fragment)":10 - * if __pyx_state is not None: - * __pyx_unpickle_TCP__set_state( __pyx_result, __pyx_state) - * return __pyx_result # <<<<<<<<<<<<<< - * cdef __pyx_unpickle_TCP__set_state(TCP __pyx_result, tuple __pyx_state): - * __pyx_result.fp_db = __pyx_state[0] - */ - __Pyx_XDECREF(__pyx_r); - __Pyx_INCREF(__pyx_v___pyx_result); - __pyx_r = __pyx_v___pyx_result; - goto __pyx_L0; - - /* "(tree fragment)":1 - * def __pyx_unpickle_TCP(__pyx_type, long __pyx_checksum, __pyx_state): # <<<<<<<<<<<<<< - * cdef object __pyx_PickleError - * cdef object __pyx_result - */ - - /* function exit code */ - __pyx_L1_error:; - __Pyx_XDECREF(__pyx_t_2); - __Pyx_XDECREF(__pyx_t_3); - __Pyx_XDECREF(__pyx_t_4); - __Pyx_XDECREF(__pyx_t_5); - __Pyx_AddTraceback("pmercury.protocols.tcp.__pyx_unpickle_TCP", __pyx_clineno, __pyx_lineno, __pyx_filename); - __pyx_r = NULL; - __pyx_L0:; - __Pyx_XDECREF(__pyx_v___pyx_PickleError); - __Pyx_XDECREF(__pyx_v___pyx_result); - __Pyx_XGIVEREF(__pyx_r); - __Pyx_RefNannyFinishContext(); - return __pyx_r; -} - -/* "(tree fragment)":11 - * __pyx_unpickle_TCP__set_state( __pyx_result, __pyx_state) - * return __pyx_result - * cdef __pyx_unpickle_TCP__set_state(TCP __pyx_result, tuple __pyx_state): # <<<<<<<<<<<<<< - * __pyx_result.fp_db = __pyx_state[0] - * if len(__pyx_state) > 1 and hasattr(__pyx_result, '__dict__'): - */ - -static PyObject *__pyx_f_8pmercury_9protocols_3tcp___pyx_unpickle_TCP__set_state(struct __pyx_obj_8pmercury_9protocols_3tcp_TCP *__pyx_v___pyx_result, PyObject *__pyx_v___pyx_state) { - PyObject *__pyx_r = NULL; - __Pyx_RefNannyDeclarations - PyObject *__pyx_t_1 = NULL; - int __pyx_t_2; - Py_ssize_t __pyx_t_3; - int __pyx_t_4; - int __pyx_t_5; - PyObject *__pyx_t_6 = NULL; - PyObject *__pyx_t_7 = NULL; - PyObject *__pyx_t_8 = NULL; - __Pyx_RefNannySetupContext("__pyx_unpickle_TCP__set_state", 0); - - /* "(tree fragment)":12 - * return __pyx_result - * cdef __pyx_unpickle_TCP__set_state(TCP __pyx_result, tuple __pyx_state): - * __pyx_result.fp_db = __pyx_state[0] # <<<<<<<<<<<<<< - * if len(__pyx_state) > 1 and hasattr(__pyx_result, '__dict__'): - * __pyx_result.__dict__.update(__pyx_state[1]) - */ - if (unlikely(__pyx_v___pyx_state == Py_None)) { - PyErr_SetString(PyExc_TypeError, "'NoneType' object is not subscriptable"); - __PYX_ERR(1, 12, __pyx_L1_error) - } - __pyx_t_1 = __Pyx_GetItemInt_Tuple(__pyx_v___pyx_state, 0, long, 1, __Pyx_PyInt_From_long, 0, 0, 1); if (unlikely(!__pyx_t_1)) __PYX_ERR(1, 12, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_1); - if (!(likely(PyDict_CheckExact(__pyx_t_1))||((__pyx_t_1) == Py_None)||(PyErr_Format(PyExc_TypeError, "Expected %.16s, got %.200s", "dict", Py_TYPE(__pyx_t_1)->tp_name), 0))) __PYX_ERR(1, 12, __pyx_L1_error) - __Pyx_GIVEREF(__pyx_t_1); - __Pyx_GOTREF(__pyx_v___pyx_result->fp_db); - __Pyx_DECREF(__pyx_v___pyx_result->fp_db); - __pyx_v___pyx_result->fp_db = ((PyObject*)__pyx_t_1); - __pyx_t_1 = 0; - - /* "(tree fragment)":13 - * cdef __pyx_unpickle_TCP__set_state(TCP __pyx_result, tuple __pyx_state): - * __pyx_result.fp_db = __pyx_state[0] - * if len(__pyx_state) > 1 and hasattr(__pyx_result, '__dict__'): # <<<<<<<<<<<<<< - * __pyx_result.__dict__.update(__pyx_state[1]) - */ - if (unlikely(__pyx_v___pyx_state == Py_None)) { - PyErr_SetString(PyExc_TypeError, "object of type 'NoneType' has no len()"); - __PYX_ERR(1, 13, __pyx_L1_error) - } - __pyx_t_3 = PyTuple_GET_SIZE(__pyx_v___pyx_state); if (unlikely(__pyx_t_3 == ((Py_ssize_t)-1))) __PYX_ERR(1, 13, __pyx_L1_error) - __pyx_t_4 = ((__pyx_t_3 > 1) != 0); - if (__pyx_t_4) { - } else { - __pyx_t_2 = __pyx_t_4; - goto __pyx_L4_bool_binop_done; - } - __pyx_t_4 = __Pyx_HasAttr(((PyObject *)__pyx_v___pyx_result), __pyx_n_s_dict); if (unlikely(__pyx_t_4 == ((int)-1))) __PYX_ERR(1, 13, __pyx_L1_error) - __pyx_t_5 = (__pyx_t_4 != 0); - __pyx_t_2 = __pyx_t_5; - __pyx_L4_bool_binop_done:; - if (__pyx_t_2) { - - /* "(tree fragment)":14 - * __pyx_result.fp_db = __pyx_state[0] - * if len(__pyx_state) > 1 and hasattr(__pyx_result, '__dict__'): - * __pyx_result.__dict__.update(__pyx_state[1]) # <<<<<<<<<<<<<< - */ - __pyx_t_6 = __Pyx_PyObject_GetAttrStr(((PyObject *)__pyx_v___pyx_result), __pyx_n_s_dict); if (unlikely(!__pyx_t_6)) __PYX_ERR(1, 14, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_6); - __pyx_t_7 = __Pyx_PyObject_GetAttrStr(__pyx_t_6, __pyx_n_s_update); if (unlikely(!__pyx_t_7)) __PYX_ERR(1, 14, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_7); - __Pyx_DECREF(__pyx_t_6); __pyx_t_6 = 0; - if (unlikely(__pyx_v___pyx_state == Py_None)) { - PyErr_SetString(PyExc_TypeError, "'NoneType' object is not subscriptable"); - __PYX_ERR(1, 14, __pyx_L1_error) - } - __pyx_t_6 = __Pyx_GetItemInt_Tuple(__pyx_v___pyx_state, 1, long, 1, __Pyx_PyInt_From_long, 0, 0, 1); if (unlikely(!__pyx_t_6)) __PYX_ERR(1, 14, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_6); - __pyx_t_8 = NULL; - if (CYTHON_UNPACK_METHODS && likely(PyMethod_Check(__pyx_t_7))) { - __pyx_t_8 = PyMethod_GET_SELF(__pyx_t_7); - if (likely(__pyx_t_8)) { - PyObject* function = PyMethod_GET_FUNCTION(__pyx_t_7); - __Pyx_INCREF(__pyx_t_8); - __Pyx_INCREF(function); - __Pyx_DECREF_SET(__pyx_t_7, function); - } - } - __pyx_t_1 = (__pyx_t_8) ? __Pyx_PyObject_Call2Args(__pyx_t_7, __pyx_t_8, __pyx_t_6) : __Pyx_PyObject_CallOneArg(__pyx_t_7, __pyx_t_6); - __Pyx_XDECREF(__pyx_t_8); __pyx_t_8 = 0; - __Pyx_DECREF(__pyx_t_6); __pyx_t_6 = 0; - if (unlikely(!__pyx_t_1)) __PYX_ERR(1, 14, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_1); - __Pyx_DECREF(__pyx_t_7); __pyx_t_7 = 0; - __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0; - - /* "(tree fragment)":13 - * cdef __pyx_unpickle_TCP__set_state(TCP __pyx_result, tuple __pyx_state): - * __pyx_result.fp_db = __pyx_state[0] - * if len(__pyx_state) > 1 and hasattr(__pyx_result, '__dict__'): # <<<<<<<<<<<<<< - * __pyx_result.__dict__.update(__pyx_state[1]) - */ - } - - /* "(tree fragment)":11 - * __pyx_unpickle_TCP__set_state( __pyx_result, __pyx_state) - * return __pyx_result - * cdef __pyx_unpickle_TCP__set_state(TCP __pyx_result, tuple __pyx_state): # <<<<<<<<<<<<<< - * __pyx_result.fp_db = __pyx_state[0] - * if len(__pyx_state) > 1 and hasattr(__pyx_result, '__dict__'): - */ - - /* function exit code */ - __pyx_r = Py_None; __Pyx_INCREF(Py_None); - goto __pyx_L0; - __pyx_L1_error:; - __Pyx_XDECREF(__pyx_t_1); - __Pyx_XDECREF(__pyx_t_6); - __Pyx_XDECREF(__pyx_t_7); - __Pyx_XDECREF(__pyx_t_8); - __Pyx_AddTraceback("pmercury.protocols.tcp.__pyx_unpickle_TCP__set_state", __pyx_clineno, __pyx_lineno, __pyx_filename); - __pyx_r = 0; - __pyx_L0:; - __Pyx_XGIVEREF(__pyx_r); - __Pyx_RefNannyFinishContext(); - return __pyx_r; -} - -static PyObject *__pyx_tp_new_8pmercury_9protocols_3tcp_TCP(PyTypeObject *t, CYTHON_UNUSED PyObject *a, CYTHON_UNUSED PyObject *k) { - struct __pyx_obj_8pmercury_9protocols_3tcp_TCP *p; - PyObject *o; - if (likely((t->tp_flags & Py_TPFLAGS_IS_ABSTRACT) == 0)) { - o = (*t->tp_alloc)(t, 0); - } else { - o = (PyObject *) PyBaseObject_Type.tp_new(t, __pyx_empty_tuple, 0); - } - if (unlikely(!o)) return 0; - p = ((struct __pyx_obj_8pmercury_9protocols_3tcp_TCP *)o); - p->fp_db = ((PyObject*)Py_None); Py_INCREF(Py_None); - return o; -} - -static void __pyx_tp_dealloc_8pmercury_9protocols_3tcp_TCP(PyObject *o) { - struct __pyx_obj_8pmercury_9protocols_3tcp_TCP *p = (struct __pyx_obj_8pmercury_9protocols_3tcp_TCP *)o; - #if CYTHON_USE_TP_FINALIZE - if (unlikely(PyType_HasFeature(Py_TYPE(o), Py_TPFLAGS_HAVE_FINALIZE) && Py_TYPE(o)->tp_finalize) && !_PyGC_FINALIZED(o)) { - if (PyObject_CallFinalizerFromDealloc(o)) return; - } - #endif - PyObject_GC_UnTrack(o); - Py_CLEAR(p->fp_db); - (*Py_TYPE(o)->tp_free)(o); -} - -static int __pyx_tp_traverse_8pmercury_9protocols_3tcp_TCP(PyObject *o, visitproc v, void *a) { - int e; - struct __pyx_obj_8pmercury_9protocols_3tcp_TCP *p = (struct __pyx_obj_8pmercury_9protocols_3tcp_TCP *)o; - if (p->fp_db) { - e = (*v)(p->fp_db, a); if (e) return e; - } - return 0; -} - -static int __pyx_tp_clear_8pmercury_9protocols_3tcp_TCP(PyObject *o) { - PyObject* tmp; - struct __pyx_obj_8pmercury_9protocols_3tcp_TCP *p = (struct __pyx_obj_8pmercury_9protocols_3tcp_TCP *)o; - tmp = ((PyObject*)p->fp_db); - p->fp_db = ((PyObject*)Py_None); Py_INCREF(Py_None); - Py_XDECREF(tmp); - return 0; -} - -static PyMethodDef __pyx_methods_8pmercury_9protocols_3tcp_TCP[] = { - {"load_database", (PyCFunction)__pyx_pw_8pmercury_9protocols_3tcp_3TCP_3load_database, METH_O, 0}, - {"clean_os_entry", (PyCFunction)__pyx_pw_8pmercury_9protocols_3tcp_3TCP_5clean_os_entry, METH_O, 0}, - {"os_identify", (PyCFunction)(void*)(PyCFunctionWithKeywords)__pyx_pw_8pmercury_9protocols_3tcp_3TCP_7os_identify, METH_VARARGS|METH_KEYWORDS, 0}, - {"get_database_entry", (PyCFunction)(void*)(PyCFunctionWithKeywords)__pyx_pw_8pmercury_9protocols_3tcp_3TCP_9get_database_entry, METH_VARARGS|METH_KEYWORDS, 0}, - {"proto_identify", (PyCFunction)(void*)(PyCFunctionWithKeywords)__pyx_pw_8pmercury_9protocols_3tcp_3TCP_11proto_identify, METH_VARARGS|METH_KEYWORDS, 0}, - {"fingerprint", (PyCFunction)(void*)(PyCFunctionWithKeywords)__pyx_pw_8pmercury_9protocols_3tcp_3TCP_13fingerprint, METH_VARARGS|METH_KEYWORDS, 0}, - {"get_human_readable", (PyCFunction)__pyx_pw_8pmercury_9protocols_3tcp_3TCP_15get_human_readable, METH_O, 0}, - {"proc_identify", (PyCFunction)(void*)(PyCFunctionWithKeywords)__pyx_pw_8pmercury_9protocols_3tcp_3TCP_17proc_identify, METH_VARARGS|METH_KEYWORDS, 0}, - {"__reduce_cython__", (PyCFunction)__pyx_pw_8pmercury_9protocols_3tcp_3TCP_19__reduce_cython__, METH_NOARGS, 0}, - {"__setstate_cython__", (PyCFunction)__pyx_pw_8pmercury_9protocols_3tcp_3TCP_21__setstate_cython__, METH_O, 0}, - {0, 0, 0, 0} -}; - -static PyTypeObject __pyx_type_8pmercury_9protocols_3tcp_TCP = { - PyVarObject_HEAD_INIT(0, 0) - "pmercury.protocols.tcp.TCP", /*tp_name*/ - sizeof(struct __pyx_obj_8pmercury_9protocols_3tcp_TCP), /*tp_basicsize*/ - 0, /*tp_itemsize*/ - __pyx_tp_dealloc_8pmercury_9protocols_3tcp_TCP, /*tp_dealloc*/ - #if PY_VERSION_HEX < 0x030800b4 - 0, /*tp_print*/ - #endif - #if PY_VERSION_HEX >= 0x030800b4 - 0, /*tp_vectorcall_offset*/ - #endif - 0, /*tp_getattr*/ - 0, /*tp_setattr*/ - #if PY_MAJOR_VERSION < 3 - 0, /*tp_compare*/ - #endif - #if PY_MAJOR_VERSION >= 3 - 0, /*tp_as_async*/ - #endif - 0, /*tp_repr*/ - 0, /*tp_as_number*/ - 0, /*tp_as_sequence*/ - 0, /*tp_as_mapping*/ - 0, /*tp_hash*/ - 0, /*tp_call*/ - 0, /*tp_str*/ - 0, /*tp_getattro*/ - 0, /*tp_setattro*/ - 0, /*tp_as_buffer*/ - Py_TPFLAGS_DEFAULT|Py_TPFLAGS_HAVE_VERSION_TAG|Py_TPFLAGS_CHECKTYPES|Py_TPFLAGS_HAVE_NEWBUFFER|Py_TPFLAGS_BASETYPE|Py_TPFLAGS_HAVE_GC, /*tp_flags*/ - 0, /*tp_doc*/ - __pyx_tp_traverse_8pmercury_9protocols_3tcp_TCP, /*tp_traverse*/ - __pyx_tp_clear_8pmercury_9protocols_3tcp_TCP, /*tp_clear*/ - 0, /*tp_richcompare*/ - 0, /*tp_weaklistoffset*/ - 0, /*tp_iter*/ - 0, /*tp_iternext*/ - __pyx_methods_8pmercury_9protocols_3tcp_TCP, /*tp_methods*/ - 0, /*tp_members*/ - 0, /*tp_getset*/ - 0, /*tp_base*/ - 0, /*tp_dict*/ - 0, /*tp_descr_get*/ - 0, /*tp_descr_set*/ - 0, /*tp_dictoffset*/ - __pyx_pw_8pmercury_9protocols_3tcp_3TCP_1__init__, /*tp_init*/ - 0, /*tp_alloc*/ - __pyx_tp_new_8pmercury_9protocols_3tcp_TCP, /*tp_new*/ - 0, /*tp_free*/ - 0, /*tp_is_gc*/ - 0, /*tp_bases*/ - 0, /*tp_mro*/ - 0, /*tp_cache*/ - 0, /*tp_subclasses*/ - 0, /*tp_weaklist*/ - 0, /*tp_del*/ - 0, /*tp_version_tag*/ - #if PY_VERSION_HEX >= 0x030400a1 - 0, /*tp_finalize*/ - #endif - #if PY_VERSION_HEX >= 0x030800b1 - 0, /*tp_vectorcall*/ - #endif - #if PY_VERSION_HEX >= 0x030800b4 && PY_VERSION_HEX < 0x03090000 - 0, /*tp_print*/ - #endif -}; - -static PyMethodDef __pyx_methods[] = { - {0, 0, 0, 0} -}; - -static int __pyx_import_star_set(PyObject *o, PyObject* py_name, char *name) { - static const char* internal_type_names[] = { - "TCP", - 0 - }; - const char** type_name = internal_type_names; - while (*type_name) { - if (__Pyx_StrEq(name, *type_name)) { - PyErr_Format(PyExc_TypeError, "Cannot overwrite C type %s", name); - goto bad; - } - type_name++; - } - if (0); - else { - if (PyObject_SetAttr(__pyx_m, py_name, o) < 0) goto bad; - } - return 0; - bad: - return -1; -} - -static int -__Pyx_import_all_from(PyObject *locals, PyObject *v) -{ - PyObject *all = PyObject_GetAttrString(v, "__all__"); - PyObject *dict, *name, *value; - int skip_leading_underscores = 0; - int pos, err; - if (all == NULL) { - if (!PyErr_ExceptionMatches(PyExc_AttributeError)) - return -1; - PyErr_Clear(); - dict = PyObject_GetAttrString(v, "__dict__"); - if (dict == NULL) { - if (!PyErr_ExceptionMatches(PyExc_AttributeError)) - return -1; - PyErr_SetString(PyExc_ImportError, - "from-import-* object has no __dict__ and no __all__"); - return -1; - } -#if PY_MAJOR_VERSION < 3 - all = PyObject_CallMethod(dict, (char *)"keys", NULL); -#else - all = PyMapping_Keys(dict); -#endif - Py_DECREF(dict); - if (all == NULL) - return -1; - skip_leading_underscores = 1; - } - for (pos = 0, err = 0; ; pos++) { - name = PySequence_GetItem(all, pos); - if (name == NULL) { - if (!PyErr_ExceptionMatches(PyExc_IndexError)) - err = -1; - else - PyErr_Clear(); - break; - } - if (skip_leading_underscores && -#if PY_MAJOR_VERSION < 3 - PyString_Check(name) && - PyString_AS_STRING(name)[0] == '_') -#else - PyUnicode_Check(name) && - PyUnicode_AS_UNICODE(name)[0] == '_') -#endif - { - Py_DECREF(name); - continue; - } - value = PyObject_GetAttr(v, name); - if (value == NULL) - err = -1; - else if (PyDict_CheckExact(locals)) - err = PyDict_SetItem(locals, name, value); - else - err = PyObject_SetItem(locals, name, value); - Py_DECREF(name); - Py_XDECREF(value); - if (err != 0) - break; - } - Py_DECREF(all); - return err; -} -static int __pyx_import_star(PyObject* m) { - int i; - int ret = -1; - char* s; - PyObject *locals = 0; - PyObject *list = 0; -#if PY_MAJOR_VERSION >= 3 - PyObject *utf8_name = 0; -#endif - PyObject *name; - PyObject *item; - locals = PyDict_New(); if (!locals) goto bad; - if (__Pyx_import_all_from(locals, m) < 0) goto bad; - list = PyDict_Items(locals); if (!list) goto bad; - for(i=0; i= 3 - utf8_name = PyUnicode_AsUTF8String(name); - if (!utf8_name) goto bad; - s = PyBytes_AS_STRING(utf8_name); - if (__pyx_import_star_set(item, name, s) < 0) goto bad; - Py_DECREF(utf8_name); utf8_name = 0; -#else - s = PyString_AsString(name); - if (!s) goto bad; - if (__pyx_import_star_set(item, name, s) < 0) goto bad; -#endif - } - ret = 0; -bad: - Py_XDECREF(locals); - Py_XDECREF(list); -#if PY_MAJOR_VERSION >= 3 - Py_XDECREF(utf8_name); -#endif - return ret; -} - - - -#if PY_MAJOR_VERSION >= 3 -#if CYTHON_PEP489_MULTI_PHASE_INIT -static PyObject* __pyx_pymod_create(PyObject *spec, PyModuleDef *def); /*proto*/ -static int __pyx_pymod_exec_tcp(PyObject* module); /*proto*/ -static PyModuleDef_Slot __pyx_moduledef_slots[] = { - {Py_mod_create, (void*)__pyx_pymod_create}, - {Py_mod_exec, (void*)__pyx_pymod_exec_tcp}, - {0, NULL} -}; -#endif - -static struct PyModuleDef __pyx_moduledef = { - PyModuleDef_HEAD_INIT, - "tcp", - __pyx_k_Copyright_c_2019_Cisco_Systems, /* m_doc */ - #if CYTHON_PEP489_MULTI_PHASE_INIT - 0, /* m_size */ - #else - -1, /* m_size */ - #endif - __pyx_methods /* m_methods */, - #if CYTHON_PEP489_MULTI_PHASE_INIT - __pyx_moduledef_slots, /* m_slots */ - #else - NULL, /* m_reload */ - #endif - NULL, /* m_traverse */ - NULL, /* m_clear */ - NULL /* m_free */ -}; -#endif -#ifndef CYTHON_SMALL_CODE -#if defined(__clang__) - #define CYTHON_SMALL_CODE -#elif defined(__GNUC__) && (__GNUC__ > 4 || (__GNUC__ == 4 && __GNUC_MINOR__ >= 3)) - #define CYTHON_SMALL_CODE __attribute__((cold)) -#else - #define CYTHON_SMALL_CODE -#endif -#endif - -static __Pyx_StringTabEntry __pyx_string_tab[] = { - {&__pyx_kp_u_, __pyx_k_, sizeof(__pyx_k_), 0, 1, 0, 0}, - {&__pyx_kp_u_02x, __pyx_k_02x, sizeof(__pyx_k_02x), 0, 1, 0, 0}, - {&__pyx_kp_u_02x_2, __pyx_k_02x_2, sizeof(__pyx_k_02x_2), 0, 1, 0, 0}, - {&__pyx_kp_s_Incompatible_checksums_s_vs_0x05, __pyx_k_Incompatible_checksums_s_vs_0x05, sizeof(__pyx_k_Incompatible_checksums_s_vs_0x05), 0, 0, 1, 0}, - {&__pyx_n_s_MAX_CACHED_RESULTS, __pyx_k_MAX_CACHED_RESULTS, sizeof(__pyx_k_MAX_CACHED_RESULTS), 0, 0, 1, 1}, - {&__pyx_n_s_OrderedDict, __pyx_k_OrderedDict, sizeof(__pyx_k_OrderedDict), 0, 0, 1, 1}, - {&__pyx_n_s_PickleError, __pyx_k_PickleError, sizeof(__pyx_k_PickleError), 0, 0, 1, 1}, - {&__pyx_n_s_Protocol, __pyx_k_Protocol, sizeof(__pyx_k_Protocol), 0, 0, 1, 1}, - {&__pyx_n_s_TCP, __pyx_k_TCP, sizeof(__pyx_k_TCP), 0, 0, 1, 1}, - {&__pyx_n_u_Unknown, __pyx_k_Unknown, sizeof(__pyx_k_Unknown), 0, 1, 0, 1}, - {&__pyx_kp_u__2, __pyx_k__2, sizeof(__pyx_k__2), 0, 1, 0, 0}, - {&__pyx_kp_u__3, __pyx_k__3, sizeof(__pyx_k__3), 0, 1, 0, 0}, - {&__pyx_kp_u__4, __pyx_k__4, sizeof(__pyx_k__4), 0, 1, 0, 0}, - {&__pyx_n_s__5, __pyx_k__5, sizeof(__pyx_k__5), 0, 0, 1, 1}, - {&__pyx_n_s_abspath, __pyx_k_abspath, sizeof(__pyx_k_abspath), 0, 0, 1, 1}, - {&__pyx_n_s_append, __pyx_k_append, sizeof(__pyx_k_append), 0, 0, 1, 1}, - {&__pyx_n_s_approx, __pyx_k_approx, sizeof(__pyx_k_approx), 0, 0, 1, 1}, - {&__pyx_n_s_approx_fp_str, __pyx_k_approx_fp_str, sizeof(__pyx_k_approx_fp_str), 0, 0, 1, 1}, - {&__pyx_n_s_buf, __pyx_k_buf, sizeof(__pyx_k_buf), 0, 0, 1, 1}, - {&__pyx_n_s_c, __pyx_k_c, sizeof(__pyx_k_c), 0, 0, 1, 1}, - {&__pyx_n_s_clean_os_entry, __pyx_k_clean_os_entry, sizeof(__pyx_k_clean_os_entry), 0, 0, 1, 1}, - {&__pyx_n_s_cline_in_traceback, __pyx_k_cline_in_traceback, sizeof(__pyx_k_cline_in_traceback), 0, 0, 1, 1}, - {&__pyx_n_s_collections, __pyx_k_collections, sizeof(__pyx_k_collections), 0, 0, 1, 1}, - {&__pyx_n_s_config, __pyx_k_config, sizeof(__pyx_k_config), 0, 0, 1, 1}, - {&__pyx_n_s_context, __pyx_k_context, sizeof(__pyx_k_context), 0, 0, 1, 1}, - {&__pyx_n_s_data, __pyx_k_data, sizeof(__pyx_k_data), 0, 0, 1, 1}, - {&__pyx_n_s_data_len, __pyx_k_data_len, sizeof(__pyx_k_data_len), 0, 0, 1, 1}, - {&__pyx_n_s_debug, __pyx_k_debug, sizeof(__pyx_k_debug), 0, 0, 1, 1}, - {&__pyx_n_s_dict, __pyx_k_dict, sizeof(__pyx_k_dict), 0, 0, 1, 1}, - {&__pyx_n_s_dirname, __pyx_k_dirname, sizeof(__pyx_k_dirname), 0, 0, 1, 1}, - {&__pyx_n_s_dst_ip, __pyx_k_dst_ip, sizeof(__pyx_k_dst_ip), 0, 0, 1, 1}, - {&__pyx_n_s_dst_port, __pyx_k_dst_port, sizeof(__pyx_k_dst_port), 0, 0, 1, 1}, - {&__pyx_n_s_endpoint, __pyx_k_endpoint, sizeof(__pyx_k_endpoint), 0, 0, 1, 1}, - {&__pyx_n_s_file, __pyx_k_file, sizeof(__pyx_k_file), 0, 0, 1, 1}, - {&__pyx_n_s_find_resource_path, __pyx_k_find_resource_path, sizeof(__pyx_k_find_resource_path), 0, 0, 1, 1}, - {&__pyx_n_s_fingerprint, __pyx_k_fingerprint, sizeof(__pyx_k_fingerprint), 0, 0, 1, 1}, - {&__pyx_n_s_fp_database, __pyx_k_fp_database, sizeof(__pyx_k_fp_database), 0, 0, 1, 1}, - {&__pyx_n_s_fp_str, __pyx_k_fp_str, sizeof(__pyx_k_fp_str), 0, 0, 1, 1}, - {&__pyx_n_s_fp_str_2, __pyx_k_fp_str_2, sizeof(__pyx_k_fp_str_2), 0, 0, 1, 1}, - {&__pyx_n_s_functools, __pyx_k_functools, sizeof(__pyx_k_functools), 0, 0, 1, 1}, - {&__pyx_n_s_get_database_entry, __pyx_k_get_database_entry, sizeof(__pyx_k_get_database_entry), 0, 0, 1, 1}, - {&__pyx_n_s_getstate, __pyx_k_getstate, sizeof(__pyx_k_getstate), 0, 0, 1, 1}, - {&__pyx_n_s_hex, __pyx_k_hex, sizeof(__pyx_k_hex), 0, 0, 1, 1}, - {&__pyx_n_s_import, __pyx_k_import, sizeof(__pyx_k_import), 0, 0, 1, 1}, - {&__pyx_n_s_json, __pyx_k_json, sizeof(__pyx_k_json), 0, 0, 1, 1}, - {&__pyx_n_s_kind, __pyx_k_kind, sizeof(__pyx_k_kind), 0, 0, 1, 1}, - {&__pyx_n_s_length, __pyx_k_length, sizeof(__pyx_k_length), 0, 0, 1, 1}, - {&__pyx_n_s_list_oses, __pyx_k_list_oses, sizeof(__pyx_k_list_oses), 0, 0, 1, 1}, - {&__pyx_n_s_list_procs, __pyx_k_list_procs, sizeof(__pyx_k_list_procs), 0, 0, 1, 1}, - {&__pyx_n_s_load_database, __pyx_k_load_database, sizeof(__pyx_k_load_database), 0, 0, 1, 1}, - {&__pyx_n_s_loads, __pyx_k_loads, sizeof(__pyx_k_loads), 0, 0, 1, 1}, - {&__pyx_n_s_lru_cache, __pyx_k_lru_cache, sizeof(__pyx_k_lru_cache), 0, 0, 1, 1}, - {&__pyx_n_s_main, __pyx_k_main, sizeof(__pyx_k_main), 0, 0, 1, 1}, - {&__pyx_n_s_maxsize, __pyx_k_maxsize, sizeof(__pyx_k_maxsize), 0, 0, 1, 1}, - {&__pyx_n_s_name, __pyx_k_name, sizeof(__pyx_k_name), 0, 0, 1, 1}, - {&__pyx_n_s_new, __pyx_k_new, sizeof(__pyx_k_new), 0, 0, 1, 1}, - {&__pyx_n_s_offset, __pyx_k_offset, sizeof(__pyx_k_offset), 0, 0, 1, 1}, - {&__pyx_n_s_os, __pyx_k_os, sizeof(__pyx_k_os), 0, 0, 1, 1}, - {&__pyx_n_u_os, __pyx_k_os, sizeof(__pyx_k_os), 0, 1, 0, 1}, - {&__pyx_n_s_os_identify, __pyx_k_os_identify, sizeof(__pyx_k_os_identify), 0, 0, 1, 1}, - {&__pyx_n_u_os_info, __pyx_k_os_info, sizeof(__pyx_k_os_info), 0, 1, 0, 1}, - {&__pyx_n_s_path, __pyx_k_path, sizeof(__pyx_k_path), 0, 0, 1, 1}, - {&__pyx_n_s_pickle, __pyx_k_pickle, sizeof(__pyx_k_pickle), 0, 0, 1, 1}, - {&__pyx_n_s_pmercury_protocols_protocol, __pyx_k_pmercury_protocols_protocol, sizeof(__pyx_k_pmercury_protocols_protocol), 0, 0, 1, 1}, - {&__pyx_n_s_pmercury_protocols_tcp, __pyx_k_pmercury_protocols_tcp, sizeof(__pyx_k_pmercury_protocols_tcp), 0, 0, 1, 1}, - {&__pyx_n_s_pmercury_utils_pmercury_utils, __pyx_k_pmercury_utils_pmercury_utils, sizeof(__pyx_k_pmercury_utils_pmercury_utils), 0, 0, 1, 1}, - {&__pyx_n_s_popen, __pyx_k_popen, sizeof(__pyx_k_popen), 0, 0, 1, 1}, - {&__pyx_n_u_probable_oses, __pyx_k_probable_oses, sizeof(__pyx_k_probable_oses), 0, 1, 0, 1}, - {&__pyx_n_s_proto_identify, __pyx_k_proto_identify, sizeof(__pyx_k_proto_identify), 0, 0, 1, 1}, - {&__pyx_n_s_pyx_PickleError, __pyx_k_pyx_PickleError, sizeof(__pyx_k_pyx_PickleError), 0, 0, 1, 1}, - {&__pyx_n_s_pyx_checksum, __pyx_k_pyx_checksum, sizeof(__pyx_k_pyx_checksum), 0, 0, 1, 1}, - {&__pyx_n_s_pyx_result, __pyx_k_pyx_result, sizeof(__pyx_k_pyx_result), 0, 0, 1, 1}, - {&__pyx_n_s_pyx_state, __pyx_k_pyx_state, sizeof(__pyx_k_pyx_state), 0, 0, 1, 1}, - {&__pyx_n_s_pyx_type, __pyx_k_pyx_type, sizeof(__pyx_k_pyx_type), 0, 0, 1, 1}, - {&__pyx_n_s_pyx_unpickle_TCP, __pyx_k_pyx_unpickle_TCP, sizeof(__pyx_k_pyx_unpickle_TCP), 0, 0, 1, 1}, - {&__pyx_n_s_reduce, __pyx_k_reduce, sizeof(__pyx_k_reduce), 0, 0, 1, 1}, - {&__pyx_n_s_reduce_cython, __pyx_k_reduce_cython, sizeof(__pyx_k_reduce_cython), 0, 0, 1, 1}, - {&__pyx_n_s_reduce_ex, __pyx_k_reduce_ex, sizeof(__pyx_k_reduce_ex), 0, 0, 1, 1}, - {&__pyx_n_s_reverse, __pyx_k_reverse, sizeof(__pyx_k_reverse), 0, 0, 1, 1}, - {&__pyx_n_u_score, __pyx_k_score, sizeof(__pyx_k_score), 0, 1, 0, 1}, - {&__pyx_n_s_setstate, __pyx_k_setstate, sizeof(__pyx_k_setstate), 0, 0, 1, 1}, - {&__pyx_n_s_setstate_cython, __pyx_k_setstate_cython, sizeof(__pyx_k_setstate_cython), 0, 0, 1, 1}, - {&__pyx_n_s_sort, __pyx_k_sort, sizeof(__pyx_k_sort), 0, 0, 1, 1}, - {&__pyx_n_s_staticmethod, __pyx_k_staticmethod, sizeof(__pyx_k_staticmethod), 0, 0, 1, 1}, - {&__pyx_n_u_str_repr, __pyx_k_str_repr, sizeof(__pyx_k_str_repr), 0, 1, 0, 1}, - {&__pyx_kp_s_stringsource, __pyx_k_stringsource, sizeof(__pyx_k_stringsource), 0, 0, 1, 0}, - {&__pyx_n_s_sys, __pyx_k_sys, sizeof(__pyx_k_sys), 0, 0, 1, 1}, - {&__pyx_kp_s_tcp_pyx, __pyx_k_tcp_pyx, sizeof(__pyx_k_tcp_pyx), 0, 0, 1, 0}, - {&__pyx_n_s_test, __pyx_k_test, sizeof(__pyx_k_test), 0, 0, 1, 1}, - {&__pyx_n_u_total_count, __pyx_k_total_count, sizeof(__pyx_k_total_count), 0, 1, 0, 1}, - {&__pyx_n_s_update, __pyx_k_update, sizeof(__pyx_k_update), 0, 0, 1, 1}, - {&__pyx_kp_u_zcat_s, __pyx_k_zcat_s, sizeof(__pyx_k_zcat_s), 0, 1, 0, 0}, - {0, 0, 0, 0, 0, 0, 0} -}; -static CYTHON_SMALL_CODE int __Pyx_InitCachedBuiltins(void) { - __pyx_builtin_staticmethod = __Pyx_GetBuiltinName(__pyx_n_s_staticmethod); if (!__pyx_builtin_staticmethod) __PYX_ERR(0, 88, __pyx_L1_error) - return 0; - __pyx_L1_error:; - return -1; -} - -static CYTHON_SMALL_CODE int __Pyx_InitCachedConstants(void) { - __Pyx_RefNannyDeclarations - __Pyx_RefNannySetupContext("__Pyx_InitCachedConstants", 0); - - /* "pmercury/protocols/tcp.pyx":89 - * - * @staticmethod - * def proto_identify(data, offset, data_len): # <<<<<<<<<<<<<< - * if data[offset+13] != 2: - * return False - */ - __pyx_tuple__6 = PyTuple_Pack(3, __pyx_n_s_data, __pyx_n_s_offset, __pyx_n_s_data_len); if (unlikely(!__pyx_tuple__6)) __PYX_ERR(0, 89, __pyx_L1_error) - __Pyx_GOTREF(__pyx_tuple__6); - __Pyx_GIVEREF(__pyx_tuple__6); - __pyx_codeobj__7 = (PyObject*)__Pyx_PyCode_New(3, 0, 3, 0, CO_OPTIMIZED|CO_NEWLOCALS, __pyx_empty_bytes, __pyx_empty_tuple, __pyx_empty_tuple, __pyx_tuple__6, __pyx_empty_tuple, __pyx_empty_tuple, __pyx_kp_s_tcp_pyx, __pyx_n_s_proto_identify, 89, __pyx_empty_bytes); if (unlikely(!__pyx_codeobj__7)) __PYX_ERR(0, 89, __pyx_L1_error) - - /* "pmercury/protocols/tcp.pyx":96 - * - * @staticmethod - * def fingerprint(unsigned char *buf, unsigned int offset, unsigned int data_len): # <<<<<<<<<<<<<< - * cdef list c = [f'({buf[offset+14]:02x}{buf[offset+15]:02x})'] - * - */ - __pyx_tuple__8 = PyTuple_Pack(6, __pyx_n_s_buf, __pyx_n_s_offset, __pyx_n_s_data_len, __pyx_n_s_c, __pyx_n_s_kind, __pyx_n_s_length); if (unlikely(!__pyx_tuple__8)) __PYX_ERR(0, 96, __pyx_L1_error) - __Pyx_GOTREF(__pyx_tuple__8); - __Pyx_GIVEREF(__pyx_tuple__8); - __pyx_codeobj__9 = (PyObject*)__Pyx_PyCode_New(3, 0, 6, 0, CO_OPTIMIZED|CO_NEWLOCALS, __pyx_empty_bytes, __pyx_empty_tuple, __pyx_empty_tuple, __pyx_tuple__8, __pyx_empty_tuple, __pyx_empty_tuple, __pyx_kp_s_tcp_pyx, __pyx_n_s_fingerprint, 96, __pyx_empty_bytes); if (unlikely(!__pyx_codeobj__9)) __PYX_ERR(0, 96, __pyx_L1_error) - - /* "(tree fragment)":1 - * def __pyx_unpickle_TCP(__pyx_type, long __pyx_checksum, __pyx_state): # <<<<<<<<<<<<<< - * cdef object __pyx_PickleError - * cdef object __pyx_result - */ - __pyx_tuple__10 = PyTuple_Pack(5, __pyx_n_s_pyx_type, __pyx_n_s_pyx_checksum, __pyx_n_s_pyx_state, __pyx_n_s_pyx_PickleError, __pyx_n_s_pyx_result); if (unlikely(!__pyx_tuple__10)) __PYX_ERR(1, 1, __pyx_L1_error) - __Pyx_GOTREF(__pyx_tuple__10); - __Pyx_GIVEREF(__pyx_tuple__10); - __pyx_codeobj__11 = (PyObject*)__Pyx_PyCode_New(3, 0, 5, 0, CO_OPTIMIZED|CO_NEWLOCALS, __pyx_empty_bytes, __pyx_empty_tuple, __pyx_empty_tuple, __pyx_tuple__10, __pyx_empty_tuple, __pyx_empty_tuple, __pyx_kp_s_stringsource, __pyx_n_s_pyx_unpickle_TCP, 1, __pyx_empty_bytes); if (unlikely(!__pyx_codeobj__11)) __PYX_ERR(1, 1, __pyx_L1_error) - __Pyx_RefNannyFinishContext(); - return 0; - __pyx_L1_error:; - __Pyx_RefNannyFinishContext(); - return -1; -} - -static CYTHON_SMALL_CODE int __Pyx_InitGlobals(void) { - if (__Pyx_InitStrings(__pyx_string_tab) < 0) __PYX_ERR(0, 1, __pyx_L1_error); - __pyx_float_0_0 = PyFloat_FromDouble(0.0); if (unlikely(!__pyx_float_0_0)) __PYX_ERR(0, 1, __pyx_L1_error) - __pyx_int_0 = PyInt_FromLong(0); if (unlikely(!__pyx_int_0)) __PYX_ERR(0, 1, __pyx_L1_error) - __pyx_int_2 = PyInt_FromLong(2); if (unlikely(!__pyx_int_2)) __PYX_ERR(0, 1, __pyx_L1_error) - __pyx_int_13 = PyInt_FromLong(13); if (unlikely(!__pyx_int_13)) __PYX_ERR(0, 1, __pyx_L1_error) - __pyx_int_5398031 = PyInt_FromLong(5398031L); if (unlikely(!__pyx_int_5398031)) __PYX_ERR(0, 1, __pyx_L1_error) - __pyx_int_16777216 = PyInt_FromLong(16777216L); if (unlikely(!__pyx_int_16777216)) __PYX_ERR(0, 1, __pyx_L1_error) - return 0; - __pyx_L1_error:; - return -1; -} - -static CYTHON_SMALL_CODE int __Pyx_modinit_global_init_code(void); /*proto*/ -static CYTHON_SMALL_CODE int __Pyx_modinit_variable_export_code(void); /*proto*/ -static CYTHON_SMALL_CODE int __Pyx_modinit_function_export_code(void); /*proto*/ -static CYTHON_SMALL_CODE int __Pyx_modinit_type_init_code(void); /*proto*/ -static CYTHON_SMALL_CODE int __Pyx_modinit_type_import_code(void); /*proto*/ -static CYTHON_SMALL_CODE int __Pyx_modinit_variable_import_code(void); /*proto*/ -static CYTHON_SMALL_CODE int __Pyx_modinit_function_import_code(void); /*proto*/ - -static int __Pyx_modinit_global_init_code(void) { - __Pyx_RefNannyDeclarations - __Pyx_RefNannySetupContext("__Pyx_modinit_global_init_code", 0); - /*--- Global init code ---*/ - __Pyx_RefNannyFinishContext(); - return 0; -} - -static int __Pyx_modinit_variable_export_code(void) { - __Pyx_RefNannyDeclarations - __Pyx_RefNannySetupContext("__Pyx_modinit_variable_export_code", 0); - /*--- Variable export code ---*/ - __Pyx_RefNannyFinishContext(); - return 0; -} - -static int __Pyx_modinit_function_export_code(void) { - __Pyx_RefNannyDeclarations - __Pyx_RefNannySetupContext("__Pyx_modinit_function_export_code", 0); - /*--- Function export code ---*/ - __Pyx_RefNannyFinishContext(); - return 0; -} - -static int __Pyx_modinit_type_init_code(void) { - __Pyx_RefNannyDeclarations - __Pyx_RefNannySetupContext("__Pyx_modinit_type_init_code", 0); - /*--- Type init code ---*/ - if (PyType_Ready(&__pyx_type_8pmercury_9protocols_3tcp_TCP) < 0) __PYX_ERR(0, 21, __pyx_L1_error) - #if PY_VERSION_HEX < 0x030800B1 - __pyx_type_8pmercury_9protocols_3tcp_TCP.tp_print = 0; - #endif - if ((CYTHON_USE_TYPE_SLOTS && CYTHON_USE_PYTYPE_LOOKUP) && likely(!__pyx_type_8pmercury_9protocols_3tcp_TCP.tp_dictoffset && __pyx_type_8pmercury_9protocols_3tcp_TCP.tp_getattro == PyObject_GenericGetAttr)) { - __pyx_type_8pmercury_9protocols_3tcp_TCP.tp_getattro = __Pyx_PyObject_GenericGetAttr; - } - if (PyObject_SetAttr(__pyx_m, __pyx_n_s_TCP, (PyObject *)&__pyx_type_8pmercury_9protocols_3tcp_TCP) < 0) __PYX_ERR(0, 21, __pyx_L1_error) - if (__Pyx_setup_reduce((PyObject*)&__pyx_type_8pmercury_9protocols_3tcp_TCP) < 0) __PYX_ERR(0, 21, __pyx_L1_error) - __pyx_ptype_8pmercury_9protocols_3tcp_TCP = &__pyx_type_8pmercury_9protocols_3tcp_TCP; - __Pyx_RefNannyFinishContext(); - return 0; - __pyx_L1_error:; - __Pyx_RefNannyFinishContext(); - return -1; -} - -static int __Pyx_modinit_type_import_code(void) { - __Pyx_RefNannyDeclarations - __Pyx_RefNannySetupContext("__Pyx_modinit_type_import_code", 0); - /*--- Type import code ---*/ - __Pyx_RefNannyFinishContext(); - return 0; -} - -static int __Pyx_modinit_variable_import_code(void) { - __Pyx_RefNannyDeclarations - __Pyx_RefNannySetupContext("__Pyx_modinit_variable_import_code", 0); - /*--- Variable import code ---*/ - __Pyx_RefNannyFinishContext(); - return 0; -} - -static int __Pyx_modinit_function_import_code(void) { - __Pyx_RefNannyDeclarations - __Pyx_RefNannySetupContext("__Pyx_modinit_function_import_code", 0); - /*--- Function import code ---*/ - __Pyx_RefNannyFinishContext(); - return 0; -} - - -#if PY_MAJOR_VERSION < 3 -#ifdef CYTHON_NO_PYINIT_EXPORT -#define __Pyx_PyMODINIT_FUNC void -#else -#define __Pyx_PyMODINIT_FUNC PyMODINIT_FUNC -#endif -#else -#ifdef CYTHON_NO_PYINIT_EXPORT -#define __Pyx_PyMODINIT_FUNC PyObject * -#else -#define __Pyx_PyMODINIT_FUNC PyMODINIT_FUNC -#endif -#endif - - -#if PY_MAJOR_VERSION < 3 -__Pyx_PyMODINIT_FUNC inittcp(void) CYTHON_SMALL_CODE; /*proto*/ -__Pyx_PyMODINIT_FUNC inittcp(void) -#else -__Pyx_PyMODINIT_FUNC PyInit_tcp(void) CYTHON_SMALL_CODE; /*proto*/ -__Pyx_PyMODINIT_FUNC PyInit_tcp(void) -#if CYTHON_PEP489_MULTI_PHASE_INIT -{ - return PyModuleDef_Init(&__pyx_moduledef); -} -static CYTHON_SMALL_CODE int __Pyx_check_single_interpreter(void) { - #if PY_VERSION_HEX >= 0x030700A1 - static PY_INT64_T main_interpreter_id = -1; - PY_INT64_T current_id = PyInterpreterState_GetID(PyThreadState_Get()->interp); - if (main_interpreter_id == -1) { - main_interpreter_id = current_id; - return (unlikely(current_id == -1)) ? -1 : 0; - } else if (unlikely(main_interpreter_id != current_id)) - #else - static PyInterpreterState *main_interpreter = NULL; - PyInterpreterState *current_interpreter = PyThreadState_Get()->interp; - if (!main_interpreter) { - main_interpreter = current_interpreter; - } else if (unlikely(main_interpreter != current_interpreter)) - #endif - { - PyErr_SetString( - PyExc_ImportError, - "Interpreter change detected - this module can only be loaded into one interpreter per process."); - return -1; - } - return 0; -} -static CYTHON_SMALL_CODE int __Pyx_copy_spec_to_module(PyObject *spec, PyObject *moddict, const char* from_name, const char* to_name, int allow_none) { - PyObject *value = PyObject_GetAttrString(spec, from_name); - int result = 0; - if (likely(value)) { - if (allow_none || value != Py_None) { - result = PyDict_SetItemString(moddict, to_name, value); - } - Py_DECREF(value); - } else if (PyErr_ExceptionMatches(PyExc_AttributeError)) { - PyErr_Clear(); - } else { - result = -1; - } - return result; -} -static CYTHON_SMALL_CODE PyObject* __pyx_pymod_create(PyObject *spec, CYTHON_UNUSED PyModuleDef *def) { - PyObject *module = NULL, *moddict, *modname; - if (__Pyx_check_single_interpreter()) - return NULL; - if (__pyx_m) - return __Pyx_NewRef(__pyx_m); - modname = PyObject_GetAttrString(spec, "name"); - if (unlikely(!modname)) goto bad; - module = PyModule_NewObject(modname); - Py_DECREF(modname); - if (unlikely(!module)) goto bad; - moddict = PyModule_GetDict(module); - if (unlikely(!moddict)) goto bad; - if (unlikely(__Pyx_copy_spec_to_module(spec, moddict, "loader", "__loader__", 1) < 0)) goto bad; - if (unlikely(__Pyx_copy_spec_to_module(spec, moddict, "origin", "__file__", 1) < 0)) goto bad; - if (unlikely(__Pyx_copy_spec_to_module(spec, moddict, "parent", "__package__", 1) < 0)) goto bad; - if (unlikely(__Pyx_copy_spec_to_module(spec, moddict, "submodule_search_locations", "__path__", 0) < 0)) goto bad; - return module; -bad: - Py_XDECREF(module); - return NULL; -} - - -static CYTHON_SMALL_CODE int __pyx_pymod_exec_tcp(PyObject *__pyx_pyinit_module) -#endif -#endif -{ - PyObject *__pyx_t_1 = NULL; - PyObject *__pyx_t_2 = NULL; - PyObject *__pyx_t_3 = NULL; - PyObject *__pyx_t_4 = NULL; - PyObject *__pyx_t_5 = NULL; - int __pyx_t_6; - __Pyx_RefNannyDeclarations - #if CYTHON_PEP489_MULTI_PHASE_INIT - if (__pyx_m) { - if (__pyx_m == __pyx_pyinit_module) return 0; - PyErr_SetString(PyExc_RuntimeError, "Module 'tcp' has already been imported. Re-initialisation is not supported."); - return -1; - } - #elif PY_MAJOR_VERSION >= 3 - if (__pyx_m) return __Pyx_NewRef(__pyx_m); - #endif - #if CYTHON_REFNANNY -__Pyx_RefNanny = __Pyx_RefNannyImportAPI("refnanny"); -if (!__Pyx_RefNanny) { - PyErr_Clear(); - __Pyx_RefNanny = __Pyx_RefNannyImportAPI("Cython.Runtime.refnanny"); - if (!__Pyx_RefNanny) - Py_FatalError("failed to import 'refnanny' module"); -} -#endif - __Pyx_RefNannySetupContext("__Pyx_PyMODINIT_FUNC PyInit_tcp(void)", 0); - if (__Pyx_check_binary_version() < 0) __PYX_ERR(0, 1, __pyx_L1_error) - #ifdef __Pxy_PyFrame_Initialize_Offsets - __Pxy_PyFrame_Initialize_Offsets(); - #endif - __pyx_empty_tuple = PyTuple_New(0); if (unlikely(!__pyx_empty_tuple)) __PYX_ERR(0, 1, __pyx_L1_error) - __pyx_empty_bytes = PyBytes_FromStringAndSize("", 0); if (unlikely(!__pyx_empty_bytes)) __PYX_ERR(0, 1, __pyx_L1_error) - __pyx_empty_unicode = PyUnicode_FromStringAndSize("", 0); if (unlikely(!__pyx_empty_unicode)) __PYX_ERR(0, 1, __pyx_L1_error) - #ifdef __Pyx_CyFunction_USED - if (__pyx_CyFunction_init() < 0) __PYX_ERR(0, 1, __pyx_L1_error) - #endif - #ifdef __Pyx_FusedFunction_USED - if (__pyx_FusedFunction_init() < 0) __PYX_ERR(0, 1, __pyx_L1_error) - #endif - #ifdef __Pyx_Coroutine_USED - if (__pyx_Coroutine_init() < 0) __PYX_ERR(0, 1, __pyx_L1_error) - #endif - #ifdef __Pyx_Generator_USED - if (__pyx_Generator_init() < 0) __PYX_ERR(0, 1, __pyx_L1_error) - #endif - #ifdef __Pyx_AsyncGen_USED - if (__pyx_AsyncGen_init() < 0) __PYX_ERR(0, 1, __pyx_L1_error) - #endif - #ifdef __Pyx_StopAsyncIteration_USED - if (__pyx_StopAsyncIteration_init() < 0) __PYX_ERR(0, 1, __pyx_L1_error) - #endif - /*--- Library function declarations ---*/ - /*--- Threads initialization code ---*/ - #if defined(__PYX_FORCE_INIT_THREADS) && __PYX_FORCE_INIT_THREADS - #ifdef WITH_THREAD /* Python build with threading support? */ - PyEval_InitThreads(); - #endif - #endif - /*--- Module creation code ---*/ - #if CYTHON_PEP489_MULTI_PHASE_INIT - __pyx_m = __pyx_pyinit_module; - Py_INCREF(__pyx_m); - #else - #if PY_MAJOR_VERSION < 3 - __pyx_m = Py_InitModule4("tcp", __pyx_methods, __pyx_k_Copyright_c_2019_Cisco_Systems, 0, PYTHON_API_VERSION); Py_XINCREF(__pyx_m); - #else - __pyx_m = PyModule_Create(&__pyx_moduledef); - #endif - if (unlikely(!__pyx_m)) __PYX_ERR(0, 1, __pyx_L1_error) - #endif - __pyx_d = PyModule_GetDict(__pyx_m); if (unlikely(!__pyx_d)) __PYX_ERR(0, 1, __pyx_L1_error) - Py_INCREF(__pyx_d); - __pyx_b = PyImport_AddModule(__Pyx_BUILTIN_MODULE_NAME); if (unlikely(!__pyx_b)) __PYX_ERR(0, 1, __pyx_L1_error) - Py_INCREF(__pyx_b); - __pyx_cython_runtime = PyImport_AddModule((char *) "cython_runtime"); if (unlikely(!__pyx_cython_runtime)) __PYX_ERR(0, 1, __pyx_L1_error) - Py_INCREF(__pyx_cython_runtime); - if (PyObject_SetAttrString(__pyx_m, "__builtins__", __pyx_b) < 0) __PYX_ERR(0, 1, __pyx_L1_error); - /*--- Initialize various global constants etc. ---*/ - if (__Pyx_InitGlobals() < 0) __PYX_ERR(0, 1, __pyx_L1_error) - #if PY_MAJOR_VERSION < 3 && (__PYX_DEFAULT_STRING_ENCODING_IS_ASCII || __PYX_DEFAULT_STRING_ENCODING_IS_DEFAULT) - if (__Pyx_init_sys_getdefaultencoding_params() < 0) __PYX_ERR(0, 1, __pyx_L1_error) - #endif - if (__pyx_module_is_main_pmercury__protocols__tcp) { - if (PyObject_SetAttr(__pyx_m, __pyx_n_s_name, __pyx_n_s_main) < 0) __PYX_ERR(0, 1, __pyx_L1_error) - } - #if PY_MAJOR_VERSION >= 3 - { - PyObject *modules = PyImport_GetModuleDict(); if (unlikely(!modules)) __PYX_ERR(0, 1, __pyx_L1_error) - if (!PyDict_GetItemString(modules, "pmercury.protocols.tcp")) { - if (unlikely(PyDict_SetItemString(modules, "pmercury.protocols.tcp", __pyx_m) < 0)) __PYX_ERR(0, 1, __pyx_L1_error) - } - } - #endif - /*--- Builtin init code ---*/ - if (__Pyx_InitCachedBuiltins() < 0) goto __pyx_L1_error; - /*--- Constants init code ---*/ - if (__Pyx_InitCachedConstants() < 0) goto __pyx_L1_error; - /*--- Global type/function init code ---*/ - (void)__Pyx_modinit_global_init_code(); - (void)__Pyx_modinit_variable_export_code(); - (void)__Pyx_modinit_function_export_code(); - if (unlikely(__Pyx_modinit_type_init_code() != 0)) goto __pyx_L1_error; - (void)__Pyx_modinit_type_import_code(); - (void)__Pyx_modinit_variable_import_code(); - (void)__Pyx_modinit_function_import_code(); - /*--- Execution code ---*/ - #if defined(__Pyx_Generator_USED) || defined(__Pyx_Coroutine_USED) - if (__Pyx_patch_abc() < 0) __PYX_ERR(0, 1, __pyx_L1_error) - #endif - - /* "pmercury/protocols/tcp.pyx":8 - * """ - * - * import os # <<<<<<<<<<<<<< - * import sys - * import json - */ - __pyx_t_1 = __Pyx_Import(__pyx_n_s_os, 0, 0); if (unlikely(!__pyx_t_1)) __PYX_ERR(0, 8, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_1); - if (PyDict_SetItem(__pyx_d, __pyx_n_s_os, __pyx_t_1) < 0) __PYX_ERR(0, 8, __pyx_L1_error) - __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0; - - /* "pmercury/protocols/tcp.pyx":9 - * - * import os - * import sys # <<<<<<<<<<<<<< - * import json - * import functools - */ - __pyx_t_1 = __Pyx_Import(__pyx_n_s_sys, 0, 0); if (unlikely(!__pyx_t_1)) __PYX_ERR(0, 9, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_1); - if (PyDict_SetItem(__pyx_d, __pyx_n_s_sys, __pyx_t_1) < 0) __PYX_ERR(0, 9, __pyx_L1_error) - __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0; - - /* "pmercury/protocols/tcp.pyx":10 - * import os - * import sys - * import json # <<<<<<<<<<<<<< - * import functools - * from collections import OrderedDict - */ - __pyx_t_1 = __Pyx_Import(__pyx_n_s_json, 0, 0); if (unlikely(!__pyx_t_1)) __PYX_ERR(0, 10, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_1); - if (PyDict_SetItem(__pyx_d, __pyx_n_s_json, __pyx_t_1) < 0) __PYX_ERR(0, 10, __pyx_L1_error) - __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0; - - /* "pmercury/protocols/tcp.pyx":11 - * import sys - * import json - * import functools # <<<<<<<<<<<<<< - * from collections import OrderedDict - * - */ - __pyx_t_1 = __Pyx_Import(__pyx_n_s_functools, 0, 0); if (unlikely(!__pyx_t_1)) __PYX_ERR(0, 11, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_1); - if (PyDict_SetItem(__pyx_d, __pyx_n_s_functools, __pyx_t_1) < 0) __PYX_ERR(0, 11, __pyx_L1_error) - __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0; - - /* "pmercury/protocols/tcp.pyx":12 - * import json - * import functools - * from collections import OrderedDict # <<<<<<<<<<<<<< - * - * sys.path.append(os.path.dirname(os.path.abspath(__file__))) - */ - __pyx_t_1 = PyList_New(1); if (unlikely(!__pyx_t_1)) __PYX_ERR(0, 12, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_1); - __Pyx_INCREF(__pyx_n_s_OrderedDict); - __Pyx_GIVEREF(__pyx_n_s_OrderedDict); - PyList_SET_ITEM(__pyx_t_1, 0, __pyx_n_s_OrderedDict); - __pyx_t_2 = __Pyx_Import(__pyx_n_s_collections, __pyx_t_1, 0); if (unlikely(!__pyx_t_2)) __PYX_ERR(0, 12, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_2); - __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0; - __pyx_t_1 = __Pyx_ImportFrom(__pyx_t_2, __pyx_n_s_OrderedDict); if (unlikely(!__pyx_t_1)) __PYX_ERR(0, 12, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_1); - if (PyDict_SetItem(__pyx_d, __pyx_n_s_OrderedDict, __pyx_t_1) < 0) __PYX_ERR(0, 12, __pyx_L1_error) - __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0; - __Pyx_DECREF(__pyx_t_2); __pyx_t_2 = 0; - - /* "pmercury/protocols/tcp.pyx":14 - * from collections import OrderedDict - * - * sys.path.append(os.path.dirname(os.path.abspath(__file__))) # <<<<<<<<<<<<<< - * sys.path.append(os.path.dirname(os.path.abspath(__file__))+'/../') - * from pmercury.protocols.protocol import Protocol - */ - __Pyx_GetModuleGlobalName(__pyx_t_2, __pyx_n_s_sys); if (unlikely(!__pyx_t_2)) __PYX_ERR(0, 14, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_2); - __pyx_t_1 = __Pyx_PyObject_GetAttrStr(__pyx_t_2, __pyx_n_s_path); if (unlikely(!__pyx_t_1)) __PYX_ERR(0, 14, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_1); - __Pyx_DECREF(__pyx_t_2); __pyx_t_2 = 0; - __Pyx_GetModuleGlobalName(__pyx_t_2, __pyx_n_s_os); if (unlikely(!__pyx_t_2)) __PYX_ERR(0, 14, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_2); - __pyx_t_3 = __Pyx_PyObject_GetAttrStr(__pyx_t_2, __pyx_n_s_path); if (unlikely(!__pyx_t_3)) __PYX_ERR(0, 14, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_3); - __Pyx_DECREF(__pyx_t_2); __pyx_t_2 = 0; - __pyx_t_2 = __Pyx_PyObject_GetAttrStr(__pyx_t_3, __pyx_n_s_dirname); if (unlikely(!__pyx_t_2)) __PYX_ERR(0, 14, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_2); - __Pyx_DECREF(__pyx_t_3); __pyx_t_3 = 0; - __Pyx_GetModuleGlobalName(__pyx_t_3, __pyx_n_s_os); if (unlikely(!__pyx_t_3)) __PYX_ERR(0, 14, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_3); - __pyx_t_4 = __Pyx_PyObject_GetAttrStr(__pyx_t_3, __pyx_n_s_path); if (unlikely(!__pyx_t_4)) __PYX_ERR(0, 14, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_4); - __Pyx_DECREF(__pyx_t_3); __pyx_t_3 = 0; - __pyx_t_3 = __Pyx_PyObject_GetAttrStr(__pyx_t_4, __pyx_n_s_abspath); if (unlikely(!__pyx_t_3)) __PYX_ERR(0, 14, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_3); - __Pyx_DECREF(__pyx_t_4); __pyx_t_4 = 0; - __Pyx_GetModuleGlobalName(__pyx_t_4, __pyx_n_s_file); if (unlikely(!__pyx_t_4)) __PYX_ERR(0, 14, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_4); - __pyx_t_5 = __Pyx_PyObject_CallOneArg(__pyx_t_3, __pyx_t_4); if (unlikely(!__pyx_t_5)) __PYX_ERR(0, 14, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_5); - __Pyx_DECREF(__pyx_t_3); __pyx_t_3 = 0; - __Pyx_DECREF(__pyx_t_4); __pyx_t_4 = 0; - __pyx_t_4 = __Pyx_PyObject_CallOneArg(__pyx_t_2, __pyx_t_5); if (unlikely(!__pyx_t_4)) __PYX_ERR(0, 14, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_4); - __Pyx_DECREF(__pyx_t_2); __pyx_t_2 = 0; - __Pyx_DECREF(__pyx_t_5); __pyx_t_5 = 0; - __pyx_t_6 = __Pyx_PyObject_Append(__pyx_t_1, __pyx_t_4); if (unlikely(__pyx_t_6 == ((int)-1))) __PYX_ERR(0, 14, __pyx_L1_error) - __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0; - __Pyx_DECREF(__pyx_t_4); __pyx_t_4 = 0; - - /* "pmercury/protocols/tcp.pyx":15 - * - * sys.path.append(os.path.dirname(os.path.abspath(__file__))) - * sys.path.append(os.path.dirname(os.path.abspath(__file__))+'/../') # <<<<<<<<<<<<<< - * from pmercury.protocols.protocol import Protocol - * from pmercury.utils.pmercury_utils import * - */ - __Pyx_GetModuleGlobalName(__pyx_t_4, __pyx_n_s_sys); if (unlikely(!__pyx_t_4)) __PYX_ERR(0, 15, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_4); - __pyx_t_1 = __Pyx_PyObject_GetAttrStr(__pyx_t_4, __pyx_n_s_path); if (unlikely(!__pyx_t_1)) __PYX_ERR(0, 15, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_1); - __Pyx_DECREF(__pyx_t_4); __pyx_t_4 = 0; - __Pyx_GetModuleGlobalName(__pyx_t_4, __pyx_n_s_os); if (unlikely(!__pyx_t_4)) __PYX_ERR(0, 15, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_4); - __pyx_t_5 = __Pyx_PyObject_GetAttrStr(__pyx_t_4, __pyx_n_s_path); if (unlikely(!__pyx_t_5)) __PYX_ERR(0, 15, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_5); - __Pyx_DECREF(__pyx_t_4); __pyx_t_4 = 0; - __pyx_t_4 = __Pyx_PyObject_GetAttrStr(__pyx_t_5, __pyx_n_s_dirname); if (unlikely(!__pyx_t_4)) __PYX_ERR(0, 15, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_4); - __Pyx_DECREF(__pyx_t_5); __pyx_t_5 = 0; - __Pyx_GetModuleGlobalName(__pyx_t_5, __pyx_n_s_os); if (unlikely(!__pyx_t_5)) __PYX_ERR(0, 15, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_5); - __pyx_t_2 = __Pyx_PyObject_GetAttrStr(__pyx_t_5, __pyx_n_s_path); if (unlikely(!__pyx_t_2)) __PYX_ERR(0, 15, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_2); - __Pyx_DECREF(__pyx_t_5); __pyx_t_5 = 0; - __pyx_t_5 = __Pyx_PyObject_GetAttrStr(__pyx_t_2, __pyx_n_s_abspath); if (unlikely(!__pyx_t_5)) __PYX_ERR(0, 15, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_5); - __Pyx_DECREF(__pyx_t_2); __pyx_t_2 = 0; - __Pyx_GetModuleGlobalName(__pyx_t_2, __pyx_n_s_file); if (unlikely(!__pyx_t_2)) __PYX_ERR(0, 15, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_2); - __pyx_t_3 = __Pyx_PyObject_CallOneArg(__pyx_t_5, __pyx_t_2); if (unlikely(!__pyx_t_3)) __PYX_ERR(0, 15, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_3); - __Pyx_DECREF(__pyx_t_5); __pyx_t_5 = 0; - __Pyx_DECREF(__pyx_t_2); __pyx_t_2 = 0; - __pyx_t_2 = __Pyx_PyObject_CallOneArg(__pyx_t_4, __pyx_t_3); if (unlikely(!__pyx_t_2)) __PYX_ERR(0, 15, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_2); - __Pyx_DECREF(__pyx_t_4); __pyx_t_4 = 0; - __Pyx_DECREF(__pyx_t_3); __pyx_t_3 = 0; - __pyx_t_3 = PyNumber_Add(__pyx_t_2, __pyx_kp_u__4); if (unlikely(!__pyx_t_3)) __PYX_ERR(0, 15, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_3); - __Pyx_DECREF(__pyx_t_2); __pyx_t_2 = 0; - __pyx_t_6 = __Pyx_PyObject_Append(__pyx_t_1, __pyx_t_3); if (unlikely(__pyx_t_6 == ((int)-1))) __PYX_ERR(0, 15, __pyx_L1_error) - __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0; - __Pyx_DECREF(__pyx_t_3); __pyx_t_3 = 0; - - /* "pmercury/protocols/tcp.pyx":16 - * sys.path.append(os.path.dirname(os.path.abspath(__file__))) - * sys.path.append(os.path.dirname(os.path.abspath(__file__))+'/../') - * from pmercury.protocols.protocol import Protocol # <<<<<<<<<<<<<< - * from pmercury.utils.pmercury_utils import * - * - */ - __pyx_t_3 = PyList_New(1); if (unlikely(!__pyx_t_3)) __PYX_ERR(0, 16, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_3); - __Pyx_INCREF(__pyx_n_s_Protocol); - __Pyx_GIVEREF(__pyx_n_s_Protocol); - PyList_SET_ITEM(__pyx_t_3, 0, __pyx_n_s_Protocol); - __pyx_t_1 = __Pyx_Import(__pyx_n_s_pmercury_protocols_protocol, __pyx_t_3, 0); if (unlikely(!__pyx_t_1)) __PYX_ERR(0, 16, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_1); - __Pyx_DECREF(__pyx_t_3); __pyx_t_3 = 0; - __pyx_t_3 = __Pyx_ImportFrom(__pyx_t_1, __pyx_n_s_Protocol); if (unlikely(!__pyx_t_3)) __PYX_ERR(0, 16, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_3); - if (PyDict_SetItem(__pyx_d, __pyx_n_s_Protocol, __pyx_t_3) < 0) __PYX_ERR(0, 16, __pyx_L1_error) - __Pyx_DECREF(__pyx_t_3); __pyx_t_3 = 0; - __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0; - - /* "pmercury/protocols/tcp.pyx":17 - * sys.path.append(os.path.dirname(os.path.abspath(__file__))+'/../') - * from pmercury.protocols.protocol import Protocol - * from pmercury.utils.pmercury_utils import * # <<<<<<<<<<<<<< - * - * MAX_CACHED_RESULTS = 2**24 - */ - __pyx_t_1 = PyList_New(1); if (unlikely(!__pyx_t_1)) __PYX_ERR(0, 17, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_1); - __Pyx_INCREF(__pyx_n_s__5); - __Pyx_GIVEREF(__pyx_n_s__5); - PyList_SET_ITEM(__pyx_t_1, 0, __pyx_n_s__5); - __pyx_t_3 = __Pyx_Import(__pyx_n_s_pmercury_utils_pmercury_utils, __pyx_t_1, 0); if (unlikely(!__pyx_t_3)) __PYX_ERR(0, 17, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_3); - __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0; - if (__pyx_import_star(__pyx_t_3) < 0) __PYX_ERR(0, 17, __pyx_L1_error); - __Pyx_DECREF(__pyx_t_3); __pyx_t_3 = 0; - - /* "pmercury/protocols/tcp.pyx":19 - * from pmercury.utils.pmercury_utils import * - * - * MAX_CACHED_RESULTS = 2**24 # <<<<<<<<<<<<<< - * - * cdef class TCP: - */ - if (PyDict_SetItem(__pyx_d, __pyx_n_s_MAX_CACHED_RESULTS, __pyx_int_16777216) < 0) __PYX_ERR(0, 19, __pyx_L1_error) - - /* "pmercury/protocols/tcp.pyx":61 - * - * - * @functools.lru_cache(maxsize=MAX_CACHED_RESULTS) # <<<<<<<<<<<<<< - * def os_identify(self, fp_str_, list_oses=0): - * fp_ = self.get_database_entry(fp_str_, None) - */ - __Pyx_GetModuleGlobalName(__pyx_t_1, __pyx_n_s_functools); if (unlikely(!__pyx_t_1)) __PYX_ERR(0, 61, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_1); - __pyx_t_2 = __Pyx_PyObject_GetAttrStr(__pyx_t_1, __pyx_n_s_lru_cache); if (unlikely(!__pyx_t_2)) __PYX_ERR(0, 61, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_2); - __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0; - __pyx_t_1 = __Pyx_PyDict_NewPresized(1); if (unlikely(!__pyx_t_1)) __PYX_ERR(0, 61, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_1); - __Pyx_GetModuleGlobalName(__pyx_t_4, __pyx_n_s_MAX_CACHED_RESULTS); if (unlikely(!__pyx_t_4)) __PYX_ERR(0, 61, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_4); - if (PyDict_SetItem(__pyx_t_1, __pyx_n_s_maxsize, __pyx_t_4) < 0) __PYX_ERR(0, 61, __pyx_L1_error) - __Pyx_DECREF(__pyx_t_4); __pyx_t_4 = 0; - __pyx_t_4 = __Pyx_PyObject_Call(__pyx_t_2, __pyx_empty_tuple, __pyx_t_1); if (unlikely(!__pyx_t_4)) __PYX_ERR(0, 61, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_4); - __Pyx_DECREF(__pyx_t_2); __pyx_t_2 = 0; - __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0; - - /* "pmercury/protocols/tcp.pyx":62 - * - * @functools.lru_cache(maxsize=MAX_CACHED_RESULTS) - * def os_identify(self, fp_str_, list_oses=0): # <<<<<<<<<<<<<< - * fp_ = self.get_database_entry(fp_str_, None) - * if fp_ == None: - */ - __Pyx_GetNameInClass(__pyx_t_1, (PyObject *)__pyx_ptype_8pmercury_9protocols_3tcp_TCP, __pyx_n_s_os_identify); if (unlikely(!__pyx_t_1)) __PYX_ERR(0, 62, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_1); - __pyx_t_2 = NULL; - if (CYTHON_UNPACK_METHODS && unlikely(PyMethod_Check(__pyx_t_4))) { - __pyx_t_2 = PyMethod_GET_SELF(__pyx_t_4); - if (likely(__pyx_t_2)) { - PyObject* function = PyMethod_GET_FUNCTION(__pyx_t_4); - __Pyx_INCREF(__pyx_t_2); - __Pyx_INCREF(function); - __Pyx_DECREF_SET(__pyx_t_4, function); - } - } - __pyx_t_3 = (__pyx_t_2) ? __Pyx_PyObject_Call2Args(__pyx_t_4, __pyx_t_2, __pyx_t_1) : __Pyx_PyObject_CallOneArg(__pyx_t_4, __pyx_t_1); - __Pyx_XDECREF(__pyx_t_2); __pyx_t_2 = 0; - __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0; - if (unlikely(!__pyx_t_3)) __PYX_ERR(0, 61, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_3); - __Pyx_DECREF(__pyx_t_4); __pyx_t_4 = 0; - if (PyDict_SetItem((PyObject *)__pyx_ptype_8pmercury_9protocols_3tcp_TCP->tp_dict, __pyx_n_s_os_identify, __pyx_t_3) < 0) __PYX_ERR(0, 62, __pyx_L1_error) - __Pyx_DECREF(__pyx_t_3); __pyx_t_3 = 0; - PyType_Modified(__pyx_ptype_8pmercury_9protocols_3tcp_TCP); - - /* "pmercury/protocols/tcp.pyx":80 - * - * - * @functools.lru_cache(maxsize=MAX_CACHED_RESULTS) # <<<<<<<<<<<<<< - * def get_database_entry(self, fp_str, approx_fp_str): - * if self.fp_db == None or fp_str not in self.fp_db: - */ - __Pyx_GetModuleGlobalName(__pyx_t_4, __pyx_n_s_functools); if (unlikely(!__pyx_t_4)) __PYX_ERR(0, 80, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_4); - __pyx_t_1 = __Pyx_PyObject_GetAttrStr(__pyx_t_4, __pyx_n_s_lru_cache); if (unlikely(!__pyx_t_1)) __PYX_ERR(0, 80, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_1); - __Pyx_DECREF(__pyx_t_4); __pyx_t_4 = 0; - __pyx_t_4 = __Pyx_PyDict_NewPresized(1); if (unlikely(!__pyx_t_4)) __PYX_ERR(0, 80, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_4); - __Pyx_GetModuleGlobalName(__pyx_t_2, __pyx_n_s_MAX_CACHED_RESULTS); if (unlikely(!__pyx_t_2)) __PYX_ERR(0, 80, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_2); - if (PyDict_SetItem(__pyx_t_4, __pyx_n_s_maxsize, __pyx_t_2) < 0) __PYX_ERR(0, 80, __pyx_L1_error) - __Pyx_DECREF(__pyx_t_2); __pyx_t_2 = 0; - __pyx_t_2 = __Pyx_PyObject_Call(__pyx_t_1, __pyx_empty_tuple, __pyx_t_4); if (unlikely(!__pyx_t_2)) __PYX_ERR(0, 80, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_2); - __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0; - __Pyx_DECREF(__pyx_t_4); __pyx_t_4 = 0; - - /* "pmercury/protocols/tcp.pyx":81 - * - * @functools.lru_cache(maxsize=MAX_CACHED_RESULTS) - * def get_database_entry(self, fp_str, approx_fp_str): # <<<<<<<<<<<<<< - * if self.fp_db == None or fp_str not in self.fp_db: - * return None - */ - __Pyx_GetNameInClass(__pyx_t_4, (PyObject *)__pyx_ptype_8pmercury_9protocols_3tcp_TCP, __pyx_n_s_get_database_entry); if (unlikely(!__pyx_t_4)) __PYX_ERR(0, 81, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_4); - __pyx_t_1 = NULL; - if (CYTHON_UNPACK_METHODS && unlikely(PyMethod_Check(__pyx_t_2))) { - __pyx_t_1 = PyMethod_GET_SELF(__pyx_t_2); - if (likely(__pyx_t_1)) { - PyObject* function = PyMethod_GET_FUNCTION(__pyx_t_2); - __Pyx_INCREF(__pyx_t_1); - __Pyx_INCREF(function); - __Pyx_DECREF_SET(__pyx_t_2, function); - } - } - __pyx_t_3 = (__pyx_t_1) ? __Pyx_PyObject_Call2Args(__pyx_t_2, __pyx_t_1, __pyx_t_4) : __Pyx_PyObject_CallOneArg(__pyx_t_2, __pyx_t_4); - __Pyx_XDECREF(__pyx_t_1); __pyx_t_1 = 0; - __Pyx_DECREF(__pyx_t_4); __pyx_t_4 = 0; - if (unlikely(!__pyx_t_3)) __PYX_ERR(0, 80, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_3); - __Pyx_DECREF(__pyx_t_2); __pyx_t_2 = 0; - if (PyDict_SetItem((PyObject *)__pyx_ptype_8pmercury_9protocols_3tcp_TCP->tp_dict, __pyx_n_s_get_database_entry, __pyx_t_3) < 0) __PYX_ERR(0, 81, __pyx_L1_error) - __Pyx_DECREF(__pyx_t_3); __pyx_t_3 = 0; - PyType_Modified(__pyx_ptype_8pmercury_9protocols_3tcp_TCP); - - /* "pmercury/protocols/tcp.pyx":89 - * - * @staticmethod - * def proto_identify(data, offset, data_len): # <<<<<<<<<<<<<< - * if data[offset+13] != 2: - * return False - */ - __pyx_t_3 = PyCFunction_NewEx(&__pyx_mdef_8pmercury_9protocols_3tcp_3TCP_11proto_identify, NULL, __pyx_n_s_pmercury_protocols_tcp); if (unlikely(!__pyx_t_3)) __PYX_ERR(0, 89, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_3); - if (PyDict_SetItem((PyObject *)__pyx_ptype_8pmercury_9protocols_3tcp_TCP->tp_dict, __pyx_n_s_proto_identify, __pyx_t_3) < 0) __PYX_ERR(0, 89, __pyx_L1_error) - __Pyx_DECREF(__pyx_t_3); __pyx_t_3 = 0; - PyType_Modified(__pyx_ptype_8pmercury_9protocols_3tcp_TCP); - - /* "pmercury/protocols/tcp.pyx":88 - * - * - * @staticmethod # <<<<<<<<<<<<<< - * def proto_identify(data, offset, data_len): - * if data[offset+13] != 2: - */ - __Pyx_GetNameInClass(__pyx_t_3, (PyObject *)__pyx_ptype_8pmercury_9protocols_3tcp_TCP, __pyx_n_s_proto_identify); if (unlikely(!__pyx_t_3)) __PYX_ERR(0, 89, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_3); - __pyx_t_2 = __Pyx_PyObject_CallOneArg(__pyx_builtin_staticmethod, __pyx_t_3); if (unlikely(!__pyx_t_2)) __PYX_ERR(0, 88, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_2); - __Pyx_DECREF(__pyx_t_3); __pyx_t_3 = 0; - if (PyDict_SetItem((PyObject *)__pyx_ptype_8pmercury_9protocols_3tcp_TCP->tp_dict, __pyx_n_s_proto_identify, __pyx_t_2) < 0) __PYX_ERR(0, 89, __pyx_L1_error) - __Pyx_DECREF(__pyx_t_2); __pyx_t_2 = 0; - PyType_Modified(__pyx_ptype_8pmercury_9protocols_3tcp_TCP); - - /* "pmercury/protocols/tcp.pyx":96 - * - * @staticmethod - * def fingerprint(unsigned char *buf, unsigned int offset, unsigned int data_len): # <<<<<<<<<<<<<< - * cdef list c = [f'({buf[offset+14]:02x}{buf[offset+15]:02x})'] - * - */ - __pyx_t_2 = PyCFunction_NewEx(&__pyx_mdef_8pmercury_9protocols_3tcp_3TCP_13fingerprint, NULL, __pyx_n_s_pmercury_protocols_tcp); if (unlikely(!__pyx_t_2)) __PYX_ERR(0, 96, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_2); - if (PyDict_SetItem((PyObject *)__pyx_ptype_8pmercury_9protocols_3tcp_TCP->tp_dict, __pyx_n_s_fingerprint, __pyx_t_2) < 0) __PYX_ERR(0, 96, __pyx_L1_error) - __Pyx_DECREF(__pyx_t_2); __pyx_t_2 = 0; - PyType_Modified(__pyx_ptype_8pmercury_9protocols_3tcp_TCP); - - /* "pmercury/protocols/tcp.pyx":95 - * - * - * @staticmethod # <<<<<<<<<<<<<< - * def fingerprint(unsigned char *buf, unsigned int offset, unsigned int data_len): - * cdef list c = [f'({buf[offset+14]:02x}{buf[offset+15]:02x})'] - */ - __Pyx_GetNameInClass(__pyx_t_2, (PyObject *)__pyx_ptype_8pmercury_9protocols_3tcp_TCP, __pyx_n_s_fingerprint); if (unlikely(!__pyx_t_2)) __PYX_ERR(0, 96, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_2); - __pyx_t_3 = __Pyx_PyObject_CallOneArg(__pyx_builtin_staticmethod, __pyx_t_2); if (unlikely(!__pyx_t_3)) __PYX_ERR(0, 95, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_3); - __Pyx_DECREF(__pyx_t_2); __pyx_t_2 = 0; - if (PyDict_SetItem((PyObject *)__pyx_ptype_8pmercury_9protocols_3tcp_TCP->tp_dict, __pyx_n_s_fingerprint, __pyx_t_3) < 0) __PYX_ERR(0, 96, __pyx_L1_error) - __Pyx_DECREF(__pyx_t_3); __pyx_t_3 = 0; - PyType_Modified(__pyx_ptype_8pmercury_9protocols_3tcp_TCP); - - /* "(tree fragment)":1 - * def __pyx_unpickle_TCP(__pyx_type, long __pyx_checksum, __pyx_state): # <<<<<<<<<<<<<< - * cdef object __pyx_PickleError - * cdef object __pyx_result - */ - __pyx_t_3 = PyCFunction_NewEx(&__pyx_mdef_8pmercury_9protocols_3tcp_1__pyx_unpickle_TCP, NULL, __pyx_n_s_pmercury_protocols_tcp); if (unlikely(!__pyx_t_3)) __PYX_ERR(1, 1, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_3); - if (PyDict_SetItem(__pyx_d, __pyx_n_s_pyx_unpickle_TCP, __pyx_t_3) < 0) __PYX_ERR(1, 1, __pyx_L1_error) - __Pyx_DECREF(__pyx_t_3); __pyx_t_3 = 0; - - /* "pmercury/protocols/tcp.pyx":1 - * #cython: language_level=3, wraparound=False, cdivision=True, infer_types=True, initializedcheck=False, c_string_type=bytes, embedsignature=False, nonecheck=False # <<<<<<<<<<<<<< - * - * """ - */ - __pyx_t_3 = __Pyx_PyDict_NewPresized(0); if (unlikely(!__pyx_t_3)) __PYX_ERR(0, 1, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_3); - if (PyDict_SetItem(__pyx_d, __pyx_n_s_test, __pyx_t_3) < 0) __PYX_ERR(0, 1, __pyx_L1_error) - __Pyx_DECREF(__pyx_t_3); __pyx_t_3 = 0; - - /*--- Wrapped vars code ---*/ - - goto __pyx_L0; - __pyx_L1_error:; - __Pyx_XDECREF(__pyx_t_1); - __Pyx_XDECREF(__pyx_t_2); - __Pyx_XDECREF(__pyx_t_3); - __Pyx_XDECREF(__pyx_t_4); - __Pyx_XDECREF(__pyx_t_5); - if (__pyx_m) { - if (__pyx_d) { - __Pyx_AddTraceback("init pmercury.protocols.tcp", __pyx_clineno, __pyx_lineno, __pyx_filename); - } - Py_CLEAR(__pyx_m); - } else if (!PyErr_Occurred()) { - PyErr_SetString(PyExc_ImportError, "init pmercury.protocols.tcp"); - } - __pyx_L0:; - __Pyx_RefNannyFinishContext(); - #if CYTHON_PEP489_MULTI_PHASE_INIT - return (__pyx_m != NULL) ? 0 : -1; - #elif PY_MAJOR_VERSION >= 3 - return __pyx_m; - #else - return; - #endif -} - -/* --- Runtime support code --- */ -/* Refnanny */ -#if CYTHON_REFNANNY -static __Pyx_RefNannyAPIStruct *__Pyx_RefNannyImportAPI(const char *modname) { - PyObject *m = NULL, *p = NULL; - void *r = NULL; - m = PyImport_ImportModule(modname); - if (!m) goto end; - p = PyObject_GetAttrString(m, "RefNannyAPI"); - if (!p) goto end; - r = PyLong_AsVoidPtr(p); -end: - Py_XDECREF(p); - Py_XDECREF(m); - return (__Pyx_RefNannyAPIStruct *)r; -} -#endif - -/* PyObjectGetAttrStr */ -#if CYTHON_USE_TYPE_SLOTS -static CYTHON_INLINE PyObject* __Pyx_PyObject_GetAttrStr(PyObject* obj, PyObject* attr_name) { - PyTypeObject* tp = Py_TYPE(obj); - if (likely(tp->tp_getattro)) - return tp->tp_getattro(obj, attr_name); -#if PY_MAJOR_VERSION < 3 - if (likely(tp->tp_getattr)) - return tp->tp_getattr(obj, PyString_AS_STRING(attr_name)); -#endif - return PyObject_GetAttr(obj, attr_name); -} -#endif - -/* GetBuiltinName */ -static PyObject *__Pyx_GetBuiltinName(PyObject *name) { - PyObject* result = __Pyx_PyObject_GetAttrStr(__pyx_b, name); - if (unlikely(!result)) { - PyErr_Format(PyExc_NameError, -#if PY_MAJOR_VERSION >= 3 - "name '%U' is not defined", name); -#else - "name '%.200s' is not defined", PyString_AS_STRING(name)); -#endif - } - return result; -} - -/* RaiseDoubleKeywords */ -static void __Pyx_RaiseDoubleKeywordsError( - const char* func_name, - PyObject* kw_name) -{ - PyErr_Format(PyExc_TypeError, - #if PY_MAJOR_VERSION >= 3 - "%s() got multiple values for keyword argument '%U'", func_name, kw_name); - #else - "%s() got multiple values for keyword argument '%s'", func_name, - PyString_AsString(kw_name)); - #endif -} - -/* ParseKeywords */ -static int __Pyx_ParseOptionalKeywords( - PyObject *kwds, - PyObject **argnames[], - PyObject *kwds2, - PyObject *values[], - Py_ssize_t num_pos_args, - const char* function_name) -{ - PyObject *key = 0, *value = 0; - Py_ssize_t pos = 0; - PyObject*** name; - PyObject*** first_kw_arg = argnames + num_pos_args; - while (PyDict_Next(kwds, &pos, &key, &value)) { - name = first_kw_arg; - while (*name && (**name != key)) name++; - if (*name) { - values[name-argnames] = value; - continue; - } - name = first_kw_arg; - #if PY_MAJOR_VERSION < 3 - if (likely(PyString_CheckExact(key)) || likely(PyString_Check(key))) { - while (*name) { - if ((CYTHON_COMPILING_IN_PYPY || PyString_GET_SIZE(**name) == PyString_GET_SIZE(key)) - && _PyString_Eq(**name, key)) { - values[name-argnames] = value; - break; - } - name++; - } - if (*name) continue; - else { - PyObject*** argname = argnames; - while (argname != first_kw_arg) { - if ((**argname == key) || ( - (CYTHON_COMPILING_IN_PYPY || PyString_GET_SIZE(**argname) == PyString_GET_SIZE(key)) - && _PyString_Eq(**argname, key))) { - goto arg_passed_twice; - } - argname++; - } - } - } else - #endif - if (likely(PyUnicode_Check(key))) { - while (*name) { - int cmp = (**name == key) ? 0 : - #if !CYTHON_COMPILING_IN_PYPY && PY_MAJOR_VERSION >= 3 - (PyUnicode_GET_SIZE(**name) != PyUnicode_GET_SIZE(key)) ? 1 : - #endif - PyUnicode_Compare(**name, key); - if (cmp < 0 && unlikely(PyErr_Occurred())) goto bad; - if (cmp == 0) { - values[name-argnames] = value; - break; - } - name++; - } - if (*name) continue; - else { - PyObject*** argname = argnames; - while (argname != first_kw_arg) { - int cmp = (**argname == key) ? 0 : - #if !CYTHON_COMPILING_IN_PYPY && PY_MAJOR_VERSION >= 3 - (PyUnicode_GET_SIZE(**argname) != PyUnicode_GET_SIZE(key)) ? 1 : - #endif - PyUnicode_Compare(**argname, key); - if (cmp < 0 && unlikely(PyErr_Occurred())) goto bad; - if (cmp == 0) goto arg_passed_twice; - argname++; - } - } - } else - goto invalid_keyword_type; - if (kwds2) { - if (unlikely(PyDict_SetItem(kwds2, key, value))) goto bad; - } else { - goto invalid_keyword; - } - } - return 0; -arg_passed_twice: - __Pyx_RaiseDoubleKeywordsError(function_name, key); - goto bad; -invalid_keyword_type: - PyErr_Format(PyExc_TypeError, - "%.200s() keywords must be strings", function_name); - goto bad; -invalid_keyword: - PyErr_Format(PyExc_TypeError, - #if PY_MAJOR_VERSION < 3 - "%.200s() got an unexpected keyword argument '%.200s'", - function_name, PyString_AsString(key)); - #else - "%s() got an unexpected keyword argument '%U'", - function_name, key); - #endif -bad: - return -1; -} - -/* RaiseArgTupleInvalid */ -static void __Pyx_RaiseArgtupleInvalid( - const char* func_name, - int exact, - Py_ssize_t num_min, - Py_ssize_t num_max, - Py_ssize_t num_found) -{ - Py_ssize_t num_expected; - const char *more_or_less; - if (num_found < num_min) { - num_expected = num_min; - more_or_less = "at least"; - } else { - num_expected = num_max; - more_or_less = "at most"; - } - if (exact) { - more_or_less = "exactly"; - } - PyErr_Format(PyExc_TypeError, - "%.200s() takes %.8s %" CYTHON_FORMAT_SSIZE_T "d positional argument%.1s (%" CYTHON_FORMAT_SSIZE_T "d given)", - func_name, more_or_less, num_expected, - (num_expected == 1) ? "" : "s", num_found); -} - -/* PyCFunctionFastCall */ -#if CYTHON_FAST_PYCCALL -static CYTHON_INLINE PyObject * __Pyx_PyCFunction_FastCall(PyObject *func_obj, PyObject **args, Py_ssize_t nargs) { - PyCFunctionObject *func = (PyCFunctionObject*)func_obj; - PyCFunction meth = PyCFunction_GET_FUNCTION(func); - PyObject *self = PyCFunction_GET_SELF(func); - int flags = PyCFunction_GET_FLAGS(func); - assert(PyCFunction_Check(func)); - assert(METH_FASTCALL == (flags & ~(METH_CLASS | METH_STATIC | METH_COEXIST | METH_KEYWORDS | METH_STACKLESS))); - assert(nargs >= 0); - assert(nargs == 0 || args != NULL); - /* _PyCFunction_FastCallDict() must not be called with an exception set, - because it may clear it (directly or indirectly) and so the - caller loses its exception */ - assert(!PyErr_Occurred()); - if ((PY_VERSION_HEX < 0x030700A0) || unlikely(flags & METH_KEYWORDS)) { - return (*((__Pyx_PyCFunctionFastWithKeywords)(void*)meth)) (self, args, nargs, NULL); - } else { - return (*((__Pyx_PyCFunctionFast)(void*)meth)) (self, args, nargs); - } -} -#endif - -/* PyFunctionFastCall */ -#if CYTHON_FAST_PYCALL -static PyObject* __Pyx_PyFunction_FastCallNoKw(PyCodeObject *co, PyObject **args, Py_ssize_t na, - PyObject *globals) { - PyFrameObject *f; - PyThreadState *tstate = __Pyx_PyThreadState_Current; - PyObject **fastlocals; - Py_ssize_t i; - PyObject *result; - assert(globals != NULL); - /* XXX Perhaps we should create a specialized - PyFrame_New() that doesn't take locals, but does - take builtins without sanity checking them. - */ - assert(tstate != NULL); - f = PyFrame_New(tstate, co, globals, NULL); - if (f == NULL) { - return NULL; - } - fastlocals = __Pyx_PyFrame_GetLocalsplus(f); - for (i = 0; i < na; i++) { - Py_INCREF(*args); - fastlocals[i] = *args++; - } - result = PyEval_EvalFrameEx(f,0); - ++tstate->recursion_depth; - Py_DECREF(f); - --tstate->recursion_depth; - return result; -} -#if 1 || PY_VERSION_HEX < 0x030600B1 -static PyObject *__Pyx_PyFunction_FastCallDict(PyObject *func, PyObject **args, Py_ssize_t nargs, PyObject *kwargs) { - PyCodeObject *co = (PyCodeObject *)PyFunction_GET_CODE(func); - PyObject *globals = PyFunction_GET_GLOBALS(func); - PyObject *argdefs = PyFunction_GET_DEFAULTS(func); - PyObject *closure; -#if PY_MAJOR_VERSION >= 3 - PyObject *kwdefs; -#endif - PyObject *kwtuple, **k; - PyObject **d; - Py_ssize_t nd; - Py_ssize_t nk; - PyObject *result; - assert(kwargs == NULL || PyDict_Check(kwargs)); - nk = kwargs ? PyDict_Size(kwargs) : 0; - if (Py_EnterRecursiveCall((char*)" while calling a Python object")) { - return NULL; - } - if ( -#if PY_MAJOR_VERSION >= 3 - co->co_kwonlyargcount == 0 && -#endif - likely(kwargs == NULL || nk == 0) && - co->co_flags == (CO_OPTIMIZED | CO_NEWLOCALS | CO_NOFREE)) { - if (argdefs == NULL && co->co_argcount == nargs) { - result = __Pyx_PyFunction_FastCallNoKw(co, args, nargs, globals); - goto done; - } - else if (nargs == 0 && argdefs != NULL - && co->co_argcount == Py_SIZE(argdefs)) { - /* function called with no arguments, but all parameters have - a default value: use default values as arguments .*/ - args = &PyTuple_GET_ITEM(argdefs, 0); - result =__Pyx_PyFunction_FastCallNoKw(co, args, Py_SIZE(argdefs), globals); - goto done; - } - } - if (kwargs != NULL) { - Py_ssize_t pos, i; - kwtuple = PyTuple_New(2 * nk); - if (kwtuple == NULL) { - result = NULL; - goto done; - } - k = &PyTuple_GET_ITEM(kwtuple, 0); - pos = i = 0; - while (PyDict_Next(kwargs, &pos, &k[i], &k[i+1])) { - Py_INCREF(k[i]); - Py_INCREF(k[i+1]); - i += 2; - } - nk = i / 2; - } - else { - kwtuple = NULL; - k = NULL; - } - closure = PyFunction_GET_CLOSURE(func); -#if PY_MAJOR_VERSION >= 3 - kwdefs = PyFunction_GET_KW_DEFAULTS(func); -#endif - if (argdefs != NULL) { - d = &PyTuple_GET_ITEM(argdefs, 0); - nd = Py_SIZE(argdefs); - } - else { - d = NULL; - nd = 0; - } -#if PY_MAJOR_VERSION >= 3 - result = PyEval_EvalCodeEx((PyObject*)co, globals, (PyObject *)NULL, - args, (int)nargs, - k, (int)nk, - d, (int)nd, kwdefs, closure); -#else - result = PyEval_EvalCodeEx(co, globals, (PyObject *)NULL, - args, (int)nargs, - k, (int)nk, - d, (int)nd, closure); -#endif - Py_XDECREF(kwtuple); -done: - Py_LeaveRecursiveCall(); - return result; -} -#endif -#endif - -/* PyObjectCall */ -#if CYTHON_COMPILING_IN_CPYTHON -static CYTHON_INLINE PyObject* __Pyx_PyObject_Call(PyObject *func, PyObject *arg, PyObject *kw) { - PyObject *result; - ternaryfunc call = func->ob_type->tp_call; - if (unlikely(!call)) - return PyObject_Call(func, arg, kw); - if (unlikely(Py_EnterRecursiveCall((char*)" while calling a Python object"))) - return NULL; - result = (*call)(func, arg, kw); - Py_LeaveRecursiveCall(); - if (unlikely(!result) && unlikely(!PyErr_Occurred())) { - PyErr_SetString( - PyExc_SystemError, - "NULL result without error in PyObject_Call"); - } - return result; -} -#endif - -/* PyObjectCall2Args */ -static CYTHON_UNUSED PyObject* __Pyx_PyObject_Call2Args(PyObject* function, PyObject* arg1, PyObject* arg2) { - PyObject *args, *result = NULL; - #if CYTHON_FAST_PYCALL - if (PyFunction_Check(function)) { - PyObject *args[2] = {arg1, arg2}; - return __Pyx_PyFunction_FastCall(function, args, 2); - } - #endif - #if CYTHON_FAST_PYCCALL - if (__Pyx_PyFastCFunction_Check(function)) { - PyObject *args[2] = {arg1, arg2}; - return __Pyx_PyCFunction_FastCall(function, args, 2); - } - #endif - args = PyTuple_New(2); - if (unlikely(!args)) goto done; - Py_INCREF(arg1); - PyTuple_SET_ITEM(args, 0, arg1); - Py_INCREF(arg2); - PyTuple_SET_ITEM(args, 1, arg2); - Py_INCREF(function); - result = __Pyx_PyObject_Call(function, args, NULL); - Py_DECREF(args); - Py_DECREF(function); -done: - return result; -} - -/* PyObjectCallMethO */ -#if CYTHON_COMPILING_IN_CPYTHON -static CYTHON_INLINE PyObject* __Pyx_PyObject_CallMethO(PyObject *func, PyObject *arg) { - PyObject *self, *result; - PyCFunction cfunc; - cfunc = PyCFunction_GET_FUNCTION(func); - self = PyCFunction_GET_SELF(func); - if (unlikely(Py_EnterRecursiveCall((char*)" while calling a Python object"))) - return NULL; - result = cfunc(self, arg); - Py_LeaveRecursiveCall(); - if (unlikely(!result) && unlikely(!PyErr_Occurred())) { - PyErr_SetString( - PyExc_SystemError, - "NULL result without error in PyObject_Call"); - } - return result; -} -#endif - -/* PyObjectCallOneArg */ -#if CYTHON_COMPILING_IN_CPYTHON -static PyObject* __Pyx__PyObject_CallOneArg(PyObject *func, PyObject *arg) { - PyObject *result; - PyObject *args = PyTuple_New(1); - if (unlikely(!args)) return NULL; - Py_INCREF(arg); - PyTuple_SET_ITEM(args, 0, arg); - result = __Pyx_PyObject_Call(func, args, NULL); - Py_DECREF(args); - return result; -} -static CYTHON_INLINE PyObject* __Pyx_PyObject_CallOneArg(PyObject *func, PyObject *arg) { -#if CYTHON_FAST_PYCALL - if (PyFunction_Check(func)) { - return __Pyx_PyFunction_FastCall(func, &arg, 1); - } -#endif - if (likely(PyCFunction_Check(func))) { - if (likely(PyCFunction_GET_FLAGS(func) & METH_O)) { - return __Pyx_PyObject_CallMethO(func, arg); -#if CYTHON_FAST_PYCCALL - } else if (PyCFunction_GET_FLAGS(func) & METH_FASTCALL) { - return __Pyx_PyCFunction_FastCall(func, &arg, 1); -#endif - } - } - return __Pyx__PyObject_CallOneArg(func, arg); -} -#else -static CYTHON_INLINE PyObject* __Pyx_PyObject_CallOneArg(PyObject *func, PyObject *arg) { - PyObject *result; - PyObject *args = PyTuple_Pack(1, arg); - if (unlikely(!args)) return NULL; - result = __Pyx_PyObject_Call(func, args, NULL); - Py_DECREF(args); - return result; -} -#endif - -/* PyDictVersioning */ -#if CYTHON_USE_DICT_VERSIONS && CYTHON_USE_TYPE_SLOTS -static CYTHON_INLINE PY_UINT64_T __Pyx_get_tp_dict_version(PyObject *obj) { - PyObject *dict = Py_TYPE(obj)->tp_dict; - return likely(dict) ? __PYX_GET_DICT_VERSION(dict) : 0; -} -static CYTHON_INLINE PY_UINT64_T __Pyx_get_object_dict_version(PyObject *obj) { - PyObject **dictptr = NULL; - Py_ssize_t offset = Py_TYPE(obj)->tp_dictoffset; - if (offset) { -#if CYTHON_COMPILING_IN_CPYTHON - dictptr = (likely(offset > 0)) ? (PyObject **) ((char *)obj + offset) : _PyObject_GetDictPtr(obj); -#else - dictptr = _PyObject_GetDictPtr(obj); -#endif - } - return (dictptr && *dictptr) ? __PYX_GET_DICT_VERSION(*dictptr) : 0; -} -static CYTHON_INLINE int __Pyx_object_dict_version_matches(PyObject* obj, PY_UINT64_T tp_dict_version, PY_UINT64_T obj_dict_version) { - PyObject *dict = Py_TYPE(obj)->tp_dict; - if (unlikely(!dict) || unlikely(tp_dict_version != __PYX_GET_DICT_VERSION(dict))) - return 0; - return obj_dict_version == __Pyx_get_object_dict_version(obj); -} -#endif - -/* GetModuleGlobalName */ -#if CYTHON_USE_DICT_VERSIONS -static PyObject *__Pyx__GetModuleGlobalName(PyObject *name, PY_UINT64_T *dict_version, PyObject **dict_cached_value) -#else -static CYTHON_INLINE PyObject *__Pyx__GetModuleGlobalName(PyObject *name) -#endif -{ - PyObject *result; -#if !CYTHON_AVOID_BORROWED_REFS -#if CYTHON_COMPILING_IN_CPYTHON && PY_VERSION_HEX >= 0x030500A1 - result = _PyDict_GetItem_KnownHash(__pyx_d, name, ((PyASCIIObject *) name)->hash); - __PYX_UPDATE_DICT_CACHE(__pyx_d, result, *dict_cached_value, *dict_version) - if (likely(result)) { - return __Pyx_NewRef(result); - } else if (unlikely(PyErr_Occurred())) { - return NULL; - } -#else - result = PyDict_GetItem(__pyx_d, name); - __PYX_UPDATE_DICT_CACHE(__pyx_d, result, *dict_cached_value, *dict_version) - if (likely(result)) { - return __Pyx_NewRef(result); - } -#endif -#else - result = PyObject_GetItem(__pyx_d, name); - __PYX_UPDATE_DICT_CACHE(__pyx_d, result, *dict_cached_value, *dict_version) - if (likely(result)) { - return __Pyx_NewRef(result); - } - PyErr_Clear(); -#endif - return __Pyx_GetBuiltinName(name); -} - -/* DictGetItem */ -#if PY_MAJOR_VERSION >= 3 && !CYTHON_COMPILING_IN_PYPY -static PyObject *__Pyx_PyDict_GetItem(PyObject *d, PyObject* key) { - PyObject *value; - value = PyDict_GetItemWithError(d, key); - if (unlikely(!value)) { - if (!PyErr_Occurred()) { - if (unlikely(PyTuple_Check(key))) { - PyObject* args = PyTuple_Pack(1, key); - if (likely(args)) { - PyErr_SetObject(PyExc_KeyError, args); - Py_DECREF(args); - } - } else { - PyErr_SetObject(PyExc_KeyError, key); - } - } - return NULL; - } - Py_INCREF(value); - return value; -} -#endif - -/* GetItemInt */ -static PyObject *__Pyx_GetItemInt_Generic(PyObject *o, PyObject* j) { - PyObject *r; - if (!j) return NULL; - r = PyObject_GetItem(o, j); - Py_DECREF(j); - return r; -} -static CYTHON_INLINE PyObject *__Pyx_GetItemInt_List_Fast(PyObject *o, Py_ssize_t i, - CYTHON_NCP_UNUSED int wraparound, - CYTHON_NCP_UNUSED int boundscheck) { -#if CYTHON_ASSUME_SAFE_MACROS && !CYTHON_AVOID_BORROWED_REFS - Py_ssize_t wrapped_i = i; - if (wraparound & unlikely(i < 0)) { - wrapped_i += PyList_GET_SIZE(o); - } - if ((!boundscheck) || likely(__Pyx_is_valid_index(wrapped_i, PyList_GET_SIZE(o)))) { - PyObject *r = PyList_GET_ITEM(o, wrapped_i); - Py_INCREF(r); - return r; - } - return __Pyx_GetItemInt_Generic(o, PyInt_FromSsize_t(i)); -#else - return PySequence_GetItem(o, i); -#endif -} -static CYTHON_INLINE PyObject *__Pyx_GetItemInt_Tuple_Fast(PyObject *o, Py_ssize_t i, - CYTHON_NCP_UNUSED int wraparound, - CYTHON_NCP_UNUSED int boundscheck) { -#if CYTHON_ASSUME_SAFE_MACROS && !CYTHON_AVOID_BORROWED_REFS - Py_ssize_t wrapped_i = i; - if (wraparound & unlikely(i < 0)) { - wrapped_i += PyTuple_GET_SIZE(o); - } - if ((!boundscheck) || likely(__Pyx_is_valid_index(wrapped_i, PyTuple_GET_SIZE(o)))) { - PyObject *r = PyTuple_GET_ITEM(o, wrapped_i); - Py_INCREF(r); - return r; - } - return __Pyx_GetItemInt_Generic(o, PyInt_FromSsize_t(i)); -#else - return PySequence_GetItem(o, i); -#endif -} -static CYTHON_INLINE PyObject *__Pyx_GetItemInt_Fast(PyObject *o, Py_ssize_t i, int is_list, - CYTHON_NCP_UNUSED int wraparound, - CYTHON_NCP_UNUSED int boundscheck) { -#if CYTHON_ASSUME_SAFE_MACROS && !CYTHON_AVOID_BORROWED_REFS && CYTHON_USE_TYPE_SLOTS - if (is_list || PyList_CheckExact(o)) { - Py_ssize_t n = ((!wraparound) | likely(i >= 0)) ? i : i + PyList_GET_SIZE(o); - if ((!boundscheck) || (likely(__Pyx_is_valid_index(n, PyList_GET_SIZE(o))))) { - PyObject *r = PyList_GET_ITEM(o, n); - Py_INCREF(r); - return r; - } - } - else if (PyTuple_CheckExact(o)) { - Py_ssize_t n = ((!wraparound) | likely(i >= 0)) ? i : i + PyTuple_GET_SIZE(o); - if ((!boundscheck) || likely(__Pyx_is_valid_index(n, PyTuple_GET_SIZE(o)))) { - PyObject *r = PyTuple_GET_ITEM(o, n); - Py_INCREF(r); - return r; - } - } else { - PySequenceMethods *m = Py_TYPE(o)->tp_as_sequence; - if (likely(m && m->sq_item)) { - if (wraparound && unlikely(i < 0) && likely(m->sq_length)) { - Py_ssize_t l = m->sq_length(o); - if (likely(l >= 0)) { - i += l; - } else { - if (!PyErr_ExceptionMatches(PyExc_OverflowError)) - return NULL; - PyErr_Clear(); - } - } - return m->sq_item(o, i); - } - } -#else - if (is_list || PySequence_Check(o)) { - return PySequence_GetItem(o, i); - } -#endif - return __Pyx_GetItemInt_Generic(o, PyInt_FromSsize_t(i)); -} - -/* ObjectGetItem */ -#if CYTHON_USE_TYPE_SLOTS -static PyObject *__Pyx_PyObject_GetIndex(PyObject *obj, PyObject* index) { - PyObject *runerr; - Py_ssize_t key_value; - PySequenceMethods *m = Py_TYPE(obj)->tp_as_sequence; - if (unlikely(!(m && m->sq_item))) { - PyErr_Format(PyExc_TypeError, "'%.200s' object is not subscriptable", Py_TYPE(obj)->tp_name); - return NULL; - } - key_value = __Pyx_PyIndex_AsSsize_t(index); - if (likely(key_value != -1 || !(runerr = PyErr_Occurred()))) { - return __Pyx_GetItemInt_Fast(obj, key_value, 0, 1, 1); - } - if (PyErr_GivenExceptionMatches(runerr, PyExc_OverflowError)) { - PyErr_Clear(); - PyErr_Format(PyExc_IndexError, "cannot fit '%.200s' into an index-sized integer", Py_TYPE(index)->tp_name); - } - return NULL; -} -static PyObject *__Pyx_PyObject_GetItem(PyObject *obj, PyObject* key) { - PyMappingMethods *m = Py_TYPE(obj)->tp_as_mapping; - if (likely(m && m->mp_subscript)) { - return m->mp_subscript(obj, key); - } - return __Pyx_PyObject_GetIndex(obj, key); -} -#endif - -/* RaiseTooManyValuesToUnpack */ -static CYTHON_INLINE void __Pyx_RaiseTooManyValuesError(Py_ssize_t expected) { - PyErr_Format(PyExc_ValueError, - "too many values to unpack (expected %" CYTHON_FORMAT_SSIZE_T "d)", expected); -} - -/* RaiseNeedMoreValuesToUnpack */ -static CYTHON_INLINE void __Pyx_RaiseNeedMoreValuesError(Py_ssize_t index) { - PyErr_Format(PyExc_ValueError, - "need more than %" CYTHON_FORMAT_SSIZE_T "d value%.1s to unpack", - index, (index == 1) ? "" : "s"); -} - -/* IterFinish */ -static CYTHON_INLINE int __Pyx_IterFinish(void) { -#if CYTHON_FAST_THREAD_STATE - PyThreadState *tstate = __Pyx_PyThreadState_Current; - PyObject* exc_type = tstate->curexc_type; - if (unlikely(exc_type)) { - if (likely(__Pyx_PyErr_GivenExceptionMatches(exc_type, PyExc_StopIteration))) { - PyObject *exc_value, *exc_tb; - exc_value = tstate->curexc_value; - exc_tb = tstate->curexc_traceback; - tstate->curexc_type = 0; - tstate->curexc_value = 0; - tstate->curexc_traceback = 0; - Py_DECREF(exc_type); - Py_XDECREF(exc_value); - Py_XDECREF(exc_tb); - return 0; - } else { - return -1; - } - } - return 0; -#else - if (unlikely(PyErr_Occurred())) { - if (likely(PyErr_ExceptionMatches(PyExc_StopIteration))) { - PyErr_Clear(); - return 0; - } else { - return -1; - } - } - return 0; -#endif -} - -/* UnpackItemEndCheck */ -static int __Pyx_IternextUnpackEndCheck(PyObject *retval, Py_ssize_t expected) { - if (unlikely(retval)) { - Py_DECREF(retval); - __Pyx_RaiseTooManyValuesError(expected); - return -1; - } else { - return __Pyx_IterFinish(); - } - return 0; -} - -/* SliceTupleAndList */ -#if CYTHON_COMPILING_IN_CPYTHON -static CYTHON_INLINE void __Pyx_crop_slice(Py_ssize_t* _start, Py_ssize_t* _stop, Py_ssize_t* _length) { - Py_ssize_t start = *_start, stop = *_stop, length = *_length; - if (start < 0) { - start += length; - if (start < 0) - start = 0; - } - if (stop < 0) - stop += length; - else if (stop > length) - stop = length; - *_length = stop - start; - *_start = start; - *_stop = stop; -} -static CYTHON_INLINE void __Pyx_copy_object_array(PyObject** CYTHON_RESTRICT src, PyObject** CYTHON_RESTRICT dest, Py_ssize_t length) { - PyObject *v; - Py_ssize_t i; - for (i = 0; i < length; i++) { - v = dest[i] = src[i]; - Py_INCREF(v); - } -} -static CYTHON_INLINE PyObject* __Pyx_PyList_GetSlice( - PyObject* src, Py_ssize_t start, Py_ssize_t stop) { - PyObject* dest; - Py_ssize_t length = PyList_GET_SIZE(src); - __Pyx_crop_slice(&start, &stop, &length); - if (unlikely(length <= 0)) - return PyList_New(0); - dest = PyList_New(length); - if (unlikely(!dest)) - return NULL; - __Pyx_copy_object_array( - ((PyListObject*)src)->ob_item + start, - ((PyListObject*)dest)->ob_item, - length); - return dest; -} -static CYTHON_INLINE PyObject* __Pyx_PyTuple_GetSlice( - PyObject* src, Py_ssize_t start, Py_ssize_t stop) { - PyObject* dest; - Py_ssize_t length = PyTuple_GET_SIZE(src); - __Pyx_crop_slice(&start, &stop, &length); - if (unlikely(length <= 0)) - return PyTuple_New(0); - dest = PyTuple_New(length); - if (unlikely(!dest)) - return NULL; - __Pyx_copy_object_array( - ((PyTupleObject*)src)->ob_item + start, - ((PyTupleObject*)dest)->ob_item, - length); - return dest; -} -#endif - -/* PyIntCompare */ -static CYTHON_INLINE PyObject* __Pyx_PyInt_NeObjC(PyObject *op1, PyObject *op2, CYTHON_UNUSED long intval, CYTHON_UNUSED long inplace) { - if (op1 == op2) { - Py_RETURN_FALSE; - } - #if PY_MAJOR_VERSION < 3 - if (likely(PyInt_CheckExact(op1))) { - const long b = intval; - long a = PyInt_AS_LONG(op1); - if (a != b) Py_RETURN_TRUE; else Py_RETURN_FALSE; - } - #endif - #if CYTHON_USE_PYLONG_INTERNALS - if (likely(PyLong_CheckExact(op1))) { - int unequal; - unsigned long uintval; - Py_ssize_t size = Py_SIZE(op1); - const digit* digits = ((PyLongObject*)op1)->ob_digit; - if (intval == 0) { - if (size != 0) Py_RETURN_TRUE; else Py_RETURN_FALSE; - } else if (intval < 0) { - if (size >= 0) - Py_RETURN_TRUE; - intval = -intval; - size = -size; - } else { - if (size <= 0) - Py_RETURN_TRUE; - } - uintval = (unsigned long) intval; -#if PyLong_SHIFT * 4 < SIZEOF_LONG*8 - if (uintval >> (PyLong_SHIFT * 4)) { - unequal = (size != 5) || (digits[0] != (uintval & (unsigned long) PyLong_MASK)) - | (digits[1] != ((uintval >> (1 * PyLong_SHIFT)) & (unsigned long) PyLong_MASK)) | (digits[2] != ((uintval >> (2 * PyLong_SHIFT)) & (unsigned long) PyLong_MASK)) | (digits[3] != ((uintval >> (3 * PyLong_SHIFT)) & (unsigned long) PyLong_MASK)) | (digits[4] != ((uintval >> (4 * PyLong_SHIFT)) & (unsigned long) PyLong_MASK)); - } else -#endif -#if PyLong_SHIFT * 3 < SIZEOF_LONG*8 - if (uintval >> (PyLong_SHIFT * 3)) { - unequal = (size != 4) || (digits[0] != (uintval & (unsigned long) PyLong_MASK)) - | (digits[1] != ((uintval >> (1 * PyLong_SHIFT)) & (unsigned long) PyLong_MASK)) | (digits[2] != ((uintval >> (2 * PyLong_SHIFT)) & (unsigned long) PyLong_MASK)) | (digits[3] != ((uintval >> (3 * PyLong_SHIFT)) & (unsigned long) PyLong_MASK)); - } else -#endif -#if PyLong_SHIFT * 2 < SIZEOF_LONG*8 - if (uintval >> (PyLong_SHIFT * 2)) { - unequal = (size != 3) || (digits[0] != (uintval & (unsigned long) PyLong_MASK)) - | (digits[1] != ((uintval >> (1 * PyLong_SHIFT)) & (unsigned long) PyLong_MASK)) | (digits[2] != ((uintval >> (2 * PyLong_SHIFT)) & (unsigned long) PyLong_MASK)); - } else -#endif -#if PyLong_SHIFT * 1 < SIZEOF_LONG*8 - if (uintval >> (PyLong_SHIFT * 1)) { - unequal = (size != 2) || (digits[0] != (uintval & (unsigned long) PyLong_MASK)) - | (digits[1] != ((uintval >> (1 * PyLong_SHIFT)) & (unsigned long) PyLong_MASK)); - } else -#endif - unequal = (size != 1) || (((unsigned long) digits[0]) != (uintval & (unsigned long) PyLong_MASK)); - if (unequal != 0) Py_RETURN_TRUE; else Py_RETURN_FALSE; - } - #endif - if (PyFloat_CheckExact(op1)) { - const long b = intval; - double a = PyFloat_AS_DOUBLE(op1); - if ((double)a != (double)b) Py_RETURN_TRUE; else Py_RETURN_FALSE; - } - return ( - PyObject_RichCompare(op1, op2, Py_NE)); -} - -/* PyIntBinop */ -#if !CYTHON_COMPILING_IN_PYPY -static PyObject* __Pyx_PyInt_AddObjC(PyObject *op1, PyObject *op2, CYTHON_UNUSED long intval, int inplace, int zerodivision_check) { - (void)inplace; - (void)zerodivision_check; - #if PY_MAJOR_VERSION < 3 - if (likely(PyInt_CheckExact(op1))) { - const long b = intval; - long x; - long a = PyInt_AS_LONG(op1); - x = (long)((unsigned long)a + b); - if (likely((x^a) >= 0 || (x^b) >= 0)) - return PyInt_FromLong(x); - return PyLong_Type.tp_as_number->nb_add(op1, op2); - } - #endif - #if CYTHON_USE_PYLONG_INTERNALS - if (likely(PyLong_CheckExact(op1))) { - const long b = intval; - long a, x; -#ifdef HAVE_LONG_LONG - const PY_LONG_LONG llb = intval; - PY_LONG_LONG lla, llx; -#endif - const digit* digits = ((PyLongObject*)op1)->ob_digit; - const Py_ssize_t size = Py_SIZE(op1); - if (likely(__Pyx_sst_abs(size) <= 1)) { - a = likely(size) ? digits[0] : 0; - if (size == -1) a = -a; - } else { - switch (size) { - case -2: - if (8 * sizeof(long) - 1 > 2 * PyLong_SHIFT) { - a = -(long) (((((unsigned long)digits[1]) << PyLong_SHIFT) | (unsigned long)digits[0])); - break; -#ifdef HAVE_LONG_LONG - } else if (8 * sizeof(PY_LONG_LONG) - 1 > 2 * PyLong_SHIFT) { - lla = -(PY_LONG_LONG) (((((unsigned PY_LONG_LONG)digits[1]) << PyLong_SHIFT) | (unsigned PY_LONG_LONG)digits[0])); - goto long_long; -#endif - } - CYTHON_FALLTHROUGH; - case 2: - if (8 * sizeof(long) - 1 > 2 * PyLong_SHIFT) { - a = (long) (((((unsigned long)digits[1]) << PyLong_SHIFT) | (unsigned long)digits[0])); - break; -#ifdef HAVE_LONG_LONG - } else if (8 * sizeof(PY_LONG_LONG) - 1 > 2 * PyLong_SHIFT) { - lla = (PY_LONG_LONG) (((((unsigned PY_LONG_LONG)digits[1]) << PyLong_SHIFT) | (unsigned PY_LONG_LONG)digits[0])); - goto long_long; -#endif - } - CYTHON_FALLTHROUGH; - case -3: - if (8 * sizeof(long) - 1 > 3 * PyLong_SHIFT) { - a = -(long) (((((((unsigned long)digits[2]) << PyLong_SHIFT) | (unsigned long)digits[1]) << PyLong_SHIFT) | (unsigned long)digits[0])); - break; -#ifdef HAVE_LONG_LONG - } else if (8 * sizeof(PY_LONG_LONG) - 1 > 3 * PyLong_SHIFT) { - lla = -(PY_LONG_LONG) (((((((unsigned PY_LONG_LONG)digits[2]) << PyLong_SHIFT) | (unsigned PY_LONG_LONG)digits[1]) << PyLong_SHIFT) | (unsigned PY_LONG_LONG)digits[0])); - goto long_long; -#endif - } - CYTHON_FALLTHROUGH; - case 3: - if (8 * sizeof(long) - 1 > 3 * PyLong_SHIFT) { - a = (long) (((((((unsigned long)digits[2]) << PyLong_SHIFT) | (unsigned long)digits[1]) << PyLong_SHIFT) | (unsigned long)digits[0])); - break; -#ifdef HAVE_LONG_LONG - } else if (8 * sizeof(PY_LONG_LONG) - 1 > 3 * PyLong_SHIFT) { - lla = (PY_LONG_LONG) (((((((unsigned PY_LONG_LONG)digits[2]) << PyLong_SHIFT) | (unsigned PY_LONG_LONG)digits[1]) << PyLong_SHIFT) | (unsigned PY_LONG_LONG)digits[0])); - goto long_long; -#endif - } - CYTHON_FALLTHROUGH; - case -4: - if (8 * sizeof(long) - 1 > 4 * PyLong_SHIFT) { - a = -(long) (((((((((unsigned long)digits[3]) << PyLong_SHIFT) | (unsigned long)digits[2]) << PyLong_SHIFT) | (unsigned long)digits[1]) << PyLong_SHIFT) | (unsigned long)digits[0])); - break; -#ifdef HAVE_LONG_LONG - } else if (8 * sizeof(PY_LONG_LONG) - 1 > 4 * PyLong_SHIFT) { - lla = -(PY_LONG_LONG) (((((((((unsigned PY_LONG_LONG)digits[3]) << PyLong_SHIFT) | (unsigned PY_LONG_LONG)digits[2]) << PyLong_SHIFT) | (unsigned PY_LONG_LONG)digits[1]) << PyLong_SHIFT) | (unsigned PY_LONG_LONG)digits[0])); - goto long_long; -#endif - } - CYTHON_FALLTHROUGH; - case 4: - if (8 * sizeof(long) - 1 > 4 * PyLong_SHIFT) { - a = (long) (((((((((unsigned long)digits[3]) << PyLong_SHIFT) | (unsigned long)digits[2]) << PyLong_SHIFT) | (unsigned long)digits[1]) << PyLong_SHIFT) | (unsigned long)digits[0])); - break; -#ifdef HAVE_LONG_LONG - } else if (8 * sizeof(PY_LONG_LONG) - 1 > 4 * PyLong_SHIFT) { - lla = (PY_LONG_LONG) (((((((((unsigned PY_LONG_LONG)digits[3]) << PyLong_SHIFT) | (unsigned PY_LONG_LONG)digits[2]) << PyLong_SHIFT) | (unsigned PY_LONG_LONG)digits[1]) << PyLong_SHIFT) | (unsigned PY_LONG_LONG)digits[0])); - goto long_long; -#endif - } - CYTHON_FALLTHROUGH; - default: return PyLong_Type.tp_as_number->nb_add(op1, op2); - } - } - x = a + b; - return PyLong_FromLong(x); -#ifdef HAVE_LONG_LONG - long_long: - llx = lla + llb; - return PyLong_FromLongLong(llx); -#endif - - - } - #endif - if (PyFloat_CheckExact(op1)) { - const long b = intval; - double a = PyFloat_AS_DOUBLE(op1); - double result; - PyFPE_START_PROTECT("add", return NULL) - result = ((double)a) + (double)b; - PyFPE_END_PROTECT(result) - return PyFloat_FromDouble(result); - } - return (inplace ? PyNumber_InPlaceAdd : PyNumber_Add)(op1, op2); -} -#endif - -/* CIntToDigits */ -static const char DIGIT_PAIRS_10[2*10*10+1] = { - "00010203040506070809" - "10111213141516171819" - "20212223242526272829" - "30313233343536373839" - "40414243444546474849" - "50515253545556575859" - "60616263646566676869" - "70717273747576777879" - "80818283848586878889" - "90919293949596979899" -}; -static const char DIGIT_PAIRS_8[2*8*8+1] = { - "0001020304050607" - "1011121314151617" - "2021222324252627" - "3031323334353637" - "4041424344454647" - "5051525354555657" - "6061626364656667" - "7071727374757677" -}; -static const char DIGITS_HEX[2*16+1] = { - "0123456789abcdef" - "0123456789ABCDEF" -}; - -/* BuildPyUnicode */ -static PyObject* __Pyx_PyUnicode_BuildFromAscii(Py_ssize_t ulength, char* chars, int clength, - int prepend_sign, char padding_char) { - PyObject *uval; - Py_ssize_t uoffset = ulength - clength; -#if CYTHON_USE_UNICODE_INTERNALS - Py_ssize_t i; -#if CYTHON_PEP393_ENABLED - void *udata; - uval = PyUnicode_New(ulength, 127); - if (unlikely(!uval)) return NULL; - udata = PyUnicode_DATA(uval); -#else - Py_UNICODE *udata; - uval = PyUnicode_FromUnicode(NULL, ulength); - if (unlikely(!uval)) return NULL; - udata = PyUnicode_AS_UNICODE(uval); -#endif - if (uoffset > 0) { - i = 0; - if (prepend_sign) { - __Pyx_PyUnicode_WRITE(PyUnicode_1BYTE_KIND, udata, 0, '-'); - i++; - } - for (; i < uoffset; i++) { - __Pyx_PyUnicode_WRITE(PyUnicode_1BYTE_KIND, udata, i, padding_char); - } - } - for (i=0; i < clength; i++) { - __Pyx_PyUnicode_WRITE(PyUnicode_1BYTE_KIND, udata, uoffset+i, chars[i]); - } -#else - { - PyObject *sign = NULL, *padding = NULL; - uval = NULL; - if (uoffset > 0) { - prepend_sign = !!prepend_sign; - if (uoffset > prepend_sign) { - padding = PyUnicode_FromOrdinal(padding_char); - if (likely(padding) && uoffset > prepend_sign + 1) { - PyObject *tmp; - PyObject *repeat = PyInt_FromSize_t(uoffset - prepend_sign); - if (unlikely(!repeat)) goto done_or_error; - tmp = PyNumber_Multiply(padding, repeat); - Py_DECREF(repeat); - Py_DECREF(padding); - padding = tmp; - } - if (unlikely(!padding)) goto done_or_error; - } - if (prepend_sign) { - sign = PyUnicode_FromOrdinal('-'); - if (unlikely(!sign)) goto done_or_error; - } - } - uval = PyUnicode_DecodeASCII(chars, clength, NULL); - if (likely(uval) && padding) { - PyObject *tmp = PyNumber_Add(padding, uval); - Py_DECREF(uval); - uval = tmp; - } - if (likely(uval) && sign) { - PyObject *tmp = PyNumber_Add(sign, uval); - Py_DECREF(uval); - uval = tmp; - } -done_or_error: - Py_XDECREF(padding); - Py_XDECREF(sign); - } -#endif - return uval; -} - -/* CIntToPyUnicode */ -#ifdef _MSC_VER - #ifndef _MSC_STDINT_H_ - #if _MSC_VER < 1300 - typedef unsigned short uint16_t; - #else - typedef unsigned __int16 uint16_t; - #endif - #endif -#else - #include -#endif -#if defined(__GNUC__) && (__GNUC__ > 4 || (__GNUC__ == 4 && __GNUC_MINOR__ >= 6)) -#define GCC_DIAGNOSTIC -#endif -static CYTHON_INLINE PyObject* __Pyx_PyUnicode_From_unsigned_char(unsigned char value, Py_ssize_t width, char padding_char, char format_char) { - char digits[sizeof(unsigned char)*3+2]; - char *dpos, *end = digits + sizeof(unsigned char)*3+2; - const char *hex_digits = DIGITS_HEX; - Py_ssize_t length, ulength; - int prepend_sign, last_one_off; - unsigned char remaining; -#ifdef GCC_DIAGNOSTIC -#pragma GCC diagnostic push -#pragma GCC diagnostic ignored "-Wconversion" -#endif - const unsigned char neg_one = (unsigned char) -1, const_zero = (unsigned char) 0; -#ifdef GCC_DIAGNOSTIC -#pragma GCC diagnostic pop -#endif - const int is_unsigned = neg_one > const_zero; - if (format_char == 'X') { - hex_digits += 16; - format_char = 'x'; - } - remaining = value; - last_one_off = 0; - dpos = end; - do { - int digit_pos; - switch (format_char) { - case 'o': - digit_pos = abs((int)(remaining % (8*8))); - remaining = (unsigned char) (remaining / (8*8)); - dpos -= 2; - *(uint16_t*)dpos = ((const uint16_t*)DIGIT_PAIRS_8)[digit_pos]; - last_one_off = (digit_pos < 8); - break; - case 'd': - digit_pos = abs((int)(remaining % (10*10))); - remaining = (unsigned char) (remaining / (10*10)); - dpos -= 2; - *(uint16_t*)dpos = ((const uint16_t*)DIGIT_PAIRS_10)[digit_pos]; - last_one_off = (digit_pos < 10); - break; - case 'x': - *(--dpos) = hex_digits[abs((int)(remaining % 16))]; - remaining = (unsigned char) (remaining / 16); - break; - default: - assert(0); - break; - } - } while (unlikely(remaining != 0)); - if (last_one_off) { - assert(*dpos == '0'); - dpos++; - } - length = end - dpos; - ulength = length; - prepend_sign = 0; - if (!is_unsigned && value <= neg_one) { - if (padding_char == ' ' || width <= length + 1) { - *(--dpos) = '-'; - ++length; - } else { - prepend_sign = 1; - } - ++ulength; - } - if (width > ulength) { - ulength = width; - } - if (ulength == 1) { - return PyUnicode_FromOrdinal(*dpos); - } - return __Pyx_PyUnicode_BuildFromAscii(ulength, dpos, (int) length, prepend_sign, padding_char); -} - -/* JoinPyUnicode */ -static PyObject* __Pyx_PyUnicode_Join(PyObject* value_tuple, Py_ssize_t value_count, Py_ssize_t result_ulength, - CYTHON_UNUSED Py_UCS4 max_char) { -#if CYTHON_USE_UNICODE_INTERNALS && CYTHON_ASSUME_SAFE_MACROS && !CYTHON_AVOID_BORROWED_REFS - PyObject *result_uval; - int result_ukind; - Py_ssize_t i, char_pos; - void *result_udata; -#if CYTHON_PEP393_ENABLED - result_uval = PyUnicode_New(result_ulength, max_char); - if (unlikely(!result_uval)) return NULL; - result_ukind = (max_char <= 255) ? PyUnicode_1BYTE_KIND : (max_char <= 65535) ? PyUnicode_2BYTE_KIND : PyUnicode_4BYTE_KIND; - result_udata = PyUnicode_DATA(result_uval); -#else - result_uval = PyUnicode_FromUnicode(NULL, result_ulength); - if (unlikely(!result_uval)) return NULL; - result_ukind = sizeof(Py_UNICODE); - result_udata = PyUnicode_AS_UNICODE(result_uval); -#endif - char_pos = 0; - for (i=0; i < value_count; i++) { - int ukind; - Py_ssize_t ulength; - void *udata; - PyObject *uval = PyTuple_GET_ITEM(value_tuple, i); - if (unlikely(__Pyx_PyUnicode_READY(uval))) - goto bad; - ulength = __Pyx_PyUnicode_GET_LENGTH(uval); - if (unlikely(!ulength)) - continue; - if (unlikely(char_pos + ulength < 0)) - goto overflow; - ukind = __Pyx_PyUnicode_KIND(uval); - udata = __Pyx_PyUnicode_DATA(uval); - if (!CYTHON_PEP393_ENABLED || ukind == result_ukind) { - memcpy((char *)result_udata + char_pos * result_ukind, udata, (size_t) (ulength * result_ukind)); - } else { - #if CYTHON_COMPILING_IN_CPYTHON && PY_VERSION_HEX >= 0x030300F0 || defined(_PyUnicode_FastCopyCharacters) - _PyUnicode_FastCopyCharacters(result_uval, char_pos, uval, 0, ulength); - #else - Py_ssize_t j; - for (j=0; j < ulength; j++) { - Py_UCS4 uchar = __Pyx_PyUnicode_READ(ukind, udata, j); - __Pyx_PyUnicode_WRITE(result_ukind, result_udata, char_pos+j, uchar); - } - #endif - } - char_pos += ulength; - } - return result_uval; -overflow: - PyErr_SetString(PyExc_OverflowError, "join() result is too long for a Python string"); -bad: - Py_DECREF(result_uval); - return NULL; -#else - result_ulength++; - value_count++; - return PyUnicode_Join(__pyx_empty_unicode, value_tuple); -#endif -} - -/* CIntToPyUnicode */ -#ifdef _MSC_VER - #ifndef _MSC_STDINT_H_ - #if _MSC_VER < 1300 - typedef unsigned short uint16_t; - #else - typedef unsigned __int16 uint16_t; - #endif - #endif -#else - #include -#endif -#if defined(__GNUC__) && (__GNUC__ > 4 || (__GNUC__ == 4 && __GNUC_MINOR__ >= 6)) -#define GCC_DIAGNOSTIC -#endif -static CYTHON_INLINE PyObject* __Pyx_PyUnicode_From_unsigned_int(unsigned int value, Py_ssize_t width, char padding_char, char format_char) { - char digits[sizeof(unsigned int)*3+2]; - char *dpos, *end = digits + sizeof(unsigned int)*3+2; - const char *hex_digits = DIGITS_HEX; - Py_ssize_t length, ulength; - int prepend_sign, last_one_off; - unsigned int remaining; -#ifdef GCC_DIAGNOSTIC -#pragma GCC diagnostic push -#pragma GCC diagnostic ignored "-Wconversion" -#endif - const unsigned int neg_one = (unsigned int) -1, const_zero = (unsigned int) 0; -#ifdef GCC_DIAGNOSTIC -#pragma GCC diagnostic pop -#endif - const int is_unsigned = neg_one > const_zero; - if (format_char == 'X') { - hex_digits += 16; - format_char = 'x'; - } - remaining = value; - last_one_off = 0; - dpos = end; - do { - int digit_pos; - switch (format_char) { - case 'o': - digit_pos = abs((int)(remaining % (8*8))); - remaining = (unsigned int) (remaining / (8*8)); - dpos -= 2; - *(uint16_t*)dpos = ((const uint16_t*)DIGIT_PAIRS_8)[digit_pos]; - last_one_off = (digit_pos < 8); - break; - case 'd': - digit_pos = abs((int)(remaining % (10*10))); - remaining = (unsigned int) (remaining / (10*10)); - dpos -= 2; - *(uint16_t*)dpos = ((const uint16_t*)DIGIT_PAIRS_10)[digit_pos]; - last_one_off = (digit_pos < 10); - break; - case 'x': - *(--dpos) = hex_digits[abs((int)(remaining % 16))]; - remaining = (unsigned int) (remaining / 16); - break; - default: - assert(0); - break; - } - } while (unlikely(remaining != 0)); - if (last_one_off) { - assert(*dpos == '0'); - dpos++; - } - length = end - dpos; - ulength = length; - prepend_sign = 0; - if (!is_unsigned && value <= neg_one) { - if (padding_char == ' ' || width <= length + 1) { - *(--dpos) = '-'; - ++length; - } else { - prepend_sign = 1; - } - ++ulength; - } - if (width > ulength) { - ulength = width; - } - if (ulength == 1) { - return PyUnicode_FromOrdinal(*dpos); - } - return __Pyx_PyUnicode_BuildFromAscii(ulength, dpos, (int) length, prepend_sign, padding_char); -} - -/* PyObjectCallNoArg */ -#if CYTHON_COMPILING_IN_CPYTHON -static CYTHON_INLINE PyObject* __Pyx_PyObject_CallNoArg(PyObject *func) { -#if CYTHON_FAST_PYCALL - if (PyFunction_Check(func)) { - return __Pyx_PyFunction_FastCall(func, NULL, 0); - } -#endif -#ifdef __Pyx_CyFunction_USED - if (likely(PyCFunction_Check(func) || __Pyx_CyFunction_Check(func))) -#else - if (likely(PyCFunction_Check(func))) -#endif - { - if (likely(PyCFunction_GET_FLAGS(func) & METH_NOARGS)) { - return __Pyx_PyObject_CallMethO(func, NULL); - } - } - return __Pyx_PyObject_Call(func, __pyx_empty_tuple, NULL); -} -#endif - -/* PyObjectFormatAndDecref */ -static CYTHON_INLINE PyObject* __Pyx_PyObject_FormatSimpleAndDecref(PyObject* s, PyObject* f) { - if (unlikely(!s)) return NULL; - if (likely(PyUnicode_CheckExact(s))) return s; - #if PY_MAJOR_VERSION < 3 - if (likely(PyString_CheckExact(s))) { - PyObject *result = PyUnicode_FromEncodedObject(s, NULL, "strict"); - Py_DECREF(s); - return result; - } - #endif - return __Pyx_PyObject_FormatAndDecref(s, f); -} -static CYTHON_INLINE PyObject* __Pyx_PyObject_FormatAndDecref(PyObject* s, PyObject* f) { - PyObject *result = PyObject_Format(s, f); - Py_DECREF(s); - return result; -} - -/* PyErrExceptionMatches */ -#if CYTHON_FAST_THREAD_STATE -static int __Pyx_PyErr_ExceptionMatchesTuple(PyObject *exc_type, PyObject *tuple) { - Py_ssize_t i, n; - n = PyTuple_GET_SIZE(tuple); -#if PY_MAJOR_VERSION >= 3 - for (i=0; icurexc_type; - if (exc_type == err) return 1; - if (unlikely(!exc_type)) return 0; - if (unlikely(PyTuple_Check(err))) - return __Pyx_PyErr_ExceptionMatchesTuple(exc_type, err); - return __Pyx_PyErr_GivenExceptionMatches(exc_type, err); -} -#endif - -/* PyErrFetchRestore */ -#if CYTHON_FAST_THREAD_STATE -static CYTHON_INLINE void __Pyx_ErrRestoreInState(PyThreadState *tstate, PyObject *type, PyObject *value, PyObject *tb) { - PyObject *tmp_type, *tmp_value, *tmp_tb; - tmp_type = tstate->curexc_type; - tmp_value = tstate->curexc_value; - tmp_tb = tstate->curexc_traceback; - tstate->curexc_type = type; - tstate->curexc_value = value; - tstate->curexc_traceback = tb; - Py_XDECREF(tmp_type); - Py_XDECREF(tmp_value); - Py_XDECREF(tmp_tb); -} -static CYTHON_INLINE void __Pyx_ErrFetchInState(PyThreadState *tstate, PyObject **type, PyObject **value, PyObject **tb) { - *type = tstate->curexc_type; - *value = tstate->curexc_value; - *tb = tstate->curexc_traceback; - tstate->curexc_type = 0; - tstate->curexc_value = 0; - tstate->curexc_traceback = 0; -} -#endif - -/* GetAttr */ -static CYTHON_INLINE PyObject *__Pyx_GetAttr(PyObject *o, PyObject *n) { -#if CYTHON_USE_TYPE_SLOTS -#if PY_MAJOR_VERSION >= 3 - if (likely(PyUnicode_Check(n))) -#else - if (likely(PyString_Check(n))) -#endif - return __Pyx_PyObject_GetAttrStr(o, n); -#endif - return PyObject_GetAttr(o, n); -} - -/* GetAttr3 */ -static PyObject *__Pyx_GetAttr3Default(PyObject *d) { - __Pyx_PyThreadState_declare - __Pyx_PyThreadState_assign - if (unlikely(!__Pyx_PyErr_ExceptionMatches(PyExc_AttributeError))) - return NULL; - __Pyx_PyErr_Clear(); - Py_INCREF(d); - return d; -} -static CYTHON_INLINE PyObject *__Pyx_GetAttr3(PyObject *o, PyObject *n, PyObject *d) { - PyObject *r = __Pyx_GetAttr(o, n); - return (likely(r)) ? r : __Pyx_GetAttr3Default(d); -} - -/* Import */ -static PyObject *__Pyx_Import(PyObject *name, PyObject *from_list, int level) { - PyObject *empty_list = 0; - PyObject *module = 0; - PyObject *global_dict = 0; - PyObject *empty_dict = 0; - PyObject *list; - #if PY_MAJOR_VERSION < 3 - PyObject *py_import; - py_import = __Pyx_PyObject_GetAttrStr(__pyx_b, __pyx_n_s_import); - if (!py_import) - goto bad; - #endif - if (from_list) - list = from_list; - else { - empty_list = PyList_New(0); - if (!empty_list) - goto bad; - list = empty_list; - } - global_dict = PyModule_GetDict(__pyx_m); - if (!global_dict) - goto bad; - empty_dict = PyDict_New(); - if (!empty_dict) - goto bad; - { - #if PY_MAJOR_VERSION >= 3 - if (level == -1) { - if (strchr(__Pyx_MODULE_NAME, '.')) { - module = PyImport_ImportModuleLevelObject( - name, global_dict, empty_dict, list, 1); - if (!module) { - if (!PyErr_ExceptionMatches(PyExc_ImportError)) - goto bad; - PyErr_Clear(); - } - } - level = 0; - } - #endif - if (!module) { - #if PY_MAJOR_VERSION < 3 - PyObject *py_level = PyInt_FromLong(level); - if (!py_level) - goto bad; - module = PyObject_CallFunctionObjArgs(py_import, - name, global_dict, empty_dict, list, py_level, (PyObject *)NULL); - Py_DECREF(py_level); - #else - module = PyImport_ImportModuleLevelObject( - name, global_dict, empty_dict, list, level); - #endif - } - } -bad: - #if PY_MAJOR_VERSION < 3 - Py_XDECREF(py_import); - #endif - Py_XDECREF(empty_list); - Py_XDECREF(empty_dict); - return module; -} - -/* ImportFrom */ -static PyObject* __Pyx_ImportFrom(PyObject* module, PyObject* name) { - PyObject* value = __Pyx_PyObject_GetAttrStr(module, name); - if (unlikely(!value) && PyErr_ExceptionMatches(PyExc_AttributeError)) { - PyErr_Format(PyExc_ImportError, - #if PY_MAJOR_VERSION < 3 - "cannot import name %.230s", PyString_AS_STRING(name)); - #else - "cannot import name %S", name); - #endif - } - return value; -} - -/* RaiseException */ -#if PY_MAJOR_VERSION < 3 -static void __Pyx_Raise(PyObject *type, PyObject *value, PyObject *tb, - CYTHON_UNUSED PyObject *cause) { - __Pyx_PyThreadState_declare - Py_XINCREF(type); - if (!value || value == Py_None) - value = NULL; - else - Py_INCREF(value); - if (!tb || tb == Py_None) - tb = NULL; - else { - Py_INCREF(tb); - if (!PyTraceBack_Check(tb)) { - PyErr_SetString(PyExc_TypeError, - "raise: arg 3 must be a traceback or None"); - goto raise_error; - } - } - if (PyType_Check(type)) { -#if CYTHON_COMPILING_IN_PYPY - if (!value) { - Py_INCREF(Py_None); - value = Py_None; - } -#endif - PyErr_NormalizeException(&type, &value, &tb); - } else { - if (value) { - PyErr_SetString(PyExc_TypeError, - "instance exception may not have a separate value"); - goto raise_error; - } - value = type; - type = (PyObject*) Py_TYPE(type); - Py_INCREF(type); - if (!PyType_IsSubtype((PyTypeObject *)type, (PyTypeObject *)PyExc_BaseException)) { - PyErr_SetString(PyExc_TypeError, - "raise: exception class must be a subclass of BaseException"); - goto raise_error; - } - } - __Pyx_PyThreadState_assign - __Pyx_ErrRestore(type, value, tb); - return; -raise_error: - Py_XDECREF(value); - Py_XDECREF(type); - Py_XDECREF(tb); - return; -} -#else -static void __Pyx_Raise(PyObject *type, PyObject *value, PyObject *tb, PyObject *cause) { - PyObject* owned_instance = NULL; - if (tb == Py_None) { - tb = 0; - } else if (tb && !PyTraceBack_Check(tb)) { - PyErr_SetString(PyExc_TypeError, - "raise: arg 3 must be a traceback or None"); - goto bad; - } - if (value == Py_None) - value = 0; - if (PyExceptionInstance_Check(type)) { - if (value) { - PyErr_SetString(PyExc_TypeError, - "instance exception may not have a separate value"); - goto bad; - } - value = type; - type = (PyObject*) Py_TYPE(value); - } else if (PyExceptionClass_Check(type)) { - PyObject *instance_class = NULL; - if (value && PyExceptionInstance_Check(value)) { - instance_class = (PyObject*) Py_TYPE(value); - if (instance_class != type) { - int is_subclass = PyObject_IsSubclass(instance_class, type); - if (!is_subclass) { - instance_class = NULL; - } else if (unlikely(is_subclass == -1)) { - goto bad; - } else { - type = instance_class; - } - } - } - if (!instance_class) { - PyObject *args; - if (!value) - args = PyTuple_New(0); - else if (PyTuple_Check(value)) { - Py_INCREF(value); - args = value; - } else - args = PyTuple_Pack(1, value); - if (!args) - goto bad; - owned_instance = PyObject_Call(type, args, NULL); - Py_DECREF(args); - if (!owned_instance) - goto bad; - value = owned_instance; - if (!PyExceptionInstance_Check(value)) { - PyErr_Format(PyExc_TypeError, - "calling %R should have returned an instance of " - "BaseException, not %R", - type, Py_TYPE(value)); - goto bad; - } - } - } else { - PyErr_SetString(PyExc_TypeError, - "raise: exception class must be a subclass of BaseException"); - goto bad; - } - if (cause) { - PyObject *fixed_cause; - if (cause == Py_None) { - fixed_cause = NULL; - } else if (PyExceptionClass_Check(cause)) { - fixed_cause = PyObject_CallObject(cause, NULL); - if (fixed_cause == NULL) - goto bad; - } else if (PyExceptionInstance_Check(cause)) { - fixed_cause = cause; - Py_INCREF(fixed_cause); - } else { - PyErr_SetString(PyExc_TypeError, - "exception causes must derive from " - "BaseException"); - goto bad; - } - PyException_SetCause(value, fixed_cause); - } - PyErr_SetObject(type, value); - if (tb) { -#if CYTHON_COMPILING_IN_PYPY - PyObject *tmp_type, *tmp_value, *tmp_tb; - PyErr_Fetch(&tmp_type, &tmp_value, &tmp_tb); - Py_INCREF(tb); - PyErr_Restore(tmp_type, tmp_value, tb); - Py_XDECREF(tmp_tb); -#else - PyThreadState *tstate = __Pyx_PyThreadState_Current; - PyObject* tmp_tb = tstate->curexc_traceback; - if (tb != tmp_tb) { - Py_INCREF(tb); - tstate->curexc_traceback = tb; - Py_XDECREF(tmp_tb); - } -#endif - } -bad: - Py_XDECREF(owned_instance); - return; -} -#endif - -/* HasAttr */ -static CYTHON_INLINE int __Pyx_HasAttr(PyObject *o, PyObject *n) { - PyObject *r; - if (unlikely(!__Pyx_PyBaseString_Check(n))) { - PyErr_SetString(PyExc_TypeError, - "hasattr(): attribute name must be string"); - return -1; - } - r = __Pyx_GetAttr(o, n); - if (unlikely(!r)) { - PyErr_Clear(); - return 0; - } else { - Py_DECREF(r); - return 1; - } -} - -/* PyObject_GenericGetAttrNoDict */ -#if CYTHON_USE_TYPE_SLOTS && CYTHON_USE_PYTYPE_LOOKUP && PY_VERSION_HEX < 0x03070000 -static PyObject *__Pyx_RaiseGenericGetAttributeError(PyTypeObject *tp, PyObject *attr_name) { - PyErr_Format(PyExc_AttributeError, -#if PY_MAJOR_VERSION >= 3 - "'%.50s' object has no attribute '%U'", - tp->tp_name, attr_name); -#else - "'%.50s' object has no attribute '%.400s'", - tp->tp_name, PyString_AS_STRING(attr_name)); -#endif - return NULL; -} -static CYTHON_INLINE PyObject* __Pyx_PyObject_GenericGetAttrNoDict(PyObject* obj, PyObject* attr_name) { - PyObject *descr; - PyTypeObject *tp = Py_TYPE(obj); - if (unlikely(!PyString_Check(attr_name))) { - return PyObject_GenericGetAttr(obj, attr_name); - } - assert(!tp->tp_dictoffset); - descr = _PyType_Lookup(tp, attr_name); - if (unlikely(!descr)) { - return __Pyx_RaiseGenericGetAttributeError(tp, attr_name); - } - Py_INCREF(descr); - #if PY_MAJOR_VERSION < 3 - if (likely(PyType_HasFeature(Py_TYPE(descr), Py_TPFLAGS_HAVE_CLASS))) - #endif - { - descrgetfunc f = Py_TYPE(descr)->tp_descr_get; - if (unlikely(f)) { - PyObject *res = f(descr, obj, (PyObject *)tp); - Py_DECREF(descr); - return res; - } - } - return descr; -} -#endif - -/* PyObject_GenericGetAttr */ -#if CYTHON_USE_TYPE_SLOTS && CYTHON_USE_PYTYPE_LOOKUP && PY_VERSION_HEX < 0x03070000 -static PyObject* __Pyx_PyObject_GenericGetAttr(PyObject* obj, PyObject* attr_name) { - if (unlikely(Py_TYPE(obj)->tp_dictoffset)) { - return PyObject_GenericGetAttr(obj, attr_name); - } - return __Pyx_PyObject_GenericGetAttrNoDict(obj, attr_name); -} -#endif - -/* SetupReduce */ -static int __Pyx_setup_reduce_is_named(PyObject* meth, PyObject* name) { - int ret; - PyObject *name_attr; - name_attr = __Pyx_PyObject_GetAttrStr(meth, __pyx_n_s_name); - if (likely(name_attr)) { - ret = PyObject_RichCompareBool(name_attr, name, Py_EQ); - } else { - ret = -1; - } - if (unlikely(ret < 0)) { - PyErr_Clear(); - ret = 0; - } - Py_XDECREF(name_attr); - return ret; -} -static int __Pyx_setup_reduce(PyObject* type_obj) { - int ret = 0; - PyObject *object_reduce = NULL; - PyObject *object_reduce_ex = NULL; - PyObject *reduce = NULL; - PyObject *reduce_ex = NULL; - PyObject *reduce_cython = NULL; - PyObject *setstate = NULL; - PyObject *setstate_cython = NULL; -#if CYTHON_USE_PYTYPE_LOOKUP - if (_PyType_Lookup((PyTypeObject*)type_obj, __pyx_n_s_getstate)) goto GOOD; -#else - if (PyObject_HasAttr(type_obj, __pyx_n_s_getstate)) goto GOOD; -#endif -#if CYTHON_USE_PYTYPE_LOOKUP - object_reduce_ex = _PyType_Lookup(&PyBaseObject_Type, __pyx_n_s_reduce_ex); if (!object_reduce_ex) goto BAD; -#else - object_reduce_ex = __Pyx_PyObject_GetAttrStr((PyObject*)&PyBaseObject_Type, __pyx_n_s_reduce_ex); if (!object_reduce_ex) goto BAD; -#endif - reduce_ex = __Pyx_PyObject_GetAttrStr(type_obj, __pyx_n_s_reduce_ex); if (unlikely(!reduce_ex)) goto BAD; - if (reduce_ex == object_reduce_ex) { -#if CYTHON_USE_PYTYPE_LOOKUP - object_reduce = _PyType_Lookup(&PyBaseObject_Type, __pyx_n_s_reduce); if (!object_reduce) goto BAD; -#else - object_reduce = __Pyx_PyObject_GetAttrStr((PyObject*)&PyBaseObject_Type, __pyx_n_s_reduce); if (!object_reduce) goto BAD; -#endif - reduce = __Pyx_PyObject_GetAttrStr(type_obj, __pyx_n_s_reduce); if (unlikely(!reduce)) goto BAD; - if (reduce == object_reduce || __Pyx_setup_reduce_is_named(reduce, __pyx_n_s_reduce_cython)) { - reduce_cython = __Pyx_PyObject_GetAttrStr(type_obj, __pyx_n_s_reduce_cython); if (unlikely(!reduce_cython)) goto BAD; - ret = PyDict_SetItem(((PyTypeObject*)type_obj)->tp_dict, __pyx_n_s_reduce, reduce_cython); if (unlikely(ret < 0)) goto BAD; - ret = PyDict_DelItem(((PyTypeObject*)type_obj)->tp_dict, __pyx_n_s_reduce_cython); if (unlikely(ret < 0)) goto BAD; - setstate = __Pyx_PyObject_GetAttrStr(type_obj, __pyx_n_s_setstate); - if (!setstate) PyErr_Clear(); - if (!setstate || __Pyx_setup_reduce_is_named(setstate, __pyx_n_s_setstate_cython)) { - setstate_cython = __Pyx_PyObject_GetAttrStr(type_obj, __pyx_n_s_setstate_cython); if (unlikely(!setstate_cython)) goto BAD; - ret = PyDict_SetItem(((PyTypeObject*)type_obj)->tp_dict, __pyx_n_s_setstate, setstate_cython); if (unlikely(ret < 0)) goto BAD; - ret = PyDict_DelItem(((PyTypeObject*)type_obj)->tp_dict, __pyx_n_s_setstate_cython); if (unlikely(ret < 0)) goto BAD; - } - PyType_Modified((PyTypeObject*)type_obj); - } - } - goto GOOD; -BAD: - if (!PyErr_Occurred()) - PyErr_Format(PyExc_RuntimeError, "Unable to initialize pickling for %s", ((PyTypeObject*)type_obj)->tp_name); - ret = -1; -GOOD: -#if !CYTHON_USE_PYTYPE_LOOKUP - Py_XDECREF(object_reduce); - Py_XDECREF(object_reduce_ex); -#endif - Py_XDECREF(reduce); - Py_XDECREF(reduce_ex); - Py_XDECREF(reduce_cython); - Py_XDECREF(setstate); - Py_XDECREF(setstate_cython); - return ret; -} - -/* PyObjectGetMethod */ -static int __Pyx_PyObject_GetMethod(PyObject *obj, PyObject *name, PyObject **method) { - PyObject *attr; -#if CYTHON_UNPACK_METHODS && CYTHON_COMPILING_IN_CPYTHON && CYTHON_USE_PYTYPE_LOOKUP - PyTypeObject *tp = Py_TYPE(obj); - PyObject *descr; - descrgetfunc f = NULL; - PyObject **dictptr, *dict; - int meth_found = 0; - assert (*method == NULL); - if (unlikely(tp->tp_getattro != PyObject_GenericGetAttr)) { - attr = __Pyx_PyObject_GetAttrStr(obj, name); - goto try_unpack; - } - if (unlikely(tp->tp_dict == NULL) && unlikely(PyType_Ready(tp) < 0)) { - return 0; - } - descr = _PyType_Lookup(tp, name); - if (likely(descr != NULL)) { - Py_INCREF(descr); -#if PY_MAJOR_VERSION >= 3 - #ifdef __Pyx_CyFunction_USED - if (likely(PyFunction_Check(descr) || (Py_TYPE(descr) == &PyMethodDescr_Type) || __Pyx_CyFunction_Check(descr))) - #else - if (likely(PyFunction_Check(descr) || (Py_TYPE(descr) == &PyMethodDescr_Type))) - #endif -#else - #ifdef __Pyx_CyFunction_USED - if (likely(PyFunction_Check(descr) || __Pyx_CyFunction_Check(descr))) - #else - if (likely(PyFunction_Check(descr))) - #endif -#endif - { - meth_found = 1; - } else { - f = Py_TYPE(descr)->tp_descr_get; - if (f != NULL && PyDescr_IsData(descr)) { - attr = f(descr, obj, (PyObject *)Py_TYPE(obj)); - Py_DECREF(descr); - goto try_unpack; - } - } - } - dictptr = _PyObject_GetDictPtr(obj); - if (dictptr != NULL && (dict = *dictptr) != NULL) { - Py_INCREF(dict); - attr = __Pyx_PyDict_GetItemStr(dict, name); - if (attr != NULL) { - Py_INCREF(attr); - Py_DECREF(dict); - Py_XDECREF(descr); - goto try_unpack; - } - Py_DECREF(dict); - } - if (meth_found) { - *method = descr; - return 1; - } - if (f != NULL) { - attr = f(descr, obj, (PyObject *)Py_TYPE(obj)); - Py_DECREF(descr); - goto try_unpack; - } - if (descr != NULL) { - *method = descr; - return 0; - } - PyErr_Format(PyExc_AttributeError, -#if PY_MAJOR_VERSION >= 3 - "'%.50s' object has no attribute '%U'", - tp->tp_name, name); -#else - "'%.50s' object has no attribute '%.400s'", - tp->tp_name, PyString_AS_STRING(name)); -#endif - return 0; -#else - attr = __Pyx_PyObject_GetAttrStr(obj, name); - goto try_unpack; -#endif -try_unpack: -#if CYTHON_UNPACK_METHODS - if (likely(attr) && PyMethod_Check(attr) && likely(PyMethod_GET_SELF(attr) == obj)) { - PyObject *function = PyMethod_GET_FUNCTION(attr); - Py_INCREF(function); - Py_DECREF(attr); - *method = function; - return 1; - } -#endif - *method = attr; - return 0; -} - -/* PyObjectCallMethod1 */ -static PyObject* __Pyx__PyObject_CallMethod1(PyObject* method, PyObject* arg) { - PyObject *result = __Pyx_PyObject_CallOneArg(method, arg); - Py_DECREF(method); - return result; -} -static PyObject* __Pyx_PyObject_CallMethod1(PyObject* obj, PyObject* method_name, PyObject* arg) { - PyObject *method = NULL, *result; - int is_method = __Pyx_PyObject_GetMethod(obj, method_name, &method); - if (likely(is_method)) { - result = __Pyx_PyObject_Call2Args(method, obj, arg); - Py_DECREF(method); - return result; - } - if (unlikely(!method)) return NULL; - return __Pyx__PyObject_CallMethod1(method, arg); -} - -/* append */ -static CYTHON_INLINE int __Pyx_PyObject_Append(PyObject* L, PyObject* x) { - if (likely(PyList_CheckExact(L))) { - if (unlikely(__Pyx_PyList_Append(L, x) < 0)) return -1; - } else { - PyObject* retval = __Pyx_PyObject_CallMethod1(L, __pyx_n_s_append, x); - if (unlikely(!retval)) - return -1; - Py_DECREF(retval); - } - return 0; -} - -/* GetNameInClass */ -static PyObject *__Pyx_GetGlobalNameAfterAttributeLookup(PyObject *name) { - PyObject *result; - __Pyx_PyThreadState_declare - __Pyx_PyThreadState_assign - if (unlikely(!__Pyx_PyErr_ExceptionMatches(PyExc_AttributeError))) - return NULL; - __Pyx_PyErr_Clear(); - __Pyx_GetModuleGlobalNameUncached(result, name); - return result; -} -static PyObject *__Pyx__GetNameInClass(PyObject *nmspace, PyObject *name) { - PyObject *result; - result = __Pyx_PyObject_GetAttrStr(nmspace, name); - if (!result) { - result = __Pyx_GetGlobalNameAfterAttributeLookup(name); - } - return result; -} - -/* CLineInTraceback */ -#ifndef CYTHON_CLINE_IN_TRACEBACK -static int __Pyx_CLineForTraceback(PyThreadState *tstate, int c_line) { - PyObject *use_cline; - PyObject *ptype, *pvalue, *ptraceback; -#if CYTHON_COMPILING_IN_CPYTHON - PyObject **cython_runtime_dict; -#endif - if (unlikely(!__pyx_cython_runtime)) { - return c_line; - } - __Pyx_ErrFetchInState(tstate, &ptype, &pvalue, &ptraceback); -#if CYTHON_COMPILING_IN_CPYTHON - cython_runtime_dict = _PyObject_GetDictPtr(__pyx_cython_runtime); - if (likely(cython_runtime_dict)) { - __PYX_PY_DICT_LOOKUP_IF_MODIFIED( - use_cline, *cython_runtime_dict, - __Pyx_PyDict_GetItemStr(*cython_runtime_dict, __pyx_n_s_cline_in_traceback)) - } else -#endif - { - PyObject *use_cline_obj = __Pyx_PyObject_GetAttrStr(__pyx_cython_runtime, __pyx_n_s_cline_in_traceback); - if (use_cline_obj) { - use_cline = PyObject_Not(use_cline_obj) ? Py_False : Py_True; - Py_DECREF(use_cline_obj); - } else { - PyErr_Clear(); - use_cline = NULL; - } - } - if (!use_cline) { - c_line = 0; - PyObject_SetAttr(__pyx_cython_runtime, __pyx_n_s_cline_in_traceback, Py_False); - } - else if (use_cline == Py_False || (use_cline != Py_True && PyObject_Not(use_cline) != 0)) { - c_line = 0; - } - __Pyx_ErrRestoreInState(tstate, ptype, pvalue, ptraceback); - return c_line; -} -#endif - -/* CodeObjectCache */ -static int __pyx_bisect_code_objects(__Pyx_CodeObjectCacheEntry* entries, int count, int code_line) { - int start = 0, mid = 0, end = count - 1; - if (end >= 0 && code_line > entries[end].code_line) { - return count; - } - while (start < end) { - mid = start + (end - start) / 2; - if (code_line < entries[mid].code_line) { - end = mid; - } else if (code_line > entries[mid].code_line) { - start = mid + 1; - } else { - return mid; - } - } - if (code_line <= entries[mid].code_line) { - return mid; - } else { - return mid + 1; - } -} -static PyCodeObject *__pyx_find_code_object(int code_line) { - PyCodeObject* code_object; - int pos; - if (unlikely(!code_line) || unlikely(!__pyx_code_cache.entries)) { - return NULL; - } - pos = __pyx_bisect_code_objects(__pyx_code_cache.entries, __pyx_code_cache.count, code_line); - if (unlikely(pos >= __pyx_code_cache.count) || unlikely(__pyx_code_cache.entries[pos].code_line != code_line)) { - return NULL; - } - code_object = __pyx_code_cache.entries[pos].code_object; - Py_INCREF(code_object); - return code_object; -} -static void __pyx_insert_code_object(int code_line, PyCodeObject* code_object) { - int pos, i; - __Pyx_CodeObjectCacheEntry* entries = __pyx_code_cache.entries; - if (unlikely(!code_line)) { - return; - } - if (unlikely(!entries)) { - entries = (__Pyx_CodeObjectCacheEntry*)PyMem_Malloc(64*sizeof(__Pyx_CodeObjectCacheEntry)); - if (likely(entries)) { - __pyx_code_cache.entries = entries; - __pyx_code_cache.max_count = 64; - __pyx_code_cache.count = 1; - entries[0].code_line = code_line; - entries[0].code_object = code_object; - Py_INCREF(code_object); - } - return; - } - pos = __pyx_bisect_code_objects(__pyx_code_cache.entries, __pyx_code_cache.count, code_line); - if ((pos < __pyx_code_cache.count) && unlikely(__pyx_code_cache.entries[pos].code_line == code_line)) { - PyCodeObject* tmp = entries[pos].code_object; - entries[pos].code_object = code_object; - Py_DECREF(tmp); - return; - } - if (__pyx_code_cache.count == __pyx_code_cache.max_count) { - int new_max = __pyx_code_cache.max_count + 64; - entries = (__Pyx_CodeObjectCacheEntry*)PyMem_Realloc( - __pyx_code_cache.entries, (size_t)new_max*sizeof(__Pyx_CodeObjectCacheEntry)); - if (unlikely(!entries)) { - return; - } - __pyx_code_cache.entries = entries; - __pyx_code_cache.max_count = new_max; - } - for (i=__pyx_code_cache.count; i>pos; i--) { - entries[i] = entries[i-1]; - } - entries[pos].code_line = code_line; - entries[pos].code_object = code_object; - __pyx_code_cache.count++; - Py_INCREF(code_object); -} - -/* AddTraceback */ -#include "compile.h" -#include "frameobject.h" -#include "traceback.h" -static PyCodeObject* __Pyx_CreateCodeObjectForTraceback( - const char *funcname, int c_line, - int py_line, const char *filename) { - PyCodeObject *py_code = 0; - PyObject *py_srcfile = 0; - PyObject *py_funcname = 0; - #if PY_MAJOR_VERSION < 3 - py_srcfile = PyString_FromString(filename); - #else - py_srcfile = PyUnicode_FromString(filename); - #endif - if (!py_srcfile) goto bad; - if (c_line) { - #if PY_MAJOR_VERSION < 3 - py_funcname = PyString_FromFormat( "%s (%s:%d)", funcname, __pyx_cfilenm, c_line); - #else - py_funcname = PyUnicode_FromFormat( "%s (%s:%d)", funcname, __pyx_cfilenm, c_line); - #endif - } - else { - #if PY_MAJOR_VERSION < 3 - py_funcname = PyString_FromString(funcname); - #else - py_funcname = PyUnicode_FromString(funcname); - #endif - } - if (!py_funcname) goto bad; - py_code = __Pyx_PyCode_New( - 0, - 0, - 0, - 0, - 0, - __pyx_empty_bytes, /*PyObject *code,*/ - __pyx_empty_tuple, /*PyObject *consts,*/ - __pyx_empty_tuple, /*PyObject *names,*/ - __pyx_empty_tuple, /*PyObject *varnames,*/ - __pyx_empty_tuple, /*PyObject *freevars,*/ - __pyx_empty_tuple, /*PyObject *cellvars,*/ - py_srcfile, /*PyObject *filename,*/ - py_funcname, /*PyObject *name,*/ - py_line, - __pyx_empty_bytes /*PyObject *lnotab*/ - ); - Py_DECREF(py_srcfile); - Py_DECREF(py_funcname); - return py_code; -bad: - Py_XDECREF(py_srcfile); - Py_XDECREF(py_funcname); - return NULL; -} -static void __Pyx_AddTraceback(const char *funcname, int c_line, - int py_line, const char *filename) { - PyCodeObject *py_code = 0; - PyFrameObject *py_frame = 0; - PyThreadState *tstate = __Pyx_PyThreadState_Current; - if (c_line) { - c_line = __Pyx_CLineForTraceback(tstate, c_line); - } - py_code = __pyx_find_code_object(c_line ? -c_line : py_line); - if (!py_code) { - py_code = __Pyx_CreateCodeObjectForTraceback( - funcname, c_line, py_line, filename); - if (!py_code) goto bad; - __pyx_insert_code_object(c_line ? -c_line : py_line, py_code); - } - py_frame = PyFrame_New( - tstate, /*PyThreadState *tstate,*/ - py_code, /*PyCodeObject *code,*/ - __pyx_d, /*PyObject *globals,*/ - 0 /*PyObject *locals*/ - ); - if (!py_frame) goto bad; - __Pyx_PyFrame_SetLineNumber(py_frame, py_line); - PyTraceBack_Here(py_frame); -bad: - Py_XDECREF(py_code); - Py_XDECREF(py_frame); -} - -/* CIntFromPyVerify */ -#define __PYX_VERIFY_RETURN_INT(target_type, func_type, func_value)\ - __PYX__VERIFY_RETURN_INT(target_type, func_type, func_value, 0) -#define __PYX_VERIFY_RETURN_INT_EXC(target_type, func_type, func_value)\ - __PYX__VERIFY_RETURN_INT(target_type, func_type, func_value, 1) -#define __PYX__VERIFY_RETURN_INT(target_type, func_type, func_value, exc)\ - {\ - func_type value = func_value;\ - if (sizeof(target_type) < sizeof(func_type)) {\ - if (unlikely(value != (func_type) (target_type) value)) {\ - func_type zero = 0;\ - if (exc && unlikely(value == (func_type)-1 && PyErr_Occurred()))\ - return (target_type) -1;\ - if (is_unsigned && unlikely(value < zero))\ - goto raise_neg_overflow;\ - else\ - goto raise_overflow;\ - }\ - }\ - return (target_type) value;\ - } - -/* CIntToPy */ -static CYTHON_INLINE PyObject* __Pyx_PyInt_From_long(long value) { - const long neg_one = (long) ((long) 0 - (long) 1), const_zero = (long) 0; - const int is_unsigned = neg_one > const_zero; - if (is_unsigned) { - if (sizeof(long) < sizeof(long)) { - return PyInt_FromLong((long) value); - } else if (sizeof(long) <= sizeof(unsigned long)) { - return PyLong_FromUnsignedLong((unsigned long) value); -#ifdef HAVE_LONG_LONG - } else if (sizeof(long) <= sizeof(unsigned PY_LONG_LONG)) { - return PyLong_FromUnsignedLongLong((unsigned PY_LONG_LONG) value); -#endif - } - } else { - if (sizeof(long) <= sizeof(long)) { - return PyInt_FromLong((long) value); -#ifdef HAVE_LONG_LONG - } else if (sizeof(long) <= sizeof(PY_LONG_LONG)) { - return PyLong_FromLongLong((PY_LONG_LONG) value); -#endif - } - } - { - int one = 1; int little = (int)*(unsigned char *)&one; - unsigned char *bytes = (unsigned char *)&value; - return _PyLong_FromByteArray(bytes, sizeof(long), - little, !is_unsigned); - } -} - -/* CIntToPy */ -static CYTHON_INLINE PyObject* __Pyx_PyInt_From_unsigned_int(unsigned int value) { - const unsigned int neg_one = (unsigned int) ((unsigned int) 0 - (unsigned int) 1), const_zero = (unsigned int) 0; - const int is_unsigned = neg_one > const_zero; - if (is_unsigned) { - if (sizeof(unsigned int) < sizeof(long)) { - return PyInt_FromLong((long) value); - } else if (sizeof(unsigned int) <= sizeof(unsigned long)) { - return PyLong_FromUnsignedLong((unsigned long) value); -#ifdef HAVE_LONG_LONG - } else if (sizeof(unsigned int) <= sizeof(unsigned PY_LONG_LONG)) { - return PyLong_FromUnsignedLongLong((unsigned PY_LONG_LONG) value); -#endif - } - } else { - if (sizeof(unsigned int) <= sizeof(long)) { - return PyInt_FromLong((long) value); -#ifdef HAVE_LONG_LONG - } else if (sizeof(unsigned int) <= sizeof(PY_LONG_LONG)) { - return PyLong_FromLongLong((PY_LONG_LONG) value); -#endif - } - } - { - int one = 1; int little = (int)*(unsigned char *)&one; - unsigned char *bytes = (unsigned char *)&value; - return _PyLong_FromByteArray(bytes, sizeof(unsigned int), - little, !is_unsigned); - } -} - -/* CIntFromPy */ -static CYTHON_INLINE unsigned int __Pyx_PyInt_As_unsigned_int(PyObject *x) { - const unsigned int neg_one = (unsigned int) ((unsigned int) 0 - (unsigned int) 1), const_zero = (unsigned int) 0; - const int is_unsigned = neg_one > const_zero; -#if PY_MAJOR_VERSION < 3 - if (likely(PyInt_Check(x))) { - if (sizeof(unsigned int) < sizeof(long)) { - __PYX_VERIFY_RETURN_INT(unsigned int, long, PyInt_AS_LONG(x)) - } else { - long val = PyInt_AS_LONG(x); - if (is_unsigned && unlikely(val < 0)) { - goto raise_neg_overflow; - } - return (unsigned int) val; - } - } else -#endif - if (likely(PyLong_Check(x))) { - if (is_unsigned) { -#if CYTHON_USE_PYLONG_INTERNALS - const digit* digits = ((PyLongObject*)x)->ob_digit; - switch (Py_SIZE(x)) { - case 0: return (unsigned int) 0; - case 1: __PYX_VERIFY_RETURN_INT(unsigned int, digit, digits[0]) - case 2: - if (8 * sizeof(unsigned int) > 1 * PyLong_SHIFT) { - if (8 * sizeof(unsigned long) > 2 * PyLong_SHIFT) { - __PYX_VERIFY_RETURN_INT(unsigned int, unsigned long, (((((unsigned long)digits[1]) << PyLong_SHIFT) | (unsigned long)digits[0]))) - } else if (8 * sizeof(unsigned int) >= 2 * PyLong_SHIFT) { - return (unsigned int) (((((unsigned int)digits[1]) << PyLong_SHIFT) | (unsigned int)digits[0])); - } - } - break; - case 3: - if (8 * sizeof(unsigned int) > 2 * PyLong_SHIFT) { - if (8 * sizeof(unsigned long) > 3 * PyLong_SHIFT) { - __PYX_VERIFY_RETURN_INT(unsigned int, unsigned long, (((((((unsigned long)digits[2]) << PyLong_SHIFT) | (unsigned long)digits[1]) << PyLong_SHIFT) | (unsigned long)digits[0]))) - } else if (8 * sizeof(unsigned int) >= 3 * PyLong_SHIFT) { - return (unsigned int) (((((((unsigned int)digits[2]) << PyLong_SHIFT) | (unsigned int)digits[1]) << PyLong_SHIFT) | (unsigned int)digits[0])); - } - } - break; - case 4: - if (8 * sizeof(unsigned int) > 3 * PyLong_SHIFT) { - if (8 * sizeof(unsigned long) > 4 * PyLong_SHIFT) { - __PYX_VERIFY_RETURN_INT(unsigned int, unsigned long, (((((((((unsigned long)digits[3]) << PyLong_SHIFT) | (unsigned long)digits[2]) << PyLong_SHIFT) | (unsigned long)digits[1]) << PyLong_SHIFT) | (unsigned long)digits[0]))) - } else if (8 * sizeof(unsigned int) >= 4 * PyLong_SHIFT) { - return (unsigned int) (((((((((unsigned int)digits[3]) << PyLong_SHIFT) | (unsigned int)digits[2]) << PyLong_SHIFT) | (unsigned int)digits[1]) << PyLong_SHIFT) | (unsigned int)digits[0])); - } - } - break; - } -#endif -#if CYTHON_COMPILING_IN_CPYTHON - if (unlikely(Py_SIZE(x) < 0)) { - goto raise_neg_overflow; - } -#else - { - int result = PyObject_RichCompareBool(x, Py_False, Py_LT); - if (unlikely(result < 0)) - return (unsigned int) -1; - if (unlikely(result == 1)) - goto raise_neg_overflow; - } -#endif - if (sizeof(unsigned int) <= sizeof(unsigned long)) { - __PYX_VERIFY_RETURN_INT_EXC(unsigned int, unsigned long, PyLong_AsUnsignedLong(x)) -#ifdef HAVE_LONG_LONG - } else if (sizeof(unsigned int) <= sizeof(unsigned PY_LONG_LONG)) { - __PYX_VERIFY_RETURN_INT_EXC(unsigned int, unsigned PY_LONG_LONG, PyLong_AsUnsignedLongLong(x)) -#endif - } - } else { -#if CYTHON_USE_PYLONG_INTERNALS - const digit* digits = ((PyLongObject*)x)->ob_digit; - switch (Py_SIZE(x)) { - case 0: return (unsigned int) 0; - case -1: __PYX_VERIFY_RETURN_INT(unsigned int, sdigit, (sdigit) (-(sdigit)digits[0])) - case 1: __PYX_VERIFY_RETURN_INT(unsigned int, digit, +digits[0]) - case -2: - if (8 * sizeof(unsigned int) - 1 > 1 * PyLong_SHIFT) { - if (8 * sizeof(unsigned long) > 2 * PyLong_SHIFT) { - __PYX_VERIFY_RETURN_INT(unsigned int, long, -(long) (((((unsigned long)digits[1]) << PyLong_SHIFT) | (unsigned long)digits[0]))) - } else if (8 * sizeof(unsigned int) - 1 > 2 * PyLong_SHIFT) { - return (unsigned int) (((unsigned int)-1)*(((((unsigned int)digits[1]) << PyLong_SHIFT) | (unsigned int)digits[0]))); - } - } - break; - case 2: - if (8 * sizeof(unsigned int) > 1 * PyLong_SHIFT) { - if (8 * sizeof(unsigned long) > 2 * PyLong_SHIFT) { - __PYX_VERIFY_RETURN_INT(unsigned int, unsigned long, (((((unsigned long)digits[1]) << PyLong_SHIFT) | (unsigned long)digits[0]))) - } else if (8 * sizeof(unsigned int) - 1 > 2 * PyLong_SHIFT) { - return (unsigned int) ((((((unsigned int)digits[1]) << PyLong_SHIFT) | (unsigned int)digits[0]))); - } - } - break; - case -3: - if (8 * sizeof(unsigned int) - 1 > 2 * PyLong_SHIFT) { - if (8 * sizeof(unsigned long) > 3 * PyLong_SHIFT) { - __PYX_VERIFY_RETURN_INT(unsigned int, long, -(long) (((((((unsigned long)digits[2]) << PyLong_SHIFT) | (unsigned long)digits[1]) << PyLong_SHIFT) | (unsigned long)digits[0]))) - } else if (8 * sizeof(unsigned int) - 1 > 3 * PyLong_SHIFT) { - return (unsigned int) (((unsigned int)-1)*(((((((unsigned int)digits[2]) << PyLong_SHIFT) | (unsigned int)digits[1]) << PyLong_SHIFT) | (unsigned int)digits[0]))); - } - } - break; - case 3: - if (8 * sizeof(unsigned int) > 2 * PyLong_SHIFT) { - if (8 * sizeof(unsigned long) > 3 * PyLong_SHIFT) { - __PYX_VERIFY_RETURN_INT(unsigned int, unsigned long, (((((((unsigned long)digits[2]) << PyLong_SHIFT) | (unsigned long)digits[1]) << PyLong_SHIFT) | (unsigned long)digits[0]))) - } else if (8 * sizeof(unsigned int) - 1 > 3 * PyLong_SHIFT) { - return (unsigned int) ((((((((unsigned int)digits[2]) << PyLong_SHIFT) | (unsigned int)digits[1]) << PyLong_SHIFT) | (unsigned int)digits[0]))); - } - } - break; - case -4: - if (8 * sizeof(unsigned int) - 1 > 3 * PyLong_SHIFT) { - if (8 * sizeof(unsigned long) > 4 * PyLong_SHIFT) { - __PYX_VERIFY_RETURN_INT(unsigned int, long, -(long) (((((((((unsigned long)digits[3]) << PyLong_SHIFT) | (unsigned long)digits[2]) << PyLong_SHIFT) | (unsigned long)digits[1]) << PyLong_SHIFT) | (unsigned long)digits[0]))) - } else if (8 * sizeof(unsigned int) - 1 > 4 * PyLong_SHIFT) { - return (unsigned int) (((unsigned int)-1)*(((((((((unsigned int)digits[3]) << PyLong_SHIFT) | (unsigned int)digits[2]) << PyLong_SHIFT) | (unsigned int)digits[1]) << PyLong_SHIFT) | (unsigned int)digits[0]))); - } - } - break; - case 4: - if (8 * sizeof(unsigned int) > 3 * PyLong_SHIFT) { - if (8 * sizeof(unsigned long) > 4 * PyLong_SHIFT) { - __PYX_VERIFY_RETURN_INT(unsigned int, unsigned long, (((((((((unsigned long)digits[3]) << PyLong_SHIFT) | (unsigned long)digits[2]) << PyLong_SHIFT) | (unsigned long)digits[1]) << PyLong_SHIFT) | (unsigned long)digits[0]))) - } else if (8 * sizeof(unsigned int) - 1 > 4 * PyLong_SHIFT) { - return (unsigned int) ((((((((((unsigned int)digits[3]) << PyLong_SHIFT) | (unsigned int)digits[2]) << PyLong_SHIFT) | (unsigned int)digits[1]) << PyLong_SHIFT) | (unsigned int)digits[0]))); - } - } - break; - } -#endif - if (sizeof(unsigned int) <= sizeof(long)) { - __PYX_VERIFY_RETURN_INT_EXC(unsigned int, long, PyLong_AsLong(x)) -#ifdef HAVE_LONG_LONG - } else if (sizeof(unsigned int) <= sizeof(PY_LONG_LONG)) { - __PYX_VERIFY_RETURN_INT_EXC(unsigned int, PY_LONG_LONG, PyLong_AsLongLong(x)) -#endif - } - } - { -#if CYTHON_COMPILING_IN_PYPY && !defined(_PyLong_AsByteArray) - PyErr_SetString(PyExc_RuntimeError, - "_PyLong_AsByteArray() not available in PyPy, cannot convert large numbers"); -#else - unsigned int val; - PyObject *v = __Pyx_PyNumber_IntOrLong(x); - #if PY_MAJOR_VERSION < 3 - if (likely(v) && !PyLong_Check(v)) { - PyObject *tmp = v; - v = PyNumber_Long(tmp); - Py_DECREF(tmp); - } - #endif - if (likely(v)) { - int one = 1; int is_little = (int)*(unsigned char *)&one; - unsigned char *bytes = (unsigned char *)&val; - int ret = _PyLong_AsByteArray((PyLongObject *)v, - bytes, sizeof(val), - is_little, !is_unsigned); - Py_DECREF(v); - if (likely(!ret)) - return val; - } -#endif - return (unsigned int) -1; - } - } else { - unsigned int val; - PyObject *tmp = __Pyx_PyNumber_IntOrLong(x); - if (!tmp) return (unsigned int) -1; - val = __Pyx_PyInt_As_unsigned_int(tmp); - Py_DECREF(tmp); - return val; - } -raise_overflow: - PyErr_SetString(PyExc_OverflowError, - "value too large to convert to unsigned int"); - return (unsigned int) -1; -raise_neg_overflow: - PyErr_SetString(PyExc_OverflowError, - "can't convert negative value to unsigned int"); - return (unsigned int) -1; -} - -/* CIntFromPy */ -static CYTHON_INLINE long __Pyx_PyInt_As_long(PyObject *x) { - const long neg_one = (long) ((long) 0 - (long) 1), const_zero = (long) 0; - const int is_unsigned = neg_one > const_zero; -#if PY_MAJOR_VERSION < 3 - if (likely(PyInt_Check(x))) { - if (sizeof(long) < sizeof(long)) { - __PYX_VERIFY_RETURN_INT(long, long, PyInt_AS_LONG(x)) - } else { - long val = PyInt_AS_LONG(x); - if (is_unsigned && unlikely(val < 0)) { - goto raise_neg_overflow; - } - return (long) val; - } - } else -#endif - if (likely(PyLong_Check(x))) { - if (is_unsigned) { -#if CYTHON_USE_PYLONG_INTERNALS - const digit* digits = ((PyLongObject*)x)->ob_digit; - switch (Py_SIZE(x)) { - case 0: return (long) 0; - case 1: __PYX_VERIFY_RETURN_INT(long, digit, digits[0]) - case 2: - if (8 * sizeof(long) > 1 * PyLong_SHIFT) { - if (8 * sizeof(unsigned long) > 2 * PyLong_SHIFT) { - __PYX_VERIFY_RETURN_INT(long, unsigned long, (((((unsigned long)digits[1]) << PyLong_SHIFT) | (unsigned long)digits[0]))) - } else if (8 * sizeof(long) >= 2 * PyLong_SHIFT) { - return (long) (((((long)digits[1]) << PyLong_SHIFT) | (long)digits[0])); - } - } - break; - case 3: - if (8 * sizeof(long) > 2 * PyLong_SHIFT) { - if (8 * sizeof(unsigned long) > 3 * PyLong_SHIFT) { - __PYX_VERIFY_RETURN_INT(long, unsigned long, (((((((unsigned long)digits[2]) << PyLong_SHIFT) | (unsigned long)digits[1]) << PyLong_SHIFT) | (unsigned long)digits[0]))) - } else if (8 * sizeof(long) >= 3 * PyLong_SHIFT) { - return (long) (((((((long)digits[2]) << PyLong_SHIFT) | (long)digits[1]) << PyLong_SHIFT) | (long)digits[0])); - } - } - break; - case 4: - if (8 * sizeof(long) > 3 * PyLong_SHIFT) { - if (8 * sizeof(unsigned long) > 4 * PyLong_SHIFT) { - __PYX_VERIFY_RETURN_INT(long, unsigned long, (((((((((unsigned long)digits[3]) << PyLong_SHIFT) | (unsigned long)digits[2]) << PyLong_SHIFT) | (unsigned long)digits[1]) << PyLong_SHIFT) | (unsigned long)digits[0]))) - } else if (8 * sizeof(long) >= 4 * PyLong_SHIFT) { - return (long) (((((((((long)digits[3]) << PyLong_SHIFT) | (long)digits[2]) << PyLong_SHIFT) | (long)digits[1]) << PyLong_SHIFT) | (long)digits[0])); - } - } - break; - } -#endif -#if CYTHON_COMPILING_IN_CPYTHON - if (unlikely(Py_SIZE(x) < 0)) { - goto raise_neg_overflow; - } -#else - { - int result = PyObject_RichCompareBool(x, Py_False, Py_LT); - if (unlikely(result < 0)) - return (long) -1; - if (unlikely(result == 1)) - goto raise_neg_overflow; - } -#endif - if (sizeof(long) <= sizeof(unsigned long)) { - __PYX_VERIFY_RETURN_INT_EXC(long, unsigned long, PyLong_AsUnsignedLong(x)) -#ifdef HAVE_LONG_LONG - } else if (sizeof(long) <= sizeof(unsigned PY_LONG_LONG)) { - __PYX_VERIFY_RETURN_INT_EXC(long, unsigned PY_LONG_LONG, PyLong_AsUnsignedLongLong(x)) -#endif - } - } else { -#if CYTHON_USE_PYLONG_INTERNALS - const digit* digits = ((PyLongObject*)x)->ob_digit; - switch (Py_SIZE(x)) { - case 0: return (long) 0; - case -1: __PYX_VERIFY_RETURN_INT(long, sdigit, (sdigit) (-(sdigit)digits[0])) - case 1: __PYX_VERIFY_RETURN_INT(long, digit, +digits[0]) - case -2: - if (8 * sizeof(long) - 1 > 1 * PyLong_SHIFT) { - if (8 * sizeof(unsigned long) > 2 * PyLong_SHIFT) { - __PYX_VERIFY_RETURN_INT(long, long, -(long) (((((unsigned long)digits[1]) << PyLong_SHIFT) | (unsigned long)digits[0]))) - } else if (8 * sizeof(long) - 1 > 2 * PyLong_SHIFT) { - return (long) (((long)-1)*(((((long)digits[1]) << PyLong_SHIFT) | (long)digits[0]))); - } - } - break; - case 2: - if (8 * sizeof(long) > 1 * PyLong_SHIFT) { - if (8 * sizeof(unsigned long) > 2 * PyLong_SHIFT) { - __PYX_VERIFY_RETURN_INT(long, unsigned long, (((((unsigned long)digits[1]) << PyLong_SHIFT) | (unsigned long)digits[0]))) - } else if (8 * sizeof(long) - 1 > 2 * PyLong_SHIFT) { - return (long) ((((((long)digits[1]) << PyLong_SHIFT) | (long)digits[0]))); - } - } - break; - case -3: - if (8 * sizeof(long) - 1 > 2 * PyLong_SHIFT) { - if (8 * sizeof(unsigned long) > 3 * PyLong_SHIFT) { - __PYX_VERIFY_RETURN_INT(long, long, -(long) (((((((unsigned long)digits[2]) << PyLong_SHIFT) | (unsigned long)digits[1]) << PyLong_SHIFT) | (unsigned long)digits[0]))) - } else if (8 * sizeof(long) - 1 > 3 * PyLong_SHIFT) { - return (long) (((long)-1)*(((((((long)digits[2]) << PyLong_SHIFT) | (long)digits[1]) << PyLong_SHIFT) | (long)digits[0]))); - } - } - break; - case 3: - if (8 * sizeof(long) > 2 * PyLong_SHIFT) { - if (8 * sizeof(unsigned long) > 3 * PyLong_SHIFT) { - __PYX_VERIFY_RETURN_INT(long, unsigned long, (((((((unsigned long)digits[2]) << PyLong_SHIFT) | (unsigned long)digits[1]) << PyLong_SHIFT) | (unsigned long)digits[0]))) - } else if (8 * sizeof(long) - 1 > 3 * PyLong_SHIFT) { - return (long) ((((((((long)digits[2]) << PyLong_SHIFT) | (long)digits[1]) << PyLong_SHIFT) | (long)digits[0]))); - } - } - break; - case -4: - if (8 * sizeof(long) - 1 > 3 * PyLong_SHIFT) { - if (8 * sizeof(unsigned long) > 4 * PyLong_SHIFT) { - __PYX_VERIFY_RETURN_INT(long, long, -(long) (((((((((unsigned long)digits[3]) << PyLong_SHIFT) | (unsigned long)digits[2]) << PyLong_SHIFT) | (unsigned long)digits[1]) << PyLong_SHIFT) | (unsigned long)digits[0]))) - } else if (8 * sizeof(long) - 1 > 4 * PyLong_SHIFT) { - return (long) (((long)-1)*(((((((((long)digits[3]) << PyLong_SHIFT) | (long)digits[2]) << PyLong_SHIFT) | (long)digits[1]) << PyLong_SHIFT) | (long)digits[0]))); - } - } - break; - case 4: - if (8 * sizeof(long) > 3 * PyLong_SHIFT) { - if (8 * sizeof(unsigned long) > 4 * PyLong_SHIFT) { - __PYX_VERIFY_RETURN_INT(long, unsigned long, (((((((((unsigned long)digits[3]) << PyLong_SHIFT) | (unsigned long)digits[2]) << PyLong_SHIFT) | (unsigned long)digits[1]) << PyLong_SHIFT) | (unsigned long)digits[0]))) - } else if (8 * sizeof(long) - 1 > 4 * PyLong_SHIFT) { - return (long) ((((((((((long)digits[3]) << PyLong_SHIFT) | (long)digits[2]) << PyLong_SHIFT) | (long)digits[1]) << PyLong_SHIFT) | (long)digits[0]))); - } - } - break; - } -#endif - if (sizeof(long) <= sizeof(long)) { - __PYX_VERIFY_RETURN_INT_EXC(long, long, PyLong_AsLong(x)) -#ifdef HAVE_LONG_LONG - } else if (sizeof(long) <= sizeof(PY_LONG_LONG)) { - __PYX_VERIFY_RETURN_INT_EXC(long, PY_LONG_LONG, PyLong_AsLongLong(x)) -#endif - } - } - { -#if CYTHON_COMPILING_IN_PYPY && !defined(_PyLong_AsByteArray) - PyErr_SetString(PyExc_RuntimeError, - "_PyLong_AsByteArray() not available in PyPy, cannot convert large numbers"); -#else - long val; - PyObject *v = __Pyx_PyNumber_IntOrLong(x); - #if PY_MAJOR_VERSION < 3 - if (likely(v) && !PyLong_Check(v)) { - PyObject *tmp = v; - v = PyNumber_Long(tmp); - Py_DECREF(tmp); - } - #endif - if (likely(v)) { - int one = 1; int is_little = (int)*(unsigned char *)&one; - unsigned char *bytes = (unsigned char *)&val; - int ret = _PyLong_AsByteArray((PyLongObject *)v, - bytes, sizeof(val), - is_little, !is_unsigned); - Py_DECREF(v); - if (likely(!ret)) - return val; - } -#endif - return (long) -1; - } - } else { - long val; - PyObject *tmp = __Pyx_PyNumber_IntOrLong(x); - if (!tmp) return (long) -1; - val = __Pyx_PyInt_As_long(tmp); - Py_DECREF(tmp); - return val; - } -raise_overflow: - PyErr_SetString(PyExc_OverflowError, - "value too large to convert to long"); - return (long) -1; -raise_neg_overflow: - PyErr_SetString(PyExc_OverflowError, - "can't convert negative value to long"); - return (long) -1; -} - -/* CIntFromPy */ -static CYTHON_INLINE int __Pyx_PyInt_As_int(PyObject *x) { - const int neg_one = (int) ((int) 0 - (int) 1), const_zero = (int) 0; - const int is_unsigned = neg_one > const_zero; -#if PY_MAJOR_VERSION < 3 - if (likely(PyInt_Check(x))) { - if (sizeof(int) < sizeof(long)) { - __PYX_VERIFY_RETURN_INT(int, long, PyInt_AS_LONG(x)) - } else { - long val = PyInt_AS_LONG(x); - if (is_unsigned && unlikely(val < 0)) { - goto raise_neg_overflow; - } - return (int) val; - } - } else -#endif - if (likely(PyLong_Check(x))) { - if (is_unsigned) { -#if CYTHON_USE_PYLONG_INTERNALS - const digit* digits = ((PyLongObject*)x)->ob_digit; - switch (Py_SIZE(x)) { - case 0: return (int) 0; - case 1: __PYX_VERIFY_RETURN_INT(int, digit, digits[0]) - case 2: - if (8 * sizeof(int) > 1 * PyLong_SHIFT) { - if (8 * sizeof(unsigned long) > 2 * PyLong_SHIFT) { - __PYX_VERIFY_RETURN_INT(int, unsigned long, (((((unsigned long)digits[1]) << PyLong_SHIFT) | (unsigned long)digits[0]))) - } else if (8 * sizeof(int) >= 2 * PyLong_SHIFT) { - return (int) (((((int)digits[1]) << PyLong_SHIFT) | (int)digits[0])); - } - } - break; - case 3: - if (8 * sizeof(int) > 2 * PyLong_SHIFT) { - if (8 * sizeof(unsigned long) > 3 * PyLong_SHIFT) { - __PYX_VERIFY_RETURN_INT(int, unsigned long, (((((((unsigned long)digits[2]) << PyLong_SHIFT) | (unsigned long)digits[1]) << PyLong_SHIFT) | (unsigned long)digits[0]))) - } else if (8 * sizeof(int) >= 3 * PyLong_SHIFT) { - return (int) (((((((int)digits[2]) << PyLong_SHIFT) | (int)digits[1]) << PyLong_SHIFT) | (int)digits[0])); - } - } - break; - case 4: - if (8 * sizeof(int) > 3 * PyLong_SHIFT) { - if (8 * sizeof(unsigned long) > 4 * PyLong_SHIFT) { - __PYX_VERIFY_RETURN_INT(int, unsigned long, (((((((((unsigned long)digits[3]) << PyLong_SHIFT) | (unsigned long)digits[2]) << PyLong_SHIFT) | (unsigned long)digits[1]) << PyLong_SHIFT) | (unsigned long)digits[0]))) - } else if (8 * sizeof(int) >= 4 * PyLong_SHIFT) { - return (int) (((((((((int)digits[3]) << PyLong_SHIFT) | (int)digits[2]) << PyLong_SHIFT) | (int)digits[1]) << PyLong_SHIFT) | (int)digits[0])); - } - } - break; - } -#endif -#if CYTHON_COMPILING_IN_CPYTHON - if (unlikely(Py_SIZE(x) < 0)) { - goto raise_neg_overflow; - } -#else - { - int result = PyObject_RichCompareBool(x, Py_False, Py_LT); - if (unlikely(result < 0)) - return (int) -1; - if (unlikely(result == 1)) - goto raise_neg_overflow; - } -#endif - if (sizeof(int) <= sizeof(unsigned long)) { - __PYX_VERIFY_RETURN_INT_EXC(int, unsigned long, PyLong_AsUnsignedLong(x)) -#ifdef HAVE_LONG_LONG - } else if (sizeof(int) <= sizeof(unsigned PY_LONG_LONG)) { - __PYX_VERIFY_RETURN_INT_EXC(int, unsigned PY_LONG_LONG, PyLong_AsUnsignedLongLong(x)) -#endif - } - } else { -#if CYTHON_USE_PYLONG_INTERNALS - const digit* digits = ((PyLongObject*)x)->ob_digit; - switch (Py_SIZE(x)) { - case 0: return (int) 0; - case -1: __PYX_VERIFY_RETURN_INT(int, sdigit, (sdigit) (-(sdigit)digits[0])) - case 1: __PYX_VERIFY_RETURN_INT(int, digit, +digits[0]) - case -2: - if (8 * sizeof(int) - 1 > 1 * PyLong_SHIFT) { - if (8 * sizeof(unsigned long) > 2 * PyLong_SHIFT) { - __PYX_VERIFY_RETURN_INT(int, long, -(long) (((((unsigned long)digits[1]) << PyLong_SHIFT) | (unsigned long)digits[0]))) - } else if (8 * sizeof(int) - 1 > 2 * PyLong_SHIFT) { - return (int) (((int)-1)*(((((int)digits[1]) << PyLong_SHIFT) | (int)digits[0]))); - } - } - break; - case 2: - if (8 * sizeof(int) > 1 * PyLong_SHIFT) { - if (8 * sizeof(unsigned long) > 2 * PyLong_SHIFT) { - __PYX_VERIFY_RETURN_INT(int, unsigned long, (((((unsigned long)digits[1]) << PyLong_SHIFT) | (unsigned long)digits[0]))) - } else if (8 * sizeof(int) - 1 > 2 * PyLong_SHIFT) { - return (int) ((((((int)digits[1]) << PyLong_SHIFT) | (int)digits[0]))); - } - } - break; - case -3: - if (8 * sizeof(int) - 1 > 2 * PyLong_SHIFT) { - if (8 * sizeof(unsigned long) > 3 * PyLong_SHIFT) { - __PYX_VERIFY_RETURN_INT(int, long, -(long) (((((((unsigned long)digits[2]) << PyLong_SHIFT) | (unsigned long)digits[1]) << PyLong_SHIFT) | (unsigned long)digits[0]))) - } else if (8 * sizeof(int) - 1 > 3 * PyLong_SHIFT) { - return (int) (((int)-1)*(((((((int)digits[2]) << PyLong_SHIFT) | (int)digits[1]) << PyLong_SHIFT) | (int)digits[0]))); - } - } - break; - case 3: - if (8 * sizeof(int) > 2 * PyLong_SHIFT) { - if (8 * sizeof(unsigned long) > 3 * PyLong_SHIFT) { - __PYX_VERIFY_RETURN_INT(int, unsigned long, (((((((unsigned long)digits[2]) << PyLong_SHIFT) | (unsigned long)digits[1]) << PyLong_SHIFT) | (unsigned long)digits[0]))) - } else if (8 * sizeof(int) - 1 > 3 * PyLong_SHIFT) { - return (int) ((((((((int)digits[2]) << PyLong_SHIFT) | (int)digits[1]) << PyLong_SHIFT) | (int)digits[0]))); - } - } - break; - case -4: - if (8 * sizeof(int) - 1 > 3 * PyLong_SHIFT) { - if (8 * sizeof(unsigned long) > 4 * PyLong_SHIFT) { - __PYX_VERIFY_RETURN_INT(int, long, -(long) (((((((((unsigned long)digits[3]) << PyLong_SHIFT) | (unsigned long)digits[2]) << PyLong_SHIFT) | (unsigned long)digits[1]) << PyLong_SHIFT) | (unsigned long)digits[0]))) - } else if (8 * sizeof(int) - 1 > 4 * PyLong_SHIFT) { - return (int) (((int)-1)*(((((((((int)digits[3]) << PyLong_SHIFT) | (int)digits[2]) << PyLong_SHIFT) | (int)digits[1]) << PyLong_SHIFT) | (int)digits[0]))); - } - } - break; - case 4: - if (8 * sizeof(int) > 3 * PyLong_SHIFT) { - if (8 * sizeof(unsigned long) > 4 * PyLong_SHIFT) { - __PYX_VERIFY_RETURN_INT(int, unsigned long, (((((((((unsigned long)digits[3]) << PyLong_SHIFT) | (unsigned long)digits[2]) << PyLong_SHIFT) | (unsigned long)digits[1]) << PyLong_SHIFT) | (unsigned long)digits[0]))) - } else if (8 * sizeof(int) - 1 > 4 * PyLong_SHIFT) { - return (int) ((((((((((int)digits[3]) << PyLong_SHIFT) | (int)digits[2]) << PyLong_SHIFT) | (int)digits[1]) << PyLong_SHIFT) | (int)digits[0]))); - } - } - break; - } -#endif - if (sizeof(int) <= sizeof(long)) { - __PYX_VERIFY_RETURN_INT_EXC(int, long, PyLong_AsLong(x)) -#ifdef HAVE_LONG_LONG - } else if (sizeof(int) <= sizeof(PY_LONG_LONG)) { - __PYX_VERIFY_RETURN_INT_EXC(int, PY_LONG_LONG, PyLong_AsLongLong(x)) -#endif - } - } - { -#if CYTHON_COMPILING_IN_PYPY && !defined(_PyLong_AsByteArray) - PyErr_SetString(PyExc_RuntimeError, - "_PyLong_AsByteArray() not available in PyPy, cannot convert large numbers"); -#else - int val; - PyObject *v = __Pyx_PyNumber_IntOrLong(x); - #if PY_MAJOR_VERSION < 3 - if (likely(v) && !PyLong_Check(v)) { - PyObject *tmp = v; - v = PyNumber_Long(tmp); - Py_DECREF(tmp); - } - #endif - if (likely(v)) { - int one = 1; int is_little = (int)*(unsigned char *)&one; - unsigned char *bytes = (unsigned char *)&val; - int ret = _PyLong_AsByteArray((PyLongObject *)v, - bytes, sizeof(val), - is_little, !is_unsigned); - Py_DECREF(v); - if (likely(!ret)) - return val; - } -#endif - return (int) -1; - } - } else { - int val; - PyObject *tmp = __Pyx_PyNumber_IntOrLong(x); - if (!tmp) return (int) -1; - val = __Pyx_PyInt_As_int(tmp); - Py_DECREF(tmp); - return val; - } -raise_overflow: - PyErr_SetString(PyExc_OverflowError, - "value too large to convert to int"); - return (int) -1; -raise_neg_overflow: - PyErr_SetString(PyExc_OverflowError, - "can't convert negative value to int"); - return (int) -1; -} - -/* FastTypeChecks */ -#if CYTHON_COMPILING_IN_CPYTHON -static int __Pyx_InBases(PyTypeObject *a, PyTypeObject *b) { - while (a) { - a = a->tp_base; - if (a == b) - return 1; - } - return b == &PyBaseObject_Type; -} -static CYTHON_INLINE int __Pyx_IsSubtype(PyTypeObject *a, PyTypeObject *b) { - PyObject *mro; - if (a == b) return 1; - mro = a->tp_mro; - if (likely(mro)) { - Py_ssize_t i, n; - n = PyTuple_GET_SIZE(mro); - for (i = 0; i < n; i++) { - if (PyTuple_GET_ITEM(mro, i) == (PyObject *)b) - return 1; - } - return 0; - } - return __Pyx_InBases(a, b); -} -#if PY_MAJOR_VERSION == 2 -static int __Pyx_inner_PyErr_GivenExceptionMatches2(PyObject *err, PyObject* exc_type1, PyObject* exc_type2) { - PyObject *exception, *value, *tb; - int res; - __Pyx_PyThreadState_declare - __Pyx_PyThreadState_assign - __Pyx_ErrFetch(&exception, &value, &tb); - res = exc_type1 ? PyObject_IsSubclass(err, exc_type1) : 0; - if (unlikely(res == -1)) { - PyErr_WriteUnraisable(err); - res = 0; - } - if (!res) { - res = PyObject_IsSubclass(err, exc_type2); - if (unlikely(res == -1)) { - PyErr_WriteUnraisable(err); - res = 0; - } - } - __Pyx_ErrRestore(exception, value, tb); - return res; -} -#else -static CYTHON_INLINE int __Pyx_inner_PyErr_GivenExceptionMatches2(PyObject *err, PyObject* exc_type1, PyObject *exc_type2) { - int res = exc_type1 ? __Pyx_IsSubtype((PyTypeObject*)err, (PyTypeObject*)exc_type1) : 0; - if (!res) { - res = __Pyx_IsSubtype((PyTypeObject*)err, (PyTypeObject*)exc_type2); - } - return res; -} -#endif -static int __Pyx_PyErr_GivenExceptionMatchesTuple(PyObject *exc_type, PyObject *tuple) { - Py_ssize_t i, n; - assert(PyExceptionClass_Check(exc_type)); - n = PyTuple_GET_SIZE(tuple); -#if PY_MAJOR_VERSION >= 3 - for (i=0; ip) { - #if PY_MAJOR_VERSION < 3 - if (t->is_unicode) { - *t->p = PyUnicode_DecodeUTF8(t->s, t->n - 1, NULL); - } else if (t->intern) { - *t->p = PyString_InternFromString(t->s); - } else { - *t->p = PyString_FromStringAndSize(t->s, t->n - 1); - } - #else - if (t->is_unicode | t->is_str) { - if (t->intern) { - *t->p = PyUnicode_InternFromString(t->s); - } else if (t->encoding) { - *t->p = PyUnicode_Decode(t->s, t->n - 1, t->encoding, NULL); - } else { - *t->p = PyUnicode_FromStringAndSize(t->s, t->n - 1); - } - } else { - *t->p = PyBytes_FromStringAndSize(t->s, t->n - 1); - } - #endif - if (!*t->p) - return -1; - if (PyObject_Hash(*t->p) == -1) - return -1; - ++t; - } - return 0; -} - -static CYTHON_INLINE PyObject* __Pyx_PyUnicode_FromString(const char* c_str) { - return __Pyx_PyUnicode_FromStringAndSize(c_str, (Py_ssize_t)strlen(c_str)); -} -static CYTHON_INLINE const char* __Pyx_PyObject_AsString(PyObject* o) { - Py_ssize_t ignore; - return __Pyx_PyObject_AsStringAndSize(o, &ignore); -} -#if __PYX_DEFAULT_STRING_ENCODING_IS_ASCII || __PYX_DEFAULT_STRING_ENCODING_IS_DEFAULT -#if !CYTHON_PEP393_ENABLED -static const char* __Pyx_PyUnicode_AsStringAndSize(PyObject* o, Py_ssize_t *length) { - char* defenc_c; - PyObject* defenc = _PyUnicode_AsDefaultEncodedString(o, NULL); - if (!defenc) return NULL; - defenc_c = PyBytes_AS_STRING(defenc); -#if __PYX_DEFAULT_STRING_ENCODING_IS_ASCII - { - char* end = defenc_c + PyBytes_GET_SIZE(defenc); - char* c; - for (c = defenc_c; c < end; c++) { - if ((unsigned char) (*c) >= 128) { - PyUnicode_AsASCIIString(o); - return NULL; - } - } - } -#endif - *length = PyBytes_GET_SIZE(defenc); - return defenc_c; -} -#else -static CYTHON_INLINE const char* __Pyx_PyUnicode_AsStringAndSize(PyObject* o, Py_ssize_t *length) { - if (unlikely(__Pyx_PyUnicode_READY(o) == -1)) return NULL; -#if __PYX_DEFAULT_STRING_ENCODING_IS_ASCII - if (likely(PyUnicode_IS_ASCII(o))) { - *length = PyUnicode_GET_LENGTH(o); - return PyUnicode_AsUTF8(o); - } else { - PyUnicode_AsASCIIString(o); - return NULL; - } -#else - return PyUnicode_AsUTF8AndSize(o, length); -#endif -} -#endif -#endif -static CYTHON_INLINE const char* __Pyx_PyObject_AsStringAndSize(PyObject* o, Py_ssize_t *length) { -#if __PYX_DEFAULT_STRING_ENCODING_IS_ASCII || __PYX_DEFAULT_STRING_ENCODING_IS_DEFAULT - if ( -#if PY_MAJOR_VERSION < 3 && __PYX_DEFAULT_STRING_ENCODING_IS_ASCII - __Pyx_sys_getdefaultencoding_not_ascii && -#endif - PyUnicode_Check(o)) { - return __Pyx_PyUnicode_AsStringAndSize(o, length); - } else -#endif -#if (!CYTHON_COMPILING_IN_PYPY) || (defined(PyByteArray_AS_STRING) && defined(PyByteArray_GET_SIZE)) - if (PyByteArray_Check(o)) { - *length = PyByteArray_GET_SIZE(o); - return PyByteArray_AS_STRING(o); - } else -#endif - { - char* result; - int r = PyBytes_AsStringAndSize(o, &result, length); - if (unlikely(r < 0)) { - return NULL; - } else { - return result; - } - } -} -static CYTHON_INLINE int __Pyx_PyObject_IsTrue(PyObject* x) { - int is_true = x == Py_True; - if (is_true | (x == Py_False) | (x == Py_None)) return is_true; - else return PyObject_IsTrue(x); -} -static CYTHON_INLINE int __Pyx_PyObject_IsTrueAndDecref(PyObject* x) { - int retval; - if (unlikely(!x)) return -1; - retval = __Pyx_PyObject_IsTrue(x); - Py_DECREF(x); - return retval; -} -static PyObject* __Pyx_PyNumber_IntOrLongWrongResultType(PyObject* result, const char* type_name) { -#if PY_MAJOR_VERSION >= 3 - if (PyLong_Check(result)) { - if (PyErr_WarnFormat(PyExc_DeprecationWarning, 1, - "__int__ returned non-int (type %.200s). " - "The ability to return an instance of a strict subclass of int " - "is deprecated, and may be removed in a future version of Python.", - Py_TYPE(result)->tp_name)) { - Py_DECREF(result); - return NULL; - } - return result; - } -#endif - PyErr_Format(PyExc_TypeError, - "__%.4s__ returned non-%.4s (type %.200s)", - type_name, type_name, Py_TYPE(result)->tp_name); - Py_DECREF(result); - return NULL; -} -static CYTHON_INLINE PyObject* __Pyx_PyNumber_IntOrLong(PyObject* x) { -#if CYTHON_USE_TYPE_SLOTS - PyNumberMethods *m; -#endif - const char *name = NULL; - PyObject *res = NULL; -#if PY_MAJOR_VERSION < 3 - if (likely(PyInt_Check(x) || PyLong_Check(x))) -#else - if (likely(PyLong_Check(x))) -#endif - return __Pyx_NewRef(x); -#if CYTHON_USE_TYPE_SLOTS - m = Py_TYPE(x)->tp_as_number; - #if PY_MAJOR_VERSION < 3 - if (m && m->nb_int) { - name = "int"; - res = m->nb_int(x); - } - else if (m && m->nb_long) { - name = "long"; - res = m->nb_long(x); - } - #else - if (likely(m && m->nb_int)) { - name = "int"; - res = m->nb_int(x); - } - #endif -#else - if (!PyBytes_CheckExact(x) && !PyUnicode_CheckExact(x)) { - res = PyNumber_Int(x); - } -#endif - if (likely(res)) { -#if PY_MAJOR_VERSION < 3 - if (unlikely(!PyInt_Check(res) && !PyLong_Check(res))) { -#else - if (unlikely(!PyLong_CheckExact(res))) { -#endif - return __Pyx_PyNumber_IntOrLongWrongResultType(res, name); - } - } - else if (!PyErr_Occurred()) { - PyErr_SetString(PyExc_TypeError, - "an integer is required"); - } - return res; -} -static CYTHON_INLINE Py_ssize_t __Pyx_PyIndex_AsSsize_t(PyObject* b) { - Py_ssize_t ival; - PyObject *x; -#if PY_MAJOR_VERSION < 3 - if (likely(PyInt_CheckExact(b))) { - if (sizeof(Py_ssize_t) >= sizeof(long)) - return PyInt_AS_LONG(b); - else - return PyInt_AsSsize_t(b); - } -#endif - if (likely(PyLong_CheckExact(b))) { - #if CYTHON_USE_PYLONG_INTERNALS - const digit* digits = ((PyLongObject*)b)->ob_digit; - const Py_ssize_t size = Py_SIZE(b); - if (likely(__Pyx_sst_abs(size) <= 1)) { - ival = likely(size) ? digits[0] : 0; - if (size == -1) ival = -ival; - return ival; - } else { - switch (size) { - case 2: - if (8 * sizeof(Py_ssize_t) > 2 * PyLong_SHIFT) { - return (Py_ssize_t) (((((size_t)digits[1]) << PyLong_SHIFT) | (size_t)digits[0])); - } - break; - case -2: - if (8 * sizeof(Py_ssize_t) > 2 * PyLong_SHIFT) { - return -(Py_ssize_t) (((((size_t)digits[1]) << PyLong_SHIFT) | (size_t)digits[0])); - } - break; - case 3: - if (8 * sizeof(Py_ssize_t) > 3 * PyLong_SHIFT) { - return (Py_ssize_t) (((((((size_t)digits[2]) << PyLong_SHIFT) | (size_t)digits[1]) << PyLong_SHIFT) | (size_t)digits[0])); - } - break; - case -3: - if (8 * sizeof(Py_ssize_t) > 3 * PyLong_SHIFT) { - return -(Py_ssize_t) (((((((size_t)digits[2]) << PyLong_SHIFT) | (size_t)digits[1]) << PyLong_SHIFT) | (size_t)digits[0])); - } - break; - case 4: - if (8 * sizeof(Py_ssize_t) > 4 * PyLong_SHIFT) { - return (Py_ssize_t) (((((((((size_t)digits[3]) << PyLong_SHIFT) | (size_t)digits[2]) << PyLong_SHIFT) | (size_t)digits[1]) << PyLong_SHIFT) | (size_t)digits[0])); - } - break; - case -4: - if (8 * sizeof(Py_ssize_t) > 4 * PyLong_SHIFT) { - return -(Py_ssize_t) (((((((((size_t)digits[3]) << PyLong_SHIFT) | (size_t)digits[2]) << PyLong_SHIFT) | (size_t)digits[1]) << PyLong_SHIFT) | (size_t)digits[0])); - } - break; - } - } - #endif - return PyLong_AsSsize_t(b); - } - x = PyNumber_Index(b); - if (!x) return -1; - ival = PyInt_AsSsize_t(x); - Py_DECREF(x); - return ival; -} -static CYTHON_INLINE PyObject * __Pyx_PyBool_FromLong(long b) { - return b ? __Pyx_NewRef(Py_True) : __Pyx_NewRef(Py_False); -} -static CYTHON_INLINE PyObject * __Pyx_PyInt_FromSize_t(size_t ival) { - return PyInt_FromSize_t(ival); -} - - -#endif /* Py_PYTHON_H */ diff --git a/python/pmercury/cython-bak/tcp.pyx b/python/pmercury/cython-bak/tcp.pyx deleted file mode 100644 index 7ee21728..00000000 --- a/python/pmercury/cython-bak/tcp.pyx +++ /dev/null @@ -1,125 +0,0 @@ -#cython: language_level=3, wraparound=False, cdivision=True, infer_types=True, initializedcheck=False, c_string_type=bytes, embedsignature=False, nonecheck=False - -""" - Copyright (c) 2019 Cisco Systems, Inc. All rights reserved. - License at https://github.com/cisco/mercury/blob/master/LICENSE -""" - -import os -import sys -import json -import functools -from collections import OrderedDict - -sys.path.append(os.path.dirname(os.path.abspath(__file__))) -sys.path.append(os.path.dirname(os.path.abspath(__file__))+'/../') -from pmercury.protocols.protocol import Protocol -from pmercury.utils.pmercury_utils import * - -MAX_CACHED_RESULTS = 2**24 - -cdef class TCP: - cdef dict fp_db - - def __init__(self, fp_database=None, config=None): - # populate fingerprint databases - self.fp_db = None - self.load_database(fp_database) - - - def load_database(self, fp_database): - fp_database = find_resource_path(fp_database) - if fp_database == None: - return - - self.fp_db = {} - - IF UNAME_SYSNAME == "Windows": - import gzip - for line in gzip.open(fp_database, 'r'): - fp_ = json.loads(line) - fp_['os_info'] = self.clean_os_entry(fp_['os_info']) - self.fp_db[fp_['str_repr']] = fp_ - ELSE: - for line in os.popen('zcat %s' % (fp_database)): - fp_ = json.loads(line) - fp_['os_info'] = self.clean_os_entry(fp_['os_info']) - self.fp_db[fp_['str_repr']] = fp_ - - - def clean_os_entry(self, os_info): - tmp_os = [] - for k in os_info: - tmp_os.append((os_info[k],k)) - tmp_os.sort(reverse=True) - os_info = OrderedDict({}) - for c,k in tmp_os: - os_info[k] = c - return os_info - - - @functools.lru_cache(maxsize=MAX_CACHED_RESULTS) - def os_identify(self, fp_str_, list_oses=0): - fp_ = self.get_database_entry(fp_str_, None) - if fp_ == None: - return {'os': 'Unknown', 'score': 0.0} - - r_ = [] - os_info = fp_['os_info'] - fp_tc = fp_['total_count'] - for k in os_info: - r_.append({'os': k, 'score': os_info[k]}) - - out_ = {'os':r_[0]['os'], 'score':r_[0]['score']} - if list_oses > 0: - out_['probable_oses'] = r_[0:list_oses] - - return out_ - - - @functools.lru_cache(maxsize=MAX_CACHED_RESULTS) - def get_database_entry(self, fp_str, approx_fp_str): - if self.fp_db == None or fp_str not in self.fp_db: - return None - - return self.fp_db[fp_str] - - - @staticmethod - def proto_identify(data, offset, data_len): - if data[offset+13] != 2: - return False - return True - - - @staticmethod - def fingerprint(unsigned char *buf, unsigned int offset, unsigned int data_len): - cdef list c = [f'({buf[offset+14]:02x}{buf[offset+15]:02x})'] - - offset += 20 - cdef unsigned int kind - cdef unsigned int length - - while offset < data_len: - kind = buf[offset] - length = buf[offset+1] - if kind == 0 or kind == 1: # End of Options / NOP - c.append('(%02x)' % kind) - offset += 1 - elif kind != 2 and kind != 3: - c.append('(%02x)' % kind) - offset += length - else: - c.append('(%02x%s)' % (kind, buf[offset+1:offset+length].hex())) - offset += length - - return ''.join(c), None - - - def get_human_readable(self, fp_str_): - return None - - - def proc_identify(self, fp_str_, context_, dst_ip, dst_port, list_procs=0, endpoint=None, approx=True, debug=None): - return None - diff --git a/python/pmercury/cython-bak/tls.c b/python/pmercury/cython-bak/tls.c deleted file mode 100644 index 29def92e..00000000 --- a/python/pmercury/cython-bak/tls.c +++ /dev/null @@ -1,17112 +0,0 @@ -/* Generated by Cython 0.29.14 */ - -/* BEGIN: Cython Metadata -{ - "distutils": { - "depends": [], - "name": "pmercury.protocols.tls", - "sources": [ - "/home/blake/Cisco/mercury-transition/python/pmercury/protocols/tls.pyx" - ] - }, - "module_name": "pmercury.protocols.tls" -} -END: Cython Metadata */ - -#define PY_SSIZE_T_CLEAN -#include "Python.h" -#ifndef Py_PYTHON_H - #error Python headers needed to compile C extensions, please install development version of Python. -#elif PY_VERSION_HEX < 0x02060000 || (0x03000000 <= PY_VERSION_HEX && PY_VERSION_HEX < 0x03030000) - #error Cython requires Python 2.6+ or Python 3.3+. -#else -#define CYTHON_ABI "0_29_14" -#define CYTHON_HEX_VERSION 0x001D0EF0 -#define CYTHON_FUTURE_DIVISION 1 -#include -#ifndef offsetof - #define offsetof(type, member) ( (size_t) & ((type*)0) -> member ) -#endif -#if !defined(WIN32) && !defined(MS_WINDOWS) - #ifndef __stdcall - #define __stdcall - #endif - #ifndef __cdecl - #define __cdecl - #endif - #ifndef __fastcall - #define __fastcall - #endif -#endif -#ifndef DL_IMPORT - #define DL_IMPORT(t) t -#endif -#ifndef DL_EXPORT - #define DL_EXPORT(t) t -#endif -#define __PYX_COMMA , -#ifndef HAVE_LONG_LONG - #if PY_VERSION_HEX >= 0x02070000 - #define HAVE_LONG_LONG - #endif -#endif -#ifndef PY_LONG_LONG - #define PY_LONG_LONG LONG_LONG -#endif -#ifndef Py_HUGE_VAL - #define Py_HUGE_VAL HUGE_VAL -#endif -#ifdef PYPY_VERSION - #define CYTHON_COMPILING_IN_PYPY 1 - #define CYTHON_COMPILING_IN_PYSTON 0 - #define CYTHON_COMPILING_IN_CPYTHON 0 - #undef CYTHON_USE_TYPE_SLOTS - #define CYTHON_USE_TYPE_SLOTS 0 - #undef CYTHON_USE_PYTYPE_LOOKUP - #define CYTHON_USE_PYTYPE_LOOKUP 0 - #if PY_VERSION_HEX < 0x03050000 - #undef CYTHON_USE_ASYNC_SLOTS - #define CYTHON_USE_ASYNC_SLOTS 0 - #elif !defined(CYTHON_USE_ASYNC_SLOTS) - #define CYTHON_USE_ASYNC_SLOTS 1 - #endif - #undef CYTHON_USE_PYLIST_INTERNALS - #define CYTHON_USE_PYLIST_INTERNALS 0 - #undef CYTHON_USE_UNICODE_INTERNALS - #define CYTHON_USE_UNICODE_INTERNALS 0 - #undef CYTHON_USE_UNICODE_WRITER - #define CYTHON_USE_UNICODE_WRITER 0 - #undef CYTHON_USE_PYLONG_INTERNALS - #define CYTHON_USE_PYLONG_INTERNALS 0 - #undef CYTHON_AVOID_BORROWED_REFS - #define CYTHON_AVOID_BORROWED_REFS 1 - #undef CYTHON_ASSUME_SAFE_MACROS - #define CYTHON_ASSUME_SAFE_MACROS 0 - #undef CYTHON_UNPACK_METHODS - #define CYTHON_UNPACK_METHODS 0 - #undef CYTHON_FAST_THREAD_STATE - #define CYTHON_FAST_THREAD_STATE 0 - #undef CYTHON_FAST_PYCALL - #define CYTHON_FAST_PYCALL 0 - #undef CYTHON_PEP489_MULTI_PHASE_INIT - #define CYTHON_PEP489_MULTI_PHASE_INIT 0 - #undef CYTHON_USE_TP_FINALIZE - #define CYTHON_USE_TP_FINALIZE 0 - #undef CYTHON_USE_DICT_VERSIONS - #define CYTHON_USE_DICT_VERSIONS 0 - #undef CYTHON_USE_EXC_INFO_STACK - #define CYTHON_USE_EXC_INFO_STACK 0 -#elif defined(PYSTON_VERSION) - #define CYTHON_COMPILING_IN_PYPY 0 - #define CYTHON_COMPILING_IN_PYSTON 1 - #define CYTHON_COMPILING_IN_CPYTHON 0 - #ifndef CYTHON_USE_TYPE_SLOTS - #define CYTHON_USE_TYPE_SLOTS 1 - #endif - #undef CYTHON_USE_PYTYPE_LOOKUP - #define CYTHON_USE_PYTYPE_LOOKUP 0 - #undef CYTHON_USE_ASYNC_SLOTS - #define CYTHON_USE_ASYNC_SLOTS 0 - #undef CYTHON_USE_PYLIST_INTERNALS - #define CYTHON_USE_PYLIST_INTERNALS 0 - #ifndef CYTHON_USE_UNICODE_INTERNALS - #define CYTHON_USE_UNICODE_INTERNALS 1 - #endif - #undef CYTHON_USE_UNICODE_WRITER - #define CYTHON_USE_UNICODE_WRITER 0 - #undef CYTHON_USE_PYLONG_INTERNALS - #define CYTHON_USE_PYLONG_INTERNALS 0 - #ifndef CYTHON_AVOID_BORROWED_REFS - #define CYTHON_AVOID_BORROWED_REFS 0 - #endif - #ifndef CYTHON_ASSUME_SAFE_MACROS - #define CYTHON_ASSUME_SAFE_MACROS 1 - #endif - #ifndef CYTHON_UNPACK_METHODS - #define CYTHON_UNPACK_METHODS 1 - #endif - #undef CYTHON_FAST_THREAD_STATE - #define CYTHON_FAST_THREAD_STATE 0 - #undef CYTHON_FAST_PYCALL - #define CYTHON_FAST_PYCALL 0 - #undef CYTHON_PEP489_MULTI_PHASE_INIT - #define CYTHON_PEP489_MULTI_PHASE_INIT 0 - #undef CYTHON_USE_TP_FINALIZE - #define CYTHON_USE_TP_FINALIZE 0 - #undef CYTHON_USE_DICT_VERSIONS - #define CYTHON_USE_DICT_VERSIONS 0 - #undef CYTHON_USE_EXC_INFO_STACK - #define CYTHON_USE_EXC_INFO_STACK 0 -#else - #define CYTHON_COMPILING_IN_PYPY 0 - #define CYTHON_COMPILING_IN_PYSTON 0 - #define CYTHON_COMPILING_IN_CPYTHON 1 - #ifndef CYTHON_USE_TYPE_SLOTS - #define CYTHON_USE_TYPE_SLOTS 1 - #endif - #if PY_VERSION_HEX < 0x02070000 - #undef CYTHON_USE_PYTYPE_LOOKUP - #define CYTHON_USE_PYTYPE_LOOKUP 0 - #elif !defined(CYTHON_USE_PYTYPE_LOOKUP) - #define CYTHON_USE_PYTYPE_LOOKUP 1 - #endif - #if PY_MAJOR_VERSION < 3 - #undef CYTHON_USE_ASYNC_SLOTS - #define CYTHON_USE_ASYNC_SLOTS 0 - #elif !defined(CYTHON_USE_ASYNC_SLOTS) - #define CYTHON_USE_ASYNC_SLOTS 1 - #endif - #if PY_VERSION_HEX < 0x02070000 - #undef CYTHON_USE_PYLONG_INTERNALS - #define CYTHON_USE_PYLONG_INTERNALS 0 - #elif !defined(CYTHON_USE_PYLONG_INTERNALS) - #define CYTHON_USE_PYLONG_INTERNALS 1 - #endif - #ifndef CYTHON_USE_PYLIST_INTERNALS - #define CYTHON_USE_PYLIST_INTERNALS 1 - #endif - #ifndef CYTHON_USE_UNICODE_INTERNALS - #define CYTHON_USE_UNICODE_INTERNALS 1 - #endif - #if PY_VERSION_HEX < 0x030300F0 - #undef CYTHON_USE_UNICODE_WRITER - #define CYTHON_USE_UNICODE_WRITER 0 - #elif !defined(CYTHON_USE_UNICODE_WRITER) - #define CYTHON_USE_UNICODE_WRITER 1 - #endif - #ifndef CYTHON_AVOID_BORROWED_REFS - #define CYTHON_AVOID_BORROWED_REFS 0 - #endif - #ifndef CYTHON_ASSUME_SAFE_MACROS - #define CYTHON_ASSUME_SAFE_MACROS 1 - #endif - #ifndef CYTHON_UNPACK_METHODS - #define CYTHON_UNPACK_METHODS 1 - #endif - #ifndef CYTHON_FAST_THREAD_STATE - #define CYTHON_FAST_THREAD_STATE 1 - #endif - #ifndef CYTHON_FAST_PYCALL - #define CYTHON_FAST_PYCALL 1 - #endif - #ifndef CYTHON_PEP489_MULTI_PHASE_INIT - #define CYTHON_PEP489_MULTI_PHASE_INIT (PY_VERSION_HEX >= 0x03050000) - #endif - #ifndef CYTHON_USE_TP_FINALIZE - #define CYTHON_USE_TP_FINALIZE (PY_VERSION_HEX >= 0x030400a1) - #endif - #ifndef CYTHON_USE_DICT_VERSIONS - #define CYTHON_USE_DICT_VERSIONS (PY_VERSION_HEX >= 0x030600B1) - #endif - #ifndef CYTHON_USE_EXC_INFO_STACK - #define CYTHON_USE_EXC_INFO_STACK (PY_VERSION_HEX >= 0x030700A3) - #endif -#endif -#if !defined(CYTHON_FAST_PYCCALL) -#define CYTHON_FAST_PYCCALL (CYTHON_FAST_PYCALL && PY_VERSION_HEX >= 0x030600B1) -#endif -#if CYTHON_USE_PYLONG_INTERNALS - #include "longintrepr.h" - #undef SHIFT - #undef BASE - #undef MASK - #ifdef SIZEOF_VOID_P - enum { __pyx_check_sizeof_voidp = 1 / (int)(SIZEOF_VOID_P == sizeof(void*)) }; - #endif -#endif -#ifndef __has_attribute - #define __has_attribute(x) 0 -#endif -#ifndef __has_cpp_attribute - #define __has_cpp_attribute(x) 0 -#endif -#ifndef CYTHON_RESTRICT - #if defined(__GNUC__) - #define CYTHON_RESTRICT __restrict__ - #elif defined(_MSC_VER) && _MSC_VER >= 1400 - #define CYTHON_RESTRICT __restrict - #elif defined (__STDC_VERSION__) && __STDC_VERSION__ >= 199901L - #define CYTHON_RESTRICT restrict - #else - #define CYTHON_RESTRICT - #endif -#endif -#ifndef CYTHON_UNUSED -# if defined(__GNUC__) -# if !(defined(__cplusplus)) || (__GNUC__ > 3 || (__GNUC__ == 3 && __GNUC_MINOR__ >= 4)) -# define CYTHON_UNUSED __attribute__ ((__unused__)) -# else -# define CYTHON_UNUSED -# endif -# elif defined(__ICC) || (defined(__INTEL_COMPILER) && !defined(_MSC_VER)) -# define CYTHON_UNUSED __attribute__ ((__unused__)) -# else -# define CYTHON_UNUSED -# endif -#endif -#ifndef CYTHON_MAYBE_UNUSED_VAR -# if defined(__cplusplus) - template void CYTHON_MAYBE_UNUSED_VAR( const T& ) { } -# else -# define CYTHON_MAYBE_UNUSED_VAR(x) (void)(x) -# endif -#endif -#ifndef CYTHON_NCP_UNUSED -# if CYTHON_COMPILING_IN_CPYTHON -# define CYTHON_NCP_UNUSED -# else -# define CYTHON_NCP_UNUSED CYTHON_UNUSED -# endif -#endif -#define __Pyx_void_to_None(void_result) ((void)(void_result), Py_INCREF(Py_None), Py_None) -#ifdef _MSC_VER - #ifndef _MSC_STDINT_H_ - #if _MSC_VER < 1300 - typedef unsigned char uint8_t; - typedef unsigned int uint32_t; - #else - typedef unsigned __int8 uint8_t; - typedef unsigned __int32 uint32_t; - #endif - #endif -#else - #include -#endif -#ifndef CYTHON_FALLTHROUGH - #if defined(__cplusplus) && __cplusplus >= 201103L - #if __has_cpp_attribute(fallthrough) - #define CYTHON_FALLTHROUGH [[fallthrough]] - #elif __has_cpp_attribute(clang::fallthrough) - #define CYTHON_FALLTHROUGH [[clang::fallthrough]] - #elif __has_cpp_attribute(gnu::fallthrough) - #define CYTHON_FALLTHROUGH [[gnu::fallthrough]] - #endif - #endif - #ifndef CYTHON_FALLTHROUGH - #if __has_attribute(fallthrough) - #define CYTHON_FALLTHROUGH __attribute__((fallthrough)) - #else - #define CYTHON_FALLTHROUGH - #endif - #endif - #if defined(__clang__ ) && defined(__apple_build_version__) - #if __apple_build_version__ < 7000000 - #undef CYTHON_FALLTHROUGH - #define CYTHON_FALLTHROUGH - #endif - #endif -#endif - -#ifndef CYTHON_INLINE - #if defined(__clang__) - #define CYTHON_INLINE __inline__ __attribute__ ((__unused__)) - #elif defined(__GNUC__) - #define CYTHON_INLINE __inline__ - #elif defined(_MSC_VER) - #define CYTHON_INLINE __inline - #elif defined (__STDC_VERSION__) && __STDC_VERSION__ >= 199901L - #define CYTHON_INLINE inline - #else - #define CYTHON_INLINE - #endif -#endif - -#if CYTHON_COMPILING_IN_PYPY && PY_VERSION_HEX < 0x02070600 && !defined(Py_OptimizeFlag) - #define Py_OptimizeFlag 0 -#endif -#define __PYX_BUILD_PY_SSIZE_T "n" -#define CYTHON_FORMAT_SSIZE_T "z" -#if PY_MAJOR_VERSION < 3 - #define __Pyx_BUILTIN_MODULE_NAME "__builtin__" - #define __Pyx_PyCode_New(a, k, l, s, f, code, c, n, v, fv, cell, fn, name, fline, lnos)\ - PyCode_New(a+k, l, s, f, code, c, n, v, fv, cell, fn, name, fline, lnos) - #define __Pyx_DefaultClassType PyClass_Type -#else - #define __Pyx_BUILTIN_MODULE_NAME "builtins" -#if PY_VERSION_HEX >= 0x030800A4 && PY_VERSION_HEX < 0x030800B2 - #define __Pyx_PyCode_New(a, k, l, s, f, code, c, n, v, fv, cell, fn, name, fline, lnos)\ - PyCode_New(a, 0, k, l, s, f, code, c, n, v, fv, cell, fn, name, fline, lnos) -#else - #define __Pyx_PyCode_New(a, k, l, s, f, code, c, n, v, fv, cell, fn, name, fline, lnos)\ - PyCode_New(a, k, l, s, f, code, c, n, v, fv, cell, fn, name, fline, lnos) -#endif - #define __Pyx_DefaultClassType PyType_Type -#endif -#ifndef Py_TPFLAGS_CHECKTYPES - #define Py_TPFLAGS_CHECKTYPES 0 -#endif -#ifndef Py_TPFLAGS_HAVE_INDEX - #define Py_TPFLAGS_HAVE_INDEX 0 -#endif -#ifndef Py_TPFLAGS_HAVE_NEWBUFFER - #define Py_TPFLAGS_HAVE_NEWBUFFER 0 -#endif -#ifndef Py_TPFLAGS_HAVE_FINALIZE - #define Py_TPFLAGS_HAVE_FINALIZE 0 -#endif -#ifndef METH_STACKLESS - #define METH_STACKLESS 0 -#endif -#if PY_VERSION_HEX <= 0x030700A3 || !defined(METH_FASTCALL) - #ifndef METH_FASTCALL - #define METH_FASTCALL 0x80 - #endif - typedef PyObject *(*__Pyx_PyCFunctionFast) (PyObject *self, PyObject *const *args, Py_ssize_t nargs); - typedef PyObject *(*__Pyx_PyCFunctionFastWithKeywords) (PyObject *self, PyObject *const *args, - Py_ssize_t nargs, PyObject *kwnames); -#else - #define __Pyx_PyCFunctionFast _PyCFunctionFast - #define __Pyx_PyCFunctionFastWithKeywords _PyCFunctionFastWithKeywords -#endif -#if CYTHON_FAST_PYCCALL -#define __Pyx_PyFastCFunction_Check(func)\ - ((PyCFunction_Check(func) && (METH_FASTCALL == (PyCFunction_GET_FLAGS(func) & ~(METH_CLASS | METH_STATIC | METH_COEXIST | METH_KEYWORDS | METH_STACKLESS))))) -#else -#define __Pyx_PyFastCFunction_Check(func) 0 -#endif -#if CYTHON_COMPILING_IN_PYPY && !defined(PyObject_Malloc) - #define PyObject_Malloc(s) PyMem_Malloc(s) - #define PyObject_Free(p) PyMem_Free(p) - #define PyObject_Realloc(p) PyMem_Realloc(p) -#endif -#if CYTHON_COMPILING_IN_CPYTHON && PY_VERSION_HEX < 0x030400A1 - #define PyMem_RawMalloc(n) PyMem_Malloc(n) - #define PyMem_RawRealloc(p, n) PyMem_Realloc(p, n) - #define PyMem_RawFree(p) PyMem_Free(p) -#endif -#if CYTHON_COMPILING_IN_PYSTON - #define __Pyx_PyCode_HasFreeVars(co) PyCode_HasFreeVars(co) - #define __Pyx_PyFrame_SetLineNumber(frame, lineno) PyFrame_SetLineNumber(frame, lineno) -#else - #define __Pyx_PyCode_HasFreeVars(co) (PyCode_GetNumFree(co) > 0) - #define __Pyx_PyFrame_SetLineNumber(frame, lineno) (frame)->f_lineno = (lineno) -#endif -#if !CYTHON_FAST_THREAD_STATE || PY_VERSION_HEX < 0x02070000 - #define __Pyx_PyThreadState_Current PyThreadState_GET() -#elif PY_VERSION_HEX >= 0x03060000 - #define __Pyx_PyThreadState_Current _PyThreadState_UncheckedGet() -#elif PY_VERSION_HEX >= 0x03000000 - #define __Pyx_PyThreadState_Current PyThreadState_GET() -#else - #define __Pyx_PyThreadState_Current _PyThreadState_Current -#endif -#if PY_VERSION_HEX < 0x030700A2 && !defined(PyThread_tss_create) && !defined(Py_tss_NEEDS_INIT) -#include "pythread.h" -#define Py_tss_NEEDS_INIT 0 -typedef int Py_tss_t; -static CYTHON_INLINE int PyThread_tss_create(Py_tss_t *key) { - *key = PyThread_create_key(); - return 0; -} -static CYTHON_INLINE Py_tss_t * PyThread_tss_alloc(void) { - Py_tss_t *key = (Py_tss_t *)PyObject_Malloc(sizeof(Py_tss_t)); - *key = Py_tss_NEEDS_INIT; - return key; -} -static CYTHON_INLINE void PyThread_tss_free(Py_tss_t *key) { - PyObject_Free(key); -} -static CYTHON_INLINE int PyThread_tss_is_created(Py_tss_t *key) { - return *key != Py_tss_NEEDS_INIT; -} -static CYTHON_INLINE void PyThread_tss_delete(Py_tss_t *key) { - PyThread_delete_key(*key); - *key = Py_tss_NEEDS_INIT; -} -static CYTHON_INLINE int PyThread_tss_set(Py_tss_t *key, void *value) { - return PyThread_set_key_value(*key, value); -} -static CYTHON_INLINE void * PyThread_tss_get(Py_tss_t *key) { - return PyThread_get_key_value(*key); -} -#endif -#if CYTHON_COMPILING_IN_CPYTHON || defined(_PyDict_NewPresized) -#define __Pyx_PyDict_NewPresized(n) ((n <= 8) ? PyDict_New() : _PyDict_NewPresized(n)) -#else -#define __Pyx_PyDict_NewPresized(n) PyDict_New() -#endif -#if PY_MAJOR_VERSION >= 3 || CYTHON_FUTURE_DIVISION - #define __Pyx_PyNumber_Divide(x,y) PyNumber_TrueDivide(x,y) - #define __Pyx_PyNumber_InPlaceDivide(x,y) PyNumber_InPlaceTrueDivide(x,y) -#else - #define __Pyx_PyNumber_Divide(x,y) PyNumber_Divide(x,y) - #define __Pyx_PyNumber_InPlaceDivide(x,y) PyNumber_InPlaceDivide(x,y) -#endif -#if CYTHON_COMPILING_IN_CPYTHON && PY_VERSION_HEX >= 0x030500A1 && CYTHON_USE_UNICODE_INTERNALS -#define __Pyx_PyDict_GetItemStr(dict, name) _PyDict_GetItem_KnownHash(dict, name, ((PyASCIIObject *) name)->hash) -#else -#define __Pyx_PyDict_GetItemStr(dict, name) PyDict_GetItem(dict, name) -#endif -#if PY_VERSION_HEX > 0x03030000 && defined(PyUnicode_KIND) - #define CYTHON_PEP393_ENABLED 1 - #define __Pyx_PyUnicode_READY(op) (likely(PyUnicode_IS_READY(op)) ?\ - 0 : _PyUnicode_Ready((PyObject *)(op))) - #define __Pyx_PyUnicode_GET_LENGTH(u) PyUnicode_GET_LENGTH(u) - #define __Pyx_PyUnicode_READ_CHAR(u, i) PyUnicode_READ_CHAR(u, i) - #define __Pyx_PyUnicode_MAX_CHAR_VALUE(u) PyUnicode_MAX_CHAR_VALUE(u) - #define __Pyx_PyUnicode_KIND(u) PyUnicode_KIND(u) - #define __Pyx_PyUnicode_DATA(u) PyUnicode_DATA(u) - #define __Pyx_PyUnicode_READ(k, d, i) PyUnicode_READ(k, d, i) - #define __Pyx_PyUnicode_WRITE(k, d, i, ch) PyUnicode_WRITE(k, d, i, ch) - #define __Pyx_PyUnicode_IS_TRUE(u) (0 != (likely(PyUnicode_IS_READY(u)) ? PyUnicode_GET_LENGTH(u) : PyUnicode_GET_SIZE(u))) -#else - #define CYTHON_PEP393_ENABLED 0 - #define PyUnicode_1BYTE_KIND 1 - #define PyUnicode_2BYTE_KIND 2 - #define PyUnicode_4BYTE_KIND 4 - #define __Pyx_PyUnicode_READY(op) (0) - #define __Pyx_PyUnicode_GET_LENGTH(u) PyUnicode_GET_SIZE(u) - #define __Pyx_PyUnicode_READ_CHAR(u, i) ((Py_UCS4)(PyUnicode_AS_UNICODE(u)[i])) - #define __Pyx_PyUnicode_MAX_CHAR_VALUE(u) ((sizeof(Py_UNICODE) == 2) ? 65535 : 1114111) - #define __Pyx_PyUnicode_KIND(u) (sizeof(Py_UNICODE)) - #define __Pyx_PyUnicode_DATA(u) ((void*)PyUnicode_AS_UNICODE(u)) - #define __Pyx_PyUnicode_READ(k, d, i) ((void)(k), (Py_UCS4)(((Py_UNICODE*)d)[i])) - #define __Pyx_PyUnicode_WRITE(k, d, i, ch) (((void)(k)), ((Py_UNICODE*)d)[i] = ch) - #define __Pyx_PyUnicode_IS_TRUE(u) (0 != PyUnicode_GET_SIZE(u)) -#endif -#if CYTHON_COMPILING_IN_PYPY - #define __Pyx_PyUnicode_Concat(a, b) PyNumber_Add(a, b) - #define __Pyx_PyUnicode_ConcatSafe(a, b) PyNumber_Add(a, b) -#else - #define __Pyx_PyUnicode_Concat(a, b) PyUnicode_Concat(a, b) - #define __Pyx_PyUnicode_ConcatSafe(a, b) ((unlikely((a) == Py_None) || unlikely((b) == Py_None)) ?\ - PyNumber_Add(a, b) : __Pyx_PyUnicode_Concat(a, b)) -#endif -#if CYTHON_COMPILING_IN_PYPY && !defined(PyUnicode_Contains) - #define PyUnicode_Contains(u, s) PySequence_Contains(u, s) -#endif -#if CYTHON_COMPILING_IN_PYPY && !defined(PyByteArray_Check) - #define PyByteArray_Check(obj) PyObject_TypeCheck(obj, &PyByteArray_Type) -#endif -#if CYTHON_COMPILING_IN_PYPY && !defined(PyObject_Format) - #define PyObject_Format(obj, fmt) PyObject_CallMethod(obj, "__format__", "O", fmt) -#endif -#define __Pyx_PyString_FormatSafe(a, b) ((unlikely((a) == Py_None || (PyString_Check(b) && !PyString_CheckExact(b)))) ? PyNumber_Remainder(a, b) : __Pyx_PyString_Format(a, b)) -#define __Pyx_PyUnicode_FormatSafe(a, b) ((unlikely((a) == Py_None || (PyUnicode_Check(b) && !PyUnicode_CheckExact(b)))) ? PyNumber_Remainder(a, b) : PyUnicode_Format(a, b)) -#if PY_MAJOR_VERSION >= 3 - #define __Pyx_PyString_Format(a, b) PyUnicode_Format(a, b) -#else - #define __Pyx_PyString_Format(a, b) PyString_Format(a, b) -#endif -#if PY_MAJOR_VERSION < 3 && !defined(PyObject_ASCII) - #define PyObject_ASCII(o) PyObject_Repr(o) -#endif -#if PY_MAJOR_VERSION >= 3 - #define PyBaseString_Type PyUnicode_Type - #define PyStringObject PyUnicodeObject - #define PyString_Type PyUnicode_Type - #define PyString_Check PyUnicode_Check - #define PyString_CheckExact PyUnicode_CheckExact - #define PyObject_Unicode PyObject_Str -#endif -#if PY_MAJOR_VERSION >= 3 - #define __Pyx_PyBaseString_Check(obj) PyUnicode_Check(obj) - #define __Pyx_PyBaseString_CheckExact(obj) PyUnicode_CheckExact(obj) -#else - #define __Pyx_PyBaseString_Check(obj) (PyString_Check(obj) || PyUnicode_Check(obj)) - #define __Pyx_PyBaseString_CheckExact(obj) (PyString_CheckExact(obj) || PyUnicode_CheckExact(obj)) -#endif -#ifndef PySet_CheckExact - #define PySet_CheckExact(obj) (Py_TYPE(obj) == &PySet_Type) -#endif -#if CYTHON_ASSUME_SAFE_MACROS - #define __Pyx_PySequence_SIZE(seq) Py_SIZE(seq) -#else - #define __Pyx_PySequence_SIZE(seq) PySequence_Size(seq) -#endif -#if PY_MAJOR_VERSION >= 3 - #define PyIntObject PyLongObject - #define PyInt_Type PyLong_Type - #define PyInt_Check(op) PyLong_Check(op) - #define PyInt_CheckExact(op) PyLong_CheckExact(op) - #define PyInt_FromString PyLong_FromString - #define PyInt_FromUnicode PyLong_FromUnicode - #define PyInt_FromLong PyLong_FromLong - #define PyInt_FromSize_t PyLong_FromSize_t - #define PyInt_FromSsize_t PyLong_FromSsize_t - #define PyInt_AsLong PyLong_AsLong - #define PyInt_AS_LONG PyLong_AS_LONG - #define PyInt_AsSsize_t PyLong_AsSsize_t - #define PyInt_AsUnsignedLongMask PyLong_AsUnsignedLongMask - #define PyInt_AsUnsignedLongLongMask PyLong_AsUnsignedLongLongMask - #define PyNumber_Int PyNumber_Long -#endif -#if PY_MAJOR_VERSION >= 3 - #define PyBoolObject PyLongObject -#endif -#if PY_MAJOR_VERSION >= 3 && CYTHON_COMPILING_IN_PYPY - #ifndef PyUnicode_InternFromString - #define PyUnicode_InternFromString(s) PyUnicode_FromString(s) - #endif -#endif -#if PY_VERSION_HEX < 0x030200A4 - typedef long Py_hash_t; - #define __Pyx_PyInt_FromHash_t PyInt_FromLong - #define __Pyx_PyInt_AsHash_t PyInt_AsLong -#else - #define __Pyx_PyInt_FromHash_t PyInt_FromSsize_t - #define __Pyx_PyInt_AsHash_t PyInt_AsSsize_t -#endif -#if PY_MAJOR_VERSION >= 3 - #define __Pyx_PyMethod_New(func, self, klass) ((self) ? PyMethod_New(func, self) : (Py_INCREF(func), func)) -#else - #define __Pyx_PyMethod_New(func, self, klass) PyMethod_New(func, self, klass) -#endif -#if CYTHON_USE_ASYNC_SLOTS - #if PY_VERSION_HEX >= 0x030500B1 - #define __Pyx_PyAsyncMethodsStruct PyAsyncMethods - #define __Pyx_PyType_AsAsync(obj) (Py_TYPE(obj)->tp_as_async) - #else - #define __Pyx_PyType_AsAsync(obj) ((__Pyx_PyAsyncMethodsStruct*) (Py_TYPE(obj)->tp_reserved)) - #endif -#else - #define __Pyx_PyType_AsAsync(obj) NULL -#endif -#ifndef __Pyx_PyAsyncMethodsStruct - typedef struct { - unaryfunc am_await; - unaryfunc am_aiter; - unaryfunc am_anext; - } __Pyx_PyAsyncMethodsStruct; -#endif - -#if defined(WIN32) || defined(MS_WINDOWS) - #define _USE_MATH_DEFINES -#endif -#include -#ifdef NAN -#define __PYX_NAN() ((float) NAN) -#else -static CYTHON_INLINE float __PYX_NAN() { - float value; - memset(&value, 0xFF, sizeof(value)); - return value; -} -#endif -#if defined(__CYGWIN__) && defined(_LDBL_EQ_DBL) -#define __Pyx_truncl trunc -#else -#define __Pyx_truncl truncl -#endif - - -#define __PYX_ERR(f_index, lineno, Ln_error) \ -{ \ - __pyx_filename = __pyx_f[f_index]; __pyx_lineno = lineno; __pyx_clineno = __LINE__; goto Ln_error; \ -} - -#ifndef __PYX_EXTERN_C - #ifdef __cplusplus - #define __PYX_EXTERN_C extern "C" - #else - #define __PYX_EXTERN_C extern - #endif -#endif - -#define __PYX_HAVE__pmercury__protocols__tls -#define __PYX_HAVE_API__pmercury__protocols__tls -/* Early includes */ -#include -#include -#include "arpa/inet.h" -#ifdef _OPENMP -#include -#endif /* _OPENMP */ - -#if defined(PYREX_WITHOUT_ASSERTIONS) && !defined(CYTHON_WITHOUT_ASSERTIONS) -#define CYTHON_WITHOUT_ASSERTIONS -#endif - -typedef struct {PyObject **p; const char *s; const Py_ssize_t n; const char* encoding; - const char is_unicode; const char is_str; const char intern; } __Pyx_StringTabEntry; - -#define __PYX_DEFAULT_STRING_ENCODING_IS_ASCII 0 -#define __PYX_DEFAULT_STRING_ENCODING_IS_UTF8 0 -#define __PYX_DEFAULT_STRING_ENCODING_IS_DEFAULT (PY_MAJOR_VERSION >= 3 && __PYX_DEFAULT_STRING_ENCODING_IS_UTF8) -#define __PYX_DEFAULT_STRING_ENCODING "" -#define __Pyx_PyObject_FromString __Pyx_PyBytes_FromString -#define __Pyx_PyObject_FromStringAndSize __Pyx_PyBytes_FromStringAndSize -#define __Pyx_uchar_cast(c) ((unsigned char)c) -#define __Pyx_long_cast(x) ((long)x) -#define __Pyx_fits_Py_ssize_t(v, type, is_signed) (\ - (sizeof(type) < sizeof(Py_ssize_t)) ||\ - (sizeof(type) > sizeof(Py_ssize_t) &&\ - likely(v < (type)PY_SSIZE_T_MAX ||\ - v == (type)PY_SSIZE_T_MAX) &&\ - (!is_signed || likely(v > (type)PY_SSIZE_T_MIN ||\ - v == (type)PY_SSIZE_T_MIN))) ||\ - (sizeof(type) == sizeof(Py_ssize_t) &&\ - (is_signed || likely(v < (type)PY_SSIZE_T_MAX ||\ - v == (type)PY_SSIZE_T_MAX))) ) -static CYTHON_INLINE int __Pyx_is_valid_index(Py_ssize_t i, Py_ssize_t limit) { - return (size_t) i < (size_t) limit; -} -#if defined (__cplusplus) && __cplusplus >= 201103L - #include - #define __Pyx_sst_abs(value) std::abs(value) -#elif SIZEOF_INT >= SIZEOF_SIZE_T - #define __Pyx_sst_abs(value) abs(value) -#elif SIZEOF_LONG >= SIZEOF_SIZE_T - #define __Pyx_sst_abs(value) labs(value) -#elif defined (_MSC_VER) - #define __Pyx_sst_abs(value) ((Py_ssize_t)_abs64(value)) -#elif defined (__STDC_VERSION__) && __STDC_VERSION__ >= 199901L - #define __Pyx_sst_abs(value) llabs(value) -#elif defined (__GNUC__) - #define __Pyx_sst_abs(value) __builtin_llabs(value) -#else - #define __Pyx_sst_abs(value) ((value<0) ? -value : value) -#endif -static CYTHON_INLINE const char* __Pyx_PyObject_AsString(PyObject*); -static CYTHON_INLINE const char* __Pyx_PyObject_AsStringAndSize(PyObject*, Py_ssize_t* length); -#define __Pyx_PyByteArray_FromString(s) PyByteArray_FromStringAndSize((const char*)s, strlen((const char*)s)) -#define __Pyx_PyByteArray_FromStringAndSize(s, l) PyByteArray_FromStringAndSize((const char*)s, l) -#define __Pyx_PyBytes_FromString PyBytes_FromString -#define __Pyx_PyBytes_FromStringAndSize PyBytes_FromStringAndSize -static CYTHON_INLINE PyObject* __Pyx_PyUnicode_FromString(const char*); -#if PY_MAJOR_VERSION < 3 - #define __Pyx_PyStr_FromString __Pyx_PyBytes_FromString - #define __Pyx_PyStr_FromStringAndSize __Pyx_PyBytes_FromStringAndSize -#else - #define __Pyx_PyStr_FromString __Pyx_PyUnicode_FromString - #define __Pyx_PyStr_FromStringAndSize __Pyx_PyUnicode_FromStringAndSize -#endif -#define __Pyx_PyBytes_AsWritableString(s) ((char*) PyBytes_AS_STRING(s)) -#define __Pyx_PyBytes_AsWritableSString(s) ((signed char*) PyBytes_AS_STRING(s)) -#define __Pyx_PyBytes_AsWritableUString(s) ((unsigned char*) PyBytes_AS_STRING(s)) -#define __Pyx_PyBytes_AsString(s) ((const char*) PyBytes_AS_STRING(s)) -#define __Pyx_PyBytes_AsSString(s) ((const signed char*) PyBytes_AS_STRING(s)) -#define __Pyx_PyBytes_AsUString(s) ((const unsigned char*) PyBytes_AS_STRING(s)) -#define __Pyx_PyObject_AsWritableString(s) ((char*) __Pyx_PyObject_AsString(s)) -#define __Pyx_PyObject_AsWritableSString(s) ((signed char*) __Pyx_PyObject_AsString(s)) -#define __Pyx_PyObject_AsWritableUString(s) ((unsigned char*) __Pyx_PyObject_AsString(s)) -#define __Pyx_PyObject_AsSString(s) ((const signed char*) __Pyx_PyObject_AsString(s)) -#define __Pyx_PyObject_AsUString(s) ((const unsigned char*) __Pyx_PyObject_AsString(s)) -#define __Pyx_PyObject_FromCString(s) __Pyx_PyObject_FromString((const char*)s) -#define __Pyx_PyBytes_FromCString(s) __Pyx_PyBytes_FromString((const char*)s) -#define __Pyx_PyByteArray_FromCString(s) __Pyx_PyByteArray_FromString((const char*)s) -#define __Pyx_PyStr_FromCString(s) __Pyx_PyStr_FromString((const char*)s) -#define __Pyx_PyUnicode_FromCString(s) __Pyx_PyUnicode_FromString((const char*)s) -static CYTHON_INLINE size_t __Pyx_Py_UNICODE_strlen(const Py_UNICODE *u) { - const Py_UNICODE *u_end = u; - while (*u_end++) ; - return (size_t)(u_end - u - 1); -} -#define __Pyx_PyUnicode_FromUnicode(u) PyUnicode_FromUnicode(u, __Pyx_Py_UNICODE_strlen(u)) -#define __Pyx_PyUnicode_FromUnicodeAndLength PyUnicode_FromUnicode -#define __Pyx_PyUnicode_AsUnicode PyUnicode_AsUnicode -#define __Pyx_NewRef(obj) (Py_INCREF(obj), obj) -#define __Pyx_Owned_Py_None(b) __Pyx_NewRef(Py_None) -static CYTHON_INLINE PyObject * __Pyx_PyBool_FromLong(long b); -static CYTHON_INLINE int __Pyx_PyObject_IsTrue(PyObject*); -static CYTHON_INLINE int __Pyx_PyObject_IsTrueAndDecref(PyObject*); -static CYTHON_INLINE PyObject* __Pyx_PyNumber_IntOrLong(PyObject* x); -#define __Pyx_PySequence_Tuple(obj)\ - (likely(PyTuple_CheckExact(obj)) ? __Pyx_NewRef(obj) : PySequence_Tuple(obj)) -static CYTHON_INLINE Py_ssize_t __Pyx_PyIndex_AsSsize_t(PyObject*); -static CYTHON_INLINE PyObject * __Pyx_PyInt_FromSize_t(size_t); -#if CYTHON_ASSUME_SAFE_MACROS -#define __pyx_PyFloat_AsDouble(x) (PyFloat_CheckExact(x) ? PyFloat_AS_DOUBLE(x) : PyFloat_AsDouble(x)) -#else -#define __pyx_PyFloat_AsDouble(x) PyFloat_AsDouble(x) -#endif -#define __pyx_PyFloat_AsFloat(x) ((float) __pyx_PyFloat_AsDouble(x)) -#if PY_MAJOR_VERSION >= 3 -#define __Pyx_PyNumber_Int(x) (PyLong_CheckExact(x) ? __Pyx_NewRef(x) : PyNumber_Long(x)) -#else -#define __Pyx_PyNumber_Int(x) (PyInt_CheckExact(x) ? __Pyx_NewRef(x) : PyNumber_Int(x)) -#endif -#define __Pyx_PyNumber_Float(x) (PyFloat_CheckExact(x) ? __Pyx_NewRef(x) : PyNumber_Float(x)) -#if PY_MAJOR_VERSION < 3 && __PYX_DEFAULT_STRING_ENCODING_IS_ASCII -static int __Pyx_sys_getdefaultencoding_not_ascii; -static int __Pyx_init_sys_getdefaultencoding_params(void) { - PyObject* sys; - PyObject* default_encoding = NULL; - PyObject* ascii_chars_u = NULL; - PyObject* ascii_chars_b = NULL; - const char* default_encoding_c; - sys = PyImport_ImportModule("sys"); - if (!sys) goto bad; - default_encoding = PyObject_CallMethod(sys, (char*) "getdefaultencoding", NULL); - Py_DECREF(sys); - if (!default_encoding) goto bad; - default_encoding_c = PyBytes_AsString(default_encoding); - if (!default_encoding_c) goto bad; - if (strcmp(default_encoding_c, "ascii") == 0) { - __Pyx_sys_getdefaultencoding_not_ascii = 0; - } else { - char ascii_chars[128]; - int c; - for (c = 0; c < 128; c++) { - ascii_chars[c] = c; - } - __Pyx_sys_getdefaultencoding_not_ascii = 1; - ascii_chars_u = PyUnicode_DecodeASCII(ascii_chars, 128, NULL); - if (!ascii_chars_u) goto bad; - ascii_chars_b = PyUnicode_AsEncodedString(ascii_chars_u, default_encoding_c, NULL); - if (!ascii_chars_b || !PyBytes_Check(ascii_chars_b) || memcmp(ascii_chars, PyBytes_AS_STRING(ascii_chars_b), 128) != 0) { - PyErr_Format( - PyExc_ValueError, - "This module compiled with c_string_encoding=ascii, but default encoding '%.200s' is not a superset of ascii.", - default_encoding_c); - goto bad; - } - Py_DECREF(ascii_chars_u); - Py_DECREF(ascii_chars_b); - } - Py_DECREF(default_encoding); - return 0; -bad: - Py_XDECREF(default_encoding); - Py_XDECREF(ascii_chars_u); - Py_XDECREF(ascii_chars_b); - return -1; -} -#endif -#if __PYX_DEFAULT_STRING_ENCODING_IS_DEFAULT && PY_MAJOR_VERSION >= 3 -#define __Pyx_PyUnicode_FromStringAndSize(c_str, size) PyUnicode_DecodeUTF8(c_str, size, NULL) -#else -#define __Pyx_PyUnicode_FromStringAndSize(c_str, size) PyUnicode_Decode(c_str, size, __PYX_DEFAULT_STRING_ENCODING, NULL) -#if __PYX_DEFAULT_STRING_ENCODING_IS_DEFAULT -static char* __PYX_DEFAULT_STRING_ENCODING; -static int __Pyx_init_sys_getdefaultencoding_params(void) { - PyObject* sys; - PyObject* default_encoding = NULL; - char* default_encoding_c; - sys = PyImport_ImportModule("sys"); - if (!sys) goto bad; - default_encoding = PyObject_CallMethod(sys, (char*) (const char*) "getdefaultencoding", NULL); - Py_DECREF(sys); - if (!default_encoding) goto bad; - default_encoding_c = PyBytes_AsString(default_encoding); - if (!default_encoding_c) goto bad; - __PYX_DEFAULT_STRING_ENCODING = (char*) malloc(strlen(default_encoding_c) + 1); - if (!__PYX_DEFAULT_STRING_ENCODING) goto bad; - strcpy(__PYX_DEFAULT_STRING_ENCODING, default_encoding_c); - Py_DECREF(default_encoding); - return 0; -bad: - Py_XDECREF(default_encoding); - return -1; -} -#endif -#endif - - -/* Test for GCC > 2.95 */ -#if defined(__GNUC__) && (__GNUC__ > 2 || (__GNUC__ == 2 && (__GNUC_MINOR__ > 95))) - #define likely(x) __builtin_expect(!!(x), 1) - #define unlikely(x) __builtin_expect(!!(x), 0) -#else /* !__GNUC__ or GCC < 2.95 */ - #define likely(x) (x) - #define unlikely(x) (x) -#endif /* __GNUC__ */ -static CYTHON_INLINE void __Pyx_pretend_to_initialize(void* ptr) { (void)ptr; } - -static PyObject *__pyx_m = NULL; -static PyObject *__pyx_d; -static PyObject *__pyx_b; -static PyObject *__pyx_cython_runtime = NULL; -static PyObject *__pyx_empty_tuple; -static PyObject *__pyx_empty_bytes; -static PyObject *__pyx_empty_unicode; -static int __pyx_lineno; -static int __pyx_clineno = 0; -static const char * __pyx_cfilenm= __FILE__; -static const char *__pyx_filename; - - -static const char *__pyx_f[] = { - "tls.pyx", - "stringsource", -}; - -/*--- Type declarations ---*/ -struct __pyx_obj_8pmercury_9protocols_3tls_TLS; - -/* "pmercury/protocols/tls.pyx":37 - * - * - * cdef class TLS(): # <<<<<<<<<<<<<< - * cdef bint MALWARE_DB - * cdef bint EXTENDED_FP_METADATA - */ -struct __pyx_obj_8pmercury_9protocols_3tls_TLS { - PyObject_HEAD - int MALWARE_DB; - int EXTENDED_FP_METADATA; - PyObject *tls_params_db; - PyObject *fp_db; - PyObject *app_families; - PyObject *transition_probs; - PyObject *aligner; -}; - - -/* --- Runtime support code (head) --- */ -/* Refnanny.proto */ -#ifndef CYTHON_REFNANNY - #define CYTHON_REFNANNY 0 -#endif -#if CYTHON_REFNANNY - typedef struct { - void (*INCREF)(void*, PyObject*, int); - void (*DECREF)(void*, PyObject*, int); - void (*GOTREF)(void*, PyObject*, int); - void (*GIVEREF)(void*, PyObject*, int); - void* (*SetupContext)(const char*, int, const char*); - void (*FinishContext)(void**); - } __Pyx_RefNannyAPIStruct; - static __Pyx_RefNannyAPIStruct *__Pyx_RefNanny = NULL; - static __Pyx_RefNannyAPIStruct *__Pyx_RefNannyImportAPI(const char *modname); - #define __Pyx_RefNannyDeclarations void *__pyx_refnanny = NULL; -#ifdef WITH_THREAD - #define __Pyx_RefNannySetupContext(name, acquire_gil)\ - if (acquire_gil) {\ - PyGILState_STATE __pyx_gilstate_save = PyGILState_Ensure();\ - __pyx_refnanny = __Pyx_RefNanny->SetupContext((name), __LINE__, __FILE__);\ - PyGILState_Release(__pyx_gilstate_save);\ - } else {\ - __pyx_refnanny = __Pyx_RefNanny->SetupContext((name), __LINE__, __FILE__);\ - } -#else - #define __Pyx_RefNannySetupContext(name, acquire_gil)\ - __pyx_refnanny = __Pyx_RefNanny->SetupContext((name), __LINE__, __FILE__) -#endif - #define __Pyx_RefNannyFinishContext()\ - __Pyx_RefNanny->FinishContext(&__pyx_refnanny) - #define __Pyx_INCREF(r) __Pyx_RefNanny->INCREF(__pyx_refnanny, (PyObject *)(r), __LINE__) - #define __Pyx_DECREF(r) __Pyx_RefNanny->DECREF(__pyx_refnanny, (PyObject *)(r), __LINE__) - #define __Pyx_GOTREF(r) __Pyx_RefNanny->GOTREF(__pyx_refnanny, (PyObject *)(r), __LINE__) - #define __Pyx_GIVEREF(r) __Pyx_RefNanny->GIVEREF(__pyx_refnanny, (PyObject *)(r), __LINE__) - #define __Pyx_XINCREF(r) do { if((r) != NULL) {__Pyx_INCREF(r); }} while(0) - #define __Pyx_XDECREF(r) do { if((r) != NULL) {__Pyx_DECREF(r); }} while(0) - #define __Pyx_XGOTREF(r) do { if((r) != NULL) {__Pyx_GOTREF(r); }} while(0) - #define __Pyx_XGIVEREF(r) do { if((r) != NULL) {__Pyx_GIVEREF(r);}} while(0) -#else - #define __Pyx_RefNannyDeclarations - #define __Pyx_RefNannySetupContext(name, acquire_gil) - #define __Pyx_RefNannyFinishContext() - #define __Pyx_INCREF(r) Py_INCREF(r) - #define __Pyx_DECREF(r) Py_DECREF(r) - #define __Pyx_GOTREF(r) - #define __Pyx_GIVEREF(r) - #define __Pyx_XINCREF(r) Py_XINCREF(r) - #define __Pyx_XDECREF(r) Py_XDECREF(r) - #define __Pyx_XGOTREF(r) - #define __Pyx_XGIVEREF(r) -#endif -#define __Pyx_XDECREF_SET(r, v) do {\ - PyObject *tmp = (PyObject *) r;\ - r = v; __Pyx_XDECREF(tmp);\ - } while (0) -#define __Pyx_DECREF_SET(r, v) do {\ - PyObject *tmp = (PyObject *) r;\ - r = v; __Pyx_DECREF(tmp);\ - } while (0) -#define __Pyx_CLEAR(r) do { PyObject* tmp = ((PyObject*)(r)); r = NULL; __Pyx_DECREF(tmp);} while(0) -#define __Pyx_XCLEAR(r) do { if((r) != NULL) {PyObject* tmp = ((PyObject*)(r)); r = NULL; __Pyx_DECREF(tmp);}} while(0) - -/* PyObjectGetAttrStr.proto */ -#if CYTHON_USE_TYPE_SLOTS -static CYTHON_INLINE PyObject* __Pyx_PyObject_GetAttrStr(PyObject* obj, PyObject* attr_name); -#else -#define __Pyx_PyObject_GetAttrStr(o,n) PyObject_GetAttr(o,n) -#endif - -/* GetBuiltinName.proto */ -static PyObject *__Pyx_GetBuiltinName(PyObject *name); - -/* RaiseDoubleKeywords.proto */ -static void __Pyx_RaiseDoubleKeywordsError(const char* func_name, PyObject* kw_name); - -/* ParseKeywords.proto */ -static int __Pyx_ParseOptionalKeywords(PyObject *kwds, PyObject **argnames[],\ - PyObject *kwds2, PyObject *values[], Py_ssize_t num_pos_args,\ - const char* function_name); - -/* RaiseArgTupleInvalid.proto */ -static void __Pyx_RaiseArgtupleInvalid(const char* func_name, int exact, - Py_ssize_t num_min, Py_ssize_t num_max, Py_ssize_t num_found); - -/* IncludeStringH.proto */ -#include - -/* BytesEquals.proto */ -static CYTHON_INLINE int __Pyx_PyBytes_Equals(PyObject* s1, PyObject* s2, int equals); - -/* UnicodeEquals.proto */ -static CYTHON_INLINE int __Pyx_PyUnicode_Equals(PyObject* s1, PyObject* s2, int equals); - -/* PyDictVersioning.proto */ -#if CYTHON_USE_DICT_VERSIONS && CYTHON_USE_TYPE_SLOTS -#define __PYX_DICT_VERSION_INIT ((PY_UINT64_T) -1) -#define __PYX_GET_DICT_VERSION(dict) (((PyDictObject*)(dict))->ma_version_tag) -#define __PYX_UPDATE_DICT_CACHE(dict, value, cache_var, version_var)\ - (version_var) = __PYX_GET_DICT_VERSION(dict);\ - (cache_var) = (value); -#define __PYX_PY_DICT_LOOKUP_IF_MODIFIED(VAR, DICT, LOOKUP) {\ - static PY_UINT64_T __pyx_dict_version = 0;\ - static PyObject *__pyx_dict_cached_value = NULL;\ - if (likely(__PYX_GET_DICT_VERSION(DICT) == __pyx_dict_version)) {\ - (VAR) = __pyx_dict_cached_value;\ - } else {\ - (VAR) = __pyx_dict_cached_value = (LOOKUP);\ - __pyx_dict_version = __PYX_GET_DICT_VERSION(DICT);\ - }\ -} -static CYTHON_INLINE PY_UINT64_T __Pyx_get_tp_dict_version(PyObject *obj); -static CYTHON_INLINE PY_UINT64_T __Pyx_get_object_dict_version(PyObject *obj); -static CYTHON_INLINE int __Pyx_object_dict_version_matches(PyObject* obj, PY_UINT64_T tp_dict_version, PY_UINT64_T obj_dict_version); -#else -#define __PYX_GET_DICT_VERSION(dict) (0) -#define __PYX_UPDATE_DICT_CACHE(dict, value, cache_var, version_var) -#define __PYX_PY_DICT_LOOKUP_IF_MODIFIED(VAR, DICT, LOOKUP) (VAR) = (LOOKUP); -#endif - -/* GetModuleGlobalName.proto */ -#if CYTHON_USE_DICT_VERSIONS -#define __Pyx_GetModuleGlobalName(var, name) {\ - static PY_UINT64_T __pyx_dict_version = 0;\ - static PyObject *__pyx_dict_cached_value = NULL;\ - (var) = (likely(__pyx_dict_version == __PYX_GET_DICT_VERSION(__pyx_d))) ?\ - (likely(__pyx_dict_cached_value) ? __Pyx_NewRef(__pyx_dict_cached_value) : __Pyx_GetBuiltinName(name)) :\ - __Pyx__GetModuleGlobalName(name, &__pyx_dict_version, &__pyx_dict_cached_value);\ -} -#define __Pyx_GetModuleGlobalNameUncached(var, name) {\ - PY_UINT64_T __pyx_dict_version;\ - PyObject *__pyx_dict_cached_value;\ - (var) = __Pyx__GetModuleGlobalName(name, &__pyx_dict_version, &__pyx_dict_cached_value);\ -} -static PyObject *__Pyx__GetModuleGlobalName(PyObject *name, PY_UINT64_T *dict_version, PyObject **dict_cached_value); -#else -#define __Pyx_GetModuleGlobalName(var, name) (var) = __Pyx__GetModuleGlobalName(name) -#define __Pyx_GetModuleGlobalNameUncached(var, name) (var) = __Pyx__GetModuleGlobalName(name) -static CYTHON_INLINE PyObject *__Pyx__GetModuleGlobalName(PyObject *name); -#endif - -/* PyCFunctionFastCall.proto */ -#if CYTHON_FAST_PYCCALL -static CYTHON_INLINE PyObject *__Pyx_PyCFunction_FastCall(PyObject *func, PyObject **args, Py_ssize_t nargs); -#else -#define __Pyx_PyCFunction_FastCall(func, args, nargs) (assert(0), NULL) -#endif - -/* PyFunctionFastCall.proto */ -#if CYTHON_FAST_PYCALL -#define __Pyx_PyFunction_FastCall(func, args, nargs)\ - __Pyx_PyFunction_FastCallDict((func), (args), (nargs), NULL) -#if 1 || PY_VERSION_HEX < 0x030600B1 -static PyObject *__Pyx_PyFunction_FastCallDict(PyObject *func, PyObject **args, Py_ssize_t nargs, PyObject *kwargs); -#else -#define __Pyx_PyFunction_FastCallDict(func, args, nargs, kwargs) _PyFunction_FastCallDict(func, args, nargs, kwargs) -#endif -#define __Pyx_BUILD_ASSERT_EXPR(cond)\ - (sizeof(char [1 - 2*!(cond)]) - 1) -#ifndef Py_MEMBER_SIZE -#define Py_MEMBER_SIZE(type, member) sizeof(((type *)0)->member) -#endif - static size_t __pyx_pyframe_localsplus_offset = 0; - #include "frameobject.h" - #define __Pxy_PyFrame_Initialize_Offsets()\ - ((void)__Pyx_BUILD_ASSERT_EXPR(sizeof(PyFrameObject) == offsetof(PyFrameObject, f_localsplus) + Py_MEMBER_SIZE(PyFrameObject, f_localsplus)),\ - (void)(__pyx_pyframe_localsplus_offset = ((size_t)PyFrame_Type.tp_basicsize) - Py_MEMBER_SIZE(PyFrameObject, f_localsplus))) - #define __Pyx_PyFrame_GetLocalsplus(frame)\ - (assert(__pyx_pyframe_localsplus_offset), (PyObject **)(((char *)(frame)) + __pyx_pyframe_localsplus_offset)) -#endif - -/* PyObjectCall.proto */ -#if CYTHON_COMPILING_IN_CPYTHON -static CYTHON_INLINE PyObject* __Pyx_PyObject_Call(PyObject *func, PyObject *arg, PyObject *kw); -#else -#define __Pyx_PyObject_Call(func, arg, kw) PyObject_Call(func, arg, kw) -#endif - -/* PyObjectCall2Args.proto */ -static CYTHON_UNUSED PyObject* __Pyx_PyObject_Call2Args(PyObject* function, PyObject* arg1, PyObject* arg2); - -/* PyObjectCallMethO.proto */ -#if CYTHON_COMPILING_IN_CPYTHON -static CYTHON_INLINE PyObject* __Pyx_PyObject_CallMethO(PyObject *func, PyObject *arg); -#endif - -/* PyObjectCallOneArg.proto */ -static CYTHON_INLINE PyObject* __Pyx_PyObject_CallOneArg(PyObject *func, PyObject *arg); - -/* PyObjectCallNoArg.proto */ -#if CYTHON_COMPILING_IN_CPYTHON -static CYTHON_INLINE PyObject* __Pyx_PyObject_CallNoArg(PyObject *func); -#else -#define __Pyx_PyObject_CallNoArg(func) __Pyx_PyObject_Call(func, __pyx_empty_tuple, NULL) -#endif - -/* GetItemInt.proto */ -#define __Pyx_GetItemInt(o, i, type, is_signed, to_py_func, is_list, wraparound, boundscheck)\ - (__Pyx_fits_Py_ssize_t(i, type, is_signed) ?\ - __Pyx_GetItemInt_Fast(o, (Py_ssize_t)i, is_list, wraparound, boundscheck) :\ - (is_list ? (PyErr_SetString(PyExc_IndexError, "list index out of range"), (PyObject*)NULL) :\ - __Pyx_GetItemInt_Generic(o, to_py_func(i)))) -#define __Pyx_GetItemInt_List(o, i, type, is_signed, to_py_func, is_list, wraparound, boundscheck)\ - (__Pyx_fits_Py_ssize_t(i, type, is_signed) ?\ - __Pyx_GetItemInt_List_Fast(o, (Py_ssize_t)i, wraparound, boundscheck) :\ - (PyErr_SetString(PyExc_IndexError, "list index out of range"), (PyObject*)NULL)) -static CYTHON_INLINE PyObject *__Pyx_GetItemInt_List_Fast(PyObject *o, Py_ssize_t i, - int wraparound, int boundscheck); -#define __Pyx_GetItemInt_Tuple(o, i, type, is_signed, to_py_func, is_list, wraparound, boundscheck)\ - (__Pyx_fits_Py_ssize_t(i, type, is_signed) ?\ - __Pyx_GetItemInt_Tuple_Fast(o, (Py_ssize_t)i, wraparound, boundscheck) :\ - (PyErr_SetString(PyExc_IndexError, "tuple index out of range"), (PyObject*)NULL)) -static CYTHON_INLINE PyObject *__Pyx_GetItemInt_Tuple_Fast(PyObject *o, Py_ssize_t i, - int wraparound, int boundscheck); -static PyObject *__Pyx_GetItemInt_Generic(PyObject *o, PyObject* j); -static CYTHON_INLINE PyObject *__Pyx_GetItemInt_Fast(PyObject *o, Py_ssize_t i, - int is_list, int wraparound, int boundscheck); - -/* PyDictContains.proto */ -static CYTHON_INLINE int __Pyx_PyDict_ContainsTF(PyObject* item, PyObject* dict, int eq) { - int result = PyDict_Contains(dict, item); - return unlikely(result < 0) ? result : (result == (eq == Py_EQ)); -} - -/* DictGetItem.proto */ -#if PY_MAJOR_VERSION >= 3 && !CYTHON_COMPILING_IN_PYPY -static PyObject *__Pyx_PyDict_GetItem(PyObject *d, PyObject* key); -#define __Pyx_PyObject_Dict_GetItem(obj, name)\ - (likely(PyDict_CheckExact(obj)) ?\ - __Pyx_PyDict_GetItem(obj, name) : PyObject_GetItem(obj, name)) -#else -#define __Pyx_PyDict_GetItem(d, key) PyObject_GetItem(d, key) -#define __Pyx_PyObject_Dict_GetItem(obj, name) PyObject_GetItem(obj, name) -#endif - -/* ArgTypeTest.proto */ -#define __Pyx_ArgTypeTest(obj, type, none_allowed, name, exact)\ - ((likely((Py_TYPE(obj) == type) | (none_allowed && (obj == Py_None)))) ? 1 :\ - __Pyx__ArgTypeTest(obj, type, name, exact)) -static int __Pyx__ArgTypeTest(PyObject *obj, PyTypeObject *type, const char *name, int exact); - -/* None.proto */ -static CYTHON_INLINE void __Pyx_RaiseUnboundLocalError(const char *varname); - -/* PySequenceContains.proto */ -static CYTHON_INLINE int __Pyx_PySequence_ContainsTF(PyObject* item, PyObject* seq, int eq) { - int result = PySequence_Contains(seq, item); - return unlikely(result < 0) ? result : (result == (eq == Py_EQ)); -} - -/* PyIntCompare.proto */ -static CYTHON_INLINE PyObject* __Pyx_PyInt_EqObjC(PyObject *op1, PyObject *op2, long intval, long inplace); - -/* ObjectGetItem.proto */ -#if CYTHON_USE_TYPE_SLOTS -static CYTHON_INLINE PyObject *__Pyx_PyObject_GetItem(PyObject *obj, PyObject* key); -#else -#define __Pyx_PyObject_GetItem(obj, key) PyObject_GetItem(obj, key) -#endif - -/* PyIntBinop.proto */ -#if !CYTHON_COMPILING_IN_PYPY -static PyObject* __Pyx_PyInt_AddObjC(PyObject *op1, PyObject *op2, long intval, int inplace, int zerodivision_check); -#else -#define __Pyx_PyInt_AddObjC(op1, op2, intval, inplace, zerodivision_check)\ - (inplace ? PyNumber_InPlaceAdd(op1, op2) : PyNumber_Add(op1, op2)) -#endif - -/* BuildPyUnicode.proto */ -static PyObject* __Pyx_PyUnicode_BuildFromAscii(Py_ssize_t ulength, char* chars, int clength, - int prepend_sign, char padding_char); - -/* CIntToPyUnicode.proto */ -static CYTHON_INLINE PyObject* __Pyx_PyUnicode_From_unsigned_char(unsigned char value, Py_ssize_t width, char padding_char, char format_char); - -/* JoinPyUnicode.proto */ -static PyObject* __Pyx_PyUnicode_Join(PyObject* value_tuple, Py_ssize_t value_count, Py_ssize_t result_ulength, - Py_UCS4 max_char); - -/* ListAppend.proto */ -#if CYTHON_USE_PYLIST_INTERNALS && CYTHON_ASSUME_SAFE_MACROS -static CYTHON_INLINE int __Pyx_PyList_Append(PyObject* list, PyObject* x) { - PyListObject* L = (PyListObject*) list; - Py_ssize_t len = Py_SIZE(list); - if (likely(L->allocated > len) & likely(len > (L->allocated >> 1))) { - Py_INCREF(x); - PyList_SET_ITEM(list, len, x); - Py_SIZE(list) = len+1; - return 0; - } - return PyList_Append(list, x); -} -#else -#define __Pyx_PyList_Append(L,x) PyList_Append(L,x) -#endif - -/* RaiseTooManyValuesToUnpack.proto */ -static CYTHON_INLINE void __Pyx_RaiseTooManyValuesError(Py_ssize_t expected); - -/* RaiseNeedMoreValuesToUnpack.proto */ -static CYTHON_INLINE void __Pyx_RaiseNeedMoreValuesError(Py_ssize_t index); - -/* IterFinish.proto */ -static CYTHON_INLINE int __Pyx_IterFinish(void); - -/* UnpackItemEndCheck.proto */ -static int __Pyx_IternextUnpackEndCheck(PyObject *retval, Py_ssize_t expected); - -/* PyIntBinop.proto */ -#if !CYTHON_COMPILING_IN_PYPY -static PyObject* __Pyx_PyInt_AddCObj(PyObject *op1, PyObject *op2, long intval, int inplace, int zerodivision_check); -#else -#define __Pyx_PyInt_AddCObj(op1, op2, intval, inplace, zerodivision_check)\ - (inplace ? PyNumber_InPlaceAdd(op1, op2) : PyNumber_Add(op1, op2)) -#endif - -/* ListCompAppend.proto */ -#if CYTHON_USE_PYLIST_INTERNALS && CYTHON_ASSUME_SAFE_MACROS -static CYTHON_INLINE int __Pyx_ListComp_Append(PyObject* list, PyObject* x) { - PyListObject* L = (PyListObject*) list; - Py_ssize_t len = Py_SIZE(list); - if (likely(L->allocated > len)) { - Py_INCREF(x); - PyList_SET_ITEM(list, len, x); - Py_SIZE(list) = len+1; - return 0; - } - return PyList_Append(list, x); -} -#else -#define __Pyx_ListComp_Append(L,x) PyList_Append(L,x) -#endif - -/* PyFloatBinop.proto */ -#if !CYTHON_COMPILING_IN_PYPY -static PyObject* __Pyx_PyFloat_EqObjC(PyObject *op1, PyObject *op2, double floatval, int inplace, int zerodivision_check); -#else -#define __Pyx_PyFloat_EqObjC(op1, op2, floatval, inplace, zerodivision_check)\ - (PyObject_RichCompare(op1, op2, Py_EQ)) - #endif - -/* PyObjectGetMethod.proto */ -static int __Pyx_PyObject_GetMethod(PyObject *obj, PyObject *name, PyObject **method); - -/* PyObjectCallMethod1.proto */ -static PyObject* __Pyx_PyObject_CallMethod1(PyObject* obj, PyObject* method_name, PyObject* arg); - -/* pop_index.proto */ -static PyObject* __Pyx__PyObject_PopNewIndex(PyObject* L, PyObject* py_ix); -static PyObject* __Pyx__PyObject_PopIndex(PyObject* L, PyObject* py_ix); -#if CYTHON_USE_PYLIST_INTERNALS && CYTHON_ASSUME_SAFE_MACROS -static PyObject* __Pyx__PyList_PopIndex(PyObject* L, PyObject* py_ix, Py_ssize_t ix); -#define __Pyx_PyObject_PopIndex(L, py_ix, ix, is_signed, type, to_py_func) (\ - (likely(PyList_CheckExact(L) && __Pyx_fits_Py_ssize_t(ix, type, is_signed))) ?\ - __Pyx__PyList_PopIndex(L, py_ix, ix) : (\ - (unlikely((py_ix) == Py_None)) ? __Pyx__PyObject_PopNewIndex(L, to_py_func(ix)) :\ - __Pyx__PyObject_PopIndex(L, py_ix))) -#define __Pyx_PyList_PopIndex(L, py_ix, ix, is_signed, type, to_py_func) (\ - __Pyx_fits_Py_ssize_t(ix, type, is_signed) ?\ - __Pyx__PyList_PopIndex(L, py_ix, ix) : (\ - (unlikely((py_ix) == Py_None)) ? __Pyx__PyObject_PopNewIndex(L, to_py_func(ix)) :\ - __Pyx__PyObject_PopIndex(L, py_ix))) -#else -#define __Pyx_PyList_PopIndex(L, py_ix, ix, is_signed, type, to_py_func)\ - __Pyx_PyObject_PopIndex(L, py_ix, ix, is_signed, type, to_py_func) -#define __Pyx_PyObject_PopIndex(L, py_ix, ix, is_signed, type, to_py_func) (\ - (unlikely((py_ix) == Py_None)) ? __Pyx__PyObject_PopNewIndex(L, to_py_func(ix)) :\ - __Pyx__PyObject_PopIndex(L, py_ix)) -#endif - -/* SliceObject.proto */ -static CYTHON_INLINE PyObject* __Pyx_PyObject_GetSlice( - PyObject* obj, Py_ssize_t cstart, Py_ssize_t cstop, - PyObject** py_start, PyObject** py_stop, PyObject** py_slice, - int has_cstart, int has_cstop, int wraparound); - -/* PyThreadStateGet.proto */ -#if CYTHON_FAST_THREAD_STATE -#define __Pyx_PyThreadState_declare PyThreadState *__pyx_tstate; -#define __Pyx_PyThreadState_assign __pyx_tstate = __Pyx_PyThreadState_Current; -#define __Pyx_PyErr_Occurred() __pyx_tstate->curexc_type -#else -#define __Pyx_PyThreadState_declare -#define __Pyx_PyThreadState_assign -#define __Pyx_PyErr_Occurred() PyErr_Occurred() -#endif - -/* PyErrFetchRestore.proto */ -#if CYTHON_FAST_THREAD_STATE -#define __Pyx_PyErr_Clear() __Pyx_ErrRestore(NULL, NULL, NULL) -#define __Pyx_ErrRestoreWithState(type, value, tb) __Pyx_ErrRestoreInState(PyThreadState_GET(), type, value, tb) -#define __Pyx_ErrFetchWithState(type, value, tb) __Pyx_ErrFetchInState(PyThreadState_GET(), type, value, tb) -#define __Pyx_ErrRestore(type, value, tb) __Pyx_ErrRestoreInState(__pyx_tstate, type, value, tb) -#define __Pyx_ErrFetch(type, value, tb) __Pyx_ErrFetchInState(__pyx_tstate, type, value, tb) -static CYTHON_INLINE void __Pyx_ErrRestoreInState(PyThreadState *tstate, PyObject *type, PyObject *value, PyObject *tb); -static CYTHON_INLINE void __Pyx_ErrFetchInState(PyThreadState *tstate, PyObject **type, PyObject **value, PyObject **tb); -#if CYTHON_COMPILING_IN_CPYTHON -#define __Pyx_PyErr_SetNone(exc) (Py_INCREF(exc), __Pyx_ErrRestore((exc), NULL, NULL)) -#else -#define __Pyx_PyErr_SetNone(exc) PyErr_SetNone(exc) -#endif -#else -#define __Pyx_PyErr_Clear() PyErr_Clear() -#define __Pyx_PyErr_SetNone(exc) PyErr_SetNone(exc) -#define __Pyx_ErrRestoreWithState(type, value, tb) PyErr_Restore(type, value, tb) -#define __Pyx_ErrFetchWithState(type, value, tb) PyErr_Fetch(type, value, tb) -#define __Pyx_ErrRestoreInState(tstate, type, value, tb) PyErr_Restore(type, value, tb) -#define __Pyx_ErrFetchInState(tstate, type, value, tb) PyErr_Fetch(type, value, tb) -#define __Pyx_ErrRestore(type, value, tb) PyErr_Restore(type, value, tb) -#define __Pyx_ErrFetch(type, value, tb) PyErr_Fetch(type, value, tb) -#endif - -/* IterNext.proto */ -#define __Pyx_PyIter_Next(obj) __Pyx_PyIter_Next2(obj, NULL) -static CYTHON_INLINE PyObject *__Pyx_PyIter_Next2(PyObject *, PyObject *); - -/* GetTopmostException.proto */ -#if CYTHON_USE_EXC_INFO_STACK -static _PyErr_StackItem * __Pyx_PyErr_GetTopmostException(PyThreadState *tstate); -#endif - -/* SaveResetException.proto */ -#if CYTHON_FAST_THREAD_STATE -#define __Pyx_ExceptionSave(type, value, tb) __Pyx__ExceptionSave(__pyx_tstate, type, value, tb) -static CYTHON_INLINE void __Pyx__ExceptionSave(PyThreadState *tstate, PyObject **type, PyObject **value, PyObject **tb); -#define __Pyx_ExceptionReset(type, value, tb) __Pyx__ExceptionReset(__pyx_tstate, type, value, tb) -static CYTHON_INLINE void __Pyx__ExceptionReset(PyThreadState *tstate, PyObject *type, PyObject *value, PyObject *tb); -#else -#define __Pyx_ExceptionSave(type, value, tb) PyErr_GetExcInfo(type, value, tb) -#define __Pyx_ExceptionReset(type, value, tb) PyErr_SetExcInfo(type, value, tb) -#endif - -/* PyErrExceptionMatches.proto */ -#if CYTHON_FAST_THREAD_STATE -#define __Pyx_PyErr_ExceptionMatches(err) __Pyx_PyErr_ExceptionMatchesInState(__pyx_tstate, err) -static CYTHON_INLINE int __Pyx_PyErr_ExceptionMatchesInState(PyThreadState* tstate, PyObject* err); -#else -#define __Pyx_PyErr_ExceptionMatches(err) PyErr_ExceptionMatches(err) -#endif - -/* GetException.proto */ -#if CYTHON_FAST_THREAD_STATE -#define __Pyx_GetException(type, value, tb) __Pyx__GetException(__pyx_tstate, type, value, tb) -static int __Pyx__GetException(PyThreadState *tstate, PyObject **type, PyObject **value, PyObject **tb); -#else -static int __Pyx_GetException(PyObject **type, PyObject **value, PyObject **tb); -#endif - -/* PyFloatBinop.proto */ -#if !CYTHON_COMPILING_IN_PYPY -static PyObject* __Pyx_PyFloat_SubtractCObj(PyObject *op1, PyObject *op2, double floatval, int inplace, int zerodivision_check); -#else -#define __Pyx_PyFloat_SubtractCObj(op1, op2, floatval, inplace, zerodivision_check)\ - (inplace ? PyNumber_InPlaceSubtract(op1, op2) : PyNumber_Subtract(op1, op2)) -#endif - -/* PyObjectCallMethod0.proto */ -static PyObject* __Pyx_PyObject_CallMethod0(PyObject* obj, PyObject* method_name); - -/* RaiseNoneIterError.proto */ -static CYTHON_INLINE void __Pyx_RaiseNoneNotIterableError(void); - -/* UnpackTupleError.proto */ -static void __Pyx_UnpackTupleError(PyObject *, Py_ssize_t index); - -/* UnpackTuple2.proto */ -#define __Pyx_unpack_tuple2(tuple, value1, value2, is_tuple, has_known_size, decref_tuple)\ - (likely(is_tuple || PyTuple_Check(tuple)) ?\ - (likely(has_known_size || PyTuple_GET_SIZE(tuple) == 2) ?\ - __Pyx_unpack_tuple2_exact(tuple, value1, value2, decref_tuple) :\ - (__Pyx_UnpackTupleError(tuple, 2), -1)) :\ - __Pyx_unpack_tuple2_generic(tuple, value1, value2, has_known_size, decref_tuple)) -static CYTHON_INLINE int __Pyx_unpack_tuple2_exact( - PyObject* tuple, PyObject** value1, PyObject** value2, int decref_tuple); -static int __Pyx_unpack_tuple2_generic( - PyObject* tuple, PyObject** value1, PyObject** value2, int has_known_size, int decref_tuple); - -/* dict_iter.proto */ -static CYTHON_INLINE PyObject* __Pyx_dict_iterator(PyObject* dict, int is_dict, PyObject* method_name, - Py_ssize_t* p_orig_length, int* p_is_dict); -static CYTHON_INLINE int __Pyx_dict_iter_next(PyObject* dict_or_iter, Py_ssize_t orig_length, Py_ssize_t* ppos, - PyObject** pkey, PyObject** pvalue, PyObject** pitem, int is_dict); - -/* UnpackUnboundCMethod.proto */ -typedef struct { - PyObject *type; - PyObject **method_name; - PyCFunction func; - PyObject *method; - int flag; -} __Pyx_CachedCFunction; - -/* CallUnboundCMethod1.proto */ -static PyObject* __Pyx__CallUnboundCMethod1(__Pyx_CachedCFunction* cfunc, PyObject* self, PyObject* arg); -#if CYTHON_COMPILING_IN_CPYTHON -static CYTHON_INLINE PyObject* __Pyx_CallUnboundCMethod1(__Pyx_CachedCFunction* cfunc, PyObject* self, PyObject* arg); -#else -#define __Pyx_CallUnboundCMethod1(cfunc, self, arg) __Pyx__CallUnboundCMethod1(cfunc, self, arg) -#endif - -/* SliceTupleAndList.proto */ -#if CYTHON_COMPILING_IN_CPYTHON -static CYTHON_INLINE PyObject* __Pyx_PyList_GetSlice(PyObject* src, Py_ssize_t start, Py_ssize_t stop); -static CYTHON_INLINE PyObject* __Pyx_PyTuple_GetSlice(PyObject* src, Py_ssize_t start, Py_ssize_t stop); -#else -#define __Pyx_PyList_GetSlice(seq, start, stop) PySequence_GetSlice(seq, start, stop) -#define __Pyx_PyTuple_GetSlice(seq, start, stop) PySequence_GetSlice(seq, start, stop) -#endif - -/* GetAttr.proto */ -static CYTHON_INLINE PyObject *__Pyx_GetAttr(PyObject *, PyObject *); - -/* GetAttr3.proto */ -static CYTHON_INLINE PyObject *__Pyx_GetAttr3(PyObject *, PyObject *, PyObject *); - -/* Import.proto */ -static PyObject *__Pyx_Import(PyObject *name, PyObject *from_list, int level); - -/* ImportFrom.proto */ -static PyObject* __Pyx_ImportFrom(PyObject* module, PyObject* name); - -/* RaiseException.proto */ -static void __Pyx_Raise(PyObject *type, PyObject *value, PyObject *tb, PyObject *cause); - -/* HasAttr.proto */ -static CYTHON_INLINE int __Pyx_HasAttr(PyObject *, PyObject *); - -/* PyObject_GenericGetAttrNoDict.proto */ -#if CYTHON_USE_TYPE_SLOTS && CYTHON_USE_PYTYPE_LOOKUP && PY_VERSION_HEX < 0x03070000 -static CYTHON_INLINE PyObject* __Pyx_PyObject_GenericGetAttrNoDict(PyObject* obj, PyObject* attr_name); -#else -#define __Pyx_PyObject_GenericGetAttrNoDict PyObject_GenericGetAttr -#endif - -/* PyObject_GenericGetAttr.proto */ -#if CYTHON_USE_TYPE_SLOTS && CYTHON_USE_PYTYPE_LOOKUP && PY_VERSION_HEX < 0x03070000 -static PyObject* __Pyx_PyObject_GenericGetAttr(PyObject* obj, PyObject* attr_name); -#else -#define __Pyx_PyObject_GenericGetAttr PyObject_GenericGetAttr -#endif - -/* SetupReduce.proto */ -static int __Pyx_setup_reduce(PyObject* type_obj); - -/* append.proto */ -static CYTHON_INLINE int __Pyx_PyObject_Append(PyObject* L, PyObject* x); - -/* GetNameInClass.proto */ -#define __Pyx_GetNameInClass(var, nmspace, name) (var) = __Pyx__GetNameInClass(nmspace, name) -static PyObject *__Pyx__GetNameInClass(PyObject *nmspace, PyObject *name); - -/* CLineInTraceback.proto */ -#ifdef CYTHON_CLINE_IN_TRACEBACK -#define __Pyx_CLineForTraceback(tstate, c_line) (((CYTHON_CLINE_IN_TRACEBACK)) ? c_line : 0) -#else -static int __Pyx_CLineForTraceback(PyThreadState *tstate, int c_line); -#endif - -/* CodeObjectCache.proto */ -typedef struct { - PyCodeObject* code_object; - int code_line; -} __Pyx_CodeObjectCacheEntry; -struct __Pyx_CodeObjectCache { - int count; - int max_count; - __Pyx_CodeObjectCacheEntry* entries; -}; -static struct __Pyx_CodeObjectCache __pyx_code_cache = {0,0,NULL}; -static int __pyx_bisect_code_objects(__Pyx_CodeObjectCacheEntry* entries, int count, int code_line); -static PyCodeObject *__pyx_find_code_object(int code_line); -static void __pyx_insert_code_object(int code_line, PyCodeObject* code_object); - -/* AddTraceback.proto */ -static void __Pyx_AddTraceback(const char *funcname, int c_line, - int py_line, const char *filename); - -/* CIntToPy.proto */ -static CYTHON_INLINE PyObject* __Pyx_PyInt_From_long(long value); - -/* CIntToPy.proto */ -static CYTHON_INLINE PyObject* __Pyx_PyInt_From_unsigned_int(unsigned int value); - -/* CIntToPy.proto */ -static CYTHON_INLINE PyObject* __Pyx_PyInt_From_uint16_t(uint16_t value); - -/* CIntToPy.proto */ -static CYTHON_INLINE PyObject* __Pyx_PyInt_From_uint64_t(uint64_t value); - -/* CIntFromPy.proto */ -static CYTHON_INLINE unsigned int __Pyx_PyInt_As_unsigned_int(PyObject *); - -/* CIntFromPy.proto */ -static CYTHON_INLINE long __Pyx_PyInt_As_long(PyObject *); - -/* CIntFromPy.proto */ -static CYTHON_INLINE uint64_t __Pyx_PyInt_As_uint64_t(PyObject *); - -/* CIntFromPy.proto */ -static CYTHON_INLINE uint16_t __Pyx_PyInt_As_uint16_t(PyObject *); - -/* CIntFromPy.proto */ -static CYTHON_INLINE int __Pyx_PyInt_As_int(PyObject *); - -/* FastTypeChecks.proto */ -#if CYTHON_COMPILING_IN_CPYTHON -#define __Pyx_TypeCheck(obj, type) __Pyx_IsSubtype(Py_TYPE(obj), (PyTypeObject *)type) -static CYTHON_INLINE int __Pyx_IsSubtype(PyTypeObject *a, PyTypeObject *b); -static CYTHON_INLINE int __Pyx_PyErr_GivenExceptionMatches(PyObject *err, PyObject *type); -static CYTHON_INLINE int __Pyx_PyErr_GivenExceptionMatches2(PyObject *err, PyObject *type1, PyObject *type2); -#else -#define __Pyx_TypeCheck(obj, type) PyObject_TypeCheck(obj, (PyTypeObject *)type) -#define __Pyx_PyErr_GivenExceptionMatches(err, type) PyErr_GivenExceptionMatches(err, type) -#define __Pyx_PyErr_GivenExceptionMatches2(err, type1, type2) (PyErr_GivenExceptionMatches(err, type1) || PyErr_GivenExceptionMatches(err, type2)) -#endif -#define __Pyx_PyException_Check(obj) __Pyx_TypeCheck(obj, PyExc_Exception) - -/* CStringEquals.proto */ -static CYTHON_INLINE int __Pyx_StrEq(const char *, const char *); - -/* CheckBinaryVersion.proto */ -static int __Pyx_check_binary_version(void); - -/* InitStrings.proto */ -static int __Pyx_InitStrings(__Pyx_StringTabEntry *t); - - -/* Module declarations from 'libc.math' */ - -/* Module declarations from 'libc.stdint' */ - -/* Module declarations from 'pmercury.protocols.tls' */ -static PyTypeObject *__pyx_ptype_8pmercury_9protocols_3tls_TLS = 0; -static PyObject *__pyx_f_8pmercury_9protocols_3tls___pyx_unpickle_TLS__set_state(struct __pyx_obj_8pmercury_9protocols_3tls_TLS *, PyObject *); /*proto*/ -#define __Pyx_MODULE_NAME "pmercury.protocols.tls" -extern int __pyx_module_is_main_pmercury__protocols__tls; -int __pyx_module_is_main_pmercury__protocols__tls = 0; - -/* Implementation of 'pmercury.protocols.tls' */ -static PyObject *__pyx_builtin_staticmethod; -static PyObject *__pyx_builtin_open; -static PyObject *__pyx_builtin_range; -static PyObject *__pyx_builtin_sorted; -static PyObject *__pyx_builtin_sum; -static PyObject *__pyx_builtin_KeyError; -static const char __pyx_k_[] = ","; -static const char __pyx_k_c[] = "c"; -static const char __pyx_k_p[] = "p_"; -static const char __pyx_k_r[] = "r"; -static const char __pyx_k_s[] = "(%s)"; -static const char __pyx_k__2[] = "("; -static const char __pyx_k__3[] = ")"; -static const char __pyx_k__5[] = "()"; -static const char __pyx_k__6[] = ""; -static const char __pyx_k__7[] = "/../"; -static const char __pyx_k__8[] = "*"; -static const char __pyx_k_cs[] = "cs_"; -static const char __pyx_k_os[] = "os"; -static const char __pyx_k_02x[] = "02x"; -static const char __pyx_k_TLS[] = "TLS"; -static const char __pyx_k_buf[] = "buf"; -static const char __pyx_k_hex[] = "hex"; -static const char __pyx_k_key[] = "key"; -static const char __pyx_k_new[] = "__new__"; -static const char __pyx_k_pop[] = "pop"; -static const char __pyx_k_sum[] = "sum"; -static const char __pyx_k_sys[] = "sys"; -static const char __pyx_k_data[] = "data"; -static const char __pyx_k_dict[] = "__dict__"; -static const char __pyx_k_file[] = "__file__"; -static const char __pyx_k_json[] = "json"; -static const char __pyx_k_keys[] = "keys"; -static const char __pyx_k_main[] = "__main__"; -static const char __pyx_k_mode[] = "mode"; -static const char __pyx_k_name[] = "name"; -static const char __pyx_k_open[] = "open"; -static const char __pyx_k_path[] = "path"; -static const char __pyx_k_test[] = "__test__"; -static const char __pyx_k_align[] = "align"; -static const char __pyx_k_count[] = "count"; -static const char __pyx_k_error[] = "error"; -static const char __pyx_k_fp_tc[] = "fp_tc_"; -static const char __pyx_k_loads[] = "loads"; -static const char __pyx_k_popen[] = "popen"; -static const char __pyx_k_range[] = "range"; -static const char __pyx_k_score[] = "score"; -static const char __pyx_k_split[] = "split"; -static const char __pyx_k_strip[] = "strip"; -static const char __pyx_k_union[] = "union"; -static const char __pyx_k_append[] = "append"; -static const char __pyx_k_approx[] = "approx"; -static const char __pyx_k_config[] = "config"; -static const char __pyx_k_fp_str[] = "fp_str_"; -static const char __pyx_k_get_os[] = "get_os"; -static const char __pyx_k_import[] = "__import__"; -static const char __pyx_k_name_2[] = "__name__"; -static const char __pyx_k_offset[] = "offset"; -static const char __pyx_k_pickle[] = "pickle"; -static const char __pyx_k_reduce[] = "__reduce__"; -static const char __pyx_k_sha256[] = "sha256"; -static const char __pyx_k_sorted[] = "sorted"; -static const char __pyx_k_source[] = "source"; -static const char __pyx_k_update[] = "update"; -static const char __pyx_k_zcat_s[] = "zcat %s"; -static const char __pyx_k_Unknown[] = "Unknown"; -static const char __pyx_k_abspath[] = "abspath"; -static const char __pyx_k_context[] = "context_"; -static const char __pyx_k_dirname[] = "dirname"; -static const char __pyx_k_ext_len[] = "ext_len"; -static const char __pyx_k_malware[] = "malware"; -static const char __pyx_k_maxsize[] = "maxsize"; -static const char __pyx_k_os_info[] = "os_info"; -static const char __pyx_k_process[] = "process"; -static const char __pyx_k_reverse[] = "reverse"; -static const char __pyx_k_tls_pyx[] = "tls.pyx"; -static const char __pyx_k_version[] = "version"; -static const char __pyx_k_KeyError[] = "KeyError"; -static const char __pyx_k_analysis[] = "analysis"; -static const char __pyx_k_category[] = "category"; -static const char __pyx_k_data_len[] = "data_len"; -static const char __pyx_k_endpoint[] = "endpoint"; -static const char __pyx_k_features[] = "features"; -static const char __pyx_k_fp_str_2[] = "fp_str"; -static const char __pyx_k_getstate[] = "__getstate__"; -static const char __pyx_k_identify[] = "identify"; -static const char __pyx_k_operator[] = "operator"; -static const char __pyx_k_pyx_type[] = "__pyx_type"; -static const char __pyx_k_setstate[] = "__setstate__"; -static const char __pyx_k_str_repr[] = "str_repr"; -static const char __pyx_k_buffering[] = "buffering"; -static const char __pyx_k_context_2[] = "context"; -static const char __pyx_k_dest_addr[] = "dest_addr"; -static const char __pyx_k_dest_port[] = "dest_port"; -static const char __pyx_k_functools[] = "functools"; -static const char __pyx_k_list_oses[] = "list_oses"; -static const char __pyx_k_lru_cache[] = "lru_cache"; -static const char __pyx_k_p_malware[] = "p_malware"; -static const char __pyx_k_prev_flow[] = "prev_flow"; -static const char __pyx_k_pyx_state[] = "__pyx_state"; -static const char __pyx_k_reduce_ex[] = "__reduce_ex__"; -static const char __pyx_k_approx_str[] = "approx_str"; -static const char __pyx_k_extensions[] = "extensions"; -static const char __pyx_k_itemgetter[] = "itemgetter"; -static const char __pyx_k_key_filter[] = "key_filter"; -static const char __pyx_k_list_procs[] = "list_procs"; -static const char __pyx_k_pyx_result[] = "__pyx_result"; -static const char __pyx_k_tls_params[] = "tls_params"; -static const char __pyx_k_tmp_fp_ext[] = "tmp_fp_ext"; -static const char __pyx_k_PickleError[] = "PickleError"; -static const char __pyx_k_domain_mean[] = "domain_mean"; -static const char __pyx_k_eval_fp_str[] = "eval_fp_str"; -static const char __pyx_k_fingerprint[] = "fingerprint"; -static const char __pyx_k_fp_database[] = "fp_database"; -static const char __pyx_k_os_identify[] = "os_identify"; -static const char __pyx_k_server_name[] = "server_name"; -static const char __pyx_k_total_count[] = "total_count"; -static const char __pyx_k_f_similarity[] = "f_similarity"; -static const char __pyx_k_get_asn_info[] = "get_asn_info"; -static const char __pyx_k_get_sequence[] = "get_sequence"; -static const char __pyx_k_get_tld_info[] = "get_tld_info"; -static const char __pyx_k_intersection[] = "intersection"; -static const char __pyx_k_process_info[] = "process_info"; -static const char __pyx_k_pyx_checksum[] = "__pyx_checksum"; -static const char __pyx_k_staticmethod[] = "staticmethod"; -static const char __pyx_k_stringsource[] = "stringsource"; -static const char __pyx_k_tls_features[] = "tls_features"; -static const char __pyx_k_approx_fp_str[] = "approx_fp_str"; -static const char __pyx_k_cipher_suites[] = "cipher_suites"; -static const char __pyx_k_classes_ip_as[] = "classes_ip_as"; -static const char __pyx_k_classes_ip_ip[] = "classes_ip_ip"; -static const char __pyx_k_compute_score[] = "compute_score"; -static const char __pyx_k_ext_total_len[] = "ext_total_len"; -static const char __pyx_k_load_database[] = "load_database"; -static const char __pyx_k_reduce_cython[] = "__reduce_cython__"; -static const char __pyx_k_source_filter[] = "source_filter"; -static const char __pyx_k_get_tls_params[] = "get_tls_params"; -static const char __pyx_k_proto_identify[] = "proto_identify"; -static const char __pyx_k_get_cs_from_str[] = "get_cs_from_str"; -static const char __pyx_k_parse_extension[] = "parse_extension"; -static const char __pyx_k_pyx_PickleError[] = "__pyx_PickleError"; -static const char __pyx_k_setstate_cython[] = "__setstate_cython__"; -static const char __pyx_k_get_ext_from_str[] = "get_ext_from_str"; -static const char __pyx_k_pyx_unpickle_TLS[] = "__pyx_unpickle_TLS"; -static const char __pyx_k_SequenceAlignment[] = "SequenceAlignment"; -static const char __pyx_k_find_approx_match[] = "find_approx_match"; -static const char __pyx_k_session_id_length[] = "session_id_length"; -static const char __pyx_k_MAX_CACHED_RESULTS[] = "MAX_CACHED_RESULTS"; -static const char __pyx_k_cline_in_traceback[] = "cline_in_traceback"; -static const char __pyx_k_degrease_type_code[] = "degrease_type_code"; -static const char __pyx_k_find_resource_path[] = "find_resource_path"; -static const char __pyx_k_get_database_entry[] = "get_database_entry"; -static const char __pyx_k_probable_processes[] = "probable_processes"; -static const char __pyx_k_Generic_DMZ_Traffic[] = "Generic DMZ Traffic"; -static const char __pyx_k_extract_server_name[] = "extract_server_name"; -static const char __pyx_k_application_category[] = "application_category"; -static const char __pyx_k_cipher_suites_length[] = "cipher_suites_length"; -static const char __pyx_k_classes_hostname_sni[] = "classes_hostname_sni"; -static const char __pyx_k_get_port_application[] = "get_port_application"; -static const char __pyx_k_get_version_from_str[] = "get_version_from_str"; -static const char __pyx_k_classes_hostname_tlds[] = "classes_hostname_tlds"; -static const char __pyx_k_get_approx_fingerprint[] = "get_approx_fingerprint"; -static const char __pyx_k_pmercury_protocols_tls[] = "pmercury.protocols.tls"; -static const char __pyx_k_gen_unknown_fingerprint[] = "gen_unknown_fingerprint"; -static const char __pyx_k_get_implementation_date[] = "get_implementation_date"; -static const char __pyx_k_max_implementation_date[] = "max_implementation_date"; -static const char __pyx_k_min_implementation_date[] = "min_implementation_date"; -static const char __pyx_k_classes_hostname_domains[] = "classes_hostname_domains"; -static const char __pyx_k_pmercury_utils_tls_utils[] = "pmercury.utils.tls_utils"; -static const char __pyx_k_classes_port_applications[] = "classes_port_applications"; -static const char __pyx_k_compression_methods_length[] = "compression_methods_length"; -static const char __pyx_k_resources_app_families_txt[] = "resources/app_families.txt"; -static const char __pyx_k_find_approximate_matches_set[] = "find_approximate_matches_set"; -static const char __pyx_k_pmercury_utils_tls_constants[] = "pmercury.utils.tls_constants"; -static const char __pyx_k_pmercury_utils_pmercury_utils[] = "pmercury.utils.pmercury_utils"; -static const char __pyx_k_Copyright_c_2019_Cisco_Systems[] = "\n Copyright (c) 2019 Cisco Systems, Inc. All rights reserved.\n License at https://github.com/cisco/mercury/blob/master/LICENSE\n"; -static const char __pyx_k_pmercury_utils_contextual_info[] = "pmercury.utils.contextual_info"; -static const char __pyx_k_Incompatible_checksums_s_vs_0xf1[] = "Incompatible checksums (%s vs 0xf12e396 = (EXTENDED_FP_METADATA, MALWARE_DB, aligner, app_families, fp_db, tls_params_db, transition_probs))"; -static const char __pyx_k_fingerprint_string_parsing_error[] = "fingerprint string parsing error"; -static const char __pyx_k_pmercury_utils_sequence_alignmen[] = "pmercury.utils.sequence_alignment"; -static const char __pyx_k_resources_fingerprint_db_json_gz[] = "resources/fingerprint_db.json.gz"; -static const char __pyx_k_resources_transition_probs_csv_g[] = "resources/transition_probs.csv.gz"; -static PyObject *__pyx_kp_u_; -static PyObject *__pyx_kp_u_02x; -static PyObject *__pyx_kp_u_Generic_DMZ_Traffic; -static PyObject *__pyx_kp_s_Incompatible_checksums_s_vs_0xf1; -static PyObject *__pyx_n_s_KeyError; -static PyObject *__pyx_n_s_MAX_CACHED_RESULTS; -static PyObject *__pyx_n_s_PickleError; -static PyObject *__pyx_n_s_SequenceAlignment; -static PyObject *__pyx_n_s_TLS; -static PyObject *__pyx_n_u_Unknown; -static PyObject *__pyx_kp_u__2; -static PyObject *__pyx_kp_u__3; -static PyObject *__pyx_kp_u__5; -static PyObject *__pyx_kp_u__6; -static PyObject *__pyx_kp_u__7; -static PyObject *__pyx_n_s__8; -static PyObject *__pyx_n_s_abspath; -static PyObject *__pyx_n_s_align; -static PyObject *__pyx_n_u_analysis; -static PyObject *__pyx_n_s_append; -static PyObject *__pyx_n_u_application_category; -static PyObject *__pyx_n_s_approx; -static PyObject *__pyx_n_s_approx_fp_str; -static PyObject *__pyx_n_u_approx_str; -static PyObject *__pyx_n_s_buf; -static PyObject *__pyx_n_s_buffering; -static PyObject *__pyx_n_s_c; -static PyObject *__pyx_n_u_category; -static PyObject *__pyx_n_u_cipher_suites; -static PyObject *__pyx_n_s_cipher_suites_length; -static PyObject *__pyx_n_u_classes_hostname_domains; -static PyObject *__pyx_n_u_classes_hostname_sni; -static PyObject *__pyx_n_u_classes_hostname_tlds; -static PyObject *__pyx_n_u_classes_ip_as; -static PyObject *__pyx_n_u_classes_ip_ip; -static PyObject *__pyx_n_u_classes_port_applications; -static PyObject *__pyx_n_s_cline_in_traceback; -static PyObject *__pyx_n_s_compression_methods_length; -static PyObject *__pyx_n_s_compute_score; -static PyObject *__pyx_n_s_config; -static PyObject *__pyx_n_s_context; -static PyObject *__pyx_n_s_context_2; -static PyObject *__pyx_n_u_count; -static PyObject *__pyx_n_s_cs; -static PyObject *__pyx_n_s_data; -static PyObject *__pyx_n_u_data; -static PyObject *__pyx_n_s_data_len; -static PyObject *__pyx_n_s_degrease_type_code; -static PyObject *__pyx_n_s_dest_addr; -static PyObject *__pyx_n_s_dest_port; -static PyObject *__pyx_n_s_dict; -static PyObject *__pyx_n_s_dirname; -static PyObject *__pyx_n_u_domain_mean; -static PyObject *__pyx_n_s_endpoint; -static PyObject *__pyx_n_u_error; -static PyObject *__pyx_n_s_eval_fp_str; -static PyObject *__pyx_n_s_ext_len; -static PyObject *__pyx_n_s_ext_total_len; -static PyObject *__pyx_n_u_extensions; -static PyObject *__pyx_n_s_extract_server_name; -static PyObject *__pyx_n_s_f_similarity; -static PyObject *__pyx_n_s_features; -static PyObject *__pyx_n_s_file; -static PyObject *__pyx_n_s_find_approx_match; -static PyObject *__pyx_n_s_find_approximate_matches_set; -static PyObject *__pyx_n_s_find_resource_path; -static PyObject *__pyx_n_s_fingerprint; -static PyObject *__pyx_kp_u_fingerprint_string_parsing_error; -static PyObject *__pyx_n_s_fp_database; -static PyObject *__pyx_n_s_fp_str; -static PyObject *__pyx_n_s_fp_str_2; -static PyObject *__pyx_n_s_fp_tc; -static PyObject *__pyx_n_s_functools; -static PyObject *__pyx_n_s_gen_unknown_fingerprint; -static PyObject *__pyx_n_s_get_approx_fingerprint; -static PyObject *__pyx_n_s_get_asn_info; -static PyObject *__pyx_n_s_get_cs_from_str; -static PyObject *__pyx_n_s_get_database_entry; -static PyObject *__pyx_n_s_get_ext_from_str; -static PyObject *__pyx_n_s_get_implementation_date; -static PyObject *__pyx_n_s_get_os; -static PyObject *__pyx_n_s_get_port_application; -static PyObject *__pyx_n_s_get_sequence; -static PyObject *__pyx_n_s_get_tld_info; -static PyObject *__pyx_n_s_get_tls_params; -static PyObject *__pyx_n_s_get_version_from_str; -static PyObject *__pyx_n_s_getstate; -static PyObject *__pyx_n_s_hex; -static PyObject *__pyx_n_s_identify; -static PyObject *__pyx_n_s_import; -static PyObject *__pyx_n_s_intersection; -static PyObject *__pyx_n_s_itemgetter; -static PyObject *__pyx_n_s_json; -static PyObject *__pyx_n_s_key; -static PyObject *__pyx_n_s_key_filter; -static PyObject *__pyx_n_s_keys; -static PyObject *__pyx_n_s_list_oses; -static PyObject *__pyx_n_s_list_procs; -static PyObject *__pyx_n_s_load_database; -static PyObject *__pyx_n_s_loads; -static PyObject *__pyx_n_s_lru_cache; -static PyObject *__pyx_n_s_main; -static PyObject *__pyx_n_u_malware; -static PyObject *__pyx_n_u_max_implementation_date; -static PyObject *__pyx_n_s_maxsize; -static PyObject *__pyx_n_u_min_implementation_date; -static PyObject *__pyx_n_s_mode; -static PyObject *__pyx_n_u_name; -static PyObject *__pyx_n_s_name_2; -static PyObject *__pyx_n_s_new; -static PyObject *__pyx_n_s_offset; -static PyObject *__pyx_n_s_open; -static PyObject *__pyx_n_s_operator; -static PyObject *__pyx_n_s_os; -static PyObject *__pyx_n_s_os_identify; -static PyObject *__pyx_n_u_os_info; -static PyObject *__pyx_n_s_p; -static PyObject *__pyx_n_u_p_malware; -static PyObject *__pyx_n_s_parse_extension; -static PyObject *__pyx_n_s_path; -static PyObject *__pyx_n_s_pickle; -static PyObject *__pyx_n_s_pmercury_protocols_tls; -static PyObject *__pyx_n_s_pmercury_utils_contextual_info; -static PyObject *__pyx_n_s_pmercury_utils_pmercury_utils; -static PyObject *__pyx_n_s_pmercury_utils_sequence_alignmen; -static PyObject *__pyx_n_s_pmercury_utils_tls_constants; -static PyObject *__pyx_n_s_pmercury_utils_tls_utils; -static PyObject *__pyx_n_s_pop; -static PyObject *__pyx_n_s_popen; -static PyObject *__pyx_n_s_prev_flow; -static PyObject *__pyx_n_u_probable_processes; -static PyObject *__pyx_n_u_process; -static PyObject *__pyx_n_u_process_info; -static PyObject *__pyx_n_s_proto_identify; -static PyObject *__pyx_n_s_pyx_PickleError; -static PyObject *__pyx_n_s_pyx_checksum; -static PyObject *__pyx_n_s_pyx_result; -static PyObject *__pyx_n_s_pyx_state; -static PyObject *__pyx_n_s_pyx_type; -static PyObject *__pyx_n_s_pyx_unpickle_TLS; -static PyObject *__pyx_n_u_r; -static PyObject *__pyx_n_s_range; -static PyObject *__pyx_n_s_reduce; -static PyObject *__pyx_n_s_reduce_cython; -static PyObject *__pyx_n_s_reduce_ex; -static PyObject *__pyx_kp_u_resources_app_families_txt; -static PyObject *__pyx_kp_u_resources_fingerprint_db_json_gz; -static PyObject *__pyx_kp_u_resources_transition_probs_csv_g; -static PyObject *__pyx_n_s_reverse; -static PyObject *__pyx_kp_u_s; -static PyObject *__pyx_n_u_score; -static PyObject *__pyx_n_s_server_name; -static PyObject *__pyx_n_u_server_name; -static PyObject *__pyx_n_s_session_id_length; -static PyObject *__pyx_n_s_setstate; -static PyObject *__pyx_n_s_setstate_cython; -static PyObject *__pyx_n_u_sha256; -static PyObject *__pyx_n_s_sorted; -static PyObject *__pyx_n_u_source; -static PyObject *__pyx_n_s_source_filter; -static PyObject *__pyx_n_s_split; -static PyObject *__pyx_n_s_staticmethod; -static PyObject *__pyx_n_u_str_repr; -static PyObject *__pyx_kp_s_stringsource; -static PyObject *__pyx_n_s_strip; -static PyObject *__pyx_n_s_sum; -static PyObject *__pyx_n_s_sys; -static PyObject *__pyx_n_s_test; -static PyObject *__pyx_n_s_tls_features; -static PyObject *__pyx_n_s_tls_params; -static PyObject *__pyx_kp_s_tls_pyx; -static PyObject *__pyx_n_s_tmp_fp_ext; -static PyObject *__pyx_n_u_total_count; -static PyObject *__pyx_n_s_union; -static PyObject *__pyx_n_s_update; -static PyObject *__pyx_n_u_version; -static PyObject *__pyx_kp_u_zcat_s; -static int __pyx_pf_8pmercury_9protocols_3tls_3TLS___init__(struct __pyx_obj_8pmercury_9protocols_3tls_TLS *__pyx_v_self, PyObject *__pyx_v_fp_database, CYTHON_UNUSED PyObject *__pyx_v_config); /* proto */ -static PyObject *__pyx_pf_8pmercury_9protocols_3tls_3TLS_2load_database(struct __pyx_obj_8pmercury_9protocols_3tls_TLS *__pyx_v_self, PyObject *__pyx_v_fp_database); /* proto */ -static PyObject *__pyx_pf_8pmercury_9protocols_3tls_3TLS_4proto_identify(PyObject *__pyx_v_data, PyObject *__pyx_v_offset, PyObject *__pyx_v_data_len); /* proto */ -static PyObject *__pyx_pf_8pmercury_9protocols_3tls_3TLS_6fingerprint(PyObject *__pyx_v_data, unsigned int __pyx_v_offset, unsigned int __pyx_v_data_len); /* proto */ -static PyObject *__pyx_pf_8pmercury_9protocols_3tls_3TLS_8proc_identify(struct __pyx_obj_8pmercury_9protocols_3tls_TLS *__pyx_v_self, PyObject *__pyx_v_fp_str_, PyObject *__pyx_v_context_, PyObject *__pyx_v_dest_addr, PyObject *__pyx_v_dest_port, PyObject *__pyx_v_list_procs, PyObject *__pyx_v_endpoint, PyObject *__pyx_v_approx); /* proto */ -static PyObject *__pyx_pf_8pmercury_9protocols_3tls_3TLS_10identify(struct __pyx_obj_8pmercury_9protocols_3tls_TLS *__pyx_v_self, PyObject *__pyx_v_fp_str_, PyObject *__pyx_v_server_name, PyObject *__pyx_v_dest_addr, PyObject *__pyx_v_dest_port, PyObject *__pyx_v_list_procs, PyObject *__pyx_v_endpoint); /* proto */ -static PyObject *__pyx_pf_8pmercury_9protocols_3tls_3TLS_12compute_score(struct __pyx_obj_8pmercury_9protocols_3tls_TLS *__pyx_v_self, PyObject *__pyx_v_features, PyObject *__pyx_v_p_, double __pyx_v_fp_tc_, PyObject *__pyx_v_endpoint); /* proto */ -static PyObject *__pyx_pf_8pmercury_9protocols_3tls_3TLS_14get_database_entry(struct __pyx_obj_8pmercury_9protocols_3tls_TLS *__pyx_v_self, PyObject *__pyx_v_fp_str, PyObject *__pyx_v_approx_fp_str); /* proto */ -static PyObject *__pyx_pf_8pmercury_9protocols_3tls_3TLS_16get_approx_fingerprint(struct __pyx_obj_8pmercury_9protocols_3tls_TLS *__pyx_v_self, PyObject *__pyx_v_fp_str_); /* proto */ -static PyObject *__pyx_pf_8pmercury_9protocols_3tls_3TLS_18find_approx_match(struct __pyx_obj_8pmercury_9protocols_3tls_TLS *__pyx_v_self, PyObject *__pyx_v_tls_features, PyObject *__pyx_v_fp_str, PyObject *__pyx_v_source_filter, PyObject *__pyx_v_key_filter); /* proto */ -static PyObject *__pyx_pf_8pmercury_9protocols_3tls_3TLS_20find_approximate_matches_set(struct __pyx_obj_8pmercury_9protocols_3tls_TLS *__pyx_v_self, PyObject *__pyx_v_tls_params, PyObject *__pyx_v_fp_str, PyObject *__pyx_v_source_filter, PyObject *__pyx_v_key_filter); /* proto */ -static PyObject *__pyx_pf_8pmercury_9protocols_3tls_3TLS_22gen_unknown_fingerprint(CYTHON_UNUSED struct __pyx_obj_8pmercury_9protocols_3tls_TLS *__pyx_v_self, PyObject *__pyx_v_fp_str_); /* proto */ -static PyObject *__pyx_pf_8pmercury_9protocols_3tls_3TLS_24get_human_readable(CYTHON_UNUSED struct __pyx_obj_8pmercury_9protocols_3tls_TLS *__pyx_v_self, PyObject *__pyx_v_fp_str_); /* proto */ -static PyObject *__pyx_pf_8pmercury_9protocols_3tls_3TLS_26os_identify(CYTHON_UNUSED struct __pyx_obj_8pmercury_9protocols_3tls_TLS *__pyx_v_self, CYTHON_UNUSED PyObject *__pyx_v_fp_str_, CYTHON_UNUSED PyObject *__pyx_v_list_oses); /* proto */ -static PyObject *__pyx_pf_8pmercury_9protocols_3tls_3TLS_28__reduce_cython__(struct __pyx_obj_8pmercury_9protocols_3tls_TLS *__pyx_v_self); /* proto */ -static PyObject *__pyx_pf_8pmercury_9protocols_3tls_3TLS_30__setstate_cython__(struct __pyx_obj_8pmercury_9protocols_3tls_TLS *__pyx_v_self, PyObject *__pyx_v___pyx_state); /* proto */ -static PyObject *__pyx_pf_8pmercury_9protocols_3tls___pyx_unpickle_TLS(CYTHON_UNUSED PyObject *__pyx_self, PyObject *__pyx_v___pyx_type, long __pyx_v___pyx_checksum, PyObject *__pyx_v___pyx_state); /* proto */ -static PyObject *__pyx_tp_new_8pmercury_9protocols_3tls_TLS(PyTypeObject *t, PyObject *a, PyObject *k); /*proto*/ -static __Pyx_CachedCFunction __pyx_umethod_PySet_Type_intersection = {0, &__pyx_n_s_intersection, 0, 0, 0}; -static __Pyx_CachedCFunction __pyx_umethod_PySet_Type_union = {0, &__pyx_n_s_union, 0, 0, 0}; -static PyObject *__pyx_float_0_0; -static PyObject *__pyx_float_0_1; -static PyObject *__pyx_float_1_0; -static PyObject *__pyx_float_5_0; -static PyObject *__pyx_int_0; -static PyObject *__pyx_int_1; -static PyObject *__pyx_int_2; -static PyObject *__pyx_int_3; -static PyObject *__pyx_int_4; -static PyObject *__pyx_int_5; -static PyObject *__pyx_int_9; -static PyObject *__pyx_int_10; -static PyObject *__pyx_int_16; -static PyObject *__pyx_int_22; -static PyObject *__pyx_int_2097152; -static PyObject *__pyx_int_16777216; -static PyObject *__pyx_int_252896150; -static PyObject *__pyx_tuple__4; -static PyObject *__pyx_tuple__9; -static PyObject *__pyx_tuple__11; -static PyObject *__pyx_tuple__13; -static PyObject *__pyx_codeobj__10; -static PyObject *__pyx_codeobj__12; -static PyObject *__pyx_codeobj__14; -/* Late includes */ - -/* "pmercury/protocols/tls.pyx":46 - * cdef object aligner - * - * def __init__(self, fp_database=None, config=None): # <<<<<<<<<<<<<< - * # cached data/results - * self.tls_params_db = {} - */ - -/* Python wrapper */ -static int __pyx_pw_8pmercury_9protocols_3tls_3TLS_1__init__(PyObject *__pyx_v_self, PyObject *__pyx_args, PyObject *__pyx_kwds); /*proto*/ -static int __pyx_pw_8pmercury_9protocols_3tls_3TLS_1__init__(PyObject *__pyx_v_self, PyObject *__pyx_args, PyObject *__pyx_kwds) { - PyObject *__pyx_v_fp_database = 0; - CYTHON_UNUSED PyObject *__pyx_v_config = 0; - int __pyx_r; - __Pyx_RefNannyDeclarations - __Pyx_RefNannySetupContext("__init__ (wrapper)", 0); - { - static PyObject **__pyx_pyargnames[] = {&__pyx_n_s_fp_database,&__pyx_n_s_config,0}; - PyObject* values[2] = {0,0}; - values[0] = ((PyObject *)Py_None); - values[1] = ((PyObject *)Py_None); - if (unlikely(__pyx_kwds)) { - Py_ssize_t kw_args; - const Py_ssize_t pos_args = PyTuple_GET_SIZE(__pyx_args); - switch (pos_args) { - case 2: values[1] = PyTuple_GET_ITEM(__pyx_args, 1); - CYTHON_FALLTHROUGH; - case 1: values[0] = PyTuple_GET_ITEM(__pyx_args, 0); - CYTHON_FALLTHROUGH; - case 0: break; - default: goto __pyx_L5_argtuple_error; - } - kw_args = PyDict_Size(__pyx_kwds); - switch (pos_args) { - case 0: - if (kw_args > 0) { - PyObject* value = __Pyx_PyDict_GetItemStr(__pyx_kwds, __pyx_n_s_fp_database); - if (value) { values[0] = value; kw_args--; } - } - CYTHON_FALLTHROUGH; - case 1: - if (kw_args > 0) { - PyObject* value = __Pyx_PyDict_GetItemStr(__pyx_kwds, __pyx_n_s_config); - if (value) { values[1] = value; kw_args--; } - } - } - if (unlikely(kw_args > 0)) { - if (unlikely(__Pyx_ParseOptionalKeywords(__pyx_kwds, __pyx_pyargnames, 0, values, pos_args, "__init__") < 0)) __PYX_ERR(0, 46, __pyx_L3_error) - } - } else { - switch (PyTuple_GET_SIZE(__pyx_args)) { - case 2: values[1] = PyTuple_GET_ITEM(__pyx_args, 1); - CYTHON_FALLTHROUGH; - case 1: values[0] = PyTuple_GET_ITEM(__pyx_args, 0); - CYTHON_FALLTHROUGH; - case 0: break; - default: goto __pyx_L5_argtuple_error; - } - } - __pyx_v_fp_database = values[0]; - __pyx_v_config = values[1]; - } - goto __pyx_L4_argument_unpacking_done; - __pyx_L5_argtuple_error:; - __Pyx_RaiseArgtupleInvalid("__init__", 0, 0, 2, PyTuple_GET_SIZE(__pyx_args)); __PYX_ERR(0, 46, __pyx_L3_error) - __pyx_L3_error:; - __Pyx_AddTraceback("pmercury.protocols.tls.TLS.__init__", __pyx_clineno, __pyx_lineno, __pyx_filename); - __Pyx_RefNannyFinishContext(); - return -1; - __pyx_L4_argument_unpacking_done:; - __pyx_r = __pyx_pf_8pmercury_9protocols_3tls_3TLS___init__(((struct __pyx_obj_8pmercury_9protocols_3tls_TLS *)__pyx_v_self), __pyx_v_fp_database, __pyx_v_config); - - /* function exit code */ - __Pyx_RefNannyFinishContext(); - return __pyx_r; -} - -static int __pyx_pf_8pmercury_9protocols_3tls_3TLS___init__(struct __pyx_obj_8pmercury_9protocols_3tls_TLS *__pyx_v_self, PyObject *__pyx_v_fp_database, CYTHON_UNUSED PyObject *__pyx_v_config) { - PyObject *__pyx_v_transition_probs_file = NULL; - PyObject *__pyx_v_line = NULL; - PyObject *__pyx_v_t_ = NULL; - PyObject *__pyx_v_app_families_file = NULL; - PyObject *__pyx_v_tokens = NULL; - Py_ssize_t __pyx_v_i; - int __pyx_r; - __Pyx_RefNannyDeclarations - PyObject *__pyx_t_1 = NULL; - int __pyx_t_2; - PyObject *__pyx_t_3 = NULL; - PyObject *__pyx_t_4 = NULL; - PyObject *__pyx_t_5 = NULL; - Py_ssize_t __pyx_t_6; - PyObject *(*__pyx_t_7)(PyObject *); - PyObject *__pyx_t_8 = NULL; - int __pyx_t_9; - Py_ssize_t __pyx_t_10; - Py_ssize_t __pyx_t_11; - Py_ssize_t __pyx_t_12; - int __pyx_t_13; - __Pyx_RefNannySetupContext("__init__", 0); - __Pyx_INCREF(__pyx_v_fp_database); - - /* "pmercury/protocols/tls.pyx":48 - * def __init__(self, fp_database=None, config=None): - * # cached data/results - * self.tls_params_db = {} # <<<<<<<<<<<<<< - * self.MALWARE_DB = True - * self.EXTENDED_FP_METADATA = False - */ - __pyx_t_1 = __Pyx_PyDict_NewPresized(0); if (unlikely(!__pyx_t_1)) __PYX_ERR(0, 48, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_1); - __Pyx_GIVEREF(__pyx_t_1); - __Pyx_GOTREF(__pyx_v_self->tls_params_db); - __Pyx_DECREF(__pyx_v_self->tls_params_db); - __pyx_v_self->tls_params_db = ((PyObject*)__pyx_t_1); - __pyx_t_1 = 0; - - /* "pmercury/protocols/tls.pyx":49 - * # cached data/results - * self.tls_params_db = {} - * self.MALWARE_DB = True # <<<<<<<<<<<<<< - * self.EXTENDED_FP_METADATA = False - * - */ - __pyx_v_self->MALWARE_DB = 1; - - /* "pmercury/protocols/tls.pyx":50 - * self.tls_params_db = {} - * self.MALWARE_DB = True - * self.EXTENDED_FP_METADATA = False # <<<<<<<<<<<<<< - * - * # populate fingerprint databases - */ - __pyx_v_self->EXTENDED_FP_METADATA = 0; - - /* "pmercury/protocols/tls.pyx":53 - * - * # populate fingerprint databases - * self.fp_db = {} # <<<<<<<<<<<<<< - * if fp_database == 'resources/fingerprint_db.json.gz': - * fp_database = find_resource_path(fp_database) - */ - __pyx_t_1 = __Pyx_PyDict_NewPresized(0); if (unlikely(!__pyx_t_1)) __PYX_ERR(0, 53, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_1); - __Pyx_GIVEREF(__pyx_t_1); - __Pyx_GOTREF(__pyx_v_self->fp_db); - __Pyx_DECREF(__pyx_v_self->fp_db); - __pyx_v_self->fp_db = ((PyObject*)__pyx_t_1); - __pyx_t_1 = 0; - - /* "pmercury/protocols/tls.pyx":54 - * # populate fingerprint databases - * self.fp_db = {} - * if fp_database == 'resources/fingerprint_db.json.gz': # <<<<<<<<<<<<<< - * fp_database = find_resource_path(fp_database) - * if fp_database != None: - */ - __pyx_t_2 = (__Pyx_PyUnicode_Equals(__pyx_v_fp_database, __pyx_kp_u_resources_fingerprint_db_json_gz, Py_EQ)); if (unlikely(__pyx_t_2 < 0)) __PYX_ERR(0, 54, __pyx_L1_error) - if (__pyx_t_2) { - - /* "pmercury/protocols/tls.pyx":55 - * self.fp_db = {} - * if fp_database == 'resources/fingerprint_db.json.gz': - * fp_database = find_resource_path(fp_database) # <<<<<<<<<<<<<< - * if fp_database != None: - * self.load_database(fp_database) - */ - __Pyx_GetModuleGlobalName(__pyx_t_3, __pyx_n_s_find_resource_path); if (unlikely(!__pyx_t_3)) __PYX_ERR(0, 55, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_3); - __pyx_t_4 = NULL; - if (CYTHON_UNPACK_METHODS && unlikely(PyMethod_Check(__pyx_t_3))) { - __pyx_t_4 = PyMethod_GET_SELF(__pyx_t_3); - if (likely(__pyx_t_4)) { - PyObject* function = PyMethod_GET_FUNCTION(__pyx_t_3); - __Pyx_INCREF(__pyx_t_4); - __Pyx_INCREF(function); - __Pyx_DECREF_SET(__pyx_t_3, function); - } - } - __pyx_t_1 = (__pyx_t_4) ? __Pyx_PyObject_Call2Args(__pyx_t_3, __pyx_t_4, __pyx_v_fp_database) : __Pyx_PyObject_CallOneArg(__pyx_t_3, __pyx_v_fp_database); - __Pyx_XDECREF(__pyx_t_4); __pyx_t_4 = 0; - if (unlikely(!__pyx_t_1)) __PYX_ERR(0, 55, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_1); - __Pyx_DECREF(__pyx_t_3); __pyx_t_3 = 0; - __Pyx_DECREF_SET(__pyx_v_fp_database, __pyx_t_1); - __pyx_t_1 = 0; - - /* "pmercury/protocols/tls.pyx":54 - * # populate fingerprint databases - * self.fp_db = {} - * if fp_database == 'resources/fingerprint_db.json.gz': # <<<<<<<<<<<<<< - * fp_database = find_resource_path(fp_database) - * if fp_database != None: - */ - } - - /* "pmercury/protocols/tls.pyx":56 - * if fp_database == 'resources/fingerprint_db.json.gz': - * fp_database = find_resource_path(fp_database) - * if fp_database != None: # <<<<<<<<<<<<<< - * self.load_database(fp_database) - * - */ - __pyx_t_1 = PyObject_RichCompare(__pyx_v_fp_database, Py_None, Py_NE); __Pyx_XGOTREF(__pyx_t_1); if (unlikely(!__pyx_t_1)) __PYX_ERR(0, 56, __pyx_L1_error) - __pyx_t_2 = __Pyx_PyObject_IsTrue(__pyx_t_1); if (unlikely(__pyx_t_2 < 0)) __PYX_ERR(0, 56, __pyx_L1_error) - __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0; - if (__pyx_t_2) { - - /* "pmercury/protocols/tls.pyx":57 - * fp_database = find_resource_path(fp_database) - * if fp_database != None: - * self.load_database(fp_database) # <<<<<<<<<<<<<< - * - * IF UNAME_SYSNAME == "Windows": - */ - __pyx_t_3 = __Pyx_PyObject_GetAttrStr(((PyObject *)__pyx_v_self), __pyx_n_s_load_database); if (unlikely(!__pyx_t_3)) __PYX_ERR(0, 57, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_3); - __pyx_t_4 = NULL; - if (CYTHON_UNPACK_METHODS && likely(PyMethod_Check(__pyx_t_3))) { - __pyx_t_4 = PyMethod_GET_SELF(__pyx_t_3); - if (likely(__pyx_t_4)) { - PyObject* function = PyMethod_GET_FUNCTION(__pyx_t_3); - __Pyx_INCREF(__pyx_t_4); - __Pyx_INCREF(function); - __Pyx_DECREF_SET(__pyx_t_3, function); - } - } - __pyx_t_1 = (__pyx_t_4) ? __Pyx_PyObject_Call2Args(__pyx_t_3, __pyx_t_4, __pyx_v_fp_database) : __Pyx_PyObject_CallOneArg(__pyx_t_3, __pyx_v_fp_database); - __Pyx_XDECREF(__pyx_t_4); __pyx_t_4 = 0; - if (unlikely(!__pyx_t_1)) __PYX_ERR(0, 57, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_1); - __Pyx_DECREF(__pyx_t_3); __pyx_t_3 = 0; - __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0; - - /* "pmercury/protocols/tls.pyx":56 - * if fp_database == 'resources/fingerprint_db.json.gz': - * fp_database = find_resource_path(fp_database) - * if fp_database != None: # <<<<<<<<<<<<<< - * self.load_database(fp_database) - * - */ - } - - /* "pmercury/protocols/tls.pyx":69 - * self.transition_probs[t_[1].decode()][t_[2].decode()] = float(t_[0]) - * ELSE: - * transition_probs_file = find_resource_path('resources/transition_probs.csv.gz') # <<<<<<<<<<<<<< - * self.transition_probs = {} - * for line in os.popen('zcat %s' % (transition_probs_file), mode='r', buffering=8192*256): - */ - __Pyx_GetModuleGlobalName(__pyx_t_3, __pyx_n_s_find_resource_path); if (unlikely(!__pyx_t_3)) __PYX_ERR(0, 69, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_3); - __pyx_t_4 = NULL; - if (CYTHON_UNPACK_METHODS && unlikely(PyMethod_Check(__pyx_t_3))) { - __pyx_t_4 = PyMethod_GET_SELF(__pyx_t_3); - if (likely(__pyx_t_4)) { - PyObject* function = PyMethod_GET_FUNCTION(__pyx_t_3); - __Pyx_INCREF(__pyx_t_4); - __Pyx_INCREF(function); - __Pyx_DECREF_SET(__pyx_t_3, function); - } - } - __pyx_t_1 = (__pyx_t_4) ? __Pyx_PyObject_Call2Args(__pyx_t_3, __pyx_t_4, __pyx_kp_u_resources_transition_probs_csv_g) : __Pyx_PyObject_CallOneArg(__pyx_t_3, __pyx_kp_u_resources_transition_probs_csv_g); - __Pyx_XDECREF(__pyx_t_4); __pyx_t_4 = 0; - if (unlikely(!__pyx_t_1)) __PYX_ERR(0, 69, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_1); - __Pyx_DECREF(__pyx_t_3); __pyx_t_3 = 0; - __pyx_v_transition_probs_file = __pyx_t_1; - __pyx_t_1 = 0; - - /* "pmercury/protocols/tls.pyx":70 - * ELSE: - * transition_probs_file = find_resource_path('resources/transition_probs.csv.gz') - * self.transition_probs = {} # <<<<<<<<<<<<<< - * for line in os.popen('zcat %s' % (transition_probs_file), mode='r', buffering=8192*256): - * t_ = line.strip().split(',') - */ - __pyx_t_1 = __Pyx_PyDict_NewPresized(0); if (unlikely(!__pyx_t_1)) __PYX_ERR(0, 70, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_1); - __Pyx_GIVEREF(__pyx_t_1); - __Pyx_GOTREF(__pyx_v_self->transition_probs); - __Pyx_DECREF(__pyx_v_self->transition_probs); - __pyx_v_self->transition_probs = ((PyObject*)__pyx_t_1); - __pyx_t_1 = 0; - - /* "pmercury/protocols/tls.pyx":71 - * transition_probs_file = find_resource_path('resources/transition_probs.csv.gz') - * self.transition_probs = {} - * for line in os.popen('zcat %s' % (transition_probs_file), mode='r', buffering=8192*256): # <<<<<<<<<<<<<< - * t_ = line.strip().split(',') - * if t_[1] not in self.transition_probs: - */ - __Pyx_GetModuleGlobalName(__pyx_t_1, __pyx_n_s_os); if (unlikely(!__pyx_t_1)) __PYX_ERR(0, 71, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_1); - __pyx_t_3 = __Pyx_PyObject_GetAttrStr(__pyx_t_1, __pyx_n_s_popen); if (unlikely(!__pyx_t_3)) __PYX_ERR(0, 71, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_3); - __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0; - __pyx_t_1 = __Pyx_PyUnicode_FormatSafe(__pyx_kp_u_zcat_s, __pyx_v_transition_probs_file); if (unlikely(!__pyx_t_1)) __PYX_ERR(0, 71, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_1); - __pyx_t_4 = PyTuple_New(1); if (unlikely(!__pyx_t_4)) __PYX_ERR(0, 71, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_4); - __Pyx_GIVEREF(__pyx_t_1); - PyTuple_SET_ITEM(__pyx_t_4, 0, __pyx_t_1); - __pyx_t_1 = 0; - __pyx_t_1 = __Pyx_PyDict_NewPresized(2); if (unlikely(!__pyx_t_1)) __PYX_ERR(0, 71, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_1); - if (PyDict_SetItem(__pyx_t_1, __pyx_n_s_mode, __pyx_n_u_r) < 0) __PYX_ERR(0, 71, __pyx_L1_error) - if (PyDict_SetItem(__pyx_t_1, __pyx_n_s_buffering, __pyx_int_2097152) < 0) __PYX_ERR(0, 71, __pyx_L1_error) - __pyx_t_5 = __Pyx_PyObject_Call(__pyx_t_3, __pyx_t_4, __pyx_t_1); if (unlikely(!__pyx_t_5)) __PYX_ERR(0, 71, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_5); - __Pyx_DECREF(__pyx_t_3); __pyx_t_3 = 0; - __Pyx_DECREF(__pyx_t_4); __pyx_t_4 = 0; - __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0; - if (likely(PyList_CheckExact(__pyx_t_5)) || PyTuple_CheckExact(__pyx_t_5)) { - __pyx_t_1 = __pyx_t_5; __Pyx_INCREF(__pyx_t_1); __pyx_t_6 = 0; - __pyx_t_7 = NULL; - } else { - __pyx_t_6 = -1; __pyx_t_1 = PyObject_GetIter(__pyx_t_5); if (unlikely(!__pyx_t_1)) __PYX_ERR(0, 71, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_1); - __pyx_t_7 = Py_TYPE(__pyx_t_1)->tp_iternext; if (unlikely(!__pyx_t_7)) __PYX_ERR(0, 71, __pyx_L1_error) - } - __Pyx_DECREF(__pyx_t_5); __pyx_t_5 = 0; - for (;;) { - if (likely(!__pyx_t_7)) { - if (likely(PyList_CheckExact(__pyx_t_1))) { - if (__pyx_t_6 >= PyList_GET_SIZE(__pyx_t_1)) break; - #if CYTHON_ASSUME_SAFE_MACROS && !CYTHON_AVOID_BORROWED_REFS - __pyx_t_5 = PyList_GET_ITEM(__pyx_t_1, __pyx_t_6); __Pyx_INCREF(__pyx_t_5); __pyx_t_6++; if (unlikely(0 < 0)) __PYX_ERR(0, 71, __pyx_L1_error) - #else - __pyx_t_5 = PySequence_ITEM(__pyx_t_1, __pyx_t_6); __pyx_t_6++; if (unlikely(!__pyx_t_5)) __PYX_ERR(0, 71, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_5); - #endif - } else { - if (__pyx_t_6 >= PyTuple_GET_SIZE(__pyx_t_1)) break; - #if CYTHON_ASSUME_SAFE_MACROS && !CYTHON_AVOID_BORROWED_REFS - __pyx_t_5 = PyTuple_GET_ITEM(__pyx_t_1, __pyx_t_6); __Pyx_INCREF(__pyx_t_5); __pyx_t_6++; if (unlikely(0 < 0)) __PYX_ERR(0, 71, __pyx_L1_error) - #else - __pyx_t_5 = PySequence_ITEM(__pyx_t_1, __pyx_t_6); __pyx_t_6++; if (unlikely(!__pyx_t_5)) __PYX_ERR(0, 71, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_5); - #endif - } - } else { - __pyx_t_5 = __pyx_t_7(__pyx_t_1); - if (unlikely(!__pyx_t_5)) { - PyObject* exc_type = PyErr_Occurred(); - if (exc_type) { - if (likely(__Pyx_PyErr_GivenExceptionMatches(exc_type, PyExc_StopIteration))) PyErr_Clear(); - else __PYX_ERR(0, 71, __pyx_L1_error) - } - break; - } - __Pyx_GOTREF(__pyx_t_5); - } - __Pyx_XDECREF_SET(__pyx_v_line, __pyx_t_5); - __pyx_t_5 = 0; - - /* "pmercury/protocols/tls.pyx":72 - * self.transition_probs = {} - * for line in os.popen('zcat %s' % (transition_probs_file), mode='r', buffering=8192*256): - * t_ = line.strip().split(',') # <<<<<<<<<<<<<< - * if t_[1] not in self.transition_probs: - * self.transition_probs[t_[1]] = {} - */ - __pyx_t_3 = __Pyx_PyObject_GetAttrStr(__pyx_v_line, __pyx_n_s_strip); if (unlikely(!__pyx_t_3)) __PYX_ERR(0, 72, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_3); - __pyx_t_8 = NULL; - if (CYTHON_UNPACK_METHODS && likely(PyMethod_Check(__pyx_t_3))) { - __pyx_t_8 = PyMethod_GET_SELF(__pyx_t_3); - if (likely(__pyx_t_8)) { - PyObject* function = PyMethod_GET_FUNCTION(__pyx_t_3); - __Pyx_INCREF(__pyx_t_8); - __Pyx_INCREF(function); - __Pyx_DECREF_SET(__pyx_t_3, function); - } - } - __pyx_t_4 = (__pyx_t_8) ? __Pyx_PyObject_CallOneArg(__pyx_t_3, __pyx_t_8) : __Pyx_PyObject_CallNoArg(__pyx_t_3); - __Pyx_XDECREF(__pyx_t_8); __pyx_t_8 = 0; - if (unlikely(!__pyx_t_4)) __PYX_ERR(0, 72, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_4); - __Pyx_DECREF(__pyx_t_3); __pyx_t_3 = 0; - __pyx_t_3 = __Pyx_PyObject_GetAttrStr(__pyx_t_4, __pyx_n_s_split); if (unlikely(!__pyx_t_3)) __PYX_ERR(0, 72, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_3); - __Pyx_DECREF(__pyx_t_4); __pyx_t_4 = 0; - __pyx_t_4 = NULL; - if (CYTHON_UNPACK_METHODS && likely(PyMethod_Check(__pyx_t_3))) { - __pyx_t_4 = PyMethod_GET_SELF(__pyx_t_3); - if (likely(__pyx_t_4)) { - PyObject* function = PyMethod_GET_FUNCTION(__pyx_t_3); - __Pyx_INCREF(__pyx_t_4); - __Pyx_INCREF(function); - __Pyx_DECREF_SET(__pyx_t_3, function); - } - } - __pyx_t_5 = (__pyx_t_4) ? __Pyx_PyObject_Call2Args(__pyx_t_3, __pyx_t_4, __pyx_kp_u_) : __Pyx_PyObject_CallOneArg(__pyx_t_3, __pyx_kp_u_); - __Pyx_XDECREF(__pyx_t_4); __pyx_t_4 = 0; - if (unlikely(!__pyx_t_5)) __PYX_ERR(0, 72, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_5); - __Pyx_DECREF(__pyx_t_3); __pyx_t_3 = 0; - __Pyx_XDECREF_SET(__pyx_v_t_, __pyx_t_5); - __pyx_t_5 = 0; - - /* "pmercury/protocols/tls.pyx":73 - * for line in os.popen('zcat %s' % (transition_probs_file), mode='r', buffering=8192*256): - * t_ = line.strip().split(',') - * if t_[1] not in self.transition_probs: # <<<<<<<<<<<<<< - * self.transition_probs[t_[1]] = {} - * self.transition_probs[t_[1]][t_[2]] = float(t_[0]) - */ - __pyx_t_5 = __Pyx_GetItemInt(__pyx_v_t_, 1, long, 1, __Pyx_PyInt_From_long, 0, 0, 1); if (unlikely(!__pyx_t_5)) __PYX_ERR(0, 73, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_5); - if (unlikely(__pyx_v_self->transition_probs == Py_None)) { - PyErr_SetString(PyExc_TypeError, "'NoneType' object is not iterable"); - __PYX_ERR(0, 73, __pyx_L1_error) - } - __pyx_t_2 = (__Pyx_PyDict_ContainsTF(__pyx_t_5, __pyx_v_self->transition_probs, Py_NE)); if (unlikely(__pyx_t_2 < 0)) __PYX_ERR(0, 73, __pyx_L1_error) - __Pyx_DECREF(__pyx_t_5); __pyx_t_5 = 0; - __pyx_t_9 = (__pyx_t_2 != 0); - if (__pyx_t_9) { - - /* "pmercury/protocols/tls.pyx":74 - * t_ = line.strip().split(',') - * if t_[1] not in self.transition_probs: - * self.transition_probs[t_[1]] = {} # <<<<<<<<<<<<<< - * self.transition_probs[t_[1]][t_[2]] = float(t_[0]) - * - */ - __pyx_t_5 = __Pyx_PyDict_NewPresized(0); if (unlikely(!__pyx_t_5)) __PYX_ERR(0, 74, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_5); - if (unlikely(__pyx_v_self->transition_probs == Py_None)) { - PyErr_SetString(PyExc_TypeError, "'NoneType' object is not subscriptable"); - __PYX_ERR(0, 74, __pyx_L1_error) - } - __pyx_t_3 = __Pyx_GetItemInt(__pyx_v_t_, 1, long, 1, __Pyx_PyInt_From_long, 0, 0, 1); if (unlikely(!__pyx_t_3)) __PYX_ERR(0, 74, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_3); - if (unlikely(PyDict_SetItem(__pyx_v_self->transition_probs, __pyx_t_3, __pyx_t_5) < 0)) __PYX_ERR(0, 74, __pyx_L1_error) - __Pyx_DECREF(__pyx_t_3); __pyx_t_3 = 0; - __Pyx_DECREF(__pyx_t_5); __pyx_t_5 = 0; - - /* "pmercury/protocols/tls.pyx":73 - * for line in os.popen('zcat %s' % (transition_probs_file), mode='r', buffering=8192*256): - * t_ = line.strip().split(',') - * if t_[1] not in self.transition_probs: # <<<<<<<<<<<<<< - * self.transition_probs[t_[1]] = {} - * self.transition_probs[t_[1]][t_[2]] = float(t_[0]) - */ - } - - /* "pmercury/protocols/tls.pyx":75 - * if t_[1] not in self.transition_probs: - * self.transition_probs[t_[1]] = {} - * self.transition_probs[t_[1]][t_[2]] = float(t_[0]) # <<<<<<<<<<<<<< - * - * app_families_file = find_resource_path('resources/app_families.txt') - */ - __pyx_t_5 = __Pyx_GetItemInt(__pyx_v_t_, 0, long, 1, __Pyx_PyInt_From_long, 0, 0, 1); if (unlikely(!__pyx_t_5)) __PYX_ERR(0, 75, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_5); - __pyx_t_3 = __Pyx_PyNumber_Float(__pyx_t_5); if (unlikely(!__pyx_t_3)) __PYX_ERR(0, 75, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_3); - __Pyx_DECREF(__pyx_t_5); __pyx_t_5 = 0; - if (unlikely(__pyx_v_self->transition_probs == Py_None)) { - PyErr_SetString(PyExc_TypeError, "'NoneType' object is not subscriptable"); - __PYX_ERR(0, 75, __pyx_L1_error) - } - __pyx_t_5 = __Pyx_GetItemInt(__pyx_v_t_, 1, long, 1, __Pyx_PyInt_From_long, 0, 0, 1); if (unlikely(!__pyx_t_5)) __PYX_ERR(0, 75, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_5); - __pyx_t_4 = __Pyx_PyDict_GetItem(__pyx_v_self->transition_probs, __pyx_t_5); if (unlikely(!__pyx_t_4)) __PYX_ERR(0, 75, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_4); - __Pyx_DECREF(__pyx_t_5); __pyx_t_5 = 0; - __pyx_t_5 = __Pyx_GetItemInt(__pyx_v_t_, 2, long, 1, __Pyx_PyInt_From_long, 0, 0, 1); if (unlikely(!__pyx_t_5)) __PYX_ERR(0, 75, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_5); - if (unlikely(PyObject_SetItem(__pyx_t_4, __pyx_t_5, __pyx_t_3) < 0)) __PYX_ERR(0, 75, __pyx_L1_error) - __Pyx_DECREF(__pyx_t_4); __pyx_t_4 = 0; - __Pyx_DECREF(__pyx_t_5); __pyx_t_5 = 0; - __Pyx_DECREF(__pyx_t_3); __pyx_t_3 = 0; - - /* "pmercury/protocols/tls.pyx":71 - * transition_probs_file = find_resource_path('resources/transition_probs.csv.gz') - * self.transition_probs = {} - * for line in os.popen('zcat %s' % (transition_probs_file), mode='r', buffering=8192*256): # <<<<<<<<<<<<<< - * t_ = line.strip().split(',') - * if t_[1] not in self.transition_probs: - */ - } - __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0; - - /* "pmercury/protocols/tls.pyx":77 - * self.transition_probs[t_[1]][t_[2]] = float(t_[0]) - * - * app_families_file = find_resource_path('resources/app_families.txt') # <<<<<<<<<<<<<< - * self.app_families = {} - * for line in open(app_families_file, 'r'): - */ - __Pyx_GetModuleGlobalName(__pyx_t_3, __pyx_n_s_find_resource_path); if (unlikely(!__pyx_t_3)) __PYX_ERR(0, 77, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_3); - __pyx_t_5 = NULL; - if (CYTHON_UNPACK_METHODS && unlikely(PyMethod_Check(__pyx_t_3))) { - __pyx_t_5 = PyMethod_GET_SELF(__pyx_t_3); - if (likely(__pyx_t_5)) { - PyObject* function = PyMethod_GET_FUNCTION(__pyx_t_3); - __Pyx_INCREF(__pyx_t_5); - __Pyx_INCREF(function); - __Pyx_DECREF_SET(__pyx_t_3, function); - } - } - __pyx_t_1 = (__pyx_t_5) ? __Pyx_PyObject_Call2Args(__pyx_t_3, __pyx_t_5, __pyx_kp_u_resources_app_families_txt) : __Pyx_PyObject_CallOneArg(__pyx_t_3, __pyx_kp_u_resources_app_families_txt); - __Pyx_XDECREF(__pyx_t_5); __pyx_t_5 = 0; - if (unlikely(!__pyx_t_1)) __PYX_ERR(0, 77, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_1); - __Pyx_DECREF(__pyx_t_3); __pyx_t_3 = 0; - __pyx_v_app_families_file = __pyx_t_1; - __pyx_t_1 = 0; - - /* "pmercury/protocols/tls.pyx":78 - * - * app_families_file = find_resource_path('resources/app_families.txt') - * self.app_families = {} # <<<<<<<<<<<<<< - * for line in open(app_families_file, 'r'): - * tokens = line.strip().split(',') - */ - __pyx_t_1 = __Pyx_PyDict_NewPresized(0); if (unlikely(!__pyx_t_1)) __PYX_ERR(0, 78, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_1); - __Pyx_GIVEREF(__pyx_t_1); - __Pyx_GOTREF(__pyx_v_self->app_families); - __Pyx_DECREF(__pyx_v_self->app_families); - __pyx_v_self->app_families = ((PyObject*)__pyx_t_1); - __pyx_t_1 = 0; - - /* "pmercury/protocols/tls.pyx":79 - * app_families_file = find_resource_path('resources/app_families.txt') - * self.app_families = {} - * for line in open(app_families_file, 'r'): # <<<<<<<<<<<<<< - * tokens = line.strip().split(',') - * for i in range(1, len(tokens)): - */ - __pyx_t_1 = PyTuple_New(2); if (unlikely(!__pyx_t_1)) __PYX_ERR(0, 79, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_1); - __Pyx_INCREF(__pyx_v_app_families_file); - __Pyx_GIVEREF(__pyx_v_app_families_file); - PyTuple_SET_ITEM(__pyx_t_1, 0, __pyx_v_app_families_file); - __Pyx_INCREF(__pyx_n_u_r); - __Pyx_GIVEREF(__pyx_n_u_r); - PyTuple_SET_ITEM(__pyx_t_1, 1, __pyx_n_u_r); - __pyx_t_3 = __Pyx_PyObject_Call(__pyx_builtin_open, __pyx_t_1, NULL); if (unlikely(!__pyx_t_3)) __PYX_ERR(0, 79, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_3); - __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0; - if (likely(PyList_CheckExact(__pyx_t_3)) || PyTuple_CheckExact(__pyx_t_3)) { - __pyx_t_1 = __pyx_t_3; __Pyx_INCREF(__pyx_t_1); __pyx_t_6 = 0; - __pyx_t_7 = NULL; - } else { - __pyx_t_6 = -1; __pyx_t_1 = PyObject_GetIter(__pyx_t_3); if (unlikely(!__pyx_t_1)) __PYX_ERR(0, 79, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_1); - __pyx_t_7 = Py_TYPE(__pyx_t_1)->tp_iternext; if (unlikely(!__pyx_t_7)) __PYX_ERR(0, 79, __pyx_L1_error) - } - __Pyx_DECREF(__pyx_t_3); __pyx_t_3 = 0; - for (;;) { - if (likely(!__pyx_t_7)) { - if (likely(PyList_CheckExact(__pyx_t_1))) { - if (__pyx_t_6 >= PyList_GET_SIZE(__pyx_t_1)) break; - #if CYTHON_ASSUME_SAFE_MACROS && !CYTHON_AVOID_BORROWED_REFS - __pyx_t_3 = PyList_GET_ITEM(__pyx_t_1, __pyx_t_6); __Pyx_INCREF(__pyx_t_3); __pyx_t_6++; if (unlikely(0 < 0)) __PYX_ERR(0, 79, __pyx_L1_error) - #else - __pyx_t_3 = PySequence_ITEM(__pyx_t_1, __pyx_t_6); __pyx_t_6++; if (unlikely(!__pyx_t_3)) __PYX_ERR(0, 79, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_3); - #endif - } else { - if (__pyx_t_6 >= PyTuple_GET_SIZE(__pyx_t_1)) break; - #if CYTHON_ASSUME_SAFE_MACROS && !CYTHON_AVOID_BORROWED_REFS - __pyx_t_3 = PyTuple_GET_ITEM(__pyx_t_1, __pyx_t_6); __Pyx_INCREF(__pyx_t_3); __pyx_t_6++; if (unlikely(0 < 0)) __PYX_ERR(0, 79, __pyx_L1_error) - #else - __pyx_t_3 = PySequence_ITEM(__pyx_t_1, __pyx_t_6); __pyx_t_6++; if (unlikely(!__pyx_t_3)) __PYX_ERR(0, 79, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_3); - #endif - } - } else { - __pyx_t_3 = __pyx_t_7(__pyx_t_1); - if (unlikely(!__pyx_t_3)) { - PyObject* exc_type = PyErr_Occurred(); - if (exc_type) { - if (likely(__Pyx_PyErr_GivenExceptionMatches(exc_type, PyExc_StopIteration))) PyErr_Clear(); - else __PYX_ERR(0, 79, __pyx_L1_error) - } - break; - } - __Pyx_GOTREF(__pyx_t_3); - } - __Pyx_XDECREF_SET(__pyx_v_line, __pyx_t_3); - __pyx_t_3 = 0; - - /* "pmercury/protocols/tls.pyx":80 - * self.app_families = {} - * for line in open(app_families_file, 'r'): - * tokens = line.strip().split(',') # <<<<<<<<<<<<<< - * for i in range(1, len(tokens)): - * self.app_families[tokens[i]] = tokens[0] - */ - __pyx_t_4 = __Pyx_PyObject_GetAttrStr(__pyx_v_line, __pyx_n_s_strip); if (unlikely(!__pyx_t_4)) __PYX_ERR(0, 80, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_4); - __pyx_t_8 = NULL; - if (CYTHON_UNPACK_METHODS && likely(PyMethod_Check(__pyx_t_4))) { - __pyx_t_8 = PyMethod_GET_SELF(__pyx_t_4); - if (likely(__pyx_t_8)) { - PyObject* function = PyMethod_GET_FUNCTION(__pyx_t_4); - __Pyx_INCREF(__pyx_t_8); - __Pyx_INCREF(function); - __Pyx_DECREF_SET(__pyx_t_4, function); - } - } - __pyx_t_5 = (__pyx_t_8) ? __Pyx_PyObject_CallOneArg(__pyx_t_4, __pyx_t_8) : __Pyx_PyObject_CallNoArg(__pyx_t_4); - __Pyx_XDECREF(__pyx_t_8); __pyx_t_8 = 0; - if (unlikely(!__pyx_t_5)) __PYX_ERR(0, 80, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_5); - __Pyx_DECREF(__pyx_t_4); __pyx_t_4 = 0; - __pyx_t_4 = __Pyx_PyObject_GetAttrStr(__pyx_t_5, __pyx_n_s_split); if (unlikely(!__pyx_t_4)) __PYX_ERR(0, 80, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_4); - __Pyx_DECREF(__pyx_t_5); __pyx_t_5 = 0; - __pyx_t_5 = NULL; - if (CYTHON_UNPACK_METHODS && likely(PyMethod_Check(__pyx_t_4))) { - __pyx_t_5 = PyMethod_GET_SELF(__pyx_t_4); - if (likely(__pyx_t_5)) { - PyObject* function = PyMethod_GET_FUNCTION(__pyx_t_4); - __Pyx_INCREF(__pyx_t_5); - __Pyx_INCREF(function); - __Pyx_DECREF_SET(__pyx_t_4, function); - } - } - __pyx_t_3 = (__pyx_t_5) ? __Pyx_PyObject_Call2Args(__pyx_t_4, __pyx_t_5, __pyx_kp_u_) : __Pyx_PyObject_CallOneArg(__pyx_t_4, __pyx_kp_u_); - __Pyx_XDECREF(__pyx_t_5); __pyx_t_5 = 0; - if (unlikely(!__pyx_t_3)) __PYX_ERR(0, 80, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_3); - __Pyx_DECREF(__pyx_t_4); __pyx_t_4 = 0; - __Pyx_XDECREF_SET(__pyx_v_tokens, __pyx_t_3); - __pyx_t_3 = 0; - - /* "pmercury/protocols/tls.pyx":81 - * for line in open(app_families_file, 'r'): - * tokens = line.strip().split(',') - * for i in range(1, len(tokens)): # <<<<<<<<<<<<<< - * self.app_families[tokens[i]] = tokens[0] - * - */ - __pyx_t_10 = PyObject_Length(__pyx_v_tokens); if (unlikely(__pyx_t_10 == ((Py_ssize_t)-1))) __PYX_ERR(0, 81, __pyx_L1_error) - __pyx_t_11 = __pyx_t_10; - for (__pyx_t_12 = 1; __pyx_t_12 < __pyx_t_11; __pyx_t_12+=1) { - __pyx_v_i = __pyx_t_12; - - /* "pmercury/protocols/tls.pyx":82 - * tokens = line.strip().split(',') - * for i in range(1, len(tokens)): - * self.app_families[tokens[i]] = tokens[0] # <<<<<<<<<<<<<< - * - * self.aligner = SequenceAlignment(f_similarity, 0.0) - */ - __pyx_t_3 = __Pyx_GetItemInt(__pyx_v_tokens, 0, long, 1, __Pyx_PyInt_From_long, 0, 0, 1); if (unlikely(!__pyx_t_3)) __PYX_ERR(0, 82, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_3); - if (unlikely(__pyx_v_self->app_families == Py_None)) { - PyErr_SetString(PyExc_TypeError, "'NoneType' object is not subscriptable"); - __PYX_ERR(0, 82, __pyx_L1_error) - } - __pyx_t_4 = __Pyx_GetItemInt(__pyx_v_tokens, __pyx_v_i, Py_ssize_t, 1, PyInt_FromSsize_t, 0, 0, 1); if (unlikely(!__pyx_t_4)) __PYX_ERR(0, 82, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_4); - if (unlikely(PyDict_SetItem(__pyx_v_self->app_families, __pyx_t_4, __pyx_t_3) < 0)) __PYX_ERR(0, 82, __pyx_L1_error) - __Pyx_DECREF(__pyx_t_4); __pyx_t_4 = 0; - __Pyx_DECREF(__pyx_t_3); __pyx_t_3 = 0; - } - - /* "pmercury/protocols/tls.pyx":79 - * app_families_file = find_resource_path('resources/app_families.txt') - * self.app_families = {} - * for line in open(app_families_file, 'r'): # <<<<<<<<<<<<<< - * tokens = line.strip().split(',') - * for i in range(1, len(tokens)): - */ - } - __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0; - - /* "pmercury/protocols/tls.pyx":84 - * self.app_families[tokens[i]] = tokens[0] - * - * self.aligner = SequenceAlignment(f_similarity, 0.0) # <<<<<<<<<<<<<< - * - * - */ - __Pyx_GetModuleGlobalName(__pyx_t_3, __pyx_n_s_SequenceAlignment); if (unlikely(!__pyx_t_3)) __PYX_ERR(0, 84, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_3); - __Pyx_GetModuleGlobalName(__pyx_t_4, __pyx_n_s_f_similarity); if (unlikely(!__pyx_t_4)) __PYX_ERR(0, 84, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_4); - __pyx_t_5 = NULL; - __pyx_t_13 = 0; - if (CYTHON_UNPACK_METHODS && unlikely(PyMethod_Check(__pyx_t_3))) { - __pyx_t_5 = PyMethod_GET_SELF(__pyx_t_3); - if (likely(__pyx_t_5)) { - PyObject* function = PyMethod_GET_FUNCTION(__pyx_t_3); - __Pyx_INCREF(__pyx_t_5); - __Pyx_INCREF(function); - __Pyx_DECREF_SET(__pyx_t_3, function); - __pyx_t_13 = 1; - } - } - #if CYTHON_FAST_PYCALL - if (PyFunction_Check(__pyx_t_3)) { - PyObject *__pyx_temp[3] = {__pyx_t_5, __pyx_t_4, __pyx_float_0_0}; - __pyx_t_1 = __Pyx_PyFunction_FastCall(__pyx_t_3, __pyx_temp+1-__pyx_t_13, 2+__pyx_t_13); if (unlikely(!__pyx_t_1)) __PYX_ERR(0, 84, __pyx_L1_error) - __Pyx_XDECREF(__pyx_t_5); __pyx_t_5 = 0; - __Pyx_GOTREF(__pyx_t_1); - __Pyx_DECREF(__pyx_t_4); __pyx_t_4 = 0; - } else - #endif - #if CYTHON_FAST_PYCCALL - if (__Pyx_PyFastCFunction_Check(__pyx_t_3)) { - PyObject *__pyx_temp[3] = {__pyx_t_5, __pyx_t_4, __pyx_float_0_0}; - __pyx_t_1 = __Pyx_PyCFunction_FastCall(__pyx_t_3, __pyx_temp+1-__pyx_t_13, 2+__pyx_t_13); if (unlikely(!__pyx_t_1)) __PYX_ERR(0, 84, __pyx_L1_error) - __Pyx_XDECREF(__pyx_t_5); __pyx_t_5 = 0; - __Pyx_GOTREF(__pyx_t_1); - __Pyx_DECREF(__pyx_t_4); __pyx_t_4 = 0; - } else - #endif - { - __pyx_t_8 = PyTuple_New(2+__pyx_t_13); if (unlikely(!__pyx_t_8)) __PYX_ERR(0, 84, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_8); - if (__pyx_t_5) { - __Pyx_GIVEREF(__pyx_t_5); PyTuple_SET_ITEM(__pyx_t_8, 0, __pyx_t_5); __pyx_t_5 = NULL; - } - __Pyx_GIVEREF(__pyx_t_4); - PyTuple_SET_ITEM(__pyx_t_8, 0+__pyx_t_13, __pyx_t_4); - __Pyx_INCREF(__pyx_float_0_0); - __Pyx_GIVEREF(__pyx_float_0_0); - PyTuple_SET_ITEM(__pyx_t_8, 1+__pyx_t_13, __pyx_float_0_0); - __pyx_t_4 = 0; - __pyx_t_1 = __Pyx_PyObject_Call(__pyx_t_3, __pyx_t_8, NULL); if (unlikely(!__pyx_t_1)) __PYX_ERR(0, 84, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_1); - __Pyx_DECREF(__pyx_t_8); __pyx_t_8 = 0; - } - __Pyx_DECREF(__pyx_t_3); __pyx_t_3 = 0; - __Pyx_GIVEREF(__pyx_t_1); - __Pyx_GOTREF(__pyx_v_self->aligner); - __Pyx_DECREF(__pyx_v_self->aligner); - __pyx_v_self->aligner = __pyx_t_1; - __pyx_t_1 = 0; - - /* "pmercury/protocols/tls.pyx":46 - * cdef object aligner - * - * def __init__(self, fp_database=None, config=None): # <<<<<<<<<<<<<< - * # cached data/results - * self.tls_params_db = {} - */ - - /* function exit code */ - __pyx_r = 0; - goto __pyx_L0; - __pyx_L1_error:; - __Pyx_XDECREF(__pyx_t_1); - __Pyx_XDECREF(__pyx_t_3); - __Pyx_XDECREF(__pyx_t_4); - __Pyx_XDECREF(__pyx_t_5); - __Pyx_XDECREF(__pyx_t_8); - __Pyx_AddTraceback("pmercury.protocols.tls.TLS.__init__", __pyx_clineno, __pyx_lineno, __pyx_filename); - __pyx_r = -1; - __pyx_L0:; - __Pyx_XDECREF(__pyx_v_transition_probs_file); - __Pyx_XDECREF(__pyx_v_line); - __Pyx_XDECREF(__pyx_v_t_); - __Pyx_XDECREF(__pyx_v_app_families_file); - __Pyx_XDECREF(__pyx_v_tokens); - __Pyx_XDECREF(__pyx_v_fp_database); - __Pyx_RefNannyFinishContext(); - return __pyx_r; -} - -/* "pmercury/protocols/tls.pyx":87 - * - * - * def load_database(self, str fp_database): # <<<<<<<<<<<<<< - * cdef str line, fp_str - * cdef dict fp_ - */ - -/* Python wrapper */ -static PyObject *__pyx_pw_8pmercury_9protocols_3tls_3TLS_3load_database(PyObject *__pyx_v_self, PyObject *__pyx_v_fp_database); /*proto*/ -static PyObject *__pyx_pw_8pmercury_9protocols_3tls_3TLS_3load_database(PyObject *__pyx_v_self, PyObject *__pyx_v_fp_database) { - PyObject *__pyx_r = 0; - __Pyx_RefNannyDeclarations - __Pyx_RefNannySetupContext("load_database (wrapper)", 0); - if (unlikely(!__Pyx_ArgTypeTest(((PyObject *)__pyx_v_fp_database), (&PyUnicode_Type), 1, "fp_database", 1))) __PYX_ERR(0, 87, __pyx_L1_error) - __pyx_r = __pyx_pf_8pmercury_9protocols_3tls_3TLS_2load_database(((struct __pyx_obj_8pmercury_9protocols_3tls_TLS *)__pyx_v_self), ((PyObject*)__pyx_v_fp_database)); - - /* function exit code */ - goto __pyx_L0; - __pyx_L1_error:; - __pyx_r = NULL; - __pyx_L0:; - __Pyx_RefNannyFinishContext(); - return __pyx_r; -} - -static PyObject *__pyx_pf_8pmercury_9protocols_3tls_3TLS_2load_database(struct __pyx_obj_8pmercury_9protocols_3tls_TLS *__pyx_v_self, PyObject *__pyx_v_fp_database) { - PyObject *__pyx_v_line = 0; - PyObject *__pyx_v_fp_ = 0; - PyObject *__pyx_r = NULL; - __Pyx_RefNannyDeclarations - PyObject *__pyx_t_1 = NULL; - PyObject *__pyx_t_2 = NULL; - PyObject *__pyx_t_3 = NULL; - PyObject *__pyx_t_4 = NULL; - Py_ssize_t __pyx_t_5; - PyObject *(*__pyx_t_6)(PyObject *); - int __pyx_t_7; - int __pyx_t_8; - int __pyx_t_9; - __Pyx_RefNannySetupContext("load_database", 0); - - /* "pmercury/protocols/tls.pyx":96 - * self.fp_db[fp_['str_repr']] = fp_ - * ELSE: - * for line in os.popen('zcat %s' % (fp_database), mode='r', buffering=8192*256): # <<<<<<<<<<<<<< - * fp_ = json.loads(line) - * self.fp_db[fp_['str_repr']] = fp_ - */ - __Pyx_GetModuleGlobalName(__pyx_t_1, __pyx_n_s_os); if (unlikely(!__pyx_t_1)) __PYX_ERR(0, 96, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_1); - __pyx_t_2 = __Pyx_PyObject_GetAttrStr(__pyx_t_1, __pyx_n_s_popen); if (unlikely(!__pyx_t_2)) __PYX_ERR(0, 96, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_2); - __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0; - __pyx_t_1 = PyUnicode_Format(__pyx_kp_u_zcat_s, __pyx_v_fp_database); if (unlikely(!__pyx_t_1)) __PYX_ERR(0, 96, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_1); - __pyx_t_3 = PyTuple_New(1); if (unlikely(!__pyx_t_3)) __PYX_ERR(0, 96, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_3); - __Pyx_GIVEREF(__pyx_t_1); - PyTuple_SET_ITEM(__pyx_t_3, 0, __pyx_t_1); - __pyx_t_1 = 0; - __pyx_t_1 = __Pyx_PyDict_NewPresized(2); if (unlikely(!__pyx_t_1)) __PYX_ERR(0, 96, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_1); - if (PyDict_SetItem(__pyx_t_1, __pyx_n_s_mode, __pyx_n_u_r) < 0) __PYX_ERR(0, 96, __pyx_L1_error) - if (PyDict_SetItem(__pyx_t_1, __pyx_n_s_buffering, __pyx_int_2097152) < 0) __PYX_ERR(0, 96, __pyx_L1_error) - __pyx_t_4 = __Pyx_PyObject_Call(__pyx_t_2, __pyx_t_3, __pyx_t_1); if (unlikely(!__pyx_t_4)) __PYX_ERR(0, 96, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_4); - __Pyx_DECREF(__pyx_t_2); __pyx_t_2 = 0; - __Pyx_DECREF(__pyx_t_3); __pyx_t_3 = 0; - __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0; - if (likely(PyList_CheckExact(__pyx_t_4)) || PyTuple_CheckExact(__pyx_t_4)) { - __pyx_t_1 = __pyx_t_4; __Pyx_INCREF(__pyx_t_1); __pyx_t_5 = 0; - __pyx_t_6 = NULL; - } else { - __pyx_t_5 = -1; __pyx_t_1 = PyObject_GetIter(__pyx_t_4); if (unlikely(!__pyx_t_1)) __PYX_ERR(0, 96, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_1); - __pyx_t_6 = Py_TYPE(__pyx_t_1)->tp_iternext; if (unlikely(!__pyx_t_6)) __PYX_ERR(0, 96, __pyx_L1_error) - } - __Pyx_DECREF(__pyx_t_4); __pyx_t_4 = 0; - for (;;) { - if (likely(!__pyx_t_6)) { - if (likely(PyList_CheckExact(__pyx_t_1))) { - if (__pyx_t_5 >= PyList_GET_SIZE(__pyx_t_1)) break; - #if CYTHON_ASSUME_SAFE_MACROS && !CYTHON_AVOID_BORROWED_REFS - __pyx_t_4 = PyList_GET_ITEM(__pyx_t_1, __pyx_t_5); __Pyx_INCREF(__pyx_t_4); __pyx_t_5++; if (unlikely(0 < 0)) __PYX_ERR(0, 96, __pyx_L1_error) - #else - __pyx_t_4 = PySequence_ITEM(__pyx_t_1, __pyx_t_5); __pyx_t_5++; if (unlikely(!__pyx_t_4)) __PYX_ERR(0, 96, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_4); - #endif - } else { - if (__pyx_t_5 >= PyTuple_GET_SIZE(__pyx_t_1)) break; - #if CYTHON_ASSUME_SAFE_MACROS && !CYTHON_AVOID_BORROWED_REFS - __pyx_t_4 = PyTuple_GET_ITEM(__pyx_t_1, __pyx_t_5); __Pyx_INCREF(__pyx_t_4); __pyx_t_5++; if (unlikely(0 < 0)) __PYX_ERR(0, 96, __pyx_L1_error) - #else - __pyx_t_4 = PySequence_ITEM(__pyx_t_1, __pyx_t_5); __pyx_t_5++; if (unlikely(!__pyx_t_4)) __PYX_ERR(0, 96, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_4); - #endif - } - } else { - __pyx_t_4 = __pyx_t_6(__pyx_t_1); - if (unlikely(!__pyx_t_4)) { - PyObject* exc_type = PyErr_Occurred(); - if (exc_type) { - if (likely(__Pyx_PyErr_GivenExceptionMatches(exc_type, PyExc_StopIteration))) PyErr_Clear(); - else __PYX_ERR(0, 96, __pyx_L1_error) - } - break; - } - __Pyx_GOTREF(__pyx_t_4); - } - if (!(likely(PyUnicode_CheckExact(__pyx_t_4))||((__pyx_t_4) == Py_None)||(PyErr_Format(PyExc_TypeError, "Expected %.16s, got %.200s", "unicode", Py_TYPE(__pyx_t_4)->tp_name), 0))) __PYX_ERR(0, 96, __pyx_L1_error) - __Pyx_XDECREF_SET(__pyx_v_line, ((PyObject*)__pyx_t_4)); - __pyx_t_4 = 0; - - /* "pmercury/protocols/tls.pyx":97 - * ELSE: - * for line in os.popen('zcat %s' % (fp_database), mode='r', buffering=8192*256): - * fp_ = json.loads(line) # <<<<<<<<<<<<<< - * self.fp_db[fp_['str_repr']] = fp_ - * if 'malware' not in self.fp_db[fp_['str_repr']]['process_info'][0]: - */ - __Pyx_GetModuleGlobalName(__pyx_t_3, __pyx_n_s_json); if (unlikely(!__pyx_t_3)) __PYX_ERR(0, 97, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_3); - __pyx_t_2 = __Pyx_PyObject_GetAttrStr(__pyx_t_3, __pyx_n_s_loads); if (unlikely(!__pyx_t_2)) __PYX_ERR(0, 97, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_2); - __Pyx_DECREF(__pyx_t_3); __pyx_t_3 = 0; - __pyx_t_3 = NULL; - if (CYTHON_UNPACK_METHODS && unlikely(PyMethod_Check(__pyx_t_2))) { - __pyx_t_3 = PyMethod_GET_SELF(__pyx_t_2); - if (likely(__pyx_t_3)) { - PyObject* function = PyMethod_GET_FUNCTION(__pyx_t_2); - __Pyx_INCREF(__pyx_t_3); - __Pyx_INCREF(function); - __Pyx_DECREF_SET(__pyx_t_2, function); - } - } - __pyx_t_4 = (__pyx_t_3) ? __Pyx_PyObject_Call2Args(__pyx_t_2, __pyx_t_3, __pyx_v_line) : __Pyx_PyObject_CallOneArg(__pyx_t_2, __pyx_v_line); - __Pyx_XDECREF(__pyx_t_3); __pyx_t_3 = 0; - if (unlikely(!__pyx_t_4)) __PYX_ERR(0, 97, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_4); - __Pyx_DECREF(__pyx_t_2); __pyx_t_2 = 0; - if (!(likely(PyDict_CheckExact(__pyx_t_4))||((__pyx_t_4) == Py_None)||(PyErr_Format(PyExc_TypeError, "Expected %.16s, got %.200s", "dict", Py_TYPE(__pyx_t_4)->tp_name), 0))) __PYX_ERR(0, 97, __pyx_L1_error) - __Pyx_XDECREF_SET(__pyx_v_fp_, ((PyObject*)__pyx_t_4)); - __pyx_t_4 = 0; - - /* "pmercury/protocols/tls.pyx":98 - * for line in os.popen('zcat %s' % (fp_database), mode='r', buffering=8192*256): - * fp_ = json.loads(line) - * self.fp_db[fp_['str_repr']] = fp_ # <<<<<<<<<<<<<< - * if 'malware' not in self.fp_db[fp_['str_repr']]['process_info'][0]: - * self.MALWARE_DB = False - */ - if (unlikely(__pyx_v_self->fp_db == Py_None)) { - PyErr_SetString(PyExc_TypeError, "'NoneType' object is not subscriptable"); - __PYX_ERR(0, 98, __pyx_L1_error) - } - if (unlikely(__pyx_v_fp_ == Py_None)) { - PyErr_SetString(PyExc_TypeError, "'NoneType' object is not subscriptable"); - __PYX_ERR(0, 98, __pyx_L1_error) - } - __pyx_t_4 = __Pyx_PyDict_GetItem(__pyx_v_fp_, __pyx_n_u_str_repr); if (unlikely(!__pyx_t_4)) __PYX_ERR(0, 98, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_4); - if (unlikely(PyDict_SetItem(__pyx_v_self->fp_db, __pyx_t_4, __pyx_v_fp_) < 0)) __PYX_ERR(0, 98, __pyx_L1_error) - __Pyx_DECREF(__pyx_t_4); __pyx_t_4 = 0; - - /* "pmercury/protocols/tls.pyx":96 - * self.fp_db[fp_['str_repr']] = fp_ - * ELSE: - * for line in os.popen('zcat %s' % (fp_database), mode='r', buffering=8192*256): # <<<<<<<<<<<<<< - * fp_ = json.loads(line) - * self.fp_db[fp_['str_repr']] = fp_ - */ - } - __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0; - - /* "pmercury/protocols/tls.pyx":99 - * fp_ = json.loads(line) - * self.fp_db[fp_['str_repr']] = fp_ - * if 'malware' not in self.fp_db[fp_['str_repr']]['process_info'][0]: # <<<<<<<<<<<<<< - * self.MALWARE_DB = False - * if ('classes_ip_ip' in self.fp_db[fp_['str_repr']]['process_info'][0] and - */ - if (unlikely(__pyx_v_self->fp_db == Py_None)) { - PyErr_SetString(PyExc_TypeError, "'NoneType' object is not subscriptable"); - __PYX_ERR(0, 99, __pyx_L1_error) - } - if (unlikely(!__pyx_v_fp_)) { __Pyx_RaiseUnboundLocalError("fp_"); __PYX_ERR(0, 99, __pyx_L1_error) } - if (unlikely(__pyx_v_fp_ == Py_None)) { - PyErr_SetString(PyExc_TypeError, "'NoneType' object is not subscriptable"); - __PYX_ERR(0, 99, __pyx_L1_error) - } - __pyx_t_1 = __Pyx_PyDict_GetItem(__pyx_v_fp_, __pyx_n_u_str_repr); if (unlikely(!__pyx_t_1)) __PYX_ERR(0, 99, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_1); - __pyx_t_4 = __Pyx_PyDict_GetItem(__pyx_v_self->fp_db, __pyx_t_1); if (unlikely(!__pyx_t_4)) __PYX_ERR(0, 99, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_4); - __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0; - __pyx_t_1 = __Pyx_PyObject_Dict_GetItem(__pyx_t_4, __pyx_n_u_process_info); if (unlikely(!__pyx_t_1)) __PYX_ERR(0, 99, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_1); - __Pyx_DECREF(__pyx_t_4); __pyx_t_4 = 0; - __pyx_t_4 = __Pyx_GetItemInt(__pyx_t_1, 0, long, 1, __Pyx_PyInt_From_long, 0, 0, 1); if (unlikely(!__pyx_t_4)) __PYX_ERR(0, 99, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_4); - __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0; - __pyx_t_7 = (__Pyx_PySequence_ContainsTF(__pyx_n_u_malware, __pyx_t_4, Py_NE)); if (unlikely(__pyx_t_7 < 0)) __PYX_ERR(0, 99, __pyx_L1_error) - __Pyx_DECREF(__pyx_t_4); __pyx_t_4 = 0; - __pyx_t_8 = (__pyx_t_7 != 0); - if (__pyx_t_8) { - - /* "pmercury/protocols/tls.pyx":100 - * self.fp_db[fp_['str_repr']] = fp_ - * if 'malware' not in self.fp_db[fp_['str_repr']]['process_info'][0]: - * self.MALWARE_DB = False # <<<<<<<<<<<<<< - * if ('classes_ip_ip' in self.fp_db[fp_['str_repr']]['process_info'][0] and - * 'classes_hostname_sni' in self.fp_db[fp_['str_repr']]['process_info'][0]): - */ - __pyx_v_self->MALWARE_DB = 0; - - /* "pmercury/protocols/tls.pyx":99 - * fp_ = json.loads(line) - * self.fp_db[fp_['str_repr']] = fp_ - * if 'malware' not in self.fp_db[fp_['str_repr']]['process_info'][0]: # <<<<<<<<<<<<<< - * self.MALWARE_DB = False - * if ('classes_ip_ip' in self.fp_db[fp_['str_repr']]['process_info'][0] and - */ - } - - /* "pmercury/protocols/tls.pyx":101 - * if 'malware' not in self.fp_db[fp_['str_repr']]['process_info'][0]: - * self.MALWARE_DB = False - * if ('classes_ip_ip' in self.fp_db[fp_['str_repr']]['process_info'][0] and # <<<<<<<<<<<<<< - * 'classes_hostname_sni' in self.fp_db[fp_['str_repr']]['process_info'][0]): - * self.EXTENDED_FP_METADATA = True - */ - if (unlikely(__pyx_v_self->fp_db == Py_None)) { - PyErr_SetString(PyExc_TypeError, "'NoneType' object is not subscriptable"); - __PYX_ERR(0, 101, __pyx_L1_error) - } - if (unlikely(!__pyx_v_fp_)) { __Pyx_RaiseUnboundLocalError("fp_"); __PYX_ERR(0, 101, __pyx_L1_error) } - if (unlikely(__pyx_v_fp_ == Py_None)) { - PyErr_SetString(PyExc_TypeError, "'NoneType' object is not subscriptable"); - __PYX_ERR(0, 101, __pyx_L1_error) - } - __pyx_t_4 = __Pyx_PyDict_GetItem(__pyx_v_fp_, __pyx_n_u_str_repr); if (unlikely(!__pyx_t_4)) __PYX_ERR(0, 101, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_4); - __pyx_t_1 = __Pyx_PyDict_GetItem(__pyx_v_self->fp_db, __pyx_t_4); if (unlikely(!__pyx_t_1)) __PYX_ERR(0, 101, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_1); - __Pyx_DECREF(__pyx_t_4); __pyx_t_4 = 0; - __pyx_t_4 = __Pyx_PyObject_Dict_GetItem(__pyx_t_1, __pyx_n_u_process_info); if (unlikely(!__pyx_t_4)) __PYX_ERR(0, 101, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_4); - __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0; - __pyx_t_1 = __Pyx_GetItemInt(__pyx_t_4, 0, long, 1, __Pyx_PyInt_From_long, 0, 0, 1); if (unlikely(!__pyx_t_1)) __PYX_ERR(0, 101, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_1); - __Pyx_DECREF(__pyx_t_4); __pyx_t_4 = 0; - __pyx_t_7 = (__Pyx_PySequence_ContainsTF(__pyx_n_u_classes_ip_ip, __pyx_t_1, Py_EQ)); if (unlikely(__pyx_t_7 < 0)) __PYX_ERR(0, 101, __pyx_L1_error) - __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0; - __pyx_t_9 = (__pyx_t_7 != 0); - if (__pyx_t_9) { - } else { - __pyx_t_8 = __pyx_t_9; - goto __pyx_L7_bool_binop_done; - } - - /* "pmercury/protocols/tls.pyx":102 - * self.MALWARE_DB = False - * if ('classes_ip_ip' in self.fp_db[fp_['str_repr']]['process_info'][0] and - * 'classes_hostname_sni' in self.fp_db[fp_['str_repr']]['process_info'][0]): # <<<<<<<<<<<<<< - * self.EXTENDED_FP_METADATA = True - * - */ - if (unlikely(__pyx_v_self->fp_db == Py_None)) { - PyErr_SetString(PyExc_TypeError, "'NoneType' object is not subscriptable"); - __PYX_ERR(0, 102, __pyx_L1_error) - } - if (unlikely(!__pyx_v_fp_)) { __Pyx_RaiseUnboundLocalError("fp_"); __PYX_ERR(0, 102, __pyx_L1_error) } - if (unlikely(__pyx_v_fp_ == Py_None)) { - PyErr_SetString(PyExc_TypeError, "'NoneType' object is not subscriptable"); - __PYX_ERR(0, 102, __pyx_L1_error) - } - __pyx_t_1 = __Pyx_PyDict_GetItem(__pyx_v_fp_, __pyx_n_u_str_repr); if (unlikely(!__pyx_t_1)) __PYX_ERR(0, 102, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_1); - __pyx_t_4 = __Pyx_PyDict_GetItem(__pyx_v_self->fp_db, __pyx_t_1); if (unlikely(!__pyx_t_4)) __PYX_ERR(0, 102, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_4); - __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0; - __pyx_t_1 = __Pyx_PyObject_Dict_GetItem(__pyx_t_4, __pyx_n_u_process_info); if (unlikely(!__pyx_t_1)) __PYX_ERR(0, 102, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_1); - __Pyx_DECREF(__pyx_t_4); __pyx_t_4 = 0; - __pyx_t_4 = __Pyx_GetItemInt(__pyx_t_1, 0, long, 1, __Pyx_PyInt_From_long, 0, 0, 1); if (unlikely(!__pyx_t_4)) __PYX_ERR(0, 102, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_4); - __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0; - __pyx_t_9 = (__Pyx_PySequence_ContainsTF(__pyx_n_u_classes_hostname_sni, __pyx_t_4, Py_EQ)); if (unlikely(__pyx_t_9 < 0)) __PYX_ERR(0, 102, __pyx_L1_error) - __Pyx_DECREF(__pyx_t_4); __pyx_t_4 = 0; - __pyx_t_7 = (__pyx_t_9 != 0); - __pyx_t_8 = __pyx_t_7; - __pyx_L7_bool_binop_done:; - - /* "pmercury/protocols/tls.pyx":101 - * if 'malware' not in self.fp_db[fp_['str_repr']]['process_info'][0]: - * self.MALWARE_DB = False - * if ('classes_ip_ip' in self.fp_db[fp_['str_repr']]['process_info'][0] and # <<<<<<<<<<<<<< - * 'classes_hostname_sni' in self.fp_db[fp_['str_repr']]['process_info'][0]): - * self.EXTENDED_FP_METADATA = True - */ - if (__pyx_t_8) { - - /* "pmercury/protocols/tls.pyx":103 - * if ('classes_ip_ip' in self.fp_db[fp_['str_repr']]['process_info'][0] and - * 'classes_hostname_sni' in self.fp_db[fp_['str_repr']]['process_info'][0]): - * self.EXTENDED_FP_METADATA = True # <<<<<<<<<<<<<< - * - * - */ - __pyx_v_self->EXTENDED_FP_METADATA = 1; - - /* "pmercury/protocols/tls.pyx":101 - * if 'malware' not in self.fp_db[fp_['str_repr']]['process_info'][0]: - * self.MALWARE_DB = False - * if ('classes_ip_ip' in self.fp_db[fp_['str_repr']]['process_info'][0] and # <<<<<<<<<<<<<< - * 'classes_hostname_sni' in self.fp_db[fp_['str_repr']]['process_info'][0]): - * self.EXTENDED_FP_METADATA = True - */ - } - - /* "pmercury/protocols/tls.pyx":87 - * - * - * def load_database(self, str fp_database): # <<<<<<<<<<<<<< - * cdef str line, fp_str - * cdef dict fp_ - */ - - /* function exit code */ - __pyx_r = Py_None; __Pyx_INCREF(Py_None); - goto __pyx_L0; - __pyx_L1_error:; - __Pyx_XDECREF(__pyx_t_1); - __Pyx_XDECREF(__pyx_t_2); - __Pyx_XDECREF(__pyx_t_3); - __Pyx_XDECREF(__pyx_t_4); - __Pyx_AddTraceback("pmercury.protocols.tls.TLS.load_database", __pyx_clineno, __pyx_lineno, __pyx_filename); - __pyx_r = NULL; - __pyx_L0:; - __Pyx_XDECREF(__pyx_v_line); - __Pyx_XDECREF(__pyx_v_fp_); - __Pyx_XGIVEREF(__pyx_r); - __Pyx_RefNannyFinishContext(); - return __pyx_r; -} - -/* "pmercury/protocols/tls.pyx":107 - * - * @staticmethod - * def proto_identify(data, offset, data_len): # <<<<<<<<<<<<<< - * if data_len-offset < 16: - * return False - */ - -/* Python wrapper */ -static PyObject *__pyx_pw_8pmercury_9protocols_3tls_3TLS_5proto_identify(CYTHON_UNUSED PyObject *__pyx_self, PyObject *__pyx_args, PyObject *__pyx_kwds); /*proto*/ -static PyMethodDef __pyx_mdef_8pmercury_9protocols_3tls_3TLS_5proto_identify = {"proto_identify", (PyCFunction)(void*)(PyCFunctionWithKeywords)__pyx_pw_8pmercury_9protocols_3tls_3TLS_5proto_identify, METH_VARARGS|METH_KEYWORDS, 0}; -static PyObject *__pyx_pw_8pmercury_9protocols_3tls_3TLS_5proto_identify(CYTHON_UNUSED PyObject *__pyx_self, PyObject *__pyx_args, PyObject *__pyx_kwds) { - PyObject *__pyx_v_data = 0; - PyObject *__pyx_v_offset = 0; - PyObject *__pyx_v_data_len = 0; - PyObject *__pyx_r = 0; - __Pyx_RefNannyDeclarations - __Pyx_RefNannySetupContext("proto_identify (wrapper)", 0); - { - static PyObject **__pyx_pyargnames[] = {&__pyx_n_s_data,&__pyx_n_s_offset,&__pyx_n_s_data_len,0}; - PyObject* values[3] = {0,0,0}; - if (unlikely(__pyx_kwds)) { - Py_ssize_t kw_args; - const Py_ssize_t pos_args = PyTuple_GET_SIZE(__pyx_args); - switch (pos_args) { - case 3: values[2] = PyTuple_GET_ITEM(__pyx_args, 2); - CYTHON_FALLTHROUGH; - case 2: values[1] = PyTuple_GET_ITEM(__pyx_args, 1); - CYTHON_FALLTHROUGH; - case 1: values[0] = PyTuple_GET_ITEM(__pyx_args, 0); - CYTHON_FALLTHROUGH; - case 0: break; - default: goto __pyx_L5_argtuple_error; - } - kw_args = PyDict_Size(__pyx_kwds); - switch (pos_args) { - case 0: - if (likely((values[0] = __Pyx_PyDict_GetItemStr(__pyx_kwds, __pyx_n_s_data)) != 0)) kw_args--; - else goto __pyx_L5_argtuple_error; - CYTHON_FALLTHROUGH; - case 1: - if (likely((values[1] = __Pyx_PyDict_GetItemStr(__pyx_kwds, __pyx_n_s_offset)) != 0)) kw_args--; - else { - __Pyx_RaiseArgtupleInvalid("proto_identify", 1, 3, 3, 1); __PYX_ERR(0, 107, __pyx_L3_error) - } - CYTHON_FALLTHROUGH; - case 2: - if (likely((values[2] = __Pyx_PyDict_GetItemStr(__pyx_kwds, __pyx_n_s_data_len)) != 0)) kw_args--; - else { - __Pyx_RaiseArgtupleInvalid("proto_identify", 1, 3, 3, 2); __PYX_ERR(0, 107, __pyx_L3_error) - } - } - if (unlikely(kw_args > 0)) { - if (unlikely(__Pyx_ParseOptionalKeywords(__pyx_kwds, __pyx_pyargnames, 0, values, pos_args, "proto_identify") < 0)) __PYX_ERR(0, 107, __pyx_L3_error) - } - } else if (PyTuple_GET_SIZE(__pyx_args) != 3) { - goto __pyx_L5_argtuple_error; - } else { - values[0] = PyTuple_GET_ITEM(__pyx_args, 0); - values[1] = PyTuple_GET_ITEM(__pyx_args, 1); - values[2] = PyTuple_GET_ITEM(__pyx_args, 2); - } - __pyx_v_data = values[0]; - __pyx_v_offset = values[1]; - __pyx_v_data_len = values[2]; - } - goto __pyx_L4_argument_unpacking_done; - __pyx_L5_argtuple_error:; - __Pyx_RaiseArgtupleInvalid("proto_identify", 1, 3, 3, PyTuple_GET_SIZE(__pyx_args)); __PYX_ERR(0, 107, __pyx_L3_error) - __pyx_L3_error:; - __Pyx_AddTraceback("pmercury.protocols.tls.TLS.proto_identify", __pyx_clineno, __pyx_lineno, __pyx_filename); - __Pyx_RefNannyFinishContext(); - return NULL; - __pyx_L4_argument_unpacking_done:; - __pyx_r = __pyx_pf_8pmercury_9protocols_3tls_3TLS_4proto_identify(__pyx_v_data, __pyx_v_offset, __pyx_v_data_len); - - /* function exit code */ - __Pyx_RefNannyFinishContext(); - return __pyx_r; -} - -static PyObject *__pyx_pf_8pmercury_9protocols_3tls_3TLS_4proto_identify(PyObject *__pyx_v_data, PyObject *__pyx_v_offset, PyObject *__pyx_v_data_len) { - PyObject *__pyx_r = NULL; - __Pyx_RefNannyDeclarations - PyObject *__pyx_t_1 = NULL; - PyObject *__pyx_t_2 = NULL; - int __pyx_t_3; - int __pyx_t_4; - __Pyx_RefNannySetupContext("proto_identify", 0); - - /* "pmercury/protocols/tls.pyx":108 - * @staticmethod - * def proto_identify(data, offset, data_len): - * if data_len-offset < 16: # <<<<<<<<<<<<<< - * return False - * if (data[offset] == 22 and - */ - __pyx_t_1 = PyNumber_Subtract(__pyx_v_data_len, __pyx_v_offset); if (unlikely(!__pyx_t_1)) __PYX_ERR(0, 108, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_1); - __pyx_t_2 = PyObject_RichCompare(__pyx_t_1, __pyx_int_16, Py_LT); __Pyx_XGOTREF(__pyx_t_2); if (unlikely(!__pyx_t_2)) __PYX_ERR(0, 108, __pyx_L1_error) - __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0; - __pyx_t_3 = __Pyx_PyObject_IsTrue(__pyx_t_2); if (unlikely(__pyx_t_3 < 0)) __PYX_ERR(0, 108, __pyx_L1_error) - __Pyx_DECREF(__pyx_t_2); __pyx_t_2 = 0; - if (__pyx_t_3) { - - /* "pmercury/protocols/tls.pyx":109 - * def proto_identify(data, offset, data_len): - * if data_len-offset < 16: - * return False # <<<<<<<<<<<<<< - * if (data[offset] == 22 and - * data[offset+1] == 3 and - */ - __Pyx_XDECREF(__pyx_r); - __Pyx_INCREF(Py_False); - __pyx_r = Py_False; - goto __pyx_L0; - - /* "pmercury/protocols/tls.pyx":108 - * @staticmethod - * def proto_identify(data, offset, data_len): - * if data_len-offset < 16: # <<<<<<<<<<<<<< - * return False - * if (data[offset] == 22 and - */ - } - - /* "pmercury/protocols/tls.pyx":110 - * if data_len-offset < 16: - * return False - * if (data[offset] == 22 and # <<<<<<<<<<<<<< - * data[offset+1] == 3 and - * data[offset+2] <= 3 and - */ - __pyx_t_2 = __Pyx_PyObject_GetItem(__pyx_v_data, __pyx_v_offset); if (unlikely(!__pyx_t_2)) __PYX_ERR(0, 110, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_2); - __pyx_t_1 = __Pyx_PyInt_EqObjC(__pyx_t_2, __pyx_int_22, 22, 0); if (unlikely(!__pyx_t_1)) __PYX_ERR(0, 110, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_1); - __Pyx_DECREF(__pyx_t_2); __pyx_t_2 = 0; - __pyx_t_4 = __Pyx_PyObject_IsTrue(__pyx_t_1); if (unlikely(__pyx_t_4 < 0)) __PYX_ERR(0, 110, __pyx_L1_error) - __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0; - if (__pyx_t_4) { - } else { - __pyx_t_3 = __pyx_t_4; - goto __pyx_L5_bool_binop_done; - } - - /* "pmercury/protocols/tls.pyx":111 - * return False - * if (data[offset] == 22 and - * data[offset+1] == 3 and # <<<<<<<<<<<<<< - * data[offset+2] <= 3 and - * data[offset+5] == 1 and - */ - __pyx_t_1 = __Pyx_PyInt_AddObjC(__pyx_v_offset, __pyx_int_1, 1, 0, 0); if (unlikely(!__pyx_t_1)) __PYX_ERR(0, 111, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_1); - __pyx_t_2 = __Pyx_PyObject_GetItem(__pyx_v_data, __pyx_t_1); if (unlikely(!__pyx_t_2)) __PYX_ERR(0, 111, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_2); - __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0; - __pyx_t_1 = __Pyx_PyInt_EqObjC(__pyx_t_2, __pyx_int_3, 3, 0); if (unlikely(!__pyx_t_1)) __PYX_ERR(0, 111, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_1); - __Pyx_DECREF(__pyx_t_2); __pyx_t_2 = 0; - __pyx_t_4 = __Pyx_PyObject_IsTrue(__pyx_t_1); if (unlikely(__pyx_t_4 < 0)) __PYX_ERR(0, 111, __pyx_L1_error) - __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0; - if (__pyx_t_4) { - } else { - __pyx_t_3 = __pyx_t_4; - goto __pyx_L5_bool_binop_done; - } - - /* "pmercury/protocols/tls.pyx":112 - * if (data[offset] == 22 and - * data[offset+1] == 3 and - * data[offset+2] <= 3 and # <<<<<<<<<<<<<< - * data[offset+5] == 1 and - * data[offset+9] == 3 and - */ - __pyx_t_1 = __Pyx_PyInt_AddObjC(__pyx_v_offset, __pyx_int_2, 2, 0, 0); if (unlikely(!__pyx_t_1)) __PYX_ERR(0, 112, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_1); - __pyx_t_2 = __Pyx_PyObject_GetItem(__pyx_v_data, __pyx_t_1); if (unlikely(!__pyx_t_2)) __PYX_ERR(0, 112, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_2); - __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0; - __pyx_t_1 = PyObject_RichCompare(__pyx_t_2, __pyx_int_3, Py_LE); __Pyx_XGOTREF(__pyx_t_1); if (unlikely(!__pyx_t_1)) __PYX_ERR(0, 112, __pyx_L1_error) - __Pyx_DECREF(__pyx_t_2); __pyx_t_2 = 0; - __pyx_t_4 = __Pyx_PyObject_IsTrue(__pyx_t_1); if (unlikely(__pyx_t_4 < 0)) __PYX_ERR(0, 112, __pyx_L1_error) - __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0; - if (__pyx_t_4) { - } else { - __pyx_t_3 = __pyx_t_4; - goto __pyx_L5_bool_binop_done; - } - - /* "pmercury/protocols/tls.pyx":113 - * data[offset+1] == 3 and - * data[offset+2] <= 3 and - * data[offset+5] == 1 and # <<<<<<<<<<<<<< - * data[offset+9] == 3 and - * data[offset+10] <= 3): - */ - __pyx_t_1 = __Pyx_PyInt_AddObjC(__pyx_v_offset, __pyx_int_5, 5, 0, 0); if (unlikely(!__pyx_t_1)) __PYX_ERR(0, 113, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_1); - __pyx_t_2 = __Pyx_PyObject_GetItem(__pyx_v_data, __pyx_t_1); if (unlikely(!__pyx_t_2)) __PYX_ERR(0, 113, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_2); - __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0; - __pyx_t_1 = __Pyx_PyInt_EqObjC(__pyx_t_2, __pyx_int_1, 1, 0); if (unlikely(!__pyx_t_1)) __PYX_ERR(0, 113, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_1); - __Pyx_DECREF(__pyx_t_2); __pyx_t_2 = 0; - __pyx_t_4 = __Pyx_PyObject_IsTrue(__pyx_t_1); if (unlikely(__pyx_t_4 < 0)) __PYX_ERR(0, 113, __pyx_L1_error) - __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0; - if (__pyx_t_4) { - } else { - __pyx_t_3 = __pyx_t_4; - goto __pyx_L5_bool_binop_done; - } - - /* "pmercury/protocols/tls.pyx":114 - * data[offset+2] <= 3 and - * data[offset+5] == 1 and - * data[offset+9] == 3 and # <<<<<<<<<<<<<< - * data[offset+10] <= 3): - * return True - */ - __pyx_t_1 = __Pyx_PyInt_AddObjC(__pyx_v_offset, __pyx_int_9, 9, 0, 0); if (unlikely(!__pyx_t_1)) __PYX_ERR(0, 114, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_1); - __pyx_t_2 = __Pyx_PyObject_GetItem(__pyx_v_data, __pyx_t_1); if (unlikely(!__pyx_t_2)) __PYX_ERR(0, 114, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_2); - __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0; - __pyx_t_1 = __Pyx_PyInt_EqObjC(__pyx_t_2, __pyx_int_3, 3, 0); if (unlikely(!__pyx_t_1)) __PYX_ERR(0, 114, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_1); - __Pyx_DECREF(__pyx_t_2); __pyx_t_2 = 0; - __pyx_t_4 = __Pyx_PyObject_IsTrue(__pyx_t_1); if (unlikely(__pyx_t_4 < 0)) __PYX_ERR(0, 114, __pyx_L1_error) - __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0; - if (__pyx_t_4) { - } else { - __pyx_t_3 = __pyx_t_4; - goto __pyx_L5_bool_binop_done; - } - - /* "pmercury/protocols/tls.pyx":115 - * data[offset+5] == 1 and - * data[offset+9] == 3 and - * data[offset+10] <= 3): # <<<<<<<<<<<<<< - * return True - * return False - */ - __pyx_t_1 = __Pyx_PyInt_AddObjC(__pyx_v_offset, __pyx_int_10, 10, 0, 0); if (unlikely(!__pyx_t_1)) __PYX_ERR(0, 115, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_1); - __pyx_t_2 = __Pyx_PyObject_GetItem(__pyx_v_data, __pyx_t_1); if (unlikely(!__pyx_t_2)) __PYX_ERR(0, 115, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_2); - __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0; - __pyx_t_1 = PyObject_RichCompare(__pyx_t_2, __pyx_int_3, Py_LE); __Pyx_XGOTREF(__pyx_t_1); if (unlikely(!__pyx_t_1)) __PYX_ERR(0, 115, __pyx_L1_error) - __Pyx_DECREF(__pyx_t_2); __pyx_t_2 = 0; - __pyx_t_4 = __Pyx_PyObject_IsTrue(__pyx_t_1); if (unlikely(__pyx_t_4 < 0)) __PYX_ERR(0, 115, __pyx_L1_error) - __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0; - __pyx_t_3 = __pyx_t_4; - __pyx_L5_bool_binop_done:; - - /* "pmercury/protocols/tls.pyx":110 - * if data_len-offset < 16: - * return False - * if (data[offset] == 22 and # <<<<<<<<<<<<<< - * data[offset+1] == 3 and - * data[offset+2] <= 3 and - */ - if (__pyx_t_3) { - - /* "pmercury/protocols/tls.pyx":116 - * data[offset+9] == 3 and - * data[offset+10] <= 3): - * return True # <<<<<<<<<<<<<< - * return False - * - */ - __Pyx_XDECREF(__pyx_r); - __Pyx_INCREF(Py_True); - __pyx_r = Py_True; - goto __pyx_L0; - - /* "pmercury/protocols/tls.pyx":110 - * if data_len-offset < 16: - * return False - * if (data[offset] == 22 and # <<<<<<<<<<<<<< - * data[offset+1] == 3 and - * data[offset+2] <= 3 and - */ - } - - /* "pmercury/protocols/tls.pyx":117 - * data[offset+10] <= 3): - * return True - * return False # <<<<<<<<<<<<<< - * - * - */ - __Pyx_XDECREF(__pyx_r); - __Pyx_INCREF(Py_False); - __pyx_r = Py_False; - goto __pyx_L0; - - /* "pmercury/protocols/tls.pyx":107 - * - * @staticmethod - * def proto_identify(data, offset, data_len): # <<<<<<<<<<<<<< - * if data_len-offset < 16: - * return False - */ - - /* function exit code */ - __pyx_L1_error:; - __Pyx_XDECREF(__pyx_t_1); - __Pyx_XDECREF(__pyx_t_2); - __Pyx_AddTraceback("pmercury.protocols.tls.TLS.proto_identify", __pyx_clineno, __pyx_lineno, __pyx_filename); - __pyx_r = NULL; - __pyx_L0:; - __Pyx_XGIVEREF(__pyx_r); - __Pyx_RefNannyFinishContext(); - return __pyx_r; -} - -/* "pmercury/protocols/tls.pyx":121 - * - * @staticmethod - * def fingerprint(bytes data, unsigned int offset, unsigned int data_len): # <<<<<<<<<<<<<< - * cdef unsigned char *buf = data - * offset += 5 - */ - -/* Python wrapper */ -static PyObject *__pyx_pw_8pmercury_9protocols_3tls_3TLS_7fingerprint(CYTHON_UNUSED PyObject *__pyx_self, PyObject *__pyx_args, PyObject *__pyx_kwds); /*proto*/ -static PyMethodDef __pyx_mdef_8pmercury_9protocols_3tls_3TLS_7fingerprint = {"fingerprint", (PyCFunction)(void*)(PyCFunctionWithKeywords)__pyx_pw_8pmercury_9protocols_3tls_3TLS_7fingerprint, METH_VARARGS|METH_KEYWORDS, 0}; -static PyObject *__pyx_pw_8pmercury_9protocols_3tls_3TLS_7fingerprint(CYTHON_UNUSED PyObject *__pyx_self, PyObject *__pyx_args, PyObject *__pyx_kwds) { - PyObject *__pyx_v_data = 0; - unsigned int __pyx_v_offset; - unsigned int __pyx_v_data_len; - PyObject *__pyx_r = 0; - __Pyx_RefNannyDeclarations - __Pyx_RefNannySetupContext("fingerprint (wrapper)", 0); - { - static PyObject **__pyx_pyargnames[] = {&__pyx_n_s_data,&__pyx_n_s_offset,&__pyx_n_s_data_len,0}; - PyObject* values[3] = {0,0,0}; - if (unlikely(__pyx_kwds)) { - Py_ssize_t kw_args; - const Py_ssize_t pos_args = PyTuple_GET_SIZE(__pyx_args); - switch (pos_args) { - case 3: values[2] = PyTuple_GET_ITEM(__pyx_args, 2); - CYTHON_FALLTHROUGH; - case 2: values[1] = PyTuple_GET_ITEM(__pyx_args, 1); - CYTHON_FALLTHROUGH; - case 1: values[0] = PyTuple_GET_ITEM(__pyx_args, 0); - CYTHON_FALLTHROUGH; - case 0: break; - default: goto __pyx_L5_argtuple_error; - } - kw_args = PyDict_Size(__pyx_kwds); - switch (pos_args) { - case 0: - if (likely((values[0] = __Pyx_PyDict_GetItemStr(__pyx_kwds, __pyx_n_s_data)) != 0)) kw_args--; - else goto __pyx_L5_argtuple_error; - CYTHON_FALLTHROUGH; - case 1: - if (likely((values[1] = __Pyx_PyDict_GetItemStr(__pyx_kwds, __pyx_n_s_offset)) != 0)) kw_args--; - else { - __Pyx_RaiseArgtupleInvalid("fingerprint", 1, 3, 3, 1); __PYX_ERR(0, 121, __pyx_L3_error) - } - CYTHON_FALLTHROUGH; - case 2: - if (likely((values[2] = __Pyx_PyDict_GetItemStr(__pyx_kwds, __pyx_n_s_data_len)) != 0)) kw_args--; - else { - __Pyx_RaiseArgtupleInvalid("fingerprint", 1, 3, 3, 2); __PYX_ERR(0, 121, __pyx_L3_error) - } - } - if (unlikely(kw_args > 0)) { - if (unlikely(__Pyx_ParseOptionalKeywords(__pyx_kwds, __pyx_pyargnames, 0, values, pos_args, "fingerprint") < 0)) __PYX_ERR(0, 121, __pyx_L3_error) - } - } else if (PyTuple_GET_SIZE(__pyx_args) != 3) { - goto __pyx_L5_argtuple_error; - } else { - values[0] = PyTuple_GET_ITEM(__pyx_args, 0); - values[1] = PyTuple_GET_ITEM(__pyx_args, 1); - values[2] = PyTuple_GET_ITEM(__pyx_args, 2); - } - __pyx_v_data = ((PyObject*)values[0]); - __pyx_v_offset = __Pyx_PyInt_As_unsigned_int(values[1]); if (unlikely((__pyx_v_offset == (unsigned int)-1) && PyErr_Occurred())) __PYX_ERR(0, 121, __pyx_L3_error) - __pyx_v_data_len = __Pyx_PyInt_As_unsigned_int(values[2]); if (unlikely((__pyx_v_data_len == (unsigned int)-1) && PyErr_Occurred())) __PYX_ERR(0, 121, __pyx_L3_error) - } - goto __pyx_L4_argument_unpacking_done; - __pyx_L5_argtuple_error:; - __Pyx_RaiseArgtupleInvalid("fingerprint", 1, 3, 3, PyTuple_GET_SIZE(__pyx_args)); __PYX_ERR(0, 121, __pyx_L3_error) - __pyx_L3_error:; - __Pyx_AddTraceback("pmercury.protocols.tls.TLS.fingerprint", __pyx_clineno, __pyx_lineno, __pyx_filename); - __Pyx_RefNannyFinishContext(); - return NULL; - __pyx_L4_argument_unpacking_done:; - if (unlikely(!__Pyx_ArgTypeTest(((PyObject *)__pyx_v_data), (&PyBytes_Type), 1, "data", 1))) __PYX_ERR(0, 121, __pyx_L1_error) - __pyx_r = __pyx_pf_8pmercury_9protocols_3tls_3TLS_6fingerprint(__pyx_v_data, __pyx_v_offset, __pyx_v_data_len); - - /* function exit code */ - goto __pyx_L0; - __pyx_L1_error:; - __pyx_r = NULL; - __pyx_L0:; - __Pyx_RefNannyFinishContext(); - return __pyx_r; -} - -static PyObject *__pyx_pf_8pmercury_9protocols_3tls_3TLS_6fingerprint(PyObject *__pyx_v_data, unsigned int __pyx_v_offset, unsigned int __pyx_v_data_len) { - unsigned char *__pyx_v_buf; - PyObject *__pyx_v_c = 0; - uint8_t __pyx_v_session_id_length; - uint16_t __pyx_v_cipher_suites_length; - PyObject *__pyx_v_cs_ = 0; - uint8_t __pyx_v_compression_methods_length; - uint16_t __pyx_v_ext_total_len; - PyObject *__pyx_v_server_name = 0; - PyObject *__pyx_v_context = 0; - PyObject *__pyx_v_tmp_fp_ext = NULL; - PyObject *__pyx_v_ext_len = NULL; - PyObject *__pyx_r = NULL; - __Pyx_RefNannyDeclarations - unsigned char *__pyx_t_1; - PyObject *__pyx_t_2 = NULL; - Py_ssize_t __pyx_t_3; - Py_UCS4 __pyx_t_4; - PyObject *__pyx_t_5 = NULL; - int __pyx_t_6; - PyObject *__pyx_t_7 = NULL; - PyObject *__pyx_t_8 = NULL; - int __pyx_t_9; - PyObject *__pyx_t_10 = NULL; - int __pyx_t_11; - PyObject *__pyx_t_12 = NULL; - PyObject *(*__pyx_t_13)(PyObject *); - unsigned int __pyx_t_14; - uint16_t __pyx_t_15; - __Pyx_RefNannySetupContext("fingerprint", 0); - - /* "pmercury/protocols/tls.pyx":122 - * @staticmethod - * def fingerprint(bytes data, unsigned int offset, unsigned int data_len): - * cdef unsigned char *buf = data # <<<<<<<<<<<<<< - * offset += 5 - * - */ - if (unlikely(__pyx_v_data == Py_None)) { - PyErr_SetString(PyExc_TypeError, "expected bytes, NoneType found"); - __PYX_ERR(0, 122, __pyx_L1_error) - } - __pyx_t_1 = __Pyx_PyBytes_AsWritableUString(__pyx_v_data); if (unlikely((!__pyx_t_1) && PyErr_Occurred())) __PYX_ERR(0, 122, __pyx_L1_error) - __pyx_v_buf = __pyx_t_1; - - /* "pmercury/protocols/tls.pyx":123 - * def fingerprint(bytes data, unsigned int offset, unsigned int data_len): - * cdef unsigned char *buf = data - * offset += 5 # <<<<<<<<<<<<<< - * - * # extract handshake version - */ - __pyx_v_offset = (__pyx_v_offset + 5); - - /* "pmercury/protocols/tls.pyx":126 - * - * # extract handshake version - * cdef list c = [f'({buf[offset+4]:02x}{buf[offset+5]:02x})'] # <<<<<<<<<<<<<< - * - * # skip header/client_random - */ - __pyx_t_2 = PyTuple_New(4); if (unlikely(!__pyx_t_2)) __PYX_ERR(0, 126, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_2); - __pyx_t_3 = 0; - __pyx_t_4 = 127; - __Pyx_INCREF(__pyx_kp_u__2); - __pyx_t_3 += 1; - __Pyx_GIVEREF(__pyx_kp_u__2); - PyTuple_SET_ITEM(__pyx_t_2, 0, __pyx_kp_u__2); - __pyx_t_5 = __Pyx_PyUnicode_From_unsigned_char((__pyx_v_buf[(__pyx_v_offset + 4)]), 2, '0', 'x'); if (unlikely(!__pyx_t_5)) __PYX_ERR(0, 126, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_5); - __pyx_t_3 += __Pyx_PyUnicode_GET_LENGTH(__pyx_t_5); - __Pyx_GIVEREF(__pyx_t_5); - PyTuple_SET_ITEM(__pyx_t_2, 1, __pyx_t_5); - __pyx_t_5 = 0; - __pyx_t_5 = __Pyx_PyUnicode_From_unsigned_char((__pyx_v_buf[(__pyx_v_offset + 5)]), 2, '0', 'x'); if (unlikely(!__pyx_t_5)) __PYX_ERR(0, 126, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_5); - __pyx_t_3 += __Pyx_PyUnicode_GET_LENGTH(__pyx_t_5); - __Pyx_GIVEREF(__pyx_t_5); - PyTuple_SET_ITEM(__pyx_t_2, 2, __pyx_t_5); - __pyx_t_5 = 0; - __Pyx_INCREF(__pyx_kp_u__3); - __pyx_t_3 += 1; - __Pyx_GIVEREF(__pyx_kp_u__3); - PyTuple_SET_ITEM(__pyx_t_2, 3, __pyx_kp_u__3); - __pyx_t_5 = __Pyx_PyUnicode_Join(__pyx_t_2, 4, __pyx_t_3, __pyx_t_4); if (unlikely(!__pyx_t_5)) __PYX_ERR(0, 126, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_5); - __Pyx_DECREF(__pyx_t_2); __pyx_t_2 = 0; - __pyx_t_2 = PyList_New(1); if (unlikely(!__pyx_t_2)) __PYX_ERR(0, 126, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_2); - __Pyx_GIVEREF(__pyx_t_5); - PyList_SET_ITEM(__pyx_t_2, 0, __pyx_t_5); - __pyx_t_5 = 0; - __pyx_v_c = ((PyObject*)__pyx_t_2); - __pyx_t_2 = 0; - - /* "pmercury/protocols/tls.pyx":129 - * - * # skip header/client_random - * offset += 38 # <<<<<<<<<<<<<< - * - * # parse/skip session_id - */ - __pyx_v_offset = (__pyx_v_offset + 38); - - /* "pmercury/protocols/tls.pyx":132 - * - * # parse/skip session_id - * cdef uint8_t session_id_length = buf[offset] # <<<<<<<<<<<<<< - * offset += 1 + session_id_length - * if offset >= data_len: - */ - __pyx_v_session_id_length = (__pyx_v_buf[__pyx_v_offset]); - - /* "pmercury/protocols/tls.pyx":133 - * # parse/skip session_id - * cdef uint8_t session_id_length = buf[offset] - * offset += 1 + session_id_length # <<<<<<<<<<<<<< - * if offset >= data_len: - * return None, None - */ - __pyx_v_offset = (__pyx_v_offset + (1 + __pyx_v_session_id_length)); - - /* "pmercury/protocols/tls.pyx":134 - * cdef uint8_t session_id_length = buf[offset] - * offset += 1 + session_id_length - * if offset >= data_len: # <<<<<<<<<<<<<< - * return None, None - * - */ - __pyx_t_6 = ((__pyx_v_offset >= __pyx_v_data_len) != 0); - if (__pyx_t_6) { - - /* "pmercury/protocols/tls.pyx":135 - * offset += 1 + session_id_length - * if offset >= data_len: - * return None, None # <<<<<<<<<<<<<< - * - * # parse/extract/skip cipher_suites length - */ - __Pyx_XDECREF(__pyx_r); - __Pyx_INCREF(__pyx_tuple__4); - __pyx_r = __pyx_tuple__4; - goto __pyx_L0; - - /* "pmercury/protocols/tls.pyx":134 - * cdef uint8_t session_id_length = buf[offset] - * offset += 1 + session_id_length - * if offset >= data_len: # <<<<<<<<<<<<<< - * return None, None - * - */ - } - - /* "pmercury/protocols/tls.pyx":138 - * - * # parse/extract/skip cipher_suites length - * cdef uint16_t cipher_suites_length = htons(deref((buf+offset))) # <<<<<<<<<<<<<< - * offset += 2 - * if offset >= data_len: - */ - __pyx_v_cipher_suites_length = htons((*((uint16_t *)(__pyx_v_buf + __pyx_v_offset)))); - - /* "pmercury/protocols/tls.pyx":139 - * # parse/extract/skip cipher_suites length - * cdef uint16_t cipher_suites_length = htons(deref((buf+offset))) - * offset += 2 # <<<<<<<<<<<<<< - * if offset >= data_len: - * return None, None - */ - __pyx_v_offset = (__pyx_v_offset + 2); - - /* "pmercury/protocols/tls.pyx":140 - * cdef uint16_t cipher_suites_length = htons(deref((buf+offset))) - * offset += 2 - * if offset >= data_len: # <<<<<<<<<<<<<< - * return None, None - * - */ - __pyx_t_6 = ((__pyx_v_offset >= __pyx_v_data_len) != 0); - if (__pyx_t_6) { - - /* "pmercury/protocols/tls.pyx":141 - * offset += 2 - * if offset >= data_len: - * return None, None # <<<<<<<<<<<<<< - * - * # parse/extract/skip cipher_suites - */ - __Pyx_XDECREF(__pyx_r); - __Pyx_INCREF(__pyx_tuple__4); - __pyx_r = __pyx_tuple__4; - goto __pyx_L0; - - /* "pmercury/protocols/tls.pyx":140 - * cdef uint16_t cipher_suites_length = htons(deref((buf+offset))) - * offset += 2 - * if offset >= data_len: # <<<<<<<<<<<<<< - * return None, None - * - */ - } - - /* "pmercury/protocols/tls.pyx":144 - * - * # parse/extract/skip cipher_suites - * cdef str cs_ = degrease_type_code(data, offset) # <<<<<<<<<<<<<< - * if cipher_suites_length > 2: - * cs_ += buf[offset+2:offset+cipher_suites_length].hex() - */ - __Pyx_GetModuleGlobalName(__pyx_t_5, __pyx_n_s_degrease_type_code); if (unlikely(!__pyx_t_5)) __PYX_ERR(0, 144, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_5); - __pyx_t_7 = __Pyx_PyInt_From_unsigned_int(__pyx_v_offset); if (unlikely(!__pyx_t_7)) __PYX_ERR(0, 144, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_7); - __pyx_t_8 = NULL; - __pyx_t_9 = 0; - if (CYTHON_UNPACK_METHODS && unlikely(PyMethod_Check(__pyx_t_5))) { - __pyx_t_8 = PyMethod_GET_SELF(__pyx_t_5); - if (likely(__pyx_t_8)) { - PyObject* function = PyMethod_GET_FUNCTION(__pyx_t_5); - __Pyx_INCREF(__pyx_t_8); - __Pyx_INCREF(function); - __Pyx_DECREF_SET(__pyx_t_5, function); - __pyx_t_9 = 1; - } - } - #if CYTHON_FAST_PYCALL - if (PyFunction_Check(__pyx_t_5)) { - PyObject *__pyx_temp[3] = {__pyx_t_8, __pyx_v_data, __pyx_t_7}; - __pyx_t_2 = __Pyx_PyFunction_FastCall(__pyx_t_5, __pyx_temp+1-__pyx_t_9, 2+__pyx_t_9); if (unlikely(!__pyx_t_2)) __PYX_ERR(0, 144, __pyx_L1_error) - __Pyx_XDECREF(__pyx_t_8); __pyx_t_8 = 0; - __Pyx_GOTREF(__pyx_t_2); - __Pyx_DECREF(__pyx_t_7); __pyx_t_7 = 0; - } else - #endif - #if CYTHON_FAST_PYCCALL - if (__Pyx_PyFastCFunction_Check(__pyx_t_5)) { - PyObject *__pyx_temp[3] = {__pyx_t_8, __pyx_v_data, __pyx_t_7}; - __pyx_t_2 = __Pyx_PyCFunction_FastCall(__pyx_t_5, __pyx_temp+1-__pyx_t_9, 2+__pyx_t_9); if (unlikely(!__pyx_t_2)) __PYX_ERR(0, 144, __pyx_L1_error) - __Pyx_XDECREF(__pyx_t_8); __pyx_t_8 = 0; - __Pyx_GOTREF(__pyx_t_2); - __Pyx_DECREF(__pyx_t_7); __pyx_t_7 = 0; - } else - #endif - { - __pyx_t_10 = PyTuple_New(2+__pyx_t_9); if (unlikely(!__pyx_t_10)) __PYX_ERR(0, 144, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_10); - if (__pyx_t_8) { - __Pyx_GIVEREF(__pyx_t_8); PyTuple_SET_ITEM(__pyx_t_10, 0, __pyx_t_8); __pyx_t_8 = NULL; - } - __Pyx_INCREF(__pyx_v_data); - __Pyx_GIVEREF(__pyx_v_data); - PyTuple_SET_ITEM(__pyx_t_10, 0+__pyx_t_9, __pyx_v_data); - __Pyx_GIVEREF(__pyx_t_7); - PyTuple_SET_ITEM(__pyx_t_10, 1+__pyx_t_9, __pyx_t_7); - __pyx_t_7 = 0; - __pyx_t_2 = __Pyx_PyObject_Call(__pyx_t_5, __pyx_t_10, NULL); if (unlikely(!__pyx_t_2)) __PYX_ERR(0, 144, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_2); - __Pyx_DECREF(__pyx_t_10); __pyx_t_10 = 0; - } - __Pyx_DECREF(__pyx_t_5); __pyx_t_5 = 0; - if (!(likely(PyUnicode_CheckExact(__pyx_t_2))||((__pyx_t_2) == Py_None)||(PyErr_Format(PyExc_TypeError, "Expected %.16s, got %.200s", "unicode", Py_TYPE(__pyx_t_2)->tp_name), 0))) __PYX_ERR(0, 144, __pyx_L1_error) - __pyx_v_cs_ = ((PyObject*)__pyx_t_2); - __pyx_t_2 = 0; - - /* "pmercury/protocols/tls.pyx":145 - * # parse/extract/skip cipher_suites - * cdef str cs_ = degrease_type_code(data, offset) - * if cipher_suites_length > 2: # <<<<<<<<<<<<<< - * cs_ += buf[offset+2:offset+cipher_suites_length].hex() - * c.append('(%s)' % cs_) - */ - __pyx_t_6 = ((__pyx_v_cipher_suites_length > 2) != 0); - if (__pyx_t_6) { - - /* "pmercury/protocols/tls.pyx":146 - * cdef str cs_ = degrease_type_code(data, offset) - * if cipher_suites_length > 2: - * cs_ += buf[offset+2:offset+cipher_suites_length].hex() # <<<<<<<<<<<<<< - * c.append('(%s)' % cs_) - * offset += cipher_suites_length - */ - __pyx_t_5 = __Pyx_PyBytes_FromStringAndSize(((const char*)__pyx_v_buf) + (__pyx_v_offset + 2), (__pyx_v_offset + __pyx_v_cipher_suites_length) - (__pyx_v_offset + 2)); if (unlikely(!__pyx_t_5)) __PYX_ERR(0, 146, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_5); - __pyx_t_10 = __Pyx_PyObject_GetAttrStr(__pyx_t_5, __pyx_n_s_hex); if (unlikely(!__pyx_t_10)) __PYX_ERR(0, 146, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_10); - __Pyx_DECREF(__pyx_t_5); __pyx_t_5 = 0; - __pyx_t_5 = NULL; - if (CYTHON_UNPACK_METHODS && likely(PyMethod_Check(__pyx_t_10))) { - __pyx_t_5 = PyMethod_GET_SELF(__pyx_t_10); - if (likely(__pyx_t_5)) { - PyObject* function = PyMethod_GET_FUNCTION(__pyx_t_10); - __Pyx_INCREF(__pyx_t_5); - __Pyx_INCREF(function); - __Pyx_DECREF_SET(__pyx_t_10, function); - } - } - __pyx_t_2 = (__pyx_t_5) ? __Pyx_PyObject_CallOneArg(__pyx_t_10, __pyx_t_5) : __Pyx_PyObject_CallNoArg(__pyx_t_10); - __Pyx_XDECREF(__pyx_t_5); __pyx_t_5 = 0; - if (unlikely(!__pyx_t_2)) __PYX_ERR(0, 146, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_2); - __Pyx_DECREF(__pyx_t_10); __pyx_t_10 = 0; - __pyx_t_10 = PyNumber_InPlaceAdd(__pyx_v_cs_, __pyx_t_2); if (unlikely(!__pyx_t_10)) __PYX_ERR(0, 146, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_10); - __Pyx_DECREF(__pyx_t_2); __pyx_t_2 = 0; - if (!(likely(PyUnicode_CheckExact(__pyx_t_10))||((__pyx_t_10) == Py_None)||(PyErr_Format(PyExc_TypeError, "Expected %.16s, got %.200s", "unicode", Py_TYPE(__pyx_t_10)->tp_name), 0))) __PYX_ERR(0, 146, __pyx_L1_error) - __Pyx_DECREF_SET(__pyx_v_cs_, ((PyObject*)__pyx_t_10)); - __pyx_t_10 = 0; - - /* "pmercury/protocols/tls.pyx":145 - * # parse/extract/skip cipher_suites - * cdef str cs_ = degrease_type_code(data, offset) - * if cipher_suites_length > 2: # <<<<<<<<<<<<<< - * cs_ += buf[offset+2:offset+cipher_suites_length].hex() - * c.append('(%s)' % cs_) - */ - } - - /* "pmercury/protocols/tls.pyx":147 - * if cipher_suites_length > 2: - * cs_ += buf[offset+2:offset+cipher_suites_length].hex() - * c.append('(%s)' % cs_) # <<<<<<<<<<<<<< - * offset += cipher_suites_length - * if offset >= data_len: - */ - __pyx_t_10 = PyUnicode_Format(__pyx_kp_u_s, __pyx_v_cs_); if (unlikely(!__pyx_t_10)) __PYX_ERR(0, 147, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_10); - __pyx_t_11 = __Pyx_PyList_Append(__pyx_v_c, __pyx_t_10); if (unlikely(__pyx_t_11 == ((int)-1))) __PYX_ERR(0, 147, __pyx_L1_error) - __Pyx_DECREF(__pyx_t_10); __pyx_t_10 = 0; - - /* "pmercury/protocols/tls.pyx":148 - * cs_ += buf[offset+2:offset+cipher_suites_length].hex() - * c.append('(%s)' % cs_) - * offset += cipher_suites_length # <<<<<<<<<<<<<< - * if offset >= data_len: - * c.append('()') - */ - __pyx_v_offset = (__pyx_v_offset + __pyx_v_cipher_suites_length); - - /* "pmercury/protocols/tls.pyx":149 - * c.append('(%s)' % cs_) - * offset += cipher_suites_length - * if offset >= data_len: # <<<<<<<<<<<<<< - * c.append('()') - * return ''.join(c), None - */ - __pyx_t_6 = ((__pyx_v_offset >= __pyx_v_data_len) != 0); - if (__pyx_t_6) { - - /* "pmercury/protocols/tls.pyx":150 - * offset += cipher_suites_length - * if offset >= data_len: - * c.append('()') # <<<<<<<<<<<<<< - * return ''.join(c), None - * - */ - __pyx_t_11 = __Pyx_PyList_Append(__pyx_v_c, __pyx_kp_u__5); if (unlikely(__pyx_t_11 == ((int)-1))) __PYX_ERR(0, 150, __pyx_L1_error) - - /* "pmercury/protocols/tls.pyx":151 - * if offset >= data_len: - * c.append('()') - * return ''.join(c), None # <<<<<<<<<<<<<< - * - * # parse/skip compression method - */ - __Pyx_XDECREF(__pyx_r); - __pyx_t_10 = PyUnicode_Join(__pyx_kp_u__6, __pyx_v_c); if (unlikely(!__pyx_t_10)) __PYX_ERR(0, 151, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_10); - __pyx_t_2 = PyTuple_New(2); if (unlikely(!__pyx_t_2)) __PYX_ERR(0, 151, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_2); - __Pyx_GIVEREF(__pyx_t_10); - PyTuple_SET_ITEM(__pyx_t_2, 0, __pyx_t_10); - __Pyx_INCREF(Py_None); - __Pyx_GIVEREF(Py_None); - PyTuple_SET_ITEM(__pyx_t_2, 1, Py_None); - __pyx_t_10 = 0; - __pyx_r = __pyx_t_2; - __pyx_t_2 = 0; - goto __pyx_L0; - - /* "pmercury/protocols/tls.pyx":149 - * c.append('(%s)' % cs_) - * offset += cipher_suites_length - * if offset >= data_len: # <<<<<<<<<<<<<< - * c.append('()') - * return ''.join(c), None - */ - } - - /* "pmercury/protocols/tls.pyx":154 - * - * # parse/skip compression method - * cdef uint8_t compression_methods_length = buf[offset] # <<<<<<<<<<<<<< - * offset += 1 + compression_methods_length - * if offset >= data_len: - */ - __pyx_v_compression_methods_length = (__pyx_v_buf[__pyx_v_offset]); - - /* "pmercury/protocols/tls.pyx":155 - * # parse/skip compression method - * cdef uint8_t compression_methods_length = buf[offset] - * offset += 1 + compression_methods_length # <<<<<<<<<<<<<< - * if offset >= data_len: - * c.append('()') - */ - __pyx_v_offset = (__pyx_v_offset + (1 + __pyx_v_compression_methods_length)); - - /* "pmercury/protocols/tls.pyx":156 - * cdef uint8_t compression_methods_length = buf[offset] - * offset += 1 + compression_methods_length - * if offset >= data_len: # <<<<<<<<<<<<<< - * c.append('()') - * return ''.join(c), None - */ - __pyx_t_6 = ((__pyx_v_offset >= __pyx_v_data_len) != 0); - if (__pyx_t_6) { - - /* "pmercury/protocols/tls.pyx":157 - * offset += 1 + compression_methods_length - * if offset >= data_len: - * c.append('()') # <<<<<<<<<<<<<< - * return ''.join(c), None - * - */ - __pyx_t_11 = __Pyx_PyList_Append(__pyx_v_c, __pyx_kp_u__5); if (unlikely(__pyx_t_11 == ((int)-1))) __PYX_ERR(0, 157, __pyx_L1_error) - - /* "pmercury/protocols/tls.pyx":158 - * if offset >= data_len: - * c.append('()') - * return ''.join(c), None # <<<<<<<<<<<<<< - * - * # parse/skip extensions length - */ - __Pyx_XDECREF(__pyx_r); - __pyx_t_2 = PyUnicode_Join(__pyx_kp_u__6, __pyx_v_c); if (unlikely(!__pyx_t_2)) __PYX_ERR(0, 158, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_2); - __pyx_t_10 = PyTuple_New(2); if (unlikely(!__pyx_t_10)) __PYX_ERR(0, 158, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_10); - __Pyx_GIVEREF(__pyx_t_2); - PyTuple_SET_ITEM(__pyx_t_10, 0, __pyx_t_2); - __Pyx_INCREF(Py_None); - __Pyx_GIVEREF(Py_None); - PyTuple_SET_ITEM(__pyx_t_10, 1, Py_None); - __pyx_t_2 = 0; - __pyx_r = __pyx_t_10; - __pyx_t_10 = 0; - goto __pyx_L0; - - /* "pmercury/protocols/tls.pyx":156 - * cdef uint8_t compression_methods_length = buf[offset] - * offset += 1 + compression_methods_length - * if offset >= data_len: # <<<<<<<<<<<<<< - * c.append('()') - * return ''.join(c), None - */ - } - - /* "pmercury/protocols/tls.pyx":161 - * - * # parse/skip extensions length - * cdef uint16_t ext_total_len = htons(deref((buf+offset))) # <<<<<<<<<<<<<< - * offset += 2 - * if offset >= data_len: - */ - __pyx_v_ext_total_len = htons((*((uint16_t *)(__pyx_v_buf + __pyx_v_offset)))); - - /* "pmercury/protocols/tls.pyx":162 - * # parse/skip extensions length - * cdef uint16_t ext_total_len = htons(deref((buf+offset))) - * offset += 2 # <<<<<<<<<<<<<< - * if offset >= data_len: - * c.append('()') - */ - __pyx_v_offset = (__pyx_v_offset + 2); - - /* "pmercury/protocols/tls.pyx":163 - * cdef uint16_t ext_total_len = htons(deref((buf+offset))) - * offset += 2 - * if offset >= data_len: # <<<<<<<<<<<<<< - * c.append('()') - * return ''.join(c), None - */ - __pyx_t_6 = ((__pyx_v_offset >= __pyx_v_data_len) != 0); - if (__pyx_t_6) { - - /* "pmercury/protocols/tls.pyx":164 - * offset += 2 - * if offset >= data_len: - * c.append('()') # <<<<<<<<<<<<<< - * return ''.join(c), None - * - */ - __pyx_t_11 = __Pyx_PyList_Append(__pyx_v_c, __pyx_kp_u__5); if (unlikely(__pyx_t_11 == ((int)-1))) __PYX_ERR(0, 164, __pyx_L1_error) - - /* "pmercury/protocols/tls.pyx":165 - * if offset >= data_len: - * c.append('()') - * return ''.join(c), None # <<<<<<<<<<<<<< - * - * # parse/extract/skip extension type/length/values - */ - __Pyx_XDECREF(__pyx_r); - __pyx_t_10 = PyUnicode_Join(__pyx_kp_u__6, __pyx_v_c); if (unlikely(!__pyx_t_10)) __PYX_ERR(0, 165, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_10); - __pyx_t_2 = PyTuple_New(2); if (unlikely(!__pyx_t_2)) __PYX_ERR(0, 165, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_2); - __Pyx_GIVEREF(__pyx_t_10); - PyTuple_SET_ITEM(__pyx_t_2, 0, __pyx_t_10); - __Pyx_INCREF(Py_None); - __Pyx_GIVEREF(Py_None); - PyTuple_SET_ITEM(__pyx_t_2, 1, Py_None); - __pyx_t_10 = 0; - __pyx_r = __pyx_t_2; - __pyx_t_2 = 0; - goto __pyx_L0; - - /* "pmercury/protocols/tls.pyx":163 - * cdef uint16_t ext_total_len = htons(deref((buf+offset))) - * offset += 2 - * if offset >= data_len: # <<<<<<<<<<<<<< - * c.append('()') - * return ''.join(c), None - */ - } - - /* "pmercury/protocols/tls.pyx":168 - * - * # parse/extract/skip extension type/length/values - * c.append('(') # <<<<<<<<<<<<<< - * cdef str server_name = None - * cdef list context = None - */ - __pyx_t_11 = __Pyx_PyList_Append(__pyx_v_c, __pyx_kp_u__2); if (unlikely(__pyx_t_11 == ((int)-1))) __PYX_ERR(0, 168, __pyx_L1_error) - - /* "pmercury/protocols/tls.pyx":169 - * # parse/extract/skip extension type/length/values - * c.append('(') - * cdef str server_name = None # <<<<<<<<<<<<<< - * cdef list context = None - * while ext_total_len > 0: - */ - __Pyx_INCREF(Py_None); - __pyx_v_server_name = ((PyObject*)Py_None); - - /* "pmercury/protocols/tls.pyx":170 - * c.append('(') - * cdef str server_name = None - * cdef list context = None # <<<<<<<<<<<<<< - * while ext_total_len > 0: - * if offset >= data_len: - */ - __Pyx_INCREF(Py_None); - __pyx_v_context = ((PyObject*)Py_None); - - /* "pmercury/protocols/tls.pyx":171 - * cdef str server_name = None - * cdef list context = None - * while ext_total_len > 0: # <<<<<<<<<<<<<< - * if offset >= data_len: - * c.append(')') - */ - while (1) { - __pyx_t_6 = ((__pyx_v_ext_total_len > 0) != 0); - if (!__pyx_t_6) break; - - /* "pmercury/protocols/tls.pyx":172 - * cdef list context = None - * while ext_total_len > 0: - * if offset >= data_len: # <<<<<<<<<<<<<< - * c.append(')') - * return ''.join(c), context - */ - __pyx_t_6 = ((__pyx_v_offset >= __pyx_v_data_len) != 0); - if (__pyx_t_6) { - - /* "pmercury/protocols/tls.pyx":173 - * while ext_total_len > 0: - * if offset >= data_len: - * c.append(')') # <<<<<<<<<<<<<< - * return ''.join(c), context - * - */ - __pyx_t_11 = __Pyx_PyList_Append(__pyx_v_c, __pyx_kp_u__3); if (unlikely(__pyx_t_11 == ((int)-1))) __PYX_ERR(0, 173, __pyx_L1_error) - - /* "pmercury/protocols/tls.pyx":174 - * if offset >= data_len: - * c.append(')') - * return ''.join(c), context # <<<<<<<<<<<<<< - * - * # extract server name for process/malware identification - */ - __Pyx_XDECREF(__pyx_r); - __pyx_t_2 = PyUnicode_Join(__pyx_kp_u__6, __pyx_v_c); if (unlikely(!__pyx_t_2)) __PYX_ERR(0, 174, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_2); - __pyx_t_10 = PyTuple_New(2); if (unlikely(!__pyx_t_10)) __PYX_ERR(0, 174, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_10); - __Pyx_GIVEREF(__pyx_t_2); - PyTuple_SET_ITEM(__pyx_t_10, 0, __pyx_t_2); - __Pyx_INCREF(__pyx_v_context); - __Pyx_GIVEREF(__pyx_v_context); - PyTuple_SET_ITEM(__pyx_t_10, 1, __pyx_v_context); - __pyx_t_2 = 0; - __pyx_r = __pyx_t_10; - __pyx_t_10 = 0; - goto __pyx_L0; - - /* "pmercury/protocols/tls.pyx":172 - * cdef list context = None - * while ext_total_len > 0: - * if offset >= data_len: # <<<<<<<<<<<<<< - * c.append(')') - * return ''.join(c), context - */ - } - - /* "pmercury/protocols/tls.pyx":177 - * - * # extract server name for process/malware identification - * if htons(deref((buf+offset))) == 0: # <<<<<<<<<<<<<< - * server_name = extract_server_name(data, offset+2, data_len) - * context = [{'name':'server_name', 'data':server_name}] - */ - __pyx_t_6 = ((htons((*((uint16_t *)(__pyx_v_buf + __pyx_v_offset)))) == 0) != 0); - if (__pyx_t_6) { - - /* "pmercury/protocols/tls.pyx":178 - * # extract server name for process/malware identification - * if htons(deref((buf+offset))) == 0: - * server_name = extract_server_name(data, offset+2, data_len) # <<<<<<<<<<<<<< - * context = [{'name':'server_name', 'data':server_name}] - * - */ - __Pyx_GetModuleGlobalName(__pyx_t_2, __pyx_n_s_extract_server_name); if (unlikely(!__pyx_t_2)) __PYX_ERR(0, 178, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_2); - __pyx_t_5 = __Pyx_PyInt_From_long((__pyx_v_offset + 2)); if (unlikely(!__pyx_t_5)) __PYX_ERR(0, 178, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_5); - __pyx_t_7 = __Pyx_PyInt_From_unsigned_int(__pyx_v_data_len); if (unlikely(!__pyx_t_7)) __PYX_ERR(0, 178, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_7); - __pyx_t_8 = NULL; - __pyx_t_9 = 0; - if (CYTHON_UNPACK_METHODS && unlikely(PyMethod_Check(__pyx_t_2))) { - __pyx_t_8 = PyMethod_GET_SELF(__pyx_t_2); - if (likely(__pyx_t_8)) { - PyObject* function = PyMethod_GET_FUNCTION(__pyx_t_2); - __Pyx_INCREF(__pyx_t_8); - __Pyx_INCREF(function); - __Pyx_DECREF_SET(__pyx_t_2, function); - __pyx_t_9 = 1; - } - } - #if CYTHON_FAST_PYCALL - if (PyFunction_Check(__pyx_t_2)) { - PyObject *__pyx_temp[4] = {__pyx_t_8, __pyx_v_data, __pyx_t_5, __pyx_t_7}; - __pyx_t_10 = __Pyx_PyFunction_FastCall(__pyx_t_2, __pyx_temp+1-__pyx_t_9, 3+__pyx_t_9); if (unlikely(!__pyx_t_10)) __PYX_ERR(0, 178, __pyx_L1_error) - __Pyx_XDECREF(__pyx_t_8); __pyx_t_8 = 0; - __Pyx_GOTREF(__pyx_t_10); - __Pyx_DECREF(__pyx_t_5); __pyx_t_5 = 0; - __Pyx_DECREF(__pyx_t_7); __pyx_t_7 = 0; - } else - #endif - #if CYTHON_FAST_PYCCALL - if (__Pyx_PyFastCFunction_Check(__pyx_t_2)) { - PyObject *__pyx_temp[4] = {__pyx_t_8, __pyx_v_data, __pyx_t_5, __pyx_t_7}; - __pyx_t_10 = __Pyx_PyCFunction_FastCall(__pyx_t_2, __pyx_temp+1-__pyx_t_9, 3+__pyx_t_9); if (unlikely(!__pyx_t_10)) __PYX_ERR(0, 178, __pyx_L1_error) - __Pyx_XDECREF(__pyx_t_8); __pyx_t_8 = 0; - __Pyx_GOTREF(__pyx_t_10); - __Pyx_DECREF(__pyx_t_5); __pyx_t_5 = 0; - __Pyx_DECREF(__pyx_t_7); __pyx_t_7 = 0; - } else - #endif - { - __pyx_t_12 = PyTuple_New(3+__pyx_t_9); if (unlikely(!__pyx_t_12)) __PYX_ERR(0, 178, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_12); - if (__pyx_t_8) { - __Pyx_GIVEREF(__pyx_t_8); PyTuple_SET_ITEM(__pyx_t_12, 0, __pyx_t_8); __pyx_t_8 = NULL; - } - __Pyx_INCREF(__pyx_v_data); - __Pyx_GIVEREF(__pyx_v_data); - PyTuple_SET_ITEM(__pyx_t_12, 0+__pyx_t_9, __pyx_v_data); - __Pyx_GIVEREF(__pyx_t_5); - PyTuple_SET_ITEM(__pyx_t_12, 1+__pyx_t_9, __pyx_t_5); - __Pyx_GIVEREF(__pyx_t_7); - PyTuple_SET_ITEM(__pyx_t_12, 2+__pyx_t_9, __pyx_t_7); - __pyx_t_5 = 0; - __pyx_t_7 = 0; - __pyx_t_10 = __Pyx_PyObject_Call(__pyx_t_2, __pyx_t_12, NULL); if (unlikely(!__pyx_t_10)) __PYX_ERR(0, 178, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_10); - __Pyx_DECREF(__pyx_t_12); __pyx_t_12 = 0; - } - __Pyx_DECREF(__pyx_t_2); __pyx_t_2 = 0; - if (!(likely(PyUnicode_CheckExact(__pyx_t_10))||((__pyx_t_10) == Py_None)||(PyErr_Format(PyExc_TypeError, "Expected %.16s, got %.200s", "unicode", Py_TYPE(__pyx_t_10)->tp_name), 0))) __PYX_ERR(0, 178, __pyx_L1_error) - __Pyx_DECREF_SET(__pyx_v_server_name, ((PyObject*)__pyx_t_10)); - __pyx_t_10 = 0; - - /* "pmercury/protocols/tls.pyx":179 - * if htons(deref((buf+offset))) == 0: - * server_name = extract_server_name(data, offset+2, data_len) - * context = [{'name':'server_name', 'data':server_name}] # <<<<<<<<<<<<<< - * - * tmp_fp_ext, offset, ext_len = parse_extension(data, offset) - */ - __pyx_t_10 = __Pyx_PyDict_NewPresized(2); if (unlikely(!__pyx_t_10)) __PYX_ERR(0, 179, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_10); - if (PyDict_SetItem(__pyx_t_10, __pyx_n_u_name, __pyx_n_u_server_name) < 0) __PYX_ERR(0, 179, __pyx_L1_error) - if (PyDict_SetItem(__pyx_t_10, __pyx_n_u_data, __pyx_v_server_name) < 0) __PYX_ERR(0, 179, __pyx_L1_error) - __pyx_t_2 = PyList_New(1); if (unlikely(!__pyx_t_2)) __PYX_ERR(0, 179, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_2); - __Pyx_GIVEREF(__pyx_t_10); - PyList_SET_ITEM(__pyx_t_2, 0, __pyx_t_10); - __pyx_t_10 = 0; - __Pyx_DECREF_SET(__pyx_v_context, ((PyObject*)__pyx_t_2)); - __pyx_t_2 = 0; - - /* "pmercury/protocols/tls.pyx":177 - * - * # extract server name for process/malware identification - * if htons(deref((buf+offset))) == 0: # <<<<<<<<<<<<<< - * server_name = extract_server_name(data, offset+2, data_len) - * context = [{'name':'server_name', 'data':server_name}] - */ - } - - /* "pmercury/protocols/tls.pyx":181 - * context = [{'name':'server_name', 'data':server_name}] - * - * tmp_fp_ext, offset, ext_len = parse_extension(data, offset) # <<<<<<<<<<<<<< - * if ext_len+4 > ext_total_len: - * c.append(')') - */ - __Pyx_GetModuleGlobalName(__pyx_t_10, __pyx_n_s_parse_extension); if (unlikely(!__pyx_t_10)) __PYX_ERR(0, 181, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_10); - __pyx_t_12 = __Pyx_PyInt_From_unsigned_int(__pyx_v_offset); if (unlikely(!__pyx_t_12)) __PYX_ERR(0, 181, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_12); - __pyx_t_7 = NULL; - __pyx_t_9 = 0; - if (CYTHON_UNPACK_METHODS && unlikely(PyMethod_Check(__pyx_t_10))) { - __pyx_t_7 = PyMethod_GET_SELF(__pyx_t_10); - if (likely(__pyx_t_7)) { - PyObject* function = PyMethod_GET_FUNCTION(__pyx_t_10); - __Pyx_INCREF(__pyx_t_7); - __Pyx_INCREF(function); - __Pyx_DECREF_SET(__pyx_t_10, function); - __pyx_t_9 = 1; - } - } - #if CYTHON_FAST_PYCALL - if (PyFunction_Check(__pyx_t_10)) { - PyObject *__pyx_temp[3] = {__pyx_t_7, __pyx_v_data, __pyx_t_12}; - __pyx_t_2 = __Pyx_PyFunction_FastCall(__pyx_t_10, __pyx_temp+1-__pyx_t_9, 2+__pyx_t_9); if (unlikely(!__pyx_t_2)) __PYX_ERR(0, 181, __pyx_L1_error) - __Pyx_XDECREF(__pyx_t_7); __pyx_t_7 = 0; - __Pyx_GOTREF(__pyx_t_2); - __Pyx_DECREF(__pyx_t_12); __pyx_t_12 = 0; - } else - #endif - #if CYTHON_FAST_PYCCALL - if (__Pyx_PyFastCFunction_Check(__pyx_t_10)) { - PyObject *__pyx_temp[3] = {__pyx_t_7, __pyx_v_data, __pyx_t_12}; - __pyx_t_2 = __Pyx_PyCFunction_FastCall(__pyx_t_10, __pyx_temp+1-__pyx_t_9, 2+__pyx_t_9); if (unlikely(!__pyx_t_2)) __PYX_ERR(0, 181, __pyx_L1_error) - __Pyx_XDECREF(__pyx_t_7); __pyx_t_7 = 0; - __Pyx_GOTREF(__pyx_t_2); - __Pyx_DECREF(__pyx_t_12); __pyx_t_12 = 0; - } else - #endif - { - __pyx_t_5 = PyTuple_New(2+__pyx_t_9); if (unlikely(!__pyx_t_5)) __PYX_ERR(0, 181, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_5); - if (__pyx_t_7) { - __Pyx_GIVEREF(__pyx_t_7); PyTuple_SET_ITEM(__pyx_t_5, 0, __pyx_t_7); __pyx_t_7 = NULL; - } - __Pyx_INCREF(__pyx_v_data); - __Pyx_GIVEREF(__pyx_v_data); - PyTuple_SET_ITEM(__pyx_t_5, 0+__pyx_t_9, __pyx_v_data); - __Pyx_GIVEREF(__pyx_t_12); - PyTuple_SET_ITEM(__pyx_t_5, 1+__pyx_t_9, __pyx_t_12); - __pyx_t_12 = 0; - __pyx_t_2 = __Pyx_PyObject_Call(__pyx_t_10, __pyx_t_5, NULL); if (unlikely(!__pyx_t_2)) __PYX_ERR(0, 181, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_2); - __Pyx_DECREF(__pyx_t_5); __pyx_t_5 = 0; - } - __Pyx_DECREF(__pyx_t_10); __pyx_t_10 = 0; - if ((likely(PyTuple_CheckExact(__pyx_t_2))) || (PyList_CheckExact(__pyx_t_2))) { - PyObject* sequence = __pyx_t_2; - Py_ssize_t size = __Pyx_PySequence_SIZE(sequence); - if (unlikely(size != 3)) { - if (size > 3) __Pyx_RaiseTooManyValuesError(3); - else if (size >= 0) __Pyx_RaiseNeedMoreValuesError(size); - __PYX_ERR(0, 181, __pyx_L1_error) - } - #if CYTHON_ASSUME_SAFE_MACROS && !CYTHON_AVOID_BORROWED_REFS - if (likely(PyTuple_CheckExact(sequence))) { - __pyx_t_10 = PyTuple_GET_ITEM(sequence, 0); - __pyx_t_5 = PyTuple_GET_ITEM(sequence, 1); - __pyx_t_12 = PyTuple_GET_ITEM(sequence, 2); - } else { - __pyx_t_10 = PyList_GET_ITEM(sequence, 0); - __pyx_t_5 = PyList_GET_ITEM(sequence, 1); - __pyx_t_12 = PyList_GET_ITEM(sequence, 2); - } - __Pyx_INCREF(__pyx_t_10); - __Pyx_INCREF(__pyx_t_5); - __Pyx_INCREF(__pyx_t_12); - #else - __pyx_t_10 = PySequence_ITEM(sequence, 0); if (unlikely(!__pyx_t_10)) __PYX_ERR(0, 181, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_10); - __pyx_t_5 = PySequence_ITEM(sequence, 1); if (unlikely(!__pyx_t_5)) __PYX_ERR(0, 181, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_5); - __pyx_t_12 = PySequence_ITEM(sequence, 2); if (unlikely(!__pyx_t_12)) __PYX_ERR(0, 181, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_12); - #endif - __Pyx_DECREF(__pyx_t_2); __pyx_t_2 = 0; - } else { - Py_ssize_t index = -1; - __pyx_t_7 = PyObject_GetIter(__pyx_t_2); if (unlikely(!__pyx_t_7)) __PYX_ERR(0, 181, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_7); - __Pyx_DECREF(__pyx_t_2); __pyx_t_2 = 0; - __pyx_t_13 = Py_TYPE(__pyx_t_7)->tp_iternext; - index = 0; __pyx_t_10 = __pyx_t_13(__pyx_t_7); if (unlikely(!__pyx_t_10)) goto __pyx_L13_unpacking_failed; - __Pyx_GOTREF(__pyx_t_10); - index = 1; __pyx_t_5 = __pyx_t_13(__pyx_t_7); if (unlikely(!__pyx_t_5)) goto __pyx_L13_unpacking_failed; - __Pyx_GOTREF(__pyx_t_5); - index = 2; __pyx_t_12 = __pyx_t_13(__pyx_t_7); if (unlikely(!__pyx_t_12)) goto __pyx_L13_unpacking_failed; - __Pyx_GOTREF(__pyx_t_12); - if (__Pyx_IternextUnpackEndCheck(__pyx_t_13(__pyx_t_7), 3) < 0) __PYX_ERR(0, 181, __pyx_L1_error) - __pyx_t_13 = NULL; - __Pyx_DECREF(__pyx_t_7); __pyx_t_7 = 0; - goto __pyx_L14_unpacking_done; - __pyx_L13_unpacking_failed:; - __Pyx_DECREF(__pyx_t_7); __pyx_t_7 = 0; - __pyx_t_13 = NULL; - if (__Pyx_IterFinish() == 0) __Pyx_RaiseNeedMoreValuesError(index); - __PYX_ERR(0, 181, __pyx_L1_error) - __pyx_L14_unpacking_done:; - } - __pyx_t_14 = __Pyx_PyInt_As_unsigned_int(__pyx_t_5); if (unlikely((__pyx_t_14 == (unsigned int)-1) && PyErr_Occurred())) __PYX_ERR(0, 181, __pyx_L1_error) - __Pyx_DECREF(__pyx_t_5); __pyx_t_5 = 0; - __Pyx_XDECREF_SET(__pyx_v_tmp_fp_ext, __pyx_t_10); - __pyx_t_10 = 0; - __pyx_v_offset = __pyx_t_14; - __Pyx_XDECREF_SET(__pyx_v_ext_len, __pyx_t_12); - __pyx_t_12 = 0; - - /* "pmercury/protocols/tls.pyx":182 - * - * tmp_fp_ext, offset, ext_len = parse_extension(data, offset) - * if ext_len+4 > ext_total_len: # <<<<<<<<<<<<<< - * c.append(')') - * return ''.join(c), context - */ - __pyx_t_2 = __Pyx_PyInt_AddObjC(__pyx_v_ext_len, __pyx_int_4, 4, 0, 0); if (unlikely(!__pyx_t_2)) __PYX_ERR(0, 182, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_2); - __pyx_t_12 = __Pyx_PyInt_From_uint16_t(__pyx_v_ext_total_len); if (unlikely(!__pyx_t_12)) __PYX_ERR(0, 182, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_12); - __pyx_t_5 = PyObject_RichCompare(__pyx_t_2, __pyx_t_12, Py_GT); __Pyx_XGOTREF(__pyx_t_5); if (unlikely(!__pyx_t_5)) __PYX_ERR(0, 182, __pyx_L1_error) - __Pyx_DECREF(__pyx_t_2); __pyx_t_2 = 0; - __Pyx_DECREF(__pyx_t_12); __pyx_t_12 = 0; - __pyx_t_6 = __Pyx_PyObject_IsTrue(__pyx_t_5); if (unlikely(__pyx_t_6 < 0)) __PYX_ERR(0, 182, __pyx_L1_error) - __Pyx_DECREF(__pyx_t_5); __pyx_t_5 = 0; - if (__pyx_t_6) { - - /* "pmercury/protocols/tls.pyx":183 - * tmp_fp_ext, offset, ext_len = parse_extension(data, offset) - * if ext_len+4 > ext_total_len: - * c.append(')') # <<<<<<<<<<<<<< - * return ''.join(c), context - * c.append('(%s)' % tmp_fp_ext) - */ - __pyx_t_11 = __Pyx_PyList_Append(__pyx_v_c, __pyx_kp_u__3); if (unlikely(__pyx_t_11 == ((int)-1))) __PYX_ERR(0, 183, __pyx_L1_error) - - /* "pmercury/protocols/tls.pyx":184 - * if ext_len+4 > ext_total_len: - * c.append(')') - * return ''.join(c), context # <<<<<<<<<<<<<< - * c.append('(%s)' % tmp_fp_ext) - * - */ - __Pyx_XDECREF(__pyx_r); - __pyx_t_5 = PyUnicode_Join(__pyx_kp_u__6, __pyx_v_c); if (unlikely(!__pyx_t_5)) __PYX_ERR(0, 184, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_5); - __pyx_t_12 = PyTuple_New(2); if (unlikely(!__pyx_t_12)) __PYX_ERR(0, 184, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_12); - __Pyx_GIVEREF(__pyx_t_5); - PyTuple_SET_ITEM(__pyx_t_12, 0, __pyx_t_5); - __Pyx_INCREF(__pyx_v_context); - __Pyx_GIVEREF(__pyx_v_context); - PyTuple_SET_ITEM(__pyx_t_12, 1, __pyx_v_context); - __pyx_t_5 = 0; - __pyx_r = __pyx_t_12; - __pyx_t_12 = 0; - goto __pyx_L0; - - /* "pmercury/protocols/tls.pyx":182 - * - * tmp_fp_ext, offset, ext_len = parse_extension(data, offset) - * if ext_len+4 > ext_total_len: # <<<<<<<<<<<<<< - * c.append(')') - * return ''.join(c), context - */ - } - - /* "pmercury/protocols/tls.pyx":185 - * c.append(')') - * return ''.join(c), context - * c.append('(%s)' % tmp_fp_ext) # <<<<<<<<<<<<<< - * - * ext_total_len -= 4 + ext_len - */ - __pyx_t_12 = __Pyx_PyUnicode_FormatSafe(__pyx_kp_u_s, __pyx_v_tmp_fp_ext); if (unlikely(!__pyx_t_12)) __PYX_ERR(0, 185, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_12); - __pyx_t_11 = __Pyx_PyList_Append(__pyx_v_c, __pyx_t_12); if (unlikely(__pyx_t_11 == ((int)-1))) __PYX_ERR(0, 185, __pyx_L1_error) - __Pyx_DECREF(__pyx_t_12); __pyx_t_12 = 0; - - /* "pmercury/protocols/tls.pyx":187 - * c.append('(%s)' % tmp_fp_ext) - * - * ext_total_len -= 4 + ext_len # <<<<<<<<<<<<<< - * c.append(')') - * - */ - __pyx_t_12 = __Pyx_PyInt_From_uint16_t(__pyx_v_ext_total_len); if (unlikely(!__pyx_t_12)) __PYX_ERR(0, 187, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_12); - __pyx_t_5 = __Pyx_PyInt_AddCObj(__pyx_int_4, __pyx_v_ext_len, 4, 0, 0); if (unlikely(!__pyx_t_5)) __PYX_ERR(0, 187, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_5); - __pyx_t_2 = PyNumber_InPlaceSubtract(__pyx_t_12, __pyx_t_5); if (unlikely(!__pyx_t_2)) __PYX_ERR(0, 187, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_2); - __Pyx_DECREF(__pyx_t_12); __pyx_t_12 = 0; - __Pyx_DECREF(__pyx_t_5); __pyx_t_5 = 0; - __pyx_t_15 = __Pyx_PyInt_As_uint16_t(__pyx_t_2); if (unlikely((__pyx_t_15 == ((uint16_t)-1)) && PyErr_Occurred())) __PYX_ERR(0, 187, __pyx_L1_error) - __Pyx_DECREF(__pyx_t_2); __pyx_t_2 = 0; - __pyx_v_ext_total_len = __pyx_t_15; - } - - /* "pmercury/protocols/tls.pyx":188 - * - * ext_total_len -= 4 + ext_len - * c.append(')') # <<<<<<<<<<<<<< - * - * return ''.join(c), context - */ - __pyx_t_11 = __Pyx_PyList_Append(__pyx_v_c, __pyx_kp_u__3); if (unlikely(__pyx_t_11 == ((int)-1))) __PYX_ERR(0, 188, __pyx_L1_error) - - /* "pmercury/protocols/tls.pyx":190 - * c.append(')') - * - * return ''.join(c), context # <<<<<<<<<<<<<< - * - * - */ - __Pyx_XDECREF(__pyx_r); - __pyx_t_2 = PyUnicode_Join(__pyx_kp_u__6, __pyx_v_c); if (unlikely(!__pyx_t_2)) __PYX_ERR(0, 190, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_2); - __pyx_t_5 = PyTuple_New(2); if (unlikely(!__pyx_t_5)) __PYX_ERR(0, 190, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_5); - __Pyx_GIVEREF(__pyx_t_2); - PyTuple_SET_ITEM(__pyx_t_5, 0, __pyx_t_2); - __Pyx_INCREF(__pyx_v_context); - __Pyx_GIVEREF(__pyx_v_context); - PyTuple_SET_ITEM(__pyx_t_5, 1, __pyx_v_context); - __pyx_t_2 = 0; - __pyx_r = __pyx_t_5; - __pyx_t_5 = 0; - goto __pyx_L0; - - /* "pmercury/protocols/tls.pyx":121 - * - * @staticmethod - * def fingerprint(bytes data, unsigned int offset, unsigned int data_len): # <<<<<<<<<<<<<< - * cdef unsigned char *buf = data - * offset += 5 - */ - - /* function exit code */ - __pyx_L1_error:; - __Pyx_XDECREF(__pyx_t_2); - __Pyx_XDECREF(__pyx_t_5); - __Pyx_XDECREF(__pyx_t_7); - __Pyx_XDECREF(__pyx_t_8); - __Pyx_XDECREF(__pyx_t_10); - __Pyx_XDECREF(__pyx_t_12); - __Pyx_AddTraceback("pmercury.protocols.tls.TLS.fingerprint", __pyx_clineno, __pyx_lineno, __pyx_filename); - __pyx_r = NULL; - __pyx_L0:; - __Pyx_XDECREF(__pyx_v_c); - __Pyx_XDECREF(__pyx_v_cs_); - __Pyx_XDECREF(__pyx_v_server_name); - __Pyx_XDECREF(__pyx_v_context); - __Pyx_XDECREF(__pyx_v_tmp_fp_ext); - __Pyx_XDECREF(__pyx_v_ext_len); - __Pyx_XGIVEREF(__pyx_r); - __Pyx_RefNannyFinishContext(); - return __pyx_r; -} - -/* "pmercury/protocols/tls.pyx":193 - * - * - * def proc_identify(self, fp_str_, context_, dest_addr, dest_port, list_procs=0, endpoint=None, approx=True): # <<<<<<<<<<<<<< - * server_name = None - * # extract server_name field from context object - */ - -/* Python wrapper */ -static PyObject *__pyx_pw_8pmercury_9protocols_3tls_3TLS_9proc_identify(PyObject *__pyx_v_self, PyObject *__pyx_args, PyObject *__pyx_kwds); /*proto*/ -static PyObject *__pyx_pw_8pmercury_9protocols_3tls_3TLS_9proc_identify(PyObject *__pyx_v_self, PyObject *__pyx_args, PyObject *__pyx_kwds) { - PyObject *__pyx_v_fp_str_ = 0; - PyObject *__pyx_v_context_ = 0; - PyObject *__pyx_v_dest_addr = 0; - PyObject *__pyx_v_dest_port = 0; - PyObject *__pyx_v_list_procs = 0; - PyObject *__pyx_v_endpoint = 0; - PyObject *__pyx_v_approx = 0; - PyObject *__pyx_r = 0; - __Pyx_RefNannyDeclarations - __Pyx_RefNannySetupContext("proc_identify (wrapper)", 0); - { - static PyObject **__pyx_pyargnames[] = {&__pyx_n_s_fp_str,&__pyx_n_s_context,&__pyx_n_s_dest_addr,&__pyx_n_s_dest_port,&__pyx_n_s_list_procs,&__pyx_n_s_endpoint,&__pyx_n_s_approx,0}; - PyObject* values[7] = {0,0,0,0,0,0,0}; - values[4] = ((PyObject *)__pyx_int_0); - values[5] = ((PyObject *)Py_None); - values[6] = ((PyObject *)Py_True); - if (unlikely(__pyx_kwds)) { - Py_ssize_t kw_args; - const Py_ssize_t pos_args = PyTuple_GET_SIZE(__pyx_args); - switch (pos_args) { - case 7: values[6] = PyTuple_GET_ITEM(__pyx_args, 6); - CYTHON_FALLTHROUGH; - case 6: values[5] = PyTuple_GET_ITEM(__pyx_args, 5); - CYTHON_FALLTHROUGH; - case 5: values[4] = PyTuple_GET_ITEM(__pyx_args, 4); - CYTHON_FALLTHROUGH; - case 4: values[3] = PyTuple_GET_ITEM(__pyx_args, 3); - CYTHON_FALLTHROUGH; - case 3: values[2] = PyTuple_GET_ITEM(__pyx_args, 2); - CYTHON_FALLTHROUGH; - case 2: values[1] = PyTuple_GET_ITEM(__pyx_args, 1); - CYTHON_FALLTHROUGH; - case 1: values[0] = PyTuple_GET_ITEM(__pyx_args, 0); - CYTHON_FALLTHROUGH; - case 0: break; - default: goto __pyx_L5_argtuple_error; - } - kw_args = PyDict_Size(__pyx_kwds); - switch (pos_args) { - case 0: - if (likely((values[0] = __Pyx_PyDict_GetItemStr(__pyx_kwds, __pyx_n_s_fp_str)) != 0)) kw_args--; - else goto __pyx_L5_argtuple_error; - CYTHON_FALLTHROUGH; - case 1: - if (likely((values[1] = __Pyx_PyDict_GetItemStr(__pyx_kwds, __pyx_n_s_context)) != 0)) kw_args--; - else { - __Pyx_RaiseArgtupleInvalid("proc_identify", 0, 4, 7, 1); __PYX_ERR(0, 193, __pyx_L3_error) - } - CYTHON_FALLTHROUGH; - case 2: - if (likely((values[2] = __Pyx_PyDict_GetItemStr(__pyx_kwds, __pyx_n_s_dest_addr)) != 0)) kw_args--; - else { - __Pyx_RaiseArgtupleInvalid("proc_identify", 0, 4, 7, 2); __PYX_ERR(0, 193, __pyx_L3_error) - } - CYTHON_FALLTHROUGH; - case 3: - if (likely((values[3] = __Pyx_PyDict_GetItemStr(__pyx_kwds, __pyx_n_s_dest_port)) != 0)) kw_args--; - else { - __Pyx_RaiseArgtupleInvalid("proc_identify", 0, 4, 7, 3); __PYX_ERR(0, 193, __pyx_L3_error) - } - CYTHON_FALLTHROUGH; - case 4: - if (kw_args > 0) { - PyObject* value = __Pyx_PyDict_GetItemStr(__pyx_kwds, __pyx_n_s_list_procs); - if (value) { values[4] = value; kw_args--; } - } - CYTHON_FALLTHROUGH; - case 5: - if (kw_args > 0) { - PyObject* value = __Pyx_PyDict_GetItemStr(__pyx_kwds, __pyx_n_s_endpoint); - if (value) { values[5] = value; kw_args--; } - } - CYTHON_FALLTHROUGH; - case 6: - if (kw_args > 0) { - PyObject* value = __Pyx_PyDict_GetItemStr(__pyx_kwds, __pyx_n_s_approx); - if (value) { values[6] = value; kw_args--; } - } - } - if (unlikely(kw_args > 0)) { - if (unlikely(__Pyx_ParseOptionalKeywords(__pyx_kwds, __pyx_pyargnames, 0, values, pos_args, "proc_identify") < 0)) __PYX_ERR(0, 193, __pyx_L3_error) - } - } else { - switch (PyTuple_GET_SIZE(__pyx_args)) { - case 7: values[6] = PyTuple_GET_ITEM(__pyx_args, 6); - CYTHON_FALLTHROUGH; - case 6: values[5] = PyTuple_GET_ITEM(__pyx_args, 5); - CYTHON_FALLTHROUGH; - case 5: values[4] = PyTuple_GET_ITEM(__pyx_args, 4); - CYTHON_FALLTHROUGH; - case 4: values[3] = PyTuple_GET_ITEM(__pyx_args, 3); - values[2] = PyTuple_GET_ITEM(__pyx_args, 2); - values[1] = PyTuple_GET_ITEM(__pyx_args, 1); - values[0] = PyTuple_GET_ITEM(__pyx_args, 0); - break; - default: goto __pyx_L5_argtuple_error; - } - } - __pyx_v_fp_str_ = values[0]; - __pyx_v_context_ = values[1]; - __pyx_v_dest_addr = values[2]; - __pyx_v_dest_port = values[3]; - __pyx_v_list_procs = values[4]; - __pyx_v_endpoint = values[5]; - __pyx_v_approx = values[6]; - } - goto __pyx_L4_argument_unpacking_done; - __pyx_L5_argtuple_error:; - __Pyx_RaiseArgtupleInvalid("proc_identify", 0, 4, 7, PyTuple_GET_SIZE(__pyx_args)); __PYX_ERR(0, 193, __pyx_L3_error) - __pyx_L3_error:; - __Pyx_AddTraceback("pmercury.protocols.tls.TLS.proc_identify", __pyx_clineno, __pyx_lineno, __pyx_filename); - __Pyx_RefNannyFinishContext(); - return NULL; - __pyx_L4_argument_unpacking_done:; - __pyx_r = __pyx_pf_8pmercury_9protocols_3tls_3TLS_8proc_identify(((struct __pyx_obj_8pmercury_9protocols_3tls_TLS *)__pyx_v_self), __pyx_v_fp_str_, __pyx_v_context_, __pyx_v_dest_addr, __pyx_v_dest_port, __pyx_v_list_procs, __pyx_v_endpoint, __pyx_v_approx); - - /* function exit code */ - __Pyx_RefNannyFinishContext(); - return __pyx_r; -} - -static PyObject *__pyx_pf_8pmercury_9protocols_3tls_3TLS_8proc_identify(struct __pyx_obj_8pmercury_9protocols_3tls_TLS *__pyx_v_self, PyObject *__pyx_v_fp_str_, PyObject *__pyx_v_context_, PyObject *__pyx_v_dest_addr, PyObject *__pyx_v_dest_port, PyObject *__pyx_v_list_procs, PyObject *__pyx_v_endpoint, PyObject *__pyx_v_approx) { - PyObject *__pyx_v_server_name = NULL; - PyObject *__pyx_v_lit_fp = NULL; - PyObject *__pyx_v_approx_str_ = NULL; - PyObject *__pyx_v_fp_ = NULL; - PyObject *__pyx_r = NULL; - __Pyx_RefNannyDeclarations - int __pyx_t_1; - PyObject *__pyx_t_2 = NULL; - int __pyx_t_3; - int __pyx_t_4; - PyObject *__pyx_t_5 = NULL; - PyObject *__pyx_t_6 = NULL; - int __pyx_t_7; - PyObject *__pyx_t_8 = NULL; - __Pyx_RefNannySetupContext("proc_identify", 0); - - /* "pmercury/protocols/tls.pyx":194 - * - * def proc_identify(self, fp_str_, context_, dest_addr, dest_port, list_procs=0, endpoint=None, approx=True): - * server_name = None # <<<<<<<<<<<<<< - * # extract server_name field from context object - * if context_ != None and 'server_name' in context_: - */ - __Pyx_INCREF(Py_None); - __pyx_v_server_name = Py_None; - - /* "pmercury/protocols/tls.pyx":196 - * server_name = None - * # extract server_name field from context object - * if context_ != None and 'server_name' in context_: # <<<<<<<<<<<<<< - * server_name = context_['server_name'] - * - */ - __pyx_t_2 = PyObject_RichCompare(__pyx_v_context_, Py_None, Py_NE); __Pyx_XGOTREF(__pyx_t_2); if (unlikely(!__pyx_t_2)) __PYX_ERR(0, 196, __pyx_L1_error) - __pyx_t_3 = __Pyx_PyObject_IsTrue(__pyx_t_2); if (unlikely(__pyx_t_3 < 0)) __PYX_ERR(0, 196, __pyx_L1_error) - __Pyx_DECREF(__pyx_t_2); __pyx_t_2 = 0; - if (__pyx_t_3) { - } else { - __pyx_t_1 = __pyx_t_3; - goto __pyx_L4_bool_binop_done; - } - __pyx_t_3 = (__Pyx_PySequence_ContainsTF(__pyx_n_u_server_name, __pyx_v_context_, Py_EQ)); if (unlikely(__pyx_t_3 < 0)) __PYX_ERR(0, 196, __pyx_L1_error) - __pyx_t_4 = (__pyx_t_3 != 0); - __pyx_t_1 = __pyx_t_4; - __pyx_L4_bool_binop_done:; - if (__pyx_t_1) { - - /* "pmercury/protocols/tls.pyx":197 - * # extract server_name field from context object - * if context_ != None and 'server_name' in context_: - * server_name = context_['server_name'] # <<<<<<<<<<<<<< - * - * # fingerprint approximate matching if necessary - */ - __pyx_t_2 = __Pyx_PyObject_Dict_GetItem(__pyx_v_context_, __pyx_n_u_server_name); if (unlikely(!__pyx_t_2)) __PYX_ERR(0, 197, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_2); - __Pyx_DECREF_SET(__pyx_v_server_name, __pyx_t_2); - __pyx_t_2 = 0; - - /* "pmercury/protocols/tls.pyx":196 - * server_name = None - * # extract server_name field from context object - * if context_ != None and 'server_name' in context_: # <<<<<<<<<<<<<< - * server_name = context_['server_name'] - * - */ - } - - /* "pmercury/protocols/tls.pyx":200 - * - * # fingerprint approximate matching if necessary - * if fp_str_ not in self.fp_db: # <<<<<<<<<<<<<< - * if not approx: - * return {'process': 'Unknown', 'score': 0.0, 'malware': 0, 'p_malware': 0.0, 'category': 'Unknown'} - */ - if (unlikely(__pyx_v_self->fp_db == Py_None)) { - PyErr_SetString(PyExc_TypeError, "'NoneType' object is not iterable"); - __PYX_ERR(0, 200, __pyx_L1_error) - } - __pyx_t_1 = (__Pyx_PyDict_ContainsTF(__pyx_v_fp_str_, __pyx_v_self->fp_db, Py_NE)); if (unlikely(__pyx_t_1 < 0)) __PYX_ERR(0, 200, __pyx_L1_error) - __pyx_t_4 = (__pyx_t_1 != 0); - if (__pyx_t_4) { - - /* "pmercury/protocols/tls.pyx":201 - * # fingerprint approximate matching if necessary - * if fp_str_ not in self.fp_db: - * if not approx: # <<<<<<<<<<<<<< - * return {'process': 'Unknown', 'score': 0.0, 'malware': 0, 'p_malware': 0.0, 'category': 'Unknown'} - * lit_fp = eval_fp_str(fp_str_) - */ - __pyx_t_4 = __Pyx_PyObject_IsTrue(__pyx_v_approx); if (unlikely(__pyx_t_4 < 0)) __PYX_ERR(0, 201, __pyx_L1_error) - __pyx_t_1 = ((!__pyx_t_4) != 0); - if (__pyx_t_1) { - - /* "pmercury/protocols/tls.pyx":202 - * if fp_str_ not in self.fp_db: - * if not approx: - * return {'process': 'Unknown', 'score': 0.0, 'malware': 0, 'p_malware': 0.0, 'category': 'Unknown'} # <<<<<<<<<<<<<< - * lit_fp = eval_fp_str(fp_str_) - * approx_str_ = self.find_approx_match(lit_fp) - */ - __Pyx_XDECREF(__pyx_r); - __pyx_t_2 = __Pyx_PyDict_NewPresized(5); if (unlikely(!__pyx_t_2)) __PYX_ERR(0, 202, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_2); - if (PyDict_SetItem(__pyx_t_2, __pyx_n_u_process, __pyx_n_u_Unknown) < 0) __PYX_ERR(0, 202, __pyx_L1_error) - if (PyDict_SetItem(__pyx_t_2, __pyx_n_u_score, __pyx_float_0_0) < 0) __PYX_ERR(0, 202, __pyx_L1_error) - if (PyDict_SetItem(__pyx_t_2, __pyx_n_u_malware, __pyx_int_0) < 0) __PYX_ERR(0, 202, __pyx_L1_error) - if (PyDict_SetItem(__pyx_t_2, __pyx_n_u_p_malware, __pyx_float_0_0) < 0) __PYX_ERR(0, 202, __pyx_L1_error) - if (PyDict_SetItem(__pyx_t_2, __pyx_n_u_category, __pyx_n_u_Unknown) < 0) __PYX_ERR(0, 202, __pyx_L1_error) - __pyx_r = __pyx_t_2; - __pyx_t_2 = 0; - goto __pyx_L0; - - /* "pmercury/protocols/tls.pyx":201 - * # fingerprint approximate matching if necessary - * if fp_str_ not in self.fp_db: - * if not approx: # <<<<<<<<<<<<<< - * return {'process': 'Unknown', 'score': 0.0, 'malware': 0, 'p_malware': 0.0, 'category': 'Unknown'} - * lit_fp = eval_fp_str(fp_str_) - */ - } - - /* "pmercury/protocols/tls.pyx":203 - * if not approx: - * return {'process': 'Unknown', 'score': 0.0, 'malware': 0, 'p_malware': 0.0, 'category': 'Unknown'} - * lit_fp = eval_fp_str(fp_str_) # <<<<<<<<<<<<<< - * approx_str_ = self.find_approx_match(lit_fp) - * if approx_str_ == None: - */ - __Pyx_GetModuleGlobalName(__pyx_t_5, __pyx_n_s_eval_fp_str); if (unlikely(!__pyx_t_5)) __PYX_ERR(0, 203, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_5); - __pyx_t_6 = NULL; - if (CYTHON_UNPACK_METHODS && unlikely(PyMethod_Check(__pyx_t_5))) { - __pyx_t_6 = PyMethod_GET_SELF(__pyx_t_5); - if (likely(__pyx_t_6)) { - PyObject* function = PyMethod_GET_FUNCTION(__pyx_t_5); - __Pyx_INCREF(__pyx_t_6); - __Pyx_INCREF(function); - __Pyx_DECREF_SET(__pyx_t_5, function); - } - } - __pyx_t_2 = (__pyx_t_6) ? __Pyx_PyObject_Call2Args(__pyx_t_5, __pyx_t_6, __pyx_v_fp_str_) : __Pyx_PyObject_CallOneArg(__pyx_t_5, __pyx_v_fp_str_); - __Pyx_XDECREF(__pyx_t_6); __pyx_t_6 = 0; - if (unlikely(!__pyx_t_2)) __PYX_ERR(0, 203, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_2); - __Pyx_DECREF(__pyx_t_5); __pyx_t_5 = 0; - __pyx_v_lit_fp = __pyx_t_2; - __pyx_t_2 = 0; - - /* "pmercury/protocols/tls.pyx":204 - * return {'process': 'Unknown', 'score': 0.0, 'malware': 0, 'p_malware': 0.0, 'category': 'Unknown'} - * lit_fp = eval_fp_str(fp_str_) - * approx_str_ = self.find_approx_match(lit_fp) # <<<<<<<<<<<<<< - * if approx_str_ == None: - * fp_ = self.gen_unknown_fingerprint(fp_str_) - */ - __pyx_t_5 = __Pyx_PyObject_GetAttrStr(((PyObject *)__pyx_v_self), __pyx_n_s_find_approx_match); if (unlikely(!__pyx_t_5)) __PYX_ERR(0, 204, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_5); - __pyx_t_6 = NULL; - if (CYTHON_UNPACK_METHODS && likely(PyMethod_Check(__pyx_t_5))) { - __pyx_t_6 = PyMethod_GET_SELF(__pyx_t_5); - if (likely(__pyx_t_6)) { - PyObject* function = PyMethod_GET_FUNCTION(__pyx_t_5); - __Pyx_INCREF(__pyx_t_6); - __Pyx_INCREF(function); - __Pyx_DECREF_SET(__pyx_t_5, function); - } - } - __pyx_t_2 = (__pyx_t_6) ? __Pyx_PyObject_Call2Args(__pyx_t_5, __pyx_t_6, __pyx_v_lit_fp) : __Pyx_PyObject_CallOneArg(__pyx_t_5, __pyx_v_lit_fp); - __Pyx_XDECREF(__pyx_t_6); __pyx_t_6 = 0; - if (unlikely(!__pyx_t_2)) __PYX_ERR(0, 204, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_2); - __Pyx_DECREF(__pyx_t_5); __pyx_t_5 = 0; - __pyx_v_approx_str_ = __pyx_t_2; - __pyx_t_2 = 0; - - /* "pmercury/protocols/tls.pyx":205 - * lit_fp = eval_fp_str(fp_str_) - * approx_str_ = self.find_approx_match(lit_fp) - * if approx_str_ == None: # <<<<<<<<<<<<<< - * fp_ = self.gen_unknown_fingerprint(fp_str_) - * self.fp_db[fp_str_] = fp_ - */ - __pyx_t_2 = PyObject_RichCompare(__pyx_v_approx_str_, Py_None, Py_EQ); __Pyx_XGOTREF(__pyx_t_2); if (unlikely(!__pyx_t_2)) __PYX_ERR(0, 205, __pyx_L1_error) - __pyx_t_1 = __Pyx_PyObject_IsTrue(__pyx_t_2); if (unlikely(__pyx_t_1 < 0)) __PYX_ERR(0, 205, __pyx_L1_error) - __Pyx_DECREF(__pyx_t_2); __pyx_t_2 = 0; - if (__pyx_t_1) { - - /* "pmercury/protocols/tls.pyx":206 - * approx_str_ = self.find_approx_match(lit_fp) - * if approx_str_ == None: - * fp_ = self.gen_unknown_fingerprint(fp_str_) # <<<<<<<<<<<<<< - * self.fp_db[fp_str_] = fp_ - * if self.MALWARE_DB: - */ - __pyx_t_5 = __Pyx_PyObject_GetAttrStr(((PyObject *)__pyx_v_self), __pyx_n_s_gen_unknown_fingerprint); if (unlikely(!__pyx_t_5)) __PYX_ERR(0, 206, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_5); - __pyx_t_6 = NULL; - if (CYTHON_UNPACK_METHODS && likely(PyMethod_Check(__pyx_t_5))) { - __pyx_t_6 = PyMethod_GET_SELF(__pyx_t_5); - if (likely(__pyx_t_6)) { - PyObject* function = PyMethod_GET_FUNCTION(__pyx_t_5); - __Pyx_INCREF(__pyx_t_6); - __Pyx_INCREF(function); - __Pyx_DECREF_SET(__pyx_t_5, function); - } - } - __pyx_t_2 = (__pyx_t_6) ? __Pyx_PyObject_Call2Args(__pyx_t_5, __pyx_t_6, __pyx_v_fp_str_) : __Pyx_PyObject_CallOneArg(__pyx_t_5, __pyx_v_fp_str_); - __Pyx_XDECREF(__pyx_t_6); __pyx_t_6 = 0; - if (unlikely(!__pyx_t_2)) __PYX_ERR(0, 206, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_2); - __Pyx_DECREF(__pyx_t_5); __pyx_t_5 = 0; - __pyx_v_fp_ = __pyx_t_2; - __pyx_t_2 = 0; - - /* "pmercury/protocols/tls.pyx":207 - * if approx_str_ == None: - * fp_ = self.gen_unknown_fingerprint(fp_str_) - * self.fp_db[fp_str_] = fp_ # <<<<<<<<<<<<<< - * if self.MALWARE_DB: - * return {'process': 'Unknown', 'score': 0.0, 'malware': 0, 'p_malware': 0.0, 'category': 'Unknown'} - */ - if (unlikely(__pyx_v_self->fp_db == Py_None)) { - PyErr_SetString(PyExc_TypeError, "'NoneType' object is not subscriptable"); - __PYX_ERR(0, 207, __pyx_L1_error) - } - if (unlikely(PyDict_SetItem(__pyx_v_self->fp_db, __pyx_v_fp_str_, __pyx_v_fp_) < 0)) __PYX_ERR(0, 207, __pyx_L1_error) - - /* "pmercury/protocols/tls.pyx":208 - * fp_ = self.gen_unknown_fingerprint(fp_str_) - * self.fp_db[fp_str_] = fp_ - * if self.MALWARE_DB: # <<<<<<<<<<<<<< - * return {'process': 'Unknown', 'score': 0.0, 'malware': 0, 'p_malware': 0.0, 'category': 'Unknown'} - * else: - */ - __pyx_t_1 = (__pyx_v_self->MALWARE_DB != 0); - if (__pyx_t_1) { - - /* "pmercury/protocols/tls.pyx":209 - * self.fp_db[fp_str_] = fp_ - * if self.MALWARE_DB: - * return {'process': 'Unknown', 'score': 0.0, 'malware': 0, 'p_malware': 0.0, 'category': 'Unknown'} # <<<<<<<<<<<<<< - * else: - * return {'process': 'Unknown', 'score': 0.0, 'category': 'Unknown'} - */ - __Pyx_XDECREF(__pyx_r); - __pyx_t_2 = __Pyx_PyDict_NewPresized(5); if (unlikely(!__pyx_t_2)) __PYX_ERR(0, 209, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_2); - if (PyDict_SetItem(__pyx_t_2, __pyx_n_u_process, __pyx_n_u_Unknown) < 0) __PYX_ERR(0, 209, __pyx_L1_error) - if (PyDict_SetItem(__pyx_t_2, __pyx_n_u_score, __pyx_float_0_0) < 0) __PYX_ERR(0, 209, __pyx_L1_error) - if (PyDict_SetItem(__pyx_t_2, __pyx_n_u_malware, __pyx_int_0) < 0) __PYX_ERR(0, 209, __pyx_L1_error) - if (PyDict_SetItem(__pyx_t_2, __pyx_n_u_p_malware, __pyx_float_0_0) < 0) __PYX_ERR(0, 209, __pyx_L1_error) - if (PyDict_SetItem(__pyx_t_2, __pyx_n_u_category, __pyx_n_u_Unknown) < 0) __PYX_ERR(0, 209, __pyx_L1_error) - __pyx_r = __pyx_t_2; - __pyx_t_2 = 0; - goto __pyx_L0; - - /* "pmercury/protocols/tls.pyx":208 - * fp_ = self.gen_unknown_fingerprint(fp_str_) - * self.fp_db[fp_str_] = fp_ - * if self.MALWARE_DB: # <<<<<<<<<<<<<< - * return {'process': 'Unknown', 'score': 0.0, 'malware': 0, 'p_malware': 0.0, 'category': 'Unknown'} - * else: - */ - } - - /* "pmercury/protocols/tls.pyx":211 - * return {'process': 'Unknown', 'score': 0.0, 'malware': 0, 'p_malware': 0.0, 'category': 'Unknown'} - * else: - * return {'process': 'Unknown', 'score': 0.0, 'category': 'Unknown'} # <<<<<<<<<<<<<< - * self.fp_db[fp_str_] = self.fp_db[approx_str_] - * self.fp_db[fp_str_]['approx_str'] = approx_str_ - */ - /*else*/ { - __Pyx_XDECREF(__pyx_r); - __pyx_t_2 = __Pyx_PyDict_NewPresized(3); if (unlikely(!__pyx_t_2)) __PYX_ERR(0, 211, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_2); - if (PyDict_SetItem(__pyx_t_2, __pyx_n_u_process, __pyx_n_u_Unknown) < 0) __PYX_ERR(0, 211, __pyx_L1_error) - if (PyDict_SetItem(__pyx_t_2, __pyx_n_u_score, __pyx_float_0_0) < 0) __PYX_ERR(0, 211, __pyx_L1_error) - if (PyDict_SetItem(__pyx_t_2, __pyx_n_u_category, __pyx_n_u_Unknown) < 0) __PYX_ERR(0, 211, __pyx_L1_error) - __pyx_r = __pyx_t_2; - __pyx_t_2 = 0; - goto __pyx_L0; - } - - /* "pmercury/protocols/tls.pyx":205 - * lit_fp = eval_fp_str(fp_str_) - * approx_str_ = self.find_approx_match(lit_fp) - * if approx_str_ == None: # <<<<<<<<<<<<<< - * fp_ = self.gen_unknown_fingerprint(fp_str_) - * self.fp_db[fp_str_] = fp_ - */ - } - - /* "pmercury/protocols/tls.pyx":212 - * else: - * return {'process': 'Unknown', 'score': 0.0, 'category': 'Unknown'} - * self.fp_db[fp_str_] = self.fp_db[approx_str_] # <<<<<<<<<<<<<< - * self.fp_db[fp_str_]['approx_str'] = approx_str_ - * - */ - if (unlikely(__pyx_v_self->fp_db == Py_None)) { - PyErr_SetString(PyExc_TypeError, "'NoneType' object is not subscriptable"); - __PYX_ERR(0, 212, __pyx_L1_error) - } - __pyx_t_2 = __Pyx_PyDict_GetItem(__pyx_v_self->fp_db, __pyx_v_approx_str_); if (unlikely(!__pyx_t_2)) __PYX_ERR(0, 212, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_2); - if (unlikely(__pyx_v_self->fp_db == Py_None)) { - PyErr_SetString(PyExc_TypeError, "'NoneType' object is not subscriptable"); - __PYX_ERR(0, 212, __pyx_L1_error) - } - if (unlikely(PyDict_SetItem(__pyx_v_self->fp_db, __pyx_v_fp_str_, __pyx_t_2) < 0)) __PYX_ERR(0, 212, __pyx_L1_error) - __Pyx_DECREF(__pyx_t_2); __pyx_t_2 = 0; - - /* "pmercury/protocols/tls.pyx":213 - * return {'process': 'Unknown', 'score': 0.0, 'category': 'Unknown'} - * self.fp_db[fp_str_] = self.fp_db[approx_str_] - * self.fp_db[fp_str_]['approx_str'] = approx_str_ # <<<<<<<<<<<<<< - * - * # perform process identification given the fingerprint string and destination information - */ - if (unlikely(__pyx_v_self->fp_db == Py_None)) { - PyErr_SetString(PyExc_TypeError, "'NoneType' object is not subscriptable"); - __PYX_ERR(0, 213, __pyx_L1_error) - } - __pyx_t_2 = __Pyx_PyDict_GetItem(__pyx_v_self->fp_db, __pyx_v_fp_str_); if (unlikely(!__pyx_t_2)) __PYX_ERR(0, 213, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_2); - if (unlikely(PyObject_SetItem(__pyx_t_2, __pyx_n_u_approx_str, __pyx_v_approx_str_) < 0)) __PYX_ERR(0, 213, __pyx_L1_error) - __Pyx_DECREF(__pyx_t_2); __pyx_t_2 = 0; - - /* "pmercury/protocols/tls.pyx":200 - * - * # fingerprint approximate matching if necessary - * if fp_str_ not in self.fp_db: # <<<<<<<<<<<<<< - * if not approx: - * return {'process': 'Unknown', 'score': 0.0, 'malware': 0, 'p_malware': 0.0, 'category': 'Unknown'} - */ - } - - /* "pmercury/protocols/tls.pyx":216 - * - * # perform process identification given the fingerprint string and destination information - * return self.identify(fp_str_, server_name, dest_addr, dest_port, list_procs, endpoint) # <<<<<<<<<<<<<< - * - * - */ - __Pyx_XDECREF(__pyx_r); - __pyx_t_5 = __Pyx_PyObject_GetAttrStr(((PyObject *)__pyx_v_self), __pyx_n_s_identify); if (unlikely(!__pyx_t_5)) __PYX_ERR(0, 216, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_5); - __pyx_t_6 = NULL; - __pyx_t_7 = 0; - if (CYTHON_UNPACK_METHODS && likely(PyMethod_Check(__pyx_t_5))) { - __pyx_t_6 = PyMethod_GET_SELF(__pyx_t_5); - if (likely(__pyx_t_6)) { - PyObject* function = PyMethod_GET_FUNCTION(__pyx_t_5); - __Pyx_INCREF(__pyx_t_6); - __Pyx_INCREF(function); - __Pyx_DECREF_SET(__pyx_t_5, function); - __pyx_t_7 = 1; - } - } - #if CYTHON_FAST_PYCALL - if (PyFunction_Check(__pyx_t_5)) { - PyObject *__pyx_temp[7] = {__pyx_t_6, __pyx_v_fp_str_, __pyx_v_server_name, __pyx_v_dest_addr, __pyx_v_dest_port, __pyx_v_list_procs, __pyx_v_endpoint}; - __pyx_t_2 = __Pyx_PyFunction_FastCall(__pyx_t_5, __pyx_temp+1-__pyx_t_7, 6+__pyx_t_7); if (unlikely(!__pyx_t_2)) __PYX_ERR(0, 216, __pyx_L1_error) - __Pyx_XDECREF(__pyx_t_6); __pyx_t_6 = 0; - __Pyx_GOTREF(__pyx_t_2); - } else - #endif - #if CYTHON_FAST_PYCCALL - if (__Pyx_PyFastCFunction_Check(__pyx_t_5)) { - PyObject *__pyx_temp[7] = {__pyx_t_6, __pyx_v_fp_str_, __pyx_v_server_name, __pyx_v_dest_addr, __pyx_v_dest_port, __pyx_v_list_procs, __pyx_v_endpoint}; - __pyx_t_2 = __Pyx_PyCFunction_FastCall(__pyx_t_5, __pyx_temp+1-__pyx_t_7, 6+__pyx_t_7); if (unlikely(!__pyx_t_2)) __PYX_ERR(0, 216, __pyx_L1_error) - __Pyx_XDECREF(__pyx_t_6); __pyx_t_6 = 0; - __Pyx_GOTREF(__pyx_t_2); - } else - #endif - { - __pyx_t_8 = PyTuple_New(6+__pyx_t_7); if (unlikely(!__pyx_t_8)) __PYX_ERR(0, 216, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_8); - if (__pyx_t_6) { - __Pyx_GIVEREF(__pyx_t_6); PyTuple_SET_ITEM(__pyx_t_8, 0, __pyx_t_6); __pyx_t_6 = NULL; - } - __Pyx_INCREF(__pyx_v_fp_str_); - __Pyx_GIVEREF(__pyx_v_fp_str_); - PyTuple_SET_ITEM(__pyx_t_8, 0+__pyx_t_7, __pyx_v_fp_str_); - __Pyx_INCREF(__pyx_v_server_name); - __Pyx_GIVEREF(__pyx_v_server_name); - PyTuple_SET_ITEM(__pyx_t_8, 1+__pyx_t_7, __pyx_v_server_name); - __Pyx_INCREF(__pyx_v_dest_addr); - __Pyx_GIVEREF(__pyx_v_dest_addr); - PyTuple_SET_ITEM(__pyx_t_8, 2+__pyx_t_7, __pyx_v_dest_addr); - __Pyx_INCREF(__pyx_v_dest_port); - __Pyx_GIVEREF(__pyx_v_dest_port); - PyTuple_SET_ITEM(__pyx_t_8, 3+__pyx_t_7, __pyx_v_dest_port); - __Pyx_INCREF(__pyx_v_list_procs); - __Pyx_GIVEREF(__pyx_v_list_procs); - PyTuple_SET_ITEM(__pyx_t_8, 4+__pyx_t_7, __pyx_v_list_procs); - __Pyx_INCREF(__pyx_v_endpoint); - __Pyx_GIVEREF(__pyx_v_endpoint); - PyTuple_SET_ITEM(__pyx_t_8, 5+__pyx_t_7, __pyx_v_endpoint); - __pyx_t_2 = __Pyx_PyObject_Call(__pyx_t_5, __pyx_t_8, NULL); if (unlikely(!__pyx_t_2)) __PYX_ERR(0, 216, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_2); - __Pyx_DECREF(__pyx_t_8); __pyx_t_8 = 0; - } - __Pyx_DECREF(__pyx_t_5); __pyx_t_5 = 0; - __pyx_r = __pyx_t_2; - __pyx_t_2 = 0; - goto __pyx_L0; - - /* "pmercury/protocols/tls.pyx":193 - * - * - * def proc_identify(self, fp_str_, context_, dest_addr, dest_port, list_procs=0, endpoint=None, approx=True): # <<<<<<<<<<<<<< - * server_name = None - * # extract server_name field from context object - */ - - /* function exit code */ - __pyx_L1_error:; - __Pyx_XDECREF(__pyx_t_2); - __Pyx_XDECREF(__pyx_t_5); - __Pyx_XDECREF(__pyx_t_6); - __Pyx_XDECREF(__pyx_t_8); - __Pyx_AddTraceback("pmercury.protocols.tls.TLS.proc_identify", __pyx_clineno, __pyx_lineno, __pyx_filename); - __pyx_r = NULL; - __pyx_L0:; - __Pyx_XDECREF(__pyx_v_server_name); - __Pyx_XDECREF(__pyx_v_lit_fp); - __Pyx_XDECREF(__pyx_v_approx_str_); - __Pyx_XDECREF(__pyx_v_fp_); - __Pyx_XGIVEREF(__pyx_r); - __Pyx_RefNannyFinishContext(); - return __pyx_r; -} - -/* "pmercury/protocols/tls.pyx":220 - * - * @functools.lru_cache(maxsize=MAX_CACHED_RESULTS) - * def identify(self, fp_str_, server_name, dest_addr, dest_port, list_procs, endpoint=None): # <<<<<<<<<<<<<< - * fp_ = self.get_database_entry(fp_str_, None) - * if fp_ == None: - */ - -/* Python wrapper */ -static PyObject *__pyx_pw_8pmercury_9protocols_3tls_3TLS_11identify(PyObject *__pyx_v_self, PyObject *__pyx_args, PyObject *__pyx_kwds); /*proto*/ -static PyObject *__pyx_pw_8pmercury_9protocols_3tls_3TLS_11identify(PyObject *__pyx_v_self, PyObject *__pyx_args, PyObject *__pyx_kwds) { - PyObject *__pyx_v_fp_str_ = 0; - PyObject *__pyx_v_server_name = 0; - PyObject *__pyx_v_dest_addr = 0; - PyObject *__pyx_v_dest_port = 0; - PyObject *__pyx_v_list_procs = 0; - PyObject *__pyx_v_endpoint = 0; - PyObject *__pyx_r = 0; - __Pyx_RefNannyDeclarations - __Pyx_RefNannySetupContext("identify (wrapper)", 0); - { - static PyObject **__pyx_pyargnames[] = {&__pyx_n_s_fp_str,&__pyx_n_s_server_name,&__pyx_n_s_dest_addr,&__pyx_n_s_dest_port,&__pyx_n_s_list_procs,&__pyx_n_s_endpoint,0}; - PyObject* values[6] = {0,0,0,0,0,0}; - values[5] = ((PyObject *)Py_None); - if (unlikely(__pyx_kwds)) { - Py_ssize_t kw_args; - const Py_ssize_t pos_args = PyTuple_GET_SIZE(__pyx_args); - switch (pos_args) { - case 6: values[5] = PyTuple_GET_ITEM(__pyx_args, 5); - CYTHON_FALLTHROUGH; - case 5: values[4] = PyTuple_GET_ITEM(__pyx_args, 4); - CYTHON_FALLTHROUGH; - case 4: values[3] = PyTuple_GET_ITEM(__pyx_args, 3); - CYTHON_FALLTHROUGH; - case 3: values[2] = PyTuple_GET_ITEM(__pyx_args, 2); - CYTHON_FALLTHROUGH; - case 2: values[1] = PyTuple_GET_ITEM(__pyx_args, 1); - CYTHON_FALLTHROUGH; - case 1: values[0] = PyTuple_GET_ITEM(__pyx_args, 0); - CYTHON_FALLTHROUGH; - case 0: break; - default: goto __pyx_L5_argtuple_error; - } - kw_args = PyDict_Size(__pyx_kwds); - switch (pos_args) { - case 0: - if (likely((values[0] = __Pyx_PyDict_GetItemStr(__pyx_kwds, __pyx_n_s_fp_str)) != 0)) kw_args--; - else goto __pyx_L5_argtuple_error; - CYTHON_FALLTHROUGH; - case 1: - if (likely((values[1] = __Pyx_PyDict_GetItemStr(__pyx_kwds, __pyx_n_s_server_name)) != 0)) kw_args--; - else { - __Pyx_RaiseArgtupleInvalid("identify", 0, 5, 6, 1); __PYX_ERR(0, 220, __pyx_L3_error) - } - CYTHON_FALLTHROUGH; - case 2: - if (likely((values[2] = __Pyx_PyDict_GetItemStr(__pyx_kwds, __pyx_n_s_dest_addr)) != 0)) kw_args--; - else { - __Pyx_RaiseArgtupleInvalid("identify", 0, 5, 6, 2); __PYX_ERR(0, 220, __pyx_L3_error) - } - CYTHON_FALLTHROUGH; - case 3: - if (likely((values[3] = __Pyx_PyDict_GetItemStr(__pyx_kwds, __pyx_n_s_dest_port)) != 0)) kw_args--; - else { - __Pyx_RaiseArgtupleInvalid("identify", 0, 5, 6, 3); __PYX_ERR(0, 220, __pyx_L3_error) - } - CYTHON_FALLTHROUGH; - case 4: - if (likely((values[4] = __Pyx_PyDict_GetItemStr(__pyx_kwds, __pyx_n_s_list_procs)) != 0)) kw_args--; - else { - __Pyx_RaiseArgtupleInvalid("identify", 0, 5, 6, 4); __PYX_ERR(0, 220, __pyx_L3_error) - } - CYTHON_FALLTHROUGH; - case 5: - if (kw_args > 0) { - PyObject* value = __Pyx_PyDict_GetItemStr(__pyx_kwds, __pyx_n_s_endpoint); - if (value) { values[5] = value; kw_args--; } - } - } - if (unlikely(kw_args > 0)) { - if (unlikely(__Pyx_ParseOptionalKeywords(__pyx_kwds, __pyx_pyargnames, 0, values, pos_args, "identify") < 0)) __PYX_ERR(0, 220, __pyx_L3_error) - } - } else { - switch (PyTuple_GET_SIZE(__pyx_args)) { - case 6: values[5] = PyTuple_GET_ITEM(__pyx_args, 5); - CYTHON_FALLTHROUGH; - case 5: values[4] = PyTuple_GET_ITEM(__pyx_args, 4); - values[3] = PyTuple_GET_ITEM(__pyx_args, 3); - values[2] = PyTuple_GET_ITEM(__pyx_args, 2); - values[1] = PyTuple_GET_ITEM(__pyx_args, 1); - values[0] = PyTuple_GET_ITEM(__pyx_args, 0); - break; - default: goto __pyx_L5_argtuple_error; - } - } - __pyx_v_fp_str_ = values[0]; - __pyx_v_server_name = values[1]; - __pyx_v_dest_addr = values[2]; - __pyx_v_dest_port = values[3]; - __pyx_v_list_procs = values[4]; - __pyx_v_endpoint = values[5]; - } - goto __pyx_L4_argument_unpacking_done; - __pyx_L5_argtuple_error:; - __Pyx_RaiseArgtupleInvalid("identify", 0, 5, 6, PyTuple_GET_SIZE(__pyx_args)); __PYX_ERR(0, 220, __pyx_L3_error) - __pyx_L3_error:; - __Pyx_AddTraceback("pmercury.protocols.tls.TLS.identify", __pyx_clineno, __pyx_lineno, __pyx_filename); - __Pyx_RefNannyFinishContext(); - return NULL; - __pyx_L4_argument_unpacking_done:; - __pyx_r = __pyx_pf_8pmercury_9protocols_3tls_3TLS_10identify(((struct __pyx_obj_8pmercury_9protocols_3tls_TLS *)__pyx_v_self), __pyx_v_fp_str_, __pyx_v_server_name, __pyx_v_dest_addr, __pyx_v_dest_port, __pyx_v_list_procs, __pyx_v_endpoint); - - /* function exit code */ - __Pyx_RefNannyFinishContext(); - return __pyx_r; -} - -static PyObject *__pyx_pf_8pmercury_9protocols_3tls_3TLS_10identify(struct __pyx_obj_8pmercury_9protocols_3tls_TLS *__pyx_v_self, PyObject *__pyx_v_fp_str_, PyObject *__pyx_v_server_name, PyObject *__pyx_v_dest_addr, PyObject *__pyx_v_dest_port, PyObject *__pyx_v_list_procs, PyObject *__pyx_v_endpoint) { - PyObject *__pyx_v_fp_ = NULL; - PyObject *__pyx_v_domain = NULL; - CYTHON_UNUSED PyObject *__pyx_v_tld = NULL; - PyObject *__pyx_v_asn = NULL; - PyObject *__pyx_v_port_app = NULL; - PyObject *__pyx_v_features = NULL; - PyObject *__pyx_v_fp_tc = NULL; - PyObject *__pyx_v_r_ = NULL; - PyObject *__pyx_v_predict_ = NULL; - PyObject *__pyx_v_process_name = NULL; - PyObject *__pyx_v_score_sum_ = NULL; - PyObject *__pyx_v_malware_score_ = NULL; - PyObject *__pyx_v_out_ = NULL; - PyObject *__pyx_v_r_proc_ = NULL; - PyObject *__pyx_v_p_ = NULL; - PyObject *__pyx_7genexpr__pyx_v_p_ = NULL; - PyObject *__pyx_8genexpr1__pyx_v_x_ = NULL; - PyObject *__pyx_8genexpr2__pyx_v_x_ = NULL; - PyObject *__pyx_r = NULL; - __Pyx_RefNannyDeclarations - PyObject *__pyx_t_1 = NULL; - PyObject *__pyx_t_2 = NULL; - PyObject *__pyx_t_3 = NULL; - int __pyx_t_4; - PyObject *__pyx_t_5 = NULL; - int __pyx_t_6; - PyObject *(*__pyx_t_7)(PyObject *); - Py_ssize_t __pyx_t_8; - PyObject *(*__pyx_t_9)(PyObject *); - PyObject *__pyx_t_10 = NULL; - PyObject *__pyx_t_11 = NULL; - int __pyx_t_12; - PyObject *__pyx_t_13 = NULL; - __Pyx_RefNannySetupContext("identify", 0); - - /* "pmercury/protocols/tls.pyx":221 - * @functools.lru_cache(maxsize=MAX_CACHED_RESULTS) - * def identify(self, fp_str_, server_name, dest_addr, dest_port, list_procs, endpoint=None): - * fp_ = self.get_database_entry(fp_str_, None) # <<<<<<<<<<<<<< - * if fp_ == None: - * # if malware data is in the database, report malware scores - */ - __pyx_t_2 = __Pyx_PyObject_GetAttrStr(((PyObject *)__pyx_v_self), __pyx_n_s_get_database_entry); if (unlikely(!__pyx_t_2)) __PYX_ERR(0, 221, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_2); - __pyx_t_3 = NULL; - __pyx_t_4 = 0; - if (CYTHON_UNPACK_METHODS && likely(PyMethod_Check(__pyx_t_2))) { - __pyx_t_3 = PyMethod_GET_SELF(__pyx_t_2); - if (likely(__pyx_t_3)) { - PyObject* function = PyMethod_GET_FUNCTION(__pyx_t_2); - __Pyx_INCREF(__pyx_t_3); - __Pyx_INCREF(function); - __Pyx_DECREF_SET(__pyx_t_2, function); - __pyx_t_4 = 1; - } - } - #if CYTHON_FAST_PYCALL - if (PyFunction_Check(__pyx_t_2)) { - PyObject *__pyx_temp[3] = {__pyx_t_3, __pyx_v_fp_str_, Py_None}; - __pyx_t_1 = __Pyx_PyFunction_FastCall(__pyx_t_2, __pyx_temp+1-__pyx_t_4, 2+__pyx_t_4); if (unlikely(!__pyx_t_1)) __PYX_ERR(0, 221, __pyx_L1_error) - __Pyx_XDECREF(__pyx_t_3); __pyx_t_3 = 0; - __Pyx_GOTREF(__pyx_t_1); - } else - #endif - #if CYTHON_FAST_PYCCALL - if (__Pyx_PyFastCFunction_Check(__pyx_t_2)) { - PyObject *__pyx_temp[3] = {__pyx_t_3, __pyx_v_fp_str_, Py_None}; - __pyx_t_1 = __Pyx_PyCFunction_FastCall(__pyx_t_2, __pyx_temp+1-__pyx_t_4, 2+__pyx_t_4); if (unlikely(!__pyx_t_1)) __PYX_ERR(0, 221, __pyx_L1_error) - __Pyx_XDECREF(__pyx_t_3); __pyx_t_3 = 0; - __Pyx_GOTREF(__pyx_t_1); - } else - #endif - { - __pyx_t_5 = PyTuple_New(2+__pyx_t_4); if (unlikely(!__pyx_t_5)) __PYX_ERR(0, 221, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_5); - if (__pyx_t_3) { - __Pyx_GIVEREF(__pyx_t_3); PyTuple_SET_ITEM(__pyx_t_5, 0, __pyx_t_3); __pyx_t_3 = NULL; - } - __Pyx_INCREF(__pyx_v_fp_str_); - __Pyx_GIVEREF(__pyx_v_fp_str_); - PyTuple_SET_ITEM(__pyx_t_5, 0+__pyx_t_4, __pyx_v_fp_str_); - __Pyx_INCREF(Py_None); - __Pyx_GIVEREF(Py_None); - PyTuple_SET_ITEM(__pyx_t_5, 1+__pyx_t_4, Py_None); - __pyx_t_1 = __Pyx_PyObject_Call(__pyx_t_2, __pyx_t_5, NULL); if (unlikely(!__pyx_t_1)) __PYX_ERR(0, 221, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_1); - __Pyx_DECREF(__pyx_t_5); __pyx_t_5 = 0; - } - __Pyx_DECREF(__pyx_t_2); __pyx_t_2 = 0; - __pyx_v_fp_ = __pyx_t_1; - __pyx_t_1 = 0; - - /* "pmercury/protocols/tls.pyx":222 - * def identify(self, fp_str_, server_name, dest_addr, dest_port, list_procs, endpoint=None): - * fp_ = self.get_database_entry(fp_str_, None) - * if fp_ == None: # <<<<<<<<<<<<<< - * # if malware data is in the database, report malware scores - * if self.MALWARE_DB: - */ - __pyx_t_1 = PyObject_RichCompare(__pyx_v_fp_, Py_None, Py_EQ); __Pyx_XGOTREF(__pyx_t_1); if (unlikely(!__pyx_t_1)) __PYX_ERR(0, 222, __pyx_L1_error) - __pyx_t_6 = __Pyx_PyObject_IsTrue(__pyx_t_1); if (unlikely(__pyx_t_6 < 0)) __PYX_ERR(0, 222, __pyx_L1_error) - __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0; - if (__pyx_t_6) { - - /* "pmercury/protocols/tls.pyx":224 - * if fp_ == None: - * # if malware data is in the database, report malware scores - * if self.MALWARE_DB: # <<<<<<<<<<<<<< - * return {'process': 'Unknown', 'score': 0.0, 'malware': 0, 'p_malware': 0.0, 'category': 'Unknown'} - * else: - */ - __pyx_t_6 = (__pyx_v_self->MALWARE_DB != 0); - if (__pyx_t_6) { - - /* "pmercury/protocols/tls.pyx":225 - * # if malware data is in the database, report malware scores - * if self.MALWARE_DB: - * return {'process': 'Unknown', 'score': 0.0, 'malware': 0, 'p_malware': 0.0, 'category': 'Unknown'} # <<<<<<<<<<<<<< - * else: - * return {'process': 'Unknown', 'score': 0.0, 'category': 'Unknown'} - */ - __Pyx_XDECREF(__pyx_r); - __pyx_t_1 = __Pyx_PyDict_NewPresized(5); if (unlikely(!__pyx_t_1)) __PYX_ERR(0, 225, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_1); - if (PyDict_SetItem(__pyx_t_1, __pyx_n_u_process, __pyx_n_u_Unknown) < 0) __PYX_ERR(0, 225, __pyx_L1_error) - if (PyDict_SetItem(__pyx_t_1, __pyx_n_u_score, __pyx_float_0_0) < 0) __PYX_ERR(0, 225, __pyx_L1_error) - if (PyDict_SetItem(__pyx_t_1, __pyx_n_u_malware, __pyx_int_0) < 0) __PYX_ERR(0, 225, __pyx_L1_error) - if (PyDict_SetItem(__pyx_t_1, __pyx_n_u_p_malware, __pyx_float_0_0) < 0) __PYX_ERR(0, 225, __pyx_L1_error) - if (PyDict_SetItem(__pyx_t_1, __pyx_n_u_category, __pyx_n_u_Unknown) < 0) __PYX_ERR(0, 225, __pyx_L1_error) - __pyx_r = __pyx_t_1; - __pyx_t_1 = 0; - goto __pyx_L0; - - /* "pmercury/protocols/tls.pyx":224 - * if fp_ == None: - * # if malware data is in the database, report malware scores - * if self.MALWARE_DB: # <<<<<<<<<<<<<< - * return {'process': 'Unknown', 'score': 0.0, 'malware': 0, 'p_malware': 0.0, 'category': 'Unknown'} - * else: - */ - } - - /* "pmercury/protocols/tls.pyx":227 - * return {'process': 'Unknown', 'score': 0.0, 'malware': 0, 'p_malware': 0.0, 'category': 'Unknown'} - * else: - * return {'process': 'Unknown', 'score': 0.0, 'category': 'Unknown'} # <<<<<<<<<<<<<< - * - * # find generalized classes for destination information - */ - /*else*/ { - __Pyx_XDECREF(__pyx_r); - __pyx_t_1 = __Pyx_PyDict_NewPresized(3); if (unlikely(!__pyx_t_1)) __PYX_ERR(0, 227, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_1); - if (PyDict_SetItem(__pyx_t_1, __pyx_n_u_process, __pyx_n_u_Unknown) < 0) __PYX_ERR(0, 227, __pyx_L1_error) - if (PyDict_SetItem(__pyx_t_1, __pyx_n_u_score, __pyx_float_0_0) < 0) __PYX_ERR(0, 227, __pyx_L1_error) - if (PyDict_SetItem(__pyx_t_1, __pyx_n_u_category, __pyx_n_u_Unknown) < 0) __PYX_ERR(0, 227, __pyx_L1_error) - __pyx_r = __pyx_t_1; - __pyx_t_1 = 0; - goto __pyx_L0; - } - - /* "pmercury/protocols/tls.pyx":222 - * def identify(self, fp_str_, server_name, dest_addr, dest_port, list_procs, endpoint=None): - * fp_ = self.get_database_entry(fp_str_, None) - * if fp_ == None: # <<<<<<<<<<<<<< - * # if malware data is in the database, report malware scores - * if self.MALWARE_DB: - */ - } - - /* "pmercury/protocols/tls.pyx":230 - * - * # find generalized classes for destination information - * domain, tld = get_tld_info(server_name) # <<<<<<<<<<<<<< - * asn = get_asn_info(dest_addr) - * port_app = get_port_application(dest_port) - */ - __Pyx_GetModuleGlobalName(__pyx_t_2, __pyx_n_s_get_tld_info); if (unlikely(!__pyx_t_2)) __PYX_ERR(0, 230, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_2); - __pyx_t_5 = NULL; - if (CYTHON_UNPACK_METHODS && unlikely(PyMethod_Check(__pyx_t_2))) { - __pyx_t_5 = PyMethod_GET_SELF(__pyx_t_2); - if (likely(__pyx_t_5)) { - PyObject* function = PyMethod_GET_FUNCTION(__pyx_t_2); - __Pyx_INCREF(__pyx_t_5); - __Pyx_INCREF(function); - __Pyx_DECREF_SET(__pyx_t_2, function); - } - } - __pyx_t_1 = (__pyx_t_5) ? __Pyx_PyObject_Call2Args(__pyx_t_2, __pyx_t_5, __pyx_v_server_name) : __Pyx_PyObject_CallOneArg(__pyx_t_2, __pyx_v_server_name); - __Pyx_XDECREF(__pyx_t_5); __pyx_t_5 = 0; - if (unlikely(!__pyx_t_1)) __PYX_ERR(0, 230, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_1); - __Pyx_DECREF(__pyx_t_2); __pyx_t_2 = 0; - if ((likely(PyTuple_CheckExact(__pyx_t_1))) || (PyList_CheckExact(__pyx_t_1))) { - PyObject* sequence = __pyx_t_1; - Py_ssize_t size = __Pyx_PySequence_SIZE(sequence); - if (unlikely(size != 2)) { - if (size > 2) __Pyx_RaiseTooManyValuesError(2); - else if (size >= 0) __Pyx_RaiseNeedMoreValuesError(size); - __PYX_ERR(0, 230, __pyx_L1_error) - } - #if CYTHON_ASSUME_SAFE_MACROS && !CYTHON_AVOID_BORROWED_REFS - if (likely(PyTuple_CheckExact(sequence))) { - __pyx_t_2 = PyTuple_GET_ITEM(sequence, 0); - __pyx_t_5 = PyTuple_GET_ITEM(sequence, 1); - } else { - __pyx_t_2 = PyList_GET_ITEM(sequence, 0); - __pyx_t_5 = PyList_GET_ITEM(sequence, 1); - } - __Pyx_INCREF(__pyx_t_2); - __Pyx_INCREF(__pyx_t_5); - #else - __pyx_t_2 = PySequence_ITEM(sequence, 0); if (unlikely(!__pyx_t_2)) __PYX_ERR(0, 230, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_2); - __pyx_t_5 = PySequence_ITEM(sequence, 1); if (unlikely(!__pyx_t_5)) __PYX_ERR(0, 230, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_5); - #endif - __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0; - } else { - Py_ssize_t index = -1; - __pyx_t_3 = PyObject_GetIter(__pyx_t_1); if (unlikely(!__pyx_t_3)) __PYX_ERR(0, 230, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_3); - __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0; - __pyx_t_7 = Py_TYPE(__pyx_t_3)->tp_iternext; - index = 0; __pyx_t_2 = __pyx_t_7(__pyx_t_3); if (unlikely(!__pyx_t_2)) goto __pyx_L5_unpacking_failed; - __Pyx_GOTREF(__pyx_t_2); - index = 1; __pyx_t_5 = __pyx_t_7(__pyx_t_3); if (unlikely(!__pyx_t_5)) goto __pyx_L5_unpacking_failed; - __Pyx_GOTREF(__pyx_t_5); - if (__Pyx_IternextUnpackEndCheck(__pyx_t_7(__pyx_t_3), 2) < 0) __PYX_ERR(0, 230, __pyx_L1_error) - __pyx_t_7 = NULL; - __Pyx_DECREF(__pyx_t_3); __pyx_t_3 = 0; - goto __pyx_L6_unpacking_done; - __pyx_L5_unpacking_failed:; - __Pyx_DECREF(__pyx_t_3); __pyx_t_3 = 0; - __pyx_t_7 = NULL; - if (__Pyx_IterFinish() == 0) __Pyx_RaiseNeedMoreValuesError(index); - __PYX_ERR(0, 230, __pyx_L1_error) - __pyx_L6_unpacking_done:; - } - __pyx_v_domain = __pyx_t_2; - __pyx_t_2 = 0; - __pyx_v_tld = __pyx_t_5; - __pyx_t_5 = 0; - - /* "pmercury/protocols/tls.pyx":231 - * # find generalized classes for destination information - * domain, tld = get_tld_info(server_name) - * asn = get_asn_info(dest_addr) # <<<<<<<<<<<<<< - * port_app = get_port_application(dest_port) - * features = [asn, domain, port_app, dest_addr, str(server_name), dest_port] - */ - __Pyx_GetModuleGlobalName(__pyx_t_5, __pyx_n_s_get_asn_info); if (unlikely(!__pyx_t_5)) __PYX_ERR(0, 231, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_5); - __pyx_t_2 = NULL; - if (CYTHON_UNPACK_METHODS && unlikely(PyMethod_Check(__pyx_t_5))) { - __pyx_t_2 = PyMethod_GET_SELF(__pyx_t_5); - if (likely(__pyx_t_2)) { - PyObject* function = PyMethod_GET_FUNCTION(__pyx_t_5); - __Pyx_INCREF(__pyx_t_2); - __Pyx_INCREF(function); - __Pyx_DECREF_SET(__pyx_t_5, function); - } - } - __pyx_t_1 = (__pyx_t_2) ? __Pyx_PyObject_Call2Args(__pyx_t_5, __pyx_t_2, __pyx_v_dest_addr) : __Pyx_PyObject_CallOneArg(__pyx_t_5, __pyx_v_dest_addr); - __Pyx_XDECREF(__pyx_t_2); __pyx_t_2 = 0; - if (unlikely(!__pyx_t_1)) __PYX_ERR(0, 231, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_1); - __Pyx_DECREF(__pyx_t_5); __pyx_t_5 = 0; - __pyx_v_asn = __pyx_t_1; - __pyx_t_1 = 0; - - /* "pmercury/protocols/tls.pyx":232 - * domain, tld = get_tld_info(server_name) - * asn = get_asn_info(dest_addr) - * port_app = get_port_application(dest_port) # <<<<<<<<<<<<<< - * features = [asn, domain, port_app, dest_addr, str(server_name), dest_port] - * - */ - __Pyx_GetModuleGlobalName(__pyx_t_5, __pyx_n_s_get_port_application); if (unlikely(!__pyx_t_5)) __PYX_ERR(0, 232, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_5); - __pyx_t_2 = NULL; - if (CYTHON_UNPACK_METHODS && unlikely(PyMethod_Check(__pyx_t_5))) { - __pyx_t_2 = PyMethod_GET_SELF(__pyx_t_5); - if (likely(__pyx_t_2)) { - PyObject* function = PyMethod_GET_FUNCTION(__pyx_t_5); - __Pyx_INCREF(__pyx_t_2); - __Pyx_INCREF(function); - __Pyx_DECREF_SET(__pyx_t_5, function); - } - } - __pyx_t_1 = (__pyx_t_2) ? __Pyx_PyObject_Call2Args(__pyx_t_5, __pyx_t_2, __pyx_v_dest_port) : __Pyx_PyObject_CallOneArg(__pyx_t_5, __pyx_v_dest_port); - __Pyx_XDECREF(__pyx_t_2); __pyx_t_2 = 0; - if (unlikely(!__pyx_t_1)) __PYX_ERR(0, 232, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_1); - __Pyx_DECREF(__pyx_t_5); __pyx_t_5 = 0; - __pyx_v_port_app = __pyx_t_1; - __pyx_t_1 = 0; - - /* "pmercury/protocols/tls.pyx":233 - * asn = get_asn_info(dest_addr) - * port_app = get_port_application(dest_port) - * features = [asn, domain, port_app, dest_addr, str(server_name), dest_port] # <<<<<<<<<<<<<< - * - * # compute and sort scores for each process in the fingerprint - */ - __pyx_t_1 = __Pyx_PyObject_CallOneArg(((PyObject *)(&PyUnicode_Type)), __pyx_v_server_name); if (unlikely(!__pyx_t_1)) __PYX_ERR(0, 233, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_1); - __pyx_t_5 = PyList_New(6); if (unlikely(!__pyx_t_5)) __PYX_ERR(0, 233, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_5); - __Pyx_INCREF(__pyx_v_asn); - __Pyx_GIVEREF(__pyx_v_asn); - PyList_SET_ITEM(__pyx_t_5, 0, __pyx_v_asn); - __Pyx_INCREF(__pyx_v_domain); - __Pyx_GIVEREF(__pyx_v_domain); - PyList_SET_ITEM(__pyx_t_5, 1, __pyx_v_domain); - __Pyx_INCREF(__pyx_v_port_app); - __Pyx_GIVEREF(__pyx_v_port_app); - PyList_SET_ITEM(__pyx_t_5, 2, __pyx_v_port_app); - __Pyx_INCREF(__pyx_v_dest_addr); - __Pyx_GIVEREF(__pyx_v_dest_addr); - PyList_SET_ITEM(__pyx_t_5, 3, __pyx_v_dest_addr); - __Pyx_GIVEREF(__pyx_t_1); - PyList_SET_ITEM(__pyx_t_5, 4, __pyx_t_1); - __Pyx_INCREF(__pyx_v_dest_port); - __Pyx_GIVEREF(__pyx_v_dest_port); - PyList_SET_ITEM(__pyx_t_5, 5, __pyx_v_dest_port); - __pyx_t_1 = 0; - __pyx_v_features = ((PyObject*)__pyx_t_5); - __pyx_t_5 = 0; - - /* "pmercury/protocols/tls.pyx":236 - * - * # compute and sort scores for each process in the fingerprint - * fp_tc = fp_['total_count'] # <<<<<<<<<<<<<< - * r_ = [self.compute_score(features, p_, fp_tc, endpoint) for p_ in fp_['process_info']] - * r_ = sorted(r_, key=operator.itemgetter('score'), reverse=True) - */ - __pyx_t_5 = __Pyx_PyObject_Dict_GetItem(__pyx_v_fp_, __pyx_n_u_total_count); if (unlikely(!__pyx_t_5)) __PYX_ERR(0, 236, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_5); - __pyx_v_fp_tc = __pyx_t_5; - __pyx_t_5 = 0; - - /* "pmercury/protocols/tls.pyx":237 - * # compute and sort scores for each process in the fingerprint - * fp_tc = fp_['total_count'] - * r_ = [self.compute_score(features, p_, fp_tc, endpoint) for p_ in fp_['process_info']] # <<<<<<<<<<<<<< - * r_ = sorted(r_, key=operator.itemgetter('score'), reverse=True) - * - */ - { /* enter inner scope */ - __pyx_t_5 = PyList_New(0); if (unlikely(!__pyx_t_5)) __PYX_ERR(0, 237, __pyx_L9_error) - __Pyx_GOTREF(__pyx_t_5); - __pyx_t_1 = __Pyx_PyObject_Dict_GetItem(__pyx_v_fp_, __pyx_n_u_process_info); if (unlikely(!__pyx_t_1)) __PYX_ERR(0, 237, __pyx_L9_error) - __Pyx_GOTREF(__pyx_t_1); - if (likely(PyList_CheckExact(__pyx_t_1)) || PyTuple_CheckExact(__pyx_t_1)) { - __pyx_t_2 = __pyx_t_1; __Pyx_INCREF(__pyx_t_2); __pyx_t_8 = 0; - __pyx_t_9 = NULL; - } else { - __pyx_t_8 = -1; __pyx_t_2 = PyObject_GetIter(__pyx_t_1); if (unlikely(!__pyx_t_2)) __PYX_ERR(0, 237, __pyx_L9_error) - __Pyx_GOTREF(__pyx_t_2); - __pyx_t_9 = Py_TYPE(__pyx_t_2)->tp_iternext; if (unlikely(!__pyx_t_9)) __PYX_ERR(0, 237, __pyx_L9_error) - } - __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0; - for (;;) { - if (likely(!__pyx_t_9)) { - if (likely(PyList_CheckExact(__pyx_t_2))) { - if (__pyx_t_8 >= PyList_GET_SIZE(__pyx_t_2)) break; - #if CYTHON_ASSUME_SAFE_MACROS && !CYTHON_AVOID_BORROWED_REFS - __pyx_t_1 = PyList_GET_ITEM(__pyx_t_2, __pyx_t_8); __Pyx_INCREF(__pyx_t_1); __pyx_t_8++; if (unlikely(0 < 0)) __PYX_ERR(0, 237, __pyx_L9_error) - #else - __pyx_t_1 = PySequence_ITEM(__pyx_t_2, __pyx_t_8); __pyx_t_8++; if (unlikely(!__pyx_t_1)) __PYX_ERR(0, 237, __pyx_L9_error) - __Pyx_GOTREF(__pyx_t_1); - #endif - } else { - if (__pyx_t_8 >= PyTuple_GET_SIZE(__pyx_t_2)) break; - #if CYTHON_ASSUME_SAFE_MACROS && !CYTHON_AVOID_BORROWED_REFS - __pyx_t_1 = PyTuple_GET_ITEM(__pyx_t_2, __pyx_t_8); __Pyx_INCREF(__pyx_t_1); __pyx_t_8++; if (unlikely(0 < 0)) __PYX_ERR(0, 237, __pyx_L9_error) - #else - __pyx_t_1 = PySequence_ITEM(__pyx_t_2, __pyx_t_8); __pyx_t_8++; if (unlikely(!__pyx_t_1)) __PYX_ERR(0, 237, __pyx_L9_error) - __Pyx_GOTREF(__pyx_t_1); - #endif - } - } else { - __pyx_t_1 = __pyx_t_9(__pyx_t_2); - if (unlikely(!__pyx_t_1)) { - PyObject* exc_type = PyErr_Occurred(); - if (exc_type) { - if (likely(__Pyx_PyErr_GivenExceptionMatches(exc_type, PyExc_StopIteration))) PyErr_Clear(); - else __PYX_ERR(0, 237, __pyx_L9_error) - } - break; - } - __Pyx_GOTREF(__pyx_t_1); - } - __Pyx_XDECREF_SET(__pyx_7genexpr__pyx_v_p_, __pyx_t_1); - __pyx_t_1 = 0; - __pyx_t_3 = __Pyx_PyObject_GetAttrStr(((PyObject *)__pyx_v_self), __pyx_n_s_compute_score); if (unlikely(!__pyx_t_3)) __PYX_ERR(0, 237, __pyx_L9_error) - __Pyx_GOTREF(__pyx_t_3); - __pyx_t_10 = NULL; - __pyx_t_4 = 0; - if (CYTHON_UNPACK_METHODS && likely(PyMethod_Check(__pyx_t_3))) { - __pyx_t_10 = PyMethod_GET_SELF(__pyx_t_3); - if (likely(__pyx_t_10)) { - PyObject* function = PyMethod_GET_FUNCTION(__pyx_t_3); - __Pyx_INCREF(__pyx_t_10); - __Pyx_INCREF(function); - __Pyx_DECREF_SET(__pyx_t_3, function); - __pyx_t_4 = 1; - } - } - #if CYTHON_FAST_PYCALL - if (PyFunction_Check(__pyx_t_3)) { - PyObject *__pyx_temp[5] = {__pyx_t_10, __pyx_v_features, __pyx_7genexpr__pyx_v_p_, __pyx_v_fp_tc, __pyx_v_endpoint}; - __pyx_t_1 = __Pyx_PyFunction_FastCall(__pyx_t_3, __pyx_temp+1-__pyx_t_4, 4+__pyx_t_4); if (unlikely(!__pyx_t_1)) __PYX_ERR(0, 237, __pyx_L9_error) - __Pyx_XDECREF(__pyx_t_10); __pyx_t_10 = 0; - __Pyx_GOTREF(__pyx_t_1); - } else - #endif - #if CYTHON_FAST_PYCCALL - if (__Pyx_PyFastCFunction_Check(__pyx_t_3)) { - PyObject *__pyx_temp[5] = {__pyx_t_10, __pyx_v_features, __pyx_7genexpr__pyx_v_p_, __pyx_v_fp_tc, __pyx_v_endpoint}; - __pyx_t_1 = __Pyx_PyCFunction_FastCall(__pyx_t_3, __pyx_temp+1-__pyx_t_4, 4+__pyx_t_4); if (unlikely(!__pyx_t_1)) __PYX_ERR(0, 237, __pyx_L9_error) - __Pyx_XDECREF(__pyx_t_10); __pyx_t_10 = 0; - __Pyx_GOTREF(__pyx_t_1); - } else - #endif - { - __pyx_t_11 = PyTuple_New(4+__pyx_t_4); if (unlikely(!__pyx_t_11)) __PYX_ERR(0, 237, __pyx_L9_error) - __Pyx_GOTREF(__pyx_t_11); - if (__pyx_t_10) { - __Pyx_GIVEREF(__pyx_t_10); PyTuple_SET_ITEM(__pyx_t_11, 0, __pyx_t_10); __pyx_t_10 = NULL; - } - __Pyx_INCREF(__pyx_v_features); - __Pyx_GIVEREF(__pyx_v_features); - PyTuple_SET_ITEM(__pyx_t_11, 0+__pyx_t_4, __pyx_v_features); - __Pyx_INCREF(__pyx_7genexpr__pyx_v_p_); - __Pyx_GIVEREF(__pyx_7genexpr__pyx_v_p_); - PyTuple_SET_ITEM(__pyx_t_11, 1+__pyx_t_4, __pyx_7genexpr__pyx_v_p_); - __Pyx_INCREF(__pyx_v_fp_tc); - __Pyx_GIVEREF(__pyx_v_fp_tc); - PyTuple_SET_ITEM(__pyx_t_11, 2+__pyx_t_4, __pyx_v_fp_tc); - __Pyx_INCREF(__pyx_v_endpoint); - __Pyx_GIVEREF(__pyx_v_endpoint); - PyTuple_SET_ITEM(__pyx_t_11, 3+__pyx_t_4, __pyx_v_endpoint); - __pyx_t_1 = __Pyx_PyObject_Call(__pyx_t_3, __pyx_t_11, NULL); if (unlikely(!__pyx_t_1)) __PYX_ERR(0, 237, __pyx_L9_error) - __Pyx_GOTREF(__pyx_t_1); - __Pyx_DECREF(__pyx_t_11); __pyx_t_11 = 0; - } - __Pyx_DECREF(__pyx_t_3); __pyx_t_3 = 0; - if (unlikely(__Pyx_ListComp_Append(__pyx_t_5, (PyObject*)__pyx_t_1))) __PYX_ERR(0, 237, __pyx_L9_error) - __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0; - } - __Pyx_DECREF(__pyx_t_2); __pyx_t_2 = 0; - __Pyx_XDECREF(__pyx_7genexpr__pyx_v_p_); __pyx_7genexpr__pyx_v_p_ = 0; - goto __pyx_L12_exit_scope; - __pyx_L9_error:; - __Pyx_XDECREF(__pyx_7genexpr__pyx_v_p_); __pyx_7genexpr__pyx_v_p_ = 0; - goto __pyx_L1_error; - __pyx_L12_exit_scope:; - } /* exit inner scope */ - __pyx_v_r_ = __pyx_t_5; - __pyx_t_5 = 0; - - /* "pmercury/protocols/tls.pyx":238 - * fp_tc = fp_['total_count'] - * r_ = [self.compute_score(features, p_, fp_tc, endpoint) for p_ in fp_['process_info']] - * r_ = sorted(r_, key=operator.itemgetter('score'), reverse=True) # <<<<<<<<<<<<<< - * - * # if score == 0 or no match could be found, return default process - */ - __pyx_t_5 = PyTuple_New(1); if (unlikely(!__pyx_t_5)) __PYX_ERR(0, 238, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_5); - __Pyx_INCREF(__pyx_v_r_); - __Pyx_GIVEREF(__pyx_v_r_); - PyTuple_SET_ITEM(__pyx_t_5, 0, __pyx_v_r_); - __pyx_t_2 = __Pyx_PyDict_NewPresized(2); if (unlikely(!__pyx_t_2)) __PYX_ERR(0, 238, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_2); - __Pyx_GetModuleGlobalName(__pyx_t_3, __pyx_n_s_operator); if (unlikely(!__pyx_t_3)) __PYX_ERR(0, 238, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_3); - __pyx_t_11 = __Pyx_PyObject_GetAttrStr(__pyx_t_3, __pyx_n_s_itemgetter); if (unlikely(!__pyx_t_11)) __PYX_ERR(0, 238, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_11); - __Pyx_DECREF(__pyx_t_3); __pyx_t_3 = 0; - __pyx_t_3 = NULL; - if (CYTHON_UNPACK_METHODS && unlikely(PyMethod_Check(__pyx_t_11))) { - __pyx_t_3 = PyMethod_GET_SELF(__pyx_t_11); - if (likely(__pyx_t_3)) { - PyObject* function = PyMethod_GET_FUNCTION(__pyx_t_11); - __Pyx_INCREF(__pyx_t_3); - __Pyx_INCREF(function); - __Pyx_DECREF_SET(__pyx_t_11, function); - } - } - __pyx_t_1 = (__pyx_t_3) ? __Pyx_PyObject_Call2Args(__pyx_t_11, __pyx_t_3, __pyx_n_u_score) : __Pyx_PyObject_CallOneArg(__pyx_t_11, __pyx_n_u_score); - __Pyx_XDECREF(__pyx_t_3); __pyx_t_3 = 0; - if (unlikely(!__pyx_t_1)) __PYX_ERR(0, 238, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_1); - __Pyx_DECREF(__pyx_t_11); __pyx_t_11 = 0; - if (PyDict_SetItem(__pyx_t_2, __pyx_n_s_key, __pyx_t_1) < 0) __PYX_ERR(0, 238, __pyx_L1_error) - __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0; - if (PyDict_SetItem(__pyx_t_2, __pyx_n_s_reverse, Py_True) < 0) __PYX_ERR(0, 238, __pyx_L1_error) - __pyx_t_1 = __Pyx_PyObject_Call(__pyx_builtin_sorted, __pyx_t_5, __pyx_t_2); if (unlikely(!__pyx_t_1)) __PYX_ERR(0, 238, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_1); - __Pyx_DECREF(__pyx_t_5); __pyx_t_5 = 0; - __Pyx_DECREF(__pyx_t_2); __pyx_t_2 = 0; - __Pyx_DECREF_SET(__pyx_v_r_, __pyx_t_1); - __pyx_t_1 = 0; - - /* "pmercury/protocols/tls.pyx":241 - * - * # if score == 0 or no match could be found, return default process - * if len(r_) == 0 or r_[0]['score'] == 0.0: # <<<<<<<<<<<<<< - * predict_ = fp_['process_info'][0]['process'] - * predict_ = self.app_families[predict_] if predict_ in self.app_families else predict_ - */ - __pyx_t_8 = PyObject_Length(__pyx_v_r_); if (unlikely(__pyx_t_8 == ((Py_ssize_t)-1))) __PYX_ERR(0, 241, __pyx_L1_error) - __pyx_t_12 = ((__pyx_t_8 == 0) != 0); - if (!__pyx_t_12) { - } else { - __pyx_t_6 = __pyx_t_12; - goto __pyx_L14_bool_binop_done; - } - __pyx_t_1 = __Pyx_GetItemInt(__pyx_v_r_, 0, long, 1, __Pyx_PyInt_From_long, 0, 0, 1); if (unlikely(!__pyx_t_1)) __PYX_ERR(0, 241, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_1); - __pyx_t_2 = __Pyx_PyObject_Dict_GetItem(__pyx_t_1, __pyx_n_u_score); if (unlikely(!__pyx_t_2)) __PYX_ERR(0, 241, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_2); - __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0; - __pyx_t_1 = __Pyx_PyFloat_EqObjC(__pyx_t_2, __pyx_float_0_0, 0.0, 0, 0); if (unlikely(!__pyx_t_1)) __PYX_ERR(0, 241, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_1); - __Pyx_DECREF(__pyx_t_2); __pyx_t_2 = 0; - __pyx_t_12 = __Pyx_PyObject_IsTrue(__pyx_t_1); if (unlikely(__pyx_t_12 < 0)) __PYX_ERR(0, 241, __pyx_L1_error) - __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0; - __pyx_t_6 = __pyx_t_12; - __pyx_L14_bool_binop_done:; - if (__pyx_t_6) { - - /* "pmercury/protocols/tls.pyx":242 - * # if score == 0 or no match could be found, return default process - * if len(r_) == 0 or r_[0]['score'] == 0.0: - * predict_ = fp_['process_info'][0]['process'] # <<<<<<<<<<<<<< - * predict_ = self.app_families[predict_] if predict_ in self.app_families else predict_ - * if self.MALWARE_DB: - */ - __pyx_t_1 = __Pyx_PyObject_Dict_GetItem(__pyx_v_fp_, __pyx_n_u_process_info); if (unlikely(!__pyx_t_1)) __PYX_ERR(0, 242, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_1); - __pyx_t_2 = __Pyx_GetItemInt(__pyx_t_1, 0, long, 1, __Pyx_PyInt_From_long, 0, 0, 1); if (unlikely(!__pyx_t_2)) __PYX_ERR(0, 242, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_2); - __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0; - __pyx_t_1 = __Pyx_PyObject_Dict_GetItem(__pyx_t_2, __pyx_n_u_process); if (unlikely(!__pyx_t_1)) __PYX_ERR(0, 242, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_1); - __Pyx_DECREF(__pyx_t_2); __pyx_t_2 = 0; - __pyx_v_predict_ = __pyx_t_1; - __pyx_t_1 = 0; - - /* "pmercury/protocols/tls.pyx":243 - * if len(r_) == 0 or r_[0]['score'] == 0.0: - * predict_ = fp_['process_info'][0]['process'] - * predict_ = self.app_families[predict_] if predict_ in self.app_families else predict_ # <<<<<<<<<<<<<< - * if self.MALWARE_DB: - * return {'process':predict_, 'score': 0.0, 'malware': int(fp_['process_info'][0]['malware']), - */ - if (unlikely(__pyx_v_self->app_families == Py_None)) { - PyErr_SetString(PyExc_TypeError, "'NoneType' object is not iterable"); - __PYX_ERR(0, 243, __pyx_L1_error) - } - __pyx_t_6 = (__Pyx_PyDict_ContainsTF(__pyx_v_predict_, __pyx_v_self->app_families, Py_EQ)); if (unlikely(__pyx_t_6 < 0)) __PYX_ERR(0, 243, __pyx_L1_error) - if ((__pyx_t_6 != 0)) { - if (unlikely(__pyx_v_self->app_families == Py_None)) { - PyErr_SetString(PyExc_TypeError, "'NoneType' object is not subscriptable"); - __PYX_ERR(0, 243, __pyx_L1_error) - } - __pyx_t_2 = __Pyx_PyDict_GetItem(__pyx_v_self->app_families, __pyx_v_predict_); if (unlikely(!__pyx_t_2)) __PYX_ERR(0, 243, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_2); - __pyx_t_1 = __pyx_t_2; - __pyx_t_2 = 0; - } else { - __Pyx_INCREF(__pyx_v_predict_); - __pyx_t_1 = __pyx_v_predict_; - } - __Pyx_DECREF_SET(__pyx_v_predict_, __pyx_t_1); - __pyx_t_1 = 0; - - /* "pmercury/protocols/tls.pyx":244 - * predict_ = fp_['process_info'][0]['process'] - * predict_ = self.app_families[predict_] if predict_ in self.app_families else predict_ - * if self.MALWARE_DB: # <<<<<<<<<<<<<< - * return {'process':predict_, 'score': 0.0, 'malware': int(fp_['process_info'][0]['malware']), - * 'p_malware': 0.0, 'category': 'Unknown'} - */ - __pyx_t_6 = (__pyx_v_self->MALWARE_DB != 0); - if (__pyx_t_6) { - - /* "pmercury/protocols/tls.pyx":245 - * predict_ = self.app_families[predict_] if predict_ in self.app_families else predict_ - * if self.MALWARE_DB: - * return {'process':predict_, 'score': 0.0, 'malware': int(fp_['process_info'][0]['malware']), # <<<<<<<<<<<<<< - * 'p_malware': 0.0, 'category': 'Unknown'} - * else: - */ - __Pyx_XDECREF(__pyx_r); - __pyx_t_1 = __Pyx_PyDict_NewPresized(5); if (unlikely(!__pyx_t_1)) __PYX_ERR(0, 245, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_1); - if (PyDict_SetItem(__pyx_t_1, __pyx_n_u_process, __pyx_v_predict_) < 0) __PYX_ERR(0, 245, __pyx_L1_error) - if (PyDict_SetItem(__pyx_t_1, __pyx_n_u_score, __pyx_float_0_0) < 0) __PYX_ERR(0, 245, __pyx_L1_error) - __pyx_t_2 = __Pyx_PyObject_Dict_GetItem(__pyx_v_fp_, __pyx_n_u_process_info); if (unlikely(!__pyx_t_2)) __PYX_ERR(0, 245, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_2); - __pyx_t_5 = __Pyx_GetItemInt(__pyx_t_2, 0, long, 1, __Pyx_PyInt_From_long, 0, 0, 1); if (unlikely(!__pyx_t_5)) __PYX_ERR(0, 245, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_5); - __Pyx_DECREF(__pyx_t_2); __pyx_t_2 = 0; - __pyx_t_2 = __Pyx_PyObject_Dict_GetItem(__pyx_t_5, __pyx_n_u_malware); if (unlikely(!__pyx_t_2)) __PYX_ERR(0, 245, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_2); - __Pyx_DECREF(__pyx_t_5); __pyx_t_5 = 0; - __pyx_t_5 = __Pyx_PyNumber_Int(__pyx_t_2); if (unlikely(!__pyx_t_5)) __PYX_ERR(0, 245, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_5); - __Pyx_DECREF(__pyx_t_2); __pyx_t_2 = 0; - if (PyDict_SetItem(__pyx_t_1, __pyx_n_u_malware, __pyx_t_5) < 0) __PYX_ERR(0, 245, __pyx_L1_error) - __Pyx_DECREF(__pyx_t_5); __pyx_t_5 = 0; - if (PyDict_SetItem(__pyx_t_1, __pyx_n_u_p_malware, __pyx_float_0_0) < 0) __PYX_ERR(0, 245, __pyx_L1_error) - if (PyDict_SetItem(__pyx_t_1, __pyx_n_u_category, __pyx_n_u_Unknown) < 0) __PYX_ERR(0, 245, __pyx_L1_error) - __pyx_r = __pyx_t_1; - __pyx_t_1 = 0; - goto __pyx_L0; - - /* "pmercury/protocols/tls.pyx":244 - * predict_ = fp_['process_info'][0]['process'] - * predict_ = self.app_families[predict_] if predict_ in self.app_families else predict_ - * if self.MALWARE_DB: # <<<<<<<<<<<<<< - * return {'process':predict_, 'score': 0.0, 'malware': int(fp_['process_info'][0]['malware']), - * 'p_malware': 0.0, 'category': 'Unknown'} - */ - } - - /* "pmercury/protocols/tls.pyx":248 - * 'p_malware': 0.0, 'category': 'Unknown'} - * else: - * return {'process':predict_, 'score':0.0, 'category': 'Unknown'} # <<<<<<<<<<<<<< - * - * # in the case of malware, remove pseudo process meant to reduce false positives - */ - /*else*/ { - __Pyx_XDECREF(__pyx_r); - __pyx_t_1 = __Pyx_PyDict_NewPresized(3); if (unlikely(!__pyx_t_1)) __PYX_ERR(0, 248, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_1); - if (PyDict_SetItem(__pyx_t_1, __pyx_n_u_process, __pyx_v_predict_) < 0) __PYX_ERR(0, 248, __pyx_L1_error) - if (PyDict_SetItem(__pyx_t_1, __pyx_n_u_score, __pyx_float_0_0) < 0) __PYX_ERR(0, 248, __pyx_L1_error) - if (PyDict_SetItem(__pyx_t_1, __pyx_n_u_category, __pyx_n_u_Unknown) < 0) __PYX_ERR(0, 248, __pyx_L1_error) - __pyx_r = __pyx_t_1; - __pyx_t_1 = 0; - goto __pyx_L0; - } - - /* "pmercury/protocols/tls.pyx":241 - * - * # if score == 0 or no match could be found, return default process - * if len(r_) == 0 or r_[0]['score'] == 0.0: # <<<<<<<<<<<<<< - * predict_ = fp_['process_info'][0]['process'] - * predict_ = self.app_families[predict_] if predict_ in self.app_families else predict_ - */ - } - - /* "pmercury/protocols/tls.pyx":251 - * - * # in the case of malware, remove pseudo process meant to reduce false positives - * if self.MALWARE_DB and r_[0]['malware'] == False and \ # <<<<<<<<<<<<<< - * r_[0]['process'] == 'Generic DMZ Traffic' and len(r_) > 1 and r_[1]['malware'] == False: - * r_.pop(0) - */ - __pyx_t_12 = (__pyx_v_self->MALWARE_DB != 0); - if (__pyx_t_12) { - } else { - __pyx_t_6 = __pyx_t_12; - goto __pyx_L18_bool_binop_done; - } - __pyx_t_1 = __Pyx_GetItemInt(__pyx_v_r_, 0, long, 1, __Pyx_PyInt_From_long, 0, 0, 1); if (unlikely(!__pyx_t_1)) __PYX_ERR(0, 251, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_1); - __pyx_t_5 = __Pyx_PyObject_Dict_GetItem(__pyx_t_1, __pyx_n_u_malware); if (unlikely(!__pyx_t_5)) __PYX_ERR(0, 251, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_5); - __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0; - __pyx_t_1 = PyObject_RichCompare(__pyx_t_5, Py_False, Py_EQ); __Pyx_XGOTREF(__pyx_t_1); if (unlikely(!__pyx_t_1)) __PYX_ERR(0, 251, __pyx_L1_error) - __Pyx_DECREF(__pyx_t_5); __pyx_t_5 = 0; - __pyx_t_12 = __Pyx_PyObject_IsTrue(__pyx_t_1); if (unlikely(__pyx_t_12 < 0)) __PYX_ERR(0, 251, __pyx_L1_error) - __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0; - if (__pyx_t_12) { - } else { - __pyx_t_6 = __pyx_t_12; - goto __pyx_L18_bool_binop_done; - } - - /* "pmercury/protocols/tls.pyx":252 - * # in the case of malware, remove pseudo process meant to reduce false positives - * if self.MALWARE_DB and r_[0]['malware'] == False and \ - * r_[0]['process'] == 'Generic DMZ Traffic' and len(r_) > 1 and r_[1]['malware'] == False: # <<<<<<<<<<<<<< - * r_.pop(0) - * - */ - __pyx_t_1 = __Pyx_GetItemInt(__pyx_v_r_, 0, long, 1, __Pyx_PyInt_From_long, 0, 0, 1); if (unlikely(!__pyx_t_1)) __PYX_ERR(0, 252, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_1); - __pyx_t_5 = __Pyx_PyObject_Dict_GetItem(__pyx_t_1, __pyx_n_u_process); if (unlikely(!__pyx_t_5)) __PYX_ERR(0, 252, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_5); - __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0; - __pyx_t_12 = (__Pyx_PyUnicode_Equals(__pyx_t_5, __pyx_kp_u_Generic_DMZ_Traffic, Py_EQ)); if (unlikely(__pyx_t_12 < 0)) __PYX_ERR(0, 252, __pyx_L1_error) - __Pyx_DECREF(__pyx_t_5); __pyx_t_5 = 0; - if (__pyx_t_12) { - } else { - __pyx_t_6 = __pyx_t_12; - goto __pyx_L18_bool_binop_done; - } - __pyx_t_8 = PyObject_Length(__pyx_v_r_); if (unlikely(__pyx_t_8 == ((Py_ssize_t)-1))) __PYX_ERR(0, 252, __pyx_L1_error) - __pyx_t_12 = ((__pyx_t_8 > 1) != 0); - if (__pyx_t_12) { - } else { - __pyx_t_6 = __pyx_t_12; - goto __pyx_L18_bool_binop_done; - } - __pyx_t_5 = __Pyx_GetItemInt(__pyx_v_r_, 1, long, 1, __Pyx_PyInt_From_long, 0, 0, 1); if (unlikely(!__pyx_t_5)) __PYX_ERR(0, 252, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_5); - __pyx_t_1 = __Pyx_PyObject_Dict_GetItem(__pyx_t_5, __pyx_n_u_malware); if (unlikely(!__pyx_t_1)) __PYX_ERR(0, 252, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_1); - __Pyx_DECREF(__pyx_t_5); __pyx_t_5 = 0; - __pyx_t_5 = PyObject_RichCompare(__pyx_t_1, Py_False, Py_EQ); __Pyx_XGOTREF(__pyx_t_5); if (unlikely(!__pyx_t_5)) __PYX_ERR(0, 252, __pyx_L1_error) - __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0; - __pyx_t_12 = __Pyx_PyObject_IsTrue(__pyx_t_5); if (unlikely(__pyx_t_12 < 0)) __PYX_ERR(0, 252, __pyx_L1_error) - __Pyx_DECREF(__pyx_t_5); __pyx_t_5 = 0; - __pyx_t_6 = __pyx_t_12; - __pyx_L18_bool_binop_done:; - - /* "pmercury/protocols/tls.pyx":251 - * - * # in the case of malware, remove pseudo process meant to reduce false positives - * if self.MALWARE_DB and r_[0]['malware'] == False and \ # <<<<<<<<<<<<<< - * r_[0]['process'] == 'Generic DMZ Traffic' and len(r_) > 1 and r_[1]['malware'] == False: - * r_.pop(0) - */ - if (__pyx_t_6) { - - /* "pmercury/protocols/tls.pyx":253 - * if self.MALWARE_DB and r_[0]['malware'] == False and \ - * r_[0]['process'] == 'Generic DMZ Traffic' and len(r_) > 1 and r_[1]['malware'] == False: - * r_.pop(0) # <<<<<<<<<<<<<< - * - * # get generalized process name if available - */ - __pyx_t_5 = __Pyx_PyObject_PopIndex(__pyx_v_r_, __pyx_int_0, 0, 1, Py_ssize_t, PyInt_FromSsize_t); if (unlikely(!__pyx_t_5)) __PYX_ERR(0, 253, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_5); - __Pyx_DECREF(__pyx_t_5); __pyx_t_5 = 0; - - /* "pmercury/protocols/tls.pyx":251 - * - * # in the case of malware, remove pseudo process meant to reduce false positives - * if self.MALWARE_DB and r_[0]['malware'] == False and \ # <<<<<<<<<<<<<< - * r_[0]['process'] == 'Generic DMZ Traffic' and len(r_) > 1 and r_[1]['malware'] == False: - * r_.pop(0) - */ - } - - /* "pmercury/protocols/tls.pyx":256 - * - * # get generalized process name if available - * process_name = r_[0]['process'] # <<<<<<<<<<<<<< - * process_name = self.app_families[process_name] if process_name in self.app_families else process_name - * - */ - __pyx_t_5 = __Pyx_GetItemInt(__pyx_v_r_, 0, long, 1, __Pyx_PyInt_From_long, 0, 0, 1); if (unlikely(!__pyx_t_5)) __PYX_ERR(0, 256, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_5); - __pyx_t_1 = __Pyx_PyObject_Dict_GetItem(__pyx_t_5, __pyx_n_u_process); if (unlikely(!__pyx_t_1)) __PYX_ERR(0, 256, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_1); - __Pyx_DECREF(__pyx_t_5); __pyx_t_5 = 0; - __pyx_v_process_name = __pyx_t_1; - __pyx_t_1 = 0; - - /* "pmercury/protocols/tls.pyx":257 - * # get generalized process name if available - * process_name = r_[0]['process'] - * process_name = self.app_families[process_name] if process_name in self.app_families else process_name # <<<<<<<<<<<<<< - * - * # package the most probable process - */ - if (unlikely(__pyx_v_self->app_families == Py_None)) { - PyErr_SetString(PyExc_TypeError, "'NoneType' object is not iterable"); - __PYX_ERR(0, 257, __pyx_L1_error) - } - __pyx_t_6 = (__Pyx_PyDict_ContainsTF(__pyx_v_process_name, __pyx_v_self->app_families, Py_EQ)); if (unlikely(__pyx_t_6 < 0)) __PYX_ERR(0, 257, __pyx_L1_error) - if ((__pyx_t_6 != 0)) { - if (unlikely(__pyx_v_self->app_families == Py_None)) { - PyErr_SetString(PyExc_TypeError, "'NoneType' object is not subscriptable"); - __PYX_ERR(0, 257, __pyx_L1_error) - } - __pyx_t_5 = __Pyx_PyDict_GetItem(__pyx_v_self->app_families, __pyx_v_process_name); if (unlikely(!__pyx_t_5)) __PYX_ERR(0, 257, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_5); - __pyx_t_1 = __pyx_t_5; - __pyx_t_5 = 0; - } else { - __Pyx_INCREF(__pyx_v_process_name); - __pyx_t_1 = __pyx_v_process_name; - } - __Pyx_DECREF_SET(__pyx_v_process_name, __pyx_t_1); - __pyx_t_1 = 0; - - /* "pmercury/protocols/tls.pyx":260 - * - * # package the most probable process - * score_sum_ = sum([x_['score'] for x_ in r_]) # <<<<<<<<<<<<<< - * if self.MALWARE_DB: - * malware_score_ = sum([x_['score'] for x_ in r_ if x_['malware'] == 1])/score_sum_ - */ - { /* enter inner scope */ - __pyx_t_1 = PyList_New(0); if (unlikely(!__pyx_t_1)) __PYX_ERR(0, 260, __pyx_L25_error) - __Pyx_GOTREF(__pyx_t_1); - if (likely(PyList_CheckExact(__pyx_v_r_)) || PyTuple_CheckExact(__pyx_v_r_)) { - __pyx_t_5 = __pyx_v_r_; __Pyx_INCREF(__pyx_t_5); __pyx_t_8 = 0; - __pyx_t_9 = NULL; - } else { - __pyx_t_8 = -1; __pyx_t_5 = PyObject_GetIter(__pyx_v_r_); if (unlikely(!__pyx_t_5)) __PYX_ERR(0, 260, __pyx_L25_error) - __Pyx_GOTREF(__pyx_t_5); - __pyx_t_9 = Py_TYPE(__pyx_t_5)->tp_iternext; if (unlikely(!__pyx_t_9)) __PYX_ERR(0, 260, __pyx_L25_error) - } - for (;;) { - if (likely(!__pyx_t_9)) { - if (likely(PyList_CheckExact(__pyx_t_5))) { - if (__pyx_t_8 >= PyList_GET_SIZE(__pyx_t_5)) break; - #if CYTHON_ASSUME_SAFE_MACROS && !CYTHON_AVOID_BORROWED_REFS - __pyx_t_2 = PyList_GET_ITEM(__pyx_t_5, __pyx_t_8); __Pyx_INCREF(__pyx_t_2); __pyx_t_8++; if (unlikely(0 < 0)) __PYX_ERR(0, 260, __pyx_L25_error) - #else - __pyx_t_2 = PySequence_ITEM(__pyx_t_5, __pyx_t_8); __pyx_t_8++; if (unlikely(!__pyx_t_2)) __PYX_ERR(0, 260, __pyx_L25_error) - __Pyx_GOTREF(__pyx_t_2); - #endif - } else { - if (__pyx_t_8 >= PyTuple_GET_SIZE(__pyx_t_5)) break; - #if CYTHON_ASSUME_SAFE_MACROS && !CYTHON_AVOID_BORROWED_REFS - __pyx_t_2 = PyTuple_GET_ITEM(__pyx_t_5, __pyx_t_8); __Pyx_INCREF(__pyx_t_2); __pyx_t_8++; if (unlikely(0 < 0)) __PYX_ERR(0, 260, __pyx_L25_error) - #else - __pyx_t_2 = PySequence_ITEM(__pyx_t_5, __pyx_t_8); __pyx_t_8++; if (unlikely(!__pyx_t_2)) __PYX_ERR(0, 260, __pyx_L25_error) - __Pyx_GOTREF(__pyx_t_2); - #endif - } - } else { - __pyx_t_2 = __pyx_t_9(__pyx_t_5); - if (unlikely(!__pyx_t_2)) { - PyObject* exc_type = PyErr_Occurred(); - if (exc_type) { - if (likely(__Pyx_PyErr_GivenExceptionMatches(exc_type, PyExc_StopIteration))) PyErr_Clear(); - else __PYX_ERR(0, 260, __pyx_L25_error) - } - break; - } - __Pyx_GOTREF(__pyx_t_2); - } - __Pyx_XDECREF_SET(__pyx_8genexpr1__pyx_v_x_, __pyx_t_2); - __pyx_t_2 = 0; - __pyx_t_2 = __Pyx_PyObject_Dict_GetItem(__pyx_8genexpr1__pyx_v_x_, __pyx_n_u_score); if (unlikely(!__pyx_t_2)) __PYX_ERR(0, 260, __pyx_L25_error) - __Pyx_GOTREF(__pyx_t_2); - if (unlikely(__Pyx_ListComp_Append(__pyx_t_1, (PyObject*)__pyx_t_2))) __PYX_ERR(0, 260, __pyx_L25_error) - __Pyx_DECREF(__pyx_t_2); __pyx_t_2 = 0; - } - __Pyx_DECREF(__pyx_t_5); __pyx_t_5 = 0; - __Pyx_XDECREF(__pyx_8genexpr1__pyx_v_x_); __pyx_8genexpr1__pyx_v_x_ = 0; - goto __pyx_L28_exit_scope; - __pyx_L25_error:; - __Pyx_XDECREF(__pyx_8genexpr1__pyx_v_x_); __pyx_8genexpr1__pyx_v_x_ = 0; - goto __pyx_L1_error; - __pyx_L28_exit_scope:; - } /* exit inner scope */ - __pyx_t_5 = __Pyx_PyObject_CallOneArg(__pyx_builtin_sum, __pyx_t_1); if (unlikely(!__pyx_t_5)) __PYX_ERR(0, 260, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_5); - __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0; - __pyx_v_score_sum_ = __pyx_t_5; - __pyx_t_5 = 0; - - /* "pmercury/protocols/tls.pyx":261 - * # package the most probable process - * score_sum_ = sum([x_['score'] for x_ in r_]) - * if self.MALWARE_DB: # <<<<<<<<<<<<<< - * malware_score_ = sum([x_['score'] for x_ in r_ if x_['malware'] == 1])/score_sum_ - * out_ = {'process':process_name, 'score':r_[0]['score'], 'malware':int(r_[0]['malware']), - */ - __pyx_t_6 = (__pyx_v_self->MALWARE_DB != 0); - if (__pyx_t_6) { - - /* "pmercury/protocols/tls.pyx":262 - * score_sum_ = sum([x_['score'] for x_ in r_]) - * if self.MALWARE_DB: - * malware_score_ = sum([x_['score'] for x_ in r_ if x_['malware'] == 1])/score_sum_ # <<<<<<<<<<<<<< - * out_ = {'process':process_name, 'score':r_[0]['score'], 'malware':int(r_[0]['malware']), - * 'p_malware':malware_score_, 'category':r_[0]['category']} - */ - { /* enter inner scope */ - __pyx_t_5 = PyList_New(0); if (unlikely(!__pyx_t_5)) __PYX_ERR(0, 262, __pyx_L32_error) - __Pyx_GOTREF(__pyx_t_5); - if (likely(PyList_CheckExact(__pyx_v_r_)) || PyTuple_CheckExact(__pyx_v_r_)) { - __pyx_t_1 = __pyx_v_r_; __Pyx_INCREF(__pyx_t_1); __pyx_t_8 = 0; - __pyx_t_9 = NULL; - } else { - __pyx_t_8 = -1; __pyx_t_1 = PyObject_GetIter(__pyx_v_r_); if (unlikely(!__pyx_t_1)) __PYX_ERR(0, 262, __pyx_L32_error) - __Pyx_GOTREF(__pyx_t_1); - __pyx_t_9 = Py_TYPE(__pyx_t_1)->tp_iternext; if (unlikely(!__pyx_t_9)) __PYX_ERR(0, 262, __pyx_L32_error) - } - for (;;) { - if (likely(!__pyx_t_9)) { - if (likely(PyList_CheckExact(__pyx_t_1))) { - if (__pyx_t_8 >= PyList_GET_SIZE(__pyx_t_1)) break; - #if CYTHON_ASSUME_SAFE_MACROS && !CYTHON_AVOID_BORROWED_REFS - __pyx_t_2 = PyList_GET_ITEM(__pyx_t_1, __pyx_t_8); __Pyx_INCREF(__pyx_t_2); __pyx_t_8++; if (unlikely(0 < 0)) __PYX_ERR(0, 262, __pyx_L32_error) - #else - __pyx_t_2 = PySequence_ITEM(__pyx_t_1, __pyx_t_8); __pyx_t_8++; if (unlikely(!__pyx_t_2)) __PYX_ERR(0, 262, __pyx_L32_error) - __Pyx_GOTREF(__pyx_t_2); - #endif - } else { - if (__pyx_t_8 >= PyTuple_GET_SIZE(__pyx_t_1)) break; - #if CYTHON_ASSUME_SAFE_MACROS && !CYTHON_AVOID_BORROWED_REFS - __pyx_t_2 = PyTuple_GET_ITEM(__pyx_t_1, __pyx_t_8); __Pyx_INCREF(__pyx_t_2); __pyx_t_8++; if (unlikely(0 < 0)) __PYX_ERR(0, 262, __pyx_L32_error) - #else - __pyx_t_2 = PySequence_ITEM(__pyx_t_1, __pyx_t_8); __pyx_t_8++; if (unlikely(!__pyx_t_2)) __PYX_ERR(0, 262, __pyx_L32_error) - __Pyx_GOTREF(__pyx_t_2); - #endif - } - } else { - __pyx_t_2 = __pyx_t_9(__pyx_t_1); - if (unlikely(!__pyx_t_2)) { - PyObject* exc_type = PyErr_Occurred(); - if (exc_type) { - if (likely(__Pyx_PyErr_GivenExceptionMatches(exc_type, PyExc_StopIteration))) PyErr_Clear(); - else __PYX_ERR(0, 262, __pyx_L32_error) - } - break; - } - __Pyx_GOTREF(__pyx_t_2); - } - __Pyx_XDECREF_SET(__pyx_8genexpr2__pyx_v_x_, __pyx_t_2); - __pyx_t_2 = 0; - __pyx_t_2 = __Pyx_PyObject_Dict_GetItem(__pyx_8genexpr2__pyx_v_x_, __pyx_n_u_malware); if (unlikely(!__pyx_t_2)) __PYX_ERR(0, 262, __pyx_L32_error) - __Pyx_GOTREF(__pyx_t_2); - __pyx_t_11 = __Pyx_PyInt_EqObjC(__pyx_t_2, __pyx_int_1, 1, 0); if (unlikely(!__pyx_t_11)) __PYX_ERR(0, 262, __pyx_L32_error) - __Pyx_GOTREF(__pyx_t_11); - __Pyx_DECREF(__pyx_t_2); __pyx_t_2 = 0; - __pyx_t_6 = __Pyx_PyObject_IsTrue(__pyx_t_11); if (unlikely(__pyx_t_6 < 0)) __PYX_ERR(0, 262, __pyx_L32_error) - __Pyx_DECREF(__pyx_t_11); __pyx_t_11 = 0; - if (__pyx_t_6) { - __pyx_t_11 = __Pyx_PyObject_Dict_GetItem(__pyx_8genexpr2__pyx_v_x_, __pyx_n_u_score); if (unlikely(!__pyx_t_11)) __PYX_ERR(0, 262, __pyx_L32_error) - __Pyx_GOTREF(__pyx_t_11); - if (unlikely(__Pyx_ListComp_Append(__pyx_t_5, (PyObject*)__pyx_t_11))) __PYX_ERR(0, 262, __pyx_L32_error) - __Pyx_DECREF(__pyx_t_11); __pyx_t_11 = 0; - } - } - __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0; - __Pyx_XDECREF(__pyx_8genexpr2__pyx_v_x_); __pyx_8genexpr2__pyx_v_x_ = 0; - goto __pyx_L36_exit_scope; - __pyx_L32_error:; - __Pyx_XDECREF(__pyx_8genexpr2__pyx_v_x_); __pyx_8genexpr2__pyx_v_x_ = 0; - goto __pyx_L1_error; - __pyx_L36_exit_scope:; - } /* exit inner scope */ - __pyx_t_1 = __Pyx_PyObject_CallOneArg(__pyx_builtin_sum, __pyx_t_5); if (unlikely(!__pyx_t_1)) __PYX_ERR(0, 262, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_1); - __Pyx_DECREF(__pyx_t_5); __pyx_t_5 = 0; - __pyx_t_5 = __Pyx_PyNumber_Divide(__pyx_t_1, __pyx_v_score_sum_); if (unlikely(!__pyx_t_5)) __PYX_ERR(0, 262, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_5); - __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0; - __pyx_v_malware_score_ = __pyx_t_5; - __pyx_t_5 = 0; - - /* "pmercury/protocols/tls.pyx":263 - * if self.MALWARE_DB: - * malware_score_ = sum([x_['score'] for x_ in r_ if x_['malware'] == 1])/score_sum_ - * out_ = {'process':process_name, 'score':r_[0]['score'], 'malware':int(r_[0]['malware']), # <<<<<<<<<<<<<< - * 'p_malware':malware_score_, 'category':r_[0]['category']} - * else: - */ - __pyx_t_5 = __Pyx_PyDict_NewPresized(5); if (unlikely(!__pyx_t_5)) __PYX_ERR(0, 263, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_5); - if (PyDict_SetItem(__pyx_t_5, __pyx_n_u_process, __pyx_v_process_name) < 0) __PYX_ERR(0, 263, __pyx_L1_error) - __pyx_t_1 = __Pyx_GetItemInt(__pyx_v_r_, 0, long, 1, __Pyx_PyInt_From_long, 0, 0, 1); if (unlikely(!__pyx_t_1)) __PYX_ERR(0, 263, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_1); - __pyx_t_11 = __Pyx_PyObject_Dict_GetItem(__pyx_t_1, __pyx_n_u_score); if (unlikely(!__pyx_t_11)) __PYX_ERR(0, 263, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_11); - __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0; - if (PyDict_SetItem(__pyx_t_5, __pyx_n_u_score, __pyx_t_11) < 0) __PYX_ERR(0, 263, __pyx_L1_error) - __Pyx_DECREF(__pyx_t_11); __pyx_t_11 = 0; - __pyx_t_11 = __Pyx_GetItemInt(__pyx_v_r_, 0, long, 1, __Pyx_PyInt_From_long, 0, 0, 1); if (unlikely(!__pyx_t_11)) __PYX_ERR(0, 263, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_11); - __pyx_t_1 = __Pyx_PyObject_Dict_GetItem(__pyx_t_11, __pyx_n_u_malware); if (unlikely(!__pyx_t_1)) __PYX_ERR(0, 263, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_1); - __Pyx_DECREF(__pyx_t_11); __pyx_t_11 = 0; - __pyx_t_11 = __Pyx_PyNumber_Int(__pyx_t_1); if (unlikely(!__pyx_t_11)) __PYX_ERR(0, 263, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_11); - __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0; - if (PyDict_SetItem(__pyx_t_5, __pyx_n_u_malware, __pyx_t_11) < 0) __PYX_ERR(0, 263, __pyx_L1_error) - __Pyx_DECREF(__pyx_t_11); __pyx_t_11 = 0; - - /* "pmercury/protocols/tls.pyx":264 - * malware_score_ = sum([x_['score'] for x_ in r_ if x_['malware'] == 1])/score_sum_ - * out_ = {'process':process_name, 'score':r_[0]['score'], 'malware':int(r_[0]['malware']), - * 'p_malware':malware_score_, 'category':r_[0]['category']} # <<<<<<<<<<<<<< - * else: - * out_ = {'process':process_name, 'score':r_[0]['score'], 'category':r_[0]['category']} - */ - if (PyDict_SetItem(__pyx_t_5, __pyx_n_u_p_malware, __pyx_v_malware_score_) < 0) __PYX_ERR(0, 263, __pyx_L1_error) - __pyx_t_11 = __Pyx_GetItemInt(__pyx_v_r_, 0, long, 1, __Pyx_PyInt_From_long, 0, 0, 1); if (unlikely(!__pyx_t_11)) __PYX_ERR(0, 264, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_11); - __pyx_t_1 = __Pyx_PyObject_Dict_GetItem(__pyx_t_11, __pyx_n_u_category); if (unlikely(!__pyx_t_1)) __PYX_ERR(0, 264, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_1); - __Pyx_DECREF(__pyx_t_11); __pyx_t_11 = 0; - if (PyDict_SetItem(__pyx_t_5, __pyx_n_u_category, __pyx_t_1) < 0) __PYX_ERR(0, 263, __pyx_L1_error) - __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0; - __pyx_v_out_ = ((PyObject*)__pyx_t_5); - __pyx_t_5 = 0; - - /* "pmercury/protocols/tls.pyx":261 - * # package the most probable process - * score_sum_ = sum([x_['score'] for x_ in r_]) - * if self.MALWARE_DB: # <<<<<<<<<<<<<< - * malware_score_ = sum([x_['score'] for x_ in r_ if x_['malware'] == 1])/score_sum_ - * out_ = {'process':process_name, 'score':r_[0]['score'], 'malware':int(r_[0]['malware']), - */ - goto __pyx_L29; - } - - /* "pmercury/protocols/tls.pyx":266 - * 'p_malware':malware_score_, 'category':r_[0]['category']} - * else: - * out_ = {'process':process_name, 'score':r_[0]['score'], 'category':r_[0]['category']} # <<<<<<<<<<<<<< - * - * # return the top-n most probable processes is list_procs > 0 - */ - /*else*/ { - __pyx_t_5 = __Pyx_PyDict_NewPresized(3); if (unlikely(!__pyx_t_5)) __PYX_ERR(0, 266, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_5); - if (PyDict_SetItem(__pyx_t_5, __pyx_n_u_process, __pyx_v_process_name) < 0) __PYX_ERR(0, 266, __pyx_L1_error) - __pyx_t_1 = __Pyx_GetItemInt(__pyx_v_r_, 0, long, 1, __Pyx_PyInt_From_long, 0, 0, 1); if (unlikely(!__pyx_t_1)) __PYX_ERR(0, 266, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_1); - __pyx_t_11 = __Pyx_PyObject_Dict_GetItem(__pyx_t_1, __pyx_n_u_score); if (unlikely(!__pyx_t_11)) __PYX_ERR(0, 266, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_11); - __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0; - if (PyDict_SetItem(__pyx_t_5, __pyx_n_u_score, __pyx_t_11) < 0) __PYX_ERR(0, 266, __pyx_L1_error) - __Pyx_DECREF(__pyx_t_11); __pyx_t_11 = 0; - __pyx_t_11 = __Pyx_GetItemInt(__pyx_v_r_, 0, long, 1, __Pyx_PyInt_From_long, 0, 0, 1); if (unlikely(!__pyx_t_11)) __PYX_ERR(0, 266, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_11); - __pyx_t_1 = __Pyx_PyObject_Dict_GetItem(__pyx_t_11, __pyx_n_u_category); if (unlikely(!__pyx_t_1)) __PYX_ERR(0, 266, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_1); - __Pyx_DECREF(__pyx_t_11); __pyx_t_11 = 0; - if (PyDict_SetItem(__pyx_t_5, __pyx_n_u_category, __pyx_t_1) < 0) __PYX_ERR(0, 266, __pyx_L1_error) - __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0; - __pyx_v_out_ = ((PyObject*)__pyx_t_5); - __pyx_t_5 = 0; - } - __pyx_L29:; - - /* "pmercury/protocols/tls.pyx":269 - * - * # return the top-n most probable processes is list_procs > 0 - * if list_procs > 0: # <<<<<<<<<<<<<< - * r_proc_ = r_[0:list_procs] - * for p_ in r_proc_: - */ - __pyx_t_5 = PyObject_RichCompare(__pyx_v_list_procs, __pyx_int_0, Py_GT); __Pyx_XGOTREF(__pyx_t_5); if (unlikely(!__pyx_t_5)) __PYX_ERR(0, 269, __pyx_L1_error) - __pyx_t_6 = __Pyx_PyObject_IsTrue(__pyx_t_5); if (unlikely(__pyx_t_6 < 0)) __PYX_ERR(0, 269, __pyx_L1_error) - __Pyx_DECREF(__pyx_t_5); __pyx_t_5 = 0; - if (__pyx_t_6) { - - /* "pmercury/protocols/tls.pyx":270 - * # return the top-n most probable processes is list_procs > 0 - * if list_procs > 0: - * r_proc_ = r_[0:list_procs] # <<<<<<<<<<<<<< - * for p_ in r_proc_: - * p_['score'] /= score_sum_ - */ - __pyx_t_5 = __Pyx_PyObject_GetSlice(__pyx_v_r_, 0, 0, NULL, &__pyx_v_list_procs, NULL, 1, 0, 0); if (unlikely(!__pyx_t_5)) __PYX_ERR(0, 270, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_5); - __pyx_v_r_proc_ = __pyx_t_5; - __pyx_t_5 = 0; - - /* "pmercury/protocols/tls.pyx":271 - * if list_procs > 0: - * r_proc_ = r_[0:list_procs] - * for p_ in r_proc_: # <<<<<<<<<<<<<< - * p_['score'] /= score_sum_ - * out_['probable_processes'] = r_proc_ - */ - if (likely(PyList_CheckExact(__pyx_v_r_proc_)) || PyTuple_CheckExact(__pyx_v_r_proc_)) { - __pyx_t_5 = __pyx_v_r_proc_; __Pyx_INCREF(__pyx_t_5); __pyx_t_8 = 0; - __pyx_t_9 = NULL; - } else { - __pyx_t_8 = -1; __pyx_t_5 = PyObject_GetIter(__pyx_v_r_proc_); if (unlikely(!__pyx_t_5)) __PYX_ERR(0, 271, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_5); - __pyx_t_9 = Py_TYPE(__pyx_t_5)->tp_iternext; if (unlikely(!__pyx_t_9)) __PYX_ERR(0, 271, __pyx_L1_error) - } - for (;;) { - if (likely(!__pyx_t_9)) { - if (likely(PyList_CheckExact(__pyx_t_5))) { - if (__pyx_t_8 >= PyList_GET_SIZE(__pyx_t_5)) break; - #if CYTHON_ASSUME_SAFE_MACROS && !CYTHON_AVOID_BORROWED_REFS - __pyx_t_1 = PyList_GET_ITEM(__pyx_t_5, __pyx_t_8); __Pyx_INCREF(__pyx_t_1); __pyx_t_8++; if (unlikely(0 < 0)) __PYX_ERR(0, 271, __pyx_L1_error) - #else - __pyx_t_1 = PySequence_ITEM(__pyx_t_5, __pyx_t_8); __pyx_t_8++; if (unlikely(!__pyx_t_1)) __PYX_ERR(0, 271, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_1); - #endif - } else { - if (__pyx_t_8 >= PyTuple_GET_SIZE(__pyx_t_5)) break; - #if CYTHON_ASSUME_SAFE_MACROS && !CYTHON_AVOID_BORROWED_REFS - __pyx_t_1 = PyTuple_GET_ITEM(__pyx_t_5, __pyx_t_8); __Pyx_INCREF(__pyx_t_1); __pyx_t_8++; if (unlikely(0 < 0)) __PYX_ERR(0, 271, __pyx_L1_error) - #else - __pyx_t_1 = PySequence_ITEM(__pyx_t_5, __pyx_t_8); __pyx_t_8++; if (unlikely(!__pyx_t_1)) __PYX_ERR(0, 271, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_1); - #endif - } - } else { - __pyx_t_1 = __pyx_t_9(__pyx_t_5); - if (unlikely(!__pyx_t_1)) { - PyObject* exc_type = PyErr_Occurred(); - if (exc_type) { - if (likely(__Pyx_PyErr_GivenExceptionMatches(exc_type, PyExc_StopIteration))) PyErr_Clear(); - else __PYX_ERR(0, 271, __pyx_L1_error) - } - break; - } - __Pyx_GOTREF(__pyx_t_1); - } - __Pyx_XDECREF_SET(__pyx_v_p_, __pyx_t_1); - __pyx_t_1 = 0; - - /* "pmercury/protocols/tls.pyx":272 - * r_proc_ = r_[0:list_procs] - * for p_ in r_proc_: - * p_['score'] /= score_sum_ # <<<<<<<<<<<<<< - * out_['probable_processes'] = r_proc_ - * out_['score'] /= score_sum_ - */ - __Pyx_INCREF(__pyx_n_u_score); - __pyx_t_13 = __pyx_n_u_score; - __pyx_t_1 = __Pyx_PyObject_Dict_GetItem(__pyx_v_p_, __pyx_t_13); if (unlikely(!__pyx_t_1)) __PYX_ERR(0, 272, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_1); - __pyx_t_11 = __Pyx_PyNumber_InPlaceDivide(__pyx_t_1, __pyx_v_score_sum_); if (unlikely(!__pyx_t_11)) __PYX_ERR(0, 272, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_11); - __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0; - if (unlikely(PyObject_SetItem(__pyx_v_p_, __pyx_t_13, __pyx_t_11) < 0)) __PYX_ERR(0, 272, __pyx_L1_error) - __Pyx_DECREF(__pyx_t_11); __pyx_t_11 = 0; - __Pyx_DECREF(__pyx_t_13); __pyx_t_13 = 0; - - /* "pmercury/protocols/tls.pyx":271 - * if list_procs > 0: - * r_proc_ = r_[0:list_procs] - * for p_ in r_proc_: # <<<<<<<<<<<<<< - * p_['score'] /= score_sum_ - * out_['probable_processes'] = r_proc_ - */ - } - __Pyx_DECREF(__pyx_t_5); __pyx_t_5 = 0; - - /* "pmercury/protocols/tls.pyx":273 - * for p_ in r_proc_: - * p_['score'] /= score_sum_ - * out_['probable_processes'] = r_proc_ # <<<<<<<<<<<<<< - * out_['score'] /= score_sum_ - * - */ - if (unlikely(PyDict_SetItem(__pyx_v_out_, __pyx_n_u_probable_processes, __pyx_v_r_proc_) < 0)) __PYX_ERR(0, 273, __pyx_L1_error) - - /* "pmercury/protocols/tls.pyx":269 - * - * # return the top-n most probable processes is list_procs > 0 - * if list_procs > 0: # <<<<<<<<<<<<<< - * r_proc_ = r_[0:list_procs] - * for p_ in r_proc_: - */ - } - - /* "pmercury/protocols/tls.pyx":274 - * p_['score'] /= score_sum_ - * out_['probable_processes'] = r_proc_ - * out_['score'] /= score_sum_ # <<<<<<<<<<<<<< - * - * return out_ - */ - __Pyx_INCREF(__pyx_n_u_score); - __pyx_t_13 = __pyx_n_u_score; - __pyx_t_5 = __Pyx_PyDict_GetItem(__pyx_v_out_, __pyx_t_13); if (unlikely(!__pyx_t_5)) __PYX_ERR(0, 274, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_5); - __pyx_t_11 = __Pyx_PyNumber_InPlaceDivide(__pyx_t_5, __pyx_v_score_sum_); if (unlikely(!__pyx_t_11)) __PYX_ERR(0, 274, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_11); - __Pyx_DECREF(__pyx_t_5); __pyx_t_5 = 0; - if (unlikely(PyDict_SetItem(__pyx_v_out_, __pyx_t_13, __pyx_t_11) < 0)) __PYX_ERR(0, 274, __pyx_L1_error) - __Pyx_DECREF(__pyx_t_11); __pyx_t_11 = 0; - __Pyx_DECREF(__pyx_t_13); __pyx_t_13 = 0; - - /* "pmercury/protocols/tls.pyx":276 - * out_['score'] /= score_sum_ - * - * return out_ # <<<<<<<<<<<<<< - * - * - */ - __Pyx_XDECREF(__pyx_r); - __Pyx_INCREF(__pyx_v_out_); - __pyx_r = __pyx_v_out_; - goto __pyx_L0; - - /* "pmercury/protocols/tls.pyx":220 - * - * @functools.lru_cache(maxsize=MAX_CACHED_RESULTS) - * def identify(self, fp_str_, server_name, dest_addr, dest_port, list_procs, endpoint=None): # <<<<<<<<<<<<<< - * fp_ = self.get_database_entry(fp_str_, None) - * if fp_ == None: - */ - - /* function exit code */ - __pyx_L1_error:; - __Pyx_XDECREF(__pyx_t_1); - __Pyx_XDECREF(__pyx_t_2); - __Pyx_XDECREF(__pyx_t_3); - __Pyx_XDECREF(__pyx_t_5); - __Pyx_XDECREF(__pyx_t_10); - __Pyx_XDECREF(__pyx_t_11); - __Pyx_XDECREF(__pyx_t_13); - __Pyx_AddTraceback("pmercury.protocols.tls.TLS.identify", __pyx_clineno, __pyx_lineno, __pyx_filename); - __pyx_r = NULL; - __pyx_L0:; - __Pyx_XDECREF(__pyx_v_fp_); - __Pyx_XDECREF(__pyx_v_domain); - __Pyx_XDECREF(__pyx_v_tld); - __Pyx_XDECREF(__pyx_v_asn); - __Pyx_XDECREF(__pyx_v_port_app); - __Pyx_XDECREF(__pyx_v_features); - __Pyx_XDECREF(__pyx_v_fp_tc); - __Pyx_XDECREF(__pyx_v_r_); - __Pyx_XDECREF(__pyx_v_predict_); - __Pyx_XDECREF(__pyx_v_process_name); - __Pyx_XDECREF(__pyx_v_score_sum_); - __Pyx_XDECREF(__pyx_v_malware_score_); - __Pyx_XDECREF(__pyx_v_out_); - __Pyx_XDECREF(__pyx_v_r_proc_); - __Pyx_XDECREF(__pyx_v_p_); - __Pyx_XDECREF(__pyx_7genexpr__pyx_v_p_); - __Pyx_XDECREF(__pyx_8genexpr1__pyx_v_x_); - __Pyx_XDECREF(__pyx_8genexpr2__pyx_v_x_); - __Pyx_XGIVEREF(__pyx_r); - __Pyx_RefNannyFinishContext(); - return __pyx_r; -} - -/* "pmercury/protocols/tls.pyx":279 - * - * - * def compute_score(self, list features, dict p_, double fp_tc_, object endpoint): # <<<<<<<<<<<<<< - * cdef str cur_proc = p_['process'] - * cdef uint64_t p_count = p_['count'] - */ - -/* Python wrapper */ -static PyObject *__pyx_pw_8pmercury_9protocols_3tls_3TLS_13compute_score(PyObject *__pyx_v_self, PyObject *__pyx_args, PyObject *__pyx_kwds); /*proto*/ -static PyObject *__pyx_pw_8pmercury_9protocols_3tls_3TLS_13compute_score(PyObject *__pyx_v_self, PyObject *__pyx_args, PyObject *__pyx_kwds) { - PyObject *__pyx_v_features = 0; - PyObject *__pyx_v_p_ = 0; - double __pyx_v_fp_tc_; - PyObject *__pyx_v_endpoint = 0; - PyObject *__pyx_r = 0; - __Pyx_RefNannyDeclarations - __Pyx_RefNannySetupContext("compute_score (wrapper)", 0); - { - static PyObject **__pyx_pyargnames[] = {&__pyx_n_s_features,&__pyx_n_s_p,&__pyx_n_s_fp_tc,&__pyx_n_s_endpoint,0}; - PyObject* values[4] = {0,0,0,0}; - if (unlikely(__pyx_kwds)) { - Py_ssize_t kw_args; - const Py_ssize_t pos_args = PyTuple_GET_SIZE(__pyx_args); - switch (pos_args) { - case 4: values[3] = PyTuple_GET_ITEM(__pyx_args, 3); - CYTHON_FALLTHROUGH; - case 3: values[2] = PyTuple_GET_ITEM(__pyx_args, 2); - CYTHON_FALLTHROUGH; - case 2: values[1] = PyTuple_GET_ITEM(__pyx_args, 1); - CYTHON_FALLTHROUGH; - case 1: values[0] = PyTuple_GET_ITEM(__pyx_args, 0); - CYTHON_FALLTHROUGH; - case 0: break; - default: goto __pyx_L5_argtuple_error; - } - kw_args = PyDict_Size(__pyx_kwds); - switch (pos_args) { - case 0: - if (likely((values[0] = __Pyx_PyDict_GetItemStr(__pyx_kwds, __pyx_n_s_features)) != 0)) kw_args--; - else goto __pyx_L5_argtuple_error; - CYTHON_FALLTHROUGH; - case 1: - if (likely((values[1] = __Pyx_PyDict_GetItemStr(__pyx_kwds, __pyx_n_s_p)) != 0)) kw_args--; - else { - __Pyx_RaiseArgtupleInvalid("compute_score", 1, 4, 4, 1); __PYX_ERR(0, 279, __pyx_L3_error) - } - CYTHON_FALLTHROUGH; - case 2: - if (likely((values[2] = __Pyx_PyDict_GetItemStr(__pyx_kwds, __pyx_n_s_fp_tc)) != 0)) kw_args--; - else { - __Pyx_RaiseArgtupleInvalid("compute_score", 1, 4, 4, 2); __PYX_ERR(0, 279, __pyx_L3_error) - } - CYTHON_FALLTHROUGH; - case 3: - if (likely((values[3] = __Pyx_PyDict_GetItemStr(__pyx_kwds, __pyx_n_s_endpoint)) != 0)) kw_args--; - else { - __Pyx_RaiseArgtupleInvalid("compute_score", 1, 4, 4, 3); __PYX_ERR(0, 279, __pyx_L3_error) - } - } - if (unlikely(kw_args > 0)) { - if (unlikely(__Pyx_ParseOptionalKeywords(__pyx_kwds, __pyx_pyargnames, 0, values, pos_args, "compute_score") < 0)) __PYX_ERR(0, 279, __pyx_L3_error) - } - } else if (PyTuple_GET_SIZE(__pyx_args) != 4) { - goto __pyx_L5_argtuple_error; - } else { - values[0] = PyTuple_GET_ITEM(__pyx_args, 0); - values[1] = PyTuple_GET_ITEM(__pyx_args, 1); - values[2] = PyTuple_GET_ITEM(__pyx_args, 2); - values[3] = PyTuple_GET_ITEM(__pyx_args, 3); - } - __pyx_v_features = ((PyObject*)values[0]); - __pyx_v_p_ = ((PyObject*)values[1]); - __pyx_v_fp_tc_ = __pyx_PyFloat_AsDouble(values[2]); if (unlikely((__pyx_v_fp_tc_ == (double)-1) && PyErr_Occurred())) __PYX_ERR(0, 279, __pyx_L3_error) - __pyx_v_endpoint = values[3]; - } - goto __pyx_L4_argument_unpacking_done; - __pyx_L5_argtuple_error:; - __Pyx_RaiseArgtupleInvalid("compute_score", 1, 4, 4, PyTuple_GET_SIZE(__pyx_args)); __PYX_ERR(0, 279, __pyx_L3_error) - __pyx_L3_error:; - __Pyx_AddTraceback("pmercury.protocols.tls.TLS.compute_score", __pyx_clineno, __pyx_lineno, __pyx_filename); - __Pyx_RefNannyFinishContext(); - return NULL; - __pyx_L4_argument_unpacking_done:; - if (unlikely(!__Pyx_ArgTypeTest(((PyObject *)__pyx_v_features), (&PyList_Type), 1, "features", 1))) __PYX_ERR(0, 279, __pyx_L1_error) - if (unlikely(!__Pyx_ArgTypeTest(((PyObject *)__pyx_v_p_), (&PyDict_Type), 1, "p_", 1))) __PYX_ERR(0, 279, __pyx_L1_error) - __pyx_r = __pyx_pf_8pmercury_9protocols_3tls_3TLS_12compute_score(((struct __pyx_obj_8pmercury_9protocols_3tls_TLS *)__pyx_v_self), __pyx_v_features, __pyx_v_p_, __pyx_v_fp_tc_, __pyx_v_endpoint); - - /* function exit code */ - goto __pyx_L0; - __pyx_L1_error:; - __pyx_r = NULL; - __pyx_L0:; - __Pyx_RefNannyFinishContext(); - return __pyx_r; -} - -static PyObject *__pyx_pf_8pmercury_9protocols_3tls_3TLS_12compute_score(struct __pyx_obj_8pmercury_9protocols_3tls_TLS *__pyx_v_self, PyObject *__pyx_v_features, PyObject *__pyx_v_p_, double __pyx_v_fp_tc_, PyObject *__pyx_v_endpoint) { - PyObject *__pyx_v_cur_proc = 0; - uint64_t __pyx_v_p_count; - double __pyx_v_prob_process_given_fp; - double __pyx_v_base_prior_; - double __pyx_v_proc_prior_; - double __pyx_v_prior_; - double __pyx_v_score_; - double __pyx_v_tmp_; - double __pyx_v_trans_prob; - double __pyx_v_prev_proc_prior; - PyObject *__pyx_v_os_info = NULL; - PyObject *__pyx_v_k = NULL; - PyObject *__pyx_v_app_cat = NULL; - PyObject *__pyx_8genexpr3__pyx_v_pp_ = NULL; - PyObject *__pyx_r = NULL; - __Pyx_RefNannyDeclarations - PyObject *__pyx_t_1 = NULL; - uint64_t __pyx_t_2; - int __pyx_t_3; - int __pyx_t_4; - int __pyx_t_5; - PyObject *__pyx_t_6 = NULL; - double __pyx_t_7; - PyObject *__pyx_t_8 = NULL; - Py_ssize_t __pyx_t_9; - PyObject *(*__pyx_t_10)(PyObject *); - PyObject *__pyx_t_11 = NULL; - PyObject *__pyx_t_12 = NULL; - PyObject *__pyx_t_13 = NULL; - PyObject *__pyx_t_14 = NULL; - PyObject *__pyx_t_15 = NULL; - int __pyx_t_16; - __Pyx_RefNannySetupContext("compute_score", 0); - - /* "pmercury/protocols/tls.pyx":280 - * - * def compute_score(self, list features, dict p_, double fp_tc_, object endpoint): - * cdef str cur_proc = p_['process'] # <<<<<<<<<<<<<< - * cdef uint64_t p_count = p_['count'] - * cdef double prob_process_given_fp = log(p_count/fp_tc_) - */ - if (unlikely(__pyx_v_p_ == Py_None)) { - PyErr_SetString(PyExc_TypeError, "'NoneType' object is not subscriptable"); - __PYX_ERR(0, 280, __pyx_L1_error) - } - __pyx_t_1 = __Pyx_PyDict_GetItem(__pyx_v_p_, __pyx_n_u_process); if (unlikely(!__pyx_t_1)) __PYX_ERR(0, 280, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_1); - if (!(likely(PyUnicode_CheckExact(__pyx_t_1))||((__pyx_t_1) == Py_None)||(PyErr_Format(PyExc_TypeError, "Expected %.16s, got %.200s", "unicode", Py_TYPE(__pyx_t_1)->tp_name), 0))) __PYX_ERR(0, 280, __pyx_L1_error) - __pyx_v_cur_proc = ((PyObject*)__pyx_t_1); - __pyx_t_1 = 0; - - /* "pmercury/protocols/tls.pyx":281 - * def compute_score(self, list features, dict p_, double fp_tc_, object endpoint): - * cdef str cur_proc = p_['process'] - * cdef uint64_t p_count = p_['count'] # <<<<<<<<<<<<<< - * cdef double prob_process_given_fp = log(p_count/fp_tc_) - * - */ - if (unlikely(__pyx_v_p_ == Py_None)) { - PyErr_SetString(PyExc_TypeError, "'NoneType' object is not subscriptable"); - __PYX_ERR(0, 281, __pyx_L1_error) - } - __pyx_t_1 = __Pyx_PyDict_GetItem(__pyx_v_p_, __pyx_n_u_count); if (unlikely(!__pyx_t_1)) __PYX_ERR(0, 281, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_1); - __pyx_t_2 = __Pyx_PyInt_As_uint64_t(__pyx_t_1); if (unlikely((__pyx_t_2 == ((uint64_t)-1)) && PyErr_Occurred())) __PYX_ERR(0, 281, __pyx_L1_error) - __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0; - __pyx_v_p_count = __pyx_t_2; - - /* "pmercury/protocols/tls.pyx":282 - * cdef str cur_proc = p_['process'] - * cdef uint64_t p_count = p_['count'] - * cdef double prob_process_given_fp = log(p_count/fp_tc_) # <<<<<<<<<<<<<< - * - * # cdef double base_prior_ = -23.02585 # log(1e-10) - */ - __pyx_v_prob_process_given_fp = log((((double)__pyx_v_p_count) / __pyx_v_fp_tc_)); - - /* "pmercury/protocols/tls.pyx":285 - * - * # cdef double base_prior_ = -23.02585 # log(1e-10) - * cdef double base_prior_ = -26.02585 # log(1e-10) # <<<<<<<<<<<<<< - * cdef double proc_prior_ = -16.11810 # log(1e-7) - * # cdef double proc_prior_ = -11.51293 # log(1e-5) - */ - __pyx_v_base_prior_ = -26.02585; - - /* "pmercury/protocols/tls.pyx":286 - * # cdef double base_prior_ = -23.02585 # log(1e-10) - * cdef double base_prior_ = -26.02585 # log(1e-10) - * cdef double proc_prior_ = -16.11810 # log(1e-7) # <<<<<<<<<<<<<< - * # cdef double proc_prior_ = -11.51293 # log(1e-5) - * # cdef double prior_ = -13.81551 # log(1e-6) - */ - __pyx_v_proc_prior_ = -16.11810; - - /* "pmercury/protocols/tls.pyx":289 - * # cdef double proc_prior_ = -11.51293 # log(1e-5) - * # cdef double prior_ = -13.81551 # log(1e-6) - * cdef double prior_ = -16.81551 # log(1e-6) # <<<<<<<<<<<<<< - * - * if 'domain_mean' in p_ and p_['domain_mean'] < 5.0: - */ - __pyx_v_prior_ = -16.81551; - - /* "pmercury/protocols/tls.pyx":291 - * cdef double prior_ = -16.81551 # log(1e-6) - * - * if 'domain_mean' in p_ and p_['domain_mean'] < 5.0: # <<<<<<<<<<<<<< - * base_prior_ = -25.32844 # log(1e-11) - * - */ - if (unlikely(__pyx_v_p_ == Py_None)) { - PyErr_SetString(PyExc_TypeError, "'NoneType' object is not iterable"); - __PYX_ERR(0, 291, __pyx_L1_error) - } - __pyx_t_4 = (__Pyx_PyDict_ContainsTF(__pyx_n_u_domain_mean, __pyx_v_p_, Py_EQ)); if (unlikely(__pyx_t_4 < 0)) __PYX_ERR(0, 291, __pyx_L1_error) - __pyx_t_5 = (__pyx_t_4 != 0); - if (__pyx_t_5) { - } else { - __pyx_t_3 = __pyx_t_5; - goto __pyx_L4_bool_binop_done; - } - if (unlikely(__pyx_v_p_ == Py_None)) { - PyErr_SetString(PyExc_TypeError, "'NoneType' object is not subscriptable"); - __PYX_ERR(0, 291, __pyx_L1_error) - } - __pyx_t_1 = __Pyx_PyDict_GetItem(__pyx_v_p_, __pyx_n_u_domain_mean); if (unlikely(!__pyx_t_1)) __PYX_ERR(0, 291, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_1); - __pyx_t_6 = PyObject_RichCompare(__pyx_t_1, __pyx_float_5_0, Py_LT); __Pyx_XGOTREF(__pyx_t_6); if (unlikely(!__pyx_t_6)) __PYX_ERR(0, 291, __pyx_L1_error) - __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0; - __pyx_t_5 = __Pyx_PyObject_IsTrue(__pyx_t_6); if (unlikely(__pyx_t_5 < 0)) __PYX_ERR(0, 291, __pyx_L1_error) - __Pyx_DECREF(__pyx_t_6); __pyx_t_6 = 0; - __pyx_t_3 = __pyx_t_5; - __pyx_L4_bool_binop_done:; - if (__pyx_t_3) { - - /* "pmercury/protocols/tls.pyx":292 - * - * if 'domain_mean' in p_ and p_['domain_mean'] < 5.0: - * base_prior_ = -25.32844 # log(1e-11) # <<<<<<<<<<<<<< - * - * # cdef double score_ = 5*prob_process_given_fp if prob_process_given_fp > proc_prior_ else 5*proc_prior_ - */ - __pyx_v_base_prior_ = -25.32844; - - /* "pmercury/protocols/tls.pyx":291 - * cdef double prior_ = -16.81551 # log(1e-6) - * - * if 'domain_mean' in p_ and p_['domain_mean'] < 5.0: # <<<<<<<<<<<<<< - * base_prior_ = -25.32844 # log(1e-11) - * - */ - } - - /* "pmercury/protocols/tls.pyx":295 - * - * # cdef double score_ = 5*prob_process_given_fp if prob_process_given_fp > proc_prior_ else 5*proc_prior_ - * cdef double score_ = prob_process_given_fp if prob_process_given_fp > proc_prior_ else proc_prior_ # <<<<<<<<<<<<<< - * # cdef double score_ = prob_process_given_fp if prob_process_given_fp > base_prior_ else base_prior_ - * cdef double tmp_, trans_prob, prev_proc_prior - */ - if (((__pyx_v_prob_process_given_fp > __pyx_v_proc_prior_) != 0)) { - __pyx_t_7 = __pyx_v_prob_process_given_fp; - } else { - __pyx_t_7 = __pyx_v_proc_prior_; - } - __pyx_v_score_ = __pyx_t_7; - - /* "pmercury/protocols/tls.pyx":299 - * cdef double tmp_, trans_prob, prev_proc_prior - * - * if (endpoint != None and endpoint.prev_flow != None and # <<<<<<<<<<<<<< - * 'analysis' in endpoint.prev_flow and 'probable_processes' in endpoint.prev_flow['analysis']): - * trans_prob = sum([pp_['score']*self.transition_probs[pp_['process']][cur_proc] - */ - __pyx_t_6 = PyObject_RichCompare(__pyx_v_endpoint, Py_None, Py_NE); __Pyx_XGOTREF(__pyx_t_6); if (unlikely(!__pyx_t_6)) __PYX_ERR(0, 299, __pyx_L1_error) - __pyx_t_5 = __Pyx_PyObject_IsTrue(__pyx_t_6); if (unlikely(__pyx_t_5 < 0)) __PYX_ERR(0, 299, __pyx_L1_error) - __Pyx_DECREF(__pyx_t_6); __pyx_t_6 = 0; - if (__pyx_t_5) { - } else { - __pyx_t_3 = __pyx_t_5; - goto __pyx_L7_bool_binop_done; - } - __pyx_t_6 = __Pyx_PyObject_GetAttrStr(__pyx_v_endpoint, __pyx_n_s_prev_flow); if (unlikely(!__pyx_t_6)) __PYX_ERR(0, 299, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_6); - __pyx_t_1 = PyObject_RichCompare(__pyx_t_6, Py_None, Py_NE); __Pyx_XGOTREF(__pyx_t_1); if (unlikely(!__pyx_t_1)) __PYX_ERR(0, 299, __pyx_L1_error) - __Pyx_DECREF(__pyx_t_6); __pyx_t_6 = 0; - __pyx_t_5 = __Pyx_PyObject_IsTrue(__pyx_t_1); if (unlikely(__pyx_t_5 < 0)) __PYX_ERR(0, 299, __pyx_L1_error) - __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0; - if (__pyx_t_5) { - } else { - __pyx_t_3 = __pyx_t_5; - goto __pyx_L7_bool_binop_done; - } - - /* "pmercury/protocols/tls.pyx":300 - * - * if (endpoint != None and endpoint.prev_flow != None and - * 'analysis' in endpoint.prev_flow and 'probable_processes' in endpoint.prev_flow['analysis']): # <<<<<<<<<<<<<< - * trans_prob = sum([pp_['score']*self.transition_probs[pp_['process']][cur_proc] - * for pp_ in endpoint.prev_flow['analysis']['probable_processes'] - */ - __pyx_t_1 = __Pyx_PyObject_GetAttrStr(__pyx_v_endpoint, __pyx_n_s_prev_flow); if (unlikely(!__pyx_t_1)) __PYX_ERR(0, 300, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_1); - __pyx_t_5 = (__Pyx_PySequence_ContainsTF(__pyx_n_u_analysis, __pyx_t_1, Py_EQ)); if (unlikely(__pyx_t_5 < 0)) __PYX_ERR(0, 300, __pyx_L1_error) - __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0; - __pyx_t_4 = (__pyx_t_5 != 0); - if (__pyx_t_4) { - } else { - __pyx_t_3 = __pyx_t_4; - goto __pyx_L7_bool_binop_done; - } - __pyx_t_1 = __Pyx_PyObject_GetAttrStr(__pyx_v_endpoint, __pyx_n_s_prev_flow); if (unlikely(!__pyx_t_1)) __PYX_ERR(0, 300, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_1); - __pyx_t_6 = __Pyx_PyObject_Dict_GetItem(__pyx_t_1, __pyx_n_u_analysis); if (unlikely(!__pyx_t_6)) __PYX_ERR(0, 300, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_6); - __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0; - __pyx_t_4 = (__Pyx_PySequence_ContainsTF(__pyx_n_u_probable_processes, __pyx_t_6, Py_EQ)); if (unlikely(__pyx_t_4 < 0)) __PYX_ERR(0, 300, __pyx_L1_error) - __Pyx_DECREF(__pyx_t_6); __pyx_t_6 = 0; - __pyx_t_5 = (__pyx_t_4 != 0); - __pyx_t_3 = __pyx_t_5; - __pyx_L7_bool_binop_done:; - - /* "pmercury/protocols/tls.pyx":299 - * cdef double tmp_, trans_prob, prev_proc_prior - * - * if (endpoint != None and endpoint.prev_flow != None and # <<<<<<<<<<<<<< - * 'analysis' in endpoint.prev_flow and 'probable_processes' in endpoint.prev_flow['analysis']): - * trans_prob = sum([pp_['score']*self.transition_probs[pp_['process']][cur_proc] - */ - if (__pyx_t_3) { - - /* "pmercury/protocols/tls.pyx":301 - * if (endpoint != None and endpoint.prev_flow != None and - * 'analysis' in endpoint.prev_flow and 'probable_processes' in endpoint.prev_flow['analysis']): - * trans_prob = sum([pp_['score']*self.transition_probs[pp_['process']][cur_proc] # <<<<<<<<<<<<<< - * for pp_ in endpoint.prev_flow['analysis']['probable_processes'] - * if pp_['process'] in self.transition_probs and cur_proc in self.transition_probs[pp_['process']]]) - */ - { /* enter inner scope */ - __pyx_t_6 = PyList_New(0); if (unlikely(!__pyx_t_6)) __PYX_ERR(0, 301, __pyx_L13_error) - __Pyx_GOTREF(__pyx_t_6); - - /* "pmercury/protocols/tls.pyx":302 - * 'analysis' in endpoint.prev_flow and 'probable_processes' in endpoint.prev_flow['analysis']): - * trans_prob = sum([pp_['score']*self.transition_probs[pp_['process']][cur_proc] - * for pp_ in endpoint.prev_flow['analysis']['probable_processes'] # <<<<<<<<<<<<<< - * if pp_['process'] in self.transition_probs and cur_proc in self.transition_probs[pp_['process']]]) - * prev_proc_prior = base_prior_ - */ - __pyx_t_1 = __Pyx_PyObject_GetAttrStr(__pyx_v_endpoint, __pyx_n_s_prev_flow); if (unlikely(!__pyx_t_1)) __PYX_ERR(0, 302, __pyx_L13_error) - __Pyx_GOTREF(__pyx_t_1); - __pyx_t_8 = __Pyx_PyObject_Dict_GetItem(__pyx_t_1, __pyx_n_u_analysis); if (unlikely(!__pyx_t_8)) __PYX_ERR(0, 302, __pyx_L13_error) - __Pyx_GOTREF(__pyx_t_8); - __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0; - __pyx_t_1 = __Pyx_PyObject_Dict_GetItem(__pyx_t_8, __pyx_n_u_probable_processes); if (unlikely(!__pyx_t_1)) __PYX_ERR(0, 302, __pyx_L13_error) - __Pyx_GOTREF(__pyx_t_1); - __Pyx_DECREF(__pyx_t_8); __pyx_t_8 = 0; - if (likely(PyList_CheckExact(__pyx_t_1)) || PyTuple_CheckExact(__pyx_t_1)) { - __pyx_t_8 = __pyx_t_1; __Pyx_INCREF(__pyx_t_8); __pyx_t_9 = 0; - __pyx_t_10 = NULL; - } else { - __pyx_t_9 = -1; __pyx_t_8 = PyObject_GetIter(__pyx_t_1); if (unlikely(!__pyx_t_8)) __PYX_ERR(0, 302, __pyx_L13_error) - __Pyx_GOTREF(__pyx_t_8); - __pyx_t_10 = Py_TYPE(__pyx_t_8)->tp_iternext; if (unlikely(!__pyx_t_10)) __PYX_ERR(0, 302, __pyx_L13_error) - } - __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0; - for (;;) { - if (likely(!__pyx_t_10)) { - if (likely(PyList_CheckExact(__pyx_t_8))) { - if (__pyx_t_9 >= PyList_GET_SIZE(__pyx_t_8)) break; - #if CYTHON_ASSUME_SAFE_MACROS && !CYTHON_AVOID_BORROWED_REFS - __pyx_t_1 = PyList_GET_ITEM(__pyx_t_8, __pyx_t_9); __Pyx_INCREF(__pyx_t_1); __pyx_t_9++; if (unlikely(0 < 0)) __PYX_ERR(0, 302, __pyx_L13_error) - #else - __pyx_t_1 = PySequence_ITEM(__pyx_t_8, __pyx_t_9); __pyx_t_9++; if (unlikely(!__pyx_t_1)) __PYX_ERR(0, 302, __pyx_L13_error) - __Pyx_GOTREF(__pyx_t_1); - #endif - } else { - if (__pyx_t_9 >= PyTuple_GET_SIZE(__pyx_t_8)) break; - #if CYTHON_ASSUME_SAFE_MACROS && !CYTHON_AVOID_BORROWED_REFS - __pyx_t_1 = PyTuple_GET_ITEM(__pyx_t_8, __pyx_t_9); __Pyx_INCREF(__pyx_t_1); __pyx_t_9++; if (unlikely(0 < 0)) __PYX_ERR(0, 302, __pyx_L13_error) - #else - __pyx_t_1 = PySequence_ITEM(__pyx_t_8, __pyx_t_9); __pyx_t_9++; if (unlikely(!__pyx_t_1)) __PYX_ERR(0, 302, __pyx_L13_error) - __Pyx_GOTREF(__pyx_t_1); - #endif - } - } else { - __pyx_t_1 = __pyx_t_10(__pyx_t_8); - if (unlikely(!__pyx_t_1)) { - PyObject* exc_type = PyErr_Occurred(); - if (exc_type) { - if (likely(__Pyx_PyErr_GivenExceptionMatches(exc_type, PyExc_StopIteration))) PyErr_Clear(); - else __PYX_ERR(0, 302, __pyx_L13_error) - } - break; - } - __Pyx_GOTREF(__pyx_t_1); - } - __Pyx_XDECREF_SET(__pyx_8genexpr3__pyx_v_pp_, __pyx_t_1); - __pyx_t_1 = 0; - - /* "pmercury/protocols/tls.pyx":303 - * trans_prob = sum([pp_['score']*self.transition_probs[pp_['process']][cur_proc] - * for pp_ in endpoint.prev_flow['analysis']['probable_processes'] - * if pp_['process'] in self.transition_probs and cur_proc in self.transition_probs[pp_['process']]]) # <<<<<<<<<<<<<< - * prev_proc_prior = base_prior_ - * if trans_prob > 0: - */ - __pyx_t_1 = __Pyx_PyObject_Dict_GetItem(__pyx_8genexpr3__pyx_v_pp_, __pyx_n_u_process); if (unlikely(!__pyx_t_1)) __PYX_ERR(0, 303, __pyx_L13_error) - __Pyx_GOTREF(__pyx_t_1); - if (unlikely(__pyx_v_self->transition_probs == Py_None)) { - PyErr_SetString(PyExc_TypeError, "'NoneType' object is not iterable"); - __PYX_ERR(0, 303, __pyx_L13_error) - } - __pyx_t_5 = (__Pyx_PyDict_ContainsTF(__pyx_t_1, __pyx_v_self->transition_probs, Py_EQ)); if (unlikely(__pyx_t_5 < 0)) __PYX_ERR(0, 303, __pyx_L13_error) - __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0; - __pyx_t_4 = (__pyx_t_5 != 0); - if (__pyx_t_4) { - } else { - __pyx_t_3 = __pyx_t_4; - goto __pyx_L17_bool_binop_done; - } - if (unlikely(__pyx_v_self->transition_probs == Py_None)) { - PyErr_SetString(PyExc_TypeError, "'NoneType' object is not subscriptable"); - __PYX_ERR(0, 303, __pyx_L13_error) - } - __pyx_t_1 = __Pyx_PyObject_Dict_GetItem(__pyx_8genexpr3__pyx_v_pp_, __pyx_n_u_process); if (unlikely(!__pyx_t_1)) __PYX_ERR(0, 303, __pyx_L13_error) - __Pyx_GOTREF(__pyx_t_1); - __pyx_t_11 = __Pyx_PyDict_GetItem(__pyx_v_self->transition_probs, __pyx_t_1); if (unlikely(!__pyx_t_11)) __PYX_ERR(0, 303, __pyx_L13_error) - __Pyx_GOTREF(__pyx_t_11); - __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0; - __pyx_t_4 = (__Pyx_PySequence_ContainsTF(__pyx_v_cur_proc, __pyx_t_11, Py_EQ)); if (unlikely(__pyx_t_4 < 0)) __PYX_ERR(0, 303, __pyx_L13_error) - __Pyx_DECREF(__pyx_t_11); __pyx_t_11 = 0; - __pyx_t_5 = (__pyx_t_4 != 0); - __pyx_t_3 = __pyx_t_5; - __pyx_L17_bool_binop_done:; - if (__pyx_t_3) { - - /* "pmercury/protocols/tls.pyx":301 - * if (endpoint != None and endpoint.prev_flow != None and - * 'analysis' in endpoint.prev_flow and 'probable_processes' in endpoint.prev_flow['analysis']): - * trans_prob = sum([pp_['score']*self.transition_probs[pp_['process']][cur_proc] # <<<<<<<<<<<<<< - * for pp_ in endpoint.prev_flow['analysis']['probable_processes'] - * if pp_['process'] in self.transition_probs and cur_proc in self.transition_probs[pp_['process']]]) - */ - __pyx_t_11 = __Pyx_PyObject_Dict_GetItem(__pyx_8genexpr3__pyx_v_pp_, __pyx_n_u_score); if (unlikely(!__pyx_t_11)) __PYX_ERR(0, 301, __pyx_L13_error) - __Pyx_GOTREF(__pyx_t_11); - if (unlikely(__pyx_v_self->transition_probs == Py_None)) { - PyErr_SetString(PyExc_TypeError, "'NoneType' object is not subscriptable"); - __PYX_ERR(0, 301, __pyx_L13_error) - } - __pyx_t_1 = __Pyx_PyObject_Dict_GetItem(__pyx_8genexpr3__pyx_v_pp_, __pyx_n_u_process); if (unlikely(!__pyx_t_1)) __PYX_ERR(0, 301, __pyx_L13_error) - __Pyx_GOTREF(__pyx_t_1); - __pyx_t_12 = __Pyx_PyDict_GetItem(__pyx_v_self->transition_probs, __pyx_t_1); if (unlikely(!__pyx_t_12)) __PYX_ERR(0, 301, __pyx_L13_error) - __Pyx_GOTREF(__pyx_t_12); - __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0; - __pyx_t_1 = __Pyx_PyObject_Dict_GetItem(__pyx_t_12, __pyx_v_cur_proc); if (unlikely(!__pyx_t_1)) __PYX_ERR(0, 301, __pyx_L13_error) - __Pyx_GOTREF(__pyx_t_1); - __Pyx_DECREF(__pyx_t_12); __pyx_t_12 = 0; - __pyx_t_12 = PyNumber_Multiply(__pyx_t_11, __pyx_t_1); if (unlikely(!__pyx_t_12)) __PYX_ERR(0, 301, __pyx_L13_error) - __Pyx_GOTREF(__pyx_t_12); - __Pyx_DECREF(__pyx_t_11); __pyx_t_11 = 0; - __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0; - if (unlikely(__Pyx_ListComp_Append(__pyx_t_6, (PyObject*)__pyx_t_12))) __PYX_ERR(0, 301, __pyx_L13_error) - __Pyx_DECREF(__pyx_t_12); __pyx_t_12 = 0; - - /* "pmercury/protocols/tls.pyx":303 - * trans_prob = sum([pp_['score']*self.transition_probs[pp_['process']][cur_proc] - * for pp_ in endpoint.prev_flow['analysis']['probable_processes'] - * if pp_['process'] in self.transition_probs and cur_proc in self.transition_probs[pp_['process']]]) # <<<<<<<<<<<<<< - * prev_proc_prior = base_prior_ - * if trans_prob > 0: - */ - } - - /* "pmercury/protocols/tls.pyx":302 - * 'analysis' in endpoint.prev_flow and 'probable_processes' in endpoint.prev_flow['analysis']): - * trans_prob = sum([pp_['score']*self.transition_probs[pp_['process']][cur_proc] - * for pp_ in endpoint.prev_flow['analysis']['probable_processes'] # <<<<<<<<<<<<<< - * if pp_['process'] in self.transition_probs and cur_proc in self.transition_probs[pp_['process']]]) - * prev_proc_prior = base_prior_ - */ - } - __Pyx_DECREF(__pyx_t_8); __pyx_t_8 = 0; - __Pyx_XDECREF(__pyx_8genexpr3__pyx_v_pp_); __pyx_8genexpr3__pyx_v_pp_ = 0; - goto __pyx_L19_exit_scope; - __pyx_L13_error:; - __Pyx_XDECREF(__pyx_8genexpr3__pyx_v_pp_); __pyx_8genexpr3__pyx_v_pp_ = 0; - goto __pyx_L1_error; - __pyx_L19_exit_scope:; - } /* exit inner scope */ - - /* "pmercury/protocols/tls.pyx":301 - * if (endpoint != None and endpoint.prev_flow != None and - * 'analysis' in endpoint.prev_flow and 'probable_processes' in endpoint.prev_flow['analysis']): - * trans_prob = sum([pp_['score']*self.transition_probs[pp_['process']][cur_proc] # <<<<<<<<<<<<<< - * for pp_ in endpoint.prev_flow['analysis']['probable_processes'] - * if pp_['process'] in self.transition_probs and cur_proc in self.transition_probs[pp_['process']]]) - */ - __pyx_t_8 = __Pyx_PyObject_CallOneArg(__pyx_builtin_sum, __pyx_t_6); if (unlikely(!__pyx_t_8)) __PYX_ERR(0, 301, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_8); - __Pyx_DECREF(__pyx_t_6); __pyx_t_6 = 0; - __pyx_t_7 = __pyx_PyFloat_AsDouble(__pyx_t_8); if (unlikely((__pyx_t_7 == (double)-1) && PyErr_Occurred())) __PYX_ERR(0, 301, __pyx_L1_error) - __Pyx_DECREF(__pyx_t_8); __pyx_t_8 = 0; - __pyx_v_trans_prob = __pyx_t_7; - - /* "pmercury/protocols/tls.pyx":304 - * for pp_ in endpoint.prev_flow['analysis']['probable_processes'] - * if pp_['process'] in self.transition_probs and cur_proc in self.transition_probs[pp_['process']]]) - * prev_proc_prior = base_prior_ # <<<<<<<<<<<<<< - * if trans_prob > 0: - * prev_proc_prior = log(trans_prob) - */ - __pyx_v_prev_proc_prior = __pyx_v_base_prior_; - - /* "pmercury/protocols/tls.pyx":305 - * if pp_['process'] in self.transition_probs and cur_proc in self.transition_probs[pp_['process']]]) - * prev_proc_prior = base_prior_ - * if trans_prob > 0: # <<<<<<<<<<<<<< - * prev_proc_prior = log(trans_prob) - * score_ += base_prior_ if base_prior_> prev_proc_prior else prev_proc_prior - */ - __pyx_t_3 = ((__pyx_v_trans_prob > 0.0) != 0); - if (__pyx_t_3) { - - /* "pmercury/protocols/tls.pyx":306 - * prev_proc_prior = base_prior_ - * if trans_prob > 0: - * prev_proc_prior = log(trans_prob) # <<<<<<<<<<<<<< - * score_ += base_prior_ if base_prior_> prev_proc_prior else prev_proc_prior - * - */ - __pyx_v_prev_proc_prior = log(__pyx_v_trans_prob); - - /* "pmercury/protocols/tls.pyx":305 - * if pp_['process'] in self.transition_probs and cur_proc in self.transition_probs[pp_['process']]]) - * prev_proc_prior = base_prior_ - * if trans_prob > 0: # <<<<<<<<<<<<<< - * prev_proc_prior = log(trans_prob) - * score_ += base_prior_ if base_prior_> prev_proc_prior else prev_proc_prior - */ - } - - /* "pmercury/protocols/tls.pyx":307 - * if trans_prob > 0: - * prev_proc_prior = log(trans_prob) - * score_ += base_prior_ if base_prior_> prev_proc_prior else prev_proc_prior # <<<<<<<<<<<<<< - * - * if endpoint != None and 'os_info' in p_: - */ - if (((__pyx_v_base_prior_ > __pyx_v_prev_proc_prior) != 0)) { - __pyx_t_7 = __pyx_v_base_prior_; - } else { - __pyx_t_7 = __pyx_v_prev_proc_prior; - } - __pyx_v_score_ = (__pyx_v_score_ + __pyx_t_7); - - /* "pmercury/protocols/tls.pyx":299 - * cdef double tmp_, trans_prob, prev_proc_prior - * - * if (endpoint != None and endpoint.prev_flow != None and # <<<<<<<<<<<<<< - * 'analysis' in endpoint.prev_flow and 'probable_processes' in endpoint.prev_flow['analysis']): - * trans_prob = sum([pp_['score']*self.transition_probs[pp_['process']][cur_proc] - */ - } - - /* "pmercury/protocols/tls.pyx":309 - * score_ += base_prior_ if base_prior_> prev_proc_prior else prev_proc_prior - * - * if endpoint != None and 'os_info' in p_: # <<<<<<<<<<<<<< - * os_info = endpoint.get_os() - * if len(os_info) > 0: - */ - __pyx_t_8 = PyObject_RichCompare(__pyx_v_endpoint, Py_None, Py_NE); __Pyx_XGOTREF(__pyx_t_8); if (unlikely(!__pyx_t_8)) __PYX_ERR(0, 309, __pyx_L1_error) - __pyx_t_5 = __Pyx_PyObject_IsTrue(__pyx_t_8); if (unlikely(__pyx_t_5 < 0)) __PYX_ERR(0, 309, __pyx_L1_error) - __Pyx_DECREF(__pyx_t_8); __pyx_t_8 = 0; - if (__pyx_t_5) { - } else { - __pyx_t_3 = __pyx_t_5; - goto __pyx_L22_bool_binop_done; - } - if (unlikely(__pyx_v_p_ == Py_None)) { - PyErr_SetString(PyExc_TypeError, "'NoneType' object is not iterable"); - __PYX_ERR(0, 309, __pyx_L1_error) - } - __pyx_t_5 = (__Pyx_PyDict_ContainsTF(__pyx_n_u_os_info, __pyx_v_p_, Py_EQ)); if (unlikely(__pyx_t_5 < 0)) __PYX_ERR(0, 309, __pyx_L1_error) - __pyx_t_4 = (__pyx_t_5 != 0); - __pyx_t_3 = __pyx_t_4; - __pyx_L22_bool_binop_done:; - if (__pyx_t_3) { - - /* "pmercury/protocols/tls.pyx":310 - * - * if endpoint != None and 'os_info' in p_: - * os_info = endpoint.get_os() # <<<<<<<<<<<<<< - * if len(os_info) > 0: - * k = next(iter(os_info.keys())) - */ - __pyx_t_6 = __Pyx_PyObject_GetAttrStr(__pyx_v_endpoint, __pyx_n_s_get_os); if (unlikely(!__pyx_t_6)) __PYX_ERR(0, 310, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_6); - __pyx_t_12 = NULL; - if (CYTHON_UNPACK_METHODS && likely(PyMethod_Check(__pyx_t_6))) { - __pyx_t_12 = PyMethod_GET_SELF(__pyx_t_6); - if (likely(__pyx_t_12)) { - PyObject* function = PyMethod_GET_FUNCTION(__pyx_t_6); - __Pyx_INCREF(__pyx_t_12); - __Pyx_INCREF(function); - __Pyx_DECREF_SET(__pyx_t_6, function); - } - } - __pyx_t_8 = (__pyx_t_12) ? __Pyx_PyObject_CallOneArg(__pyx_t_6, __pyx_t_12) : __Pyx_PyObject_CallNoArg(__pyx_t_6); - __Pyx_XDECREF(__pyx_t_12); __pyx_t_12 = 0; - if (unlikely(!__pyx_t_8)) __PYX_ERR(0, 310, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_8); - __Pyx_DECREF(__pyx_t_6); __pyx_t_6 = 0; - __pyx_v_os_info = __pyx_t_8; - __pyx_t_8 = 0; - - /* "pmercury/protocols/tls.pyx":311 - * if endpoint != None and 'os_info' in p_: - * os_info = endpoint.get_os() - * if len(os_info) > 0: # <<<<<<<<<<<<<< - * k = next(iter(os_info.keys())) - * if k in p_['os_info']: - */ - __pyx_t_9 = PyObject_Length(__pyx_v_os_info); if (unlikely(__pyx_t_9 == ((Py_ssize_t)-1))) __PYX_ERR(0, 311, __pyx_L1_error) - __pyx_t_3 = ((__pyx_t_9 > 0) != 0); - if (__pyx_t_3) { - - /* "pmercury/protocols/tls.pyx":312 - * os_info = endpoint.get_os() - * if len(os_info) > 0: - * k = next(iter(os_info.keys())) # <<<<<<<<<<<<<< - * if k in p_['os_info']: - * tmp_ = log((p_['os_info'][k]/p_count)*p_['os_info'][k]/fp_tc_) - */ - __pyx_t_6 = __Pyx_PyObject_GetAttrStr(__pyx_v_os_info, __pyx_n_s_keys); if (unlikely(!__pyx_t_6)) __PYX_ERR(0, 312, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_6); - __pyx_t_12 = NULL; - if (CYTHON_UNPACK_METHODS && likely(PyMethod_Check(__pyx_t_6))) { - __pyx_t_12 = PyMethod_GET_SELF(__pyx_t_6); - if (likely(__pyx_t_12)) { - PyObject* function = PyMethod_GET_FUNCTION(__pyx_t_6); - __Pyx_INCREF(__pyx_t_12); - __Pyx_INCREF(function); - __Pyx_DECREF_SET(__pyx_t_6, function); - } - } - __pyx_t_8 = (__pyx_t_12) ? __Pyx_PyObject_CallOneArg(__pyx_t_6, __pyx_t_12) : __Pyx_PyObject_CallNoArg(__pyx_t_6); - __Pyx_XDECREF(__pyx_t_12); __pyx_t_12 = 0; - if (unlikely(!__pyx_t_8)) __PYX_ERR(0, 312, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_8); - __Pyx_DECREF(__pyx_t_6); __pyx_t_6 = 0; - __pyx_t_6 = PyObject_GetIter(__pyx_t_8); if (unlikely(!__pyx_t_6)) __PYX_ERR(0, 312, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_6); - __Pyx_DECREF(__pyx_t_8); __pyx_t_8 = 0; - __pyx_t_8 = __Pyx_PyIter_Next(__pyx_t_6); if (unlikely(!__pyx_t_8)) __PYX_ERR(0, 312, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_8); - __Pyx_DECREF(__pyx_t_6); __pyx_t_6 = 0; - __pyx_v_k = __pyx_t_8; - __pyx_t_8 = 0; - - /* "pmercury/protocols/tls.pyx":313 - * if len(os_info) > 0: - * k = next(iter(os_info.keys())) - * if k in p_['os_info']: # <<<<<<<<<<<<<< - * tmp_ = log((p_['os_info'][k]/p_count)*p_['os_info'][k]/fp_tc_) - * score_ += tmp_ if tmp_ > prior_ else prior_ - */ - if (unlikely(__pyx_v_p_ == Py_None)) { - PyErr_SetString(PyExc_TypeError, "'NoneType' object is not subscriptable"); - __PYX_ERR(0, 313, __pyx_L1_error) - } - __pyx_t_8 = __Pyx_PyDict_GetItem(__pyx_v_p_, __pyx_n_u_os_info); if (unlikely(!__pyx_t_8)) __PYX_ERR(0, 313, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_8); - __pyx_t_3 = (__Pyx_PySequence_ContainsTF(__pyx_v_k, __pyx_t_8, Py_EQ)); if (unlikely(__pyx_t_3 < 0)) __PYX_ERR(0, 313, __pyx_L1_error) - __Pyx_DECREF(__pyx_t_8); __pyx_t_8 = 0; - __pyx_t_4 = (__pyx_t_3 != 0); - if (__pyx_t_4) { - - /* "pmercury/protocols/tls.pyx":314 - * k = next(iter(os_info.keys())) - * if k in p_['os_info']: - * tmp_ = log((p_['os_info'][k]/p_count)*p_['os_info'][k]/fp_tc_) # <<<<<<<<<<<<<< - * score_ += tmp_ if tmp_ > prior_ else prior_ - * else: - */ - if (unlikely(__pyx_v_p_ == Py_None)) { - PyErr_SetString(PyExc_TypeError, "'NoneType' object is not subscriptable"); - __PYX_ERR(0, 314, __pyx_L1_error) - } - __pyx_t_8 = __Pyx_PyDict_GetItem(__pyx_v_p_, __pyx_n_u_os_info); if (unlikely(!__pyx_t_8)) __PYX_ERR(0, 314, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_8); - __pyx_t_6 = __Pyx_PyObject_GetItem(__pyx_t_8, __pyx_v_k); if (unlikely(!__pyx_t_6)) __PYX_ERR(0, 314, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_6); - __Pyx_DECREF(__pyx_t_8); __pyx_t_8 = 0; - __pyx_t_8 = __Pyx_PyInt_From_uint64_t(__pyx_v_p_count); if (unlikely(!__pyx_t_8)) __PYX_ERR(0, 314, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_8); - __pyx_t_12 = __Pyx_PyNumber_Divide(__pyx_t_6, __pyx_t_8); if (unlikely(!__pyx_t_12)) __PYX_ERR(0, 314, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_12); - __Pyx_DECREF(__pyx_t_6); __pyx_t_6 = 0; - __Pyx_DECREF(__pyx_t_8); __pyx_t_8 = 0; - if (unlikely(__pyx_v_p_ == Py_None)) { - PyErr_SetString(PyExc_TypeError, "'NoneType' object is not subscriptable"); - __PYX_ERR(0, 314, __pyx_L1_error) - } - __pyx_t_8 = __Pyx_PyDict_GetItem(__pyx_v_p_, __pyx_n_u_os_info); if (unlikely(!__pyx_t_8)) __PYX_ERR(0, 314, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_8); - __pyx_t_6 = __Pyx_PyObject_GetItem(__pyx_t_8, __pyx_v_k); if (unlikely(!__pyx_t_6)) __PYX_ERR(0, 314, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_6); - __Pyx_DECREF(__pyx_t_8); __pyx_t_8 = 0; - __pyx_t_8 = PyNumber_Multiply(__pyx_t_12, __pyx_t_6); if (unlikely(!__pyx_t_8)) __PYX_ERR(0, 314, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_8); - __Pyx_DECREF(__pyx_t_12); __pyx_t_12 = 0; - __Pyx_DECREF(__pyx_t_6); __pyx_t_6 = 0; - __pyx_t_6 = PyFloat_FromDouble(__pyx_v_fp_tc_); if (unlikely(!__pyx_t_6)) __PYX_ERR(0, 314, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_6); - __pyx_t_12 = __Pyx_PyNumber_Divide(__pyx_t_8, __pyx_t_6); if (unlikely(!__pyx_t_12)) __PYX_ERR(0, 314, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_12); - __Pyx_DECREF(__pyx_t_8); __pyx_t_8 = 0; - __Pyx_DECREF(__pyx_t_6); __pyx_t_6 = 0; - __pyx_t_7 = __pyx_PyFloat_AsDouble(__pyx_t_12); if (unlikely((__pyx_t_7 == (double)-1) && PyErr_Occurred())) __PYX_ERR(0, 314, __pyx_L1_error) - __Pyx_DECREF(__pyx_t_12); __pyx_t_12 = 0; - __pyx_v_tmp_ = log(__pyx_t_7); - - /* "pmercury/protocols/tls.pyx":315 - * if k in p_['os_info']: - * tmp_ = log((p_['os_info'][k]/p_count)*p_['os_info'][k]/fp_tc_) - * score_ += tmp_ if tmp_ > prior_ else prior_ # <<<<<<<<<<<<<< - * else: - * score_ += base_prior_ - */ - if (((__pyx_v_tmp_ > __pyx_v_prior_) != 0)) { - __pyx_t_7 = __pyx_v_tmp_; - } else { - __pyx_t_7 = __pyx_v_prior_; - } - __pyx_v_score_ = (__pyx_v_score_ + __pyx_t_7); - - /* "pmercury/protocols/tls.pyx":313 - * if len(os_info) > 0: - * k = next(iter(os_info.keys())) - * if k in p_['os_info']: # <<<<<<<<<<<<<< - * tmp_ = log((p_['os_info'][k]/p_count)*p_['os_info'][k]/fp_tc_) - * score_ += tmp_ if tmp_ > prior_ else prior_ - */ - goto __pyx_L25; - } - - /* "pmercury/protocols/tls.pyx":317 - * score_ += tmp_ if tmp_ > prior_ else prior_ - * else: - * score_ += base_prior_ # <<<<<<<<<<<<<< - * - * try: - */ - /*else*/ { - __pyx_v_score_ = (__pyx_v_score_ + __pyx_v_base_prior_); - } - __pyx_L25:; - - /* "pmercury/protocols/tls.pyx":311 - * if endpoint != None and 'os_info' in p_: - * os_info = endpoint.get_os() - * if len(os_info) > 0: # <<<<<<<<<<<<<< - * k = next(iter(os_info.keys())) - * if k in p_['os_info']: - */ - } - - /* "pmercury/protocols/tls.pyx":309 - * score_ += base_prior_ if base_prior_> prev_proc_prior else prev_proc_prior - * - * if endpoint != None and 'os_info' in p_: # <<<<<<<<<<<<<< - * os_info = endpoint.get_os() - * if len(os_info) > 0: - */ - } - - /* "pmercury/protocols/tls.pyx":319 - * score_ += base_prior_ - * - * try: # <<<<<<<<<<<<<< - * tmp_ = log((p_['classes_ip_as'][features[0]]/p_count)*p_['classes_ip_as'][features[0]]/fp_tc_) - * # tmp_ = log(p_['classes_ip_as'][features[0]]/fp_tc_) - */ - { - __Pyx_PyThreadState_declare - __Pyx_PyThreadState_assign - __Pyx_ExceptionSave(&__pyx_t_13, &__pyx_t_14, &__pyx_t_15); - __Pyx_XGOTREF(__pyx_t_13); - __Pyx_XGOTREF(__pyx_t_14); - __Pyx_XGOTREF(__pyx_t_15); - /*try:*/ { - - /* "pmercury/protocols/tls.pyx":320 - * - * try: - * tmp_ = log((p_['classes_ip_as'][features[0]]/p_count)*p_['classes_ip_as'][features[0]]/fp_tc_) # <<<<<<<<<<<<<< - * # tmp_ = log(p_['classes_ip_as'][features[0]]/fp_tc_) - * # tmp_ = log(p_['classes_ip_as'][features[0]]/p_count) - */ - if (unlikely(__pyx_v_p_ == Py_None)) { - PyErr_SetString(PyExc_TypeError, "'NoneType' object is not subscriptable"); - __PYX_ERR(0, 320, __pyx_L26_error) - } - __pyx_t_12 = __Pyx_PyDict_GetItem(__pyx_v_p_, __pyx_n_u_classes_ip_as); if (unlikely(!__pyx_t_12)) __PYX_ERR(0, 320, __pyx_L26_error) - __Pyx_GOTREF(__pyx_t_12); - if (unlikely(__pyx_v_features == Py_None)) { - PyErr_SetString(PyExc_TypeError, "'NoneType' object is not subscriptable"); - __PYX_ERR(0, 320, __pyx_L26_error) - } - __pyx_t_6 = __Pyx_GetItemInt_List(__pyx_v_features, 0, long, 1, __Pyx_PyInt_From_long, 1, 0, 1); if (unlikely(!__pyx_t_6)) __PYX_ERR(0, 320, __pyx_L26_error) - __Pyx_GOTREF(__pyx_t_6); - __pyx_t_8 = __Pyx_PyObject_GetItem(__pyx_t_12, __pyx_t_6); if (unlikely(!__pyx_t_8)) __PYX_ERR(0, 320, __pyx_L26_error) - __Pyx_GOTREF(__pyx_t_8); - __Pyx_DECREF(__pyx_t_12); __pyx_t_12 = 0; - __Pyx_DECREF(__pyx_t_6); __pyx_t_6 = 0; - __pyx_t_6 = __Pyx_PyInt_From_uint64_t(__pyx_v_p_count); if (unlikely(!__pyx_t_6)) __PYX_ERR(0, 320, __pyx_L26_error) - __Pyx_GOTREF(__pyx_t_6); - __pyx_t_12 = __Pyx_PyNumber_Divide(__pyx_t_8, __pyx_t_6); if (unlikely(!__pyx_t_12)) __PYX_ERR(0, 320, __pyx_L26_error) - __Pyx_GOTREF(__pyx_t_12); - __Pyx_DECREF(__pyx_t_8); __pyx_t_8 = 0; - __Pyx_DECREF(__pyx_t_6); __pyx_t_6 = 0; - if (unlikely(__pyx_v_p_ == Py_None)) { - PyErr_SetString(PyExc_TypeError, "'NoneType' object is not subscriptable"); - __PYX_ERR(0, 320, __pyx_L26_error) - } - __pyx_t_6 = __Pyx_PyDict_GetItem(__pyx_v_p_, __pyx_n_u_classes_ip_as); if (unlikely(!__pyx_t_6)) __PYX_ERR(0, 320, __pyx_L26_error) - __Pyx_GOTREF(__pyx_t_6); - if (unlikely(__pyx_v_features == Py_None)) { - PyErr_SetString(PyExc_TypeError, "'NoneType' object is not subscriptable"); - __PYX_ERR(0, 320, __pyx_L26_error) - } - __pyx_t_8 = __Pyx_GetItemInt_List(__pyx_v_features, 0, long, 1, __Pyx_PyInt_From_long, 1, 0, 1); if (unlikely(!__pyx_t_8)) __PYX_ERR(0, 320, __pyx_L26_error) - __Pyx_GOTREF(__pyx_t_8); - __pyx_t_1 = __Pyx_PyObject_GetItem(__pyx_t_6, __pyx_t_8); if (unlikely(!__pyx_t_1)) __PYX_ERR(0, 320, __pyx_L26_error) - __Pyx_GOTREF(__pyx_t_1); - __Pyx_DECREF(__pyx_t_6); __pyx_t_6 = 0; - __Pyx_DECREF(__pyx_t_8); __pyx_t_8 = 0; - __pyx_t_8 = PyNumber_Multiply(__pyx_t_12, __pyx_t_1); if (unlikely(!__pyx_t_8)) __PYX_ERR(0, 320, __pyx_L26_error) - __Pyx_GOTREF(__pyx_t_8); - __Pyx_DECREF(__pyx_t_12); __pyx_t_12 = 0; - __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0; - __pyx_t_1 = PyFloat_FromDouble(__pyx_v_fp_tc_); if (unlikely(!__pyx_t_1)) __PYX_ERR(0, 320, __pyx_L26_error) - __Pyx_GOTREF(__pyx_t_1); - __pyx_t_12 = __Pyx_PyNumber_Divide(__pyx_t_8, __pyx_t_1); if (unlikely(!__pyx_t_12)) __PYX_ERR(0, 320, __pyx_L26_error) - __Pyx_GOTREF(__pyx_t_12); - __Pyx_DECREF(__pyx_t_8); __pyx_t_8 = 0; - __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0; - __pyx_t_7 = __pyx_PyFloat_AsDouble(__pyx_t_12); if (unlikely((__pyx_t_7 == (double)-1) && PyErr_Occurred())) __PYX_ERR(0, 320, __pyx_L26_error) - __Pyx_DECREF(__pyx_t_12); __pyx_t_12 = 0; - __pyx_v_tmp_ = log(__pyx_t_7); - - /* "pmercury/protocols/tls.pyx":323 - * # tmp_ = log(p_['classes_ip_as'][features[0]]/fp_tc_) - * # tmp_ = log(p_['classes_ip_as'][features[0]]/p_count) - * score_ += tmp_ if tmp_ > prior_ else prior_ # <<<<<<<<<<<<<< - * except KeyError: - * score_ += base_prior_ - */ - if (((__pyx_v_tmp_ > __pyx_v_prior_) != 0)) { - __pyx_t_7 = __pyx_v_tmp_; - } else { - __pyx_t_7 = __pyx_v_prior_; - } - __pyx_v_score_ = (__pyx_v_score_ + __pyx_t_7); - - /* "pmercury/protocols/tls.pyx":319 - * score_ += base_prior_ - * - * try: # <<<<<<<<<<<<<< - * tmp_ = log((p_['classes_ip_as'][features[0]]/p_count)*p_['classes_ip_as'][features[0]]/fp_tc_) - * # tmp_ = log(p_['classes_ip_as'][features[0]]/fp_tc_) - */ - } - __Pyx_XDECREF(__pyx_t_13); __pyx_t_13 = 0; - __Pyx_XDECREF(__pyx_t_14); __pyx_t_14 = 0; - __Pyx_XDECREF(__pyx_t_15); __pyx_t_15 = 0; - goto __pyx_L31_try_end; - __pyx_L26_error:; - __Pyx_XDECREF(__pyx_t_1); __pyx_t_1 = 0; - __Pyx_XDECREF(__pyx_t_11); __pyx_t_11 = 0; - __Pyx_XDECREF(__pyx_t_12); __pyx_t_12 = 0; - __Pyx_XDECREF(__pyx_t_6); __pyx_t_6 = 0; - __Pyx_XDECREF(__pyx_t_8); __pyx_t_8 = 0; - - /* "pmercury/protocols/tls.pyx":324 - * # tmp_ = log(p_['classes_ip_as'][features[0]]/p_count) - * score_ += tmp_ if tmp_ > prior_ else prior_ - * except KeyError: # <<<<<<<<<<<<<< - * score_ += base_prior_ - * - */ - __pyx_t_16 = __Pyx_PyErr_ExceptionMatches(__pyx_builtin_KeyError); - if (__pyx_t_16) { - __Pyx_AddTraceback("pmercury.protocols.tls.TLS.compute_score", __pyx_clineno, __pyx_lineno, __pyx_filename); - if (__Pyx_GetException(&__pyx_t_12, &__pyx_t_1, &__pyx_t_8) < 0) __PYX_ERR(0, 324, __pyx_L28_except_error) - __Pyx_GOTREF(__pyx_t_12); - __Pyx_GOTREF(__pyx_t_1); - __Pyx_GOTREF(__pyx_t_8); - - /* "pmercury/protocols/tls.pyx":325 - * score_ += tmp_ if tmp_ > prior_ else prior_ - * except KeyError: - * score_ += base_prior_ # <<<<<<<<<<<<<< - * - * try: - */ - __pyx_v_score_ = (__pyx_v_score_ + __pyx_v_base_prior_); - __Pyx_XDECREF(__pyx_t_12); __pyx_t_12 = 0; - __Pyx_XDECREF(__pyx_t_1); __pyx_t_1 = 0; - __Pyx_XDECREF(__pyx_t_8); __pyx_t_8 = 0; - goto __pyx_L27_exception_handled; - } - goto __pyx_L28_except_error; - __pyx_L28_except_error:; - - /* "pmercury/protocols/tls.pyx":319 - * score_ += base_prior_ - * - * try: # <<<<<<<<<<<<<< - * tmp_ = log((p_['classes_ip_as'][features[0]]/p_count)*p_['classes_ip_as'][features[0]]/fp_tc_) - * # tmp_ = log(p_['classes_ip_as'][features[0]]/fp_tc_) - */ - __Pyx_XGIVEREF(__pyx_t_13); - __Pyx_XGIVEREF(__pyx_t_14); - __Pyx_XGIVEREF(__pyx_t_15); - __Pyx_ExceptionReset(__pyx_t_13, __pyx_t_14, __pyx_t_15); - goto __pyx_L1_error; - __pyx_L27_exception_handled:; - __Pyx_XGIVEREF(__pyx_t_13); - __Pyx_XGIVEREF(__pyx_t_14); - __Pyx_XGIVEREF(__pyx_t_15); - __Pyx_ExceptionReset(__pyx_t_13, __pyx_t_14, __pyx_t_15); - __pyx_L31_try_end:; - } - - /* "pmercury/protocols/tls.pyx":327 - * score_ += base_prior_ - * - * try: # <<<<<<<<<<<<<< - * tmp_ = log((p_['classes_hostname_domains'][features[1]]/p_count)*p_['classes_hostname_domains'][features[1]]/fp_tc_) - * # tmp_ = log(p_['classes_hostname_domains'][features[1]]/fp_tc_) - */ - { - __Pyx_PyThreadState_declare - __Pyx_PyThreadState_assign - __Pyx_ExceptionSave(&__pyx_t_15, &__pyx_t_14, &__pyx_t_13); - __Pyx_XGOTREF(__pyx_t_15); - __Pyx_XGOTREF(__pyx_t_14); - __Pyx_XGOTREF(__pyx_t_13); - /*try:*/ { - - /* "pmercury/protocols/tls.pyx":328 - * - * try: - * tmp_ = log((p_['classes_hostname_domains'][features[1]]/p_count)*p_['classes_hostname_domains'][features[1]]/fp_tc_) # <<<<<<<<<<<<<< - * # tmp_ = log(p_['classes_hostname_domains'][features[1]]/fp_tc_) - * # tmp_ = log(p_['classes_hostname_domains'][features[1]]/p_count) - */ - if (unlikely(__pyx_v_p_ == Py_None)) { - PyErr_SetString(PyExc_TypeError, "'NoneType' object is not subscriptable"); - __PYX_ERR(0, 328, __pyx_L34_error) - } - __pyx_t_8 = __Pyx_PyDict_GetItem(__pyx_v_p_, __pyx_n_u_classes_hostname_domains); if (unlikely(!__pyx_t_8)) __PYX_ERR(0, 328, __pyx_L34_error) - __Pyx_GOTREF(__pyx_t_8); - if (unlikely(__pyx_v_features == Py_None)) { - PyErr_SetString(PyExc_TypeError, "'NoneType' object is not subscriptable"); - __PYX_ERR(0, 328, __pyx_L34_error) - } - __pyx_t_1 = __Pyx_GetItemInt_List(__pyx_v_features, 1, long, 1, __Pyx_PyInt_From_long, 1, 0, 1); if (unlikely(!__pyx_t_1)) __PYX_ERR(0, 328, __pyx_L34_error) - __Pyx_GOTREF(__pyx_t_1); - __pyx_t_12 = __Pyx_PyObject_GetItem(__pyx_t_8, __pyx_t_1); if (unlikely(!__pyx_t_12)) __PYX_ERR(0, 328, __pyx_L34_error) - __Pyx_GOTREF(__pyx_t_12); - __Pyx_DECREF(__pyx_t_8); __pyx_t_8 = 0; - __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0; - __pyx_t_1 = __Pyx_PyInt_From_uint64_t(__pyx_v_p_count); if (unlikely(!__pyx_t_1)) __PYX_ERR(0, 328, __pyx_L34_error) - __Pyx_GOTREF(__pyx_t_1); - __pyx_t_8 = __Pyx_PyNumber_Divide(__pyx_t_12, __pyx_t_1); if (unlikely(!__pyx_t_8)) __PYX_ERR(0, 328, __pyx_L34_error) - __Pyx_GOTREF(__pyx_t_8); - __Pyx_DECREF(__pyx_t_12); __pyx_t_12 = 0; - __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0; - if (unlikely(__pyx_v_p_ == Py_None)) { - PyErr_SetString(PyExc_TypeError, "'NoneType' object is not subscriptable"); - __PYX_ERR(0, 328, __pyx_L34_error) - } - __pyx_t_1 = __Pyx_PyDict_GetItem(__pyx_v_p_, __pyx_n_u_classes_hostname_domains); if (unlikely(!__pyx_t_1)) __PYX_ERR(0, 328, __pyx_L34_error) - __Pyx_GOTREF(__pyx_t_1); - if (unlikely(__pyx_v_features == Py_None)) { - PyErr_SetString(PyExc_TypeError, "'NoneType' object is not subscriptable"); - __PYX_ERR(0, 328, __pyx_L34_error) - } - __pyx_t_12 = __Pyx_GetItemInt_List(__pyx_v_features, 1, long, 1, __Pyx_PyInt_From_long, 1, 0, 1); if (unlikely(!__pyx_t_12)) __PYX_ERR(0, 328, __pyx_L34_error) - __Pyx_GOTREF(__pyx_t_12); - __pyx_t_6 = __Pyx_PyObject_GetItem(__pyx_t_1, __pyx_t_12); if (unlikely(!__pyx_t_6)) __PYX_ERR(0, 328, __pyx_L34_error) - __Pyx_GOTREF(__pyx_t_6); - __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0; - __Pyx_DECREF(__pyx_t_12); __pyx_t_12 = 0; - __pyx_t_12 = PyNumber_Multiply(__pyx_t_8, __pyx_t_6); if (unlikely(!__pyx_t_12)) __PYX_ERR(0, 328, __pyx_L34_error) - __Pyx_GOTREF(__pyx_t_12); - __Pyx_DECREF(__pyx_t_8); __pyx_t_8 = 0; - __Pyx_DECREF(__pyx_t_6); __pyx_t_6 = 0; - __pyx_t_6 = PyFloat_FromDouble(__pyx_v_fp_tc_); if (unlikely(!__pyx_t_6)) __PYX_ERR(0, 328, __pyx_L34_error) - __Pyx_GOTREF(__pyx_t_6); - __pyx_t_8 = __Pyx_PyNumber_Divide(__pyx_t_12, __pyx_t_6); if (unlikely(!__pyx_t_8)) __PYX_ERR(0, 328, __pyx_L34_error) - __Pyx_GOTREF(__pyx_t_8); - __Pyx_DECREF(__pyx_t_12); __pyx_t_12 = 0; - __Pyx_DECREF(__pyx_t_6); __pyx_t_6 = 0; - __pyx_t_7 = __pyx_PyFloat_AsDouble(__pyx_t_8); if (unlikely((__pyx_t_7 == (double)-1) && PyErr_Occurred())) __PYX_ERR(0, 328, __pyx_L34_error) - __Pyx_DECREF(__pyx_t_8); __pyx_t_8 = 0; - __pyx_v_tmp_ = log(__pyx_t_7); - - /* "pmercury/protocols/tls.pyx":331 - * # tmp_ = log(p_['classes_hostname_domains'][features[1]]/fp_tc_) - * # tmp_ = log(p_['classes_hostname_domains'][features[1]]/p_count) - * score_ += tmp_ if tmp_ > prior_ else prior_ # <<<<<<<<<<<<<< - * except KeyError: - * score_ += base_prior_ - */ - if (((__pyx_v_tmp_ > __pyx_v_prior_) != 0)) { - __pyx_t_7 = __pyx_v_tmp_; - } else { - __pyx_t_7 = __pyx_v_prior_; - } - __pyx_v_score_ = (__pyx_v_score_ + __pyx_t_7); - - /* "pmercury/protocols/tls.pyx":327 - * score_ += base_prior_ - * - * try: # <<<<<<<<<<<<<< - * tmp_ = log((p_['classes_hostname_domains'][features[1]]/p_count)*p_['classes_hostname_domains'][features[1]]/fp_tc_) - * # tmp_ = log(p_['classes_hostname_domains'][features[1]]/fp_tc_) - */ - } - __Pyx_XDECREF(__pyx_t_15); __pyx_t_15 = 0; - __Pyx_XDECREF(__pyx_t_14); __pyx_t_14 = 0; - __Pyx_XDECREF(__pyx_t_13); __pyx_t_13 = 0; - goto __pyx_L39_try_end; - __pyx_L34_error:; - __Pyx_XDECREF(__pyx_t_1); __pyx_t_1 = 0; - __Pyx_XDECREF(__pyx_t_11); __pyx_t_11 = 0; - __Pyx_XDECREF(__pyx_t_12); __pyx_t_12 = 0; - __Pyx_XDECREF(__pyx_t_6); __pyx_t_6 = 0; - __Pyx_XDECREF(__pyx_t_8); __pyx_t_8 = 0; - - /* "pmercury/protocols/tls.pyx":332 - * # tmp_ = log(p_['classes_hostname_domains'][features[1]]/p_count) - * score_ += tmp_ if tmp_ > prior_ else prior_ - * except KeyError: # <<<<<<<<<<<<<< - * score_ += base_prior_ - * - */ - __pyx_t_16 = __Pyx_PyErr_ExceptionMatches(__pyx_builtin_KeyError); - if (__pyx_t_16) { - __Pyx_AddTraceback("pmercury.protocols.tls.TLS.compute_score", __pyx_clineno, __pyx_lineno, __pyx_filename); - if (__Pyx_GetException(&__pyx_t_8, &__pyx_t_6, &__pyx_t_12) < 0) __PYX_ERR(0, 332, __pyx_L36_except_error) - __Pyx_GOTREF(__pyx_t_8); - __Pyx_GOTREF(__pyx_t_6); - __Pyx_GOTREF(__pyx_t_12); - - /* "pmercury/protocols/tls.pyx":333 - * score_ += tmp_ if tmp_ > prior_ else prior_ - * except KeyError: - * score_ += base_prior_ # <<<<<<<<<<<<<< - * - * # try: - */ - __pyx_v_score_ = (__pyx_v_score_ + __pyx_v_base_prior_); - __Pyx_XDECREF(__pyx_t_8); __pyx_t_8 = 0; - __Pyx_XDECREF(__pyx_t_6); __pyx_t_6 = 0; - __Pyx_XDECREF(__pyx_t_12); __pyx_t_12 = 0; - goto __pyx_L35_exception_handled; - } - goto __pyx_L36_except_error; - __pyx_L36_except_error:; - - /* "pmercury/protocols/tls.pyx":327 - * score_ += base_prior_ - * - * try: # <<<<<<<<<<<<<< - * tmp_ = log((p_['classes_hostname_domains'][features[1]]/p_count)*p_['classes_hostname_domains'][features[1]]/fp_tc_) - * # tmp_ = log(p_['classes_hostname_domains'][features[1]]/fp_tc_) - */ - __Pyx_XGIVEREF(__pyx_t_15); - __Pyx_XGIVEREF(__pyx_t_14); - __Pyx_XGIVEREF(__pyx_t_13); - __Pyx_ExceptionReset(__pyx_t_15, __pyx_t_14, __pyx_t_13); - goto __pyx_L1_error; - __pyx_L35_exception_handled:; - __Pyx_XGIVEREF(__pyx_t_15); - __Pyx_XGIVEREF(__pyx_t_14); - __Pyx_XGIVEREF(__pyx_t_13); - __Pyx_ExceptionReset(__pyx_t_15, __pyx_t_14, __pyx_t_13); - __pyx_L39_try_end:; - } - - /* "pmercury/protocols/tls.pyx":341 - * # score_ += base_prior_ - * - * if self.EXTENDED_FP_METADATA: # <<<<<<<<<<<<<< - * try: - * tmp_ = log((p_['classes_ip_ip'][features[3]]/p_count)*p_['classes_ip_ip'][features[3]]/fp_tc_) - */ - __pyx_t_4 = (__pyx_v_self->EXTENDED_FP_METADATA != 0); - if (__pyx_t_4) { - - /* "pmercury/protocols/tls.pyx":342 - * - * if self.EXTENDED_FP_METADATA: - * try: # <<<<<<<<<<<<<< - * tmp_ = log((p_['classes_ip_ip'][features[3]]/p_count)*p_['classes_ip_ip'][features[3]]/fp_tc_) - * # tmp_ = log(p_['classes_ip_ip'][features[3]]/fp_tc_) - */ - { - __Pyx_PyThreadState_declare - __Pyx_PyThreadState_assign - __Pyx_ExceptionSave(&__pyx_t_13, &__pyx_t_14, &__pyx_t_15); - __Pyx_XGOTREF(__pyx_t_13); - __Pyx_XGOTREF(__pyx_t_14); - __Pyx_XGOTREF(__pyx_t_15); - /*try:*/ { - - /* "pmercury/protocols/tls.pyx":343 - * if self.EXTENDED_FP_METADATA: - * try: - * tmp_ = log((p_['classes_ip_ip'][features[3]]/p_count)*p_['classes_ip_ip'][features[3]]/fp_tc_) # <<<<<<<<<<<<<< - * # tmp_ = log(p_['classes_ip_ip'][features[3]]/fp_tc_) - * # tmp_ = log(p_['classes_ip_ip'][features[3]]/p_count) - */ - if (unlikely(__pyx_v_p_ == Py_None)) { - PyErr_SetString(PyExc_TypeError, "'NoneType' object is not subscriptable"); - __PYX_ERR(0, 343, __pyx_L43_error) - } - __pyx_t_12 = __Pyx_PyDict_GetItem(__pyx_v_p_, __pyx_n_u_classes_ip_ip); if (unlikely(!__pyx_t_12)) __PYX_ERR(0, 343, __pyx_L43_error) - __Pyx_GOTREF(__pyx_t_12); - if (unlikely(__pyx_v_features == Py_None)) { - PyErr_SetString(PyExc_TypeError, "'NoneType' object is not subscriptable"); - __PYX_ERR(0, 343, __pyx_L43_error) - } - __pyx_t_6 = __Pyx_GetItemInt_List(__pyx_v_features, 3, long, 1, __Pyx_PyInt_From_long, 1, 0, 1); if (unlikely(!__pyx_t_6)) __PYX_ERR(0, 343, __pyx_L43_error) - __Pyx_GOTREF(__pyx_t_6); - __pyx_t_8 = __Pyx_PyObject_GetItem(__pyx_t_12, __pyx_t_6); if (unlikely(!__pyx_t_8)) __PYX_ERR(0, 343, __pyx_L43_error) - __Pyx_GOTREF(__pyx_t_8); - __Pyx_DECREF(__pyx_t_12); __pyx_t_12 = 0; - __Pyx_DECREF(__pyx_t_6); __pyx_t_6 = 0; - __pyx_t_6 = __Pyx_PyInt_From_uint64_t(__pyx_v_p_count); if (unlikely(!__pyx_t_6)) __PYX_ERR(0, 343, __pyx_L43_error) - __Pyx_GOTREF(__pyx_t_6); - __pyx_t_12 = __Pyx_PyNumber_Divide(__pyx_t_8, __pyx_t_6); if (unlikely(!__pyx_t_12)) __PYX_ERR(0, 343, __pyx_L43_error) - __Pyx_GOTREF(__pyx_t_12); - __Pyx_DECREF(__pyx_t_8); __pyx_t_8 = 0; - __Pyx_DECREF(__pyx_t_6); __pyx_t_6 = 0; - if (unlikely(__pyx_v_p_ == Py_None)) { - PyErr_SetString(PyExc_TypeError, "'NoneType' object is not subscriptable"); - __PYX_ERR(0, 343, __pyx_L43_error) - } - __pyx_t_6 = __Pyx_PyDict_GetItem(__pyx_v_p_, __pyx_n_u_classes_ip_ip); if (unlikely(!__pyx_t_6)) __PYX_ERR(0, 343, __pyx_L43_error) - __Pyx_GOTREF(__pyx_t_6); - if (unlikely(__pyx_v_features == Py_None)) { - PyErr_SetString(PyExc_TypeError, "'NoneType' object is not subscriptable"); - __PYX_ERR(0, 343, __pyx_L43_error) - } - __pyx_t_8 = __Pyx_GetItemInt_List(__pyx_v_features, 3, long, 1, __Pyx_PyInt_From_long, 1, 0, 1); if (unlikely(!__pyx_t_8)) __PYX_ERR(0, 343, __pyx_L43_error) - __Pyx_GOTREF(__pyx_t_8); - __pyx_t_1 = __Pyx_PyObject_GetItem(__pyx_t_6, __pyx_t_8); if (unlikely(!__pyx_t_1)) __PYX_ERR(0, 343, __pyx_L43_error) - __Pyx_GOTREF(__pyx_t_1); - __Pyx_DECREF(__pyx_t_6); __pyx_t_6 = 0; - __Pyx_DECREF(__pyx_t_8); __pyx_t_8 = 0; - __pyx_t_8 = PyNumber_Multiply(__pyx_t_12, __pyx_t_1); if (unlikely(!__pyx_t_8)) __PYX_ERR(0, 343, __pyx_L43_error) - __Pyx_GOTREF(__pyx_t_8); - __Pyx_DECREF(__pyx_t_12); __pyx_t_12 = 0; - __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0; - __pyx_t_1 = PyFloat_FromDouble(__pyx_v_fp_tc_); if (unlikely(!__pyx_t_1)) __PYX_ERR(0, 343, __pyx_L43_error) - __Pyx_GOTREF(__pyx_t_1); - __pyx_t_12 = __Pyx_PyNumber_Divide(__pyx_t_8, __pyx_t_1); if (unlikely(!__pyx_t_12)) __PYX_ERR(0, 343, __pyx_L43_error) - __Pyx_GOTREF(__pyx_t_12); - __Pyx_DECREF(__pyx_t_8); __pyx_t_8 = 0; - __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0; - __pyx_t_7 = __pyx_PyFloat_AsDouble(__pyx_t_12); if (unlikely((__pyx_t_7 == (double)-1) && PyErr_Occurred())) __PYX_ERR(0, 343, __pyx_L43_error) - __Pyx_DECREF(__pyx_t_12); __pyx_t_12 = 0; - __pyx_v_tmp_ = log(__pyx_t_7); - - /* "pmercury/protocols/tls.pyx":346 - * # tmp_ = log(p_['classes_ip_ip'][features[3]]/fp_tc_) - * # tmp_ = log(p_['classes_ip_ip'][features[3]]/p_count) - * score_ += tmp_ if tmp_ > prior_ else prior_ # <<<<<<<<<<<<<< - * except KeyError: - * score_ += base_prior_ - */ - if (((__pyx_v_tmp_ > __pyx_v_prior_) != 0)) { - __pyx_t_7 = __pyx_v_tmp_; - } else { - __pyx_t_7 = __pyx_v_prior_; - } - __pyx_v_score_ = (__pyx_v_score_ + __pyx_t_7); - - /* "pmercury/protocols/tls.pyx":342 - * - * if self.EXTENDED_FP_METADATA: - * try: # <<<<<<<<<<<<<< - * tmp_ = log((p_['classes_ip_ip'][features[3]]/p_count)*p_['classes_ip_ip'][features[3]]/fp_tc_) - * # tmp_ = log(p_['classes_ip_ip'][features[3]]/fp_tc_) - */ - } - __Pyx_XDECREF(__pyx_t_13); __pyx_t_13 = 0; - __Pyx_XDECREF(__pyx_t_14); __pyx_t_14 = 0; - __Pyx_XDECREF(__pyx_t_15); __pyx_t_15 = 0; - goto __pyx_L48_try_end; - __pyx_L43_error:; - __Pyx_XDECREF(__pyx_t_1); __pyx_t_1 = 0; - __Pyx_XDECREF(__pyx_t_11); __pyx_t_11 = 0; - __Pyx_XDECREF(__pyx_t_12); __pyx_t_12 = 0; - __Pyx_XDECREF(__pyx_t_6); __pyx_t_6 = 0; - __Pyx_XDECREF(__pyx_t_8); __pyx_t_8 = 0; - - /* "pmercury/protocols/tls.pyx":347 - * # tmp_ = log(p_['classes_ip_ip'][features[3]]/p_count) - * score_ += tmp_ if tmp_ > prior_ else prior_ - * except KeyError: # <<<<<<<<<<<<<< - * score_ += base_prior_ - * - */ - __pyx_t_16 = __Pyx_PyErr_ExceptionMatches(__pyx_builtin_KeyError); - if (__pyx_t_16) { - __Pyx_AddTraceback("pmercury.protocols.tls.TLS.compute_score", __pyx_clineno, __pyx_lineno, __pyx_filename); - if (__Pyx_GetException(&__pyx_t_12, &__pyx_t_1, &__pyx_t_8) < 0) __PYX_ERR(0, 347, __pyx_L45_except_error) - __Pyx_GOTREF(__pyx_t_12); - __Pyx_GOTREF(__pyx_t_1); - __Pyx_GOTREF(__pyx_t_8); - - /* "pmercury/protocols/tls.pyx":348 - * score_ += tmp_ if tmp_ > prior_ else prior_ - * except KeyError: - * score_ += base_prior_ # <<<<<<<<<<<<<< - * - * try: - */ - __pyx_v_score_ = (__pyx_v_score_ + __pyx_v_base_prior_); - __Pyx_XDECREF(__pyx_t_12); __pyx_t_12 = 0; - __Pyx_XDECREF(__pyx_t_1); __pyx_t_1 = 0; - __Pyx_XDECREF(__pyx_t_8); __pyx_t_8 = 0; - goto __pyx_L44_exception_handled; - } - goto __pyx_L45_except_error; - __pyx_L45_except_error:; - - /* "pmercury/protocols/tls.pyx":342 - * - * if self.EXTENDED_FP_METADATA: - * try: # <<<<<<<<<<<<<< - * tmp_ = log((p_['classes_ip_ip'][features[3]]/p_count)*p_['classes_ip_ip'][features[3]]/fp_tc_) - * # tmp_ = log(p_['classes_ip_ip'][features[3]]/fp_tc_) - */ - __Pyx_XGIVEREF(__pyx_t_13); - __Pyx_XGIVEREF(__pyx_t_14); - __Pyx_XGIVEREF(__pyx_t_15); - __Pyx_ExceptionReset(__pyx_t_13, __pyx_t_14, __pyx_t_15); - goto __pyx_L1_error; - __pyx_L44_exception_handled:; - __Pyx_XGIVEREF(__pyx_t_13); - __Pyx_XGIVEREF(__pyx_t_14); - __Pyx_XGIVEREF(__pyx_t_15); - __Pyx_ExceptionReset(__pyx_t_13, __pyx_t_14, __pyx_t_15); - __pyx_L48_try_end:; - } - - /* "pmercury/protocols/tls.pyx":350 - * score_ += base_prior_ - * - * try: # <<<<<<<<<<<<<< - * tmp_ = log((p_['classes_hostname_sni'][features[4]]/p_count)*p_['classes_hostname_sni'][features[4]]/fp_tc_) - * # tmp_ = log(p_['classes_hostname_sni'][features[4]]/fp_tc_) - */ - { - __Pyx_PyThreadState_declare - __Pyx_PyThreadState_assign - __Pyx_ExceptionSave(&__pyx_t_15, &__pyx_t_14, &__pyx_t_13); - __Pyx_XGOTREF(__pyx_t_15); - __Pyx_XGOTREF(__pyx_t_14); - __Pyx_XGOTREF(__pyx_t_13); - /*try:*/ { - - /* "pmercury/protocols/tls.pyx":351 - * - * try: - * tmp_ = log((p_['classes_hostname_sni'][features[4]]/p_count)*p_['classes_hostname_sni'][features[4]]/fp_tc_) # <<<<<<<<<<<<<< - * # tmp_ = log(p_['classes_hostname_sni'][features[4]]/fp_tc_) - * # tmp_ = log(p_['classes_hostname_sni'][features[4]]/p_count) - */ - if (unlikely(__pyx_v_p_ == Py_None)) { - PyErr_SetString(PyExc_TypeError, "'NoneType' object is not subscriptable"); - __PYX_ERR(0, 351, __pyx_L51_error) - } - __pyx_t_8 = __Pyx_PyDict_GetItem(__pyx_v_p_, __pyx_n_u_classes_hostname_sni); if (unlikely(!__pyx_t_8)) __PYX_ERR(0, 351, __pyx_L51_error) - __Pyx_GOTREF(__pyx_t_8); - if (unlikely(__pyx_v_features == Py_None)) { - PyErr_SetString(PyExc_TypeError, "'NoneType' object is not subscriptable"); - __PYX_ERR(0, 351, __pyx_L51_error) - } - __pyx_t_1 = __Pyx_GetItemInt_List(__pyx_v_features, 4, long, 1, __Pyx_PyInt_From_long, 1, 0, 1); if (unlikely(!__pyx_t_1)) __PYX_ERR(0, 351, __pyx_L51_error) - __Pyx_GOTREF(__pyx_t_1); - __pyx_t_12 = __Pyx_PyObject_GetItem(__pyx_t_8, __pyx_t_1); if (unlikely(!__pyx_t_12)) __PYX_ERR(0, 351, __pyx_L51_error) - __Pyx_GOTREF(__pyx_t_12); - __Pyx_DECREF(__pyx_t_8); __pyx_t_8 = 0; - __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0; - __pyx_t_1 = __Pyx_PyInt_From_uint64_t(__pyx_v_p_count); if (unlikely(!__pyx_t_1)) __PYX_ERR(0, 351, __pyx_L51_error) - __Pyx_GOTREF(__pyx_t_1); - __pyx_t_8 = __Pyx_PyNumber_Divide(__pyx_t_12, __pyx_t_1); if (unlikely(!__pyx_t_8)) __PYX_ERR(0, 351, __pyx_L51_error) - __Pyx_GOTREF(__pyx_t_8); - __Pyx_DECREF(__pyx_t_12); __pyx_t_12 = 0; - __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0; - if (unlikely(__pyx_v_p_ == Py_None)) { - PyErr_SetString(PyExc_TypeError, "'NoneType' object is not subscriptable"); - __PYX_ERR(0, 351, __pyx_L51_error) - } - __pyx_t_1 = __Pyx_PyDict_GetItem(__pyx_v_p_, __pyx_n_u_classes_hostname_sni); if (unlikely(!__pyx_t_1)) __PYX_ERR(0, 351, __pyx_L51_error) - __Pyx_GOTREF(__pyx_t_1); - if (unlikely(__pyx_v_features == Py_None)) { - PyErr_SetString(PyExc_TypeError, "'NoneType' object is not subscriptable"); - __PYX_ERR(0, 351, __pyx_L51_error) - } - __pyx_t_12 = __Pyx_GetItemInt_List(__pyx_v_features, 4, long, 1, __Pyx_PyInt_From_long, 1, 0, 1); if (unlikely(!__pyx_t_12)) __PYX_ERR(0, 351, __pyx_L51_error) - __Pyx_GOTREF(__pyx_t_12); - __pyx_t_6 = __Pyx_PyObject_GetItem(__pyx_t_1, __pyx_t_12); if (unlikely(!__pyx_t_6)) __PYX_ERR(0, 351, __pyx_L51_error) - __Pyx_GOTREF(__pyx_t_6); - __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0; - __Pyx_DECREF(__pyx_t_12); __pyx_t_12 = 0; - __pyx_t_12 = PyNumber_Multiply(__pyx_t_8, __pyx_t_6); if (unlikely(!__pyx_t_12)) __PYX_ERR(0, 351, __pyx_L51_error) - __Pyx_GOTREF(__pyx_t_12); - __Pyx_DECREF(__pyx_t_8); __pyx_t_8 = 0; - __Pyx_DECREF(__pyx_t_6); __pyx_t_6 = 0; - __pyx_t_6 = PyFloat_FromDouble(__pyx_v_fp_tc_); if (unlikely(!__pyx_t_6)) __PYX_ERR(0, 351, __pyx_L51_error) - __Pyx_GOTREF(__pyx_t_6); - __pyx_t_8 = __Pyx_PyNumber_Divide(__pyx_t_12, __pyx_t_6); if (unlikely(!__pyx_t_8)) __PYX_ERR(0, 351, __pyx_L51_error) - __Pyx_GOTREF(__pyx_t_8); - __Pyx_DECREF(__pyx_t_12); __pyx_t_12 = 0; - __Pyx_DECREF(__pyx_t_6); __pyx_t_6 = 0; - __pyx_t_7 = __pyx_PyFloat_AsDouble(__pyx_t_8); if (unlikely((__pyx_t_7 == (double)-1) && PyErr_Occurred())) __PYX_ERR(0, 351, __pyx_L51_error) - __Pyx_DECREF(__pyx_t_8); __pyx_t_8 = 0; - __pyx_v_tmp_ = log(__pyx_t_7); - - /* "pmercury/protocols/tls.pyx":354 - * # tmp_ = log(p_['classes_hostname_sni'][features[4]]/fp_tc_) - * # tmp_ = log(p_['classes_hostname_sni'][features[4]]/p_count) - * score_ += tmp_ if tmp_ > prior_ else prior_ # <<<<<<<<<<<<<< - * except KeyError: - * score_ += base_prior_ - */ - if (((__pyx_v_tmp_ > __pyx_v_prior_) != 0)) { - __pyx_t_7 = __pyx_v_tmp_; - } else { - __pyx_t_7 = __pyx_v_prior_; - } - __pyx_v_score_ = (__pyx_v_score_ + __pyx_t_7); - - /* "pmercury/protocols/tls.pyx":350 - * score_ += base_prior_ - * - * try: # <<<<<<<<<<<<<< - * tmp_ = log((p_['classes_hostname_sni'][features[4]]/p_count)*p_['classes_hostname_sni'][features[4]]/fp_tc_) - * # tmp_ = log(p_['classes_hostname_sni'][features[4]]/fp_tc_) - */ - } - __Pyx_XDECREF(__pyx_t_15); __pyx_t_15 = 0; - __Pyx_XDECREF(__pyx_t_14); __pyx_t_14 = 0; - __Pyx_XDECREF(__pyx_t_13); __pyx_t_13 = 0; - goto __pyx_L56_try_end; - __pyx_L51_error:; - __Pyx_XDECREF(__pyx_t_1); __pyx_t_1 = 0; - __Pyx_XDECREF(__pyx_t_11); __pyx_t_11 = 0; - __Pyx_XDECREF(__pyx_t_12); __pyx_t_12 = 0; - __Pyx_XDECREF(__pyx_t_6); __pyx_t_6 = 0; - __Pyx_XDECREF(__pyx_t_8); __pyx_t_8 = 0; - - /* "pmercury/protocols/tls.pyx":355 - * # tmp_ = log(p_['classes_hostname_sni'][features[4]]/p_count) - * score_ += tmp_ if tmp_ > prior_ else prior_ - * except KeyError: # <<<<<<<<<<<<<< - * score_ += base_prior_ - * - */ - __pyx_t_16 = __Pyx_PyErr_ExceptionMatches(__pyx_builtin_KeyError); - if (__pyx_t_16) { - __Pyx_AddTraceback("pmercury.protocols.tls.TLS.compute_score", __pyx_clineno, __pyx_lineno, __pyx_filename); - if (__Pyx_GetException(&__pyx_t_8, &__pyx_t_6, &__pyx_t_12) < 0) __PYX_ERR(0, 355, __pyx_L53_except_error) - __Pyx_GOTREF(__pyx_t_8); - __Pyx_GOTREF(__pyx_t_6); - __Pyx_GOTREF(__pyx_t_12); - - /* "pmercury/protocols/tls.pyx":356 - * score_ += tmp_ if tmp_ > prior_ else prior_ - * except KeyError: - * score_ += base_prior_ # <<<<<<<<<<<<<< - * - * app_cat = 'Unknown' - */ - __pyx_v_score_ = (__pyx_v_score_ + __pyx_v_base_prior_); - __Pyx_XDECREF(__pyx_t_8); __pyx_t_8 = 0; - __Pyx_XDECREF(__pyx_t_6); __pyx_t_6 = 0; - __Pyx_XDECREF(__pyx_t_12); __pyx_t_12 = 0; - goto __pyx_L52_exception_handled; - } - goto __pyx_L53_except_error; - __pyx_L53_except_error:; - - /* "pmercury/protocols/tls.pyx":350 - * score_ += base_prior_ - * - * try: # <<<<<<<<<<<<<< - * tmp_ = log((p_['classes_hostname_sni'][features[4]]/p_count)*p_['classes_hostname_sni'][features[4]]/fp_tc_) - * # tmp_ = log(p_['classes_hostname_sni'][features[4]]/fp_tc_) - */ - __Pyx_XGIVEREF(__pyx_t_15); - __Pyx_XGIVEREF(__pyx_t_14); - __Pyx_XGIVEREF(__pyx_t_13); - __Pyx_ExceptionReset(__pyx_t_15, __pyx_t_14, __pyx_t_13); - goto __pyx_L1_error; - __pyx_L52_exception_handled:; - __Pyx_XGIVEREF(__pyx_t_15); - __Pyx_XGIVEREF(__pyx_t_14); - __Pyx_XGIVEREF(__pyx_t_13); - __Pyx_ExceptionReset(__pyx_t_15, __pyx_t_14, __pyx_t_13); - __pyx_L56_try_end:; - } - - /* "pmercury/protocols/tls.pyx":341 - * # score_ += base_prior_ - * - * if self.EXTENDED_FP_METADATA: # <<<<<<<<<<<<<< - * try: - * tmp_ = log((p_['classes_ip_ip'][features[3]]/p_count)*p_['classes_ip_ip'][features[3]]/fp_tc_) - */ - } - - /* "pmercury/protocols/tls.pyx":358 - * score_ += base_prior_ - * - * app_cat = 'Unknown' # <<<<<<<<<<<<<< - * if 'application_category' in p_: - * app_cat = p_['application_category'] - */ - __Pyx_INCREF(__pyx_n_u_Unknown); - __pyx_v_app_cat = __pyx_n_u_Unknown; - - /* "pmercury/protocols/tls.pyx":359 - * - * app_cat = 'Unknown' - * if 'application_category' in p_: # <<<<<<<<<<<<<< - * app_cat = p_['application_category'] - * - */ - if (unlikely(__pyx_v_p_ == Py_None)) { - PyErr_SetString(PyExc_TypeError, "'NoneType' object is not iterable"); - __PYX_ERR(0, 359, __pyx_L1_error) - } - __pyx_t_4 = (__Pyx_PyDict_ContainsTF(__pyx_n_u_application_category, __pyx_v_p_, Py_EQ)); if (unlikely(__pyx_t_4 < 0)) __PYX_ERR(0, 359, __pyx_L1_error) - __pyx_t_3 = (__pyx_t_4 != 0); - if (__pyx_t_3) { - - /* "pmercury/protocols/tls.pyx":360 - * app_cat = 'Unknown' - * if 'application_category' in p_: - * app_cat = p_['application_category'] # <<<<<<<<<<<<<< - * - * if self.MALWARE_DB: - */ - if (unlikely(__pyx_v_p_ == Py_None)) { - PyErr_SetString(PyExc_TypeError, "'NoneType' object is not subscriptable"); - __PYX_ERR(0, 360, __pyx_L1_error) - } - __pyx_t_12 = __Pyx_PyDict_GetItem(__pyx_v_p_, __pyx_n_u_application_category); if (unlikely(!__pyx_t_12)) __PYX_ERR(0, 360, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_12); - __Pyx_DECREF_SET(__pyx_v_app_cat, __pyx_t_12); - __pyx_t_12 = 0; - - /* "pmercury/protocols/tls.pyx":359 - * - * app_cat = 'Unknown' - * if 'application_category' in p_: # <<<<<<<<<<<<<< - * app_cat = p_['application_category'] - * - */ - } - - /* "pmercury/protocols/tls.pyx":362 - * app_cat = p_['application_category'] - * - * if self.MALWARE_DB: # <<<<<<<<<<<<<< - * return {'score':exp(score_), 'process':cur_proc, 'sha256':p_['sha256'], - * 'malware':p_['malware'], 'category':app_cat} - */ - __pyx_t_3 = (__pyx_v_self->MALWARE_DB != 0); - if (__pyx_t_3) { - - /* "pmercury/protocols/tls.pyx":363 - * - * if self.MALWARE_DB: - * return {'score':exp(score_), 'process':cur_proc, 'sha256':p_['sha256'], # <<<<<<<<<<<<<< - * 'malware':p_['malware'], 'category':app_cat} - * else: - */ - __Pyx_XDECREF(__pyx_r); - __pyx_t_12 = __Pyx_PyDict_NewPresized(5); if (unlikely(!__pyx_t_12)) __PYX_ERR(0, 363, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_12); - __pyx_t_6 = PyFloat_FromDouble(exp(__pyx_v_score_)); if (unlikely(!__pyx_t_6)) __PYX_ERR(0, 363, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_6); - if (PyDict_SetItem(__pyx_t_12, __pyx_n_u_score, __pyx_t_6) < 0) __PYX_ERR(0, 363, __pyx_L1_error) - __Pyx_DECREF(__pyx_t_6); __pyx_t_6 = 0; - if (PyDict_SetItem(__pyx_t_12, __pyx_n_u_process, __pyx_v_cur_proc) < 0) __PYX_ERR(0, 363, __pyx_L1_error) - if (unlikely(__pyx_v_p_ == Py_None)) { - PyErr_SetString(PyExc_TypeError, "'NoneType' object is not subscriptable"); - __PYX_ERR(0, 363, __pyx_L1_error) - } - __pyx_t_6 = __Pyx_PyDict_GetItem(__pyx_v_p_, __pyx_n_u_sha256); if (unlikely(!__pyx_t_6)) __PYX_ERR(0, 363, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_6); - if (PyDict_SetItem(__pyx_t_12, __pyx_n_u_sha256, __pyx_t_6) < 0) __PYX_ERR(0, 363, __pyx_L1_error) - __Pyx_DECREF(__pyx_t_6); __pyx_t_6 = 0; - - /* "pmercury/protocols/tls.pyx":364 - * if self.MALWARE_DB: - * return {'score':exp(score_), 'process':cur_proc, 'sha256':p_['sha256'], - * 'malware':p_['malware'], 'category':app_cat} # <<<<<<<<<<<<<< - * else: - * return {'score':exp(score_), 'process':cur_proc, 'sha256':p_['sha256'], 'category':app_cat} - */ - if (unlikely(__pyx_v_p_ == Py_None)) { - PyErr_SetString(PyExc_TypeError, "'NoneType' object is not subscriptable"); - __PYX_ERR(0, 364, __pyx_L1_error) - } - __pyx_t_6 = __Pyx_PyDict_GetItem(__pyx_v_p_, __pyx_n_u_malware); if (unlikely(!__pyx_t_6)) __PYX_ERR(0, 364, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_6); - if (PyDict_SetItem(__pyx_t_12, __pyx_n_u_malware, __pyx_t_6) < 0) __PYX_ERR(0, 363, __pyx_L1_error) - __Pyx_DECREF(__pyx_t_6); __pyx_t_6 = 0; - if (PyDict_SetItem(__pyx_t_12, __pyx_n_u_category, __pyx_v_app_cat) < 0) __PYX_ERR(0, 363, __pyx_L1_error) - __pyx_r = __pyx_t_12; - __pyx_t_12 = 0; - goto __pyx_L0; - - /* "pmercury/protocols/tls.pyx":362 - * app_cat = p_['application_category'] - * - * if self.MALWARE_DB: # <<<<<<<<<<<<<< - * return {'score':exp(score_), 'process':cur_proc, 'sha256':p_['sha256'], - * 'malware':p_['malware'], 'category':app_cat} - */ - } - - /* "pmercury/protocols/tls.pyx":366 - * 'malware':p_['malware'], 'category':app_cat} - * else: - * return {'score':exp(score_), 'process':cur_proc, 'sha256':p_['sha256'], 'category':app_cat} # <<<<<<<<<<<<<< - * - * - */ - /*else*/ { - __Pyx_XDECREF(__pyx_r); - __pyx_t_12 = __Pyx_PyDict_NewPresized(4); if (unlikely(!__pyx_t_12)) __PYX_ERR(0, 366, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_12); - __pyx_t_6 = PyFloat_FromDouble(exp(__pyx_v_score_)); if (unlikely(!__pyx_t_6)) __PYX_ERR(0, 366, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_6); - if (PyDict_SetItem(__pyx_t_12, __pyx_n_u_score, __pyx_t_6) < 0) __PYX_ERR(0, 366, __pyx_L1_error) - __Pyx_DECREF(__pyx_t_6); __pyx_t_6 = 0; - if (PyDict_SetItem(__pyx_t_12, __pyx_n_u_process, __pyx_v_cur_proc) < 0) __PYX_ERR(0, 366, __pyx_L1_error) - if (unlikely(__pyx_v_p_ == Py_None)) { - PyErr_SetString(PyExc_TypeError, "'NoneType' object is not subscriptable"); - __PYX_ERR(0, 366, __pyx_L1_error) - } - __pyx_t_6 = __Pyx_PyDict_GetItem(__pyx_v_p_, __pyx_n_u_sha256); if (unlikely(!__pyx_t_6)) __PYX_ERR(0, 366, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_6); - if (PyDict_SetItem(__pyx_t_12, __pyx_n_u_sha256, __pyx_t_6) < 0) __PYX_ERR(0, 366, __pyx_L1_error) - __Pyx_DECREF(__pyx_t_6); __pyx_t_6 = 0; - if (PyDict_SetItem(__pyx_t_12, __pyx_n_u_category, __pyx_v_app_cat) < 0) __PYX_ERR(0, 366, __pyx_L1_error) - __pyx_r = __pyx_t_12; - __pyx_t_12 = 0; - goto __pyx_L0; - } - - /* "pmercury/protocols/tls.pyx":279 - * - * - * def compute_score(self, list features, dict p_, double fp_tc_, object endpoint): # <<<<<<<<<<<<<< - * cdef str cur_proc = p_['process'] - * cdef uint64_t p_count = p_['count'] - */ - - /* function exit code */ - __pyx_L1_error:; - __Pyx_XDECREF(__pyx_t_1); - __Pyx_XDECREF(__pyx_t_6); - __Pyx_XDECREF(__pyx_t_8); - __Pyx_XDECREF(__pyx_t_11); - __Pyx_XDECREF(__pyx_t_12); - __Pyx_AddTraceback("pmercury.protocols.tls.TLS.compute_score", __pyx_clineno, __pyx_lineno, __pyx_filename); - __pyx_r = NULL; - __pyx_L0:; - __Pyx_XDECREF(__pyx_v_cur_proc); - __Pyx_XDECREF(__pyx_v_os_info); - __Pyx_XDECREF(__pyx_v_k); - __Pyx_XDECREF(__pyx_v_app_cat); - __Pyx_XDECREF(__pyx_8genexpr3__pyx_v_pp_); - __Pyx_XGIVEREF(__pyx_r); - __Pyx_RefNannyFinishContext(); - return __pyx_r; -} - -/* "pmercury/protocols/tls.pyx":370 - * - * @functools.lru_cache(maxsize=MAX_CACHED_RESULTS) - * def get_database_entry(self, fp_str, approx_fp_str): # <<<<<<<<<<<<<< - * fp_str_ = fp_str - * if approx_fp_str != None: - */ - -/* Python wrapper */ -static PyObject *__pyx_pw_8pmercury_9protocols_3tls_3TLS_15get_database_entry(PyObject *__pyx_v_self, PyObject *__pyx_args, PyObject *__pyx_kwds); /*proto*/ -static PyObject *__pyx_pw_8pmercury_9protocols_3tls_3TLS_15get_database_entry(PyObject *__pyx_v_self, PyObject *__pyx_args, PyObject *__pyx_kwds) { - PyObject *__pyx_v_fp_str = 0; - PyObject *__pyx_v_approx_fp_str = 0; - PyObject *__pyx_r = 0; - __Pyx_RefNannyDeclarations - __Pyx_RefNannySetupContext("get_database_entry (wrapper)", 0); - { - static PyObject **__pyx_pyargnames[] = {&__pyx_n_s_fp_str_2,&__pyx_n_s_approx_fp_str,0}; - PyObject* values[2] = {0,0}; - if (unlikely(__pyx_kwds)) { - Py_ssize_t kw_args; - const Py_ssize_t pos_args = PyTuple_GET_SIZE(__pyx_args); - switch (pos_args) { - case 2: values[1] = PyTuple_GET_ITEM(__pyx_args, 1); - CYTHON_FALLTHROUGH; - case 1: values[0] = PyTuple_GET_ITEM(__pyx_args, 0); - CYTHON_FALLTHROUGH; - case 0: break; - default: goto __pyx_L5_argtuple_error; - } - kw_args = PyDict_Size(__pyx_kwds); - switch (pos_args) { - case 0: - if (likely((values[0] = __Pyx_PyDict_GetItemStr(__pyx_kwds, __pyx_n_s_fp_str_2)) != 0)) kw_args--; - else goto __pyx_L5_argtuple_error; - CYTHON_FALLTHROUGH; - case 1: - if (likely((values[1] = __Pyx_PyDict_GetItemStr(__pyx_kwds, __pyx_n_s_approx_fp_str)) != 0)) kw_args--; - else { - __Pyx_RaiseArgtupleInvalid("get_database_entry", 1, 2, 2, 1); __PYX_ERR(0, 370, __pyx_L3_error) - } - } - if (unlikely(kw_args > 0)) { - if (unlikely(__Pyx_ParseOptionalKeywords(__pyx_kwds, __pyx_pyargnames, 0, values, pos_args, "get_database_entry") < 0)) __PYX_ERR(0, 370, __pyx_L3_error) - } - } else if (PyTuple_GET_SIZE(__pyx_args) != 2) { - goto __pyx_L5_argtuple_error; - } else { - values[0] = PyTuple_GET_ITEM(__pyx_args, 0); - values[1] = PyTuple_GET_ITEM(__pyx_args, 1); - } - __pyx_v_fp_str = values[0]; - __pyx_v_approx_fp_str = values[1]; - } - goto __pyx_L4_argument_unpacking_done; - __pyx_L5_argtuple_error:; - __Pyx_RaiseArgtupleInvalid("get_database_entry", 1, 2, 2, PyTuple_GET_SIZE(__pyx_args)); __PYX_ERR(0, 370, __pyx_L3_error) - __pyx_L3_error:; - __Pyx_AddTraceback("pmercury.protocols.tls.TLS.get_database_entry", __pyx_clineno, __pyx_lineno, __pyx_filename); - __Pyx_RefNannyFinishContext(); - return NULL; - __pyx_L4_argument_unpacking_done:; - __pyx_r = __pyx_pf_8pmercury_9protocols_3tls_3TLS_14get_database_entry(((struct __pyx_obj_8pmercury_9protocols_3tls_TLS *)__pyx_v_self), __pyx_v_fp_str, __pyx_v_approx_fp_str); - - /* function exit code */ - __Pyx_RefNannyFinishContext(); - return __pyx_r; -} - -static PyObject *__pyx_pf_8pmercury_9protocols_3tls_3TLS_14get_database_entry(struct __pyx_obj_8pmercury_9protocols_3tls_TLS *__pyx_v_self, PyObject *__pyx_v_fp_str, PyObject *__pyx_v_approx_fp_str) { - PyObject *__pyx_v_fp_str_ = NULL; - PyObject *__pyx_r = NULL; - __Pyx_RefNannyDeclarations - PyObject *__pyx_t_1 = NULL; - int __pyx_t_2; - PyObject *__pyx_t_3 = NULL; - PyObject *__pyx_t_4 = NULL; - PyObject *__pyx_t_5 = NULL; - int __pyx_t_6; - PyObject *__pyx_t_7 = NULL; - PyObject *__pyx_t_8 = NULL; - __Pyx_RefNannySetupContext("get_database_entry", 0); - - /* "pmercury/protocols/tls.pyx":371 - * @functools.lru_cache(maxsize=MAX_CACHED_RESULTS) - * def get_database_entry(self, fp_str, approx_fp_str): - * fp_str_ = fp_str # <<<<<<<<<<<<<< - * if approx_fp_str != None: - * fp_str_ = approx_fp_str - */ - __Pyx_INCREF(__pyx_v_fp_str); - __pyx_v_fp_str_ = __pyx_v_fp_str; - - /* "pmercury/protocols/tls.pyx":372 - * def get_database_entry(self, fp_str, approx_fp_str): - * fp_str_ = fp_str - * if approx_fp_str != None: # <<<<<<<<<<<<<< - * fp_str_ = approx_fp_str - * - */ - __pyx_t_1 = PyObject_RichCompare(__pyx_v_approx_fp_str, Py_None, Py_NE); __Pyx_XGOTREF(__pyx_t_1); if (unlikely(!__pyx_t_1)) __PYX_ERR(0, 372, __pyx_L1_error) - __pyx_t_2 = __Pyx_PyObject_IsTrue(__pyx_t_1); if (unlikely(__pyx_t_2 < 0)) __PYX_ERR(0, 372, __pyx_L1_error) - __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0; - if (__pyx_t_2) { - - /* "pmercury/protocols/tls.pyx":373 - * fp_str_ = fp_str - * if approx_fp_str != None: - * fp_str_ = approx_fp_str # <<<<<<<<<<<<<< - * - * try: - */ - __Pyx_INCREF(__pyx_v_approx_fp_str); - __Pyx_DECREF_SET(__pyx_v_fp_str_, __pyx_v_approx_fp_str); - - /* "pmercury/protocols/tls.pyx":372 - * def get_database_entry(self, fp_str, approx_fp_str): - * fp_str_ = fp_str - * if approx_fp_str != None: # <<<<<<<<<<<<<< - * fp_str_ = approx_fp_str - * - */ - } - - /* "pmercury/protocols/tls.pyx":375 - * fp_str_ = approx_fp_str - * - * try: # <<<<<<<<<<<<<< - * return self.fp_db[fp_str_] - * except KeyError: - */ - { - __Pyx_PyThreadState_declare - __Pyx_PyThreadState_assign - __Pyx_ExceptionSave(&__pyx_t_3, &__pyx_t_4, &__pyx_t_5); - __Pyx_XGOTREF(__pyx_t_3); - __Pyx_XGOTREF(__pyx_t_4); - __Pyx_XGOTREF(__pyx_t_5); - /*try:*/ { - - /* "pmercury/protocols/tls.pyx":376 - * - * try: - * return self.fp_db[fp_str_] # <<<<<<<<<<<<<< - * except KeyError: - * return None - */ - __Pyx_XDECREF(__pyx_r); - if (unlikely(__pyx_v_self->fp_db == Py_None)) { - PyErr_SetString(PyExc_TypeError, "'NoneType' object is not subscriptable"); - __PYX_ERR(0, 376, __pyx_L4_error) - } - __pyx_t_1 = __Pyx_PyDict_GetItem(__pyx_v_self->fp_db, __pyx_v_fp_str_); if (unlikely(!__pyx_t_1)) __PYX_ERR(0, 376, __pyx_L4_error) - __Pyx_GOTREF(__pyx_t_1); - __pyx_r = __pyx_t_1; - __pyx_t_1 = 0; - goto __pyx_L8_try_return; - - /* "pmercury/protocols/tls.pyx":375 - * fp_str_ = approx_fp_str - * - * try: # <<<<<<<<<<<<<< - * return self.fp_db[fp_str_] - * except KeyError: - */ - } - __pyx_L4_error:; - __Pyx_XDECREF(__pyx_t_1); __pyx_t_1 = 0; - - /* "pmercury/protocols/tls.pyx":377 - * try: - * return self.fp_db[fp_str_] - * except KeyError: # <<<<<<<<<<<<<< - * return None - * - */ - __pyx_t_6 = __Pyx_PyErr_ExceptionMatches(__pyx_builtin_KeyError); - if (__pyx_t_6) { - __Pyx_AddTraceback("pmercury.protocols.tls.TLS.get_database_entry", __pyx_clineno, __pyx_lineno, __pyx_filename); - if (__Pyx_GetException(&__pyx_t_1, &__pyx_t_7, &__pyx_t_8) < 0) __PYX_ERR(0, 377, __pyx_L6_except_error) - __Pyx_GOTREF(__pyx_t_1); - __Pyx_GOTREF(__pyx_t_7); - __Pyx_GOTREF(__pyx_t_8); - - /* "pmercury/protocols/tls.pyx":378 - * return self.fp_db[fp_str_] - * except KeyError: - * return None # <<<<<<<<<<<<<< - * - * - */ - __Pyx_XDECREF(__pyx_r); - __pyx_r = Py_None; __Pyx_INCREF(Py_None); - __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0; - __Pyx_DECREF(__pyx_t_7); __pyx_t_7 = 0; - __Pyx_DECREF(__pyx_t_8); __pyx_t_8 = 0; - goto __pyx_L7_except_return; - } - goto __pyx_L6_except_error; - __pyx_L6_except_error:; - - /* "pmercury/protocols/tls.pyx":375 - * fp_str_ = approx_fp_str - * - * try: # <<<<<<<<<<<<<< - * return self.fp_db[fp_str_] - * except KeyError: - */ - __Pyx_XGIVEREF(__pyx_t_3); - __Pyx_XGIVEREF(__pyx_t_4); - __Pyx_XGIVEREF(__pyx_t_5); - __Pyx_ExceptionReset(__pyx_t_3, __pyx_t_4, __pyx_t_5); - goto __pyx_L1_error; - __pyx_L8_try_return:; - __Pyx_XGIVEREF(__pyx_t_3); - __Pyx_XGIVEREF(__pyx_t_4); - __Pyx_XGIVEREF(__pyx_t_5); - __Pyx_ExceptionReset(__pyx_t_3, __pyx_t_4, __pyx_t_5); - goto __pyx_L0; - __pyx_L7_except_return:; - __Pyx_XGIVEREF(__pyx_t_3); - __Pyx_XGIVEREF(__pyx_t_4); - __Pyx_XGIVEREF(__pyx_t_5); - __Pyx_ExceptionReset(__pyx_t_3, __pyx_t_4, __pyx_t_5); - goto __pyx_L0; - } - - /* "pmercury/protocols/tls.pyx":370 - * - * @functools.lru_cache(maxsize=MAX_CACHED_RESULTS) - * def get_database_entry(self, fp_str, approx_fp_str): # <<<<<<<<<<<<<< - * fp_str_ = fp_str - * if approx_fp_str != None: - */ - - /* function exit code */ - __pyx_L1_error:; - __Pyx_XDECREF(__pyx_t_1); - __Pyx_XDECREF(__pyx_t_7); - __Pyx_XDECREF(__pyx_t_8); - __Pyx_AddTraceback("pmercury.protocols.tls.TLS.get_database_entry", __pyx_clineno, __pyx_lineno, __pyx_filename); - __pyx_r = NULL; - __pyx_L0:; - __Pyx_XDECREF(__pyx_v_fp_str_); - __Pyx_XGIVEREF(__pyx_r); - __Pyx_RefNannyFinishContext(); - return __pyx_r; -} - -/* "pmercury/protocols/tls.pyx":382 - * - * @functools.lru_cache(maxsize=MAX_CACHED_RESULTS) - * def get_approx_fingerprint(self, fp_str_): # <<<<<<<<<<<<<< - * try: - * return self.fp_db[fp_str_]['approx_str'] - */ - -/* Python wrapper */ -static PyObject *__pyx_pw_8pmercury_9protocols_3tls_3TLS_17get_approx_fingerprint(PyObject *__pyx_v_self, PyObject *__pyx_v_fp_str_); /*proto*/ -static PyObject *__pyx_pw_8pmercury_9protocols_3tls_3TLS_17get_approx_fingerprint(PyObject *__pyx_v_self, PyObject *__pyx_v_fp_str_) { - PyObject *__pyx_r = 0; - __Pyx_RefNannyDeclarations - __Pyx_RefNannySetupContext("get_approx_fingerprint (wrapper)", 0); - __pyx_r = __pyx_pf_8pmercury_9protocols_3tls_3TLS_16get_approx_fingerprint(((struct __pyx_obj_8pmercury_9protocols_3tls_TLS *)__pyx_v_self), ((PyObject *)__pyx_v_fp_str_)); - - /* function exit code */ - __Pyx_RefNannyFinishContext(); - return __pyx_r; -} - -static PyObject *__pyx_pf_8pmercury_9protocols_3tls_3TLS_16get_approx_fingerprint(struct __pyx_obj_8pmercury_9protocols_3tls_TLS *__pyx_v_self, PyObject *__pyx_v_fp_str_) { - PyObject *__pyx_r = NULL; - __Pyx_RefNannyDeclarations - PyObject *__pyx_t_1 = NULL; - PyObject *__pyx_t_2 = NULL; - PyObject *__pyx_t_3 = NULL; - PyObject *__pyx_t_4 = NULL; - PyObject *__pyx_t_5 = NULL; - int __pyx_t_6; - PyObject *__pyx_t_7 = NULL; - __Pyx_RefNannySetupContext("get_approx_fingerprint", 0); - - /* "pmercury/protocols/tls.pyx":383 - * @functools.lru_cache(maxsize=MAX_CACHED_RESULTS) - * def get_approx_fingerprint(self, fp_str_): - * try: # <<<<<<<<<<<<<< - * return self.fp_db[fp_str_]['approx_str'] - * except KeyError: - */ - { - __Pyx_PyThreadState_declare - __Pyx_PyThreadState_assign - __Pyx_ExceptionSave(&__pyx_t_1, &__pyx_t_2, &__pyx_t_3); - __Pyx_XGOTREF(__pyx_t_1); - __Pyx_XGOTREF(__pyx_t_2); - __Pyx_XGOTREF(__pyx_t_3); - /*try:*/ { - - /* "pmercury/protocols/tls.pyx":384 - * def get_approx_fingerprint(self, fp_str_): - * try: - * return self.fp_db[fp_str_]['approx_str'] # <<<<<<<<<<<<<< - * except KeyError: - * return None - */ - __Pyx_XDECREF(__pyx_r); - if (unlikely(__pyx_v_self->fp_db == Py_None)) { - PyErr_SetString(PyExc_TypeError, "'NoneType' object is not subscriptable"); - __PYX_ERR(0, 384, __pyx_L3_error) - } - __pyx_t_4 = __Pyx_PyDict_GetItem(__pyx_v_self->fp_db, __pyx_v_fp_str_); if (unlikely(!__pyx_t_4)) __PYX_ERR(0, 384, __pyx_L3_error) - __Pyx_GOTREF(__pyx_t_4); - __pyx_t_5 = __Pyx_PyObject_Dict_GetItem(__pyx_t_4, __pyx_n_u_approx_str); if (unlikely(!__pyx_t_5)) __PYX_ERR(0, 384, __pyx_L3_error) - __Pyx_GOTREF(__pyx_t_5); - __Pyx_DECREF(__pyx_t_4); __pyx_t_4 = 0; - __pyx_r = __pyx_t_5; - __pyx_t_5 = 0; - goto __pyx_L7_try_return; - - /* "pmercury/protocols/tls.pyx":383 - * @functools.lru_cache(maxsize=MAX_CACHED_RESULTS) - * def get_approx_fingerprint(self, fp_str_): - * try: # <<<<<<<<<<<<<< - * return self.fp_db[fp_str_]['approx_str'] - * except KeyError: - */ - } - __pyx_L3_error:; - __Pyx_XDECREF(__pyx_t_4); __pyx_t_4 = 0; - __Pyx_XDECREF(__pyx_t_5); __pyx_t_5 = 0; - - /* "pmercury/protocols/tls.pyx":385 - * try: - * return self.fp_db[fp_str_]['approx_str'] - * except KeyError: # <<<<<<<<<<<<<< - * return None - * - */ - __pyx_t_6 = __Pyx_PyErr_ExceptionMatches(__pyx_builtin_KeyError); - if (__pyx_t_6) { - __Pyx_AddTraceback("pmercury.protocols.tls.TLS.get_approx_fingerprint", __pyx_clineno, __pyx_lineno, __pyx_filename); - if (__Pyx_GetException(&__pyx_t_5, &__pyx_t_4, &__pyx_t_7) < 0) __PYX_ERR(0, 385, __pyx_L5_except_error) - __Pyx_GOTREF(__pyx_t_5); - __Pyx_GOTREF(__pyx_t_4); - __Pyx_GOTREF(__pyx_t_7); - - /* "pmercury/protocols/tls.pyx":386 - * return self.fp_db[fp_str_]['approx_str'] - * except KeyError: - * return None # <<<<<<<<<<<<<< - * - * - */ - __Pyx_XDECREF(__pyx_r); - __pyx_r = Py_None; __Pyx_INCREF(Py_None); - __Pyx_DECREF(__pyx_t_4); __pyx_t_4 = 0; - __Pyx_DECREF(__pyx_t_5); __pyx_t_5 = 0; - __Pyx_DECREF(__pyx_t_7); __pyx_t_7 = 0; - goto __pyx_L6_except_return; - } - goto __pyx_L5_except_error; - __pyx_L5_except_error:; - - /* "pmercury/protocols/tls.pyx":383 - * @functools.lru_cache(maxsize=MAX_CACHED_RESULTS) - * def get_approx_fingerprint(self, fp_str_): - * try: # <<<<<<<<<<<<<< - * return self.fp_db[fp_str_]['approx_str'] - * except KeyError: - */ - __Pyx_XGIVEREF(__pyx_t_1); - __Pyx_XGIVEREF(__pyx_t_2); - __Pyx_XGIVEREF(__pyx_t_3); - __Pyx_ExceptionReset(__pyx_t_1, __pyx_t_2, __pyx_t_3); - goto __pyx_L1_error; - __pyx_L7_try_return:; - __Pyx_XGIVEREF(__pyx_t_1); - __Pyx_XGIVEREF(__pyx_t_2); - __Pyx_XGIVEREF(__pyx_t_3); - __Pyx_ExceptionReset(__pyx_t_1, __pyx_t_2, __pyx_t_3); - goto __pyx_L0; - __pyx_L6_except_return:; - __Pyx_XGIVEREF(__pyx_t_1); - __Pyx_XGIVEREF(__pyx_t_2); - __Pyx_XGIVEREF(__pyx_t_3); - __Pyx_ExceptionReset(__pyx_t_1, __pyx_t_2, __pyx_t_3); - goto __pyx_L0; - } - - /* "pmercury/protocols/tls.pyx":382 - * - * @functools.lru_cache(maxsize=MAX_CACHED_RESULTS) - * def get_approx_fingerprint(self, fp_str_): # <<<<<<<<<<<<<< - * try: - * return self.fp_db[fp_str_]['approx_str'] - */ - - /* function exit code */ - __pyx_L1_error:; - __Pyx_XDECREF(__pyx_t_4); - __Pyx_XDECREF(__pyx_t_5); - __Pyx_XDECREF(__pyx_t_7); - __Pyx_AddTraceback("pmercury.protocols.tls.TLS.get_approx_fingerprint", __pyx_clineno, __pyx_lineno, __pyx_filename); - __pyx_r = NULL; - __pyx_L0:; - __Pyx_XGIVEREF(__pyx_r); - __Pyx_RefNannyFinishContext(); - return __pyx_r; -} - -/* "pmercury/protocols/tls.pyx":389 - * - * - * def find_approx_match(self, tls_features, fp_str=None, source_filter=None, key_filter=None): # <<<<<<<<<<<<<< - * target_ = get_sequence(tls_features) - * tls_params_ = get_tls_params(tls_features) - */ - -/* Python wrapper */ -static PyObject *__pyx_pw_8pmercury_9protocols_3tls_3TLS_19find_approx_match(PyObject *__pyx_v_self, PyObject *__pyx_args, PyObject *__pyx_kwds); /*proto*/ -static PyObject *__pyx_pw_8pmercury_9protocols_3tls_3TLS_19find_approx_match(PyObject *__pyx_v_self, PyObject *__pyx_args, PyObject *__pyx_kwds) { - PyObject *__pyx_v_tls_features = 0; - PyObject *__pyx_v_fp_str = 0; - PyObject *__pyx_v_source_filter = 0; - PyObject *__pyx_v_key_filter = 0; - PyObject *__pyx_r = 0; - __Pyx_RefNannyDeclarations - __Pyx_RefNannySetupContext("find_approx_match (wrapper)", 0); - { - static PyObject **__pyx_pyargnames[] = {&__pyx_n_s_tls_features,&__pyx_n_s_fp_str_2,&__pyx_n_s_source_filter,&__pyx_n_s_key_filter,0}; - PyObject* values[4] = {0,0,0,0}; - values[1] = ((PyObject *)Py_None); - values[2] = ((PyObject *)Py_None); - values[3] = ((PyObject *)Py_None); - if (unlikely(__pyx_kwds)) { - Py_ssize_t kw_args; - const Py_ssize_t pos_args = PyTuple_GET_SIZE(__pyx_args); - switch (pos_args) { - case 4: values[3] = PyTuple_GET_ITEM(__pyx_args, 3); - CYTHON_FALLTHROUGH; - case 3: values[2] = PyTuple_GET_ITEM(__pyx_args, 2); - CYTHON_FALLTHROUGH; - case 2: values[1] = PyTuple_GET_ITEM(__pyx_args, 1); - CYTHON_FALLTHROUGH; - case 1: values[0] = PyTuple_GET_ITEM(__pyx_args, 0); - CYTHON_FALLTHROUGH; - case 0: break; - default: goto __pyx_L5_argtuple_error; - } - kw_args = PyDict_Size(__pyx_kwds); - switch (pos_args) { - case 0: - if (likely((values[0] = __Pyx_PyDict_GetItemStr(__pyx_kwds, __pyx_n_s_tls_features)) != 0)) kw_args--; - else goto __pyx_L5_argtuple_error; - CYTHON_FALLTHROUGH; - case 1: - if (kw_args > 0) { - PyObject* value = __Pyx_PyDict_GetItemStr(__pyx_kwds, __pyx_n_s_fp_str_2); - if (value) { values[1] = value; kw_args--; } - } - CYTHON_FALLTHROUGH; - case 2: - if (kw_args > 0) { - PyObject* value = __Pyx_PyDict_GetItemStr(__pyx_kwds, __pyx_n_s_source_filter); - if (value) { values[2] = value; kw_args--; } - } - CYTHON_FALLTHROUGH; - case 3: - if (kw_args > 0) { - PyObject* value = __Pyx_PyDict_GetItemStr(__pyx_kwds, __pyx_n_s_key_filter); - if (value) { values[3] = value; kw_args--; } - } - } - if (unlikely(kw_args > 0)) { - if (unlikely(__Pyx_ParseOptionalKeywords(__pyx_kwds, __pyx_pyargnames, 0, values, pos_args, "find_approx_match") < 0)) __PYX_ERR(0, 389, __pyx_L3_error) - } - } else { - switch (PyTuple_GET_SIZE(__pyx_args)) { - case 4: values[3] = PyTuple_GET_ITEM(__pyx_args, 3); - CYTHON_FALLTHROUGH; - case 3: values[2] = PyTuple_GET_ITEM(__pyx_args, 2); - CYTHON_FALLTHROUGH; - case 2: values[1] = PyTuple_GET_ITEM(__pyx_args, 1); - CYTHON_FALLTHROUGH; - case 1: values[0] = PyTuple_GET_ITEM(__pyx_args, 0); - break; - default: goto __pyx_L5_argtuple_error; - } - } - __pyx_v_tls_features = values[0]; - __pyx_v_fp_str = values[1]; - __pyx_v_source_filter = values[2]; - __pyx_v_key_filter = values[3]; - } - goto __pyx_L4_argument_unpacking_done; - __pyx_L5_argtuple_error:; - __Pyx_RaiseArgtupleInvalid("find_approx_match", 0, 1, 4, PyTuple_GET_SIZE(__pyx_args)); __PYX_ERR(0, 389, __pyx_L3_error) - __pyx_L3_error:; - __Pyx_AddTraceback("pmercury.protocols.tls.TLS.find_approx_match", __pyx_clineno, __pyx_lineno, __pyx_filename); - __Pyx_RefNannyFinishContext(); - return NULL; - __pyx_L4_argument_unpacking_done:; - __pyx_r = __pyx_pf_8pmercury_9protocols_3tls_3TLS_18find_approx_match(((struct __pyx_obj_8pmercury_9protocols_3tls_TLS *)__pyx_v_self), __pyx_v_tls_features, __pyx_v_fp_str, __pyx_v_source_filter, __pyx_v_key_filter); - - /* function exit code */ - __Pyx_RefNannyFinishContext(); - return __pyx_r; -} - -static PyObject *__pyx_pf_8pmercury_9protocols_3tls_3TLS_18find_approx_match(struct __pyx_obj_8pmercury_9protocols_3tls_TLS *__pyx_v_self, PyObject *__pyx_v_tls_features, PyObject *__pyx_v_fp_str, PyObject *__pyx_v_source_filter, PyObject *__pyx_v_key_filter) { - PyObject *__pyx_v_target_ = NULL; - PyObject *__pyx_v_tls_params_ = NULL; - PyObject *__pyx_v_t_sim_set = NULL; - PyObject *__pyx_v_approx_matches_set = NULL; - CYTHON_UNUSED PyObject *__pyx_v__ = NULL; - PyObject *__pyx_v_k = NULL; - PyObject *__pyx_v_tmp_lit_fp = NULL; - PyObject *__pyx_v_test_ = NULL; - PyObject *__pyx_v_score_ = NULL; - PyObject *__pyx_r = NULL; - __Pyx_RefNannyDeclarations - PyObject *__pyx_t_1 = NULL; - PyObject *__pyx_t_2 = NULL; - PyObject *__pyx_t_3 = NULL; - int __pyx_t_4; - PyObject *__pyx_t_5 = NULL; - Py_ssize_t __pyx_t_6; - PyObject *(*__pyx_t_7)(PyObject *); - PyObject *__pyx_t_8 = NULL; - PyObject *(*__pyx_t_9)(PyObject *); - Py_ssize_t __pyx_t_10; - Py_ssize_t __pyx_t_11; - int __pyx_t_12; - int __pyx_t_13; - __Pyx_RefNannySetupContext("find_approx_match", 0); - - /* "pmercury/protocols/tls.pyx":390 - * - * def find_approx_match(self, tls_features, fp_str=None, source_filter=None, key_filter=None): - * target_ = get_sequence(tls_features) # <<<<<<<<<<<<<< - * tls_params_ = get_tls_params(tls_features) - * - */ - __Pyx_GetModuleGlobalName(__pyx_t_2, __pyx_n_s_get_sequence); if (unlikely(!__pyx_t_2)) __PYX_ERR(0, 390, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_2); - __pyx_t_3 = NULL; - if (CYTHON_UNPACK_METHODS && unlikely(PyMethod_Check(__pyx_t_2))) { - __pyx_t_3 = PyMethod_GET_SELF(__pyx_t_2); - if (likely(__pyx_t_3)) { - PyObject* function = PyMethod_GET_FUNCTION(__pyx_t_2); - __Pyx_INCREF(__pyx_t_3); - __Pyx_INCREF(function); - __Pyx_DECREF_SET(__pyx_t_2, function); - } - } - __pyx_t_1 = (__pyx_t_3) ? __Pyx_PyObject_Call2Args(__pyx_t_2, __pyx_t_3, __pyx_v_tls_features) : __Pyx_PyObject_CallOneArg(__pyx_t_2, __pyx_v_tls_features); - __Pyx_XDECREF(__pyx_t_3); __pyx_t_3 = 0; - if (unlikely(!__pyx_t_1)) __PYX_ERR(0, 390, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_1); - __Pyx_DECREF(__pyx_t_2); __pyx_t_2 = 0; - __pyx_v_target_ = __pyx_t_1; - __pyx_t_1 = 0; - - /* "pmercury/protocols/tls.pyx":391 - * def find_approx_match(self, tls_features, fp_str=None, source_filter=None, key_filter=None): - * target_ = get_sequence(tls_features) - * tls_params_ = get_tls_params(tls_features) # <<<<<<<<<<<<<< - * - * t_sim_set = [] - */ - __Pyx_GetModuleGlobalName(__pyx_t_2, __pyx_n_s_get_tls_params); if (unlikely(!__pyx_t_2)) __PYX_ERR(0, 391, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_2); - __pyx_t_3 = NULL; - if (CYTHON_UNPACK_METHODS && unlikely(PyMethod_Check(__pyx_t_2))) { - __pyx_t_3 = PyMethod_GET_SELF(__pyx_t_2); - if (likely(__pyx_t_3)) { - PyObject* function = PyMethod_GET_FUNCTION(__pyx_t_2); - __Pyx_INCREF(__pyx_t_3); - __Pyx_INCREF(function); - __Pyx_DECREF_SET(__pyx_t_2, function); - } - } - __pyx_t_1 = (__pyx_t_3) ? __Pyx_PyObject_Call2Args(__pyx_t_2, __pyx_t_3, __pyx_v_tls_features) : __Pyx_PyObject_CallOneArg(__pyx_t_2, __pyx_v_tls_features); - __Pyx_XDECREF(__pyx_t_3); __pyx_t_3 = 0; - if (unlikely(!__pyx_t_1)) __PYX_ERR(0, 391, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_1); - __Pyx_DECREF(__pyx_t_2); __pyx_t_2 = 0; - __pyx_v_tls_params_ = __pyx_t_1; - __pyx_t_1 = 0; - - /* "pmercury/protocols/tls.pyx":393 - * tls_params_ = get_tls_params(tls_features) - * - * t_sim_set = [] # <<<<<<<<<<<<<< - * approx_matches_set = self.find_approximate_matches_set(tls_params_, fp_str, source_filter, key_filter) - * for _,k in approx_matches_set: - */ - __pyx_t_1 = PyList_New(0); if (unlikely(!__pyx_t_1)) __PYX_ERR(0, 393, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_1); - __pyx_v_t_sim_set = ((PyObject*)__pyx_t_1); - __pyx_t_1 = 0; - - /* "pmercury/protocols/tls.pyx":394 - * - * t_sim_set = [] - * approx_matches_set = self.find_approximate_matches_set(tls_params_, fp_str, source_filter, key_filter) # <<<<<<<<<<<<<< - * for _,k in approx_matches_set: - * tmp_lit_fp = eval_fp_str(self.fp_db[k]['str_repr']) - */ - __pyx_t_2 = __Pyx_PyObject_GetAttrStr(((PyObject *)__pyx_v_self), __pyx_n_s_find_approximate_matches_set); if (unlikely(!__pyx_t_2)) __PYX_ERR(0, 394, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_2); - __pyx_t_3 = NULL; - __pyx_t_4 = 0; - if (CYTHON_UNPACK_METHODS && likely(PyMethod_Check(__pyx_t_2))) { - __pyx_t_3 = PyMethod_GET_SELF(__pyx_t_2); - if (likely(__pyx_t_3)) { - PyObject* function = PyMethod_GET_FUNCTION(__pyx_t_2); - __Pyx_INCREF(__pyx_t_3); - __Pyx_INCREF(function); - __Pyx_DECREF_SET(__pyx_t_2, function); - __pyx_t_4 = 1; - } - } - #if CYTHON_FAST_PYCALL - if (PyFunction_Check(__pyx_t_2)) { - PyObject *__pyx_temp[5] = {__pyx_t_3, __pyx_v_tls_params_, __pyx_v_fp_str, __pyx_v_source_filter, __pyx_v_key_filter}; - __pyx_t_1 = __Pyx_PyFunction_FastCall(__pyx_t_2, __pyx_temp+1-__pyx_t_4, 4+__pyx_t_4); if (unlikely(!__pyx_t_1)) __PYX_ERR(0, 394, __pyx_L1_error) - __Pyx_XDECREF(__pyx_t_3); __pyx_t_3 = 0; - __Pyx_GOTREF(__pyx_t_1); - } else - #endif - #if CYTHON_FAST_PYCCALL - if (__Pyx_PyFastCFunction_Check(__pyx_t_2)) { - PyObject *__pyx_temp[5] = {__pyx_t_3, __pyx_v_tls_params_, __pyx_v_fp_str, __pyx_v_source_filter, __pyx_v_key_filter}; - __pyx_t_1 = __Pyx_PyCFunction_FastCall(__pyx_t_2, __pyx_temp+1-__pyx_t_4, 4+__pyx_t_4); if (unlikely(!__pyx_t_1)) __PYX_ERR(0, 394, __pyx_L1_error) - __Pyx_XDECREF(__pyx_t_3); __pyx_t_3 = 0; - __Pyx_GOTREF(__pyx_t_1); - } else - #endif - { - __pyx_t_5 = PyTuple_New(4+__pyx_t_4); if (unlikely(!__pyx_t_5)) __PYX_ERR(0, 394, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_5); - if (__pyx_t_3) { - __Pyx_GIVEREF(__pyx_t_3); PyTuple_SET_ITEM(__pyx_t_5, 0, __pyx_t_3); __pyx_t_3 = NULL; - } - __Pyx_INCREF(__pyx_v_tls_params_); - __Pyx_GIVEREF(__pyx_v_tls_params_); - PyTuple_SET_ITEM(__pyx_t_5, 0+__pyx_t_4, __pyx_v_tls_params_); - __Pyx_INCREF(__pyx_v_fp_str); - __Pyx_GIVEREF(__pyx_v_fp_str); - PyTuple_SET_ITEM(__pyx_t_5, 1+__pyx_t_4, __pyx_v_fp_str); - __Pyx_INCREF(__pyx_v_source_filter); - __Pyx_GIVEREF(__pyx_v_source_filter); - PyTuple_SET_ITEM(__pyx_t_5, 2+__pyx_t_4, __pyx_v_source_filter); - __Pyx_INCREF(__pyx_v_key_filter); - __Pyx_GIVEREF(__pyx_v_key_filter); - PyTuple_SET_ITEM(__pyx_t_5, 3+__pyx_t_4, __pyx_v_key_filter); - __pyx_t_1 = __Pyx_PyObject_Call(__pyx_t_2, __pyx_t_5, NULL); if (unlikely(!__pyx_t_1)) __PYX_ERR(0, 394, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_1); - __Pyx_DECREF(__pyx_t_5); __pyx_t_5 = 0; - } - __Pyx_DECREF(__pyx_t_2); __pyx_t_2 = 0; - __pyx_v_approx_matches_set = __pyx_t_1; - __pyx_t_1 = 0; - - /* "pmercury/protocols/tls.pyx":395 - * t_sim_set = [] - * approx_matches_set = self.find_approximate_matches_set(tls_params_, fp_str, source_filter, key_filter) - * for _,k in approx_matches_set: # <<<<<<<<<<<<<< - * tmp_lit_fp = eval_fp_str(self.fp_db[k]['str_repr']) - * test_ = get_sequence(tmp_lit_fp) - */ - if (likely(PyList_CheckExact(__pyx_v_approx_matches_set)) || PyTuple_CheckExact(__pyx_v_approx_matches_set)) { - __pyx_t_1 = __pyx_v_approx_matches_set; __Pyx_INCREF(__pyx_t_1); __pyx_t_6 = 0; - __pyx_t_7 = NULL; - } else { - __pyx_t_6 = -1; __pyx_t_1 = PyObject_GetIter(__pyx_v_approx_matches_set); if (unlikely(!__pyx_t_1)) __PYX_ERR(0, 395, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_1); - __pyx_t_7 = Py_TYPE(__pyx_t_1)->tp_iternext; if (unlikely(!__pyx_t_7)) __PYX_ERR(0, 395, __pyx_L1_error) - } - for (;;) { - if (likely(!__pyx_t_7)) { - if (likely(PyList_CheckExact(__pyx_t_1))) { - if (__pyx_t_6 >= PyList_GET_SIZE(__pyx_t_1)) break; - #if CYTHON_ASSUME_SAFE_MACROS && !CYTHON_AVOID_BORROWED_REFS - __pyx_t_2 = PyList_GET_ITEM(__pyx_t_1, __pyx_t_6); __Pyx_INCREF(__pyx_t_2); __pyx_t_6++; if (unlikely(0 < 0)) __PYX_ERR(0, 395, __pyx_L1_error) - #else - __pyx_t_2 = PySequence_ITEM(__pyx_t_1, __pyx_t_6); __pyx_t_6++; if (unlikely(!__pyx_t_2)) __PYX_ERR(0, 395, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_2); - #endif - } else { - if (__pyx_t_6 >= PyTuple_GET_SIZE(__pyx_t_1)) break; - #if CYTHON_ASSUME_SAFE_MACROS && !CYTHON_AVOID_BORROWED_REFS - __pyx_t_2 = PyTuple_GET_ITEM(__pyx_t_1, __pyx_t_6); __Pyx_INCREF(__pyx_t_2); __pyx_t_6++; if (unlikely(0 < 0)) __PYX_ERR(0, 395, __pyx_L1_error) - #else - __pyx_t_2 = PySequence_ITEM(__pyx_t_1, __pyx_t_6); __pyx_t_6++; if (unlikely(!__pyx_t_2)) __PYX_ERR(0, 395, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_2); - #endif - } - } else { - __pyx_t_2 = __pyx_t_7(__pyx_t_1); - if (unlikely(!__pyx_t_2)) { - PyObject* exc_type = PyErr_Occurred(); - if (exc_type) { - if (likely(__Pyx_PyErr_GivenExceptionMatches(exc_type, PyExc_StopIteration))) PyErr_Clear(); - else __PYX_ERR(0, 395, __pyx_L1_error) - } - break; - } - __Pyx_GOTREF(__pyx_t_2); - } - if ((likely(PyTuple_CheckExact(__pyx_t_2))) || (PyList_CheckExact(__pyx_t_2))) { - PyObject* sequence = __pyx_t_2; - Py_ssize_t size = __Pyx_PySequence_SIZE(sequence); - if (unlikely(size != 2)) { - if (size > 2) __Pyx_RaiseTooManyValuesError(2); - else if (size >= 0) __Pyx_RaiseNeedMoreValuesError(size); - __PYX_ERR(0, 395, __pyx_L1_error) - } - #if CYTHON_ASSUME_SAFE_MACROS && !CYTHON_AVOID_BORROWED_REFS - if (likely(PyTuple_CheckExact(sequence))) { - __pyx_t_5 = PyTuple_GET_ITEM(sequence, 0); - __pyx_t_3 = PyTuple_GET_ITEM(sequence, 1); - } else { - __pyx_t_5 = PyList_GET_ITEM(sequence, 0); - __pyx_t_3 = PyList_GET_ITEM(sequence, 1); - } - __Pyx_INCREF(__pyx_t_5); - __Pyx_INCREF(__pyx_t_3); - #else - __pyx_t_5 = PySequence_ITEM(sequence, 0); if (unlikely(!__pyx_t_5)) __PYX_ERR(0, 395, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_5); - __pyx_t_3 = PySequence_ITEM(sequence, 1); if (unlikely(!__pyx_t_3)) __PYX_ERR(0, 395, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_3); - #endif - __Pyx_DECREF(__pyx_t_2); __pyx_t_2 = 0; - } else { - Py_ssize_t index = -1; - __pyx_t_8 = PyObject_GetIter(__pyx_t_2); if (unlikely(!__pyx_t_8)) __PYX_ERR(0, 395, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_8); - __Pyx_DECREF(__pyx_t_2); __pyx_t_2 = 0; - __pyx_t_9 = Py_TYPE(__pyx_t_8)->tp_iternext; - index = 0; __pyx_t_5 = __pyx_t_9(__pyx_t_8); if (unlikely(!__pyx_t_5)) goto __pyx_L5_unpacking_failed; - __Pyx_GOTREF(__pyx_t_5); - index = 1; __pyx_t_3 = __pyx_t_9(__pyx_t_8); if (unlikely(!__pyx_t_3)) goto __pyx_L5_unpacking_failed; - __Pyx_GOTREF(__pyx_t_3); - if (__Pyx_IternextUnpackEndCheck(__pyx_t_9(__pyx_t_8), 2) < 0) __PYX_ERR(0, 395, __pyx_L1_error) - __pyx_t_9 = NULL; - __Pyx_DECREF(__pyx_t_8); __pyx_t_8 = 0; - goto __pyx_L6_unpacking_done; - __pyx_L5_unpacking_failed:; - __Pyx_DECREF(__pyx_t_8); __pyx_t_8 = 0; - __pyx_t_9 = NULL; - if (__Pyx_IterFinish() == 0) __Pyx_RaiseNeedMoreValuesError(index); - __PYX_ERR(0, 395, __pyx_L1_error) - __pyx_L6_unpacking_done:; - } - __Pyx_XDECREF_SET(__pyx_v__, __pyx_t_5); - __pyx_t_5 = 0; - __Pyx_XDECREF_SET(__pyx_v_k, __pyx_t_3); - __pyx_t_3 = 0; - - /* "pmercury/protocols/tls.pyx":396 - * approx_matches_set = self.find_approximate_matches_set(tls_params_, fp_str, source_filter, key_filter) - * for _,k in approx_matches_set: - * tmp_lit_fp = eval_fp_str(self.fp_db[k]['str_repr']) # <<<<<<<<<<<<<< - * test_ = get_sequence(tmp_lit_fp) - * score_ = self.aligner.align(target_, test_) - */ - __Pyx_GetModuleGlobalName(__pyx_t_3, __pyx_n_s_eval_fp_str); if (unlikely(!__pyx_t_3)) __PYX_ERR(0, 396, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_3); - if (unlikely(__pyx_v_self->fp_db == Py_None)) { - PyErr_SetString(PyExc_TypeError, "'NoneType' object is not subscriptable"); - __PYX_ERR(0, 396, __pyx_L1_error) - } - __pyx_t_5 = __Pyx_PyDict_GetItem(__pyx_v_self->fp_db, __pyx_v_k); if (unlikely(!__pyx_t_5)) __PYX_ERR(0, 396, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_5); - __pyx_t_8 = __Pyx_PyObject_Dict_GetItem(__pyx_t_5, __pyx_n_u_str_repr); if (unlikely(!__pyx_t_8)) __PYX_ERR(0, 396, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_8); - __Pyx_DECREF(__pyx_t_5); __pyx_t_5 = 0; - __pyx_t_5 = NULL; - if (CYTHON_UNPACK_METHODS && unlikely(PyMethod_Check(__pyx_t_3))) { - __pyx_t_5 = PyMethod_GET_SELF(__pyx_t_3); - if (likely(__pyx_t_5)) { - PyObject* function = PyMethod_GET_FUNCTION(__pyx_t_3); - __Pyx_INCREF(__pyx_t_5); - __Pyx_INCREF(function); - __Pyx_DECREF_SET(__pyx_t_3, function); - } - } - __pyx_t_2 = (__pyx_t_5) ? __Pyx_PyObject_Call2Args(__pyx_t_3, __pyx_t_5, __pyx_t_8) : __Pyx_PyObject_CallOneArg(__pyx_t_3, __pyx_t_8); - __Pyx_XDECREF(__pyx_t_5); __pyx_t_5 = 0; - __Pyx_DECREF(__pyx_t_8); __pyx_t_8 = 0; - if (unlikely(!__pyx_t_2)) __PYX_ERR(0, 396, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_2); - __Pyx_DECREF(__pyx_t_3); __pyx_t_3 = 0; - __Pyx_XDECREF_SET(__pyx_v_tmp_lit_fp, __pyx_t_2); - __pyx_t_2 = 0; - - /* "pmercury/protocols/tls.pyx":397 - * for _,k in approx_matches_set: - * tmp_lit_fp = eval_fp_str(self.fp_db[k]['str_repr']) - * test_ = get_sequence(tmp_lit_fp) # <<<<<<<<<<<<<< - * score_ = self.aligner.align(target_, test_) - * t_sim_set.append((1.0-2*score_/float(len(target_)+len(test_)), k)) - */ - __Pyx_GetModuleGlobalName(__pyx_t_3, __pyx_n_s_get_sequence); if (unlikely(!__pyx_t_3)) __PYX_ERR(0, 397, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_3); - __pyx_t_8 = NULL; - if (CYTHON_UNPACK_METHODS && unlikely(PyMethod_Check(__pyx_t_3))) { - __pyx_t_8 = PyMethod_GET_SELF(__pyx_t_3); - if (likely(__pyx_t_8)) { - PyObject* function = PyMethod_GET_FUNCTION(__pyx_t_3); - __Pyx_INCREF(__pyx_t_8); - __Pyx_INCREF(function); - __Pyx_DECREF_SET(__pyx_t_3, function); - } - } - __pyx_t_2 = (__pyx_t_8) ? __Pyx_PyObject_Call2Args(__pyx_t_3, __pyx_t_8, __pyx_v_tmp_lit_fp) : __Pyx_PyObject_CallOneArg(__pyx_t_3, __pyx_v_tmp_lit_fp); - __Pyx_XDECREF(__pyx_t_8); __pyx_t_8 = 0; - if (unlikely(!__pyx_t_2)) __PYX_ERR(0, 397, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_2); - __Pyx_DECREF(__pyx_t_3); __pyx_t_3 = 0; - __Pyx_XDECREF_SET(__pyx_v_test_, __pyx_t_2); - __pyx_t_2 = 0; - - /* "pmercury/protocols/tls.pyx":398 - * tmp_lit_fp = eval_fp_str(self.fp_db[k]['str_repr']) - * test_ = get_sequence(tmp_lit_fp) - * score_ = self.aligner.align(target_, test_) # <<<<<<<<<<<<<< - * t_sim_set.append((1.0-2*score_/float(len(target_)+len(test_)), k)) - * - */ - __pyx_t_3 = __Pyx_PyObject_GetAttrStr(__pyx_v_self->aligner, __pyx_n_s_align); if (unlikely(!__pyx_t_3)) __PYX_ERR(0, 398, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_3); - __pyx_t_8 = NULL; - __pyx_t_4 = 0; - if (CYTHON_UNPACK_METHODS && likely(PyMethod_Check(__pyx_t_3))) { - __pyx_t_8 = PyMethod_GET_SELF(__pyx_t_3); - if (likely(__pyx_t_8)) { - PyObject* function = PyMethod_GET_FUNCTION(__pyx_t_3); - __Pyx_INCREF(__pyx_t_8); - __Pyx_INCREF(function); - __Pyx_DECREF_SET(__pyx_t_3, function); - __pyx_t_4 = 1; - } - } - #if CYTHON_FAST_PYCALL - if (PyFunction_Check(__pyx_t_3)) { - PyObject *__pyx_temp[3] = {__pyx_t_8, __pyx_v_target_, __pyx_v_test_}; - __pyx_t_2 = __Pyx_PyFunction_FastCall(__pyx_t_3, __pyx_temp+1-__pyx_t_4, 2+__pyx_t_4); if (unlikely(!__pyx_t_2)) __PYX_ERR(0, 398, __pyx_L1_error) - __Pyx_XDECREF(__pyx_t_8); __pyx_t_8 = 0; - __Pyx_GOTREF(__pyx_t_2); - } else - #endif - #if CYTHON_FAST_PYCCALL - if (__Pyx_PyFastCFunction_Check(__pyx_t_3)) { - PyObject *__pyx_temp[3] = {__pyx_t_8, __pyx_v_target_, __pyx_v_test_}; - __pyx_t_2 = __Pyx_PyCFunction_FastCall(__pyx_t_3, __pyx_temp+1-__pyx_t_4, 2+__pyx_t_4); if (unlikely(!__pyx_t_2)) __PYX_ERR(0, 398, __pyx_L1_error) - __Pyx_XDECREF(__pyx_t_8); __pyx_t_8 = 0; - __Pyx_GOTREF(__pyx_t_2); - } else - #endif - { - __pyx_t_5 = PyTuple_New(2+__pyx_t_4); if (unlikely(!__pyx_t_5)) __PYX_ERR(0, 398, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_5); - if (__pyx_t_8) { - __Pyx_GIVEREF(__pyx_t_8); PyTuple_SET_ITEM(__pyx_t_5, 0, __pyx_t_8); __pyx_t_8 = NULL; - } - __Pyx_INCREF(__pyx_v_target_); - __Pyx_GIVEREF(__pyx_v_target_); - PyTuple_SET_ITEM(__pyx_t_5, 0+__pyx_t_4, __pyx_v_target_); - __Pyx_INCREF(__pyx_v_test_); - __Pyx_GIVEREF(__pyx_v_test_); - PyTuple_SET_ITEM(__pyx_t_5, 1+__pyx_t_4, __pyx_v_test_); - __pyx_t_2 = __Pyx_PyObject_Call(__pyx_t_3, __pyx_t_5, NULL); if (unlikely(!__pyx_t_2)) __PYX_ERR(0, 398, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_2); - __Pyx_DECREF(__pyx_t_5); __pyx_t_5 = 0; - } - __Pyx_DECREF(__pyx_t_3); __pyx_t_3 = 0; - __Pyx_XDECREF_SET(__pyx_v_score_, __pyx_t_2); - __pyx_t_2 = 0; - - /* "pmercury/protocols/tls.pyx":399 - * test_ = get_sequence(tmp_lit_fp) - * score_ = self.aligner.align(target_, test_) - * t_sim_set.append((1.0-2*score_/float(len(target_)+len(test_)), k)) # <<<<<<<<<<<<<< - * - * t_sim_set.sort() - */ - __pyx_t_2 = PyNumber_Multiply(__pyx_int_2, __pyx_v_score_); if (unlikely(!__pyx_t_2)) __PYX_ERR(0, 399, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_2); - __pyx_t_10 = PyObject_Length(__pyx_v_target_); if (unlikely(__pyx_t_10 == ((Py_ssize_t)-1))) __PYX_ERR(0, 399, __pyx_L1_error) - __pyx_t_11 = PyObject_Length(__pyx_v_test_); if (unlikely(__pyx_t_11 == ((Py_ssize_t)-1))) __PYX_ERR(0, 399, __pyx_L1_error) - __pyx_t_3 = PyFloat_FromDouble(((double)(__pyx_t_10 + __pyx_t_11))); if (unlikely(!__pyx_t_3)) __PYX_ERR(0, 399, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_3); - __pyx_t_5 = __Pyx_PyNumber_Divide(__pyx_t_2, __pyx_t_3); if (unlikely(!__pyx_t_5)) __PYX_ERR(0, 399, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_5); - __Pyx_DECREF(__pyx_t_2); __pyx_t_2 = 0; - __Pyx_DECREF(__pyx_t_3); __pyx_t_3 = 0; - __pyx_t_3 = __Pyx_PyFloat_SubtractCObj(__pyx_float_1_0, __pyx_t_5, 1.0, 0, 0); if (unlikely(!__pyx_t_3)) __PYX_ERR(0, 399, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_3); - __Pyx_DECREF(__pyx_t_5); __pyx_t_5 = 0; - __pyx_t_5 = PyTuple_New(2); if (unlikely(!__pyx_t_5)) __PYX_ERR(0, 399, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_5); - __Pyx_GIVEREF(__pyx_t_3); - PyTuple_SET_ITEM(__pyx_t_5, 0, __pyx_t_3); - __Pyx_INCREF(__pyx_v_k); - __Pyx_GIVEREF(__pyx_v_k); - PyTuple_SET_ITEM(__pyx_t_5, 1, __pyx_v_k); - __pyx_t_3 = 0; - __pyx_t_12 = __Pyx_PyList_Append(__pyx_v_t_sim_set, __pyx_t_5); if (unlikely(__pyx_t_12 == ((int)-1))) __PYX_ERR(0, 399, __pyx_L1_error) - __Pyx_DECREF(__pyx_t_5); __pyx_t_5 = 0; - - /* "pmercury/protocols/tls.pyx":395 - * t_sim_set = [] - * approx_matches_set = self.find_approximate_matches_set(tls_params_, fp_str, source_filter, key_filter) - * for _,k in approx_matches_set: # <<<<<<<<<<<<<< - * tmp_lit_fp = eval_fp_str(self.fp_db[k]['str_repr']) - * test_ = get_sequence(tmp_lit_fp) - */ - } - __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0; - - /* "pmercury/protocols/tls.pyx":401 - * t_sim_set.append((1.0-2*score_/float(len(target_)+len(test_)), k)) - * - * t_sim_set.sort() # <<<<<<<<<<<<<< - * if len(t_sim_set) == 0: - * return None - */ - __pyx_t_12 = PyList_Sort(__pyx_v_t_sim_set); if (unlikely(__pyx_t_12 == ((int)-1))) __PYX_ERR(0, 401, __pyx_L1_error) - - /* "pmercury/protocols/tls.pyx":402 - * - * t_sim_set.sort() - * if len(t_sim_set) == 0: # <<<<<<<<<<<<<< - * return None - * if t_sim_set[0][0] < 0.1: - */ - __pyx_t_6 = PyList_GET_SIZE(__pyx_v_t_sim_set); if (unlikely(__pyx_t_6 == ((Py_ssize_t)-1))) __PYX_ERR(0, 402, __pyx_L1_error) - __pyx_t_13 = ((__pyx_t_6 == 0) != 0); - if (__pyx_t_13) { - - /* "pmercury/protocols/tls.pyx":403 - * t_sim_set.sort() - * if len(t_sim_set) == 0: - * return None # <<<<<<<<<<<<<< - * if t_sim_set[0][0] < 0.1: - * return t_sim_set[0][1] - */ - __Pyx_XDECREF(__pyx_r); - __pyx_r = Py_None; __Pyx_INCREF(Py_None); - goto __pyx_L0; - - /* "pmercury/protocols/tls.pyx":402 - * - * t_sim_set.sort() - * if len(t_sim_set) == 0: # <<<<<<<<<<<<<< - * return None - * if t_sim_set[0][0] < 0.1: - */ - } - - /* "pmercury/protocols/tls.pyx":404 - * if len(t_sim_set) == 0: - * return None - * if t_sim_set[0][0] < 0.1: # <<<<<<<<<<<<<< - * return t_sim_set[0][1] - * else: - */ - __pyx_t_1 = __Pyx_GetItemInt_List(__pyx_v_t_sim_set, 0, long, 1, __Pyx_PyInt_From_long, 1, 0, 1); if (unlikely(!__pyx_t_1)) __PYX_ERR(0, 404, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_1); - __pyx_t_5 = __Pyx_GetItemInt(__pyx_t_1, 0, long, 1, __Pyx_PyInt_From_long, 0, 0, 1); if (unlikely(!__pyx_t_5)) __PYX_ERR(0, 404, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_5); - __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0; - __pyx_t_1 = PyObject_RichCompare(__pyx_t_5, __pyx_float_0_1, Py_LT); __Pyx_XGOTREF(__pyx_t_1); if (unlikely(!__pyx_t_1)) __PYX_ERR(0, 404, __pyx_L1_error) - __Pyx_DECREF(__pyx_t_5); __pyx_t_5 = 0; - __pyx_t_13 = __Pyx_PyObject_IsTrue(__pyx_t_1); if (unlikely(__pyx_t_13 < 0)) __PYX_ERR(0, 404, __pyx_L1_error) - __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0; - if (__pyx_t_13) { - - /* "pmercury/protocols/tls.pyx":405 - * return None - * if t_sim_set[0][0] < 0.1: - * return t_sim_set[0][1] # <<<<<<<<<<<<<< - * else: - * return None - */ - __Pyx_XDECREF(__pyx_r); - __pyx_t_1 = __Pyx_GetItemInt_List(__pyx_v_t_sim_set, 0, long, 1, __Pyx_PyInt_From_long, 1, 0, 1); if (unlikely(!__pyx_t_1)) __PYX_ERR(0, 405, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_1); - __pyx_t_5 = __Pyx_GetItemInt(__pyx_t_1, 1, long, 1, __Pyx_PyInt_From_long, 0, 0, 1); if (unlikely(!__pyx_t_5)) __PYX_ERR(0, 405, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_5); - __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0; - __pyx_r = __pyx_t_5; - __pyx_t_5 = 0; - goto __pyx_L0; - - /* "pmercury/protocols/tls.pyx":404 - * if len(t_sim_set) == 0: - * return None - * if t_sim_set[0][0] < 0.1: # <<<<<<<<<<<<<< - * return t_sim_set[0][1] - * else: - */ - } - - /* "pmercury/protocols/tls.pyx":407 - * return t_sim_set[0][1] - * else: - * return None # <<<<<<<<<<<<<< - * - * - */ - /*else*/ { - __Pyx_XDECREF(__pyx_r); - __pyx_r = Py_None; __Pyx_INCREF(Py_None); - goto __pyx_L0; - } - - /* "pmercury/protocols/tls.pyx":389 - * - * - * def find_approx_match(self, tls_features, fp_str=None, source_filter=None, key_filter=None): # <<<<<<<<<<<<<< - * target_ = get_sequence(tls_features) - * tls_params_ = get_tls_params(tls_features) - */ - - /* function exit code */ - __pyx_L1_error:; - __Pyx_XDECREF(__pyx_t_1); - __Pyx_XDECREF(__pyx_t_2); - __Pyx_XDECREF(__pyx_t_3); - __Pyx_XDECREF(__pyx_t_5); - __Pyx_XDECREF(__pyx_t_8); - __Pyx_AddTraceback("pmercury.protocols.tls.TLS.find_approx_match", __pyx_clineno, __pyx_lineno, __pyx_filename); - __pyx_r = NULL; - __pyx_L0:; - __Pyx_XDECREF(__pyx_v_target_); - __Pyx_XDECREF(__pyx_v_tls_params_); - __Pyx_XDECREF(__pyx_v_t_sim_set); - __Pyx_XDECREF(__pyx_v_approx_matches_set); - __Pyx_XDECREF(__pyx_v__); - __Pyx_XDECREF(__pyx_v_k); - __Pyx_XDECREF(__pyx_v_tmp_lit_fp); - __Pyx_XDECREF(__pyx_v_test_); - __Pyx_XDECREF(__pyx_v_score_); - __Pyx_XGIVEREF(__pyx_r); - __Pyx_RefNannyFinishContext(); - return __pyx_r; -} - -/* "pmercury/protocols/tls.pyx":410 - * - * - * def find_approximate_matches_set(self, tls_params, fp_str=None, source_filter=None, key_filter=None): # <<<<<<<<<<<<<< - * t_scores = [] - * p0_ = set(tls_params[0]) - */ - -/* Python wrapper */ -static PyObject *__pyx_pw_8pmercury_9protocols_3tls_3TLS_21find_approximate_matches_set(PyObject *__pyx_v_self, PyObject *__pyx_args, PyObject *__pyx_kwds); /*proto*/ -static PyObject *__pyx_pw_8pmercury_9protocols_3tls_3TLS_21find_approximate_matches_set(PyObject *__pyx_v_self, PyObject *__pyx_args, PyObject *__pyx_kwds) { - PyObject *__pyx_v_tls_params = 0; - PyObject *__pyx_v_fp_str = 0; - PyObject *__pyx_v_source_filter = 0; - PyObject *__pyx_v_key_filter = 0; - PyObject *__pyx_r = 0; - __Pyx_RefNannyDeclarations - __Pyx_RefNannySetupContext("find_approximate_matches_set (wrapper)", 0); - { - static PyObject **__pyx_pyargnames[] = {&__pyx_n_s_tls_params,&__pyx_n_s_fp_str_2,&__pyx_n_s_source_filter,&__pyx_n_s_key_filter,0}; - PyObject* values[4] = {0,0,0,0}; - values[1] = ((PyObject *)Py_None); - values[2] = ((PyObject *)Py_None); - values[3] = ((PyObject *)Py_None); - if (unlikely(__pyx_kwds)) { - Py_ssize_t kw_args; - const Py_ssize_t pos_args = PyTuple_GET_SIZE(__pyx_args); - switch (pos_args) { - case 4: values[3] = PyTuple_GET_ITEM(__pyx_args, 3); - CYTHON_FALLTHROUGH; - case 3: values[2] = PyTuple_GET_ITEM(__pyx_args, 2); - CYTHON_FALLTHROUGH; - case 2: values[1] = PyTuple_GET_ITEM(__pyx_args, 1); - CYTHON_FALLTHROUGH; - case 1: values[0] = PyTuple_GET_ITEM(__pyx_args, 0); - CYTHON_FALLTHROUGH; - case 0: break; - default: goto __pyx_L5_argtuple_error; - } - kw_args = PyDict_Size(__pyx_kwds); - switch (pos_args) { - case 0: - if (likely((values[0] = __Pyx_PyDict_GetItemStr(__pyx_kwds, __pyx_n_s_tls_params)) != 0)) kw_args--; - else goto __pyx_L5_argtuple_error; - CYTHON_FALLTHROUGH; - case 1: - if (kw_args > 0) { - PyObject* value = __Pyx_PyDict_GetItemStr(__pyx_kwds, __pyx_n_s_fp_str_2); - if (value) { values[1] = value; kw_args--; } - } - CYTHON_FALLTHROUGH; - case 2: - if (kw_args > 0) { - PyObject* value = __Pyx_PyDict_GetItemStr(__pyx_kwds, __pyx_n_s_source_filter); - if (value) { values[2] = value; kw_args--; } - } - CYTHON_FALLTHROUGH; - case 3: - if (kw_args > 0) { - PyObject* value = __Pyx_PyDict_GetItemStr(__pyx_kwds, __pyx_n_s_key_filter); - if (value) { values[3] = value; kw_args--; } - } - } - if (unlikely(kw_args > 0)) { - if (unlikely(__Pyx_ParseOptionalKeywords(__pyx_kwds, __pyx_pyargnames, 0, values, pos_args, "find_approximate_matches_set") < 0)) __PYX_ERR(0, 410, __pyx_L3_error) - } - } else { - switch (PyTuple_GET_SIZE(__pyx_args)) { - case 4: values[3] = PyTuple_GET_ITEM(__pyx_args, 3); - CYTHON_FALLTHROUGH; - case 3: values[2] = PyTuple_GET_ITEM(__pyx_args, 2); - CYTHON_FALLTHROUGH; - case 2: values[1] = PyTuple_GET_ITEM(__pyx_args, 1); - CYTHON_FALLTHROUGH; - case 1: values[0] = PyTuple_GET_ITEM(__pyx_args, 0); - break; - default: goto __pyx_L5_argtuple_error; - } - } - __pyx_v_tls_params = values[0]; - __pyx_v_fp_str = values[1]; - __pyx_v_source_filter = values[2]; - __pyx_v_key_filter = values[3]; - } - goto __pyx_L4_argument_unpacking_done; - __pyx_L5_argtuple_error:; - __Pyx_RaiseArgtupleInvalid("find_approximate_matches_set", 0, 1, 4, PyTuple_GET_SIZE(__pyx_args)); __PYX_ERR(0, 410, __pyx_L3_error) - __pyx_L3_error:; - __Pyx_AddTraceback("pmercury.protocols.tls.TLS.find_approximate_matches_set", __pyx_clineno, __pyx_lineno, __pyx_filename); - __Pyx_RefNannyFinishContext(); - return NULL; - __pyx_L4_argument_unpacking_done:; - __pyx_r = __pyx_pf_8pmercury_9protocols_3tls_3TLS_20find_approximate_matches_set(((struct __pyx_obj_8pmercury_9protocols_3tls_TLS *)__pyx_v_self), __pyx_v_tls_params, __pyx_v_fp_str, __pyx_v_source_filter, __pyx_v_key_filter); - - /* function exit code */ - __Pyx_RefNannyFinishContext(); - return __pyx_r; -} - -static PyObject *__pyx_pf_8pmercury_9protocols_3tls_3TLS_20find_approximate_matches_set(struct __pyx_obj_8pmercury_9protocols_3tls_TLS *__pyx_v_self, PyObject *__pyx_v_tls_params, PyObject *__pyx_v_fp_str, PyObject *__pyx_v_source_filter, PyObject *__pyx_v_key_filter) { - PyObject *__pyx_v_t_scores = NULL; - PyObject *__pyx_v_p0_ = NULL; - PyObject *__pyx_v_p1_ = NULL; - PyObject *__pyx_v_k = NULL; - PyObject *__pyx_v_lit_fp = NULL; - PyObject *__pyx_v_tls_params_ = NULL; - PyObject *__pyx_v_q0_ = NULL; - PyObject *__pyx_v_q1_ = NULL; - double __pyx_v_s0_; - double __pyx_v_s1_; - double __pyx_v_s_; - PyObject *__pyx_r = NULL; - __Pyx_RefNannyDeclarations - PyObject *__pyx_t_1 = NULL; - PyObject *__pyx_t_2 = NULL; - Py_ssize_t __pyx_t_3; - Py_ssize_t __pyx_t_4; - int __pyx_t_5; - int __pyx_t_6; - int __pyx_t_7; - int __pyx_t_8; - PyObject *__pyx_t_9 = NULL; - int __pyx_t_10; - PyObject *__pyx_t_11 = NULL; - Py_ssize_t __pyx_t_12; - Py_ssize_t __pyx_t_13; - int __pyx_t_14; - __Pyx_RefNannySetupContext("find_approximate_matches_set", 0); - - /* "pmercury/protocols/tls.pyx":411 - * - * def find_approximate_matches_set(self, tls_params, fp_str=None, source_filter=None, key_filter=None): - * t_scores = [] # <<<<<<<<<<<<<< - * p0_ = set(tls_params[0]) - * p1_ = set(tls_params[1]) - */ - __pyx_t_1 = PyList_New(0); if (unlikely(!__pyx_t_1)) __PYX_ERR(0, 411, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_1); - __pyx_v_t_scores = ((PyObject*)__pyx_t_1); - __pyx_t_1 = 0; - - /* "pmercury/protocols/tls.pyx":412 - * def find_approximate_matches_set(self, tls_params, fp_str=None, source_filter=None, key_filter=None): - * t_scores = [] - * p0_ = set(tls_params[0]) # <<<<<<<<<<<<<< - * p1_ = set(tls_params[1]) - * for k in self.fp_db.keys(): - */ - __pyx_t_1 = __Pyx_GetItemInt(__pyx_v_tls_params, 0, long, 1, __Pyx_PyInt_From_long, 0, 0, 1); if (unlikely(!__pyx_t_1)) __PYX_ERR(0, 412, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_1); - __pyx_t_2 = PySet_New(__pyx_t_1); if (unlikely(!__pyx_t_2)) __PYX_ERR(0, 412, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_2); - __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0; - __pyx_v_p0_ = ((PyObject*)__pyx_t_2); - __pyx_t_2 = 0; - - /* "pmercury/protocols/tls.pyx":413 - * t_scores = [] - * p0_ = set(tls_params[0]) - * p1_ = set(tls_params[1]) # <<<<<<<<<<<<<< - * for k in self.fp_db.keys(): - * k = k - */ - __pyx_t_2 = __Pyx_GetItemInt(__pyx_v_tls_params, 1, long, 1, __Pyx_PyInt_From_long, 0, 0, 1); if (unlikely(!__pyx_t_2)) __PYX_ERR(0, 413, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_2); - __pyx_t_1 = PySet_New(__pyx_t_2); if (unlikely(!__pyx_t_1)) __PYX_ERR(0, 413, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_1); - __Pyx_DECREF(__pyx_t_2); __pyx_t_2 = 0; - __pyx_v_p1_ = ((PyObject*)__pyx_t_1); - __pyx_t_1 = 0; - - /* "pmercury/protocols/tls.pyx":414 - * p0_ = set(tls_params[0]) - * p1_ = set(tls_params[1]) - * for k in self.fp_db.keys(): # <<<<<<<<<<<<<< - * k = k - * if source_filter != None and source_filter not in self.fp_db[k]['source']: - */ - __pyx_t_3 = 0; - if (unlikely(__pyx_v_self->fp_db == Py_None)) { - PyErr_Format(PyExc_AttributeError, "'NoneType' object has no attribute '%.30s'", "keys"); - __PYX_ERR(0, 414, __pyx_L1_error) - } - __pyx_t_2 = __Pyx_dict_iterator(__pyx_v_self->fp_db, 1, __pyx_n_s_keys, (&__pyx_t_4), (&__pyx_t_5)); if (unlikely(!__pyx_t_2)) __PYX_ERR(0, 414, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_2); - __Pyx_XDECREF(__pyx_t_1); - __pyx_t_1 = __pyx_t_2; - __pyx_t_2 = 0; - while (1) { - __pyx_t_6 = __Pyx_dict_iter_next(__pyx_t_1, __pyx_t_4, &__pyx_t_3, &__pyx_t_2, NULL, NULL, __pyx_t_5); - if (unlikely(__pyx_t_6 == 0)) break; - if (unlikely(__pyx_t_6 == -1)) __PYX_ERR(0, 414, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_2); - __Pyx_XDECREF_SET(__pyx_v_k, __pyx_t_2); - __pyx_t_2 = 0; - - /* "pmercury/protocols/tls.pyx":415 - * p1_ = set(tls_params[1]) - * for k in self.fp_db.keys(): - * k = k # <<<<<<<<<<<<<< - * if source_filter != None and source_filter not in self.fp_db[k]['source']: - * continue - */ - __Pyx_INCREF(__pyx_v_k); - __Pyx_DECREF_SET(__pyx_v_k, __pyx_v_k); - - /* "pmercury/protocols/tls.pyx":416 - * for k in self.fp_db.keys(): - * k = k - * if source_filter != None and source_filter not in self.fp_db[k]['source']: # <<<<<<<<<<<<<< - * continue - * if fp_str != None and key_filter != None and fp_str not in key_filter and k not in key_filter: - */ - __pyx_t_2 = PyObject_RichCompare(__pyx_v_source_filter, Py_None, Py_NE); __Pyx_XGOTREF(__pyx_t_2); if (unlikely(!__pyx_t_2)) __PYX_ERR(0, 416, __pyx_L1_error) - __pyx_t_8 = __Pyx_PyObject_IsTrue(__pyx_t_2); if (unlikely(__pyx_t_8 < 0)) __PYX_ERR(0, 416, __pyx_L1_error) - __Pyx_DECREF(__pyx_t_2); __pyx_t_2 = 0; - if (__pyx_t_8) { - } else { - __pyx_t_7 = __pyx_t_8; - goto __pyx_L6_bool_binop_done; - } - if (unlikely(__pyx_v_self->fp_db == Py_None)) { - PyErr_SetString(PyExc_TypeError, "'NoneType' object is not subscriptable"); - __PYX_ERR(0, 416, __pyx_L1_error) - } - __pyx_t_2 = __Pyx_PyDict_GetItem(__pyx_v_self->fp_db, __pyx_v_k); if (unlikely(!__pyx_t_2)) __PYX_ERR(0, 416, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_2); - __pyx_t_9 = __Pyx_PyObject_Dict_GetItem(__pyx_t_2, __pyx_n_u_source); if (unlikely(!__pyx_t_9)) __PYX_ERR(0, 416, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_9); - __Pyx_DECREF(__pyx_t_2); __pyx_t_2 = 0; - __pyx_t_8 = (__Pyx_PySequence_ContainsTF(__pyx_v_source_filter, __pyx_t_9, Py_NE)); if (unlikely(__pyx_t_8 < 0)) __PYX_ERR(0, 416, __pyx_L1_error) - __Pyx_DECREF(__pyx_t_9); __pyx_t_9 = 0; - __pyx_t_10 = (__pyx_t_8 != 0); - __pyx_t_7 = __pyx_t_10; - __pyx_L6_bool_binop_done:; - if (__pyx_t_7) { - - /* "pmercury/protocols/tls.pyx":417 - * k = k - * if source_filter != None and source_filter not in self.fp_db[k]['source']: - * continue # <<<<<<<<<<<<<< - * if fp_str != None and key_filter != None and fp_str not in key_filter and k not in key_filter: - * continue - */ - goto __pyx_L3_continue; - - /* "pmercury/protocols/tls.pyx":416 - * for k in self.fp_db.keys(): - * k = k - * if source_filter != None and source_filter not in self.fp_db[k]['source']: # <<<<<<<<<<<<<< - * continue - * if fp_str != None and key_filter != None and fp_str not in key_filter and k not in key_filter: - */ - } - - /* "pmercury/protocols/tls.pyx":418 - * if source_filter != None and source_filter not in self.fp_db[k]['source']: - * continue - * if fp_str != None and key_filter != None and fp_str not in key_filter and k not in key_filter: # <<<<<<<<<<<<<< - * continue - * if k not in self.tls_params_db: - */ - __pyx_t_9 = PyObject_RichCompare(__pyx_v_fp_str, Py_None, Py_NE); __Pyx_XGOTREF(__pyx_t_9); if (unlikely(!__pyx_t_9)) __PYX_ERR(0, 418, __pyx_L1_error) - __pyx_t_10 = __Pyx_PyObject_IsTrue(__pyx_t_9); if (unlikely(__pyx_t_10 < 0)) __PYX_ERR(0, 418, __pyx_L1_error) - __Pyx_DECREF(__pyx_t_9); __pyx_t_9 = 0; - if (__pyx_t_10) { - } else { - __pyx_t_7 = __pyx_t_10; - goto __pyx_L9_bool_binop_done; - } - __pyx_t_9 = PyObject_RichCompare(__pyx_v_key_filter, Py_None, Py_NE); __Pyx_XGOTREF(__pyx_t_9); if (unlikely(!__pyx_t_9)) __PYX_ERR(0, 418, __pyx_L1_error) - __pyx_t_10 = __Pyx_PyObject_IsTrue(__pyx_t_9); if (unlikely(__pyx_t_10 < 0)) __PYX_ERR(0, 418, __pyx_L1_error) - __Pyx_DECREF(__pyx_t_9); __pyx_t_9 = 0; - if (__pyx_t_10) { - } else { - __pyx_t_7 = __pyx_t_10; - goto __pyx_L9_bool_binop_done; - } - __pyx_t_10 = (__Pyx_PySequence_ContainsTF(__pyx_v_fp_str, __pyx_v_key_filter, Py_NE)); if (unlikely(__pyx_t_10 < 0)) __PYX_ERR(0, 418, __pyx_L1_error) - __pyx_t_8 = (__pyx_t_10 != 0); - if (__pyx_t_8) { - } else { - __pyx_t_7 = __pyx_t_8; - goto __pyx_L9_bool_binop_done; - } - __pyx_t_8 = (__Pyx_PySequence_ContainsTF(__pyx_v_k, __pyx_v_key_filter, Py_NE)); if (unlikely(__pyx_t_8 < 0)) __PYX_ERR(0, 418, __pyx_L1_error) - __pyx_t_10 = (__pyx_t_8 != 0); - __pyx_t_7 = __pyx_t_10; - __pyx_L9_bool_binop_done:; - if (__pyx_t_7) { - - /* "pmercury/protocols/tls.pyx":419 - * continue - * if fp_str != None and key_filter != None and fp_str not in key_filter and k not in key_filter: - * continue # <<<<<<<<<<<<<< - * if k not in self.tls_params_db: - * lit_fp = eval_fp_str(k) - */ - goto __pyx_L3_continue; - - /* "pmercury/protocols/tls.pyx":418 - * if source_filter != None and source_filter not in self.fp_db[k]['source']: - * continue - * if fp_str != None and key_filter != None and fp_str not in key_filter and k not in key_filter: # <<<<<<<<<<<<<< - * continue - * if k not in self.tls_params_db: - */ - } - - /* "pmercury/protocols/tls.pyx":420 - * if fp_str != None and key_filter != None and fp_str not in key_filter and k not in key_filter: - * continue - * if k not in self.tls_params_db: # <<<<<<<<<<<<<< - * lit_fp = eval_fp_str(k) - * tls_params_ = get_tls_params(lit_fp) - */ - if (unlikely(__pyx_v_self->tls_params_db == Py_None)) { - PyErr_SetString(PyExc_TypeError, "'NoneType' object is not iterable"); - __PYX_ERR(0, 420, __pyx_L1_error) - } - __pyx_t_7 = (__Pyx_PyDict_ContainsTF(__pyx_v_k, __pyx_v_self->tls_params_db, Py_NE)); if (unlikely(__pyx_t_7 < 0)) __PYX_ERR(0, 420, __pyx_L1_error) - __pyx_t_10 = (__pyx_t_7 != 0); - if (__pyx_t_10) { - - /* "pmercury/protocols/tls.pyx":421 - * continue - * if k not in self.tls_params_db: - * lit_fp = eval_fp_str(k) # <<<<<<<<<<<<<< - * tls_params_ = get_tls_params(lit_fp) - * self.tls_params_db[k] = tls_params_ - */ - __Pyx_GetModuleGlobalName(__pyx_t_2, __pyx_n_s_eval_fp_str); if (unlikely(!__pyx_t_2)) __PYX_ERR(0, 421, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_2); - __pyx_t_11 = NULL; - if (CYTHON_UNPACK_METHODS && unlikely(PyMethod_Check(__pyx_t_2))) { - __pyx_t_11 = PyMethod_GET_SELF(__pyx_t_2); - if (likely(__pyx_t_11)) { - PyObject* function = PyMethod_GET_FUNCTION(__pyx_t_2); - __Pyx_INCREF(__pyx_t_11); - __Pyx_INCREF(function); - __Pyx_DECREF_SET(__pyx_t_2, function); - } - } - __pyx_t_9 = (__pyx_t_11) ? __Pyx_PyObject_Call2Args(__pyx_t_2, __pyx_t_11, __pyx_v_k) : __Pyx_PyObject_CallOneArg(__pyx_t_2, __pyx_v_k); - __Pyx_XDECREF(__pyx_t_11); __pyx_t_11 = 0; - if (unlikely(!__pyx_t_9)) __PYX_ERR(0, 421, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_9); - __Pyx_DECREF(__pyx_t_2); __pyx_t_2 = 0; - __Pyx_XDECREF_SET(__pyx_v_lit_fp, __pyx_t_9); - __pyx_t_9 = 0; - - /* "pmercury/protocols/tls.pyx":422 - * if k not in self.tls_params_db: - * lit_fp = eval_fp_str(k) - * tls_params_ = get_tls_params(lit_fp) # <<<<<<<<<<<<<< - * self.tls_params_db[k] = tls_params_ - * q0_ = set(self.tls_params_db[k][0]) - */ - __Pyx_GetModuleGlobalName(__pyx_t_2, __pyx_n_s_get_tls_params); if (unlikely(!__pyx_t_2)) __PYX_ERR(0, 422, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_2); - __pyx_t_11 = NULL; - if (CYTHON_UNPACK_METHODS && unlikely(PyMethod_Check(__pyx_t_2))) { - __pyx_t_11 = PyMethod_GET_SELF(__pyx_t_2); - if (likely(__pyx_t_11)) { - PyObject* function = PyMethod_GET_FUNCTION(__pyx_t_2); - __Pyx_INCREF(__pyx_t_11); - __Pyx_INCREF(function); - __Pyx_DECREF_SET(__pyx_t_2, function); - } - } - __pyx_t_9 = (__pyx_t_11) ? __Pyx_PyObject_Call2Args(__pyx_t_2, __pyx_t_11, __pyx_v_lit_fp) : __Pyx_PyObject_CallOneArg(__pyx_t_2, __pyx_v_lit_fp); - __Pyx_XDECREF(__pyx_t_11); __pyx_t_11 = 0; - if (unlikely(!__pyx_t_9)) __PYX_ERR(0, 422, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_9); - __Pyx_DECREF(__pyx_t_2); __pyx_t_2 = 0; - __Pyx_XDECREF_SET(__pyx_v_tls_params_, __pyx_t_9); - __pyx_t_9 = 0; - - /* "pmercury/protocols/tls.pyx":423 - * lit_fp = eval_fp_str(k) - * tls_params_ = get_tls_params(lit_fp) - * self.tls_params_db[k] = tls_params_ # <<<<<<<<<<<<<< - * q0_ = set(self.tls_params_db[k][0]) - * q1_ = set(self.tls_params_db[k][1]) - */ - if (unlikely(__pyx_v_self->tls_params_db == Py_None)) { - PyErr_SetString(PyExc_TypeError, "'NoneType' object is not subscriptable"); - __PYX_ERR(0, 423, __pyx_L1_error) - } - if (unlikely(PyDict_SetItem(__pyx_v_self->tls_params_db, __pyx_v_k, __pyx_v_tls_params_) < 0)) __PYX_ERR(0, 423, __pyx_L1_error) - - /* "pmercury/protocols/tls.pyx":420 - * if fp_str != None and key_filter != None and fp_str not in key_filter and k not in key_filter: - * continue - * if k not in self.tls_params_db: # <<<<<<<<<<<<<< - * lit_fp = eval_fp_str(k) - * tls_params_ = get_tls_params(lit_fp) - */ - } - - /* "pmercury/protocols/tls.pyx":424 - * tls_params_ = get_tls_params(lit_fp) - * self.tls_params_db[k] = tls_params_ - * q0_ = set(self.tls_params_db[k][0]) # <<<<<<<<<<<<<< - * q1_ = set(self.tls_params_db[k][1]) - * s0_ = len(p0_.intersection(q0_))/fmax(1.0,len(p0_.union(q0_))) - */ - if (unlikely(__pyx_v_self->tls_params_db == Py_None)) { - PyErr_SetString(PyExc_TypeError, "'NoneType' object is not subscriptable"); - __PYX_ERR(0, 424, __pyx_L1_error) - } - __pyx_t_9 = __Pyx_PyDict_GetItem(__pyx_v_self->tls_params_db, __pyx_v_k); if (unlikely(!__pyx_t_9)) __PYX_ERR(0, 424, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_9); - __pyx_t_2 = __Pyx_GetItemInt(__pyx_t_9, 0, long, 1, __Pyx_PyInt_From_long, 0, 0, 1); if (unlikely(!__pyx_t_2)) __PYX_ERR(0, 424, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_2); - __Pyx_DECREF(__pyx_t_9); __pyx_t_9 = 0; - __pyx_t_9 = PySet_New(__pyx_t_2); if (unlikely(!__pyx_t_9)) __PYX_ERR(0, 424, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_9); - __Pyx_DECREF(__pyx_t_2); __pyx_t_2 = 0; - __Pyx_XDECREF_SET(__pyx_v_q0_, ((PyObject*)__pyx_t_9)); - __pyx_t_9 = 0; - - /* "pmercury/protocols/tls.pyx":425 - * self.tls_params_db[k] = tls_params_ - * q0_ = set(self.tls_params_db[k][0]) - * q1_ = set(self.tls_params_db[k][1]) # <<<<<<<<<<<<<< - * s0_ = len(p0_.intersection(q0_))/fmax(1.0,len(p0_.union(q0_))) - * s1_ = len(p1_.intersection(q1_))/fmax(1.0,len(p1_.union(q1_))) - */ - if (unlikely(__pyx_v_self->tls_params_db == Py_None)) { - PyErr_SetString(PyExc_TypeError, "'NoneType' object is not subscriptable"); - __PYX_ERR(0, 425, __pyx_L1_error) - } - __pyx_t_9 = __Pyx_PyDict_GetItem(__pyx_v_self->tls_params_db, __pyx_v_k); if (unlikely(!__pyx_t_9)) __PYX_ERR(0, 425, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_9); - __pyx_t_2 = __Pyx_GetItemInt(__pyx_t_9, 1, long, 1, __Pyx_PyInt_From_long, 0, 0, 1); if (unlikely(!__pyx_t_2)) __PYX_ERR(0, 425, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_2); - __Pyx_DECREF(__pyx_t_9); __pyx_t_9 = 0; - __pyx_t_9 = PySet_New(__pyx_t_2); if (unlikely(!__pyx_t_9)) __PYX_ERR(0, 425, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_9); - __Pyx_DECREF(__pyx_t_2); __pyx_t_2 = 0; - __Pyx_XDECREF_SET(__pyx_v_q1_, ((PyObject*)__pyx_t_9)); - __pyx_t_9 = 0; - - /* "pmercury/protocols/tls.pyx":426 - * q0_ = set(self.tls_params_db[k][0]) - * q1_ = set(self.tls_params_db[k][1]) - * s0_ = len(p0_.intersection(q0_))/fmax(1.0,len(p0_.union(q0_))) # <<<<<<<<<<<<<< - * s1_ = len(p1_.intersection(q1_))/fmax(1.0,len(p1_.union(q1_))) - * s_ = s0_ + s1_ - */ - __pyx_t_9 = __Pyx_CallUnboundCMethod1(&__pyx_umethod_PySet_Type_intersection, __pyx_v_p0_, __pyx_v_q0_); if (unlikely(!__pyx_t_9)) __PYX_ERR(0, 426, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_9); - __pyx_t_12 = PyObject_Length(__pyx_t_9); if (unlikely(__pyx_t_12 == ((Py_ssize_t)-1))) __PYX_ERR(0, 426, __pyx_L1_error) - __Pyx_DECREF(__pyx_t_9); __pyx_t_9 = 0; - __pyx_t_9 = __Pyx_CallUnboundCMethod1(&__pyx_umethod_PySet_Type_union, __pyx_v_p0_, __pyx_v_q0_); if (unlikely(!__pyx_t_9)) __PYX_ERR(0, 426, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_9); - __pyx_t_13 = PyObject_Length(__pyx_t_9); if (unlikely(__pyx_t_13 == ((Py_ssize_t)-1))) __PYX_ERR(0, 426, __pyx_L1_error) - __Pyx_DECREF(__pyx_t_9); __pyx_t_9 = 0; - __pyx_v_s0_ = (((double)__pyx_t_12) / fmax(1.0, __pyx_t_13)); - - /* "pmercury/protocols/tls.pyx":427 - * q1_ = set(self.tls_params_db[k][1]) - * s0_ = len(p0_.intersection(q0_))/fmax(1.0,len(p0_.union(q0_))) - * s1_ = len(p1_.intersection(q1_))/fmax(1.0,len(p1_.union(q1_))) # <<<<<<<<<<<<<< - * s_ = s0_ + s1_ - * t_scores.append((s_, k)) - */ - __pyx_t_9 = __Pyx_CallUnboundCMethod1(&__pyx_umethod_PySet_Type_intersection, __pyx_v_p1_, __pyx_v_q1_); if (unlikely(!__pyx_t_9)) __PYX_ERR(0, 427, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_9); - __pyx_t_13 = PyObject_Length(__pyx_t_9); if (unlikely(__pyx_t_13 == ((Py_ssize_t)-1))) __PYX_ERR(0, 427, __pyx_L1_error) - __Pyx_DECREF(__pyx_t_9); __pyx_t_9 = 0; - __pyx_t_9 = __Pyx_CallUnboundCMethod1(&__pyx_umethod_PySet_Type_union, __pyx_v_p1_, __pyx_v_q1_); if (unlikely(!__pyx_t_9)) __PYX_ERR(0, 427, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_9); - __pyx_t_12 = PyObject_Length(__pyx_t_9); if (unlikely(__pyx_t_12 == ((Py_ssize_t)-1))) __PYX_ERR(0, 427, __pyx_L1_error) - __Pyx_DECREF(__pyx_t_9); __pyx_t_9 = 0; - __pyx_v_s1_ = (((double)__pyx_t_13) / fmax(1.0, __pyx_t_12)); - - /* "pmercury/protocols/tls.pyx":428 - * s0_ = len(p0_.intersection(q0_))/fmax(1.0,len(p0_.union(q0_))) - * s1_ = len(p1_.intersection(q1_))/fmax(1.0,len(p1_.union(q1_))) - * s_ = s0_ + s1_ # <<<<<<<<<<<<<< - * t_scores.append((s_, k)) - * t_scores.sort() - */ - __pyx_v_s_ = (__pyx_v_s0_ + __pyx_v_s1_); - - /* "pmercury/protocols/tls.pyx":429 - * s1_ = len(p1_.intersection(q1_))/fmax(1.0,len(p1_.union(q1_))) - * s_ = s0_ + s1_ - * t_scores.append((s_, k)) # <<<<<<<<<<<<<< - * t_scores.sort() - * t_scores.reverse() - */ - __pyx_t_9 = PyFloat_FromDouble(__pyx_v_s_); if (unlikely(!__pyx_t_9)) __PYX_ERR(0, 429, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_9); - __pyx_t_2 = PyTuple_New(2); if (unlikely(!__pyx_t_2)) __PYX_ERR(0, 429, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_2); - __Pyx_GIVEREF(__pyx_t_9); - PyTuple_SET_ITEM(__pyx_t_2, 0, __pyx_t_9); - __Pyx_INCREF(__pyx_v_k); - __Pyx_GIVEREF(__pyx_v_k); - PyTuple_SET_ITEM(__pyx_t_2, 1, __pyx_v_k); - __pyx_t_9 = 0; - __pyx_t_14 = __Pyx_PyList_Append(__pyx_v_t_scores, __pyx_t_2); if (unlikely(__pyx_t_14 == ((int)-1))) __PYX_ERR(0, 429, __pyx_L1_error) - __Pyx_DECREF(__pyx_t_2); __pyx_t_2 = 0; - __pyx_L3_continue:; - } - __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0; - - /* "pmercury/protocols/tls.pyx":430 - * s_ = s0_ + s1_ - * t_scores.append((s_, k)) - * t_scores.sort() # <<<<<<<<<<<<<< - * t_scores.reverse() - * return t_scores[0:10] - */ - __pyx_t_14 = PyList_Sort(__pyx_v_t_scores); if (unlikely(__pyx_t_14 == ((int)-1))) __PYX_ERR(0, 430, __pyx_L1_error) - - /* "pmercury/protocols/tls.pyx":431 - * t_scores.append((s_, k)) - * t_scores.sort() - * t_scores.reverse() # <<<<<<<<<<<<<< - * return t_scores[0:10] - * - */ - __pyx_t_14 = PyList_Reverse(__pyx_v_t_scores); if (unlikely(__pyx_t_14 == ((int)-1))) __PYX_ERR(0, 431, __pyx_L1_error) - - /* "pmercury/protocols/tls.pyx":432 - * t_scores.sort() - * t_scores.reverse() - * return t_scores[0:10] # <<<<<<<<<<<<<< - * - * - */ - __Pyx_XDECREF(__pyx_r); - __pyx_t_1 = __Pyx_PyList_GetSlice(__pyx_v_t_scores, 0, 10); if (unlikely(!__pyx_t_1)) __PYX_ERR(0, 432, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_1); - __pyx_r = __pyx_t_1; - __pyx_t_1 = 0; - goto __pyx_L0; - - /* "pmercury/protocols/tls.pyx":410 - * - * - * def find_approximate_matches_set(self, tls_params, fp_str=None, source_filter=None, key_filter=None): # <<<<<<<<<<<<<< - * t_scores = [] - * p0_ = set(tls_params[0]) - */ - - /* function exit code */ - __pyx_L1_error:; - __Pyx_XDECREF(__pyx_t_1); - __Pyx_XDECREF(__pyx_t_2); - __Pyx_XDECREF(__pyx_t_9); - __Pyx_XDECREF(__pyx_t_11); - __Pyx_AddTraceback("pmercury.protocols.tls.TLS.find_approximate_matches_set", __pyx_clineno, __pyx_lineno, __pyx_filename); - __pyx_r = NULL; - __pyx_L0:; - __Pyx_XDECREF(__pyx_v_t_scores); - __Pyx_XDECREF(__pyx_v_p0_); - __Pyx_XDECREF(__pyx_v_p1_); - __Pyx_XDECREF(__pyx_v_k); - __Pyx_XDECREF(__pyx_v_lit_fp); - __Pyx_XDECREF(__pyx_v_tls_params_); - __Pyx_XDECREF(__pyx_v_q0_); - __Pyx_XDECREF(__pyx_v_q1_); - __Pyx_XGIVEREF(__pyx_r); - __Pyx_RefNannyFinishContext(); - return __pyx_r; -} - -/* "pmercury/protocols/tls.pyx":436 - * - * @functools.lru_cache(maxsize=MAX_CACHED_RESULTS) - * def gen_unknown_fingerprint(self, fp_str_): # <<<<<<<<<<<<<< - * fp_ = {} - * fp_['str_repr'] = fp_str_ - */ - -/* Python wrapper */ -static PyObject *__pyx_pw_8pmercury_9protocols_3tls_3TLS_23gen_unknown_fingerprint(PyObject *__pyx_v_self, PyObject *__pyx_v_fp_str_); /*proto*/ -static PyObject *__pyx_pw_8pmercury_9protocols_3tls_3TLS_23gen_unknown_fingerprint(PyObject *__pyx_v_self, PyObject *__pyx_v_fp_str_) { - PyObject *__pyx_r = 0; - __Pyx_RefNannyDeclarations - __Pyx_RefNannySetupContext("gen_unknown_fingerprint (wrapper)", 0); - __pyx_r = __pyx_pf_8pmercury_9protocols_3tls_3TLS_22gen_unknown_fingerprint(((struct __pyx_obj_8pmercury_9protocols_3tls_TLS *)__pyx_v_self), ((PyObject *)__pyx_v_fp_str_)); - - /* function exit code */ - __Pyx_RefNannyFinishContext(); - return __pyx_r; -} - -static PyObject *__pyx_pf_8pmercury_9protocols_3tls_3TLS_22gen_unknown_fingerprint(CYTHON_UNUSED struct __pyx_obj_8pmercury_9protocols_3tls_TLS *__pyx_v_self, PyObject *__pyx_v_fp_str_) { - PyObject *__pyx_v_fp_ = NULL; - PyObject *__pyx_v_lit_fp = NULL; - PyObject *__pyx_v_max_imp = NULL; - PyObject *__pyx_v_min_imp = NULL; - PyObject *__pyx_r = NULL; - __Pyx_RefNannyDeclarations - PyObject *__pyx_t_1 = NULL; - PyObject *__pyx_t_2 = NULL; - PyObject *__pyx_t_3 = NULL; - int __pyx_t_4; - Py_ssize_t __pyx_t_5; - int __pyx_t_6; - PyObject *__pyx_t_7 = NULL; - PyObject *(*__pyx_t_8)(PyObject *); - __Pyx_RefNannySetupContext("gen_unknown_fingerprint", 0); - - /* "pmercury/protocols/tls.pyx":437 - * @functools.lru_cache(maxsize=MAX_CACHED_RESULTS) - * def gen_unknown_fingerprint(self, fp_str_): - * fp_ = {} # <<<<<<<<<<<<<< - * fp_['str_repr'] = fp_str_ - * lit_fp = eval_fp_str(fp_str_) - */ - __pyx_t_1 = __Pyx_PyDict_NewPresized(0); if (unlikely(!__pyx_t_1)) __PYX_ERR(0, 437, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_1); - __pyx_v_fp_ = ((PyObject*)__pyx_t_1); - __pyx_t_1 = 0; - - /* "pmercury/protocols/tls.pyx":438 - * def gen_unknown_fingerprint(self, fp_str_): - * fp_ = {} - * fp_['str_repr'] = fp_str_ # <<<<<<<<<<<<<< - * lit_fp = eval_fp_str(fp_str_) - * if len(lit_fp) < 2 or len(lit_fp[1]) < 1: - */ - if (unlikely(PyDict_SetItem(__pyx_v_fp_, __pyx_n_u_str_repr, __pyx_v_fp_str_) < 0)) __PYX_ERR(0, 438, __pyx_L1_error) - - /* "pmercury/protocols/tls.pyx":439 - * fp_ = {} - * fp_['str_repr'] = fp_str_ - * lit_fp = eval_fp_str(fp_str_) # <<<<<<<<<<<<<< - * if len(lit_fp) < 2 or len(lit_fp[1]) < 1: - * fp_['error'] = 'fingerprint string parsing error' - */ - __Pyx_GetModuleGlobalName(__pyx_t_2, __pyx_n_s_eval_fp_str); if (unlikely(!__pyx_t_2)) __PYX_ERR(0, 439, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_2); - __pyx_t_3 = NULL; - if (CYTHON_UNPACK_METHODS && unlikely(PyMethod_Check(__pyx_t_2))) { - __pyx_t_3 = PyMethod_GET_SELF(__pyx_t_2); - if (likely(__pyx_t_3)) { - PyObject* function = PyMethod_GET_FUNCTION(__pyx_t_2); - __Pyx_INCREF(__pyx_t_3); - __Pyx_INCREF(function); - __Pyx_DECREF_SET(__pyx_t_2, function); - } - } - __pyx_t_1 = (__pyx_t_3) ? __Pyx_PyObject_Call2Args(__pyx_t_2, __pyx_t_3, __pyx_v_fp_str_) : __Pyx_PyObject_CallOneArg(__pyx_t_2, __pyx_v_fp_str_); - __Pyx_XDECREF(__pyx_t_3); __pyx_t_3 = 0; - if (unlikely(!__pyx_t_1)) __PYX_ERR(0, 439, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_1); - __Pyx_DECREF(__pyx_t_2); __pyx_t_2 = 0; - __pyx_v_lit_fp = __pyx_t_1; - __pyx_t_1 = 0; - - /* "pmercury/protocols/tls.pyx":440 - * fp_['str_repr'] = fp_str_ - * lit_fp = eval_fp_str(fp_str_) - * if len(lit_fp) < 2 or len(lit_fp[1]) < 1: # <<<<<<<<<<<<<< - * fp_['error'] = 'fingerprint string parsing error' - * return fp_ - */ - __pyx_t_5 = PyObject_Length(__pyx_v_lit_fp); if (unlikely(__pyx_t_5 == ((Py_ssize_t)-1))) __PYX_ERR(0, 440, __pyx_L1_error) - __pyx_t_6 = ((__pyx_t_5 < 2) != 0); - if (!__pyx_t_6) { - } else { - __pyx_t_4 = __pyx_t_6; - goto __pyx_L4_bool_binop_done; - } - __pyx_t_1 = __Pyx_GetItemInt(__pyx_v_lit_fp, 1, long, 1, __Pyx_PyInt_From_long, 0, 0, 1); if (unlikely(!__pyx_t_1)) __PYX_ERR(0, 440, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_1); - __pyx_t_5 = PyObject_Length(__pyx_t_1); if (unlikely(__pyx_t_5 == ((Py_ssize_t)-1))) __PYX_ERR(0, 440, __pyx_L1_error) - __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0; - __pyx_t_6 = ((__pyx_t_5 < 1) != 0); - __pyx_t_4 = __pyx_t_6; - __pyx_L4_bool_binop_done:; - if (__pyx_t_4) { - - /* "pmercury/protocols/tls.pyx":441 - * lit_fp = eval_fp_str(fp_str_) - * if len(lit_fp) < 2 or len(lit_fp[1]) < 1: - * fp_['error'] = 'fingerprint string parsing error' # <<<<<<<<<<<<<< - * return fp_ - * max_imp, min_imp = get_implementation_date(lit_fp[1][0]) - */ - if (unlikely(PyDict_SetItem(__pyx_v_fp_, __pyx_n_u_error, __pyx_kp_u_fingerprint_string_parsing_error) < 0)) __PYX_ERR(0, 441, __pyx_L1_error) - - /* "pmercury/protocols/tls.pyx":442 - * if len(lit_fp) < 2 or len(lit_fp[1]) < 1: - * fp_['error'] = 'fingerprint string parsing error' - * return fp_ # <<<<<<<<<<<<<< - * max_imp, min_imp = get_implementation_date(lit_fp[1][0]) - * fp_['max_implementation_date'] = max_imp - */ - __Pyx_XDECREF(__pyx_r); - __Pyx_INCREF(__pyx_v_fp_); - __pyx_r = __pyx_v_fp_; - goto __pyx_L0; - - /* "pmercury/protocols/tls.pyx":440 - * fp_['str_repr'] = fp_str_ - * lit_fp = eval_fp_str(fp_str_) - * if len(lit_fp) < 2 or len(lit_fp[1]) < 1: # <<<<<<<<<<<<<< - * fp_['error'] = 'fingerprint string parsing error' - * return fp_ - */ - } - - /* "pmercury/protocols/tls.pyx":443 - * fp_['error'] = 'fingerprint string parsing error' - * return fp_ - * max_imp, min_imp = get_implementation_date(lit_fp[1][0]) # <<<<<<<<<<<<<< - * fp_['max_implementation_date'] = max_imp - * fp_['min_implementation_date'] = min_imp - */ - __Pyx_GetModuleGlobalName(__pyx_t_2, __pyx_n_s_get_implementation_date); if (unlikely(!__pyx_t_2)) __PYX_ERR(0, 443, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_2); - __pyx_t_3 = __Pyx_GetItemInt(__pyx_v_lit_fp, 1, long, 1, __Pyx_PyInt_From_long, 0, 0, 1); if (unlikely(!__pyx_t_3)) __PYX_ERR(0, 443, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_3); - __pyx_t_7 = __Pyx_GetItemInt(__pyx_t_3, 0, long, 1, __Pyx_PyInt_From_long, 0, 0, 1); if (unlikely(!__pyx_t_7)) __PYX_ERR(0, 443, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_7); - __Pyx_DECREF(__pyx_t_3); __pyx_t_3 = 0; - __pyx_t_3 = NULL; - if (CYTHON_UNPACK_METHODS && unlikely(PyMethod_Check(__pyx_t_2))) { - __pyx_t_3 = PyMethod_GET_SELF(__pyx_t_2); - if (likely(__pyx_t_3)) { - PyObject* function = PyMethod_GET_FUNCTION(__pyx_t_2); - __Pyx_INCREF(__pyx_t_3); - __Pyx_INCREF(function); - __Pyx_DECREF_SET(__pyx_t_2, function); - } - } - __pyx_t_1 = (__pyx_t_3) ? __Pyx_PyObject_Call2Args(__pyx_t_2, __pyx_t_3, __pyx_t_7) : __Pyx_PyObject_CallOneArg(__pyx_t_2, __pyx_t_7); - __Pyx_XDECREF(__pyx_t_3); __pyx_t_3 = 0; - __Pyx_DECREF(__pyx_t_7); __pyx_t_7 = 0; - if (unlikely(!__pyx_t_1)) __PYX_ERR(0, 443, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_1); - __Pyx_DECREF(__pyx_t_2); __pyx_t_2 = 0; - if ((likely(PyTuple_CheckExact(__pyx_t_1))) || (PyList_CheckExact(__pyx_t_1))) { - PyObject* sequence = __pyx_t_1; - Py_ssize_t size = __Pyx_PySequence_SIZE(sequence); - if (unlikely(size != 2)) { - if (size > 2) __Pyx_RaiseTooManyValuesError(2); - else if (size >= 0) __Pyx_RaiseNeedMoreValuesError(size); - __PYX_ERR(0, 443, __pyx_L1_error) - } - #if CYTHON_ASSUME_SAFE_MACROS && !CYTHON_AVOID_BORROWED_REFS - if (likely(PyTuple_CheckExact(sequence))) { - __pyx_t_2 = PyTuple_GET_ITEM(sequence, 0); - __pyx_t_7 = PyTuple_GET_ITEM(sequence, 1); - } else { - __pyx_t_2 = PyList_GET_ITEM(sequence, 0); - __pyx_t_7 = PyList_GET_ITEM(sequence, 1); - } - __Pyx_INCREF(__pyx_t_2); - __Pyx_INCREF(__pyx_t_7); - #else - __pyx_t_2 = PySequence_ITEM(sequence, 0); if (unlikely(!__pyx_t_2)) __PYX_ERR(0, 443, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_2); - __pyx_t_7 = PySequence_ITEM(sequence, 1); if (unlikely(!__pyx_t_7)) __PYX_ERR(0, 443, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_7); - #endif - __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0; - } else { - Py_ssize_t index = -1; - __pyx_t_3 = PyObject_GetIter(__pyx_t_1); if (unlikely(!__pyx_t_3)) __PYX_ERR(0, 443, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_3); - __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0; - __pyx_t_8 = Py_TYPE(__pyx_t_3)->tp_iternext; - index = 0; __pyx_t_2 = __pyx_t_8(__pyx_t_3); if (unlikely(!__pyx_t_2)) goto __pyx_L6_unpacking_failed; - __Pyx_GOTREF(__pyx_t_2); - index = 1; __pyx_t_7 = __pyx_t_8(__pyx_t_3); if (unlikely(!__pyx_t_7)) goto __pyx_L6_unpacking_failed; - __Pyx_GOTREF(__pyx_t_7); - if (__Pyx_IternextUnpackEndCheck(__pyx_t_8(__pyx_t_3), 2) < 0) __PYX_ERR(0, 443, __pyx_L1_error) - __pyx_t_8 = NULL; - __Pyx_DECREF(__pyx_t_3); __pyx_t_3 = 0; - goto __pyx_L7_unpacking_done; - __pyx_L6_unpacking_failed:; - __Pyx_DECREF(__pyx_t_3); __pyx_t_3 = 0; - __pyx_t_8 = NULL; - if (__Pyx_IterFinish() == 0) __Pyx_RaiseNeedMoreValuesError(index); - __PYX_ERR(0, 443, __pyx_L1_error) - __pyx_L7_unpacking_done:; - } - __pyx_v_max_imp = __pyx_t_2; - __pyx_t_2 = 0; - __pyx_v_min_imp = __pyx_t_7; - __pyx_t_7 = 0; - - /* "pmercury/protocols/tls.pyx":444 - * return fp_ - * max_imp, min_imp = get_implementation_date(lit_fp[1][0]) - * fp_['max_implementation_date'] = max_imp # <<<<<<<<<<<<<< - * fp_['min_implementation_date'] = min_imp - * fp_['total_count'] = 1 - */ - if (unlikely(PyDict_SetItem(__pyx_v_fp_, __pyx_n_u_max_implementation_date, __pyx_v_max_imp) < 0)) __PYX_ERR(0, 444, __pyx_L1_error) - - /* "pmercury/protocols/tls.pyx":445 - * max_imp, min_imp = get_implementation_date(lit_fp[1][0]) - * fp_['max_implementation_date'] = max_imp - * fp_['min_implementation_date'] = min_imp # <<<<<<<<<<<<<< - * fp_['total_count'] = 1 - * fp_['process_info'] = [{'process': 'Unknown', 'sha256':'Unknown', 'count':1, 'malware': 0, - */ - if (unlikely(PyDict_SetItem(__pyx_v_fp_, __pyx_n_u_min_implementation_date, __pyx_v_min_imp) < 0)) __PYX_ERR(0, 445, __pyx_L1_error) - - /* "pmercury/protocols/tls.pyx":446 - * fp_['max_implementation_date'] = max_imp - * fp_['min_implementation_date'] = min_imp - * fp_['total_count'] = 1 # <<<<<<<<<<<<<< - * fp_['process_info'] = [{'process': 'Unknown', 'sha256':'Unknown', 'count':1, 'malware': 0, - * 'classes_ip_as':{},'classes_hostname_tlds':{},'classes_hostname_domains':{}, - */ - if (unlikely(PyDict_SetItem(__pyx_v_fp_, __pyx_n_u_total_count, __pyx_int_1) < 0)) __PYX_ERR(0, 446, __pyx_L1_error) - - /* "pmercury/protocols/tls.pyx":447 - * fp_['min_implementation_date'] = min_imp - * fp_['total_count'] = 1 - * fp_['process_info'] = [{'process': 'Unknown', 'sha256':'Unknown', 'count':1, 'malware': 0, # <<<<<<<<<<<<<< - * 'classes_ip_as':{},'classes_hostname_tlds':{},'classes_hostname_domains':{}, - * 'classes_port_applications':{},'os_info':{}}] - */ - __pyx_t_1 = __Pyx_PyDict_NewPresized(9); if (unlikely(!__pyx_t_1)) __PYX_ERR(0, 447, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_1); - if (PyDict_SetItem(__pyx_t_1, __pyx_n_u_process, __pyx_n_u_Unknown) < 0) __PYX_ERR(0, 447, __pyx_L1_error) - if (PyDict_SetItem(__pyx_t_1, __pyx_n_u_sha256, __pyx_n_u_Unknown) < 0) __PYX_ERR(0, 447, __pyx_L1_error) - if (PyDict_SetItem(__pyx_t_1, __pyx_n_u_count, __pyx_int_1) < 0) __PYX_ERR(0, 447, __pyx_L1_error) - if (PyDict_SetItem(__pyx_t_1, __pyx_n_u_malware, __pyx_int_0) < 0) __PYX_ERR(0, 447, __pyx_L1_error) - - /* "pmercury/protocols/tls.pyx":448 - * fp_['total_count'] = 1 - * fp_['process_info'] = [{'process': 'Unknown', 'sha256':'Unknown', 'count':1, 'malware': 0, - * 'classes_ip_as':{},'classes_hostname_tlds':{},'classes_hostname_domains':{}, # <<<<<<<<<<<<<< - * 'classes_port_applications':{},'os_info':{}}] - * - */ - __pyx_t_7 = __Pyx_PyDict_NewPresized(0); if (unlikely(!__pyx_t_7)) __PYX_ERR(0, 448, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_7); - if (PyDict_SetItem(__pyx_t_1, __pyx_n_u_classes_ip_as, __pyx_t_7) < 0) __PYX_ERR(0, 447, __pyx_L1_error) - __Pyx_DECREF(__pyx_t_7); __pyx_t_7 = 0; - __pyx_t_7 = __Pyx_PyDict_NewPresized(0); if (unlikely(!__pyx_t_7)) __PYX_ERR(0, 448, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_7); - if (PyDict_SetItem(__pyx_t_1, __pyx_n_u_classes_hostname_tlds, __pyx_t_7) < 0) __PYX_ERR(0, 447, __pyx_L1_error) - __Pyx_DECREF(__pyx_t_7); __pyx_t_7 = 0; - __pyx_t_7 = __Pyx_PyDict_NewPresized(0); if (unlikely(!__pyx_t_7)) __PYX_ERR(0, 448, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_7); - if (PyDict_SetItem(__pyx_t_1, __pyx_n_u_classes_hostname_domains, __pyx_t_7) < 0) __PYX_ERR(0, 447, __pyx_L1_error) - __Pyx_DECREF(__pyx_t_7); __pyx_t_7 = 0; - - /* "pmercury/protocols/tls.pyx":449 - * fp_['process_info'] = [{'process': 'Unknown', 'sha256':'Unknown', 'count':1, 'malware': 0, - * 'classes_ip_as':{},'classes_hostname_tlds':{},'classes_hostname_domains':{}, - * 'classes_port_applications':{},'os_info':{}}] # <<<<<<<<<<<<<< - * - * return fp_ - */ - __pyx_t_7 = __Pyx_PyDict_NewPresized(0); if (unlikely(!__pyx_t_7)) __PYX_ERR(0, 449, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_7); - if (PyDict_SetItem(__pyx_t_1, __pyx_n_u_classes_port_applications, __pyx_t_7) < 0) __PYX_ERR(0, 447, __pyx_L1_error) - __Pyx_DECREF(__pyx_t_7); __pyx_t_7 = 0; - __pyx_t_7 = __Pyx_PyDict_NewPresized(0); if (unlikely(!__pyx_t_7)) __PYX_ERR(0, 449, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_7); - if (PyDict_SetItem(__pyx_t_1, __pyx_n_u_os_info, __pyx_t_7) < 0) __PYX_ERR(0, 447, __pyx_L1_error) - __Pyx_DECREF(__pyx_t_7); __pyx_t_7 = 0; - - /* "pmercury/protocols/tls.pyx":447 - * fp_['min_implementation_date'] = min_imp - * fp_['total_count'] = 1 - * fp_['process_info'] = [{'process': 'Unknown', 'sha256':'Unknown', 'count':1, 'malware': 0, # <<<<<<<<<<<<<< - * 'classes_ip_as':{},'classes_hostname_tlds':{},'classes_hostname_domains':{}, - * 'classes_port_applications':{},'os_info':{}}] - */ - __pyx_t_7 = PyList_New(1); if (unlikely(!__pyx_t_7)) __PYX_ERR(0, 447, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_7); - __Pyx_GIVEREF(__pyx_t_1); - PyList_SET_ITEM(__pyx_t_7, 0, __pyx_t_1); - __pyx_t_1 = 0; - if (unlikely(PyDict_SetItem(__pyx_v_fp_, __pyx_n_u_process_info, __pyx_t_7) < 0)) __PYX_ERR(0, 447, __pyx_L1_error) - __Pyx_DECREF(__pyx_t_7); __pyx_t_7 = 0; - - /* "pmercury/protocols/tls.pyx":451 - * 'classes_port_applications':{},'os_info':{}}] - * - * return fp_ # <<<<<<<<<<<<<< - * - * - */ - __Pyx_XDECREF(__pyx_r); - __Pyx_INCREF(__pyx_v_fp_); - __pyx_r = __pyx_v_fp_; - goto __pyx_L0; - - /* "pmercury/protocols/tls.pyx":436 - * - * @functools.lru_cache(maxsize=MAX_CACHED_RESULTS) - * def gen_unknown_fingerprint(self, fp_str_): # <<<<<<<<<<<<<< - * fp_ = {} - * fp_['str_repr'] = fp_str_ - */ - - /* function exit code */ - __pyx_L1_error:; - __Pyx_XDECREF(__pyx_t_1); - __Pyx_XDECREF(__pyx_t_2); - __Pyx_XDECREF(__pyx_t_3); - __Pyx_XDECREF(__pyx_t_7); - __Pyx_AddTraceback("pmercury.protocols.tls.TLS.gen_unknown_fingerprint", __pyx_clineno, __pyx_lineno, __pyx_filename); - __pyx_r = NULL; - __pyx_L0:; - __Pyx_XDECREF(__pyx_v_fp_); - __Pyx_XDECREF(__pyx_v_lit_fp); - __Pyx_XDECREF(__pyx_v_max_imp); - __Pyx_XDECREF(__pyx_v_min_imp); - __Pyx_XGIVEREF(__pyx_r); - __Pyx_RefNannyFinishContext(); - return __pyx_r; -} - -/* "pmercury/protocols/tls.pyx":454 - * - * - * def get_human_readable(self, fp_str_): # <<<<<<<<<<<<<< - * lit_fp = eval_fp_str(fp_str_) - * fp_h = {} - */ - -/* Python wrapper */ -static PyObject *__pyx_pw_8pmercury_9protocols_3tls_3TLS_25get_human_readable(PyObject *__pyx_v_self, PyObject *__pyx_v_fp_str_); /*proto*/ -static PyObject *__pyx_pw_8pmercury_9protocols_3tls_3TLS_25get_human_readable(PyObject *__pyx_v_self, PyObject *__pyx_v_fp_str_) { - PyObject *__pyx_r = 0; - __Pyx_RefNannyDeclarations - __Pyx_RefNannySetupContext("get_human_readable (wrapper)", 0); - __pyx_r = __pyx_pf_8pmercury_9protocols_3tls_3TLS_24get_human_readable(((struct __pyx_obj_8pmercury_9protocols_3tls_TLS *)__pyx_v_self), ((PyObject *)__pyx_v_fp_str_)); - - /* function exit code */ - __Pyx_RefNannyFinishContext(); - return __pyx_r; -} - -static PyObject *__pyx_pf_8pmercury_9protocols_3tls_3TLS_24get_human_readable(CYTHON_UNUSED struct __pyx_obj_8pmercury_9protocols_3tls_TLS *__pyx_v_self, PyObject *__pyx_v_fp_str_) { - PyObject *__pyx_v_lit_fp = NULL; - PyObject *__pyx_v_fp_h = NULL; - PyObject *__pyx_r = NULL; - __Pyx_RefNannyDeclarations - PyObject *__pyx_t_1 = NULL; - PyObject *__pyx_t_2 = NULL; - PyObject *__pyx_t_3 = NULL; - PyObject *__pyx_t_4 = NULL; - Py_ssize_t __pyx_t_5; - int __pyx_t_6; - __Pyx_RefNannySetupContext("get_human_readable", 0); - - /* "pmercury/protocols/tls.pyx":455 - * - * def get_human_readable(self, fp_str_): - * lit_fp = eval_fp_str(fp_str_) # <<<<<<<<<<<<<< - * fp_h = {} - * fp_h['version'] = get_version_from_str(lit_fp[0]) - */ - __Pyx_GetModuleGlobalName(__pyx_t_2, __pyx_n_s_eval_fp_str); if (unlikely(!__pyx_t_2)) __PYX_ERR(0, 455, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_2); - __pyx_t_3 = NULL; - if (CYTHON_UNPACK_METHODS && unlikely(PyMethod_Check(__pyx_t_2))) { - __pyx_t_3 = PyMethod_GET_SELF(__pyx_t_2); - if (likely(__pyx_t_3)) { - PyObject* function = PyMethod_GET_FUNCTION(__pyx_t_2); - __Pyx_INCREF(__pyx_t_3); - __Pyx_INCREF(function); - __Pyx_DECREF_SET(__pyx_t_2, function); - } - } - __pyx_t_1 = (__pyx_t_3) ? __Pyx_PyObject_Call2Args(__pyx_t_2, __pyx_t_3, __pyx_v_fp_str_) : __Pyx_PyObject_CallOneArg(__pyx_t_2, __pyx_v_fp_str_); - __Pyx_XDECREF(__pyx_t_3); __pyx_t_3 = 0; - if (unlikely(!__pyx_t_1)) __PYX_ERR(0, 455, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_1); - __Pyx_DECREF(__pyx_t_2); __pyx_t_2 = 0; - __pyx_v_lit_fp = __pyx_t_1; - __pyx_t_1 = 0; - - /* "pmercury/protocols/tls.pyx":456 - * def get_human_readable(self, fp_str_): - * lit_fp = eval_fp_str(fp_str_) - * fp_h = {} # <<<<<<<<<<<<<< - * fp_h['version'] = get_version_from_str(lit_fp[0]) - * fp_h['cipher_suites'] = get_cs_from_str(lit_fp[1]) - */ - __pyx_t_1 = __Pyx_PyDict_NewPresized(0); if (unlikely(!__pyx_t_1)) __PYX_ERR(0, 456, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_1); - __pyx_v_fp_h = ((PyObject*)__pyx_t_1); - __pyx_t_1 = 0; - - /* "pmercury/protocols/tls.pyx":457 - * lit_fp = eval_fp_str(fp_str_) - * fp_h = {} - * fp_h['version'] = get_version_from_str(lit_fp[0]) # <<<<<<<<<<<<<< - * fp_h['cipher_suites'] = get_cs_from_str(lit_fp[1]) - * fp_h['extensions'] = [] - */ - __Pyx_GetModuleGlobalName(__pyx_t_2, __pyx_n_s_get_version_from_str); if (unlikely(!__pyx_t_2)) __PYX_ERR(0, 457, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_2); - __pyx_t_3 = __Pyx_GetItemInt(__pyx_v_lit_fp, 0, long, 1, __Pyx_PyInt_From_long, 0, 0, 1); if (unlikely(!__pyx_t_3)) __PYX_ERR(0, 457, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_3); - __pyx_t_4 = NULL; - if (CYTHON_UNPACK_METHODS && unlikely(PyMethod_Check(__pyx_t_2))) { - __pyx_t_4 = PyMethod_GET_SELF(__pyx_t_2); - if (likely(__pyx_t_4)) { - PyObject* function = PyMethod_GET_FUNCTION(__pyx_t_2); - __Pyx_INCREF(__pyx_t_4); - __Pyx_INCREF(function); - __Pyx_DECREF_SET(__pyx_t_2, function); - } - } - __pyx_t_1 = (__pyx_t_4) ? __Pyx_PyObject_Call2Args(__pyx_t_2, __pyx_t_4, __pyx_t_3) : __Pyx_PyObject_CallOneArg(__pyx_t_2, __pyx_t_3); - __Pyx_XDECREF(__pyx_t_4); __pyx_t_4 = 0; - __Pyx_DECREF(__pyx_t_3); __pyx_t_3 = 0; - if (unlikely(!__pyx_t_1)) __PYX_ERR(0, 457, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_1); - __Pyx_DECREF(__pyx_t_2); __pyx_t_2 = 0; - if (unlikely(PyDict_SetItem(__pyx_v_fp_h, __pyx_n_u_version, __pyx_t_1) < 0)) __PYX_ERR(0, 457, __pyx_L1_error) - __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0; - - /* "pmercury/protocols/tls.pyx":458 - * fp_h = {} - * fp_h['version'] = get_version_from_str(lit_fp[0]) - * fp_h['cipher_suites'] = get_cs_from_str(lit_fp[1]) # <<<<<<<<<<<<<< - * fp_h['extensions'] = [] - * if len(lit_fp) > 2: - */ - __Pyx_GetModuleGlobalName(__pyx_t_2, __pyx_n_s_get_cs_from_str); if (unlikely(!__pyx_t_2)) __PYX_ERR(0, 458, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_2); - __pyx_t_3 = __Pyx_GetItemInt(__pyx_v_lit_fp, 1, long, 1, __Pyx_PyInt_From_long, 0, 0, 1); if (unlikely(!__pyx_t_3)) __PYX_ERR(0, 458, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_3); - __pyx_t_4 = NULL; - if (CYTHON_UNPACK_METHODS && unlikely(PyMethod_Check(__pyx_t_2))) { - __pyx_t_4 = PyMethod_GET_SELF(__pyx_t_2); - if (likely(__pyx_t_4)) { - PyObject* function = PyMethod_GET_FUNCTION(__pyx_t_2); - __Pyx_INCREF(__pyx_t_4); - __Pyx_INCREF(function); - __Pyx_DECREF_SET(__pyx_t_2, function); - } - } - __pyx_t_1 = (__pyx_t_4) ? __Pyx_PyObject_Call2Args(__pyx_t_2, __pyx_t_4, __pyx_t_3) : __Pyx_PyObject_CallOneArg(__pyx_t_2, __pyx_t_3); - __Pyx_XDECREF(__pyx_t_4); __pyx_t_4 = 0; - __Pyx_DECREF(__pyx_t_3); __pyx_t_3 = 0; - if (unlikely(!__pyx_t_1)) __PYX_ERR(0, 458, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_1); - __Pyx_DECREF(__pyx_t_2); __pyx_t_2 = 0; - if (unlikely(PyDict_SetItem(__pyx_v_fp_h, __pyx_n_u_cipher_suites, __pyx_t_1) < 0)) __PYX_ERR(0, 458, __pyx_L1_error) - __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0; - - /* "pmercury/protocols/tls.pyx":459 - * fp_h['version'] = get_version_from_str(lit_fp[0]) - * fp_h['cipher_suites'] = get_cs_from_str(lit_fp[1]) - * fp_h['extensions'] = [] # <<<<<<<<<<<<<< - * if len(lit_fp) > 2: - * fp_h['extensions'] = get_ext_from_str(lit_fp[2]) - */ - __pyx_t_1 = PyList_New(0); if (unlikely(!__pyx_t_1)) __PYX_ERR(0, 459, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_1); - if (unlikely(PyDict_SetItem(__pyx_v_fp_h, __pyx_n_u_extensions, __pyx_t_1) < 0)) __PYX_ERR(0, 459, __pyx_L1_error) - __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0; - - /* "pmercury/protocols/tls.pyx":460 - * fp_h['cipher_suites'] = get_cs_from_str(lit_fp[1]) - * fp_h['extensions'] = [] - * if len(lit_fp) > 2: # <<<<<<<<<<<<<< - * fp_h['extensions'] = get_ext_from_str(lit_fp[2]) - * - */ - __pyx_t_5 = PyObject_Length(__pyx_v_lit_fp); if (unlikely(__pyx_t_5 == ((Py_ssize_t)-1))) __PYX_ERR(0, 460, __pyx_L1_error) - __pyx_t_6 = ((__pyx_t_5 > 2) != 0); - if (__pyx_t_6) { - - /* "pmercury/protocols/tls.pyx":461 - * fp_h['extensions'] = [] - * if len(lit_fp) > 2: - * fp_h['extensions'] = get_ext_from_str(lit_fp[2]) # <<<<<<<<<<<<<< - * - * return fp_h - */ - __Pyx_GetModuleGlobalName(__pyx_t_2, __pyx_n_s_get_ext_from_str); if (unlikely(!__pyx_t_2)) __PYX_ERR(0, 461, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_2); - __pyx_t_3 = __Pyx_GetItemInt(__pyx_v_lit_fp, 2, long, 1, __Pyx_PyInt_From_long, 0, 0, 1); if (unlikely(!__pyx_t_3)) __PYX_ERR(0, 461, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_3); - __pyx_t_4 = NULL; - if (CYTHON_UNPACK_METHODS && unlikely(PyMethod_Check(__pyx_t_2))) { - __pyx_t_4 = PyMethod_GET_SELF(__pyx_t_2); - if (likely(__pyx_t_4)) { - PyObject* function = PyMethod_GET_FUNCTION(__pyx_t_2); - __Pyx_INCREF(__pyx_t_4); - __Pyx_INCREF(function); - __Pyx_DECREF_SET(__pyx_t_2, function); - } - } - __pyx_t_1 = (__pyx_t_4) ? __Pyx_PyObject_Call2Args(__pyx_t_2, __pyx_t_4, __pyx_t_3) : __Pyx_PyObject_CallOneArg(__pyx_t_2, __pyx_t_3); - __Pyx_XDECREF(__pyx_t_4); __pyx_t_4 = 0; - __Pyx_DECREF(__pyx_t_3); __pyx_t_3 = 0; - if (unlikely(!__pyx_t_1)) __PYX_ERR(0, 461, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_1); - __Pyx_DECREF(__pyx_t_2); __pyx_t_2 = 0; - if (unlikely(PyDict_SetItem(__pyx_v_fp_h, __pyx_n_u_extensions, __pyx_t_1) < 0)) __PYX_ERR(0, 461, __pyx_L1_error) - __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0; - - /* "pmercury/protocols/tls.pyx":460 - * fp_h['cipher_suites'] = get_cs_from_str(lit_fp[1]) - * fp_h['extensions'] = [] - * if len(lit_fp) > 2: # <<<<<<<<<<<<<< - * fp_h['extensions'] = get_ext_from_str(lit_fp[2]) - * - */ - } - - /* "pmercury/protocols/tls.pyx":463 - * fp_h['extensions'] = get_ext_from_str(lit_fp[2]) - * - * return fp_h # <<<<<<<<<<<<<< - * - * @functools.lru_cache(maxsize=MAX_CACHED_RESULTS) - */ - __Pyx_XDECREF(__pyx_r); - __Pyx_INCREF(__pyx_v_fp_h); - __pyx_r = __pyx_v_fp_h; - goto __pyx_L0; - - /* "pmercury/protocols/tls.pyx":454 - * - * - * def get_human_readable(self, fp_str_): # <<<<<<<<<<<<<< - * lit_fp = eval_fp_str(fp_str_) - * fp_h = {} - */ - - /* function exit code */ - __pyx_L1_error:; - __Pyx_XDECREF(__pyx_t_1); - __Pyx_XDECREF(__pyx_t_2); - __Pyx_XDECREF(__pyx_t_3); - __Pyx_XDECREF(__pyx_t_4); - __Pyx_AddTraceback("pmercury.protocols.tls.TLS.get_human_readable", __pyx_clineno, __pyx_lineno, __pyx_filename); - __pyx_r = NULL; - __pyx_L0:; - __Pyx_XDECREF(__pyx_v_lit_fp); - __Pyx_XDECREF(__pyx_v_fp_h); - __Pyx_XGIVEREF(__pyx_r); - __Pyx_RefNannyFinishContext(); - return __pyx_r; -} - -/* "pmercury/protocols/tls.pyx":466 - * - * @functools.lru_cache(maxsize=MAX_CACHED_RESULTS) - * def os_identify(self, fp_str_, list_oses=0): # <<<<<<<<<<<<<< - * return None - */ - -/* Python wrapper */ -static PyObject *__pyx_pw_8pmercury_9protocols_3tls_3TLS_27os_identify(PyObject *__pyx_v_self, PyObject *__pyx_args, PyObject *__pyx_kwds); /*proto*/ -static PyObject *__pyx_pw_8pmercury_9protocols_3tls_3TLS_27os_identify(PyObject *__pyx_v_self, PyObject *__pyx_args, PyObject *__pyx_kwds) { - CYTHON_UNUSED PyObject *__pyx_v_fp_str_ = 0; - CYTHON_UNUSED PyObject *__pyx_v_list_oses = 0; - PyObject *__pyx_r = 0; - __Pyx_RefNannyDeclarations - __Pyx_RefNannySetupContext("os_identify (wrapper)", 0); - { - static PyObject **__pyx_pyargnames[] = {&__pyx_n_s_fp_str,&__pyx_n_s_list_oses,0}; - PyObject* values[2] = {0,0}; - values[1] = ((PyObject *)__pyx_int_0); - if (unlikely(__pyx_kwds)) { - Py_ssize_t kw_args; - const Py_ssize_t pos_args = PyTuple_GET_SIZE(__pyx_args); - switch (pos_args) { - case 2: values[1] = PyTuple_GET_ITEM(__pyx_args, 1); - CYTHON_FALLTHROUGH; - case 1: values[0] = PyTuple_GET_ITEM(__pyx_args, 0); - CYTHON_FALLTHROUGH; - case 0: break; - default: goto __pyx_L5_argtuple_error; - } - kw_args = PyDict_Size(__pyx_kwds); - switch (pos_args) { - case 0: - if (likely((values[0] = __Pyx_PyDict_GetItemStr(__pyx_kwds, __pyx_n_s_fp_str)) != 0)) kw_args--; - else goto __pyx_L5_argtuple_error; - CYTHON_FALLTHROUGH; - case 1: - if (kw_args > 0) { - PyObject* value = __Pyx_PyDict_GetItemStr(__pyx_kwds, __pyx_n_s_list_oses); - if (value) { values[1] = value; kw_args--; } - } - } - if (unlikely(kw_args > 0)) { - if (unlikely(__Pyx_ParseOptionalKeywords(__pyx_kwds, __pyx_pyargnames, 0, values, pos_args, "os_identify") < 0)) __PYX_ERR(0, 466, __pyx_L3_error) - } - } else { - switch (PyTuple_GET_SIZE(__pyx_args)) { - case 2: values[1] = PyTuple_GET_ITEM(__pyx_args, 1); - CYTHON_FALLTHROUGH; - case 1: values[0] = PyTuple_GET_ITEM(__pyx_args, 0); - break; - default: goto __pyx_L5_argtuple_error; - } - } - __pyx_v_fp_str_ = values[0]; - __pyx_v_list_oses = values[1]; - } - goto __pyx_L4_argument_unpacking_done; - __pyx_L5_argtuple_error:; - __Pyx_RaiseArgtupleInvalid("os_identify", 0, 1, 2, PyTuple_GET_SIZE(__pyx_args)); __PYX_ERR(0, 466, __pyx_L3_error) - __pyx_L3_error:; - __Pyx_AddTraceback("pmercury.protocols.tls.TLS.os_identify", __pyx_clineno, __pyx_lineno, __pyx_filename); - __Pyx_RefNannyFinishContext(); - return NULL; - __pyx_L4_argument_unpacking_done:; - __pyx_r = __pyx_pf_8pmercury_9protocols_3tls_3TLS_26os_identify(((struct __pyx_obj_8pmercury_9protocols_3tls_TLS *)__pyx_v_self), __pyx_v_fp_str_, __pyx_v_list_oses); - - /* function exit code */ - __Pyx_RefNannyFinishContext(); - return __pyx_r; -} - -static PyObject *__pyx_pf_8pmercury_9protocols_3tls_3TLS_26os_identify(CYTHON_UNUSED struct __pyx_obj_8pmercury_9protocols_3tls_TLS *__pyx_v_self, CYTHON_UNUSED PyObject *__pyx_v_fp_str_, CYTHON_UNUSED PyObject *__pyx_v_list_oses) { - PyObject *__pyx_r = NULL; - __Pyx_RefNannyDeclarations - __Pyx_RefNannySetupContext("os_identify", 0); - - /* "pmercury/protocols/tls.pyx":467 - * @functools.lru_cache(maxsize=MAX_CACHED_RESULTS) - * def os_identify(self, fp_str_, list_oses=0): - * return None # <<<<<<<<<<<<<< - */ - __Pyx_XDECREF(__pyx_r); - __pyx_r = Py_None; __Pyx_INCREF(Py_None); - goto __pyx_L0; - - /* "pmercury/protocols/tls.pyx":466 - * - * @functools.lru_cache(maxsize=MAX_CACHED_RESULTS) - * def os_identify(self, fp_str_, list_oses=0): # <<<<<<<<<<<<<< - * return None - */ - - /* function exit code */ - __pyx_L0:; - __Pyx_XGIVEREF(__pyx_r); - __Pyx_RefNannyFinishContext(); - return __pyx_r; -} - -/* "(tree fragment)":1 - * def __reduce_cython__(self): # <<<<<<<<<<<<<< - * cdef tuple state - * cdef object _dict - */ - -/* Python wrapper */ -static PyObject *__pyx_pw_8pmercury_9protocols_3tls_3TLS_29__reduce_cython__(PyObject *__pyx_v_self, CYTHON_UNUSED PyObject *unused); /*proto*/ -static PyObject *__pyx_pw_8pmercury_9protocols_3tls_3TLS_29__reduce_cython__(PyObject *__pyx_v_self, CYTHON_UNUSED PyObject *unused) { - PyObject *__pyx_r = 0; - __Pyx_RefNannyDeclarations - __Pyx_RefNannySetupContext("__reduce_cython__ (wrapper)", 0); - __pyx_r = __pyx_pf_8pmercury_9protocols_3tls_3TLS_28__reduce_cython__(((struct __pyx_obj_8pmercury_9protocols_3tls_TLS *)__pyx_v_self)); - - /* function exit code */ - __Pyx_RefNannyFinishContext(); - return __pyx_r; -} - -static PyObject *__pyx_pf_8pmercury_9protocols_3tls_3TLS_28__reduce_cython__(struct __pyx_obj_8pmercury_9protocols_3tls_TLS *__pyx_v_self) { - PyObject *__pyx_v_state = 0; - PyObject *__pyx_v__dict = 0; - int __pyx_v_use_setstate; - PyObject *__pyx_r = NULL; - __Pyx_RefNannyDeclarations - PyObject *__pyx_t_1 = NULL; - PyObject *__pyx_t_2 = NULL; - PyObject *__pyx_t_3 = NULL; - int __pyx_t_4; - int __pyx_t_5; - int __pyx_t_6; - __Pyx_RefNannySetupContext("__reduce_cython__", 0); - - /* "(tree fragment)":5 - * cdef object _dict - * cdef bint use_setstate - * state = (self.EXTENDED_FP_METADATA, self.MALWARE_DB, self.aligner, self.app_families, self.fp_db, self.tls_params_db, self.transition_probs) # <<<<<<<<<<<<<< - * _dict = getattr(self, '__dict__', None) - * if _dict is not None: - */ - __pyx_t_1 = __Pyx_PyBool_FromLong(__pyx_v_self->EXTENDED_FP_METADATA); if (unlikely(!__pyx_t_1)) __PYX_ERR(1, 5, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_1); - __pyx_t_2 = __Pyx_PyBool_FromLong(__pyx_v_self->MALWARE_DB); if (unlikely(!__pyx_t_2)) __PYX_ERR(1, 5, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_2); - __pyx_t_3 = PyTuple_New(7); if (unlikely(!__pyx_t_3)) __PYX_ERR(1, 5, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_3); - __Pyx_GIVEREF(__pyx_t_1); - PyTuple_SET_ITEM(__pyx_t_3, 0, __pyx_t_1); - __Pyx_GIVEREF(__pyx_t_2); - PyTuple_SET_ITEM(__pyx_t_3, 1, __pyx_t_2); - __Pyx_INCREF(__pyx_v_self->aligner); - __Pyx_GIVEREF(__pyx_v_self->aligner); - PyTuple_SET_ITEM(__pyx_t_3, 2, __pyx_v_self->aligner); - __Pyx_INCREF(__pyx_v_self->app_families); - __Pyx_GIVEREF(__pyx_v_self->app_families); - PyTuple_SET_ITEM(__pyx_t_3, 3, __pyx_v_self->app_families); - __Pyx_INCREF(__pyx_v_self->fp_db); - __Pyx_GIVEREF(__pyx_v_self->fp_db); - PyTuple_SET_ITEM(__pyx_t_3, 4, __pyx_v_self->fp_db); - __Pyx_INCREF(__pyx_v_self->tls_params_db); - __Pyx_GIVEREF(__pyx_v_self->tls_params_db); - PyTuple_SET_ITEM(__pyx_t_3, 5, __pyx_v_self->tls_params_db); - __Pyx_INCREF(__pyx_v_self->transition_probs); - __Pyx_GIVEREF(__pyx_v_self->transition_probs); - PyTuple_SET_ITEM(__pyx_t_3, 6, __pyx_v_self->transition_probs); - __pyx_t_1 = 0; - __pyx_t_2 = 0; - __pyx_v_state = ((PyObject*)__pyx_t_3); - __pyx_t_3 = 0; - - /* "(tree fragment)":6 - * cdef bint use_setstate - * state = (self.EXTENDED_FP_METADATA, self.MALWARE_DB, self.aligner, self.app_families, self.fp_db, self.tls_params_db, self.transition_probs) - * _dict = getattr(self, '__dict__', None) # <<<<<<<<<<<<<< - * if _dict is not None: - * state += (_dict,) - */ - __pyx_t_3 = __Pyx_GetAttr3(((PyObject *)__pyx_v_self), __pyx_n_s_dict, Py_None); if (unlikely(!__pyx_t_3)) __PYX_ERR(1, 6, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_3); - __pyx_v__dict = __pyx_t_3; - __pyx_t_3 = 0; - - /* "(tree fragment)":7 - * state = (self.EXTENDED_FP_METADATA, self.MALWARE_DB, self.aligner, self.app_families, self.fp_db, self.tls_params_db, self.transition_probs) - * _dict = getattr(self, '__dict__', None) - * if _dict is not None: # <<<<<<<<<<<<<< - * state += (_dict,) - * use_setstate = True - */ - __pyx_t_4 = (__pyx_v__dict != Py_None); - __pyx_t_5 = (__pyx_t_4 != 0); - if (__pyx_t_5) { - - /* "(tree fragment)":8 - * _dict = getattr(self, '__dict__', None) - * if _dict is not None: - * state += (_dict,) # <<<<<<<<<<<<<< - * use_setstate = True - * else: - */ - __pyx_t_3 = PyTuple_New(1); if (unlikely(!__pyx_t_3)) __PYX_ERR(1, 8, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_3); - __Pyx_INCREF(__pyx_v__dict); - __Pyx_GIVEREF(__pyx_v__dict); - PyTuple_SET_ITEM(__pyx_t_3, 0, __pyx_v__dict); - __pyx_t_2 = PyNumber_InPlaceAdd(__pyx_v_state, __pyx_t_3); if (unlikely(!__pyx_t_2)) __PYX_ERR(1, 8, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_2); - __Pyx_DECREF(__pyx_t_3); __pyx_t_3 = 0; - __Pyx_DECREF_SET(__pyx_v_state, ((PyObject*)__pyx_t_2)); - __pyx_t_2 = 0; - - /* "(tree fragment)":9 - * if _dict is not None: - * state += (_dict,) - * use_setstate = True # <<<<<<<<<<<<<< - * else: - * use_setstate = self.aligner is not None or self.app_families is not None or self.fp_db is not None or self.tls_params_db is not None or self.transition_probs is not None - */ - __pyx_v_use_setstate = 1; - - /* "(tree fragment)":7 - * state = (self.EXTENDED_FP_METADATA, self.MALWARE_DB, self.aligner, self.app_families, self.fp_db, self.tls_params_db, self.transition_probs) - * _dict = getattr(self, '__dict__', None) - * if _dict is not None: # <<<<<<<<<<<<<< - * state += (_dict,) - * use_setstate = True - */ - goto __pyx_L3; - } - - /* "(tree fragment)":11 - * use_setstate = True - * else: - * use_setstate = self.aligner is not None or self.app_families is not None or self.fp_db is not None or self.tls_params_db is not None or self.transition_probs is not None # <<<<<<<<<<<<<< - * if use_setstate: - * return __pyx_unpickle_TLS, (type(self), 0xf12e396, None), state - */ - /*else*/ { - __pyx_t_4 = (__pyx_v_self->aligner != Py_None); - __pyx_t_6 = (__pyx_t_4 != 0); - if (!__pyx_t_6) { - } else { - __pyx_t_5 = __pyx_t_6; - goto __pyx_L4_bool_binop_done; - } - __pyx_t_6 = (__pyx_v_self->app_families != ((PyObject*)Py_None)); - __pyx_t_4 = (__pyx_t_6 != 0); - if (!__pyx_t_4) { - } else { - __pyx_t_5 = __pyx_t_4; - goto __pyx_L4_bool_binop_done; - } - __pyx_t_4 = (__pyx_v_self->fp_db != ((PyObject*)Py_None)); - __pyx_t_6 = (__pyx_t_4 != 0); - if (!__pyx_t_6) { - } else { - __pyx_t_5 = __pyx_t_6; - goto __pyx_L4_bool_binop_done; - } - __pyx_t_6 = (__pyx_v_self->tls_params_db != ((PyObject*)Py_None)); - __pyx_t_4 = (__pyx_t_6 != 0); - if (!__pyx_t_4) { - } else { - __pyx_t_5 = __pyx_t_4; - goto __pyx_L4_bool_binop_done; - } - __pyx_t_4 = (__pyx_v_self->transition_probs != ((PyObject*)Py_None)); - __pyx_t_6 = (__pyx_t_4 != 0); - __pyx_t_5 = __pyx_t_6; - __pyx_L4_bool_binop_done:; - __pyx_v_use_setstate = __pyx_t_5; - } - __pyx_L3:; - - /* "(tree fragment)":12 - * else: - * use_setstate = self.aligner is not None or self.app_families is not None or self.fp_db is not None or self.tls_params_db is not None or self.transition_probs is not None - * if use_setstate: # <<<<<<<<<<<<<< - * return __pyx_unpickle_TLS, (type(self), 0xf12e396, None), state - * else: - */ - __pyx_t_5 = (__pyx_v_use_setstate != 0); - if (__pyx_t_5) { - - /* "(tree fragment)":13 - * use_setstate = self.aligner is not None or self.app_families is not None or self.fp_db is not None or self.tls_params_db is not None or self.transition_probs is not None - * if use_setstate: - * return __pyx_unpickle_TLS, (type(self), 0xf12e396, None), state # <<<<<<<<<<<<<< - * else: - * return __pyx_unpickle_TLS, (type(self), 0xf12e396, state) - */ - __Pyx_XDECREF(__pyx_r); - __Pyx_GetModuleGlobalName(__pyx_t_2, __pyx_n_s_pyx_unpickle_TLS); if (unlikely(!__pyx_t_2)) __PYX_ERR(1, 13, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_2); - __pyx_t_3 = PyTuple_New(3); if (unlikely(!__pyx_t_3)) __PYX_ERR(1, 13, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_3); - __Pyx_INCREF(((PyObject *)Py_TYPE(((PyObject *)__pyx_v_self)))); - __Pyx_GIVEREF(((PyObject *)Py_TYPE(((PyObject *)__pyx_v_self)))); - PyTuple_SET_ITEM(__pyx_t_3, 0, ((PyObject *)Py_TYPE(((PyObject *)__pyx_v_self)))); - __Pyx_INCREF(__pyx_int_252896150); - __Pyx_GIVEREF(__pyx_int_252896150); - PyTuple_SET_ITEM(__pyx_t_3, 1, __pyx_int_252896150); - __Pyx_INCREF(Py_None); - __Pyx_GIVEREF(Py_None); - PyTuple_SET_ITEM(__pyx_t_3, 2, Py_None); - __pyx_t_1 = PyTuple_New(3); if (unlikely(!__pyx_t_1)) __PYX_ERR(1, 13, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_1); - __Pyx_GIVEREF(__pyx_t_2); - PyTuple_SET_ITEM(__pyx_t_1, 0, __pyx_t_2); - __Pyx_GIVEREF(__pyx_t_3); - PyTuple_SET_ITEM(__pyx_t_1, 1, __pyx_t_3); - __Pyx_INCREF(__pyx_v_state); - __Pyx_GIVEREF(__pyx_v_state); - PyTuple_SET_ITEM(__pyx_t_1, 2, __pyx_v_state); - __pyx_t_2 = 0; - __pyx_t_3 = 0; - __pyx_r = __pyx_t_1; - __pyx_t_1 = 0; - goto __pyx_L0; - - /* "(tree fragment)":12 - * else: - * use_setstate = self.aligner is not None or self.app_families is not None or self.fp_db is not None or self.tls_params_db is not None or self.transition_probs is not None - * if use_setstate: # <<<<<<<<<<<<<< - * return __pyx_unpickle_TLS, (type(self), 0xf12e396, None), state - * else: - */ - } - - /* "(tree fragment)":15 - * return __pyx_unpickle_TLS, (type(self), 0xf12e396, None), state - * else: - * return __pyx_unpickle_TLS, (type(self), 0xf12e396, state) # <<<<<<<<<<<<<< - * def __setstate_cython__(self, __pyx_state): - * __pyx_unpickle_TLS__set_state(self, __pyx_state) - */ - /*else*/ { - __Pyx_XDECREF(__pyx_r); - __Pyx_GetModuleGlobalName(__pyx_t_1, __pyx_n_s_pyx_unpickle_TLS); if (unlikely(!__pyx_t_1)) __PYX_ERR(1, 15, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_1); - __pyx_t_3 = PyTuple_New(3); if (unlikely(!__pyx_t_3)) __PYX_ERR(1, 15, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_3); - __Pyx_INCREF(((PyObject *)Py_TYPE(((PyObject *)__pyx_v_self)))); - __Pyx_GIVEREF(((PyObject *)Py_TYPE(((PyObject *)__pyx_v_self)))); - PyTuple_SET_ITEM(__pyx_t_3, 0, ((PyObject *)Py_TYPE(((PyObject *)__pyx_v_self)))); - __Pyx_INCREF(__pyx_int_252896150); - __Pyx_GIVEREF(__pyx_int_252896150); - PyTuple_SET_ITEM(__pyx_t_3, 1, __pyx_int_252896150); - __Pyx_INCREF(__pyx_v_state); - __Pyx_GIVEREF(__pyx_v_state); - PyTuple_SET_ITEM(__pyx_t_3, 2, __pyx_v_state); - __pyx_t_2 = PyTuple_New(2); if (unlikely(!__pyx_t_2)) __PYX_ERR(1, 15, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_2); - __Pyx_GIVEREF(__pyx_t_1); - PyTuple_SET_ITEM(__pyx_t_2, 0, __pyx_t_1); - __Pyx_GIVEREF(__pyx_t_3); - PyTuple_SET_ITEM(__pyx_t_2, 1, __pyx_t_3); - __pyx_t_1 = 0; - __pyx_t_3 = 0; - __pyx_r = __pyx_t_2; - __pyx_t_2 = 0; - goto __pyx_L0; - } - - /* "(tree fragment)":1 - * def __reduce_cython__(self): # <<<<<<<<<<<<<< - * cdef tuple state - * cdef object _dict - */ - - /* function exit code */ - __pyx_L1_error:; - __Pyx_XDECREF(__pyx_t_1); - __Pyx_XDECREF(__pyx_t_2); - __Pyx_XDECREF(__pyx_t_3); - __Pyx_AddTraceback("pmercury.protocols.tls.TLS.__reduce_cython__", __pyx_clineno, __pyx_lineno, __pyx_filename); - __pyx_r = NULL; - __pyx_L0:; - __Pyx_XDECREF(__pyx_v_state); - __Pyx_XDECREF(__pyx_v__dict); - __Pyx_XGIVEREF(__pyx_r); - __Pyx_RefNannyFinishContext(); - return __pyx_r; -} - -/* "(tree fragment)":16 - * else: - * return __pyx_unpickle_TLS, (type(self), 0xf12e396, state) - * def __setstate_cython__(self, __pyx_state): # <<<<<<<<<<<<<< - * __pyx_unpickle_TLS__set_state(self, __pyx_state) - */ - -/* Python wrapper */ -static PyObject *__pyx_pw_8pmercury_9protocols_3tls_3TLS_31__setstate_cython__(PyObject *__pyx_v_self, PyObject *__pyx_v___pyx_state); /*proto*/ -static PyObject *__pyx_pw_8pmercury_9protocols_3tls_3TLS_31__setstate_cython__(PyObject *__pyx_v_self, PyObject *__pyx_v___pyx_state) { - PyObject *__pyx_r = 0; - __Pyx_RefNannyDeclarations - __Pyx_RefNannySetupContext("__setstate_cython__ (wrapper)", 0); - __pyx_r = __pyx_pf_8pmercury_9protocols_3tls_3TLS_30__setstate_cython__(((struct __pyx_obj_8pmercury_9protocols_3tls_TLS *)__pyx_v_self), ((PyObject *)__pyx_v___pyx_state)); - - /* function exit code */ - __Pyx_RefNannyFinishContext(); - return __pyx_r; -} - -static PyObject *__pyx_pf_8pmercury_9protocols_3tls_3TLS_30__setstate_cython__(struct __pyx_obj_8pmercury_9protocols_3tls_TLS *__pyx_v_self, PyObject *__pyx_v___pyx_state) { - PyObject *__pyx_r = NULL; - __Pyx_RefNannyDeclarations - PyObject *__pyx_t_1 = NULL; - __Pyx_RefNannySetupContext("__setstate_cython__", 0); - - /* "(tree fragment)":17 - * return __pyx_unpickle_TLS, (type(self), 0xf12e396, state) - * def __setstate_cython__(self, __pyx_state): - * __pyx_unpickle_TLS__set_state(self, __pyx_state) # <<<<<<<<<<<<<< - */ - if (!(likely(PyTuple_CheckExact(__pyx_v___pyx_state))||((__pyx_v___pyx_state) == Py_None)||(PyErr_Format(PyExc_TypeError, "Expected %.16s, got %.200s", "tuple", Py_TYPE(__pyx_v___pyx_state)->tp_name), 0))) __PYX_ERR(1, 17, __pyx_L1_error) - __pyx_t_1 = __pyx_f_8pmercury_9protocols_3tls___pyx_unpickle_TLS__set_state(__pyx_v_self, ((PyObject*)__pyx_v___pyx_state)); if (unlikely(!__pyx_t_1)) __PYX_ERR(1, 17, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_1); - __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0; - - /* "(tree fragment)":16 - * else: - * return __pyx_unpickle_TLS, (type(self), 0xf12e396, state) - * def __setstate_cython__(self, __pyx_state): # <<<<<<<<<<<<<< - * __pyx_unpickle_TLS__set_state(self, __pyx_state) - */ - - /* function exit code */ - __pyx_r = Py_None; __Pyx_INCREF(Py_None); - goto __pyx_L0; - __pyx_L1_error:; - __Pyx_XDECREF(__pyx_t_1); - __Pyx_AddTraceback("pmercury.protocols.tls.TLS.__setstate_cython__", __pyx_clineno, __pyx_lineno, __pyx_filename); - __pyx_r = NULL; - __pyx_L0:; - __Pyx_XGIVEREF(__pyx_r); - __Pyx_RefNannyFinishContext(); - return __pyx_r; -} - -/* "(tree fragment)":1 - * def __pyx_unpickle_TLS(__pyx_type, long __pyx_checksum, __pyx_state): # <<<<<<<<<<<<<< - * cdef object __pyx_PickleError - * cdef object __pyx_result - */ - -/* Python wrapper */ -static PyObject *__pyx_pw_8pmercury_9protocols_3tls_1__pyx_unpickle_TLS(PyObject *__pyx_self, PyObject *__pyx_args, PyObject *__pyx_kwds); /*proto*/ -static PyMethodDef __pyx_mdef_8pmercury_9protocols_3tls_1__pyx_unpickle_TLS = {"__pyx_unpickle_TLS", (PyCFunction)(void*)(PyCFunctionWithKeywords)__pyx_pw_8pmercury_9protocols_3tls_1__pyx_unpickle_TLS, METH_VARARGS|METH_KEYWORDS, 0}; -static PyObject *__pyx_pw_8pmercury_9protocols_3tls_1__pyx_unpickle_TLS(PyObject *__pyx_self, PyObject *__pyx_args, PyObject *__pyx_kwds) { - PyObject *__pyx_v___pyx_type = 0; - long __pyx_v___pyx_checksum; - PyObject *__pyx_v___pyx_state = 0; - PyObject *__pyx_r = 0; - __Pyx_RefNannyDeclarations - __Pyx_RefNannySetupContext("__pyx_unpickle_TLS (wrapper)", 0); - { - static PyObject **__pyx_pyargnames[] = {&__pyx_n_s_pyx_type,&__pyx_n_s_pyx_checksum,&__pyx_n_s_pyx_state,0}; - PyObject* values[3] = {0,0,0}; - if (unlikely(__pyx_kwds)) { - Py_ssize_t kw_args; - const Py_ssize_t pos_args = PyTuple_GET_SIZE(__pyx_args); - switch (pos_args) { - case 3: values[2] = PyTuple_GET_ITEM(__pyx_args, 2); - CYTHON_FALLTHROUGH; - case 2: values[1] = PyTuple_GET_ITEM(__pyx_args, 1); - CYTHON_FALLTHROUGH; - case 1: values[0] = PyTuple_GET_ITEM(__pyx_args, 0); - CYTHON_FALLTHROUGH; - case 0: break; - default: goto __pyx_L5_argtuple_error; - } - kw_args = PyDict_Size(__pyx_kwds); - switch (pos_args) { - case 0: - if (likely((values[0] = __Pyx_PyDict_GetItemStr(__pyx_kwds, __pyx_n_s_pyx_type)) != 0)) kw_args--; - else goto __pyx_L5_argtuple_error; - CYTHON_FALLTHROUGH; - case 1: - if (likely((values[1] = __Pyx_PyDict_GetItemStr(__pyx_kwds, __pyx_n_s_pyx_checksum)) != 0)) kw_args--; - else { - __Pyx_RaiseArgtupleInvalid("__pyx_unpickle_TLS", 1, 3, 3, 1); __PYX_ERR(1, 1, __pyx_L3_error) - } - CYTHON_FALLTHROUGH; - case 2: - if (likely((values[2] = __Pyx_PyDict_GetItemStr(__pyx_kwds, __pyx_n_s_pyx_state)) != 0)) kw_args--; - else { - __Pyx_RaiseArgtupleInvalid("__pyx_unpickle_TLS", 1, 3, 3, 2); __PYX_ERR(1, 1, __pyx_L3_error) - } - } - if (unlikely(kw_args > 0)) { - if (unlikely(__Pyx_ParseOptionalKeywords(__pyx_kwds, __pyx_pyargnames, 0, values, pos_args, "__pyx_unpickle_TLS") < 0)) __PYX_ERR(1, 1, __pyx_L3_error) - } - } else if (PyTuple_GET_SIZE(__pyx_args) != 3) { - goto __pyx_L5_argtuple_error; - } else { - values[0] = PyTuple_GET_ITEM(__pyx_args, 0); - values[1] = PyTuple_GET_ITEM(__pyx_args, 1); - values[2] = PyTuple_GET_ITEM(__pyx_args, 2); - } - __pyx_v___pyx_type = values[0]; - __pyx_v___pyx_checksum = __Pyx_PyInt_As_long(values[1]); if (unlikely((__pyx_v___pyx_checksum == (long)-1) && PyErr_Occurred())) __PYX_ERR(1, 1, __pyx_L3_error) - __pyx_v___pyx_state = values[2]; - } - goto __pyx_L4_argument_unpacking_done; - __pyx_L5_argtuple_error:; - __Pyx_RaiseArgtupleInvalid("__pyx_unpickle_TLS", 1, 3, 3, PyTuple_GET_SIZE(__pyx_args)); __PYX_ERR(1, 1, __pyx_L3_error) - __pyx_L3_error:; - __Pyx_AddTraceback("pmercury.protocols.tls.__pyx_unpickle_TLS", __pyx_clineno, __pyx_lineno, __pyx_filename); - __Pyx_RefNannyFinishContext(); - return NULL; - __pyx_L4_argument_unpacking_done:; - __pyx_r = __pyx_pf_8pmercury_9protocols_3tls___pyx_unpickle_TLS(__pyx_self, __pyx_v___pyx_type, __pyx_v___pyx_checksum, __pyx_v___pyx_state); - - /* function exit code */ - __Pyx_RefNannyFinishContext(); - return __pyx_r; -} - -static PyObject *__pyx_pf_8pmercury_9protocols_3tls___pyx_unpickle_TLS(CYTHON_UNUSED PyObject *__pyx_self, PyObject *__pyx_v___pyx_type, long __pyx_v___pyx_checksum, PyObject *__pyx_v___pyx_state) { - PyObject *__pyx_v___pyx_PickleError = 0; - PyObject *__pyx_v___pyx_result = 0; - PyObject *__pyx_r = NULL; - __Pyx_RefNannyDeclarations - int __pyx_t_1; - PyObject *__pyx_t_2 = NULL; - PyObject *__pyx_t_3 = NULL; - PyObject *__pyx_t_4 = NULL; - PyObject *__pyx_t_5 = NULL; - int __pyx_t_6; - __Pyx_RefNannySetupContext("__pyx_unpickle_TLS", 0); - - /* "(tree fragment)":4 - * cdef object __pyx_PickleError - * cdef object __pyx_result - * if __pyx_checksum != 0xf12e396: # <<<<<<<<<<<<<< - * from pickle import PickleError as __pyx_PickleError - * raise __pyx_PickleError("Incompatible checksums (%s vs 0xf12e396 = (EXTENDED_FP_METADATA, MALWARE_DB, aligner, app_families, fp_db, tls_params_db, transition_probs))" % __pyx_checksum) - */ - __pyx_t_1 = ((__pyx_v___pyx_checksum != 0xf12e396) != 0); - if (__pyx_t_1) { - - /* "(tree fragment)":5 - * cdef object __pyx_result - * if __pyx_checksum != 0xf12e396: - * from pickle import PickleError as __pyx_PickleError # <<<<<<<<<<<<<< - * raise __pyx_PickleError("Incompatible checksums (%s vs 0xf12e396 = (EXTENDED_FP_METADATA, MALWARE_DB, aligner, app_families, fp_db, tls_params_db, transition_probs))" % __pyx_checksum) - * __pyx_result = TLS.__new__(__pyx_type) - */ - __pyx_t_2 = PyList_New(1); if (unlikely(!__pyx_t_2)) __PYX_ERR(1, 5, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_2); - __Pyx_INCREF(__pyx_n_s_PickleError); - __Pyx_GIVEREF(__pyx_n_s_PickleError); - PyList_SET_ITEM(__pyx_t_2, 0, __pyx_n_s_PickleError); - __pyx_t_3 = __Pyx_Import(__pyx_n_s_pickle, __pyx_t_2, 0); if (unlikely(!__pyx_t_3)) __PYX_ERR(1, 5, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_3); - __Pyx_DECREF(__pyx_t_2); __pyx_t_2 = 0; - __pyx_t_2 = __Pyx_ImportFrom(__pyx_t_3, __pyx_n_s_PickleError); if (unlikely(!__pyx_t_2)) __PYX_ERR(1, 5, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_2); - __Pyx_INCREF(__pyx_t_2); - __pyx_v___pyx_PickleError = __pyx_t_2; - __Pyx_DECREF(__pyx_t_2); __pyx_t_2 = 0; - __Pyx_DECREF(__pyx_t_3); __pyx_t_3 = 0; - - /* "(tree fragment)":6 - * if __pyx_checksum != 0xf12e396: - * from pickle import PickleError as __pyx_PickleError - * raise __pyx_PickleError("Incompatible checksums (%s vs 0xf12e396 = (EXTENDED_FP_METADATA, MALWARE_DB, aligner, app_families, fp_db, tls_params_db, transition_probs))" % __pyx_checksum) # <<<<<<<<<<<<<< - * __pyx_result = TLS.__new__(__pyx_type) - * if __pyx_state is not None: - */ - __pyx_t_2 = __Pyx_PyInt_From_long(__pyx_v___pyx_checksum); if (unlikely(!__pyx_t_2)) __PYX_ERR(1, 6, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_2); - __pyx_t_4 = __Pyx_PyString_Format(__pyx_kp_s_Incompatible_checksums_s_vs_0xf1, __pyx_t_2); if (unlikely(!__pyx_t_4)) __PYX_ERR(1, 6, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_4); - __Pyx_DECREF(__pyx_t_2); __pyx_t_2 = 0; - __Pyx_INCREF(__pyx_v___pyx_PickleError); - __pyx_t_2 = __pyx_v___pyx_PickleError; __pyx_t_5 = NULL; - if (CYTHON_UNPACK_METHODS && unlikely(PyMethod_Check(__pyx_t_2))) { - __pyx_t_5 = PyMethod_GET_SELF(__pyx_t_2); - if (likely(__pyx_t_5)) { - PyObject* function = PyMethod_GET_FUNCTION(__pyx_t_2); - __Pyx_INCREF(__pyx_t_5); - __Pyx_INCREF(function); - __Pyx_DECREF_SET(__pyx_t_2, function); - } - } - __pyx_t_3 = (__pyx_t_5) ? __Pyx_PyObject_Call2Args(__pyx_t_2, __pyx_t_5, __pyx_t_4) : __Pyx_PyObject_CallOneArg(__pyx_t_2, __pyx_t_4); - __Pyx_XDECREF(__pyx_t_5); __pyx_t_5 = 0; - __Pyx_DECREF(__pyx_t_4); __pyx_t_4 = 0; - if (unlikely(!__pyx_t_3)) __PYX_ERR(1, 6, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_3); - __Pyx_DECREF(__pyx_t_2); __pyx_t_2 = 0; - __Pyx_Raise(__pyx_t_3, 0, 0, 0); - __Pyx_DECREF(__pyx_t_3); __pyx_t_3 = 0; - __PYX_ERR(1, 6, __pyx_L1_error) - - /* "(tree fragment)":4 - * cdef object __pyx_PickleError - * cdef object __pyx_result - * if __pyx_checksum != 0xf12e396: # <<<<<<<<<<<<<< - * from pickle import PickleError as __pyx_PickleError - * raise __pyx_PickleError("Incompatible checksums (%s vs 0xf12e396 = (EXTENDED_FP_METADATA, MALWARE_DB, aligner, app_families, fp_db, tls_params_db, transition_probs))" % __pyx_checksum) - */ - } - - /* "(tree fragment)":7 - * from pickle import PickleError as __pyx_PickleError - * raise __pyx_PickleError("Incompatible checksums (%s vs 0xf12e396 = (EXTENDED_FP_METADATA, MALWARE_DB, aligner, app_families, fp_db, tls_params_db, transition_probs))" % __pyx_checksum) - * __pyx_result = TLS.__new__(__pyx_type) # <<<<<<<<<<<<<< - * if __pyx_state is not None: - * __pyx_unpickle_TLS__set_state( __pyx_result, __pyx_state) - */ - __pyx_t_2 = __Pyx_PyObject_GetAttrStr(((PyObject *)__pyx_ptype_8pmercury_9protocols_3tls_TLS), __pyx_n_s_new); if (unlikely(!__pyx_t_2)) __PYX_ERR(1, 7, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_2); - __pyx_t_4 = NULL; - if (CYTHON_UNPACK_METHODS && likely(PyMethod_Check(__pyx_t_2))) { - __pyx_t_4 = PyMethod_GET_SELF(__pyx_t_2); - if (likely(__pyx_t_4)) { - PyObject* function = PyMethod_GET_FUNCTION(__pyx_t_2); - __Pyx_INCREF(__pyx_t_4); - __Pyx_INCREF(function); - __Pyx_DECREF_SET(__pyx_t_2, function); - } - } - __pyx_t_3 = (__pyx_t_4) ? __Pyx_PyObject_Call2Args(__pyx_t_2, __pyx_t_4, __pyx_v___pyx_type) : __Pyx_PyObject_CallOneArg(__pyx_t_2, __pyx_v___pyx_type); - __Pyx_XDECREF(__pyx_t_4); __pyx_t_4 = 0; - if (unlikely(!__pyx_t_3)) __PYX_ERR(1, 7, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_3); - __Pyx_DECREF(__pyx_t_2); __pyx_t_2 = 0; - __pyx_v___pyx_result = __pyx_t_3; - __pyx_t_3 = 0; - - /* "(tree fragment)":8 - * raise __pyx_PickleError("Incompatible checksums (%s vs 0xf12e396 = (EXTENDED_FP_METADATA, MALWARE_DB, aligner, app_families, fp_db, tls_params_db, transition_probs))" % __pyx_checksum) - * __pyx_result = TLS.__new__(__pyx_type) - * if __pyx_state is not None: # <<<<<<<<<<<<<< - * __pyx_unpickle_TLS__set_state( __pyx_result, __pyx_state) - * return __pyx_result - */ - __pyx_t_1 = (__pyx_v___pyx_state != Py_None); - __pyx_t_6 = (__pyx_t_1 != 0); - if (__pyx_t_6) { - - /* "(tree fragment)":9 - * __pyx_result = TLS.__new__(__pyx_type) - * if __pyx_state is not None: - * __pyx_unpickle_TLS__set_state( __pyx_result, __pyx_state) # <<<<<<<<<<<<<< - * return __pyx_result - * cdef __pyx_unpickle_TLS__set_state(TLS __pyx_result, tuple __pyx_state): - */ - if (!(likely(PyTuple_CheckExact(__pyx_v___pyx_state))||((__pyx_v___pyx_state) == Py_None)||(PyErr_Format(PyExc_TypeError, "Expected %.16s, got %.200s", "tuple", Py_TYPE(__pyx_v___pyx_state)->tp_name), 0))) __PYX_ERR(1, 9, __pyx_L1_error) - __pyx_t_3 = __pyx_f_8pmercury_9protocols_3tls___pyx_unpickle_TLS__set_state(((struct __pyx_obj_8pmercury_9protocols_3tls_TLS *)__pyx_v___pyx_result), ((PyObject*)__pyx_v___pyx_state)); if (unlikely(!__pyx_t_3)) __PYX_ERR(1, 9, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_3); - __Pyx_DECREF(__pyx_t_3); __pyx_t_3 = 0; - - /* "(tree fragment)":8 - * raise __pyx_PickleError("Incompatible checksums (%s vs 0xf12e396 = (EXTENDED_FP_METADATA, MALWARE_DB, aligner, app_families, fp_db, tls_params_db, transition_probs))" % __pyx_checksum) - * __pyx_result = TLS.__new__(__pyx_type) - * if __pyx_state is not None: # <<<<<<<<<<<<<< - * __pyx_unpickle_TLS__set_state( __pyx_result, __pyx_state) - * return __pyx_result - */ - } - - /* "(tree fragment)":10 - * if __pyx_state is not None: - * __pyx_unpickle_TLS__set_state( __pyx_result, __pyx_state) - * return __pyx_result # <<<<<<<<<<<<<< - * cdef __pyx_unpickle_TLS__set_state(TLS __pyx_result, tuple __pyx_state): - * __pyx_result.EXTENDED_FP_METADATA = __pyx_state[0]; __pyx_result.MALWARE_DB = __pyx_state[1]; __pyx_result.aligner = __pyx_state[2]; __pyx_result.app_families = __pyx_state[3]; __pyx_result.fp_db = __pyx_state[4]; __pyx_result.tls_params_db = __pyx_state[5]; __pyx_result.transition_probs = __pyx_state[6] - */ - __Pyx_XDECREF(__pyx_r); - __Pyx_INCREF(__pyx_v___pyx_result); - __pyx_r = __pyx_v___pyx_result; - goto __pyx_L0; - - /* "(tree fragment)":1 - * def __pyx_unpickle_TLS(__pyx_type, long __pyx_checksum, __pyx_state): # <<<<<<<<<<<<<< - * cdef object __pyx_PickleError - * cdef object __pyx_result - */ - - /* function exit code */ - __pyx_L1_error:; - __Pyx_XDECREF(__pyx_t_2); - __Pyx_XDECREF(__pyx_t_3); - __Pyx_XDECREF(__pyx_t_4); - __Pyx_XDECREF(__pyx_t_5); - __Pyx_AddTraceback("pmercury.protocols.tls.__pyx_unpickle_TLS", __pyx_clineno, __pyx_lineno, __pyx_filename); - __pyx_r = NULL; - __pyx_L0:; - __Pyx_XDECREF(__pyx_v___pyx_PickleError); - __Pyx_XDECREF(__pyx_v___pyx_result); - __Pyx_XGIVEREF(__pyx_r); - __Pyx_RefNannyFinishContext(); - return __pyx_r; -} - -/* "(tree fragment)":11 - * __pyx_unpickle_TLS__set_state( __pyx_result, __pyx_state) - * return __pyx_result - * cdef __pyx_unpickle_TLS__set_state(TLS __pyx_result, tuple __pyx_state): # <<<<<<<<<<<<<< - * __pyx_result.EXTENDED_FP_METADATA = __pyx_state[0]; __pyx_result.MALWARE_DB = __pyx_state[1]; __pyx_result.aligner = __pyx_state[2]; __pyx_result.app_families = __pyx_state[3]; __pyx_result.fp_db = __pyx_state[4]; __pyx_result.tls_params_db = __pyx_state[5]; __pyx_result.transition_probs = __pyx_state[6] - * if len(__pyx_state) > 7 and hasattr(__pyx_result, '__dict__'): - */ - -static PyObject *__pyx_f_8pmercury_9protocols_3tls___pyx_unpickle_TLS__set_state(struct __pyx_obj_8pmercury_9protocols_3tls_TLS *__pyx_v___pyx_result, PyObject *__pyx_v___pyx_state) { - PyObject *__pyx_r = NULL; - __Pyx_RefNannyDeclarations - PyObject *__pyx_t_1 = NULL; - int __pyx_t_2; - Py_ssize_t __pyx_t_3; - int __pyx_t_4; - int __pyx_t_5; - PyObject *__pyx_t_6 = NULL; - PyObject *__pyx_t_7 = NULL; - PyObject *__pyx_t_8 = NULL; - __Pyx_RefNannySetupContext("__pyx_unpickle_TLS__set_state", 0); - - /* "(tree fragment)":12 - * return __pyx_result - * cdef __pyx_unpickle_TLS__set_state(TLS __pyx_result, tuple __pyx_state): - * __pyx_result.EXTENDED_FP_METADATA = __pyx_state[0]; __pyx_result.MALWARE_DB = __pyx_state[1]; __pyx_result.aligner = __pyx_state[2]; __pyx_result.app_families = __pyx_state[3]; __pyx_result.fp_db = __pyx_state[4]; __pyx_result.tls_params_db = __pyx_state[5]; __pyx_result.transition_probs = __pyx_state[6] # <<<<<<<<<<<<<< - * if len(__pyx_state) > 7 and hasattr(__pyx_result, '__dict__'): - * __pyx_result.__dict__.update(__pyx_state[7]) - */ - if (unlikely(__pyx_v___pyx_state == Py_None)) { - PyErr_SetString(PyExc_TypeError, "'NoneType' object is not subscriptable"); - __PYX_ERR(1, 12, __pyx_L1_error) - } - __pyx_t_1 = __Pyx_GetItemInt_Tuple(__pyx_v___pyx_state, 0, long, 1, __Pyx_PyInt_From_long, 0, 0, 1); if (unlikely(!__pyx_t_1)) __PYX_ERR(1, 12, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_1); - __pyx_t_2 = __Pyx_PyObject_IsTrue(__pyx_t_1); if (unlikely((__pyx_t_2 == (int)-1) && PyErr_Occurred())) __PYX_ERR(1, 12, __pyx_L1_error) - __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0; - __pyx_v___pyx_result->EXTENDED_FP_METADATA = __pyx_t_2; - if (unlikely(__pyx_v___pyx_state == Py_None)) { - PyErr_SetString(PyExc_TypeError, "'NoneType' object is not subscriptable"); - __PYX_ERR(1, 12, __pyx_L1_error) - } - __pyx_t_1 = __Pyx_GetItemInt_Tuple(__pyx_v___pyx_state, 1, long, 1, __Pyx_PyInt_From_long, 0, 0, 1); if (unlikely(!__pyx_t_1)) __PYX_ERR(1, 12, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_1); - __pyx_t_2 = __Pyx_PyObject_IsTrue(__pyx_t_1); if (unlikely((__pyx_t_2 == (int)-1) && PyErr_Occurred())) __PYX_ERR(1, 12, __pyx_L1_error) - __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0; - __pyx_v___pyx_result->MALWARE_DB = __pyx_t_2; - if (unlikely(__pyx_v___pyx_state == Py_None)) { - PyErr_SetString(PyExc_TypeError, "'NoneType' object is not subscriptable"); - __PYX_ERR(1, 12, __pyx_L1_error) - } - __pyx_t_1 = __Pyx_GetItemInt_Tuple(__pyx_v___pyx_state, 2, long, 1, __Pyx_PyInt_From_long, 0, 0, 1); if (unlikely(!__pyx_t_1)) __PYX_ERR(1, 12, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_1); - __Pyx_GIVEREF(__pyx_t_1); - __Pyx_GOTREF(__pyx_v___pyx_result->aligner); - __Pyx_DECREF(__pyx_v___pyx_result->aligner); - __pyx_v___pyx_result->aligner = __pyx_t_1; - __pyx_t_1 = 0; - if (unlikely(__pyx_v___pyx_state == Py_None)) { - PyErr_SetString(PyExc_TypeError, "'NoneType' object is not subscriptable"); - __PYX_ERR(1, 12, __pyx_L1_error) - } - __pyx_t_1 = __Pyx_GetItemInt_Tuple(__pyx_v___pyx_state, 3, long, 1, __Pyx_PyInt_From_long, 0, 0, 1); if (unlikely(!__pyx_t_1)) __PYX_ERR(1, 12, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_1); - if (!(likely(PyDict_CheckExact(__pyx_t_1))||((__pyx_t_1) == Py_None)||(PyErr_Format(PyExc_TypeError, "Expected %.16s, got %.200s", "dict", Py_TYPE(__pyx_t_1)->tp_name), 0))) __PYX_ERR(1, 12, __pyx_L1_error) - __Pyx_GIVEREF(__pyx_t_1); - __Pyx_GOTREF(__pyx_v___pyx_result->app_families); - __Pyx_DECREF(__pyx_v___pyx_result->app_families); - __pyx_v___pyx_result->app_families = ((PyObject*)__pyx_t_1); - __pyx_t_1 = 0; - if (unlikely(__pyx_v___pyx_state == Py_None)) { - PyErr_SetString(PyExc_TypeError, "'NoneType' object is not subscriptable"); - __PYX_ERR(1, 12, __pyx_L1_error) - } - __pyx_t_1 = __Pyx_GetItemInt_Tuple(__pyx_v___pyx_state, 4, long, 1, __Pyx_PyInt_From_long, 0, 0, 1); if (unlikely(!__pyx_t_1)) __PYX_ERR(1, 12, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_1); - if (!(likely(PyDict_CheckExact(__pyx_t_1))||((__pyx_t_1) == Py_None)||(PyErr_Format(PyExc_TypeError, "Expected %.16s, got %.200s", "dict", Py_TYPE(__pyx_t_1)->tp_name), 0))) __PYX_ERR(1, 12, __pyx_L1_error) - __Pyx_GIVEREF(__pyx_t_1); - __Pyx_GOTREF(__pyx_v___pyx_result->fp_db); - __Pyx_DECREF(__pyx_v___pyx_result->fp_db); - __pyx_v___pyx_result->fp_db = ((PyObject*)__pyx_t_1); - __pyx_t_1 = 0; - if (unlikely(__pyx_v___pyx_state == Py_None)) { - PyErr_SetString(PyExc_TypeError, "'NoneType' object is not subscriptable"); - __PYX_ERR(1, 12, __pyx_L1_error) - } - __pyx_t_1 = __Pyx_GetItemInt_Tuple(__pyx_v___pyx_state, 5, long, 1, __Pyx_PyInt_From_long, 0, 0, 1); if (unlikely(!__pyx_t_1)) __PYX_ERR(1, 12, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_1); - if (!(likely(PyDict_CheckExact(__pyx_t_1))||((__pyx_t_1) == Py_None)||(PyErr_Format(PyExc_TypeError, "Expected %.16s, got %.200s", "dict", Py_TYPE(__pyx_t_1)->tp_name), 0))) __PYX_ERR(1, 12, __pyx_L1_error) - __Pyx_GIVEREF(__pyx_t_1); - __Pyx_GOTREF(__pyx_v___pyx_result->tls_params_db); - __Pyx_DECREF(__pyx_v___pyx_result->tls_params_db); - __pyx_v___pyx_result->tls_params_db = ((PyObject*)__pyx_t_1); - __pyx_t_1 = 0; - if (unlikely(__pyx_v___pyx_state == Py_None)) { - PyErr_SetString(PyExc_TypeError, "'NoneType' object is not subscriptable"); - __PYX_ERR(1, 12, __pyx_L1_error) - } - __pyx_t_1 = __Pyx_GetItemInt_Tuple(__pyx_v___pyx_state, 6, long, 1, __Pyx_PyInt_From_long, 0, 0, 1); if (unlikely(!__pyx_t_1)) __PYX_ERR(1, 12, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_1); - if (!(likely(PyDict_CheckExact(__pyx_t_1))||((__pyx_t_1) == Py_None)||(PyErr_Format(PyExc_TypeError, "Expected %.16s, got %.200s", "dict", Py_TYPE(__pyx_t_1)->tp_name), 0))) __PYX_ERR(1, 12, __pyx_L1_error) - __Pyx_GIVEREF(__pyx_t_1); - __Pyx_GOTREF(__pyx_v___pyx_result->transition_probs); - __Pyx_DECREF(__pyx_v___pyx_result->transition_probs); - __pyx_v___pyx_result->transition_probs = ((PyObject*)__pyx_t_1); - __pyx_t_1 = 0; - - /* "(tree fragment)":13 - * cdef __pyx_unpickle_TLS__set_state(TLS __pyx_result, tuple __pyx_state): - * __pyx_result.EXTENDED_FP_METADATA = __pyx_state[0]; __pyx_result.MALWARE_DB = __pyx_state[1]; __pyx_result.aligner = __pyx_state[2]; __pyx_result.app_families = __pyx_state[3]; __pyx_result.fp_db = __pyx_state[4]; __pyx_result.tls_params_db = __pyx_state[5]; __pyx_result.transition_probs = __pyx_state[6] - * if len(__pyx_state) > 7 and hasattr(__pyx_result, '__dict__'): # <<<<<<<<<<<<<< - * __pyx_result.__dict__.update(__pyx_state[7]) - */ - if (unlikely(__pyx_v___pyx_state == Py_None)) { - PyErr_SetString(PyExc_TypeError, "object of type 'NoneType' has no len()"); - __PYX_ERR(1, 13, __pyx_L1_error) - } - __pyx_t_3 = PyTuple_GET_SIZE(__pyx_v___pyx_state); if (unlikely(__pyx_t_3 == ((Py_ssize_t)-1))) __PYX_ERR(1, 13, __pyx_L1_error) - __pyx_t_4 = ((__pyx_t_3 > 7) != 0); - if (__pyx_t_4) { - } else { - __pyx_t_2 = __pyx_t_4; - goto __pyx_L4_bool_binop_done; - } - __pyx_t_4 = __Pyx_HasAttr(((PyObject *)__pyx_v___pyx_result), __pyx_n_s_dict); if (unlikely(__pyx_t_4 == ((int)-1))) __PYX_ERR(1, 13, __pyx_L1_error) - __pyx_t_5 = (__pyx_t_4 != 0); - __pyx_t_2 = __pyx_t_5; - __pyx_L4_bool_binop_done:; - if (__pyx_t_2) { - - /* "(tree fragment)":14 - * __pyx_result.EXTENDED_FP_METADATA = __pyx_state[0]; __pyx_result.MALWARE_DB = __pyx_state[1]; __pyx_result.aligner = __pyx_state[2]; __pyx_result.app_families = __pyx_state[3]; __pyx_result.fp_db = __pyx_state[4]; __pyx_result.tls_params_db = __pyx_state[5]; __pyx_result.transition_probs = __pyx_state[6] - * if len(__pyx_state) > 7 and hasattr(__pyx_result, '__dict__'): - * __pyx_result.__dict__.update(__pyx_state[7]) # <<<<<<<<<<<<<< - */ - __pyx_t_6 = __Pyx_PyObject_GetAttrStr(((PyObject *)__pyx_v___pyx_result), __pyx_n_s_dict); if (unlikely(!__pyx_t_6)) __PYX_ERR(1, 14, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_6); - __pyx_t_7 = __Pyx_PyObject_GetAttrStr(__pyx_t_6, __pyx_n_s_update); if (unlikely(!__pyx_t_7)) __PYX_ERR(1, 14, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_7); - __Pyx_DECREF(__pyx_t_6); __pyx_t_6 = 0; - if (unlikely(__pyx_v___pyx_state == Py_None)) { - PyErr_SetString(PyExc_TypeError, "'NoneType' object is not subscriptable"); - __PYX_ERR(1, 14, __pyx_L1_error) - } - __pyx_t_6 = __Pyx_GetItemInt_Tuple(__pyx_v___pyx_state, 7, long, 1, __Pyx_PyInt_From_long, 0, 0, 1); if (unlikely(!__pyx_t_6)) __PYX_ERR(1, 14, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_6); - __pyx_t_8 = NULL; - if (CYTHON_UNPACK_METHODS && likely(PyMethod_Check(__pyx_t_7))) { - __pyx_t_8 = PyMethod_GET_SELF(__pyx_t_7); - if (likely(__pyx_t_8)) { - PyObject* function = PyMethod_GET_FUNCTION(__pyx_t_7); - __Pyx_INCREF(__pyx_t_8); - __Pyx_INCREF(function); - __Pyx_DECREF_SET(__pyx_t_7, function); - } - } - __pyx_t_1 = (__pyx_t_8) ? __Pyx_PyObject_Call2Args(__pyx_t_7, __pyx_t_8, __pyx_t_6) : __Pyx_PyObject_CallOneArg(__pyx_t_7, __pyx_t_6); - __Pyx_XDECREF(__pyx_t_8); __pyx_t_8 = 0; - __Pyx_DECREF(__pyx_t_6); __pyx_t_6 = 0; - if (unlikely(!__pyx_t_1)) __PYX_ERR(1, 14, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_1); - __Pyx_DECREF(__pyx_t_7); __pyx_t_7 = 0; - __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0; - - /* "(tree fragment)":13 - * cdef __pyx_unpickle_TLS__set_state(TLS __pyx_result, tuple __pyx_state): - * __pyx_result.EXTENDED_FP_METADATA = __pyx_state[0]; __pyx_result.MALWARE_DB = __pyx_state[1]; __pyx_result.aligner = __pyx_state[2]; __pyx_result.app_families = __pyx_state[3]; __pyx_result.fp_db = __pyx_state[4]; __pyx_result.tls_params_db = __pyx_state[5]; __pyx_result.transition_probs = __pyx_state[6] - * if len(__pyx_state) > 7 and hasattr(__pyx_result, '__dict__'): # <<<<<<<<<<<<<< - * __pyx_result.__dict__.update(__pyx_state[7]) - */ - } - - /* "(tree fragment)":11 - * __pyx_unpickle_TLS__set_state( __pyx_result, __pyx_state) - * return __pyx_result - * cdef __pyx_unpickle_TLS__set_state(TLS __pyx_result, tuple __pyx_state): # <<<<<<<<<<<<<< - * __pyx_result.EXTENDED_FP_METADATA = __pyx_state[0]; __pyx_result.MALWARE_DB = __pyx_state[1]; __pyx_result.aligner = __pyx_state[2]; __pyx_result.app_families = __pyx_state[3]; __pyx_result.fp_db = __pyx_state[4]; __pyx_result.tls_params_db = __pyx_state[5]; __pyx_result.transition_probs = __pyx_state[6] - * if len(__pyx_state) > 7 and hasattr(__pyx_result, '__dict__'): - */ - - /* function exit code */ - __pyx_r = Py_None; __Pyx_INCREF(Py_None); - goto __pyx_L0; - __pyx_L1_error:; - __Pyx_XDECREF(__pyx_t_1); - __Pyx_XDECREF(__pyx_t_6); - __Pyx_XDECREF(__pyx_t_7); - __Pyx_XDECREF(__pyx_t_8); - __Pyx_AddTraceback("pmercury.protocols.tls.__pyx_unpickle_TLS__set_state", __pyx_clineno, __pyx_lineno, __pyx_filename); - __pyx_r = 0; - __pyx_L0:; - __Pyx_XGIVEREF(__pyx_r); - __Pyx_RefNannyFinishContext(); - return __pyx_r; -} - -static PyObject *__pyx_tp_new_8pmercury_9protocols_3tls_TLS(PyTypeObject *t, CYTHON_UNUSED PyObject *a, CYTHON_UNUSED PyObject *k) { - struct __pyx_obj_8pmercury_9protocols_3tls_TLS *p; - PyObject *o; - if (likely((t->tp_flags & Py_TPFLAGS_IS_ABSTRACT) == 0)) { - o = (*t->tp_alloc)(t, 0); - } else { - o = (PyObject *) PyBaseObject_Type.tp_new(t, __pyx_empty_tuple, 0); - } - if (unlikely(!o)) return 0; - p = ((struct __pyx_obj_8pmercury_9protocols_3tls_TLS *)o); - p->tls_params_db = ((PyObject*)Py_None); Py_INCREF(Py_None); - p->fp_db = ((PyObject*)Py_None); Py_INCREF(Py_None); - p->app_families = ((PyObject*)Py_None); Py_INCREF(Py_None); - p->transition_probs = ((PyObject*)Py_None); Py_INCREF(Py_None); - p->aligner = Py_None; Py_INCREF(Py_None); - return o; -} - -static void __pyx_tp_dealloc_8pmercury_9protocols_3tls_TLS(PyObject *o) { - struct __pyx_obj_8pmercury_9protocols_3tls_TLS *p = (struct __pyx_obj_8pmercury_9protocols_3tls_TLS *)o; - #if CYTHON_USE_TP_FINALIZE - if (unlikely(PyType_HasFeature(Py_TYPE(o), Py_TPFLAGS_HAVE_FINALIZE) && Py_TYPE(o)->tp_finalize) && !_PyGC_FINALIZED(o)) { - if (PyObject_CallFinalizerFromDealloc(o)) return; - } - #endif - PyObject_GC_UnTrack(o); - Py_CLEAR(p->tls_params_db); - Py_CLEAR(p->fp_db); - Py_CLEAR(p->app_families); - Py_CLEAR(p->transition_probs); - Py_CLEAR(p->aligner); - (*Py_TYPE(o)->tp_free)(o); -} - -static int __pyx_tp_traverse_8pmercury_9protocols_3tls_TLS(PyObject *o, visitproc v, void *a) { - int e; - struct __pyx_obj_8pmercury_9protocols_3tls_TLS *p = (struct __pyx_obj_8pmercury_9protocols_3tls_TLS *)o; - if (p->tls_params_db) { - e = (*v)(p->tls_params_db, a); if (e) return e; - } - if (p->fp_db) { - e = (*v)(p->fp_db, a); if (e) return e; - } - if (p->app_families) { - e = (*v)(p->app_families, a); if (e) return e; - } - if (p->transition_probs) { - e = (*v)(p->transition_probs, a); if (e) return e; - } - if (p->aligner) { - e = (*v)(p->aligner, a); if (e) return e; - } - return 0; -} - -static int __pyx_tp_clear_8pmercury_9protocols_3tls_TLS(PyObject *o) { - PyObject* tmp; - struct __pyx_obj_8pmercury_9protocols_3tls_TLS *p = (struct __pyx_obj_8pmercury_9protocols_3tls_TLS *)o; - tmp = ((PyObject*)p->tls_params_db); - p->tls_params_db = ((PyObject*)Py_None); Py_INCREF(Py_None); - Py_XDECREF(tmp); - tmp = ((PyObject*)p->fp_db); - p->fp_db = ((PyObject*)Py_None); Py_INCREF(Py_None); - Py_XDECREF(tmp); - tmp = ((PyObject*)p->app_families); - p->app_families = ((PyObject*)Py_None); Py_INCREF(Py_None); - Py_XDECREF(tmp); - tmp = ((PyObject*)p->transition_probs); - p->transition_probs = ((PyObject*)Py_None); Py_INCREF(Py_None); - Py_XDECREF(tmp); - tmp = ((PyObject*)p->aligner); - p->aligner = Py_None; Py_INCREF(Py_None); - Py_XDECREF(tmp); - return 0; -} - -static PyMethodDef __pyx_methods_8pmercury_9protocols_3tls_TLS[] = { - {"load_database", (PyCFunction)__pyx_pw_8pmercury_9protocols_3tls_3TLS_3load_database, METH_O, 0}, - {"proto_identify", (PyCFunction)(void*)(PyCFunctionWithKeywords)__pyx_pw_8pmercury_9protocols_3tls_3TLS_5proto_identify, METH_VARARGS|METH_KEYWORDS, 0}, - {"fingerprint", (PyCFunction)(void*)(PyCFunctionWithKeywords)__pyx_pw_8pmercury_9protocols_3tls_3TLS_7fingerprint, METH_VARARGS|METH_KEYWORDS, 0}, - {"proc_identify", (PyCFunction)(void*)(PyCFunctionWithKeywords)__pyx_pw_8pmercury_9protocols_3tls_3TLS_9proc_identify, METH_VARARGS|METH_KEYWORDS, 0}, - {"identify", (PyCFunction)(void*)(PyCFunctionWithKeywords)__pyx_pw_8pmercury_9protocols_3tls_3TLS_11identify, METH_VARARGS|METH_KEYWORDS, 0}, - {"compute_score", (PyCFunction)(void*)(PyCFunctionWithKeywords)__pyx_pw_8pmercury_9protocols_3tls_3TLS_13compute_score, METH_VARARGS|METH_KEYWORDS, 0}, - {"get_database_entry", (PyCFunction)(void*)(PyCFunctionWithKeywords)__pyx_pw_8pmercury_9protocols_3tls_3TLS_15get_database_entry, METH_VARARGS|METH_KEYWORDS, 0}, - {"get_approx_fingerprint", (PyCFunction)__pyx_pw_8pmercury_9protocols_3tls_3TLS_17get_approx_fingerprint, METH_O, 0}, - {"find_approx_match", (PyCFunction)(void*)(PyCFunctionWithKeywords)__pyx_pw_8pmercury_9protocols_3tls_3TLS_19find_approx_match, METH_VARARGS|METH_KEYWORDS, 0}, - {"find_approximate_matches_set", (PyCFunction)(void*)(PyCFunctionWithKeywords)__pyx_pw_8pmercury_9protocols_3tls_3TLS_21find_approximate_matches_set, METH_VARARGS|METH_KEYWORDS, 0}, - {"gen_unknown_fingerprint", (PyCFunction)__pyx_pw_8pmercury_9protocols_3tls_3TLS_23gen_unknown_fingerprint, METH_O, 0}, - {"get_human_readable", (PyCFunction)__pyx_pw_8pmercury_9protocols_3tls_3TLS_25get_human_readable, METH_O, 0}, - {"os_identify", (PyCFunction)(void*)(PyCFunctionWithKeywords)__pyx_pw_8pmercury_9protocols_3tls_3TLS_27os_identify, METH_VARARGS|METH_KEYWORDS, 0}, - {"__reduce_cython__", (PyCFunction)__pyx_pw_8pmercury_9protocols_3tls_3TLS_29__reduce_cython__, METH_NOARGS, 0}, - {"__setstate_cython__", (PyCFunction)__pyx_pw_8pmercury_9protocols_3tls_3TLS_31__setstate_cython__, METH_O, 0}, - {0, 0, 0, 0} -}; - -static PyTypeObject __pyx_type_8pmercury_9protocols_3tls_TLS = { - PyVarObject_HEAD_INIT(0, 0) - "pmercury.protocols.tls.TLS", /*tp_name*/ - sizeof(struct __pyx_obj_8pmercury_9protocols_3tls_TLS), /*tp_basicsize*/ - 0, /*tp_itemsize*/ - __pyx_tp_dealloc_8pmercury_9protocols_3tls_TLS, /*tp_dealloc*/ - #if PY_VERSION_HEX < 0x030800b4 - 0, /*tp_print*/ - #endif - #if PY_VERSION_HEX >= 0x030800b4 - 0, /*tp_vectorcall_offset*/ - #endif - 0, /*tp_getattr*/ - 0, /*tp_setattr*/ - #if PY_MAJOR_VERSION < 3 - 0, /*tp_compare*/ - #endif - #if PY_MAJOR_VERSION >= 3 - 0, /*tp_as_async*/ - #endif - 0, /*tp_repr*/ - 0, /*tp_as_number*/ - 0, /*tp_as_sequence*/ - 0, /*tp_as_mapping*/ - 0, /*tp_hash*/ - 0, /*tp_call*/ - 0, /*tp_str*/ - 0, /*tp_getattro*/ - 0, /*tp_setattro*/ - 0, /*tp_as_buffer*/ - Py_TPFLAGS_DEFAULT|Py_TPFLAGS_HAVE_VERSION_TAG|Py_TPFLAGS_CHECKTYPES|Py_TPFLAGS_HAVE_NEWBUFFER|Py_TPFLAGS_BASETYPE|Py_TPFLAGS_HAVE_GC, /*tp_flags*/ - 0, /*tp_doc*/ - __pyx_tp_traverse_8pmercury_9protocols_3tls_TLS, /*tp_traverse*/ - __pyx_tp_clear_8pmercury_9protocols_3tls_TLS, /*tp_clear*/ - 0, /*tp_richcompare*/ - 0, /*tp_weaklistoffset*/ - 0, /*tp_iter*/ - 0, /*tp_iternext*/ - __pyx_methods_8pmercury_9protocols_3tls_TLS, /*tp_methods*/ - 0, /*tp_members*/ - 0, /*tp_getset*/ - 0, /*tp_base*/ - 0, /*tp_dict*/ - 0, /*tp_descr_get*/ - 0, /*tp_descr_set*/ - 0, /*tp_dictoffset*/ - __pyx_pw_8pmercury_9protocols_3tls_3TLS_1__init__, /*tp_init*/ - 0, /*tp_alloc*/ - __pyx_tp_new_8pmercury_9protocols_3tls_TLS, /*tp_new*/ - 0, /*tp_free*/ - 0, /*tp_is_gc*/ - 0, /*tp_bases*/ - 0, /*tp_mro*/ - 0, /*tp_cache*/ - 0, /*tp_subclasses*/ - 0, /*tp_weaklist*/ - 0, /*tp_del*/ - 0, /*tp_version_tag*/ - #if PY_VERSION_HEX >= 0x030400a1 - 0, /*tp_finalize*/ - #endif - #if PY_VERSION_HEX >= 0x030800b1 - 0, /*tp_vectorcall*/ - #endif - #if PY_VERSION_HEX >= 0x030800b4 && PY_VERSION_HEX < 0x03090000 - 0, /*tp_print*/ - #endif -}; - -static PyMethodDef __pyx_methods[] = { - {0, 0, 0, 0} -}; - -static int __pyx_import_star_set(PyObject *o, PyObject* py_name, char *name) { - static const char* internal_type_names[] = { - "TLS", - "__pyx_ctuple_Py_ssize_t", - "__pyx_ctuple_Py_ssize_t_struct", - "__pyx_ctuple_long", - "__pyx_ctuple_long__and_Py_ssize_t", - "__pyx_ctuple_long__and_Py_ssize_t_struct", - "__pyx_ctuple_long_struct", - "uint16_t", - "uint32_t", - "uint64_t", - "uint8_t", - 0 - }; - const char** type_name = internal_type_names; - while (*type_name) { - if (__Pyx_StrEq(name, *type_name)) { - PyErr_Format(PyExc_TypeError, "Cannot overwrite C type %s", name); - goto bad; - } - type_name++; - } - if (0); - else { - if (PyObject_SetAttr(__pyx_m, py_name, o) < 0) goto bad; - } - return 0; - bad: - return -1; -} - -static int -__Pyx_import_all_from(PyObject *locals, PyObject *v) -{ - PyObject *all = PyObject_GetAttrString(v, "__all__"); - PyObject *dict, *name, *value; - int skip_leading_underscores = 0; - int pos, err; - if (all == NULL) { - if (!PyErr_ExceptionMatches(PyExc_AttributeError)) - return -1; - PyErr_Clear(); - dict = PyObject_GetAttrString(v, "__dict__"); - if (dict == NULL) { - if (!PyErr_ExceptionMatches(PyExc_AttributeError)) - return -1; - PyErr_SetString(PyExc_ImportError, - "from-import-* object has no __dict__ and no __all__"); - return -1; - } -#if PY_MAJOR_VERSION < 3 - all = PyObject_CallMethod(dict, (char *)"keys", NULL); -#else - all = PyMapping_Keys(dict); -#endif - Py_DECREF(dict); - if (all == NULL) - return -1; - skip_leading_underscores = 1; - } - for (pos = 0, err = 0; ; pos++) { - name = PySequence_GetItem(all, pos); - if (name == NULL) { - if (!PyErr_ExceptionMatches(PyExc_IndexError)) - err = -1; - else - PyErr_Clear(); - break; - } - if (skip_leading_underscores && -#if PY_MAJOR_VERSION < 3 - PyString_Check(name) && - PyString_AS_STRING(name)[0] == '_') -#else - PyUnicode_Check(name) && - PyUnicode_AS_UNICODE(name)[0] == '_') -#endif - { - Py_DECREF(name); - continue; - } - value = PyObject_GetAttr(v, name); - if (value == NULL) - err = -1; - else if (PyDict_CheckExact(locals)) - err = PyDict_SetItem(locals, name, value); - else - err = PyObject_SetItem(locals, name, value); - Py_DECREF(name); - Py_XDECREF(value); - if (err != 0) - break; - } - Py_DECREF(all); - return err; -} -static int __pyx_import_star(PyObject* m) { - int i; - int ret = -1; - char* s; - PyObject *locals = 0; - PyObject *list = 0; -#if PY_MAJOR_VERSION >= 3 - PyObject *utf8_name = 0; -#endif - PyObject *name; - PyObject *item; - locals = PyDict_New(); if (!locals) goto bad; - if (__Pyx_import_all_from(locals, m) < 0) goto bad; - list = PyDict_Items(locals); if (!list) goto bad; - for(i=0; i= 3 - utf8_name = PyUnicode_AsUTF8String(name); - if (!utf8_name) goto bad; - s = PyBytes_AS_STRING(utf8_name); - if (__pyx_import_star_set(item, name, s) < 0) goto bad; - Py_DECREF(utf8_name); utf8_name = 0; -#else - s = PyString_AsString(name); - if (!s) goto bad; - if (__pyx_import_star_set(item, name, s) < 0) goto bad; -#endif - } - ret = 0; -bad: - Py_XDECREF(locals); - Py_XDECREF(list); -#if PY_MAJOR_VERSION >= 3 - Py_XDECREF(utf8_name); -#endif - return ret; -} - - - -#if PY_MAJOR_VERSION >= 3 -#if CYTHON_PEP489_MULTI_PHASE_INIT -static PyObject* __pyx_pymod_create(PyObject *spec, PyModuleDef *def); /*proto*/ -static int __pyx_pymod_exec_tls(PyObject* module); /*proto*/ -static PyModuleDef_Slot __pyx_moduledef_slots[] = { - {Py_mod_create, (void*)__pyx_pymod_create}, - {Py_mod_exec, (void*)__pyx_pymod_exec_tls}, - {0, NULL} -}; -#endif - -static struct PyModuleDef __pyx_moduledef = { - PyModuleDef_HEAD_INIT, - "tls", - __pyx_k_Copyright_c_2019_Cisco_Systems, /* m_doc */ - #if CYTHON_PEP489_MULTI_PHASE_INIT - 0, /* m_size */ - #else - -1, /* m_size */ - #endif - __pyx_methods /* m_methods */, - #if CYTHON_PEP489_MULTI_PHASE_INIT - __pyx_moduledef_slots, /* m_slots */ - #else - NULL, /* m_reload */ - #endif - NULL, /* m_traverse */ - NULL, /* m_clear */ - NULL /* m_free */ -}; -#endif -#ifndef CYTHON_SMALL_CODE -#if defined(__clang__) - #define CYTHON_SMALL_CODE -#elif defined(__GNUC__) && (__GNUC__ > 4 || (__GNUC__ == 4 && __GNUC_MINOR__ >= 3)) - #define CYTHON_SMALL_CODE __attribute__((cold)) -#else - #define CYTHON_SMALL_CODE -#endif -#endif - -static __Pyx_StringTabEntry __pyx_string_tab[] = { - {&__pyx_kp_u_, __pyx_k_, sizeof(__pyx_k_), 0, 1, 0, 0}, - {&__pyx_kp_u_02x, __pyx_k_02x, sizeof(__pyx_k_02x), 0, 1, 0, 0}, - {&__pyx_kp_u_Generic_DMZ_Traffic, __pyx_k_Generic_DMZ_Traffic, sizeof(__pyx_k_Generic_DMZ_Traffic), 0, 1, 0, 0}, - {&__pyx_kp_s_Incompatible_checksums_s_vs_0xf1, __pyx_k_Incompatible_checksums_s_vs_0xf1, sizeof(__pyx_k_Incompatible_checksums_s_vs_0xf1), 0, 0, 1, 0}, - {&__pyx_n_s_KeyError, __pyx_k_KeyError, sizeof(__pyx_k_KeyError), 0, 0, 1, 1}, - {&__pyx_n_s_MAX_CACHED_RESULTS, __pyx_k_MAX_CACHED_RESULTS, sizeof(__pyx_k_MAX_CACHED_RESULTS), 0, 0, 1, 1}, - {&__pyx_n_s_PickleError, __pyx_k_PickleError, sizeof(__pyx_k_PickleError), 0, 0, 1, 1}, - {&__pyx_n_s_SequenceAlignment, __pyx_k_SequenceAlignment, sizeof(__pyx_k_SequenceAlignment), 0, 0, 1, 1}, - {&__pyx_n_s_TLS, __pyx_k_TLS, sizeof(__pyx_k_TLS), 0, 0, 1, 1}, - {&__pyx_n_u_Unknown, __pyx_k_Unknown, sizeof(__pyx_k_Unknown), 0, 1, 0, 1}, - {&__pyx_kp_u__2, __pyx_k__2, sizeof(__pyx_k__2), 0, 1, 0, 0}, - {&__pyx_kp_u__3, __pyx_k__3, sizeof(__pyx_k__3), 0, 1, 0, 0}, - {&__pyx_kp_u__5, __pyx_k__5, sizeof(__pyx_k__5), 0, 1, 0, 0}, - {&__pyx_kp_u__6, __pyx_k__6, sizeof(__pyx_k__6), 0, 1, 0, 0}, - {&__pyx_kp_u__7, __pyx_k__7, sizeof(__pyx_k__7), 0, 1, 0, 0}, - {&__pyx_n_s__8, __pyx_k__8, sizeof(__pyx_k__8), 0, 0, 1, 1}, - {&__pyx_n_s_abspath, __pyx_k_abspath, sizeof(__pyx_k_abspath), 0, 0, 1, 1}, - {&__pyx_n_s_align, __pyx_k_align, sizeof(__pyx_k_align), 0, 0, 1, 1}, - {&__pyx_n_u_analysis, __pyx_k_analysis, sizeof(__pyx_k_analysis), 0, 1, 0, 1}, - {&__pyx_n_s_append, __pyx_k_append, sizeof(__pyx_k_append), 0, 0, 1, 1}, - {&__pyx_n_u_application_category, __pyx_k_application_category, sizeof(__pyx_k_application_category), 0, 1, 0, 1}, - {&__pyx_n_s_approx, __pyx_k_approx, sizeof(__pyx_k_approx), 0, 0, 1, 1}, - {&__pyx_n_s_approx_fp_str, __pyx_k_approx_fp_str, sizeof(__pyx_k_approx_fp_str), 0, 0, 1, 1}, - {&__pyx_n_u_approx_str, __pyx_k_approx_str, sizeof(__pyx_k_approx_str), 0, 1, 0, 1}, - {&__pyx_n_s_buf, __pyx_k_buf, sizeof(__pyx_k_buf), 0, 0, 1, 1}, - {&__pyx_n_s_buffering, __pyx_k_buffering, sizeof(__pyx_k_buffering), 0, 0, 1, 1}, - {&__pyx_n_s_c, __pyx_k_c, sizeof(__pyx_k_c), 0, 0, 1, 1}, - {&__pyx_n_u_category, __pyx_k_category, sizeof(__pyx_k_category), 0, 1, 0, 1}, - {&__pyx_n_u_cipher_suites, __pyx_k_cipher_suites, sizeof(__pyx_k_cipher_suites), 0, 1, 0, 1}, - {&__pyx_n_s_cipher_suites_length, __pyx_k_cipher_suites_length, sizeof(__pyx_k_cipher_suites_length), 0, 0, 1, 1}, - {&__pyx_n_u_classes_hostname_domains, __pyx_k_classes_hostname_domains, sizeof(__pyx_k_classes_hostname_domains), 0, 1, 0, 1}, - {&__pyx_n_u_classes_hostname_sni, __pyx_k_classes_hostname_sni, sizeof(__pyx_k_classes_hostname_sni), 0, 1, 0, 1}, - {&__pyx_n_u_classes_hostname_tlds, __pyx_k_classes_hostname_tlds, sizeof(__pyx_k_classes_hostname_tlds), 0, 1, 0, 1}, - {&__pyx_n_u_classes_ip_as, __pyx_k_classes_ip_as, sizeof(__pyx_k_classes_ip_as), 0, 1, 0, 1}, - {&__pyx_n_u_classes_ip_ip, __pyx_k_classes_ip_ip, sizeof(__pyx_k_classes_ip_ip), 0, 1, 0, 1}, - {&__pyx_n_u_classes_port_applications, __pyx_k_classes_port_applications, sizeof(__pyx_k_classes_port_applications), 0, 1, 0, 1}, - {&__pyx_n_s_cline_in_traceback, __pyx_k_cline_in_traceback, sizeof(__pyx_k_cline_in_traceback), 0, 0, 1, 1}, - {&__pyx_n_s_compression_methods_length, __pyx_k_compression_methods_length, sizeof(__pyx_k_compression_methods_length), 0, 0, 1, 1}, - {&__pyx_n_s_compute_score, __pyx_k_compute_score, sizeof(__pyx_k_compute_score), 0, 0, 1, 1}, - {&__pyx_n_s_config, __pyx_k_config, sizeof(__pyx_k_config), 0, 0, 1, 1}, - {&__pyx_n_s_context, __pyx_k_context, sizeof(__pyx_k_context), 0, 0, 1, 1}, - {&__pyx_n_s_context_2, __pyx_k_context_2, sizeof(__pyx_k_context_2), 0, 0, 1, 1}, - {&__pyx_n_u_count, __pyx_k_count, sizeof(__pyx_k_count), 0, 1, 0, 1}, - {&__pyx_n_s_cs, __pyx_k_cs, sizeof(__pyx_k_cs), 0, 0, 1, 1}, - {&__pyx_n_s_data, __pyx_k_data, sizeof(__pyx_k_data), 0, 0, 1, 1}, - {&__pyx_n_u_data, __pyx_k_data, sizeof(__pyx_k_data), 0, 1, 0, 1}, - {&__pyx_n_s_data_len, __pyx_k_data_len, sizeof(__pyx_k_data_len), 0, 0, 1, 1}, - {&__pyx_n_s_degrease_type_code, __pyx_k_degrease_type_code, sizeof(__pyx_k_degrease_type_code), 0, 0, 1, 1}, - {&__pyx_n_s_dest_addr, __pyx_k_dest_addr, sizeof(__pyx_k_dest_addr), 0, 0, 1, 1}, - {&__pyx_n_s_dest_port, __pyx_k_dest_port, sizeof(__pyx_k_dest_port), 0, 0, 1, 1}, - {&__pyx_n_s_dict, __pyx_k_dict, sizeof(__pyx_k_dict), 0, 0, 1, 1}, - {&__pyx_n_s_dirname, __pyx_k_dirname, sizeof(__pyx_k_dirname), 0, 0, 1, 1}, - {&__pyx_n_u_domain_mean, __pyx_k_domain_mean, sizeof(__pyx_k_domain_mean), 0, 1, 0, 1}, - {&__pyx_n_s_endpoint, __pyx_k_endpoint, sizeof(__pyx_k_endpoint), 0, 0, 1, 1}, - {&__pyx_n_u_error, __pyx_k_error, sizeof(__pyx_k_error), 0, 1, 0, 1}, - {&__pyx_n_s_eval_fp_str, __pyx_k_eval_fp_str, sizeof(__pyx_k_eval_fp_str), 0, 0, 1, 1}, - {&__pyx_n_s_ext_len, __pyx_k_ext_len, sizeof(__pyx_k_ext_len), 0, 0, 1, 1}, - {&__pyx_n_s_ext_total_len, __pyx_k_ext_total_len, sizeof(__pyx_k_ext_total_len), 0, 0, 1, 1}, - {&__pyx_n_u_extensions, __pyx_k_extensions, sizeof(__pyx_k_extensions), 0, 1, 0, 1}, - {&__pyx_n_s_extract_server_name, __pyx_k_extract_server_name, sizeof(__pyx_k_extract_server_name), 0, 0, 1, 1}, - {&__pyx_n_s_f_similarity, __pyx_k_f_similarity, sizeof(__pyx_k_f_similarity), 0, 0, 1, 1}, - {&__pyx_n_s_features, __pyx_k_features, sizeof(__pyx_k_features), 0, 0, 1, 1}, - {&__pyx_n_s_file, __pyx_k_file, sizeof(__pyx_k_file), 0, 0, 1, 1}, - {&__pyx_n_s_find_approx_match, __pyx_k_find_approx_match, sizeof(__pyx_k_find_approx_match), 0, 0, 1, 1}, - {&__pyx_n_s_find_approximate_matches_set, __pyx_k_find_approximate_matches_set, sizeof(__pyx_k_find_approximate_matches_set), 0, 0, 1, 1}, - {&__pyx_n_s_find_resource_path, __pyx_k_find_resource_path, sizeof(__pyx_k_find_resource_path), 0, 0, 1, 1}, - {&__pyx_n_s_fingerprint, __pyx_k_fingerprint, sizeof(__pyx_k_fingerprint), 0, 0, 1, 1}, - {&__pyx_kp_u_fingerprint_string_parsing_error, __pyx_k_fingerprint_string_parsing_error, sizeof(__pyx_k_fingerprint_string_parsing_error), 0, 1, 0, 0}, - {&__pyx_n_s_fp_database, __pyx_k_fp_database, sizeof(__pyx_k_fp_database), 0, 0, 1, 1}, - {&__pyx_n_s_fp_str, __pyx_k_fp_str, sizeof(__pyx_k_fp_str), 0, 0, 1, 1}, - {&__pyx_n_s_fp_str_2, __pyx_k_fp_str_2, sizeof(__pyx_k_fp_str_2), 0, 0, 1, 1}, - {&__pyx_n_s_fp_tc, __pyx_k_fp_tc, sizeof(__pyx_k_fp_tc), 0, 0, 1, 1}, - {&__pyx_n_s_functools, __pyx_k_functools, sizeof(__pyx_k_functools), 0, 0, 1, 1}, - {&__pyx_n_s_gen_unknown_fingerprint, __pyx_k_gen_unknown_fingerprint, sizeof(__pyx_k_gen_unknown_fingerprint), 0, 0, 1, 1}, - {&__pyx_n_s_get_approx_fingerprint, __pyx_k_get_approx_fingerprint, sizeof(__pyx_k_get_approx_fingerprint), 0, 0, 1, 1}, - {&__pyx_n_s_get_asn_info, __pyx_k_get_asn_info, sizeof(__pyx_k_get_asn_info), 0, 0, 1, 1}, - {&__pyx_n_s_get_cs_from_str, __pyx_k_get_cs_from_str, sizeof(__pyx_k_get_cs_from_str), 0, 0, 1, 1}, - {&__pyx_n_s_get_database_entry, __pyx_k_get_database_entry, sizeof(__pyx_k_get_database_entry), 0, 0, 1, 1}, - {&__pyx_n_s_get_ext_from_str, __pyx_k_get_ext_from_str, sizeof(__pyx_k_get_ext_from_str), 0, 0, 1, 1}, - {&__pyx_n_s_get_implementation_date, __pyx_k_get_implementation_date, sizeof(__pyx_k_get_implementation_date), 0, 0, 1, 1}, - {&__pyx_n_s_get_os, __pyx_k_get_os, sizeof(__pyx_k_get_os), 0, 0, 1, 1}, - {&__pyx_n_s_get_port_application, __pyx_k_get_port_application, sizeof(__pyx_k_get_port_application), 0, 0, 1, 1}, - {&__pyx_n_s_get_sequence, __pyx_k_get_sequence, sizeof(__pyx_k_get_sequence), 0, 0, 1, 1}, - {&__pyx_n_s_get_tld_info, __pyx_k_get_tld_info, sizeof(__pyx_k_get_tld_info), 0, 0, 1, 1}, - {&__pyx_n_s_get_tls_params, __pyx_k_get_tls_params, sizeof(__pyx_k_get_tls_params), 0, 0, 1, 1}, - {&__pyx_n_s_get_version_from_str, __pyx_k_get_version_from_str, sizeof(__pyx_k_get_version_from_str), 0, 0, 1, 1}, - {&__pyx_n_s_getstate, __pyx_k_getstate, sizeof(__pyx_k_getstate), 0, 0, 1, 1}, - {&__pyx_n_s_hex, __pyx_k_hex, sizeof(__pyx_k_hex), 0, 0, 1, 1}, - {&__pyx_n_s_identify, __pyx_k_identify, sizeof(__pyx_k_identify), 0, 0, 1, 1}, - {&__pyx_n_s_import, __pyx_k_import, sizeof(__pyx_k_import), 0, 0, 1, 1}, - {&__pyx_n_s_intersection, __pyx_k_intersection, sizeof(__pyx_k_intersection), 0, 0, 1, 1}, - {&__pyx_n_s_itemgetter, __pyx_k_itemgetter, sizeof(__pyx_k_itemgetter), 0, 0, 1, 1}, - {&__pyx_n_s_json, __pyx_k_json, sizeof(__pyx_k_json), 0, 0, 1, 1}, - {&__pyx_n_s_key, __pyx_k_key, sizeof(__pyx_k_key), 0, 0, 1, 1}, - {&__pyx_n_s_key_filter, __pyx_k_key_filter, sizeof(__pyx_k_key_filter), 0, 0, 1, 1}, - {&__pyx_n_s_keys, __pyx_k_keys, sizeof(__pyx_k_keys), 0, 0, 1, 1}, - {&__pyx_n_s_list_oses, __pyx_k_list_oses, sizeof(__pyx_k_list_oses), 0, 0, 1, 1}, - {&__pyx_n_s_list_procs, __pyx_k_list_procs, sizeof(__pyx_k_list_procs), 0, 0, 1, 1}, - {&__pyx_n_s_load_database, __pyx_k_load_database, sizeof(__pyx_k_load_database), 0, 0, 1, 1}, - {&__pyx_n_s_loads, __pyx_k_loads, sizeof(__pyx_k_loads), 0, 0, 1, 1}, - {&__pyx_n_s_lru_cache, __pyx_k_lru_cache, sizeof(__pyx_k_lru_cache), 0, 0, 1, 1}, - {&__pyx_n_s_main, __pyx_k_main, sizeof(__pyx_k_main), 0, 0, 1, 1}, - {&__pyx_n_u_malware, __pyx_k_malware, sizeof(__pyx_k_malware), 0, 1, 0, 1}, - {&__pyx_n_u_max_implementation_date, __pyx_k_max_implementation_date, sizeof(__pyx_k_max_implementation_date), 0, 1, 0, 1}, - {&__pyx_n_s_maxsize, __pyx_k_maxsize, sizeof(__pyx_k_maxsize), 0, 0, 1, 1}, - {&__pyx_n_u_min_implementation_date, __pyx_k_min_implementation_date, sizeof(__pyx_k_min_implementation_date), 0, 1, 0, 1}, - {&__pyx_n_s_mode, __pyx_k_mode, sizeof(__pyx_k_mode), 0, 0, 1, 1}, - {&__pyx_n_u_name, __pyx_k_name, sizeof(__pyx_k_name), 0, 1, 0, 1}, - {&__pyx_n_s_name_2, __pyx_k_name_2, sizeof(__pyx_k_name_2), 0, 0, 1, 1}, - {&__pyx_n_s_new, __pyx_k_new, sizeof(__pyx_k_new), 0, 0, 1, 1}, - {&__pyx_n_s_offset, __pyx_k_offset, sizeof(__pyx_k_offset), 0, 0, 1, 1}, - {&__pyx_n_s_open, __pyx_k_open, sizeof(__pyx_k_open), 0, 0, 1, 1}, - {&__pyx_n_s_operator, __pyx_k_operator, sizeof(__pyx_k_operator), 0, 0, 1, 1}, - {&__pyx_n_s_os, __pyx_k_os, sizeof(__pyx_k_os), 0, 0, 1, 1}, - {&__pyx_n_s_os_identify, __pyx_k_os_identify, sizeof(__pyx_k_os_identify), 0, 0, 1, 1}, - {&__pyx_n_u_os_info, __pyx_k_os_info, sizeof(__pyx_k_os_info), 0, 1, 0, 1}, - {&__pyx_n_s_p, __pyx_k_p, sizeof(__pyx_k_p), 0, 0, 1, 1}, - {&__pyx_n_u_p_malware, __pyx_k_p_malware, sizeof(__pyx_k_p_malware), 0, 1, 0, 1}, - {&__pyx_n_s_parse_extension, __pyx_k_parse_extension, sizeof(__pyx_k_parse_extension), 0, 0, 1, 1}, - {&__pyx_n_s_path, __pyx_k_path, sizeof(__pyx_k_path), 0, 0, 1, 1}, - {&__pyx_n_s_pickle, __pyx_k_pickle, sizeof(__pyx_k_pickle), 0, 0, 1, 1}, - {&__pyx_n_s_pmercury_protocols_tls, __pyx_k_pmercury_protocols_tls, sizeof(__pyx_k_pmercury_protocols_tls), 0, 0, 1, 1}, - {&__pyx_n_s_pmercury_utils_contextual_info, __pyx_k_pmercury_utils_contextual_info, sizeof(__pyx_k_pmercury_utils_contextual_info), 0, 0, 1, 1}, - {&__pyx_n_s_pmercury_utils_pmercury_utils, __pyx_k_pmercury_utils_pmercury_utils, sizeof(__pyx_k_pmercury_utils_pmercury_utils), 0, 0, 1, 1}, - {&__pyx_n_s_pmercury_utils_sequence_alignmen, __pyx_k_pmercury_utils_sequence_alignmen, sizeof(__pyx_k_pmercury_utils_sequence_alignmen), 0, 0, 1, 1}, - {&__pyx_n_s_pmercury_utils_tls_constants, __pyx_k_pmercury_utils_tls_constants, sizeof(__pyx_k_pmercury_utils_tls_constants), 0, 0, 1, 1}, - {&__pyx_n_s_pmercury_utils_tls_utils, __pyx_k_pmercury_utils_tls_utils, sizeof(__pyx_k_pmercury_utils_tls_utils), 0, 0, 1, 1}, - {&__pyx_n_s_pop, __pyx_k_pop, sizeof(__pyx_k_pop), 0, 0, 1, 1}, - {&__pyx_n_s_popen, __pyx_k_popen, sizeof(__pyx_k_popen), 0, 0, 1, 1}, - {&__pyx_n_s_prev_flow, __pyx_k_prev_flow, sizeof(__pyx_k_prev_flow), 0, 0, 1, 1}, - {&__pyx_n_u_probable_processes, __pyx_k_probable_processes, sizeof(__pyx_k_probable_processes), 0, 1, 0, 1}, - {&__pyx_n_u_process, __pyx_k_process, sizeof(__pyx_k_process), 0, 1, 0, 1}, - {&__pyx_n_u_process_info, __pyx_k_process_info, sizeof(__pyx_k_process_info), 0, 1, 0, 1}, - {&__pyx_n_s_proto_identify, __pyx_k_proto_identify, sizeof(__pyx_k_proto_identify), 0, 0, 1, 1}, - {&__pyx_n_s_pyx_PickleError, __pyx_k_pyx_PickleError, sizeof(__pyx_k_pyx_PickleError), 0, 0, 1, 1}, - {&__pyx_n_s_pyx_checksum, __pyx_k_pyx_checksum, sizeof(__pyx_k_pyx_checksum), 0, 0, 1, 1}, - {&__pyx_n_s_pyx_result, __pyx_k_pyx_result, sizeof(__pyx_k_pyx_result), 0, 0, 1, 1}, - {&__pyx_n_s_pyx_state, __pyx_k_pyx_state, sizeof(__pyx_k_pyx_state), 0, 0, 1, 1}, - {&__pyx_n_s_pyx_type, __pyx_k_pyx_type, sizeof(__pyx_k_pyx_type), 0, 0, 1, 1}, - {&__pyx_n_s_pyx_unpickle_TLS, __pyx_k_pyx_unpickle_TLS, sizeof(__pyx_k_pyx_unpickle_TLS), 0, 0, 1, 1}, - {&__pyx_n_u_r, __pyx_k_r, sizeof(__pyx_k_r), 0, 1, 0, 1}, - {&__pyx_n_s_range, __pyx_k_range, sizeof(__pyx_k_range), 0, 0, 1, 1}, - {&__pyx_n_s_reduce, __pyx_k_reduce, sizeof(__pyx_k_reduce), 0, 0, 1, 1}, - {&__pyx_n_s_reduce_cython, __pyx_k_reduce_cython, sizeof(__pyx_k_reduce_cython), 0, 0, 1, 1}, - {&__pyx_n_s_reduce_ex, __pyx_k_reduce_ex, sizeof(__pyx_k_reduce_ex), 0, 0, 1, 1}, - {&__pyx_kp_u_resources_app_families_txt, __pyx_k_resources_app_families_txt, sizeof(__pyx_k_resources_app_families_txt), 0, 1, 0, 0}, - {&__pyx_kp_u_resources_fingerprint_db_json_gz, __pyx_k_resources_fingerprint_db_json_gz, sizeof(__pyx_k_resources_fingerprint_db_json_gz), 0, 1, 0, 0}, - {&__pyx_kp_u_resources_transition_probs_csv_g, __pyx_k_resources_transition_probs_csv_g, sizeof(__pyx_k_resources_transition_probs_csv_g), 0, 1, 0, 0}, - {&__pyx_n_s_reverse, __pyx_k_reverse, sizeof(__pyx_k_reverse), 0, 0, 1, 1}, - {&__pyx_kp_u_s, __pyx_k_s, sizeof(__pyx_k_s), 0, 1, 0, 0}, - {&__pyx_n_u_score, __pyx_k_score, sizeof(__pyx_k_score), 0, 1, 0, 1}, - {&__pyx_n_s_server_name, __pyx_k_server_name, sizeof(__pyx_k_server_name), 0, 0, 1, 1}, - {&__pyx_n_u_server_name, __pyx_k_server_name, sizeof(__pyx_k_server_name), 0, 1, 0, 1}, - {&__pyx_n_s_session_id_length, __pyx_k_session_id_length, sizeof(__pyx_k_session_id_length), 0, 0, 1, 1}, - {&__pyx_n_s_setstate, __pyx_k_setstate, sizeof(__pyx_k_setstate), 0, 0, 1, 1}, - {&__pyx_n_s_setstate_cython, __pyx_k_setstate_cython, sizeof(__pyx_k_setstate_cython), 0, 0, 1, 1}, - {&__pyx_n_u_sha256, __pyx_k_sha256, sizeof(__pyx_k_sha256), 0, 1, 0, 1}, - {&__pyx_n_s_sorted, __pyx_k_sorted, sizeof(__pyx_k_sorted), 0, 0, 1, 1}, - {&__pyx_n_u_source, __pyx_k_source, sizeof(__pyx_k_source), 0, 1, 0, 1}, - {&__pyx_n_s_source_filter, __pyx_k_source_filter, sizeof(__pyx_k_source_filter), 0, 0, 1, 1}, - {&__pyx_n_s_split, __pyx_k_split, sizeof(__pyx_k_split), 0, 0, 1, 1}, - {&__pyx_n_s_staticmethod, __pyx_k_staticmethod, sizeof(__pyx_k_staticmethod), 0, 0, 1, 1}, - {&__pyx_n_u_str_repr, __pyx_k_str_repr, sizeof(__pyx_k_str_repr), 0, 1, 0, 1}, - {&__pyx_kp_s_stringsource, __pyx_k_stringsource, sizeof(__pyx_k_stringsource), 0, 0, 1, 0}, - {&__pyx_n_s_strip, __pyx_k_strip, sizeof(__pyx_k_strip), 0, 0, 1, 1}, - {&__pyx_n_s_sum, __pyx_k_sum, sizeof(__pyx_k_sum), 0, 0, 1, 1}, - {&__pyx_n_s_sys, __pyx_k_sys, sizeof(__pyx_k_sys), 0, 0, 1, 1}, - {&__pyx_n_s_test, __pyx_k_test, sizeof(__pyx_k_test), 0, 0, 1, 1}, - {&__pyx_n_s_tls_features, __pyx_k_tls_features, sizeof(__pyx_k_tls_features), 0, 0, 1, 1}, - {&__pyx_n_s_tls_params, __pyx_k_tls_params, sizeof(__pyx_k_tls_params), 0, 0, 1, 1}, - {&__pyx_kp_s_tls_pyx, __pyx_k_tls_pyx, sizeof(__pyx_k_tls_pyx), 0, 0, 1, 0}, - {&__pyx_n_s_tmp_fp_ext, __pyx_k_tmp_fp_ext, sizeof(__pyx_k_tmp_fp_ext), 0, 0, 1, 1}, - {&__pyx_n_u_total_count, __pyx_k_total_count, sizeof(__pyx_k_total_count), 0, 1, 0, 1}, - {&__pyx_n_s_union, __pyx_k_union, sizeof(__pyx_k_union), 0, 0, 1, 1}, - {&__pyx_n_s_update, __pyx_k_update, sizeof(__pyx_k_update), 0, 0, 1, 1}, - {&__pyx_n_u_version, __pyx_k_version, sizeof(__pyx_k_version), 0, 1, 0, 1}, - {&__pyx_kp_u_zcat_s, __pyx_k_zcat_s, sizeof(__pyx_k_zcat_s), 0, 1, 0, 0}, - {0, 0, 0, 0, 0, 0, 0} -}; -static CYTHON_SMALL_CODE int __Pyx_InitCachedBuiltins(void) { - __pyx_builtin_staticmethod = __Pyx_GetBuiltinName(__pyx_n_s_staticmethod); if (!__pyx_builtin_staticmethod) __PYX_ERR(0, 106, __pyx_L1_error) - __pyx_builtin_open = __Pyx_GetBuiltinName(__pyx_n_s_open); if (!__pyx_builtin_open) __PYX_ERR(0, 79, __pyx_L1_error) - __pyx_builtin_range = __Pyx_GetBuiltinName(__pyx_n_s_range); if (!__pyx_builtin_range) __PYX_ERR(0, 81, __pyx_L1_error) - __pyx_builtin_sorted = __Pyx_GetBuiltinName(__pyx_n_s_sorted); if (!__pyx_builtin_sorted) __PYX_ERR(0, 238, __pyx_L1_error) - __pyx_builtin_sum = __Pyx_GetBuiltinName(__pyx_n_s_sum); if (!__pyx_builtin_sum) __PYX_ERR(0, 260, __pyx_L1_error) - __pyx_builtin_KeyError = __Pyx_GetBuiltinName(__pyx_n_s_KeyError); if (!__pyx_builtin_KeyError) __PYX_ERR(0, 324, __pyx_L1_error) - return 0; - __pyx_L1_error:; - return -1; -} - -static CYTHON_SMALL_CODE int __Pyx_InitCachedConstants(void) { - __Pyx_RefNannyDeclarations - __Pyx_RefNannySetupContext("__Pyx_InitCachedConstants", 0); - - /* "pmercury/protocols/tls.pyx":135 - * offset += 1 + session_id_length - * if offset >= data_len: - * return None, None # <<<<<<<<<<<<<< - * - * # parse/extract/skip cipher_suites length - */ - __pyx_tuple__4 = PyTuple_Pack(2, Py_None, Py_None); if (unlikely(!__pyx_tuple__4)) __PYX_ERR(0, 135, __pyx_L1_error) - __Pyx_GOTREF(__pyx_tuple__4); - __Pyx_GIVEREF(__pyx_tuple__4); - - /* "pmercury/protocols/tls.pyx":107 - * - * @staticmethod - * def proto_identify(data, offset, data_len): # <<<<<<<<<<<<<< - * if data_len-offset < 16: - * return False - */ - __pyx_tuple__9 = PyTuple_Pack(3, __pyx_n_s_data, __pyx_n_s_offset, __pyx_n_s_data_len); if (unlikely(!__pyx_tuple__9)) __PYX_ERR(0, 107, __pyx_L1_error) - __Pyx_GOTREF(__pyx_tuple__9); - __Pyx_GIVEREF(__pyx_tuple__9); - __pyx_codeobj__10 = (PyObject*)__Pyx_PyCode_New(3, 0, 3, 0, CO_OPTIMIZED|CO_NEWLOCALS, __pyx_empty_bytes, __pyx_empty_tuple, __pyx_empty_tuple, __pyx_tuple__9, __pyx_empty_tuple, __pyx_empty_tuple, __pyx_kp_s_tls_pyx, __pyx_n_s_proto_identify, 107, __pyx_empty_bytes); if (unlikely(!__pyx_codeobj__10)) __PYX_ERR(0, 107, __pyx_L1_error) - - /* "pmercury/protocols/tls.pyx":121 - * - * @staticmethod - * def fingerprint(bytes data, unsigned int offset, unsigned int data_len): # <<<<<<<<<<<<<< - * cdef unsigned char *buf = data - * offset += 5 - */ - __pyx_tuple__11 = PyTuple_Pack(14, __pyx_n_s_data, __pyx_n_s_offset, __pyx_n_s_data_len, __pyx_n_s_buf, __pyx_n_s_c, __pyx_n_s_session_id_length, __pyx_n_s_cipher_suites_length, __pyx_n_s_cs, __pyx_n_s_compression_methods_length, __pyx_n_s_ext_total_len, __pyx_n_s_server_name, __pyx_n_s_context_2, __pyx_n_s_tmp_fp_ext, __pyx_n_s_ext_len); if (unlikely(!__pyx_tuple__11)) __PYX_ERR(0, 121, __pyx_L1_error) - __Pyx_GOTREF(__pyx_tuple__11); - __Pyx_GIVEREF(__pyx_tuple__11); - __pyx_codeobj__12 = (PyObject*)__Pyx_PyCode_New(3, 0, 14, 0, CO_OPTIMIZED|CO_NEWLOCALS, __pyx_empty_bytes, __pyx_empty_tuple, __pyx_empty_tuple, __pyx_tuple__11, __pyx_empty_tuple, __pyx_empty_tuple, __pyx_kp_s_tls_pyx, __pyx_n_s_fingerprint, 121, __pyx_empty_bytes); if (unlikely(!__pyx_codeobj__12)) __PYX_ERR(0, 121, __pyx_L1_error) - - /* "(tree fragment)":1 - * def __pyx_unpickle_TLS(__pyx_type, long __pyx_checksum, __pyx_state): # <<<<<<<<<<<<<< - * cdef object __pyx_PickleError - * cdef object __pyx_result - */ - __pyx_tuple__13 = PyTuple_Pack(5, __pyx_n_s_pyx_type, __pyx_n_s_pyx_checksum, __pyx_n_s_pyx_state, __pyx_n_s_pyx_PickleError, __pyx_n_s_pyx_result); if (unlikely(!__pyx_tuple__13)) __PYX_ERR(1, 1, __pyx_L1_error) - __Pyx_GOTREF(__pyx_tuple__13); - __Pyx_GIVEREF(__pyx_tuple__13); - __pyx_codeobj__14 = (PyObject*)__Pyx_PyCode_New(3, 0, 5, 0, CO_OPTIMIZED|CO_NEWLOCALS, __pyx_empty_bytes, __pyx_empty_tuple, __pyx_empty_tuple, __pyx_tuple__13, __pyx_empty_tuple, __pyx_empty_tuple, __pyx_kp_s_stringsource, __pyx_n_s_pyx_unpickle_TLS, 1, __pyx_empty_bytes); if (unlikely(!__pyx_codeobj__14)) __PYX_ERR(1, 1, __pyx_L1_error) - __Pyx_RefNannyFinishContext(); - return 0; - __pyx_L1_error:; - __Pyx_RefNannyFinishContext(); - return -1; -} - -static CYTHON_SMALL_CODE int __Pyx_InitGlobals(void) { - __pyx_umethod_PySet_Type_intersection.type = (PyObject*)&PySet_Type; - __pyx_umethod_PySet_Type_union.type = (PyObject*)&PySet_Type; - if (__Pyx_InitStrings(__pyx_string_tab) < 0) __PYX_ERR(0, 1, __pyx_L1_error); - __pyx_float_0_0 = PyFloat_FromDouble(0.0); if (unlikely(!__pyx_float_0_0)) __PYX_ERR(0, 1, __pyx_L1_error) - __pyx_float_0_1 = PyFloat_FromDouble(0.1); if (unlikely(!__pyx_float_0_1)) __PYX_ERR(0, 1, __pyx_L1_error) - __pyx_float_1_0 = PyFloat_FromDouble(1.0); if (unlikely(!__pyx_float_1_0)) __PYX_ERR(0, 1, __pyx_L1_error) - __pyx_float_5_0 = PyFloat_FromDouble(5.0); if (unlikely(!__pyx_float_5_0)) __PYX_ERR(0, 1, __pyx_L1_error) - __pyx_int_0 = PyInt_FromLong(0); if (unlikely(!__pyx_int_0)) __PYX_ERR(0, 1, __pyx_L1_error) - __pyx_int_1 = PyInt_FromLong(1); if (unlikely(!__pyx_int_1)) __PYX_ERR(0, 1, __pyx_L1_error) - __pyx_int_2 = PyInt_FromLong(2); if (unlikely(!__pyx_int_2)) __PYX_ERR(0, 1, __pyx_L1_error) - __pyx_int_3 = PyInt_FromLong(3); if (unlikely(!__pyx_int_3)) __PYX_ERR(0, 1, __pyx_L1_error) - __pyx_int_4 = PyInt_FromLong(4); if (unlikely(!__pyx_int_4)) __PYX_ERR(0, 1, __pyx_L1_error) - __pyx_int_5 = PyInt_FromLong(5); if (unlikely(!__pyx_int_5)) __PYX_ERR(0, 1, __pyx_L1_error) - __pyx_int_9 = PyInt_FromLong(9); if (unlikely(!__pyx_int_9)) __PYX_ERR(0, 1, __pyx_L1_error) - __pyx_int_10 = PyInt_FromLong(10); if (unlikely(!__pyx_int_10)) __PYX_ERR(0, 1, __pyx_L1_error) - __pyx_int_16 = PyInt_FromLong(16); if (unlikely(!__pyx_int_16)) __PYX_ERR(0, 1, __pyx_L1_error) - __pyx_int_22 = PyInt_FromLong(22); if (unlikely(!__pyx_int_22)) __PYX_ERR(0, 1, __pyx_L1_error) - __pyx_int_2097152 = PyInt_FromLong(2097152L); if (unlikely(!__pyx_int_2097152)) __PYX_ERR(0, 1, __pyx_L1_error) - __pyx_int_16777216 = PyInt_FromLong(16777216L); if (unlikely(!__pyx_int_16777216)) __PYX_ERR(0, 1, __pyx_L1_error) - __pyx_int_252896150 = PyInt_FromLong(252896150L); if (unlikely(!__pyx_int_252896150)) __PYX_ERR(0, 1, __pyx_L1_error) - return 0; - __pyx_L1_error:; - return -1; -} - -static CYTHON_SMALL_CODE int __Pyx_modinit_global_init_code(void); /*proto*/ -static CYTHON_SMALL_CODE int __Pyx_modinit_variable_export_code(void); /*proto*/ -static CYTHON_SMALL_CODE int __Pyx_modinit_function_export_code(void); /*proto*/ -static CYTHON_SMALL_CODE int __Pyx_modinit_type_init_code(void); /*proto*/ -static CYTHON_SMALL_CODE int __Pyx_modinit_type_import_code(void); /*proto*/ -static CYTHON_SMALL_CODE int __Pyx_modinit_variable_import_code(void); /*proto*/ -static CYTHON_SMALL_CODE int __Pyx_modinit_function_import_code(void); /*proto*/ - -static int __Pyx_modinit_global_init_code(void) { - __Pyx_RefNannyDeclarations - __Pyx_RefNannySetupContext("__Pyx_modinit_global_init_code", 0); - /*--- Global init code ---*/ - __Pyx_RefNannyFinishContext(); - return 0; -} - -static int __Pyx_modinit_variable_export_code(void) { - __Pyx_RefNannyDeclarations - __Pyx_RefNannySetupContext("__Pyx_modinit_variable_export_code", 0); - /*--- Variable export code ---*/ - __Pyx_RefNannyFinishContext(); - return 0; -} - -static int __Pyx_modinit_function_export_code(void) { - __Pyx_RefNannyDeclarations - __Pyx_RefNannySetupContext("__Pyx_modinit_function_export_code", 0); - /*--- Function export code ---*/ - __Pyx_RefNannyFinishContext(); - return 0; -} - -static int __Pyx_modinit_type_init_code(void) { - __Pyx_RefNannyDeclarations - __Pyx_RefNannySetupContext("__Pyx_modinit_type_init_code", 0); - /*--- Type init code ---*/ - if (PyType_Ready(&__pyx_type_8pmercury_9protocols_3tls_TLS) < 0) __PYX_ERR(0, 37, __pyx_L1_error) - #if PY_VERSION_HEX < 0x030800B1 - __pyx_type_8pmercury_9protocols_3tls_TLS.tp_print = 0; - #endif - if ((CYTHON_USE_TYPE_SLOTS && CYTHON_USE_PYTYPE_LOOKUP) && likely(!__pyx_type_8pmercury_9protocols_3tls_TLS.tp_dictoffset && __pyx_type_8pmercury_9protocols_3tls_TLS.tp_getattro == PyObject_GenericGetAttr)) { - __pyx_type_8pmercury_9protocols_3tls_TLS.tp_getattro = __Pyx_PyObject_GenericGetAttr; - } - if (PyObject_SetAttr(__pyx_m, __pyx_n_s_TLS, (PyObject *)&__pyx_type_8pmercury_9protocols_3tls_TLS) < 0) __PYX_ERR(0, 37, __pyx_L1_error) - if (__Pyx_setup_reduce((PyObject*)&__pyx_type_8pmercury_9protocols_3tls_TLS) < 0) __PYX_ERR(0, 37, __pyx_L1_error) - __pyx_ptype_8pmercury_9protocols_3tls_TLS = &__pyx_type_8pmercury_9protocols_3tls_TLS; - __Pyx_RefNannyFinishContext(); - return 0; - __pyx_L1_error:; - __Pyx_RefNannyFinishContext(); - return -1; -} - -static int __Pyx_modinit_type_import_code(void) { - __Pyx_RefNannyDeclarations - __Pyx_RefNannySetupContext("__Pyx_modinit_type_import_code", 0); - /*--- Type import code ---*/ - __Pyx_RefNannyFinishContext(); - return 0; -} - -static int __Pyx_modinit_variable_import_code(void) { - __Pyx_RefNannyDeclarations - __Pyx_RefNannySetupContext("__Pyx_modinit_variable_import_code", 0); - /*--- Variable import code ---*/ - __Pyx_RefNannyFinishContext(); - return 0; -} - -static int __Pyx_modinit_function_import_code(void) { - __Pyx_RefNannyDeclarations - __Pyx_RefNannySetupContext("__Pyx_modinit_function_import_code", 0); - /*--- Function import code ---*/ - __Pyx_RefNannyFinishContext(); - return 0; -} - - -#if PY_MAJOR_VERSION < 3 -#ifdef CYTHON_NO_PYINIT_EXPORT -#define __Pyx_PyMODINIT_FUNC void -#else -#define __Pyx_PyMODINIT_FUNC PyMODINIT_FUNC -#endif -#else -#ifdef CYTHON_NO_PYINIT_EXPORT -#define __Pyx_PyMODINIT_FUNC PyObject * -#else -#define __Pyx_PyMODINIT_FUNC PyMODINIT_FUNC -#endif -#endif - - -#if PY_MAJOR_VERSION < 3 -__Pyx_PyMODINIT_FUNC inittls(void) CYTHON_SMALL_CODE; /*proto*/ -__Pyx_PyMODINIT_FUNC inittls(void) -#else -__Pyx_PyMODINIT_FUNC PyInit_tls(void) CYTHON_SMALL_CODE; /*proto*/ -__Pyx_PyMODINIT_FUNC PyInit_tls(void) -#if CYTHON_PEP489_MULTI_PHASE_INIT -{ - return PyModuleDef_Init(&__pyx_moduledef); -} -static CYTHON_SMALL_CODE int __Pyx_check_single_interpreter(void) { - #if PY_VERSION_HEX >= 0x030700A1 - static PY_INT64_T main_interpreter_id = -1; - PY_INT64_T current_id = PyInterpreterState_GetID(PyThreadState_Get()->interp); - if (main_interpreter_id == -1) { - main_interpreter_id = current_id; - return (unlikely(current_id == -1)) ? -1 : 0; - } else if (unlikely(main_interpreter_id != current_id)) - #else - static PyInterpreterState *main_interpreter = NULL; - PyInterpreterState *current_interpreter = PyThreadState_Get()->interp; - if (!main_interpreter) { - main_interpreter = current_interpreter; - } else if (unlikely(main_interpreter != current_interpreter)) - #endif - { - PyErr_SetString( - PyExc_ImportError, - "Interpreter change detected - this module can only be loaded into one interpreter per process."); - return -1; - } - return 0; -} -static CYTHON_SMALL_CODE int __Pyx_copy_spec_to_module(PyObject *spec, PyObject *moddict, const char* from_name, const char* to_name, int allow_none) { - PyObject *value = PyObject_GetAttrString(spec, from_name); - int result = 0; - if (likely(value)) { - if (allow_none || value != Py_None) { - result = PyDict_SetItemString(moddict, to_name, value); - } - Py_DECREF(value); - } else if (PyErr_ExceptionMatches(PyExc_AttributeError)) { - PyErr_Clear(); - } else { - result = -1; - } - return result; -} -static CYTHON_SMALL_CODE PyObject* __pyx_pymod_create(PyObject *spec, CYTHON_UNUSED PyModuleDef *def) { - PyObject *module = NULL, *moddict, *modname; - if (__Pyx_check_single_interpreter()) - return NULL; - if (__pyx_m) - return __Pyx_NewRef(__pyx_m); - modname = PyObject_GetAttrString(spec, "name"); - if (unlikely(!modname)) goto bad; - module = PyModule_NewObject(modname); - Py_DECREF(modname); - if (unlikely(!module)) goto bad; - moddict = PyModule_GetDict(module); - if (unlikely(!moddict)) goto bad; - if (unlikely(__Pyx_copy_spec_to_module(spec, moddict, "loader", "__loader__", 1) < 0)) goto bad; - if (unlikely(__Pyx_copy_spec_to_module(spec, moddict, "origin", "__file__", 1) < 0)) goto bad; - if (unlikely(__Pyx_copy_spec_to_module(spec, moddict, "parent", "__package__", 1) < 0)) goto bad; - if (unlikely(__Pyx_copy_spec_to_module(spec, moddict, "submodule_search_locations", "__path__", 0) < 0)) goto bad; - return module; -bad: - Py_XDECREF(module); - return NULL; -} - - -static CYTHON_SMALL_CODE int __pyx_pymod_exec_tls(PyObject *__pyx_pyinit_module) -#endif -#endif -{ - PyObject *__pyx_t_1 = NULL; - PyObject *__pyx_t_2 = NULL; - PyObject *__pyx_t_3 = NULL; - PyObject *__pyx_t_4 = NULL; - PyObject *__pyx_t_5 = NULL; - int __pyx_t_6; - __Pyx_RefNannyDeclarations - #if CYTHON_PEP489_MULTI_PHASE_INIT - if (__pyx_m) { - if (__pyx_m == __pyx_pyinit_module) return 0; - PyErr_SetString(PyExc_RuntimeError, "Module 'tls' has already been imported. Re-initialisation is not supported."); - return -1; - } - #elif PY_MAJOR_VERSION >= 3 - if (__pyx_m) return __Pyx_NewRef(__pyx_m); - #endif - #if CYTHON_REFNANNY -__Pyx_RefNanny = __Pyx_RefNannyImportAPI("refnanny"); -if (!__Pyx_RefNanny) { - PyErr_Clear(); - __Pyx_RefNanny = __Pyx_RefNannyImportAPI("Cython.Runtime.refnanny"); - if (!__Pyx_RefNanny) - Py_FatalError("failed to import 'refnanny' module"); -} -#endif - __Pyx_RefNannySetupContext("__Pyx_PyMODINIT_FUNC PyInit_tls(void)", 0); - if (__Pyx_check_binary_version() < 0) __PYX_ERR(0, 1, __pyx_L1_error) - #ifdef __Pxy_PyFrame_Initialize_Offsets - __Pxy_PyFrame_Initialize_Offsets(); - #endif - __pyx_empty_tuple = PyTuple_New(0); if (unlikely(!__pyx_empty_tuple)) __PYX_ERR(0, 1, __pyx_L1_error) - __pyx_empty_bytes = PyBytes_FromStringAndSize("", 0); if (unlikely(!__pyx_empty_bytes)) __PYX_ERR(0, 1, __pyx_L1_error) - __pyx_empty_unicode = PyUnicode_FromStringAndSize("", 0); if (unlikely(!__pyx_empty_unicode)) __PYX_ERR(0, 1, __pyx_L1_error) - #ifdef __Pyx_CyFunction_USED - if (__pyx_CyFunction_init() < 0) __PYX_ERR(0, 1, __pyx_L1_error) - #endif - #ifdef __Pyx_FusedFunction_USED - if (__pyx_FusedFunction_init() < 0) __PYX_ERR(0, 1, __pyx_L1_error) - #endif - #ifdef __Pyx_Coroutine_USED - if (__pyx_Coroutine_init() < 0) __PYX_ERR(0, 1, __pyx_L1_error) - #endif - #ifdef __Pyx_Generator_USED - if (__pyx_Generator_init() < 0) __PYX_ERR(0, 1, __pyx_L1_error) - #endif - #ifdef __Pyx_AsyncGen_USED - if (__pyx_AsyncGen_init() < 0) __PYX_ERR(0, 1, __pyx_L1_error) - #endif - #ifdef __Pyx_StopAsyncIteration_USED - if (__pyx_StopAsyncIteration_init() < 0) __PYX_ERR(0, 1, __pyx_L1_error) - #endif - /*--- Library function declarations ---*/ - /*--- Threads initialization code ---*/ - #if defined(__PYX_FORCE_INIT_THREADS) && __PYX_FORCE_INIT_THREADS - #ifdef WITH_THREAD /* Python build with threading support? */ - PyEval_InitThreads(); - #endif - #endif - /*--- Module creation code ---*/ - #if CYTHON_PEP489_MULTI_PHASE_INIT - __pyx_m = __pyx_pyinit_module; - Py_INCREF(__pyx_m); - #else - #if PY_MAJOR_VERSION < 3 - __pyx_m = Py_InitModule4("tls", __pyx_methods, __pyx_k_Copyright_c_2019_Cisco_Systems, 0, PYTHON_API_VERSION); Py_XINCREF(__pyx_m); - #else - __pyx_m = PyModule_Create(&__pyx_moduledef); - #endif - if (unlikely(!__pyx_m)) __PYX_ERR(0, 1, __pyx_L1_error) - #endif - __pyx_d = PyModule_GetDict(__pyx_m); if (unlikely(!__pyx_d)) __PYX_ERR(0, 1, __pyx_L1_error) - Py_INCREF(__pyx_d); - __pyx_b = PyImport_AddModule(__Pyx_BUILTIN_MODULE_NAME); if (unlikely(!__pyx_b)) __PYX_ERR(0, 1, __pyx_L1_error) - Py_INCREF(__pyx_b); - __pyx_cython_runtime = PyImport_AddModule((char *) "cython_runtime"); if (unlikely(!__pyx_cython_runtime)) __PYX_ERR(0, 1, __pyx_L1_error) - Py_INCREF(__pyx_cython_runtime); - if (PyObject_SetAttrString(__pyx_m, "__builtins__", __pyx_b) < 0) __PYX_ERR(0, 1, __pyx_L1_error); - /*--- Initialize various global constants etc. ---*/ - if (__Pyx_InitGlobals() < 0) __PYX_ERR(0, 1, __pyx_L1_error) - #if PY_MAJOR_VERSION < 3 && (__PYX_DEFAULT_STRING_ENCODING_IS_ASCII || __PYX_DEFAULT_STRING_ENCODING_IS_DEFAULT) - if (__Pyx_init_sys_getdefaultencoding_params() < 0) __PYX_ERR(0, 1, __pyx_L1_error) - #endif - if (__pyx_module_is_main_pmercury__protocols__tls) { - if (PyObject_SetAttr(__pyx_m, __pyx_n_s_name_2, __pyx_n_s_main) < 0) __PYX_ERR(0, 1, __pyx_L1_error) - } - #if PY_MAJOR_VERSION >= 3 - { - PyObject *modules = PyImport_GetModuleDict(); if (unlikely(!modules)) __PYX_ERR(0, 1, __pyx_L1_error) - if (!PyDict_GetItemString(modules, "pmercury.protocols.tls")) { - if (unlikely(PyDict_SetItemString(modules, "pmercury.protocols.tls", __pyx_m) < 0)) __PYX_ERR(0, 1, __pyx_L1_error) - } - } - #endif - /*--- Builtin init code ---*/ - if (__Pyx_InitCachedBuiltins() < 0) goto __pyx_L1_error; - /*--- Constants init code ---*/ - if (__Pyx_InitCachedConstants() < 0) goto __pyx_L1_error; - /*--- Global type/function init code ---*/ - (void)__Pyx_modinit_global_init_code(); - (void)__Pyx_modinit_variable_export_code(); - (void)__Pyx_modinit_function_export_code(); - if (unlikely(__Pyx_modinit_type_init_code() != 0)) goto __pyx_L1_error; - (void)__Pyx_modinit_type_import_code(); - (void)__Pyx_modinit_variable_import_code(); - (void)__Pyx_modinit_function_import_code(); - /*--- Execution code ---*/ - #if defined(__Pyx_Generator_USED) || defined(__Pyx_Coroutine_USED) - if (__Pyx_patch_abc() < 0) __PYX_ERR(0, 1, __pyx_L1_error) - #endif - - /* "pmercury/protocols/tls.pyx":8 - * """ - * - * import os # <<<<<<<<<<<<<< - * import sys - * import json - */ - __pyx_t_1 = __Pyx_Import(__pyx_n_s_os, 0, 0); if (unlikely(!__pyx_t_1)) __PYX_ERR(0, 8, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_1); - if (PyDict_SetItem(__pyx_d, __pyx_n_s_os, __pyx_t_1) < 0) __PYX_ERR(0, 8, __pyx_L1_error) - __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0; - - /* "pmercury/protocols/tls.pyx":9 - * - * import os - * import sys # <<<<<<<<<<<<<< - * import json - * import operator - */ - __pyx_t_1 = __Pyx_Import(__pyx_n_s_sys, 0, 0); if (unlikely(!__pyx_t_1)) __PYX_ERR(0, 9, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_1); - if (PyDict_SetItem(__pyx_d, __pyx_n_s_sys, __pyx_t_1) < 0) __PYX_ERR(0, 9, __pyx_L1_error) - __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0; - - /* "pmercury/protocols/tls.pyx":10 - * import os - * import sys - * import json # <<<<<<<<<<<<<< - * import operator - * import functools - */ - __pyx_t_1 = __Pyx_Import(__pyx_n_s_json, 0, 0); if (unlikely(!__pyx_t_1)) __PYX_ERR(0, 10, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_1); - if (PyDict_SetItem(__pyx_d, __pyx_n_s_json, __pyx_t_1) < 0) __PYX_ERR(0, 10, __pyx_L1_error) - __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0; - - /* "pmercury/protocols/tls.pyx":11 - * import sys - * import json - * import operator # <<<<<<<<<<<<<< - * import functools - * from sys import path - */ - __pyx_t_1 = __Pyx_Import(__pyx_n_s_operator, 0, 0); if (unlikely(!__pyx_t_1)) __PYX_ERR(0, 11, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_1); - if (PyDict_SetItem(__pyx_d, __pyx_n_s_operator, __pyx_t_1) < 0) __PYX_ERR(0, 11, __pyx_L1_error) - __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0; - - /* "pmercury/protocols/tls.pyx":12 - * import json - * import operator - * import functools # <<<<<<<<<<<<<< - * from sys import path - * - */ - __pyx_t_1 = __Pyx_Import(__pyx_n_s_functools, 0, 0); if (unlikely(!__pyx_t_1)) __PYX_ERR(0, 12, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_1); - if (PyDict_SetItem(__pyx_d, __pyx_n_s_functools, __pyx_t_1) < 0) __PYX_ERR(0, 12, __pyx_L1_error) - __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0; - - /* "pmercury/protocols/tls.pyx":13 - * import operator - * import functools - * from sys import path # <<<<<<<<<<<<<< - * - * sys.path.append(os.path.dirname(os.path.abspath(__file__))) - */ - __pyx_t_1 = PyList_New(1); if (unlikely(!__pyx_t_1)) __PYX_ERR(0, 13, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_1); - __Pyx_INCREF(__pyx_n_s_path); - __Pyx_GIVEREF(__pyx_n_s_path); - PyList_SET_ITEM(__pyx_t_1, 0, __pyx_n_s_path); - __pyx_t_2 = __Pyx_Import(__pyx_n_s_sys, __pyx_t_1, 0); if (unlikely(!__pyx_t_2)) __PYX_ERR(0, 13, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_2); - __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0; - __pyx_t_1 = __Pyx_ImportFrom(__pyx_t_2, __pyx_n_s_path); if (unlikely(!__pyx_t_1)) __PYX_ERR(0, 13, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_1); - if (PyDict_SetItem(__pyx_d, __pyx_n_s_path, __pyx_t_1) < 0) __PYX_ERR(0, 13, __pyx_L1_error) - __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0; - __Pyx_DECREF(__pyx_t_2); __pyx_t_2 = 0; - - /* "pmercury/protocols/tls.pyx":15 - * from sys import path - * - * sys.path.append(os.path.dirname(os.path.abspath(__file__))) # <<<<<<<<<<<<<< - * sys.path.append(os.path.dirname(os.path.abspath(__file__))+'/../') - * from pmercury.utils.tls_utils import * - */ - __Pyx_GetModuleGlobalName(__pyx_t_2, __pyx_n_s_sys); if (unlikely(!__pyx_t_2)) __PYX_ERR(0, 15, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_2); - __pyx_t_1 = __Pyx_PyObject_GetAttrStr(__pyx_t_2, __pyx_n_s_path); if (unlikely(!__pyx_t_1)) __PYX_ERR(0, 15, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_1); - __Pyx_DECREF(__pyx_t_2); __pyx_t_2 = 0; - __Pyx_GetModuleGlobalName(__pyx_t_2, __pyx_n_s_os); if (unlikely(!__pyx_t_2)) __PYX_ERR(0, 15, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_2); - __pyx_t_3 = __Pyx_PyObject_GetAttrStr(__pyx_t_2, __pyx_n_s_path); if (unlikely(!__pyx_t_3)) __PYX_ERR(0, 15, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_3); - __Pyx_DECREF(__pyx_t_2); __pyx_t_2 = 0; - __pyx_t_2 = __Pyx_PyObject_GetAttrStr(__pyx_t_3, __pyx_n_s_dirname); if (unlikely(!__pyx_t_2)) __PYX_ERR(0, 15, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_2); - __Pyx_DECREF(__pyx_t_3); __pyx_t_3 = 0; - __Pyx_GetModuleGlobalName(__pyx_t_3, __pyx_n_s_os); if (unlikely(!__pyx_t_3)) __PYX_ERR(0, 15, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_3); - __pyx_t_4 = __Pyx_PyObject_GetAttrStr(__pyx_t_3, __pyx_n_s_path); if (unlikely(!__pyx_t_4)) __PYX_ERR(0, 15, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_4); - __Pyx_DECREF(__pyx_t_3); __pyx_t_3 = 0; - __pyx_t_3 = __Pyx_PyObject_GetAttrStr(__pyx_t_4, __pyx_n_s_abspath); if (unlikely(!__pyx_t_3)) __PYX_ERR(0, 15, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_3); - __Pyx_DECREF(__pyx_t_4); __pyx_t_4 = 0; - __Pyx_GetModuleGlobalName(__pyx_t_4, __pyx_n_s_file); if (unlikely(!__pyx_t_4)) __PYX_ERR(0, 15, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_4); - __pyx_t_5 = __Pyx_PyObject_CallOneArg(__pyx_t_3, __pyx_t_4); if (unlikely(!__pyx_t_5)) __PYX_ERR(0, 15, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_5); - __Pyx_DECREF(__pyx_t_3); __pyx_t_3 = 0; - __Pyx_DECREF(__pyx_t_4); __pyx_t_4 = 0; - __pyx_t_4 = __Pyx_PyObject_CallOneArg(__pyx_t_2, __pyx_t_5); if (unlikely(!__pyx_t_4)) __PYX_ERR(0, 15, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_4); - __Pyx_DECREF(__pyx_t_2); __pyx_t_2 = 0; - __Pyx_DECREF(__pyx_t_5); __pyx_t_5 = 0; - __pyx_t_6 = __Pyx_PyObject_Append(__pyx_t_1, __pyx_t_4); if (unlikely(__pyx_t_6 == ((int)-1))) __PYX_ERR(0, 15, __pyx_L1_error) - __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0; - __Pyx_DECREF(__pyx_t_4); __pyx_t_4 = 0; - - /* "pmercury/protocols/tls.pyx":16 - * - * sys.path.append(os.path.dirname(os.path.abspath(__file__))) - * sys.path.append(os.path.dirname(os.path.abspath(__file__))+'/../') # <<<<<<<<<<<<<< - * from pmercury.utils.tls_utils import * - * from pmercury.utils.tls_constants import * - */ - __Pyx_GetModuleGlobalName(__pyx_t_4, __pyx_n_s_sys); if (unlikely(!__pyx_t_4)) __PYX_ERR(0, 16, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_4); - __pyx_t_1 = __Pyx_PyObject_GetAttrStr(__pyx_t_4, __pyx_n_s_path); if (unlikely(!__pyx_t_1)) __PYX_ERR(0, 16, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_1); - __Pyx_DECREF(__pyx_t_4); __pyx_t_4 = 0; - __Pyx_GetModuleGlobalName(__pyx_t_4, __pyx_n_s_os); if (unlikely(!__pyx_t_4)) __PYX_ERR(0, 16, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_4); - __pyx_t_5 = __Pyx_PyObject_GetAttrStr(__pyx_t_4, __pyx_n_s_path); if (unlikely(!__pyx_t_5)) __PYX_ERR(0, 16, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_5); - __Pyx_DECREF(__pyx_t_4); __pyx_t_4 = 0; - __pyx_t_4 = __Pyx_PyObject_GetAttrStr(__pyx_t_5, __pyx_n_s_dirname); if (unlikely(!__pyx_t_4)) __PYX_ERR(0, 16, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_4); - __Pyx_DECREF(__pyx_t_5); __pyx_t_5 = 0; - __Pyx_GetModuleGlobalName(__pyx_t_5, __pyx_n_s_os); if (unlikely(!__pyx_t_5)) __PYX_ERR(0, 16, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_5); - __pyx_t_2 = __Pyx_PyObject_GetAttrStr(__pyx_t_5, __pyx_n_s_path); if (unlikely(!__pyx_t_2)) __PYX_ERR(0, 16, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_2); - __Pyx_DECREF(__pyx_t_5); __pyx_t_5 = 0; - __pyx_t_5 = __Pyx_PyObject_GetAttrStr(__pyx_t_2, __pyx_n_s_abspath); if (unlikely(!__pyx_t_5)) __PYX_ERR(0, 16, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_5); - __Pyx_DECREF(__pyx_t_2); __pyx_t_2 = 0; - __Pyx_GetModuleGlobalName(__pyx_t_2, __pyx_n_s_file); if (unlikely(!__pyx_t_2)) __PYX_ERR(0, 16, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_2); - __pyx_t_3 = __Pyx_PyObject_CallOneArg(__pyx_t_5, __pyx_t_2); if (unlikely(!__pyx_t_3)) __PYX_ERR(0, 16, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_3); - __Pyx_DECREF(__pyx_t_5); __pyx_t_5 = 0; - __Pyx_DECREF(__pyx_t_2); __pyx_t_2 = 0; - __pyx_t_2 = __Pyx_PyObject_CallOneArg(__pyx_t_4, __pyx_t_3); if (unlikely(!__pyx_t_2)) __PYX_ERR(0, 16, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_2); - __Pyx_DECREF(__pyx_t_4); __pyx_t_4 = 0; - __Pyx_DECREF(__pyx_t_3); __pyx_t_3 = 0; - __pyx_t_3 = PyNumber_Add(__pyx_t_2, __pyx_kp_u__7); if (unlikely(!__pyx_t_3)) __PYX_ERR(0, 16, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_3); - __Pyx_DECREF(__pyx_t_2); __pyx_t_2 = 0; - __pyx_t_6 = __Pyx_PyObject_Append(__pyx_t_1, __pyx_t_3); if (unlikely(__pyx_t_6 == ((int)-1))) __PYX_ERR(0, 16, __pyx_L1_error) - __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0; - __Pyx_DECREF(__pyx_t_3); __pyx_t_3 = 0; - - /* "pmercury/protocols/tls.pyx":17 - * sys.path.append(os.path.dirname(os.path.abspath(__file__))) - * sys.path.append(os.path.dirname(os.path.abspath(__file__))+'/../') - * from pmercury.utils.tls_utils import * # <<<<<<<<<<<<<< - * from pmercury.utils.tls_constants import * - * from pmercury.utils.pmercury_utils import * - */ - __pyx_t_3 = PyList_New(1); if (unlikely(!__pyx_t_3)) __PYX_ERR(0, 17, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_3); - __Pyx_INCREF(__pyx_n_s__8); - __Pyx_GIVEREF(__pyx_n_s__8); - PyList_SET_ITEM(__pyx_t_3, 0, __pyx_n_s__8); - __pyx_t_1 = __Pyx_Import(__pyx_n_s_pmercury_utils_tls_utils, __pyx_t_3, 0); if (unlikely(!__pyx_t_1)) __PYX_ERR(0, 17, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_1); - __Pyx_DECREF(__pyx_t_3); __pyx_t_3 = 0; - if (__pyx_import_star(__pyx_t_1) < 0) __PYX_ERR(0, 17, __pyx_L1_error); - __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0; - - /* "pmercury/protocols/tls.pyx":18 - * sys.path.append(os.path.dirname(os.path.abspath(__file__))+'/../') - * from pmercury.utils.tls_utils import * - * from pmercury.utils.tls_constants import * # <<<<<<<<<<<<<< - * from pmercury.utils.pmercury_utils import * - * from pmercury.utils.contextual_info import * - */ - __pyx_t_1 = PyList_New(1); if (unlikely(!__pyx_t_1)) __PYX_ERR(0, 18, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_1); - __Pyx_INCREF(__pyx_n_s__8); - __Pyx_GIVEREF(__pyx_n_s__8); - PyList_SET_ITEM(__pyx_t_1, 0, __pyx_n_s__8); - __pyx_t_3 = __Pyx_Import(__pyx_n_s_pmercury_utils_tls_constants, __pyx_t_1, 0); if (unlikely(!__pyx_t_3)) __PYX_ERR(0, 18, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_3); - __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0; - if (__pyx_import_star(__pyx_t_3) < 0) __PYX_ERR(0, 18, __pyx_L1_error); - __Pyx_DECREF(__pyx_t_3); __pyx_t_3 = 0; - - /* "pmercury/protocols/tls.pyx":19 - * from pmercury.utils.tls_utils import * - * from pmercury.utils.tls_constants import * - * from pmercury.utils.pmercury_utils import * # <<<<<<<<<<<<<< - * from pmercury.utils.contextual_info import * - * from pmercury.utils.sequence_alignment import * - */ - __pyx_t_3 = PyList_New(1); if (unlikely(!__pyx_t_3)) __PYX_ERR(0, 19, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_3); - __Pyx_INCREF(__pyx_n_s__8); - __Pyx_GIVEREF(__pyx_n_s__8); - PyList_SET_ITEM(__pyx_t_3, 0, __pyx_n_s__8); - __pyx_t_1 = __Pyx_Import(__pyx_n_s_pmercury_utils_pmercury_utils, __pyx_t_3, 0); if (unlikely(!__pyx_t_1)) __PYX_ERR(0, 19, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_1); - __Pyx_DECREF(__pyx_t_3); __pyx_t_3 = 0; - if (__pyx_import_star(__pyx_t_1) < 0) __PYX_ERR(0, 19, __pyx_L1_error); - __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0; - - /* "pmercury/protocols/tls.pyx":20 - * from pmercury.utils.tls_constants import * - * from pmercury.utils.pmercury_utils import * - * from pmercury.utils.contextual_info import * # <<<<<<<<<<<<<< - * from pmercury.utils.sequence_alignment import * - * - */ - __pyx_t_1 = PyList_New(1); if (unlikely(!__pyx_t_1)) __PYX_ERR(0, 20, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_1); - __Pyx_INCREF(__pyx_n_s__8); - __Pyx_GIVEREF(__pyx_n_s__8); - PyList_SET_ITEM(__pyx_t_1, 0, __pyx_n_s__8); - __pyx_t_3 = __Pyx_Import(__pyx_n_s_pmercury_utils_contextual_info, __pyx_t_1, 0); if (unlikely(!__pyx_t_3)) __PYX_ERR(0, 20, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_3); - __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0; - if (__pyx_import_star(__pyx_t_3) < 0) __PYX_ERR(0, 20, __pyx_L1_error); - __Pyx_DECREF(__pyx_t_3); __pyx_t_3 = 0; - - /* "pmercury/protocols/tls.pyx":21 - * from pmercury.utils.pmercury_utils import * - * from pmercury.utils.contextual_info import * - * from pmercury.utils.sequence_alignment import * # <<<<<<<<<<<<<< - * - * from cython.operator cimport dereference as deref - */ - __pyx_t_3 = PyList_New(1); if (unlikely(!__pyx_t_3)) __PYX_ERR(0, 21, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_3); - __Pyx_INCREF(__pyx_n_s__8); - __Pyx_GIVEREF(__pyx_n_s__8); - PyList_SET_ITEM(__pyx_t_3, 0, __pyx_n_s__8); - __pyx_t_1 = __Pyx_Import(__pyx_n_s_pmercury_utils_sequence_alignmen, __pyx_t_3, 0); if (unlikely(!__pyx_t_1)) __PYX_ERR(0, 21, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_1); - __Pyx_DECREF(__pyx_t_3); __pyx_t_3 = 0; - if (__pyx_import_star(__pyx_t_1) < 0) __PYX_ERR(0, 21, __pyx_L1_error); - __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0; - - /* "pmercury/protocols/tls.pyx":34 - * uint16_t htons(uint16_t hostshort) - * - * MAX_CACHED_RESULTS = 2**24 # <<<<<<<<<<<<<< - * - * - */ - if (PyDict_SetItem(__pyx_d, __pyx_n_s_MAX_CACHED_RESULTS, __pyx_int_16777216) < 0) __PYX_ERR(0, 34, __pyx_L1_error) - - /* "pmercury/protocols/tls.pyx":107 - * - * @staticmethod - * def proto_identify(data, offset, data_len): # <<<<<<<<<<<<<< - * if data_len-offset < 16: - * return False - */ - __pyx_t_1 = PyCFunction_NewEx(&__pyx_mdef_8pmercury_9protocols_3tls_3TLS_5proto_identify, NULL, __pyx_n_s_pmercury_protocols_tls); if (unlikely(!__pyx_t_1)) __PYX_ERR(0, 107, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_1); - if (PyDict_SetItem((PyObject *)__pyx_ptype_8pmercury_9protocols_3tls_TLS->tp_dict, __pyx_n_s_proto_identify, __pyx_t_1) < 0) __PYX_ERR(0, 107, __pyx_L1_error) - __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0; - PyType_Modified(__pyx_ptype_8pmercury_9protocols_3tls_TLS); - - /* "pmercury/protocols/tls.pyx":106 - * - * - * @staticmethod # <<<<<<<<<<<<<< - * def proto_identify(data, offset, data_len): - * if data_len-offset < 16: - */ - __Pyx_GetNameInClass(__pyx_t_1, (PyObject *)__pyx_ptype_8pmercury_9protocols_3tls_TLS, __pyx_n_s_proto_identify); if (unlikely(!__pyx_t_1)) __PYX_ERR(0, 107, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_1); - __pyx_t_3 = __Pyx_PyObject_CallOneArg(__pyx_builtin_staticmethod, __pyx_t_1); if (unlikely(!__pyx_t_3)) __PYX_ERR(0, 106, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_3); - __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0; - if (PyDict_SetItem((PyObject *)__pyx_ptype_8pmercury_9protocols_3tls_TLS->tp_dict, __pyx_n_s_proto_identify, __pyx_t_3) < 0) __PYX_ERR(0, 107, __pyx_L1_error) - __Pyx_DECREF(__pyx_t_3); __pyx_t_3 = 0; - PyType_Modified(__pyx_ptype_8pmercury_9protocols_3tls_TLS); - - /* "pmercury/protocols/tls.pyx":121 - * - * @staticmethod - * def fingerprint(bytes data, unsigned int offset, unsigned int data_len): # <<<<<<<<<<<<<< - * cdef unsigned char *buf = data - * offset += 5 - */ - __pyx_t_3 = PyCFunction_NewEx(&__pyx_mdef_8pmercury_9protocols_3tls_3TLS_7fingerprint, NULL, __pyx_n_s_pmercury_protocols_tls); if (unlikely(!__pyx_t_3)) __PYX_ERR(0, 121, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_3); - if (PyDict_SetItem((PyObject *)__pyx_ptype_8pmercury_9protocols_3tls_TLS->tp_dict, __pyx_n_s_fingerprint, __pyx_t_3) < 0) __PYX_ERR(0, 121, __pyx_L1_error) - __Pyx_DECREF(__pyx_t_3); __pyx_t_3 = 0; - PyType_Modified(__pyx_ptype_8pmercury_9protocols_3tls_TLS); - - /* "pmercury/protocols/tls.pyx":120 - * - * - * @staticmethod # <<<<<<<<<<<<<< - * def fingerprint(bytes data, unsigned int offset, unsigned int data_len): - * cdef unsigned char *buf = data - */ - __Pyx_GetNameInClass(__pyx_t_3, (PyObject *)__pyx_ptype_8pmercury_9protocols_3tls_TLS, __pyx_n_s_fingerprint); if (unlikely(!__pyx_t_3)) __PYX_ERR(0, 121, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_3); - __pyx_t_1 = __Pyx_PyObject_CallOneArg(__pyx_builtin_staticmethod, __pyx_t_3); if (unlikely(!__pyx_t_1)) __PYX_ERR(0, 120, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_1); - __Pyx_DECREF(__pyx_t_3); __pyx_t_3 = 0; - if (PyDict_SetItem((PyObject *)__pyx_ptype_8pmercury_9protocols_3tls_TLS->tp_dict, __pyx_n_s_fingerprint, __pyx_t_1) < 0) __PYX_ERR(0, 121, __pyx_L1_error) - __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0; - PyType_Modified(__pyx_ptype_8pmercury_9protocols_3tls_TLS); - - /* "pmercury/protocols/tls.pyx":219 - * - * - * @functools.lru_cache(maxsize=MAX_CACHED_RESULTS) # <<<<<<<<<<<<<< - * def identify(self, fp_str_, server_name, dest_addr, dest_port, list_procs, endpoint=None): - * fp_ = self.get_database_entry(fp_str_, None) - */ - __Pyx_GetModuleGlobalName(__pyx_t_3, __pyx_n_s_functools); if (unlikely(!__pyx_t_3)) __PYX_ERR(0, 219, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_3); - __pyx_t_2 = __Pyx_PyObject_GetAttrStr(__pyx_t_3, __pyx_n_s_lru_cache); if (unlikely(!__pyx_t_2)) __PYX_ERR(0, 219, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_2); - __Pyx_DECREF(__pyx_t_3); __pyx_t_3 = 0; - __pyx_t_3 = __Pyx_PyDict_NewPresized(1); if (unlikely(!__pyx_t_3)) __PYX_ERR(0, 219, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_3); - __Pyx_GetModuleGlobalName(__pyx_t_4, __pyx_n_s_MAX_CACHED_RESULTS); if (unlikely(!__pyx_t_4)) __PYX_ERR(0, 219, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_4); - if (PyDict_SetItem(__pyx_t_3, __pyx_n_s_maxsize, __pyx_t_4) < 0) __PYX_ERR(0, 219, __pyx_L1_error) - __Pyx_DECREF(__pyx_t_4); __pyx_t_4 = 0; - __pyx_t_4 = __Pyx_PyObject_Call(__pyx_t_2, __pyx_empty_tuple, __pyx_t_3); if (unlikely(!__pyx_t_4)) __PYX_ERR(0, 219, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_4); - __Pyx_DECREF(__pyx_t_2); __pyx_t_2 = 0; - __Pyx_DECREF(__pyx_t_3); __pyx_t_3 = 0; - - /* "pmercury/protocols/tls.pyx":220 - * - * @functools.lru_cache(maxsize=MAX_CACHED_RESULTS) - * def identify(self, fp_str_, server_name, dest_addr, dest_port, list_procs, endpoint=None): # <<<<<<<<<<<<<< - * fp_ = self.get_database_entry(fp_str_, None) - * if fp_ == None: - */ - __Pyx_GetNameInClass(__pyx_t_3, (PyObject *)__pyx_ptype_8pmercury_9protocols_3tls_TLS, __pyx_n_s_identify); if (unlikely(!__pyx_t_3)) __PYX_ERR(0, 220, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_3); - __pyx_t_2 = NULL; - if (CYTHON_UNPACK_METHODS && unlikely(PyMethod_Check(__pyx_t_4))) { - __pyx_t_2 = PyMethod_GET_SELF(__pyx_t_4); - if (likely(__pyx_t_2)) { - PyObject* function = PyMethod_GET_FUNCTION(__pyx_t_4); - __Pyx_INCREF(__pyx_t_2); - __Pyx_INCREF(function); - __Pyx_DECREF_SET(__pyx_t_4, function); - } - } - __pyx_t_1 = (__pyx_t_2) ? __Pyx_PyObject_Call2Args(__pyx_t_4, __pyx_t_2, __pyx_t_3) : __Pyx_PyObject_CallOneArg(__pyx_t_4, __pyx_t_3); - __Pyx_XDECREF(__pyx_t_2); __pyx_t_2 = 0; - __Pyx_DECREF(__pyx_t_3); __pyx_t_3 = 0; - if (unlikely(!__pyx_t_1)) __PYX_ERR(0, 219, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_1); - __Pyx_DECREF(__pyx_t_4); __pyx_t_4 = 0; - if (PyDict_SetItem((PyObject *)__pyx_ptype_8pmercury_9protocols_3tls_TLS->tp_dict, __pyx_n_s_identify, __pyx_t_1) < 0) __PYX_ERR(0, 220, __pyx_L1_error) - __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0; - PyType_Modified(__pyx_ptype_8pmercury_9protocols_3tls_TLS); - - /* "pmercury/protocols/tls.pyx":369 - * - * - * @functools.lru_cache(maxsize=MAX_CACHED_RESULTS) # <<<<<<<<<<<<<< - * def get_database_entry(self, fp_str, approx_fp_str): - * fp_str_ = fp_str - */ - __Pyx_GetModuleGlobalName(__pyx_t_4, __pyx_n_s_functools); if (unlikely(!__pyx_t_4)) __PYX_ERR(0, 369, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_4); - __pyx_t_3 = __Pyx_PyObject_GetAttrStr(__pyx_t_4, __pyx_n_s_lru_cache); if (unlikely(!__pyx_t_3)) __PYX_ERR(0, 369, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_3); - __Pyx_DECREF(__pyx_t_4); __pyx_t_4 = 0; - __pyx_t_4 = __Pyx_PyDict_NewPresized(1); if (unlikely(!__pyx_t_4)) __PYX_ERR(0, 369, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_4); - __Pyx_GetModuleGlobalName(__pyx_t_2, __pyx_n_s_MAX_CACHED_RESULTS); if (unlikely(!__pyx_t_2)) __PYX_ERR(0, 369, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_2); - if (PyDict_SetItem(__pyx_t_4, __pyx_n_s_maxsize, __pyx_t_2) < 0) __PYX_ERR(0, 369, __pyx_L1_error) - __Pyx_DECREF(__pyx_t_2); __pyx_t_2 = 0; - __pyx_t_2 = __Pyx_PyObject_Call(__pyx_t_3, __pyx_empty_tuple, __pyx_t_4); if (unlikely(!__pyx_t_2)) __PYX_ERR(0, 369, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_2); - __Pyx_DECREF(__pyx_t_3); __pyx_t_3 = 0; - __Pyx_DECREF(__pyx_t_4); __pyx_t_4 = 0; - - /* "pmercury/protocols/tls.pyx":370 - * - * @functools.lru_cache(maxsize=MAX_CACHED_RESULTS) - * def get_database_entry(self, fp_str, approx_fp_str): # <<<<<<<<<<<<<< - * fp_str_ = fp_str - * if approx_fp_str != None: - */ - __Pyx_GetNameInClass(__pyx_t_4, (PyObject *)__pyx_ptype_8pmercury_9protocols_3tls_TLS, __pyx_n_s_get_database_entry); if (unlikely(!__pyx_t_4)) __PYX_ERR(0, 370, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_4); - __pyx_t_3 = NULL; - if (CYTHON_UNPACK_METHODS && unlikely(PyMethod_Check(__pyx_t_2))) { - __pyx_t_3 = PyMethod_GET_SELF(__pyx_t_2); - if (likely(__pyx_t_3)) { - PyObject* function = PyMethod_GET_FUNCTION(__pyx_t_2); - __Pyx_INCREF(__pyx_t_3); - __Pyx_INCREF(function); - __Pyx_DECREF_SET(__pyx_t_2, function); - } - } - __pyx_t_1 = (__pyx_t_3) ? __Pyx_PyObject_Call2Args(__pyx_t_2, __pyx_t_3, __pyx_t_4) : __Pyx_PyObject_CallOneArg(__pyx_t_2, __pyx_t_4); - __Pyx_XDECREF(__pyx_t_3); __pyx_t_3 = 0; - __Pyx_DECREF(__pyx_t_4); __pyx_t_4 = 0; - if (unlikely(!__pyx_t_1)) __PYX_ERR(0, 369, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_1); - __Pyx_DECREF(__pyx_t_2); __pyx_t_2 = 0; - if (PyDict_SetItem((PyObject *)__pyx_ptype_8pmercury_9protocols_3tls_TLS->tp_dict, __pyx_n_s_get_database_entry, __pyx_t_1) < 0) __PYX_ERR(0, 370, __pyx_L1_error) - __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0; - PyType_Modified(__pyx_ptype_8pmercury_9protocols_3tls_TLS); - - /* "pmercury/protocols/tls.pyx":381 - * - * - * @functools.lru_cache(maxsize=MAX_CACHED_RESULTS) # <<<<<<<<<<<<<< - * def get_approx_fingerprint(self, fp_str_): - * try: - */ - __Pyx_GetModuleGlobalName(__pyx_t_2, __pyx_n_s_functools); if (unlikely(!__pyx_t_2)) __PYX_ERR(0, 381, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_2); - __pyx_t_4 = __Pyx_PyObject_GetAttrStr(__pyx_t_2, __pyx_n_s_lru_cache); if (unlikely(!__pyx_t_4)) __PYX_ERR(0, 381, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_4); - __Pyx_DECREF(__pyx_t_2); __pyx_t_2 = 0; - __pyx_t_2 = __Pyx_PyDict_NewPresized(1); if (unlikely(!__pyx_t_2)) __PYX_ERR(0, 381, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_2); - __Pyx_GetModuleGlobalName(__pyx_t_3, __pyx_n_s_MAX_CACHED_RESULTS); if (unlikely(!__pyx_t_3)) __PYX_ERR(0, 381, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_3); - if (PyDict_SetItem(__pyx_t_2, __pyx_n_s_maxsize, __pyx_t_3) < 0) __PYX_ERR(0, 381, __pyx_L1_error) - __Pyx_DECREF(__pyx_t_3); __pyx_t_3 = 0; - __pyx_t_3 = __Pyx_PyObject_Call(__pyx_t_4, __pyx_empty_tuple, __pyx_t_2); if (unlikely(!__pyx_t_3)) __PYX_ERR(0, 381, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_3); - __Pyx_DECREF(__pyx_t_4); __pyx_t_4 = 0; - __Pyx_DECREF(__pyx_t_2); __pyx_t_2 = 0; - - /* "pmercury/protocols/tls.pyx":382 - * - * @functools.lru_cache(maxsize=MAX_CACHED_RESULTS) - * def get_approx_fingerprint(self, fp_str_): # <<<<<<<<<<<<<< - * try: - * return self.fp_db[fp_str_]['approx_str'] - */ - __Pyx_GetNameInClass(__pyx_t_2, (PyObject *)__pyx_ptype_8pmercury_9protocols_3tls_TLS, __pyx_n_s_get_approx_fingerprint); if (unlikely(!__pyx_t_2)) __PYX_ERR(0, 382, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_2); - __pyx_t_4 = NULL; - if (CYTHON_UNPACK_METHODS && unlikely(PyMethod_Check(__pyx_t_3))) { - __pyx_t_4 = PyMethod_GET_SELF(__pyx_t_3); - if (likely(__pyx_t_4)) { - PyObject* function = PyMethod_GET_FUNCTION(__pyx_t_3); - __Pyx_INCREF(__pyx_t_4); - __Pyx_INCREF(function); - __Pyx_DECREF_SET(__pyx_t_3, function); - } - } - __pyx_t_1 = (__pyx_t_4) ? __Pyx_PyObject_Call2Args(__pyx_t_3, __pyx_t_4, __pyx_t_2) : __Pyx_PyObject_CallOneArg(__pyx_t_3, __pyx_t_2); - __Pyx_XDECREF(__pyx_t_4); __pyx_t_4 = 0; - __Pyx_DECREF(__pyx_t_2); __pyx_t_2 = 0; - if (unlikely(!__pyx_t_1)) __PYX_ERR(0, 381, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_1); - __Pyx_DECREF(__pyx_t_3); __pyx_t_3 = 0; - if (PyDict_SetItem((PyObject *)__pyx_ptype_8pmercury_9protocols_3tls_TLS->tp_dict, __pyx_n_s_get_approx_fingerprint, __pyx_t_1) < 0) __PYX_ERR(0, 382, __pyx_L1_error) - __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0; - PyType_Modified(__pyx_ptype_8pmercury_9protocols_3tls_TLS); - - /* "pmercury/protocols/tls.pyx":435 - * - * - * @functools.lru_cache(maxsize=MAX_CACHED_RESULTS) # <<<<<<<<<<<<<< - * def gen_unknown_fingerprint(self, fp_str_): - * fp_ = {} - */ - __Pyx_GetModuleGlobalName(__pyx_t_3, __pyx_n_s_functools); if (unlikely(!__pyx_t_3)) __PYX_ERR(0, 435, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_3); - __pyx_t_2 = __Pyx_PyObject_GetAttrStr(__pyx_t_3, __pyx_n_s_lru_cache); if (unlikely(!__pyx_t_2)) __PYX_ERR(0, 435, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_2); - __Pyx_DECREF(__pyx_t_3); __pyx_t_3 = 0; - __pyx_t_3 = __Pyx_PyDict_NewPresized(1); if (unlikely(!__pyx_t_3)) __PYX_ERR(0, 435, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_3); - __Pyx_GetModuleGlobalName(__pyx_t_4, __pyx_n_s_MAX_CACHED_RESULTS); if (unlikely(!__pyx_t_4)) __PYX_ERR(0, 435, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_4); - if (PyDict_SetItem(__pyx_t_3, __pyx_n_s_maxsize, __pyx_t_4) < 0) __PYX_ERR(0, 435, __pyx_L1_error) - __Pyx_DECREF(__pyx_t_4); __pyx_t_4 = 0; - __pyx_t_4 = __Pyx_PyObject_Call(__pyx_t_2, __pyx_empty_tuple, __pyx_t_3); if (unlikely(!__pyx_t_4)) __PYX_ERR(0, 435, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_4); - __Pyx_DECREF(__pyx_t_2); __pyx_t_2 = 0; - __Pyx_DECREF(__pyx_t_3); __pyx_t_3 = 0; - - /* "pmercury/protocols/tls.pyx":436 - * - * @functools.lru_cache(maxsize=MAX_CACHED_RESULTS) - * def gen_unknown_fingerprint(self, fp_str_): # <<<<<<<<<<<<<< - * fp_ = {} - * fp_['str_repr'] = fp_str_ - */ - __Pyx_GetNameInClass(__pyx_t_3, (PyObject *)__pyx_ptype_8pmercury_9protocols_3tls_TLS, __pyx_n_s_gen_unknown_fingerprint); if (unlikely(!__pyx_t_3)) __PYX_ERR(0, 436, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_3); - __pyx_t_2 = NULL; - if (CYTHON_UNPACK_METHODS && unlikely(PyMethod_Check(__pyx_t_4))) { - __pyx_t_2 = PyMethod_GET_SELF(__pyx_t_4); - if (likely(__pyx_t_2)) { - PyObject* function = PyMethod_GET_FUNCTION(__pyx_t_4); - __Pyx_INCREF(__pyx_t_2); - __Pyx_INCREF(function); - __Pyx_DECREF_SET(__pyx_t_4, function); - } - } - __pyx_t_1 = (__pyx_t_2) ? __Pyx_PyObject_Call2Args(__pyx_t_4, __pyx_t_2, __pyx_t_3) : __Pyx_PyObject_CallOneArg(__pyx_t_4, __pyx_t_3); - __Pyx_XDECREF(__pyx_t_2); __pyx_t_2 = 0; - __Pyx_DECREF(__pyx_t_3); __pyx_t_3 = 0; - if (unlikely(!__pyx_t_1)) __PYX_ERR(0, 435, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_1); - __Pyx_DECREF(__pyx_t_4); __pyx_t_4 = 0; - if (PyDict_SetItem((PyObject *)__pyx_ptype_8pmercury_9protocols_3tls_TLS->tp_dict, __pyx_n_s_gen_unknown_fingerprint, __pyx_t_1) < 0) __PYX_ERR(0, 436, __pyx_L1_error) - __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0; - PyType_Modified(__pyx_ptype_8pmercury_9protocols_3tls_TLS); - - /* "pmercury/protocols/tls.pyx":465 - * return fp_h - * - * @functools.lru_cache(maxsize=MAX_CACHED_RESULTS) # <<<<<<<<<<<<<< - * def os_identify(self, fp_str_, list_oses=0): - * return None - */ - __Pyx_GetModuleGlobalName(__pyx_t_4, __pyx_n_s_functools); if (unlikely(!__pyx_t_4)) __PYX_ERR(0, 465, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_4); - __pyx_t_3 = __Pyx_PyObject_GetAttrStr(__pyx_t_4, __pyx_n_s_lru_cache); if (unlikely(!__pyx_t_3)) __PYX_ERR(0, 465, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_3); - __Pyx_DECREF(__pyx_t_4); __pyx_t_4 = 0; - __pyx_t_4 = __Pyx_PyDict_NewPresized(1); if (unlikely(!__pyx_t_4)) __PYX_ERR(0, 465, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_4); - __Pyx_GetModuleGlobalName(__pyx_t_2, __pyx_n_s_MAX_CACHED_RESULTS); if (unlikely(!__pyx_t_2)) __PYX_ERR(0, 465, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_2); - if (PyDict_SetItem(__pyx_t_4, __pyx_n_s_maxsize, __pyx_t_2) < 0) __PYX_ERR(0, 465, __pyx_L1_error) - __Pyx_DECREF(__pyx_t_2); __pyx_t_2 = 0; - __pyx_t_2 = __Pyx_PyObject_Call(__pyx_t_3, __pyx_empty_tuple, __pyx_t_4); if (unlikely(!__pyx_t_2)) __PYX_ERR(0, 465, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_2); - __Pyx_DECREF(__pyx_t_3); __pyx_t_3 = 0; - __Pyx_DECREF(__pyx_t_4); __pyx_t_4 = 0; - - /* "pmercury/protocols/tls.pyx":466 - * - * @functools.lru_cache(maxsize=MAX_CACHED_RESULTS) - * def os_identify(self, fp_str_, list_oses=0): # <<<<<<<<<<<<<< - * return None - */ - __Pyx_GetNameInClass(__pyx_t_4, (PyObject *)__pyx_ptype_8pmercury_9protocols_3tls_TLS, __pyx_n_s_os_identify); if (unlikely(!__pyx_t_4)) __PYX_ERR(0, 466, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_4); - __pyx_t_3 = NULL; - if (CYTHON_UNPACK_METHODS && unlikely(PyMethod_Check(__pyx_t_2))) { - __pyx_t_3 = PyMethod_GET_SELF(__pyx_t_2); - if (likely(__pyx_t_3)) { - PyObject* function = PyMethod_GET_FUNCTION(__pyx_t_2); - __Pyx_INCREF(__pyx_t_3); - __Pyx_INCREF(function); - __Pyx_DECREF_SET(__pyx_t_2, function); - } - } - __pyx_t_1 = (__pyx_t_3) ? __Pyx_PyObject_Call2Args(__pyx_t_2, __pyx_t_3, __pyx_t_4) : __Pyx_PyObject_CallOneArg(__pyx_t_2, __pyx_t_4); - __Pyx_XDECREF(__pyx_t_3); __pyx_t_3 = 0; - __Pyx_DECREF(__pyx_t_4); __pyx_t_4 = 0; - if (unlikely(!__pyx_t_1)) __PYX_ERR(0, 465, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_1); - __Pyx_DECREF(__pyx_t_2); __pyx_t_2 = 0; - if (PyDict_SetItem((PyObject *)__pyx_ptype_8pmercury_9protocols_3tls_TLS->tp_dict, __pyx_n_s_os_identify, __pyx_t_1) < 0) __PYX_ERR(0, 466, __pyx_L1_error) - __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0; - PyType_Modified(__pyx_ptype_8pmercury_9protocols_3tls_TLS); - - /* "(tree fragment)":1 - * def __pyx_unpickle_TLS(__pyx_type, long __pyx_checksum, __pyx_state): # <<<<<<<<<<<<<< - * cdef object __pyx_PickleError - * cdef object __pyx_result - */ - __pyx_t_1 = PyCFunction_NewEx(&__pyx_mdef_8pmercury_9protocols_3tls_1__pyx_unpickle_TLS, NULL, __pyx_n_s_pmercury_protocols_tls); if (unlikely(!__pyx_t_1)) __PYX_ERR(1, 1, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_1); - if (PyDict_SetItem(__pyx_d, __pyx_n_s_pyx_unpickle_TLS, __pyx_t_1) < 0) __PYX_ERR(1, 1, __pyx_L1_error) - __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0; - - /* "pmercury/protocols/tls.pyx":1 - * #cython: language_level=3, wraparound=False, cdivision=True, infer_types=True, initializedcheck=False, c_string_type=bytes, embedsignature=False, nonecheck=False # <<<<<<<<<<<<<< - * - * """ - */ - __pyx_t_1 = __Pyx_PyDict_NewPresized(0); if (unlikely(!__pyx_t_1)) __PYX_ERR(0, 1, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_1); - if (PyDict_SetItem(__pyx_d, __pyx_n_s_test, __pyx_t_1) < 0) __PYX_ERR(0, 1, __pyx_L1_error) - __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0; - - /*--- Wrapped vars code ---*/ - - goto __pyx_L0; - __pyx_L1_error:; - __Pyx_XDECREF(__pyx_t_1); - __Pyx_XDECREF(__pyx_t_2); - __Pyx_XDECREF(__pyx_t_3); - __Pyx_XDECREF(__pyx_t_4); - __Pyx_XDECREF(__pyx_t_5); - if (__pyx_m) { - if (__pyx_d) { - __Pyx_AddTraceback("init pmercury.protocols.tls", __pyx_clineno, __pyx_lineno, __pyx_filename); - } - Py_CLEAR(__pyx_m); - } else if (!PyErr_Occurred()) { - PyErr_SetString(PyExc_ImportError, "init pmercury.protocols.tls"); - } - __pyx_L0:; - __Pyx_RefNannyFinishContext(); - #if CYTHON_PEP489_MULTI_PHASE_INIT - return (__pyx_m != NULL) ? 0 : -1; - #elif PY_MAJOR_VERSION >= 3 - return __pyx_m; - #else - return; - #endif -} - -/* --- Runtime support code --- */ -/* Refnanny */ -#if CYTHON_REFNANNY -static __Pyx_RefNannyAPIStruct *__Pyx_RefNannyImportAPI(const char *modname) { - PyObject *m = NULL, *p = NULL; - void *r = NULL; - m = PyImport_ImportModule(modname); - if (!m) goto end; - p = PyObject_GetAttrString(m, "RefNannyAPI"); - if (!p) goto end; - r = PyLong_AsVoidPtr(p); -end: - Py_XDECREF(p); - Py_XDECREF(m); - return (__Pyx_RefNannyAPIStruct *)r; -} -#endif - -/* PyObjectGetAttrStr */ -#if CYTHON_USE_TYPE_SLOTS -static CYTHON_INLINE PyObject* __Pyx_PyObject_GetAttrStr(PyObject* obj, PyObject* attr_name) { - PyTypeObject* tp = Py_TYPE(obj); - if (likely(tp->tp_getattro)) - return tp->tp_getattro(obj, attr_name); -#if PY_MAJOR_VERSION < 3 - if (likely(tp->tp_getattr)) - return tp->tp_getattr(obj, PyString_AS_STRING(attr_name)); -#endif - return PyObject_GetAttr(obj, attr_name); -} -#endif - -/* GetBuiltinName */ -static PyObject *__Pyx_GetBuiltinName(PyObject *name) { - PyObject* result = __Pyx_PyObject_GetAttrStr(__pyx_b, name); - if (unlikely(!result)) { - PyErr_Format(PyExc_NameError, -#if PY_MAJOR_VERSION >= 3 - "name '%U' is not defined", name); -#else - "name '%.200s' is not defined", PyString_AS_STRING(name)); -#endif - } - return result; -} - -/* RaiseDoubleKeywords */ -static void __Pyx_RaiseDoubleKeywordsError( - const char* func_name, - PyObject* kw_name) -{ - PyErr_Format(PyExc_TypeError, - #if PY_MAJOR_VERSION >= 3 - "%s() got multiple values for keyword argument '%U'", func_name, kw_name); - #else - "%s() got multiple values for keyword argument '%s'", func_name, - PyString_AsString(kw_name)); - #endif -} - -/* ParseKeywords */ -static int __Pyx_ParseOptionalKeywords( - PyObject *kwds, - PyObject **argnames[], - PyObject *kwds2, - PyObject *values[], - Py_ssize_t num_pos_args, - const char* function_name) -{ - PyObject *key = 0, *value = 0; - Py_ssize_t pos = 0; - PyObject*** name; - PyObject*** first_kw_arg = argnames + num_pos_args; - while (PyDict_Next(kwds, &pos, &key, &value)) { - name = first_kw_arg; - while (*name && (**name != key)) name++; - if (*name) { - values[name-argnames] = value; - continue; - } - name = first_kw_arg; - #if PY_MAJOR_VERSION < 3 - if (likely(PyString_CheckExact(key)) || likely(PyString_Check(key))) { - while (*name) { - if ((CYTHON_COMPILING_IN_PYPY || PyString_GET_SIZE(**name) == PyString_GET_SIZE(key)) - && _PyString_Eq(**name, key)) { - values[name-argnames] = value; - break; - } - name++; - } - if (*name) continue; - else { - PyObject*** argname = argnames; - while (argname != first_kw_arg) { - if ((**argname == key) || ( - (CYTHON_COMPILING_IN_PYPY || PyString_GET_SIZE(**argname) == PyString_GET_SIZE(key)) - && _PyString_Eq(**argname, key))) { - goto arg_passed_twice; - } - argname++; - } - } - } else - #endif - if (likely(PyUnicode_Check(key))) { - while (*name) { - int cmp = (**name == key) ? 0 : - #if !CYTHON_COMPILING_IN_PYPY && PY_MAJOR_VERSION >= 3 - (PyUnicode_GET_SIZE(**name) != PyUnicode_GET_SIZE(key)) ? 1 : - #endif - PyUnicode_Compare(**name, key); - if (cmp < 0 && unlikely(PyErr_Occurred())) goto bad; - if (cmp == 0) { - values[name-argnames] = value; - break; - } - name++; - } - if (*name) continue; - else { - PyObject*** argname = argnames; - while (argname != first_kw_arg) { - int cmp = (**argname == key) ? 0 : - #if !CYTHON_COMPILING_IN_PYPY && PY_MAJOR_VERSION >= 3 - (PyUnicode_GET_SIZE(**argname) != PyUnicode_GET_SIZE(key)) ? 1 : - #endif - PyUnicode_Compare(**argname, key); - if (cmp < 0 && unlikely(PyErr_Occurred())) goto bad; - if (cmp == 0) goto arg_passed_twice; - argname++; - } - } - } else - goto invalid_keyword_type; - if (kwds2) { - if (unlikely(PyDict_SetItem(kwds2, key, value))) goto bad; - } else { - goto invalid_keyword; - } - } - return 0; -arg_passed_twice: - __Pyx_RaiseDoubleKeywordsError(function_name, key); - goto bad; -invalid_keyword_type: - PyErr_Format(PyExc_TypeError, - "%.200s() keywords must be strings", function_name); - goto bad; -invalid_keyword: - PyErr_Format(PyExc_TypeError, - #if PY_MAJOR_VERSION < 3 - "%.200s() got an unexpected keyword argument '%.200s'", - function_name, PyString_AsString(key)); - #else - "%s() got an unexpected keyword argument '%U'", - function_name, key); - #endif -bad: - return -1; -} - -/* RaiseArgTupleInvalid */ -static void __Pyx_RaiseArgtupleInvalid( - const char* func_name, - int exact, - Py_ssize_t num_min, - Py_ssize_t num_max, - Py_ssize_t num_found) -{ - Py_ssize_t num_expected; - const char *more_or_less; - if (num_found < num_min) { - num_expected = num_min; - more_or_less = "at least"; - } else { - num_expected = num_max; - more_or_less = "at most"; - } - if (exact) { - more_or_less = "exactly"; - } - PyErr_Format(PyExc_TypeError, - "%.200s() takes %.8s %" CYTHON_FORMAT_SSIZE_T "d positional argument%.1s (%" CYTHON_FORMAT_SSIZE_T "d given)", - func_name, more_or_less, num_expected, - (num_expected == 1) ? "" : "s", num_found); -} - -/* BytesEquals */ -static CYTHON_INLINE int __Pyx_PyBytes_Equals(PyObject* s1, PyObject* s2, int equals) { -#if CYTHON_COMPILING_IN_PYPY - return PyObject_RichCompareBool(s1, s2, equals); -#else - if (s1 == s2) { - return (equals == Py_EQ); - } else if (PyBytes_CheckExact(s1) & PyBytes_CheckExact(s2)) { - const char *ps1, *ps2; - Py_ssize_t length = PyBytes_GET_SIZE(s1); - if (length != PyBytes_GET_SIZE(s2)) - return (equals == Py_NE); - ps1 = PyBytes_AS_STRING(s1); - ps2 = PyBytes_AS_STRING(s2); - if (ps1[0] != ps2[0]) { - return (equals == Py_NE); - } else if (length == 1) { - return (equals == Py_EQ); - } else { - int result; -#if CYTHON_USE_UNICODE_INTERNALS - Py_hash_t hash1, hash2; - hash1 = ((PyBytesObject*)s1)->ob_shash; - hash2 = ((PyBytesObject*)s2)->ob_shash; - if (hash1 != hash2 && hash1 != -1 && hash2 != -1) { - return (equals == Py_NE); - } -#endif - result = memcmp(ps1, ps2, (size_t)length); - return (equals == Py_EQ) ? (result == 0) : (result != 0); - } - } else if ((s1 == Py_None) & PyBytes_CheckExact(s2)) { - return (equals == Py_NE); - } else if ((s2 == Py_None) & PyBytes_CheckExact(s1)) { - return (equals == Py_NE); - } else { - int result; - PyObject* py_result = PyObject_RichCompare(s1, s2, equals); - if (!py_result) - return -1; - result = __Pyx_PyObject_IsTrue(py_result); - Py_DECREF(py_result); - return result; - } -#endif -} - -/* UnicodeEquals */ -static CYTHON_INLINE int __Pyx_PyUnicode_Equals(PyObject* s1, PyObject* s2, int equals) { -#if CYTHON_COMPILING_IN_PYPY - return PyObject_RichCompareBool(s1, s2, equals); -#else -#if PY_MAJOR_VERSION < 3 - PyObject* owned_ref = NULL; -#endif - int s1_is_unicode, s2_is_unicode; - if (s1 == s2) { - goto return_eq; - } - s1_is_unicode = PyUnicode_CheckExact(s1); - s2_is_unicode = PyUnicode_CheckExact(s2); -#if PY_MAJOR_VERSION < 3 - if ((s1_is_unicode & (!s2_is_unicode)) && PyString_CheckExact(s2)) { - owned_ref = PyUnicode_FromObject(s2); - if (unlikely(!owned_ref)) - return -1; - s2 = owned_ref; - s2_is_unicode = 1; - } else if ((s2_is_unicode & (!s1_is_unicode)) && PyString_CheckExact(s1)) { - owned_ref = PyUnicode_FromObject(s1); - if (unlikely(!owned_ref)) - return -1; - s1 = owned_ref; - s1_is_unicode = 1; - } else if (((!s2_is_unicode) & (!s1_is_unicode))) { - return __Pyx_PyBytes_Equals(s1, s2, equals); - } -#endif - if (s1_is_unicode & s2_is_unicode) { - Py_ssize_t length; - int kind; - void *data1, *data2; - if (unlikely(__Pyx_PyUnicode_READY(s1) < 0) || unlikely(__Pyx_PyUnicode_READY(s2) < 0)) - return -1; - length = __Pyx_PyUnicode_GET_LENGTH(s1); - if (length != __Pyx_PyUnicode_GET_LENGTH(s2)) { - goto return_ne; - } -#if CYTHON_USE_UNICODE_INTERNALS - { - Py_hash_t hash1, hash2; - #if CYTHON_PEP393_ENABLED - hash1 = ((PyASCIIObject*)s1)->hash; - hash2 = ((PyASCIIObject*)s2)->hash; - #else - hash1 = ((PyUnicodeObject*)s1)->hash; - hash2 = ((PyUnicodeObject*)s2)->hash; - #endif - if (hash1 != hash2 && hash1 != -1 && hash2 != -1) { - goto return_ne; - } - } -#endif - kind = __Pyx_PyUnicode_KIND(s1); - if (kind != __Pyx_PyUnicode_KIND(s2)) { - goto return_ne; - } - data1 = __Pyx_PyUnicode_DATA(s1); - data2 = __Pyx_PyUnicode_DATA(s2); - if (__Pyx_PyUnicode_READ(kind, data1, 0) != __Pyx_PyUnicode_READ(kind, data2, 0)) { - goto return_ne; - } else if (length == 1) { - goto return_eq; - } else { - int result = memcmp(data1, data2, (size_t)(length * kind)); - #if PY_MAJOR_VERSION < 3 - Py_XDECREF(owned_ref); - #endif - return (equals == Py_EQ) ? (result == 0) : (result != 0); - } - } else if ((s1 == Py_None) & s2_is_unicode) { - goto return_ne; - } else if ((s2 == Py_None) & s1_is_unicode) { - goto return_ne; - } else { - int result; - PyObject* py_result = PyObject_RichCompare(s1, s2, equals); - #if PY_MAJOR_VERSION < 3 - Py_XDECREF(owned_ref); - #endif - if (!py_result) - return -1; - result = __Pyx_PyObject_IsTrue(py_result); - Py_DECREF(py_result); - return result; - } -return_eq: - #if PY_MAJOR_VERSION < 3 - Py_XDECREF(owned_ref); - #endif - return (equals == Py_EQ); -return_ne: - #if PY_MAJOR_VERSION < 3 - Py_XDECREF(owned_ref); - #endif - return (equals == Py_NE); -#endif -} - -/* PyDictVersioning */ -#if CYTHON_USE_DICT_VERSIONS && CYTHON_USE_TYPE_SLOTS -static CYTHON_INLINE PY_UINT64_T __Pyx_get_tp_dict_version(PyObject *obj) { - PyObject *dict = Py_TYPE(obj)->tp_dict; - return likely(dict) ? __PYX_GET_DICT_VERSION(dict) : 0; -} -static CYTHON_INLINE PY_UINT64_T __Pyx_get_object_dict_version(PyObject *obj) { - PyObject **dictptr = NULL; - Py_ssize_t offset = Py_TYPE(obj)->tp_dictoffset; - if (offset) { -#if CYTHON_COMPILING_IN_CPYTHON - dictptr = (likely(offset > 0)) ? (PyObject **) ((char *)obj + offset) : _PyObject_GetDictPtr(obj); -#else - dictptr = _PyObject_GetDictPtr(obj); -#endif - } - return (dictptr && *dictptr) ? __PYX_GET_DICT_VERSION(*dictptr) : 0; -} -static CYTHON_INLINE int __Pyx_object_dict_version_matches(PyObject* obj, PY_UINT64_T tp_dict_version, PY_UINT64_T obj_dict_version) { - PyObject *dict = Py_TYPE(obj)->tp_dict; - if (unlikely(!dict) || unlikely(tp_dict_version != __PYX_GET_DICT_VERSION(dict))) - return 0; - return obj_dict_version == __Pyx_get_object_dict_version(obj); -} -#endif - -/* GetModuleGlobalName */ -#if CYTHON_USE_DICT_VERSIONS -static PyObject *__Pyx__GetModuleGlobalName(PyObject *name, PY_UINT64_T *dict_version, PyObject **dict_cached_value) -#else -static CYTHON_INLINE PyObject *__Pyx__GetModuleGlobalName(PyObject *name) -#endif -{ - PyObject *result; -#if !CYTHON_AVOID_BORROWED_REFS -#if CYTHON_COMPILING_IN_CPYTHON && PY_VERSION_HEX >= 0x030500A1 - result = _PyDict_GetItem_KnownHash(__pyx_d, name, ((PyASCIIObject *) name)->hash); - __PYX_UPDATE_DICT_CACHE(__pyx_d, result, *dict_cached_value, *dict_version) - if (likely(result)) { - return __Pyx_NewRef(result); - } else if (unlikely(PyErr_Occurred())) { - return NULL; - } -#else - result = PyDict_GetItem(__pyx_d, name); - __PYX_UPDATE_DICT_CACHE(__pyx_d, result, *dict_cached_value, *dict_version) - if (likely(result)) { - return __Pyx_NewRef(result); - } -#endif -#else - result = PyObject_GetItem(__pyx_d, name); - __PYX_UPDATE_DICT_CACHE(__pyx_d, result, *dict_cached_value, *dict_version) - if (likely(result)) { - return __Pyx_NewRef(result); - } - PyErr_Clear(); -#endif - return __Pyx_GetBuiltinName(name); -} - -/* PyCFunctionFastCall */ -#if CYTHON_FAST_PYCCALL -static CYTHON_INLINE PyObject * __Pyx_PyCFunction_FastCall(PyObject *func_obj, PyObject **args, Py_ssize_t nargs) { - PyCFunctionObject *func = (PyCFunctionObject*)func_obj; - PyCFunction meth = PyCFunction_GET_FUNCTION(func); - PyObject *self = PyCFunction_GET_SELF(func); - int flags = PyCFunction_GET_FLAGS(func); - assert(PyCFunction_Check(func)); - assert(METH_FASTCALL == (flags & ~(METH_CLASS | METH_STATIC | METH_COEXIST | METH_KEYWORDS | METH_STACKLESS))); - assert(nargs >= 0); - assert(nargs == 0 || args != NULL); - /* _PyCFunction_FastCallDict() must not be called with an exception set, - because it may clear it (directly or indirectly) and so the - caller loses its exception */ - assert(!PyErr_Occurred()); - if ((PY_VERSION_HEX < 0x030700A0) || unlikely(flags & METH_KEYWORDS)) { - return (*((__Pyx_PyCFunctionFastWithKeywords)(void*)meth)) (self, args, nargs, NULL); - } else { - return (*((__Pyx_PyCFunctionFast)(void*)meth)) (self, args, nargs); - } -} -#endif - -/* PyFunctionFastCall */ -#if CYTHON_FAST_PYCALL -static PyObject* __Pyx_PyFunction_FastCallNoKw(PyCodeObject *co, PyObject **args, Py_ssize_t na, - PyObject *globals) { - PyFrameObject *f; - PyThreadState *tstate = __Pyx_PyThreadState_Current; - PyObject **fastlocals; - Py_ssize_t i; - PyObject *result; - assert(globals != NULL); - /* XXX Perhaps we should create a specialized - PyFrame_New() that doesn't take locals, but does - take builtins without sanity checking them. - */ - assert(tstate != NULL); - f = PyFrame_New(tstate, co, globals, NULL); - if (f == NULL) { - return NULL; - } - fastlocals = __Pyx_PyFrame_GetLocalsplus(f); - for (i = 0; i < na; i++) { - Py_INCREF(*args); - fastlocals[i] = *args++; - } - result = PyEval_EvalFrameEx(f,0); - ++tstate->recursion_depth; - Py_DECREF(f); - --tstate->recursion_depth; - return result; -} -#if 1 || PY_VERSION_HEX < 0x030600B1 -static PyObject *__Pyx_PyFunction_FastCallDict(PyObject *func, PyObject **args, Py_ssize_t nargs, PyObject *kwargs) { - PyCodeObject *co = (PyCodeObject *)PyFunction_GET_CODE(func); - PyObject *globals = PyFunction_GET_GLOBALS(func); - PyObject *argdefs = PyFunction_GET_DEFAULTS(func); - PyObject *closure; -#if PY_MAJOR_VERSION >= 3 - PyObject *kwdefs; -#endif - PyObject *kwtuple, **k; - PyObject **d; - Py_ssize_t nd; - Py_ssize_t nk; - PyObject *result; - assert(kwargs == NULL || PyDict_Check(kwargs)); - nk = kwargs ? PyDict_Size(kwargs) : 0; - if (Py_EnterRecursiveCall((char*)" while calling a Python object")) { - return NULL; - } - if ( -#if PY_MAJOR_VERSION >= 3 - co->co_kwonlyargcount == 0 && -#endif - likely(kwargs == NULL || nk == 0) && - co->co_flags == (CO_OPTIMIZED | CO_NEWLOCALS | CO_NOFREE)) { - if (argdefs == NULL && co->co_argcount == nargs) { - result = __Pyx_PyFunction_FastCallNoKw(co, args, nargs, globals); - goto done; - } - else if (nargs == 0 && argdefs != NULL - && co->co_argcount == Py_SIZE(argdefs)) { - /* function called with no arguments, but all parameters have - a default value: use default values as arguments .*/ - args = &PyTuple_GET_ITEM(argdefs, 0); - result =__Pyx_PyFunction_FastCallNoKw(co, args, Py_SIZE(argdefs), globals); - goto done; - } - } - if (kwargs != NULL) { - Py_ssize_t pos, i; - kwtuple = PyTuple_New(2 * nk); - if (kwtuple == NULL) { - result = NULL; - goto done; - } - k = &PyTuple_GET_ITEM(kwtuple, 0); - pos = i = 0; - while (PyDict_Next(kwargs, &pos, &k[i], &k[i+1])) { - Py_INCREF(k[i]); - Py_INCREF(k[i+1]); - i += 2; - } - nk = i / 2; - } - else { - kwtuple = NULL; - k = NULL; - } - closure = PyFunction_GET_CLOSURE(func); -#if PY_MAJOR_VERSION >= 3 - kwdefs = PyFunction_GET_KW_DEFAULTS(func); -#endif - if (argdefs != NULL) { - d = &PyTuple_GET_ITEM(argdefs, 0); - nd = Py_SIZE(argdefs); - } - else { - d = NULL; - nd = 0; - } -#if PY_MAJOR_VERSION >= 3 - result = PyEval_EvalCodeEx((PyObject*)co, globals, (PyObject *)NULL, - args, (int)nargs, - k, (int)nk, - d, (int)nd, kwdefs, closure); -#else - result = PyEval_EvalCodeEx(co, globals, (PyObject *)NULL, - args, (int)nargs, - k, (int)nk, - d, (int)nd, closure); -#endif - Py_XDECREF(kwtuple); -done: - Py_LeaveRecursiveCall(); - return result; -} -#endif -#endif - -/* PyObjectCall */ -#if CYTHON_COMPILING_IN_CPYTHON -static CYTHON_INLINE PyObject* __Pyx_PyObject_Call(PyObject *func, PyObject *arg, PyObject *kw) { - PyObject *result; - ternaryfunc call = func->ob_type->tp_call; - if (unlikely(!call)) - return PyObject_Call(func, arg, kw); - if (unlikely(Py_EnterRecursiveCall((char*)" while calling a Python object"))) - return NULL; - result = (*call)(func, arg, kw); - Py_LeaveRecursiveCall(); - if (unlikely(!result) && unlikely(!PyErr_Occurred())) { - PyErr_SetString( - PyExc_SystemError, - "NULL result without error in PyObject_Call"); - } - return result; -} -#endif - -/* PyObjectCall2Args */ -static CYTHON_UNUSED PyObject* __Pyx_PyObject_Call2Args(PyObject* function, PyObject* arg1, PyObject* arg2) { - PyObject *args, *result = NULL; - #if CYTHON_FAST_PYCALL - if (PyFunction_Check(function)) { - PyObject *args[2] = {arg1, arg2}; - return __Pyx_PyFunction_FastCall(function, args, 2); - } - #endif - #if CYTHON_FAST_PYCCALL - if (__Pyx_PyFastCFunction_Check(function)) { - PyObject *args[2] = {arg1, arg2}; - return __Pyx_PyCFunction_FastCall(function, args, 2); - } - #endif - args = PyTuple_New(2); - if (unlikely(!args)) goto done; - Py_INCREF(arg1); - PyTuple_SET_ITEM(args, 0, arg1); - Py_INCREF(arg2); - PyTuple_SET_ITEM(args, 1, arg2); - Py_INCREF(function); - result = __Pyx_PyObject_Call(function, args, NULL); - Py_DECREF(args); - Py_DECREF(function); -done: - return result; -} - -/* PyObjectCallMethO */ -#if CYTHON_COMPILING_IN_CPYTHON -static CYTHON_INLINE PyObject* __Pyx_PyObject_CallMethO(PyObject *func, PyObject *arg) { - PyObject *self, *result; - PyCFunction cfunc; - cfunc = PyCFunction_GET_FUNCTION(func); - self = PyCFunction_GET_SELF(func); - if (unlikely(Py_EnterRecursiveCall((char*)" while calling a Python object"))) - return NULL; - result = cfunc(self, arg); - Py_LeaveRecursiveCall(); - if (unlikely(!result) && unlikely(!PyErr_Occurred())) { - PyErr_SetString( - PyExc_SystemError, - "NULL result without error in PyObject_Call"); - } - return result; -} -#endif - -/* PyObjectCallOneArg */ -#if CYTHON_COMPILING_IN_CPYTHON -static PyObject* __Pyx__PyObject_CallOneArg(PyObject *func, PyObject *arg) { - PyObject *result; - PyObject *args = PyTuple_New(1); - if (unlikely(!args)) return NULL; - Py_INCREF(arg); - PyTuple_SET_ITEM(args, 0, arg); - result = __Pyx_PyObject_Call(func, args, NULL); - Py_DECREF(args); - return result; -} -static CYTHON_INLINE PyObject* __Pyx_PyObject_CallOneArg(PyObject *func, PyObject *arg) { -#if CYTHON_FAST_PYCALL - if (PyFunction_Check(func)) { - return __Pyx_PyFunction_FastCall(func, &arg, 1); - } -#endif - if (likely(PyCFunction_Check(func))) { - if (likely(PyCFunction_GET_FLAGS(func) & METH_O)) { - return __Pyx_PyObject_CallMethO(func, arg); -#if CYTHON_FAST_PYCCALL - } else if (PyCFunction_GET_FLAGS(func) & METH_FASTCALL) { - return __Pyx_PyCFunction_FastCall(func, &arg, 1); -#endif - } - } - return __Pyx__PyObject_CallOneArg(func, arg); -} -#else -static CYTHON_INLINE PyObject* __Pyx_PyObject_CallOneArg(PyObject *func, PyObject *arg) { - PyObject *result; - PyObject *args = PyTuple_Pack(1, arg); - if (unlikely(!args)) return NULL; - result = __Pyx_PyObject_Call(func, args, NULL); - Py_DECREF(args); - return result; -} -#endif - -/* PyObjectCallNoArg */ -#if CYTHON_COMPILING_IN_CPYTHON -static CYTHON_INLINE PyObject* __Pyx_PyObject_CallNoArg(PyObject *func) { -#if CYTHON_FAST_PYCALL - if (PyFunction_Check(func)) { - return __Pyx_PyFunction_FastCall(func, NULL, 0); - } -#endif -#ifdef __Pyx_CyFunction_USED - if (likely(PyCFunction_Check(func) || __Pyx_CyFunction_Check(func))) -#else - if (likely(PyCFunction_Check(func))) -#endif - { - if (likely(PyCFunction_GET_FLAGS(func) & METH_NOARGS)) { - return __Pyx_PyObject_CallMethO(func, NULL); - } - } - return __Pyx_PyObject_Call(func, __pyx_empty_tuple, NULL); -} -#endif - -/* GetItemInt */ -static PyObject *__Pyx_GetItemInt_Generic(PyObject *o, PyObject* j) { - PyObject *r; - if (!j) return NULL; - r = PyObject_GetItem(o, j); - Py_DECREF(j); - return r; -} -static CYTHON_INLINE PyObject *__Pyx_GetItemInt_List_Fast(PyObject *o, Py_ssize_t i, - CYTHON_NCP_UNUSED int wraparound, - CYTHON_NCP_UNUSED int boundscheck) { -#if CYTHON_ASSUME_SAFE_MACROS && !CYTHON_AVOID_BORROWED_REFS - Py_ssize_t wrapped_i = i; - if (wraparound & unlikely(i < 0)) { - wrapped_i += PyList_GET_SIZE(o); - } - if ((!boundscheck) || likely(__Pyx_is_valid_index(wrapped_i, PyList_GET_SIZE(o)))) { - PyObject *r = PyList_GET_ITEM(o, wrapped_i); - Py_INCREF(r); - return r; - } - return __Pyx_GetItemInt_Generic(o, PyInt_FromSsize_t(i)); -#else - return PySequence_GetItem(o, i); -#endif -} -static CYTHON_INLINE PyObject *__Pyx_GetItemInt_Tuple_Fast(PyObject *o, Py_ssize_t i, - CYTHON_NCP_UNUSED int wraparound, - CYTHON_NCP_UNUSED int boundscheck) { -#if CYTHON_ASSUME_SAFE_MACROS && !CYTHON_AVOID_BORROWED_REFS - Py_ssize_t wrapped_i = i; - if (wraparound & unlikely(i < 0)) { - wrapped_i += PyTuple_GET_SIZE(o); - } - if ((!boundscheck) || likely(__Pyx_is_valid_index(wrapped_i, PyTuple_GET_SIZE(o)))) { - PyObject *r = PyTuple_GET_ITEM(o, wrapped_i); - Py_INCREF(r); - return r; - } - return __Pyx_GetItemInt_Generic(o, PyInt_FromSsize_t(i)); -#else - return PySequence_GetItem(o, i); -#endif -} -static CYTHON_INLINE PyObject *__Pyx_GetItemInt_Fast(PyObject *o, Py_ssize_t i, int is_list, - CYTHON_NCP_UNUSED int wraparound, - CYTHON_NCP_UNUSED int boundscheck) { -#if CYTHON_ASSUME_SAFE_MACROS && !CYTHON_AVOID_BORROWED_REFS && CYTHON_USE_TYPE_SLOTS - if (is_list || PyList_CheckExact(o)) { - Py_ssize_t n = ((!wraparound) | likely(i >= 0)) ? i : i + PyList_GET_SIZE(o); - if ((!boundscheck) || (likely(__Pyx_is_valid_index(n, PyList_GET_SIZE(o))))) { - PyObject *r = PyList_GET_ITEM(o, n); - Py_INCREF(r); - return r; - } - } - else if (PyTuple_CheckExact(o)) { - Py_ssize_t n = ((!wraparound) | likely(i >= 0)) ? i : i + PyTuple_GET_SIZE(o); - if ((!boundscheck) || likely(__Pyx_is_valid_index(n, PyTuple_GET_SIZE(o)))) { - PyObject *r = PyTuple_GET_ITEM(o, n); - Py_INCREF(r); - return r; - } - } else { - PySequenceMethods *m = Py_TYPE(o)->tp_as_sequence; - if (likely(m && m->sq_item)) { - if (wraparound && unlikely(i < 0) && likely(m->sq_length)) { - Py_ssize_t l = m->sq_length(o); - if (likely(l >= 0)) { - i += l; - } else { - if (!PyErr_ExceptionMatches(PyExc_OverflowError)) - return NULL; - PyErr_Clear(); - } - } - return m->sq_item(o, i); - } - } -#else - if (is_list || PySequence_Check(o)) { - return PySequence_GetItem(o, i); - } -#endif - return __Pyx_GetItemInt_Generic(o, PyInt_FromSsize_t(i)); -} - -/* DictGetItem */ -#if PY_MAJOR_VERSION >= 3 && !CYTHON_COMPILING_IN_PYPY -static PyObject *__Pyx_PyDict_GetItem(PyObject *d, PyObject* key) { - PyObject *value; - value = PyDict_GetItemWithError(d, key); - if (unlikely(!value)) { - if (!PyErr_Occurred()) { - if (unlikely(PyTuple_Check(key))) { - PyObject* args = PyTuple_Pack(1, key); - if (likely(args)) { - PyErr_SetObject(PyExc_KeyError, args); - Py_DECREF(args); - } - } else { - PyErr_SetObject(PyExc_KeyError, key); - } - } - return NULL; - } - Py_INCREF(value); - return value; -} -#endif - -/* ArgTypeTest */ -static int __Pyx__ArgTypeTest(PyObject *obj, PyTypeObject *type, const char *name, int exact) -{ - if (unlikely(!type)) { - PyErr_SetString(PyExc_SystemError, "Missing type object"); - return 0; - } - else if (exact) { - #if PY_MAJOR_VERSION == 2 - if ((type == &PyBaseString_Type) && likely(__Pyx_PyBaseString_CheckExact(obj))) return 1; - #endif - } - else { - if (likely(__Pyx_TypeCheck(obj, type))) return 1; - } - PyErr_Format(PyExc_TypeError, - "Argument '%.200s' has incorrect type (expected %.200s, got %.200s)", - name, type->tp_name, Py_TYPE(obj)->tp_name); - return 0; -} - -/* None */ -static CYTHON_INLINE void __Pyx_RaiseUnboundLocalError(const char *varname) { - PyErr_Format(PyExc_UnboundLocalError, "local variable '%s' referenced before assignment", varname); -} - -/* PyIntCompare */ -static CYTHON_INLINE PyObject* __Pyx_PyInt_EqObjC(PyObject *op1, PyObject *op2, CYTHON_UNUSED long intval, CYTHON_UNUSED long inplace) { - if (op1 == op2) { - Py_RETURN_TRUE; - } - #if PY_MAJOR_VERSION < 3 - if (likely(PyInt_CheckExact(op1))) { - const long b = intval; - long a = PyInt_AS_LONG(op1); - if (a == b) Py_RETURN_TRUE; else Py_RETURN_FALSE; - } - #endif - #if CYTHON_USE_PYLONG_INTERNALS - if (likely(PyLong_CheckExact(op1))) { - int unequal; - unsigned long uintval; - Py_ssize_t size = Py_SIZE(op1); - const digit* digits = ((PyLongObject*)op1)->ob_digit; - if (intval == 0) { - if (size == 0) Py_RETURN_TRUE; else Py_RETURN_FALSE; - } else if (intval < 0) { - if (size >= 0) - Py_RETURN_FALSE; - intval = -intval; - size = -size; - } else { - if (size <= 0) - Py_RETURN_FALSE; - } - uintval = (unsigned long) intval; -#if PyLong_SHIFT * 4 < SIZEOF_LONG*8 - if (uintval >> (PyLong_SHIFT * 4)) { - unequal = (size != 5) || (digits[0] != (uintval & (unsigned long) PyLong_MASK)) - | (digits[1] != ((uintval >> (1 * PyLong_SHIFT)) & (unsigned long) PyLong_MASK)) | (digits[2] != ((uintval >> (2 * PyLong_SHIFT)) & (unsigned long) PyLong_MASK)) | (digits[3] != ((uintval >> (3 * PyLong_SHIFT)) & (unsigned long) PyLong_MASK)) | (digits[4] != ((uintval >> (4 * PyLong_SHIFT)) & (unsigned long) PyLong_MASK)); - } else -#endif -#if PyLong_SHIFT * 3 < SIZEOF_LONG*8 - if (uintval >> (PyLong_SHIFT * 3)) { - unequal = (size != 4) || (digits[0] != (uintval & (unsigned long) PyLong_MASK)) - | (digits[1] != ((uintval >> (1 * PyLong_SHIFT)) & (unsigned long) PyLong_MASK)) | (digits[2] != ((uintval >> (2 * PyLong_SHIFT)) & (unsigned long) PyLong_MASK)) | (digits[3] != ((uintval >> (3 * PyLong_SHIFT)) & (unsigned long) PyLong_MASK)); - } else -#endif -#if PyLong_SHIFT * 2 < SIZEOF_LONG*8 - if (uintval >> (PyLong_SHIFT * 2)) { - unequal = (size != 3) || (digits[0] != (uintval & (unsigned long) PyLong_MASK)) - | (digits[1] != ((uintval >> (1 * PyLong_SHIFT)) & (unsigned long) PyLong_MASK)) | (digits[2] != ((uintval >> (2 * PyLong_SHIFT)) & (unsigned long) PyLong_MASK)); - } else -#endif -#if PyLong_SHIFT * 1 < SIZEOF_LONG*8 - if (uintval >> (PyLong_SHIFT * 1)) { - unequal = (size != 2) || (digits[0] != (uintval & (unsigned long) PyLong_MASK)) - | (digits[1] != ((uintval >> (1 * PyLong_SHIFT)) & (unsigned long) PyLong_MASK)); - } else -#endif - unequal = (size != 1) || (((unsigned long) digits[0]) != (uintval & (unsigned long) PyLong_MASK)); - if (unequal == 0) Py_RETURN_TRUE; else Py_RETURN_FALSE; - } - #endif - if (PyFloat_CheckExact(op1)) { - const long b = intval; - double a = PyFloat_AS_DOUBLE(op1); - if ((double)a == (double)b) Py_RETURN_TRUE; else Py_RETURN_FALSE; - } - return ( - PyObject_RichCompare(op1, op2, Py_EQ)); -} - -/* ObjectGetItem */ -#if CYTHON_USE_TYPE_SLOTS -static PyObject *__Pyx_PyObject_GetIndex(PyObject *obj, PyObject* index) { - PyObject *runerr; - Py_ssize_t key_value; - PySequenceMethods *m = Py_TYPE(obj)->tp_as_sequence; - if (unlikely(!(m && m->sq_item))) { - PyErr_Format(PyExc_TypeError, "'%.200s' object is not subscriptable", Py_TYPE(obj)->tp_name); - return NULL; - } - key_value = __Pyx_PyIndex_AsSsize_t(index); - if (likely(key_value != -1 || !(runerr = PyErr_Occurred()))) { - return __Pyx_GetItemInt_Fast(obj, key_value, 0, 1, 1); - } - if (PyErr_GivenExceptionMatches(runerr, PyExc_OverflowError)) { - PyErr_Clear(); - PyErr_Format(PyExc_IndexError, "cannot fit '%.200s' into an index-sized integer", Py_TYPE(index)->tp_name); - } - return NULL; -} -static PyObject *__Pyx_PyObject_GetItem(PyObject *obj, PyObject* key) { - PyMappingMethods *m = Py_TYPE(obj)->tp_as_mapping; - if (likely(m && m->mp_subscript)) { - return m->mp_subscript(obj, key); - } - return __Pyx_PyObject_GetIndex(obj, key); -} -#endif - -/* PyIntBinop */ -#if !CYTHON_COMPILING_IN_PYPY -static PyObject* __Pyx_PyInt_AddObjC(PyObject *op1, PyObject *op2, CYTHON_UNUSED long intval, int inplace, int zerodivision_check) { - (void)inplace; - (void)zerodivision_check; - #if PY_MAJOR_VERSION < 3 - if (likely(PyInt_CheckExact(op1))) { - const long b = intval; - long x; - long a = PyInt_AS_LONG(op1); - x = (long)((unsigned long)a + b); - if (likely((x^a) >= 0 || (x^b) >= 0)) - return PyInt_FromLong(x); - return PyLong_Type.tp_as_number->nb_add(op1, op2); - } - #endif - #if CYTHON_USE_PYLONG_INTERNALS - if (likely(PyLong_CheckExact(op1))) { - const long b = intval; - long a, x; -#ifdef HAVE_LONG_LONG - const PY_LONG_LONG llb = intval; - PY_LONG_LONG lla, llx; -#endif - const digit* digits = ((PyLongObject*)op1)->ob_digit; - const Py_ssize_t size = Py_SIZE(op1); - if (likely(__Pyx_sst_abs(size) <= 1)) { - a = likely(size) ? digits[0] : 0; - if (size == -1) a = -a; - } else { - switch (size) { - case -2: - if (8 * sizeof(long) - 1 > 2 * PyLong_SHIFT) { - a = -(long) (((((unsigned long)digits[1]) << PyLong_SHIFT) | (unsigned long)digits[0])); - break; -#ifdef HAVE_LONG_LONG - } else if (8 * sizeof(PY_LONG_LONG) - 1 > 2 * PyLong_SHIFT) { - lla = -(PY_LONG_LONG) (((((unsigned PY_LONG_LONG)digits[1]) << PyLong_SHIFT) | (unsigned PY_LONG_LONG)digits[0])); - goto long_long; -#endif - } - CYTHON_FALLTHROUGH; - case 2: - if (8 * sizeof(long) - 1 > 2 * PyLong_SHIFT) { - a = (long) (((((unsigned long)digits[1]) << PyLong_SHIFT) | (unsigned long)digits[0])); - break; -#ifdef HAVE_LONG_LONG - } else if (8 * sizeof(PY_LONG_LONG) - 1 > 2 * PyLong_SHIFT) { - lla = (PY_LONG_LONG) (((((unsigned PY_LONG_LONG)digits[1]) << PyLong_SHIFT) | (unsigned PY_LONG_LONG)digits[0])); - goto long_long; -#endif - } - CYTHON_FALLTHROUGH; - case -3: - if (8 * sizeof(long) - 1 > 3 * PyLong_SHIFT) { - a = -(long) (((((((unsigned long)digits[2]) << PyLong_SHIFT) | (unsigned long)digits[1]) << PyLong_SHIFT) | (unsigned long)digits[0])); - break; -#ifdef HAVE_LONG_LONG - } else if (8 * sizeof(PY_LONG_LONG) - 1 > 3 * PyLong_SHIFT) { - lla = -(PY_LONG_LONG) (((((((unsigned PY_LONG_LONG)digits[2]) << PyLong_SHIFT) | (unsigned PY_LONG_LONG)digits[1]) << PyLong_SHIFT) | (unsigned PY_LONG_LONG)digits[0])); - goto long_long; -#endif - } - CYTHON_FALLTHROUGH; - case 3: - if (8 * sizeof(long) - 1 > 3 * PyLong_SHIFT) { - a = (long) (((((((unsigned long)digits[2]) << PyLong_SHIFT) | (unsigned long)digits[1]) << PyLong_SHIFT) | (unsigned long)digits[0])); - break; -#ifdef HAVE_LONG_LONG - } else if (8 * sizeof(PY_LONG_LONG) - 1 > 3 * PyLong_SHIFT) { - lla = (PY_LONG_LONG) (((((((unsigned PY_LONG_LONG)digits[2]) << PyLong_SHIFT) | (unsigned PY_LONG_LONG)digits[1]) << PyLong_SHIFT) | (unsigned PY_LONG_LONG)digits[0])); - goto long_long; -#endif - } - CYTHON_FALLTHROUGH; - case -4: - if (8 * sizeof(long) - 1 > 4 * PyLong_SHIFT) { - a = -(long) (((((((((unsigned long)digits[3]) << PyLong_SHIFT) | (unsigned long)digits[2]) << PyLong_SHIFT) | (unsigned long)digits[1]) << PyLong_SHIFT) | (unsigned long)digits[0])); - break; -#ifdef HAVE_LONG_LONG - } else if (8 * sizeof(PY_LONG_LONG) - 1 > 4 * PyLong_SHIFT) { - lla = -(PY_LONG_LONG) (((((((((unsigned PY_LONG_LONG)digits[3]) << PyLong_SHIFT) | (unsigned PY_LONG_LONG)digits[2]) << PyLong_SHIFT) | (unsigned PY_LONG_LONG)digits[1]) << PyLong_SHIFT) | (unsigned PY_LONG_LONG)digits[0])); - goto long_long; -#endif - } - CYTHON_FALLTHROUGH; - case 4: - if (8 * sizeof(long) - 1 > 4 * PyLong_SHIFT) { - a = (long) (((((((((unsigned long)digits[3]) << PyLong_SHIFT) | (unsigned long)digits[2]) << PyLong_SHIFT) | (unsigned long)digits[1]) << PyLong_SHIFT) | (unsigned long)digits[0])); - break; -#ifdef HAVE_LONG_LONG - } else if (8 * sizeof(PY_LONG_LONG) - 1 > 4 * PyLong_SHIFT) { - lla = (PY_LONG_LONG) (((((((((unsigned PY_LONG_LONG)digits[3]) << PyLong_SHIFT) | (unsigned PY_LONG_LONG)digits[2]) << PyLong_SHIFT) | (unsigned PY_LONG_LONG)digits[1]) << PyLong_SHIFT) | (unsigned PY_LONG_LONG)digits[0])); - goto long_long; -#endif - } - CYTHON_FALLTHROUGH; - default: return PyLong_Type.tp_as_number->nb_add(op1, op2); - } - } - x = a + b; - return PyLong_FromLong(x); -#ifdef HAVE_LONG_LONG - long_long: - llx = lla + llb; - return PyLong_FromLongLong(llx); -#endif - - - } - #endif - if (PyFloat_CheckExact(op1)) { - const long b = intval; - double a = PyFloat_AS_DOUBLE(op1); - double result; - PyFPE_START_PROTECT("add", return NULL) - result = ((double)a) + (double)b; - PyFPE_END_PROTECT(result) - return PyFloat_FromDouble(result); - } - return (inplace ? PyNumber_InPlaceAdd : PyNumber_Add)(op1, op2); -} -#endif - -/* CIntToDigits */ -static const char DIGIT_PAIRS_10[2*10*10+1] = { - "00010203040506070809" - "10111213141516171819" - "20212223242526272829" - "30313233343536373839" - "40414243444546474849" - "50515253545556575859" - "60616263646566676869" - "70717273747576777879" - "80818283848586878889" - "90919293949596979899" -}; -static const char DIGIT_PAIRS_8[2*8*8+1] = { - "0001020304050607" - "1011121314151617" - "2021222324252627" - "3031323334353637" - "4041424344454647" - "5051525354555657" - "6061626364656667" - "7071727374757677" -}; -static const char DIGITS_HEX[2*16+1] = { - "0123456789abcdef" - "0123456789ABCDEF" -}; - -/* BuildPyUnicode */ -static PyObject* __Pyx_PyUnicode_BuildFromAscii(Py_ssize_t ulength, char* chars, int clength, - int prepend_sign, char padding_char) { - PyObject *uval; - Py_ssize_t uoffset = ulength - clength; -#if CYTHON_USE_UNICODE_INTERNALS - Py_ssize_t i; -#if CYTHON_PEP393_ENABLED - void *udata; - uval = PyUnicode_New(ulength, 127); - if (unlikely(!uval)) return NULL; - udata = PyUnicode_DATA(uval); -#else - Py_UNICODE *udata; - uval = PyUnicode_FromUnicode(NULL, ulength); - if (unlikely(!uval)) return NULL; - udata = PyUnicode_AS_UNICODE(uval); -#endif - if (uoffset > 0) { - i = 0; - if (prepend_sign) { - __Pyx_PyUnicode_WRITE(PyUnicode_1BYTE_KIND, udata, 0, '-'); - i++; - } - for (; i < uoffset; i++) { - __Pyx_PyUnicode_WRITE(PyUnicode_1BYTE_KIND, udata, i, padding_char); - } - } - for (i=0; i < clength; i++) { - __Pyx_PyUnicode_WRITE(PyUnicode_1BYTE_KIND, udata, uoffset+i, chars[i]); - } -#else - { - PyObject *sign = NULL, *padding = NULL; - uval = NULL; - if (uoffset > 0) { - prepend_sign = !!prepend_sign; - if (uoffset > prepend_sign) { - padding = PyUnicode_FromOrdinal(padding_char); - if (likely(padding) && uoffset > prepend_sign + 1) { - PyObject *tmp; - PyObject *repeat = PyInt_FromSize_t(uoffset - prepend_sign); - if (unlikely(!repeat)) goto done_or_error; - tmp = PyNumber_Multiply(padding, repeat); - Py_DECREF(repeat); - Py_DECREF(padding); - padding = tmp; - } - if (unlikely(!padding)) goto done_or_error; - } - if (prepend_sign) { - sign = PyUnicode_FromOrdinal('-'); - if (unlikely(!sign)) goto done_or_error; - } - } - uval = PyUnicode_DecodeASCII(chars, clength, NULL); - if (likely(uval) && padding) { - PyObject *tmp = PyNumber_Add(padding, uval); - Py_DECREF(uval); - uval = tmp; - } - if (likely(uval) && sign) { - PyObject *tmp = PyNumber_Add(sign, uval); - Py_DECREF(uval); - uval = tmp; - } -done_or_error: - Py_XDECREF(padding); - Py_XDECREF(sign); - } -#endif - return uval; -} - -/* CIntToPyUnicode */ -#ifdef _MSC_VER - #ifndef _MSC_STDINT_H_ - #if _MSC_VER < 1300 - typedef unsigned short uint16_t; - #else - typedef unsigned __int16 uint16_t; - #endif - #endif -#else - #include -#endif -#if defined(__GNUC__) && (__GNUC__ > 4 || (__GNUC__ == 4 && __GNUC_MINOR__ >= 6)) -#define GCC_DIAGNOSTIC -#endif -static CYTHON_INLINE PyObject* __Pyx_PyUnicode_From_unsigned_char(unsigned char value, Py_ssize_t width, char padding_char, char format_char) { - char digits[sizeof(unsigned char)*3+2]; - char *dpos, *end = digits + sizeof(unsigned char)*3+2; - const char *hex_digits = DIGITS_HEX; - Py_ssize_t length, ulength; - int prepend_sign, last_one_off; - unsigned char remaining; -#ifdef GCC_DIAGNOSTIC -#pragma GCC diagnostic push -#pragma GCC diagnostic ignored "-Wconversion" -#endif - const unsigned char neg_one = (unsigned char) -1, const_zero = (unsigned char) 0; -#ifdef GCC_DIAGNOSTIC -#pragma GCC diagnostic pop -#endif - const int is_unsigned = neg_one > const_zero; - if (format_char == 'X') { - hex_digits += 16; - format_char = 'x'; - } - remaining = value; - last_one_off = 0; - dpos = end; - do { - int digit_pos; - switch (format_char) { - case 'o': - digit_pos = abs((int)(remaining % (8*8))); - remaining = (unsigned char) (remaining / (8*8)); - dpos -= 2; - *(uint16_t*)dpos = ((const uint16_t*)DIGIT_PAIRS_8)[digit_pos]; - last_one_off = (digit_pos < 8); - break; - case 'd': - digit_pos = abs((int)(remaining % (10*10))); - remaining = (unsigned char) (remaining / (10*10)); - dpos -= 2; - *(uint16_t*)dpos = ((const uint16_t*)DIGIT_PAIRS_10)[digit_pos]; - last_one_off = (digit_pos < 10); - break; - case 'x': - *(--dpos) = hex_digits[abs((int)(remaining % 16))]; - remaining = (unsigned char) (remaining / 16); - break; - default: - assert(0); - break; - } - } while (unlikely(remaining != 0)); - if (last_one_off) { - assert(*dpos == '0'); - dpos++; - } - length = end - dpos; - ulength = length; - prepend_sign = 0; - if (!is_unsigned && value <= neg_one) { - if (padding_char == ' ' || width <= length + 1) { - *(--dpos) = '-'; - ++length; - } else { - prepend_sign = 1; - } - ++ulength; - } - if (width > ulength) { - ulength = width; - } - if (ulength == 1) { - return PyUnicode_FromOrdinal(*dpos); - } - return __Pyx_PyUnicode_BuildFromAscii(ulength, dpos, (int) length, prepend_sign, padding_char); -} - -/* JoinPyUnicode */ -static PyObject* __Pyx_PyUnicode_Join(PyObject* value_tuple, Py_ssize_t value_count, Py_ssize_t result_ulength, - CYTHON_UNUSED Py_UCS4 max_char) { -#if CYTHON_USE_UNICODE_INTERNALS && CYTHON_ASSUME_SAFE_MACROS && !CYTHON_AVOID_BORROWED_REFS - PyObject *result_uval; - int result_ukind; - Py_ssize_t i, char_pos; - void *result_udata; -#if CYTHON_PEP393_ENABLED - result_uval = PyUnicode_New(result_ulength, max_char); - if (unlikely(!result_uval)) return NULL; - result_ukind = (max_char <= 255) ? PyUnicode_1BYTE_KIND : (max_char <= 65535) ? PyUnicode_2BYTE_KIND : PyUnicode_4BYTE_KIND; - result_udata = PyUnicode_DATA(result_uval); -#else - result_uval = PyUnicode_FromUnicode(NULL, result_ulength); - if (unlikely(!result_uval)) return NULL; - result_ukind = sizeof(Py_UNICODE); - result_udata = PyUnicode_AS_UNICODE(result_uval); -#endif - char_pos = 0; - for (i=0; i < value_count; i++) { - int ukind; - Py_ssize_t ulength; - void *udata; - PyObject *uval = PyTuple_GET_ITEM(value_tuple, i); - if (unlikely(__Pyx_PyUnicode_READY(uval))) - goto bad; - ulength = __Pyx_PyUnicode_GET_LENGTH(uval); - if (unlikely(!ulength)) - continue; - if (unlikely(char_pos + ulength < 0)) - goto overflow; - ukind = __Pyx_PyUnicode_KIND(uval); - udata = __Pyx_PyUnicode_DATA(uval); - if (!CYTHON_PEP393_ENABLED || ukind == result_ukind) { - memcpy((char *)result_udata + char_pos * result_ukind, udata, (size_t) (ulength * result_ukind)); - } else { - #if CYTHON_COMPILING_IN_CPYTHON && PY_VERSION_HEX >= 0x030300F0 || defined(_PyUnicode_FastCopyCharacters) - _PyUnicode_FastCopyCharacters(result_uval, char_pos, uval, 0, ulength); - #else - Py_ssize_t j; - for (j=0; j < ulength; j++) { - Py_UCS4 uchar = __Pyx_PyUnicode_READ(ukind, udata, j); - __Pyx_PyUnicode_WRITE(result_ukind, result_udata, char_pos+j, uchar); - } - #endif - } - char_pos += ulength; - } - return result_uval; -overflow: - PyErr_SetString(PyExc_OverflowError, "join() result is too long for a Python string"); -bad: - Py_DECREF(result_uval); - return NULL; -#else - result_ulength++; - value_count++; - return PyUnicode_Join(__pyx_empty_unicode, value_tuple); -#endif -} - -/* RaiseTooManyValuesToUnpack */ -static CYTHON_INLINE void __Pyx_RaiseTooManyValuesError(Py_ssize_t expected) { - PyErr_Format(PyExc_ValueError, - "too many values to unpack (expected %" CYTHON_FORMAT_SSIZE_T "d)", expected); -} - -/* RaiseNeedMoreValuesToUnpack */ -static CYTHON_INLINE void __Pyx_RaiseNeedMoreValuesError(Py_ssize_t index) { - PyErr_Format(PyExc_ValueError, - "need more than %" CYTHON_FORMAT_SSIZE_T "d value%.1s to unpack", - index, (index == 1) ? "" : "s"); -} - -/* IterFinish */ -static CYTHON_INLINE int __Pyx_IterFinish(void) { -#if CYTHON_FAST_THREAD_STATE - PyThreadState *tstate = __Pyx_PyThreadState_Current; - PyObject* exc_type = tstate->curexc_type; - if (unlikely(exc_type)) { - if (likely(__Pyx_PyErr_GivenExceptionMatches(exc_type, PyExc_StopIteration))) { - PyObject *exc_value, *exc_tb; - exc_value = tstate->curexc_value; - exc_tb = tstate->curexc_traceback; - tstate->curexc_type = 0; - tstate->curexc_value = 0; - tstate->curexc_traceback = 0; - Py_DECREF(exc_type); - Py_XDECREF(exc_value); - Py_XDECREF(exc_tb); - return 0; - } else { - return -1; - } - } - return 0; -#else - if (unlikely(PyErr_Occurred())) { - if (likely(PyErr_ExceptionMatches(PyExc_StopIteration))) { - PyErr_Clear(); - return 0; - } else { - return -1; - } - } - return 0; -#endif -} - -/* UnpackItemEndCheck */ -static int __Pyx_IternextUnpackEndCheck(PyObject *retval, Py_ssize_t expected) { - if (unlikely(retval)) { - Py_DECREF(retval); - __Pyx_RaiseTooManyValuesError(expected); - return -1; - } else { - return __Pyx_IterFinish(); - } - return 0; -} - -/* PyIntBinop */ -#if !CYTHON_COMPILING_IN_PYPY -static PyObject* __Pyx_PyInt_AddCObj(PyObject *op1, PyObject *op2, CYTHON_UNUSED long intval, int inplace, int zerodivision_check) { - (void)inplace; - (void)zerodivision_check; - #if PY_MAJOR_VERSION < 3 - if (likely(PyInt_CheckExact(op2))) { - const long a = intval; - long x; - long b = PyInt_AS_LONG(op2); - x = (long)((unsigned long)a + b); - if (likely((x^a) >= 0 || (x^b) >= 0)) - return PyInt_FromLong(x); - return PyLong_Type.tp_as_number->nb_add(op1, op2); - } - #endif - #if CYTHON_USE_PYLONG_INTERNALS - if (likely(PyLong_CheckExact(op2))) { - const long a = intval; - long b, x; -#ifdef HAVE_LONG_LONG - const PY_LONG_LONG lla = intval; - PY_LONG_LONG llb, llx; -#endif - const digit* digits = ((PyLongObject*)op2)->ob_digit; - const Py_ssize_t size = Py_SIZE(op2); - if (likely(__Pyx_sst_abs(size) <= 1)) { - b = likely(size) ? digits[0] : 0; - if (size == -1) b = -b; - } else { - switch (size) { - case -2: - if (8 * sizeof(long) - 1 > 2 * PyLong_SHIFT) { - b = -(long) (((((unsigned long)digits[1]) << PyLong_SHIFT) | (unsigned long)digits[0])); - break; -#ifdef HAVE_LONG_LONG - } else if (8 * sizeof(PY_LONG_LONG) - 1 > 2 * PyLong_SHIFT) { - llb = -(PY_LONG_LONG) (((((unsigned PY_LONG_LONG)digits[1]) << PyLong_SHIFT) | (unsigned PY_LONG_LONG)digits[0])); - goto long_long; -#endif - } - CYTHON_FALLTHROUGH; - case 2: - if (8 * sizeof(long) - 1 > 2 * PyLong_SHIFT) { - b = (long) (((((unsigned long)digits[1]) << PyLong_SHIFT) | (unsigned long)digits[0])); - break; -#ifdef HAVE_LONG_LONG - } else if (8 * sizeof(PY_LONG_LONG) - 1 > 2 * PyLong_SHIFT) { - llb = (PY_LONG_LONG) (((((unsigned PY_LONG_LONG)digits[1]) << PyLong_SHIFT) | (unsigned PY_LONG_LONG)digits[0])); - goto long_long; -#endif - } - CYTHON_FALLTHROUGH; - case -3: - if (8 * sizeof(long) - 1 > 3 * PyLong_SHIFT) { - b = -(long) (((((((unsigned long)digits[2]) << PyLong_SHIFT) | (unsigned long)digits[1]) << PyLong_SHIFT) | (unsigned long)digits[0])); - break; -#ifdef HAVE_LONG_LONG - } else if (8 * sizeof(PY_LONG_LONG) - 1 > 3 * PyLong_SHIFT) { - llb = -(PY_LONG_LONG) (((((((unsigned PY_LONG_LONG)digits[2]) << PyLong_SHIFT) | (unsigned PY_LONG_LONG)digits[1]) << PyLong_SHIFT) | (unsigned PY_LONG_LONG)digits[0])); - goto long_long; -#endif - } - CYTHON_FALLTHROUGH; - case 3: - if (8 * sizeof(long) - 1 > 3 * PyLong_SHIFT) { - b = (long) (((((((unsigned long)digits[2]) << PyLong_SHIFT) | (unsigned long)digits[1]) << PyLong_SHIFT) | (unsigned long)digits[0])); - break; -#ifdef HAVE_LONG_LONG - } else if (8 * sizeof(PY_LONG_LONG) - 1 > 3 * PyLong_SHIFT) { - llb = (PY_LONG_LONG) (((((((unsigned PY_LONG_LONG)digits[2]) << PyLong_SHIFT) | (unsigned PY_LONG_LONG)digits[1]) << PyLong_SHIFT) | (unsigned PY_LONG_LONG)digits[0])); - goto long_long; -#endif - } - CYTHON_FALLTHROUGH; - case -4: - if (8 * sizeof(long) - 1 > 4 * PyLong_SHIFT) { - b = -(long) (((((((((unsigned long)digits[3]) << PyLong_SHIFT) | (unsigned long)digits[2]) << PyLong_SHIFT) | (unsigned long)digits[1]) << PyLong_SHIFT) | (unsigned long)digits[0])); - break; -#ifdef HAVE_LONG_LONG - } else if (8 * sizeof(PY_LONG_LONG) - 1 > 4 * PyLong_SHIFT) { - llb = -(PY_LONG_LONG) (((((((((unsigned PY_LONG_LONG)digits[3]) << PyLong_SHIFT) | (unsigned PY_LONG_LONG)digits[2]) << PyLong_SHIFT) | (unsigned PY_LONG_LONG)digits[1]) << PyLong_SHIFT) | (unsigned PY_LONG_LONG)digits[0])); - goto long_long; -#endif - } - CYTHON_FALLTHROUGH; - case 4: - if (8 * sizeof(long) - 1 > 4 * PyLong_SHIFT) { - b = (long) (((((((((unsigned long)digits[3]) << PyLong_SHIFT) | (unsigned long)digits[2]) << PyLong_SHIFT) | (unsigned long)digits[1]) << PyLong_SHIFT) | (unsigned long)digits[0])); - break; -#ifdef HAVE_LONG_LONG - } else if (8 * sizeof(PY_LONG_LONG) - 1 > 4 * PyLong_SHIFT) { - llb = (PY_LONG_LONG) (((((((((unsigned PY_LONG_LONG)digits[3]) << PyLong_SHIFT) | (unsigned PY_LONG_LONG)digits[2]) << PyLong_SHIFT) | (unsigned PY_LONG_LONG)digits[1]) << PyLong_SHIFT) | (unsigned PY_LONG_LONG)digits[0])); - goto long_long; -#endif - } - CYTHON_FALLTHROUGH; - default: return PyLong_Type.tp_as_number->nb_add(op1, op2); - } - } - x = a + b; - return PyLong_FromLong(x); -#ifdef HAVE_LONG_LONG - long_long: - llx = lla + llb; - return PyLong_FromLongLong(llx); -#endif - - - } - #endif - if (PyFloat_CheckExact(op2)) { - const long a = intval; - double b = PyFloat_AS_DOUBLE(op2); - double result; - PyFPE_START_PROTECT("add", return NULL) - result = ((double)a) + (double)b; - PyFPE_END_PROTECT(result) - return PyFloat_FromDouble(result); - } - return (inplace ? PyNumber_InPlaceAdd : PyNumber_Add)(op1, op2); -} -#endif - -/* PyFloatBinop */ -#if !CYTHON_COMPILING_IN_PYPY -static PyObject* __Pyx_PyFloat_EqObjC(PyObject *op1, PyObject *op2, double floatval, int inplace, int zerodivision_check) { - const double b = floatval; - double a; - (void)inplace; - (void)zerodivision_check; - if (op1 == op2) { - Py_RETURN_TRUE; - } - if (likely(PyFloat_CheckExact(op1))) { - a = PyFloat_AS_DOUBLE(op1); - - } else - #if PY_MAJOR_VERSION < 3 - if (likely(PyInt_CheckExact(op1))) { - a = (double) PyInt_AS_LONG(op1); - - } else - #endif - if (likely(PyLong_CheckExact(op1))) { - #if CYTHON_USE_PYLONG_INTERNALS - const digit* digits = ((PyLongObject*)op1)->ob_digit; - const Py_ssize_t size = Py_SIZE(op1); - switch (size) { - case 0: a = 0.0; break; - case -1: a = -(double) digits[0]; break; - case 1: a = (double) digits[0]; break; - case -2: - case 2: - if (8 * sizeof(unsigned long) > 2 * PyLong_SHIFT && ((8 * sizeof(unsigned long) < 53) || (1 * PyLong_SHIFT < 53))) { - a = (double) (((((unsigned long)digits[1]) << PyLong_SHIFT) | (unsigned long)digits[0])); - if ((8 * sizeof(unsigned long) < 53) || (2 * PyLong_SHIFT < 53) || (a < (double) ((PY_LONG_LONG)1 << 53))) { - if (size == -2) - a = -a; - break; - } - } - CYTHON_FALLTHROUGH; - case -3: - case 3: - if (8 * sizeof(unsigned long) > 3 * PyLong_SHIFT && ((8 * sizeof(unsigned long) < 53) || (2 * PyLong_SHIFT < 53))) { - a = (double) (((((((unsigned long)digits[2]) << PyLong_SHIFT) | (unsigned long)digits[1]) << PyLong_SHIFT) | (unsigned long)digits[0])); - if ((8 * sizeof(unsigned long) < 53) || (3 * PyLong_SHIFT < 53) || (a < (double) ((PY_LONG_LONG)1 << 53))) { - if (size == -3) - a = -a; - break; - } - } - CYTHON_FALLTHROUGH; - case -4: - case 4: - if (8 * sizeof(unsigned long) > 4 * PyLong_SHIFT && ((8 * sizeof(unsigned long) < 53) || (3 * PyLong_SHIFT < 53))) { - a = (double) (((((((((unsigned long)digits[3]) << PyLong_SHIFT) | (unsigned long)digits[2]) << PyLong_SHIFT) | (unsigned long)digits[1]) << PyLong_SHIFT) | (unsigned long)digits[0])); - if ((8 * sizeof(unsigned long) < 53) || (4 * PyLong_SHIFT < 53) || (a < (double) ((PY_LONG_LONG)1 << 53))) { - if (size == -4) - a = -a; - break; - } - } - CYTHON_FALLTHROUGH; - default: - #else - { - #endif - return ( - PyFloat_Type.tp_richcompare(op2, op1, Py_EQ)); - } - } else { - return ( - PyObject_RichCompare(op1, op2, Py_EQ)); - } - if (a == b) { - Py_RETURN_TRUE; - } else { - Py_RETURN_FALSE; - } -} -#endif - -/* PyObjectGetMethod */ - static int __Pyx_PyObject_GetMethod(PyObject *obj, PyObject *name, PyObject **method) { - PyObject *attr; -#if CYTHON_UNPACK_METHODS && CYTHON_COMPILING_IN_CPYTHON && CYTHON_USE_PYTYPE_LOOKUP - PyTypeObject *tp = Py_TYPE(obj); - PyObject *descr; - descrgetfunc f = NULL; - PyObject **dictptr, *dict; - int meth_found = 0; - assert (*method == NULL); - if (unlikely(tp->tp_getattro != PyObject_GenericGetAttr)) { - attr = __Pyx_PyObject_GetAttrStr(obj, name); - goto try_unpack; - } - if (unlikely(tp->tp_dict == NULL) && unlikely(PyType_Ready(tp) < 0)) { - return 0; - } - descr = _PyType_Lookup(tp, name); - if (likely(descr != NULL)) { - Py_INCREF(descr); -#if PY_MAJOR_VERSION >= 3 - #ifdef __Pyx_CyFunction_USED - if (likely(PyFunction_Check(descr) || (Py_TYPE(descr) == &PyMethodDescr_Type) || __Pyx_CyFunction_Check(descr))) - #else - if (likely(PyFunction_Check(descr) || (Py_TYPE(descr) == &PyMethodDescr_Type))) - #endif -#else - #ifdef __Pyx_CyFunction_USED - if (likely(PyFunction_Check(descr) || __Pyx_CyFunction_Check(descr))) - #else - if (likely(PyFunction_Check(descr))) - #endif -#endif - { - meth_found = 1; - } else { - f = Py_TYPE(descr)->tp_descr_get; - if (f != NULL && PyDescr_IsData(descr)) { - attr = f(descr, obj, (PyObject *)Py_TYPE(obj)); - Py_DECREF(descr); - goto try_unpack; - } - } - } - dictptr = _PyObject_GetDictPtr(obj); - if (dictptr != NULL && (dict = *dictptr) != NULL) { - Py_INCREF(dict); - attr = __Pyx_PyDict_GetItemStr(dict, name); - if (attr != NULL) { - Py_INCREF(attr); - Py_DECREF(dict); - Py_XDECREF(descr); - goto try_unpack; - } - Py_DECREF(dict); - } - if (meth_found) { - *method = descr; - return 1; - } - if (f != NULL) { - attr = f(descr, obj, (PyObject *)Py_TYPE(obj)); - Py_DECREF(descr); - goto try_unpack; - } - if (descr != NULL) { - *method = descr; - return 0; - } - PyErr_Format(PyExc_AttributeError, -#if PY_MAJOR_VERSION >= 3 - "'%.50s' object has no attribute '%U'", - tp->tp_name, name); -#else - "'%.50s' object has no attribute '%.400s'", - tp->tp_name, PyString_AS_STRING(name)); -#endif - return 0; -#else - attr = __Pyx_PyObject_GetAttrStr(obj, name); - goto try_unpack; -#endif -try_unpack: -#if CYTHON_UNPACK_METHODS - if (likely(attr) && PyMethod_Check(attr) && likely(PyMethod_GET_SELF(attr) == obj)) { - PyObject *function = PyMethod_GET_FUNCTION(attr); - Py_INCREF(function); - Py_DECREF(attr); - *method = function; - return 1; - } -#endif - *method = attr; - return 0; -} - -/* PyObjectCallMethod1 */ - static PyObject* __Pyx__PyObject_CallMethod1(PyObject* method, PyObject* arg) { - PyObject *result = __Pyx_PyObject_CallOneArg(method, arg); - Py_DECREF(method); - return result; -} -static PyObject* __Pyx_PyObject_CallMethod1(PyObject* obj, PyObject* method_name, PyObject* arg) { - PyObject *method = NULL, *result; - int is_method = __Pyx_PyObject_GetMethod(obj, method_name, &method); - if (likely(is_method)) { - result = __Pyx_PyObject_Call2Args(method, obj, arg); - Py_DECREF(method); - return result; - } - if (unlikely(!method)) return NULL; - return __Pyx__PyObject_CallMethod1(method, arg); -} - -/* pop_index */ - static PyObject* __Pyx__PyObject_PopNewIndex(PyObject* L, PyObject* py_ix) { - PyObject *r; - if (unlikely(!py_ix)) return NULL; - r = __Pyx__PyObject_PopIndex(L, py_ix); - Py_DECREF(py_ix); - return r; -} -static PyObject* __Pyx__PyObject_PopIndex(PyObject* L, PyObject* py_ix) { - return __Pyx_PyObject_CallMethod1(L, __pyx_n_s_pop, py_ix); -} -#if CYTHON_USE_PYLIST_INTERNALS && CYTHON_ASSUME_SAFE_MACROS -static PyObject* __Pyx__PyList_PopIndex(PyObject* L, PyObject* py_ix, Py_ssize_t ix) { - Py_ssize_t size = PyList_GET_SIZE(L); - if (likely(size > (((PyListObject*)L)->allocated >> 1))) { - Py_ssize_t cix = ix; - if (cix < 0) { - cix += size; - } - if (likely(__Pyx_is_valid_index(cix, size))) { - PyObject* v = PyList_GET_ITEM(L, cix); - Py_SIZE(L) -= 1; - size -= 1; - memmove(&PyList_GET_ITEM(L, cix), &PyList_GET_ITEM(L, cix+1), (size_t)(size-cix)*sizeof(PyObject*)); - return v; - } - } - if (py_ix == Py_None) { - return __Pyx__PyObject_PopNewIndex(L, PyInt_FromSsize_t(ix)); - } else { - return __Pyx__PyObject_PopIndex(L, py_ix); - } -} -#endif - -/* SliceObject */ - static CYTHON_INLINE PyObject* __Pyx_PyObject_GetSlice(PyObject* obj, - Py_ssize_t cstart, Py_ssize_t cstop, - PyObject** _py_start, PyObject** _py_stop, PyObject** _py_slice, - int has_cstart, int has_cstop, CYTHON_UNUSED int wraparound) { -#if CYTHON_USE_TYPE_SLOTS - PyMappingMethods* mp; -#if PY_MAJOR_VERSION < 3 - PySequenceMethods* ms = Py_TYPE(obj)->tp_as_sequence; - if (likely(ms && ms->sq_slice)) { - if (!has_cstart) { - if (_py_start && (*_py_start != Py_None)) { - cstart = __Pyx_PyIndex_AsSsize_t(*_py_start); - if ((cstart == (Py_ssize_t)-1) && PyErr_Occurred()) goto bad; - } else - cstart = 0; - } - if (!has_cstop) { - if (_py_stop && (*_py_stop != Py_None)) { - cstop = __Pyx_PyIndex_AsSsize_t(*_py_stop); - if ((cstop == (Py_ssize_t)-1) && PyErr_Occurred()) goto bad; - } else - cstop = PY_SSIZE_T_MAX; - } - if (wraparound && unlikely((cstart < 0) | (cstop < 0)) && likely(ms->sq_length)) { - Py_ssize_t l = ms->sq_length(obj); - if (likely(l >= 0)) { - if (cstop < 0) { - cstop += l; - if (cstop < 0) cstop = 0; - } - if (cstart < 0) { - cstart += l; - if (cstart < 0) cstart = 0; - } - } else { - if (!PyErr_ExceptionMatches(PyExc_OverflowError)) - goto bad; - PyErr_Clear(); - } - } - return ms->sq_slice(obj, cstart, cstop); - } -#endif - mp = Py_TYPE(obj)->tp_as_mapping; - if (likely(mp && mp->mp_subscript)) -#endif - { - PyObject* result; - PyObject *py_slice, *py_start, *py_stop; - if (_py_slice) { - py_slice = *_py_slice; - } else { - PyObject* owned_start = NULL; - PyObject* owned_stop = NULL; - if (_py_start) { - py_start = *_py_start; - } else { - if (has_cstart) { - owned_start = py_start = PyInt_FromSsize_t(cstart); - if (unlikely(!py_start)) goto bad; - } else - py_start = Py_None; - } - if (_py_stop) { - py_stop = *_py_stop; - } else { - if (has_cstop) { - owned_stop = py_stop = PyInt_FromSsize_t(cstop); - if (unlikely(!py_stop)) { - Py_XDECREF(owned_start); - goto bad; - } - } else - py_stop = Py_None; - } - py_slice = PySlice_New(py_start, py_stop, Py_None); - Py_XDECREF(owned_start); - Py_XDECREF(owned_stop); - if (unlikely(!py_slice)) goto bad; - } -#if CYTHON_USE_TYPE_SLOTS - result = mp->mp_subscript(obj, py_slice); -#else - result = PyObject_GetItem(obj, py_slice); -#endif - if (!_py_slice) { - Py_DECREF(py_slice); - } - return result; - } - PyErr_Format(PyExc_TypeError, - "'%.200s' object is unsliceable", Py_TYPE(obj)->tp_name); -bad: - return NULL; -} - -/* PyErrFetchRestore */ - #if CYTHON_FAST_THREAD_STATE -static CYTHON_INLINE void __Pyx_ErrRestoreInState(PyThreadState *tstate, PyObject *type, PyObject *value, PyObject *tb) { - PyObject *tmp_type, *tmp_value, *tmp_tb; - tmp_type = tstate->curexc_type; - tmp_value = tstate->curexc_value; - tmp_tb = tstate->curexc_traceback; - tstate->curexc_type = type; - tstate->curexc_value = value; - tstate->curexc_traceback = tb; - Py_XDECREF(tmp_type); - Py_XDECREF(tmp_value); - Py_XDECREF(tmp_tb); -} -static CYTHON_INLINE void __Pyx_ErrFetchInState(PyThreadState *tstate, PyObject **type, PyObject **value, PyObject **tb) { - *type = tstate->curexc_type; - *value = tstate->curexc_value; - *tb = tstate->curexc_traceback; - tstate->curexc_type = 0; - tstate->curexc_value = 0; - tstate->curexc_traceback = 0; -} -#endif - -/* IterNext */ - static PyObject *__Pyx_PyIter_Next2Default(PyObject* defval) { - PyObject* exc_type; - __Pyx_PyThreadState_declare - __Pyx_PyThreadState_assign - exc_type = __Pyx_PyErr_Occurred(); - if (unlikely(exc_type)) { - if (!defval || unlikely(!__Pyx_PyErr_GivenExceptionMatches(exc_type, PyExc_StopIteration))) - return NULL; - __Pyx_PyErr_Clear(); - Py_INCREF(defval); - return defval; - } - if (defval) { - Py_INCREF(defval); - return defval; - } - __Pyx_PyErr_SetNone(PyExc_StopIteration); - return NULL; -} -static void __Pyx_PyIter_Next_ErrorNoIterator(PyObject *iterator) { - PyErr_Format(PyExc_TypeError, - "%.200s object is not an iterator", Py_TYPE(iterator)->tp_name); -} -static CYTHON_INLINE PyObject *__Pyx_PyIter_Next2(PyObject* iterator, PyObject* defval) { - PyObject* next; - iternextfunc iternext = Py_TYPE(iterator)->tp_iternext; - if (likely(iternext)) { -#if CYTHON_USE_TYPE_SLOTS - next = iternext(iterator); - if (likely(next)) - return next; - #if PY_VERSION_HEX >= 0x02070000 - if (unlikely(iternext == &_PyObject_NextNotImplemented)) - return NULL; - #endif -#else - next = PyIter_Next(iterator); - if (likely(next)) - return next; -#endif - } else if (CYTHON_USE_TYPE_SLOTS || unlikely(!PyIter_Check(iterator))) { - __Pyx_PyIter_Next_ErrorNoIterator(iterator); - return NULL; - } -#if !CYTHON_USE_TYPE_SLOTS - else { - next = PyIter_Next(iterator); - if (likely(next)) - return next; - } -#endif - return __Pyx_PyIter_Next2Default(defval); -} - -/* GetTopmostException */ - #if CYTHON_USE_EXC_INFO_STACK -static _PyErr_StackItem * -__Pyx_PyErr_GetTopmostException(PyThreadState *tstate) -{ - _PyErr_StackItem *exc_info = tstate->exc_info; - while ((exc_info->exc_type == NULL || exc_info->exc_type == Py_None) && - exc_info->previous_item != NULL) - { - exc_info = exc_info->previous_item; - } - return exc_info; -} -#endif - -/* SaveResetException */ - #if CYTHON_FAST_THREAD_STATE -static CYTHON_INLINE void __Pyx__ExceptionSave(PyThreadState *tstate, PyObject **type, PyObject **value, PyObject **tb) { - #if CYTHON_USE_EXC_INFO_STACK - _PyErr_StackItem *exc_info = __Pyx_PyErr_GetTopmostException(tstate); - *type = exc_info->exc_type; - *value = exc_info->exc_value; - *tb = exc_info->exc_traceback; - #else - *type = tstate->exc_type; - *value = tstate->exc_value; - *tb = tstate->exc_traceback; - #endif - Py_XINCREF(*type); - Py_XINCREF(*value); - Py_XINCREF(*tb); -} -static CYTHON_INLINE void __Pyx__ExceptionReset(PyThreadState *tstate, PyObject *type, PyObject *value, PyObject *tb) { - PyObject *tmp_type, *tmp_value, *tmp_tb; - #if CYTHON_USE_EXC_INFO_STACK - _PyErr_StackItem *exc_info = tstate->exc_info; - tmp_type = exc_info->exc_type; - tmp_value = exc_info->exc_value; - tmp_tb = exc_info->exc_traceback; - exc_info->exc_type = type; - exc_info->exc_value = value; - exc_info->exc_traceback = tb; - #else - tmp_type = tstate->exc_type; - tmp_value = tstate->exc_value; - tmp_tb = tstate->exc_traceback; - tstate->exc_type = type; - tstate->exc_value = value; - tstate->exc_traceback = tb; - #endif - Py_XDECREF(tmp_type); - Py_XDECREF(tmp_value); - Py_XDECREF(tmp_tb); -} -#endif - -/* PyErrExceptionMatches */ - #if CYTHON_FAST_THREAD_STATE -static int __Pyx_PyErr_ExceptionMatchesTuple(PyObject *exc_type, PyObject *tuple) { - Py_ssize_t i, n; - n = PyTuple_GET_SIZE(tuple); -#if PY_MAJOR_VERSION >= 3 - for (i=0; icurexc_type; - if (exc_type == err) return 1; - if (unlikely(!exc_type)) return 0; - if (unlikely(PyTuple_Check(err))) - return __Pyx_PyErr_ExceptionMatchesTuple(exc_type, err); - return __Pyx_PyErr_GivenExceptionMatches(exc_type, err); -} -#endif - -/* GetException */ - #if CYTHON_FAST_THREAD_STATE -static int __Pyx__GetException(PyThreadState *tstate, PyObject **type, PyObject **value, PyObject **tb) -#else -static int __Pyx_GetException(PyObject **type, PyObject **value, PyObject **tb) -#endif -{ - PyObject *local_type, *local_value, *local_tb; -#if CYTHON_FAST_THREAD_STATE - PyObject *tmp_type, *tmp_value, *tmp_tb; - local_type = tstate->curexc_type; - local_value = tstate->curexc_value; - local_tb = tstate->curexc_traceback; - tstate->curexc_type = 0; - tstate->curexc_value = 0; - tstate->curexc_traceback = 0; -#else - PyErr_Fetch(&local_type, &local_value, &local_tb); -#endif - PyErr_NormalizeException(&local_type, &local_value, &local_tb); -#if CYTHON_FAST_THREAD_STATE - if (unlikely(tstate->curexc_type)) -#else - if (unlikely(PyErr_Occurred())) -#endif - goto bad; - #if PY_MAJOR_VERSION >= 3 - if (local_tb) { - if (unlikely(PyException_SetTraceback(local_value, local_tb) < 0)) - goto bad; - } - #endif - Py_XINCREF(local_tb); - Py_XINCREF(local_type); - Py_XINCREF(local_value); - *type = local_type; - *value = local_value; - *tb = local_tb; -#if CYTHON_FAST_THREAD_STATE - #if CYTHON_USE_EXC_INFO_STACK - { - _PyErr_StackItem *exc_info = tstate->exc_info; - tmp_type = exc_info->exc_type; - tmp_value = exc_info->exc_value; - tmp_tb = exc_info->exc_traceback; - exc_info->exc_type = local_type; - exc_info->exc_value = local_value; - exc_info->exc_traceback = local_tb; - } - #else - tmp_type = tstate->exc_type; - tmp_value = tstate->exc_value; - tmp_tb = tstate->exc_traceback; - tstate->exc_type = local_type; - tstate->exc_value = local_value; - tstate->exc_traceback = local_tb; - #endif - Py_XDECREF(tmp_type); - Py_XDECREF(tmp_value); - Py_XDECREF(tmp_tb); -#else - PyErr_SetExcInfo(local_type, local_value, local_tb); -#endif - return 0; -bad: - *type = 0; - *value = 0; - *tb = 0; - Py_XDECREF(local_type); - Py_XDECREF(local_value); - Py_XDECREF(local_tb); - return -1; -} - -/* PyFloatBinop */ - #if !CYTHON_COMPILING_IN_PYPY -static PyObject* __Pyx_PyFloat_SubtractCObj(PyObject *op1, PyObject *op2, double floatval, int inplace, int zerodivision_check) { - const double a = floatval; - double b, result; - (void)inplace; - (void)zerodivision_check; - if (likely(PyFloat_CheckExact(op2))) { - b = PyFloat_AS_DOUBLE(op2); - - } else - #if PY_MAJOR_VERSION < 3 - if (likely(PyInt_CheckExact(op2))) { - b = (double) PyInt_AS_LONG(op2); - - } else - #endif - if (likely(PyLong_CheckExact(op2))) { - #if CYTHON_USE_PYLONG_INTERNALS - const digit* digits = ((PyLongObject*)op2)->ob_digit; - const Py_ssize_t size = Py_SIZE(op2); - switch (size) { - case 0: b = 0.0; break; - case -1: b = -(double) digits[0]; break; - case 1: b = (double) digits[0]; break; - case -2: - case 2: - if (8 * sizeof(unsigned long) > 2 * PyLong_SHIFT && ((8 * sizeof(unsigned long) < 53) || (1 * PyLong_SHIFT < 53))) { - b = (double) (((((unsigned long)digits[1]) << PyLong_SHIFT) | (unsigned long)digits[0])); - if ((8 * sizeof(unsigned long) < 53) || (2 * PyLong_SHIFT < 53) || (b < (double) ((PY_LONG_LONG)1 << 53))) { - if (size == -2) - b = -b; - break; - } - } - CYTHON_FALLTHROUGH; - case -3: - case 3: - if (8 * sizeof(unsigned long) > 3 * PyLong_SHIFT && ((8 * sizeof(unsigned long) < 53) || (2 * PyLong_SHIFT < 53))) { - b = (double) (((((((unsigned long)digits[2]) << PyLong_SHIFT) | (unsigned long)digits[1]) << PyLong_SHIFT) | (unsigned long)digits[0])); - if ((8 * sizeof(unsigned long) < 53) || (3 * PyLong_SHIFT < 53) || (b < (double) ((PY_LONG_LONG)1 << 53))) { - if (size == -3) - b = -b; - break; - } - } - CYTHON_FALLTHROUGH; - case -4: - case 4: - if (8 * sizeof(unsigned long) > 4 * PyLong_SHIFT && ((8 * sizeof(unsigned long) < 53) || (3 * PyLong_SHIFT < 53))) { - b = (double) (((((((((unsigned long)digits[3]) << PyLong_SHIFT) | (unsigned long)digits[2]) << PyLong_SHIFT) | (unsigned long)digits[1]) << PyLong_SHIFT) | (unsigned long)digits[0])); - if ((8 * sizeof(unsigned long) < 53) || (4 * PyLong_SHIFT < 53) || (b < (double) ((PY_LONG_LONG)1 << 53))) { - if (size == -4) - b = -b; - break; - } - } - CYTHON_FALLTHROUGH; - default: - #else - { - #endif - b = PyLong_AsDouble(op2); - if (unlikely(b == -1.0 && PyErr_Occurred())) return NULL; - - } - } else { - return (inplace ? PyNumber_InPlaceSubtract : PyNumber_Subtract)(op1, op2); - } - - PyFPE_START_PROTECT("subtract", return NULL) - result = a - b; - PyFPE_END_PROTECT(result) - return PyFloat_FromDouble(result); -} -#endif - -/* PyObjectCallMethod0 */ - static PyObject* __Pyx_PyObject_CallMethod0(PyObject* obj, PyObject* method_name) { - PyObject *method = NULL, *result = NULL; - int is_method = __Pyx_PyObject_GetMethod(obj, method_name, &method); - if (likely(is_method)) { - result = __Pyx_PyObject_CallOneArg(method, obj); - Py_DECREF(method); - return result; - } - if (unlikely(!method)) goto bad; - result = __Pyx_PyObject_CallNoArg(method); - Py_DECREF(method); -bad: - return result; -} - -/* RaiseNoneIterError */ - static CYTHON_INLINE void __Pyx_RaiseNoneNotIterableError(void) { - PyErr_SetString(PyExc_TypeError, "'NoneType' object is not iterable"); -} - -/* UnpackTupleError */ - static void __Pyx_UnpackTupleError(PyObject *t, Py_ssize_t index) { - if (t == Py_None) { - __Pyx_RaiseNoneNotIterableError(); - } else if (PyTuple_GET_SIZE(t) < index) { - __Pyx_RaiseNeedMoreValuesError(PyTuple_GET_SIZE(t)); - } else { - __Pyx_RaiseTooManyValuesError(index); - } -} - -/* UnpackTuple2 */ - static CYTHON_INLINE int __Pyx_unpack_tuple2_exact( - PyObject* tuple, PyObject** pvalue1, PyObject** pvalue2, int decref_tuple) { - PyObject *value1 = NULL, *value2 = NULL; -#if CYTHON_COMPILING_IN_PYPY - value1 = PySequence_ITEM(tuple, 0); if (unlikely(!value1)) goto bad; - value2 = PySequence_ITEM(tuple, 1); if (unlikely(!value2)) goto bad; -#else - value1 = PyTuple_GET_ITEM(tuple, 0); Py_INCREF(value1); - value2 = PyTuple_GET_ITEM(tuple, 1); Py_INCREF(value2); -#endif - if (decref_tuple) { - Py_DECREF(tuple); - } - *pvalue1 = value1; - *pvalue2 = value2; - return 0; -#if CYTHON_COMPILING_IN_PYPY -bad: - Py_XDECREF(value1); - Py_XDECREF(value2); - if (decref_tuple) { Py_XDECREF(tuple); } - return -1; -#endif -} -static int __Pyx_unpack_tuple2_generic(PyObject* tuple, PyObject** pvalue1, PyObject** pvalue2, - int has_known_size, int decref_tuple) { - Py_ssize_t index; - PyObject *value1 = NULL, *value2 = NULL, *iter = NULL; - iternextfunc iternext; - iter = PyObject_GetIter(tuple); - if (unlikely(!iter)) goto bad; - if (decref_tuple) { Py_DECREF(tuple); tuple = NULL; } - iternext = Py_TYPE(iter)->tp_iternext; - value1 = iternext(iter); if (unlikely(!value1)) { index = 0; goto unpacking_failed; } - value2 = iternext(iter); if (unlikely(!value2)) { index = 1; goto unpacking_failed; } - if (!has_known_size && unlikely(__Pyx_IternextUnpackEndCheck(iternext(iter), 2))) goto bad; - Py_DECREF(iter); - *pvalue1 = value1; - *pvalue2 = value2; - return 0; -unpacking_failed: - if (!has_known_size && __Pyx_IterFinish() == 0) - __Pyx_RaiseNeedMoreValuesError(index); -bad: - Py_XDECREF(iter); - Py_XDECREF(value1); - Py_XDECREF(value2); - if (decref_tuple) { Py_XDECREF(tuple); } - return -1; -} - -/* dict_iter */ - static CYTHON_INLINE PyObject* __Pyx_dict_iterator(PyObject* iterable, int is_dict, PyObject* method_name, - Py_ssize_t* p_orig_length, int* p_source_is_dict) { - is_dict = is_dict || likely(PyDict_CheckExact(iterable)); - *p_source_is_dict = is_dict; - if (is_dict) { -#if !CYTHON_COMPILING_IN_PYPY - *p_orig_length = PyDict_Size(iterable); - Py_INCREF(iterable); - return iterable; -#elif PY_MAJOR_VERSION >= 3 - static PyObject *py_items = NULL, *py_keys = NULL, *py_values = NULL; - PyObject **pp = NULL; - if (method_name) { - const char *name = PyUnicode_AsUTF8(method_name); - if (strcmp(name, "iteritems") == 0) pp = &py_items; - else if (strcmp(name, "iterkeys") == 0) pp = &py_keys; - else if (strcmp(name, "itervalues") == 0) pp = &py_values; - if (pp) { - if (!*pp) { - *pp = PyUnicode_FromString(name + 4); - if (!*pp) - return NULL; - } - method_name = *pp; - } - } -#endif - } - *p_orig_length = 0; - if (method_name) { - PyObject* iter; - iterable = __Pyx_PyObject_CallMethod0(iterable, method_name); - if (!iterable) - return NULL; -#if !CYTHON_COMPILING_IN_PYPY - if (PyTuple_CheckExact(iterable) || PyList_CheckExact(iterable)) - return iterable; -#endif - iter = PyObject_GetIter(iterable); - Py_DECREF(iterable); - return iter; - } - return PyObject_GetIter(iterable); -} -static CYTHON_INLINE int __Pyx_dict_iter_next( - PyObject* iter_obj, CYTHON_NCP_UNUSED Py_ssize_t orig_length, CYTHON_NCP_UNUSED Py_ssize_t* ppos, - PyObject** pkey, PyObject** pvalue, PyObject** pitem, int source_is_dict) { - PyObject* next_item; -#if !CYTHON_COMPILING_IN_PYPY - if (source_is_dict) { - PyObject *key, *value; - if (unlikely(orig_length != PyDict_Size(iter_obj))) { - PyErr_SetString(PyExc_RuntimeError, "dictionary changed size during iteration"); - return -1; - } - if (unlikely(!PyDict_Next(iter_obj, ppos, &key, &value))) { - return 0; - } - if (pitem) { - PyObject* tuple = PyTuple_New(2); - if (unlikely(!tuple)) { - return -1; - } - Py_INCREF(key); - Py_INCREF(value); - PyTuple_SET_ITEM(tuple, 0, key); - PyTuple_SET_ITEM(tuple, 1, value); - *pitem = tuple; - } else { - if (pkey) { - Py_INCREF(key); - *pkey = key; - } - if (pvalue) { - Py_INCREF(value); - *pvalue = value; - } - } - return 1; - } else if (PyTuple_CheckExact(iter_obj)) { - Py_ssize_t pos = *ppos; - if (unlikely(pos >= PyTuple_GET_SIZE(iter_obj))) return 0; - *ppos = pos + 1; - next_item = PyTuple_GET_ITEM(iter_obj, pos); - Py_INCREF(next_item); - } else if (PyList_CheckExact(iter_obj)) { - Py_ssize_t pos = *ppos; - if (unlikely(pos >= PyList_GET_SIZE(iter_obj))) return 0; - *ppos = pos + 1; - next_item = PyList_GET_ITEM(iter_obj, pos); - Py_INCREF(next_item); - } else -#endif - { - next_item = PyIter_Next(iter_obj); - if (unlikely(!next_item)) { - return __Pyx_IterFinish(); - } - } - if (pitem) { - *pitem = next_item; - } else if (pkey && pvalue) { - if (__Pyx_unpack_tuple2(next_item, pkey, pvalue, source_is_dict, source_is_dict, 1)) - return -1; - } else if (pkey) { - *pkey = next_item; - } else { - *pvalue = next_item; - } - return 1; -} - -/* UnpackUnboundCMethod */ - static int __Pyx_TryUnpackUnboundCMethod(__Pyx_CachedCFunction* target) { - PyObject *method; - method = __Pyx_PyObject_GetAttrStr(target->type, *target->method_name); - if (unlikely(!method)) - return -1; - target->method = method; -#if CYTHON_COMPILING_IN_CPYTHON - #if PY_MAJOR_VERSION >= 3 - if (likely(__Pyx_TypeCheck(method, &PyMethodDescr_Type))) - #endif - { - PyMethodDescrObject *descr = (PyMethodDescrObject*) method; - target->func = descr->d_method->ml_meth; - target->flag = descr->d_method->ml_flags & ~(METH_CLASS | METH_STATIC | METH_COEXIST | METH_STACKLESS); - } -#endif - return 0; -} - -/* CallUnboundCMethod1 */ - #if CYTHON_COMPILING_IN_CPYTHON -static CYTHON_INLINE PyObject* __Pyx_CallUnboundCMethod1(__Pyx_CachedCFunction* cfunc, PyObject* self, PyObject* arg) { - if (likely(cfunc->func)) { - int flag = cfunc->flag; - if (flag == METH_O) { - return (*(cfunc->func))(self, arg); - } else if (PY_VERSION_HEX >= 0x030600B1 && flag == METH_FASTCALL) { - if (PY_VERSION_HEX >= 0x030700A0) { - return (*(__Pyx_PyCFunctionFast)(void*)(PyCFunction)cfunc->func)(self, &arg, 1); - } else { - return (*(__Pyx_PyCFunctionFastWithKeywords)(void*)(PyCFunction)cfunc->func)(self, &arg, 1, NULL); - } - } else if (PY_VERSION_HEX >= 0x030700A0 && flag == (METH_FASTCALL | METH_KEYWORDS)) { - return (*(__Pyx_PyCFunctionFastWithKeywords)(void*)(PyCFunction)cfunc->func)(self, &arg, 1, NULL); - } - } - return __Pyx__CallUnboundCMethod1(cfunc, self, arg); -} -#endif -static PyObject* __Pyx__CallUnboundCMethod1(__Pyx_CachedCFunction* cfunc, PyObject* self, PyObject* arg){ - PyObject *args, *result = NULL; - if (unlikely(!cfunc->func && !cfunc->method) && unlikely(__Pyx_TryUnpackUnboundCMethod(cfunc) < 0)) return NULL; -#if CYTHON_COMPILING_IN_CPYTHON - if (cfunc->func && (cfunc->flag & METH_VARARGS)) { - args = PyTuple_New(1); - if (unlikely(!args)) goto bad; - Py_INCREF(arg); - PyTuple_SET_ITEM(args, 0, arg); - if (cfunc->flag & METH_KEYWORDS) - result = (*(PyCFunctionWithKeywords)(void*)(PyCFunction)cfunc->func)(self, args, NULL); - else - result = (*cfunc->func)(self, args); - } else { - args = PyTuple_New(2); - if (unlikely(!args)) goto bad; - Py_INCREF(self); - PyTuple_SET_ITEM(args, 0, self); - Py_INCREF(arg); - PyTuple_SET_ITEM(args, 1, arg); - result = __Pyx_PyObject_Call(cfunc->method, args, NULL); - } -#else - args = PyTuple_Pack(2, self, arg); - if (unlikely(!args)) goto bad; - result = __Pyx_PyObject_Call(cfunc->method, args, NULL); -#endif -bad: - Py_XDECREF(args); - return result; -} - -/* SliceTupleAndList */ - #if CYTHON_COMPILING_IN_CPYTHON -static CYTHON_INLINE void __Pyx_crop_slice(Py_ssize_t* _start, Py_ssize_t* _stop, Py_ssize_t* _length) { - Py_ssize_t start = *_start, stop = *_stop, length = *_length; - if (start < 0) { - start += length; - if (start < 0) - start = 0; - } - if (stop < 0) - stop += length; - else if (stop > length) - stop = length; - *_length = stop - start; - *_start = start; - *_stop = stop; -} -static CYTHON_INLINE void __Pyx_copy_object_array(PyObject** CYTHON_RESTRICT src, PyObject** CYTHON_RESTRICT dest, Py_ssize_t length) { - PyObject *v; - Py_ssize_t i; - for (i = 0; i < length; i++) { - v = dest[i] = src[i]; - Py_INCREF(v); - } -} -static CYTHON_INLINE PyObject* __Pyx_PyList_GetSlice( - PyObject* src, Py_ssize_t start, Py_ssize_t stop) { - PyObject* dest; - Py_ssize_t length = PyList_GET_SIZE(src); - __Pyx_crop_slice(&start, &stop, &length); - if (unlikely(length <= 0)) - return PyList_New(0); - dest = PyList_New(length); - if (unlikely(!dest)) - return NULL; - __Pyx_copy_object_array( - ((PyListObject*)src)->ob_item + start, - ((PyListObject*)dest)->ob_item, - length); - return dest; -} -static CYTHON_INLINE PyObject* __Pyx_PyTuple_GetSlice( - PyObject* src, Py_ssize_t start, Py_ssize_t stop) { - PyObject* dest; - Py_ssize_t length = PyTuple_GET_SIZE(src); - __Pyx_crop_slice(&start, &stop, &length); - if (unlikely(length <= 0)) - return PyTuple_New(0); - dest = PyTuple_New(length); - if (unlikely(!dest)) - return NULL; - __Pyx_copy_object_array( - ((PyTupleObject*)src)->ob_item + start, - ((PyTupleObject*)dest)->ob_item, - length); - return dest; -} -#endif - -/* GetAttr */ - static CYTHON_INLINE PyObject *__Pyx_GetAttr(PyObject *o, PyObject *n) { -#if CYTHON_USE_TYPE_SLOTS -#if PY_MAJOR_VERSION >= 3 - if (likely(PyUnicode_Check(n))) -#else - if (likely(PyString_Check(n))) -#endif - return __Pyx_PyObject_GetAttrStr(o, n); -#endif - return PyObject_GetAttr(o, n); -} - -/* GetAttr3 */ - static PyObject *__Pyx_GetAttr3Default(PyObject *d) { - __Pyx_PyThreadState_declare - __Pyx_PyThreadState_assign - if (unlikely(!__Pyx_PyErr_ExceptionMatches(PyExc_AttributeError))) - return NULL; - __Pyx_PyErr_Clear(); - Py_INCREF(d); - return d; -} -static CYTHON_INLINE PyObject *__Pyx_GetAttr3(PyObject *o, PyObject *n, PyObject *d) { - PyObject *r = __Pyx_GetAttr(o, n); - return (likely(r)) ? r : __Pyx_GetAttr3Default(d); -} - -/* Import */ - static PyObject *__Pyx_Import(PyObject *name, PyObject *from_list, int level) { - PyObject *empty_list = 0; - PyObject *module = 0; - PyObject *global_dict = 0; - PyObject *empty_dict = 0; - PyObject *list; - #if PY_MAJOR_VERSION < 3 - PyObject *py_import; - py_import = __Pyx_PyObject_GetAttrStr(__pyx_b, __pyx_n_s_import); - if (!py_import) - goto bad; - #endif - if (from_list) - list = from_list; - else { - empty_list = PyList_New(0); - if (!empty_list) - goto bad; - list = empty_list; - } - global_dict = PyModule_GetDict(__pyx_m); - if (!global_dict) - goto bad; - empty_dict = PyDict_New(); - if (!empty_dict) - goto bad; - { - #if PY_MAJOR_VERSION >= 3 - if (level == -1) { - if (strchr(__Pyx_MODULE_NAME, '.')) { - module = PyImport_ImportModuleLevelObject( - name, global_dict, empty_dict, list, 1); - if (!module) { - if (!PyErr_ExceptionMatches(PyExc_ImportError)) - goto bad; - PyErr_Clear(); - } - } - level = 0; - } - #endif - if (!module) { - #if PY_MAJOR_VERSION < 3 - PyObject *py_level = PyInt_FromLong(level); - if (!py_level) - goto bad; - module = PyObject_CallFunctionObjArgs(py_import, - name, global_dict, empty_dict, list, py_level, (PyObject *)NULL); - Py_DECREF(py_level); - #else - module = PyImport_ImportModuleLevelObject( - name, global_dict, empty_dict, list, level); - #endif - } - } -bad: - #if PY_MAJOR_VERSION < 3 - Py_XDECREF(py_import); - #endif - Py_XDECREF(empty_list); - Py_XDECREF(empty_dict); - return module; -} - -/* ImportFrom */ - static PyObject* __Pyx_ImportFrom(PyObject* module, PyObject* name) { - PyObject* value = __Pyx_PyObject_GetAttrStr(module, name); - if (unlikely(!value) && PyErr_ExceptionMatches(PyExc_AttributeError)) { - PyErr_Format(PyExc_ImportError, - #if PY_MAJOR_VERSION < 3 - "cannot import name %.230s", PyString_AS_STRING(name)); - #else - "cannot import name %S", name); - #endif - } - return value; -} - -/* RaiseException */ - #if PY_MAJOR_VERSION < 3 -static void __Pyx_Raise(PyObject *type, PyObject *value, PyObject *tb, - CYTHON_UNUSED PyObject *cause) { - __Pyx_PyThreadState_declare - Py_XINCREF(type); - if (!value || value == Py_None) - value = NULL; - else - Py_INCREF(value); - if (!tb || tb == Py_None) - tb = NULL; - else { - Py_INCREF(tb); - if (!PyTraceBack_Check(tb)) { - PyErr_SetString(PyExc_TypeError, - "raise: arg 3 must be a traceback or None"); - goto raise_error; - } - } - if (PyType_Check(type)) { -#if CYTHON_COMPILING_IN_PYPY - if (!value) { - Py_INCREF(Py_None); - value = Py_None; - } -#endif - PyErr_NormalizeException(&type, &value, &tb); - } else { - if (value) { - PyErr_SetString(PyExc_TypeError, - "instance exception may not have a separate value"); - goto raise_error; - } - value = type; - type = (PyObject*) Py_TYPE(type); - Py_INCREF(type); - if (!PyType_IsSubtype((PyTypeObject *)type, (PyTypeObject *)PyExc_BaseException)) { - PyErr_SetString(PyExc_TypeError, - "raise: exception class must be a subclass of BaseException"); - goto raise_error; - } - } - __Pyx_PyThreadState_assign - __Pyx_ErrRestore(type, value, tb); - return; -raise_error: - Py_XDECREF(value); - Py_XDECREF(type); - Py_XDECREF(tb); - return; -} -#else -static void __Pyx_Raise(PyObject *type, PyObject *value, PyObject *tb, PyObject *cause) { - PyObject* owned_instance = NULL; - if (tb == Py_None) { - tb = 0; - } else if (tb && !PyTraceBack_Check(tb)) { - PyErr_SetString(PyExc_TypeError, - "raise: arg 3 must be a traceback or None"); - goto bad; - } - if (value == Py_None) - value = 0; - if (PyExceptionInstance_Check(type)) { - if (value) { - PyErr_SetString(PyExc_TypeError, - "instance exception may not have a separate value"); - goto bad; - } - value = type; - type = (PyObject*) Py_TYPE(value); - } else if (PyExceptionClass_Check(type)) { - PyObject *instance_class = NULL; - if (value && PyExceptionInstance_Check(value)) { - instance_class = (PyObject*) Py_TYPE(value); - if (instance_class != type) { - int is_subclass = PyObject_IsSubclass(instance_class, type); - if (!is_subclass) { - instance_class = NULL; - } else if (unlikely(is_subclass == -1)) { - goto bad; - } else { - type = instance_class; - } - } - } - if (!instance_class) { - PyObject *args; - if (!value) - args = PyTuple_New(0); - else if (PyTuple_Check(value)) { - Py_INCREF(value); - args = value; - } else - args = PyTuple_Pack(1, value); - if (!args) - goto bad; - owned_instance = PyObject_Call(type, args, NULL); - Py_DECREF(args); - if (!owned_instance) - goto bad; - value = owned_instance; - if (!PyExceptionInstance_Check(value)) { - PyErr_Format(PyExc_TypeError, - "calling %R should have returned an instance of " - "BaseException, not %R", - type, Py_TYPE(value)); - goto bad; - } - } - } else { - PyErr_SetString(PyExc_TypeError, - "raise: exception class must be a subclass of BaseException"); - goto bad; - } - if (cause) { - PyObject *fixed_cause; - if (cause == Py_None) { - fixed_cause = NULL; - } else if (PyExceptionClass_Check(cause)) { - fixed_cause = PyObject_CallObject(cause, NULL); - if (fixed_cause == NULL) - goto bad; - } else if (PyExceptionInstance_Check(cause)) { - fixed_cause = cause; - Py_INCREF(fixed_cause); - } else { - PyErr_SetString(PyExc_TypeError, - "exception causes must derive from " - "BaseException"); - goto bad; - } - PyException_SetCause(value, fixed_cause); - } - PyErr_SetObject(type, value); - if (tb) { -#if CYTHON_COMPILING_IN_PYPY - PyObject *tmp_type, *tmp_value, *tmp_tb; - PyErr_Fetch(&tmp_type, &tmp_value, &tmp_tb); - Py_INCREF(tb); - PyErr_Restore(tmp_type, tmp_value, tb); - Py_XDECREF(tmp_tb); -#else - PyThreadState *tstate = __Pyx_PyThreadState_Current; - PyObject* tmp_tb = tstate->curexc_traceback; - if (tb != tmp_tb) { - Py_INCREF(tb); - tstate->curexc_traceback = tb; - Py_XDECREF(tmp_tb); - } -#endif - } -bad: - Py_XDECREF(owned_instance); - return; -} -#endif - -/* HasAttr */ - static CYTHON_INLINE int __Pyx_HasAttr(PyObject *o, PyObject *n) { - PyObject *r; - if (unlikely(!__Pyx_PyBaseString_Check(n))) { - PyErr_SetString(PyExc_TypeError, - "hasattr(): attribute name must be string"); - return -1; - } - r = __Pyx_GetAttr(o, n); - if (unlikely(!r)) { - PyErr_Clear(); - return 0; - } else { - Py_DECREF(r); - return 1; - } -} - -/* PyObject_GenericGetAttrNoDict */ - #if CYTHON_USE_TYPE_SLOTS && CYTHON_USE_PYTYPE_LOOKUP && PY_VERSION_HEX < 0x03070000 -static PyObject *__Pyx_RaiseGenericGetAttributeError(PyTypeObject *tp, PyObject *attr_name) { - PyErr_Format(PyExc_AttributeError, -#if PY_MAJOR_VERSION >= 3 - "'%.50s' object has no attribute '%U'", - tp->tp_name, attr_name); -#else - "'%.50s' object has no attribute '%.400s'", - tp->tp_name, PyString_AS_STRING(attr_name)); -#endif - return NULL; -} -static CYTHON_INLINE PyObject* __Pyx_PyObject_GenericGetAttrNoDict(PyObject* obj, PyObject* attr_name) { - PyObject *descr; - PyTypeObject *tp = Py_TYPE(obj); - if (unlikely(!PyString_Check(attr_name))) { - return PyObject_GenericGetAttr(obj, attr_name); - } - assert(!tp->tp_dictoffset); - descr = _PyType_Lookup(tp, attr_name); - if (unlikely(!descr)) { - return __Pyx_RaiseGenericGetAttributeError(tp, attr_name); - } - Py_INCREF(descr); - #if PY_MAJOR_VERSION < 3 - if (likely(PyType_HasFeature(Py_TYPE(descr), Py_TPFLAGS_HAVE_CLASS))) - #endif - { - descrgetfunc f = Py_TYPE(descr)->tp_descr_get; - if (unlikely(f)) { - PyObject *res = f(descr, obj, (PyObject *)tp); - Py_DECREF(descr); - return res; - } - } - return descr; -} -#endif - -/* PyObject_GenericGetAttr */ - #if CYTHON_USE_TYPE_SLOTS && CYTHON_USE_PYTYPE_LOOKUP && PY_VERSION_HEX < 0x03070000 -static PyObject* __Pyx_PyObject_GenericGetAttr(PyObject* obj, PyObject* attr_name) { - if (unlikely(Py_TYPE(obj)->tp_dictoffset)) { - return PyObject_GenericGetAttr(obj, attr_name); - } - return __Pyx_PyObject_GenericGetAttrNoDict(obj, attr_name); -} -#endif - -/* SetupReduce */ - static int __Pyx_setup_reduce_is_named(PyObject* meth, PyObject* name) { - int ret; - PyObject *name_attr; - name_attr = __Pyx_PyObject_GetAttrStr(meth, __pyx_n_s_name_2); - if (likely(name_attr)) { - ret = PyObject_RichCompareBool(name_attr, name, Py_EQ); - } else { - ret = -1; - } - if (unlikely(ret < 0)) { - PyErr_Clear(); - ret = 0; - } - Py_XDECREF(name_attr); - return ret; -} -static int __Pyx_setup_reduce(PyObject* type_obj) { - int ret = 0; - PyObject *object_reduce = NULL; - PyObject *object_reduce_ex = NULL; - PyObject *reduce = NULL; - PyObject *reduce_ex = NULL; - PyObject *reduce_cython = NULL; - PyObject *setstate = NULL; - PyObject *setstate_cython = NULL; -#if CYTHON_USE_PYTYPE_LOOKUP - if (_PyType_Lookup((PyTypeObject*)type_obj, __pyx_n_s_getstate)) goto GOOD; -#else - if (PyObject_HasAttr(type_obj, __pyx_n_s_getstate)) goto GOOD; -#endif -#if CYTHON_USE_PYTYPE_LOOKUP - object_reduce_ex = _PyType_Lookup(&PyBaseObject_Type, __pyx_n_s_reduce_ex); if (!object_reduce_ex) goto BAD; -#else - object_reduce_ex = __Pyx_PyObject_GetAttrStr((PyObject*)&PyBaseObject_Type, __pyx_n_s_reduce_ex); if (!object_reduce_ex) goto BAD; -#endif - reduce_ex = __Pyx_PyObject_GetAttrStr(type_obj, __pyx_n_s_reduce_ex); if (unlikely(!reduce_ex)) goto BAD; - if (reduce_ex == object_reduce_ex) { -#if CYTHON_USE_PYTYPE_LOOKUP - object_reduce = _PyType_Lookup(&PyBaseObject_Type, __pyx_n_s_reduce); if (!object_reduce) goto BAD; -#else - object_reduce = __Pyx_PyObject_GetAttrStr((PyObject*)&PyBaseObject_Type, __pyx_n_s_reduce); if (!object_reduce) goto BAD; -#endif - reduce = __Pyx_PyObject_GetAttrStr(type_obj, __pyx_n_s_reduce); if (unlikely(!reduce)) goto BAD; - if (reduce == object_reduce || __Pyx_setup_reduce_is_named(reduce, __pyx_n_s_reduce_cython)) { - reduce_cython = __Pyx_PyObject_GetAttrStr(type_obj, __pyx_n_s_reduce_cython); if (unlikely(!reduce_cython)) goto BAD; - ret = PyDict_SetItem(((PyTypeObject*)type_obj)->tp_dict, __pyx_n_s_reduce, reduce_cython); if (unlikely(ret < 0)) goto BAD; - ret = PyDict_DelItem(((PyTypeObject*)type_obj)->tp_dict, __pyx_n_s_reduce_cython); if (unlikely(ret < 0)) goto BAD; - setstate = __Pyx_PyObject_GetAttrStr(type_obj, __pyx_n_s_setstate); - if (!setstate) PyErr_Clear(); - if (!setstate || __Pyx_setup_reduce_is_named(setstate, __pyx_n_s_setstate_cython)) { - setstate_cython = __Pyx_PyObject_GetAttrStr(type_obj, __pyx_n_s_setstate_cython); if (unlikely(!setstate_cython)) goto BAD; - ret = PyDict_SetItem(((PyTypeObject*)type_obj)->tp_dict, __pyx_n_s_setstate, setstate_cython); if (unlikely(ret < 0)) goto BAD; - ret = PyDict_DelItem(((PyTypeObject*)type_obj)->tp_dict, __pyx_n_s_setstate_cython); if (unlikely(ret < 0)) goto BAD; - } - PyType_Modified((PyTypeObject*)type_obj); - } - } - goto GOOD; -BAD: - if (!PyErr_Occurred()) - PyErr_Format(PyExc_RuntimeError, "Unable to initialize pickling for %s", ((PyTypeObject*)type_obj)->tp_name); - ret = -1; -GOOD: -#if !CYTHON_USE_PYTYPE_LOOKUP - Py_XDECREF(object_reduce); - Py_XDECREF(object_reduce_ex); -#endif - Py_XDECREF(reduce); - Py_XDECREF(reduce_ex); - Py_XDECREF(reduce_cython); - Py_XDECREF(setstate); - Py_XDECREF(setstate_cython); - return ret; -} - -/* append */ - static CYTHON_INLINE int __Pyx_PyObject_Append(PyObject* L, PyObject* x) { - if (likely(PyList_CheckExact(L))) { - if (unlikely(__Pyx_PyList_Append(L, x) < 0)) return -1; - } else { - PyObject* retval = __Pyx_PyObject_CallMethod1(L, __pyx_n_s_append, x); - if (unlikely(!retval)) - return -1; - Py_DECREF(retval); - } - return 0; -} - -/* GetNameInClass */ - static PyObject *__Pyx_GetGlobalNameAfterAttributeLookup(PyObject *name) { - PyObject *result; - __Pyx_PyThreadState_declare - __Pyx_PyThreadState_assign - if (unlikely(!__Pyx_PyErr_ExceptionMatches(PyExc_AttributeError))) - return NULL; - __Pyx_PyErr_Clear(); - __Pyx_GetModuleGlobalNameUncached(result, name); - return result; -} -static PyObject *__Pyx__GetNameInClass(PyObject *nmspace, PyObject *name) { - PyObject *result; - result = __Pyx_PyObject_GetAttrStr(nmspace, name); - if (!result) { - result = __Pyx_GetGlobalNameAfterAttributeLookup(name); - } - return result; -} - -/* CLineInTraceback */ - #ifndef CYTHON_CLINE_IN_TRACEBACK -static int __Pyx_CLineForTraceback(PyThreadState *tstate, int c_line) { - PyObject *use_cline; - PyObject *ptype, *pvalue, *ptraceback; -#if CYTHON_COMPILING_IN_CPYTHON - PyObject **cython_runtime_dict; -#endif - if (unlikely(!__pyx_cython_runtime)) { - return c_line; - } - __Pyx_ErrFetchInState(tstate, &ptype, &pvalue, &ptraceback); -#if CYTHON_COMPILING_IN_CPYTHON - cython_runtime_dict = _PyObject_GetDictPtr(__pyx_cython_runtime); - if (likely(cython_runtime_dict)) { - __PYX_PY_DICT_LOOKUP_IF_MODIFIED( - use_cline, *cython_runtime_dict, - __Pyx_PyDict_GetItemStr(*cython_runtime_dict, __pyx_n_s_cline_in_traceback)) - } else -#endif - { - PyObject *use_cline_obj = __Pyx_PyObject_GetAttrStr(__pyx_cython_runtime, __pyx_n_s_cline_in_traceback); - if (use_cline_obj) { - use_cline = PyObject_Not(use_cline_obj) ? Py_False : Py_True; - Py_DECREF(use_cline_obj); - } else { - PyErr_Clear(); - use_cline = NULL; - } - } - if (!use_cline) { - c_line = 0; - PyObject_SetAttr(__pyx_cython_runtime, __pyx_n_s_cline_in_traceback, Py_False); - } - else if (use_cline == Py_False || (use_cline != Py_True && PyObject_Not(use_cline) != 0)) { - c_line = 0; - } - __Pyx_ErrRestoreInState(tstate, ptype, pvalue, ptraceback); - return c_line; -} -#endif - -/* CodeObjectCache */ - static int __pyx_bisect_code_objects(__Pyx_CodeObjectCacheEntry* entries, int count, int code_line) { - int start = 0, mid = 0, end = count - 1; - if (end >= 0 && code_line > entries[end].code_line) { - return count; - } - while (start < end) { - mid = start + (end - start) / 2; - if (code_line < entries[mid].code_line) { - end = mid; - } else if (code_line > entries[mid].code_line) { - start = mid + 1; - } else { - return mid; - } - } - if (code_line <= entries[mid].code_line) { - return mid; - } else { - return mid + 1; - } -} -static PyCodeObject *__pyx_find_code_object(int code_line) { - PyCodeObject* code_object; - int pos; - if (unlikely(!code_line) || unlikely(!__pyx_code_cache.entries)) { - return NULL; - } - pos = __pyx_bisect_code_objects(__pyx_code_cache.entries, __pyx_code_cache.count, code_line); - if (unlikely(pos >= __pyx_code_cache.count) || unlikely(__pyx_code_cache.entries[pos].code_line != code_line)) { - return NULL; - } - code_object = __pyx_code_cache.entries[pos].code_object; - Py_INCREF(code_object); - return code_object; -} -static void __pyx_insert_code_object(int code_line, PyCodeObject* code_object) { - int pos, i; - __Pyx_CodeObjectCacheEntry* entries = __pyx_code_cache.entries; - if (unlikely(!code_line)) { - return; - } - if (unlikely(!entries)) { - entries = (__Pyx_CodeObjectCacheEntry*)PyMem_Malloc(64*sizeof(__Pyx_CodeObjectCacheEntry)); - if (likely(entries)) { - __pyx_code_cache.entries = entries; - __pyx_code_cache.max_count = 64; - __pyx_code_cache.count = 1; - entries[0].code_line = code_line; - entries[0].code_object = code_object; - Py_INCREF(code_object); - } - return; - } - pos = __pyx_bisect_code_objects(__pyx_code_cache.entries, __pyx_code_cache.count, code_line); - if ((pos < __pyx_code_cache.count) && unlikely(__pyx_code_cache.entries[pos].code_line == code_line)) { - PyCodeObject* tmp = entries[pos].code_object; - entries[pos].code_object = code_object; - Py_DECREF(tmp); - return; - } - if (__pyx_code_cache.count == __pyx_code_cache.max_count) { - int new_max = __pyx_code_cache.max_count + 64; - entries = (__Pyx_CodeObjectCacheEntry*)PyMem_Realloc( - __pyx_code_cache.entries, (size_t)new_max*sizeof(__Pyx_CodeObjectCacheEntry)); - if (unlikely(!entries)) { - return; - } - __pyx_code_cache.entries = entries; - __pyx_code_cache.max_count = new_max; - } - for (i=__pyx_code_cache.count; i>pos; i--) { - entries[i] = entries[i-1]; - } - entries[pos].code_line = code_line; - entries[pos].code_object = code_object; - __pyx_code_cache.count++; - Py_INCREF(code_object); -} - -/* AddTraceback */ - #include "compile.h" -#include "frameobject.h" -#include "traceback.h" -static PyCodeObject* __Pyx_CreateCodeObjectForTraceback( - const char *funcname, int c_line, - int py_line, const char *filename) { - PyCodeObject *py_code = 0; - PyObject *py_srcfile = 0; - PyObject *py_funcname = 0; - #if PY_MAJOR_VERSION < 3 - py_srcfile = PyString_FromString(filename); - #else - py_srcfile = PyUnicode_FromString(filename); - #endif - if (!py_srcfile) goto bad; - if (c_line) { - #if PY_MAJOR_VERSION < 3 - py_funcname = PyString_FromFormat( "%s (%s:%d)", funcname, __pyx_cfilenm, c_line); - #else - py_funcname = PyUnicode_FromFormat( "%s (%s:%d)", funcname, __pyx_cfilenm, c_line); - #endif - } - else { - #if PY_MAJOR_VERSION < 3 - py_funcname = PyString_FromString(funcname); - #else - py_funcname = PyUnicode_FromString(funcname); - #endif - } - if (!py_funcname) goto bad; - py_code = __Pyx_PyCode_New( - 0, - 0, - 0, - 0, - 0, - __pyx_empty_bytes, /*PyObject *code,*/ - __pyx_empty_tuple, /*PyObject *consts,*/ - __pyx_empty_tuple, /*PyObject *names,*/ - __pyx_empty_tuple, /*PyObject *varnames,*/ - __pyx_empty_tuple, /*PyObject *freevars,*/ - __pyx_empty_tuple, /*PyObject *cellvars,*/ - py_srcfile, /*PyObject *filename,*/ - py_funcname, /*PyObject *name,*/ - py_line, - __pyx_empty_bytes /*PyObject *lnotab*/ - ); - Py_DECREF(py_srcfile); - Py_DECREF(py_funcname); - return py_code; -bad: - Py_XDECREF(py_srcfile); - Py_XDECREF(py_funcname); - return NULL; -} -static void __Pyx_AddTraceback(const char *funcname, int c_line, - int py_line, const char *filename) { - PyCodeObject *py_code = 0; - PyFrameObject *py_frame = 0; - PyThreadState *tstate = __Pyx_PyThreadState_Current; - if (c_line) { - c_line = __Pyx_CLineForTraceback(tstate, c_line); - } - py_code = __pyx_find_code_object(c_line ? -c_line : py_line); - if (!py_code) { - py_code = __Pyx_CreateCodeObjectForTraceback( - funcname, c_line, py_line, filename); - if (!py_code) goto bad; - __pyx_insert_code_object(c_line ? -c_line : py_line, py_code); - } - py_frame = PyFrame_New( - tstate, /*PyThreadState *tstate,*/ - py_code, /*PyCodeObject *code,*/ - __pyx_d, /*PyObject *globals,*/ - 0 /*PyObject *locals*/ - ); - if (!py_frame) goto bad; - __Pyx_PyFrame_SetLineNumber(py_frame, py_line); - PyTraceBack_Here(py_frame); -bad: - Py_XDECREF(py_code); - Py_XDECREF(py_frame); -} - -/* CIntFromPyVerify */ - #define __PYX_VERIFY_RETURN_INT(target_type, func_type, func_value)\ - __PYX__VERIFY_RETURN_INT(target_type, func_type, func_value, 0) -#define __PYX_VERIFY_RETURN_INT_EXC(target_type, func_type, func_value)\ - __PYX__VERIFY_RETURN_INT(target_type, func_type, func_value, 1) -#define __PYX__VERIFY_RETURN_INT(target_type, func_type, func_value, exc)\ - {\ - func_type value = func_value;\ - if (sizeof(target_type) < sizeof(func_type)) {\ - if (unlikely(value != (func_type) (target_type) value)) {\ - func_type zero = 0;\ - if (exc && unlikely(value == (func_type)-1 && PyErr_Occurred()))\ - return (target_type) -1;\ - if (is_unsigned && unlikely(value < zero))\ - goto raise_neg_overflow;\ - else\ - goto raise_overflow;\ - }\ - }\ - return (target_type) value;\ - } - -/* CIntToPy */ - static CYTHON_INLINE PyObject* __Pyx_PyInt_From_long(long value) { - const long neg_one = (long) ((long) 0 - (long) 1), const_zero = (long) 0; - const int is_unsigned = neg_one > const_zero; - if (is_unsigned) { - if (sizeof(long) < sizeof(long)) { - return PyInt_FromLong((long) value); - } else if (sizeof(long) <= sizeof(unsigned long)) { - return PyLong_FromUnsignedLong((unsigned long) value); -#ifdef HAVE_LONG_LONG - } else if (sizeof(long) <= sizeof(unsigned PY_LONG_LONG)) { - return PyLong_FromUnsignedLongLong((unsigned PY_LONG_LONG) value); -#endif - } - } else { - if (sizeof(long) <= sizeof(long)) { - return PyInt_FromLong((long) value); -#ifdef HAVE_LONG_LONG - } else if (sizeof(long) <= sizeof(PY_LONG_LONG)) { - return PyLong_FromLongLong((PY_LONG_LONG) value); -#endif - } - } - { - int one = 1; int little = (int)*(unsigned char *)&one; - unsigned char *bytes = (unsigned char *)&value; - return _PyLong_FromByteArray(bytes, sizeof(long), - little, !is_unsigned); - } -} - -/* CIntToPy */ - static CYTHON_INLINE PyObject* __Pyx_PyInt_From_unsigned_int(unsigned int value) { - const unsigned int neg_one = (unsigned int) ((unsigned int) 0 - (unsigned int) 1), const_zero = (unsigned int) 0; - const int is_unsigned = neg_one > const_zero; - if (is_unsigned) { - if (sizeof(unsigned int) < sizeof(long)) { - return PyInt_FromLong((long) value); - } else if (sizeof(unsigned int) <= sizeof(unsigned long)) { - return PyLong_FromUnsignedLong((unsigned long) value); -#ifdef HAVE_LONG_LONG - } else if (sizeof(unsigned int) <= sizeof(unsigned PY_LONG_LONG)) { - return PyLong_FromUnsignedLongLong((unsigned PY_LONG_LONG) value); -#endif - } - } else { - if (sizeof(unsigned int) <= sizeof(long)) { - return PyInt_FromLong((long) value); -#ifdef HAVE_LONG_LONG - } else if (sizeof(unsigned int) <= sizeof(PY_LONG_LONG)) { - return PyLong_FromLongLong((PY_LONG_LONG) value); -#endif - } - } - { - int one = 1; int little = (int)*(unsigned char *)&one; - unsigned char *bytes = (unsigned char *)&value; - return _PyLong_FromByteArray(bytes, sizeof(unsigned int), - little, !is_unsigned); - } -} - -/* CIntToPy */ - static CYTHON_INLINE PyObject* __Pyx_PyInt_From_uint16_t(uint16_t value) { - const uint16_t neg_one = (uint16_t) ((uint16_t) 0 - (uint16_t) 1), const_zero = (uint16_t) 0; - const int is_unsigned = neg_one > const_zero; - if (is_unsigned) { - if (sizeof(uint16_t) < sizeof(long)) { - return PyInt_FromLong((long) value); - } else if (sizeof(uint16_t) <= sizeof(unsigned long)) { - return PyLong_FromUnsignedLong((unsigned long) value); -#ifdef HAVE_LONG_LONG - } else if (sizeof(uint16_t) <= sizeof(unsigned PY_LONG_LONG)) { - return PyLong_FromUnsignedLongLong((unsigned PY_LONG_LONG) value); -#endif - } - } else { - if (sizeof(uint16_t) <= sizeof(long)) { - return PyInt_FromLong((long) value); -#ifdef HAVE_LONG_LONG - } else if (sizeof(uint16_t) <= sizeof(PY_LONG_LONG)) { - return PyLong_FromLongLong((PY_LONG_LONG) value); -#endif - } - } - { - int one = 1; int little = (int)*(unsigned char *)&one; - unsigned char *bytes = (unsigned char *)&value; - return _PyLong_FromByteArray(bytes, sizeof(uint16_t), - little, !is_unsigned); - } -} - -/* CIntToPy */ - static CYTHON_INLINE PyObject* __Pyx_PyInt_From_uint64_t(uint64_t value) { - const uint64_t neg_one = (uint64_t) ((uint64_t) 0 - (uint64_t) 1), const_zero = (uint64_t) 0; - const int is_unsigned = neg_one > const_zero; - if (is_unsigned) { - if (sizeof(uint64_t) < sizeof(long)) { - return PyInt_FromLong((long) value); - } else if (sizeof(uint64_t) <= sizeof(unsigned long)) { - return PyLong_FromUnsignedLong((unsigned long) value); -#ifdef HAVE_LONG_LONG - } else if (sizeof(uint64_t) <= sizeof(unsigned PY_LONG_LONG)) { - return PyLong_FromUnsignedLongLong((unsigned PY_LONG_LONG) value); -#endif - } - } else { - if (sizeof(uint64_t) <= sizeof(long)) { - return PyInt_FromLong((long) value); -#ifdef HAVE_LONG_LONG - } else if (sizeof(uint64_t) <= sizeof(PY_LONG_LONG)) { - return PyLong_FromLongLong((PY_LONG_LONG) value); -#endif - } - } - { - int one = 1; int little = (int)*(unsigned char *)&one; - unsigned char *bytes = (unsigned char *)&value; - return _PyLong_FromByteArray(bytes, sizeof(uint64_t), - little, !is_unsigned); - } -} - -/* CIntFromPy */ - static CYTHON_INLINE unsigned int __Pyx_PyInt_As_unsigned_int(PyObject *x) { - const unsigned int neg_one = (unsigned int) ((unsigned int) 0 - (unsigned int) 1), const_zero = (unsigned int) 0; - const int is_unsigned = neg_one > const_zero; -#if PY_MAJOR_VERSION < 3 - if (likely(PyInt_Check(x))) { - if (sizeof(unsigned int) < sizeof(long)) { - __PYX_VERIFY_RETURN_INT(unsigned int, long, PyInt_AS_LONG(x)) - } else { - long val = PyInt_AS_LONG(x); - if (is_unsigned && unlikely(val < 0)) { - goto raise_neg_overflow; - } - return (unsigned int) val; - } - } else -#endif - if (likely(PyLong_Check(x))) { - if (is_unsigned) { -#if CYTHON_USE_PYLONG_INTERNALS - const digit* digits = ((PyLongObject*)x)->ob_digit; - switch (Py_SIZE(x)) { - case 0: return (unsigned int) 0; - case 1: __PYX_VERIFY_RETURN_INT(unsigned int, digit, digits[0]) - case 2: - if (8 * sizeof(unsigned int) > 1 * PyLong_SHIFT) { - if (8 * sizeof(unsigned long) > 2 * PyLong_SHIFT) { - __PYX_VERIFY_RETURN_INT(unsigned int, unsigned long, (((((unsigned long)digits[1]) << PyLong_SHIFT) | (unsigned long)digits[0]))) - } else if (8 * sizeof(unsigned int) >= 2 * PyLong_SHIFT) { - return (unsigned int) (((((unsigned int)digits[1]) << PyLong_SHIFT) | (unsigned int)digits[0])); - } - } - break; - case 3: - if (8 * sizeof(unsigned int) > 2 * PyLong_SHIFT) { - if (8 * sizeof(unsigned long) > 3 * PyLong_SHIFT) { - __PYX_VERIFY_RETURN_INT(unsigned int, unsigned long, (((((((unsigned long)digits[2]) << PyLong_SHIFT) | (unsigned long)digits[1]) << PyLong_SHIFT) | (unsigned long)digits[0]))) - } else if (8 * sizeof(unsigned int) >= 3 * PyLong_SHIFT) { - return (unsigned int) (((((((unsigned int)digits[2]) << PyLong_SHIFT) | (unsigned int)digits[1]) << PyLong_SHIFT) | (unsigned int)digits[0])); - } - } - break; - case 4: - if (8 * sizeof(unsigned int) > 3 * PyLong_SHIFT) { - if (8 * sizeof(unsigned long) > 4 * PyLong_SHIFT) { - __PYX_VERIFY_RETURN_INT(unsigned int, unsigned long, (((((((((unsigned long)digits[3]) << PyLong_SHIFT) | (unsigned long)digits[2]) << PyLong_SHIFT) | (unsigned long)digits[1]) << PyLong_SHIFT) | (unsigned long)digits[0]))) - } else if (8 * sizeof(unsigned int) >= 4 * PyLong_SHIFT) { - return (unsigned int) (((((((((unsigned int)digits[3]) << PyLong_SHIFT) | (unsigned int)digits[2]) << PyLong_SHIFT) | (unsigned int)digits[1]) << PyLong_SHIFT) | (unsigned int)digits[0])); - } - } - break; - } -#endif -#if CYTHON_COMPILING_IN_CPYTHON - if (unlikely(Py_SIZE(x) < 0)) { - goto raise_neg_overflow; - } -#else - { - int result = PyObject_RichCompareBool(x, Py_False, Py_LT); - if (unlikely(result < 0)) - return (unsigned int) -1; - if (unlikely(result == 1)) - goto raise_neg_overflow; - } -#endif - if (sizeof(unsigned int) <= sizeof(unsigned long)) { - __PYX_VERIFY_RETURN_INT_EXC(unsigned int, unsigned long, PyLong_AsUnsignedLong(x)) -#ifdef HAVE_LONG_LONG - } else if (sizeof(unsigned int) <= sizeof(unsigned PY_LONG_LONG)) { - __PYX_VERIFY_RETURN_INT_EXC(unsigned int, unsigned PY_LONG_LONG, PyLong_AsUnsignedLongLong(x)) -#endif - } - } else { -#if CYTHON_USE_PYLONG_INTERNALS - const digit* digits = ((PyLongObject*)x)->ob_digit; - switch (Py_SIZE(x)) { - case 0: return (unsigned int) 0; - case -1: __PYX_VERIFY_RETURN_INT(unsigned int, sdigit, (sdigit) (-(sdigit)digits[0])) - case 1: __PYX_VERIFY_RETURN_INT(unsigned int, digit, +digits[0]) - case -2: - if (8 * sizeof(unsigned int) - 1 > 1 * PyLong_SHIFT) { - if (8 * sizeof(unsigned long) > 2 * PyLong_SHIFT) { - __PYX_VERIFY_RETURN_INT(unsigned int, long, -(long) (((((unsigned long)digits[1]) << PyLong_SHIFT) | (unsigned long)digits[0]))) - } else if (8 * sizeof(unsigned int) - 1 > 2 * PyLong_SHIFT) { - return (unsigned int) (((unsigned int)-1)*(((((unsigned int)digits[1]) << PyLong_SHIFT) | (unsigned int)digits[0]))); - } - } - break; - case 2: - if (8 * sizeof(unsigned int) > 1 * PyLong_SHIFT) { - if (8 * sizeof(unsigned long) > 2 * PyLong_SHIFT) { - __PYX_VERIFY_RETURN_INT(unsigned int, unsigned long, (((((unsigned long)digits[1]) << PyLong_SHIFT) | (unsigned long)digits[0]))) - } else if (8 * sizeof(unsigned int) - 1 > 2 * PyLong_SHIFT) { - return (unsigned int) ((((((unsigned int)digits[1]) << PyLong_SHIFT) | (unsigned int)digits[0]))); - } - } - break; - case -3: - if (8 * sizeof(unsigned int) - 1 > 2 * PyLong_SHIFT) { - if (8 * sizeof(unsigned long) > 3 * PyLong_SHIFT) { - __PYX_VERIFY_RETURN_INT(unsigned int, long, -(long) (((((((unsigned long)digits[2]) << PyLong_SHIFT) | (unsigned long)digits[1]) << PyLong_SHIFT) | (unsigned long)digits[0]))) - } else if (8 * sizeof(unsigned int) - 1 > 3 * PyLong_SHIFT) { - return (unsigned int) (((unsigned int)-1)*(((((((unsigned int)digits[2]) << PyLong_SHIFT) | (unsigned int)digits[1]) << PyLong_SHIFT) | (unsigned int)digits[0]))); - } - } - break; - case 3: - if (8 * sizeof(unsigned int) > 2 * PyLong_SHIFT) { - if (8 * sizeof(unsigned long) > 3 * PyLong_SHIFT) { - __PYX_VERIFY_RETURN_INT(unsigned int, unsigned long, (((((((unsigned long)digits[2]) << PyLong_SHIFT) | (unsigned long)digits[1]) << PyLong_SHIFT) | (unsigned long)digits[0]))) - } else if (8 * sizeof(unsigned int) - 1 > 3 * PyLong_SHIFT) { - return (unsigned int) ((((((((unsigned int)digits[2]) << PyLong_SHIFT) | (unsigned int)digits[1]) << PyLong_SHIFT) | (unsigned int)digits[0]))); - } - } - break; - case -4: - if (8 * sizeof(unsigned int) - 1 > 3 * PyLong_SHIFT) { - if (8 * sizeof(unsigned long) > 4 * PyLong_SHIFT) { - __PYX_VERIFY_RETURN_INT(unsigned int, long, -(long) (((((((((unsigned long)digits[3]) << PyLong_SHIFT) | (unsigned long)digits[2]) << PyLong_SHIFT) | (unsigned long)digits[1]) << PyLong_SHIFT) | (unsigned long)digits[0]))) - } else if (8 * sizeof(unsigned int) - 1 > 4 * PyLong_SHIFT) { - return (unsigned int) (((unsigned int)-1)*(((((((((unsigned int)digits[3]) << PyLong_SHIFT) | (unsigned int)digits[2]) << PyLong_SHIFT) | (unsigned int)digits[1]) << PyLong_SHIFT) | (unsigned int)digits[0]))); - } - } - break; - case 4: - if (8 * sizeof(unsigned int) > 3 * PyLong_SHIFT) { - if (8 * sizeof(unsigned long) > 4 * PyLong_SHIFT) { - __PYX_VERIFY_RETURN_INT(unsigned int, unsigned long, (((((((((unsigned long)digits[3]) << PyLong_SHIFT) | (unsigned long)digits[2]) << PyLong_SHIFT) | (unsigned long)digits[1]) << PyLong_SHIFT) | (unsigned long)digits[0]))) - } else if (8 * sizeof(unsigned int) - 1 > 4 * PyLong_SHIFT) { - return (unsigned int) ((((((((((unsigned int)digits[3]) << PyLong_SHIFT) | (unsigned int)digits[2]) << PyLong_SHIFT) | (unsigned int)digits[1]) << PyLong_SHIFT) | (unsigned int)digits[0]))); - } - } - break; - } -#endif - if (sizeof(unsigned int) <= sizeof(long)) { - __PYX_VERIFY_RETURN_INT_EXC(unsigned int, long, PyLong_AsLong(x)) -#ifdef HAVE_LONG_LONG - } else if (sizeof(unsigned int) <= sizeof(PY_LONG_LONG)) { - __PYX_VERIFY_RETURN_INT_EXC(unsigned int, PY_LONG_LONG, PyLong_AsLongLong(x)) -#endif - } - } - { -#if CYTHON_COMPILING_IN_PYPY && !defined(_PyLong_AsByteArray) - PyErr_SetString(PyExc_RuntimeError, - "_PyLong_AsByteArray() not available in PyPy, cannot convert large numbers"); -#else - unsigned int val; - PyObject *v = __Pyx_PyNumber_IntOrLong(x); - #if PY_MAJOR_VERSION < 3 - if (likely(v) && !PyLong_Check(v)) { - PyObject *tmp = v; - v = PyNumber_Long(tmp); - Py_DECREF(tmp); - } - #endif - if (likely(v)) { - int one = 1; int is_little = (int)*(unsigned char *)&one; - unsigned char *bytes = (unsigned char *)&val; - int ret = _PyLong_AsByteArray((PyLongObject *)v, - bytes, sizeof(val), - is_little, !is_unsigned); - Py_DECREF(v); - if (likely(!ret)) - return val; - } -#endif - return (unsigned int) -1; - } - } else { - unsigned int val; - PyObject *tmp = __Pyx_PyNumber_IntOrLong(x); - if (!tmp) return (unsigned int) -1; - val = __Pyx_PyInt_As_unsigned_int(tmp); - Py_DECREF(tmp); - return val; - } -raise_overflow: - PyErr_SetString(PyExc_OverflowError, - "value too large to convert to unsigned int"); - return (unsigned int) -1; -raise_neg_overflow: - PyErr_SetString(PyExc_OverflowError, - "can't convert negative value to unsigned int"); - return (unsigned int) -1; -} - -/* CIntFromPy */ - static CYTHON_INLINE long __Pyx_PyInt_As_long(PyObject *x) { - const long neg_one = (long) ((long) 0 - (long) 1), const_zero = (long) 0; - const int is_unsigned = neg_one > const_zero; -#if PY_MAJOR_VERSION < 3 - if (likely(PyInt_Check(x))) { - if (sizeof(long) < sizeof(long)) { - __PYX_VERIFY_RETURN_INT(long, long, PyInt_AS_LONG(x)) - } else { - long val = PyInt_AS_LONG(x); - if (is_unsigned && unlikely(val < 0)) { - goto raise_neg_overflow; - } - return (long) val; - } - } else -#endif - if (likely(PyLong_Check(x))) { - if (is_unsigned) { -#if CYTHON_USE_PYLONG_INTERNALS - const digit* digits = ((PyLongObject*)x)->ob_digit; - switch (Py_SIZE(x)) { - case 0: return (long) 0; - case 1: __PYX_VERIFY_RETURN_INT(long, digit, digits[0]) - case 2: - if (8 * sizeof(long) > 1 * PyLong_SHIFT) { - if (8 * sizeof(unsigned long) > 2 * PyLong_SHIFT) { - __PYX_VERIFY_RETURN_INT(long, unsigned long, (((((unsigned long)digits[1]) << PyLong_SHIFT) | (unsigned long)digits[0]))) - } else if (8 * sizeof(long) >= 2 * PyLong_SHIFT) { - return (long) (((((long)digits[1]) << PyLong_SHIFT) | (long)digits[0])); - } - } - break; - case 3: - if (8 * sizeof(long) > 2 * PyLong_SHIFT) { - if (8 * sizeof(unsigned long) > 3 * PyLong_SHIFT) { - __PYX_VERIFY_RETURN_INT(long, unsigned long, (((((((unsigned long)digits[2]) << PyLong_SHIFT) | (unsigned long)digits[1]) << PyLong_SHIFT) | (unsigned long)digits[0]))) - } else if (8 * sizeof(long) >= 3 * PyLong_SHIFT) { - return (long) (((((((long)digits[2]) << PyLong_SHIFT) | (long)digits[1]) << PyLong_SHIFT) | (long)digits[0])); - } - } - break; - case 4: - if (8 * sizeof(long) > 3 * PyLong_SHIFT) { - if (8 * sizeof(unsigned long) > 4 * PyLong_SHIFT) { - __PYX_VERIFY_RETURN_INT(long, unsigned long, (((((((((unsigned long)digits[3]) << PyLong_SHIFT) | (unsigned long)digits[2]) << PyLong_SHIFT) | (unsigned long)digits[1]) << PyLong_SHIFT) | (unsigned long)digits[0]))) - } else if (8 * sizeof(long) >= 4 * PyLong_SHIFT) { - return (long) (((((((((long)digits[3]) << PyLong_SHIFT) | (long)digits[2]) << PyLong_SHIFT) | (long)digits[1]) << PyLong_SHIFT) | (long)digits[0])); - } - } - break; - } -#endif -#if CYTHON_COMPILING_IN_CPYTHON - if (unlikely(Py_SIZE(x) < 0)) { - goto raise_neg_overflow; - } -#else - { - int result = PyObject_RichCompareBool(x, Py_False, Py_LT); - if (unlikely(result < 0)) - return (long) -1; - if (unlikely(result == 1)) - goto raise_neg_overflow; - } -#endif - if (sizeof(long) <= sizeof(unsigned long)) { - __PYX_VERIFY_RETURN_INT_EXC(long, unsigned long, PyLong_AsUnsignedLong(x)) -#ifdef HAVE_LONG_LONG - } else if (sizeof(long) <= sizeof(unsigned PY_LONG_LONG)) { - __PYX_VERIFY_RETURN_INT_EXC(long, unsigned PY_LONG_LONG, PyLong_AsUnsignedLongLong(x)) -#endif - } - } else { -#if CYTHON_USE_PYLONG_INTERNALS - const digit* digits = ((PyLongObject*)x)->ob_digit; - switch (Py_SIZE(x)) { - case 0: return (long) 0; - case -1: __PYX_VERIFY_RETURN_INT(long, sdigit, (sdigit) (-(sdigit)digits[0])) - case 1: __PYX_VERIFY_RETURN_INT(long, digit, +digits[0]) - case -2: - if (8 * sizeof(long) - 1 > 1 * PyLong_SHIFT) { - if (8 * sizeof(unsigned long) > 2 * PyLong_SHIFT) { - __PYX_VERIFY_RETURN_INT(long, long, -(long) (((((unsigned long)digits[1]) << PyLong_SHIFT) | (unsigned long)digits[0]))) - } else if (8 * sizeof(long) - 1 > 2 * PyLong_SHIFT) { - return (long) (((long)-1)*(((((long)digits[1]) << PyLong_SHIFT) | (long)digits[0]))); - } - } - break; - case 2: - if (8 * sizeof(long) > 1 * PyLong_SHIFT) { - if (8 * sizeof(unsigned long) > 2 * PyLong_SHIFT) { - __PYX_VERIFY_RETURN_INT(long, unsigned long, (((((unsigned long)digits[1]) << PyLong_SHIFT) | (unsigned long)digits[0]))) - } else if (8 * sizeof(long) - 1 > 2 * PyLong_SHIFT) { - return (long) ((((((long)digits[1]) << PyLong_SHIFT) | (long)digits[0]))); - } - } - break; - case -3: - if (8 * sizeof(long) - 1 > 2 * PyLong_SHIFT) { - if (8 * sizeof(unsigned long) > 3 * PyLong_SHIFT) { - __PYX_VERIFY_RETURN_INT(long, long, -(long) (((((((unsigned long)digits[2]) << PyLong_SHIFT) | (unsigned long)digits[1]) << PyLong_SHIFT) | (unsigned long)digits[0]))) - } else if (8 * sizeof(long) - 1 > 3 * PyLong_SHIFT) { - return (long) (((long)-1)*(((((((long)digits[2]) << PyLong_SHIFT) | (long)digits[1]) << PyLong_SHIFT) | (long)digits[0]))); - } - } - break; - case 3: - if (8 * sizeof(long) > 2 * PyLong_SHIFT) { - if (8 * sizeof(unsigned long) > 3 * PyLong_SHIFT) { - __PYX_VERIFY_RETURN_INT(long, unsigned long, (((((((unsigned long)digits[2]) << PyLong_SHIFT) | (unsigned long)digits[1]) << PyLong_SHIFT) | (unsigned long)digits[0]))) - } else if (8 * sizeof(long) - 1 > 3 * PyLong_SHIFT) { - return (long) ((((((((long)digits[2]) << PyLong_SHIFT) | (long)digits[1]) << PyLong_SHIFT) | (long)digits[0]))); - } - } - break; - case -4: - if (8 * sizeof(long) - 1 > 3 * PyLong_SHIFT) { - if (8 * sizeof(unsigned long) > 4 * PyLong_SHIFT) { - __PYX_VERIFY_RETURN_INT(long, long, -(long) (((((((((unsigned long)digits[3]) << PyLong_SHIFT) | (unsigned long)digits[2]) << PyLong_SHIFT) | (unsigned long)digits[1]) << PyLong_SHIFT) | (unsigned long)digits[0]))) - } else if (8 * sizeof(long) - 1 > 4 * PyLong_SHIFT) { - return (long) (((long)-1)*(((((((((long)digits[3]) << PyLong_SHIFT) | (long)digits[2]) << PyLong_SHIFT) | (long)digits[1]) << PyLong_SHIFT) | (long)digits[0]))); - } - } - break; - case 4: - if (8 * sizeof(long) > 3 * PyLong_SHIFT) { - if (8 * sizeof(unsigned long) > 4 * PyLong_SHIFT) { - __PYX_VERIFY_RETURN_INT(long, unsigned long, (((((((((unsigned long)digits[3]) << PyLong_SHIFT) | (unsigned long)digits[2]) << PyLong_SHIFT) | (unsigned long)digits[1]) << PyLong_SHIFT) | (unsigned long)digits[0]))) - } else if (8 * sizeof(long) - 1 > 4 * PyLong_SHIFT) { - return (long) ((((((((((long)digits[3]) << PyLong_SHIFT) | (long)digits[2]) << PyLong_SHIFT) | (long)digits[1]) << PyLong_SHIFT) | (long)digits[0]))); - } - } - break; - } -#endif - if (sizeof(long) <= sizeof(long)) { - __PYX_VERIFY_RETURN_INT_EXC(long, long, PyLong_AsLong(x)) -#ifdef HAVE_LONG_LONG - } else if (sizeof(long) <= sizeof(PY_LONG_LONG)) { - __PYX_VERIFY_RETURN_INT_EXC(long, PY_LONG_LONG, PyLong_AsLongLong(x)) -#endif - } - } - { -#if CYTHON_COMPILING_IN_PYPY && !defined(_PyLong_AsByteArray) - PyErr_SetString(PyExc_RuntimeError, - "_PyLong_AsByteArray() not available in PyPy, cannot convert large numbers"); -#else - long val; - PyObject *v = __Pyx_PyNumber_IntOrLong(x); - #if PY_MAJOR_VERSION < 3 - if (likely(v) && !PyLong_Check(v)) { - PyObject *tmp = v; - v = PyNumber_Long(tmp); - Py_DECREF(tmp); - } - #endif - if (likely(v)) { - int one = 1; int is_little = (int)*(unsigned char *)&one; - unsigned char *bytes = (unsigned char *)&val; - int ret = _PyLong_AsByteArray((PyLongObject *)v, - bytes, sizeof(val), - is_little, !is_unsigned); - Py_DECREF(v); - if (likely(!ret)) - return val; - } -#endif - return (long) -1; - } - } else { - long val; - PyObject *tmp = __Pyx_PyNumber_IntOrLong(x); - if (!tmp) return (long) -1; - val = __Pyx_PyInt_As_long(tmp); - Py_DECREF(tmp); - return val; - } -raise_overflow: - PyErr_SetString(PyExc_OverflowError, - "value too large to convert to long"); - return (long) -1; -raise_neg_overflow: - PyErr_SetString(PyExc_OverflowError, - "can't convert negative value to long"); - return (long) -1; -} - -/* CIntFromPy */ - static CYTHON_INLINE uint64_t __Pyx_PyInt_As_uint64_t(PyObject *x) { - const uint64_t neg_one = (uint64_t) ((uint64_t) 0 - (uint64_t) 1), const_zero = (uint64_t) 0; - const int is_unsigned = neg_one > const_zero; -#if PY_MAJOR_VERSION < 3 - if (likely(PyInt_Check(x))) { - if (sizeof(uint64_t) < sizeof(long)) { - __PYX_VERIFY_RETURN_INT(uint64_t, long, PyInt_AS_LONG(x)) - } else { - long val = PyInt_AS_LONG(x); - if (is_unsigned && unlikely(val < 0)) { - goto raise_neg_overflow; - } - return (uint64_t) val; - } - } else -#endif - if (likely(PyLong_Check(x))) { - if (is_unsigned) { -#if CYTHON_USE_PYLONG_INTERNALS - const digit* digits = ((PyLongObject*)x)->ob_digit; - switch (Py_SIZE(x)) { - case 0: return (uint64_t) 0; - case 1: __PYX_VERIFY_RETURN_INT(uint64_t, digit, digits[0]) - case 2: - if (8 * sizeof(uint64_t) > 1 * PyLong_SHIFT) { - if (8 * sizeof(unsigned long) > 2 * PyLong_SHIFT) { - __PYX_VERIFY_RETURN_INT(uint64_t, unsigned long, (((((unsigned long)digits[1]) << PyLong_SHIFT) | (unsigned long)digits[0]))) - } else if (8 * sizeof(uint64_t) >= 2 * PyLong_SHIFT) { - return (uint64_t) (((((uint64_t)digits[1]) << PyLong_SHIFT) | (uint64_t)digits[0])); - } - } - break; - case 3: - if (8 * sizeof(uint64_t) > 2 * PyLong_SHIFT) { - if (8 * sizeof(unsigned long) > 3 * PyLong_SHIFT) { - __PYX_VERIFY_RETURN_INT(uint64_t, unsigned long, (((((((unsigned long)digits[2]) << PyLong_SHIFT) | (unsigned long)digits[1]) << PyLong_SHIFT) | (unsigned long)digits[0]))) - } else if (8 * sizeof(uint64_t) >= 3 * PyLong_SHIFT) { - return (uint64_t) (((((((uint64_t)digits[2]) << PyLong_SHIFT) | (uint64_t)digits[1]) << PyLong_SHIFT) | (uint64_t)digits[0])); - } - } - break; - case 4: - if (8 * sizeof(uint64_t) > 3 * PyLong_SHIFT) { - if (8 * sizeof(unsigned long) > 4 * PyLong_SHIFT) { - __PYX_VERIFY_RETURN_INT(uint64_t, unsigned long, (((((((((unsigned long)digits[3]) << PyLong_SHIFT) | (unsigned long)digits[2]) << PyLong_SHIFT) | (unsigned long)digits[1]) << PyLong_SHIFT) | (unsigned long)digits[0]))) - } else if (8 * sizeof(uint64_t) >= 4 * PyLong_SHIFT) { - return (uint64_t) (((((((((uint64_t)digits[3]) << PyLong_SHIFT) | (uint64_t)digits[2]) << PyLong_SHIFT) | (uint64_t)digits[1]) << PyLong_SHIFT) | (uint64_t)digits[0])); - } - } - break; - } -#endif -#if CYTHON_COMPILING_IN_CPYTHON - if (unlikely(Py_SIZE(x) < 0)) { - goto raise_neg_overflow; - } -#else - { - int result = PyObject_RichCompareBool(x, Py_False, Py_LT); - if (unlikely(result < 0)) - return (uint64_t) -1; - if (unlikely(result == 1)) - goto raise_neg_overflow; - } -#endif - if (sizeof(uint64_t) <= sizeof(unsigned long)) { - __PYX_VERIFY_RETURN_INT_EXC(uint64_t, unsigned long, PyLong_AsUnsignedLong(x)) -#ifdef HAVE_LONG_LONG - } else if (sizeof(uint64_t) <= sizeof(unsigned PY_LONG_LONG)) { - __PYX_VERIFY_RETURN_INT_EXC(uint64_t, unsigned PY_LONG_LONG, PyLong_AsUnsignedLongLong(x)) -#endif - } - } else { -#if CYTHON_USE_PYLONG_INTERNALS - const digit* digits = ((PyLongObject*)x)->ob_digit; - switch (Py_SIZE(x)) { - case 0: return (uint64_t) 0; - case -1: __PYX_VERIFY_RETURN_INT(uint64_t, sdigit, (sdigit) (-(sdigit)digits[0])) - case 1: __PYX_VERIFY_RETURN_INT(uint64_t, digit, +digits[0]) - case -2: - if (8 * sizeof(uint64_t) - 1 > 1 * PyLong_SHIFT) { - if (8 * sizeof(unsigned long) > 2 * PyLong_SHIFT) { - __PYX_VERIFY_RETURN_INT(uint64_t, long, -(long) (((((unsigned long)digits[1]) << PyLong_SHIFT) | (unsigned long)digits[0]))) - } else if (8 * sizeof(uint64_t) - 1 > 2 * PyLong_SHIFT) { - return (uint64_t) (((uint64_t)-1)*(((((uint64_t)digits[1]) << PyLong_SHIFT) | (uint64_t)digits[0]))); - } - } - break; - case 2: - if (8 * sizeof(uint64_t) > 1 * PyLong_SHIFT) { - if (8 * sizeof(unsigned long) > 2 * PyLong_SHIFT) { - __PYX_VERIFY_RETURN_INT(uint64_t, unsigned long, (((((unsigned long)digits[1]) << PyLong_SHIFT) | (unsigned long)digits[0]))) - } else if (8 * sizeof(uint64_t) - 1 > 2 * PyLong_SHIFT) { - return (uint64_t) ((((((uint64_t)digits[1]) << PyLong_SHIFT) | (uint64_t)digits[0]))); - } - } - break; - case -3: - if (8 * sizeof(uint64_t) - 1 > 2 * PyLong_SHIFT) { - if (8 * sizeof(unsigned long) > 3 * PyLong_SHIFT) { - __PYX_VERIFY_RETURN_INT(uint64_t, long, -(long) (((((((unsigned long)digits[2]) << PyLong_SHIFT) | (unsigned long)digits[1]) << PyLong_SHIFT) | (unsigned long)digits[0]))) - } else if (8 * sizeof(uint64_t) - 1 > 3 * PyLong_SHIFT) { - return (uint64_t) (((uint64_t)-1)*(((((((uint64_t)digits[2]) << PyLong_SHIFT) | (uint64_t)digits[1]) << PyLong_SHIFT) | (uint64_t)digits[0]))); - } - } - break; - case 3: - if (8 * sizeof(uint64_t) > 2 * PyLong_SHIFT) { - if (8 * sizeof(unsigned long) > 3 * PyLong_SHIFT) { - __PYX_VERIFY_RETURN_INT(uint64_t, unsigned long, (((((((unsigned long)digits[2]) << PyLong_SHIFT) | (unsigned long)digits[1]) << PyLong_SHIFT) | (unsigned long)digits[0]))) - } else if (8 * sizeof(uint64_t) - 1 > 3 * PyLong_SHIFT) { - return (uint64_t) ((((((((uint64_t)digits[2]) << PyLong_SHIFT) | (uint64_t)digits[1]) << PyLong_SHIFT) | (uint64_t)digits[0]))); - } - } - break; - case -4: - if (8 * sizeof(uint64_t) - 1 > 3 * PyLong_SHIFT) { - if (8 * sizeof(unsigned long) > 4 * PyLong_SHIFT) { - __PYX_VERIFY_RETURN_INT(uint64_t, long, -(long) (((((((((unsigned long)digits[3]) << PyLong_SHIFT) | (unsigned long)digits[2]) << PyLong_SHIFT) | (unsigned long)digits[1]) << PyLong_SHIFT) | (unsigned long)digits[0]))) - } else if (8 * sizeof(uint64_t) - 1 > 4 * PyLong_SHIFT) { - return (uint64_t) (((uint64_t)-1)*(((((((((uint64_t)digits[3]) << PyLong_SHIFT) | (uint64_t)digits[2]) << PyLong_SHIFT) | (uint64_t)digits[1]) << PyLong_SHIFT) | (uint64_t)digits[0]))); - } - } - break; - case 4: - if (8 * sizeof(uint64_t) > 3 * PyLong_SHIFT) { - if (8 * sizeof(unsigned long) > 4 * PyLong_SHIFT) { - __PYX_VERIFY_RETURN_INT(uint64_t, unsigned long, (((((((((unsigned long)digits[3]) << PyLong_SHIFT) | (unsigned long)digits[2]) << PyLong_SHIFT) | (unsigned long)digits[1]) << PyLong_SHIFT) | (unsigned long)digits[0]))) - } else if (8 * sizeof(uint64_t) - 1 > 4 * PyLong_SHIFT) { - return (uint64_t) ((((((((((uint64_t)digits[3]) << PyLong_SHIFT) | (uint64_t)digits[2]) << PyLong_SHIFT) | (uint64_t)digits[1]) << PyLong_SHIFT) | (uint64_t)digits[0]))); - } - } - break; - } -#endif - if (sizeof(uint64_t) <= sizeof(long)) { - __PYX_VERIFY_RETURN_INT_EXC(uint64_t, long, PyLong_AsLong(x)) -#ifdef HAVE_LONG_LONG - } else if (sizeof(uint64_t) <= sizeof(PY_LONG_LONG)) { - __PYX_VERIFY_RETURN_INT_EXC(uint64_t, PY_LONG_LONG, PyLong_AsLongLong(x)) -#endif - } - } - { -#if CYTHON_COMPILING_IN_PYPY && !defined(_PyLong_AsByteArray) - PyErr_SetString(PyExc_RuntimeError, - "_PyLong_AsByteArray() not available in PyPy, cannot convert large numbers"); -#else - uint64_t val; - PyObject *v = __Pyx_PyNumber_IntOrLong(x); - #if PY_MAJOR_VERSION < 3 - if (likely(v) && !PyLong_Check(v)) { - PyObject *tmp = v; - v = PyNumber_Long(tmp); - Py_DECREF(tmp); - } - #endif - if (likely(v)) { - int one = 1; int is_little = (int)*(unsigned char *)&one; - unsigned char *bytes = (unsigned char *)&val; - int ret = _PyLong_AsByteArray((PyLongObject *)v, - bytes, sizeof(val), - is_little, !is_unsigned); - Py_DECREF(v); - if (likely(!ret)) - return val; - } -#endif - return (uint64_t) -1; - } - } else { - uint64_t val; - PyObject *tmp = __Pyx_PyNumber_IntOrLong(x); - if (!tmp) return (uint64_t) -1; - val = __Pyx_PyInt_As_uint64_t(tmp); - Py_DECREF(tmp); - return val; - } -raise_overflow: - PyErr_SetString(PyExc_OverflowError, - "value too large to convert to uint64_t"); - return (uint64_t) -1; -raise_neg_overflow: - PyErr_SetString(PyExc_OverflowError, - "can't convert negative value to uint64_t"); - return (uint64_t) -1; -} - -/* CIntFromPy */ - static CYTHON_INLINE uint16_t __Pyx_PyInt_As_uint16_t(PyObject *x) { - const uint16_t neg_one = (uint16_t) ((uint16_t) 0 - (uint16_t) 1), const_zero = (uint16_t) 0; - const int is_unsigned = neg_one > const_zero; -#if PY_MAJOR_VERSION < 3 - if (likely(PyInt_Check(x))) { - if (sizeof(uint16_t) < sizeof(long)) { - __PYX_VERIFY_RETURN_INT(uint16_t, long, PyInt_AS_LONG(x)) - } else { - long val = PyInt_AS_LONG(x); - if (is_unsigned && unlikely(val < 0)) { - goto raise_neg_overflow; - } - return (uint16_t) val; - } - } else -#endif - if (likely(PyLong_Check(x))) { - if (is_unsigned) { -#if CYTHON_USE_PYLONG_INTERNALS - const digit* digits = ((PyLongObject*)x)->ob_digit; - switch (Py_SIZE(x)) { - case 0: return (uint16_t) 0; - case 1: __PYX_VERIFY_RETURN_INT(uint16_t, digit, digits[0]) - case 2: - if (8 * sizeof(uint16_t) > 1 * PyLong_SHIFT) { - if (8 * sizeof(unsigned long) > 2 * PyLong_SHIFT) { - __PYX_VERIFY_RETURN_INT(uint16_t, unsigned long, (((((unsigned long)digits[1]) << PyLong_SHIFT) | (unsigned long)digits[0]))) - } else if (8 * sizeof(uint16_t) >= 2 * PyLong_SHIFT) { - return (uint16_t) (((((uint16_t)digits[1]) << PyLong_SHIFT) | (uint16_t)digits[0])); - } - } - break; - case 3: - if (8 * sizeof(uint16_t) > 2 * PyLong_SHIFT) { - if (8 * sizeof(unsigned long) > 3 * PyLong_SHIFT) { - __PYX_VERIFY_RETURN_INT(uint16_t, unsigned long, (((((((unsigned long)digits[2]) << PyLong_SHIFT) | (unsigned long)digits[1]) << PyLong_SHIFT) | (unsigned long)digits[0]))) - } else if (8 * sizeof(uint16_t) >= 3 * PyLong_SHIFT) { - return (uint16_t) (((((((uint16_t)digits[2]) << PyLong_SHIFT) | (uint16_t)digits[1]) << PyLong_SHIFT) | (uint16_t)digits[0])); - } - } - break; - case 4: - if (8 * sizeof(uint16_t) > 3 * PyLong_SHIFT) { - if (8 * sizeof(unsigned long) > 4 * PyLong_SHIFT) { - __PYX_VERIFY_RETURN_INT(uint16_t, unsigned long, (((((((((unsigned long)digits[3]) << PyLong_SHIFT) | (unsigned long)digits[2]) << PyLong_SHIFT) | (unsigned long)digits[1]) << PyLong_SHIFT) | (unsigned long)digits[0]))) - } else if (8 * sizeof(uint16_t) >= 4 * PyLong_SHIFT) { - return (uint16_t) (((((((((uint16_t)digits[3]) << PyLong_SHIFT) | (uint16_t)digits[2]) << PyLong_SHIFT) | (uint16_t)digits[1]) << PyLong_SHIFT) | (uint16_t)digits[0])); - } - } - break; - } -#endif -#if CYTHON_COMPILING_IN_CPYTHON - if (unlikely(Py_SIZE(x) < 0)) { - goto raise_neg_overflow; - } -#else - { - int result = PyObject_RichCompareBool(x, Py_False, Py_LT); - if (unlikely(result < 0)) - return (uint16_t) -1; - if (unlikely(result == 1)) - goto raise_neg_overflow; - } -#endif - if (sizeof(uint16_t) <= sizeof(unsigned long)) { - __PYX_VERIFY_RETURN_INT_EXC(uint16_t, unsigned long, PyLong_AsUnsignedLong(x)) -#ifdef HAVE_LONG_LONG - } else if (sizeof(uint16_t) <= sizeof(unsigned PY_LONG_LONG)) { - __PYX_VERIFY_RETURN_INT_EXC(uint16_t, unsigned PY_LONG_LONG, PyLong_AsUnsignedLongLong(x)) -#endif - } - } else { -#if CYTHON_USE_PYLONG_INTERNALS - const digit* digits = ((PyLongObject*)x)->ob_digit; - switch (Py_SIZE(x)) { - case 0: return (uint16_t) 0; - case -1: __PYX_VERIFY_RETURN_INT(uint16_t, sdigit, (sdigit) (-(sdigit)digits[0])) - case 1: __PYX_VERIFY_RETURN_INT(uint16_t, digit, +digits[0]) - case -2: - if (8 * sizeof(uint16_t) - 1 > 1 * PyLong_SHIFT) { - if (8 * sizeof(unsigned long) > 2 * PyLong_SHIFT) { - __PYX_VERIFY_RETURN_INT(uint16_t, long, -(long) (((((unsigned long)digits[1]) << PyLong_SHIFT) | (unsigned long)digits[0]))) - } else if (8 * sizeof(uint16_t) - 1 > 2 * PyLong_SHIFT) { - return (uint16_t) (((uint16_t)-1)*(((((uint16_t)digits[1]) << PyLong_SHIFT) | (uint16_t)digits[0]))); - } - } - break; - case 2: - if (8 * sizeof(uint16_t) > 1 * PyLong_SHIFT) { - if (8 * sizeof(unsigned long) > 2 * PyLong_SHIFT) { - __PYX_VERIFY_RETURN_INT(uint16_t, unsigned long, (((((unsigned long)digits[1]) << PyLong_SHIFT) | (unsigned long)digits[0]))) - } else if (8 * sizeof(uint16_t) - 1 > 2 * PyLong_SHIFT) { - return (uint16_t) ((((((uint16_t)digits[1]) << PyLong_SHIFT) | (uint16_t)digits[0]))); - } - } - break; - case -3: - if (8 * sizeof(uint16_t) - 1 > 2 * PyLong_SHIFT) { - if (8 * sizeof(unsigned long) > 3 * PyLong_SHIFT) { - __PYX_VERIFY_RETURN_INT(uint16_t, long, -(long) (((((((unsigned long)digits[2]) << PyLong_SHIFT) | (unsigned long)digits[1]) << PyLong_SHIFT) | (unsigned long)digits[0]))) - } else if (8 * sizeof(uint16_t) - 1 > 3 * PyLong_SHIFT) { - return (uint16_t) (((uint16_t)-1)*(((((((uint16_t)digits[2]) << PyLong_SHIFT) | (uint16_t)digits[1]) << PyLong_SHIFT) | (uint16_t)digits[0]))); - } - } - break; - case 3: - if (8 * sizeof(uint16_t) > 2 * PyLong_SHIFT) { - if (8 * sizeof(unsigned long) > 3 * PyLong_SHIFT) { - __PYX_VERIFY_RETURN_INT(uint16_t, unsigned long, (((((((unsigned long)digits[2]) << PyLong_SHIFT) | (unsigned long)digits[1]) << PyLong_SHIFT) | (unsigned long)digits[0]))) - } else if (8 * sizeof(uint16_t) - 1 > 3 * PyLong_SHIFT) { - return (uint16_t) ((((((((uint16_t)digits[2]) << PyLong_SHIFT) | (uint16_t)digits[1]) << PyLong_SHIFT) | (uint16_t)digits[0]))); - } - } - break; - case -4: - if (8 * sizeof(uint16_t) - 1 > 3 * PyLong_SHIFT) { - if (8 * sizeof(unsigned long) > 4 * PyLong_SHIFT) { - __PYX_VERIFY_RETURN_INT(uint16_t, long, -(long) (((((((((unsigned long)digits[3]) << PyLong_SHIFT) | (unsigned long)digits[2]) << PyLong_SHIFT) | (unsigned long)digits[1]) << PyLong_SHIFT) | (unsigned long)digits[0]))) - } else if (8 * sizeof(uint16_t) - 1 > 4 * PyLong_SHIFT) { - return (uint16_t) (((uint16_t)-1)*(((((((((uint16_t)digits[3]) << PyLong_SHIFT) | (uint16_t)digits[2]) << PyLong_SHIFT) | (uint16_t)digits[1]) << PyLong_SHIFT) | (uint16_t)digits[0]))); - } - } - break; - case 4: - if (8 * sizeof(uint16_t) > 3 * PyLong_SHIFT) { - if (8 * sizeof(unsigned long) > 4 * PyLong_SHIFT) { - __PYX_VERIFY_RETURN_INT(uint16_t, unsigned long, (((((((((unsigned long)digits[3]) << PyLong_SHIFT) | (unsigned long)digits[2]) << PyLong_SHIFT) | (unsigned long)digits[1]) << PyLong_SHIFT) | (unsigned long)digits[0]))) - } else if (8 * sizeof(uint16_t) - 1 > 4 * PyLong_SHIFT) { - return (uint16_t) ((((((((((uint16_t)digits[3]) << PyLong_SHIFT) | (uint16_t)digits[2]) << PyLong_SHIFT) | (uint16_t)digits[1]) << PyLong_SHIFT) | (uint16_t)digits[0]))); - } - } - break; - } -#endif - if (sizeof(uint16_t) <= sizeof(long)) { - __PYX_VERIFY_RETURN_INT_EXC(uint16_t, long, PyLong_AsLong(x)) -#ifdef HAVE_LONG_LONG - } else if (sizeof(uint16_t) <= sizeof(PY_LONG_LONG)) { - __PYX_VERIFY_RETURN_INT_EXC(uint16_t, PY_LONG_LONG, PyLong_AsLongLong(x)) -#endif - } - } - { -#if CYTHON_COMPILING_IN_PYPY && !defined(_PyLong_AsByteArray) - PyErr_SetString(PyExc_RuntimeError, - "_PyLong_AsByteArray() not available in PyPy, cannot convert large numbers"); -#else - uint16_t val; - PyObject *v = __Pyx_PyNumber_IntOrLong(x); - #if PY_MAJOR_VERSION < 3 - if (likely(v) && !PyLong_Check(v)) { - PyObject *tmp = v; - v = PyNumber_Long(tmp); - Py_DECREF(tmp); - } - #endif - if (likely(v)) { - int one = 1; int is_little = (int)*(unsigned char *)&one; - unsigned char *bytes = (unsigned char *)&val; - int ret = _PyLong_AsByteArray((PyLongObject *)v, - bytes, sizeof(val), - is_little, !is_unsigned); - Py_DECREF(v); - if (likely(!ret)) - return val; - } -#endif - return (uint16_t) -1; - } - } else { - uint16_t val; - PyObject *tmp = __Pyx_PyNumber_IntOrLong(x); - if (!tmp) return (uint16_t) -1; - val = __Pyx_PyInt_As_uint16_t(tmp); - Py_DECREF(tmp); - return val; - } -raise_overflow: - PyErr_SetString(PyExc_OverflowError, - "value too large to convert to uint16_t"); - return (uint16_t) -1; -raise_neg_overflow: - PyErr_SetString(PyExc_OverflowError, - "can't convert negative value to uint16_t"); - return (uint16_t) -1; -} - -/* CIntFromPy */ - static CYTHON_INLINE int __Pyx_PyInt_As_int(PyObject *x) { - const int neg_one = (int) ((int) 0 - (int) 1), const_zero = (int) 0; - const int is_unsigned = neg_one > const_zero; -#if PY_MAJOR_VERSION < 3 - if (likely(PyInt_Check(x))) { - if (sizeof(int) < sizeof(long)) { - __PYX_VERIFY_RETURN_INT(int, long, PyInt_AS_LONG(x)) - } else { - long val = PyInt_AS_LONG(x); - if (is_unsigned && unlikely(val < 0)) { - goto raise_neg_overflow; - } - return (int) val; - } - } else -#endif - if (likely(PyLong_Check(x))) { - if (is_unsigned) { -#if CYTHON_USE_PYLONG_INTERNALS - const digit* digits = ((PyLongObject*)x)->ob_digit; - switch (Py_SIZE(x)) { - case 0: return (int) 0; - case 1: __PYX_VERIFY_RETURN_INT(int, digit, digits[0]) - case 2: - if (8 * sizeof(int) > 1 * PyLong_SHIFT) { - if (8 * sizeof(unsigned long) > 2 * PyLong_SHIFT) { - __PYX_VERIFY_RETURN_INT(int, unsigned long, (((((unsigned long)digits[1]) << PyLong_SHIFT) | (unsigned long)digits[0]))) - } else if (8 * sizeof(int) >= 2 * PyLong_SHIFT) { - return (int) (((((int)digits[1]) << PyLong_SHIFT) | (int)digits[0])); - } - } - break; - case 3: - if (8 * sizeof(int) > 2 * PyLong_SHIFT) { - if (8 * sizeof(unsigned long) > 3 * PyLong_SHIFT) { - __PYX_VERIFY_RETURN_INT(int, unsigned long, (((((((unsigned long)digits[2]) << PyLong_SHIFT) | (unsigned long)digits[1]) << PyLong_SHIFT) | (unsigned long)digits[0]))) - } else if (8 * sizeof(int) >= 3 * PyLong_SHIFT) { - return (int) (((((((int)digits[2]) << PyLong_SHIFT) | (int)digits[1]) << PyLong_SHIFT) | (int)digits[0])); - } - } - break; - case 4: - if (8 * sizeof(int) > 3 * PyLong_SHIFT) { - if (8 * sizeof(unsigned long) > 4 * PyLong_SHIFT) { - __PYX_VERIFY_RETURN_INT(int, unsigned long, (((((((((unsigned long)digits[3]) << PyLong_SHIFT) | (unsigned long)digits[2]) << PyLong_SHIFT) | (unsigned long)digits[1]) << PyLong_SHIFT) | (unsigned long)digits[0]))) - } else if (8 * sizeof(int) >= 4 * PyLong_SHIFT) { - return (int) (((((((((int)digits[3]) << PyLong_SHIFT) | (int)digits[2]) << PyLong_SHIFT) | (int)digits[1]) << PyLong_SHIFT) | (int)digits[0])); - } - } - break; - } -#endif -#if CYTHON_COMPILING_IN_CPYTHON - if (unlikely(Py_SIZE(x) < 0)) { - goto raise_neg_overflow; - } -#else - { - int result = PyObject_RichCompareBool(x, Py_False, Py_LT); - if (unlikely(result < 0)) - return (int) -1; - if (unlikely(result == 1)) - goto raise_neg_overflow; - } -#endif - if (sizeof(int) <= sizeof(unsigned long)) { - __PYX_VERIFY_RETURN_INT_EXC(int, unsigned long, PyLong_AsUnsignedLong(x)) -#ifdef HAVE_LONG_LONG - } else if (sizeof(int) <= sizeof(unsigned PY_LONG_LONG)) { - __PYX_VERIFY_RETURN_INT_EXC(int, unsigned PY_LONG_LONG, PyLong_AsUnsignedLongLong(x)) -#endif - } - } else { -#if CYTHON_USE_PYLONG_INTERNALS - const digit* digits = ((PyLongObject*)x)->ob_digit; - switch (Py_SIZE(x)) { - case 0: return (int) 0; - case -1: __PYX_VERIFY_RETURN_INT(int, sdigit, (sdigit) (-(sdigit)digits[0])) - case 1: __PYX_VERIFY_RETURN_INT(int, digit, +digits[0]) - case -2: - if (8 * sizeof(int) - 1 > 1 * PyLong_SHIFT) { - if (8 * sizeof(unsigned long) > 2 * PyLong_SHIFT) { - __PYX_VERIFY_RETURN_INT(int, long, -(long) (((((unsigned long)digits[1]) << PyLong_SHIFT) | (unsigned long)digits[0]))) - } else if (8 * sizeof(int) - 1 > 2 * PyLong_SHIFT) { - return (int) (((int)-1)*(((((int)digits[1]) << PyLong_SHIFT) | (int)digits[0]))); - } - } - break; - case 2: - if (8 * sizeof(int) > 1 * PyLong_SHIFT) { - if (8 * sizeof(unsigned long) > 2 * PyLong_SHIFT) { - __PYX_VERIFY_RETURN_INT(int, unsigned long, (((((unsigned long)digits[1]) << PyLong_SHIFT) | (unsigned long)digits[0]))) - } else if (8 * sizeof(int) - 1 > 2 * PyLong_SHIFT) { - return (int) ((((((int)digits[1]) << PyLong_SHIFT) | (int)digits[0]))); - } - } - break; - case -3: - if (8 * sizeof(int) - 1 > 2 * PyLong_SHIFT) { - if (8 * sizeof(unsigned long) > 3 * PyLong_SHIFT) { - __PYX_VERIFY_RETURN_INT(int, long, -(long) (((((((unsigned long)digits[2]) << PyLong_SHIFT) | (unsigned long)digits[1]) << PyLong_SHIFT) | (unsigned long)digits[0]))) - } else if (8 * sizeof(int) - 1 > 3 * PyLong_SHIFT) { - return (int) (((int)-1)*(((((((int)digits[2]) << PyLong_SHIFT) | (int)digits[1]) << PyLong_SHIFT) | (int)digits[0]))); - } - } - break; - case 3: - if (8 * sizeof(int) > 2 * PyLong_SHIFT) { - if (8 * sizeof(unsigned long) > 3 * PyLong_SHIFT) { - __PYX_VERIFY_RETURN_INT(int, unsigned long, (((((((unsigned long)digits[2]) << PyLong_SHIFT) | (unsigned long)digits[1]) << PyLong_SHIFT) | (unsigned long)digits[0]))) - } else if (8 * sizeof(int) - 1 > 3 * PyLong_SHIFT) { - return (int) ((((((((int)digits[2]) << PyLong_SHIFT) | (int)digits[1]) << PyLong_SHIFT) | (int)digits[0]))); - } - } - break; - case -4: - if (8 * sizeof(int) - 1 > 3 * PyLong_SHIFT) { - if (8 * sizeof(unsigned long) > 4 * PyLong_SHIFT) { - __PYX_VERIFY_RETURN_INT(int, long, -(long) (((((((((unsigned long)digits[3]) << PyLong_SHIFT) | (unsigned long)digits[2]) << PyLong_SHIFT) | (unsigned long)digits[1]) << PyLong_SHIFT) | (unsigned long)digits[0]))) - } else if (8 * sizeof(int) - 1 > 4 * PyLong_SHIFT) { - return (int) (((int)-1)*(((((((((int)digits[3]) << PyLong_SHIFT) | (int)digits[2]) << PyLong_SHIFT) | (int)digits[1]) << PyLong_SHIFT) | (int)digits[0]))); - } - } - break; - case 4: - if (8 * sizeof(int) > 3 * PyLong_SHIFT) { - if (8 * sizeof(unsigned long) > 4 * PyLong_SHIFT) { - __PYX_VERIFY_RETURN_INT(int, unsigned long, (((((((((unsigned long)digits[3]) << PyLong_SHIFT) | (unsigned long)digits[2]) << PyLong_SHIFT) | (unsigned long)digits[1]) << PyLong_SHIFT) | (unsigned long)digits[0]))) - } else if (8 * sizeof(int) - 1 > 4 * PyLong_SHIFT) { - return (int) ((((((((((int)digits[3]) << PyLong_SHIFT) | (int)digits[2]) << PyLong_SHIFT) | (int)digits[1]) << PyLong_SHIFT) | (int)digits[0]))); - } - } - break; - } -#endif - if (sizeof(int) <= sizeof(long)) { - __PYX_VERIFY_RETURN_INT_EXC(int, long, PyLong_AsLong(x)) -#ifdef HAVE_LONG_LONG - } else if (sizeof(int) <= sizeof(PY_LONG_LONG)) { - __PYX_VERIFY_RETURN_INT_EXC(int, PY_LONG_LONG, PyLong_AsLongLong(x)) -#endif - } - } - { -#if CYTHON_COMPILING_IN_PYPY && !defined(_PyLong_AsByteArray) - PyErr_SetString(PyExc_RuntimeError, - "_PyLong_AsByteArray() not available in PyPy, cannot convert large numbers"); -#else - int val; - PyObject *v = __Pyx_PyNumber_IntOrLong(x); - #if PY_MAJOR_VERSION < 3 - if (likely(v) && !PyLong_Check(v)) { - PyObject *tmp = v; - v = PyNumber_Long(tmp); - Py_DECREF(tmp); - } - #endif - if (likely(v)) { - int one = 1; int is_little = (int)*(unsigned char *)&one; - unsigned char *bytes = (unsigned char *)&val; - int ret = _PyLong_AsByteArray((PyLongObject *)v, - bytes, sizeof(val), - is_little, !is_unsigned); - Py_DECREF(v); - if (likely(!ret)) - return val; - } -#endif - return (int) -1; - } - } else { - int val; - PyObject *tmp = __Pyx_PyNumber_IntOrLong(x); - if (!tmp) return (int) -1; - val = __Pyx_PyInt_As_int(tmp); - Py_DECREF(tmp); - return val; - } -raise_overflow: - PyErr_SetString(PyExc_OverflowError, - "value too large to convert to int"); - return (int) -1; -raise_neg_overflow: - PyErr_SetString(PyExc_OverflowError, - "can't convert negative value to int"); - return (int) -1; -} - -/* FastTypeChecks */ - #if CYTHON_COMPILING_IN_CPYTHON -static int __Pyx_InBases(PyTypeObject *a, PyTypeObject *b) { - while (a) { - a = a->tp_base; - if (a == b) - return 1; - } - return b == &PyBaseObject_Type; -} -static CYTHON_INLINE int __Pyx_IsSubtype(PyTypeObject *a, PyTypeObject *b) { - PyObject *mro; - if (a == b) return 1; - mro = a->tp_mro; - if (likely(mro)) { - Py_ssize_t i, n; - n = PyTuple_GET_SIZE(mro); - for (i = 0; i < n; i++) { - if (PyTuple_GET_ITEM(mro, i) == (PyObject *)b) - return 1; - } - return 0; - } - return __Pyx_InBases(a, b); -} -#if PY_MAJOR_VERSION == 2 -static int __Pyx_inner_PyErr_GivenExceptionMatches2(PyObject *err, PyObject* exc_type1, PyObject* exc_type2) { - PyObject *exception, *value, *tb; - int res; - __Pyx_PyThreadState_declare - __Pyx_PyThreadState_assign - __Pyx_ErrFetch(&exception, &value, &tb); - res = exc_type1 ? PyObject_IsSubclass(err, exc_type1) : 0; - if (unlikely(res == -1)) { - PyErr_WriteUnraisable(err); - res = 0; - } - if (!res) { - res = PyObject_IsSubclass(err, exc_type2); - if (unlikely(res == -1)) { - PyErr_WriteUnraisable(err); - res = 0; - } - } - __Pyx_ErrRestore(exception, value, tb); - return res; -} -#else -static CYTHON_INLINE int __Pyx_inner_PyErr_GivenExceptionMatches2(PyObject *err, PyObject* exc_type1, PyObject *exc_type2) { - int res = exc_type1 ? __Pyx_IsSubtype((PyTypeObject*)err, (PyTypeObject*)exc_type1) : 0; - if (!res) { - res = __Pyx_IsSubtype((PyTypeObject*)err, (PyTypeObject*)exc_type2); - } - return res; -} -#endif -static int __Pyx_PyErr_GivenExceptionMatchesTuple(PyObject *exc_type, PyObject *tuple) { - Py_ssize_t i, n; - assert(PyExceptionClass_Check(exc_type)); - n = PyTuple_GET_SIZE(tuple); -#if PY_MAJOR_VERSION >= 3 - for (i=0; ip) { - #if PY_MAJOR_VERSION < 3 - if (t->is_unicode) { - *t->p = PyUnicode_DecodeUTF8(t->s, t->n - 1, NULL); - } else if (t->intern) { - *t->p = PyString_InternFromString(t->s); - } else { - *t->p = PyString_FromStringAndSize(t->s, t->n - 1); - } - #else - if (t->is_unicode | t->is_str) { - if (t->intern) { - *t->p = PyUnicode_InternFromString(t->s); - } else if (t->encoding) { - *t->p = PyUnicode_Decode(t->s, t->n - 1, t->encoding, NULL); - } else { - *t->p = PyUnicode_FromStringAndSize(t->s, t->n - 1); - } - } else { - *t->p = PyBytes_FromStringAndSize(t->s, t->n - 1); - } - #endif - if (!*t->p) - return -1; - if (PyObject_Hash(*t->p) == -1) - return -1; - ++t; - } - return 0; -} - -static CYTHON_INLINE PyObject* __Pyx_PyUnicode_FromString(const char* c_str) { - return __Pyx_PyUnicode_FromStringAndSize(c_str, (Py_ssize_t)strlen(c_str)); -} -static CYTHON_INLINE const char* __Pyx_PyObject_AsString(PyObject* o) { - Py_ssize_t ignore; - return __Pyx_PyObject_AsStringAndSize(o, &ignore); -} -#if __PYX_DEFAULT_STRING_ENCODING_IS_ASCII || __PYX_DEFAULT_STRING_ENCODING_IS_DEFAULT -#if !CYTHON_PEP393_ENABLED -static const char* __Pyx_PyUnicode_AsStringAndSize(PyObject* o, Py_ssize_t *length) { - char* defenc_c; - PyObject* defenc = _PyUnicode_AsDefaultEncodedString(o, NULL); - if (!defenc) return NULL; - defenc_c = PyBytes_AS_STRING(defenc); -#if __PYX_DEFAULT_STRING_ENCODING_IS_ASCII - { - char* end = defenc_c + PyBytes_GET_SIZE(defenc); - char* c; - for (c = defenc_c; c < end; c++) { - if ((unsigned char) (*c) >= 128) { - PyUnicode_AsASCIIString(o); - return NULL; - } - } - } -#endif - *length = PyBytes_GET_SIZE(defenc); - return defenc_c; -} -#else -static CYTHON_INLINE const char* __Pyx_PyUnicode_AsStringAndSize(PyObject* o, Py_ssize_t *length) { - if (unlikely(__Pyx_PyUnicode_READY(o) == -1)) return NULL; -#if __PYX_DEFAULT_STRING_ENCODING_IS_ASCII - if (likely(PyUnicode_IS_ASCII(o))) { - *length = PyUnicode_GET_LENGTH(o); - return PyUnicode_AsUTF8(o); - } else { - PyUnicode_AsASCIIString(o); - return NULL; - } -#else - return PyUnicode_AsUTF8AndSize(o, length); -#endif -} -#endif -#endif -static CYTHON_INLINE const char* __Pyx_PyObject_AsStringAndSize(PyObject* o, Py_ssize_t *length) { -#if __PYX_DEFAULT_STRING_ENCODING_IS_ASCII || __PYX_DEFAULT_STRING_ENCODING_IS_DEFAULT - if ( -#if PY_MAJOR_VERSION < 3 && __PYX_DEFAULT_STRING_ENCODING_IS_ASCII - __Pyx_sys_getdefaultencoding_not_ascii && -#endif - PyUnicode_Check(o)) { - return __Pyx_PyUnicode_AsStringAndSize(o, length); - } else -#endif -#if (!CYTHON_COMPILING_IN_PYPY) || (defined(PyByteArray_AS_STRING) && defined(PyByteArray_GET_SIZE)) - if (PyByteArray_Check(o)) { - *length = PyByteArray_GET_SIZE(o); - return PyByteArray_AS_STRING(o); - } else -#endif - { - char* result; - int r = PyBytes_AsStringAndSize(o, &result, length); - if (unlikely(r < 0)) { - return NULL; - } else { - return result; - } - } -} -static CYTHON_INLINE int __Pyx_PyObject_IsTrue(PyObject* x) { - int is_true = x == Py_True; - if (is_true | (x == Py_False) | (x == Py_None)) return is_true; - else return PyObject_IsTrue(x); -} -static CYTHON_INLINE int __Pyx_PyObject_IsTrueAndDecref(PyObject* x) { - int retval; - if (unlikely(!x)) return -1; - retval = __Pyx_PyObject_IsTrue(x); - Py_DECREF(x); - return retval; -} -static PyObject* __Pyx_PyNumber_IntOrLongWrongResultType(PyObject* result, const char* type_name) { -#if PY_MAJOR_VERSION >= 3 - if (PyLong_Check(result)) { - if (PyErr_WarnFormat(PyExc_DeprecationWarning, 1, - "__int__ returned non-int (type %.200s). " - "The ability to return an instance of a strict subclass of int " - "is deprecated, and may be removed in a future version of Python.", - Py_TYPE(result)->tp_name)) { - Py_DECREF(result); - return NULL; - } - return result; - } -#endif - PyErr_Format(PyExc_TypeError, - "__%.4s__ returned non-%.4s (type %.200s)", - type_name, type_name, Py_TYPE(result)->tp_name); - Py_DECREF(result); - return NULL; -} -static CYTHON_INLINE PyObject* __Pyx_PyNumber_IntOrLong(PyObject* x) { -#if CYTHON_USE_TYPE_SLOTS - PyNumberMethods *m; -#endif - const char *name = NULL; - PyObject *res = NULL; -#if PY_MAJOR_VERSION < 3 - if (likely(PyInt_Check(x) || PyLong_Check(x))) -#else - if (likely(PyLong_Check(x))) -#endif - return __Pyx_NewRef(x); -#if CYTHON_USE_TYPE_SLOTS - m = Py_TYPE(x)->tp_as_number; - #if PY_MAJOR_VERSION < 3 - if (m && m->nb_int) { - name = "int"; - res = m->nb_int(x); - } - else if (m && m->nb_long) { - name = "long"; - res = m->nb_long(x); - } - #else - if (likely(m && m->nb_int)) { - name = "int"; - res = m->nb_int(x); - } - #endif -#else - if (!PyBytes_CheckExact(x) && !PyUnicode_CheckExact(x)) { - res = PyNumber_Int(x); - } -#endif - if (likely(res)) { -#if PY_MAJOR_VERSION < 3 - if (unlikely(!PyInt_Check(res) && !PyLong_Check(res))) { -#else - if (unlikely(!PyLong_CheckExact(res))) { -#endif - return __Pyx_PyNumber_IntOrLongWrongResultType(res, name); - } - } - else if (!PyErr_Occurred()) { - PyErr_SetString(PyExc_TypeError, - "an integer is required"); - } - return res; -} -static CYTHON_INLINE Py_ssize_t __Pyx_PyIndex_AsSsize_t(PyObject* b) { - Py_ssize_t ival; - PyObject *x; -#if PY_MAJOR_VERSION < 3 - if (likely(PyInt_CheckExact(b))) { - if (sizeof(Py_ssize_t) >= sizeof(long)) - return PyInt_AS_LONG(b); - else - return PyInt_AsSsize_t(b); - } -#endif - if (likely(PyLong_CheckExact(b))) { - #if CYTHON_USE_PYLONG_INTERNALS - const digit* digits = ((PyLongObject*)b)->ob_digit; - const Py_ssize_t size = Py_SIZE(b); - if (likely(__Pyx_sst_abs(size) <= 1)) { - ival = likely(size) ? digits[0] : 0; - if (size == -1) ival = -ival; - return ival; - } else { - switch (size) { - case 2: - if (8 * sizeof(Py_ssize_t) > 2 * PyLong_SHIFT) { - return (Py_ssize_t) (((((size_t)digits[1]) << PyLong_SHIFT) | (size_t)digits[0])); - } - break; - case -2: - if (8 * sizeof(Py_ssize_t) > 2 * PyLong_SHIFT) { - return -(Py_ssize_t) (((((size_t)digits[1]) << PyLong_SHIFT) | (size_t)digits[0])); - } - break; - case 3: - if (8 * sizeof(Py_ssize_t) > 3 * PyLong_SHIFT) { - return (Py_ssize_t) (((((((size_t)digits[2]) << PyLong_SHIFT) | (size_t)digits[1]) << PyLong_SHIFT) | (size_t)digits[0])); - } - break; - case -3: - if (8 * sizeof(Py_ssize_t) > 3 * PyLong_SHIFT) { - return -(Py_ssize_t) (((((((size_t)digits[2]) << PyLong_SHIFT) | (size_t)digits[1]) << PyLong_SHIFT) | (size_t)digits[0])); - } - break; - case 4: - if (8 * sizeof(Py_ssize_t) > 4 * PyLong_SHIFT) { - return (Py_ssize_t) (((((((((size_t)digits[3]) << PyLong_SHIFT) | (size_t)digits[2]) << PyLong_SHIFT) | (size_t)digits[1]) << PyLong_SHIFT) | (size_t)digits[0])); - } - break; - case -4: - if (8 * sizeof(Py_ssize_t) > 4 * PyLong_SHIFT) { - return -(Py_ssize_t) (((((((((size_t)digits[3]) << PyLong_SHIFT) | (size_t)digits[2]) << PyLong_SHIFT) | (size_t)digits[1]) << PyLong_SHIFT) | (size_t)digits[0])); - } - break; - } - } - #endif - return PyLong_AsSsize_t(b); - } - x = PyNumber_Index(b); - if (!x) return -1; - ival = PyInt_AsSsize_t(x); - Py_DECREF(x); - return ival; -} -static CYTHON_INLINE PyObject * __Pyx_PyBool_FromLong(long b) { - return b ? __Pyx_NewRef(Py_True) : __Pyx_NewRef(Py_False); -} -static CYTHON_INLINE PyObject * __Pyx_PyInt_FromSize_t(size_t ival) { - return PyInt_FromSize_t(ival); -} - - -#endif /* Py_PYTHON_H */ diff --git a/python/pmercury/cython-bak/tls.pyx b/python/pmercury/cython-bak/tls.pyx deleted file mode 100644 index 19b68454..00000000 --- a/python/pmercury/cython-bak/tls.pyx +++ /dev/null @@ -1,467 +0,0 @@ -#cython: language_level=3, wraparound=False, cdivision=True, infer_types=True, initializedcheck=False, c_string_type=bytes, embedsignature=False, nonecheck=False - -""" - Copyright (c) 2019 Cisco Systems, Inc. All rights reserved. - License at https://github.com/cisco/mercury/blob/master/LICENSE -""" - -import os -import sys -import json -import operator -import functools -from sys import path - -sys.path.append(os.path.dirname(os.path.abspath(__file__))) -sys.path.append(os.path.dirname(os.path.abspath(__file__))+'/../') -from pmercury.utils.tls_utils import * -from pmercury.utils.tls_constants import * -from pmercury.utils.pmercury_utils import * -from pmercury.utils.contextual_info import * -from pmercury.utils.sequence_alignment import * - -from cython.operator cimport dereference as deref -from libc.math cimport exp, log, fmax -from libc.stdint cimport uint8_t, uint16_t, uint32_t, uint64_t - -IF UNAME_SYSNAME == "Windows": - cdef extern from "winsock2.h": - uint16_t htons(uint16_t hostshort) -ELSE: - cdef extern from "arpa/inet.h": - uint16_t htons(uint16_t hostshort) - -MAX_CACHED_RESULTS = 2**24 - - -cdef class TLS(): - cdef bint MALWARE_DB - cdef bint EXTENDED_FP_METADATA - cdef dict tls_params_db - cdef dict fp_db - cdef dict app_families - cdef dict transition_probs - cdef object aligner - - def __init__(self, fp_database=None, config=None): - # cached data/results - self.tls_params_db = {} - self.MALWARE_DB = True - self.EXTENDED_FP_METADATA = False - - # populate fingerprint databases - self.fp_db = {} - if fp_database == 'resources/fingerprint_db.json.gz': - fp_database = find_resource_path(fp_database) - if fp_database != None: - self.load_database(fp_database) - - IF UNAME_SYSNAME == "Windows": - transition_probs_file = find_resource_path('resources/transition_probs.csv.gz') - self.transition_probs = {} - import gzip - for line in gzip.open(transition_probs_file, 'r'): - t_ = line.strip().split(b',') - if t_[1].decode() not in self.transition_probs: - self.transition_probs[t_[1].decode()] = {} - self.transition_probs[t_[1].decode()][t_[2].decode()] = float(t_[0]) - ELSE: - transition_probs_file = find_resource_path('resources/transition_probs.csv.gz') - self.transition_probs = {} - for line in os.popen('zcat %s' % (transition_probs_file), mode='r', buffering=8192*256): - t_ = line.strip().split(',') - if t_[1] not in self.transition_probs: - self.transition_probs[t_[1]] = {} - self.transition_probs[t_[1]][t_[2]] = float(t_[0]) - - app_families_file = find_resource_path('resources/app_families.txt') - self.app_families = {} - for line in open(app_families_file, 'r'): - tokens = line.strip().split(',') - for i in range(1, len(tokens)): - self.app_families[tokens[i]] = tokens[0] - - self.aligner = SequenceAlignment(f_similarity, 0.0) - - - def load_database(self, str fp_database): - cdef str line, fp_str - cdef dict fp_ - IF UNAME_SYSNAME == "Windows": - import gzip - for line_win in gzip.open(fp_database, 'r'): - fp_ = json.loads(line_win) - self.fp_db[fp_['str_repr']] = fp_ - ELSE: - for line in os.popen('zcat %s' % (fp_database), mode='r', buffering=8192*256): - fp_ = json.loads(line) - self.fp_db[fp_['str_repr']] = fp_ - if 'malware' not in self.fp_db[fp_['str_repr']]['process_info'][0]: - self.MALWARE_DB = False - if ('classes_ip_ip' in self.fp_db[fp_['str_repr']]['process_info'][0] and - 'classes_hostname_sni' in self.fp_db[fp_['str_repr']]['process_info'][0]): - self.EXTENDED_FP_METADATA = True - - - @staticmethod - def proto_identify(data, offset, data_len): - if data_len-offset < 16: - return False - if (data[offset] == 22 and - data[offset+1] == 3 and - data[offset+2] <= 3 and - data[offset+5] == 1 and - data[offset+9] == 3 and - data[offset+10] <= 3): - return True - return False - - - @staticmethod - def fingerprint(bytes data, unsigned int offset, unsigned int data_len): - cdef unsigned char *buf = data - offset += 5 - - # extract handshake version - cdef list c = [f'({buf[offset+4]:02x}{buf[offset+5]:02x})'] - - # skip header/client_random - offset += 38 - - # parse/skip session_id - cdef uint8_t session_id_length = buf[offset] - offset += 1 + session_id_length - if offset >= data_len: - return None, None - - # parse/extract/skip cipher_suites length - cdef uint16_t cipher_suites_length = htons(deref((buf+offset))) - offset += 2 - if offset >= data_len: - return None, None - - # parse/extract/skip cipher_suites - cdef str cs_ = degrease_type_code(data, offset) - if cipher_suites_length > 2: - cs_ += buf[offset+2:offset+cipher_suites_length].hex() - c.append('(%s)' % cs_) - offset += cipher_suites_length - if offset >= data_len: - c.append('()') - return ''.join(c), None - - # parse/skip compression method - cdef uint8_t compression_methods_length = buf[offset] - offset += 1 + compression_methods_length - if offset >= data_len: - c.append('()') - return ''.join(c), None - - # parse/skip extensions length - cdef uint16_t ext_total_len = htons(deref((buf+offset))) - offset += 2 - if offset >= data_len: - c.append('()') - return ''.join(c), None - - # parse/extract/skip extension type/length/values - c.append('(') - cdef str server_name = None - cdef list context = None - while ext_total_len > 0: - if offset >= data_len: - c.append(')') - return ''.join(c), context - - # extract server name for process/malware identification - if htons(deref((buf+offset))) == 0: - server_name = extract_server_name(data, offset+2, data_len) - context = [{'name':'server_name', 'data':server_name}] - - tmp_fp_ext, offset, ext_len = parse_extension(data, offset) - if ext_len+4 > ext_total_len: - c.append(')') - return ''.join(c), context - c.append('(%s)' % tmp_fp_ext) - - ext_total_len -= 4 + ext_len - c.append(')') - - return ''.join(c), context - - - def proc_identify(self, fp_str_, context_, dest_addr, dest_port, list_procs=0, endpoint=None, approx=True): - server_name = None - # extract server_name field from context object - if context_ != None and 'server_name' in context_: - server_name = context_['server_name'] - - # fingerprint approximate matching if necessary - if fp_str_ not in self.fp_db: - if not approx: - return {'process': 'Unknown', 'score': 0.0, 'malware': 0, 'p_malware': 0.0, 'category': 'Unknown'} - lit_fp = eval_fp_str(fp_str_) - approx_str_ = self.find_approx_match(lit_fp) - if approx_str_ == None: - fp_ = self.gen_unknown_fingerprint(fp_str_) - self.fp_db[fp_str_] = fp_ - if self.MALWARE_DB: - return {'process': 'Unknown', 'score': 0.0, 'malware': 0, 'p_malware': 0.0, 'category': 'Unknown'} - else: - return {'process': 'Unknown', 'score': 0.0, 'category': 'Unknown'} - self.fp_db[fp_str_] = self.fp_db[approx_str_] - self.fp_db[fp_str_]['approx_str'] = approx_str_ - - # perform process identification given the fingerprint string and destination information - return self.identify(fp_str_, server_name, dest_addr, dest_port, list_procs, endpoint) - - - @functools.lru_cache(maxsize=MAX_CACHED_RESULTS) - def identify(self, fp_str_, server_name, dest_addr, dest_port, list_procs, endpoint=None): - fp_ = self.get_database_entry(fp_str_, None) - if fp_ == None: - # if malware data is in the database, report malware scores - if self.MALWARE_DB: - return {'process': 'Unknown', 'score': 0.0, 'malware': 0, 'p_malware': 0.0, 'category': 'Unknown'} - else: - return {'process': 'Unknown', 'score': 0.0, 'category': 'Unknown'} - - # find generalized classes for destination information - domain, tld = get_tld_info(server_name) - asn = get_asn_info(dest_addr) - port_app = get_port_application(dest_port) - features = [asn, domain, port_app, dest_addr, str(server_name), dest_port] - - # compute and sort scores for each process in the fingerprint - fp_tc = fp_['total_count'] - r_ = [self.compute_score(features, p_, fp_tc, endpoint) for p_ in fp_['process_info']] - r_ = sorted(r_, key=operator.itemgetter('score'), reverse=True) - - # if score == 0 or no match could be found, return default process - if len(r_) == 0 or r_[0]['score'] == 0.0: - predict_ = fp_['process_info'][0]['process'] - predict_ = self.app_families[predict_] if predict_ in self.app_families else predict_ - if self.MALWARE_DB: - return {'process':predict_, 'score': 0.0, 'malware': int(fp_['process_info'][0]['malware']), - 'p_malware': 0.0, 'category': 'Unknown'} - else: - return {'process':predict_, 'score':0.0, 'category': 'Unknown'} - - # in the case of malware, remove pseudo process meant to reduce false positives - if self.MALWARE_DB and r_[0]['malware'] == False and \ - r_[0]['process'] == 'Generic DMZ Traffic' and len(r_) > 1 and r_[1]['malware'] == False: - r_.pop(0) - - # get generalized process name if available - process_name = r_[0]['process'] - process_name = self.app_families[process_name] if process_name in self.app_families else process_name - - # package the most probable process - score_sum_ = sum([x_['score'] for x_ in r_]) - if self.MALWARE_DB: - malware_score_ = sum([x_['score'] for x_ in r_ if x_['malware'] == 1])/score_sum_ - out_ = {'process':process_name, 'score':r_[0]['score'], 'malware':int(r_[0]['malware']), - 'p_malware':malware_score_, 'category':r_[0]['category']} - else: - out_ = {'process':process_name, 'score':r_[0]['score'], 'category':r_[0]['category']} - - # return the top-n most probable processes is list_procs > 0 - if list_procs > 0: - r_proc_ = r_[0:list_procs] - for p_ in r_proc_: - p_['score'] /= score_sum_ - out_['probable_processes'] = r_proc_ - out_['score'] /= score_sum_ - - return out_ - - - def compute_score(self, list features, dict p_, double fp_tc_, object endpoint): - cdef str cur_proc = p_['process'] - cdef uint64_t p_count = p_['count'] - cdef double prob_process_given_fp = log(p_count/fp_tc_) - -# cdef double base_prior_ = -23.02585 # log(1e-10) - cdef double base_prior_ = -26.02585 # log(1e-10) - cdef double proc_prior_ = -16.11810 # log(1e-7) -# cdef double proc_prior_ = -11.51293 # log(1e-5) -# cdef double prior_ = -13.81551 # log(1e-6) - cdef double prior_ = -16.81551 # log(1e-6) - - if 'domain_mean' in p_ and p_['domain_mean'] < 5.0: - base_prior_ = -25.32844 # log(1e-11) - -# cdef double score_ = 5*prob_process_given_fp if prob_process_given_fp > proc_prior_ else 5*proc_prior_ - cdef double score_ = prob_process_given_fp if prob_process_given_fp > proc_prior_ else proc_prior_ -# cdef double score_ = prob_process_given_fp if prob_process_given_fp > base_prior_ else base_prior_ - cdef double tmp_, trans_prob, prev_proc_prior - - if (endpoint != None and endpoint.prev_flow != None and - 'analysis' in endpoint.prev_flow and 'probable_processes' in endpoint.prev_flow['analysis']): - trans_prob = sum([pp_['score']*self.transition_probs[pp_['process']][cur_proc] - for pp_ in endpoint.prev_flow['analysis']['probable_processes'] - if pp_['process'] in self.transition_probs and cur_proc in self.transition_probs[pp_['process']]]) - prev_proc_prior = base_prior_ - if trans_prob > 0: - prev_proc_prior = log(trans_prob) - score_ += base_prior_ if base_prior_> prev_proc_prior else prev_proc_prior - - if endpoint != None and 'os_info' in p_: - os_info = endpoint.get_os() - if len(os_info) > 0: - k = next(iter(os_info.keys())) - if k in p_['os_info']: - tmp_ = log((p_['os_info'][k]/p_count)*p_['os_info'][k]/fp_tc_) - score_ += tmp_ if tmp_ > prior_ else prior_ - else: - score_ += base_prior_ - - try: - tmp_ = log((p_['classes_ip_as'][features[0]]/p_count)*p_['classes_ip_as'][features[0]]/fp_tc_) -# tmp_ = log(p_['classes_ip_as'][features[0]]/fp_tc_) -# tmp_ = log(p_['classes_ip_as'][features[0]]/p_count) - score_ += tmp_ if tmp_ > prior_ else prior_ - except KeyError: - score_ += base_prior_ - - try: - tmp_ = log((p_['classes_hostname_domains'][features[1]]/p_count)*p_['classes_hostname_domains'][features[1]]/fp_tc_) -# tmp_ = log(p_['classes_hostname_domains'][features[1]]/fp_tc_) -# tmp_ = log(p_['classes_hostname_domains'][features[1]]/p_count) - score_ += tmp_ if tmp_ > prior_ else prior_ - except KeyError: - score_ += base_prior_ - -# try: -# tmp_ = log(p_['classes_port_applications'][features[2]]/p_count) -# score_ += tmp_ if tmp_ > prior_ else prior_ -# except KeyError: -# score_ += base_prior_ - - if self.EXTENDED_FP_METADATA: - try: - tmp_ = log((p_['classes_ip_ip'][features[3]]/p_count)*p_['classes_ip_ip'][features[3]]/fp_tc_) -# tmp_ = log(p_['classes_ip_ip'][features[3]]/fp_tc_) -# tmp_ = log(p_['classes_ip_ip'][features[3]]/p_count) - score_ += tmp_ if tmp_ > prior_ else prior_ - except KeyError: - score_ += base_prior_ - - try: - tmp_ = log((p_['classes_hostname_sni'][features[4]]/p_count)*p_['classes_hostname_sni'][features[4]]/fp_tc_) -# tmp_ = log(p_['classes_hostname_sni'][features[4]]/fp_tc_) -# tmp_ = log(p_['classes_hostname_sni'][features[4]]/p_count) - score_ += tmp_ if tmp_ > prior_ else prior_ - except KeyError: - score_ += base_prior_ - - app_cat = 'Unknown' - if 'application_category' in p_: - app_cat = p_['application_category'] - - if self.MALWARE_DB: - return {'score':exp(score_), 'process':cur_proc, 'sha256':p_['sha256'], - 'malware':p_['malware'], 'category':app_cat} - else: - return {'score':exp(score_), 'process':cur_proc, 'sha256':p_['sha256'], 'category':app_cat} - - - @functools.lru_cache(maxsize=MAX_CACHED_RESULTS) - def get_database_entry(self, fp_str, approx_fp_str): - fp_str_ = fp_str - if approx_fp_str != None: - fp_str_ = approx_fp_str - - try: - return self.fp_db[fp_str_] - except KeyError: - return None - - - @functools.lru_cache(maxsize=MAX_CACHED_RESULTS) - def get_approx_fingerprint(self, fp_str_): - try: - return self.fp_db[fp_str_]['approx_str'] - except KeyError: - return None - - - def find_approx_match(self, tls_features, fp_str=None, source_filter=None, key_filter=None): - target_ = get_sequence(tls_features) - tls_params_ = get_tls_params(tls_features) - - t_sim_set = [] - approx_matches_set = self.find_approximate_matches_set(tls_params_, fp_str, source_filter, key_filter) - for _,k in approx_matches_set: - tmp_lit_fp = eval_fp_str(self.fp_db[k]['str_repr']) - test_ = get_sequence(tmp_lit_fp) - score_ = self.aligner.align(target_, test_) - t_sim_set.append((1.0-2*score_/float(len(target_)+len(test_)), k)) - - t_sim_set.sort() - if len(t_sim_set) == 0: - return None - if t_sim_set[0][0] < 0.1: - return t_sim_set[0][1] - else: - return None - - - def find_approximate_matches_set(self, tls_params, fp_str=None, source_filter=None, key_filter=None): - t_scores = [] - p0_ = set(tls_params[0]) - p1_ = set(tls_params[1]) - for k in self.fp_db.keys(): - k = k - if source_filter != None and source_filter not in self.fp_db[k]['source']: - continue - if fp_str != None and key_filter != None and fp_str not in key_filter and k not in key_filter: - continue - if k not in self.tls_params_db: - lit_fp = eval_fp_str(k) - tls_params_ = get_tls_params(lit_fp) - self.tls_params_db[k] = tls_params_ - q0_ = set(self.tls_params_db[k][0]) - q1_ = set(self.tls_params_db[k][1]) - s0_ = len(p0_.intersection(q0_))/fmax(1.0,len(p0_.union(q0_))) - s1_ = len(p1_.intersection(q1_))/fmax(1.0,len(p1_.union(q1_))) - s_ = s0_ + s1_ - t_scores.append((s_, k)) - t_scores.sort() - t_scores.reverse() - return t_scores[0:10] - - - @functools.lru_cache(maxsize=MAX_CACHED_RESULTS) - def gen_unknown_fingerprint(self, fp_str_): - fp_ = {} - fp_['str_repr'] = fp_str_ - lit_fp = eval_fp_str(fp_str_) - if len(lit_fp) < 2 or len(lit_fp[1]) < 1: - fp_['error'] = 'fingerprint string parsing error' - return fp_ - max_imp, min_imp = get_implementation_date(lit_fp[1][0]) - fp_['max_implementation_date'] = max_imp - fp_['min_implementation_date'] = min_imp - fp_['total_count'] = 1 - fp_['process_info'] = [{'process': 'Unknown', 'sha256':'Unknown', 'count':1, 'malware': 0, - 'classes_ip_as':{},'classes_hostname_tlds':{},'classes_hostname_domains':{}, - 'classes_port_applications':{},'os_info':{}}] - - return fp_ - - - def get_human_readable(self, fp_str_): - lit_fp = eval_fp_str(fp_str_) - fp_h = {} - fp_h['version'] = get_version_from_str(lit_fp[0]) - fp_h['cipher_suites'] = get_cs_from_str(lit_fp[1]) - fp_h['extensions'] = [] - if len(lit_fp) > 2: - fp_h['extensions'] = get_ext_from_str(lit_fp[2]) - - return fp_h - - @functools.lru_cache(maxsize=MAX_CACHED_RESULTS) - def os_identify(self, fp_str_, list_oses=0): - return None diff --git a/python/pmercury/cython-bak/tls_server.c b/python/pmercury/cython-bak/tls_server.c deleted file mode 100644 index 78d30609..00000000 --- a/python/pmercury/cython-bak/tls_server.c +++ /dev/null @@ -1,7290 +0,0 @@ -/* Generated by Cython 0.29.14 */ - -#define PY_SSIZE_T_CLEAN -#include "Python.h" -#ifndef Py_PYTHON_H - #error Python headers needed to compile C extensions, please install development version of Python. -#elif PY_VERSION_HEX < 0x02060000 || (0x03000000 <= PY_VERSION_HEX && PY_VERSION_HEX < 0x03030000) - #error Cython requires Python 2.6+ or Python 3.3+. -#else -#define CYTHON_ABI "0_29_14" -#define CYTHON_HEX_VERSION 0x001D0EF0 -#define CYTHON_FUTURE_DIVISION 1 -#include -#ifndef offsetof - #define offsetof(type, member) ( (size_t) & ((type*)0) -> member ) -#endif -#if !defined(WIN32) && !defined(MS_WINDOWS) - #ifndef __stdcall - #define __stdcall - #endif - #ifndef __cdecl - #define __cdecl - #endif - #ifndef __fastcall - #define __fastcall - #endif -#endif -#ifndef DL_IMPORT - #define DL_IMPORT(t) t -#endif -#ifndef DL_EXPORT - #define DL_EXPORT(t) t -#endif -#define __PYX_COMMA , -#ifndef HAVE_LONG_LONG - #if PY_VERSION_HEX >= 0x02070000 - #define HAVE_LONG_LONG - #endif -#endif -#ifndef PY_LONG_LONG - #define PY_LONG_LONG LONG_LONG -#endif -#ifndef Py_HUGE_VAL - #define Py_HUGE_VAL HUGE_VAL -#endif -#ifdef PYPY_VERSION - #define CYTHON_COMPILING_IN_PYPY 1 - #define CYTHON_COMPILING_IN_PYSTON 0 - #define CYTHON_COMPILING_IN_CPYTHON 0 - #undef CYTHON_USE_TYPE_SLOTS - #define CYTHON_USE_TYPE_SLOTS 0 - #undef CYTHON_USE_PYTYPE_LOOKUP - #define CYTHON_USE_PYTYPE_LOOKUP 0 - #if PY_VERSION_HEX < 0x03050000 - #undef CYTHON_USE_ASYNC_SLOTS - #define CYTHON_USE_ASYNC_SLOTS 0 - #elif !defined(CYTHON_USE_ASYNC_SLOTS) - #define CYTHON_USE_ASYNC_SLOTS 1 - #endif - #undef CYTHON_USE_PYLIST_INTERNALS - #define CYTHON_USE_PYLIST_INTERNALS 0 - #undef CYTHON_USE_UNICODE_INTERNALS - #define CYTHON_USE_UNICODE_INTERNALS 0 - #undef CYTHON_USE_UNICODE_WRITER - #define CYTHON_USE_UNICODE_WRITER 0 - #undef CYTHON_USE_PYLONG_INTERNALS - #define CYTHON_USE_PYLONG_INTERNALS 0 - #undef CYTHON_AVOID_BORROWED_REFS - #define CYTHON_AVOID_BORROWED_REFS 1 - #undef CYTHON_ASSUME_SAFE_MACROS - #define CYTHON_ASSUME_SAFE_MACROS 0 - #undef CYTHON_UNPACK_METHODS - #define CYTHON_UNPACK_METHODS 0 - #undef CYTHON_FAST_THREAD_STATE - #define CYTHON_FAST_THREAD_STATE 0 - #undef CYTHON_FAST_PYCALL - #define CYTHON_FAST_PYCALL 0 - #undef CYTHON_PEP489_MULTI_PHASE_INIT - #define CYTHON_PEP489_MULTI_PHASE_INIT 0 - #undef CYTHON_USE_TP_FINALIZE - #define CYTHON_USE_TP_FINALIZE 0 - #undef CYTHON_USE_DICT_VERSIONS - #define CYTHON_USE_DICT_VERSIONS 0 - #undef CYTHON_USE_EXC_INFO_STACK - #define CYTHON_USE_EXC_INFO_STACK 0 -#elif defined(PYSTON_VERSION) - #define CYTHON_COMPILING_IN_PYPY 0 - #define CYTHON_COMPILING_IN_PYSTON 1 - #define CYTHON_COMPILING_IN_CPYTHON 0 - #ifndef CYTHON_USE_TYPE_SLOTS - #define CYTHON_USE_TYPE_SLOTS 1 - #endif - #undef CYTHON_USE_PYTYPE_LOOKUP - #define CYTHON_USE_PYTYPE_LOOKUP 0 - #undef CYTHON_USE_ASYNC_SLOTS - #define CYTHON_USE_ASYNC_SLOTS 0 - #undef CYTHON_USE_PYLIST_INTERNALS - #define CYTHON_USE_PYLIST_INTERNALS 0 - #ifndef CYTHON_USE_UNICODE_INTERNALS - #define CYTHON_USE_UNICODE_INTERNALS 1 - #endif - #undef CYTHON_USE_UNICODE_WRITER - #define CYTHON_USE_UNICODE_WRITER 0 - #undef CYTHON_USE_PYLONG_INTERNALS - #define CYTHON_USE_PYLONG_INTERNALS 0 - #ifndef CYTHON_AVOID_BORROWED_REFS - #define CYTHON_AVOID_BORROWED_REFS 0 - #endif - #ifndef CYTHON_ASSUME_SAFE_MACROS - #define CYTHON_ASSUME_SAFE_MACROS 1 - #endif - #ifndef CYTHON_UNPACK_METHODS - #define CYTHON_UNPACK_METHODS 1 - #endif - #undef CYTHON_FAST_THREAD_STATE - #define CYTHON_FAST_THREAD_STATE 0 - #undef CYTHON_FAST_PYCALL - #define CYTHON_FAST_PYCALL 0 - #undef CYTHON_PEP489_MULTI_PHASE_INIT - #define CYTHON_PEP489_MULTI_PHASE_INIT 0 - #undef CYTHON_USE_TP_FINALIZE - #define CYTHON_USE_TP_FINALIZE 0 - #undef CYTHON_USE_DICT_VERSIONS - #define CYTHON_USE_DICT_VERSIONS 0 - #undef CYTHON_USE_EXC_INFO_STACK - #define CYTHON_USE_EXC_INFO_STACK 0 -#else - #define CYTHON_COMPILING_IN_PYPY 0 - #define CYTHON_COMPILING_IN_PYSTON 0 - #define CYTHON_COMPILING_IN_CPYTHON 1 - #ifndef CYTHON_USE_TYPE_SLOTS - #define CYTHON_USE_TYPE_SLOTS 1 - #endif - #if PY_VERSION_HEX < 0x02070000 - #undef CYTHON_USE_PYTYPE_LOOKUP - #define CYTHON_USE_PYTYPE_LOOKUP 0 - #elif !defined(CYTHON_USE_PYTYPE_LOOKUP) - #define CYTHON_USE_PYTYPE_LOOKUP 1 - #endif - #if PY_MAJOR_VERSION < 3 - #undef CYTHON_USE_ASYNC_SLOTS - #define CYTHON_USE_ASYNC_SLOTS 0 - #elif !defined(CYTHON_USE_ASYNC_SLOTS) - #define CYTHON_USE_ASYNC_SLOTS 1 - #endif - #if PY_VERSION_HEX < 0x02070000 - #undef CYTHON_USE_PYLONG_INTERNALS - #define CYTHON_USE_PYLONG_INTERNALS 0 - #elif !defined(CYTHON_USE_PYLONG_INTERNALS) - #define CYTHON_USE_PYLONG_INTERNALS 1 - #endif - #ifndef CYTHON_USE_PYLIST_INTERNALS - #define CYTHON_USE_PYLIST_INTERNALS 1 - #endif - #ifndef CYTHON_USE_UNICODE_INTERNALS - #define CYTHON_USE_UNICODE_INTERNALS 1 - #endif - #if PY_VERSION_HEX < 0x030300F0 - #undef CYTHON_USE_UNICODE_WRITER - #define CYTHON_USE_UNICODE_WRITER 0 - #elif !defined(CYTHON_USE_UNICODE_WRITER) - #define CYTHON_USE_UNICODE_WRITER 1 - #endif - #ifndef CYTHON_AVOID_BORROWED_REFS - #define CYTHON_AVOID_BORROWED_REFS 0 - #endif - #ifndef CYTHON_ASSUME_SAFE_MACROS - #define CYTHON_ASSUME_SAFE_MACROS 1 - #endif - #ifndef CYTHON_UNPACK_METHODS - #define CYTHON_UNPACK_METHODS 1 - #endif - #ifndef CYTHON_FAST_THREAD_STATE - #define CYTHON_FAST_THREAD_STATE 1 - #endif - #ifndef CYTHON_FAST_PYCALL - #define CYTHON_FAST_PYCALL 1 - #endif - #ifndef CYTHON_PEP489_MULTI_PHASE_INIT - #define CYTHON_PEP489_MULTI_PHASE_INIT (PY_VERSION_HEX >= 0x03050000) - #endif - #ifndef CYTHON_USE_TP_FINALIZE - #define CYTHON_USE_TP_FINALIZE (PY_VERSION_HEX >= 0x030400a1) - #endif - #ifndef CYTHON_USE_DICT_VERSIONS - #define CYTHON_USE_DICT_VERSIONS (PY_VERSION_HEX >= 0x030600B1) - #endif - #ifndef CYTHON_USE_EXC_INFO_STACK - #define CYTHON_USE_EXC_INFO_STACK (PY_VERSION_HEX >= 0x030700A3) - #endif -#endif -#if !defined(CYTHON_FAST_PYCCALL) -#define CYTHON_FAST_PYCCALL (CYTHON_FAST_PYCALL && PY_VERSION_HEX >= 0x030600B1) -#endif -#if CYTHON_USE_PYLONG_INTERNALS - #include "longintrepr.h" - #undef SHIFT - #undef BASE - #undef MASK - #ifdef SIZEOF_VOID_P - enum { __pyx_check_sizeof_voidp = 1 / (int)(SIZEOF_VOID_P == sizeof(void*)) }; - #endif -#endif -#ifndef __has_attribute - #define __has_attribute(x) 0 -#endif -#ifndef __has_cpp_attribute - #define __has_cpp_attribute(x) 0 -#endif -#ifndef CYTHON_RESTRICT - #if defined(__GNUC__) - #define CYTHON_RESTRICT __restrict__ - #elif defined(_MSC_VER) && _MSC_VER >= 1400 - #define CYTHON_RESTRICT __restrict - #elif defined (__STDC_VERSION__) && __STDC_VERSION__ >= 199901L - #define CYTHON_RESTRICT restrict - #else - #define CYTHON_RESTRICT - #endif -#endif -#ifndef CYTHON_UNUSED -# if defined(__GNUC__) -# if !(defined(__cplusplus)) || (__GNUC__ > 3 || (__GNUC__ == 3 && __GNUC_MINOR__ >= 4)) -# define CYTHON_UNUSED __attribute__ ((__unused__)) -# else -# define CYTHON_UNUSED -# endif -# elif defined(__ICC) || (defined(__INTEL_COMPILER) && !defined(_MSC_VER)) -# define CYTHON_UNUSED __attribute__ ((__unused__)) -# else -# define CYTHON_UNUSED -# endif -#endif -#ifndef CYTHON_MAYBE_UNUSED_VAR -# if defined(__cplusplus) - template void CYTHON_MAYBE_UNUSED_VAR( const T& ) { } -# else -# define CYTHON_MAYBE_UNUSED_VAR(x) (void)(x) -# endif -#endif -#ifndef CYTHON_NCP_UNUSED -# if CYTHON_COMPILING_IN_CPYTHON -# define CYTHON_NCP_UNUSED -# else -# define CYTHON_NCP_UNUSED CYTHON_UNUSED -# endif -#endif -#define __Pyx_void_to_None(void_result) ((void)(void_result), Py_INCREF(Py_None), Py_None) -#ifdef _MSC_VER - #ifndef _MSC_STDINT_H_ - #if _MSC_VER < 1300 - typedef unsigned char uint8_t; - typedef unsigned int uint32_t; - #else - typedef unsigned __int8 uint8_t; - typedef unsigned __int32 uint32_t; - #endif - #endif -#else - #include -#endif -#ifndef CYTHON_FALLTHROUGH - #if defined(__cplusplus) && __cplusplus >= 201103L - #if __has_cpp_attribute(fallthrough) - #define CYTHON_FALLTHROUGH [[fallthrough]] - #elif __has_cpp_attribute(clang::fallthrough) - #define CYTHON_FALLTHROUGH [[clang::fallthrough]] - #elif __has_cpp_attribute(gnu::fallthrough) - #define CYTHON_FALLTHROUGH [[gnu::fallthrough]] - #endif - #endif - #ifndef CYTHON_FALLTHROUGH - #if __has_attribute(fallthrough) - #define CYTHON_FALLTHROUGH __attribute__((fallthrough)) - #else - #define CYTHON_FALLTHROUGH - #endif - #endif - #if defined(__clang__ ) && defined(__apple_build_version__) - #if __apple_build_version__ < 7000000 - #undef CYTHON_FALLTHROUGH - #define CYTHON_FALLTHROUGH - #endif - #endif -#endif - -#ifndef CYTHON_INLINE - #if defined(__clang__) - #define CYTHON_INLINE __inline__ __attribute__ ((__unused__)) - #elif defined(__GNUC__) - #define CYTHON_INLINE __inline__ - #elif defined(_MSC_VER) - #define CYTHON_INLINE __inline - #elif defined (__STDC_VERSION__) && __STDC_VERSION__ >= 199901L - #define CYTHON_INLINE inline - #else - #define CYTHON_INLINE - #endif -#endif - -#if CYTHON_COMPILING_IN_PYPY && PY_VERSION_HEX < 0x02070600 && !defined(Py_OptimizeFlag) - #define Py_OptimizeFlag 0 -#endif -#define __PYX_BUILD_PY_SSIZE_T "n" -#define CYTHON_FORMAT_SSIZE_T "z" -#if PY_MAJOR_VERSION < 3 - #define __Pyx_BUILTIN_MODULE_NAME "__builtin__" - #define __Pyx_PyCode_New(a, k, l, s, f, code, c, n, v, fv, cell, fn, name, fline, lnos)\ - PyCode_New(a+k, l, s, f, code, c, n, v, fv, cell, fn, name, fline, lnos) - #define __Pyx_DefaultClassType PyClass_Type -#else - #define __Pyx_BUILTIN_MODULE_NAME "builtins" -#if PY_VERSION_HEX >= 0x030800A4 && PY_VERSION_HEX < 0x030800B2 - #define __Pyx_PyCode_New(a, k, l, s, f, code, c, n, v, fv, cell, fn, name, fline, lnos)\ - PyCode_New(a, 0, k, l, s, f, code, c, n, v, fv, cell, fn, name, fline, lnos) -#else - #define __Pyx_PyCode_New(a, k, l, s, f, code, c, n, v, fv, cell, fn, name, fline, lnos)\ - PyCode_New(a, k, l, s, f, code, c, n, v, fv, cell, fn, name, fline, lnos) -#endif - #define __Pyx_DefaultClassType PyType_Type -#endif -#ifndef Py_TPFLAGS_CHECKTYPES - #define Py_TPFLAGS_CHECKTYPES 0 -#endif -#ifndef Py_TPFLAGS_HAVE_INDEX - #define Py_TPFLAGS_HAVE_INDEX 0 -#endif -#ifndef Py_TPFLAGS_HAVE_NEWBUFFER - #define Py_TPFLAGS_HAVE_NEWBUFFER 0 -#endif -#ifndef Py_TPFLAGS_HAVE_FINALIZE - #define Py_TPFLAGS_HAVE_FINALIZE 0 -#endif -#ifndef METH_STACKLESS - #define METH_STACKLESS 0 -#endif -#if PY_VERSION_HEX <= 0x030700A3 || !defined(METH_FASTCALL) - #ifndef METH_FASTCALL - #define METH_FASTCALL 0x80 - #endif - typedef PyObject *(*__Pyx_PyCFunctionFast) (PyObject *self, PyObject *const *args, Py_ssize_t nargs); - typedef PyObject *(*__Pyx_PyCFunctionFastWithKeywords) (PyObject *self, PyObject *const *args, - Py_ssize_t nargs, PyObject *kwnames); -#else - #define __Pyx_PyCFunctionFast _PyCFunctionFast - #define __Pyx_PyCFunctionFastWithKeywords _PyCFunctionFastWithKeywords -#endif -#if CYTHON_FAST_PYCCALL -#define __Pyx_PyFastCFunction_Check(func)\ - ((PyCFunction_Check(func) && (METH_FASTCALL == (PyCFunction_GET_FLAGS(func) & ~(METH_CLASS | METH_STATIC | METH_COEXIST | METH_KEYWORDS | METH_STACKLESS))))) -#else -#define __Pyx_PyFastCFunction_Check(func) 0 -#endif -#if CYTHON_COMPILING_IN_PYPY && !defined(PyObject_Malloc) - #define PyObject_Malloc(s) PyMem_Malloc(s) - #define PyObject_Free(p) PyMem_Free(p) - #define PyObject_Realloc(p) PyMem_Realloc(p) -#endif -#if CYTHON_COMPILING_IN_CPYTHON && PY_VERSION_HEX < 0x030400A1 - #define PyMem_RawMalloc(n) PyMem_Malloc(n) - #define PyMem_RawRealloc(p, n) PyMem_Realloc(p, n) - #define PyMem_RawFree(p) PyMem_Free(p) -#endif -#if CYTHON_COMPILING_IN_PYSTON - #define __Pyx_PyCode_HasFreeVars(co) PyCode_HasFreeVars(co) - #define __Pyx_PyFrame_SetLineNumber(frame, lineno) PyFrame_SetLineNumber(frame, lineno) -#else - #define __Pyx_PyCode_HasFreeVars(co) (PyCode_GetNumFree(co) > 0) - #define __Pyx_PyFrame_SetLineNumber(frame, lineno) (frame)->f_lineno = (lineno) -#endif -#if !CYTHON_FAST_THREAD_STATE || PY_VERSION_HEX < 0x02070000 - #define __Pyx_PyThreadState_Current PyThreadState_GET() -#elif PY_VERSION_HEX >= 0x03060000 - #define __Pyx_PyThreadState_Current _PyThreadState_UncheckedGet() -#elif PY_VERSION_HEX >= 0x03000000 - #define __Pyx_PyThreadState_Current PyThreadState_GET() -#else - #define __Pyx_PyThreadState_Current _PyThreadState_Current -#endif -#if PY_VERSION_HEX < 0x030700A2 && !defined(PyThread_tss_create) && !defined(Py_tss_NEEDS_INIT) -#include "pythread.h" -#define Py_tss_NEEDS_INIT 0 -typedef int Py_tss_t; -static CYTHON_INLINE int PyThread_tss_create(Py_tss_t *key) { - *key = PyThread_create_key(); - return 0; -} -static CYTHON_INLINE Py_tss_t * PyThread_tss_alloc(void) { - Py_tss_t *key = (Py_tss_t *)PyObject_Malloc(sizeof(Py_tss_t)); - *key = Py_tss_NEEDS_INIT; - return key; -} -static CYTHON_INLINE void PyThread_tss_free(Py_tss_t *key) { - PyObject_Free(key); -} -static CYTHON_INLINE int PyThread_tss_is_created(Py_tss_t *key) { - return *key != Py_tss_NEEDS_INIT; -} -static CYTHON_INLINE void PyThread_tss_delete(Py_tss_t *key) { - PyThread_delete_key(*key); - *key = Py_tss_NEEDS_INIT; -} -static CYTHON_INLINE int PyThread_tss_set(Py_tss_t *key, void *value) { - return PyThread_set_key_value(*key, value); -} -static CYTHON_INLINE void * PyThread_tss_get(Py_tss_t *key) { - return PyThread_get_key_value(*key); -} -#endif -#if CYTHON_COMPILING_IN_CPYTHON || defined(_PyDict_NewPresized) -#define __Pyx_PyDict_NewPresized(n) ((n <= 8) ? PyDict_New() : _PyDict_NewPresized(n)) -#else -#define __Pyx_PyDict_NewPresized(n) PyDict_New() -#endif -#if PY_MAJOR_VERSION >= 3 || CYTHON_FUTURE_DIVISION - #define __Pyx_PyNumber_Divide(x,y) PyNumber_TrueDivide(x,y) - #define __Pyx_PyNumber_InPlaceDivide(x,y) PyNumber_InPlaceTrueDivide(x,y) -#else - #define __Pyx_PyNumber_Divide(x,y) PyNumber_Divide(x,y) - #define __Pyx_PyNumber_InPlaceDivide(x,y) PyNumber_InPlaceDivide(x,y) -#endif -#if CYTHON_COMPILING_IN_CPYTHON && PY_VERSION_HEX >= 0x030500A1 && CYTHON_USE_UNICODE_INTERNALS -#define __Pyx_PyDict_GetItemStr(dict, name) _PyDict_GetItem_KnownHash(dict, name, ((PyASCIIObject *) name)->hash) -#else -#define __Pyx_PyDict_GetItemStr(dict, name) PyDict_GetItem(dict, name) -#endif -#if PY_VERSION_HEX > 0x03030000 && defined(PyUnicode_KIND) - #define CYTHON_PEP393_ENABLED 1 - #define __Pyx_PyUnicode_READY(op) (likely(PyUnicode_IS_READY(op)) ?\ - 0 : _PyUnicode_Ready((PyObject *)(op))) - #define __Pyx_PyUnicode_GET_LENGTH(u) PyUnicode_GET_LENGTH(u) - #define __Pyx_PyUnicode_READ_CHAR(u, i) PyUnicode_READ_CHAR(u, i) - #define __Pyx_PyUnicode_MAX_CHAR_VALUE(u) PyUnicode_MAX_CHAR_VALUE(u) - #define __Pyx_PyUnicode_KIND(u) PyUnicode_KIND(u) - #define __Pyx_PyUnicode_DATA(u) PyUnicode_DATA(u) - #define __Pyx_PyUnicode_READ(k, d, i) PyUnicode_READ(k, d, i) - #define __Pyx_PyUnicode_WRITE(k, d, i, ch) PyUnicode_WRITE(k, d, i, ch) - #define __Pyx_PyUnicode_IS_TRUE(u) (0 != (likely(PyUnicode_IS_READY(u)) ? PyUnicode_GET_LENGTH(u) : PyUnicode_GET_SIZE(u))) -#else - #define CYTHON_PEP393_ENABLED 0 - #define PyUnicode_1BYTE_KIND 1 - #define PyUnicode_2BYTE_KIND 2 - #define PyUnicode_4BYTE_KIND 4 - #define __Pyx_PyUnicode_READY(op) (0) - #define __Pyx_PyUnicode_GET_LENGTH(u) PyUnicode_GET_SIZE(u) - #define __Pyx_PyUnicode_READ_CHAR(u, i) ((Py_UCS4)(PyUnicode_AS_UNICODE(u)[i])) - #define __Pyx_PyUnicode_MAX_CHAR_VALUE(u) ((sizeof(Py_UNICODE) == 2) ? 65535 : 1114111) - #define __Pyx_PyUnicode_KIND(u) (sizeof(Py_UNICODE)) - #define __Pyx_PyUnicode_DATA(u) ((void*)PyUnicode_AS_UNICODE(u)) - #define __Pyx_PyUnicode_READ(k, d, i) ((void)(k), (Py_UCS4)(((Py_UNICODE*)d)[i])) - #define __Pyx_PyUnicode_WRITE(k, d, i, ch) (((void)(k)), ((Py_UNICODE*)d)[i] = ch) - #define __Pyx_PyUnicode_IS_TRUE(u) (0 != PyUnicode_GET_SIZE(u)) -#endif -#if CYTHON_COMPILING_IN_PYPY - #define __Pyx_PyUnicode_Concat(a, b) PyNumber_Add(a, b) - #define __Pyx_PyUnicode_ConcatSafe(a, b) PyNumber_Add(a, b) -#else - #define __Pyx_PyUnicode_Concat(a, b) PyUnicode_Concat(a, b) - #define __Pyx_PyUnicode_ConcatSafe(a, b) ((unlikely((a) == Py_None) || unlikely((b) == Py_None)) ?\ - PyNumber_Add(a, b) : __Pyx_PyUnicode_Concat(a, b)) -#endif -#if CYTHON_COMPILING_IN_PYPY && !defined(PyUnicode_Contains) - #define PyUnicode_Contains(u, s) PySequence_Contains(u, s) -#endif -#if CYTHON_COMPILING_IN_PYPY && !defined(PyByteArray_Check) - #define PyByteArray_Check(obj) PyObject_TypeCheck(obj, &PyByteArray_Type) -#endif -#if CYTHON_COMPILING_IN_PYPY && !defined(PyObject_Format) - #define PyObject_Format(obj, fmt) PyObject_CallMethod(obj, "__format__", "O", fmt) -#endif -#define __Pyx_PyString_FormatSafe(a, b) ((unlikely((a) == Py_None || (PyString_Check(b) && !PyString_CheckExact(b)))) ? PyNumber_Remainder(a, b) : __Pyx_PyString_Format(a, b)) -#define __Pyx_PyUnicode_FormatSafe(a, b) ((unlikely((a) == Py_None || (PyUnicode_Check(b) && !PyUnicode_CheckExact(b)))) ? PyNumber_Remainder(a, b) : PyUnicode_Format(a, b)) -#if PY_MAJOR_VERSION >= 3 - #define __Pyx_PyString_Format(a, b) PyUnicode_Format(a, b) -#else - #define __Pyx_PyString_Format(a, b) PyString_Format(a, b) -#endif -#if PY_MAJOR_VERSION < 3 && !defined(PyObject_ASCII) - #define PyObject_ASCII(o) PyObject_Repr(o) -#endif -#if PY_MAJOR_VERSION >= 3 - #define PyBaseString_Type PyUnicode_Type - #define PyStringObject PyUnicodeObject - #define PyString_Type PyUnicode_Type - #define PyString_Check PyUnicode_Check - #define PyString_CheckExact PyUnicode_CheckExact - #define PyObject_Unicode PyObject_Str -#endif -#if PY_MAJOR_VERSION >= 3 - #define __Pyx_PyBaseString_Check(obj) PyUnicode_Check(obj) - #define __Pyx_PyBaseString_CheckExact(obj) PyUnicode_CheckExact(obj) -#else - #define __Pyx_PyBaseString_Check(obj) (PyString_Check(obj) || PyUnicode_Check(obj)) - #define __Pyx_PyBaseString_CheckExact(obj) (PyString_CheckExact(obj) || PyUnicode_CheckExact(obj)) -#endif -#ifndef PySet_CheckExact - #define PySet_CheckExact(obj) (Py_TYPE(obj) == &PySet_Type) -#endif -#if CYTHON_ASSUME_SAFE_MACROS - #define __Pyx_PySequence_SIZE(seq) Py_SIZE(seq) -#else - #define __Pyx_PySequence_SIZE(seq) PySequence_Size(seq) -#endif -#if PY_MAJOR_VERSION >= 3 - #define PyIntObject PyLongObject - #define PyInt_Type PyLong_Type - #define PyInt_Check(op) PyLong_Check(op) - #define PyInt_CheckExact(op) PyLong_CheckExact(op) - #define PyInt_FromString PyLong_FromString - #define PyInt_FromUnicode PyLong_FromUnicode - #define PyInt_FromLong PyLong_FromLong - #define PyInt_FromSize_t PyLong_FromSize_t - #define PyInt_FromSsize_t PyLong_FromSsize_t - #define PyInt_AsLong PyLong_AsLong - #define PyInt_AS_LONG PyLong_AS_LONG - #define PyInt_AsSsize_t PyLong_AsSsize_t - #define PyInt_AsUnsignedLongMask PyLong_AsUnsignedLongMask - #define PyInt_AsUnsignedLongLongMask PyLong_AsUnsignedLongLongMask - #define PyNumber_Int PyNumber_Long -#endif -#if PY_MAJOR_VERSION >= 3 - #define PyBoolObject PyLongObject -#endif -#if PY_MAJOR_VERSION >= 3 && CYTHON_COMPILING_IN_PYPY - #ifndef PyUnicode_InternFromString - #define PyUnicode_InternFromString(s) PyUnicode_FromString(s) - #endif -#endif -#if PY_VERSION_HEX < 0x030200A4 - typedef long Py_hash_t; - #define __Pyx_PyInt_FromHash_t PyInt_FromLong - #define __Pyx_PyInt_AsHash_t PyInt_AsLong -#else - #define __Pyx_PyInt_FromHash_t PyInt_FromSsize_t - #define __Pyx_PyInt_AsHash_t PyInt_AsSsize_t -#endif -#if PY_MAJOR_VERSION >= 3 - #define __Pyx_PyMethod_New(func, self, klass) ((self) ? PyMethod_New(func, self) : (Py_INCREF(func), func)) -#else - #define __Pyx_PyMethod_New(func, self, klass) PyMethod_New(func, self, klass) -#endif -#if CYTHON_USE_ASYNC_SLOTS - #if PY_VERSION_HEX >= 0x030500B1 - #define __Pyx_PyAsyncMethodsStruct PyAsyncMethods - #define __Pyx_PyType_AsAsync(obj) (Py_TYPE(obj)->tp_as_async) - #else - #define __Pyx_PyType_AsAsync(obj) ((__Pyx_PyAsyncMethodsStruct*) (Py_TYPE(obj)->tp_reserved)) - #endif -#else - #define __Pyx_PyType_AsAsync(obj) NULL -#endif -#ifndef __Pyx_PyAsyncMethodsStruct - typedef struct { - unaryfunc am_await; - unaryfunc am_aiter; - unaryfunc am_anext; - } __Pyx_PyAsyncMethodsStruct; -#endif - -#if defined(WIN32) || defined(MS_WINDOWS) - #define _USE_MATH_DEFINES -#endif -#include -#ifdef NAN -#define __PYX_NAN() ((float) NAN) -#else -static CYTHON_INLINE float __PYX_NAN() { - float value; - memset(&value, 0xFF, sizeof(value)); - return value; -} -#endif -#if defined(__CYGWIN__) && defined(_LDBL_EQ_DBL) -#define __Pyx_truncl trunc -#else -#define __Pyx_truncl truncl -#endif - - -#define __PYX_ERR(f_index, lineno, Ln_error) \ -{ \ - __pyx_filename = __pyx_f[f_index]; __pyx_lineno = lineno; __pyx_clineno = __LINE__; goto Ln_error; \ -} - -#ifndef __PYX_EXTERN_C - #ifdef __cplusplus - #define __PYX_EXTERN_C extern "C" - #else - #define __PYX_EXTERN_C extern - #endif -#endif - -#define __PYX_HAVE__pmercury__protocols__tls_server -#define __PYX_HAVE_API__pmercury__protocols__tls_server -/* Early includes */ -#include -#include "arpa/inet.h" -#ifdef _OPENMP -#include -#endif /* _OPENMP */ - -#if defined(PYREX_WITHOUT_ASSERTIONS) && !defined(CYTHON_WITHOUT_ASSERTIONS) -#define CYTHON_WITHOUT_ASSERTIONS -#endif - -typedef struct {PyObject **p; const char *s; const Py_ssize_t n; const char* encoding; - const char is_unicode; const char is_str; const char intern; } __Pyx_StringTabEntry; - -#define __PYX_DEFAULT_STRING_ENCODING_IS_ASCII 0 -#define __PYX_DEFAULT_STRING_ENCODING_IS_UTF8 0 -#define __PYX_DEFAULT_STRING_ENCODING_IS_DEFAULT (PY_MAJOR_VERSION >= 3 && __PYX_DEFAULT_STRING_ENCODING_IS_UTF8) -#define __PYX_DEFAULT_STRING_ENCODING "" -#define __Pyx_PyObject_FromString __Pyx_PyBytes_FromString -#define __Pyx_PyObject_FromStringAndSize __Pyx_PyBytes_FromStringAndSize -#define __Pyx_uchar_cast(c) ((unsigned char)c) -#define __Pyx_long_cast(x) ((long)x) -#define __Pyx_fits_Py_ssize_t(v, type, is_signed) (\ - (sizeof(type) < sizeof(Py_ssize_t)) ||\ - (sizeof(type) > sizeof(Py_ssize_t) &&\ - likely(v < (type)PY_SSIZE_T_MAX ||\ - v == (type)PY_SSIZE_T_MAX) &&\ - (!is_signed || likely(v > (type)PY_SSIZE_T_MIN ||\ - v == (type)PY_SSIZE_T_MIN))) ||\ - (sizeof(type) == sizeof(Py_ssize_t) &&\ - (is_signed || likely(v < (type)PY_SSIZE_T_MAX ||\ - v == (type)PY_SSIZE_T_MAX))) ) -static CYTHON_INLINE int __Pyx_is_valid_index(Py_ssize_t i, Py_ssize_t limit) { - return (size_t) i < (size_t) limit; -} -#if defined (__cplusplus) && __cplusplus >= 201103L - #include - #define __Pyx_sst_abs(value) std::abs(value) -#elif SIZEOF_INT >= SIZEOF_SIZE_T - #define __Pyx_sst_abs(value) abs(value) -#elif SIZEOF_LONG >= SIZEOF_SIZE_T - #define __Pyx_sst_abs(value) labs(value) -#elif defined (_MSC_VER) - #define __Pyx_sst_abs(value) ((Py_ssize_t)_abs64(value)) -#elif defined (__STDC_VERSION__) && __STDC_VERSION__ >= 199901L - #define __Pyx_sst_abs(value) llabs(value) -#elif defined (__GNUC__) - #define __Pyx_sst_abs(value) __builtin_llabs(value) -#else - #define __Pyx_sst_abs(value) ((value<0) ? -value : value) -#endif -static CYTHON_INLINE const char* __Pyx_PyObject_AsString(PyObject*); -static CYTHON_INLINE const char* __Pyx_PyObject_AsStringAndSize(PyObject*, Py_ssize_t* length); -#define __Pyx_PyByteArray_FromString(s) PyByteArray_FromStringAndSize((const char*)s, strlen((const char*)s)) -#define __Pyx_PyByteArray_FromStringAndSize(s, l) PyByteArray_FromStringAndSize((const char*)s, l) -#define __Pyx_PyBytes_FromString PyBytes_FromString -#define __Pyx_PyBytes_FromStringAndSize PyBytes_FromStringAndSize -static CYTHON_INLINE PyObject* __Pyx_PyUnicode_FromString(const char*); -#if PY_MAJOR_VERSION < 3 - #define __Pyx_PyStr_FromString __Pyx_PyBytes_FromString - #define __Pyx_PyStr_FromStringAndSize __Pyx_PyBytes_FromStringAndSize -#else - #define __Pyx_PyStr_FromString __Pyx_PyUnicode_FromString - #define __Pyx_PyStr_FromStringAndSize __Pyx_PyUnicode_FromStringAndSize -#endif -#define __Pyx_PyBytes_AsWritableString(s) ((char*) PyBytes_AS_STRING(s)) -#define __Pyx_PyBytes_AsWritableSString(s) ((signed char*) PyBytes_AS_STRING(s)) -#define __Pyx_PyBytes_AsWritableUString(s) ((unsigned char*) PyBytes_AS_STRING(s)) -#define __Pyx_PyBytes_AsString(s) ((const char*) PyBytes_AS_STRING(s)) -#define __Pyx_PyBytes_AsSString(s) ((const signed char*) PyBytes_AS_STRING(s)) -#define __Pyx_PyBytes_AsUString(s) ((const unsigned char*) PyBytes_AS_STRING(s)) -#define __Pyx_PyObject_AsWritableString(s) ((char*) __Pyx_PyObject_AsString(s)) -#define __Pyx_PyObject_AsWritableSString(s) ((signed char*) __Pyx_PyObject_AsString(s)) -#define __Pyx_PyObject_AsWritableUString(s) ((unsigned char*) __Pyx_PyObject_AsString(s)) -#define __Pyx_PyObject_AsSString(s) ((const signed char*) __Pyx_PyObject_AsString(s)) -#define __Pyx_PyObject_AsUString(s) ((const unsigned char*) __Pyx_PyObject_AsString(s)) -#define __Pyx_PyObject_FromCString(s) __Pyx_PyObject_FromString((const char*)s) -#define __Pyx_PyBytes_FromCString(s) __Pyx_PyBytes_FromString((const char*)s) -#define __Pyx_PyByteArray_FromCString(s) __Pyx_PyByteArray_FromString((const char*)s) -#define __Pyx_PyStr_FromCString(s) __Pyx_PyStr_FromString((const char*)s) -#define __Pyx_PyUnicode_FromCString(s) __Pyx_PyUnicode_FromString((const char*)s) -static CYTHON_INLINE size_t __Pyx_Py_UNICODE_strlen(const Py_UNICODE *u) { - const Py_UNICODE *u_end = u; - while (*u_end++) ; - return (size_t)(u_end - u - 1); -} -#define __Pyx_PyUnicode_FromUnicode(u) PyUnicode_FromUnicode(u, __Pyx_Py_UNICODE_strlen(u)) -#define __Pyx_PyUnicode_FromUnicodeAndLength PyUnicode_FromUnicode -#define __Pyx_PyUnicode_AsUnicode PyUnicode_AsUnicode -#define __Pyx_NewRef(obj) (Py_INCREF(obj), obj) -#define __Pyx_Owned_Py_None(b) __Pyx_NewRef(Py_None) -static CYTHON_INLINE PyObject * __Pyx_PyBool_FromLong(long b); -static CYTHON_INLINE int __Pyx_PyObject_IsTrue(PyObject*); -static CYTHON_INLINE int __Pyx_PyObject_IsTrueAndDecref(PyObject*); -static CYTHON_INLINE PyObject* __Pyx_PyNumber_IntOrLong(PyObject* x); -#define __Pyx_PySequence_Tuple(obj)\ - (likely(PyTuple_CheckExact(obj)) ? __Pyx_NewRef(obj) : PySequence_Tuple(obj)) -static CYTHON_INLINE Py_ssize_t __Pyx_PyIndex_AsSsize_t(PyObject*); -static CYTHON_INLINE PyObject * __Pyx_PyInt_FromSize_t(size_t); -#if CYTHON_ASSUME_SAFE_MACROS -#define __pyx_PyFloat_AsDouble(x) (PyFloat_CheckExact(x) ? PyFloat_AS_DOUBLE(x) : PyFloat_AsDouble(x)) -#else -#define __pyx_PyFloat_AsDouble(x) PyFloat_AsDouble(x) -#endif -#define __pyx_PyFloat_AsFloat(x) ((float) __pyx_PyFloat_AsDouble(x)) -#if PY_MAJOR_VERSION >= 3 -#define __Pyx_PyNumber_Int(x) (PyLong_CheckExact(x) ? __Pyx_NewRef(x) : PyNumber_Long(x)) -#else -#define __Pyx_PyNumber_Int(x) (PyInt_CheckExact(x) ? __Pyx_NewRef(x) : PyNumber_Int(x)) -#endif -#define __Pyx_PyNumber_Float(x) (PyFloat_CheckExact(x) ? __Pyx_NewRef(x) : PyNumber_Float(x)) -#if PY_MAJOR_VERSION < 3 && __PYX_DEFAULT_STRING_ENCODING_IS_ASCII -static int __Pyx_sys_getdefaultencoding_not_ascii; -static int __Pyx_init_sys_getdefaultencoding_params(void) { - PyObject* sys; - PyObject* default_encoding = NULL; - PyObject* ascii_chars_u = NULL; - PyObject* ascii_chars_b = NULL; - const char* default_encoding_c; - sys = PyImport_ImportModule("sys"); - if (!sys) goto bad; - default_encoding = PyObject_CallMethod(sys, (char*) "getdefaultencoding", NULL); - Py_DECREF(sys); - if (!default_encoding) goto bad; - default_encoding_c = PyBytes_AsString(default_encoding); - if (!default_encoding_c) goto bad; - if (strcmp(default_encoding_c, "ascii") == 0) { - __Pyx_sys_getdefaultencoding_not_ascii = 0; - } else { - char ascii_chars[128]; - int c; - for (c = 0; c < 128; c++) { - ascii_chars[c] = c; - } - __Pyx_sys_getdefaultencoding_not_ascii = 1; - ascii_chars_u = PyUnicode_DecodeASCII(ascii_chars, 128, NULL); - if (!ascii_chars_u) goto bad; - ascii_chars_b = PyUnicode_AsEncodedString(ascii_chars_u, default_encoding_c, NULL); - if (!ascii_chars_b || !PyBytes_Check(ascii_chars_b) || memcmp(ascii_chars, PyBytes_AS_STRING(ascii_chars_b), 128) != 0) { - PyErr_Format( - PyExc_ValueError, - "This module compiled with c_string_encoding=ascii, but default encoding '%.200s' is not a superset of ascii.", - default_encoding_c); - goto bad; - } - Py_DECREF(ascii_chars_u); - Py_DECREF(ascii_chars_b); - } - Py_DECREF(default_encoding); - return 0; -bad: - Py_XDECREF(default_encoding); - Py_XDECREF(ascii_chars_u); - Py_XDECREF(ascii_chars_b); - return -1; -} -#endif -#if __PYX_DEFAULT_STRING_ENCODING_IS_DEFAULT && PY_MAJOR_VERSION >= 3 -#define __Pyx_PyUnicode_FromStringAndSize(c_str, size) PyUnicode_DecodeUTF8(c_str, size, NULL) -#else -#define __Pyx_PyUnicode_FromStringAndSize(c_str, size) PyUnicode_Decode(c_str, size, __PYX_DEFAULT_STRING_ENCODING, NULL) -#if __PYX_DEFAULT_STRING_ENCODING_IS_DEFAULT -static char* __PYX_DEFAULT_STRING_ENCODING; -static int __Pyx_init_sys_getdefaultencoding_params(void) { - PyObject* sys; - PyObject* default_encoding = NULL; - char* default_encoding_c; - sys = PyImport_ImportModule("sys"); - if (!sys) goto bad; - default_encoding = PyObject_CallMethod(sys, (char*) (const char*) "getdefaultencoding", NULL); - Py_DECREF(sys); - if (!default_encoding) goto bad; - default_encoding_c = PyBytes_AsString(default_encoding); - if (!default_encoding_c) goto bad; - __PYX_DEFAULT_STRING_ENCODING = (char*) malloc(strlen(default_encoding_c) + 1); - if (!__PYX_DEFAULT_STRING_ENCODING) goto bad; - strcpy(__PYX_DEFAULT_STRING_ENCODING, default_encoding_c); - Py_DECREF(default_encoding); - return 0; -bad: - Py_XDECREF(default_encoding); - return -1; -} -#endif -#endif - - -/* Test for GCC > 2.95 */ -#if defined(__GNUC__) && (__GNUC__ > 2 || (__GNUC__ == 2 && (__GNUC_MINOR__ > 95))) - #define likely(x) __builtin_expect(!!(x), 1) - #define unlikely(x) __builtin_expect(!!(x), 0) -#else /* !__GNUC__ or GCC < 2.95 */ - #define likely(x) (x) - #define unlikely(x) (x) -#endif /* __GNUC__ */ -static CYTHON_INLINE void __Pyx_pretend_to_initialize(void* ptr) { (void)ptr; } - -static PyObject *__pyx_m = NULL; -static PyObject *__pyx_d; -static PyObject *__pyx_b; -static PyObject *__pyx_cython_runtime = NULL; -static PyObject *__pyx_empty_tuple; -static PyObject *__pyx_empty_bytes; -static PyObject *__pyx_empty_unicode; -static int __pyx_lineno; -static int __pyx_clineno = 0; -static const char * __pyx_cfilenm= __FILE__; -static const char *__pyx_filename; - - -static const char *__pyx_f[] = { - "pmercury/protocols/tls_server.pyx", -}; - -/*--- Type declarations ---*/ - -/* --- Runtime support code (head) --- */ -/* Refnanny.proto */ -#ifndef CYTHON_REFNANNY - #define CYTHON_REFNANNY 0 -#endif -#if CYTHON_REFNANNY - typedef struct { - void (*INCREF)(void*, PyObject*, int); - void (*DECREF)(void*, PyObject*, int); - void (*GOTREF)(void*, PyObject*, int); - void (*GIVEREF)(void*, PyObject*, int); - void* (*SetupContext)(const char*, int, const char*); - void (*FinishContext)(void**); - } __Pyx_RefNannyAPIStruct; - static __Pyx_RefNannyAPIStruct *__Pyx_RefNanny = NULL; - static __Pyx_RefNannyAPIStruct *__Pyx_RefNannyImportAPI(const char *modname); - #define __Pyx_RefNannyDeclarations void *__pyx_refnanny = NULL; -#ifdef WITH_THREAD - #define __Pyx_RefNannySetupContext(name, acquire_gil)\ - if (acquire_gil) {\ - PyGILState_STATE __pyx_gilstate_save = PyGILState_Ensure();\ - __pyx_refnanny = __Pyx_RefNanny->SetupContext((name), __LINE__, __FILE__);\ - PyGILState_Release(__pyx_gilstate_save);\ - } else {\ - __pyx_refnanny = __Pyx_RefNanny->SetupContext((name), __LINE__, __FILE__);\ - } -#else - #define __Pyx_RefNannySetupContext(name, acquire_gil)\ - __pyx_refnanny = __Pyx_RefNanny->SetupContext((name), __LINE__, __FILE__) -#endif - #define __Pyx_RefNannyFinishContext()\ - __Pyx_RefNanny->FinishContext(&__pyx_refnanny) - #define __Pyx_INCREF(r) __Pyx_RefNanny->INCREF(__pyx_refnanny, (PyObject *)(r), __LINE__) - #define __Pyx_DECREF(r) __Pyx_RefNanny->DECREF(__pyx_refnanny, (PyObject *)(r), __LINE__) - #define __Pyx_GOTREF(r) __Pyx_RefNanny->GOTREF(__pyx_refnanny, (PyObject *)(r), __LINE__) - #define __Pyx_GIVEREF(r) __Pyx_RefNanny->GIVEREF(__pyx_refnanny, (PyObject *)(r), __LINE__) - #define __Pyx_XINCREF(r) do { if((r) != NULL) {__Pyx_INCREF(r); }} while(0) - #define __Pyx_XDECREF(r) do { if((r) != NULL) {__Pyx_DECREF(r); }} while(0) - #define __Pyx_XGOTREF(r) do { if((r) != NULL) {__Pyx_GOTREF(r); }} while(0) - #define __Pyx_XGIVEREF(r) do { if((r) != NULL) {__Pyx_GIVEREF(r);}} while(0) -#else - #define __Pyx_RefNannyDeclarations - #define __Pyx_RefNannySetupContext(name, acquire_gil) - #define __Pyx_RefNannyFinishContext() - #define __Pyx_INCREF(r) Py_INCREF(r) - #define __Pyx_DECREF(r) Py_DECREF(r) - #define __Pyx_GOTREF(r) - #define __Pyx_GIVEREF(r) - #define __Pyx_XINCREF(r) Py_XINCREF(r) - #define __Pyx_XDECREF(r) Py_XDECREF(r) - #define __Pyx_XGOTREF(r) - #define __Pyx_XGIVEREF(r) -#endif -#define __Pyx_XDECREF_SET(r, v) do {\ - PyObject *tmp = (PyObject *) r;\ - r = v; __Pyx_XDECREF(tmp);\ - } while (0) -#define __Pyx_DECREF_SET(r, v) do {\ - PyObject *tmp = (PyObject *) r;\ - r = v; __Pyx_DECREF(tmp);\ - } while (0) -#define __Pyx_CLEAR(r) do { PyObject* tmp = ((PyObject*)(r)); r = NULL; __Pyx_DECREF(tmp);} while(0) -#define __Pyx_XCLEAR(r) do { if((r) != NULL) {PyObject* tmp = ((PyObject*)(r)); r = NULL; __Pyx_DECREF(tmp);}} while(0) - -/* PyObjectGetAttrStr.proto */ -#if CYTHON_USE_TYPE_SLOTS -static CYTHON_INLINE PyObject* __Pyx_PyObject_GetAttrStr(PyObject* obj, PyObject* attr_name); -#else -#define __Pyx_PyObject_GetAttrStr(o,n) PyObject_GetAttr(o,n) -#endif - -/* GetBuiltinName.proto */ -static PyObject *__Pyx_GetBuiltinName(PyObject *name); - -/* RaiseDoubleKeywords.proto */ -static void __Pyx_RaiseDoubleKeywordsError(const char* func_name, PyObject* kw_name); - -/* ParseKeywords.proto */ -static int __Pyx_ParseOptionalKeywords(PyObject *kwds, PyObject **argnames[],\ - PyObject *kwds2, PyObject *values[], Py_ssize_t num_pos_args,\ - const char* function_name); - -/* RaiseArgTupleInvalid.proto */ -static void __Pyx_RaiseArgtupleInvalid(const char* func_name, int exact, - Py_ssize_t num_min, Py_ssize_t num_max, Py_ssize_t num_found); - -/* PyObjectSetAttrStr.proto */ -#if CYTHON_USE_TYPE_SLOTS -#define __Pyx_PyObject_DelAttrStr(o,n) __Pyx_PyObject_SetAttrStr(o, n, NULL) -static CYTHON_INLINE int __Pyx_PyObject_SetAttrStr(PyObject* obj, PyObject* attr_name, PyObject* value); -#else -#define __Pyx_PyObject_DelAttrStr(o,n) PyObject_DelAttr(o,n) -#define __Pyx_PyObject_SetAttrStr(o,n,v) PyObject_SetAttr(o,n,v) -#endif - -/* PyIntCompare.proto */ -static CYTHON_INLINE PyObject* __Pyx_PyInt_EqObjC(PyObject *op1, PyObject *op2, long intval, long inplace); - -/* GetItemInt.proto */ -#define __Pyx_GetItemInt(o, i, type, is_signed, to_py_func, is_list, wraparound, boundscheck)\ - (__Pyx_fits_Py_ssize_t(i, type, is_signed) ?\ - __Pyx_GetItemInt_Fast(o, (Py_ssize_t)i, is_list, wraparound, boundscheck) :\ - (is_list ? (PyErr_SetString(PyExc_IndexError, "list index out of range"), (PyObject*)NULL) :\ - __Pyx_GetItemInt_Generic(o, to_py_func(i)))) -#define __Pyx_GetItemInt_List(o, i, type, is_signed, to_py_func, is_list, wraparound, boundscheck)\ - (__Pyx_fits_Py_ssize_t(i, type, is_signed) ?\ - __Pyx_GetItemInt_List_Fast(o, (Py_ssize_t)i, wraparound, boundscheck) :\ - (PyErr_SetString(PyExc_IndexError, "list index out of range"), (PyObject*)NULL)) -static CYTHON_INLINE PyObject *__Pyx_GetItemInt_List_Fast(PyObject *o, Py_ssize_t i, - int wraparound, int boundscheck); -#define __Pyx_GetItemInt_Tuple(o, i, type, is_signed, to_py_func, is_list, wraparound, boundscheck)\ - (__Pyx_fits_Py_ssize_t(i, type, is_signed) ?\ - __Pyx_GetItemInt_Tuple_Fast(o, (Py_ssize_t)i, wraparound, boundscheck) :\ - (PyErr_SetString(PyExc_IndexError, "tuple index out of range"), (PyObject*)NULL)) -static CYTHON_INLINE PyObject *__Pyx_GetItemInt_Tuple_Fast(PyObject *o, Py_ssize_t i, - int wraparound, int boundscheck); -static PyObject *__Pyx_GetItemInt_Generic(PyObject *o, PyObject* j); -static CYTHON_INLINE PyObject *__Pyx_GetItemInt_Fast(PyObject *o, Py_ssize_t i, - int is_list, int wraparound, int boundscheck); - -/* ObjectGetItem.proto */ -#if CYTHON_USE_TYPE_SLOTS -static CYTHON_INLINE PyObject *__Pyx_PyObject_GetItem(PyObject *obj, PyObject* key); -#else -#define __Pyx_PyObject_GetItem(obj, key) PyObject_GetItem(obj, key) -#endif - -/* PyIntBinop.proto */ -#if !CYTHON_COMPILING_IN_PYPY -static PyObject* __Pyx_PyInt_AddObjC(PyObject *op1, PyObject *op2, long intval, int inplace, int zerodivision_check); -#else -#define __Pyx_PyInt_AddObjC(op1, op2, intval, inplace, zerodivision_check)\ - (inplace ? PyNumber_InPlaceAdd(op1, op2) : PyNumber_Add(op1, op2)) -#endif - -/* ArgTypeTest.proto */ -#define __Pyx_ArgTypeTest(obj, type, none_allowed, name, exact)\ - ((likely((Py_TYPE(obj) == type) | (none_allowed && (obj == Py_None)))) ? 1 :\ - __Pyx__ArgTypeTest(obj, type, name, exact)) -static int __Pyx__ArgTypeTest(PyObject *obj, PyTypeObject *type, const char *name, int exact); - -/* PyFunctionFastCall.proto */ -#if CYTHON_FAST_PYCALL -#define __Pyx_PyFunction_FastCall(func, args, nargs)\ - __Pyx_PyFunction_FastCallDict((func), (args), (nargs), NULL) -#if 1 || PY_VERSION_HEX < 0x030600B1 -static PyObject *__Pyx_PyFunction_FastCallDict(PyObject *func, PyObject **args, Py_ssize_t nargs, PyObject *kwargs); -#else -#define __Pyx_PyFunction_FastCallDict(func, args, nargs, kwargs) _PyFunction_FastCallDict(func, args, nargs, kwargs) -#endif -#define __Pyx_BUILD_ASSERT_EXPR(cond)\ - (sizeof(char [1 - 2*!(cond)]) - 1) -#ifndef Py_MEMBER_SIZE -#define Py_MEMBER_SIZE(type, member) sizeof(((type *)0)->member) -#endif - static size_t __pyx_pyframe_localsplus_offset = 0; - #include "frameobject.h" - #define __Pxy_PyFrame_Initialize_Offsets()\ - ((void)__Pyx_BUILD_ASSERT_EXPR(sizeof(PyFrameObject) == offsetof(PyFrameObject, f_localsplus) + Py_MEMBER_SIZE(PyFrameObject, f_localsplus)),\ - (void)(__pyx_pyframe_localsplus_offset = ((size_t)PyFrame_Type.tp_basicsize) - Py_MEMBER_SIZE(PyFrameObject, f_localsplus))) - #define __Pyx_PyFrame_GetLocalsplus(frame)\ - (assert(__pyx_pyframe_localsplus_offset), (PyObject **)(((char *)(frame)) + __pyx_pyframe_localsplus_offset)) -#endif - -/* PyObjectCall.proto */ -#if CYTHON_COMPILING_IN_CPYTHON -static CYTHON_INLINE PyObject* __Pyx_PyObject_Call(PyObject *func, PyObject *arg, PyObject *kw); -#else -#define __Pyx_PyObject_Call(func, arg, kw) PyObject_Call(func, arg, kw) -#endif - -/* PyObjectCallMethO.proto */ -#if CYTHON_COMPILING_IN_CPYTHON -static CYTHON_INLINE PyObject* __Pyx_PyObject_CallMethO(PyObject *func, PyObject *arg); -#endif - -/* PyObjectCallNoArg.proto */ -#if CYTHON_COMPILING_IN_CPYTHON -static CYTHON_INLINE PyObject* __Pyx_PyObject_CallNoArg(PyObject *func); -#else -#define __Pyx_PyObject_CallNoArg(func) __Pyx_PyObject_Call(func, __pyx_empty_tuple, NULL) -#endif - -/* PyCFunctionFastCall.proto */ -#if CYTHON_FAST_PYCCALL -static CYTHON_INLINE PyObject *__Pyx_PyCFunction_FastCall(PyObject *func, PyObject **args, Py_ssize_t nargs); -#else -#define __Pyx_PyCFunction_FastCall(func, args, nargs) (assert(0), NULL) -#endif - -/* PyObjectCallOneArg.proto */ -static CYTHON_INLINE PyObject* __Pyx_PyObject_CallOneArg(PyObject *func, PyObject *arg); - -/* BuildPyUnicode.proto */ -static PyObject* __Pyx_PyUnicode_BuildFromAscii(Py_ssize_t ulength, char* chars, int clength, - int prepend_sign, char padding_char); - -/* CIntToPyUnicode.proto */ -static CYTHON_INLINE PyObject* __Pyx_PyUnicode_From_unsigned_char(unsigned char value, Py_ssize_t width, char padding_char, char format_char); - -/* IncludeStringH.proto */ -#include - -/* JoinPyUnicode.proto */ -static PyObject* __Pyx_PyUnicode_Join(PyObject* value_tuple, Py_ssize_t value_count, Py_ssize_t result_ulength, - Py_UCS4 max_char); - -/* PyDictVersioning.proto */ -#if CYTHON_USE_DICT_VERSIONS && CYTHON_USE_TYPE_SLOTS -#define __PYX_DICT_VERSION_INIT ((PY_UINT64_T) -1) -#define __PYX_GET_DICT_VERSION(dict) (((PyDictObject*)(dict))->ma_version_tag) -#define __PYX_UPDATE_DICT_CACHE(dict, value, cache_var, version_var)\ - (version_var) = __PYX_GET_DICT_VERSION(dict);\ - (cache_var) = (value); -#define __PYX_PY_DICT_LOOKUP_IF_MODIFIED(VAR, DICT, LOOKUP) {\ - static PY_UINT64_T __pyx_dict_version = 0;\ - static PyObject *__pyx_dict_cached_value = NULL;\ - if (likely(__PYX_GET_DICT_VERSION(DICT) == __pyx_dict_version)) {\ - (VAR) = __pyx_dict_cached_value;\ - } else {\ - (VAR) = __pyx_dict_cached_value = (LOOKUP);\ - __pyx_dict_version = __PYX_GET_DICT_VERSION(DICT);\ - }\ -} -static CYTHON_INLINE PY_UINT64_T __Pyx_get_tp_dict_version(PyObject *obj); -static CYTHON_INLINE PY_UINT64_T __Pyx_get_object_dict_version(PyObject *obj); -static CYTHON_INLINE int __Pyx_object_dict_version_matches(PyObject* obj, PY_UINT64_T tp_dict_version, PY_UINT64_T obj_dict_version); -#else -#define __PYX_GET_DICT_VERSION(dict) (0) -#define __PYX_UPDATE_DICT_CACHE(dict, value, cache_var, version_var) -#define __PYX_PY_DICT_LOOKUP_IF_MODIFIED(VAR, DICT, LOOKUP) (VAR) = (LOOKUP); -#endif - -/* GetModuleGlobalName.proto */ -#if CYTHON_USE_DICT_VERSIONS -#define __Pyx_GetModuleGlobalName(var, name) {\ - static PY_UINT64_T __pyx_dict_version = 0;\ - static PyObject *__pyx_dict_cached_value = NULL;\ - (var) = (likely(__pyx_dict_version == __PYX_GET_DICT_VERSION(__pyx_d))) ?\ - (likely(__pyx_dict_cached_value) ? __Pyx_NewRef(__pyx_dict_cached_value) : __Pyx_GetBuiltinName(name)) :\ - __Pyx__GetModuleGlobalName(name, &__pyx_dict_version, &__pyx_dict_cached_value);\ -} -#define __Pyx_GetModuleGlobalNameUncached(var, name) {\ - PY_UINT64_T __pyx_dict_version;\ - PyObject *__pyx_dict_cached_value;\ - (var) = __Pyx__GetModuleGlobalName(name, &__pyx_dict_version, &__pyx_dict_cached_value);\ -} -static PyObject *__Pyx__GetModuleGlobalName(PyObject *name, PY_UINT64_T *dict_version, PyObject **dict_cached_value); -#else -#define __Pyx_GetModuleGlobalName(var, name) (var) = __Pyx__GetModuleGlobalName(name) -#define __Pyx_GetModuleGlobalNameUncached(var, name) (var) = __Pyx__GetModuleGlobalName(name) -static CYTHON_INLINE PyObject *__Pyx__GetModuleGlobalName(PyObject *name); -#endif - -/* RaiseTooManyValuesToUnpack.proto */ -static CYTHON_INLINE void __Pyx_RaiseTooManyValuesError(Py_ssize_t expected); - -/* RaiseNeedMoreValuesToUnpack.proto */ -static CYTHON_INLINE void __Pyx_RaiseNeedMoreValuesError(Py_ssize_t index); - -/* IterFinish.proto */ -static CYTHON_INLINE int __Pyx_IterFinish(void); - -/* UnpackItemEndCheck.proto */ -static int __Pyx_IternextUnpackEndCheck(PyObject *retval, Py_ssize_t expected); - -/* PyObjectCall2Args.proto */ -static CYTHON_UNUSED PyObject* __Pyx_PyObject_Call2Args(PyObject* function, PyObject* arg1, PyObject* arg2); - -/* Import.proto */ -static PyObject *__Pyx_Import(PyObject *name, PyObject *from_list, int level); - -/* ListAppend.proto */ -#if CYTHON_USE_PYLIST_INTERNALS && CYTHON_ASSUME_SAFE_MACROS -static CYTHON_INLINE int __Pyx_PyList_Append(PyObject* list, PyObject* x) { - PyListObject* L = (PyListObject*) list; - Py_ssize_t len = Py_SIZE(list); - if (likely(L->allocated > len) & likely(len > (L->allocated >> 1))) { - Py_INCREF(x); - PyList_SET_ITEM(list, len, x); - Py_SIZE(list) = len+1; - return 0; - } - return PyList_Append(list, x); -} -#else -#define __Pyx_PyList_Append(L,x) PyList_Append(L,x) -#endif - -/* PyObjectGetMethod.proto */ -static int __Pyx_PyObject_GetMethod(PyObject *obj, PyObject *name, PyObject **method); - -/* PyObjectCallMethod1.proto */ -static PyObject* __Pyx_PyObject_CallMethod1(PyObject* obj, PyObject* method_name, PyObject* arg); - -/* append.proto */ -static CYTHON_INLINE int __Pyx_PyObject_Append(PyObject* L, PyObject* x); - -/* ImportFrom.proto */ -static PyObject* __Pyx_ImportFrom(PyObject* module, PyObject* name); - -/* CalculateMetaclass.proto */ -static PyObject *__Pyx_CalculateMetaclass(PyTypeObject *metaclass, PyObject *bases); - -/* FetchCommonType.proto */ -static PyTypeObject* __Pyx_FetchCommonType(PyTypeObject* type); - -/* CythonFunction.proto */ -#define __Pyx_CyFunction_USED 1 -#define __Pyx_CYFUNCTION_STATICMETHOD 0x01 -#define __Pyx_CYFUNCTION_CLASSMETHOD 0x02 -#define __Pyx_CYFUNCTION_CCLASS 0x04 -#define __Pyx_CyFunction_GetClosure(f)\ - (((__pyx_CyFunctionObject *) (f))->func_closure) -#define __Pyx_CyFunction_GetClassObj(f)\ - (((__pyx_CyFunctionObject *) (f))->func_classobj) -#define __Pyx_CyFunction_Defaults(type, f)\ - ((type *)(((__pyx_CyFunctionObject *) (f))->defaults)) -#define __Pyx_CyFunction_SetDefaultsGetter(f, g)\ - ((__pyx_CyFunctionObject *) (f))->defaults_getter = (g) -typedef struct { - PyCFunctionObject func; -#if PY_VERSION_HEX < 0x030500A0 - PyObject *func_weakreflist; -#endif - PyObject *func_dict; - PyObject *func_name; - PyObject *func_qualname; - PyObject *func_doc; - PyObject *func_globals; - PyObject *func_code; - PyObject *func_closure; - PyObject *func_classobj; - void *defaults; - int defaults_pyobjects; - int flags; - PyObject *defaults_tuple; - PyObject *defaults_kwdict; - PyObject *(*defaults_getter)(PyObject *); - PyObject *func_annotations; -} __pyx_CyFunctionObject; -static PyTypeObject *__pyx_CyFunctionType = 0; -#define __Pyx_CyFunction_Check(obj) (__Pyx_TypeCheck(obj, __pyx_CyFunctionType)) -#define __Pyx_CyFunction_NewEx(ml, flags, qualname, self, module, globals, code)\ - __Pyx_CyFunction_New(__pyx_CyFunctionType, ml, flags, qualname, self, module, globals, code) -static PyObject *__Pyx_CyFunction_New(PyTypeObject *, PyMethodDef *ml, - int flags, PyObject* qualname, - PyObject *self, - PyObject *module, PyObject *globals, - PyObject* code); -static CYTHON_INLINE void *__Pyx_CyFunction_InitDefaults(PyObject *m, - size_t size, - int pyobjects); -static CYTHON_INLINE void __Pyx_CyFunction_SetDefaultsTuple(PyObject *m, - PyObject *tuple); -static CYTHON_INLINE void __Pyx_CyFunction_SetDefaultsKwDict(PyObject *m, - PyObject *dict); -static CYTHON_INLINE void __Pyx_CyFunction_SetAnnotationsDict(PyObject *m, - PyObject *dict); -static int __pyx_CyFunction_init(void); - -/* SetNameInClass.proto */ -#if CYTHON_COMPILING_IN_CPYTHON && PY_VERSION_HEX >= 0x030500A1 -#define __Pyx_SetNameInClass(ns, name, value)\ - (likely(PyDict_CheckExact(ns)) ? _PyDict_SetItem_KnownHash(ns, name, value, ((PyASCIIObject *) name)->hash) : PyObject_SetItem(ns, name, value)) -#elif CYTHON_COMPILING_IN_CPYTHON -#define __Pyx_SetNameInClass(ns, name, value)\ - (likely(PyDict_CheckExact(ns)) ? PyDict_SetItem(ns, name, value) : PyObject_SetItem(ns, name, value)) -#else -#define __Pyx_SetNameInClass(ns, name, value) PyObject_SetItem(ns, name, value) -#endif - -/* Py3ClassCreate.proto */ -static PyObject *__Pyx_Py3MetaclassPrepare(PyObject *metaclass, PyObject *bases, PyObject *name, PyObject *qualname, - PyObject *mkw, PyObject *modname, PyObject *doc); -static PyObject *__Pyx_Py3ClassCreate(PyObject *metaclass, PyObject *name, PyObject *bases, PyObject *dict, - PyObject *mkw, int calculate_metaclass, int allow_py2_metaclass); - -/* PyThreadStateGet.proto */ -#if CYTHON_FAST_THREAD_STATE -#define __Pyx_PyThreadState_declare PyThreadState *__pyx_tstate; -#define __Pyx_PyThreadState_assign __pyx_tstate = __Pyx_PyThreadState_Current; -#define __Pyx_PyErr_Occurred() __pyx_tstate->curexc_type -#else -#define __Pyx_PyThreadState_declare -#define __Pyx_PyThreadState_assign -#define __Pyx_PyErr_Occurred() PyErr_Occurred() -#endif - -/* PyErrFetchRestore.proto */ -#if CYTHON_FAST_THREAD_STATE -#define __Pyx_PyErr_Clear() __Pyx_ErrRestore(NULL, NULL, NULL) -#define __Pyx_ErrRestoreWithState(type, value, tb) __Pyx_ErrRestoreInState(PyThreadState_GET(), type, value, tb) -#define __Pyx_ErrFetchWithState(type, value, tb) __Pyx_ErrFetchInState(PyThreadState_GET(), type, value, tb) -#define __Pyx_ErrRestore(type, value, tb) __Pyx_ErrRestoreInState(__pyx_tstate, type, value, tb) -#define __Pyx_ErrFetch(type, value, tb) __Pyx_ErrFetchInState(__pyx_tstate, type, value, tb) -static CYTHON_INLINE void __Pyx_ErrRestoreInState(PyThreadState *tstate, PyObject *type, PyObject *value, PyObject *tb); -static CYTHON_INLINE void __Pyx_ErrFetchInState(PyThreadState *tstate, PyObject **type, PyObject **value, PyObject **tb); -#if CYTHON_COMPILING_IN_CPYTHON -#define __Pyx_PyErr_SetNone(exc) (Py_INCREF(exc), __Pyx_ErrRestore((exc), NULL, NULL)) -#else -#define __Pyx_PyErr_SetNone(exc) PyErr_SetNone(exc) -#endif -#else -#define __Pyx_PyErr_Clear() PyErr_Clear() -#define __Pyx_PyErr_SetNone(exc) PyErr_SetNone(exc) -#define __Pyx_ErrRestoreWithState(type, value, tb) PyErr_Restore(type, value, tb) -#define __Pyx_ErrFetchWithState(type, value, tb) PyErr_Fetch(type, value, tb) -#define __Pyx_ErrRestoreInState(tstate, type, value, tb) PyErr_Restore(type, value, tb) -#define __Pyx_ErrFetchInState(tstate, type, value, tb) PyErr_Fetch(type, value, tb) -#define __Pyx_ErrRestore(type, value, tb) PyErr_Restore(type, value, tb) -#define __Pyx_ErrFetch(type, value, tb) PyErr_Fetch(type, value, tb) -#endif - -/* CLineInTraceback.proto */ -#ifdef CYTHON_CLINE_IN_TRACEBACK -#define __Pyx_CLineForTraceback(tstate, c_line) (((CYTHON_CLINE_IN_TRACEBACK)) ? c_line : 0) -#else -static int __Pyx_CLineForTraceback(PyThreadState *tstate, int c_line); -#endif - -/* CodeObjectCache.proto */ -typedef struct { - PyCodeObject* code_object; - int code_line; -} __Pyx_CodeObjectCacheEntry; -struct __Pyx_CodeObjectCache { - int count; - int max_count; - __Pyx_CodeObjectCacheEntry* entries; -}; -static struct __Pyx_CodeObjectCache __pyx_code_cache = {0,0,NULL}; -static int __pyx_bisect_code_objects(__Pyx_CodeObjectCacheEntry* entries, int count, int code_line); -static PyCodeObject *__pyx_find_code_object(int code_line); -static void __pyx_insert_code_object(int code_line, PyCodeObject* code_object); - -/* AddTraceback.proto */ -static void __Pyx_AddTraceback(const char *funcname, int c_line, - int py_line, const char *filename); - -/* CIntToPy.proto */ -static CYTHON_INLINE PyObject* __Pyx_PyInt_From_unsigned_int(unsigned int value); - -/* CIntToPy.proto */ -static CYTHON_INLINE PyObject* __Pyx_PyInt_From_long(long value); - -/* CIntFromPy.proto */ -static CYTHON_INLINE unsigned int __Pyx_PyInt_As_unsigned_int(PyObject *); - -/* CIntFromPy.proto */ -static CYTHON_INLINE int __Pyx_PyInt_As_int(PyObject *); - -/* CIntFromPy.proto */ -static CYTHON_INLINE long __Pyx_PyInt_As_long(PyObject *); - -/* FastTypeChecks.proto */ -#if CYTHON_COMPILING_IN_CPYTHON -#define __Pyx_TypeCheck(obj, type) __Pyx_IsSubtype(Py_TYPE(obj), (PyTypeObject *)type) -static CYTHON_INLINE int __Pyx_IsSubtype(PyTypeObject *a, PyTypeObject *b); -static CYTHON_INLINE int __Pyx_PyErr_GivenExceptionMatches(PyObject *err, PyObject *type); -static CYTHON_INLINE int __Pyx_PyErr_GivenExceptionMatches2(PyObject *err, PyObject *type1, PyObject *type2); -#else -#define __Pyx_TypeCheck(obj, type) PyObject_TypeCheck(obj, (PyTypeObject *)type) -#define __Pyx_PyErr_GivenExceptionMatches(err, type) PyErr_GivenExceptionMatches(err, type) -#define __Pyx_PyErr_GivenExceptionMatches2(err, type1, type2) (PyErr_GivenExceptionMatches(err, type1) || PyErr_GivenExceptionMatches(err, type2)) -#endif -#define __Pyx_PyException_Check(obj) __Pyx_TypeCheck(obj, PyExc_Exception) - -/* CStringEquals.proto */ -static CYTHON_INLINE int __Pyx_StrEq(const char *, const char *); - -/* CheckBinaryVersion.proto */ -static int __Pyx_check_binary_version(void); - -/* InitStrings.proto */ -static int __Pyx_InitStrings(__Pyx_StringTabEntry *t); - - -/* Module declarations from 'libc.stdint' */ - -/* Module declarations from 'pmercury.protocols.tls_server' */ -#define __Pyx_MODULE_NAME "pmercury.protocols.tls_server" -extern int __pyx_module_is_main_pmercury__protocols__tls_server; -int __pyx_module_is_main_pmercury__protocols__tls_server = 0; - -/* Implementation of 'pmercury.protocols.tls_server' */ -static PyObject *__pyx_builtin_staticmethod; -static const char __pyx_k_[] = "("; -static const char __pyx_k_s[] = "(%s)"; -static const char __pyx_k__2[] = ")"; -static const char __pyx_k__4[] = "()"; -static const char __pyx_k__5[] = "/../"; -static const char __pyx_k__6[] = "*"; -static const char __pyx_k_fp[] = "fp_"; -static const char __pyx_k_os[] = "os"; -static const char __pyx_k_02x[] = "02x"; -static const char __pyx_k_buf[] = "buf"; -static const char __pyx_k_doc[] = "__doc__"; -static const char __pyx_k_hex[] = "hex"; -static const char __pyx_k_sys[] = "sys"; -static const char __pyx_k_data[] = "data"; -static const char __pyx_k_file[] = "__file__"; -static const char __pyx_k_fp_h[] = "fp_h"; -static const char __pyx_k_init[] = "__init__"; -static const char __pyx_k_main[] = "__main__"; -static const char __pyx_k_mode[] = "mode"; -static const char __pyx_k_name[] = "__name__"; -static const char __pyx_k_path[] = "path"; -static const char __pyx_k_self[] = "self"; -static const char __pyx_k_test[] = "__test__"; -static const char __pyx_k_fp_db[] = "fp_db"; -static const char __pyx_k_append[] = "append"; -static const char __pyx_k_config[] = "config"; -static const char __pyx_k_fp_str[] = "fp_str_"; -static const char __pyx_k_import[] = "__import__"; -static const char __pyx_k_lit_fp[] = "lit_fp"; -static const char __pyx_k_module[] = "__module__"; -static const char __pyx_k_offset[] = "offset"; -static const char __pyx_k_server[] = "server"; -static const char __pyx_k_abspath[] = "abspath"; -static const char __pyx_k_dirname[] = "dirname"; -static const char __pyx_k_ext_len[] = "ext_len"; -static const char __pyx_k_prepare[] = "__prepare__"; -static const char __pyx_k_version[] = "version"; -static const char __pyx_k_Protocol[] = "Protocol"; -static const char __pyx_k_data_len[] = "data_len"; -static const char __pyx_k_qualname[] = "__qualname__"; -static const char __pyx_k_metaclass[] = "__metaclass__"; -static const char __pyx_k_TLS_Server[] = "TLS_Server"; -static const char __pyx_k_extensions[] = "extensions"; -static const char __pyx_k_tmp_fp_ext[] = "tmp_fp_ext"; -static const char __pyx_k_eval_fp_str[] = "eval_fp_str"; -static const char __pyx_k_fingerprint[] = "fingerprint"; -static const char __pyx_k_fp_database[] = "fp_database"; -static const char __pyx_k_staticmethod[] = "staticmethod"; -static const char __pyx_k_ext_total_len[] = "ext_total_len"; -static const char __pyx_k_record_length[] = "record_length"; -static const char __pyx_k_proto_identify[] = "proto_identify"; -static const char __pyx_k_get_cs_from_str[] = "get_cs_from_str"; -static const char __pyx_k_parse_extension[] = "parse_extension"; -static const char __pyx_k_get_ext_from_str[] = "get_ext_from_str"; -static const char __pyx_k_TLS_Server___init[] = "TLS_Server.__init__"; -static const char __pyx_k_session_id_length[] = "session_id_length"; -static const char __pyx_k_MAX_CACHED_RESULTS[] = "MAX_CACHED_RESULTS"; -static const char __pyx_k_cline_in_traceback[] = "cline_in_traceback"; -static const char __pyx_k_compression_method[] = "compression_method"; -static const char __pyx_k_get_human_readable[] = "get_human_readable"; -static const char __pyx_k_get_version_from_str[] = "get_version_from_str"; -static const char __pyx_k_selected_cipher_suite[] = "selected_cipher_suite"; -static const char __pyx_k_TLS_Server_fingerprint[] = "TLS_Server.fingerprint"; -static const char __pyx_k_pmercury_utils_tls_utils[] = "pmercury.utils.tls_utils"; -static const char __pyx_k_TLS_Server_proto_identify[] = "TLS_Server.proto_identify"; -static const char __pyx_k_pmercury_protocols_protocol[] = "pmercury.protocols.protocol"; -static const char __pyx_k_pmercury_utils_tls_constants[] = "pmercury.utils.tls_constants"; -static const char __pyx_k_TLS_Server_get_human_readable[] = "TLS_Server.get_human_readable"; -static const char __pyx_k_pmercury_protocols_tls_server[] = "pmercury.protocols.tls_server"; -static const char __pyx_k_Copyright_c_2019_Cisco_Systems[] = "\n Copyright (c) 2019 Cisco Systems, Inc. All rights reserved.\n License at https://github.com/cisco/mercury/blob/master/LICENSE\n"; -static const char __pyx_k_pmercury_protocols_tls_server_py[] = "pmercury/protocols/tls_server.pyx"; -static PyObject *__pyx_kp_u_; -static PyObject *__pyx_kp_u_02x; -static PyObject *__pyx_n_s_MAX_CACHED_RESULTS; -static PyObject *__pyx_n_s_Protocol; -static PyObject *__pyx_n_s_TLS_Server; -static PyObject *__pyx_n_s_TLS_Server___init; -static PyObject *__pyx_n_s_TLS_Server_fingerprint; -static PyObject *__pyx_n_s_TLS_Server_get_human_readable; -static PyObject *__pyx_n_s_TLS_Server_proto_identify; -static PyObject *__pyx_kp_u__2; -static PyObject *__pyx_kp_u__4; -static PyObject *__pyx_kp_u__5; -static PyObject *__pyx_n_s__6; -static PyObject *__pyx_n_s_abspath; -static PyObject *__pyx_n_s_append; -static PyObject *__pyx_n_s_buf; -static PyObject *__pyx_n_s_cline_in_traceback; -static PyObject *__pyx_n_s_compression_method; -static PyObject *__pyx_n_s_config; -static PyObject *__pyx_n_s_data; -static PyObject *__pyx_n_s_data_len; -static PyObject *__pyx_n_s_dirname; -static PyObject *__pyx_n_s_doc; -static PyObject *__pyx_n_s_eval_fp_str; -static PyObject *__pyx_n_s_ext_len; -static PyObject *__pyx_n_s_ext_total_len; -static PyObject *__pyx_n_u_extensions; -static PyObject *__pyx_n_s_file; -static PyObject *__pyx_n_s_fingerprint; -static PyObject *__pyx_n_s_fp; -static PyObject *__pyx_n_s_fp_database; -static PyObject *__pyx_n_s_fp_db; -static PyObject *__pyx_n_s_fp_h; -static PyObject *__pyx_n_s_fp_str; -static PyObject *__pyx_n_s_get_cs_from_str; -static PyObject *__pyx_n_s_get_ext_from_str; -static PyObject *__pyx_n_s_get_human_readable; -static PyObject *__pyx_n_s_get_version_from_str; -static PyObject *__pyx_n_s_hex; -static PyObject *__pyx_n_s_import; -static PyObject *__pyx_n_s_init; -static PyObject *__pyx_n_s_lit_fp; -static PyObject *__pyx_n_s_main; -static PyObject *__pyx_n_s_metaclass; -static PyObject *__pyx_n_s_mode; -static PyObject *__pyx_n_s_module; -static PyObject *__pyx_n_s_name; -static PyObject *__pyx_n_s_offset; -static PyObject *__pyx_n_s_os; -static PyObject *__pyx_n_s_parse_extension; -static PyObject *__pyx_n_s_path; -static PyObject *__pyx_n_s_pmercury_protocols_protocol; -static PyObject *__pyx_n_s_pmercury_protocols_tls_server; -static PyObject *__pyx_kp_s_pmercury_protocols_tls_server_py; -static PyObject *__pyx_n_s_pmercury_utils_tls_constants; -static PyObject *__pyx_n_s_pmercury_utils_tls_utils; -static PyObject *__pyx_n_s_prepare; -static PyObject *__pyx_n_s_proto_identify; -static PyObject *__pyx_n_s_qualname; -static PyObject *__pyx_n_s_record_length; -static PyObject *__pyx_kp_u_s; -static PyObject *__pyx_n_u_selected_cipher_suite; -static PyObject *__pyx_n_s_self; -static PyObject *__pyx_n_u_server; -static PyObject *__pyx_n_s_session_id_length; -static PyObject *__pyx_n_s_staticmethod; -static PyObject *__pyx_n_s_sys; -static PyObject *__pyx_n_s_test; -static PyObject *__pyx_n_s_tmp_fp_ext; -static PyObject *__pyx_n_u_version; -static PyObject *__pyx_pf_8pmercury_9protocols_10tls_server_10TLS_Server___init__(CYTHON_UNUSED PyObject *__pyx_self, PyObject *__pyx_v_self, CYTHON_UNUSED PyObject *__pyx_v_fp_database, CYTHON_UNUSED PyObject *__pyx_v_config); /* proto */ -static PyObject *__pyx_pf_8pmercury_9protocols_10tls_server_10TLS_Server_2proto_identify(CYTHON_UNUSED PyObject *__pyx_self, PyObject *__pyx_v_data, PyObject *__pyx_v_offset, PyObject *__pyx_v_data_len); /* proto */ -static PyObject *__pyx_pf_8pmercury_9protocols_10tls_server_10TLS_Server_4fingerprint(CYTHON_UNUSED PyObject *__pyx_self, PyObject *__pyx_v_data, unsigned int __pyx_v_offset, unsigned int __pyx_v_data_len); /* proto */ -static PyObject *__pyx_pf_8pmercury_9protocols_10tls_server_10TLS_Server_6get_human_readable(CYTHON_UNUSED PyObject *__pyx_self, CYTHON_UNUSED PyObject *__pyx_v_self, PyObject *__pyx_v_fp_str_); /* proto */ -static PyObject *__pyx_int_1; -static PyObject *__pyx_int_2; -static PyObject *__pyx_int_3; -static PyObject *__pyx_int_5; -static PyObject *__pyx_int_9; -static PyObject *__pyx_int_10; -static PyObject *__pyx_int_16; -static PyObject *__pyx_int_22; -static PyObject *__pyx_int_16777216; -static PyObject *__pyx_tuple__3; -static PyObject *__pyx_tuple__7; -static PyObject *__pyx_tuple__9; -static PyObject *__pyx_tuple__10; -static PyObject *__pyx_tuple__12; -static PyObject *__pyx_tuple__14; -static PyObject *__pyx_codeobj__8; -static PyObject *__pyx_codeobj__11; -static PyObject *__pyx_codeobj__13; -static PyObject *__pyx_codeobj__15; -/* Late includes */ - -/* "pmercury/protocols/tls_server.pyx":33 - * class TLS_Server(Protocol): - * - * def __init__(self, fp_database=None, config=None): # <<<<<<<<<<<<<< - * # populate fingerprint databases - * self.fp_db = {} - */ - -/* Python wrapper */ -static PyObject *__pyx_pw_8pmercury_9protocols_10tls_server_10TLS_Server_1__init__(PyObject *__pyx_self, PyObject *__pyx_args, PyObject *__pyx_kwds); /*proto*/ -static PyMethodDef __pyx_mdef_8pmercury_9protocols_10tls_server_10TLS_Server_1__init__ = {"__init__", (PyCFunction)(void*)(PyCFunctionWithKeywords)__pyx_pw_8pmercury_9protocols_10tls_server_10TLS_Server_1__init__, METH_VARARGS|METH_KEYWORDS, 0}; -static PyObject *__pyx_pw_8pmercury_9protocols_10tls_server_10TLS_Server_1__init__(PyObject *__pyx_self, PyObject *__pyx_args, PyObject *__pyx_kwds) { - PyObject *__pyx_v_self = 0; - CYTHON_UNUSED PyObject *__pyx_v_fp_database = 0; - CYTHON_UNUSED PyObject *__pyx_v_config = 0; - PyObject *__pyx_r = 0; - __Pyx_RefNannyDeclarations - __Pyx_RefNannySetupContext("__init__ (wrapper)", 0); - { - static PyObject **__pyx_pyargnames[] = {&__pyx_n_s_self,&__pyx_n_s_fp_database,&__pyx_n_s_config,0}; - PyObject* values[3] = {0,0,0}; - values[1] = ((PyObject *)((PyObject *)Py_None)); - values[2] = ((PyObject *)((PyObject *)Py_None)); - if (unlikely(__pyx_kwds)) { - Py_ssize_t kw_args; - const Py_ssize_t pos_args = PyTuple_GET_SIZE(__pyx_args); - switch (pos_args) { - case 3: values[2] = PyTuple_GET_ITEM(__pyx_args, 2); - CYTHON_FALLTHROUGH; - case 2: values[1] = PyTuple_GET_ITEM(__pyx_args, 1); - CYTHON_FALLTHROUGH; - case 1: values[0] = PyTuple_GET_ITEM(__pyx_args, 0); - CYTHON_FALLTHROUGH; - case 0: break; - default: goto __pyx_L5_argtuple_error; - } - kw_args = PyDict_Size(__pyx_kwds); - switch (pos_args) { - case 0: - if (likely((values[0] = __Pyx_PyDict_GetItemStr(__pyx_kwds, __pyx_n_s_self)) != 0)) kw_args--; - else goto __pyx_L5_argtuple_error; - CYTHON_FALLTHROUGH; - case 1: - if (kw_args > 0) { - PyObject* value = __Pyx_PyDict_GetItemStr(__pyx_kwds, __pyx_n_s_fp_database); - if (value) { values[1] = value; kw_args--; } - } - CYTHON_FALLTHROUGH; - case 2: - if (kw_args > 0) { - PyObject* value = __Pyx_PyDict_GetItemStr(__pyx_kwds, __pyx_n_s_config); - if (value) { values[2] = value; kw_args--; } - } - } - if (unlikely(kw_args > 0)) { - if (unlikely(__Pyx_ParseOptionalKeywords(__pyx_kwds, __pyx_pyargnames, 0, values, pos_args, "__init__") < 0)) __PYX_ERR(0, 33, __pyx_L3_error) - } - } else { - switch (PyTuple_GET_SIZE(__pyx_args)) { - case 3: values[2] = PyTuple_GET_ITEM(__pyx_args, 2); - CYTHON_FALLTHROUGH; - case 2: values[1] = PyTuple_GET_ITEM(__pyx_args, 1); - CYTHON_FALLTHROUGH; - case 1: values[0] = PyTuple_GET_ITEM(__pyx_args, 0); - break; - default: goto __pyx_L5_argtuple_error; - } - } - __pyx_v_self = values[0]; - __pyx_v_fp_database = values[1]; - __pyx_v_config = values[2]; - } - goto __pyx_L4_argument_unpacking_done; - __pyx_L5_argtuple_error:; - __Pyx_RaiseArgtupleInvalid("__init__", 0, 1, 3, PyTuple_GET_SIZE(__pyx_args)); __PYX_ERR(0, 33, __pyx_L3_error) - __pyx_L3_error:; - __Pyx_AddTraceback("pmercury.protocols.tls_server.TLS_Server.__init__", __pyx_clineno, __pyx_lineno, __pyx_filename); - __Pyx_RefNannyFinishContext(); - return NULL; - __pyx_L4_argument_unpacking_done:; - __pyx_r = __pyx_pf_8pmercury_9protocols_10tls_server_10TLS_Server___init__(__pyx_self, __pyx_v_self, __pyx_v_fp_database, __pyx_v_config); - - /* function exit code */ - __Pyx_RefNannyFinishContext(); - return __pyx_r; -} - -static PyObject *__pyx_pf_8pmercury_9protocols_10tls_server_10TLS_Server___init__(CYTHON_UNUSED PyObject *__pyx_self, PyObject *__pyx_v_self, CYTHON_UNUSED PyObject *__pyx_v_fp_database, CYTHON_UNUSED PyObject *__pyx_v_config) { - PyObject *__pyx_r = NULL; - __Pyx_RefNannyDeclarations - PyObject *__pyx_t_1 = NULL; - __Pyx_RefNannySetupContext("__init__", 0); - - /* "pmercury/protocols/tls_server.pyx":35 - * def __init__(self, fp_database=None, config=None): - * # populate fingerprint databases - * self.fp_db = {} # <<<<<<<<<<<<<< - * - * - */ - __pyx_t_1 = __Pyx_PyDict_NewPresized(0); if (unlikely(!__pyx_t_1)) __PYX_ERR(0, 35, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_1); - if (__Pyx_PyObject_SetAttrStr(__pyx_v_self, __pyx_n_s_fp_db, __pyx_t_1) < 0) __PYX_ERR(0, 35, __pyx_L1_error) - __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0; - - /* "pmercury/protocols/tls_server.pyx":33 - * class TLS_Server(Protocol): - * - * def __init__(self, fp_database=None, config=None): # <<<<<<<<<<<<<< - * # populate fingerprint databases - * self.fp_db = {} - */ - - /* function exit code */ - __pyx_r = Py_None; __Pyx_INCREF(Py_None); - goto __pyx_L0; - __pyx_L1_error:; - __Pyx_XDECREF(__pyx_t_1); - __Pyx_AddTraceback("pmercury.protocols.tls_server.TLS_Server.__init__", __pyx_clineno, __pyx_lineno, __pyx_filename); - __pyx_r = NULL; - __pyx_L0:; - __Pyx_XGIVEREF(__pyx_r); - __Pyx_RefNannyFinishContext(); - return __pyx_r; -} - -/* "pmercury/protocols/tls_server.pyx":39 - * - * @staticmethod - * def proto_identify(data, offset, data_len): # <<<<<<<<<<<<<< - * if data_len-offset < 16: - * return False - */ - -/* Python wrapper */ -static PyObject *__pyx_pw_8pmercury_9protocols_10tls_server_10TLS_Server_3proto_identify(PyObject *__pyx_self, PyObject *__pyx_args, PyObject *__pyx_kwds); /*proto*/ -static PyMethodDef __pyx_mdef_8pmercury_9protocols_10tls_server_10TLS_Server_3proto_identify = {"proto_identify", (PyCFunction)(void*)(PyCFunctionWithKeywords)__pyx_pw_8pmercury_9protocols_10tls_server_10TLS_Server_3proto_identify, METH_VARARGS|METH_KEYWORDS, 0}; -static PyObject *__pyx_pw_8pmercury_9protocols_10tls_server_10TLS_Server_3proto_identify(PyObject *__pyx_self, PyObject *__pyx_args, PyObject *__pyx_kwds) { - PyObject *__pyx_v_data = 0; - PyObject *__pyx_v_offset = 0; - PyObject *__pyx_v_data_len = 0; - PyObject *__pyx_r = 0; - __Pyx_RefNannyDeclarations - __Pyx_RefNannySetupContext("proto_identify (wrapper)", 0); - { - static PyObject **__pyx_pyargnames[] = {&__pyx_n_s_data,&__pyx_n_s_offset,&__pyx_n_s_data_len,0}; - PyObject* values[3] = {0,0,0}; - if (unlikely(__pyx_kwds)) { - Py_ssize_t kw_args; - const Py_ssize_t pos_args = PyTuple_GET_SIZE(__pyx_args); - switch (pos_args) { - case 3: values[2] = PyTuple_GET_ITEM(__pyx_args, 2); - CYTHON_FALLTHROUGH; - case 2: values[1] = PyTuple_GET_ITEM(__pyx_args, 1); - CYTHON_FALLTHROUGH; - case 1: values[0] = PyTuple_GET_ITEM(__pyx_args, 0); - CYTHON_FALLTHROUGH; - case 0: break; - default: goto __pyx_L5_argtuple_error; - } - kw_args = PyDict_Size(__pyx_kwds); - switch (pos_args) { - case 0: - if (likely((values[0] = __Pyx_PyDict_GetItemStr(__pyx_kwds, __pyx_n_s_data)) != 0)) kw_args--; - else goto __pyx_L5_argtuple_error; - CYTHON_FALLTHROUGH; - case 1: - if (likely((values[1] = __Pyx_PyDict_GetItemStr(__pyx_kwds, __pyx_n_s_offset)) != 0)) kw_args--; - else { - __Pyx_RaiseArgtupleInvalid("proto_identify", 1, 3, 3, 1); __PYX_ERR(0, 39, __pyx_L3_error) - } - CYTHON_FALLTHROUGH; - case 2: - if (likely((values[2] = __Pyx_PyDict_GetItemStr(__pyx_kwds, __pyx_n_s_data_len)) != 0)) kw_args--; - else { - __Pyx_RaiseArgtupleInvalid("proto_identify", 1, 3, 3, 2); __PYX_ERR(0, 39, __pyx_L3_error) - } - } - if (unlikely(kw_args > 0)) { - if (unlikely(__Pyx_ParseOptionalKeywords(__pyx_kwds, __pyx_pyargnames, 0, values, pos_args, "proto_identify") < 0)) __PYX_ERR(0, 39, __pyx_L3_error) - } - } else if (PyTuple_GET_SIZE(__pyx_args) != 3) { - goto __pyx_L5_argtuple_error; - } else { - values[0] = PyTuple_GET_ITEM(__pyx_args, 0); - values[1] = PyTuple_GET_ITEM(__pyx_args, 1); - values[2] = PyTuple_GET_ITEM(__pyx_args, 2); - } - __pyx_v_data = values[0]; - __pyx_v_offset = values[1]; - __pyx_v_data_len = values[2]; - } - goto __pyx_L4_argument_unpacking_done; - __pyx_L5_argtuple_error:; - __Pyx_RaiseArgtupleInvalid("proto_identify", 1, 3, 3, PyTuple_GET_SIZE(__pyx_args)); __PYX_ERR(0, 39, __pyx_L3_error) - __pyx_L3_error:; - __Pyx_AddTraceback("pmercury.protocols.tls_server.TLS_Server.proto_identify", __pyx_clineno, __pyx_lineno, __pyx_filename); - __Pyx_RefNannyFinishContext(); - return NULL; - __pyx_L4_argument_unpacking_done:; - __pyx_r = __pyx_pf_8pmercury_9protocols_10tls_server_10TLS_Server_2proto_identify(__pyx_self, __pyx_v_data, __pyx_v_offset, __pyx_v_data_len); - - /* function exit code */ - __Pyx_RefNannyFinishContext(); - return __pyx_r; -} - -static PyObject *__pyx_pf_8pmercury_9protocols_10tls_server_10TLS_Server_2proto_identify(CYTHON_UNUSED PyObject *__pyx_self, PyObject *__pyx_v_data, PyObject *__pyx_v_offset, PyObject *__pyx_v_data_len) { - PyObject *__pyx_r = NULL; - __Pyx_RefNannyDeclarations - PyObject *__pyx_t_1 = NULL; - PyObject *__pyx_t_2 = NULL; - int __pyx_t_3; - int __pyx_t_4; - __Pyx_RefNannySetupContext("proto_identify", 0); - - /* "pmercury/protocols/tls_server.pyx":40 - * @staticmethod - * def proto_identify(data, offset, data_len): - * if data_len-offset < 16: # <<<<<<<<<<<<<< - * return False - * if (data[offset] == 22 and - */ - __pyx_t_1 = PyNumber_Subtract(__pyx_v_data_len, __pyx_v_offset); if (unlikely(!__pyx_t_1)) __PYX_ERR(0, 40, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_1); - __pyx_t_2 = PyObject_RichCompare(__pyx_t_1, __pyx_int_16, Py_LT); __Pyx_XGOTREF(__pyx_t_2); if (unlikely(!__pyx_t_2)) __PYX_ERR(0, 40, __pyx_L1_error) - __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0; - __pyx_t_3 = __Pyx_PyObject_IsTrue(__pyx_t_2); if (unlikely(__pyx_t_3 < 0)) __PYX_ERR(0, 40, __pyx_L1_error) - __Pyx_DECREF(__pyx_t_2); __pyx_t_2 = 0; - if (__pyx_t_3) { - - /* "pmercury/protocols/tls_server.pyx":41 - * def proto_identify(data, offset, data_len): - * if data_len-offset < 16: - * return False # <<<<<<<<<<<<<< - * if (data[offset] == 22 and - * data[offset+1] == 3 and - */ - __Pyx_XDECREF(__pyx_r); - __Pyx_INCREF(Py_False); - __pyx_r = Py_False; - goto __pyx_L0; - - /* "pmercury/protocols/tls_server.pyx":40 - * @staticmethod - * def proto_identify(data, offset, data_len): - * if data_len-offset < 16: # <<<<<<<<<<<<<< - * return False - * if (data[offset] == 22 and - */ - } - - /* "pmercury/protocols/tls_server.pyx":42 - * if data_len-offset < 16: - * return False - * if (data[offset] == 22 and # <<<<<<<<<<<<<< - * data[offset+1] == 3 and - * data[offset+2] <= 3 and - */ - __pyx_t_2 = __Pyx_PyObject_GetItem(__pyx_v_data, __pyx_v_offset); if (unlikely(!__pyx_t_2)) __PYX_ERR(0, 42, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_2); - __pyx_t_1 = __Pyx_PyInt_EqObjC(__pyx_t_2, __pyx_int_22, 22, 0); if (unlikely(!__pyx_t_1)) __PYX_ERR(0, 42, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_1); - __Pyx_DECREF(__pyx_t_2); __pyx_t_2 = 0; - __pyx_t_4 = __Pyx_PyObject_IsTrue(__pyx_t_1); if (unlikely(__pyx_t_4 < 0)) __PYX_ERR(0, 42, __pyx_L1_error) - __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0; - if (__pyx_t_4) { - } else { - __pyx_t_3 = __pyx_t_4; - goto __pyx_L5_bool_binop_done; - } - - /* "pmercury/protocols/tls_server.pyx":43 - * return False - * if (data[offset] == 22 and - * data[offset+1] == 3 and # <<<<<<<<<<<<<< - * data[offset+2] <= 3 and - * data[offset+5] == 2 and - */ - __pyx_t_1 = __Pyx_PyInt_AddObjC(__pyx_v_offset, __pyx_int_1, 1, 0, 0); if (unlikely(!__pyx_t_1)) __PYX_ERR(0, 43, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_1); - __pyx_t_2 = __Pyx_PyObject_GetItem(__pyx_v_data, __pyx_t_1); if (unlikely(!__pyx_t_2)) __PYX_ERR(0, 43, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_2); - __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0; - __pyx_t_1 = __Pyx_PyInt_EqObjC(__pyx_t_2, __pyx_int_3, 3, 0); if (unlikely(!__pyx_t_1)) __PYX_ERR(0, 43, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_1); - __Pyx_DECREF(__pyx_t_2); __pyx_t_2 = 0; - __pyx_t_4 = __Pyx_PyObject_IsTrue(__pyx_t_1); if (unlikely(__pyx_t_4 < 0)) __PYX_ERR(0, 43, __pyx_L1_error) - __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0; - if (__pyx_t_4) { - } else { - __pyx_t_3 = __pyx_t_4; - goto __pyx_L5_bool_binop_done; - } - - /* "pmercury/protocols/tls_server.pyx":44 - * if (data[offset] == 22 and - * data[offset+1] == 3 and - * data[offset+2] <= 3 and # <<<<<<<<<<<<<< - * data[offset+5] == 2 and - * data[offset+9] == 3 and - */ - __pyx_t_1 = __Pyx_PyInt_AddObjC(__pyx_v_offset, __pyx_int_2, 2, 0, 0); if (unlikely(!__pyx_t_1)) __PYX_ERR(0, 44, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_1); - __pyx_t_2 = __Pyx_PyObject_GetItem(__pyx_v_data, __pyx_t_1); if (unlikely(!__pyx_t_2)) __PYX_ERR(0, 44, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_2); - __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0; - __pyx_t_1 = PyObject_RichCompare(__pyx_t_2, __pyx_int_3, Py_LE); __Pyx_XGOTREF(__pyx_t_1); if (unlikely(!__pyx_t_1)) __PYX_ERR(0, 44, __pyx_L1_error) - __Pyx_DECREF(__pyx_t_2); __pyx_t_2 = 0; - __pyx_t_4 = __Pyx_PyObject_IsTrue(__pyx_t_1); if (unlikely(__pyx_t_4 < 0)) __PYX_ERR(0, 44, __pyx_L1_error) - __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0; - if (__pyx_t_4) { - } else { - __pyx_t_3 = __pyx_t_4; - goto __pyx_L5_bool_binop_done; - } - - /* "pmercury/protocols/tls_server.pyx":45 - * data[offset+1] == 3 and - * data[offset+2] <= 3 and - * data[offset+5] == 2 and # <<<<<<<<<<<<<< - * data[offset+9] == 3 and - * data[offset+10] <= 3): - */ - __pyx_t_1 = __Pyx_PyInt_AddObjC(__pyx_v_offset, __pyx_int_5, 5, 0, 0); if (unlikely(!__pyx_t_1)) __PYX_ERR(0, 45, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_1); - __pyx_t_2 = __Pyx_PyObject_GetItem(__pyx_v_data, __pyx_t_1); if (unlikely(!__pyx_t_2)) __PYX_ERR(0, 45, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_2); - __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0; - __pyx_t_1 = __Pyx_PyInt_EqObjC(__pyx_t_2, __pyx_int_2, 2, 0); if (unlikely(!__pyx_t_1)) __PYX_ERR(0, 45, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_1); - __Pyx_DECREF(__pyx_t_2); __pyx_t_2 = 0; - __pyx_t_4 = __Pyx_PyObject_IsTrue(__pyx_t_1); if (unlikely(__pyx_t_4 < 0)) __PYX_ERR(0, 45, __pyx_L1_error) - __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0; - if (__pyx_t_4) { - } else { - __pyx_t_3 = __pyx_t_4; - goto __pyx_L5_bool_binop_done; - } - - /* "pmercury/protocols/tls_server.pyx":46 - * data[offset+2] <= 3 and - * data[offset+5] == 2 and - * data[offset+9] == 3 and # <<<<<<<<<<<<<< - * data[offset+10] <= 3): - * return True - */ - __pyx_t_1 = __Pyx_PyInt_AddObjC(__pyx_v_offset, __pyx_int_9, 9, 0, 0); if (unlikely(!__pyx_t_1)) __PYX_ERR(0, 46, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_1); - __pyx_t_2 = __Pyx_PyObject_GetItem(__pyx_v_data, __pyx_t_1); if (unlikely(!__pyx_t_2)) __PYX_ERR(0, 46, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_2); - __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0; - __pyx_t_1 = __Pyx_PyInt_EqObjC(__pyx_t_2, __pyx_int_3, 3, 0); if (unlikely(!__pyx_t_1)) __PYX_ERR(0, 46, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_1); - __Pyx_DECREF(__pyx_t_2); __pyx_t_2 = 0; - __pyx_t_4 = __Pyx_PyObject_IsTrue(__pyx_t_1); if (unlikely(__pyx_t_4 < 0)) __PYX_ERR(0, 46, __pyx_L1_error) - __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0; - if (__pyx_t_4) { - } else { - __pyx_t_3 = __pyx_t_4; - goto __pyx_L5_bool_binop_done; - } - - /* "pmercury/protocols/tls_server.pyx":47 - * data[offset+5] == 2 and - * data[offset+9] == 3 and - * data[offset+10] <= 3): # <<<<<<<<<<<<<< - * return True - * return False - */ - __pyx_t_1 = __Pyx_PyInt_AddObjC(__pyx_v_offset, __pyx_int_10, 10, 0, 0); if (unlikely(!__pyx_t_1)) __PYX_ERR(0, 47, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_1); - __pyx_t_2 = __Pyx_PyObject_GetItem(__pyx_v_data, __pyx_t_1); if (unlikely(!__pyx_t_2)) __PYX_ERR(0, 47, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_2); - __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0; - __pyx_t_1 = PyObject_RichCompare(__pyx_t_2, __pyx_int_3, Py_LE); __Pyx_XGOTREF(__pyx_t_1); if (unlikely(!__pyx_t_1)) __PYX_ERR(0, 47, __pyx_L1_error) - __Pyx_DECREF(__pyx_t_2); __pyx_t_2 = 0; - __pyx_t_4 = __Pyx_PyObject_IsTrue(__pyx_t_1); if (unlikely(__pyx_t_4 < 0)) __PYX_ERR(0, 47, __pyx_L1_error) - __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0; - __pyx_t_3 = __pyx_t_4; - __pyx_L5_bool_binop_done:; - - /* "pmercury/protocols/tls_server.pyx":42 - * if data_len-offset < 16: - * return False - * if (data[offset] == 22 and # <<<<<<<<<<<<<< - * data[offset+1] == 3 and - * data[offset+2] <= 3 and - */ - if (__pyx_t_3) { - - /* "pmercury/protocols/tls_server.pyx":48 - * data[offset+9] == 3 and - * data[offset+10] <= 3): - * return True # <<<<<<<<<<<<<< - * return False - * - */ - __Pyx_XDECREF(__pyx_r); - __Pyx_INCREF(Py_True); - __pyx_r = Py_True; - goto __pyx_L0; - - /* "pmercury/protocols/tls_server.pyx":42 - * if data_len-offset < 16: - * return False - * if (data[offset] == 22 and # <<<<<<<<<<<<<< - * data[offset+1] == 3 and - * data[offset+2] <= 3 and - */ - } - - /* "pmercury/protocols/tls_server.pyx":49 - * data[offset+10] <= 3): - * return True - * return False # <<<<<<<<<<<<<< - * - * - */ - __Pyx_XDECREF(__pyx_r); - __Pyx_INCREF(Py_False); - __pyx_r = Py_False; - goto __pyx_L0; - - /* "pmercury/protocols/tls_server.pyx":39 - * - * @staticmethod - * def proto_identify(data, offset, data_len): # <<<<<<<<<<<<<< - * if data_len-offset < 16: - * return False - */ - - /* function exit code */ - __pyx_L1_error:; - __Pyx_XDECREF(__pyx_t_1); - __Pyx_XDECREF(__pyx_t_2); - __Pyx_AddTraceback("pmercury.protocols.tls_server.TLS_Server.proto_identify", __pyx_clineno, __pyx_lineno, __pyx_filename); - __pyx_r = NULL; - __pyx_L0:; - __Pyx_XGIVEREF(__pyx_r); - __Pyx_RefNannyFinishContext(); - return __pyx_r; -} - -/* "pmercury/protocols/tls_server.pyx":53 - * - * @staticmethod - * def fingerprint(bytes data, unsigned int offset, unsigned int data_len): # <<<<<<<<<<<<<< - * cdef unsigned char *buf = data - * offset += 5 - */ - -/* Python wrapper */ -static PyObject *__pyx_pw_8pmercury_9protocols_10tls_server_10TLS_Server_5fingerprint(PyObject *__pyx_self, PyObject *__pyx_args, PyObject *__pyx_kwds); /*proto*/ -static PyMethodDef __pyx_mdef_8pmercury_9protocols_10tls_server_10TLS_Server_5fingerprint = {"fingerprint", (PyCFunction)(void*)(PyCFunctionWithKeywords)__pyx_pw_8pmercury_9protocols_10tls_server_10TLS_Server_5fingerprint, METH_VARARGS|METH_KEYWORDS, 0}; -static PyObject *__pyx_pw_8pmercury_9protocols_10tls_server_10TLS_Server_5fingerprint(PyObject *__pyx_self, PyObject *__pyx_args, PyObject *__pyx_kwds) { - PyObject *__pyx_v_data = 0; - unsigned int __pyx_v_offset; - unsigned int __pyx_v_data_len; - PyObject *__pyx_r = 0; - __Pyx_RefNannyDeclarations - __Pyx_RefNannySetupContext("fingerprint (wrapper)", 0); - { - static PyObject **__pyx_pyargnames[] = {&__pyx_n_s_data,&__pyx_n_s_offset,&__pyx_n_s_data_len,0}; - PyObject* values[3] = {0,0,0}; - if (unlikely(__pyx_kwds)) { - Py_ssize_t kw_args; - const Py_ssize_t pos_args = PyTuple_GET_SIZE(__pyx_args); - switch (pos_args) { - case 3: values[2] = PyTuple_GET_ITEM(__pyx_args, 2); - CYTHON_FALLTHROUGH; - case 2: values[1] = PyTuple_GET_ITEM(__pyx_args, 1); - CYTHON_FALLTHROUGH; - case 1: values[0] = PyTuple_GET_ITEM(__pyx_args, 0); - CYTHON_FALLTHROUGH; - case 0: break; - default: goto __pyx_L5_argtuple_error; - } - kw_args = PyDict_Size(__pyx_kwds); - switch (pos_args) { - case 0: - if (likely((values[0] = __Pyx_PyDict_GetItemStr(__pyx_kwds, __pyx_n_s_data)) != 0)) kw_args--; - else goto __pyx_L5_argtuple_error; - CYTHON_FALLTHROUGH; - case 1: - if (likely((values[1] = __Pyx_PyDict_GetItemStr(__pyx_kwds, __pyx_n_s_offset)) != 0)) kw_args--; - else { - __Pyx_RaiseArgtupleInvalid("fingerprint", 1, 3, 3, 1); __PYX_ERR(0, 53, __pyx_L3_error) - } - CYTHON_FALLTHROUGH; - case 2: - if (likely((values[2] = __Pyx_PyDict_GetItemStr(__pyx_kwds, __pyx_n_s_data_len)) != 0)) kw_args--; - else { - __Pyx_RaiseArgtupleInvalid("fingerprint", 1, 3, 3, 2); __PYX_ERR(0, 53, __pyx_L3_error) - } - } - if (unlikely(kw_args > 0)) { - if (unlikely(__Pyx_ParseOptionalKeywords(__pyx_kwds, __pyx_pyargnames, 0, values, pos_args, "fingerprint") < 0)) __PYX_ERR(0, 53, __pyx_L3_error) - } - } else if (PyTuple_GET_SIZE(__pyx_args) != 3) { - goto __pyx_L5_argtuple_error; - } else { - values[0] = PyTuple_GET_ITEM(__pyx_args, 0); - values[1] = PyTuple_GET_ITEM(__pyx_args, 1); - values[2] = PyTuple_GET_ITEM(__pyx_args, 2); - } - __pyx_v_data = ((PyObject*)values[0]); - __pyx_v_offset = __Pyx_PyInt_As_unsigned_int(values[1]); if (unlikely((__pyx_v_offset == (unsigned int)-1) && PyErr_Occurred())) __PYX_ERR(0, 53, __pyx_L3_error) - __pyx_v_data_len = __Pyx_PyInt_As_unsigned_int(values[2]); if (unlikely((__pyx_v_data_len == (unsigned int)-1) && PyErr_Occurred())) __PYX_ERR(0, 53, __pyx_L3_error) - } - goto __pyx_L4_argument_unpacking_done; - __pyx_L5_argtuple_error:; - __Pyx_RaiseArgtupleInvalid("fingerprint", 1, 3, 3, PyTuple_GET_SIZE(__pyx_args)); __PYX_ERR(0, 53, __pyx_L3_error) - __pyx_L3_error:; - __Pyx_AddTraceback("pmercury.protocols.tls_server.TLS_Server.fingerprint", __pyx_clineno, __pyx_lineno, __pyx_filename); - __Pyx_RefNannyFinishContext(); - return NULL; - __pyx_L4_argument_unpacking_done:; - if (unlikely(!__Pyx_ArgTypeTest(((PyObject *)__pyx_v_data), (&PyBytes_Type), 1, "data", 1))) __PYX_ERR(0, 53, __pyx_L1_error) - __pyx_r = __pyx_pf_8pmercury_9protocols_10tls_server_10TLS_Server_4fingerprint(__pyx_self, __pyx_v_data, __pyx_v_offset, __pyx_v_data_len); - - /* function exit code */ - goto __pyx_L0; - __pyx_L1_error:; - __pyx_r = NULL; - __pyx_L0:; - __Pyx_RefNannyFinishContext(); - return __pyx_r; -} - -static PyObject *__pyx_pf_8pmercury_9protocols_10tls_server_10TLS_Server_4fingerprint(CYTHON_UNUSED PyObject *__pyx_self, PyObject *__pyx_v_data, unsigned int __pyx_v_offset, unsigned int __pyx_v_data_len) { - unsigned char *__pyx_v_buf; - int __pyx_v_record_length; - PyObject *__pyx_v_fp_ = 0; - unsigned int __pyx_v_session_id_length; - CYTHON_UNUSED unsigned int __pyx_v_compression_method; - unsigned int __pyx_v_ext_total_len; - PyObject *__pyx_v_tmp_fp_ext = 0; - unsigned int __pyx_v_ext_len; - PyObject *__pyx_r = NULL; - __Pyx_RefNannyDeclarations - unsigned char *__pyx_t_1; - PyObject *__pyx_t_2 = NULL; - PyObject *__pyx_t_3 = NULL; - PyObject *__pyx_t_4 = NULL; - int __pyx_t_5; - Py_ssize_t __pyx_t_6; - Py_UCS4 __pyx_t_7; - int __pyx_t_8; - int __pyx_t_9; - PyObject *__pyx_t_10 = NULL; - PyObject *__pyx_t_11 = NULL; - PyObject *(*__pyx_t_12)(PyObject *); - unsigned int __pyx_t_13; - unsigned int __pyx_t_14; - __Pyx_RefNannySetupContext("fingerprint", 0); - - /* "pmercury/protocols/tls_server.pyx":54 - * @staticmethod - * def fingerprint(bytes data, unsigned int offset, unsigned int data_len): - * cdef unsigned char *buf = data # <<<<<<<<<<<<<< - * offset += 5 - * - */ - if (unlikely(__pyx_v_data == Py_None)) { - PyErr_SetString(PyExc_TypeError, "expected bytes, NoneType found"); - __PYX_ERR(0, 54, __pyx_L1_error) - } - __pyx_t_1 = __Pyx_PyBytes_AsWritableUString(__pyx_v_data); if (unlikely((!__pyx_t_1) && PyErr_Occurred())) __PYX_ERR(0, 54, __pyx_L1_error) - __pyx_v_buf = __pyx_t_1; - - /* "pmercury/protocols/tls_server.pyx":55 - * def fingerprint(bytes data, unsigned int offset, unsigned int data_len): - * cdef unsigned char *buf = data - * offset += 5 # <<<<<<<<<<<<<< - * - * # get record length - */ - __pyx_v_offset = (__pyx_v_offset + 5); - - /* "pmercury/protocols/tls_server.pyx":58 - * - * # get record length - * cdef int record_length = int(data[offset+1:offset+4].hex(),16) # <<<<<<<<<<<<<< - * - * # extract handshake version - */ - if (unlikely(__pyx_v_data == Py_None)) { - PyErr_SetString(PyExc_TypeError, "'NoneType' object is not subscriptable"); - __PYX_ERR(0, 58, __pyx_L1_error) - } - __pyx_t_3 = PySequence_GetSlice(__pyx_v_data, (__pyx_v_offset + 1), (__pyx_v_offset + 4)); if (unlikely(!__pyx_t_3)) __PYX_ERR(0, 58, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_3); - __pyx_t_4 = __Pyx_PyObject_GetAttrStr(__pyx_t_3, __pyx_n_s_hex); if (unlikely(!__pyx_t_4)) __PYX_ERR(0, 58, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_4); - __Pyx_DECREF(__pyx_t_3); __pyx_t_3 = 0; - __pyx_t_3 = NULL; - if (CYTHON_UNPACK_METHODS && likely(PyMethod_Check(__pyx_t_4))) { - __pyx_t_3 = PyMethod_GET_SELF(__pyx_t_4); - if (likely(__pyx_t_3)) { - PyObject* function = PyMethod_GET_FUNCTION(__pyx_t_4); - __Pyx_INCREF(__pyx_t_3); - __Pyx_INCREF(function); - __Pyx_DECREF_SET(__pyx_t_4, function); - } - } - __pyx_t_2 = (__pyx_t_3) ? __Pyx_PyObject_CallOneArg(__pyx_t_4, __pyx_t_3) : __Pyx_PyObject_CallNoArg(__pyx_t_4); - __Pyx_XDECREF(__pyx_t_3); __pyx_t_3 = 0; - if (unlikely(!__pyx_t_2)) __PYX_ERR(0, 58, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_2); - __Pyx_DECREF(__pyx_t_4); __pyx_t_4 = 0; - __pyx_t_4 = PyTuple_New(2); if (unlikely(!__pyx_t_4)) __PYX_ERR(0, 58, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_4); - __Pyx_GIVEREF(__pyx_t_2); - PyTuple_SET_ITEM(__pyx_t_4, 0, __pyx_t_2); - __Pyx_INCREF(__pyx_int_16); - __Pyx_GIVEREF(__pyx_int_16); - PyTuple_SET_ITEM(__pyx_t_4, 1, __pyx_int_16); - __pyx_t_2 = 0; - __pyx_t_2 = __Pyx_PyObject_Call(((PyObject *)(&PyInt_Type)), __pyx_t_4, NULL); if (unlikely(!__pyx_t_2)) __PYX_ERR(0, 58, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_2); - __Pyx_DECREF(__pyx_t_4); __pyx_t_4 = 0; - __pyx_t_5 = __Pyx_PyInt_As_int(__pyx_t_2); if (unlikely((__pyx_t_5 == (int)-1) && PyErr_Occurred())) __PYX_ERR(0, 58, __pyx_L1_error) - __Pyx_DECREF(__pyx_t_2); __pyx_t_2 = 0; - __pyx_v_record_length = __pyx_t_5; - - /* "pmercury/protocols/tls_server.pyx":61 - * - * # extract handshake version - * cdef str fp_ = f'({buf[offset+4]:02x}{buf[offset+5]:02x})' # <<<<<<<<<<<<<< - * - * # skip header/server_random - */ - __pyx_t_2 = PyTuple_New(4); if (unlikely(!__pyx_t_2)) __PYX_ERR(0, 61, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_2); - __pyx_t_6 = 0; - __pyx_t_7 = 127; - __Pyx_INCREF(__pyx_kp_u_); - __pyx_t_6 += 1; - __Pyx_GIVEREF(__pyx_kp_u_); - PyTuple_SET_ITEM(__pyx_t_2, 0, __pyx_kp_u_); - __pyx_t_4 = __Pyx_PyUnicode_From_unsigned_char((__pyx_v_buf[(__pyx_v_offset + 4)]), 2, '0', 'x'); if (unlikely(!__pyx_t_4)) __PYX_ERR(0, 61, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_4); - __pyx_t_6 += __Pyx_PyUnicode_GET_LENGTH(__pyx_t_4); - __Pyx_GIVEREF(__pyx_t_4); - PyTuple_SET_ITEM(__pyx_t_2, 1, __pyx_t_4); - __pyx_t_4 = 0; - __pyx_t_4 = __Pyx_PyUnicode_From_unsigned_char((__pyx_v_buf[(__pyx_v_offset + 5)]), 2, '0', 'x'); if (unlikely(!__pyx_t_4)) __PYX_ERR(0, 61, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_4); - __pyx_t_6 += __Pyx_PyUnicode_GET_LENGTH(__pyx_t_4); - __Pyx_GIVEREF(__pyx_t_4); - PyTuple_SET_ITEM(__pyx_t_2, 2, __pyx_t_4); - __pyx_t_4 = 0; - __Pyx_INCREF(__pyx_kp_u__2); - __pyx_t_6 += 1; - __Pyx_GIVEREF(__pyx_kp_u__2); - PyTuple_SET_ITEM(__pyx_t_2, 3, __pyx_kp_u__2); - __pyx_t_4 = __Pyx_PyUnicode_Join(__pyx_t_2, 4, __pyx_t_6, __pyx_t_7); if (unlikely(!__pyx_t_4)) __PYX_ERR(0, 61, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_4); - __Pyx_DECREF(__pyx_t_2); __pyx_t_2 = 0; - __pyx_v_fp_ = ((PyObject*)__pyx_t_4); - __pyx_t_4 = 0; - - /* "pmercury/protocols/tls_server.pyx":64 - * - * # skip header/server_random - * offset += 38 # <<<<<<<<<<<<<< - * record_length -= 34 - * - */ - __pyx_v_offset = (__pyx_v_offset + 38); - - /* "pmercury/protocols/tls_server.pyx":65 - * # skip header/server_random - * offset += 38 - * record_length -= 34 # <<<<<<<<<<<<<< - * - * # parse/skip session_id - */ - __pyx_v_record_length = (__pyx_v_record_length - 34); - - /* "pmercury/protocols/tls_server.pyx":68 - * - * # parse/skip session_id - * cdef unsigned int session_id_length = buf[offset] # <<<<<<<<<<<<<< - * offset += 1 + session_id_length - * record_length -= 1 + session_id_length - */ - __pyx_v_session_id_length = (__pyx_v_buf[__pyx_v_offset]); - - /* "pmercury/protocols/tls_server.pyx":69 - * # parse/skip session_id - * cdef unsigned int session_id_length = buf[offset] - * offset += 1 + session_id_length # <<<<<<<<<<<<<< - * record_length -= 1 + session_id_length - * if offset >= data_len: - */ - __pyx_v_offset = (__pyx_v_offset + (1 + __pyx_v_session_id_length)); - - /* "pmercury/protocols/tls_server.pyx":70 - * cdef unsigned int session_id_length = buf[offset] - * offset += 1 + session_id_length - * record_length -= 1 + session_id_length # <<<<<<<<<<<<<< - * if offset >= data_len: - * return None, None - */ - __pyx_v_record_length = (__pyx_v_record_length - (1 + __pyx_v_session_id_length)); - - /* "pmercury/protocols/tls_server.pyx":71 - * offset += 1 + session_id_length - * record_length -= 1 + session_id_length - * if offset >= data_len: # <<<<<<<<<<<<<< - * return None, None - * - */ - __pyx_t_8 = ((__pyx_v_offset >= __pyx_v_data_len) != 0); - if (__pyx_t_8) { - - /* "pmercury/protocols/tls_server.pyx":72 - * record_length -= 1 + session_id_length - * if offset >= data_len: - * return None, None # <<<<<<<<<<<<<< - * - * # parse selected_cipher_suite - */ - __Pyx_XDECREF(__pyx_r); - __Pyx_INCREF(__pyx_tuple__3); - __pyx_r = __pyx_tuple__3; - goto __pyx_L0; - - /* "pmercury/protocols/tls_server.pyx":71 - * offset += 1 + session_id_length - * record_length -= 1 + session_id_length - * if offset >= data_len: # <<<<<<<<<<<<<< - * return None, None - * - */ - } - - /* "pmercury/protocols/tls_server.pyx":75 - * - * # parse selected_cipher_suite - * fp_ += f'({buf[offset]:02x}{buf[offset+1]:02x})' # <<<<<<<<<<<<<< - * offset += 2 - * if offset >= data_len: - */ - __pyx_t_4 = PyTuple_New(4); if (unlikely(!__pyx_t_4)) __PYX_ERR(0, 75, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_4); - __pyx_t_6 = 0; - __pyx_t_7 = 127; - __Pyx_INCREF(__pyx_kp_u_); - __pyx_t_6 += 1; - __Pyx_GIVEREF(__pyx_kp_u_); - PyTuple_SET_ITEM(__pyx_t_4, 0, __pyx_kp_u_); - __pyx_t_2 = __Pyx_PyUnicode_From_unsigned_char((__pyx_v_buf[__pyx_v_offset]), 2, '0', 'x'); if (unlikely(!__pyx_t_2)) __PYX_ERR(0, 75, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_2); - __pyx_t_6 += __Pyx_PyUnicode_GET_LENGTH(__pyx_t_2); - __Pyx_GIVEREF(__pyx_t_2); - PyTuple_SET_ITEM(__pyx_t_4, 1, __pyx_t_2); - __pyx_t_2 = 0; - __pyx_t_2 = __Pyx_PyUnicode_From_unsigned_char((__pyx_v_buf[(__pyx_v_offset + 1)]), 2, '0', 'x'); if (unlikely(!__pyx_t_2)) __PYX_ERR(0, 75, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_2); - __pyx_t_6 += __Pyx_PyUnicode_GET_LENGTH(__pyx_t_2); - __Pyx_GIVEREF(__pyx_t_2); - PyTuple_SET_ITEM(__pyx_t_4, 2, __pyx_t_2); - __pyx_t_2 = 0; - __Pyx_INCREF(__pyx_kp_u__2); - __pyx_t_6 += 1; - __Pyx_GIVEREF(__pyx_kp_u__2); - PyTuple_SET_ITEM(__pyx_t_4, 3, __pyx_kp_u__2); - __pyx_t_2 = __Pyx_PyUnicode_Join(__pyx_t_4, 4, __pyx_t_6, __pyx_t_7); if (unlikely(!__pyx_t_2)) __PYX_ERR(0, 75, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_2); - __Pyx_DECREF(__pyx_t_4); __pyx_t_4 = 0; - __pyx_t_4 = __Pyx_PyUnicode_Concat(__pyx_v_fp_, __pyx_t_2); if (unlikely(!__pyx_t_4)) __PYX_ERR(0, 75, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_4); - __Pyx_DECREF(__pyx_t_2); __pyx_t_2 = 0; - __Pyx_DECREF_SET(__pyx_v_fp_, ((PyObject*)__pyx_t_4)); - __pyx_t_4 = 0; - - /* "pmercury/protocols/tls_server.pyx":76 - * # parse selected_cipher_suite - * fp_ += f'({buf[offset]:02x}{buf[offset+1]:02x})' - * offset += 2 # <<<<<<<<<<<<<< - * if offset >= data_len: - * return fp_+'()', None - */ - __pyx_v_offset = (__pyx_v_offset + 2); - - /* "pmercury/protocols/tls_server.pyx":77 - * fp_ += f'({buf[offset]:02x}{buf[offset+1]:02x})' - * offset += 2 - * if offset >= data_len: # <<<<<<<<<<<<<< - * return fp_+'()', None - * - */ - __pyx_t_8 = ((__pyx_v_offset >= __pyx_v_data_len) != 0); - if (__pyx_t_8) { - - /* "pmercury/protocols/tls_server.pyx":78 - * offset += 2 - * if offset >= data_len: - * return fp_+'()', None # <<<<<<<<<<<<<< - * - * # parse/skip compression method - */ - __Pyx_XDECREF(__pyx_r); - __pyx_t_4 = __Pyx_PyUnicode_Concat(__pyx_v_fp_, __pyx_kp_u__4); if (unlikely(!__pyx_t_4)) __PYX_ERR(0, 78, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_4); - __pyx_t_2 = PyTuple_New(2); if (unlikely(!__pyx_t_2)) __PYX_ERR(0, 78, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_2); - __Pyx_GIVEREF(__pyx_t_4); - PyTuple_SET_ITEM(__pyx_t_2, 0, __pyx_t_4); - __Pyx_INCREF(Py_None); - __Pyx_GIVEREF(Py_None); - PyTuple_SET_ITEM(__pyx_t_2, 1, Py_None); - __pyx_t_4 = 0; - __pyx_r = __pyx_t_2; - __pyx_t_2 = 0; - goto __pyx_L0; - - /* "pmercury/protocols/tls_server.pyx":77 - * fp_ += f'({buf[offset]:02x}{buf[offset+1]:02x})' - * offset += 2 - * if offset >= data_len: # <<<<<<<<<<<<<< - * return fp_+'()', None - * - */ - } - - /* "pmercury/protocols/tls_server.pyx":81 - * - * # parse/skip compression method - * cdef unsigned int compression_method = buf[offset] # <<<<<<<<<<<<<< - * offset += 1 - * record_length -= 3 - */ - __pyx_v_compression_method = (__pyx_v_buf[__pyx_v_offset]); - - /* "pmercury/protocols/tls_server.pyx":82 - * # parse/skip compression method - * cdef unsigned int compression_method = buf[offset] - * offset += 1 # <<<<<<<<<<<<<< - * record_length -= 3 - * if offset >= data_len or record_length < 2: - */ - __pyx_v_offset = (__pyx_v_offset + 1); - - /* "pmercury/protocols/tls_server.pyx":83 - * cdef unsigned int compression_method = buf[offset] - * offset += 1 - * record_length -= 3 # <<<<<<<<<<<<<< - * if offset >= data_len or record_length < 2: - * return fp_+'()', None - */ - __pyx_v_record_length = (__pyx_v_record_length - 3); - - /* "pmercury/protocols/tls_server.pyx":84 - * offset += 1 - * record_length -= 3 - * if offset >= data_len or record_length < 2: # <<<<<<<<<<<<<< - * return fp_+'()', None - * - */ - __pyx_t_9 = ((__pyx_v_offset >= __pyx_v_data_len) != 0); - if (!__pyx_t_9) { - } else { - __pyx_t_8 = __pyx_t_9; - goto __pyx_L6_bool_binop_done; - } - __pyx_t_9 = ((__pyx_v_record_length < 2) != 0); - __pyx_t_8 = __pyx_t_9; - __pyx_L6_bool_binop_done:; - if (__pyx_t_8) { - - /* "pmercury/protocols/tls_server.pyx":85 - * record_length -= 3 - * if offset >= data_len or record_length < 2: - * return fp_+'()', None # <<<<<<<<<<<<<< - * - * # parse/skip extensions length - */ - __Pyx_XDECREF(__pyx_r); - __pyx_t_2 = __Pyx_PyUnicode_Concat(__pyx_v_fp_, __pyx_kp_u__4); if (unlikely(!__pyx_t_2)) __PYX_ERR(0, 85, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_2); - __pyx_t_4 = PyTuple_New(2); if (unlikely(!__pyx_t_4)) __PYX_ERR(0, 85, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_4); - __Pyx_GIVEREF(__pyx_t_2); - PyTuple_SET_ITEM(__pyx_t_4, 0, __pyx_t_2); - __Pyx_INCREF(Py_None); - __Pyx_GIVEREF(Py_None); - PyTuple_SET_ITEM(__pyx_t_4, 1, Py_None); - __pyx_t_2 = 0; - __pyx_r = __pyx_t_4; - __pyx_t_4 = 0; - goto __pyx_L0; - - /* "pmercury/protocols/tls_server.pyx":84 - * offset += 1 - * record_length -= 3 - * if offset >= data_len or record_length < 2: # <<<<<<<<<<<<<< - * return fp_+'()', None - * - */ - } - - /* "pmercury/protocols/tls_server.pyx":88 - * - * # parse/skip extensions length - * cdef unsigned int ext_total_len = htons(deref((buf+offset))) # <<<<<<<<<<<<<< - * offset += 2 - * if offset >= data_len: - */ - __pyx_v_ext_total_len = htons((*((uint16_t *)(__pyx_v_buf + __pyx_v_offset)))); - - /* "pmercury/protocols/tls_server.pyx":89 - * # parse/skip extensions length - * cdef unsigned int ext_total_len = htons(deref((buf+offset))) - * offset += 2 # <<<<<<<<<<<<<< - * if offset >= data_len: - * return fp_+'()', None - */ - __pyx_v_offset = (__pyx_v_offset + 2); - - /* "pmercury/protocols/tls_server.pyx":90 - * cdef unsigned int ext_total_len = htons(deref((buf+offset))) - * offset += 2 - * if offset >= data_len: # <<<<<<<<<<<<<< - * return fp_+'()', None - * - */ - __pyx_t_8 = ((__pyx_v_offset >= __pyx_v_data_len) != 0); - if (__pyx_t_8) { - - /* "pmercury/protocols/tls_server.pyx":91 - * offset += 2 - * if offset >= data_len: - * return fp_+'()', None # <<<<<<<<<<<<<< - * - * # parse/extract/skip extension type/length/values - */ - __Pyx_XDECREF(__pyx_r); - __pyx_t_4 = __Pyx_PyUnicode_Concat(__pyx_v_fp_, __pyx_kp_u__4); if (unlikely(!__pyx_t_4)) __PYX_ERR(0, 91, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_4); - __pyx_t_2 = PyTuple_New(2); if (unlikely(!__pyx_t_2)) __PYX_ERR(0, 91, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_2); - __Pyx_GIVEREF(__pyx_t_4); - PyTuple_SET_ITEM(__pyx_t_2, 0, __pyx_t_4); - __Pyx_INCREF(Py_None); - __Pyx_GIVEREF(Py_None); - PyTuple_SET_ITEM(__pyx_t_2, 1, Py_None); - __pyx_t_4 = 0; - __pyx_r = __pyx_t_2; - __pyx_t_2 = 0; - goto __pyx_L0; - - /* "pmercury/protocols/tls_server.pyx":90 - * cdef unsigned int ext_total_len = htons(deref((buf+offset))) - * offset += 2 - * if offset >= data_len: # <<<<<<<<<<<<<< - * return fp_+'()', None - * - */ - } - - /* "pmercury/protocols/tls_server.pyx":96 - * cdef str tmp_fp_ext - * cdef unsigned int ext_len - * fp_ += '(' # <<<<<<<<<<<<<< - * while ext_total_len > 0: - * if offset >= data_len: - */ - __pyx_t_2 = __Pyx_PyUnicode_Concat(__pyx_v_fp_, __pyx_kp_u_); if (unlikely(!__pyx_t_2)) __PYX_ERR(0, 96, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_2); - __Pyx_DECREF_SET(__pyx_v_fp_, ((PyObject*)__pyx_t_2)); - __pyx_t_2 = 0; - - /* "pmercury/protocols/tls_server.pyx":97 - * cdef unsigned int ext_len - * fp_ += '(' - * while ext_total_len > 0: # <<<<<<<<<<<<<< - * if offset >= data_len: - * return fp_+')', None - */ - while (1) { - __pyx_t_8 = ((__pyx_v_ext_total_len > 0) != 0); - if (!__pyx_t_8) break; - - /* "pmercury/protocols/tls_server.pyx":98 - * fp_ += '(' - * while ext_total_len > 0: - * if offset >= data_len: # <<<<<<<<<<<<<< - * return fp_+')', None - * - */ - __pyx_t_8 = ((__pyx_v_offset >= __pyx_v_data_len) != 0); - if (__pyx_t_8) { - - /* "pmercury/protocols/tls_server.pyx":99 - * while ext_total_len > 0: - * if offset >= data_len: - * return fp_+')', None # <<<<<<<<<<<<<< - * - * tmp_fp_ext, offset, ext_len = parse_extension(data, offset) - */ - __Pyx_XDECREF(__pyx_r); - __pyx_t_2 = __Pyx_PyUnicode_Concat(__pyx_v_fp_, __pyx_kp_u__2); if (unlikely(!__pyx_t_2)) __PYX_ERR(0, 99, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_2); - __pyx_t_4 = PyTuple_New(2); if (unlikely(!__pyx_t_4)) __PYX_ERR(0, 99, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_4); - __Pyx_GIVEREF(__pyx_t_2); - PyTuple_SET_ITEM(__pyx_t_4, 0, __pyx_t_2); - __Pyx_INCREF(Py_None); - __Pyx_GIVEREF(Py_None); - PyTuple_SET_ITEM(__pyx_t_4, 1, Py_None); - __pyx_t_2 = 0; - __pyx_r = __pyx_t_4; - __pyx_t_4 = 0; - goto __pyx_L0; - - /* "pmercury/protocols/tls_server.pyx":98 - * fp_ += '(' - * while ext_total_len > 0: - * if offset >= data_len: # <<<<<<<<<<<<<< - * return fp_+')', None - * - */ - } - - /* "pmercury/protocols/tls_server.pyx":101 - * return fp_+')', None - * - * tmp_fp_ext, offset, ext_len = parse_extension(data, offset) # <<<<<<<<<<<<<< - * fp_ += '(%s)' % tmp_fp_ext - * - */ - __Pyx_GetModuleGlobalName(__pyx_t_2, __pyx_n_s_parse_extension); if (unlikely(!__pyx_t_2)) __PYX_ERR(0, 101, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_2); - __pyx_t_3 = __Pyx_PyInt_From_unsigned_int(__pyx_v_offset); if (unlikely(!__pyx_t_3)) __PYX_ERR(0, 101, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_3); - __pyx_t_10 = NULL; - __pyx_t_5 = 0; - if (CYTHON_UNPACK_METHODS && unlikely(PyMethod_Check(__pyx_t_2))) { - __pyx_t_10 = PyMethod_GET_SELF(__pyx_t_2); - if (likely(__pyx_t_10)) { - PyObject* function = PyMethod_GET_FUNCTION(__pyx_t_2); - __Pyx_INCREF(__pyx_t_10); - __Pyx_INCREF(function); - __Pyx_DECREF_SET(__pyx_t_2, function); - __pyx_t_5 = 1; - } - } - #if CYTHON_FAST_PYCALL - if (PyFunction_Check(__pyx_t_2)) { - PyObject *__pyx_temp[3] = {__pyx_t_10, __pyx_v_data, __pyx_t_3}; - __pyx_t_4 = __Pyx_PyFunction_FastCall(__pyx_t_2, __pyx_temp+1-__pyx_t_5, 2+__pyx_t_5); if (unlikely(!__pyx_t_4)) __PYX_ERR(0, 101, __pyx_L1_error) - __Pyx_XDECREF(__pyx_t_10); __pyx_t_10 = 0; - __Pyx_GOTREF(__pyx_t_4); - __Pyx_DECREF(__pyx_t_3); __pyx_t_3 = 0; - } else - #endif - #if CYTHON_FAST_PYCCALL - if (__Pyx_PyFastCFunction_Check(__pyx_t_2)) { - PyObject *__pyx_temp[3] = {__pyx_t_10, __pyx_v_data, __pyx_t_3}; - __pyx_t_4 = __Pyx_PyCFunction_FastCall(__pyx_t_2, __pyx_temp+1-__pyx_t_5, 2+__pyx_t_5); if (unlikely(!__pyx_t_4)) __PYX_ERR(0, 101, __pyx_L1_error) - __Pyx_XDECREF(__pyx_t_10); __pyx_t_10 = 0; - __Pyx_GOTREF(__pyx_t_4); - __Pyx_DECREF(__pyx_t_3); __pyx_t_3 = 0; - } else - #endif - { - __pyx_t_11 = PyTuple_New(2+__pyx_t_5); if (unlikely(!__pyx_t_11)) __PYX_ERR(0, 101, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_11); - if (__pyx_t_10) { - __Pyx_GIVEREF(__pyx_t_10); PyTuple_SET_ITEM(__pyx_t_11, 0, __pyx_t_10); __pyx_t_10 = NULL; - } - __Pyx_INCREF(__pyx_v_data); - __Pyx_GIVEREF(__pyx_v_data); - PyTuple_SET_ITEM(__pyx_t_11, 0+__pyx_t_5, __pyx_v_data); - __Pyx_GIVEREF(__pyx_t_3); - PyTuple_SET_ITEM(__pyx_t_11, 1+__pyx_t_5, __pyx_t_3); - __pyx_t_3 = 0; - __pyx_t_4 = __Pyx_PyObject_Call(__pyx_t_2, __pyx_t_11, NULL); if (unlikely(!__pyx_t_4)) __PYX_ERR(0, 101, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_4); - __Pyx_DECREF(__pyx_t_11); __pyx_t_11 = 0; - } - __Pyx_DECREF(__pyx_t_2); __pyx_t_2 = 0; - if ((likely(PyTuple_CheckExact(__pyx_t_4))) || (PyList_CheckExact(__pyx_t_4))) { - PyObject* sequence = __pyx_t_4; - Py_ssize_t size = __Pyx_PySequence_SIZE(sequence); - if (unlikely(size != 3)) { - if (size > 3) __Pyx_RaiseTooManyValuesError(3); - else if (size >= 0) __Pyx_RaiseNeedMoreValuesError(size); - __PYX_ERR(0, 101, __pyx_L1_error) - } - #if CYTHON_ASSUME_SAFE_MACROS && !CYTHON_AVOID_BORROWED_REFS - if (likely(PyTuple_CheckExact(sequence))) { - __pyx_t_2 = PyTuple_GET_ITEM(sequence, 0); - __pyx_t_11 = PyTuple_GET_ITEM(sequence, 1); - __pyx_t_3 = PyTuple_GET_ITEM(sequence, 2); - } else { - __pyx_t_2 = PyList_GET_ITEM(sequence, 0); - __pyx_t_11 = PyList_GET_ITEM(sequence, 1); - __pyx_t_3 = PyList_GET_ITEM(sequence, 2); - } - __Pyx_INCREF(__pyx_t_2); - __Pyx_INCREF(__pyx_t_11); - __Pyx_INCREF(__pyx_t_3); - #else - __pyx_t_2 = PySequence_ITEM(sequence, 0); if (unlikely(!__pyx_t_2)) __PYX_ERR(0, 101, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_2); - __pyx_t_11 = PySequence_ITEM(sequence, 1); if (unlikely(!__pyx_t_11)) __PYX_ERR(0, 101, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_11); - __pyx_t_3 = PySequence_ITEM(sequence, 2); if (unlikely(!__pyx_t_3)) __PYX_ERR(0, 101, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_3); - #endif - __Pyx_DECREF(__pyx_t_4); __pyx_t_4 = 0; - } else { - Py_ssize_t index = -1; - __pyx_t_10 = PyObject_GetIter(__pyx_t_4); if (unlikely(!__pyx_t_10)) __PYX_ERR(0, 101, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_10); - __Pyx_DECREF(__pyx_t_4); __pyx_t_4 = 0; - __pyx_t_12 = Py_TYPE(__pyx_t_10)->tp_iternext; - index = 0; __pyx_t_2 = __pyx_t_12(__pyx_t_10); if (unlikely(!__pyx_t_2)) goto __pyx_L12_unpacking_failed; - __Pyx_GOTREF(__pyx_t_2); - index = 1; __pyx_t_11 = __pyx_t_12(__pyx_t_10); if (unlikely(!__pyx_t_11)) goto __pyx_L12_unpacking_failed; - __Pyx_GOTREF(__pyx_t_11); - index = 2; __pyx_t_3 = __pyx_t_12(__pyx_t_10); if (unlikely(!__pyx_t_3)) goto __pyx_L12_unpacking_failed; - __Pyx_GOTREF(__pyx_t_3); - if (__Pyx_IternextUnpackEndCheck(__pyx_t_12(__pyx_t_10), 3) < 0) __PYX_ERR(0, 101, __pyx_L1_error) - __pyx_t_12 = NULL; - __Pyx_DECREF(__pyx_t_10); __pyx_t_10 = 0; - goto __pyx_L13_unpacking_done; - __pyx_L12_unpacking_failed:; - __Pyx_DECREF(__pyx_t_10); __pyx_t_10 = 0; - __pyx_t_12 = NULL; - if (__Pyx_IterFinish() == 0) __Pyx_RaiseNeedMoreValuesError(index); - __PYX_ERR(0, 101, __pyx_L1_error) - __pyx_L13_unpacking_done:; - } - if (!(likely(PyUnicode_CheckExact(__pyx_t_2))||((__pyx_t_2) == Py_None)||(PyErr_Format(PyExc_TypeError, "Expected %.16s, got %.200s", "unicode", Py_TYPE(__pyx_t_2)->tp_name), 0))) __PYX_ERR(0, 101, __pyx_L1_error) - __pyx_t_13 = __Pyx_PyInt_As_unsigned_int(__pyx_t_11); if (unlikely((__pyx_t_13 == (unsigned int)-1) && PyErr_Occurred())) __PYX_ERR(0, 101, __pyx_L1_error) - __Pyx_DECREF(__pyx_t_11); __pyx_t_11 = 0; - __pyx_t_14 = __Pyx_PyInt_As_unsigned_int(__pyx_t_3); if (unlikely((__pyx_t_14 == (unsigned int)-1) && PyErr_Occurred())) __PYX_ERR(0, 101, __pyx_L1_error) - __Pyx_DECREF(__pyx_t_3); __pyx_t_3 = 0; - __Pyx_XDECREF_SET(__pyx_v_tmp_fp_ext, ((PyObject*)__pyx_t_2)); - __pyx_t_2 = 0; - __pyx_v_offset = __pyx_t_13; - __pyx_v_ext_len = __pyx_t_14; - - /* "pmercury/protocols/tls_server.pyx":102 - * - * tmp_fp_ext, offset, ext_len = parse_extension(data, offset) - * fp_ += '(%s)' % tmp_fp_ext # <<<<<<<<<<<<<< - * - * ext_total_len -= 4 + ext_len - */ - __pyx_t_4 = PyUnicode_Format(__pyx_kp_u_s, __pyx_v_tmp_fp_ext); if (unlikely(!__pyx_t_4)) __PYX_ERR(0, 102, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_4); - __pyx_t_3 = __Pyx_PyUnicode_Concat(__pyx_v_fp_, __pyx_t_4); if (unlikely(!__pyx_t_3)) __PYX_ERR(0, 102, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_3); - __Pyx_DECREF(__pyx_t_4); __pyx_t_4 = 0; - __Pyx_DECREF_SET(__pyx_v_fp_, ((PyObject*)__pyx_t_3)); - __pyx_t_3 = 0; - - /* "pmercury/protocols/tls_server.pyx":104 - * fp_ += '(%s)' % tmp_fp_ext - * - * ext_total_len -= 4 + ext_len # <<<<<<<<<<<<<< - * fp_ += ')' - * - */ - __pyx_v_ext_total_len = (__pyx_v_ext_total_len - (4 + __pyx_v_ext_len)); - } - - /* "pmercury/protocols/tls_server.pyx":105 - * - * ext_total_len -= 4 + ext_len - * fp_ += ')' # <<<<<<<<<<<<<< - * - * return fp_, None - */ - __pyx_t_3 = __Pyx_PyUnicode_Concat(__pyx_v_fp_, __pyx_kp_u__2); if (unlikely(!__pyx_t_3)) __PYX_ERR(0, 105, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_3); - __Pyx_DECREF_SET(__pyx_v_fp_, ((PyObject*)__pyx_t_3)); - __pyx_t_3 = 0; - - /* "pmercury/protocols/tls_server.pyx":107 - * fp_ += ')' - * - * return fp_, None # <<<<<<<<<<<<<< - * - * - */ - __Pyx_XDECREF(__pyx_r); - __pyx_t_3 = PyTuple_New(2); if (unlikely(!__pyx_t_3)) __PYX_ERR(0, 107, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_3); - __Pyx_INCREF(__pyx_v_fp_); - __Pyx_GIVEREF(__pyx_v_fp_); - PyTuple_SET_ITEM(__pyx_t_3, 0, __pyx_v_fp_); - __Pyx_INCREF(Py_None); - __Pyx_GIVEREF(Py_None); - PyTuple_SET_ITEM(__pyx_t_3, 1, Py_None); - __pyx_r = __pyx_t_3; - __pyx_t_3 = 0; - goto __pyx_L0; - - /* "pmercury/protocols/tls_server.pyx":53 - * - * @staticmethod - * def fingerprint(bytes data, unsigned int offset, unsigned int data_len): # <<<<<<<<<<<<<< - * cdef unsigned char *buf = data - * offset += 5 - */ - - /* function exit code */ - __pyx_L1_error:; - __Pyx_XDECREF(__pyx_t_2); - __Pyx_XDECREF(__pyx_t_3); - __Pyx_XDECREF(__pyx_t_4); - __Pyx_XDECREF(__pyx_t_10); - __Pyx_XDECREF(__pyx_t_11); - __Pyx_AddTraceback("pmercury.protocols.tls_server.TLS_Server.fingerprint", __pyx_clineno, __pyx_lineno, __pyx_filename); - __pyx_r = NULL; - __pyx_L0:; - __Pyx_XDECREF(__pyx_v_fp_); - __Pyx_XDECREF(__pyx_v_tmp_fp_ext); - __Pyx_XGIVEREF(__pyx_r); - __Pyx_RefNannyFinishContext(); - return __pyx_r; -} - -/* "pmercury/protocols/tls_server.pyx":110 - * - * - * def get_human_readable(self, fp_str_): # <<<<<<<<<<<<<< - * lit_fp = eval_fp_str(fp_str_) - * - */ - -/* Python wrapper */ -static PyObject *__pyx_pw_8pmercury_9protocols_10tls_server_10TLS_Server_7get_human_readable(PyObject *__pyx_self, PyObject *__pyx_args, PyObject *__pyx_kwds); /*proto*/ -static PyMethodDef __pyx_mdef_8pmercury_9protocols_10tls_server_10TLS_Server_7get_human_readable = {"get_human_readable", (PyCFunction)(void*)(PyCFunctionWithKeywords)__pyx_pw_8pmercury_9protocols_10tls_server_10TLS_Server_7get_human_readable, METH_VARARGS|METH_KEYWORDS, 0}; -static PyObject *__pyx_pw_8pmercury_9protocols_10tls_server_10TLS_Server_7get_human_readable(PyObject *__pyx_self, PyObject *__pyx_args, PyObject *__pyx_kwds) { - CYTHON_UNUSED PyObject *__pyx_v_self = 0; - PyObject *__pyx_v_fp_str_ = 0; - PyObject *__pyx_r = 0; - __Pyx_RefNannyDeclarations - __Pyx_RefNannySetupContext("get_human_readable (wrapper)", 0); - { - static PyObject **__pyx_pyargnames[] = {&__pyx_n_s_self,&__pyx_n_s_fp_str,0}; - PyObject* values[2] = {0,0}; - if (unlikely(__pyx_kwds)) { - Py_ssize_t kw_args; - const Py_ssize_t pos_args = PyTuple_GET_SIZE(__pyx_args); - switch (pos_args) { - case 2: values[1] = PyTuple_GET_ITEM(__pyx_args, 1); - CYTHON_FALLTHROUGH; - case 1: values[0] = PyTuple_GET_ITEM(__pyx_args, 0); - CYTHON_FALLTHROUGH; - case 0: break; - default: goto __pyx_L5_argtuple_error; - } - kw_args = PyDict_Size(__pyx_kwds); - switch (pos_args) { - case 0: - if (likely((values[0] = __Pyx_PyDict_GetItemStr(__pyx_kwds, __pyx_n_s_self)) != 0)) kw_args--; - else goto __pyx_L5_argtuple_error; - CYTHON_FALLTHROUGH; - case 1: - if (likely((values[1] = __Pyx_PyDict_GetItemStr(__pyx_kwds, __pyx_n_s_fp_str)) != 0)) kw_args--; - else { - __Pyx_RaiseArgtupleInvalid("get_human_readable", 1, 2, 2, 1); __PYX_ERR(0, 110, __pyx_L3_error) - } - } - if (unlikely(kw_args > 0)) { - if (unlikely(__Pyx_ParseOptionalKeywords(__pyx_kwds, __pyx_pyargnames, 0, values, pos_args, "get_human_readable") < 0)) __PYX_ERR(0, 110, __pyx_L3_error) - } - } else if (PyTuple_GET_SIZE(__pyx_args) != 2) { - goto __pyx_L5_argtuple_error; - } else { - values[0] = PyTuple_GET_ITEM(__pyx_args, 0); - values[1] = PyTuple_GET_ITEM(__pyx_args, 1); - } - __pyx_v_self = values[0]; - __pyx_v_fp_str_ = values[1]; - } - goto __pyx_L4_argument_unpacking_done; - __pyx_L5_argtuple_error:; - __Pyx_RaiseArgtupleInvalid("get_human_readable", 1, 2, 2, PyTuple_GET_SIZE(__pyx_args)); __PYX_ERR(0, 110, __pyx_L3_error) - __pyx_L3_error:; - __Pyx_AddTraceback("pmercury.protocols.tls_server.TLS_Server.get_human_readable", __pyx_clineno, __pyx_lineno, __pyx_filename); - __Pyx_RefNannyFinishContext(); - return NULL; - __pyx_L4_argument_unpacking_done:; - __pyx_r = __pyx_pf_8pmercury_9protocols_10tls_server_10TLS_Server_6get_human_readable(__pyx_self, __pyx_v_self, __pyx_v_fp_str_); - - /* function exit code */ - __Pyx_RefNannyFinishContext(); - return __pyx_r; -} - -static PyObject *__pyx_pf_8pmercury_9protocols_10tls_server_10TLS_Server_6get_human_readable(CYTHON_UNUSED PyObject *__pyx_self, CYTHON_UNUSED PyObject *__pyx_v_self, PyObject *__pyx_v_fp_str_) { - PyObject *__pyx_v_lit_fp = NULL; - PyObject *__pyx_v_fp_h = NULL; - PyObject *__pyx_r = NULL; - __Pyx_RefNannyDeclarations - PyObject *__pyx_t_1 = NULL; - PyObject *__pyx_t_2 = NULL; - PyObject *__pyx_t_3 = NULL; - PyObject *__pyx_t_4 = NULL; - Py_ssize_t __pyx_t_5; - int __pyx_t_6; - __Pyx_RefNannySetupContext("get_human_readable", 0); - - /* "pmercury/protocols/tls_server.pyx":111 - * - * def get_human_readable(self, fp_str_): - * lit_fp = eval_fp_str(fp_str_) # <<<<<<<<<<<<<< - * - * fp_h = {} - */ - __Pyx_GetModuleGlobalName(__pyx_t_2, __pyx_n_s_eval_fp_str); if (unlikely(!__pyx_t_2)) __PYX_ERR(0, 111, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_2); - __pyx_t_3 = NULL; - if (CYTHON_UNPACK_METHODS && unlikely(PyMethod_Check(__pyx_t_2))) { - __pyx_t_3 = PyMethod_GET_SELF(__pyx_t_2); - if (likely(__pyx_t_3)) { - PyObject* function = PyMethod_GET_FUNCTION(__pyx_t_2); - __Pyx_INCREF(__pyx_t_3); - __Pyx_INCREF(function); - __Pyx_DECREF_SET(__pyx_t_2, function); - } - } - __pyx_t_1 = (__pyx_t_3) ? __Pyx_PyObject_Call2Args(__pyx_t_2, __pyx_t_3, __pyx_v_fp_str_) : __Pyx_PyObject_CallOneArg(__pyx_t_2, __pyx_v_fp_str_); - __Pyx_XDECREF(__pyx_t_3); __pyx_t_3 = 0; - if (unlikely(!__pyx_t_1)) __PYX_ERR(0, 111, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_1); - __Pyx_DECREF(__pyx_t_2); __pyx_t_2 = 0; - __pyx_v_lit_fp = __pyx_t_1; - __pyx_t_1 = 0; - - /* "pmercury/protocols/tls_server.pyx":113 - * lit_fp = eval_fp_str(fp_str_) - * - * fp_h = {} # <<<<<<<<<<<<<< - * fp_h['version'] = get_version_from_str(lit_fp[0]) - * fp_h['selected_cipher_suite'] = get_cs_from_str(lit_fp[1]) - */ - __pyx_t_1 = __Pyx_PyDict_NewPresized(0); if (unlikely(!__pyx_t_1)) __PYX_ERR(0, 113, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_1); - __pyx_v_fp_h = ((PyObject*)__pyx_t_1); - __pyx_t_1 = 0; - - /* "pmercury/protocols/tls_server.pyx":114 - * - * fp_h = {} - * fp_h['version'] = get_version_from_str(lit_fp[0]) # <<<<<<<<<<<<<< - * fp_h['selected_cipher_suite'] = get_cs_from_str(lit_fp[1]) - * fp_h['extensions'] = [] - */ - __Pyx_GetModuleGlobalName(__pyx_t_2, __pyx_n_s_get_version_from_str); if (unlikely(!__pyx_t_2)) __PYX_ERR(0, 114, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_2); - __pyx_t_3 = __Pyx_GetItemInt(__pyx_v_lit_fp, 0, long, 1, __Pyx_PyInt_From_long, 0, 0, 1); if (unlikely(!__pyx_t_3)) __PYX_ERR(0, 114, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_3); - __pyx_t_4 = NULL; - if (CYTHON_UNPACK_METHODS && unlikely(PyMethod_Check(__pyx_t_2))) { - __pyx_t_4 = PyMethod_GET_SELF(__pyx_t_2); - if (likely(__pyx_t_4)) { - PyObject* function = PyMethod_GET_FUNCTION(__pyx_t_2); - __Pyx_INCREF(__pyx_t_4); - __Pyx_INCREF(function); - __Pyx_DECREF_SET(__pyx_t_2, function); - } - } - __pyx_t_1 = (__pyx_t_4) ? __Pyx_PyObject_Call2Args(__pyx_t_2, __pyx_t_4, __pyx_t_3) : __Pyx_PyObject_CallOneArg(__pyx_t_2, __pyx_t_3); - __Pyx_XDECREF(__pyx_t_4); __pyx_t_4 = 0; - __Pyx_DECREF(__pyx_t_3); __pyx_t_3 = 0; - if (unlikely(!__pyx_t_1)) __PYX_ERR(0, 114, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_1); - __Pyx_DECREF(__pyx_t_2); __pyx_t_2 = 0; - if (unlikely(PyDict_SetItem(__pyx_v_fp_h, __pyx_n_u_version, __pyx_t_1) < 0)) __PYX_ERR(0, 114, __pyx_L1_error) - __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0; - - /* "pmercury/protocols/tls_server.pyx":115 - * fp_h = {} - * fp_h['version'] = get_version_from_str(lit_fp[0]) - * fp_h['selected_cipher_suite'] = get_cs_from_str(lit_fp[1]) # <<<<<<<<<<<<<< - * fp_h['extensions'] = [] - * if len(lit_fp) > 2: - */ - __Pyx_GetModuleGlobalName(__pyx_t_2, __pyx_n_s_get_cs_from_str); if (unlikely(!__pyx_t_2)) __PYX_ERR(0, 115, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_2); - __pyx_t_3 = __Pyx_GetItemInt(__pyx_v_lit_fp, 1, long, 1, __Pyx_PyInt_From_long, 0, 0, 1); if (unlikely(!__pyx_t_3)) __PYX_ERR(0, 115, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_3); - __pyx_t_4 = NULL; - if (CYTHON_UNPACK_METHODS && unlikely(PyMethod_Check(__pyx_t_2))) { - __pyx_t_4 = PyMethod_GET_SELF(__pyx_t_2); - if (likely(__pyx_t_4)) { - PyObject* function = PyMethod_GET_FUNCTION(__pyx_t_2); - __Pyx_INCREF(__pyx_t_4); - __Pyx_INCREF(function); - __Pyx_DECREF_SET(__pyx_t_2, function); - } - } - __pyx_t_1 = (__pyx_t_4) ? __Pyx_PyObject_Call2Args(__pyx_t_2, __pyx_t_4, __pyx_t_3) : __Pyx_PyObject_CallOneArg(__pyx_t_2, __pyx_t_3); - __Pyx_XDECREF(__pyx_t_4); __pyx_t_4 = 0; - __Pyx_DECREF(__pyx_t_3); __pyx_t_3 = 0; - if (unlikely(!__pyx_t_1)) __PYX_ERR(0, 115, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_1); - __Pyx_DECREF(__pyx_t_2); __pyx_t_2 = 0; - if (unlikely(PyDict_SetItem(__pyx_v_fp_h, __pyx_n_u_selected_cipher_suite, __pyx_t_1) < 0)) __PYX_ERR(0, 115, __pyx_L1_error) - __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0; - - /* "pmercury/protocols/tls_server.pyx":116 - * fp_h['version'] = get_version_from_str(lit_fp[0]) - * fp_h['selected_cipher_suite'] = get_cs_from_str(lit_fp[1]) - * fp_h['extensions'] = [] # <<<<<<<<<<<<<< - * if len(lit_fp) > 2: - * fp_h['extensions'] = get_ext_from_str(lit_fp[2], mode='server') - */ - __pyx_t_1 = PyList_New(0); if (unlikely(!__pyx_t_1)) __PYX_ERR(0, 116, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_1); - if (unlikely(PyDict_SetItem(__pyx_v_fp_h, __pyx_n_u_extensions, __pyx_t_1) < 0)) __PYX_ERR(0, 116, __pyx_L1_error) - __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0; - - /* "pmercury/protocols/tls_server.pyx":117 - * fp_h['selected_cipher_suite'] = get_cs_from_str(lit_fp[1]) - * fp_h['extensions'] = [] - * if len(lit_fp) > 2: # <<<<<<<<<<<<<< - * fp_h['extensions'] = get_ext_from_str(lit_fp[2], mode='server') - * - */ - __pyx_t_5 = PyObject_Length(__pyx_v_lit_fp); if (unlikely(__pyx_t_5 == ((Py_ssize_t)-1))) __PYX_ERR(0, 117, __pyx_L1_error) - __pyx_t_6 = ((__pyx_t_5 > 2) != 0); - if (__pyx_t_6) { - - /* "pmercury/protocols/tls_server.pyx":118 - * fp_h['extensions'] = [] - * if len(lit_fp) > 2: - * fp_h['extensions'] = get_ext_from_str(lit_fp[2], mode='server') # <<<<<<<<<<<<<< - * - * return fp_h - */ - __Pyx_GetModuleGlobalName(__pyx_t_1, __pyx_n_s_get_ext_from_str); if (unlikely(!__pyx_t_1)) __PYX_ERR(0, 118, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_1); - __pyx_t_2 = __Pyx_GetItemInt(__pyx_v_lit_fp, 2, long, 1, __Pyx_PyInt_From_long, 0, 0, 1); if (unlikely(!__pyx_t_2)) __PYX_ERR(0, 118, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_2); - __pyx_t_3 = PyTuple_New(1); if (unlikely(!__pyx_t_3)) __PYX_ERR(0, 118, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_3); - __Pyx_GIVEREF(__pyx_t_2); - PyTuple_SET_ITEM(__pyx_t_3, 0, __pyx_t_2); - __pyx_t_2 = 0; - __pyx_t_2 = __Pyx_PyDict_NewPresized(1); if (unlikely(!__pyx_t_2)) __PYX_ERR(0, 118, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_2); - if (PyDict_SetItem(__pyx_t_2, __pyx_n_s_mode, __pyx_n_u_server) < 0) __PYX_ERR(0, 118, __pyx_L1_error) - __pyx_t_4 = __Pyx_PyObject_Call(__pyx_t_1, __pyx_t_3, __pyx_t_2); if (unlikely(!__pyx_t_4)) __PYX_ERR(0, 118, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_4); - __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0; - __Pyx_DECREF(__pyx_t_3); __pyx_t_3 = 0; - __Pyx_DECREF(__pyx_t_2); __pyx_t_2 = 0; - if (unlikely(PyDict_SetItem(__pyx_v_fp_h, __pyx_n_u_extensions, __pyx_t_4) < 0)) __PYX_ERR(0, 118, __pyx_L1_error) - __Pyx_DECREF(__pyx_t_4); __pyx_t_4 = 0; - - /* "pmercury/protocols/tls_server.pyx":117 - * fp_h['selected_cipher_suite'] = get_cs_from_str(lit_fp[1]) - * fp_h['extensions'] = [] - * if len(lit_fp) > 2: # <<<<<<<<<<<<<< - * fp_h['extensions'] = get_ext_from_str(lit_fp[2], mode='server') - * - */ - } - - /* "pmercury/protocols/tls_server.pyx":120 - * fp_h['extensions'] = get_ext_from_str(lit_fp[2], mode='server') - * - * return fp_h # <<<<<<<<<<<<<< - */ - __Pyx_XDECREF(__pyx_r); - __Pyx_INCREF(__pyx_v_fp_h); - __pyx_r = __pyx_v_fp_h; - goto __pyx_L0; - - /* "pmercury/protocols/tls_server.pyx":110 - * - * - * def get_human_readable(self, fp_str_): # <<<<<<<<<<<<<< - * lit_fp = eval_fp_str(fp_str_) - * - */ - - /* function exit code */ - __pyx_L1_error:; - __Pyx_XDECREF(__pyx_t_1); - __Pyx_XDECREF(__pyx_t_2); - __Pyx_XDECREF(__pyx_t_3); - __Pyx_XDECREF(__pyx_t_4); - __Pyx_AddTraceback("pmercury.protocols.tls_server.TLS_Server.get_human_readable", __pyx_clineno, __pyx_lineno, __pyx_filename); - __pyx_r = NULL; - __pyx_L0:; - __Pyx_XDECREF(__pyx_v_lit_fp); - __Pyx_XDECREF(__pyx_v_fp_h); - __Pyx_XGIVEREF(__pyx_r); - __Pyx_RefNannyFinishContext(); - return __pyx_r; -} - -static PyMethodDef __pyx_methods[] = { - {0, 0, 0, 0} -}; - -static int __pyx_import_star_set(PyObject *o, PyObject* py_name, char *name) { - static const char* internal_type_names[] = { - "uint16_t", - "uint32_t", - "uint64_t", - "uint8_t", - 0 - }; - const char** type_name = internal_type_names; - while (*type_name) { - if (__Pyx_StrEq(name, *type_name)) { - PyErr_Format(PyExc_TypeError, "Cannot overwrite C type %s", name); - goto bad; - } - type_name++; - } - if (0); - else { - if (PyObject_SetAttr(__pyx_m, py_name, o) < 0) goto bad; - } - return 0; - bad: - return -1; -} - -static int -__Pyx_import_all_from(PyObject *locals, PyObject *v) -{ - PyObject *all = PyObject_GetAttrString(v, "__all__"); - PyObject *dict, *name, *value; - int skip_leading_underscores = 0; - int pos, err; - if (all == NULL) { - if (!PyErr_ExceptionMatches(PyExc_AttributeError)) - return -1; - PyErr_Clear(); - dict = PyObject_GetAttrString(v, "__dict__"); - if (dict == NULL) { - if (!PyErr_ExceptionMatches(PyExc_AttributeError)) - return -1; - PyErr_SetString(PyExc_ImportError, - "from-import-* object has no __dict__ and no __all__"); - return -1; - } -#if PY_MAJOR_VERSION < 3 - all = PyObject_CallMethod(dict, (char *)"keys", NULL); -#else - all = PyMapping_Keys(dict); -#endif - Py_DECREF(dict); - if (all == NULL) - return -1; - skip_leading_underscores = 1; - } - for (pos = 0, err = 0; ; pos++) { - name = PySequence_GetItem(all, pos); - if (name == NULL) { - if (!PyErr_ExceptionMatches(PyExc_IndexError)) - err = -1; - else - PyErr_Clear(); - break; - } - if (skip_leading_underscores && -#if PY_MAJOR_VERSION < 3 - PyString_Check(name) && - PyString_AS_STRING(name)[0] == '_') -#else - PyUnicode_Check(name) && - PyUnicode_AS_UNICODE(name)[0] == '_') -#endif - { - Py_DECREF(name); - continue; - } - value = PyObject_GetAttr(v, name); - if (value == NULL) - err = -1; - else if (PyDict_CheckExact(locals)) - err = PyDict_SetItem(locals, name, value); - else - err = PyObject_SetItem(locals, name, value); - Py_DECREF(name); - Py_XDECREF(value); - if (err != 0) - break; - } - Py_DECREF(all); - return err; -} -static int __pyx_import_star(PyObject* m) { - int i; - int ret = -1; - char* s; - PyObject *locals = 0; - PyObject *list = 0; -#if PY_MAJOR_VERSION >= 3 - PyObject *utf8_name = 0; -#endif - PyObject *name; - PyObject *item; - locals = PyDict_New(); if (!locals) goto bad; - if (__Pyx_import_all_from(locals, m) < 0) goto bad; - list = PyDict_Items(locals); if (!list) goto bad; - for(i=0; i= 3 - utf8_name = PyUnicode_AsUTF8String(name); - if (!utf8_name) goto bad; - s = PyBytes_AS_STRING(utf8_name); - if (__pyx_import_star_set(item, name, s) < 0) goto bad; - Py_DECREF(utf8_name); utf8_name = 0; -#else - s = PyString_AsString(name); - if (!s) goto bad; - if (__pyx_import_star_set(item, name, s) < 0) goto bad; -#endif - } - ret = 0; -bad: - Py_XDECREF(locals); - Py_XDECREF(list); -#if PY_MAJOR_VERSION >= 3 - Py_XDECREF(utf8_name); -#endif - return ret; -} - - - -#if PY_MAJOR_VERSION >= 3 -#if CYTHON_PEP489_MULTI_PHASE_INIT -static PyObject* __pyx_pymod_create(PyObject *spec, PyModuleDef *def); /*proto*/ -static int __pyx_pymod_exec_tls_server(PyObject* module); /*proto*/ -static PyModuleDef_Slot __pyx_moduledef_slots[] = { - {Py_mod_create, (void*)__pyx_pymod_create}, - {Py_mod_exec, (void*)__pyx_pymod_exec_tls_server}, - {0, NULL} -}; -#endif - -static struct PyModuleDef __pyx_moduledef = { - PyModuleDef_HEAD_INIT, - "tls_server", - __pyx_k_Copyright_c_2019_Cisco_Systems, /* m_doc */ - #if CYTHON_PEP489_MULTI_PHASE_INIT - 0, /* m_size */ - #else - -1, /* m_size */ - #endif - __pyx_methods /* m_methods */, - #if CYTHON_PEP489_MULTI_PHASE_INIT - __pyx_moduledef_slots, /* m_slots */ - #else - NULL, /* m_reload */ - #endif - NULL, /* m_traverse */ - NULL, /* m_clear */ - NULL /* m_free */ -}; -#endif -#ifndef CYTHON_SMALL_CODE -#if defined(__clang__) - #define CYTHON_SMALL_CODE -#elif defined(__GNUC__) && (__GNUC__ > 4 || (__GNUC__ == 4 && __GNUC_MINOR__ >= 3)) - #define CYTHON_SMALL_CODE __attribute__((cold)) -#else - #define CYTHON_SMALL_CODE -#endif -#endif - -static __Pyx_StringTabEntry __pyx_string_tab[] = { - {&__pyx_kp_u_, __pyx_k_, sizeof(__pyx_k_), 0, 1, 0, 0}, - {&__pyx_kp_u_02x, __pyx_k_02x, sizeof(__pyx_k_02x), 0, 1, 0, 0}, - {&__pyx_n_s_MAX_CACHED_RESULTS, __pyx_k_MAX_CACHED_RESULTS, sizeof(__pyx_k_MAX_CACHED_RESULTS), 0, 0, 1, 1}, - {&__pyx_n_s_Protocol, __pyx_k_Protocol, sizeof(__pyx_k_Protocol), 0, 0, 1, 1}, - {&__pyx_n_s_TLS_Server, __pyx_k_TLS_Server, sizeof(__pyx_k_TLS_Server), 0, 0, 1, 1}, - {&__pyx_n_s_TLS_Server___init, __pyx_k_TLS_Server___init, sizeof(__pyx_k_TLS_Server___init), 0, 0, 1, 1}, - {&__pyx_n_s_TLS_Server_fingerprint, __pyx_k_TLS_Server_fingerprint, sizeof(__pyx_k_TLS_Server_fingerprint), 0, 0, 1, 1}, - {&__pyx_n_s_TLS_Server_get_human_readable, __pyx_k_TLS_Server_get_human_readable, sizeof(__pyx_k_TLS_Server_get_human_readable), 0, 0, 1, 1}, - {&__pyx_n_s_TLS_Server_proto_identify, __pyx_k_TLS_Server_proto_identify, sizeof(__pyx_k_TLS_Server_proto_identify), 0, 0, 1, 1}, - {&__pyx_kp_u__2, __pyx_k__2, sizeof(__pyx_k__2), 0, 1, 0, 0}, - {&__pyx_kp_u__4, __pyx_k__4, sizeof(__pyx_k__4), 0, 1, 0, 0}, - {&__pyx_kp_u__5, __pyx_k__5, sizeof(__pyx_k__5), 0, 1, 0, 0}, - {&__pyx_n_s__6, __pyx_k__6, sizeof(__pyx_k__6), 0, 0, 1, 1}, - {&__pyx_n_s_abspath, __pyx_k_abspath, sizeof(__pyx_k_abspath), 0, 0, 1, 1}, - {&__pyx_n_s_append, __pyx_k_append, sizeof(__pyx_k_append), 0, 0, 1, 1}, - {&__pyx_n_s_buf, __pyx_k_buf, sizeof(__pyx_k_buf), 0, 0, 1, 1}, - {&__pyx_n_s_cline_in_traceback, __pyx_k_cline_in_traceback, sizeof(__pyx_k_cline_in_traceback), 0, 0, 1, 1}, - {&__pyx_n_s_compression_method, __pyx_k_compression_method, sizeof(__pyx_k_compression_method), 0, 0, 1, 1}, - {&__pyx_n_s_config, __pyx_k_config, sizeof(__pyx_k_config), 0, 0, 1, 1}, - {&__pyx_n_s_data, __pyx_k_data, sizeof(__pyx_k_data), 0, 0, 1, 1}, - {&__pyx_n_s_data_len, __pyx_k_data_len, sizeof(__pyx_k_data_len), 0, 0, 1, 1}, - {&__pyx_n_s_dirname, __pyx_k_dirname, sizeof(__pyx_k_dirname), 0, 0, 1, 1}, - {&__pyx_n_s_doc, __pyx_k_doc, sizeof(__pyx_k_doc), 0, 0, 1, 1}, - {&__pyx_n_s_eval_fp_str, __pyx_k_eval_fp_str, sizeof(__pyx_k_eval_fp_str), 0, 0, 1, 1}, - {&__pyx_n_s_ext_len, __pyx_k_ext_len, sizeof(__pyx_k_ext_len), 0, 0, 1, 1}, - {&__pyx_n_s_ext_total_len, __pyx_k_ext_total_len, sizeof(__pyx_k_ext_total_len), 0, 0, 1, 1}, - {&__pyx_n_u_extensions, __pyx_k_extensions, sizeof(__pyx_k_extensions), 0, 1, 0, 1}, - {&__pyx_n_s_file, __pyx_k_file, sizeof(__pyx_k_file), 0, 0, 1, 1}, - {&__pyx_n_s_fingerprint, __pyx_k_fingerprint, sizeof(__pyx_k_fingerprint), 0, 0, 1, 1}, - {&__pyx_n_s_fp, __pyx_k_fp, sizeof(__pyx_k_fp), 0, 0, 1, 1}, - {&__pyx_n_s_fp_database, __pyx_k_fp_database, sizeof(__pyx_k_fp_database), 0, 0, 1, 1}, - {&__pyx_n_s_fp_db, __pyx_k_fp_db, sizeof(__pyx_k_fp_db), 0, 0, 1, 1}, - {&__pyx_n_s_fp_h, __pyx_k_fp_h, sizeof(__pyx_k_fp_h), 0, 0, 1, 1}, - {&__pyx_n_s_fp_str, __pyx_k_fp_str, sizeof(__pyx_k_fp_str), 0, 0, 1, 1}, - {&__pyx_n_s_get_cs_from_str, __pyx_k_get_cs_from_str, sizeof(__pyx_k_get_cs_from_str), 0, 0, 1, 1}, - {&__pyx_n_s_get_ext_from_str, __pyx_k_get_ext_from_str, sizeof(__pyx_k_get_ext_from_str), 0, 0, 1, 1}, - {&__pyx_n_s_get_human_readable, __pyx_k_get_human_readable, sizeof(__pyx_k_get_human_readable), 0, 0, 1, 1}, - {&__pyx_n_s_get_version_from_str, __pyx_k_get_version_from_str, sizeof(__pyx_k_get_version_from_str), 0, 0, 1, 1}, - {&__pyx_n_s_hex, __pyx_k_hex, sizeof(__pyx_k_hex), 0, 0, 1, 1}, - {&__pyx_n_s_import, __pyx_k_import, sizeof(__pyx_k_import), 0, 0, 1, 1}, - {&__pyx_n_s_init, __pyx_k_init, sizeof(__pyx_k_init), 0, 0, 1, 1}, - {&__pyx_n_s_lit_fp, __pyx_k_lit_fp, sizeof(__pyx_k_lit_fp), 0, 0, 1, 1}, - {&__pyx_n_s_main, __pyx_k_main, sizeof(__pyx_k_main), 0, 0, 1, 1}, - {&__pyx_n_s_metaclass, __pyx_k_metaclass, sizeof(__pyx_k_metaclass), 0, 0, 1, 1}, - {&__pyx_n_s_mode, __pyx_k_mode, sizeof(__pyx_k_mode), 0, 0, 1, 1}, - {&__pyx_n_s_module, __pyx_k_module, sizeof(__pyx_k_module), 0, 0, 1, 1}, - {&__pyx_n_s_name, __pyx_k_name, sizeof(__pyx_k_name), 0, 0, 1, 1}, - {&__pyx_n_s_offset, __pyx_k_offset, sizeof(__pyx_k_offset), 0, 0, 1, 1}, - {&__pyx_n_s_os, __pyx_k_os, sizeof(__pyx_k_os), 0, 0, 1, 1}, - {&__pyx_n_s_parse_extension, __pyx_k_parse_extension, sizeof(__pyx_k_parse_extension), 0, 0, 1, 1}, - {&__pyx_n_s_path, __pyx_k_path, sizeof(__pyx_k_path), 0, 0, 1, 1}, - {&__pyx_n_s_pmercury_protocols_protocol, __pyx_k_pmercury_protocols_protocol, sizeof(__pyx_k_pmercury_protocols_protocol), 0, 0, 1, 1}, - {&__pyx_n_s_pmercury_protocols_tls_server, __pyx_k_pmercury_protocols_tls_server, sizeof(__pyx_k_pmercury_protocols_tls_server), 0, 0, 1, 1}, - {&__pyx_kp_s_pmercury_protocols_tls_server_py, __pyx_k_pmercury_protocols_tls_server_py, sizeof(__pyx_k_pmercury_protocols_tls_server_py), 0, 0, 1, 0}, - {&__pyx_n_s_pmercury_utils_tls_constants, __pyx_k_pmercury_utils_tls_constants, sizeof(__pyx_k_pmercury_utils_tls_constants), 0, 0, 1, 1}, - {&__pyx_n_s_pmercury_utils_tls_utils, __pyx_k_pmercury_utils_tls_utils, sizeof(__pyx_k_pmercury_utils_tls_utils), 0, 0, 1, 1}, - {&__pyx_n_s_prepare, __pyx_k_prepare, sizeof(__pyx_k_prepare), 0, 0, 1, 1}, - {&__pyx_n_s_proto_identify, __pyx_k_proto_identify, sizeof(__pyx_k_proto_identify), 0, 0, 1, 1}, - {&__pyx_n_s_qualname, __pyx_k_qualname, sizeof(__pyx_k_qualname), 0, 0, 1, 1}, - {&__pyx_n_s_record_length, __pyx_k_record_length, sizeof(__pyx_k_record_length), 0, 0, 1, 1}, - {&__pyx_kp_u_s, __pyx_k_s, sizeof(__pyx_k_s), 0, 1, 0, 0}, - {&__pyx_n_u_selected_cipher_suite, __pyx_k_selected_cipher_suite, sizeof(__pyx_k_selected_cipher_suite), 0, 1, 0, 1}, - {&__pyx_n_s_self, __pyx_k_self, sizeof(__pyx_k_self), 0, 0, 1, 1}, - {&__pyx_n_u_server, __pyx_k_server, sizeof(__pyx_k_server), 0, 1, 0, 1}, - {&__pyx_n_s_session_id_length, __pyx_k_session_id_length, sizeof(__pyx_k_session_id_length), 0, 0, 1, 1}, - {&__pyx_n_s_staticmethod, __pyx_k_staticmethod, sizeof(__pyx_k_staticmethod), 0, 0, 1, 1}, - {&__pyx_n_s_sys, __pyx_k_sys, sizeof(__pyx_k_sys), 0, 0, 1, 1}, - {&__pyx_n_s_test, __pyx_k_test, sizeof(__pyx_k_test), 0, 0, 1, 1}, - {&__pyx_n_s_tmp_fp_ext, __pyx_k_tmp_fp_ext, sizeof(__pyx_k_tmp_fp_ext), 0, 0, 1, 1}, - {&__pyx_n_u_version, __pyx_k_version, sizeof(__pyx_k_version), 0, 1, 0, 1}, - {0, 0, 0, 0, 0, 0, 0} -}; -static CYTHON_SMALL_CODE int __Pyx_InitCachedBuiltins(void) { - __pyx_builtin_staticmethod = __Pyx_GetBuiltinName(__pyx_n_s_staticmethod); if (!__pyx_builtin_staticmethod) __PYX_ERR(0, 38, __pyx_L1_error) - return 0; - __pyx_L1_error:; - return -1; -} - -static CYTHON_SMALL_CODE int __Pyx_InitCachedConstants(void) { - __Pyx_RefNannyDeclarations - __Pyx_RefNannySetupContext("__Pyx_InitCachedConstants", 0); - - /* "pmercury/protocols/tls_server.pyx":72 - * record_length -= 1 + session_id_length - * if offset >= data_len: - * return None, None # <<<<<<<<<<<<<< - * - * # parse selected_cipher_suite - */ - __pyx_tuple__3 = PyTuple_Pack(2, Py_None, Py_None); if (unlikely(!__pyx_tuple__3)) __PYX_ERR(0, 72, __pyx_L1_error) - __Pyx_GOTREF(__pyx_tuple__3); - __Pyx_GIVEREF(__pyx_tuple__3); - - /* "pmercury/protocols/tls_server.pyx":33 - * class TLS_Server(Protocol): - * - * def __init__(self, fp_database=None, config=None): # <<<<<<<<<<<<<< - * # populate fingerprint databases - * self.fp_db = {} - */ - __pyx_tuple__7 = PyTuple_Pack(3, __pyx_n_s_self, __pyx_n_s_fp_database, __pyx_n_s_config); if (unlikely(!__pyx_tuple__7)) __PYX_ERR(0, 33, __pyx_L1_error) - __Pyx_GOTREF(__pyx_tuple__7); - __Pyx_GIVEREF(__pyx_tuple__7); - __pyx_codeobj__8 = (PyObject*)__Pyx_PyCode_New(3, 0, 3, 0, CO_OPTIMIZED|CO_NEWLOCALS, __pyx_empty_bytes, __pyx_empty_tuple, __pyx_empty_tuple, __pyx_tuple__7, __pyx_empty_tuple, __pyx_empty_tuple, __pyx_kp_s_pmercury_protocols_tls_server_py, __pyx_n_s_init, 33, __pyx_empty_bytes); if (unlikely(!__pyx_codeobj__8)) __PYX_ERR(0, 33, __pyx_L1_error) - __pyx_tuple__9 = PyTuple_Pack(2, ((PyObject *)Py_None), ((PyObject *)Py_None)); if (unlikely(!__pyx_tuple__9)) __PYX_ERR(0, 33, __pyx_L1_error) - __Pyx_GOTREF(__pyx_tuple__9); - __Pyx_GIVEREF(__pyx_tuple__9); - - /* "pmercury/protocols/tls_server.pyx":39 - * - * @staticmethod - * def proto_identify(data, offset, data_len): # <<<<<<<<<<<<<< - * if data_len-offset < 16: - * return False - */ - __pyx_tuple__10 = PyTuple_Pack(3, __pyx_n_s_data, __pyx_n_s_offset, __pyx_n_s_data_len); if (unlikely(!__pyx_tuple__10)) __PYX_ERR(0, 39, __pyx_L1_error) - __Pyx_GOTREF(__pyx_tuple__10); - __Pyx_GIVEREF(__pyx_tuple__10); - __pyx_codeobj__11 = (PyObject*)__Pyx_PyCode_New(3, 0, 3, 0, CO_OPTIMIZED|CO_NEWLOCALS, __pyx_empty_bytes, __pyx_empty_tuple, __pyx_empty_tuple, __pyx_tuple__10, __pyx_empty_tuple, __pyx_empty_tuple, __pyx_kp_s_pmercury_protocols_tls_server_py, __pyx_n_s_proto_identify, 39, __pyx_empty_bytes); if (unlikely(!__pyx_codeobj__11)) __PYX_ERR(0, 39, __pyx_L1_error) - - /* "pmercury/protocols/tls_server.pyx":53 - * - * @staticmethod - * def fingerprint(bytes data, unsigned int offset, unsigned int data_len): # <<<<<<<<<<<<<< - * cdef unsigned char *buf = data - * offset += 5 - */ - __pyx_tuple__12 = PyTuple_Pack(11, __pyx_n_s_data, __pyx_n_s_offset, __pyx_n_s_data_len, __pyx_n_s_buf, __pyx_n_s_record_length, __pyx_n_s_fp, __pyx_n_s_session_id_length, __pyx_n_s_compression_method, __pyx_n_s_ext_total_len, __pyx_n_s_tmp_fp_ext, __pyx_n_s_ext_len); if (unlikely(!__pyx_tuple__12)) __PYX_ERR(0, 53, __pyx_L1_error) - __Pyx_GOTREF(__pyx_tuple__12); - __Pyx_GIVEREF(__pyx_tuple__12); - __pyx_codeobj__13 = (PyObject*)__Pyx_PyCode_New(3, 0, 11, 0, CO_OPTIMIZED|CO_NEWLOCALS, __pyx_empty_bytes, __pyx_empty_tuple, __pyx_empty_tuple, __pyx_tuple__12, __pyx_empty_tuple, __pyx_empty_tuple, __pyx_kp_s_pmercury_protocols_tls_server_py, __pyx_n_s_fingerprint, 53, __pyx_empty_bytes); if (unlikely(!__pyx_codeobj__13)) __PYX_ERR(0, 53, __pyx_L1_error) - - /* "pmercury/protocols/tls_server.pyx":110 - * - * - * def get_human_readable(self, fp_str_): # <<<<<<<<<<<<<< - * lit_fp = eval_fp_str(fp_str_) - * - */ - __pyx_tuple__14 = PyTuple_Pack(4, __pyx_n_s_self, __pyx_n_s_fp_str, __pyx_n_s_lit_fp, __pyx_n_s_fp_h); if (unlikely(!__pyx_tuple__14)) __PYX_ERR(0, 110, __pyx_L1_error) - __Pyx_GOTREF(__pyx_tuple__14); - __Pyx_GIVEREF(__pyx_tuple__14); - __pyx_codeobj__15 = (PyObject*)__Pyx_PyCode_New(2, 0, 4, 0, CO_OPTIMIZED|CO_NEWLOCALS, __pyx_empty_bytes, __pyx_empty_tuple, __pyx_empty_tuple, __pyx_tuple__14, __pyx_empty_tuple, __pyx_empty_tuple, __pyx_kp_s_pmercury_protocols_tls_server_py, __pyx_n_s_get_human_readable, 110, __pyx_empty_bytes); if (unlikely(!__pyx_codeobj__15)) __PYX_ERR(0, 110, __pyx_L1_error) - __Pyx_RefNannyFinishContext(); - return 0; - __pyx_L1_error:; - __Pyx_RefNannyFinishContext(); - return -1; -} - -static CYTHON_SMALL_CODE int __Pyx_InitGlobals(void) { - if (__Pyx_InitStrings(__pyx_string_tab) < 0) __PYX_ERR(0, 1, __pyx_L1_error); - __pyx_int_1 = PyInt_FromLong(1); if (unlikely(!__pyx_int_1)) __PYX_ERR(0, 1, __pyx_L1_error) - __pyx_int_2 = PyInt_FromLong(2); if (unlikely(!__pyx_int_2)) __PYX_ERR(0, 1, __pyx_L1_error) - __pyx_int_3 = PyInt_FromLong(3); if (unlikely(!__pyx_int_3)) __PYX_ERR(0, 1, __pyx_L1_error) - __pyx_int_5 = PyInt_FromLong(5); if (unlikely(!__pyx_int_5)) __PYX_ERR(0, 1, __pyx_L1_error) - __pyx_int_9 = PyInt_FromLong(9); if (unlikely(!__pyx_int_9)) __PYX_ERR(0, 1, __pyx_L1_error) - __pyx_int_10 = PyInt_FromLong(10); if (unlikely(!__pyx_int_10)) __PYX_ERR(0, 1, __pyx_L1_error) - __pyx_int_16 = PyInt_FromLong(16); if (unlikely(!__pyx_int_16)) __PYX_ERR(0, 1, __pyx_L1_error) - __pyx_int_22 = PyInt_FromLong(22); if (unlikely(!__pyx_int_22)) __PYX_ERR(0, 1, __pyx_L1_error) - __pyx_int_16777216 = PyInt_FromLong(16777216L); if (unlikely(!__pyx_int_16777216)) __PYX_ERR(0, 1, __pyx_L1_error) - return 0; - __pyx_L1_error:; - return -1; -} - -static CYTHON_SMALL_CODE int __Pyx_modinit_global_init_code(void); /*proto*/ -static CYTHON_SMALL_CODE int __Pyx_modinit_variable_export_code(void); /*proto*/ -static CYTHON_SMALL_CODE int __Pyx_modinit_function_export_code(void); /*proto*/ -static CYTHON_SMALL_CODE int __Pyx_modinit_type_init_code(void); /*proto*/ -static CYTHON_SMALL_CODE int __Pyx_modinit_type_import_code(void); /*proto*/ -static CYTHON_SMALL_CODE int __Pyx_modinit_variable_import_code(void); /*proto*/ -static CYTHON_SMALL_CODE int __Pyx_modinit_function_import_code(void); /*proto*/ - -static int __Pyx_modinit_global_init_code(void) { - __Pyx_RefNannyDeclarations - __Pyx_RefNannySetupContext("__Pyx_modinit_global_init_code", 0); - /*--- Global init code ---*/ - __Pyx_RefNannyFinishContext(); - return 0; -} - -static int __Pyx_modinit_variable_export_code(void) { - __Pyx_RefNannyDeclarations - __Pyx_RefNannySetupContext("__Pyx_modinit_variable_export_code", 0); - /*--- Variable export code ---*/ - __Pyx_RefNannyFinishContext(); - return 0; -} - -static int __Pyx_modinit_function_export_code(void) { - __Pyx_RefNannyDeclarations - __Pyx_RefNannySetupContext("__Pyx_modinit_function_export_code", 0); - /*--- Function export code ---*/ - __Pyx_RefNannyFinishContext(); - return 0; -} - -static int __Pyx_modinit_type_init_code(void) { - __Pyx_RefNannyDeclarations - __Pyx_RefNannySetupContext("__Pyx_modinit_type_init_code", 0); - /*--- Type init code ---*/ - __Pyx_RefNannyFinishContext(); - return 0; -} - -static int __Pyx_modinit_type_import_code(void) { - __Pyx_RefNannyDeclarations - __Pyx_RefNannySetupContext("__Pyx_modinit_type_import_code", 0); - /*--- Type import code ---*/ - __Pyx_RefNannyFinishContext(); - return 0; -} - -static int __Pyx_modinit_variable_import_code(void) { - __Pyx_RefNannyDeclarations - __Pyx_RefNannySetupContext("__Pyx_modinit_variable_import_code", 0); - /*--- Variable import code ---*/ - __Pyx_RefNannyFinishContext(); - return 0; -} - -static int __Pyx_modinit_function_import_code(void) { - __Pyx_RefNannyDeclarations - __Pyx_RefNannySetupContext("__Pyx_modinit_function_import_code", 0); - /*--- Function import code ---*/ - __Pyx_RefNannyFinishContext(); - return 0; -} - - -#if PY_MAJOR_VERSION < 3 -#ifdef CYTHON_NO_PYINIT_EXPORT -#define __Pyx_PyMODINIT_FUNC void -#else -#define __Pyx_PyMODINIT_FUNC PyMODINIT_FUNC -#endif -#else -#ifdef CYTHON_NO_PYINIT_EXPORT -#define __Pyx_PyMODINIT_FUNC PyObject * -#else -#define __Pyx_PyMODINIT_FUNC PyMODINIT_FUNC -#endif -#endif - - -#if PY_MAJOR_VERSION < 3 -__Pyx_PyMODINIT_FUNC inittls_server(void) CYTHON_SMALL_CODE; /*proto*/ -__Pyx_PyMODINIT_FUNC inittls_server(void) -#else -__Pyx_PyMODINIT_FUNC PyInit_tls_server(void) CYTHON_SMALL_CODE; /*proto*/ -__Pyx_PyMODINIT_FUNC PyInit_tls_server(void) -#if CYTHON_PEP489_MULTI_PHASE_INIT -{ - return PyModuleDef_Init(&__pyx_moduledef); -} -static CYTHON_SMALL_CODE int __Pyx_check_single_interpreter(void) { - #if PY_VERSION_HEX >= 0x030700A1 - static PY_INT64_T main_interpreter_id = -1; - PY_INT64_T current_id = PyInterpreterState_GetID(PyThreadState_Get()->interp); - if (main_interpreter_id == -1) { - main_interpreter_id = current_id; - return (unlikely(current_id == -1)) ? -1 : 0; - } else if (unlikely(main_interpreter_id != current_id)) - #else - static PyInterpreterState *main_interpreter = NULL; - PyInterpreterState *current_interpreter = PyThreadState_Get()->interp; - if (!main_interpreter) { - main_interpreter = current_interpreter; - } else if (unlikely(main_interpreter != current_interpreter)) - #endif - { - PyErr_SetString( - PyExc_ImportError, - "Interpreter change detected - this module can only be loaded into one interpreter per process."); - return -1; - } - return 0; -} -static CYTHON_SMALL_CODE int __Pyx_copy_spec_to_module(PyObject *spec, PyObject *moddict, const char* from_name, const char* to_name, int allow_none) { - PyObject *value = PyObject_GetAttrString(spec, from_name); - int result = 0; - if (likely(value)) { - if (allow_none || value != Py_None) { - result = PyDict_SetItemString(moddict, to_name, value); - } - Py_DECREF(value); - } else if (PyErr_ExceptionMatches(PyExc_AttributeError)) { - PyErr_Clear(); - } else { - result = -1; - } - return result; -} -static CYTHON_SMALL_CODE PyObject* __pyx_pymod_create(PyObject *spec, CYTHON_UNUSED PyModuleDef *def) { - PyObject *module = NULL, *moddict, *modname; - if (__Pyx_check_single_interpreter()) - return NULL; - if (__pyx_m) - return __Pyx_NewRef(__pyx_m); - modname = PyObject_GetAttrString(spec, "name"); - if (unlikely(!modname)) goto bad; - module = PyModule_NewObject(modname); - Py_DECREF(modname); - if (unlikely(!module)) goto bad; - moddict = PyModule_GetDict(module); - if (unlikely(!moddict)) goto bad; - if (unlikely(__Pyx_copy_spec_to_module(spec, moddict, "loader", "__loader__", 1) < 0)) goto bad; - if (unlikely(__Pyx_copy_spec_to_module(spec, moddict, "origin", "__file__", 1) < 0)) goto bad; - if (unlikely(__Pyx_copy_spec_to_module(spec, moddict, "parent", "__package__", 1) < 0)) goto bad; - if (unlikely(__Pyx_copy_spec_to_module(spec, moddict, "submodule_search_locations", "__path__", 0) < 0)) goto bad; - return module; -bad: - Py_XDECREF(module); - return NULL; -} - - -static CYTHON_SMALL_CODE int __pyx_pymod_exec_tls_server(PyObject *__pyx_pyinit_module) -#endif -#endif -{ - PyObject *__pyx_t_1 = NULL; - PyObject *__pyx_t_2 = NULL; - PyObject *__pyx_t_3 = NULL; - PyObject *__pyx_t_4 = NULL; - PyObject *__pyx_t_5 = NULL; - int __pyx_t_6; - __Pyx_RefNannyDeclarations - #if CYTHON_PEP489_MULTI_PHASE_INIT - if (__pyx_m) { - if (__pyx_m == __pyx_pyinit_module) return 0; - PyErr_SetString(PyExc_RuntimeError, "Module 'tls_server' has already been imported. Re-initialisation is not supported."); - return -1; - } - #elif PY_MAJOR_VERSION >= 3 - if (__pyx_m) return __Pyx_NewRef(__pyx_m); - #endif - #if CYTHON_REFNANNY -__Pyx_RefNanny = __Pyx_RefNannyImportAPI("refnanny"); -if (!__Pyx_RefNanny) { - PyErr_Clear(); - __Pyx_RefNanny = __Pyx_RefNannyImportAPI("Cython.Runtime.refnanny"); - if (!__Pyx_RefNanny) - Py_FatalError("failed to import 'refnanny' module"); -} -#endif - __Pyx_RefNannySetupContext("__Pyx_PyMODINIT_FUNC PyInit_tls_server(void)", 0); - if (__Pyx_check_binary_version() < 0) __PYX_ERR(0, 1, __pyx_L1_error) - #ifdef __Pxy_PyFrame_Initialize_Offsets - __Pxy_PyFrame_Initialize_Offsets(); - #endif - __pyx_empty_tuple = PyTuple_New(0); if (unlikely(!__pyx_empty_tuple)) __PYX_ERR(0, 1, __pyx_L1_error) - __pyx_empty_bytes = PyBytes_FromStringAndSize("", 0); if (unlikely(!__pyx_empty_bytes)) __PYX_ERR(0, 1, __pyx_L1_error) - __pyx_empty_unicode = PyUnicode_FromStringAndSize("", 0); if (unlikely(!__pyx_empty_unicode)) __PYX_ERR(0, 1, __pyx_L1_error) - #ifdef __Pyx_CyFunction_USED - if (__pyx_CyFunction_init() < 0) __PYX_ERR(0, 1, __pyx_L1_error) - #endif - #ifdef __Pyx_FusedFunction_USED - if (__pyx_FusedFunction_init() < 0) __PYX_ERR(0, 1, __pyx_L1_error) - #endif - #ifdef __Pyx_Coroutine_USED - if (__pyx_Coroutine_init() < 0) __PYX_ERR(0, 1, __pyx_L1_error) - #endif - #ifdef __Pyx_Generator_USED - if (__pyx_Generator_init() < 0) __PYX_ERR(0, 1, __pyx_L1_error) - #endif - #ifdef __Pyx_AsyncGen_USED - if (__pyx_AsyncGen_init() < 0) __PYX_ERR(0, 1, __pyx_L1_error) - #endif - #ifdef __Pyx_StopAsyncIteration_USED - if (__pyx_StopAsyncIteration_init() < 0) __PYX_ERR(0, 1, __pyx_L1_error) - #endif - /*--- Library function declarations ---*/ - /*--- Threads initialization code ---*/ - #if defined(__PYX_FORCE_INIT_THREADS) && __PYX_FORCE_INIT_THREADS - #ifdef WITH_THREAD /* Python build with threading support? */ - PyEval_InitThreads(); - #endif - #endif - /*--- Module creation code ---*/ - #if CYTHON_PEP489_MULTI_PHASE_INIT - __pyx_m = __pyx_pyinit_module; - Py_INCREF(__pyx_m); - #else - #if PY_MAJOR_VERSION < 3 - __pyx_m = Py_InitModule4("tls_server", __pyx_methods, __pyx_k_Copyright_c_2019_Cisco_Systems, 0, PYTHON_API_VERSION); Py_XINCREF(__pyx_m); - #else - __pyx_m = PyModule_Create(&__pyx_moduledef); - #endif - if (unlikely(!__pyx_m)) __PYX_ERR(0, 1, __pyx_L1_error) - #endif - __pyx_d = PyModule_GetDict(__pyx_m); if (unlikely(!__pyx_d)) __PYX_ERR(0, 1, __pyx_L1_error) - Py_INCREF(__pyx_d); - __pyx_b = PyImport_AddModule(__Pyx_BUILTIN_MODULE_NAME); if (unlikely(!__pyx_b)) __PYX_ERR(0, 1, __pyx_L1_error) - Py_INCREF(__pyx_b); - __pyx_cython_runtime = PyImport_AddModule((char *) "cython_runtime"); if (unlikely(!__pyx_cython_runtime)) __PYX_ERR(0, 1, __pyx_L1_error) - Py_INCREF(__pyx_cython_runtime); - if (PyObject_SetAttrString(__pyx_m, "__builtins__", __pyx_b) < 0) __PYX_ERR(0, 1, __pyx_L1_error); - /*--- Initialize various global constants etc. ---*/ - if (__Pyx_InitGlobals() < 0) __PYX_ERR(0, 1, __pyx_L1_error) - #if PY_MAJOR_VERSION < 3 && (__PYX_DEFAULT_STRING_ENCODING_IS_ASCII || __PYX_DEFAULT_STRING_ENCODING_IS_DEFAULT) - if (__Pyx_init_sys_getdefaultencoding_params() < 0) __PYX_ERR(0, 1, __pyx_L1_error) - #endif - if (__pyx_module_is_main_pmercury__protocols__tls_server) { - if (PyObject_SetAttr(__pyx_m, __pyx_n_s_name, __pyx_n_s_main) < 0) __PYX_ERR(0, 1, __pyx_L1_error) - } - #if PY_MAJOR_VERSION >= 3 - { - PyObject *modules = PyImport_GetModuleDict(); if (unlikely(!modules)) __PYX_ERR(0, 1, __pyx_L1_error) - if (!PyDict_GetItemString(modules, "pmercury.protocols.tls_server")) { - if (unlikely(PyDict_SetItemString(modules, "pmercury.protocols.tls_server", __pyx_m) < 0)) __PYX_ERR(0, 1, __pyx_L1_error) - } - } - #endif - /*--- Builtin init code ---*/ - if (__Pyx_InitCachedBuiltins() < 0) goto __pyx_L1_error; - /*--- Constants init code ---*/ - if (__Pyx_InitCachedConstants() < 0) goto __pyx_L1_error; - /*--- Global type/function init code ---*/ - (void)__Pyx_modinit_global_init_code(); - (void)__Pyx_modinit_variable_export_code(); - (void)__Pyx_modinit_function_export_code(); - (void)__Pyx_modinit_type_init_code(); - (void)__Pyx_modinit_type_import_code(); - (void)__Pyx_modinit_variable_import_code(); - (void)__Pyx_modinit_function_import_code(); - /*--- Execution code ---*/ - #if defined(__Pyx_Generator_USED) || defined(__Pyx_Coroutine_USED) - if (__Pyx_patch_abc() < 0) __PYX_ERR(0, 1, __pyx_L1_error) - #endif - - /* "pmercury/protocols/tls_server.pyx":8 - * """ - * - * import os # <<<<<<<<<<<<<< - * import sys - * - */ - __pyx_t_1 = __Pyx_Import(__pyx_n_s_os, 0, 0); if (unlikely(!__pyx_t_1)) __PYX_ERR(0, 8, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_1); - if (PyDict_SetItem(__pyx_d, __pyx_n_s_os, __pyx_t_1) < 0) __PYX_ERR(0, 8, __pyx_L1_error) - __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0; - - /* "pmercury/protocols/tls_server.pyx":9 - * - * import os - * import sys # <<<<<<<<<<<<<< - * - * sys.path.append(os.path.dirname(os.path.abspath(__file__))) - */ - __pyx_t_1 = __Pyx_Import(__pyx_n_s_sys, 0, 0); if (unlikely(!__pyx_t_1)) __PYX_ERR(0, 9, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_1); - if (PyDict_SetItem(__pyx_d, __pyx_n_s_sys, __pyx_t_1) < 0) __PYX_ERR(0, 9, __pyx_L1_error) - __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0; - - /* "pmercury/protocols/tls_server.pyx":11 - * import sys - * - * sys.path.append(os.path.dirname(os.path.abspath(__file__))) # <<<<<<<<<<<<<< - * sys.path.append(os.path.dirname(os.path.abspath(__file__))+'/../') - * from pmercury.utils.tls_utils import * - */ - __Pyx_GetModuleGlobalName(__pyx_t_1, __pyx_n_s_sys); if (unlikely(!__pyx_t_1)) __PYX_ERR(0, 11, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_1); - __pyx_t_2 = __Pyx_PyObject_GetAttrStr(__pyx_t_1, __pyx_n_s_path); if (unlikely(!__pyx_t_2)) __PYX_ERR(0, 11, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_2); - __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0; - __Pyx_GetModuleGlobalName(__pyx_t_1, __pyx_n_s_os); if (unlikely(!__pyx_t_1)) __PYX_ERR(0, 11, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_1); - __pyx_t_3 = __Pyx_PyObject_GetAttrStr(__pyx_t_1, __pyx_n_s_path); if (unlikely(!__pyx_t_3)) __PYX_ERR(0, 11, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_3); - __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0; - __pyx_t_1 = __Pyx_PyObject_GetAttrStr(__pyx_t_3, __pyx_n_s_dirname); if (unlikely(!__pyx_t_1)) __PYX_ERR(0, 11, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_1); - __Pyx_DECREF(__pyx_t_3); __pyx_t_3 = 0; - __Pyx_GetModuleGlobalName(__pyx_t_3, __pyx_n_s_os); if (unlikely(!__pyx_t_3)) __PYX_ERR(0, 11, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_3); - __pyx_t_4 = __Pyx_PyObject_GetAttrStr(__pyx_t_3, __pyx_n_s_path); if (unlikely(!__pyx_t_4)) __PYX_ERR(0, 11, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_4); - __Pyx_DECREF(__pyx_t_3); __pyx_t_3 = 0; - __pyx_t_3 = __Pyx_PyObject_GetAttrStr(__pyx_t_4, __pyx_n_s_abspath); if (unlikely(!__pyx_t_3)) __PYX_ERR(0, 11, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_3); - __Pyx_DECREF(__pyx_t_4); __pyx_t_4 = 0; - __Pyx_GetModuleGlobalName(__pyx_t_4, __pyx_n_s_file); if (unlikely(!__pyx_t_4)) __PYX_ERR(0, 11, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_4); - __pyx_t_5 = __Pyx_PyObject_CallOneArg(__pyx_t_3, __pyx_t_4); if (unlikely(!__pyx_t_5)) __PYX_ERR(0, 11, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_5); - __Pyx_DECREF(__pyx_t_3); __pyx_t_3 = 0; - __Pyx_DECREF(__pyx_t_4); __pyx_t_4 = 0; - __pyx_t_4 = __Pyx_PyObject_CallOneArg(__pyx_t_1, __pyx_t_5); if (unlikely(!__pyx_t_4)) __PYX_ERR(0, 11, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_4); - __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0; - __Pyx_DECREF(__pyx_t_5); __pyx_t_5 = 0; - __pyx_t_6 = __Pyx_PyObject_Append(__pyx_t_2, __pyx_t_4); if (unlikely(__pyx_t_6 == ((int)-1))) __PYX_ERR(0, 11, __pyx_L1_error) - __Pyx_DECREF(__pyx_t_2); __pyx_t_2 = 0; - __Pyx_DECREF(__pyx_t_4); __pyx_t_4 = 0; - - /* "pmercury/protocols/tls_server.pyx":12 - * - * sys.path.append(os.path.dirname(os.path.abspath(__file__))) - * sys.path.append(os.path.dirname(os.path.abspath(__file__))+'/../') # <<<<<<<<<<<<<< - * from pmercury.utils.tls_utils import * - * from pmercury.utils.tls_constants import * - */ - __Pyx_GetModuleGlobalName(__pyx_t_4, __pyx_n_s_sys); if (unlikely(!__pyx_t_4)) __PYX_ERR(0, 12, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_4); - __pyx_t_2 = __Pyx_PyObject_GetAttrStr(__pyx_t_4, __pyx_n_s_path); if (unlikely(!__pyx_t_2)) __PYX_ERR(0, 12, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_2); - __Pyx_DECREF(__pyx_t_4); __pyx_t_4 = 0; - __Pyx_GetModuleGlobalName(__pyx_t_4, __pyx_n_s_os); if (unlikely(!__pyx_t_4)) __PYX_ERR(0, 12, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_4); - __pyx_t_5 = __Pyx_PyObject_GetAttrStr(__pyx_t_4, __pyx_n_s_path); if (unlikely(!__pyx_t_5)) __PYX_ERR(0, 12, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_5); - __Pyx_DECREF(__pyx_t_4); __pyx_t_4 = 0; - __pyx_t_4 = __Pyx_PyObject_GetAttrStr(__pyx_t_5, __pyx_n_s_dirname); if (unlikely(!__pyx_t_4)) __PYX_ERR(0, 12, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_4); - __Pyx_DECREF(__pyx_t_5); __pyx_t_5 = 0; - __Pyx_GetModuleGlobalName(__pyx_t_5, __pyx_n_s_os); if (unlikely(!__pyx_t_5)) __PYX_ERR(0, 12, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_5); - __pyx_t_1 = __Pyx_PyObject_GetAttrStr(__pyx_t_5, __pyx_n_s_path); if (unlikely(!__pyx_t_1)) __PYX_ERR(0, 12, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_1); - __Pyx_DECREF(__pyx_t_5); __pyx_t_5 = 0; - __pyx_t_5 = __Pyx_PyObject_GetAttrStr(__pyx_t_1, __pyx_n_s_abspath); if (unlikely(!__pyx_t_5)) __PYX_ERR(0, 12, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_5); - __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0; - __Pyx_GetModuleGlobalName(__pyx_t_1, __pyx_n_s_file); if (unlikely(!__pyx_t_1)) __PYX_ERR(0, 12, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_1); - __pyx_t_3 = __Pyx_PyObject_CallOneArg(__pyx_t_5, __pyx_t_1); if (unlikely(!__pyx_t_3)) __PYX_ERR(0, 12, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_3); - __Pyx_DECREF(__pyx_t_5); __pyx_t_5 = 0; - __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0; - __pyx_t_1 = __Pyx_PyObject_CallOneArg(__pyx_t_4, __pyx_t_3); if (unlikely(!__pyx_t_1)) __PYX_ERR(0, 12, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_1); - __Pyx_DECREF(__pyx_t_4); __pyx_t_4 = 0; - __Pyx_DECREF(__pyx_t_3); __pyx_t_3 = 0; - __pyx_t_3 = PyNumber_Add(__pyx_t_1, __pyx_kp_u__5); if (unlikely(!__pyx_t_3)) __PYX_ERR(0, 12, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_3); - __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0; - __pyx_t_6 = __Pyx_PyObject_Append(__pyx_t_2, __pyx_t_3); if (unlikely(__pyx_t_6 == ((int)-1))) __PYX_ERR(0, 12, __pyx_L1_error) - __Pyx_DECREF(__pyx_t_2); __pyx_t_2 = 0; - __Pyx_DECREF(__pyx_t_3); __pyx_t_3 = 0; - - /* "pmercury/protocols/tls_server.pyx":13 - * sys.path.append(os.path.dirname(os.path.abspath(__file__))) - * sys.path.append(os.path.dirname(os.path.abspath(__file__))+'/../') - * from pmercury.utils.tls_utils import * # <<<<<<<<<<<<<< - * from pmercury.utils.tls_constants import * - * from pmercury.protocols.protocol import Protocol - */ - __pyx_t_3 = PyList_New(1); if (unlikely(!__pyx_t_3)) __PYX_ERR(0, 13, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_3); - __Pyx_INCREF(__pyx_n_s__6); - __Pyx_GIVEREF(__pyx_n_s__6); - PyList_SET_ITEM(__pyx_t_3, 0, __pyx_n_s__6); - __pyx_t_2 = __Pyx_Import(__pyx_n_s_pmercury_utils_tls_utils, __pyx_t_3, 0); if (unlikely(!__pyx_t_2)) __PYX_ERR(0, 13, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_2); - __Pyx_DECREF(__pyx_t_3); __pyx_t_3 = 0; - if (__pyx_import_star(__pyx_t_2) < 0) __PYX_ERR(0, 13, __pyx_L1_error); - __Pyx_DECREF(__pyx_t_2); __pyx_t_2 = 0; - - /* "pmercury/protocols/tls_server.pyx":14 - * sys.path.append(os.path.dirname(os.path.abspath(__file__))+'/../') - * from pmercury.utils.tls_utils import * - * from pmercury.utils.tls_constants import * # <<<<<<<<<<<<<< - * from pmercury.protocols.protocol import Protocol - * - */ - __pyx_t_2 = PyList_New(1); if (unlikely(!__pyx_t_2)) __PYX_ERR(0, 14, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_2); - __Pyx_INCREF(__pyx_n_s__6); - __Pyx_GIVEREF(__pyx_n_s__6); - PyList_SET_ITEM(__pyx_t_2, 0, __pyx_n_s__6); - __pyx_t_3 = __Pyx_Import(__pyx_n_s_pmercury_utils_tls_constants, __pyx_t_2, 0); if (unlikely(!__pyx_t_3)) __PYX_ERR(0, 14, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_3); - __Pyx_DECREF(__pyx_t_2); __pyx_t_2 = 0; - if (__pyx_import_star(__pyx_t_3) < 0) __PYX_ERR(0, 14, __pyx_L1_error); - __Pyx_DECREF(__pyx_t_3); __pyx_t_3 = 0; - - /* "pmercury/protocols/tls_server.pyx":15 - * from pmercury.utils.tls_utils import * - * from pmercury.utils.tls_constants import * - * from pmercury.protocols.protocol import Protocol # <<<<<<<<<<<<<< - * - * from cython.operator cimport dereference as deref - */ - __pyx_t_3 = PyList_New(1); if (unlikely(!__pyx_t_3)) __PYX_ERR(0, 15, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_3); - __Pyx_INCREF(__pyx_n_s_Protocol); - __Pyx_GIVEREF(__pyx_n_s_Protocol); - PyList_SET_ITEM(__pyx_t_3, 0, __pyx_n_s_Protocol); - __pyx_t_2 = __Pyx_Import(__pyx_n_s_pmercury_protocols_protocol, __pyx_t_3, 0); if (unlikely(!__pyx_t_2)) __PYX_ERR(0, 15, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_2); - __Pyx_DECREF(__pyx_t_3); __pyx_t_3 = 0; - __pyx_t_3 = __Pyx_ImportFrom(__pyx_t_2, __pyx_n_s_Protocol); if (unlikely(!__pyx_t_3)) __PYX_ERR(0, 15, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_3); - if (PyDict_SetItem(__pyx_d, __pyx_n_s_Protocol, __pyx_t_3) < 0) __PYX_ERR(0, 15, __pyx_L1_error) - __Pyx_DECREF(__pyx_t_3); __pyx_t_3 = 0; - __Pyx_DECREF(__pyx_t_2); __pyx_t_2 = 0; - - /* "pmercury/protocols/tls_server.pyx":28 - * - * - * MAX_CACHED_RESULTS = 2**24 # <<<<<<<<<<<<<< - * - * - */ - if (PyDict_SetItem(__pyx_d, __pyx_n_s_MAX_CACHED_RESULTS, __pyx_int_16777216) < 0) __PYX_ERR(0, 28, __pyx_L1_error) - - /* "pmercury/protocols/tls_server.pyx":31 - * - * - * class TLS_Server(Protocol): # <<<<<<<<<<<<<< - * - * def __init__(self, fp_database=None, config=None): - */ - __Pyx_GetModuleGlobalName(__pyx_t_2, __pyx_n_s_Protocol); if (unlikely(!__pyx_t_2)) __PYX_ERR(0, 31, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_2); - __pyx_t_3 = PyTuple_New(1); if (unlikely(!__pyx_t_3)) __PYX_ERR(0, 31, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_3); - __Pyx_GIVEREF(__pyx_t_2); - PyTuple_SET_ITEM(__pyx_t_3, 0, __pyx_t_2); - __pyx_t_2 = 0; - __pyx_t_2 = __Pyx_CalculateMetaclass(NULL, __pyx_t_3); if (unlikely(!__pyx_t_2)) __PYX_ERR(0, 31, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_2); - __pyx_t_1 = __Pyx_Py3MetaclassPrepare(__pyx_t_2, __pyx_t_3, __pyx_n_s_TLS_Server, __pyx_n_s_TLS_Server, (PyObject *) NULL, __pyx_n_s_pmercury_protocols_tls_server, (PyObject *) NULL); if (unlikely(!__pyx_t_1)) __PYX_ERR(0, 31, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_1); - - /* "pmercury/protocols/tls_server.pyx":33 - * class TLS_Server(Protocol): - * - * def __init__(self, fp_database=None, config=None): # <<<<<<<<<<<<<< - * # populate fingerprint databases - * self.fp_db = {} - */ - __pyx_t_4 = __Pyx_CyFunction_NewEx(&__pyx_mdef_8pmercury_9protocols_10tls_server_10TLS_Server_1__init__, 0, __pyx_n_s_TLS_Server___init, NULL, __pyx_n_s_pmercury_protocols_tls_server, __pyx_d, ((PyObject *)__pyx_codeobj__8)); if (unlikely(!__pyx_t_4)) __PYX_ERR(0, 33, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_4); - __Pyx_CyFunction_SetDefaultsTuple(__pyx_t_4, __pyx_tuple__9); - if (__Pyx_SetNameInClass(__pyx_t_1, __pyx_n_s_init, __pyx_t_4) < 0) __PYX_ERR(0, 33, __pyx_L1_error) - __Pyx_DECREF(__pyx_t_4); __pyx_t_4 = 0; - - /* "pmercury/protocols/tls_server.pyx":39 - * - * @staticmethod - * def proto_identify(data, offset, data_len): # <<<<<<<<<<<<<< - * if data_len-offset < 16: - * return False - */ - __pyx_t_4 = __Pyx_CyFunction_NewEx(&__pyx_mdef_8pmercury_9protocols_10tls_server_10TLS_Server_3proto_identify, __Pyx_CYFUNCTION_STATICMETHOD, __pyx_n_s_TLS_Server_proto_identify, NULL, __pyx_n_s_pmercury_protocols_tls_server, __pyx_d, ((PyObject *)__pyx_codeobj__11)); if (unlikely(!__pyx_t_4)) __PYX_ERR(0, 39, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_4); - - /* "pmercury/protocols/tls_server.pyx":38 - * - * - * @staticmethod # <<<<<<<<<<<<<< - * def proto_identify(data, offset, data_len): - * if data_len-offset < 16: - */ - __pyx_t_5 = __Pyx_PyObject_CallOneArg(__pyx_builtin_staticmethod, __pyx_t_4); if (unlikely(!__pyx_t_5)) __PYX_ERR(0, 38, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_5); - __Pyx_DECREF(__pyx_t_4); __pyx_t_4 = 0; - if (__Pyx_SetNameInClass(__pyx_t_1, __pyx_n_s_proto_identify, __pyx_t_5) < 0) __PYX_ERR(0, 39, __pyx_L1_error) - __Pyx_DECREF(__pyx_t_5); __pyx_t_5 = 0; - - /* "pmercury/protocols/tls_server.pyx":53 - * - * @staticmethod - * def fingerprint(bytes data, unsigned int offset, unsigned int data_len): # <<<<<<<<<<<<<< - * cdef unsigned char *buf = data - * offset += 5 - */ - __pyx_t_5 = __Pyx_CyFunction_NewEx(&__pyx_mdef_8pmercury_9protocols_10tls_server_10TLS_Server_5fingerprint, __Pyx_CYFUNCTION_STATICMETHOD, __pyx_n_s_TLS_Server_fingerprint, NULL, __pyx_n_s_pmercury_protocols_tls_server, __pyx_d, ((PyObject *)__pyx_codeobj__13)); if (unlikely(!__pyx_t_5)) __PYX_ERR(0, 53, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_5); - - /* "pmercury/protocols/tls_server.pyx":52 - * - * - * @staticmethod # <<<<<<<<<<<<<< - * def fingerprint(bytes data, unsigned int offset, unsigned int data_len): - * cdef unsigned char *buf = data - */ - __pyx_t_4 = __Pyx_PyObject_CallOneArg(__pyx_builtin_staticmethod, __pyx_t_5); if (unlikely(!__pyx_t_4)) __PYX_ERR(0, 52, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_4); - __Pyx_DECREF(__pyx_t_5); __pyx_t_5 = 0; - if (__Pyx_SetNameInClass(__pyx_t_1, __pyx_n_s_fingerprint, __pyx_t_4) < 0) __PYX_ERR(0, 53, __pyx_L1_error) - __Pyx_DECREF(__pyx_t_4); __pyx_t_4 = 0; - - /* "pmercury/protocols/tls_server.pyx":110 - * - * - * def get_human_readable(self, fp_str_): # <<<<<<<<<<<<<< - * lit_fp = eval_fp_str(fp_str_) - * - */ - __pyx_t_4 = __Pyx_CyFunction_NewEx(&__pyx_mdef_8pmercury_9protocols_10tls_server_10TLS_Server_7get_human_readable, 0, __pyx_n_s_TLS_Server_get_human_readable, NULL, __pyx_n_s_pmercury_protocols_tls_server, __pyx_d, ((PyObject *)__pyx_codeobj__15)); if (unlikely(!__pyx_t_4)) __PYX_ERR(0, 110, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_4); - if (__Pyx_SetNameInClass(__pyx_t_1, __pyx_n_s_get_human_readable, __pyx_t_4) < 0) __PYX_ERR(0, 110, __pyx_L1_error) - __Pyx_DECREF(__pyx_t_4); __pyx_t_4 = 0; - - /* "pmercury/protocols/tls_server.pyx":31 - * - * - * class TLS_Server(Protocol): # <<<<<<<<<<<<<< - * - * def __init__(self, fp_database=None, config=None): - */ - __pyx_t_4 = __Pyx_Py3ClassCreate(__pyx_t_2, __pyx_n_s_TLS_Server, __pyx_t_3, __pyx_t_1, NULL, 0, 0); if (unlikely(!__pyx_t_4)) __PYX_ERR(0, 31, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_4); - if (PyDict_SetItem(__pyx_d, __pyx_n_s_TLS_Server, __pyx_t_4) < 0) __PYX_ERR(0, 31, __pyx_L1_error) - __Pyx_DECREF(__pyx_t_4); __pyx_t_4 = 0; - __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0; - __Pyx_DECREF(__pyx_t_2); __pyx_t_2 = 0; - __Pyx_DECREF(__pyx_t_3); __pyx_t_3 = 0; - - /* "pmercury/protocols/tls_server.pyx":1 - * #cython: language_level=3, wraparound=False, cdivision=True, infer_types=True, initializedcheck=False, c_string_type=bytes, embedsignature=False # <<<<<<<<<<<<<< - * - * """ - */ - __pyx_t_3 = __Pyx_PyDict_NewPresized(0); if (unlikely(!__pyx_t_3)) __PYX_ERR(0, 1, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_3); - if (PyDict_SetItem(__pyx_d, __pyx_n_s_test, __pyx_t_3) < 0) __PYX_ERR(0, 1, __pyx_L1_error) - __Pyx_DECREF(__pyx_t_3); __pyx_t_3 = 0; - - /*--- Wrapped vars code ---*/ - - goto __pyx_L0; - __pyx_L1_error:; - __Pyx_XDECREF(__pyx_t_1); - __Pyx_XDECREF(__pyx_t_2); - __Pyx_XDECREF(__pyx_t_3); - __Pyx_XDECREF(__pyx_t_4); - __Pyx_XDECREF(__pyx_t_5); - if (__pyx_m) { - if (__pyx_d) { - __Pyx_AddTraceback("init pmercury.protocols.tls_server", __pyx_clineno, __pyx_lineno, __pyx_filename); - } - Py_CLEAR(__pyx_m); - } else if (!PyErr_Occurred()) { - PyErr_SetString(PyExc_ImportError, "init pmercury.protocols.tls_server"); - } - __pyx_L0:; - __Pyx_RefNannyFinishContext(); - #if CYTHON_PEP489_MULTI_PHASE_INIT - return (__pyx_m != NULL) ? 0 : -1; - #elif PY_MAJOR_VERSION >= 3 - return __pyx_m; - #else - return; - #endif -} - -/* --- Runtime support code --- */ -/* Refnanny */ -#if CYTHON_REFNANNY -static __Pyx_RefNannyAPIStruct *__Pyx_RefNannyImportAPI(const char *modname) { - PyObject *m = NULL, *p = NULL; - void *r = NULL; - m = PyImport_ImportModule(modname); - if (!m) goto end; - p = PyObject_GetAttrString(m, "RefNannyAPI"); - if (!p) goto end; - r = PyLong_AsVoidPtr(p); -end: - Py_XDECREF(p); - Py_XDECREF(m); - return (__Pyx_RefNannyAPIStruct *)r; -} -#endif - -/* PyObjectGetAttrStr */ -#if CYTHON_USE_TYPE_SLOTS -static CYTHON_INLINE PyObject* __Pyx_PyObject_GetAttrStr(PyObject* obj, PyObject* attr_name) { - PyTypeObject* tp = Py_TYPE(obj); - if (likely(tp->tp_getattro)) - return tp->tp_getattro(obj, attr_name); -#if PY_MAJOR_VERSION < 3 - if (likely(tp->tp_getattr)) - return tp->tp_getattr(obj, PyString_AS_STRING(attr_name)); -#endif - return PyObject_GetAttr(obj, attr_name); -} -#endif - -/* GetBuiltinName */ -static PyObject *__Pyx_GetBuiltinName(PyObject *name) { - PyObject* result = __Pyx_PyObject_GetAttrStr(__pyx_b, name); - if (unlikely(!result)) { - PyErr_Format(PyExc_NameError, -#if PY_MAJOR_VERSION >= 3 - "name '%U' is not defined", name); -#else - "name '%.200s' is not defined", PyString_AS_STRING(name)); -#endif - } - return result; -} - -/* RaiseDoubleKeywords */ -static void __Pyx_RaiseDoubleKeywordsError( - const char* func_name, - PyObject* kw_name) -{ - PyErr_Format(PyExc_TypeError, - #if PY_MAJOR_VERSION >= 3 - "%s() got multiple values for keyword argument '%U'", func_name, kw_name); - #else - "%s() got multiple values for keyword argument '%s'", func_name, - PyString_AsString(kw_name)); - #endif -} - -/* ParseKeywords */ -static int __Pyx_ParseOptionalKeywords( - PyObject *kwds, - PyObject **argnames[], - PyObject *kwds2, - PyObject *values[], - Py_ssize_t num_pos_args, - const char* function_name) -{ - PyObject *key = 0, *value = 0; - Py_ssize_t pos = 0; - PyObject*** name; - PyObject*** first_kw_arg = argnames + num_pos_args; - while (PyDict_Next(kwds, &pos, &key, &value)) { - name = first_kw_arg; - while (*name && (**name != key)) name++; - if (*name) { - values[name-argnames] = value; - continue; - } - name = first_kw_arg; - #if PY_MAJOR_VERSION < 3 - if (likely(PyString_CheckExact(key)) || likely(PyString_Check(key))) { - while (*name) { - if ((CYTHON_COMPILING_IN_PYPY || PyString_GET_SIZE(**name) == PyString_GET_SIZE(key)) - && _PyString_Eq(**name, key)) { - values[name-argnames] = value; - break; - } - name++; - } - if (*name) continue; - else { - PyObject*** argname = argnames; - while (argname != first_kw_arg) { - if ((**argname == key) || ( - (CYTHON_COMPILING_IN_PYPY || PyString_GET_SIZE(**argname) == PyString_GET_SIZE(key)) - && _PyString_Eq(**argname, key))) { - goto arg_passed_twice; - } - argname++; - } - } - } else - #endif - if (likely(PyUnicode_Check(key))) { - while (*name) { - int cmp = (**name == key) ? 0 : - #if !CYTHON_COMPILING_IN_PYPY && PY_MAJOR_VERSION >= 3 - (PyUnicode_GET_SIZE(**name) != PyUnicode_GET_SIZE(key)) ? 1 : - #endif - PyUnicode_Compare(**name, key); - if (cmp < 0 && unlikely(PyErr_Occurred())) goto bad; - if (cmp == 0) { - values[name-argnames] = value; - break; - } - name++; - } - if (*name) continue; - else { - PyObject*** argname = argnames; - while (argname != first_kw_arg) { - int cmp = (**argname == key) ? 0 : - #if !CYTHON_COMPILING_IN_PYPY && PY_MAJOR_VERSION >= 3 - (PyUnicode_GET_SIZE(**argname) != PyUnicode_GET_SIZE(key)) ? 1 : - #endif - PyUnicode_Compare(**argname, key); - if (cmp < 0 && unlikely(PyErr_Occurred())) goto bad; - if (cmp == 0) goto arg_passed_twice; - argname++; - } - } - } else - goto invalid_keyword_type; - if (kwds2) { - if (unlikely(PyDict_SetItem(kwds2, key, value))) goto bad; - } else { - goto invalid_keyword; - } - } - return 0; -arg_passed_twice: - __Pyx_RaiseDoubleKeywordsError(function_name, key); - goto bad; -invalid_keyword_type: - PyErr_Format(PyExc_TypeError, - "%.200s() keywords must be strings", function_name); - goto bad; -invalid_keyword: - PyErr_Format(PyExc_TypeError, - #if PY_MAJOR_VERSION < 3 - "%.200s() got an unexpected keyword argument '%.200s'", - function_name, PyString_AsString(key)); - #else - "%s() got an unexpected keyword argument '%U'", - function_name, key); - #endif -bad: - return -1; -} - -/* RaiseArgTupleInvalid */ -static void __Pyx_RaiseArgtupleInvalid( - const char* func_name, - int exact, - Py_ssize_t num_min, - Py_ssize_t num_max, - Py_ssize_t num_found) -{ - Py_ssize_t num_expected; - const char *more_or_less; - if (num_found < num_min) { - num_expected = num_min; - more_or_less = "at least"; - } else { - num_expected = num_max; - more_or_less = "at most"; - } - if (exact) { - more_or_less = "exactly"; - } - PyErr_Format(PyExc_TypeError, - "%.200s() takes %.8s %" CYTHON_FORMAT_SSIZE_T "d positional argument%.1s (%" CYTHON_FORMAT_SSIZE_T "d given)", - func_name, more_or_less, num_expected, - (num_expected == 1) ? "" : "s", num_found); -} - -/* PyObjectSetAttrStr */ -#if CYTHON_USE_TYPE_SLOTS -static CYTHON_INLINE int __Pyx_PyObject_SetAttrStr(PyObject* obj, PyObject* attr_name, PyObject* value) { - PyTypeObject* tp = Py_TYPE(obj); - if (likely(tp->tp_setattro)) - return tp->tp_setattro(obj, attr_name, value); -#if PY_MAJOR_VERSION < 3 - if (likely(tp->tp_setattr)) - return tp->tp_setattr(obj, PyString_AS_STRING(attr_name), value); -#endif - return PyObject_SetAttr(obj, attr_name, value); -} -#endif - -/* PyIntCompare */ -static CYTHON_INLINE PyObject* __Pyx_PyInt_EqObjC(PyObject *op1, PyObject *op2, CYTHON_UNUSED long intval, CYTHON_UNUSED long inplace) { - if (op1 == op2) { - Py_RETURN_TRUE; - } - #if PY_MAJOR_VERSION < 3 - if (likely(PyInt_CheckExact(op1))) { - const long b = intval; - long a = PyInt_AS_LONG(op1); - if (a == b) Py_RETURN_TRUE; else Py_RETURN_FALSE; - } - #endif - #if CYTHON_USE_PYLONG_INTERNALS - if (likely(PyLong_CheckExact(op1))) { - int unequal; - unsigned long uintval; - Py_ssize_t size = Py_SIZE(op1); - const digit* digits = ((PyLongObject*)op1)->ob_digit; - if (intval == 0) { - if (size == 0) Py_RETURN_TRUE; else Py_RETURN_FALSE; - } else if (intval < 0) { - if (size >= 0) - Py_RETURN_FALSE; - intval = -intval; - size = -size; - } else { - if (size <= 0) - Py_RETURN_FALSE; - } - uintval = (unsigned long) intval; -#if PyLong_SHIFT * 4 < SIZEOF_LONG*8 - if (uintval >> (PyLong_SHIFT * 4)) { - unequal = (size != 5) || (digits[0] != (uintval & (unsigned long) PyLong_MASK)) - | (digits[1] != ((uintval >> (1 * PyLong_SHIFT)) & (unsigned long) PyLong_MASK)) | (digits[2] != ((uintval >> (2 * PyLong_SHIFT)) & (unsigned long) PyLong_MASK)) | (digits[3] != ((uintval >> (3 * PyLong_SHIFT)) & (unsigned long) PyLong_MASK)) | (digits[4] != ((uintval >> (4 * PyLong_SHIFT)) & (unsigned long) PyLong_MASK)); - } else -#endif -#if PyLong_SHIFT * 3 < SIZEOF_LONG*8 - if (uintval >> (PyLong_SHIFT * 3)) { - unequal = (size != 4) || (digits[0] != (uintval & (unsigned long) PyLong_MASK)) - | (digits[1] != ((uintval >> (1 * PyLong_SHIFT)) & (unsigned long) PyLong_MASK)) | (digits[2] != ((uintval >> (2 * PyLong_SHIFT)) & (unsigned long) PyLong_MASK)) | (digits[3] != ((uintval >> (3 * PyLong_SHIFT)) & (unsigned long) PyLong_MASK)); - } else -#endif -#if PyLong_SHIFT * 2 < SIZEOF_LONG*8 - if (uintval >> (PyLong_SHIFT * 2)) { - unequal = (size != 3) || (digits[0] != (uintval & (unsigned long) PyLong_MASK)) - | (digits[1] != ((uintval >> (1 * PyLong_SHIFT)) & (unsigned long) PyLong_MASK)) | (digits[2] != ((uintval >> (2 * PyLong_SHIFT)) & (unsigned long) PyLong_MASK)); - } else -#endif -#if PyLong_SHIFT * 1 < SIZEOF_LONG*8 - if (uintval >> (PyLong_SHIFT * 1)) { - unequal = (size != 2) || (digits[0] != (uintval & (unsigned long) PyLong_MASK)) - | (digits[1] != ((uintval >> (1 * PyLong_SHIFT)) & (unsigned long) PyLong_MASK)); - } else -#endif - unequal = (size != 1) || (((unsigned long) digits[0]) != (uintval & (unsigned long) PyLong_MASK)); - if (unequal == 0) Py_RETURN_TRUE; else Py_RETURN_FALSE; - } - #endif - if (PyFloat_CheckExact(op1)) { - const long b = intval; - double a = PyFloat_AS_DOUBLE(op1); - if ((double)a == (double)b) Py_RETURN_TRUE; else Py_RETURN_FALSE; - } - return ( - PyObject_RichCompare(op1, op2, Py_EQ)); -} - -/* GetItemInt */ -static PyObject *__Pyx_GetItemInt_Generic(PyObject *o, PyObject* j) { - PyObject *r; - if (!j) return NULL; - r = PyObject_GetItem(o, j); - Py_DECREF(j); - return r; -} -static CYTHON_INLINE PyObject *__Pyx_GetItemInt_List_Fast(PyObject *o, Py_ssize_t i, - CYTHON_NCP_UNUSED int wraparound, - CYTHON_NCP_UNUSED int boundscheck) { -#if CYTHON_ASSUME_SAFE_MACROS && !CYTHON_AVOID_BORROWED_REFS - Py_ssize_t wrapped_i = i; - if (wraparound & unlikely(i < 0)) { - wrapped_i += PyList_GET_SIZE(o); - } - if ((!boundscheck) || likely(__Pyx_is_valid_index(wrapped_i, PyList_GET_SIZE(o)))) { - PyObject *r = PyList_GET_ITEM(o, wrapped_i); - Py_INCREF(r); - return r; - } - return __Pyx_GetItemInt_Generic(o, PyInt_FromSsize_t(i)); -#else - return PySequence_GetItem(o, i); -#endif -} -static CYTHON_INLINE PyObject *__Pyx_GetItemInt_Tuple_Fast(PyObject *o, Py_ssize_t i, - CYTHON_NCP_UNUSED int wraparound, - CYTHON_NCP_UNUSED int boundscheck) { -#if CYTHON_ASSUME_SAFE_MACROS && !CYTHON_AVOID_BORROWED_REFS - Py_ssize_t wrapped_i = i; - if (wraparound & unlikely(i < 0)) { - wrapped_i += PyTuple_GET_SIZE(o); - } - if ((!boundscheck) || likely(__Pyx_is_valid_index(wrapped_i, PyTuple_GET_SIZE(o)))) { - PyObject *r = PyTuple_GET_ITEM(o, wrapped_i); - Py_INCREF(r); - return r; - } - return __Pyx_GetItemInt_Generic(o, PyInt_FromSsize_t(i)); -#else - return PySequence_GetItem(o, i); -#endif -} -static CYTHON_INLINE PyObject *__Pyx_GetItemInt_Fast(PyObject *o, Py_ssize_t i, int is_list, - CYTHON_NCP_UNUSED int wraparound, - CYTHON_NCP_UNUSED int boundscheck) { -#if CYTHON_ASSUME_SAFE_MACROS && !CYTHON_AVOID_BORROWED_REFS && CYTHON_USE_TYPE_SLOTS - if (is_list || PyList_CheckExact(o)) { - Py_ssize_t n = ((!wraparound) | likely(i >= 0)) ? i : i + PyList_GET_SIZE(o); - if ((!boundscheck) || (likely(__Pyx_is_valid_index(n, PyList_GET_SIZE(o))))) { - PyObject *r = PyList_GET_ITEM(o, n); - Py_INCREF(r); - return r; - } - } - else if (PyTuple_CheckExact(o)) { - Py_ssize_t n = ((!wraparound) | likely(i >= 0)) ? i : i + PyTuple_GET_SIZE(o); - if ((!boundscheck) || likely(__Pyx_is_valid_index(n, PyTuple_GET_SIZE(o)))) { - PyObject *r = PyTuple_GET_ITEM(o, n); - Py_INCREF(r); - return r; - } - } else { - PySequenceMethods *m = Py_TYPE(o)->tp_as_sequence; - if (likely(m && m->sq_item)) { - if (wraparound && unlikely(i < 0) && likely(m->sq_length)) { - Py_ssize_t l = m->sq_length(o); - if (likely(l >= 0)) { - i += l; - } else { - if (!PyErr_ExceptionMatches(PyExc_OverflowError)) - return NULL; - PyErr_Clear(); - } - } - return m->sq_item(o, i); - } - } -#else - if (is_list || PySequence_Check(o)) { - return PySequence_GetItem(o, i); - } -#endif - return __Pyx_GetItemInt_Generic(o, PyInt_FromSsize_t(i)); -} - -/* ObjectGetItem */ -#if CYTHON_USE_TYPE_SLOTS -static PyObject *__Pyx_PyObject_GetIndex(PyObject *obj, PyObject* index) { - PyObject *runerr; - Py_ssize_t key_value; - PySequenceMethods *m = Py_TYPE(obj)->tp_as_sequence; - if (unlikely(!(m && m->sq_item))) { - PyErr_Format(PyExc_TypeError, "'%.200s' object is not subscriptable", Py_TYPE(obj)->tp_name); - return NULL; - } - key_value = __Pyx_PyIndex_AsSsize_t(index); - if (likely(key_value != -1 || !(runerr = PyErr_Occurred()))) { - return __Pyx_GetItemInt_Fast(obj, key_value, 0, 1, 1); - } - if (PyErr_GivenExceptionMatches(runerr, PyExc_OverflowError)) { - PyErr_Clear(); - PyErr_Format(PyExc_IndexError, "cannot fit '%.200s' into an index-sized integer", Py_TYPE(index)->tp_name); - } - return NULL; -} -static PyObject *__Pyx_PyObject_GetItem(PyObject *obj, PyObject* key) { - PyMappingMethods *m = Py_TYPE(obj)->tp_as_mapping; - if (likely(m && m->mp_subscript)) { - return m->mp_subscript(obj, key); - } - return __Pyx_PyObject_GetIndex(obj, key); -} -#endif - -/* PyIntBinop */ -#if !CYTHON_COMPILING_IN_PYPY -static PyObject* __Pyx_PyInt_AddObjC(PyObject *op1, PyObject *op2, CYTHON_UNUSED long intval, int inplace, int zerodivision_check) { - (void)inplace; - (void)zerodivision_check; - #if PY_MAJOR_VERSION < 3 - if (likely(PyInt_CheckExact(op1))) { - const long b = intval; - long x; - long a = PyInt_AS_LONG(op1); - x = (long)((unsigned long)a + b); - if (likely((x^a) >= 0 || (x^b) >= 0)) - return PyInt_FromLong(x); - return PyLong_Type.tp_as_number->nb_add(op1, op2); - } - #endif - #if CYTHON_USE_PYLONG_INTERNALS - if (likely(PyLong_CheckExact(op1))) { - const long b = intval; - long a, x; -#ifdef HAVE_LONG_LONG - const PY_LONG_LONG llb = intval; - PY_LONG_LONG lla, llx; -#endif - const digit* digits = ((PyLongObject*)op1)->ob_digit; - const Py_ssize_t size = Py_SIZE(op1); - if (likely(__Pyx_sst_abs(size) <= 1)) { - a = likely(size) ? digits[0] : 0; - if (size == -1) a = -a; - } else { - switch (size) { - case -2: - if (8 * sizeof(long) - 1 > 2 * PyLong_SHIFT) { - a = -(long) (((((unsigned long)digits[1]) << PyLong_SHIFT) | (unsigned long)digits[0])); - break; -#ifdef HAVE_LONG_LONG - } else if (8 * sizeof(PY_LONG_LONG) - 1 > 2 * PyLong_SHIFT) { - lla = -(PY_LONG_LONG) (((((unsigned PY_LONG_LONG)digits[1]) << PyLong_SHIFT) | (unsigned PY_LONG_LONG)digits[0])); - goto long_long; -#endif - } - CYTHON_FALLTHROUGH; - case 2: - if (8 * sizeof(long) - 1 > 2 * PyLong_SHIFT) { - a = (long) (((((unsigned long)digits[1]) << PyLong_SHIFT) | (unsigned long)digits[0])); - break; -#ifdef HAVE_LONG_LONG - } else if (8 * sizeof(PY_LONG_LONG) - 1 > 2 * PyLong_SHIFT) { - lla = (PY_LONG_LONG) (((((unsigned PY_LONG_LONG)digits[1]) << PyLong_SHIFT) | (unsigned PY_LONG_LONG)digits[0])); - goto long_long; -#endif - } - CYTHON_FALLTHROUGH; - case -3: - if (8 * sizeof(long) - 1 > 3 * PyLong_SHIFT) { - a = -(long) (((((((unsigned long)digits[2]) << PyLong_SHIFT) | (unsigned long)digits[1]) << PyLong_SHIFT) | (unsigned long)digits[0])); - break; -#ifdef HAVE_LONG_LONG - } else if (8 * sizeof(PY_LONG_LONG) - 1 > 3 * PyLong_SHIFT) { - lla = -(PY_LONG_LONG) (((((((unsigned PY_LONG_LONG)digits[2]) << PyLong_SHIFT) | (unsigned PY_LONG_LONG)digits[1]) << PyLong_SHIFT) | (unsigned PY_LONG_LONG)digits[0])); - goto long_long; -#endif - } - CYTHON_FALLTHROUGH; - case 3: - if (8 * sizeof(long) - 1 > 3 * PyLong_SHIFT) { - a = (long) (((((((unsigned long)digits[2]) << PyLong_SHIFT) | (unsigned long)digits[1]) << PyLong_SHIFT) | (unsigned long)digits[0])); - break; -#ifdef HAVE_LONG_LONG - } else if (8 * sizeof(PY_LONG_LONG) - 1 > 3 * PyLong_SHIFT) { - lla = (PY_LONG_LONG) (((((((unsigned PY_LONG_LONG)digits[2]) << PyLong_SHIFT) | (unsigned PY_LONG_LONG)digits[1]) << PyLong_SHIFT) | (unsigned PY_LONG_LONG)digits[0])); - goto long_long; -#endif - } - CYTHON_FALLTHROUGH; - case -4: - if (8 * sizeof(long) - 1 > 4 * PyLong_SHIFT) { - a = -(long) (((((((((unsigned long)digits[3]) << PyLong_SHIFT) | (unsigned long)digits[2]) << PyLong_SHIFT) | (unsigned long)digits[1]) << PyLong_SHIFT) | (unsigned long)digits[0])); - break; -#ifdef HAVE_LONG_LONG - } else if (8 * sizeof(PY_LONG_LONG) - 1 > 4 * PyLong_SHIFT) { - lla = -(PY_LONG_LONG) (((((((((unsigned PY_LONG_LONG)digits[3]) << PyLong_SHIFT) | (unsigned PY_LONG_LONG)digits[2]) << PyLong_SHIFT) | (unsigned PY_LONG_LONG)digits[1]) << PyLong_SHIFT) | (unsigned PY_LONG_LONG)digits[0])); - goto long_long; -#endif - } - CYTHON_FALLTHROUGH; - case 4: - if (8 * sizeof(long) - 1 > 4 * PyLong_SHIFT) { - a = (long) (((((((((unsigned long)digits[3]) << PyLong_SHIFT) | (unsigned long)digits[2]) << PyLong_SHIFT) | (unsigned long)digits[1]) << PyLong_SHIFT) | (unsigned long)digits[0])); - break; -#ifdef HAVE_LONG_LONG - } else if (8 * sizeof(PY_LONG_LONG) - 1 > 4 * PyLong_SHIFT) { - lla = (PY_LONG_LONG) (((((((((unsigned PY_LONG_LONG)digits[3]) << PyLong_SHIFT) | (unsigned PY_LONG_LONG)digits[2]) << PyLong_SHIFT) | (unsigned PY_LONG_LONG)digits[1]) << PyLong_SHIFT) | (unsigned PY_LONG_LONG)digits[0])); - goto long_long; -#endif - } - CYTHON_FALLTHROUGH; - default: return PyLong_Type.tp_as_number->nb_add(op1, op2); - } - } - x = a + b; - return PyLong_FromLong(x); -#ifdef HAVE_LONG_LONG - long_long: - llx = lla + llb; - return PyLong_FromLongLong(llx); -#endif - - - } - #endif - if (PyFloat_CheckExact(op1)) { - const long b = intval; - double a = PyFloat_AS_DOUBLE(op1); - double result; - PyFPE_START_PROTECT("add", return NULL) - result = ((double)a) + (double)b; - PyFPE_END_PROTECT(result) - return PyFloat_FromDouble(result); - } - return (inplace ? PyNumber_InPlaceAdd : PyNumber_Add)(op1, op2); -} -#endif - -/* ArgTypeTest */ -static int __Pyx__ArgTypeTest(PyObject *obj, PyTypeObject *type, const char *name, int exact) -{ - if (unlikely(!type)) { - PyErr_SetString(PyExc_SystemError, "Missing type object"); - return 0; - } - else if (exact) { - #if PY_MAJOR_VERSION == 2 - if ((type == &PyBaseString_Type) && likely(__Pyx_PyBaseString_CheckExact(obj))) return 1; - #endif - } - else { - if (likely(__Pyx_TypeCheck(obj, type))) return 1; - } - PyErr_Format(PyExc_TypeError, - "Argument '%.200s' has incorrect type (expected %.200s, got %.200s)", - name, type->tp_name, Py_TYPE(obj)->tp_name); - return 0; -} - -/* PyFunctionFastCall */ -#if CYTHON_FAST_PYCALL -static PyObject* __Pyx_PyFunction_FastCallNoKw(PyCodeObject *co, PyObject **args, Py_ssize_t na, - PyObject *globals) { - PyFrameObject *f; - PyThreadState *tstate = __Pyx_PyThreadState_Current; - PyObject **fastlocals; - Py_ssize_t i; - PyObject *result; - assert(globals != NULL); - /* XXX Perhaps we should create a specialized - PyFrame_New() that doesn't take locals, but does - take builtins without sanity checking them. - */ - assert(tstate != NULL); - f = PyFrame_New(tstate, co, globals, NULL); - if (f == NULL) { - return NULL; - } - fastlocals = __Pyx_PyFrame_GetLocalsplus(f); - for (i = 0; i < na; i++) { - Py_INCREF(*args); - fastlocals[i] = *args++; - } - result = PyEval_EvalFrameEx(f,0); - ++tstate->recursion_depth; - Py_DECREF(f); - --tstate->recursion_depth; - return result; -} -#if 1 || PY_VERSION_HEX < 0x030600B1 -static PyObject *__Pyx_PyFunction_FastCallDict(PyObject *func, PyObject **args, Py_ssize_t nargs, PyObject *kwargs) { - PyCodeObject *co = (PyCodeObject *)PyFunction_GET_CODE(func); - PyObject *globals = PyFunction_GET_GLOBALS(func); - PyObject *argdefs = PyFunction_GET_DEFAULTS(func); - PyObject *closure; -#if PY_MAJOR_VERSION >= 3 - PyObject *kwdefs; -#endif - PyObject *kwtuple, **k; - PyObject **d; - Py_ssize_t nd; - Py_ssize_t nk; - PyObject *result; - assert(kwargs == NULL || PyDict_Check(kwargs)); - nk = kwargs ? PyDict_Size(kwargs) : 0; - if (Py_EnterRecursiveCall((char*)" while calling a Python object")) { - return NULL; - } - if ( -#if PY_MAJOR_VERSION >= 3 - co->co_kwonlyargcount == 0 && -#endif - likely(kwargs == NULL || nk == 0) && - co->co_flags == (CO_OPTIMIZED | CO_NEWLOCALS | CO_NOFREE)) { - if (argdefs == NULL && co->co_argcount == nargs) { - result = __Pyx_PyFunction_FastCallNoKw(co, args, nargs, globals); - goto done; - } - else if (nargs == 0 && argdefs != NULL - && co->co_argcount == Py_SIZE(argdefs)) { - /* function called with no arguments, but all parameters have - a default value: use default values as arguments .*/ - args = &PyTuple_GET_ITEM(argdefs, 0); - result =__Pyx_PyFunction_FastCallNoKw(co, args, Py_SIZE(argdefs), globals); - goto done; - } - } - if (kwargs != NULL) { - Py_ssize_t pos, i; - kwtuple = PyTuple_New(2 * nk); - if (kwtuple == NULL) { - result = NULL; - goto done; - } - k = &PyTuple_GET_ITEM(kwtuple, 0); - pos = i = 0; - while (PyDict_Next(kwargs, &pos, &k[i], &k[i+1])) { - Py_INCREF(k[i]); - Py_INCREF(k[i+1]); - i += 2; - } - nk = i / 2; - } - else { - kwtuple = NULL; - k = NULL; - } - closure = PyFunction_GET_CLOSURE(func); -#if PY_MAJOR_VERSION >= 3 - kwdefs = PyFunction_GET_KW_DEFAULTS(func); -#endif - if (argdefs != NULL) { - d = &PyTuple_GET_ITEM(argdefs, 0); - nd = Py_SIZE(argdefs); - } - else { - d = NULL; - nd = 0; - } -#if PY_MAJOR_VERSION >= 3 - result = PyEval_EvalCodeEx((PyObject*)co, globals, (PyObject *)NULL, - args, (int)nargs, - k, (int)nk, - d, (int)nd, kwdefs, closure); -#else - result = PyEval_EvalCodeEx(co, globals, (PyObject *)NULL, - args, (int)nargs, - k, (int)nk, - d, (int)nd, closure); -#endif - Py_XDECREF(kwtuple); -done: - Py_LeaveRecursiveCall(); - return result; -} -#endif -#endif - -/* PyObjectCall */ -#if CYTHON_COMPILING_IN_CPYTHON -static CYTHON_INLINE PyObject* __Pyx_PyObject_Call(PyObject *func, PyObject *arg, PyObject *kw) { - PyObject *result; - ternaryfunc call = func->ob_type->tp_call; - if (unlikely(!call)) - return PyObject_Call(func, arg, kw); - if (unlikely(Py_EnterRecursiveCall((char*)" while calling a Python object"))) - return NULL; - result = (*call)(func, arg, kw); - Py_LeaveRecursiveCall(); - if (unlikely(!result) && unlikely(!PyErr_Occurred())) { - PyErr_SetString( - PyExc_SystemError, - "NULL result without error in PyObject_Call"); - } - return result; -} -#endif - -/* PyObjectCallMethO */ -#if CYTHON_COMPILING_IN_CPYTHON -static CYTHON_INLINE PyObject* __Pyx_PyObject_CallMethO(PyObject *func, PyObject *arg) { - PyObject *self, *result; - PyCFunction cfunc; - cfunc = PyCFunction_GET_FUNCTION(func); - self = PyCFunction_GET_SELF(func); - if (unlikely(Py_EnterRecursiveCall((char*)" while calling a Python object"))) - return NULL; - result = cfunc(self, arg); - Py_LeaveRecursiveCall(); - if (unlikely(!result) && unlikely(!PyErr_Occurred())) { - PyErr_SetString( - PyExc_SystemError, - "NULL result without error in PyObject_Call"); - } - return result; -} -#endif - -/* PyObjectCallNoArg */ -#if CYTHON_COMPILING_IN_CPYTHON -static CYTHON_INLINE PyObject* __Pyx_PyObject_CallNoArg(PyObject *func) { -#if CYTHON_FAST_PYCALL - if (PyFunction_Check(func)) { - return __Pyx_PyFunction_FastCall(func, NULL, 0); - } -#endif -#ifdef __Pyx_CyFunction_USED - if (likely(PyCFunction_Check(func) || __Pyx_CyFunction_Check(func))) -#else - if (likely(PyCFunction_Check(func))) -#endif - { - if (likely(PyCFunction_GET_FLAGS(func) & METH_NOARGS)) { - return __Pyx_PyObject_CallMethO(func, NULL); - } - } - return __Pyx_PyObject_Call(func, __pyx_empty_tuple, NULL); -} -#endif - -/* PyCFunctionFastCall */ -#if CYTHON_FAST_PYCCALL -static CYTHON_INLINE PyObject * __Pyx_PyCFunction_FastCall(PyObject *func_obj, PyObject **args, Py_ssize_t nargs) { - PyCFunctionObject *func = (PyCFunctionObject*)func_obj; - PyCFunction meth = PyCFunction_GET_FUNCTION(func); - PyObject *self = PyCFunction_GET_SELF(func); - int flags = PyCFunction_GET_FLAGS(func); - assert(PyCFunction_Check(func)); - assert(METH_FASTCALL == (flags & ~(METH_CLASS | METH_STATIC | METH_COEXIST | METH_KEYWORDS | METH_STACKLESS))); - assert(nargs >= 0); - assert(nargs == 0 || args != NULL); - /* _PyCFunction_FastCallDict() must not be called with an exception set, - because it may clear it (directly or indirectly) and so the - caller loses its exception */ - assert(!PyErr_Occurred()); - if ((PY_VERSION_HEX < 0x030700A0) || unlikely(flags & METH_KEYWORDS)) { - return (*((__Pyx_PyCFunctionFastWithKeywords)(void*)meth)) (self, args, nargs, NULL); - } else { - return (*((__Pyx_PyCFunctionFast)(void*)meth)) (self, args, nargs); - } -} -#endif - -/* PyObjectCallOneArg */ -#if CYTHON_COMPILING_IN_CPYTHON -static PyObject* __Pyx__PyObject_CallOneArg(PyObject *func, PyObject *arg) { - PyObject *result; - PyObject *args = PyTuple_New(1); - if (unlikely(!args)) return NULL; - Py_INCREF(arg); - PyTuple_SET_ITEM(args, 0, arg); - result = __Pyx_PyObject_Call(func, args, NULL); - Py_DECREF(args); - return result; -} -static CYTHON_INLINE PyObject* __Pyx_PyObject_CallOneArg(PyObject *func, PyObject *arg) { -#if CYTHON_FAST_PYCALL - if (PyFunction_Check(func)) { - return __Pyx_PyFunction_FastCall(func, &arg, 1); - } -#endif - if (likely(PyCFunction_Check(func))) { - if (likely(PyCFunction_GET_FLAGS(func) & METH_O)) { - return __Pyx_PyObject_CallMethO(func, arg); -#if CYTHON_FAST_PYCCALL - } else if (PyCFunction_GET_FLAGS(func) & METH_FASTCALL) { - return __Pyx_PyCFunction_FastCall(func, &arg, 1); -#endif - } - } - return __Pyx__PyObject_CallOneArg(func, arg); -} -#else -static CYTHON_INLINE PyObject* __Pyx_PyObject_CallOneArg(PyObject *func, PyObject *arg) { - PyObject *result; - PyObject *args = PyTuple_Pack(1, arg); - if (unlikely(!args)) return NULL; - result = __Pyx_PyObject_Call(func, args, NULL); - Py_DECREF(args); - return result; -} -#endif - -/* CIntToDigits */ -static const char DIGIT_PAIRS_10[2*10*10+1] = { - "00010203040506070809" - "10111213141516171819" - "20212223242526272829" - "30313233343536373839" - "40414243444546474849" - "50515253545556575859" - "60616263646566676869" - "70717273747576777879" - "80818283848586878889" - "90919293949596979899" -}; -static const char DIGIT_PAIRS_8[2*8*8+1] = { - "0001020304050607" - "1011121314151617" - "2021222324252627" - "3031323334353637" - "4041424344454647" - "5051525354555657" - "6061626364656667" - "7071727374757677" -}; -static const char DIGITS_HEX[2*16+1] = { - "0123456789abcdef" - "0123456789ABCDEF" -}; - -/* BuildPyUnicode */ -static PyObject* __Pyx_PyUnicode_BuildFromAscii(Py_ssize_t ulength, char* chars, int clength, - int prepend_sign, char padding_char) { - PyObject *uval; - Py_ssize_t uoffset = ulength - clength; -#if CYTHON_USE_UNICODE_INTERNALS - Py_ssize_t i; -#if CYTHON_PEP393_ENABLED - void *udata; - uval = PyUnicode_New(ulength, 127); - if (unlikely(!uval)) return NULL; - udata = PyUnicode_DATA(uval); -#else - Py_UNICODE *udata; - uval = PyUnicode_FromUnicode(NULL, ulength); - if (unlikely(!uval)) return NULL; - udata = PyUnicode_AS_UNICODE(uval); -#endif - if (uoffset > 0) { - i = 0; - if (prepend_sign) { - __Pyx_PyUnicode_WRITE(PyUnicode_1BYTE_KIND, udata, 0, '-'); - i++; - } - for (; i < uoffset; i++) { - __Pyx_PyUnicode_WRITE(PyUnicode_1BYTE_KIND, udata, i, padding_char); - } - } - for (i=0; i < clength; i++) { - __Pyx_PyUnicode_WRITE(PyUnicode_1BYTE_KIND, udata, uoffset+i, chars[i]); - } -#else - { - PyObject *sign = NULL, *padding = NULL; - uval = NULL; - if (uoffset > 0) { - prepend_sign = !!prepend_sign; - if (uoffset > prepend_sign) { - padding = PyUnicode_FromOrdinal(padding_char); - if (likely(padding) && uoffset > prepend_sign + 1) { - PyObject *tmp; - PyObject *repeat = PyInt_FromSize_t(uoffset - prepend_sign); - if (unlikely(!repeat)) goto done_or_error; - tmp = PyNumber_Multiply(padding, repeat); - Py_DECREF(repeat); - Py_DECREF(padding); - padding = tmp; - } - if (unlikely(!padding)) goto done_or_error; - } - if (prepend_sign) { - sign = PyUnicode_FromOrdinal('-'); - if (unlikely(!sign)) goto done_or_error; - } - } - uval = PyUnicode_DecodeASCII(chars, clength, NULL); - if (likely(uval) && padding) { - PyObject *tmp = PyNumber_Add(padding, uval); - Py_DECREF(uval); - uval = tmp; - } - if (likely(uval) && sign) { - PyObject *tmp = PyNumber_Add(sign, uval); - Py_DECREF(uval); - uval = tmp; - } -done_or_error: - Py_XDECREF(padding); - Py_XDECREF(sign); - } -#endif - return uval; -} - -/* CIntToPyUnicode */ -#ifdef _MSC_VER - #ifndef _MSC_STDINT_H_ - #if _MSC_VER < 1300 - typedef unsigned short uint16_t; - #else - typedef unsigned __int16 uint16_t; - #endif - #endif -#else - #include -#endif -#if defined(__GNUC__) && (__GNUC__ > 4 || (__GNUC__ == 4 && __GNUC_MINOR__ >= 6)) -#define GCC_DIAGNOSTIC -#endif -static CYTHON_INLINE PyObject* __Pyx_PyUnicode_From_unsigned_char(unsigned char value, Py_ssize_t width, char padding_char, char format_char) { - char digits[sizeof(unsigned char)*3+2]; - char *dpos, *end = digits + sizeof(unsigned char)*3+2; - const char *hex_digits = DIGITS_HEX; - Py_ssize_t length, ulength; - int prepend_sign, last_one_off; - unsigned char remaining; -#ifdef GCC_DIAGNOSTIC -#pragma GCC diagnostic push -#pragma GCC diagnostic ignored "-Wconversion" -#endif - const unsigned char neg_one = (unsigned char) -1, const_zero = (unsigned char) 0; -#ifdef GCC_DIAGNOSTIC -#pragma GCC diagnostic pop -#endif - const int is_unsigned = neg_one > const_zero; - if (format_char == 'X') { - hex_digits += 16; - format_char = 'x'; - } - remaining = value; - last_one_off = 0; - dpos = end; - do { - int digit_pos; - switch (format_char) { - case 'o': - digit_pos = abs((int)(remaining % (8*8))); - remaining = (unsigned char) (remaining / (8*8)); - dpos -= 2; - *(uint16_t*)dpos = ((const uint16_t*)DIGIT_PAIRS_8)[digit_pos]; - last_one_off = (digit_pos < 8); - break; - case 'd': - digit_pos = abs((int)(remaining % (10*10))); - remaining = (unsigned char) (remaining / (10*10)); - dpos -= 2; - *(uint16_t*)dpos = ((const uint16_t*)DIGIT_PAIRS_10)[digit_pos]; - last_one_off = (digit_pos < 10); - break; - case 'x': - *(--dpos) = hex_digits[abs((int)(remaining % 16))]; - remaining = (unsigned char) (remaining / 16); - break; - default: - assert(0); - break; - } - } while (unlikely(remaining != 0)); - if (last_one_off) { - assert(*dpos == '0'); - dpos++; - } - length = end - dpos; - ulength = length; - prepend_sign = 0; - if (!is_unsigned && value <= neg_one) { - if (padding_char == ' ' || width <= length + 1) { - *(--dpos) = '-'; - ++length; - } else { - prepend_sign = 1; - } - ++ulength; - } - if (width > ulength) { - ulength = width; - } - if (ulength == 1) { - return PyUnicode_FromOrdinal(*dpos); - } - return __Pyx_PyUnicode_BuildFromAscii(ulength, dpos, (int) length, prepend_sign, padding_char); -} - -/* JoinPyUnicode */ -static PyObject* __Pyx_PyUnicode_Join(PyObject* value_tuple, Py_ssize_t value_count, Py_ssize_t result_ulength, - CYTHON_UNUSED Py_UCS4 max_char) { -#if CYTHON_USE_UNICODE_INTERNALS && CYTHON_ASSUME_SAFE_MACROS && !CYTHON_AVOID_BORROWED_REFS - PyObject *result_uval; - int result_ukind; - Py_ssize_t i, char_pos; - void *result_udata; -#if CYTHON_PEP393_ENABLED - result_uval = PyUnicode_New(result_ulength, max_char); - if (unlikely(!result_uval)) return NULL; - result_ukind = (max_char <= 255) ? PyUnicode_1BYTE_KIND : (max_char <= 65535) ? PyUnicode_2BYTE_KIND : PyUnicode_4BYTE_KIND; - result_udata = PyUnicode_DATA(result_uval); -#else - result_uval = PyUnicode_FromUnicode(NULL, result_ulength); - if (unlikely(!result_uval)) return NULL; - result_ukind = sizeof(Py_UNICODE); - result_udata = PyUnicode_AS_UNICODE(result_uval); -#endif - char_pos = 0; - for (i=0; i < value_count; i++) { - int ukind; - Py_ssize_t ulength; - void *udata; - PyObject *uval = PyTuple_GET_ITEM(value_tuple, i); - if (unlikely(__Pyx_PyUnicode_READY(uval))) - goto bad; - ulength = __Pyx_PyUnicode_GET_LENGTH(uval); - if (unlikely(!ulength)) - continue; - if (unlikely(char_pos + ulength < 0)) - goto overflow; - ukind = __Pyx_PyUnicode_KIND(uval); - udata = __Pyx_PyUnicode_DATA(uval); - if (!CYTHON_PEP393_ENABLED || ukind == result_ukind) { - memcpy((char *)result_udata + char_pos * result_ukind, udata, (size_t) (ulength * result_ukind)); - } else { - #if CYTHON_COMPILING_IN_CPYTHON && PY_VERSION_HEX >= 0x030300F0 || defined(_PyUnicode_FastCopyCharacters) - _PyUnicode_FastCopyCharacters(result_uval, char_pos, uval, 0, ulength); - #else - Py_ssize_t j; - for (j=0; j < ulength; j++) { - Py_UCS4 uchar = __Pyx_PyUnicode_READ(ukind, udata, j); - __Pyx_PyUnicode_WRITE(result_ukind, result_udata, char_pos+j, uchar); - } - #endif - } - char_pos += ulength; - } - return result_uval; -overflow: - PyErr_SetString(PyExc_OverflowError, "join() result is too long for a Python string"); -bad: - Py_DECREF(result_uval); - return NULL; -#else - result_ulength++; - value_count++; - return PyUnicode_Join(__pyx_empty_unicode, value_tuple); -#endif -} - -/* PyDictVersioning */ -#if CYTHON_USE_DICT_VERSIONS && CYTHON_USE_TYPE_SLOTS -static CYTHON_INLINE PY_UINT64_T __Pyx_get_tp_dict_version(PyObject *obj) { - PyObject *dict = Py_TYPE(obj)->tp_dict; - return likely(dict) ? __PYX_GET_DICT_VERSION(dict) : 0; -} -static CYTHON_INLINE PY_UINT64_T __Pyx_get_object_dict_version(PyObject *obj) { - PyObject **dictptr = NULL; - Py_ssize_t offset = Py_TYPE(obj)->tp_dictoffset; - if (offset) { -#if CYTHON_COMPILING_IN_CPYTHON - dictptr = (likely(offset > 0)) ? (PyObject **) ((char *)obj + offset) : _PyObject_GetDictPtr(obj); -#else - dictptr = _PyObject_GetDictPtr(obj); -#endif - } - return (dictptr && *dictptr) ? __PYX_GET_DICT_VERSION(*dictptr) : 0; -} -static CYTHON_INLINE int __Pyx_object_dict_version_matches(PyObject* obj, PY_UINT64_T tp_dict_version, PY_UINT64_T obj_dict_version) { - PyObject *dict = Py_TYPE(obj)->tp_dict; - if (unlikely(!dict) || unlikely(tp_dict_version != __PYX_GET_DICT_VERSION(dict))) - return 0; - return obj_dict_version == __Pyx_get_object_dict_version(obj); -} -#endif - -/* GetModuleGlobalName */ -#if CYTHON_USE_DICT_VERSIONS -static PyObject *__Pyx__GetModuleGlobalName(PyObject *name, PY_UINT64_T *dict_version, PyObject **dict_cached_value) -#else -static CYTHON_INLINE PyObject *__Pyx__GetModuleGlobalName(PyObject *name) -#endif -{ - PyObject *result; -#if !CYTHON_AVOID_BORROWED_REFS -#if CYTHON_COMPILING_IN_CPYTHON && PY_VERSION_HEX >= 0x030500A1 - result = _PyDict_GetItem_KnownHash(__pyx_d, name, ((PyASCIIObject *) name)->hash); - __PYX_UPDATE_DICT_CACHE(__pyx_d, result, *dict_cached_value, *dict_version) - if (likely(result)) { - return __Pyx_NewRef(result); - } else if (unlikely(PyErr_Occurred())) { - return NULL; - } -#else - result = PyDict_GetItem(__pyx_d, name); - __PYX_UPDATE_DICT_CACHE(__pyx_d, result, *dict_cached_value, *dict_version) - if (likely(result)) { - return __Pyx_NewRef(result); - } -#endif -#else - result = PyObject_GetItem(__pyx_d, name); - __PYX_UPDATE_DICT_CACHE(__pyx_d, result, *dict_cached_value, *dict_version) - if (likely(result)) { - return __Pyx_NewRef(result); - } - PyErr_Clear(); -#endif - return __Pyx_GetBuiltinName(name); -} - -/* RaiseTooManyValuesToUnpack */ -static CYTHON_INLINE void __Pyx_RaiseTooManyValuesError(Py_ssize_t expected) { - PyErr_Format(PyExc_ValueError, - "too many values to unpack (expected %" CYTHON_FORMAT_SSIZE_T "d)", expected); -} - -/* RaiseNeedMoreValuesToUnpack */ -static CYTHON_INLINE void __Pyx_RaiseNeedMoreValuesError(Py_ssize_t index) { - PyErr_Format(PyExc_ValueError, - "need more than %" CYTHON_FORMAT_SSIZE_T "d value%.1s to unpack", - index, (index == 1) ? "" : "s"); -} - -/* IterFinish */ -static CYTHON_INLINE int __Pyx_IterFinish(void) { -#if CYTHON_FAST_THREAD_STATE - PyThreadState *tstate = __Pyx_PyThreadState_Current; - PyObject* exc_type = tstate->curexc_type; - if (unlikely(exc_type)) { - if (likely(__Pyx_PyErr_GivenExceptionMatches(exc_type, PyExc_StopIteration))) { - PyObject *exc_value, *exc_tb; - exc_value = tstate->curexc_value; - exc_tb = tstate->curexc_traceback; - tstate->curexc_type = 0; - tstate->curexc_value = 0; - tstate->curexc_traceback = 0; - Py_DECREF(exc_type); - Py_XDECREF(exc_value); - Py_XDECREF(exc_tb); - return 0; - } else { - return -1; - } - } - return 0; -#else - if (unlikely(PyErr_Occurred())) { - if (likely(PyErr_ExceptionMatches(PyExc_StopIteration))) { - PyErr_Clear(); - return 0; - } else { - return -1; - } - } - return 0; -#endif -} - -/* UnpackItemEndCheck */ -static int __Pyx_IternextUnpackEndCheck(PyObject *retval, Py_ssize_t expected) { - if (unlikely(retval)) { - Py_DECREF(retval); - __Pyx_RaiseTooManyValuesError(expected); - return -1; - } else { - return __Pyx_IterFinish(); - } - return 0; -} - -/* PyObjectCall2Args */ -static CYTHON_UNUSED PyObject* __Pyx_PyObject_Call2Args(PyObject* function, PyObject* arg1, PyObject* arg2) { - PyObject *args, *result = NULL; - #if CYTHON_FAST_PYCALL - if (PyFunction_Check(function)) { - PyObject *args[2] = {arg1, arg2}; - return __Pyx_PyFunction_FastCall(function, args, 2); - } - #endif - #if CYTHON_FAST_PYCCALL - if (__Pyx_PyFastCFunction_Check(function)) { - PyObject *args[2] = {arg1, arg2}; - return __Pyx_PyCFunction_FastCall(function, args, 2); - } - #endif - args = PyTuple_New(2); - if (unlikely(!args)) goto done; - Py_INCREF(arg1); - PyTuple_SET_ITEM(args, 0, arg1); - Py_INCREF(arg2); - PyTuple_SET_ITEM(args, 1, arg2); - Py_INCREF(function); - result = __Pyx_PyObject_Call(function, args, NULL); - Py_DECREF(args); - Py_DECREF(function); -done: - return result; -} - -/* Import */ -static PyObject *__Pyx_Import(PyObject *name, PyObject *from_list, int level) { - PyObject *empty_list = 0; - PyObject *module = 0; - PyObject *global_dict = 0; - PyObject *empty_dict = 0; - PyObject *list; - #if PY_MAJOR_VERSION < 3 - PyObject *py_import; - py_import = __Pyx_PyObject_GetAttrStr(__pyx_b, __pyx_n_s_import); - if (!py_import) - goto bad; - #endif - if (from_list) - list = from_list; - else { - empty_list = PyList_New(0); - if (!empty_list) - goto bad; - list = empty_list; - } - global_dict = PyModule_GetDict(__pyx_m); - if (!global_dict) - goto bad; - empty_dict = PyDict_New(); - if (!empty_dict) - goto bad; - { - #if PY_MAJOR_VERSION >= 3 - if (level == -1) { - if (strchr(__Pyx_MODULE_NAME, '.')) { - module = PyImport_ImportModuleLevelObject( - name, global_dict, empty_dict, list, 1); - if (!module) { - if (!PyErr_ExceptionMatches(PyExc_ImportError)) - goto bad; - PyErr_Clear(); - } - } - level = 0; - } - #endif - if (!module) { - #if PY_MAJOR_VERSION < 3 - PyObject *py_level = PyInt_FromLong(level); - if (!py_level) - goto bad; - module = PyObject_CallFunctionObjArgs(py_import, - name, global_dict, empty_dict, list, py_level, (PyObject *)NULL); - Py_DECREF(py_level); - #else - module = PyImport_ImportModuleLevelObject( - name, global_dict, empty_dict, list, level); - #endif - } - } -bad: - #if PY_MAJOR_VERSION < 3 - Py_XDECREF(py_import); - #endif - Py_XDECREF(empty_list); - Py_XDECREF(empty_dict); - return module; -} - -/* PyObjectGetMethod */ -static int __Pyx_PyObject_GetMethod(PyObject *obj, PyObject *name, PyObject **method) { - PyObject *attr; -#if CYTHON_UNPACK_METHODS && CYTHON_COMPILING_IN_CPYTHON && CYTHON_USE_PYTYPE_LOOKUP - PyTypeObject *tp = Py_TYPE(obj); - PyObject *descr; - descrgetfunc f = NULL; - PyObject **dictptr, *dict; - int meth_found = 0; - assert (*method == NULL); - if (unlikely(tp->tp_getattro != PyObject_GenericGetAttr)) { - attr = __Pyx_PyObject_GetAttrStr(obj, name); - goto try_unpack; - } - if (unlikely(tp->tp_dict == NULL) && unlikely(PyType_Ready(tp) < 0)) { - return 0; - } - descr = _PyType_Lookup(tp, name); - if (likely(descr != NULL)) { - Py_INCREF(descr); -#if PY_MAJOR_VERSION >= 3 - #ifdef __Pyx_CyFunction_USED - if (likely(PyFunction_Check(descr) || (Py_TYPE(descr) == &PyMethodDescr_Type) || __Pyx_CyFunction_Check(descr))) - #else - if (likely(PyFunction_Check(descr) || (Py_TYPE(descr) == &PyMethodDescr_Type))) - #endif -#else - #ifdef __Pyx_CyFunction_USED - if (likely(PyFunction_Check(descr) || __Pyx_CyFunction_Check(descr))) - #else - if (likely(PyFunction_Check(descr))) - #endif -#endif - { - meth_found = 1; - } else { - f = Py_TYPE(descr)->tp_descr_get; - if (f != NULL && PyDescr_IsData(descr)) { - attr = f(descr, obj, (PyObject *)Py_TYPE(obj)); - Py_DECREF(descr); - goto try_unpack; - } - } - } - dictptr = _PyObject_GetDictPtr(obj); - if (dictptr != NULL && (dict = *dictptr) != NULL) { - Py_INCREF(dict); - attr = __Pyx_PyDict_GetItemStr(dict, name); - if (attr != NULL) { - Py_INCREF(attr); - Py_DECREF(dict); - Py_XDECREF(descr); - goto try_unpack; - } - Py_DECREF(dict); - } - if (meth_found) { - *method = descr; - return 1; - } - if (f != NULL) { - attr = f(descr, obj, (PyObject *)Py_TYPE(obj)); - Py_DECREF(descr); - goto try_unpack; - } - if (descr != NULL) { - *method = descr; - return 0; - } - PyErr_Format(PyExc_AttributeError, -#if PY_MAJOR_VERSION >= 3 - "'%.50s' object has no attribute '%U'", - tp->tp_name, name); -#else - "'%.50s' object has no attribute '%.400s'", - tp->tp_name, PyString_AS_STRING(name)); -#endif - return 0; -#else - attr = __Pyx_PyObject_GetAttrStr(obj, name); - goto try_unpack; -#endif -try_unpack: -#if CYTHON_UNPACK_METHODS - if (likely(attr) && PyMethod_Check(attr) && likely(PyMethod_GET_SELF(attr) == obj)) { - PyObject *function = PyMethod_GET_FUNCTION(attr); - Py_INCREF(function); - Py_DECREF(attr); - *method = function; - return 1; - } -#endif - *method = attr; - return 0; -} - -/* PyObjectCallMethod1 */ -static PyObject* __Pyx__PyObject_CallMethod1(PyObject* method, PyObject* arg) { - PyObject *result = __Pyx_PyObject_CallOneArg(method, arg); - Py_DECREF(method); - return result; -} -static PyObject* __Pyx_PyObject_CallMethod1(PyObject* obj, PyObject* method_name, PyObject* arg) { - PyObject *method = NULL, *result; - int is_method = __Pyx_PyObject_GetMethod(obj, method_name, &method); - if (likely(is_method)) { - result = __Pyx_PyObject_Call2Args(method, obj, arg); - Py_DECREF(method); - return result; - } - if (unlikely(!method)) return NULL; - return __Pyx__PyObject_CallMethod1(method, arg); -} - -/* append */ -static CYTHON_INLINE int __Pyx_PyObject_Append(PyObject* L, PyObject* x) { - if (likely(PyList_CheckExact(L))) { - if (unlikely(__Pyx_PyList_Append(L, x) < 0)) return -1; - } else { - PyObject* retval = __Pyx_PyObject_CallMethod1(L, __pyx_n_s_append, x); - if (unlikely(!retval)) - return -1; - Py_DECREF(retval); - } - return 0; -} - -/* ImportFrom */ -static PyObject* __Pyx_ImportFrom(PyObject* module, PyObject* name) { - PyObject* value = __Pyx_PyObject_GetAttrStr(module, name); - if (unlikely(!value) && PyErr_ExceptionMatches(PyExc_AttributeError)) { - PyErr_Format(PyExc_ImportError, - #if PY_MAJOR_VERSION < 3 - "cannot import name %.230s", PyString_AS_STRING(name)); - #else - "cannot import name %S", name); - #endif - } - return value; -} - -/* CalculateMetaclass */ -static PyObject *__Pyx_CalculateMetaclass(PyTypeObject *metaclass, PyObject *bases) { - Py_ssize_t i, nbases = PyTuple_GET_SIZE(bases); - for (i=0; i < nbases; i++) { - PyTypeObject *tmptype; - PyObject *tmp = PyTuple_GET_ITEM(bases, i); - tmptype = Py_TYPE(tmp); -#if PY_MAJOR_VERSION < 3 - if (tmptype == &PyClass_Type) - continue; -#endif - if (!metaclass) { - metaclass = tmptype; - continue; - } - if (PyType_IsSubtype(metaclass, tmptype)) - continue; - if (PyType_IsSubtype(tmptype, metaclass)) { - metaclass = tmptype; - continue; - } - PyErr_SetString(PyExc_TypeError, - "metaclass conflict: " - "the metaclass of a derived class " - "must be a (non-strict) subclass " - "of the metaclasses of all its bases"); - return NULL; - } - if (!metaclass) { -#if PY_MAJOR_VERSION < 3 - metaclass = &PyClass_Type; -#else - metaclass = &PyType_Type; -#endif - } - Py_INCREF((PyObject*) metaclass); - return (PyObject*) metaclass; -} - -/* FetchCommonType */ -static PyTypeObject* __Pyx_FetchCommonType(PyTypeObject* type) { - PyObject* fake_module; - PyTypeObject* cached_type = NULL; - fake_module = PyImport_AddModule((char*) "_cython_" CYTHON_ABI); - if (!fake_module) return NULL; - Py_INCREF(fake_module); - cached_type = (PyTypeObject*) PyObject_GetAttrString(fake_module, type->tp_name); - if (cached_type) { - if (!PyType_Check((PyObject*)cached_type)) { - PyErr_Format(PyExc_TypeError, - "Shared Cython type %.200s is not a type object", - type->tp_name); - goto bad; - } - if (cached_type->tp_basicsize != type->tp_basicsize) { - PyErr_Format(PyExc_TypeError, - "Shared Cython type %.200s has the wrong size, try recompiling", - type->tp_name); - goto bad; - } - } else { - if (!PyErr_ExceptionMatches(PyExc_AttributeError)) goto bad; - PyErr_Clear(); - if (PyType_Ready(type) < 0) goto bad; - if (PyObject_SetAttrString(fake_module, type->tp_name, (PyObject*) type) < 0) - goto bad; - Py_INCREF(type); - cached_type = type; - } -done: - Py_DECREF(fake_module); - return cached_type; -bad: - Py_XDECREF(cached_type); - cached_type = NULL; - goto done; -} - -/* CythonFunction */ -#include -static PyObject * -__Pyx_CyFunction_get_doc(__pyx_CyFunctionObject *op, CYTHON_UNUSED void *closure) -{ - if (unlikely(op->func_doc == NULL)) { - if (op->func.m_ml->ml_doc) { -#if PY_MAJOR_VERSION >= 3 - op->func_doc = PyUnicode_FromString(op->func.m_ml->ml_doc); -#else - op->func_doc = PyString_FromString(op->func.m_ml->ml_doc); -#endif - if (unlikely(op->func_doc == NULL)) - return NULL; - } else { - Py_INCREF(Py_None); - return Py_None; - } - } - Py_INCREF(op->func_doc); - return op->func_doc; -} -static int -__Pyx_CyFunction_set_doc(__pyx_CyFunctionObject *op, PyObject *value, CYTHON_UNUSED void *context) -{ - PyObject *tmp = op->func_doc; - if (value == NULL) { - value = Py_None; - } - Py_INCREF(value); - op->func_doc = value; - Py_XDECREF(tmp); - return 0; -} -static PyObject * -__Pyx_CyFunction_get_name(__pyx_CyFunctionObject *op, CYTHON_UNUSED void *context) -{ - if (unlikely(op->func_name == NULL)) { -#if PY_MAJOR_VERSION >= 3 - op->func_name = PyUnicode_InternFromString(op->func.m_ml->ml_name); -#else - op->func_name = PyString_InternFromString(op->func.m_ml->ml_name); -#endif - if (unlikely(op->func_name == NULL)) - return NULL; - } - Py_INCREF(op->func_name); - return op->func_name; -} -static int -__Pyx_CyFunction_set_name(__pyx_CyFunctionObject *op, PyObject *value, CYTHON_UNUSED void *context) -{ - PyObject *tmp; -#if PY_MAJOR_VERSION >= 3 - if (unlikely(value == NULL || !PyUnicode_Check(value))) -#else - if (unlikely(value == NULL || !PyString_Check(value))) -#endif - { - PyErr_SetString(PyExc_TypeError, - "__name__ must be set to a string object"); - return -1; - } - tmp = op->func_name; - Py_INCREF(value); - op->func_name = value; - Py_XDECREF(tmp); - return 0; -} -static PyObject * -__Pyx_CyFunction_get_qualname(__pyx_CyFunctionObject *op, CYTHON_UNUSED void *context) -{ - Py_INCREF(op->func_qualname); - return op->func_qualname; -} -static int -__Pyx_CyFunction_set_qualname(__pyx_CyFunctionObject *op, PyObject *value, CYTHON_UNUSED void *context) -{ - PyObject *tmp; -#if PY_MAJOR_VERSION >= 3 - if (unlikely(value == NULL || !PyUnicode_Check(value))) -#else - if (unlikely(value == NULL || !PyString_Check(value))) -#endif - { - PyErr_SetString(PyExc_TypeError, - "__qualname__ must be set to a string object"); - return -1; - } - tmp = op->func_qualname; - Py_INCREF(value); - op->func_qualname = value; - Py_XDECREF(tmp); - return 0; -} -static PyObject * -__Pyx_CyFunction_get_self(__pyx_CyFunctionObject *m, CYTHON_UNUSED void *closure) -{ - PyObject *self; - self = m->func_closure; - if (self == NULL) - self = Py_None; - Py_INCREF(self); - return self; -} -static PyObject * -__Pyx_CyFunction_get_dict(__pyx_CyFunctionObject *op, CYTHON_UNUSED void *context) -{ - if (unlikely(op->func_dict == NULL)) { - op->func_dict = PyDict_New(); - if (unlikely(op->func_dict == NULL)) - return NULL; - } - Py_INCREF(op->func_dict); - return op->func_dict; -} -static int -__Pyx_CyFunction_set_dict(__pyx_CyFunctionObject *op, PyObject *value, CYTHON_UNUSED void *context) -{ - PyObject *tmp; - if (unlikely(value == NULL)) { - PyErr_SetString(PyExc_TypeError, - "function's dictionary may not be deleted"); - return -1; - } - if (unlikely(!PyDict_Check(value))) { - PyErr_SetString(PyExc_TypeError, - "setting function's dictionary to a non-dict"); - return -1; - } - tmp = op->func_dict; - Py_INCREF(value); - op->func_dict = value; - Py_XDECREF(tmp); - return 0; -} -static PyObject * -__Pyx_CyFunction_get_globals(__pyx_CyFunctionObject *op, CYTHON_UNUSED void *context) -{ - Py_INCREF(op->func_globals); - return op->func_globals; -} -static PyObject * -__Pyx_CyFunction_get_closure(CYTHON_UNUSED __pyx_CyFunctionObject *op, CYTHON_UNUSED void *context) -{ - Py_INCREF(Py_None); - return Py_None; -} -static PyObject * -__Pyx_CyFunction_get_code(__pyx_CyFunctionObject *op, CYTHON_UNUSED void *context) -{ - PyObject* result = (op->func_code) ? op->func_code : Py_None; - Py_INCREF(result); - return result; -} -static int -__Pyx_CyFunction_init_defaults(__pyx_CyFunctionObject *op) { - int result = 0; - PyObject *res = op->defaults_getter((PyObject *) op); - if (unlikely(!res)) - return -1; - #if CYTHON_ASSUME_SAFE_MACROS && !CYTHON_AVOID_BORROWED_REFS - op->defaults_tuple = PyTuple_GET_ITEM(res, 0); - Py_INCREF(op->defaults_tuple); - op->defaults_kwdict = PyTuple_GET_ITEM(res, 1); - Py_INCREF(op->defaults_kwdict); - #else - op->defaults_tuple = PySequence_ITEM(res, 0); - if (unlikely(!op->defaults_tuple)) result = -1; - else { - op->defaults_kwdict = PySequence_ITEM(res, 1); - if (unlikely(!op->defaults_kwdict)) result = -1; - } - #endif - Py_DECREF(res); - return result; -} -static int -__Pyx_CyFunction_set_defaults(__pyx_CyFunctionObject *op, PyObject* value, CYTHON_UNUSED void *context) { - PyObject* tmp; - if (!value) { - value = Py_None; - } else if (value != Py_None && !PyTuple_Check(value)) { - PyErr_SetString(PyExc_TypeError, - "__defaults__ must be set to a tuple object"); - return -1; - } - Py_INCREF(value); - tmp = op->defaults_tuple; - op->defaults_tuple = value; - Py_XDECREF(tmp); - return 0; -} -static PyObject * -__Pyx_CyFunction_get_defaults(__pyx_CyFunctionObject *op, CYTHON_UNUSED void *context) { - PyObject* result = op->defaults_tuple; - if (unlikely(!result)) { - if (op->defaults_getter) { - if (__Pyx_CyFunction_init_defaults(op) < 0) return NULL; - result = op->defaults_tuple; - } else { - result = Py_None; - } - } - Py_INCREF(result); - return result; -} -static int -__Pyx_CyFunction_set_kwdefaults(__pyx_CyFunctionObject *op, PyObject* value, CYTHON_UNUSED void *context) { - PyObject* tmp; - if (!value) { - value = Py_None; - } else if (value != Py_None && !PyDict_Check(value)) { - PyErr_SetString(PyExc_TypeError, - "__kwdefaults__ must be set to a dict object"); - return -1; - } - Py_INCREF(value); - tmp = op->defaults_kwdict; - op->defaults_kwdict = value; - Py_XDECREF(tmp); - return 0; -} -static PyObject * -__Pyx_CyFunction_get_kwdefaults(__pyx_CyFunctionObject *op, CYTHON_UNUSED void *context) { - PyObject* result = op->defaults_kwdict; - if (unlikely(!result)) { - if (op->defaults_getter) { - if (__Pyx_CyFunction_init_defaults(op) < 0) return NULL; - result = op->defaults_kwdict; - } else { - result = Py_None; - } - } - Py_INCREF(result); - return result; -} -static int -__Pyx_CyFunction_set_annotations(__pyx_CyFunctionObject *op, PyObject* value, CYTHON_UNUSED void *context) { - PyObject* tmp; - if (!value || value == Py_None) { - value = NULL; - } else if (!PyDict_Check(value)) { - PyErr_SetString(PyExc_TypeError, - "__annotations__ must be set to a dict object"); - return -1; - } - Py_XINCREF(value); - tmp = op->func_annotations; - op->func_annotations = value; - Py_XDECREF(tmp); - return 0; -} -static PyObject * -__Pyx_CyFunction_get_annotations(__pyx_CyFunctionObject *op, CYTHON_UNUSED void *context) { - PyObject* result = op->func_annotations; - if (unlikely(!result)) { - result = PyDict_New(); - if (unlikely(!result)) return NULL; - op->func_annotations = result; - } - Py_INCREF(result); - return result; -} -static PyGetSetDef __pyx_CyFunction_getsets[] = { - {(char *) "func_doc", (getter)__Pyx_CyFunction_get_doc, (setter)__Pyx_CyFunction_set_doc, 0, 0}, - {(char *) "__doc__", (getter)__Pyx_CyFunction_get_doc, (setter)__Pyx_CyFunction_set_doc, 0, 0}, - {(char *) "func_name", (getter)__Pyx_CyFunction_get_name, (setter)__Pyx_CyFunction_set_name, 0, 0}, - {(char *) "__name__", (getter)__Pyx_CyFunction_get_name, (setter)__Pyx_CyFunction_set_name, 0, 0}, - {(char *) "__qualname__", (getter)__Pyx_CyFunction_get_qualname, (setter)__Pyx_CyFunction_set_qualname, 0, 0}, - {(char *) "__self__", (getter)__Pyx_CyFunction_get_self, 0, 0, 0}, - {(char *) "func_dict", (getter)__Pyx_CyFunction_get_dict, (setter)__Pyx_CyFunction_set_dict, 0, 0}, - {(char *) "__dict__", (getter)__Pyx_CyFunction_get_dict, (setter)__Pyx_CyFunction_set_dict, 0, 0}, - {(char *) "func_globals", (getter)__Pyx_CyFunction_get_globals, 0, 0, 0}, - {(char *) "__globals__", (getter)__Pyx_CyFunction_get_globals, 0, 0, 0}, - {(char *) "func_closure", (getter)__Pyx_CyFunction_get_closure, 0, 0, 0}, - {(char *) "__closure__", (getter)__Pyx_CyFunction_get_closure, 0, 0, 0}, - {(char *) "func_code", (getter)__Pyx_CyFunction_get_code, 0, 0, 0}, - {(char *) "__code__", (getter)__Pyx_CyFunction_get_code, 0, 0, 0}, - {(char *) "func_defaults", (getter)__Pyx_CyFunction_get_defaults, (setter)__Pyx_CyFunction_set_defaults, 0, 0}, - {(char *) "__defaults__", (getter)__Pyx_CyFunction_get_defaults, (setter)__Pyx_CyFunction_set_defaults, 0, 0}, - {(char *) "__kwdefaults__", (getter)__Pyx_CyFunction_get_kwdefaults, (setter)__Pyx_CyFunction_set_kwdefaults, 0, 0}, - {(char *) "__annotations__", (getter)__Pyx_CyFunction_get_annotations, (setter)__Pyx_CyFunction_set_annotations, 0, 0}, - {0, 0, 0, 0, 0} -}; -static PyMemberDef __pyx_CyFunction_members[] = { - {(char *) "__module__", T_OBJECT, offsetof(PyCFunctionObject, m_module), PY_WRITE_RESTRICTED, 0}, - {0, 0, 0, 0, 0} -}; -static PyObject * -__Pyx_CyFunction_reduce(__pyx_CyFunctionObject *m, CYTHON_UNUSED PyObject *args) -{ -#if PY_MAJOR_VERSION >= 3 - return PyUnicode_FromString(m->func.m_ml->ml_name); -#else - return PyString_FromString(m->func.m_ml->ml_name); -#endif -} -static PyMethodDef __pyx_CyFunction_methods[] = { - {"__reduce__", (PyCFunction)__Pyx_CyFunction_reduce, METH_VARARGS, 0}, - {0, 0, 0, 0} -}; -#if PY_VERSION_HEX < 0x030500A0 -#define __Pyx_CyFunction_weakreflist(cyfunc) ((cyfunc)->func_weakreflist) -#else -#define __Pyx_CyFunction_weakreflist(cyfunc) ((cyfunc)->func.m_weakreflist) -#endif -static PyObject *__Pyx_CyFunction_New(PyTypeObject *type, PyMethodDef *ml, int flags, PyObject* qualname, - PyObject *closure, PyObject *module, PyObject* globals, PyObject* code) { - __pyx_CyFunctionObject *op = PyObject_GC_New(__pyx_CyFunctionObject, type); - if (op == NULL) - return NULL; - op->flags = flags; - __Pyx_CyFunction_weakreflist(op) = NULL; - op->func.m_ml = ml; - op->func.m_self = (PyObject *) op; - Py_XINCREF(closure); - op->func_closure = closure; - Py_XINCREF(module); - op->func.m_module = module; - op->func_dict = NULL; - op->func_name = NULL; - Py_INCREF(qualname); - op->func_qualname = qualname; - op->func_doc = NULL; - op->func_classobj = NULL; - op->func_globals = globals; - Py_INCREF(op->func_globals); - Py_XINCREF(code); - op->func_code = code; - op->defaults_pyobjects = 0; - op->defaults = NULL; - op->defaults_tuple = NULL; - op->defaults_kwdict = NULL; - op->defaults_getter = NULL; - op->func_annotations = NULL; - PyObject_GC_Track(op); - return (PyObject *) op; -} -static int -__Pyx_CyFunction_clear(__pyx_CyFunctionObject *m) -{ - Py_CLEAR(m->func_closure); - Py_CLEAR(m->func.m_module); - Py_CLEAR(m->func_dict); - Py_CLEAR(m->func_name); - Py_CLEAR(m->func_qualname); - Py_CLEAR(m->func_doc); - Py_CLEAR(m->func_globals); - Py_CLEAR(m->func_code); - Py_CLEAR(m->func_classobj); - Py_CLEAR(m->defaults_tuple); - Py_CLEAR(m->defaults_kwdict); - Py_CLEAR(m->func_annotations); - if (m->defaults) { - PyObject **pydefaults = __Pyx_CyFunction_Defaults(PyObject *, m); - int i; - for (i = 0; i < m->defaults_pyobjects; i++) - Py_XDECREF(pydefaults[i]); - PyObject_Free(m->defaults); - m->defaults = NULL; - } - return 0; -} -static void __Pyx__CyFunction_dealloc(__pyx_CyFunctionObject *m) -{ - if (__Pyx_CyFunction_weakreflist(m) != NULL) - PyObject_ClearWeakRefs((PyObject *) m); - __Pyx_CyFunction_clear(m); - PyObject_GC_Del(m); -} -static void __Pyx_CyFunction_dealloc(__pyx_CyFunctionObject *m) -{ - PyObject_GC_UnTrack(m); - __Pyx__CyFunction_dealloc(m); -} -static int __Pyx_CyFunction_traverse(__pyx_CyFunctionObject *m, visitproc visit, void *arg) -{ - Py_VISIT(m->func_closure); - Py_VISIT(m->func.m_module); - Py_VISIT(m->func_dict); - Py_VISIT(m->func_name); - Py_VISIT(m->func_qualname); - Py_VISIT(m->func_doc); - Py_VISIT(m->func_globals); - Py_VISIT(m->func_code); - Py_VISIT(m->func_classobj); - Py_VISIT(m->defaults_tuple); - Py_VISIT(m->defaults_kwdict); - if (m->defaults) { - PyObject **pydefaults = __Pyx_CyFunction_Defaults(PyObject *, m); - int i; - for (i = 0; i < m->defaults_pyobjects; i++) - Py_VISIT(pydefaults[i]); - } - return 0; -} -static PyObject *__Pyx_CyFunction_descr_get(PyObject *func, PyObject *obj, PyObject *type) -{ - __pyx_CyFunctionObject *m = (__pyx_CyFunctionObject *) func; - if (m->flags & __Pyx_CYFUNCTION_STATICMETHOD) { - Py_INCREF(func); - return func; - } - if (m->flags & __Pyx_CYFUNCTION_CLASSMETHOD) { - if (type == NULL) - type = (PyObject *)(Py_TYPE(obj)); - return __Pyx_PyMethod_New(func, type, (PyObject *)(Py_TYPE(type))); - } - if (obj == Py_None) - obj = NULL; - return __Pyx_PyMethod_New(func, obj, type); -} -static PyObject* -__Pyx_CyFunction_repr(__pyx_CyFunctionObject *op) -{ -#if PY_MAJOR_VERSION >= 3 - return PyUnicode_FromFormat("", - op->func_qualname, (void *)op); -#else - return PyString_FromFormat("", - PyString_AsString(op->func_qualname), (void *)op); -#endif -} -static PyObject * __Pyx_CyFunction_CallMethod(PyObject *func, PyObject *self, PyObject *arg, PyObject *kw) { - PyCFunctionObject* f = (PyCFunctionObject*)func; - PyCFunction meth = f->m_ml->ml_meth; - Py_ssize_t size; - switch (f->m_ml->ml_flags & (METH_VARARGS | METH_KEYWORDS | METH_NOARGS | METH_O)) { - case METH_VARARGS: - if (likely(kw == NULL || PyDict_Size(kw) == 0)) - return (*meth)(self, arg); - break; - case METH_VARARGS | METH_KEYWORDS: - return (*(PyCFunctionWithKeywords)(void*)meth)(self, arg, kw); - case METH_NOARGS: - if (likely(kw == NULL || PyDict_Size(kw) == 0)) { - size = PyTuple_GET_SIZE(arg); - if (likely(size == 0)) - return (*meth)(self, NULL); - PyErr_Format(PyExc_TypeError, - "%.200s() takes no arguments (%" CYTHON_FORMAT_SSIZE_T "d given)", - f->m_ml->ml_name, size); - return NULL; - } - break; - case METH_O: - if (likely(kw == NULL || PyDict_Size(kw) == 0)) { - size = PyTuple_GET_SIZE(arg); - if (likely(size == 1)) { - PyObject *result, *arg0; - #if CYTHON_ASSUME_SAFE_MACROS && !CYTHON_AVOID_BORROWED_REFS - arg0 = PyTuple_GET_ITEM(arg, 0); - #else - arg0 = PySequence_ITEM(arg, 0); if (unlikely(!arg0)) return NULL; - #endif - result = (*meth)(self, arg0); - #if !(CYTHON_ASSUME_SAFE_MACROS && !CYTHON_AVOID_BORROWED_REFS) - Py_DECREF(arg0); - #endif - return result; - } - PyErr_Format(PyExc_TypeError, - "%.200s() takes exactly one argument (%" CYTHON_FORMAT_SSIZE_T "d given)", - f->m_ml->ml_name, size); - return NULL; - } - break; - default: - PyErr_SetString(PyExc_SystemError, "Bad call flags in " - "__Pyx_CyFunction_Call. METH_OLDARGS is no " - "longer supported!"); - return NULL; - } - PyErr_Format(PyExc_TypeError, "%.200s() takes no keyword arguments", - f->m_ml->ml_name); - return NULL; -} -static CYTHON_INLINE PyObject *__Pyx_CyFunction_Call(PyObject *func, PyObject *arg, PyObject *kw) { - return __Pyx_CyFunction_CallMethod(func, ((PyCFunctionObject*)func)->m_self, arg, kw); -} -static PyObject *__Pyx_CyFunction_CallAsMethod(PyObject *func, PyObject *args, PyObject *kw) { - PyObject *result; - __pyx_CyFunctionObject *cyfunc = (__pyx_CyFunctionObject *) func; - if ((cyfunc->flags & __Pyx_CYFUNCTION_CCLASS) && !(cyfunc->flags & __Pyx_CYFUNCTION_STATICMETHOD)) { - Py_ssize_t argc; - PyObject *new_args; - PyObject *self; - argc = PyTuple_GET_SIZE(args); - new_args = PyTuple_GetSlice(args, 1, argc); - if (unlikely(!new_args)) - return NULL; - self = PyTuple_GetItem(args, 0); - if (unlikely(!self)) { - Py_DECREF(new_args); - return NULL; - } - result = __Pyx_CyFunction_CallMethod(func, self, new_args, kw); - Py_DECREF(new_args); - } else { - result = __Pyx_CyFunction_Call(func, args, kw); - } - return result; -} -static PyTypeObject __pyx_CyFunctionType_type = { - PyVarObject_HEAD_INIT(0, 0) - "cython_function_or_method", - sizeof(__pyx_CyFunctionObject), - 0, - (destructor) __Pyx_CyFunction_dealloc, - 0, - 0, - 0, -#if PY_MAJOR_VERSION < 3 - 0, -#else - 0, -#endif - (reprfunc) __Pyx_CyFunction_repr, - 0, - 0, - 0, - 0, - __Pyx_CyFunction_CallAsMethod, - 0, - 0, - 0, - 0, - Py_TPFLAGS_DEFAULT | Py_TPFLAGS_HAVE_GC, - 0, - (traverseproc) __Pyx_CyFunction_traverse, - (inquiry) __Pyx_CyFunction_clear, - 0, -#if PY_VERSION_HEX < 0x030500A0 - offsetof(__pyx_CyFunctionObject, func_weakreflist), -#else - offsetof(PyCFunctionObject, m_weakreflist), -#endif - 0, - 0, - __pyx_CyFunction_methods, - __pyx_CyFunction_members, - __pyx_CyFunction_getsets, - 0, - 0, - __Pyx_CyFunction_descr_get, - 0, - offsetof(__pyx_CyFunctionObject, func_dict), - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, -#if PY_VERSION_HEX >= 0x030400a1 - 0, -#endif -#if PY_VERSION_HEX >= 0x030800b1 - 0, -#endif -#if PY_VERSION_HEX >= 0x030800b4 && PY_VERSION_HEX < 0x03090000 - 0, -#endif -}; -static int __pyx_CyFunction_init(void) { - __pyx_CyFunctionType = __Pyx_FetchCommonType(&__pyx_CyFunctionType_type); - if (unlikely(__pyx_CyFunctionType == NULL)) { - return -1; - } - return 0; -} -static CYTHON_INLINE void *__Pyx_CyFunction_InitDefaults(PyObject *func, size_t size, int pyobjects) { - __pyx_CyFunctionObject *m = (__pyx_CyFunctionObject *) func; - m->defaults = PyObject_Malloc(size); - if (unlikely(!m->defaults)) - return PyErr_NoMemory(); - memset(m->defaults, 0, size); - m->defaults_pyobjects = pyobjects; - return m->defaults; -} -static CYTHON_INLINE void __Pyx_CyFunction_SetDefaultsTuple(PyObject *func, PyObject *tuple) { - __pyx_CyFunctionObject *m = (__pyx_CyFunctionObject *) func; - m->defaults_tuple = tuple; - Py_INCREF(tuple); -} -static CYTHON_INLINE void __Pyx_CyFunction_SetDefaultsKwDict(PyObject *func, PyObject *dict) { - __pyx_CyFunctionObject *m = (__pyx_CyFunctionObject *) func; - m->defaults_kwdict = dict; - Py_INCREF(dict); -} -static CYTHON_INLINE void __Pyx_CyFunction_SetAnnotationsDict(PyObject *func, PyObject *dict) { - __pyx_CyFunctionObject *m = (__pyx_CyFunctionObject *) func; - m->func_annotations = dict; - Py_INCREF(dict); -} - -/* Py3ClassCreate */ -static PyObject *__Pyx_Py3MetaclassPrepare(PyObject *metaclass, PyObject *bases, PyObject *name, - PyObject *qualname, PyObject *mkw, PyObject *modname, PyObject *doc) { - PyObject *ns; - if (metaclass) { - PyObject *prep = __Pyx_PyObject_GetAttrStr(metaclass, __pyx_n_s_prepare); - if (prep) { - PyObject *pargs = PyTuple_Pack(2, name, bases); - if (unlikely(!pargs)) { - Py_DECREF(prep); - return NULL; - } - ns = PyObject_Call(prep, pargs, mkw); - Py_DECREF(prep); - Py_DECREF(pargs); - } else { - if (unlikely(!PyErr_ExceptionMatches(PyExc_AttributeError))) - return NULL; - PyErr_Clear(); - ns = PyDict_New(); - } - } else { - ns = PyDict_New(); - } - if (unlikely(!ns)) - return NULL; - if (unlikely(PyObject_SetItem(ns, __pyx_n_s_module, modname) < 0)) goto bad; - if (unlikely(PyObject_SetItem(ns, __pyx_n_s_qualname, qualname) < 0)) goto bad; - if (unlikely(doc && PyObject_SetItem(ns, __pyx_n_s_doc, doc) < 0)) goto bad; - return ns; -bad: - Py_DECREF(ns); - return NULL; -} -static PyObject *__Pyx_Py3ClassCreate(PyObject *metaclass, PyObject *name, PyObject *bases, - PyObject *dict, PyObject *mkw, - int calculate_metaclass, int allow_py2_metaclass) { - PyObject *result, *margs; - PyObject *owned_metaclass = NULL; - if (allow_py2_metaclass) { - owned_metaclass = PyObject_GetItem(dict, __pyx_n_s_metaclass); - if (owned_metaclass) { - metaclass = owned_metaclass; - } else if (likely(PyErr_ExceptionMatches(PyExc_KeyError))) { - PyErr_Clear(); - } else { - return NULL; - } - } - if (calculate_metaclass && (!metaclass || PyType_Check(metaclass))) { - metaclass = __Pyx_CalculateMetaclass((PyTypeObject*) metaclass, bases); - Py_XDECREF(owned_metaclass); - if (unlikely(!metaclass)) - return NULL; - owned_metaclass = metaclass; - } - margs = PyTuple_Pack(3, name, bases, dict); - if (unlikely(!margs)) { - result = NULL; - } else { - result = PyObject_Call(metaclass, margs, mkw); - Py_DECREF(margs); - } - Py_XDECREF(owned_metaclass); - return result; -} - -/* PyErrFetchRestore */ -#if CYTHON_FAST_THREAD_STATE -static CYTHON_INLINE void __Pyx_ErrRestoreInState(PyThreadState *tstate, PyObject *type, PyObject *value, PyObject *tb) { - PyObject *tmp_type, *tmp_value, *tmp_tb; - tmp_type = tstate->curexc_type; - tmp_value = tstate->curexc_value; - tmp_tb = tstate->curexc_traceback; - tstate->curexc_type = type; - tstate->curexc_value = value; - tstate->curexc_traceback = tb; - Py_XDECREF(tmp_type); - Py_XDECREF(tmp_value); - Py_XDECREF(tmp_tb); -} -static CYTHON_INLINE void __Pyx_ErrFetchInState(PyThreadState *tstate, PyObject **type, PyObject **value, PyObject **tb) { - *type = tstate->curexc_type; - *value = tstate->curexc_value; - *tb = tstate->curexc_traceback; - tstate->curexc_type = 0; - tstate->curexc_value = 0; - tstate->curexc_traceback = 0; -} -#endif - -/* CLineInTraceback */ -#ifndef CYTHON_CLINE_IN_TRACEBACK -static int __Pyx_CLineForTraceback(PyThreadState *tstate, int c_line) { - PyObject *use_cline; - PyObject *ptype, *pvalue, *ptraceback; -#if CYTHON_COMPILING_IN_CPYTHON - PyObject **cython_runtime_dict; -#endif - if (unlikely(!__pyx_cython_runtime)) { - return c_line; - } - __Pyx_ErrFetchInState(tstate, &ptype, &pvalue, &ptraceback); -#if CYTHON_COMPILING_IN_CPYTHON - cython_runtime_dict = _PyObject_GetDictPtr(__pyx_cython_runtime); - if (likely(cython_runtime_dict)) { - __PYX_PY_DICT_LOOKUP_IF_MODIFIED( - use_cline, *cython_runtime_dict, - __Pyx_PyDict_GetItemStr(*cython_runtime_dict, __pyx_n_s_cline_in_traceback)) - } else -#endif - { - PyObject *use_cline_obj = __Pyx_PyObject_GetAttrStr(__pyx_cython_runtime, __pyx_n_s_cline_in_traceback); - if (use_cline_obj) { - use_cline = PyObject_Not(use_cline_obj) ? Py_False : Py_True; - Py_DECREF(use_cline_obj); - } else { - PyErr_Clear(); - use_cline = NULL; - } - } - if (!use_cline) { - c_line = 0; - PyObject_SetAttr(__pyx_cython_runtime, __pyx_n_s_cline_in_traceback, Py_False); - } - else if (use_cline == Py_False || (use_cline != Py_True && PyObject_Not(use_cline) != 0)) { - c_line = 0; - } - __Pyx_ErrRestoreInState(tstate, ptype, pvalue, ptraceback); - return c_line; -} -#endif - -/* CodeObjectCache */ -static int __pyx_bisect_code_objects(__Pyx_CodeObjectCacheEntry* entries, int count, int code_line) { - int start = 0, mid = 0, end = count - 1; - if (end >= 0 && code_line > entries[end].code_line) { - return count; - } - while (start < end) { - mid = start + (end - start) / 2; - if (code_line < entries[mid].code_line) { - end = mid; - } else if (code_line > entries[mid].code_line) { - start = mid + 1; - } else { - return mid; - } - } - if (code_line <= entries[mid].code_line) { - return mid; - } else { - return mid + 1; - } -} -static PyCodeObject *__pyx_find_code_object(int code_line) { - PyCodeObject* code_object; - int pos; - if (unlikely(!code_line) || unlikely(!__pyx_code_cache.entries)) { - return NULL; - } - pos = __pyx_bisect_code_objects(__pyx_code_cache.entries, __pyx_code_cache.count, code_line); - if (unlikely(pos >= __pyx_code_cache.count) || unlikely(__pyx_code_cache.entries[pos].code_line != code_line)) { - return NULL; - } - code_object = __pyx_code_cache.entries[pos].code_object; - Py_INCREF(code_object); - return code_object; -} -static void __pyx_insert_code_object(int code_line, PyCodeObject* code_object) { - int pos, i; - __Pyx_CodeObjectCacheEntry* entries = __pyx_code_cache.entries; - if (unlikely(!code_line)) { - return; - } - if (unlikely(!entries)) { - entries = (__Pyx_CodeObjectCacheEntry*)PyMem_Malloc(64*sizeof(__Pyx_CodeObjectCacheEntry)); - if (likely(entries)) { - __pyx_code_cache.entries = entries; - __pyx_code_cache.max_count = 64; - __pyx_code_cache.count = 1; - entries[0].code_line = code_line; - entries[0].code_object = code_object; - Py_INCREF(code_object); - } - return; - } - pos = __pyx_bisect_code_objects(__pyx_code_cache.entries, __pyx_code_cache.count, code_line); - if ((pos < __pyx_code_cache.count) && unlikely(__pyx_code_cache.entries[pos].code_line == code_line)) { - PyCodeObject* tmp = entries[pos].code_object; - entries[pos].code_object = code_object; - Py_DECREF(tmp); - return; - } - if (__pyx_code_cache.count == __pyx_code_cache.max_count) { - int new_max = __pyx_code_cache.max_count + 64; - entries = (__Pyx_CodeObjectCacheEntry*)PyMem_Realloc( - __pyx_code_cache.entries, (size_t)new_max*sizeof(__Pyx_CodeObjectCacheEntry)); - if (unlikely(!entries)) { - return; - } - __pyx_code_cache.entries = entries; - __pyx_code_cache.max_count = new_max; - } - for (i=__pyx_code_cache.count; i>pos; i--) { - entries[i] = entries[i-1]; - } - entries[pos].code_line = code_line; - entries[pos].code_object = code_object; - __pyx_code_cache.count++; - Py_INCREF(code_object); -} - -/* AddTraceback */ -#include "compile.h" -#include "frameobject.h" -#include "traceback.h" -static PyCodeObject* __Pyx_CreateCodeObjectForTraceback( - const char *funcname, int c_line, - int py_line, const char *filename) { - PyCodeObject *py_code = 0; - PyObject *py_srcfile = 0; - PyObject *py_funcname = 0; - #if PY_MAJOR_VERSION < 3 - py_srcfile = PyString_FromString(filename); - #else - py_srcfile = PyUnicode_FromString(filename); - #endif - if (!py_srcfile) goto bad; - if (c_line) { - #if PY_MAJOR_VERSION < 3 - py_funcname = PyString_FromFormat( "%s (%s:%d)", funcname, __pyx_cfilenm, c_line); - #else - py_funcname = PyUnicode_FromFormat( "%s (%s:%d)", funcname, __pyx_cfilenm, c_line); - #endif - } - else { - #if PY_MAJOR_VERSION < 3 - py_funcname = PyString_FromString(funcname); - #else - py_funcname = PyUnicode_FromString(funcname); - #endif - } - if (!py_funcname) goto bad; - py_code = __Pyx_PyCode_New( - 0, - 0, - 0, - 0, - 0, - __pyx_empty_bytes, /*PyObject *code,*/ - __pyx_empty_tuple, /*PyObject *consts,*/ - __pyx_empty_tuple, /*PyObject *names,*/ - __pyx_empty_tuple, /*PyObject *varnames,*/ - __pyx_empty_tuple, /*PyObject *freevars,*/ - __pyx_empty_tuple, /*PyObject *cellvars,*/ - py_srcfile, /*PyObject *filename,*/ - py_funcname, /*PyObject *name,*/ - py_line, - __pyx_empty_bytes /*PyObject *lnotab*/ - ); - Py_DECREF(py_srcfile); - Py_DECREF(py_funcname); - return py_code; -bad: - Py_XDECREF(py_srcfile); - Py_XDECREF(py_funcname); - return NULL; -} -static void __Pyx_AddTraceback(const char *funcname, int c_line, - int py_line, const char *filename) { - PyCodeObject *py_code = 0; - PyFrameObject *py_frame = 0; - PyThreadState *tstate = __Pyx_PyThreadState_Current; - if (c_line) { - c_line = __Pyx_CLineForTraceback(tstate, c_line); - } - py_code = __pyx_find_code_object(c_line ? -c_line : py_line); - if (!py_code) { - py_code = __Pyx_CreateCodeObjectForTraceback( - funcname, c_line, py_line, filename); - if (!py_code) goto bad; - __pyx_insert_code_object(c_line ? -c_line : py_line, py_code); - } - py_frame = PyFrame_New( - tstate, /*PyThreadState *tstate,*/ - py_code, /*PyCodeObject *code,*/ - __pyx_d, /*PyObject *globals,*/ - 0 /*PyObject *locals*/ - ); - if (!py_frame) goto bad; - __Pyx_PyFrame_SetLineNumber(py_frame, py_line); - PyTraceBack_Here(py_frame); -bad: - Py_XDECREF(py_code); - Py_XDECREF(py_frame); -} - -/* CIntFromPyVerify */ -#define __PYX_VERIFY_RETURN_INT(target_type, func_type, func_value)\ - __PYX__VERIFY_RETURN_INT(target_type, func_type, func_value, 0) -#define __PYX_VERIFY_RETURN_INT_EXC(target_type, func_type, func_value)\ - __PYX__VERIFY_RETURN_INT(target_type, func_type, func_value, 1) -#define __PYX__VERIFY_RETURN_INT(target_type, func_type, func_value, exc)\ - {\ - func_type value = func_value;\ - if (sizeof(target_type) < sizeof(func_type)) {\ - if (unlikely(value != (func_type) (target_type) value)) {\ - func_type zero = 0;\ - if (exc && unlikely(value == (func_type)-1 && PyErr_Occurred()))\ - return (target_type) -1;\ - if (is_unsigned && unlikely(value < zero))\ - goto raise_neg_overflow;\ - else\ - goto raise_overflow;\ - }\ - }\ - return (target_type) value;\ - } - -/* CIntToPy */ -static CYTHON_INLINE PyObject* __Pyx_PyInt_From_unsigned_int(unsigned int value) { - const unsigned int neg_one = (unsigned int) ((unsigned int) 0 - (unsigned int) 1), const_zero = (unsigned int) 0; - const int is_unsigned = neg_one > const_zero; - if (is_unsigned) { - if (sizeof(unsigned int) < sizeof(long)) { - return PyInt_FromLong((long) value); - } else if (sizeof(unsigned int) <= sizeof(unsigned long)) { - return PyLong_FromUnsignedLong((unsigned long) value); -#ifdef HAVE_LONG_LONG - } else if (sizeof(unsigned int) <= sizeof(unsigned PY_LONG_LONG)) { - return PyLong_FromUnsignedLongLong((unsigned PY_LONG_LONG) value); -#endif - } - } else { - if (sizeof(unsigned int) <= sizeof(long)) { - return PyInt_FromLong((long) value); -#ifdef HAVE_LONG_LONG - } else if (sizeof(unsigned int) <= sizeof(PY_LONG_LONG)) { - return PyLong_FromLongLong((PY_LONG_LONG) value); -#endif - } - } - { - int one = 1; int little = (int)*(unsigned char *)&one; - unsigned char *bytes = (unsigned char *)&value; - return _PyLong_FromByteArray(bytes, sizeof(unsigned int), - little, !is_unsigned); - } -} - -/* CIntToPy */ -static CYTHON_INLINE PyObject* __Pyx_PyInt_From_long(long value) { - const long neg_one = (long) ((long) 0 - (long) 1), const_zero = (long) 0; - const int is_unsigned = neg_one > const_zero; - if (is_unsigned) { - if (sizeof(long) < sizeof(long)) { - return PyInt_FromLong((long) value); - } else if (sizeof(long) <= sizeof(unsigned long)) { - return PyLong_FromUnsignedLong((unsigned long) value); -#ifdef HAVE_LONG_LONG - } else if (sizeof(long) <= sizeof(unsigned PY_LONG_LONG)) { - return PyLong_FromUnsignedLongLong((unsigned PY_LONG_LONG) value); -#endif - } - } else { - if (sizeof(long) <= sizeof(long)) { - return PyInt_FromLong((long) value); -#ifdef HAVE_LONG_LONG - } else if (sizeof(long) <= sizeof(PY_LONG_LONG)) { - return PyLong_FromLongLong((PY_LONG_LONG) value); -#endif - } - } - { - int one = 1; int little = (int)*(unsigned char *)&one; - unsigned char *bytes = (unsigned char *)&value; - return _PyLong_FromByteArray(bytes, sizeof(long), - little, !is_unsigned); - } -} - -/* CIntFromPy */ -static CYTHON_INLINE unsigned int __Pyx_PyInt_As_unsigned_int(PyObject *x) { - const unsigned int neg_one = (unsigned int) ((unsigned int) 0 - (unsigned int) 1), const_zero = (unsigned int) 0; - const int is_unsigned = neg_one > const_zero; -#if PY_MAJOR_VERSION < 3 - if (likely(PyInt_Check(x))) { - if (sizeof(unsigned int) < sizeof(long)) { - __PYX_VERIFY_RETURN_INT(unsigned int, long, PyInt_AS_LONG(x)) - } else { - long val = PyInt_AS_LONG(x); - if (is_unsigned && unlikely(val < 0)) { - goto raise_neg_overflow; - } - return (unsigned int) val; - } - } else -#endif - if (likely(PyLong_Check(x))) { - if (is_unsigned) { -#if CYTHON_USE_PYLONG_INTERNALS - const digit* digits = ((PyLongObject*)x)->ob_digit; - switch (Py_SIZE(x)) { - case 0: return (unsigned int) 0; - case 1: __PYX_VERIFY_RETURN_INT(unsigned int, digit, digits[0]) - case 2: - if (8 * sizeof(unsigned int) > 1 * PyLong_SHIFT) { - if (8 * sizeof(unsigned long) > 2 * PyLong_SHIFT) { - __PYX_VERIFY_RETURN_INT(unsigned int, unsigned long, (((((unsigned long)digits[1]) << PyLong_SHIFT) | (unsigned long)digits[0]))) - } else if (8 * sizeof(unsigned int) >= 2 * PyLong_SHIFT) { - return (unsigned int) (((((unsigned int)digits[1]) << PyLong_SHIFT) | (unsigned int)digits[0])); - } - } - break; - case 3: - if (8 * sizeof(unsigned int) > 2 * PyLong_SHIFT) { - if (8 * sizeof(unsigned long) > 3 * PyLong_SHIFT) { - __PYX_VERIFY_RETURN_INT(unsigned int, unsigned long, (((((((unsigned long)digits[2]) << PyLong_SHIFT) | (unsigned long)digits[1]) << PyLong_SHIFT) | (unsigned long)digits[0]))) - } else if (8 * sizeof(unsigned int) >= 3 * PyLong_SHIFT) { - return (unsigned int) (((((((unsigned int)digits[2]) << PyLong_SHIFT) | (unsigned int)digits[1]) << PyLong_SHIFT) | (unsigned int)digits[0])); - } - } - break; - case 4: - if (8 * sizeof(unsigned int) > 3 * PyLong_SHIFT) { - if (8 * sizeof(unsigned long) > 4 * PyLong_SHIFT) { - __PYX_VERIFY_RETURN_INT(unsigned int, unsigned long, (((((((((unsigned long)digits[3]) << PyLong_SHIFT) | (unsigned long)digits[2]) << PyLong_SHIFT) | (unsigned long)digits[1]) << PyLong_SHIFT) | (unsigned long)digits[0]))) - } else if (8 * sizeof(unsigned int) >= 4 * PyLong_SHIFT) { - return (unsigned int) (((((((((unsigned int)digits[3]) << PyLong_SHIFT) | (unsigned int)digits[2]) << PyLong_SHIFT) | (unsigned int)digits[1]) << PyLong_SHIFT) | (unsigned int)digits[0])); - } - } - break; - } -#endif -#if CYTHON_COMPILING_IN_CPYTHON - if (unlikely(Py_SIZE(x) < 0)) { - goto raise_neg_overflow; - } -#else - { - int result = PyObject_RichCompareBool(x, Py_False, Py_LT); - if (unlikely(result < 0)) - return (unsigned int) -1; - if (unlikely(result == 1)) - goto raise_neg_overflow; - } -#endif - if (sizeof(unsigned int) <= sizeof(unsigned long)) { - __PYX_VERIFY_RETURN_INT_EXC(unsigned int, unsigned long, PyLong_AsUnsignedLong(x)) -#ifdef HAVE_LONG_LONG - } else if (sizeof(unsigned int) <= sizeof(unsigned PY_LONG_LONG)) { - __PYX_VERIFY_RETURN_INT_EXC(unsigned int, unsigned PY_LONG_LONG, PyLong_AsUnsignedLongLong(x)) -#endif - } - } else { -#if CYTHON_USE_PYLONG_INTERNALS - const digit* digits = ((PyLongObject*)x)->ob_digit; - switch (Py_SIZE(x)) { - case 0: return (unsigned int) 0; - case -1: __PYX_VERIFY_RETURN_INT(unsigned int, sdigit, (sdigit) (-(sdigit)digits[0])) - case 1: __PYX_VERIFY_RETURN_INT(unsigned int, digit, +digits[0]) - case -2: - if (8 * sizeof(unsigned int) - 1 > 1 * PyLong_SHIFT) { - if (8 * sizeof(unsigned long) > 2 * PyLong_SHIFT) { - __PYX_VERIFY_RETURN_INT(unsigned int, long, -(long) (((((unsigned long)digits[1]) << PyLong_SHIFT) | (unsigned long)digits[0]))) - } else if (8 * sizeof(unsigned int) - 1 > 2 * PyLong_SHIFT) { - return (unsigned int) (((unsigned int)-1)*(((((unsigned int)digits[1]) << PyLong_SHIFT) | (unsigned int)digits[0]))); - } - } - break; - case 2: - if (8 * sizeof(unsigned int) > 1 * PyLong_SHIFT) { - if (8 * sizeof(unsigned long) > 2 * PyLong_SHIFT) { - __PYX_VERIFY_RETURN_INT(unsigned int, unsigned long, (((((unsigned long)digits[1]) << PyLong_SHIFT) | (unsigned long)digits[0]))) - } else if (8 * sizeof(unsigned int) - 1 > 2 * PyLong_SHIFT) { - return (unsigned int) ((((((unsigned int)digits[1]) << PyLong_SHIFT) | (unsigned int)digits[0]))); - } - } - break; - case -3: - if (8 * sizeof(unsigned int) - 1 > 2 * PyLong_SHIFT) { - if (8 * sizeof(unsigned long) > 3 * PyLong_SHIFT) { - __PYX_VERIFY_RETURN_INT(unsigned int, long, -(long) (((((((unsigned long)digits[2]) << PyLong_SHIFT) | (unsigned long)digits[1]) << PyLong_SHIFT) | (unsigned long)digits[0]))) - } else if (8 * sizeof(unsigned int) - 1 > 3 * PyLong_SHIFT) { - return (unsigned int) (((unsigned int)-1)*(((((((unsigned int)digits[2]) << PyLong_SHIFT) | (unsigned int)digits[1]) << PyLong_SHIFT) | (unsigned int)digits[0]))); - } - } - break; - case 3: - if (8 * sizeof(unsigned int) > 2 * PyLong_SHIFT) { - if (8 * sizeof(unsigned long) > 3 * PyLong_SHIFT) { - __PYX_VERIFY_RETURN_INT(unsigned int, unsigned long, (((((((unsigned long)digits[2]) << PyLong_SHIFT) | (unsigned long)digits[1]) << PyLong_SHIFT) | (unsigned long)digits[0]))) - } else if (8 * sizeof(unsigned int) - 1 > 3 * PyLong_SHIFT) { - return (unsigned int) ((((((((unsigned int)digits[2]) << PyLong_SHIFT) | (unsigned int)digits[1]) << PyLong_SHIFT) | (unsigned int)digits[0]))); - } - } - break; - case -4: - if (8 * sizeof(unsigned int) - 1 > 3 * PyLong_SHIFT) { - if (8 * sizeof(unsigned long) > 4 * PyLong_SHIFT) { - __PYX_VERIFY_RETURN_INT(unsigned int, long, -(long) (((((((((unsigned long)digits[3]) << PyLong_SHIFT) | (unsigned long)digits[2]) << PyLong_SHIFT) | (unsigned long)digits[1]) << PyLong_SHIFT) | (unsigned long)digits[0]))) - } else if (8 * sizeof(unsigned int) - 1 > 4 * PyLong_SHIFT) { - return (unsigned int) (((unsigned int)-1)*(((((((((unsigned int)digits[3]) << PyLong_SHIFT) | (unsigned int)digits[2]) << PyLong_SHIFT) | (unsigned int)digits[1]) << PyLong_SHIFT) | (unsigned int)digits[0]))); - } - } - break; - case 4: - if (8 * sizeof(unsigned int) > 3 * PyLong_SHIFT) { - if (8 * sizeof(unsigned long) > 4 * PyLong_SHIFT) { - __PYX_VERIFY_RETURN_INT(unsigned int, unsigned long, (((((((((unsigned long)digits[3]) << PyLong_SHIFT) | (unsigned long)digits[2]) << PyLong_SHIFT) | (unsigned long)digits[1]) << PyLong_SHIFT) | (unsigned long)digits[0]))) - } else if (8 * sizeof(unsigned int) - 1 > 4 * PyLong_SHIFT) { - return (unsigned int) ((((((((((unsigned int)digits[3]) << PyLong_SHIFT) | (unsigned int)digits[2]) << PyLong_SHIFT) | (unsigned int)digits[1]) << PyLong_SHIFT) | (unsigned int)digits[0]))); - } - } - break; - } -#endif - if (sizeof(unsigned int) <= sizeof(long)) { - __PYX_VERIFY_RETURN_INT_EXC(unsigned int, long, PyLong_AsLong(x)) -#ifdef HAVE_LONG_LONG - } else if (sizeof(unsigned int) <= sizeof(PY_LONG_LONG)) { - __PYX_VERIFY_RETURN_INT_EXC(unsigned int, PY_LONG_LONG, PyLong_AsLongLong(x)) -#endif - } - } - { -#if CYTHON_COMPILING_IN_PYPY && !defined(_PyLong_AsByteArray) - PyErr_SetString(PyExc_RuntimeError, - "_PyLong_AsByteArray() not available in PyPy, cannot convert large numbers"); -#else - unsigned int val; - PyObject *v = __Pyx_PyNumber_IntOrLong(x); - #if PY_MAJOR_VERSION < 3 - if (likely(v) && !PyLong_Check(v)) { - PyObject *tmp = v; - v = PyNumber_Long(tmp); - Py_DECREF(tmp); - } - #endif - if (likely(v)) { - int one = 1; int is_little = (int)*(unsigned char *)&one; - unsigned char *bytes = (unsigned char *)&val; - int ret = _PyLong_AsByteArray((PyLongObject *)v, - bytes, sizeof(val), - is_little, !is_unsigned); - Py_DECREF(v); - if (likely(!ret)) - return val; - } -#endif - return (unsigned int) -1; - } - } else { - unsigned int val; - PyObject *tmp = __Pyx_PyNumber_IntOrLong(x); - if (!tmp) return (unsigned int) -1; - val = __Pyx_PyInt_As_unsigned_int(tmp); - Py_DECREF(tmp); - return val; - } -raise_overflow: - PyErr_SetString(PyExc_OverflowError, - "value too large to convert to unsigned int"); - return (unsigned int) -1; -raise_neg_overflow: - PyErr_SetString(PyExc_OverflowError, - "can't convert negative value to unsigned int"); - return (unsigned int) -1; -} - -/* CIntFromPy */ -static CYTHON_INLINE int __Pyx_PyInt_As_int(PyObject *x) { - const int neg_one = (int) ((int) 0 - (int) 1), const_zero = (int) 0; - const int is_unsigned = neg_one > const_zero; -#if PY_MAJOR_VERSION < 3 - if (likely(PyInt_Check(x))) { - if (sizeof(int) < sizeof(long)) { - __PYX_VERIFY_RETURN_INT(int, long, PyInt_AS_LONG(x)) - } else { - long val = PyInt_AS_LONG(x); - if (is_unsigned && unlikely(val < 0)) { - goto raise_neg_overflow; - } - return (int) val; - } - } else -#endif - if (likely(PyLong_Check(x))) { - if (is_unsigned) { -#if CYTHON_USE_PYLONG_INTERNALS - const digit* digits = ((PyLongObject*)x)->ob_digit; - switch (Py_SIZE(x)) { - case 0: return (int) 0; - case 1: __PYX_VERIFY_RETURN_INT(int, digit, digits[0]) - case 2: - if (8 * sizeof(int) > 1 * PyLong_SHIFT) { - if (8 * sizeof(unsigned long) > 2 * PyLong_SHIFT) { - __PYX_VERIFY_RETURN_INT(int, unsigned long, (((((unsigned long)digits[1]) << PyLong_SHIFT) | (unsigned long)digits[0]))) - } else if (8 * sizeof(int) >= 2 * PyLong_SHIFT) { - return (int) (((((int)digits[1]) << PyLong_SHIFT) | (int)digits[0])); - } - } - break; - case 3: - if (8 * sizeof(int) > 2 * PyLong_SHIFT) { - if (8 * sizeof(unsigned long) > 3 * PyLong_SHIFT) { - __PYX_VERIFY_RETURN_INT(int, unsigned long, (((((((unsigned long)digits[2]) << PyLong_SHIFT) | (unsigned long)digits[1]) << PyLong_SHIFT) | (unsigned long)digits[0]))) - } else if (8 * sizeof(int) >= 3 * PyLong_SHIFT) { - return (int) (((((((int)digits[2]) << PyLong_SHIFT) | (int)digits[1]) << PyLong_SHIFT) | (int)digits[0])); - } - } - break; - case 4: - if (8 * sizeof(int) > 3 * PyLong_SHIFT) { - if (8 * sizeof(unsigned long) > 4 * PyLong_SHIFT) { - __PYX_VERIFY_RETURN_INT(int, unsigned long, (((((((((unsigned long)digits[3]) << PyLong_SHIFT) | (unsigned long)digits[2]) << PyLong_SHIFT) | (unsigned long)digits[1]) << PyLong_SHIFT) | (unsigned long)digits[0]))) - } else if (8 * sizeof(int) >= 4 * PyLong_SHIFT) { - return (int) (((((((((int)digits[3]) << PyLong_SHIFT) | (int)digits[2]) << PyLong_SHIFT) | (int)digits[1]) << PyLong_SHIFT) | (int)digits[0])); - } - } - break; - } -#endif -#if CYTHON_COMPILING_IN_CPYTHON - if (unlikely(Py_SIZE(x) < 0)) { - goto raise_neg_overflow; - } -#else - { - int result = PyObject_RichCompareBool(x, Py_False, Py_LT); - if (unlikely(result < 0)) - return (int) -1; - if (unlikely(result == 1)) - goto raise_neg_overflow; - } -#endif - if (sizeof(int) <= sizeof(unsigned long)) { - __PYX_VERIFY_RETURN_INT_EXC(int, unsigned long, PyLong_AsUnsignedLong(x)) -#ifdef HAVE_LONG_LONG - } else if (sizeof(int) <= sizeof(unsigned PY_LONG_LONG)) { - __PYX_VERIFY_RETURN_INT_EXC(int, unsigned PY_LONG_LONG, PyLong_AsUnsignedLongLong(x)) -#endif - } - } else { -#if CYTHON_USE_PYLONG_INTERNALS - const digit* digits = ((PyLongObject*)x)->ob_digit; - switch (Py_SIZE(x)) { - case 0: return (int) 0; - case -1: __PYX_VERIFY_RETURN_INT(int, sdigit, (sdigit) (-(sdigit)digits[0])) - case 1: __PYX_VERIFY_RETURN_INT(int, digit, +digits[0]) - case -2: - if (8 * sizeof(int) - 1 > 1 * PyLong_SHIFT) { - if (8 * sizeof(unsigned long) > 2 * PyLong_SHIFT) { - __PYX_VERIFY_RETURN_INT(int, long, -(long) (((((unsigned long)digits[1]) << PyLong_SHIFT) | (unsigned long)digits[0]))) - } else if (8 * sizeof(int) - 1 > 2 * PyLong_SHIFT) { - return (int) (((int)-1)*(((((int)digits[1]) << PyLong_SHIFT) | (int)digits[0]))); - } - } - break; - case 2: - if (8 * sizeof(int) > 1 * PyLong_SHIFT) { - if (8 * sizeof(unsigned long) > 2 * PyLong_SHIFT) { - __PYX_VERIFY_RETURN_INT(int, unsigned long, (((((unsigned long)digits[1]) << PyLong_SHIFT) | (unsigned long)digits[0]))) - } else if (8 * sizeof(int) - 1 > 2 * PyLong_SHIFT) { - return (int) ((((((int)digits[1]) << PyLong_SHIFT) | (int)digits[0]))); - } - } - break; - case -3: - if (8 * sizeof(int) - 1 > 2 * PyLong_SHIFT) { - if (8 * sizeof(unsigned long) > 3 * PyLong_SHIFT) { - __PYX_VERIFY_RETURN_INT(int, long, -(long) (((((((unsigned long)digits[2]) << PyLong_SHIFT) | (unsigned long)digits[1]) << PyLong_SHIFT) | (unsigned long)digits[0]))) - } else if (8 * sizeof(int) - 1 > 3 * PyLong_SHIFT) { - return (int) (((int)-1)*(((((((int)digits[2]) << PyLong_SHIFT) | (int)digits[1]) << PyLong_SHIFT) | (int)digits[0]))); - } - } - break; - case 3: - if (8 * sizeof(int) > 2 * PyLong_SHIFT) { - if (8 * sizeof(unsigned long) > 3 * PyLong_SHIFT) { - __PYX_VERIFY_RETURN_INT(int, unsigned long, (((((((unsigned long)digits[2]) << PyLong_SHIFT) | (unsigned long)digits[1]) << PyLong_SHIFT) | (unsigned long)digits[0]))) - } else if (8 * sizeof(int) - 1 > 3 * PyLong_SHIFT) { - return (int) ((((((((int)digits[2]) << PyLong_SHIFT) | (int)digits[1]) << PyLong_SHIFT) | (int)digits[0]))); - } - } - break; - case -4: - if (8 * sizeof(int) - 1 > 3 * PyLong_SHIFT) { - if (8 * sizeof(unsigned long) > 4 * PyLong_SHIFT) { - __PYX_VERIFY_RETURN_INT(int, long, -(long) (((((((((unsigned long)digits[3]) << PyLong_SHIFT) | (unsigned long)digits[2]) << PyLong_SHIFT) | (unsigned long)digits[1]) << PyLong_SHIFT) | (unsigned long)digits[0]))) - } else if (8 * sizeof(int) - 1 > 4 * PyLong_SHIFT) { - return (int) (((int)-1)*(((((((((int)digits[3]) << PyLong_SHIFT) | (int)digits[2]) << PyLong_SHIFT) | (int)digits[1]) << PyLong_SHIFT) | (int)digits[0]))); - } - } - break; - case 4: - if (8 * sizeof(int) > 3 * PyLong_SHIFT) { - if (8 * sizeof(unsigned long) > 4 * PyLong_SHIFT) { - __PYX_VERIFY_RETURN_INT(int, unsigned long, (((((((((unsigned long)digits[3]) << PyLong_SHIFT) | (unsigned long)digits[2]) << PyLong_SHIFT) | (unsigned long)digits[1]) << PyLong_SHIFT) | (unsigned long)digits[0]))) - } else if (8 * sizeof(int) - 1 > 4 * PyLong_SHIFT) { - return (int) ((((((((((int)digits[3]) << PyLong_SHIFT) | (int)digits[2]) << PyLong_SHIFT) | (int)digits[1]) << PyLong_SHIFT) | (int)digits[0]))); - } - } - break; - } -#endif - if (sizeof(int) <= sizeof(long)) { - __PYX_VERIFY_RETURN_INT_EXC(int, long, PyLong_AsLong(x)) -#ifdef HAVE_LONG_LONG - } else if (sizeof(int) <= sizeof(PY_LONG_LONG)) { - __PYX_VERIFY_RETURN_INT_EXC(int, PY_LONG_LONG, PyLong_AsLongLong(x)) -#endif - } - } - { -#if CYTHON_COMPILING_IN_PYPY && !defined(_PyLong_AsByteArray) - PyErr_SetString(PyExc_RuntimeError, - "_PyLong_AsByteArray() not available in PyPy, cannot convert large numbers"); -#else - int val; - PyObject *v = __Pyx_PyNumber_IntOrLong(x); - #if PY_MAJOR_VERSION < 3 - if (likely(v) && !PyLong_Check(v)) { - PyObject *tmp = v; - v = PyNumber_Long(tmp); - Py_DECREF(tmp); - } - #endif - if (likely(v)) { - int one = 1; int is_little = (int)*(unsigned char *)&one; - unsigned char *bytes = (unsigned char *)&val; - int ret = _PyLong_AsByteArray((PyLongObject *)v, - bytes, sizeof(val), - is_little, !is_unsigned); - Py_DECREF(v); - if (likely(!ret)) - return val; - } -#endif - return (int) -1; - } - } else { - int val; - PyObject *tmp = __Pyx_PyNumber_IntOrLong(x); - if (!tmp) return (int) -1; - val = __Pyx_PyInt_As_int(tmp); - Py_DECREF(tmp); - return val; - } -raise_overflow: - PyErr_SetString(PyExc_OverflowError, - "value too large to convert to int"); - return (int) -1; -raise_neg_overflow: - PyErr_SetString(PyExc_OverflowError, - "can't convert negative value to int"); - return (int) -1; -} - -/* CIntFromPy */ -static CYTHON_INLINE long __Pyx_PyInt_As_long(PyObject *x) { - const long neg_one = (long) ((long) 0 - (long) 1), const_zero = (long) 0; - const int is_unsigned = neg_one > const_zero; -#if PY_MAJOR_VERSION < 3 - if (likely(PyInt_Check(x))) { - if (sizeof(long) < sizeof(long)) { - __PYX_VERIFY_RETURN_INT(long, long, PyInt_AS_LONG(x)) - } else { - long val = PyInt_AS_LONG(x); - if (is_unsigned && unlikely(val < 0)) { - goto raise_neg_overflow; - } - return (long) val; - } - } else -#endif - if (likely(PyLong_Check(x))) { - if (is_unsigned) { -#if CYTHON_USE_PYLONG_INTERNALS - const digit* digits = ((PyLongObject*)x)->ob_digit; - switch (Py_SIZE(x)) { - case 0: return (long) 0; - case 1: __PYX_VERIFY_RETURN_INT(long, digit, digits[0]) - case 2: - if (8 * sizeof(long) > 1 * PyLong_SHIFT) { - if (8 * sizeof(unsigned long) > 2 * PyLong_SHIFT) { - __PYX_VERIFY_RETURN_INT(long, unsigned long, (((((unsigned long)digits[1]) << PyLong_SHIFT) | (unsigned long)digits[0]))) - } else if (8 * sizeof(long) >= 2 * PyLong_SHIFT) { - return (long) (((((long)digits[1]) << PyLong_SHIFT) | (long)digits[0])); - } - } - break; - case 3: - if (8 * sizeof(long) > 2 * PyLong_SHIFT) { - if (8 * sizeof(unsigned long) > 3 * PyLong_SHIFT) { - __PYX_VERIFY_RETURN_INT(long, unsigned long, (((((((unsigned long)digits[2]) << PyLong_SHIFT) | (unsigned long)digits[1]) << PyLong_SHIFT) | (unsigned long)digits[0]))) - } else if (8 * sizeof(long) >= 3 * PyLong_SHIFT) { - return (long) (((((((long)digits[2]) << PyLong_SHIFT) | (long)digits[1]) << PyLong_SHIFT) | (long)digits[0])); - } - } - break; - case 4: - if (8 * sizeof(long) > 3 * PyLong_SHIFT) { - if (8 * sizeof(unsigned long) > 4 * PyLong_SHIFT) { - __PYX_VERIFY_RETURN_INT(long, unsigned long, (((((((((unsigned long)digits[3]) << PyLong_SHIFT) | (unsigned long)digits[2]) << PyLong_SHIFT) | (unsigned long)digits[1]) << PyLong_SHIFT) | (unsigned long)digits[0]))) - } else if (8 * sizeof(long) >= 4 * PyLong_SHIFT) { - return (long) (((((((((long)digits[3]) << PyLong_SHIFT) | (long)digits[2]) << PyLong_SHIFT) | (long)digits[1]) << PyLong_SHIFT) | (long)digits[0])); - } - } - break; - } -#endif -#if CYTHON_COMPILING_IN_CPYTHON - if (unlikely(Py_SIZE(x) < 0)) { - goto raise_neg_overflow; - } -#else - { - int result = PyObject_RichCompareBool(x, Py_False, Py_LT); - if (unlikely(result < 0)) - return (long) -1; - if (unlikely(result == 1)) - goto raise_neg_overflow; - } -#endif - if (sizeof(long) <= sizeof(unsigned long)) { - __PYX_VERIFY_RETURN_INT_EXC(long, unsigned long, PyLong_AsUnsignedLong(x)) -#ifdef HAVE_LONG_LONG - } else if (sizeof(long) <= sizeof(unsigned PY_LONG_LONG)) { - __PYX_VERIFY_RETURN_INT_EXC(long, unsigned PY_LONG_LONG, PyLong_AsUnsignedLongLong(x)) -#endif - } - } else { -#if CYTHON_USE_PYLONG_INTERNALS - const digit* digits = ((PyLongObject*)x)->ob_digit; - switch (Py_SIZE(x)) { - case 0: return (long) 0; - case -1: __PYX_VERIFY_RETURN_INT(long, sdigit, (sdigit) (-(sdigit)digits[0])) - case 1: __PYX_VERIFY_RETURN_INT(long, digit, +digits[0]) - case -2: - if (8 * sizeof(long) - 1 > 1 * PyLong_SHIFT) { - if (8 * sizeof(unsigned long) > 2 * PyLong_SHIFT) { - __PYX_VERIFY_RETURN_INT(long, long, -(long) (((((unsigned long)digits[1]) << PyLong_SHIFT) | (unsigned long)digits[0]))) - } else if (8 * sizeof(long) - 1 > 2 * PyLong_SHIFT) { - return (long) (((long)-1)*(((((long)digits[1]) << PyLong_SHIFT) | (long)digits[0]))); - } - } - break; - case 2: - if (8 * sizeof(long) > 1 * PyLong_SHIFT) { - if (8 * sizeof(unsigned long) > 2 * PyLong_SHIFT) { - __PYX_VERIFY_RETURN_INT(long, unsigned long, (((((unsigned long)digits[1]) << PyLong_SHIFT) | (unsigned long)digits[0]))) - } else if (8 * sizeof(long) - 1 > 2 * PyLong_SHIFT) { - return (long) ((((((long)digits[1]) << PyLong_SHIFT) | (long)digits[0]))); - } - } - break; - case -3: - if (8 * sizeof(long) - 1 > 2 * PyLong_SHIFT) { - if (8 * sizeof(unsigned long) > 3 * PyLong_SHIFT) { - __PYX_VERIFY_RETURN_INT(long, long, -(long) (((((((unsigned long)digits[2]) << PyLong_SHIFT) | (unsigned long)digits[1]) << PyLong_SHIFT) | (unsigned long)digits[0]))) - } else if (8 * sizeof(long) - 1 > 3 * PyLong_SHIFT) { - return (long) (((long)-1)*(((((((long)digits[2]) << PyLong_SHIFT) | (long)digits[1]) << PyLong_SHIFT) | (long)digits[0]))); - } - } - break; - case 3: - if (8 * sizeof(long) > 2 * PyLong_SHIFT) { - if (8 * sizeof(unsigned long) > 3 * PyLong_SHIFT) { - __PYX_VERIFY_RETURN_INT(long, unsigned long, (((((((unsigned long)digits[2]) << PyLong_SHIFT) | (unsigned long)digits[1]) << PyLong_SHIFT) | (unsigned long)digits[0]))) - } else if (8 * sizeof(long) - 1 > 3 * PyLong_SHIFT) { - return (long) ((((((((long)digits[2]) << PyLong_SHIFT) | (long)digits[1]) << PyLong_SHIFT) | (long)digits[0]))); - } - } - break; - case -4: - if (8 * sizeof(long) - 1 > 3 * PyLong_SHIFT) { - if (8 * sizeof(unsigned long) > 4 * PyLong_SHIFT) { - __PYX_VERIFY_RETURN_INT(long, long, -(long) (((((((((unsigned long)digits[3]) << PyLong_SHIFT) | (unsigned long)digits[2]) << PyLong_SHIFT) | (unsigned long)digits[1]) << PyLong_SHIFT) | (unsigned long)digits[0]))) - } else if (8 * sizeof(long) - 1 > 4 * PyLong_SHIFT) { - return (long) (((long)-1)*(((((((((long)digits[3]) << PyLong_SHIFT) | (long)digits[2]) << PyLong_SHIFT) | (long)digits[1]) << PyLong_SHIFT) | (long)digits[0]))); - } - } - break; - case 4: - if (8 * sizeof(long) > 3 * PyLong_SHIFT) { - if (8 * sizeof(unsigned long) > 4 * PyLong_SHIFT) { - __PYX_VERIFY_RETURN_INT(long, unsigned long, (((((((((unsigned long)digits[3]) << PyLong_SHIFT) | (unsigned long)digits[2]) << PyLong_SHIFT) | (unsigned long)digits[1]) << PyLong_SHIFT) | (unsigned long)digits[0]))) - } else if (8 * sizeof(long) - 1 > 4 * PyLong_SHIFT) { - return (long) ((((((((((long)digits[3]) << PyLong_SHIFT) | (long)digits[2]) << PyLong_SHIFT) | (long)digits[1]) << PyLong_SHIFT) | (long)digits[0]))); - } - } - break; - } -#endif - if (sizeof(long) <= sizeof(long)) { - __PYX_VERIFY_RETURN_INT_EXC(long, long, PyLong_AsLong(x)) -#ifdef HAVE_LONG_LONG - } else if (sizeof(long) <= sizeof(PY_LONG_LONG)) { - __PYX_VERIFY_RETURN_INT_EXC(long, PY_LONG_LONG, PyLong_AsLongLong(x)) -#endif - } - } - { -#if CYTHON_COMPILING_IN_PYPY && !defined(_PyLong_AsByteArray) - PyErr_SetString(PyExc_RuntimeError, - "_PyLong_AsByteArray() not available in PyPy, cannot convert large numbers"); -#else - long val; - PyObject *v = __Pyx_PyNumber_IntOrLong(x); - #if PY_MAJOR_VERSION < 3 - if (likely(v) && !PyLong_Check(v)) { - PyObject *tmp = v; - v = PyNumber_Long(tmp); - Py_DECREF(tmp); - } - #endif - if (likely(v)) { - int one = 1; int is_little = (int)*(unsigned char *)&one; - unsigned char *bytes = (unsigned char *)&val; - int ret = _PyLong_AsByteArray((PyLongObject *)v, - bytes, sizeof(val), - is_little, !is_unsigned); - Py_DECREF(v); - if (likely(!ret)) - return val; - } -#endif - return (long) -1; - } - } else { - long val; - PyObject *tmp = __Pyx_PyNumber_IntOrLong(x); - if (!tmp) return (long) -1; - val = __Pyx_PyInt_As_long(tmp); - Py_DECREF(tmp); - return val; - } -raise_overflow: - PyErr_SetString(PyExc_OverflowError, - "value too large to convert to long"); - return (long) -1; -raise_neg_overflow: - PyErr_SetString(PyExc_OverflowError, - "can't convert negative value to long"); - return (long) -1; -} - -/* FastTypeChecks */ -#if CYTHON_COMPILING_IN_CPYTHON -static int __Pyx_InBases(PyTypeObject *a, PyTypeObject *b) { - while (a) { - a = a->tp_base; - if (a == b) - return 1; - } - return b == &PyBaseObject_Type; -} -static CYTHON_INLINE int __Pyx_IsSubtype(PyTypeObject *a, PyTypeObject *b) { - PyObject *mro; - if (a == b) return 1; - mro = a->tp_mro; - if (likely(mro)) { - Py_ssize_t i, n; - n = PyTuple_GET_SIZE(mro); - for (i = 0; i < n; i++) { - if (PyTuple_GET_ITEM(mro, i) == (PyObject *)b) - return 1; - } - return 0; - } - return __Pyx_InBases(a, b); -} -#if PY_MAJOR_VERSION == 2 -static int __Pyx_inner_PyErr_GivenExceptionMatches2(PyObject *err, PyObject* exc_type1, PyObject* exc_type2) { - PyObject *exception, *value, *tb; - int res; - __Pyx_PyThreadState_declare - __Pyx_PyThreadState_assign - __Pyx_ErrFetch(&exception, &value, &tb); - res = exc_type1 ? PyObject_IsSubclass(err, exc_type1) : 0; - if (unlikely(res == -1)) { - PyErr_WriteUnraisable(err); - res = 0; - } - if (!res) { - res = PyObject_IsSubclass(err, exc_type2); - if (unlikely(res == -1)) { - PyErr_WriteUnraisable(err); - res = 0; - } - } - __Pyx_ErrRestore(exception, value, tb); - return res; -} -#else -static CYTHON_INLINE int __Pyx_inner_PyErr_GivenExceptionMatches2(PyObject *err, PyObject* exc_type1, PyObject *exc_type2) { - int res = exc_type1 ? __Pyx_IsSubtype((PyTypeObject*)err, (PyTypeObject*)exc_type1) : 0; - if (!res) { - res = __Pyx_IsSubtype((PyTypeObject*)err, (PyTypeObject*)exc_type2); - } - return res; -} -#endif -static int __Pyx_PyErr_GivenExceptionMatchesTuple(PyObject *exc_type, PyObject *tuple) { - Py_ssize_t i, n; - assert(PyExceptionClass_Check(exc_type)); - n = PyTuple_GET_SIZE(tuple); -#if PY_MAJOR_VERSION >= 3 - for (i=0; ip) { - #if PY_MAJOR_VERSION < 3 - if (t->is_unicode) { - *t->p = PyUnicode_DecodeUTF8(t->s, t->n - 1, NULL); - } else if (t->intern) { - *t->p = PyString_InternFromString(t->s); - } else { - *t->p = PyString_FromStringAndSize(t->s, t->n - 1); - } - #else - if (t->is_unicode | t->is_str) { - if (t->intern) { - *t->p = PyUnicode_InternFromString(t->s); - } else if (t->encoding) { - *t->p = PyUnicode_Decode(t->s, t->n - 1, t->encoding, NULL); - } else { - *t->p = PyUnicode_FromStringAndSize(t->s, t->n - 1); - } - } else { - *t->p = PyBytes_FromStringAndSize(t->s, t->n - 1); - } - #endif - if (!*t->p) - return -1; - if (PyObject_Hash(*t->p) == -1) - return -1; - ++t; - } - return 0; -} - -static CYTHON_INLINE PyObject* __Pyx_PyUnicode_FromString(const char* c_str) { - return __Pyx_PyUnicode_FromStringAndSize(c_str, (Py_ssize_t)strlen(c_str)); -} -static CYTHON_INLINE const char* __Pyx_PyObject_AsString(PyObject* o) { - Py_ssize_t ignore; - return __Pyx_PyObject_AsStringAndSize(o, &ignore); -} -#if __PYX_DEFAULT_STRING_ENCODING_IS_ASCII || __PYX_DEFAULT_STRING_ENCODING_IS_DEFAULT -#if !CYTHON_PEP393_ENABLED -static const char* __Pyx_PyUnicode_AsStringAndSize(PyObject* o, Py_ssize_t *length) { - char* defenc_c; - PyObject* defenc = _PyUnicode_AsDefaultEncodedString(o, NULL); - if (!defenc) return NULL; - defenc_c = PyBytes_AS_STRING(defenc); -#if __PYX_DEFAULT_STRING_ENCODING_IS_ASCII - { - char* end = defenc_c + PyBytes_GET_SIZE(defenc); - char* c; - for (c = defenc_c; c < end; c++) { - if ((unsigned char) (*c) >= 128) { - PyUnicode_AsASCIIString(o); - return NULL; - } - } - } -#endif - *length = PyBytes_GET_SIZE(defenc); - return defenc_c; -} -#else -static CYTHON_INLINE const char* __Pyx_PyUnicode_AsStringAndSize(PyObject* o, Py_ssize_t *length) { - if (unlikely(__Pyx_PyUnicode_READY(o) == -1)) return NULL; -#if __PYX_DEFAULT_STRING_ENCODING_IS_ASCII - if (likely(PyUnicode_IS_ASCII(o))) { - *length = PyUnicode_GET_LENGTH(o); - return PyUnicode_AsUTF8(o); - } else { - PyUnicode_AsASCIIString(o); - return NULL; - } -#else - return PyUnicode_AsUTF8AndSize(o, length); -#endif -} -#endif -#endif -static CYTHON_INLINE const char* __Pyx_PyObject_AsStringAndSize(PyObject* o, Py_ssize_t *length) { -#if __PYX_DEFAULT_STRING_ENCODING_IS_ASCII || __PYX_DEFAULT_STRING_ENCODING_IS_DEFAULT - if ( -#if PY_MAJOR_VERSION < 3 && __PYX_DEFAULT_STRING_ENCODING_IS_ASCII - __Pyx_sys_getdefaultencoding_not_ascii && -#endif - PyUnicode_Check(o)) { - return __Pyx_PyUnicode_AsStringAndSize(o, length); - } else -#endif -#if (!CYTHON_COMPILING_IN_PYPY) || (defined(PyByteArray_AS_STRING) && defined(PyByteArray_GET_SIZE)) - if (PyByteArray_Check(o)) { - *length = PyByteArray_GET_SIZE(o); - return PyByteArray_AS_STRING(o); - } else -#endif - { - char* result; - int r = PyBytes_AsStringAndSize(o, &result, length); - if (unlikely(r < 0)) { - return NULL; - } else { - return result; - } - } -} -static CYTHON_INLINE int __Pyx_PyObject_IsTrue(PyObject* x) { - int is_true = x == Py_True; - if (is_true | (x == Py_False) | (x == Py_None)) return is_true; - else return PyObject_IsTrue(x); -} -static CYTHON_INLINE int __Pyx_PyObject_IsTrueAndDecref(PyObject* x) { - int retval; - if (unlikely(!x)) return -1; - retval = __Pyx_PyObject_IsTrue(x); - Py_DECREF(x); - return retval; -} -static PyObject* __Pyx_PyNumber_IntOrLongWrongResultType(PyObject* result, const char* type_name) { -#if PY_MAJOR_VERSION >= 3 - if (PyLong_Check(result)) { - if (PyErr_WarnFormat(PyExc_DeprecationWarning, 1, - "__int__ returned non-int (type %.200s). " - "The ability to return an instance of a strict subclass of int " - "is deprecated, and may be removed in a future version of Python.", - Py_TYPE(result)->tp_name)) { - Py_DECREF(result); - return NULL; - } - return result; - } -#endif - PyErr_Format(PyExc_TypeError, - "__%.4s__ returned non-%.4s (type %.200s)", - type_name, type_name, Py_TYPE(result)->tp_name); - Py_DECREF(result); - return NULL; -} -static CYTHON_INLINE PyObject* __Pyx_PyNumber_IntOrLong(PyObject* x) { -#if CYTHON_USE_TYPE_SLOTS - PyNumberMethods *m; -#endif - const char *name = NULL; - PyObject *res = NULL; -#if PY_MAJOR_VERSION < 3 - if (likely(PyInt_Check(x) || PyLong_Check(x))) -#else - if (likely(PyLong_Check(x))) -#endif - return __Pyx_NewRef(x); -#if CYTHON_USE_TYPE_SLOTS - m = Py_TYPE(x)->tp_as_number; - #if PY_MAJOR_VERSION < 3 - if (m && m->nb_int) { - name = "int"; - res = m->nb_int(x); - } - else if (m && m->nb_long) { - name = "long"; - res = m->nb_long(x); - } - #else - if (likely(m && m->nb_int)) { - name = "int"; - res = m->nb_int(x); - } - #endif -#else - if (!PyBytes_CheckExact(x) && !PyUnicode_CheckExact(x)) { - res = PyNumber_Int(x); - } -#endif - if (likely(res)) { -#if PY_MAJOR_VERSION < 3 - if (unlikely(!PyInt_Check(res) && !PyLong_Check(res))) { -#else - if (unlikely(!PyLong_CheckExact(res))) { -#endif - return __Pyx_PyNumber_IntOrLongWrongResultType(res, name); - } - } - else if (!PyErr_Occurred()) { - PyErr_SetString(PyExc_TypeError, - "an integer is required"); - } - return res; -} -static CYTHON_INLINE Py_ssize_t __Pyx_PyIndex_AsSsize_t(PyObject* b) { - Py_ssize_t ival; - PyObject *x; -#if PY_MAJOR_VERSION < 3 - if (likely(PyInt_CheckExact(b))) { - if (sizeof(Py_ssize_t) >= sizeof(long)) - return PyInt_AS_LONG(b); - else - return PyInt_AsSsize_t(b); - } -#endif - if (likely(PyLong_CheckExact(b))) { - #if CYTHON_USE_PYLONG_INTERNALS - const digit* digits = ((PyLongObject*)b)->ob_digit; - const Py_ssize_t size = Py_SIZE(b); - if (likely(__Pyx_sst_abs(size) <= 1)) { - ival = likely(size) ? digits[0] : 0; - if (size == -1) ival = -ival; - return ival; - } else { - switch (size) { - case 2: - if (8 * sizeof(Py_ssize_t) > 2 * PyLong_SHIFT) { - return (Py_ssize_t) (((((size_t)digits[1]) << PyLong_SHIFT) | (size_t)digits[0])); - } - break; - case -2: - if (8 * sizeof(Py_ssize_t) > 2 * PyLong_SHIFT) { - return -(Py_ssize_t) (((((size_t)digits[1]) << PyLong_SHIFT) | (size_t)digits[0])); - } - break; - case 3: - if (8 * sizeof(Py_ssize_t) > 3 * PyLong_SHIFT) { - return (Py_ssize_t) (((((((size_t)digits[2]) << PyLong_SHIFT) | (size_t)digits[1]) << PyLong_SHIFT) | (size_t)digits[0])); - } - break; - case -3: - if (8 * sizeof(Py_ssize_t) > 3 * PyLong_SHIFT) { - return -(Py_ssize_t) (((((((size_t)digits[2]) << PyLong_SHIFT) | (size_t)digits[1]) << PyLong_SHIFT) | (size_t)digits[0])); - } - break; - case 4: - if (8 * sizeof(Py_ssize_t) > 4 * PyLong_SHIFT) { - return (Py_ssize_t) (((((((((size_t)digits[3]) << PyLong_SHIFT) | (size_t)digits[2]) << PyLong_SHIFT) | (size_t)digits[1]) << PyLong_SHIFT) | (size_t)digits[0])); - } - break; - case -4: - if (8 * sizeof(Py_ssize_t) > 4 * PyLong_SHIFT) { - return -(Py_ssize_t) (((((((((size_t)digits[3]) << PyLong_SHIFT) | (size_t)digits[2]) << PyLong_SHIFT) | (size_t)digits[1]) << PyLong_SHIFT) | (size_t)digits[0])); - } - break; - } - } - #endif - return PyLong_AsSsize_t(b); - } - x = PyNumber_Index(b); - if (!x) return -1; - ival = PyInt_AsSsize_t(x); - Py_DECREF(x); - return ival; -} -static CYTHON_INLINE PyObject * __Pyx_PyBool_FromLong(long b) { - return b ? __Pyx_NewRef(Py_True) : __Pyx_NewRef(Py_False); -} -static CYTHON_INLINE PyObject * __Pyx_PyInt_FromSize_t(size_t ival) { - return PyInt_FromSize_t(ival); -} - - -#endif /* Py_PYTHON_H */ diff --git a/python/pmercury/cython-bak/tls_server.pyx b/python/pmercury/cython-bak/tls_server.pyx deleted file mode 100644 index 2d1492a1..00000000 --- a/python/pmercury/cython-bak/tls_server.pyx +++ /dev/null @@ -1,120 +0,0 @@ -#cython: language_level=3, wraparound=False, cdivision=True, infer_types=True, initializedcheck=False, c_string_type=bytes, embedsignature=False - -""" - Copyright (c) 2019 Cisco Systems, Inc. All rights reserved. - License at https://github.com/cisco/mercury/blob/master/LICENSE -""" - -import os -import sys - -sys.path.append(os.path.dirname(os.path.abspath(__file__))) -sys.path.append(os.path.dirname(os.path.abspath(__file__))+'/../') -from pmercury.utils.tls_utils import * -from pmercury.utils.tls_constants import * -from pmercury.protocols.protocol import Protocol - -from cython.operator cimport dereference as deref -from libc.stdint cimport uint8_t, uint16_t, uint32_t, uint64_t - -IF UNAME_SYSNAME == "Windows": - cdef extern from "winsock2.h": - uint16_t htons(uint16_t hostshort) -ELSE: - cdef extern from "arpa/inet.h": - uint16_t htons(uint16_t hostshort) - - -MAX_CACHED_RESULTS = 2**24 - - -class TLS_Server(Protocol): - - def __init__(self, fp_database=None, config=None): - # populate fingerprint databases - self.fp_db = {} - - - @staticmethod - def proto_identify(data, offset, data_len): - if data_len-offset < 16: - return False - if (data[offset] == 22 and - data[offset+1] == 3 and - data[offset+2] <= 3 and - data[offset+5] == 2 and - data[offset+9] == 3 and - data[offset+10] <= 3): - return True - return False - - - @staticmethod - def fingerprint(bytes data, unsigned int offset, unsigned int data_len): - cdef unsigned char *buf = data - offset += 5 - - # get record length - cdef int record_length = int(data[offset+1:offset+4].hex(),16) - - # extract handshake version - cdef str fp_ = f'({buf[offset+4]:02x}{buf[offset+5]:02x})' - - # skip header/server_random - offset += 38 - record_length -= 34 - - # parse/skip session_id - cdef unsigned int session_id_length = buf[offset] - offset += 1 + session_id_length - record_length -= 1 + session_id_length - if offset >= data_len: - return None, None - - # parse selected_cipher_suite - fp_ += f'({buf[offset]:02x}{buf[offset+1]:02x})' - offset += 2 - if offset >= data_len: - return fp_+'()', None - - # parse/skip compression method - cdef unsigned int compression_method = buf[offset] - offset += 1 - record_length -= 3 - if offset >= data_len or record_length < 2: - return fp_+'()', None - - # parse/skip extensions length - cdef unsigned int ext_total_len = htons(deref((buf+offset))) - offset += 2 - if offset >= data_len: - return fp_+'()', None - - # parse/extract/skip extension type/length/values - cdef str tmp_fp_ext - cdef unsigned int ext_len - fp_ += '(' - while ext_total_len > 0: - if offset >= data_len: - return fp_+')', None - - tmp_fp_ext, offset, ext_len = parse_extension(data, offset) - fp_ += '(%s)' % tmp_fp_ext - - ext_total_len -= 4 + ext_len - fp_ += ')' - - return fp_, None - - - def get_human_readable(self, fp_str_): - lit_fp = eval_fp_str(fp_str_) - - fp_h = {} - fp_h['version'] = get_version_from_str(lit_fp[0]) - fp_h['selected_cipher_suite'] = get_cs_from_str(lit_fp[1]) - fp_h['extensions'] = [] - if len(lit_fp) > 2: - fp_h['extensions'] = get_ext_from_str(lit_fp[2], mode='server') - - return fp_h diff --git a/python/pmercury/cython-bak/tls_utils.c b/python/pmercury/cython-bak/tls_utils.c deleted file mode 100644 index c10d7319..00000000 --- a/python/pmercury/cython-bak/tls_utils.c +++ /dev/null @@ -1,14686 +0,0 @@ -/* Generated by Cython 0.29.14 */ - -#define PY_SSIZE_T_CLEAN -#include "Python.h" -#ifndef Py_PYTHON_H - #error Python headers needed to compile C extensions, please install development version of Python. -#elif PY_VERSION_HEX < 0x02060000 || (0x03000000 <= PY_VERSION_HEX && PY_VERSION_HEX < 0x03030000) - #error Cython requires Python 2.6+ or Python 3.3+. -#else -#define CYTHON_ABI "0_29_14" -#define CYTHON_HEX_VERSION 0x001D0EF0 -#define CYTHON_FUTURE_DIVISION 1 -#include -#ifndef offsetof - #define offsetof(type, member) ( (size_t) & ((type*)0) -> member ) -#endif -#if !defined(WIN32) && !defined(MS_WINDOWS) - #ifndef __stdcall - #define __stdcall - #endif - #ifndef __cdecl - #define __cdecl - #endif - #ifndef __fastcall - #define __fastcall - #endif -#endif -#ifndef DL_IMPORT - #define DL_IMPORT(t) t -#endif -#ifndef DL_EXPORT - #define DL_EXPORT(t) t -#endif -#define __PYX_COMMA , -#ifndef HAVE_LONG_LONG - #if PY_VERSION_HEX >= 0x02070000 - #define HAVE_LONG_LONG - #endif -#endif -#ifndef PY_LONG_LONG - #define PY_LONG_LONG LONG_LONG -#endif -#ifndef Py_HUGE_VAL - #define Py_HUGE_VAL HUGE_VAL -#endif -#ifdef PYPY_VERSION - #define CYTHON_COMPILING_IN_PYPY 1 - #define CYTHON_COMPILING_IN_PYSTON 0 - #define CYTHON_COMPILING_IN_CPYTHON 0 - #undef CYTHON_USE_TYPE_SLOTS - #define CYTHON_USE_TYPE_SLOTS 0 - #undef CYTHON_USE_PYTYPE_LOOKUP - #define CYTHON_USE_PYTYPE_LOOKUP 0 - #if PY_VERSION_HEX < 0x03050000 - #undef CYTHON_USE_ASYNC_SLOTS - #define CYTHON_USE_ASYNC_SLOTS 0 - #elif !defined(CYTHON_USE_ASYNC_SLOTS) - #define CYTHON_USE_ASYNC_SLOTS 1 - #endif - #undef CYTHON_USE_PYLIST_INTERNALS - #define CYTHON_USE_PYLIST_INTERNALS 0 - #undef CYTHON_USE_UNICODE_INTERNALS - #define CYTHON_USE_UNICODE_INTERNALS 0 - #undef CYTHON_USE_UNICODE_WRITER - #define CYTHON_USE_UNICODE_WRITER 0 - #undef CYTHON_USE_PYLONG_INTERNALS - #define CYTHON_USE_PYLONG_INTERNALS 0 - #undef CYTHON_AVOID_BORROWED_REFS - #define CYTHON_AVOID_BORROWED_REFS 1 - #undef CYTHON_ASSUME_SAFE_MACROS - #define CYTHON_ASSUME_SAFE_MACROS 0 - #undef CYTHON_UNPACK_METHODS - #define CYTHON_UNPACK_METHODS 0 - #undef CYTHON_FAST_THREAD_STATE - #define CYTHON_FAST_THREAD_STATE 0 - #undef CYTHON_FAST_PYCALL - #define CYTHON_FAST_PYCALL 0 - #undef CYTHON_PEP489_MULTI_PHASE_INIT - #define CYTHON_PEP489_MULTI_PHASE_INIT 0 - #undef CYTHON_USE_TP_FINALIZE - #define CYTHON_USE_TP_FINALIZE 0 - #undef CYTHON_USE_DICT_VERSIONS - #define CYTHON_USE_DICT_VERSIONS 0 - #undef CYTHON_USE_EXC_INFO_STACK - #define CYTHON_USE_EXC_INFO_STACK 0 -#elif defined(PYSTON_VERSION) - #define CYTHON_COMPILING_IN_PYPY 0 - #define CYTHON_COMPILING_IN_PYSTON 1 - #define CYTHON_COMPILING_IN_CPYTHON 0 - #ifndef CYTHON_USE_TYPE_SLOTS - #define CYTHON_USE_TYPE_SLOTS 1 - #endif - #undef CYTHON_USE_PYTYPE_LOOKUP - #define CYTHON_USE_PYTYPE_LOOKUP 0 - #undef CYTHON_USE_ASYNC_SLOTS - #define CYTHON_USE_ASYNC_SLOTS 0 - #undef CYTHON_USE_PYLIST_INTERNALS - #define CYTHON_USE_PYLIST_INTERNALS 0 - #ifndef CYTHON_USE_UNICODE_INTERNALS - #define CYTHON_USE_UNICODE_INTERNALS 1 - #endif - #undef CYTHON_USE_UNICODE_WRITER - #define CYTHON_USE_UNICODE_WRITER 0 - #undef CYTHON_USE_PYLONG_INTERNALS - #define CYTHON_USE_PYLONG_INTERNALS 0 - #ifndef CYTHON_AVOID_BORROWED_REFS - #define CYTHON_AVOID_BORROWED_REFS 0 - #endif - #ifndef CYTHON_ASSUME_SAFE_MACROS - #define CYTHON_ASSUME_SAFE_MACROS 1 - #endif - #ifndef CYTHON_UNPACK_METHODS - #define CYTHON_UNPACK_METHODS 1 - #endif - #undef CYTHON_FAST_THREAD_STATE - #define CYTHON_FAST_THREAD_STATE 0 - #undef CYTHON_FAST_PYCALL - #define CYTHON_FAST_PYCALL 0 - #undef CYTHON_PEP489_MULTI_PHASE_INIT - #define CYTHON_PEP489_MULTI_PHASE_INIT 0 - #undef CYTHON_USE_TP_FINALIZE - #define CYTHON_USE_TP_FINALIZE 0 - #undef CYTHON_USE_DICT_VERSIONS - #define CYTHON_USE_DICT_VERSIONS 0 - #undef CYTHON_USE_EXC_INFO_STACK - #define CYTHON_USE_EXC_INFO_STACK 0 -#else - #define CYTHON_COMPILING_IN_PYPY 0 - #define CYTHON_COMPILING_IN_PYSTON 0 - #define CYTHON_COMPILING_IN_CPYTHON 1 - #ifndef CYTHON_USE_TYPE_SLOTS - #define CYTHON_USE_TYPE_SLOTS 1 - #endif - #if PY_VERSION_HEX < 0x02070000 - #undef CYTHON_USE_PYTYPE_LOOKUP - #define CYTHON_USE_PYTYPE_LOOKUP 0 - #elif !defined(CYTHON_USE_PYTYPE_LOOKUP) - #define CYTHON_USE_PYTYPE_LOOKUP 1 - #endif - #if PY_MAJOR_VERSION < 3 - #undef CYTHON_USE_ASYNC_SLOTS - #define CYTHON_USE_ASYNC_SLOTS 0 - #elif !defined(CYTHON_USE_ASYNC_SLOTS) - #define CYTHON_USE_ASYNC_SLOTS 1 - #endif - #if PY_VERSION_HEX < 0x02070000 - #undef CYTHON_USE_PYLONG_INTERNALS - #define CYTHON_USE_PYLONG_INTERNALS 0 - #elif !defined(CYTHON_USE_PYLONG_INTERNALS) - #define CYTHON_USE_PYLONG_INTERNALS 1 - #endif - #ifndef CYTHON_USE_PYLIST_INTERNALS - #define CYTHON_USE_PYLIST_INTERNALS 1 - #endif - #ifndef CYTHON_USE_UNICODE_INTERNALS - #define CYTHON_USE_UNICODE_INTERNALS 1 - #endif - #if PY_VERSION_HEX < 0x030300F0 - #undef CYTHON_USE_UNICODE_WRITER - #define CYTHON_USE_UNICODE_WRITER 0 - #elif !defined(CYTHON_USE_UNICODE_WRITER) - #define CYTHON_USE_UNICODE_WRITER 1 - #endif - #ifndef CYTHON_AVOID_BORROWED_REFS - #define CYTHON_AVOID_BORROWED_REFS 0 - #endif - #ifndef CYTHON_ASSUME_SAFE_MACROS - #define CYTHON_ASSUME_SAFE_MACROS 1 - #endif - #ifndef CYTHON_UNPACK_METHODS - #define CYTHON_UNPACK_METHODS 1 - #endif - #ifndef CYTHON_FAST_THREAD_STATE - #define CYTHON_FAST_THREAD_STATE 1 - #endif - #ifndef CYTHON_FAST_PYCALL - #define CYTHON_FAST_PYCALL 1 - #endif - #ifndef CYTHON_PEP489_MULTI_PHASE_INIT - #define CYTHON_PEP489_MULTI_PHASE_INIT (PY_VERSION_HEX >= 0x03050000) - #endif - #ifndef CYTHON_USE_TP_FINALIZE - #define CYTHON_USE_TP_FINALIZE (PY_VERSION_HEX >= 0x030400a1) - #endif - #ifndef CYTHON_USE_DICT_VERSIONS - #define CYTHON_USE_DICT_VERSIONS (PY_VERSION_HEX >= 0x030600B1) - #endif - #ifndef CYTHON_USE_EXC_INFO_STACK - #define CYTHON_USE_EXC_INFO_STACK (PY_VERSION_HEX >= 0x030700A3) - #endif -#endif -#if !defined(CYTHON_FAST_PYCCALL) -#define CYTHON_FAST_PYCCALL (CYTHON_FAST_PYCALL && PY_VERSION_HEX >= 0x030600B1) -#endif -#if CYTHON_USE_PYLONG_INTERNALS - #include "longintrepr.h" - #undef SHIFT - #undef BASE - #undef MASK - #ifdef SIZEOF_VOID_P - enum { __pyx_check_sizeof_voidp = 1 / (int)(SIZEOF_VOID_P == sizeof(void*)) }; - #endif -#endif -#ifndef __has_attribute - #define __has_attribute(x) 0 -#endif -#ifndef __has_cpp_attribute - #define __has_cpp_attribute(x) 0 -#endif -#ifndef CYTHON_RESTRICT - #if defined(__GNUC__) - #define CYTHON_RESTRICT __restrict__ - #elif defined(_MSC_VER) && _MSC_VER >= 1400 - #define CYTHON_RESTRICT __restrict - #elif defined (__STDC_VERSION__) && __STDC_VERSION__ >= 199901L - #define CYTHON_RESTRICT restrict - #else - #define CYTHON_RESTRICT - #endif -#endif -#ifndef CYTHON_UNUSED -# if defined(__GNUC__) -# if !(defined(__cplusplus)) || (__GNUC__ > 3 || (__GNUC__ == 3 && __GNUC_MINOR__ >= 4)) -# define CYTHON_UNUSED __attribute__ ((__unused__)) -# else -# define CYTHON_UNUSED -# endif -# elif defined(__ICC) || (defined(__INTEL_COMPILER) && !defined(_MSC_VER)) -# define CYTHON_UNUSED __attribute__ ((__unused__)) -# else -# define CYTHON_UNUSED -# endif -#endif -#ifndef CYTHON_MAYBE_UNUSED_VAR -# if defined(__cplusplus) - template void CYTHON_MAYBE_UNUSED_VAR( const T& ) { } -# else -# define CYTHON_MAYBE_UNUSED_VAR(x) (void)(x) -# endif -#endif -#ifndef CYTHON_NCP_UNUSED -# if CYTHON_COMPILING_IN_CPYTHON -# define CYTHON_NCP_UNUSED -# else -# define CYTHON_NCP_UNUSED CYTHON_UNUSED -# endif -#endif -#define __Pyx_void_to_None(void_result) ((void)(void_result), Py_INCREF(Py_None), Py_None) -#ifdef _MSC_VER - #ifndef _MSC_STDINT_H_ - #if _MSC_VER < 1300 - typedef unsigned char uint8_t; - typedef unsigned int uint32_t; - #else - typedef unsigned __int8 uint8_t; - typedef unsigned __int32 uint32_t; - #endif - #endif -#else - #include -#endif -#ifndef CYTHON_FALLTHROUGH - #if defined(__cplusplus) && __cplusplus >= 201103L - #if __has_cpp_attribute(fallthrough) - #define CYTHON_FALLTHROUGH [[fallthrough]] - #elif __has_cpp_attribute(clang::fallthrough) - #define CYTHON_FALLTHROUGH [[clang::fallthrough]] - #elif __has_cpp_attribute(gnu::fallthrough) - #define CYTHON_FALLTHROUGH [[gnu::fallthrough]] - #endif - #endif - #ifndef CYTHON_FALLTHROUGH - #if __has_attribute(fallthrough) - #define CYTHON_FALLTHROUGH __attribute__((fallthrough)) - #else - #define CYTHON_FALLTHROUGH - #endif - #endif - #if defined(__clang__ ) && defined(__apple_build_version__) - #if __apple_build_version__ < 7000000 - #undef CYTHON_FALLTHROUGH - #define CYTHON_FALLTHROUGH - #endif - #endif -#endif - -#ifndef CYTHON_INLINE - #if defined(__clang__) - #define CYTHON_INLINE __inline__ __attribute__ ((__unused__)) - #elif defined(__GNUC__) - #define CYTHON_INLINE __inline__ - #elif defined(_MSC_VER) - #define CYTHON_INLINE __inline - #elif defined (__STDC_VERSION__) && __STDC_VERSION__ >= 199901L - #define CYTHON_INLINE inline - #else - #define CYTHON_INLINE - #endif -#endif - -#if CYTHON_COMPILING_IN_PYPY && PY_VERSION_HEX < 0x02070600 && !defined(Py_OptimizeFlag) - #define Py_OptimizeFlag 0 -#endif -#define __PYX_BUILD_PY_SSIZE_T "n" -#define CYTHON_FORMAT_SSIZE_T "z" -#if PY_MAJOR_VERSION < 3 - #define __Pyx_BUILTIN_MODULE_NAME "__builtin__" - #define __Pyx_PyCode_New(a, k, l, s, f, code, c, n, v, fv, cell, fn, name, fline, lnos)\ - PyCode_New(a+k, l, s, f, code, c, n, v, fv, cell, fn, name, fline, lnos) - #define __Pyx_DefaultClassType PyClass_Type -#else - #define __Pyx_BUILTIN_MODULE_NAME "builtins" -#if PY_VERSION_HEX >= 0x030800A4 && PY_VERSION_HEX < 0x030800B2 - #define __Pyx_PyCode_New(a, k, l, s, f, code, c, n, v, fv, cell, fn, name, fline, lnos)\ - PyCode_New(a, 0, k, l, s, f, code, c, n, v, fv, cell, fn, name, fline, lnos) -#else - #define __Pyx_PyCode_New(a, k, l, s, f, code, c, n, v, fv, cell, fn, name, fline, lnos)\ - PyCode_New(a, k, l, s, f, code, c, n, v, fv, cell, fn, name, fline, lnos) -#endif - #define __Pyx_DefaultClassType PyType_Type -#endif -#ifndef Py_TPFLAGS_CHECKTYPES - #define Py_TPFLAGS_CHECKTYPES 0 -#endif -#ifndef Py_TPFLAGS_HAVE_INDEX - #define Py_TPFLAGS_HAVE_INDEX 0 -#endif -#ifndef Py_TPFLAGS_HAVE_NEWBUFFER - #define Py_TPFLAGS_HAVE_NEWBUFFER 0 -#endif -#ifndef Py_TPFLAGS_HAVE_FINALIZE - #define Py_TPFLAGS_HAVE_FINALIZE 0 -#endif -#ifndef METH_STACKLESS - #define METH_STACKLESS 0 -#endif -#if PY_VERSION_HEX <= 0x030700A3 || !defined(METH_FASTCALL) - #ifndef METH_FASTCALL - #define METH_FASTCALL 0x80 - #endif - typedef PyObject *(*__Pyx_PyCFunctionFast) (PyObject *self, PyObject *const *args, Py_ssize_t nargs); - typedef PyObject *(*__Pyx_PyCFunctionFastWithKeywords) (PyObject *self, PyObject *const *args, - Py_ssize_t nargs, PyObject *kwnames); -#else - #define __Pyx_PyCFunctionFast _PyCFunctionFast - #define __Pyx_PyCFunctionFastWithKeywords _PyCFunctionFastWithKeywords -#endif -#if CYTHON_FAST_PYCCALL -#define __Pyx_PyFastCFunction_Check(func)\ - ((PyCFunction_Check(func) && (METH_FASTCALL == (PyCFunction_GET_FLAGS(func) & ~(METH_CLASS | METH_STATIC | METH_COEXIST | METH_KEYWORDS | METH_STACKLESS))))) -#else -#define __Pyx_PyFastCFunction_Check(func) 0 -#endif -#if CYTHON_COMPILING_IN_PYPY && !defined(PyObject_Malloc) - #define PyObject_Malloc(s) PyMem_Malloc(s) - #define PyObject_Free(p) PyMem_Free(p) - #define PyObject_Realloc(p) PyMem_Realloc(p) -#endif -#if CYTHON_COMPILING_IN_CPYTHON && PY_VERSION_HEX < 0x030400A1 - #define PyMem_RawMalloc(n) PyMem_Malloc(n) - #define PyMem_RawRealloc(p, n) PyMem_Realloc(p, n) - #define PyMem_RawFree(p) PyMem_Free(p) -#endif -#if CYTHON_COMPILING_IN_PYSTON - #define __Pyx_PyCode_HasFreeVars(co) PyCode_HasFreeVars(co) - #define __Pyx_PyFrame_SetLineNumber(frame, lineno) PyFrame_SetLineNumber(frame, lineno) -#else - #define __Pyx_PyCode_HasFreeVars(co) (PyCode_GetNumFree(co) > 0) - #define __Pyx_PyFrame_SetLineNumber(frame, lineno) (frame)->f_lineno = (lineno) -#endif -#if !CYTHON_FAST_THREAD_STATE || PY_VERSION_HEX < 0x02070000 - #define __Pyx_PyThreadState_Current PyThreadState_GET() -#elif PY_VERSION_HEX >= 0x03060000 - #define __Pyx_PyThreadState_Current _PyThreadState_UncheckedGet() -#elif PY_VERSION_HEX >= 0x03000000 - #define __Pyx_PyThreadState_Current PyThreadState_GET() -#else - #define __Pyx_PyThreadState_Current _PyThreadState_Current -#endif -#if PY_VERSION_HEX < 0x030700A2 && !defined(PyThread_tss_create) && !defined(Py_tss_NEEDS_INIT) -#include "pythread.h" -#define Py_tss_NEEDS_INIT 0 -typedef int Py_tss_t; -static CYTHON_INLINE int PyThread_tss_create(Py_tss_t *key) { - *key = PyThread_create_key(); - return 0; -} -static CYTHON_INLINE Py_tss_t * PyThread_tss_alloc(void) { - Py_tss_t *key = (Py_tss_t *)PyObject_Malloc(sizeof(Py_tss_t)); - *key = Py_tss_NEEDS_INIT; - return key; -} -static CYTHON_INLINE void PyThread_tss_free(Py_tss_t *key) { - PyObject_Free(key); -} -static CYTHON_INLINE int PyThread_tss_is_created(Py_tss_t *key) { - return *key != Py_tss_NEEDS_INIT; -} -static CYTHON_INLINE void PyThread_tss_delete(Py_tss_t *key) { - PyThread_delete_key(*key); - *key = Py_tss_NEEDS_INIT; -} -static CYTHON_INLINE int PyThread_tss_set(Py_tss_t *key, void *value) { - return PyThread_set_key_value(*key, value); -} -static CYTHON_INLINE void * PyThread_tss_get(Py_tss_t *key) { - return PyThread_get_key_value(*key); -} -#endif -#if CYTHON_COMPILING_IN_CPYTHON || defined(_PyDict_NewPresized) -#define __Pyx_PyDict_NewPresized(n) ((n <= 8) ? PyDict_New() : _PyDict_NewPresized(n)) -#else -#define __Pyx_PyDict_NewPresized(n) PyDict_New() -#endif -#if PY_MAJOR_VERSION >= 3 || CYTHON_FUTURE_DIVISION - #define __Pyx_PyNumber_Divide(x,y) PyNumber_TrueDivide(x,y) - #define __Pyx_PyNumber_InPlaceDivide(x,y) PyNumber_InPlaceTrueDivide(x,y) -#else - #define __Pyx_PyNumber_Divide(x,y) PyNumber_Divide(x,y) - #define __Pyx_PyNumber_InPlaceDivide(x,y) PyNumber_InPlaceDivide(x,y) -#endif -#if CYTHON_COMPILING_IN_CPYTHON && PY_VERSION_HEX >= 0x030500A1 && CYTHON_USE_UNICODE_INTERNALS -#define __Pyx_PyDict_GetItemStr(dict, name) _PyDict_GetItem_KnownHash(dict, name, ((PyASCIIObject *) name)->hash) -#else -#define __Pyx_PyDict_GetItemStr(dict, name) PyDict_GetItem(dict, name) -#endif -#if PY_VERSION_HEX > 0x03030000 && defined(PyUnicode_KIND) - #define CYTHON_PEP393_ENABLED 1 - #define __Pyx_PyUnicode_READY(op) (likely(PyUnicode_IS_READY(op)) ?\ - 0 : _PyUnicode_Ready((PyObject *)(op))) - #define __Pyx_PyUnicode_GET_LENGTH(u) PyUnicode_GET_LENGTH(u) - #define __Pyx_PyUnicode_READ_CHAR(u, i) PyUnicode_READ_CHAR(u, i) - #define __Pyx_PyUnicode_MAX_CHAR_VALUE(u) PyUnicode_MAX_CHAR_VALUE(u) - #define __Pyx_PyUnicode_KIND(u) PyUnicode_KIND(u) - #define __Pyx_PyUnicode_DATA(u) PyUnicode_DATA(u) - #define __Pyx_PyUnicode_READ(k, d, i) PyUnicode_READ(k, d, i) - #define __Pyx_PyUnicode_WRITE(k, d, i, ch) PyUnicode_WRITE(k, d, i, ch) - #define __Pyx_PyUnicode_IS_TRUE(u) (0 != (likely(PyUnicode_IS_READY(u)) ? PyUnicode_GET_LENGTH(u) : PyUnicode_GET_SIZE(u))) -#else - #define CYTHON_PEP393_ENABLED 0 - #define PyUnicode_1BYTE_KIND 1 - #define PyUnicode_2BYTE_KIND 2 - #define PyUnicode_4BYTE_KIND 4 - #define __Pyx_PyUnicode_READY(op) (0) - #define __Pyx_PyUnicode_GET_LENGTH(u) PyUnicode_GET_SIZE(u) - #define __Pyx_PyUnicode_READ_CHAR(u, i) ((Py_UCS4)(PyUnicode_AS_UNICODE(u)[i])) - #define __Pyx_PyUnicode_MAX_CHAR_VALUE(u) ((sizeof(Py_UNICODE) == 2) ? 65535 : 1114111) - #define __Pyx_PyUnicode_KIND(u) (sizeof(Py_UNICODE)) - #define __Pyx_PyUnicode_DATA(u) ((void*)PyUnicode_AS_UNICODE(u)) - #define __Pyx_PyUnicode_READ(k, d, i) ((void)(k), (Py_UCS4)(((Py_UNICODE*)d)[i])) - #define __Pyx_PyUnicode_WRITE(k, d, i, ch) (((void)(k)), ((Py_UNICODE*)d)[i] = ch) - #define __Pyx_PyUnicode_IS_TRUE(u) (0 != PyUnicode_GET_SIZE(u)) -#endif -#if CYTHON_COMPILING_IN_PYPY - #define __Pyx_PyUnicode_Concat(a, b) PyNumber_Add(a, b) - #define __Pyx_PyUnicode_ConcatSafe(a, b) PyNumber_Add(a, b) -#else - #define __Pyx_PyUnicode_Concat(a, b) PyUnicode_Concat(a, b) - #define __Pyx_PyUnicode_ConcatSafe(a, b) ((unlikely((a) == Py_None) || unlikely((b) == Py_None)) ?\ - PyNumber_Add(a, b) : __Pyx_PyUnicode_Concat(a, b)) -#endif -#if CYTHON_COMPILING_IN_PYPY && !defined(PyUnicode_Contains) - #define PyUnicode_Contains(u, s) PySequence_Contains(u, s) -#endif -#if CYTHON_COMPILING_IN_PYPY && !defined(PyByteArray_Check) - #define PyByteArray_Check(obj) PyObject_TypeCheck(obj, &PyByteArray_Type) -#endif -#if CYTHON_COMPILING_IN_PYPY && !defined(PyObject_Format) - #define PyObject_Format(obj, fmt) PyObject_CallMethod(obj, "__format__", "O", fmt) -#endif -#define __Pyx_PyString_FormatSafe(a, b) ((unlikely((a) == Py_None || (PyString_Check(b) && !PyString_CheckExact(b)))) ? PyNumber_Remainder(a, b) : __Pyx_PyString_Format(a, b)) -#define __Pyx_PyUnicode_FormatSafe(a, b) ((unlikely((a) == Py_None || (PyUnicode_Check(b) && !PyUnicode_CheckExact(b)))) ? PyNumber_Remainder(a, b) : PyUnicode_Format(a, b)) -#if PY_MAJOR_VERSION >= 3 - #define __Pyx_PyString_Format(a, b) PyUnicode_Format(a, b) -#else - #define __Pyx_PyString_Format(a, b) PyString_Format(a, b) -#endif -#if PY_MAJOR_VERSION < 3 && !defined(PyObject_ASCII) - #define PyObject_ASCII(o) PyObject_Repr(o) -#endif -#if PY_MAJOR_VERSION >= 3 - #define PyBaseString_Type PyUnicode_Type - #define PyStringObject PyUnicodeObject - #define PyString_Type PyUnicode_Type - #define PyString_Check PyUnicode_Check - #define PyString_CheckExact PyUnicode_CheckExact - #define PyObject_Unicode PyObject_Str -#endif -#if PY_MAJOR_VERSION >= 3 - #define __Pyx_PyBaseString_Check(obj) PyUnicode_Check(obj) - #define __Pyx_PyBaseString_CheckExact(obj) PyUnicode_CheckExact(obj) -#else - #define __Pyx_PyBaseString_Check(obj) (PyString_Check(obj) || PyUnicode_Check(obj)) - #define __Pyx_PyBaseString_CheckExact(obj) (PyString_CheckExact(obj) || PyUnicode_CheckExact(obj)) -#endif -#ifndef PySet_CheckExact - #define PySet_CheckExact(obj) (Py_TYPE(obj) == &PySet_Type) -#endif -#if CYTHON_ASSUME_SAFE_MACROS - #define __Pyx_PySequence_SIZE(seq) Py_SIZE(seq) -#else - #define __Pyx_PySequence_SIZE(seq) PySequence_Size(seq) -#endif -#if PY_MAJOR_VERSION >= 3 - #define PyIntObject PyLongObject - #define PyInt_Type PyLong_Type - #define PyInt_Check(op) PyLong_Check(op) - #define PyInt_CheckExact(op) PyLong_CheckExact(op) - #define PyInt_FromString PyLong_FromString - #define PyInt_FromUnicode PyLong_FromUnicode - #define PyInt_FromLong PyLong_FromLong - #define PyInt_FromSize_t PyLong_FromSize_t - #define PyInt_FromSsize_t PyLong_FromSsize_t - #define PyInt_AsLong PyLong_AsLong - #define PyInt_AS_LONG PyLong_AS_LONG - #define PyInt_AsSsize_t PyLong_AsSsize_t - #define PyInt_AsUnsignedLongMask PyLong_AsUnsignedLongMask - #define PyInt_AsUnsignedLongLongMask PyLong_AsUnsignedLongLongMask - #define PyNumber_Int PyNumber_Long -#endif -#if PY_MAJOR_VERSION >= 3 - #define PyBoolObject PyLongObject -#endif -#if PY_MAJOR_VERSION >= 3 && CYTHON_COMPILING_IN_PYPY - #ifndef PyUnicode_InternFromString - #define PyUnicode_InternFromString(s) PyUnicode_FromString(s) - #endif -#endif -#if PY_VERSION_HEX < 0x030200A4 - typedef long Py_hash_t; - #define __Pyx_PyInt_FromHash_t PyInt_FromLong - #define __Pyx_PyInt_AsHash_t PyInt_AsLong -#else - #define __Pyx_PyInt_FromHash_t PyInt_FromSsize_t - #define __Pyx_PyInt_AsHash_t PyInt_AsSsize_t -#endif -#if PY_MAJOR_VERSION >= 3 - #define __Pyx_PyMethod_New(func, self, klass) ((self) ? PyMethod_New(func, self) : (Py_INCREF(func), func)) -#else - #define __Pyx_PyMethod_New(func, self, klass) PyMethod_New(func, self, klass) -#endif -#if CYTHON_USE_ASYNC_SLOTS - #if PY_VERSION_HEX >= 0x030500B1 - #define __Pyx_PyAsyncMethodsStruct PyAsyncMethods - #define __Pyx_PyType_AsAsync(obj) (Py_TYPE(obj)->tp_as_async) - #else - #define __Pyx_PyType_AsAsync(obj) ((__Pyx_PyAsyncMethodsStruct*) (Py_TYPE(obj)->tp_reserved)) - #endif -#else - #define __Pyx_PyType_AsAsync(obj) NULL -#endif -#ifndef __Pyx_PyAsyncMethodsStruct - typedef struct { - unaryfunc am_await; - unaryfunc am_aiter; - unaryfunc am_anext; - } __Pyx_PyAsyncMethodsStruct; -#endif - -#if defined(WIN32) || defined(MS_WINDOWS) - #define _USE_MATH_DEFINES -#endif -#include -#ifdef NAN -#define __PYX_NAN() ((float) NAN) -#else -static CYTHON_INLINE float __PYX_NAN() { - float value; - memset(&value, 0xFF, sizeof(value)); - return value; -} -#endif -#if defined(__CYGWIN__) && defined(_LDBL_EQ_DBL) -#define __Pyx_truncl trunc -#else -#define __Pyx_truncl truncl -#endif - - -#define __PYX_ERR(f_index, lineno, Ln_error) \ -{ \ - __pyx_filename = __pyx_f[f_index]; __pyx_lineno = lineno; __pyx_clineno = __LINE__; goto Ln_error; \ -} - -#ifndef __PYX_EXTERN_C - #ifdef __cplusplus - #define __PYX_EXTERN_C extern "C" - #else - #define __PYX_EXTERN_C extern - #endif -#endif - -#define __PYX_HAVE__pmercury__utils__tls_utils -#define __PYX_HAVE_API__pmercury__utils__tls_utils -/* Early includes */ -#ifdef _OPENMP -#include -#endif /* _OPENMP */ - -#if defined(PYREX_WITHOUT_ASSERTIONS) && !defined(CYTHON_WITHOUT_ASSERTIONS) -#define CYTHON_WITHOUT_ASSERTIONS -#endif - -typedef struct {PyObject **p; const char *s; const Py_ssize_t n; const char* encoding; - const char is_unicode; const char is_str; const char intern; } __Pyx_StringTabEntry; - -#define __PYX_DEFAULT_STRING_ENCODING_IS_ASCII 0 -#define __PYX_DEFAULT_STRING_ENCODING_IS_UTF8 0 -#define __PYX_DEFAULT_STRING_ENCODING_IS_DEFAULT (PY_MAJOR_VERSION >= 3 && __PYX_DEFAULT_STRING_ENCODING_IS_UTF8) -#define __PYX_DEFAULT_STRING_ENCODING "" -#define __Pyx_PyObject_FromString __Pyx_PyBytes_FromString -#define __Pyx_PyObject_FromStringAndSize __Pyx_PyBytes_FromStringAndSize -#define __Pyx_uchar_cast(c) ((unsigned char)c) -#define __Pyx_long_cast(x) ((long)x) -#define __Pyx_fits_Py_ssize_t(v, type, is_signed) (\ - (sizeof(type) < sizeof(Py_ssize_t)) ||\ - (sizeof(type) > sizeof(Py_ssize_t) &&\ - likely(v < (type)PY_SSIZE_T_MAX ||\ - v == (type)PY_SSIZE_T_MAX) &&\ - (!is_signed || likely(v > (type)PY_SSIZE_T_MIN ||\ - v == (type)PY_SSIZE_T_MIN))) ||\ - (sizeof(type) == sizeof(Py_ssize_t) &&\ - (is_signed || likely(v < (type)PY_SSIZE_T_MAX ||\ - v == (type)PY_SSIZE_T_MAX))) ) -static CYTHON_INLINE int __Pyx_is_valid_index(Py_ssize_t i, Py_ssize_t limit) { - return (size_t) i < (size_t) limit; -} -#if defined (__cplusplus) && __cplusplus >= 201103L - #include - #define __Pyx_sst_abs(value) std::abs(value) -#elif SIZEOF_INT >= SIZEOF_SIZE_T - #define __Pyx_sst_abs(value) abs(value) -#elif SIZEOF_LONG >= SIZEOF_SIZE_T - #define __Pyx_sst_abs(value) labs(value) -#elif defined (_MSC_VER) - #define __Pyx_sst_abs(value) ((Py_ssize_t)_abs64(value)) -#elif defined (__STDC_VERSION__) && __STDC_VERSION__ >= 199901L - #define __Pyx_sst_abs(value) llabs(value) -#elif defined (__GNUC__) - #define __Pyx_sst_abs(value) __builtin_llabs(value) -#else - #define __Pyx_sst_abs(value) ((value<0) ? -value : value) -#endif -static CYTHON_INLINE const char* __Pyx_PyObject_AsString(PyObject*); -static CYTHON_INLINE const char* __Pyx_PyObject_AsStringAndSize(PyObject*, Py_ssize_t* length); -#define __Pyx_PyByteArray_FromString(s) PyByteArray_FromStringAndSize((const char*)s, strlen((const char*)s)) -#define __Pyx_PyByteArray_FromStringAndSize(s, l) PyByteArray_FromStringAndSize((const char*)s, l) -#define __Pyx_PyBytes_FromString PyBytes_FromString -#define __Pyx_PyBytes_FromStringAndSize PyBytes_FromStringAndSize -static CYTHON_INLINE PyObject* __Pyx_PyUnicode_FromString(const char*); -#if PY_MAJOR_VERSION < 3 - #define __Pyx_PyStr_FromString __Pyx_PyBytes_FromString - #define __Pyx_PyStr_FromStringAndSize __Pyx_PyBytes_FromStringAndSize -#else - #define __Pyx_PyStr_FromString __Pyx_PyUnicode_FromString - #define __Pyx_PyStr_FromStringAndSize __Pyx_PyUnicode_FromStringAndSize -#endif -#define __Pyx_PyBytes_AsWritableString(s) ((char*) PyBytes_AS_STRING(s)) -#define __Pyx_PyBytes_AsWritableSString(s) ((signed char*) PyBytes_AS_STRING(s)) -#define __Pyx_PyBytes_AsWritableUString(s) ((unsigned char*) PyBytes_AS_STRING(s)) -#define __Pyx_PyBytes_AsString(s) ((const char*) PyBytes_AS_STRING(s)) -#define __Pyx_PyBytes_AsSString(s) ((const signed char*) PyBytes_AS_STRING(s)) -#define __Pyx_PyBytes_AsUString(s) ((const unsigned char*) PyBytes_AS_STRING(s)) -#define __Pyx_PyObject_AsWritableString(s) ((char*) __Pyx_PyObject_AsString(s)) -#define __Pyx_PyObject_AsWritableSString(s) ((signed char*) __Pyx_PyObject_AsString(s)) -#define __Pyx_PyObject_AsWritableUString(s) ((unsigned char*) __Pyx_PyObject_AsString(s)) -#define __Pyx_PyObject_AsSString(s) ((const signed char*) __Pyx_PyObject_AsString(s)) -#define __Pyx_PyObject_AsUString(s) ((const unsigned char*) __Pyx_PyObject_AsString(s)) -#define __Pyx_PyObject_FromCString(s) __Pyx_PyObject_FromString((const char*)s) -#define __Pyx_PyBytes_FromCString(s) __Pyx_PyBytes_FromString((const char*)s) -#define __Pyx_PyByteArray_FromCString(s) __Pyx_PyByteArray_FromString((const char*)s) -#define __Pyx_PyStr_FromCString(s) __Pyx_PyStr_FromString((const char*)s) -#define __Pyx_PyUnicode_FromCString(s) __Pyx_PyUnicode_FromString((const char*)s) -static CYTHON_INLINE size_t __Pyx_Py_UNICODE_strlen(const Py_UNICODE *u) { - const Py_UNICODE *u_end = u; - while (*u_end++) ; - return (size_t)(u_end - u - 1); -} -#define __Pyx_PyUnicode_FromUnicode(u) PyUnicode_FromUnicode(u, __Pyx_Py_UNICODE_strlen(u)) -#define __Pyx_PyUnicode_FromUnicodeAndLength PyUnicode_FromUnicode -#define __Pyx_PyUnicode_AsUnicode PyUnicode_AsUnicode -#define __Pyx_NewRef(obj) (Py_INCREF(obj), obj) -#define __Pyx_Owned_Py_None(b) __Pyx_NewRef(Py_None) -static CYTHON_INLINE PyObject * __Pyx_PyBool_FromLong(long b); -static CYTHON_INLINE int __Pyx_PyObject_IsTrue(PyObject*); -static CYTHON_INLINE int __Pyx_PyObject_IsTrueAndDecref(PyObject*); -static CYTHON_INLINE PyObject* __Pyx_PyNumber_IntOrLong(PyObject* x); -#define __Pyx_PySequence_Tuple(obj)\ - (likely(PyTuple_CheckExact(obj)) ? __Pyx_NewRef(obj) : PySequence_Tuple(obj)) -static CYTHON_INLINE Py_ssize_t __Pyx_PyIndex_AsSsize_t(PyObject*); -static CYTHON_INLINE PyObject * __Pyx_PyInt_FromSize_t(size_t); -#if CYTHON_ASSUME_SAFE_MACROS -#define __pyx_PyFloat_AsDouble(x) (PyFloat_CheckExact(x) ? PyFloat_AS_DOUBLE(x) : PyFloat_AsDouble(x)) -#else -#define __pyx_PyFloat_AsDouble(x) PyFloat_AsDouble(x) -#endif -#define __pyx_PyFloat_AsFloat(x) ((float) __pyx_PyFloat_AsDouble(x)) -#if PY_MAJOR_VERSION >= 3 -#define __Pyx_PyNumber_Int(x) (PyLong_CheckExact(x) ? __Pyx_NewRef(x) : PyNumber_Long(x)) -#else -#define __Pyx_PyNumber_Int(x) (PyInt_CheckExact(x) ? __Pyx_NewRef(x) : PyNumber_Int(x)) -#endif -#define __Pyx_PyNumber_Float(x) (PyFloat_CheckExact(x) ? __Pyx_NewRef(x) : PyNumber_Float(x)) -#if PY_MAJOR_VERSION < 3 && __PYX_DEFAULT_STRING_ENCODING_IS_ASCII -static int __Pyx_sys_getdefaultencoding_not_ascii; -static int __Pyx_init_sys_getdefaultencoding_params(void) { - PyObject* sys; - PyObject* default_encoding = NULL; - PyObject* ascii_chars_u = NULL; - PyObject* ascii_chars_b = NULL; - const char* default_encoding_c; - sys = PyImport_ImportModule("sys"); - if (!sys) goto bad; - default_encoding = PyObject_CallMethod(sys, (char*) "getdefaultencoding", NULL); - Py_DECREF(sys); - if (!default_encoding) goto bad; - default_encoding_c = PyBytes_AsString(default_encoding); - if (!default_encoding_c) goto bad; - if (strcmp(default_encoding_c, "ascii") == 0) { - __Pyx_sys_getdefaultencoding_not_ascii = 0; - } else { - char ascii_chars[128]; - int c; - for (c = 0; c < 128; c++) { - ascii_chars[c] = c; - } - __Pyx_sys_getdefaultencoding_not_ascii = 1; - ascii_chars_u = PyUnicode_DecodeASCII(ascii_chars, 128, NULL); - if (!ascii_chars_u) goto bad; - ascii_chars_b = PyUnicode_AsEncodedString(ascii_chars_u, default_encoding_c, NULL); - if (!ascii_chars_b || !PyBytes_Check(ascii_chars_b) || memcmp(ascii_chars, PyBytes_AS_STRING(ascii_chars_b), 128) != 0) { - PyErr_Format( - PyExc_ValueError, - "This module compiled with c_string_encoding=ascii, but default encoding '%.200s' is not a superset of ascii.", - default_encoding_c); - goto bad; - } - Py_DECREF(ascii_chars_u); - Py_DECREF(ascii_chars_b); - } - Py_DECREF(default_encoding); - return 0; -bad: - Py_XDECREF(default_encoding); - Py_XDECREF(ascii_chars_u); - Py_XDECREF(ascii_chars_b); - return -1; -} -#endif -#if __PYX_DEFAULT_STRING_ENCODING_IS_DEFAULT && PY_MAJOR_VERSION >= 3 -#define __Pyx_PyUnicode_FromStringAndSize(c_str, size) PyUnicode_DecodeUTF8(c_str, size, NULL) -#else -#define __Pyx_PyUnicode_FromStringAndSize(c_str, size) PyUnicode_Decode(c_str, size, __PYX_DEFAULT_STRING_ENCODING, NULL) -#if __PYX_DEFAULT_STRING_ENCODING_IS_DEFAULT -static char* __PYX_DEFAULT_STRING_ENCODING; -static int __Pyx_init_sys_getdefaultencoding_params(void) { - PyObject* sys; - PyObject* default_encoding = NULL; - char* default_encoding_c; - sys = PyImport_ImportModule("sys"); - if (!sys) goto bad; - default_encoding = PyObject_CallMethod(sys, (char*) (const char*) "getdefaultencoding", NULL); - Py_DECREF(sys); - if (!default_encoding) goto bad; - default_encoding_c = PyBytes_AsString(default_encoding); - if (!default_encoding_c) goto bad; - __PYX_DEFAULT_STRING_ENCODING = (char*) malloc(strlen(default_encoding_c) + 1); - if (!__PYX_DEFAULT_STRING_ENCODING) goto bad; - strcpy(__PYX_DEFAULT_STRING_ENCODING, default_encoding_c); - Py_DECREF(default_encoding); - return 0; -bad: - Py_XDECREF(default_encoding); - return -1; -} -#endif -#endif - - -/* Test for GCC > 2.95 */ -#if defined(__GNUC__) && (__GNUC__ > 2 || (__GNUC__ == 2 && (__GNUC_MINOR__ > 95))) - #define likely(x) __builtin_expect(!!(x), 1) - #define unlikely(x) __builtin_expect(!!(x), 0) -#else /* !__GNUC__ or GCC < 2.95 */ - #define likely(x) (x) - #define unlikely(x) (x) -#endif /* __GNUC__ */ -static CYTHON_INLINE void __Pyx_pretend_to_initialize(void* ptr) { (void)ptr; } - -static PyObject *__pyx_m = NULL; -static PyObject *__pyx_d; -static PyObject *__pyx_b; -static PyObject *__pyx_cython_runtime = NULL; -static PyObject *__pyx_empty_tuple; -static PyObject *__pyx_empty_bytes; -static PyObject *__pyx_empty_unicode; -static int __pyx_lineno; -static int __pyx_clineno = 0; -static const char * __pyx_cfilenm= __FILE__; -static const char *__pyx_filename; - - -static const char *__pyx_f[] = { - "pmercury/utils/tls_utils.pyx", -}; - -/*--- Type declarations ---*/ - -/* --- Runtime support code (head) --- */ -/* Refnanny.proto */ -#ifndef CYTHON_REFNANNY - #define CYTHON_REFNANNY 0 -#endif -#if CYTHON_REFNANNY - typedef struct { - void (*INCREF)(void*, PyObject*, int); - void (*DECREF)(void*, PyObject*, int); - void (*GOTREF)(void*, PyObject*, int); - void (*GIVEREF)(void*, PyObject*, int); - void* (*SetupContext)(const char*, int, const char*); - void (*FinishContext)(void**); - } __Pyx_RefNannyAPIStruct; - static __Pyx_RefNannyAPIStruct *__Pyx_RefNanny = NULL; - static __Pyx_RefNannyAPIStruct *__Pyx_RefNannyImportAPI(const char *modname); - #define __Pyx_RefNannyDeclarations void *__pyx_refnanny = NULL; -#ifdef WITH_THREAD - #define __Pyx_RefNannySetupContext(name, acquire_gil)\ - if (acquire_gil) {\ - PyGILState_STATE __pyx_gilstate_save = PyGILState_Ensure();\ - __pyx_refnanny = __Pyx_RefNanny->SetupContext((name), __LINE__, __FILE__);\ - PyGILState_Release(__pyx_gilstate_save);\ - } else {\ - __pyx_refnanny = __Pyx_RefNanny->SetupContext((name), __LINE__, __FILE__);\ - } -#else - #define __Pyx_RefNannySetupContext(name, acquire_gil)\ - __pyx_refnanny = __Pyx_RefNanny->SetupContext((name), __LINE__, __FILE__) -#endif - #define __Pyx_RefNannyFinishContext()\ - __Pyx_RefNanny->FinishContext(&__pyx_refnanny) - #define __Pyx_INCREF(r) __Pyx_RefNanny->INCREF(__pyx_refnanny, (PyObject *)(r), __LINE__) - #define __Pyx_DECREF(r) __Pyx_RefNanny->DECREF(__pyx_refnanny, (PyObject *)(r), __LINE__) - #define __Pyx_GOTREF(r) __Pyx_RefNanny->GOTREF(__pyx_refnanny, (PyObject *)(r), __LINE__) - #define __Pyx_GIVEREF(r) __Pyx_RefNanny->GIVEREF(__pyx_refnanny, (PyObject *)(r), __LINE__) - #define __Pyx_XINCREF(r) do { if((r) != NULL) {__Pyx_INCREF(r); }} while(0) - #define __Pyx_XDECREF(r) do { if((r) != NULL) {__Pyx_DECREF(r); }} while(0) - #define __Pyx_XGOTREF(r) do { if((r) != NULL) {__Pyx_GOTREF(r); }} while(0) - #define __Pyx_XGIVEREF(r) do { if((r) != NULL) {__Pyx_GIVEREF(r);}} while(0) -#else - #define __Pyx_RefNannyDeclarations - #define __Pyx_RefNannySetupContext(name, acquire_gil) - #define __Pyx_RefNannyFinishContext() - #define __Pyx_INCREF(r) Py_INCREF(r) - #define __Pyx_DECREF(r) Py_DECREF(r) - #define __Pyx_GOTREF(r) - #define __Pyx_GIVEREF(r) - #define __Pyx_XINCREF(r) Py_XINCREF(r) - #define __Pyx_XDECREF(r) Py_XDECREF(r) - #define __Pyx_XGOTREF(r) - #define __Pyx_XGIVEREF(r) -#endif -#define __Pyx_XDECREF_SET(r, v) do {\ - PyObject *tmp = (PyObject *) r;\ - r = v; __Pyx_XDECREF(tmp);\ - } while (0) -#define __Pyx_DECREF_SET(r, v) do {\ - PyObject *tmp = (PyObject *) r;\ - r = v; __Pyx_DECREF(tmp);\ - } while (0) -#define __Pyx_CLEAR(r) do { PyObject* tmp = ((PyObject*)(r)); r = NULL; __Pyx_DECREF(tmp);} while(0) -#define __Pyx_XCLEAR(r) do { if((r) != NULL) {PyObject* tmp = ((PyObject*)(r)); r = NULL; __Pyx_DECREF(tmp);}} while(0) - -/* PyObjectGetAttrStr.proto */ -#if CYTHON_USE_TYPE_SLOTS -static CYTHON_INLINE PyObject* __Pyx_PyObject_GetAttrStr(PyObject* obj, PyObject* attr_name); -#else -#define __Pyx_PyObject_GetAttrStr(o,n) PyObject_GetAttr(o,n) -#endif - -/* GetBuiltinName.proto */ -static PyObject *__Pyx_GetBuiltinName(PyObject *name); - -/* RaiseArgTupleInvalid.proto */ -static void __Pyx_RaiseArgtupleInvalid(const char* func_name, int exact, - Py_ssize_t num_min, Py_ssize_t num_max, Py_ssize_t num_found); - -/* RaiseDoubleKeywords.proto */ -static void __Pyx_RaiseDoubleKeywordsError(const char* func_name, PyObject* kw_name); - -/* ParseKeywords.proto */ -static int __Pyx_ParseOptionalKeywords(PyObject *kwds, PyObject **argnames[],\ - PyObject *kwds2, PyObject *values[], Py_ssize_t num_pos_args,\ - const char* function_name); - -/* ArgTypeTest.proto */ -#define __Pyx_ArgTypeTest(obj, type, none_allowed, name, exact)\ - ((likely((Py_TYPE(obj) == type) | (none_allowed && (obj == Py_None)))) ? 1 :\ - __Pyx__ArgTypeTest(obj, type, name, exact)) -static int __Pyx__ArgTypeTest(PyObject *obj, PyTypeObject *type, const char *name, int exact); - -/* PyFunctionFastCall.proto */ -#if CYTHON_FAST_PYCALL -#define __Pyx_PyFunction_FastCall(func, args, nargs)\ - __Pyx_PyFunction_FastCallDict((func), (args), (nargs), NULL) -#if 1 || PY_VERSION_HEX < 0x030600B1 -static PyObject *__Pyx_PyFunction_FastCallDict(PyObject *func, PyObject **args, Py_ssize_t nargs, PyObject *kwargs); -#else -#define __Pyx_PyFunction_FastCallDict(func, args, nargs, kwargs) _PyFunction_FastCallDict(func, args, nargs, kwargs) -#endif -#define __Pyx_BUILD_ASSERT_EXPR(cond)\ - (sizeof(char [1 - 2*!(cond)]) - 1) -#ifndef Py_MEMBER_SIZE -#define Py_MEMBER_SIZE(type, member) sizeof(((type *)0)->member) -#endif - static size_t __pyx_pyframe_localsplus_offset = 0; - #include "frameobject.h" - #define __Pxy_PyFrame_Initialize_Offsets()\ - ((void)__Pyx_BUILD_ASSERT_EXPR(sizeof(PyFrameObject) == offsetof(PyFrameObject, f_localsplus) + Py_MEMBER_SIZE(PyFrameObject, f_localsplus)),\ - (void)(__pyx_pyframe_localsplus_offset = ((size_t)PyFrame_Type.tp_basicsize) - Py_MEMBER_SIZE(PyFrameObject, f_localsplus))) - #define __Pyx_PyFrame_GetLocalsplus(frame)\ - (assert(__pyx_pyframe_localsplus_offset), (PyObject **)(((char *)(frame)) + __pyx_pyframe_localsplus_offset)) -#endif - -/* PyCFunctionFastCall.proto */ -#if CYTHON_FAST_PYCCALL -static CYTHON_INLINE PyObject *__Pyx_PyCFunction_FastCall(PyObject *func, PyObject **args, Py_ssize_t nargs); -#else -#define __Pyx_PyCFunction_FastCall(func, args, nargs) (assert(0), NULL) -#endif - -/* PyObjectCall.proto */ -#if CYTHON_COMPILING_IN_CPYTHON -static CYTHON_INLINE PyObject* __Pyx_PyObject_Call(PyObject *func, PyObject *arg, PyObject *kw); -#else -#define __Pyx_PyObject_Call(func, arg, kw) PyObject_Call(func, arg, kw) -#endif - -/* decode_c_string_utf16.proto */ -static CYTHON_INLINE PyObject *__Pyx_PyUnicode_DecodeUTF16(const char *s, Py_ssize_t size, const char *errors) { - int byteorder = 0; - return PyUnicode_DecodeUTF16(s, size, errors, &byteorder); -} -static CYTHON_INLINE PyObject *__Pyx_PyUnicode_DecodeUTF16LE(const char *s, Py_ssize_t size, const char *errors) { - int byteorder = -1; - return PyUnicode_DecodeUTF16(s, size, errors, &byteorder); -} -static CYTHON_INLINE PyObject *__Pyx_PyUnicode_DecodeUTF16BE(const char *s, Py_ssize_t size, const char *errors) { - int byteorder = 1; - return PyUnicode_DecodeUTF16(s, size, errors, &byteorder); -} - -/* decode_c_bytes.proto */ -static CYTHON_INLINE PyObject* __Pyx_decode_c_bytes( - const char* cstring, Py_ssize_t length, Py_ssize_t start, Py_ssize_t stop, - const char* encoding, const char* errors, - PyObject* (*decode_func)(const char *s, Py_ssize_t size, const char *errors)); - -/* decode_bytes.proto */ -static CYTHON_INLINE PyObject* __Pyx_decode_bytes( - PyObject* string, Py_ssize_t start, Py_ssize_t stop, - const char* encoding, const char* errors, - PyObject* (*decode_func)(const char *s, Py_ssize_t size, const char *errors)) { - return __Pyx_decode_c_bytes( - PyBytes_AS_STRING(string), PyBytes_GET_SIZE(string), - start, stop, encoding, errors, decode_func); -} - -/* GetTopmostException.proto */ -#if CYTHON_USE_EXC_INFO_STACK -static _PyErr_StackItem * __Pyx_PyErr_GetTopmostException(PyThreadState *tstate); -#endif - -/* PyThreadStateGet.proto */ -#if CYTHON_FAST_THREAD_STATE -#define __Pyx_PyThreadState_declare PyThreadState *__pyx_tstate; -#define __Pyx_PyThreadState_assign __pyx_tstate = __Pyx_PyThreadState_Current; -#define __Pyx_PyErr_Occurred() __pyx_tstate->curexc_type -#else -#define __Pyx_PyThreadState_declare -#define __Pyx_PyThreadState_assign -#define __Pyx_PyErr_Occurred() PyErr_Occurred() -#endif - -/* SaveResetException.proto */ -#if CYTHON_FAST_THREAD_STATE -#define __Pyx_ExceptionSave(type, value, tb) __Pyx__ExceptionSave(__pyx_tstate, type, value, tb) -static CYTHON_INLINE void __Pyx__ExceptionSave(PyThreadState *tstate, PyObject **type, PyObject **value, PyObject **tb); -#define __Pyx_ExceptionReset(type, value, tb) __Pyx__ExceptionReset(__pyx_tstate, type, value, tb) -static CYTHON_INLINE void __Pyx__ExceptionReset(PyThreadState *tstate, PyObject *type, PyObject *value, PyObject *tb); -#else -#define __Pyx_ExceptionSave(type, value, tb) PyErr_GetExcInfo(type, value, tb) -#define __Pyx_ExceptionReset(type, value, tb) PyErr_SetExcInfo(type, value, tb) -#endif - -/* PyErrExceptionMatches.proto */ -#if CYTHON_FAST_THREAD_STATE -#define __Pyx_PyErr_ExceptionMatches(err) __Pyx_PyErr_ExceptionMatchesInState(__pyx_tstate, err) -static CYTHON_INLINE int __Pyx_PyErr_ExceptionMatchesInState(PyThreadState* tstate, PyObject* err); -#else -#define __Pyx_PyErr_ExceptionMatches(err) PyErr_ExceptionMatches(err) -#endif - -/* GetException.proto */ -#if CYTHON_FAST_THREAD_STATE -#define __Pyx_GetException(type, value, tb) __Pyx__GetException(__pyx_tstate, type, value, tb) -static int __Pyx__GetException(PyThreadState *tstate, PyObject **type, PyObject **value, PyObject **tb); -#else -static int __Pyx_GetException(PyObject **type, PyObject **value, PyObject **tb); -#endif - -/* PyObjectCallMethO.proto */ -#if CYTHON_COMPILING_IN_CPYTHON -static CYTHON_INLINE PyObject* __Pyx_PyObject_CallMethO(PyObject *func, PyObject *arg); -#endif - -/* PyObjectCallNoArg.proto */ -#if CYTHON_COMPILING_IN_CPYTHON -static CYTHON_INLINE PyObject* __Pyx_PyObject_CallNoArg(PyObject *func); -#else -#define __Pyx_PyObject_CallNoArg(func) __Pyx_PyObject_Call(func, __pyx_empty_tuple, NULL) -#endif - -/* PyObjectCallOneArg.proto */ -static CYTHON_INLINE PyObject* __Pyx_PyObject_CallOneArg(PyObject *func, PyObject *arg); - -/* PyDictVersioning.proto */ -#if CYTHON_USE_DICT_VERSIONS && CYTHON_USE_TYPE_SLOTS -#define __PYX_DICT_VERSION_INIT ((PY_UINT64_T) -1) -#define __PYX_GET_DICT_VERSION(dict) (((PyDictObject*)(dict))->ma_version_tag) -#define __PYX_UPDATE_DICT_CACHE(dict, value, cache_var, version_var)\ - (version_var) = __PYX_GET_DICT_VERSION(dict);\ - (cache_var) = (value); -#define __PYX_PY_DICT_LOOKUP_IF_MODIFIED(VAR, DICT, LOOKUP) {\ - static PY_UINT64_T __pyx_dict_version = 0;\ - static PyObject *__pyx_dict_cached_value = NULL;\ - if (likely(__PYX_GET_DICT_VERSION(DICT) == __pyx_dict_version)) {\ - (VAR) = __pyx_dict_cached_value;\ - } else {\ - (VAR) = __pyx_dict_cached_value = (LOOKUP);\ - __pyx_dict_version = __PYX_GET_DICT_VERSION(DICT);\ - }\ -} -static CYTHON_INLINE PY_UINT64_T __Pyx_get_tp_dict_version(PyObject *obj); -static CYTHON_INLINE PY_UINT64_T __Pyx_get_object_dict_version(PyObject *obj); -static CYTHON_INLINE int __Pyx_object_dict_version_matches(PyObject* obj, PY_UINT64_T tp_dict_version, PY_UINT64_T obj_dict_version); -#else -#define __PYX_GET_DICT_VERSION(dict) (0) -#define __PYX_UPDATE_DICT_CACHE(dict, value, cache_var, version_var) -#define __PYX_PY_DICT_LOOKUP_IF_MODIFIED(VAR, DICT, LOOKUP) (VAR) = (LOOKUP); -#endif - -/* GetModuleGlobalName.proto */ -#if CYTHON_USE_DICT_VERSIONS -#define __Pyx_GetModuleGlobalName(var, name) {\ - static PY_UINT64_T __pyx_dict_version = 0;\ - static PyObject *__pyx_dict_cached_value = NULL;\ - (var) = (likely(__pyx_dict_version == __PYX_GET_DICT_VERSION(__pyx_d))) ?\ - (likely(__pyx_dict_cached_value) ? __Pyx_NewRef(__pyx_dict_cached_value) : __Pyx_GetBuiltinName(name)) :\ - __Pyx__GetModuleGlobalName(name, &__pyx_dict_version, &__pyx_dict_cached_value);\ -} -#define __Pyx_GetModuleGlobalNameUncached(var, name) {\ - PY_UINT64_T __pyx_dict_version;\ - PyObject *__pyx_dict_cached_value;\ - (var) = __Pyx__GetModuleGlobalName(name, &__pyx_dict_version, &__pyx_dict_cached_value);\ -} -static PyObject *__Pyx__GetModuleGlobalName(PyObject *name, PY_UINT64_T *dict_version, PyObject **dict_cached_value); -#else -#define __Pyx_GetModuleGlobalName(var, name) (var) = __Pyx__GetModuleGlobalName(name) -#define __Pyx_GetModuleGlobalNameUncached(var, name) (var) = __Pyx__GetModuleGlobalName(name) -static CYTHON_INLINE PyObject *__Pyx__GetModuleGlobalName(PyObject *name); -#endif - -/* PyObjectCall2Args.proto */ -static CYTHON_UNUSED PyObject* __Pyx_PyObject_Call2Args(PyObject* function, PyObject* arg1, PyObject* arg2); - -/* GetItemInt.proto */ -#define __Pyx_GetItemInt(o, i, type, is_signed, to_py_func, is_list, wraparound, boundscheck)\ - (__Pyx_fits_Py_ssize_t(i, type, is_signed) ?\ - __Pyx_GetItemInt_Fast(o, (Py_ssize_t)i, is_list, wraparound, boundscheck) :\ - (is_list ? (PyErr_SetString(PyExc_IndexError, "list index out of range"), (PyObject*)NULL) :\ - __Pyx_GetItemInt_Generic(o, to_py_func(i)))) -#define __Pyx_GetItemInt_List(o, i, type, is_signed, to_py_func, is_list, wraparound, boundscheck)\ - (__Pyx_fits_Py_ssize_t(i, type, is_signed) ?\ - __Pyx_GetItemInt_List_Fast(o, (Py_ssize_t)i, wraparound, boundscheck) :\ - (PyErr_SetString(PyExc_IndexError, "list index out of range"), (PyObject*)NULL)) -static CYTHON_INLINE PyObject *__Pyx_GetItemInt_List_Fast(PyObject *o, Py_ssize_t i, - int wraparound, int boundscheck); -#define __Pyx_GetItemInt_Tuple(o, i, type, is_signed, to_py_func, is_list, wraparound, boundscheck)\ - (__Pyx_fits_Py_ssize_t(i, type, is_signed) ?\ - __Pyx_GetItemInt_Tuple_Fast(o, (Py_ssize_t)i, wraparound, boundscheck) :\ - (PyErr_SetString(PyExc_IndexError, "tuple index out of range"), (PyObject*)NULL)) -static CYTHON_INLINE PyObject *__Pyx_GetItemInt_Tuple_Fast(PyObject *o, Py_ssize_t i, - int wraparound, int boundscheck); -static PyObject *__Pyx_GetItemInt_Generic(PyObject *o, PyObject* j); -static CYTHON_INLINE PyObject *__Pyx_GetItemInt_Fast(PyObject *o, Py_ssize_t i, - int is_list, int wraparound, int boundscheck); - -/* SliceObject.proto */ -static CYTHON_INLINE PyObject* __Pyx_PyObject_GetSlice( - PyObject* obj, Py_ssize_t cstart, Py_ssize_t cstop, - PyObject** py_start, PyObject** py_stop, PyObject** py_slice, - int has_cstart, int has_cstop, int wraparound); - -/* ListCompAppend.proto */ -#if CYTHON_USE_PYLIST_INTERNALS && CYTHON_ASSUME_SAFE_MACROS -static CYTHON_INLINE int __Pyx_ListComp_Append(PyObject* list, PyObject* x) { - PyListObject* L = (PyListObject*) list; - Py_ssize_t len = Py_SIZE(list); - if (likely(L->allocated > len)) { - Py_INCREF(x); - PyList_SET_ITEM(list, len, x); - Py_SIZE(list) = len+1; - return 0; - } - return PyList_Append(list, x); -} -#else -#define __Pyx_ListComp_Append(L,x) PyList_Append(L,x) -#endif - -/* PySequenceContains.proto */ -static CYTHON_INLINE int __Pyx_PySequence_ContainsTF(PyObject* item, PyObject* seq, int eq) { - int result = PySequence_Contains(seq, item); - return unlikely(result < 0) ? result : (result == (eq == Py_EQ)); -} - -/* ObjectGetItem.proto */ -#if CYTHON_USE_TYPE_SLOTS -static CYTHON_INLINE PyObject *__Pyx_PyObject_GetItem(PyObject *obj, PyObject* key); -#else -#define __Pyx_PyObject_GetItem(obj, key) PyObject_GetItem(obj, key) -#endif - -/* ListAppend.proto */ -#if CYTHON_USE_PYLIST_INTERNALS && CYTHON_ASSUME_SAFE_MACROS -static CYTHON_INLINE int __Pyx_PyList_Append(PyObject* list, PyObject* x) { - PyListObject* L = (PyListObject*) list; - Py_ssize_t len = Py_SIZE(list); - if (likely(L->allocated > len) & likely(len > (L->allocated >> 1))) { - Py_INCREF(x); - PyList_SET_ITEM(list, len, x); - Py_SIZE(list) = len+1; - return 0; - } - return PyList_Append(list, x); -} -#else -#define __Pyx_PyList_Append(L,x) PyList_Append(L,x) -#endif - -/* DictGetItem.proto */ -#if PY_MAJOR_VERSION >= 3 && !CYTHON_COMPILING_IN_PYPY -static PyObject *__Pyx_PyDict_GetItem(PyObject *d, PyObject* key); -#define __Pyx_PyObject_Dict_GetItem(obj, name)\ - (likely(PyDict_CheckExact(obj)) ?\ - __Pyx_PyDict_GetItem(obj, name) : PyObject_GetItem(obj, name)) -#else -#define __Pyx_PyDict_GetItem(d, key) PyObject_GetItem(d, key) -#define __Pyx_PyObject_Dict_GetItem(obj, name) PyObject_GetItem(obj, name) -#endif - -/* IncludeStringH.proto */ -#include - -/* BytesEquals.proto */ -static CYTHON_INLINE int __Pyx_PyBytes_Equals(PyObject* s1, PyObject* s2, int equals); - -/* UnicodeEquals.proto */ -static CYTHON_INLINE int __Pyx_PyUnicode_Equals(PyObject* s1, PyObject* s2, int equals); - -/* pyfrozenset_new.proto */ -static CYTHON_INLINE PyObject* __Pyx_PyFrozenSet_New(PyObject* it); - -/* PySetContains.proto */ -static CYTHON_INLINE int __Pyx_PySet_ContainsTF(PyObject* key, PyObject* set, int eq); - -/* BuildPyUnicode.proto */ -static PyObject* __Pyx_PyUnicode_BuildFromAscii(Py_ssize_t ulength, char* chars, int clength, - int prepend_sign, char padding_char); - -/* CIntToPyUnicode.proto */ -static CYTHON_INLINE PyObject* __Pyx_PyUnicode_From_unsigned_int(unsigned int value, Py_ssize_t width, char padding_char, char format_char); - -/* UnpackUnboundCMethod.proto */ -typedef struct { - PyObject *type; - PyObject **method_name; - PyCFunction func; - PyObject *method; - int flag; -} __Pyx_CachedCFunction; - -/* CallUnboundCMethod0.proto */ -static PyObject* __Pyx__CallUnboundCMethod0(__Pyx_CachedCFunction* cfunc, PyObject* self); -#if CYTHON_COMPILING_IN_CPYTHON -#define __Pyx_CallUnboundCMethod0(cfunc, self)\ - (likely((cfunc)->func) ?\ - (likely((cfunc)->flag == METH_NOARGS) ? (*((cfunc)->func))(self, NULL) :\ - (PY_VERSION_HEX >= 0x030600B1 && likely((cfunc)->flag == METH_FASTCALL) ?\ - (PY_VERSION_HEX >= 0x030700A0 ?\ - (*(__Pyx_PyCFunctionFast)(void*)(PyCFunction)(cfunc)->func)(self, &__pyx_empty_tuple, 0) :\ - (*(__Pyx_PyCFunctionFastWithKeywords)(void*)(PyCFunction)(cfunc)->func)(self, &__pyx_empty_tuple, 0, NULL)) :\ - (PY_VERSION_HEX >= 0x030700A0 && (cfunc)->flag == (METH_FASTCALL | METH_KEYWORDS) ?\ - (*(__Pyx_PyCFunctionFastWithKeywords)(void*)(PyCFunction)(cfunc)->func)(self, &__pyx_empty_tuple, 0, NULL) :\ - (likely((cfunc)->flag == (METH_VARARGS | METH_KEYWORDS)) ? ((*(PyCFunctionWithKeywords)(void*)(PyCFunction)(cfunc)->func)(self, __pyx_empty_tuple, NULL)) :\ - ((cfunc)->flag == METH_VARARGS ? (*((cfunc)->func))(self, __pyx_empty_tuple) :\ - __Pyx__CallUnboundCMethod0(cfunc, self)))))) :\ - __Pyx__CallUnboundCMethod0(cfunc, self)) -#else -#define __Pyx_CallUnboundCMethod0(cfunc, self) __Pyx__CallUnboundCMethod0(cfunc, self) -#endif - -/* PyObjectFormatAndDecref.proto */ -static CYTHON_INLINE PyObject* __Pyx_PyObject_FormatSimpleAndDecref(PyObject* s, PyObject* f); -static CYTHON_INLINE PyObject* __Pyx_PyObject_FormatAndDecref(PyObject* s, PyObject* f); - -/* PyObjectGetMethod.proto */ -static int __Pyx_PyObject_GetMethod(PyObject *obj, PyObject *name, PyObject **method); - -/* PyObjectCallMethod1.proto */ -static PyObject* __Pyx_PyObject_CallMethod1(PyObject* obj, PyObject* method_name, PyObject* arg); - -/* append.proto */ -static CYTHON_INLINE int __Pyx_PyObject_Append(PyObject* L, PyObject* x); - -/* PyIntBinop.proto */ -#if !CYTHON_COMPILING_IN_PYPY -static PyObject* __Pyx_PyInt_AddObjC(PyObject *op1, PyObject *op2, long intval, int inplace, int zerodivision_check); -#else -#define __Pyx_PyInt_AddObjC(op1, op2, intval, inplace, zerodivision_check)\ - (inplace ? PyNumber_InPlaceAdd(op1, op2) : PyNumber_Add(op1, op2)) -#endif - -/* PyIntBinop.proto */ -#if !CYTHON_COMPILING_IN_PYPY -static PyObject* __Pyx_PyInt_AddCObj(PyObject *op1, PyObject *op2, long intval, int inplace, int zerodivision_check); -#else -#define __Pyx_PyInt_AddCObj(op1, op2, intval, inplace, zerodivision_check)\ - (inplace ? PyNumber_InPlaceAdd(op1, op2) : PyNumber_Add(op1, op2)) -#endif - -/* Import.proto */ -static PyObject *__Pyx_Import(PyObject *name, PyObject *from_list, int level); - -/* CallUnboundCMethod1.proto */ -static PyObject* __Pyx__CallUnboundCMethod1(__Pyx_CachedCFunction* cfunc, PyObject* self, PyObject* arg); -#if CYTHON_COMPILING_IN_CPYTHON -static CYTHON_INLINE PyObject* __Pyx_CallUnboundCMethod1(__Pyx_CachedCFunction* cfunc, PyObject* self, PyObject* arg); -#else -#define __Pyx_CallUnboundCMethod1(cfunc, self, arg) __Pyx__CallUnboundCMethod1(cfunc, self, arg) -#endif - -/* PyErrFetchRestore.proto */ -#if CYTHON_FAST_THREAD_STATE -#define __Pyx_PyErr_Clear() __Pyx_ErrRestore(NULL, NULL, NULL) -#define __Pyx_ErrRestoreWithState(type, value, tb) __Pyx_ErrRestoreInState(PyThreadState_GET(), type, value, tb) -#define __Pyx_ErrFetchWithState(type, value, tb) __Pyx_ErrFetchInState(PyThreadState_GET(), type, value, tb) -#define __Pyx_ErrRestore(type, value, tb) __Pyx_ErrRestoreInState(__pyx_tstate, type, value, tb) -#define __Pyx_ErrFetch(type, value, tb) __Pyx_ErrFetchInState(__pyx_tstate, type, value, tb) -static CYTHON_INLINE void __Pyx_ErrRestoreInState(PyThreadState *tstate, PyObject *type, PyObject *value, PyObject *tb); -static CYTHON_INLINE void __Pyx_ErrFetchInState(PyThreadState *tstate, PyObject **type, PyObject **value, PyObject **tb); -#if CYTHON_COMPILING_IN_CPYTHON -#define __Pyx_PyErr_SetNone(exc) (Py_INCREF(exc), __Pyx_ErrRestore((exc), NULL, NULL)) -#else -#define __Pyx_PyErr_SetNone(exc) PyErr_SetNone(exc) -#endif -#else -#define __Pyx_PyErr_Clear() PyErr_Clear() -#define __Pyx_PyErr_SetNone(exc) PyErr_SetNone(exc) -#define __Pyx_ErrRestoreWithState(type, value, tb) PyErr_Restore(type, value, tb) -#define __Pyx_ErrFetchWithState(type, value, tb) PyErr_Fetch(type, value, tb) -#define __Pyx_ErrRestoreInState(tstate, type, value, tb) PyErr_Restore(type, value, tb) -#define __Pyx_ErrFetchInState(tstate, type, value, tb) PyErr_Fetch(type, value, tb) -#define __Pyx_ErrRestore(type, value, tb) PyErr_Restore(type, value, tb) -#define __Pyx_ErrFetch(type, value, tb) PyErr_Fetch(type, value, tb) -#endif - -/* CLineInTraceback.proto */ -#ifdef CYTHON_CLINE_IN_TRACEBACK -#define __Pyx_CLineForTraceback(tstate, c_line) (((CYTHON_CLINE_IN_TRACEBACK)) ? c_line : 0) -#else -static int __Pyx_CLineForTraceback(PyThreadState *tstate, int c_line); -#endif - -/* CodeObjectCache.proto */ -typedef struct { - PyCodeObject* code_object; - int code_line; -} __Pyx_CodeObjectCacheEntry; -struct __Pyx_CodeObjectCache { - int count; - int max_count; - __Pyx_CodeObjectCacheEntry* entries; -}; -static struct __Pyx_CodeObjectCache __pyx_code_cache = {0,0,NULL}; -static int __pyx_bisect_code_objects(__Pyx_CodeObjectCacheEntry* entries, int count, int code_line); -static PyCodeObject *__pyx_find_code_object(int code_line); -static void __pyx_insert_code_object(int code_line, PyCodeObject* code_object); - -/* AddTraceback.proto */ -static void __Pyx_AddTraceback(const char *funcname, int c_line, - int py_line, const char *filename); - -/* CIntToPy.proto */ -static CYTHON_INLINE PyObject* __Pyx_PyInt_From_long(long value); - -/* CIntToPy.proto */ -static CYTHON_INLINE PyObject* __Pyx_PyInt_From_unsigned_int(unsigned int value); - -/* CIntToPy.proto */ -static CYTHON_INLINE PyObject* __Pyx_PyInt_From_unsigned_char(unsigned char value); - -/* CIntFromPy.proto */ -static CYTHON_INLINE unsigned int __Pyx_PyInt_As_unsigned_int(PyObject *); - -/* CIntFromPy.proto */ -static CYTHON_INLINE long __Pyx_PyInt_As_long(PyObject *); - -/* CIntFromPy.proto */ -static CYTHON_INLINE int __Pyx_PyInt_As_int(PyObject *); - -/* FastTypeChecks.proto */ -#if CYTHON_COMPILING_IN_CPYTHON -#define __Pyx_TypeCheck(obj, type) __Pyx_IsSubtype(Py_TYPE(obj), (PyTypeObject *)type) -static CYTHON_INLINE int __Pyx_IsSubtype(PyTypeObject *a, PyTypeObject *b); -static CYTHON_INLINE int __Pyx_PyErr_GivenExceptionMatches(PyObject *err, PyObject *type); -static CYTHON_INLINE int __Pyx_PyErr_GivenExceptionMatches2(PyObject *err, PyObject *type1, PyObject *type2); -#else -#define __Pyx_TypeCheck(obj, type) PyObject_TypeCheck(obj, (PyTypeObject *)type) -#define __Pyx_PyErr_GivenExceptionMatches(err, type) PyErr_GivenExceptionMatches(err, type) -#define __Pyx_PyErr_GivenExceptionMatches2(err, type1, type2) (PyErr_GivenExceptionMatches(err, type1) || PyErr_GivenExceptionMatches(err, type2)) -#endif -#define __Pyx_PyException_Check(obj) __Pyx_TypeCheck(obj, PyExc_Exception) - -/* CStringEquals.proto */ -static CYTHON_INLINE int __Pyx_StrEq(const char *, const char *); - -/* CheckBinaryVersion.proto */ -static int __Pyx_check_binary_version(void); - -/* InitStrings.proto */ -static int __Pyx_InitStrings(__Pyx_StringTabEntry *t); - - -/* Module declarations from 'pmercury.utils.tls_utils' */ -static PyObject *__pyx_v_8pmercury_5utils_9tls_utils_grease_ = 0; -static PyObject *__pyx_v_8pmercury_5utils_9tls_utils_grease_single_int_ = 0; -static PyObject *__pyx_v_8pmercury_5utils_9tls_utils_ext_data_extract_ = 0; -#define __Pyx_MODULE_NAME "pmercury.utils.tls_utils" -extern int __pyx_module_is_main_pmercury__utils__tls_utils; -int __pyx_module_is_main_pmercury__utils__tls_utils = 0; - -/* Implementation of 'pmercury.utils.tls_utils' */ -static PyObject *__pyx_builtin_UnicodeDecodeError; -static PyObject *__pyx_builtin_range; -static const char __pyx_k_[] = "("; -static const char __pyx_k_e[] = "e_"; -static const char __pyx_k_i[] = "i"; -static const char __pyx_k_j[] = "j"; -static const char __pyx_k_l[] = "l"; -static const char __pyx_k_s[] = "(%s)"; -static const char __pyx_k_t[] = "t_"; -static const char __pyx_k__2[] = "[\""; -static const char __pyx_k__4[] = ")"; -static const char __pyx_k__5[] = "\"]"; -static const char __pyx_k__7[] = "]["; -static const char __pyx_k__8[] = "],["; -static const char __pyx_k_cs[] = "cs"; -static const char __pyx_k_fp[] = "fp_"; -static const char __pyx_k_os[] = "os"; -static const char __pyx_k_04x[] = "04x"; -static const char __pyx_k__10[] = "[\"["; -static const char __pyx_k__11[] = "[["; -static const char __pyx_k__13[] = "]\"]"; -static const char __pyx_k__14[] = "]]"; -static const char __pyx_k__19[] = ""; -static const char __pyx_k__22[] = "\n\n"; -static const char __pyx_k__26[] = "::"; -static const char __pyx_k__27[] = "/../"; -static const char __pyx_k__28[] = "*"; -static const char __pyx_k_add[] = "add"; -static const char __pyx_k_ast[] = "ast"; -static const char __pyx_k_big[] = "big"; -static const char __pyx_k_ext[] = "ext_"; -static const char __pyx_k_hex[] = "hex"; -static const char __pyx_k_l_2[] = "l_"; -static const char __pyx_k_s_2[] = "s_"; -static const char __pyx_k_seq[] = "seq"; -static const char __pyx_k_sys[] = "sys"; -static const char __pyx_k_0001[] = "0001"; -static const char __pyx_k_0005[] = "0005"; -static const char __pyx_k_0007[] = "0007"; -static const char __pyx_k_0008[] = "0008"; -static const char __pyx_k_0009[] = "0009"; -static const char __pyx_k_000a[] = "000a"; -static const char __pyx_k_000b[] = "000b"; -static const char __pyx_k_000d[] = "000d"; -static const char __pyx_k_000f[] = "000f"; -static const char __pyx_k_0010[] = "0010"; -static const char __pyx_k_0011[] = "0011"; -static const char __pyx_k_0013[] = "0013"; -static const char __pyx_k_0014[] = "0014"; -static const char __pyx_k_0018[] = "0018"; -static const char __pyx_k_001b[] = "001b"; -static const char __pyx_k_001c[] = "001c"; -static const char __pyx_k_002b[] = "002b"; -static const char __pyx_k_002d[] = "002d"; -static const char __pyx_k_0032[] = "0032"; -static const char __pyx_k_0a0a[] = "0a0a"; -static const char __pyx_k_1a1a[] = "1a1a"; -static const char __pyx_k_2a2a[] = "2a2a"; -static const char __pyx_k_3a3a[] = "3a3a"; -static const char __pyx_k_4a4a[] = "4a4a"; -static const char __pyx_k_5500[] = "5500"; -static const char __pyx_k_5a5a[] = "5a5a"; -static const char __pyx_k_6a6a[] = "6a6a"; -static const char __pyx_k_7a7a[] = "7a7a"; -static const char __pyx_k_8a8a[] = "8a8a"; -static const char __pyx_k_9a9a[] = "9a9a"; -static const char __pyx_k_None[] = "None"; -static const char __pyx_k_aaaa[] = "aaaa"; -static const char __pyx_k_baba[] = "baba"; -static const char __pyx_k_caca[] = "caca"; -static const char __pyx_k_cs_2[] = "cs_"; -static const char __pyx_k_cs_4[] = "cs_4_"; -static const char __pyx_k_cs_l[] = "cs_l_"; -static const char __pyx_k_dada[] = "dada"; -static const char __pyx_k_data[] = "data"; -static const char __pyx_k_date[] = "date"; -static const char __pyx_k_eaea[] = "eaea"; -static const char __pyx_k_exts[] = "exts_"; -static const char __pyx_k_fafa[] = "fafa"; -static const char __pyx_k_file[] = "__file__"; -static const char __pyx_k_info[] = "info"; -static const char __pyx_k_json[] = "json"; -static const char __pyx_k_line[] = "line"; -static const char __pyx_k_main[] = "__main__"; -static const char __pyx_k_mode[] = "mode"; -static const char __pyx_k_name[] = "name"; -static const char __pyx_k_path[] = "path"; -static const char __pyx_k_sort[] = "sort"; -static const char __pyx_k_test[] = "__test__"; -static const char __pyx_k_dates[] = "dates_"; -static const char __pyx_k_ext_2[] = "ext"; -static const char __pyx_k_ext_l[] = "ext_l_"; -static const char __pyx_k_group[] = "group"; -static const char __pyx_k_loads[] = "loads"; -static const char __pyx_k_ngram[] = "ngram"; -static const char __pyx_k_popen[] = "popen"; -static const char __pyx_k_range[] = "range"; -static const char __pyx_k_split[] = "split"; -static const char __pyx_k_t_ext[] = "t_ext_"; -static const char __pyx_k_union[] = "union"; -static const char __pyx_k_append[] = "append"; -static const char __pyx_k_client[] = "client"; -static const char __pyx_k_cs_str[] = "cs_str_"; -static const char __pyx_k_decode[] = "decode"; -static const char __pyx_k_fp_ext[] = "fp_ext_"; -static const char __pyx_k_fp_str[] = "fp_str_"; -static const char __pyx_k_import[] = "__import__"; -static const char __pyx_k_length[] = "length"; -static const char __pyx_k_name_2[] = "__name__"; -static const char __pyx_k_offset[] = "offset"; -static const char __pyx_k_zcat_s[] = "zcat %s"; -static const char __pyx_k_abspath[] = "abspath"; -static const char __pyx_k_convert[] = "convert"; -static const char __pyx_k_dirname[] = "dirname"; -static const char __pyx_k_ext_len[] = "ext_len"; -static const char __pyx_k_fromhex[] = "fromhex"; -static const char __pyx_k_new_str[] = "new_str_"; -static const char __pyx_k_replace[] = "replace"; -static const char __pyx_k_sni_len[] = "sni_len"; -static const char __pyx_k_tmp_ext[] = "tmp_ext"; -static const char __pyx_k_tmp_obj[] = "tmp_obj"; -static const char __pyx_k_version[] = "version"; -static const char __pyx_k_alpn_len[] = "alpn_len"; -static const char __pyx_k_data_len[] = "data_len"; -static const char __pyx_k_ext_data[] = "ext_data_"; -static const char __pyx_k_ext_type[] = "ext_type"; -static const char __pyx_k_tmp_data[] = "tmp_data"; -static const char __pyx_k_alpn_data[] = "alpn_data"; -static const char __pyx_k_ext_value[] = "ext_value"; -static const char __pyx_k_get_ngram[] = "get_ngram"; -static const char __pyx_k_key_share[] = "key_share"; -static const char __pyx_k_unknown_s[] = "unknown(%s)"; -static const char __pyx_k_algorithms[] = "algorithms"; -static const char __pyx_k_ext_data_2[] = "ext_data"; -static const char __pyx_k_ext_length[] = "ext_length"; -static const char __pyx_k_ext_type_2[] = "ext_type_"; -static const char __pyx_k_from_bytes[] = "from_bytes"; -static const char __pyx_k_TLS_VERSION[] = "TLS_VERSION"; -static const char __pyx_k_alpn_offset[] = "alpn_offset"; -static const char __pyx_k_eval_fp_str[] = "eval_fp_str"; -static const char __pyx_k_version_str[] = "version_str_"; -static const char __pyx_k_get_sequence[] = "get_sequence"; -static const char __pyx_k_key_exchange[] = "key_exchange"; -static const char __pyx_k_literal_eval[] = "literal_eval"; -static const char __pyx_k_tmp_alpn_len[] = "tmp_alpn_len"; -static const char __pyx_k_tmp_ext_type[] = "tmp_ext_type"; -static const char __pyx_k_tmp_ext_value[] = "tmp_ext_value"; -static const char __pyx_k_get_tls_params[] = "get_tls_params"; -static const char __pyx_k_status_request[] = "status_request"; -static const char __pyx_k_Unknown_Group_i[] = "Unknown Group (%i)"; -static const char __pyx_k_get_cs_from_str[] = "get_cs_from_str"; -static const char __pyx_k_parse_extension[] = "parse_extension"; -static const char __pyx_k_ec_point_formats[] = "ec_point_formats"; -static const char __pyx_k_get_ext_from_str[] = "get_ext_from_str"; -static const char __pyx_k_imp_date_cs_data[] = "imp_date_cs_data"; -static const char __pyx_k_imp_date_cs_file[] = "imp_date_cs_file"; -static const char __pyx_k_key_share_client[] = "key_share_client"; -static const char __pyx_k_key_share_length[] = "key_share_length"; -static const char __pyx_k_supported_groups[] = "supported_groups"; -static const char __pyx_k_Unknown_Version_s[] = "Unknown Version (%s)"; -static const char __pyx_k_degrease_ext_data[] = "degrease_ext_data"; -static const char __pyx_k_ext_type_str_kind[] = "ext_type_str_kind"; -static const char __pyx_k_imp_date_ext_data[] = "imp_date_ext_data"; -static const char __pyx_k_imp_date_ext_file[] = "imp_date_ext_file"; -static const char __pyx_k_key_share_entries[] = "key_share_entries"; -static const char __pyx_k_UnicodeDecodeError[] = "UnicodeDecodeError"; -static const char __pyx_k_cline_in_traceback[] = "cline_in_traceback"; -static const char __pyx_k_degrease_type_code[] = "degrease_type_code"; -static const char __pyx_k_find_resource_path[] = "find_resource_path"; -static const char __pyx_k_supported_versions[] = "supported_versions"; -static const char __pyx_k_degreased_ext_value[] = "degreased_ext_value"; -static const char __pyx_k_eval_fp_str_general[] = "eval_fp_str_general"; -static const char __pyx_k_extract_server_name[] = "extract_server_name"; -static const char __pyx_k_key_exchange_length[] = "key_exchange_length"; -static const char __pyx_k_TLS_EC_POINT_FORMATS[] = "TLS_EC_POINT_FORMATS"; -static const char __pyx_k_TLS_SUPPORTED_GROUPS[] = "TLS_SUPPORTED_GROUPS"; -static const char __pyx_k_get_version_from_str[] = "get_version_from_str"; -static const char __pyx_k_parse_extension_data[] = "parse_extension_data"; -static const char __pyx_k_signature_algorithms[] = "signature_algorithms"; -static const char __pyx_k_psk_key_exchange_mode[] = "psk_key_exchange_mode"; -static const char __pyx_k_psk_key_exchange_modes[] = "psk_key_exchange_modes"; -static const char __pyx_k_certificate_status_type[] = "certificate_status_type"; -static const char __pyx_k_ec_point_formats_length[] = "ec_point_formats_length"; -static const char __pyx_k_get_implementation_date[] = "get_implementation_date"; -static const char __pyx_k_pmercury_utils_tls_utils[] = "pmercury.utils.tls_utils"; -static const char __pyx_k_responder_id_list_length[] = "responder_id_list_length"; -static const char __pyx_k_request_extensions_length[] = "request_extensions_length"; -static const char __pyx_k_supported_versions_server[] = "supported_versions_server"; -static const char __pyx_k_TLS_PSK_KEY_EXCHANGE_MODES[] = "TLS_PSK_KEY_EXCHANGE_MODES"; -static const char __pyx_k_TLS_CERTIFICATE_STATUS_TYPE[] = "TLS_CERTIFICATE_STATUS_TYPE"; -static const char __pyx_k_pmercury_utils_tls_constants[] = "pmercury.utils.tls_constants"; -static const char __pyx_k_pmercury_utils_tls_utils_pyx[] = "pmercury/utils/tls_utils.pyx"; -static const char __pyx_k_supported_groups_list_length[] = "supported_groups_list_length"; -static const char __pyx_k_TLS_SIGNATURE_HASH_ALGORITHMS[] = "TLS_SIGNATURE_HASH_ALGORITHMS"; -static const char __pyx_k_pmercury_utils_pmercury_utils[] = "pmercury.utils.pmercury_utils"; -static const char __pyx_k_psk_key_exchange_modes_length[] = "psk_key_exchange_modes_length"; -static const char __pyx_k_Copyright_c_2019_Cisco_Systems[] = "\n Copyright (c) 2019 Cisco Systems, Inc. All rights reserved.\n License at https://github.com/cisco/mercury/blob/master/LICENSE\n"; -static const char __pyx_k_supported_versions_list_length[] = "supported_versions_list_length"; -static const char __pyx_k_application_layer_protocol_negot[] = "application_layer_protocol_negotiation"; -static const char __pyx_k_parse_application_layer_protocol[] = "parse_application_layer_protocol_negotiation"; -static const char __pyx_k_resources_implementation_date_cs[] = "resources/implementation_date_cs.json.gz"; -static const char __pyx_k_resources_implementation_date_ex[] = "resources/implementation_date_ext.json.gz"; -static const char __pyx_k_signature_hash_algorithms_length[] = "signature_hash_algorithms_length"; -static PyObject *__pyx_kp_u_; -static PyObject *__pyx_kp_u_0001; -static PyObject *__pyx_kp_u_0005; -static PyObject *__pyx_kp_u_0007; -static PyObject *__pyx_kp_u_0008; -static PyObject *__pyx_kp_u_0009; -static PyObject *__pyx_kp_u_000a; -static PyObject *__pyx_kp_u_000b; -static PyObject *__pyx_kp_u_000d; -static PyObject *__pyx_kp_u_000f; -static PyObject *__pyx_kp_u_0010; -static PyObject *__pyx_kp_u_0011; -static PyObject *__pyx_kp_u_0013; -static PyObject *__pyx_kp_u_0014; -static PyObject *__pyx_kp_u_0018; -static PyObject *__pyx_kp_u_001b; -static PyObject *__pyx_kp_u_001c; -static PyObject *__pyx_kp_b_002b; -static PyObject *__pyx_kp_u_002b; -static PyObject *__pyx_kp_u_002d; -static PyObject *__pyx_kp_u_0032; -static PyObject *__pyx_kp_u_04x; -static PyObject *__pyx_kp_u_0a0a; -static PyObject *__pyx_kp_u_1a1a; -static PyObject *__pyx_kp_u_2a2a; -static PyObject *__pyx_kp_u_3a3a; -static PyObject *__pyx_kp_u_4a4a; -static PyObject *__pyx_kp_u_5500; -static PyObject *__pyx_kp_u_5a5a; -static PyObject *__pyx_kp_u_6a6a; -static PyObject *__pyx_kp_u_7a7a; -static PyObject *__pyx_kp_u_8a8a; -static PyObject *__pyx_kp_u_9a9a; -static PyObject *__pyx_n_u_None; -static PyObject *__pyx_n_s_TLS_CERTIFICATE_STATUS_TYPE; -static PyObject *__pyx_n_s_TLS_EC_POINT_FORMATS; -static PyObject *__pyx_n_s_TLS_PSK_KEY_EXCHANGE_MODES; -static PyObject *__pyx_n_s_TLS_SIGNATURE_HASH_ALGORITHMS; -static PyObject *__pyx_n_s_TLS_SUPPORTED_GROUPS; -static PyObject *__pyx_n_s_TLS_VERSION; -static PyObject *__pyx_n_s_UnicodeDecodeError; -static PyObject *__pyx_kp_u_Unknown_Group_i; -static PyObject *__pyx_kp_u_Unknown_Version_s; -static PyObject *__pyx_kp_u__10; -static PyObject *__pyx_kp_u__11; -static PyObject *__pyx_kp_u__13; -static PyObject *__pyx_kp_u__14; -static PyObject *__pyx_kp_b__19; -static PyObject *__pyx_kp_u__19; -static PyObject *__pyx_kp_u__2; -static PyObject *__pyx_kp_b__22; -static PyObject *__pyx_kp_u__26; -static PyObject *__pyx_kp_u__27; -static PyObject *__pyx_n_s__28; -static PyObject *__pyx_kp_u__4; -static PyObject *__pyx_kp_u__5; -static PyObject *__pyx_kp_u__7; -static PyObject *__pyx_kp_u__8; -static PyObject *__pyx_n_u_aaaa; -static PyObject *__pyx_n_s_abspath; -static PyObject *__pyx_n_s_add; -static PyObject *__pyx_n_u_algorithms; -static PyObject *__pyx_n_s_alpn_data; -static PyObject *__pyx_n_s_alpn_len; -static PyObject *__pyx_n_s_alpn_offset; -static PyObject *__pyx_n_s_append; -static PyObject *__pyx_n_u_application_layer_protocol_negot; -static PyObject *__pyx_n_s_ast; -static PyObject *__pyx_n_u_baba; -static PyObject *__pyx_n_u_big; -static PyObject *__pyx_n_u_caca; -static PyObject *__pyx_n_u_certificate_status_type; -static PyObject *__pyx_n_u_client; -static PyObject *__pyx_n_s_cline_in_traceback; -static PyObject *__pyx_n_s_convert; -static PyObject *__pyx_n_s_cs; -static PyObject *__pyx_n_s_cs_2; -static PyObject *__pyx_n_s_cs_4; -static PyObject *__pyx_n_s_cs_l; -static PyObject *__pyx_n_s_cs_str; -static PyObject *__pyx_n_u_dada; -static PyObject *__pyx_n_s_data; -static PyObject *__pyx_n_s_data_len; -static PyObject *__pyx_n_u_date; -static PyObject *__pyx_n_s_dates; -static PyObject *__pyx_n_s_decode; -static PyObject *__pyx_n_s_degrease_ext_data; -static PyObject *__pyx_n_s_degrease_type_code; -static PyObject *__pyx_n_s_degreased_ext_value; -static PyObject *__pyx_n_s_dirname; -static PyObject *__pyx_n_s_e; -static PyObject *__pyx_n_u_eaea; -static PyObject *__pyx_n_s_ec_point_formats; -static PyObject *__pyx_n_u_ec_point_formats; -static PyObject *__pyx_n_u_ec_point_formats_length; -static PyObject *__pyx_n_s_eval_fp_str; -static PyObject *__pyx_n_s_eval_fp_str_general; -static PyObject *__pyx_n_s_ext; -static PyObject *__pyx_n_u_ext; -static PyObject *__pyx_n_s_ext_2; -static PyObject *__pyx_n_s_ext_data; -static PyObject *__pyx_n_s_ext_data_2; -static PyObject *__pyx_n_s_ext_l; -static PyObject *__pyx_n_s_ext_len; -static PyObject *__pyx_n_s_ext_length; -static PyObject *__pyx_n_s_ext_type; -static PyObject *__pyx_n_s_ext_type_2; -static PyObject *__pyx_n_s_ext_type_str_kind; -static PyObject *__pyx_n_s_ext_value; -static PyObject *__pyx_n_s_extract_server_name; -static PyObject *__pyx_n_s_exts; -static PyObject *__pyx_n_u_fafa; -static PyObject *__pyx_n_s_file; -static PyObject *__pyx_n_s_find_resource_path; -static PyObject *__pyx_n_s_fp; -static PyObject *__pyx_n_s_fp_ext; -static PyObject *__pyx_n_s_fp_str; -static PyObject *__pyx_n_s_from_bytes; -static PyObject *__pyx_n_s_fromhex; -static PyObject *__pyx_n_s_get_cs_from_str; -static PyObject *__pyx_n_s_get_ext_from_str; -static PyObject *__pyx_n_s_get_implementation_date; -static PyObject *__pyx_n_s_get_ngram; -static PyObject *__pyx_n_s_get_sequence; -static PyObject *__pyx_n_s_get_tls_params; -static PyObject *__pyx_n_s_get_version_from_str; -static PyObject *__pyx_n_u_group; -static PyObject *__pyx_n_s_hex; -static PyObject *__pyx_n_s_i; -static PyObject *__pyx_n_s_imp_date_cs_data; -static PyObject *__pyx_n_s_imp_date_cs_file; -static PyObject *__pyx_n_s_imp_date_ext_data; -static PyObject *__pyx_n_s_imp_date_ext_file; -static PyObject *__pyx_n_s_import; -static PyObject *__pyx_n_s_info; -static PyObject *__pyx_n_s_j; -static PyObject *__pyx_n_s_json; -static PyObject *__pyx_n_u_key_exchange; -static PyObject *__pyx_n_u_key_exchange_length; -static PyObject *__pyx_n_u_key_share; -static PyObject *__pyx_n_s_key_share_client; -static PyObject *__pyx_n_u_key_share_entries; -static PyObject *__pyx_n_u_key_share_length; -static PyObject *__pyx_n_s_l; -static PyObject *__pyx_n_s_l_2; -static PyObject *__pyx_n_s_length; -static PyObject *__pyx_n_s_line; -static PyObject *__pyx_n_s_literal_eval; -static PyObject *__pyx_n_s_loads; -static PyObject *__pyx_n_s_main; -static PyObject *__pyx_n_s_mode; -static PyObject *__pyx_n_u_name; -static PyObject *__pyx_n_s_name_2; -static PyObject *__pyx_n_s_new_str; -static PyObject *__pyx_n_s_ngram; -static PyObject *__pyx_n_s_offset; -static PyObject *__pyx_n_s_os; -static PyObject *__pyx_n_s_parse_application_layer_protocol; -static PyObject *__pyx_n_s_parse_extension; -static PyObject *__pyx_n_s_parse_extension_data; -static PyObject *__pyx_n_s_path; -static PyObject *__pyx_n_s_pmercury_utils_pmercury_utils; -static PyObject *__pyx_n_s_pmercury_utils_tls_constants; -static PyObject *__pyx_n_s_pmercury_utils_tls_utils; -static PyObject *__pyx_kp_s_pmercury_utils_tls_utils_pyx; -static PyObject *__pyx_n_s_popen; -static PyObject *__pyx_n_u_psk_key_exchange_mode; -static PyObject *__pyx_n_s_psk_key_exchange_modes; -static PyObject *__pyx_n_u_psk_key_exchange_modes; -static PyObject *__pyx_n_u_psk_key_exchange_modes_length; -static PyObject *__pyx_n_s_range; -static PyObject *__pyx_n_s_replace; -static PyObject *__pyx_n_u_request_extensions_length; -static PyObject *__pyx_kp_u_resources_implementation_date_cs; -static PyObject *__pyx_kp_u_resources_implementation_date_ex; -static PyObject *__pyx_n_u_responder_id_list_length; -static PyObject *__pyx_kp_u_s; -static PyObject *__pyx_n_s_s_2; -static PyObject *__pyx_n_s_seq; -static PyObject *__pyx_n_s_signature_algorithms; -static PyObject *__pyx_n_u_signature_algorithms; -static PyObject *__pyx_n_u_signature_hash_algorithms_length; -static PyObject *__pyx_n_s_sni_len; -static PyObject *__pyx_n_s_sort; -static PyObject *__pyx_n_s_split; -static PyObject *__pyx_n_s_status_request; -static PyObject *__pyx_n_u_status_request; -static PyObject *__pyx_n_s_supported_groups; -static PyObject *__pyx_n_u_supported_groups; -static PyObject *__pyx_n_u_supported_groups_list_length; -static PyObject *__pyx_n_s_supported_versions; -static PyObject *__pyx_n_u_supported_versions; -static PyObject *__pyx_n_u_supported_versions_list_length; -static PyObject *__pyx_n_s_supported_versions_server; -static PyObject *__pyx_n_s_sys; -static PyObject *__pyx_n_s_t; -static PyObject *__pyx_n_s_t_ext; -static PyObject *__pyx_n_s_test; -static PyObject *__pyx_n_s_tmp_alpn_len; -static PyObject *__pyx_n_s_tmp_data; -static PyObject *__pyx_n_s_tmp_ext; -static PyObject *__pyx_n_s_tmp_ext_type; -static PyObject *__pyx_n_s_tmp_ext_value; -static PyObject *__pyx_n_s_tmp_obj; -static PyObject *__pyx_n_s_union; -static PyObject *__pyx_kp_u_unknown_s; -static PyObject *__pyx_n_s_version; -static PyObject *__pyx_n_s_version_str; -static PyObject *__pyx_kp_u_zcat_s; -static PyObject *__pyx_pf_8pmercury_5utils_9tls_utils_extract_server_name(CYTHON_UNUSED PyObject *__pyx_self, PyObject *__pyx_v_data, unsigned int __pyx_v_offset, unsigned int __pyx_v_data_len); /* proto */ -static PyObject *__pyx_pf_8pmercury_5utils_9tls_utils_2eval_fp_str_general(CYTHON_UNUSED PyObject *__pyx_self, PyObject *__pyx_v_fp_str_); /* proto */ -static PyObject *__pyx_pf_8pmercury_5utils_9tls_utils_4eval_fp_str(CYTHON_UNUSED PyObject *__pyx_self, PyObject *__pyx_v_fp_str_); /* proto */ -static PyObject *__pyx_pf_8pmercury_5utils_9tls_utils_6get_version_from_str(CYTHON_UNUSED PyObject *__pyx_self, PyObject *__pyx_v_version_str_, PyObject *__pyx_v_convert); /* proto */ -static PyObject *__pyx_pf_8pmercury_5utils_9tls_utils_8get_cs_from_str(CYTHON_UNUSED PyObject *__pyx_self, PyObject *__pyx_v_cs_str_, PyObject *__pyx_v_convert); /* proto */ -static PyObject *__pyx_pf_8pmercury_5utils_9tls_utils_10get_ext_from_str(CYTHON_UNUSED PyObject *__pyx_self, PyObject *__pyx_v_exts_, PyObject *__pyx_v_convert, PyObject *__pyx_v_mode); /* proto */ -static PyObject *__pyx_pf_8pmercury_5utils_9tls_utils_12get_implementation_date(CYTHON_UNUSED PyObject *__pyx_self, PyObject *__pyx_v_cs_str_); /* proto */ -static PyObject *__pyx_pf_8pmercury_5utils_9tls_utils_14parse_extension_data(CYTHON_UNUSED PyObject *__pyx_self, PyObject *__pyx_v_ext_type, PyObject *__pyx_v_ext_data_, PyObject *__pyx_v_mode); /* proto */ -static PyObject *__pyx_pf_8pmercury_5utils_9tls_utils_16parse_extension(CYTHON_UNUSED PyObject *__pyx_self, PyObject *__pyx_v_data, unsigned int __pyx_v_offset); /* proto */ -static PyObject *__pyx_pf_8pmercury_5utils_9tls_utils_18degrease_type_code(CYTHON_UNUSED PyObject *__pyx_self, unsigned char *__pyx_v_data, unsigned int __pyx_v_offset); /* proto */ -static PyObject *__pyx_pf_8pmercury_5utils_9tls_utils_20degrease_ext_data(CYTHON_UNUSED PyObject *__pyx_self, unsigned char *__pyx_v_data, unsigned int __pyx_v_offset, PyObject *__pyx_v_ext_type, unsigned int __pyx_v_ext_length, PyObject *__pyx_v_ext_value); /* proto */ -static PyObject *__pyx_pf_8pmercury_5utils_9tls_utils_22supported_groups(CYTHON_UNUSED PyObject *__pyx_self, PyObject *__pyx_v_data, PyObject *__pyx_v_length); /* proto */ -static PyObject *__pyx_pf_8pmercury_5utils_9tls_utils_24supported_versions(CYTHON_UNUSED PyObject *__pyx_self, PyObject *__pyx_v_data, PyObject *__pyx_v_length); /* proto */ -static PyObject *__pyx_pf_8pmercury_5utils_9tls_utils_26supported_versions_server(CYTHON_UNUSED PyObject *__pyx_self, PyObject *__pyx_v_data, CYTHON_UNUSED PyObject *__pyx_v_length); /* proto */ -static PyObject *__pyx_pf_8pmercury_5utils_9tls_utils_28psk_key_exchange_modes(CYTHON_UNUSED PyObject *__pyx_self, PyObject *__pyx_v_data, CYTHON_UNUSED PyObject *__pyx_v_length); /* proto */ -static PyObject *__pyx_pf_8pmercury_5utils_9tls_utils_30key_share_client(CYTHON_UNUSED PyObject *__pyx_self, PyObject *__pyx_v_data, PyObject *__pyx_v_length); /* proto */ -static PyObject *__pyx_pf_8pmercury_5utils_9tls_utils_32ec_point_formats(CYTHON_UNUSED PyObject *__pyx_self, PyObject *__pyx_v_data, CYTHON_UNUSED PyObject *__pyx_v_length); /* proto */ -static PyObject *__pyx_pf_8pmercury_5utils_9tls_utils_34status_request(CYTHON_UNUSED PyObject *__pyx_self, PyObject *__pyx_v_data, CYTHON_UNUSED PyObject *__pyx_v_length); /* proto */ -static PyObject *__pyx_pf_8pmercury_5utils_9tls_utils_36signature_algorithms(CYTHON_UNUSED PyObject *__pyx_self, PyObject *__pyx_v_data, PyObject *__pyx_v_length); /* proto */ -static PyObject *__pyx_pf_8pmercury_5utils_9tls_utils_38parse_application_layer_protocol_negotiation(CYTHON_UNUSED PyObject *__pyx_self, PyObject *__pyx_v_data, PyObject *__pyx_v_length); /* proto */ -static PyObject *__pyx_pf_8pmercury_5utils_9tls_utils_40get_tls_params(CYTHON_UNUSED PyObject *__pyx_self, PyObject *__pyx_v_fp_); /* proto */ -static PyObject *__pyx_pf_8pmercury_5utils_9tls_utils_42get_sequence(CYTHON_UNUSED PyObject *__pyx_self, PyObject *__pyx_v_fp_); /* proto */ -static PyObject *__pyx_pf_8pmercury_5utils_9tls_utils_44get_ngram(CYTHON_UNUSED PyObject *__pyx_self, PyObject *__pyx_v_l, PyObject *__pyx_v_ngram); /* proto */ -static __Pyx_CachedCFunction __pyx_umethod_PyBytes_Type_hex = {0, &__pyx_n_s_hex, 0, 0, 0}; -static __Pyx_CachedCFunction __pyx_umethod_PySet_Type_union = {0, &__pyx_n_s_union, 0, 0, 0}; -static PyObject *__pyx_int_0; -static PyObject *__pyx_int_1; -static PyObject *__pyx_int_2; -static PyObject *__pyx_int_4; -static PyObject *__pyx_int_8; -static PyObject *__pyx_int_10; -static PyObject *__pyx_int_16; -static PyObject *__pyx_int_26; -static PyObject *__pyx_int_42; -static PyObject *__pyx_int_58; -static PyObject *__pyx_int_74; -static PyObject *__pyx_int_90; -static PyObject *__pyx_int_106; -static PyObject *__pyx_int_122; -static PyObject *__pyx_int_138; -static PyObject *__pyx_int_154; -static PyObject *__pyx_int_170; -static PyObject *__pyx_int_186; -static PyObject *__pyx_int_202; -static PyObject *__pyx_int_218; -static PyObject *__pyx_int_234; -static PyObject *__pyx_int_250; -static PyObject *__pyx_int_neg_1; -static PyObject *__pyx_tuple__3; -static PyObject *__pyx_tuple__6; -static PyObject *__pyx_tuple__9; -static PyObject *__pyx_slice__16; -static PyObject *__pyx_slice__17; -static PyObject *__pyx_slice__18; -static PyObject *__pyx_slice__20; -static PyObject *__pyx_slice__23; -static PyObject *__pyx_slice__24; -static PyObject *__pyx_slice__25; -static PyObject *__pyx_tuple__12; -static PyObject *__pyx_tuple__15; -static PyObject *__pyx_tuple__21; -static PyObject *__pyx_tuple__29; -static PyObject *__pyx_tuple__30; -static PyObject *__pyx_tuple__31; -static PyObject *__pyx_tuple__33; -static PyObject *__pyx_tuple__35; -static PyObject *__pyx_tuple__37; -static PyObject *__pyx_tuple__39; -static PyObject *__pyx_tuple__41; -static PyObject *__pyx_tuple__43; -static PyObject *__pyx_tuple__45; -static PyObject *__pyx_tuple__47; -static PyObject *__pyx_tuple__49; -static PyObject *__pyx_tuple__51; -static PyObject *__pyx_tuple__53; -static PyObject *__pyx_tuple__55; -static PyObject *__pyx_tuple__57; -static PyObject *__pyx_tuple__59; -static PyObject *__pyx_tuple__61; -static PyObject *__pyx_tuple__63; -static PyObject *__pyx_tuple__65; -static PyObject *__pyx_tuple__67; -static PyObject *__pyx_tuple__69; -static PyObject *__pyx_tuple__71; -static PyObject *__pyx_tuple__73; -static PyObject *__pyx_tuple__75; -static PyObject *__pyx_codeobj__32; -static PyObject *__pyx_codeobj__34; -static PyObject *__pyx_codeobj__36; -static PyObject *__pyx_codeobj__38; -static PyObject *__pyx_codeobj__40; -static PyObject *__pyx_codeobj__42; -static PyObject *__pyx_codeobj__44; -static PyObject *__pyx_codeobj__46; -static PyObject *__pyx_codeobj__48; -static PyObject *__pyx_codeobj__50; -static PyObject *__pyx_codeobj__52; -static PyObject *__pyx_codeobj__54; -static PyObject *__pyx_codeobj__56; -static PyObject *__pyx_codeobj__58; -static PyObject *__pyx_codeobj__60; -static PyObject *__pyx_codeobj__62; -static PyObject *__pyx_codeobj__64; -static PyObject *__pyx_codeobj__66; -static PyObject *__pyx_codeobj__68; -static PyObject *__pyx_codeobj__70; -static PyObject *__pyx_codeobj__72; -static PyObject *__pyx_codeobj__74; -static PyObject *__pyx_codeobj__76; -/* Late includes */ - -/* "pmercury/utils/tls_utils.pyx":53 - * - * - * def extract_server_name(bytes data, unsigned int offset, unsigned int data_len): # <<<<<<<<<<<<<< - * if data_len - offset < 7: - * return 'None' - */ - -/* Python wrapper */ -static PyObject *__pyx_pw_8pmercury_5utils_9tls_utils_1extract_server_name(PyObject *__pyx_self, PyObject *__pyx_args, PyObject *__pyx_kwds); /*proto*/ -static PyMethodDef __pyx_mdef_8pmercury_5utils_9tls_utils_1extract_server_name = {"extract_server_name", (PyCFunction)(void*)(PyCFunctionWithKeywords)__pyx_pw_8pmercury_5utils_9tls_utils_1extract_server_name, METH_VARARGS|METH_KEYWORDS, 0}; -static PyObject *__pyx_pw_8pmercury_5utils_9tls_utils_1extract_server_name(PyObject *__pyx_self, PyObject *__pyx_args, PyObject *__pyx_kwds) { - PyObject *__pyx_v_data = 0; - unsigned int __pyx_v_offset; - unsigned int __pyx_v_data_len; - PyObject *__pyx_r = 0; - __Pyx_RefNannyDeclarations - __Pyx_RefNannySetupContext("extract_server_name (wrapper)", 0); - { - static PyObject **__pyx_pyargnames[] = {&__pyx_n_s_data,&__pyx_n_s_offset,&__pyx_n_s_data_len,0}; - PyObject* values[3] = {0,0,0}; - if (unlikely(__pyx_kwds)) { - Py_ssize_t kw_args; - const Py_ssize_t pos_args = PyTuple_GET_SIZE(__pyx_args); - switch (pos_args) { - case 3: values[2] = PyTuple_GET_ITEM(__pyx_args, 2); - CYTHON_FALLTHROUGH; - case 2: values[1] = PyTuple_GET_ITEM(__pyx_args, 1); - CYTHON_FALLTHROUGH; - case 1: values[0] = PyTuple_GET_ITEM(__pyx_args, 0); - CYTHON_FALLTHROUGH; - case 0: break; - default: goto __pyx_L5_argtuple_error; - } - kw_args = PyDict_Size(__pyx_kwds); - switch (pos_args) { - case 0: - if (likely((values[0] = __Pyx_PyDict_GetItemStr(__pyx_kwds, __pyx_n_s_data)) != 0)) kw_args--; - else goto __pyx_L5_argtuple_error; - CYTHON_FALLTHROUGH; - case 1: - if (likely((values[1] = __Pyx_PyDict_GetItemStr(__pyx_kwds, __pyx_n_s_offset)) != 0)) kw_args--; - else { - __Pyx_RaiseArgtupleInvalid("extract_server_name", 1, 3, 3, 1); __PYX_ERR(0, 53, __pyx_L3_error) - } - CYTHON_FALLTHROUGH; - case 2: - if (likely((values[2] = __Pyx_PyDict_GetItemStr(__pyx_kwds, __pyx_n_s_data_len)) != 0)) kw_args--; - else { - __Pyx_RaiseArgtupleInvalid("extract_server_name", 1, 3, 3, 2); __PYX_ERR(0, 53, __pyx_L3_error) - } - } - if (unlikely(kw_args > 0)) { - if (unlikely(__Pyx_ParseOptionalKeywords(__pyx_kwds, __pyx_pyargnames, 0, values, pos_args, "extract_server_name") < 0)) __PYX_ERR(0, 53, __pyx_L3_error) - } - } else if (PyTuple_GET_SIZE(__pyx_args) != 3) { - goto __pyx_L5_argtuple_error; - } else { - values[0] = PyTuple_GET_ITEM(__pyx_args, 0); - values[1] = PyTuple_GET_ITEM(__pyx_args, 1); - values[2] = PyTuple_GET_ITEM(__pyx_args, 2); - } - __pyx_v_data = ((PyObject*)values[0]); - __pyx_v_offset = __Pyx_PyInt_As_unsigned_int(values[1]); if (unlikely((__pyx_v_offset == (unsigned int)-1) && PyErr_Occurred())) __PYX_ERR(0, 53, __pyx_L3_error) - __pyx_v_data_len = __Pyx_PyInt_As_unsigned_int(values[2]); if (unlikely((__pyx_v_data_len == (unsigned int)-1) && PyErr_Occurred())) __PYX_ERR(0, 53, __pyx_L3_error) - } - goto __pyx_L4_argument_unpacking_done; - __pyx_L5_argtuple_error:; - __Pyx_RaiseArgtupleInvalid("extract_server_name", 1, 3, 3, PyTuple_GET_SIZE(__pyx_args)); __PYX_ERR(0, 53, __pyx_L3_error) - __pyx_L3_error:; - __Pyx_AddTraceback("pmercury.utils.tls_utils.extract_server_name", __pyx_clineno, __pyx_lineno, __pyx_filename); - __Pyx_RefNannyFinishContext(); - return NULL; - __pyx_L4_argument_unpacking_done:; - if (unlikely(!__Pyx_ArgTypeTest(((PyObject *)__pyx_v_data), (&PyBytes_Type), 1, "data", 1))) __PYX_ERR(0, 53, __pyx_L1_error) - __pyx_r = __pyx_pf_8pmercury_5utils_9tls_utils_extract_server_name(__pyx_self, __pyx_v_data, __pyx_v_offset, __pyx_v_data_len); - - /* function exit code */ - goto __pyx_L0; - __pyx_L1_error:; - __pyx_r = NULL; - __pyx_L0:; - __Pyx_RefNannyFinishContext(); - return __pyx_r; -} - -static PyObject *__pyx_pf_8pmercury_5utils_9tls_utils_extract_server_name(CYTHON_UNUSED PyObject *__pyx_self, PyObject *__pyx_v_data, unsigned int __pyx_v_offset, unsigned int __pyx_v_data_len) { - PyObject *__pyx_v_sni_len = NULL; - PyObject *__pyx_r = NULL; - __Pyx_RefNannyDeclarations - int __pyx_t_1; - PyObject *__pyx_t_2 = NULL; - PyObject *__pyx_t_3 = NULL; - PyObject *__pyx_t_4 = NULL; - PyObject *__pyx_t_5 = NULL; - int __pyx_t_6; - PyObject *__pyx_t_7 = NULL; - PyObject *__pyx_t_8 = NULL; - PyObject *__pyx_t_9 = NULL; - PyObject *__pyx_t_10 = NULL; - Py_ssize_t __pyx_t_11; - Py_ssize_t __pyx_t_12; - PyObject *__pyx_t_13 = NULL; - __Pyx_RefNannySetupContext("extract_server_name", 0); - - /* "pmercury/utils/tls_utils.pyx":54 - * - * def extract_server_name(bytes data, unsigned int offset, unsigned int data_len): - * if data_len - offset < 7: # <<<<<<<<<<<<<< - * return 'None' - * sni_len = int.from_bytes(data[offset+5:offset+7], 'big') - */ - __pyx_t_1 = (((__pyx_v_data_len - __pyx_v_offset) < 7) != 0); - if (__pyx_t_1) { - - /* "pmercury/utils/tls_utils.pyx":55 - * def extract_server_name(bytes data, unsigned int offset, unsigned int data_len): - * if data_len - offset < 7: - * return 'None' # <<<<<<<<<<<<<< - * sni_len = int.from_bytes(data[offset+5:offset+7], 'big') - * try: - */ - __Pyx_XDECREF(__pyx_r); - __Pyx_INCREF(__pyx_n_u_None); - __pyx_r = __pyx_n_u_None; - goto __pyx_L0; - - /* "pmercury/utils/tls_utils.pyx":54 - * - * def extract_server_name(bytes data, unsigned int offset, unsigned int data_len): - * if data_len - offset < 7: # <<<<<<<<<<<<<< - * return 'None' - * sni_len = int.from_bytes(data[offset+5:offset+7], 'big') - */ - } - - /* "pmercury/utils/tls_utils.pyx":56 - * if data_len - offset < 7: - * return 'None' - * sni_len = int.from_bytes(data[offset+5:offset+7], 'big') # <<<<<<<<<<<<<< - * try: - * return data[offset+7:offset+7+sni_len].decode() - */ - __pyx_t_3 = __Pyx_PyObject_GetAttrStr(((PyObject *)(&PyInt_Type)), __pyx_n_s_from_bytes); if (unlikely(!__pyx_t_3)) __PYX_ERR(0, 56, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_3); - if (unlikely(__pyx_v_data == Py_None)) { - PyErr_SetString(PyExc_TypeError, "'NoneType' object is not subscriptable"); - __PYX_ERR(0, 56, __pyx_L1_error) - } - __pyx_t_4 = PySequence_GetSlice(__pyx_v_data, (__pyx_v_offset + 5), (__pyx_v_offset + 7)); if (unlikely(!__pyx_t_4)) __PYX_ERR(0, 56, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_4); - __pyx_t_5 = NULL; - __pyx_t_6 = 0; - if (CYTHON_UNPACK_METHODS && likely(PyMethod_Check(__pyx_t_3))) { - __pyx_t_5 = PyMethod_GET_SELF(__pyx_t_3); - if (likely(__pyx_t_5)) { - PyObject* function = PyMethod_GET_FUNCTION(__pyx_t_3); - __Pyx_INCREF(__pyx_t_5); - __Pyx_INCREF(function); - __Pyx_DECREF_SET(__pyx_t_3, function); - __pyx_t_6 = 1; - } - } - #if CYTHON_FAST_PYCALL - if (PyFunction_Check(__pyx_t_3)) { - PyObject *__pyx_temp[3] = {__pyx_t_5, __pyx_t_4, __pyx_n_u_big}; - __pyx_t_2 = __Pyx_PyFunction_FastCall(__pyx_t_3, __pyx_temp+1-__pyx_t_6, 2+__pyx_t_6); if (unlikely(!__pyx_t_2)) __PYX_ERR(0, 56, __pyx_L1_error) - __Pyx_XDECREF(__pyx_t_5); __pyx_t_5 = 0; - __Pyx_GOTREF(__pyx_t_2); - __Pyx_DECREF(__pyx_t_4); __pyx_t_4 = 0; - } else - #endif - #if CYTHON_FAST_PYCCALL - if (__Pyx_PyFastCFunction_Check(__pyx_t_3)) { - PyObject *__pyx_temp[3] = {__pyx_t_5, __pyx_t_4, __pyx_n_u_big}; - __pyx_t_2 = __Pyx_PyCFunction_FastCall(__pyx_t_3, __pyx_temp+1-__pyx_t_6, 2+__pyx_t_6); if (unlikely(!__pyx_t_2)) __PYX_ERR(0, 56, __pyx_L1_error) - __Pyx_XDECREF(__pyx_t_5); __pyx_t_5 = 0; - __Pyx_GOTREF(__pyx_t_2); - __Pyx_DECREF(__pyx_t_4); __pyx_t_4 = 0; - } else - #endif - { - __pyx_t_7 = PyTuple_New(2+__pyx_t_6); if (unlikely(!__pyx_t_7)) __PYX_ERR(0, 56, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_7); - if (__pyx_t_5) { - __Pyx_GIVEREF(__pyx_t_5); PyTuple_SET_ITEM(__pyx_t_7, 0, __pyx_t_5); __pyx_t_5 = NULL; - } - __Pyx_GIVEREF(__pyx_t_4); - PyTuple_SET_ITEM(__pyx_t_7, 0+__pyx_t_6, __pyx_t_4); - __Pyx_INCREF(__pyx_n_u_big); - __Pyx_GIVEREF(__pyx_n_u_big); - PyTuple_SET_ITEM(__pyx_t_7, 1+__pyx_t_6, __pyx_n_u_big); - __pyx_t_4 = 0; - __pyx_t_2 = __Pyx_PyObject_Call(__pyx_t_3, __pyx_t_7, NULL); if (unlikely(!__pyx_t_2)) __PYX_ERR(0, 56, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_2); - __Pyx_DECREF(__pyx_t_7); __pyx_t_7 = 0; - } - __Pyx_DECREF(__pyx_t_3); __pyx_t_3 = 0; - __pyx_v_sni_len = __pyx_t_2; - __pyx_t_2 = 0; - - /* "pmercury/utils/tls_utils.pyx":57 - * return 'None' - * sni_len = int.from_bytes(data[offset+5:offset+7], 'big') - * try: # <<<<<<<<<<<<<< - * return data[offset+7:offset+7+sni_len].decode() - * except UnicodeDecodeError: - */ - { - __Pyx_PyThreadState_declare - __Pyx_PyThreadState_assign - __Pyx_ExceptionSave(&__pyx_t_8, &__pyx_t_9, &__pyx_t_10); - __Pyx_XGOTREF(__pyx_t_8); - __Pyx_XGOTREF(__pyx_t_9); - __Pyx_XGOTREF(__pyx_t_10); - /*try:*/ { - - /* "pmercury/utils/tls_utils.pyx":58 - * sni_len = int.from_bytes(data[offset+5:offset+7], 'big') - * try: - * return data[offset+7:offset+7+sni_len].decode() # <<<<<<<<<<<<<< - * except UnicodeDecodeError: - * return data[offset+7:offset+7+sni_len].hex() - */ - __Pyx_XDECREF(__pyx_r); - if (unlikely(__pyx_v_data == Py_None)) { - PyErr_SetString(PyExc_TypeError, "'NoneType' object is not subscriptable"); - __PYX_ERR(0, 58, __pyx_L4_error) - } - __pyx_t_2 = __Pyx_PyInt_From_long((__pyx_v_offset + 7)); if (unlikely(!__pyx_t_2)) __PYX_ERR(0, 58, __pyx_L4_error) - __Pyx_GOTREF(__pyx_t_2); - __pyx_t_3 = PyNumber_Add(__pyx_t_2, __pyx_v_sni_len); if (unlikely(!__pyx_t_3)) __PYX_ERR(0, 58, __pyx_L4_error) - __Pyx_GOTREF(__pyx_t_3); - __Pyx_DECREF(__pyx_t_2); __pyx_t_2 = 0; - __pyx_t_1 = (__pyx_t_3 == Py_None); - if (__pyx_t_1) { - __pyx_t_11 = PY_SSIZE_T_MAX; - } else { - __pyx_t_12 = __Pyx_PyIndex_AsSsize_t(__pyx_t_3); if (unlikely((__pyx_t_12 == (Py_ssize_t)-1) && PyErr_Occurred())) __PYX_ERR(0, 58, __pyx_L4_error) - __pyx_t_11 = __pyx_t_12; - } - __Pyx_DECREF(__pyx_t_3); __pyx_t_3 = 0; - __pyx_t_3 = __Pyx_decode_bytes(__pyx_v_data, (__pyx_v_offset + 7), __pyx_t_11, NULL, NULL, NULL); if (unlikely(!__pyx_t_3)) __PYX_ERR(0, 58, __pyx_L4_error) - __Pyx_GOTREF(__pyx_t_3); - __pyx_r = __pyx_t_3; - __pyx_t_3 = 0; - goto __pyx_L8_try_return; - - /* "pmercury/utils/tls_utils.pyx":57 - * return 'None' - * sni_len = int.from_bytes(data[offset+5:offset+7], 'big') - * try: # <<<<<<<<<<<<<< - * return data[offset+7:offset+7+sni_len].decode() - * except UnicodeDecodeError: - */ - } - __pyx_L4_error:; - __Pyx_XDECREF(__pyx_t_2); __pyx_t_2 = 0; - __Pyx_XDECREF(__pyx_t_3); __pyx_t_3 = 0; - __Pyx_XDECREF(__pyx_t_4); __pyx_t_4 = 0; - __Pyx_XDECREF(__pyx_t_5); __pyx_t_5 = 0; - __Pyx_XDECREF(__pyx_t_7); __pyx_t_7 = 0; - - /* "pmercury/utils/tls_utils.pyx":59 - * try: - * return data[offset+7:offset+7+sni_len].decode() - * except UnicodeDecodeError: # <<<<<<<<<<<<<< - * return data[offset+7:offset+7+sni_len].hex() - * - */ - __pyx_t_6 = __Pyx_PyErr_ExceptionMatches(__pyx_builtin_UnicodeDecodeError); - if (__pyx_t_6) { - __Pyx_AddTraceback("pmercury.utils.tls_utils.extract_server_name", __pyx_clineno, __pyx_lineno, __pyx_filename); - if (__Pyx_GetException(&__pyx_t_3, &__pyx_t_2, &__pyx_t_7) < 0) __PYX_ERR(0, 59, __pyx_L6_except_error) - __Pyx_GOTREF(__pyx_t_3); - __Pyx_GOTREF(__pyx_t_2); - __Pyx_GOTREF(__pyx_t_7); - - /* "pmercury/utils/tls_utils.pyx":60 - * return data[offset+7:offset+7+sni_len].decode() - * except UnicodeDecodeError: - * return data[offset+7:offset+7+sni_len].hex() # <<<<<<<<<<<<<< - * - * - */ - __Pyx_XDECREF(__pyx_r); - if (unlikely(__pyx_v_data == Py_None)) { - PyErr_SetString(PyExc_TypeError, "'NoneType' object is not subscriptable"); - __PYX_ERR(0, 60, __pyx_L6_except_error) - } - __pyx_t_5 = __Pyx_PyInt_From_long((__pyx_v_offset + 7)); if (unlikely(!__pyx_t_5)) __PYX_ERR(0, 60, __pyx_L6_except_error) - __Pyx_GOTREF(__pyx_t_5); - __pyx_t_13 = PyNumber_Add(__pyx_t_5, __pyx_v_sni_len); if (unlikely(!__pyx_t_13)) __PYX_ERR(0, 60, __pyx_L6_except_error) - __Pyx_GOTREF(__pyx_t_13); - __Pyx_DECREF(__pyx_t_5); __pyx_t_5 = 0; - __pyx_t_1 = (__pyx_t_13 == Py_None); - if (__pyx_t_1) { - __pyx_t_11 = PY_SSIZE_T_MAX; - } else { - __pyx_t_12 = __Pyx_PyIndex_AsSsize_t(__pyx_t_13); if (unlikely((__pyx_t_12 == (Py_ssize_t)-1) && PyErr_Occurred())) __PYX_ERR(0, 60, __pyx_L6_except_error) - __pyx_t_11 = __pyx_t_12; - } - __Pyx_DECREF(__pyx_t_13); __pyx_t_13 = 0; - __pyx_t_13 = PySequence_GetSlice(__pyx_v_data, (__pyx_v_offset + 7), __pyx_t_11); if (unlikely(!__pyx_t_13)) __PYX_ERR(0, 60, __pyx_L6_except_error) - __Pyx_GOTREF(__pyx_t_13); - __pyx_t_5 = __Pyx_PyObject_GetAttrStr(__pyx_t_13, __pyx_n_s_hex); if (unlikely(!__pyx_t_5)) __PYX_ERR(0, 60, __pyx_L6_except_error) - __Pyx_GOTREF(__pyx_t_5); - __Pyx_DECREF(__pyx_t_13); __pyx_t_13 = 0; - __pyx_t_13 = NULL; - if (CYTHON_UNPACK_METHODS && likely(PyMethod_Check(__pyx_t_5))) { - __pyx_t_13 = PyMethod_GET_SELF(__pyx_t_5); - if (likely(__pyx_t_13)) { - PyObject* function = PyMethod_GET_FUNCTION(__pyx_t_5); - __Pyx_INCREF(__pyx_t_13); - __Pyx_INCREF(function); - __Pyx_DECREF_SET(__pyx_t_5, function); - } - } - __pyx_t_4 = (__pyx_t_13) ? __Pyx_PyObject_CallOneArg(__pyx_t_5, __pyx_t_13) : __Pyx_PyObject_CallNoArg(__pyx_t_5); - __Pyx_XDECREF(__pyx_t_13); __pyx_t_13 = 0; - if (unlikely(!__pyx_t_4)) __PYX_ERR(0, 60, __pyx_L6_except_error) - __Pyx_GOTREF(__pyx_t_4); - __Pyx_DECREF(__pyx_t_5); __pyx_t_5 = 0; - __pyx_r = __pyx_t_4; - __pyx_t_4 = 0; - __Pyx_DECREF(__pyx_t_2); __pyx_t_2 = 0; - __Pyx_DECREF(__pyx_t_3); __pyx_t_3 = 0; - __Pyx_DECREF(__pyx_t_7); __pyx_t_7 = 0; - goto __pyx_L7_except_return; - } - goto __pyx_L6_except_error; - __pyx_L6_except_error:; - - /* "pmercury/utils/tls_utils.pyx":57 - * return 'None' - * sni_len = int.from_bytes(data[offset+5:offset+7], 'big') - * try: # <<<<<<<<<<<<<< - * return data[offset+7:offset+7+sni_len].decode() - * except UnicodeDecodeError: - */ - __Pyx_XGIVEREF(__pyx_t_8); - __Pyx_XGIVEREF(__pyx_t_9); - __Pyx_XGIVEREF(__pyx_t_10); - __Pyx_ExceptionReset(__pyx_t_8, __pyx_t_9, __pyx_t_10); - goto __pyx_L1_error; - __pyx_L8_try_return:; - __Pyx_XGIVEREF(__pyx_t_8); - __Pyx_XGIVEREF(__pyx_t_9); - __Pyx_XGIVEREF(__pyx_t_10); - __Pyx_ExceptionReset(__pyx_t_8, __pyx_t_9, __pyx_t_10); - goto __pyx_L0; - __pyx_L7_except_return:; - __Pyx_XGIVEREF(__pyx_t_8); - __Pyx_XGIVEREF(__pyx_t_9); - __Pyx_XGIVEREF(__pyx_t_10); - __Pyx_ExceptionReset(__pyx_t_8, __pyx_t_9, __pyx_t_10); - goto __pyx_L0; - } - - /* "pmercury/utils/tls_utils.pyx":53 - * - * - * def extract_server_name(bytes data, unsigned int offset, unsigned int data_len): # <<<<<<<<<<<<<< - * if data_len - offset < 7: - * return 'None' - */ - - /* function exit code */ - __pyx_L1_error:; - __Pyx_XDECREF(__pyx_t_2); - __Pyx_XDECREF(__pyx_t_3); - __Pyx_XDECREF(__pyx_t_4); - __Pyx_XDECREF(__pyx_t_5); - __Pyx_XDECREF(__pyx_t_7); - __Pyx_XDECREF(__pyx_t_13); - __Pyx_AddTraceback("pmercury.utils.tls_utils.extract_server_name", __pyx_clineno, __pyx_lineno, __pyx_filename); - __pyx_r = NULL; - __pyx_L0:; - __Pyx_XDECREF(__pyx_v_sni_len); - __Pyx_XGIVEREF(__pyx_r); - __Pyx_RefNannyFinishContext(); - return __pyx_r; -} - -/* "pmercury/utils/tls_utils.pyx":63 - * - * - * def eval_fp_str_general(fp_str_): # <<<<<<<<<<<<<< - * fp_str_ = '(%s)' % fp_str_ - * fp_str_ = fp_str_.replace('(','["').replace(')','"]').replace('][','],[') - */ - -/* Python wrapper */ -static PyObject *__pyx_pw_8pmercury_5utils_9tls_utils_3eval_fp_str_general(PyObject *__pyx_self, PyObject *__pyx_v_fp_str_); /*proto*/ -static PyMethodDef __pyx_mdef_8pmercury_5utils_9tls_utils_3eval_fp_str_general = {"eval_fp_str_general", (PyCFunction)__pyx_pw_8pmercury_5utils_9tls_utils_3eval_fp_str_general, METH_O, 0}; -static PyObject *__pyx_pw_8pmercury_5utils_9tls_utils_3eval_fp_str_general(PyObject *__pyx_self, PyObject *__pyx_v_fp_str_) { - PyObject *__pyx_r = 0; - __Pyx_RefNannyDeclarations - __Pyx_RefNannySetupContext("eval_fp_str_general (wrapper)", 0); - __pyx_r = __pyx_pf_8pmercury_5utils_9tls_utils_2eval_fp_str_general(__pyx_self, ((PyObject *)__pyx_v_fp_str_)); - - /* function exit code */ - __Pyx_RefNannyFinishContext(); - return __pyx_r; -} - -static PyObject *__pyx_pf_8pmercury_5utils_9tls_utils_2eval_fp_str_general(CYTHON_UNUSED PyObject *__pyx_self, PyObject *__pyx_v_fp_str_) { - PyObject *__pyx_v_new_str_ = NULL; - PyObject *__pyx_r = NULL; - __Pyx_RefNannyDeclarations - PyObject *__pyx_t_1 = NULL; - PyObject *__pyx_t_2 = NULL; - int __pyx_t_3; - PyObject *__pyx_t_4 = NULL; - __Pyx_RefNannySetupContext("eval_fp_str_general", 0); - __Pyx_INCREF(__pyx_v_fp_str_); - - /* "pmercury/utils/tls_utils.pyx":64 - * - * def eval_fp_str_general(fp_str_): - * fp_str_ = '(%s)' % fp_str_ # <<<<<<<<<<<<<< - * fp_str_ = fp_str_.replace('(','["').replace(')','"]').replace('][','],[') - * new_str_ = fp_str_.replace('["[','[[').replace(']"]',']]') - */ - __pyx_t_1 = __Pyx_PyUnicode_FormatSafe(__pyx_kp_u_s, __pyx_v_fp_str_); if (unlikely(!__pyx_t_1)) __PYX_ERR(0, 64, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_1); - __Pyx_DECREF_SET(__pyx_v_fp_str_, __pyx_t_1); - __pyx_t_1 = 0; - - /* "pmercury/utils/tls_utils.pyx":65 - * def eval_fp_str_general(fp_str_): - * fp_str_ = '(%s)' % fp_str_ - * fp_str_ = fp_str_.replace('(','["').replace(')','"]').replace('][','],[') # <<<<<<<<<<<<<< - * new_str_ = fp_str_.replace('["[','[[').replace(']"]',']]') - * while new_str_ != fp_str_: - */ - __pyx_t_1 = __Pyx_PyObject_GetAttrStr(__pyx_v_fp_str_, __pyx_n_s_replace); if (unlikely(!__pyx_t_1)) __PYX_ERR(0, 65, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_1); - __pyx_t_2 = __Pyx_PyObject_Call(__pyx_t_1, __pyx_tuple__3, NULL); if (unlikely(!__pyx_t_2)) __PYX_ERR(0, 65, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_2); - __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0; - __pyx_t_1 = __Pyx_PyObject_GetAttrStr(__pyx_t_2, __pyx_n_s_replace); if (unlikely(!__pyx_t_1)) __PYX_ERR(0, 65, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_1); - __Pyx_DECREF(__pyx_t_2); __pyx_t_2 = 0; - __pyx_t_2 = __Pyx_PyObject_Call(__pyx_t_1, __pyx_tuple__6, NULL); if (unlikely(!__pyx_t_2)) __PYX_ERR(0, 65, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_2); - __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0; - __pyx_t_1 = __Pyx_PyObject_GetAttrStr(__pyx_t_2, __pyx_n_s_replace); if (unlikely(!__pyx_t_1)) __PYX_ERR(0, 65, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_1); - __Pyx_DECREF(__pyx_t_2); __pyx_t_2 = 0; - __pyx_t_2 = __Pyx_PyObject_Call(__pyx_t_1, __pyx_tuple__9, NULL); if (unlikely(!__pyx_t_2)) __PYX_ERR(0, 65, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_2); - __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0; - __Pyx_DECREF_SET(__pyx_v_fp_str_, __pyx_t_2); - __pyx_t_2 = 0; - - /* "pmercury/utils/tls_utils.pyx":66 - * fp_str_ = '(%s)' % fp_str_ - * fp_str_ = fp_str_.replace('(','["').replace(')','"]').replace('][','],[') - * new_str_ = fp_str_.replace('["[','[[').replace(']"]',']]') # <<<<<<<<<<<<<< - * while new_str_ != fp_str_: - * fp_str_ = new_str_ - */ - __pyx_t_2 = __Pyx_PyObject_GetAttrStr(__pyx_v_fp_str_, __pyx_n_s_replace); if (unlikely(!__pyx_t_2)) __PYX_ERR(0, 66, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_2); - __pyx_t_1 = __Pyx_PyObject_Call(__pyx_t_2, __pyx_tuple__12, NULL); if (unlikely(!__pyx_t_1)) __PYX_ERR(0, 66, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_1); - __Pyx_DECREF(__pyx_t_2); __pyx_t_2 = 0; - __pyx_t_2 = __Pyx_PyObject_GetAttrStr(__pyx_t_1, __pyx_n_s_replace); if (unlikely(!__pyx_t_2)) __PYX_ERR(0, 66, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_2); - __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0; - __pyx_t_1 = __Pyx_PyObject_Call(__pyx_t_2, __pyx_tuple__15, NULL); if (unlikely(!__pyx_t_1)) __PYX_ERR(0, 66, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_1); - __Pyx_DECREF(__pyx_t_2); __pyx_t_2 = 0; - __pyx_v_new_str_ = __pyx_t_1; - __pyx_t_1 = 0; - - /* "pmercury/utils/tls_utils.pyx":67 - * fp_str_ = fp_str_.replace('(','["').replace(')','"]').replace('][','],[') - * new_str_ = fp_str_.replace('["[','[[').replace(']"]',']]') - * while new_str_ != fp_str_: # <<<<<<<<<<<<<< - * fp_str_ = new_str_ - * new_str_ = fp_str_.replace('["[','[[').replace(']"]',']]') - */ - while (1) { - __pyx_t_1 = PyObject_RichCompare(__pyx_v_new_str_, __pyx_v_fp_str_, Py_NE); __Pyx_XGOTREF(__pyx_t_1); if (unlikely(!__pyx_t_1)) __PYX_ERR(0, 67, __pyx_L1_error) - __pyx_t_3 = __Pyx_PyObject_IsTrue(__pyx_t_1); if (unlikely(__pyx_t_3 < 0)) __PYX_ERR(0, 67, __pyx_L1_error) - __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0; - if (!__pyx_t_3) break; - - /* "pmercury/utils/tls_utils.pyx":68 - * new_str_ = fp_str_.replace('["[','[[').replace(']"]',']]') - * while new_str_ != fp_str_: - * fp_str_ = new_str_ # <<<<<<<<<<<<<< - * new_str_ = fp_str_.replace('["[','[[').replace(']"]',']]') - * return ast.literal_eval(fp_str_) - */ - __Pyx_INCREF(__pyx_v_new_str_); - __Pyx_DECREF_SET(__pyx_v_fp_str_, __pyx_v_new_str_); - - /* "pmercury/utils/tls_utils.pyx":69 - * while new_str_ != fp_str_: - * fp_str_ = new_str_ - * new_str_ = fp_str_.replace('["[','[[').replace(']"]',']]') # <<<<<<<<<<<<<< - * return ast.literal_eval(fp_str_) - * - */ - __pyx_t_1 = __Pyx_PyObject_GetAttrStr(__pyx_v_fp_str_, __pyx_n_s_replace); if (unlikely(!__pyx_t_1)) __PYX_ERR(0, 69, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_1); - __pyx_t_2 = __Pyx_PyObject_Call(__pyx_t_1, __pyx_tuple__12, NULL); if (unlikely(!__pyx_t_2)) __PYX_ERR(0, 69, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_2); - __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0; - __pyx_t_1 = __Pyx_PyObject_GetAttrStr(__pyx_t_2, __pyx_n_s_replace); if (unlikely(!__pyx_t_1)) __PYX_ERR(0, 69, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_1); - __Pyx_DECREF(__pyx_t_2); __pyx_t_2 = 0; - __pyx_t_2 = __Pyx_PyObject_Call(__pyx_t_1, __pyx_tuple__15, NULL); if (unlikely(!__pyx_t_2)) __PYX_ERR(0, 69, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_2); - __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0; - __Pyx_DECREF_SET(__pyx_v_new_str_, __pyx_t_2); - __pyx_t_2 = 0; - } - - /* "pmercury/utils/tls_utils.pyx":70 - * fp_str_ = new_str_ - * new_str_ = fp_str_.replace('["[','[[').replace(']"]',']]') - * return ast.literal_eval(fp_str_) # <<<<<<<<<<<<<< - * - * - */ - __Pyx_XDECREF(__pyx_r); - __Pyx_GetModuleGlobalName(__pyx_t_1, __pyx_n_s_ast); if (unlikely(!__pyx_t_1)) __PYX_ERR(0, 70, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_1); - __pyx_t_4 = __Pyx_PyObject_GetAttrStr(__pyx_t_1, __pyx_n_s_literal_eval); if (unlikely(!__pyx_t_4)) __PYX_ERR(0, 70, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_4); - __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0; - __pyx_t_1 = NULL; - if (CYTHON_UNPACK_METHODS && unlikely(PyMethod_Check(__pyx_t_4))) { - __pyx_t_1 = PyMethod_GET_SELF(__pyx_t_4); - if (likely(__pyx_t_1)) { - PyObject* function = PyMethod_GET_FUNCTION(__pyx_t_4); - __Pyx_INCREF(__pyx_t_1); - __Pyx_INCREF(function); - __Pyx_DECREF_SET(__pyx_t_4, function); - } - } - __pyx_t_2 = (__pyx_t_1) ? __Pyx_PyObject_Call2Args(__pyx_t_4, __pyx_t_1, __pyx_v_fp_str_) : __Pyx_PyObject_CallOneArg(__pyx_t_4, __pyx_v_fp_str_); - __Pyx_XDECREF(__pyx_t_1); __pyx_t_1 = 0; - if (unlikely(!__pyx_t_2)) __PYX_ERR(0, 70, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_2); - __Pyx_DECREF(__pyx_t_4); __pyx_t_4 = 0; - __pyx_r = __pyx_t_2; - __pyx_t_2 = 0; - goto __pyx_L0; - - /* "pmercury/utils/tls_utils.pyx":63 - * - * - * def eval_fp_str_general(fp_str_): # <<<<<<<<<<<<<< - * fp_str_ = '(%s)' % fp_str_ - * fp_str_ = fp_str_.replace('(','["').replace(')','"]').replace('][','],[') - */ - - /* function exit code */ - __pyx_L1_error:; - __Pyx_XDECREF(__pyx_t_1); - __Pyx_XDECREF(__pyx_t_2); - __Pyx_XDECREF(__pyx_t_4); - __Pyx_AddTraceback("pmercury.utils.tls_utils.eval_fp_str_general", __pyx_clineno, __pyx_lineno, __pyx_filename); - __pyx_r = NULL; - __pyx_L0:; - __Pyx_XDECREF(__pyx_v_new_str_); - __Pyx_XDECREF(__pyx_v_fp_str_); - __Pyx_XGIVEREF(__pyx_r); - __Pyx_RefNannyFinishContext(); - return __pyx_r; -} - -/* "pmercury/utils/tls_utils.pyx":73 - * - * - * def eval_fp_str(fp_str_): # <<<<<<<<<<<<<< - * fp_str_ = fp_str_ - * t_ = fp_str_.split(')') - */ - -/* Python wrapper */ -static PyObject *__pyx_pw_8pmercury_5utils_9tls_utils_5eval_fp_str(PyObject *__pyx_self, PyObject *__pyx_v_fp_str_); /*proto*/ -static PyMethodDef __pyx_mdef_8pmercury_5utils_9tls_utils_5eval_fp_str = {"eval_fp_str", (PyCFunction)__pyx_pw_8pmercury_5utils_9tls_utils_5eval_fp_str, METH_O, 0}; -static PyObject *__pyx_pw_8pmercury_5utils_9tls_utils_5eval_fp_str(PyObject *__pyx_self, PyObject *__pyx_v_fp_str_) { - PyObject *__pyx_r = 0; - __Pyx_RefNannyDeclarations - __Pyx_RefNannySetupContext("eval_fp_str (wrapper)", 0); - __pyx_r = __pyx_pf_8pmercury_5utils_9tls_utils_4eval_fp_str(__pyx_self, ((PyObject *)__pyx_v_fp_str_)); - - /* function exit code */ - __Pyx_RefNannyFinishContext(); - return __pyx_r; -} - -static PyObject *__pyx_pf_8pmercury_5utils_9tls_utils_4eval_fp_str(CYTHON_UNUSED PyObject *__pyx_self, PyObject *__pyx_v_fp_str_) { - PyObject *__pyx_v_t_ = NULL; - PyObject *__pyx_v_version = NULL; - PyObject *__pyx_v_cs = NULL; - PyObject *__pyx_v_tmp_ext = NULL; - PyObject *__pyx_v_ext = NULL; - PyObject *__pyx_7genexpr__pyx_v_e_ = NULL; - PyObject *__pyx_r = NULL; - __Pyx_RefNannyDeclarations - PyObject *__pyx_t_1 = NULL; - PyObject *__pyx_t_2 = NULL; - PyObject *__pyx_t_3 = NULL; - Py_ssize_t __pyx_t_4; - PyObject *(*__pyx_t_5)(PyObject *); - __Pyx_RefNannySetupContext("eval_fp_str", 0); - __Pyx_INCREF(__pyx_v_fp_str_); - - /* "pmercury/utils/tls_utils.pyx":74 - * - * def eval_fp_str(fp_str_): - * fp_str_ = fp_str_ # <<<<<<<<<<<<<< - * t_ = fp_str_.split(')') - * version = t_[0][1:] - */ - __Pyx_INCREF(__pyx_v_fp_str_); - __Pyx_DECREF_SET(__pyx_v_fp_str_, __pyx_v_fp_str_); - - /* "pmercury/utils/tls_utils.pyx":75 - * def eval_fp_str(fp_str_): - * fp_str_ = fp_str_ - * t_ = fp_str_.split(')') # <<<<<<<<<<<<<< - * version = t_[0][1:] - * cs = t_[1][1:] - */ - __pyx_t_2 = __Pyx_PyObject_GetAttrStr(__pyx_v_fp_str_, __pyx_n_s_split); if (unlikely(!__pyx_t_2)) __PYX_ERR(0, 75, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_2); - __pyx_t_3 = NULL; - if (CYTHON_UNPACK_METHODS && likely(PyMethod_Check(__pyx_t_2))) { - __pyx_t_3 = PyMethod_GET_SELF(__pyx_t_2); - if (likely(__pyx_t_3)) { - PyObject* function = PyMethod_GET_FUNCTION(__pyx_t_2); - __Pyx_INCREF(__pyx_t_3); - __Pyx_INCREF(function); - __Pyx_DECREF_SET(__pyx_t_2, function); - } - } - __pyx_t_1 = (__pyx_t_3) ? __Pyx_PyObject_Call2Args(__pyx_t_2, __pyx_t_3, __pyx_kp_u__4) : __Pyx_PyObject_CallOneArg(__pyx_t_2, __pyx_kp_u__4); - __Pyx_XDECREF(__pyx_t_3); __pyx_t_3 = 0; - if (unlikely(!__pyx_t_1)) __PYX_ERR(0, 75, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_1); - __Pyx_DECREF(__pyx_t_2); __pyx_t_2 = 0; - __pyx_v_t_ = __pyx_t_1; - __pyx_t_1 = 0; - - /* "pmercury/utils/tls_utils.pyx":76 - * fp_str_ = fp_str_ - * t_ = fp_str_.split(')') - * version = t_[0][1:] # <<<<<<<<<<<<<< - * cs = t_[1][1:] - * tmp_ext = fp_str_[len(cs)+9:-1] - */ - __pyx_t_1 = __Pyx_GetItemInt(__pyx_v_t_, 0, long, 1, __Pyx_PyInt_From_long, 0, 0, 1); if (unlikely(!__pyx_t_1)) __PYX_ERR(0, 76, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_1); - __pyx_t_2 = __Pyx_PyObject_GetSlice(__pyx_t_1, 1, 0, NULL, NULL, &__pyx_slice__16, 1, 0, 1); if (unlikely(!__pyx_t_2)) __PYX_ERR(0, 76, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_2); - __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0; - __pyx_v_version = __pyx_t_2; - __pyx_t_2 = 0; - - /* "pmercury/utils/tls_utils.pyx":77 - * t_ = fp_str_.split(')') - * version = t_[0][1:] - * cs = t_[1][1:] # <<<<<<<<<<<<<< - * tmp_ext = fp_str_[len(cs)+9:-1] - * tmp_ext = tmp_ext.split(')') - */ - __pyx_t_2 = __Pyx_GetItemInt(__pyx_v_t_, 1, long, 1, __Pyx_PyInt_From_long, 0, 0, 1); if (unlikely(!__pyx_t_2)) __PYX_ERR(0, 77, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_2); - __pyx_t_1 = __Pyx_PyObject_GetSlice(__pyx_t_2, 1, 0, NULL, NULL, &__pyx_slice__16, 1, 0, 1); if (unlikely(!__pyx_t_1)) __PYX_ERR(0, 77, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_1); - __Pyx_DECREF(__pyx_t_2); __pyx_t_2 = 0; - __pyx_v_cs = __pyx_t_1; - __pyx_t_1 = 0; - - /* "pmercury/utils/tls_utils.pyx":78 - * version = t_[0][1:] - * cs = t_[1][1:] - * tmp_ext = fp_str_[len(cs)+9:-1] # <<<<<<<<<<<<<< - * tmp_ext = tmp_ext.split(')') - * ext = [e_[1:] for e_ in tmp_ext[:-1]] - */ - __pyx_t_4 = PyObject_Length(__pyx_v_cs); if (unlikely(__pyx_t_4 == ((Py_ssize_t)-1))) __PYX_ERR(0, 78, __pyx_L1_error) - __pyx_t_1 = __Pyx_PyObject_GetSlice(__pyx_v_fp_str_, (__pyx_t_4 + 9), -1L, NULL, NULL, NULL, 1, 1, 1); if (unlikely(!__pyx_t_1)) __PYX_ERR(0, 78, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_1); - __pyx_v_tmp_ext = __pyx_t_1; - __pyx_t_1 = 0; - - /* "pmercury/utils/tls_utils.pyx":79 - * cs = t_[1][1:] - * tmp_ext = fp_str_[len(cs)+9:-1] - * tmp_ext = tmp_ext.split(')') # <<<<<<<<<<<<<< - * ext = [e_[1:] for e_ in tmp_ext[:-1]] - * return [version, cs, ext] - */ - __pyx_t_2 = __Pyx_PyObject_GetAttrStr(__pyx_v_tmp_ext, __pyx_n_s_split); if (unlikely(!__pyx_t_2)) __PYX_ERR(0, 79, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_2); - __pyx_t_3 = NULL; - if (CYTHON_UNPACK_METHODS && likely(PyMethod_Check(__pyx_t_2))) { - __pyx_t_3 = PyMethod_GET_SELF(__pyx_t_2); - if (likely(__pyx_t_3)) { - PyObject* function = PyMethod_GET_FUNCTION(__pyx_t_2); - __Pyx_INCREF(__pyx_t_3); - __Pyx_INCREF(function); - __Pyx_DECREF_SET(__pyx_t_2, function); - } - } - __pyx_t_1 = (__pyx_t_3) ? __Pyx_PyObject_Call2Args(__pyx_t_2, __pyx_t_3, __pyx_kp_u__4) : __Pyx_PyObject_CallOneArg(__pyx_t_2, __pyx_kp_u__4); - __Pyx_XDECREF(__pyx_t_3); __pyx_t_3 = 0; - if (unlikely(!__pyx_t_1)) __PYX_ERR(0, 79, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_1); - __Pyx_DECREF(__pyx_t_2); __pyx_t_2 = 0; - __Pyx_DECREF_SET(__pyx_v_tmp_ext, __pyx_t_1); - __pyx_t_1 = 0; - - /* "pmercury/utils/tls_utils.pyx":80 - * tmp_ext = fp_str_[len(cs)+9:-1] - * tmp_ext = tmp_ext.split(')') - * ext = [e_[1:] for e_ in tmp_ext[:-1]] # <<<<<<<<<<<<<< - * return [version, cs, ext] - * - */ - { /* enter inner scope */ - __pyx_t_1 = PyList_New(0); if (unlikely(!__pyx_t_1)) __PYX_ERR(0, 80, __pyx_L5_error) - __Pyx_GOTREF(__pyx_t_1); - __pyx_t_2 = __Pyx_PyObject_GetSlice(__pyx_v_tmp_ext, 0, -1L, NULL, NULL, &__pyx_slice__17, 0, 1, 1); if (unlikely(!__pyx_t_2)) __PYX_ERR(0, 80, __pyx_L5_error) - __Pyx_GOTREF(__pyx_t_2); - if (likely(PyList_CheckExact(__pyx_t_2)) || PyTuple_CheckExact(__pyx_t_2)) { - __pyx_t_3 = __pyx_t_2; __Pyx_INCREF(__pyx_t_3); __pyx_t_4 = 0; - __pyx_t_5 = NULL; - } else { - __pyx_t_4 = -1; __pyx_t_3 = PyObject_GetIter(__pyx_t_2); if (unlikely(!__pyx_t_3)) __PYX_ERR(0, 80, __pyx_L5_error) - __Pyx_GOTREF(__pyx_t_3); - __pyx_t_5 = Py_TYPE(__pyx_t_3)->tp_iternext; if (unlikely(!__pyx_t_5)) __PYX_ERR(0, 80, __pyx_L5_error) - } - __Pyx_DECREF(__pyx_t_2); __pyx_t_2 = 0; - for (;;) { - if (likely(!__pyx_t_5)) { - if (likely(PyList_CheckExact(__pyx_t_3))) { - if (__pyx_t_4 >= PyList_GET_SIZE(__pyx_t_3)) break; - #if CYTHON_ASSUME_SAFE_MACROS && !CYTHON_AVOID_BORROWED_REFS - __pyx_t_2 = PyList_GET_ITEM(__pyx_t_3, __pyx_t_4); __Pyx_INCREF(__pyx_t_2); __pyx_t_4++; if (unlikely(0 < 0)) __PYX_ERR(0, 80, __pyx_L5_error) - #else - __pyx_t_2 = PySequence_ITEM(__pyx_t_3, __pyx_t_4); __pyx_t_4++; if (unlikely(!__pyx_t_2)) __PYX_ERR(0, 80, __pyx_L5_error) - __Pyx_GOTREF(__pyx_t_2); - #endif - } else { - if (__pyx_t_4 >= PyTuple_GET_SIZE(__pyx_t_3)) break; - #if CYTHON_ASSUME_SAFE_MACROS && !CYTHON_AVOID_BORROWED_REFS - __pyx_t_2 = PyTuple_GET_ITEM(__pyx_t_3, __pyx_t_4); __Pyx_INCREF(__pyx_t_2); __pyx_t_4++; if (unlikely(0 < 0)) __PYX_ERR(0, 80, __pyx_L5_error) - #else - __pyx_t_2 = PySequence_ITEM(__pyx_t_3, __pyx_t_4); __pyx_t_4++; if (unlikely(!__pyx_t_2)) __PYX_ERR(0, 80, __pyx_L5_error) - __Pyx_GOTREF(__pyx_t_2); - #endif - } - } else { - __pyx_t_2 = __pyx_t_5(__pyx_t_3); - if (unlikely(!__pyx_t_2)) { - PyObject* exc_type = PyErr_Occurred(); - if (exc_type) { - if (likely(__Pyx_PyErr_GivenExceptionMatches(exc_type, PyExc_StopIteration))) PyErr_Clear(); - else __PYX_ERR(0, 80, __pyx_L5_error) - } - break; - } - __Pyx_GOTREF(__pyx_t_2); - } - __Pyx_XDECREF_SET(__pyx_7genexpr__pyx_v_e_, __pyx_t_2); - __pyx_t_2 = 0; - __pyx_t_2 = __Pyx_PyObject_GetSlice(__pyx_7genexpr__pyx_v_e_, 1, 0, NULL, NULL, &__pyx_slice__16, 1, 0, 1); if (unlikely(!__pyx_t_2)) __PYX_ERR(0, 80, __pyx_L5_error) - __Pyx_GOTREF(__pyx_t_2); - if (unlikely(__Pyx_ListComp_Append(__pyx_t_1, (PyObject*)__pyx_t_2))) __PYX_ERR(0, 80, __pyx_L5_error) - __Pyx_DECREF(__pyx_t_2); __pyx_t_2 = 0; - } - __Pyx_DECREF(__pyx_t_3); __pyx_t_3 = 0; - __Pyx_XDECREF(__pyx_7genexpr__pyx_v_e_); __pyx_7genexpr__pyx_v_e_ = 0; - goto __pyx_L8_exit_scope; - __pyx_L5_error:; - __Pyx_XDECREF(__pyx_7genexpr__pyx_v_e_); __pyx_7genexpr__pyx_v_e_ = 0; - goto __pyx_L1_error; - __pyx_L8_exit_scope:; - } /* exit inner scope */ - __pyx_v_ext = ((PyObject*)__pyx_t_1); - __pyx_t_1 = 0; - - /* "pmercury/utils/tls_utils.pyx":81 - * tmp_ext = tmp_ext.split(')') - * ext = [e_[1:] for e_ in tmp_ext[:-1]] - * return [version, cs, ext] # <<<<<<<<<<<<<< - * - * - */ - __Pyx_XDECREF(__pyx_r); - __pyx_t_1 = PyList_New(3); if (unlikely(!__pyx_t_1)) __PYX_ERR(0, 81, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_1); - __Pyx_INCREF(__pyx_v_version); - __Pyx_GIVEREF(__pyx_v_version); - PyList_SET_ITEM(__pyx_t_1, 0, __pyx_v_version); - __Pyx_INCREF(__pyx_v_cs); - __Pyx_GIVEREF(__pyx_v_cs); - PyList_SET_ITEM(__pyx_t_1, 1, __pyx_v_cs); - __Pyx_INCREF(__pyx_v_ext); - __Pyx_GIVEREF(__pyx_v_ext); - PyList_SET_ITEM(__pyx_t_1, 2, __pyx_v_ext); - __pyx_r = __pyx_t_1; - __pyx_t_1 = 0; - goto __pyx_L0; - - /* "pmercury/utils/tls_utils.pyx":73 - * - * - * def eval_fp_str(fp_str_): # <<<<<<<<<<<<<< - * fp_str_ = fp_str_ - * t_ = fp_str_.split(')') - */ - - /* function exit code */ - __pyx_L1_error:; - __Pyx_XDECREF(__pyx_t_1); - __Pyx_XDECREF(__pyx_t_2); - __Pyx_XDECREF(__pyx_t_3); - __Pyx_AddTraceback("pmercury.utils.tls_utils.eval_fp_str", __pyx_clineno, __pyx_lineno, __pyx_filename); - __pyx_r = NULL; - __pyx_L0:; - __Pyx_XDECREF(__pyx_v_t_); - __Pyx_XDECREF(__pyx_v_version); - __Pyx_XDECREF(__pyx_v_cs); - __Pyx_XDECREF(__pyx_v_tmp_ext); - __Pyx_XDECREF(__pyx_v_ext); - __Pyx_XDECREF(__pyx_7genexpr__pyx_v_e_); - __Pyx_XDECREF(__pyx_v_fp_str_); - __Pyx_XGIVEREF(__pyx_r); - __Pyx_RefNannyFinishContext(); - return __pyx_r; -} - -/* "pmercury/utils/tls_utils.pyx":84 - * - * - * def get_version_from_str(version_str_, convert=True): # <<<<<<<<<<<<<< - * if version_str_ in TLS_VERSION and convert: - * return TLS_VERSION[version_str_] - */ - -/* Python wrapper */ -static PyObject *__pyx_pw_8pmercury_5utils_9tls_utils_7get_version_from_str(PyObject *__pyx_self, PyObject *__pyx_args, PyObject *__pyx_kwds); /*proto*/ -static PyMethodDef __pyx_mdef_8pmercury_5utils_9tls_utils_7get_version_from_str = {"get_version_from_str", (PyCFunction)(void*)(PyCFunctionWithKeywords)__pyx_pw_8pmercury_5utils_9tls_utils_7get_version_from_str, METH_VARARGS|METH_KEYWORDS, 0}; -static PyObject *__pyx_pw_8pmercury_5utils_9tls_utils_7get_version_from_str(PyObject *__pyx_self, PyObject *__pyx_args, PyObject *__pyx_kwds) { - PyObject *__pyx_v_version_str_ = 0; - PyObject *__pyx_v_convert = 0; - PyObject *__pyx_r = 0; - __Pyx_RefNannyDeclarations - __Pyx_RefNannySetupContext("get_version_from_str (wrapper)", 0); - { - static PyObject **__pyx_pyargnames[] = {&__pyx_n_s_version_str,&__pyx_n_s_convert,0}; - PyObject* values[2] = {0,0}; - values[1] = ((PyObject *)Py_True); - if (unlikely(__pyx_kwds)) { - Py_ssize_t kw_args; - const Py_ssize_t pos_args = PyTuple_GET_SIZE(__pyx_args); - switch (pos_args) { - case 2: values[1] = PyTuple_GET_ITEM(__pyx_args, 1); - CYTHON_FALLTHROUGH; - case 1: values[0] = PyTuple_GET_ITEM(__pyx_args, 0); - CYTHON_FALLTHROUGH; - case 0: break; - default: goto __pyx_L5_argtuple_error; - } - kw_args = PyDict_Size(__pyx_kwds); - switch (pos_args) { - case 0: - if (likely((values[0] = __Pyx_PyDict_GetItemStr(__pyx_kwds, __pyx_n_s_version_str)) != 0)) kw_args--; - else goto __pyx_L5_argtuple_error; - CYTHON_FALLTHROUGH; - case 1: - if (kw_args > 0) { - PyObject* value = __Pyx_PyDict_GetItemStr(__pyx_kwds, __pyx_n_s_convert); - if (value) { values[1] = value; kw_args--; } - } - } - if (unlikely(kw_args > 0)) { - if (unlikely(__Pyx_ParseOptionalKeywords(__pyx_kwds, __pyx_pyargnames, 0, values, pos_args, "get_version_from_str") < 0)) __PYX_ERR(0, 84, __pyx_L3_error) - } - } else { - switch (PyTuple_GET_SIZE(__pyx_args)) { - case 2: values[1] = PyTuple_GET_ITEM(__pyx_args, 1); - CYTHON_FALLTHROUGH; - case 1: values[0] = PyTuple_GET_ITEM(__pyx_args, 0); - break; - default: goto __pyx_L5_argtuple_error; - } - } - __pyx_v_version_str_ = values[0]; - __pyx_v_convert = values[1]; - } - goto __pyx_L4_argument_unpacking_done; - __pyx_L5_argtuple_error:; - __Pyx_RaiseArgtupleInvalid("get_version_from_str", 0, 1, 2, PyTuple_GET_SIZE(__pyx_args)); __PYX_ERR(0, 84, __pyx_L3_error) - __pyx_L3_error:; - __Pyx_AddTraceback("pmercury.utils.tls_utils.get_version_from_str", __pyx_clineno, __pyx_lineno, __pyx_filename); - __Pyx_RefNannyFinishContext(); - return NULL; - __pyx_L4_argument_unpacking_done:; - __pyx_r = __pyx_pf_8pmercury_5utils_9tls_utils_6get_version_from_str(__pyx_self, __pyx_v_version_str_, __pyx_v_convert); - - /* function exit code */ - __Pyx_RefNannyFinishContext(); - return __pyx_r; -} - -static PyObject *__pyx_pf_8pmercury_5utils_9tls_utils_6get_version_from_str(CYTHON_UNUSED PyObject *__pyx_self, PyObject *__pyx_v_version_str_, PyObject *__pyx_v_convert) { - PyObject *__pyx_r = NULL; - __Pyx_RefNannyDeclarations - int __pyx_t_1; - PyObject *__pyx_t_2 = NULL; - int __pyx_t_3; - int __pyx_t_4; - PyObject *__pyx_t_5 = NULL; - __Pyx_RefNannySetupContext("get_version_from_str", 0); - - /* "pmercury/utils/tls_utils.pyx":85 - * - * def get_version_from_str(version_str_, convert=True): - * if version_str_ in TLS_VERSION and convert: # <<<<<<<<<<<<<< - * return TLS_VERSION[version_str_] - * else: - */ - __Pyx_GetModuleGlobalName(__pyx_t_2, __pyx_n_s_TLS_VERSION); if (unlikely(!__pyx_t_2)) __PYX_ERR(0, 85, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_2); - __pyx_t_3 = (__Pyx_PySequence_ContainsTF(__pyx_v_version_str_, __pyx_t_2, Py_EQ)); if (unlikely(__pyx_t_3 < 0)) __PYX_ERR(0, 85, __pyx_L1_error) - __Pyx_DECREF(__pyx_t_2); __pyx_t_2 = 0; - __pyx_t_4 = (__pyx_t_3 != 0); - if (__pyx_t_4) { - } else { - __pyx_t_1 = __pyx_t_4; - goto __pyx_L4_bool_binop_done; - } - __pyx_t_4 = __Pyx_PyObject_IsTrue(__pyx_v_convert); if (unlikely(__pyx_t_4 < 0)) __PYX_ERR(0, 85, __pyx_L1_error) - __pyx_t_1 = __pyx_t_4; - __pyx_L4_bool_binop_done:; - if (__pyx_t_1) { - - /* "pmercury/utils/tls_utils.pyx":86 - * def get_version_from_str(version_str_, convert=True): - * if version_str_ in TLS_VERSION and convert: - * return TLS_VERSION[version_str_] # <<<<<<<<<<<<<< - * else: - * return version_str_ - */ - __Pyx_XDECREF(__pyx_r); - __Pyx_GetModuleGlobalName(__pyx_t_2, __pyx_n_s_TLS_VERSION); if (unlikely(!__pyx_t_2)) __PYX_ERR(0, 86, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_2); - __pyx_t_5 = __Pyx_PyObject_GetItem(__pyx_t_2, __pyx_v_version_str_); if (unlikely(!__pyx_t_5)) __PYX_ERR(0, 86, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_5); - __Pyx_DECREF(__pyx_t_2); __pyx_t_2 = 0; - __pyx_r = __pyx_t_5; - __pyx_t_5 = 0; - goto __pyx_L0; - - /* "pmercury/utils/tls_utils.pyx":85 - * - * def get_version_from_str(version_str_, convert=True): - * if version_str_ in TLS_VERSION and convert: # <<<<<<<<<<<<<< - * return TLS_VERSION[version_str_] - * else: - */ - } - - /* "pmercury/utils/tls_utils.pyx":88 - * return TLS_VERSION[version_str_] - * else: - * return version_str_ # <<<<<<<<<<<<<< - * - * - */ - /*else*/ { - __Pyx_XDECREF(__pyx_r); - __Pyx_INCREF(__pyx_v_version_str_); - __pyx_r = __pyx_v_version_str_; - goto __pyx_L0; - } - - /* "pmercury/utils/tls_utils.pyx":84 - * - * - * def get_version_from_str(version_str_, convert=True): # <<<<<<<<<<<<<< - * if version_str_ in TLS_VERSION and convert: - * return TLS_VERSION[version_str_] - */ - - /* function exit code */ - __pyx_L1_error:; - __Pyx_XDECREF(__pyx_t_2); - __Pyx_XDECREF(__pyx_t_5); - __Pyx_AddTraceback("pmercury.utils.tls_utils.get_version_from_str", __pyx_clineno, __pyx_lineno, __pyx_filename); - __pyx_r = NULL; - __pyx_L0:; - __Pyx_XGIVEREF(__pyx_r); - __Pyx_RefNannyFinishContext(); - return __pyx_r; -} - -/* "pmercury/utils/tls_utils.pyx":91 - * - * - * def get_cs_from_str(cs_str_, convert=True): # <<<<<<<<<<<<<< - * cs_l_ = [] - * for i in range(0,len(cs_str_),4): - */ - -/* Python wrapper */ -static PyObject *__pyx_pw_8pmercury_5utils_9tls_utils_9get_cs_from_str(PyObject *__pyx_self, PyObject *__pyx_args, PyObject *__pyx_kwds); /*proto*/ -static PyMethodDef __pyx_mdef_8pmercury_5utils_9tls_utils_9get_cs_from_str = {"get_cs_from_str", (PyCFunction)(void*)(PyCFunctionWithKeywords)__pyx_pw_8pmercury_5utils_9tls_utils_9get_cs_from_str, METH_VARARGS|METH_KEYWORDS, 0}; -static PyObject *__pyx_pw_8pmercury_5utils_9tls_utils_9get_cs_from_str(PyObject *__pyx_self, PyObject *__pyx_args, PyObject *__pyx_kwds) { - PyObject *__pyx_v_cs_str_ = 0; - PyObject *__pyx_v_convert = 0; - PyObject *__pyx_r = 0; - __Pyx_RefNannyDeclarations - __Pyx_RefNannySetupContext("get_cs_from_str (wrapper)", 0); - { - static PyObject **__pyx_pyargnames[] = {&__pyx_n_s_cs_str,&__pyx_n_s_convert,0}; - PyObject* values[2] = {0,0}; - values[1] = ((PyObject *)Py_True); - if (unlikely(__pyx_kwds)) { - Py_ssize_t kw_args; - const Py_ssize_t pos_args = PyTuple_GET_SIZE(__pyx_args); - switch (pos_args) { - case 2: values[1] = PyTuple_GET_ITEM(__pyx_args, 1); - CYTHON_FALLTHROUGH; - case 1: values[0] = PyTuple_GET_ITEM(__pyx_args, 0); - CYTHON_FALLTHROUGH; - case 0: break; - default: goto __pyx_L5_argtuple_error; - } - kw_args = PyDict_Size(__pyx_kwds); - switch (pos_args) { - case 0: - if (likely((values[0] = __Pyx_PyDict_GetItemStr(__pyx_kwds, __pyx_n_s_cs_str)) != 0)) kw_args--; - else goto __pyx_L5_argtuple_error; - CYTHON_FALLTHROUGH; - case 1: - if (kw_args > 0) { - PyObject* value = __Pyx_PyDict_GetItemStr(__pyx_kwds, __pyx_n_s_convert); - if (value) { values[1] = value; kw_args--; } - } - } - if (unlikely(kw_args > 0)) { - if (unlikely(__Pyx_ParseOptionalKeywords(__pyx_kwds, __pyx_pyargnames, 0, values, pos_args, "get_cs_from_str") < 0)) __PYX_ERR(0, 91, __pyx_L3_error) - } - } else { - switch (PyTuple_GET_SIZE(__pyx_args)) { - case 2: values[1] = PyTuple_GET_ITEM(__pyx_args, 1); - CYTHON_FALLTHROUGH; - case 1: values[0] = PyTuple_GET_ITEM(__pyx_args, 0); - break; - default: goto __pyx_L5_argtuple_error; - } - } - __pyx_v_cs_str_ = values[0]; - __pyx_v_convert = values[1]; - } - goto __pyx_L4_argument_unpacking_done; - __pyx_L5_argtuple_error:; - __Pyx_RaiseArgtupleInvalid("get_cs_from_str", 0, 1, 2, PyTuple_GET_SIZE(__pyx_args)); __PYX_ERR(0, 91, __pyx_L3_error) - __pyx_L3_error:; - __Pyx_AddTraceback("pmercury.utils.tls_utils.get_cs_from_str", __pyx_clineno, __pyx_lineno, __pyx_filename); - __Pyx_RefNannyFinishContext(); - return NULL; - __pyx_L4_argument_unpacking_done:; - __pyx_r = __pyx_pf_8pmercury_5utils_9tls_utils_8get_cs_from_str(__pyx_self, __pyx_v_cs_str_, __pyx_v_convert); - - /* function exit code */ - __Pyx_RefNannyFinishContext(); - return __pyx_r; -} - -static PyObject *__pyx_pf_8pmercury_5utils_9tls_utils_8get_cs_from_str(CYTHON_UNUSED PyObject *__pyx_self, PyObject *__pyx_v_cs_str_, PyObject *__pyx_v_convert) { - PyObject *__pyx_v_cs_l_ = NULL; - Py_ssize_t __pyx_v_i; - PyObject *__pyx_v_cs_ = NULL; - PyObject *__pyx_r = NULL; - __Pyx_RefNannyDeclarations - PyObject *__pyx_t_1 = NULL; - Py_ssize_t __pyx_t_2; - Py_ssize_t __pyx_t_3; - Py_ssize_t __pyx_t_4; - int __pyx_t_5; - int __pyx_t_6; - int __pyx_t_7; - PyObject *__pyx_t_8 = NULL; - int __pyx_t_9; - __Pyx_RefNannySetupContext("get_cs_from_str", 0); - - /* "pmercury/utils/tls_utils.pyx":92 - * - * def get_cs_from_str(cs_str_, convert=True): - * cs_l_ = [] # <<<<<<<<<<<<<< - * for i in range(0,len(cs_str_),4): - * cs_ = cs_str_[i:i+4] - */ - __pyx_t_1 = PyList_New(0); if (unlikely(!__pyx_t_1)) __PYX_ERR(0, 92, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_1); - __pyx_v_cs_l_ = ((PyObject*)__pyx_t_1); - __pyx_t_1 = 0; - - /* "pmercury/utils/tls_utils.pyx":93 - * def get_cs_from_str(cs_str_, convert=True): - * cs_l_ = [] - * for i in range(0,len(cs_str_),4): # <<<<<<<<<<<<<< - * cs_ = cs_str_[i:i+4] - * if cs_ in imp_date_cs_data and convert: - */ - __pyx_t_2 = PyObject_Length(__pyx_v_cs_str_); if (unlikely(__pyx_t_2 == ((Py_ssize_t)-1))) __PYX_ERR(0, 93, __pyx_L1_error) - __pyx_t_3 = __pyx_t_2; - for (__pyx_t_4 = 0; __pyx_t_4 < __pyx_t_3; __pyx_t_4+=4) { - __pyx_v_i = __pyx_t_4; - - /* "pmercury/utils/tls_utils.pyx":94 - * cs_l_ = [] - * for i in range(0,len(cs_str_),4): - * cs_ = cs_str_[i:i+4] # <<<<<<<<<<<<<< - * if cs_ in imp_date_cs_data and convert: - * cs_l_.append(imp_date_cs_data[cs_]['name']) - */ - __pyx_t_1 = __Pyx_PyObject_GetSlice(__pyx_v_cs_str_, __pyx_v_i, (__pyx_v_i + 4), NULL, NULL, NULL, 1, 1, 1); if (unlikely(!__pyx_t_1)) __PYX_ERR(0, 94, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_1); - __Pyx_XDECREF_SET(__pyx_v_cs_, __pyx_t_1); - __pyx_t_1 = 0; - - /* "pmercury/utils/tls_utils.pyx":95 - * for i in range(0,len(cs_str_),4): - * cs_ = cs_str_[i:i+4] - * if cs_ in imp_date_cs_data and convert: # <<<<<<<<<<<<<< - * cs_l_.append(imp_date_cs_data[cs_]['name']) - * else: - */ - __Pyx_GetModuleGlobalName(__pyx_t_1, __pyx_n_s_imp_date_cs_data); if (unlikely(!__pyx_t_1)) __PYX_ERR(0, 95, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_1); - __pyx_t_6 = (__Pyx_PySequence_ContainsTF(__pyx_v_cs_, __pyx_t_1, Py_EQ)); if (unlikely(__pyx_t_6 < 0)) __PYX_ERR(0, 95, __pyx_L1_error) - __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0; - __pyx_t_7 = (__pyx_t_6 != 0); - if (__pyx_t_7) { - } else { - __pyx_t_5 = __pyx_t_7; - goto __pyx_L6_bool_binop_done; - } - __pyx_t_7 = __Pyx_PyObject_IsTrue(__pyx_v_convert); if (unlikely(__pyx_t_7 < 0)) __PYX_ERR(0, 95, __pyx_L1_error) - __pyx_t_5 = __pyx_t_7; - __pyx_L6_bool_binop_done:; - if (__pyx_t_5) { - - /* "pmercury/utils/tls_utils.pyx":96 - * cs_ = cs_str_[i:i+4] - * if cs_ in imp_date_cs_data and convert: - * cs_l_.append(imp_date_cs_data[cs_]['name']) # <<<<<<<<<<<<<< - * else: - * cs_l_.append(cs_) - */ - __Pyx_GetModuleGlobalName(__pyx_t_1, __pyx_n_s_imp_date_cs_data); if (unlikely(!__pyx_t_1)) __PYX_ERR(0, 96, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_1); - __pyx_t_8 = __Pyx_PyObject_GetItem(__pyx_t_1, __pyx_v_cs_); if (unlikely(!__pyx_t_8)) __PYX_ERR(0, 96, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_8); - __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0; - __pyx_t_1 = __Pyx_PyObject_Dict_GetItem(__pyx_t_8, __pyx_n_u_name); if (unlikely(!__pyx_t_1)) __PYX_ERR(0, 96, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_1); - __Pyx_DECREF(__pyx_t_8); __pyx_t_8 = 0; - __pyx_t_9 = __Pyx_PyList_Append(__pyx_v_cs_l_, __pyx_t_1); if (unlikely(__pyx_t_9 == ((int)-1))) __PYX_ERR(0, 96, __pyx_L1_error) - __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0; - - /* "pmercury/utils/tls_utils.pyx":95 - * for i in range(0,len(cs_str_),4): - * cs_ = cs_str_[i:i+4] - * if cs_ in imp_date_cs_data and convert: # <<<<<<<<<<<<<< - * cs_l_.append(imp_date_cs_data[cs_]['name']) - * else: - */ - goto __pyx_L5; - } - - /* "pmercury/utils/tls_utils.pyx":98 - * cs_l_.append(imp_date_cs_data[cs_]['name']) - * else: - * cs_l_.append(cs_) # <<<<<<<<<<<<<< - * return cs_l_ - * - */ - /*else*/ { - __pyx_t_9 = __Pyx_PyList_Append(__pyx_v_cs_l_, __pyx_v_cs_); if (unlikely(__pyx_t_9 == ((int)-1))) __PYX_ERR(0, 98, __pyx_L1_error) - } - __pyx_L5:; - } - - /* "pmercury/utils/tls_utils.pyx":99 - * else: - * cs_l_.append(cs_) - * return cs_l_ # <<<<<<<<<<<<<< - * - * - */ - __Pyx_XDECREF(__pyx_r); - __Pyx_INCREF(__pyx_v_cs_l_); - __pyx_r = __pyx_v_cs_l_; - goto __pyx_L0; - - /* "pmercury/utils/tls_utils.pyx":91 - * - * - * def get_cs_from_str(cs_str_, convert=True): # <<<<<<<<<<<<<< - * cs_l_ = [] - * for i in range(0,len(cs_str_),4): - */ - - /* function exit code */ - __pyx_L1_error:; - __Pyx_XDECREF(__pyx_t_1); - __Pyx_XDECREF(__pyx_t_8); - __Pyx_AddTraceback("pmercury.utils.tls_utils.get_cs_from_str", __pyx_clineno, __pyx_lineno, __pyx_filename); - __pyx_r = NULL; - __pyx_L0:; - __Pyx_XDECREF(__pyx_v_cs_l_); - __Pyx_XDECREF(__pyx_v_cs_); - __Pyx_XGIVEREF(__pyx_r); - __Pyx_RefNannyFinishContext(); - return __pyx_r; -} - -/* "pmercury/utils/tls_utils.pyx":102 - * - * - * def get_ext_from_str(exts_, convert=True, mode='client'): # <<<<<<<<<<<<<< - * ext_l_ = [] - * for ext in exts_: - */ - -/* Python wrapper */ -static PyObject *__pyx_pw_8pmercury_5utils_9tls_utils_11get_ext_from_str(PyObject *__pyx_self, PyObject *__pyx_args, PyObject *__pyx_kwds); /*proto*/ -static PyMethodDef __pyx_mdef_8pmercury_5utils_9tls_utils_11get_ext_from_str = {"get_ext_from_str", (PyCFunction)(void*)(PyCFunctionWithKeywords)__pyx_pw_8pmercury_5utils_9tls_utils_11get_ext_from_str, METH_VARARGS|METH_KEYWORDS, 0}; -static PyObject *__pyx_pw_8pmercury_5utils_9tls_utils_11get_ext_from_str(PyObject *__pyx_self, PyObject *__pyx_args, PyObject *__pyx_kwds) { - PyObject *__pyx_v_exts_ = 0; - PyObject *__pyx_v_convert = 0; - PyObject *__pyx_v_mode = 0; - PyObject *__pyx_r = 0; - __Pyx_RefNannyDeclarations - __Pyx_RefNannySetupContext("get_ext_from_str (wrapper)", 0); - { - static PyObject **__pyx_pyargnames[] = {&__pyx_n_s_exts,&__pyx_n_s_convert,&__pyx_n_s_mode,0}; - PyObject* values[3] = {0,0,0}; - values[1] = ((PyObject *)Py_True); - values[2] = ((PyObject *)__pyx_n_u_client); - if (unlikely(__pyx_kwds)) { - Py_ssize_t kw_args; - const Py_ssize_t pos_args = PyTuple_GET_SIZE(__pyx_args); - switch (pos_args) { - case 3: values[2] = PyTuple_GET_ITEM(__pyx_args, 2); - CYTHON_FALLTHROUGH; - case 2: values[1] = PyTuple_GET_ITEM(__pyx_args, 1); - CYTHON_FALLTHROUGH; - case 1: values[0] = PyTuple_GET_ITEM(__pyx_args, 0); - CYTHON_FALLTHROUGH; - case 0: break; - default: goto __pyx_L5_argtuple_error; - } - kw_args = PyDict_Size(__pyx_kwds); - switch (pos_args) { - case 0: - if (likely((values[0] = __Pyx_PyDict_GetItemStr(__pyx_kwds, __pyx_n_s_exts)) != 0)) kw_args--; - else goto __pyx_L5_argtuple_error; - CYTHON_FALLTHROUGH; - case 1: - if (kw_args > 0) { - PyObject* value = __Pyx_PyDict_GetItemStr(__pyx_kwds, __pyx_n_s_convert); - if (value) { values[1] = value; kw_args--; } - } - CYTHON_FALLTHROUGH; - case 2: - if (kw_args > 0) { - PyObject* value = __Pyx_PyDict_GetItemStr(__pyx_kwds, __pyx_n_s_mode); - if (value) { values[2] = value; kw_args--; } - } - } - if (unlikely(kw_args > 0)) { - if (unlikely(__Pyx_ParseOptionalKeywords(__pyx_kwds, __pyx_pyargnames, 0, values, pos_args, "get_ext_from_str") < 0)) __PYX_ERR(0, 102, __pyx_L3_error) - } - } else { - switch (PyTuple_GET_SIZE(__pyx_args)) { - case 3: values[2] = PyTuple_GET_ITEM(__pyx_args, 2); - CYTHON_FALLTHROUGH; - case 2: values[1] = PyTuple_GET_ITEM(__pyx_args, 1); - CYTHON_FALLTHROUGH; - case 1: values[0] = PyTuple_GET_ITEM(__pyx_args, 0); - break; - default: goto __pyx_L5_argtuple_error; - } - } - __pyx_v_exts_ = values[0]; - __pyx_v_convert = values[1]; - __pyx_v_mode = values[2]; - } - goto __pyx_L4_argument_unpacking_done; - __pyx_L5_argtuple_error:; - __Pyx_RaiseArgtupleInvalid("get_ext_from_str", 0, 1, 3, PyTuple_GET_SIZE(__pyx_args)); __PYX_ERR(0, 102, __pyx_L3_error) - __pyx_L3_error:; - __Pyx_AddTraceback("pmercury.utils.tls_utils.get_ext_from_str", __pyx_clineno, __pyx_lineno, __pyx_filename); - __Pyx_RefNannyFinishContext(); - return NULL; - __pyx_L4_argument_unpacking_done:; - __pyx_r = __pyx_pf_8pmercury_5utils_9tls_utils_10get_ext_from_str(__pyx_self, __pyx_v_exts_, __pyx_v_convert, __pyx_v_mode); - - /* function exit code */ - __Pyx_RefNannyFinishContext(); - return __pyx_r; -} - -static PyObject *__pyx_pf_8pmercury_5utils_9tls_utils_10get_ext_from_str(CYTHON_UNUSED PyObject *__pyx_self, PyObject *__pyx_v_exts_, PyObject *__pyx_v_convert, PyObject *__pyx_v_mode) { - PyObject *__pyx_v_ext_l_ = NULL; - PyObject *__pyx_v_ext = NULL; - PyObject *__pyx_v_ext_type_ = NULL; - PyObject *__pyx_v_ext_type_str_kind = NULL; - PyObject *__pyx_v_ext_data_ = NULL; - PyObject *__pyx_r = NULL; - __Pyx_RefNannyDeclarations - PyObject *__pyx_t_1 = NULL; - Py_ssize_t __pyx_t_2; - PyObject *(*__pyx_t_3)(PyObject *); - PyObject *__pyx_t_4 = NULL; - Py_ssize_t __pyx_t_5; - int __pyx_t_6; - PyObject *__pyx_t_7 = NULL; - int __pyx_t_8; - int __pyx_t_9; - PyObject *__pyx_t_10 = NULL; - PyObject *__pyx_t_11 = NULL; - int __pyx_t_12; - PyObject *__pyx_t_13 = NULL; - int __pyx_t_14; - __Pyx_RefNannySetupContext("get_ext_from_str", 0); - - /* "pmercury/utils/tls_utils.pyx":103 - * - * def get_ext_from_str(exts_, convert=True, mode='client'): - * ext_l_ = [] # <<<<<<<<<<<<<< - * for ext in exts_: - * if len(ext) == 0: - */ - __pyx_t_1 = PyList_New(0); if (unlikely(!__pyx_t_1)) __PYX_ERR(0, 103, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_1); - __pyx_v_ext_l_ = ((PyObject*)__pyx_t_1); - __pyx_t_1 = 0; - - /* "pmercury/utils/tls_utils.pyx":104 - * def get_ext_from_str(exts_, convert=True, mode='client'): - * ext_l_ = [] - * for ext in exts_: # <<<<<<<<<<<<<< - * if len(ext) == 0: - * break - */ - if (likely(PyList_CheckExact(__pyx_v_exts_)) || PyTuple_CheckExact(__pyx_v_exts_)) { - __pyx_t_1 = __pyx_v_exts_; __Pyx_INCREF(__pyx_t_1); __pyx_t_2 = 0; - __pyx_t_3 = NULL; - } else { - __pyx_t_2 = -1; __pyx_t_1 = PyObject_GetIter(__pyx_v_exts_); if (unlikely(!__pyx_t_1)) __PYX_ERR(0, 104, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_1); - __pyx_t_3 = Py_TYPE(__pyx_t_1)->tp_iternext; if (unlikely(!__pyx_t_3)) __PYX_ERR(0, 104, __pyx_L1_error) - } - for (;;) { - if (likely(!__pyx_t_3)) { - if (likely(PyList_CheckExact(__pyx_t_1))) { - if (__pyx_t_2 >= PyList_GET_SIZE(__pyx_t_1)) break; - #if CYTHON_ASSUME_SAFE_MACROS && !CYTHON_AVOID_BORROWED_REFS - __pyx_t_4 = PyList_GET_ITEM(__pyx_t_1, __pyx_t_2); __Pyx_INCREF(__pyx_t_4); __pyx_t_2++; if (unlikely(0 < 0)) __PYX_ERR(0, 104, __pyx_L1_error) - #else - __pyx_t_4 = PySequence_ITEM(__pyx_t_1, __pyx_t_2); __pyx_t_2++; if (unlikely(!__pyx_t_4)) __PYX_ERR(0, 104, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_4); - #endif - } else { - if (__pyx_t_2 >= PyTuple_GET_SIZE(__pyx_t_1)) break; - #if CYTHON_ASSUME_SAFE_MACROS && !CYTHON_AVOID_BORROWED_REFS - __pyx_t_4 = PyTuple_GET_ITEM(__pyx_t_1, __pyx_t_2); __Pyx_INCREF(__pyx_t_4); __pyx_t_2++; if (unlikely(0 < 0)) __PYX_ERR(0, 104, __pyx_L1_error) - #else - __pyx_t_4 = PySequence_ITEM(__pyx_t_1, __pyx_t_2); __pyx_t_2++; if (unlikely(!__pyx_t_4)) __PYX_ERR(0, 104, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_4); - #endif - } - } else { - __pyx_t_4 = __pyx_t_3(__pyx_t_1); - if (unlikely(!__pyx_t_4)) { - PyObject* exc_type = PyErr_Occurred(); - if (exc_type) { - if (likely(__Pyx_PyErr_GivenExceptionMatches(exc_type, PyExc_StopIteration))) PyErr_Clear(); - else __PYX_ERR(0, 104, __pyx_L1_error) - } - break; - } - __Pyx_GOTREF(__pyx_t_4); - } - __Pyx_XDECREF_SET(__pyx_v_ext, __pyx_t_4); - __pyx_t_4 = 0; - - /* "pmercury/utils/tls_utils.pyx":105 - * ext_l_ = [] - * for ext in exts_: - * if len(ext) == 0: # <<<<<<<<<<<<<< - * break - * ext_type_ = ext[0:4] - */ - __pyx_t_5 = PyObject_Length(__pyx_v_ext); if (unlikely(__pyx_t_5 == ((Py_ssize_t)-1))) __PYX_ERR(0, 105, __pyx_L1_error) - __pyx_t_6 = ((__pyx_t_5 == 0) != 0); - if (__pyx_t_6) { - - /* "pmercury/utils/tls_utils.pyx":106 - * for ext in exts_: - * if len(ext) == 0: - * break # <<<<<<<<<<<<<< - * ext_type_ = ext[0:4] - * ext_type_str_kind = str(int(ext_type_,16)) - */ - goto __pyx_L4_break; - - /* "pmercury/utils/tls_utils.pyx":105 - * ext_l_ = [] - * for ext in exts_: - * if len(ext) == 0: # <<<<<<<<<<<<<< - * break - * ext_type_ = ext[0:4] - */ - } - - /* "pmercury/utils/tls_utils.pyx":107 - * if len(ext) == 0: - * break - * ext_type_ = ext[0:4] # <<<<<<<<<<<<<< - * ext_type_str_kind = str(int(ext_type_,16)) - * if ext_type_str_kind in imp_date_ext_data and convert: - */ - __pyx_t_4 = __Pyx_PyObject_GetSlice(__pyx_v_ext, 0, 4, NULL, NULL, &__pyx_slice__18, 1, 1, 1); if (unlikely(!__pyx_t_4)) __PYX_ERR(0, 107, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_4); - __Pyx_XDECREF_SET(__pyx_v_ext_type_, __pyx_t_4); - __pyx_t_4 = 0; - - /* "pmercury/utils/tls_utils.pyx":108 - * break - * ext_type_ = ext[0:4] - * ext_type_str_kind = str(int(ext_type_,16)) # <<<<<<<<<<<<<< - * if ext_type_str_kind in imp_date_ext_data and convert: - * ext_type_ = imp_date_ext_data[ext_type_str_kind]['name'] - */ - __pyx_t_4 = PyTuple_New(2); if (unlikely(!__pyx_t_4)) __PYX_ERR(0, 108, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_4); - __Pyx_INCREF(__pyx_v_ext_type_); - __Pyx_GIVEREF(__pyx_v_ext_type_); - PyTuple_SET_ITEM(__pyx_t_4, 0, __pyx_v_ext_type_); - __Pyx_INCREF(__pyx_int_16); - __Pyx_GIVEREF(__pyx_int_16); - PyTuple_SET_ITEM(__pyx_t_4, 1, __pyx_int_16); - __pyx_t_7 = __Pyx_PyObject_Call(((PyObject *)(&PyInt_Type)), __pyx_t_4, NULL); if (unlikely(!__pyx_t_7)) __PYX_ERR(0, 108, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_7); - __Pyx_DECREF(__pyx_t_4); __pyx_t_4 = 0; - __pyx_t_4 = __Pyx_PyObject_CallOneArg(((PyObject *)(&PyUnicode_Type)), __pyx_t_7); if (unlikely(!__pyx_t_4)) __PYX_ERR(0, 108, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_4); - __Pyx_DECREF(__pyx_t_7); __pyx_t_7 = 0; - __Pyx_XDECREF_SET(__pyx_v_ext_type_str_kind, __pyx_t_4); - __pyx_t_4 = 0; - - /* "pmercury/utils/tls_utils.pyx":109 - * ext_type_ = ext[0:4] - * ext_type_str_kind = str(int(ext_type_,16)) - * if ext_type_str_kind in imp_date_ext_data and convert: # <<<<<<<<<<<<<< - * ext_type_ = imp_date_ext_data[ext_type_str_kind]['name'] - * ext_data_ = '' - */ - __Pyx_GetModuleGlobalName(__pyx_t_4, __pyx_n_s_imp_date_ext_data); if (unlikely(!__pyx_t_4)) __PYX_ERR(0, 109, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_4); - __pyx_t_8 = (__Pyx_PySequence_ContainsTF(__pyx_v_ext_type_str_kind, __pyx_t_4, Py_EQ)); if (unlikely(__pyx_t_8 < 0)) __PYX_ERR(0, 109, __pyx_L1_error) - __Pyx_DECREF(__pyx_t_4); __pyx_t_4 = 0; - __pyx_t_9 = (__pyx_t_8 != 0); - if (__pyx_t_9) { - } else { - __pyx_t_6 = __pyx_t_9; - goto __pyx_L7_bool_binop_done; - } - __pyx_t_9 = __Pyx_PyObject_IsTrue(__pyx_v_convert); if (unlikely(__pyx_t_9 < 0)) __PYX_ERR(0, 109, __pyx_L1_error) - __pyx_t_6 = __pyx_t_9; - __pyx_L7_bool_binop_done:; - if (__pyx_t_6) { - - /* "pmercury/utils/tls_utils.pyx":110 - * ext_type_str_kind = str(int(ext_type_,16)) - * if ext_type_str_kind in imp_date_ext_data and convert: - * ext_type_ = imp_date_ext_data[ext_type_str_kind]['name'] # <<<<<<<<<<<<<< - * ext_data_ = '' - * if len(ext) > 4 and convert: - */ - __Pyx_GetModuleGlobalName(__pyx_t_4, __pyx_n_s_imp_date_ext_data); if (unlikely(!__pyx_t_4)) __PYX_ERR(0, 110, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_4); - __pyx_t_7 = __Pyx_PyObject_GetItem(__pyx_t_4, __pyx_v_ext_type_str_kind); if (unlikely(!__pyx_t_7)) __PYX_ERR(0, 110, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_7); - __Pyx_DECREF(__pyx_t_4); __pyx_t_4 = 0; - __pyx_t_4 = __Pyx_PyObject_Dict_GetItem(__pyx_t_7, __pyx_n_u_name); if (unlikely(!__pyx_t_4)) __PYX_ERR(0, 110, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_4); - __Pyx_DECREF(__pyx_t_7); __pyx_t_7 = 0; - __Pyx_DECREF_SET(__pyx_v_ext_type_, __pyx_t_4); - __pyx_t_4 = 0; - - /* "pmercury/utils/tls_utils.pyx":109 - * ext_type_ = ext[0:4] - * ext_type_str_kind = str(int(ext_type_,16)) - * if ext_type_str_kind in imp_date_ext_data and convert: # <<<<<<<<<<<<<< - * ext_type_ = imp_date_ext_data[ext_type_str_kind]['name'] - * ext_data_ = '' - */ - } - - /* "pmercury/utils/tls_utils.pyx":111 - * if ext_type_str_kind in imp_date_ext_data and convert: - * ext_type_ = imp_date_ext_data[ext_type_str_kind]['name'] - * ext_data_ = '' # <<<<<<<<<<<<<< - * if len(ext) > 4 and convert: - * ext_data_ = parse_extension_data(ext_type_, ext[4:], mode) - */ - __Pyx_INCREF(__pyx_kp_u__19); - __Pyx_XDECREF_SET(__pyx_v_ext_data_, __pyx_kp_u__19); - - /* "pmercury/utils/tls_utils.pyx":112 - * ext_type_ = imp_date_ext_data[ext_type_str_kind]['name'] - * ext_data_ = '' - * if len(ext) > 4 and convert: # <<<<<<<<<<<<<< - * ext_data_ = parse_extension_data(ext_type_, ext[4:], mode) - * elif len(ext) > 4: - */ - __pyx_t_5 = PyObject_Length(__pyx_v_ext); if (unlikely(__pyx_t_5 == ((Py_ssize_t)-1))) __PYX_ERR(0, 112, __pyx_L1_error) - __pyx_t_9 = ((__pyx_t_5 > 4) != 0); - if (__pyx_t_9) { - } else { - __pyx_t_6 = __pyx_t_9; - goto __pyx_L10_bool_binop_done; - } - __pyx_t_9 = __Pyx_PyObject_IsTrue(__pyx_v_convert); if (unlikely(__pyx_t_9 < 0)) __PYX_ERR(0, 112, __pyx_L1_error) - __pyx_t_6 = __pyx_t_9; - __pyx_L10_bool_binop_done:; - if (__pyx_t_6) { - - /* "pmercury/utils/tls_utils.pyx":113 - * ext_data_ = '' - * if len(ext) > 4 and convert: - * ext_data_ = parse_extension_data(ext_type_, ext[4:], mode) # <<<<<<<<<<<<<< - * elif len(ext) > 4: - * ext_data_ = ext[4:] - */ - __Pyx_GetModuleGlobalName(__pyx_t_7, __pyx_n_s_parse_extension_data); if (unlikely(!__pyx_t_7)) __PYX_ERR(0, 113, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_7); - __pyx_t_10 = __Pyx_PyObject_GetSlice(__pyx_v_ext, 4, 0, NULL, NULL, &__pyx_slice__20, 1, 0, 1); if (unlikely(!__pyx_t_10)) __PYX_ERR(0, 113, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_10); - __pyx_t_11 = NULL; - __pyx_t_12 = 0; - if (CYTHON_UNPACK_METHODS && unlikely(PyMethod_Check(__pyx_t_7))) { - __pyx_t_11 = PyMethod_GET_SELF(__pyx_t_7); - if (likely(__pyx_t_11)) { - PyObject* function = PyMethod_GET_FUNCTION(__pyx_t_7); - __Pyx_INCREF(__pyx_t_11); - __Pyx_INCREF(function); - __Pyx_DECREF_SET(__pyx_t_7, function); - __pyx_t_12 = 1; - } - } - #if CYTHON_FAST_PYCALL - if (PyFunction_Check(__pyx_t_7)) { - PyObject *__pyx_temp[4] = {__pyx_t_11, __pyx_v_ext_type_, __pyx_t_10, __pyx_v_mode}; - __pyx_t_4 = __Pyx_PyFunction_FastCall(__pyx_t_7, __pyx_temp+1-__pyx_t_12, 3+__pyx_t_12); if (unlikely(!__pyx_t_4)) __PYX_ERR(0, 113, __pyx_L1_error) - __Pyx_XDECREF(__pyx_t_11); __pyx_t_11 = 0; - __Pyx_GOTREF(__pyx_t_4); - __Pyx_DECREF(__pyx_t_10); __pyx_t_10 = 0; - } else - #endif - #if CYTHON_FAST_PYCCALL - if (__Pyx_PyFastCFunction_Check(__pyx_t_7)) { - PyObject *__pyx_temp[4] = {__pyx_t_11, __pyx_v_ext_type_, __pyx_t_10, __pyx_v_mode}; - __pyx_t_4 = __Pyx_PyCFunction_FastCall(__pyx_t_7, __pyx_temp+1-__pyx_t_12, 3+__pyx_t_12); if (unlikely(!__pyx_t_4)) __PYX_ERR(0, 113, __pyx_L1_error) - __Pyx_XDECREF(__pyx_t_11); __pyx_t_11 = 0; - __Pyx_GOTREF(__pyx_t_4); - __Pyx_DECREF(__pyx_t_10); __pyx_t_10 = 0; - } else - #endif - { - __pyx_t_13 = PyTuple_New(3+__pyx_t_12); if (unlikely(!__pyx_t_13)) __PYX_ERR(0, 113, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_13); - if (__pyx_t_11) { - __Pyx_GIVEREF(__pyx_t_11); PyTuple_SET_ITEM(__pyx_t_13, 0, __pyx_t_11); __pyx_t_11 = NULL; - } - __Pyx_INCREF(__pyx_v_ext_type_); - __Pyx_GIVEREF(__pyx_v_ext_type_); - PyTuple_SET_ITEM(__pyx_t_13, 0+__pyx_t_12, __pyx_v_ext_type_); - __Pyx_GIVEREF(__pyx_t_10); - PyTuple_SET_ITEM(__pyx_t_13, 1+__pyx_t_12, __pyx_t_10); - __Pyx_INCREF(__pyx_v_mode); - __Pyx_GIVEREF(__pyx_v_mode); - PyTuple_SET_ITEM(__pyx_t_13, 2+__pyx_t_12, __pyx_v_mode); - __pyx_t_10 = 0; - __pyx_t_4 = __Pyx_PyObject_Call(__pyx_t_7, __pyx_t_13, NULL); if (unlikely(!__pyx_t_4)) __PYX_ERR(0, 113, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_4); - __Pyx_DECREF(__pyx_t_13); __pyx_t_13 = 0; - } - __Pyx_DECREF(__pyx_t_7); __pyx_t_7 = 0; - __Pyx_DECREF_SET(__pyx_v_ext_data_, __pyx_t_4); - __pyx_t_4 = 0; - - /* "pmercury/utils/tls_utils.pyx":112 - * ext_type_ = imp_date_ext_data[ext_type_str_kind]['name'] - * ext_data_ = '' - * if len(ext) > 4 and convert: # <<<<<<<<<<<<<< - * ext_data_ = parse_extension_data(ext_type_, ext[4:], mode) - * elif len(ext) > 4: - */ - goto __pyx_L9; - } - - /* "pmercury/utils/tls_utils.pyx":114 - * if len(ext) > 4 and convert: - * ext_data_ = parse_extension_data(ext_type_, ext[4:], mode) - * elif len(ext) > 4: # <<<<<<<<<<<<<< - * ext_data_ = ext[4:] - * - */ - __pyx_t_5 = PyObject_Length(__pyx_v_ext); if (unlikely(__pyx_t_5 == ((Py_ssize_t)-1))) __PYX_ERR(0, 114, __pyx_L1_error) - __pyx_t_6 = ((__pyx_t_5 > 4) != 0); - if (__pyx_t_6) { - - /* "pmercury/utils/tls_utils.pyx":115 - * ext_data_ = parse_extension_data(ext_type_, ext[4:], mode) - * elif len(ext) > 4: - * ext_data_ = ext[4:] # <<<<<<<<<<<<<< - * - * ext_l_.append({ext_type_: ext_data_}) - */ - __pyx_t_4 = __Pyx_PyObject_GetSlice(__pyx_v_ext, 4, 0, NULL, NULL, &__pyx_slice__20, 1, 0, 1); if (unlikely(!__pyx_t_4)) __PYX_ERR(0, 115, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_4); - __Pyx_DECREF_SET(__pyx_v_ext_data_, __pyx_t_4); - __pyx_t_4 = 0; - - /* "pmercury/utils/tls_utils.pyx":114 - * if len(ext) > 4 and convert: - * ext_data_ = parse_extension_data(ext_type_, ext[4:], mode) - * elif len(ext) > 4: # <<<<<<<<<<<<<< - * ext_data_ = ext[4:] - * - */ - } - __pyx_L9:; - - /* "pmercury/utils/tls_utils.pyx":117 - * ext_data_ = ext[4:] - * - * ext_l_.append({ext_type_: ext_data_}) # <<<<<<<<<<<<<< - * - * return ext_l_ - */ - __pyx_t_4 = __Pyx_PyDict_NewPresized(1); if (unlikely(!__pyx_t_4)) __PYX_ERR(0, 117, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_4); - if (PyDict_SetItem(__pyx_t_4, __pyx_v_ext_type_, __pyx_v_ext_data_) < 0) __PYX_ERR(0, 117, __pyx_L1_error) - __pyx_t_14 = __Pyx_PyList_Append(__pyx_v_ext_l_, __pyx_t_4); if (unlikely(__pyx_t_14 == ((int)-1))) __PYX_ERR(0, 117, __pyx_L1_error) - __Pyx_DECREF(__pyx_t_4); __pyx_t_4 = 0; - - /* "pmercury/utils/tls_utils.pyx":104 - * def get_ext_from_str(exts_, convert=True, mode='client'): - * ext_l_ = [] - * for ext in exts_: # <<<<<<<<<<<<<< - * if len(ext) == 0: - * break - */ - } - __pyx_L4_break:; - __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0; - - /* "pmercury/utils/tls_utils.pyx":119 - * ext_l_.append({ext_type_: ext_data_}) - * - * return ext_l_ # <<<<<<<<<<<<<< - * - * - */ - __Pyx_XDECREF(__pyx_r); - __Pyx_INCREF(__pyx_v_ext_l_); - __pyx_r = __pyx_v_ext_l_; - goto __pyx_L0; - - /* "pmercury/utils/tls_utils.pyx":102 - * - * - * def get_ext_from_str(exts_, convert=True, mode='client'): # <<<<<<<<<<<<<< - * ext_l_ = [] - * for ext in exts_: - */ - - /* function exit code */ - __pyx_L1_error:; - __Pyx_XDECREF(__pyx_t_1); - __Pyx_XDECREF(__pyx_t_4); - __Pyx_XDECREF(__pyx_t_7); - __Pyx_XDECREF(__pyx_t_10); - __Pyx_XDECREF(__pyx_t_11); - __Pyx_XDECREF(__pyx_t_13); - __Pyx_AddTraceback("pmercury.utils.tls_utils.get_ext_from_str", __pyx_clineno, __pyx_lineno, __pyx_filename); - __pyx_r = NULL; - __pyx_L0:; - __Pyx_XDECREF(__pyx_v_ext_l_); - __Pyx_XDECREF(__pyx_v_ext); - __Pyx_XDECREF(__pyx_v_ext_type_); - __Pyx_XDECREF(__pyx_v_ext_type_str_kind); - __Pyx_XDECREF(__pyx_v_ext_data_); - __Pyx_XGIVEREF(__pyx_r); - __Pyx_RefNannyFinishContext(); - return __pyx_r; -} - -/* "pmercury/utils/tls_utils.pyx":122 - * - * - * def get_implementation_date(cs_str_): # @TODO: add extension # <<<<<<<<<<<<<< - * dates_ = set([]) - * for i in range(0,len(cs_str_),4): - */ - -/* Python wrapper */ -static PyObject *__pyx_pw_8pmercury_5utils_9tls_utils_13get_implementation_date(PyObject *__pyx_self, PyObject *__pyx_v_cs_str_); /*proto*/ -static PyMethodDef __pyx_mdef_8pmercury_5utils_9tls_utils_13get_implementation_date = {"get_implementation_date", (PyCFunction)__pyx_pw_8pmercury_5utils_9tls_utils_13get_implementation_date, METH_O, 0}; -static PyObject *__pyx_pw_8pmercury_5utils_9tls_utils_13get_implementation_date(PyObject *__pyx_self, PyObject *__pyx_v_cs_str_) { - PyObject *__pyx_r = 0; - __Pyx_RefNannyDeclarations - __Pyx_RefNannySetupContext("get_implementation_date (wrapper)", 0); - __pyx_r = __pyx_pf_8pmercury_5utils_9tls_utils_12get_implementation_date(__pyx_self, ((PyObject *)__pyx_v_cs_str_)); - - /* function exit code */ - __Pyx_RefNannyFinishContext(); - return __pyx_r; -} - -static PyObject *__pyx_pf_8pmercury_5utils_9tls_utils_12get_implementation_date(CYTHON_UNUSED PyObject *__pyx_self, PyObject *__pyx_v_cs_str_) { - PyObject *__pyx_v_dates_ = NULL; - Py_ssize_t __pyx_v_i; - PyObject *__pyx_v_cs_ = NULL; - PyObject *__pyx_r = NULL; - __Pyx_RefNannyDeclarations - PyObject *__pyx_t_1 = NULL; - Py_ssize_t __pyx_t_2; - Py_ssize_t __pyx_t_3; - Py_ssize_t __pyx_t_4; - int __pyx_t_5; - int __pyx_t_6; - PyObject *__pyx_t_7 = NULL; - PyObject *__pyx_t_8 = NULL; - PyObject *__pyx_t_9 = NULL; - __Pyx_RefNannySetupContext("get_implementation_date", 0); - - /* "pmercury/utils/tls_utils.pyx":123 - * - * def get_implementation_date(cs_str_): # @TODO: add extension - * dates_ = set([]) # <<<<<<<<<<<<<< - * for i in range(0,len(cs_str_),4): - * cs_ = cs_str_[i:i+4] - */ - __pyx_t_1 = PySet_New(0); if (unlikely(!__pyx_t_1)) __PYX_ERR(0, 123, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_1); - __pyx_v_dates_ = __pyx_t_1; - __pyx_t_1 = 0; - - /* "pmercury/utils/tls_utils.pyx":124 - * def get_implementation_date(cs_str_): # @TODO: add extension - * dates_ = set([]) - * for i in range(0,len(cs_str_),4): # <<<<<<<<<<<<<< - * cs_ = cs_str_[i:i+4] - * if cs_ in imp_date_cs_data: - */ - __pyx_t_2 = PyObject_Length(__pyx_v_cs_str_); if (unlikely(__pyx_t_2 == ((Py_ssize_t)-1))) __PYX_ERR(0, 124, __pyx_L1_error) - __pyx_t_3 = __pyx_t_2; - for (__pyx_t_4 = 0; __pyx_t_4 < __pyx_t_3; __pyx_t_4+=4) { - __pyx_v_i = __pyx_t_4; - - /* "pmercury/utils/tls_utils.pyx":125 - * dates_ = set([]) - * for i in range(0,len(cs_str_),4): - * cs_ = cs_str_[i:i+4] # <<<<<<<<<<<<<< - * if cs_ in imp_date_cs_data: - * dates_.add(imp_date_cs_data[cs_]['date']) - */ - __pyx_t_1 = __Pyx_PyObject_GetSlice(__pyx_v_cs_str_, __pyx_v_i, (__pyx_v_i + 4), NULL, NULL, NULL, 1, 1, 1); if (unlikely(!__pyx_t_1)) __PYX_ERR(0, 125, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_1); - __Pyx_XDECREF_SET(__pyx_v_cs_, __pyx_t_1); - __pyx_t_1 = 0; - - /* "pmercury/utils/tls_utils.pyx":126 - * for i in range(0,len(cs_str_),4): - * cs_ = cs_str_[i:i+4] - * if cs_ in imp_date_cs_data: # <<<<<<<<<<<<<< - * dates_.add(imp_date_cs_data[cs_]['date']) - * dates_ = list(dates_) - */ - __Pyx_GetModuleGlobalName(__pyx_t_1, __pyx_n_s_imp_date_cs_data); if (unlikely(!__pyx_t_1)) __PYX_ERR(0, 126, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_1); - __pyx_t_5 = (__Pyx_PySequence_ContainsTF(__pyx_v_cs_, __pyx_t_1, Py_EQ)); if (unlikely(__pyx_t_5 < 0)) __PYX_ERR(0, 126, __pyx_L1_error) - __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0; - __pyx_t_6 = (__pyx_t_5 != 0); - if (__pyx_t_6) { - - /* "pmercury/utils/tls_utils.pyx":127 - * cs_ = cs_str_[i:i+4] - * if cs_ in imp_date_cs_data: - * dates_.add(imp_date_cs_data[cs_]['date']) # <<<<<<<<<<<<<< - * dates_ = list(dates_) - * dates_.sort() - */ - __pyx_t_7 = __Pyx_PyObject_GetAttrStr(__pyx_v_dates_, __pyx_n_s_add); if (unlikely(!__pyx_t_7)) __PYX_ERR(0, 127, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_7); - __Pyx_GetModuleGlobalName(__pyx_t_8, __pyx_n_s_imp_date_cs_data); if (unlikely(!__pyx_t_8)) __PYX_ERR(0, 127, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_8); - __pyx_t_9 = __Pyx_PyObject_GetItem(__pyx_t_8, __pyx_v_cs_); if (unlikely(!__pyx_t_9)) __PYX_ERR(0, 127, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_9); - __Pyx_DECREF(__pyx_t_8); __pyx_t_8 = 0; - __pyx_t_8 = __Pyx_PyObject_Dict_GetItem(__pyx_t_9, __pyx_n_u_date); if (unlikely(!__pyx_t_8)) __PYX_ERR(0, 127, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_8); - __Pyx_DECREF(__pyx_t_9); __pyx_t_9 = 0; - __pyx_t_9 = NULL; - if (CYTHON_UNPACK_METHODS && likely(PyMethod_Check(__pyx_t_7))) { - __pyx_t_9 = PyMethod_GET_SELF(__pyx_t_7); - if (likely(__pyx_t_9)) { - PyObject* function = PyMethod_GET_FUNCTION(__pyx_t_7); - __Pyx_INCREF(__pyx_t_9); - __Pyx_INCREF(function); - __Pyx_DECREF_SET(__pyx_t_7, function); - } - } - __pyx_t_1 = (__pyx_t_9) ? __Pyx_PyObject_Call2Args(__pyx_t_7, __pyx_t_9, __pyx_t_8) : __Pyx_PyObject_CallOneArg(__pyx_t_7, __pyx_t_8); - __Pyx_XDECREF(__pyx_t_9); __pyx_t_9 = 0; - __Pyx_DECREF(__pyx_t_8); __pyx_t_8 = 0; - if (unlikely(!__pyx_t_1)) __PYX_ERR(0, 127, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_1); - __Pyx_DECREF(__pyx_t_7); __pyx_t_7 = 0; - __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0; - - /* "pmercury/utils/tls_utils.pyx":126 - * for i in range(0,len(cs_str_),4): - * cs_ = cs_str_[i:i+4] - * if cs_ in imp_date_cs_data: # <<<<<<<<<<<<<< - * dates_.add(imp_date_cs_data[cs_]['date']) - * dates_ = list(dates_) - */ - } - } - - /* "pmercury/utils/tls_utils.pyx":128 - * if cs_ in imp_date_cs_data: - * dates_.add(imp_date_cs_data[cs_]['date']) - * dates_ = list(dates_) # <<<<<<<<<<<<<< - * dates_.sort() - * if len(dates_) > 0: - */ - __pyx_t_1 = PySequence_List(__pyx_v_dates_); if (unlikely(!__pyx_t_1)) __PYX_ERR(0, 128, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_1); - __Pyx_DECREF_SET(__pyx_v_dates_, __pyx_t_1); - __pyx_t_1 = 0; - - /* "pmercury/utils/tls_utils.pyx":129 - * dates_.add(imp_date_cs_data[cs_]['date']) - * dates_ = list(dates_) - * dates_.sort() # <<<<<<<<<<<<<< - * if len(dates_) > 0: - * return dates_[-1], dates_[0] - */ - __pyx_t_7 = __Pyx_PyObject_GetAttrStr(__pyx_v_dates_, __pyx_n_s_sort); if (unlikely(!__pyx_t_7)) __PYX_ERR(0, 129, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_7); - __pyx_t_8 = NULL; - if (CYTHON_UNPACK_METHODS && likely(PyMethod_Check(__pyx_t_7))) { - __pyx_t_8 = PyMethod_GET_SELF(__pyx_t_7); - if (likely(__pyx_t_8)) { - PyObject* function = PyMethod_GET_FUNCTION(__pyx_t_7); - __Pyx_INCREF(__pyx_t_8); - __Pyx_INCREF(function); - __Pyx_DECREF_SET(__pyx_t_7, function); - } - } - __pyx_t_1 = (__pyx_t_8) ? __Pyx_PyObject_CallOneArg(__pyx_t_7, __pyx_t_8) : __Pyx_PyObject_CallNoArg(__pyx_t_7); - __Pyx_XDECREF(__pyx_t_8); __pyx_t_8 = 0; - if (unlikely(!__pyx_t_1)) __PYX_ERR(0, 129, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_1); - __Pyx_DECREF(__pyx_t_7); __pyx_t_7 = 0; - __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0; - - /* "pmercury/utils/tls_utils.pyx":130 - * dates_ = list(dates_) - * dates_.sort() - * if len(dates_) > 0: # <<<<<<<<<<<<<< - * return dates_[-1], dates_[0] - * else: - */ - __pyx_t_2 = PyObject_Length(__pyx_v_dates_); if (unlikely(__pyx_t_2 == ((Py_ssize_t)-1))) __PYX_ERR(0, 130, __pyx_L1_error) - __pyx_t_6 = ((__pyx_t_2 > 0) != 0); - if (__pyx_t_6) { - - /* "pmercury/utils/tls_utils.pyx":131 - * dates_.sort() - * if len(dates_) > 0: - * return dates_[-1], dates_[0] # <<<<<<<<<<<<<< - * else: - * return None, None - */ - __Pyx_XDECREF(__pyx_r); - __pyx_t_1 = __Pyx_GetItemInt(__pyx_v_dates_, -1L, long, 1, __Pyx_PyInt_From_long, 0, 1, 1); if (unlikely(!__pyx_t_1)) __PYX_ERR(0, 131, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_1); - __pyx_t_7 = __Pyx_GetItemInt(__pyx_v_dates_, 0, long, 1, __Pyx_PyInt_From_long, 0, 0, 1); if (unlikely(!__pyx_t_7)) __PYX_ERR(0, 131, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_7); - __pyx_t_8 = PyTuple_New(2); if (unlikely(!__pyx_t_8)) __PYX_ERR(0, 131, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_8); - __Pyx_GIVEREF(__pyx_t_1); - PyTuple_SET_ITEM(__pyx_t_8, 0, __pyx_t_1); - __Pyx_GIVEREF(__pyx_t_7); - PyTuple_SET_ITEM(__pyx_t_8, 1, __pyx_t_7); - __pyx_t_1 = 0; - __pyx_t_7 = 0; - __pyx_r = __pyx_t_8; - __pyx_t_8 = 0; - goto __pyx_L0; - - /* "pmercury/utils/tls_utils.pyx":130 - * dates_ = list(dates_) - * dates_.sort() - * if len(dates_) > 0: # <<<<<<<<<<<<<< - * return dates_[-1], dates_[0] - * else: - */ - } - - /* "pmercury/utils/tls_utils.pyx":133 - * return dates_[-1], dates_[0] - * else: - * return None, None # <<<<<<<<<<<<<< - * - * - */ - /*else*/ { - __Pyx_XDECREF(__pyx_r); - __Pyx_INCREF(__pyx_tuple__21); - __pyx_r = __pyx_tuple__21; - goto __pyx_L0; - } - - /* "pmercury/utils/tls_utils.pyx":122 - * - * - * def get_implementation_date(cs_str_): # @TODO: add extension # <<<<<<<<<<<<<< - * dates_ = set([]) - * for i in range(0,len(cs_str_),4): - */ - - /* function exit code */ - __pyx_L1_error:; - __Pyx_XDECREF(__pyx_t_1); - __Pyx_XDECREF(__pyx_t_7); - __Pyx_XDECREF(__pyx_t_8); - __Pyx_XDECREF(__pyx_t_9); - __Pyx_AddTraceback("pmercury.utils.tls_utils.get_implementation_date", __pyx_clineno, __pyx_lineno, __pyx_filename); - __pyx_r = NULL; - __pyx_L0:; - __Pyx_XDECREF(__pyx_v_dates_); - __Pyx_XDECREF(__pyx_v_cs_); - __Pyx_XGIVEREF(__pyx_r); - __Pyx_RefNannyFinishContext(); - return __pyx_r; -} - -/* "pmercury/utils/tls_utils.pyx":136 - * - * - * def parse_extension_data(ext_type, ext_data_, mode): # <<<<<<<<<<<<<< - * ext_len = int(ext_data_[0:4],16) - * ext_data = ext_data_[4:] - */ - -/* Python wrapper */ -static PyObject *__pyx_pw_8pmercury_5utils_9tls_utils_15parse_extension_data(PyObject *__pyx_self, PyObject *__pyx_args, PyObject *__pyx_kwds); /*proto*/ -static PyMethodDef __pyx_mdef_8pmercury_5utils_9tls_utils_15parse_extension_data = {"parse_extension_data", (PyCFunction)(void*)(PyCFunctionWithKeywords)__pyx_pw_8pmercury_5utils_9tls_utils_15parse_extension_data, METH_VARARGS|METH_KEYWORDS, 0}; -static PyObject *__pyx_pw_8pmercury_5utils_9tls_utils_15parse_extension_data(PyObject *__pyx_self, PyObject *__pyx_args, PyObject *__pyx_kwds) { - PyObject *__pyx_v_ext_type = 0; - PyObject *__pyx_v_ext_data_ = 0; - PyObject *__pyx_v_mode = 0; - PyObject *__pyx_r = 0; - __Pyx_RefNannyDeclarations - __Pyx_RefNannySetupContext("parse_extension_data (wrapper)", 0); - { - static PyObject **__pyx_pyargnames[] = {&__pyx_n_s_ext_type,&__pyx_n_s_ext_data,&__pyx_n_s_mode,0}; - PyObject* values[3] = {0,0,0}; - if (unlikely(__pyx_kwds)) { - Py_ssize_t kw_args; - const Py_ssize_t pos_args = PyTuple_GET_SIZE(__pyx_args); - switch (pos_args) { - case 3: values[2] = PyTuple_GET_ITEM(__pyx_args, 2); - CYTHON_FALLTHROUGH; - case 2: values[1] = PyTuple_GET_ITEM(__pyx_args, 1); - CYTHON_FALLTHROUGH; - case 1: values[0] = PyTuple_GET_ITEM(__pyx_args, 0); - CYTHON_FALLTHROUGH; - case 0: break; - default: goto __pyx_L5_argtuple_error; - } - kw_args = PyDict_Size(__pyx_kwds); - switch (pos_args) { - case 0: - if (likely((values[0] = __Pyx_PyDict_GetItemStr(__pyx_kwds, __pyx_n_s_ext_type)) != 0)) kw_args--; - else goto __pyx_L5_argtuple_error; - CYTHON_FALLTHROUGH; - case 1: - if (likely((values[1] = __Pyx_PyDict_GetItemStr(__pyx_kwds, __pyx_n_s_ext_data)) != 0)) kw_args--; - else { - __Pyx_RaiseArgtupleInvalid("parse_extension_data", 1, 3, 3, 1); __PYX_ERR(0, 136, __pyx_L3_error) - } - CYTHON_FALLTHROUGH; - case 2: - if (likely((values[2] = __Pyx_PyDict_GetItemStr(__pyx_kwds, __pyx_n_s_mode)) != 0)) kw_args--; - else { - __Pyx_RaiseArgtupleInvalid("parse_extension_data", 1, 3, 3, 2); __PYX_ERR(0, 136, __pyx_L3_error) - } - } - if (unlikely(kw_args > 0)) { - if (unlikely(__Pyx_ParseOptionalKeywords(__pyx_kwds, __pyx_pyargnames, 0, values, pos_args, "parse_extension_data") < 0)) __PYX_ERR(0, 136, __pyx_L3_error) - } - } else if (PyTuple_GET_SIZE(__pyx_args) != 3) { - goto __pyx_L5_argtuple_error; - } else { - values[0] = PyTuple_GET_ITEM(__pyx_args, 0); - values[1] = PyTuple_GET_ITEM(__pyx_args, 1); - values[2] = PyTuple_GET_ITEM(__pyx_args, 2); - } - __pyx_v_ext_type = values[0]; - __pyx_v_ext_data_ = values[1]; - __pyx_v_mode = values[2]; - } - goto __pyx_L4_argument_unpacking_done; - __pyx_L5_argtuple_error:; - __Pyx_RaiseArgtupleInvalid("parse_extension_data", 1, 3, 3, PyTuple_GET_SIZE(__pyx_args)); __PYX_ERR(0, 136, __pyx_L3_error) - __pyx_L3_error:; - __Pyx_AddTraceback("pmercury.utils.tls_utils.parse_extension_data", __pyx_clineno, __pyx_lineno, __pyx_filename); - __Pyx_RefNannyFinishContext(); - return NULL; - __pyx_L4_argument_unpacking_done:; - __pyx_r = __pyx_pf_8pmercury_5utils_9tls_utils_14parse_extension_data(__pyx_self, __pyx_v_ext_type, __pyx_v_ext_data_, __pyx_v_mode); - - /* function exit code */ - __Pyx_RefNannyFinishContext(); - return __pyx_r; -} - -static PyObject *__pyx_pf_8pmercury_5utils_9tls_utils_14parse_extension_data(CYTHON_UNUSED PyObject *__pyx_self, PyObject *__pyx_v_ext_type, PyObject *__pyx_v_ext_data_, PyObject *__pyx_v_mode) { - PyObject *__pyx_v_ext_len = NULL; - PyObject *__pyx_v_ext_data = NULL; - PyObject *__pyx_r = NULL; - __Pyx_RefNannyDeclarations - PyObject *__pyx_t_1 = NULL; - PyObject *__pyx_t_2 = NULL; - int __pyx_t_3; - PyObject *__pyx_t_4 = NULL; - int __pyx_t_5; - PyObject *__pyx_t_6 = NULL; - __Pyx_RefNannySetupContext("parse_extension_data", 0); - - /* "pmercury/utils/tls_utils.pyx":137 - * - * def parse_extension_data(ext_type, ext_data_, mode): - * ext_len = int(ext_data_[0:4],16) # <<<<<<<<<<<<<< - * ext_data = ext_data_[4:] - * - */ - __pyx_t_1 = __Pyx_PyObject_GetSlice(__pyx_v_ext_data_, 0, 4, NULL, NULL, &__pyx_slice__18, 1, 1, 1); if (unlikely(!__pyx_t_1)) __PYX_ERR(0, 137, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_1); - __pyx_t_2 = PyTuple_New(2); if (unlikely(!__pyx_t_2)) __PYX_ERR(0, 137, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_2); - __Pyx_GIVEREF(__pyx_t_1); - PyTuple_SET_ITEM(__pyx_t_2, 0, __pyx_t_1); - __Pyx_INCREF(__pyx_int_16); - __Pyx_GIVEREF(__pyx_int_16); - PyTuple_SET_ITEM(__pyx_t_2, 1, __pyx_int_16); - __pyx_t_1 = 0; - __pyx_t_1 = __Pyx_PyObject_Call(((PyObject *)(&PyInt_Type)), __pyx_t_2, NULL); if (unlikely(!__pyx_t_1)) __PYX_ERR(0, 137, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_1); - __Pyx_DECREF(__pyx_t_2); __pyx_t_2 = 0; - __pyx_v_ext_len = __pyx_t_1; - __pyx_t_1 = 0; - - /* "pmercury/utils/tls_utils.pyx":138 - * def parse_extension_data(ext_type, ext_data_, mode): - * ext_len = int(ext_data_[0:4],16) - * ext_data = ext_data_[4:] # <<<<<<<<<<<<<< - * - * if ext_type == 'application_layer_protocol_negotiation': - */ - __pyx_t_1 = __Pyx_PyObject_GetSlice(__pyx_v_ext_data_, 4, 0, NULL, NULL, &__pyx_slice__20, 1, 0, 1); if (unlikely(!__pyx_t_1)) __PYX_ERR(0, 138, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_1); - __pyx_v_ext_data = __pyx_t_1; - __pyx_t_1 = 0; - - /* "pmercury/utils/tls_utils.pyx":140 - * ext_data = ext_data_[4:] - * - * if ext_type == 'application_layer_protocol_negotiation': # <<<<<<<<<<<<<< - * ext_data = parse_application_layer_protocol_negotiation(ext_data, ext_len) - * elif ext_type == 'signature_algorithms': - */ - __pyx_t_3 = (__Pyx_PyUnicode_Equals(__pyx_v_ext_type, __pyx_n_u_application_layer_protocol_negot, Py_EQ)); if (unlikely(__pyx_t_3 < 0)) __PYX_ERR(0, 140, __pyx_L1_error) - if (__pyx_t_3) { - - /* "pmercury/utils/tls_utils.pyx":141 - * - * if ext_type == 'application_layer_protocol_negotiation': - * ext_data = parse_application_layer_protocol_negotiation(ext_data, ext_len) # <<<<<<<<<<<<<< - * elif ext_type == 'signature_algorithms': - * ext_data = signature_algorithms(ext_data, ext_len) - */ - __Pyx_GetModuleGlobalName(__pyx_t_2, __pyx_n_s_parse_application_layer_protocol); if (unlikely(!__pyx_t_2)) __PYX_ERR(0, 141, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_2); - __pyx_t_4 = NULL; - __pyx_t_5 = 0; - if (CYTHON_UNPACK_METHODS && unlikely(PyMethod_Check(__pyx_t_2))) { - __pyx_t_4 = PyMethod_GET_SELF(__pyx_t_2); - if (likely(__pyx_t_4)) { - PyObject* function = PyMethod_GET_FUNCTION(__pyx_t_2); - __Pyx_INCREF(__pyx_t_4); - __Pyx_INCREF(function); - __Pyx_DECREF_SET(__pyx_t_2, function); - __pyx_t_5 = 1; - } - } - #if CYTHON_FAST_PYCALL - if (PyFunction_Check(__pyx_t_2)) { - PyObject *__pyx_temp[3] = {__pyx_t_4, __pyx_v_ext_data, __pyx_v_ext_len}; - __pyx_t_1 = __Pyx_PyFunction_FastCall(__pyx_t_2, __pyx_temp+1-__pyx_t_5, 2+__pyx_t_5); if (unlikely(!__pyx_t_1)) __PYX_ERR(0, 141, __pyx_L1_error) - __Pyx_XDECREF(__pyx_t_4); __pyx_t_4 = 0; - __Pyx_GOTREF(__pyx_t_1); - } else - #endif - #if CYTHON_FAST_PYCCALL - if (__Pyx_PyFastCFunction_Check(__pyx_t_2)) { - PyObject *__pyx_temp[3] = {__pyx_t_4, __pyx_v_ext_data, __pyx_v_ext_len}; - __pyx_t_1 = __Pyx_PyCFunction_FastCall(__pyx_t_2, __pyx_temp+1-__pyx_t_5, 2+__pyx_t_5); if (unlikely(!__pyx_t_1)) __PYX_ERR(0, 141, __pyx_L1_error) - __Pyx_XDECREF(__pyx_t_4); __pyx_t_4 = 0; - __Pyx_GOTREF(__pyx_t_1); - } else - #endif - { - __pyx_t_6 = PyTuple_New(2+__pyx_t_5); if (unlikely(!__pyx_t_6)) __PYX_ERR(0, 141, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_6); - if (__pyx_t_4) { - __Pyx_GIVEREF(__pyx_t_4); PyTuple_SET_ITEM(__pyx_t_6, 0, __pyx_t_4); __pyx_t_4 = NULL; - } - __Pyx_INCREF(__pyx_v_ext_data); - __Pyx_GIVEREF(__pyx_v_ext_data); - PyTuple_SET_ITEM(__pyx_t_6, 0+__pyx_t_5, __pyx_v_ext_data); - __Pyx_INCREF(__pyx_v_ext_len); - __Pyx_GIVEREF(__pyx_v_ext_len); - PyTuple_SET_ITEM(__pyx_t_6, 1+__pyx_t_5, __pyx_v_ext_len); - __pyx_t_1 = __Pyx_PyObject_Call(__pyx_t_2, __pyx_t_6, NULL); if (unlikely(!__pyx_t_1)) __PYX_ERR(0, 141, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_1); - __Pyx_DECREF(__pyx_t_6); __pyx_t_6 = 0; - } - __Pyx_DECREF(__pyx_t_2); __pyx_t_2 = 0; - __Pyx_DECREF_SET(__pyx_v_ext_data, __pyx_t_1); - __pyx_t_1 = 0; - - /* "pmercury/utils/tls_utils.pyx":140 - * ext_data = ext_data_[4:] - * - * if ext_type == 'application_layer_protocol_negotiation': # <<<<<<<<<<<<<< - * ext_data = parse_application_layer_protocol_negotiation(ext_data, ext_len) - * elif ext_type == 'signature_algorithms': - */ - goto __pyx_L3; - } - - /* "pmercury/utils/tls_utils.pyx":142 - * if ext_type == 'application_layer_protocol_negotiation': - * ext_data = parse_application_layer_protocol_negotiation(ext_data, ext_len) - * elif ext_type == 'signature_algorithms': # <<<<<<<<<<<<<< - * ext_data = signature_algorithms(ext_data, ext_len) - * elif ext_type == 'status_request': - */ - __pyx_t_3 = (__Pyx_PyUnicode_Equals(__pyx_v_ext_type, __pyx_n_u_signature_algorithms, Py_EQ)); if (unlikely(__pyx_t_3 < 0)) __PYX_ERR(0, 142, __pyx_L1_error) - if (__pyx_t_3) { - - /* "pmercury/utils/tls_utils.pyx":143 - * ext_data = parse_application_layer_protocol_negotiation(ext_data, ext_len) - * elif ext_type == 'signature_algorithms': - * ext_data = signature_algorithms(ext_data, ext_len) # <<<<<<<<<<<<<< - * elif ext_type == 'status_request': - * ext_data = status_request(ext_data, ext_len) - */ - __Pyx_GetModuleGlobalName(__pyx_t_2, __pyx_n_s_signature_algorithms); if (unlikely(!__pyx_t_2)) __PYX_ERR(0, 143, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_2); - __pyx_t_6 = NULL; - __pyx_t_5 = 0; - if (CYTHON_UNPACK_METHODS && unlikely(PyMethod_Check(__pyx_t_2))) { - __pyx_t_6 = PyMethod_GET_SELF(__pyx_t_2); - if (likely(__pyx_t_6)) { - PyObject* function = PyMethod_GET_FUNCTION(__pyx_t_2); - __Pyx_INCREF(__pyx_t_6); - __Pyx_INCREF(function); - __Pyx_DECREF_SET(__pyx_t_2, function); - __pyx_t_5 = 1; - } - } - #if CYTHON_FAST_PYCALL - if (PyFunction_Check(__pyx_t_2)) { - PyObject *__pyx_temp[3] = {__pyx_t_6, __pyx_v_ext_data, __pyx_v_ext_len}; - __pyx_t_1 = __Pyx_PyFunction_FastCall(__pyx_t_2, __pyx_temp+1-__pyx_t_5, 2+__pyx_t_5); if (unlikely(!__pyx_t_1)) __PYX_ERR(0, 143, __pyx_L1_error) - __Pyx_XDECREF(__pyx_t_6); __pyx_t_6 = 0; - __Pyx_GOTREF(__pyx_t_1); - } else - #endif - #if CYTHON_FAST_PYCCALL - if (__Pyx_PyFastCFunction_Check(__pyx_t_2)) { - PyObject *__pyx_temp[3] = {__pyx_t_6, __pyx_v_ext_data, __pyx_v_ext_len}; - __pyx_t_1 = __Pyx_PyCFunction_FastCall(__pyx_t_2, __pyx_temp+1-__pyx_t_5, 2+__pyx_t_5); if (unlikely(!__pyx_t_1)) __PYX_ERR(0, 143, __pyx_L1_error) - __Pyx_XDECREF(__pyx_t_6); __pyx_t_6 = 0; - __Pyx_GOTREF(__pyx_t_1); - } else - #endif - { - __pyx_t_4 = PyTuple_New(2+__pyx_t_5); if (unlikely(!__pyx_t_4)) __PYX_ERR(0, 143, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_4); - if (__pyx_t_6) { - __Pyx_GIVEREF(__pyx_t_6); PyTuple_SET_ITEM(__pyx_t_4, 0, __pyx_t_6); __pyx_t_6 = NULL; - } - __Pyx_INCREF(__pyx_v_ext_data); - __Pyx_GIVEREF(__pyx_v_ext_data); - PyTuple_SET_ITEM(__pyx_t_4, 0+__pyx_t_5, __pyx_v_ext_data); - __Pyx_INCREF(__pyx_v_ext_len); - __Pyx_GIVEREF(__pyx_v_ext_len); - PyTuple_SET_ITEM(__pyx_t_4, 1+__pyx_t_5, __pyx_v_ext_len); - __pyx_t_1 = __Pyx_PyObject_Call(__pyx_t_2, __pyx_t_4, NULL); if (unlikely(!__pyx_t_1)) __PYX_ERR(0, 143, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_1); - __Pyx_DECREF(__pyx_t_4); __pyx_t_4 = 0; - } - __Pyx_DECREF(__pyx_t_2); __pyx_t_2 = 0; - __Pyx_DECREF_SET(__pyx_v_ext_data, __pyx_t_1); - __pyx_t_1 = 0; - - /* "pmercury/utils/tls_utils.pyx":142 - * if ext_type == 'application_layer_protocol_negotiation': - * ext_data = parse_application_layer_protocol_negotiation(ext_data, ext_len) - * elif ext_type == 'signature_algorithms': # <<<<<<<<<<<<<< - * ext_data = signature_algorithms(ext_data, ext_len) - * elif ext_type == 'status_request': - */ - goto __pyx_L3; - } - - /* "pmercury/utils/tls_utils.pyx":144 - * elif ext_type == 'signature_algorithms': - * ext_data = signature_algorithms(ext_data, ext_len) - * elif ext_type == 'status_request': # <<<<<<<<<<<<<< - * ext_data = status_request(ext_data, ext_len) - * elif ext_type == 'ec_point_formats': - */ - __pyx_t_3 = (__Pyx_PyUnicode_Equals(__pyx_v_ext_type, __pyx_n_u_status_request, Py_EQ)); if (unlikely(__pyx_t_3 < 0)) __PYX_ERR(0, 144, __pyx_L1_error) - if (__pyx_t_3) { - - /* "pmercury/utils/tls_utils.pyx":145 - * ext_data = signature_algorithms(ext_data, ext_len) - * elif ext_type == 'status_request': - * ext_data = status_request(ext_data, ext_len) # <<<<<<<<<<<<<< - * elif ext_type == 'ec_point_formats': - * ext_data = ec_point_formats(ext_data, ext_len) - */ - __Pyx_GetModuleGlobalName(__pyx_t_2, __pyx_n_s_status_request); if (unlikely(!__pyx_t_2)) __PYX_ERR(0, 145, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_2); - __pyx_t_4 = NULL; - __pyx_t_5 = 0; - if (CYTHON_UNPACK_METHODS && unlikely(PyMethod_Check(__pyx_t_2))) { - __pyx_t_4 = PyMethod_GET_SELF(__pyx_t_2); - if (likely(__pyx_t_4)) { - PyObject* function = PyMethod_GET_FUNCTION(__pyx_t_2); - __Pyx_INCREF(__pyx_t_4); - __Pyx_INCREF(function); - __Pyx_DECREF_SET(__pyx_t_2, function); - __pyx_t_5 = 1; - } - } - #if CYTHON_FAST_PYCALL - if (PyFunction_Check(__pyx_t_2)) { - PyObject *__pyx_temp[3] = {__pyx_t_4, __pyx_v_ext_data, __pyx_v_ext_len}; - __pyx_t_1 = __Pyx_PyFunction_FastCall(__pyx_t_2, __pyx_temp+1-__pyx_t_5, 2+__pyx_t_5); if (unlikely(!__pyx_t_1)) __PYX_ERR(0, 145, __pyx_L1_error) - __Pyx_XDECREF(__pyx_t_4); __pyx_t_4 = 0; - __Pyx_GOTREF(__pyx_t_1); - } else - #endif - #if CYTHON_FAST_PYCCALL - if (__Pyx_PyFastCFunction_Check(__pyx_t_2)) { - PyObject *__pyx_temp[3] = {__pyx_t_4, __pyx_v_ext_data, __pyx_v_ext_len}; - __pyx_t_1 = __Pyx_PyCFunction_FastCall(__pyx_t_2, __pyx_temp+1-__pyx_t_5, 2+__pyx_t_5); if (unlikely(!__pyx_t_1)) __PYX_ERR(0, 145, __pyx_L1_error) - __Pyx_XDECREF(__pyx_t_4); __pyx_t_4 = 0; - __Pyx_GOTREF(__pyx_t_1); - } else - #endif - { - __pyx_t_6 = PyTuple_New(2+__pyx_t_5); if (unlikely(!__pyx_t_6)) __PYX_ERR(0, 145, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_6); - if (__pyx_t_4) { - __Pyx_GIVEREF(__pyx_t_4); PyTuple_SET_ITEM(__pyx_t_6, 0, __pyx_t_4); __pyx_t_4 = NULL; - } - __Pyx_INCREF(__pyx_v_ext_data); - __Pyx_GIVEREF(__pyx_v_ext_data); - PyTuple_SET_ITEM(__pyx_t_6, 0+__pyx_t_5, __pyx_v_ext_data); - __Pyx_INCREF(__pyx_v_ext_len); - __Pyx_GIVEREF(__pyx_v_ext_len); - PyTuple_SET_ITEM(__pyx_t_6, 1+__pyx_t_5, __pyx_v_ext_len); - __pyx_t_1 = __Pyx_PyObject_Call(__pyx_t_2, __pyx_t_6, NULL); if (unlikely(!__pyx_t_1)) __PYX_ERR(0, 145, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_1); - __Pyx_DECREF(__pyx_t_6); __pyx_t_6 = 0; - } - __Pyx_DECREF(__pyx_t_2); __pyx_t_2 = 0; - __Pyx_DECREF_SET(__pyx_v_ext_data, __pyx_t_1); - __pyx_t_1 = 0; - - /* "pmercury/utils/tls_utils.pyx":144 - * elif ext_type == 'signature_algorithms': - * ext_data = signature_algorithms(ext_data, ext_len) - * elif ext_type == 'status_request': # <<<<<<<<<<<<<< - * ext_data = status_request(ext_data, ext_len) - * elif ext_type == 'ec_point_formats': - */ - goto __pyx_L3; - } - - /* "pmercury/utils/tls_utils.pyx":146 - * elif ext_type == 'status_request': - * ext_data = status_request(ext_data, ext_len) - * elif ext_type == 'ec_point_formats': # <<<<<<<<<<<<<< - * ext_data = ec_point_formats(ext_data, ext_len) - * elif ext_type == 'key_share': - */ - __pyx_t_3 = (__Pyx_PyUnicode_Equals(__pyx_v_ext_type, __pyx_n_u_ec_point_formats, Py_EQ)); if (unlikely(__pyx_t_3 < 0)) __PYX_ERR(0, 146, __pyx_L1_error) - if (__pyx_t_3) { - - /* "pmercury/utils/tls_utils.pyx":147 - * ext_data = status_request(ext_data, ext_len) - * elif ext_type == 'ec_point_formats': - * ext_data = ec_point_formats(ext_data, ext_len) # <<<<<<<<<<<<<< - * elif ext_type == 'key_share': - * ext_data = key_share_client(ext_data, ext_len) - */ - __Pyx_GetModuleGlobalName(__pyx_t_2, __pyx_n_s_ec_point_formats); if (unlikely(!__pyx_t_2)) __PYX_ERR(0, 147, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_2); - __pyx_t_6 = NULL; - __pyx_t_5 = 0; - if (CYTHON_UNPACK_METHODS && unlikely(PyMethod_Check(__pyx_t_2))) { - __pyx_t_6 = PyMethod_GET_SELF(__pyx_t_2); - if (likely(__pyx_t_6)) { - PyObject* function = PyMethod_GET_FUNCTION(__pyx_t_2); - __Pyx_INCREF(__pyx_t_6); - __Pyx_INCREF(function); - __Pyx_DECREF_SET(__pyx_t_2, function); - __pyx_t_5 = 1; - } - } - #if CYTHON_FAST_PYCALL - if (PyFunction_Check(__pyx_t_2)) { - PyObject *__pyx_temp[3] = {__pyx_t_6, __pyx_v_ext_data, __pyx_v_ext_len}; - __pyx_t_1 = __Pyx_PyFunction_FastCall(__pyx_t_2, __pyx_temp+1-__pyx_t_5, 2+__pyx_t_5); if (unlikely(!__pyx_t_1)) __PYX_ERR(0, 147, __pyx_L1_error) - __Pyx_XDECREF(__pyx_t_6); __pyx_t_6 = 0; - __Pyx_GOTREF(__pyx_t_1); - } else - #endif - #if CYTHON_FAST_PYCCALL - if (__Pyx_PyFastCFunction_Check(__pyx_t_2)) { - PyObject *__pyx_temp[3] = {__pyx_t_6, __pyx_v_ext_data, __pyx_v_ext_len}; - __pyx_t_1 = __Pyx_PyCFunction_FastCall(__pyx_t_2, __pyx_temp+1-__pyx_t_5, 2+__pyx_t_5); if (unlikely(!__pyx_t_1)) __PYX_ERR(0, 147, __pyx_L1_error) - __Pyx_XDECREF(__pyx_t_6); __pyx_t_6 = 0; - __Pyx_GOTREF(__pyx_t_1); - } else - #endif - { - __pyx_t_4 = PyTuple_New(2+__pyx_t_5); if (unlikely(!__pyx_t_4)) __PYX_ERR(0, 147, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_4); - if (__pyx_t_6) { - __Pyx_GIVEREF(__pyx_t_6); PyTuple_SET_ITEM(__pyx_t_4, 0, __pyx_t_6); __pyx_t_6 = NULL; - } - __Pyx_INCREF(__pyx_v_ext_data); - __Pyx_GIVEREF(__pyx_v_ext_data); - PyTuple_SET_ITEM(__pyx_t_4, 0+__pyx_t_5, __pyx_v_ext_data); - __Pyx_INCREF(__pyx_v_ext_len); - __Pyx_GIVEREF(__pyx_v_ext_len); - PyTuple_SET_ITEM(__pyx_t_4, 1+__pyx_t_5, __pyx_v_ext_len); - __pyx_t_1 = __Pyx_PyObject_Call(__pyx_t_2, __pyx_t_4, NULL); if (unlikely(!__pyx_t_1)) __PYX_ERR(0, 147, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_1); - __Pyx_DECREF(__pyx_t_4); __pyx_t_4 = 0; - } - __Pyx_DECREF(__pyx_t_2); __pyx_t_2 = 0; - __Pyx_DECREF_SET(__pyx_v_ext_data, __pyx_t_1); - __pyx_t_1 = 0; - - /* "pmercury/utils/tls_utils.pyx":146 - * elif ext_type == 'status_request': - * ext_data = status_request(ext_data, ext_len) - * elif ext_type == 'ec_point_formats': # <<<<<<<<<<<<<< - * ext_data = ec_point_formats(ext_data, ext_len) - * elif ext_type == 'key_share': - */ - goto __pyx_L3; - } - - /* "pmercury/utils/tls_utils.pyx":148 - * elif ext_type == 'ec_point_formats': - * ext_data = ec_point_formats(ext_data, ext_len) - * elif ext_type == 'key_share': # <<<<<<<<<<<<<< - * ext_data = key_share_client(ext_data, ext_len) - * elif ext_type == 'psk_key_exchange_modes': - */ - __pyx_t_3 = (__Pyx_PyUnicode_Equals(__pyx_v_ext_type, __pyx_n_u_key_share, Py_EQ)); if (unlikely(__pyx_t_3 < 0)) __PYX_ERR(0, 148, __pyx_L1_error) - if (__pyx_t_3) { - - /* "pmercury/utils/tls_utils.pyx":149 - * ext_data = ec_point_formats(ext_data, ext_len) - * elif ext_type == 'key_share': - * ext_data = key_share_client(ext_data, ext_len) # <<<<<<<<<<<<<< - * elif ext_type == 'psk_key_exchange_modes': - * ext_data = psk_key_exchange_modes(ext_data, ext_len) - */ - __Pyx_GetModuleGlobalName(__pyx_t_2, __pyx_n_s_key_share_client); if (unlikely(!__pyx_t_2)) __PYX_ERR(0, 149, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_2); - __pyx_t_4 = NULL; - __pyx_t_5 = 0; - if (CYTHON_UNPACK_METHODS && unlikely(PyMethod_Check(__pyx_t_2))) { - __pyx_t_4 = PyMethod_GET_SELF(__pyx_t_2); - if (likely(__pyx_t_4)) { - PyObject* function = PyMethod_GET_FUNCTION(__pyx_t_2); - __Pyx_INCREF(__pyx_t_4); - __Pyx_INCREF(function); - __Pyx_DECREF_SET(__pyx_t_2, function); - __pyx_t_5 = 1; - } - } - #if CYTHON_FAST_PYCALL - if (PyFunction_Check(__pyx_t_2)) { - PyObject *__pyx_temp[3] = {__pyx_t_4, __pyx_v_ext_data, __pyx_v_ext_len}; - __pyx_t_1 = __Pyx_PyFunction_FastCall(__pyx_t_2, __pyx_temp+1-__pyx_t_5, 2+__pyx_t_5); if (unlikely(!__pyx_t_1)) __PYX_ERR(0, 149, __pyx_L1_error) - __Pyx_XDECREF(__pyx_t_4); __pyx_t_4 = 0; - __Pyx_GOTREF(__pyx_t_1); - } else - #endif - #if CYTHON_FAST_PYCCALL - if (__Pyx_PyFastCFunction_Check(__pyx_t_2)) { - PyObject *__pyx_temp[3] = {__pyx_t_4, __pyx_v_ext_data, __pyx_v_ext_len}; - __pyx_t_1 = __Pyx_PyCFunction_FastCall(__pyx_t_2, __pyx_temp+1-__pyx_t_5, 2+__pyx_t_5); if (unlikely(!__pyx_t_1)) __PYX_ERR(0, 149, __pyx_L1_error) - __Pyx_XDECREF(__pyx_t_4); __pyx_t_4 = 0; - __Pyx_GOTREF(__pyx_t_1); - } else - #endif - { - __pyx_t_6 = PyTuple_New(2+__pyx_t_5); if (unlikely(!__pyx_t_6)) __PYX_ERR(0, 149, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_6); - if (__pyx_t_4) { - __Pyx_GIVEREF(__pyx_t_4); PyTuple_SET_ITEM(__pyx_t_6, 0, __pyx_t_4); __pyx_t_4 = NULL; - } - __Pyx_INCREF(__pyx_v_ext_data); - __Pyx_GIVEREF(__pyx_v_ext_data); - PyTuple_SET_ITEM(__pyx_t_6, 0+__pyx_t_5, __pyx_v_ext_data); - __Pyx_INCREF(__pyx_v_ext_len); - __Pyx_GIVEREF(__pyx_v_ext_len); - PyTuple_SET_ITEM(__pyx_t_6, 1+__pyx_t_5, __pyx_v_ext_len); - __pyx_t_1 = __Pyx_PyObject_Call(__pyx_t_2, __pyx_t_6, NULL); if (unlikely(!__pyx_t_1)) __PYX_ERR(0, 149, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_1); - __Pyx_DECREF(__pyx_t_6); __pyx_t_6 = 0; - } - __Pyx_DECREF(__pyx_t_2); __pyx_t_2 = 0; - __Pyx_DECREF_SET(__pyx_v_ext_data, __pyx_t_1); - __pyx_t_1 = 0; - - /* "pmercury/utils/tls_utils.pyx":148 - * elif ext_type == 'ec_point_formats': - * ext_data = ec_point_formats(ext_data, ext_len) - * elif ext_type == 'key_share': # <<<<<<<<<<<<<< - * ext_data = key_share_client(ext_data, ext_len) - * elif ext_type == 'psk_key_exchange_modes': - */ - goto __pyx_L3; - } - - /* "pmercury/utils/tls_utils.pyx":150 - * elif ext_type == 'key_share': - * ext_data = key_share_client(ext_data, ext_len) - * elif ext_type == 'psk_key_exchange_modes': # <<<<<<<<<<<<<< - * ext_data = psk_key_exchange_modes(ext_data, ext_len) - * elif ext_type == 'supported_versions': - */ - __pyx_t_3 = (__Pyx_PyUnicode_Equals(__pyx_v_ext_type, __pyx_n_u_psk_key_exchange_modes, Py_EQ)); if (unlikely(__pyx_t_3 < 0)) __PYX_ERR(0, 150, __pyx_L1_error) - if (__pyx_t_3) { - - /* "pmercury/utils/tls_utils.pyx":151 - * ext_data = key_share_client(ext_data, ext_len) - * elif ext_type == 'psk_key_exchange_modes': - * ext_data = psk_key_exchange_modes(ext_data, ext_len) # <<<<<<<<<<<<<< - * elif ext_type == 'supported_versions': - * if mode == 'client': - */ - __Pyx_GetModuleGlobalName(__pyx_t_2, __pyx_n_s_psk_key_exchange_modes); if (unlikely(!__pyx_t_2)) __PYX_ERR(0, 151, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_2); - __pyx_t_6 = NULL; - __pyx_t_5 = 0; - if (CYTHON_UNPACK_METHODS && unlikely(PyMethod_Check(__pyx_t_2))) { - __pyx_t_6 = PyMethod_GET_SELF(__pyx_t_2); - if (likely(__pyx_t_6)) { - PyObject* function = PyMethod_GET_FUNCTION(__pyx_t_2); - __Pyx_INCREF(__pyx_t_6); - __Pyx_INCREF(function); - __Pyx_DECREF_SET(__pyx_t_2, function); - __pyx_t_5 = 1; - } - } - #if CYTHON_FAST_PYCALL - if (PyFunction_Check(__pyx_t_2)) { - PyObject *__pyx_temp[3] = {__pyx_t_6, __pyx_v_ext_data, __pyx_v_ext_len}; - __pyx_t_1 = __Pyx_PyFunction_FastCall(__pyx_t_2, __pyx_temp+1-__pyx_t_5, 2+__pyx_t_5); if (unlikely(!__pyx_t_1)) __PYX_ERR(0, 151, __pyx_L1_error) - __Pyx_XDECREF(__pyx_t_6); __pyx_t_6 = 0; - __Pyx_GOTREF(__pyx_t_1); - } else - #endif - #if CYTHON_FAST_PYCCALL - if (__Pyx_PyFastCFunction_Check(__pyx_t_2)) { - PyObject *__pyx_temp[3] = {__pyx_t_6, __pyx_v_ext_data, __pyx_v_ext_len}; - __pyx_t_1 = __Pyx_PyCFunction_FastCall(__pyx_t_2, __pyx_temp+1-__pyx_t_5, 2+__pyx_t_5); if (unlikely(!__pyx_t_1)) __PYX_ERR(0, 151, __pyx_L1_error) - __Pyx_XDECREF(__pyx_t_6); __pyx_t_6 = 0; - __Pyx_GOTREF(__pyx_t_1); - } else - #endif - { - __pyx_t_4 = PyTuple_New(2+__pyx_t_5); if (unlikely(!__pyx_t_4)) __PYX_ERR(0, 151, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_4); - if (__pyx_t_6) { - __Pyx_GIVEREF(__pyx_t_6); PyTuple_SET_ITEM(__pyx_t_4, 0, __pyx_t_6); __pyx_t_6 = NULL; - } - __Pyx_INCREF(__pyx_v_ext_data); - __Pyx_GIVEREF(__pyx_v_ext_data); - PyTuple_SET_ITEM(__pyx_t_4, 0+__pyx_t_5, __pyx_v_ext_data); - __Pyx_INCREF(__pyx_v_ext_len); - __Pyx_GIVEREF(__pyx_v_ext_len); - PyTuple_SET_ITEM(__pyx_t_4, 1+__pyx_t_5, __pyx_v_ext_len); - __pyx_t_1 = __Pyx_PyObject_Call(__pyx_t_2, __pyx_t_4, NULL); if (unlikely(!__pyx_t_1)) __PYX_ERR(0, 151, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_1); - __Pyx_DECREF(__pyx_t_4); __pyx_t_4 = 0; - } - __Pyx_DECREF(__pyx_t_2); __pyx_t_2 = 0; - __Pyx_DECREF_SET(__pyx_v_ext_data, __pyx_t_1); - __pyx_t_1 = 0; - - /* "pmercury/utils/tls_utils.pyx":150 - * elif ext_type == 'key_share': - * ext_data = key_share_client(ext_data, ext_len) - * elif ext_type == 'psk_key_exchange_modes': # <<<<<<<<<<<<<< - * ext_data = psk_key_exchange_modes(ext_data, ext_len) - * elif ext_type == 'supported_versions': - */ - goto __pyx_L3; - } - - /* "pmercury/utils/tls_utils.pyx":152 - * elif ext_type == 'psk_key_exchange_modes': - * ext_data = psk_key_exchange_modes(ext_data, ext_len) - * elif ext_type == 'supported_versions': # <<<<<<<<<<<<<< - * if mode == 'client': - * ext_data = supported_versions(ext_data, ext_len) - */ - __pyx_t_3 = (__Pyx_PyUnicode_Equals(__pyx_v_ext_type, __pyx_n_u_supported_versions, Py_EQ)); if (unlikely(__pyx_t_3 < 0)) __PYX_ERR(0, 152, __pyx_L1_error) - if (__pyx_t_3) { - - /* "pmercury/utils/tls_utils.pyx":153 - * ext_data = psk_key_exchange_modes(ext_data, ext_len) - * elif ext_type == 'supported_versions': - * if mode == 'client': # <<<<<<<<<<<<<< - * ext_data = supported_versions(ext_data, ext_len) - * else: - */ - __pyx_t_3 = (__Pyx_PyUnicode_Equals(__pyx_v_mode, __pyx_n_u_client, Py_EQ)); if (unlikely(__pyx_t_3 < 0)) __PYX_ERR(0, 153, __pyx_L1_error) - if (__pyx_t_3) { - - /* "pmercury/utils/tls_utils.pyx":154 - * elif ext_type == 'supported_versions': - * if mode == 'client': - * ext_data = supported_versions(ext_data, ext_len) # <<<<<<<<<<<<<< - * else: - * ext_data = supported_versions_server(ext_data, ext_len) - */ - __Pyx_GetModuleGlobalName(__pyx_t_2, __pyx_n_s_supported_versions); if (unlikely(!__pyx_t_2)) __PYX_ERR(0, 154, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_2); - __pyx_t_4 = NULL; - __pyx_t_5 = 0; - if (CYTHON_UNPACK_METHODS && unlikely(PyMethod_Check(__pyx_t_2))) { - __pyx_t_4 = PyMethod_GET_SELF(__pyx_t_2); - if (likely(__pyx_t_4)) { - PyObject* function = PyMethod_GET_FUNCTION(__pyx_t_2); - __Pyx_INCREF(__pyx_t_4); - __Pyx_INCREF(function); - __Pyx_DECREF_SET(__pyx_t_2, function); - __pyx_t_5 = 1; - } - } - #if CYTHON_FAST_PYCALL - if (PyFunction_Check(__pyx_t_2)) { - PyObject *__pyx_temp[3] = {__pyx_t_4, __pyx_v_ext_data, __pyx_v_ext_len}; - __pyx_t_1 = __Pyx_PyFunction_FastCall(__pyx_t_2, __pyx_temp+1-__pyx_t_5, 2+__pyx_t_5); if (unlikely(!__pyx_t_1)) __PYX_ERR(0, 154, __pyx_L1_error) - __Pyx_XDECREF(__pyx_t_4); __pyx_t_4 = 0; - __Pyx_GOTREF(__pyx_t_1); - } else - #endif - #if CYTHON_FAST_PYCCALL - if (__Pyx_PyFastCFunction_Check(__pyx_t_2)) { - PyObject *__pyx_temp[3] = {__pyx_t_4, __pyx_v_ext_data, __pyx_v_ext_len}; - __pyx_t_1 = __Pyx_PyCFunction_FastCall(__pyx_t_2, __pyx_temp+1-__pyx_t_5, 2+__pyx_t_5); if (unlikely(!__pyx_t_1)) __PYX_ERR(0, 154, __pyx_L1_error) - __Pyx_XDECREF(__pyx_t_4); __pyx_t_4 = 0; - __Pyx_GOTREF(__pyx_t_1); - } else - #endif - { - __pyx_t_6 = PyTuple_New(2+__pyx_t_5); if (unlikely(!__pyx_t_6)) __PYX_ERR(0, 154, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_6); - if (__pyx_t_4) { - __Pyx_GIVEREF(__pyx_t_4); PyTuple_SET_ITEM(__pyx_t_6, 0, __pyx_t_4); __pyx_t_4 = NULL; - } - __Pyx_INCREF(__pyx_v_ext_data); - __Pyx_GIVEREF(__pyx_v_ext_data); - PyTuple_SET_ITEM(__pyx_t_6, 0+__pyx_t_5, __pyx_v_ext_data); - __Pyx_INCREF(__pyx_v_ext_len); - __Pyx_GIVEREF(__pyx_v_ext_len); - PyTuple_SET_ITEM(__pyx_t_6, 1+__pyx_t_5, __pyx_v_ext_len); - __pyx_t_1 = __Pyx_PyObject_Call(__pyx_t_2, __pyx_t_6, NULL); if (unlikely(!__pyx_t_1)) __PYX_ERR(0, 154, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_1); - __Pyx_DECREF(__pyx_t_6); __pyx_t_6 = 0; - } - __Pyx_DECREF(__pyx_t_2); __pyx_t_2 = 0; - __Pyx_DECREF_SET(__pyx_v_ext_data, __pyx_t_1); - __pyx_t_1 = 0; - - /* "pmercury/utils/tls_utils.pyx":153 - * ext_data = psk_key_exchange_modes(ext_data, ext_len) - * elif ext_type == 'supported_versions': - * if mode == 'client': # <<<<<<<<<<<<<< - * ext_data = supported_versions(ext_data, ext_len) - * else: - */ - goto __pyx_L4; - } - - /* "pmercury/utils/tls_utils.pyx":156 - * ext_data = supported_versions(ext_data, ext_len) - * else: - * ext_data = supported_versions_server(ext_data, ext_len) # <<<<<<<<<<<<<< - * elif ext_type == 'supported_groups': - * ext_data = supported_groups(ext_data, ext_len) - */ - /*else*/ { - __Pyx_GetModuleGlobalName(__pyx_t_2, __pyx_n_s_supported_versions_server); if (unlikely(!__pyx_t_2)) __PYX_ERR(0, 156, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_2); - __pyx_t_6 = NULL; - __pyx_t_5 = 0; - if (CYTHON_UNPACK_METHODS && unlikely(PyMethod_Check(__pyx_t_2))) { - __pyx_t_6 = PyMethod_GET_SELF(__pyx_t_2); - if (likely(__pyx_t_6)) { - PyObject* function = PyMethod_GET_FUNCTION(__pyx_t_2); - __Pyx_INCREF(__pyx_t_6); - __Pyx_INCREF(function); - __Pyx_DECREF_SET(__pyx_t_2, function); - __pyx_t_5 = 1; - } - } - #if CYTHON_FAST_PYCALL - if (PyFunction_Check(__pyx_t_2)) { - PyObject *__pyx_temp[3] = {__pyx_t_6, __pyx_v_ext_data, __pyx_v_ext_len}; - __pyx_t_1 = __Pyx_PyFunction_FastCall(__pyx_t_2, __pyx_temp+1-__pyx_t_5, 2+__pyx_t_5); if (unlikely(!__pyx_t_1)) __PYX_ERR(0, 156, __pyx_L1_error) - __Pyx_XDECREF(__pyx_t_6); __pyx_t_6 = 0; - __Pyx_GOTREF(__pyx_t_1); - } else - #endif - #if CYTHON_FAST_PYCCALL - if (__Pyx_PyFastCFunction_Check(__pyx_t_2)) { - PyObject *__pyx_temp[3] = {__pyx_t_6, __pyx_v_ext_data, __pyx_v_ext_len}; - __pyx_t_1 = __Pyx_PyCFunction_FastCall(__pyx_t_2, __pyx_temp+1-__pyx_t_5, 2+__pyx_t_5); if (unlikely(!__pyx_t_1)) __PYX_ERR(0, 156, __pyx_L1_error) - __Pyx_XDECREF(__pyx_t_6); __pyx_t_6 = 0; - __Pyx_GOTREF(__pyx_t_1); - } else - #endif - { - __pyx_t_4 = PyTuple_New(2+__pyx_t_5); if (unlikely(!__pyx_t_4)) __PYX_ERR(0, 156, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_4); - if (__pyx_t_6) { - __Pyx_GIVEREF(__pyx_t_6); PyTuple_SET_ITEM(__pyx_t_4, 0, __pyx_t_6); __pyx_t_6 = NULL; - } - __Pyx_INCREF(__pyx_v_ext_data); - __Pyx_GIVEREF(__pyx_v_ext_data); - PyTuple_SET_ITEM(__pyx_t_4, 0+__pyx_t_5, __pyx_v_ext_data); - __Pyx_INCREF(__pyx_v_ext_len); - __Pyx_GIVEREF(__pyx_v_ext_len); - PyTuple_SET_ITEM(__pyx_t_4, 1+__pyx_t_5, __pyx_v_ext_len); - __pyx_t_1 = __Pyx_PyObject_Call(__pyx_t_2, __pyx_t_4, NULL); if (unlikely(!__pyx_t_1)) __PYX_ERR(0, 156, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_1); - __Pyx_DECREF(__pyx_t_4); __pyx_t_4 = 0; - } - __Pyx_DECREF(__pyx_t_2); __pyx_t_2 = 0; - __Pyx_DECREF_SET(__pyx_v_ext_data, __pyx_t_1); - __pyx_t_1 = 0; - } - __pyx_L4:; - - /* "pmercury/utils/tls_utils.pyx":152 - * elif ext_type == 'psk_key_exchange_modes': - * ext_data = psk_key_exchange_modes(ext_data, ext_len) - * elif ext_type == 'supported_versions': # <<<<<<<<<<<<<< - * if mode == 'client': - * ext_data = supported_versions(ext_data, ext_len) - */ - goto __pyx_L3; - } - - /* "pmercury/utils/tls_utils.pyx":157 - * else: - * ext_data = supported_versions_server(ext_data, ext_len) - * elif ext_type == 'supported_groups': # <<<<<<<<<<<<<< - * ext_data = supported_groups(ext_data, ext_len) - * - */ - __pyx_t_3 = (__Pyx_PyUnicode_Equals(__pyx_v_ext_type, __pyx_n_u_supported_groups, Py_EQ)); if (unlikely(__pyx_t_3 < 0)) __PYX_ERR(0, 157, __pyx_L1_error) - if (__pyx_t_3) { - - /* "pmercury/utils/tls_utils.pyx":158 - * ext_data = supported_versions_server(ext_data, ext_len) - * elif ext_type == 'supported_groups': - * ext_data = supported_groups(ext_data, ext_len) # <<<<<<<<<<<<<< - * - * return ext_data - */ - __Pyx_GetModuleGlobalName(__pyx_t_2, __pyx_n_s_supported_groups); if (unlikely(!__pyx_t_2)) __PYX_ERR(0, 158, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_2); - __pyx_t_4 = NULL; - __pyx_t_5 = 0; - if (CYTHON_UNPACK_METHODS && unlikely(PyMethod_Check(__pyx_t_2))) { - __pyx_t_4 = PyMethod_GET_SELF(__pyx_t_2); - if (likely(__pyx_t_4)) { - PyObject* function = PyMethod_GET_FUNCTION(__pyx_t_2); - __Pyx_INCREF(__pyx_t_4); - __Pyx_INCREF(function); - __Pyx_DECREF_SET(__pyx_t_2, function); - __pyx_t_5 = 1; - } - } - #if CYTHON_FAST_PYCALL - if (PyFunction_Check(__pyx_t_2)) { - PyObject *__pyx_temp[3] = {__pyx_t_4, __pyx_v_ext_data, __pyx_v_ext_len}; - __pyx_t_1 = __Pyx_PyFunction_FastCall(__pyx_t_2, __pyx_temp+1-__pyx_t_5, 2+__pyx_t_5); if (unlikely(!__pyx_t_1)) __PYX_ERR(0, 158, __pyx_L1_error) - __Pyx_XDECREF(__pyx_t_4); __pyx_t_4 = 0; - __Pyx_GOTREF(__pyx_t_1); - } else - #endif - #if CYTHON_FAST_PYCCALL - if (__Pyx_PyFastCFunction_Check(__pyx_t_2)) { - PyObject *__pyx_temp[3] = {__pyx_t_4, __pyx_v_ext_data, __pyx_v_ext_len}; - __pyx_t_1 = __Pyx_PyCFunction_FastCall(__pyx_t_2, __pyx_temp+1-__pyx_t_5, 2+__pyx_t_5); if (unlikely(!__pyx_t_1)) __PYX_ERR(0, 158, __pyx_L1_error) - __Pyx_XDECREF(__pyx_t_4); __pyx_t_4 = 0; - __Pyx_GOTREF(__pyx_t_1); - } else - #endif - { - __pyx_t_6 = PyTuple_New(2+__pyx_t_5); if (unlikely(!__pyx_t_6)) __PYX_ERR(0, 158, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_6); - if (__pyx_t_4) { - __Pyx_GIVEREF(__pyx_t_4); PyTuple_SET_ITEM(__pyx_t_6, 0, __pyx_t_4); __pyx_t_4 = NULL; - } - __Pyx_INCREF(__pyx_v_ext_data); - __Pyx_GIVEREF(__pyx_v_ext_data); - PyTuple_SET_ITEM(__pyx_t_6, 0+__pyx_t_5, __pyx_v_ext_data); - __Pyx_INCREF(__pyx_v_ext_len); - __Pyx_GIVEREF(__pyx_v_ext_len); - PyTuple_SET_ITEM(__pyx_t_6, 1+__pyx_t_5, __pyx_v_ext_len); - __pyx_t_1 = __Pyx_PyObject_Call(__pyx_t_2, __pyx_t_6, NULL); if (unlikely(!__pyx_t_1)) __PYX_ERR(0, 158, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_1); - __Pyx_DECREF(__pyx_t_6); __pyx_t_6 = 0; - } - __Pyx_DECREF(__pyx_t_2); __pyx_t_2 = 0; - __Pyx_DECREF_SET(__pyx_v_ext_data, __pyx_t_1); - __pyx_t_1 = 0; - - /* "pmercury/utils/tls_utils.pyx":157 - * else: - * ext_data = supported_versions_server(ext_data, ext_len) - * elif ext_type == 'supported_groups': # <<<<<<<<<<<<<< - * ext_data = supported_groups(ext_data, ext_len) - * - */ - } - __pyx_L3:; - - /* "pmercury/utils/tls_utils.pyx":160 - * ext_data = supported_groups(ext_data, ext_len) - * - * return ext_data # <<<<<<<<<<<<<< - * - * - */ - __Pyx_XDECREF(__pyx_r); - __Pyx_INCREF(__pyx_v_ext_data); - __pyx_r = __pyx_v_ext_data; - goto __pyx_L0; - - /* "pmercury/utils/tls_utils.pyx":136 - * - * - * def parse_extension_data(ext_type, ext_data_, mode): # <<<<<<<<<<<<<< - * ext_len = int(ext_data_[0:4],16) - * ext_data = ext_data_[4:] - */ - - /* function exit code */ - __pyx_L1_error:; - __Pyx_XDECREF(__pyx_t_1); - __Pyx_XDECREF(__pyx_t_2); - __Pyx_XDECREF(__pyx_t_4); - __Pyx_XDECREF(__pyx_t_6); - __Pyx_AddTraceback("pmercury.utils.tls_utils.parse_extension_data", __pyx_clineno, __pyx_lineno, __pyx_filename); - __pyx_r = NULL; - __pyx_L0:; - __Pyx_XDECREF(__pyx_v_ext_len); - __Pyx_XDECREF(__pyx_v_ext_data); - __Pyx_XGIVEREF(__pyx_r); - __Pyx_RefNannyFinishContext(); - return __pyx_r; -} - -/* "pmercury/utils/tls_utils.pyx":164 - * - * # helper to parse/extract/skip single extension - * def parse_extension(bytes data, unsigned int offset): # <<<<<<<<<<<<<< - * cdef str tmp_ext_type = degrease_type_code(data, offset) - * cdef str fp_ext_ = tmp_ext_type - */ - -/* Python wrapper */ -static PyObject *__pyx_pw_8pmercury_5utils_9tls_utils_17parse_extension(PyObject *__pyx_self, PyObject *__pyx_args, PyObject *__pyx_kwds); /*proto*/ -static PyMethodDef __pyx_mdef_8pmercury_5utils_9tls_utils_17parse_extension = {"parse_extension", (PyCFunction)(void*)(PyCFunctionWithKeywords)__pyx_pw_8pmercury_5utils_9tls_utils_17parse_extension, METH_VARARGS|METH_KEYWORDS, 0}; -static PyObject *__pyx_pw_8pmercury_5utils_9tls_utils_17parse_extension(PyObject *__pyx_self, PyObject *__pyx_args, PyObject *__pyx_kwds) { - PyObject *__pyx_v_data = 0; - unsigned int __pyx_v_offset; - PyObject *__pyx_r = 0; - __Pyx_RefNannyDeclarations - __Pyx_RefNannySetupContext("parse_extension (wrapper)", 0); - { - static PyObject **__pyx_pyargnames[] = {&__pyx_n_s_data,&__pyx_n_s_offset,0}; - PyObject* values[2] = {0,0}; - if (unlikely(__pyx_kwds)) { - Py_ssize_t kw_args; - const Py_ssize_t pos_args = PyTuple_GET_SIZE(__pyx_args); - switch (pos_args) { - case 2: values[1] = PyTuple_GET_ITEM(__pyx_args, 1); - CYTHON_FALLTHROUGH; - case 1: values[0] = PyTuple_GET_ITEM(__pyx_args, 0); - CYTHON_FALLTHROUGH; - case 0: break; - default: goto __pyx_L5_argtuple_error; - } - kw_args = PyDict_Size(__pyx_kwds); - switch (pos_args) { - case 0: - if (likely((values[0] = __Pyx_PyDict_GetItemStr(__pyx_kwds, __pyx_n_s_data)) != 0)) kw_args--; - else goto __pyx_L5_argtuple_error; - CYTHON_FALLTHROUGH; - case 1: - if (likely((values[1] = __Pyx_PyDict_GetItemStr(__pyx_kwds, __pyx_n_s_offset)) != 0)) kw_args--; - else { - __Pyx_RaiseArgtupleInvalid("parse_extension", 1, 2, 2, 1); __PYX_ERR(0, 164, __pyx_L3_error) - } - } - if (unlikely(kw_args > 0)) { - if (unlikely(__Pyx_ParseOptionalKeywords(__pyx_kwds, __pyx_pyargnames, 0, values, pos_args, "parse_extension") < 0)) __PYX_ERR(0, 164, __pyx_L3_error) - } - } else if (PyTuple_GET_SIZE(__pyx_args) != 2) { - goto __pyx_L5_argtuple_error; - } else { - values[0] = PyTuple_GET_ITEM(__pyx_args, 0); - values[1] = PyTuple_GET_ITEM(__pyx_args, 1); - } - __pyx_v_data = ((PyObject*)values[0]); - __pyx_v_offset = __Pyx_PyInt_As_unsigned_int(values[1]); if (unlikely((__pyx_v_offset == (unsigned int)-1) && PyErr_Occurred())) __PYX_ERR(0, 164, __pyx_L3_error) - } - goto __pyx_L4_argument_unpacking_done; - __pyx_L5_argtuple_error:; - __Pyx_RaiseArgtupleInvalid("parse_extension", 1, 2, 2, PyTuple_GET_SIZE(__pyx_args)); __PYX_ERR(0, 164, __pyx_L3_error) - __pyx_L3_error:; - __Pyx_AddTraceback("pmercury.utils.tls_utils.parse_extension", __pyx_clineno, __pyx_lineno, __pyx_filename); - __Pyx_RefNannyFinishContext(); - return NULL; - __pyx_L4_argument_unpacking_done:; - if (unlikely(!__Pyx_ArgTypeTest(((PyObject *)__pyx_v_data), (&PyBytes_Type), 1, "data", 1))) __PYX_ERR(0, 164, __pyx_L1_error) - __pyx_r = __pyx_pf_8pmercury_5utils_9tls_utils_16parse_extension(__pyx_self, __pyx_v_data, __pyx_v_offset); - - /* function exit code */ - goto __pyx_L0; - __pyx_L1_error:; - __pyx_r = NULL; - __pyx_L0:; - __Pyx_RefNannyFinishContext(); - return __pyx_r; -} - -static PyObject *__pyx_pf_8pmercury_5utils_9tls_utils_16parse_extension(CYTHON_UNUSED PyObject *__pyx_self, PyObject *__pyx_v_data, unsigned int __pyx_v_offset) { - PyObject *__pyx_v_tmp_ext_type = 0; - PyObject *__pyx_v_fp_ext_ = 0; - unsigned int __pyx_v_ext_len; - PyObject *__pyx_v_tmp_ext_value = 0; - PyObject *__pyx_r = NULL; - __Pyx_RefNannyDeclarations - PyObject *__pyx_t_1 = NULL; - PyObject *__pyx_t_2 = NULL; - PyObject *__pyx_t_3 = NULL; - PyObject *__pyx_t_4 = NULL; - int __pyx_t_5; - PyObject *__pyx_t_6 = NULL; - unsigned int __pyx_t_7; - int __pyx_t_8; - int __pyx_t_9; - PyObject *__pyx_t_10 = NULL; - __Pyx_RefNannySetupContext("parse_extension", 0); - - /* "pmercury/utils/tls_utils.pyx":165 - * # helper to parse/extract/skip single extension - * def parse_extension(bytes data, unsigned int offset): - * cdef str tmp_ext_type = degrease_type_code(data, offset) # <<<<<<<<<<<<<< - * cdef str fp_ext_ = tmp_ext_type - * offset += 2 - */ - __Pyx_GetModuleGlobalName(__pyx_t_2, __pyx_n_s_degrease_type_code); if (unlikely(!__pyx_t_2)) __PYX_ERR(0, 165, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_2); - __pyx_t_3 = __Pyx_PyInt_From_unsigned_int(__pyx_v_offset); if (unlikely(!__pyx_t_3)) __PYX_ERR(0, 165, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_3); - __pyx_t_4 = NULL; - __pyx_t_5 = 0; - if (CYTHON_UNPACK_METHODS && unlikely(PyMethod_Check(__pyx_t_2))) { - __pyx_t_4 = PyMethod_GET_SELF(__pyx_t_2); - if (likely(__pyx_t_4)) { - PyObject* function = PyMethod_GET_FUNCTION(__pyx_t_2); - __Pyx_INCREF(__pyx_t_4); - __Pyx_INCREF(function); - __Pyx_DECREF_SET(__pyx_t_2, function); - __pyx_t_5 = 1; - } - } - #if CYTHON_FAST_PYCALL - if (PyFunction_Check(__pyx_t_2)) { - PyObject *__pyx_temp[3] = {__pyx_t_4, __pyx_v_data, __pyx_t_3}; - __pyx_t_1 = __Pyx_PyFunction_FastCall(__pyx_t_2, __pyx_temp+1-__pyx_t_5, 2+__pyx_t_5); if (unlikely(!__pyx_t_1)) __PYX_ERR(0, 165, __pyx_L1_error) - __Pyx_XDECREF(__pyx_t_4); __pyx_t_4 = 0; - __Pyx_GOTREF(__pyx_t_1); - __Pyx_DECREF(__pyx_t_3); __pyx_t_3 = 0; - } else - #endif - #if CYTHON_FAST_PYCCALL - if (__Pyx_PyFastCFunction_Check(__pyx_t_2)) { - PyObject *__pyx_temp[3] = {__pyx_t_4, __pyx_v_data, __pyx_t_3}; - __pyx_t_1 = __Pyx_PyCFunction_FastCall(__pyx_t_2, __pyx_temp+1-__pyx_t_5, 2+__pyx_t_5); if (unlikely(!__pyx_t_1)) __PYX_ERR(0, 165, __pyx_L1_error) - __Pyx_XDECREF(__pyx_t_4); __pyx_t_4 = 0; - __Pyx_GOTREF(__pyx_t_1); - __Pyx_DECREF(__pyx_t_3); __pyx_t_3 = 0; - } else - #endif - { - __pyx_t_6 = PyTuple_New(2+__pyx_t_5); if (unlikely(!__pyx_t_6)) __PYX_ERR(0, 165, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_6); - if (__pyx_t_4) { - __Pyx_GIVEREF(__pyx_t_4); PyTuple_SET_ITEM(__pyx_t_6, 0, __pyx_t_4); __pyx_t_4 = NULL; - } - __Pyx_INCREF(__pyx_v_data); - __Pyx_GIVEREF(__pyx_v_data); - PyTuple_SET_ITEM(__pyx_t_6, 0+__pyx_t_5, __pyx_v_data); - __Pyx_GIVEREF(__pyx_t_3); - PyTuple_SET_ITEM(__pyx_t_6, 1+__pyx_t_5, __pyx_t_3); - __pyx_t_3 = 0; - __pyx_t_1 = __Pyx_PyObject_Call(__pyx_t_2, __pyx_t_6, NULL); if (unlikely(!__pyx_t_1)) __PYX_ERR(0, 165, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_1); - __Pyx_DECREF(__pyx_t_6); __pyx_t_6 = 0; - } - __Pyx_DECREF(__pyx_t_2); __pyx_t_2 = 0; - if (!(likely(PyUnicode_CheckExact(__pyx_t_1))||((__pyx_t_1) == Py_None)||(PyErr_Format(PyExc_TypeError, "Expected %.16s, got %.200s", "unicode", Py_TYPE(__pyx_t_1)->tp_name), 0))) __PYX_ERR(0, 165, __pyx_L1_error) - __pyx_v_tmp_ext_type = ((PyObject*)__pyx_t_1); - __pyx_t_1 = 0; - - /* "pmercury/utils/tls_utils.pyx":166 - * def parse_extension(bytes data, unsigned int offset): - * cdef str tmp_ext_type = degrease_type_code(data, offset) - * cdef str fp_ext_ = tmp_ext_type # <<<<<<<<<<<<<< - * offset += 2 - * cdef unsigned int ext_len = int.from_bytes(data[offset:offset+2],'big') - */ - __Pyx_INCREF(__pyx_v_tmp_ext_type); - __pyx_v_fp_ext_ = __pyx_v_tmp_ext_type; - - /* "pmercury/utils/tls_utils.pyx":167 - * cdef str tmp_ext_type = degrease_type_code(data, offset) - * cdef str fp_ext_ = tmp_ext_type - * offset += 2 # <<<<<<<<<<<<<< - * cdef unsigned int ext_len = int.from_bytes(data[offset:offset+2],'big') - * offset += 2 - */ - __pyx_v_offset = (__pyx_v_offset + 2); - - /* "pmercury/utils/tls_utils.pyx":168 - * cdef str fp_ext_ = tmp_ext_type - * offset += 2 - * cdef unsigned int ext_len = int.from_bytes(data[offset:offset+2],'big') # <<<<<<<<<<<<<< - * offset += 2 - * cdef bytes tmp_ext_value = data[offset:offset+ext_len] - */ - __pyx_t_2 = __Pyx_PyObject_GetAttrStr(((PyObject *)(&PyInt_Type)), __pyx_n_s_from_bytes); if (unlikely(!__pyx_t_2)) __PYX_ERR(0, 168, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_2); - if (unlikely(__pyx_v_data == Py_None)) { - PyErr_SetString(PyExc_TypeError, "'NoneType' object is not subscriptable"); - __PYX_ERR(0, 168, __pyx_L1_error) - } - __pyx_t_6 = PySequence_GetSlice(__pyx_v_data, __pyx_v_offset, (__pyx_v_offset + 2)); if (unlikely(!__pyx_t_6)) __PYX_ERR(0, 168, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_6); - __pyx_t_3 = NULL; - __pyx_t_5 = 0; - if (CYTHON_UNPACK_METHODS && likely(PyMethod_Check(__pyx_t_2))) { - __pyx_t_3 = PyMethod_GET_SELF(__pyx_t_2); - if (likely(__pyx_t_3)) { - PyObject* function = PyMethod_GET_FUNCTION(__pyx_t_2); - __Pyx_INCREF(__pyx_t_3); - __Pyx_INCREF(function); - __Pyx_DECREF_SET(__pyx_t_2, function); - __pyx_t_5 = 1; - } - } - #if CYTHON_FAST_PYCALL - if (PyFunction_Check(__pyx_t_2)) { - PyObject *__pyx_temp[3] = {__pyx_t_3, __pyx_t_6, __pyx_n_u_big}; - __pyx_t_1 = __Pyx_PyFunction_FastCall(__pyx_t_2, __pyx_temp+1-__pyx_t_5, 2+__pyx_t_5); if (unlikely(!__pyx_t_1)) __PYX_ERR(0, 168, __pyx_L1_error) - __Pyx_XDECREF(__pyx_t_3); __pyx_t_3 = 0; - __Pyx_GOTREF(__pyx_t_1); - __Pyx_DECREF(__pyx_t_6); __pyx_t_6 = 0; - } else - #endif - #if CYTHON_FAST_PYCCALL - if (__Pyx_PyFastCFunction_Check(__pyx_t_2)) { - PyObject *__pyx_temp[3] = {__pyx_t_3, __pyx_t_6, __pyx_n_u_big}; - __pyx_t_1 = __Pyx_PyCFunction_FastCall(__pyx_t_2, __pyx_temp+1-__pyx_t_5, 2+__pyx_t_5); if (unlikely(!__pyx_t_1)) __PYX_ERR(0, 168, __pyx_L1_error) - __Pyx_XDECREF(__pyx_t_3); __pyx_t_3 = 0; - __Pyx_GOTREF(__pyx_t_1); - __Pyx_DECREF(__pyx_t_6); __pyx_t_6 = 0; - } else - #endif - { - __pyx_t_4 = PyTuple_New(2+__pyx_t_5); if (unlikely(!__pyx_t_4)) __PYX_ERR(0, 168, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_4); - if (__pyx_t_3) { - __Pyx_GIVEREF(__pyx_t_3); PyTuple_SET_ITEM(__pyx_t_4, 0, __pyx_t_3); __pyx_t_3 = NULL; - } - __Pyx_GIVEREF(__pyx_t_6); - PyTuple_SET_ITEM(__pyx_t_4, 0+__pyx_t_5, __pyx_t_6); - __Pyx_INCREF(__pyx_n_u_big); - __Pyx_GIVEREF(__pyx_n_u_big); - PyTuple_SET_ITEM(__pyx_t_4, 1+__pyx_t_5, __pyx_n_u_big); - __pyx_t_6 = 0; - __pyx_t_1 = __Pyx_PyObject_Call(__pyx_t_2, __pyx_t_4, NULL); if (unlikely(!__pyx_t_1)) __PYX_ERR(0, 168, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_1); - __Pyx_DECREF(__pyx_t_4); __pyx_t_4 = 0; - } - __Pyx_DECREF(__pyx_t_2); __pyx_t_2 = 0; - __pyx_t_7 = __Pyx_PyInt_As_unsigned_int(__pyx_t_1); if (unlikely((__pyx_t_7 == (unsigned int)-1) && PyErr_Occurred())) __PYX_ERR(0, 168, __pyx_L1_error) - __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0; - __pyx_v_ext_len = __pyx_t_7; - - /* "pmercury/utils/tls_utils.pyx":169 - * offset += 2 - * cdef unsigned int ext_len = int.from_bytes(data[offset:offset+2],'big') - * offset += 2 # <<<<<<<<<<<<<< - * cdef bytes tmp_ext_value = data[offset:offset+ext_len] - * if tmp_ext_type in ext_data_extract_: - */ - __pyx_v_offset = (__pyx_v_offset + 2); - - /* "pmercury/utils/tls_utils.pyx":170 - * cdef unsigned int ext_len = int.from_bytes(data[offset:offset+2],'big') - * offset += 2 - * cdef bytes tmp_ext_value = data[offset:offset+ext_len] # <<<<<<<<<<<<<< - * if tmp_ext_type in ext_data_extract_: - * tmp_ext_value = degrease_ext_data(data, offset, tmp_ext_type, ext_len, tmp_ext_value) - */ - if (unlikely(__pyx_v_data == Py_None)) { - PyErr_SetString(PyExc_TypeError, "'NoneType' object is not subscriptable"); - __PYX_ERR(0, 170, __pyx_L1_error) - } - __pyx_t_1 = PySequence_GetSlice(__pyx_v_data, __pyx_v_offset, (__pyx_v_offset + __pyx_v_ext_len)); if (unlikely(!__pyx_t_1)) __PYX_ERR(0, 170, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_1); - __pyx_v_tmp_ext_value = ((PyObject*)__pyx_t_1); - __pyx_t_1 = 0; - - /* "pmercury/utils/tls_utils.pyx":171 - * offset += 2 - * cdef bytes tmp_ext_value = data[offset:offset+ext_len] - * if tmp_ext_type in ext_data_extract_: # <<<<<<<<<<<<<< - * tmp_ext_value = degrease_ext_data(data, offset, tmp_ext_type, ext_len, tmp_ext_value) - * fp_ext_ += '%04x%s' % (ext_len, tmp_ext_value.hex()) - */ - if (unlikely(__pyx_v_8pmercury_5utils_9tls_utils_ext_data_extract_ == Py_None)) { - PyErr_SetString(PyExc_TypeError, "'NoneType' object is not iterable"); - __PYX_ERR(0, 171, __pyx_L1_error) - } - __pyx_t_8 = (__Pyx_PySet_ContainsTF(__pyx_v_tmp_ext_type, __pyx_v_8pmercury_5utils_9tls_utils_ext_data_extract_, Py_EQ)); if (unlikely(__pyx_t_8 < 0)) __PYX_ERR(0, 171, __pyx_L1_error) - __pyx_t_9 = (__pyx_t_8 != 0); - if (__pyx_t_9) { - - /* "pmercury/utils/tls_utils.pyx":172 - * cdef bytes tmp_ext_value = data[offset:offset+ext_len] - * if tmp_ext_type in ext_data_extract_: - * tmp_ext_value = degrease_ext_data(data, offset, tmp_ext_type, ext_len, tmp_ext_value) # <<<<<<<<<<<<<< - * fp_ext_ += '%04x%s' % (ext_len, tmp_ext_value.hex()) - * offset += ext_len - */ - __Pyx_GetModuleGlobalName(__pyx_t_2, __pyx_n_s_degrease_ext_data); if (unlikely(!__pyx_t_2)) __PYX_ERR(0, 172, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_2); - __pyx_t_4 = __Pyx_PyInt_From_unsigned_int(__pyx_v_offset); if (unlikely(!__pyx_t_4)) __PYX_ERR(0, 172, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_4); - __pyx_t_6 = __Pyx_PyInt_From_unsigned_int(__pyx_v_ext_len); if (unlikely(!__pyx_t_6)) __PYX_ERR(0, 172, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_6); - __pyx_t_3 = NULL; - __pyx_t_5 = 0; - if (CYTHON_UNPACK_METHODS && unlikely(PyMethod_Check(__pyx_t_2))) { - __pyx_t_3 = PyMethod_GET_SELF(__pyx_t_2); - if (likely(__pyx_t_3)) { - PyObject* function = PyMethod_GET_FUNCTION(__pyx_t_2); - __Pyx_INCREF(__pyx_t_3); - __Pyx_INCREF(function); - __Pyx_DECREF_SET(__pyx_t_2, function); - __pyx_t_5 = 1; - } - } - #if CYTHON_FAST_PYCALL - if (PyFunction_Check(__pyx_t_2)) { - PyObject *__pyx_temp[6] = {__pyx_t_3, __pyx_v_data, __pyx_t_4, __pyx_v_tmp_ext_type, __pyx_t_6, __pyx_v_tmp_ext_value}; - __pyx_t_1 = __Pyx_PyFunction_FastCall(__pyx_t_2, __pyx_temp+1-__pyx_t_5, 5+__pyx_t_5); if (unlikely(!__pyx_t_1)) __PYX_ERR(0, 172, __pyx_L1_error) - __Pyx_XDECREF(__pyx_t_3); __pyx_t_3 = 0; - __Pyx_GOTREF(__pyx_t_1); - __Pyx_DECREF(__pyx_t_4); __pyx_t_4 = 0; - __Pyx_DECREF(__pyx_t_6); __pyx_t_6 = 0; - } else - #endif - #if CYTHON_FAST_PYCCALL - if (__Pyx_PyFastCFunction_Check(__pyx_t_2)) { - PyObject *__pyx_temp[6] = {__pyx_t_3, __pyx_v_data, __pyx_t_4, __pyx_v_tmp_ext_type, __pyx_t_6, __pyx_v_tmp_ext_value}; - __pyx_t_1 = __Pyx_PyCFunction_FastCall(__pyx_t_2, __pyx_temp+1-__pyx_t_5, 5+__pyx_t_5); if (unlikely(!__pyx_t_1)) __PYX_ERR(0, 172, __pyx_L1_error) - __Pyx_XDECREF(__pyx_t_3); __pyx_t_3 = 0; - __Pyx_GOTREF(__pyx_t_1); - __Pyx_DECREF(__pyx_t_4); __pyx_t_4 = 0; - __Pyx_DECREF(__pyx_t_6); __pyx_t_6 = 0; - } else - #endif - { - __pyx_t_10 = PyTuple_New(5+__pyx_t_5); if (unlikely(!__pyx_t_10)) __PYX_ERR(0, 172, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_10); - if (__pyx_t_3) { - __Pyx_GIVEREF(__pyx_t_3); PyTuple_SET_ITEM(__pyx_t_10, 0, __pyx_t_3); __pyx_t_3 = NULL; - } - __Pyx_INCREF(__pyx_v_data); - __Pyx_GIVEREF(__pyx_v_data); - PyTuple_SET_ITEM(__pyx_t_10, 0+__pyx_t_5, __pyx_v_data); - __Pyx_GIVEREF(__pyx_t_4); - PyTuple_SET_ITEM(__pyx_t_10, 1+__pyx_t_5, __pyx_t_4); - __Pyx_INCREF(__pyx_v_tmp_ext_type); - __Pyx_GIVEREF(__pyx_v_tmp_ext_type); - PyTuple_SET_ITEM(__pyx_t_10, 2+__pyx_t_5, __pyx_v_tmp_ext_type); - __Pyx_GIVEREF(__pyx_t_6); - PyTuple_SET_ITEM(__pyx_t_10, 3+__pyx_t_5, __pyx_t_6); - __Pyx_INCREF(__pyx_v_tmp_ext_value); - __Pyx_GIVEREF(__pyx_v_tmp_ext_value); - PyTuple_SET_ITEM(__pyx_t_10, 4+__pyx_t_5, __pyx_v_tmp_ext_value); - __pyx_t_4 = 0; - __pyx_t_6 = 0; - __pyx_t_1 = __Pyx_PyObject_Call(__pyx_t_2, __pyx_t_10, NULL); if (unlikely(!__pyx_t_1)) __PYX_ERR(0, 172, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_1); - __Pyx_DECREF(__pyx_t_10); __pyx_t_10 = 0; - } - __Pyx_DECREF(__pyx_t_2); __pyx_t_2 = 0; - if (!(likely(PyBytes_CheckExact(__pyx_t_1))||((__pyx_t_1) == Py_None)||(PyErr_Format(PyExc_TypeError, "Expected %.16s, got %.200s", "bytes", Py_TYPE(__pyx_t_1)->tp_name), 0))) __PYX_ERR(0, 172, __pyx_L1_error) - __Pyx_DECREF_SET(__pyx_v_tmp_ext_value, ((PyObject*)__pyx_t_1)); - __pyx_t_1 = 0; - - /* "pmercury/utils/tls_utils.pyx":173 - * if tmp_ext_type in ext_data_extract_: - * tmp_ext_value = degrease_ext_data(data, offset, tmp_ext_type, ext_len, tmp_ext_value) - * fp_ext_ += '%04x%s' % (ext_len, tmp_ext_value.hex()) # <<<<<<<<<<<<<< - * offset += ext_len - * - */ - __pyx_t_1 = __Pyx_PyUnicode_From_unsigned_int(__pyx_v_ext_len, 4, '0', 'x'); if (unlikely(!__pyx_t_1)) __PYX_ERR(0, 173, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_1); - __pyx_t_2 = __Pyx_CallUnboundCMethod0(&__pyx_umethod_PyBytes_Type_hex, __pyx_v_tmp_ext_value); if (unlikely(!__pyx_t_2)) __PYX_ERR(0, 173, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_2); - __pyx_t_10 = __Pyx_PyObject_FormatSimpleAndDecref(PyObject_Unicode(__pyx_t_2), __pyx_empty_unicode); if (unlikely(!__pyx_t_10)) __PYX_ERR(0, 173, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_10); - __Pyx_DECREF(__pyx_t_2); __pyx_t_2 = 0; - __pyx_t_2 = __Pyx_PyUnicode_Concat(__pyx_t_1, __pyx_t_10); if (unlikely(!__pyx_t_2)) __PYX_ERR(0, 173, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_2); - __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0; - __Pyx_DECREF(__pyx_t_10); __pyx_t_10 = 0; - __pyx_t_10 = __Pyx_PyUnicode_ConcatSafe(__pyx_v_fp_ext_, __pyx_t_2); if (unlikely(!__pyx_t_10)) __PYX_ERR(0, 173, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_10); - __Pyx_DECREF(__pyx_t_2); __pyx_t_2 = 0; - __Pyx_DECREF_SET(__pyx_v_fp_ext_, ((PyObject*)__pyx_t_10)); - __pyx_t_10 = 0; - - /* "pmercury/utils/tls_utils.pyx":171 - * offset += 2 - * cdef bytes tmp_ext_value = data[offset:offset+ext_len] - * if tmp_ext_type in ext_data_extract_: # <<<<<<<<<<<<<< - * tmp_ext_value = degrease_ext_data(data, offset, tmp_ext_type, ext_len, tmp_ext_value) - * fp_ext_ += '%04x%s' % (ext_len, tmp_ext_value.hex()) - */ - } - - /* "pmercury/utils/tls_utils.pyx":174 - * tmp_ext_value = degrease_ext_data(data, offset, tmp_ext_type, ext_len, tmp_ext_value) - * fp_ext_ += '%04x%s' % (ext_len, tmp_ext_value.hex()) - * offset += ext_len # <<<<<<<<<<<<<< - * - * return fp_ext_, offset, ext_len - */ - __pyx_v_offset = (__pyx_v_offset + __pyx_v_ext_len); - - /* "pmercury/utils/tls_utils.pyx":176 - * offset += ext_len - * - * return fp_ext_, offset, ext_len # <<<<<<<<<<<<<< - * - * # helper to normalize grease type codes - */ - __Pyx_XDECREF(__pyx_r); - __pyx_t_10 = __Pyx_PyInt_From_unsigned_int(__pyx_v_offset); if (unlikely(!__pyx_t_10)) __PYX_ERR(0, 176, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_10); - __pyx_t_2 = __Pyx_PyInt_From_unsigned_int(__pyx_v_ext_len); if (unlikely(!__pyx_t_2)) __PYX_ERR(0, 176, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_2); - __pyx_t_1 = PyTuple_New(3); if (unlikely(!__pyx_t_1)) __PYX_ERR(0, 176, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_1); - __Pyx_INCREF(__pyx_v_fp_ext_); - __Pyx_GIVEREF(__pyx_v_fp_ext_); - PyTuple_SET_ITEM(__pyx_t_1, 0, __pyx_v_fp_ext_); - __Pyx_GIVEREF(__pyx_t_10); - PyTuple_SET_ITEM(__pyx_t_1, 1, __pyx_t_10); - __Pyx_GIVEREF(__pyx_t_2); - PyTuple_SET_ITEM(__pyx_t_1, 2, __pyx_t_2); - __pyx_t_10 = 0; - __pyx_t_2 = 0; - __pyx_r = __pyx_t_1; - __pyx_t_1 = 0; - goto __pyx_L0; - - /* "pmercury/utils/tls_utils.pyx":164 - * - * # helper to parse/extract/skip single extension - * def parse_extension(bytes data, unsigned int offset): # <<<<<<<<<<<<<< - * cdef str tmp_ext_type = degrease_type_code(data, offset) - * cdef str fp_ext_ = tmp_ext_type - */ - - /* function exit code */ - __pyx_L1_error:; - __Pyx_XDECREF(__pyx_t_1); - __Pyx_XDECREF(__pyx_t_2); - __Pyx_XDECREF(__pyx_t_3); - __Pyx_XDECREF(__pyx_t_4); - __Pyx_XDECREF(__pyx_t_6); - __Pyx_XDECREF(__pyx_t_10); - __Pyx_AddTraceback("pmercury.utils.tls_utils.parse_extension", __pyx_clineno, __pyx_lineno, __pyx_filename); - __pyx_r = NULL; - __pyx_L0:; - __Pyx_XDECREF(__pyx_v_tmp_ext_type); - __Pyx_XDECREF(__pyx_v_fp_ext_); - __Pyx_XDECREF(__pyx_v_tmp_ext_value); - __Pyx_XGIVEREF(__pyx_r); - __Pyx_RefNannyFinishContext(); - return __pyx_r; -} - -/* "pmercury/utils/tls_utils.pyx":179 - * - * # helper to normalize grease type codes - * def degrease_type_code(unsigned char *data, unsigned int offset): # <<<<<<<<<<<<<< - * if data[offset] in grease_single_int_ and data[offset] == data[offset+1]: - * return '0a0a' - */ - -/* Python wrapper */ -static PyObject *__pyx_pw_8pmercury_5utils_9tls_utils_19degrease_type_code(PyObject *__pyx_self, PyObject *__pyx_args, PyObject *__pyx_kwds); /*proto*/ -static PyMethodDef __pyx_mdef_8pmercury_5utils_9tls_utils_19degrease_type_code = {"degrease_type_code", (PyCFunction)(void*)(PyCFunctionWithKeywords)__pyx_pw_8pmercury_5utils_9tls_utils_19degrease_type_code, METH_VARARGS|METH_KEYWORDS, 0}; -static PyObject *__pyx_pw_8pmercury_5utils_9tls_utils_19degrease_type_code(PyObject *__pyx_self, PyObject *__pyx_args, PyObject *__pyx_kwds) { - unsigned char *__pyx_v_data; - unsigned int __pyx_v_offset; - PyObject *__pyx_r = 0; - __Pyx_RefNannyDeclarations - __Pyx_RefNannySetupContext("degrease_type_code (wrapper)", 0); - { - static PyObject **__pyx_pyargnames[] = {&__pyx_n_s_data,&__pyx_n_s_offset,0}; - PyObject* values[2] = {0,0}; - if (unlikely(__pyx_kwds)) { - Py_ssize_t kw_args; - const Py_ssize_t pos_args = PyTuple_GET_SIZE(__pyx_args); - switch (pos_args) { - case 2: values[1] = PyTuple_GET_ITEM(__pyx_args, 1); - CYTHON_FALLTHROUGH; - case 1: values[0] = PyTuple_GET_ITEM(__pyx_args, 0); - CYTHON_FALLTHROUGH; - case 0: break; - default: goto __pyx_L5_argtuple_error; - } - kw_args = PyDict_Size(__pyx_kwds); - switch (pos_args) { - case 0: - if (likely((values[0] = __Pyx_PyDict_GetItemStr(__pyx_kwds, __pyx_n_s_data)) != 0)) kw_args--; - else goto __pyx_L5_argtuple_error; - CYTHON_FALLTHROUGH; - case 1: - if (likely((values[1] = __Pyx_PyDict_GetItemStr(__pyx_kwds, __pyx_n_s_offset)) != 0)) kw_args--; - else { - __Pyx_RaiseArgtupleInvalid("degrease_type_code", 1, 2, 2, 1); __PYX_ERR(0, 179, __pyx_L3_error) - } - } - if (unlikely(kw_args > 0)) { - if (unlikely(__Pyx_ParseOptionalKeywords(__pyx_kwds, __pyx_pyargnames, 0, values, pos_args, "degrease_type_code") < 0)) __PYX_ERR(0, 179, __pyx_L3_error) - } - } else if (PyTuple_GET_SIZE(__pyx_args) != 2) { - goto __pyx_L5_argtuple_error; - } else { - values[0] = PyTuple_GET_ITEM(__pyx_args, 0); - values[1] = PyTuple_GET_ITEM(__pyx_args, 1); - } - __pyx_v_data = __Pyx_PyObject_AsWritableUString(values[0]); if (unlikely((!__pyx_v_data) && PyErr_Occurred())) __PYX_ERR(0, 179, __pyx_L3_error) - __pyx_v_offset = __Pyx_PyInt_As_unsigned_int(values[1]); if (unlikely((__pyx_v_offset == (unsigned int)-1) && PyErr_Occurred())) __PYX_ERR(0, 179, __pyx_L3_error) - } - goto __pyx_L4_argument_unpacking_done; - __pyx_L5_argtuple_error:; - __Pyx_RaiseArgtupleInvalid("degrease_type_code", 1, 2, 2, PyTuple_GET_SIZE(__pyx_args)); __PYX_ERR(0, 179, __pyx_L3_error) - __pyx_L3_error:; - __Pyx_AddTraceback("pmercury.utils.tls_utils.degrease_type_code", __pyx_clineno, __pyx_lineno, __pyx_filename); - __Pyx_RefNannyFinishContext(); - return NULL; - __pyx_L4_argument_unpacking_done:; - __pyx_r = __pyx_pf_8pmercury_5utils_9tls_utils_18degrease_type_code(__pyx_self, __pyx_v_data, __pyx_v_offset); - - /* function exit code */ - __Pyx_RefNannyFinishContext(); - return __pyx_r; -} - -static PyObject *__pyx_pf_8pmercury_5utils_9tls_utils_18degrease_type_code(CYTHON_UNUSED PyObject *__pyx_self, unsigned char *__pyx_v_data, unsigned int __pyx_v_offset) { - PyObject *__pyx_r = NULL; - __Pyx_RefNannyDeclarations - int __pyx_t_1; - PyObject *__pyx_t_2 = NULL; - int __pyx_t_3; - int __pyx_t_4; - PyObject *__pyx_t_5 = NULL; - PyObject *__pyx_t_6 = NULL; - __Pyx_RefNannySetupContext("degrease_type_code", 0); - - /* "pmercury/utils/tls_utils.pyx":180 - * # helper to normalize grease type codes - * def degrease_type_code(unsigned char *data, unsigned int offset): - * if data[offset] in grease_single_int_ and data[offset] == data[offset+1]: # <<<<<<<<<<<<<< - * return '0a0a' - * else: - */ - __pyx_t_2 = __Pyx_PyInt_From_unsigned_char((__pyx_v_data[__pyx_v_offset])); if (unlikely(!__pyx_t_2)) __PYX_ERR(0, 180, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_2); - if (unlikely(__pyx_v_8pmercury_5utils_9tls_utils_grease_single_int_ == Py_None)) { - PyErr_SetString(PyExc_TypeError, "'NoneType' object is not iterable"); - __PYX_ERR(0, 180, __pyx_L1_error) - } - __pyx_t_3 = (__Pyx_PySet_ContainsTF(__pyx_t_2, __pyx_v_8pmercury_5utils_9tls_utils_grease_single_int_, Py_EQ)); if (unlikely(__pyx_t_3 < 0)) __PYX_ERR(0, 180, __pyx_L1_error) - __Pyx_DECREF(__pyx_t_2); __pyx_t_2 = 0; - __pyx_t_4 = (__pyx_t_3 != 0); - if (__pyx_t_4) { - } else { - __pyx_t_1 = __pyx_t_4; - goto __pyx_L4_bool_binop_done; - } - __pyx_t_4 = (((__pyx_v_data[__pyx_v_offset]) == (__pyx_v_data[(__pyx_v_offset + 1)])) != 0); - __pyx_t_1 = __pyx_t_4; - __pyx_L4_bool_binop_done:; - if (__pyx_t_1) { - - /* "pmercury/utils/tls_utils.pyx":181 - * def degrease_type_code(unsigned char *data, unsigned int offset): - * if data[offset] in grease_single_int_ and data[offset] == data[offset+1]: - * return '0a0a' # <<<<<<<<<<<<<< - * else: - * return data[offset:offset+2].hex() - */ - __Pyx_XDECREF(__pyx_r); - __Pyx_INCREF(__pyx_kp_u_0a0a); - __pyx_r = __pyx_kp_u_0a0a; - goto __pyx_L0; - - /* "pmercury/utils/tls_utils.pyx":180 - * # helper to normalize grease type codes - * def degrease_type_code(unsigned char *data, unsigned int offset): - * if data[offset] in grease_single_int_ and data[offset] == data[offset+1]: # <<<<<<<<<<<<<< - * return '0a0a' - * else: - */ - } - - /* "pmercury/utils/tls_utils.pyx":183 - * return '0a0a' - * else: - * return data[offset:offset+2].hex() # <<<<<<<<<<<<<< - * - * - */ - /*else*/ { - __Pyx_XDECREF(__pyx_r); - __pyx_t_5 = __Pyx_PyBytes_FromStringAndSize(((const char*)__pyx_v_data) + __pyx_v_offset, (__pyx_v_offset + 2) - __pyx_v_offset); if (unlikely(!__pyx_t_5)) __PYX_ERR(0, 183, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_5); - __pyx_t_6 = __Pyx_PyObject_GetAttrStr(__pyx_t_5, __pyx_n_s_hex); if (unlikely(!__pyx_t_6)) __PYX_ERR(0, 183, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_6); - __Pyx_DECREF(__pyx_t_5); __pyx_t_5 = 0; - __pyx_t_5 = NULL; - if (CYTHON_UNPACK_METHODS && likely(PyMethod_Check(__pyx_t_6))) { - __pyx_t_5 = PyMethod_GET_SELF(__pyx_t_6); - if (likely(__pyx_t_5)) { - PyObject* function = PyMethod_GET_FUNCTION(__pyx_t_6); - __Pyx_INCREF(__pyx_t_5); - __Pyx_INCREF(function); - __Pyx_DECREF_SET(__pyx_t_6, function); - } - } - __pyx_t_2 = (__pyx_t_5) ? __Pyx_PyObject_CallOneArg(__pyx_t_6, __pyx_t_5) : __Pyx_PyObject_CallNoArg(__pyx_t_6); - __Pyx_XDECREF(__pyx_t_5); __pyx_t_5 = 0; - if (unlikely(!__pyx_t_2)) __PYX_ERR(0, 183, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_2); - __Pyx_DECREF(__pyx_t_6); __pyx_t_6 = 0; - __pyx_r = __pyx_t_2; - __pyx_t_2 = 0; - goto __pyx_L0; - } - - /* "pmercury/utils/tls_utils.pyx":179 - * - * # helper to normalize grease type codes - * def degrease_type_code(unsigned char *data, unsigned int offset): # <<<<<<<<<<<<<< - * if data[offset] in grease_single_int_ and data[offset] == data[offset+1]: - * return '0a0a' - */ - - /* function exit code */ - __pyx_L1_error:; - __Pyx_XDECREF(__pyx_t_2); - __Pyx_XDECREF(__pyx_t_5); - __Pyx_XDECREF(__pyx_t_6); - __Pyx_AddTraceback("pmercury.utils.tls_utils.degrease_type_code", __pyx_clineno, __pyx_lineno, __pyx_filename); - __pyx_r = NULL; - __pyx_L0:; - __Pyx_XGIVEREF(__pyx_r); - __Pyx_RefNannyFinishContext(); - return __pyx_r; -} - -/* "pmercury/utils/tls_utils.pyx":187 - * - * # helper to normalize grease within supported_groups and supported_versions - * def degrease_ext_data(unsigned char *data, unsigned int offset, str ext_type, unsigned int ext_length, bytes ext_value): # <<<<<<<<<<<<<< - * degreased_ext_value = b'' - * if ext_type == '000a': # supported_groups - */ - -/* Python wrapper */ -static PyObject *__pyx_pw_8pmercury_5utils_9tls_utils_21degrease_ext_data(PyObject *__pyx_self, PyObject *__pyx_args, PyObject *__pyx_kwds); /*proto*/ -static PyMethodDef __pyx_mdef_8pmercury_5utils_9tls_utils_21degrease_ext_data = {"degrease_ext_data", (PyCFunction)(void*)(PyCFunctionWithKeywords)__pyx_pw_8pmercury_5utils_9tls_utils_21degrease_ext_data, METH_VARARGS|METH_KEYWORDS, 0}; -static PyObject *__pyx_pw_8pmercury_5utils_9tls_utils_21degrease_ext_data(PyObject *__pyx_self, PyObject *__pyx_args, PyObject *__pyx_kwds) { - unsigned char *__pyx_v_data; - unsigned int __pyx_v_offset; - PyObject *__pyx_v_ext_type = 0; - unsigned int __pyx_v_ext_length; - PyObject *__pyx_v_ext_value = 0; - PyObject *__pyx_r = 0; - __Pyx_RefNannyDeclarations - __Pyx_RefNannySetupContext("degrease_ext_data (wrapper)", 0); - { - static PyObject **__pyx_pyargnames[] = {&__pyx_n_s_data,&__pyx_n_s_offset,&__pyx_n_s_ext_type,&__pyx_n_s_ext_length,&__pyx_n_s_ext_value,0}; - PyObject* values[5] = {0,0,0,0,0}; - if (unlikely(__pyx_kwds)) { - Py_ssize_t kw_args; - const Py_ssize_t pos_args = PyTuple_GET_SIZE(__pyx_args); - switch (pos_args) { - case 5: values[4] = PyTuple_GET_ITEM(__pyx_args, 4); - CYTHON_FALLTHROUGH; - case 4: values[3] = PyTuple_GET_ITEM(__pyx_args, 3); - CYTHON_FALLTHROUGH; - case 3: values[2] = PyTuple_GET_ITEM(__pyx_args, 2); - CYTHON_FALLTHROUGH; - case 2: values[1] = PyTuple_GET_ITEM(__pyx_args, 1); - CYTHON_FALLTHROUGH; - case 1: values[0] = PyTuple_GET_ITEM(__pyx_args, 0); - CYTHON_FALLTHROUGH; - case 0: break; - default: goto __pyx_L5_argtuple_error; - } - kw_args = PyDict_Size(__pyx_kwds); - switch (pos_args) { - case 0: - if (likely((values[0] = __Pyx_PyDict_GetItemStr(__pyx_kwds, __pyx_n_s_data)) != 0)) kw_args--; - else goto __pyx_L5_argtuple_error; - CYTHON_FALLTHROUGH; - case 1: - if (likely((values[1] = __Pyx_PyDict_GetItemStr(__pyx_kwds, __pyx_n_s_offset)) != 0)) kw_args--; - else { - __Pyx_RaiseArgtupleInvalid("degrease_ext_data", 1, 5, 5, 1); __PYX_ERR(0, 187, __pyx_L3_error) - } - CYTHON_FALLTHROUGH; - case 2: - if (likely((values[2] = __Pyx_PyDict_GetItemStr(__pyx_kwds, __pyx_n_s_ext_type)) != 0)) kw_args--; - else { - __Pyx_RaiseArgtupleInvalid("degrease_ext_data", 1, 5, 5, 2); __PYX_ERR(0, 187, __pyx_L3_error) - } - CYTHON_FALLTHROUGH; - case 3: - if (likely((values[3] = __Pyx_PyDict_GetItemStr(__pyx_kwds, __pyx_n_s_ext_length)) != 0)) kw_args--; - else { - __Pyx_RaiseArgtupleInvalid("degrease_ext_data", 1, 5, 5, 3); __PYX_ERR(0, 187, __pyx_L3_error) - } - CYTHON_FALLTHROUGH; - case 4: - if (likely((values[4] = __Pyx_PyDict_GetItemStr(__pyx_kwds, __pyx_n_s_ext_value)) != 0)) kw_args--; - else { - __Pyx_RaiseArgtupleInvalid("degrease_ext_data", 1, 5, 5, 4); __PYX_ERR(0, 187, __pyx_L3_error) - } - } - if (unlikely(kw_args > 0)) { - if (unlikely(__Pyx_ParseOptionalKeywords(__pyx_kwds, __pyx_pyargnames, 0, values, pos_args, "degrease_ext_data") < 0)) __PYX_ERR(0, 187, __pyx_L3_error) - } - } else if (PyTuple_GET_SIZE(__pyx_args) != 5) { - goto __pyx_L5_argtuple_error; - } else { - values[0] = PyTuple_GET_ITEM(__pyx_args, 0); - values[1] = PyTuple_GET_ITEM(__pyx_args, 1); - values[2] = PyTuple_GET_ITEM(__pyx_args, 2); - values[3] = PyTuple_GET_ITEM(__pyx_args, 3); - values[4] = PyTuple_GET_ITEM(__pyx_args, 4); - } - __pyx_v_data = __Pyx_PyObject_AsWritableUString(values[0]); if (unlikely((!__pyx_v_data) && PyErr_Occurred())) __PYX_ERR(0, 187, __pyx_L3_error) - __pyx_v_offset = __Pyx_PyInt_As_unsigned_int(values[1]); if (unlikely((__pyx_v_offset == (unsigned int)-1) && PyErr_Occurred())) __PYX_ERR(0, 187, __pyx_L3_error) - __pyx_v_ext_type = ((PyObject*)values[2]); - __pyx_v_ext_length = __Pyx_PyInt_As_unsigned_int(values[3]); if (unlikely((__pyx_v_ext_length == (unsigned int)-1) && PyErr_Occurred())) __PYX_ERR(0, 187, __pyx_L3_error) - __pyx_v_ext_value = ((PyObject*)values[4]); - } - goto __pyx_L4_argument_unpacking_done; - __pyx_L5_argtuple_error:; - __Pyx_RaiseArgtupleInvalid("degrease_ext_data", 1, 5, 5, PyTuple_GET_SIZE(__pyx_args)); __PYX_ERR(0, 187, __pyx_L3_error) - __pyx_L3_error:; - __Pyx_AddTraceback("pmercury.utils.tls_utils.degrease_ext_data", __pyx_clineno, __pyx_lineno, __pyx_filename); - __Pyx_RefNannyFinishContext(); - return NULL; - __pyx_L4_argument_unpacking_done:; - if (unlikely(!__Pyx_ArgTypeTest(((PyObject *)__pyx_v_ext_type), (&PyUnicode_Type), 1, "ext_type", 1))) __PYX_ERR(0, 187, __pyx_L1_error) - if (unlikely(!__Pyx_ArgTypeTest(((PyObject *)__pyx_v_ext_value), (&PyBytes_Type), 1, "ext_value", 1))) __PYX_ERR(0, 187, __pyx_L1_error) - __pyx_r = __pyx_pf_8pmercury_5utils_9tls_utils_20degrease_ext_data(__pyx_self, __pyx_v_data, __pyx_v_offset, __pyx_v_ext_type, __pyx_v_ext_length, __pyx_v_ext_value); - - /* function exit code */ - goto __pyx_L0; - __pyx_L1_error:; - __pyx_r = NULL; - __pyx_L0:; - __Pyx_RefNannyFinishContext(); - return __pyx_r; -} - -static PyObject *__pyx_pf_8pmercury_5utils_9tls_utils_20degrease_ext_data(CYTHON_UNUSED PyObject *__pyx_self, unsigned char *__pyx_v_data, unsigned int __pyx_v_offset, PyObject *__pyx_v_ext_type, unsigned int __pyx_v_ext_length, PyObject *__pyx_v_ext_value) { - PyObject *__pyx_v_degreased_ext_value = NULL; - long __pyx_v_i; - PyObject *__pyx_r = NULL; - __Pyx_RefNannyDeclarations - int __pyx_t_1; - int __pyx_t_2; - PyObject *__pyx_t_3 = NULL; - PyObject *__pyx_t_4 = NULL; - unsigned int __pyx_t_5; - unsigned int __pyx_t_6; - long __pyx_t_7; - int __pyx_t_8; - __Pyx_RefNannySetupContext("degrease_ext_data", 0); - - /* "pmercury/utils/tls_utils.pyx":188 - * # helper to normalize grease within supported_groups and supported_versions - * def degrease_ext_data(unsigned char *data, unsigned int offset, str ext_type, unsigned int ext_length, bytes ext_value): - * degreased_ext_value = b'' # <<<<<<<<<<<<<< - * if ext_type == '000a': # supported_groups - * degreased_ext_value += data[offset:offset+2] - */ - __Pyx_INCREF(__pyx_kp_b__19); - __pyx_v_degreased_ext_value = __pyx_kp_b__19; - - /* "pmercury/utils/tls_utils.pyx":189 - * def degrease_ext_data(unsigned char *data, unsigned int offset, str ext_type, unsigned int ext_length, bytes ext_value): - * degreased_ext_value = b'' - * if ext_type == '000a': # supported_groups # <<<<<<<<<<<<<< - * degreased_ext_value += data[offset:offset+2] - * for i in range(2,ext_length,2): - */ - __pyx_t_1 = (__Pyx_PyUnicode_Equals(__pyx_v_ext_type, __pyx_kp_u_000a, Py_EQ)); if (unlikely(__pyx_t_1 < 0)) __PYX_ERR(0, 189, __pyx_L1_error) - __pyx_t_2 = (__pyx_t_1 != 0); - if (__pyx_t_2) { - - /* "pmercury/utils/tls_utils.pyx":190 - * degreased_ext_value = b'' - * if ext_type == '000a': # supported_groups - * degreased_ext_value += data[offset:offset+2] # <<<<<<<<<<<<<< - * for i in range(2,ext_length,2): - * if data[offset+i] in grease_single_int_ and data[offset+i] == data[offset+i+1]: - */ - __pyx_t_3 = __Pyx_PyBytes_FromStringAndSize(((const char*)__pyx_v_data) + __pyx_v_offset, (__pyx_v_offset + 2) - __pyx_v_offset); if (unlikely(!__pyx_t_3)) __PYX_ERR(0, 190, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_3); - __pyx_t_4 = PyNumber_InPlaceAdd(__pyx_v_degreased_ext_value, __pyx_t_3); if (unlikely(!__pyx_t_4)) __PYX_ERR(0, 190, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_4); - __Pyx_DECREF(__pyx_t_3); __pyx_t_3 = 0; - __Pyx_DECREF_SET(__pyx_v_degreased_ext_value, ((PyObject*)__pyx_t_4)); - __pyx_t_4 = 0; - - /* "pmercury/utils/tls_utils.pyx":191 - * if ext_type == '000a': # supported_groups - * degreased_ext_value += data[offset:offset+2] - * for i in range(2,ext_length,2): # <<<<<<<<<<<<<< - * if data[offset+i] in grease_single_int_ and data[offset+i] == data[offset+i+1]: - * degreased_ext_value += b'\x0a\x0a' - */ - __pyx_t_5 = __pyx_v_ext_length; - __pyx_t_6 = __pyx_t_5; - for (__pyx_t_7 = 2; __pyx_t_7 < __pyx_t_6; __pyx_t_7+=2) { - __pyx_v_i = __pyx_t_7; - - /* "pmercury/utils/tls_utils.pyx":192 - * degreased_ext_value += data[offset:offset+2] - * for i in range(2,ext_length,2): - * if data[offset+i] in grease_single_int_ and data[offset+i] == data[offset+i+1]: # <<<<<<<<<<<<<< - * degreased_ext_value += b'\x0a\x0a' - * else: - */ - __pyx_t_4 = __Pyx_PyInt_From_unsigned_char((__pyx_v_data[(__pyx_v_offset + __pyx_v_i)])); if (unlikely(!__pyx_t_4)) __PYX_ERR(0, 192, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_4); - if (unlikely(__pyx_v_8pmercury_5utils_9tls_utils_grease_single_int_ == Py_None)) { - PyErr_SetString(PyExc_TypeError, "'NoneType' object is not iterable"); - __PYX_ERR(0, 192, __pyx_L1_error) - } - __pyx_t_1 = (__Pyx_PySet_ContainsTF(__pyx_t_4, __pyx_v_8pmercury_5utils_9tls_utils_grease_single_int_, Py_EQ)); if (unlikely(__pyx_t_1 < 0)) __PYX_ERR(0, 192, __pyx_L1_error) - __Pyx_DECREF(__pyx_t_4); __pyx_t_4 = 0; - __pyx_t_8 = (__pyx_t_1 != 0); - if (__pyx_t_8) { - } else { - __pyx_t_2 = __pyx_t_8; - goto __pyx_L7_bool_binop_done; - } - __pyx_t_8 = (((__pyx_v_data[(__pyx_v_offset + __pyx_v_i)]) == (__pyx_v_data[((__pyx_v_offset + __pyx_v_i) + 1)])) != 0); - __pyx_t_2 = __pyx_t_8; - __pyx_L7_bool_binop_done:; - if (__pyx_t_2) { - - /* "pmercury/utils/tls_utils.pyx":193 - * for i in range(2,ext_length,2): - * if data[offset+i] in grease_single_int_ and data[offset+i] == data[offset+i+1]: - * degreased_ext_value += b'\x0a\x0a' # <<<<<<<<<<<<<< - * else: - * degreased_ext_value += data[offset+i:offset+i+2] - */ - __pyx_t_4 = PyNumber_InPlaceAdd(__pyx_v_degreased_ext_value, __pyx_kp_b__22); if (unlikely(!__pyx_t_4)) __PYX_ERR(0, 193, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_4); - __Pyx_DECREF_SET(__pyx_v_degreased_ext_value, ((PyObject*)__pyx_t_4)); - __pyx_t_4 = 0; - - /* "pmercury/utils/tls_utils.pyx":192 - * degreased_ext_value += data[offset:offset+2] - * for i in range(2,ext_length,2): - * if data[offset+i] in grease_single_int_ and data[offset+i] == data[offset+i+1]: # <<<<<<<<<<<<<< - * degreased_ext_value += b'\x0a\x0a' - * else: - */ - goto __pyx_L6; - } - - /* "pmercury/utils/tls_utils.pyx":195 - * degreased_ext_value += b'\x0a\x0a' - * else: - * degreased_ext_value += data[offset+i:offset+i+2] # <<<<<<<<<<<<<< - * return degreased_ext_value - * elif ext_type == b'002b': # supported_versions - */ - /*else*/ { - __pyx_t_4 = __Pyx_PyBytes_FromStringAndSize(((const char*)__pyx_v_data) + (__pyx_v_offset + __pyx_v_i), ((__pyx_v_offset + __pyx_v_i) + 2) - (__pyx_v_offset + __pyx_v_i)); if (unlikely(!__pyx_t_4)) __PYX_ERR(0, 195, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_4); - __pyx_t_3 = PyNumber_InPlaceAdd(__pyx_v_degreased_ext_value, __pyx_t_4); if (unlikely(!__pyx_t_3)) __PYX_ERR(0, 195, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_3); - __Pyx_DECREF(__pyx_t_4); __pyx_t_4 = 0; - __Pyx_DECREF_SET(__pyx_v_degreased_ext_value, ((PyObject*)__pyx_t_3)); - __pyx_t_3 = 0; - } - __pyx_L6:; - } - - /* "pmercury/utils/tls_utils.pyx":196 - * else: - * degreased_ext_value += data[offset+i:offset+i+2] - * return degreased_ext_value # <<<<<<<<<<<<<< - * elif ext_type == b'002b': # supported_versions - * degreased_ext_value += data[offset:offset+1] - */ - __Pyx_XDECREF(__pyx_r); - __Pyx_INCREF(__pyx_v_degreased_ext_value); - __pyx_r = __pyx_v_degreased_ext_value; - goto __pyx_L0; - - /* "pmercury/utils/tls_utils.pyx":189 - * def degrease_ext_data(unsigned char *data, unsigned int offset, str ext_type, unsigned int ext_length, bytes ext_value): - * degreased_ext_value = b'' - * if ext_type == '000a': # supported_groups # <<<<<<<<<<<<<< - * degreased_ext_value += data[offset:offset+2] - * for i in range(2,ext_length,2): - */ - } - - /* "pmercury/utils/tls_utils.pyx":197 - * degreased_ext_value += data[offset+i:offset+i+2] - * return degreased_ext_value - * elif ext_type == b'002b': # supported_versions # <<<<<<<<<<<<<< - * degreased_ext_value += data[offset:offset+1] - * for i in range(1,ext_length,2): - */ - __pyx_t_2 = (__Pyx_PyUnicode_Equals(__pyx_v_ext_type, __pyx_kp_b_002b, Py_EQ)); if (unlikely(__pyx_t_2 < 0)) __PYX_ERR(0, 197, __pyx_L1_error) - __pyx_t_8 = (__pyx_t_2 != 0); - if (__pyx_t_8) { - - /* "pmercury/utils/tls_utils.pyx":198 - * return degreased_ext_value - * elif ext_type == b'002b': # supported_versions - * degreased_ext_value += data[offset:offset+1] # <<<<<<<<<<<<<< - * for i in range(1,ext_length,2): - * if data[offset+i] in grease_single_int_ and data[offset+i] == data[offset+i+1]: - */ - __pyx_t_3 = __Pyx_PyBytes_FromStringAndSize(((const char*)__pyx_v_data) + __pyx_v_offset, (__pyx_v_offset + 1) - __pyx_v_offset); if (unlikely(!__pyx_t_3)) __PYX_ERR(0, 198, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_3); - __pyx_t_4 = PyNumber_InPlaceAdd(__pyx_v_degreased_ext_value, __pyx_t_3); if (unlikely(!__pyx_t_4)) __PYX_ERR(0, 198, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_4); - __Pyx_DECREF(__pyx_t_3); __pyx_t_3 = 0; - __Pyx_DECREF_SET(__pyx_v_degreased_ext_value, ((PyObject*)__pyx_t_4)); - __pyx_t_4 = 0; - - /* "pmercury/utils/tls_utils.pyx":199 - * elif ext_type == b'002b': # supported_versions - * degreased_ext_value += data[offset:offset+1] - * for i in range(1,ext_length,2): # <<<<<<<<<<<<<< - * if data[offset+i] in grease_single_int_ and data[offset+i] == data[offset+i+1]: - * degreased_ext_value += b'\x0a\x0a' - */ - __pyx_t_5 = __pyx_v_ext_length; - __pyx_t_6 = __pyx_t_5; - for (__pyx_t_7 = 1; __pyx_t_7 < __pyx_t_6; __pyx_t_7+=2) { - __pyx_v_i = __pyx_t_7; - - /* "pmercury/utils/tls_utils.pyx":200 - * degreased_ext_value += data[offset:offset+1] - * for i in range(1,ext_length,2): - * if data[offset+i] in grease_single_int_ and data[offset+i] == data[offset+i+1]: # <<<<<<<<<<<<<< - * degreased_ext_value += b'\x0a\x0a' - * else: - */ - __pyx_t_4 = __Pyx_PyInt_From_unsigned_char((__pyx_v_data[(__pyx_v_offset + __pyx_v_i)])); if (unlikely(!__pyx_t_4)) __PYX_ERR(0, 200, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_4); - if (unlikely(__pyx_v_8pmercury_5utils_9tls_utils_grease_single_int_ == Py_None)) { - PyErr_SetString(PyExc_TypeError, "'NoneType' object is not iterable"); - __PYX_ERR(0, 200, __pyx_L1_error) - } - __pyx_t_2 = (__Pyx_PySet_ContainsTF(__pyx_t_4, __pyx_v_8pmercury_5utils_9tls_utils_grease_single_int_, Py_EQ)); if (unlikely(__pyx_t_2 < 0)) __PYX_ERR(0, 200, __pyx_L1_error) - __Pyx_DECREF(__pyx_t_4); __pyx_t_4 = 0; - __pyx_t_1 = (__pyx_t_2 != 0); - if (__pyx_t_1) { - } else { - __pyx_t_8 = __pyx_t_1; - goto __pyx_L12_bool_binop_done; - } - __pyx_t_1 = (((__pyx_v_data[(__pyx_v_offset + __pyx_v_i)]) == (__pyx_v_data[((__pyx_v_offset + __pyx_v_i) + 1)])) != 0); - __pyx_t_8 = __pyx_t_1; - __pyx_L12_bool_binop_done:; - if (__pyx_t_8) { - - /* "pmercury/utils/tls_utils.pyx":201 - * for i in range(1,ext_length,2): - * if data[offset+i] in grease_single_int_ and data[offset+i] == data[offset+i+1]: - * degreased_ext_value += b'\x0a\x0a' # <<<<<<<<<<<<<< - * else: - * degreased_ext_value += data[offset+i:offset+i+2] - */ - __pyx_t_4 = PyNumber_InPlaceAdd(__pyx_v_degreased_ext_value, __pyx_kp_b__22); if (unlikely(!__pyx_t_4)) __PYX_ERR(0, 201, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_4); - __Pyx_DECREF_SET(__pyx_v_degreased_ext_value, ((PyObject*)__pyx_t_4)); - __pyx_t_4 = 0; - - /* "pmercury/utils/tls_utils.pyx":200 - * degreased_ext_value += data[offset:offset+1] - * for i in range(1,ext_length,2): - * if data[offset+i] in grease_single_int_ and data[offset+i] == data[offset+i+1]: # <<<<<<<<<<<<<< - * degreased_ext_value += b'\x0a\x0a' - * else: - */ - goto __pyx_L11; - } - - /* "pmercury/utils/tls_utils.pyx":203 - * degreased_ext_value += b'\x0a\x0a' - * else: - * degreased_ext_value += data[offset+i:offset+i+2] # <<<<<<<<<<<<<< - * return degreased_ext_value - * - */ - /*else*/ { - __pyx_t_4 = __Pyx_PyBytes_FromStringAndSize(((const char*)__pyx_v_data) + (__pyx_v_offset + __pyx_v_i), ((__pyx_v_offset + __pyx_v_i) + 2) - (__pyx_v_offset + __pyx_v_i)); if (unlikely(!__pyx_t_4)) __PYX_ERR(0, 203, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_4); - __pyx_t_3 = PyNumber_InPlaceAdd(__pyx_v_degreased_ext_value, __pyx_t_4); if (unlikely(!__pyx_t_3)) __PYX_ERR(0, 203, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_3); - __Pyx_DECREF(__pyx_t_4); __pyx_t_4 = 0; - __Pyx_DECREF_SET(__pyx_v_degreased_ext_value, ((PyObject*)__pyx_t_3)); - __pyx_t_3 = 0; - } - __pyx_L11:; - } - - /* "pmercury/utils/tls_utils.pyx":204 - * else: - * degreased_ext_value += data[offset+i:offset+i+2] - * return degreased_ext_value # <<<<<<<<<<<<<< - * - * return ext_value - */ - __Pyx_XDECREF(__pyx_r); - __Pyx_INCREF(__pyx_v_degreased_ext_value); - __pyx_r = __pyx_v_degreased_ext_value; - goto __pyx_L0; - - /* "pmercury/utils/tls_utils.pyx":197 - * degreased_ext_value += data[offset+i:offset+i+2] - * return degreased_ext_value - * elif ext_type == b'002b': # supported_versions # <<<<<<<<<<<<<< - * degreased_ext_value += data[offset:offset+1] - * for i in range(1,ext_length,2): - */ - } - - /* "pmercury/utils/tls_utils.pyx":206 - * return degreased_ext_value - * - * return ext_value # <<<<<<<<<<<<<< - * - * - */ - __Pyx_XDECREF(__pyx_r); - __Pyx_INCREF(__pyx_v_ext_value); - __pyx_r = __pyx_v_ext_value; - goto __pyx_L0; - - /* "pmercury/utils/tls_utils.pyx":187 - * - * # helper to normalize grease within supported_groups and supported_versions - * def degrease_ext_data(unsigned char *data, unsigned int offset, str ext_type, unsigned int ext_length, bytes ext_value): # <<<<<<<<<<<<<< - * degreased_ext_value = b'' - * if ext_type == '000a': # supported_groups - */ - - /* function exit code */ - __pyx_L1_error:; - __Pyx_XDECREF(__pyx_t_3); - __Pyx_XDECREF(__pyx_t_4); - __Pyx_AddTraceback("pmercury.utils.tls_utils.degrease_ext_data", __pyx_clineno, __pyx_lineno, __pyx_filename); - __pyx_r = NULL; - __pyx_L0:; - __Pyx_XDECREF(__pyx_v_degreased_ext_value); - __Pyx_XGIVEREF(__pyx_r); - __Pyx_RefNannyFinishContext(); - return __pyx_r; -} - -/* "pmercury/utils/tls_utils.pyx":209 - * - * - * def supported_groups(data, length): # <<<<<<<<<<<<<< - * if len(data) < 2: - * return '' - */ - -/* Python wrapper */ -static PyObject *__pyx_pw_8pmercury_5utils_9tls_utils_23supported_groups(PyObject *__pyx_self, PyObject *__pyx_args, PyObject *__pyx_kwds); /*proto*/ -static PyMethodDef __pyx_mdef_8pmercury_5utils_9tls_utils_23supported_groups = {"supported_groups", (PyCFunction)(void*)(PyCFunctionWithKeywords)__pyx_pw_8pmercury_5utils_9tls_utils_23supported_groups, METH_VARARGS|METH_KEYWORDS, 0}; -static PyObject *__pyx_pw_8pmercury_5utils_9tls_utils_23supported_groups(PyObject *__pyx_self, PyObject *__pyx_args, PyObject *__pyx_kwds) { - PyObject *__pyx_v_data = 0; - PyObject *__pyx_v_length = 0; - PyObject *__pyx_r = 0; - __Pyx_RefNannyDeclarations - __Pyx_RefNannySetupContext("supported_groups (wrapper)", 0); - { - static PyObject **__pyx_pyargnames[] = {&__pyx_n_s_data,&__pyx_n_s_length,0}; - PyObject* values[2] = {0,0}; - if (unlikely(__pyx_kwds)) { - Py_ssize_t kw_args; - const Py_ssize_t pos_args = PyTuple_GET_SIZE(__pyx_args); - switch (pos_args) { - case 2: values[1] = PyTuple_GET_ITEM(__pyx_args, 1); - CYTHON_FALLTHROUGH; - case 1: values[0] = PyTuple_GET_ITEM(__pyx_args, 0); - CYTHON_FALLTHROUGH; - case 0: break; - default: goto __pyx_L5_argtuple_error; - } - kw_args = PyDict_Size(__pyx_kwds); - switch (pos_args) { - case 0: - if (likely((values[0] = __Pyx_PyDict_GetItemStr(__pyx_kwds, __pyx_n_s_data)) != 0)) kw_args--; - else goto __pyx_L5_argtuple_error; - CYTHON_FALLTHROUGH; - case 1: - if (likely((values[1] = __Pyx_PyDict_GetItemStr(__pyx_kwds, __pyx_n_s_length)) != 0)) kw_args--; - else { - __Pyx_RaiseArgtupleInvalid("supported_groups", 1, 2, 2, 1); __PYX_ERR(0, 209, __pyx_L3_error) - } - } - if (unlikely(kw_args > 0)) { - if (unlikely(__Pyx_ParseOptionalKeywords(__pyx_kwds, __pyx_pyargnames, 0, values, pos_args, "supported_groups") < 0)) __PYX_ERR(0, 209, __pyx_L3_error) - } - } else if (PyTuple_GET_SIZE(__pyx_args) != 2) { - goto __pyx_L5_argtuple_error; - } else { - values[0] = PyTuple_GET_ITEM(__pyx_args, 0); - values[1] = PyTuple_GET_ITEM(__pyx_args, 1); - } - __pyx_v_data = values[0]; - __pyx_v_length = values[1]; - } - goto __pyx_L4_argument_unpacking_done; - __pyx_L5_argtuple_error:; - __Pyx_RaiseArgtupleInvalid("supported_groups", 1, 2, 2, PyTuple_GET_SIZE(__pyx_args)); __PYX_ERR(0, 209, __pyx_L3_error) - __pyx_L3_error:; - __Pyx_AddTraceback("pmercury.utils.tls_utils.supported_groups", __pyx_clineno, __pyx_lineno, __pyx_filename); - __Pyx_RefNannyFinishContext(); - return NULL; - __pyx_L4_argument_unpacking_done:; - __pyx_r = __pyx_pf_8pmercury_5utils_9tls_utils_22supported_groups(__pyx_self, __pyx_v_data, __pyx_v_length); - - /* function exit code */ - __Pyx_RefNannyFinishContext(); - return __pyx_r; -} - -static PyObject *__pyx_pf_8pmercury_5utils_9tls_utils_22supported_groups(CYTHON_UNUSED PyObject *__pyx_self, PyObject *__pyx_v_data, PyObject *__pyx_v_length) { - PyObject *__pyx_v_info = NULL; - PyObject *__pyx_v_ext_len = NULL; - long __pyx_v_offset; - PyObject *__pyx_r = NULL; - __Pyx_RefNannyDeclarations - Py_ssize_t __pyx_t_1; - int __pyx_t_2; - PyObject *__pyx_t_3 = NULL; - PyObject *__pyx_t_4 = NULL; - PyObject *__pyx_t_5 = NULL; - int __pyx_t_6; - PyObject *__pyx_t_7 = NULL; - int __pyx_t_8; - __Pyx_RefNannySetupContext("supported_groups", 0); - - /* "pmercury/utils/tls_utils.pyx":210 - * - * def supported_groups(data, length): - * if len(data) < 2: # <<<<<<<<<<<<<< - * return '' - * info = {} - */ - __pyx_t_1 = PyObject_Length(__pyx_v_data); if (unlikely(__pyx_t_1 == ((Py_ssize_t)-1))) __PYX_ERR(0, 210, __pyx_L1_error) - __pyx_t_2 = ((__pyx_t_1 < 2) != 0); - if (__pyx_t_2) { - - /* "pmercury/utils/tls_utils.pyx":211 - * def supported_groups(data, length): - * if len(data) < 2: - * return '' # <<<<<<<<<<<<<< - * info = {} - * ext_len = int(data[0:4], 16) - */ - __Pyx_XDECREF(__pyx_r); - __Pyx_INCREF(__pyx_kp_u__19); - __pyx_r = __pyx_kp_u__19; - goto __pyx_L0; - - /* "pmercury/utils/tls_utils.pyx":210 - * - * def supported_groups(data, length): - * if len(data) < 2: # <<<<<<<<<<<<<< - * return '' - * info = {} - */ - } - - /* "pmercury/utils/tls_utils.pyx":212 - * if len(data) < 2: - * return '' - * info = {} # <<<<<<<<<<<<<< - * ext_len = int(data[0:4], 16) - * info['supported_groups_list_length'] = ext_len - */ - __pyx_t_3 = __Pyx_PyDict_NewPresized(0); if (unlikely(!__pyx_t_3)) __PYX_ERR(0, 212, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_3); - __pyx_v_info = ((PyObject*)__pyx_t_3); - __pyx_t_3 = 0; - - /* "pmercury/utils/tls_utils.pyx":213 - * return '' - * info = {} - * ext_len = int(data[0:4], 16) # <<<<<<<<<<<<<< - * info['supported_groups_list_length'] = ext_len - * info['supported_groups'] = [] - */ - __pyx_t_3 = __Pyx_PyObject_GetSlice(__pyx_v_data, 0, 4, NULL, NULL, &__pyx_slice__18, 1, 1, 1); if (unlikely(!__pyx_t_3)) __PYX_ERR(0, 213, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_3); - __pyx_t_4 = PyTuple_New(2); if (unlikely(!__pyx_t_4)) __PYX_ERR(0, 213, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_4); - __Pyx_GIVEREF(__pyx_t_3); - PyTuple_SET_ITEM(__pyx_t_4, 0, __pyx_t_3); - __Pyx_INCREF(__pyx_int_16); - __Pyx_GIVEREF(__pyx_int_16); - PyTuple_SET_ITEM(__pyx_t_4, 1, __pyx_int_16); - __pyx_t_3 = 0; - __pyx_t_3 = __Pyx_PyObject_Call(((PyObject *)(&PyInt_Type)), __pyx_t_4, NULL); if (unlikely(!__pyx_t_3)) __PYX_ERR(0, 213, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_3); - __Pyx_DECREF(__pyx_t_4); __pyx_t_4 = 0; - __pyx_v_ext_len = __pyx_t_3; - __pyx_t_3 = 0; - - /* "pmercury/utils/tls_utils.pyx":214 - * info = {} - * ext_len = int(data[0:4], 16) - * info['supported_groups_list_length'] = ext_len # <<<<<<<<<<<<<< - * info['supported_groups'] = [] - * offset = 4 - */ - if (unlikely(PyDict_SetItem(__pyx_v_info, __pyx_n_u_supported_groups_list_length, __pyx_v_ext_len) < 0)) __PYX_ERR(0, 214, __pyx_L1_error) - - /* "pmercury/utils/tls_utils.pyx":215 - * ext_len = int(data[0:4], 16) - * info['supported_groups_list_length'] = ext_len - * info['supported_groups'] = [] # <<<<<<<<<<<<<< - * offset = 4 - * while offset < length*2: - */ - __pyx_t_3 = PyList_New(0); if (unlikely(!__pyx_t_3)) __PYX_ERR(0, 215, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_3); - if (unlikely(PyDict_SetItem(__pyx_v_info, __pyx_n_u_supported_groups, __pyx_t_3) < 0)) __PYX_ERR(0, 215, __pyx_L1_error) - __Pyx_DECREF(__pyx_t_3); __pyx_t_3 = 0; - - /* "pmercury/utils/tls_utils.pyx":216 - * info['supported_groups_list_length'] = ext_len - * info['supported_groups'] = [] - * offset = 4 # <<<<<<<<<<<<<< - * while offset < length*2: - * if int(data[offset:offset+4], 16) in TLS_SUPPORTED_GROUPS: - */ - __pyx_v_offset = 4; - - /* "pmercury/utils/tls_utils.pyx":217 - * info['supported_groups'] = [] - * offset = 4 - * while offset < length*2: # <<<<<<<<<<<<<< - * if int(data[offset:offset+4], 16) in TLS_SUPPORTED_GROUPS: - * info['supported_groups'].append(TLS_SUPPORTED_GROUPS[int(data[offset:offset+4], 16)]) - */ - while (1) { - __pyx_t_3 = __Pyx_PyInt_From_long(__pyx_v_offset); if (unlikely(!__pyx_t_3)) __PYX_ERR(0, 217, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_3); - __pyx_t_4 = PyNumber_Multiply(__pyx_v_length, __pyx_int_2); if (unlikely(!__pyx_t_4)) __PYX_ERR(0, 217, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_4); - __pyx_t_5 = PyObject_RichCompare(__pyx_t_3, __pyx_t_4, Py_LT); __Pyx_XGOTREF(__pyx_t_5); if (unlikely(!__pyx_t_5)) __PYX_ERR(0, 217, __pyx_L1_error) - __Pyx_DECREF(__pyx_t_3); __pyx_t_3 = 0; - __Pyx_DECREF(__pyx_t_4); __pyx_t_4 = 0; - __pyx_t_2 = __Pyx_PyObject_IsTrue(__pyx_t_5); if (unlikely(__pyx_t_2 < 0)) __PYX_ERR(0, 217, __pyx_L1_error) - __Pyx_DECREF(__pyx_t_5); __pyx_t_5 = 0; - if (!__pyx_t_2) break; - - /* "pmercury/utils/tls_utils.pyx":218 - * offset = 4 - * while offset < length*2: - * if int(data[offset:offset+4], 16) in TLS_SUPPORTED_GROUPS: # <<<<<<<<<<<<<< - * info['supported_groups'].append(TLS_SUPPORTED_GROUPS[int(data[offset:offset+4], 16)]) - * else: - */ - __pyx_t_5 = __Pyx_PyObject_GetSlice(__pyx_v_data, __pyx_v_offset, (__pyx_v_offset + 4), NULL, NULL, NULL, 1, 1, 1); if (unlikely(!__pyx_t_5)) __PYX_ERR(0, 218, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_5); - __pyx_t_4 = PyTuple_New(2); if (unlikely(!__pyx_t_4)) __PYX_ERR(0, 218, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_4); - __Pyx_GIVEREF(__pyx_t_5); - PyTuple_SET_ITEM(__pyx_t_4, 0, __pyx_t_5); - __Pyx_INCREF(__pyx_int_16); - __Pyx_GIVEREF(__pyx_int_16); - PyTuple_SET_ITEM(__pyx_t_4, 1, __pyx_int_16); - __pyx_t_5 = 0; - __pyx_t_5 = __Pyx_PyObject_Call(((PyObject *)(&PyInt_Type)), __pyx_t_4, NULL); if (unlikely(!__pyx_t_5)) __PYX_ERR(0, 218, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_5); - __Pyx_DECREF(__pyx_t_4); __pyx_t_4 = 0; - __Pyx_GetModuleGlobalName(__pyx_t_4, __pyx_n_s_TLS_SUPPORTED_GROUPS); if (unlikely(!__pyx_t_4)) __PYX_ERR(0, 218, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_4); - __pyx_t_2 = (__Pyx_PySequence_ContainsTF(__pyx_t_5, __pyx_t_4, Py_EQ)); if (unlikely(__pyx_t_2 < 0)) __PYX_ERR(0, 218, __pyx_L1_error) - __Pyx_DECREF(__pyx_t_5); __pyx_t_5 = 0; - __Pyx_DECREF(__pyx_t_4); __pyx_t_4 = 0; - __pyx_t_6 = (__pyx_t_2 != 0); - if (__pyx_t_6) { - - /* "pmercury/utils/tls_utils.pyx":219 - * while offset < length*2: - * if int(data[offset:offset+4], 16) in TLS_SUPPORTED_GROUPS: - * info['supported_groups'].append(TLS_SUPPORTED_GROUPS[int(data[offset:offset+4], 16)]) # <<<<<<<<<<<<<< - * else: - * info['supported_groups'].append('Unknown Group (%i)' % int(data[offset:offset+4], 16)) - */ - __pyx_t_4 = __Pyx_PyDict_GetItem(__pyx_v_info, __pyx_n_u_supported_groups); if (unlikely(!__pyx_t_4)) __PYX_ERR(0, 219, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_4); - __Pyx_GetModuleGlobalName(__pyx_t_5, __pyx_n_s_TLS_SUPPORTED_GROUPS); if (unlikely(!__pyx_t_5)) __PYX_ERR(0, 219, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_5); - __pyx_t_3 = __Pyx_PyObject_GetSlice(__pyx_v_data, __pyx_v_offset, (__pyx_v_offset + 4), NULL, NULL, NULL, 1, 1, 1); if (unlikely(!__pyx_t_3)) __PYX_ERR(0, 219, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_3); - __pyx_t_7 = PyTuple_New(2); if (unlikely(!__pyx_t_7)) __PYX_ERR(0, 219, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_7); - __Pyx_GIVEREF(__pyx_t_3); - PyTuple_SET_ITEM(__pyx_t_7, 0, __pyx_t_3); - __Pyx_INCREF(__pyx_int_16); - __Pyx_GIVEREF(__pyx_int_16); - PyTuple_SET_ITEM(__pyx_t_7, 1, __pyx_int_16); - __pyx_t_3 = 0; - __pyx_t_3 = __Pyx_PyObject_Call(((PyObject *)(&PyInt_Type)), __pyx_t_7, NULL); if (unlikely(!__pyx_t_3)) __PYX_ERR(0, 219, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_3); - __Pyx_DECREF(__pyx_t_7); __pyx_t_7 = 0; - __pyx_t_7 = __Pyx_PyObject_GetItem(__pyx_t_5, __pyx_t_3); if (unlikely(!__pyx_t_7)) __PYX_ERR(0, 219, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_7); - __Pyx_DECREF(__pyx_t_5); __pyx_t_5 = 0; - __Pyx_DECREF(__pyx_t_3); __pyx_t_3 = 0; - __pyx_t_8 = __Pyx_PyObject_Append(__pyx_t_4, __pyx_t_7); if (unlikely(__pyx_t_8 == ((int)-1))) __PYX_ERR(0, 219, __pyx_L1_error) - __Pyx_DECREF(__pyx_t_4); __pyx_t_4 = 0; - __Pyx_DECREF(__pyx_t_7); __pyx_t_7 = 0; - - /* "pmercury/utils/tls_utils.pyx":218 - * offset = 4 - * while offset < length*2: - * if int(data[offset:offset+4], 16) in TLS_SUPPORTED_GROUPS: # <<<<<<<<<<<<<< - * info['supported_groups'].append(TLS_SUPPORTED_GROUPS[int(data[offset:offset+4], 16)]) - * else: - */ - goto __pyx_L6; - } - - /* "pmercury/utils/tls_utils.pyx":221 - * info['supported_groups'].append(TLS_SUPPORTED_GROUPS[int(data[offset:offset+4], 16)]) - * else: - * info['supported_groups'].append('Unknown Group (%i)' % int(data[offset:offset+4], 16)) # <<<<<<<<<<<<<< - * offset += 4 - * - */ - /*else*/ { - __pyx_t_7 = __Pyx_PyDict_GetItem(__pyx_v_info, __pyx_n_u_supported_groups); if (unlikely(!__pyx_t_7)) __PYX_ERR(0, 221, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_7); - __pyx_t_4 = __Pyx_PyObject_GetSlice(__pyx_v_data, __pyx_v_offset, (__pyx_v_offset + 4), NULL, NULL, NULL, 1, 1, 1); if (unlikely(!__pyx_t_4)) __PYX_ERR(0, 221, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_4); - __pyx_t_3 = PyTuple_New(2); if (unlikely(!__pyx_t_3)) __PYX_ERR(0, 221, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_3); - __Pyx_GIVEREF(__pyx_t_4); - PyTuple_SET_ITEM(__pyx_t_3, 0, __pyx_t_4); - __Pyx_INCREF(__pyx_int_16); - __Pyx_GIVEREF(__pyx_int_16); - PyTuple_SET_ITEM(__pyx_t_3, 1, __pyx_int_16); - __pyx_t_4 = 0; - __pyx_t_4 = __Pyx_PyObject_Call(((PyObject *)(&PyInt_Type)), __pyx_t_3, NULL); if (unlikely(!__pyx_t_4)) __PYX_ERR(0, 221, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_4); - __Pyx_DECREF(__pyx_t_3); __pyx_t_3 = 0; - __pyx_t_3 = __Pyx_PyUnicode_FormatSafe(__pyx_kp_u_Unknown_Group_i, __pyx_t_4); if (unlikely(!__pyx_t_3)) __PYX_ERR(0, 221, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_3); - __Pyx_DECREF(__pyx_t_4); __pyx_t_4 = 0; - __pyx_t_8 = __Pyx_PyObject_Append(__pyx_t_7, __pyx_t_3); if (unlikely(__pyx_t_8 == ((int)-1))) __PYX_ERR(0, 221, __pyx_L1_error) - __Pyx_DECREF(__pyx_t_7); __pyx_t_7 = 0; - __Pyx_DECREF(__pyx_t_3); __pyx_t_3 = 0; - } - __pyx_L6:; - - /* "pmercury/utils/tls_utils.pyx":222 - * else: - * info['supported_groups'].append('Unknown Group (%i)' % int(data[offset:offset+4], 16)) - * offset += 4 # <<<<<<<<<<<<<< - * - * return info - */ - __pyx_v_offset = (__pyx_v_offset + 4); - } - - /* "pmercury/utils/tls_utils.pyx":224 - * offset += 4 - * - * return info # <<<<<<<<<<<<<< - * - * - */ - __Pyx_XDECREF(__pyx_r); - __Pyx_INCREF(__pyx_v_info); - __pyx_r = __pyx_v_info; - goto __pyx_L0; - - /* "pmercury/utils/tls_utils.pyx":209 - * - * - * def supported_groups(data, length): # <<<<<<<<<<<<<< - * if len(data) < 2: - * return '' - */ - - /* function exit code */ - __pyx_L1_error:; - __Pyx_XDECREF(__pyx_t_3); - __Pyx_XDECREF(__pyx_t_4); - __Pyx_XDECREF(__pyx_t_5); - __Pyx_XDECREF(__pyx_t_7); - __Pyx_AddTraceback("pmercury.utils.tls_utils.supported_groups", __pyx_clineno, __pyx_lineno, __pyx_filename); - __pyx_r = NULL; - __pyx_L0:; - __Pyx_XDECREF(__pyx_v_info); - __Pyx_XDECREF(__pyx_v_ext_len); - __Pyx_XGIVEREF(__pyx_r); - __Pyx_RefNannyFinishContext(); - return __pyx_r; -} - -/* "pmercury/utils/tls_utils.pyx":227 - * - * - * def supported_versions(data, length): # <<<<<<<<<<<<<< - * if len(data) < 2: - * return '' - */ - -/* Python wrapper */ -static PyObject *__pyx_pw_8pmercury_5utils_9tls_utils_25supported_versions(PyObject *__pyx_self, PyObject *__pyx_args, PyObject *__pyx_kwds); /*proto*/ -static PyMethodDef __pyx_mdef_8pmercury_5utils_9tls_utils_25supported_versions = {"supported_versions", (PyCFunction)(void*)(PyCFunctionWithKeywords)__pyx_pw_8pmercury_5utils_9tls_utils_25supported_versions, METH_VARARGS|METH_KEYWORDS, 0}; -static PyObject *__pyx_pw_8pmercury_5utils_9tls_utils_25supported_versions(PyObject *__pyx_self, PyObject *__pyx_args, PyObject *__pyx_kwds) { - PyObject *__pyx_v_data = 0; - PyObject *__pyx_v_length = 0; - PyObject *__pyx_r = 0; - __Pyx_RefNannyDeclarations - __Pyx_RefNannySetupContext("supported_versions (wrapper)", 0); - { - static PyObject **__pyx_pyargnames[] = {&__pyx_n_s_data,&__pyx_n_s_length,0}; - PyObject* values[2] = {0,0}; - if (unlikely(__pyx_kwds)) { - Py_ssize_t kw_args; - const Py_ssize_t pos_args = PyTuple_GET_SIZE(__pyx_args); - switch (pos_args) { - case 2: values[1] = PyTuple_GET_ITEM(__pyx_args, 1); - CYTHON_FALLTHROUGH; - case 1: values[0] = PyTuple_GET_ITEM(__pyx_args, 0); - CYTHON_FALLTHROUGH; - case 0: break; - default: goto __pyx_L5_argtuple_error; - } - kw_args = PyDict_Size(__pyx_kwds); - switch (pos_args) { - case 0: - if (likely((values[0] = __Pyx_PyDict_GetItemStr(__pyx_kwds, __pyx_n_s_data)) != 0)) kw_args--; - else goto __pyx_L5_argtuple_error; - CYTHON_FALLTHROUGH; - case 1: - if (likely((values[1] = __Pyx_PyDict_GetItemStr(__pyx_kwds, __pyx_n_s_length)) != 0)) kw_args--; - else { - __Pyx_RaiseArgtupleInvalid("supported_versions", 1, 2, 2, 1); __PYX_ERR(0, 227, __pyx_L3_error) - } - } - if (unlikely(kw_args > 0)) { - if (unlikely(__Pyx_ParseOptionalKeywords(__pyx_kwds, __pyx_pyargnames, 0, values, pos_args, "supported_versions") < 0)) __PYX_ERR(0, 227, __pyx_L3_error) - } - } else if (PyTuple_GET_SIZE(__pyx_args) != 2) { - goto __pyx_L5_argtuple_error; - } else { - values[0] = PyTuple_GET_ITEM(__pyx_args, 0); - values[1] = PyTuple_GET_ITEM(__pyx_args, 1); - } - __pyx_v_data = values[0]; - __pyx_v_length = values[1]; - } - goto __pyx_L4_argument_unpacking_done; - __pyx_L5_argtuple_error:; - __Pyx_RaiseArgtupleInvalid("supported_versions", 1, 2, 2, PyTuple_GET_SIZE(__pyx_args)); __PYX_ERR(0, 227, __pyx_L3_error) - __pyx_L3_error:; - __Pyx_AddTraceback("pmercury.utils.tls_utils.supported_versions", __pyx_clineno, __pyx_lineno, __pyx_filename); - __Pyx_RefNannyFinishContext(); - return NULL; - __pyx_L4_argument_unpacking_done:; - __pyx_r = __pyx_pf_8pmercury_5utils_9tls_utils_24supported_versions(__pyx_self, __pyx_v_data, __pyx_v_length); - - /* function exit code */ - __Pyx_RefNannyFinishContext(); - return __pyx_r; -} - -static PyObject *__pyx_pf_8pmercury_5utils_9tls_utils_24supported_versions(CYTHON_UNUSED PyObject *__pyx_self, PyObject *__pyx_v_data, PyObject *__pyx_v_length) { - PyObject *__pyx_v_info = NULL; - PyObject *__pyx_v_ext_len = NULL; - long __pyx_v_offset; - PyObject *__pyx_v_tmp_data = NULL; - PyObject *__pyx_r = NULL; - __Pyx_RefNannyDeclarations - Py_ssize_t __pyx_t_1; - int __pyx_t_2; - PyObject *__pyx_t_3 = NULL; - PyObject *__pyx_t_4 = NULL; - PyObject *__pyx_t_5 = NULL; - int __pyx_t_6; - int __pyx_t_7; - __Pyx_RefNannySetupContext("supported_versions", 0); - - /* "pmercury/utils/tls_utils.pyx":228 - * - * def supported_versions(data, length): - * if len(data) < 2: # <<<<<<<<<<<<<< - * return '' - * info = {} - */ - __pyx_t_1 = PyObject_Length(__pyx_v_data); if (unlikely(__pyx_t_1 == ((Py_ssize_t)-1))) __PYX_ERR(0, 228, __pyx_L1_error) - __pyx_t_2 = ((__pyx_t_1 < 2) != 0); - if (__pyx_t_2) { - - /* "pmercury/utils/tls_utils.pyx":229 - * def supported_versions(data, length): - * if len(data) < 2: - * return '' # <<<<<<<<<<<<<< - * info = {} - * ext_len = int(data[0:2], 16) - */ - __Pyx_XDECREF(__pyx_r); - __Pyx_INCREF(__pyx_kp_u__19); - __pyx_r = __pyx_kp_u__19; - goto __pyx_L0; - - /* "pmercury/utils/tls_utils.pyx":228 - * - * def supported_versions(data, length): - * if len(data) < 2: # <<<<<<<<<<<<<< - * return '' - * info = {} - */ - } - - /* "pmercury/utils/tls_utils.pyx":230 - * if len(data) < 2: - * return '' - * info = {} # <<<<<<<<<<<<<< - * ext_len = int(data[0:2], 16) - * info['supported_versions_list_length'] = ext_len - */ - __pyx_t_3 = __Pyx_PyDict_NewPresized(0); if (unlikely(!__pyx_t_3)) __PYX_ERR(0, 230, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_3); - __pyx_v_info = ((PyObject*)__pyx_t_3); - __pyx_t_3 = 0; - - /* "pmercury/utils/tls_utils.pyx":231 - * return '' - * info = {} - * ext_len = int(data[0:2], 16) # <<<<<<<<<<<<<< - * info['supported_versions_list_length'] = ext_len - * info['supported_versions'] = [] - */ - __pyx_t_3 = __Pyx_PyObject_GetSlice(__pyx_v_data, 0, 2, NULL, NULL, &__pyx_slice__23, 1, 1, 1); if (unlikely(!__pyx_t_3)) __PYX_ERR(0, 231, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_3); - __pyx_t_4 = PyTuple_New(2); if (unlikely(!__pyx_t_4)) __PYX_ERR(0, 231, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_4); - __Pyx_GIVEREF(__pyx_t_3); - PyTuple_SET_ITEM(__pyx_t_4, 0, __pyx_t_3); - __Pyx_INCREF(__pyx_int_16); - __Pyx_GIVEREF(__pyx_int_16); - PyTuple_SET_ITEM(__pyx_t_4, 1, __pyx_int_16); - __pyx_t_3 = 0; - __pyx_t_3 = __Pyx_PyObject_Call(((PyObject *)(&PyInt_Type)), __pyx_t_4, NULL); if (unlikely(!__pyx_t_3)) __PYX_ERR(0, 231, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_3); - __Pyx_DECREF(__pyx_t_4); __pyx_t_4 = 0; - __pyx_v_ext_len = __pyx_t_3; - __pyx_t_3 = 0; - - /* "pmercury/utils/tls_utils.pyx":232 - * info = {} - * ext_len = int(data[0:2], 16) - * info['supported_versions_list_length'] = ext_len # <<<<<<<<<<<<<< - * info['supported_versions'] = [] - * offset = 2 - */ - if (unlikely(PyDict_SetItem(__pyx_v_info, __pyx_n_u_supported_versions_list_length, __pyx_v_ext_len) < 0)) __PYX_ERR(0, 232, __pyx_L1_error) - - /* "pmercury/utils/tls_utils.pyx":233 - * ext_len = int(data[0:2], 16) - * info['supported_versions_list_length'] = ext_len - * info['supported_versions'] = [] # <<<<<<<<<<<<<< - * offset = 2 - * while offset < length*2: - */ - __pyx_t_3 = PyList_New(0); if (unlikely(!__pyx_t_3)) __PYX_ERR(0, 233, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_3); - if (unlikely(PyDict_SetItem(__pyx_v_info, __pyx_n_u_supported_versions, __pyx_t_3) < 0)) __PYX_ERR(0, 233, __pyx_L1_error) - __Pyx_DECREF(__pyx_t_3); __pyx_t_3 = 0; - - /* "pmercury/utils/tls_utils.pyx":234 - * info['supported_versions_list_length'] = ext_len - * info['supported_versions'] = [] - * offset = 2 # <<<<<<<<<<<<<< - * while offset < length*2: - * tmp_data = data[offset:offset+4] - */ - __pyx_v_offset = 2; - - /* "pmercury/utils/tls_utils.pyx":235 - * info['supported_versions'] = [] - * offset = 2 - * while offset < length*2: # <<<<<<<<<<<<<< - * tmp_data = data[offset:offset+4] - * if tmp_data in TLS_VERSION: - */ - while (1) { - __pyx_t_3 = __Pyx_PyInt_From_long(__pyx_v_offset); if (unlikely(!__pyx_t_3)) __PYX_ERR(0, 235, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_3); - __pyx_t_4 = PyNumber_Multiply(__pyx_v_length, __pyx_int_2); if (unlikely(!__pyx_t_4)) __PYX_ERR(0, 235, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_4); - __pyx_t_5 = PyObject_RichCompare(__pyx_t_3, __pyx_t_4, Py_LT); __Pyx_XGOTREF(__pyx_t_5); if (unlikely(!__pyx_t_5)) __PYX_ERR(0, 235, __pyx_L1_error) - __Pyx_DECREF(__pyx_t_3); __pyx_t_3 = 0; - __Pyx_DECREF(__pyx_t_4); __pyx_t_4 = 0; - __pyx_t_2 = __Pyx_PyObject_IsTrue(__pyx_t_5); if (unlikely(__pyx_t_2 < 0)) __PYX_ERR(0, 235, __pyx_L1_error) - __Pyx_DECREF(__pyx_t_5); __pyx_t_5 = 0; - if (!__pyx_t_2) break; - - /* "pmercury/utils/tls_utils.pyx":236 - * offset = 2 - * while offset < length*2: - * tmp_data = data[offset:offset+4] # <<<<<<<<<<<<<< - * if tmp_data in TLS_VERSION: - * info['supported_versions'].append(TLS_VERSION[tmp_data]) - */ - __pyx_t_5 = __Pyx_PyObject_GetSlice(__pyx_v_data, __pyx_v_offset, (__pyx_v_offset + 4), NULL, NULL, NULL, 1, 1, 1); if (unlikely(!__pyx_t_5)) __PYX_ERR(0, 236, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_5); - __Pyx_XDECREF_SET(__pyx_v_tmp_data, __pyx_t_5); - __pyx_t_5 = 0; - - /* "pmercury/utils/tls_utils.pyx":237 - * while offset < length*2: - * tmp_data = data[offset:offset+4] - * if tmp_data in TLS_VERSION: # <<<<<<<<<<<<<< - * info['supported_versions'].append(TLS_VERSION[tmp_data]) - * else: - */ - __Pyx_GetModuleGlobalName(__pyx_t_5, __pyx_n_s_TLS_VERSION); if (unlikely(!__pyx_t_5)) __PYX_ERR(0, 237, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_5); - __pyx_t_2 = (__Pyx_PySequence_ContainsTF(__pyx_v_tmp_data, __pyx_t_5, Py_EQ)); if (unlikely(__pyx_t_2 < 0)) __PYX_ERR(0, 237, __pyx_L1_error) - __Pyx_DECREF(__pyx_t_5); __pyx_t_5 = 0; - __pyx_t_6 = (__pyx_t_2 != 0); - if (__pyx_t_6) { - - /* "pmercury/utils/tls_utils.pyx":238 - * tmp_data = data[offset:offset+4] - * if tmp_data in TLS_VERSION: - * info['supported_versions'].append(TLS_VERSION[tmp_data]) # <<<<<<<<<<<<<< - * else: - * info['supported_versions'].append('Unknown Version (%s)' % tmp_data) - */ - __pyx_t_5 = __Pyx_PyDict_GetItem(__pyx_v_info, __pyx_n_u_supported_versions); if (unlikely(!__pyx_t_5)) __PYX_ERR(0, 238, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_5); - __Pyx_GetModuleGlobalName(__pyx_t_4, __pyx_n_s_TLS_VERSION); if (unlikely(!__pyx_t_4)) __PYX_ERR(0, 238, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_4); - __pyx_t_3 = __Pyx_PyObject_GetItem(__pyx_t_4, __pyx_v_tmp_data); if (unlikely(!__pyx_t_3)) __PYX_ERR(0, 238, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_3); - __Pyx_DECREF(__pyx_t_4); __pyx_t_4 = 0; - __pyx_t_7 = __Pyx_PyObject_Append(__pyx_t_5, __pyx_t_3); if (unlikely(__pyx_t_7 == ((int)-1))) __PYX_ERR(0, 238, __pyx_L1_error) - __Pyx_DECREF(__pyx_t_5); __pyx_t_5 = 0; - __Pyx_DECREF(__pyx_t_3); __pyx_t_3 = 0; - - /* "pmercury/utils/tls_utils.pyx":237 - * while offset < length*2: - * tmp_data = data[offset:offset+4] - * if tmp_data in TLS_VERSION: # <<<<<<<<<<<<<< - * info['supported_versions'].append(TLS_VERSION[tmp_data]) - * else: - */ - goto __pyx_L6; - } - - /* "pmercury/utils/tls_utils.pyx":240 - * info['supported_versions'].append(TLS_VERSION[tmp_data]) - * else: - * info['supported_versions'].append('Unknown Version (%s)' % tmp_data) # <<<<<<<<<<<<<< - * offset += 4 - * - */ - /*else*/ { - __pyx_t_3 = __Pyx_PyDict_GetItem(__pyx_v_info, __pyx_n_u_supported_versions); if (unlikely(!__pyx_t_3)) __PYX_ERR(0, 240, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_3); - __pyx_t_5 = __Pyx_PyUnicode_FormatSafe(__pyx_kp_u_Unknown_Version_s, __pyx_v_tmp_data); if (unlikely(!__pyx_t_5)) __PYX_ERR(0, 240, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_5); - __pyx_t_7 = __Pyx_PyObject_Append(__pyx_t_3, __pyx_t_5); if (unlikely(__pyx_t_7 == ((int)-1))) __PYX_ERR(0, 240, __pyx_L1_error) - __Pyx_DECREF(__pyx_t_3); __pyx_t_3 = 0; - __Pyx_DECREF(__pyx_t_5); __pyx_t_5 = 0; - } - __pyx_L6:; - - /* "pmercury/utils/tls_utils.pyx":241 - * else: - * info['supported_versions'].append('Unknown Version (%s)' % tmp_data) - * offset += 4 # <<<<<<<<<<<<<< - * - * return info - */ - __pyx_v_offset = (__pyx_v_offset + 4); - } - - /* "pmercury/utils/tls_utils.pyx":243 - * offset += 4 - * - * return info # <<<<<<<<<<<<<< - * - * - */ - __Pyx_XDECREF(__pyx_r); - __Pyx_INCREF(__pyx_v_info); - __pyx_r = __pyx_v_info; - goto __pyx_L0; - - /* "pmercury/utils/tls_utils.pyx":227 - * - * - * def supported_versions(data, length): # <<<<<<<<<<<<<< - * if len(data) < 2: - * return '' - */ - - /* function exit code */ - __pyx_L1_error:; - __Pyx_XDECREF(__pyx_t_3); - __Pyx_XDECREF(__pyx_t_4); - __Pyx_XDECREF(__pyx_t_5); - __Pyx_AddTraceback("pmercury.utils.tls_utils.supported_versions", __pyx_clineno, __pyx_lineno, __pyx_filename); - __pyx_r = NULL; - __pyx_L0:; - __Pyx_XDECREF(__pyx_v_info); - __Pyx_XDECREF(__pyx_v_ext_len); - __Pyx_XDECREF(__pyx_v_tmp_data); - __Pyx_XGIVEREF(__pyx_r); - __Pyx_RefNannyFinishContext(); - return __pyx_r; -} - -/* "pmercury/utils/tls_utils.pyx":246 - * - * - * def supported_versions_server(data, length): # <<<<<<<<<<<<<< - * if len(data) < 2: - * return '' - */ - -/* Python wrapper */ -static PyObject *__pyx_pw_8pmercury_5utils_9tls_utils_27supported_versions_server(PyObject *__pyx_self, PyObject *__pyx_args, PyObject *__pyx_kwds); /*proto*/ -static PyMethodDef __pyx_mdef_8pmercury_5utils_9tls_utils_27supported_versions_server = {"supported_versions_server", (PyCFunction)(void*)(PyCFunctionWithKeywords)__pyx_pw_8pmercury_5utils_9tls_utils_27supported_versions_server, METH_VARARGS|METH_KEYWORDS, 0}; -static PyObject *__pyx_pw_8pmercury_5utils_9tls_utils_27supported_versions_server(PyObject *__pyx_self, PyObject *__pyx_args, PyObject *__pyx_kwds) { - PyObject *__pyx_v_data = 0; - CYTHON_UNUSED PyObject *__pyx_v_length = 0; - PyObject *__pyx_r = 0; - __Pyx_RefNannyDeclarations - __Pyx_RefNannySetupContext("supported_versions_server (wrapper)", 0); - { - static PyObject **__pyx_pyargnames[] = {&__pyx_n_s_data,&__pyx_n_s_length,0}; - PyObject* values[2] = {0,0}; - if (unlikely(__pyx_kwds)) { - Py_ssize_t kw_args; - const Py_ssize_t pos_args = PyTuple_GET_SIZE(__pyx_args); - switch (pos_args) { - case 2: values[1] = PyTuple_GET_ITEM(__pyx_args, 1); - CYTHON_FALLTHROUGH; - case 1: values[0] = PyTuple_GET_ITEM(__pyx_args, 0); - CYTHON_FALLTHROUGH; - case 0: break; - default: goto __pyx_L5_argtuple_error; - } - kw_args = PyDict_Size(__pyx_kwds); - switch (pos_args) { - case 0: - if (likely((values[0] = __Pyx_PyDict_GetItemStr(__pyx_kwds, __pyx_n_s_data)) != 0)) kw_args--; - else goto __pyx_L5_argtuple_error; - CYTHON_FALLTHROUGH; - case 1: - if (likely((values[1] = __Pyx_PyDict_GetItemStr(__pyx_kwds, __pyx_n_s_length)) != 0)) kw_args--; - else { - __Pyx_RaiseArgtupleInvalid("supported_versions_server", 1, 2, 2, 1); __PYX_ERR(0, 246, __pyx_L3_error) - } - } - if (unlikely(kw_args > 0)) { - if (unlikely(__Pyx_ParseOptionalKeywords(__pyx_kwds, __pyx_pyargnames, 0, values, pos_args, "supported_versions_server") < 0)) __PYX_ERR(0, 246, __pyx_L3_error) - } - } else if (PyTuple_GET_SIZE(__pyx_args) != 2) { - goto __pyx_L5_argtuple_error; - } else { - values[0] = PyTuple_GET_ITEM(__pyx_args, 0); - values[1] = PyTuple_GET_ITEM(__pyx_args, 1); - } - __pyx_v_data = values[0]; - __pyx_v_length = values[1]; - } - goto __pyx_L4_argument_unpacking_done; - __pyx_L5_argtuple_error:; - __Pyx_RaiseArgtupleInvalid("supported_versions_server", 1, 2, 2, PyTuple_GET_SIZE(__pyx_args)); __PYX_ERR(0, 246, __pyx_L3_error) - __pyx_L3_error:; - __Pyx_AddTraceback("pmercury.utils.tls_utils.supported_versions_server", __pyx_clineno, __pyx_lineno, __pyx_filename); - __Pyx_RefNannyFinishContext(); - return NULL; - __pyx_L4_argument_unpacking_done:; - __pyx_r = __pyx_pf_8pmercury_5utils_9tls_utils_26supported_versions_server(__pyx_self, __pyx_v_data, __pyx_v_length); - - /* function exit code */ - __Pyx_RefNannyFinishContext(); - return __pyx_r; -} - -static PyObject *__pyx_pf_8pmercury_5utils_9tls_utils_26supported_versions_server(CYTHON_UNUSED PyObject *__pyx_self, PyObject *__pyx_v_data, CYTHON_UNUSED PyObject *__pyx_v_length) { - CYTHON_UNUSED PyObject *__pyx_v_info = NULL; - PyObject *__pyx_v_tmp_data = NULL; - PyObject *__pyx_r = NULL; - __Pyx_RefNannyDeclarations - Py_ssize_t __pyx_t_1; - int __pyx_t_2; - PyObject *__pyx_t_3 = NULL; - int __pyx_t_4; - PyObject *__pyx_t_5 = NULL; - __Pyx_RefNannySetupContext("supported_versions_server", 0); - - /* "pmercury/utils/tls_utils.pyx":247 - * - * def supported_versions_server(data, length): - * if len(data) < 2: # <<<<<<<<<<<<<< - * return '' - * info = {} - */ - __pyx_t_1 = PyObject_Length(__pyx_v_data); if (unlikely(__pyx_t_1 == ((Py_ssize_t)-1))) __PYX_ERR(0, 247, __pyx_L1_error) - __pyx_t_2 = ((__pyx_t_1 < 2) != 0); - if (__pyx_t_2) { - - /* "pmercury/utils/tls_utils.pyx":248 - * def supported_versions_server(data, length): - * if len(data) < 2: - * return '' # <<<<<<<<<<<<<< - * info = {} - * tmp_data = data[:4] - */ - __Pyx_XDECREF(__pyx_r); - __Pyx_INCREF(__pyx_kp_u__19); - __pyx_r = __pyx_kp_u__19; - goto __pyx_L0; - - /* "pmercury/utils/tls_utils.pyx":247 - * - * def supported_versions_server(data, length): - * if len(data) < 2: # <<<<<<<<<<<<<< - * return '' - * info = {} - */ - } - - /* "pmercury/utils/tls_utils.pyx":249 - * if len(data) < 2: - * return '' - * info = {} # <<<<<<<<<<<<<< - * tmp_data = data[:4] - * if tmp_data in TLS_VERSION: - */ - __pyx_t_3 = __Pyx_PyDict_NewPresized(0); if (unlikely(!__pyx_t_3)) __PYX_ERR(0, 249, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_3); - __pyx_v_info = ((PyObject*)__pyx_t_3); - __pyx_t_3 = 0; - - /* "pmercury/utils/tls_utils.pyx":250 - * return '' - * info = {} - * tmp_data = data[:4] # <<<<<<<<<<<<<< - * if tmp_data in TLS_VERSION: - * return TLS_VERSION[tmp_data] - */ - __pyx_t_3 = __Pyx_PyObject_GetSlice(__pyx_v_data, 0, 4, NULL, NULL, &__pyx_slice__24, 0, 1, 1); if (unlikely(!__pyx_t_3)) __PYX_ERR(0, 250, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_3); - __pyx_v_tmp_data = __pyx_t_3; - __pyx_t_3 = 0; - - /* "pmercury/utils/tls_utils.pyx":251 - * info = {} - * tmp_data = data[:4] - * if tmp_data in TLS_VERSION: # <<<<<<<<<<<<<< - * return TLS_VERSION[tmp_data] - * else: - */ - __Pyx_GetModuleGlobalName(__pyx_t_3, __pyx_n_s_TLS_VERSION); if (unlikely(!__pyx_t_3)) __PYX_ERR(0, 251, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_3); - __pyx_t_2 = (__Pyx_PySequence_ContainsTF(__pyx_v_tmp_data, __pyx_t_3, Py_EQ)); if (unlikely(__pyx_t_2 < 0)) __PYX_ERR(0, 251, __pyx_L1_error) - __Pyx_DECREF(__pyx_t_3); __pyx_t_3 = 0; - __pyx_t_4 = (__pyx_t_2 != 0); - if (__pyx_t_4) { - - /* "pmercury/utils/tls_utils.pyx":252 - * tmp_data = data[:4] - * if tmp_data in TLS_VERSION: - * return TLS_VERSION[tmp_data] # <<<<<<<<<<<<<< - * else: - * return 'Unknown Version (%s)' % tmp_data - */ - __Pyx_XDECREF(__pyx_r); - __Pyx_GetModuleGlobalName(__pyx_t_3, __pyx_n_s_TLS_VERSION); if (unlikely(!__pyx_t_3)) __PYX_ERR(0, 252, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_3); - __pyx_t_5 = __Pyx_PyObject_GetItem(__pyx_t_3, __pyx_v_tmp_data); if (unlikely(!__pyx_t_5)) __PYX_ERR(0, 252, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_5); - __Pyx_DECREF(__pyx_t_3); __pyx_t_3 = 0; - __pyx_r = __pyx_t_5; - __pyx_t_5 = 0; - goto __pyx_L0; - - /* "pmercury/utils/tls_utils.pyx":251 - * info = {} - * tmp_data = data[:4] - * if tmp_data in TLS_VERSION: # <<<<<<<<<<<<<< - * return TLS_VERSION[tmp_data] - * else: - */ - } - - /* "pmercury/utils/tls_utils.pyx":254 - * return TLS_VERSION[tmp_data] - * else: - * return 'Unknown Version (%s)' % tmp_data # <<<<<<<<<<<<<< - * - * return info - */ - /*else*/ { - __Pyx_XDECREF(__pyx_r); - __pyx_t_5 = __Pyx_PyUnicode_FormatSafe(__pyx_kp_u_Unknown_Version_s, __pyx_v_tmp_data); if (unlikely(!__pyx_t_5)) __PYX_ERR(0, 254, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_5); - __pyx_r = __pyx_t_5; - __pyx_t_5 = 0; - goto __pyx_L0; - } - - /* "pmercury/utils/tls_utils.pyx":246 - * - * - * def supported_versions_server(data, length): # <<<<<<<<<<<<<< - * if len(data) < 2: - * return '' - */ - - /* function exit code */ - __pyx_L1_error:; - __Pyx_XDECREF(__pyx_t_3); - __Pyx_XDECREF(__pyx_t_5); - __Pyx_AddTraceback("pmercury.utils.tls_utils.supported_versions_server", __pyx_clineno, __pyx_lineno, __pyx_filename); - __pyx_r = NULL; - __pyx_L0:; - __Pyx_XDECREF(__pyx_v_info); - __Pyx_XDECREF(__pyx_v_tmp_data); - __Pyx_XGIVEREF(__pyx_r); - __Pyx_RefNannyFinishContext(); - return __pyx_r; -} - -/* "pmercury/utils/tls_utils.pyx":259 - * - * - * def psk_key_exchange_modes(data, length): # <<<<<<<<<<<<<< - * if len(data) < 2: - * return '' - */ - -/* Python wrapper */ -static PyObject *__pyx_pw_8pmercury_5utils_9tls_utils_29psk_key_exchange_modes(PyObject *__pyx_self, PyObject *__pyx_args, PyObject *__pyx_kwds); /*proto*/ -static PyMethodDef __pyx_mdef_8pmercury_5utils_9tls_utils_29psk_key_exchange_modes = {"psk_key_exchange_modes", (PyCFunction)(void*)(PyCFunctionWithKeywords)__pyx_pw_8pmercury_5utils_9tls_utils_29psk_key_exchange_modes, METH_VARARGS|METH_KEYWORDS, 0}; -static PyObject *__pyx_pw_8pmercury_5utils_9tls_utils_29psk_key_exchange_modes(PyObject *__pyx_self, PyObject *__pyx_args, PyObject *__pyx_kwds) { - PyObject *__pyx_v_data = 0; - CYTHON_UNUSED PyObject *__pyx_v_length = 0; - PyObject *__pyx_r = 0; - __Pyx_RefNannyDeclarations - __Pyx_RefNannySetupContext("psk_key_exchange_modes (wrapper)", 0); - { - static PyObject **__pyx_pyargnames[] = {&__pyx_n_s_data,&__pyx_n_s_length,0}; - PyObject* values[2] = {0,0}; - if (unlikely(__pyx_kwds)) { - Py_ssize_t kw_args; - const Py_ssize_t pos_args = PyTuple_GET_SIZE(__pyx_args); - switch (pos_args) { - case 2: values[1] = PyTuple_GET_ITEM(__pyx_args, 1); - CYTHON_FALLTHROUGH; - case 1: values[0] = PyTuple_GET_ITEM(__pyx_args, 0); - CYTHON_FALLTHROUGH; - case 0: break; - default: goto __pyx_L5_argtuple_error; - } - kw_args = PyDict_Size(__pyx_kwds); - switch (pos_args) { - case 0: - if (likely((values[0] = __Pyx_PyDict_GetItemStr(__pyx_kwds, __pyx_n_s_data)) != 0)) kw_args--; - else goto __pyx_L5_argtuple_error; - CYTHON_FALLTHROUGH; - case 1: - if (likely((values[1] = __Pyx_PyDict_GetItemStr(__pyx_kwds, __pyx_n_s_length)) != 0)) kw_args--; - else { - __Pyx_RaiseArgtupleInvalid("psk_key_exchange_modes", 1, 2, 2, 1); __PYX_ERR(0, 259, __pyx_L3_error) - } - } - if (unlikely(kw_args > 0)) { - if (unlikely(__Pyx_ParseOptionalKeywords(__pyx_kwds, __pyx_pyargnames, 0, values, pos_args, "psk_key_exchange_modes") < 0)) __PYX_ERR(0, 259, __pyx_L3_error) - } - } else if (PyTuple_GET_SIZE(__pyx_args) != 2) { - goto __pyx_L5_argtuple_error; - } else { - values[0] = PyTuple_GET_ITEM(__pyx_args, 0); - values[1] = PyTuple_GET_ITEM(__pyx_args, 1); - } - __pyx_v_data = values[0]; - __pyx_v_length = values[1]; - } - goto __pyx_L4_argument_unpacking_done; - __pyx_L5_argtuple_error:; - __Pyx_RaiseArgtupleInvalid("psk_key_exchange_modes", 1, 2, 2, PyTuple_GET_SIZE(__pyx_args)); __PYX_ERR(0, 259, __pyx_L3_error) - __pyx_L3_error:; - __Pyx_AddTraceback("pmercury.utils.tls_utils.psk_key_exchange_modes", __pyx_clineno, __pyx_lineno, __pyx_filename); - __Pyx_RefNannyFinishContext(); - return NULL; - __pyx_L4_argument_unpacking_done:; - __pyx_r = __pyx_pf_8pmercury_5utils_9tls_utils_28psk_key_exchange_modes(__pyx_self, __pyx_v_data, __pyx_v_length); - - /* function exit code */ - __Pyx_RefNannyFinishContext(); - return __pyx_r; -} - -static PyObject *__pyx_pf_8pmercury_5utils_9tls_utils_28psk_key_exchange_modes(CYTHON_UNUSED PyObject *__pyx_self, PyObject *__pyx_v_data, CYTHON_UNUSED PyObject *__pyx_v_length) { - PyObject *__pyx_v_info = NULL; - PyObject *__pyx_v_ext_len = NULL; - PyObject *__pyx_v_mode = NULL; - PyObject *__pyx_r = NULL; - __Pyx_RefNannyDeclarations - Py_ssize_t __pyx_t_1; - int __pyx_t_2; - PyObject *__pyx_t_3 = NULL; - PyObject *__pyx_t_4 = NULL; - __Pyx_RefNannySetupContext("psk_key_exchange_modes", 0); - - /* "pmercury/utils/tls_utils.pyx":260 - * - * def psk_key_exchange_modes(data, length): - * if len(data) < 2: # <<<<<<<<<<<<<< - * return '' - * info = {} - */ - __pyx_t_1 = PyObject_Length(__pyx_v_data); if (unlikely(__pyx_t_1 == ((Py_ssize_t)-1))) __PYX_ERR(0, 260, __pyx_L1_error) - __pyx_t_2 = ((__pyx_t_1 < 2) != 0); - if (__pyx_t_2) { - - /* "pmercury/utils/tls_utils.pyx":261 - * def psk_key_exchange_modes(data, length): - * if len(data) < 2: - * return '' # <<<<<<<<<<<<<< - * info = {} - * ext_len = int(data[0:2], 16) - */ - __Pyx_XDECREF(__pyx_r); - __Pyx_INCREF(__pyx_kp_u__19); - __pyx_r = __pyx_kp_u__19; - goto __pyx_L0; - - /* "pmercury/utils/tls_utils.pyx":260 - * - * def psk_key_exchange_modes(data, length): - * if len(data) < 2: # <<<<<<<<<<<<<< - * return '' - * info = {} - */ - } - - /* "pmercury/utils/tls_utils.pyx":262 - * if len(data) < 2: - * return '' - * info = {} # <<<<<<<<<<<<<< - * ext_len = int(data[0:2], 16) - * info['psk_key_exchange_modes_length'] = ext_len - */ - __pyx_t_3 = __Pyx_PyDict_NewPresized(0); if (unlikely(!__pyx_t_3)) __PYX_ERR(0, 262, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_3); - __pyx_v_info = ((PyObject*)__pyx_t_3); - __pyx_t_3 = 0; - - /* "pmercury/utils/tls_utils.pyx":263 - * return '' - * info = {} - * ext_len = int(data[0:2], 16) # <<<<<<<<<<<<<< - * info['psk_key_exchange_modes_length'] = ext_len - * mode = int(data[2:4], 16) - */ - __pyx_t_3 = __Pyx_PyObject_GetSlice(__pyx_v_data, 0, 2, NULL, NULL, &__pyx_slice__23, 1, 1, 1); if (unlikely(!__pyx_t_3)) __PYX_ERR(0, 263, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_3); - __pyx_t_4 = PyTuple_New(2); if (unlikely(!__pyx_t_4)) __PYX_ERR(0, 263, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_4); - __Pyx_GIVEREF(__pyx_t_3); - PyTuple_SET_ITEM(__pyx_t_4, 0, __pyx_t_3); - __Pyx_INCREF(__pyx_int_16); - __Pyx_GIVEREF(__pyx_int_16); - PyTuple_SET_ITEM(__pyx_t_4, 1, __pyx_int_16); - __pyx_t_3 = 0; - __pyx_t_3 = __Pyx_PyObject_Call(((PyObject *)(&PyInt_Type)), __pyx_t_4, NULL); if (unlikely(!__pyx_t_3)) __PYX_ERR(0, 263, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_3); - __Pyx_DECREF(__pyx_t_4); __pyx_t_4 = 0; - __pyx_v_ext_len = __pyx_t_3; - __pyx_t_3 = 0; - - /* "pmercury/utils/tls_utils.pyx":264 - * info = {} - * ext_len = int(data[0:2], 16) - * info['psk_key_exchange_modes_length'] = ext_len # <<<<<<<<<<<<<< - * mode = int(data[2:4], 16) - * info['psk_key_exchange_mode'] = TLS_PSK_KEY_EXCHANGE_MODES[mode] - */ - if (unlikely(PyDict_SetItem(__pyx_v_info, __pyx_n_u_psk_key_exchange_modes_length, __pyx_v_ext_len) < 0)) __PYX_ERR(0, 264, __pyx_L1_error) - - /* "pmercury/utils/tls_utils.pyx":265 - * ext_len = int(data[0:2], 16) - * info['psk_key_exchange_modes_length'] = ext_len - * mode = int(data[2:4], 16) # <<<<<<<<<<<<<< - * info['psk_key_exchange_mode'] = TLS_PSK_KEY_EXCHANGE_MODES[mode] - * - */ - __pyx_t_3 = __Pyx_PyObject_GetSlice(__pyx_v_data, 2, 4, NULL, NULL, &__pyx_slice__25, 1, 1, 1); if (unlikely(!__pyx_t_3)) __PYX_ERR(0, 265, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_3); - __pyx_t_4 = PyTuple_New(2); if (unlikely(!__pyx_t_4)) __PYX_ERR(0, 265, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_4); - __Pyx_GIVEREF(__pyx_t_3); - PyTuple_SET_ITEM(__pyx_t_4, 0, __pyx_t_3); - __Pyx_INCREF(__pyx_int_16); - __Pyx_GIVEREF(__pyx_int_16); - PyTuple_SET_ITEM(__pyx_t_4, 1, __pyx_int_16); - __pyx_t_3 = 0; - __pyx_t_3 = __Pyx_PyObject_Call(((PyObject *)(&PyInt_Type)), __pyx_t_4, NULL); if (unlikely(!__pyx_t_3)) __PYX_ERR(0, 265, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_3); - __Pyx_DECREF(__pyx_t_4); __pyx_t_4 = 0; - __pyx_v_mode = __pyx_t_3; - __pyx_t_3 = 0; - - /* "pmercury/utils/tls_utils.pyx":266 - * info['psk_key_exchange_modes_length'] = ext_len - * mode = int(data[2:4], 16) - * info['psk_key_exchange_mode'] = TLS_PSK_KEY_EXCHANGE_MODES[mode] # <<<<<<<<<<<<<< - * - * return info - */ - __Pyx_GetModuleGlobalName(__pyx_t_3, __pyx_n_s_TLS_PSK_KEY_EXCHANGE_MODES); if (unlikely(!__pyx_t_3)) __PYX_ERR(0, 266, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_3); - __pyx_t_4 = __Pyx_PyObject_GetItem(__pyx_t_3, __pyx_v_mode); if (unlikely(!__pyx_t_4)) __PYX_ERR(0, 266, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_4); - __Pyx_DECREF(__pyx_t_3); __pyx_t_3 = 0; - if (unlikely(PyDict_SetItem(__pyx_v_info, __pyx_n_u_psk_key_exchange_mode, __pyx_t_4) < 0)) __PYX_ERR(0, 266, __pyx_L1_error) - __Pyx_DECREF(__pyx_t_4); __pyx_t_4 = 0; - - /* "pmercury/utils/tls_utils.pyx":268 - * info['psk_key_exchange_mode'] = TLS_PSK_KEY_EXCHANGE_MODES[mode] - * - * return info # <<<<<<<<<<<<<< - * - * - */ - __Pyx_XDECREF(__pyx_r); - __Pyx_INCREF(__pyx_v_info); - __pyx_r = __pyx_v_info; - goto __pyx_L0; - - /* "pmercury/utils/tls_utils.pyx":259 - * - * - * def psk_key_exchange_modes(data, length): # <<<<<<<<<<<<<< - * if len(data) < 2: - * return '' - */ - - /* function exit code */ - __pyx_L1_error:; - __Pyx_XDECREF(__pyx_t_3); - __Pyx_XDECREF(__pyx_t_4); - __Pyx_AddTraceback("pmercury.utils.tls_utils.psk_key_exchange_modes", __pyx_clineno, __pyx_lineno, __pyx_filename); - __pyx_r = NULL; - __pyx_L0:; - __Pyx_XDECREF(__pyx_v_info); - __Pyx_XDECREF(__pyx_v_ext_len); - __Pyx_XDECREF(__pyx_v_mode); - __Pyx_XGIVEREF(__pyx_r); - __Pyx_RefNannyFinishContext(); - return __pyx_r; -} - -/* "pmercury/utils/tls_utils.pyx":271 - * - * - * def key_share_client(data, length): # <<<<<<<<<<<<<< - * if len(data) < 2: - * return '' - */ - -/* Python wrapper */ -static PyObject *__pyx_pw_8pmercury_5utils_9tls_utils_31key_share_client(PyObject *__pyx_self, PyObject *__pyx_args, PyObject *__pyx_kwds); /*proto*/ -static PyMethodDef __pyx_mdef_8pmercury_5utils_9tls_utils_31key_share_client = {"key_share_client", (PyCFunction)(void*)(PyCFunctionWithKeywords)__pyx_pw_8pmercury_5utils_9tls_utils_31key_share_client, METH_VARARGS|METH_KEYWORDS, 0}; -static PyObject *__pyx_pw_8pmercury_5utils_9tls_utils_31key_share_client(PyObject *__pyx_self, PyObject *__pyx_args, PyObject *__pyx_kwds) { - PyObject *__pyx_v_data = 0; - PyObject *__pyx_v_length = 0; - PyObject *__pyx_r = 0; - __Pyx_RefNannyDeclarations - __Pyx_RefNannySetupContext("key_share_client (wrapper)", 0); - { - static PyObject **__pyx_pyargnames[] = {&__pyx_n_s_data,&__pyx_n_s_length,0}; - PyObject* values[2] = {0,0}; - if (unlikely(__pyx_kwds)) { - Py_ssize_t kw_args; - const Py_ssize_t pos_args = PyTuple_GET_SIZE(__pyx_args); - switch (pos_args) { - case 2: values[1] = PyTuple_GET_ITEM(__pyx_args, 1); - CYTHON_FALLTHROUGH; - case 1: values[0] = PyTuple_GET_ITEM(__pyx_args, 0); - CYTHON_FALLTHROUGH; - case 0: break; - default: goto __pyx_L5_argtuple_error; - } - kw_args = PyDict_Size(__pyx_kwds); - switch (pos_args) { - case 0: - if (likely((values[0] = __Pyx_PyDict_GetItemStr(__pyx_kwds, __pyx_n_s_data)) != 0)) kw_args--; - else goto __pyx_L5_argtuple_error; - CYTHON_FALLTHROUGH; - case 1: - if (likely((values[1] = __Pyx_PyDict_GetItemStr(__pyx_kwds, __pyx_n_s_length)) != 0)) kw_args--; - else { - __Pyx_RaiseArgtupleInvalid("key_share_client", 1, 2, 2, 1); __PYX_ERR(0, 271, __pyx_L3_error) - } - } - if (unlikely(kw_args > 0)) { - if (unlikely(__Pyx_ParseOptionalKeywords(__pyx_kwds, __pyx_pyargnames, 0, values, pos_args, "key_share_client") < 0)) __PYX_ERR(0, 271, __pyx_L3_error) - } - } else if (PyTuple_GET_SIZE(__pyx_args) != 2) { - goto __pyx_L5_argtuple_error; - } else { - values[0] = PyTuple_GET_ITEM(__pyx_args, 0); - values[1] = PyTuple_GET_ITEM(__pyx_args, 1); - } - __pyx_v_data = values[0]; - __pyx_v_length = values[1]; - } - goto __pyx_L4_argument_unpacking_done; - __pyx_L5_argtuple_error:; - __Pyx_RaiseArgtupleInvalid("key_share_client", 1, 2, 2, PyTuple_GET_SIZE(__pyx_args)); __PYX_ERR(0, 271, __pyx_L3_error) - __pyx_L3_error:; - __Pyx_AddTraceback("pmercury.utils.tls_utils.key_share_client", __pyx_clineno, __pyx_lineno, __pyx_filename); - __Pyx_RefNannyFinishContext(); - return NULL; - __pyx_L4_argument_unpacking_done:; - __pyx_r = __pyx_pf_8pmercury_5utils_9tls_utils_30key_share_client(__pyx_self, __pyx_v_data, __pyx_v_length); - - /* function exit code */ - __Pyx_RefNannyFinishContext(); - return __pyx_r; -} - -static PyObject *__pyx_pf_8pmercury_5utils_9tls_utils_30key_share_client(CYTHON_UNUSED PyObject *__pyx_self, PyObject *__pyx_v_data, PyObject *__pyx_v_length) { - PyObject *__pyx_v_info = NULL; - PyObject *__pyx_v_ext_len = NULL; - PyObject *__pyx_v_offset = NULL; - PyObject *__pyx_v_tmp_obj = NULL; - PyObject *__pyx_v_tmp_data = NULL; - PyObject *__pyx_r = NULL; - __Pyx_RefNannyDeclarations - Py_ssize_t __pyx_t_1; - int __pyx_t_2; - PyObject *__pyx_t_3 = NULL; - PyObject *__pyx_t_4 = NULL; - PyObject *__pyx_t_5 = NULL; - PyObject *__pyx_t_6 = NULL; - int __pyx_t_7; - __Pyx_RefNannySetupContext("key_share_client", 0); - - /* "pmercury/utils/tls_utils.pyx":272 - * - * def key_share_client(data, length): - * if len(data) < 2: # <<<<<<<<<<<<<< - * return '' - * info = {} - */ - __pyx_t_1 = PyObject_Length(__pyx_v_data); if (unlikely(__pyx_t_1 == ((Py_ssize_t)-1))) __PYX_ERR(0, 272, __pyx_L1_error) - __pyx_t_2 = ((__pyx_t_1 < 2) != 0); - if (__pyx_t_2) { - - /* "pmercury/utils/tls_utils.pyx":273 - * def key_share_client(data, length): - * if len(data) < 2: - * return '' # <<<<<<<<<<<<<< - * info = {} - * ext_len = int(data[0:4], 16) - */ - __Pyx_XDECREF(__pyx_r); - __Pyx_INCREF(__pyx_kp_u__19); - __pyx_r = __pyx_kp_u__19; - goto __pyx_L0; - - /* "pmercury/utils/tls_utils.pyx":272 - * - * def key_share_client(data, length): - * if len(data) < 2: # <<<<<<<<<<<<<< - * return '' - * info = {} - */ - } - - /* "pmercury/utils/tls_utils.pyx":274 - * if len(data) < 2: - * return '' - * info = {} # <<<<<<<<<<<<<< - * ext_len = int(data[0:4], 16) - * info['key_share_length'] = ext_len - */ - __pyx_t_3 = __Pyx_PyDict_NewPresized(0); if (unlikely(!__pyx_t_3)) __PYX_ERR(0, 274, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_3); - __pyx_v_info = ((PyObject*)__pyx_t_3); - __pyx_t_3 = 0; - - /* "pmercury/utils/tls_utils.pyx":275 - * return '' - * info = {} - * ext_len = int(data[0:4], 16) # <<<<<<<<<<<<<< - * info['key_share_length'] = ext_len - * info['key_share_entries'] = [] - */ - __pyx_t_3 = __Pyx_PyObject_GetSlice(__pyx_v_data, 0, 4, NULL, NULL, &__pyx_slice__18, 1, 1, 1); if (unlikely(!__pyx_t_3)) __PYX_ERR(0, 275, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_3); - __pyx_t_4 = PyTuple_New(2); if (unlikely(!__pyx_t_4)) __PYX_ERR(0, 275, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_4); - __Pyx_GIVEREF(__pyx_t_3); - PyTuple_SET_ITEM(__pyx_t_4, 0, __pyx_t_3); - __Pyx_INCREF(__pyx_int_16); - __Pyx_GIVEREF(__pyx_int_16); - PyTuple_SET_ITEM(__pyx_t_4, 1, __pyx_int_16); - __pyx_t_3 = 0; - __pyx_t_3 = __Pyx_PyObject_Call(((PyObject *)(&PyInt_Type)), __pyx_t_4, NULL); if (unlikely(!__pyx_t_3)) __PYX_ERR(0, 275, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_3); - __Pyx_DECREF(__pyx_t_4); __pyx_t_4 = 0; - __pyx_v_ext_len = __pyx_t_3; - __pyx_t_3 = 0; - - /* "pmercury/utils/tls_utils.pyx":276 - * info = {} - * ext_len = int(data[0:4], 16) - * info['key_share_length'] = ext_len # <<<<<<<<<<<<<< - * info['key_share_entries'] = [] - * offset = 4 - */ - if (unlikely(PyDict_SetItem(__pyx_v_info, __pyx_n_u_key_share_length, __pyx_v_ext_len) < 0)) __PYX_ERR(0, 276, __pyx_L1_error) - - /* "pmercury/utils/tls_utils.pyx":277 - * ext_len = int(data[0:4], 16) - * info['key_share_length'] = ext_len - * info['key_share_entries'] = [] # <<<<<<<<<<<<<< - * offset = 4 - * while offset < length*2: - */ - __pyx_t_3 = PyList_New(0); if (unlikely(!__pyx_t_3)) __PYX_ERR(0, 277, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_3); - if (unlikely(PyDict_SetItem(__pyx_v_info, __pyx_n_u_key_share_entries, __pyx_t_3) < 0)) __PYX_ERR(0, 277, __pyx_L1_error) - __Pyx_DECREF(__pyx_t_3); __pyx_t_3 = 0; - - /* "pmercury/utils/tls_utils.pyx":278 - * info['key_share_length'] = ext_len - * info['key_share_entries'] = [] - * offset = 4 # <<<<<<<<<<<<<< - * while offset < length*2: - * tmp_obj = {} - */ - __Pyx_INCREF(__pyx_int_4); - __pyx_v_offset = __pyx_int_4; - - /* "pmercury/utils/tls_utils.pyx":279 - * info['key_share_entries'] = [] - * offset = 4 - * while offset < length*2: # <<<<<<<<<<<<<< - * tmp_obj = {} - * tmp_data = data[offset:offset+4] - */ - while (1) { - __pyx_t_3 = PyNumber_Multiply(__pyx_v_length, __pyx_int_2); if (unlikely(!__pyx_t_3)) __PYX_ERR(0, 279, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_3); - __pyx_t_4 = PyObject_RichCompare(__pyx_v_offset, __pyx_t_3, Py_LT); __Pyx_XGOTREF(__pyx_t_4); if (unlikely(!__pyx_t_4)) __PYX_ERR(0, 279, __pyx_L1_error) - __Pyx_DECREF(__pyx_t_3); __pyx_t_3 = 0; - __pyx_t_2 = __Pyx_PyObject_IsTrue(__pyx_t_4); if (unlikely(__pyx_t_2 < 0)) __PYX_ERR(0, 279, __pyx_L1_error) - __Pyx_DECREF(__pyx_t_4); __pyx_t_4 = 0; - if (!__pyx_t_2) break; - - /* "pmercury/utils/tls_utils.pyx":280 - * offset = 4 - * while offset < length*2: - * tmp_obj = {} # <<<<<<<<<<<<<< - * tmp_data = data[offset:offset+4] - * tmp_obj['group'] = TLS_SUPPORTED_GROUPS[int(tmp_data,16)] - */ - __pyx_t_4 = __Pyx_PyDict_NewPresized(0); if (unlikely(!__pyx_t_4)) __PYX_ERR(0, 280, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_4); - __Pyx_XDECREF_SET(__pyx_v_tmp_obj, ((PyObject*)__pyx_t_4)); - __pyx_t_4 = 0; - - /* "pmercury/utils/tls_utils.pyx":281 - * while offset < length*2: - * tmp_obj = {} - * tmp_data = data[offset:offset+4] # <<<<<<<<<<<<<< - * tmp_obj['group'] = TLS_SUPPORTED_GROUPS[int(tmp_data,16)] - * tmp_obj['key_exchange_length'] = int(data[offset+4:offset+8], 16) - */ - __pyx_t_4 = __Pyx_PyInt_AddObjC(__pyx_v_offset, __pyx_int_4, 4, 0, 0); if (unlikely(!__pyx_t_4)) __PYX_ERR(0, 281, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_4); - __pyx_t_3 = __Pyx_PyObject_GetSlice(__pyx_v_data, 0, 0, &__pyx_v_offset, &__pyx_t_4, NULL, 0, 0, 1); if (unlikely(!__pyx_t_3)) __PYX_ERR(0, 281, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_3); - __Pyx_DECREF(__pyx_t_4); __pyx_t_4 = 0; - __Pyx_XDECREF_SET(__pyx_v_tmp_data, __pyx_t_3); - __pyx_t_3 = 0; - - /* "pmercury/utils/tls_utils.pyx":282 - * tmp_obj = {} - * tmp_data = data[offset:offset+4] - * tmp_obj['group'] = TLS_SUPPORTED_GROUPS[int(tmp_data,16)] # <<<<<<<<<<<<<< - * tmp_obj['key_exchange_length'] = int(data[offset+4:offset+8], 16) - * tmp_obj['key_exchange'] = data[offset+8:offset+8+2*tmp_obj['key_exchange_length']] - */ - __Pyx_GetModuleGlobalName(__pyx_t_3, __pyx_n_s_TLS_SUPPORTED_GROUPS); if (unlikely(!__pyx_t_3)) __PYX_ERR(0, 282, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_3); - __pyx_t_4 = PyTuple_New(2); if (unlikely(!__pyx_t_4)) __PYX_ERR(0, 282, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_4); - __Pyx_INCREF(__pyx_v_tmp_data); - __Pyx_GIVEREF(__pyx_v_tmp_data); - PyTuple_SET_ITEM(__pyx_t_4, 0, __pyx_v_tmp_data); - __Pyx_INCREF(__pyx_int_16); - __Pyx_GIVEREF(__pyx_int_16); - PyTuple_SET_ITEM(__pyx_t_4, 1, __pyx_int_16); - __pyx_t_5 = __Pyx_PyObject_Call(((PyObject *)(&PyInt_Type)), __pyx_t_4, NULL); if (unlikely(!__pyx_t_5)) __PYX_ERR(0, 282, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_5); - __Pyx_DECREF(__pyx_t_4); __pyx_t_4 = 0; - __pyx_t_4 = __Pyx_PyObject_GetItem(__pyx_t_3, __pyx_t_5); if (unlikely(!__pyx_t_4)) __PYX_ERR(0, 282, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_4); - __Pyx_DECREF(__pyx_t_3); __pyx_t_3 = 0; - __Pyx_DECREF(__pyx_t_5); __pyx_t_5 = 0; - if (unlikely(PyDict_SetItem(__pyx_v_tmp_obj, __pyx_n_u_group, __pyx_t_4) < 0)) __PYX_ERR(0, 282, __pyx_L1_error) - __Pyx_DECREF(__pyx_t_4); __pyx_t_4 = 0; - - /* "pmercury/utils/tls_utils.pyx":283 - * tmp_data = data[offset:offset+4] - * tmp_obj['group'] = TLS_SUPPORTED_GROUPS[int(tmp_data,16)] - * tmp_obj['key_exchange_length'] = int(data[offset+4:offset+8], 16) # <<<<<<<<<<<<<< - * tmp_obj['key_exchange'] = data[offset+8:offset+8+2*tmp_obj['key_exchange_length']] - * info['key_share_entries'].append(tmp_obj) - */ - __pyx_t_4 = __Pyx_PyInt_AddObjC(__pyx_v_offset, __pyx_int_4, 4, 0, 0); if (unlikely(!__pyx_t_4)) __PYX_ERR(0, 283, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_4); - __pyx_t_5 = __Pyx_PyInt_AddObjC(__pyx_v_offset, __pyx_int_8, 8, 0, 0); if (unlikely(!__pyx_t_5)) __PYX_ERR(0, 283, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_5); - __pyx_t_3 = __Pyx_PyObject_GetSlice(__pyx_v_data, 0, 0, &__pyx_t_4, &__pyx_t_5, NULL, 0, 0, 1); if (unlikely(!__pyx_t_3)) __PYX_ERR(0, 283, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_3); - __Pyx_DECREF(__pyx_t_4); __pyx_t_4 = 0; - __Pyx_DECREF(__pyx_t_5); __pyx_t_5 = 0; - __pyx_t_5 = PyTuple_New(2); if (unlikely(!__pyx_t_5)) __PYX_ERR(0, 283, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_5); - __Pyx_GIVEREF(__pyx_t_3); - PyTuple_SET_ITEM(__pyx_t_5, 0, __pyx_t_3); - __Pyx_INCREF(__pyx_int_16); - __Pyx_GIVEREF(__pyx_int_16); - PyTuple_SET_ITEM(__pyx_t_5, 1, __pyx_int_16); - __pyx_t_3 = 0; - __pyx_t_3 = __Pyx_PyObject_Call(((PyObject *)(&PyInt_Type)), __pyx_t_5, NULL); if (unlikely(!__pyx_t_3)) __PYX_ERR(0, 283, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_3); - __Pyx_DECREF(__pyx_t_5); __pyx_t_5 = 0; - if (unlikely(PyDict_SetItem(__pyx_v_tmp_obj, __pyx_n_u_key_exchange_length, __pyx_t_3) < 0)) __PYX_ERR(0, 283, __pyx_L1_error) - __Pyx_DECREF(__pyx_t_3); __pyx_t_3 = 0; - - /* "pmercury/utils/tls_utils.pyx":284 - * tmp_obj['group'] = TLS_SUPPORTED_GROUPS[int(tmp_data,16)] - * tmp_obj['key_exchange_length'] = int(data[offset+4:offset+8], 16) - * tmp_obj['key_exchange'] = data[offset+8:offset+8+2*tmp_obj['key_exchange_length']] # <<<<<<<<<<<<<< - * info['key_share_entries'].append(tmp_obj) - * offset += 8 + 2*tmp_obj['key_exchange_length'] - */ - __pyx_t_3 = __Pyx_PyInt_AddObjC(__pyx_v_offset, __pyx_int_8, 8, 0, 0); if (unlikely(!__pyx_t_3)) __PYX_ERR(0, 284, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_3); - __pyx_t_5 = __Pyx_PyInt_AddObjC(__pyx_v_offset, __pyx_int_8, 8, 0, 0); if (unlikely(!__pyx_t_5)) __PYX_ERR(0, 284, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_5); - __pyx_t_4 = __Pyx_PyDict_GetItem(__pyx_v_tmp_obj, __pyx_n_u_key_exchange_length); if (unlikely(!__pyx_t_4)) __PYX_ERR(0, 284, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_4); - __pyx_t_6 = PyNumber_Multiply(__pyx_int_2, __pyx_t_4); if (unlikely(!__pyx_t_6)) __PYX_ERR(0, 284, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_6); - __Pyx_DECREF(__pyx_t_4); __pyx_t_4 = 0; - __pyx_t_4 = PyNumber_Add(__pyx_t_5, __pyx_t_6); if (unlikely(!__pyx_t_4)) __PYX_ERR(0, 284, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_4); - __Pyx_DECREF(__pyx_t_5); __pyx_t_5 = 0; - __Pyx_DECREF(__pyx_t_6); __pyx_t_6 = 0; - __pyx_t_6 = __Pyx_PyObject_GetSlice(__pyx_v_data, 0, 0, &__pyx_t_3, &__pyx_t_4, NULL, 0, 0, 1); if (unlikely(!__pyx_t_6)) __PYX_ERR(0, 284, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_6); - __Pyx_DECREF(__pyx_t_3); __pyx_t_3 = 0; - __Pyx_DECREF(__pyx_t_4); __pyx_t_4 = 0; - if (unlikely(PyDict_SetItem(__pyx_v_tmp_obj, __pyx_n_u_key_exchange, __pyx_t_6) < 0)) __PYX_ERR(0, 284, __pyx_L1_error) - __Pyx_DECREF(__pyx_t_6); __pyx_t_6 = 0; - - /* "pmercury/utils/tls_utils.pyx":285 - * tmp_obj['key_exchange_length'] = int(data[offset+4:offset+8], 16) - * tmp_obj['key_exchange'] = data[offset+8:offset+8+2*tmp_obj['key_exchange_length']] - * info['key_share_entries'].append(tmp_obj) # <<<<<<<<<<<<<< - * offset += 8 + 2*tmp_obj['key_exchange_length'] - * - */ - __pyx_t_6 = __Pyx_PyDict_GetItem(__pyx_v_info, __pyx_n_u_key_share_entries); if (unlikely(!__pyx_t_6)) __PYX_ERR(0, 285, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_6); - __pyx_t_7 = __Pyx_PyObject_Append(__pyx_t_6, __pyx_v_tmp_obj); if (unlikely(__pyx_t_7 == ((int)-1))) __PYX_ERR(0, 285, __pyx_L1_error) - __Pyx_DECREF(__pyx_t_6); __pyx_t_6 = 0; - - /* "pmercury/utils/tls_utils.pyx":286 - * tmp_obj['key_exchange'] = data[offset+8:offset+8+2*tmp_obj['key_exchange_length']] - * info['key_share_entries'].append(tmp_obj) - * offset += 8 + 2*tmp_obj['key_exchange_length'] # <<<<<<<<<<<<<< - * - * return info - */ - __pyx_t_6 = __Pyx_PyDict_GetItem(__pyx_v_tmp_obj, __pyx_n_u_key_exchange_length); if (unlikely(!__pyx_t_6)) __PYX_ERR(0, 286, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_6); - __pyx_t_4 = PyNumber_Multiply(__pyx_int_2, __pyx_t_6); if (unlikely(!__pyx_t_4)) __PYX_ERR(0, 286, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_4); - __Pyx_DECREF(__pyx_t_6); __pyx_t_6 = 0; - __pyx_t_6 = __Pyx_PyInt_AddCObj(__pyx_int_8, __pyx_t_4, 8, 0, 0); if (unlikely(!__pyx_t_6)) __PYX_ERR(0, 286, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_6); - __Pyx_DECREF(__pyx_t_4); __pyx_t_4 = 0; - __pyx_t_4 = PyNumber_InPlaceAdd(__pyx_v_offset, __pyx_t_6); if (unlikely(!__pyx_t_4)) __PYX_ERR(0, 286, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_4); - __Pyx_DECREF(__pyx_t_6); __pyx_t_6 = 0; - __Pyx_DECREF_SET(__pyx_v_offset, __pyx_t_4); - __pyx_t_4 = 0; - } - - /* "pmercury/utils/tls_utils.pyx":288 - * offset += 8 + 2*tmp_obj['key_exchange_length'] - * - * return info # <<<<<<<<<<<<<< - * - * - */ - __Pyx_XDECREF(__pyx_r); - __Pyx_INCREF(__pyx_v_info); - __pyx_r = __pyx_v_info; - goto __pyx_L0; - - /* "pmercury/utils/tls_utils.pyx":271 - * - * - * def key_share_client(data, length): # <<<<<<<<<<<<<< - * if len(data) < 2: - * return '' - */ - - /* function exit code */ - __pyx_L1_error:; - __Pyx_XDECREF(__pyx_t_3); - __Pyx_XDECREF(__pyx_t_4); - __Pyx_XDECREF(__pyx_t_5); - __Pyx_XDECREF(__pyx_t_6); - __Pyx_AddTraceback("pmercury.utils.tls_utils.key_share_client", __pyx_clineno, __pyx_lineno, __pyx_filename); - __pyx_r = NULL; - __pyx_L0:; - __Pyx_XDECREF(__pyx_v_info); - __Pyx_XDECREF(__pyx_v_ext_len); - __Pyx_XDECREF(__pyx_v_offset); - __Pyx_XDECREF(__pyx_v_tmp_obj); - __Pyx_XDECREF(__pyx_v_tmp_data); - __Pyx_XGIVEREF(__pyx_r); - __Pyx_RefNannyFinishContext(); - return __pyx_r; -} - -/* "pmercury/utils/tls_utils.pyx":291 - * - * - * def ec_point_formats(data, length): # <<<<<<<<<<<<<< - * if len(data) < 2: - * return '' - */ - -/* Python wrapper */ -static PyObject *__pyx_pw_8pmercury_5utils_9tls_utils_33ec_point_formats(PyObject *__pyx_self, PyObject *__pyx_args, PyObject *__pyx_kwds); /*proto*/ -static PyMethodDef __pyx_mdef_8pmercury_5utils_9tls_utils_33ec_point_formats = {"ec_point_formats", (PyCFunction)(void*)(PyCFunctionWithKeywords)__pyx_pw_8pmercury_5utils_9tls_utils_33ec_point_formats, METH_VARARGS|METH_KEYWORDS, 0}; -static PyObject *__pyx_pw_8pmercury_5utils_9tls_utils_33ec_point_formats(PyObject *__pyx_self, PyObject *__pyx_args, PyObject *__pyx_kwds) { - PyObject *__pyx_v_data = 0; - CYTHON_UNUSED PyObject *__pyx_v_length = 0; - PyObject *__pyx_r = 0; - __Pyx_RefNannyDeclarations - __Pyx_RefNannySetupContext("ec_point_formats (wrapper)", 0); - { - static PyObject **__pyx_pyargnames[] = {&__pyx_n_s_data,&__pyx_n_s_length,0}; - PyObject* values[2] = {0,0}; - if (unlikely(__pyx_kwds)) { - Py_ssize_t kw_args; - const Py_ssize_t pos_args = PyTuple_GET_SIZE(__pyx_args); - switch (pos_args) { - case 2: values[1] = PyTuple_GET_ITEM(__pyx_args, 1); - CYTHON_FALLTHROUGH; - case 1: values[0] = PyTuple_GET_ITEM(__pyx_args, 0); - CYTHON_FALLTHROUGH; - case 0: break; - default: goto __pyx_L5_argtuple_error; - } - kw_args = PyDict_Size(__pyx_kwds); - switch (pos_args) { - case 0: - if (likely((values[0] = __Pyx_PyDict_GetItemStr(__pyx_kwds, __pyx_n_s_data)) != 0)) kw_args--; - else goto __pyx_L5_argtuple_error; - CYTHON_FALLTHROUGH; - case 1: - if (likely((values[1] = __Pyx_PyDict_GetItemStr(__pyx_kwds, __pyx_n_s_length)) != 0)) kw_args--; - else { - __Pyx_RaiseArgtupleInvalid("ec_point_formats", 1, 2, 2, 1); __PYX_ERR(0, 291, __pyx_L3_error) - } - } - if (unlikely(kw_args > 0)) { - if (unlikely(__Pyx_ParseOptionalKeywords(__pyx_kwds, __pyx_pyargnames, 0, values, pos_args, "ec_point_formats") < 0)) __PYX_ERR(0, 291, __pyx_L3_error) - } - } else if (PyTuple_GET_SIZE(__pyx_args) != 2) { - goto __pyx_L5_argtuple_error; - } else { - values[0] = PyTuple_GET_ITEM(__pyx_args, 0); - values[1] = PyTuple_GET_ITEM(__pyx_args, 1); - } - __pyx_v_data = values[0]; - __pyx_v_length = values[1]; - } - goto __pyx_L4_argument_unpacking_done; - __pyx_L5_argtuple_error:; - __Pyx_RaiseArgtupleInvalid("ec_point_formats", 1, 2, 2, PyTuple_GET_SIZE(__pyx_args)); __PYX_ERR(0, 291, __pyx_L3_error) - __pyx_L3_error:; - __Pyx_AddTraceback("pmercury.utils.tls_utils.ec_point_formats", __pyx_clineno, __pyx_lineno, __pyx_filename); - __Pyx_RefNannyFinishContext(); - return NULL; - __pyx_L4_argument_unpacking_done:; - __pyx_r = __pyx_pf_8pmercury_5utils_9tls_utils_32ec_point_formats(__pyx_self, __pyx_v_data, __pyx_v_length); - - /* function exit code */ - __Pyx_RefNannyFinishContext(); - return __pyx_r; -} - -static PyObject *__pyx_pf_8pmercury_5utils_9tls_utils_32ec_point_formats(CYTHON_UNUSED PyObject *__pyx_self, PyObject *__pyx_v_data, CYTHON_UNUSED PyObject *__pyx_v_length) { - PyObject *__pyx_v_info = NULL; - PyObject *__pyx_v_ext_len = NULL; - PyObject *__pyx_v_i = NULL; - PyObject *__pyx_v_tmp_data = NULL; - PyObject *__pyx_r = NULL; - __Pyx_RefNannyDeclarations - Py_ssize_t __pyx_t_1; - int __pyx_t_2; - PyObject *__pyx_t_3 = NULL; - PyObject *__pyx_t_4 = NULL; - PyObject *(*__pyx_t_5)(PyObject *); - PyObject *__pyx_t_6 = NULL; - PyObject *__pyx_t_7 = NULL; - int __pyx_t_8; - int __pyx_t_9; - __Pyx_RefNannySetupContext("ec_point_formats", 0); - - /* "pmercury/utils/tls_utils.pyx":292 - * - * def ec_point_formats(data, length): - * if len(data) < 2: # <<<<<<<<<<<<<< - * return '' - * info = {} - */ - __pyx_t_1 = PyObject_Length(__pyx_v_data); if (unlikely(__pyx_t_1 == ((Py_ssize_t)-1))) __PYX_ERR(0, 292, __pyx_L1_error) - __pyx_t_2 = ((__pyx_t_1 < 2) != 0); - if (__pyx_t_2) { - - /* "pmercury/utils/tls_utils.pyx":293 - * def ec_point_formats(data, length): - * if len(data) < 2: - * return '' # <<<<<<<<<<<<<< - * info = {} - * ext_len = int(data[0:2], 16) - */ - __Pyx_XDECREF(__pyx_r); - __Pyx_INCREF(__pyx_kp_u__19); - __pyx_r = __pyx_kp_u__19; - goto __pyx_L0; - - /* "pmercury/utils/tls_utils.pyx":292 - * - * def ec_point_formats(data, length): - * if len(data) < 2: # <<<<<<<<<<<<<< - * return '' - * info = {} - */ - } - - /* "pmercury/utils/tls_utils.pyx":294 - * if len(data) < 2: - * return '' - * info = {} # <<<<<<<<<<<<<< - * ext_len = int(data[0:2], 16) - * info['ec_point_formats_length'] = ext_len - */ - __pyx_t_3 = __Pyx_PyDict_NewPresized(0); if (unlikely(!__pyx_t_3)) __PYX_ERR(0, 294, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_3); - __pyx_v_info = ((PyObject*)__pyx_t_3); - __pyx_t_3 = 0; - - /* "pmercury/utils/tls_utils.pyx":295 - * return '' - * info = {} - * ext_len = int(data[0:2], 16) # <<<<<<<<<<<<<< - * info['ec_point_formats_length'] = ext_len - * info['ec_point_formats'] = [] - */ - __pyx_t_3 = __Pyx_PyObject_GetSlice(__pyx_v_data, 0, 2, NULL, NULL, &__pyx_slice__23, 1, 1, 1); if (unlikely(!__pyx_t_3)) __PYX_ERR(0, 295, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_3); - __pyx_t_4 = PyTuple_New(2); if (unlikely(!__pyx_t_4)) __PYX_ERR(0, 295, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_4); - __Pyx_GIVEREF(__pyx_t_3); - PyTuple_SET_ITEM(__pyx_t_4, 0, __pyx_t_3); - __Pyx_INCREF(__pyx_int_16); - __Pyx_GIVEREF(__pyx_int_16); - PyTuple_SET_ITEM(__pyx_t_4, 1, __pyx_int_16); - __pyx_t_3 = 0; - __pyx_t_3 = __Pyx_PyObject_Call(((PyObject *)(&PyInt_Type)), __pyx_t_4, NULL); if (unlikely(!__pyx_t_3)) __PYX_ERR(0, 295, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_3); - __Pyx_DECREF(__pyx_t_4); __pyx_t_4 = 0; - __pyx_v_ext_len = __pyx_t_3; - __pyx_t_3 = 0; - - /* "pmercury/utils/tls_utils.pyx":296 - * info = {} - * ext_len = int(data[0:2], 16) - * info['ec_point_formats_length'] = ext_len # <<<<<<<<<<<<<< - * info['ec_point_formats'] = [] - * for i in range(ext_len): - */ - if (unlikely(PyDict_SetItem(__pyx_v_info, __pyx_n_u_ec_point_formats_length, __pyx_v_ext_len) < 0)) __PYX_ERR(0, 296, __pyx_L1_error) - - /* "pmercury/utils/tls_utils.pyx":297 - * ext_len = int(data[0:2], 16) - * info['ec_point_formats_length'] = ext_len - * info['ec_point_formats'] = [] # <<<<<<<<<<<<<< - * for i in range(ext_len): - * tmp_data = data[2*i+2:2*i+4] - */ - __pyx_t_3 = PyList_New(0); if (unlikely(!__pyx_t_3)) __PYX_ERR(0, 297, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_3); - if (unlikely(PyDict_SetItem(__pyx_v_info, __pyx_n_u_ec_point_formats, __pyx_t_3) < 0)) __PYX_ERR(0, 297, __pyx_L1_error) - __Pyx_DECREF(__pyx_t_3); __pyx_t_3 = 0; - - /* "pmercury/utils/tls_utils.pyx":298 - * info['ec_point_formats_length'] = ext_len - * info['ec_point_formats'] = [] - * for i in range(ext_len): # <<<<<<<<<<<<<< - * tmp_data = data[2*i+2:2*i+4] - * if tmp_data in TLS_EC_POINT_FORMATS: - */ - __pyx_t_3 = __Pyx_PyObject_CallOneArg(__pyx_builtin_range, __pyx_v_ext_len); if (unlikely(!__pyx_t_3)) __PYX_ERR(0, 298, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_3); - if (likely(PyList_CheckExact(__pyx_t_3)) || PyTuple_CheckExact(__pyx_t_3)) { - __pyx_t_4 = __pyx_t_3; __Pyx_INCREF(__pyx_t_4); __pyx_t_1 = 0; - __pyx_t_5 = NULL; - } else { - __pyx_t_1 = -1; __pyx_t_4 = PyObject_GetIter(__pyx_t_3); if (unlikely(!__pyx_t_4)) __PYX_ERR(0, 298, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_4); - __pyx_t_5 = Py_TYPE(__pyx_t_4)->tp_iternext; if (unlikely(!__pyx_t_5)) __PYX_ERR(0, 298, __pyx_L1_error) - } - __Pyx_DECREF(__pyx_t_3); __pyx_t_3 = 0; - for (;;) { - if (likely(!__pyx_t_5)) { - if (likely(PyList_CheckExact(__pyx_t_4))) { - if (__pyx_t_1 >= PyList_GET_SIZE(__pyx_t_4)) break; - #if CYTHON_ASSUME_SAFE_MACROS && !CYTHON_AVOID_BORROWED_REFS - __pyx_t_3 = PyList_GET_ITEM(__pyx_t_4, __pyx_t_1); __Pyx_INCREF(__pyx_t_3); __pyx_t_1++; if (unlikely(0 < 0)) __PYX_ERR(0, 298, __pyx_L1_error) - #else - __pyx_t_3 = PySequence_ITEM(__pyx_t_4, __pyx_t_1); __pyx_t_1++; if (unlikely(!__pyx_t_3)) __PYX_ERR(0, 298, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_3); - #endif - } else { - if (__pyx_t_1 >= PyTuple_GET_SIZE(__pyx_t_4)) break; - #if CYTHON_ASSUME_SAFE_MACROS && !CYTHON_AVOID_BORROWED_REFS - __pyx_t_3 = PyTuple_GET_ITEM(__pyx_t_4, __pyx_t_1); __Pyx_INCREF(__pyx_t_3); __pyx_t_1++; if (unlikely(0 < 0)) __PYX_ERR(0, 298, __pyx_L1_error) - #else - __pyx_t_3 = PySequence_ITEM(__pyx_t_4, __pyx_t_1); __pyx_t_1++; if (unlikely(!__pyx_t_3)) __PYX_ERR(0, 298, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_3); - #endif - } - } else { - __pyx_t_3 = __pyx_t_5(__pyx_t_4); - if (unlikely(!__pyx_t_3)) { - PyObject* exc_type = PyErr_Occurred(); - if (exc_type) { - if (likely(__Pyx_PyErr_GivenExceptionMatches(exc_type, PyExc_StopIteration))) PyErr_Clear(); - else __PYX_ERR(0, 298, __pyx_L1_error) - } - break; - } - __Pyx_GOTREF(__pyx_t_3); - } - __Pyx_XDECREF_SET(__pyx_v_i, __pyx_t_3); - __pyx_t_3 = 0; - - /* "pmercury/utils/tls_utils.pyx":299 - * info['ec_point_formats'] = [] - * for i in range(ext_len): - * tmp_data = data[2*i+2:2*i+4] # <<<<<<<<<<<<<< - * if tmp_data in TLS_EC_POINT_FORMATS: - * info['ec_point_formats'].append(TLS_EC_POINT_FORMATS[tmp_data]) - */ - __pyx_t_3 = PyNumber_Multiply(__pyx_int_2, __pyx_v_i); if (unlikely(!__pyx_t_3)) __PYX_ERR(0, 299, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_3); - __pyx_t_6 = __Pyx_PyInt_AddObjC(__pyx_t_3, __pyx_int_2, 2, 0, 0); if (unlikely(!__pyx_t_6)) __PYX_ERR(0, 299, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_6); - __Pyx_DECREF(__pyx_t_3); __pyx_t_3 = 0; - __pyx_t_3 = PyNumber_Multiply(__pyx_int_2, __pyx_v_i); if (unlikely(!__pyx_t_3)) __PYX_ERR(0, 299, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_3); - __pyx_t_7 = __Pyx_PyInt_AddObjC(__pyx_t_3, __pyx_int_4, 4, 0, 0); if (unlikely(!__pyx_t_7)) __PYX_ERR(0, 299, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_7); - __Pyx_DECREF(__pyx_t_3); __pyx_t_3 = 0; - __pyx_t_3 = __Pyx_PyObject_GetSlice(__pyx_v_data, 0, 0, &__pyx_t_6, &__pyx_t_7, NULL, 0, 0, 1); if (unlikely(!__pyx_t_3)) __PYX_ERR(0, 299, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_3); - __Pyx_DECREF(__pyx_t_6); __pyx_t_6 = 0; - __Pyx_DECREF(__pyx_t_7); __pyx_t_7 = 0; - __Pyx_XDECREF_SET(__pyx_v_tmp_data, __pyx_t_3); - __pyx_t_3 = 0; - - /* "pmercury/utils/tls_utils.pyx":300 - * for i in range(ext_len): - * tmp_data = data[2*i+2:2*i+4] - * if tmp_data in TLS_EC_POINT_FORMATS: # <<<<<<<<<<<<<< - * info['ec_point_formats'].append(TLS_EC_POINT_FORMATS[tmp_data]) - * else: - */ - __Pyx_GetModuleGlobalName(__pyx_t_3, __pyx_n_s_TLS_EC_POINT_FORMATS); if (unlikely(!__pyx_t_3)) __PYX_ERR(0, 300, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_3); - __pyx_t_2 = (__Pyx_PySequence_ContainsTF(__pyx_v_tmp_data, __pyx_t_3, Py_EQ)); if (unlikely(__pyx_t_2 < 0)) __PYX_ERR(0, 300, __pyx_L1_error) - __Pyx_DECREF(__pyx_t_3); __pyx_t_3 = 0; - __pyx_t_8 = (__pyx_t_2 != 0); - if (__pyx_t_8) { - - /* "pmercury/utils/tls_utils.pyx":301 - * tmp_data = data[2*i+2:2*i+4] - * if tmp_data in TLS_EC_POINT_FORMATS: - * info['ec_point_formats'].append(TLS_EC_POINT_FORMATS[tmp_data]) # <<<<<<<<<<<<<< - * else: - * info['ec_point_formats'].append(tmp_data) - */ - __pyx_t_3 = __Pyx_PyDict_GetItem(__pyx_v_info, __pyx_n_u_ec_point_formats); if (unlikely(!__pyx_t_3)) __PYX_ERR(0, 301, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_3); - __Pyx_GetModuleGlobalName(__pyx_t_7, __pyx_n_s_TLS_EC_POINT_FORMATS); if (unlikely(!__pyx_t_7)) __PYX_ERR(0, 301, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_7); - __pyx_t_6 = __Pyx_PyObject_GetItem(__pyx_t_7, __pyx_v_tmp_data); if (unlikely(!__pyx_t_6)) __PYX_ERR(0, 301, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_6); - __Pyx_DECREF(__pyx_t_7); __pyx_t_7 = 0; - __pyx_t_9 = __Pyx_PyObject_Append(__pyx_t_3, __pyx_t_6); if (unlikely(__pyx_t_9 == ((int)-1))) __PYX_ERR(0, 301, __pyx_L1_error) - __Pyx_DECREF(__pyx_t_3); __pyx_t_3 = 0; - __Pyx_DECREF(__pyx_t_6); __pyx_t_6 = 0; - - /* "pmercury/utils/tls_utils.pyx":300 - * for i in range(ext_len): - * tmp_data = data[2*i+2:2*i+4] - * if tmp_data in TLS_EC_POINT_FORMATS: # <<<<<<<<<<<<<< - * info['ec_point_formats'].append(TLS_EC_POINT_FORMATS[tmp_data]) - * else: - */ - goto __pyx_L6; - } - - /* "pmercury/utils/tls_utils.pyx":303 - * info['ec_point_formats'].append(TLS_EC_POINT_FORMATS[tmp_data]) - * else: - * info['ec_point_formats'].append(tmp_data) # <<<<<<<<<<<<<< - * - * return info - */ - /*else*/ { - __pyx_t_6 = __Pyx_PyDict_GetItem(__pyx_v_info, __pyx_n_u_ec_point_formats); if (unlikely(!__pyx_t_6)) __PYX_ERR(0, 303, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_6); - __pyx_t_9 = __Pyx_PyObject_Append(__pyx_t_6, __pyx_v_tmp_data); if (unlikely(__pyx_t_9 == ((int)-1))) __PYX_ERR(0, 303, __pyx_L1_error) - __Pyx_DECREF(__pyx_t_6); __pyx_t_6 = 0; - } - __pyx_L6:; - - /* "pmercury/utils/tls_utils.pyx":298 - * info['ec_point_formats_length'] = ext_len - * info['ec_point_formats'] = [] - * for i in range(ext_len): # <<<<<<<<<<<<<< - * tmp_data = data[2*i+2:2*i+4] - * if tmp_data in TLS_EC_POINT_FORMATS: - */ - } - __Pyx_DECREF(__pyx_t_4); __pyx_t_4 = 0; - - /* "pmercury/utils/tls_utils.pyx":305 - * info['ec_point_formats'].append(tmp_data) - * - * return info # <<<<<<<<<<<<<< - * - * - */ - __Pyx_XDECREF(__pyx_r); - __Pyx_INCREF(__pyx_v_info); - __pyx_r = __pyx_v_info; - goto __pyx_L0; - - /* "pmercury/utils/tls_utils.pyx":291 - * - * - * def ec_point_formats(data, length): # <<<<<<<<<<<<<< - * if len(data) < 2: - * return '' - */ - - /* function exit code */ - __pyx_L1_error:; - __Pyx_XDECREF(__pyx_t_3); - __Pyx_XDECREF(__pyx_t_4); - __Pyx_XDECREF(__pyx_t_6); - __Pyx_XDECREF(__pyx_t_7); - __Pyx_AddTraceback("pmercury.utils.tls_utils.ec_point_formats", __pyx_clineno, __pyx_lineno, __pyx_filename); - __pyx_r = NULL; - __pyx_L0:; - __Pyx_XDECREF(__pyx_v_info); - __Pyx_XDECREF(__pyx_v_ext_len); - __Pyx_XDECREF(__pyx_v_i); - __Pyx_XDECREF(__pyx_v_tmp_data); - __Pyx_XGIVEREF(__pyx_r); - __Pyx_RefNannyFinishContext(); - return __pyx_r; -} - -/* "pmercury/utils/tls_utils.pyx":308 - * - * - * def status_request(data, length): # <<<<<<<<<<<<<< - * if len(data) < 2: - * return '' - */ - -/* Python wrapper */ -static PyObject *__pyx_pw_8pmercury_5utils_9tls_utils_35status_request(PyObject *__pyx_self, PyObject *__pyx_args, PyObject *__pyx_kwds); /*proto*/ -static PyMethodDef __pyx_mdef_8pmercury_5utils_9tls_utils_35status_request = {"status_request", (PyCFunction)(void*)(PyCFunctionWithKeywords)__pyx_pw_8pmercury_5utils_9tls_utils_35status_request, METH_VARARGS|METH_KEYWORDS, 0}; -static PyObject *__pyx_pw_8pmercury_5utils_9tls_utils_35status_request(PyObject *__pyx_self, PyObject *__pyx_args, PyObject *__pyx_kwds) { - PyObject *__pyx_v_data = 0; - CYTHON_UNUSED PyObject *__pyx_v_length = 0; - PyObject *__pyx_r = 0; - __Pyx_RefNannyDeclarations - __Pyx_RefNannySetupContext("status_request (wrapper)", 0); - { - static PyObject **__pyx_pyargnames[] = {&__pyx_n_s_data,&__pyx_n_s_length,0}; - PyObject* values[2] = {0,0}; - if (unlikely(__pyx_kwds)) { - Py_ssize_t kw_args; - const Py_ssize_t pos_args = PyTuple_GET_SIZE(__pyx_args); - switch (pos_args) { - case 2: values[1] = PyTuple_GET_ITEM(__pyx_args, 1); - CYTHON_FALLTHROUGH; - case 1: values[0] = PyTuple_GET_ITEM(__pyx_args, 0); - CYTHON_FALLTHROUGH; - case 0: break; - default: goto __pyx_L5_argtuple_error; - } - kw_args = PyDict_Size(__pyx_kwds); - switch (pos_args) { - case 0: - if (likely((values[0] = __Pyx_PyDict_GetItemStr(__pyx_kwds, __pyx_n_s_data)) != 0)) kw_args--; - else goto __pyx_L5_argtuple_error; - CYTHON_FALLTHROUGH; - case 1: - if (likely((values[1] = __Pyx_PyDict_GetItemStr(__pyx_kwds, __pyx_n_s_length)) != 0)) kw_args--; - else { - __Pyx_RaiseArgtupleInvalid("status_request", 1, 2, 2, 1); __PYX_ERR(0, 308, __pyx_L3_error) - } - } - if (unlikely(kw_args > 0)) { - if (unlikely(__Pyx_ParseOptionalKeywords(__pyx_kwds, __pyx_pyargnames, 0, values, pos_args, "status_request") < 0)) __PYX_ERR(0, 308, __pyx_L3_error) - } - } else if (PyTuple_GET_SIZE(__pyx_args) != 2) { - goto __pyx_L5_argtuple_error; - } else { - values[0] = PyTuple_GET_ITEM(__pyx_args, 0); - values[1] = PyTuple_GET_ITEM(__pyx_args, 1); - } - __pyx_v_data = values[0]; - __pyx_v_length = values[1]; - } - goto __pyx_L4_argument_unpacking_done; - __pyx_L5_argtuple_error:; - __Pyx_RaiseArgtupleInvalid("status_request", 1, 2, 2, PyTuple_GET_SIZE(__pyx_args)); __PYX_ERR(0, 308, __pyx_L3_error) - __pyx_L3_error:; - __Pyx_AddTraceback("pmercury.utils.tls_utils.status_request", __pyx_clineno, __pyx_lineno, __pyx_filename); - __Pyx_RefNannyFinishContext(); - return NULL; - __pyx_L4_argument_unpacking_done:; - __pyx_r = __pyx_pf_8pmercury_5utils_9tls_utils_34status_request(__pyx_self, __pyx_v_data, __pyx_v_length); - - /* function exit code */ - __Pyx_RefNannyFinishContext(); - return __pyx_r; -} - -static PyObject *__pyx_pf_8pmercury_5utils_9tls_utils_34status_request(CYTHON_UNUSED PyObject *__pyx_self, PyObject *__pyx_v_data, CYTHON_UNUSED PyObject *__pyx_v_length) { - PyObject *__pyx_v_info = NULL; - PyObject *__pyx_v_offset = NULL; - PyObject *__pyx_r = NULL; - __Pyx_RefNannyDeclarations - Py_ssize_t __pyx_t_1; - int __pyx_t_2; - PyObject *__pyx_t_3 = NULL; - PyObject *__pyx_t_4 = NULL; - PyObject *__pyx_t_5 = NULL; - __Pyx_RefNannySetupContext("status_request", 0); - - /* "pmercury/utils/tls_utils.pyx":309 - * - * def status_request(data, length): - * if len(data) < 2: # <<<<<<<<<<<<<< - * return '' - * info = {} - */ - __pyx_t_1 = PyObject_Length(__pyx_v_data); if (unlikely(__pyx_t_1 == ((Py_ssize_t)-1))) __PYX_ERR(0, 309, __pyx_L1_error) - __pyx_t_2 = ((__pyx_t_1 < 2) != 0); - if (__pyx_t_2) { - - /* "pmercury/utils/tls_utils.pyx":310 - * def status_request(data, length): - * if len(data) < 2: - * return '' # <<<<<<<<<<<<<< - * info = {} - * info['certificate_status_type'] = TLS_CERTIFICATE_STATUS_TYPE[data[0:2]] - */ - __Pyx_XDECREF(__pyx_r); - __Pyx_INCREF(__pyx_kp_u__19); - __pyx_r = __pyx_kp_u__19; - goto __pyx_L0; - - /* "pmercury/utils/tls_utils.pyx":309 - * - * def status_request(data, length): - * if len(data) < 2: # <<<<<<<<<<<<<< - * return '' - * info = {} - */ - } - - /* "pmercury/utils/tls_utils.pyx":311 - * if len(data) < 2: - * return '' - * info = {} # <<<<<<<<<<<<<< - * info['certificate_status_type'] = TLS_CERTIFICATE_STATUS_TYPE[data[0:2]] - * offset = 2 - */ - __pyx_t_3 = __Pyx_PyDict_NewPresized(0); if (unlikely(!__pyx_t_3)) __PYX_ERR(0, 311, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_3); - __pyx_v_info = ((PyObject*)__pyx_t_3); - __pyx_t_3 = 0; - - /* "pmercury/utils/tls_utils.pyx":312 - * return '' - * info = {} - * info['certificate_status_type'] = TLS_CERTIFICATE_STATUS_TYPE[data[0:2]] # <<<<<<<<<<<<<< - * offset = 2 - * info['responder_id_list_length'] = int(data[offset:offset+4], 16) - */ - __Pyx_GetModuleGlobalName(__pyx_t_3, __pyx_n_s_TLS_CERTIFICATE_STATUS_TYPE); if (unlikely(!__pyx_t_3)) __PYX_ERR(0, 312, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_3); - __pyx_t_4 = __Pyx_PyObject_GetSlice(__pyx_v_data, 0, 2, NULL, NULL, &__pyx_slice__23, 1, 1, 1); if (unlikely(!__pyx_t_4)) __PYX_ERR(0, 312, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_4); - __pyx_t_5 = __Pyx_PyObject_GetItem(__pyx_t_3, __pyx_t_4); if (unlikely(!__pyx_t_5)) __PYX_ERR(0, 312, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_5); - __Pyx_DECREF(__pyx_t_3); __pyx_t_3 = 0; - __Pyx_DECREF(__pyx_t_4); __pyx_t_4 = 0; - if (unlikely(PyDict_SetItem(__pyx_v_info, __pyx_n_u_certificate_status_type, __pyx_t_5) < 0)) __PYX_ERR(0, 312, __pyx_L1_error) - __Pyx_DECREF(__pyx_t_5); __pyx_t_5 = 0; - - /* "pmercury/utils/tls_utils.pyx":313 - * info = {} - * info['certificate_status_type'] = TLS_CERTIFICATE_STATUS_TYPE[data[0:2]] - * offset = 2 # <<<<<<<<<<<<<< - * info['responder_id_list_length'] = int(data[offset:offset+4], 16) - * offset += info['responder_id_list_length']*2 + 4 - */ - __Pyx_INCREF(__pyx_int_2); - __pyx_v_offset = __pyx_int_2; - - /* "pmercury/utils/tls_utils.pyx":314 - * info['certificate_status_type'] = TLS_CERTIFICATE_STATUS_TYPE[data[0:2]] - * offset = 2 - * info['responder_id_list_length'] = int(data[offset:offset+4], 16) # <<<<<<<<<<<<<< - * offset += info['responder_id_list_length']*2 + 4 - * info['request_extensions_length'] = int(data[offset:offset+4], 16) - */ - __pyx_t_5 = __Pyx_PyInt_AddObjC(__pyx_v_offset, __pyx_int_4, 4, 0, 0); if (unlikely(!__pyx_t_5)) __PYX_ERR(0, 314, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_5); - __pyx_t_4 = __Pyx_PyObject_GetSlice(__pyx_v_data, 0, 0, &__pyx_v_offset, &__pyx_t_5, NULL, 0, 0, 1); if (unlikely(!__pyx_t_4)) __PYX_ERR(0, 314, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_4); - __Pyx_DECREF(__pyx_t_5); __pyx_t_5 = 0; - __pyx_t_5 = PyTuple_New(2); if (unlikely(!__pyx_t_5)) __PYX_ERR(0, 314, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_5); - __Pyx_GIVEREF(__pyx_t_4); - PyTuple_SET_ITEM(__pyx_t_5, 0, __pyx_t_4); - __Pyx_INCREF(__pyx_int_16); - __Pyx_GIVEREF(__pyx_int_16); - PyTuple_SET_ITEM(__pyx_t_5, 1, __pyx_int_16); - __pyx_t_4 = 0; - __pyx_t_4 = __Pyx_PyObject_Call(((PyObject *)(&PyInt_Type)), __pyx_t_5, NULL); if (unlikely(!__pyx_t_4)) __PYX_ERR(0, 314, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_4); - __Pyx_DECREF(__pyx_t_5); __pyx_t_5 = 0; - if (unlikely(PyDict_SetItem(__pyx_v_info, __pyx_n_u_responder_id_list_length, __pyx_t_4) < 0)) __PYX_ERR(0, 314, __pyx_L1_error) - __Pyx_DECREF(__pyx_t_4); __pyx_t_4 = 0; - - /* "pmercury/utils/tls_utils.pyx":315 - * offset = 2 - * info['responder_id_list_length'] = int(data[offset:offset+4], 16) - * offset += info['responder_id_list_length']*2 + 4 # <<<<<<<<<<<<<< - * info['request_extensions_length'] = int(data[offset:offset+4], 16) - * - */ - __pyx_t_4 = __Pyx_PyDict_GetItem(__pyx_v_info, __pyx_n_u_responder_id_list_length); if (unlikely(!__pyx_t_4)) __PYX_ERR(0, 315, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_4); - __pyx_t_5 = PyNumber_Multiply(__pyx_t_4, __pyx_int_2); if (unlikely(!__pyx_t_5)) __PYX_ERR(0, 315, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_5); - __Pyx_DECREF(__pyx_t_4); __pyx_t_4 = 0; - __pyx_t_4 = __Pyx_PyInt_AddObjC(__pyx_t_5, __pyx_int_4, 4, 0, 0); if (unlikely(!__pyx_t_4)) __PYX_ERR(0, 315, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_4); - __Pyx_DECREF(__pyx_t_5); __pyx_t_5 = 0; - __pyx_t_5 = PyNumber_InPlaceAdd(__pyx_v_offset, __pyx_t_4); if (unlikely(!__pyx_t_5)) __PYX_ERR(0, 315, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_5); - __Pyx_DECREF(__pyx_t_4); __pyx_t_4 = 0; - __Pyx_DECREF_SET(__pyx_v_offset, __pyx_t_5); - __pyx_t_5 = 0; - - /* "pmercury/utils/tls_utils.pyx":316 - * info['responder_id_list_length'] = int(data[offset:offset+4], 16) - * offset += info['responder_id_list_length']*2 + 4 - * info['request_extensions_length'] = int(data[offset:offset+4], 16) # <<<<<<<<<<<<<< - * - * return info - */ - __pyx_t_5 = __Pyx_PyInt_AddObjC(__pyx_v_offset, __pyx_int_4, 4, 0, 0); if (unlikely(!__pyx_t_5)) __PYX_ERR(0, 316, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_5); - __pyx_t_4 = __Pyx_PyObject_GetSlice(__pyx_v_data, 0, 0, &__pyx_v_offset, &__pyx_t_5, NULL, 0, 0, 1); if (unlikely(!__pyx_t_4)) __PYX_ERR(0, 316, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_4); - __Pyx_DECREF(__pyx_t_5); __pyx_t_5 = 0; - __pyx_t_5 = PyTuple_New(2); if (unlikely(!__pyx_t_5)) __PYX_ERR(0, 316, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_5); - __Pyx_GIVEREF(__pyx_t_4); - PyTuple_SET_ITEM(__pyx_t_5, 0, __pyx_t_4); - __Pyx_INCREF(__pyx_int_16); - __Pyx_GIVEREF(__pyx_int_16); - PyTuple_SET_ITEM(__pyx_t_5, 1, __pyx_int_16); - __pyx_t_4 = 0; - __pyx_t_4 = __Pyx_PyObject_Call(((PyObject *)(&PyInt_Type)), __pyx_t_5, NULL); if (unlikely(!__pyx_t_4)) __PYX_ERR(0, 316, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_4); - __Pyx_DECREF(__pyx_t_5); __pyx_t_5 = 0; - if (unlikely(PyDict_SetItem(__pyx_v_info, __pyx_n_u_request_extensions_length, __pyx_t_4) < 0)) __PYX_ERR(0, 316, __pyx_L1_error) - __Pyx_DECREF(__pyx_t_4); __pyx_t_4 = 0; - - /* "pmercury/utils/tls_utils.pyx":318 - * info['request_extensions_length'] = int(data[offset:offset+4], 16) - * - * return info # <<<<<<<<<<<<<< - * - * - */ - __Pyx_XDECREF(__pyx_r); - __Pyx_INCREF(__pyx_v_info); - __pyx_r = __pyx_v_info; - goto __pyx_L0; - - /* "pmercury/utils/tls_utils.pyx":308 - * - * - * def status_request(data, length): # <<<<<<<<<<<<<< - * if len(data) < 2: - * return '' - */ - - /* function exit code */ - __pyx_L1_error:; - __Pyx_XDECREF(__pyx_t_3); - __Pyx_XDECREF(__pyx_t_4); - __Pyx_XDECREF(__pyx_t_5); - __Pyx_AddTraceback("pmercury.utils.tls_utils.status_request", __pyx_clineno, __pyx_lineno, __pyx_filename); - __pyx_r = NULL; - __pyx_L0:; - __Pyx_XDECREF(__pyx_v_info); - __Pyx_XDECREF(__pyx_v_offset); - __Pyx_XGIVEREF(__pyx_r); - __Pyx_RefNannyFinishContext(); - return __pyx_r; -} - -/* "pmercury/utils/tls_utils.pyx":321 - * - * - * def signature_algorithms(data, length): # <<<<<<<<<<<<<< - * if len(data) < 2: - * return '' - */ - -/* Python wrapper */ -static PyObject *__pyx_pw_8pmercury_5utils_9tls_utils_37signature_algorithms(PyObject *__pyx_self, PyObject *__pyx_args, PyObject *__pyx_kwds); /*proto*/ -static PyMethodDef __pyx_mdef_8pmercury_5utils_9tls_utils_37signature_algorithms = {"signature_algorithms", (PyCFunction)(void*)(PyCFunctionWithKeywords)__pyx_pw_8pmercury_5utils_9tls_utils_37signature_algorithms, METH_VARARGS|METH_KEYWORDS, 0}; -static PyObject *__pyx_pw_8pmercury_5utils_9tls_utils_37signature_algorithms(PyObject *__pyx_self, PyObject *__pyx_args, PyObject *__pyx_kwds) { - PyObject *__pyx_v_data = 0; - PyObject *__pyx_v_length = 0; - PyObject *__pyx_r = 0; - __Pyx_RefNannyDeclarations - __Pyx_RefNannySetupContext("signature_algorithms (wrapper)", 0); - { - static PyObject **__pyx_pyargnames[] = {&__pyx_n_s_data,&__pyx_n_s_length,0}; - PyObject* values[2] = {0,0}; - if (unlikely(__pyx_kwds)) { - Py_ssize_t kw_args; - const Py_ssize_t pos_args = PyTuple_GET_SIZE(__pyx_args); - switch (pos_args) { - case 2: values[1] = PyTuple_GET_ITEM(__pyx_args, 1); - CYTHON_FALLTHROUGH; - case 1: values[0] = PyTuple_GET_ITEM(__pyx_args, 0); - CYTHON_FALLTHROUGH; - case 0: break; - default: goto __pyx_L5_argtuple_error; - } - kw_args = PyDict_Size(__pyx_kwds); - switch (pos_args) { - case 0: - if (likely((values[0] = __Pyx_PyDict_GetItemStr(__pyx_kwds, __pyx_n_s_data)) != 0)) kw_args--; - else goto __pyx_L5_argtuple_error; - CYTHON_FALLTHROUGH; - case 1: - if (likely((values[1] = __Pyx_PyDict_GetItemStr(__pyx_kwds, __pyx_n_s_length)) != 0)) kw_args--; - else { - __Pyx_RaiseArgtupleInvalid("signature_algorithms", 1, 2, 2, 1); __PYX_ERR(0, 321, __pyx_L3_error) - } - } - if (unlikely(kw_args > 0)) { - if (unlikely(__Pyx_ParseOptionalKeywords(__pyx_kwds, __pyx_pyargnames, 0, values, pos_args, "signature_algorithms") < 0)) __PYX_ERR(0, 321, __pyx_L3_error) - } - } else if (PyTuple_GET_SIZE(__pyx_args) != 2) { - goto __pyx_L5_argtuple_error; - } else { - values[0] = PyTuple_GET_ITEM(__pyx_args, 0); - values[1] = PyTuple_GET_ITEM(__pyx_args, 1); - } - __pyx_v_data = values[0]; - __pyx_v_length = values[1]; - } - goto __pyx_L4_argument_unpacking_done; - __pyx_L5_argtuple_error:; - __Pyx_RaiseArgtupleInvalid("signature_algorithms", 1, 2, 2, PyTuple_GET_SIZE(__pyx_args)); __PYX_ERR(0, 321, __pyx_L3_error) - __pyx_L3_error:; - __Pyx_AddTraceback("pmercury.utils.tls_utils.signature_algorithms", __pyx_clineno, __pyx_lineno, __pyx_filename); - __Pyx_RefNannyFinishContext(); - return NULL; - __pyx_L4_argument_unpacking_done:; - __pyx_r = __pyx_pf_8pmercury_5utils_9tls_utils_36signature_algorithms(__pyx_self, __pyx_v_data, __pyx_v_length); - - /* function exit code */ - __Pyx_RefNannyFinishContext(); - return __pyx_r; -} - -static PyObject *__pyx_pf_8pmercury_5utils_9tls_utils_36signature_algorithms(CYTHON_UNUSED PyObject *__pyx_self, PyObject *__pyx_v_data, PyObject *__pyx_v_length) { - PyObject *__pyx_v_info = NULL; - PyObject *__pyx_v_ext_len = NULL; - long __pyx_v_offset; - PyObject *__pyx_v_tmp_data = NULL; - PyObject *__pyx_r = NULL; - __Pyx_RefNannyDeclarations - Py_ssize_t __pyx_t_1; - int __pyx_t_2; - PyObject *__pyx_t_3 = NULL; - PyObject *__pyx_t_4 = NULL; - PyObject *__pyx_t_5 = NULL; - int __pyx_t_6; - int __pyx_t_7; - __Pyx_RefNannySetupContext("signature_algorithms", 0); - - /* "pmercury/utils/tls_utils.pyx":322 - * - * def signature_algorithms(data, length): - * if len(data) < 2: # <<<<<<<<<<<<<< - * return '' - * info = {} - */ - __pyx_t_1 = PyObject_Length(__pyx_v_data); if (unlikely(__pyx_t_1 == ((Py_ssize_t)-1))) __PYX_ERR(0, 322, __pyx_L1_error) - __pyx_t_2 = ((__pyx_t_1 < 2) != 0); - if (__pyx_t_2) { - - /* "pmercury/utils/tls_utils.pyx":323 - * def signature_algorithms(data, length): - * if len(data) < 2: - * return '' # <<<<<<<<<<<<<< - * info = {} - * ext_len = int(data[0:4], 16) - */ - __Pyx_XDECREF(__pyx_r); - __Pyx_INCREF(__pyx_kp_u__19); - __pyx_r = __pyx_kp_u__19; - goto __pyx_L0; - - /* "pmercury/utils/tls_utils.pyx":322 - * - * def signature_algorithms(data, length): - * if len(data) < 2: # <<<<<<<<<<<<<< - * return '' - * info = {} - */ - } - - /* "pmercury/utils/tls_utils.pyx":324 - * if len(data) < 2: - * return '' - * info = {} # <<<<<<<<<<<<<< - * ext_len = int(data[0:4], 16) - * info['signature_hash_algorithms_length'] = ext_len - */ - __pyx_t_3 = __Pyx_PyDict_NewPresized(0); if (unlikely(!__pyx_t_3)) __PYX_ERR(0, 324, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_3); - __pyx_v_info = ((PyObject*)__pyx_t_3); - __pyx_t_3 = 0; - - /* "pmercury/utils/tls_utils.pyx":325 - * return '' - * info = {} - * ext_len = int(data[0:4], 16) # <<<<<<<<<<<<<< - * info['signature_hash_algorithms_length'] = ext_len - * info['algorithms'] = [] - */ - __pyx_t_3 = __Pyx_PyObject_GetSlice(__pyx_v_data, 0, 4, NULL, NULL, &__pyx_slice__18, 1, 1, 1); if (unlikely(!__pyx_t_3)) __PYX_ERR(0, 325, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_3); - __pyx_t_4 = PyTuple_New(2); if (unlikely(!__pyx_t_4)) __PYX_ERR(0, 325, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_4); - __Pyx_GIVEREF(__pyx_t_3); - PyTuple_SET_ITEM(__pyx_t_4, 0, __pyx_t_3); - __Pyx_INCREF(__pyx_int_16); - __Pyx_GIVEREF(__pyx_int_16); - PyTuple_SET_ITEM(__pyx_t_4, 1, __pyx_int_16); - __pyx_t_3 = 0; - __pyx_t_3 = __Pyx_PyObject_Call(((PyObject *)(&PyInt_Type)), __pyx_t_4, NULL); if (unlikely(!__pyx_t_3)) __PYX_ERR(0, 325, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_3); - __Pyx_DECREF(__pyx_t_4); __pyx_t_4 = 0; - __pyx_v_ext_len = __pyx_t_3; - __pyx_t_3 = 0; - - /* "pmercury/utils/tls_utils.pyx":326 - * info = {} - * ext_len = int(data[0:4], 16) - * info['signature_hash_algorithms_length'] = ext_len # <<<<<<<<<<<<<< - * info['algorithms'] = [] - * offset = 4 - */ - if (unlikely(PyDict_SetItem(__pyx_v_info, __pyx_n_u_signature_hash_algorithms_length, __pyx_v_ext_len) < 0)) __PYX_ERR(0, 326, __pyx_L1_error) - - /* "pmercury/utils/tls_utils.pyx":327 - * ext_len = int(data[0:4], 16) - * info['signature_hash_algorithms_length'] = ext_len - * info['algorithms'] = [] # <<<<<<<<<<<<<< - * offset = 4 - * while offset < length*2: - */ - __pyx_t_3 = PyList_New(0); if (unlikely(!__pyx_t_3)) __PYX_ERR(0, 327, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_3); - if (unlikely(PyDict_SetItem(__pyx_v_info, __pyx_n_u_algorithms, __pyx_t_3) < 0)) __PYX_ERR(0, 327, __pyx_L1_error) - __Pyx_DECREF(__pyx_t_3); __pyx_t_3 = 0; - - /* "pmercury/utils/tls_utils.pyx":328 - * info['signature_hash_algorithms_length'] = ext_len - * info['algorithms'] = [] - * offset = 4 # <<<<<<<<<<<<<< - * while offset < length*2: - * tmp_data = data[offset:offset+4] - */ - __pyx_v_offset = 4; - - /* "pmercury/utils/tls_utils.pyx":329 - * info['algorithms'] = [] - * offset = 4 - * while offset < length*2: # <<<<<<<<<<<<<< - * tmp_data = data[offset:offset+4] - * if tmp_data in TLS_SIGNATURE_HASH_ALGORITHMS: - */ - while (1) { - __pyx_t_3 = __Pyx_PyInt_From_long(__pyx_v_offset); if (unlikely(!__pyx_t_3)) __PYX_ERR(0, 329, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_3); - __pyx_t_4 = PyNumber_Multiply(__pyx_v_length, __pyx_int_2); if (unlikely(!__pyx_t_4)) __PYX_ERR(0, 329, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_4); - __pyx_t_5 = PyObject_RichCompare(__pyx_t_3, __pyx_t_4, Py_LT); __Pyx_XGOTREF(__pyx_t_5); if (unlikely(!__pyx_t_5)) __PYX_ERR(0, 329, __pyx_L1_error) - __Pyx_DECREF(__pyx_t_3); __pyx_t_3 = 0; - __Pyx_DECREF(__pyx_t_4); __pyx_t_4 = 0; - __pyx_t_2 = __Pyx_PyObject_IsTrue(__pyx_t_5); if (unlikely(__pyx_t_2 < 0)) __PYX_ERR(0, 329, __pyx_L1_error) - __Pyx_DECREF(__pyx_t_5); __pyx_t_5 = 0; - if (!__pyx_t_2) break; - - /* "pmercury/utils/tls_utils.pyx":330 - * offset = 4 - * while offset < length*2: - * tmp_data = data[offset:offset+4] # <<<<<<<<<<<<<< - * if tmp_data in TLS_SIGNATURE_HASH_ALGORITHMS: - * info['algorithms'].append(TLS_SIGNATURE_HASH_ALGORITHMS[tmp_data]) - */ - __pyx_t_5 = __Pyx_PyObject_GetSlice(__pyx_v_data, __pyx_v_offset, (__pyx_v_offset + 4), NULL, NULL, NULL, 1, 1, 1); if (unlikely(!__pyx_t_5)) __PYX_ERR(0, 330, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_5); - __Pyx_XDECREF_SET(__pyx_v_tmp_data, __pyx_t_5); - __pyx_t_5 = 0; - - /* "pmercury/utils/tls_utils.pyx":331 - * while offset < length*2: - * tmp_data = data[offset:offset+4] - * if tmp_data in TLS_SIGNATURE_HASH_ALGORITHMS: # <<<<<<<<<<<<<< - * info['algorithms'].append(TLS_SIGNATURE_HASH_ALGORITHMS[tmp_data]) - * else: - */ - __Pyx_GetModuleGlobalName(__pyx_t_5, __pyx_n_s_TLS_SIGNATURE_HASH_ALGORITHMS); if (unlikely(!__pyx_t_5)) __PYX_ERR(0, 331, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_5); - __pyx_t_2 = (__Pyx_PySequence_ContainsTF(__pyx_v_tmp_data, __pyx_t_5, Py_EQ)); if (unlikely(__pyx_t_2 < 0)) __PYX_ERR(0, 331, __pyx_L1_error) - __Pyx_DECREF(__pyx_t_5); __pyx_t_5 = 0; - __pyx_t_6 = (__pyx_t_2 != 0); - if (__pyx_t_6) { - - /* "pmercury/utils/tls_utils.pyx":332 - * tmp_data = data[offset:offset+4] - * if tmp_data in TLS_SIGNATURE_HASH_ALGORITHMS: - * info['algorithms'].append(TLS_SIGNATURE_HASH_ALGORITHMS[tmp_data]) # <<<<<<<<<<<<<< - * else: - * info['algorithms'].append('unknown(%s)' % tmp_data) - */ - __pyx_t_5 = __Pyx_PyDict_GetItem(__pyx_v_info, __pyx_n_u_algorithms); if (unlikely(!__pyx_t_5)) __PYX_ERR(0, 332, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_5); - __Pyx_GetModuleGlobalName(__pyx_t_4, __pyx_n_s_TLS_SIGNATURE_HASH_ALGORITHMS); if (unlikely(!__pyx_t_4)) __PYX_ERR(0, 332, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_4); - __pyx_t_3 = __Pyx_PyObject_GetItem(__pyx_t_4, __pyx_v_tmp_data); if (unlikely(!__pyx_t_3)) __PYX_ERR(0, 332, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_3); - __Pyx_DECREF(__pyx_t_4); __pyx_t_4 = 0; - __pyx_t_7 = __Pyx_PyObject_Append(__pyx_t_5, __pyx_t_3); if (unlikely(__pyx_t_7 == ((int)-1))) __PYX_ERR(0, 332, __pyx_L1_error) - __Pyx_DECREF(__pyx_t_5); __pyx_t_5 = 0; - __Pyx_DECREF(__pyx_t_3); __pyx_t_3 = 0; - - /* "pmercury/utils/tls_utils.pyx":331 - * while offset < length*2: - * tmp_data = data[offset:offset+4] - * if tmp_data in TLS_SIGNATURE_HASH_ALGORITHMS: # <<<<<<<<<<<<<< - * info['algorithms'].append(TLS_SIGNATURE_HASH_ALGORITHMS[tmp_data]) - * else: - */ - goto __pyx_L6; - } - - /* "pmercury/utils/tls_utils.pyx":334 - * info['algorithms'].append(TLS_SIGNATURE_HASH_ALGORITHMS[tmp_data]) - * else: - * info['algorithms'].append('unknown(%s)' % tmp_data) # <<<<<<<<<<<<<< - * offset += 4 - * - */ - /*else*/ { - __pyx_t_3 = __Pyx_PyDict_GetItem(__pyx_v_info, __pyx_n_u_algorithms); if (unlikely(!__pyx_t_3)) __PYX_ERR(0, 334, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_3); - __pyx_t_5 = __Pyx_PyUnicode_FormatSafe(__pyx_kp_u_unknown_s, __pyx_v_tmp_data); if (unlikely(!__pyx_t_5)) __PYX_ERR(0, 334, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_5); - __pyx_t_7 = __Pyx_PyObject_Append(__pyx_t_3, __pyx_t_5); if (unlikely(__pyx_t_7 == ((int)-1))) __PYX_ERR(0, 334, __pyx_L1_error) - __Pyx_DECREF(__pyx_t_3); __pyx_t_3 = 0; - __Pyx_DECREF(__pyx_t_5); __pyx_t_5 = 0; - } - __pyx_L6:; - - /* "pmercury/utils/tls_utils.pyx":335 - * else: - * info['algorithms'].append('unknown(%s)' % tmp_data) - * offset += 4 # <<<<<<<<<<<<<< - * - * return info - */ - __pyx_v_offset = (__pyx_v_offset + 4); - } - - /* "pmercury/utils/tls_utils.pyx":337 - * offset += 4 - * - * return info # <<<<<<<<<<<<<< - * - * - */ - __Pyx_XDECREF(__pyx_r); - __Pyx_INCREF(__pyx_v_info); - __pyx_r = __pyx_v_info; - goto __pyx_L0; - - /* "pmercury/utils/tls_utils.pyx":321 - * - * - * def signature_algorithms(data, length): # <<<<<<<<<<<<<< - * if len(data) < 2: - * return '' - */ - - /* function exit code */ - __pyx_L1_error:; - __Pyx_XDECREF(__pyx_t_3); - __Pyx_XDECREF(__pyx_t_4); - __Pyx_XDECREF(__pyx_t_5); - __Pyx_AddTraceback("pmercury.utils.tls_utils.signature_algorithms", __pyx_clineno, __pyx_lineno, __pyx_filename); - __pyx_r = NULL; - __pyx_L0:; - __Pyx_XDECREF(__pyx_v_info); - __Pyx_XDECREF(__pyx_v_ext_len); - __Pyx_XDECREF(__pyx_v_tmp_data); - __Pyx_XGIVEREF(__pyx_r); - __Pyx_RefNannyFinishContext(); - return __pyx_r; -} - -/* "pmercury/utils/tls_utils.pyx":340 - * - * - * def parse_application_layer_protocol_negotiation(data, length): # <<<<<<<<<<<<<< - * alpn_len = int(data[0:4], 16) - * alpn_offset = 4 - */ - -/* Python wrapper */ -static PyObject *__pyx_pw_8pmercury_5utils_9tls_utils_39parse_application_layer_protocol_negotiation(PyObject *__pyx_self, PyObject *__pyx_args, PyObject *__pyx_kwds); /*proto*/ -static PyMethodDef __pyx_mdef_8pmercury_5utils_9tls_utils_39parse_application_layer_protocol_negotiation = {"parse_application_layer_protocol_negotiation", (PyCFunction)(void*)(PyCFunctionWithKeywords)__pyx_pw_8pmercury_5utils_9tls_utils_39parse_application_layer_protocol_negotiation, METH_VARARGS|METH_KEYWORDS, 0}; -static PyObject *__pyx_pw_8pmercury_5utils_9tls_utils_39parse_application_layer_protocol_negotiation(PyObject *__pyx_self, PyObject *__pyx_args, PyObject *__pyx_kwds) { - PyObject *__pyx_v_data = 0; - PyObject *__pyx_v_length = 0; - PyObject *__pyx_r = 0; - __Pyx_RefNannyDeclarations - __Pyx_RefNannySetupContext("parse_application_layer_protocol_negotiation (wrapper)", 0); - { - static PyObject **__pyx_pyargnames[] = {&__pyx_n_s_data,&__pyx_n_s_length,0}; - PyObject* values[2] = {0,0}; - if (unlikely(__pyx_kwds)) { - Py_ssize_t kw_args; - const Py_ssize_t pos_args = PyTuple_GET_SIZE(__pyx_args); - switch (pos_args) { - case 2: values[1] = PyTuple_GET_ITEM(__pyx_args, 1); - CYTHON_FALLTHROUGH; - case 1: values[0] = PyTuple_GET_ITEM(__pyx_args, 0); - CYTHON_FALLTHROUGH; - case 0: break; - default: goto __pyx_L5_argtuple_error; - } - kw_args = PyDict_Size(__pyx_kwds); - switch (pos_args) { - case 0: - if (likely((values[0] = __Pyx_PyDict_GetItemStr(__pyx_kwds, __pyx_n_s_data)) != 0)) kw_args--; - else goto __pyx_L5_argtuple_error; - CYTHON_FALLTHROUGH; - case 1: - if (likely((values[1] = __Pyx_PyDict_GetItemStr(__pyx_kwds, __pyx_n_s_length)) != 0)) kw_args--; - else { - __Pyx_RaiseArgtupleInvalid("parse_application_layer_protocol_negotiation", 1, 2, 2, 1); __PYX_ERR(0, 340, __pyx_L3_error) - } - } - if (unlikely(kw_args > 0)) { - if (unlikely(__Pyx_ParseOptionalKeywords(__pyx_kwds, __pyx_pyargnames, 0, values, pos_args, "parse_application_layer_protocol_negotiation") < 0)) __PYX_ERR(0, 340, __pyx_L3_error) - } - } else if (PyTuple_GET_SIZE(__pyx_args) != 2) { - goto __pyx_L5_argtuple_error; - } else { - values[0] = PyTuple_GET_ITEM(__pyx_args, 0); - values[1] = PyTuple_GET_ITEM(__pyx_args, 1); - } - __pyx_v_data = values[0]; - __pyx_v_length = values[1]; - } - goto __pyx_L4_argument_unpacking_done; - __pyx_L5_argtuple_error:; - __Pyx_RaiseArgtupleInvalid("parse_application_layer_protocol_negotiation", 1, 2, 2, PyTuple_GET_SIZE(__pyx_args)); __PYX_ERR(0, 340, __pyx_L3_error) - __pyx_L3_error:; - __Pyx_AddTraceback("pmercury.utils.tls_utils.parse_application_layer_protocol_negotiation", __pyx_clineno, __pyx_lineno, __pyx_filename); - __Pyx_RefNannyFinishContext(); - return NULL; - __pyx_L4_argument_unpacking_done:; - __pyx_r = __pyx_pf_8pmercury_5utils_9tls_utils_38parse_application_layer_protocol_negotiation(__pyx_self, __pyx_v_data, __pyx_v_length); - - /* function exit code */ - __Pyx_RefNannyFinishContext(); - return __pyx_r; -} - -static PyObject *__pyx_pf_8pmercury_5utils_9tls_utils_38parse_application_layer_protocol_negotiation(CYTHON_UNUSED PyObject *__pyx_self, PyObject *__pyx_v_data, PyObject *__pyx_v_length) { - CYTHON_UNUSED PyObject *__pyx_v_alpn_len = NULL; - PyObject *__pyx_v_alpn_offset = NULL; - PyObject *__pyx_v_alpn_data = NULL; - PyObject *__pyx_v_tmp_alpn_len = NULL; - PyObject *__pyx_r = NULL; - __Pyx_RefNannyDeclarations - PyObject *__pyx_t_1 = NULL; - PyObject *__pyx_t_2 = NULL; - int __pyx_t_3; - PyObject *__pyx_t_4 = NULL; - PyObject *__pyx_t_5 = NULL; - PyObject *__pyx_t_6 = NULL; - int __pyx_t_7; - __Pyx_RefNannySetupContext("parse_application_layer_protocol_negotiation", 0); - - /* "pmercury/utils/tls_utils.pyx":341 - * - * def parse_application_layer_protocol_negotiation(data, length): - * alpn_len = int(data[0:4], 16) # <<<<<<<<<<<<<< - * alpn_offset = 4 - * alpn_data = [] - */ - __pyx_t_1 = __Pyx_PyObject_GetSlice(__pyx_v_data, 0, 4, NULL, NULL, &__pyx_slice__18, 1, 1, 1); if (unlikely(!__pyx_t_1)) __PYX_ERR(0, 341, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_1); - __pyx_t_2 = PyTuple_New(2); if (unlikely(!__pyx_t_2)) __PYX_ERR(0, 341, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_2); - __Pyx_GIVEREF(__pyx_t_1); - PyTuple_SET_ITEM(__pyx_t_2, 0, __pyx_t_1); - __Pyx_INCREF(__pyx_int_16); - __Pyx_GIVEREF(__pyx_int_16); - PyTuple_SET_ITEM(__pyx_t_2, 1, __pyx_int_16); - __pyx_t_1 = 0; - __pyx_t_1 = __Pyx_PyObject_Call(((PyObject *)(&PyInt_Type)), __pyx_t_2, NULL); if (unlikely(!__pyx_t_1)) __PYX_ERR(0, 341, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_1); - __Pyx_DECREF(__pyx_t_2); __pyx_t_2 = 0; - __pyx_v_alpn_len = __pyx_t_1; - __pyx_t_1 = 0; - - /* "pmercury/utils/tls_utils.pyx":342 - * def parse_application_layer_protocol_negotiation(data, length): - * alpn_len = int(data[0:4], 16) - * alpn_offset = 4 # <<<<<<<<<<<<<< - * alpn_data = [] - * while alpn_offset < length*2: - */ - __Pyx_INCREF(__pyx_int_4); - __pyx_v_alpn_offset = __pyx_int_4; - - /* "pmercury/utils/tls_utils.pyx":343 - * alpn_len = int(data[0:4], 16) - * alpn_offset = 4 - * alpn_data = [] # <<<<<<<<<<<<<< - * while alpn_offset < length*2: - * tmp_alpn_len = int(data[alpn_offset:alpn_offset+2], 16) - */ - __pyx_t_1 = PyList_New(0); if (unlikely(!__pyx_t_1)) __PYX_ERR(0, 343, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_1); - __pyx_v_alpn_data = ((PyObject*)__pyx_t_1); - __pyx_t_1 = 0; - - /* "pmercury/utils/tls_utils.pyx":344 - * alpn_offset = 4 - * alpn_data = [] - * while alpn_offset < length*2: # <<<<<<<<<<<<<< - * tmp_alpn_len = int(data[alpn_offset:alpn_offset+2], 16) - * alpn_offset += 2 - */ - while (1) { - __pyx_t_1 = PyNumber_Multiply(__pyx_v_length, __pyx_int_2); if (unlikely(!__pyx_t_1)) __PYX_ERR(0, 344, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_1); - __pyx_t_2 = PyObject_RichCompare(__pyx_v_alpn_offset, __pyx_t_1, Py_LT); __Pyx_XGOTREF(__pyx_t_2); if (unlikely(!__pyx_t_2)) __PYX_ERR(0, 344, __pyx_L1_error) - __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0; - __pyx_t_3 = __Pyx_PyObject_IsTrue(__pyx_t_2); if (unlikely(__pyx_t_3 < 0)) __PYX_ERR(0, 344, __pyx_L1_error) - __Pyx_DECREF(__pyx_t_2); __pyx_t_2 = 0; - if (!__pyx_t_3) break; - - /* "pmercury/utils/tls_utils.pyx":345 - * alpn_data = [] - * while alpn_offset < length*2: - * tmp_alpn_len = int(data[alpn_offset:alpn_offset+2], 16) # <<<<<<<<<<<<<< - * alpn_offset += 2 - * alpn_data.append(bytes.fromhex(data[alpn_offset:alpn_offset+2*tmp_alpn_len]).decode()) - */ - __pyx_t_2 = __Pyx_PyInt_AddObjC(__pyx_v_alpn_offset, __pyx_int_2, 2, 0, 0); if (unlikely(!__pyx_t_2)) __PYX_ERR(0, 345, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_2); - __pyx_t_1 = __Pyx_PyObject_GetSlice(__pyx_v_data, 0, 0, &__pyx_v_alpn_offset, &__pyx_t_2, NULL, 0, 0, 1); if (unlikely(!__pyx_t_1)) __PYX_ERR(0, 345, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_1); - __Pyx_DECREF(__pyx_t_2); __pyx_t_2 = 0; - __pyx_t_2 = PyTuple_New(2); if (unlikely(!__pyx_t_2)) __PYX_ERR(0, 345, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_2); - __Pyx_GIVEREF(__pyx_t_1); - PyTuple_SET_ITEM(__pyx_t_2, 0, __pyx_t_1); - __Pyx_INCREF(__pyx_int_16); - __Pyx_GIVEREF(__pyx_int_16); - PyTuple_SET_ITEM(__pyx_t_2, 1, __pyx_int_16); - __pyx_t_1 = 0; - __pyx_t_1 = __Pyx_PyObject_Call(((PyObject *)(&PyInt_Type)), __pyx_t_2, NULL); if (unlikely(!__pyx_t_1)) __PYX_ERR(0, 345, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_1); - __Pyx_DECREF(__pyx_t_2); __pyx_t_2 = 0; - __Pyx_XDECREF_SET(__pyx_v_tmp_alpn_len, __pyx_t_1); - __pyx_t_1 = 0; - - /* "pmercury/utils/tls_utils.pyx":346 - * while alpn_offset < length*2: - * tmp_alpn_len = int(data[alpn_offset:alpn_offset+2], 16) - * alpn_offset += 2 # <<<<<<<<<<<<<< - * alpn_data.append(bytes.fromhex(data[alpn_offset:alpn_offset+2*tmp_alpn_len]).decode()) - * alpn_offset += tmp_alpn_len*2 - */ - __pyx_t_1 = __Pyx_PyInt_AddObjC(__pyx_v_alpn_offset, __pyx_int_2, 2, 1, 0); if (unlikely(!__pyx_t_1)) __PYX_ERR(0, 346, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_1); - __Pyx_DECREF_SET(__pyx_v_alpn_offset, __pyx_t_1); - __pyx_t_1 = 0; - - /* "pmercury/utils/tls_utils.pyx":347 - * tmp_alpn_len = int(data[alpn_offset:alpn_offset+2], 16) - * alpn_offset += 2 - * alpn_data.append(bytes.fromhex(data[alpn_offset:alpn_offset+2*tmp_alpn_len]).decode()) # <<<<<<<<<<<<<< - * alpn_offset += tmp_alpn_len*2 - * - */ - __pyx_t_4 = __Pyx_PyObject_GetAttrStr(((PyObject *)(&PyBytes_Type)), __pyx_n_s_fromhex); if (unlikely(!__pyx_t_4)) __PYX_ERR(0, 347, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_4); - __pyx_t_5 = PyNumber_Multiply(__pyx_int_2, __pyx_v_tmp_alpn_len); if (unlikely(!__pyx_t_5)) __PYX_ERR(0, 347, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_5); - __pyx_t_6 = PyNumber_Add(__pyx_v_alpn_offset, __pyx_t_5); if (unlikely(!__pyx_t_6)) __PYX_ERR(0, 347, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_6); - __Pyx_DECREF(__pyx_t_5); __pyx_t_5 = 0; - __pyx_t_5 = __Pyx_PyObject_GetSlice(__pyx_v_data, 0, 0, &__pyx_v_alpn_offset, &__pyx_t_6, NULL, 0, 0, 1); if (unlikely(!__pyx_t_5)) __PYX_ERR(0, 347, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_5); - __Pyx_DECREF(__pyx_t_6); __pyx_t_6 = 0; - __pyx_t_6 = NULL; - if (CYTHON_UNPACK_METHODS && likely(PyMethod_Check(__pyx_t_4))) { - __pyx_t_6 = PyMethod_GET_SELF(__pyx_t_4); - if (likely(__pyx_t_6)) { - PyObject* function = PyMethod_GET_FUNCTION(__pyx_t_4); - __Pyx_INCREF(__pyx_t_6); - __Pyx_INCREF(function); - __Pyx_DECREF_SET(__pyx_t_4, function); - } - } - __pyx_t_2 = (__pyx_t_6) ? __Pyx_PyObject_Call2Args(__pyx_t_4, __pyx_t_6, __pyx_t_5) : __Pyx_PyObject_CallOneArg(__pyx_t_4, __pyx_t_5); - __Pyx_XDECREF(__pyx_t_6); __pyx_t_6 = 0; - __Pyx_DECREF(__pyx_t_5); __pyx_t_5 = 0; - if (unlikely(!__pyx_t_2)) __PYX_ERR(0, 347, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_2); - __Pyx_DECREF(__pyx_t_4); __pyx_t_4 = 0; - __pyx_t_4 = __Pyx_PyObject_GetAttrStr(__pyx_t_2, __pyx_n_s_decode); if (unlikely(!__pyx_t_4)) __PYX_ERR(0, 347, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_4); - __Pyx_DECREF(__pyx_t_2); __pyx_t_2 = 0; - __pyx_t_2 = NULL; - if (CYTHON_UNPACK_METHODS && likely(PyMethod_Check(__pyx_t_4))) { - __pyx_t_2 = PyMethod_GET_SELF(__pyx_t_4); - if (likely(__pyx_t_2)) { - PyObject* function = PyMethod_GET_FUNCTION(__pyx_t_4); - __Pyx_INCREF(__pyx_t_2); - __Pyx_INCREF(function); - __Pyx_DECREF_SET(__pyx_t_4, function); - } - } - __pyx_t_1 = (__pyx_t_2) ? __Pyx_PyObject_CallOneArg(__pyx_t_4, __pyx_t_2) : __Pyx_PyObject_CallNoArg(__pyx_t_4); - __Pyx_XDECREF(__pyx_t_2); __pyx_t_2 = 0; - if (unlikely(!__pyx_t_1)) __PYX_ERR(0, 347, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_1); - __Pyx_DECREF(__pyx_t_4); __pyx_t_4 = 0; - __pyx_t_7 = __Pyx_PyList_Append(__pyx_v_alpn_data, __pyx_t_1); if (unlikely(__pyx_t_7 == ((int)-1))) __PYX_ERR(0, 347, __pyx_L1_error) - __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0; - - /* "pmercury/utils/tls_utils.pyx":348 - * alpn_offset += 2 - * alpn_data.append(bytes.fromhex(data[alpn_offset:alpn_offset+2*tmp_alpn_len]).decode()) - * alpn_offset += tmp_alpn_len*2 # <<<<<<<<<<<<<< - * - * return alpn_data - */ - __pyx_t_1 = PyNumber_Multiply(__pyx_v_tmp_alpn_len, __pyx_int_2); if (unlikely(!__pyx_t_1)) __PYX_ERR(0, 348, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_1); - __pyx_t_4 = PyNumber_InPlaceAdd(__pyx_v_alpn_offset, __pyx_t_1); if (unlikely(!__pyx_t_4)) __PYX_ERR(0, 348, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_4); - __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0; - __Pyx_DECREF_SET(__pyx_v_alpn_offset, __pyx_t_4); - __pyx_t_4 = 0; - } - - /* "pmercury/utils/tls_utils.pyx":350 - * alpn_offset += tmp_alpn_len*2 - * - * return alpn_data # <<<<<<<<<<<<<< - * - * - */ - __Pyx_XDECREF(__pyx_r); - __Pyx_INCREF(__pyx_v_alpn_data); - __pyx_r = __pyx_v_alpn_data; - goto __pyx_L0; - - /* "pmercury/utils/tls_utils.pyx":340 - * - * - * def parse_application_layer_protocol_negotiation(data, length): # <<<<<<<<<<<<<< - * alpn_len = int(data[0:4], 16) - * alpn_offset = 4 - */ - - /* function exit code */ - __pyx_L1_error:; - __Pyx_XDECREF(__pyx_t_1); - __Pyx_XDECREF(__pyx_t_2); - __Pyx_XDECREF(__pyx_t_4); - __Pyx_XDECREF(__pyx_t_5); - __Pyx_XDECREF(__pyx_t_6); - __Pyx_AddTraceback("pmercury.utils.tls_utils.parse_application_layer_protocol_negotiation", __pyx_clineno, __pyx_lineno, __pyx_filename); - __pyx_r = NULL; - __pyx_L0:; - __Pyx_XDECREF(__pyx_v_alpn_len); - __Pyx_XDECREF(__pyx_v_alpn_offset); - __Pyx_XDECREF(__pyx_v_alpn_data); - __Pyx_XDECREF(__pyx_v_tmp_alpn_len); - __Pyx_XGIVEREF(__pyx_r); - __Pyx_RefNannyFinishContext(); - return __pyx_r; -} - -/* "pmercury/utils/tls_utils.pyx":353 - * - * - * def get_tls_params(fp_): # <<<<<<<<<<<<<< - * cs_ = [] - * for i in range(0,len(fp_[1][0]),4): - */ - -/* Python wrapper */ -static PyObject *__pyx_pw_8pmercury_5utils_9tls_utils_41get_tls_params(PyObject *__pyx_self, PyObject *__pyx_v_fp_); /*proto*/ -static PyMethodDef __pyx_mdef_8pmercury_5utils_9tls_utils_41get_tls_params = {"get_tls_params", (PyCFunction)__pyx_pw_8pmercury_5utils_9tls_utils_41get_tls_params, METH_O, 0}; -static PyObject *__pyx_pw_8pmercury_5utils_9tls_utils_41get_tls_params(PyObject *__pyx_self, PyObject *__pyx_v_fp_) { - PyObject *__pyx_r = 0; - __Pyx_RefNannyDeclarations - __Pyx_RefNannySetupContext("get_tls_params (wrapper)", 0); - __pyx_r = __pyx_pf_8pmercury_5utils_9tls_utils_40get_tls_params(__pyx_self, ((PyObject *)__pyx_v_fp_)); - - /* function exit code */ - __Pyx_RefNannyFinishContext(); - return __pyx_r; -} - -static PyObject *__pyx_pf_8pmercury_5utils_9tls_utils_40get_tls_params(CYTHON_UNUSED PyObject *__pyx_self, PyObject *__pyx_v_fp_) { - PyObject *__pyx_v_cs_ = NULL; - Py_ssize_t __pyx_v_i; - PyObject *__pyx_v_cs_4_ = NULL; - PyObject *__pyx_v_ext_ = NULL; - PyObject *__pyx_v_t_ext_ = NULL; - PyObject *__pyx_r = NULL; - __Pyx_RefNannyDeclarations - PyObject *__pyx_t_1 = NULL; - PyObject *__pyx_t_2 = NULL; - Py_ssize_t __pyx_t_3; - Py_ssize_t __pyx_t_4; - Py_ssize_t __pyx_t_5; - int __pyx_t_6; - PyObject *__pyx_t_7 = NULL; - int __pyx_t_8; - PyObject *__pyx_t_9 = NULL; - int __pyx_t_10; - int __pyx_t_11; - PyObject *(*__pyx_t_12)(PyObject *); - __Pyx_RefNannySetupContext("get_tls_params", 0); - - /* "pmercury/utils/tls_utils.pyx":354 - * - * def get_tls_params(fp_): - * cs_ = [] # <<<<<<<<<<<<<< - * for i in range(0,len(fp_[1][0]),4): - * cs_.append(fp_[1][0][i:i+4]) - */ - __pyx_t_1 = PyList_New(0); if (unlikely(!__pyx_t_1)) __PYX_ERR(0, 354, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_1); - __pyx_v_cs_ = ((PyObject*)__pyx_t_1); - __pyx_t_1 = 0; - - /* "pmercury/utils/tls_utils.pyx":355 - * def get_tls_params(fp_): - * cs_ = [] - * for i in range(0,len(fp_[1][0]),4): # <<<<<<<<<<<<<< - * cs_.append(fp_[1][0][i:i+4]) - * cs_4_ = get_ngram(cs_, 4) - */ - __pyx_t_1 = __Pyx_GetItemInt(__pyx_v_fp_, 1, long, 1, __Pyx_PyInt_From_long, 0, 0, 1); if (unlikely(!__pyx_t_1)) __PYX_ERR(0, 355, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_1); - __pyx_t_2 = __Pyx_GetItemInt(__pyx_t_1, 0, long, 1, __Pyx_PyInt_From_long, 0, 0, 1); if (unlikely(!__pyx_t_2)) __PYX_ERR(0, 355, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_2); - __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0; - __pyx_t_3 = PyObject_Length(__pyx_t_2); if (unlikely(__pyx_t_3 == ((Py_ssize_t)-1))) __PYX_ERR(0, 355, __pyx_L1_error) - __Pyx_DECREF(__pyx_t_2); __pyx_t_2 = 0; - __pyx_t_4 = __pyx_t_3; - for (__pyx_t_5 = 0; __pyx_t_5 < __pyx_t_4; __pyx_t_5+=4) { - __pyx_v_i = __pyx_t_5; - - /* "pmercury/utils/tls_utils.pyx":356 - * cs_ = [] - * for i in range(0,len(fp_[1][0]),4): - * cs_.append(fp_[1][0][i:i+4]) # <<<<<<<<<<<<<< - * cs_4_ = get_ngram(cs_, 4) - * - */ - __pyx_t_2 = __Pyx_GetItemInt(__pyx_v_fp_, 1, long, 1, __Pyx_PyInt_From_long, 0, 0, 1); if (unlikely(!__pyx_t_2)) __PYX_ERR(0, 356, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_2); - __pyx_t_1 = __Pyx_GetItemInt(__pyx_t_2, 0, long, 1, __Pyx_PyInt_From_long, 0, 0, 1); if (unlikely(!__pyx_t_1)) __PYX_ERR(0, 356, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_1); - __Pyx_DECREF(__pyx_t_2); __pyx_t_2 = 0; - __pyx_t_2 = __Pyx_PyObject_GetSlice(__pyx_t_1, __pyx_v_i, (__pyx_v_i + 4), NULL, NULL, NULL, 1, 1, 1); if (unlikely(!__pyx_t_2)) __PYX_ERR(0, 356, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_2); - __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0; - __pyx_t_6 = __Pyx_PyList_Append(__pyx_v_cs_, __pyx_t_2); if (unlikely(__pyx_t_6 == ((int)-1))) __PYX_ERR(0, 356, __pyx_L1_error) - __Pyx_DECREF(__pyx_t_2); __pyx_t_2 = 0; - } - - /* "pmercury/utils/tls_utils.pyx":357 - * for i in range(0,len(fp_[1][0]),4): - * cs_.append(fp_[1][0][i:i+4]) - * cs_4_ = get_ngram(cs_, 4) # <<<<<<<<<<<<<< - * - * ext_ = [] - */ - __Pyx_GetModuleGlobalName(__pyx_t_1, __pyx_n_s_get_ngram); if (unlikely(!__pyx_t_1)) __PYX_ERR(0, 357, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_1); - __pyx_t_7 = NULL; - __pyx_t_8 = 0; - if (CYTHON_UNPACK_METHODS && unlikely(PyMethod_Check(__pyx_t_1))) { - __pyx_t_7 = PyMethod_GET_SELF(__pyx_t_1); - if (likely(__pyx_t_7)) { - PyObject* function = PyMethod_GET_FUNCTION(__pyx_t_1); - __Pyx_INCREF(__pyx_t_7); - __Pyx_INCREF(function); - __Pyx_DECREF_SET(__pyx_t_1, function); - __pyx_t_8 = 1; - } - } - #if CYTHON_FAST_PYCALL - if (PyFunction_Check(__pyx_t_1)) { - PyObject *__pyx_temp[3] = {__pyx_t_7, __pyx_v_cs_, __pyx_int_4}; - __pyx_t_2 = __Pyx_PyFunction_FastCall(__pyx_t_1, __pyx_temp+1-__pyx_t_8, 2+__pyx_t_8); if (unlikely(!__pyx_t_2)) __PYX_ERR(0, 357, __pyx_L1_error) - __Pyx_XDECREF(__pyx_t_7); __pyx_t_7 = 0; - __Pyx_GOTREF(__pyx_t_2); - } else - #endif - #if CYTHON_FAST_PYCCALL - if (__Pyx_PyFastCFunction_Check(__pyx_t_1)) { - PyObject *__pyx_temp[3] = {__pyx_t_7, __pyx_v_cs_, __pyx_int_4}; - __pyx_t_2 = __Pyx_PyCFunction_FastCall(__pyx_t_1, __pyx_temp+1-__pyx_t_8, 2+__pyx_t_8); if (unlikely(!__pyx_t_2)) __PYX_ERR(0, 357, __pyx_L1_error) - __Pyx_XDECREF(__pyx_t_7); __pyx_t_7 = 0; - __Pyx_GOTREF(__pyx_t_2); - } else - #endif - { - __pyx_t_9 = PyTuple_New(2+__pyx_t_8); if (unlikely(!__pyx_t_9)) __PYX_ERR(0, 357, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_9); - if (__pyx_t_7) { - __Pyx_GIVEREF(__pyx_t_7); PyTuple_SET_ITEM(__pyx_t_9, 0, __pyx_t_7); __pyx_t_7 = NULL; - } - __Pyx_INCREF(__pyx_v_cs_); - __Pyx_GIVEREF(__pyx_v_cs_); - PyTuple_SET_ITEM(__pyx_t_9, 0+__pyx_t_8, __pyx_v_cs_); - __Pyx_INCREF(__pyx_int_4); - __Pyx_GIVEREF(__pyx_int_4); - PyTuple_SET_ITEM(__pyx_t_9, 1+__pyx_t_8, __pyx_int_4); - __pyx_t_2 = __Pyx_PyObject_Call(__pyx_t_1, __pyx_t_9, NULL); if (unlikely(!__pyx_t_2)) __PYX_ERR(0, 357, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_2); - __Pyx_DECREF(__pyx_t_9); __pyx_t_9 = 0; - } - __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0; - __pyx_v_cs_4_ = __pyx_t_2; - __pyx_t_2 = 0; - - /* "pmercury/utils/tls_utils.pyx":359 - * cs_4_ = get_ngram(cs_, 4) - * - * ext_ = [] # <<<<<<<<<<<<<< - * if len(fp_) > 2 and fp_[2] != ['']: - * for t_ext_ in fp_[2]: - */ - __pyx_t_2 = PyList_New(0); if (unlikely(!__pyx_t_2)) __PYX_ERR(0, 359, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_2); - __pyx_v_ext_ = ((PyObject*)__pyx_t_2); - __pyx_t_2 = 0; - - /* "pmercury/utils/tls_utils.pyx":360 - * - * ext_ = [] - * if len(fp_) > 2 and fp_[2] != ['']: # <<<<<<<<<<<<<< - * for t_ext_ in fp_[2]: - * ext_.append('ext_' + t_ext_[0][0:4] + '::' + t_ext_[0][4:]) - */ - __pyx_t_3 = PyObject_Length(__pyx_v_fp_); if (unlikely(__pyx_t_3 == ((Py_ssize_t)-1))) __PYX_ERR(0, 360, __pyx_L1_error) - __pyx_t_11 = ((__pyx_t_3 > 2) != 0); - if (__pyx_t_11) { - } else { - __pyx_t_10 = __pyx_t_11; - goto __pyx_L6_bool_binop_done; - } - __pyx_t_2 = __Pyx_GetItemInt(__pyx_v_fp_, 2, long, 1, __Pyx_PyInt_From_long, 0, 0, 1); if (unlikely(!__pyx_t_2)) __PYX_ERR(0, 360, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_2); - __pyx_t_1 = PyList_New(1); if (unlikely(!__pyx_t_1)) __PYX_ERR(0, 360, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_1); - __Pyx_INCREF(__pyx_kp_u__19); - __Pyx_GIVEREF(__pyx_kp_u__19); - PyList_SET_ITEM(__pyx_t_1, 0, __pyx_kp_u__19); - __pyx_t_9 = PyObject_RichCompare(__pyx_t_2, __pyx_t_1, Py_NE); __Pyx_XGOTREF(__pyx_t_9); if (unlikely(!__pyx_t_9)) __PYX_ERR(0, 360, __pyx_L1_error) - __Pyx_DECREF(__pyx_t_2); __pyx_t_2 = 0; - __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0; - __pyx_t_11 = __Pyx_PyObject_IsTrue(__pyx_t_9); if (unlikely(__pyx_t_11 < 0)) __PYX_ERR(0, 360, __pyx_L1_error) - __Pyx_DECREF(__pyx_t_9); __pyx_t_9 = 0; - __pyx_t_10 = __pyx_t_11; - __pyx_L6_bool_binop_done:; - if (__pyx_t_10) { - - /* "pmercury/utils/tls_utils.pyx":361 - * ext_ = [] - * if len(fp_) > 2 and fp_[2] != ['']: - * for t_ext_ in fp_[2]: # <<<<<<<<<<<<<< - * ext_.append('ext_' + t_ext_[0][0:4] + '::' + t_ext_[0][4:]) - * - */ - __pyx_t_9 = __Pyx_GetItemInt(__pyx_v_fp_, 2, long, 1, __Pyx_PyInt_From_long, 0, 0, 1); if (unlikely(!__pyx_t_9)) __PYX_ERR(0, 361, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_9); - if (likely(PyList_CheckExact(__pyx_t_9)) || PyTuple_CheckExact(__pyx_t_9)) { - __pyx_t_1 = __pyx_t_9; __Pyx_INCREF(__pyx_t_1); __pyx_t_3 = 0; - __pyx_t_12 = NULL; - } else { - __pyx_t_3 = -1; __pyx_t_1 = PyObject_GetIter(__pyx_t_9); if (unlikely(!__pyx_t_1)) __PYX_ERR(0, 361, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_1); - __pyx_t_12 = Py_TYPE(__pyx_t_1)->tp_iternext; if (unlikely(!__pyx_t_12)) __PYX_ERR(0, 361, __pyx_L1_error) - } - __Pyx_DECREF(__pyx_t_9); __pyx_t_9 = 0; - for (;;) { - if (likely(!__pyx_t_12)) { - if (likely(PyList_CheckExact(__pyx_t_1))) { - if (__pyx_t_3 >= PyList_GET_SIZE(__pyx_t_1)) break; - #if CYTHON_ASSUME_SAFE_MACROS && !CYTHON_AVOID_BORROWED_REFS - __pyx_t_9 = PyList_GET_ITEM(__pyx_t_1, __pyx_t_3); __Pyx_INCREF(__pyx_t_9); __pyx_t_3++; if (unlikely(0 < 0)) __PYX_ERR(0, 361, __pyx_L1_error) - #else - __pyx_t_9 = PySequence_ITEM(__pyx_t_1, __pyx_t_3); __pyx_t_3++; if (unlikely(!__pyx_t_9)) __PYX_ERR(0, 361, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_9); - #endif - } else { - if (__pyx_t_3 >= PyTuple_GET_SIZE(__pyx_t_1)) break; - #if CYTHON_ASSUME_SAFE_MACROS && !CYTHON_AVOID_BORROWED_REFS - __pyx_t_9 = PyTuple_GET_ITEM(__pyx_t_1, __pyx_t_3); __Pyx_INCREF(__pyx_t_9); __pyx_t_3++; if (unlikely(0 < 0)) __PYX_ERR(0, 361, __pyx_L1_error) - #else - __pyx_t_9 = PySequence_ITEM(__pyx_t_1, __pyx_t_3); __pyx_t_3++; if (unlikely(!__pyx_t_9)) __PYX_ERR(0, 361, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_9); - #endif - } - } else { - __pyx_t_9 = __pyx_t_12(__pyx_t_1); - if (unlikely(!__pyx_t_9)) { - PyObject* exc_type = PyErr_Occurred(); - if (exc_type) { - if (likely(__Pyx_PyErr_GivenExceptionMatches(exc_type, PyExc_StopIteration))) PyErr_Clear(); - else __PYX_ERR(0, 361, __pyx_L1_error) - } - break; - } - __Pyx_GOTREF(__pyx_t_9); - } - __Pyx_XDECREF_SET(__pyx_v_t_ext_, __pyx_t_9); - __pyx_t_9 = 0; - - /* "pmercury/utils/tls_utils.pyx":362 - * if len(fp_) > 2 and fp_[2] != ['']: - * for t_ext_ in fp_[2]: - * ext_.append('ext_' + t_ext_[0][0:4] + '::' + t_ext_[0][4:]) # <<<<<<<<<<<<<< - * - * return [cs_4_, ext_] - */ - __pyx_t_9 = __Pyx_GetItemInt(__pyx_v_t_ext_, 0, long, 1, __Pyx_PyInt_From_long, 0, 0, 1); if (unlikely(!__pyx_t_9)) __PYX_ERR(0, 362, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_9); - __pyx_t_2 = __Pyx_PyObject_GetSlice(__pyx_t_9, 0, 4, NULL, NULL, &__pyx_slice__18, 1, 1, 1); if (unlikely(!__pyx_t_2)) __PYX_ERR(0, 362, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_2); - __Pyx_DECREF(__pyx_t_9); __pyx_t_9 = 0; - __pyx_t_9 = PyNumber_Add(__pyx_n_u_ext, __pyx_t_2); if (unlikely(!__pyx_t_9)) __PYX_ERR(0, 362, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_9); - __Pyx_DECREF(__pyx_t_2); __pyx_t_2 = 0; - __pyx_t_2 = PyNumber_Add(__pyx_t_9, __pyx_kp_u__26); if (unlikely(!__pyx_t_2)) __PYX_ERR(0, 362, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_2); - __Pyx_DECREF(__pyx_t_9); __pyx_t_9 = 0; - __pyx_t_9 = __Pyx_GetItemInt(__pyx_v_t_ext_, 0, long, 1, __Pyx_PyInt_From_long, 0, 0, 1); if (unlikely(!__pyx_t_9)) __PYX_ERR(0, 362, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_9); - __pyx_t_7 = __Pyx_PyObject_GetSlice(__pyx_t_9, 4, 0, NULL, NULL, &__pyx_slice__20, 1, 0, 1); if (unlikely(!__pyx_t_7)) __PYX_ERR(0, 362, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_7); - __Pyx_DECREF(__pyx_t_9); __pyx_t_9 = 0; - __pyx_t_9 = PyNumber_Add(__pyx_t_2, __pyx_t_7); if (unlikely(!__pyx_t_9)) __PYX_ERR(0, 362, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_9); - __Pyx_DECREF(__pyx_t_2); __pyx_t_2 = 0; - __Pyx_DECREF(__pyx_t_7); __pyx_t_7 = 0; - __pyx_t_6 = __Pyx_PyList_Append(__pyx_v_ext_, __pyx_t_9); if (unlikely(__pyx_t_6 == ((int)-1))) __PYX_ERR(0, 362, __pyx_L1_error) - __Pyx_DECREF(__pyx_t_9); __pyx_t_9 = 0; - - /* "pmercury/utils/tls_utils.pyx":361 - * ext_ = [] - * if len(fp_) > 2 and fp_[2] != ['']: - * for t_ext_ in fp_[2]: # <<<<<<<<<<<<<< - * ext_.append('ext_' + t_ext_[0][0:4] + '::' + t_ext_[0][4:]) - * - */ - } - __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0; - - /* "pmercury/utils/tls_utils.pyx":360 - * - * ext_ = [] - * if len(fp_) > 2 and fp_[2] != ['']: # <<<<<<<<<<<<<< - * for t_ext_ in fp_[2]: - * ext_.append('ext_' + t_ext_[0][0:4] + '::' + t_ext_[0][4:]) - */ - } - - /* "pmercury/utils/tls_utils.pyx":364 - * ext_.append('ext_' + t_ext_[0][0:4] + '::' + t_ext_[0][4:]) - * - * return [cs_4_, ext_] # <<<<<<<<<<<<<< - * - * - */ - __Pyx_XDECREF(__pyx_r); - __pyx_t_1 = PyList_New(2); if (unlikely(!__pyx_t_1)) __PYX_ERR(0, 364, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_1); - __Pyx_INCREF(__pyx_v_cs_4_); - __Pyx_GIVEREF(__pyx_v_cs_4_); - PyList_SET_ITEM(__pyx_t_1, 0, __pyx_v_cs_4_); - __Pyx_INCREF(__pyx_v_ext_); - __Pyx_GIVEREF(__pyx_v_ext_); - PyList_SET_ITEM(__pyx_t_1, 1, __pyx_v_ext_); - __pyx_r = __pyx_t_1; - __pyx_t_1 = 0; - goto __pyx_L0; - - /* "pmercury/utils/tls_utils.pyx":353 - * - * - * def get_tls_params(fp_): # <<<<<<<<<<<<<< - * cs_ = [] - * for i in range(0,len(fp_[1][0]),4): - */ - - /* function exit code */ - __pyx_L1_error:; - __Pyx_XDECREF(__pyx_t_1); - __Pyx_XDECREF(__pyx_t_2); - __Pyx_XDECREF(__pyx_t_7); - __Pyx_XDECREF(__pyx_t_9); - __Pyx_AddTraceback("pmercury.utils.tls_utils.get_tls_params", __pyx_clineno, __pyx_lineno, __pyx_filename); - __pyx_r = NULL; - __pyx_L0:; - __Pyx_XDECREF(__pyx_v_cs_); - __Pyx_XDECREF(__pyx_v_cs_4_); - __Pyx_XDECREF(__pyx_v_ext_); - __Pyx_XDECREF(__pyx_v_t_ext_); - __Pyx_XGIVEREF(__pyx_r); - __Pyx_RefNannyFinishContext(); - return __pyx_r; -} - -/* "pmercury/utils/tls_utils.pyx":367 - * - * - * def get_sequence(fp_): # <<<<<<<<<<<<<< - * seq = [] - * cs_ = fp_[1][0] - */ - -/* Python wrapper */ -static PyObject *__pyx_pw_8pmercury_5utils_9tls_utils_43get_sequence(PyObject *__pyx_self, PyObject *__pyx_v_fp_); /*proto*/ -static PyMethodDef __pyx_mdef_8pmercury_5utils_9tls_utils_43get_sequence = {"get_sequence", (PyCFunction)__pyx_pw_8pmercury_5utils_9tls_utils_43get_sequence, METH_O, 0}; -static PyObject *__pyx_pw_8pmercury_5utils_9tls_utils_43get_sequence(PyObject *__pyx_self, PyObject *__pyx_v_fp_) { - PyObject *__pyx_r = 0; - __Pyx_RefNannyDeclarations - __Pyx_RefNannySetupContext("get_sequence (wrapper)", 0); - __pyx_r = __pyx_pf_8pmercury_5utils_9tls_utils_42get_sequence(__pyx_self, ((PyObject *)__pyx_v_fp_)); - - /* function exit code */ - __Pyx_RefNannyFinishContext(); - return __pyx_r; -} - -static PyObject *__pyx_pf_8pmercury_5utils_9tls_utils_42get_sequence(CYTHON_UNUSED PyObject *__pyx_self, PyObject *__pyx_v_fp_) { - PyObject *__pyx_v_seq = NULL; - PyObject *__pyx_v_cs_ = NULL; - Py_ssize_t __pyx_v_i; - CYTHON_UNUSED PyObject *__pyx_v_ext_ = NULL; - PyObject *__pyx_v_t_ext_ = NULL; - PyObject *__pyx_r = NULL; - __Pyx_RefNannyDeclarations - PyObject *__pyx_t_1 = NULL; - PyObject *__pyx_t_2 = NULL; - Py_ssize_t __pyx_t_3; - Py_ssize_t __pyx_t_4; - Py_ssize_t __pyx_t_5; - int __pyx_t_6; - int __pyx_t_7; - int __pyx_t_8; - PyObject *__pyx_t_9 = NULL; - PyObject *(*__pyx_t_10)(PyObject *); - PyObject *__pyx_t_11 = NULL; - __Pyx_RefNannySetupContext("get_sequence", 0); - - /* "pmercury/utils/tls_utils.pyx":368 - * - * def get_sequence(fp_): - * seq = [] # <<<<<<<<<<<<<< - * cs_ = fp_[1][0] - * for i in range(0,len(cs_),4): - */ - __pyx_t_1 = PyList_New(0); if (unlikely(!__pyx_t_1)) __PYX_ERR(0, 368, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_1); - __pyx_v_seq = ((PyObject*)__pyx_t_1); - __pyx_t_1 = 0; - - /* "pmercury/utils/tls_utils.pyx":369 - * def get_sequence(fp_): - * seq = [] - * cs_ = fp_[1][0] # <<<<<<<<<<<<<< - * for i in range(0,len(cs_),4): - * seq.append(cs_[i:i+4]) - */ - __pyx_t_1 = __Pyx_GetItemInt(__pyx_v_fp_, 1, long, 1, __Pyx_PyInt_From_long, 0, 0, 1); if (unlikely(!__pyx_t_1)) __PYX_ERR(0, 369, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_1); - __pyx_t_2 = __Pyx_GetItemInt(__pyx_t_1, 0, long, 1, __Pyx_PyInt_From_long, 0, 0, 1); if (unlikely(!__pyx_t_2)) __PYX_ERR(0, 369, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_2); - __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0; - __pyx_v_cs_ = __pyx_t_2; - __pyx_t_2 = 0; - - /* "pmercury/utils/tls_utils.pyx":370 - * seq = [] - * cs_ = fp_[1][0] - * for i in range(0,len(cs_),4): # <<<<<<<<<<<<<< - * seq.append(cs_[i:i+4]) - * ext_ = [] - */ - __pyx_t_3 = PyObject_Length(__pyx_v_cs_); if (unlikely(__pyx_t_3 == ((Py_ssize_t)-1))) __PYX_ERR(0, 370, __pyx_L1_error) - __pyx_t_4 = __pyx_t_3; - for (__pyx_t_5 = 0; __pyx_t_5 < __pyx_t_4; __pyx_t_5+=4) { - __pyx_v_i = __pyx_t_5; - - /* "pmercury/utils/tls_utils.pyx":371 - * cs_ = fp_[1][0] - * for i in range(0,len(cs_),4): - * seq.append(cs_[i:i+4]) # <<<<<<<<<<<<<< - * ext_ = [] - * if len(fp_) > 2 and fp_[2] != ['']: - */ - __pyx_t_2 = __Pyx_PyObject_GetSlice(__pyx_v_cs_, __pyx_v_i, (__pyx_v_i + 4), NULL, NULL, NULL, 1, 1, 1); if (unlikely(!__pyx_t_2)) __PYX_ERR(0, 371, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_2); - __pyx_t_6 = __Pyx_PyList_Append(__pyx_v_seq, __pyx_t_2); if (unlikely(__pyx_t_6 == ((int)-1))) __PYX_ERR(0, 371, __pyx_L1_error) - __Pyx_DECREF(__pyx_t_2); __pyx_t_2 = 0; - } - - /* "pmercury/utils/tls_utils.pyx":372 - * for i in range(0,len(cs_),4): - * seq.append(cs_[i:i+4]) - * ext_ = [] # <<<<<<<<<<<<<< - * if len(fp_) > 2 and fp_[2] != ['']: - * for t_ext_ in fp_[2]: - */ - __pyx_t_2 = PyList_New(0); if (unlikely(!__pyx_t_2)) __PYX_ERR(0, 372, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_2); - __pyx_v_ext_ = ((PyObject*)__pyx_t_2); - __pyx_t_2 = 0; - - /* "pmercury/utils/tls_utils.pyx":373 - * seq.append(cs_[i:i+4]) - * ext_ = [] - * if len(fp_) > 2 and fp_[2] != ['']: # <<<<<<<<<<<<<< - * for t_ext_ in fp_[2]: - * seq.append('ext_' + t_ext_[0][0:4] + '::' + t_ext_[0][4:]) - */ - __pyx_t_3 = PyObject_Length(__pyx_v_fp_); if (unlikely(__pyx_t_3 == ((Py_ssize_t)-1))) __PYX_ERR(0, 373, __pyx_L1_error) - __pyx_t_8 = ((__pyx_t_3 > 2) != 0); - if (__pyx_t_8) { - } else { - __pyx_t_7 = __pyx_t_8; - goto __pyx_L6_bool_binop_done; - } - __pyx_t_2 = __Pyx_GetItemInt(__pyx_v_fp_, 2, long, 1, __Pyx_PyInt_From_long, 0, 0, 1); if (unlikely(!__pyx_t_2)) __PYX_ERR(0, 373, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_2); - __pyx_t_1 = PyList_New(1); if (unlikely(!__pyx_t_1)) __PYX_ERR(0, 373, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_1); - __Pyx_INCREF(__pyx_kp_u__19); - __Pyx_GIVEREF(__pyx_kp_u__19); - PyList_SET_ITEM(__pyx_t_1, 0, __pyx_kp_u__19); - __pyx_t_9 = PyObject_RichCompare(__pyx_t_2, __pyx_t_1, Py_NE); __Pyx_XGOTREF(__pyx_t_9); if (unlikely(!__pyx_t_9)) __PYX_ERR(0, 373, __pyx_L1_error) - __Pyx_DECREF(__pyx_t_2); __pyx_t_2 = 0; - __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0; - __pyx_t_8 = __Pyx_PyObject_IsTrue(__pyx_t_9); if (unlikely(__pyx_t_8 < 0)) __PYX_ERR(0, 373, __pyx_L1_error) - __Pyx_DECREF(__pyx_t_9); __pyx_t_9 = 0; - __pyx_t_7 = __pyx_t_8; - __pyx_L6_bool_binop_done:; - if (__pyx_t_7) { - - /* "pmercury/utils/tls_utils.pyx":374 - * ext_ = [] - * if len(fp_) > 2 and fp_[2] != ['']: - * for t_ext_ in fp_[2]: # <<<<<<<<<<<<<< - * seq.append('ext_' + t_ext_[0][0:4] + '::' + t_ext_[0][4:]) - * return seq - */ - __pyx_t_9 = __Pyx_GetItemInt(__pyx_v_fp_, 2, long, 1, __Pyx_PyInt_From_long, 0, 0, 1); if (unlikely(!__pyx_t_9)) __PYX_ERR(0, 374, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_9); - if (likely(PyList_CheckExact(__pyx_t_9)) || PyTuple_CheckExact(__pyx_t_9)) { - __pyx_t_1 = __pyx_t_9; __Pyx_INCREF(__pyx_t_1); __pyx_t_3 = 0; - __pyx_t_10 = NULL; - } else { - __pyx_t_3 = -1; __pyx_t_1 = PyObject_GetIter(__pyx_t_9); if (unlikely(!__pyx_t_1)) __PYX_ERR(0, 374, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_1); - __pyx_t_10 = Py_TYPE(__pyx_t_1)->tp_iternext; if (unlikely(!__pyx_t_10)) __PYX_ERR(0, 374, __pyx_L1_error) - } - __Pyx_DECREF(__pyx_t_9); __pyx_t_9 = 0; - for (;;) { - if (likely(!__pyx_t_10)) { - if (likely(PyList_CheckExact(__pyx_t_1))) { - if (__pyx_t_3 >= PyList_GET_SIZE(__pyx_t_1)) break; - #if CYTHON_ASSUME_SAFE_MACROS && !CYTHON_AVOID_BORROWED_REFS - __pyx_t_9 = PyList_GET_ITEM(__pyx_t_1, __pyx_t_3); __Pyx_INCREF(__pyx_t_9); __pyx_t_3++; if (unlikely(0 < 0)) __PYX_ERR(0, 374, __pyx_L1_error) - #else - __pyx_t_9 = PySequence_ITEM(__pyx_t_1, __pyx_t_3); __pyx_t_3++; if (unlikely(!__pyx_t_9)) __PYX_ERR(0, 374, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_9); - #endif - } else { - if (__pyx_t_3 >= PyTuple_GET_SIZE(__pyx_t_1)) break; - #if CYTHON_ASSUME_SAFE_MACROS && !CYTHON_AVOID_BORROWED_REFS - __pyx_t_9 = PyTuple_GET_ITEM(__pyx_t_1, __pyx_t_3); __Pyx_INCREF(__pyx_t_9); __pyx_t_3++; if (unlikely(0 < 0)) __PYX_ERR(0, 374, __pyx_L1_error) - #else - __pyx_t_9 = PySequence_ITEM(__pyx_t_1, __pyx_t_3); __pyx_t_3++; if (unlikely(!__pyx_t_9)) __PYX_ERR(0, 374, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_9); - #endif - } - } else { - __pyx_t_9 = __pyx_t_10(__pyx_t_1); - if (unlikely(!__pyx_t_9)) { - PyObject* exc_type = PyErr_Occurred(); - if (exc_type) { - if (likely(__Pyx_PyErr_GivenExceptionMatches(exc_type, PyExc_StopIteration))) PyErr_Clear(); - else __PYX_ERR(0, 374, __pyx_L1_error) - } - break; - } - __Pyx_GOTREF(__pyx_t_9); - } - __Pyx_XDECREF_SET(__pyx_v_t_ext_, __pyx_t_9); - __pyx_t_9 = 0; - - /* "pmercury/utils/tls_utils.pyx":375 - * if len(fp_) > 2 and fp_[2] != ['']: - * for t_ext_ in fp_[2]: - * seq.append('ext_' + t_ext_[0][0:4] + '::' + t_ext_[0][4:]) # <<<<<<<<<<<<<< - * return seq - * - */ - __pyx_t_9 = __Pyx_GetItemInt(__pyx_v_t_ext_, 0, long, 1, __Pyx_PyInt_From_long, 0, 0, 1); if (unlikely(!__pyx_t_9)) __PYX_ERR(0, 375, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_9); - __pyx_t_2 = __Pyx_PyObject_GetSlice(__pyx_t_9, 0, 4, NULL, NULL, &__pyx_slice__18, 1, 1, 1); if (unlikely(!__pyx_t_2)) __PYX_ERR(0, 375, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_2); - __Pyx_DECREF(__pyx_t_9); __pyx_t_9 = 0; - __pyx_t_9 = PyNumber_Add(__pyx_n_u_ext, __pyx_t_2); if (unlikely(!__pyx_t_9)) __PYX_ERR(0, 375, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_9); - __Pyx_DECREF(__pyx_t_2); __pyx_t_2 = 0; - __pyx_t_2 = PyNumber_Add(__pyx_t_9, __pyx_kp_u__26); if (unlikely(!__pyx_t_2)) __PYX_ERR(0, 375, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_2); - __Pyx_DECREF(__pyx_t_9); __pyx_t_9 = 0; - __pyx_t_9 = __Pyx_GetItemInt(__pyx_v_t_ext_, 0, long, 1, __Pyx_PyInt_From_long, 0, 0, 1); if (unlikely(!__pyx_t_9)) __PYX_ERR(0, 375, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_9); - __pyx_t_11 = __Pyx_PyObject_GetSlice(__pyx_t_9, 4, 0, NULL, NULL, &__pyx_slice__20, 1, 0, 1); if (unlikely(!__pyx_t_11)) __PYX_ERR(0, 375, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_11); - __Pyx_DECREF(__pyx_t_9); __pyx_t_9 = 0; - __pyx_t_9 = PyNumber_Add(__pyx_t_2, __pyx_t_11); if (unlikely(!__pyx_t_9)) __PYX_ERR(0, 375, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_9); - __Pyx_DECREF(__pyx_t_2); __pyx_t_2 = 0; - __Pyx_DECREF(__pyx_t_11); __pyx_t_11 = 0; - __pyx_t_6 = __Pyx_PyList_Append(__pyx_v_seq, __pyx_t_9); if (unlikely(__pyx_t_6 == ((int)-1))) __PYX_ERR(0, 375, __pyx_L1_error) - __Pyx_DECREF(__pyx_t_9); __pyx_t_9 = 0; - - /* "pmercury/utils/tls_utils.pyx":374 - * ext_ = [] - * if len(fp_) > 2 and fp_[2] != ['']: - * for t_ext_ in fp_[2]: # <<<<<<<<<<<<<< - * seq.append('ext_' + t_ext_[0][0:4] + '::' + t_ext_[0][4:]) - * return seq - */ - } - __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0; - - /* "pmercury/utils/tls_utils.pyx":373 - * seq.append(cs_[i:i+4]) - * ext_ = [] - * if len(fp_) > 2 and fp_[2] != ['']: # <<<<<<<<<<<<<< - * for t_ext_ in fp_[2]: - * seq.append('ext_' + t_ext_[0][0:4] + '::' + t_ext_[0][4:]) - */ - } - - /* "pmercury/utils/tls_utils.pyx":376 - * for t_ext_ in fp_[2]: - * seq.append('ext_' + t_ext_[0][0:4] + '::' + t_ext_[0][4:]) - * return seq # <<<<<<<<<<<<<< - * - * - */ - __Pyx_XDECREF(__pyx_r); - __Pyx_INCREF(__pyx_v_seq); - __pyx_r = __pyx_v_seq; - goto __pyx_L0; - - /* "pmercury/utils/tls_utils.pyx":367 - * - * - * def get_sequence(fp_): # <<<<<<<<<<<<<< - * seq = [] - * cs_ = fp_[1][0] - */ - - /* function exit code */ - __pyx_L1_error:; - __Pyx_XDECREF(__pyx_t_1); - __Pyx_XDECREF(__pyx_t_2); - __Pyx_XDECREF(__pyx_t_9); - __Pyx_XDECREF(__pyx_t_11); - __Pyx_AddTraceback("pmercury.utils.tls_utils.get_sequence", __pyx_clineno, __pyx_lineno, __pyx_filename); - __pyx_r = NULL; - __pyx_L0:; - __Pyx_XDECREF(__pyx_v_seq); - __Pyx_XDECREF(__pyx_v_cs_); - __Pyx_XDECREF(__pyx_v_ext_); - __Pyx_XDECREF(__pyx_v_t_ext_); - __Pyx_XGIVEREF(__pyx_r); - __Pyx_RefNannyFinishContext(); - return __pyx_r; -} - -/* "pmercury/utils/tls_utils.pyx":379 - * - * - * def get_ngram(l, ngram): # <<<<<<<<<<<<<< - * l_ = [] - * for i in range(0,len(l)-ngram): - */ - -/* Python wrapper */ -static PyObject *__pyx_pw_8pmercury_5utils_9tls_utils_45get_ngram(PyObject *__pyx_self, PyObject *__pyx_args, PyObject *__pyx_kwds); /*proto*/ -static PyMethodDef __pyx_mdef_8pmercury_5utils_9tls_utils_45get_ngram = {"get_ngram", (PyCFunction)(void*)(PyCFunctionWithKeywords)__pyx_pw_8pmercury_5utils_9tls_utils_45get_ngram, METH_VARARGS|METH_KEYWORDS, 0}; -static PyObject *__pyx_pw_8pmercury_5utils_9tls_utils_45get_ngram(PyObject *__pyx_self, PyObject *__pyx_args, PyObject *__pyx_kwds) { - PyObject *__pyx_v_l = 0; - PyObject *__pyx_v_ngram = 0; - PyObject *__pyx_r = 0; - __Pyx_RefNannyDeclarations - __Pyx_RefNannySetupContext("get_ngram (wrapper)", 0); - { - static PyObject **__pyx_pyargnames[] = {&__pyx_n_s_l,&__pyx_n_s_ngram,0}; - PyObject* values[2] = {0,0}; - if (unlikely(__pyx_kwds)) { - Py_ssize_t kw_args; - const Py_ssize_t pos_args = PyTuple_GET_SIZE(__pyx_args); - switch (pos_args) { - case 2: values[1] = PyTuple_GET_ITEM(__pyx_args, 1); - CYTHON_FALLTHROUGH; - case 1: values[0] = PyTuple_GET_ITEM(__pyx_args, 0); - CYTHON_FALLTHROUGH; - case 0: break; - default: goto __pyx_L5_argtuple_error; - } - kw_args = PyDict_Size(__pyx_kwds); - switch (pos_args) { - case 0: - if (likely((values[0] = __Pyx_PyDict_GetItemStr(__pyx_kwds, __pyx_n_s_l)) != 0)) kw_args--; - else goto __pyx_L5_argtuple_error; - CYTHON_FALLTHROUGH; - case 1: - if (likely((values[1] = __Pyx_PyDict_GetItemStr(__pyx_kwds, __pyx_n_s_ngram)) != 0)) kw_args--; - else { - __Pyx_RaiseArgtupleInvalid("get_ngram", 1, 2, 2, 1); __PYX_ERR(0, 379, __pyx_L3_error) - } - } - if (unlikely(kw_args > 0)) { - if (unlikely(__Pyx_ParseOptionalKeywords(__pyx_kwds, __pyx_pyargnames, 0, values, pos_args, "get_ngram") < 0)) __PYX_ERR(0, 379, __pyx_L3_error) - } - } else if (PyTuple_GET_SIZE(__pyx_args) != 2) { - goto __pyx_L5_argtuple_error; - } else { - values[0] = PyTuple_GET_ITEM(__pyx_args, 0); - values[1] = PyTuple_GET_ITEM(__pyx_args, 1); - } - __pyx_v_l = values[0]; - __pyx_v_ngram = values[1]; - } - goto __pyx_L4_argument_unpacking_done; - __pyx_L5_argtuple_error:; - __Pyx_RaiseArgtupleInvalid("get_ngram", 1, 2, 2, PyTuple_GET_SIZE(__pyx_args)); __PYX_ERR(0, 379, __pyx_L3_error) - __pyx_L3_error:; - __Pyx_AddTraceback("pmercury.utils.tls_utils.get_ngram", __pyx_clineno, __pyx_lineno, __pyx_filename); - __Pyx_RefNannyFinishContext(); - return NULL; - __pyx_L4_argument_unpacking_done:; - __pyx_r = __pyx_pf_8pmercury_5utils_9tls_utils_44get_ngram(__pyx_self, __pyx_v_l, __pyx_v_ngram); - - /* function exit code */ - __Pyx_RefNannyFinishContext(); - return __pyx_r; -} - -static PyObject *__pyx_pf_8pmercury_5utils_9tls_utils_44get_ngram(CYTHON_UNUSED PyObject *__pyx_self, PyObject *__pyx_v_l, PyObject *__pyx_v_ngram) { - PyObject *__pyx_v_l_ = NULL; - PyObject *__pyx_v_i = NULL; - PyObject *__pyx_v_s_ = NULL; - PyObject *__pyx_v_j = NULL; - PyObject *__pyx_r = NULL; - __Pyx_RefNannyDeclarations - PyObject *__pyx_t_1 = NULL; - Py_ssize_t __pyx_t_2; - PyObject *__pyx_t_3 = NULL; - PyObject *(*__pyx_t_4)(PyObject *); - PyObject *__pyx_t_5 = NULL; - Py_ssize_t __pyx_t_6; - PyObject *(*__pyx_t_7)(PyObject *); - PyObject *__pyx_t_8 = NULL; - int __pyx_t_9; - int __pyx_t_10; - __Pyx_RefNannySetupContext("get_ngram", 0); - - /* "pmercury/utils/tls_utils.pyx":380 - * - * def get_ngram(l, ngram): - * l_ = [] # <<<<<<<<<<<<<< - * for i in range(0,len(l)-ngram): - * s_ = '' - */ - __pyx_t_1 = PyList_New(0); if (unlikely(!__pyx_t_1)) __PYX_ERR(0, 380, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_1); - __pyx_v_l_ = __pyx_t_1; - __pyx_t_1 = 0; - - /* "pmercury/utils/tls_utils.pyx":381 - * def get_ngram(l, ngram): - * l_ = [] - * for i in range(0,len(l)-ngram): # <<<<<<<<<<<<<< - * s_ = '' - * for j in range(ngram): - */ - __pyx_t_2 = PyObject_Length(__pyx_v_l); if (unlikely(__pyx_t_2 == ((Py_ssize_t)-1))) __PYX_ERR(0, 381, __pyx_L1_error) - __pyx_t_1 = PyInt_FromSsize_t(__pyx_t_2); if (unlikely(!__pyx_t_1)) __PYX_ERR(0, 381, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_1); - __pyx_t_3 = PyNumber_Subtract(__pyx_t_1, __pyx_v_ngram); if (unlikely(!__pyx_t_3)) __PYX_ERR(0, 381, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_3); - __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0; - __pyx_t_1 = PyTuple_New(2); if (unlikely(!__pyx_t_1)) __PYX_ERR(0, 381, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_1); - __Pyx_INCREF(__pyx_int_0); - __Pyx_GIVEREF(__pyx_int_0); - PyTuple_SET_ITEM(__pyx_t_1, 0, __pyx_int_0); - __Pyx_GIVEREF(__pyx_t_3); - PyTuple_SET_ITEM(__pyx_t_1, 1, __pyx_t_3); - __pyx_t_3 = 0; - __pyx_t_3 = __Pyx_PyObject_Call(__pyx_builtin_range, __pyx_t_1, NULL); if (unlikely(!__pyx_t_3)) __PYX_ERR(0, 381, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_3); - __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0; - if (likely(PyList_CheckExact(__pyx_t_3)) || PyTuple_CheckExact(__pyx_t_3)) { - __pyx_t_1 = __pyx_t_3; __Pyx_INCREF(__pyx_t_1); __pyx_t_2 = 0; - __pyx_t_4 = NULL; - } else { - __pyx_t_2 = -1; __pyx_t_1 = PyObject_GetIter(__pyx_t_3); if (unlikely(!__pyx_t_1)) __PYX_ERR(0, 381, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_1); - __pyx_t_4 = Py_TYPE(__pyx_t_1)->tp_iternext; if (unlikely(!__pyx_t_4)) __PYX_ERR(0, 381, __pyx_L1_error) - } - __Pyx_DECREF(__pyx_t_3); __pyx_t_3 = 0; - for (;;) { - if (likely(!__pyx_t_4)) { - if (likely(PyList_CheckExact(__pyx_t_1))) { - if (__pyx_t_2 >= PyList_GET_SIZE(__pyx_t_1)) break; - #if CYTHON_ASSUME_SAFE_MACROS && !CYTHON_AVOID_BORROWED_REFS - __pyx_t_3 = PyList_GET_ITEM(__pyx_t_1, __pyx_t_2); __Pyx_INCREF(__pyx_t_3); __pyx_t_2++; if (unlikely(0 < 0)) __PYX_ERR(0, 381, __pyx_L1_error) - #else - __pyx_t_3 = PySequence_ITEM(__pyx_t_1, __pyx_t_2); __pyx_t_2++; if (unlikely(!__pyx_t_3)) __PYX_ERR(0, 381, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_3); - #endif - } else { - if (__pyx_t_2 >= PyTuple_GET_SIZE(__pyx_t_1)) break; - #if CYTHON_ASSUME_SAFE_MACROS && !CYTHON_AVOID_BORROWED_REFS - __pyx_t_3 = PyTuple_GET_ITEM(__pyx_t_1, __pyx_t_2); __Pyx_INCREF(__pyx_t_3); __pyx_t_2++; if (unlikely(0 < 0)) __PYX_ERR(0, 381, __pyx_L1_error) - #else - __pyx_t_3 = PySequence_ITEM(__pyx_t_1, __pyx_t_2); __pyx_t_2++; if (unlikely(!__pyx_t_3)) __PYX_ERR(0, 381, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_3); - #endif - } - } else { - __pyx_t_3 = __pyx_t_4(__pyx_t_1); - if (unlikely(!__pyx_t_3)) { - PyObject* exc_type = PyErr_Occurred(); - if (exc_type) { - if (likely(__Pyx_PyErr_GivenExceptionMatches(exc_type, PyExc_StopIteration))) PyErr_Clear(); - else __PYX_ERR(0, 381, __pyx_L1_error) - } - break; - } - __Pyx_GOTREF(__pyx_t_3); - } - __Pyx_XDECREF_SET(__pyx_v_i, __pyx_t_3); - __pyx_t_3 = 0; - - /* "pmercury/utils/tls_utils.pyx":382 - * l_ = [] - * for i in range(0,len(l)-ngram): - * s_ = '' # <<<<<<<<<<<<<< - * for j in range(ngram): - * s_ += l[i+j] - */ - __Pyx_INCREF(__pyx_kp_u__19); - __Pyx_XDECREF_SET(__pyx_v_s_, __pyx_kp_u__19); - - /* "pmercury/utils/tls_utils.pyx":383 - * for i in range(0,len(l)-ngram): - * s_ = '' - * for j in range(ngram): # <<<<<<<<<<<<<< - * s_ += l[i+j] - * l_.append(s_) - */ - __pyx_t_3 = __Pyx_PyObject_CallOneArg(__pyx_builtin_range, __pyx_v_ngram); if (unlikely(!__pyx_t_3)) __PYX_ERR(0, 383, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_3); - if (likely(PyList_CheckExact(__pyx_t_3)) || PyTuple_CheckExact(__pyx_t_3)) { - __pyx_t_5 = __pyx_t_3; __Pyx_INCREF(__pyx_t_5); __pyx_t_6 = 0; - __pyx_t_7 = NULL; - } else { - __pyx_t_6 = -1; __pyx_t_5 = PyObject_GetIter(__pyx_t_3); if (unlikely(!__pyx_t_5)) __PYX_ERR(0, 383, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_5); - __pyx_t_7 = Py_TYPE(__pyx_t_5)->tp_iternext; if (unlikely(!__pyx_t_7)) __PYX_ERR(0, 383, __pyx_L1_error) - } - __Pyx_DECREF(__pyx_t_3); __pyx_t_3 = 0; - for (;;) { - if (likely(!__pyx_t_7)) { - if (likely(PyList_CheckExact(__pyx_t_5))) { - if (__pyx_t_6 >= PyList_GET_SIZE(__pyx_t_5)) break; - #if CYTHON_ASSUME_SAFE_MACROS && !CYTHON_AVOID_BORROWED_REFS - __pyx_t_3 = PyList_GET_ITEM(__pyx_t_5, __pyx_t_6); __Pyx_INCREF(__pyx_t_3); __pyx_t_6++; if (unlikely(0 < 0)) __PYX_ERR(0, 383, __pyx_L1_error) - #else - __pyx_t_3 = PySequence_ITEM(__pyx_t_5, __pyx_t_6); __pyx_t_6++; if (unlikely(!__pyx_t_3)) __PYX_ERR(0, 383, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_3); - #endif - } else { - if (__pyx_t_6 >= PyTuple_GET_SIZE(__pyx_t_5)) break; - #if CYTHON_ASSUME_SAFE_MACROS && !CYTHON_AVOID_BORROWED_REFS - __pyx_t_3 = PyTuple_GET_ITEM(__pyx_t_5, __pyx_t_6); __Pyx_INCREF(__pyx_t_3); __pyx_t_6++; if (unlikely(0 < 0)) __PYX_ERR(0, 383, __pyx_L1_error) - #else - __pyx_t_3 = PySequence_ITEM(__pyx_t_5, __pyx_t_6); __pyx_t_6++; if (unlikely(!__pyx_t_3)) __PYX_ERR(0, 383, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_3); - #endif - } - } else { - __pyx_t_3 = __pyx_t_7(__pyx_t_5); - if (unlikely(!__pyx_t_3)) { - PyObject* exc_type = PyErr_Occurred(); - if (exc_type) { - if (likely(__Pyx_PyErr_GivenExceptionMatches(exc_type, PyExc_StopIteration))) PyErr_Clear(); - else __PYX_ERR(0, 383, __pyx_L1_error) - } - break; - } - __Pyx_GOTREF(__pyx_t_3); - } - __Pyx_XDECREF_SET(__pyx_v_j, __pyx_t_3); - __pyx_t_3 = 0; - - /* "pmercury/utils/tls_utils.pyx":384 - * s_ = '' - * for j in range(ngram): - * s_ += l[i+j] # <<<<<<<<<<<<<< - * l_.append(s_) - * if len(l_) == 0: - */ - __pyx_t_3 = PyNumber_Add(__pyx_v_i, __pyx_v_j); if (unlikely(!__pyx_t_3)) __PYX_ERR(0, 384, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_3); - __pyx_t_8 = __Pyx_PyObject_GetItem(__pyx_v_l, __pyx_t_3); if (unlikely(!__pyx_t_8)) __PYX_ERR(0, 384, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_8); - __Pyx_DECREF(__pyx_t_3); __pyx_t_3 = 0; - __pyx_t_3 = PyNumber_InPlaceAdd(__pyx_v_s_, __pyx_t_8); if (unlikely(!__pyx_t_3)) __PYX_ERR(0, 384, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_3); - __Pyx_DECREF(__pyx_t_8); __pyx_t_8 = 0; - __Pyx_DECREF_SET(__pyx_v_s_, __pyx_t_3); - __pyx_t_3 = 0; - - /* "pmercury/utils/tls_utils.pyx":383 - * for i in range(0,len(l)-ngram): - * s_ = '' - * for j in range(ngram): # <<<<<<<<<<<<<< - * s_ += l[i+j] - * l_.append(s_) - */ - } - __Pyx_DECREF(__pyx_t_5); __pyx_t_5 = 0; - - /* "pmercury/utils/tls_utils.pyx":385 - * for j in range(ngram): - * s_ += l[i+j] - * l_.append(s_) # <<<<<<<<<<<<<< - * if len(l_) == 0: - * l_ = l - */ - __pyx_t_9 = __Pyx_PyObject_Append(__pyx_v_l_, __pyx_v_s_); if (unlikely(__pyx_t_9 == ((int)-1))) __PYX_ERR(0, 385, __pyx_L1_error) - - /* "pmercury/utils/tls_utils.pyx":381 - * def get_ngram(l, ngram): - * l_ = [] - * for i in range(0,len(l)-ngram): # <<<<<<<<<<<<<< - * s_ = '' - * for j in range(ngram): - */ - } - __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0; - - /* "pmercury/utils/tls_utils.pyx":386 - * s_ += l[i+j] - * l_.append(s_) - * if len(l_) == 0: # <<<<<<<<<<<<<< - * l_ = l - * return l_ - */ - __pyx_t_2 = PyObject_Length(__pyx_v_l_); if (unlikely(__pyx_t_2 == ((Py_ssize_t)-1))) __PYX_ERR(0, 386, __pyx_L1_error) - __pyx_t_10 = ((__pyx_t_2 == 0) != 0); - if (__pyx_t_10) { - - /* "pmercury/utils/tls_utils.pyx":387 - * l_.append(s_) - * if len(l_) == 0: - * l_ = l # <<<<<<<<<<<<<< - * return l_ - * - */ - __Pyx_INCREF(__pyx_v_l); - __Pyx_DECREF_SET(__pyx_v_l_, __pyx_v_l); - - /* "pmercury/utils/tls_utils.pyx":386 - * s_ += l[i+j] - * l_.append(s_) - * if len(l_) == 0: # <<<<<<<<<<<<<< - * l_ = l - * return l_ - */ - } - - /* "pmercury/utils/tls_utils.pyx":388 - * if len(l_) == 0: - * l_ = l - * return l_ # <<<<<<<<<<<<<< - * - * - */ - __Pyx_XDECREF(__pyx_r); - __Pyx_INCREF(__pyx_v_l_); - __pyx_r = __pyx_v_l_; - goto __pyx_L0; - - /* "pmercury/utils/tls_utils.pyx":379 - * - * - * def get_ngram(l, ngram): # <<<<<<<<<<<<<< - * l_ = [] - * for i in range(0,len(l)-ngram): - */ - - /* function exit code */ - __pyx_L1_error:; - __Pyx_XDECREF(__pyx_t_1); - __Pyx_XDECREF(__pyx_t_3); - __Pyx_XDECREF(__pyx_t_5); - __Pyx_XDECREF(__pyx_t_8); - __Pyx_AddTraceback("pmercury.utils.tls_utils.get_ngram", __pyx_clineno, __pyx_lineno, __pyx_filename); - __pyx_r = NULL; - __pyx_L0:; - __Pyx_XDECREF(__pyx_v_l_); - __Pyx_XDECREF(__pyx_v_i); - __Pyx_XDECREF(__pyx_v_s_); - __Pyx_XDECREF(__pyx_v_j); - __Pyx_XGIVEREF(__pyx_r); - __Pyx_RefNannyFinishContext(); - return __pyx_r; -} - -static PyMethodDef __pyx_methods[] = { - {0, 0, 0, 0} -}; - -static int __pyx_import_star_set(PyObject *o, PyObject* py_name, char *name) { - static const char* internal_type_names[] = { - "__pyx_ctuple_long__and_Py_ssize_t__and_long", - "__pyx_ctuple_long__and_Py_ssize_t__and_long_struct", - "__pyx_ctuple_long__and_unsigned__space_int__and_long", - "__pyx_ctuple_long__and_unsigned__space_int__and_long_struct", - 0 - }; - const char** type_name = internal_type_names; - while (*type_name) { - if (__Pyx_StrEq(name, *type_name)) { - PyErr_Format(PyExc_TypeError, "Cannot overwrite C type %s", name); - goto bad; - } - type_name++; - } - if (0); - else if (__Pyx_StrEq(name, "ext_data_extract_")) { - if (!(likely(PySet_CheckExact(o))||((o) == Py_None)||(PyErr_Format(PyExc_TypeError, "Expected %.16s, got %.200s", "set", Py_TYPE(o)->tp_name), 0))) __PYX_ERR(0, 23, __pyx_L2_error); - Py_INCREF(o); - Py_DECREF(__pyx_v_8pmercury_5utils_9tls_utils_ext_data_extract_); - __pyx_v_8pmercury_5utils_9tls_utils_ext_data_extract_ = ((PyObject*)o); - } - else if (__Pyx_StrEq(name, "grease_")) { - if (!(likely(PySet_CheckExact(o))||((o) == Py_None)||(PyErr_Format(PyExc_TypeError, "Expected %.16s, got %.200s", "set", Py_TYPE(o)->tp_name), 0))) __PYX_ERR(0, 18, __pyx_L2_error); - Py_INCREF(o); - Py_DECREF(__pyx_v_8pmercury_5utils_9tls_utils_grease_); - __pyx_v_8pmercury_5utils_9tls_utils_grease_ = ((PyObject*)o); - } - else if (__Pyx_StrEq(name, "grease_single_int_")) { - if (!(likely(PySet_CheckExact(o))||((o) == Py_None)||(PyErr_Format(PyExc_TypeError, "Expected %.16s, got %.200s", "set", Py_TYPE(o)->tp_name), 0))) __PYX_ERR(0, 21, __pyx_L2_error); - Py_INCREF(o); - Py_DECREF(__pyx_v_8pmercury_5utils_9tls_utils_grease_single_int_); - __pyx_v_8pmercury_5utils_9tls_utils_grease_single_int_ = ((PyObject*)o); - } - else { - if (PyObject_SetAttr(__pyx_m, py_name, o) < 0) goto bad; - } - return 0; - __pyx_L2_error:; - __Pyx_AddTraceback("pmercury.utils.tls_utils", __pyx_clineno, __pyx_lineno, __pyx_filename); - bad: - return -1; -} - -static int -__Pyx_import_all_from(PyObject *locals, PyObject *v) -{ - PyObject *all = PyObject_GetAttrString(v, "__all__"); - PyObject *dict, *name, *value; - int skip_leading_underscores = 0; - int pos, err; - if (all == NULL) { - if (!PyErr_ExceptionMatches(PyExc_AttributeError)) - return -1; - PyErr_Clear(); - dict = PyObject_GetAttrString(v, "__dict__"); - if (dict == NULL) { - if (!PyErr_ExceptionMatches(PyExc_AttributeError)) - return -1; - PyErr_SetString(PyExc_ImportError, - "from-import-* object has no __dict__ and no __all__"); - return -1; - } -#if PY_MAJOR_VERSION < 3 - all = PyObject_CallMethod(dict, (char *)"keys", NULL); -#else - all = PyMapping_Keys(dict); -#endif - Py_DECREF(dict); - if (all == NULL) - return -1; - skip_leading_underscores = 1; - } - for (pos = 0, err = 0; ; pos++) { - name = PySequence_GetItem(all, pos); - if (name == NULL) { - if (!PyErr_ExceptionMatches(PyExc_IndexError)) - err = -1; - else - PyErr_Clear(); - break; - } - if (skip_leading_underscores && -#if PY_MAJOR_VERSION < 3 - PyString_Check(name) && - PyString_AS_STRING(name)[0] == '_') -#else - PyUnicode_Check(name) && - PyUnicode_AS_UNICODE(name)[0] == '_') -#endif - { - Py_DECREF(name); - continue; - } - value = PyObject_GetAttr(v, name); - if (value == NULL) - err = -1; - else if (PyDict_CheckExact(locals)) - err = PyDict_SetItem(locals, name, value); - else - err = PyObject_SetItem(locals, name, value); - Py_DECREF(name); - Py_XDECREF(value); - if (err != 0) - break; - } - Py_DECREF(all); - return err; -} -static int __pyx_import_star(PyObject* m) { - int i; - int ret = -1; - char* s; - PyObject *locals = 0; - PyObject *list = 0; -#if PY_MAJOR_VERSION >= 3 - PyObject *utf8_name = 0; -#endif - PyObject *name; - PyObject *item; - locals = PyDict_New(); if (!locals) goto bad; - if (__Pyx_import_all_from(locals, m) < 0) goto bad; - list = PyDict_Items(locals); if (!list) goto bad; - for(i=0; i= 3 - utf8_name = PyUnicode_AsUTF8String(name); - if (!utf8_name) goto bad; - s = PyBytes_AS_STRING(utf8_name); - if (__pyx_import_star_set(item, name, s) < 0) goto bad; - Py_DECREF(utf8_name); utf8_name = 0; -#else - s = PyString_AsString(name); - if (!s) goto bad; - if (__pyx_import_star_set(item, name, s) < 0) goto bad; -#endif - } - ret = 0; -bad: - Py_XDECREF(locals); - Py_XDECREF(list); -#if PY_MAJOR_VERSION >= 3 - Py_XDECREF(utf8_name); -#endif - return ret; -} - - - -#if PY_MAJOR_VERSION >= 3 -#if CYTHON_PEP489_MULTI_PHASE_INIT -static PyObject* __pyx_pymod_create(PyObject *spec, PyModuleDef *def); /*proto*/ -static int __pyx_pymod_exec_tls_utils(PyObject* module); /*proto*/ -static PyModuleDef_Slot __pyx_moduledef_slots[] = { - {Py_mod_create, (void*)__pyx_pymod_create}, - {Py_mod_exec, (void*)__pyx_pymod_exec_tls_utils}, - {0, NULL} -}; -#endif - -static struct PyModuleDef __pyx_moduledef = { - PyModuleDef_HEAD_INIT, - "tls_utils", - __pyx_k_Copyright_c_2019_Cisco_Systems, /* m_doc */ - #if CYTHON_PEP489_MULTI_PHASE_INIT - 0, /* m_size */ - #else - -1, /* m_size */ - #endif - __pyx_methods /* m_methods */, - #if CYTHON_PEP489_MULTI_PHASE_INIT - __pyx_moduledef_slots, /* m_slots */ - #else - NULL, /* m_reload */ - #endif - NULL, /* m_traverse */ - NULL, /* m_clear */ - NULL /* m_free */ -}; -#endif -#ifndef CYTHON_SMALL_CODE -#if defined(__clang__) - #define CYTHON_SMALL_CODE -#elif defined(__GNUC__) && (__GNUC__ > 4 || (__GNUC__ == 4 && __GNUC_MINOR__ >= 3)) - #define CYTHON_SMALL_CODE __attribute__((cold)) -#else - #define CYTHON_SMALL_CODE -#endif -#endif - -static __Pyx_StringTabEntry __pyx_string_tab[] = { - {&__pyx_kp_u_, __pyx_k_, sizeof(__pyx_k_), 0, 1, 0, 0}, - {&__pyx_kp_u_0001, __pyx_k_0001, sizeof(__pyx_k_0001), 0, 1, 0, 0}, - {&__pyx_kp_u_0005, __pyx_k_0005, sizeof(__pyx_k_0005), 0, 1, 0, 0}, - {&__pyx_kp_u_0007, __pyx_k_0007, sizeof(__pyx_k_0007), 0, 1, 0, 0}, - {&__pyx_kp_u_0008, __pyx_k_0008, sizeof(__pyx_k_0008), 0, 1, 0, 0}, - {&__pyx_kp_u_0009, __pyx_k_0009, sizeof(__pyx_k_0009), 0, 1, 0, 0}, - {&__pyx_kp_u_000a, __pyx_k_000a, sizeof(__pyx_k_000a), 0, 1, 0, 0}, - {&__pyx_kp_u_000b, __pyx_k_000b, sizeof(__pyx_k_000b), 0, 1, 0, 0}, - {&__pyx_kp_u_000d, __pyx_k_000d, sizeof(__pyx_k_000d), 0, 1, 0, 0}, - {&__pyx_kp_u_000f, __pyx_k_000f, sizeof(__pyx_k_000f), 0, 1, 0, 0}, - {&__pyx_kp_u_0010, __pyx_k_0010, sizeof(__pyx_k_0010), 0, 1, 0, 0}, - {&__pyx_kp_u_0011, __pyx_k_0011, sizeof(__pyx_k_0011), 0, 1, 0, 0}, - {&__pyx_kp_u_0013, __pyx_k_0013, sizeof(__pyx_k_0013), 0, 1, 0, 0}, - {&__pyx_kp_u_0014, __pyx_k_0014, sizeof(__pyx_k_0014), 0, 1, 0, 0}, - {&__pyx_kp_u_0018, __pyx_k_0018, sizeof(__pyx_k_0018), 0, 1, 0, 0}, - {&__pyx_kp_u_001b, __pyx_k_001b, sizeof(__pyx_k_001b), 0, 1, 0, 0}, - {&__pyx_kp_u_001c, __pyx_k_001c, sizeof(__pyx_k_001c), 0, 1, 0, 0}, - {&__pyx_kp_b_002b, __pyx_k_002b, sizeof(__pyx_k_002b), 0, 0, 0, 0}, - {&__pyx_kp_u_002b, __pyx_k_002b, sizeof(__pyx_k_002b), 0, 1, 0, 0}, - {&__pyx_kp_u_002d, __pyx_k_002d, sizeof(__pyx_k_002d), 0, 1, 0, 0}, - {&__pyx_kp_u_0032, __pyx_k_0032, sizeof(__pyx_k_0032), 0, 1, 0, 0}, - {&__pyx_kp_u_04x, __pyx_k_04x, sizeof(__pyx_k_04x), 0, 1, 0, 0}, - {&__pyx_kp_u_0a0a, __pyx_k_0a0a, sizeof(__pyx_k_0a0a), 0, 1, 0, 0}, - {&__pyx_kp_u_1a1a, __pyx_k_1a1a, sizeof(__pyx_k_1a1a), 0, 1, 0, 0}, - {&__pyx_kp_u_2a2a, __pyx_k_2a2a, sizeof(__pyx_k_2a2a), 0, 1, 0, 0}, - {&__pyx_kp_u_3a3a, __pyx_k_3a3a, sizeof(__pyx_k_3a3a), 0, 1, 0, 0}, - {&__pyx_kp_u_4a4a, __pyx_k_4a4a, sizeof(__pyx_k_4a4a), 0, 1, 0, 0}, - {&__pyx_kp_u_5500, __pyx_k_5500, sizeof(__pyx_k_5500), 0, 1, 0, 0}, - {&__pyx_kp_u_5a5a, __pyx_k_5a5a, sizeof(__pyx_k_5a5a), 0, 1, 0, 0}, - {&__pyx_kp_u_6a6a, __pyx_k_6a6a, sizeof(__pyx_k_6a6a), 0, 1, 0, 0}, - {&__pyx_kp_u_7a7a, __pyx_k_7a7a, sizeof(__pyx_k_7a7a), 0, 1, 0, 0}, - {&__pyx_kp_u_8a8a, __pyx_k_8a8a, sizeof(__pyx_k_8a8a), 0, 1, 0, 0}, - {&__pyx_kp_u_9a9a, __pyx_k_9a9a, sizeof(__pyx_k_9a9a), 0, 1, 0, 0}, - {&__pyx_n_u_None, __pyx_k_None, sizeof(__pyx_k_None), 0, 1, 0, 1}, - {&__pyx_n_s_TLS_CERTIFICATE_STATUS_TYPE, __pyx_k_TLS_CERTIFICATE_STATUS_TYPE, sizeof(__pyx_k_TLS_CERTIFICATE_STATUS_TYPE), 0, 0, 1, 1}, - {&__pyx_n_s_TLS_EC_POINT_FORMATS, __pyx_k_TLS_EC_POINT_FORMATS, sizeof(__pyx_k_TLS_EC_POINT_FORMATS), 0, 0, 1, 1}, - {&__pyx_n_s_TLS_PSK_KEY_EXCHANGE_MODES, __pyx_k_TLS_PSK_KEY_EXCHANGE_MODES, sizeof(__pyx_k_TLS_PSK_KEY_EXCHANGE_MODES), 0, 0, 1, 1}, - {&__pyx_n_s_TLS_SIGNATURE_HASH_ALGORITHMS, __pyx_k_TLS_SIGNATURE_HASH_ALGORITHMS, sizeof(__pyx_k_TLS_SIGNATURE_HASH_ALGORITHMS), 0, 0, 1, 1}, - {&__pyx_n_s_TLS_SUPPORTED_GROUPS, __pyx_k_TLS_SUPPORTED_GROUPS, sizeof(__pyx_k_TLS_SUPPORTED_GROUPS), 0, 0, 1, 1}, - {&__pyx_n_s_TLS_VERSION, __pyx_k_TLS_VERSION, sizeof(__pyx_k_TLS_VERSION), 0, 0, 1, 1}, - {&__pyx_n_s_UnicodeDecodeError, __pyx_k_UnicodeDecodeError, sizeof(__pyx_k_UnicodeDecodeError), 0, 0, 1, 1}, - {&__pyx_kp_u_Unknown_Group_i, __pyx_k_Unknown_Group_i, sizeof(__pyx_k_Unknown_Group_i), 0, 1, 0, 0}, - {&__pyx_kp_u_Unknown_Version_s, __pyx_k_Unknown_Version_s, sizeof(__pyx_k_Unknown_Version_s), 0, 1, 0, 0}, - {&__pyx_kp_u__10, __pyx_k__10, sizeof(__pyx_k__10), 0, 1, 0, 0}, - {&__pyx_kp_u__11, __pyx_k__11, sizeof(__pyx_k__11), 0, 1, 0, 0}, - {&__pyx_kp_u__13, __pyx_k__13, sizeof(__pyx_k__13), 0, 1, 0, 0}, - {&__pyx_kp_u__14, __pyx_k__14, sizeof(__pyx_k__14), 0, 1, 0, 0}, - {&__pyx_kp_b__19, __pyx_k__19, sizeof(__pyx_k__19), 0, 0, 0, 0}, - {&__pyx_kp_u__19, __pyx_k__19, sizeof(__pyx_k__19), 0, 1, 0, 0}, - {&__pyx_kp_u__2, __pyx_k__2, sizeof(__pyx_k__2), 0, 1, 0, 0}, - {&__pyx_kp_b__22, __pyx_k__22, sizeof(__pyx_k__22), 0, 0, 0, 0}, - {&__pyx_kp_u__26, __pyx_k__26, sizeof(__pyx_k__26), 0, 1, 0, 0}, - {&__pyx_kp_u__27, __pyx_k__27, sizeof(__pyx_k__27), 0, 1, 0, 0}, - {&__pyx_n_s__28, __pyx_k__28, sizeof(__pyx_k__28), 0, 0, 1, 1}, - {&__pyx_kp_u__4, __pyx_k__4, sizeof(__pyx_k__4), 0, 1, 0, 0}, - {&__pyx_kp_u__5, __pyx_k__5, sizeof(__pyx_k__5), 0, 1, 0, 0}, - {&__pyx_kp_u__7, __pyx_k__7, sizeof(__pyx_k__7), 0, 1, 0, 0}, - {&__pyx_kp_u__8, __pyx_k__8, sizeof(__pyx_k__8), 0, 1, 0, 0}, - {&__pyx_n_u_aaaa, __pyx_k_aaaa, sizeof(__pyx_k_aaaa), 0, 1, 0, 1}, - {&__pyx_n_s_abspath, __pyx_k_abspath, sizeof(__pyx_k_abspath), 0, 0, 1, 1}, - {&__pyx_n_s_add, __pyx_k_add, sizeof(__pyx_k_add), 0, 0, 1, 1}, - {&__pyx_n_u_algorithms, __pyx_k_algorithms, sizeof(__pyx_k_algorithms), 0, 1, 0, 1}, - {&__pyx_n_s_alpn_data, __pyx_k_alpn_data, sizeof(__pyx_k_alpn_data), 0, 0, 1, 1}, - {&__pyx_n_s_alpn_len, __pyx_k_alpn_len, sizeof(__pyx_k_alpn_len), 0, 0, 1, 1}, - {&__pyx_n_s_alpn_offset, __pyx_k_alpn_offset, sizeof(__pyx_k_alpn_offset), 0, 0, 1, 1}, - {&__pyx_n_s_append, __pyx_k_append, sizeof(__pyx_k_append), 0, 0, 1, 1}, - {&__pyx_n_u_application_layer_protocol_negot, __pyx_k_application_layer_protocol_negot, sizeof(__pyx_k_application_layer_protocol_negot), 0, 1, 0, 1}, - {&__pyx_n_s_ast, __pyx_k_ast, sizeof(__pyx_k_ast), 0, 0, 1, 1}, - {&__pyx_n_u_baba, __pyx_k_baba, sizeof(__pyx_k_baba), 0, 1, 0, 1}, - {&__pyx_n_u_big, __pyx_k_big, sizeof(__pyx_k_big), 0, 1, 0, 1}, - {&__pyx_n_u_caca, __pyx_k_caca, sizeof(__pyx_k_caca), 0, 1, 0, 1}, - {&__pyx_n_u_certificate_status_type, __pyx_k_certificate_status_type, sizeof(__pyx_k_certificate_status_type), 0, 1, 0, 1}, - {&__pyx_n_u_client, __pyx_k_client, sizeof(__pyx_k_client), 0, 1, 0, 1}, - {&__pyx_n_s_cline_in_traceback, __pyx_k_cline_in_traceback, sizeof(__pyx_k_cline_in_traceback), 0, 0, 1, 1}, - {&__pyx_n_s_convert, __pyx_k_convert, sizeof(__pyx_k_convert), 0, 0, 1, 1}, - {&__pyx_n_s_cs, __pyx_k_cs, sizeof(__pyx_k_cs), 0, 0, 1, 1}, - {&__pyx_n_s_cs_2, __pyx_k_cs_2, sizeof(__pyx_k_cs_2), 0, 0, 1, 1}, - {&__pyx_n_s_cs_4, __pyx_k_cs_4, sizeof(__pyx_k_cs_4), 0, 0, 1, 1}, - {&__pyx_n_s_cs_l, __pyx_k_cs_l, sizeof(__pyx_k_cs_l), 0, 0, 1, 1}, - {&__pyx_n_s_cs_str, __pyx_k_cs_str, sizeof(__pyx_k_cs_str), 0, 0, 1, 1}, - {&__pyx_n_u_dada, __pyx_k_dada, sizeof(__pyx_k_dada), 0, 1, 0, 1}, - {&__pyx_n_s_data, __pyx_k_data, sizeof(__pyx_k_data), 0, 0, 1, 1}, - {&__pyx_n_s_data_len, __pyx_k_data_len, sizeof(__pyx_k_data_len), 0, 0, 1, 1}, - {&__pyx_n_u_date, __pyx_k_date, sizeof(__pyx_k_date), 0, 1, 0, 1}, - {&__pyx_n_s_dates, __pyx_k_dates, sizeof(__pyx_k_dates), 0, 0, 1, 1}, - {&__pyx_n_s_decode, __pyx_k_decode, sizeof(__pyx_k_decode), 0, 0, 1, 1}, - {&__pyx_n_s_degrease_ext_data, __pyx_k_degrease_ext_data, sizeof(__pyx_k_degrease_ext_data), 0, 0, 1, 1}, - {&__pyx_n_s_degrease_type_code, __pyx_k_degrease_type_code, sizeof(__pyx_k_degrease_type_code), 0, 0, 1, 1}, - {&__pyx_n_s_degreased_ext_value, __pyx_k_degreased_ext_value, sizeof(__pyx_k_degreased_ext_value), 0, 0, 1, 1}, - {&__pyx_n_s_dirname, __pyx_k_dirname, sizeof(__pyx_k_dirname), 0, 0, 1, 1}, - {&__pyx_n_s_e, __pyx_k_e, sizeof(__pyx_k_e), 0, 0, 1, 1}, - {&__pyx_n_u_eaea, __pyx_k_eaea, sizeof(__pyx_k_eaea), 0, 1, 0, 1}, - {&__pyx_n_s_ec_point_formats, __pyx_k_ec_point_formats, sizeof(__pyx_k_ec_point_formats), 0, 0, 1, 1}, - {&__pyx_n_u_ec_point_formats, __pyx_k_ec_point_formats, sizeof(__pyx_k_ec_point_formats), 0, 1, 0, 1}, - {&__pyx_n_u_ec_point_formats_length, __pyx_k_ec_point_formats_length, sizeof(__pyx_k_ec_point_formats_length), 0, 1, 0, 1}, - {&__pyx_n_s_eval_fp_str, __pyx_k_eval_fp_str, sizeof(__pyx_k_eval_fp_str), 0, 0, 1, 1}, - {&__pyx_n_s_eval_fp_str_general, __pyx_k_eval_fp_str_general, sizeof(__pyx_k_eval_fp_str_general), 0, 0, 1, 1}, - {&__pyx_n_s_ext, __pyx_k_ext, sizeof(__pyx_k_ext), 0, 0, 1, 1}, - {&__pyx_n_u_ext, __pyx_k_ext, sizeof(__pyx_k_ext), 0, 1, 0, 1}, - {&__pyx_n_s_ext_2, __pyx_k_ext_2, sizeof(__pyx_k_ext_2), 0, 0, 1, 1}, - {&__pyx_n_s_ext_data, __pyx_k_ext_data, sizeof(__pyx_k_ext_data), 0, 0, 1, 1}, - {&__pyx_n_s_ext_data_2, __pyx_k_ext_data_2, sizeof(__pyx_k_ext_data_2), 0, 0, 1, 1}, - {&__pyx_n_s_ext_l, __pyx_k_ext_l, sizeof(__pyx_k_ext_l), 0, 0, 1, 1}, - {&__pyx_n_s_ext_len, __pyx_k_ext_len, sizeof(__pyx_k_ext_len), 0, 0, 1, 1}, - {&__pyx_n_s_ext_length, __pyx_k_ext_length, sizeof(__pyx_k_ext_length), 0, 0, 1, 1}, - {&__pyx_n_s_ext_type, __pyx_k_ext_type, sizeof(__pyx_k_ext_type), 0, 0, 1, 1}, - {&__pyx_n_s_ext_type_2, __pyx_k_ext_type_2, sizeof(__pyx_k_ext_type_2), 0, 0, 1, 1}, - {&__pyx_n_s_ext_type_str_kind, __pyx_k_ext_type_str_kind, sizeof(__pyx_k_ext_type_str_kind), 0, 0, 1, 1}, - {&__pyx_n_s_ext_value, __pyx_k_ext_value, sizeof(__pyx_k_ext_value), 0, 0, 1, 1}, - {&__pyx_n_s_extract_server_name, __pyx_k_extract_server_name, sizeof(__pyx_k_extract_server_name), 0, 0, 1, 1}, - {&__pyx_n_s_exts, __pyx_k_exts, sizeof(__pyx_k_exts), 0, 0, 1, 1}, - {&__pyx_n_u_fafa, __pyx_k_fafa, sizeof(__pyx_k_fafa), 0, 1, 0, 1}, - {&__pyx_n_s_file, __pyx_k_file, sizeof(__pyx_k_file), 0, 0, 1, 1}, - {&__pyx_n_s_find_resource_path, __pyx_k_find_resource_path, sizeof(__pyx_k_find_resource_path), 0, 0, 1, 1}, - {&__pyx_n_s_fp, __pyx_k_fp, sizeof(__pyx_k_fp), 0, 0, 1, 1}, - {&__pyx_n_s_fp_ext, __pyx_k_fp_ext, sizeof(__pyx_k_fp_ext), 0, 0, 1, 1}, - {&__pyx_n_s_fp_str, __pyx_k_fp_str, sizeof(__pyx_k_fp_str), 0, 0, 1, 1}, - {&__pyx_n_s_from_bytes, __pyx_k_from_bytes, sizeof(__pyx_k_from_bytes), 0, 0, 1, 1}, - {&__pyx_n_s_fromhex, __pyx_k_fromhex, sizeof(__pyx_k_fromhex), 0, 0, 1, 1}, - {&__pyx_n_s_get_cs_from_str, __pyx_k_get_cs_from_str, sizeof(__pyx_k_get_cs_from_str), 0, 0, 1, 1}, - {&__pyx_n_s_get_ext_from_str, __pyx_k_get_ext_from_str, sizeof(__pyx_k_get_ext_from_str), 0, 0, 1, 1}, - {&__pyx_n_s_get_implementation_date, __pyx_k_get_implementation_date, sizeof(__pyx_k_get_implementation_date), 0, 0, 1, 1}, - {&__pyx_n_s_get_ngram, __pyx_k_get_ngram, sizeof(__pyx_k_get_ngram), 0, 0, 1, 1}, - {&__pyx_n_s_get_sequence, __pyx_k_get_sequence, sizeof(__pyx_k_get_sequence), 0, 0, 1, 1}, - {&__pyx_n_s_get_tls_params, __pyx_k_get_tls_params, sizeof(__pyx_k_get_tls_params), 0, 0, 1, 1}, - {&__pyx_n_s_get_version_from_str, __pyx_k_get_version_from_str, sizeof(__pyx_k_get_version_from_str), 0, 0, 1, 1}, - {&__pyx_n_u_group, __pyx_k_group, sizeof(__pyx_k_group), 0, 1, 0, 1}, - {&__pyx_n_s_hex, __pyx_k_hex, sizeof(__pyx_k_hex), 0, 0, 1, 1}, - {&__pyx_n_s_i, __pyx_k_i, sizeof(__pyx_k_i), 0, 0, 1, 1}, - {&__pyx_n_s_imp_date_cs_data, __pyx_k_imp_date_cs_data, sizeof(__pyx_k_imp_date_cs_data), 0, 0, 1, 1}, - {&__pyx_n_s_imp_date_cs_file, __pyx_k_imp_date_cs_file, sizeof(__pyx_k_imp_date_cs_file), 0, 0, 1, 1}, - {&__pyx_n_s_imp_date_ext_data, __pyx_k_imp_date_ext_data, sizeof(__pyx_k_imp_date_ext_data), 0, 0, 1, 1}, - {&__pyx_n_s_imp_date_ext_file, __pyx_k_imp_date_ext_file, sizeof(__pyx_k_imp_date_ext_file), 0, 0, 1, 1}, - {&__pyx_n_s_import, __pyx_k_import, sizeof(__pyx_k_import), 0, 0, 1, 1}, - {&__pyx_n_s_info, __pyx_k_info, sizeof(__pyx_k_info), 0, 0, 1, 1}, - {&__pyx_n_s_j, __pyx_k_j, sizeof(__pyx_k_j), 0, 0, 1, 1}, - {&__pyx_n_s_json, __pyx_k_json, sizeof(__pyx_k_json), 0, 0, 1, 1}, - {&__pyx_n_u_key_exchange, __pyx_k_key_exchange, sizeof(__pyx_k_key_exchange), 0, 1, 0, 1}, - {&__pyx_n_u_key_exchange_length, __pyx_k_key_exchange_length, sizeof(__pyx_k_key_exchange_length), 0, 1, 0, 1}, - {&__pyx_n_u_key_share, __pyx_k_key_share, sizeof(__pyx_k_key_share), 0, 1, 0, 1}, - {&__pyx_n_s_key_share_client, __pyx_k_key_share_client, sizeof(__pyx_k_key_share_client), 0, 0, 1, 1}, - {&__pyx_n_u_key_share_entries, __pyx_k_key_share_entries, sizeof(__pyx_k_key_share_entries), 0, 1, 0, 1}, - {&__pyx_n_u_key_share_length, __pyx_k_key_share_length, sizeof(__pyx_k_key_share_length), 0, 1, 0, 1}, - {&__pyx_n_s_l, __pyx_k_l, sizeof(__pyx_k_l), 0, 0, 1, 1}, - {&__pyx_n_s_l_2, __pyx_k_l_2, sizeof(__pyx_k_l_2), 0, 0, 1, 1}, - {&__pyx_n_s_length, __pyx_k_length, sizeof(__pyx_k_length), 0, 0, 1, 1}, - {&__pyx_n_s_line, __pyx_k_line, sizeof(__pyx_k_line), 0, 0, 1, 1}, - {&__pyx_n_s_literal_eval, __pyx_k_literal_eval, sizeof(__pyx_k_literal_eval), 0, 0, 1, 1}, - {&__pyx_n_s_loads, __pyx_k_loads, sizeof(__pyx_k_loads), 0, 0, 1, 1}, - {&__pyx_n_s_main, __pyx_k_main, sizeof(__pyx_k_main), 0, 0, 1, 1}, - {&__pyx_n_s_mode, __pyx_k_mode, sizeof(__pyx_k_mode), 0, 0, 1, 1}, - {&__pyx_n_u_name, __pyx_k_name, sizeof(__pyx_k_name), 0, 1, 0, 1}, - {&__pyx_n_s_name_2, __pyx_k_name_2, sizeof(__pyx_k_name_2), 0, 0, 1, 1}, - {&__pyx_n_s_new_str, __pyx_k_new_str, sizeof(__pyx_k_new_str), 0, 0, 1, 1}, - {&__pyx_n_s_ngram, __pyx_k_ngram, sizeof(__pyx_k_ngram), 0, 0, 1, 1}, - {&__pyx_n_s_offset, __pyx_k_offset, sizeof(__pyx_k_offset), 0, 0, 1, 1}, - {&__pyx_n_s_os, __pyx_k_os, sizeof(__pyx_k_os), 0, 0, 1, 1}, - {&__pyx_n_s_parse_application_layer_protocol, __pyx_k_parse_application_layer_protocol, sizeof(__pyx_k_parse_application_layer_protocol), 0, 0, 1, 1}, - {&__pyx_n_s_parse_extension, __pyx_k_parse_extension, sizeof(__pyx_k_parse_extension), 0, 0, 1, 1}, - {&__pyx_n_s_parse_extension_data, __pyx_k_parse_extension_data, sizeof(__pyx_k_parse_extension_data), 0, 0, 1, 1}, - {&__pyx_n_s_path, __pyx_k_path, sizeof(__pyx_k_path), 0, 0, 1, 1}, - {&__pyx_n_s_pmercury_utils_pmercury_utils, __pyx_k_pmercury_utils_pmercury_utils, sizeof(__pyx_k_pmercury_utils_pmercury_utils), 0, 0, 1, 1}, - {&__pyx_n_s_pmercury_utils_tls_constants, __pyx_k_pmercury_utils_tls_constants, sizeof(__pyx_k_pmercury_utils_tls_constants), 0, 0, 1, 1}, - {&__pyx_n_s_pmercury_utils_tls_utils, __pyx_k_pmercury_utils_tls_utils, sizeof(__pyx_k_pmercury_utils_tls_utils), 0, 0, 1, 1}, - {&__pyx_kp_s_pmercury_utils_tls_utils_pyx, __pyx_k_pmercury_utils_tls_utils_pyx, sizeof(__pyx_k_pmercury_utils_tls_utils_pyx), 0, 0, 1, 0}, - {&__pyx_n_s_popen, __pyx_k_popen, sizeof(__pyx_k_popen), 0, 0, 1, 1}, - {&__pyx_n_u_psk_key_exchange_mode, __pyx_k_psk_key_exchange_mode, sizeof(__pyx_k_psk_key_exchange_mode), 0, 1, 0, 1}, - {&__pyx_n_s_psk_key_exchange_modes, __pyx_k_psk_key_exchange_modes, sizeof(__pyx_k_psk_key_exchange_modes), 0, 0, 1, 1}, - {&__pyx_n_u_psk_key_exchange_modes, __pyx_k_psk_key_exchange_modes, sizeof(__pyx_k_psk_key_exchange_modes), 0, 1, 0, 1}, - {&__pyx_n_u_psk_key_exchange_modes_length, __pyx_k_psk_key_exchange_modes_length, sizeof(__pyx_k_psk_key_exchange_modes_length), 0, 1, 0, 1}, - {&__pyx_n_s_range, __pyx_k_range, sizeof(__pyx_k_range), 0, 0, 1, 1}, - {&__pyx_n_s_replace, __pyx_k_replace, sizeof(__pyx_k_replace), 0, 0, 1, 1}, - {&__pyx_n_u_request_extensions_length, __pyx_k_request_extensions_length, sizeof(__pyx_k_request_extensions_length), 0, 1, 0, 1}, - {&__pyx_kp_u_resources_implementation_date_cs, __pyx_k_resources_implementation_date_cs, sizeof(__pyx_k_resources_implementation_date_cs), 0, 1, 0, 0}, - {&__pyx_kp_u_resources_implementation_date_ex, __pyx_k_resources_implementation_date_ex, sizeof(__pyx_k_resources_implementation_date_ex), 0, 1, 0, 0}, - {&__pyx_n_u_responder_id_list_length, __pyx_k_responder_id_list_length, sizeof(__pyx_k_responder_id_list_length), 0, 1, 0, 1}, - {&__pyx_kp_u_s, __pyx_k_s, sizeof(__pyx_k_s), 0, 1, 0, 0}, - {&__pyx_n_s_s_2, __pyx_k_s_2, sizeof(__pyx_k_s_2), 0, 0, 1, 1}, - {&__pyx_n_s_seq, __pyx_k_seq, sizeof(__pyx_k_seq), 0, 0, 1, 1}, - {&__pyx_n_s_signature_algorithms, __pyx_k_signature_algorithms, sizeof(__pyx_k_signature_algorithms), 0, 0, 1, 1}, - {&__pyx_n_u_signature_algorithms, __pyx_k_signature_algorithms, sizeof(__pyx_k_signature_algorithms), 0, 1, 0, 1}, - {&__pyx_n_u_signature_hash_algorithms_length, __pyx_k_signature_hash_algorithms_length, sizeof(__pyx_k_signature_hash_algorithms_length), 0, 1, 0, 1}, - {&__pyx_n_s_sni_len, __pyx_k_sni_len, sizeof(__pyx_k_sni_len), 0, 0, 1, 1}, - {&__pyx_n_s_sort, __pyx_k_sort, sizeof(__pyx_k_sort), 0, 0, 1, 1}, - {&__pyx_n_s_split, __pyx_k_split, sizeof(__pyx_k_split), 0, 0, 1, 1}, - {&__pyx_n_s_status_request, __pyx_k_status_request, sizeof(__pyx_k_status_request), 0, 0, 1, 1}, - {&__pyx_n_u_status_request, __pyx_k_status_request, sizeof(__pyx_k_status_request), 0, 1, 0, 1}, - {&__pyx_n_s_supported_groups, __pyx_k_supported_groups, sizeof(__pyx_k_supported_groups), 0, 0, 1, 1}, - {&__pyx_n_u_supported_groups, __pyx_k_supported_groups, sizeof(__pyx_k_supported_groups), 0, 1, 0, 1}, - {&__pyx_n_u_supported_groups_list_length, __pyx_k_supported_groups_list_length, sizeof(__pyx_k_supported_groups_list_length), 0, 1, 0, 1}, - {&__pyx_n_s_supported_versions, __pyx_k_supported_versions, sizeof(__pyx_k_supported_versions), 0, 0, 1, 1}, - {&__pyx_n_u_supported_versions, __pyx_k_supported_versions, sizeof(__pyx_k_supported_versions), 0, 1, 0, 1}, - {&__pyx_n_u_supported_versions_list_length, __pyx_k_supported_versions_list_length, sizeof(__pyx_k_supported_versions_list_length), 0, 1, 0, 1}, - {&__pyx_n_s_supported_versions_server, __pyx_k_supported_versions_server, sizeof(__pyx_k_supported_versions_server), 0, 0, 1, 1}, - {&__pyx_n_s_sys, __pyx_k_sys, sizeof(__pyx_k_sys), 0, 0, 1, 1}, - {&__pyx_n_s_t, __pyx_k_t, sizeof(__pyx_k_t), 0, 0, 1, 1}, - {&__pyx_n_s_t_ext, __pyx_k_t_ext, sizeof(__pyx_k_t_ext), 0, 0, 1, 1}, - {&__pyx_n_s_test, __pyx_k_test, sizeof(__pyx_k_test), 0, 0, 1, 1}, - {&__pyx_n_s_tmp_alpn_len, __pyx_k_tmp_alpn_len, sizeof(__pyx_k_tmp_alpn_len), 0, 0, 1, 1}, - {&__pyx_n_s_tmp_data, __pyx_k_tmp_data, sizeof(__pyx_k_tmp_data), 0, 0, 1, 1}, - {&__pyx_n_s_tmp_ext, __pyx_k_tmp_ext, sizeof(__pyx_k_tmp_ext), 0, 0, 1, 1}, - {&__pyx_n_s_tmp_ext_type, __pyx_k_tmp_ext_type, sizeof(__pyx_k_tmp_ext_type), 0, 0, 1, 1}, - {&__pyx_n_s_tmp_ext_value, __pyx_k_tmp_ext_value, sizeof(__pyx_k_tmp_ext_value), 0, 0, 1, 1}, - {&__pyx_n_s_tmp_obj, __pyx_k_tmp_obj, sizeof(__pyx_k_tmp_obj), 0, 0, 1, 1}, - {&__pyx_n_s_union, __pyx_k_union, sizeof(__pyx_k_union), 0, 0, 1, 1}, - {&__pyx_kp_u_unknown_s, __pyx_k_unknown_s, sizeof(__pyx_k_unknown_s), 0, 1, 0, 0}, - {&__pyx_n_s_version, __pyx_k_version, sizeof(__pyx_k_version), 0, 0, 1, 1}, - {&__pyx_n_s_version_str, __pyx_k_version_str, sizeof(__pyx_k_version_str), 0, 0, 1, 1}, - {&__pyx_kp_u_zcat_s, __pyx_k_zcat_s, sizeof(__pyx_k_zcat_s), 0, 1, 0, 0}, - {0, 0, 0, 0, 0, 0, 0} -}; -static CYTHON_SMALL_CODE int __Pyx_InitCachedBuiltins(void) { - __pyx_builtin_UnicodeDecodeError = __Pyx_GetBuiltinName(__pyx_n_s_UnicodeDecodeError); if (!__pyx_builtin_UnicodeDecodeError) __PYX_ERR(0, 59, __pyx_L1_error) - __pyx_builtin_range = __Pyx_GetBuiltinName(__pyx_n_s_range); if (!__pyx_builtin_range) __PYX_ERR(0, 93, __pyx_L1_error) - return 0; - __pyx_L1_error:; - return -1; -} - -static CYTHON_SMALL_CODE int __Pyx_InitCachedConstants(void) { - __Pyx_RefNannyDeclarations - __Pyx_RefNannySetupContext("__Pyx_InitCachedConstants", 0); - - /* "pmercury/utils/tls_utils.pyx":65 - * def eval_fp_str_general(fp_str_): - * fp_str_ = '(%s)' % fp_str_ - * fp_str_ = fp_str_.replace('(','["').replace(')','"]').replace('][','],[') # <<<<<<<<<<<<<< - * new_str_ = fp_str_.replace('["[','[[').replace(']"]',']]') - * while new_str_ != fp_str_: - */ - __pyx_tuple__3 = PyTuple_Pack(2, __pyx_kp_u_, __pyx_kp_u__2); if (unlikely(!__pyx_tuple__3)) __PYX_ERR(0, 65, __pyx_L1_error) - __Pyx_GOTREF(__pyx_tuple__3); - __Pyx_GIVEREF(__pyx_tuple__3); - __pyx_tuple__6 = PyTuple_Pack(2, __pyx_kp_u__4, __pyx_kp_u__5); if (unlikely(!__pyx_tuple__6)) __PYX_ERR(0, 65, __pyx_L1_error) - __Pyx_GOTREF(__pyx_tuple__6); - __Pyx_GIVEREF(__pyx_tuple__6); - __pyx_tuple__9 = PyTuple_Pack(2, __pyx_kp_u__7, __pyx_kp_u__8); if (unlikely(!__pyx_tuple__9)) __PYX_ERR(0, 65, __pyx_L1_error) - __Pyx_GOTREF(__pyx_tuple__9); - __Pyx_GIVEREF(__pyx_tuple__9); - - /* "pmercury/utils/tls_utils.pyx":66 - * fp_str_ = '(%s)' % fp_str_ - * fp_str_ = fp_str_.replace('(','["').replace(')','"]').replace('][','],[') - * new_str_ = fp_str_.replace('["[','[[').replace(']"]',']]') # <<<<<<<<<<<<<< - * while new_str_ != fp_str_: - * fp_str_ = new_str_ - */ - __pyx_tuple__12 = PyTuple_Pack(2, __pyx_kp_u__10, __pyx_kp_u__11); if (unlikely(!__pyx_tuple__12)) __PYX_ERR(0, 66, __pyx_L1_error) - __Pyx_GOTREF(__pyx_tuple__12); - __Pyx_GIVEREF(__pyx_tuple__12); - __pyx_tuple__15 = PyTuple_Pack(2, __pyx_kp_u__13, __pyx_kp_u__14); if (unlikely(!__pyx_tuple__15)) __PYX_ERR(0, 66, __pyx_L1_error) - __Pyx_GOTREF(__pyx_tuple__15); - __Pyx_GIVEREF(__pyx_tuple__15); - - /* "pmercury/utils/tls_utils.pyx":76 - * fp_str_ = fp_str_ - * t_ = fp_str_.split(')') - * version = t_[0][1:] # <<<<<<<<<<<<<< - * cs = t_[1][1:] - * tmp_ext = fp_str_[len(cs)+9:-1] - */ - __pyx_slice__16 = PySlice_New(__pyx_int_1, Py_None, Py_None); if (unlikely(!__pyx_slice__16)) __PYX_ERR(0, 76, __pyx_L1_error) - __Pyx_GOTREF(__pyx_slice__16); - __Pyx_GIVEREF(__pyx_slice__16); - - /* "pmercury/utils/tls_utils.pyx":80 - * tmp_ext = fp_str_[len(cs)+9:-1] - * tmp_ext = tmp_ext.split(')') - * ext = [e_[1:] for e_ in tmp_ext[:-1]] # <<<<<<<<<<<<<< - * return [version, cs, ext] - * - */ - __pyx_slice__17 = PySlice_New(Py_None, __pyx_int_neg_1, Py_None); if (unlikely(!__pyx_slice__17)) __PYX_ERR(0, 80, __pyx_L1_error) - __Pyx_GOTREF(__pyx_slice__17); - __Pyx_GIVEREF(__pyx_slice__17); - - /* "pmercury/utils/tls_utils.pyx":107 - * if len(ext) == 0: - * break - * ext_type_ = ext[0:4] # <<<<<<<<<<<<<< - * ext_type_str_kind = str(int(ext_type_,16)) - * if ext_type_str_kind in imp_date_ext_data and convert: - */ - __pyx_slice__18 = PySlice_New(__pyx_int_0, __pyx_int_4, Py_None); if (unlikely(!__pyx_slice__18)) __PYX_ERR(0, 107, __pyx_L1_error) - __Pyx_GOTREF(__pyx_slice__18); - __Pyx_GIVEREF(__pyx_slice__18); - - /* "pmercury/utils/tls_utils.pyx":113 - * ext_data_ = '' - * if len(ext) > 4 and convert: - * ext_data_ = parse_extension_data(ext_type_, ext[4:], mode) # <<<<<<<<<<<<<< - * elif len(ext) > 4: - * ext_data_ = ext[4:] - */ - __pyx_slice__20 = PySlice_New(__pyx_int_4, Py_None, Py_None); if (unlikely(!__pyx_slice__20)) __PYX_ERR(0, 113, __pyx_L1_error) - __Pyx_GOTREF(__pyx_slice__20); - __Pyx_GIVEREF(__pyx_slice__20); - - /* "pmercury/utils/tls_utils.pyx":133 - * return dates_[-1], dates_[0] - * else: - * return None, None # <<<<<<<<<<<<<< - * - * - */ - __pyx_tuple__21 = PyTuple_Pack(2, Py_None, Py_None); if (unlikely(!__pyx_tuple__21)) __PYX_ERR(0, 133, __pyx_L1_error) - __Pyx_GOTREF(__pyx_tuple__21); - __Pyx_GIVEREF(__pyx_tuple__21); - - /* "pmercury/utils/tls_utils.pyx":231 - * return '' - * info = {} - * ext_len = int(data[0:2], 16) # <<<<<<<<<<<<<< - * info['supported_versions_list_length'] = ext_len - * info['supported_versions'] = [] - */ - __pyx_slice__23 = PySlice_New(__pyx_int_0, __pyx_int_2, Py_None); if (unlikely(!__pyx_slice__23)) __PYX_ERR(0, 231, __pyx_L1_error) - __Pyx_GOTREF(__pyx_slice__23); - __Pyx_GIVEREF(__pyx_slice__23); - - /* "pmercury/utils/tls_utils.pyx":250 - * return '' - * info = {} - * tmp_data = data[:4] # <<<<<<<<<<<<<< - * if tmp_data in TLS_VERSION: - * return TLS_VERSION[tmp_data] - */ - __pyx_slice__24 = PySlice_New(Py_None, __pyx_int_4, Py_None); if (unlikely(!__pyx_slice__24)) __PYX_ERR(0, 250, __pyx_L1_error) - __Pyx_GOTREF(__pyx_slice__24); - __Pyx_GIVEREF(__pyx_slice__24); - - /* "pmercury/utils/tls_utils.pyx":265 - * ext_len = int(data[0:2], 16) - * info['psk_key_exchange_modes_length'] = ext_len - * mode = int(data[2:4], 16) # <<<<<<<<<<<<<< - * info['psk_key_exchange_mode'] = TLS_PSK_KEY_EXCHANGE_MODES[mode] - * - */ - __pyx_slice__25 = PySlice_New(__pyx_int_2, __pyx_int_4, Py_None); if (unlikely(!__pyx_slice__25)) __PYX_ERR(0, 265, __pyx_L1_error) - __Pyx_GOTREF(__pyx_slice__25); - __Pyx_GIVEREF(__pyx_slice__25); - - /* "pmercury/utils/tls_utils.pyx":29 - * - * - * imp_date_cs_file = find_resource_path('resources/implementation_date_cs.json.gz') # <<<<<<<<<<<<<< - * IF UNAME_SYSNAME == "Windows": - * import gzip - */ - __pyx_tuple__29 = PyTuple_Pack(1, __pyx_kp_u_resources_implementation_date_cs); if (unlikely(!__pyx_tuple__29)) __PYX_ERR(0, 29, __pyx_L1_error) - __Pyx_GOTREF(__pyx_tuple__29); - __Pyx_GIVEREF(__pyx_tuple__29); - - /* "pmercury/utils/tls_utils.pyx":40 - * break - * - * imp_date_ext_file = find_resource_path('resources/implementation_date_ext.json.gz') # <<<<<<<<<<<<<< - * IF UNAME_SYSNAME == "Windows": - * import gzip - */ - __pyx_tuple__30 = PyTuple_Pack(1, __pyx_kp_u_resources_implementation_date_ex); if (unlikely(!__pyx_tuple__30)) __PYX_ERR(0, 40, __pyx_L1_error) - __Pyx_GOTREF(__pyx_tuple__30); - __Pyx_GIVEREF(__pyx_tuple__30); - - /* "pmercury/utils/tls_utils.pyx":53 - * - * - * def extract_server_name(bytes data, unsigned int offset, unsigned int data_len): # <<<<<<<<<<<<<< - * if data_len - offset < 7: - * return 'None' - */ - __pyx_tuple__31 = PyTuple_Pack(4, __pyx_n_s_data, __pyx_n_s_offset, __pyx_n_s_data_len, __pyx_n_s_sni_len); if (unlikely(!__pyx_tuple__31)) __PYX_ERR(0, 53, __pyx_L1_error) - __Pyx_GOTREF(__pyx_tuple__31); - __Pyx_GIVEREF(__pyx_tuple__31); - __pyx_codeobj__32 = (PyObject*)__Pyx_PyCode_New(3, 0, 4, 0, CO_OPTIMIZED|CO_NEWLOCALS, __pyx_empty_bytes, __pyx_empty_tuple, __pyx_empty_tuple, __pyx_tuple__31, __pyx_empty_tuple, __pyx_empty_tuple, __pyx_kp_s_pmercury_utils_tls_utils_pyx, __pyx_n_s_extract_server_name, 53, __pyx_empty_bytes); if (unlikely(!__pyx_codeobj__32)) __PYX_ERR(0, 53, __pyx_L1_error) - - /* "pmercury/utils/tls_utils.pyx":63 - * - * - * def eval_fp_str_general(fp_str_): # <<<<<<<<<<<<<< - * fp_str_ = '(%s)' % fp_str_ - * fp_str_ = fp_str_.replace('(','["').replace(')','"]').replace('][','],[') - */ - __pyx_tuple__33 = PyTuple_Pack(2, __pyx_n_s_fp_str, __pyx_n_s_new_str); if (unlikely(!__pyx_tuple__33)) __PYX_ERR(0, 63, __pyx_L1_error) - __Pyx_GOTREF(__pyx_tuple__33); - __Pyx_GIVEREF(__pyx_tuple__33); - __pyx_codeobj__34 = (PyObject*)__Pyx_PyCode_New(1, 0, 2, 0, CO_OPTIMIZED|CO_NEWLOCALS, __pyx_empty_bytes, __pyx_empty_tuple, __pyx_empty_tuple, __pyx_tuple__33, __pyx_empty_tuple, __pyx_empty_tuple, __pyx_kp_s_pmercury_utils_tls_utils_pyx, __pyx_n_s_eval_fp_str_general, 63, __pyx_empty_bytes); if (unlikely(!__pyx_codeobj__34)) __PYX_ERR(0, 63, __pyx_L1_error) - - /* "pmercury/utils/tls_utils.pyx":73 - * - * - * def eval_fp_str(fp_str_): # <<<<<<<<<<<<<< - * fp_str_ = fp_str_ - * t_ = fp_str_.split(')') - */ - __pyx_tuple__35 = PyTuple_Pack(7, __pyx_n_s_fp_str, __pyx_n_s_t, __pyx_n_s_version, __pyx_n_s_cs, __pyx_n_s_tmp_ext, __pyx_n_s_ext_2, __pyx_n_s_e); if (unlikely(!__pyx_tuple__35)) __PYX_ERR(0, 73, __pyx_L1_error) - __Pyx_GOTREF(__pyx_tuple__35); - __Pyx_GIVEREF(__pyx_tuple__35); - __pyx_codeobj__36 = (PyObject*)__Pyx_PyCode_New(1, 0, 7, 0, CO_OPTIMIZED|CO_NEWLOCALS, __pyx_empty_bytes, __pyx_empty_tuple, __pyx_empty_tuple, __pyx_tuple__35, __pyx_empty_tuple, __pyx_empty_tuple, __pyx_kp_s_pmercury_utils_tls_utils_pyx, __pyx_n_s_eval_fp_str, 73, __pyx_empty_bytes); if (unlikely(!__pyx_codeobj__36)) __PYX_ERR(0, 73, __pyx_L1_error) - - /* "pmercury/utils/tls_utils.pyx":84 - * - * - * def get_version_from_str(version_str_, convert=True): # <<<<<<<<<<<<<< - * if version_str_ in TLS_VERSION and convert: - * return TLS_VERSION[version_str_] - */ - __pyx_tuple__37 = PyTuple_Pack(2, __pyx_n_s_version_str, __pyx_n_s_convert); if (unlikely(!__pyx_tuple__37)) __PYX_ERR(0, 84, __pyx_L1_error) - __Pyx_GOTREF(__pyx_tuple__37); - __Pyx_GIVEREF(__pyx_tuple__37); - __pyx_codeobj__38 = (PyObject*)__Pyx_PyCode_New(2, 0, 2, 0, CO_OPTIMIZED|CO_NEWLOCALS, __pyx_empty_bytes, __pyx_empty_tuple, __pyx_empty_tuple, __pyx_tuple__37, __pyx_empty_tuple, __pyx_empty_tuple, __pyx_kp_s_pmercury_utils_tls_utils_pyx, __pyx_n_s_get_version_from_str, 84, __pyx_empty_bytes); if (unlikely(!__pyx_codeobj__38)) __PYX_ERR(0, 84, __pyx_L1_error) - - /* "pmercury/utils/tls_utils.pyx":91 - * - * - * def get_cs_from_str(cs_str_, convert=True): # <<<<<<<<<<<<<< - * cs_l_ = [] - * for i in range(0,len(cs_str_),4): - */ - __pyx_tuple__39 = PyTuple_Pack(5, __pyx_n_s_cs_str, __pyx_n_s_convert, __pyx_n_s_cs_l, __pyx_n_s_i, __pyx_n_s_cs_2); if (unlikely(!__pyx_tuple__39)) __PYX_ERR(0, 91, __pyx_L1_error) - __Pyx_GOTREF(__pyx_tuple__39); - __Pyx_GIVEREF(__pyx_tuple__39); - __pyx_codeobj__40 = (PyObject*)__Pyx_PyCode_New(2, 0, 5, 0, CO_OPTIMIZED|CO_NEWLOCALS, __pyx_empty_bytes, __pyx_empty_tuple, __pyx_empty_tuple, __pyx_tuple__39, __pyx_empty_tuple, __pyx_empty_tuple, __pyx_kp_s_pmercury_utils_tls_utils_pyx, __pyx_n_s_get_cs_from_str, 91, __pyx_empty_bytes); if (unlikely(!__pyx_codeobj__40)) __PYX_ERR(0, 91, __pyx_L1_error) - - /* "pmercury/utils/tls_utils.pyx":102 - * - * - * def get_ext_from_str(exts_, convert=True, mode='client'): # <<<<<<<<<<<<<< - * ext_l_ = [] - * for ext in exts_: - */ - __pyx_tuple__41 = PyTuple_Pack(8, __pyx_n_s_exts, __pyx_n_s_convert, __pyx_n_s_mode, __pyx_n_s_ext_l, __pyx_n_s_ext_2, __pyx_n_s_ext_type_2, __pyx_n_s_ext_type_str_kind, __pyx_n_s_ext_data); if (unlikely(!__pyx_tuple__41)) __PYX_ERR(0, 102, __pyx_L1_error) - __Pyx_GOTREF(__pyx_tuple__41); - __Pyx_GIVEREF(__pyx_tuple__41); - __pyx_codeobj__42 = (PyObject*)__Pyx_PyCode_New(3, 0, 8, 0, CO_OPTIMIZED|CO_NEWLOCALS, __pyx_empty_bytes, __pyx_empty_tuple, __pyx_empty_tuple, __pyx_tuple__41, __pyx_empty_tuple, __pyx_empty_tuple, __pyx_kp_s_pmercury_utils_tls_utils_pyx, __pyx_n_s_get_ext_from_str, 102, __pyx_empty_bytes); if (unlikely(!__pyx_codeobj__42)) __PYX_ERR(0, 102, __pyx_L1_error) - - /* "pmercury/utils/tls_utils.pyx":122 - * - * - * def get_implementation_date(cs_str_): # @TODO: add extension # <<<<<<<<<<<<<< - * dates_ = set([]) - * for i in range(0,len(cs_str_),4): - */ - __pyx_tuple__43 = PyTuple_Pack(4, __pyx_n_s_cs_str, __pyx_n_s_dates, __pyx_n_s_i, __pyx_n_s_cs_2); if (unlikely(!__pyx_tuple__43)) __PYX_ERR(0, 122, __pyx_L1_error) - __Pyx_GOTREF(__pyx_tuple__43); - __Pyx_GIVEREF(__pyx_tuple__43); - __pyx_codeobj__44 = (PyObject*)__Pyx_PyCode_New(1, 0, 4, 0, CO_OPTIMIZED|CO_NEWLOCALS, __pyx_empty_bytes, __pyx_empty_tuple, __pyx_empty_tuple, __pyx_tuple__43, __pyx_empty_tuple, __pyx_empty_tuple, __pyx_kp_s_pmercury_utils_tls_utils_pyx, __pyx_n_s_get_implementation_date, 122, __pyx_empty_bytes); if (unlikely(!__pyx_codeobj__44)) __PYX_ERR(0, 122, __pyx_L1_error) - - /* "pmercury/utils/tls_utils.pyx":136 - * - * - * def parse_extension_data(ext_type, ext_data_, mode): # <<<<<<<<<<<<<< - * ext_len = int(ext_data_[0:4],16) - * ext_data = ext_data_[4:] - */ - __pyx_tuple__45 = PyTuple_Pack(5, __pyx_n_s_ext_type, __pyx_n_s_ext_data, __pyx_n_s_mode, __pyx_n_s_ext_len, __pyx_n_s_ext_data_2); if (unlikely(!__pyx_tuple__45)) __PYX_ERR(0, 136, __pyx_L1_error) - __Pyx_GOTREF(__pyx_tuple__45); - __Pyx_GIVEREF(__pyx_tuple__45); - __pyx_codeobj__46 = (PyObject*)__Pyx_PyCode_New(3, 0, 5, 0, CO_OPTIMIZED|CO_NEWLOCALS, __pyx_empty_bytes, __pyx_empty_tuple, __pyx_empty_tuple, __pyx_tuple__45, __pyx_empty_tuple, __pyx_empty_tuple, __pyx_kp_s_pmercury_utils_tls_utils_pyx, __pyx_n_s_parse_extension_data, 136, __pyx_empty_bytes); if (unlikely(!__pyx_codeobj__46)) __PYX_ERR(0, 136, __pyx_L1_error) - - /* "pmercury/utils/tls_utils.pyx":164 - * - * # helper to parse/extract/skip single extension - * def parse_extension(bytes data, unsigned int offset): # <<<<<<<<<<<<<< - * cdef str tmp_ext_type = degrease_type_code(data, offset) - * cdef str fp_ext_ = tmp_ext_type - */ - __pyx_tuple__47 = PyTuple_Pack(6, __pyx_n_s_data, __pyx_n_s_offset, __pyx_n_s_tmp_ext_type, __pyx_n_s_fp_ext, __pyx_n_s_ext_len, __pyx_n_s_tmp_ext_value); if (unlikely(!__pyx_tuple__47)) __PYX_ERR(0, 164, __pyx_L1_error) - __Pyx_GOTREF(__pyx_tuple__47); - __Pyx_GIVEREF(__pyx_tuple__47); - __pyx_codeobj__48 = (PyObject*)__Pyx_PyCode_New(2, 0, 6, 0, CO_OPTIMIZED|CO_NEWLOCALS, __pyx_empty_bytes, __pyx_empty_tuple, __pyx_empty_tuple, __pyx_tuple__47, __pyx_empty_tuple, __pyx_empty_tuple, __pyx_kp_s_pmercury_utils_tls_utils_pyx, __pyx_n_s_parse_extension, 164, __pyx_empty_bytes); if (unlikely(!__pyx_codeobj__48)) __PYX_ERR(0, 164, __pyx_L1_error) - - /* "pmercury/utils/tls_utils.pyx":179 - * - * # helper to normalize grease type codes - * def degrease_type_code(unsigned char *data, unsigned int offset): # <<<<<<<<<<<<<< - * if data[offset] in grease_single_int_ and data[offset] == data[offset+1]: - * return '0a0a' - */ - __pyx_tuple__49 = PyTuple_Pack(2, __pyx_n_s_data, __pyx_n_s_offset); if (unlikely(!__pyx_tuple__49)) __PYX_ERR(0, 179, __pyx_L1_error) - __Pyx_GOTREF(__pyx_tuple__49); - __Pyx_GIVEREF(__pyx_tuple__49); - __pyx_codeobj__50 = (PyObject*)__Pyx_PyCode_New(2, 0, 2, 0, CO_OPTIMIZED|CO_NEWLOCALS, __pyx_empty_bytes, __pyx_empty_tuple, __pyx_empty_tuple, __pyx_tuple__49, __pyx_empty_tuple, __pyx_empty_tuple, __pyx_kp_s_pmercury_utils_tls_utils_pyx, __pyx_n_s_degrease_type_code, 179, __pyx_empty_bytes); if (unlikely(!__pyx_codeobj__50)) __PYX_ERR(0, 179, __pyx_L1_error) - - /* "pmercury/utils/tls_utils.pyx":187 - * - * # helper to normalize grease within supported_groups and supported_versions - * def degrease_ext_data(unsigned char *data, unsigned int offset, str ext_type, unsigned int ext_length, bytes ext_value): # <<<<<<<<<<<<<< - * degreased_ext_value = b'' - * if ext_type == '000a': # supported_groups - */ - __pyx_tuple__51 = PyTuple_Pack(7, __pyx_n_s_data, __pyx_n_s_offset, __pyx_n_s_ext_type, __pyx_n_s_ext_length, __pyx_n_s_ext_value, __pyx_n_s_degreased_ext_value, __pyx_n_s_i); if (unlikely(!__pyx_tuple__51)) __PYX_ERR(0, 187, __pyx_L1_error) - __Pyx_GOTREF(__pyx_tuple__51); - __Pyx_GIVEREF(__pyx_tuple__51); - __pyx_codeobj__52 = (PyObject*)__Pyx_PyCode_New(5, 0, 7, 0, CO_OPTIMIZED|CO_NEWLOCALS, __pyx_empty_bytes, __pyx_empty_tuple, __pyx_empty_tuple, __pyx_tuple__51, __pyx_empty_tuple, __pyx_empty_tuple, __pyx_kp_s_pmercury_utils_tls_utils_pyx, __pyx_n_s_degrease_ext_data, 187, __pyx_empty_bytes); if (unlikely(!__pyx_codeobj__52)) __PYX_ERR(0, 187, __pyx_L1_error) - - /* "pmercury/utils/tls_utils.pyx":209 - * - * - * def supported_groups(data, length): # <<<<<<<<<<<<<< - * if len(data) < 2: - * return '' - */ - __pyx_tuple__53 = PyTuple_Pack(5, __pyx_n_s_data, __pyx_n_s_length, __pyx_n_s_info, __pyx_n_s_ext_len, __pyx_n_s_offset); if (unlikely(!__pyx_tuple__53)) __PYX_ERR(0, 209, __pyx_L1_error) - __Pyx_GOTREF(__pyx_tuple__53); - __Pyx_GIVEREF(__pyx_tuple__53); - __pyx_codeobj__54 = (PyObject*)__Pyx_PyCode_New(2, 0, 5, 0, CO_OPTIMIZED|CO_NEWLOCALS, __pyx_empty_bytes, __pyx_empty_tuple, __pyx_empty_tuple, __pyx_tuple__53, __pyx_empty_tuple, __pyx_empty_tuple, __pyx_kp_s_pmercury_utils_tls_utils_pyx, __pyx_n_s_supported_groups, 209, __pyx_empty_bytes); if (unlikely(!__pyx_codeobj__54)) __PYX_ERR(0, 209, __pyx_L1_error) - - /* "pmercury/utils/tls_utils.pyx":227 - * - * - * def supported_versions(data, length): # <<<<<<<<<<<<<< - * if len(data) < 2: - * return '' - */ - __pyx_tuple__55 = PyTuple_Pack(6, __pyx_n_s_data, __pyx_n_s_length, __pyx_n_s_info, __pyx_n_s_ext_len, __pyx_n_s_offset, __pyx_n_s_tmp_data); if (unlikely(!__pyx_tuple__55)) __PYX_ERR(0, 227, __pyx_L1_error) - __Pyx_GOTREF(__pyx_tuple__55); - __Pyx_GIVEREF(__pyx_tuple__55); - __pyx_codeobj__56 = (PyObject*)__Pyx_PyCode_New(2, 0, 6, 0, CO_OPTIMIZED|CO_NEWLOCALS, __pyx_empty_bytes, __pyx_empty_tuple, __pyx_empty_tuple, __pyx_tuple__55, __pyx_empty_tuple, __pyx_empty_tuple, __pyx_kp_s_pmercury_utils_tls_utils_pyx, __pyx_n_s_supported_versions, 227, __pyx_empty_bytes); if (unlikely(!__pyx_codeobj__56)) __PYX_ERR(0, 227, __pyx_L1_error) - - /* "pmercury/utils/tls_utils.pyx":246 - * - * - * def supported_versions_server(data, length): # <<<<<<<<<<<<<< - * if len(data) < 2: - * return '' - */ - __pyx_tuple__57 = PyTuple_Pack(4, __pyx_n_s_data, __pyx_n_s_length, __pyx_n_s_info, __pyx_n_s_tmp_data); if (unlikely(!__pyx_tuple__57)) __PYX_ERR(0, 246, __pyx_L1_error) - __Pyx_GOTREF(__pyx_tuple__57); - __Pyx_GIVEREF(__pyx_tuple__57); - __pyx_codeobj__58 = (PyObject*)__Pyx_PyCode_New(2, 0, 4, 0, CO_OPTIMIZED|CO_NEWLOCALS, __pyx_empty_bytes, __pyx_empty_tuple, __pyx_empty_tuple, __pyx_tuple__57, __pyx_empty_tuple, __pyx_empty_tuple, __pyx_kp_s_pmercury_utils_tls_utils_pyx, __pyx_n_s_supported_versions_server, 246, __pyx_empty_bytes); if (unlikely(!__pyx_codeobj__58)) __PYX_ERR(0, 246, __pyx_L1_error) - - /* "pmercury/utils/tls_utils.pyx":259 - * - * - * def psk_key_exchange_modes(data, length): # <<<<<<<<<<<<<< - * if len(data) < 2: - * return '' - */ - __pyx_tuple__59 = PyTuple_Pack(5, __pyx_n_s_data, __pyx_n_s_length, __pyx_n_s_info, __pyx_n_s_ext_len, __pyx_n_s_mode); if (unlikely(!__pyx_tuple__59)) __PYX_ERR(0, 259, __pyx_L1_error) - __Pyx_GOTREF(__pyx_tuple__59); - __Pyx_GIVEREF(__pyx_tuple__59); - __pyx_codeobj__60 = (PyObject*)__Pyx_PyCode_New(2, 0, 5, 0, CO_OPTIMIZED|CO_NEWLOCALS, __pyx_empty_bytes, __pyx_empty_tuple, __pyx_empty_tuple, __pyx_tuple__59, __pyx_empty_tuple, __pyx_empty_tuple, __pyx_kp_s_pmercury_utils_tls_utils_pyx, __pyx_n_s_psk_key_exchange_modes, 259, __pyx_empty_bytes); if (unlikely(!__pyx_codeobj__60)) __PYX_ERR(0, 259, __pyx_L1_error) - - /* "pmercury/utils/tls_utils.pyx":271 - * - * - * def key_share_client(data, length): # <<<<<<<<<<<<<< - * if len(data) < 2: - * return '' - */ - __pyx_tuple__61 = PyTuple_Pack(7, __pyx_n_s_data, __pyx_n_s_length, __pyx_n_s_info, __pyx_n_s_ext_len, __pyx_n_s_offset, __pyx_n_s_tmp_obj, __pyx_n_s_tmp_data); if (unlikely(!__pyx_tuple__61)) __PYX_ERR(0, 271, __pyx_L1_error) - __Pyx_GOTREF(__pyx_tuple__61); - __Pyx_GIVEREF(__pyx_tuple__61); - __pyx_codeobj__62 = (PyObject*)__Pyx_PyCode_New(2, 0, 7, 0, CO_OPTIMIZED|CO_NEWLOCALS, __pyx_empty_bytes, __pyx_empty_tuple, __pyx_empty_tuple, __pyx_tuple__61, __pyx_empty_tuple, __pyx_empty_tuple, __pyx_kp_s_pmercury_utils_tls_utils_pyx, __pyx_n_s_key_share_client, 271, __pyx_empty_bytes); if (unlikely(!__pyx_codeobj__62)) __PYX_ERR(0, 271, __pyx_L1_error) - - /* "pmercury/utils/tls_utils.pyx":291 - * - * - * def ec_point_formats(data, length): # <<<<<<<<<<<<<< - * if len(data) < 2: - * return '' - */ - __pyx_tuple__63 = PyTuple_Pack(6, __pyx_n_s_data, __pyx_n_s_length, __pyx_n_s_info, __pyx_n_s_ext_len, __pyx_n_s_i, __pyx_n_s_tmp_data); if (unlikely(!__pyx_tuple__63)) __PYX_ERR(0, 291, __pyx_L1_error) - __Pyx_GOTREF(__pyx_tuple__63); - __Pyx_GIVEREF(__pyx_tuple__63); - __pyx_codeobj__64 = (PyObject*)__Pyx_PyCode_New(2, 0, 6, 0, CO_OPTIMIZED|CO_NEWLOCALS, __pyx_empty_bytes, __pyx_empty_tuple, __pyx_empty_tuple, __pyx_tuple__63, __pyx_empty_tuple, __pyx_empty_tuple, __pyx_kp_s_pmercury_utils_tls_utils_pyx, __pyx_n_s_ec_point_formats, 291, __pyx_empty_bytes); if (unlikely(!__pyx_codeobj__64)) __PYX_ERR(0, 291, __pyx_L1_error) - - /* "pmercury/utils/tls_utils.pyx":308 - * - * - * def status_request(data, length): # <<<<<<<<<<<<<< - * if len(data) < 2: - * return '' - */ - __pyx_tuple__65 = PyTuple_Pack(4, __pyx_n_s_data, __pyx_n_s_length, __pyx_n_s_info, __pyx_n_s_offset); if (unlikely(!__pyx_tuple__65)) __PYX_ERR(0, 308, __pyx_L1_error) - __Pyx_GOTREF(__pyx_tuple__65); - __Pyx_GIVEREF(__pyx_tuple__65); - __pyx_codeobj__66 = (PyObject*)__Pyx_PyCode_New(2, 0, 4, 0, CO_OPTIMIZED|CO_NEWLOCALS, __pyx_empty_bytes, __pyx_empty_tuple, __pyx_empty_tuple, __pyx_tuple__65, __pyx_empty_tuple, __pyx_empty_tuple, __pyx_kp_s_pmercury_utils_tls_utils_pyx, __pyx_n_s_status_request, 308, __pyx_empty_bytes); if (unlikely(!__pyx_codeobj__66)) __PYX_ERR(0, 308, __pyx_L1_error) - - /* "pmercury/utils/tls_utils.pyx":321 - * - * - * def signature_algorithms(data, length): # <<<<<<<<<<<<<< - * if len(data) < 2: - * return '' - */ - __pyx_tuple__67 = PyTuple_Pack(6, __pyx_n_s_data, __pyx_n_s_length, __pyx_n_s_info, __pyx_n_s_ext_len, __pyx_n_s_offset, __pyx_n_s_tmp_data); if (unlikely(!__pyx_tuple__67)) __PYX_ERR(0, 321, __pyx_L1_error) - __Pyx_GOTREF(__pyx_tuple__67); - __Pyx_GIVEREF(__pyx_tuple__67); - __pyx_codeobj__68 = (PyObject*)__Pyx_PyCode_New(2, 0, 6, 0, CO_OPTIMIZED|CO_NEWLOCALS, __pyx_empty_bytes, __pyx_empty_tuple, __pyx_empty_tuple, __pyx_tuple__67, __pyx_empty_tuple, __pyx_empty_tuple, __pyx_kp_s_pmercury_utils_tls_utils_pyx, __pyx_n_s_signature_algorithms, 321, __pyx_empty_bytes); if (unlikely(!__pyx_codeobj__68)) __PYX_ERR(0, 321, __pyx_L1_error) - - /* "pmercury/utils/tls_utils.pyx":340 - * - * - * def parse_application_layer_protocol_negotiation(data, length): # <<<<<<<<<<<<<< - * alpn_len = int(data[0:4], 16) - * alpn_offset = 4 - */ - __pyx_tuple__69 = PyTuple_Pack(6, __pyx_n_s_data, __pyx_n_s_length, __pyx_n_s_alpn_len, __pyx_n_s_alpn_offset, __pyx_n_s_alpn_data, __pyx_n_s_tmp_alpn_len); if (unlikely(!__pyx_tuple__69)) __PYX_ERR(0, 340, __pyx_L1_error) - __Pyx_GOTREF(__pyx_tuple__69); - __Pyx_GIVEREF(__pyx_tuple__69); - __pyx_codeobj__70 = (PyObject*)__Pyx_PyCode_New(2, 0, 6, 0, CO_OPTIMIZED|CO_NEWLOCALS, __pyx_empty_bytes, __pyx_empty_tuple, __pyx_empty_tuple, __pyx_tuple__69, __pyx_empty_tuple, __pyx_empty_tuple, __pyx_kp_s_pmercury_utils_tls_utils_pyx, __pyx_n_s_parse_application_layer_protocol, 340, __pyx_empty_bytes); if (unlikely(!__pyx_codeobj__70)) __PYX_ERR(0, 340, __pyx_L1_error) - - /* "pmercury/utils/tls_utils.pyx":353 - * - * - * def get_tls_params(fp_): # <<<<<<<<<<<<<< - * cs_ = [] - * for i in range(0,len(fp_[1][0]),4): - */ - __pyx_tuple__71 = PyTuple_Pack(6, __pyx_n_s_fp, __pyx_n_s_cs_2, __pyx_n_s_i, __pyx_n_s_cs_4, __pyx_n_s_ext, __pyx_n_s_t_ext); if (unlikely(!__pyx_tuple__71)) __PYX_ERR(0, 353, __pyx_L1_error) - __Pyx_GOTREF(__pyx_tuple__71); - __Pyx_GIVEREF(__pyx_tuple__71); - __pyx_codeobj__72 = (PyObject*)__Pyx_PyCode_New(1, 0, 6, 0, CO_OPTIMIZED|CO_NEWLOCALS, __pyx_empty_bytes, __pyx_empty_tuple, __pyx_empty_tuple, __pyx_tuple__71, __pyx_empty_tuple, __pyx_empty_tuple, __pyx_kp_s_pmercury_utils_tls_utils_pyx, __pyx_n_s_get_tls_params, 353, __pyx_empty_bytes); if (unlikely(!__pyx_codeobj__72)) __PYX_ERR(0, 353, __pyx_L1_error) - - /* "pmercury/utils/tls_utils.pyx":367 - * - * - * def get_sequence(fp_): # <<<<<<<<<<<<<< - * seq = [] - * cs_ = fp_[1][0] - */ - __pyx_tuple__73 = PyTuple_Pack(6, __pyx_n_s_fp, __pyx_n_s_seq, __pyx_n_s_cs_2, __pyx_n_s_i, __pyx_n_s_ext, __pyx_n_s_t_ext); if (unlikely(!__pyx_tuple__73)) __PYX_ERR(0, 367, __pyx_L1_error) - __Pyx_GOTREF(__pyx_tuple__73); - __Pyx_GIVEREF(__pyx_tuple__73); - __pyx_codeobj__74 = (PyObject*)__Pyx_PyCode_New(1, 0, 6, 0, CO_OPTIMIZED|CO_NEWLOCALS, __pyx_empty_bytes, __pyx_empty_tuple, __pyx_empty_tuple, __pyx_tuple__73, __pyx_empty_tuple, __pyx_empty_tuple, __pyx_kp_s_pmercury_utils_tls_utils_pyx, __pyx_n_s_get_sequence, 367, __pyx_empty_bytes); if (unlikely(!__pyx_codeobj__74)) __PYX_ERR(0, 367, __pyx_L1_error) - - /* "pmercury/utils/tls_utils.pyx":379 - * - * - * def get_ngram(l, ngram): # <<<<<<<<<<<<<< - * l_ = [] - * for i in range(0,len(l)-ngram): - */ - __pyx_tuple__75 = PyTuple_Pack(6, __pyx_n_s_l, __pyx_n_s_ngram, __pyx_n_s_l_2, __pyx_n_s_i, __pyx_n_s_s_2, __pyx_n_s_j); if (unlikely(!__pyx_tuple__75)) __PYX_ERR(0, 379, __pyx_L1_error) - __Pyx_GOTREF(__pyx_tuple__75); - __Pyx_GIVEREF(__pyx_tuple__75); - __pyx_codeobj__76 = (PyObject*)__Pyx_PyCode_New(2, 0, 6, 0, CO_OPTIMIZED|CO_NEWLOCALS, __pyx_empty_bytes, __pyx_empty_tuple, __pyx_empty_tuple, __pyx_tuple__75, __pyx_empty_tuple, __pyx_empty_tuple, __pyx_kp_s_pmercury_utils_tls_utils_pyx, __pyx_n_s_get_ngram, 379, __pyx_empty_bytes); if (unlikely(!__pyx_codeobj__76)) __PYX_ERR(0, 379, __pyx_L1_error) - __Pyx_RefNannyFinishContext(); - return 0; - __pyx_L1_error:; - __Pyx_RefNannyFinishContext(); - return -1; -} - -static CYTHON_SMALL_CODE int __Pyx_InitGlobals(void) { - __pyx_umethod_PyBytes_Type_hex.type = (PyObject*)&PyBytes_Type; - __pyx_umethod_PySet_Type_union.type = (PyObject*)&PySet_Type; - if (__Pyx_InitStrings(__pyx_string_tab) < 0) __PYX_ERR(0, 1, __pyx_L1_error); - __pyx_int_0 = PyInt_FromLong(0); if (unlikely(!__pyx_int_0)) __PYX_ERR(0, 1, __pyx_L1_error) - __pyx_int_1 = PyInt_FromLong(1); if (unlikely(!__pyx_int_1)) __PYX_ERR(0, 1, __pyx_L1_error) - __pyx_int_2 = PyInt_FromLong(2); if (unlikely(!__pyx_int_2)) __PYX_ERR(0, 1, __pyx_L1_error) - __pyx_int_4 = PyInt_FromLong(4); if (unlikely(!__pyx_int_4)) __PYX_ERR(0, 1, __pyx_L1_error) - __pyx_int_8 = PyInt_FromLong(8); if (unlikely(!__pyx_int_8)) __PYX_ERR(0, 1, __pyx_L1_error) - __pyx_int_10 = PyInt_FromLong(10); if (unlikely(!__pyx_int_10)) __PYX_ERR(0, 1, __pyx_L1_error) - __pyx_int_16 = PyInt_FromLong(16); if (unlikely(!__pyx_int_16)) __PYX_ERR(0, 1, __pyx_L1_error) - __pyx_int_26 = PyInt_FromLong(26); if (unlikely(!__pyx_int_26)) __PYX_ERR(0, 1, __pyx_L1_error) - __pyx_int_42 = PyInt_FromLong(42); if (unlikely(!__pyx_int_42)) __PYX_ERR(0, 1, __pyx_L1_error) - __pyx_int_58 = PyInt_FromLong(58); if (unlikely(!__pyx_int_58)) __PYX_ERR(0, 1, __pyx_L1_error) - __pyx_int_74 = PyInt_FromLong(74); if (unlikely(!__pyx_int_74)) __PYX_ERR(0, 1, __pyx_L1_error) - __pyx_int_90 = PyInt_FromLong(90); if (unlikely(!__pyx_int_90)) __PYX_ERR(0, 1, __pyx_L1_error) - __pyx_int_106 = PyInt_FromLong(106); if (unlikely(!__pyx_int_106)) __PYX_ERR(0, 1, __pyx_L1_error) - __pyx_int_122 = PyInt_FromLong(122); if (unlikely(!__pyx_int_122)) __PYX_ERR(0, 1, __pyx_L1_error) - __pyx_int_138 = PyInt_FromLong(138); if (unlikely(!__pyx_int_138)) __PYX_ERR(0, 1, __pyx_L1_error) - __pyx_int_154 = PyInt_FromLong(154); if (unlikely(!__pyx_int_154)) __PYX_ERR(0, 1, __pyx_L1_error) - __pyx_int_170 = PyInt_FromLong(170); if (unlikely(!__pyx_int_170)) __PYX_ERR(0, 1, __pyx_L1_error) - __pyx_int_186 = PyInt_FromLong(186); if (unlikely(!__pyx_int_186)) __PYX_ERR(0, 1, __pyx_L1_error) - __pyx_int_202 = PyInt_FromLong(202); if (unlikely(!__pyx_int_202)) __PYX_ERR(0, 1, __pyx_L1_error) - __pyx_int_218 = PyInt_FromLong(218); if (unlikely(!__pyx_int_218)) __PYX_ERR(0, 1, __pyx_L1_error) - __pyx_int_234 = PyInt_FromLong(234); if (unlikely(!__pyx_int_234)) __PYX_ERR(0, 1, __pyx_L1_error) - __pyx_int_250 = PyInt_FromLong(250); if (unlikely(!__pyx_int_250)) __PYX_ERR(0, 1, __pyx_L1_error) - __pyx_int_neg_1 = PyInt_FromLong(-1); if (unlikely(!__pyx_int_neg_1)) __PYX_ERR(0, 1, __pyx_L1_error) - return 0; - __pyx_L1_error:; - return -1; -} - -static CYTHON_SMALL_CODE int __Pyx_modinit_global_init_code(void); /*proto*/ -static CYTHON_SMALL_CODE int __Pyx_modinit_variable_export_code(void); /*proto*/ -static CYTHON_SMALL_CODE int __Pyx_modinit_function_export_code(void); /*proto*/ -static CYTHON_SMALL_CODE int __Pyx_modinit_type_init_code(void); /*proto*/ -static CYTHON_SMALL_CODE int __Pyx_modinit_type_import_code(void); /*proto*/ -static CYTHON_SMALL_CODE int __Pyx_modinit_variable_import_code(void); /*proto*/ -static CYTHON_SMALL_CODE int __Pyx_modinit_function_import_code(void); /*proto*/ - -static int __Pyx_modinit_global_init_code(void) { - __Pyx_RefNannyDeclarations - __Pyx_RefNannySetupContext("__Pyx_modinit_global_init_code", 0); - /*--- Global init code ---*/ - __pyx_v_8pmercury_5utils_9tls_utils_grease_ = ((PyObject*)Py_None); Py_INCREF(Py_None); - __pyx_v_8pmercury_5utils_9tls_utils_grease_single_int_ = ((PyObject*)Py_None); Py_INCREF(Py_None); - __pyx_v_8pmercury_5utils_9tls_utils_ext_data_extract_ = ((PyObject*)Py_None); Py_INCREF(Py_None); - __Pyx_RefNannyFinishContext(); - return 0; -} - -static int __Pyx_modinit_variable_export_code(void) { - __Pyx_RefNannyDeclarations - __Pyx_RefNannySetupContext("__Pyx_modinit_variable_export_code", 0); - /*--- Variable export code ---*/ - __Pyx_RefNannyFinishContext(); - return 0; -} - -static int __Pyx_modinit_function_export_code(void) { - __Pyx_RefNannyDeclarations - __Pyx_RefNannySetupContext("__Pyx_modinit_function_export_code", 0); - /*--- Function export code ---*/ - __Pyx_RefNannyFinishContext(); - return 0; -} - -static int __Pyx_modinit_type_init_code(void) { - __Pyx_RefNannyDeclarations - __Pyx_RefNannySetupContext("__Pyx_modinit_type_init_code", 0); - /*--- Type init code ---*/ - __Pyx_RefNannyFinishContext(); - return 0; -} - -static int __Pyx_modinit_type_import_code(void) { - __Pyx_RefNannyDeclarations - __Pyx_RefNannySetupContext("__Pyx_modinit_type_import_code", 0); - /*--- Type import code ---*/ - __Pyx_RefNannyFinishContext(); - return 0; -} - -static int __Pyx_modinit_variable_import_code(void) { - __Pyx_RefNannyDeclarations - __Pyx_RefNannySetupContext("__Pyx_modinit_variable_import_code", 0); - /*--- Variable import code ---*/ - __Pyx_RefNannyFinishContext(); - return 0; -} - -static int __Pyx_modinit_function_import_code(void) { - __Pyx_RefNannyDeclarations - __Pyx_RefNannySetupContext("__Pyx_modinit_function_import_code", 0); - /*--- Function import code ---*/ - __Pyx_RefNannyFinishContext(); - return 0; -} - - -#if PY_MAJOR_VERSION < 3 -#ifdef CYTHON_NO_PYINIT_EXPORT -#define __Pyx_PyMODINIT_FUNC void -#else -#define __Pyx_PyMODINIT_FUNC PyMODINIT_FUNC -#endif -#else -#ifdef CYTHON_NO_PYINIT_EXPORT -#define __Pyx_PyMODINIT_FUNC PyObject * -#else -#define __Pyx_PyMODINIT_FUNC PyMODINIT_FUNC -#endif -#endif - - -#if PY_MAJOR_VERSION < 3 -__Pyx_PyMODINIT_FUNC inittls_utils(void) CYTHON_SMALL_CODE; /*proto*/ -__Pyx_PyMODINIT_FUNC inittls_utils(void) -#else -__Pyx_PyMODINIT_FUNC PyInit_tls_utils(void) CYTHON_SMALL_CODE; /*proto*/ -__Pyx_PyMODINIT_FUNC PyInit_tls_utils(void) -#if CYTHON_PEP489_MULTI_PHASE_INIT -{ - return PyModuleDef_Init(&__pyx_moduledef); -} -static CYTHON_SMALL_CODE int __Pyx_check_single_interpreter(void) { - #if PY_VERSION_HEX >= 0x030700A1 - static PY_INT64_T main_interpreter_id = -1; - PY_INT64_T current_id = PyInterpreterState_GetID(PyThreadState_Get()->interp); - if (main_interpreter_id == -1) { - main_interpreter_id = current_id; - return (unlikely(current_id == -1)) ? -1 : 0; - } else if (unlikely(main_interpreter_id != current_id)) - #else - static PyInterpreterState *main_interpreter = NULL; - PyInterpreterState *current_interpreter = PyThreadState_Get()->interp; - if (!main_interpreter) { - main_interpreter = current_interpreter; - } else if (unlikely(main_interpreter != current_interpreter)) - #endif - { - PyErr_SetString( - PyExc_ImportError, - "Interpreter change detected - this module can only be loaded into one interpreter per process."); - return -1; - } - return 0; -} -static CYTHON_SMALL_CODE int __Pyx_copy_spec_to_module(PyObject *spec, PyObject *moddict, const char* from_name, const char* to_name, int allow_none) { - PyObject *value = PyObject_GetAttrString(spec, from_name); - int result = 0; - if (likely(value)) { - if (allow_none || value != Py_None) { - result = PyDict_SetItemString(moddict, to_name, value); - } - Py_DECREF(value); - } else if (PyErr_ExceptionMatches(PyExc_AttributeError)) { - PyErr_Clear(); - } else { - result = -1; - } - return result; -} -static CYTHON_SMALL_CODE PyObject* __pyx_pymod_create(PyObject *spec, CYTHON_UNUSED PyModuleDef *def) { - PyObject *module = NULL, *moddict, *modname; - if (__Pyx_check_single_interpreter()) - return NULL; - if (__pyx_m) - return __Pyx_NewRef(__pyx_m); - modname = PyObject_GetAttrString(spec, "name"); - if (unlikely(!modname)) goto bad; - module = PyModule_NewObject(modname); - Py_DECREF(modname); - if (unlikely(!module)) goto bad; - moddict = PyModule_GetDict(module); - if (unlikely(!moddict)) goto bad; - if (unlikely(__Pyx_copy_spec_to_module(spec, moddict, "loader", "__loader__", 1) < 0)) goto bad; - if (unlikely(__Pyx_copy_spec_to_module(spec, moddict, "origin", "__file__", 1) < 0)) goto bad; - if (unlikely(__Pyx_copy_spec_to_module(spec, moddict, "parent", "__package__", 1) < 0)) goto bad; - if (unlikely(__Pyx_copy_spec_to_module(spec, moddict, "submodule_search_locations", "__path__", 0) < 0)) goto bad; - return module; -bad: - Py_XDECREF(module); - return NULL; -} - - -static CYTHON_SMALL_CODE int __pyx_pymod_exec_tls_utils(PyObject *__pyx_pyinit_module) -#endif -#endif -{ - PyObject *__pyx_t_1 = NULL; - PyObject *__pyx_t_2 = NULL; - PyObject *__pyx_t_3 = NULL; - PyObject *__pyx_t_4 = NULL; - PyObject *__pyx_t_5 = NULL; - int __pyx_t_6; - Py_ssize_t __pyx_t_7; - PyObject *(*__pyx_t_8)(PyObject *); - __Pyx_RefNannyDeclarations - #if CYTHON_PEP489_MULTI_PHASE_INIT - if (__pyx_m) { - if (__pyx_m == __pyx_pyinit_module) return 0; - PyErr_SetString(PyExc_RuntimeError, "Module 'tls_utils' has already been imported. Re-initialisation is not supported."); - return -1; - } - #elif PY_MAJOR_VERSION >= 3 - if (__pyx_m) return __Pyx_NewRef(__pyx_m); - #endif - #if CYTHON_REFNANNY -__Pyx_RefNanny = __Pyx_RefNannyImportAPI("refnanny"); -if (!__Pyx_RefNanny) { - PyErr_Clear(); - __Pyx_RefNanny = __Pyx_RefNannyImportAPI("Cython.Runtime.refnanny"); - if (!__Pyx_RefNanny) - Py_FatalError("failed to import 'refnanny' module"); -} -#endif - __Pyx_RefNannySetupContext("__Pyx_PyMODINIT_FUNC PyInit_tls_utils(void)", 0); - if (__Pyx_check_binary_version() < 0) __PYX_ERR(0, 1, __pyx_L1_error) - #ifdef __Pxy_PyFrame_Initialize_Offsets - __Pxy_PyFrame_Initialize_Offsets(); - #endif - __pyx_empty_tuple = PyTuple_New(0); if (unlikely(!__pyx_empty_tuple)) __PYX_ERR(0, 1, __pyx_L1_error) - __pyx_empty_bytes = PyBytes_FromStringAndSize("", 0); if (unlikely(!__pyx_empty_bytes)) __PYX_ERR(0, 1, __pyx_L1_error) - __pyx_empty_unicode = PyUnicode_FromStringAndSize("", 0); if (unlikely(!__pyx_empty_unicode)) __PYX_ERR(0, 1, __pyx_L1_error) - #ifdef __Pyx_CyFunction_USED - if (__pyx_CyFunction_init() < 0) __PYX_ERR(0, 1, __pyx_L1_error) - #endif - #ifdef __Pyx_FusedFunction_USED - if (__pyx_FusedFunction_init() < 0) __PYX_ERR(0, 1, __pyx_L1_error) - #endif - #ifdef __Pyx_Coroutine_USED - if (__pyx_Coroutine_init() < 0) __PYX_ERR(0, 1, __pyx_L1_error) - #endif - #ifdef __Pyx_Generator_USED - if (__pyx_Generator_init() < 0) __PYX_ERR(0, 1, __pyx_L1_error) - #endif - #ifdef __Pyx_AsyncGen_USED - if (__pyx_AsyncGen_init() < 0) __PYX_ERR(0, 1, __pyx_L1_error) - #endif - #ifdef __Pyx_StopAsyncIteration_USED - if (__pyx_StopAsyncIteration_init() < 0) __PYX_ERR(0, 1, __pyx_L1_error) - #endif - /*--- Library function declarations ---*/ - /*--- Threads initialization code ---*/ - #if defined(__PYX_FORCE_INIT_THREADS) && __PYX_FORCE_INIT_THREADS - #ifdef WITH_THREAD /* Python build with threading support? */ - PyEval_InitThreads(); - #endif - #endif - /*--- Module creation code ---*/ - #if CYTHON_PEP489_MULTI_PHASE_INIT - __pyx_m = __pyx_pyinit_module; - Py_INCREF(__pyx_m); - #else - #if PY_MAJOR_VERSION < 3 - __pyx_m = Py_InitModule4("tls_utils", __pyx_methods, __pyx_k_Copyright_c_2019_Cisco_Systems, 0, PYTHON_API_VERSION); Py_XINCREF(__pyx_m); - #else - __pyx_m = PyModule_Create(&__pyx_moduledef); - #endif - if (unlikely(!__pyx_m)) __PYX_ERR(0, 1, __pyx_L1_error) - #endif - __pyx_d = PyModule_GetDict(__pyx_m); if (unlikely(!__pyx_d)) __PYX_ERR(0, 1, __pyx_L1_error) - Py_INCREF(__pyx_d); - __pyx_b = PyImport_AddModule(__Pyx_BUILTIN_MODULE_NAME); if (unlikely(!__pyx_b)) __PYX_ERR(0, 1, __pyx_L1_error) - Py_INCREF(__pyx_b); - __pyx_cython_runtime = PyImport_AddModule((char *) "cython_runtime"); if (unlikely(!__pyx_cython_runtime)) __PYX_ERR(0, 1, __pyx_L1_error) - Py_INCREF(__pyx_cython_runtime); - if (PyObject_SetAttrString(__pyx_m, "__builtins__", __pyx_b) < 0) __PYX_ERR(0, 1, __pyx_L1_error); - /*--- Initialize various global constants etc. ---*/ - if (__Pyx_InitGlobals() < 0) __PYX_ERR(0, 1, __pyx_L1_error) - #if PY_MAJOR_VERSION < 3 && (__PYX_DEFAULT_STRING_ENCODING_IS_ASCII || __PYX_DEFAULT_STRING_ENCODING_IS_DEFAULT) - if (__Pyx_init_sys_getdefaultencoding_params() < 0) __PYX_ERR(0, 1, __pyx_L1_error) - #endif - if (__pyx_module_is_main_pmercury__utils__tls_utils) { - if (PyObject_SetAttr(__pyx_m, __pyx_n_s_name_2, __pyx_n_s_main) < 0) __PYX_ERR(0, 1, __pyx_L1_error) - } - #if PY_MAJOR_VERSION >= 3 - { - PyObject *modules = PyImport_GetModuleDict(); if (unlikely(!modules)) __PYX_ERR(0, 1, __pyx_L1_error) - if (!PyDict_GetItemString(modules, "pmercury.utils.tls_utils")) { - if (unlikely(PyDict_SetItemString(modules, "pmercury.utils.tls_utils", __pyx_m) < 0)) __PYX_ERR(0, 1, __pyx_L1_error) - } - } - #endif - /*--- Builtin init code ---*/ - if (__Pyx_InitCachedBuiltins() < 0) goto __pyx_L1_error; - /*--- Constants init code ---*/ - if (__Pyx_InitCachedConstants() < 0) goto __pyx_L1_error; - /*--- Global type/function init code ---*/ - (void)__Pyx_modinit_global_init_code(); - (void)__Pyx_modinit_variable_export_code(); - (void)__Pyx_modinit_function_export_code(); - (void)__Pyx_modinit_type_init_code(); - (void)__Pyx_modinit_type_import_code(); - (void)__Pyx_modinit_variable_import_code(); - (void)__Pyx_modinit_function_import_code(); - /*--- Execution code ---*/ - #if defined(__Pyx_Generator_USED) || defined(__Pyx_Coroutine_USED) - if (__Pyx_patch_abc() < 0) __PYX_ERR(0, 1, __pyx_L1_error) - #endif - - /* "pmercury/utils/tls_utils.pyx":8 - * """ - * - * import os # <<<<<<<<<<<<<< - * import sys - * import ast - */ - __pyx_t_1 = __Pyx_Import(__pyx_n_s_os, 0, 0); if (unlikely(!__pyx_t_1)) __PYX_ERR(0, 8, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_1); - if (PyDict_SetItem(__pyx_d, __pyx_n_s_os, __pyx_t_1) < 0) __PYX_ERR(0, 8, __pyx_L1_error) - __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0; - - /* "pmercury/utils/tls_utils.pyx":9 - * - * import os - * import sys # <<<<<<<<<<<<<< - * import ast - * import json - */ - __pyx_t_1 = __Pyx_Import(__pyx_n_s_sys, 0, 0); if (unlikely(!__pyx_t_1)) __PYX_ERR(0, 9, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_1); - if (PyDict_SetItem(__pyx_d, __pyx_n_s_sys, __pyx_t_1) < 0) __PYX_ERR(0, 9, __pyx_L1_error) - __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0; - - /* "pmercury/utils/tls_utils.pyx":10 - * import os - * import sys - * import ast # <<<<<<<<<<<<<< - * import json - * - */ - __pyx_t_1 = __Pyx_Import(__pyx_n_s_ast, 0, 0); if (unlikely(!__pyx_t_1)) __PYX_ERR(0, 10, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_1); - if (PyDict_SetItem(__pyx_d, __pyx_n_s_ast, __pyx_t_1) < 0) __PYX_ERR(0, 10, __pyx_L1_error) - __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0; - - /* "pmercury/utils/tls_utils.pyx":11 - * import sys - * import ast - * import json # <<<<<<<<<<<<<< - * - * sys.path.append(os.path.dirname(os.path.abspath(__file__))) - */ - __pyx_t_1 = __Pyx_Import(__pyx_n_s_json, 0, 0); if (unlikely(!__pyx_t_1)) __PYX_ERR(0, 11, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_1); - if (PyDict_SetItem(__pyx_d, __pyx_n_s_json, __pyx_t_1) < 0) __PYX_ERR(0, 11, __pyx_L1_error) - __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0; - - /* "pmercury/utils/tls_utils.pyx":13 - * import json - * - * sys.path.append(os.path.dirname(os.path.abspath(__file__))) # <<<<<<<<<<<<<< - * sys.path.append(os.path.dirname(os.path.abspath(__file__))+'/../') - * from pmercury.utils.tls_constants import * - */ - __Pyx_GetModuleGlobalName(__pyx_t_1, __pyx_n_s_sys); if (unlikely(!__pyx_t_1)) __PYX_ERR(0, 13, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_1); - __pyx_t_2 = __Pyx_PyObject_GetAttrStr(__pyx_t_1, __pyx_n_s_path); if (unlikely(!__pyx_t_2)) __PYX_ERR(0, 13, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_2); - __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0; - __Pyx_GetModuleGlobalName(__pyx_t_1, __pyx_n_s_os); if (unlikely(!__pyx_t_1)) __PYX_ERR(0, 13, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_1); - __pyx_t_3 = __Pyx_PyObject_GetAttrStr(__pyx_t_1, __pyx_n_s_path); if (unlikely(!__pyx_t_3)) __PYX_ERR(0, 13, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_3); - __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0; - __pyx_t_1 = __Pyx_PyObject_GetAttrStr(__pyx_t_3, __pyx_n_s_dirname); if (unlikely(!__pyx_t_1)) __PYX_ERR(0, 13, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_1); - __Pyx_DECREF(__pyx_t_3); __pyx_t_3 = 0; - __Pyx_GetModuleGlobalName(__pyx_t_3, __pyx_n_s_os); if (unlikely(!__pyx_t_3)) __PYX_ERR(0, 13, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_3); - __pyx_t_4 = __Pyx_PyObject_GetAttrStr(__pyx_t_3, __pyx_n_s_path); if (unlikely(!__pyx_t_4)) __PYX_ERR(0, 13, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_4); - __Pyx_DECREF(__pyx_t_3); __pyx_t_3 = 0; - __pyx_t_3 = __Pyx_PyObject_GetAttrStr(__pyx_t_4, __pyx_n_s_abspath); if (unlikely(!__pyx_t_3)) __PYX_ERR(0, 13, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_3); - __Pyx_DECREF(__pyx_t_4); __pyx_t_4 = 0; - __Pyx_GetModuleGlobalName(__pyx_t_4, __pyx_n_s_file); if (unlikely(!__pyx_t_4)) __PYX_ERR(0, 13, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_4); - __pyx_t_5 = __Pyx_PyObject_CallOneArg(__pyx_t_3, __pyx_t_4); if (unlikely(!__pyx_t_5)) __PYX_ERR(0, 13, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_5); - __Pyx_DECREF(__pyx_t_3); __pyx_t_3 = 0; - __Pyx_DECREF(__pyx_t_4); __pyx_t_4 = 0; - __pyx_t_4 = __Pyx_PyObject_CallOneArg(__pyx_t_1, __pyx_t_5); if (unlikely(!__pyx_t_4)) __PYX_ERR(0, 13, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_4); - __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0; - __Pyx_DECREF(__pyx_t_5); __pyx_t_5 = 0; - __pyx_t_6 = __Pyx_PyObject_Append(__pyx_t_2, __pyx_t_4); if (unlikely(__pyx_t_6 == ((int)-1))) __PYX_ERR(0, 13, __pyx_L1_error) - __Pyx_DECREF(__pyx_t_2); __pyx_t_2 = 0; - __Pyx_DECREF(__pyx_t_4); __pyx_t_4 = 0; - - /* "pmercury/utils/tls_utils.pyx":14 - * - * sys.path.append(os.path.dirname(os.path.abspath(__file__))) - * sys.path.append(os.path.dirname(os.path.abspath(__file__))+'/../') # <<<<<<<<<<<<<< - * from pmercury.utils.tls_constants import * - * from pmercury.utils.pmercury_utils import * - */ - __Pyx_GetModuleGlobalName(__pyx_t_4, __pyx_n_s_sys); if (unlikely(!__pyx_t_4)) __PYX_ERR(0, 14, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_4); - __pyx_t_2 = __Pyx_PyObject_GetAttrStr(__pyx_t_4, __pyx_n_s_path); if (unlikely(!__pyx_t_2)) __PYX_ERR(0, 14, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_2); - __Pyx_DECREF(__pyx_t_4); __pyx_t_4 = 0; - __Pyx_GetModuleGlobalName(__pyx_t_4, __pyx_n_s_os); if (unlikely(!__pyx_t_4)) __PYX_ERR(0, 14, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_4); - __pyx_t_5 = __Pyx_PyObject_GetAttrStr(__pyx_t_4, __pyx_n_s_path); if (unlikely(!__pyx_t_5)) __PYX_ERR(0, 14, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_5); - __Pyx_DECREF(__pyx_t_4); __pyx_t_4 = 0; - __pyx_t_4 = __Pyx_PyObject_GetAttrStr(__pyx_t_5, __pyx_n_s_dirname); if (unlikely(!__pyx_t_4)) __PYX_ERR(0, 14, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_4); - __Pyx_DECREF(__pyx_t_5); __pyx_t_5 = 0; - __Pyx_GetModuleGlobalName(__pyx_t_5, __pyx_n_s_os); if (unlikely(!__pyx_t_5)) __PYX_ERR(0, 14, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_5); - __pyx_t_1 = __Pyx_PyObject_GetAttrStr(__pyx_t_5, __pyx_n_s_path); if (unlikely(!__pyx_t_1)) __PYX_ERR(0, 14, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_1); - __Pyx_DECREF(__pyx_t_5); __pyx_t_5 = 0; - __pyx_t_5 = __Pyx_PyObject_GetAttrStr(__pyx_t_1, __pyx_n_s_abspath); if (unlikely(!__pyx_t_5)) __PYX_ERR(0, 14, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_5); - __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0; - __Pyx_GetModuleGlobalName(__pyx_t_1, __pyx_n_s_file); if (unlikely(!__pyx_t_1)) __PYX_ERR(0, 14, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_1); - __pyx_t_3 = __Pyx_PyObject_CallOneArg(__pyx_t_5, __pyx_t_1); if (unlikely(!__pyx_t_3)) __PYX_ERR(0, 14, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_3); - __Pyx_DECREF(__pyx_t_5); __pyx_t_5 = 0; - __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0; - __pyx_t_1 = __Pyx_PyObject_CallOneArg(__pyx_t_4, __pyx_t_3); if (unlikely(!__pyx_t_1)) __PYX_ERR(0, 14, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_1); - __Pyx_DECREF(__pyx_t_4); __pyx_t_4 = 0; - __Pyx_DECREF(__pyx_t_3); __pyx_t_3 = 0; - __pyx_t_3 = PyNumber_Add(__pyx_t_1, __pyx_kp_u__27); if (unlikely(!__pyx_t_3)) __PYX_ERR(0, 14, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_3); - __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0; - __pyx_t_6 = __Pyx_PyObject_Append(__pyx_t_2, __pyx_t_3); if (unlikely(__pyx_t_6 == ((int)-1))) __PYX_ERR(0, 14, __pyx_L1_error) - __Pyx_DECREF(__pyx_t_2); __pyx_t_2 = 0; - __Pyx_DECREF(__pyx_t_3); __pyx_t_3 = 0; - - /* "pmercury/utils/tls_utils.pyx":15 - * sys.path.append(os.path.dirname(os.path.abspath(__file__))) - * sys.path.append(os.path.dirname(os.path.abspath(__file__))+'/../') - * from pmercury.utils.tls_constants import * # <<<<<<<<<<<<<< - * from pmercury.utils.pmercury_utils import * - * - */ - __pyx_t_3 = PyList_New(1); if (unlikely(!__pyx_t_3)) __PYX_ERR(0, 15, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_3); - __Pyx_INCREF(__pyx_n_s__28); - __Pyx_GIVEREF(__pyx_n_s__28); - PyList_SET_ITEM(__pyx_t_3, 0, __pyx_n_s__28); - __pyx_t_2 = __Pyx_Import(__pyx_n_s_pmercury_utils_tls_constants, __pyx_t_3, 0); if (unlikely(!__pyx_t_2)) __PYX_ERR(0, 15, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_2); - __Pyx_DECREF(__pyx_t_3); __pyx_t_3 = 0; - if (__pyx_import_star(__pyx_t_2) < 0) __PYX_ERR(0, 15, __pyx_L1_error); - __Pyx_DECREF(__pyx_t_2); __pyx_t_2 = 0; - - /* "pmercury/utils/tls_utils.pyx":16 - * sys.path.append(os.path.dirname(os.path.abspath(__file__))+'/../') - * from pmercury.utils.tls_constants import * - * from pmercury.utils.pmercury_utils import * # <<<<<<<<<<<<<< - * - * cdef set grease_ = set(['0a0a','1a1a','2a2a','3a3a','4a4a','5a5a','6a6a','7a7a', - */ - __pyx_t_2 = PyList_New(1); if (unlikely(!__pyx_t_2)) __PYX_ERR(0, 16, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_2); - __Pyx_INCREF(__pyx_n_s__28); - __Pyx_GIVEREF(__pyx_n_s__28); - PyList_SET_ITEM(__pyx_t_2, 0, __pyx_n_s__28); - __pyx_t_3 = __Pyx_Import(__pyx_n_s_pmercury_utils_pmercury_utils, __pyx_t_2, 0); if (unlikely(!__pyx_t_3)) __PYX_ERR(0, 16, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_3); - __Pyx_DECREF(__pyx_t_2); __pyx_t_2 = 0; - if (__pyx_import_star(__pyx_t_3) < 0) __PYX_ERR(0, 16, __pyx_L1_error); - __Pyx_DECREF(__pyx_t_3); __pyx_t_3 = 0; - - /* "pmercury/utils/tls_utils.pyx":18 - * from pmercury.utils.pmercury_utils import * - * - * cdef set grease_ = set(['0a0a','1a1a','2a2a','3a3a','4a4a','5a5a','6a6a','7a7a', # <<<<<<<<<<<<<< - * '8a8a','9a9a','aaaa','baba','caca','dada','eaea','fafa']) - * - */ - __pyx_t_3 = PySet_New(0); if (unlikely(!__pyx_t_3)) __PYX_ERR(0, 18, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_3); - if (PySet_Add(__pyx_t_3, __pyx_kp_u_0a0a) < 0) __PYX_ERR(0, 18, __pyx_L1_error) - if (PySet_Add(__pyx_t_3, __pyx_kp_u_1a1a) < 0) __PYX_ERR(0, 18, __pyx_L1_error) - if (PySet_Add(__pyx_t_3, __pyx_kp_u_2a2a) < 0) __PYX_ERR(0, 18, __pyx_L1_error) - if (PySet_Add(__pyx_t_3, __pyx_kp_u_3a3a) < 0) __PYX_ERR(0, 18, __pyx_L1_error) - if (PySet_Add(__pyx_t_3, __pyx_kp_u_4a4a) < 0) __PYX_ERR(0, 18, __pyx_L1_error) - if (PySet_Add(__pyx_t_3, __pyx_kp_u_5a5a) < 0) __PYX_ERR(0, 18, __pyx_L1_error) - if (PySet_Add(__pyx_t_3, __pyx_kp_u_6a6a) < 0) __PYX_ERR(0, 18, __pyx_L1_error) - if (PySet_Add(__pyx_t_3, __pyx_kp_u_7a7a) < 0) __PYX_ERR(0, 18, __pyx_L1_error) - if (PySet_Add(__pyx_t_3, __pyx_kp_u_8a8a) < 0) __PYX_ERR(0, 18, __pyx_L1_error) - if (PySet_Add(__pyx_t_3, __pyx_kp_u_9a9a) < 0) __PYX_ERR(0, 18, __pyx_L1_error) - if (PySet_Add(__pyx_t_3, __pyx_n_u_aaaa) < 0) __PYX_ERR(0, 18, __pyx_L1_error) - if (PySet_Add(__pyx_t_3, __pyx_n_u_baba) < 0) __PYX_ERR(0, 18, __pyx_L1_error) - if (PySet_Add(__pyx_t_3, __pyx_n_u_caca) < 0) __PYX_ERR(0, 18, __pyx_L1_error) - if (PySet_Add(__pyx_t_3, __pyx_n_u_dada) < 0) __PYX_ERR(0, 18, __pyx_L1_error) - if (PySet_Add(__pyx_t_3, __pyx_n_u_eaea) < 0) __PYX_ERR(0, 18, __pyx_L1_error) - if (PySet_Add(__pyx_t_3, __pyx_n_u_fafa) < 0) __PYX_ERR(0, 18, __pyx_L1_error) - __Pyx_XGOTREF(__pyx_v_8pmercury_5utils_9tls_utils_grease_); - __Pyx_DECREF_SET(__pyx_v_8pmercury_5utils_9tls_utils_grease_, ((PyObject*)__pyx_t_3)); - __Pyx_GIVEREF(__pyx_t_3); - __pyx_t_3 = 0; - - /* "pmercury/utils/tls_utils.pyx":21 - * '8a8a','9a9a','aaaa','baba','caca','dada','eaea','fafa']) - * - * cdef set grease_single_int_ = set([10,26,42,58,74,90,106,122,138,154,170,186,202,218,234,250]) # <<<<<<<<<<<<<< - * - * cdef set ext_data_extract_ = set(['0001','0005','0007','0008','0009','000a','000b', - */ - __pyx_t_3 = PySet_New(0); if (unlikely(!__pyx_t_3)) __PYX_ERR(0, 21, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_3); - if (PySet_Add(__pyx_t_3, __pyx_int_10) < 0) __PYX_ERR(0, 21, __pyx_L1_error) - if (PySet_Add(__pyx_t_3, __pyx_int_26) < 0) __PYX_ERR(0, 21, __pyx_L1_error) - if (PySet_Add(__pyx_t_3, __pyx_int_42) < 0) __PYX_ERR(0, 21, __pyx_L1_error) - if (PySet_Add(__pyx_t_3, __pyx_int_58) < 0) __PYX_ERR(0, 21, __pyx_L1_error) - if (PySet_Add(__pyx_t_3, __pyx_int_74) < 0) __PYX_ERR(0, 21, __pyx_L1_error) - if (PySet_Add(__pyx_t_3, __pyx_int_90) < 0) __PYX_ERR(0, 21, __pyx_L1_error) - if (PySet_Add(__pyx_t_3, __pyx_int_106) < 0) __PYX_ERR(0, 21, __pyx_L1_error) - if (PySet_Add(__pyx_t_3, __pyx_int_122) < 0) __PYX_ERR(0, 21, __pyx_L1_error) - if (PySet_Add(__pyx_t_3, __pyx_int_138) < 0) __PYX_ERR(0, 21, __pyx_L1_error) - if (PySet_Add(__pyx_t_3, __pyx_int_154) < 0) __PYX_ERR(0, 21, __pyx_L1_error) - if (PySet_Add(__pyx_t_3, __pyx_int_170) < 0) __PYX_ERR(0, 21, __pyx_L1_error) - if (PySet_Add(__pyx_t_3, __pyx_int_186) < 0) __PYX_ERR(0, 21, __pyx_L1_error) - if (PySet_Add(__pyx_t_3, __pyx_int_202) < 0) __PYX_ERR(0, 21, __pyx_L1_error) - if (PySet_Add(__pyx_t_3, __pyx_int_218) < 0) __PYX_ERR(0, 21, __pyx_L1_error) - if (PySet_Add(__pyx_t_3, __pyx_int_234) < 0) __PYX_ERR(0, 21, __pyx_L1_error) - if (PySet_Add(__pyx_t_3, __pyx_int_250) < 0) __PYX_ERR(0, 21, __pyx_L1_error) - __Pyx_XGOTREF(__pyx_v_8pmercury_5utils_9tls_utils_grease_single_int_); - __Pyx_DECREF_SET(__pyx_v_8pmercury_5utils_9tls_utils_grease_single_int_, ((PyObject*)__pyx_t_3)); - __Pyx_GIVEREF(__pyx_t_3); - __pyx_t_3 = 0; - - /* "pmercury/utils/tls_utils.pyx":23 - * cdef set grease_single_int_ = set([10,26,42,58,74,90,106,122,138,154,170,186,202,218,234,250]) - * - * cdef set ext_data_extract_ = set(['0001','0005','0007','0008','0009','000a','000b', # <<<<<<<<<<<<<< - * '000d','000f','0010','0011','0013','0014','0018', - * '001b','001c','002b','002d','0032','5500']) - */ - __pyx_t_3 = PySet_New(0); if (unlikely(!__pyx_t_3)) __PYX_ERR(0, 23, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_3); - if (PySet_Add(__pyx_t_3, __pyx_kp_u_0001) < 0) __PYX_ERR(0, 23, __pyx_L1_error) - if (PySet_Add(__pyx_t_3, __pyx_kp_u_0005) < 0) __PYX_ERR(0, 23, __pyx_L1_error) - if (PySet_Add(__pyx_t_3, __pyx_kp_u_0007) < 0) __PYX_ERR(0, 23, __pyx_L1_error) - if (PySet_Add(__pyx_t_3, __pyx_kp_u_0008) < 0) __PYX_ERR(0, 23, __pyx_L1_error) - if (PySet_Add(__pyx_t_3, __pyx_kp_u_0009) < 0) __PYX_ERR(0, 23, __pyx_L1_error) - if (PySet_Add(__pyx_t_3, __pyx_kp_u_000a) < 0) __PYX_ERR(0, 23, __pyx_L1_error) - if (PySet_Add(__pyx_t_3, __pyx_kp_u_000b) < 0) __PYX_ERR(0, 23, __pyx_L1_error) - if (PySet_Add(__pyx_t_3, __pyx_kp_u_000d) < 0) __PYX_ERR(0, 23, __pyx_L1_error) - if (PySet_Add(__pyx_t_3, __pyx_kp_u_000f) < 0) __PYX_ERR(0, 23, __pyx_L1_error) - if (PySet_Add(__pyx_t_3, __pyx_kp_u_0010) < 0) __PYX_ERR(0, 23, __pyx_L1_error) - if (PySet_Add(__pyx_t_3, __pyx_kp_u_0011) < 0) __PYX_ERR(0, 23, __pyx_L1_error) - if (PySet_Add(__pyx_t_3, __pyx_kp_u_0013) < 0) __PYX_ERR(0, 23, __pyx_L1_error) - if (PySet_Add(__pyx_t_3, __pyx_kp_u_0014) < 0) __PYX_ERR(0, 23, __pyx_L1_error) - if (PySet_Add(__pyx_t_3, __pyx_kp_u_0018) < 0) __PYX_ERR(0, 23, __pyx_L1_error) - if (PySet_Add(__pyx_t_3, __pyx_kp_u_001b) < 0) __PYX_ERR(0, 23, __pyx_L1_error) - if (PySet_Add(__pyx_t_3, __pyx_kp_u_001c) < 0) __PYX_ERR(0, 23, __pyx_L1_error) - if (PySet_Add(__pyx_t_3, __pyx_kp_u_002b) < 0) __PYX_ERR(0, 23, __pyx_L1_error) - if (PySet_Add(__pyx_t_3, __pyx_kp_u_002d) < 0) __PYX_ERR(0, 23, __pyx_L1_error) - if (PySet_Add(__pyx_t_3, __pyx_kp_u_0032) < 0) __PYX_ERR(0, 23, __pyx_L1_error) - if (PySet_Add(__pyx_t_3, __pyx_kp_u_5500) < 0) __PYX_ERR(0, 23, __pyx_L1_error) - __Pyx_XGOTREF(__pyx_v_8pmercury_5utils_9tls_utils_ext_data_extract_); - __Pyx_DECREF_SET(__pyx_v_8pmercury_5utils_9tls_utils_ext_data_extract_, ((PyObject*)__pyx_t_3)); - __Pyx_GIVEREF(__pyx_t_3); - __pyx_t_3 = 0; - - /* "pmercury/utils/tls_utils.pyx":26 - * '000d','000f','0010','0011','0013','0014','0018', - * '001b','001c','002b','002d','0032','5500']) - * ext_data_extract_ = ext_data_extract_.union(grease_) # <<<<<<<<<<<<<< - * - * - */ - __pyx_t_3 = __Pyx_CallUnboundCMethod1(&__pyx_umethod_PySet_Type_union, __pyx_v_8pmercury_5utils_9tls_utils_ext_data_extract_, __pyx_v_8pmercury_5utils_9tls_utils_grease_); if (unlikely(!__pyx_t_3)) __PYX_ERR(0, 26, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_3); - if (!(likely(PySet_CheckExact(__pyx_t_3))||((__pyx_t_3) == Py_None)||(PyErr_Format(PyExc_TypeError, "Expected %.16s, got %.200s", "set", Py_TYPE(__pyx_t_3)->tp_name), 0))) __PYX_ERR(0, 26, __pyx_L1_error) - __Pyx_XGOTREF(__pyx_v_8pmercury_5utils_9tls_utils_ext_data_extract_); - __Pyx_DECREF_SET(__pyx_v_8pmercury_5utils_9tls_utils_ext_data_extract_, ((PyObject*)__pyx_t_3)); - __Pyx_GIVEREF(__pyx_t_3); - __pyx_t_3 = 0; - - /* "pmercury/utils/tls_utils.pyx":29 - * - * - * imp_date_cs_file = find_resource_path('resources/implementation_date_cs.json.gz') # <<<<<<<<<<<<<< - * IF UNAME_SYSNAME == "Windows": - * import gzip - */ - __Pyx_GetModuleGlobalName(__pyx_t_3, __pyx_n_s_find_resource_path); if (unlikely(!__pyx_t_3)) __PYX_ERR(0, 29, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_3); - __pyx_t_2 = __Pyx_PyObject_Call(__pyx_t_3, __pyx_tuple__29, NULL); if (unlikely(!__pyx_t_2)) __PYX_ERR(0, 29, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_2); - __Pyx_DECREF(__pyx_t_3); __pyx_t_3 = 0; - if (PyDict_SetItem(__pyx_d, __pyx_n_s_imp_date_cs_file, __pyx_t_2) < 0) __PYX_ERR(0, 29, __pyx_L1_error) - __Pyx_DECREF(__pyx_t_2); __pyx_t_2 = 0; - - /* "pmercury/utils/tls_utils.pyx":36 - * break - * ELSE: - * for line in os.popen('zcat %s' % (imp_date_cs_file)): # <<<<<<<<<<<<<< - * imp_date_cs_data = json.loads(line) - * break - */ - __Pyx_GetModuleGlobalName(__pyx_t_3, __pyx_n_s_os); if (unlikely(!__pyx_t_3)) __PYX_ERR(0, 36, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_3); - __pyx_t_1 = __Pyx_PyObject_GetAttrStr(__pyx_t_3, __pyx_n_s_popen); if (unlikely(!__pyx_t_1)) __PYX_ERR(0, 36, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_1); - __Pyx_DECREF(__pyx_t_3); __pyx_t_3 = 0; - __Pyx_GetModuleGlobalName(__pyx_t_3, __pyx_n_s_imp_date_cs_file); if (unlikely(!__pyx_t_3)) __PYX_ERR(0, 36, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_3); - __pyx_t_4 = __Pyx_PyUnicode_FormatSafe(__pyx_kp_u_zcat_s, __pyx_t_3); if (unlikely(!__pyx_t_4)) __PYX_ERR(0, 36, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_4); - __Pyx_DECREF(__pyx_t_3); __pyx_t_3 = 0; - __pyx_t_3 = NULL; - if (CYTHON_UNPACK_METHODS && unlikely(PyMethod_Check(__pyx_t_1))) { - __pyx_t_3 = PyMethod_GET_SELF(__pyx_t_1); - if (likely(__pyx_t_3)) { - PyObject* function = PyMethod_GET_FUNCTION(__pyx_t_1); - __Pyx_INCREF(__pyx_t_3); - __Pyx_INCREF(function); - __Pyx_DECREF_SET(__pyx_t_1, function); - } - } - __pyx_t_2 = (__pyx_t_3) ? __Pyx_PyObject_Call2Args(__pyx_t_1, __pyx_t_3, __pyx_t_4) : __Pyx_PyObject_CallOneArg(__pyx_t_1, __pyx_t_4); - __Pyx_XDECREF(__pyx_t_3); __pyx_t_3 = 0; - __Pyx_DECREF(__pyx_t_4); __pyx_t_4 = 0; - if (unlikely(!__pyx_t_2)) __PYX_ERR(0, 36, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_2); - __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0; - if (likely(PyList_CheckExact(__pyx_t_2)) || PyTuple_CheckExact(__pyx_t_2)) { - __pyx_t_1 = __pyx_t_2; __Pyx_INCREF(__pyx_t_1); __pyx_t_7 = 0; - __pyx_t_8 = NULL; - } else { - __pyx_t_7 = -1; __pyx_t_1 = PyObject_GetIter(__pyx_t_2); if (unlikely(!__pyx_t_1)) __PYX_ERR(0, 36, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_1); - __pyx_t_8 = Py_TYPE(__pyx_t_1)->tp_iternext; if (unlikely(!__pyx_t_8)) __PYX_ERR(0, 36, __pyx_L1_error) - } - __Pyx_DECREF(__pyx_t_2); __pyx_t_2 = 0; - for (;;) { - if (likely(!__pyx_t_8)) { - if (likely(PyList_CheckExact(__pyx_t_1))) { - if (__pyx_t_7 >= PyList_GET_SIZE(__pyx_t_1)) break; - #if CYTHON_ASSUME_SAFE_MACROS && !CYTHON_AVOID_BORROWED_REFS - __pyx_t_2 = PyList_GET_ITEM(__pyx_t_1, __pyx_t_7); __Pyx_INCREF(__pyx_t_2); __pyx_t_7++; if (unlikely(0 < 0)) __PYX_ERR(0, 36, __pyx_L1_error) - #else - __pyx_t_2 = PySequence_ITEM(__pyx_t_1, __pyx_t_7); __pyx_t_7++; if (unlikely(!__pyx_t_2)) __PYX_ERR(0, 36, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_2); - #endif - } else { - if (__pyx_t_7 >= PyTuple_GET_SIZE(__pyx_t_1)) break; - #if CYTHON_ASSUME_SAFE_MACROS && !CYTHON_AVOID_BORROWED_REFS - __pyx_t_2 = PyTuple_GET_ITEM(__pyx_t_1, __pyx_t_7); __Pyx_INCREF(__pyx_t_2); __pyx_t_7++; if (unlikely(0 < 0)) __PYX_ERR(0, 36, __pyx_L1_error) - #else - __pyx_t_2 = PySequence_ITEM(__pyx_t_1, __pyx_t_7); __pyx_t_7++; if (unlikely(!__pyx_t_2)) __PYX_ERR(0, 36, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_2); - #endif - } - } else { - __pyx_t_2 = __pyx_t_8(__pyx_t_1); - if (unlikely(!__pyx_t_2)) { - PyObject* exc_type = PyErr_Occurred(); - if (exc_type) { - if (likely(__Pyx_PyErr_GivenExceptionMatches(exc_type, PyExc_StopIteration))) PyErr_Clear(); - else __PYX_ERR(0, 36, __pyx_L1_error) - } - break; - } - __Pyx_GOTREF(__pyx_t_2); - } - if (PyDict_SetItem(__pyx_d, __pyx_n_s_line, __pyx_t_2) < 0) __PYX_ERR(0, 36, __pyx_L1_error) - __Pyx_DECREF(__pyx_t_2); __pyx_t_2 = 0; - - /* "pmercury/utils/tls_utils.pyx":37 - * ELSE: - * for line in os.popen('zcat %s' % (imp_date_cs_file)): - * imp_date_cs_data = json.loads(line) # <<<<<<<<<<<<<< - * break - * - */ - __Pyx_GetModuleGlobalName(__pyx_t_4, __pyx_n_s_json); if (unlikely(!__pyx_t_4)) __PYX_ERR(0, 37, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_4); - __pyx_t_3 = __Pyx_PyObject_GetAttrStr(__pyx_t_4, __pyx_n_s_loads); if (unlikely(!__pyx_t_3)) __PYX_ERR(0, 37, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_3); - __Pyx_DECREF(__pyx_t_4); __pyx_t_4 = 0; - __Pyx_GetModuleGlobalName(__pyx_t_4, __pyx_n_s_line); if (unlikely(!__pyx_t_4)) __PYX_ERR(0, 37, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_4); - __pyx_t_5 = NULL; - if (CYTHON_UNPACK_METHODS && unlikely(PyMethod_Check(__pyx_t_3))) { - __pyx_t_5 = PyMethod_GET_SELF(__pyx_t_3); - if (likely(__pyx_t_5)) { - PyObject* function = PyMethod_GET_FUNCTION(__pyx_t_3); - __Pyx_INCREF(__pyx_t_5); - __Pyx_INCREF(function); - __Pyx_DECREF_SET(__pyx_t_3, function); - } - } - __pyx_t_2 = (__pyx_t_5) ? __Pyx_PyObject_Call2Args(__pyx_t_3, __pyx_t_5, __pyx_t_4) : __Pyx_PyObject_CallOneArg(__pyx_t_3, __pyx_t_4); - __Pyx_XDECREF(__pyx_t_5); __pyx_t_5 = 0; - __Pyx_DECREF(__pyx_t_4); __pyx_t_4 = 0; - if (unlikely(!__pyx_t_2)) __PYX_ERR(0, 37, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_2); - __Pyx_DECREF(__pyx_t_3); __pyx_t_3 = 0; - if (PyDict_SetItem(__pyx_d, __pyx_n_s_imp_date_cs_data, __pyx_t_2) < 0) __PYX_ERR(0, 37, __pyx_L1_error) - __Pyx_DECREF(__pyx_t_2); __pyx_t_2 = 0; - - /* "pmercury/utils/tls_utils.pyx":38 - * for line in os.popen('zcat %s' % (imp_date_cs_file)): - * imp_date_cs_data = json.loads(line) - * break # <<<<<<<<<<<<<< - * - * imp_date_ext_file = find_resource_path('resources/implementation_date_ext.json.gz') - */ - goto __pyx_L3_break; - - /* "pmercury/utils/tls_utils.pyx":36 - * break - * ELSE: - * for line in os.popen('zcat %s' % (imp_date_cs_file)): # <<<<<<<<<<<<<< - * imp_date_cs_data = json.loads(line) - * break - */ - } - __pyx_L3_break:; - __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0; - - /* "pmercury/utils/tls_utils.pyx":40 - * break - * - * imp_date_ext_file = find_resource_path('resources/implementation_date_ext.json.gz') # <<<<<<<<<<<<<< - * IF UNAME_SYSNAME == "Windows": - * import gzip - */ - __Pyx_GetModuleGlobalName(__pyx_t_1, __pyx_n_s_find_resource_path); if (unlikely(!__pyx_t_1)) __PYX_ERR(0, 40, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_1); - __pyx_t_2 = __Pyx_PyObject_Call(__pyx_t_1, __pyx_tuple__30, NULL); if (unlikely(!__pyx_t_2)) __PYX_ERR(0, 40, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_2); - __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0; - if (PyDict_SetItem(__pyx_d, __pyx_n_s_imp_date_ext_file, __pyx_t_2) < 0) __PYX_ERR(0, 40, __pyx_L1_error) - __Pyx_DECREF(__pyx_t_2); __pyx_t_2 = 0; - - /* "pmercury/utils/tls_utils.pyx":47 - * break - * ELSE: - * for line in os.popen('zcat %s' % (imp_date_ext_file)): # <<<<<<<<<<<<<< - * imp_date_ext_data = json.loads(line) - * break - */ - __Pyx_GetModuleGlobalName(__pyx_t_1, __pyx_n_s_os); if (unlikely(!__pyx_t_1)) __PYX_ERR(0, 47, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_1); - __pyx_t_3 = __Pyx_PyObject_GetAttrStr(__pyx_t_1, __pyx_n_s_popen); if (unlikely(!__pyx_t_3)) __PYX_ERR(0, 47, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_3); - __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0; - __Pyx_GetModuleGlobalName(__pyx_t_1, __pyx_n_s_imp_date_ext_file); if (unlikely(!__pyx_t_1)) __PYX_ERR(0, 47, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_1); - __pyx_t_4 = __Pyx_PyUnicode_FormatSafe(__pyx_kp_u_zcat_s, __pyx_t_1); if (unlikely(!__pyx_t_4)) __PYX_ERR(0, 47, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_4); - __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0; - __pyx_t_1 = NULL; - if (CYTHON_UNPACK_METHODS && unlikely(PyMethod_Check(__pyx_t_3))) { - __pyx_t_1 = PyMethod_GET_SELF(__pyx_t_3); - if (likely(__pyx_t_1)) { - PyObject* function = PyMethod_GET_FUNCTION(__pyx_t_3); - __Pyx_INCREF(__pyx_t_1); - __Pyx_INCREF(function); - __Pyx_DECREF_SET(__pyx_t_3, function); - } - } - __pyx_t_2 = (__pyx_t_1) ? __Pyx_PyObject_Call2Args(__pyx_t_3, __pyx_t_1, __pyx_t_4) : __Pyx_PyObject_CallOneArg(__pyx_t_3, __pyx_t_4); - __Pyx_XDECREF(__pyx_t_1); __pyx_t_1 = 0; - __Pyx_DECREF(__pyx_t_4); __pyx_t_4 = 0; - if (unlikely(!__pyx_t_2)) __PYX_ERR(0, 47, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_2); - __Pyx_DECREF(__pyx_t_3); __pyx_t_3 = 0; - if (likely(PyList_CheckExact(__pyx_t_2)) || PyTuple_CheckExact(__pyx_t_2)) { - __pyx_t_3 = __pyx_t_2; __Pyx_INCREF(__pyx_t_3); __pyx_t_7 = 0; - __pyx_t_8 = NULL; - } else { - __pyx_t_7 = -1; __pyx_t_3 = PyObject_GetIter(__pyx_t_2); if (unlikely(!__pyx_t_3)) __PYX_ERR(0, 47, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_3); - __pyx_t_8 = Py_TYPE(__pyx_t_3)->tp_iternext; if (unlikely(!__pyx_t_8)) __PYX_ERR(0, 47, __pyx_L1_error) - } - __Pyx_DECREF(__pyx_t_2); __pyx_t_2 = 0; - for (;;) { - if (likely(!__pyx_t_8)) { - if (likely(PyList_CheckExact(__pyx_t_3))) { - if (__pyx_t_7 >= PyList_GET_SIZE(__pyx_t_3)) break; - #if CYTHON_ASSUME_SAFE_MACROS && !CYTHON_AVOID_BORROWED_REFS - __pyx_t_2 = PyList_GET_ITEM(__pyx_t_3, __pyx_t_7); __Pyx_INCREF(__pyx_t_2); __pyx_t_7++; if (unlikely(0 < 0)) __PYX_ERR(0, 47, __pyx_L1_error) - #else - __pyx_t_2 = PySequence_ITEM(__pyx_t_3, __pyx_t_7); __pyx_t_7++; if (unlikely(!__pyx_t_2)) __PYX_ERR(0, 47, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_2); - #endif - } else { - if (__pyx_t_7 >= PyTuple_GET_SIZE(__pyx_t_3)) break; - #if CYTHON_ASSUME_SAFE_MACROS && !CYTHON_AVOID_BORROWED_REFS - __pyx_t_2 = PyTuple_GET_ITEM(__pyx_t_3, __pyx_t_7); __Pyx_INCREF(__pyx_t_2); __pyx_t_7++; if (unlikely(0 < 0)) __PYX_ERR(0, 47, __pyx_L1_error) - #else - __pyx_t_2 = PySequence_ITEM(__pyx_t_3, __pyx_t_7); __pyx_t_7++; if (unlikely(!__pyx_t_2)) __PYX_ERR(0, 47, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_2); - #endif - } - } else { - __pyx_t_2 = __pyx_t_8(__pyx_t_3); - if (unlikely(!__pyx_t_2)) { - PyObject* exc_type = PyErr_Occurred(); - if (exc_type) { - if (likely(__Pyx_PyErr_GivenExceptionMatches(exc_type, PyExc_StopIteration))) PyErr_Clear(); - else __PYX_ERR(0, 47, __pyx_L1_error) - } - break; - } - __Pyx_GOTREF(__pyx_t_2); - } - if (PyDict_SetItem(__pyx_d, __pyx_n_s_line, __pyx_t_2) < 0) __PYX_ERR(0, 47, __pyx_L1_error) - __Pyx_DECREF(__pyx_t_2); __pyx_t_2 = 0; - - /* "pmercury/utils/tls_utils.pyx":48 - * ELSE: - * for line in os.popen('zcat %s' % (imp_date_ext_file)): - * imp_date_ext_data = json.loads(line) # <<<<<<<<<<<<<< - * break - * - */ - __Pyx_GetModuleGlobalName(__pyx_t_4, __pyx_n_s_json); if (unlikely(!__pyx_t_4)) __PYX_ERR(0, 48, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_4); - __pyx_t_1 = __Pyx_PyObject_GetAttrStr(__pyx_t_4, __pyx_n_s_loads); if (unlikely(!__pyx_t_1)) __PYX_ERR(0, 48, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_1); - __Pyx_DECREF(__pyx_t_4); __pyx_t_4 = 0; - __Pyx_GetModuleGlobalName(__pyx_t_4, __pyx_n_s_line); if (unlikely(!__pyx_t_4)) __PYX_ERR(0, 48, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_4); - __pyx_t_5 = NULL; - if (CYTHON_UNPACK_METHODS && unlikely(PyMethod_Check(__pyx_t_1))) { - __pyx_t_5 = PyMethod_GET_SELF(__pyx_t_1); - if (likely(__pyx_t_5)) { - PyObject* function = PyMethod_GET_FUNCTION(__pyx_t_1); - __Pyx_INCREF(__pyx_t_5); - __Pyx_INCREF(function); - __Pyx_DECREF_SET(__pyx_t_1, function); - } - } - __pyx_t_2 = (__pyx_t_5) ? __Pyx_PyObject_Call2Args(__pyx_t_1, __pyx_t_5, __pyx_t_4) : __Pyx_PyObject_CallOneArg(__pyx_t_1, __pyx_t_4); - __Pyx_XDECREF(__pyx_t_5); __pyx_t_5 = 0; - __Pyx_DECREF(__pyx_t_4); __pyx_t_4 = 0; - if (unlikely(!__pyx_t_2)) __PYX_ERR(0, 48, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_2); - __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0; - if (PyDict_SetItem(__pyx_d, __pyx_n_s_imp_date_ext_data, __pyx_t_2) < 0) __PYX_ERR(0, 48, __pyx_L1_error) - __Pyx_DECREF(__pyx_t_2); __pyx_t_2 = 0; - - /* "pmercury/utils/tls_utils.pyx":49 - * for line in os.popen('zcat %s' % (imp_date_ext_file)): - * imp_date_ext_data = json.loads(line) - * break # <<<<<<<<<<<<<< - * - * - */ - goto __pyx_L5_break; - - /* "pmercury/utils/tls_utils.pyx":47 - * break - * ELSE: - * for line in os.popen('zcat %s' % (imp_date_ext_file)): # <<<<<<<<<<<<<< - * imp_date_ext_data = json.loads(line) - * break - */ - } - __pyx_L5_break:; - __Pyx_DECREF(__pyx_t_3); __pyx_t_3 = 0; - - /* "pmercury/utils/tls_utils.pyx":53 - * - * - * def extract_server_name(bytes data, unsigned int offset, unsigned int data_len): # <<<<<<<<<<<<<< - * if data_len - offset < 7: - * return 'None' - */ - __pyx_t_3 = PyCFunction_NewEx(&__pyx_mdef_8pmercury_5utils_9tls_utils_1extract_server_name, NULL, __pyx_n_s_pmercury_utils_tls_utils); if (unlikely(!__pyx_t_3)) __PYX_ERR(0, 53, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_3); - if (PyDict_SetItem(__pyx_d, __pyx_n_s_extract_server_name, __pyx_t_3) < 0) __PYX_ERR(0, 53, __pyx_L1_error) - __Pyx_DECREF(__pyx_t_3); __pyx_t_3 = 0; - - /* "pmercury/utils/tls_utils.pyx":63 - * - * - * def eval_fp_str_general(fp_str_): # <<<<<<<<<<<<<< - * fp_str_ = '(%s)' % fp_str_ - * fp_str_ = fp_str_.replace('(','["').replace(')','"]').replace('][','],[') - */ - __pyx_t_3 = PyCFunction_NewEx(&__pyx_mdef_8pmercury_5utils_9tls_utils_3eval_fp_str_general, NULL, __pyx_n_s_pmercury_utils_tls_utils); if (unlikely(!__pyx_t_3)) __PYX_ERR(0, 63, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_3); - if (PyDict_SetItem(__pyx_d, __pyx_n_s_eval_fp_str_general, __pyx_t_3) < 0) __PYX_ERR(0, 63, __pyx_L1_error) - __Pyx_DECREF(__pyx_t_3); __pyx_t_3 = 0; - - /* "pmercury/utils/tls_utils.pyx":73 - * - * - * def eval_fp_str(fp_str_): # <<<<<<<<<<<<<< - * fp_str_ = fp_str_ - * t_ = fp_str_.split(')') - */ - __pyx_t_3 = PyCFunction_NewEx(&__pyx_mdef_8pmercury_5utils_9tls_utils_5eval_fp_str, NULL, __pyx_n_s_pmercury_utils_tls_utils); if (unlikely(!__pyx_t_3)) __PYX_ERR(0, 73, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_3); - if (PyDict_SetItem(__pyx_d, __pyx_n_s_eval_fp_str, __pyx_t_3) < 0) __PYX_ERR(0, 73, __pyx_L1_error) - __Pyx_DECREF(__pyx_t_3); __pyx_t_3 = 0; - - /* "pmercury/utils/tls_utils.pyx":84 - * - * - * def get_version_from_str(version_str_, convert=True): # <<<<<<<<<<<<<< - * if version_str_ in TLS_VERSION and convert: - * return TLS_VERSION[version_str_] - */ - __pyx_t_3 = PyCFunction_NewEx(&__pyx_mdef_8pmercury_5utils_9tls_utils_7get_version_from_str, NULL, __pyx_n_s_pmercury_utils_tls_utils); if (unlikely(!__pyx_t_3)) __PYX_ERR(0, 84, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_3); - if (PyDict_SetItem(__pyx_d, __pyx_n_s_get_version_from_str, __pyx_t_3) < 0) __PYX_ERR(0, 84, __pyx_L1_error) - __Pyx_DECREF(__pyx_t_3); __pyx_t_3 = 0; - - /* "pmercury/utils/tls_utils.pyx":91 - * - * - * def get_cs_from_str(cs_str_, convert=True): # <<<<<<<<<<<<<< - * cs_l_ = [] - * for i in range(0,len(cs_str_),4): - */ - __pyx_t_3 = PyCFunction_NewEx(&__pyx_mdef_8pmercury_5utils_9tls_utils_9get_cs_from_str, NULL, __pyx_n_s_pmercury_utils_tls_utils); if (unlikely(!__pyx_t_3)) __PYX_ERR(0, 91, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_3); - if (PyDict_SetItem(__pyx_d, __pyx_n_s_get_cs_from_str, __pyx_t_3) < 0) __PYX_ERR(0, 91, __pyx_L1_error) - __Pyx_DECREF(__pyx_t_3); __pyx_t_3 = 0; - - /* "pmercury/utils/tls_utils.pyx":102 - * - * - * def get_ext_from_str(exts_, convert=True, mode='client'): # <<<<<<<<<<<<<< - * ext_l_ = [] - * for ext in exts_: - */ - __pyx_t_3 = PyCFunction_NewEx(&__pyx_mdef_8pmercury_5utils_9tls_utils_11get_ext_from_str, NULL, __pyx_n_s_pmercury_utils_tls_utils); if (unlikely(!__pyx_t_3)) __PYX_ERR(0, 102, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_3); - if (PyDict_SetItem(__pyx_d, __pyx_n_s_get_ext_from_str, __pyx_t_3) < 0) __PYX_ERR(0, 102, __pyx_L1_error) - __Pyx_DECREF(__pyx_t_3); __pyx_t_3 = 0; - - /* "pmercury/utils/tls_utils.pyx":122 - * - * - * def get_implementation_date(cs_str_): # @TODO: add extension # <<<<<<<<<<<<<< - * dates_ = set([]) - * for i in range(0,len(cs_str_),4): - */ - __pyx_t_3 = PyCFunction_NewEx(&__pyx_mdef_8pmercury_5utils_9tls_utils_13get_implementation_date, NULL, __pyx_n_s_pmercury_utils_tls_utils); if (unlikely(!__pyx_t_3)) __PYX_ERR(0, 122, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_3); - if (PyDict_SetItem(__pyx_d, __pyx_n_s_get_implementation_date, __pyx_t_3) < 0) __PYX_ERR(0, 122, __pyx_L1_error) - __Pyx_DECREF(__pyx_t_3); __pyx_t_3 = 0; - - /* "pmercury/utils/tls_utils.pyx":136 - * - * - * def parse_extension_data(ext_type, ext_data_, mode): # <<<<<<<<<<<<<< - * ext_len = int(ext_data_[0:4],16) - * ext_data = ext_data_[4:] - */ - __pyx_t_3 = PyCFunction_NewEx(&__pyx_mdef_8pmercury_5utils_9tls_utils_15parse_extension_data, NULL, __pyx_n_s_pmercury_utils_tls_utils); if (unlikely(!__pyx_t_3)) __PYX_ERR(0, 136, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_3); - if (PyDict_SetItem(__pyx_d, __pyx_n_s_parse_extension_data, __pyx_t_3) < 0) __PYX_ERR(0, 136, __pyx_L1_error) - __Pyx_DECREF(__pyx_t_3); __pyx_t_3 = 0; - - /* "pmercury/utils/tls_utils.pyx":164 - * - * # helper to parse/extract/skip single extension - * def parse_extension(bytes data, unsigned int offset): # <<<<<<<<<<<<<< - * cdef str tmp_ext_type = degrease_type_code(data, offset) - * cdef str fp_ext_ = tmp_ext_type - */ - __pyx_t_3 = PyCFunction_NewEx(&__pyx_mdef_8pmercury_5utils_9tls_utils_17parse_extension, NULL, __pyx_n_s_pmercury_utils_tls_utils); if (unlikely(!__pyx_t_3)) __PYX_ERR(0, 164, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_3); - if (PyDict_SetItem(__pyx_d, __pyx_n_s_parse_extension, __pyx_t_3) < 0) __PYX_ERR(0, 164, __pyx_L1_error) - __Pyx_DECREF(__pyx_t_3); __pyx_t_3 = 0; - - /* "pmercury/utils/tls_utils.pyx":179 - * - * # helper to normalize grease type codes - * def degrease_type_code(unsigned char *data, unsigned int offset): # <<<<<<<<<<<<<< - * if data[offset] in grease_single_int_ and data[offset] == data[offset+1]: - * return '0a0a' - */ - __pyx_t_3 = PyCFunction_NewEx(&__pyx_mdef_8pmercury_5utils_9tls_utils_19degrease_type_code, NULL, __pyx_n_s_pmercury_utils_tls_utils); if (unlikely(!__pyx_t_3)) __PYX_ERR(0, 179, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_3); - if (PyDict_SetItem(__pyx_d, __pyx_n_s_degrease_type_code, __pyx_t_3) < 0) __PYX_ERR(0, 179, __pyx_L1_error) - __Pyx_DECREF(__pyx_t_3); __pyx_t_3 = 0; - - /* "pmercury/utils/tls_utils.pyx":187 - * - * # helper to normalize grease within supported_groups and supported_versions - * def degrease_ext_data(unsigned char *data, unsigned int offset, str ext_type, unsigned int ext_length, bytes ext_value): # <<<<<<<<<<<<<< - * degreased_ext_value = b'' - * if ext_type == '000a': # supported_groups - */ - __pyx_t_3 = PyCFunction_NewEx(&__pyx_mdef_8pmercury_5utils_9tls_utils_21degrease_ext_data, NULL, __pyx_n_s_pmercury_utils_tls_utils); if (unlikely(!__pyx_t_3)) __PYX_ERR(0, 187, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_3); - if (PyDict_SetItem(__pyx_d, __pyx_n_s_degrease_ext_data, __pyx_t_3) < 0) __PYX_ERR(0, 187, __pyx_L1_error) - __Pyx_DECREF(__pyx_t_3); __pyx_t_3 = 0; - - /* "pmercury/utils/tls_utils.pyx":209 - * - * - * def supported_groups(data, length): # <<<<<<<<<<<<<< - * if len(data) < 2: - * return '' - */ - __pyx_t_3 = PyCFunction_NewEx(&__pyx_mdef_8pmercury_5utils_9tls_utils_23supported_groups, NULL, __pyx_n_s_pmercury_utils_tls_utils); if (unlikely(!__pyx_t_3)) __PYX_ERR(0, 209, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_3); - if (PyDict_SetItem(__pyx_d, __pyx_n_s_supported_groups, __pyx_t_3) < 0) __PYX_ERR(0, 209, __pyx_L1_error) - __Pyx_DECREF(__pyx_t_3); __pyx_t_3 = 0; - - /* "pmercury/utils/tls_utils.pyx":227 - * - * - * def supported_versions(data, length): # <<<<<<<<<<<<<< - * if len(data) < 2: - * return '' - */ - __pyx_t_3 = PyCFunction_NewEx(&__pyx_mdef_8pmercury_5utils_9tls_utils_25supported_versions, NULL, __pyx_n_s_pmercury_utils_tls_utils); if (unlikely(!__pyx_t_3)) __PYX_ERR(0, 227, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_3); - if (PyDict_SetItem(__pyx_d, __pyx_n_s_supported_versions, __pyx_t_3) < 0) __PYX_ERR(0, 227, __pyx_L1_error) - __Pyx_DECREF(__pyx_t_3); __pyx_t_3 = 0; - - /* "pmercury/utils/tls_utils.pyx":246 - * - * - * def supported_versions_server(data, length): # <<<<<<<<<<<<<< - * if len(data) < 2: - * return '' - */ - __pyx_t_3 = PyCFunction_NewEx(&__pyx_mdef_8pmercury_5utils_9tls_utils_27supported_versions_server, NULL, __pyx_n_s_pmercury_utils_tls_utils); if (unlikely(!__pyx_t_3)) __PYX_ERR(0, 246, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_3); - if (PyDict_SetItem(__pyx_d, __pyx_n_s_supported_versions_server, __pyx_t_3) < 0) __PYX_ERR(0, 246, __pyx_L1_error) - __Pyx_DECREF(__pyx_t_3); __pyx_t_3 = 0; - - /* "pmercury/utils/tls_utils.pyx":259 - * - * - * def psk_key_exchange_modes(data, length): # <<<<<<<<<<<<<< - * if len(data) < 2: - * return '' - */ - __pyx_t_3 = PyCFunction_NewEx(&__pyx_mdef_8pmercury_5utils_9tls_utils_29psk_key_exchange_modes, NULL, __pyx_n_s_pmercury_utils_tls_utils); if (unlikely(!__pyx_t_3)) __PYX_ERR(0, 259, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_3); - if (PyDict_SetItem(__pyx_d, __pyx_n_s_psk_key_exchange_modes, __pyx_t_3) < 0) __PYX_ERR(0, 259, __pyx_L1_error) - __Pyx_DECREF(__pyx_t_3); __pyx_t_3 = 0; - - /* "pmercury/utils/tls_utils.pyx":271 - * - * - * def key_share_client(data, length): # <<<<<<<<<<<<<< - * if len(data) < 2: - * return '' - */ - __pyx_t_3 = PyCFunction_NewEx(&__pyx_mdef_8pmercury_5utils_9tls_utils_31key_share_client, NULL, __pyx_n_s_pmercury_utils_tls_utils); if (unlikely(!__pyx_t_3)) __PYX_ERR(0, 271, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_3); - if (PyDict_SetItem(__pyx_d, __pyx_n_s_key_share_client, __pyx_t_3) < 0) __PYX_ERR(0, 271, __pyx_L1_error) - __Pyx_DECREF(__pyx_t_3); __pyx_t_3 = 0; - - /* "pmercury/utils/tls_utils.pyx":291 - * - * - * def ec_point_formats(data, length): # <<<<<<<<<<<<<< - * if len(data) < 2: - * return '' - */ - __pyx_t_3 = PyCFunction_NewEx(&__pyx_mdef_8pmercury_5utils_9tls_utils_33ec_point_formats, NULL, __pyx_n_s_pmercury_utils_tls_utils); if (unlikely(!__pyx_t_3)) __PYX_ERR(0, 291, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_3); - if (PyDict_SetItem(__pyx_d, __pyx_n_s_ec_point_formats, __pyx_t_3) < 0) __PYX_ERR(0, 291, __pyx_L1_error) - __Pyx_DECREF(__pyx_t_3); __pyx_t_3 = 0; - - /* "pmercury/utils/tls_utils.pyx":308 - * - * - * def status_request(data, length): # <<<<<<<<<<<<<< - * if len(data) < 2: - * return '' - */ - __pyx_t_3 = PyCFunction_NewEx(&__pyx_mdef_8pmercury_5utils_9tls_utils_35status_request, NULL, __pyx_n_s_pmercury_utils_tls_utils); if (unlikely(!__pyx_t_3)) __PYX_ERR(0, 308, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_3); - if (PyDict_SetItem(__pyx_d, __pyx_n_s_status_request, __pyx_t_3) < 0) __PYX_ERR(0, 308, __pyx_L1_error) - __Pyx_DECREF(__pyx_t_3); __pyx_t_3 = 0; - - /* "pmercury/utils/tls_utils.pyx":321 - * - * - * def signature_algorithms(data, length): # <<<<<<<<<<<<<< - * if len(data) < 2: - * return '' - */ - __pyx_t_3 = PyCFunction_NewEx(&__pyx_mdef_8pmercury_5utils_9tls_utils_37signature_algorithms, NULL, __pyx_n_s_pmercury_utils_tls_utils); if (unlikely(!__pyx_t_3)) __PYX_ERR(0, 321, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_3); - if (PyDict_SetItem(__pyx_d, __pyx_n_s_signature_algorithms, __pyx_t_3) < 0) __PYX_ERR(0, 321, __pyx_L1_error) - __Pyx_DECREF(__pyx_t_3); __pyx_t_3 = 0; - - /* "pmercury/utils/tls_utils.pyx":340 - * - * - * def parse_application_layer_protocol_negotiation(data, length): # <<<<<<<<<<<<<< - * alpn_len = int(data[0:4], 16) - * alpn_offset = 4 - */ - __pyx_t_3 = PyCFunction_NewEx(&__pyx_mdef_8pmercury_5utils_9tls_utils_39parse_application_layer_protocol_negotiation, NULL, __pyx_n_s_pmercury_utils_tls_utils); if (unlikely(!__pyx_t_3)) __PYX_ERR(0, 340, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_3); - if (PyDict_SetItem(__pyx_d, __pyx_n_s_parse_application_layer_protocol, __pyx_t_3) < 0) __PYX_ERR(0, 340, __pyx_L1_error) - __Pyx_DECREF(__pyx_t_3); __pyx_t_3 = 0; - - /* "pmercury/utils/tls_utils.pyx":353 - * - * - * def get_tls_params(fp_): # <<<<<<<<<<<<<< - * cs_ = [] - * for i in range(0,len(fp_[1][0]),4): - */ - __pyx_t_3 = PyCFunction_NewEx(&__pyx_mdef_8pmercury_5utils_9tls_utils_41get_tls_params, NULL, __pyx_n_s_pmercury_utils_tls_utils); if (unlikely(!__pyx_t_3)) __PYX_ERR(0, 353, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_3); - if (PyDict_SetItem(__pyx_d, __pyx_n_s_get_tls_params, __pyx_t_3) < 0) __PYX_ERR(0, 353, __pyx_L1_error) - __Pyx_DECREF(__pyx_t_3); __pyx_t_3 = 0; - - /* "pmercury/utils/tls_utils.pyx":367 - * - * - * def get_sequence(fp_): # <<<<<<<<<<<<<< - * seq = [] - * cs_ = fp_[1][0] - */ - __pyx_t_3 = PyCFunction_NewEx(&__pyx_mdef_8pmercury_5utils_9tls_utils_43get_sequence, NULL, __pyx_n_s_pmercury_utils_tls_utils); if (unlikely(!__pyx_t_3)) __PYX_ERR(0, 367, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_3); - if (PyDict_SetItem(__pyx_d, __pyx_n_s_get_sequence, __pyx_t_3) < 0) __PYX_ERR(0, 367, __pyx_L1_error) - __Pyx_DECREF(__pyx_t_3); __pyx_t_3 = 0; - - /* "pmercury/utils/tls_utils.pyx":379 - * - * - * def get_ngram(l, ngram): # <<<<<<<<<<<<<< - * l_ = [] - * for i in range(0,len(l)-ngram): - */ - __pyx_t_3 = PyCFunction_NewEx(&__pyx_mdef_8pmercury_5utils_9tls_utils_45get_ngram, NULL, __pyx_n_s_pmercury_utils_tls_utils); if (unlikely(!__pyx_t_3)) __PYX_ERR(0, 379, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_3); - if (PyDict_SetItem(__pyx_d, __pyx_n_s_get_ngram, __pyx_t_3) < 0) __PYX_ERR(0, 379, __pyx_L1_error) - __Pyx_DECREF(__pyx_t_3); __pyx_t_3 = 0; - - /* "pmercury/utils/tls_utils.pyx":1 - * #cython: language_level=3, cdivision=True, infer_types=True, initializedcheck=False, c_string_type=bytes, embedsignature=False # <<<<<<<<<<<<<< - * - * """ - */ - __pyx_t_3 = __Pyx_PyDict_NewPresized(0); if (unlikely(!__pyx_t_3)) __PYX_ERR(0, 1, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_3); - if (PyDict_SetItem(__pyx_d, __pyx_n_s_test, __pyx_t_3) < 0) __PYX_ERR(0, 1, __pyx_L1_error) - __Pyx_DECREF(__pyx_t_3); __pyx_t_3 = 0; - - /*--- Wrapped vars code ---*/ - - goto __pyx_L0; - __pyx_L1_error:; - __Pyx_XDECREF(__pyx_t_1); - __Pyx_XDECREF(__pyx_t_2); - __Pyx_XDECREF(__pyx_t_3); - __Pyx_XDECREF(__pyx_t_4); - __Pyx_XDECREF(__pyx_t_5); - if (__pyx_m) { - if (__pyx_d) { - __Pyx_AddTraceback("init pmercury.utils.tls_utils", __pyx_clineno, __pyx_lineno, __pyx_filename); - } - Py_CLEAR(__pyx_m); - } else if (!PyErr_Occurred()) { - PyErr_SetString(PyExc_ImportError, "init pmercury.utils.tls_utils"); - } - __pyx_L0:; - __Pyx_RefNannyFinishContext(); - #if CYTHON_PEP489_MULTI_PHASE_INIT - return (__pyx_m != NULL) ? 0 : -1; - #elif PY_MAJOR_VERSION >= 3 - return __pyx_m; - #else - return; - #endif -} - -/* --- Runtime support code --- */ -/* Refnanny */ -#if CYTHON_REFNANNY -static __Pyx_RefNannyAPIStruct *__Pyx_RefNannyImportAPI(const char *modname) { - PyObject *m = NULL, *p = NULL; - void *r = NULL; - m = PyImport_ImportModule(modname); - if (!m) goto end; - p = PyObject_GetAttrString(m, "RefNannyAPI"); - if (!p) goto end; - r = PyLong_AsVoidPtr(p); -end: - Py_XDECREF(p); - Py_XDECREF(m); - return (__Pyx_RefNannyAPIStruct *)r; -} -#endif - -/* PyObjectGetAttrStr */ -#if CYTHON_USE_TYPE_SLOTS -static CYTHON_INLINE PyObject* __Pyx_PyObject_GetAttrStr(PyObject* obj, PyObject* attr_name) { - PyTypeObject* tp = Py_TYPE(obj); - if (likely(tp->tp_getattro)) - return tp->tp_getattro(obj, attr_name); -#if PY_MAJOR_VERSION < 3 - if (likely(tp->tp_getattr)) - return tp->tp_getattr(obj, PyString_AS_STRING(attr_name)); -#endif - return PyObject_GetAttr(obj, attr_name); -} -#endif - -/* GetBuiltinName */ -static PyObject *__Pyx_GetBuiltinName(PyObject *name) { - PyObject* result = __Pyx_PyObject_GetAttrStr(__pyx_b, name); - if (unlikely(!result)) { - PyErr_Format(PyExc_NameError, -#if PY_MAJOR_VERSION >= 3 - "name '%U' is not defined", name); -#else - "name '%.200s' is not defined", PyString_AS_STRING(name)); -#endif - } - return result; -} - -/* RaiseArgTupleInvalid */ -static void __Pyx_RaiseArgtupleInvalid( - const char* func_name, - int exact, - Py_ssize_t num_min, - Py_ssize_t num_max, - Py_ssize_t num_found) -{ - Py_ssize_t num_expected; - const char *more_or_less; - if (num_found < num_min) { - num_expected = num_min; - more_or_less = "at least"; - } else { - num_expected = num_max; - more_or_less = "at most"; - } - if (exact) { - more_or_less = "exactly"; - } - PyErr_Format(PyExc_TypeError, - "%.200s() takes %.8s %" CYTHON_FORMAT_SSIZE_T "d positional argument%.1s (%" CYTHON_FORMAT_SSIZE_T "d given)", - func_name, more_or_less, num_expected, - (num_expected == 1) ? "" : "s", num_found); -} - -/* RaiseDoubleKeywords */ -static void __Pyx_RaiseDoubleKeywordsError( - const char* func_name, - PyObject* kw_name) -{ - PyErr_Format(PyExc_TypeError, - #if PY_MAJOR_VERSION >= 3 - "%s() got multiple values for keyword argument '%U'", func_name, kw_name); - #else - "%s() got multiple values for keyword argument '%s'", func_name, - PyString_AsString(kw_name)); - #endif -} - -/* ParseKeywords */ -static int __Pyx_ParseOptionalKeywords( - PyObject *kwds, - PyObject **argnames[], - PyObject *kwds2, - PyObject *values[], - Py_ssize_t num_pos_args, - const char* function_name) -{ - PyObject *key = 0, *value = 0; - Py_ssize_t pos = 0; - PyObject*** name; - PyObject*** first_kw_arg = argnames + num_pos_args; - while (PyDict_Next(kwds, &pos, &key, &value)) { - name = first_kw_arg; - while (*name && (**name != key)) name++; - if (*name) { - values[name-argnames] = value; - continue; - } - name = first_kw_arg; - #if PY_MAJOR_VERSION < 3 - if (likely(PyString_CheckExact(key)) || likely(PyString_Check(key))) { - while (*name) { - if ((CYTHON_COMPILING_IN_PYPY || PyString_GET_SIZE(**name) == PyString_GET_SIZE(key)) - && _PyString_Eq(**name, key)) { - values[name-argnames] = value; - break; - } - name++; - } - if (*name) continue; - else { - PyObject*** argname = argnames; - while (argname != first_kw_arg) { - if ((**argname == key) || ( - (CYTHON_COMPILING_IN_PYPY || PyString_GET_SIZE(**argname) == PyString_GET_SIZE(key)) - && _PyString_Eq(**argname, key))) { - goto arg_passed_twice; - } - argname++; - } - } - } else - #endif - if (likely(PyUnicode_Check(key))) { - while (*name) { - int cmp = (**name == key) ? 0 : - #if !CYTHON_COMPILING_IN_PYPY && PY_MAJOR_VERSION >= 3 - (PyUnicode_GET_SIZE(**name) != PyUnicode_GET_SIZE(key)) ? 1 : - #endif - PyUnicode_Compare(**name, key); - if (cmp < 0 && unlikely(PyErr_Occurred())) goto bad; - if (cmp == 0) { - values[name-argnames] = value; - break; - } - name++; - } - if (*name) continue; - else { - PyObject*** argname = argnames; - while (argname != first_kw_arg) { - int cmp = (**argname == key) ? 0 : - #if !CYTHON_COMPILING_IN_PYPY && PY_MAJOR_VERSION >= 3 - (PyUnicode_GET_SIZE(**argname) != PyUnicode_GET_SIZE(key)) ? 1 : - #endif - PyUnicode_Compare(**argname, key); - if (cmp < 0 && unlikely(PyErr_Occurred())) goto bad; - if (cmp == 0) goto arg_passed_twice; - argname++; - } - } - } else - goto invalid_keyword_type; - if (kwds2) { - if (unlikely(PyDict_SetItem(kwds2, key, value))) goto bad; - } else { - goto invalid_keyword; - } - } - return 0; -arg_passed_twice: - __Pyx_RaiseDoubleKeywordsError(function_name, key); - goto bad; -invalid_keyword_type: - PyErr_Format(PyExc_TypeError, - "%.200s() keywords must be strings", function_name); - goto bad; -invalid_keyword: - PyErr_Format(PyExc_TypeError, - #if PY_MAJOR_VERSION < 3 - "%.200s() got an unexpected keyword argument '%.200s'", - function_name, PyString_AsString(key)); - #else - "%s() got an unexpected keyword argument '%U'", - function_name, key); - #endif -bad: - return -1; -} - -/* ArgTypeTest */ -static int __Pyx__ArgTypeTest(PyObject *obj, PyTypeObject *type, const char *name, int exact) -{ - if (unlikely(!type)) { - PyErr_SetString(PyExc_SystemError, "Missing type object"); - return 0; - } - else if (exact) { - #if PY_MAJOR_VERSION == 2 - if ((type == &PyBaseString_Type) && likely(__Pyx_PyBaseString_CheckExact(obj))) return 1; - #endif - } - else { - if (likely(__Pyx_TypeCheck(obj, type))) return 1; - } - PyErr_Format(PyExc_TypeError, - "Argument '%.200s' has incorrect type (expected %.200s, got %.200s)", - name, type->tp_name, Py_TYPE(obj)->tp_name); - return 0; -} - -/* PyFunctionFastCall */ -#if CYTHON_FAST_PYCALL -static PyObject* __Pyx_PyFunction_FastCallNoKw(PyCodeObject *co, PyObject **args, Py_ssize_t na, - PyObject *globals) { - PyFrameObject *f; - PyThreadState *tstate = __Pyx_PyThreadState_Current; - PyObject **fastlocals; - Py_ssize_t i; - PyObject *result; - assert(globals != NULL); - /* XXX Perhaps we should create a specialized - PyFrame_New() that doesn't take locals, but does - take builtins without sanity checking them. - */ - assert(tstate != NULL); - f = PyFrame_New(tstate, co, globals, NULL); - if (f == NULL) { - return NULL; - } - fastlocals = __Pyx_PyFrame_GetLocalsplus(f); - for (i = 0; i < na; i++) { - Py_INCREF(*args); - fastlocals[i] = *args++; - } - result = PyEval_EvalFrameEx(f,0); - ++tstate->recursion_depth; - Py_DECREF(f); - --tstate->recursion_depth; - return result; -} -#if 1 || PY_VERSION_HEX < 0x030600B1 -static PyObject *__Pyx_PyFunction_FastCallDict(PyObject *func, PyObject **args, Py_ssize_t nargs, PyObject *kwargs) { - PyCodeObject *co = (PyCodeObject *)PyFunction_GET_CODE(func); - PyObject *globals = PyFunction_GET_GLOBALS(func); - PyObject *argdefs = PyFunction_GET_DEFAULTS(func); - PyObject *closure; -#if PY_MAJOR_VERSION >= 3 - PyObject *kwdefs; -#endif - PyObject *kwtuple, **k; - PyObject **d; - Py_ssize_t nd; - Py_ssize_t nk; - PyObject *result; - assert(kwargs == NULL || PyDict_Check(kwargs)); - nk = kwargs ? PyDict_Size(kwargs) : 0; - if (Py_EnterRecursiveCall((char*)" while calling a Python object")) { - return NULL; - } - if ( -#if PY_MAJOR_VERSION >= 3 - co->co_kwonlyargcount == 0 && -#endif - likely(kwargs == NULL || nk == 0) && - co->co_flags == (CO_OPTIMIZED | CO_NEWLOCALS | CO_NOFREE)) { - if (argdefs == NULL && co->co_argcount == nargs) { - result = __Pyx_PyFunction_FastCallNoKw(co, args, nargs, globals); - goto done; - } - else if (nargs == 0 && argdefs != NULL - && co->co_argcount == Py_SIZE(argdefs)) { - /* function called with no arguments, but all parameters have - a default value: use default values as arguments .*/ - args = &PyTuple_GET_ITEM(argdefs, 0); - result =__Pyx_PyFunction_FastCallNoKw(co, args, Py_SIZE(argdefs), globals); - goto done; - } - } - if (kwargs != NULL) { - Py_ssize_t pos, i; - kwtuple = PyTuple_New(2 * nk); - if (kwtuple == NULL) { - result = NULL; - goto done; - } - k = &PyTuple_GET_ITEM(kwtuple, 0); - pos = i = 0; - while (PyDict_Next(kwargs, &pos, &k[i], &k[i+1])) { - Py_INCREF(k[i]); - Py_INCREF(k[i+1]); - i += 2; - } - nk = i / 2; - } - else { - kwtuple = NULL; - k = NULL; - } - closure = PyFunction_GET_CLOSURE(func); -#if PY_MAJOR_VERSION >= 3 - kwdefs = PyFunction_GET_KW_DEFAULTS(func); -#endif - if (argdefs != NULL) { - d = &PyTuple_GET_ITEM(argdefs, 0); - nd = Py_SIZE(argdefs); - } - else { - d = NULL; - nd = 0; - } -#if PY_MAJOR_VERSION >= 3 - result = PyEval_EvalCodeEx((PyObject*)co, globals, (PyObject *)NULL, - args, (int)nargs, - k, (int)nk, - d, (int)nd, kwdefs, closure); -#else - result = PyEval_EvalCodeEx(co, globals, (PyObject *)NULL, - args, (int)nargs, - k, (int)nk, - d, (int)nd, closure); -#endif - Py_XDECREF(kwtuple); -done: - Py_LeaveRecursiveCall(); - return result; -} -#endif -#endif - -/* PyCFunctionFastCall */ -#if CYTHON_FAST_PYCCALL -static CYTHON_INLINE PyObject * __Pyx_PyCFunction_FastCall(PyObject *func_obj, PyObject **args, Py_ssize_t nargs) { - PyCFunctionObject *func = (PyCFunctionObject*)func_obj; - PyCFunction meth = PyCFunction_GET_FUNCTION(func); - PyObject *self = PyCFunction_GET_SELF(func); - int flags = PyCFunction_GET_FLAGS(func); - assert(PyCFunction_Check(func)); - assert(METH_FASTCALL == (flags & ~(METH_CLASS | METH_STATIC | METH_COEXIST | METH_KEYWORDS | METH_STACKLESS))); - assert(nargs >= 0); - assert(nargs == 0 || args != NULL); - /* _PyCFunction_FastCallDict() must not be called with an exception set, - because it may clear it (directly or indirectly) and so the - caller loses its exception */ - assert(!PyErr_Occurred()); - if ((PY_VERSION_HEX < 0x030700A0) || unlikely(flags & METH_KEYWORDS)) { - return (*((__Pyx_PyCFunctionFastWithKeywords)(void*)meth)) (self, args, nargs, NULL); - } else { - return (*((__Pyx_PyCFunctionFast)(void*)meth)) (self, args, nargs); - } -} -#endif - -/* PyObjectCall */ -#if CYTHON_COMPILING_IN_CPYTHON -static CYTHON_INLINE PyObject* __Pyx_PyObject_Call(PyObject *func, PyObject *arg, PyObject *kw) { - PyObject *result; - ternaryfunc call = func->ob_type->tp_call; - if (unlikely(!call)) - return PyObject_Call(func, arg, kw); - if (unlikely(Py_EnterRecursiveCall((char*)" while calling a Python object"))) - return NULL; - result = (*call)(func, arg, kw); - Py_LeaveRecursiveCall(); - if (unlikely(!result) && unlikely(!PyErr_Occurred())) { - PyErr_SetString( - PyExc_SystemError, - "NULL result without error in PyObject_Call"); - } - return result; -} -#endif - -/* decode_c_bytes */ -static CYTHON_INLINE PyObject* __Pyx_decode_c_bytes( - const char* cstring, Py_ssize_t length, Py_ssize_t start, Py_ssize_t stop, - const char* encoding, const char* errors, - PyObject* (*decode_func)(const char *s, Py_ssize_t size, const char *errors)) { - if (unlikely((start < 0) | (stop < 0))) { - if (start < 0) { - start += length; - if (start < 0) - start = 0; - } - if (stop < 0) - stop += length; - } - if (stop > length) - stop = length; - length = stop - start; - if (unlikely(length <= 0)) - return PyUnicode_FromUnicode(NULL, 0); - cstring += start; - if (decode_func) { - return decode_func(cstring, length, errors); - } else { - return PyUnicode_Decode(cstring, length, encoding, errors); - } -} - -/* GetTopmostException */ -#if CYTHON_USE_EXC_INFO_STACK -static _PyErr_StackItem * -__Pyx_PyErr_GetTopmostException(PyThreadState *tstate) -{ - _PyErr_StackItem *exc_info = tstate->exc_info; - while ((exc_info->exc_type == NULL || exc_info->exc_type == Py_None) && - exc_info->previous_item != NULL) - { - exc_info = exc_info->previous_item; - } - return exc_info; -} -#endif - -/* SaveResetException */ -#if CYTHON_FAST_THREAD_STATE -static CYTHON_INLINE void __Pyx__ExceptionSave(PyThreadState *tstate, PyObject **type, PyObject **value, PyObject **tb) { - #if CYTHON_USE_EXC_INFO_STACK - _PyErr_StackItem *exc_info = __Pyx_PyErr_GetTopmostException(tstate); - *type = exc_info->exc_type; - *value = exc_info->exc_value; - *tb = exc_info->exc_traceback; - #else - *type = tstate->exc_type; - *value = tstate->exc_value; - *tb = tstate->exc_traceback; - #endif - Py_XINCREF(*type); - Py_XINCREF(*value); - Py_XINCREF(*tb); -} -static CYTHON_INLINE void __Pyx__ExceptionReset(PyThreadState *tstate, PyObject *type, PyObject *value, PyObject *tb) { - PyObject *tmp_type, *tmp_value, *tmp_tb; - #if CYTHON_USE_EXC_INFO_STACK - _PyErr_StackItem *exc_info = tstate->exc_info; - tmp_type = exc_info->exc_type; - tmp_value = exc_info->exc_value; - tmp_tb = exc_info->exc_traceback; - exc_info->exc_type = type; - exc_info->exc_value = value; - exc_info->exc_traceback = tb; - #else - tmp_type = tstate->exc_type; - tmp_value = tstate->exc_value; - tmp_tb = tstate->exc_traceback; - tstate->exc_type = type; - tstate->exc_value = value; - tstate->exc_traceback = tb; - #endif - Py_XDECREF(tmp_type); - Py_XDECREF(tmp_value); - Py_XDECREF(tmp_tb); -} -#endif - -/* PyErrExceptionMatches */ -#if CYTHON_FAST_THREAD_STATE -static int __Pyx_PyErr_ExceptionMatchesTuple(PyObject *exc_type, PyObject *tuple) { - Py_ssize_t i, n; - n = PyTuple_GET_SIZE(tuple); -#if PY_MAJOR_VERSION >= 3 - for (i=0; icurexc_type; - if (exc_type == err) return 1; - if (unlikely(!exc_type)) return 0; - if (unlikely(PyTuple_Check(err))) - return __Pyx_PyErr_ExceptionMatchesTuple(exc_type, err); - return __Pyx_PyErr_GivenExceptionMatches(exc_type, err); -} -#endif - -/* GetException */ -#if CYTHON_FAST_THREAD_STATE -static int __Pyx__GetException(PyThreadState *tstate, PyObject **type, PyObject **value, PyObject **tb) -#else -static int __Pyx_GetException(PyObject **type, PyObject **value, PyObject **tb) -#endif -{ - PyObject *local_type, *local_value, *local_tb; -#if CYTHON_FAST_THREAD_STATE - PyObject *tmp_type, *tmp_value, *tmp_tb; - local_type = tstate->curexc_type; - local_value = tstate->curexc_value; - local_tb = tstate->curexc_traceback; - tstate->curexc_type = 0; - tstate->curexc_value = 0; - tstate->curexc_traceback = 0; -#else - PyErr_Fetch(&local_type, &local_value, &local_tb); -#endif - PyErr_NormalizeException(&local_type, &local_value, &local_tb); -#if CYTHON_FAST_THREAD_STATE - if (unlikely(tstate->curexc_type)) -#else - if (unlikely(PyErr_Occurred())) -#endif - goto bad; - #if PY_MAJOR_VERSION >= 3 - if (local_tb) { - if (unlikely(PyException_SetTraceback(local_value, local_tb) < 0)) - goto bad; - } - #endif - Py_XINCREF(local_tb); - Py_XINCREF(local_type); - Py_XINCREF(local_value); - *type = local_type; - *value = local_value; - *tb = local_tb; -#if CYTHON_FAST_THREAD_STATE - #if CYTHON_USE_EXC_INFO_STACK - { - _PyErr_StackItem *exc_info = tstate->exc_info; - tmp_type = exc_info->exc_type; - tmp_value = exc_info->exc_value; - tmp_tb = exc_info->exc_traceback; - exc_info->exc_type = local_type; - exc_info->exc_value = local_value; - exc_info->exc_traceback = local_tb; - } - #else - tmp_type = tstate->exc_type; - tmp_value = tstate->exc_value; - tmp_tb = tstate->exc_traceback; - tstate->exc_type = local_type; - tstate->exc_value = local_value; - tstate->exc_traceback = local_tb; - #endif - Py_XDECREF(tmp_type); - Py_XDECREF(tmp_value); - Py_XDECREF(tmp_tb); -#else - PyErr_SetExcInfo(local_type, local_value, local_tb); -#endif - return 0; -bad: - *type = 0; - *value = 0; - *tb = 0; - Py_XDECREF(local_type); - Py_XDECREF(local_value); - Py_XDECREF(local_tb); - return -1; -} - -/* PyObjectCallMethO */ -#if CYTHON_COMPILING_IN_CPYTHON -static CYTHON_INLINE PyObject* __Pyx_PyObject_CallMethO(PyObject *func, PyObject *arg) { - PyObject *self, *result; - PyCFunction cfunc; - cfunc = PyCFunction_GET_FUNCTION(func); - self = PyCFunction_GET_SELF(func); - if (unlikely(Py_EnterRecursiveCall((char*)" while calling a Python object"))) - return NULL; - result = cfunc(self, arg); - Py_LeaveRecursiveCall(); - if (unlikely(!result) && unlikely(!PyErr_Occurred())) { - PyErr_SetString( - PyExc_SystemError, - "NULL result without error in PyObject_Call"); - } - return result; -} -#endif - -/* PyObjectCallNoArg */ -#if CYTHON_COMPILING_IN_CPYTHON -static CYTHON_INLINE PyObject* __Pyx_PyObject_CallNoArg(PyObject *func) { -#if CYTHON_FAST_PYCALL - if (PyFunction_Check(func)) { - return __Pyx_PyFunction_FastCall(func, NULL, 0); - } -#endif -#ifdef __Pyx_CyFunction_USED - if (likely(PyCFunction_Check(func) || __Pyx_CyFunction_Check(func))) -#else - if (likely(PyCFunction_Check(func))) -#endif - { - if (likely(PyCFunction_GET_FLAGS(func) & METH_NOARGS)) { - return __Pyx_PyObject_CallMethO(func, NULL); - } - } - return __Pyx_PyObject_Call(func, __pyx_empty_tuple, NULL); -} -#endif - -/* PyObjectCallOneArg */ -#if CYTHON_COMPILING_IN_CPYTHON -static PyObject* __Pyx__PyObject_CallOneArg(PyObject *func, PyObject *arg) { - PyObject *result; - PyObject *args = PyTuple_New(1); - if (unlikely(!args)) return NULL; - Py_INCREF(arg); - PyTuple_SET_ITEM(args, 0, arg); - result = __Pyx_PyObject_Call(func, args, NULL); - Py_DECREF(args); - return result; -} -static CYTHON_INLINE PyObject* __Pyx_PyObject_CallOneArg(PyObject *func, PyObject *arg) { -#if CYTHON_FAST_PYCALL - if (PyFunction_Check(func)) { - return __Pyx_PyFunction_FastCall(func, &arg, 1); - } -#endif - if (likely(PyCFunction_Check(func))) { - if (likely(PyCFunction_GET_FLAGS(func) & METH_O)) { - return __Pyx_PyObject_CallMethO(func, arg); -#if CYTHON_FAST_PYCCALL - } else if (PyCFunction_GET_FLAGS(func) & METH_FASTCALL) { - return __Pyx_PyCFunction_FastCall(func, &arg, 1); -#endif - } - } - return __Pyx__PyObject_CallOneArg(func, arg); -} -#else -static CYTHON_INLINE PyObject* __Pyx_PyObject_CallOneArg(PyObject *func, PyObject *arg) { - PyObject *result; - PyObject *args = PyTuple_Pack(1, arg); - if (unlikely(!args)) return NULL; - result = __Pyx_PyObject_Call(func, args, NULL); - Py_DECREF(args); - return result; -} -#endif - -/* PyDictVersioning */ -#if CYTHON_USE_DICT_VERSIONS && CYTHON_USE_TYPE_SLOTS -static CYTHON_INLINE PY_UINT64_T __Pyx_get_tp_dict_version(PyObject *obj) { - PyObject *dict = Py_TYPE(obj)->tp_dict; - return likely(dict) ? __PYX_GET_DICT_VERSION(dict) : 0; -} -static CYTHON_INLINE PY_UINT64_T __Pyx_get_object_dict_version(PyObject *obj) { - PyObject **dictptr = NULL; - Py_ssize_t offset = Py_TYPE(obj)->tp_dictoffset; - if (offset) { -#if CYTHON_COMPILING_IN_CPYTHON - dictptr = (likely(offset > 0)) ? (PyObject **) ((char *)obj + offset) : _PyObject_GetDictPtr(obj); -#else - dictptr = _PyObject_GetDictPtr(obj); -#endif - } - return (dictptr && *dictptr) ? __PYX_GET_DICT_VERSION(*dictptr) : 0; -} -static CYTHON_INLINE int __Pyx_object_dict_version_matches(PyObject* obj, PY_UINT64_T tp_dict_version, PY_UINT64_T obj_dict_version) { - PyObject *dict = Py_TYPE(obj)->tp_dict; - if (unlikely(!dict) || unlikely(tp_dict_version != __PYX_GET_DICT_VERSION(dict))) - return 0; - return obj_dict_version == __Pyx_get_object_dict_version(obj); -} -#endif - -/* GetModuleGlobalName */ -#if CYTHON_USE_DICT_VERSIONS -static PyObject *__Pyx__GetModuleGlobalName(PyObject *name, PY_UINT64_T *dict_version, PyObject **dict_cached_value) -#else -static CYTHON_INLINE PyObject *__Pyx__GetModuleGlobalName(PyObject *name) -#endif -{ - PyObject *result; -#if !CYTHON_AVOID_BORROWED_REFS -#if CYTHON_COMPILING_IN_CPYTHON && PY_VERSION_HEX >= 0x030500A1 - result = _PyDict_GetItem_KnownHash(__pyx_d, name, ((PyASCIIObject *) name)->hash); - __PYX_UPDATE_DICT_CACHE(__pyx_d, result, *dict_cached_value, *dict_version) - if (likely(result)) { - return __Pyx_NewRef(result); - } else if (unlikely(PyErr_Occurred())) { - return NULL; - } -#else - result = PyDict_GetItem(__pyx_d, name); - __PYX_UPDATE_DICT_CACHE(__pyx_d, result, *dict_cached_value, *dict_version) - if (likely(result)) { - return __Pyx_NewRef(result); - } -#endif -#else - result = PyObject_GetItem(__pyx_d, name); - __PYX_UPDATE_DICT_CACHE(__pyx_d, result, *dict_cached_value, *dict_version) - if (likely(result)) { - return __Pyx_NewRef(result); - } - PyErr_Clear(); -#endif - return __Pyx_GetBuiltinName(name); -} - -/* PyObjectCall2Args */ -static CYTHON_UNUSED PyObject* __Pyx_PyObject_Call2Args(PyObject* function, PyObject* arg1, PyObject* arg2) { - PyObject *args, *result = NULL; - #if CYTHON_FAST_PYCALL - if (PyFunction_Check(function)) { - PyObject *args[2] = {arg1, arg2}; - return __Pyx_PyFunction_FastCall(function, args, 2); - } - #endif - #if CYTHON_FAST_PYCCALL - if (__Pyx_PyFastCFunction_Check(function)) { - PyObject *args[2] = {arg1, arg2}; - return __Pyx_PyCFunction_FastCall(function, args, 2); - } - #endif - args = PyTuple_New(2); - if (unlikely(!args)) goto done; - Py_INCREF(arg1); - PyTuple_SET_ITEM(args, 0, arg1); - Py_INCREF(arg2); - PyTuple_SET_ITEM(args, 1, arg2); - Py_INCREF(function); - result = __Pyx_PyObject_Call(function, args, NULL); - Py_DECREF(args); - Py_DECREF(function); -done: - return result; -} - -/* GetItemInt */ -static PyObject *__Pyx_GetItemInt_Generic(PyObject *o, PyObject* j) { - PyObject *r; - if (!j) return NULL; - r = PyObject_GetItem(o, j); - Py_DECREF(j); - return r; -} -static CYTHON_INLINE PyObject *__Pyx_GetItemInt_List_Fast(PyObject *o, Py_ssize_t i, - CYTHON_NCP_UNUSED int wraparound, - CYTHON_NCP_UNUSED int boundscheck) { -#if CYTHON_ASSUME_SAFE_MACROS && !CYTHON_AVOID_BORROWED_REFS - Py_ssize_t wrapped_i = i; - if (wraparound & unlikely(i < 0)) { - wrapped_i += PyList_GET_SIZE(o); - } - if ((!boundscheck) || likely(__Pyx_is_valid_index(wrapped_i, PyList_GET_SIZE(o)))) { - PyObject *r = PyList_GET_ITEM(o, wrapped_i); - Py_INCREF(r); - return r; - } - return __Pyx_GetItemInt_Generic(o, PyInt_FromSsize_t(i)); -#else - return PySequence_GetItem(o, i); -#endif -} -static CYTHON_INLINE PyObject *__Pyx_GetItemInt_Tuple_Fast(PyObject *o, Py_ssize_t i, - CYTHON_NCP_UNUSED int wraparound, - CYTHON_NCP_UNUSED int boundscheck) { -#if CYTHON_ASSUME_SAFE_MACROS && !CYTHON_AVOID_BORROWED_REFS - Py_ssize_t wrapped_i = i; - if (wraparound & unlikely(i < 0)) { - wrapped_i += PyTuple_GET_SIZE(o); - } - if ((!boundscheck) || likely(__Pyx_is_valid_index(wrapped_i, PyTuple_GET_SIZE(o)))) { - PyObject *r = PyTuple_GET_ITEM(o, wrapped_i); - Py_INCREF(r); - return r; - } - return __Pyx_GetItemInt_Generic(o, PyInt_FromSsize_t(i)); -#else - return PySequence_GetItem(o, i); -#endif -} -static CYTHON_INLINE PyObject *__Pyx_GetItemInt_Fast(PyObject *o, Py_ssize_t i, int is_list, - CYTHON_NCP_UNUSED int wraparound, - CYTHON_NCP_UNUSED int boundscheck) { -#if CYTHON_ASSUME_SAFE_MACROS && !CYTHON_AVOID_BORROWED_REFS && CYTHON_USE_TYPE_SLOTS - if (is_list || PyList_CheckExact(o)) { - Py_ssize_t n = ((!wraparound) | likely(i >= 0)) ? i : i + PyList_GET_SIZE(o); - if ((!boundscheck) || (likely(__Pyx_is_valid_index(n, PyList_GET_SIZE(o))))) { - PyObject *r = PyList_GET_ITEM(o, n); - Py_INCREF(r); - return r; - } - } - else if (PyTuple_CheckExact(o)) { - Py_ssize_t n = ((!wraparound) | likely(i >= 0)) ? i : i + PyTuple_GET_SIZE(o); - if ((!boundscheck) || likely(__Pyx_is_valid_index(n, PyTuple_GET_SIZE(o)))) { - PyObject *r = PyTuple_GET_ITEM(o, n); - Py_INCREF(r); - return r; - } - } else { - PySequenceMethods *m = Py_TYPE(o)->tp_as_sequence; - if (likely(m && m->sq_item)) { - if (wraparound && unlikely(i < 0) && likely(m->sq_length)) { - Py_ssize_t l = m->sq_length(o); - if (likely(l >= 0)) { - i += l; - } else { - if (!PyErr_ExceptionMatches(PyExc_OverflowError)) - return NULL; - PyErr_Clear(); - } - } - return m->sq_item(o, i); - } - } -#else - if (is_list || PySequence_Check(o)) { - return PySequence_GetItem(o, i); - } -#endif - return __Pyx_GetItemInt_Generic(o, PyInt_FromSsize_t(i)); -} - -/* SliceObject */ -static CYTHON_INLINE PyObject* __Pyx_PyObject_GetSlice(PyObject* obj, - Py_ssize_t cstart, Py_ssize_t cstop, - PyObject** _py_start, PyObject** _py_stop, PyObject** _py_slice, - int has_cstart, int has_cstop, CYTHON_UNUSED int wraparound) { -#if CYTHON_USE_TYPE_SLOTS - PyMappingMethods* mp; -#if PY_MAJOR_VERSION < 3 - PySequenceMethods* ms = Py_TYPE(obj)->tp_as_sequence; - if (likely(ms && ms->sq_slice)) { - if (!has_cstart) { - if (_py_start && (*_py_start != Py_None)) { - cstart = __Pyx_PyIndex_AsSsize_t(*_py_start); - if ((cstart == (Py_ssize_t)-1) && PyErr_Occurred()) goto bad; - } else - cstart = 0; - } - if (!has_cstop) { - if (_py_stop && (*_py_stop != Py_None)) { - cstop = __Pyx_PyIndex_AsSsize_t(*_py_stop); - if ((cstop == (Py_ssize_t)-1) && PyErr_Occurred()) goto bad; - } else - cstop = PY_SSIZE_T_MAX; - } - if (wraparound && unlikely((cstart < 0) | (cstop < 0)) && likely(ms->sq_length)) { - Py_ssize_t l = ms->sq_length(obj); - if (likely(l >= 0)) { - if (cstop < 0) { - cstop += l; - if (cstop < 0) cstop = 0; - } - if (cstart < 0) { - cstart += l; - if (cstart < 0) cstart = 0; - } - } else { - if (!PyErr_ExceptionMatches(PyExc_OverflowError)) - goto bad; - PyErr_Clear(); - } - } - return ms->sq_slice(obj, cstart, cstop); - } -#endif - mp = Py_TYPE(obj)->tp_as_mapping; - if (likely(mp && mp->mp_subscript)) -#endif - { - PyObject* result; - PyObject *py_slice, *py_start, *py_stop; - if (_py_slice) { - py_slice = *_py_slice; - } else { - PyObject* owned_start = NULL; - PyObject* owned_stop = NULL; - if (_py_start) { - py_start = *_py_start; - } else { - if (has_cstart) { - owned_start = py_start = PyInt_FromSsize_t(cstart); - if (unlikely(!py_start)) goto bad; - } else - py_start = Py_None; - } - if (_py_stop) { - py_stop = *_py_stop; - } else { - if (has_cstop) { - owned_stop = py_stop = PyInt_FromSsize_t(cstop); - if (unlikely(!py_stop)) { - Py_XDECREF(owned_start); - goto bad; - } - } else - py_stop = Py_None; - } - py_slice = PySlice_New(py_start, py_stop, Py_None); - Py_XDECREF(owned_start); - Py_XDECREF(owned_stop); - if (unlikely(!py_slice)) goto bad; - } -#if CYTHON_USE_TYPE_SLOTS - result = mp->mp_subscript(obj, py_slice); -#else - result = PyObject_GetItem(obj, py_slice); -#endif - if (!_py_slice) { - Py_DECREF(py_slice); - } - return result; - } - PyErr_Format(PyExc_TypeError, - "'%.200s' object is unsliceable", Py_TYPE(obj)->tp_name); -bad: - return NULL; -} - -/* ObjectGetItem */ -#if CYTHON_USE_TYPE_SLOTS -static PyObject *__Pyx_PyObject_GetIndex(PyObject *obj, PyObject* index) { - PyObject *runerr; - Py_ssize_t key_value; - PySequenceMethods *m = Py_TYPE(obj)->tp_as_sequence; - if (unlikely(!(m && m->sq_item))) { - PyErr_Format(PyExc_TypeError, "'%.200s' object is not subscriptable", Py_TYPE(obj)->tp_name); - return NULL; - } - key_value = __Pyx_PyIndex_AsSsize_t(index); - if (likely(key_value != -1 || !(runerr = PyErr_Occurred()))) { - return __Pyx_GetItemInt_Fast(obj, key_value, 0, 1, 1); - } - if (PyErr_GivenExceptionMatches(runerr, PyExc_OverflowError)) { - PyErr_Clear(); - PyErr_Format(PyExc_IndexError, "cannot fit '%.200s' into an index-sized integer", Py_TYPE(index)->tp_name); - } - return NULL; -} -static PyObject *__Pyx_PyObject_GetItem(PyObject *obj, PyObject* key) { - PyMappingMethods *m = Py_TYPE(obj)->tp_as_mapping; - if (likely(m && m->mp_subscript)) { - return m->mp_subscript(obj, key); - } - return __Pyx_PyObject_GetIndex(obj, key); -} -#endif - -/* DictGetItem */ -#if PY_MAJOR_VERSION >= 3 && !CYTHON_COMPILING_IN_PYPY -static PyObject *__Pyx_PyDict_GetItem(PyObject *d, PyObject* key) { - PyObject *value; - value = PyDict_GetItemWithError(d, key); - if (unlikely(!value)) { - if (!PyErr_Occurred()) { - if (unlikely(PyTuple_Check(key))) { - PyObject* args = PyTuple_Pack(1, key); - if (likely(args)) { - PyErr_SetObject(PyExc_KeyError, args); - Py_DECREF(args); - } - } else { - PyErr_SetObject(PyExc_KeyError, key); - } - } - return NULL; - } - Py_INCREF(value); - return value; -} -#endif - -/* BytesEquals */ -static CYTHON_INLINE int __Pyx_PyBytes_Equals(PyObject* s1, PyObject* s2, int equals) { -#if CYTHON_COMPILING_IN_PYPY - return PyObject_RichCompareBool(s1, s2, equals); -#else - if (s1 == s2) { - return (equals == Py_EQ); - } else if (PyBytes_CheckExact(s1) & PyBytes_CheckExact(s2)) { - const char *ps1, *ps2; - Py_ssize_t length = PyBytes_GET_SIZE(s1); - if (length != PyBytes_GET_SIZE(s2)) - return (equals == Py_NE); - ps1 = PyBytes_AS_STRING(s1); - ps2 = PyBytes_AS_STRING(s2); - if (ps1[0] != ps2[0]) { - return (equals == Py_NE); - } else if (length == 1) { - return (equals == Py_EQ); - } else { - int result; -#if CYTHON_USE_UNICODE_INTERNALS - Py_hash_t hash1, hash2; - hash1 = ((PyBytesObject*)s1)->ob_shash; - hash2 = ((PyBytesObject*)s2)->ob_shash; - if (hash1 != hash2 && hash1 != -1 && hash2 != -1) { - return (equals == Py_NE); - } -#endif - result = memcmp(ps1, ps2, (size_t)length); - return (equals == Py_EQ) ? (result == 0) : (result != 0); - } - } else if ((s1 == Py_None) & PyBytes_CheckExact(s2)) { - return (equals == Py_NE); - } else if ((s2 == Py_None) & PyBytes_CheckExact(s1)) { - return (equals == Py_NE); - } else { - int result; - PyObject* py_result = PyObject_RichCompare(s1, s2, equals); - if (!py_result) - return -1; - result = __Pyx_PyObject_IsTrue(py_result); - Py_DECREF(py_result); - return result; - } -#endif -} - -/* UnicodeEquals */ -static CYTHON_INLINE int __Pyx_PyUnicode_Equals(PyObject* s1, PyObject* s2, int equals) { -#if CYTHON_COMPILING_IN_PYPY - return PyObject_RichCompareBool(s1, s2, equals); -#else -#if PY_MAJOR_VERSION < 3 - PyObject* owned_ref = NULL; -#endif - int s1_is_unicode, s2_is_unicode; - if (s1 == s2) { - goto return_eq; - } - s1_is_unicode = PyUnicode_CheckExact(s1); - s2_is_unicode = PyUnicode_CheckExact(s2); -#if PY_MAJOR_VERSION < 3 - if ((s1_is_unicode & (!s2_is_unicode)) && PyString_CheckExact(s2)) { - owned_ref = PyUnicode_FromObject(s2); - if (unlikely(!owned_ref)) - return -1; - s2 = owned_ref; - s2_is_unicode = 1; - } else if ((s2_is_unicode & (!s1_is_unicode)) && PyString_CheckExact(s1)) { - owned_ref = PyUnicode_FromObject(s1); - if (unlikely(!owned_ref)) - return -1; - s1 = owned_ref; - s1_is_unicode = 1; - } else if (((!s2_is_unicode) & (!s1_is_unicode))) { - return __Pyx_PyBytes_Equals(s1, s2, equals); - } -#endif - if (s1_is_unicode & s2_is_unicode) { - Py_ssize_t length; - int kind; - void *data1, *data2; - if (unlikely(__Pyx_PyUnicode_READY(s1) < 0) || unlikely(__Pyx_PyUnicode_READY(s2) < 0)) - return -1; - length = __Pyx_PyUnicode_GET_LENGTH(s1); - if (length != __Pyx_PyUnicode_GET_LENGTH(s2)) { - goto return_ne; - } -#if CYTHON_USE_UNICODE_INTERNALS - { - Py_hash_t hash1, hash2; - #if CYTHON_PEP393_ENABLED - hash1 = ((PyASCIIObject*)s1)->hash; - hash2 = ((PyASCIIObject*)s2)->hash; - #else - hash1 = ((PyUnicodeObject*)s1)->hash; - hash2 = ((PyUnicodeObject*)s2)->hash; - #endif - if (hash1 != hash2 && hash1 != -1 && hash2 != -1) { - goto return_ne; - } - } -#endif - kind = __Pyx_PyUnicode_KIND(s1); - if (kind != __Pyx_PyUnicode_KIND(s2)) { - goto return_ne; - } - data1 = __Pyx_PyUnicode_DATA(s1); - data2 = __Pyx_PyUnicode_DATA(s2); - if (__Pyx_PyUnicode_READ(kind, data1, 0) != __Pyx_PyUnicode_READ(kind, data2, 0)) { - goto return_ne; - } else if (length == 1) { - goto return_eq; - } else { - int result = memcmp(data1, data2, (size_t)(length * kind)); - #if PY_MAJOR_VERSION < 3 - Py_XDECREF(owned_ref); - #endif - return (equals == Py_EQ) ? (result == 0) : (result != 0); - } - } else if ((s1 == Py_None) & s2_is_unicode) { - goto return_ne; - } else if ((s2 == Py_None) & s1_is_unicode) { - goto return_ne; - } else { - int result; - PyObject* py_result = PyObject_RichCompare(s1, s2, equals); - #if PY_MAJOR_VERSION < 3 - Py_XDECREF(owned_ref); - #endif - if (!py_result) - return -1; - result = __Pyx_PyObject_IsTrue(py_result); - Py_DECREF(py_result); - return result; - } -return_eq: - #if PY_MAJOR_VERSION < 3 - Py_XDECREF(owned_ref); - #endif - return (equals == Py_EQ); -return_ne: - #if PY_MAJOR_VERSION < 3 - Py_XDECREF(owned_ref); - #endif - return (equals == Py_NE); -#endif -} - -/* pyfrozenset_new */ -static CYTHON_INLINE PyObject* __Pyx_PyFrozenSet_New(PyObject* it) { - if (it) { - PyObject* result; -#if CYTHON_COMPILING_IN_PYPY - PyObject* args; - args = PyTuple_Pack(1, it); - if (unlikely(!args)) - return NULL; - result = PyObject_Call((PyObject*)&PyFrozenSet_Type, args, NULL); - Py_DECREF(args); - return result; -#else - if (PyFrozenSet_CheckExact(it)) { - Py_INCREF(it); - return it; - } - result = PyFrozenSet_New(it); - if (unlikely(!result)) - return NULL; - if (likely(PySet_GET_SIZE(result))) - return result; - Py_DECREF(result); -#endif - } -#if CYTHON_USE_TYPE_SLOTS - return PyFrozenSet_Type.tp_new(&PyFrozenSet_Type, __pyx_empty_tuple, NULL); -#else - return PyObject_Call((PyObject*)&PyFrozenSet_Type, __pyx_empty_tuple, NULL); -#endif -} - -/* PySetContains */ -static int __Pyx_PySet_ContainsUnhashable(PyObject *set, PyObject *key) { - int result = -1; - if (PySet_Check(key) && PyErr_ExceptionMatches(PyExc_TypeError)) { - PyObject *tmpkey; - PyErr_Clear(); - tmpkey = __Pyx_PyFrozenSet_New(key); - if (tmpkey != NULL) { - result = PySet_Contains(set, tmpkey); - Py_DECREF(tmpkey); - } - } - return result; -} -static CYTHON_INLINE int __Pyx_PySet_ContainsTF(PyObject* key, PyObject* set, int eq) { - int result = PySet_Contains(set, key); - if (unlikely(result < 0)) { - result = __Pyx_PySet_ContainsUnhashable(set, key); - } - return unlikely(result < 0) ? result : (result == (eq == Py_EQ)); -} - -/* CIntToDigits */ -static const char DIGIT_PAIRS_10[2*10*10+1] = { - "00010203040506070809" - "10111213141516171819" - "20212223242526272829" - "30313233343536373839" - "40414243444546474849" - "50515253545556575859" - "60616263646566676869" - "70717273747576777879" - "80818283848586878889" - "90919293949596979899" -}; -static const char DIGIT_PAIRS_8[2*8*8+1] = { - "0001020304050607" - "1011121314151617" - "2021222324252627" - "3031323334353637" - "4041424344454647" - "5051525354555657" - "6061626364656667" - "7071727374757677" -}; -static const char DIGITS_HEX[2*16+1] = { - "0123456789abcdef" - "0123456789ABCDEF" -}; - -/* BuildPyUnicode */ -static PyObject* __Pyx_PyUnicode_BuildFromAscii(Py_ssize_t ulength, char* chars, int clength, - int prepend_sign, char padding_char) { - PyObject *uval; - Py_ssize_t uoffset = ulength - clength; -#if CYTHON_USE_UNICODE_INTERNALS - Py_ssize_t i; -#if CYTHON_PEP393_ENABLED - void *udata; - uval = PyUnicode_New(ulength, 127); - if (unlikely(!uval)) return NULL; - udata = PyUnicode_DATA(uval); -#else - Py_UNICODE *udata; - uval = PyUnicode_FromUnicode(NULL, ulength); - if (unlikely(!uval)) return NULL; - udata = PyUnicode_AS_UNICODE(uval); -#endif - if (uoffset > 0) { - i = 0; - if (prepend_sign) { - __Pyx_PyUnicode_WRITE(PyUnicode_1BYTE_KIND, udata, 0, '-'); - i++; - } - for (; i < uoffset; i++) { - __Pyx_PyUnicode_WRITE(PyUnicode_1BYTE_KIND, udata, i, padding_char); - } - } - for (i=0; i < clength; i++) { - __Pyx_PyUnicode_WRITE(PyUnicode_1BYTE_KIND, udata, uoffset+i, chars[i]); - } -#else - { - PyObject *sign = NULL, *padding = NULL; - uval = NULL; - if (uoffset > 0) { - prepend_sign = !!prepend_sign; - if (uoffset > prepend_sign) { - padding = PyUnicode_FromOrdinal(padding_char); - if (likely(padding) && uoffset > prepend_sign + 1) { - PyObject *tmp; - PyObject *repeat = PyInt_FromSize_t(uoffset - prepend_sign); - if (unlikely(!repeat)) goto done_or_error; - tmp = PyNumber_Multiply(padding, repeat); - Py_DECREF(repeat); - Py_DECREF(padding); - padding = tmp; - } - if (unlikely(!padding)) goto done_or_error; - } - if (prepend_sign) { - sign = PyUnicode_FromOrdinal('-'); - if (unlikely(!sign)) goto done_or_error; - } - } - uval = PyUnicode_DecodeASCII(chars, clength, NULL); - if (likely(uval) && padding) { - PyObject *tmp = PyNumber_Add(padding, uval); - Py_DECREF(uval); - uval = tmp; - } - if (likely(uval) && sign) { - PyObject *tmp = PyNumber_Add(sign, uval); - Py_DECREF(uval); - uval = tmp; - } -done_or_error: - Py_XDECREF(padding); - Py_XDECREF(sign); - } -#endif - return uval; -} - -/* CIntToPyUnicode */ -#ifdef _MSC_VER - #ifndef _MSC_STDINT_H_ - #if _MSC_VER < 1300 - typedef unsigned short uint16_t; - #else - typedef unsigned __int16 uint16_t; - #endif - #endif -#else - #include -#endif -#if defined(__GNUC__) && (__GNUC__ > 4 || (__GNUC__ == 4 && __GNUC_MINOR__ >= 6)) -#define GCC_DIAGNOSTIC -#endif -static CYTHON_INLINE PyObject* __Pyx_PyUnicode_From_unsigned_int(unsigned int value, Py_ssize_t width, char padding_char, char format_char) { - char digits[sizeof(unsigned int)*3+2]; - char *dpos, *end = digits + sizeof(unsigned int)*3+2; - const char *hex_digits = DIGITS_HEX; - Py_ssize_t length, ulength; - int prepend_sign, last_one_off; - unsigned int remaining; -#ifdef GCC_DIAGNOSTIC -#pragma GCC diagnostic push -#pragma GCC diagnostic ignored "-Wconversion" -#endif - const unsigned int neg_one = (unsigned int) -1, const_zero = (unsigned int) 0; -#ifdef GCC_DIAGNOSTIC -#pragma GCC diagnostic pop -#endif - const int is_unsigned = neg_one > const_zero; - if (format_char == 'X') { - hex_digits += 16; - format_char = 'x'; - } - remaining = value; - last_one_off = 0; - dpos = end; - do { - int digit_pos; - switch (format_char) { - case 'o': - digit_pos = abs((int)(remaining % (8*8))); - remaining = (unsigned int) (remaining / (8*8)); - dpos -= 2; - *(uint16_t*)dpos = ((const uint16_t*)DIGIT_PAIRS_8)[digit_pos]; - last_one_off = (digit_pos < 8); - break; - case 'd': - digit_pos = abs((int)(remaining % (10*10))); - remaining = (unsigned int) (remaining / (10*10)); - dpos -= 2; - *(uint16_t*)dpos = ((const uint16_t*)DIGIT_PAIRS_10)[digit_pos]; - last_one_off = (digit_pos < 10); - break; - case 'x': - *(--dpos) = hex_digits[abs((int)(remaining % 16))]; - remaining = (unsigned int) (remaining / 16); - break; - default: - assert(0); - break; - } - } while (unlikely(remaining != 0)); - if (last_one_off) { - assert(*dpos == '0'); - dpos++; - } - length = end - dpos; - ulength = length; - prepend_sign = 0; - if (!is_unsigned && value <= neg_one) { - if (padding_char == ' ' || width <= length + 1) { - *(--dpos) = '-'; - ++length; - } else { - prepend_sign = 1; - } - ++ulength; - } - if (width > ulength) { - ulength = width; - } - if (ulength == 1) { - return PyUnicode_FromOrdinal(*dpos); - } - return __Pyx_PyUnicode_BuildFromAscii(ulength, dpos, (int) length, prepend_sign, padding_char); -} - -/* UnpackUnboundCMethod */ -static int __Pyx_TryUnpackUnboundCMethod(__Pyx_CachedCFunction* target) { - PyObject *method; - method = __Pyx_PyObject_GetAttrStr(target->type, *target->method_name); - if (unlikely(!method)) - return -1; - target->method = method; -#if CYTHON_COMPILING_IN_CPYTHON - #if PY_MAJOR_VERSION >= 3 - if (likely(__Pyx_TypeCheck(method, &PyMethodDescr_Type))) - #endif - { - PyMethodDescrObject *descr = (PyMethodDescrObject*) method; - target->func = descr->d_method->ml_meth; - target->flag = descr->d_method->ml_flags & ~(METH_CLASS | METH_STATIC | METH_COEXIST | METH_STACKLESS); - } -#endif - return 0; -} - -/* CallUnboundCMethod0 */ -static PyObject* __Pyx__CallUnboundCMethod0(__Pyx_CachedCFunction* cfunc, PyObject* self) { - PyObject *args, *result = NULL; - if (unlikely(!cfunc->method) && unlikely(__Pyx_TryUnpackUnboundCMethod(cfunc) < 0)) return NULL; -#if CYTHON_ASSUME_SAFE_MACROS - args = PyTuple_New(1); - if (unlikely(!args)) goto bad; - Py_INCREF(self); - PyTuple_SET_ITEM(args, 0, self); -#else - args = PyTuple_Pack(1, self); - if (unlikely(!args)) goto bad; -#endif - result = __Pyx_PyObject_Call(cfunc->method, args, NULL); - Py_DECREF(args); -bad: - return result; -} - -/* PyObjectFormatAndDecref */ -static CYTHON_INLINE PyObject* __Pyx_PyObject_FormatSimpleAndDecref(PyObject* s, PyObject* f) { - if (unlikely(!s)) return NULL; - if (likely(PyUnicode_CheckExact(s))) return s; - #if PY_MAJOR_VERSION < 3 - if (likely(PyString_CheckExact(s))) { - PyObject *result = PyUnicode_FromEncodedObject(s, NULL, "strict"); - Py_DECREF(s); - return result; - } - #endif - return __Pyx_PyObject_FormatAndDecref(s, f); -} -static CYTHON_INLINE PyObject* __Pyx_PyObject_FormatAndDecref(PyObject* s, PyObject* f) { - PyObject *result = PyObject_Format(s, f); - Py_DECREF(s); - return result; -} - -/* PyObjectGetMethod */ -static int __Pyx_PyObject_GetMethod(PyObject *obj, PyObject *name, PyObject **method) { - PyObject *attr; -#if CYTHON_UNPACK_METHODS && CYTHON_COMPILING_IN_CPYTHON && CYTHON_USE_PYTYPE_LOOKUP - PyTypeObject *tp = Py_TYPE(obj); - PyObject *descr; - descrgetfunc f = NULL; - PyObject **dictptr, *dict; - int meth_found = 0; - assert (*method == NULL); - if (unlikely(tp->tp_getattro != PyObject_GenericGetAttr)) { - attr = __Pyx_PyObject_GetAttrStr(obj, name); - goto try_unpack; - } - if (unlikely(tp->tp_dict == NULL) && unlikely(PyType_Ready(tp) < 0)) { - return 0; - } - descr = _PyType_Lookup(tp, name); - if (likely(descr != NULL)) { - Py_INCREF(descr); -#if PY_MAJOR_VERSION >= 3 - #ifdef __Pyx_CyFunction_USED - if (likely(PyFunction_Check(descr) || (Py_TYPE(descr) == &PyMethodDescr_Type) || __Pyx_CyFunction_Check(descr))) - #else - if (likely(PyFunction_Check(descr) || (Py_TYPE(descr) == &PyMethodDescr_Type))) - #endif -#else - #ifdef __Pyx_CyFunction_USED - if (likely(PyFunction_Check(descr) || __Pyx_CyFunction_Check(descr))) - #else - if (likely(PyFunction_Check(descr))) - #endif -#endif - { - meth_found = 1; - } else { - f = Py_TYPE(descr)->tp_descr_get; - if (f != NULL && PyDescr_IsData(descr)) { - attr = f(descr, obj, (PyObject *)Py_TYPE(obj)); - Py_DECREF(descr); - goto try_unpack; - } - } - } - dictptr = _PyObject_GetDictPtr(obj); - if (dictptr != NULL && (dict = *dictptr) != NULL) { - Py_INCREF(dict); - attr = __Pyx_PyDict_GetItemStr(dict, name); - if (attr != NULL) { - Py_INCREF(attr); - Py_DECREF(dict); - Py_XDECREF(descr); - goto try_unpack; - } - Py_DECREF(dict); - } - if (meth_found) { - *method = descr; - return 1; - } - if (f != NULL) { - attr = f(descr, obj, (PyObject *)Py_TYPE(obj)); - Py_DECREF(descr); - goto try_unpack; - } - if (descr != NULL) { - *method = descr; - return 0; - } - PyErr_Format(PyExc_AttributeError, -#if PY_MAJOR_VERSION >= 3 - "'%.50s' object has no attribute '%U'", - tp->tp_name, name); -#else - "'%.50s' object has no attribute '%.400s'", - tp->tp_name, PyString_AS_STRING(name)); -#endif - return 0; -#else - attr = __Pyx_PyObject_GetAttrStr(obj, name); - goto try_unpack; -#endif -try_unpack: -#if CYTHON_UNPACK_METHODS - if (likely(attr) && PyMethod_Check(attr) && likely(PyMethod_GET_SELF(attr) == obj)) { - PyObject *function = PyMethod_GET_FUNCTION(attr); - Py_INCREF(function); - Py_DECREF(attr); - *method = function; - return 1; - } -#endif - *method = attr; - return 0; -} - -/* PyObjectCallMethod1 */ -static PyObject* __Pyx__PyObject_CallMethod1(PyObject* method, PyObject* arg) { - PyObject *result = __Pyx_PyObject_CallOneArg(method, arg); - Py_DECREF(method); - return result; -} -static PyObject* __Pyx_PyObject_CallMethod1(PyObject* obj, PyObject* method_name, PyObject* arg) { - PyObject *method = NULL, *result; - int is_method = __Pyx_PyObject_GetMethod(obj, method_name, &method); - if (likely(is_method)) { - result = __Pyx_PyObject_Call2Args(method, obj, arg); - Py_DECREF(method); - return result; - } - if (unlikely(!method)) return NULL; - return __Pyx__PyObject_CallMethod1(method, arg); -} - -/* append */ -static CYTHON_INLINE int __Pyx_PyObject_Append(PyObject* L, PyObject* x) { - if (likely(PyList_CheckExact(L))) { - if (unlikely(__Pyx_PyList_Append(L, x) < 0)) return -1; - } else { - PyObject* retval = __Pyx_PyObject_CallMethod1(L, __pyx_n_s_append, x); - if (unlikely(!retval)) - return -1; - Py_DECREF(retval); - } - return 0; -} - -/* PyIntBinop */ -#if !CYTHON_COMPILING_IN_PYPY -static PyObject* __Pyx_PyInt_AddObjC(PyObject *op1, PyObject *op2, CYTHON_UNUSED long intval, int inplace, int zerodivision_check) { - (void)inplace; - (void)zerodivision_check; - #if PY_MAJOR_VERSION < 3 - if (likely(PyInt_CheckExact(op1))) { - const long b = intval; - long x; - long a = PyInt_AS_LONG(op1); - x = (long)((unsigned long)a + b); - if (likely((x^a) >= 0 || (x^b) >= 0)) - return PyInt_FromLong(x); - return PyLong_Type.tp_as_number->nb_add(op1, op2); - } - #endif - #if CYTHON_USE_PYLONG_INTERNALS - if (likely(PyLong_CheckExact(op1))) { - const long b = intval; - long a, x; -#ifdef HAVE_LONG_LONG - const PY_LONG_LONG llb = intval; - PY_LONG_LONG lla, llx; -#endif - const digit* digits = ((PyLongObject*)op1)->ob_digit; - const Py_ssize_t size = Py_SIZE(op1); - if (likely(__Pyx_sst_abs(size) <= 1)) { - a = likely(size) ? digits[0] : 0; - if (size == -1) a = -a; - } else { - switch (size) { - case -2: - if (8 * sizeof(long) - 1 > 2 * PyLong_SHIFT) { - a = -(long) (((((unsigned long)digits[1]) << PyLong_SHIFT) | (unsigned long)digits[0])); - break; -#ifdef HAVE_LONG_LONG - } else if (8 * sizeof(PY_LONG_LONG) - 1 > 2 * PyLong_SHIFT) { - lla = -(PY_LONG_LONG) (((((unsigned PY_LONG_LONG)digits[1]) << PyLong_SHIFT) | (unsigned PY_LONG_LONG)digits[0])); - goto long_long; -#endif - } - CYTHON_FALLTHROUGH; - case 2: - if (8 * sizeof(long) - 1 > 2 * PyLong_SHIFT) { - a = (long) (((((unsigned long)digits[1]) << PyLong_SHIFT) | (unsigned long)digits[0])); - break; -#ifdef HAVE_LONG_LONG - } else if (8 * sizeof(PY_LONG_LONG) - 1 > 2 * PyLong_SHIFT) { - lla = (PY_LONG_LONG) (((((unsigned PY_LONG_LONG)digits[1]) << PyLong_SHIFT) | (unsigned PY_LONG_LONG)digits[0])); - goto long_long; -#endif - } - CYTHON_FALLTHROUGH; - case -3: - if (8 * sizeof(long) - 1 > 3 * PyLong_SHIFT) { - a = -(long) (((((((unsigned long)digits[2]) << PyLong_SHIFT) | (unsigned long)digits[1]) << PyLong_SHIFT) | (unsigned long)digits[0])); - break; -#ifdef HAVE_LONG_LONG - } else if (8 * sizeof(PY_LONG_LONG) - 1 > 3 * PyLong_SHIFT) { - lla = -(PY_LONG_LONG) (((((((unsigned PY_LONG_LONG)digits[2]) << PyLong_SHIFT) | (unsigned PY_LONG_LONG)digits[1]) << PyLong_SHIFT) | (unsigned PY_LONG_LONG)digits[0])); - goto long_long; -#endif - } - CYTHON_FALLTHROUGH; - case 3: - if (8 * sizeof(long) - 1 > 3 * PyLong_SHIFT) { - a = (long) (((((((unsigned long)digits[2]) << PyLong_SHIFT) | (unsigned long)digits[1]) << PyLong_SHIFT) | (unsigned long)digits[0])); - break; -#ifdef HAVE_LONG_LONG - } else if (8 * sizeof(PY_LONG_LONG) - 1 > 3 * PyLong_SHIFT) { - lla = (PY_LONG_LONG) (((((((unsigned PY_LONG_LONG)digits[2]) << PyLong_SHIFT) | (unsigned PY_LONG_LONG)digits[1]) << PyLong_SHIFT) | (unsigned PY_LONG_LONG)digits[0])); - goto long_long; -#endif - } - CYTHON_FALLTHROUGH; - case -4: - if (8 * sizeof(long) - 1 > 4 * PyLong_SHIFT) { - a = -(long) (((((((((unsigned long)digits[3]) << PyLong_SHIFT) | (unsigned long)digits[2]) << PyLong_SHIFT) | (unsigned long)digits[1]) << PyLong_SHIFT) | (unsigned long)digits[0])); - break; -#ifdef HAVE_LONG_LONG - } else if (8 * sizeof(PY_LONG_LONG) - 1 > 4 * PyLong_SHIFT) { - lla = -(PY_LONG_LONG) (((((((((unsigned PY_LONG_LONG)digits[3]) << PyLong_SHIFT) | (unsigned PY_LONG_LONG)digits[2]) << PyLong_SHIFT) | (unsigned PY_LONG_LONG)digits[1]) << PyLong_SHIFT) | (unsigned PY_LONG_LONG)digits[0])); - goto long_long; -#endif - } - CYTHON_FALLTHROUGH; - case 4: - if (8 * sizeof(long) - 1 > 4 * PyLong_SHIFT) { - a = (long) (((((((((unsigned long)digits[3]) << PyLong_SHIFT) | (unsigned long)digits[2]) << PyLong_SHIFT) | (unsigned long)digits[1]) << PyLong_SHIFT) | (unsigned long)digits[0])); - break; -#ifdef HAVE_LONG_LONG - } else if (8 * sizeof(PY_LONG_LONG) - 1 > 4 * PyLong_SHIFT) { - lla = (PY_LONG_LONG) (((((((((unsigned PY_LONG_LONG)digits[3]) << PyLong_SHIFT) | (unsigned PY_LONG_LONG)digits[2]) << PyLong_SHIFT) | (unsigned PY_LONG_LONG)digits[1]) << PyLong_SHIFT) | (unsigned PY_LONG_LONG)digits[0])); - goto long_long; -#endif - } - CYTHON_FALLTHROUGH; - default: return PyLong_Type.tp_as_number->nb_add(op1, op2); - } - } - x = a + b; - return PyLong_FromLong(x); -#ifdef HAVE_LONG_LONG - long_long: - llx = lla + llb; - return PyLong_FromLongLong(llx); -#endif - - - } - #endif - if (PyFloat_CheckExact(op1)) { - const long b = intval; - double a = PyFloat_AS_DOUBLE(op1); - double result; - PyFPE_START_PROTECT("add", return NULL) - result = ((double)a) + (double)b; - PyFPE_END_PROTECT(result) - return PyFloat_FromDouble(result); - } - return (inplace ? PyNumber_InPlaceAdd : PyNumber_Add)(op1, op2); -} -#endif - -/* PyIntBinop */ -#if !CYTHON_COMPILING_IN_PYPY -static PyObject* __Pyx_PyInt_AddCObj(PyObject *op1, PyObject *op2, CYTHON_UNUSED long intval, int inplace, int zerodivision_check) { - (void)inplace; - (void)zerodivision_check; - #if PY_MAJOR_VERSION < 3 - if (likely(PyInt_CheckExact(op2))) { - const long a = intval; - long x; - long b = PyInt_AS_LONG(op2); - x = (long)((unsigned long)a + b); - if (likely((x^a) >= 0 || (x^b) >= 0)) - return PyInt_FromLong(x); - return PyLong_Type.tp_as_number->nb_add(op1, op2); - } - #endif - #if CYTHON_USE_PYLONG_INTERNALS - if (likely(PyLong_CheckExact(op2))) { - const long a = intval; - long b, x; -#ifdef HAVE_LONG_LONG - const PY_LONG_LONG lla = intval; - PY_LONG_LONG llb, llx; -#endif - const digit* digits = ((PyLongObject*)op2)->ob_digit; - const Py_ssize_t size = Py_SIZE(op2); - if (likely(__Pyx_sst_abs(size) <= 1)) { - b = likely(size) ? digits[0] : 0; - if (size == -1) b = -b; - } else { - switch (size) { - case -2: - if (8 * sizeof(long) - 1 > 2 * PyLong_SHIFT) { - b = -(long) (((((unsigned long)digits[1]) << PyLong_SHIFT) | (unsigned long)digits[0])); - break; -#ifdef HAVE_LONG_LONG - } else if (8 * sizeof(PY_LONG_LONG) - 1 > 2 * PyLong_SHIFT) { - llb = -(PY_LONG_LONG) (((((unsigned PY_LONG_LONG)digits[1]) << PyLong_SHIFT) | (unsigned PY_LONG_LONG)digits[0])); - goto long_long; -#endif - } - CYTHON_FALLTHROUGH; - case 2: - if (8 * sizeof(long) - 1 > 2 * PyLong_SHIFT) { - b = (long) (((((unsigned long)digits[1]) << PyLong_SHIFT) | (unsigned long)digits[0])); - break; -#ifdef HAVE_LONG_LONG - } else if (8 * sizeof(PY_LONG_LONG) - 1 > 2 * PyLong_SHIFT) { - llb = (PY_LONG_LONG) (((((unsigned PY_LONG_LONG)digits[1]) << PyLong_SHIFT) | (unsigned PY_LONG_LONG)digits[0])); - goto long_long; -#endif - } - CYTHON_FALLTHROUGH; - case -3: - if (8 * sizeof(long) - 1 > 3 * PyLong_SHIFT) { - b = -(long) (((((((unsigned long)digits[2]) << PyLong_SHIFT) | (unsigned long)digits[1]) << PyLong_SHIFT) | (unsigned long)digits[0])); - break; -#ifdef HAVE_LONG_LONG - } else if (8 * sizeof(PY_LONG_LONG) - 1 > 3 * PyLong_SHIFT) { - llb = -(PY_LONG_LONG) (((((((unsigned PY_LONG_LONG)digits[2]) << PyLong_SHIFT) | (unsigned PY_LONG_LONG)digits[1]) << PyLong_SHIFT) | (unsigned PY_LONG_LONG)digits[0])); - goto long_long; -#endif - } - CYTHON_FALLTHROUGH; - case 3: - if (8 * sizeof(long) - 1 > 3 * PyLong_SHIFT) { - b = (long) (((((((unsigned long)digits[2]) << PyLong_SHIFT) | (unsigned long)digits[1]) << PyLong_SHIFT) | (unsigned long)digits[0])); - break; -#ifdef HAVE_LONG_LONG - } else if (8 * sizeof(PY_LONG_LONG) - 1 > 3 * PyLong_SHIFT) { - llb = (PY_LONG_LONG) (((((((unsigned PY_LONG_LONG)digits[2]) << PyLong_SHIFT) | (unsigned PY_LONG_LONG)digits[1]) << PyLong_SHIFT) | (unsigned PY_LONG_LONG)digits[0])); - goto long_long; -#endif - } - CYTHON_FALLTHROUGH; - case -4: - if (8 * sizeof(long) - 1 > 4 * PyLong_SHIFT) { - b = -(long) (((((((((unsigned long)digits[3]) << PyLong_SHIFT) | (unsigned long)digits[2]) << PyLong_SHIFT) | (unsigned long)digits[1]) << PyLong_SHIFT) | (unsigned long)digits[0])); - break; -#ifdef HAVE_LONG_LONG - } else if (8 * sizeof(PY_LONG_LONG) - 1 > 4 * PyLong_SHIFT) { - llb = -(PY_LONG_LONG) (((((((((unsigned PY_LONG_LONG)digits[3]) << PyLong_SHIFT) | (unsigned PY_LONG_LONG)digits[2]) << PyLong_SHIFT) | (unsigned PY_LONG_LONG)digits[1]) << PyLong_SHIFT) | (unsigned PY_LONG_LONG)digits[0])); - goto long_long; -#endif - } - CYTHON_FALLTHROUGH; - case 4: - if (8 * sizeof(long) - 1 > 4 * PyLong_SHIFT) { - b = (long) (((((((((unsigned long)digits[3]) << PyLong_SHIFT) | (unsigned long)digits[2]) << PyLong_SHIFT) | (unsigned long)digits[1]) << PyLong_SHIFT) | (unsigned long)digits[0])); - break; -#ifdef HAVE_LONG_LONG - } else if (8 * sizeof(PY_LONG_LONG) - 1 > 4 * PyLong_SHIFT) { - llb = (PY_LONG_LONG) (((((((((unsigned PY_LONG_LONG)digits[3]) << PyLong_SHIFT) | (unsigned PY_LONG_LONG)digits[2]) << PyLong_SHIFT) | (unsigned PY_LONG_LONG)digits[1]) << PyLong_SHIFT) | (unsigned PY_LONG_LONG)digits[0])); - goto long_long; -#endif - } - CYTHON_FALLTHROUGH; - default: return PyLong_Type.tp_as_number->nb_add(op1, op2); - } - } - x = a + b; - return PyLong_FromLong(x); -#ifdef HAVE_LONG_LONG - long_long: - llx = lla + llb; - return PyLong_FromLongLong(llx); -#endif - - - } - #endif - if (PyFloat_CheckExact(op2)) { - const long a = intval; - double b = PyFloat_AS_DOUBLE(op2); - double result; - PyFPE_START_PROTECT("add", return NULL) - result = ((double)a) + (double)b; - PyFPE_END_PROTECT(result) - return PyFloat_FromDouble(result); - } - return (inplace ? PyNumber_InPlaceAdd : PyNumber_Add)(op1, op2); -} -#endif - -/* Import */ -static PyObject *__Pyx_Import(PyObject *name, PyObject *from_list, int level) { - PyObject *empty_list = 0; - PyObject *module = 0; - PyObject *global_dict = 0; - PyObject *empty_dict = 0; - PyObject *list; - #if PY_MAJOR_VERSION < 3 - PyObject *py_import; - py_import = __Pyx_PyObject_GetAttrStr(__pyx_b, __pyx_n_s_import); - if (!py_import) - goto bad; - #endif - if (from_list) - list = from_list; - else { - empty_list = PyList_New(0); - if (!empty_list) - goto bad; - list = empty_list; - } - global_dict = PyModule_GetDict(__pyx_m); - if (!global_dict) - goto bad; - empty_dict = PyDict_New(); - if (!empty_dict) - goto bad; - { - #if PY_MAJOR_VERSION >= 3 - if (level == -1) { - if (strchr(__Pyx_MODULE_NAME, '.')) { - module = PyImport_ImportModuleLevelObject( - name, global_dict, empty_dict, list, 1); - if (!module) { - if (!PyErr_ExceptionMatches(PyExc_ImportError)) - goto bad; - PyErr_Clear(); - } - } - level = 0; - } - #endif - if (!module) { - #if PY_MAJOR_VERSION < 3 - PyObject *py_level = PyInt_FromLong(level); - if (!py_level) - goto bad; - module = PyObject_CallFunctionObjArgs(py_import, - name, global_dict, empty_dict, list, py_level, (PyObject *)NULL); - Py_DECREF(py_level); - #else - module = PyImport_ImportModuleLevelObject( - name, global_dict, empty_dict, list, level); - #endif - } - } -bad: - #if PY_MAJOR_VERSION < 3 - Py_XDECREF(py_import); - #endif - Py_XDECREF(empty_list); - Py_XDECREF(empty_dict); - return module; -} - -/* CallUnboundCMethod1 */ -#if CYTHON_COMPILING_IN_CPYTHON -static CYTHON_INLINE PyObject* __Pyx_CallUnboundCMethod1(__Pyx_CachedCFunction* cfunc, PyObject* self, PyObject* arg) { - if (likely(cfunc->func)) { - int flag = cfunc->flag; - if (flag == METH_O) { - return (*(cfunc->func))(self, arg); - } else if (PY_VERSION_HEX >= 0x030600B1 && flag == METH_FASTCALL) { - if (PY_VERSION_HEX >= 0x030700A0) { - return (*(__Pyx_PyCFunctionFast)(void*)(PyCFunction)cfunc->func)(self, &arg, 1); - } else { - return (*(__Pyx_PyCFunctionFastWithKeywords)(void*)(PyCFunction)cfunc->func)(self, &arg, 1, NULL); - } - } else if (PY_VERSION_HEX >= 0x030700A0 && flag == (METH_FASTCALL | METH_KEYWORDS)) { - return (*(__Pyx_PyCFunctionFastWithKeywords)(void*)(PyCFunction)cfunc->func)(self, &arg, 1, NULL); - } - } - return __Pyx__CallUnboundCMethod1(cfunc, self, arg); -} -#endif -static PyObject* __Pyx__CallUnboundCMethod1(__Pyx_CachedCFunction* cfunc, PyObject* self, PyObject* arg){ - PyObject *args, *result = NULL; - if (unlikely(!cfunc->func && !cfunc->method) && unlikely(__Pyx_TryUnpackUnboundCMethod(cfunc) < 0)) return NULL; -#if CYTHON_COMPILING_IN_CPYTHON - if (cfunc->func && (cfunc->flag & METH_VARARGS)) { - args = PyTuple_New(1); - if (unlikely(!args)) goto bad; - Py_INCREF(arg); - PyTuple_SET_ITEM(args, 0, arg); - if (cfunc->flag & METH_KEYWORDS) - result = (*(PyCFunctionWithKeywords)(void*)(PyCFunction)cfunc->func)(self, args, NULL); - else - result = (*cfunc->func)(self, args); - } else { - args = PyTuple_New(2); - if (unlikely(!args)) goto bad; - Py_INCREF(self); - PyTuple_SET_ITEM(args, 0, self); - Py_INCREF(arg); - PyTuple_SET_ITEM(args, 1, arg); - result = __Pyx_PyObject_Call(cfunc->method, args, NULL); - } -#else - args = PyTuple_Pack(2, self, arg); - if (unlikely(!args)) goto bad; - result = __Pyx_PyObject_Call(cfunc->method, args, NULL); -#endif -bad: - Py_XDECREF(args); - return result; -} - -/* PyErrFetchRestore */ -#if CYTHON_FAST_THREAD_STATE -static CYTHON_INLINE void __Pyx_ErrRestoreInState(PyThreadState *tstate, PyObject *type, PyObject *value, PyObject *tb) { - PyObject *tmp_type, *tmp_value, *tmp_tb; - tmp_type = tstate->curexc_type; - tmp_value = tstate->curexc_value; - tmp_tb = tstate->curexc_traceback; - tstate->curexc_type = type; - tstate->curexc_value = value; - tstate->curexc_traceback = tb; - Py_XDECREF(tmp_type); - Py_XDECREF(tmp_value); - Py_XDECREF(tmp_tb); -} -static CYTHON_INLINE void __Pyx_ErrFetchInState(PyThreadState *tstate, PyObject **type, PyObject **value, PyObject **tb) { - *type = tstate->curexc_type; - *value = tstate->curexc_value; - *tb = tstate->curexc_traceback; - tstate->curexc_type = 0; - tstate->curexc_value = 0; - tstate->curexc_traceback = 0; -} -#endif - -/* CLineInTraceback */ -#ifndef CYTHON_CLINE_IN_TRACEBACK -static int __Pyx_CLineForTraceback(PyThreadState *tstate, int c_line) { - PyObject *use_cline; - PyObject *ptype, *pvalue, *ptraceback; -#if CYTHON_COMPILING_IN_CPYTHON - PyObject **cython_runtime_dict; -#endif - if (unlikely(!__pyx_cython_runtime)) { - return c_line; - } - __Pyx_ErrFetchInState(tstate, &ptype, &pvalue, &ptraceback); -#if CYTHON_COMPILING_IN_CPYTHON - cython_runtime_dict = _PyObject_GetDictPtr(__pyx_cython_runtime); - if (likely(cython_runtime_dict)) { - __PYX_PY_DICT_LOOKUP_IF_MODIFIED( - use_cline, *cython_runtime_dict, - __Pyx_PyDict_GetItemStr(*cython_runtime_dict, __pyx_n_s_cline_in_traceback)) - } else -#endif - { - PyObject *use_cline_obj = __Pyx_PyObject_GetAttrStr(__pyx_cython_runtime, __pyx_n_s_cline_in_traceback); - if (use_cline_obj) { - use_cline = PyObject_Not(use_cline_obj) ? Py_False : Py_True; - Py_DECREF(use_cline_obj); - } else { - PyErr_Clear(); - use_cline = NULL; - } - } - if (!use_cline) { - c_line = 0; - PyObject_SetAttr(__pyx_cython_runtime, __pyx_n_s_cline_in_traceback, Py_False); - } - else if (use_cline == Py_False || (use_cline != Py_True && PyObject_Not(use_cline) != 0)) { - c_line = 0; - } - __Pyx_ErrRestoreInState(tstate, ptype, pvalue, ptraceback); - return c_line; -} -#endif - -/* CodeObjectCache */ -static int __pyx_bisect_code_objects(__Pyx_CodeObjectCacheEntry* entries, int count, int code_line) { - int start = 0, mid = 0, end = count - 1; - if (end >= 0 && code_line > entries[end].code_line) { - return count; - } - while (start < end) { - mid = start + (end - start) / 2; - if (code_line < entries[mid].code_line) { - end = mid; - } else if (code_line > entries[mid].code_line) { - start = mid + 1; - } else { - return mid; - } - } - if (code_line <= entries[mid].code_line) { - return mid; - } else { - return mid + 1; - } -} -static PyCodeObject *__pyx_find_code_object(int code_line) { - PyCodeObject* code_object; - int pos; - if (unlikely(!code_line) || unlikely(!__pyx_code_cache.entries)) { - return NULL; - } - pos = __pyx_bisect_code_objects(__pyx_code_cache.entries, __pyx_code_cache.count, code_line); - if (unlikely(pos >= __pyx_code_cache.count) || unlikely(__pyx_code_cache.entries[pos].code_line != code_line)) { - return NULL; - } - code_object = __pyx_code_cache.entries[pos].code_object; - Py_INCREF(code_object); - return code_object; -} -static void __pyx_insert_code_object(int code_line, PyCodeObject* code_object) { - int pos, i; - __Pyx_CodeObjectCacheEntry* entries = __pyx_code_cache.entries; - if (unlikely(!code_line)) { - return; - } - if (unlikely(!entries)) { - entries = (__Pyx_CodeObjectCacheEntry*)PyMem_Malloc(64*sizeof(__Pyx_CodeObjectCacheEntry)); - if (likely(entries)) { - __pyx_code_cache.entries = entries; - __pyx_code_cache.max_count = 64; - __pyx_code_cache.count = 1; - entries[0].code_line = code_line; - entries[0].code_object = code_object; - Py_INCREF(code_object); - } - return; - } - pos = __pyx_bisect_code_objects(__pyx_code_cache.entries, __pyx_code_cache.count, code_line); - if ((pos < __pyx_code_cache.count) && unlikely(__pyx_code_cache.entries[pos].code_line == code_line)) { - PyCodeObject* tmp = entries[pos].code_object; - entries[pos].code_object = code_object; - Py_DECREF(tmp); - return; - } - if (__pyx_code_cache.count == __pyx_code_cache.max_count) { - int new_max = __pyx_code_cache.max_count + 64; - entries = (__Pyx_CodeObjectCacheEntry*)PyMem_Realloc( - __pyx_code_cache.entries, (size_t)new_max*sizeof(__Pyx_CodeObjectCacheEntry)); - if (unlikely(!entries)) { - return; - } - __pyx_code_cache.entries = entries; - __pyx_code_cache.max_count = new_max; - } - for (i=__pyx_code_cache.count; i>pos; i--) { - entries[i] = entries[i-1]; - } - entries[pos].code_line = code_line; - entries[pos].code_object = code_object; - __pyx_code_cache.count++; - Py_INCREF(code_object); -} - -/* AddTraceback */ -#include "compile.h" -#include "frameobject.h" -#include "traceback.h" -static PyCodeObject* __Pyx_CreateCodeObjectForTraceback( - const char *funcname, int c_line, - int py_line, const char *filename) { - PyCodeObject *py_code = 0; - PyObject *py_srcfile = 0; - PyObject *py_funcname = 0; - #if PY_MAJOR_VERSION < 3 - py_srcfile = PyString_FromString(filename); - #else - py_srcfile = PyUnicode_FromString(filename); - #endif - if (!py_srcfile) goto bad; - if (c_line) { - #if PY_MAJOR_VERSION < 3 - py_funcname = PyString_FromFormat( "%s (%s:%d)", funcname, __pyx_cfilenm, c_line); - #else - py_funcname = PyUnicode_FromFormat( "%s (%s:%d)", funcname, __pyx_cfilenm, c_line); - #endif - } - else { - #if PY_MAJOR_VERSION < 3 - py_funcname = PyString_FromString(funcname); - #else - py_funcname = PyUnicode_FromString(funcname); - #endif - } - if (!py_funcname) goto bad; - py_code = __Pyx_PyCode_New( - 0, - 0, - 0, - 0, - 0, - __pyx_empty_bytes, /*PyObject *code,*/ - __pyx_empty_tuple, /*PyObject *consts,*/ - __pyx_empty_tuple, /*PyObject *names,*/ - __pyx_empty_tuple, /*PyObject *varnames,*/ - __pyx_empty_tuple, /*PyObject *freevars,*/ - __pyx_empty_tuple, /*PyObject *cellvars,*/ - py_srcfile, /*PyObject *filename,*/ - py_funcname, /*PyObject *name,*/ - py_line, - __pyx_empty_bytes /*PyObject *lnotab*/ - ); - Py_DECREF(py_srcfile); - Py_DECREF(py_funcname); - return py_code; -bad: - Py_XDECREF(py_srcfile); - Py_XDECREF(py_funcname); - return NULL; -} -static void __Pyx_AddTraceback(const char *funcname, int c_line, - int py_line, const char *filename) { - PyCodeObject *py_code = 0; - PyFrameObject *py_frame = 0; - PyThreadState *tstate = __Pyx_PyThreadState_Current; - if (c_line) { - c_line = __Pyx_CLineForTraceback(tstate, c_line); - } - py_code = __pyx_find_code_object(c_line ? -c_line : py_line); - if (!py_code) { - py_code = __Pyx_CreateCodeObjectForTraceback( - funcname, c_line, py_line, filename); - if (!py_code) goto bad; - __pyx_insert_code_object(c_line ? -c_line : py_line, py_code); - } - py_frame = PyFrame_New( - tstate, /*PyThreadState *tstate,*/ - py_code, /*PyCodeObject *code,*/ - __pyx_d, /*PyObject *globals,*/ - 0 /*PyObject *locals*/ - ); - if (!py_frame) goto bad; - __Pyx_PyFrame_SetLineNumber(py_frame, py_line); - PyTraceBack_Here(py_frame); -bad: - Py_XDECREF(py_code); - Py_XDECREF(py_frame); -} - -/* CIntFromPyVerify */ -#define __PYX_VERIFY_RETURN_INT(target_type, func_type, func_value)\ - __PYX__VERIFY_RETURN_INT(target_type, func_type, func_value, 0) -#define __PYX_VERIFY_RETURN_INT_EXC(target_type, func_type, func_value)\ - __PYX__VERIFY_RETURN_INT(target_type, func_type, func_value, 1) -#define __PYX__VERIFY_RETURN_INT(target_type, func_type, func_value, exc)\ - {\ - func_type value = func_value;\ - if (sizeof(target_type) < sizeof(func_type)) {\ - if (unlikely(value != (func_type) (target_type) value)) {\ - func_type zero = 0;\ - if (exc && unlikely(value == (func_type)-1 && PyErr_Occurred()))\ - return (target_type) -1;\ - if (is_unsigned && unlikely(value < zero))\ - goto raise_neg_overflow;\ - else\ - goto raise_overflow;\ - }\ - }\ - return (target_type) value;\ - } - -/* CIntToPy */ -static CYTHON_INLINE PyObject* __Pyx_PyInt_From_long(long value) { - const long neg_one = (long) ((long) 0 - (long) 1), const_zero = (long) 0; - const int is_unsigned = neg_one > const_zero; - if (is_unsigned) { - if (sizeof(long) < sizeof(long)) { - return PyInt_FromLong((long) value); - } else if (sizeof(long) <= sizeof(unsigned long)) { - return PyLong_FromUnsignedLong((unsigned long) value); -#ifdef HAVE_LONG_LONG - } else if (sizeof(long) <= sizeof(unsigned PY_LONG_LONG)) { - return PyLong_FromUnsignedLongLong((unsigned PY_LONG_LONG) value); -#endif - } - } else { - if (sizeof(long) <= sizeof(long)) { - return PyInt_FromLong((long) value); -#ifdef HAVE_LONG_LONG - } else if (sizeof(long) <= sizeof(PY_LONG_LONG)) { - return PyLong_FromLongLong((PY_LONG_LONG) value); -#endif - } - } - { - int one = 1; int little = (int)*(unsigned char *)&one; - unsigned char *bytes = (unsigned char *)&value; - return _PyLong_FromByteArray(bytes, sizeof(long), - little, !is_unsigned); - } -} - -/* CIntToPy */ -static CYTHON_INLINE PyObject* __Pyx_PyInt_From_unsigned_int(unsigned int value) { - const unsigned int neg_one = (unsigned int) ((unsigned int) 0 - (unsigned int) 1), const_zero = (unsigned int) 0; - const int is_unsigned = neg_one > const_zero; - if (is_unsigned) { - if (sizeof(unsigned int) < sizeof(long)) { - return PyInt_FromLong((long) value); - } else if (sizeof(unsigned int) <= sizeof(unsigned long)) { - return PyLong_FromUnsignedLong((unsigned long) value); -#ifdef HAVE_LONG_LONG - } else if (sizeof(unsigned int) <= sizeof(unsigned PY_LONG_LONG)) { - return PyLong_FromUnsignedLongLong((unsigned PY_LONG_LONG) value); -#endif - } - } else { - if (sizeof(unsigned int) <= sizeof(long)) { - return PyInt_FromLong((long) value); -#ifdef HAVE_LONG_LONG - } else if (sizeof(unsigned int) <= sizeof(PY_LONG_LONG)) { - return PyLong_FromLongLong((PY_LONG_LONG) value); -#endif - } - } - { - int one = 1; int little = (int)*(unsigned char *)&one; - unsigned char *bytes = (unsigned char *)&value; - return _PyLong_FromByteArray(bytes, sizeof(unsigned int), - little, !is_unsigned); - } -} - -/* CIntToPy */ -static CYTHON_INLINE PyObject* __Pyx_PyInt_From_unsigned_char(unsigned char value) { - const unsigned char neg_one = (unsigned char) ((unsigned char) 0 - (unsigned char) 1), const_zero = (unsigned char) 0; - const int is_unsigned = neg_one > const_zero; - if (is_unsigned) { - if (sizeof(unsigned char) < sizeof(long)) { - return PyInt_FromLong((long) value); - } else if (sizeof(unsigned char) <= sizeof(unsigned long)) { - return PyLong_FromUnsignedLong((unsigned long) value); -#ifdef HAVE_LONG_LONG - } else if (sizeof(unsigned char) <= sizeof(unsigned PY_LONG_LONG)) { - return PyLong_FromUnsignedLongLong((unsigned PY_LONG_LONG) value); -#endif - } - } else { - if (sizeof(unsigned char) <= sizeof(long)) { - return PyInt_FromLong((long) value); -#ifdef HAVE_LONG_LONG - } else if (sizeof(unsigned char) <= sizeof(PY_LONG_LONG)) { - return PyLong_FromLongLong((PY_LONG_LONG) value); -#endif - } - } - { - int one = 1; int little = (int)*(unsigned char *)&one; - unsigned char *bytes = (unsigned char *)&value; - return _PyLong_FromByteArray(bytes, sizeof(unsigned char), - little, !is_unsigned); - } -} - -/* CIntFromPy */ -static CYTHON_INLINE unsigned int __Pyx_PyInt_As_unsigned_int(PyObject *x) { - const unsigned int neg_one = (unsigned int) ((unsigned int) 0 - (unsigned int) 1), const_zero = (unsigned int) 0; - const int is_unsigned = neg_one > const_zero; -#if PY_MAJOR_VERSION < 3 - if (likely(PyInt_Check(x))) { - if (sizeof(unsigned int) < sizeof(long)) { - __PYX_VERIFY_RETURN_INT(unsigned int, long, PyInt_AS_LONG(x)) - } else { - long val = PyInt_AS_LONG(x); - if (is_unsigned && unlikely(val < 0)) { - goto raise_neg_overflow; - } - return (unsigned int) val; - } - } else -#endif - if (likely(PyLong_Check(x))) { - if (is_unsigned) { -#if CYTHON_USE_PYLONG_INTERNALS - const digit* digits = ((PyLongObject*)x)->ob_digit; - switch (Py_SIZE(x)) { - case 0: return (unsigned int) 0; - case 1: __PYX_VERIFY_RETURN_INT(unsigned int, digit, digits[0]) - case 2: - if (8 * sizeof(unsigned int) > 1 * PyLong_SHIFT) { - if (8 * sizeof(unsigned long) > 2 * PyLong_SHIFT) { - __PYX_VERIFY_RETURN_INT(unsigned int, unsigned long, (((((unsigned long)digits[1]) << PyLong_SHIFT) | (unsigned long)digits[0]))) - } else if (8 * sizeof(unsigned int) >= 2 * PyLong_SHIFT) { - return (unsigned int) (((((unsigned int)digits[1]) << PyLong_SHIFT) | (unsigned int)digits[0])); - } - } - break; - case 3: - if (8 * sizeof(unsigned int) > 2 * PyLong_SHIFT) { - if (8 * sizeof(unsigned long) > 3 * PyLong_SHIFT) { - __PYX_VERIFY_RETURN_INT(unsigned int, unsigned long, (((((((unsigned long)digits[2]) << PyLong_SHIFT) | (unsigned long)digits[1]) << PyLong_SHIFT) | (unsigned long)digits[0]))) - } else if (8 * sizeof(unsigned int) >= 3 * PyLong_SHIFT) { - return (unsigned int) (((((((unsigned int)digits[2]) << PyLong_SHIFT) | (unsigned int)digits[1]) << PyLong_SHIFT) | (unsigned int)digits[0])); - } - } - break; - case 4: - if (8 * sizeof(unsigned int) > 3 * PyLong_SHIFT) { - if (8 * sizeof(unsigned long) > 4 * PyLong_SHIFT) { - __PYX_VERIFY_RETURN_INT(unsigned int, unsigned long, (((((((((unsigned long)digits[3]) << PyLong_SHIFT) | (unsigned long)digits[2]) << PyLong_SHIFT) | (unsigned long)digits[1]) << PyLong_SHIFT) | (unsigned long)digits[0]))) - } else if (8 * sizeof(unsigned int) >= 4 * PyLong_SHIFT) { - return (unsigned int) (((((((((unsigned int)digits[3]) << PyLong_SHIFT) | (unsigned int)digits[2]) << PyLong_SHIFT) | (unsigned int)digits[1]) << PyLong_SHIFT) | (unsigned int)digits[0])); - } - } - break; - } -#endif -#if CYTHON_COMPILING_IN_CPYTHON - if (unlikely(Py_SIZE(x) < 0)) { - goto raise_neg_overflow; - } -#else - { - int result = PyObject_RichCompareBool(x, Py_False, Py_LT); - if (unlikely(result < 0)) - return (unsigned int) -1; - if (unlikely(result == 1)) - goto raise_neg_overflow; - } -#endif - if (sizeof(unsigned int) <= sizeof(unsigned long)) { - __PYX_VERIFY_RETURN_INT_EXC(unsigned int, unsigned long, PyLong_AsUnsignedLong(x)) -#ifdef HAVE_LONG_LONG - } else if (sizeof(unsigned int) <= sizeof(unsigned PY_LONG_LONG)) { - __PYX_VERIFY_RETURN_INT_EXC(unsigned int, unsigned PY_LONG_LONG, PyLong_AsUnsignedLongLong(x)) -#endif - } - } else { -#if CYTHON_USE_PYLONG_INTERNALS - const digit* digits = ((PyLongObject*)x)->ob_digit; - switch (Py_SIZE(x)) { - case 0: return (unsigned int) 0; - case -1: __PYX_VERIFY_RETURN_INT(unsigned int, sdigit, (sdigit) (-(sdigit)digits[0])) - case 1: __PYX_VERIFY_RETURN_INT(unsigned int, digit, +digits[0]) - case -2: - if (8 * sizeof(unsigned int) - 1 > 1 * PyLong_SHIFT) { - if (8 * sizeof(unsigned long) > 2 * PyLong_SHIFT) { - __PYX_VERIFY_RETURN_INT(unsigned int, long, -(long) (((((unsigned long)digits[1]) << PyLong_SHIFT) | (unsigned long)digits[0]))) - } else if (8 * sizeof(unsigned int) - 1 > 2 * PyLong_SHIFT) { - return (unsigned int) (((unsigned int)-1)*(((((unsigned int)digits[1]) << PyLong_SHIFT) | (unsigned int)digits[0]))); - } - } - break; - case 2: - if (8 * sizeof(unsigned int) > 1 * PyLong_SHIFT) { - if (8 * sizeof(unsigned long) > 2 * PyLong_SHIFT) { - __PYX_VERIFY_RETURN_INT(unsigned int, unsigned long, (((((unsigned long)digits[1]) << PyLong_SHIFT) | (unsigned long)digits[0]))) - } else if (8 * sizeof(unsigned int) - 1 > 2 * PyLong_SHIFT) { - return (unsigned int) ((((((unsigned int)digits[1]) << PyLong_SHIFT) | (unsigned int)digits[0]))); - } - } - break; - case -3: - if (8 * sizeof(unsigned int) - 1 > 2 * PyLong_SHIFT) { - if (8 * sizeof(unsigned long) > 3 * PyLong_SHIFT) { - __PYX_VERIFY_RETURN_INT(unsigned int, long, -(long) (((((((unsigned long)digits[2]) << PyLong_SHIFT) | (unsigned long)digits[1]) << PyLong_SHIFT) | (unsigned long)digits[0]))) - } else if (8 * sizeof(unsigned int) - 1 > 3 * PyLong_SHIFT) { - return (unsigned int) (((unsigned int)-1)*(((((((unsigned int)digits[2]) << PyLong_SHIFT) | (unsigned int)digits[1]) << PyLong_SHIFT) | (unsigned int)digits[0]))); - } - } - break; - case 3: - if (8 * sizeof(unsigned int) > 2 * PyLong_SHIFT) { - if (8 * sizeof(unsigned long) > 3 * PyLong_SHIFT) { - __PYX_VERIFY_RETURN_INT(unsigned int, unsigned long, (((((((unsigned long)digits[2]) << PyLong_SHIFT) | (unsigned long)digits[1]) << PyLong_SHIFT) | (unsigned long)digits[0]))) - } else if (8 * sizeof(unsigned int) - 1 > 3 * PyLong_SHIFT) { - return (unsigned int) ((((((((unsigned int)digits[2]) << PyLong_SHIFT) | (unsigned int)digits[1]) << PyLong_SHIFT) | (unsigned int)digits[0]))); - } - } - break; - case -4: - if (8 * sizeof(unsigned int) - 1 > 3 * PyLong_SHIFT) { - if (8 * sizeof(unsigned long) > 4 * PyLong_SHIFT) { - __PYX_VERIFY_RETURN_INT(unsigned int, long, -(long) (((((((((unsigned long)digits[3]) << PyLong_SHIFT) | (unsigned long)digits[2]) << PyLong_SHIFT) | (unsigned long)digits[1]) << PyLong_SHIFT) | (unsigned long)digits[0]))) - } else if (8 * sizeof(unsigned int) - 1 > 4 * PyLong_SHIFT) { - return (unsigned int) (((unsigned int)-1)*(((((((((unsigned int)digits[3]) << PyLong_SHIFT) | (unsigned int)digits[2]) << PyLong_SHIFT) | (unsigned int)digits[1]) << PyLong_SHIFT) | (unsigned int)digits[0]))); - } - } - break; - case 4: - if (8 * sizeof(unsigned int) > 3 * PyLong_SHIFT) { - if (8 * sizeof(unsigned long) > 4 * PyLong_SHIFT) { - __PYX_VERIFY_RETURN_INT(unsigned int, unsigned long, (((((((((unsigned long)digits[3]) << PyLong_SHIFT) | (unsigned long)digits[2]) << PyLong_SHIFT) | (unsigned long)digits[1]) << PyLong_SHIFT) | (unsigned long)digits[0]))) - } else if (8 * sizeof(unsigned int) - 1 > 4 * PyLong_SHIFT) { - return (unsigned int) ((((((((((unsigned int)digits[3]) << PyLong_SHIFT) | (unsigned int)digits[2]) << PyLong_SHIFT) | (unsigned int)digits[1]) << PyLong_SHIFT) | (unsigned int)digits[0]))); - } - } - break; - } -#endif - if (sizeof(unsigned int) <= sizeof(long)) { - __PYX_VERIFY_RETURN_INT_EXC(unsigned int, long, PyLong_AsLong(x)) -#ifdef HAVE_LONG_LONG - } else if (sizeof(unsigned int) <= sizeof(PY_LONG_LONG)) { - __PYX_VERIFY_RETURN_INT_EXC(unsigned int, PY_LONG_LONG, PyLong_AsLongLong(x)) -#endif - } - } - { -#if CYTHON_COMPILING_IN_PYPY && !defined(_PyLong_AsByteArray) - PyErr_SetString(PyExc_RuntimeError, - "_PyLong_AsByteArray() not available in PyPy, cannot convert large numbers"); -#else - unsigned int val; - PyObject *v = __Pyx_PyNumber_IntOrLong(x); - #if PY_MAJOR_VERSION < 3 - if (likely(v) && !PyLong_Check(v)) { - PyObject *tmp = v; - v = PyNumber_Long(tmp); - Py_DECREF(tmp); - } - #endif - if (likely(v)) { - int one = 1; int is_little = (int)*(unsigned char *)&one; - unsigned char *bytes = (unsigned char *)&val; - int ret = _PyLong_AsByteArray((PyLongObject *)v, - bytes, sizeof(val), - is_little, !is_unsigned); - Py_DECREF(v); - if (likely(!ret)) - return val; - } -#endif - return (unsigned int) -1; - } - } else { - unsigned int val; - PyObject *tmp = __Pyx_PyNumber_IntOrLong(x); - if (!tmp) return (unsigned int) -1; - val = __Pyx_PyInt_As_unsigned_int(tmp); - Py_DECREF(tmp); - return val; - } -raise_overflow: - PyErr_SetString(PyExc_OverflowError, - "value too large to convert to unsigned int"); - return (unsigned int) -1; -raise_neg_overflow: - PyErr_SetString(PyExc_OverflowError, - "can't convert negative value to unsigned int"); - return (unsigned int) -1; -} - -/* CIntFromPy */ -static CYTHON_INLINE long __Pyx_PyInt_As_long(PyObject *x) { - const long neg_one = (long) ((long) 0 - (long) 1), const_zero = (long) 0; - const int is_unsigned = neg_one > const_zero; -#if PY_MAJOR_VERSION < 3 - if (likely(PyInt_Check(x))) { - if (sizeof(long) < sizeof(long)) { - __PYX_VERIFY_RETURN_INT(long, long, PyInt_AS_LONG(x)) - } else { - long val = PyInt_AS_LONG(x); - if (is_unsigned && unlikely(val < 0)) { - goto raise_neg_overflow; - } - return (long) val; - } - } else -#endif - if (likely(PyLong_Check(x))) { - if (is_unsigned) { -#if CYTHON_USE_PYLONG_INTERNALS - const digit* digits = ((PyLongObject*)x)->ob_digit; - switch (Py_SIZE(x)) { - case 0: return (long) 0; - case 1: __PYX_VERIFY_RETURN_INT(long, digit, digits[0]) - case 2: - if (8 * sizeof(long) > 1 * PyLong_SHIFT) { - if (8 * sizeof(unsigned long) > 2 * PyLong_SHIFT) { - __PYX_VERIFY_RETURN_INT(long, unsigned long, (((((unsigned long)digits[1]) << PyLong_SHIFT) | (unsigned long)digits[0]))) - } else if (8 * sizeof(long) >= 2 * PyLong_SHIFT) { - return (long) (((((long)digits[1]) << PyLong_SHIFT) | (long)digits[0])); - } - } - break; - case 3: - if (8 * sizeof(long) > 2 * PyLong_SHIFT) { - if (8 * sizeof(unsigned long) > 3 * PyLong_SHIFT) { - __PYX_VERIFY_RETURN_INT(long, unsigned long, (((((((unsigned long)digits[2]) << PyLong_SHIFT) | (unsigned long)digits[1]) << PyLong_SHIFT) | (unsigned long)digits[0]))) - } else if (8 * sizeof(long) >= 3 * PyLong_SHIFT) { - return (long) (((((((long)digits[2]) << PyLong_SHIFT) | (long)digits[1]) << PyLong_SHIFT) | (long)digits[0])); - } - } - break; - case 4: - if (8 * sizeof(long) > 3 * PyLong_SHIFT) { - if (8 * sizeof(unsigned long) > 4 * PyLong_SHIFT) { - __PYX_VERIFY_RETURN_INT(long, unsigned long, (((((((((unsigned long)digits[3]) << PyLong_SHIFT) | (unsigned long)digits[2]) << PyLong_SHIFT) | (unsigned long)digits[1]) << PyLong_SHIFT) | (unsigned long)digits[0]))) - } else if (8 * sizeof(long) >= 4 * PyLong_SHIFT) { - return (long) (((((((((long)digits[3]) << PyLong_SHIFT) | (long)digits[2]) << PyLong_SHIFT) | (long)digits[1]) << PyLong_SHIFT) | (long)digits[0])); - } - } - break; - } -#endif -#if CYTHON_COMPILING_IN_CPYTHON - if (unlikely(Py_SIZE(x) < 0)) { - goto raise_neg_overflow; - } -#else - { - int result = PyObject_RichCompareBool(x, Py_False, Py_LT); - if (unlikely(result < 0)) - return (long) -1; - if (unlikely(result == 1)) - goto raise_neg_overflow; - } -#endif - if (sizeof(long) <= sizeof(unsigned long)) { - __PYX_VERIFY_RETURN_INT_EXC(long, unsigned long, PyLong_AsUnsignedLong(x)) -#ifdef HAVE_LONG_LONG - } else if (sizeof(long) <= sizeof(unsigned PY_LONG_LONG)) { - __PYX_VERIFY_RETURN_INT_EXC(long, unsigned PY_LONG_LONG, PyLong_AsUnsignedLongLong(x)) -#endif - } - } else { -#if CYTHON_USE_PYLONG_INTERNALS - const digit* digits = ((PyLongObject*)x)->ob_digit; - switch (Py_SIZE(x)) { - case 0: return (long) 0; - case -1: __PYX_VERIFY_RETURN_INT(long, sdigit, (sdigit) (-(sdigit)digits[0])) - case 1: __PYX_VERIFY_RETURN_INT(long, digit, +digits[0]) - case -2: - if (8 * sizeof(long) - 1 > 1 * PyLong_SHIFT) { - if (8 * sizeof(unsigned long) > 2 * PyLong_SHIFT) { - __PYX_VERIFY_RETURN_INT(long, long, -(long) (((((unsigned long)digits[1]) << PyLong_SHIFT) | (unsigned long)digits[0]))) - } else if (8 * sizeof(long) - 1 > 2 * PyLong_SHIFT) { - return (long) (((long)-1)*(((((long)digits[1]) << PyLong_SHIFT) | (long)digits[0]))); - } - } - break; - case 2: - if (8 * sizeof(long) > 1 * PyLong_SHIFT) { - if (8 * sizeof(unsigned long) > 2 * PyLong_SHIFT) { - __PYX_VERIFY_RETURN_INT(long, unsigned long, (((((unsigned long)digits[1]) << PyLong_SHIFT) | (unsigned long)digits[0]))) - } else if (8 * sizeof(long) - 1 > 2 * PyLong_SHIFT) { - return (long) ((((((long)digits[1]) << PyLong_SHIFT) | (long)digits[0]))); - } - } - break; - case -3: - if (8 * sizeof(long) - 1 > 2 * PyLong_SHIFT) { - if (8 * sizeof(unsigned long) > 3 * PyLong_SHIFT) { - __PYX_VERIFY_RETURN_INT(long, long, -(long) (((((((unsigned long)digits[2]) << PyLong_SHIFT) | (unsigned long)digits[1]) << PyLong_SHIFT) | (unsigned long)digits[0]))) - } else if (8 * sizeof(long) - 1 > 3 * PyLong_SHIFT) { - return (long) (((long)-1)*(((((((long)digits[2]) << PyLong_SHIFT) | (long)digits[1]) << PyLong_SHIFT) | (long)digits[0]))); - } - } - break; - case 3: - if (8 * sizeof(long) > 2 * PyLong_SHIFT) { - if (8 * sizeof(unsigned long) > 3 * PyLong_SHIFT) { - __PYX_VERIFY_RETURN_INT(long, unsigned long, (((((((unsigned long)digits[2]) << PyLong_SHIFT) | (unsigned long)digits[1]) << PyLong_SHIFT) | (unsigned long)digits[0]))) - } else if (8 * sizeof(long) - 1 > 3 * PyLong_SHIFT) { - return (long) ((((((((long)digits[2]) << PyLong_SHIFT) | (long)digits[1]) << PyLong_SHIFT) | (long)digits[0]))); - } - } - break; - case -4: - if (8 * sizeof(long) - 1 > 3 * PyLong_SHIFT) { - if (8 * sizeof(unsigned long) > 4 * PyLong_SHIFT) { - __PYX_VERIFY_RETURN_INT(long, long, -(long) (((((((((unsigned long)digits[3]) << PyLong_SHIFT) | (unsigned long)digits[2]) << PyLong_SHIFT) | (unsigned long)digits[1]) << PyLong_SHIFT) | (unsigned long)digits[0]))) - } else if (8 * sizeof(long) - 1 > 4 * PyLong_SHIFT) { - return (long) (((long)-1)*(((((((((long)digits[3]) << PyLong_SHIFT) | (long)digits[2]) << PyLong_SHIFT) | (long)digits[1]) << PyLong_SHIFT) | (long)digits[0]))); - } - } - break; - case 4: - if (8 * sizeof(long) > 3 * PyLong_SHIFT) { - if (8 * sizeof(unsigned long) > 4 * PyLong_SHIFT) { - __PYX_VERIFY_RETURN_INT(long, unsigned long, (((((((((unsigned long)digits[3]) << PyLong_SHIFT) | (unsigned long)digits[2]) << PyLong_SHIFT) | (unsigned long)digits[1]) << PyLong_SHIFT) | (unsigned long)digits[0]))) - } else if (8 * sizeof(long) - 1 > 4 * PyLong_SHIFT) { - return (long) ((((((((((long)digits[3]) << PyLong_SHIFT) | (long)digits[2]) << PyLong_SHIFT) | (long)digits[1]) << PyLong_SHIFT) | (long)digits[0]))); - } - } - break; - } -#endif - if (sizeof(long) <= sizeof(long)) { - __PYX_VERIFY_RETURN_INT_EXC(long, long, PyLong_AsLong(x)) -#ifdef HAVE_LONG_LONG - } else if (sizeof(long) <= sizeof(PY_LONG_LONG)) { - __PYX_VERIFY_RETURN_INT_EXC(long, PY_LONG_LONG, PyLong_AsLongLong(x)) -#endif - } - } - { -#if CYTHON_COMPILING_IN_PYPY && !defined(_PyLong_AsByteArray) - PyErr_SetString(PyExc_RuntimeError, - "_PyLong_AsByteArray() not available in PyPy, cannot convert large numbers"); -#else - long val; - PyObject *v = __Pyx_PyNumber_IntOrLong(x); - #if PY_MAJOR_VERSION < 3 - if (likely(v) && !PyLong_Check(v)) { - PyObject *tmp = v; - v = PyNumber_Long(tmp); - Py_DECREF(tmp); - } - #endif - if (likely(v)) { - int one = 1; int is_little = (int)*(unsigned char *)&one; - unsigned char *bytes = (unsigned char *)&val; - int ret = _PyLong_AsByteArray((PyLongObject *)v, - bytes, sizeof(val), - is_little, !is_unsigned); - Py_DECREF(v); - if (likely(!ret)) - return val; - } -#endif - return (long) -1; - } - } else { - long val; - PyObject *tmp = __Pyx_PyNumber_IntOrLong(x); - if (!tmp) return (long) -1; - val = __Pyx_PyInt_As_long(tmp); - Py_DECREF(tmp); - return val; - } -raise_overflow: - PyErr_SetString(PyExc_OverflowError, - "value too large to convert to long"); - return (long) -1; -raise_neg_overflow: - PyErr_SetString(PyExc_OverflowError, - "can't convert negative value to long"); - return (long) -1; -} - -/* CIntFromPy */ -static CYTHON_INLINE int __Pyx_PyInt_As_int(PyObject *x) { - const int neg_one = (int) ((int) 0 - (int) 1), const_zero = (int) 0; - const int is_unsigned = neg_one > const_zero; -#if PY_MAJOR_VERSION < 3 - if (likely(PyInt_Check(x))) { - if (sizeof(int) < sizeof(long)) { - __PYX_VERIFY_RETURN_INT(int, long, PyInt_AS_LONG(x)) - } else { - long val = PyInt_AS_LONG(x); - if (is_unsigned && unlikely(val < 0)) { - goto raise_neg_overflow; - } - return (int) val; - } - } else -#endif - if (likely(PyLong_Check(x))) { - if (is_unsigned) { -#if CYTHON_USE_PYLONG_INTERNALS - const digit* digits = ((PyLongObject*)x)->ob_digit; - switch (Py_SIZE(x)) { - case 0: return (int) 0; - case 1: __PYX_VERIFY_RETURN_INT(int, digit, digits[0]) - case 2: - if (8 * sizeof(int) > 1 * PyLong_SHIFT) { - if (8 * sizeof(unsigned long) > 2 * PyLong_SHIFT) { - __PYX_VERIFY_RETURN_INT(int, unsigned long, (((((unsigned long)digits[1]) << PyLong_SHIFT) | (unsigned long)digits[0]))) - } else if (8 * sizeof(int) >= 2 * PyLong_SHIFT) { - return (int) (((((int)digits[1]) << PyLong_SHIFT) | (int)digits[0])); - } - } - break; - case 3: - if (8 * sizeof(int) > 2 * PyLong_SHIFT) { - if (8 * sizeof(unsigned long) > 3 * PyLong_SHIFT) { - __PYX_VERIFY_RETURN_INT(int, unsigned long, (((((((unsigned long)digits[2]) << PyLong_SHIFT) | (unsigned long)digits[1]) << PyLong_SHIFT) | (unsigned long)digits[0]))) - } else if (8 * sizeof(int) >= 3 * PyLong_SHIFT) { - return (int) (((((((int)digits[2]) << PyLong_SHIFT) | (int)digits[1]) << PyLong_SHIFT) | (int)digits[0])); - } - } - break; - case 4: - if (8 * sizeof(int) > 3 * PyLong_SHIFT) { - if (8 * sizeof(unsigned long) > 4 * PyLong_SHIFT) { - __PYX_VERIFY_RETURN_INT(int, unsigned long, (((((((((unsigned long)digits[3]) << PyLong_SHIFT) | (unsigned long)digits[2]) << PyLong_SHIFT) | (unsigned long)digits[1]) << PyLong_SHIFT) | (unsigned long)digits[0]))) - } else if (8 * sizeof(int) >= 4 * PyLong_SHIFT) { - return (int) (((((((((int)digits[3]) << PyLong_SHIFT) | (int)digits[2]) << PyLong_SHIFT) | (int)digits[1]) << PyLong_SHIFT) | (int)digits[0])); - } - } - break; - } -#endif -#if CYTHON_COMPILING_IN_CPYTHON - if (unlikely(Py_SIZE(x) < 0)) { - goto raise_neg_overflow; - } -#else - { - int result = PyObject_RichCompareBool(x, Py_False, Py_LT); - if (unlikely(result < 0)) - return (int) -1; - if (unlikely(result == 1)) - goto raise_neg_overflow; - } -#endif - if (sizeof(int) <= sizeof(unsigned long)) { - __PYX_VERIFY_RETURN_INT_EXC(int, unsigned long, PyLong_AsUnsignedLong(x)) -#ifdef HAVE_LONG_LONG - } else if (sizeof(int) <= sizeof(unsigned PY_LONG_LONG)) { - __PYX_VERIFY_RETURN_INT_EXC(int, unsigned PY_LONG_LONG, PyLong_AsUnsignedLongLong(x)) -#endif - } - } else { -#if CYTHON_USE_PYLONG_INTERNALS - const digit* digits = ((PyLongObject*)x)->ob_digit; - switch (Py_SIZE(x)) { - case 0: return (int) 0; - case -1: __PYX_VERIFY_RETURN_INT(int, sdigit, (sdigit) (-(sdigit)digits[0])) - case 1: __PYX_VERIFY_RETURN_INT(int, digit, +digits[0]) - case -2: - if (8 * sizeof(int) - 1 > 1 * PyLong_SHIFT) { - if (8 * sizeof(unsigned long) > 2 * PyLong_SHIFT) { - __PYX_VERIFY_RETURN_INT(int, long, -(long) (((((unsigned long)digits[1]) << PyLong_SHIFT) | (unsigned long)digits[0]))) - } else if (8 * sizeof(int) - 1 > 2 * PyLong_SHIFT) { - return (int) (((int)-1)*(((((int)digits[1]) << PyLong_SHIFT) | (int)digits[0]))); - } - } - break; - case 2: - if (8 * sizeof(int) > 1 * PyLong_SHIFT) { - if (8 * sizeof(unsigned long) > 2 * PyLong_SHIFT) { - __PYX_VERIFY_RETURN_INT(int, unsigned long, (((((unsigned long)digits[1]) << PyLong_SHIFT) | (unsigned long)digits[0]))) - } else if (8 * sizeof(int) - 1 > 2 * PyLong_SHIFT) { - return (int) ((((((int)digits[1]) << PyLong_SHIFT) | (int)digits[0]))); - } - } - break; - case -3: - if (8 * sizeof(int) - 1 > 2 * PyLong_SHIFT) { - if (8 * sizeof(unsigned long) > 3 * PyLong_SHIFT) { - __PYX_VERIFY_RETURN_INT(int, long, -(long) (((((((unsigned long)digits[2]) << PyLong_SHIFT) | (unsigned long)digits[1]) << PyLong_SHIFT) | (unsigned long)digits[0]))) - } else if (8 * sizeof(int) - 1 > 3 * PyLong_SHIFT) { - return (int) (((int)-1)*(((((((int)digits[2]) << PyLong_SHIFT) | (int)digits[1]) << PyLong_SHIFT) | (int)digits[0]))); - } - } - break; - case 3: - if (8 * sizeof(int) > 2 * PyLong_SHIFT) { - if (8 * sizeof(unsigned long) > 3 * PyLong_SHIFT) { - __PYX_VERIFY_RETURN_INT(int, unsigned long, (((((((unsigned long)digits[2]) << PyLong_SHIFT) | (unsigned long)digits[1]) << PyLong_SHIFT) | (unsigned long)digits[0]))) - } else if (8 * sizeof(int) - 1 > 3 * PyLong_SHIFT) { - return (int) ((((((((int)digits[2]) << PyLong_SHIFT) | (int)digits[1]) << PyLong_SHIFT) | (int)digits[0]))); - } - } - break; - case -4: - if (8 * sizeof(int) - 1 > 3 * PyLong_SHIFT) { - if (8 * sizeof(unsigned long) > 4 * PyLong_SHIFT) { - __PYX_VERIFY_RETURN_INT(int, long, -(long) (((((((((unsigned long)digits[3]) << PyLong_SHIFT) | (unsigned long)digits[2]) << PyLong_SHIFT) | (unsigned long)digits[1]) << PyLong_SHIFT) | (unsigned long)digits[0]))) - } else if (8 * sizeof(int) - 1 > 4 * PyLong_SHIFT) { - return (int) (((int)-1)*(((((((((int)digits[3]) << PyLong_SHIFT) | (int)digits[2]) << PyLong_SHIFT) | (int)digits[1]) << PyLong_SHIFT) | (int)digits[0]))); - } - } - break; - case 4: - if (8 * sizeof(int) > 3 * PyLong_SHIFT) { - if (8 * sizeof(unsigned long) > 4 * PyLong_SHIFT) { - __PYX_VERIFY_RETURN_INT(int, unsigned long, (((((((((unsigned long)digits[3]) << PyLong_SHIFT) | (unsigned long)digits[2]) << PyLong_SHIFT) | (unsigned long)digits[1]) << PyLong_SHIFT) | (unsigned long)digits[0]))) - } else if (8 * sizeof(int) - 1 > 4 * PyLong_SHIFT) { - return (int) ((((((((((int)digits[3]) << PyLong_SHIFT) | (int)digits[2]) << PyLong_SHIFT) | (int)digits[1]) << PyLong_SHIFT) | (int)digits[0]))); - } - } - break; - } -#endif - if (sizeof(int) <= sizeof(long)) { - __PYX_VERIFY_RETURN_INT_EXC(int, long, PyLong_AsLong(x)) -#ifdef HAVE_LONG_LONG - } else if (sizeof(int) <= sizeof(PY_LONG_LONG)) { - __PYX_VERIFY_RETURN_INT_EXC(int, PY_LONG_LONG, PyLong_AsLongLong(x)) -#endif - } - } - { -#if CYTHON_COMPILING_IN_PYPY && !defined(_PyLong_AsByteArray) - PyErr_SetString(PyExc_RuntimeError, - "_PyLong_AsByteArray() not available in PyPy, cannot convert large numbers"); -#else - int val; - PyObject *v = __Pyx_PyNumber_IntOrLong(x); - #if PY_MAJOR_VERSION < 3 - if (likely(v) && !PyLong_Check(v)) { - PyObject *tmp = v; - v = PyNumber_Long(tmp); - Py_DECREF(tmp); - } - #endif - if (likely(v)) { - int one = 1; int is_little = (int)*(unsigned char *)&one; - unsigned char *bytes = (unsigned char *)&val; - int ret = _PyLong_AsByteArray((PyLongObject *)v, - bytes, sizeof(val), - is_little, !is_unsigned); - Py_DECREF(v); - if (likely(!ret)) - return val; - } -#endif - return (int) -1; - } - } else { - int val; - PyObject *tmp = __Pyx_PyNumber_IntOrLong(x); - if (!tmp) return (int) -1; - val = __Pyx_PyInt_As_int(tmp); - Py_DECREF(tmp); - return val; - } -raise_overflow: - PyErr_SetString(PyExc_OverflowError, - "value too large to convert to int"); - return (int) -1; -raise_neg_overflow: - PyErr_SetString(PyExc_OverflowError, - "can't convert negative value to int"); - return (int) -1; -} - -/* FastTypeChecks */ -#if CYTHON_COMPILING_IN_CPYTHON -static int __Pyx_InBases(PyTypeObject *a, PyTypeObject *b) { - while (a) { - a = a->tp_base; - if (a == b) - return 1; - } - return b == &PyBaseObject_Type; -} -static CYTHON_INLINE int __Pyx_IsSubtype(PyTypeObject *a, PyTypeObject *b) { - PyObject *mro; - if (a == b) return 1; - mro = a->tp_mro; - if (likely(mro)) { - Py_ssize_t i, n; - n = PyTuple_GET_SIZE(mro); - for (i = 0; i < n; i++) { - if (PyTuple_GET_ITEM(mro, i) == (PyObject *)b) - return 1; - } - return 0; - } - return __Pyx_InBases(a, b); -} -#if PY_MAJOR_VERSION == 2 -static int __Pyx_inner_PyErr_GivenExceptionMatches2(PyObject *err, PyObject* exc_type1, PyObject* exc_type2) { - PyObject *exception, *value, *tb; - int res; - __Pyx_PyThreadState_declare - __Pyx_PyThreadState_assign - __Pyx_ErrFetch(&exception, &value, &tb); - res = exc_type1 ? PyObject_IsSubclass(err, exc_type1) : 0; - if (unlikely(res == -1)) { - PyErr_WriteUnraisable(err); - res = 0; - } - if (!res) { - res = PyObject_IsSubclass(err, exc_type2); - if (unlikely(res == -1)) { - PyErr_WriteUnraisable(err); - res = 0; - } - } - __Pyx_ErrRestore(exception, value, tb); - return res; -} -#else -static CYTHON_INLINE int __Pyx_inner_PyErr_GivenExceptionMatches2(PyObject *err, PyObject* exc_type1, PyObject *exc_type2) { - int res = exc_type1 ? __Pyx_IsSubtype((PyTypeObject*)err, (PyTypeObject*)exc_type1) : 0; - if (!res) { - res = __Pyx_IsSubtype((PyTypeObject*)err, (PyTypeObject*)exc_type2); - } - return res; -} -#endif -static int __Pyx_PyErr_GivenExceptionMatchesTuple(PyObject *exc_type, PyObject *tuple) { - Py_ssize_t i, n; - assert(PyExceptionClass_Check(exc_type)); - n = PyTuple_GET_SIZE(tuple); -#if PY_MAJOR_VERSION >= 3 - for (i=0; ip) { - #if PY_MAJOR_VERSION < 3 - if (t->is_unicode) { - *t->p = PyUnicode_DecodeUTF8(t->s, t->n - 1, NULL); - } else if (t->intern) { - *t->p = PyString_InternFromString(t->s); - } else { - *t->p = PyString_FromStringAndSize(t->s, t->n - 1); - } - #else - if (t->is_unicode | t->is_str) { - if (t->intern) { - *t->p = PyUnicode_InternFromString(t->s); - } else if (t->encoding) { - *t->p = PyUnicode_Decode(t->s, t->n - 1, t->encoding, NULL); - } else { - *t->p = PyUnicode_FromStringAndSize(t->s, t->n - 1); - } - } else { - *t->p = PyBytes_FromStringAndSize(t->s, t->n - 1); - } - #endif - if (!*t->p) - return -1; - if (PyObject_Hash(*t->p) == -1) - return -1; - ++t; - } - return 0; -} - -static CYTHON_INLINE PyObject* __Pyx_PyUnicode_FromString(const char* c_str) { - return __Pyx_PyUnicode_FromStringAndSize(c_str, (Py_ssize_t)strlen(c_str)); -} -static CYTHON_INLINE const char* __Pyx_PyObject_AsString(PyObject* o) { - Py_ssize_t ignore; - return __Pyx_PyObject_AsStringAndSize(o, &ignore); -} -#if __PYX_DEFAULT_STRING_ENCODING_IS_ASCII || __PYX_DEFAULT_STRING_ENCODING_IS_DEFAULT -#if !CYTHON_PEP393_ENABLED -static const char* __Pyx_PyUnicode_AsStringAndSize(PyObject* o, Py_ssize_t *length) { - char* defenc_c; - PyObject* defenc = _PyUnicode_AsDefaultEncodedString(o, NULL); - if (!defenc) return NULL; - defenc_c = PyBytes_AS_STRING(defenc); -#if __PYX_DEFAULT_STRING_ENCODING_IS_ASCII - { - char* end = defenc_c + PyBytes_GET_SIZE(defenc); - char* c; - for (c = defenc_c; c < end; c++) { - if ((unsigned char) (*c) >= 128) { - PyUnicode_AsASCIIString(o); - return NULL; - } - } - } -#endif - *length = PyBytes_GET_SIZE(defenc); - return defenc_c; -} -#else -static CYTHON_INLINE const char* __Pyx_PyUnicode_AsStringAndSize(PyObject* o, Py_ssize_t *length) { - if (unlikely(__Pyx_PyUnicode_READY(o) == -1)) return NULL; -#if __PYX_DEFAULT_STRING_ENCODING_IS_ASCII - if (likely(PyUnicode_IS_ASCII(o))) { - *length = PyUnicode_GET_LENGTH(o); - return PyUnicode_AsUTF8(o); - } else { - PyUnicode_AsASCIIString(o); - return NULL; - } -#else - return PyUnicode_AsUTF8AndSize(o, length); -#endif -} -#endif -#endif -static CYTHON_INLINE const char* __Pyx_PyObject_AsStringAndSize(PyObject* o, Py_ssize_t *length) { -#if __PYX_DEFAULT_STRING_ENCODING_IS_ASCII || __PYX_DEFAULT_STRING_ENCODING_IS_DEFAULT - if ( -#if PY_MAJOR_VERSION < 3 && __PYX_DEFAULT_STRING_ENCODING_IS_ASCII - __Pyx_sys_getdefaultencoding_not_ascii && -#endif - PyUnicode_Check(o)) { - return __Pyx_PyUnicode_AsStringAndSize(o, length); - } else -#endif -#if (!CYTHON_COMPILING_IN_PYPY) || (defined(PyByteArray_AS_STRING) && defined(PyByteArray_GET_SIZE)) - if (PyByteArray_Check(o)) { - *length = PyByteArray_GET_SIZE(o); - return PyByteArray_AS_STRING(o); - } else -#endif - { - char* result; - int r = PyBytes_AsStringAndSize(o, &result, length); - if (unlikely(r < 0)) { - return NULL; - } else { - return result; - } - } -} -static CYTHON_INLINE int __Pyx_PyObject_IsTrue(PyObject* x) { - int is_true = x == Py_True; - if (is_true | (x == Py_False) | (x == Py_None)) return is_true; - else return PyObject_IsTrue(x); -} -static CYTHON_INLINE int __Pyx_PyObject_IsTrueAndDecref(PyObject* x) { - int retval; - if (unlikely(!x)) return -1; - retval = __Pyx_PyObject_IsTrue(x); - Py_DECREF(x); - return retval; -} -static PyObject* __Pyx_PyNumber_IntOrLongWrongResultType(PyObject* result, const char* type_name) { -#if PY_MAJOR_VERSION >= 3 - if (PyLong_Check(result)) { - if (PyErr_WarnFormat(PyExc_DeprecationWarning, 1, - "__int__ returned non-int (type %.200s). " - "The ability to return an instance of a strict subclass of int " - "is deprecated, and may be removed in a future version of Python.", - Py_TYPE(result)->tp_name)) { - Py_DECREF(result); - return NULL; - } - return result; - } -#endif - PyErr_Format(PyExc_TypeError, - "__%.4s__ returned non-%.4s (type %.200s)", - type_name, type_name, Py_TYPE(result)->tp_name); - Py_DECREF(result); - return NULL; -} -static CYTHON_INLINE PyObject* __Pyx_PyNumber_IntOrLong(PyObject* x) { -#if CYTHON_USE_TYPE_SLOTS - PyNumberMethods *m; -#endif - const char *name = NULL; - PyObject *res = NULL; -#if PY_MAJOR_VERSION < 3 - if (likely(PyInt_Check(x) || PyLong_Check(x))) -#else - if (likely(PyLong_Check(x))) -#endif - return __Pyx_NewRef(x); -#if CYTHON_USE_TYPE_SLOTS - m = Py_TYPE(x)->tp_as_number; - #if PY_MAJOR_VERSION < 3 - if (m && m->nb_int) { - name = "int"; - res = m->nb_int(x); - } - else if (m && m->nb_long) { - name = "long"; - res = m->nb_long(x); - } - #else - if (likely(m && m->nb_int)) { - name = "int"; - res = m->nb_int(x); - } - #endif -#else - if (!PyBytes_CheckExact(x) && !PyUnicode_CheckExact(x)) { - res = PyNumber_Int(x); - } -#endif - if (likely(res)) { -#if PY_MAJOR_VERSION < 3 - if (unlikely(!PyInt_Check(res) && !PyLong_Check(res))) { -#else - if (unlikely(!PyLong_CheckExact(res))) { -#endif - return __Pyx_PyNumber_IntOrLongWrongResultType(res, name); - } - } - else if (!PyErr_Occurred()) { - PyErr_SetString(PyExc_TypeError, - "an integer is required"); - } - return res; -} -static CYTHON_INLINE Py_ssize_t __Pyx_PyIndex_AsSsize_t(PyObject* b) { - Py_ssize_t ival; - PyObject *x; -#if PY_MAJOR_VERSION < 3 - if (likely(PyInt_CheckExact(b))) { - if (sizeof(Py_ssize_t) >= sizeof(long)) - return PyInt_AS_LONG(b); - else - return PyInt_AsSsize_t(b); - } -#endif - if (likely(PyLong_CheckExact(b))) { - #if CYTHON_USE_PYLONG_INTERNALS - const digit* digits = ((PyLongObject*)b)->ob_digit; - const Py_ssize_t size = Py_SIZE(b); - if (likely(__Pyx_sst_abs(size) <= 1)) { - ival = likely(size) ? digits[0] : 0; - if (size == -1) ival = -ival; - return ival; - } else { - switch (size) { - case 2: - if (8 * sizeof(Py_ssize_t) > 2 * PyLong_SHIFT) { - return (Py_ssize_t) (((((size_t)digits[1]) << PyLong_SHIFT) | (size_t)digits[0])); - } - break; - case -2: - if (8 * sizeof(Py_ssize_t) > 2 * PyLong_SHIFT) { - return -(Py_ssize_t) (((((size_t)digits[1]) << PyLong_SHIFT) | (size_t)digits[0])); - } - break; - case 3: - if (8 * sizeof(Py_ssize_t) > 3 * PyLong_SHIFT) { - return (Py_ssize_t) (((((((size_t)digits[2]) << PyLong_SHIFT) | (size_t)digits[1]) << PyLong_SHIFT) | (size_t)digits[0])); - } - break; - case -3: - if (8 * sizeof(Py_ssize_t) > 3 * PyLong_SHIFT) { - return -(Py_ssize_t) (((((((size_t)digits[2]) << PyLong_SHIFT) | (size_t)digits[1]) << PyLong_SHIFT) | (size_t)digits[0])); - } - break; - case 4: - if (8 * sizeof(Py_ssize_t) > 4 * PyLong_SHIFT) { - return (Py_ssize_t) (((((((((size_t)digits[3]) << PyLong_SHIFT) | (size_t)digits[2]) << PyLong_SHIFT) | (size_t)digits[1]) << PyLong_SHIFT) | (size_t)digits[0])); - } - break; - case -4: - if (8 * sizeof(Py_ssize_t) > 4 * PyLong_SHIFT) { - return -(Py_ssize_t) (((((((((size_t)digits[3]) << PyLong_SHIFT) | (size_t)digits[2]) << PyLong_SHIFT) | (size_t)digits[1]) << PyLong_SHIFT) | (size_t)digits[0])); - } - break; - } - } - #endif - return PyLong_AsSsize_t(b); - } - x = PyNumber_Index(b); - if (!x) return -1; - ival = PyInt_AsSsize_t(x); - Py_DECREF(x); - return ival; -} -static CYTHON_INLINE PyObject * __Pyx_PyBool_FromLong(long b) { - return b ? __Pyx_NewRef(Py_True) : __Pyx_NewRef(Py_False); -} -static CYTHON_INLINE PyObject * __Pyx_PyInt_FromSize_t(size_t ival) { - return PyInt_FromSize_t(ival); -} - - -#endif /* Py_PYTHON_H */ diff --git a/python/pmercury/cython-bak/tls_utils.pyx b/python/pmercury/cython-bak/tls_utils.pyx deleted file mode 100644 index a1555390..00000000 --- a/python/pmercury/cython-bak/tls_utils.pyx +++ /dev/null @@ -1,393 +0,0 @@ -#cython: language_level=3, cdivision=True, infer_types=True, initializedcheck=False, c_string_type=bytes, embedsignature=False - -""" - Copyright (c) 2019 Cisco Systems, Inc. All rights reserved. - License at https://github.com/cisco/mercury/blob/master/LICENSE -""" - -import os -import sys -import ast -import json - -sys.path.append(os.path.dirname(os.path.abspath(__file__))) -sys.path.append(os.path.dirname(os.path.abspath(__file__))+'/../') -from pmercury.utils.tls_constants import * -from pmercury.utils.pmercury_utils import * - -cdef set grease_ = set(['0a0a','1a1a','2a2a','3a3a','4a4a','5a5a','6a6a','7a7a', - '8a8a','9a9a','aaaa','baba','caca','dada','eaea','fafa']) - -cdef set grease_single_int_ = set([10,26,42,58,74,90,106,122,138,154,170,186,202,218,234,250]) - -cdef set ext_data_extract_ = set(['0001','0005','0007','0008','0009','000a','000b', - '000d','000f','0010','0011','0013','0014','0018', - '001b','001c','002b','002d','0032','5500']) -ext_data_extract_ = ext_data_extract_.union(grease_) - - -imp_date_cs_file = find_resource_path('resources/implementation_date_cs.json.gz') -IF UNAME_SYSNAME == "Windows": - import gzip - for line in gzip.open(imp_date_cs_file, 'r'): - imp_date_cs_data = json.loads(line) - break -ELSE: - for line in os.popen('zcat %s' % (imp_date_cs_file)): - imp_date_cs_data = json.loads(line) - break - -imp_date_ext_file = find_resource_path('resources/implementation_date_ext.json.gz') -IF UNAME_SYSNAME == "Windows": - import gzip - for line in gzip.open(imp_date_ext_file, 'r'): - imp_date_ext_data = json.loads(line) - break -ELSE: - for line in os.popen('zcat %s' % (imp_date_ext_file)): - imp_date_ext_data = json.loads(line) - break - - - -def extract_server_name(bytes data, unsigned int offset, unsigned int data_len): - if data_len - offset < 7: - return 'None' - sni_len = int.from_bytes(data[offset+5:offset+7], 'big') - try: - return data[offset+7:offset+7+sni_len].decode() - except UnicodeDecodeError: - return data[offset+7:offset+7+sni_len].hex() - - -def eval_fp_str_general(fp_str_): - fp_str_ = '(%s)' % fp_str_ - fp_str_ = fp_str_.replace('(','["').replace(')','"]').replace('][','],[') - new_str_ = fp_str_.replace('["[','[[').replace(']"]',']]') - while new_str_ != fp_str_: - fp_str_ = new_str_ - new_str_ = fp_str_.replace('["[','[[').replace(']"]',']]') - return ast.literal_eval(fp_str_) - - -def eval_fp_str(fp_str_): - fp_str_ = fp_str_ - t_ = fp_str_.split(')') - version = t_[0][1:] - cs = t_[1][1:] - tmp_ext = fp_str_[len(cs)+9:-1] - tmp_ext = tmp_ext.split(')') - ext = [e_[1:] for e_ in tmp_ext[:-1]] - return [version, cs, ext] - - -def get_version_from_str(version_str_, convert=True): - if version_str_ in TLS_VERSION and convert: - return TLS_VERSION[version_str_] - else: - return version_str_ - - -def get_cs_from_str(cs_str_, convert=True): - cs_l_ = [] - for i in range(0,len(cs_str_),4): - cs_ = cs_str_[i:i+4] - if cs_ in imp_date_cs_data and convert: - cs_l_.append(imp_date_cs_data[cs_]['name']) - else: - cs_l_.append(cs_) - return cs_l_ - - -def get_ext_from_str(exts_, convert=True, mode='client'): - ext_l_ = [] - for ext in exts_: - if len(ext) == 0: - break - ext_type_ = ext[0:4] - ext_type_str_kind = str(int(ext_type_,16)) - if ext_type_str_kind in imp_date_ext_data and convert: - ext_type_ = imp_date_ext_data[ext_type_str_kind]['name'] - ext_data_ = '' - if len(ext) > 4 and convert: - ext_data_ = parse_extension_data(ext_type_, ext[4:], mode) - elif len(ext) > 4: - ext_data_ = ext[4:] - - ext_l_.append({ext_type_: ext_data_}) - - return ext_l_ - - -def get_implementation_date(cs_str_): # @TODO: add extension - dates_ = set([]) - for i in range(0,len(cs_str_),4): - cs_ = cs_str_[i:i+4] - if cs_ in imp_date_cs_data: - dates_.add(imp_date_cs_data[cs_]['date']) - dates_ = list(dates_) - dates_.sort() - if len(dates_) > 0: - return dates_[-1], dates_[0] - else: - return None, None - - -def parse_extension_data(ext_type, ext_data_, mode): - ext_len = int(ext_data_[0:4],16) - ext_data = ext_data_[4:] - - if ext_type == 'application_layer_protocol_negotiation': - ext_data = parse_application_layer_protocol_negotiation(ext_data, ext_len) - elif ext_type == 'signature_algorithms': - ext_data = signature_algorithms(ext_data, ext_len) - elif ext_type == 'status_request': - ext_data = status_request(ext_data, ext_len) - elif ext_type == 'ec_point_formats': - ext_data = ec_point_formats(ext_data, ext_len) - elif ext_type == 'key_share': - ext_data = key_share_client(ext_data, ext_len) - elif ext_type == 'psk_key_exchange_modes': - ext_data = psk_key_exchange_modes(ext_data, ext_len) - elif ext_type == 'supported_versions': - if mode == 'client': - ext_data = supported_versions(ext_data, ext_len) - else: - ext_data = supported_versions_server(ext_data, ext_len) - elif ext_type == 'supported_groups': - ext_data = supported_groups(ext_data, ext_len) - - return ext_data - - -# helper to parse/extract/skip single extension -def parse_extension(bytes data, unsigned int offset): - cdef str tmp_ext_type = degrease_type_code(data, offset) - cdef str fp_ext_ = tmp_ext_type - offset += 2 - cdef unsigned int ext_len = int.from_bytes(data[offset:offset+2],'big') - offset += 2 - cdef bytes tmp_ext_value = data[offset:offset+ext_len] - if tmp_ext_type in ext_data_extract_: - tmp_ext_value = degrease_ext_data(data, offset, tmp_ext_type, ext_len, tmp_ext_value) - fp_ext_ += '%04x%s' % (ext_len, tmp_ext_value.hex()) - offset += ext_len - - return fp_ext_, offset, ext_len - -# helper to normalize grease type codes -def degrease_type_code(unsigned char *data, unsigned int offset): - if data[offset] in grease_single_int_ and data[offset] == data[offset+1]: - return '0a0a' - else: - return data[offset:offset+2].hex() - - -# helper to normalize grease within supported_groups and supported_versions -def degrease_ext_data(unsigned char *data, unsigned int offset, str ext_type, unsigned int ext_length, bytes ext_value): - degreased_ext_value = b'' - if ext_type == '000a': # supported_groups - degreased_ext_value += data[offset:offset+2] - for i in range(2,ext_length,2): - if data[offset+i] in grease_single_int_ and data[offset+i] == data[offset+i+1]: - degreased_ext_value += b'\x0a\x0a' - else: - degreased_ext_value += data[offset+i:offset+i+2] - return degreased_ext_value - elif ext_type == b'002b': # supported_versions - degreased_ext_value += data[offset:offset+1] - for i in range(1,ext_length,2): - if data[offset+i] in grease_single_int_ and data[offset+i] == data[offset+i+1]: - degreased_ext_value += b'\x0a\x0a' - else: - degreased_ext_value += data[offset+i:offset+i+2] - return degreased_ext_value - - return ext_value - - -def supported_groups(data, length): - if len(data) < 2: - return '' - info = {} - ext_len = int(data[0:4], 16) - info['supported_groups_list_length'] = ext_len - info['supported_groups'] = [] - offset = 4 - while offset < length*2: - if int(data[offset:offset+4], 16) in TLS_SUPPORTED_GROUPS: - info['supported_groups'].append(TLS_SUPPORTED_GROUPS[int(data[offset:offset+4], 16)]) - else: - info['supported_groups'].append('Unknown Group (%i)' % int(data[offset:offset+4], 16)) - offset += 4 - - return info - - -def supported_versions(data, length): - if len(data) < 2: - return '' - info = {} - ext_len = int(data[0:2], 16) - info['supported_versions_list_length'] = ext_len - info['supported_versions'] = [] - offset = 2 - while offset < length*2: - tmp_data = data[offset:offset+4] - if tmp_data in TLS_VERSION: - info['supported_versions'].append(TLS_VERSION[tmp_data]) - else: - info['supported_versions'].append('Unknown Version (%s)' % tmp_data) - offset += 4 - - return info - - -def supported_versions_server(data, length): - if len(data) < 2: - return '' - info = {} - tmp_data = data[:4] - if tmp_data in TLS_VERSION: - return TLS_VERSION[tmp_data] - else: - return 'Unknown Version (%s)' % tmp_data - - return info - - -def psk_key_exchange_modes(data, length): - if len(data) < 2: - return '' - info = {} - ext_len = int(data[0:2], 16) - info['psk_key_exchange_modes_length'] = ext_len - mode = int(data[2:4], 16) - info['psk_key_exchange_mode'] = TLS_PSK_KEY_EXCHANGE_MODES[mode] - - return info - - -def key_share_client(data, length): - if len(data) < 2: - return '' - info = {} - ext_len = int(data[0:4], 16) - info['key_share_length'] = ext_len - info['key_share_entries'] = [] - offset = 4 - while offset < length*2: - tmp_obj = {} - tmp_data = data[offset:offset+4] - tmp_obj['group'] = TLS_SUPPORTED_GROUPS[int(tmp_data,16)] - tmp_obj['key_exchange_length'] = int(data[offset+4:offset+8], 16) - tmp_obj['key_exchange'] = data[offset+8:offset+8+2*tmp_obj['key_exchange_length']] - info['key_share_entries'].append(tmp_obj) - offset += 8 + 2*tmp_obj['key_exchange_length'] - - return info - - -def ec_point_formats(data, length): - if len(data) < 2: - return '' - info = {} - ext_len = int(data[0:2], 16) - info['ec_point_formats_length'] = ext_len - info['ec_point_formats'] = [] - for i in range(ext_len): - tmp_data = data[2*i+2:2*i+4] - if tmp_data in TLS_EC_POINT_FORMATS: - info['ec_point_formats'].append(TLS_EC_POINT_FORMATS[tmp_data]) - else: - info['ec_point_formats'].append(tmp_data) - - return info - - -def status_request(data, length): - if len(data) < 2: - return '' - info = {} - info['certificate_status_type'] = TLS_CERTIFICATE_STATUS_TYPE[data[0:2]] - offset = 2 - info['responder_id_list_length'] = int(data[offset:offset+4], 16) - offset += info['responder_id_list_length']*2 + 4 - info['request_extensions_length'] = int(data[offset:offset+4], 16) - - return info - - -def signature_algorithms(data, length): - if len(data) < 2: - return '' - info = {} - ext_len = int(data[0:4], 16) - info['signature_hash_algorithms_length'] = ext_len - info['algorithms'] = [] - offset = 4 - while offset < length*2: - tmp_data = data[offset:offset+4] - if tmp_data in TLS_SIGNATURE_HASH_ALGORITHMS: - info['algorithms'].append(TLS_SIGNATURE_HASH_ALGORITHMS[tmp_data]) - else: - info['algorithms'].append('unknown(%s)' % tmp_data) - offset += 4 - - return info - - -def parse_application_layer_protocol_negotiation(data, length): - alpn_len = int(data[0:4], 16) - alpn_offset = 4 - alpn_data = [] - while alpn_offset < length*2: - tmp_alpn_len = int(data[alpn_offset:alpn_offset+2], 16) - alpn_offset += 2 - alpn_data.append(bytes.fromhex(data[alpn_offset:alpn_offset+2*tmp_alpn_len]).decode()) - alpn_offset += tmp_alpn_len*2 - - return alpn_data - - -def get_tls_params(fp_): - cs_ = [] - for i in range(0,len(fp_[1][0]),4): - cs_.append(fp_[1][0][i:i+4]) - cs_4_ = get_ngram(cs_, 4) - - ext_ = [] - if len(fp_) > 2 and fp_[2] != ['']: - for t_ext_ in fp_[2]: - ext_.append('ext_' + t_ext_[0][0:4] + '::' + t_ext_[0][4:]) - - return [cs_4_, ext_] - - -def get_sequence(fp_): - seq = [] - cs_ = fp_[1][0] - for i in range(0,len(cs_),4): - seq.append(cs_[i:i+4]) - ext_ = [] - if len(fp_) > 2 and fp_[2] != ['']: - for t_ext_ in fp_[2]: - seq.append('ext_' + t_ext_[0][0:4] + '::' + t_ext_[0][4:]) - return seq - - -def get_ngram(l, ngram): - l_ = [] - for i in range(0,len(l)-ngram): - s_ = '' - for j in range(ngram): - s_ += l[i+j] - l_.append(s_) - if len(l_) == 0: - l_ = l - return l_ - - - - - diff --git a/python/pmercury/pmercury b/python/pmercury/pmercury deleted file mode 100755 index 8256a4f4..00000000 --- a/python/pmercury/pmercury +++ /dev/null @@ -1,502 +0,0 @@ -#!/usr/bin/env python3 - -""" - Copyright (c) 2019 Cisco Systems, Inc. All rights reserved. - License at https://github.com/cisco/mercury/blob/master/LICENSE -""" - -import os -import sys -import json -import pcap -import time -import optparse -from socket import AF_INET, AF_INET6, inet_ntop - -sys.path.append(os.path.dirname(os.path.abspath(__file__))) -sys.path.append(os.path.dirname(os.path.abspath(__file__))+'/../') -from pmercury.utils.config_parser import parse_config -from pmercury.utils.packet_proc import pkt_proc - -from pmercury.protocols.tcp import TCP -from pmercury.protocols.tls import TLS -from pmercury.protocols.dtls import DTLS -from pmercury.protocols.http import HTTP -from pmercury.protocols.dhcp import DHCP -from pmercury.protocols.iquic import IQUIC -from pmercury.protocols.tls_server import TLS_Server -from pmercury.protocols.dtls_server import DTLS_Server -from pmercury.protocols.http_server import HTTP_Server -from pmercury.protocols.tls_certificate import TLS_Certificate - - - - - -class Fingerprinter: - - def __init__(self, database, output=None, analyze=False, num_procs=0, - human_readable=False, group=False, endpoint=False, experimental=False, sslkeylog=None): - - self.analyze = analyze - self.num_procs = num_procs - self.human_readable = human_readable - self.group = group - self.endpoint = endpoint - self.FLOW_TIMEOUT = 150 - self.FLOW_UPDATE = 15 - - self.fast_path = True - if analyze or human_readable or group or endpoint or experimental: - self.fast_path = False - - if output == None: - self.out_file_pointer = sys.stdout - else: - self.out_file_pointer = open(output, 'w', buffering=8192*64) - - if endpoint: - if output == None: - self.endpoint_file_pointer = sys.stdout - else: - self.endpoint_file_pointer = open('endpoint_'+output, 'w', buffering=8192*64) - - config = parse_config('../config.yaml') - - # register parsers - self.parsers = {} - self.parsers['tcp'] = TCP('resources/fingerprint_db_tcp.json.gz') - self.parsers['tls'] = TLS(database) - self.parsers['tls_server'] = TLS_Server() - self.parsers['dtls'] = DTLS(database) - self.parsers['dtls_server'] = DTLS_Server() - self.parsers['http'] = HTTP(None, config) - self.parsers['http_server'] = HTTP_Server(None, config) - self.parsers['server_certs'] = TLS_Certificate() - self.parsers['dhcp'] = DHCP(None, config) - self.parsers['iquic'] = IQUIC() - - self.contextual_data = ['tls','http','http_server','dhcp'] - - self.flow_parsers = [] - self.experimental = False - if experimental == True: - self.experimental = True - from pmercury.protocols.ssh import SSH - from pmercury.protocols.tls_decrypt import TLS_Decrypt - - self.parsers['ssh'] = SSH() - self.flow_parsers.extend([('ssh', SSH())]) - if sslkeylog != None: - self.parsers['tls_decrypt'] = TLS_Decrypt(sslkeylog) - self.flow_parsers.append(('tls_decrypt', TLS_Decrypt(sslkeylog))) - - if endpoint == True: - from pmercury.utils.endpoint import Endpoints - self.endpoint_model = Endpoints() - - # data - self.flow_cache = {} - - - def process(self, input_files): - if len(input_files) == 0: - print('error: need a pcap/interface') - return 1 - - for input_file in input_files: - if '.pcap' in input_file: - if not os.path.exists(input_file): - print('error: file does not exist') - return 1 - self.process_pcap(input_file) - else: - self.process_capture(input_file) - - - def process_pcap(self, pcap_file): - p = pcap.pcap(pcap_file) -# p.setfilter('ip proto 6 or ip6 proto 6 or ip proto 17 or ip6 proto 17') - p.dispatch(-1, self.process_packet) - - if self.group: - self.write_flows(active=False) - if self.endpoint: - self.endpoint_model.write_all(self.endpoint_file_pointer) - - - def process_capture(self, iface): - import signal - def signal_handler(signal, frame): - if self.group: - self.write_flows(active=False) - sys.exit(0) - signal.signal(signal.SIGINT, signal_handler) - - p = pcap.pcap(iface) -# p.setfilter('ip proto 6 or ip6 proto 6 or ip proto 17 or ip6 proto 17') - flow_timer = time.time() - while 1: - p.dispatch(-1, self.process_packet) - - if self.group and time.time()-flow_timer > self.FLOW_UPDATE: - flow_timer = time.time() - self.write_flows(active=True) - - nrecv, ndrop, nifdrop = p.stats() - print('nrecv: % 12i, ndrop: % 12i, nifdrop: % 12i' % (nrecv, ndrop, nifdrop)) - if self.group: - self.write_flows(active=False) - - - def process_packet(self, ts, buf): - flow = pkt_proc(ts, buf) - - if flow != None: - if self.fast_path: - self.write_record(flow) - return - - if flow['fingerprints'] != {}: - fp_type = next(iter(flow['fingerprints'])) - if self.human_readable: - desc_ = self.parsers[fp_type].get_human_readable(flow['fingerprints'][fp_type]) - if desc_ != None: - if 'readable' not in flow: - flow['readable'] = {} - flow['readable'][fp_type] = desc_ - if fp_type == 'tls_server': - if 'tls' in flow and 'server_certs' in flow['tls']: - desc_ = self.parsers['server_certs'].get_human_readable(flow['tls']['server_certs']) - if desc_ != None: - if 'readable' not in flow: - flow['readable'] = {} - flow['readable']['server_certs'] = desc_ - if self.analyze: - context = None - if fp_type in flow: - context = flow[fp_type] - proc_info = self.parsers[fp_type].proc_identify(flow['fingerprints'][fp_type], context, - flow['dst_ip'], flow['dst_port'], self.num_procs) - if proc_info != None: - flow['analysis'] = proc_info - elif 'tls' in flow and 'server_certs' in flow['tls']: - desc_ = self.parsers['server_certs'].get_human_readable(flow['tls']['server_certs']) - if desc_ != None: - if 'readable' not in flow: - flow['readable'] = {} - flow['readable']['server_certs'] = desc_ - - if self.group: - self.update_flow_cache(flow) - else: - self.write_record(flow) - - if self.endpoint: - self.endpoint_model.update(flow) - - if self.experimental: - self.process_packet_flow(ts, buf) - - - def process_packet_flow(self, ts, buf): - if buf[12] == 0x08 and buf[13] == 0x00: # IPv4 - ip_type = 'ipv4' - ip_length = 20 - ip_offset = 14 - protocol = buf[23] - elif buf[12] == 0x86 and buf[13] == 0xdd: # IPv6 - ip_type = 'ipv6' - ip_length = 40 - ip_offset = 14 - protocol = buf[20] - elif buf[14] == 0x08 and buf[15] == 0x00: # IPv4 (hack for linux cooked capture) - ip_type = 'ipv4' - ip_length = 20 - ip_offset = 16 - protocol = buf[25] - else: # currently skip other types - return -1 - - data_len = len(buf) - if protocol == 6: - tcp_offset = ip_offset+ip_length - if tcp_offset+20 > data_len: - return -1 - tcp_length = (buf[tcp_offset+12] >> 0x04)*4 - app_offset = tcp_offset + tcp_length - - if self.experimental: - for _,fparser_ in self.flow_parsers: - ffp_type, ffp_str_, fcontext_ = fparser_.fingerprint(buf, ip_offset, tcp_offset, app_offset, - ip_type, ip_length, data_len) - if ffp_str_ != None: - self.process_result(buf, ffp_type, ffp_str_, fcontext_, tcp_offset, - ip_type, ip_offset, ip_length, protocol, ts) - - - def process_result(self, buf, fp_type, fp_str_, context_, tcp_offset, ip_type, ip_offset, ip_length, protocol, ts): - src_port = int.from_bytes(buf[tcp_offset:tcp_offset+2], byteorder='big') - dst_port = int.from_bytes(buf[tcp_offset+2:tcp_offset+4], byteorder='big') - if ip_type == 'ipv4': - o_ = ip_offset+ip_length-8 - src_ip = inet_ntop(AF_INET, buf[o_:o_+4]) - o_ += 4 - dst_ip = inet_ntop(AF_INET, buf[o_:o_+4]) - else: - o_ = ip_offset+ip_length-32 - src_ip = inet_ntop(AF_INET6, buf[o_:o_+16]) - o_ += 16 - dst_ip = inet_ntop(AF_INET6, buf[o_:o_+16]) - - flow = {'src_ip':src_ip, - 'dst_ip':dst_ip, - 'src_port':src_port, - 'dst_port':dst_port, - 'protocol':protocol, - 'event_start':ts, - 'fingerprints':{fp_type: fp_str_}} - if context_ != None: - for x_ in context_: - if x_['data'] != None: - if fp_type not in flow: - flow[fp_type] = {} - flow[fp_type][x_['name']] = x_['data'] - if self.human_readable: - hr_fp_type = fp_type - if 'tls_decrypt' in hr_fp_type: - hr_fp_type = 'tls_decrypt' - desc_ = self.parsers[hr_fp_type].get_human_readable(fp_str_) - if desc_ != None: - if 'readable' not in flow: - flow['readable'] = {} - flow['readable'][fp_type] = desc_ - if self.analyze: - if fp_type in self.parsers: - proc_info = self.parsers[fp_type].proc_identify(fp_str_, context_, dst_ip, dst_port, self.num_procs) - if proc_info != None: - flow['analysis'] = proc_info - - if self.group: - self.update_flow_cache(flow) - else: - self.write_record(flow) - - - def process_csv(self, fp_type, fp_str, src_ip, dst_ip, src_port, dst_port, protocol, ts, context, debug=None): - flow = {'src_ip':src_ip, - 'dst_ip':dst_ip, - 'src_port':src_port, - 'dst_port':dst_port, - 'protocol':protocol, - 'event_start':ts, - 'fingerprints':{fp_type: fp_str}} - - if context != None: - flow[fp_type] = {} - for k in context: - flow[fp_type][k] = context[k] - - if self.human_readable: - desc_ = self.parsers[fp_type].get_human_readable(flow['fingerprints'][fp_type]) - if desc_ != None: - if 'readable' not in flow: - flow['readable'] = {} - flow['readable'][fp_type] = desc_ - - if self.analyze: - endpoint = None - if self.endpoint: - endpoint = self.endpoint_model.get_endpoint(src_ip) - proc_info = self.parsers[fp_type].proc_identify(flow['fingerprints'][fp_type], context, flow['dst_ip'], - flow['dst_port'], self.num_procs, endpoint, False, debug) - if proc_info != None: - flow['analysis'] = proc_info - - os_info = self.parsers[fp_type].os_identify(flow['fingerprints'][fp_type], self.num_procs) - if os_info != None: - if 'analysis' not in flow: - flow['analysis'] = {} - flow['analysis']['os_info'] = os_info - - if self.endpoint: - self.endpoint_model.update(flow) - - return flow - - - def update_flow_cache(self, flow): - t_flow_key, t_r_flow_key = self.get_flow_keys(flow) - if t_flow_key in self.flow_cache: - flow_key = t_flow_key - elif t_r_flow_key in self.flow_cache: - flow_key = t_r_flow_key - else: - flow_key = t_flow_key - self.init_flow_cache(flow, flow_key) - - # update end time - self.flow_cache[flow_key]['event_end'] = flow['event_start'] - - # add fingerprint - for k in flow['fingerprints']: - packet_fp = {} - packet_fp['event_start'] = flow['event_start'] - packet_fp[k] = flow['fingerprints'][k] - if k in flow: - if k not in self.flow_cache[flow_key]: - self.flow_cache[flow_key][k] = {} - for k1 in flow[k]: - self.flow_cache[flow_key][k][k1] = flow[k][k1] - if 'analysis' in flow: - packet_fp['analysis'] = flow['analysis'] - self.flow_cache[flow_key]['fingerprints'].append(packet_fp) - - # add contextual data - for k in self.contextual_data: - if k in flow: - if k not in self.flow_cache[flow_key]: - self.flow_cache[flow_key][k] = {} - for k1 in flow[k]: - self.flow_cache[flow_key][k][k1] = flow[k][k1] - - if 'readable' in flow: - if 'readable' not in self.flow_cache[flow_key]: - self.flow_cache[flow_key]['readable'] = {} - for k in flow['readable']: - self.flow_cache[flow_key]['readable'][k] = flow['readable'][k] - - - - - def init_flow_cache(self, flow, flow_key): - self.flow_cache[flow_key] = {} - self.flow_cache[flow_key]['src_ip'] = flow['src_ip'] - self.flow_cache[flow_key]['dst_ip'] = flow['dst_ip'] - self.flow_cache[flow_key]['src_port'] = flow['src_port'] - self.flow_cache[flow_key]['dst_port'] = flow['dst_port'] - self.flow_cache[flow_key]['protocol'] = flow['protocol'] - self.flow_cache[flow_key]['event_start'] = flow['event_start'] - self.flow_cache[flow_key]['event_end'] = flow['event_start'] - self.flow_cache[flow_key]['fingerprints'] = [] - - - def get_flow_keys(self, flow): - src_ip = flow['src_ip'] - dst_ip = flow['dst_ip'] - src_port = str(flow['src_port']) - dst_port = str(flow['dst_port']) - protocol = str(flow['protocol']) - - fk = src_ip + ':' + dst_ip + ':' + src_port + ':' + dst_port + ':' + protocol - r_fk = dst_ip + ':' + src_ip + ':' + dst_port + ':' + src_port + ':' + protocol - - return fk, r_fk - - - def lookup_fingerprint_string(self, fp_str): - for protocol_type in self.parsers: - if not hasattr(self.parsers[protocol_type], 'get_database_entry'): - continue - fp_ = self.parsers[protocol_type].get_database_entry(fp_str, None) - if fp_ != None: - self.write_record(fp_) - - - def get_database_entry(self, fp_str, fp_type): - if not hasattr(self.parsers[fp_type], 'get_database_entry'): - return None - return self.parsers[fp_type].get_database_entry(fp_str, None) - - - def write_record(self, flow_repr): - if 'fingerprints' in flow_repr and flow_repr['fingerprints'] == {}: - del flow_repr['fingerprints'] - - try: - self.out_file_pointer.write('%s\n' % json.dumps(flow_repr)) - except: - print('error: flow incorrectly formatted:') - print(flow_repr) - print() - - - def write_flows(self, active=False): - curtime = time.time() - flow_keys = [k for k in self.flow_cache.keys() - if not active or - ((curtime - self.flow_cache[k]['event_start']) > self.FLOW_TIMEOUT)] - - for k in flow_keys: - self.flow_cache[k]['event_start'] = self.flow_cache[k]['event_start'] - self.flow_cache[k]['event_end'] = self.flow_cache[k]['event_end'] - self.write_record(self.flow_cache[k]) - del self.flow_cache[k] - - - def close_files(self): - if self.out_file_pointer != None and self.out_file_pointer != sys.stdout: - self.out_file_pointer.close() - if self.endpoint and self.endpoint_file_pointer != None: - self.endpoint_file_pointer.close() - - -def main(): - start = time.time() - - parser = optparse.OptionParser() - - parser.add_option('-c','--capture',action='store',dest='capture_interface', - help='live packet capture',default=None) - parser.add_option('-r','--read',action='store',dest='pcap_file', - help='read packets from file',default=None) - parser.add_option('-d','--fp_db',action='store',dest='fp_db', - help='location of fingerprint database',default='resources/fingerprint_db.json.gz') - parser.add_option('-f','--fingerprint',action='store',dest='output', - help='write fingerprints to file',default=None) - parser.add_option('-l','--lookup',action='store',dest='lookup', - help='lookup fingerprint string ',default=None) - parser.add_option('-a','--analysis',action='store_true',dest='analyze', - help='perform process identification',default=False) - parser.add_option('-w','--human-readable',action='store_true',dest='human_readable', - help='return human readable fingerprint information',default=False) - parser.add_option('-e','--endpoint',action='store_true',dest='endpoint', - help='enable endpoint modeling',default=False) - parser.add_option('-x','--experimental',action='store_true',dest='experimental', - help='turns on all experimental features',default=False) - parser.add_option('-g','--group-flows',action='store_true',dest='group', - help='aggregate packet-based fingerprints to flow-based',default=False) - parser.add_option('-n','--num-procs',action='store',dest='num_procs',type='int', - help='return the top-n most probable processes',default=0) - parser.add_option('-s','--sslkeylogfile',action='store',dest='sslkeylog', - help='filename of sslkeylog output for decryption',default=None) - - options, args = parser.parse_args() - - input_files = [] - if options.pcap_file != None: - input_files.append(options.pcap_file) - for x in args: - if '.pcap' in x: - input_files.append(x) - if options.capture_interface != None: - input_files.append(options.capture_interface) - - output = options.output - - fingerprinter = Fingerprinter(options.fp_db, output, options.analyze, - options.num_procs, options.human_readable, options.group, - options.endpoint, options.experimental, options.sslkeylog) - - if options.lookup != None: - fingerprinter.lookup_fingerprint_string(options.lookup) - elif len(input_files) > 0: - fingerprinter.process(input_files) - else: - print('error: need a pcap/interface or fingerprint string for lookup') - - fingerprinter.close_files() - - -if __name__ == '__main__': - sys.exit(main()) diff --git a/python/pmercury/protocols/__init__.py b/python/pmercury/protocols/__init__.py deleted file mode 100644 index e69de29b..00000000 diff --git a/python/pmercury/protocols/dhcp.py b/python/pmercury/protocols/dhcp.py deleted file mode 100644 index 7502f205..00000000 --- a/python/pmercury/protocols/dhcp.py +++ /dev/null @@ -1,75 +0,0 @@ -""" - Copyright (c) 2019 Cisco Systems, Inc. All rights reserved. - License at https://github.com/cisco/mercury/blob/master/LICENSE -""" - -import os -import sys -import functools -from socket import AF_INET, AF_INET6, inet_ntop - -sys.path.append(os.path.dirname(os.path.abspath(__file__))) -sys.path.append(os.path.dirname(os.path.abspath(__file__))+'/../') -from pmercury.protocols.protocol import Protocol - -MAX_CACHED_RESULTS = 2**24 - -class DHCP(Protocol): - - def __init__(self, fp_database=None, config=None): - # populate fingerprint databases - self.fp_db = None - - DHCP.static_data = set([0x35, 0x37]) - DHCP.contextual_data = {0x03: ('router',lambda x: inet_ntop(AF_INET, x)), - 0x06: ('domain_name_server',lambda x: inet_ntop(AF_INET, x)), - 0x0c: ('hostname',lambda x: x.decode()), - 0x0f: ('domain_name',lambda x: x.decode()), - 0x32: ('requested_ip',lambda x: inet_ntop(AF_INET, x)), - 0x3c: ('vendor_class_id',lambda x: x.decode())} - - @staticmethod - def proto_identify(data, offset, data_len): - if data_len < 230: - return False - if (data[offset] != 0x01 or - data[offset+236] != 0x63 or - data[offset+237] != 0x82 or - data[offset+238] != 0x53 or - data[offset+239] != 0x63): - return False - return True - - - @staticmethod - def fingerprint(data, offset, data_len): - hardware_address_length = data[offset + 2] - - cmac = data[offset+28:offset+28+hardware_address_length].hex() - context = [{'name': 'client_mac_address', 'data': '%s' % ':'.join(a+b for a,b in zip(cmac[::2], cmac[1::2]))}] - offset += 240 - fp_ = '(' - while offset < data_len: - kind = data[offset] - if kind == 0xff or kind == 0x00: # End / Padding - fp_ += '(%02x)' % kind - break - - length = data[offset+1] - if kind in DHCP.contextual_data: - name_, transform_ = DHCP.contextual_data[kind] - context.append({'name':name_, - 'data':transform_(data[offset+2:offset+2+length])}) - if offset+length+2 >= data_len: - return None - if kind not in DHCP.static_data: - fp_ += '(%02x)' % kind - offset += length+2 - continue - - fp_ += '(%s)' % data[offset:offset+2+length].hex() - offset += length+2 - fp_ += ')' - - return fp_, context - diff --git a/python/pmercury/protocols/dtls.py b/python/pmercury/protocols/dtls.py deleted file mode 100644 index 8b995dc4..00000000 --- a/python/pmercury/protocols/dtls.py +++ /dev/null @@ -1,130 +0,0 @@ -""" - Copyright (c) 2019 Cisco Systems, Inc. All rights reserved. - License at https://github.com/cisco/mercury/blob/master/LICENSE -""" - -import os -import sys -import json -import operator -import functools -from sys import path -from socket import htons - -sys.path.append(os.path.dirname(os.path.abspath(__file__))) -sys.path.append(os.path.dirname(os.path.abspath(__file__))+'/../') -from pmercury.utils.tls_utils import * - - -MAX_CACHED_RESULTS = 2**24 - - -class DTLS(): - def __init__(self, fp_database=None, config=None): - self.fp_db = None - - - @staticmethod - def proto_identify(data, offset, data_len): - if data_len-offset < 27: - return False - if (data[offset] == 22 and - data[offset+1] == 254 and - data[offset+2] >= 253 and - data[offset+13] == 1 and - data[offset+25] == 254 and - data[offset+26] >= 253): - return True - return False - - - @staticmethod - def fingerprint(data, offset, data_len): - offset += 13 - - # extract handshake version - c = [f'({data[offset+12]:02x}{data[offset+13]:02x})'] - - # skip header/client_random - offset += 46 - - # parse/skip session_id - session_id_length = data[offset] - offset += 1 + session_id_length - if offset >= data_len: - return None, None - - # parse/skip cookie - cookie_length = data[offset] - offset += 1 + cookie_length - if offset >= data_len: - return None, None - - # parse/extract/skip cipher_suites length - cipher_suites_length = int.from_bytes(data[offset:offset+2], byteorder='big') - offset += 2 - if offset >= data_len: - return None, None - - # parse/extract/skip cipher_suites - cs_ = degrease_type_code(data, offset) - if cipher_suites_length > 2: - cs_ += data[offset+2:offset+cipher_suites_length].hex() - c.append('(%s)' % cs_) - offset += cipher_suites_length - if offset >= data_len: - c.append('()') - return ''.join(c), None - - # parse/skip compression method - compression_methods_length = data[offset] - offset += 1 + compression_methods_length - if offset >= data_len: - c.append('()') - return ''.join(c), None - - # parse/skip extensions length - ext_total_len = int.from_bytes(data[offset:offset+2], byteorder='big') - offset += 2 - if offset >= data_len: - c.append('()') - return ''.join(c), None - - # parse/extract/skip extension type/length/values - c.append('(') - server_name = None - context = None - while ext_total_len > 0: - if offset >= data_len: - c.append(')') - return ''.join(c), server_name - - # extract server name for process/malware identification - if int.from_bytes(data[offset:offset+2], byteorder='big') == 0: - server_name = extract_server_name(data, offset+2, data_len) - context = [{'name':'server_name', 'data':server_name}] - - tmp_fp_ext, offset, ext_len = parse_extension(data, offset) - if ext_len+4 > ext_total_len: - c.append(')') - return ''.join(c), server_name - c.append('(%s)' % tmp_fp_ext) - - ext_total_len -= 4 + ext_len - c.append(')') - - return ''.join(c), context - - - @functools.lru_cache(maxsize=MAX_CACHED_RESULTS) - def get_database_entry(self, fp_str, approx_fp_str): - return None - - - def get_human_readable(self, fp_str_): - return None - - - def proc_identify(self, fp_str_, context_, dst_ip, dst_port, list_procs=5): - return None - diff --git a/python/pmercury/protocols/dtls_server.py b/python/pmercury/protocols/dtls_server.py deleted file mode 100644 index 5c5c5a78..00000000 --- a/python/pmercury/protocols/dtls_server.py +++ /dev/null @@ -1,102 +0,0 @@ -""" - Copyright (c) 2019 Cisco Systems, Inc. All rights reserved. - License at https://github.com/cisco/mercury/blob/master/LICENSE -""" - -import os -import sys -import functools - -sys.path.append(os.path.dirname(os.path.abspath(__file__))) -sys.path.append(os.path.dirname(os.path.abspath(__file__))+'/../') -from pmercury.utils.tls_utils import * -from pmercury.utils.tls_constants import * -from pmercury.protocols.protocol import Protocol - - - -MAX_CACHED_RESULTS = 2**24 - - -class DTLS_Server(Protocol): - - def __init__(self, fp_database=None, config=None): - # populate fingerprint databases - self.fp_db = {} - - - @staticmethod - def proto_identify(data, offset, data_len): - if data_len-offset < 27: - return False - if (data[offset] == 22 and - data[offset+1] == 254 and - data[offset+2] >= 253 and - data[offset+13] == 2 and - data[offset+25] == 254 and - data[offset+26] >= 253): - return True - return False - - - @staticmethod - def fingerprint(data, offset, data_len): - offset += 13 - - # extract handshake version - fp_ = f'({data[offset+12]:02x}{data[offset+13]:02x})' - - # skip header/server_random - offset += 46 - - # parse/skip session_id - session_id_length = data[offset] - offset += 1 + session_id_length - if offset >= data_len: - return None, None - - # parse selected_cipher_suite - fp_ += f'({data[offset]:02x}{data[offset+1]:02x})' - offset += 2 - if offset >= data_len: - return fp_+'()', None - - # parse/skip compression method - compression_methods_length = data[offset] - offset += 1 + compression_methods_length - if offset >= data_len: - return fp_+'()', None - - # parse/skip extensions length - ext_total_len = int.from_bytes(data[offset:offset+2], byteorder='big') - offset += 2 - if offset >= data_len: - return fp_+'()', None - - # parse/extract/skip extension type/length/values - fp_ += '(' - while ext_total_len > 0: - if offset >= data_len: - return fp_+')', None - - tmp_fp_ext, offset, ext_len = parse_extension(data, offset) - fp_ += '(%s)' % tmp_fp_ext - - ext_total_len -= 4 + ext_len - fp_ += ')' - - return fp_, None - - - @functools.lru_cache(maxsize=MAX_CACHED_RESULTS) - def get_database_entry(self, fp_str, approx_fp_str): - return None - - - def get_human_readable(self, fp_str_): - return None - - - def proc_identify(self, fp_str_, context_, dst_ip, dst_port, list_procs=5): - return None - diff --git a/python/pmercury/protocols/http.py b/python/pmercury/protocols/http.py deleted file mode 100644 index 1401a8a3..00000000 --- a/python/pmercury/protocols/http.py +++ /dev/null @@ -1,234 +0,0 @@ -""" - Copyright (c) 2019 Cisco Systems, Inc. All rights reserved. - License at https://github.com/cisco/mercury/blob/master/LICENSE -""" - -import os -import ast -import sys - -sys.path.append(os.path.dirname(os.path.abspath(__file__))) -sys.path.append(os.path.dirname(os.path.abspath(__file__))+'/../') -from pmercury.protocols.protocol import Protocol - - -class HTTP(Protocol): - - def __init__(self, fp_database=None, config=None): - # populate fingerprint databases - self.fp_db = {} - - # configuration - HTTP.all_headers = False - HTTP.all_headers_and_data = False - if config == None or 'http' not in config: - HTTP.static_names = set([b'accept-charset',b'accept-language',b'authorization',b'cache-control',b'host', - b'if-modified-since',b'keep-alive',b'user-agent',b'x-flash-version', - b'x-p2p-peerdist']) - HTTP.static_names_and_values = set([b'upgrade-insecure-requests',b'dnt',b'connection', - b'x-requested-with',b'accept-encoding',b'accept',b'dpr']) - HTTP.headers_data = [0,2] - HTTP.contextual_data = {b'user-agent':'user_agent',b'host':'host',b'x-forwarded-for':'x_forwarded_for',b'uri':'uri'} - else: - HTTP.static_names = set([]) - HTTP.static_names_and_values = set([]) - HTTP.headers_data = [] - HTTP.contextual_data = {} - if 'static_names' in config['http']: - if config['http']['static_names'] == ['*']: - HTTP.all_headers = True - HTTP.static_names = set(map(lambda x: x.encode(), config['http']['static_names'])) - if 'static_names_and_values' in config['http']: - if config['http']['static_names_and_values'] == ['*']: - HTTP.all_headers_and_data = True - HTTP.static_names_and_values = set(map(lambda x: x.encode(), config['http']['static_names_and_values'])) - if 'preamble' in config['http']: - if 'method' in config['http']['preamble']: - HTTP.headers_data.append(0) - if 'uri' in config['http']['preamble']: - HTTP.headers_data.append(1) - if 'version' in config['http']['preamble']: - HTTP.headers_data.append(2) - if '*' in config['http']['preamble']: - HTTP.headers_data = [0,1,2] - if 'context' in config['http']: - for c in config['http']['context']: - HTTP.contextual_data[c.encode()] = c.lower().replace('-','_') - - - @staticmethod - def proto_identify(data, offset, data_len): - if data_len-offset < 16: - return False - if (data[offset] == 71 and - data[offset+1] == 69 and - data[offset+2] == 84 and - data[offset+3] == 32): - return True - return False - - - @staticmethod - def fingerprint(data, offset, data_len): - t_ = data[offset:].split(b'\x0d\x0a', 1) - request = t_[0].split() - if len(request) < 3: - return None, None - - c = [] - for rh in HTTP.headers_data: - c.append('(%s)' % request[rh].hex()) - - if len(t_) == 1: - return ''.join(c), None - - http_ah = HTTP.all_headers - http_ahd = HTTP.all_headers_and_data - http_sn = HTTP.static_names - http_snv = HTTP.static_names_and_values - http_ctx = HTTP.contextual_data - context = [] - if b'uri' in http_ctx: - try: - context.append({'name':'uri', 'data':request[1].decode()}) - except UnicodeDecodeError: - context.append({'name':'uri', 'data':request[1].hex()}) - headers = t_[1].split(b'\x0d\x0a') - for h_ in headers: - if h_ == b'': - break - t0_ = h_.split(b'\x3a\x20',1)[0] - t0_lower = t0_.lower() - - h_c = '' - if http_ahd: - h_c = h_.hex() - elif t0_lower in http_snv: - h_c = h_.hex() - elif t0_lower in http_sn: - h_c = t0_.hex() - elif http_ah: - h_c = t0_.hex() - - if h_c != '': - c.append('(%s)' % h_c) - if t0_lower in http_ctx: - if b'\x3a\x20' in h_: - try: - context.append({'name':http_ctx[t0_lower], 'data':h_.split(b'\x3a\x20',1)[1].decode()}) - except UnicodeDecodeError: - context.append({'name':http_ctx[t0_lower], 'data':h_.split(b'\x3a\x20',1)[1].hex()}) - else: - context.append({'name':http_ctx[t0_lower], 'data':''}) - - return ''.join(c), context - - - @staticmethod - def fingerprint_old(data, offset, data_len): - t_ = data[offset:].split(b'\x0d\x0a', 1) - request = t_[0].split() - if len(request) < 3: - return None, None - - c = [] - for rh in HTTP.headers_data: - c.append('(%s)' % request[rh].hex()) - - if len(t_) == 1: - return ''.join(c), None - - http_ah = HTTP.all_headers - http_cish = HTTP.case_insensitive_static_headers - http_cssh = HTTP.case_sensitive_static_headers - http_ctx = HTTP.contextual_data - headers = t_[1].split(b'\x0d\x0a') - context = [] - for h_ in headers: - if h_ == b'': - break - t0_ = h_.split(b'\x3a\x20',1)[0] - t0_lower = t0_.lower() - - - if http_ah: - h_c = h_.hex() - elif t0_lower in http_cish: - h_c = h_.hex() - elif t0_ in http_cssh: - h_c = h_.hex() - else: - h_c = t0_.hex() - - c.append('(%s)' % h_c) - if t0_lower in http_ctx: - if b'\x3a\x20' in h_: - try: - context.append({'name':http_ctx[t0_lower], 'data':h_.split(b'\x3a\x20',1)[1].decode()}) - except UnicodeDecodeError: - context.append({'name':http_ctx[t0_lower], 'data':h_.split(b'\x3a\x20',1)[1].hex()}) - else: - context.append({'name':http_ctx[t0_lower], 'data':''}) - - return ''.join(c), context - - - def normalize_str_repr(self, str_repr): - fp_str = str_repr.replace(')(','","').replace('(','["').replace(')','"]') - t_ = ast.literal_eval(fp_str) - - c = [f'({t_[0]})', f'({t_[1]})'] - http_ah = HTTP.all_headers - http_ahd = HTTP.all_headers_and_data - http_sn = HTTP.static_names - http_snv = HTTP.static_names_and_values - http_ctx = HTTP.contextual_data - for h in t_[2:]: - b_str = bytes.fromhex(h) - t0_ = b_str.split(b'\x3a\x20',1)[0] - t0_lower = t0_.lower() - - h_c = '' - if http_ahd: - h_c = b_str.hex() - elif t0_lower in http_snv: - h_c = b_str.hex() - elif t0_lower in http_sn: - h_c = t0_.hex() - elif http_ah: - h_c = t0_.hex() - - if h_c != '': - c.append(f'({h_c})') - - return ''.join(c) - - - - def get_human_readable(self, fp_str_): - t_ = [bytes.fromhex(x[1:]) for x in fp_str_.split(')')[:-1]] - try: - fp_h = [{'method':t_[0].decode()},{'version':t_[1].decode()}] - except: - fp_h = [{'method':t_[0].hex()},{'version':t_[1].hex()}] - for i in range(2, len(t_)-1): - field = t_[i].split(b': ',1) - if len(field) == 2: - try: - fp_h.append({field[0].decode(): field[1].decode()}) - except: - fp_h.append({field[0].hex(): field[1].hex()}) - else: - try: - fp_h.append({field[0].decode(): ''}) - except: - fp_h.append({field[0].hex(): ''}) - return fp_h - - - def proc_identify(self, fp_str_, context_, dst_ip, dst_port, list_procs=0, endpoint=None, approx=True, debug=None): - return None - - - def os_identify(self, fp_str_, list_oses=0): - return None diff --git a/python/pmercury/protocols/http2.py b/python/pmercury/protocols/http2.py deleted file mode 100644 index 490316d9..00000000 --- a/python/pmercury/protocols/http2.py +++ /dev/null @@ -1,251 +0,0 @@ -""" - Copyright (c) 2019 Cisco Systems, Inc. All rights reserved. - License at https://github.com/cisco/mercury/blob/master/LICENSE -""" - -from collections import OrderedDict -from binascii import hexlify, unhexlify - -# http/2.0 imports -from hpack import Decoder - -# constants -from utils.http2_constants import * - -class HTTP2: - def __init__(self): - self.h2_decoder = {} - self.data_cache = {} - - def fingerprint(self, data, flow_key, mode): - flow_key += mode - offset = 0 - data_offset = None - - if flow_key not in self.h2_decoder: - self.h2_decoder[flow_key] = Decoder() - self.h2_decoder[flow_key].max_allowed_table_size = 65536 - - - if flow_key in self.data_cache and self.data_cache[flow_key][2]: - if self.data_cache[flow_key][0] + len(data) >= self.data_cache[flow_key][1]: - data_offset = self.data_cache[flow_key][1] - self.data_cache[flow_key][0] - self.data_cache[flow_key] = [0,0,False] - else: - self.data_cache[flow_key][0] += len(data) - data_offset = None - - offset_ = self.check_magic(data) - offset += offset_ - - http2 = self.parse_iterate(data, offset, flow_key) - if data_offset and http2 != None: - http2 = self.parse_iterate(data, data_offset, flow_key) - - return http2 - - def get_human_readable(self, fp_str_): - t_ = [bytes.fromhex(x[1:]) for x in fp_str_.split(')')[:-1]] - fp_h = [] - for i in range(len(t_)): - field = t_[i].split(b': ',1) - fp_h.append({field[0].decode(): field[1].decode()}) - return fp_h - - def parse_iterate(self, data, offset, flow_key): - headers = None - # go through http/2 messages - while offset < len(data): - msg = OrderedDict({}) - tmp_offset = offset - - # robustness check - if len(data[offset:]) < 9: - break - - # parse frame headers - tmp_type = int(hexlify(data[offset+3:offset+4]),16) - msg['length'] = int(hexlify(data[offset:offset+3]),16) - msg['stream_identifier'] = int(hexlify(data[offset+5:offset+9]),16) - - # robustness against retransmissions, etc. - if tmp_type not in HTTP2_MESSAGE_TYPES or \ - msg['stream_identifier'] > 1000 or \ - msg['length'] > 1000000: - break - - # success - msg['type'] = HTTP2_MESSAGE_TYPES[tmp_type] - self.parse_flags(data[offset+4], msg, msg['type']) - offset += 9 - - if msg['length'] > len(data[offset:]): - self.data_cache[flow_key] = [len(data[offset:]),msg['length'],True] - - # Parse frame types - if msg['type'] == 'DATA': - self.parse_data(msg, data, offset) - elif msg['type'] == 'HEADERS': - headers = self.parse_headers(msg, data, offset, flow_key) - elif msg['type'] == 'PRIORITY': - self.parse_priority(msg, data, offset) - elif msg['type'] == 'RST_STREAM': - self.parse_rst_stream(msg, data, offset) - elif msg['type'] == 'SETTINGS': - self.parse_settings(msg, data, offset) - elif msg['type'] == 'PING': - self.parse_ping(msg, data, offset) - elif msg['type'] == 'GOAWAY': - self.parse_goaway(msg, data, offset) - elif msg['type'] == 'WINDOW_UPDATE': - self.parse_window_update(msg, data, offset) - - offset += msg['length'] - - return headers - - - def parse_headers(self, msg, data, offset, flow_key): - # parse data associated with flags - tmp_offset = 0 - if 'flags' in msg: - if 'Padded' in msg['flags']: - msg['pad_length'] = data[offset] - offset += 1 - tmp_offset -= 1 - if 'Priority' in msg['flags']: - tmp_dependency = int(hexlify(data[offset:offset+4]),16) - msg['exclusive_stream_dependency'] = tmp_dependency & int('80000000',16) - msg['depends_on_stream'] = tmp_dependency & int('7FFFFFFF',16) - offset += 4 - msg['weight'] = int(hexlify(data[offset:offset+1]),16) + 1 - offset += 1 - tmp_offset -= 5 - - # get just the data associated with the headers - if 'pad_length' in msg: - header_data = data[offset:msg['length']+offset+tmp_offset-msg['pad_length']] - else: - header_data = data[offset:msg['length']+offset+tmp_offset] - - # use hpack to parse headers - try: - headers = self.h2_decoder[flow_key].decode(header_data) - msg['headers'] = [] - fp_str = b'' - for (header, value) in headers: - fp_str += b'(' + hexlify(bytes(header,'utf-8')) +\ - hexlify(b': ') + hexlify(bytes(value,'utf-8')) + b')' - msg['headers'].append({header: value}) - return fp_str.decode() - except: - msg['status'] = 'failed to parse headers' - msg['data'] = hexlify(header_data) - - - def parse_data(self, msg, data, offset): - # parse data associated with flags - if 'flags' in msg and 'Padded' in msg['flags']: - msg['pad_length'] = data[offset] - offset += 1 - - # parse body and store it as hex - msg['body'] = hexlify(data[offset:]) - - def parse_priority(self, msg, data, offset): - if len(data[offset:]) < msg['length']: - msg['priority'] = 'failure: no data' - return - - # parse exclusive - msg['exclusive'] = int(hexlify(data[offset:offset+4]),16) & int('80000000',16) - - # parse last stream id - msg['stream_dependency'] = (int(hexlify(data[offset:offset+4]),16) << 1) >> 1 - - # parse weight - msg['weight'] = data[offset+4] - - def parse_rst_stream(self, msg, data, offset): - # parse error code - error_code = int(hexlify(data[offset:offset+4]),16) - if error_code in HTTP2_ERROR_CODES: - error_code = HTTP2_ERROR_CODES[error_code] - else: - error_code = 'unknown_error_code_%i' % error_code - msg['error_code'] = error_code - - def parse_ping(self, msg, data, offset): - # parse 8-bytes of PING data - # This data can be anything, but typically is all zeros - msg['data'] = hexlify(data[offset:offset+8]) - - def parse_settings(self, msg, data, offset): - if len(data[offset:]) < msg['length']: - msg['settings'] = 'failure: no data' - return - - msg['settings'] = OrderedDict({}) - # settings format: 2 byte identifier, 4 byte value - for i in range(0,msg['length'],6): - s_type = int(hexlify(data[offset+i:offset+i+2]),16) - if s_type in HTTP2_SETTINGS_TYPES: - s_type = HTTP2_SETTINGS_TYPES[s_type] - else: - s_type = 'unknown_setting_%i' % s_type - s_value = int(hexlify(data[offset+i+2:offset+i+6]),16) - msg['settings'][s_type] = s_value - - def parse_goaway(self, msg, data, offset): - # parse last stream id - msg['last_stream_id'] = (int(hexlify(data[offset:offset+4]),16) << 1) >> 1 - - # parse error code - error_code = int(hexlify(data[offset+4:offset+8]),16) - if error_code in HTTP2_ERROR_CODES: - error_code = HTTP2_ERROR_CODES[error_code] - else: - error_code = 'unknown_error_code_%i' % error_code - msg['error_code'] = error_code - - debug_data = hexlify(data[offset+8:offset+msg['length']]) - if len(debug_data) > 0: - msg['debug_data'] = debug_data - - def parse_window_update(self, msg, data, offset): - # parse the 31-bit window size increment - if len(data[offset:]) < 4: - msg['window_size_increment'] = 'failure: no data' - return - - msg['window_size_increment'] = (int(hexlify(data[offset:offset+4]),16) << 1) >> 1 - - def parse_flags(self, data, msg, frame_type): - data = data - if data == 0: - return - - msg['flags'] = OrderedDict({}) - - if frame_type == 'SETTINGS' or frame_type == 'PING': - if data & 1: - msg['flags']['Ack'] = True - else: - if data & 1: - msg['flags']['End_Stream'] = True - - if data & 4: - msg['flags']['End_Headers'] = True - if data & 8: - msg['flags']['Padded'] = True - if data & 32: - msg['flags']['Priority'] = True - - def check_magic(self, data): - offset = 0 - - # pre-defined string in the spec, seems to be a joke on PRISM - if hexlify(data).startswith(b'505249202a20485454502f322e300d0a0d0a534d0d0a0d0a'): - offset = 24 - - return offset diff --git a/python/pmercury/protocols/http_server.py b/python/pmercury/protocols/http_server.py deleted file mode 100644 index 66eef675..00000000 --- a/python/pmercury/protocols/http_server.py +++ /dev/null @@ -1,152 +0,0 @@ -""" - Copyright (c) 2019 Cisco Systems, Inc. All rights reserved. - License at https://github.com/cisco/mercury/blob/master/LICENSE -""" - -import os -import sys - -sys.path.append(os.path.dirname(os.path.abspath(__file__))) -sys.path.append(os.path.dirname(os.path.abspath(__file__))+'/../') -from pmercury.protocols.protocol import Protocol - - -class HTTP_Server(Protocol): - - def __init__(self, fp_database=None, config=None): - # populate fingerprint databases - self.fp_db = {} - - # configuration - HTTP_Server.all_headers = False - HTTP_Server.all_headers_and_data = False - if config == None or 'http_server' not in config: - HTTP_Server.static_names = set([b'appex-activity-id',b'cdnuuid',b'cf-ray',b'content-range',b'content-type', - b'date',b'etag',b'expires',b'flow_context',b'ms-cv',b'msregion',b'ms-requestid', - b'request-id',b'vary',b'x-amz-cf-pop',b'x-amz-request-id',b'x-azure-ref-originshield', - b'x-cache',b'x-cache-hits',b'x-ccc',b'x-diagnostic-s',b'x-feserver',b'x-hw', - b'x-msedge-ref',b'x-ocsp-responder-id',b'x-requestid',b'x-served-by',b'x-timer', - b'x-trace-context']) - HTTP_Server.static_names_and_values = set([b'access-control-allow-credentials',b'access-control-allow-headers', - b'access-control-allow-methods',b'access-control-expose-headers', - b'cache-control',b'connection',b'content-language',b'content-transfer-encoding', - b'p3p',b'pragma',b'server',b'strict-transport-security',b'x-aspnetmvc-version', - b'x-aspnet-version',b'x-cid',b'x-ms-version',b'x-xss-protection']) - HTTP_Server.headers_data = [0,1,2] - HTTP_Server.contextual_data = {b'via':'via'} - else: - HTTP_Server.static_names = set([]) - HTTP_Server.static_names_and_values = set([]) - HTTP_Server.headers_data = [] - HTTP_Server.contextual_data = {} - if 'static_names' in config['http_server']: - if config['http_server']['static_names'] == ['*']: - HTTP_Server.all_headers = True - HTTP_Server.static_names = set(map(lambda x: x.encode(), config['http_server']['static_names'])) - if 'static_names_and_values' in config['http_server']: - if config['http_server']['static_names_and_values'] == ['*']: - HTTP_Server.all_headers_and_data = True - HTTP_Server.static_names_and_values = set(map(lambda x: x.encode(), config['http_server']['static_names_and_values'])) - if 'preamble' in config['http_server']: - if 'version' in config['http_server']['preamble']: - HTTP_Server.headers_data.append(0) - if 'code' in config['http_server']['preamble']: - HTTP_Server.headers_data.append(1) - if 'reason' in config['http_server']['preamble']: - HTTP_Server.headers_data.append(2) - if '*' in config['http_server']['preamble']: - HTTP_Server.headers_data = [0,1,2] - if 'context' in config['http_server']: - for c in config['http_server']['context']: - HTTP_Server.contextual_data[c.encode()] = c.lower().replace('-','_') - - - @staticmethod - def proto_identify(data, offset, data_len): - if data_len-offset < 16: - return False - if (data[offset] == 72 and - data[offset+1] == 84 and - data[offset+2] == 84 and - data[offset+3] == 80 and - data[offset+4] == 47 and - data[offset+5] == 49): - return True - return False - - - @staticmethod - def fingerprint(data, offset, data_len): - t_ = data[offset:].split(b'\x0d\x0a', 1) - response = t_[0].split(b'\x20',2) - if len(response) < 2: - return None, None - - c = [] - for rh in HTTP_Server.headers_data: - try: - c.append('(%s)' % response[rh].hex()) - except IndexError: - c.append('()') - - if len(t_) == 1: - return ''.join(c), None - - headers = t_[1].split(b'\x0d\x0a') - if headers[0] == '': - headers = headers[1:] - http_ah = HTTP_Server.all_headers - http_ahd = HTTP_Server.all_headers_and_data - http_sn = HTTP_Server.static_names - http_snv = HTTP_Server.static_names_and_values - http_ctx = HTTP_Server.contextual_data - context = [] - for h_ in headers: - if h_ == b'': - break - t0_ = h_.split(b'\x3a\x20',1)[0] - t0_lower = t0_.lower() - - h_c = '' - if http_ahd: - h_c = h_.hex() - elif t0_lower in http_snv: - h_c = h_.hex() - elif t0_lower in http_sn: - h_c = t0_.hex() - elif http_ah: - h_c = t0_.hex() - - if h_c != '': - c.append('(%s)' % h_c) - if t0_lower in http_ctx: - if b'\x3a\x20' in h_: - try: - context.append({'name':http_ctx[t0_lower], 'data':h_.split(b'\x3a\x20',1)[1].decode()}) - except UnicodeDecodeError: - context.append({'name':http_ctx[t0_lower], 'data':h_.split(b'\x3a\x20',1)[1].hex()}) - else: - context.append({'name':http_ctx[t0_lower], 'data':''}) - - return ''.join(c), context - - - def get_human_readable(self, fp_str_): - t_ = [bytes.fromhex(x[1:]) for x in fp_str_.split(')')[:-1]] - try: - fp_h = [{'version':t_[0].decode()},{'code':t_[1].decode()},{'response':t_[2].decode()}] - except: - fp_h = [{'version':t_[0].hex()},{'code':t_[1].hex()},{'response':t_[2].hex()}] - for i in range(3, len(t_)-1): - field = t_[i].split(b': ') - if len(field) == 2: - try: - fp_h.append({field[0].decode(): field[1].decode()}) - except: - fp_h.append({field[0].hex(): field[1].hex()}) - else: - try: - fp_h.append({field[0].decode(): ''}) - except: - fp_h.append({field[0].hex(): ''}) - return fp_h diff --git a/python/pmercury/protocols/iquic.py b/python/pmercury/protocols/iquic.py deleted file mode 100644 index 1c24bb2e..00000000 --- a/python/pmercury/protocols/iquic.py +++ /dev/null @@ -1,234 +0,0 @@ -""" - Copyright (c) 2019 Cisco Systems, Inc. All rights reserved. - License at https://github.com/cisco/mercury/blob/master/LICENSE -""" - -import os -import sys -import struct -import functools - -from cryptography.hazmat.primitives.hmac import HMAC -from cryptography.hazmat.backends import default_backend -from cryptography.hazmat.primitives.ciphers import Cipher, algorithms, modes -from cryptography.hazmat.primitives.ciphers.modes import GCM -from cryptography.hazmat.primitives.ciphers.algorithms import AES -from cryptography.hazmat.primitives.hashes import SHA256 - -sys.path.append(os.path.dirname(os.path.abspath(__file__))) -sys.path.append(os.path.dirname(os.path.abspath(__file__))+'/../') -from pmercury.protocols.protocol import Protocol -from pmercury.protocols.tls import TLS - - -class IQUIC(Protocol): - VERSIONS = set([22,23,24,25,26,27,28,29,30,31,32,33,1]) - QUIC_VERSION_PARAMETERS = { - 22: {'salt': bytes.fromhex('7fbcdb0e7c66bbe9193a96cd21519ebd7a02644a')}, - 23: {'salt': bytes.fromhex('c3eef712c72ebb5a11a7d2432bb46365bef9f502')}, - 24: {'salt': bytes.fromhex('c3eef712c72ebb5a11a7d2432bb46365bef9f502')}, - 25: {'salt': bytes.fromhex('c3eef712c72ebb5a11a7d2432bb46365bef9f502')}, - 26: {'salt': bytes.fromhex('c3eef712c72ebb5a11a7d2432bb46365bef9f502')}, - 27: {'salt': bytes.fromhex('c3eef712c72ebb5a11a7d2432bb46365bef9f502')}, - 28: {'salt': bytes.fromhex('c3eef712c72ebb5a11a7d2432bb46365bef9f502')}, - 29: {'salt': bytes.fromhex('afbfec289993d24c9e9786f19c6111e04390a899')}, - 30: {'salt': bytes.fromhex('afbfec289993d24c9e9786f19c6111e04390a899')}, - 31: {'salt': bytes.fromhex('afbfec289993d24c9e9786f19c6111e04390a899')}, - 32: {'salt': bytes.fromhex('afbfec289993d24c9e9786f19c6111e04390a899')}, - 33: {'salt': bytes.fromhex('38762cf7f55934b34d179ae6a4c80cadccbb7f0a')}, - 1: {'salt': bytes.fromhex('38762cf7f55934b34d179ae6a4c80cadccbb7f0a')}, - } - SAMPLE_SIZE = 16 - - def __init__(self, fp_database=None, config=None): - # populate fingerprint databases - self.fp_db = None - - - @staticmethod - def proto_identify(data, offset, data_len): - if (data[offset+1] != 0xff or - data[offset+2] != 0x00 or - data[offset+3] != 0x00 or - data[offset+4] not in VERSIONS): - return False - return True - - - @staticmethod - def kdf_tls13(secret, label, length): - digest_type = SHA256() - key = b'' - block = b'' - - label = b'tls13 ' + label - len_ = struct.pack('!H', length) - label = b'%s%s%s%s' % (len_, struct.pack('B', len(label)), label, b'\x00') - - ind = 0 - while len(key) < length: - ind += 1 - block = IQUIC.hmac(secret, digest_type, b'%s%s%s' % (block, label, struct.pack('B',ind))) - key += block - - return bytearray(key[:length]) - - - @staticmethod - def hmac(secret, digest_type, msg): - tmp = HMAC(secret, digest_type, default_backend()) - tmp.update(msg) - return tmp.finalize() - - - @staticmethod - def decrypt_packet(data): - data = bytearray(data) - data_len = len(data) - offset = 0 - - if data[4] not in IQUIC.VERSIONS: - return None - - salt = IQUIC.QUIC_VERSION_PARAMETERS[data[4]]['salt'] - - offset = 5 - dcid_len = data[offset] - dcid = data[offset+1:offset+1+dcid_len] - offset += 1+dcid_len - if offset >= data_len: - return None - - scid_len = data[offset] - scid = data[offset+1:offset+1+scid_len] - offset += 1+scid_len - if offset >= data_len: - return None - - token_len = data[offset] - token = data[offset+1:offset+1+token_len] - offset += 3+token_len - if offset >= data_len: - return None - - initial_secret = IQUIC.hmac(salt, SHA256(), dcid) - client_initial_secret = IQUIC.kdf_tls13(initial_secret, b'client in', 32) - key = IQUIC.kdf_tls13(client_initial_secret, b'quic key', 16) - iv = IQUIC.kdf_tls13(client_initial_secret, b'quic iv', 12) - hp = IQUIC.kdf_tls13(client_initial_secret, b'quic hp', 16) - - hp_encryptor = Cipher(algorithms.AES(hp), mode=modes.ECB(), backend=default_backend()).encryptor() - buf = bytearray(31) - sample = data[offset+4:offset+4+IQUIC.SAMPLE_SIZE] - hp_encryptor.update_into(sample, buf) - mask = buf[:5] - - data[0] ^= mask[0] & 0x0F - pn_length = (data[0] & 0x03) + 1 - if offset+pn_length >= data_len: - return None - for i in range(pn_length): - data[offset + i] ^= mask[1 + i] - pn = data[offset:offset + pn_length] - plain_header = data[:offset + pn_length] - - nonce = bytearray(len(iv) - pn_length) + bytearray(pn) - for i in range(len(iv)): - iv[i] ^= nonce[i] - - cipher = Cipher(AES(key), GCM(iv), backend=default_backend()) - payload = cipher.decryptor().update(bytes(data[offset + pn_length:])) - - return payload - - - @staticmethod - def extract_encoded_length(data): - if data == None or len(data) == 0: - 1/0 - return None, None - n_bytes = (data[0] >> 6)+1 - if n_bytes > len(data) or n_bytes > 4: - 1/0 - return None, None - if n_bytes == 1: - return n_bytes, data[0] & 63 # and with b'\x3f' - high_order = (data[0] & 63) << ((n_bytes-1)*8) - return n_bytes, high_order | int.from_bytes(data[1:n_bytes], byteorder='big') - - - @staticmethod - def fingerprint(data, offset, data_len): - encrypted_data = data[offset:] - decrypted_data = IQUIC.decrypt_packet(encrypted_data) - if decrypted_data == None: - return None, None - - # find correct location for client_hello - q_offset = 0 - quic_crypto_frames = [] - decrypt_data_len = len(decrypted_data[q_offset:]) - while decrypt_data_len > 0: - if decrypted_data[q_offset] == 1: - q_offset += 1 - decrypt_data_len -= 1 - continue - elif decrypted_data[q_offset] == 0: - q_offset += 1 - decrypt_data_len -= 1 - while decrypted_data[q_offset] == 0 and decrypt_data_len > 0: - q_offset += 1 - decrypt_data_len -= 1 - continue - elif decrypted_data[q_offset] == 6: - q_offset += 1 - decrypt_data_len -= 1 - offset_len, offset_val = IQUIC.extract_encoded_length(decrypted_data[q_offset:]) - if offset_len == None: - return None, None - q_offset += offset_len - decrypt_data_len -= offset_len - crypto_len, crypto_len_val = IQUIC.extract_encoded_length(decrypted_data[q_offset:]) - if crypto_len == None: - return None, None - q_offset += crypto_len - decrypt_data_len -= crypto_len - if crypto_len_val > decrypt_data_len: - return None, None - quic_crypto_frames.append((offset_val, decrypted_data[q_offset:q_offset+crypto_len_val])) - q_offset += crypto_len_val - decrypt_data_len -= crypto_len_val - else: - break - - quic_crypto_data = b'' - cur_offset = 0 - for offset, crypto_frame in sorted(quic_crypto_frames): - if offset != cur_offset: - return None, None - quic_crypto_data += crypto_frame - cur_offset += len(crypto_frame) - - if quic_crypto_data == b'': - return None, None - if (quic_crypto_data[0] != 0x01 or - quic_crypto_data[4] != 0x03 or - quic_crypto_data[5] > 0x03): - return None, None - - fp_, context = TLS.fingerprint(bytes.fromhex('1603030000') + quic_crypto_data, 0, len(quic_crypto_data)+5, quic=True) - if fp_ == None: - return None, None - - quic_version = encrypted_data[1:5].hex() - - return 'quic/('+quic_version+')'+fp_.replace('tls/',''), context - - - def get_human_readable(self, fp_str_): - return None - - - def proc_identify(self, fp_str_, context_, dst_ip, dst_port, list_procs=5): - return None - diff --git a/python/pmercury/protocols/protocol.py b/python/pmercury/protocols/protocol.py deleted file mode 100644 index b8130d8b..00000000 --- a/python/pmercury/protocols/protocol.py +++ /dev/null @@ -1,22 +0,0 @@ -""" - Copyright (c) 2019 Cisco Systems, Inc. All rights reserved. - License at https://github.com/cisco/mercury/blob/master/LICENSE -""" - -class Protocol: - - # returns fingerprint, approximate fingerprint, contextual data - def fingerprint(self, data): - return None, None - - def proc_identify(self, fp_str_, context_, dst_ip, dst_port, list_procs=5, prev_flow=None): - return None - - def gen_unknown_fingerprint(self, fp_str_): - return None - - def get_human_readable(self, fp_str_): - return None - - def get_approx_fingerprint(self, fp_str_): - return None diff --git a/python/pmercury/protocols/ssh.py b/python/pmercury/protocols/ssh.py deleted file mode 100644 index 535721e0..00000000 --- a/python/pmercury/protocols/ssh.py +++ /dev/null @@ -1,137 +0,0 @@ -""" - Copyright (c) 2019 Cisco Systems, Inc. All rights reserved. - License at https://github.com/cisco/mercury/blob/master/LICENSE -""" - -import os -import sys -import socket - -# SSH helper classes -sys.path.append(os.path.dirname(os.path.abspath(__file__))) -sys.path.append(os.path.dirname(os.path.abspath(__file__))+'/../') -from pmercury.protocols.protocol import Protocol - - -class SSH(Protocol): - def __init__(self, fp_database=None, config=None): - self.session_data = {} - - - def get_flow_key(self, data, ip_offset, tcp_offset, ip_type, ip_length): - src_port = data[tcp_offset:tcp_offset+2] - dst_port = data[tcp_offset+2:tcp_offset+4] - if ip_type == 'ipv4': - o_ = ip_offset+ip_length-8 - src_addr = data[o_:o_+4] - o_ = ip_offset+ip_length-4 - dst_addr = data[o_:o_+4] - else: - o_ = ip_offset+ip_length-32 - src_addr = data[o_:o_+16] - o_ = ip_offset+ip_length-16 - dst_addr = data[o_:o_+16] - pr = b'\x06' # currently only support TCP - - return b''.join([src_addr,dst_addr,src_port,dst_port,pr]) - - - def proto_identify(self, data, offset): - if (data[offset] == 83 and - data[offset+1] == 83 and - data[offset+2] == 72 and - data[offset+3] == 45): - return True - return False - - - def fingerprint(self, data, ip_offset, tcp_offset, app_offset, ip_type, ip_length, data_len): - protocol_type = 'ssh' - fp_str_ = None - if app_offset+4 >= data_len: - return protocol_type, fp_str_, None - - flow_key = self.get_flow_key(data, ip_offset, tcp_offset, ip_type, ip_length) - - data = data[app_offset:] - - if flow_key not in self.session_data and self.proto_identify(data,0) == False: - return protocol_type, fp_str_, None - elif self.proto_identify(data,0): - self.session_data[flow_key] = {} - self.session_data[flow_key]['protocol'] = data - self.session_data[flow_key]['kex'] = b'' - return protocol_type, fp_str_, None - - data = self.session_data[flow_key]['kex'] + data - if len(data) >= 4096: - del self.session_data[flow_key] - return protocol_type, fp_str_, None - - # check SSH packet length to limit possibility of parsing junk and handle fragmentation - if int.from_bytes(data[0:4], byteorder='big') + 4 > len(data): - self.session_data[flow_key]['kex'] += data - return protocol_type, fp_str_, None - - # check to make sure message code is key exchange init - if data[5] != 20: - del self.session_data[flow_key] - return protocol_type, fp_str_, None - - # extract fingerprint string - self.session_data[flow_key]['kex'] = data - fp_str_ = self.extract_fingerprint(self.session_data[flow_key]) - del self.session_data[flow_key] - - return protocol_type, fp_str_, None - - - def extract_fingerprint(self, ssh_): - fp_str_ = '' - - fp_str_ += '(' + ssh_['protocol'][:-2].hex() + ')' - - data = ssh_['kex'] - kex_length = int.from_bytes(data[0:4], byteorder='big') - - # skip over message headers and Cookie field - offset = 22 - if offset > len(data): - return None - - # parse kex algorithms - for i in range(10): - fp_str_, offset = self.parse_kex_field(data, offset, fp_str_) - if offset == None: - return None - - return fp_str_ - - - def parse_kex_field(self, data, offset, fp_str_): - len_ = int.from_bytes(data[offset:offset+4], byteorder='big') - fp_str_ += '(' + data[offset+4:offset+4+len_].hex() + ')' - offset += 4 + len_ - if offset > len(data): - return None, None - return fp_str_, offset - - - def get_human_readable(self, fp_str_): - fields = [bytes.fromhex(s_[1:]) for s_ in fp_str_.split(')')[:-1]] - - fp_h = {} - fp_h['protocol'] = fields[0].decode().split(',') - fp_h['kex_algos'] = fields[1].decode().split(',') - fp_h['s_host_key_algos'] = fields[2].decode().split(',') - fp_h['c_enc_algos'] = fields[3].decode().split(',') - fp_h['s_enc_algos'] = fields[4].decode().split(',') - fp_h['c_mac_algos'] = fields[5].decode().split(',') - fp_h['s_mac_algos'] = fields[6].decode().split(',') - fp_h['c_comp_algos'] = fields[7].decode().split(',') - fp_h['s_comp_algos'] = fields[8].decode().split(',') - fp_h['c_languages'] = fields[9].decode().split(',') - fp_h['s_languages'] = fields[10].decode().split(',') - - return fp_h - diff --git a/python/pmercury/protocols/tcp.py b/python/pmercury/protocols/tcp.py deleted file mode 100644 index cc0c9033..00000000 --- a/python/pmercury/protocols/tcp.py +++ /dev/null @@ -1,119 +0,0 @@ -""" - Copyright (c) 2019 Cisco Systems, Inc. All rights reserved. - License at https://github.com/cisco/mercury/blob/master/LICENSE -""" - -import os -import sys -import json -import functools -from collections import OrderedDict - -sys.path.append(os.path.dirname(os.path.abspath(__file__))) -sys.path.append(os.path.dirname(os.path.abspath(__file__))+'/../') -from pmercury.protocols.protocol import Protocol -from pmercury.utils.pmercury_utils import * - -MAX_CACHED_RESULTS = 2**24 - -class TCP(): - def __init__(self, fp_database=None, config=None): - # populate fingerprint databases - self.fp_db = None - self.load_database(fp_database) - - - def load_database(self, fp_database): - fp_database = find_resource_path(fp_database) - if fp_database == None: - return - - self.fp_db = {} - - if os.name == 'nt': - import gzip - for line in gzip.open(fp_database, 'r'): - fp_ = json.loads(line) - fp_['os_info'] = self.clean_os_entry(fp_['os_info']) - self.fp_db[fp_['str_repr']] = fp_ - else: - cmd = 'gzcat' if sys.platform == 'darwin' else 'zcat' - for line in os.popen(cmd + ' %s' % (fp_database)): - fp_ = json.loads(line) - fp_['os_info'] = self.clean_os_entry(fp_['os_info']) - self.fp_db[fp_['str_repr']] = fp_ - - - def clean_os_entry(self, os_info): - tmp_os = [] - for k in os_info: - tmp_os.append((os_info[k],k)) - tmp_os.sort(reverse=True) - os_info = OrderedDict({}) - for c,k in tmp_os: - os_info[k] = c - return os_info - - - @functools.lru_cache(maxsize=MAX_CACHED_RESULTS) - def os_identify(self, fp_str_, list_oses=0): - fp_ = self.get_database_entry(fp_str_, None) - if fp_ == None: - return {'os': 'Unknown', 'score': 0.0} - - r_ = [] - os_info = fp_['os_info'] - fp_tc = fp_['total_count'] - for k in os_info: - r_.append({'os': k, 'score': os_info[k]}) - - out_ = {'os':r_[0]['os'], 'score':r_[0]['score']} - if list_oses > 0: - out_['probable_oses'] = r_[0:list_oses] - - return out_ - - - @functools.lru_cache(maxsize=MAX_CACHED_RESULTS) - def get_database_entry(self, fp_str, approx_fp_str): - if self.fp_db == None or fp_str not in self.fp_db: - return None - - return self.fp_db[fp_str] - - - @staticmethod - def proto_identify(data, offset, data_len): - if data[offset+13] != 2: - return False - return True - - - @staticmethod - def fingerprint(data, offset, app_offset, data_len): - c = [f'({data[offset+14]:02x}{data[offset+15]:02x})'] - - offset += 20 - while offset < app_offset and offset + 1 < data_len: - kind = data[offset] - length = data[offset+1] - if kind == 0 or kind == 1: # End of Options / NOP - c.append('(%02x)' % kind) - offset += 1 - elif kind != 2 and kind != 3: - c.append('(%02x)' % kind) - offset += length - else: - c.append('(%02x%s)' % (kind, data[offset+1:offset+length].hex())) - offset += length - - return ''.join(c), None - - - def get_human_readable(self, fp_str_): - return None - - - def proc_identify(self, fp_str_, context_, dst_ip, dst_port, list_procs=0, endpoint=None, approx=True, debug=None): - return None - diff --git a/python/pmercury/protocols/tls.py b/python/pmercury/protocols/tls.py deleted file mode 100644 index 855dddab..00000000 --- a/python/pmercury/protocols/tls.py +++ /dev/null @@ -1,458 +0,0 @@ -""" - Copyright (c) 2019 Cisco Systems, Inc. All rights reserved. - License at https://github.com/cisco/mercury/blob/master/LICENSE -""" - -import os -import sys -import copy -import json -import math -import operator -import functools -from sys import path -from socket import htons - -sys.path.append(os.path.dirname(os.path.abspath(__file__))) -sys.path.append(os.path.dirname(os.path.abspath(__file__))+'/../') -from pmercury.utils.tls_utils import * -from pmercury.utils.tls_constants import * -from pmercury.utils.pmercury_utils import * -from pmercury.utils.endpoint import * -from pmercury.utils.eqv_classes import * -from pmercury.utils.sequence_alignment import * - -MAX_CACHED_RESULTS = 2**24 - - - -class TLS(): - def __init__(self, fp_database=None, config=None): - # cached data/results - self.tls_params_db = {} - self.MALWARE_DB = True - self.EXTENDED_FP_METADATA = False - - # populate fingerprint databases - self.fp_db = {} - if fp_database == 'resources/fingerprint_db.json.gz': - fp_database = find_resource_path(fp_database) - if fp_database != None: - self.load_database(fp_database) - - if os.name == 'nt': - transition_probs_file = find_resource_path('resources/transition_probs.csv.gz') - self.transition_probs = {} - import gzip - if transition_probs_file != None: - for line in gzip.open(transition_probs_file, 'r'): - t_ = line.strip().split(b',') - if t_[1].decode() not in self.transition_probs: - self.transition_probs[t_[1].decode()] = {} - self.transition_probs[t_[1].decode()][t_[2].decode()] = float(t_[0]) - else: - transition_probs_file = find_resource_path('resources/transition_probs.csv.gz') - self.transition_probs = {} - cmd = 'gzcat' if sys.platform == 'darwin' else 'zcat' - if transition_probs_file != None: - for line in os.popen(cmd + ' %s' % (transition_probs_file), mode='r', buffering=8192*256): - t_ = line.strip().split(',') - if t_[1] not in self.transition_probs: - self.transition_probs[t_[1]] = {} - self.transition_probs[t_[1]][t_[2]] = float(t_[0]) - - app_families_file = find_resource_path('resources/app_families.txt') - self.app_families = {} - if app_families_file != None: - for line in open(app_families_file, 'r'): - tokens = line.strip().split(',') - for i in range(1, len(tokens)): - self.app_families[tokens[i]] = tokens[0] - - self.aligner = SequenceAlignment(f_similarity, 0.0) - - eqv_classes_path = find_path('resources/equivalence-classes/') - self.eqv_classes = EquivalenceClasses(eqv_classes_path) - - - def load_database(self, fp_database): - if os.name == 'nt': - import gzip - for line_win in gzip.open(fp_database, 'r'): - fp_ = json.loads(line_win) - self.fp_db[fp_['str_repr']] = fp_ - else: - cmd = 'gzcat' if sys.platform == 'darwin' else 'zcat' - for line in os.popen(cmd + ' %s' % (fp_database), mode='r', buffering=8192*256): - fp_ = json.loads(line) - self.fp_db[fp_['str_repr']] = fp_ - if 'malware' not in self.fp_db[fp_['str_repr']]['process_info'][0]: - self.MALWARE_DB = False - if ('classes_ip_ip' in self.fp_db[fp_['str_repr']]['process_info'][0] and - 'classes_hostname_sni' in self.fp_db[fp_['str_repr']]['process_info'][0]): - self.EXTENDED_FP_METADATA = True - - - @staticmethod - def proto_identify(data, offset, data_len): - if data_len-offset < 16: - return False - if (data[offset] == 22 and - data[offset+1] == 3 and - data[offset+2] <= 3 and - data[offset+5] == 1 and - data[offset+9] == 3 and - data[offset+10] <= 3): - return True - return False - - - @staticmethod - def fingerprint(data, offset, data_len, quic=False): - offset += 5 - - # extract handshake version - c = [f'({data[offset+4]:02x}{data[offset+5]:02x})'] - - # skip header/client_random - offset += 38 - - # parse/skip session_id - session_id_length = data[offset] - offset += 1 + session_id_length - if offset >= data_len: - return None, None - - # parse/extract/skip cipher_suites length - cipher_suites_length = int.from_bytes(data[offset:offset+2], byteorder='big') - offset += 2 - if offset >= data_len: - return None, None - - # parse/extract/skip cipher_suites - cs_ = degrease_type_code(data, offset) - if cipher_suites_length > 2: - cs_ += data[offset+2:offset+cipher_suites_length].hex() - c.append('(%s)' % cs_) - offset += cipher_suites_length - if offset >= data_len: - c.append('()') - return ''.join(c), None - - # parse/skip compression method - compression_methods_length = data[offset] - offset += 1 + compression_methods_length - if offset >= data_len: - c.append('()') - return ''.join(c), None - - # parse/skip extensions length - ext_total_len = int.from_bytes(data[offset:offset+2], byteorder='big') - offset += 2 - if offset >= data_len: - c.append('()') - return ''.join(c), None - - # parse/extract/skip extension type/length/values - if quic: - c.append('[') - else: - c.append('(') - server_name = None - context = None - sorted_exts = [] - while ext_total_len > 0: - if offset >= data_len: - if quic: - c.append(']') - else: - c.append(')') - return ''.join(c), context - - # extract server name for process/malware identification - ext_type_int = int.from_bytes(data[offset:offset+2], byteorder='big') - if ext_type_int == 0: - server_name = extract_server_name(data, offset+2, data_len) - context = [{'name':'server_name', 'data':server_name}] - - tmp_fp_ext, offset, ext_len = parse_extension(data, offset) - if ext_len+4 > ext_total_len: - if quic: - c.append(']') - else: - c.append(')') - return ''.join(c), context - if quic: - sorted_exts.append((ext_type_int, '(%s)' % tmp_fp_ext)) - else: - c.append('(%s)' % tmp_fp_ext) - - ext_total_len -= 4 + ext_len - if quic: - c.extend([x for _,x in sorted(sorted_exts)]) - c.append(']') - else: - c.append(')') - - return 'tls/'+''.join(c), context - - - def proc_identify(self, fp_str_, context_, dest_addr, dest_port, list_procs=0, endpoint=None, approx=True, debug=None): - server_name = None - # extract server_name field from context object - if context_ != None and 'server_name' in context_: - server_name = context_['server_name'] - - fp_str_eqv_ = self.eqv_classes.get_str_repr(fp_str_) - if fp_str_eqv_ in self.fp_db: - fp_str_ = fp_str_eqv_ - - # fingerprint approximate matching if necessary - if fp_str_ not in self.fp_db: - if not approx: - return {'process': 'Unknown', 'score': 0.0, 'malware': 0, 'p_malware': 0.0, 'category': 'Unknown'} - lit_fp = eval_fp_str(fp_str_) - approx_str_ = self.find_approx_match(lit_fp) - if approx_str_ == None: - fp_ = self.gen_unknown_fingerprint(fp_str_) - self.fp_db[fp_str_] = fp_ - if self.MALWARE_DB: - return {'process': 'Unknown', 'score': 0.0, 'malware': 0, 'p_malware': 0.0, 'category': 'Unknown'} - else: - return {'process': 'Unknown', 'score': 0.0, 'category': 'Unknown'} - self.fp_db[fp_str_] = copy.deepcopy(self.fp_db[approx_str_]) - self.fp_db[fp_str_]['approx_str'] = approx_str_ - - # perform process identification given the fingerprint string and destination information - return self.identify(fp_str_, server_name, dest_addr, dest_port, list_procs, endpoint, debug) - - - @functools.lru_cache(maxsize=MAX_CACHED_RESULTS) - def identify(self, fp_str_, server_name, dest_addr, dest_port, list_procs, endpoint=None, debug=None): - fp_ = self.get_database_entry(fp_str_, None) - if fp_ == None: - # if malware data is in the database, report malware scores - if self.MALWARE_DB: - return {'process': 'Unknown', 'score': 0.0, 'malware': 0, 'p_malware': 0.0, 'category': 'Unknown'} - else: - return {'process': 'Unknown', 'score': 0.0, 'category': 'Unknown'} - - # find generalized classes for destination information - eqv_features = self.eqv_classes.get_dst_info(dest_addr, dest_port, server_name) - - # compute and sort scores for each process in the fingerprint - fp_tc = fp_['total_count'] - r_ = [self.compute_score(eqv_features, server_name, p_, fp_tc, endpoint, debug) for p_ in fp_['process_info']] - r_ = sorted(r_, key=operator.itemgetter('score'), reverse=True) - - # if score == 0 or no match could be found, return default process - if len(r_) == 0 or r_[0]['score'] == 0.0: - predict_ = fp_['process_info'][0]['process'] - predict_ = self.app_families[predict_] if predict_ in self.app_families else predict_ - if self.MALWARE_DB: - return {'process':predict_, 'score': 0.0, 'malware': int(fp_['process_info'][0]['malware']), - 'p_malware': 0.0, 'category': 'Unknown'} - else: - return {'process':predict_, 'score':0.0, 'category': 'Unknown'} - - # in the case of malware, remove pseudo process meant to reduce false positives - if self.MALWARE_DB and r_[0]['process'] == 'generic dmz process': - if len(r_) > 1 and r_[1]['malware'] == False: - r_.pop(0) - else: - score_sum_ = sum([x_['score'] for x_ in r_]) - malware_score_ = sum([x_['score'] for x_ in r_ if x_['malware'] == 1])/score_sum_ - if malware_score_ > 0.99: - r_.pop(0) - - # get generalized process name if available - process_name = r_[0]['process'] - process_name = self.app_families[process_name] if process_name in self.app_families else process_name - - # package the most probable process - score_sum_ = sum([x_['score'] for x_ in r_]) - if self.MALWARE_DB: - malware_score_ = sum([x_['score'] for x_ in r_ if x_['malware'] == 1])/score_sum_ - out_ = {'process':process_name, 'score':r_[0]['score'], 'malware':int(r_[0]['malware']), - 'p_malware':malware_score_, 'category':r_[0]['category']} - else: - out_ = {'process':process_name, 'score':r_[0]['score'], 'category':r_[0]['category']} - - # return the top-n most probable processes is list_procs > 0 - if list_procs > 0: - r_proc_ = r_[0:list_procs] - for p_ in r_proc_: - p_['score'] /= score_sum_ - out_['probable_processes'] = r_proc_ - out_['score'] /= score_sum_ - - return out_ - - - def compute_score(self, features, server_name, p_, fp_tc_, endpoint, debug=None): - cur_proc = p_['process'] - p_count = p_['count'] - prob_process_given_fp = math.log(p_count/fp_tc_) - - base_prior_ = math.log(1/fp_tc_) #-25.32844 # log(1e-11) - proc_prior_ = math.log(.1) # -3.0 # log(1e-7) - - if 'domain_mean' in p_ and p_['domain_mean'] < 0.5: - base_prior_ = math.log(.5/fp_tc_) # -27.63102 # log(1e-12) - - score_ = prob_process_given_fp if prob_process_given_fp > proc_prior_ else proc_prior_ - - if debug and p_['process'] in debug.split(','): - print('%30s\t%30s\t%10s\t%0.4f' % (p_['process'], 'prob_process_given_fp', 'found', score_)) - - if endpoint != None and 'os_info' in p_: - os_info = endpoint.get_os() - if len(os_info) > 0: - k = next(iter(os_info.keys())) - if k in p_['os_info']: - score_ += math.log(min(p_count,p_['os_info'][k])/p_count) - else: - score_ += math.log(1/p_count) - - if endpoint != None: - gpn = self.app_families[cur_proc] if cur_proc in self.app_families else cur_proc - if gpn in endpoint.strong_procs: - score_ += math.log(.1) - else: - score_ += math.log(.05) - - if server_name in strong_domains and gpn == strong_domains[server_name]: - score_ += math.log(1.0) - else: - score_ += math.log(.1) - - weights = { - 'classes_hostname_sni': 0.96941, - 'classes_hostname_tlds': 0.01153, - 'classes_hostname_domains': 0.15590, - 'classes_ip_ip': 0.56735, - 'classes_ip_as': 0.13924, - 'classes_port_port': 0.00623, - 'classes_port_applications': 0.00528, - } - for f_name, f_value in features: - if f_value == 'None': - continue - try: - tmp_ = math.log(p_[f_name][f_value]/fp_tc_)*weights[f_name] - score_ += tmp_ - if debug and p_['process'] in debug.split(','): - print('%30s\t%30s\t%10s\t%0.4f' % (p_['process'], f_name, 'found', tmp_)) - except KeyError: - score_ += base_prior_*weights[f_name] - if debug and p_['process'] in debug.split(','): - print('%30s\t%30s\t%10s\t%0.4f' % (p_['process'], f_name, 'not found', base_prior_*weights[f_name])) - - app_cat = 'Unknown' - if 'application_category' in p_: - app_cat = p_['application_category'] - - if self.MALWARE_DB: - return {'score':math.exp(score_), 'process':cur_proc, 'sha256':p_['sha256'], - 'malware':p_['malware'], 'category':app_cat} - else: - return {'score':math.exp(score_), 'process':cur_proc, 'sha256':p_['sha256'], 'category':app_cat} - - - def get_database_entry(self, fp_str, approx_fp_str): - fp_str_ = fp_str - if approx_fp_str != None: - fp_str_ = approx_fp_str - - try: - return self.fp_db[fp_str_] - except KeyError: - return None - - - @functools.lru_cache(maxsize=MAX_CACHED_RESULTS) - def get_approx_fingerprint(self, fp_str_): - try: - return self.fp_db[fp_str_]['approx_str'] - except KeyError: - return None - - - def find_approx_match(self, tls_features, fp_str=None, source_filter=None, key_filter=None): - target_ = get_sequence(tls_features) - tls_params_ = get_tls_params(tls_features) - - t_sim_set = [] - for k in self.fp_db.keys(): - tmp_lit_fp = eval_fp_str(self.fp_db[k]['str_repr']) - test_ = get_sequence(tmp_lit_fp) - score_ = self.aligner.align(target_, test_) - t_sim_set.append((1.0-2*score_/float(len(target_)+len(test_)), k)) - - t_sim_set.sort() - if len(t_sim_set) == 0: - return None - - return t_sim_set[0][1] - - - def find_approximate_matches_set(self, tls_params, fp_str=None, source_filter=None, key_filter=None): - t_scores = [] - p0_ = set(tls_params[0]) - p1_ = set(tls_params[1]) - for k in self.fp_db.keys(): - if self.fp_db[k]['total_count'] < 1000: - continue - k = k - if source_filter != None and source_filter not in self.fp_db[k]['source']: - continue - if fp_str != None and key_filter != None and fp_str not in key_filter and k not in key_filter: - continue - if k not in self.tls_params_db: - lit_fp = eval_fp_str(k) - tls_params_ = get_tls_params(lit_fp) - self.tls_params_db[k] = tls_params_ - q0_ = set(self.tls_params_db[k][0]) - q1_ = set(self.tls_params_db[k][1]) - s0_ = len(p0_.intersection(q0_))/max(1.0,len(p0_.union(q0_))) - s1_ = len(p1_.intersection(q1_))/max(1.0,len(p1_.union(q1_))) - s_ = s0_ + s1_ - t_scores.append((s_, k)) - t_scores.sort() - t_scores.reverse() - return t_scores[0:100] - - - @functools.lru_cache(maxsize=MAX_CACHED_RESULTS) - def gen_unknown_fingerprint(self, fp_str_): - fp_ = {} - fp_['str_repr'] = fp_str_ - lit_fp = eval_fp_str(fp_str_) - if len(lit_fp) < 2 or len(lit_fp[1]) < 1: - fp_['error'] = 'fingerprint string parsing error' - return fp_ - max_imp, min_imp = get_implementation_date(lit_fp[1][0]) - fp_['max_implementation_date'] = max_imp - fp_['min_implementation_date'] = min_imp - fp_['total_count'] = 1 - fp_['process_info'] = [{'process': 'Unknown', 'sha256':'Unknown', 'count':1, 'malware': 0, - 'classes_ip_as':{},'classes_hostname_tlds':{},'classes_hostname_domains':{}, - 'classes_port_applications':{},'os_info':{}}] - - return fp_ - - - def get_human_readable(self, fp_str_): - lit_fp = eval_fp_str(fp_str_) - fp_h = {} - fp_h['version'] = get_version_from_str(lit_fp[0]) - fp_h['cipher_suites'] = get_cs_from_str(lit_fp[1]) - fp_h['extensions'] = [] - if len(lit_fp) > 2: - fp_h['extensions'] = get_ext_from_str(lit_fp[2]) - - return fp_h - - @functools.lru_cache(maxsize=MAX_CACHED_RESULTS) - def os_identify(self, fp_str_, list_oses=0): - return None diff --git a/python/pmercury/protocols/tls_certificate.py b/python/pmercury/protocols/tls_certificate.py deleted file mode 100644 index dcc6929e..00000000 --- a/python/pmercury/protocols/tls_certificate.py +++ /dev/null @@ -1,390 +0,0 @@ -""" - Copyright (c) 2019 Cisco Systems, Inc. All rights reserved. - License at https://github.com/cisco/mercury/blob/master/LICENSE -""" - -import os -import sys -import base64 - -# TLS helper classes -sys.path.append(os.path.dirname(os.path.abspath(__file__))) -sys.path.append(os.path.dirname(os.path.abspath(__file__))+'/../') -from pmercury.protocols.protocol import Protocol -from pmercury.utils.tls_utils import * -from pmercury.utils.tls_constants import * -from pmercury.utils.cert_constants import * - - -class TLS_Certificate(Protocol): - def __init__(self): - self.fp_db = None - - - @staticmethod - def proto_identify(data, offset): - if (data[offset] == 22 and - data[offset+1] == 3 and - data[offset+2] <= 3 and - data[offset+5] == 11): - return True - return False - - - @staticmethod - def proto_identify_hs(data, offset): - if (data[offset] == 11 and - data[offset+1] == 0 and - data[offset+4] == 0 and - data[offset+7] == 0): - return True - return False - - - @staticmethod - def proto_identify_sh(data, offset): - if (data[offset] == 22 and - data[offset+1] == 3 and - data[offset+2] <= 3 and - data[offset+5] == 2 and - data[offset+9] == 3 and - data[offset+10] <= 3): - return True - return False - - - @staticmethod - def fingerprint(data, app_offset, data_len): - data_len = len(data) - offset = app_offset - - if (data[offset] == 22 and - data[offset+1] == 3 and - data[offset+2] <= 3 and - data[offset+5] == 2 and - data[offset+9] == 3 and - data[offset+10] <= 3): - offset += 9+int(data[offset+6:offset+9].hex(),16) - if offset >= data_len: - return None, None - - if (data[offset] == 22 and - data[offset+1] == 3 and - data[offset+2] <= 3 and - data[offset+5] == 11 and - data[offset+6] == 0): - offset += 5 - elif (data[offset] == 11 and - data[offset+1] == 0 and - data[offset+4] == 0 and - data[offset+7] == 0): - pass - else: - return None, None - - certificates_length = int(data[offset+4:offset+7].hex(),16) - offset += 7 - if offset >= data_len: - return None, None - - certs = None - while offset < certificates_length: - cert_len = int(data[offset:offset+3].hex(),16) - offset += 3 - if offset >= data_len: - return certs, None - - if certs == None: - certs = [] - - certs.append(base64.b64encode(data[offset:offset+cert_len]).decode()) - - offset += cert_len - if offset >= data_len: - return certs, None - - return certs, None - - - def get_human_readable(self, fp_str_): - fp_h = [] - for cert_ in fp_str_: - cert = base64.b64decode(cert_) - - cert_json = self.cert_parser(cert) - - fp_h.append(cert_json) - return fp_h - - - def cert_parser(self, cert): - out_ = {} - - # parse to cert data - _, _, cert, _ = self.parse_tlv(cert, 0) - _, _, cert, _ = self.parse_tlv(cert, 0) - - offset = 2 - - # parse version - _, _, value, offset = self.parse_tlv(cert, offset) - if value != None: - if value.hex() in cert_versions: - value = cert_versions[value.hex()] - else: - offset = 0 - value = cert_versions['02'] - else: - offset = 0 - value = cert_versions['02'] - out_['version'] = value - - # parse serial number - _, _, value, offset = self.parse_tlv(cert, offset) - if offset == None: - return out_ - out_['serial_number'] = value.hex() - - # parse signature - _, _, value, offset = self.parse_tlv(cert, offset) - if offset == None: - return out_ - out_['algorithm_identifier'] = self.parse_signature_algorithm(value) - - # parse issuer - _, _, value, offset = self.parse_tlv(cert, offset) - if offset == None: - return out_ - out_['issuer'] = self.parse_rdn_sequence(value) - - # parse validity - _, _, value, offset = self.parse_tlv(cert, offset) - if offset == None: - return out_ - out_['validity'] = self.parse_validity(value) - - # parse subject - _, _, value, offset = self.parse_tlv(cert, offset) - if offset == None: - return out_ - out_['subject'] = self.parse_rdn_sequence(value) - - # skip subject_public_key_info - _, _, value, offset = self.parse_tlv(cert, offset) - if offset == None: - return out_ - - # parse extensions - _, _, cert_ext_outer, offset = self.parse_tlv(cert, offset) - if offset == None: - return out_ - _, _, cert_ext, _ = self.parse_tlv(cert_ext_outer, 0) - if cert_ext == None: - return out_ - - - # parse individual extensions - cert_exts = [] - ext_offset = 0 - _, _, ext_value, ext_offset = self.parse_tlv(cert_ext, ext_offset) - if ext_offset == None: - return out_ - while ext_offset != None: - ext_ = self.parse_ext(ext_value) - if ext_ != None: - cert_exts.append(ext_) - _, _, ext_value, ext_offset = self.parse_tlv(cert_ext, ext_offset) - out_['extensions'] = cert_exts - - return out_ - - - def parse_signature_algorithm(self, val_): - _, _, alg_, offset = self.parse_tlv(val_, 0) - if offset == None: - return val_ - alg_ = alg_.hex() - if alg_ in oid_mapping: - alg_ = oid_mapping[alg_] - - out_ = {} - out_['algorithm'] = alg_ - - _, _, params_, offset = self.parse_tlv(val_, offset) - if offset == None: - return out_ - out_['parameters'] = params_.hex() - - return out_ - - - def parse_subject_alt_name(self, val_): - _, _, sans_, offset = self.parse_tlv(val_, 0) - if offset == None: - return '' - - san_arr = [] - tag_, _, san_, offset = self.parse_tlv(sans_, 0) - while offset != None: - general_name_type = tag_ - 128 - general_name = 'Unknown' - if general_name_type in cert_general_name_types: - general_name = cert_general_name_types[general_name_type] - try: - san_arr.append(f'{general_name}: {san_.decode()}') - except: - san_arr.append(f'{general_name}: {san_.hex()}') - tag_, _, san_, offset = self.parse_tlv(sans_, offset) - - return san_arr - - - def parse_key_usage(self, val_): - _, _, val_, offset = self.parse_tlv(val_, 0) - if offset == None or len(val_) < 2: - return '' - - padding = val_[0] - value = [] - if val_[1] & 0x80: - value.append('digitalSignature') - if val_[1] & 0x40: - value.append('contentCommitment') - if val_[1] & 0x20: - value.append('keyEncipherment') - if val_[1] & 0x10: - value.append('dataEncipherment') - if val_[1] & 0x08: - value.append('keyAgreement') - if val_[1] & 0x04: - value.append('keyCertSign') - if val_[1] & 0x02: - value.append('cRLSign') - if val_[1] & 0x01: - value.append('encipherOnly') - if len(val_) > 2 and val_[2] & 0x80: - value.append('decipherOnly') - - return {'padding': padding, 'value': value} - - def parse_ext(self, data): - offset = 0 - _, _, id_, offset = self.parse_tlv(data, offset) - if offset == None: - return None - _, _, val_, offset = self.parse_tlv(data, offset) - if offset == None: - return None - - critical = False - if val_.hex() == 'ff': - critical = True - _, _, val_, offset = self.parse_tlv(data, offset) - - id_ = id_.hex() - if id_.startswith('551d') and len(id_) == 6 and id_[4:6] in cert_extensions: - id_ = cert_extensions[id_[4:6]] - elif id_.startswith('2b060105050701') and len(id_) == 16 and id_[14:16] in cert_extensions_private: - id_ = cert_extensions_private[id_[14:16]] - elif id_ in oid_mapping: - id_ = oid_mapping[id_] - - out_val_ = '' - if id_ == 'id-ce-subjectAltName': - out_val_ = self.parse_subject_alt_name(val_) - elif id_ == 'id-ce-keyUsage': - out_val_ = self.parse_key_usage(val_) - - - if out_val_ == '': - out_val_ = val_.hex() - - return {id_: out_val_, 'critical': critical} - - - def parse_validity(self, data): - offset = 0 - _, _, not_before, offset = self.parse_tlv(data, offset) - if offset == None: - return None - - try: - out_ = {'not_before': not_before.decode()} - except: - out_ = {'not_before': not_before.hex()} - - _, _, not_after, offset = self.parse_tlv(data, offset) - if offset == None: - return out_ - - try: - out_['not_after'] = not_after.decode() - except: - out_['not_after'] = not_after.hex() - - return out_ - - - def parse_rdn_sequence_item(self, data): - _, _, value, _ = self.parse_tlv(data, 0) - if value == None: - return None - - offset = 0 - _, _, id_, offset = self.parse_tlv(value, offset) - if offset == None: - return None - tag_, _, val_, offset = self.parse_tlv(value, offset) - if offset == None: - return None - - id_ = id_.hex() - if id_.startswith('5504') and len(id_) == 6 and id_[4:6] in cert_attribute_types: - id_ = cert_attribute_types[id_[4:6]] - - if tag_ == 19 or tag_ == 12: # printable string - val_ = val_.decode() - else: - val_ = val_.hex() - - return {id_: val_} - - - def parse_rdn_sequence(self, data): - offset = 0 - len_ = len(data) - - items = [] - tag_, _, value, offset = self.parse_tlv(data, offset) - while offset != None: - item_ = self.parse_rdn_sequence_item(value) - if item_ != None: - items.append(item_) - _, _, value, offset = self.parse_tlv(data, offset) - - return items - - - def parse_tlv(self, data, offset): - if len(data) < offset+2: - return None, None, None, None - - tag_ = data[offset] - len_ = data[offset+1] - - if len_ == 0: - return tag_, len_, b'', offset+2 - if len_ >= 128: - num_octets = len_ - 128 - if num_octets <= 0: - return None, None, None, None - len_ = int(data[offset+2:offset+2+num_octets].hex(),16) - offset += num_octets - val_ = data[offset+2:offset+2+len_] - - return tag_, len_, val_, offset+2+len_ - - - def proc_identify(self, fp_str_, context_, dst_ip, dst_port, list_procs=5): - return None - diff --git a/python/pmercury/protocols/tls_certificate_full.py b/python/pmercury/protocols/tls_certificate_full.py deleted file mode 100644 index 2e8ae30a..00000000 --- a/python/pmercury/protocols/tls_certificate_full.py +++ /dev/null @@ -1,496 +0,0 @@ -""" - Copyright (c) 2019 Cisco Systems, Inc. All rights reserved. - License at https://github.com/cisco/mercury/blob/master/LICENSE -""" - -import os -import sys -import socket -from binascii import hexlify, unhexlify -from cryptography import x509 -from cryptography.hazmat.backends import default_backend -from cryptography.hazmat.primitives.asymmetric import rsa, dsa, ec - -# TLS helper classes -sys.path.append(os.path.dirname(os.path.abspath(__file__))) -sys.path.append(os.path.dirname(os.path.abspath(__file__))+'/../') -from pmercury.protocols.protocol import Protocol -from pmercury.utils.tls_utils import * -from pmercury.utils.tls_constants import * - - -class TLS_Certificate_Full(Protocol): - def __init__(self): - self.data_cache = {} - - - def get_flow_key(self, data, ip_offset, tcp_offset, ip_type, ip_length): - src_port = data[tcp_offset:tcp_offset+2] - dst_port = data[tcp_offset+2:tcp_offset+4] - if ip_type == 'ipv4': - o_ = ip_offset+ip_length-8 - src_addr = data[o_:o_+4] - o_ = ip_offset+ip_length-4 - dst_addr = data[o_:o_+4] - else: - o_ = ip_offset+ip_length-32 - src_addr = data[o_:o_+16] - o_ = ip_offset+ip_length-16 - dst_addr = data[o_:o_+16] - pr = b'\x06' # currently only support TCP - - return b''.join([src_addr,dst_addr,src_port,dst_port,pr]) - - - def proto_identify(self, data, offset): - if (data[offset] == 22 and - data[offset+1] == 3 and - data[offset+2] <= 3 and - data[offset+5] == 11): - return True - return False - - - def proto_identify_sh(self, data, offset): - if (data[offset] == 22 and - data[offset+1] == 3 and - data[offset+2] <= 3 and - data[offset+5] == 2 and - data[offset+9] == 3 and - data[offset+10] <= 3): - return True - return False - - - def fingerprint(self, data, ip_offset, tcp_offset, app_offset, ip_type, ip_length, data_len): - protocol_type = 'tls_certificate' - fp_str_ = None - if app_offset+32 >= data_len: - return protocol_type, fp_str_, None - flow_key = self.get_flow_key(data, ip_offset, tcp_offset, ip_type, ip_length) - data = data[app_offset:] - - sh = False - if self.proto_identify_sh(data,0): - data = data[9+int(hexlify(data[6:9]),16):] - if len(data) == 0: - return protocol_type, fp_str_, None - sh = True - - if sh and data[0] == 11: - self.data_cache[flow_key] = b'' - elif self.proto_identify(data,0): - data = data[5:] - self.data_cache[flow_key] = b'' - elif flow_key not in self.data_cache and self.proto_identify(data,0) == False: - return protocol_type, fp_str_, None - elif flow_key not in self.data_cache: - return protocol_type, fp_str_, None - - # keep state to deal with larger packets - data = self.data_cache[flow_key] + data - if len(data[7:]) < int(hexlify(data[7:10]),16): - self.data_cache[flow_key] = data - return protocol_type, fp_str_, None - - certs = data[7:] - cert_len = int(hexlify(certs[0:3]),16) - - cert_data = certs[3:3+int(hexlify(certs[0:3]),16)] - - try: - cert = x509.load_der_x509_certificate(cert_data, default_backend()) - except: - del self.data_cache[flow_key] - return protocol_type, fp_str_, None - - # build "fingerprint" - fp_str_ = b'' - - # extract serial number and signature algorithm name - fp_str_ += b'(' + self.int_2_hex(cert.serial_number) + b')' - fp_str_ += b'(' + hexlify(bytes(cert.signature_algorithm_oid._name,'utf-8')) + b')' - - # extract issuer information - fp_str_ += b'(' - for issuer in cert.issuer: - fp_str_ += b'(' - fp_str_ += b'(' + hexlify(bytes(issuer.oid._name,'utf-8')) + b')' - fp_str_ += b'(' + hexlify(bytes(issuer._value,'utf-8')) + b')' - fp_str_ += b')' - fp_str_ += b')' - - # extract validity - fp_str_ += b'(' + hexlify(bytes(str(cert.not_valid_before),'utf-8')) + b')' - fp_str_ += b'(' + hexlify(bytes(str(cert.not_valid_after),'utf-8')) + b')' - - # extract subject information - fp_str_ += b'(' - for subject in cert.subject: - fp_str_ += b'(' - fp_str_ += b'(' + hexlify(bytes(subject.oid._name,'utf-8')) + b')' - fp_str_ += b'(' + hexlify(bytes(subject._value,'utf-8')) + b')' - fp_str_ += b')' - fp_str_ += b')' - - # extract public key information - fp_str_ += b'(' - public_key = cert.public_key() - if isinstance(public_key, ec.EllipticCurvePublicKey): - fp_str_ += b'(' + hexlify(b'ECPublicKey') + b')' - fp_str_ += b'(' + hexlify(self.int_2_hex(public_key.key_size)) + b')' - fp_str_ += b'(' + hexlify(bytes(public_key.curve.name,'utf-8')) + b')' - elif isinstance(public_key, rsa.RSAPublicKey): - fp_str_ += b'(' + hexlify(b'RSAPublicKey') + b')' - fp_str_ += b'(' + hexlify(self.int_2_hex(public_key.key_size)) + b')' - public_modulus = '%x' % public_key.public_numbers().n - public_exponent = '%x' % public_key.public_numbers().e - fp_str_ += b'(' + hexlify(b'0' * (len(public_modulus) % 2) + bytes(public_modulus,'utf-8')) + b')' - fp_str_ += b'(' + hexlify(b'0' * (len(public_exponent) % 2) + bytes(public_exponent,'utf-8')) + b')' - elif isinstance(public_key, dsa.DSAPublicKey): - fp_str_ += b'(' + hexlify(b'DSAPublicKey') + b')' - fp_str_ += b'(' + hexlify(public_key.key_size) + b')' - public_value = '%x' % public_key.public_numbers().public_value - public_modulus = '%x' % public_key.public_numbers().parameter_numbers().public_modulus - sub_group_order = '%x' % public_key.public_numbers().parameter_numbers().sub_group_order - generator = '%x' % public_key.public_numbers().parameter_numbers().generator - fp_str_ += b'(' + hexlify(b'0' * (len(public_value) % 2) + bytes(public_value,'utf-8')) + b')' - fp_str_ += b'(' + hexlify(b'0' * (len(public_modulus) % 2) + bytes(public_modulus,'utf-8')) + b')' - fp_str_ += b'(' + hexlify(b'0' * (len(sub_group_order) % 2) + bytes(sub_group_order,'utf-8')) + b')' - fp_str_ += b'(' + hexlify(b'0' * (len(generator) % 2) + bytes(generator,'utf-8')) + b')' - fp_str_ += b')' - - # extract extension information - fp_str_ += b'(' - try: - for ext in cert.extensions: - fp_str_ += b'(' - fp_str_ += b'(' + hexlify(bytes(ext.oid._name,'utf-8')) + b')' - fp_str_ += b')' - fp_str_ += b')' - except: - fp_str_ += b'error parsing cert extensions)' - - del self.data_cache[flow_key] - - return protocol_type, fp_str_.decode(), None - - - def get_human_readable(self, fp_str_): - lit_fp = eval_fp_str_general(fp_str_) - fp_h = {} - fp_h['serial_number'] = lit_fp[0][0] - fp_h['signature_algorithm'] = unhexlify(lit_fp[1][0]).decode() - fp_h['issuer'] = {} - for issuer in lit_fp[2]: - fp_h['issuer'][unhexlify(issuer[0][0]).decode()] = unhexlify(issuer[1][0]).decode() - fp_h['validity_not_before'] = unhexlify(lit_fp[3][0]).decode() - fp_h['validity_not_after'] = unhexlify(lit_fp[4][0]).decode() - fp_h['subject'] = {} - for subject in lit_fp[5]: - fp_h['subject'][unhexlify(subject[0][0]).decode()] = unhexlify(subject[1][0]).decode() - - fp_h['public_key'] = {} - public_key_type = unhexlify(lit_fp[6][0][0]).decode() - fp_h['public_key']['type'] = public_key_type - if public_key_type == b'ECPublicKey': - fp_h['public_key']['key_size'] = int(unhexlify(lit_fp[6][1][0]),16) - fp_h['public_key']['curve_name'] = unhexlify(lit_fp[6][2][0]).decode() - if public_key_type == b'RSAPublicKey': - fp_h['public_key']['key_size'] = int(unhexlify(lit_fp[6][1][0]),16) - fp_h['public_key']['public_modulus'] = unhexlify(lit_fp[6][2][0]).decode() - fp_h['public_key']['public_exponent'] = unhexlify(lit_fp[6][3][0]).decode() - if public_key_type == b'DSAPublicKey': - fp_h['public_key']['key_size'] = int(unhexlify(lit_fp[6][1][0]),16) - fp_h['public_key']['public_value'] = unhexlify(lit_fp[6][2][0]).decode() - fp_h['public_key']['public_modulus'] = unhexlify(lit_fp[6][3][0]).decode() - fp_h['public_key']['sub_group_order'] = unhexlify(lit_fp[6][4][0]).decode() - fp_h['public_key']['generator'] = unhexlify(lit_fp[6][5][0]).decode() - - fp_h['extensions'] = {} - for ext in lit_fp[7]: - if len(ext) > 0 and len(ext[0]) > 0: - try: - fp_h['extensions'][unhexlify(ext[0][0]).decode()] = ''#self.parse_certificate_extension(unhexlify(ext[1][0]), unhexlify(ext[0][0])) - except: - fp_h['extensions'][ext[0][0]] = '' - - return fp_h - - - def int_2_hex(self, i): - r = b'%x' % i - if len(r) % 2 != 0: - r = b'0' + r - return r - - - def parse_certificate_extension(self, ext_value, name): - ext_obj = {} - - if name == 'keyUsage': - ext_obj['digital_signature'] = int(ext_value.digital_signature == True) - ext_obj['content_commitment'] = int(ext_value.content_commitment == True) - ext_obj['key_encipherment'] = int(ext_value.key_encipherment == True) - ext_obj['data_encipherment'] = int(ext_value.data_encipherment == True) - ext_obj['key_agreement'] = int(ext_value.key_agreement == True) - ext_obj['key_cert_sign'] = int(ext_value.key_cert_sign == True) - ext_obj['crl_sign'] = int(ext_value.crl_sign == True) - if ext_value.key_agreement == True: - ext_obj['encipher_only'] = int(ext_value.encipher_only == True) - ext_obj['decipher_only'] = int(ext_value.decipher_only == True) - else: - ext_obj['encipher_only'] = 0 - ext_obj['decipher_only'] = 0 - elif name == 'basicConstraints': - ext_obj['CA'] = int(ext_value.ca == True) - if ext_value.ca == True: - if ext_value.path_length == None: - ext_obj['path_length'] = 'no_restrictions' - else: - ext_obj['path_length'] = ext_value.path_length - elif name == 'extendedKeyUsage': - ext_obj['usages'] = [] - for usage in ext_value: - ext_obj['usages'].append(usage._name) - elif name == 'oCSPNoCheck': - ext_obj['OCSP_NO_CHECK'] = 1 - elif name == 'nameConstraints': - if ext_value.permitted_subtrees != None: - ext_obj['permitted_subtrees'] = [] - for subtree in ext_value.permitted_subtrees: - ext_obj['permitted_subtrees'].append(subtree.value) - if ext_value.excluded_subtrees != None: - ext_obj['excluded_subtrees'] = [] - for subtree in ext_value.excluded_subtrees: - ext_obj['excluded_subtrees'].append(subtree.value) - elif name == 'authorityKeyIdentifier': - ext_obj['key_identifier'] = ext_value.key_identifier.encode('hex') - if ext_value.authority_cert_issuer != None: - ext_obj['authority_cert_issuer'] = [] - for issuer in ext_value.authority_cert_issuer: - tmp_obj = {} - tmp_obj['type'] = get_name_type(issuer) - if tmp_obj['type'] == 'DirectoryName': - tmp_obj['value'] = [] - for n in issuer.value: - tmp_obj2 = {} - tmp_obj2['oid'] = n.oid.dotted_string - tmp_obj2['name'] = n.oid._name - tmp_obj2['value'] = n.value - tmp_obj['value'].append(tmp_obj2) - else: - tmp_obj['value'] = str(issuer.value) - ext_obj['authority_cert_issuer'].append(tmp_obj) - if ext_value.authority_cert_serial_number != None: - ext_obj['authority_cert_serial_number'] = ext_value.authority_cert_serial_number - elif name == 'subjectKeyIdentifier': - ext_obj['digest'] = ext_value.digest.encode('hex') - elif name == 'subjectAltName': - ext_obj['general_names'] = {} - for nt in name_types: - ext_obj['general_names'][name_types[nt]] = [] - for alt_name in ext_value.get_values_for_type(nt): - tmp_obj = {} - tmp_obj['type'] = name_types[nt] - tmp_obj['name'] = alt_name - ext_obj['general_names'][name_types[nt]].append(tmp_obj) - elif name == 'issuerAltName': - ext_obj['general_names'] = {} - for nt in name_types: - ext_obj['general_names'][name_types[nt]] = [] - for alt_name in ext_value.get_values_for_type(nt): - tmp_obj = {} - tmp_obj['type'] = name_types[nt] - tmp_obj['name'] = alt_name - ext_obj['general_names'][name_types[nt]].append(tmp_obj) - elif name == 'precertificateSignedCertificateTimestamps': - ext_obj['signed_certificate_timestamps'] = [] - for sct in ext_value.scts: - tmp_obj = {} - if sct.version == sct.version.v1: - tmp_version = 'v1' - elif sct.version == sct.version.v2: - tmp_version = 'v2' - else: - tmp_version = 'unknown' - tmp_obj['version'] = tmp_version - tmp_obj['log_id'] = sct.log_id.encode('hex') - tmp_obj['timestamp'] = str(sct.timestamp) - if sct.entry_type == sct.entry_type.X509_CERTIFICATE: - tmp_obj['entry_type'] = 'x509_certificate' - elif sct.entry_type == sct.entry_type.PRE_CERTIFICATE: - tmp_obj['entry_type'] = 'pre_certificate' - else: - tmp_obj['entry_type'] = 'unknown' - ext_obj['signed_certificate_timestamps'].append(tmp_obj) - elif name == 'authorityInfoAccess': - ext_obj['value'] = [] - for desc in ext_value: - tmp_obj = {} - tmp_obj['access_method'] = {} - tmp_obj['access_method']['oid'] = desc.access_method.dotted_string - tmp_obj['access_method']['name'] = desc.access_method._name - tmp_obj['access_location'] = {} - tmp_obj['access_location']['type'] = get_name_type(desc.access_location) - if tmp_obj['access_location']['type'] == 'DirectoryName': - tmp_obj['access_location']['value'] = [] - for n in desc.access_location.value: - tmp_obj2 = {} - tmp_obj2['oid'] = n.oid.dotted_string - tmp_obj2['name'] = n.oid._name - tmp_obj2['value'] = n.value - tmp_obj['access_location']['value'].append(tmp_obj2) - else: - tmp_obj['access_location']['value'] = str(desc.access_location.value) - ext_obj['value'].append(tmp_obj) - elif name == 'accessDescription': - ext_obj['type'] = ext_value.access_method.dotted_str - ext_obj['name'] = ext_value.access_method._name - ext_obj['access_location'] = {} - ext_obj['access_location']['type'] = get_name_type(ext_value.access_location) - if ext_obj['access_location']['type'] == 'DirectoryName': - ext_obj['access_location']['value'] = [] - for n in ext_value.access_location.value: - tmp_obj2 = {} - tmp_obj2['oid'] = n.oid.dotted_string - tmp_obj2['name'] = n.oid._name - tmp_obj2['value'] = n.value - ext_obj['access_location']['value'].append(tmp_obj2) - else: - ext_obj['access_location']['value'] = str(ext_value.access_location.value) - elif name == 'cRLDistributionPoints': - ext_obj['distribution_points'] = {} - for dist_point in ext_value: - if dist_point.full_name != None: - ext_obj['distribution_points']['full_names'] = [] - for n in dist_point.full_name: - tmp_obj = {} - tmp_obj['type'] = get_name_type(n) - if tmp_obj['type'] == 'DirectoryName': - tmp_obj['value'] = [] - for n1 in n.value: - tmp_obj2 = {} - tmp_obj2['oid'] = n1.oid.dotted_string - tmp_obj2['name'] = n1.oid._name - tmp_obj2['value'] = n1.value - tmp_obj['value'].append(tmp_obj2) - else: - tmp_obj['value'] = str(n.value) - ext_obj['distribution_points']['full_names'].append(tmp_obj) - elif dist_point.relative_name != None: - ext_obj['distribution_points']['relative_name'] = [] - for n in dist_point.relative_name: - tmp_obj = {} - tmp_obj['type'] = n.oid.dotted_str - tmp_obj['name'] = n.oid._name - tmp_obj['value'] = n.value - ext_obj['distribution_points']['relative_name'].append(tmp_obj) - elif dist_point.crl_issuer != None: - ext_obj['distribution_points']['crl_issuer'] = [] - for n in dist_point.crl_issuer: - tmp_obj = {} - tmp_obj['type'] = get_name_type(n) - if tmp_obj['type'] == 'DirectoryName': - tmp_obj['value'] = [] - for n1 in n.value: - tmp_obj2 = {} - tmp_obj2['oid'] = n1.oid.dotted_string - tmp_obj2['name'] = n1.oid._name - tmp_obj2['value'] = n1.value - tmp_obj['value'].append(tmp_obj2) - else: - tmp_obj['value'] = str(n.value) - ext_obj['distribution_points']['crl_issuer'].append(tmp_obj) - elif dist_point.reasons != None: - ext_obj['distribution_points']['reasons'] = [] - for n in dist_point.reasons: - ext_obj['distribution_points']['reasons'].append(n) - elif name == 'distributionPoint': - dist_point = ext_value - if dist_point.full_name != None: - ext_obj['full_names'] = [] - for n in dist_point.full_name: - tmp_obj = {} - tmp_obj['type'] = get_name_type(n) - if tmp_obj['type'] == 'DirectoryName': - tmp_obj['value'] = [] - for n1 in n.value: - tmp_obj2 = {} - tmp_obj2['oid'] = n1.oid.dotted_string - tmp_obj2['name'] = n1.oid._name - tmp_obj2['value'] = n1.value - tmp_obj['value'].append(tmp_obj2) - else: - tmp_obj['value'] = str(n.value) - ext_obj['full_names'].append(tmp_obj) - elif dist_point.relative_name != None: - ext_obj['relative_name'] = [] - for n in dist_point.relative_name: - tmp_obj = {} - tmp_obj['type'] = n.oid.dotted_str - tmp_obj['name'] = n.oid._name - tmp_obj['value'] = n.value - ext_obj['relative_name'].append(tmp_obj) - elif dist_point.crl_issuer != None: - ext_obj['crl_issuer'] = [] - for n in dist_point.crl_issuer: - tmp_obj = {} - tmp_obj['type'] = get_name_type(n) - if tmp_obj['type'] == 'DirectoryName': - tmp_obj['value'] = [] - for n1 in n.value: - tmp_obj2 = {} - tmp_obj2['oid'] = n1.oid.dotted_string - tmp_obj2['name'] = n1.oid._name - tmp_obj2['value'] = n1.value - tmp_obj['value'].append(tmp_obj2) - else: - tmp_obj['value'] = str(n.value) - ext_obj['crl_issuer'].append(tmp_obj) - elif dist_point.reasons != None: - ext_obj['reasons'] = [] - for n in dist_point.reasons: - ext_obj['reasons'].append(n) - elif name == 'reasonFlags': - ext_obj['value'] = [] - for r in ext_value: - ext_obj['value'].append(r) - elif name == 'inhibitAnyPolicy': - ext_obj['type'] = ext_value.oid.dotted_str - ext_obj['name'] = ext_value.oid._name - ext_obj['skip_certs'] = ext_value.skip_certs - elif name == 'policyConstraints': - ext_obj['type'] = ext_value.oid.dotted_str - ext_obj['name'] = ext_value.oid._name - if ext_value.require_explicit_policy != None: - ext_obj['require_explicit_policy'] = ext_value.require_explicit_policy - if ext_value.inhibit_policy_mapping != None: - ext_obj['inhibit_policy_mapping'] = ext_value.inhibit_policy_mapping - elif name == 'cRLNumber': - ext_obj['type'] = ext_value.oid.dotted_str - ext_obj['name'] = ext_value.oid._name - ext_obj['crl_number'] = ext_value.crl_number - elif name == 'unrecognizedExtension': - ext_obj['type'] = ext_value.oid.dotted_str - ext_obj['name'] = ext_value.oid._name - ext_obj['value'] = ext_value.value.encode('hex') - elif name == 'certificatePolicies': - ext_obj['policies'] = [] - for policy in ext_value: - tmp_obj = {} - tmp_obj['oid'] = policy.policy_identifier.dotted_string - tmp_obj['name'] = policy.policy_identifier._name - if policy.policy_qualifiers != None: - tmp_obj['qualifiers'] = [] - for qualifier in policy.policy_qualifiers: - if type(qualifier) == UserNotice: - tmp_obj['qualifiers'].append(qualifier.explicit_text) - else: - tmp_obj['qualifiers'].append(str(qualifier)) - ext_obj['policies'].append(tmp_obj) - else: - ext_obj['value'] = 'OID_NYI' - - - return ext_obj diff --git a/python/pmercury/protocols/tls_decrypt.py b/python/pmercury/protocols/tls_decrypt.py deleted file mode 100644 index 3b3a34cf..00000000 --- a/python/pmercury/protocols/tls_decrypt.py +++ /dev/null @@ -1,387 +0,0 @@ -""" - Copyright (c) 2019 Cisco Systems, Inc. All rights reserved. - License at https://github.com/cisco/mercury/blob/master/LICENSE -""" - -import os -import sys -import socket -from binascii import hexlify, unhexlify - -# application layer protocol parsing imports -#from http2 import HTTP2 -from pmercury.protocols.http import HTTP -from pmercury.protocols.http_server import HTTP_Server -from pmercury.protocols.http2 import HTTP2 - -# TLS helper classes -sys.path.append(os.path.dirname(os.path.abspath(__file__))) -sys.path.append(os.path.dirname(os.path.abspath(__file__))+'/../') -from pmercury.utils.tls_utils import * -from pmercury.utils.tls_constants import * -from pmercury.utils.tls_crypto import TLS_CRYPTO - - -class TLS_Decrypt: - def __init__(self, keyfile): - self.secrets = {} - self.data_cache = {} - self.tls_sequence = {} - self.tls13_handshake = {} - self.session_metadata = {} - - self.http2 = HTTP2() - self.http = HTTP() - self.http_server = HTTP_Server() - self.tls_crypto = TLS_CRYPTO() - self.initialize_keys(keyfile) - - - def initialize_keys(self, keyfile): - if not os.path.isfile(keyfile): - print('warning: key file does not yet exist') - return - - # parse the sslkeylog file, handles TLS 1.2/1.3 formats - with open(keyfile, 'r') as fp: - for line in fp: - self.process_key_line(line) - - def process_key_line(self, line): - if line.startswith('#') or line.strip() == '': - return - tokens = line.strip().split() - - if len(tokens) < 3: - return - elif len(tokens[1]) != 64: - return - elif len(tokens[2]) != 96 and len(tokens[2]) != 64: - return - - if tokens[1] not in self.secrets: - self.secrets[tokens[1]] = {} - - if tokens[0] == 'CLIENT_RANDOM': - self.secrets[tokens[1]]['master_secret'] = tokens[2] - elif tokens[0] == 'CLIENT_HANDSHAKE_TRAFFIC_SECRET': - self.secrets[tokens[1]]['client_handshake_secret'] = tokens[2] - elif tokens[0] == 'SERVER_HANDSHAKE_TRAFFIC_SECRET': - self.secrets[tokens[1]]['server_handshake_secret'] = tokens[2] - elif tokens[0] == 'CLIENT_TRAFFIC_SECRET_0': - self.secrets[tokens[1]]['client_traffic_secret'] = tokens[2] - elif tokens[0] == 'SERVER_TRAFFIC_SECRET_0': - self.secrets[tokens[1]]['server_traffic_secret'] = tokens[2] - - # TODO: handle TLS 1.3 resumption keys - - - def proto_identify_ch(self, data, offset): - if (data[offset] == 22 and - data[offset+1] == 3 and - data[offset+2] <= 3 and - data[offset+5] == 1 and - data[offset+9] == 3 and - data[offset+10] <= 3): - return True - return False - - - def client_hello(self, data, flow_key): - # Parse TLS version - if str(hexlify(data[4:6]),'utf-8') in TLS_VERSION: - self.session_metadata[flow_key]['version'] = TLS_VERSION[str(hexlify(data[4:6]),'utf-8')] - else: - self.session_metadata[flow_key]['version'] = 'unknown (%s)' % (str(hexlify(data[4:6]),'utf-8')) - - # Parse ClientHello client_random - self.session_metadata[flow_key]['client_random'] = str(hexlify(data[6:38]),'utf-8') - offset = 38 - - - def server_hello(self, data, flow_key): - # Parse ServerHello server_random - self.session_metadata[flow_key]['server_random'] = str(hexlify(data[6:38]),'utf-8') - offset = 38 - - # Parse ServerHello session_id ... - # if this is not TLS 1.3 - session_id_length = data[offset] - offset += 1 - if session_id_length != 0: - offset += session_id_length - - # Parse ServerHello selected_cipher_suite - if str(hexlify(data[offset:offset+2]),'utf-8') not in TLS_CIPHER_SUITE_NAMES: - return - self.session_metadata[flow_key]['selected_cipher_suite'] = TLS_CIPHER_SUITE_NAMES[str(hexlify(data[offset:offset+2]),'utf-8')] - offset += 2 - - # Parse ServerHello compression method ... - offset += 1 - - # Parse ServerHello extensions - if len(data) < offset+1: # check for existence of extensions - return - ext_total_len = int(hexlify(data[offset:offset+2]),16) - offset += 2 - - # parse/extract/skip extension type/length/values - while ext_total_len > 0: - if len(data[offset:]) == 0: - return - - if int(hexlify(data[offset:offset+2]),16) == 16: - alpn_len = data[offset+6] - alpn_offset = offset+7 - alpn_data = data[alpn_offset:alpn_offset+alpn_len] - self.session_metadata[flow_key]['application_layer_protocol'] = str(alpn_data,'utf-8') - - if int(hexlify(data[offset:offset+2]),16) == 43: - self.session_metadata[flow_key]['version'] = 'TLS 1.3' - - tmp_fp_ext, offset, ext_len = parse_extension(data, offset) - ext_total_len -= 4 + ext_len - - - def application_data(self, data, flow_key, length): - # Parse Application Data length - record_length = int(hexlify(data[3:5]),16) - - if self.session_metadata[flow_key]['client_random'] not in self.secrets: - return - - # Decrypt Application Data - tmp_data, pad_length, auth_length = self.tls_crypto.decrypt(data[5:5+record_length], flow_key, - self.cur_mode, self.session_metadata[flow_key], - self.tls_sequence, self.secrets, self.tls13_handshake) - if tmp_data == None or len(tmp_data) < 2: - return - - # check if the message is an encrypted alert message - if len(tmp_data) >= 2 and len(tmp_data) < 4: - if tmp_data[0] in TLS_ALERT_LEVELS and tmp_data[1] in TLS_ALERT_DESCRIPTIONS: - return - - # check if the message is an encrypted handshake message - if tmp_data[0] in TLS_HANDSHAKE_MESSAGE_TYPES: - if int(hexlify(tmp_data[1:4]),16) <= len(tmp_data): - self.parse_encrypted_content_message(tmp_data, flow_key) - return - - - if 'application_layer_protocol' not in self.session_metadata[flow_key]: - self.determine_alp(tmp_data, flow_key) - if 'application_layer_protocol' in self.session_metadata[flow_key]: - if self.session_metadata[flow_key]['application_layer_protocol'].startswith('http/1'): - if self.cur_mode == 'client': - http_fp,_ = self.http.fingerprint(tmp_data, 0, len(tmp_data)) - if http_fp != None: - return http_fp - else: - http_fp,_ = self.http_server.fingerprint(tmp_data, 0, len(tmp_data)) - if http_fp != None: - return http_fp - elif self.session_metadata[flow_key]['application_layer_protocol'] == 'h2': - h2_fp = self.http2.fingerprint(tmp_data, flow_key, self.cur_mode) - if h2_fp != None: - return h2_fp - - - # The ALPN was not in the ServerHello, use heuristics - def determine_alp(self, data, flow_key): - if b'HTTP/1.1' in data: - self.session_metadata[flow_key]['application_layer_protocol'] = 'http/1.1' - elif b'HTTP/1' in data: - self.session_metadata[flow_key]['application_layer_protocol'] = 'http/1.0' - elif b'HTTP/2.0' in data: - self.session_metadata[flow_key]['application_layer_protocol'] = 'h2' - else: - self.session_metadata[flow_key]['application_layer_protocol'] = 'h2' - - - def alert(self, data, flow_key): - if int(hexlify(data[3:5]),16) > 2: - tmp, pad_length, auth_length = self.tls_crypto.decrypt(data[5:5+flow['length']], self.session_metadata[flow_key], flow_key, self.cur_mode, self.session_metadata, self.tls_sequence, self.secrets, self.tls13_handshake) - - - def encrypted_handshake_message(self, data, flow_key): - record_length = int(hexlify(data[3:5]),16) - - # Decrypt Data - tmp_data = None - if self.session_metadata[flow_key]['client_random'] in self.secrets: - tmp_data, pad_length, auth_length = self.tls_crypto.decrypt(data[5:5+record_length], flow_key, self.cur_mode, - self.session_metadata, self.tls_sequence, - self.secrets, self.tls13_handshake) - - # Parse encrypted handshake message - if tmp_data != None: - self.parse_encrypted_content_message(tmp_data, flow_key) - - - def parse_encrypted_content_message(self, data, flow_key): - cur_flow_key = flow_key + self.cur_mode - - offset = 0 - while offset < len(data)-1: - record_length = int(hexlify(data[offset+1:offset+4]),16) - - handshake_type = data[offset] - if handshake_type not in TLS_HANDSHAKE_MESSAGE_TYPES: - offset += 4 + record_length - continue - handshake_name = TLS_HANDSHAKE_MESSAGE_TYPES[handshake_type] - if handshake_name == 'finished': - self.tls13_handshake[cur_flow_key] = False - if self.session_metadata[flow_key]['version'].startswith('TLS 1.3'): - self.tls_sequence[cur_flow_key] = 0 - offset += 4 + record_length - - - def get_flow_key(self, data, ip_offset, tcp_offset, ip_type, ip_length): - src_port = data[tcp_offset:tcp_offset+2] - dst_port = data[tcp_offset+2:tcp_offset+4] - if ip_type == 'ipv4': - o_ = ip_offset+ip_length-8 - src_addr = data[o_:o_+4] - o_ = ip_offset+ip_length-4 - dst_addr = data[o_:o_+4] - else: - o_ = ip_offset+ip_length-32 - src_addr = data[o_:o_+16] - o_ = ip_offset+ip_length-16 - dst_addr = data[o_:o_+16] - pr = b'\x06' # currently only support TCP - - key_1 = hexlify(b''.join([src_addr,dst_addr,src_port,dst_port,pr])).decode() - key_2 = hexlify(b''.join([dst_addr,src_addr,dst_port,src_port,pr])).decode() - if key_1 in self.session_metadata: - return key_1, 'client' - elif key_2 in self.session_metadata: - return key_2, 'server' - else: - return key_1, 'client' - - - def fingerprint(self, data, ip_offset, tcp_offset, app_offset, ip_type, ip_length, data_len): - protocol_type = 'tls_decrypt_' - fp_str_ = None - if app_offset+12 >= data_len: - return protocol_type, fp_str_, None - flow_key, mode = self.get_flow_key(data, ip_offset, tcp_offset, ip_type, ip_length) - self.cur_mode = mode - cur_flow_key = flow_key + mode - if flow_key not in self.session_metadata and self.proto_identify_ch(data, app_offset) == False: - return protocol_type, fp_str_, None - elif self.proto_identify_ch(data, app_offset): - self.session_metadata[flow_key] = {} - - data = data[app_offset:] - - # check TLS version to limit possibility of parsing junk - if str(hexlify(data[1:3]),'utf-8') not in TLS_VERSION or len(data) < 5: - # keep state to deal with larger packets - if flow_key+self.cur_mode in self.data_cache and self.data_cache[flow_key+self.cur_mode][2]: - data = self.data_cache[flow_key+self.cur_mode][0] + data - if len(data[5:]) < self.data_cache[flow_key+self.cur_mode][1]: - self.data_cache[flow_key+self.cur_mode][0] = data - return protocol_type, fp_str_, None - else: - return protocol_type, fp_str_, None - - seen_client_hello = False - offset = 0 - while offset < len(data): - # check TLS version to limit possibility of parsing junk - if str(hexlify(data[offset+1:offset+3]),'utf-8') not in TLS_VERSION: - if len(data[offset:]) < 5: - self.data_cache[flow_key+self.cur_mode] = [data[offset:],0,True] - return None, fp_str_, None - # keep state to hopefully recover, most likely due to packet fragmentation - if flow_key+self.cur_mode not in self.data_cache: - self.data_cache[flow_key+self.cur_mode] = [data[offset:],0,True] - return protocol_type, fp_str_, None - else: - return protocol_type, fp_str_, None - if len(data[offset:]) < 5: - if flow_key+self.cur_mode not in self.data_cache: - self.data_cache[flow_key+self.cur_mode] = [data[offset:],0,True] - else: - self.data_cache[flow_key+self.cur_mode][0] += data[offset:] - return protocol_type, fp_str_, None - - record_length = int(hexlify(data[offset+3:offset+5]),16) - if record_length > len(data[offset+5:]): - self.data_cache[flow_key+self.cur_mode] = [data[offset:],record_length,True] - offset += 5 + record_length - continue - else: - self.data_cache[flow_key+self.cur_mode] = [b'',0,False] - - record_type = data[offset] - if record_type not in TLS_RECORD_TYPES: - offset += 5 + record_length - continue - - - record_name = TLS_RECORD_TYPES[record_type] - if record_name == 'change_cipher_spec': - self.session_metadata[flow_key][self.cur_mode + '_change_cipher_spec'] = 1 - elif record_name == 'handshake': - # check for encrypted messages - if (flow_key in self.session_metadata and - self.cur_mode + '_change_cipher_spec' in self.session_metadata[flow_key]): - self.encrypted_handshake_message(data[offset:], flow_key) - offset += 5 + record_length - continue - - - handshake_type = data[offset+5] - if handshake_type not in TLS_HANDSHAKE_MESSAGE_TYPES: - offset += 5 + record_length - continue - handshake_name = TLS_HANDSHAKE_MESSAGE_TYPES[handshake_type] - if handshake_name == 'client_hello': - seen_client_hello = True - if flow_key not in self.session_metadata: - self.session_metadata[flow_key] = {} - self.session_metadata[flow_key]['seen_client_hello'] = 1 - self.client_hello(data[offset+5:], flow_key) - - elif handshake_name == 'server_hello': - self.server_hello(data[offset+5:], flow_key) - - elif handshake_name == 'finished': - self.tls13_handshake[cur_flow_key] = False - if self.session_metadata[flow_key]['version'].startswith('TLS 1.3'): - self.tls_sequence[cur_flow_key] = 0 - - elif record_name == 'application_data': - fp_str_ = self.application_data(data[offset:], flow_key, record_length) - if fp_str_ != None: - protocol_type += self.session_metadata[flow_key]['application_layer_protocol'].split('/')[0] - if mode == 'server': - protocol_type += '_' + mode - - offset += 5 + record_length - - - if flow_key in self.session_metadata and 'seen_client_hello' in self.session_metadata[flow_key]: - return protocol_type, fp_str_, None - else: - self.data_cache.pop(flow_key+self.cur_mode,None) - self.tls_sequence.pop(flow_key+self.cur_mode,None) - self.tls13_handshake.pop(flow_key+self.cur_mode,None) - self.session_metadata.pop(flow_key,None) - self.session_metadata.pop(flow_key+self.cur_mode,None) - return protocol_type, fp_str_, None - - - def get_human_readable(self, fp_str_): - if fp_str_.startswith('(3a'): - return self.http2.get_human_readable(fp_str_) - else: - return self.http.get_human_readable(fp_str_) - - diff --git a/python/pmercury/protocols/tls_server.py b/python/pmercury/protocols/tls_server.py deleted file mode 100644 index 3a406755..00000000 --- a/python/pmercury/protocols/tls_server.py +++ /dev/null @@ -1,106 +0,0 @@ -""" - Copyright (c) 2019 Cisco Systems, Inc. All rights reserved. - License at https://github.com/cisco/mercury/blob/master/LICENSE -""" - -import os -import sys -from socket import htons - -sys.path.append(os.path.dirname(os.path.abspath(__file__))) -sys.path.append(os.path.dirname(os.path.abspath(__file__))+'/../') -from pmercury.utils.tls_utils import * -from pmercury.utils.tls_constants import * -from pmercury.protocols.protocol import Protocol - - -MAX_CACHED_RESULTS = 2**24 - - -class TLS_Server(Protocol): - - def __init__(self, fp_database=None, config=None): - # populate fingerprint databases - self.fp_db = {} - - - @staticmethod - def proto_identify(data, offset, data_len): - if data_len-offset < 16: - return False - if (data[offset] == 22 and - data[offset+1] == 3 and - data[offset+2] <= 3 and - data[offset+5] == 2 and - data[offset+9] == 3 and - data[offset+10] <= 3): - return True - return False - - - @staticmethod - def fingerprint(data, offset, data_len): - offset += 5 - - # get record length - record_length = int(data[offset+1:offset+4].hex(),16) - - # extract handshake version - fp_ = f'({data[offset+4]:02x}{data[offset+5]:02x})' - - # skip header/server_random - offset += 38 - record_length -= 34 - - # parse/skip session_id - session_id_length = data[offset] - offset += 1 + session_id_length - record_length -= 1 + session_id_length - if offset >= data_len: - return None, None - - # parse selected_cipher_suite - fp_ += f'({data[offset]:02x}{data[offset+1]:02x})' - offset += 2 - if offset >= data_len: - return fp_+'()', None - - # parse/skip compression method - compression_method = data[offset] - offset += 1 - record_length -= 3 - if offset >= data_len or record_length < 2: - return fp_+'()', None - - # parse/skip extensions length - ext_total_len = int.from_bytes(data[offset:offset+2], byteorder='big') - offset += 2 - if offset >= data_len: - return fp_+'()', None - - # parse/extract/skip extension type/length/values - fp_ += '(' - while ext_total_len > 0: - if offset >= data_len: - return fp_+')', None - - tmp_fp_ext, offset, ext_len = parse_extension(data, offset) - fp_ += '(%s)' % tmp_fp_ext - - ext_total_len -= 4 + ext_len - fp_ += ')' - - return fp_, None - - - def get_human_readable(self, fp_str_): - lit_fp = eval_fp_str(fp_str_) - - fp_h = {} - fp_h['version'] = get_version_from_str(lit_fp[0]) - fp_h['selected_cipher_suite'] = get_cs_from_str(lit_fp[1]) - fp_h['extensions'] = [] - if len(lit_fp) > 2: - fp_h['extensions'] = get_ext_from_str(lit_fp[2], mode='server') - - return fp_h diff --git a/python/pmercury/test/__init__.py b/python/pmercury/test/__init__.py deleted file mode 100644 index e69de29b..00000000 diff --git a/python/pmercury/test/pmercury_accuracy.py b/python/pmercury/test/pmercury_accuracy.py deleted file mode 100755 index 8321d8a2..00000000 --- a/python/pmercury/test/pmercury_accuracy.py +++ /dev/null @@ -1,733 +0,0 @@ -#!/usr/bin/env python3 - - -import os -import sys -import gzip -import json -import time -import optparse -import importlib -from importlib import machinery -from multiprocessing import Pool - -sys.path.append(os.path.dirname(os.path.abspath(__file__))+'/../../') - -from fp_constants import * - -fingerprinter = None - -app_families_file = '../../../resources/app_families.txt' -app_families = {} -for line in open(app_families_file, 'r'): - tokens = line.strip().split(',') - for i in range(1, len(tokens)): - app_families[tokens[i]] = tokens[0] - - -app_families_strict_file = '../../../resources/app_families_strict.txt' -app_families_strict = {} -for line in open(app_families_strict_file, 'r'): - tokens = line.strip().split(',') - for i in range(1, len(tokens)): - app_families_strict[tokens[i]] = tokens[0] - -fp_sni_blacklist = set([]) - - -class Validation: - - def __init__(self, in_file, fp_db_name, output, categories, top, blacklist, malware_ctx_file, proc_list): - if output == sys.stdout: - self.out_file_pointer = sys.stdout - else: - self.out_file_pointer = open(output, 'w') - self.categories = categories - self.top = top - self.blacklist = blacklist - self.malware_ctx = None - if malware_ctx_file != None: - self.malware_ctx = {} - for line in gzip.open(malware_ctx_file): - fp_ = json.loads(line) - self.malware_ctx[fp_['str_repr']] = fp_ - - self.proc_list = None - if proc_list != None: - self.proc_list = [] - t_ = proc_list.split(';') - for s in t_: - if s != '': - tmp_proc_list = s.split(',') - self.categories.append(tmp_proc_list[0]) - self.proc_list.append(tmp_proc_list) - - # read in application categories - app_cat_file = 'application_categories.json.gz' - with gzip.open(app_cat_file,'r') as fp: - self.app_cat_data = json.loads(fp.read()) - - self.mt_pool = Pool(32) - - self.input_file = in_file - if in_file.endswith('.csv.gz'): - self.data = self.read_file_csv(in_file) - elif in_file.endswith('.json.gz') and 'dmz' in in_file: - self.data = self.read_file_dmz_json(in_file) - elif in_file.endswith('.json.gz'): - self.data = self.read_file_json(in_file) - else: - print('error: file format not supported') - sys.exit(-1) - - - def validate_process_identification(self): - results = [] - unknown_fp = 0 - unknown_s = 0 - - if self.top: - results = self.mt_pool.map(get_results_top, [self.data[k] for k in self.data]) - elif self.blacklist: - results = self.mt_pool.map(get_results_blacklist, [self.data[k] for k in self.data]) - else: - results = self.mt_pool.map(get_results, [self.data[k] for k in self.data]) -# for k in self.data: -# results.append(get_results(self.data[k])) - - self.data = None - - self.analyze_results(results) - - - def analyze_results(self, results): - r_tmp_ = self.mt_pool.map(process_result, [(sl, self.categories) for sl in results]) - r_tmp_ = [x for sl in r_tmp_ for x in sl] - r_ = [sum([row[i] for row in r_tmp_]) for i in range(0,len(r_tmp_[0][:-1]))] - - print('FILE: %s' % self.input_file) - print('\tTotal:\t\t\t\t % 8i' % r_[0]) - print('\t :\t top-1 top-2 top-3 top-4 top-5') - print('\tProcess Name Category Accuracy:\t %0.6f %0.6f %0.6f %0.6f %0.6f' % (r_[2]/r_[0], (r_[2]+r_[5])/r_[0], (r_[2]+r_[5]+r_[7])/r_[0], (r_[2]+r_[5]+r_[7]+r_[9])/r_[0], (r_[2]+r_[5]+r_[7]+r_[9]+r_[11])/r_[0])) - print('\tProcess Name Accuracy:\t\t %0.6f %0.6f %0.6f %0.6f %0.6f' % (r_[1]/r_[0], (r_[1]+r_[4])/r_[0], (r_[1]+r_[4]+r_[6])/r_[0], (r_[1]+r_[4]+r_[6]+r_[8])/r_[0], (r_[1]+r_[4]+r_[6]+r_[8]+r_[9])/r_[0])) -# print('\tSHA-256 Accuracy:\t\t %0.6f' % (r_[3]/r_[0])) - - r_c = [row[-1] for row in r_tmp_] - idx = 0 - for c in self.categories: - if c == '': - continue - r_ = [sum([row[idx][i] for row in r_c]) for i in range(0,len(r_c[0][0]))] - print('\n\t%s Accuracy:\t\t %0.6f' % (c, (r_[1]/r_[0]))) - print('\t%s Confusion Matrix:' % c) - print('\t\t\t Positive Negative') - print('\t\tPositive:% 9i\t% 9i' % (r_[2], r_[5])) - print('\t\tNegative:% 9i\t% 9i' % (r_[4], r_[3])) - if r_[2]+r_[5] > 0: - print('\t\tRecall: %0.6f' % (r_[2]/(r_[2]+r_[5]))) - else: - print('\t\tRecall: %0.6f' % (0.0)) - if r_[2]+r_[4] > 0: - print('\t\tPrecision: %0.6f' % (r_[2]/(r_[2]+r_[4]))) - else: - print('\t\tPrecision: %0.6f' % (0.0)) - - idx += 1 - - - def read_file_csv(self, f): - data = {} - - max_lines = 30000000 - cur_line = 0 - - start = time.time() - for line in os.popen('zcat %s' % (f)): - cur_line += 1 - if cur_line > max_lines: - break -# if '(0000)' not in line: -# continue - t_ = line.strip().split(',') - src = t_[0] - proc = t_[3] - sha256 = t_[4] - type_ = t_[5] - fp_str = t_[6].replace('()','') - dst_x = t_[7].split(')') - os_ = clean_os_str(t_[8]) - if os_ == None: - continue - - dst_ip = dst_x[0][1:] - dst_port = int(dst_x[1][1:]) - server_name = dst_x[2][1:] - src_port = int(t_[9].split(')')[1][1:]) - av_hits = 0 - if len(t_) > 10: - av_hits = int(t_[10]) - - proc = clean_proc_name(proc) - - if proc in uninformative_proc_names: - continue - - fp_malware_ = False - if self.malware_ctx != None: - if fp_str in self.malware_ctx: - fp_malware_ = is_fp_malware(self.malware_ctx[fp_str]) - else: - continue - - app_cat = None - if proc in self.app_cat_data: - app_cat = self.app_cat_data[proc] - malware = is_proc_malware({'process':proc}, fp_malware_, av_hits) - domain = server_name - sni_split = server_name.split('.') - if len(sni_split) > 1: - domain = sni_split[-2] + '.' + sni_split[-1] - if server_name in sni_whitelist or domain in domain_whitelist: - malware = False - app_cats = {} - app_cats['malware'] = malware - for c in self.categories: - if c == 'malware': - app_cats[c] = malware - else: - app_cats[c] = False - if c == app_cat: - app_cats[c] = True - - if os_ == None: - continue - - if src not in data: - data[src] = [] - - data[src].append((src,src_port,proc,sha256,type_,fp_str,dst_ip,dst_port,server_name,1,os_,app_cats, self.proc_list)) - - print('time to read data:\t%0.2f' % (time.time()-start)) - - return data - - - def read_file_json(self, f): - data = {} - - start = time.time() - key_ = 0 - data[key_] = [] - for line in os.popen('zcat %s' % (f)): - fp_ = json.loads(line) - if 'str_repr' in fp_: - fp_str = fp_['str_repr'] - else: - fp_str = fp_['md5'] - - if 'process_info' in fp_: - new_procs = [] - fp_malware_ = is_fp_malware(fp_) - for p_ in fp_['process_info']: - if 'process' not in p_: - p_['process'] = p_['filename'] - p_['process'] = clean_proc_name(p_['process']) - if is_proc_malware(p_, fp_malware_): - new_procs.extend(clean_malware_proc(p_)) - else: - new_procs.append(p_) - fp_['process_info'] = new_procs - - - for p_ in fp_['process_info']: - proc = p_['process'] - sha256 = p_['sha256'] - - if p_['process'] in uninformative_proc_names: - continue - - - - # uncomment to classify non-top processes -# pn = proc -# pn = app_families[pn] if pn in app_families else pn -# if pn in ['Chromium','Firefox','Safari','Internet Explorer','Adobe Tools', -# 'Microsoft Office','Cisco Webex','Cisco AMP','iCloud','Box']: -# continue - - - - - app_cat = None - if proc in self.app_cat_data: - app_cat = self.app_cat_data[proc] - malware = is_proc_malware(p_, False) - app_cats = {} - app_cats['malware'] = malware - for c in self.categories: - if c == 'malware': - app_cats[c] = malware - else: - app_cats[c] = False - if c == app_cat: - app_cats[c] = True - - for x_ in p_['dst_info']: - dst_x = x_['dst'].split(')') - dst_ip = dst_x[0][1:] - dst_port = int(dst_x[1][1:]) - server_name = dst_x[2][1:] - data[key_].append((None,None,proc,sha256,'tls',fp_str,dst_ip,dst_port, - server_name,x_['count'],None,app_cats,self.proc_list)) - - if len(data[key_]) > 5000: - key_ += 1 - data[key_] = [] - - print('time to read data:\t%0.2f' % (time.time()-start)) - - return data - - - def read_file_dmz_json(self, f): - data = {} - - key_ = 0 - data[key_] = [] - start = time.time() - for line in os.popen('zcat %s' % (f)): - fp_ = json.loads(line) - if 'str_repr' in fp_: - fp_str = fp_['str_repr'] - else: - fp_str = fp_['md5'] - if fp_str in schannel_fps: - fp_str = 'schannel' - - proc = 'dmz_process' - sha256 = 'dmz_process' - app_cats = {} - app_cats['malware'] = False - -# if fp_str not in data: -# data[fp_str] = [] - - dst_info_key = 'dmz_dst_info' - if dst_info_key not in fp_: - dst_info_key = 'dst_info' - - for x_ in fp_[dst_info_key]: - dst_x = x_['dst'].split(')') - dst_ip = dst_x[0][1:] - dst_port = int(dst_x[1][1:]) - server_name = dst_x[2][1:] -# data[fp_str].append((None,None,proc,sha256,'tls',fp_str,dst_ip,dst_port, -# server_name,x_['count'],None,app_cats)) - data[key_].append((None,None,proc,sha256,'tls',fp_str,dst_ip,dst_port, - server_name,x_['count'],None,app_cats,self.proc_list)) - - if len(data[key_]) > 5000: - key_ += 1 - data[key_] = [] - - print('time to read data:\t%0.2f' % (time.time()-start)) - - return data - - - - -def get_results(data): - results = [] - for d_ in data: - src_ip = d_[0] - src_port = d_[1] - proc = d_[2] - sha256 = d_[3] - type_ = d_[4] - str_repr = d_[5] - dst_ip = d_[6] - dst_port = d_[7] - server_name = d_[8] - cnt = d_[9] - os_ = d_[10] - app_cats = d_[11] - target_proc = d_[12] - protocol = 6 - ts = 0.00 - -# if '()(' in str_repr: -# continue - - # uncomment to get results for only approximate matches -# if str_repr in fingerprinter.parsers['tls'].fp_db and 'approx_str' not in fingerprinter.parsers['tls'].fp_db[str_repr]: -# continue - - # uncomment to get results without approximate matches - fp_ = fingerprinter.get_database_entry(str_repr, type_) - if fp_ == None or 'approx_str' in fp_: - continue - - flow = fingerprinter.process_csv(type_, str_repr, src_ip, dst_ip, src_port, dst_port, - protocol, ts, {'server_name': server_name}) - - if 'analysis' not in flow: - continue - r_ = flow['analysis'] - if 'probable_processes' not in r_: - continue - pi_ = r_['probable_processes'][0] - - # uncomment to ignore lower scores -# if pi_['score'] < 0.99: -# continue - - app_cat = 'None' - for k in app_cats: - if app_cats[k] == True: - app_cat = k - - o_ = {} - o_['count'] = cnt - o_['fp_str'] = str_repr - o_['score'] = pi_['score'] - - o_['ground_truth'] = {'process': proc, 'sha256': sha256, 'server_name': server_name, 'dst_ip': dst_ip} - o_['ground_truth']['categories'] = {'malware': app_cats['malware'], app_cat: True} - if target_proc != None: - for test_proc in target_proc: - o_['ground_truth']['categories'][test_proc[0]] = False - if proc in test_proc: - o_['ground_truth']['categories'][test_proc[0]] = True - - o_['inferred_truth'] = {'process': pi_['process'].lower(), 'sha256': pi_['sha256'], 'probable_processes': r_['probable_processes']} - o_['inferred_truth']['categories'] = {} - if target_proc != None: - for test_proc in target_proc: - o_['inferred_truth']['categories'][test_proc[0]] = False - if pi_['process'] in test_proc: - o_['inferred_truth']['categories'][test_proc[0]] = True - o_['inferred_truth']['categories'][pi_['category']] = True - if 'malware' in pi_: - o_['inferred_truth']['categories']['malware'] = pi_['malware'] - else: - o_['inferred_truth']['categories']['malware'] = False - - results.append(o_) - - return tuple(results) - - -def get_results_blacklist(data): - global fp_sni_blacklist - results = [] - for d_ in data: - src_ip = d_[0] - src_port = d_[1] - proc = d_[2] - sha256 = d_[3] - type_ = d_[4] - str_repr = d_[5] - dst_ip = d_[6] - dst_port = d_[7] - server_name = d_[8] - cnt = d_[9] - os_ = d_[10] - app_cats = d_[11] - protocol = 6 - ts = 0.00 - - o_ = {} - o_['count'] = cnt - o_['fp_str'] = str_repr - o_['score'] = 0.0 - o_['ground_truth'] = {'process': proc, 'sha256': sha256, 'server_name': server_name} - o_['ground_truth']['categories'] = {'malware': app_cats['malware']} - o_['inferred_truth'] = {'process': 'n/a', 'sha256': 'n/a'} - -# k = '%s,%s' % (str_repr, server_name) - k = '%s,%s' % (str_repr, dst_ip) -# k = '%s' % (dst_ip) - if k in fp_sni_blacklist: - o_['inferred_truth']['categories'] = {'malware': True} - else: - o_['inferred_truth']['categories'] = {'malware': False} - - results.append(o_) - - return results - - -def get_results_top(data): - results = [] - for d_ in data: - proc = d_[2] - sha256 = d_[3] - type_ = d_[4] - str_repr = d_[5] - dst_ip = d_[6] - server_name = d_[8] - cnt = d_[9] - app_cats = d_[11] - target_proc = d_[12] - - fp_ = fingerprinter.get_database_entry(str_repr, type_) - if fp_ == None: - continue - if 'process_info' not in fp_: - continue - - pi_ = fp_['process_info'][0] - if pi_['process'] == 'Generic DMZ Traffic': - pi_ = fp_['process_info'][1] - pi_['malware'] = fp_['process_info'][0]['malware'] - if 'application_category' not in pi_: - pi_['application_category'] = 'None' - - app_cat = 'None' - for k in app_cats: - if app_cats[k] == True: - app_cat = k - - o_ = {} - o_['count'] = cnt - o_['fp_str'] = str_repr - o_['score'] = 0.0 - o_['ground_truth'] = {'process': proc, 'sha256': sha256, 'server_name': server_name, 'dst_ip': dst_ip} - o_['ground_truth']['categories'] = {'malware': app_cats['malware'], app_cat: True} - if target_proc != None: - for test_proc in target_proc: - o_['ground_truth']['categories'][test_proc[0]] = False - if proc in test_proc: - o_['ground_truth']['categories'][test_proc[0]] = True - - o_['inferred_truth'] = {'process': pi_['process'].lower(), 'sha256': pi_['sha256s']} - o_['inferred_truth']['categories'] = {} - if target_proc != None: - for test_proc in target_proc: - o_['inferred_truth']['categories'][test_proc[0]] = False - if pi_['process'] in test_proc: - o_['inferred_truth']['categories'][test_proc[0]] = True - o_['inferred_truth']['categories'][pi_['application_category']] = True - if 'malware' in pi_: - o_['inferred_truth']['categories']['malware'] = pi_['malware'] - else: - o_['inferred_truth']['categories']['malware'] = False - o_['inferred_truth']['probable_processes'] = [] - for p_ in fp_['process_info'][0:5]: - o_['inferred_truth']['probable_processes'].append({'process': p_['process']}) - - results.append(o_) - - return results - - -verbose_out = open('verbose_out.txt','w') - -def clean_proc(p): - return p - p = p.lower().replace('.exe','') - if p.endswith('d'): - return p[:-1] - return p - - -def process_result(x_): - global app_families - global app_families_strict - - sl = x_[0] - cats = x_[1] - - results = [] - - for r in sl: - if r == None: - continue - - count = r['count'] - tmp_oproc_gt = r['ground_truth']['process'] - oproc_gt = app_families_strict[tmp_oproc_gt] if tmp_oproc_gt in app_families_strict else tmp_oproc_gt - gproc_gt = clean_proc(app_families[tmp_oproc_gt] if tmp_oproc_gt in app_families else tmp_oproc_gt) - proc_gt = clean_proc(oproc_gt) - sha_gt = r['ground_truth']['sha256'] - - tmp_oproc_nf = r['inferred_truth']['process'] - oproc_nf = app_families_strict[tmp_oproc_nf] if tmp_oproc_nf in app_families_strict else tmp_oproc_nf - gproc_nf = clean_proc(app_families[tmp_oproc_nf] if tmp_oproc_nf in app_families else tmp_oproc_nf) - proc_nf = clean_proc(oproc_nf) - sha_nf = r['inferred_truth']['sha256'] - - proc_nf2 = None - gproc_nf2 = None - if len(r['inferred_truth']['probable_processes']) > 1: - tmp_oproc_nf2 = r['inferred_truth']['probable_processes'][1]['process'] - oproc_nf2 = app_families_strict[tmp_oproc_nf2] if tmp_oproc_nf2 in app_families_strict else tmp_oproc_nf2 - gproc_nf2 = clean_proc(app_families[tmp_oproc_nf2] if tmp_oproc_nf2 in app_families else tmp_oproc_nf2) - proc_nf2 = clean_proc(oproc_nf2) - - proc_nf3 = None - gproc_nf3 = None - if len(r['inferred_truth']['probable_processes']) > 2: - tmp_oproc_nf3 = r['inferred_truth']['probable_processes'][2]['process'] - oproc_nf3 = app_families_strict[tmp_oproc_nf3] if tmp_oproc_nf3 in app_families_strict else tmp_oproc_nf3 - gproc_nf3 = clean_proc(app_families[tmp_oproc_nf3] if tmp_oproc_nf3 in app_families else tmp_oproc_nf3) - proc_nf3 = clean_proc(oproc_nf3) - - proc_nf4 = None - gproc_nf4 = None - if len(r['inferred_truth']['probable_processes']) > 3: - tmp_oproc_nf4 = r['inferred_truth']['probable_processes'][3]['process'] - oproc_nf4 = app_families_strict[tmp_oproc_nf4] if tmp_oproc_nf4 in app_families_strict else tmp_oproc_nf4 - gproc_nf4 = clean_proc(app_families[tmp_oproc_nf4] if tmp_oproc_nf4 in app_families else tmp_oproc_nf4) - proc_nf4 = clean_proc(oproc_nf4) - - proc_nf5 = None - gproc_nf5 = None - if len(r['inferred_truth']['probable_processes']) > 4: - tmp_oproc_nf5 = r['inferred_truth']['probable_processes'][4]['process'] - oproc_nf5 = app_families_strict[tmp_oproc_nf5] if tmp_oproc_nf5 in app_families_strict else tmp_oproc_nf5 - gproc_nf5 = clean_proc(app_families[tmp_oproc_nf5] if tmp_oproc_nf5 in app_families else tmp_oproc_nf5) - proc_nf5 = clean_proc(oproc_nf5) - - r_proc = r['count'] if proc_gt == proc_nf else 0 - r_gproc = r['count'] if gproc_gt == gproc_nf else 0 - r_sha = r['count'] if sha_gt == sha_nf else 0 - - r_proc2 = 0 - if r_proc == 0: - r_proc2 = r['count'] if proc_gt == proc_nf2 else 0 - r_gproc2 = 0 - if r_gproc == 0: - r_gproc2 = r['count'] if gproc_gt == gproc_nf2 else 0 - - r_proc3 = 0 - if r_proc == 0 and r_proc2 == 0: - r_proc3 = r['count'] if proc_gt == proc_nf3 else 0 - r_gproc3 = 0 - if r_gproc == 0 and r_gproc2 == 0: - r_gproc3 = r['count'] if gproc_gt == gproc_nf3 else 0 - - r_proc4 = 0 - if r_proc == 0 and r_proc2 == 0 and r_proc3 == 0: - r_proc4 = r['count'] if proc_gt == proc_nf4 else 0 - r_gproc4 = 0 - if r_gproc == 0 and r_gproc2 == 0 and r_gproc3 == 0: - r_gproc4 = r['count'] if gproc_gt == gproc_nf4 else 0 - - r_proc5 = 0 - if r_proc == 0 and r_proc2 == 0 and r_proc3 == 0 and r_proc4 == 0: - r_proc5 = r['count'] if proc_gt == proc_nf5 else 0 - r_gproc5 = 0 - if r_gproc == 0 and r_gproc2 == 0 and r_gproc3 == 0 and r_gproc4 == 0: - r_gproc5 = r['count'] if gproc_gt == gproc_nf5 else 0 - - -# if oproc_gt != oproc_nf: -# verbose_out.write('%i,%s,%s,%f\n' % (count, tmp_oproc_gt.replace(',',''), tmp_oproc_nf, r['score'])) - -# verbose_out.write('%i,%s,%s,%f\n' % (count, tmp_oproc_gt.replace(',',''), tmp_oproc_nf, r['score'])) -# if oproc_gt != oproc_nf: -# if gproc_gt != gproc_nf: -# verbose_out.write('%i,%s,%s,%s,%s,%f,%s,%s\n' % (count, tmp_oproc_gt.replace(',',''), tmp_oproc_nf, r['ground_truth']['server_name'], -# r['ground_truth']['dst_ip'], r['score'],sha_gt,r['fp_str'])) -# verbose_out.flush() - - r_cats = [] - for c in cats: - if c == '': - continue - c_gt = False - c_nf = False - if c in r['ground_truth']['categories']: - c_gt = r['ground_truth']['categories'][c] - if c in r['inferred_truth']['categories']: - c_nf = r['inferred_truth']['categories'][c] - - r_cat_a = r['count'] if c_gt == c_nf else 0 - r_cat_tp = r['count'] if c_gt == True and c_nf == True else 0 - r_cat_tn = r['count'] if c_gt == False and c_nf == False else 0 - r_cat_fp = r['count'] if c_gt == False and c_nf == True else 0 - r_cat_fn = r['count'] if c_gt == True and c_nf == False else 0 - - r_cats.append([r['count'], r_cat_a, r_cat_tp, r_cat_tn, r_cat_fp, r_cat_fn]) - - -# if c_gt == True or c_nf == True: - if c_gt != c_nf: - verbose_out.write('%i,%s,%s,%s,%s,%f,%s,%s\n' % (count, tmp_oproc_gt.replace(',',''), tmp_oproc_nf, r['ground_truth']['server_name'], - r['ground_truth']['dst_ip'], r['score'],sha_gt,r['fp_str'])) -# verbose_out.write('%i,%s,%s,%f\n' % (count, tmp_oproc_gt.replace(',',''), tmp_oproc_nf, r['score'])) - verbose_out.flush() -# if c_gt == False and c_nf == True: -# if c_gt == True and c_nf == False: -# if c_gt == False and c_nf == False: -# verbose_out.write('%s\n' % (sha_gt)) -# verbose_out.write('%i,%s,%s,%s,%s,%f,%s,%s\n' % (count, tmp_oproc_gt.replace(',',''), tmp_oproc_nf, r['ground_truth']['server_name'], -# r['ground_truth']['dst_ip'], r['score'],sha_gt,r['fp_str'])) -# verbose_out.flush() - - - results.append((r['count'], r_proc, r_gproc, r_sha, r_proc2, r_gproc2, r_proc3, r_gproc3, r_proc4, r_gproc4, r_proc5, r_gproc5, r_cats)) - return results - - - -def main(): - global fingerprinter - global verbose_out - start = time.time() - - parser = optparse.OptionParser() - - parser.add_option('-i','--input',action='store',dest='input', - help='daily fingerprint file',default=None) - parser.add_option('-o','--output',action='store',dest='output', - help='output file',default=sys.stdout) - parser.add_option('-f','--fp_db',action='store',dest='fp_db', - help='location of fingerprint database',default='../../../resources/fingerprint_db.json.gz') - parser.add_option('-c','--categories',action='store',dest='categories', - help='test 1-vs-all on specific category, e.g., vpn',default='') - parser.add_option('-p','--process',action='store',dest='process', - help='test on specific processes, e.g., firefox,firefox.exe',default=None) - parser.add_option('-e','--endpoint',action='store_true',dest='endpoint', - help='enable endpoint modeling',default=False) - parser.add_option('-t','--top',action='store_true',dest='top', - help='report most prevalent process',default=False) - parser.add_option('-b','--blacklist',action='store_true',dest='blacklist', - help='use fp/sni blacklist',default=False) - parser.add_option('-m','--malware_context',action='store',dest='malware_context', - help='malware context',default=None) - - options, args = parser.parse_args() - - if options.input == None: - print('error: need to specify input') - - if options.endpoint and options.input.endswith('.json.gz'): - print('warning: endpoint modeling not available for json format') - options.endpoint = False - - if options.blacklist: - for line in open('data/fp_ip_blacklist.csv','r'): - fp_sni_blacklist.add(line.strip()) - - - importlib.machinery.SOURCE_SUFFIXES.append('') - pmercury = importlib.import_module('..pmercury','pmercury.pmercury') - fingerprinter = pmercury.Fingerprinter(options.fp_db, 'test.out', True, num_procs=5, human_readable=False, - group=False, experimental=False, endpoint=options.endpoint) - - tester = Validation(options.input, options.fp_db, options.output, options.categories.split(','), options.top, options.blacklist, - options.malware_context, options.process) - - tester.validate_process_identification() - - verbose_out.close() - - if options.endpoint: - fingerprinter.endpoint_model.write_all(fingerprinter.endpoint_file_pointer) - - -if __name__ == '__main__': - sys.exit(main()) diff --git a/python/pmercury/test/pmercury_performance.py b/python/pmercury/test/pmercury_performance.py deleted file mode 100755 index e0e5fee1..00000000 --- a/python/pmercury/test/pmercury_performance.py +++ /dev/null @@ -1,89 +0,0 @@ -#!/usr/bin/env python3 - -""" - Copyright (c) 2019 Cisco Systems, Inc. All rights reserved. - License at https://github.com/cisco/mercury/blob/master/LICENSE -""" - -import os -import sys -import pcap -import time -import optparse -import importlib -from importlib import machinery -from statistics import mean, stdev - -sys.path.append(os.path.dirname(os.path.abspath(__file__))+'/../../') - - -def performance_test(input_file, output_file, fp_db, analyze, human_readable, experimental, group, num_procs, loops): - print('Options:') - print('\tAnalysis:\t%s' % analyze) - print('\tHuman-Readable:\t%s' % human_readable) - print('\tExperimental:\t%s' % experimental) - print('\tGroup-Flows:\t%s' % group) - print('\tNum-Procs:\t%s' % num_procs) - print('\tLoops:\t\t%s\n' % loops) - - start = time.time() - importlib.machinery.SOURCE_SUFFIXES.append('') - pmercury = importlib.import_module('..pmercury','pmercury.pmercury') - fp = pmercury.Fingerprinter(fp_db, output_file, analyze, num_procs, - human_readable, group, experimental, None) - load_time = time.time() - start - print('Initialization Time:\t%0.3fs' % load_time) - - loop_times = [] - for l in range(loops): - start = time.time() - fp.process_pcap(input_file) - - loop_time = time.time() - start - loop_times.append(loop_time) - if len(loop_times) > 1: - print('Average Process Time:\t%0.3fs (+-%0.3fs)' % (mean(loop_times), stdev(loop_times))) - else: - print('Average Process Time:\t%0.3fs (+-%0.3fs)' % (loop_times[0], 0.0)) - fp.close_files() - - pcap_size = os.path.getsize(input_file) - print('Bytes Processed:\t%0.2fM' % (pcap_size/1000000.)) - - -def main(): - start = time.time() - - parser = optparse.OptionParser() - - parser.add_option('-r','--read',action='store',dest='pcap_file', - help='read packets from file',default=None) - parser.add_option('-f','--fingerprint',action='store',dest='output', - help='write fingerprints to file',default=None) - parser.add_option('-d','--fp_db',action='store',dest='fp_db', - help='location of fingerprint database',default='resources/fingerprint_db.json.gz') - parser.add_option('-a','--analysis',action='store_true',dest='analyze', - help='perform process identification',default=False) - parser.add_option('-w','--human-readable',action='store_true',dest='human_readable', - help='return human readable fingerprint information',default=False) - parser.add_option('-x','--experimental',action='store_true',dest='experimental', - help='turns on all experimental features',default=False) - parser.add_option('-g','--group-flows',action='store_true',dest='group', - help='aggregate packet-based fingerprints to flow-based',default=False) - parser.add_option('-n','--num-procs',action='store',dest='num_procs',type='int', - help='return the top-n most probable processes',default=0) - parser.add_option('-l','--loops',action='store',dest='loops',type='int', - help='loop over pcap n times',default=1) - - - options, args = parser.parse_args() - - input_file = options.pcap_file - performance_test(input_file, options.output, options.fp_db, options.analyze, options.human_readable, - options.experimental, options.group, options.num_procs, options.loops) - - - - -if __name__ == '__main__': - sys.exit(main()) diff --git a/python/pmercury/utils/__init__.py b/python/pmercury/utils/__init__.py deleted file mode 100644 index e69de29b..00000000 diff --git a/python/pmercury/utils/cert_constants.py b/python/pmercury/utils/cert_constants.py deleted file mode 100644 index 872860f4..00000000 --- a/python/pmercury/utils/cert_constants.py +++ /dev/null @@ -1,123 +0,0 @@ - - -cert_versions = { - '00': 'v1', - '01': 'v2', - '02': 'v3', -} - -cert_attribute_types = { - '00': 'id-at-objectClass', - '01': 'id-at-aliasedEntryName', - '02': 'id-at-knowldgeinformation', - '03': 'id-at-commonName', - '04': 'id-at-surname', - '05': 'id-at-serialNumber', - '06': 'id-at-countryName', - '07': 'id-at-localityName', - '08': 'id-at-stateOrProvinceName', - '09': 'id-at-streetAddress', - '0a': 'id-at-organizationName', - '0b': 'id-at-organizationalUnitName', - '0c': 'id-at-title', - '0d': 'id-at-description', - '0e': 'id-at-searchGuide', - '0f': 'id-at-businessCategory', - '10': 'id-at-postalAddress', - '11': 'id-at-postalCode', - '12': 'id-at-postOfficeBox', - '13': 'id-at-physicalDeliveryOfficeName', - '14': 'id-at-telephoneNumber', - '15': 'id-at-telexNumber', - '16': 'id-at-teletexTerminalIdentifier', - '17': 'id-at-facsimileTelephoneNumber', - '18': 'id-at-x121Address', - '19': 'id-at-internationalISDNNumber', - '1a': 'id-at-registeredAddress', - '1b': 'id-at-destinationIndicator', - '1c': 'id-at-preferredDeliveryMethod', - '1d': 'id-at-presentationAddress', - '1e': 'id-at-supportedApplicationContext', - '1f': 'id-at-member', - '20': 'id-at-owner', - '21': 'id-at-roleOccupant', - '22': 'id-at-seeAlso', - '23': 'id-at-userPassword', - '24': 'id-at-userCertificate', - '25': 'id-at-cACertificate', - '26': 'id-at-authorityRevocationList', - '27': 'id-at-certificateRevocationList', - '28': 'id-at-crossCertificatePair', - '29': 'id-at-name', - '2a': 'id-at-givenName', - '2b': 'id-at-initials', - '2c': 'id-at-generationQualifier', - '2d': 'id-at-uniqueIdentifier', - '2e': 'id-at-dnQualifier', - '2f': 'id-at-enhancedSearchGuide', - '30': 'id-at-protocolInformation', - '31': 'id-at-distinguishedName', - '32': 'id-at-uniqueMember', - '33': 'id-at-houseIdentifier', - '34': 'id-at-supportedAlgorithms', - '35': 'id-at-deltaRevocationList', - '3a': 'id-at-attributeCertificate', - '41': 'id-at-pseudonym', -} - -cert_extensions = { - '01': 'id-ce-authorityKeyIdentifier-old', - '02': 'id-ce-keyAttributes-old', - '03': 'id-ce-certificatePolicies-old', - '04': 'id-ce-keyUsageRestriction-old', - '09': 'id-ce-subjectDirectoryAttributes', - '0e': 'id-ce-subjectKeyIdentifier', - '0f': 'id-ce-keyUsage', - '10': 'id-ce-privateKeyUsagePeriod', - '11': 'id-ce-subjectAltName', - '12': 'id-ce-issuerAltName', - '13': 'id-ce-basicConstraints', - '14': 'id-ce-cRLNumber', - '15': 'id-ce-reasonCode', - '17': 'id-ce-instructionCode', - '18': 'id-ce-invalidityDate', - '1b': 'id-ce-deltaCRLIndicator', - '1c': 'id-ce-issuingDistributionPoint', - '1d': 'id-ce-certificateIssuer', - '1e': 'id-ce-nameConstraints', - '1f': 'id-ce-CRLDistributionPoints', - '20': 'id-ce-certificatePolicies', - '21': 'id-ce-policyMappings', - '23': 'id-ce-authorityKeyIdentifier', - '24': 'id-ce-policyConstraints', - '25': 'id-ce-extKeyUsage', - '2e': 'id-ce-freshestCRL', - '36': 'id-ce-inhibitAnyPolicy', -} - -cert_extensions_private = { - '01': 'id-pe-authorityInfoAccess', - '02': 'id-pe-biometricInfo', - '03': 'id-pe-qcStatements', - '0c': 'id-pe-logotype', - '17': 'id-pe-noSecrecyAfforded', -} - -oid_mapping = { - '2b06010401d679020402': 'id-ce-SignedCertificateTimestampList', - '2a864886f70d01010b': 'sha256WithRSAEncryption' -} - - - -cert_general_name_types = { - 0: 'otherName', - 1: 'rfc822Name', - 2: 'dNSName', - 3: 'x400Address', - 4: 'directoryName', - 5: 'ediPartyName', - 6: 'uniformResourceIdentifier', - 7: 'iPAddress', - 8: 'registeredID', -} diff --git a/python/pmercury/utils/config_parser.py b/python/pmercury/utils/config_parser.py deleted file mode 100644 index 009b96a5..00000000 --- a/python/pmercury/utils/config_parser.py +++ /dev/null @@ -1,26 +0,0 @@ -""" - Copyright (c) 2019 Cisco Systems, Inc. All rights reserved. - License at https://github.com/cisco/mercury/blob/master/LICENSE -""" - -import os -import sys -import yaml - -sys.path.append(os.path.dirname(os.path.abspath(__file__))) -sys.path.append(os.path.dirname(os.path.abspath(__file__))+'/../') -from pmercury.utils.pmercury_utils import * - - - -def parse_config(f_): - protocols = set(['http','http_server']) - - config_file = find_resource_path(f_) - if config_file == None or not os.path.exists(config_file): - return None - - with open(config_file, 'r') as yaml_cfg: - config = yaml.safe_load(yaml_cfg) - - return config diff --git a/python/pmercury/utils/contextual_info.py b/python/pmercury/utils/contextual_info.py deleted file mode 100644 index 44357024..00000000 --- a/python/pmercury/utils/contextual_info.py +++ /dev/null @@ -1,99 +0,0 @@ -""" - Copyright (c) 2019 Cisco Systems, Inc. All rights reserved. - License at https://github.com/cisco/mercury/blob/master/LICENSE -""" - -import os -import sys -import pyasn -import pickle -import functools - -sys.path.append(os.path.dirname(os.path.abspath(__file__))) -sys.path.append(os.path.dirname(os.path.abspath(__file__))+'/../') -from pmercury.utils.pmercury_utils import * - - -MAX_CACHED_RESULTS = 2**24 - - - -tlds = set([]) - -if os.name == 'nt': - import gzip - public_suffix_file_raw = find_resource_path('resources/public_suffix_list.dat.gz') - for line in gzip.open(public_suffix_file_raw, 'r'): - line = line.strip() - if line.startswith(b'//') or line == b'': - continue - if line.startswith(b'*'): - line = line[2:] - tlds.add(line.decode()) -else: - public_suffix_file_raw = find_resource_path('resources/public_suffix_list.dat.gz') - cmd = 'gzcat' if sys.platform == 'darwin' else 'zcat' - for line in os.popen(cmd + ' %s' % (public_suffix_file_raw)): - line = line.strip() - if line.startswith('//') or line == '': - continue - if line.startswith('*'): - line = line[2:] - tlds.add(line) - - -pyasn_context_file = find_resource_path('resources/pyasn.db') -pyasn_contextual_data = pyasn.pyasn(pyasn_context_file) - - -port_mapping = { - 443: 'https', 448: 'database', 465: 'email', 563: 'nntp', 585: 'email', - 614: 'shell', 636: 'ldap', 989: 'ftp', 990: 'ftp', 991: 'nas', - 992: 'telnet', 993: 'email', 994: 'irc', 995: 'email', 1443: 'alt-https', - 2376: 'docker', 8001: 'tor', 8443: 'alt-https', 9000: 'tor', 9001: 'tor', - 9002: 'tor', 9101: 'tor', -} - - - -@functools.lru_cache(maxsize=MAX_CACHED_RESULTS) -def get_tld_info(hostname): - if hostname == None or hostname == 'None': - return 'None', 'None' - tokens_ = hostname.split('.') - tld_ = tokens_[-1] - tmp_tld_ = tokens_[-1] - domain_ = tokens_[-1] - tmp_domain_ = tokens_[-1] - if len(tokens_) > 1: - domain_ = tokens_[-2] + '.' + domain_ - tmp_domain_ = tokens_[-2] + '.' + tmp_domain_ - for i in range(2,7): - if len(tokens_) < i: - return domain_, tld_ - if len(tokens_) > i: - tmp_domain_ = tokens_[(i+1)*-1] + '.' + tmp_domain_ - tmp_tld_ = tokens_[i*-1] + '.' + tmp_tld_ - if tmp_tld_ in tlds: - domain_ = tmp_domain_ - tld_ = tmp_tld_ - - return domain_, tld_ - - -@functools.lru_cache(maxsize=MAX_CACHED_RESULTS) -def get_asn_info(ip_addr): - asn,_ = pyasn_contextual_data.lookup(ip_addr) - if asn != None: - return str(asn) - - return 'unknown' - - -def get_port_application(port): - port_class = 'unknown' - if port in port_mapping: - port_class = port_mapping[port] - - return port_class - diff --git a/python/pmercury/utils/endpoint.py b/python/pmercury/utils/endpoint.py deleted file mode 100644 index 6f87f286..00000000 --- a/python/pmercury/utils/endpoint.py +++ /dev/null @@ -1,133 +0,0 @@ -""" - Copyright (c) 2019 Cisco Systems, Inc. All rights reserved. - License at https://github.com/cisco/mercury/blob/master/LICENSE -""" - -import os -import sys -import json -import gzip -from copy import deepcopy -from collections import defaultdict, OrderedDict - -sys.path.append(os.path.dirname(os.path.abspath(__file__))) -sys.path.append(os.path.dirname(os.path.abspath(__file__))+'/../') -from pmercury.utils.pmercury_utils import * -from pmercury.utils.os_detection import * - -strong_domains_file = find_resource_path('resources/domain_indicators.json.gz') -if strong_domains_file != None: - with gzip.open(strong_domains_file) as in_: - strong_domains = json.loads(in_.readline()) -else: - strong_domains = {} - -os_model = OSDetection() - -class Endpoint: - - def __init__(self): - self.summary = {} - self.os_info = defaultdict(float) - self.prot_count = defaultdict(int) - self.prev_flow = None - self.strong_procs = set([]) - - def update(self, flow, fp_type, fp_): - self.prev_flow = flow - self.prot_count[fp_type] += 1 - - if fp_type not in self.summary: - self.summary[fp_type] = {} - - if fp_ not in self.summary[fp_type]: - self.summary[fp_type][fp_] = {} - self.summary[fp_type][fp_]['count'] = 0 - self.summary[fp_type][fp_]['count'] += 1 - - if fp_type in flow: - if 'context' not in self.summary[fp_type][fp_]: - self.summary[fp_type][fp_]['context'] = defaultdict(lambda: defaultdict(int)) - for k_ in flow[fp_type]: - self.summary[fp_type][fp_]['context'][k_][flow[fp_type][k_]] += 1 - - if 'analysis' in flow and 'os_info' in flow['analysis'] and 'probable_oses' in flow['analysis']['os_info']: - for x_ in flow['analysis']['os_info']['probable_oses']: - self.os_info[x_['os']] += x_['score'] - - if fp_type == 'tls' and fp_type in flow and 'server_name' in flow[fp_type]: - server_name = flow[fp_type]['server_name'] - if server_name in strong_domains: - self.strong_procs.add(strong_domains[server_name]) - - def get_os(self): - global os_model - return os_model.classify(self.summary) - - - -class Endpoints: - - def __init__(self): - self.ip_to_mac = {} - self.endpoints = {} - - - def update(self, flow): - if 'fingerprints' not in flow: - return - - fp_type = next(iter(flow['fingerprints'])) - fp_ = flow['fingerprints'][fp_type] - src = self.get_src(flow, fp_type) - - if src not in self.endpoints: - self.endpoints[src] = Endpoint() - - self.endpoints[src].update(flow, fp_type, fp_) - - - def write_all(self, out): - for id_ in self.endpoints: - o_ = {} - o_['identifier'] = id_ - o_['fingerprints'] = self.endpoints[id_].summary - tmp_os = self.endpoints[id_].get_os() - if tmp_os != None: - o_['os_info'] = tmp_os - - out.write(json.dumps(o_) + '\n') - - - def get_endpoint(self, src): - try: - return self.endpoints[src] - except KeyError: - return None - - - def get_prev_flow(self, src): - try: - return self.endpoints[src].prev_flow - except KeyError: - return None - - - def get_src(self, flow, fp_type): - src = flow['src_ip'] - if fp_type == 'dhcp': - if fp_type in flow and 'client_mac_address' in flow[fp_type] and 'requested_ip' in flow[fp_type]: - mac = flow[fp_type]['client_mac_address'] - src = flow[fp_type]['requested_ip'] - self.ip_to_mac[flow[fp_type]['requested_ip']] = mac - - if src in self.ip_to_mac: - src_mac = self.ip_to_mac[src] - if src in self.endpoints: - self.endpoints[src_mac] = deepcopy(self.endpoints[src]) - del self.endpoints[src] - src = src_mac - - return src - - diff --git a/python/pmercury/utils/eqv_classes.py b/python/pmercury/utils/eqv_classes.py deleted file mode 100644 index 478c264f..00000000 --- a/python/pmercury/utils/eqv_classes.py +++ /dev/null @@ -1,142 +0,0 @@ -import os -import sys -import gzip -import copy -import json -import pyasn -import operator -from collections import OrderedDict, defaultdict - - -sys.path.append(os.path.dirname(os.path.abspath(__file__))) -sys.path.append(os.path.dirname(os.path.abspath(__file__))+'/../') -from pmercury.utils.pmercury_utils import * - - -tlds = set([]) -if os.name == 'nt': - import gzip - public_suffix_file_raw = find_resource_path('resources/public_suffix_list.dat.gz') - if public_suffix_file_raw != None: - for line in gzip.open(public_suffix_file_raw, 'r'): - line = line.strip() - if line.startswith(b'//') or line == b'': - continue - if line.startswith(b'*'): - line = line[2:] - tlds.add(line.decode()) -else: - public_suffix_file_raw = find_resource_path('resources/public_suffix_list.dat.gz') - if public_suffix_file_raw != None: - cmd = 'gzcat' if sys.platform == 'darwin' else 'zcat' - for line in os.popen(cmd + ' %s' % (public_suffix_file_raw)): - line = line.strip() - if line.startswith('//') or line == '': - continue - if line.startswith('*'): - line = line[2:] - tlds.add(line) - - - - -class EquivalenceClasses: - - def __init__(self, resource_dir): - self.classes = defaultdict(list) -# self.dst_keys = ['classes_hostname_domains','classes_hostname_tlds'] -# self.dst_keys = ['classes_hostname_domains'] - self.dst_features = set(['dst_ip','dst_port','server_name']) - self.dict_data = {} - self.radix_tries = {} - self.load_files(resource_dir) - - - def load_files(self, idir): - files = os.listdir(idir) - for f in files: - if not f.endswith('.gz'): - continue - with gzip.open(idir + f) as in_file: - t_ = json.loads(in_file.readline()) - if t_['type'] == 'identity': - t_['mapper'] = (lambda v_, _: v_) - elif t_['type'] == 'dict': - self.dict_data[t_['name']] = t_['data'] - t_['mapper'] = (lambda v_, f_: str(self.dict_data[f_][v_]) if v_ in self.dict_data[f_] else 'unknown') - elif t_['type'] == 'dict_identity': - self.dict_data[t_['name']] = t_['data'] - t_['mapper'] = (lambda v_, f_: str(self.dict_data[f_][v_]) if v_ in self.dict_data[f_] else v_) - elif t_['type'] == 'radix': - self.prepare_radix(t_) - t_['mapper'] = (lambda v_, f_: str(self.radix_tries[f_].search_best(v_).asn) - if self.radix_tries[f_].search_best(v_) != None else 'unknown') - else: - continue - - self.classes[t_['feature']].append(t_) -# if t_['feature'] in self.dst_features: -# self.dst_keys.append(t_['name']) - - - def get_str_repr(self, str_repr): - try: - return self.classes['str_repr'][0]['mapper'](str_repr, 'classes_str_repr_libraries') - except: - return str_repr - - - def get_dst_info(self, dst_ip, dst_port, server_name): - features = [] - domain_, tld_ = self.clean_hostname(server_name) - features.extend([('classes_hostname_domains',domain_),('classes_hostname_tlds',tld_)]) -# features.extend([('classes_hostname_domains',domain_)]) - - for feature in self.dst_features: - if feature == 'dst_ip': - cur_f = dst_ip - elif feature == 'dst_port': - cur_f = dst_port - elif feature == 'server_name': - cur_f = server_name - else: - continue - - for x_ in self.classes[feature]: - features.append((x_['name'], x_['mapper'](str(cur_f), x_['name']))) - - return features - - - def prepare_radix(self, t_): - rtrie = pyasn.pyasn_radix.Radix() - e_str = [] - for k,v in t_['data'].items(): - e_str.append('%s\t%s\n' % (k, v)) - rtrie.load_ipasndb("", ''.join(e_str)) - - self.radix_tries[t_['name']] = rtrie - - - def clean_hostname(self, hostname): - if hostname == None or hostname == 'None': - return 'None', 'None' - tokens_ = hostname.split('.') - tld_ = tokens_[-1] - tmp_tld_ = tokens_[-1] - domain_ = tokens_[-1] - tmp_domain_ = tokens_[-1] - if len(tokens_) > 1: - domain_ = tokens_[-2] + '.' + domain_ - tmp_domain_ = tokens_[-2] + '.' + tmp_domain_ - for i in range(2,7): - if len(tokens_) < i: - return domain_, tld_ - if len(tokens_) > i: - tmp_domain_ = tokens_[(i+1)*-1] + '.' + tmp_domain_ - tmp_tld_ = tokens_[i*-1] + '.' + tmp_tld_ - if tmp_tld_ in tlds: - domain_ = tmp_domain_ - tld_ = tmp_tld_ - - return domain_, tld_ diff --git a/python/pmercury/utils/http2_constants.py b/python/pmercury/utils/http2_constants.py deleted file mode 100644 index e3d210be..00000000 --- a/python/pmercury/utils/http2_constants.py +++ /dev/null @@ -1,39 +0,0 @@ - -HTTP2_MESSAGE_TYPES = { - 0: 'DATA', - 1: 'HEADERS', - 2: 'PRIORITY', - 3: 'RST_STREAM', - 4: 'SETTINGS', - 5: 'PUSH_PROMISE', - 6: 'PING', - 7: 'GOAWAY', - 8: 'WINDOW_UPDATE', - 9: 'CONTINUATION', -} - -HTTP2_SETTINGS_TYPES = { - 1: 'HEADER_TABLE_SIZE', - 2: 'ENABLE_PUSH', - 3: 'MAX_CONCURRENT_STREAMS', - 4: 'INITIAL_WINDOW_SIZE', - 5: 'MAX_FRAME_SIZE', - 6: 'MAX_HEADER_LIST_SIZE', -} - -HTTP2_ERROR_CODES = { - 0: 'NO_ERROR', - 1: 'PROTOCOL_ERROR', - 2: 'INTERNAL_ERROR', - 3: 'FLOW_CONTROL_ERROR', - 4: 'SETTINGS_TIMEOUT', - 5: 'STREAM_CLOSED', - 6: 'FRAME_SIZE_ERROR', - 7: 'REFUSED_STREAM', - 8: 'CANCEL', - 9: 'COMPRESSION_ERROR', - 10: 'CONNECT_ERROR', - 11: 'ENHANCE_YOUR_CALM', - 12: 'INADEQUATE_SECURITY', - 13: 'HTTP_1_1_REQUIRED', -} diff --git a/python/pmercury/utils/os_detection.py b/python/pmercury/utils/os_detection.py deleted file mode 100644 index 2748c7bc..00000000 --- a/python/pmercury/utils/os_detection.py +++ /dev/null @@ -1,113 +0,0 @@ -import os -import sys -import gzip -import json -import math - -sys.path.append(os.path.dirname(os.path.abspath(__file__))) -sys.path.append(os.path.dirname(os.path.abspath(__file__))+'/../') -from pmercury.utils.pmercury_utils import * - - -class LogR: - def __init__(self, coef, intc, labels): - self.coef = coef - self.intc = intc - self.labels = labels - - def classify(self, x): - scores = [] - for i in range(len(self.intc)): - exp_ = (self.intc[i] + sum([a*b for a,b in zip(self.coef[i], x)])) - scores.append(1/(1+math.e**(-exp_))) - max_ = scores.index(max(scores)) - return self.labels[max_] - - -class OSDetection: - def __init__(self): - self.fingerprint_db_tcp = self.read_db('resources/fingerprint-db-tcp-os.json.gz') - self.fingerprint_db_tls = self.read_db('resources/fingerprint-db-tls-os.json.gz') - self.fingerprint_db_http = self.read_db('resources/fingerprint-db-http-os.json.gz') - - coef, intc, labels, self.os_map, self.os_len = self.get_model('resources/os_detection_model.json') - if coef != None: - self.clf = clf = LogR(coef, intc, labels) - - - def classify(self, fps): - sample = [0.0]*(self.os_len*3) - for fp_type in fps: - for str_repr in fps[fp_type]: - self.update_sample(sample, str_repr, fp_type) - - if sum(sample) > 1: - sample = self.normalize_sample(sample) - return self.clf.classify(sample) - else: - return None - - def read_db(self, fname): - fname = find_resource_path(fname) - db = {} - if fname != None: - for line in gzip.open(fname): - fp = json.loads(line) - db[fp['str_repr']] = fp - return db - - - def get_os_info(self, os_str): - platform = os_str[:os_str.index(')')]+')' - edition = os_str[:os_str.index(')',os_str.index(')')+1)]+')' - return platform, edition, os_str - - - def get_model(self, path): - path = find_resource_path(path) - if path != None: - for line in open(path): - model = json.loads(line) - break - return model['coefficients'], model['intercepts'], model['labels'], model['os_map'], model['os_len'] - else: - return None, None, None, None, None - - - def update_sample(self, sample, str_repr, fp_type): - os_info = None - if fp_type == 'tcp' and str_repr in self.fingerprint_db_tcp: - os_info = self.fingerprint_db_tcp[str_repr]['os_info'] - multiplier = 0 - elif fp_type == 'tls' and str_repr in self.fingerprint_db_tls: - os_info = self.fingerprint_db_tls[str_repr]['os_info'] - multiplier = 1 - elif fp_type == 'http' and str_repr in self.fingerprint_db_http: - os_info = self.fingerprint_db_http[str_repr]['os_info'] - multiplier = 2 - - if os_info == None: - return sample - - for k in os_info: - if k in self.os_map: - sample[self.os_map[k]+multiplier*self.os_len] += os_info[k] - - return sample - - - def normalize_sample(self, sample): - tcp_ = sample[0:self.os_len] - tls_ = sample[self.os_len:2*self.os_len] - http_ = sample[2*self.os_len:3*self.os_len] - s1_ = sum(tcp_) - s2_ = sum(tls_) - s3_ = sum(http_) - tcp_s = list(map(lambda f_: f_/s1_ if s1_ > 0.0 else f_, tcp_)) - tls_s = list(map(lambda f_: f_/s2_ if s2_ > 0.0 else f_, tls_)) - http_s = list(map(lambda f_: f_/s3_ if s3_ > 0.0 else f_, http_)) - r = [] - r.extend(tcp_s) - r.extend(tls_s) - r.extend(http_s) - return r diff --git a/python/pmercury/utils/packet_proc.py b/python/pmercury/utils/packet_proc.py deleted file mode 100644 index 720991a8..00000000 --- a/python/pmercury/utils/packet_proc.py +++ /dev/null @@ -1,231 +0,0 @@ -""" - Copyright (c) 2019 Cisco Systems, Inc. All rights reserved. - License at https://github.com/cisco/mercury/blob/master/LICENSE -""" - -import sys - -from pmercury.protocols.tcp import TCP -from pmercury.protocols.tls import TLS -from pmercury.protocols.dtls import DTLS -from pmercury.protocols.http import HTTP -from pmercury.protocols.dhcp import DHCP -from pmercury.protocols.iquic import IQUIC -from pmercury.protocols.tls_server import TLS_Server -from pmercury.protocols.dtls_server import DTLS_Server -from pmercury.protocols.http_server import HTTP_Server -from pmercury.protocols.tls_certificate import TLS_Certificate - -from protocols.iquic import IQUIC - -parsers = {} -parsers['tcp'] = TCP() -parsers['tls'] = TLS() -parsers['tls_server'] = TLS_Server() -parsers['dtls'] = DTLS() -parsers['dtls_server'] = DTLS_Server() -parsers['http'] = HTTP() -parsers['http_server'] = HTTP_Server() -parsers['server_certs'] = TLS_Certificate() -parsers['dhcp'] = DHCP() -parsers['iquic'] = IQUIC() - - -def convert_ipv6(buf, o_): - ipv6_addr = buf[o_:o_+2].hex().lstrip('0') - for i in range(2, 16, 2): - ipv6_addr += ':' + buf[o_+i:o_+i+2].hex().lstrip('0') - cur_max = 0 - all_max = 0 - for i in range(len(ipv6_addr)): - if ipv6_addr[i] != ':': - if cur_max > all_max: - all_max = cur_max - cur_max = 0 - else: - cur_max += 1 - if cur_max > all_max: - all_max = cur_max - out_ipv6_addr = ipv6_addr - if all_max > 1: - idx_ = ipv6_addr.find(':'*all_max) - ipv6_addr = ipv6_addr.replace(':'*all_max, '::', 1) - out_ipv6_addr = '' - for i in range(len(ipv6_addr)-1): - if i == idx_: - out_ipv6_addr += ipv6_addr[i] - elif ipv6_addr[i] == ':' and ipv6_addr[i+1] == ':': - out_ipv6_addr += ipv6_addr[i] + '0' - else: - out_ipv6_addr += ipv6_addr[i] - out_ipv6_addr += ipv6_addr[-1] - - return out_ipv6_addr - - -def pkt_proc(ts, data): - buf = data - - ip_type = 4 - - if buf[12] == 0x08 and buf[13] == 0x00: # IPv4 - ip_length = 20 - ip_offset = 14 - protocol = buf[23] - elif buf[12] == 0x86 and buf[13] == 0xdd: # IPv6 - ip_type = 6 - ip_length = 40 - ip_offset = 14 - protocol = buf[20] - if protocol == 44: - ip_length = 48 - ip_offset = 14 - protocol = buf[54] - elif buf[14] == 0x08 and buf[15] == 0x00: # IPv4 (hack for linux cooked capture) - ip_length = 20 - ip_offset = 16 - protocol = buf[25] - elif buf[12] == 0x81 and buf[13] == 0x00: # IPv4 (hack for 802.1Q Virtual LAN) - if buf[16] == 0x08 and buf[17] == 0x00: # IPv4 - ip_length = 20 - ip_offset = 18 - protocol = buf[27] - elif buf[16] == 0x86 and buf[17] == 0xdd: # IPv6 - ip_type = 6 - ip_length = 40 - ip_offset = 18 - protocol = buf[24] - else: - return None - else: # currently skip other types - return None - - data_len = len(data) - fp_str_ = None - fp_str_2_ = None - prot_offset = 0 - if protocol == 6: - prot_offset = ip_offset+ip_length - if prot_offset+20 > data_len: - return None - prot_length = (buf[prot_offset+12] >> 0x04)*4 - app_offset = prot_offset + prot_length - if buf[prot_offset+13] & 0x12 == 2: - fp_str_, context_ = TCP.fingerprint(data, prot_offset, app_offset, data_len) - fp_type = 'tcp' - elif data_len - app_offset < 16: - return None - elif buf[app_offset] == 22 and buf[app_offset+1] == 3: - if buf[app_offset+5] == 1 and buf[app_offset+9] == 3: - fp_str_, context_ = TLS.fingerprint(data, app_offset, data_len) - fp_type = 'tls' - elif buf[app_offset+5] == 2 and buf[app_offset+9] == 3: - fp_str_, context_ = TLS_Server.fingerprint(data, app_offset, data_len) - fp_type = 'tls_server' - fp_str_2_, context_2_ = TLS_Certificate.fingerprint(data, app_offset, data_len) - fp_type_2 = 'server_certs' - elif buf[app_offset+5] == 11: - fp_str_, context_ = TLS_Certificate.fingerprint(data, app_offset, data_len) - fp_type = 'server_certs' - elif buf[app_offset+2] == 84: - if (buf[app_offset] == 71 and buf[app_offset+3] == 32): - fp_str_, context_ = HTTP.fingerprint(data, app_offset, data_len) - fp_type = 'http' - elif (buf[app_offset] == 72 and buf[app_offset+5] == 49): - fp_str_, context_ = HTTP_Server.fingerprint(data, app_offset, data_len) - fp_type = 'http_server' - elif protocol == 17: - prot_offset = ip_offset+ip_length - prot_length = 8 - app_offset = prot_offset + prot_length - - if data_len - app_offset < 16: - return None - elif buf[app_offset] == 22 and buf[app_offset+1] == 254: - if buf[app_offset+13] == 1 and buf[app_offset+25] == 254: - fp_str_, context_ = DTLS.fingerprint(data, app_offset, data_len) - fp_type = 'dtls' - elif buf[app_offset+13] == 2 and buf[app_offset+25] == 254: - fp_str_, context_ = DTLS_Server.fingerprint(data, app_offset, data_len) - fp_type = 'dtls_server' - elif (buf[app_offset+2] == 0x00 and buf[app_offset+3] == 0x00): - fp_str_, context_ = IQUIC.fingerprint(data, app_offset, data_len) - fp_type = 'quic' - elif data_len - app_offset < 240: - return None - elif (buf[app_offset+236] == 0x63 and - buf[app_offset+237] == 0x82 and - buf[app_offset+238] == 0x53 and - buf[app_offset+239] == 0x63): - fp_str_, context_ = DHCP.fingerprint(data, app_offset, data_len) - fp_type = 'dhcp' - - if fp_str_ == None: - return None - - src_port = int.from_bytes(buf[prot_offset:prot_offset+2], byteorder='big') - dst_port = int.from_bytes(buf[prot_offset+2:prot_offset+4], byteorder='big') - if ip_type == 4: - o_ = prot_offset-8 - src_ip = f'{buf[o_]}.{buf[o_+1]}.{buf[o_+2]}.{buf[o_+3]}' - o_ += 4 - dst_ip = f'{buf[o_]}.{buf[o_+1]}.{buf[o_+2]}.{buf[o_+3]}' - else: - o_ = prot_offset-32 - src_ip = convert_ipv6(buf, o_) - o_ += 16 - dst_ip = convert_ipv6(buf, o_) - - flow = {'src_ip':src_ip, - 'dst_ip':dst_ip, - 'src_port':src_port, - 'dst_port':dst_port, - 'protocol':protocol, - 'event_start':ts, - 'fingerprints': {}} - if fp_type != 'server_certs': - flow['fingerprints'][fp_type] = fp_str_ - else: - if 'tls' not in flow: - flow['tls'] = {} - if 'server' not in flow['tls']: - flow['tls']['server'] = {} - flow['tls']['server'][fp_type] = fp_str_ - - if context_ != None and context_ != []: - if fp_type == 'tls' or fp_type == 'quic': - flow['tls'] = {} - flow['tls']['client'] = {} - for x_ in context_: - flow['tls']['client'][x_['name']] = x_['data'] - elif fp_type == 'http': - flow['http'] = {} - flow['http']['request'] = {} - for x_ in context_: - flow['http']['request'][x_['name']] = x_['data'] - elif fp_type == 'http_server': - flow['http'] = {} - flow['http']['response'] = {} - for x_ in context_: - flow['http']['response'][x_['name']] = x_['data'] - else: - flow[fp_type] = {} - for x_ in context_: - flow[fp_type][x_['name']] = x_['data'] - - if fp_str_2_ != None: - if fp_type_2 != 'server_certs': - flow['fingerprints'][fp_type_2] = fp_str_2_ - else: - if 'tls' not in flow: - flow['tls'] = {} - if 'server' not in flow['tls']: - flow['tls']['server'] = {} - flow['tls']['server'][fp_type_2] = fp_str_2_ - - if context_2_ != None and context_2_ != []: - flow[fp_type_2] = {} - for x_ in context_2_: - flow[fp_type_2][x_['name']] = x_['data'] - - return flow diff --git a/python/pmercury/utils/pmercury_utils.py b/python/pmercury/utils/pmercury_utils.py deleted file mode 100644 index ebf24109..00000000 --- a/python/pmercury/utils/pmercury_utils.py +++ /dev/null @@ -1,51 +0,0 @@ -""" - Copyright (c) 2019 Cisco Systems, Inc. All rights reserved. - License at https://github.com/cisco/mercury/blob/master/LICENSE -""" - -import os - -def find_resource_path(rel_file_path): - if rel_file_path == None: - return None - t = rel_file_path.split('/') - rel_file_path = os.sep.join(t) - - p0 = os.path.dirname(os.path.abspath(__file__)) + os.sep+'..'+ os.sep+'..'+os.sep+'..'+os.sep + rel_file_path - p1 = os.path.dirname(os.path.abspath(__file__)) + os.sep+'..'+os.sep+'..'+os.sep + rel_file_path - p2 = os.path.dirname(os.path.abspath(__file__)) + os.sep+'..'+os.sep + rel_file_path - p3 = os.path.dirname(os.path.abspath(__file__)) + os.sep + rel_file_path - if os.path.exists(p0): - return p0 - elif os.path.exists(p1): - return p1 - elif os.path.exists(p2): - return p2 - elif os.path.exists(p3): - return p3 - else: - return None - - -def find_path(rel_path): - if rel_path == None: - return None - t = rel_path.split('/') - rel_file_path = os.sep.join(t) - - p0 = os.path.dirname(os.path.abspath(__file__)) + os.sep+'..'+ os.sep+'..'+os.sep+'..'+os.sep + rel_path - p1 = os.path.dirname(os.path.abspath(__file__)) + os.sep+'..'+os.sep+'..'+os.sep + rel_path - p2 = os.path.dirname(os.path.abspath(__file__)) + os.sep+'..'+os.sep + rel_path - p3 = os.path.dirname(os.path.abspath(__file__)) + os.sep + rel_path - - if os.path.exists(p0): - return p0 - elif os.path.exists(p1): - return p1 - elif os.path.exists(p2): - return p2 - elif os.path.exists(p3): - return p3 - else: - return None - diff --git a/python/pmercury/utils/sequence_alignment.py b/python/pmercury/utils/sequence_alignment.py deleted file mode 100644 index 9265fd45..00000000 --- a/python/pmercury/utils/sequence_alignment.py +++ /dev/null @@ -1,48 +0,0 @@ -""" - Copyright (c) 2019 Cisco Systems, Inc. All rights reserved. - License at https://github.com/cisco/mercury/blob/master/LICENSE -""" - -import functools - -### -## Similarity Matching for Fingerprints -# - -MAX_CACHED_RESULTS = 2**24 - -# ***** Sequence Alignment ***** -class SequenceAlignment: - def __init__(self, similarity, gap_penalty): - self.map_ = {} - self.similarity = similarity - self.gap = gap_penalty - - # Align two sequences, s1 and s2, using the - # Needleman-Wunsch Algorithm and return the - # score of the best possible alignment - def align(self, s1, s2): - s1_len = len(s1) - s2_len = len(s2) - F = [[0]*(s2_len+1)]*(s1_len+1) - for i in range(s1_len+1): - F[i][0] = self.gap*i - for i in range(s2_len+1): - F[0][i] = self.gap*i - for i in range(1,s1_len+1): - for j in range(1,s2_len+1): - match_ = F[i-1][j-1] + self.similarity(s1[i-1], s2[j-1]) - delete_ = F[i-1][j] + self.gap - insert_ = F[i][j-1] + self.gap - F[i][j] = max(match_, delete_, insert_) - - return F[s1_len][s2_len] - -# default function: determine the similarity between two elements -@functools.lru_cache(maxsize=MAX_CACHED_RESULTS) -def f_similarity(a, b): - # the two elements match - if a == b: - return 1.0 - return 0.0 - diff --git a/python/pmercury/utils/tls_constants.py b/python/pmercury/utils/tls_constants.py deleted file mode 100644 index 230b90e2..00000000 --- a/python/pmercury/utils/tls_constants.py +++ /dev/null @@ -1,2499 +0,0 @@ -""" - Copyright (c) 2019 Cisco Systems, Inc. All rights reserved. - License at https://github.com/cisco/mercury/blob/master/LICENSE -""" - -# crypto primitive imports -from cryptography.hazmat.primitives.ciphers.modes import GCM, CBC -from cryptography.hazmat.primitives.ciphers.algorithms import AES, ARC4, TripleDES, Camellia, SEED -from cryptography.hazmat.primitives.hashes import SHA1, SHA256, SHA384, MD5 - -TLS_VERSION = { - '0002': 'SSL 2.0', - '0300': 'SSL 3.0', - '0301': 'TLS 1.0', - '0302': 'TLS 1.1', - '0303': 'TLS 1.2', - '0304': 'TLS 1.3', - '7f0e': 'TLS 1.3 (draft 14)', - '7f0f': 'TLS 1.3 (draft 15)', - '7f10': 'TLS 1.3 (draft 16)', - '7f11': 'TLS 1.3 (draft 17)', - '7f12': 'TLS 1.3 (draft 18)', - '7e02': 'TLS 1.3 (draft 18-mozilla-pr-1092)', - '7f13': 'TLS 1.3 (draft 19)', - '7f14': 'TLS 1.3 (draft 20)', - '7f15': 'TLS 1.3 (draft 21)', - '7f16': 'TLS 1.3 (draft 22)', - '7f17': 'TLS 1.3 (draft 23)', - '7f18': 'TLS 1.3 (draft 24)', - '7f19': 'TLS 1.3 (draft 25)', - '7f1a': 'TLS 1.3 (draft 26)', - '7f1b': 'TLS 1.3 (draft 27)', - '7f1c': 'TLS 1.3 (draft 28)', - '0a0a': 'GREASE', # GREASE compatibility versions - '1a1a': 'GREASE', - '2a2a': 'GREASE', - '3a3a': 'GREASE', - '4a4a': 'GREASE', - '5a5a': 'GREASE', - '6a6a': 'GREASE', - '7a7a': 'GREASE', - '8a8a': 'GREASE', - '9a9a': 'GREASE', - 'aaaa': 'GREASE', - 'baba': 'GREASE', - 'caca': 'GREASE', - 'dada': 'GREASE', - 'eaea': 'GREASE', - 'fafa': 'GREASE', -} - -TLS_RECORD_TYPES = { - 20: 'change_cipher_spec', - 21: 'alert', - 22: 'handshake', - 23: 'application_data', -} - -TLS_HANDSHAKE_MESSAGE_TYPES = { - 1: 'client_hello', - 2: 'server_hello', - 4: 'new_session_ticket', - 8: 'encrypted_extensions', - 11: 'certificate', - 12: 'server_key_exchange', - 14: 'server_hello_done', - 15: 'certificate_verify', - 16: 'client_key_exchange', - 20: 'finished', - 203: 'channel_id', -} - -TLS_HANDSHAKE_MESSAGE_NAMES = [ - 'client_hello', - 'server_hello', - 'new_session_ticket', - 'encrypted_extensions', - 'certificate', - 'server_key_exchange', - 'server_hello_done', - 'certificate_verify', - 'client_key_exchange', - 'finished', - 'channel_id', -] - - -TLS_ALERT_LEVELS = { - 1: 'warning', - 2: 'fatal', -} - -TLS_ALERT_DESCRIPTIONS = { - 0: 'close_notify', - 10: 'fatal', - 20: 'bad_record_mac', - 21: 'decryption_failed', - 22: 'record_overflow', - 30: 'decompression_failure', - 40: 'handshake_failure', - 41: 'no_certificate_RESERVED', - 42: 'bad_certificate', - 43: 'unsupported_certificate', - 44: 'certificate_revoked', - 45: 'certificate_expired', - 46: 'certificate_unknown', - 47: 'illegal_parameter', - 48: 'unknown_ca', - 49: 'access_denied', - 50: 'decode_error', - 51: 'decrypt_error', - 60: 'export_restriction_RESERVED', - 70: 'protocol_version', - 71: 'insufficient_security', - 80: 'internal_error', - 86: 'inappropriate_fallback', - 90: 'user_canceled', - 100: 'no_renegotiation', - 110: 'unsupported_extension', - 111: 'certificate_unobtainable', - 112: 'unrecognized_name', - 113: 'bad_certificate_status_response', - 114: 'bad_certificate_hash_value', - 115: 'unknown_psk_identity', -} - -TLS_COMPRESSION_METHODS = { - 0: 'null', -} - -TLS_EXTENSIONS = { - 0: 'server_name', - 1: 'max_fragment_length', - 2: 'client_certificate_url', - 3: 'trusted_ca_keys', - 4: 'truncated_hmac', - 5: 'status_request', - 6: 'user_mapping', - 7: 'client_authz', - 8: 'server_authz', - 9: 'cert_type', - 10: 'supported_groups', - 11: 'ec_point_formats', - 12: 'srp', - 13: 'signature_algorithms', - 14: 'use_srtp', - 15: 'heartbeat', - 16: 'application_layer_protocol_negotiation', - 17: 'status_request_v2', - 18: 'signed_certificate_timestamp', - 19: 'client_certificate_type', - 20: 'server_certificate_type', - 21: 'padding', - 22: 'encrypt_then_mac', - 23: 'extended_master_secret', - 24: 'token_binding', - 25: 'cached_info', - 27: 'compress_certificate', - 28: 'record_size_limit', - 35: 'session_ticket', - 40: 'key_share', - 41: 'pre_shared_key', - 42: 'early_data', - 43: 'supported_versions', - 44: 'cookie', - 45: 'psk_key_exchange_modes', - 47: 'certificate_authorities', - 48: 'oid_filters', - 49: 'post_handshake_auth', - 50: 'signature_algorithms_cert', - 51: 'key_share', - 13172: 'next_protocol_negotiation', - 21760: 'token_binding_old', - 30031: 'channel_id_old', - 30032: 'channel_id', - 35655: 'padding (NSS 3.15.5)', - 65281: 'renegotiation_info', - 65283: 'short_record_header', - 65486: 'encrypted_server_name', - 2570: 'GREASE', # GREASE compatibility extensions - 6682: 'GREASE', - 10794: 'GREASE', - 14906: 'GREASE', - 19018: 'GREASE', - 23130: 'GREASE', - 27242: 'GREASE', - 31354: 'GREASE', - 35466: 'GREASE', - 39578: 'GREASE', - 43690: 'GREASE', - 47802: 'GREASE', - 51914: 'GREASE', - 56026: 'GREASE', - 60138: 'GREASE', - 64250: 'GREASE', -} - -SSLv2_CIPHER_SUITE_NAMES = { - '010080': 'SSL_CK_RC4_128_WITH_MD5', - '020080': 'SSL_CK_RC4_128_EXPORT40_WITH_MD5', - '030080': 'SSL_CK_RC2_128_CBC_WITH_MD5', - '040080': 'SSL_CK_RC2_128_CBC_EXPORT40_WITH_MD5', - '050080': 'SSL_CK_IDEA_128_CBC_WITH_MD5', - '060040': 'SSL_CK_DES_64_CBC_WITH_MD5', - '0700c0': 'SSL_CK_DES_192_EDE3_CBC_WITH_MD5', -} - -TLS_CIPHER_SUITE_NAMES = { - "0000": "TLS_NULL_WITH_NULL_NULL", - "0001": "TLS_RSA_WITH_NULL_MD5", - "0002": "TLS_RSA_WITH_NULL_SHA", - "0003": "TLS_RSA_EXPORT_WITH_RC4_40_MD5", - "0004": "TLS_RSA_WITH_RC4_128_MD5", - "0005": "TLS_RSA_WITH_RC4_128_SHA", - "0006": "TLS_RSA_EXPORT_WITH_RC2_CBC_40_MD5", - "0007": "TLS_RSA_WITH_IDEA_CBC_SHA", - "0008": "TLS_RSA_EXPORT_WITH_DES40_CBC_SHA", - "0009": "TLS_RSA_WITH_DES_CBC_SHA", - "000a": "TLS_RSA_WITH_3DES_EDE_CBC_SHA", - "000b": "TLS_DH_DSS_EXPORT_WITH_DES40_CBC_SHA", - "000c": "TLS_DH_DSS_WITH_DES_CBC_SHA", - "000d": "TLS_DH_DSS_WITH_3DES_EDE_CBC_SHA", - "000e": "TLS_DH_RSA_EXPORT_WITH_DES40_CBC_SHA", - "000f": "TLS_DH_RSA_WITH_DES_CBC_SHA", - "0010": "TLS_DH_RSA_WITH_3DES_EDE_CBC_SHA", - "0011": "TLS_DHE_DSS_EXPORT_WITH_DES40_CBC_SHA", - "0012": "TLS_DHE_DSS_WITH_DES_CBC_SHA", - "0013": "TLS_DHE_DSS_WITH_3DES_EDE_CBC_SHA", - "0014": "TLS_DHE_RSA_EXPORT_WITH_DES40_CBC_SHA", - "0015": "TLS_DHE_RSA_WITH_DES_CBC_SHA", - "0016": "TLS_DHE_RSA_WITH_3DES_EDE_CBC_SHA", - "0017": "TLS_DH_anon_EXPORT_WITH_RC4_40_MD5", - "0018": "TLS_DH_anon_WITH_RC4_128_MD5", - "0019": "TLS_DH_anon_EXPORT_WITH_DES40_CBC_SHA", - "001a": "TLS_DH_anon_WITH_DES_CBC_SHA", - "001b": "TLS_DH_anon_WITH_3DES_EDE_CBC_SHA", - "001e": "TLS_KRB5_WITH_DES_CBC_SHA", - "001f": "TLS_KRB5_WITH_3DES_EDE_CBC_SHA", - "0020": "TLS_KRB5_WITH_RC4_128_SHA", - "0021": "TLS_KRB5_WITH_IDEA_CBC_SHA", - "0022": "TLS_KRB5_WITH_DES_CBC_MD5", - "0023": "TLS_KRB5_WITH_3DES_EDE_CBC_MD5", - "0024": "TLS_KRB5_WITH_RC4_128_MD5", - "0025": "TLS_KRB5_WITH_IDEA_CBC_MD5", - "0026": "TLS_KRB5_EXPORT_WITH_DES_CBC_40_SHA", - "0027": "TLS_KRB5_EXPORT_WITH_RC2_CBC_40_SHA", - "0028": "TLS_KRB5_EXPORT_WITH_RC4_40_SHA", - "0029": "TLS_KRB5_EXPORT_WITH_DES_CBC_40_MD5", - "002a": "TLS_KRB5_EXPORT_WITH_RC2_CBC_40_MD5", - "002b": "TLS_KRB5_EXPORT_WITH_RC4_40_MD5", - "002c": "TLS_PSK_WITH_NULL_SHA", - "002d": "TLS_DHE_PSK_WITH_NULL_SHA", - "002e": "TLS_RSA_PSK_WITH_NULL_SHA", - "002f": "TLS_RSA_WITH_AES_128_CBC_SHA", - "0030": "TLS_DH_DSS_WITH_AES_128_CBC_SHA", - "0031": "TLS_DH_RSA_WITH_AES_128_CBC_SHA", - "0032": "TLS_DHE_DSS_WITH_AES_128_CBC_SHA", - "0033": "TLS_DHE_RSA_WITH_AES_128_CBC_SHA", - "0034": "TLS_DH_anon_WITH_AES_128_CBC_SHA", - "0035": "TLS_RSA_WITH_AES_256_CBC_SHA", - "0036": "TLS_DH_DSS_WITH_AES_256_CBC_SHA", - "0037": "TLS_DH_RSA_WITH_AES_256_CBC_SHA", - "0038": "TLS_DHE_DSS_WITH_AES_256_CBC_SHA", - "0039": "TLS_DHE_RSA_WITH_AES_256_CBC_SHA", - "003a": "TLS_DH_anon_WITH_AES_256_CBC_SHA", - "003b": "TLS_RSA_WITH_NULL_SHA256", - "003c": "TLS_RSA_WITH_AES_128_CBC_SHA256", - "003d": "TLS_RSA_WITH_AES_256_CBC_SHA256", - "003e": "TLS_DH_DSS_WITH_AES_128_CBC_SHA256", - "003f": "TLS_DH_RSA_WITH_AES_128_CBC_SHA256", - "0040": "TLS_DHE_DSS_WITH_AES_128_CBC_SHA256", - "0041": "TLS_RSA_WITH_CAMELLIA_128_CBC_SHA", - "0042": "TLS_DH_DSS_WITH_CAMELLIA_128_CBC_SHA", - "0043": "TLS_DH_RSA_WITH_CAMELLIA_128_CBC_SHA", - "0044": "TLS_DHE_DSS_WITH_CAMELLIA_128_CBC_SHA", - "0045": "TLS_DHE_RSA_WITH_CAMELLIA_128_CBC_SHA", - "0046": "TLS_DH_anon_WITH_CAMELLIA_128_CBC_SHA", - "0062": "TLS_RSA_EXPORT1024_WITH_DES_CBC_SHA", - "0063": "TLS_DHE_DSS_EXPORT1024_WITH_DES_CBC_SHA", - "0064": "TLS_RSA_EXPORT1024_WITH_RC4_56_SHA", - "0065": "TLS_DHE_DSS_EXPORT1024_WITH_RC4_56_SHA", - "0066": "TLS_DHE_DSS_WITH_RC4_128_SHA", - "0067": "TLS_DHE_RSA_WITH_AES_128_CBC_SHA256", - "0068": "TLS_DH_DSS_WITH_AES_256_CBC_SHA256", - "0069": "TLS_DH_RSA_WITH_AES_256_CBC_SHA256", - "006a": "TLS_DHE_DSS_WITH_AES_256_CBC_SHA256", - "006b": "TLS_DHE_RSA_WITH_AES_256_CBC_SHA256", - "006c": "TLS_DH_anon_WITH_AES_128_CBC_SHA256", - "006d": "TLS_DH_anon_WITH_AES_256_CBC_SHA256", - "0084": "TLS_RSA_WITH_CAMELLIA_256_CBC_SHA", - "0085": "TLS_DH_DSS_WITH_CAMELLIA_256_CBC_SHA", - "0086": "TLS_DH_RSA_WITH_CAMELLIA_256_CBC_SHA", - "0087": "TLS_DHE_DSS_WITH_CAMELLIA_256_CBC_SHA", - "0088": "TLS_DHE_RSA_WITH_CAMELLIA_256_CBC_SHA", - "0089": "TLS_DH_anon_WITH_CAMELLIA_256_CBC_SHA", - "008a": "TLS_PSK_WITH_RC4_128_SHA", - "008b": "TLS_PSK_WITH_3DES_EDE_CBC_SHA", - "008c": "TLS_PSK_WITH_AES_128_CBC_SHA", - "008d": "TLS_PSK_WITH_AES_256_CBC_SHA", - "008e": "TLS_DHE_PSK_WITH_RC4_128_SHA", - "008f": "TLS_DHE_PSK_WITH_3DES_EDE_CBC_SHA", - "0090": "TLS_DHE_PSK_WITH_AES_128_CBC_SHA", - "0091": "TLS_DHE_PSK_WITH_AES_256_CBC_SHA", - "0092": "TLS_RSA_PSK_WITH_RC4_128_SHA", - "0093": "TLS_RSA_PSK_WITH_3DES_EDE_CBC_SHA", - "0094": "TLS_RSA_PSK_WITH_AES_128_CBC_SHA", - "0095": "TLS_RSA_PSK_WITH_AES_256_CBC_SHA", - "0096": "TLS_RSA_WITH_SEED_CBC_SHA", - "0097": "TLS_DH_DSS_WITH_SEED_CBC_SHA", - "0098": "TLS_DH_RSA_WITH_SEED_CBC_SHA", - "0099": "TLS_DHE_DSS_WITH_SEED_CBC_SHA", - "009a": "TLS_DHE_RSA_WITH_SEED_CBC_SHA", - "009b": "TLS_DH_anon_WITH_SEED_CBC_SHA", - "009c": "TLS_RSA_WITH_AES_128_GCM_SHA256", - "009d": "TLS_RSA_WITH_AES_256_GCM_SHA384", - "009e": "TLS_DHE_RSA_WITH_AES_128_GCM_SHA256", - "009f": "TLS_DHE_RSA_WITH_AES_256_GCM_SHA384", - "00a0": "TLS_DH_RSA_WITH_AES_128_GCM_SHA256", - "00a1": "TLS_DH_RSA_WITH_AES_256_GCM_SHA384", - "00a2": "TLS_DHE_DSS_WITH_AES_128_GCM_SHA256", - "00a3": "TLS_DHE_DSS_WITH_AES_256_GCM_SHA384", - "00a4": "TLS_DH_DSS_WITH_AES_128_GCM_SHA256", - "00a5": "TLS_DH_DSS_WITH_AES_256_GCM_SHA384", - "00a6": "TLS_DH_anon_WITH_AES_128_GCM_SHA256", - "00a7": "TLS_DH_anon_WITH_AES_256_GCM_SHA384", - "00a8": "TLS_PSK_WITH_AES_128_GCM_SHA256", - "00a9": "TLS_PSK_WITH_AES_256_GCM_SHA384", - "00aa": "TLS_DHE_PSK_WITH_AES_128_GCM_SHA256", - "00ab": "TLS_DHE_PSK_WITH_AES_256_GCM_SHA384", - "00ac": "TLS_RSA_PSK_WITH_AES_128_GCM_SHA256", - "00ad": "TLS_RSA_PSK_WITH_AES_256_GCM_SHA384", - "00ae": "TLS_PSK_WITH_AES_128_CBC_SHA256", - "00af": "TLS_PSK_WITH_AES_256_CBC_SHA384", - "00b0": "TLS_PSK_WITH_NULL_SHA256", - "00b1": "TLS_PSK_WITH_NULL_SHA384", - "00b2": "TLS_DHE_PSK_WITH_AES_128_CBC_SHA256", - "00b3": "TLS_DHE_PSK_WITH_AES_256_CBC_SHA384", - "00b4": "TLS_DHE_PSK_WITH_NULL_SHA256", - "00b5": "TLS_DHE_PSK_WITH_NULL_SHA384", - "00b6": "TLS_RSA_PSK_WITH_AES_128_CBC_SHA256", - "00b7": "TLS_RSA_PSK_WITH_AES_256_CBC_SHA384", - "00b8": "TLS_RSA_PSK_WITH_NULL_SHA256", - "00b9": "TLS_RSA_PSK_WITH_NULL_SHA384", - "00ba": "TLS_RSA_WITH_CAMELLIA_128_CBC_SHA256", - "00bb": "TLS_DH_DSS_WITH_CAMELLIA_128_CBC_SHA256", - "00bc": "TLS_DH_RSA_WITH_CAMELLIA_128_CBC_SHA256", - "00bd": "TLS_DHE_DSS_WITH_CAMELLIA_128_CBC_SHA256", - "00be": "TLS_DHE_RSA_WITH_CAMELLIA_128_CBC_SHA256", - "00bf": "TLS_DH_anon_WITH_CAMELLIA_128_CBC_SHA256", - "00c0": "TLS_RSA_WITH_CAMELLIA_256_CBC_SHA256", - "00c1": "TLS_DH_DSS_WITH_CAMELLIA_256_CBC_SHA256", - "00c2": "TLS_DH_RSA_WITH_CAMELLIA_256_CBC_SHA256", - "00c3": "TLS_DHE_DSS_WITH_CAMELLIA_256_CBC_SHA256", - "00c4": "TLS_DHE_RSA_WITH_CAMELLIA_256_CBC_SHA256", - "00c5": "TLS_DH_anon_WITH_CAMELLIA_256_CBC_SHA256", - "00ff": "TLS_EMPTY_RENEGOTIATION_INFO_SCSV", - "5600": "TLS_FALLBACK_SCSV", - "c001": "TLS_ECDH_ECDSA_WITH_NULL_SHA", - "c002": "TLS_ECDH_ECDSA_WITH_RC4_128_SHA", - "c003": "TLS_ECDH_ECDSA_WITH_3DES_EDE_CBC_SHA", - "c004": "TLS_ECDH_ECDSA_WITH_AES_128_CBC_SHA", - "c005": "TLS_ECDH_ECDSA_WITH_AES_256_CBC_SHA", - "c006": "TLS_ECDHE_ECDSA_WITH_NULL_SHA", - "c007": "TLS_ECDHE_ECDSA_WITH_RC4_128_SHA", - "c008": "TLS_ECDHE_ECDSA_WITH_3DES_EDE_CBC_SHA", - "c009": "TLS_ECDHE_ECDSA_WITH_AES_128_CBC_SHA", - "c00a": "TLS_ECDHE_ECDSA_WITH_AES_256_CBC_SHA", - "c00b": "TLS_ECDH_RSA_WITH_NULL_SHA", - "c00c": "TLS_ECDH_RSA_WITH_RC4_128_SHA", - "c00d": "TLS_ECDH_RSA_WITH_3DES_EDE_CBC_SHA", - "c00e": "TLS_ECDH_RSA_WITH_AES_128_CBC_SHA", - "c00f": "TLS_ECDH_RSA_WITH_AES_256_CBC_SHA", - "c010": "TLS_ECDHE_RSA_WITH_NULL_SHA", - "c011": "TLS_ECDHE_RSA_WITH_RC4_128_SHA", - "c012": "TLS_ECDHE_RSA_WITH_3DES_EDE_CBC_SHA", - "c013": "TLS_ECDHE_RSA_WITH_AES_128_CBC_SHA", - "c014": "TLS_ECDHE_RSA_WITH_AES_256_CBC_SHA", - "c015": "TLS_ECDH_anon_WITH_NULL_SHA", - "c016": "TLS_ECDH_anon_WITH_RC4_128_SHA", - "c017": "TLS_ECDH_anon_WITH_3DES_EDE_CBC_SHA", - "c018": "TLS_ECDH_anon_WITH_AES_128_CBC_SHA", - "c019": "TLS_ECDH_anon_WITH_AES_256_CBC_SHA", - "c01a": "TLS_SRP_SHA_WITH_3DES_EDE_CBC_SHA", - "c01b": "TLS_SRP_SHA_RSA_WITH_3DES_EDE_CBC_SHA", - "c01c": "TLS_SRP_SHA_DSS_WITH_3DES_EDE_CBC_SHA", - "c01d": "TLS_SRP_SHA_WITH_AES_128_CBC_SHA", - "c01e": "TLS_SRP_SHA_RSA_WITH_AES_128_CBC_SHA", - "c01f": "TLS_SRP_SHA_DSS_WITH_AES_128_CBC_SHA", - "c020": "TLS_SRP_SHA_WITH_AES_256_CBC_SHA", - "c021": "TLS_SRP_SHA_RSA_WITH_AES_256_CBC_SHA", - "c022": "TLS_SRP_SHA_DSS_WITH_AES_256_CBC_SHA", - "c023": "TLS_ECDHE_ECDSA_WITH_AES_128_CBC_SHA256", - "c024": "TLS_ECDHE_ECDSA_WITH_AES_256_CBC_SHA384", - "c025": "TLS_ECDH_ECDSA_WITH_AES_128_CBC_SHA256", - "c026": "TLS_ECDH_ECDSA_WITH_AES_256_CBC_SHA384", - "c027": "TLS_ECDHE_RSA_WITH_AES_128_CBC_SHA256", - "c028": "TLS_ECDHE_RSA_WITH_AES_256_CBC_SHA384", - "c029": "TLS_ECDH_RSA_WITH_AES_128_CBC_SHA256", - "c02a": "TLS_ECDH_RSA_WITH_AES_256_CBC_SHA384", - "c02b": "TLS_ECDHE_ECDSA_WITH_AES_128_GCM_SHA256", - "c02c": "TLS_ECDHE_ECDSA_WITH_AES_256_GCM_SHA384", - "c02d": "TLS_ECDH_ECDSA_WITH_AES_128_GCM_SHA256", - "c02e": "TLS_ECDH_ECDSA_WITH_AES_256_GCM_SHA384", - "c02f": "TLS_ECDHE_RSA_WITH_AES_128_GCM_SHA256", - "c030": "TLS_ECDHE_RSA_WITH_AES_256_GCM_SHA384", - "c031": "TLS_ECDH_RSA_WITH_AES_128_GCM_SHA256", - "c032": "TLS_ECDH_RSA_WITH_AES_256_GCM_SHA384", - "c033": "TLS_ECDHE_PSK_WITH_RC4_128_SHA", - "c034": "TLS_ECDHE_PSK_WITH_3DES_EDE_CBC_SHA", - "c035": "TLS_ECDHE_PSK_WITH_AES_128_CBC_SHA", - "c036": "TLS_ECDHE_PSK_WITH_AES_256_CBC_SHA", - "c037": "TLS_ECDHE_PSK_WITH_AES_128_CBC_SHA256", - "c038": "TLS_ECDHE_PSK_WITH_AES_256_CBC_SHA384", - "c039": "TLS_ECDHE_PSK_WITH_NULL_SHA", - "c03a": "TLS_ECDHE_PSK_WITH_NULL_SHA256", - "c03b": "TLS_ECDHE_PSK_WITH_NULL_SHA384", - "c03c": "TLS_RSA_WITH_ARIA_128_CBC_SHA256", - "c03d": "TLS_RSA_WITH_ARIA_256_CBC_SHA384", - "c03e": "TLS_DH_DSS_WITH_ARIA_128_CBC_SHA256", - "c03f": "TLS_DH_DSS_WITH_ARIA_256_CBC_SHA384", - "c040": "TLS_DH_RSA_WITH_ARIA_128_CBC_SHA256", - "c041": "TLS_DH_RSA_WITH_ARIA_256_CBC_SHA384", - "c042": "TLS_DHE_DSS_WITH_ARIA_128_CBC_SHA256", - "c043": "TLS_DHE_DSS_WITH_ARIA_256_CBC_SHA384", - "c044": "TLS_DHE_RSA_WITH_ARIA_128_CBC_SHA256", - "c045": "TLS_DHE_RSA_WITH_ARIA_256_CBC_SHA384", - "c046": "TLS_DH_anon_WITH_ARIA_128_CBC_SHA256", - "c047": "TLS_DH_anon_WITH_ARIA_256_CBC_SHA384", - "c048": "TLS_ECDHE_ECDSA_WITH_ARIA_128_CBC_SHA256", - "c049": "TLS_ECDHE_ECDSA_WITH_ARIA_256_CBC_SHA384", - "c04a": "TLS_ECDH_ECDSA_WITH_ARIA_128_CBC_SHA256", - "c04b": "TLS_ECDH_ECDSA_WITH_ARIA_256_CBC_SHA384", - "c04c": "TLS_ECDHE_RSA_WITH_ARIA_128_CBC_SHA256", - "c04d": "TLS_ECDHE_RSA_WITH_ARIA_256_CBC_SHA384", - "c04e": "TLS_ECDH_RSA_WITH_ARIA_128_CBC_SHA256", - "c04f": "TLS_ECDH_RSA_WITH_ARIA_256_CBC_SHA384", - "c050": "TLS_RSA_WITH_ARIA_128_GCM_SHA256", - "c051": "TLS_RSA_WITH_ARIA_256_GCM_SHA384", - "c052": "TLS_DHE_RSA_WITH_ARIA_128_GCM_SHA256", - "c053": "TLS_DHE_RSA_WITH_ARIA_256_GCM_SHA384", - "c054": "TLS_DH_RSA_WITH_ARIA_128_GCM_SHA256", - "c055": "TLS_DH_RSA_WITH_ARIA_256_GCM_SHA384", - "c056": "TLS_DHE_DSS_WITH_ARIA_128_GCM_SHA256", - "c057": "TLS_DHE_DSS_WITH_ARIA_256_GCM_SHA384", - "c058": "TLS_DH_DSS_WITH_ARIA_128_GCM_SHA256", - "c059": "TLS_DH_DSS_WITH_ARIA_256_GCM_SHA384", - "c05a": "TLS_DH_anon_WITH_ARIA_128_GCM_SHA256", - "c05b": "TLS_DH_anon_WITH_ARIA_256_GCM_SHA384", - "c05c": "TLS_ECDHE_ECDSA_WITH_ARIA_128_GCM_SHA256", - "c05d": "TLS_ECDHE_ECDSA_WITH_ARIA_256_GCM_SHA384", - "c05e": "TLS_ECDH_ECDSA_WITH_ARIA_128_GCM_SHA256", - "c05f": "TLS_ECDH_ECDSA_WITH_ARIA_256_GCM_SHA384", - "c060": "TLS_ECDHE_RSA_WITH_ARIA_128_GCM_SHA256", - "c061": "TLS_ECDHE_RSA_WITH_ARIA_256_GCM_SHA384", - "c062": "TLS_ECDH_RSA_WITH_ARIA_128_GCM_SHA256", - "c063": "TLS_ECDH_RSA_WITH_ARIA_256_GCM_SHA384", - "c064": "TLS_PSK_WITH_ARIA_128_CBC_SHA256", - "c065": "TLS_PSK_WITH_ARIA_256_CBC_SHA384", - "c066": "TLS_DHE_PSK_WITH_ARIA_128_CBC_SHA256", - "c067": "TLS_DHE_PSK_WITH_ARIA_256_CBC_SHA384", - "c068": "TLS_RSA_PSK_WITH_ARIA_128_CBC_SHA256", - "c069": "TLS_RSA_PSK_WITH_ARIA_256_CBC_SHA384", - "c06a": "TLS_PSK_WITH_ARIA_128_GCM_SHA256", - "c06b": "TLS_PSK_WITH_ARIA_256_GCM_SHA384", - "c06c": "TLS_DHE_PSK_WITH_ARIA_128_GCM_SHA256", - "c06d": "TLS_DHE_PSK_WITH_ARIA_256_GCM_SHA384", - "c06e": "TLS_RSA_PSK_WITH_ARIA_128_GCM_SHA256", - "c06f": "TLS_RSA_PSK_WITH_ARIA_256_GCM_SHA384", - "c070": "TLS_ECDHE_PSK_WITH_ARIA_128_CBC_SHA256", - "c071": "TLS_ECDHE_PSK_WITH_ARIA_256_CBC_SHA384", - "c072": "TLS_ECDHE_ECDSA_WITH_CAMELLIA_128_CBC_SHA256", - "c073": "TLS_ECDHE_ECDSA_WITH_CAMELLIA_256_CBC_SHA384", - "c074": "TLS_ECDH_ECDSA_WITH_CAMELLIA_128_CBC_SHA256", - "c075": "TLS_ECDH_ECDSA_WITH_CAMELLIA_256_CBC_SHA384", - "c076": "TLS_ECDHE_RSA_WITH_CAMELLIA_128_CBC_SHA256", - "c077": "TLS_ECDHE_RSA_WITH_CAMELLIA_256_CBC_SHA384", - "c078": "TLS_ECDH_RSA_WITH_CAMELLIA_128_CBC_SHA256", - "c079": "TLS_ECDH_RSA_WITH_CAMELLIA_256_CBC_SHA384", - "c07a": "TLS_RSA_WITH_CAMELLIA_128_GCM_SHA256", - "c07b": "TLS_RSA_WITH_CAMELLIA_256_GCM_SHA384", - "c07c": "TLS_DHE_RSA_WITH_CAMELLIA_128_GCM_SHA256", - "c07d": "TLS_DHE_RSA_WITH_CAMELLIA_256_GCM_SHA384", - "c07e": "TLS_DH_RSA_WITH_CAMELLIA_128_GCM_SHA256", - "c07f": "TLS_DH_RSA_WITH_CAMELLIA_256_GCM_SHA384", - "c080": "TLS_DHE_DSS_WITH_CAMELLIA_128_GCM_SHA256", - "c081": "TLS_DHE_DSS_WITH_CAMELLIA_256_GCM_SHA384", - "c082": "TLS_DH_DSS_WITH_CAMELLIA_128_GCM_SHA256", - "c083": "TLS_DH_DSS_WITH_CAMELLIA_256_GCM_SHA384", - "c084": "TLS_DH_anon_WITH_CAMELLIA_128_GCM_SHA256", - "c085": "TLS_DH_anon_WITH_CAMELLIA_256_GCM_SHA384", - "c086": "TLS_ECDHE_ECDSA_WITH_CAMELLIA_128_GCM_SHA256", - "c087": "TLS_ECDHE_ECDSA_WITH_CAMELLIA_256_GCM_SHA384", - "c088": "TLS_ECDH_ECDSA_WITH_CAMELLIA_128_GCM_SHA256", - "c089": "TLS_ECDH_ECDSA_WITH_CAMELLIA_256_GCM_SHA384", - "c08a": "TLS_ECDHE_RSA_WITH_CAMELLIA_128_GCM_SHA256", - "c08b": "TLS_ECDHE_RSA_WITH_CAMELLIA_256_GCM_SHA384", - "c08c": "TLS_ECDH_RSA_WITH_CAMELLIA_128_GCM_SHA256", - "c08d": "TLS_ECDH_RSA_WITH_CAMELLIA_256_GCM_SHA384", - "c08e": "TLS_PSK_WITH_CAMELLIA_128_GCM_SHA256", - "c08f": "TLS_PSK_WITH_CAMELLIA_256_GCM_SHA384", - "c090": "TLS_DHE_PSK_WITH_CAMELLIA_128_GCM_SHA256", - "c091": "TLS_DHE_PSK_WITH_CAMELLIA_256_GCM_SHA384", - "c092": "TLS_RSA_PSK_WITH_CAMELLIA_128_GCM_SHA256", - "c093": "TLS_RSA_PSK_WITH_CAMELLIA_256_GCM_SHA384", - "c094": "TLS_PSK_WITH_CAMELLIA_128_CBC_SHA256", - "c095": "TLS_PSK_WITH_CAMELLIA_256_CBC_SHA384", - "c096": "TLS_DHE_PSK_WITH_CAMELLIA_128_CBC_SHA256", - "c097": "TLS_DHE_PSK_WITH_CAMELLIA_256_CBC_SHA384", - "c098": "TLS_RSA_PSK_WITH_CAMELLIA_128_CBC_SHA256", - "c099": "TLS_RSA_PSK_WITH_CAMELLIA_256_CBC_SHA384", - "c09a": "TLS_ECDHE_PSK_WITH_CAMELLIA_128_CBC_SHA256", - "c09b": "TLS_ECDHE_PSK_WITH_CAMELLIA_256_CBC_SHA384", - "c09c": "TLS_RSA_WITH_AES_128_CCM", - "c09d": "TLS_RSA_WITH_AES_256_CCM", - "c09e": "TLS_DHE_RSA_WITH_AES_128_CCM", - "c09f": "TLS_DHE_RSA_WITH_AES_256_CCM", - "c0a0": "TLS_RSA_WITH_AES_128_CCM_8", - "c0a1": "TLS_RSA_WITH_AES_256_CCM_8", - "c0a2": "TLS_DHE_RSA_WITH_AES_128_CCM_8", - "c0a3": "TLS_DHE_RSA_WITH_AES_256_CCM_8", - "c0a4": "TLS_PSK_WITH_AES_128_CCM", - "c0a5": "TLS_PSK_WITH_AES_256_CCM", - "c0a6": "TLS_DHE_PSK_WITH_AES_128_CCM", - "c0a7": "TLS_DHE_PSK_WITH_AES_256_CCM", - "c0a8": "TLS_PSK_WITH_AES_128_CCM_8", - "c0a9": "TLS_PSK_WITH_AES_256_CCM_8", - "c0aa": "TLS_PSK_DHE_WITH_AES_128_CCM_8", - "c0ab": "TLS_PSK_DHE_WITH_AES_256_CCM_8", - "c0ac": "TLS_ECDHE_ECDSA_WITH_AES_128_CCM", - "c0ad": "TLS_ECDHE_ECDSA_WITH_AES_256_CCM", - "c0ae": "TLS_ECDHE_ECDSA_WITH_AES_128_CCM_8", - "c0af": "TLS_ECDHE_ECDSA_WITH_AES_256_CCM_8", - "cca8": "TLS_ECDHE_RSA_WITH_CHACHA20_POLY1305_SHA256", - "cca9": "TLS_ECDHE_ECDSA_WITH_CHACHA20_POLY1305_SHA256", - "ccaa": "TLS_DHE_RSA_WITH_CHACHA20_POLY1305_SHA256", - "ccab": "TLS_PSK_WITH_CHACHA20_POLY1305_SHA256", - "ccac": "TLS_ECDHE_PSK_WITH_CHACHA20_POLY1305_SHA256", - "ccad": "TLS_DHE_PSK_WITH_CHACHA20_POLY1305_SHA256", - "ccae": "TLS_RSA_PSK_WITH_CHACHA20_POLY1305_SHA256", - 'd001': 'TLS_ECDHE_PSK_WITH_AES_128_GCM_SHA256', - 'd002': 'TLS_ECDHE_PSK_WITH_AES_256_GCM_SHA384', - 'd003': 'TLS_ECDHE_PSK_WITH_AES_128_CCM_8_SHA256', - 'd005': 'TLS_ECDHE_PSK_WITH_AES_128_CCM_SHA256', - '1301': 'TLS_AES_128_GCM_SHA256', # TLS 1.3 cipher suites - '1302': 'TLS_AES_256_GCM_SHA384', - '1303': 'TLS_CHACHA20_POLY1305_SHA256', - '1304': 'TLS_AES_128_CCM_SHA256', - '1305': 'TLS_AES_128_CCM_8_SHA256', - '16b7': 'TLS_CECPQ1_RSA_WITH_CHACHA20_POLY1305_SHA256', # Combined elliptic curve post-quantum suites - '16b8': 'TLS_CECPQ1_ECDSA_WITH_CHACHA20_POLY1305_SHA256', - '16b9': 'TLS_CECPQ1_RSA_WITH_AES_256_GCM_SHA384', - '16ba': 'TLS_CECPQ1_ECDSA_WITH_AES_256_GCM_SHA384', - '0a0a': 'GREASE_cipher_suite_0a0a', # GREASE compatibility ciphers suites - '1a1a': 'GREASE_cipher_suite_1a1a', - '2a2a': 'GREASE_cipher_suite_2a2a', - '3a3a': 'GREASE_cipher_suite_3a3a', - '4a4a': 'GREASE_cipher_suite_4a4a', - '5a5a': 'GREASE_cipher_suite_5a5a', - '6a6a': 'GREASE_cipher_suite_6a6a', - '7a7a': 'GREASE_cipher_suite_7a7a', - '8a8a': 'GREASE_cipher_suite_8a8a', - '9a9a': 'GREASE_cipher_suite_9a9a', - 'aaaa': 'GREASE_cipher_suite_aaaa', - 'baba': 'GREASE_cipher_suite_baba', - 'caca': 'GREASE_cipher_suite_caca', - 'dada': 'GREASE_cipher_suite_dada', - 'eaea': 'GREASE_cipher_suite_eaea', - 'fafa': 'GREASE_cipher_suite_fafa', -} - -TLS_SIGNATURE_HASH_ALGORITHMS = { - 'efef': 'gostr34102012_512_gostr34112012_512', - 'eeee': 'gostr34102012_256_gostr34112012_256', - 'eded': 'gostr34102001_gostr3411', - '080b': 'rsa_pss_pss_sha512', - '080a': 'rsa_pss_pss_sha384', - '0809': 'rsa_pss_pss_sha256', - '0808': 'ed448', - '0807': 'ed25519', - '0806': 'rsa_pss_sha512', - '0805': 'rsa_pss_sha384', - '0804': 'rsa_pss_sha256', - '0603': 'ecdsa_sha512', - '0602': 'dsa_sha512', - '0601': 'rsa_sha512', - '0503': 'ecdsa_sha384', - '0502': 'dsa_sha384', - '0501': 'rsa_sha384', - '0403': 'ecdsa_sha256', - '0402': 'dsa_sha256', - '0401': 'rsa_sha256', - '0303': 'ecdsa_sha224', - '0302': 'dsa_sha224', - '0301': 'rsa_sha224', - '0203': 'ecdsa_sha1', - '0202': 'dsa_sha1', - '0201': 'rsa_sha1', - '0103': 'ecdsa_md5', - '0102': 'dsa_md5', - '0101': 'rsa_md5', - '0000': 'anonymous_none' -} - -TLS_CERTIFICATE_STATUS_TYPE = { - '00': 'reserved', - '01': 'ocsp', - '02': 'ocsp_multi', -} - -TLS_EC_POINT_FORMATS = { - '00': 'uncompressed', - '01': 'ansiX962_compressed_prime', - '02': 'ansiX962_compressed_char2', -} - -TLS_SUPPORTED_GROUPS = { - 0: 'Unassigned', - 1: 'sect163k1', - 2: 'sect163r1', - 3: 'sect163r2', - 4: 'sect193r1', - 5: 'sect193r2', - 6: 'sect233k1', - 7: 'sect233r1', - 8: 'sect239k1', - 9: 'sect283k1', - 10: 'sect283r1', - 11: 'sect409k1', - 12: 'sect409r1', - 13: 'sect571k1', - 14: 'sect571r1', - 15: 'secp160k1', - 16: 'secp160r1', - 17: 'secp160r2', - 18: 'secp192k1', - 19: 'secp192r1', - 20: 'secp224k1', - 21: 'secp224r1', - 22: 'secp256k1', - 23: 'secp256r1', - 24: 'secp384r1', - 25: 'secp521r1', - 26: 'brainpoolP256r1', - 27: 'brainpoolP384r1', - 28: 'brainpoolP512r1', - 29: 'x25519', - 30: 'x448', - 256: 'ffdhe2048', - 257: 'ffdhe3072', - 258: 'ffdhe4096', - 259: 'ffdhe6144', - 260: 'ffdhe8192', - 65281: 'arbitrary_explicit_prime_curves', - 65282: 'arbitrary_explicit_char2_curves', - 2570: 'GREASE', # GREASE compatibility groups - 6682: 'GREASE', - 10794: 'GREASE', - 14906: 'GREASE', - 19018: 'GREASE', - 23130: 'GREASE', - 27242: 'GREASE', - 31354: 'GREASE', - 35466: 'GREASE', - 39578: 'GREASE', - 43690: 'GREASE', - 47802: 'GREASE', - 51914: 'GREASE', - 56026: 'GREASE', - 60138: 'GREASE', - 64250: 'GREASE', -} - -TLS_PSK_KEY_EXCHANGE_MODES = { - 0: 'psk_ke', - 1: 'psk_dhe_ke', -} - -TLS_CURVE_TYPE = { - 3: 'named_curve', -} - -TLS_CIPHER_SUITES = { - 'TLS_AES_128_GCM_SHA256': { - 'cipher': AES, - 'mode': GCM, - 'enc_key_length': 16, - 'mac_key_length': 0, - 'iv_length': 12, - 'prf': SHA256, - }, - 'TLS_AES_256_GCM_SHA384': { - 'cipher': AES, - 'mode': GCM, - 'enc_key_length': 32, - 'mac_key_length': 0, - 'iv_length': 12, - 'prf': SHA384, - }, - 'TLS_RSA_WITH_AES_128_CBC_SHA': { - 'cipher': AES, - 'mode': CBC, - 'enc_key_length': 16, - 'mac_key_length': 20, - 'iv_length': 16, - 'fixed_iv_length': 0, - 'prf': SHA256, - }, - 'TLS_DH_DSS_WITH_AES_128_CBC_SHA': { - 'cipher': AES, - 'mode': CBC, - 'enc_key_length': 16, - 'mac_key_length': 20, - 'iv_length': 16, - 'fixed_iv_length': 0, - 'prf': SHA256, - }, - 'TLS_DH_RSA_WITH_AES_128_CBC_SHA': { - 'cipher': AES, - 'mode': CBC, - 'enc_key_length': 16, - 'mac_key_length': 20, - 'iv_length': 16, - 'fixed_iv_length': 0, - 'prf': SHA256, - }, - 'TLS_DHE_DSS_WITH_AES_128_CBC_SHA': { - 'cipher': AES, - 'mode': CBC, - 'enc_key_length': 16, - 'mac_key_length': 20, - 'iv_length': 16, - 'fixed_iv_length': 0, - 'prf': SHA256, - }, - 'TLS_DHE_RSA_WITH_AES_128_CBC_SHA': { - 'cipher': AES, - 'mode': CBC, - 'enc_key_length': 16, - 'mac_key_length': 20, - 'iv_length': 16, - 'fixed_iv_length': 0, - 'prf': SHA256, - }, - 'TLS_DH_anon_WITH_AES_128_CBC_SHA': { - 'cipher': AES, - 'mode': CBC, - 'enc_key_length': 16, - 'mac_key_length': 20, - 'iv_length': 16, - 'fixed_iv_length': 0, - 'prf': SHA256, - }, - 'TLS_RSA_WITH_AES_256_CBC_SHA': { - 'cipher': AES, - 'mode': CBC, - 'enc_key_length': 32, - 'mac_key_length': 20, - 'iv_length': 16, - 'fixed_iv_length': 0, - 'prf': SHA256, - }, - 'TLS_DH_DSS_WITH_AES_256_CBC_SHA': { - 'cipher': AES, - 'mode': CBC, - 'enc_key_length': 32, - 'mac_key_length': 20, - 'iv_length': 16, - 'fixed_iv_length': 0, - 'prf': SHA256, - }, - 'TLS_DH_RSA_WITH_AES_256_CBC_SHA': { - 'cipher': AES, - 'mode': CBC, - 'enc_key_length': 32, - 'mac_key_length': 20, - 'iv_length': 16, - 'fixed_iv_length': 0, - 'prf': SHA256, - }, - 'TLS_DHE_DSS_WITH_AES_256_CBC_SHA': { - 'cipher': AES, - 'mode': CBC, - 'enc_key_length': 32, - 'mac_key_length': 20, - 'iv_length': 16, - 'fixed_iv_length': 0, - 'prf': SHA256, - }, - 'TLS_DHE_RSA_WITH_AES_256_CBC_SHA': { - 'cipher': AES, - 'mode': CBC, - 'enc_key_length': 32, - 'mac_key_length': 20, - 'iv_length': 16, - 'fixed_iv_length': 0, - 'prf': SHA256, - }, - 'TLS_DH_anon_WITH_AES_256_CBC_SHA': { - 'cipher': AES, - 'mode': CBC, - 'enc_key_length': 32, - 'mac_key_length': 20, - 'iv_length': 16, - 'fixed_iv_length': 0, - 'prf': SHA256, - }, - 'TLS_RSA_WITH_AES_128_CBC_SHA256': { - 'cipher': AES, - 'mode': CBC, - 'enc_key_length': 16, - 'mac_key_length': 32, - 'iv_length': 16, - 'fixed_iv_length': 0, - 'prf': SHA256, - }, - 'TLS_RSA_WITH_AES_256_CBC_SHA256': { - 'cipher': AES, - 'mode': CBC, - 'enc_key_length': 32, - 'mac_key_length': 32, - 'iv_length': 16, - 'fixed_iv_length': 0, - 'prf': SHA256, - }, - 'TLS_DH_DSS_WITH_AES_128_CBC_SHA256': { - 'cipher': AES, - 'mode': CBC, - 'enc_key_length': 16, - 'mac_key_length': 32, - 'iv_length': 16, - 'fixed_iv_length': 0, - 'prf': SHA256, - }, - 'TLS_DH_RSA_WITH_AES_128_CBC_SHA256': { - 'cipher': AES, - 'mode': CBC, - 'enc_key_length': 16, - 'mac_key_length': 32, - 'iv_length': 16, - 'fixed_iv_length': 0, - 'prf': SHA256, - }, - 'TLS_DHE_DSS_WITH_AES_128_CBC_SHA256': { - 'cipher': AES, - 'mode': CBC, - 'enc_key_length': 16, - 'mac_key_length': 32, - 'iv_length': 16, - 'fixed_iv_length': 0, - 'prf': SHA256, - }, - 'TLS_DHE_RSA_WITH_AES_128_CBC_SHA256': { - 'cipher': AES, - 'mode': CBC, - 'enc_key_length': 16, - 'mac_key_length': 32, - 'iv_length': 16, - 'fixed_iv_length': 0, - 'prf': SHA256, - }, - 'TLS_DH_DSS_WITH_AES_256_CBC_SHA256': { - 'cipher': AES, - 'mode': CBC, - 'enc_key_length': 32, - 'mac_key_length': 32, - 'iv_length': 16, - 'fixed_iv_length': 0, - 'prf': SHA256, - }, - 'TLS_DH_RSA_WITH_AES_256_CBC_SHA256': { - 'cipher': AES, - 'mode': CBC, - 'enc_key_length': 32, - 'mac_key_length': 32, - 'iv_length': 16, - 'fixed_iv_length': 0, - 'prf': SHA256, - }, - 'TLS_DHE_DSS_WITH_AES_256_CBC_SHA256': { - 'cipher': AES, - 'mode': CBC, - 'enc_key_length': 32, - 'mac_key_length': 32, - 'iv_length': 16, - 'fixed_iv_length': 0, - 'prf': SHA256, - }, - 'TLS_DHE_RSA_WITH_AES_256_CBC_SHA256': { - 'cipher': AES, - 'mode': CBC, - 'enc_key_length': 32, - 'mac_key_length': 32, - 'iv_length': 16, - 'fixed_iv_length': 0, - 'prf': SHA256, - }, - 'TLS_DH_anon_WITH_AES_128_CBC_SHA256': { - 'cipher': AES, - 'mode': CBC, - 'enc_key_length': 16, - 'mac_key_length': 32, - 'iv_length': 16, - 'fixed_iv_length': 0, - 'prf': SHA256, - }, - 'TLS_DH_anon_WITH_AES_256_CBC_SHA256': { - 'cipher': AES, - 'mode': CBC, - 'enc_key_length': 32, - 'mac_key_length': 32, - 'iv_length': 16, - 'fixed_iv_length': 0, - 'prf': SHA256, - }, - 'TLS_PSK_WITH_AES_128_CBC_SHA': { - 'cipher': AES, - 'mode': CBC, - 'enc_key_length': 16, - 'mac_key_length': 20, - 'iv_length': 16, - 'fixed_iv_length': 0, - 'prf': SHA256, - }, - 'TLS_PSK_WITH_AES_256_CBC_SHA': { - 'cipher': AES, - 'mode': CBC, - 'enc_key_length': 32, - 'mac_key_length': 20, - 'iv_length': 16, - 'fixed_iv_length': 0, - 'prf': SHA256, - }, - 'TLS_DHE_PSK_WITH_AES_128_CBC_SHA': { - 'cipher': AES, - 'mode': CBC, - 'enc_key_length': 16, - 'mac_key_length': 20, - 'iv_length': 16, - 'fixed_iv_length': 0, - 'prf': SHA256, - }, - 'TLS_DHE_PSK_WITH_AES_256_CBC_SHA': { - 'cipher': AES, - 'mode': CBC, - 'enc_key_length': 32, - 'mac_key_length': 20, - 'iv_length': 16, - 'fixed_iv_length': 0, - 'prf': SHA256, - }, - 'TLS_RSA_PSK_WITH_AES_128_CBC_SHA': { - 'cipher': AES, - 'mode': CBC, - 'enc_key_length': 16, - 'mac_key_length': 20, - 'iv_length': 16, - 'fixed_iv_length': 0, - 'prf': SHA256, - }, - 'TLS_RSA_PSK_WITH_AES_256_CBC_SHA': { - 'cipher': AES, - 'mode': CBC, - 'enc_key_length': 32, - 'mac_key_length': 20, - 'iv_length': 16, - 'fixed_iv_length': 0, - 'prf': SHA256, - }, - 'TLS_RSA_WITH_AES_128_GCM_SHA256': { - 'cipher': AES, - 'mode': GCM, - 'enc_key_length': 16, - 'mac_key_length': 0, - 'iv_length': 8, - 'fixed_iv_length': 4, - 'prf': SHA256, - }, - 'TLS_RSA_WITH_AES_256_GCM_SHA384': { - 'cipher': AES, - 'mode': GCM, - 'enc_key_length': 32, - 'mac_key_length': 0, - 'iv_length': 8, - 'fixed_iv_length': 4, - 'prf': SHA384, - }, - 'TLS_DHE_RSA_WITH_AES_128_GCM_SHA256': { - 'cipher': AES, - 'mode': GCM, - 'enc_key_length': 16, - 'mac_key_length': 0, - 'iv_length': 8, - 'fixed_iv_length': 4, - 'prf': SHA256, - }, - 'TLS_DHE_RSA_WITH_AES_256_GCM_SHA384': { - 'cipher': AES, - 'mode': GCM, - 'enc_key_length': 32, - 'mac_key_length': 0, - 'iv_length': 8, - 'fixed_iv_length': 4, - 'prf': SHA384, - }, - 'TLS_DH_RSA_WITH_AES_128_GCM_SHA256': { - 'cipher': AES, - 'mode': GCM, - 'enc_key_length': 16, - 'mac_key_length': 0, - 'iv_length': 8, - 'fixed_iv_length': 4, - 'prf': SHA256, - }, - 'TLS_DH_RSA_WITH_AES_256_GCM_SHA384': { - 'cipher': AES, - 'mode': GCM, - 'enc_key_length': 32, - 'mac_key_length': 0, - 'iv_length': 8, - 'fixed_iv_length': 4, - 'prf': SHA384, - }, - 'TLS_DHE_DSS_WITH_AES_128_GCM_SHA256': { - 'cipher': AES, - 'mode': GCM, - 'enc_key_length': 16, - 'mac_key_length': 0, - 'iv_length': 8, - 'fixed_iv_length': 4, - 'prf': SHA256, - }, - 'TLS_DHE_DSS_WITH_AES_256_GCM_SHA384': { - 'cipher': AES, - 'mode': GCM, - 'enc_key_length': 32, - 'mac_key_length': 0, - 'iv_length': 8, - 'fixed_iv_length': 4, - 'prf': SHA384, - }, - 'TLS_DH_DSS_WITH_AES_128_GCM_SHA256': { - 'cipher': AES, - 'mode': GCM, - 'enc_key_length': 16, - 'mac_key_length': 0, - 'iv_length': 8, - 'fixed_iv_length': 4, - 'prf': SHA256, - }, - 'TLS_DH_DSS_WITH_AES_256_GCM_SHA384': { - 'cipher': AES, - 'mode': GCM, - 'enc_key_length': 32, - 'mac_key_length': 0, - 'iv_length': 8, - 'fixed_iv_length': 4, - 'prf': SHA384, - }, - 'TLS_DH_anon_WITH_AES_128_GCM_SHA256': { - 'cipher': AES, - 'mode': GCM, - 'enc_key_length': 16, - 'mac_key_length': 0, - 'iv_length': 8, - 'fixed_iv_length': 4, - 'prf': SHA256, - }, - 'TLS_DH_anon_WITH_AES_256_GCM_SHA384': { - 'cipher': AES, - 'mode': GCM, - 'enc_key_length': 32, - 'mac_key_length': 0, - 'iv_length': 8, - 'fixed_iv_length': 4, - 'prf': SHA384, - }, - 'TLS_PSK_WITH_AES_128_GCM_SHA256': { - 'cipher': AES, - 'mode': GCM, - 'enc_key_length': 16, - 'mac_key_length': 0, - 'iv_length': 8, - 'fixed_iv_length': 4, - 'prf': SHA256, - }, - 'TLS_PSK_WITH_AES_256_GCM_SHA384': { - 'cipher': AES, - 'mode': GCM, - 'enc_key_length': 32, - 'mac_key_length': 0, - 'iv_length': 8, - 'fixed_iv_length': 4, - 'prf': SHA384, - }, - 'TLS_DHE_PSK_WITH_AES_128_GCM_SHA256': { - 'cipher': AES, - 'mode': GCM, - 'enc_key_length': 16, - 'mac_key_length': 0, - 'iv_length': 8, - 'fixed_iv_length': 4, - 'prf': SHA256, - }, - 'TLS_DHE_PSK_WITH_AES_256_GCM_SHA384': { - 'cipher': AES, - 'mode': GCM, - 'enc_key_length': 32, - 'mac_key_length': 0, - 'iv_length': 8, - 'fixed_iv_length': 4, - 'prf': SHA384, - }, - 'TLS_RSA_PSK_WITH_AES_128_GCM_SHA256': { - 'cipher': AES, - 'mode': GCM, - 'enc_key_length': 16, - 'mac_key_length': 0, - 'iv_length': 8, - 'fixed_iv_length': 4, - 'prf': SHA256, - }, - 'TLS_RSA_PSK_WITH_AES_256_GCM_SHA384': { - 'cipher': AES, - 'mode': GCM, - 'enc_key_length': 32, - 'mac_key_length': 0, - 'iv_length': 8, - 'fixed_iv_length': 4, - 'prf': SHA384, - }, - 'TLS_PSK_WITH_AES_128_CBC_SHA256': { - 'cipher': AES, - 'mode': CBC, - 'enc_key_length': 16, - 'mac_key_length': 32, - 'iv_length': 16, - 'fixed_iv_length': 0, - 'prf': SHA256, - }, - 'TLS_PSK_WITH_AES_256_CBC_SHA384': { - 'cipher': AES, - 'mode': CBC, - 'enc_key_length': 32, - 'mac_key_length': 48, - 'iv_length': 16, - 'fixed_iv_length': 0, - 'prf': SHA384, - }, - 'TLS_DHE_PSK_WITH_AES_128_CBC_SHA256': { - 'cipher': AES, - 'mode': CBC, - 'enc_key_length': 16, - 'mac_key_length': 32, - 'iv_length': 16, - 'fixed_iv_length': 0, - 'prf': SHA256, - }, - 'TLS_DHE_PSK_WITH_AES_256_CBC_SHA384': { - 'cipher': AES, - 'mode': CBC, - 'enc_key_length': 32, - 'mac_key_length': 48, - 'iv_length': 16, - 'fixed_iv_length': 0, - 'prf': SHA384, - }, - 'TLS_RSA_PSK_WITH_AES_128_CBC_SHA256': { - 'cipher': AES, - 'mode': CBC, - 'enc_key_length': 16, - 'mac_key_length': 32, - 'iv_length': 16, - 'fixed_iv_length': 0, - 'prf': SHA256, - }, - 'TLS_RSA_PSK_WITH_AES_256_CBC_SHA384': { - 'cipher': AES, - 'mode': CBC, - 'enc_key_length': 32, - 'mac_key_length': 48, - 'iv_length': 16, - 'fixed_iv_length': 0, - 'prf': SHA384, - }, - 'TLS_ECDH_ECDSA_WITH_AES_128_CBC_SHA': { - 'cipher': AES, - 'mode': CBC, - 'enc_key_length': 16, - 'mac_key_length': 20, - 'iv_length': 16, - 'fixed_iv_length': 0, - 'prf': SHA256, - }, - 'TLS_ECDH_ECDSA_WITH_AES_256_CBC_SHA': { - 'cipher': AES, - 'mode': CBC, - 'enc_key_length': 32, - 'mac_key_length': 20, - 'iv_length': 16, - 'fixed_iv_length': 0, - 'prf': SHA256, - }, - 'TLS_ECDHE_ECDSA_WITH_AES_128_CBC_SHA': { - 'cipher': AES, - 'mode': CBC, - 'enc_key_length': 16, - 'mac_key_length': 20, - 'iv_length': 16, - 'fixed_iv_length': 0, - 'prf': SHA256, - }, - 'TLS_ECDHE_ECDSA_WITH_AES_256_CBC_SHA': { - 'cipher': AES, - 'mode': CBC, - 'enc_key_length': 32, - 'mac_key_length': 20, - 'iv_length': 16, - 'fixed_iv_length': 0, - 'prf': SHA256, - }, - 'TLS_ECDH_RSA_WITH_AES_128_CBC_SHA': { - 'cipher': AES, - 'mode': CBC, - 'enc_key_length': 16, - 'mac_key_length': 20, - 'iv_length': 16, - 'fixed_iv_length': 0, - 'prf': SHA256, - }, - 'TLS_ECDH_RSA_WITH_AES_256_CBC_SHA': { - 'cipher': AES, - 'mode': CBC, - 'enc_key_length': 32, - 'mac_key_length': 20, - 'iv_length': 16, - 'fixed_iv_length': 0, - 'prf': SHA256, - }, - 'TLS_ECDHE_RSA_WITH_AES_128_CBC_SHA': { - 'cipher': AES, - 'mode': CBC, - 'enc_key_length': 16, - 'mac_key_length': 20, - 'iv_length': 16, - 'fixed_iv_length': 0, - 'prf': SHA256, - }, - 'TLS_ECDHE_RSA_WITH_AES_256_CBC_SHA': { - 'cipher': AES, - 'mode': CBC, - 'enc_key_length': 32, - 'mac_key_length': 20, - 'iv_length': 16, - 'fixed_iv_length': 0, - 'prf': SHA256, - }, - 'TLS_ECDH_anon_WITH_AES_128_CBC_SHA': { - 'cipher': AES, - 'mode': CBC, - 'enc_key_length': 16, - 'mac_key_length': 20, - 'iv_length': 16, - 'fixed_iv_length': 0, - 'prf': SHA256, - }, - 'TLS_ECDH_anon_WITH_AES_256_CBC_SHA': { - 'cipher': AES, - 'mode': CBC, - 'enc_key_length': 32, - 'mac_key_length': 20, - 'iv_length': 16, - 'fixed_iv_length': 0, - 'prf': SHA256, - }, - 'TLS_SRP_SHA_WITH_AES_128_CBC_SHA': { - 'cipher': AES, - 'mode': CBC, - 'enc_key_length': 16, - 'mac_key_length': 20, - 'iv_length': 16, - 'fixed_iv_length': 0, - 'prf': SHA256, - }, - 'TLS_SRP_SHA_RSA_WITH_AES_128_CBC_SHA': { - 'cipher': AES, - 'mode': CBC, - 'enc_key_length': 16, - 'mac_key_length': 20, - 'iv_length': 16, - 'fixed_iv_length': 0, - 'prf': SHA256, - }, - 'TLS_SRP_SHA_DSS_WITH_AES_128_CBC_SHA': { - 'cipher': AES, - 'mode': CBC, - 'enc_key_length': 16, - 'mac_key_length': 20, - 'iv_length': 16, - 'fixed_iv_length': 0, - 'prf': SHA256, - }, - 'TLS_SRP_SHA_WITH_AES_256_CBC_SHA': { - 'cipher': AES, - 'mode': CBC, - 'enc_key_length': 32, - 'mac_key_length': 20, - 'iv_length': 16, - 'fixed_iv_length': 0, - 'prf': SHA256, - }, - 'TLS_SRP_SHA_RSA_WITH_AES_256_CBC_SHA': { - 'cipher': AES, - 'mode': CBC, - 'enc_key_length': 32, - 'mac_key_length': 20, - 'iv_length': 16, - 'fixed_iv_length': 0, - 'prf': SHA256, - }, - 'TLS_SRP_SHA_DSS_WITH_AES_256_CBC_SHA': { - 'cipher': AES, - 'mode': CBC, - 'enc_key_length': 32, - 'mac_key_length': 20, - 'iv_length': 16, - 'fixed_iv_length': 0, - 'prf': SHA256, - }, - 'TLS_ECDHE_ECDSA_WITH_AES_128_CBC_SHA256': { - 'cipher': AES, - 'mode': CBC, - 'enc_key_length': 16, - 'mac_key_length': 32, - 'iv_length': 16, - 'fixed_iv_length': 0, - 'prf': SHA256, - }, - 'TLS_ECDHE_ECDSA_WITH_AES_256_CBC_SHA384': { - 'cipher': AES, - 'mode': CBC, - 'enc_key_length': 32, - 'mac_key_length': 48, - 'iv_length': 16, - 'fixed_iv_length': 0, - 'prf': SHA384, - }, - 'TLS_ECDH_ECDSA_WITH_AES_128_CBC_SHA256': { - 'cipher': AES, - 'mode': CBC, - 'enc_key_length': 16, - 'mac_key_length': 32, - 'iv_length': 16, - 'fixed_iv_length': 0, - 'prf': SHA256, - }, - 'TLS_ECDH_ECDSA_WITH_AES_256_CBC_SHA384': { - 'cipher': AES, - 'mode': CBC, - 'enc_key_length': 32, - 'mac_key_length': 48, - 'iv_length': 16, - 'fixed_iv_length': 0, - 'prf': SHA384, - }, - 'TLS_ECDHE_RSA_WITH_AES_128_CBC_SHA256': { - 'cipher': AES, - 'mode': CBC, - 'enc_key_length': 16, - 'mac_key_length': 32, - 'iv_length': 16, - 'fixed_iv_length': 0, - 'prf': SHA256, - }, - 'TLS_ECDHE_RSA_WITH_AES_256_CBC_SHA384': { - 'cipher': AES, - 'mode': CBC, - 'enc_key_length': 32, - 'mac_key_length': 48, - 'iv_length': 16, - 'fixed_iv_length': 0, - 'prf': SHA384, - }, - 'TLS_ECDH_RSA_WITH_AES_128_CBC_SHA256': { - 'cipher': AES, - 'mode': CBC, - 'enc_key_length': 16, - 'mac_key_length': 32, - 'iv_length': 16, - 'fixed_iv_length': 0, - 'prf': SHA256, - }, - 'TLS_ECDH_RSA_WITH_AES_256_CBC_SHA384': { - 'cipher': AES, - 'mode': CBC, - 'enc_key_length': 32, - 'mac_key_length': 48, - 'iv_length': 16, - 'fixed_iv_length': 0, - 'prf': SHA384, - }, - 'TLS_ECDHE_ECDSA_WITH_AES_128_GCM_SHA256': { - 'cipher': AES, - 'mode': GCM, - 'enc_key_length': 16, - 'mac_key_length': 0, - 'iv_length': 8, - 'fixed_iv_length': 4, - 'prf': SHA256, - }, - 'TLS_ECDHE_ECDSA_WITH_AES_256_GCM_SHA384': { - 'cipher': AES, - 'mode': GCM, - 'enc_key_length': 32, - 'mac_key_length': 0, - 'iv_length': 8, - 'fixed_iv_length': 4, - 'prf': SHA384, - }, - 'TLS_ECDH_ECDSA_WITH_AES_128_GCM_SHA256': { - 'cipher': AES, - 'mode': GCM, - 'enc_key_length': 16, - 'mac_key_length': 0, - 'iv_length': 8, - 'fixed_iv_length': 4, - 'prf': SHA256, - }, - 'TLS_ECDH_ECDSA_WITH_AES_256_GCM_SHA384': { - 'cipher': AES, - 'mode': GCM, - 'enc_key_length': 32, - 'mac_key_length': 0, - 'iv_length': 8, - 'fixed_iv_length': 4, - 'prf': SHA384, - }, - 'TLS_ECDHE_RSA_WITH_AES_128_GCM_SHA256': { - 'cipher': AES, - 'mode': GCM, - 'enc_key_length': 16, - 'mac_key_length': 0, - 'iv_length': 8, - 'fixed_iv_length': 4, - 'prf': SHA256, - }, - 'TLS_ECDHE_RSA_WITH_AES_256_GCM_SHA384': { - 'cipher': AES, - 'mode': GCM, - 'enc_key_length': 32, - 'mac_key_length': 0, - 'iv_length': 8, - 'fixed_iv_length': 4, - 'prf': SHA384, - }, - 'TLS_ECDH_RSA_WITH_AES_128_GCM_SHA256': { - 'cipher': AES, - 'mode': GCM, - 'enc_key_length': 16, - 'mac_key_length': 0, - 'iv_length': 8, - 'fixed_iv_length': 4, - 'prf': SHA256, - }, - 'TLS_ECDH_RSA_WITH_AES_256_GCM_SHA384': { - 'cipher': AES, - 'mode': GCM, - 'enc_key_length': 32, - 'mac_key_length': 0, - 'iv_length': 8, - 'fixed_iv_length': 4, - 'prf': SHA384, - }, - 'TLS_ECDHE_PSK_WITH_AES_128_CBC_SHA': { - 'cipher': AES, - 'mode': CBC, - 'enc_key_length': 16, - 'mac_key_length': 20, - 'iv_length': 16, - 'fixed_iv_length': 0, - 'prf': SHA256, - }, - 'TLS_ECDHE_PSK_WITH_AES_256_CBC_SHA': { - 'cipher': AES, - 'mode': CBC, - 'enc_key_length': 32, - 'mac_key_length': 20, - 'iv_length': 16, - 'fixed_iv_length': 0, - 'prf': SHA256, - }, - 'TLS_ECDHE_PSK_WITH_AES_128_CBC_SHA256': { - 'cipher': AES, - 'mode': CBC, - 'enc_key_length': 16, - 'mac_key_length': 32, - 'iv_length': 16, - 'fixed_iv_length': 0, - 'prf': SHA256, - }, - 'TLS_ECDHE_PSK_WITH_AES_256_CBC_SHA384': { - 'cipher': AES, - 'mode': CBC, - 'enc_key_length': 32, - 'mac_key_length': 48, - 'iv_length': 16, - 'fixed_iv_length': 0, - 'prf': SHA384, - }, - 'TLS_RSA_WITH_CAMELLIA_128_CBC_SHA': { - 'cipher': Camellia, - 'mode': CBC, - 'enc_key_length': 16, - 'mac_key_length': 20, - 'iv_length': 16, - 'fixed_iv_length': 0, - 'prf': SHA256, - }, - 'TLS_DH_DSS_WITH_CAMELLIA_128_CBC_SHA': { - 'cipher': Camellia, - 'mode': CBC, - 'enc_key_length': 16, - 'mac_key_length': 20, - 'iv_length': 16, - 'fixed_iv_length': 0, - 'prf': SHA256, - }, - 'TLS_DH_RSA_WITH_CAMELLIA_128_CBC_SHA': { - 'cipher': Camellia, - 'mode': CBC, - 'enc_key_length': 16, - 'mac_key_length': 20, - 'iv_length': 16, - 'fixed_iv_length': 0, - 'prf': SHA256, - }, - 'TLS_DHE_DSS_WITH_CAMELLIA_128_CBC_SHA': { - 'cipher': Camellia, - 'mode': CBC, - 'enc_key_length': 16, - 'mac_key_length': 20, - 'iv_length': 16, - 'fixed_iv_length': 0, - 'prf': SHA256, - }, - 'TLS_DHE_RSA_WITH_CAMELLIA_128_CBC_SHA': { - 'cipher': Camellia, - 'mode': CBC, - 'enc_key_length': 16, - 'mac_key_length': 20, - 'iv_length': 16, - 'fixed_iv_length': 0, - 'prf': SHA256, - }, - 'TLS_DH_anon_WITH_CAMELLIA_128_CBC_SHA': { - 'cipher': Camellia, - 'mode': CBC, - 'enc_key_length': 16, - 'mac_key_length': 20, - 'iv_length': 16, - 'fixed_iv_length': 0, - 'prf': SHA256, - }, - 'TLS_RSA_WITH_CAMELLIA_256_CBC_SHA': { - 'cipher': Camellia, - 'mode': CBC, - 'enc_key_length': 32, - 'mac_key_length': 20, - 'iv_length': 16, - 'fixed_iv_length': 0, - 'prf': SHA256, - }, - 'TLS_DH_DSS_WITH_CAMELLIA_256_CBC_SHA': { - 'cipher': Camellia, - 'mode': CBC, - 'enc_key_length': 32, - 'mac_key_length': 20, - 'iv_length': 16, - 'fixed_iv_length': 0, - 'prf': SHA256, - }, - 'TLS_DH_RSA_WITH_CAMELLIA_256_CBC_SHA': { - 'cipher': Camellia, - 'mode': CBC, - 'enc_key_length': 32, - 'mac_key_length': 20, - 'iv_length': 16, - 'fixed_iv_length': 0, - 'prf': SHA256, - }, - 'TLS_DHE_DSS_WITH_CAMELLIA_256_CBC_SHA': { - 'cipher': Camellia, - 'mode': CBC, - 'enc_key_length': 32, - 'mac_key_length': 20, - 'iv_length': 16, - 'fixed_iv_length': 0, - 'prf': SHA256, - }, - 'TLS_DHE_RSA_WITH_CAMELLIA_256_CBC_SHA': { - 'cipher': Camellia, - 'mode': CBC, - 'enc_key_length': 32, - 'mac_key_length': 20, - 'iv_length': 16, - 'fixed_iv_length': 0, - 'prf': SHA256, - }, - 'TLS_DH_anon_WITH_CAMELLIA_256_CBC_SHA': { - 'cipher': Camellia, - 'mode': CBC, - 'enc_key_length': 32, - 'mac_key_length': 20, - 'iv_length': 16, - 'fixed_iv_length': 0, - 'prf': SHA256, - }, - 'TLS_RSA_WITH_CAMELLIA_128_CBC_SHA256': { - 'cipher': Camellia, - 'mode': CBC, - 'enc_key_length': 16, - 'mac_key_length': 32, - 'iv_length': 16, - 'fixed_iv_length': 0, - 'prf': SHA256, - }, - 'TLS_DH_DSS_WITH_CAMELLIA_128_CBC_SHA256': { - 'cipher': Camellia, - 'mode': CBC, - 'enc_key_length': 16, - 'mac_key_length': 32, - 'iv_length': 16, - 'fixed_iv_length': 0, - 'prf': SHA256, - }, - 'TLS_DH_RSA_WITH_CAMELLIA_128_CBC_SHA256': { - 'cipher': Camellia, - 'mode': CBC, - 'enc_key_length': 16, - 'mac_key_length': 32, - 'iv_length': 16, - 'fixed_iv_length': 0, - 'prf': SHA256, - }, - 'TLS_DHE_DSS_WITH_CAMELLIA_128_CBC_SHA256': { - 'cipher': Camellia, - 'mode': CBC, - 'enc_key_length': 16, - 'mac_key_length': 32, - 'iv_length': 16, - 'fixed_iv_length': 0, - 'prf': SHA256, - }, - 'TLS_DHE_RSA_WITH_CAMELLIA_128_CBC_SHA256': { - 'cipher': Camellia, - 'mode': CBC, - 'enc_key_length': 16, - 'mac_key_length': 32, - 'iv_length': 16, - 'fixed_iv_length': 0, - 'prf': SHA256, - }, - 'TLS_DH_anon_WITH_CAMELLIA_128_CBC_SHA256': { - 'cipher': Camellia, - 'mode': CBC, - 'enc_key_length': 16, - 'mac_key_length': 32, - 'iv_length': 16, - 'fixed_iv_length': 0, - 'prf': SHA256, - }, - 'TLS_RSA_WITH_CAMELLIA_256_CBC_SHA256': { - 'cipher': Camellia, - 'mode': CBC, - 'enc_key_length': 32, - 'mac_key_length': 32, - 'iv_length': 16, - 'fixed_iv_length': 0, - 'prf': SHA256, - }, - 'TLS_DH_DSS_WITH_CAMELLIA_256_CBC_SHA256': { - 'cipher': Camellia, - 'mode': CBC, - 'enc_key_length': 32, - 'mac_key_length': 32, - 'iv_length': 16, - 'fixed_iv_length': 0, - 'prf': SHA256, - }, - 'TLS_DH_RSA_WITH_CAMELLIA_256_CBC_SHA256': { - 'cipher': Camellia, - 'mode': CBC, - 'enc_key_length': 32, - 'mac_key_length': 32, - 'iv_length': 16, - 'fixed_iv_length': 0, - 'prf': SHA256, - }, - 'TLS_DHE_DSS_WITH_CAMELLIA_256_CBC_SHA256': { - 'cipher': Camellia, - 'mode': CBC, - 'enc_key_length': 32, - 'mac_key_length': 32, - 'iv_length': 16, - 'fixed_iv_length': 0, - 'prf': SHA256, - }, - 'TLS_DHE_RSA_WITH_CAMELLIA_256_CBC_SHA256': { - 'cipher': Camellia, - 'mode': CBC, - 'enc_key_length': 32, - 'mac_key_length': 32, - 'iv_length': 16, - 'fixed_iv_length': 0, - 'prf': SHA256, - }, - 'TLS_DH_anon_WITH_CAMELLIA_256_CBC_SHA256': { - 'cipher': Camellia, - 'mode': CBC, - 'enc_key_length': 32, - 'mac_key_length': 32, - 'iv_length': 16, - 'fixed_iv_length': 0, - 'prf': SHA256, - }, - 'TLS_ECDHE_ECDSA_WITH_CAMELLIA_128_CBC_SHA256': { - 'cipher': Camellia, - 'mode': CBC, - 'enc_key_length': 16, - 'mac_key_length': 32, - 'iv_length': 16, - 'fixed_iv_length': 0, - 'prf': SHA256, - }, - 'TLS_ECDHE_ECDSA_WITH_CAMELLIA_256_CBC_SHA384': { - 'cipher': Camellia, - 'mode': CBC, - 'enc_key_length': 32, - 'mac_key_length': 48, - 'iv_length': 16, - 'fixed_iv_length': 0, - 'prf': SHA384, - }, - 'TLS_ECDH_ECDSA_WITH_CAMELLIA_128_CBC_SHA256': { - 'cipher': Camellia, - 'mode': CBC, - 'enc_key_length': 16, - 'mac_key_length': 32, - 'iv_length': 16, - 'fixed_iv_length': 0, - 'prf': SHA256, - }, - 'TLS_ECDH_ECDSA_WITH_CAMELLIA_256_CBC_SHA384': { - 'cipher': Camellia, - 'mode': CBC, - 'enc_key_length': 32, - 'mac_key_length': 48, - 'iv_length': 16, - 'fixed_iv_length': 0, - 'prf': SHA384, - }, - 'TLS_ECDHE_RSA_WITH_CAMELLIA_128_CBC_SHA256': { - 'cipher': Camellia, - 'mode': CBC, - 'enc_key_length': 16, - 'mac_key_length': 32, - 'iv_length': 16, - 'fixed_iv_length': 0, - 'prf': SHA256, - }, - 'TLS_ECDHE_RSA_WITH_CAMELLIA_256_CBC_SHA384': { - 'cipher': Camellia, - 'mode': CBC, - 'enc_key_length': 32, - 'mac_key_length': 48, - 'iv_length': 16, - 'fixed_iv_length': 0, - 'prf': SHA384, - }, - 'TLS_ECDH_RSA_WITH_CAMELLIA_128_CBC_SHA256': { - 'cipher': Camellia, - 'mode': CBC, - 'enc_key_length': 16, - 'mac_key_length': 32, - 'iv_length': 16, - 'fixed_iv_length': 0, - 'prf': SHA256, - }, - 'TLS_ECDH_RSA_WITH_CAMELLIA_256_CBC_SHA384': { - 'cipher': Camellia, - 'mode': CBC, - 'enc_key_length': 32, - 'mac_key_length': 48, - 'iv_length': 16, - 'fixed_iv_length': 0, - 'prf': SHA384, - }, - 'TLS_RSA_WITH_CAMELLIA_128_GCM_SHA256': { - 'cipher': Camellia, - 'mode': GCM, - 'enc_key_length': 16, - 'mac_key_length': 0, - 'iv_length': 8, - 'fixed_iv_length': 4, - 'prf': SHA256, - }, - 'TLS_RSA_WITH_CAMELLIA_256_GCM_SHA384': { - 'cipher': Camellia, - 'mode': GCM, - 'enc_key_length': 32, - 'mac_key_length': 0, - 'iv_length': 8, - 'fixed_iv_length': 4, - 'prf': SHA384, - }, - 'TLS_DHE_RSA_WITH_CAMELLIA_128_GCM_SHA256': { - 'cipher': Camellia, - 'mode': GCM, - 'enc_key_length': 16, - 'mac_key_length': 0, - 'iv_length': 8, - 'fixed_iv_length': 4, - 'prf': SHA256, - }, - 'TLS_DHE_RSA_WITH_CAMELLIA_256_GCM_SHA384': { - 'cipher': Camellia, - 'mode': GCM, - 'enc_key_length': 32, - 'mac_key_length': 0, - 'iv_length': 8, - 'fixed_iv_length': 4, - 'prf': SHA384, - }, - 'TLS_DH_RSA_WITH_CAMELLIA_128_GCM_SHA256': { - 'cipher': Camellia, - 'mode': GCM, - 'enc_key_length': 16, - 'mac_key_length': 0, - 'iv_length': 8, - 'fixed_iv_length': 4, - 'prf': SHA256, - }, - 'TLS_DH_RSA_WITH_CAMELLIA_256_GCM_SHA384': { - 'cipher': Camellia, - 'mode': GCM, - 'enc_key_length': 32, - 'mac_key_length': 0, - 'iv_length': 8, - 'fixed_iv_length': 4, - 'prf': SHA384, - }, - 'TLS_DHE_DSS_WITH_CAMELLIA_128_GCM_SHA256': { - 'cipher': Camellia, - 'mode': GCM, - 'enc_key_length': 16, - 'mac_key_length': 0, - 'iv_length': 8, - 'fixed_iv_length': 4, - 'prf': SHA256, - }, - 'TLS_DHE_DSS_WITH_CAMELLIA_256_GCM_SHA384': { - 'cipher': Camellia, - 'mode': GCM, - 'enc_key_length': 32, - 'mac_key_length': 0, - 'iv_length': 8, - 'fixed_iv_length': 4, - 'prf': SHA384, - }, - 'TLS_DH_DSS_WITH_CAMELLIA_128_GCM_SHA256': { - 'cipher': Camellia, - 'mode': GCM, - 'enc_key_length': 16, - 'mac_key_length': 0, - 'iv_length': 8, - 'fixed_iv_length': 4, - 'prf': SHA256, - }, - 'TLS_DH_DSS_WITH_CAMELLIA_256_GCM_SHA384': { - 'cipher': Camellia, - 'mode': GCM, - 'enc_key_length': 32, - 'mac_key_length': 0, - 'iv_length': 8, - 'fixed_iv_length': 4, - 'prf': SHA384, - }, - 'TLS_DH_anon_WITH_CAMELLIA_128_GCM_SHA256': { - 'cipher': Camellia, - 'mode': GCM, - 'enc_key_length': 16, - 'mac_key_length': 0, - 'iv_length': 8, - 'fixed_iv_length': 4, - 'prf': SHA256, - }, - 'TLS_DH_anon_WITH_CAMELLIA_256_GCM_SHA384': { - 'cipher': Camellia, - 'mode': GCM, - 'enc_key_length': 32, - 'mac_key_length': 0, - 'iv_length': 8, - 'fixed_iv_length': 4, - 'prf': SHA384, - }, - 'TLS_ECDHE_ECDSA_WITH_CAMELLIA_128_GCM_SHA256': { - 'cipher': Camellia, - 'mode': GCM, - 'enc_key_length': 16, - 'mac_key_length': 0, - 'iv_length': 8, - 'fixed_iv_length': 4, - 'prf': SHA256, - }, - 'TLS_ECDHE_ECDSA_WITH_CAMELLIA_256_GCM_SHA384': { - 'cipher': Camellia, - 'mode': GCM, - 'enc_key_length': 32, - 'mac_key_length': 0, - 'iv_length': 8, - 'fixed_iv_length': 4, - 'prf': SHA384, - }, - 'TLS_ECDH_ECDSA_WITH_CAMELLIA_128_GCM_SHA256': { - 'cipher': Camellia, - 'mode': GCM, - 'enc_key_length': 16, - 'mac_key_length': 0, - 'iv_length': 8, - 'fixed_iv_length': 4, - 'prf': SHA256, - }, - 'TLS_ECDH_ECDSA_WITH_CAMELLIA_256_GCM_SHA384': { - 'cipher': Camellia, - 'mode': GCM, - 'enc_key_length': 32, - 'mac_key_length': 0, - 'iv_length': 8, - 'fixed_iv_length': 4, - 'prf': SHA384, - }, - 'TLS_ECDHE_RSA_WITH_CAMELLIA_128_GCM_SHA256': { - 'cipher': Camellia, - 'mode': GCM, - 'enc_key_length': 16, - 'mac_key_length': 0, - 'iv_length': 8, - 'fixed_iv_length': 4, - 'prf': SHA256, - }, - 'TLS_ECDHE_RSA_WITH_CAMELLIA_256_GCM_SHA384': { - 'cipher': Camellia, - 'mode': GCM, - 'enc_key_length': 32, - 'mac_key_length': 0, - 'iv_length': 8, - 'fixed_iv_length': 4, - 'prf': SHA384, - }, - 'TLS_ECDH_RSA_WITH_CAMELLIA_128_GCM_SHA256': { - 'cipher': Camellia, - 'mode': GCM, - 'enc_key_length': 16, - 'mac_key_length': 0, - 'iv_length': 8, - 'fixed_iv_length': 4, - 'prf': SHA256, - }, - 'TLS_ECDH_RSA_WITH_CAMELLIA_256_GCM_SHA384': { - 'cipher': Camellia, - 'mode': GCM, - 'enc_key_length': 32, - 'mac_key_length': 0, - 'iv_length': 8, - 'fixed_iv_length': 4, - 'prf': SHA384, - }, - 'TLS_PSK_WITH_CAMELLIA_128_GCM_SHA256': { - 'cipher': Camellia, - 'mode': GCM, - 'enc_key_length': 16, - 'mac_key_length': 0, - 'iv_length': 8, - 'fixed_iv_length': 4, - 'prf': SHA256, - }, - 'TLS_PSK_WITH_CAMELLIA_256_GCM_SHA384': { - 'cipher': Camellia, - 'mode': GCM, - 'enc_key_length': 32, - 'mac_key_length': 0, - 'iv_length': 8, - 'fixed_iv_length': 4, - 'prf': SHA384, - }, - 'TLS_DHE_PSK_WITH_CAMELLIA_128_GCM_SHA256': { - 'cipher': Camellia, - 'mode': GCM, - 'enc_key_length': 16, - 'mac_key_length': 0, - 'iv_length': 8, - 'fixed_iv_length': 4, - 'prf': SHA256, - }, - 'TLS_DHE_PSK_WITH_CAMELLIA_256_GCM_SHA384': { - 'cipher': Camellia, - 'mode': GCM, - 'enc_key_length': 32, - 'mac_key_length': 0, - 'iv_length': 8, - 'fixed_iv_length': 4, - 'prf': SHA384, - }, - 'TLS_RSA_PSK_WITH_CAMELLIA_128_GCM_SHA256': { - 'cipher': Camellia, - 'mode': GCM, - 'enc_key_length': 16, - 'mac_key_length': 0, - 'iv_length': 8, - 'fixed_iv_length': 4, - 'prf': SHA256, - }, - 'TLS_RSA_PSK_WITH_CAMELLIA_256_GCM_SHA384': { - 'cipher': Camellia, - 'mode': GCM, - 'enc_key_length': 32, - 'mac_key_length': 0, - 'iv_length': 8, - 'fixed_iv_length': 4, - 'prf': SHA384, - }, - 'TLS_PSK_WITH_CAMELLIA_128_CBC_SHA256': { - 'cipher': Camellia, - 'mode': CBC, - 'enc_key_length': 16, - 'mac_key_length': 32, - 'iv_length': 16, - 'fixed_iv_length': 0, - 'prf': SHA256, - }, - 'TLS_PSK_WITH_CAMELLIA_256_CBC_SHA384': { - 'cipher': Camellia, - 'mode': CBC, - 'enc_key_length': 32, - 'mac_key_length': 48, - 'iv_length': 16, - 'fixed_iv_length': 0, - 'prf': SHA384, - }, - 'TLS_DHE_PSK_WITH_CAMELLIA_128_CBC_SHA256': { - 'cipher': Camellia, - 'mode': CBC, - 'enc_key_length': 16, - 'mac_key_length': 32, - 'iv_length': 16, - 'fixed_iv_length': 0, - 'prf': SHA256, - }, - 'TLS_DHE_PSK_WITH_CAMELLIA_256_CBC_SHA384': { - 'cipher': Camellia, - 'mode': CBC, - 'enc_key_length': 32, - 'mac_key_length': 48, - 'iv_length': 16, - 'fixed_iv_length': 0, - 'prf': SHA384, - }, - 'TLS_RSA_PSK_WITH_CAMELLIA_128_CBC_SHA256': { - 'cipher': Camellia, - 'mode': CBC, - 'enc_key_length': 16, - 'mac_key_length': 32, - 'iv_length': 16, - 'fixed_iv_length': 0, - 'prf': SHA256, - }, - 'TLS_RSA_PSK_WITH_CAMELLIA_256_CBC_SHA384': { - 'cipher': Camellia, - 'mode': CBC, - 'enc_key_length': 32, - 'mac_key_length': 48, - 'iv_length': 16, - 'fixed_iv_length': 0, - 'prf': SHA384, - }, - 'TLS_ECDHE_PSK_WITH_CAMELLIA_128_CBC_SHA256': { - 'cipher': Camellia, - 'mode': CBC, - 'enc_key_length': 16, - 'mac_key_length': 32, - 'iv_length': 16, - 'fixed_iv_length': 0, - 'prf': SHA256, - }, - 'TLS_ECDHE_PSK_WITH_CAMELLIA_256_CBC_SHA384': { - 'cipher': Camellia, - 'mode': CBC, - 'enc_key_length': 32, - 'mac_key_length': 48, - 'iv_length': 16, - 'fixed_iv_length': 0, - 'prf': SHA384, - }, - 'TLS_RSA_WITH_SEED_CBC_SHA': { - 'cipher': SEED, - 'mode': CBC, - 'enc_key_length': 16, - 'mac_key_length': 20, - 'iv_length': 16, - 'fixed_iv_length': 0, - 'prf': SHA256, - }, - 'TLS_DH_DSS_WITH_SEED_CBC_SHA': { - 'cipher': SEED, - 'mode': CBC, - 'enc_key_length': 16, - 'mac_key_length': 20, - 'iv_length': 16, - 'fixed_iv_length': 0, - 'prf': SHA256, - }, - 'TLS_DH_RSA_WITH_SEED_CBC_SHA': { - 'cipher': SEED, - 'mode': CBC, - 'enc_key_length': 16, - 'mac_key_length': 20, - 'iv_length': 16, - 'fixed_iv_length': 0, - 'prf': SHA256, - }, - 'TLS_DHE_DSS_WITH_SEED_CBC_SHA': { - 'cipher': SEED, - 'mode': CBC, - 'enc_key_length': 16, - 'mac_key_length': 20, - 'iv_length': 16, - 'fixed_iv_length': 0, - 'prf': SHA256, - }, - 'TLS_DHE_RSA_WITH_SEED_CBC_SHA': { - 'cipher': SEED, - 'mode': CBC, - 'enc_key_length': 16, - 'mac_key_length': 20, - 'iv_length': 16, - 'fixed_iv_length': 0, - 'prf': SHA256, - }, - 'TLS_DH_anon_WITH_SEED_CBC_SHA': { - 'cipher': SEED, - 'mode': CBC, - 'enc_key_length': 16, - 'mac_key_length': 20, - 'iv_length': 16, - 'fixed_iv_length': 0, - 'prf': SHA256, - }, - 'TLS_RSA_WITH_3DES_EDE_CBC_SHA': { - 'cipher': TripleDES, - 'mode': CBC, - 'enc_key_length': 24, - 'mac_key_length': 20, - 'iv_length': 8, - 'fixed_iv_length': 0, - 'prf': SHA256, - }, - 'TLS_DH_DSS_WITH_3DES_EDE_CBC_SHA': { - 'cipher': TripleDES, - 'mode': CBC, - 'enc_key_length': 24, - 'mac_key_length': 20, - 'iv_length': 8, - 'fixed_iv_length': 0, - 'prf': SHA256, - }, - 'TLS_DH_RSA_WITH_3DES_EDE_CBC_SHA': { - 'cipher': TripleDES, - 'mode': CBC, - 'enc_key_length': 24, - 'mac_key_length': 20, - 'iv_length': 8, - 'fixed_iv_length': 0, - 'prf': SHA256, - }, - 'TLS_DHE_DSS_WITH_3DES_EDE_CBC_SHA': { - 'cipher': TripleDES, - 'mode': CBC, - 'enc_key_length': 24, - 'mac_key_length': 20, - 'iv_length': 8, - 'fixed_iv_length': 0, - 'prf': SHA256, - }, - 'TLS_DHE_RSA_WITH_3DES_EDE_CBC_SHA': { - 'cipher': TripleDES, - 'mode': CBC, - 'enc_key_length': 24, - 'mac_key_length': 20, - 'iv_length': 8, - 'fixed_iv_length': 0, - 'prf': SHA256, - }, - 'TLS_DH_anon_WITH_3DES_EDE_CBC_SHA': { - 'cipher': TripleDES, - 'mode': CBC, - 'enc_key_length': 24, - 'mac_key_length': 20, - 'iv_length': 8, - 'fixed_iv_length': 0, - 'prf': SHA256, - }, - 'TLS_KRB5_WITH_3DES_EDE_CBC_SHA': { - 'cipher': TripleDES, - 'mode': CBC, - 'enc_key_length': 24, - 'mac_key_length': 20, - 'iv_length': 8, - 'fixed_iv_length': 0, - 'prf': SHA256, - }, - 'TLS_KRB5_WITH_3DES_EDE_CBC_MD5': { - 'cipher': TripleDES, - 'mode': CBC, - 'enc_key_length': 24, - 'mac_key_length': 16, - 'iv_length': 8, - 'fixed_iv_length': 0, - 'prf': SHA256, - }, - 'TLS_PSK_WITH_3DES_EDE_CBC_SHA': { - 'cipher': TripleDES, - 'mode': CBC, - 'enc_key_length': 24, - 'mac_key_length': 20, - 'iv_length': 8, - 'fixed_iv_length': 0, - 'prf': SHA256, - }, - 'TLS_DHE_PSK_WITH_3DES_EDE_CBC_SHA': { - 'cipher': TripleDES, - 'mode': CBC, - 'enc_key_length': 24, - 'mac_key_length': 20, - 'iv_length': 8, - 'fixed_iv_length': 0, - 'prf': SHA256, - }, - 'TLS_RSA_PSK_WITH_3DES_EDE_CBC_SHA': { - 'cipher': TripleDES, - 'mode': CBC, - 'enc_key_length': 24, - 'mac_key_length': 20, - 'iv_length': 8, - 'fixed_iv_length': 0, - 'prf': SHA256, - }, - 'TLS_ECDH_ECDSA_WITH_3DES_EDE_CBC_SHA': { - 'cipher': TripleDES, - 'mode': CBC, - 'enc_key_length': 24, - 'mac_key_length': 20, - 'iv_length': 8, - 'fixed_iv_length': 0, - 'prf': SHA256, - }, - 'TLS_ECDHE_ECDSA_WITH_3DES_EDE_CBC_SHA': { - 'cipher': TripleDES, - 'mode': CBC, - 'enc_key_length': 24, - 'mac_key_length': 20, - 'iv_length': 8, - 'fixed_iv_length': 0, - 'prf': SHA256, - }, - 'TLS_ECDH_RSA_WITH_3DES_EDE_CBC_SHA': { - 'cipher': TripleDES, - 'mode': CBC, - 'enc_key_length': 24, - 'mac_key_length': 20, - 'iv_length': 8, - 'fixed_iv_length': 0, - 'prf': SHA256, - }, - 'TLS_ECDHE_RSA_WITH_3DES_EDE_CBC_SHA': { - 'cipher': TripleDES, - 'mode': CBC, - 'enc_key_length': 24, - 'mac_key_length': 20, - 'iv_length': 8, - 'fixed_iv_length': 0, - 'prf': SHA256, - }, - 'TLS_ECDH_anon_WITH_3DES_EDE_CBC_SHA': { - 'cipher': TripleDES, - 'mode': CBC, - 'enc_key_length': 24, - 'mac_key_length': 20, - 'iv_length': 8, - 'fixed_iv_length': 0, - 'prf': SHA256, - }, - 'TLS_SRP_SHA_WITH_3DES_EDE_CBC_SHA': { - 'cipher': TripleDES, - 'mode': CBC, - 'enc_key_length': 24, - 'mac_key_length': 20, - 'iv_length': 8, - 'fixed_iv_length': 0, - 'prf': SHA256, - }, - 'TLS_SRP_SHA_RSA_WITH_3DES_EDE_CBC_SHA': { - 'cipher': TripleDES, - 'mode': CBC, - 'enc_key_length': 24, - 'mac_key_length': 20, - 'iv_length': 8, - 'fixed_iv_length': 0, - 'prf': SHA256, - }, - 'TLS_SRP_SHA_DSS_WITH_3DES_EDE_CBC_SHA': { - 'cipher': TripleDES, - 'mode': CBC, - 'enc_key_length': 24, - 'mac_key_length': 20, - 'iv_length': 8, - 'fixed_iv_length': 0, - 'prf': SHA256, - }, - 'TLS_ECDHE_PSK_WITH_3DES_EDE_CBC_SHA': { - 'cipher': TripleDES, - 'mode': CBC, - 'enc_key_length': 24, - 'mac_key_length': 20, - 'iv_length': 8, - 'fixed_iv_length': 0, - 'prf': SHA256, - }, - 'TLS_RSA_EXPORT_WITH_RC4_40_MD5': { - 'cipher': ARC4, - 'mode': None, - 'enc_key_length': 5, - 'mac_key_length': 16, - 'iv_length': 0, - 'fixed_iv_length': 0, - 'prf': SHA256, - }, - 'TLS_RSA_WITH_RC4_128_MD5': { - 'cipher': ARC4, - 'mode': None, - 'enc_key_length': 16, - 'mac_key_length': 16, - 'iv_length': 0, - 'fixed_iv_length': 0, - 'prf': SHA256, - }, - 'TLS_RSA_WITH_RC4_128_SHA': { - 'cipher': ARC4, - 'mode': None, - 'enc_key_length': 16, - 'mac_key_length': 20, - 'iv_length': 0, - 'fixed_iv_length': 0, - 'prf': SHA256, - }, - 'TLS_DH_anon_EXPORT_WITH_RC4_40_MD5': { - 'cipher': ARC4, - 'mode': None, - 'enc_key_length': 5, - 'mac_key_length': 16, - 'iv_length': 0, - 'fixed_iv_length': 0, - 'prf': SHA256, - }, - 'TLS_DH_anon_WITH_RC4_128_MD5': { - 'cipher': ARC4, - 'mode': None, - 'enc_key_length': 16, - 'mac_key_length': 16, - 'iv_length': 0, - 'fixed_iv_length': 0, - 'prf': SHA256, - }, - 'TLS_KRB5_WITH_RC4_128_SHA': { - 'cipher': ARC4, - 'mode': None, - 'enc_key_length': 16, - 'mac_key_length': 20, - 'iv_length': 0, - 'fixed_iv_length': 0, - 'prf': SHA256, - }, - 'TLS_KRB5_WITH_RC4_128_MD5': { - 'cipher': ARC4, - 'mode': None, - 'enc_key_length': 16, - 'mac_key_length': 16, - 'iv_length': 0, - 'fixed_iv_length': 0, - 'prf': SHA256, - }, - 'TLS_KRB5_EXPORT_WITH_RC4_40_SHA': { - 'cipher': ARC4, - 'mode': None, - 'enc_key_length': 5, - 'mac_key_length': 20, - 'iv_length': 0, - 'fixed_iv_length': 0, - 'prf': SHA256, - }, - 'TLS_KRB5_EXPORT_WITH_RC4_40_MD5': { - 'cipher': ARC4, - 'mode': None, - 'enc_key_length': 5, - 'mac_key_length': 16, - 'iv_length': 0, - 'fixed_iv_length': 0, - 'prf': SHA256, - }, - 'TLS_PSK_WITH_RC4_128_SHA': { - 'cipher': ARC4, - 'mode': None, - 'enc_key_length': 16, - 'mac_key_length': 20, - 'iv_length': 0, - 'fixed_iv_length': 0, - 'prf': SHA256, - }, - 'TLS_DHE_PSK_WITH_RC4_128_SHA': { - 'cipher': ARC4, - 'mode': None, - 'enc_key_length': 16, - 'mac_key_length': 20, - 'iv_length': 0, - 'fixed_iv_length': 0, - 'prf': SHA256, - }, - 'TLS_RSA_PSK_WITH_RC4_128_SHA': { - 'cipher': ARC4, - 'mode': None, - 'enc_key_length': 16, - 'mac_key_length': 20, - 'iv_length': 0, - 'fixed_iv_length': 0, - 'prf': SHA256, - }, - 'TLS_ECDH_ECDSA_WITH_RC4_128_SHA': { - 'cipher': ARC4, - 'mode': None, - 'enc_key_length': 16, - 'mac_key_length': 20, - 'iv_length': 0, - 'fixed_iv_length': 0, - 'prf': SHA256, - }, - 'TLS_ECDHE_ECDSA_WITH_RC4_128_SHA': { - 'cipher': ARC4, - 'mode': None, - 'enc_key_length': 16, - 'mac_key_length': 20, - 'iv_length': 0, - 'fixed_iv_length': 0, - 'prf': SHA256, - }, - 'TLS_ECDH_RSA_WITH_RC4_128_SHA': { - 'cipher': ARC4, - 'mode': None, - 'enc_key_length': 16, - 'mac_key_length': 20, - 'iv_length': 0, - 'fixed_iv_length': 0, - 'prf': SHA256, - }, - 'TLS_ECDHE_RSA_WITH_RC4_128_SHA': { - 'cipher': ARC4, - 'mode': None, - 'enc_key_length': 16, - 'mac_key_length': 20, - 'iv_length': 0, - 'fixed_iv_length': 0, - 'prf': SHA256, - }, - 'TLS_ECDH_anon_WITH_RC4_128_SHA': { - 'cipher': ARC4, - 'mode': None, - 'enc_key_length': 16, - 'mac_key_length': 20, - 'iv_length': 0, - 'fixed_iv_length': 0, - 'prf': SHA256, - }, - 'TLS_ECDHE_PSK_WITH_RC4_128_SHA': { - 'cipher': ARC4, - 'mode': None, - 'enc_key_length': 16, - 'mac_key_length': 20, - 'iv_length': 0, - 'fixed_iv_length': 0, - 'prf': SHA256, - }, -} diff --git a/python/pmercury/utils/tls_crypto.py b/python/pmercury/utils/tls_crypto.py deleted file mode 100644 index 77370bbe..00000000 --- a/python/pmercury/utils/tls_crypto.py +++ /dev/null @@ -1,388 +0,0 @@ -import os -import sys -import struct -from binascii import hexlify, unhexlify - -# crypto primitive imports -from cryptography.hazmat.primitives.hmac import HMAC -from cryptography.hazmat.backends import default_backend -from cryptography.hazmat.primitives.ciphers import Cipher -from cryptography.hazmat.primitives.ciphers.modes import GCM, CBC -from cryptography.hazmat.primitives.hashes import SHA1, SHA256, SHA384, MD5, Hash -from cryptography.hazmat.primitives.ciphers.algorithms import AES, ARC4, TripleDES, Camellia, SEED - -# constants -sys.path.append(os.path.dirname(os.path.abspath(__file__))+'/../') -from pmercury.utils.tls_constants import * - - -class TLS_CRYPTO: - - def __init__(self): - self.cur_mode = None - self.session_metadata = None - self.tls_sequence = None - self.tls13_handshake = None - self.kdf = {} - self.kdf['TLS 1.0'] = self.kdf_tls10 - self.kdf['TLS 1.1'] = self.kdf_tls11 - self.kdf['TLS 1.2'] = self.kdf_tls12 - self.kdf['TLS 1.3'] = self.kdf_tls13 - - - def kdf_tls10(self, cr, sr, secret, cipher_params, flow_key): - if flow_key+self.cur_mode not in self.session_metadata: - self.session_metadata[flow_key+self.cur_mode] = {} - if 'cbc_initial_decrypt' not in self.session_metadata[flow_key+self.cur_mode]: - self.session_metadata[flow_key+self.cur_mode]['cbc_initial_decrypt'] = 1 - fixed_iv_length = cipher_params['iv_length'] - else: - fixed_iv_length = cipher_params['fixed_iv_length'] - label = b'key expansion' - - secret_md5 = secret[:len(secret)/2] - secret_sha = secret[-len(secret)/2:] - - md5_material = b'' - cur_hash = self.hmac(secret_md5, MD5(), b'%s%s%s' % (label, sr, cr)) - for i in range(16): - md5_material += self.hmac(secret_md5, MD5(), b'%s%s%s%s' % (cur_hash, label, sr, cr)) - cur_hash = self.hmac(secret_md5, MD5(), cur_hash) - - sha_material = b'' - cur_hash = self.hmac(secret_sha, SHA1(), b'%s%s%s' % (label, sr, cr)) - for i in range(16): - sha_material += self.hmac(secret_sha, SHA1(), b'%s%s%s%s' % (cur_hash, label, sr, cr)) - cur_hash = self.hmac(secret_sha, SHA1(), cur_hash) - - output = b'' - for i in range(min(len(md5_material),len(sha_material))): - output += chr(ord(md5_material[i]) ^ ord(sha_material[i])) - - key_material_lengths = [cipher_params['mac_key_length']]*2 + \ - [cipher_params['enc_key_length']]*2 + \ - [fixed_iv_length]*2 - - offset = 0 - key_material = [] - for l in key_material_lengths: - key_material.append(output[offset:offset+l]) - offset += l - - return key_material - - - def kdf_tls11(self, cr, sr, secret, cipher_params, flow_key): - label = b'key expansion' - - secret_md5 = secret[:len(secret)/2] - secret_sha = secret[-len(secret)/2:] - - md5_material = b'' - cur_hash = self.hmac(secret_md5, MD5(), b'%s%s%s' % (label, sr, cr)) - for i in range(16): - md5_material += self.hmac(secret_md5, MD5(), b'%s%s%s%s' % (cur_hash, label, sr, cr)) - cur_hash = self.hmac(secret_md5, MD5(), cur_hash) - - sha_material = b'' - cur_hash = self.hmac(secret_sha, SHA1(), b'%s%s%s' % (label, sr, cr)) - for i in range(16): - sha_material += self.hmac(secret_sha, SHA1(), b'%s%s%s%s' % (cur_hash, label, sr, cr)) - cur_hash = self.hmac(secret_sha, SHA1(), cur_hash) - - output = b'' - for i in range(min(len(md5_material),len(sha_material))): - output += chr(ord(md5_material[i]) ^ ord(sha_material[i])) - - key_material_lengths = [cipher_params['mac_key_length']]*2 + \ - [cipher_params['enc_key_length']]*2 + \ - [cipher_params['fixed_iv_length']]*2 - - offset = 0 - key_material = [] - for l in key_material_lengths: - key_material.append(output[offset:offset+l]) - offset += l - - return key_material - - - def kdf_tls12(self, cr, sr, secret, cipher_params, flow_key): - label = b'key expansion' - digest_type = cipher_params['prf']() - - cur_hash = self.hmac(secret, digest_type, b'%s%s%s' % (label, sr, cr)) - output = b'' - for i in range(16): - output += self.hmac(secret, digest_type, b'%s%s%s%s' % (cur_hash, label, sr, cr)) - cur_hash = self.hmac(secret, digest_type, cur_hash) - - key_material_lengths = [cipher_params['mac_key_length']]*2 + \ - [cipher_params['enc_key_length']]*2 + \ - [cipher_params['fixed_iv_length']]*2 - offset = 0 - key_material = [] - for l in key_material_lengths: - key_material.append(output[offset:offset+l]) - offset += l - - return key_material - - - def kdf_tls13(self, secret, label, length, cipher_params, flow_key): - digest_type = cipher_params['prf']() - key = b'' - block = b'' - - ind = 0 - while len(key) < length: - ind += 1 - block = self.hmac(secret, digest_type, b'%s%s%s' % (block, label, struct.pack('B',ind))) - key += block - - return key[:length] - - - def hmac(self, secret, digest_type, msg): - tmp = HMAC(secret, digest_type, default_backend()) - tmp.update(msg) - return tmp.finalize() - - - def hash_(self, digest_type, msg): - tmp = Hash(digest_type, default_backend()) - tmp.update(msg) - return tmp.finalize() - - - def get_secret(self, client_random, secrets, cur_flow_key): - secret = None - if client_random not in secrets: - return None - - if not self.session_metadata['version'].startswith('TLS 1.3'): - secret = unhexlify(secrets[client_random]['master_secret']) - - # find appropriate master secret - if cur_flow_key not in self.tls13_handshake: - self.tls13_handshake[cur_flow_key] = True - if self.cur_mode == 'client' and self.tls13_handshake[cur_flow_key] == True and \ - 'client_handshake_secret' in secrets[client_random]: - secret = unhexlify(secrets[client_random]['client_handshake_secret']) - elif self.cur_mode == 'server' and self.tls13_handshake[cur_flow_key] == True and \ - 'server_handshake_secret' in secrets[client_random]: - secret = unhexlify(secrets[client_random]['server_handshake_secret']) - elif self.cur_mode == 'client' and self.tls13_handshake[cur_flow_key] == False and \ - 'client_traffic_secret' in secrets[client_random]: - secret = unhexlify(secrets[client_random]['client_traffic_secret']) - elif self.cur_mode == 'server' and self.tls13_handshake[cur_flow_key] == False and \ - 'server_traffic_secret' in secrets[client_random]: - secret = unhexlify(secrets[client_random]['server_traffic_secret']) - - return secret - - - def get_explicit_material(self, flow_key, data, cipher_params): - enc = None - iv = None - - if self.session_metadata['version'] == 'TLS 1.0': - enc = data - if cipher_params['mode'] == CBC: - if flow_key+self.cur_mode not in self.session_metadata or \ - 'cbc_initial_decrypt' not in self.session_metadata[flow_key+self.cur_mode] or \ - 'cur_iv' not in self.session_metadata[flow_key+self.cur_mode]: - iv = b'' - else: - iv = self.session_metadata[flow_key+self.cur_mode]['cur_iv'] - elif self.session_metadata['version'] in ['TLS 1.1','TLS 1.2']: - enc = data[cipher_params['iv_length']:] - iv = data[:cipher_params['iv_length']] - elif self.session_metadata['version'].startswith('TLS 1.3'): - enc = data - iv = b'' - - return enc, iv - - - def get_implicit_material(self, client_random, server_random, master_secret, \ - cipher_params, flow_key, explicit_iv): - key = None - iv = None - - if self.session_metadata['version'] in ['SSL 3.0','TLS 1.0','TLS 1.1','TLS 1.2']: - c_mac_key, s_mac_key, c_key, s_key, c_iv, s_iv = \ - self.kdf[self.session_metadata['version']](client_random, server_random, \ - master_secret, cipher_params, flow_key) - if self.cur_mode == 'client': - key = c_key - iv = c_iv + explicit_iv - else: - key = s_key - iv = s_iv + explicit_iv - elif self.session_metadata['version'].startswith('TLS 1.3'): - cur_flow_key = flow_key + self.cur_mode - label_str = b'' - if self.session_metadata['version'] == 'TLS 1.3' or self.session_metadata['version'] == 'TLS 1.3 (draft 20)': - label_str = b'tls13 ' - else: - label_str = b'TLS 1.3, ' - tmp_label = label_str + b'key' - len_ = struct.pack(b'!H', cipher_params['enc_key_length']) - tmp_label = b'%s%s%s%s' % (len_, struct.pack(b'B', len(tmp_label)), tmp_label, b'\x00') - key = self.kdf_tls13(master_secret, tmp_label, cipher_params['enc_key_length'], \ - cipher_params, flow_key) - - tmp_label = label_str + b'iv' - len_ = struct.pack(b'!H', cipher_params['iv_length']) - tmp_label = b'%s%s%s%s' % (len_, struct.pack(b'B', len(tmp_label)), tmp_label, b'\x00') - implicit_iv = self.kdf_tls13(master_secret, tmp_label, cipher_params['iv_length'], \ - cipher_params, flow_key) - - # calculate nonce - iv2 = struct.pack(b'!Q', self.tls_sequence[cur_flow_key]).rjust(len(implicit_iv), b'\x00') - iv = b''.join([struct.pack(b'B', v ^ implicit_iv[i]) for i, v in enumerate(iv2)]) - - return key, iv - - - # strip MAC/AEAD/Padding - def get_data(self, result, flow_key, cipher_params, encrypted_data): - padding_length = 0 - - # strip padding - if self.session_metadata['version'].startswith('TLS 1.3'): - for i in range(len(result)-1,-1,-1): - if result[i] != b'\x00': - break - padding_length += 1 - result = result[:-padding_length-1] - else: - if cipher_params['mode'] == CBC: - padding_length = int(hexlify(result[-1:]),16) - if len(result) < padding_length+1: - padding_length = 0 - else: - for i in range(1,padding_length+1): - if int(hexlify(result[-(i+1):-i]),16) != padding_length: - padding_length = 0 - break - if padding_length != 0: - padding_length += 1 - result = result[:-padding_length] - - # set up IV for TLS 1.0 - if self.session_metadata['version'] == 'TLS 1.0': - if flow_key+self.cur_mode not in self.session_metadata: - self.session_metadata[flow_key+self.cur_mode] = {} - self.session_metadata[flow_key+self.cur_mode]['cur_iv'] = encrypted_data[-cipher_params['iv_length']:] - - # strip AEAD/MAC - auth_length = 0 - if cipher_params['mode'] == GCM: - if cipher_params['enc_key_length'] == 32: - result = result[:-16] - elif cipher_params['enc_key_length'] == 16: - result = result - auth_length = cipher_params['enc_key_length'] - elif cipher_params['mac_key_length'] > 0: - result = result[:-cipher_params['mac_key_length']] - auth_length = cipher_params['mac_key_length'] - - return result, padding_length, auth_length - - - # get encrypted data and crypto parameters, output plaintext - def get_plaintext(self, data, cipher_params, key, iv, flow_key): - if cipher_params['cipher'] == AES: - if cipher_params['mode'] == CBC: - decryptor = Cipher(cipher_params['cipher'](key), \ - cipher_params['mode'](iv), \ - default_backend()).decryptor() - if cipher_params['mode'] == GCM: - if len(data[-16:]) < 16: - return None - decryptor = Cipher(cipher_params['cipher'](key), \ - cipher_params['mode'](iv,data[-16:]), \ - default_backend()).decryptor() - elif cipher_params['cipher'] == ARC4: - if flow_key+self.cur_mode not in self.session_metadata: - self.session_metadata[flow_key+self.cur_mode] = {} - if 'decryptor' not in self.session_metadata[flow_key+self.cur_mode]: - self.session_metadata[flow_key+self.cur_mode]['decryptor'] = \ - decryptor = Cipher(cipher_params['cipher'](key), \ - None, - default_backend()).decryptor() - decryptor = self.session_metadata[flow_key+self.cur_mode]['decryptor'] - elif cipher_params['cipher'] == TripleDES: - decryptor = Cipher(cipher_params['cipher'](key), \ - cipher_params['mode'](iv), \ - default_backend()).decryptor() - elif cipher_params['cipher'] == Camellia: - decryptor = Cipher(cipher_params['cipher'](key), \ - cipher_params['mode'](iv), \ - default_backend()).decryptor() - elif cipher_params['cipher'] == SEED: - decryptor = Cipher(cipher_params['cipher'](key), \ - cipher_params['mode'](iv), \ - default_backend()).decryptor() - else: - print('%s Not Supported' % cipher_params['cipher']) - return None - - return decryptor.update(data) - - - # Main decrypt function - def decrypt(self, data, flow_key, cur_mode, session_metadata, tls_sequence, secrets, tls13_handshake): - self.cur_mode = cur_mode - self.session_metadata = session_metadata - self.tls_sequence = tls_sequence - self.tls13_handshake = tls13_handshake - - if 'selected_cipher_suite' not in self.session_metadata or 'client_random' not in self.session_metadata \ - or 'server_random' not in self.session_metadata: - return None, None, None - cur_flow_key = flow_key + self.cur_mode - if self.session_metadata['selected_cipher_suite'] not in TLS_CIPHER_SUITES: - print('NYI:\t' + self.session_metadata['selected_cipher_suite']) - return None, None, None - - cipher_params = TLS_CIPHER_SUITES[self.session_metadata['selected_cipher_suite']] - client_random = self.session_metadata['client_random'] - server_random = self.session_metadata['server_random'] - - # set initial sequence number for decryption - if cur_flow_key not in self.tls_sequence: - self.tls_sequence[cur_flow_key] = 0 - - # get master secret, varies for TLS 1.3 - master_secret = self.get_secret(client_random, secrets, cur_flow_key) - if master_secret == None: - return None, None, None - - # get encrypted data and (if necessary) explicit iv - encrypted_data, explicit_iv = \ - self.get_explicit_material(flow_key, data, cipher_params) - if encrypted_data == None or explicit_iv == None: - return None, None, None - - # get encryption key and implicit iv - key, iv = self.get_implicit_material(unhexlify(client_random), \ - unhexlify(server_random), master_secret, cipher_params, \ - flow_key, explicit_iv) - - # decrypt encrypted text - result = self.get_plaintext(encrypted_data, cipher_params, key, iv, flow_key) - if result == None: - return None, None, None - - # determine if padding is used - result, padding_length, auth_length = self.get_data(result, flow_key, \ - cipher_params, encrypted_data) - - # update sequence number - self.tls_sequence[cur_flow_key] += 1 - - return result, padding_length, auth_length - diff --git a/python/pmercury/utils/tls_utils.py b/python/pmercury/utils/tls_utils.py deleted file mode 100644 index 48586ea0..00000000 --- a/python/pmercury/utils/tls_utils.py +++ /dev/null @@ -1,427 +0,0 @@ -""" - Copyright (c) 2019 Cisco Systems, Inc. All rights reserved. - License at https://github.com/cisco/mercury/blob/master/LICENSE -""" - -import os -import sys -import ast -import json - -sys.path.append(os.path.dirname(os.path.abspath(__file__))) -sys.path.append(os.path.dirname(os.path.abspath(__file__))+'/../') -from pmercury.utils.tls_constants import * -from pmercury.utils.pmercury_utils import * - -grease_ = set(['0a0a','1a1a','2a2a','3a3a','4a4a','5a5a','6a6a','7a7a', - '8a8a','9a9a','aaaa','baba','caca','dada','eaea','fafa']) - -grease_single_int_ = set([10,26,42,58,74,90,106,122,138,154,170,186,202,218,234,250]) - -ext_data_extract_ = set(['0001','0005','0007','0008','0009','000a','000b', - '000d','000f','0010','0011','0013','0014','0018', - '001b','001c','002b','002d','0032','5500']) -quic_ext_data = set(['0039','ffa5']) - -imp_date_cs_file = find_resource_path('resources/implementation_date_cs.json.gz') -imp_date_ext_file = find_resource_path('resources/implementation_date_ext.json.gz') -if os.name == 'nt': - import gzip - if imp_date_cs_file != None: - for line in gzip.open(imp_date_cs_file, 'r'): - imp_date_cs_data = json.loads(line) - break - else: - imp_date_cs_data = {} - if imp_date_ext_file != None: - for line in gzip.open(imp_date_ext_file, 'r'): - imp_date_ext_data = json.loads(line) - break - else: - imp_date_ext_data = {} -else: - cmd = 'gzcat' if sys.platform == 'darwin' else 'zcat' - if imp_date_cs_file != None: - for line in os.popen(cmd + ' %s' % (imp_date_cs_file)): - imp_date_cs_data = json.loads(line) - break - else: - imp_date_cs_data = {} - if imp_date_ext_file != None: - for line in os.popen(cmd + ' %s' % (imp_date_ext_file)): - imp_date_ext_data = json.loads(line) - break - else: - imp_date_ext_data = {} - - -def extract_server_name(data, offset, data_len): - if data_len - offset < 7: - return 'None' - sni_len = int.from_bytes(data[offset+5:offset+7], 'big') - try: - return data[offset+7:offset+7+sni_len].decode() - except UnicodeDecodeError: - return data[offset+7:offset+7+sni_len].hex() - - -def eval_fp_str_general(fp_str_): - fp_str_ = '(%s)' % fp_str_ - fp_str_ = fp_str_.replace('(','["').replace(')','"]').replace('][','],[') - new_str_ = fp_str_.replace('["[','[[').replace(']"]',']]') - while new_str_ != fp_str_: - fp_str_ = new_str_ - new_str_ = fp_str_.replace('["[','[[').replace(']"]',']]') - return ast.literal_eval(fp_str_) - - -def eval_fp_str(fp_str_): - fp_str_ = fp_str_ - t_ = fp_str_.split(')') - version = t_[0][1:] - cs = t_[1][1:] - tmp_ext = fp_str_[len(cs)+9:-1] - tmp_ext = tmp_ext.split(')') - ext = [e_[1:] for e_ in tmp_ext[:-1]] - return [version, cs, ext] - - -def get_version_from_str(version_str_, convert=True): - if version_str_ in TLS_VERSION and convert: - return TLS_VERSION[version_str_] - else: - return version_str_ - - -def get_cs_from_str(cs_str_, convert=True): - cs_l_ = [] - for i in range(0,len(cs_str_),4): - cs_ = cs_str_[i:i+4] - if cs_ in imp_date_cs_data and convert: - cs_l_.append(imp_date_cs_data[cs_]['name']) - else: - cs_l_.append(cs_) - return cs_l_ - - -def get_ext_from_str(exts_, convert=True, mode='client'): - ext_l_ = [] - for ext in exts_: - if len(ext) == 0: - break - ext_type_ = ext[0:4] - ext_type_str_kind = str(int(ext_type_,16)) - if ext_type_str_kind in imp_date_ext_data and convert: - ext_type_ = imp_date_ext_data[ext_type_str_kind]['name'] - ext_data_ = '' - if len(ext) > 4 and convert: - ext_data_ = parse_extension_data(ext_type_, ext[4:], mode) - elif len(ext) > 4: - ext_data_ = ext[4:] - - ext_l_.append({ext_type_: ext_data_}) - - return ext_l_ - - -def get_implementation_date(cs_str_): # @TODO: add extension - dates_ = set([]) - for i in range(0,len(cs_str_),4): - cs_ = cs_str_[i:i+4] - if cs_ in imp_date_cs_data: - dates_.add(imp_date_cs_data[cs_]['date']) - dates_ = list(dates_) - dates_.sort() - if len(dates_) > 0: - return dates_[-1], dates_[0] - else: - return None, None - - -def parse_extension_data(ext_type, ext_data_, mode): - ext_len = int(ext_data_[0:4],16) - ext_data = ext_data_[4:] - - if ext_type == 'application_layer_protocol_negotiation': - ext_data = parse_application_layer_protocol_negotiation(ext_data, ext_len) - elif ext_type == 'signature_algorithms': - ext_data = signature_algorithms(ext_data, ext_len) - elif ext_type == 'status_request': - ext_data = status_request(ext_data, ext_len) - elif ext_type == 'ec_point_formats': - ext_data = ec_point_formats(ext_data, ext_len) - elif ext_type == 'key_share': - ext_data = key_share_client(ext_data, ext_len) - elif ext_type == 'psk_key_exchange_modes': - ext_data = psk_key_exchange_modes(ext_data, ext_len) - elif ext_type == 'supported_versions': - if mode == 'client': - ext_data = supported_versions(ext_data, ext_len) - else: - ext_data = supported_versions_server(ext_data, ext_len) - elif ext_type == 'supported_groups': - ext_data = supported_groups(ext_data, ext_len) - - return ext_data - - -# helper to parse/extract/skip single extension -def parse_extension(data, offset): - tmp_ext_type = degrease_type_code(data, offset) - fp_ext_ = tmp_ext_type - offset += 2 - ext_len = int.from_bytes(data[offset:offset+2],'big') - offset += 2 - tmp_ext_value = data[offset:offset+ext_len] - if tmp_ext_type in ext_data_extract_: - tmp_ext_value = degrease_ext_data(data, offset, tmp_ext_type, ext_len, tmp_ext_value) - fp_ext_ += '%04x%s' % (ext_len, tmp_ext_value.hex()) - elif tmp_ext_type in quic_ext_data: - tmp_ext_value = extract_quic_transport_params(data, offset, ext_len) - fp_ext_ = f'({fp_ext_})[{tmp_ext_value}]' - offset += ext_len - - return fp_ext_, offset, ext_len - -# helper to normalize grease type codes -def degrease_type_code(data, offset): - if data[offset] in grease_single_int_ and data[offset] == data[offset+1]: - return '0a0a' - else: - return data[offset:offset+2].hex() - - -def extract_quic_transport_params(data, offset, ext_len): - exts = [] - - toffset = offset - while toffset < offset+ext_len: - qtp_type_len = 2**(data[toffset] >> 6) - - qtp_type_normalized = ('%02x' % (data[toffset] & 0x3f)) + data[toffset+1:toffset+qtp_type_len].hex() - qtp_type = data[toffset:toffset+qtp_type_len].hex() - toffset += qtp_type_len - - if int(qtp_type_normalized, 16) % 31 == 27: - qtp_type = '1b' - - exts.append((int(qtp_type,16), qtp_type)) - - toffset += 1 + data[toffset] - - exts = sorted(exts) - out_ = '' - for e in exts: - out_ += f'({e[1]})' - - return out_ - - -# helper to normalize grease within supported_groups and supported_versions -def degrease_ext_data(data, offset, ext_type, ext_length, ext_value): - degreased_ext_value = b'' - if ext_type == '000a': # supported_groups - degreased_ext_value += data[offset:offset+2] - for i in range(2,ext_length,2): - if len(data) >= offset+i+1 and data[offset+i] in grease_single_int_ and data[offset+i] == data[offset+i+1]: - degreased_ext_value += b'\x0a\x0a' - else: - degreased_ext_value += data[offset+i:offset+i+2] - return degreased_ext_value - elif ext_type == '002b': # supported_versions - degreased_ext_value += data[offset:offset+1] - for i in range(1,ext_length,2): - if len(data) >= offset+i+1 and data[offset+i] in grease_single_int_ and data[offset+i] == data[offset+i+1]: - degreased_ext_value += b'\x0a\x0a' - else: - degreased_ext_value += data[offset+i:offset+i+2] - return degreased_ext_value - - return ext_value - - -def supported_groups(data, length): - if len(data) < 2: - return '' - info = {} - ext_len = int(data[0:4], 16) - info['supported_groups_list_length'] = ext_len - info['supported_groups'] = [] - offset = 4 - while offset < length*2: - if int(data[offset:offset+4], 16) in TLS_SUPPORTED_GROUPS: - info['supported_groups'].append(TLS_SUPPORTED_GROUPS[int(data[offset:offset+4], 16)]) - else: - info['supported_groups'].append('Unknown Group (%i)' % int(data[offset:offset+4], 16)) - offset += 4 - - return info - - -def supported_versions(data, length): - if len(data) < 2: - return '' - info = {} - ext_len = int(data[0:2], 16) - info['supported_versions_list_length'] = ext_len - info['supported_versions'] = [] - offset = 2 - while offset < length*2: - tmp_data = data[offset:offset+4] - if tmp_data in TLS_VERSION: - info['supported_versions'].append(TLS_VERSION[tmp_data]) - else: - info['supported_versions'].append('Unknown Version (%s)' % tmp_data) - offset += 4 - - return info - - -def supported_versions_server(data, length): - if len(data) < 2: - return '' - info = {} - tmp_data = data[:4] - if tmp_data in TLS_VERSION: - return TLS_VERSION[tmp_data] - else: - return 'Unknown Version (%s)' % tmp_data - - return info - - -def psk_key_exchange_modes(data, length): - if len(data) < 2: - return '' - info = {} - ext_len = int(data[0:2], 16) - info['psk_key_exchange_modes_length'] = ext_len - mode = int(data[2:4], 16) - info['psk_key_exchange_mode'] = TLS_PSK_KEY_EXCHANGE_MODES[mode] - - return info - - -def key_share_client(data, length): - if len(data) < 2: - return '' - info = {} - ext_len = int(data[0:4], 16) - info['key_share_length'] = ext_len - info['key_share_entries'] = [] - offset = 4 - while offset < length*2: - tmp_obj = {} - tmp_data = data[offset:offset+4] - tmp_obj['group'] = TLS_SUPPORTED_GROUPS[int(tmp_data,16)] - tmp_obj['key_exchange_length'] = int(data[offset+4:offset+8], 16) - tmp_obj['key_exchange'] = data[offset+8:offset+8+2*tmp_obj['key_exchange_length']] - info['key_share_entries'].append(tmp_obj) - offset += 8 + 2*tmp_obj['key_exchange_length'] - - return info - - -def ec_point_formats(data, length): - if len(data) < 2: - return '' - info = {} - ext_len = int(data[0:2], 16) - info['ec_point_formats_length'] = ext_len - info['ec_point_formats'] = [] - for i in range(ext_len): - tmp_data = data[2*i+2:2*i+4] - if tmp_data in TLS_EC_POINT_FORMATS: - info['ec_point_formats'].append(TLS_EC_POINT_FORMATS[tmp_data]) - else: - info['ec_point_formats'].append(tmp_data) - - return info - - -def status_request(data, length): - if len(data) < 2: - return '' - info = {} - info['certificate_status_type'] = TLS_CERTIFICATE_STATUS_TYPE[data[0:2]] - offset = 2 - info['responder_id_list_length'] = int(data[offset:offset+4], 16) - offset += info['responder_id_list_length']*2 + 4 - info['request_extensions_length'] = int(data[offset:offset+4], 16) - - return info - - -def signature_algorithms(data, length): - if len(data) < 2: - return '' - info = {} - ext_len = int(data[0:4], 16) - info['signature_hash_algorithms_length'] = ext_len - info['algorithms'] = [] - offset = 4 - while offset < length*2: - tmp_data = data[offset:offset+4] - if tmp_data in TLS_SIGNATURE_HASH_ALGORITHMS: - info['algorithms'].append(TLS_SIGNATURE_HASH_ALGORITHMS[tmp_data]) - else: - info['algorithms'].append('unknown(%s)' % tmp_data) - offset += 4 - - return info - - -def parse_application_layer_protocol_negotiation(data, length): - alpn_len = int(data[0:4], 16) - alpn_offset = 4 - alpn_data = [] - while alpn_offset < length*2: - tmp_alpn_len = int(data[alpn_offset:alpn_offset+2], 16) - alpn_offset += 2 - alpn_data.append(bytes.fromhex(data[alpn_offset:alpn_offset+2*tmp_alpn_len]).decode()) - alpn_offset += tmp_alpn_len*2 - - return alpn_data - - -def get_tls_params(fp_): - cs_ = [] - for i in range(0,len(fp_[1][0]),4): - cs_.append(fp_[1][0][i:i+4]) - cs_4_ = get_ngram(cs_, 4) - - ext_ = [] - if len(fp_) > 2 and fp_[2] != ['']: - for t_ext_ in fp_[2]: - ext_.append('ext_' + t_ext_[0][0:4] + '::' + t_ext_[0][4:]) - - return [cs_4_, ext_] - - -def get_sequence(fp_): - seq = [] - cs_ = fp_[1] - for i in range(0,len(cs_),4): - seq.append(cs_[i:i+4]) - ext_ = [] - if len(fp_) > 2 and fp_[2] != ['']: - for t_ext_ in fp_[2]: - seq.append('ext_' + t_ext_[0:4] + '::' + t_ext_[4:]) - return seq - - -def get_ngram(l, ngram): - l_ = [] - for i in range(0,len(l)-ngram): - s_ = '' - for j in range(ngram): - s_ += l[i+j] - l_.append(s_) - if len(l_) == 0: - l_ = l - return l_ - - - - - diff --git a/python/requirements.txt b/python/requirements.txt index d5eb179d..73115125 100644 --- a/python/requirements.txt +++ b/python/requirements.txt @@ -1,5 +1 @@ -cryptography>=3.2 -hpack~=3.0.0 -pyasn~=1.6.0b1 -pypcap~=1.2.3 -pyyaml~=5.3 +pypcap~=1.3.0 diff --git a/python/setup.py b/python/setup.py deleted file mode 100644 index 34911449..00000000 --- a/python/setup.py +++ /dev/null @@ -1,64 +0,0 @@ -""" -65;5802;1c Copyright (c) 2019 Cisco Systems, Inc. All rights reserved. - License at https://github.com/cisco/mercury/blob/master/LICENSE -""" - -import sys -import setuptools -from distutils.extension import Extension - -def readme(): - with open('README.md') as f: - return f.read() - - -setuptools.setup( - name='pmercury', - version='0.5.2.48', - description='Python tool for network (TLS, etc.) fingerprinting', - long_description=readme(), - long_description_content_type="text/markdown", - classifiers=[ - 'Development Status :: 3 - Alpha', - 'Programming Language :: Python :: 3 :: Only', - 'Topic :: System :: Networking :: Monitoring', - 'Topic :: Security', - ], - python_requires='>=3.6.0', - keywords='tls fingerprinting network traffic analysis', - url='https://github.com/cisco/mercury/', - author='Blake Anderson', - author_email='blake.anderson@cisco.com', - packages=setuptools.find_packages(), - install_requires=[ - 'cryptography', - 'hpack', - 'pyasn', - 'pypcap', - 'pyyaml', - ], - scripts=['pmercury/pmercury'], - data_files=[('/pmercury', ['../LICENSE','README.md','requirements.txt','MANIFEST.in','config.yaml']), - ('/pmercury/resources', ['../resources/fingerprint_db.json.gz', - '../resources/app_families.txt', - '../resources/app_families_strict.txt', - '../resources/transition_probs.csv.gz', - '../resources/implementation_date_cs.json.gz', - '../resources/public_suffix_list.dat.gz', - '../resources/implementation_date_ext.json.gz', - '../resources/pyasn.db', - '../resources/domain_indicators.json.gz', - '../resources/fingerprint_db_tcp.json.gz', - '../resources/fingerprint-db-tcp-os.json.gz', - '../resources/fingerprint-db-tls-os.json.gz', - '../resources/fingerprint-db-http-os.json.gz', - '../resources/os_detection_model.json']), - ('/pmercury/resources/equivalence-classes', ['../resources/equivalence-classes/eqv_class_ip_as.json.gz', - '../resources/equivalence-classes/eqv_class_ip.json.gz', - '../resources/equivalence-classes/eqv_class_port_applications.json.gz', - '../resources/equivalence-classes/eqv_class_port.json.gz', - '../resources/equivalence-classes/eqv_class_sni.json.gz'] - )], - include_package_data=True, - zip_safe=False -) diff --git a/resources/Makefile.in b/resources/Makefile.in deleted file mode 100644 index a7d2acba..00000000 --- a/resources/Makefile.in +++ /dev/null @@ -1,51 +0,0 @@ -# makefile for mercury resources installation -# - -# definitions for colorized output -COLOR_RED = "\033[0;31m" -COLOR_GREEN = "\033[0;32m" -COLOR_YELLOW = "\033[0;33m" -COLOR_OFF = "\033[0m" - -srcdir = . - -INSTALL = /usr/bin/install -c -INSTALLDATA = /usr/bin/install -c -m 644 - -prefix = @prefix@ -exec_prefix=@exec_prefix@ -bindir = @bindir@ -localstatedir = @localstatedir@/mercury -datarootdir = @datarootdir@/mercury - -RESOURCE_FILES += resources.tgz -# RESOURCE_FILES += pyasn.db -# RESOURCE_FILES += fp_prevalence_tls.txt.gz -# RESOURCE_FILES += app_families.txt -# RESOURCE_FILES += implementation_date_cs.json.gz -# RESOURCE_FILES += asn_info.db.gz -# RESOURCE_FILES += implementation_date_ext.json.gz -# RESOURCE_FILES += transition_probs.csv.gz -# RESOURCE_FILES += public_suffix_list.dat.gz - -.PHONY: install -install: - $(INSTALL) -d $(datarootdir) -o mercury -g mercury - $(INSTALLDATA) $(RESOURCE_FILES) $(datarootdir) -o mercury -g mercury - -.PHONY: install-nonroot -install-nonroot: - $(INSTALL) -d $(datarootdir) - $(INSTALLDATA) $(RESOURCE_FILES) $(datarootdir) - -.PHONY: uninstall -uninstall: - rm -rf $(datarootdir) - chown root $(localstatedir) - @echo $(COLOR_GREEN) "mercury capture data is still in place at $(localstatedir)" $(COLOR_OFF) - -.PHONY: distclean -distclean: - rm -f Makefile - -# EOF diff --git a/resources/app_families.txt b/resources/app_families.txt deleted file mode 100644 index 10db797c..00000000 --- a/resources/app_families.txt +++ /dev/null @@ -1,763 +0,0 @@ -Chromium,google chrome helper,chrome.exe,chromium helper,google chrome,chrome,chromium,brave browser helper,brave.exe,brave,brave browser,braveupdate.exe,opera helper,opera.exe,opera_autoupdate,opera,opera neon,microsoft edge helper,msedge.exe,microsoft edge beta,microsoft edge,microsoft edge dev,microsoft edge canary,vivaldi.exe,vivaldi helper,vivaldi - -Firefox,firefox.exe,firefox,firefox-esr,firefox-bin,waterfox.exe,waterfox,seamonkey,seamonkey.exe,firefox-esr (deleted) - -Safari,com.apple.safari.safebrowsing.service,safari,com.apple.safari.searchhelper,com.apple.webkit.networking,com.apple.geod,safaridavclient,safariappextension,safariextension - -Internet Explorer,microsoftedgecp.exe,iexplore.exe,searchui.exe,microsoftedgesh.exe,microsoftedge.exe,mshta.exe,msfeedssync.exe,microsoft.msn.news.exe,microsoft.notes.exe,smartscreen.exe - -Thunderbird,thunderbird,thunderbird.exe,thunderbird-bin - -Slack,slack,slack.exe,slack helper - -Spotify,spotify helper,spotify.exe,spotify - -Adobe Tools,creative cloud.exe,adobe_licensing_helper.exe,adobegcclient.exe,adobe_licutil.exe,setup.exe,core sync,creative cloud,setup,adobegcclient,adobe_licensing_helper,install,coresync.exe,adobecollabsync.exe,adobe captivate,adobe connect,adobe dimension,adobe dimension helper,adobe_ccxprocess.node,after effects,adobearm.exe,adobecaptivate.exe,adoberesourcesynchronizer,adobe xd,adobe illustrator,acrocef.exe,acrocef,rdrcef.exe,acrobat.exe,acrord32.exe,acrobat update helper,adobereader,adobeacrobat,aasiapp,aasiapp.execrobat updater,acroext,acroext.exe,adobe reader updater helper,adobe desktop service.exe,adobe desktop service,adobe lightroom classic,adobe lightroom,adobe lightroom helper,adobe bridge 2019,adobe bridge 2020,adobe photoshop 2020,adobe photoshop cc 2019,adobe premiere pro 2020,adobe premiere rush,adobe photoshop cc 2017,adobe photoshop elements 2019.exe,adobe premiere elements 2019.exe,adobe premiere pro cc 2019,adobe indesign cc 2019,flash player.exe,flashplayer.exe,flashplayerplugin_32_0_0_293.exe,flashplayerplugin_32_0_0_303.exe,flashplayerplugin_32_0_0_321.exe,flashplayerupdateservice.exe,adobe flash player install manager,xd_set-up.exe,acrobat_dc_set-up.exe,agsservice,adobe cef helper.exe - -Microsoft Office,officeclicktorun.exe,officec2rclient.exe,olicenseheartbeat.exe,msoia.exe,msosync.exe,office365servicev2,sdxhelper.exe,localbridge.exe,microsoft au daemon,office.exe,officehubtaskhost.exe,winproj.exe,onenoteim.exe,onenote.exe,microsoft onenote,onenote importer (preview),excel.exe,microsoft excel,outlook.exe,x1outlookservice64.exe,microsoft outlook,veraoutlook,powerpnt.exe,microsoft powerpoint,verapowerpoint,winword.exe,microsoft word,onedrive.exe,onedrive,onedrivestandaloneupdater,onedrivestandaloneupdater.exe,filecoauth.exe,onedrivesetup.exe,visio.exe,microsoft visio,msaccess.exe,microsoft access,teams,teams.exe,microsoft teams helper,microsoft update assistant,microsoft to do,appleoutlookdavconfig64.exe,skype helper,skype,skype.exe,skype for business,skypeapp.exe,skype meetings app.exe,skype for business web app,skypeforlinux,skypehost.exe,lync.exe,msoasb.exe - -Microsoft System,speechmodeldownload.exe,compattelrunner.exe,wermgr.exe,devicecensus.exe,dsregcmd.exe,sihclient.exe,wmiprvse.exe,speechruntime.exe,microsoft.photos.exe,winstore.app.exe,todo.exe,video.ui.exe,microsoft autoupdate,updatenotificationmgr.exe,devicecensus.exe,usocoreworker.exe - -Cisco Webex,ciscojabber.exe,webex teams,cisco webex meetings,cisco jabber,ciscosparkhelper,ciscocollabhost.exe,ptmeetingshost.exe,meeting center,event center,ptoneclk.exe,atmgr.exe,ptsrv.exe,ptupdate.exe,ciscowebexstart.exe,userguidanceclient.exe,webex productivity tools,cisco spark,spark-windows-mercury.exe,cisco webex device connector.exe,cisco webex start,spark-windows-media.exe,sparkwindows.exe,webex.exe,webexapplauncher.exe,webexstudio helper - -Cisco AMP,sfc.exe,ampdaemon - -Cisco AnyConnect,anyconnect.exe,acwebsecagent,acwebsecagent.exe,cisco anyconnect secure mobility client,vpnagent.exe,vpnagentd,vpndownloader,vpndownloader.exe,vpnui.exe,cscan.exe - -Cisco Stealthwatch,cisco stealthwatch v7.1.1.exe,cisco stealthwatch v7.1.2.exe,cisco stealthwatch v7.2.0.exe - -Cisco Catalog,cisco cx catalog.exe,cisco cx catalog,cisco 3d interactive catalog - -iCloud,music,itunes,notes,tv,calendaragent,mail,news,cloudphotosd,itunes.exe,iclouddrive.exe,icloudphotos.exe,commerce,accountsd,ssistantd,parsecd,softwareupdated,touristd,securityuploadd,appstoreagent,com.apple.sbd,findmydeviced,app store,nsurlsessiond,cloudd,syncdefaultsd,fmfd,passd,locationd,sharingd,rapportd,helpd,syspolicyd,adprivacyd,imtransferagent,parsec-fbf,akd,rtcreportingd,studentd,findmy,remindd,searchpartyuseragent,apsd,familycircled,searchpartyd,exchangesyncd,amplibraryagent,spotlight,mobileactivationd,appleiedav.exe,applechromedav.exe,com.apple.icloudhelper,spotlightnethelper,nbagent - -PDF Reader,pdf reader pro lite,pdf professional,pdf reader pro,pdf reader - -Sophos,sophos home,sophosautoupdate,mcsclient.exe,sophoseventmonitor,sophosmcsagentd,sophosmessagerouter - -GeoComply,geocomplyupdate.exe,geocomplyupdate - -GoPro,goproshareservice,goproidservice,gopro quik,gopro quik.exe,goproanalyticsservice.exe,goproidservice.exe,gopromediaservice,gopromediaservice.exe,gopromusicservice.exe,gopropushnotificationservice,gopropushnotificationservice.exe,goproupdateservice,goproupdateservice.exe - -Discord,discord,discord.exe,discordptb.exe - -Clockify,clockify desktop - -Autodesk,autodesk fusion 360,acsettingsync.exe,acwebbrowser.exe,adexmtsv,adexmtsv.exe - -AnyDesk,anydesk,anydesk.exe - -AnyDo,any.do,anydo - -AoW,aow3,aow3launcher - -AdGuard,adguardsvc.exe,adguard for safari,adguard - -Python,python,python.exe,pythonw.exe,python2.7,python2.7.exe,python3,python3.exe,python3.6,python3.6m.exe,python3.7,python3.8 - -Python Dev,pycharm,pycharm.exe,pycharm64.exe,webstorm,webstorm64.exe - -Ruby,ruby,ruby.exe,rubymine,rubymine64.exe - -Java,javaapplicationstub,java,java updater,java.exe,javacpl.exe,javaw.exe,jdev64w.exe,jucheck.exe,javasetup8u241.exe,jre-8u241-windows-au.exe,idea,idea.exe,idea64.exe - -Ryver,ryver,ryver.exe - -Grammarly,grammarlyforwindows.exe,grammarly,grammarly safari extension,grammarlyaddinsetup6.7.189.exe - -Net.DownloadHelper,net.downloadhelper.coapp-mac-64,net.downloadhelper.coapp-win-64.exe - -Git,git-remote-http,git-remote-https,git-lfs,git-remote-https.exe,gitkraken,gitkraken.exe,gitlab-runner - -Kite,kite,kited.exe - -Jabra Direct,jabra direct,jabra app service,jabra-direct.exe - -GoTo Meeting,g2mupdate,g2ac_comm.exe,g2comm.exe,g2mcomm.exe,g2mupdate.exe,g2mvideoconference.exe,g2viewer.exe,goto opener,gotoassist customer,gotomeeting,gotomeetingwinstore.exe,gotomypc viewer - -Electron,electron,electron helper - -Abstract,abstract - -Trello,trello - -Twitter,tweetbot,twitterrific,twitter - -WeatherBug,weatherbug,weatherbug.exe - -WhatsApp,whatsapp,whatsapp.exe - -DashLane,dashlaneagent,p72e3gc48.com.dashlane.dashlaneagent,dashlane,dashlanepluginservice,dashlanepluginmasservice,dashlane.exe,dashlaneplugin.exe - -OriginWeb,origin.exe,originwebhelperservice.exe,originclient - -Private Internet Access,pia-service.exe,pia-daemon - -Notion,notion,notion.exe - -PRL Client,prl_client_app,prl_updater_ctl,prl_pm_service - -Microsoft Remote Desktop,microsoft remote desktop,microsoft remote desktop beta - -Amazon Photos,amazonphotos.exe,amazon photos,amazon photos installer - -Amazon Music,amazon music.exe,amazon music,amazon music helper,amazonmusicinstaller.exe,amazon music autoupdater.exe - -Anaxi,anaxi,anaxi.exe - -Antidote,antidote 9,antidote.exe - -Synergy-Service,synergy-service,synergy-service.exe - -MatterMost,mattermost,mattermost.exe - -SnagIt,snagit 2019,snagithelper2019,snagiteditor.exe - -TurboTax,turbotax 2016,turbotax 2017,turbotax 2019,turbotax.exe,turbotax 2018,intuitupdater.exe,intuitupdateservice.exe - -BusyCal,n4ra379gbw.com.busymac.busycal3.alarm,busycal - -Shutterfly,create with shutterfly,shutterfly desktop uploader - -Yandex Disk,yandexdisk2.exe,yandex.disk.2 - -Docker,docker desktop.exe,docker,docker desktop installer.exe,docker-darwin-amd64,docker-machine,docker-machine.exe,docker-slim,dockerd,dockerd.exe - -NordVPN,nordvpn ike,nordpass-background-app,nordvpn.exe,nordvpn,nordvpn-service.exe - -Norton Security,nortonsecurity.exe - -Ruby,ruby,ruby.exe,rubymine,rubymine64.exe - -Java,javaapplicationstub,java,java updater,java.exe,javacpl.exe,javaw.exe,jdev64w.exe,jucheck.exe,javasetup8u241.exe,jre-8u241-windows-au.exe - -Kite,kiteservice.exe,kitehelper,kite,kited - -Duo,duo device health,duo device health.exe,duo-sso,duo-sso_darwin_amd64,duoconnect,duomaccertifier - -Software Vulnerability Management,svmscan_macos,svmscan.exe - -OmniSoftware,com.omnigroup.omnisoftwareupdate.osucheckservice,omnipresence,omnifocus,com.omnigroup.omnisoftwareupdate.osucheckservice.macappstore,omnigraffle,omnipeek.exe - -Box,box.desktop.updateservice.exe,box local com service.exe,box edit.exe,boxsync.exe,boxui.exe,box edit,box sync,box,box.exe,box autoupdater,box local com server,boxeditfinderextension,box notes,box notes.exe,boxcryptor,boxcryptor.exe - -Brackets,brackets,brackets-node,brackets.exe - -WeBull,webull,webull.exe - -NWJS,nwjs helper,nw.exe,nwjs - -MongoDB,mongodb compass helper,mongodb compass community helper,mongodb compass,mongod,mongodbcompass.exe,mongodbcompassbeta.exe,mongodb compass community - -Signal,signal,signal.exe,signal helper (renderer) - -Code,code - insiders helper (renderer),code helper (renderer),code - insiders.exe,code helper,code - insiders helper,code.exe - -Pulse SMS,pulse sms,pulse sms.exe - -Postman,postman,postman.exe,postmancanary,postmancanary.exe - -Google Drive,backup and sync,googledrivesync.exe,google~1.exe,googledrivefs.exe,google drive file stream - -Airmail,airmail,airmail beta,airmail 3 - -AIOMoji,aiomoji,aiomoji helper (renderer) - -AirTame,airtame,airtame.exe - -Visual Studio,visualstudio,vs_installershell.exe,vs_setup_bootstrapper.exe,vshost-clr2.exe,vshost32-clr2.exe,vsixautoupdate.exe - -Viber,viber,viber.exe - -Tabnine,tabnine - -Wunderlist,wunderlist,wunderlisthelper,wunderlist.exe,wundermail.client.exe - -Github Desktop,github desktop,githubdesktop.exe - -Quicken,quickbooks,quicken,quicken 2016,quicken 2017,quicken willmaker plus 2019 - -Deezer,deezer,deezer.exe - -Tidal,tidal,tidal helper - -Atom,atom,atom helper,atom beta,atom nightly helper,atom.exe - -JetBrains,jetbrains-toolbox,jetbrains-toolbox.exe - -Kindle,kindle,kindle.exe,kindlepreviewerupdater - -Fantastical,fantastical,fantastical 2 - -Zoho,zoho workdrive,zohodocs.exe,zoho meeting - -DropBox,dropboxupdate.exe,dropbox,dropbox.exe,dropbox109,dropboxclient_86.4.146.exe,dropboxmacupdate - -Sublime,sublime text,sublime text 2,sublime_text.exe - -Twitch,twitchagent,twitch - -Evernote,evernote.exe,evernote,evernote preview.exe,evernotehelper,evernotenw.exe - -Plex,plex.exe,plex,plex media server.exe,plex media server,plexscripthost.exe,plex dlna server,plex dlna server.exe,plex media player,plex script host,plexmediaplayer.exe, - -Zoom,zoom.us,zoom.exe,zoomassistant,zoomphone - -Standard Notes,standard notes,standard notes.exe - -BitDefender,bdagentd,bdcoreissues,bdupddaemon,bdldaemon,productagentservice.exe,bdcloner.exe,bdservicehost.exe,bdvpnservice.exe,vsserv.exe,vulnerability.scan.exe - -Binance,binance,binance.exe - -BitTorrent,bittorrent,bittorrentie.exe,qbittorrent - -Blizzard Browser,blizzardbrowser,blizzardbrowser.exe - -BlueJeans,bluejeans,bluejeans media,bluejeans media worker,bluejeans.exe,bluejeansmenu,cephtmlengine helper,cephtmlengine.exe,cephtmlengine - -Android Emulator,bluestacks,bluestacks.exe,bluestacksinstaller.exe,hd-player.exe,memuheadless.exe,nemuheadless,nemuheadless.exe - -Bomgar,bomgar-rep,bomgar-rep.exe,bomgar-scc.exe - -Boom,boom 2,boom 3d - -Atomic Wallet,atomic wallet,atomic wallet.exe,atomic wallet helper - -Authy Desktop,authy desktop,authy desktop.exe - -Avast,avastbrowser.exe,avastbrowserupdate.exe,avastsvc.exe,avastui.exe - -AVG,avg cleaner,avgbrowser.exe,avgbrowserupdate.exe,avggmsd,avgsetupx.exe,avgsvc.exe,avgui.exe - -Avira,avira safe shopping.exe,avira.softwareupdater.servicehost.exe - -AWS,aws,aws-events,aws-iam-authenticator,aws-vault,awskinesistap.exe - -Baidu,baiduim,baidunetdisk.exe,baidunetdisk_mac,baidunetdiskhost.exe - -Balenaetcher,balenaetcher,balenaetcher helper (renderer),balenaetcher.exe - -Battle.Net,battle.net,battle.net.exe,agent.exe - -Lenovo IMController,lenovo.modern.imcontroller.pluginhost.device.exe,lenovo.modern.imcontroller.pluginhost.companionapp.exe,lenovo.modern.imcontroller.exe,lenovovantageservice.exe,tvsukernel.exe,lsbupdater.exe - -Weather Service,weatherservice_iosmac,weatherservice - -Bark,bark,bark.exe - -Tableau,tableau.exe,tableau,tabcrashreporter.exe,tableau prep builder,tableau prep builder.exe,tableau public,tableau reader - -4K Video Downloader,4kvideodownloader,4kvideodownloader.exe - -Paprika Recipe Manager,paprika recipe manager,paprika recipe manager 3 - -Epic Games,epicgameslauncher.exe,fortniteclient-mac-shipping,epicgameslauncher-mac-shipping,fortniteclient-win64-shipping.exe - -ExpressVPN,expressvpnd,expressvpnd.exe - -Bria,bria 5,bria4.exe - -BrowserCore,browsercore,browsercore32.exe,browsercore64.exe - -BurpSuite,burpsuitecommunity.exe,burpsuitepro.exe - -BZTrans,bztrans_thread00,bztrans_thread01,bztrans_thread02,bztrans_thread03,bztrans_thread05,bztrans_thread06,bztransmit - -Caprine,caprine,caprine helper - -Carbon Copy,ccc stats service,carbon copy cloner - -CCleaner,ccleaner64.exe,ccloud,ccsetup563.exe,ccstudio.exe,ccsvchst.exe - -Citrix,citrix receiver updater,citrix viewer,citrix workspace,citrix workspace updater,citrixreceiverupdater.exe - -Civilization 6,civ6_exe,civ6_metal_exe - -CleanMy,cleanmydrive 2,cleanmymac,cleanmymac 3,cleanmymac 3 menu,cleanmymac x,cleanmymac x menu,cleanmymac x updater - -Clickup,clickup,clickup.exe - -Client,client,client.exe - -CLion,clion,clion64.exe - -ClipGrab,clipgrab,clipgrab.exe - -Cloud-Drive,cloud-backup-auto-updater,cloud-backup-auto-updater.exe,cloud-backup-daemon,cloud-backup-daemon.exe,cloud-backup-ui,cloud-backup-ui.exe,cloud-drive-auto-updater,cloud-drive-auto-updater.exe,cloud-drive-daemon,cloud-drive-daemon.exe,cloud-drive-ui,cloud-drive-ui.exe - -Communicator,communicator,communicator.exe - -Cubase,cubase le ai elements 9,cubase le ai elements 10 - -Curl,curl,curl.exe - -Cypress,cypress,cypress.exe - -Dart,dart,dart.exe - -DataGrip,datagrip,datagrip64.exe - -DirMgr,dirmngr,dirmngr.exe - -Dish Anywhere Player,dishanywhereplayer,dishanywhereplayer.exe - -Dreamweaver,dreamweaver,dreamweaver.exe - -DS Access Service,dsaccessservice,dsaccessservice.exe - -Duet,duet,duet.exe - -Eagle,eagle,eagle.exe - -Eclipse,eclipse-inst.exe,eclipse.exe,eclipsec.exe - -Egnyte,egnyte webedit,egnytedesktopsync,egnytedrive.exe,egnytedrivefs,egnytesyncservice - -Ekahau,ekahau pro (high dpi).exe,ekahau pro.exe,ekahau site survey.exe - -Elmedia,elmedia player,elmedia video player - -Emacs,emacs,emacs-26.3,emacs-x86_64-10_10,emacs-x86_64-10_14,emacs.exe - -Endnote,endnote x8,endnote x9 - -Enpass,enpass,enpass.exe - -Eternal,eternal,eternal.exe - -EU Download,eu4.exe,eudownload.exe,eudownloader.exe - -Eve,evelauncher,evelauncher.exe - -Evolution,evolution,evolution-addressbook-factory-subprocess,evolution-calendar-factory,evolution-calendar-factory-subprocess,evolution-source-registry - -Exercism,exercism,exercism.exe - -Exodus,exodus helper,exodus.exe - -F5 VPN,f5 vpn - -Facebook Gameroom,facebookgameroom.exe - -Fiddler,fiddler.exe,fiddler.webui - -Figma,figma,figma.exe - -Filemaker,filemaker pro 18 advanced,filemaker pro 18 advanced.exe,filemaker pro advanced,filemaker pro advanced.exe - -Filezilla,filezilla,filezilla server.exe,filezilla.exe,filezilla_3.45.1_win32_sponsored-setup.exe,filezilla_3.45.1_win64_sponsored-setup.exe,filezilla_3.46.1_win64_sponsored-setup.exe,filezilla_3.46.2_win32_sponsored-setup.exe,filezilla_3.46.2_win64_sponsored-setup.exe,filezilla_3.46.3_win64_sponsored-setup.exe,filezi~1.exe - -Final Draft,final draft 10,final draft 11 - -Find IT Server,finditserver,finditserver.exe - -Fing,fing.exe,fingagent.exe - -Fitbit,fitbit connect,fitbit connect menubar helper - -Flux,flux,flux.exe - -FM,fm,fm.exe,fmplugin.exe - -Forti VPN,fortitray.exe,forticlientagent - -Franz,franz,franz.exe - -Galaxy Client,galaxyclient.exe,galaxycommunication,galaxycommunication.exe,galaxyupdater,galaxyupdater.exe - -Gamebar,gamebar.exe,gamebarpresencewriter.exe - -Garmin,garmin express,garmin express service - -Go,go,go for gmail,go for instagram,go-agent,go.exe,goland,goland64.exe,goloader,goloader.exe - -Google Earth,google earth,googleearth.exe - -Google Play,google play music desktop player,google play music desktop player.exe - -Google Update,googleupdate.exe,googlesoftwareupdateagent - -Grambler,gramblr.exe,gramblr - -Grafana,grafana-server,grafana-server.exe - -GroupMe,groupme,groupmeuwa.exe - -GS-Server,gs-server,gs-server.exe - -Hamachi,hamachi-2-ui.exe,hamachi-2.exe - -Harvest,harvest,harvesterx64.exe - -Hearthstone,hearthstone,hearthstone.exe - -Helm,helm,helm-v2.13.1,helm.exe,helm2.14,helm3,helms3 - -Hola,hola-setup-core.exe - -HTTPd,httpd,httpd.exe - -iMazing,imazing,imazing mini,imazing.exe - -Insomnia,insomnia,insomnia helper,insomnia.exe - -Insync,insync,insync.exe,insyncupgrade,insyncupgrade.exe - -iPass,ipass,ipass open mobile - -IPVanish VPN,ipvanish vpn - -iVPN,ivpn agent - -Join Me,join.me,join.me.exe - -JP Naver,jp.naver.line.mac.mediaservice,jp.naver.line.mac.seekpreviewservice - -Jump,jump desktop,jumpconnect,jumpconnect.exe - -JX,jx,jxbrowser,jxbrowser-chromium.exe - -Kakao,kakaotalk,kakaotalk.exe - -Kasey,kaseya.adminendpoint,kaseya.agentendpoint,kaseyaendpoint.exe,kaseyaliveconnect - -kbfs,kbfs,kbfsdokan.exe - -Keybase,keybase,keybase.exe - -Kitematic,kitematic (beta) helper,kitematic.exe - -Kobo,kobo,kobo.exe - -Kodi,kodi,kodi.exe - -Komodo,komodo,komodo-bin,komodo.exe - -Kube,kubectl,kubectl.1.13,kubectl.1.14 - -LAClient,laclient,laclient.exe - -League Client,leagueclient,leagueclient.exe - -Leap Frog,leapd,leapfrog connect 2,leapfrogconnect,leapfrogconnect2.exe - -Lens,lens,lens helper (renderer) - -LGHub,lghub_agent,lghub_agent.exe,lghub_updater,lghub_updater.exe - -Line,line,line 6 updater,line.exe,lineapp.exe,lineupdater.exe - -LMI,lmi_instantchat_srv.exe,lmi_rescue.exe,lmi_rescue_srv.exe,lmiignition.exe - -Loader,loader,loader.exe - -Logi,logi_analytics_client,logi_analytics_client.exe - -LogMeIn,logmein client,logmein hamachi menubar,logmein.exe,support-logmeinrescue,support-logmeinrescueinstantchat - -LogTransport,logtransport2,logtransport2.exe - -Loom,loom,loom.exe - -Mahjong,mahjong deluxe free.exe,mahjong.exe - -MailPlane,mailplane,mailplane 3 - -Maps,maps,maps.exe - -Masvc,masvc,masvc.exe - -Matlab,matlab,matlab.exe,matlabwindow,matlabwindow.exe - -McAfee,mcafee safe connect.exe,mcafeeendpointproductremoval_19.11.0.64.exe,mcscript_inuse.exe,mcshield.exe,mcuicnt.exe,mcupdate.exe,mcupdatemgr.exe - -Mega,megaclient,megasync.exe - -Menutab,menutab for facebook,menutab pro for facebook - -Messenger,messenger,messenger.exe - -Mezzanine,mezzanine,mezzanine.exe - -Microsoft Mashup,microsoft.mashup.container.netfx40.exe,microsoft.mashup.container.netfx45.exe - -MightyText,mightytext,mightytext.exe - -Minecraft,minecraftserver.exe,minecrafttexture.exe,minecrafttexture.zip.exe - -Minikube,minikube,minikube.exe - -Miro,miro,miro - formerly realtimeboard,miro - formerly realtimeboard.exe - -Movavi,movavi photo editor free 1,movavi screen recorder 10,movavi screen recorder studio 10,movavi video converter 19 premium,movavi video converter 20 premium,movavistatistics,movavistatistics.exe - -MusixMatch,musixmatch,musixmatch.exe - -MyHarmony,myharmony,myharmony helper eh,myharmony.exe - -MySQL,mysql,mysqldump,mysqlworkbench,mysqlworkbench.exe - -Neo4j,neo4j desktop,neoloadgui.exe - -Neon,neon,neon.exe - -Nessus,nessusd,nessusd.exe - -Net SVC,net_svc,net_svc.exe - -NetBeans,netbeans.exe,netbeans64.exe - -NetSession,netsession_mac - -Nexi,nexi helper,nexi.exe - -NextCloud,nextcloud,nextcloud.exe - -NGrok,ngrok,ngrok.exe - -Node,node,node-webkit,nodedv3.exe - -Norton VPN,norton secure vpn,norton secure vpn.exe - -Nvidia Telemetry,nvalt,nvbackend.exe,nvcontainer.exe,nvdisplay.container.exe,nvidia web helper.exe,nvprofileupdater64.exe,nvtelemetrycontainer.exe - -NXClient,nxclient,nxclient.bin,nxon.exe,nxplayer - -OnVue,onvue,onvue.exe - -OpenConnect,openconnect,openconnect-gui.exe - -OS Buddy,osbuddy64(1).exe,osbuddy64.exe - -OVF Tool,ovftool,ovftool.exe - -OwnCloud,owncloud,owncloud.exe - -Oxygen Author,oxygenauthor19.0.exe,oxygenauthor19.1.exe,oxygenauthor20.1.exe - -Packet Tracer,packettracer6.exe,packettracer7,packettracer7.exe - -Pandora,pandora,pandora.exe - -PANGPS,pangpa.exe,pangps,pangps.exe - -Paradox,paradox launcher,paradox launcher.exe - -Perl,perl,perl5.18,perl.exe - -PHP,php,php-fpm,php-win.exe,php.exe,phpstorm,phpstorm.exe,phpstorm64.exe - -PingID,pingid.exe,pingsender,pingsender.exe - -Plantronics,plantronics hub,plthub.exe - -Plugin-Container,plugin-container,plugin-container.exe,plugin_host,plugin_host.exe,pluginhost.exe - -Pokemon,pokemon trading card game online,pokemon trading card game online.exe,pokemonshowdown.exe - -Poker Stars,pokerstars,pokerstars.exe,pokerstars.net - -Polar Bookshelf,polar bookshelf helper,polar bookshelf.exe - -Popcorn Time,popcorn-time.exe,popcorntime - -PostBox,postbox,postbox-bin - -PRTG,prtg probe.exe,prtg server.exe,prtgdesktop.exe - -Psiphon,psiphon-tunnel-core.exe,psiphon3-meek.exe - -QQ,qq,qq.exe,qqapp.exe,qqbrowser.exe,qqmusic.exe - -Quip,quip,quip.exe,quiplash - -Rakuten,rakuten ebates cash back button,rakuten express cash back extensions - -Rambox,rambox helper,rambox.exe,ramboxpro - -REGUI,regui1.0,regui4.0 - -RekordBox,rekordbox,rekordbox.exe - -Remote PC,remotepchelper,remotepcservice.exe,remotepcsuite,remotepcview - -Remoting Host,remoting_host.exe,remoting_me2me_host - -Republic Anywhere,republic anywhere,republic anywhere.exe - -RescueTime,rescuetime,rescuetime.exe - -Ring Central,ring.exe,ringcentral meetings,ringcentralmeetings.exe - -Riot,riot,riotclientservices,riotclientservices.exe,riotclientux,riotclientux.exe - -Roblox,robloxplayer,robloxplayerbeta.exe,robloxplayerlauncher.exe,robloxstudio,robloxstudiobeta.exe - -RoboForm,robo3t.exe,roboform,roboform-extension,roboformsafariextensionservice,roboformservice - -Rocket Chat,rocket.chat,rocket.chat.exe - -RP VOIP,rpvoip,rpvoip.exe - -RuneLite,runelite,runelite.exe - -Samsung Magician,samsungmagician.exe,samsungportablessd,samsungportablessd.exe - -Sandisk,sandisksecureaccessv3.01_win.exe,sandisksecureaccessv3.1_win.exe,sandisksecureaccessv3_mac,sandisksecureaccessv3_win.exe - -Shadow,shadow,shadow beta,shadow tactics,shadow.exe - -Shift,shift,shift.exe,shiftit - -Signiant,signiantclient.exe,signiantuser.exe - -Sketch,sketch,sketchpacks,sketchup,sketchup.exe - -Skitch,skitch,skitch.exe - -Sky,sky,sky go - -Sling,slingplayer desktop.exe,slingplayer.exe,slingplayerforweb helper eh,slingplayerforweb.exe - -Sniper,sniper ops 3d,sniper.png - -SoapUI,soapui-5.4.0-eb.exe,soapui-5.4.0.exe,soapui-5.5.0.exe - -Sonos,sonos,sonos.exe - -SpiderOakOne,spideroakone,srstreamerdaemon - -SplashTop,splashtop for rmm,splashtop personal - -Splice,splice,splice helper,splice.exe,splice.helper.exe - -Splunk,splunkd,splunkd.exe - -SQL Developer,sqldeveloper.exe,sqldeveloper64.exe,sqldeveloper64w.exe - -SRT Helper,srt_helper,srt_helper.exe - -Station,station,station helper (renderer),station.exe - -Steam,steam.exe,steam_osx - -Stellaris,stellaris,stellaris.exe - -Sunloginclient,sunloginclient,sunloginclient.exe - -SVN,svn,svn.exe - -Sync Thing,syncthing,syncthing.exe - -Synology,synology chat,synology chat.exe,synology-note-station.exe,synologysurveillancestationclient.exe - -TableTop Simulator,tabletop simulator,tabletop simulator.exe - -Tab Proto Srv,tabprotosrv,tabprotosrv.exe - -Tanium,taniumclient,taniumclient.exe - -TE Agent,te-agent,te-agent.exe,te-updater,te-user-agent - -Team Viewer,teamviewer,teamviewer.exe,teamviewerqs - -Telegram,telegram,telegram.exe - -Terraform,terraform,terraform-0.11.14,terraform-0.11.7,terraform-0.12.16,terraform-provider-aws,terraform-provider-azuread_v0.7.0_x4,terraform-provider-azurerm_v1.36.1_x4,terraform-provider-azurerm_v1.37.0_x4,terraform-provider-azurerm_v1.38.0_x4,terraform-provider-azurerm_v1.39.0_x4,terraform-provider-azurerm_v1.40.0_x4,terraform-provider-azurerm_v1.41.0_x4,terraform-provider-datadog_v2.5.0_x4,terraform-provider-dme,terraform-provider-docker,terraform-provider-google_v2.20.1_x4,terraform-provider-google_v3.0.0_x5,terraform-provider-google_v3.3.0_x5,terraform-provider-helm_v0.10.4_x4,terraform-provider-kubernetes_v1.10.0_x4,terraform-provider-kubernetes_v1.7.0_x4,terraform-provider-kubernetes_v1.8.1_x4,terraform-provider-kubernetes_v1.9.0_x4,terraform-provider-openstack_v1.25.0_x4,terraform-provider-pagerduty_v1.4.2_x4,terraform-provider-sl,terraform-provider-terraform_v1.0.1_x4,terraform-provider-terraform_v1.0.2_x4,terraform-provider-vault_v2.5.0_x4,terraform-provider-vault_v2.7.0_x4,terraform-provider-vsphere_v1.13.0_x4,terraform-provider-vsphere_v1.14.0_x4,terraform0.11.14,terraform0.12.16,terraform_0.11.14,terraform_0.12.16,terraform_8_7 - -TET,tet-main.exe,tet_controller.exe - -Text Editor,texteditor 1.1.exe,texteditor 1.2.exe - -The Jackbox Party Pack,the jackbox party pack 3.exe,the jackbox party pack 5.exe,the jackbox party pack 6,the jackbox party pack 6.exe - -Things,things,things3 - -TI Connect,ti connect ce.exe,ti-nspire cx student software.exe - -Todoist,todoist,todoist.exe,todoist.helper.exe,todoist.universal.exe,todoisttoday - -Toggle Desktop,toggldesktop,toggldesktop.exe - -TomTom,tomtom home,tomtom mydrive connect,tomtom mysports connect.exe,tomtom sports connect,tomtomhome.exe,tomtomhomeruntime.exe - -Toolkit,toolkit,toolkit.exe - -Tor,tor (Generic DMZ Traffic),tor-0.3.5.8-darwin-brave-0,tor-0.3.5.8-win32-brave-0,tor.exe,tor.real - -Trac SRV Wrapper,tracsrvwrapper,tracsrvwrapper.exe - -Trainer Road,trainerroad helper,trainerroad.exe - -Tresorit,tresorit,tresorit.exe - -Trillian,trillian,trillian.exe - -True Image,true_image,trueimage.exe,trueimaged,trueimagemonitor.exe - -Tune In,tunein,tunein.exe - -Typora,typora,typora.exe - -UI Path,uipath.service.host.exe,uipath.service.userhost.exe - -Unity,unity,unity hub,unitybugreporter - -Ultrasurf,u.exe,uran.exe - -uTorrent,utorrent web,utorrent.exe,utorrentie.exe - -VNC Viewer,vnc-viewer-6.0.2-windows-64bit.exe,vnc-viewer-6.0.3-windows-64bit.exe,vnc-viewer-6.1.0-windows-64bit.exe,vnc-viewer-6.1.1-windows-64bit.exe,vnc-viewer-6.18.907-windows-64bit.exe,vnc-viewer-6.19.325-windows-32bit.exe,vnclicensewiz,vncserver,vncserver.exe,vncviewer,vncviewer.exe - -VPN,vpn,vpn.exe - -VSD Viewer,vsd viewer,vsd viewer pro - -Vypr VPN,vyprvpn.exe,vyprvpnservice.exe - -WalkMe,walkme,walkme.exe,walkmeextension - -WD Discovery,wd discovery,wd discovery.exe,wd sync service,wdsync,wdsync.exe - -Weather Dock Free,weather dock free,weather widget free - -Weatherman,weatherman,weatherman lite - -WebShots,webshots,webshots.exe - -WebWorks,webworks.epublisherdesigner.exe,webworks.epublisherexpress.exe - -WeChat,wechat.exe,wechatapp.exe,wechatstore.exe,wechatwebdevtools helper - -Wget,wget,wget.exe,wgettoo.exe - -WinZip Smart Monitor,winzip smart monitor service.exe,winzipsmartmonitor.exe - -Wire,wire,wire helper (renderer) - -WorkBench,workbench.exe,workbench.service.exe - -WorkFlowy,workflowy,workflowy.exe - -Workspaces,workspaceinstall,workspaceinstall_el,workspaces,workspaces.exe - -World of Warcraft,world of warcraft,world of warcraft classic,wow.exe,wowclassic.exe - -X-Lite,x-lite,x-lite.exe - -XNIP,xnip,xniphelper - -Yousician,yousician,yousician launcher - -Youtube Download,youtube download,youtubedownloaderhd.exe - -Zeplin,zeplin,zeplin.exe - -Zwift,zwiftapp,zwiftlauncher-osx - -PBI Desktop,pbidesktop.exe,microsoft.powerbi.enterprisegateway.exe - -Rakuten,rakuten cash back button,rakuten ebates cash back button - -Avid Link,avid link,avid link.exe - -Prezi,prezi.next.exe,prezi.classic.exe diff --git a/resources/app_families_strict.txt b/resources/app_families_strict.txt deleted file mode 100644 index 394a628f..00000000 --- a/resources/app_families_strict.txt +++ /dev/null @@ -1,815 +0,0 @@ -Chrome,google chrome helper,chrome.exe,chromium helper,google chrome,chrome,chromium - -Firefox,firefox.exe,firefox,firefox-esr,firefox-bin,firefox-esr (deleted) - -Waterfox,waterfox.exe,waterfox - -Seamonkey,seamonkey,seamonkey.exe - -Safari,com.apple.safari.safebrowsing.service,safari,com.apple.safari.searchhelper,com.apple.webkit.networking,com.apple.geod,safaridavclient,safariappextension,safariextension - -Internet Explorer,microsoftedgecp.exe,iexplore.exe,searchui.exe,microsoftedgesh.exe,microsoftedge.exe,mshta.exe,msfeedssync.exe,smartscreen.exe - -Thunderbird,thunderbird,thunderbird.exe,thunderbird-bin - -Slack,slack,slack.exe,slack helper - -Skype,skype helper,skype,skype.exe,skype for business,skypeapp.exe,skype meetings app.exe,skype for business web app,skypeforlinux,skypehost.exe,lync.exe - -Brave,brave browser helper,brave.exe,brave,brave browser,braveupdate.exe - -Spotify,spotify helper,spotify.exe,spotify - -Opera,opera helper,opera.exe,opera_autoupdate,opera,opera neon - -Microsoft Edge,microsoft edge helper,msedge.exe,microsoft edge beta,microsoft edge,microsoft edge dev,microsoft edge canary - -Vivaldi,vivaldi.exe,vivaldi helper,vivaldi - -Adobe Creative Suite,creative cloud.exe,adobe_licensing_helper.exe,adobegcclient.exe,adobe_licutil.exe,setup.exe,core sync,creative cloud,setup,adobegcclient,adobe_licensing_helper,install,coresync.exe,adobecollabsync.exe,adobe captivate,adobe connect,adobe dimension,adobe dimension helper,adobe_ccxprocess.node,after effects,adobearm.exe,adobecaptivate.exe,adoberesourcesynchronizer,adobe xd,adobe illustrator,xd_set-up.exe,acrobat_dc_set-up.exe,agsservice,adobe cef helper.exe - -Adobe Acrobat,acrocef.exe,acrocef,rdrcef.exe,acrobat.exe,acrord32.exe,acrobat update helper,adobereader,adobeacrobat,aasiapp,aasiapp.execrobat updater,acroext,acroext.exe,adobe reader updater helper - -Adobe Desktop,adobe desktop service.exe,adobe desktop service - -Adobe Lightroom,adobe lightroom classic,adobe lightroom,adobe lightroom helper - -Adobe Bridge,adobe bridge 2019,adobe bridge 2020 - -Adobe Photoshop,adobe photoshop 2020,adobe photoshop cc 2019,adobe premiere pro 2020,adobe premiere rush,adobe photoshop cc 2017,adobe photoshop elements 2019.exe,adobe premiere elements 2019.exe,adobe premiere pro cc 2019 - -Adobe Indesign,dobe indesign cc 2019 - -Adobe Flash Player,flash player.exe,flashplayer.exe,flashplayerplugin_32_0_0_293.exe,flashplayerplugin_32_0_0_303.exe,flashplayerplugin_32_0_0_321.exe,flashplayerupdateservice.exe,adobe flash player install manager - -Microsoft Office,officeclicktorun.exe,officec2rclient.exe,olicenseheartbeat.exe,msoia.exe,msosync.exe,office365servicev2,sdxhelper.exe,localbridge.exe,microsoft au daemon,office.exe,officehubtaskhost.exe,winproj.exe,msoasb.exe - -OneNote,onenoteim.exe,onenote.exe,microsoft onenote,onenote importer (preview) - -Excel,excel.exe,microsoft excel - -Outlook,outlook.exe,x1outlookservice64.exe,microsoft outlook,veraoutlook,appleoutlookdavconfig64.exe - -Powerpoint,powerpnt.exe,microsoft powerpoint,verapowerpoint - -Word,winword.exe,microsoft word - -OneDrive,onedrive.exe,onedrive,onedrivestandaloneupdater,onedrivestandaloneupdater.exe,filecoauth.exe,onedrivesetup.exe - -Visio,visio.exe,microsoft visio - -Access,msaccess.exe,microsoft access - -Microsoft Teams,teams,teams.exe,microsoft teams helper - -Microsoft Telemetry,speechmodeldownload.exe,compattelrunner.exe,wermgr.exe,devicecensus.exe,dsregcmd.exe,sihclient.exe,wmiprvse.exe,speechruntime.exe,updatenotificationmgr.exe,devicecensus.exe,usocoreworker.exe - -Microsoft Desktop,microsoft.photos.exe,microsoft.notes.exe,winstore.app.exe,microsoft.msn.news.exe,todo.exe,video.ui.exe, - -Cisco Webex,ciscojabber.exe,webex teams,cisco webex meetings,cisco jabber,ciscosparkhelper,ciscocollabhost.exe,ptmeetingshost.exe,meeting center,event center,ptoneclk.exe,atmgr.exe,ptsrv.exe,ptupdate.exe,ciscowebexstart.exe,userguidanceclient.exe,webex productivity tools,cisco spark,spark-windows-mercury.exe,cisco webex device connector.exe,cisco webex start,spark-windows-media.exe,sparkwindows.exe,webex.exe,webexapplauncher.exe,webexstudio helper - -Cisco AMP,sfc.exe,ampdaemon - -Cisco AnyConnect,anyconnect.exe,acwebsecagent,acwebsecagent.exe,cisco anyconnect secure mobility client,vpnagent.exe,vpnagentd,vpndownloader,vpndownloader.exe,vpnui.exe,cscan.exe - -Cisco Stealthwatch,cisco stealthwatch v7.1.1.exe,cisco stealthwatch v7.1.2.exe,cisco stealthwatch v7.2.0.exe - -Cisco Catalog,cisco cx catalog.exe,cisco cx catalog,cisco 3d interactive catalog - -iCloud,music,itunes,notes,tv,calendaragent,mail,news,cloudphotosd,itunes.exe,iclouddrive.exe,icloudphotos.exe - -iCloud System,commerce,accountsd,ssistantd,parsecd,softwareupdated,touristd,securityuploadd,appstoreagent,com.apple.sbd,findmydeviced,app store,nsurlsessiond,cloudd,syncdefaultsd,fmfd,passd,locationd,sharingd,rapportd,helpd,syspolicyd,adprivacyd,imtransferagent,parsec-fbf,akd,rtcreportingd,studentd,findmy,remindd,searchpartyuseragent,apsd,familycircled,searchpartyd,exchangesyncd,amplibraryagent,spotlight,mobileactivationd,appleiedav.exe,applechromedav.exe,com.apple.icloudhelper,spotlightnethelper,nbagent - -PDF Reader,pdf reader pro lite,pdf professional,pdf reader pro,pdf reader - -Sophos,sophos home,sophosautoupdate,mcsclient.exe,sophoseventmonitor,sophosmcsagentd,sophosmessagerouter - -GeoComply,geocomplyupdate.exe,geocomplyupdate - -GoPro,goproshareservice,goproidservice,gopro quik,gopro quik.exe,goproanalyticsservice.exe,goproidservice.exe,gopromediaservice,gopromediaservice.exe,gopromusicservice.exe,gopropushnotificationservice,gopropushnotificationservice.exe,goproupdateservice,goproupdateservice.exe - -Discord,discord,discord.exe,discordptb.exe - -Clockify,clockify desktop - -Autodesk,autodesk fusion 360,acsettingsync.exe,acwebbrowser.exe,adexmtsv,adexmtsv.exe - -AnyDesk,anydesk,anydesk.exe - -AnyDo,any.do,anydo - -AoW,aow3,aow3launcher - -AdGuard,adguardsvc.exe,adguard for safari,adguard - -Python,python,python.exe,pythonw.exe,python2.7,python2.7.exe,python3,python3.exe,python3.6,python3.6m.exe,python3.7,python3.8 - -Python Dev,pycharm,pycharm.exe,pycharm64.exe,webstorm,webstorm64.exe - -Ruby,ruby,ruby.exe,rubymine,rubymine64.exe - -Java,javaapplicationstub,java,java updater,java.exe,javacpl.exe,javaw.exe,jdev64w.exe,jucheck.exe,javasetup8u241.exe,jre-8u241-windows-au.exe,idea,idea.exe,idea64.exe,jp2launcher.exe - -Ryver,ryver,ryver.exe - -Grammarly,grammarlyforwindows.exe,grammarly,grammarly safari extension,grammarlyaddinsetup6.7.189.exe - -Net.DownloadHelper,net.downloadhelper.coapp-mac-64,net.downloadhelper.coapp-win-64.exe - -Git,git-remote-http,git-remote-https,git-lfs,git-remote-https.exe,gitkraken,gitkraken.exe,gitlab-runner - -Kite,kite,kited.exe - -Jabra Direct,jabra direct,jabra app service,jabra-direct.exe - -GoTo Meeting,g2mupdate,g2ac_comm.exe,g2comm.exe,g2mcomm.exe,g2mupdate.exe,g2mvideoconference.exe,g2viewer.exe,goto opener,gotoassist customer,gotomeeting,gotomeetingwinstore.exe,gotomypc viewer - -Electron,electron,electron helper - -Abstract,abstract - -Trello,trello - -Twitter,tweetbot,twitterrific,twitter - -WeatherBug,weatherbug,weatherbug.exe - -WhatsApp,whatsapp,whatsapp.exe - -DashLane,dashlaneagent,p72e3gc48.com.dashlane.dashlaneagent,dashlane,dashlanepluginservice,dashlanepluginmasservice,dashlane.exe,dashlaneplugin.exe - -OriginWeb,origin.exe,originwebhelperservice.exe,originclient - -Private Internet Access,pia-service.exe,pia-daemon - -Notion,notion,notion.exe - -Microsoft Update,microsoft update assistant,microsoft autoupdate - -PRL Client,prl_client_app,prl_updater_ctl,prl_pm_service - -Microsoft Remote Desktop,microsoft remote desktop,microsoft remote desktop beta - -Amazon Photos,amazonphotos.exe,amazon photos,amazon photos installer - -Amazon Music,amazon music.exe,amazon music,amazon music helper,amazonmusicinstaller.exe,amazon music autoupdater.exe - -Anaxi,anaxi,anaxi.exe - -Antidote,antidote 9,antidote.exe - -Synergy-Service,synergy-service,synergy-service.exe - -MatterMost,mattermost,mattermost.exe - -SnagIt,snagit 2019,snagithelper2019,snagiteditor.exe - -TurboTax,turbotax 2016,turbotax 2017,turbotax 2019,turbotax.exe,turbotax 2018,intuitupdater.exe,intuitupdateservice.exe - -BusyCal,n4ra379gbw.com.busymac.busycal3.alarm,busycal - -Shutterfly,create with shutterfly,shutterfly desktop uploader - -Yandex Disk,yandexdisk2.exe,yandex.disk.2 - -Docker,docker desktop.exe,docker,docker desktop installer.exe,docker-darwin-amd64,docker-machine,docker-machine.exe,docker-slim,dockerd,dockerd.exe - -NordVPN,nordvpn ike,nordpass-background-app,nordvpn.exe,nordvpn,nordvpn-service.exe - -Norton Security,nortonsecurity.exe - -Ruby,ruby,ruby.exe,rubymine,rubymine64.exe - -Java,javaapplicationstub,java,java updater,java.exe,javacpl.exe,javaw.exe,jdev64w.exe,jucheck.exe,javasetup8u241.exe,jre-8u241-windows-au.exe - -Kite,kiteservice.exe,kitehelper,kite,kited - -Duo,duo device health,duo device health.exe,duo-sso,duo-sso_darwin_amd64,duoconnect,duomaccertifier - -Software Vulnerability Management,svmscan_macos,svmscan.exe - -OmniSoftware,com.omnigroup.omnisoftwareupdate.osucheckservice,omnipresence,omnifocus,com.omnigroup.omnisoftwareupdate.osucheckservice.macappstore,omnigraffle,omnipeek.exe - -Box,box.desktop.updateservice.exe,box local com service.exe,box edit.exe,boxsync.exe,boxui.exe,box edit,box sync,box,box.exe,box autoupdater,box local com server,boxeditfinderextension,box notes,box notes.exe,boxcryptor,boxcryptor.exe - -Brackets,brackets,brackets-node,brackets.exe - -WeBull,webull,webull.exe - -NWJS,nwjs helper,nw.exe,nwjs - -MongoDB,mongodb compass helper,mongodb compass community helper,mongodb compass,mongod,mongodbcompass.exe,mongodbcompassbeta.exe,mongodb compass community - -Signal,signal,signal.exe,signal helper (renderer) - -Code,code - insiders helper (renderer),code helper (renderer),code - insiders.exe,code helper,code - insiders helper,code.exe - -Pulse SMS,pulse sms,pulse sms.exe - -Postman,postman,postman.exe,postmancanary,postmancanary.exe - -Google Drive,backup and sync,googledrivesync.exe,google~1.exe,googledrivefs.exe,google drive file stream - -Airmail,airmail,airmail beta,airmail 3 - -AIOMoji,aiomoji,aiomoji helper (renderer) - -AirTame,airtame,airtame.exe - -Visual Studio,visualstudio,vs_installershell.exe,vs_setup_bootstrapper.exe,vshost-clr2.exe,vshost32-clr2.exe,vsixautoupdate.exe - -Viber,viber,viber.exe - -Tabnine,tabnine - -Wunderlist,wunderlist,wunderlisthelper,wunderlist.exe,wundermail.client.exe - -Github Desktop,github desktop,githubdesktop.exe - -Quicken,quickbooks,quicken,quicken 2016,quicken 2017,quicken willmaker plus 2019 - -Deezer,deezer,deezer.exe - -Tidal,tidal,tidal helper - -Atom,atom,atom helper,atom beta,atom nightly helper,atom.exe - -JetBrains,jetbrains-toolbox,jetbrains-toolbox.exe - -Kindle,kindle,kindle.exe,kindlepreviewerupdater - -Fantastical,fantastical,fantastical 2 - -Zoho,zoho workdrive,zohodocs.exe,zoho meeting - -DropBox,dropboxupdate.exe,dropbox,dropbox.exe,dropbox109,dropboxclient_86.4.146.exe,dropboxmacupdate - -Sublime,sublime text,sublime text 2,sublime_text.exe - -Twitch,twitchagent,twitch - -Evernote,evernote.exe,evernote,evernote preview.exe,evernotehelper,evernotenw.exe - -Plex,plex.exe,plex,plex media server.exe,plex media server,plexscripthost.exe,plex dlna server,plex dlna server.exe,plex media player,plex script host,plexmediaplayer.exe, - -Zoom,zoom.us,zoom.exe,zoomassistant,zoomphone - -Standard Notes,standard notes,standard notes.exe - -BitDefender,bdagentd,bdcoreissues,bdupddaemon,bdldaemon,productagentservice.exe,bdcloner.exe,bdservicehost.exe,bdvpnservice.exe,vsserv.exe,vulnerability.scan.exe - -Binance,binance,binance.exe - -BitTorrent,bittorrent,bittorrentie.exe,qbittorrent - -Blizzard Browser,blizzardbrowser,blizzardbrowser.exe - -BlueJeans,bluejeans,bluejeans media,bluejeans media worker,bluejeans.exe,bluejeansmenu,cephtmlengine helper,cephtmlengine.exe,cephtmlengine - -Android Emulator,bluestacks,bluestacks.exe,bluestacksinstaller.exe,hd-player.exe,memuheadless.exe,nemuheadless,nemuheadless.exe - -Bomgar,bomgar-rep,bomgar-rep.exe,bomgar-scc.exe - -Boom,boom 2,boom 3d - -Atomic Wallet,atomic wallet,atomic wallet.exe,atomic wallet helper - -Authy Desktop,authy desktop,authy desktop.exe - -Avast,avastbrowser.exe,avastbrowserupdate.exe,avastsvc.exe,avastui.exe - -AVG,avg cleaner,avgbrowser.exe,avgbrowserupdate.exe,avggmsd,avgsetupx.exe,avgsvc.exe,avgui.exe - -Avira,avira safe shopping.exe,avira.softwareupdater.servicehost.exe - -AWS,aws,aws-events,aws-iam-authenticator,aws-vault,awskinesistap.exe - -Baidu,baiduim,baidunetdisk.exe,baidunetdisk_mac,baidunetdiskhost.exe - -Balenaetcher,balenaetcher,balenaetcher helper (renderer),balenaetcher.exe - -Battle.Net,battle.net,battle.net.exe,agent.exe - -Lenovo IMController,lenovo.modern.imcontroller.pluginhost.device.exe,lenovo.modern.imcontroller.pluginhost.companionapp.exe,lenovo.modern.imcontroller.exe,lenovovantageservice.exe,tvsukernel.exe,lsbupdater.exe - -Weather Service,weatherservice_iosmac,weatherservice - -Bark,bark,bark.exe - -Tableau,tableau.exe,tableau,tabcrashreporter.exe,tableau prep builder,tableau prep builder.exe,tableau public,tableau reader - -4K Video Downloader,4kvideodownloader,4kvideodownloader.exe - -Paprika Recipe Manager,paprika recipe manager,paprika recipe manager 3 - -Epic Games,epicgameslauncher.exe,fortniteclient-mac-shipping,epicgameslauncher-mac-shipping,fortniteclient-win64-shipping.exe - -ExpressVPN,expressvpnd,expressvpnd.exe - -Bria,bria 5,bria4.exe - -BrowserCore,browsercore,browsercore32.exe,browsercore64.exe - -BurpSuite,burpsuitecommunity.exe,burpsuitepro.exe - -BZTrans,bztrans_thread00,bztrans_thread01,bztrans_thread02,bztrans_thread03,bztrans_thread05,bztrans_thread06,bztransmit - -Caprine,caprine,caprine helper - -Carbon Copy,ccc stats service,carbon copy cloner - -CCleaner,ccleaner64.exe,ccloud,ccsetup563.exe,ccstudio.exe,ccsvchst.exe - -Citrix,citrix receiver updater,citrix viewer,citrix workspace,citrix workspace updater,citrixreceiverupdater.exe - -Civilization 6,civ6_exe,civ6_metal_exe - -CleanMy,cleanmydrive 2,cleanmymac,cleanmymac 3,cleanmymac 3 menu,cleanmymac x,cleanmymac x menu,cleanmymac x updater - -Clickup,clickup,clickup.exe - -Client,client,client.exe - -CLion,clion,clion64.exe - -ClipGrab,clipgrab,clipgrab.exe - -Cloud-Drive,cloud-backup-auto-updater,cloud-backup-auto-updater.exe,cloud-backup-daemon,cloud-backup-daemon.exe,cloud-backup-ui,cloud-backup-ui.exe,cloud-drive-auto-updater,cloud-drive-auto-updater.exe,cloud-drive-daemon,cloud-drive-daemon.exe,cloud-drive-ui,cloud-drive-ui.exe - -Communicator,communicator,communicator.exe - -Cubase,cubase le ai elements 9,cubase le ai elements 10 - -Curl,curl,curl.exe - -Cypress,cypress,cypress.exe - -Dart,dart,dart.exe - -DataGrip,datagrip,datagrip64.exe - -DirMgr,dirmngr,dirmngr.exe - -Dish Anywhere Player,dishanywhereplayer,dishanywhereplayer.exe - -Dreamweaver,dreamweaver,dreamweaver.exe - -DS Access Service,dsaccessservice,dsaccessservice.exe - -Duet,duet,duet.exe - -Eagle,eagle,eagle.exe - -Eclipse,eclipse-inst.exe,eclipse.exe,eclipsec.exe - -Egnyte,egnyte webedit,egnytedesktopsync,egnytedrive.exe,egnytedrivefs,egnytesyncservice - -Ekahau,ekahau pro (high dpi).exe,ekahau pro.exe,ekahau site survey.exe - -Elmedia,elmedia player,elmedia video player - -Emacs,emacs,emacs-26.3,emacs-x86_64-10_10,emacs-x86_64-10_14,emacs.exe - -Endnote,endnote x8,endnote x9 - -Enpass,enpass,enpass.exe - -Eternal,eternal,eternal.exe - -EU Download,eu4.exe,eudownload.exe,eudownloader.exe - -Eve,evelauncher,evelauncher.exe - -Evolution,evolution,evolution-addressbook-factory-subprocess,evolution-calendar-factory,evolution-calendar-factory-subprocess,evolution-source-registry - -Exercism,exercism,exercism.exe - -Exodus,exodus helper,exodus.exe - -F5 VPN,f5 vpn - -Facebook Gameroom,facebookgameroom.exe - -Fiddler,fiddler.exe,fiddler.webui - -Figma,figma,figma.exe - -Filemaker,filemaker pro 18 advanced,filemaker pro 18 advanced.exe,filemaker pro advanced,filemaker pro advanced.exe - -Filezilla,filezilla,filezilla server.exe,filezilla.exe,filezilla_3.45.1_win32_sponsored-setup.exe,filezilla_3.45.1_win64_sponsored-setup.exe,filezilla_3.46.1_win64_sponsored-setup.exe,filezilla_3.46.2_win32_sponsored-setup.exe,filezilla_3.46.2_win64_sponsored-setup.exe,filezilla_3.46.3_win64_sponsored-setup.exe,filezi~1.exe - -Final Draft,final draft 10,final draft 11 - -Find IT Server,finditserver,finditserver.exe - -Fing,fing.exe,fingagent.exe - -Fitbit,fitbit connect,fitbit connect menubar helper - -Flux,flux,flux.exe - -FM,fm,fm.exe,fmplugin.exe - -Forti VPN,fortitray.exe,forticlientagent - -Franz,franz,franz.exe - -Galaxy Client,galaxyclient.exe,galaxycommunication,galaxycommunication.exe,galaxyupdater,galaxyupdater.exe - -Gamebar,gamebar.exe,gamebarpresencewriter.exe - -Garmin,garmin express,garmin express service - -Go,go,go for gmail,go for instagram,go-agent,go.exe,goland,goland64.exe,goloader,goloader.exe - -Google Earth,google earth,googleearth.exe - -Google Play,google play music desktop player,google play music desktop player.exe - -Google Update,googleupdate.exe,googlesoftwareupdateagent - -Grambler,gramblr.exe,gramblr - -Grafana,grafana-server,grafana-server.exe - -GroupMe,groupme,groupmeuwa.exe - -GS-Server,gs-server,gs-server.exe - -Hamachi,hamachi-2-ui.exe,hamachi-2.exe - -Harvest,harvest,harvesterx64.exe - -Hearthstone,hearthstone,hearthstone.exe - -Helm,helm,helm-v2.13.1,helm.exe,helm2.14,helm3,helms3 - -Hola,hola-setup-core.exe - -HTTPd,httpd,httpd.exe - -iMazing,imazing,imazing mini,imazing.exe - -Insomnia,insomnia,insomnia helper,insomnia.exe - -Insync,insync,insync.exe,insyncupgrade,insyncupgrade.exe - -iPass,ipass,ipass open mobile - -IPVanish VPN,ipvanish vpn - -iVPN,ivpn agent - -Join Me,join.me,join.me.exe - -JP Naver,jp.naver.line.mac.mediaservice,jp.naver.line.mac.seekpreviewservice - -Jump,jump desktop,jumpconnect,jumpconnect.exe - -JX,jx,jxbrowser,jxbrowser-chromium.exe - -Kakao,kakaotalk,kakaotalk.exe - -Kasey,kaseya.adminendpoint,kaseya.agentendpoint,kaseyaendpoint.exe,kaseyaliveconnect - -kbfs,kbfs,kbfsdokan.exe - -Keybase,keybase,keybase.exe - -Kitematic,kitematic (beta) helper,kitematic.exe - -Kobo,kobo,kobo.exe - -Kodi,kodi,kodi.exe - -Komodo,komodo,komodo-bin,komodo.exe - -Kube,kubectl,kubectl.1.13,kubectl.1.14 - -LAClient,laclient,laclient.exe - -League Client,leagueclient,leagueclient.exe - -Leap Frog,leapd,leapfrog connect 2,leapfrogconnect,leapfrogconnect2.exe - -Lens,lens,lens helper (renderer) - -LGHub,lghub_agent,lghub_agent.exe,lghub_updater,lghub_updater.exe - -Line,line,line 6 updater,line.exe,lineapp.exe,lineupdater.exe - -LMI,lmi_instantchat_srv.exe,lmi_rescue.exe,lmi_rescue_srv.exe,lmiignition.exe - -Loader,loader,loader.exe - -Logi,logi_analytics_client,logi_analytics_client.exe - -LogMeIn,logmein client,logmein hamachi menubar,logmein.exe,support-logmeinrescue,support-logmeinrescueinstantchat - -LogTransport,logtransport2,logtransport2.exe - -Loom,loom,loom.exe - -Mahjong,mahjong deluxe free.exe,mahjong.exe - -MailPlane,mailplane,mailplane 3 - -Maps,maps,maps.exe - -Masvc,masvc,masvc.exe - -Matlab,matlab,matlab.exe,matlabwindow,matlabwindow.exe - -McAfee,mcafee safe connect.exe,mcafeeendpointproductremoval_19.11.0.64.exe,mcscript_inuse.exe,mcshield.exe,mcuicnt.exe,mcupdate.exe,mcupdatemgr.exe - -Mega,megaclient,megasync.exe - -Menutab,menutab for facebook,menutab pro for facebook - -Messenger,messenger,messenger.exe - -Mezzanine,mezzanine,mezzanine.exe - -Microsoft Mashup,microsoft.mashup.container.netfx40.exe,microsoft.mashup.container.netfx45.exe - -MightyText,mightytext,mightytext.exe - -Minecraft,minecraftserver.exe,minecrafttexture.exe,minecrafttexture.zip.exe - -Minikube,minikube,minikube.exe - -Miro,miro,miro - formerly realtimeboard,miro - formerly realtimeboard.exe - -Movavi,movavi photo editor free 1,movavi screen recorder 10,movavi screen recorder studio 10,movavi video converter 19 premium,movavi video converter 20 premium,movavistatistics,movavistatistics.exe - -MusixMatch,musixmatch,musixmatch.exe - -MyHarmony,myharmony,myharmony helper eh,myharmony.exe - -MySQL,mysql,mysqldump,mysqlworkbench,mysqlworkbench.exe - -Neo4j,neo4j desktop,neoloadgui.exe - -Neon,neon,neon.exe - -Nessus,nessusd,nessusd.exe - -Net SVC,net_svc,net_svc.exe - -NetBeans,netbeans.exe,netbeans64.exe - -NetSession,netsession_mac - -Nexi,nexi helper,nexi.exe - -NextCloud,nextcloud,nextcloud.exe - -NGrok,ngrok,ngrok.exe - -Node,node,node-webkit,nodedv3.exe - -Norton VPN,norton secure vpn,norton secure vpn.exe - -Nvidia Telemetry,nvalt,nvbackend.exe,nvcontainer.exe,nvdisplay.container.exe,nvidia web helper.exe,nvprofileupdater64.exe,nvtelemetrycontainer.exe - -NXClient,nxclient,nxclient.bin,nxon.exe,nxplayer - -OnVue,onvue,onvue.exe - -OpenConnect,openconnect,openconnect-gui.exe - -OS Buddy,osbuddy64(1).exe,osbuddy64.exe - -OVF Tool,ovftool,ovftool.exe - -OwnCloud,owncloud,owncloud.exe - -Oxygen Author,oxygenauthor19.0.exe,oxygenauthor19.1.exe,oxygenauthor20.1.exe - -Packet Tracer,packettracer6.exe,packettracer7,packettracer7.exe - -Pandora,pandora,pandora.exe - -PANGPS,pangpa.exe,pangps,pangps.exe - -Paradox,paradox launcher,paradox launcher.exe - -Perl,perl,perl5.18,perl.exe - -PHP,php,php-fpm,php-win.exe,php.exe,phpstorm,phpstorm.exe,phpstorm64.exe - -PingID,pingid.exe,pingsender,pingsender.exe - -Plantronics,plantronics hub,plthub.exe - -Plugin-Container,plugin-container,plugin-container.exe,plugin_host,plugin_host.exe,pluginhost.exe - -Pokemon,pokemon trading card game online,pokemon trading card game online.exe,pokemonshowdown.exe - -Poker Stars,pokerstars,pokerstars.exe,pokerstars.net - -Polar Bookshelf,polar bookshelf helper,polar bookshelf.exe - -Popcorn Time,popcorn-time.exe,popcorntime - -PostBox,postbox,postbox-bin - -PRTG,prtg probe.exe,prtg server.exe,prtgdesktop.exe - -Psiphon,psiphon-tunnel-core.exe,psiphon3-meek.exe - -QQ,qq,qq.exe,qqapp.exe,qqbrowser.exe,qqmusic.exe - -Quip,quip,quip.exe,quiplash - -Rakuten,rakuten ebates cash back button,rakuten express cash back extensions - -Rambox,rambox helper,rambox.exe,ramboxpro - -REGUI,regui1.0,regui4.0 - -RekordBox,rekordbox,rekordbox.exe - -Remote PC,remotepchelper,remotepcservice.exe,remotepcsuite,remotepcview - -Remoting Host,remoting_host.exe,remoting_me2me_host - -Republic Anywhere,republic anywhere,republic anywhere.exe - -RescueTime,rescuetime,rescuetime.exe - -Ring Central,ring.exe,ringcentral meetings,ringcentralmeetings.exe - -Riot,riot,riotclientservices,riotclientservices.exe,riotclientux,riotclientux.exe - -Roblox,robloxplayer,robloxplayerbeta.exe,robloxplayerlauncher.exe,robloxstudio,robloxstudiobeta.exe - -RoboForm,robo3t.exe,roboform,roboform-extension,roboformsafariextensionservice,roboformservice - -Rocket Chat,rocket.chat,rocket.chat.exe - -RP VOIP,rpvoip,rpvoip.exe - -RuneLite,runelite,runelite.exe - -Samsung Magician,samsungmagician.exe,samsungportablessd,samsungportablessd.exe - -Sandisk,sandisksecureaccessv3.01_win.exe,sandisksecureaccessv3.1_win.exe,sandisksecureaccessv3_mac,sandisksecureaccessv3_win.exe - -Shadow,shadow,shadow beta,shadow tactics,shadow.exe - -Shift,shift,shift.exe,shiftit - -Signiant,signiantclient.exe,signiantuser.exe - -Sketch,sketch,sketchpacks,sketchup,sketchup.exe - -Skitch,skitch,skitch.exe - -Sky,sky,sky go - -Sling,slingplayer desktop.exe,slingplayer.exe,slingplayerforweb helper eh,slingplayerforweb.exe - -Sniper,sniper ops 3d,sniper.png - -SoapUI,soapui-5.4.0-eb.exe,soapui-5.4.0.exe,soapui-5.5.0.exe - -Sonos,sonos,sonos.exe - -SpiderOakOne,spideroakone,srstreamerdaemon - -SplashTop,splashtop for rmm,splashtop personal - -Splice,splice,splice helper,splice.exe,splice.helper.exe - -Splunk,splunkd,splunkd.exe - -SQL Developer,sqldeveloper.exe,sqldeveloper64.exe,sqldeveloper64w.exe - -SRT Helper,srt_helper,srt_helper.exe - -Station,station,station helper (renderer),station.exe - -Steam,steam.exe,steam_osx - -Stellaris,stellaris,stellaris.exe - -Sunloginclient,sunloginclient,sunloginclient.exe - -SVN,svn,svn.exe - -Sync Thing,syncthing,syncthing.exe - -Synology,synology chat,synology chat.exe,synology-note-station.exe,synologysurveillancestationclient.exe - -TableTop Simulator,tabletop simulator,tabletop simulator.exe - -Tab Proto Srv,tabprotosrv,tabprotosrv.exe - -Tanium,taniumclient,taniumclient.exe - -TE Agent,te-agent,te-agent.exe,te-updater,te-user-agent - -Team Viewer,teamviewer,teamviewer.exe,teamviewerqs - -Telegram,telegram,telegram.exe - -Terraform,terraform,terraform-0.11.14,terraform-0.11.7,terraform-0.12.16,terraform-provider-aws,terraform-provider-azuread_v0.7.0_x4,terraform-provider-azurerm_v1.36.1_x4,terraform-provider-azurerm_v1.37.0_x4,terraform-provider-azurerm_v1.38.0_x4,terraform-provider-azurerm_v1.39.0_x4,terraform-provider-azurerm_v1.40.0_x4,terraform-provider-azurerm_v1.41.0_x4,terraform-provider-datadog_v2.5.0_x4,terraform-provider-dme,terraform-provider-docker,terraform-provider-google_v2.20.1_x4,terraform-provider-google_v3.0.0_x5,terraform-provider-google_v3.3.0_x5,terraform-provider-helm_v0.10.4_x4,terraform-provider-kubernetes_v1.10.0_x4,terraform-provider-kubernetes_v1.7.0_x4,terraform-provider-kubernetes_v1.8.1_x4,terraform-provider-kubernetes_v1.9.0_x4,terraform-provider-openstack_v1.25.0_x4,terraform-provider-pagerduty_v1.4.2_x4,terraform-provider-sl,terraform-provider-terraform_v1.0.1_x4,terraform-provider-terraform_v1.0.2_x4,terraform-provider-vault_v2.5.0_x4,terraform-provider-vault_v2.7.0_x4,terraform-provider-vsphere_v1.13.0_x4,terraform-provider-vsphere_v1.14.0_x4,terraform0.11.14,terraform0.12.16,terraform_0.11.14,terraform_0.12.16,terraform_8_7 - -TET,tet-main.exe,tet_controller.exe - -Text Editor,texteditor 1.1.exe,texteditor 1.2.exe - -The Jackbox Party Pack,the jackbox party pack 3.exe,the jackbox party pack 5.exe,the jackbox party pack 6,the jackbox party pack 6.exe - -Things,things,things3 - -TI Connect,ti connect ce.exe,ti-nspire cx student software.exe - -Todoist,todoist,todoist.exe,todoist.helper.exe,todoist.universal.exe,todoisttoday - -Toggle Desktop,toggldesktop,toggldesktop.exe - -TomTom,tomtom home,tomtom mydrive connect,tomtom mysports connect.exe,tomtom sports connect,tomtomhome.exe,tomtomhomeruntime.exe - -Toolkit,toolkit,toolkit.exe - -Tor,tor (Generic DMZ Traffic),tor-0.3.5.8-darwin-brave-0,tor-0.3.5.8-win32-brave-0,tor.exe,tor.real - -Trac SRV Wrapper,tracsrvwrapper,tracsrvwrapper.exe - -Trainer Road,trainerroad helper,trainerroad.exe - -Tresorit,tresorit,tresorit.exe - -Trillian,trillian,trillian.exe - -True Image,true_image,trueimage.exe,trueimaged,trueimagemonitor.exe - -Tune In,tunein,tunein.exe - -Typora,typora,typora.exe - -UI Path,uipath.service.host.exe,uipath.service.userhost.exe - -Unity,unity,unity hub,unitybugreporter - -Ultrasurf,u.exe,uran.exe - -uTorrent,utorrent web,utorrent.exe,utorrentie.exe - -VNC Viewer,vnc-viewer-6.0.2-windows-64bit.exe,vnc-viewer-6.0.3-windows-64bit.exe,vnc-viewer-6.1.0-windows-64bit.exe,vnc-viewer-6.1.1-windows-64bit.exe,vnc-viewer-6.18.907-windows-64bit.exe,vnc-viewer-6.19.325-windows-32bit.exe,vnclicensewiz,vncserver,vncserver.exe,vncviewer,vncviewer.exe - -VPN,vpn,vpn.exe - -VSD Viewer,vsd viewer,vsd viewer pro - -Vypr VPN,vyprvpn.exe,vyprvpnservice.exe - -WalkMe,walkme,walkme.exe,walkmeextension - -WD Discovery,wd discovery,wd discovery.exe,wd sync service,wdsync,wdsync.exe - -Weather Dock Free,weather dock free,weather widget free - -Weatherman,weatherman,weatherman lite - -WebShots,webshots,webshots.exe - -WebWorks,webworks.epublisherdesigner.exe,webworks.epublisherexpress.exe - -WeChat,wechat.exe,wechatapp.exe,wechatstore.exe,wechatwebdevtools helper - -Wget,wget,wget.exe,wgettoo.exe - -WinZip Smart Monitor,winzip smart monitor service.exe,winzipsmartmonitor.exe - -Wire,wire,wire helper (renderer) - -WorkBench,workbench.exe,workbench.service.exe - -WorkFlowy,workflowy,workflowy.exe - -Workspaces,workspaceinstall,workspaceinstall_el,workspaces,workspaces.exe - -World of Warcraft,world of warcraft,world of warcraft classic,wow.exe,wowclassic.exe - -X-Lite,x-lite,x-lite.exe - -XNIP,xnip,xniphelper - -Yousician,yousician,yousician launcher - -Youtube Download,youtube download,youtubedownloaderhd.exe - -Zeplin,zeplin,zeplin.exe - -Zwift,zwiftapp,zwiftlauncher-osx - -PBI Desktop,pbidesktop.exe,microsoft.powerbi.enterprisegateway.exe - -Rakuten,rakuten cash back button,rakuten ebates cash back button - -Avid Link,avid link,avid link.exe - -Prezi,prezi.next.exe,prezi.classic.exe diff --git a/resources/domain_indicators.json.gz b/resources/domain_indicators.json.gz deleted file mode 100644 index 0f33cbc1..00000000 Binary files a/resources/domain_indicators.json.gz and /dev/null differ diff --git a/resources/equivalence-classes/eqv_class_ip.json.gz b/resources/equivalence-classes/eqv_class_ip.json.gz deleted file mode 100644 index 321d665c..00000000 Binary files a/resources/equivalence-classes/eqv_class_ip.json.gz and /dev/null differ diff --git a/resources/equivalence-classes/eqv_class_ip_as.json.gz b/resources/equivalence-classes/eqv_class_ip_as.json.gz deleted file mode 100644 index 7a81414a..00000000 Binary files a/resources/equivalence-classes/eqv_class_ip_as.json.gz and /dev/null differ diff --git a/resources/equivalence-classes/eqv_class_port.json.gz b/resources/equivalence-classes/eqv_class_port.json.gz deleted file mode 100644 index 693c3c25..00000000 Binary files a/resources/equivalence-classes/eqv_class_port.json.gz and /dev/null differ diff --git a/resources/equivalence-classes/eqv_class_port_applications.json.gz b/resources/equivalence-classes/eqv_class_port_applications.json.gz deleted file mode 100644 index fbe7d8bb..00000000 Binary files a/resources/equivalence-classes/eqv_class_port_applications.json.gz and /dev/null differ diff --git a/resources/equivalence-classes/eqv_class_sni.json.gz b/resources/equivalence-classes/eqv_class_sni.json.gz deleted file mode 100644 index 1f09ff40..00000000 Binary files a/resources/equivalence-classes/eqv_class_sni.json.gz and /dev/null differ diff --git a/resources/equivalence-classes/eqv_class_str_repr.json.gz b/resources/equivalence-classes/eqv_class_str_repr.json.gz deleted file mode 100644 index 20e70821..00000000 Binary files a/resources/equivalence-classes/eqv_class_str_repr.json.gz and /dev/null differ diff --git a/resources/fingerprint-db-http-os.json.gz b/resources/fingerprint-db-http-os.json.gz deleted file mode 100644 index f9bdf6dc..00000000 Binary files a/resources/fingerprint-db-http-os.json.gz and /dev/null differ diff --git a/resources/fingerprint-db-tcp-os.json.gz b/resources/fingerprint-db-tcp-os.json.gz deleted file mode 100644 index 13948ba6..00000000 Binary files a/resources/fingerprint-db-tcp-os.json.gz and /dev/null differ diff --git a/resources/fingerprint-db-tls-os.json.gz b/resources/fingerprint-db-tls-os.json.gz deleted file mode 100644 index fc3b0057..00000000 Binary files a/resources/fingerprint-db-tls-os.json.gz and /dev/null differ diff --git a/resources/fingerprint_db.json.gz b/resources/fingerprint_db.json.gz deleted file mode 100644 index bf84acd7..00000000 Binary files a/resources/fingerprint_db.json.gz and /dev/null differ diff --git a/resources/fingerprint_db_tcp.json.gz b/resources/fingerprint_db_tcp.json.gz deleted file mode 100644 index f32d75f8..00000000 Binary files a/resources/fingerprint_db_tcp.json.gz and /dev/null differ diff --git a/resources/fp_prevalence_tls.txt.gz b/resources/fp_prevalence_tls.txt.gz deleted file mode 100644 index 7bb802d9..00000000 Binary files a/resources/fp_prevalence_tls.txt.gz and /dev/null differ diff --git a/resources/implementation_date_cs.json.gz b/resources/implementation_date_cs.json.gz deleted file mode 100644 index ad763356..00000000 Binary files a/resources/implementation_date_cs.json.gz and /dev/null differ diff --git a/resources/implementation_date_ext.json.gz b/resources/implementation_date_ext.json.gz deleted file mode 100644 index 6c1aa8fe..00000000 Binary files a/resources/implementation_date_ext.json.gz and /dev/null differ diff --git a/resources/os_detection_model.json b/resources/os_detection_model.json deleted file mode 100644 index d7d8ba4f..00000000 --- a/resources/os_detection_model.json +++ /dev/null @@ -1 +0,0 @@ -{"coefficients": [[14357.981265397053, 34.483334094386635, 1072793.2986286941, 28810.934864684572, 1156.0057139577077, 24.078302713329666, 1762.1794686544738, 421.31490228736885, 3.5507966647678706, -245.3044979581738, -5.9366379820247825, -491.0314153136009, -39.25685400642829, -32.721000157369595, -0.23755003532837793, -29.555446113912307, -221.9666375182549, -234.40483076823836, -37.42428148460382, -30.151756507755675, -2.1654776877012374, -9.75952672927298, -0.11502715335070289, -1.0860253249169067, -39.38826298205169, -32.74481631725986, -3.8798379906729386, -3.055944436083129, -0.40704458033929414, -0.5242206569683315, -1.5353358479425236, -9.635322258982042, -0.2930668605860715, -0.07477023027899847, 0.0, -0.09585112523110254, -0.05777258589969304, -0.041518052448185426, -0.17683682615833804, -0.44968852893357303, -0.05901987100140884, -0.2527162283953195, -80.51909270086507, -0.1422415148481628, -1.210236681170051, -13.108176635095246, -0.2189880768201363, -0.1117406235438684, -0.1602214508827149, -0.1542440378438748, -0.3686348857899478, 0.0, 0.0, 31.343512543554667, -42.005783827848276, 6811.721429305974, 196.52083643958497, 44.36078343402808, -10.0735816349022, -2278.861264412249, -3.874335504446785, -10.211603215651483, -96.9635042638649, -0.15066317352583522, 348.5638642607587, -3.1833424400488464, -0.0015786789534859228, 975.3207658310146, -1063.0560356448193, -316.0153679191537, 141.68131043314116, -8.988853631892132, 9.981387650452858, -3.234028038207889, 0.007214480584094491, 0.16396351716305416, -66.49100223666461, -243.55215385239717, -8.018236647338089, -5.349306520091634, -0.7039502906298668, -0.522324603049397, 0.05328460817946532, 2.041450617889709, -196.89286175973916, -111.403040347977, 0.0, -78.94548502233387, 639.8973141370416, -22.287969951232895, -2363.1006552428325, -0.03306598561239826, -26.726451216990334, -0.0520126099737894, -352.722217895356, -0.21744162866969588, -1.7432028046996328, -1.3693250085865833, -0.15019677256117042, -0.0639796810789586, -0.04552270625671306, -1.21849368014978, -0.558680228689285, -3.0874490303510376, 0.0, -0.27551613826529797, 0.0, -38.392472885326335, -24.63177381165174, -0.9235834700478116, -19.379847119778386, -22.76812685016357, -0.03286539918119695, -30.5196820144065, -34.81185006828961, -47.273316493720934, -21.330017597397433, -2.4636648717700615, -0.019144991857936156, -13.852086457140523, -24.253759764943837, -4.632517715559477, -0.5309592726619541, -4.304346915262951, -9.304439772778217, -0.9123664328317537, -0.013393811398248042, -0.007074004830127027, -0.12394633412685986, -2.1895062434668384, -0.004533368106157663, -0.15461144139479532, -0.04555525985053996, -0.04990119543260035, -0.07783943732659826, -1.4105649064727162, -0.13588844446545736, -0.09108524435561795, 0.0, -0.06803220862077938, 0.0, -0.03412899296187095, -0.42278925482053814, -2.2535236203832882, -0.10345013393284835, -1.118654309163402, 0.0, -0.08046848844696092, -10.467205262697902, -0.21356488580235328, -0.022347665375289233, -0.012140352055348917, -0.014809428636702907, -0.11659538342774896, -0.607081991354028, -115.73938873161376], [-11.833051147264523, 29.107645499371305, -1131595.9019465505, 16060.54250912863, 1278.5241010596328, 154.34430843676117, 1497.0694616104827, 4264.883778199455, 1.767817449064536, -55.65678512532406, -1.7764875560398024, -111.42229213481166, -12.295453292474201, -7.421605313990283, -0.05994924092959064, -8.039359941169849, -51.73526737836923, -53.301446470119835, -9.199696608246136, -7.776173083751742, -0.5224514340989749, -2.472736366550842, -0.029864583400517532, -0.2985186213377785, -11.210400551693647, -8.29041913027896, -0.9933977140979012, -0.7773726203721099, -0.10470840274988487, -0.1335865350692438, -0.41112944443693417, -2.499907958486807, -0.08711790143040837, -0.02222366451985693, 0.0, -0.02850563945371873, -0.017183980687492256, -0.012347444946306681, -0.05282881220273585, -0.1360690827045042, -0.017656791897301835, -0.0772142402136851, -24.04017404155663, -0.043531589248625345, -0.3710326695892629, -4.0192781004946045, -0.06717280810486816, -0.03427369482146786, -0.049144463243514874, -0.0460886604769424, -0.11012719225878306, 0.0, 0.0, -1.7679944764394726, -11.280214816634196, -3657.1044317562696, -868.3373805297686, -20.466123655118874, -2.481099371433939, -527.2112179325932, -0.5531033169114441, 16.377119168207262, -34.862664198444854, -0.08515544068802848, -27.1589393741131, -7.838757166155265, -0.30856784488172484, -323.52571018834715, -754.0158693009472, -116.41441218377925, -387.70611973575143, -5.066068011272758, -3.450096135744998, -46.94226744493387, -0.15827129434656573, -0.4676614732607472, 17.018749970474573, -229.3954942406779, -6.2333129011073884, -3.4802463904435084, -0.5881593744156886, -0.7240757390565993, -1.6857553490776642, -8.316004433442028, -55.8318509857412, 1.844910317290317, 0.0, 39.5324645511655, -205.9781146050281, -5.400035309307201, 11673.745216538595, -0.009826611676898172, 115.69066870700554, 0.00526485831243362, -163.78497683315015, 0.05861034759419492, -1.4000674628649619, -3.269442386275468, -0.02288659341342258, -0.00989662100697351, -0.040308951923436254, -0.521155837730358, -0.16603688443822678, -0.9191276070558415, 0.0, -0.07473054248941584, 0.0, -11.430571838061214, -6.978229231832021, -0.21459791424377822, -4.996719688178174, -6.349090763766971, -0.009601002783366067, -9.043737340223311, -10.224174776496646, -13.899358010126639, -6.25769599236593, -0.7421701502847831, -0.005677455411594254, -4.145617075653642, -7.205484711228721, -1.3730853168898767, -0.15733500362262892, -1.273722973609818, -2.7570923198895487, -0.270966933433242, -0.003994903432365417, -0.0021022979829940806, -0.03656070790811483, -0.6495494232489396, -0.0013509316169673456, -0.04603816552384781, -0.013880489962052522, -0.015178948363315002, -0.023854558341214582, -0.41786666237365566, -0.04043551632585157, -0.027103070857773828, 0.0, -0.020244487764460438, 0.0, -0.010155816253239013, -0.1261181840393497, -0.6671932129651362, -0.030862229287165116, -0.3334447811702509, 0.0, -0.023977326160318103, -3.1285338828513525, -0.06341925782429594, -0.006660967857178922, -0.0036641224557917838, -0.004434438728919346, -0.034854593214415815, -0.18109277243826574, -34.25791508041167], [19812.919588055935, 30.4684608942591, 1042249.8661052905, 14146.859929898084, 461.3722946268374, 107.2538692150065, 686.5888691554514, 3031.260030858948, 5.351876720244417, -1228.2806703565616, -134.83175089841725, -2458.791458987841, -283.23592207792456, -163.77843505263274, -1.4456475891175575, -205.80317839428898, -1190.5015109147082, -1179.6336218290637, -232.09445679016133, -195.25785061079353, -12.51280831046842, -62.997403200912956, -0.7430339394292587, -6.815114942349989, -250.68751846570163, -229.05706783551798, -24.29499991950732, -18.682352557798808, -2.6054947851748516, -3.3748369730095877, -10.232022925965545, -57.417932860836004, -9.024101343850917, -2.3040595743337082, 0.0, -2.919405356373328, -1.7536000484519103, -1.2642115105262721, -4.712738622352076, -9.409225654105791, -1.5367891478233884, -4.096813975819015, -2192.769382057776, -2.254929837700773, -18.22072700918116, -201.1202401765195, -3.267241235432797, -1.6709298522726808, -2.403644699023064, -4.097189811374157, -9.824197264506195, 0.0, 0.0, -17.240123735751062, 10569.386002725954, -6294.066220346251, 126.9100182817134, -18.078357169679187, 248.5864059961865, 12545.754896668628, 13.712916900160987, -11.513241898673062, -1840.6854674203494, -0.5624301906923671, 22.987400308233255, 191.12092147945089, 0.49607945435202755, -612.2861952575877, 1232.5237268359426, 206.58457514361126, -215.06837647290334, 5.139686557642961, 6.878813623826261, 6.379843542108007, 0.036430402916155805, -0.17553902238762273, -17.90604645970802, 364.43375347022106, 9.885434182482621, 5.177780314011561, 0.7235510882324748, 0.27156896698274974, -0.8758731842706818, -3.790514102877676, 302.2076088354517, 93.09698404810152, 0.0, 12.489818087142464, -623.8411178708437, 19.052255795581008, -13114.360515015587, -0.7480796705359276, -119.08758817100583, -0.7141460674342736, -84.24765943956831, -1.137253972562319, -9.479578599624757, -2.423939152813966, -0.1856854695811929, -0.3753170576803797, -0.6000034601649061, 5.395350630369992, -16.79180868318494, -88.77784573661022, 0.0, 40.22214328660353, 0.0, -958.1303386795453, 1532.4052948070214, 354.7554860332497, 3972.353185771044, 1933.1911207742073, 1.0886607852827896, -803.8151400963555, -1015.3398457718719, -1388.4692013087304, -623.6519293251351, -52.053287403524195, -0.38777774801800075, -311.87824814314774, -631.252166970076, -93.37945284935752, -13.896761873190185, -116.19992786483547, -242.77903798820452, -23.616433056004947, -0.27395567590433934, -0.18521717465888318, -3.8050811842619163, -50.27139134233255, -0.12171674655827035, -3.798696527677406, -0.8189786770175231, -0.9694380045654051, -1.2852085717856097, -36.90646941946464, -4.2052349253702, -2.817885457255688, 0.0, -2.104253964371609, 0.0, -1.0557533234378307, -11.570615430446864, -58.807920591238315, -2.8566858844137615, -31.539578523942136, 0.0, -1.7150402056223983, -250.36300612325826, -5.845566120347736, -0.5189642028090216, -0.2614002463165661, -0.3434661657798059, -2.983131592638576, -16.61421660228579, -3330.9494881256464], [-18.330258468807767, -0.07281525756622649, -606.330755594076, -52.828659036093164, -1.9803908243651873, -0.1657316848651474, -3.0309949050735634, -7.120842055666907, -0.009249360270425755, 3089.0267170826596, -16.040118328388296, 6178.6887465231175, -77.83783978834066, 411.88606045154893, 1.867690520730525, 115.49315997596722, 2438.9733788737185, 2716.7400804467807, 321.9202124746317, 203.99844430996833, 21.19390309147542, 72.7191532364467, 0.7504129005924001, 3.84463710566139, 60.877809778570274, 226.517139382531, 27.295920129194755, 21.970354949514856, 2.5480738572981663, 3.155076978974556, 7.49116830503842, 50.713952009446565, -0.14244787200094566, -0.03633620448572934, 0.0, -0.04660988524584063, -0.02809877062053638, -0.02018907510526168, -0.08633409251984471, -0.22226537958019374, -0.028858424800575343, -0.12464512734861131, -39.25505567546808, -0.07059823947029507, -0.5996758753545873, -6.459591142219211, -0.10892158843105262, -0.05554815723773678, -0.07962677696126333, -0.0753215431910502, -0.17997245837998643, 0.0, 0.0, -3.15151043479283, -33.02910336107543, -10068.562033495784, -1741.8900140772512, -12.145153927249524, -3.257599452391029, -5.496408028553515, -1.0713027061298344, -18.610337807185946, -1801.6228854314083, -0.40175442683135926, -1023.6120574796772, -27.733246777235767, -0.7498278837643065, -958.3610736591745, -629.0523039145047, -204.18652377238877, -492.4053244529327, -15.531038464847102, -9.766950168664284, -90.46899264319235, -0.4838387381538439, -1.8867540872511612, -404.3068148265568, -513.1244884792956, -24.586483716807745, -14.907917059321038, -2.606076925497548, -3.267660068957462, -8.488610148494946, -43.16902811333397, -60.90492281347199, -119.80538168429858, 0.0, -87.44127912084933, -667.5525940292698, -38.77016210480345, -6306.811818701539, -0.05243849492161187, -78.65948674607287, -0.23044962298686572, -27.510351806901948, -0.4361772074292812, -5.026311363164823, -26.218304710794822, -0.2811317571870756, -0.15068688234258026, -0.2724181932857629, -4.5368516111962105, -0.2725096213770479, -1.4999558609916832, 0.0, -0.5198212305549874, 0.0, -108.28268904451927, -83.15631443302925, -1.2442727171422894, -12.506326672919288, -42.52029425853965, -0.0667304165436329, -67.02256707337486, -29.857284360473287, -39.56191203947758, -18.877119782985975, -11.1906787785456, -0.10496607116091375, -50.631456910959294, -72.21653225319506, -9.691500314157995, -0.7947958231037878, -8.91540256083177, -21.708677284608175, -2.220427234236524, -0.07579261237243534, -0.016576098586251278, -0.09215053822982484, -6.093176946638596, -0.004596164003139552, -0.32908366137239053, -0.15777137422766882, -0.17508115045719466, -0.3017152964787087, -3.720033724655952, -0.0661711443837162, -0.04436392040474492, 0.0, -0.03360643007039674, 0.0, -0.01662028972468808, -0.20597831402240813, -2.5967208394386407, -0.05402964128296596, -0.5450726749161511, 0.0, -0.14757601024369416, -5.089713489812623, -0.13736353096788934, -0.035396024913411, -0.07301583177415485, -0.027919255287607418, -0.05704253660035473, -0.29576372537080037, -59.213745718261116], [-4.0858759026236235, -0.016011097512638846, -134.350806675844, -11.565104914562117, -0.4388011404469637, -0.03599922779184489, -0.6635804807934671, -0.962295022662847, -0.0020193972325830566, 12.104675561661368, -0.667747674822346, 24.210650375511243, -3.3673596556929506, 1.6156662669423254, 0.0017945272425239022, -0.9162221619459521, 8.662863992253483, 11.225326455695837, 0.6002479836184224, -0.061296610711082486, 0.05425474790858267, 0.04330791874833313, -0.0005959735250497338, -0.03385829310869457, -1.6716638099599832, 0.07836604223963192, 0.0026013428000605035, 0.010729642165304917, -0.0023375666144466968, -0.004406182832469488, -0.030486537271476353, -0.06965876388437552, -0.031754837135692486, -0.008102491423431885, 0.0, -0.010388124119885687, -0.006261398562436011, -0.0044997266131297856, -0.01923566746468144, -0.04964397895164499, -0.006429457023907598, -0.028329312197912324, -8.760389645495575, -0.015932316631168175, -0.1359558466962277, -1.4758386409278679, -0.02458447010602733, -0.012545199802195085, -0.01798983879380516, -0.01678159471574278, -0.04009876354931299, 0.0, 0.0, 0.03221650790553981, -1.2869731538340392, -66.58551309239482, 8.059864804775595, 0.13864760470085188, -0.03492913612478218, -1.2304323780477204, 0.01301319902119915, 235.5790232864566, 147532.72497802108, 73.64128530270597, 27.37431033416458, 0.004323783900469239, 0.0065459148261587516, -5.135761693802607, -8.070818337429383, -2.6575541564169294, 10.743193144461763, 0.5126995865184601, -0.05190908149108042, 1.9740328157048168, 0.0034598267192389822, 0.005655663404251976, 1.454608911995179, 2.7977764679264077, 0.22149545103882412, 0.10818364186145782, 0.013566555213679882, 0.01759981258604022, 0.04158292623206912, 0.002419051951527853, -0.6812565883221343, -0.6741353977243703, 0.0, -0.4267145904271051, -4.417643710167571, -0.15889622944589296, 17.742236610210156, -0.0037813368438848393, -0.09547572266537929, 0.0003415307763581316, -3.0857822801260766, -0.005273742136590967, -0.06012665526383805, -0.19745618025757491, -0.003914605575297914, -0.002248343838776845, -0.004075186322034779, -0.023649724880549748, -0.06055300176427307, -0.3350919901841014, 0.0, -0.027929076615861907, 0.0, -4.376346109126079, -2.63230543453353, -0.07799822125651387, -1.8225163457867386, -2.384511624680134, -0.003644131028256607, -3.427354826596893, -3.785378085115971, -5.141266192031341, -2.319670637716024, -0.2906669387746665, -0.0022034909063555702, -1.6074522747180813, -2.733515837558467, -0.5368869104419908, -0.05814423331994563, -0.4799964657232834, -1.0440511994067456, -0.1028735693120117, -0.0015582016916125168, -0.000796795464804465, -0.013506691970598719, -0.24691926007680762, -0.0004962290420278119, -0.017439823468630728, -0.00542015039095677, -0.005920492990601216, -0.00937754020947485, -0.15780850136417113, -0.014748244019385466, -0.009885775358144142, 0.0, -0.007384355628841093, 0.0, -0.0037042165525264124, -0.045967078594433504, -0.24580138521475875, -0.011253194916739817, -0.12143940791541277, 0.0, -0.009187528599874359, -1.142363828604384, -0.023244961569954134, -0.0024873407455437337, -0.0014060883192158345, -0.0016629010528282065, -0.012770859959717638, -0.06600400859685464, -12.594118807711679], [-15.369497006071517, -0.06675386038423571, -517.996932381696, -49.595873894635375, -1.7704397330109922, -0.14137344539892358, -2.763162435509363, -4.346510453159076, -0.00870228055039795, 384.3581862169954, -18.45517151385246, 752.0290356435679, 1115.4196737355212, 51.36533720316679, 1.7050923067290027, -80.14657534509675, 199.42891884773385, 335.35711561122946, 114.47776698303865, 252.55281396333882, 17.223549231611933, 107.7787848790952, 0.893238399124469, 8.52733088219636, 234.496756282321, 15.770928485169366, 32.6706757340477, 20.985363526266145, 2.6567560775147765, 4.773576371917708, 16.83020015006119, -1.5906346156215492, -0.11896232353899333, -0.030348418813189885, 0.0, -0.038913509103199136, -0.023455019980357355, -0.016855942271206507, -0.07198541799395426, -0.18753247155246489, -0.024068195988183355, -0.1101440257642267, -32.8609248365442, -0.06168893983253663, -0.5276076328904259, -5.794519970603231, -0.09530406892912313, -0.04866743036272588, -0.0698128868048558, -0.06280454077017622, -0.15006114346895552, 0.0, 0.0, -3.256415904157614, -32.4192459291764, -10519.671026688826, 1332.4250636211418, 9.870880705408913, 39.36722538608634, -5.062987280271026, 0.11233833753580766, 39.78262789067511, -2144.068229233553, -0.588572461847474, 406.26434239054373, 341.7279144195448, 5.434881856805739, -1005.2410018336761, 238.48567545834806, -601.5316665330871, -334.44136939679447, -18.291878886897745, -18.21195361799074, -103.47101731068922, -0.2016543031281548, -2.3201532520338985, -124.41777109465649, -434.79470695253895, -17.546796075945217, -11.97152217885013, -2.200418869087733, -3.0268661568347692, -2.609172655334902, -48.52818788134618, -103.2834198466543, 378.93861136269055, 0.0, 35.17510352544264, 447.3751031261314, 44.87912547849443, -2116.1332565424127, -1.7310081392074395, 15.818593051207008, 0.07550664496008118, -28.502903725846476, 0.7268638868345001, 2.1514020020150415, 6.015886568475422, 0.44320055220996313, 0.21060467125234295, 0.4823321595960754, -7.583662117591978, -0.22822588039055558, -1.2616933642164518, 0.0, -0.702444711245773, 0.0, -159.50199284849316, -62.69237013825744, -1.035211943466257, -8.609875328665751, -57.407563526264724, -0.06316288335214716, -91.50954476076078, -19.476163606134953, -26.044872932064663, -12.174090717398334, -16.6137564445923, -0.08302391867066267, -76.52107640549964, -73.00219112085162, -14.812731838843606, -0.6486368855744985, -10.469851082341549, -26.82258039633227, -2.968958387612153, -0.06676268836937328, -0.023003888256743633, -0.09664296471496156, -6.832921334271903, -0.0040765490207434075, -0.380565802977398, -0.20790202697654506, -0.24446058583884708, -0.4034239602946321, -3.5265253408344144, -0.05536904392341226, -0.03712319305765883, 0.0, -0.02788706532147453, 0.0, -0.013907547735882651, -0.17248477887217487, -2.0323580998584596, -0.04643942649539255, -0.454809850422159, 0.0, -0.18325914323358664, -4.334716823279213, -0.1068171029038046, -0.03069251974636444, -0.04109197170929694, -0.026047455126931202, -0.048766093148450956, -0.24767044536272415, -49.97208176620654], [-6.123551141276943, -0.02513502995650656, -202.45336881194893, -18.303752027841238, -0.6842507050690214, -0.05552619601709233, -1.0465990498454616, -1.6004394622746283, -0.003259012193508181, 1971.239438076805, -1.8719677887270607, 3945.4651619310353, 34.21115143993676, 262.9835972250512, 1.2570975372202762, -134.00770407785294, 1658.9800288171139, 1860.4944255088042, 234.62008819986957, 158.8686939154462, 14.603747639411996, 55.013492862432344, 0.5118754246780425, 1.4830014987132323, 36.152069969193306, 178.11986930444226, 19.90118752417352, 14.841283415458689, 1.6025641741060341, 2.1876741052622988, 4.727263068780507, 28.39144645355241, -0.04756670611238519, -0.012134171090622911, 0.0, -0.015562796243413245, -0.009381468485417014, -0.0067411114516411665, -0.028842695237821497, -0.07506320483900014, -0.009643058669957596, -0.04487230209720961, -13.135996591199476, -0.025022510695938024, -0.2116859062727926, -2.3502888958803494, -0.03865335996012315, -0.019726335723532697, -0.028303994955488705, -0.025164534062654207, -0.06012561917022024, 0.0, 0.0, -30.406283710823757, -5.895251645833917, -1206.0113754430754, -460.6006309050897, -4.49790073640479, -1.507880114365214, -1.8995061243543236, -3.49057330426944, -1.3308712224981227, -1496.1624075427674, -0.13821594106244933, 1063.321032675182, 291.2415315503849, 8.199145662288995, -277.6304288613162, -469.8995866046733, -278.78061361851337, -264.7836929165684, -7.691371783303273, -7.3946268584092385, -105.77862502015871, -0.2702278537392428, -0.6927613636591642, -112.6010980004697, -154.4516211855347, -10.173932392711555, -7.120778532847197, -0.9622931433961921, -1.408962727843378, -3.868654370254425, -12.696042399231915, -8.976538662936164, -16.35939302845871, 0.0, -12.302861494256742, -79.67764013246976, -5.206097970347315, -1049.3324512782956, -0.05338073528202456, -10.931954129579033, -0.06265803294881155, -10.158236614102705, -0.1596518964147509, -1.0760260323037651, -2.8678733346332903, -0.10828600604214637, -0.05424151208015953, -0.08882328737730391, -0.7039679508412816, -0.09070221252759596, -0.5018826613704813, 0.0, -0.2476441550292627, 0.0, -60.65289950354832, -13.933614787020685, -0.2407266342411079, -2.8870705368110388, -21.60882669848442, -0.016524118431031045, -34.40607619889723, -6.13568685234066, -8.29805051892692, -3.7807229159853453, -6.17649623315821, -0.04683006440427126, -26.783192291686273, -21.366190271189733, -2.348667787512548, -0.21466826443998446, -3.64192759233218, -9.13480120425148, -1.0757740139879572, -0.037690363769543336, -0.007268404509268643, -0.023856583253046154, -1.2072957651213299, -0.0010579295347035885, -0.08827564848428486, -0.03503168151849986, -0.05164474287406054, -0.06563016673547521, -0.938054658693381, -0.022105065868709375, -0.01481759088185252, 0.0, -0.011088779763348041, 0.0, -0.005552059990814783, -0.06893794525954015, -0.581377823321011, -0.017283719353692783, -0.1820613399668232, 0.0, -0.0328237071856918, -1.7168040445258441, -0.037628998635510245, -0.007516092305944227, -0.009000236441051402, -0.006239926289141367, -0.01931178984794161, -0.09898781629579993, -19.02934809711984], [-3706.5299597569683, -15.574220057860531, -87078.58626298768, -9376.077676738932, -540.6610591304562, -57.71392957836759, -749.9336301961512, -1929.6186389864836, -1.4225023743673955, -713.9674345421046, -8561.499503703126, -1558.9621511198686, 179.35124925052395, -66.68505192447414, 6.224624817682391, 391.94391823064325, 1112.0761058590047, 2000.1027788762817, 145.2100960977117, 562.1702350276346, 20.176652067949, 126.50420022459849, 1.6119216871576547, 1.749355467078087, 330.7891493056066, 426.9730788148907, 1.1625678507983586, 53.06442386294161, -0.03133991308402057, 4.367842580624529, 2.423610282816577, 61.227730638424845, -23.92036688610829, -6.1210395395798445, 0.0, -7.612612858191041, -4.557096436231943, -3.2896629050396946, -10.253127633690706, -19.09619100360868, -3.3126904388717877, -7.548307368951893, -4910.448942506137, -4.172588317348336, -32.42270513046339, -370.4939095798429, -5.8473726817143845, -2.9947240276259675, -4.316064990713219, -8.906777685387553, -21.373718451897766, 0.0, 0.0, 30.447010588834164, 31884.74679733186, -6582.864199418538, -464.3983297190616, 33.09574320952836, -117.32691285275595, -963.7288394585854, 1.9487616440376754, 63.26779170316681, -113142.44469714104, 2.8547620001228506, -605.7771510327648, 83.71399479535135, 8.95989265818068, 736.3015383292451, -1883.4269208065634, 832.7813027620465, -722.5538367670205, 16.14458511589705, 137.70077044350285, 300.95424649260224, -1.434952538028117, -17.272499533482332, 252.0283623692271, 956.6343231253079, -5.026545525105293, -39.664243020131586, -0.7916874698432659, 3.8211758052878935, 19.259344069758892, -257.82754131335525, 191.81995904823034, -1004.8398716171479, 0.0, 1541.4880312988125, -2171.809254655332, -234.63639480072558, 1839.7927332787551, 110.71722715773573, -378.0267429932032, -2.1064254873380572, -1081.8416867406343, -3.2327632611000188, -23.764021316238054, 35.40951535233103, -1.782426646772786, -1.4557275704834354, -1.2695342916855237, 3.176328416387568, -127.78150630690016, -188.9761065197835, 0.0, -47.154709708157114, 0.0, -8936.590519074862, 12111.050700867421, 12.587807245656403, -5486.384248275432, -5915.8595914011785, -3.952100284572979, -9079.538791757017, -14223.501065723434, -18478.592825998425, -9244.717134378458, 5680.476951436852, 10.966927519431005, -4130.219552247799, 1569.9957641369779, -1780.458919511385, 319.9309560814826, -413.04208301246973, -2399.967884606219, -201.9270213796779, -0.17411481720902178, -4.472501257646881, -108.65106622242094, -1757.726446571923, -0.490679695013635, -44.05206710213695, 21.852391901506586, -19.101031999683865, -9.940432547482741, -770.7959444464477, -14.594092826786099, -10.110467159201159, 0.0, -7.755446227299129, 0.0, -3.6929345254894335, -28.054161614439383, 1935.347942078372, -5.952168052038954, -80.53037324179257, 0.0, 29.66115180155055, -630.6625501329069, -15.186961306131074, -5.631325334968713, 0.47369337657280747, 6.298540794669125, -24.828706058626544, -40.28289769542766, -108171.81711837508], [-6851.744333832467, -15.585839510442877, -177124.93623878557, -10024.989898921316, -452.06947463585306, -44.33693034638776, -608.1901595603531, 98.89879516192761, -1.6709812672196647, 488.33466324522914, 1902.6032073498402, 102.17980400949139, 354.8778958008257, 91.98930599526324, 2.4167505707964576, 536.1536717131917, 1457.6113611355383, 939.5228106143849, 603.3394666618454, 479.43424017172975, 26.06158670406323, 82.25074810301597, 2.9242167023819787, -13.049245015252353, 996.0892527067358, 543.5255564358083, 34.49486147193431, -12.934793737018, 6.338237836231929, -0.5735843437216641, 8.876063971412938, 59.64583525929845, -40.32435622964321, -10.191140856844243, 0.0, -12.708188222918679, -7.5744344066754685, -5.506859171235754, -15.458191932830816, -28.369384104504643, -4.941679386664284, -10.284950814112428, -6814.450675863929, -5.986598974337278, -46.328885258873186, -541.016928872584, -8.43696319404257, -4.330920929705997, -6.244568629797314, -13.425344616090815, -32.22422015522994, 0.0, 0.0, -70.72692043131624, -21344.405336281085, 947.8344191803931, 102.02752343294168, 50.055712577721465, -152.6691313224075, -1911.1311702328535, 0.5041892664488067, -312.8493805760452, -86336.06237592919, -17.32941854007542, -632.5951034179044, -87.0262642930612, -8.874300547133213, 794.6514657939797, -2926.836511389052, 235.02504081615473, -22.698595515202722, 35.762051361885725, 120.59967865119184, 92.47266286610457, 14.571128988781961, -17.265492685031436, 336.32563539348564, 1609.807478781747, -27.567160997524404, 24.57375704483064, -17.921745151478135, 0.7239152135262211, 2.242657520074336, -53.75395958005363, -239.61124857161192, 360.82967664769086, 0.0, -753.9189785598152, 984.4372002914505, 274.9641579351629, -1118.312021863012, -61.33322702530201, 1342.6257080904065, 0.8161987399248581, -6063.209975283174, -3.968701927031255, 31.757950679016528, -49.48776038195986, -3.880997059902053, -0.3174158298199458, -2.1969499433376, -73.2905698976107, 100.12537555271338, -309.47780875322405, 0.0, 72.1135516706496, 0.0, 16026.600271562142, -13158.906921717491, -195.3100918250722, -4585.819230277159, 2873.226395419588, 10.272657181097552, 6302.208922912041, -7960.330692624558, -10430.26512060598, -5043.293872120299, -3196.774021436099, -4.862234358225057, 11982.256071891512, -1459.258087288506, 2020.2034760880963, -260.30288499529854, -311.87548753980775, 2462.292161452927, 233.2840317272646, 4.585684129060925, -4.667797471902, -315.15439285085705, 2520.9888332384953, 0.006012708583595188, 97.49912780160327, -0.5141610401520355, -17.82500874422828, 26.66204829239468, -760.0110757965347, -29.961632376670746, -19.42198075146351, 0.0, -14.364845464949724, 0.0, -7.447084540962368, -40.980752066681504, -1636.1119709849786, -7.92959305537812, -137.91971109173986, 0.0, -15.898035310730341, -797.5994012545021, -19.993095524670743, 11.2923424121221, 1.3541354159624182, -9.269688050111807, 27.867400086043308, -58.84415530472111, 167384.85354380615], [-1477.7502252044176, -3.3552224213435684, -23230.338598596532, -2328.696839953587, -88.09241783319753, -8.160779217698225, -127.09498724335727, -283.8280978954001, -0.39160912936254105, 4615.976027260906, -1409.389038557249, 9643.059202336673, 230.61310393415394, 633.2743123773698, 0.77913530661266, 392.2412381738085, 375.91192148518513, 1901.0542273085841, -196.78777569340735, -99.05107603728217, -4.6260935008368715, -68.03426734729204, -0.05719204116305122, 29.39937965154914, 284.6184633936318, -551.1167187593397, 5.540842273129716, 3.6538531743506786, 1.5155645886121336, 3.0151584901501587, 3.881321531693947, 138.80771829503328, -6.8360340484802045, -1.7605124975444786, 0.0, -2.1693301732359105, -1.2923616483363434, -0.9387668178952354, -3.2194871578698443, -6.771330944122873, -1.0529311416629479, -3.2185544331447877, -1559.8067026988724, -1.7572287547621894, -14.236449314040733, -160.38094636757074, -2.560921573643638, -1.310740266407557, -1.884657126024926, -2.8002252321020626, -6.7113581855452225, 0.0, 0.0, 39.556119832092925, -675.8399023522954, 4222.101480657114, -711.827665026089, -81.09898602492684, -73.09220229827147, -260.46157536980866, -2.840878185258476, -50.7537100895899, 54624.975568568, -16.800413994844266, -476.51678451073076, -276.4194002256185, -3.7616167774503357, 1032.4004726994046, 3493.477622995596, -1770.3059576102814, 959.8033664983627, -3.8991138563575602, -87.22386139906698, -223.12302119923135, -4.424563871643602, 25.36036309604927, 322.7974970505658, -984.5471829842323, 53.52304654689549, 17.050145401402037, 10.432760135589374, 3.4119468936339397, -23.410932474444476, 454.3325729679041, -849.8188554336671, 497.05849597591765, 0.0, -941.024464654693, -1849.581456303419, -45.90135071469582, 4976.233835697962, -5.609511524600034, -505.53465688805977, -2.7148084060136215, -940.9465534422701, 0.25344201260368016, -27.44488853557654, -100.03993906085661, -0.629094969601281, -0.4847292641079987, -1.2740458282205944, 16.213374199826042, -16.014280644559786, -75.89603521583501, 0.0, 23.601359725240386, 0.0, 7268.589679007567, -2833.78101347241, -44.648536966605995, -1717.027408974675, 1475.6917002624514, 2.9352170180098605, 2507.0001458011666, -4681.628024970792, -6047.841150726384, -3048.272495463629, 774.1595312224173, -4.069368882311322, 3683.809099411048, -334.21352766562427, -406.7235333543723, -32.81347903301727, -5.016515506505123, 332.4401047738898, 82.55591025378774, -3.0110888748113482, 24.832056239347374, -53.53925995279633, -159.56035380760574, -0.14922223467087362, -12.682380818716615, -4.053194764458977, 0.4024806084422882, -5.769258454643858, -228.4860103920642, -3.5112442074138315, -2.372494109418235, 0.0, -1.7844349859336215, 0.0, -0.8827639959909489, -8.240280319546484, -168.92928976852363, -2.205655208261738, -22.668812259624605, 0.0, -7.619247553752577, -206.27746906560404, -8.533691583509606, 0.6474610108414832, -1.2143795605166772, 1.574245336546975, -3.4029785662838012, -11.832197078492879, -8513.195014772786], [-5859.194914052166, -12.916663303652486, -144443.94424603778, -8341.397087818046, -373.6950920066302, -35.105337738598685, -505.04671090718153, -1796.7165400780925, -1.4358641857740273, 632.8771379521139, 10086.737833383417, 1889.539821837084, 77.2865554540565, 11.049897886198917, -2.888822921261525, 125.02309481566233, 2762.8543352268543, 288.508949373922, 637.9976301073505, -13.630680100906572, 8.585757455707844, 123.7259280803116, -0.761819281790108, 17.183659753377537, -68.67457021200391, 1026.4530955864534, 67.48603041352425, 44.8093639953367, 5.0314257774972155, 8.394384592944053, 31.642649517881487, 119.93778962845319, -37.27251855006485, -9.455356876835788, 0.0, -11.632955489867717, -6.838515286633501, -5.078401971672632, -14.059890948181279, -25.747229897612282, -4.510100355236925, -9.346243200190687, -6474.498098196424, -5.370866312559512, -41.6212831556225, -477.6446099676325, -7.533612135092246, -3.8621796264023502, -5.563653606816323, -12.211435561734435, -29.30931529647204, 0.0, 0.0, 31.6576299523528, -17017.541231681156, 8557.126830882833, 45.56520116137453, 16.355052014565164, 115.02011286811941, -1570.8691178309114, -0.7444717346586986, 48.80335542991338, 12947.14336257749, -36.07030179248852, 1258.51747111292, -435.09926251148886, -8.690059116203308, 923.3344819112128, -1250.4597034399012, 958.49750043063, 1034.7843104622696, 59.02755257338957, -143.24770807808176, -152.4784806512162, -7.056604722862488, 19.544825119399103, 164.10090957480548, -79.69657932116378, 29.992179145939275, 10.466509621867303, 16.795686719738526, 3.326200384187903, 24.86830078394292, 64.87842973049334, 1480.1535817009033, 205.18441624822754, 0.0, 334.6774371015717, 2216.635375199525, -16.16304827962459, 50.58835959632463, -33.9273813225781, -1132.541705885069, -0.8328937645714629, 3561.427970454775, -2.151804802843141, -57.768604427885236, 47.29494840967102, 1.1124426407777188, -0.931663206365958, -0.4844796148300345, 65.85950710523717, -100.85543561431983, -367.60539569195805, 0.0, -70.48182336864377, 0.0, -8149.041023730429, 957.6536511590315, -71.04461733210131, 6910.135105271708, 1242.6277258918412, -12.402631413445295, 2635.0569969142966, 22853.46529701304, 29055.722044659935, 15215.246548627478, -2595.3850800902974, -1.6000285408330295, -8356.116437539253, 152.36266463590107, 686.4655005959681, -124.59057266125261, 775.1003582387921, 183.92070753256806, -41.53956204241665, -0.39934813948654524, -12.130158353548046, 577.0509878296955, -625.0579557601629, -0.54493953768999, -28.57873121628849, -14.22102741620473, 42.524878733570965, -3.737976537260183, 1979.6476611518044, -15.124213833870702, -10.295827539184073, 0.0, -7.672882418203555, 0.0, -3.8082303878454793, -32.62951621517532, -600.2283809671488, -15.708734943369848, -127.52324293658137, 0.0, -9.00697616687901, -663.2994240691886, -13.17461087528238, -10.050310967932246, -2.1399118872688483, -0.8195302587454347, -22.28991461332217, -46.852637466474214, -59027.65678215515], [-3.055314593392043, -0.011903894643178033, -100.57240462203684, -8.583260734360486, -0.326638830364996, -0.026911211774704995, -0.49443210852615843, -0.7190672688686577, -0.0014976815764749629, -15.908515981131604, -0.4890169626614705, -31.848064795967858, -3.4942076358117706, -2.121337612477498, -0.01707057082625753, -2.293892789165419, -14.772871191714382, -15.23727001191656, -2.6185886735509416, -2.2115109617866104, -0.1489160595370972, -0.7031309591314712, -0.008510498493503871, -0.08508405966590733, -3.1944986112945775, -2.352947052982133, -0.28256295104874396, -0.2213816051325388, -0.030074560727413602, -0.038931751492383364, -0.11686788721760386, -0.7128393118238354, 94.67126380789327, 17.324033034117836, 0.0, 30.643578356060267, 20.281855976932555, 23.2139982560152, -0.014429454046320463, -0.03723106328019486, -0.004823428178574133, -0.021175742129063594, -6.564721762780008, -0.011928840200052032, -0.10171159580514656, -1.102300177031419, -0.01840941375266793, -0.009392902941733469, -0.013468484630518404, -0.012588764999368613, -0.03007970828209416, 0.0, 0.0, -0.17946367036595093, -0.9441673868933669, -51.61073677957341, -158.4347288955453, -1.2079430082060973, -0.03385046828828927, -0.9046052369047387, -0.12510577280958599, -2.790572344987825, -9.118247150983759, -0.027034593367237597, -48.77594532895669, -1.0403444718320465, -0.07345777827708777, -33.40921051289155, -141.85003074510558, -58.626328602032764, -69.76280515425698, -2.6608905859103653, -0.4090962519854611, -14.90378199649738, -0.049206712333836264, -0.09267424347855159, -16.10570383616307, -47.41297486730094, -2.0160500875860947, -1.267133675317943, -0.2044021110416725, -0.26451341191487093, -0.6721591475862505, -2.0795103783028632, -13.567119643173974, -38.20289269686149, 0.0, -23.354296245799404, -43.81041399547727, -10.887415001275821, -1004.1726378797501, -0.0027329839799563765, -11.529118223793843, -0.023620107457145732, -2.2943498361918753, -0.05591067273741786, -0.6420577747398734, -0.9151558702887914, -0.03228576989593925, -0.017597037209900995, -0.02948068695050743, -0.02576253189876997, -0.045348435165959995, -0.25098789386531006, 0.0, -0.02045140949327105, 0.0, -3.169801379107872, -1.9227111019502257, -0.05777327998620833, -1.3538090306886528, -1.7438639532066147, -0.002655086588927478, -2.4986071853423297, -2.801589646378433, -3.8080637853208597, -1.7151610666100459, -0.2075816125925547, -0.001586642359210488, -1.1556026326573028, -1.9930745015553453, -0.3812108651509266, -0.04315058421312195, -0.3512894446639854, -0.7617514931206488, -0.07492220510375468, -0.0011173351355249599, -0.0005811482793651972, -0.010011387544494717, -0.18006136142946938, -0.0003700726029313017, -0.012689648454792994, -0.0038284535841258314, -0.004192587207960016, -0.00657445498188879, -0.11529125503495086, -0.011047999777729594, -0.007405230360892326, 0.0, -0.005531221305321152, 0.0, -0.002774820297727638, -0.03446060542863094, -0.18271900197286706, -0.008430890859635188, -0.09104872028859465, 0.0, -0.006638287267464664, -0.8550548601896595, -0.01735037500738517, -0.0018319918104870382, -0.0010207932950992379, -0.0012195032866682092, -0.009529147464118603, -0.04948189370554243, -9.357182168314493], [-39.01593337165255, -0.15135537380227482, -1268.4715999360412, -109.356114412164, -4.144229523623502, -0.3406429766384181, -6.247288102259795, -9.097042269243012, -0.019031222714055614, -177.1601804165462, -6.101785800745785, -354.6625842513361, -39.17350826071442, -23.623716449021355, -0.1921000985325514, -26.874507868051246, -165.10441569844136, -169.7182212783822, -29.495149260551493, -24.961956584707526, -1.6724275160487159, -7.949607078515322, -0.09619735837365591, -0.9588107607243651, -35.66298988215608, -26.80915212168483, -3.1903842812691416, -2.4911945928709422, -0.3403098372198538, -0.439511623477767, -1.3270225479305595, -7.972560250335058, 122.8022801179152, 38.27584742801683, 0.0, 40.163011174333434, 21.295508307611097, 7.966189746662107, -0.1815778878921654, -0.46394641680997506, -0.06056300625596125, -0.27090308048994954, -82.75074277772782, -0.14748209006602878, -1.2476352352150173, -13.864465895533598, -0.22642754475931115, -0.11542880464031142, -0.1655894710657878, -0.15836178340013274, -0.3785181255468507, 0.0, 0.0, -0.019515768176907512, -12.025777615953816, -530.6250001513516, 38.9211829075719, 0.6548100381758233, -0.17066193911901573, -11.622481382372438, 0.02242803253663584, 2.5613559292890633, -112.04400934892871, -0.005115548565320008, 8.233406875569935, -0.7066078935427589, 0.012066325940213292, -16.88003692047463, 36.27376173210301, -0.08481730905463541, 6.75567591084257, 1.189095065708154, -0.2637795994515258, 1.7367813968946384, 0.0094924707897575, -0.02653103381976384, -5.655736412727788, -3.2622497969762865, 0.31397268969446773, 0.19305064876513717, 0.031539125013544195, 0.030755788589114756, 0.056039804686550614, -0.529205767223789, 563.8387372682757, 235.30829757462018, 0.0, 387.3006728841003, 748.7868805149593, 136.11156216671893, 1065.1579760694542, -0.03365296501949403, 10.245828605900332, -0.021172784890942407, -29.494891261355388, -0.028174909043483045, -0.14337406189166177, -0.5810464753538439, -0.02138161498382259, -0.014146881094606165, -0.020769207045462514, -0.1704713224004217, -0.7853423667524155, -4.136000395464687, 0.0, -0.25501073334825486, 0.0, -39.29864045783085, -23.85789806839979, -0.724308299466027, -17.011395683166135, -21.728122218521357, -0.03321666371412996, -31.071603352234206, -35.08722014741011, -47.69814528876991, -21.468581597734246, -2.5657444519892882, -0.02487401809679375, -14.277346626324775, -24.744206424557497, -5.001411718400545, -0.5453772780913122, -4.374728397598046, -9.477273981445137, -0.9310617653682338, -0.014514815124720195, -0.00727371526762519, -0.1267904539584804, -2.247439936226331, -0.004775830152836234, -0.15988961028238952, -0.04829758840823232, -0.05276717654631862, -0.0829489336429341, -1.439670543279992, -0.14229444621121953, -0.09536938736936441, 0.0, -0.07123743822091348, 0.0, -0.0357342268079625, -0.43378823913627135, -2.314226921288151, -0.10684045339807555, -1.1489450918276185, 0.0, -0.08631178883020119, -10.71776577500524, -0.219240252013744, -0.02308554688089248, -0.015005404658194308, -0.01585682264914069, -0.12037667994646047, -0.6228754043254656, -118.34683544765922], [-2.037221280818269, -0.007952894515592926, -67.06102086025062, -5.734727859409857, -0.2182730499169801, -0.017949924793781057, -0.33013395080200675, -0.47966328651990436, -0.0010009651813642575, -10.812482784576634, -0.3269529368378521, -21.646004414917677, -2.370194278643179, -1.4418051895229997, -0.011597325333785942, -1.5651320122874424, -10.038748935542218, -10.356256738510949, -1.7778804655357845, -1.5020585336333863, -0.101189638266733, -0.4776891402374086, -0.005780711685696498, -0.05781300165953845, -2.169156490275433, -1.5983073843854352, -0.19194464610718232, -0.15042005164772732, -0.02043982495179815, -0.02645269434423565, -0.07943175906470114, -0.48431789983500806, -0.01585481122007346, -0.004044407331505312, 0.0, -0.0051877314210590835, -0.003127321445332842, -0.002247103013558765, 97.17587550700033, 117.40913788727234, 30.191009293813956, -0.014482252347659923, -4.377906469293515, -0.007973683180015992, -0.06822122002812926, -0.7378367489206578, -0.012306333873673166, -0.006279348524413916, -0.009006022062804635, 84.16436174254697, 202.57329057120518, 0.0, 0.0, -0.015216257007371154, -0.6330539152404289, -31.094196245995022, -9.186555887414832, -0.06653296866457167, -0.014139371076380167, -0.6043743482985069, -0.008637482805614272, -0.08378962378731356, -6.275976728218368, -0.0022427776467962377, -3.410782315923038, -0.11933511511230217, -0.0050840001238739545, -3.54775668972031, -9.361632279480306, -4.658996935118878, -4.468068579896731, -0.12290187026476766, -0.04573526787864077, -0.9177437380937912, -0.0033037011476314657, -0.008460608394950156, -1.565699149434587, -3.0373440566864867, -0.1318852702085438, -0.08476081387310093, -0.013896822449932409, -0.01858497383288134, -0.04819077394169442, -0.18584694295114, -0.3202006360251954, -0.44164376063098826, 0.0, -0.3528195029464289, -2.059508842650172, -0.14696302334520464, -22.90745062754642, -0.0018419955404947216, -0.3296914101571434, -0.002858469166245718, -1.6345628392946705, -0.0059077510740801935, -0.050123414986101504, -0.10138345157639156, -0.003535525299802871, -0.0020342475216952524, -0.0033098970809800035, -0.010872834572327319, -0.030242545333968744, -0.16739406196835604, 0.0, -0.013698676019106385, 0.0, -2.127113622881012, -1.2875541331941442, -0.03860217540969924, -0.9032670654922018, -1.1675861689628602, -0.001786378119862894, -1.673818092638875, -1.8696852076161021, -2.5412612622591695, -1.144714845504603, -0.13982579447947183, -0.0010699653863036787, -0.7771294617233189, -1.3353078665000446, -0.2569545867220549, -0.028816643443648305, -0.2351128053535426, -0.5102238003175809, -0.05020967936871456, -0.0007531779884923712, -0.0003894910748826934, -0.0066836258859485145, -0.12071385468223418, -0.00024706457303104874, -0.008505786367971868, -0.0025815208065574535, -0.0028258642936261494, -0.004438405646538918, -0.07718355262463478, -0.007367279115587564, -0.00493812773947401, 0.0, -0.003688484151484241, 0.0, -0.0018503717058953218, -0.022981574228897846, -0.121975183865484, -0.005622547254011146, -0.060709521500058886, 0.0, -0.004464029044876312, -0.5706130196768687, -0.011580147501186288, -0.0012268746803380944, -0.0006870798599901155, -0.0008175276258559762, -0.006363797961351203, -0.03299918266193489, -6.240698787964941], [-4.073568647073072, -0.01591942621833312, -134.12060128291125, -11.479498959216945, -0.4369242774447653, -0.035912987203475945, -0.66091923662978, -0.9596060793341001, -0.0020057223363745204, -21.489774445584988, -0.6528614652746385, -43.0213958476157, -4.7162799419862225, -2.865581717733341, -0.02306195089091913, -3.1109201872742407, -19.95461257509535, -20.583182760537316, -3.5357105610648816, -2.9871451917301934, -0.20118227332372451, -0.9499975690468383, -0.011497960669812322, -0.11496561480541946, -4.313467643657442, -3.1785882486002435, -0.38172957560473253, -0.29909933064031385, -0.040646787286602225, -0.05260727519864662, -0.15797920443340788, -0.9628369925274939, -0.03170123100814823, -0.008086655530834944, 0.0, -0.010372827011639496, -0.006253094033742337, -0.004493057487794531, -0.021037217849130423, -0.054271440762238804, 21.00796548973668, 339.9799156376421, -8.835869383614375, 0.5412873081578942, 2.4550653762823105, 139.33068968941777, 0.6130153406272459, 0.2766471478006201, 0.42544715226009283, -0.018354482418231694, -0.043854284017778744, 0.0, 0.0, -0.030485631436668454, -1.2644172008884265, -62.344726463111954, -18.54633147296462, -0.13479717060642976, -0.028578221520565984, -1.2084240156672428, -0.01738101940057611, -0.16889758128214705, -12.543226375650748, -0.004475126610498413, -6.833534740571314, -0.2388763599260283, -0.01021103884772948, -7.092643064793505, -18.84816390636311, -9.390562917232776, -9.002855366048143, -0.24705741498872313, -0.09150280823952157, -1.8481026903455375, -0.006568734898361374, -0.016928028385023757, -3.1356908749224135, -6.110917775328053, -0.26504454374744385, -0.17030616604688012, -0.02790498435262195, -0.03669549184344593, -0.09690672279340198, -0.3721097670396439, -0.6642499285819119, -0.9018112614277778, 0.0, -0.7226625396966807, -4.16249884820319, -0.3006543441338314, -46.52282998823963, -0.003677412549160434, -0.6943311546497406, 19.000070606262113, 17698.68928093966, -0.011769017303039224, -0.10453655223366813, -0.20932250485863105, -0.007499528380000287, -0.004299838460493461, -0.0069909116089431275, -0.02163206660215388, -0.060545486607025585, -0.3357042263829924, 0.0, -0.027450892593106815, 0.0, -4.242319161756953, -2.5703365521342008, -0.07717250500693584, -1.805010849152704, -2.330357549816386, -0.003752692521224205, -3.3397942897504227, -3.7349744886839655, -5.0769663618832706, -2.286332749166114, -0.2789131148910254, -0.002193456525476915, -1.549353675132557, -2.6651500883326857, -0.514202663209595, -0.05774286381776068, -0.46930857274928134, -1.0182311714619356, -0.10022909255256633, -0.0015318862675911627, -0.0007775892892176295, -0.013354997781161537, -0.2412898363392289, -0.0004949584854523091, -0.017011400782210345, -0.0051701433989398875, -0.005641267200327148, -0.008849277725939759, -0.15409671426526592, -0.014741903237091456, -0.00988117874100126, 0.0, -0.007380613218031269, 0.0, -0.0037027587890271652, -0.046081225889631774, -0.24466070595848777, -0.011261517913616684, -0.12156460207336467, 0.0, -0.009092192632097037, -1.155594932117041, -0.023483741161058745, -0.0025112559043383316, -0.0014018553669001377, -0.0016706158746710204, -0.012908954499354145, -0.06616791240114138, -12.487637942765382], [-847.9057846756307, -3.1704548736989895, -26197.517784176915, -2226.615511829653, -87.41208025513222, -6.83254826416495, -125.42973202805408, -183.02266283795225, -0.4151285054461967, -1136.9395823583995, -106.15214785275411, -2275.9853451745134, -266.1104205855206, -151.60243108728503, -1.342392377511784, -182.30608236797934, -1104.409954736504, -1092.8529689213601, -213.98815319752464, -181.60487852901576, -11.61078802945664, -58.74341348093423, -0.6962217440702252, -6.267570957892294, -231.3644845260657, -212.0107738249607, -22.749945079273036, -17.36711961451212, -2.3957358085360037, -3.098612326897405, -9.57741583659023, -52.77555049484317, -6.2930800607667345, -1.6052664268904597, 0.0, -2.0562086395447343, -1.2391868353346867, -0.8905664444011417, -3.5568374037331765, -166.8518750986965, -5.065482331147111, -38.29282318862547, -16759.897562611506, 16.257838830269105, -20.185685119351184, 239.77491393040842, 4.52349560585583, 3.544949895126242, 3.7683525231575703, -3.8740791926528355, -7.414600106680555, 0.0, 0.0, -4.167271458362182, -239.25558706638424, -4102.480506657396, 2770.164379010815, 10.680722689090466, 71.62961943639255, -272.6754544626165, 0.06065060676516437, 13.510436073914573, -10380.886086149052, 0.23903255851341138, 199.63439094303328, -13.735583925361729, -1.8987714144643817, 323.51948192084353, 779.718064981294, 1179.264857215679, 16.832993270599204, -54.43475563289558, 1.3981049051460575, -32.41576042456525, 0.19133729530204435, -1.0616918829792106, -165.48803634509503, -209.31962508281603, -9.170570769752706, 8.437348884946825, 0.29769034927211835, -0.5096653607950756, 6.051841754301639, 32.26063834077924, 1489.5919598056828, -173.05024249918, 0.0, -874.2797930369629, 1210.8536584822502, -229.01833874504266, 9886.068279646333, -0.9628285372197225, -1091.1668966371417, -36.146279239624015, -14053.43437062223, 26.12607346072224, 181.17857136989716, -35.25021499767257, 3.72030194419155, -0.9063667441350263, -1.3271049559173298, -13.134587189840056, -34.74677287098327, -317.0066223546632, 0.0, -36.267705872548355, 0.0, -693.8632536823866, -567.5067041029272, -23.88689888798344, -358.4888119550212, -416.6882956959715, 11.115551850784401, -568.7948449467549, -704.5851204139672, -1024.775305920487, -422.79172641388266, -77.69879352866747, -3.020247887295775, -295.456995201073, -555.0007838598182, -694.3154487168944, -21.155687332291947, -87.189045442095, -191.59941637897003, -27.136952093937452, 2.681461393591529, -0.18157620968386284, -2.491614844960481, -121.31538981399615, -0.31572138318367315, -10.510815132957044, 1.8636255344418, -1.132244923867712, -2.068980608814406, -32.95741805915361, -3.298130766320817, -2.212513338941894, 0.0, -1.650670316168824, 0.0, -0.8621243188275526, -54.65497430688748, -140.9140593625397, -5.494470190705731, -28.985244997772583, 0.0, 20.151937864121134, -3037.1381721969033, -33.945253867270594, 0.5674478441045725, -1.1681376072684189, -3.6183490030621352, -38.94549259216712, -78.47893545381832, -3332.9027338370825], [-79.84893230861333, -0.4731786533068913, -2677.1415356685075, -323.2372328798256, -14.523587892979094, -1.2934939357121211, -21.391038363785864, -34.73543707524991, -0.05296606353764764, -495.7803671193814, -13.196423704346795, -992.437157643377, -99.29867782644595, -66.116505232751, -0.5264490995212113, -71.79488248015092, -461.3713275216901, -474.05387206018094, -81.51743839874922, -69.86079379269107, -4.685592027003241, -22.2926652693915, -0.2660505081667037, -2.488950448752556, -90.83470732059462, -78.50808074947066, -9.094135302157222, -6.836827099947716, -0.9446035025238161, -1.2038271639924636, -3.665666926493477, -21.131346348201177, -8.707511904126644, -1.6138800358804914, 0.0, -2.038140337218112, -0.8670700163830901, -1.0627690223833042, -0.36995990107166465, -17.851980826777847, -0.17913917927180462, -3.3764632012862954, -896.2134443452879, 1.8308810093703027, 145.14738679971387, 356.8494638190721, 6.457783886958811, 1.9680921712585524, 2.3955850929244975, -0.37111645166943097, -0.7712201629105399, 0.0, 0.0, -2.8951778924046954, -25.878249503387806, -7845.48345796837, -1494.8522976665586, -13.788502994197215, -6.43156024951275, -25.591419538740023, -1.5145456577665668, -38.34681017430658, -711.0107542477673, 0.8236081077411841, -521.0970748876599, -0.2619602450615783, -0.9659686884741654, -329.07104942797366, -1306.4125711872894, -1057.7604100832384, -139.69961602886096, -6.813125317819889, -3.462540504786266, -75.02893318098938, -0.3059740493435603, -0.5750961465192844, -266.9054216356971, 295.90018780724415, -19.290682250042195, -10.099138851363936, -1.7524069056583036, -2.2894061904189202, -7.786701427698387, -28.59005150900109, 1207.862278279944, 134.4615366682837, 0.0, -192.0262765190081, -1024.4195846987714, 49.852643478311066, -7841.854997814455, -0.09047446006719993, -97.48584965583379, 26.42793076565464, -1403.1128471613117, 26.25444111230732, 244.04282690931902, -1.297015970998285, 3.901297464760707, -0.16895927811445516, -0.35071790952587145, -1.2796273743232043, -1.8807722647482024, -15.180191766965972, 0.0, -1.0456442216324056, 0.0, -87.78718770071805, -56.08446454312528, -1.7037694277082447, -35.726085079257714, -47.53110555343452, -1.0748216734385834, -68.30082073570946, -74.36064006335754, -102.68140203483885, -45.55625256086787, -6.498324244456559, -1.1772759357438023, -33.775263862171826, -57.290646327504206, -25.954613355805407, -1.2555718676716796, -9.666157898911237, -21.23727795989693, -2.218000178978881, -0.30868707046202604, -0.016696978600855946, -0.26064006333698325, -6.2517157301546975, -0.030047949235151594, -0.5223231443449058, -0.2576255734216626, -0.17481863844017215, -0.2500473738651095, -3.2853551736021824, -0.2917950449633259, -0.1955896992421375, 0.0, -0.14609537995379396, 0.0, -0.07380318099610719, -1.3708828814748026, -6.255535283723378, -0.276486165462625, -2.3939445373194927, 0.0, -1.368579697788469, -145.82563736102844, -0.9771046678227188, -0.35852533230484895, -0.5664189847043651, -0.3019690929514352, -1.6861018080176393, -1.9684471639472971, -248.8658465235735], [-17.31986770391939, -0.07147574682965477, -573.7634533455507, -51.3798027852586, -1.975850721412324, -0.1554538759454145, -2.942736292886168, -4.1567491746261895, -0.009094755292903744, -108.93040639080162, -2.84979414934251, -218.06547503573543, -23.14076248204348, -14.525943983527867, -0.11623951655550534, -16.07325902590788, -101.12581343400568, -104.35998535577757, -17.78431063651008, -15.06950847720689, -1.0194166805627871, -4.815497156677253, -0.057849603251101674, -0.5728991449131849, -21.27102273226546, -16.17761759791031, -1.922199838219409, -1.5076063129367823, -0.20506946291398723, -0.264888063595861, -0.7984656590557925, -4.803489485437378, -0.13454898583547015, -0.03432112180516549, 0.0, -0.04402516253315594, -0.02654046566626791, -0.0190695690588608, -0.08155294631194511, -0.608513576411336, -0.035184671955704114, 7.887102691545758, -66.08968857976593, 3.1871407517975414, 18.296610154828365, 855.0408672724819, 5.447191963320791, 2.6741212264134475, 2.9275451957182255, -0.07273344911250514, -0.17000565833848427, 0.0, 0.0, 0.7531216016461076, -5.687228571919618, -870.5296208348432, 1282.5492850315773, 6.844514085228648, -0.3722674175690035, -5.271911814683335, 0.5021161748424242, -2.2065706304839425, -100.4255240850894, -0.02638336007826615, 78.86223337094788, 3.1377601035718548, 0.20250880739447918, 245.2197992818769, 593.1850967614344, 246.33795290997023, 488.7100481907044, 5.386897139209129, 1.5016605490498962, 59.08821763365266, 0.18715463369428778, 0.07845844951145965, -34.08055146279247, 285.7084789999384, 5.340205501701944, 3.395499572160432, 0.4153165409835779, 0.4930338506963422, 2.342865117466522, 5.050696262922034, -57.37511662196453, -33.908990388058854, 0.0, -20.9589952627801, 566.3734683940537, -0.6634197643135392, -774.5497292347875, -0.01911828733321131, -15.498515241860309, 0.983119821944142, -29.234604539676905, 0.34118834859517594, 4.278854438044522, 137.0925427290766, 7.262960827545972, -0.04296845654364636, 0.01105198804599958, -0.35820325530657365, -0.2757087042068348, -1.7393482014408956, 0.0, -0.15405179742520617, 0.0, -19.115151902293753, -11.580318672077263, -0.34267934999025257, -7.694649715223502, -10.2827483873261, -0.12167989896972063, -14.793716503642333, -15.929324903005199, -21.724613761387445, -9.749780833922161, -1.3469986911079723, -0.049233570787910894, -7.193775680915655, -11.99047346337479, -3.275483183864998, -0.25544437509587226, -2.06864754380134, -4.529355082988596, -0.4544608384538956, -0.025666638304370496, -0.0035123587400063654, -0.057135093941705226, -1.1654370142526085, -0.0026113658906935823, -0.08525870931152801, -0.037204011756078154, -0.029973637667916074, -0.04433491539223644, -0.687956320358551, -0.06302899500927976, -0.04224747442548515, 0.0, -0.03155705999120836, 0.0, -0.015853239261414378, -0.22582632731095859, -1.1552862727196882, -0.050212696055743154, -0.5193288117959356, 0.0, -0.13899691712489737, -12.963135276437365, -0.1494971269046167, -0.039138217622390635, -0.026797057450333252, -0.02670179574823493, -0.15090572261803947, -0.3242634360286533, -53.53763597080118], [-5055.182420467661, -18.23291622354761, -146938.38530675985, -11077.385702817965, -604.0680073573859, -60.827941064704916, -826.6394707166294, -1645.3997012620123, -1.9368473935402337, -2117.5178167608856, -347.1824708933793, -4238.7568089487495, -468.5419658437933, -282.3457837631137, -2.5019858585325148, -290.5755330005277, -2070.265007698271, -2036.286474479204, -413.50053935448443, -339.6617848563552, -21.77453912013619, -110.20061756067548, -1.3376566722472836, -10.963494326970205, -414.46055287715933, -408.7575192880312, -41.93078460256757, -31.919469327469734, -4.343397804805287, -5.631514450043114, -17.115322212524053, -96.81533930398857, -33.49096863286942, -8.547737514555447, 0.0, -11.119710224177668, -6.726657791971427, -4.819838412391884, -18.598978484670862, 150.64628993862857, -12.322975958995336, -98.50287752840315, -6784.853221549969, -0.04267105414578153, 5.161408587626997, 104.33335720210444, 6.84152138153083, 2.816327525550223, 5.097627353406146, -29.119443295025697, -38.77151868450527, 0.0, 0.0, -0.018861738272773054, -1245.698454098713, 12757.225106243372, 495.921436553552, 19.496428301647335, 146.75970437841107, -1326.1551665660925, 0.7693289770948676, 144.95847808247825, -2000.1096632769436, 3.8727456938467784, 222.13667198501383, -65.06982894028178, -0.24917796193650807, 462.2253440915264, 2042.7652351557965, -301.5601794994346, 335.0200707867158, 63.00528235554631, 125.75580161862703, -34.05394833966835, 1.6418078300735028, -2.0802869010850435, -692.569755116848, -925.6906886501561, -24.748633067959055, 10.782488543204122, 0.4111262687340434, -0.535902456329009, 8.672296932389195, -135.90598139517127, -1482.352276262699, -391.06874972863915, 0.0, 1026.0061572087122, -214.5530581976579, -251.4950865627901, -420.5522010878874, -5.605459432727104, 925.6122947749941, 14.578154796167981, -9480.560000835818, 20.223174755882937, -3.4806288567005392, 29.99794386685563, 6.855972165639934, -0.08969708042802825, -4.441770396529685, -59.108633564869066, -241.91014390342144, -2156.4965258606867, 0.0, -189.0249000257438, 0.0, -3043.279146441976, -4080.927689280742, -198.25913109061602, -2306.5907002464246, -2212.7153631448405, -1.7641881301702398, -2770.516867149562, -4662.04581423084, -7438.991691938448, -2451.8310449500977, -369.55779769314245, 4.850438111932081, -1564.1414205220274, -3868.4464947914166, -2026.0118614392147, -211.17306034202306, -525.6259889955576, -1091.8728007218165, -172.36199936195925, -1.7049209205742222, -1.146646553688074, -14.109506393547191, -2057.0921564308346, -2.5778694059207625, -62.8656794921502, -1.0521640689800393, -9.697047574111707, -7.86396560293009, -216.8589918067117, -30.2343308730931, -20.305790836869484, 0.0, -15.120078729986046, 0.0, -7.925095706370508, -337.5275680860625, -1926.1892993034735, -61.49825672874911, -437.5222286826013, 0.0, 37.80544387202582, 3134.9536255107, -271.6317725767422, 4.233707142800828, -1.3268134374793235, 1.924053247115848, 55.58523370221142, -484.6549571311813, -37391.06496830788], [-10171.500143892163, -24.311622862735458, -372151.29187091114, -15001.110558128426, -723.4045917268887, -70.43001868903421, -963.9322238425693, -1913.5942133001531, -3.288731517481026, -4866.168331156901, -1361.921162965267, -9738.542268988145, -668.9201839391982, -648.9149799216418, -4.889319002672256, -507.7923871436619, -4603.252746634807, -4662.21758352239, -818.4415273836759, -673.2359575097901, -46.85856866068738, -218.63906344601034, -2.5043670843178725, -19.39501384622655, -768.1202053311792, -846.8360257411126, -79.64276483907743, -63.09179127960407, -8.221419474332993, -10.526733079230128, -30.82513003875878, -201.85273573940623, -50.70158474103001, -13.770519774390873, 0.0, -18.254621428503505, -10.550367709144009, -8.201150664735447, -26.212002404922966, 8.326014847352852, -18.030939938105483, -172.25550230767053, 46760.12859229421, -1.7058649245681505, 6.429026732102259, 104.23963925737105, 4.573870306369108, 3.3029592338634544, 6.391195124309062, -8.7163065055193, -54.64166442465525, 0.0, 0.0, 0.08563008292132217, -1759.0428216494959, 18593.023779072097, -470.99085706530497, -40.06899700504157, -253.86867421545776, -3375.768540255028, -3.405408453986549, -115.97440239960953, 5120.441809356699, -9.239256294606346, -290.11775116806615, 7.526364232522484, 2.277501050721834, -1920.7924817493458, 2044.8609636356134, 1063.4821618616404, -331.7403083108611, -62.42079429934746, -130.19645767000628, 422.0589179307223, -2.252859409235638, -1.2107355837589486, 817.5035641811825, 319.1140285927195, 55.49900072808312, 13.930589535237436, -1.3482947349263816, 0.5084604653856055, -14.045257263134761, 37.177776611390506, -2165.194207183899, -16.066776432417566, 0.0, -390.9150581073785, 77.50388574387866, 336.1760879468156, 6669.281927838712, -0.4957402367390651, 1058.3153708465684, -18.979263171597374, 12495.658719762572, -62.57296313619497, -331.22605754011875, -31.582657439483015, -16.186853275929856, 4.881370861060675, 11.962921280420613, 71.34358060799266, 442.4292401026574, 3533.6511671930184, 0.0, 210.35647787731145, 0.0, -975.9084825068452, 6331.340572647302, 172.48667876143787, 3686.5186818010798, 1258.3485054470711, -5.862726662314011, 2136.006900695762, 10632.03923892772, 16076.962480519325, 5765.97179532168, -114.65268118089698, -0.35962863336867157, -775.9831642946781, 5426.609164433354, 2362.9995054437186, 348.5921332506472, 730.0991823756573, 1055.8719216023223, 162.12227628418358, -1.1522535903506739, -1.9621064473374838, -78.4387869381994, 2277.4608871942687, 4.248794706717445, 66.81093533108857, -2.2362231948332205, 6.609818191756663, 5.2828083511629575, 82.29865612213199, 101.79387293682626, 68.11676908512818, 0.0, 50.886345630922555, 0.0, 25.891774320001275, 516.8341644483172, 2614.48435725024, 102.36773667912978, 873.7802153824138, 0.0, -51.287859184155046, 2648.353535887889, 370.29124690206885, -0.008938074011978565, 5.03446372440435, 4.683542862625371, 11.273117001489084, 742.1208324848898, 53122.374996809885]], "intercepts": [-1.1330925902321782, -2.3533600586209555, 2.193480603266144, -1.8234152175682021, -3.3832192152185447, -1.9952811806858555, -2.9386932685838474, 3.2673911986796975, 4.075325876870949, 1.7812654996505866, 3.709489720358453, -3.6682451007637216, -1.1456237170298895, -4.07609025661001, -3.3575532409907436, 2.1881832285709657, -0.25275955771007574, -1.7316349154151514, 4.32910846856293, 6.314723723469449], "labels": ["cpe:2.3:o:apple:mac_os_x:10.12.6:*:*:*:*:*:*:*", "cpe:2.3:o:apple:mac_os_x:10.13.3:*:*:*:*:*:*:*", "cpe:2.3:o:apple:mac_os_x:10.13.6:*:*:*:*:*:*:*", "cpe:2.3:o:apple:mac_os_x:10.14.0:*:*:*:*:*:*:*", "cpe:2.3:o:apple:mac_os_x:10.14.3:*:*:*:*:*:*:*", "cpe:2.3:o:apple:mac_os_x:10.14.4:*:*:*:*:*:*:*", "cpe:2.3:o:apple:mac_os_x:10.14.5:*:*:*:*:*:*:*", "cpe:2.3:o:apple:mac_os_x:10.14.6:*:*:*:*:*:*:*", "cpe:2.3:o:apple:mac_os_x:10.15.x:*:*:*:*:*:*:*", "cpe:2.3:o:apple:mac_os_x:10.16.0:*:*:*:*:*:*:*", "cpe:2.3:o:apple:mac_os_x:11.x.x:*:*:*:*:*:*:*", "cpe:2.3:o:deepin:deepin_linux:20.1:*:*:*:*:*:*:*", "cpe:2.3:o:fedoraproject:fedora_linux:30:*:*:*:*:*:*:*", "cpe:2.3:o:microsoft:windows_10:1607:*:*:*:*:*:*:*", "cpe:2.3:o:microsoft:windows_10:1703:*:*:*:*:*:*:*", "cpe:2.3:o:microsoft:windows_10:1803:*:*:*:*:*:*:*", "cpe:2.3:o:microsoft:windows_10:1809:*:*:*:*:*:*:*", "cpe:2.3:o:microsoft:windows_10:1903:*:*:*:*:*:*:*", "cpe:2.3:o:microsoft:windows_10:1909:*:*:*:*:*:*:*", "cpe:2.3:o:microsoft:windows_10:2004_20H2:*:*:*:*:*:*:*"], "os_map": {"cpe:2.3:o:apple:mac_os_x:10.11.6:*:*:*:*:*:*:*": 0, "cpe:2.3:o:apple:mac_os_x:10.12.6:*:*:*:*:*:*:*": 1, "cpe:2.3:o:apple:mac_os_x:10.13.0:*:*:*:*:*:*:*": 2, "cpe:2.3:o:apple:mac_os_x:10.13.1:*:*:*:*:*:*:*": 3, "cpe:2.3:o:apple:mac_os_x:10.13.2:*:*:*:*:*:*:*": 4, "cpe:2.3:o:apple:mac_os_x:10.13.3:*:*:*:*:*:*:*": 5, "cpe:2.3:o:apple:mac_os_x:10.13.4:*:*:*:*:*:*:*": 6, "cpe:2.3:o:apple:mac_os_x:10.13.5:*:*:*:*:*:*:*": 7, "cpe:2.3:o:apple:mac_os_x:10.13.6:*:*:*:*:*:*:*": 8, "cpe:2.3:o:apple:mac_os_x:10.14.0:*:*:*:*:*:*:*": 9, "cpe:2.3:o:apple:mac_os_x:10.14.2:*:*:*:*:*:*:*": 10, "cpe:2.3:o:apple:mac_os_x:10.14.3:*:*:*:*:*:*:*": 11, "cpe:2.3:o:apple:mac_os_x:10.14.4:*:*:*:*:*:*:*": 12, "cpe:2.3:o:apple:mac_os_x:10.14.5:*:*:*:*:*:*:*": 13, "cpe:2.3:o:apple:mac_os_x:10.14.6:*:*:*:*:*:*:*": 14, "cpe:2.3:o:apple:mac_os_x:10.15.0:*:*:*:*:*:*:*": 15, "cpe:2.3:o:apple:mac_os_x:10.15.1:*:*:*:*:*:*:*": 16, "cpe:2.3:o:apple:mac_os_x:10.15.2:*:*:*:*:*:*:*": 17, "cpe:2.3:o:apple:mac_os_x:10.15.3:*:*:*:*:*:*:*": 18, "cpe:2.3:o:apple:mac_os_x:10.15.4:*:*:*:*:*:*:*": 19, "cpe:2.3:o:apple:mac_os_x:10.15.5:*:*:*:*:*:*:*": 20, "cpe:2.3:o:apple:mac_os_x:10.15.6:*:*:*:*:*:*:*": 21, "cpe:2.3:o:apple:mac_os_x:10.15.7:*:*:*:*:*:*:*": 22, "cpe:2.3:o:apple:mac_os_x:10.16.0:*:*:*:*:*:*:*": 23, "cpe:2.3:o:apple:mac_os_x:11.0.0:*:*:*:*:*:*:*": 24, "cpe:2.3:o:apple:mac_os_x:11.0.1:*:*:*:*:*:*:*": 25, "cpe:2.3:o:apple:mac_os_x:11.1.0:*:*:*:*:*:*:*": 26, "cpe:2.3:o:apple:mac_os_x:11.2.0:*:*:*:*:*:*:*": 27, "cpe:2.3:o:apple:mac_os_x:11.2.1:*:*:*:*:*:*:*": 28, "cpe:2.3:o:apple:mac_os_x:11.2.2:*:*:*:*:*:*:*": 29, "cpe:2.3:o:apple:mac_os_x:11.2.3:*:*:*:*:*:*:*": 30, "cpe:2.3:o:apple:mac_os_x:11.3.0:*:*:*:*:*:*:*": 31, "cpe:2.3:o:canonical:ubuntu_linux:19.10:*:*:*:*:*:*:*": 32, "cpe:2.3:o:canonical:ubuntu_linux:20.04.2:*:*:*:*:*:*:*": 33, "cpe:2.3:o:centos:centos_linux:7.8.2003:*:*:*:*:*:*:*": 34, "cpe:2.3:o:debian:debian_linux:10.0:*:*:*:*:*:*:*": 35, "cpe:2.3:o:deepin:deepin_linux:20.1:*:*:*:*:*:*:*": 36, "cpe:2.3:o:fedoraproject:fedora_linux:30:*:*:*:*:*:*:*": 37, "cpe:2.3:o:microsoft:windows_10:1507:*:*:*:*:*:*:*": 38, "cpe:2.3:o:microsoft:windows_10:1511:*:*:*:*:*:*:*": 39, "cpe:2.3:o:microsoft:windows_10:1607:*:*:*:*:*:*:*": 40, "cpe:2.3:o:microsoft:windows_10:1703:*:*:*:*:*:*:*": 41, "cpe:2.3:o:microsoft:windows_10:1709:*:*:*:*:*:*:*": 42, "cpe:2.3:o:microsoft:windows_10:1803:*:*:*:*:*:*:*": 43, "cpe:2.3:o:microsoft:windows_10:1809:*:*:*:*:*:*:*": 44, "cpe:2.3:o:microsoft:windows_10:1903:*:*:*:*:*:*:*": 45, "cpe:2.3:o:microsoft:windows_10:1909:*:*:*:*:*:*:*": 46, "cpe:2.3:o:microsoft:windows_10:2004:*:*:*:*:*:*:*": 47, "cpe:2.3:o:microsoft:windows_10:20H2:*:*:*:*:*:*:*": 48, "cpe:2.3:o:microsoft:windows_7:7601:*:*:*:*:*:*:*": 49, "cpe:2.3:o:microsoft:windows_8.1:9600:*:*:*:*:*:*:*": 50, "cpe:2.3:o:microsoft:windows_8:9200:*:*:*:*:*:*:*": 51}, "os_len": 52} \ No newline at end of file diff --git a/resources/public_suffix_list.dat.gz b/resources/public_suffix_list.dat.gz deleted file mode 100644 index dea18c8e..00000000 Binary files a/resources/public_suffix_list.dat.gz and /dev/null differ diff --git a/resources/pyasn.db b/resources/pyasn.db deleted file mode 100644 index ff0ec67f..00000000 --- a/resources/pyasn.db +++ /dev/null @@ -1,430965 +0,0 @@ -1.0.0.0/24 13335 -1.0.4.0/22 56203 -1.0.16.0/24 2519 -1.0.64.0/18 18144 -1.0.128.0/17 23969 -1.1.1.0/24 13335 -1.1.8.0/24 4134 -1.1.20.0/24 133948 -1.1.64.0/19 2519 -1.1.103.0/24 2519 -1.1.104.0/21 2519 -1.1.112.0/20 2519 -1.1.128.0/17 23969 -1.2.4.0/24 24151 -1.2.11.0/24 18046 -1.2.128.0/17 23969 -1.3.33.0/24 133741 -1.3.34.0/24 133948 -1.3.101.0/24 133948 -1.3.200.0/24 45250 -1.4.128.0/17 23969 -1.5.0.0/16 4725 -1.6.0.0/17 9583 -1.6.128.0/21 9583 -1.6.136.0/24 132215 -1.6.137.0/24 9583 -1.6.138.0/23 9583 -1.6.140.0/22 9583 -1.6.144.0/20 9583 -1.6.160.0/19 9583 -1.6.194.0/23 9583 -1.6.196.0/22 9583 -1.6.200.0/21 9583 -1.6.208.0/21 9583 -1.6.216.0/23 9583 -1.6.218.0/24 9583 -1.6.219.0/24 137130 -1.6.220.0/22 9583 -1.6.224.0/23 9583 -1.6.226.0/23 132215 -1.6.228.0/24 132215 -1.6.229.0/24 4755 -1.6.230.0/24 4755 -1.6.231.0/24 9583 -1.6.232.0/21 9583 -1.6.240.0/20 9583 -1.7.128.0/20 9583 -1.7.144.0/21 9583 -1.7.152.0/22 9583 -1.8.1.0/24 38345 -1.8.8.0/24 38345 -1.9.0.0/16 4788 -1.10.72.0/23 133948 -1.10.99.0/24 138449 -1.10.128.0/17 23969 -1.11.0.0/21 18313 -1.11.24.0/21 18313 -1.11.40.0/21 18313 -1.11.56.0/21 18313 -1.11.64.0/20 38091 -1.11.80.0/21 38091 -1.11.88.0/22 38091 -1.11.92.0/23 45996 -1.11.94.0/24 45996 -1.11.95.0/24 38091 -1.11.96.0/19 38669 -1.11.128.0/17 17839 -1.16.0.0/18 45996 -1.18.116.0/24 131098 -1.18.118.0/24 131099 -1.18.119.0/24 131100 -1.18.122.0/23 23599 -1.18.125.0/24 23599 -1.18.126.0/24 23599 -1.18.127.0/24 23596 -1.18.128.0/23 23596 -1.18.130.0/24 23596 -1.18.132.0/23 23600 -1.18.134.0/24 23600 -1.20.0.0/18 23969 -1.20.64.0/19 23969 -1.20.96.0/20 23969 -1.20.112.0/22 23969 -1.20.116.0/24 23969 -1.20.117.0/24 56120 -1.20.118.0/24 23969 -1.20.119.0/24 56120 -1.20.120.0/23 56120 -1.20.122.0/23 23969 -1.20.124.0/24 23969 -1.20.125.0/24 56120 -1.20.126.0/23 56120 -1.20.128.0/17 23969 -1.21.0.0/16 2519 -1.22.3.0/24 45528 -1.22.4.0/22 45528 -1.22.8.0/23 45528 -1.22.11.0/24 45528 -1.22.12.0/24 45528 -1.22.14.0/23 45528 -1.22.16.0/22 45528 -1.22.24.0/22 45528 -1.22.30.0/23 45528 -1.22.33.0/24 45528 -1.22.36.0/23 45528 -1.22.40.0/23 45528 -1.22.43.0/24 45528 -1.22.44.0/22 45528 -1.22.48.0/21 45528 -1.22.57.0/24 45528 -1.22.58.0/23 45528 -1.22.60.0/23 45528 -1.22.64.0/22 45528 -1.22.69.0/24 45528 -1.22.70.0/23 45528 -1.22.72.0/22 45528 -1.22.77.0/24 45528 -1.22.78.0/23 45528 -1.22.80.0/21 45528 -1.22.88.0/22 45528 -1.22.96.0/23 45528 -1.22.99.0/24 45528 -1.22.100.0/22 45528 -1.22.104.0/22 45528 -1.22.108.0/23 45528 -1.22.112.0/23 45528 -1.22.116.0/22 45528 -1.22.120.0/21 45528 -1.22.132.0/22 45528 -1.22.136.0/22 45528 -1.22.140.0/24 45528 -1.22.144.0/20 45528 -1.22.160.0/23 45528 -1.22.163.0/24 45528 -1.22.164.0/22 45528 -1.22.170.0/23 45528 -1.22.172.0/23 45528 -1.22.176.0/21 45528 -1.22.184.0/22 45528 -1.22.188.0/23 45528 -1.22.192.0/20 45528 -1.22.208.0/23 45528 -1.22.210.0/24 45528 -1.22.214.0/23 45528 -1.22.228.0/22 45528 -1.22.232.0/22 45528 -1.22.240.0/22 45528 -1.22.248.0/21 45528 -1.23.0.0/22 45528 -1.23.4.0/23 45528 -1.23.6.0/24 45528 -1.23.10.0/23 45528 -1.23.13.0/24 45528 -1.23.15.0/24 45528 -1.23.16.0/21 45528 -1.23.25.0/24 45528 -1.23.26.0/23 45528 -1.23.28.0/22 45528 -1.23.33.0/24 45528 -1.23.34.0/23 45528 -1.23.36.0/22 45528 -1.23.40.0/22 45528 -1.23.44.0/23 45528 -1.23.47.0/24 45528 -1.23.48.0/22 45528 -1.23.52.0/24 45528 -1.23.55.0/24 45528 -1.23.56.0/23 45528 -1.23.61.0/24 45528 -1.23.62.0/23 45528 -1.23.68.0/23 45528 -1.23.70.0/24 45528 -1.23.72.0/21 45528 -1.23.80.0/21 45528 -1.23.89.0/24 45528 -1.23.90.0/23 45528 -1.23.92.0/22 45528 -1.23.97.0/24 45528 -1.23.98.0/23 45528 -1.23.104.0/21 45528 -1.23.119.0/24 45528 -1.23.121.0/24 45528 -1.23.122.0/23 45528 -1.23.124.0/22 45528 -1.23.128.0/24 45528 -1.23.130.0/23 45528 -1.23.132.0/24 45528 -1.23.140.0/24 45528 -1.23.142.0/23 45528 -1.23.144.0/21 45528 -1.23.160.0/21 45528 -1.23.174.0/23 45528 -1.23.176.0/21 45528 -1.23.185.0/24 45528 -1.23.186.0/23 45528 -1.23.188.0/22 45528 -1.23.192.0/24 45528 -1.23.194.0/23 45528 -1.23.196.0/24 45528 -1.23.198.0/24 45528 -1.23.200.0/22 45528 -1.23.204.0/24 45528 -1.23.206.0/23 45528 -1.23.208.0/22 45528 -1.23.212.0/23 45528 -1.23.214.0/24 45528 -1.23.216.0/22 45528 -1.23.220.0/24 45528 -1.23.224.0/20 45528 -1.23.240.0/22 45528 -1.23.245.0/24 45528 -1.23.246.0/23 45528 -1.23.248.0/21 45528 -1.24.0.0/19 4837 -1.24.32.0/21 139007 -1.24.40.0/21 4837 -1.24.48.0/20 4837 -1.24.64.0/20 4837 -1.24.80.0/21 139007 -1.24.88.0/22 139007 -1.24.92.0/23 139007 -1.24.94.0/24 139007 -1.24.95.0/24 4837 -1.24.96.0/19 4837 -1.24.128.0/18 4837 -1.24.192.0/21 139007 -1.24.200.0/21 4837 -1.24.208.0/21 4837 -1.24.216.0/22 139007 -1.24.220.0/22 4837 -1.24.224.0/21 4837 -1.24.232.0/22 4837 -1.24.236.0/22 139007 -1.24.240.0/20 4837 -1.25.0.0/21 139007 -1.25.8.0/21 4837 -1.25.16.0/21 4837 -1.25.24.0/21 139007 -1.25.32.0/22 139007 -1.25.36.0/22 4837 -1.25.40.0/21 139007 -1.25.48.0/20 4837 -1.25.64.0/20 4837 -1.25.80.0/21 4837 -1.25.88.0/22 4837 -1.25.92.0/22 139007 -1.25.96.0/19 4837 -1.25.128.0/21 139007 -1.25.136.0/21 4837 -1.25.144.0/20 4837 -1.25.160.0/19 4837 -1.25.192.0/18 4837 -1.26.0.0/15 4837 -1.28.0.0/21 4837 -1.28.8.0/22 4837 -1.28.12.0/22 139007 -1.28.16.0/21 139007 -1.28.24.0/22 139007 -1.28.28.0/22 4837 -1.28.32.0/19 4837 -1.28.64.0/19 4837 -1.28.96.0/22 139007 -1.28.100.0/22 4837 -1.28.104.0/21 4837 -1.28.112.0/20 4837 -1.28.128.0/21 4837 -1.28.136.0/22 4837 -1.28.140.0/22 139007 -1.28.144.0/22 4837 -1.28.148.0/22 139007 -1.28.152.0/22 4837 -1.28.156.0/22 139007 -1.28.160.0/21 4837 -1.28.168.0/22 139007 -1.28.172.0/22 4837 -1.28.176.0/22 139007 -1.28.180.0/22 4837 -1.28.184.0/21 4837 -1.28.192.0/19 4837 -1.28.224.0/22 139007 -1.28.228.0/22 4837 -1.28.232.0/21 4837 -1.28.240.0/20 4837 -1.29.0.0/16 4837 -1.30.0.0/19 4837 -1.30.32.0/21 4837 -1.30.40.0/21 139007 -1.30.48.0/22 139007 -1.30.52.0/22 4837 -1.30.56.0/21 4837 -1.30.64.0/20 4837 -1.30.80.0/21 4837 -1.30.88.0/22 4837 -1.30.92.0/22 139007 -1.30.96.0/21 139007 -1.30.104.0/21 4837 -1.30.112.0/20 4837 -1.30.128.0/19 4837 -1.30.160.0/22 4837 -1.30.164.0/22 139007 -1.30.168.0/21 4837 -1.30.176.0/22 4837 -1.30.180.0/22 139007 -1.30.184.0/22 139007 -1.30.188.0/22 4837 -1.30.192.0/18 4837 -1.31.0.0/19 4837 -1.31.32.0/22 4837 -1.31.36.0/22 139007 -1.31.40.0/21 4837 -1.31.48.0/20 4837 -1.31.64.0/18 4837 -1.31.128.0/18 4837 -1.31.192.0/22 139007 -1.31.196.0/22 4837 -1.31.200.0/21 4837 -1.31.208.0/20 4837 -1.31.224.0/19 4837 -1.32.0.0/17 4788 -1.32.192.0/20 64050 -1.32.208.0/21 64050 -1.32.216.0/22 64050 -1.32.220.0/24 64050 -1.32.222.0/23 64050 -1.32.224.0/23 64050 -1.32.226.0/24 64050 -1.32.228.0/23 64050 -1.32.231.0/24 64050 -1.32.233.0/24 64050 -1.32.234.0/23 64050 -1.32.236.0/22 64050 -1.32.240.0/23 64050 -1.32.242.0/24 64050 -1.32.244.0/23 64050 -1.32.246.0/24 64050 -1.32.247.0/24 135026 -1.32.248.0/21 64050 -1.33.0.0/16 2514 -1.34.0.0/15 3462 -1.36.0.0/16 4760 -1.37.0.0/16 4775 -1.38.0.0/19 38266 -1.38.32.0/21 38266 -1.38.40.0/22 38266 -1.38.44.0/22 38226 -1.38.48.0/21 38266 -1.38.56.0/22 38226 -1.38.60.0/22 38266 -1.38.64.0/18 38266 -1.38.128.0/20 38266 -1.38.144.0/21 38266 -1.38.152.0/22 38266 -1.38.156.0/22 38226 -1.38.160.0/21 38266 -1.38.176.0/20 38266 -1.38.192.0/21 38266 -1.38.200.0/23 38266 -1.38.202.0/23 38226 -1.38.208.0/24 38266 -1.38.232.0/21 38266 -1.38.240.0/21 38266 -1.39.4.0/22 38266 -1.39.8.0/21 38266 -1.39.16.0/20 38266 -1.39.32.0/22 38266 -1.39.40.0/22 38266 -1.39.48.0/21 38266 -1.39.60.0/22 38266 -1.39.75.0/24 38266 -1.39.76.0/22 38266 -1.39.80.0/21 38266 -1.39.88.0/22 38266 -1.39.100.0/22 38266 -1.39.112.0/22 38266 -1.39.128.0/17 38266 -1.40.0.0/14 4804 -1.44.0.0/18 4804 -1.44.64.0/18 7474 -1.44.128.0/17 7474 -1.45.0.0/16 45083 -1.46.0.0/15 24378 -1.48.0.0/15 4134 -1.50.0.0/16 4134 -1.51.0.0/16 4538 -1.52.0.0/14 18403 -1.56.0.0/13 4837 -1.64.0.0/16 4760 -1.65.0.0/17 4760 -1.65.128.0/19 4760 -1.65.160.0/20 4760 -1.65.176.0/21 4760 -1.65.184.0/22 4760 -1.65.188.0/23 4760 -1.65.190.0/23 9444 -1.65.192.0/18 4760 -1.66.20.0/22 9605 -1.66.24.0/21 9605 -1.66.32.0/19 9605 -1.66.68.0/22 9605 -1.66.90.0/24 9605 -1.66.96.0/19 9605 -1.66.128.0/17 9605 -1.67.0.0/17 9605 -1.67.128.0/18 9605 -1.67.192.0/19 9605 -1.67.224.0/21 9605 -1.67.232.0/22 9605 -1.67.236.0/23 9605 -1.67.240.0/20 9605 -1.68.0.0/15 4134 -1.70.0.0/16 4134 -1.71.0.0/17 4134 -1.71.128.0/20 4134 -1.71.144.0/20 132147 -1.71.160.0/21 132147 -1.71.168.0/21 4134 -1.71.176.0/20 4134 -1.71.192.0/18 4134 -1.72.0.0/15 9605 -1.74.0.0/17 9605 -1.74.192.0/23 9605 -1.74.196.0/22 9605 -1.74.200.0/21 9605 -1.74.208.0/20 9605 -1.74.240.0/20 9605 -1.75.0.0/21 9605 -1.75.8.0/22 9605 -1.75.12.0/23 9605 -1.75.14.0/24 9605 -1.75.16.0/20 9605 -1.75.32.0/19 9605 -1.75.64.0/18 9605 -1.75.128.0/20 9605 -1.75.144.0/21 9605 -1.75.160.0/19 9605 -1.75.196.0/22 9605 -1.75.202.0/23 9605 -1.75.204.0/22 9605 -1.75.208.0/20 9605 -1.75.228.0/22 9605 -1.75.232.0/21 9605 -1.75.240.0/20 9605 -1.76.4.0/22 9605 -1.76.8.0/21 9605 -1.76.16.0/20 9605 -1.76.32.0/19 9605 -1.76.64.0/21 9605 -1.76.72.0/22 9605 -1.76.80.0/21 9605 -1.76.148.0/22 9605 -1.76.152.0/21 9605 -1.76.160.0/19 9605 -1.76.192.0/19 9605 -1.76.224.0/22 9605 -1.77.0.0/16 9605 -1.78.0.0/18 9605 -1.78.64.0/19 9605 -1.78.96.0/22 9605 -1.78.128.0/17 9605 -1.79.2.0/23 9605 -1.79.4.0/24 9605 -1.79.6.0/23 9605 -1.79.8.0/21 9605 -1.79.16.0/20 9605 -1.79.32.0/19 9605 -1.79.66.0/23 9605 -1.79.68.0/22 9605 -1.79.72.0/21 9605 -1.79.80.0/20 9605 -1.79.96.0/19 9605 -1.79.128.0/19 9605 -1.79.160.0/20 9605 -1.79.176.0/21 9605 -1.79.216.0/21 9605 -1.79.224.0/19 9605 -1.80.0.0/16 4134 -1.81.0.0/21 134768 -1.81.8.0/21 4134 -1.81.16.0/20 4134 -1.81.32.0/19 4134 -1.81.64.0/18 4134 -1.81.128.0/17 4134 -1.82.0.0/17 4134 -1.82.128.0/18 4134 -1.82.192.0/20 4134 -1.82.208.0/21 134418 -1.82.216.0/23 134418 -1.82.218.0/24 134418 -1.82.219.0/24 134768 -1.82.220.0/22 134418 -1.82.224.0/21 4134 -1.82.232.0/21 134768 -1.82.240.0/22 134418 -1.82.244.0/24 134768 -1.82.245.0/24 134418 -1.82.246.0/23 134418 -1.82.248.0/21 134418 -1.83.0.0/16 4134 -1.84.0.0/14 4134 -1.88.0.0/14 24138 -1.92.0.0/20 4134 -1.93.0.0/18 4847 -1.93.64.0/20 4847 -1.93.80.0/20 17964 -1.93.96.0/19 4847 -1.93.128.0/17 4847 -1.94.0.0/15 4808 -1.96.0.0/12 4766 -1.112.0.0/14 37903 -1.118.0.0/24 137753 -1.119.0.0/17 23724 -1.119.128.0/18 4847 -1.119.192.0/21 4808 -1.119.200.0/22 4808 -1.119.204.0/24 59034 -1.120.0.0/13 1221 -1.128.0.0/11 1221 -1.160.0.0/12 3462 -1.176.0.0/17 9845 -1.176.128.0/17 10066 -1.177.0.0/18 17577 -1.177.64.0/18 9845 -1.177.128.0/20 10037 -1.177.144.0/21 9845 -1.177.152.0/21 10037 -1.177.160.0/19 9697 -1.177.192.0/20 9697 -1.177.208.0/22 9697 -1.177.212.0/22 10037 -1.177.216.0/22 10037 -1.177.220.0/22 9845 -1.177.224.0/19 9845 -1.178.0.0/16 9723 -1.179.0.0/17 9723 -1.179.128.0/18 131293 -1.179.192.0/20 131293 -1.179.208.0/22 131293 -1.179.212.0/24 131293 -1.179.213.0/24 137241 -1.179.214.0/23 131293 -1.179.216.0/22 131293 -1.179.220.0/23 131293 -1.179.222.0/24 131293 -1.179.223.0/24 45806 -1.179.224.0/20 23969 -1.179.240.0/22 23969 -1.179.244.0/23 23969 -1.179.246.0/23 134166 -1.179.248.0/21 23969 -1.180.0.0/14 4134 -1.184.0.0/15 4538 -1.186.0.0/22 45769 -1.186.4.0/24 45769 -1.186.6.0/23 45769 -1.186.8.0/21 45769 -1.186.16.0/21 45769 -1.186.24.0/22 45769 -1.186.28.0/24 45769 -1.186.31.0/24 45769 -1.186.32.0/23 45769 -1.186.34.0/24 45769 -1.186.36.0/22 45769 -1.186.40.0/21 45769 -1.186.48.0/20 45769 -1.186.64.0/21 45769 -1.186.72.0/23 45769 -1.186.74.0/24 45769 -1.186.75.0/24 45582 -1.186.76.0/22 45769 -1.186.80.0/22 45769 -1.186.84.0/23 45769 -1.186.87.0/24 45769 -1.186.88.0/21 45769 -1.186.96.0/21 45769 -1.186.104.0/23 45582 -1.186.106.0/23 45769 -1.186.108.0/22 45769 -1.186.112.0/20 45769 -1.186.128.0/22 45769 -1.186.136.0/21 45769 -1.186.144.0/21 45769 -1.186.156.0/22 45769 -1.186.160.0/22 45769 -1.186.164.0/24 45769 -1.186.168.0/24 45769 -1.186.170.0/23 45769 -1.186.173.0/24 45769 -1.186.174.0/23 45769 -1.186.177.0/24 45769 -1.186.178.0/23 45769 -1.186.180.0/22 45769 -1.186.184.0/21 45769 -1.186.192.0/23 45769 -1.186.194.0/24 45769 -1.186.196.0/22 45769 -1.186.200.0/21 45769 -1.186.208.0/24 45769 -1.186.209.0/24 45582 -1.186.212.0/24 45769 -1.186.215.0/24 45769 -1.186.216.0/24 17443 -1.186.217.0/24 45769 -1.186.218.0/23 45769 -1.186.220.0/22 45769 -1.186.224.0/19 45769 -1.187.0.0/21 45271 -1.187.12.0/22 45271 -1.187.16.0/21 45271 -1.187.24.0/22 45271 -1.187.32.0/19 45271 -1.187.64.0/18 45271 -1.187.128.0/20 45271 -1.187.176.0/20 45271 -1.187.208.0/20 45271 -1.187.240.0/20 45271 -1.188.0.0/14 4837 -1.192.0.0/17 4134 -1.192.128.0/21 4134 -1.192.136.0/23 137687 -1.192.138.0/23 4134 -1.192.140.0/22 4134 -1.192.144.0/20 4134 -1.192.160.0/19 4134 -1.192.192.0/22 137687 -1.192.196.0/22 4134 -1.192.200.0/21 4134 -1.192.208.0/20 4134 -1.192.224.0/19 4134 -1.193.0.0/17 4134 -1.193.128.0/20 4134 -1.193.144.0/23 4134 -1.193.146.0/23 139018 -1.193.148.0/22 4134 -1.193.152.0/21 4134 -1.193.160.0/20 4134 -1.193.176.0/21 4134 -1.193.184.0/22 4134 -1.193.188.0/24 139018 -1.193.189.0/24 4134 -1.193.190.0/23 4134 -1.193.192.0/20 4134 -1.193.208.0/22 4134 -1.193.212.0/23 139018 -1.193.214.0/23 4134 -1.193.216.0/23 139018 -1.193.218.0/24 139018 -1.193.219.0/24 4134 -1.193.220.0/22 4134 -1.193.224.0/19 4134 -1.194.0.0/17 4134 -1.194.128.0/18 4134 -1.194.192.0/19 4134 -1.194.224.0/20 137687 -1.194.240.0/20 4134 -1.195.0.0/16 4134 -1.196.0.0/15 4134 -1.198.0.0/22 4134 -1.198.4.0/23 137687 -1.198.6.0/23 4134 -1.198.8.0/21 4134 -1.198.16.0/20 4134 -1.198.32.0/19 4134 -1.198.64.0/18 4134 -1.198.128.0/17 4134 -1.199.0.0/18 4134 -1.199.64.0/20 4134 -1.199.80.0/21 4134 -1.199.88.0/22 4134 -1.199.92.0/23 137687 -1.199.94.0/24 4134 -1.199.95.0/24 137687 -1.199.96.0/19 4134 -1.199.128.0/18 4134 -1.199.192.0/19 4134 -1.199.224.0/20 4134 -1.199.240.0/21 4134 -1.199.248.0/23 4134 -1.199.250.0/24 139018 -1.199.251.0/24 4134 -1.199.252.0/22 4134 -1.200.0.0/16 24157 -1.201.0.0/24 38099 -1.201.64.0/18 9286 -1.201.128.0/17 9286 -1.202.0.0/16 4847 -1.203.0.0/18 4847 -1.203.64.0/19 4847 -1.203.96.0/20 4847 -1.203.112.0/23 23724 -1.203.114.0/24 4847 -1.203.115.0/24 23724 -1.203.116.0/22 4847 -1.203.120.0/22 4847 -1.203.124.0/22 23724 -1.203.128.0/17 4847 -1.204.0.0/14 4134 -1.208.0.0/16 3786 -1.209.0.0/18 3786 -1.209.64.0/20 3786 -1.209.80.0/21 3786 -1.209.88.0/23 3786 -1.209.90.0/23 9526 -1.209.92.0/24 9526 -1.209.93.0/24 3786 -1.209.94.0/23 3786 -1.209.96.0/20 3786 -1.209.112.0/21 3786 -1.209.120.0/24 45376 -1.209.121.0/24 3786 -1.209.122.0/23 3786 -1.209.124.0/22 3786 -1.209.128.0/19 3786 -1.209.160.0/20 3786 -1.209.176.0/22 3786 -1.209.180.0/24 3786 -1.209.181.0/24 18305 -1.209.182.0/24 3786 -1.209.183.0/24 18305 -1.209.184.0/24 55633 -1.209.185.0/24 18305 -1.209.186.0/23 3786 -1.209.188.0/22 3786 -1.209.192.0/22 3786 -1.209.196.0/23 3786 -1.209.198.0/24 3786 -1.209.199.0/24 45974 -1.209.200.0/22 3786 -1.209.204.0/24 9684 -1.209.205.0/24 3786 -1.209.206.0/23 3786 -1.209.208.0/23 3786 -1.209.210.0/24 3786 -1.209.211.0/24 9771 -1.209.212.0/22 3786 -1.209.216.0/21 3786 -1.209.224.0/19 3786 -1.210.0.0/15 3786 -1.212.0.0/15 3786 -1.214.0.0/18 3786 -1.214.64.0/21 3786 -1.214.72.0/23 9638 -1.214.74.0/23 3786 -1.214.76.0/22 3786 -1.214.80.0/21 3786 -1.214.88.0/22 3786 -1.214.92.0/24 9638 -1.214.93.0/24 3786 -1.214.94.0/23 3786 -1.214.96.0/20 3786 -1.214.112.0/21 3786 -1.214.120.0/22 3786 -1.214.124.0/23 3786 -1.214.126.0/23 55627 -1.214.128.0/17 3786 -1.215.0.0/16 3786 -1.216.0.0/14 3786 -1.220.0.0/15 3786 -1.222.0.0/17 3786 -1.222.128.0/20 9569 -1.222.144.0/21 9569 -1.222.152.0/21 9762 -1.222.160.0/19 9569 -1.222.192.0/23 23584 -1.222.194.0/24 23584 -1.222.195.0/24 7562 -1.222.196.0/22 7562 -1.222.200.0/22 7562 -1.222.204.0/23 7562 -1.222.206.0/24 7562 -1.222.207.0/24 9319 -1.222.208.0/21 3786 -1.222.216.0/24 3786 -1.222.217.0/24 9849 -1.222.218.0/23 3786 -1.222.220.0/22 3786 -1.222.224.0/19 3786 -1.223.0.0/16 3786 -1.224.0.0/20 9277 -1.224.16.0/20 17846 -1.224.32.0/22 46004 -1.224.36.0/23 46004 -1.224.38.0/24 10196 -1.224.39.0/24 46004 -1.224.40.0/21 46004 -1.224.48.0/20 9318 -1.224.64.0/18 9318 -1.224.128.0/19 9318 -1.224.160.0/21 9318 -1.224.168.0/22 9318 -1.224.172.0/22 55586 -1.224.176.0/22 9318 -1.224.180.0/24 45370 -1.224.181.0/24 9318 -1.224.182.0/23 9318 -1.224.184.0/23 9318 -1.224.186.0/24 9318 -1.224.187.0/24 55615 -1.224.188.0/23 55615 -1.224.190.0/23 9318 -1.224.192.0/18 9318 -1.225.0.0/18 9318 -1.225.64.0/20 9318 -1.225.80.0/21 9318 -1.225.88.0/23 9318 -1.225.90.0/24 9318 -1.225.91.0/24 9647 -1.225.92.0/22 9647 -1.225.96.0/19 9318 -1.225.128.0/19 9318 -1.225.160.0/24 9647 -1.225.161.0/24 9318 -1.225.162.0/23 9318 -1.225.164.0/22 9318 -1.225.168.0/21 9318 -1.225.176.0/20 9318 -1.225.192.0/18 9318 -1.226.0.0/16 9318 -1.227.0.0/19 9318 -1.227.32.0/20 9318 -1.227.48.0/21 9318 -1.227.56.0/22 9318 -1.227.60.0/24 9318 -1.227.61.0/24 9973 -1.227.62.0/23 9318 -1.227.64.0/20 9318 -1.227.80.0/23 9318 -1.227.82.0/24 9849 -1.227.83.0/24 9318 -1.227.84.0/22 9318 -1.227.88.0/21 9318 -1.227.96.0/19 9318 -1.227.128.0/19 9318 -1.227.160.0/21 9318 -1.227.168.0/24 9851 -1.227.169.0/24 9318 -1.227.170.0/23 9318 -1.227.172.0/22 9318 -1.227.176.0/20 9318 -1.227.192.0/18 9318 -1.228.0.0/17 9318 -1.228.128.0/18 9318 -1.228.192.0/20 9318 -1.228.208.0/22 9318 -1.228.212.0/23 9318 -1.228.214.0/24 10064 -1.228.215.0/24 9318 -1.228.216.0/21 9318 -1.228.224.0/19 9318 -1.229.0.0/16 9318 -1.230.0.0/18 9318 -1.230.64.0/19 9318 -1.230.96.0/21 9318 -1.230.104.0/24 55602 -1.230.105.0/24 9318 -1.230.106.0/23 9318 -1.230.108.0/22 9318 -1.230.112.0/21 9318 -1.230.120.0/23 9318 -1.230.122.0/24 17873 -1.230.123.0/24 45980 -1.230.124.0/22 45980 -1.230.128.0/23 45980 -1.230.130.0/24 45980 -1.230.131.0/24 9318 -1.230.132.0/22 9318 -1.230.136.0/21 9318 -1.230.144.0/22 9318 -1.230.148.0/23 9318 -1.230.150.0/23 45980 -1.230.152.0/21 9318 -1.230.160.0/22 9318 -1.230.164.0/24 45980 -1.230.165.0/24 9318 -1.230.166.0/23 9318 -1.230.168.0/21 9318 -1.230.176.0/20 9318 -1.230.192.0/22 9318 -1.230.196.0/23 9318 -1.230.198.0/24 9318 -1.230.199.0/24 9638 -1.230.200.0/23 9638 -1.230.202.0/23 9318 -1.230.204.0/22 9318 -1.230.208.0/20 9318 -1.230.224.0/19 9318 -1.231.0.0/20 9318 -1.231.16.0/22 9318 -1.231.20.0/24 10069 -1.231.21.0/24 9318 -1.231.22.0/23 9318 -1.231.24.0/21 9318 -1.231.32.0/19 9318 -1.231.64.0/18 9318 -1.231.128.0/18 9318 -1.231.192.0/24 9318 -1.231.193.0/24 23579 -1.231.194.0/23 9318 -1.231.196.0/22 9318 -1.231.200.0/21 9318 -1.231.208.0/20 9318 -1.231.224.0/19 9318 -1.232.0.0/22 9318 -1.232.4.0/24 9318 -1.232.5.0/24 10167 -1.232.6.0/23 9318 -1.232.8.0/22 9318 -1.232.12.0/24 38122 -1.232.13.0/24 9318 -1.232.14.0/23 9318 -1.232.16.0/20 9318 -1.232.32.0/20 9318 -1.232.48.0/24 9944 -1.232.49.0/24 16477 -1.232.50.0/24 9944 -1.232.51.0/24 9318 -1.232.52.0/22 9318 -1.232.56.0/21 9318 -1.232.64.0/18 9318 -1.232.128.0/19 9318 -1.232.160.0/20 9318 -1.232.176.0/21 9318 -1.232.184.0/22 9318 -1.232.188.0/23 9318 -1.232.190.0/23 9647 -1.232.192.0/18 9318 -1.233.0.0/23 9318 -1.233.2.0/24 38123 -1.233.3.0/24 9318 -1.233.4.0/22 9318 -1.233.8.0/21 9318 -1.233.16.0/20 9318 -1.233.32.0/19 9318 -1.233.64.0/18 9318 -1.233.128.0/18 9318 -1.233.192.0/21 9318 -1.233.200.0/22 9318 -1.233.204.0/23 9318 -1.233.206.0/23 4665 -1.233.208.0/20 4665 -1.233.224.0/19 4665 -1.234.0.0/16 9318 -1.235.0.0/18 9318 -1.235.64.0/19 9318 -1.235.96.0/22 9318 -1.235.100.0/24 9318 -1.235.101.0/24 18314 -1.235.102.0/23 9318 -1.235.104.0/21 9318 -1.235.112.0/20 9318 -1.235.128.0/18 9318 -1.235.192.0/24 9318 -1.235.193.0/24 45980 -1.235.194.0/23 9318 -1.235.196.0/22 9318 -1.235.200.0/21 9318 -1.235.208.0/20 9318 -1.235.224.0/19 9318 -1.236.0.0/23 38396 -1.236.2.0/23 38390 -1.236.4.0/24 38390 -1.236.5.0/24 38396 -1.236.6.0/23 9318 -1.236.8.0/21 9318 -1.236.16.0/20 9318 -1.236.32.0/19 9318 -1.236.64.0/18 9318 -1.236.128.0/18 9318 -1.236.192.0/20 9318 -1.236.208.0/21 9318 -1.236.216.0/22 9318 -1.236.220.0/23 9318 -1.236.222.0/24 10185 -1.236.223.0/24 9318 -1.236.224.0/19 9318 -1.237.0.0/23 9318 -1.237.2.0/23 38392 -1.237.4.0/24 9318 -1.237.5.0/24 38394 -1.237.6.0/23 9318 -1.237.8.0/21 9318 -1.237.16.0/20 9318 -1.237.32.0/19 9318 -1.237.64.0/18 9318 -1.237.128.0/22 9318 -1.237.132.0/23 9318 -1.237.134.0/24 38697 -1.237.135.0/24 9318 -1.237.136.0/21 9318 -1.237.144.0/20 9318 -1.237.160.0/21 9318 -1.237.168.0/22 9318 -1.237.172.0/23 9318 -1.237.174.0/24 9272 -1.237.175.0/24 9318 -1.237.176.0/22 9318 -1.237.180.0/24 9318 -1.237.181.0/24 18317 -1.237.182.0/23 9318 -1.237.184.0/21 9318 -1.237.192.0/19 9318 -1.237.224.0/20 9318 -1.237.240.0/22 9318 -1.237.244.0/24 9318 -1.237.245.0/24 9272 -1.237.246.0/23 9318 -1.237.248.0/21 9318 -1.238.0.0/24 9318 -1.238.1.0/24 38697 -1.238.2.0/23 9318 -1.238.4.0/23 9318 -1.238.6.0/23 38402 -1.238.8.0/23 38400 -1.238.10.0/23 9318 -1.238.12.0/24 38411 -1.238.13.0/24 9318 -1.238.14.0/23 38401 -1.238.16.0/23 38394 -1.238.18.0/23 9318 -1.238.20.0/23 38399 -1.238.22.0/23 9318 -1.238.24.0/24 38402 -1.238.25.0/24 38401 -1.238.26.0/24 38401 -1.238.27.0/24 38400 -1.238.28.0/22 9318 -1.238.32.0/19 9318 -1.238.64.0/18 9318 -1.238.128.0/17 9318 -1.239.0.0/16 9318 -1.240.0.0/22 38415 -1.240.4.0/24 38415 -1.240.5.0/24 9318 -1.240.6.0/23 9318 -1.240.8.0/21 9318 -1.240.16.0/20 9318 -1.240.32.0/19 9318 -1.240.64.0/18 9318 -1.240.128.0/17 9318 -1.241.0.0/23 38408 -1.241.2.0/23 38403 -1.241.4.0/22 9318 -1.241.8.0/21 9318 -1.241.16.0/20 9318 -1.241.32.0/19 9318 -1.241.64.0/18 9318 -1.241.128.0/18 9318 -1.241.192.0/19 9318 -1.241.224.0/22 9318 -1.241.228.0/24 9318 -1.241.229.0/24 9638 -1.241.230.0/23 9318 -1.241.232.0/21 9318 -1.241.240.0/21 9318 -1.241.248.0/24 9638 -1.241.249.0/24 9318 -1.241.250.0/23 9318 -1.241.252.0/22 9318 -1.242.0.0/22 9318 -1.242.4.0/23 38407 -1.242.6.0/23 38414 -1.242.8.0/21 9318 -1.242.16.0/20 9318 -1.242.32.0/19 9318 -1.242.64.0/18 9318 -1.242.128.0/17 9318 -1.243.0.0/16 9318 -1.244.0.0/18 9318 -1.244.64.0/19 9318 -1.244.96.0/20 9318 -1.244.112.0/23 9318 -1.244.114.0/23 55615 -1.244.116.0/23 55615 -1.244.118.0/24 55615 -1.244.119.0/24 9318 -1.244.120.0/21 9318 -1.244.128.0/18 9318 -1.244.192.0/23 55615 -1.244.194.0/24 55615 -1.244.195.0/24 9318 -1.244.196.0/22 9318 -1.244.200.0/21 9318 -1.244.208.0/20 9318 -1.244.224.0/19 9318 -1.245.0.0/19 9318 -1.245.32.0/20 9318 -1.245.48.0/24 9318 -1.245.49.0/24 9523 -1.245.50.0/24 9523 -1.245.51.0/24 9318 -1.245.52.0/22 9318 -1.245.56.0/21 9318 -1.245.64.0/18 9318 -1.245.128.0/17 9318 -1.246.0.0/16 9318 -1.247.0.0/17 9318 -1.247.128.0/18 9318 -1.247.192.0/24 9318 -1.247.193.0/24 55625 -1.247.194.0/23 55625 -1.247.196.0/22 55625 -1.247.200.0/23 55625 -1.247.202.0/24 55625 -1.247.203.0/24 9318 -1.247.204.0/22 9318 -1.247.208.0/20 9318 -1.247.224.0/19 9318 -1.248.0.0/17 9318 -1.248.128.0/18 9318 -1.248.192.0/20 9318 -1.248.208.0/21 9318 -1.248.216.0/23 9318 -1.248.218.0/24 9318 -1.248.219.0/24 38688 -1.248.220.0/22 9318 -1.248.224.0/19 9318 -1.249.0.0/18 9318 -1.249.64.0/19 9318 -1.249.96.0/21 9318 -1.249.104.0/22 9318 -1.249.108.0/24 10062 -1.249.109.0/24 9318 -1.249.110.0/23 9318 -1.249.112.0/20 9318 -1.249.128.0/17 9318 -1.250.0.0/19 9318 -1.250.32.0/20 9318 -1.250.48.0/21 9318 -1.250.56.0/22 9318 -1.250.60.0/23 9318 -1.250.62.0/24 45972 -1.250.63.0/24 9318 -1.250.64.0/18 9318 -1.250.128.0/17 9318 -1.251.0.0/16 9318 -1.252.0.0/17 9318 -1.252.128.0/19 9318 -1.252.160.0/20 9318 -1.252.176.0/21 9318 -1.252.184.0/23 9318 -1.252.186.0/24 38112 -1.252.187.0/24 9318 -1.252.188.0/22 9318 -1.252.192.0/18 9318 -1.253.0.0/18 9318 -1.253.64.0/20 55618 -1.253.80.0/22 55618 -1.253.84.0/24 9318 -1.253.85.0/24 55618 -1.253.86.0/23 55618 -1.253.88.0/24 55618 -1.253.89.0/24 9318 -1.253.90.0/23 55618 -1.253.92.0/22 55618 -1.253.96.0/19 9318 -1.253.128.0/17 9318 -1.254.0.0/17 9318 -1.254.128.0/18 9318 -1.254.192.0/19 9318 -1.254.224.0/22 9318 -1.254.228.0/24 9526 -1.254.229.0/24 9318 -1.254.230.0/23 9318 -1.254.232.0/21 9318 -1.254.240.0/20 9318 -1.255.0.0/23 9318 -1.255.2.0/24 9318 -1.255.3.0/24 38389 -1.255.4.0/23 9318 -1.255.6.0/24 38389 -1.255.7.0/24 9318 -1.255.8.0/24 9318 -1.255.9.0/24 45980 -1.255.10.0/24 45980 -1.255.11.0/24 9318 -1.255.12.0/24 9958 -1.255.13.0/24 9318 -1.255.14.0/23 9318 -1.255.16.0/21 9318 -1.255.24.0/22 9318 -1.255.28.0/23 9318 -1.255.30.0/24 63199 -1.255.31.0/24 9318 -1.255.32.0/23 9318 -1.255.34.0/23 23930 -1.255.36.0/24 23930 -1.255.37.0/24 9318 -1.255.38.0/23 9318 -1.255.40.0/21 9318 -1.255.48.0/20 23576 -1.255.64.0/21 9318 -1.255.72.0/23 9318 -1.255.74.0/24 9318 -1.255.75.0/24 9638 -1.255.76.0/24 9318 -1.255.77.0/24 9638 -1.255.78.0/24 9638 -1.255.79.0/24 9318 -1.255.80.0/20 9318 -1.255.96.0/20 9318 -1.255.112.0/21 9318 -1.255.120.0/23 9318 -1.255.122.0/24 9318 -1.255.123.0/24 9770 -1.255.124.0/23 9770 -1.255.126.0/24 9770 -1.255.127.0/24 9318 -1.255.128.0/17 9318 -2.0.0.0/12 3215 -2.16.0.0/22 20940 -2.16.4.0/23 34164 -2.16.6.0/23 20940 -2.16.8.0/22 20940 -2.16.12.0/23 16625 -2.16.14.0/24 34164 -2.16.15.0/24 20940 -2.16.16.0/23 34164 -2.16.18.0/24 34164 -2.16.19.0/24 6762 -2.16.20.0/23 16625 -2.16.22.0/24 20940 -2.16.23.0/24 34164 -2.16.24.0/23 20940 -2.16.26.0/24 34164 -2.16.27.0/24 20940 -2.16.28.0/22 16625 -2.16.32.0/23 16625 -2.16.34.0/24 20940 -2.16.35.0/24 1273 -2.16.36.0/23 12222 -2.16.38.0/23 16625 -2.16.40.0/24 21342 -2.16.41.0/24 5511 -2.16.42.0/23 16625 -2.16.44.0/23 20940 -2.16.46.0/23 16625 -2.16.48.0/24 20940 -2.16.49.0/24 34164 -2.16.50.0/23 34164 -2.16.52.0/23 34164 -2.16.54.0/24 34164 -2.16.55.0/24 43639 -2.16.56.0/22 16625 -2.16.60.0/24 20940 -2.16.61.0/24 34164 -2.16.62.0/23 20940 -2.16.64.0/23 20940 -2.16.66.0/23 16625 -2.16.68.0/23 20940 -2.16.70.0/23 16625 -2.16.72.0/23 12956 -2.16.74.0/23 16625 -2.16.76.0/23 20940 -2.16.78.0/23 16625 -2.16.80.0/23 16625 -2.16.82.0/23 34164 -2.16.84.0/22 20940 -2.16.88.0/24 34164 -2.16.89.0/24 20940 -2.16.90.0/23 20940 -2.16.92.0/24 34164 -2.16.93.0/24 20940 -2.16.94.0/23 20940 -2.16.96.0/22 20940 -2.16.100.0/23 20940 -2.16.102.0/24 34164 -2.16.103.0/24 20940 -2.16.104.0/23 16625 -2.16.106.0/23 20940 -2.16.108.0/23 20940 -2.16.110.0/23 34164 -2.16.112.0/22 20940 -2.16.116.0/24 34164 -2.16.117.0/24 20940 -2.16.118.0/23 20940 -2.16.120.0/22 20940 -2.16.124.0/23 20940 -2.16.126.0/24 34164 -2.16.127.0/24 20940 -2.16.128.0/24 20940 -2.16.129.0/24 34164 -2.16.130.0/24 21342 -2.16.131.0/24 34164 -2.16.132.0/22 20940 -2.16.136.0/24 34164 -2.16.137.0/24 20940 -2.16.138.0/23 16625 -2.16.140.0/23 16625 -2.16.142.0/23 34164 -2.16.144.0/23 719 -2.16.146.0/23 16625 -2.16.148.0/23 1273 -2.16.150.0/23 20940 -2.16.152.0/24 1273 -2.16.153.0/24 20940 -2.16.154.0/23 20940 -2.16.156.0/22 20940 -2.16.160.0/22 20940 -2.16.164.0/24 34164 -2.16.165.0/24 20940 -2.16.166.0/23 20940 -2.16.168.0/24 20940 -2.16.169.0/24 34164 -2.16.170.0/24 20940 -2.16.171.0/24 34164 -2.16.172.0/23 20940 -2.16.174.0/23 16625 -2.16.176.0/23 34164 -2.16.178.0/23 6762 -2.16.180.0/22 20940 -2.16.184.0/23 16625 -2.16.186.0/23 20940 -2.16.188.0/23 20940 -2.16.190.0/23 37457 -2.16.192.0/20 16625 -2.16.208.0/21 16625 -2.16.216.0/22 20940 -2.16.220.0/22 6762 -2.16.224.0/19 20940 -2.17.0.0/21 16625 -2.17.8.0/22 20940 -2.17.12.0/22 16625 -2.17.16.0/22 20940 -2.17.20.0/22 16625 -2.17.24.0/22 8697 -2.17.28.0/22 16625 -2.17.32.0/23 34164 -2.17.34.0/23 20940 -2.17.36.0/24 34164 -2.17.37.0/24 20940 -2.17.38.0/23 20940 -2.17.40.0/23 20940 -2.17.42.0/24 34164 -2.17.43.0/24 20940 -2.17.44.0/22 20940 -2.17.48.0/20 16625 -2.17.64.0/19 16625 -2.17.96.0/22 4230 -2.17.100.0/23 4230 -2.17.102.0/23 34164 -2.17.104.0/23 34164 -2.17.106.0/23 20940 -2.17.108.0/22 20940 -2.17.112.0/23 20940 -2.17.114.0/24 34164 -2.17.115.0/24 20940 -2.17.116.0/22 8708 -2.17.120.0/22 20940 -2.17.124.0/22 6762 -2.17.128.0/23 20940 -2.17.130.0/24 20940 -2.17.131.0/24 34164 -2.17.132.0/22 16625 -2.17.136.0/22 16625 -2.17.140.0/22 1299 -2.17.144.0/20 16625 -2.17.160.0/19 16625 -2.17.192.0/22 32787 -2.17.196.0/22 34164 -2.17.200.0/23 20940 -2.17.202.0/23 27747 -2.17.204.0/22 34164 -2.17.208.0/22 20940 -2.17.212.0/22 16625 -2.17.216.0/23 20940 -2.17.218.0/24 32787 -2.17.219.0/24 20940 -2.17.220.0/22 16625 -2.17.224.0/20 20940 -2.17.240.0/21 1267 -2.17.248.0/21 20940 -2.18.0.0/22 16625 -2.18.4.0/22 15897 -2.18.8.0/23 34164 -2.18.10.0/23 20940 -2.18.12.0/22 16625 -2.18.16.0/21 20940 -2.18.24.0/24 20940 -2.18.25.0/24 34164 -2.18.26.0/23 20940 -2.18.28.0/22 20940 -2.18.32.0/22 16625 -2.18.36.0/22 7303 -2.18.40.0/23 7303 -2.18.42.0/23 20940 -2.18.44.0/22 20940 -2.18.48.0/21 33905 -2.18.56.0/22 16625 -2.18.60.0/22 52376 -2.18.64.0/24 6057 -2.18.65.0/24 20940 -2.18.66.0/24 20940 -2.18.67.0/24 34164 -2.18.68.0/22 16625 -2.18.72.0/21 16625 -2.18.80.0/20 6762 -2.18.96.0/20 20940 -2.18.112.0/20 16625 -2.18.128.0/20 20940 -2.18.144.0/20 16625 -2.18.160.0/20 16625 -2.18.176.0/24 34164 -2.18.177.0/24 20940 -2.18.178.0/23 20940 -2.18.180.0/22 20940 -2.18.184.0/21 20940 -2.18.192.0/20 16625 -2.18.208.0/22 34164 -2.18.212.0/22 20940 -2.18.216.0/21 20940 -2.18.224.0/22 16625 -2.18.228.0/22 20940 -2.18.232.0/21 16625 -2.18.240.0/24 20940 -2.18.241.0/24 34164 -2.18.242.0/23 20940 -2.18.244.0/23 20940 -2.18.246.0/23 16625 -2.18.248.0/24 20940 -2.18.249.0/24 34164 -2.18.250.0/23 34164 -2.18.252.0/22 20940 -2.19.0.0/20 719 -2.19.16.0/20 16625 -2.19.32.0/20 20940 -2.19.48.0/22 20940 -2.19.52.0/24 20940 -2.19.53.0/24 34164 -2.19.54.0/23 20940 -2.19.56.0/22 16625 -2.19.60.0/22 20940 -2.19.64.0/20 16625 -2.19.80.0/20 20940 -2.19.96.0/23 20940 -2.19.98.0/24 20940 -2.19.99.0/24 34164 -2.19.100.0/22 16625 -2.19.104.0/22 16625 -2.19.108.0/22 27747 -2.19.112.0/20 16625 -2.19.128.0/19 16625 -2.19.160.0/20 12956 -2.19.176.0/20 20940 -2.19.192.0/22 20940 -2.19.196.0/22 16625 -2.19.200.0/21 20940 -2.19.208.0/20 20940 -2.19.224.0/20 16625 -2.19.240.0/21 16625 -2.19.248.0/23 20940 -2.19.250.0/24 20940 -2.19.251.0/24 6057 -2.19.252.0/23 16625 -2.19.254.0/24 20940 -2.19.255.0/24 37457 -2.20.0.0/22 719 -2.20.4.0/22 16625 -2.20.8.0/21 20940 -2.20.16.0/22 16625 -2.20.20.0/22 20940 -2.20.24.0/21 20940 -2.20.32.0/21 16625 -2.20.40.0/22 16625 -2.20.44.0/22 20940 -2.20.48.0/24 34164 -2.20.49.0/24 20940 -2.20.50.0/24 34164 -2.20.51.0/24 20940 -2.20.52.0/22 20940 -2.20.56.0/22 16625 -2.20.60.0/22 20940 -2.20.64.0/22 61580 -2.20.68.0/24 37457 -2.20.69.0/24 20940 -2.20.70.0/23 20940 -2.20.72.0/22 20940 -2.20.76.0/22 16625 -2.20.80.0/21 16625 -2.20.88.0/22 16625 -2.20.92.0/22 20940 -2.20.96.0/19 8708 -2.20.128.0/22 16625 -2.20.132.0/22 20940 -2.20.136.0/23 16625 -2.20.138.0/23 20940 -2.20.140.0/23 34164 -2.20.142.0/23 20940 -2.20.144.0/22 20940 -2.20.148.0/22 16625 -2.20.152.0/22 37457 -2.20.156.0/22 16625 -2.20.160.0/20 16625 -2.20.176.0/23 16625 -2.20.178.0/24 31108 -2.20.179.0/24 34164 -2.20.180.0/24 20940 -2.20.181.0/24 34164 -2.20.182.0/23 34164 -2.20.184.0/23 34164 -2.20.186.0/23 20940 -2.20.188.0/22 20940 -2.20.192.0/19 16625 -2.20.224.0/20 6762 -2.20.240.0/23 16625 -2.20.242.0/23 20940 -2.20.244.0/23 20940 -2.20.246.0/24 34164 -2.20.247.0/24 20940 -2.20.248.0/24 20940 -2.20.249.0/24 8966 -2.20.250.0/23 16625 -2.20.252.0/24 6762 -2.20.253.0/24 34164 -2.20.254.0/23 20940 -2.21.0.0/21 20940 -2.21.8.0/23 20940 -2.21.10.0/24 34164 -2.21.11.0/24 20940 -2.21.12.0/23 20940 -2.21.14.0/24 6762 -2.21.15.0/24 20940 -2.21.16.0/20 34164 -2.21.32.0/24 34164 -2.21.33.0/24 20940 -2.21.34.0/23 20940 -2.21.36.0/22 20940 -2.21.40.0/21 16625 -2.21.48.0/20 16625 -2.21.64.0/24 20940 -2.21.65.0/24 34164 -2.21.66.0/24 34164 -2.21.67.0/24 20940 -2.21.68.0/24 34164 -2.21.69.0/24 20940 -2.21.70.0/23 20940 -2.21.72.0/21 20940 -2.21.80.0/22 34164 -2.21.84.0/22 20940 -2.21.88.0/22 20940 -2.21.92.0/23 20940 -2.21.94.0/23 34164 -2.21.96.0/23 20940 -2.21.98.0/24 20940 -2.21.99.0/24 6762 -2.21.100.0/22 16625 -2.21.104.0/22 20940 -2.21.108.0/22 6762 -2.21.112.0/20 16625 -2.21.128.0/22 34164 -2.21.132.0/23 20940 -2.21.134.0/23 16625 -2.21.136.0/21 16625 -2.21.144.0/20 20940 -2.21.160.0/22 37457 -2.21.164.0/22 1267 -2.21.168.0/22 16625 -2.21.172.0/23 20940 -2.21.174.0/24 34164 -2.21.175.0/24 32787 -2.21.176.0/21 16625 -2.21.184.0/21 20940 -2.21.192.0/19 16625 -2.21.224.0/22 20940 -2.21.228.0/23 20940 -2.21.230.0/24 21342 -2.21.231.0/24 8966 -2.21.232.0/22 37457 -2.21.236.0/23 34164 -2.21.238.0/23 16625 -2.21.240.0/22 20940 -2.21.244.0/22 34164 -2.21.248.0/22 16625 -2.21.252.0/23 20940 -2.21.254.0/23 34164 -2.22.0.0/21 16625 -2.22.8.0/22 20940 -2.22.12.0/22 16625 -2.22.16.0/22 6762 -2.22.20.0/23 6762 -2.22.22.0/23 20940 -2.22.24.0/22 6057 -2.22.28.0/24 6057 -2.22.29.0/24 34164 -2.22.30.0/23 20940 -2.22.32.0/22 16625 -2.22.36.0/22 1299 -2.22.40.0/22 1299 -2.22.44.0/22 1273 -2.22.48.0/24 20940 -2.22.49.0/24 34164 -2.22.50.0/24 20940 -2.22.51.0/24 1273 -2.22.52.0/24 20940 -2.22.53.0/24 34164 -2.22.54.0/24 20940 -2.22.55.0/24 34164 -2.22.56.0/22 20940 -2.22.60.0/24 12222 -2.22.61.0/24 20940 -2.22.62.0/24 4230 -2.22.63.0/24 1299 -2.22.64.0/21 16625 -2.22.72.0/22 852 -2.22.76.0/22 16625 -2.22.80.0/22 16625 -2.22.84.0/22 20940 -2.22.88.0/22 20940 -2.22.92.0/22 16625 -2.22.96.0/20 16625 -2.22.112.0/23 20940 -2.22.114.0/23 34164 -2.22.116.0/22 20940 -2.22.120.0/24 34164 -2.22.121.0/24 20940 -2.22.122.0/23 34164 -2.22.124.0/23 34164 -2.22.126.0/23 20940 -2.22.128.0/20 16625 -2.22.144.0/21 20940 -2.22.152.0/22 16625 -2.22.156.0/22 34164 -2.22.160.0/19 5511 -2.22.192.0/19 20940 -2.22.224.0/24 34164 -2.22.225.0/24 20940 -2.22.226.0/23 12222 -2.22.228.0/24 20940 -2.22.229.0/24 34164 -2.22.230.0/24 21342 -2.22.231.0/24 34164 -2.22.232.0/24 20940 -2.22.233.0/24 12400 -2.22.234.0/24 20940 -2.22.235.0/24 34164 -2.22.236.0/24 34164 -2.22.237.0/24 20940 -2.22.238.0/23 1299 -2.22.240.0/23 20940 -2.22.242.0/24 20940 -2.22.243.0/24 21342 -2.22.244.0/23 20940 -2.22.246.0/23 16625 -2.22.248.0/23 1273 -2.22.250.0/23 34164 -2.22.252.0/23 34164 -2.22.254.0/23 20940 -2.23.0.0/19 6762 -2.23.32.0/19 16625 -2.23.64.0/20 16625 -2.23.80.0/21 20940 -2.23.88.0/22 20940 -2.23.92.0/24 20940 -2.23.93.0/24 34164 -2.23.94.0/23 20940 -2.23.96.0/22 20940 -2.23.100.0/23 61580 -2.23.102.0/23 16625 -2.23.104.0/21 16625 -2.23.112.0/20 6762 -2.23.128.0/20 1299 -2.23.144.0/22 16625 -2.23.148.0/22 34164 -2.23.152.0/23 34164 -2.23.154.0/23 20940 -2.23.156.0/22 20940 -2.23.160.0/22 16625 -2.23.164.0/23 16625 -2.23.166.0/23 20940 -2.23.168.0/22 34164 -2.23.172.0/22 20940 -2.23.176.0/20 16625 -2.23.192.0/19 1273 -2.23.224.0/19 8781 -2.24.0.0/13 12576 -2.32.0.0/16 30722 -2.33.0.0/16 44957 -2.34.0.0/15 30722 -2.36.0.0/14 30722 -2.41.0.0/16 30722 -2.42.0.0/15 30722 -2.44.0.0/14 30722 -2.48.0.0/14 5384 -2.52.0.0/14 12400 -2.56.5.0/24 50630 -2.56.8.0/24 25369 -2.56.9.0/24 208076 -2.56.10.0/24 133846 -2.56.12.0/23 208641 -2.56.14.0/23 57344 -2.56.16.0/22 9009 -2.56.20.0/22 18530 -2.56.24.0/22 8219 -2.56.28.0/22 21195 -2.56.32.0/22 9009 -2.56.36.0/22 209173 -2.56.40.0/22 35336 -2.56.44.0/22 48095 -2.56.48.0/22 48095 -2.56.52.0/22 41280 -2.56.60.0/22 199366 -2.56.64.0/22 209170 -2.56.68.0/22 209208 -2.56.72.0/22 396319 -2.56.76.0/22 209216 -2.56.80.0/22 42929 -2.56.84.0/24 209235 -2.56.85.0/24 35699 -2.56.86.0/24 209235 -2.56.87.0/24 202349 -2.56.88.0/24 203226 -2.56.92.0/22 209234 -2.56.96.0/22 197540 -2.56.100.0/23 60781 -2.56.102.0/23 29066 -2.56.104.0/22 206610 -2.56.108.0/22 34549 -2.56.112.0/23 12722 -2.56.114.0/23 206766 -2.56.116.0/22 35913 -2.56.120.0/21 35913 -2.56.128.0/22 209102 -2.56.132.0/24 209232 -2.56.136.0/24 48031 -2.56.137.0/24 40676 -2.56.138.0/24 49505 -2.56.139.0/24 395092 -2.56.140.0/22 209231 -2.56.147.0/24 56647 -2.56.148.0/22 9009 -2.56.152.0/22 42926 -2.56.156.0/23 15401 -2.56.160.0/22 12453 -2.56.164.0/24 209183 -2.56.165.0/24 40676 -2.56.166.0/24 3280 -2.56.167.0/24 51942 -2.56.172.0/22 35913 -2.56.176.0/22 35913 -2.56.180.0/22 31566 -2.56.184.0/22 40065 -2.56.188.0/22 62240 -2.56.192.0/22 12679 -2.56.196.0/22 60282 -2.56.200.0/23 36224 -2.56.202.0/24 36224 -2.56.204.0/22 16190 -2.56.208.0/22 39560 -2.56.212.0/22 202448 -2.56.216.0/22 41960 -2.56.220.0/22 39690 -2.56.228.0/22 49335 -2.56.232.0/22 200019 -2.56.236.0/22 3257 -2.56.240.0/23 49392 -2.56.242.0/24 49392 -2.56.243.0/24 12722 -2.56.244.0/24 206638 -2.56.246.0/23 395800 -2.56.248.0/22 395800 -2.56.252.0/24 209224 -2.56.253.0/24 35913 -2.56.254.0/24 35913 -2.56.255.0/24 40065 -2.57.4.0/22 204861 -2.57.8.0/22 209200 -2.57.16.0/24 394094 -2.57.17.0/24 61317 -2.57.18.0/23 61317 -2.57.20.0/22 61317 -2.57.24.0/22 42090 -2.57.28.0/22 9009 -2.57.32.0/22 209222 -2.57.36.0/23 208058 -2.57.38.0/24 49181 -2.57.39.0/24 209117 -2.57.40.0/22 57948 -2.57.44.0/22 199909 -2.57.48.0/22 50782 -2.57.64.0/22 209070 -2.57.68.0/22 9009 -2.57.72.0/22 60718 -2.57.76.0/23 43444 -2.57.78.0/23 35913 -2.57.83.0/24 209206 -2.57.84.0/22 203462 -2.57.88.0/22 47583 -2.57.92.0/22 30337 -2.57.96.0/22 41798 -2.57.100.0/23 60609 -2.57.102.0/24 60609 -2.57.108.0/22 201466 -2.57.116.0/22 55933 -2.57.120.0/24 62380 -2.57.121.0/24 34549 -2.57.122.0/23 34549 -2.57.124.0/22 132839 -2.57.128.0/22 209202 -2.57.132.0/22 201893 -2.57.136.0/22 31229 -2.57.144.0/22 60233 -2.57.149.0/24 57355 -2.57.150.0/24 48031 -2.57.151.0/24 395092 -2.57.160.0/22 20647 -2.57.164.0/23 31852 -2.57.166.0/23 46133 -2.57.168.0/23 22923 -2.57.170.0/24 9009 -2.57.171.0/24 61317 -2.57.176.0/22 51765 -2.57.180.0/22 34549 -2.57.184.0/23 210200 -2.57.187.0/24 210200 -2.57.188.0/22 209189 -2.57.192.0/22 205289 -2.57.196.0/24 208781 -2.57.200.0/22 209198 -2.57.204.0/22 197522 -2.57.208.0/22 209062 -2.57.212.0/22 209961 -2.57.216.0/22 209012 -2.57.224.0/23 58128 -2.57.226.0/24 58128 -2.57.227.0/24 29119 -2.57.232.0/22 209811 -2.57.236.0/23 210199 -2.57.240.0/22 55933 -2.57.244.0/22 42318 -2.57.248.0/22 11325 -2.57.252.0/22 35913 -2.58.0.0/24 206279 -2.58.4.0/22 174 -2.58.8.0/22 13008 -2.58.12.0/23 12989 -2.58.16.0/22 64421 -2.58.20.0/22 58073 -2.58.24.0/22 202204 -2.58.28.0/22 61317 -2.58.32.0/22 203061 -2.58.36.0/22 9009 -2.58.40.0/24 2872 -2.58.44.0/22 9009 -2.58.48.0/22 9119 -2.58.52.0/22 200462 -2.58.56.0/24 206499 -2.58.58.0/24 35133 -2.58.60.0/22 209396 -2.58.68.0/22 57844 -2.58.72.0/23 35913 -2.58.74.0/24 35913 -2.58.75.0/24 3257 -2.58.76.0/22 34929 -2.58.80.0/22 200282 -2.58.84.0/22 25780 -2.58.88.0/22 209123 -2.58.92.0/22 43659 -2.58.96.0/24 50308 -2.58.97.0/24 62019 -2.58.98.0/24 56630 -2.58.99.0/24 42608 -2.58.100.0/24 198930 -2.58.104.0/23 35139 -2.58.108.0/24 42160 -2.58.111.0/24 42160 -2.58.112.0/24 209185 -2.58.116.0/22 50129 -2.58.120.0/22 209184 -2.58.124.0/22 57844 -2.58.128.0/22 6718 -2.58.132.0/22 42013 -2.58.136.0/22 210218 -2.58.140.0/22 209171 -2.58.144.0/22 31863 -2.58.164.0/24 207843 -2.58.168.0/22 42864 -2.58.172.0/22 61317 -2.58.176.0/22 210015 -2.58.180.0/22 43949 -2.58.184.0/22 209182 -2.58.188.0/22 200555 -2.58.192.0/22 209181 -2.58.196.0/22 395800 -2.58.200.0/22 395800 -2.58.208.0/22 208775 -2.58.212.0/22 60781 -2.58.216.0/24 202805 -2.58.217.0/24 208427 -2.58.218.0/23 35007 -2.58.224.0/22 201843 -2.58.228.0/22 40676 -2.58.232.0/22 208485 -2.58.236.0/22 47829 -2.58.242.0/23 134522 -2.58.244.0/22 9312 -2.58.248.0/22 9312 -2.58.252.0/22 209177 -2.59.0.0/23 9009 -2.59.2.0/23 59210 -2.59.4.0/22 48577 -2.59.10.0/23 42830 -2.59.12.0/24 20668 -2.59.13.0/24 42599 -2.59.14.0/24 20668 -2.59.15.0/24 48955 -2.59.20.0/23 60781 -2.59.22.0/23 29066 -2.59.24.0/23 209113 -2.59.28.0/22 201011 -2.59.40.0/22 9123 -2.59.44.0/22 209169 -2.59.48.0/24 12722 -2.59.49.0/24 49505 -2.59.50.0/24 35048 -2.59.51.0/24 12722 -2.59.55.0/24 209029 -2.59.56.0/21 34549 -2.59.64.0/22 34762 -2.59.68.0/22 60032 -2.59.72.0/22 60032 -2.59.76.0/22 197628 -2.59.80.0/22 12494 -2.59.84.0/22 34240 -2.59.88.0/22 209145 -2.59.92.0/22 29119 -2.59.96.0/24 19324 -2.59.97.0/24 209167 -2.59.100.0/22 132839 -2.59.104.0/22 197957 -2.59.108.0/22 203499 -2.59.112.0/22 60397 -2.59.116.0/24 203377 -2.59.117.0/24 42926 -2.59.118.0/23 61135 -2.59.124.0/22 42493 -2.59.132.0/22 44066 -2.59.136.0/22 29462 -2.59.140.0/22 59919 -2.59.144.0/22 57809 -2.59.148.0/23 35913 -2.59.150.0/24 47583 -2.59.151.0/24 40065 -2.59.153.0/24 136038 -2.59.154.0/24 136038 -2.59.156.0/22 42366 -2.59.160.0/22 44676 -2.59.164.0/23 209153 -2.59.166.0/23 202376 -2.59.168.0/22 206644 -2.59.176.0/22 45027 -2.59.188.0/22 49028 -2.59.192.0/22 50129 -2.59.196.0/22 42205 -2.59.200.0/22 209723 -2.59.212.0/24 49505 -2.59.213.0/24 48959 -2.59.214.0/24 49392 -2.59.215.0/24 45027 -2.59.216.0/22 44676 -2.59.220.0/22 209155 -2.59.228.0/22 209992 -2.59.232.0/22 209835 -2.59.236.0/22 24904 -2.59.240.0/22 202136 -2.59.244.0/22 29119 -2.59.248.0/21 43659 -2.60.0.0/14 12389 -2.64.0.0/13 44034 -2.72.0.0/14 29355 -2.76.0.0/15 29355 -2.78.32.0/21 29355 -2.78.40.0/22 29355 -2.78.44.0/23 29355 -2.78.47.0/24 29355 -2.78.48.0/20 29355 -2.78.128.0/17 29355 -2.79.0.0/16 29355 -2.80.0.0/14 3243 -2.84.0.0/14 6799 -2.88.0.0/14 25019 -2.92.0.0/18 8402 -2.92.64.0/19 8402 -2.92.96.0/20 8402 -2.92.112.0/21 8402 -2.92.120.0/22 3216 -2.92.124.0/22 8402 -2.92.128.0/19 8402 -2.92.160.0/22 3216 -2.92.164.0/22 8402 -2.92.168.0/21 8402 -2.92.176.0/21 8402 -2.92.184.0/21 3216 -2.92.192.0/18 8402 -2.93.0.0/16 8402 -2.94.0.0/16 8402 -2.95.0.0/16 3216 -2.96.0.0/13 13285 -2.104.0.0/13 3292 -2.112.0.0/13 3269 -2.120.0.0/13 5607 -2.128.0.0/14 9158 -2.132.0.0/14 9198 -2.136.0.0/13 3352 -2.144.0.0/14 44244 -2.148.0.0/14 2119 -2.152.0.0/22 12357 -2.152.4.0/22 6739 -2.152.8.0/22 12357 -2.152.12.0/22 6739 -2.152.16.0/21 6739 -2.152.24.0/24 6739 -2.152.25.0/24 12357 -2.152.26.0/23 12357 -2.152.28.0/22 12357 -2.152.32.0/22 12357 -2.152.36.0/23 12357 -2.152.38.0/23 6739 -2.152.40.0/21 12357 -2.152.48.0/21 12357 -2.152.56.0/23 6739 -2.152.58.0/23 12357 -2.152.60.0/23 12357 -2.152.62.0/23 6739 -2.152.64.0/18 12357 -2.152.128.0/23 12357 -2.152.130.0/23 6739 -2.152.132.0/23 6739 -2.152.134.0/23 12357 -2.152.136.0/22 12357 -2.152.140.0/23 6739 -2.152.142.0/23 12357 -2.152.144.0/20 12357 -2.152.160.0/20 12357 -2.152.176.0/21 12357 -2.152.184.0/21 6739 -2.152.192.0/19 12357 -2.152.224.0/19 6739 -2.153.0.0/19 6739 -2.153.32.0/21 6739 -2.153.40.0/21 12357 -2.153.48.0/20 6739 -2.153.64.0/18 6739 -2.153.128.0/19 12357 -2.153.160.0/20 6739 -2.153.176.0/23 6739 -2.153.178.0/24 12357 -2.153.179.0/24 6739 -2.153.180.0/24 6739 -2.153.181.0/24 12357 -2.153.182.0/24 12357 -2.153.183.0/24 6739 -2.153.184.0/21 6739 -2.153.192.0/20 6739 -2.153.208.0/21 6739 -2.153.216.0/22 12357 -2.153.220.0/22 6739 -2.153.224.0/20 12357 -2.153.240.0/20 6739 -2.154.0.0/17 6739 -2.154.128.0/19 6739 -2.154.160.0/21 6739 -2.154.168.0/22 12357 -2.154.172.0/24 6739 -2.154.173.0/24 12357 -2.154.174.0/24 12357 -2.154.175.0/24 6739 -2.154.176.0/20 12357 -2.154.192.0/20 6739 -2.154.208.0/20 12357 -2.154.224.0/19 12357 -2.155.0.0/16 12430 -2.156.0.0/14 24608 -2.160.0.0/12 3320 -2.176.0.0/19 12880 -2.176.32.0/20 12880 -2.176.48.0/22 12880 -2.176.52.0/23 58224 -2.176.54.0/23 12880 -2.176.56.0/21 12880 -2.176.64.0/18 12880 -2.176.128.0/17 12880 -2.177.0.0/18 12880 -2.177.64.0/19 12880 -2.177.96.0/22 12880 -2.177.100.0/23 12880 -2.177.102.0/24 49666 -2.177.103.0/24 12880 -2.177.104.0/21 12880 -2.177.112.0/20 12880 -2.177.128.0/17 12880 -2.178.0.0/17 12880 -2.178.128.0/18 12880 -2.178.192.0/19 12880 -2.178.224.0/20 12880 -2.178.240.0/21 12880 -2.178.248.0/22 12880 -2.178.252.0/23 12880 -2.178.254.0/24 48159 -2.178.255.0/24 12880 -2.179.0.0/18 12880 -2.179.64.0/18 58224 -2.179.128.0/19 58224 -2.179.160.0/21 58224 -2.179.168.0/21 12880 -2.179.176.0/20 58224 -2.179.192.0/18 58224 -2.180.0.0/17 58224 -2.180.128.0/18 58224 -2.180.192.0/19 58224 -2.180.224.0/20 58224 -2.180.240.0/21 58224 -2.180.248.0/22 58224 -2.180.252.0/23 58224 -2.180.254.0/23 60148 -2.181.0.0/17 58224 -2.181.128.0/18 58224 -2.181.192.0/20 58224 -2.181.208.0/21 58224 -2.181.216.0/22 58224 -2.181.220.0/23 58224 -2.181.222.0/23 60148 -2.181.224.0/19 58224 -2.182.0.0/18 58224 -2.182.64.0/19 12880 -2.182.96.0/22 12880 -2.182.100.0/22 58224 -2.182.104.0/21 58224 -2.182.112.0/20 58224 -2.182.128.0/18 58224 -2.182.192.0/19 58224 -2.182.224.0/20 58224 -2.182.240.0/21 58224 -2.182.248.0/22 58224 -2.182.252.0/24 58224 -2.182.253.0/24 12880 -2.182.254.0/23 60148 -2.183.0.0/17 58224 -2.183.128.0/18 58224 -2.183.192.0/19 58224 -2.183.224.0/20 58224 -2.183.240.0/21 58224 -2.183.248.0/22 58224 -2.183.252.0/23 58224 -2.183.254.0/23 60148 -2.184.0.0/17 58224 -2.184.128.0/18 58224 -2.184.192.0/19 58224 -2.184.224.0/20 58224 -2.184.240.0/21 58224 -2.184.248.0/22 58224 -2.184.252.0/23 58224 -2.184.254.0/23 60148 -2.185.0.0/17 58224 -2.185.128.0/19 58224 -2.185.160.0/20 48159 -2.185.176.0/22 48159 -2.185.180.0/24 58224 -2.185.181.0/24 48159 -2.185.182.0/23 48159 -2.185.184.0/21 48159 -2.185.192.0/19 58224 -2.185.224.0/20 58224 -2.185.240.0/21 58224 -2.185.248.0/22 58224 -2.185.252.0/23 58224 -2.185.254.0/23 60148 -2.186.0.0/16 58224 -2.187.0.0/17 58224 -2.187.128.0/18 58224 -2.187.192.0/19 58224 -2.187.224.0/20 58224 -2.187.240.0/21 58224 -2.187.248.0/22 58224 -2.187.252.0/24 12880 -2.187.253.0/24 60148 -2.187.254.0/23 60148 -2.188.0.0/23 49666 -2.188.2.0/23 12880 -2.188.4.0/22 12880 -2.188.8.0/23 12880 -2.188.10.0/24 12880 -2.188.11.0/24 31549 -2.188.12.0/22 12880 -2.188.16.0/22 12880 -2.188.20.0/23 12880 -2.188.22.0/24 49666 -2.188.23.0/24 12880 -2.188.24.0/22 12880 -2.188.28.0/24 48159 -2.188.29.0/24 12880 -2.188.30.0/23 12880 -2.188.32.0/21 50810 -2.188.40.0/21 12880 -2.188.48.0/20 12880 -2.188.64.0/21 12880 -2.188.72.0/22 12880 -2.188.76.0/24 49666 -2.188.77.0/24 12880 -2.188.78.0/23 12880 -2.188.80.0/20 43754 -2.188.96.0/19 12880 -2.188.128.0/19 12880 -2.188.160.0/21 42337 -2.188.168.0/21 56616 -2.188.176.0/23 12880 -2.188.178.0/24 12880 -2.188.179.0/24 49666 -2.188.180.0/24 12880 -2.188.181.0/24 49666 -2.188.182.0/23 12880 -2.188.184.0/23 49666 -2.188.186.0/24 12880 -2.188.187.0/24 49666 -2.188.188.0/22 12880 -2.188.192.0/18 42337 -2.189.0.0/24 12880 -2.189.1.0/24 49666 -2.189.2.0/23 12880 -2.189.4.0/22 12880 -2.189.8.0/21 12880 -2.189.16.0/20 12880 -2.189.32.0/19 12880 -2.189.64.0/18 12880 -2.189.128.0/19 12880 -2.189.160.0/20 12880 -2.189.176.0/21 62196 -2.189.184.0/21 12880 -2.189.192.0/18 12880 -2.190.0.0/15 12880 -2.192.0.0/13 16232 -2.200.0.0/13 3209 -2.208.0.0/13 6805 -2.216.0.0/13 5607 -2.224.0.0/12 12874 -2.240.0.0/13 6805 -2.248.0.0/14 3301 -2.252.0.0/15 3301 -2.254.0.0/16 3301 -2.255.0.0/17 3301 -2.255.128.0/18 3301 -2.255.192.0/19 3301 -2.255.224.0/20 3301 -2.255.240.0/21 3301 -2.255.248.0/21 1299 -3.0.0.0/15 16509 -3.5.0.0/20 14618 -3.5.16.0/21 14618 -3.5.128.0/22 16509 -3.5.132.0/23 16509 -3.5.208.0/22 16509 -3.5.212.0/23 16509 -3.6.0.0/15 16509 -3.8.0.0/13 16509 -3.16.0.0/13 16509 -3.24.0.0/14 16509 -3.34.0.0/15 16509 -3.80.0.0/12 14618 -3.101.0.0/16 16509 -3.104.0.0/14 16509 -3.112.0.0/14 16509 -3.120.0.0/13 16509 -3.128.0.0/12 16509 -3.208.0.0/12 14618 -3.224.0.0/12 14618 -3.248.0.0/13 16509 -4.0.0.0/12 3356 -4.16.0.0/14 3356 -4.20.0.0/15 3356 -4.22.0.0/16 3356 -4.23.0.0/18 3356 -4.23.64.0/20 3356 -4.23.80.0/21 3356 -4.23.88.0/23 46164 -4.23.90.0/23 3356 -4.23.92.0/22 46164 -4.23.96.0/20 3356 -4.23.112.0/22 21889 -4.23.116.0/22 3356 -4.23.120.0/21 3356 -4.23.128.0/17 3356 -4.24.0.0/13 3356 -4.32.0.0/16 3356 -4.33.0.0/18 3356 -4.33.64.0/20 3356 -4.33.80.0/21 3356 -4.33.88.0/22 10753 -4.33.92.0/22 3356 -4.33.96.0/21 3356 -4.33.104.0/23 3356 -4.33.106.0/24 10753 -4.33.107.0/24 3356 -4.33.108.0/22 3356 -4.33.112.0/20 3356 -4.33.128.0/20 3356 -4.33.144.0/21 3356 -4.33.152.0/23 3356 -4.33.154.0/24 10753 -4.33.155.0/24 3356 -4.33.156.0/22 3356 -4.33.160.0/19 3356 -4.33.192.0/18 3356 -4.34.0.0/21 3356 -4.34.8.0/22 3356 -4.34.12.0/23 1 -4.34.14.0/23 3356 -4.34.16.0/20 3356 -4.34.32.0/19 3356 -4.34.64.0/18 3356 -4.34.128.0/17 3356 -4.35.0.0/16 3356 -4.36.0.0/18 3356 -4.36.64.0/19 3356 -4.36.96.0/20 3356 -4.36.112.0/22 21889 -4.36.116.0/23 21889 -4.36.118.0/24 21889 -4.36.119.0/24 3356 -4.36.120.0/21 3356 -4.36.128.0/17 3356 -4.37.0.0/16 3356 -4.38.0.0/20 46164 -4.38.16.0/20 3356 -4.38.32.0/19 3356 -4.38.64.0/18 3356 -4.38.128.0/17 3356 -4.39.0.0/16 3356 -4.40.0.0/15 3356 -4.42.0.0/16 3356 -4.43.0.0/19 3356 -4.43.32.0/20 3356 -4.43.48.0/23 3356 -4.43.50.0/23 46164 -4.43.52.0/22 3356 -4.43.56.0/21 3356 -4.43.64.0/18 3356 -4.43.128.0/17 3356 -4.44.0.0/14 3356 -4.48.0.0/14 3356 -4.52.0.0/16 3356 -4.53.0.0/17 3356 -4.53.128.0/18 3356 -4.53.192.0/21 3356 -4.53.200.0/24 3356 -4.53.201.0/24 26481 -4.53.202.0/23 3356 -4.53.204.0/22 3356 -4.53.208.0/20 3356 -4.53.224.0/19 3356 -4.54.0.0/15 3356 -4.56.0.0/13 3356 -4.64.0.0/15 3356 -4.66.0.0/16 3356 -4.67.0.0/18 3356 -4.67.64.0/19 3356 -4.67.96.0/20 46164 -4.67.112.0/20 3356 -4.67.128.0/17 3356 -4.68.0.0/19 3356 -4.68.32.0/22 10753 -4.68.36.0/22 3356 -4.68.40.0/21 3356 -4.68.48.0/20 3356 -4.68.64.0/20 3356 -4.68.80.0/22 3356 -4.68.84.0/22 10753 -4.68.88.0/21 3356 -4.68.96.0/19 3356 -4.68.128.0/17 3356 -4.69.0.0/16 3356 -4.70.0.0/15 3356 -4.72.0.0/14 3356 -4.76.0.0/15 3356 -4.78.0.0/16 3356 -4.79.0.0/17 3356 -4.79.128.0/20 3356 -4.79.144.0/24 3356 -4.79.145.0/24 20473 -4.79.146.0/23 3356 -4.79.148.0/22 3356 -4.79.152.0/21 3356 -4.79.160.0/19 3356 -4.79.192.0/18 3356 -4.80.0.0/12 3356 -4.96.0.0/11 3356 -4.128.0.0/9 3356 -5.0.0.0/16 29256 -5.1.0.0/23 3326 -5.1.2.0/23 15785 -5.1.4.0/22 3326 -5.1.8.0/21 3326 -5.1.16.0/20 3326 -5.1.32.0/21 198731 -5.1.48.0/21 15493 -5.1.56.0/21 198161 -5.1.64.0/22 34549 -5.1.68.0/23 24679 -5.1.70.0/24 34549 -5.1.71.0/24 205632 -5.1.72.0/24 34549 -5.1.73.0/24 205948 -5.1.74.0/24 30823 -5.1.75.0/24 34549 -5.1.76.0/24 34549 -5.1.77.0/24 205948 -5.1.78.0/24 205948 -5.1.79.0/24 34549 -5.1.80.0/24 34549 -5.1.81.0/24 30823 -5.1.82.0/24 34549 -5.1.83.0/24 24679 -5.1.84.0/22 34549 -5.1.88.0/24 24679 -5.1.89.0/24 34549 -5.1.90.0/23 34549 -5.1.92.0/22 34549 -5.1.96.0/21 198385 -5.1.104.0/21 198735 -5.1.112.0/21 198738 -5.1.120.0/21 61157 -5.1.128.0/17 12638 -5.2.16.0/21 21472 -5.2.24.0/21 51678 -5.2.32.0/19 41560 -5.2.64.0/20 60404 -5.2.80.0/21 3188 -5.2.88.0/21 198432 -5.2.96.0/19 31655 -5.2.128.0/17 8708 -5.3.1.0/24 31483 -5.3.2.0/23 31483 -5.3.4.0/22 31483 -5.3.13.0/24 16179 -5.3.14.0/24 62287 -5.3.16.0/24 62287 -5.3.19.0/24 12772 -5.3.20.0/23 62287 -5.3.23.0/24 62287 -5.3.24.0/24 62287 -5.3.27.0/24 62287 -5.3.28.0/24 62287 -5.3.31.0/24 62287 -5.3.33.0/24 62287 -5.3.37.0/24 62287 -5.3.38.0/24 62287 -5.3.40.0/23 62287 -5.3.42.0/24 48441 -5.3.43.0/24 62287 -5.3.44.0/24 62287 -5.3.47.0/24 62287 -5.3.48.0/23 62287 -5.3.50.0/24 62287 -5.3.52.0/24 62287 -5.3.54.0/23 62287 -5.3.56.0/24 62287 -5.3.58.0/24 62287 -5.3.60.0/24 62287 -5.3.63.0/24 62287 -5.3.64.0/20 39028 -5.3.80.0/23 201083 -5.3.82.0/24 202778 -5.3.83.0/24 206171 -5.3.84.0/24 207078 -5.3.85.0/24 9049 -5.3.87.0/24 41661 -5.3.90.0/24 209303 -5.3.112.0/20 41682 -5.3.128.0/20 42683 -5.3.144.0/20 41668 -5.3.160.0/20 50542 -5.3.176.0/20 51570 -5.3.192.0/19 42682 -5.3.224.0/21 57026 -5.3.232.0/21 57378 -5.3.240.0/20 50543 -5.4.0.0/14 6805 -5.8.8.0/21 34665 -5.8.16.0/24 206804 -5.8.17.0/24 205601 -5.8.18.0/24 202425 -5.8.19.0/24 34665 -5.8.20.0/22 34665 -5.8.24.0/24 202422 -5.8.25.0/24 199524 -5.8.26.0/23 199524 -5.8.28.0/22 50340 -5.8.32.0/22 202023 -5.8.36.0/23 50896 -5.8.38.0/24 8100 -5.8.39.0/24 50896 -5.8.44.0/22 50896 -5.8.48.0/21 34665 -5.8.56.0/23 34665 -5.8.58.0/24 205701 -5.8.59.0/24 34665 -5.8.61.0/24 34665 -5.8.62.0/24 34665 -5.8.63.0/24 30475 -5.8.64.0/24 44812 -5.8.65.0/24 34665 -5.8.66.0/23 34665 -5.8.68.0/22 199524 -5.8.72.0/23 49505 -5.8.74.0/24 50340 -5.8.75.0/24 49505 -5.8.76.0/23 49505 -5.8.78.0/24 49505 -5.8.79.0/24 50340 -5.8.80.0/21 56541 -5.8.88.0/24 62088 -5.8.90.0/23 62088 -5.8.96.0/19 30848 -5.8.128.0/19 31126 -5.8.160.0/20 3181 -5.8.176.0/24 198762 -5.8.177.0/24 31261 -5.8.178.0/24 198833 -5.8.179.0/24 198821 -5.8.180.0/23 51219 -5.8.182.0/24 59530 -5.8.184.0/21 29286 -5.8.192.0/22 49301 -5.8.196.0/23 49301 -5.8.198.0/24 15774 -5.8.200.0/21 15774 -5.8.208.0/21 15774 -5.8.224.0/20 21365 -5.8.240.0/21 3178 -5.8.252.0/22 202025 -5.9.0.0/16 24940 -5.10.0.0/21 198726 -5.10.8.0/21 57154 -5.10.16.0/21 60610 -5.10.24.0/24 57168 -5.10.25.0/24 60610 -5.10.26.0/24 21769 -5.10.27.0/24 60610 -5.10.28.0/22 60610 -5.10.32.0/21 199045 -5.10.40.0/21 198967 -5.10.48.0/20 6830 -5.10.64.0/18 36351 -5.10.128.0/21 57809 -5.10.136.0/22 4809 -5.10.140.0/24 4809 -5.10.141.0/24 49209 -5.10.142.0/23 4809 -5.10.144.0/20 25160 -5.10.160.0/19 6830 -5.10.192.0/24 51088 -5.10.193.0/24 54103 -5.10.194.0/24 39855 -5.10.195.0/24 54103 -5.10.196.0/24 39855 -5.10.197.0/24 54103 -5.10.198.0/24 39855 -5.10.199.0/24 54103 -5.10.200.0/21 49835 -5.10.208.0/23 3320 -5.10.210.0/23 20676 -5.10.212.0/22 20676 -5.10.216.0/24 25394 -5.10.217.0/24 20676 -5.10.218.0/23 20676 -5.10.220.0/24 3320 -5.10.221.0/24 20676 -5.10.222.0/23 20676 -5.10.224.0/21 3194 -5.10.232.0/21 44568 -5.10.240.0/20 15723 -5.11.0.0/21 3190 -5.11.8.0/21 30844 -5.11.16.0/23 42705 -5.11.18.0/24 200654 -5.11.19.0/24 21277 -5.11.20.0/22 42705 -5.11.24.0/22 42705 -5.11.28.0/24 36614 -5.11.29.0/24 42705 -5.11.30.0/23 42705 -5.11.32.0/21 47217 -5.11.46.0/23 12975 -5.11.48.0/21 47215 -5.11.56.0/22 25593 -5.11.60.0/22 56578 -5.11.64.0/20 31214 -5.11.80.0/21 35415 -5.11.88.0/21 196646 -5.11.128.0/17 16135 -5.12.0.0/14 8708 -5.16.0.0/20 21353 -5.16.16.0/22 21353 -5.16.24.0/21 51570 -5.16.32.0/19 51570 -5.16.64.0/19 51570 -5.16.96.0/21 51570 -5.16.104.0/21 42116 -5.16.112.0/20 51570 -5.16.128.0/17 41733 -5.17.0.0/16 41733 -5.18.0.0/18 41733 -5.18.64.0/19 41733 -5.18.96.0/21 41733 -5.18.104.0/22 41733 -5.18.108.0/23 51570 -5.18.110.0/23 41733 -5.18.112.0/20 41733 -5.18.128.0/19 41733 -5.18.160.0/21 41733 -5.18.168.0/22 41733 -5.18.172.0/23 51570 -5.18.174.0/23 41733 -5.18.176.0/20 41733 -5.18.192.0/24 47111 -5.18.193.0/24 41733 -5.18.194.0/23 41733 -5.18.196.0/22 41733 -5.18.200.0/21 41733 -5.18.208.0/20 41733 -5.18.224.0/19 41733 -5.19.0.0/16 41733 -5.20.0.0/16 21412 -5.21.0.0/16 50010 -5.22.0.0/17 197207 -5.22.128.0/21 50463 -5.22.136.0/21 51043 -5.22.144.0/21 196763 -5.22.152.0/24 201934 -5.22.153.0/24 60500 -5.22.154.0/24 60829 -5.22.155.0/24 198757 -5.22.156.0/23 48964 -5.22.159.0/24 48964 -5.22.160.0/19 31042 -5.22.192.0/19 48289 -5.22.224.0/21 31672 -5.22.232.0/22 2116 -5.22.236.0/23 43905 -5.22.238.0/24 43905 -5.22.240.0/21 197524 -5.22.248.0/21 39704 -5.23.0.0/21 6453 -5.23.8.0/22 6453 -5.23.12.0/22 34977 -5.23.16.0/22 6453 -5.23.20.0/24 40009 -5.23.21.0/24 6453 -5.23.22.0/23 6453 -5.23.24.0/21 6453 -5.23.32.0/23 12850 -5.23.34.0/24 207964 -5.23.40.0/21 13193 -5.23.48.0/21 9123 -5.23.56.0/21 35382 -5.23.64.0/19 12969 -5.23.96.0/21 8636 -5.23.104.0/21 57214 -5.23.112.0/21 48944 -5.23.120.0/21 8678 -5.23.128.0/17 6848 -5.24.0.0/15 16135 -5.26.0.0/16 16135 -5.27.0.0/18 16135 -5.27.128.0/17 16135 -5.28.0.0/21 12303 -5.28.8.0/23 58177 -5.28.16.0/20 8439 -5.28.32.0/22 137811 -5.28.39.0/24 137811 -5.28.40.0/21 47215 -5.28.48.0/21 42010 -5.28.56.0/21 35425 -5.28.64.0/18 20880 -5.28.128.0/18 12849 -5.29.0.0/16 12849 -5.30.0.0/15 15802 -5.32.0.0/17 15802 -5.32.128.0/22 60168 -5.32.132.0/22 57705 -5.32.136.0/21 44549 -5.32.144.0/22 43714 -5.32.152.0/21 15533 -5.32.160.0/21 198870 -5.32.168.0/22 15836 -5.32.172.0/23 15836 -5.32.174.0/24 208671 -5.32.175.0/24 15836 -5.32.176.0/23 34547 -5.32.178.0/23 16333 -5.32.180.0/24 16333 -5.32.181.0/24 34547 -5.32.182.0/24 16333 -5.32.184.0/23 198904 -5.33.0.0/16 9158 -5.34.0.0/20 21299 -5.34.16.0/21 206026 -5.34.24.0/22 21299 -5.34.28.0/22 206026 -5.34.32.0/21 21299 -5.34.40.0/22 21299 -5.34.44.0/23 21299 -5.34.46.0/24 21299 -5.34.47.0/24 35566 -5.34.48.0/20 21299 -5.34.64.0/20 21299 -5.34.80.0/21 21299 -5.34.88.0/24 21299 -5.34.89.0/24 35566 -5.34.90.0/24 35566 -5.34.91.0/24 21299 -5.34.92.0/22 21299 -5.34.96.0/21 21299 -5.34.104.0/22 21299 -5.34.108.0/23 21299 -5.34.110.0/24 35566 -5.34.111.0/24 21299 -5.34.112.0/20 21299 -5.34.128.0/19 199435 -5.34.160.0/21 51440 -5.34.176.0/22 204957 -5.34.180.0/23 21100 -5.34.182.0/23 15626 -5.34.184.0/21 198800 -5.34.192.0/19 58142 -5.34.224.0/21 25054 -5.34.232.0/21 58141 -5.34.240.0/21 57858 -5.34.248.0/21 198288 -5.35.0.0/17 31514 -5.35.128.0/19 43530 -5.35.160.0/21 8681 -5.35.168.0/21 58143 -5.35.176.0/21 49820 -5.35.184.0/21 42303 -5.35.192.0/21 209706 -5.35.200.0/21 31577 -5.35.208.0/21 5588 -5.35.216.0/21 42493 -5.35.224.0/24 8972 -5.35.225.0/24 20773 -5.35.226.0/24 20773 -5.35.227.0/24 8972 -5.35.228.0/24 8972 -5.35.229.0/24 20773 -5.35.230.0/23 8972 -5.35.232.0/21 20773 -5.35.240.0/20 8972 -5.36.0.0/15 28885 -5.38.0.0/17 5384 -5.38.128.0/17 5483 -5.39.0.0/17 16276 -5.39.160.0/21 58157 -5.39.168.0/21 31673 -5.39.176.0/21 198753 -5.39.184.0/21 58291 -5.39.192.0/21 29512 -5.39.200.0/22 47232 -5.39.204.0/22 56561 -5.39.208.0/21 198871 -5.39.216.0/21 57043 -5.39.224.0/21 198792 -5.39.232.0/24 51985 -5.39.233.0/24 60641 -5.39.234.0/24 60641 -5.39.235.0/24 51985 -5.39.236.0/24 60641 -5.39.237.0/24 51985 -5.39.238.0/23 51985 -5.39.240.0/21 48173 -5.39.248.0/21 30938 -5.40.0.0/22 6739 -5.40.4.0/23 6739 -5.40.6.0/24 12357 -5.40.7.0/24 6739 -5.40.8.0/21 6739 -5.40.16.0/23 6739 -5.40.18.0/24 206487 -5.40.19.0/24 6739 -5.40.20.0/24 6739 -5.40.21.0/24 12357 -5.40.22.0/23 6739 -5.40.24.0/21 6739 -5.40.32.0/23 43160 -5.40.34.0/23 6739 -5.40.36.0/22 6739 -5.40.40.0/24 6739 -5.40.41.0/24 206487 -5.40.42.0/23 6739 -5.40.44.0/22 6739 -5.40.48.0/22 6739 -5.40.52.0/23 6739 -5.40.54.0/23 12357 -5.40.56.0/22 6739 -5.40.60.0/24 6739 -5.40.61.0/24 12357 -5.40.62.0/23 6739 -5.40.64.0/21 6739 -5.40.72.0/22 6739 -5.40.76.0/24 6739 -5.40.77.0/24 12357 -5.40.78.0/23 6739 -5.40.80.0/23 206487 -5.40.82.0/23 6739 -5.40.84.0/24 6739 -5.40.85.0/24 206487 -5.40.86.0/24 43160 -5.40.87.0/24 6739 -5.40.88.0/21 6739 -5.40.96.0/22 6739 -5.40.100.0/24 6739 -5.40.101.0/24 12357 -5.40.102.0/23 6739 -5.40.104.0/23 6739 -5.40.106.0/24 206487 -5.40.107.0/24 6739 -5.40.108.0/22 6739 -5.40.112.0/20 6739 -5.40.128.0/24 43160 -5.40.129.0/24 6739 -5.40.130.0/23 6739 -5.40.132.0/22 6739 -5.40.136.0/24 206487 -5.40.137.0/24 6739 -5.40.138.0/24 206487 -5.40.139.0/24 6739 -5.40.140.0/22 6739 -5.40.144.0/22 6739 -5.40.148.0/23 6739 -5.40.150.0/24 202676 -5.40.151.0/24 6739 -5.40.152.0/22 6739 -5.40.156.0/24 206487 -5.40.157.0/24 6739 -5.40.158.0/23 6739 -5.40.160.0/20 6739 -5.40.176.0/21 6739 -5.40.184.0/22 6739 -5.40.188.0/23 6739 -5.40.190.0/24 6739 -5.40.191.0/24 43160 -5.40.192.0/20 6739 -5.40.208.0/23 6739 -5.40.210.0/24 12357 -5.40.211.0/24 6739 -5.40.212.0/22 6739 -5.40.216.0/21 6739 -5.40.224.0/24 12357 -5.40.225.0/24 6739 -5.40.226.0/23 6739 -5.40.228.0/24 62352 -5.40.229.0/24 6739 -5.40.230.0/23 6739 -5.40.232.0/21 6739 -5.40.240.0/23 6739 -5.40.242.0/24 6739 -5.40.243.0/24 12357 -5.40.244.0/24 206487 -5.40.245.0/24 6739 -5.40.246.0/23 6739 -5.40.248.0/23 6739 -5.40.250.0/24 12357 -5.40.251.0/24 6739 -5.40.252.0/24 43160 -5.40.253.0/24 6739 -5.40.254.0/23 6739 -5.41.0.0/16 39891 -5.42.0.0/17 39493 -5.42.128.0/21 8680 -5.42.136.0/21 41998 -5.42.144.0/21 50627 -5.42.152.0/21 58208 -5.42.160.0/19 57976 -5.42.192.0/20 198802 -5.42.224.0/20 35753 -5.42.240.0/24 35753 -5.42.241.0/24 42591 -5.42.242.0/23 35753 -5.42.244.0/22 35753 -5.42.248.0/21 35753 -5.43.0.0/18 12353 -5.43.64.0/18 42560 -5.43.128.0/19 48642 -5.43.160.0/19 34594 -5.43.192.0/19 51407 -5.43.224.0/21 51248 -5.43.232.0/21 29050 -5.43.240.0/21 21191 -5.43.248.0/21 198830 -5.44.0.0/20 39812 -5.44.16.0/20 13768 -5.44.32.0/21 197830 -5.44.40.0/24 5577 -5.44.41.0/24 197890 -5.44.42.0/24 44676 -5.44.43.0/24 202423 -5.44.44.0/24 35029 -5.44.45.0/24 35415 -5.44.46.0/24 24961 -5.44.47.0/24 5577 -5.44.48.0/21 12772 -5.44.56.0/23 12772 -5.44.58.0/24 21353 -5.44.59.0/24 12772 -5.44.60.0/22 12772 -5.44.64.0/21 39787 -5.44.72.0/22 51088 -5.44.76.0/23 51088 -5.44.78.0/24 51088 -5.44.79.0/24 60358 -5.44.81.0/24 20978 -5.44.82.0/23 20978 -5.44.84.0/22 20978 -5.44.88.0/21 20978 -5.44.96.0/22 45031 -5.44.100.0/23 45012 -5.44.102.0/23 57739 -5.44.104.0/22 45012 -5.44.108.0/22 45031 -5.44.128.0/21 58185 -5.44.136.0/21 3292 -5.44.148.0/24 60144 -5.44.154.0/24 60144 -5.44.160.0/21 38926 -5.44.168.0/23 34757 -5.44.170.0/23 41794 -5.44.172.0/23 40995 -5.44.174.0/23 47433 -5.44.176.0/21 198848 -5.44.191.0/24 12757 -5.44.192.0/20 45011 -5.44.208.0/21 41491 -5.44.216.0/21 43513 -5.44.224.0/21 198823 -5.44.232.0/21 57168 -5.44.240.0/21 201692 -5.45.0.0/21 42652 -5.45.8.0/21 199134 -5.45.16.0/23 59705 -5.45.18.0/24 59705 -5.45.19.0/24 36483 -5.45.32.0/22 42707 -5.45.36.0/22 61317 -5.45.40.0/22 200310 -5.45.44.0/22 201547 -5.45.48.0/23 58223 -5.45.56.0/22 198605 -5.45.62.0/23 198605 -5.45.64.0/20 50673 -5.45.80.0/22 12722 -5.45.84.0/22 50673 -5.45.88.0/22 50673 -5.45.96.0/20 197540 -5.45.112.0/20 198068 -5.45.128.0/24 9038 -5.45.130.0/23 9038 -5.45.132.0/22 9038 -5.45.136.0/21 9038 -5.45.144.0/22 12679 -5.45.148.0/22 3209 -5.45.152.0/21 208966 -5.45.160.0/21 60203 -5.45.168.0/22 60203 -5.45.172.0/23 50563 -5.45.174.0/23 60203 -5.45.176.0/21 29141 -5.45.189.0/24 60406 -5.45.190.0/23 198867 -5.45.192.0/18 13238 -5.46.0.0/15 20978 -5.48.0.0/16 5410 -5.49.0.0/18 5410 -5.49.64.0/19 5410 -5.49.96.0/21 5410 -5.49.104.0/22 5410 -5.49.108.0/24 21502 -5.49.109.0/24 5410 -5.49.110.0/24 5410 -5.49.111.0/24 21502 -5.49.112.0/21 5410 -5.49.120.0/24 5410 -5.49.121.0/24 21502 -5.49.122.0/23 5410 -5.49.124.0/23 5410 -5.49.126.0/24 5410 -5.49.127.0/24 21502 -5.49.128.0/24 5410 -5.49.129.0/24 21502 -5.49.130.0/23 5410 -5.49.132.0/22 5410 -5.49.136.0/21 5410 -5.49.144.0/23 5410 -5.49.146.0/23 21502 -5.49.148.0/22 5410 -5.49.152.0/21 5410 -5.49.160.0/22 5410 -5.49.164.0/23 5410 -5.49.166.0/24 5410 -5.49.167.0/24 21502 -5.49.168.0/22 5410 -5.49.172.0/24 5410 -5.49.173.0/24 21502 -5.49.174.0/23 5410 -5.49.176.0/21 5410 -5.49.184.0/24 21502 -5.49.185.0/24 5410 -5.49.186.0/23 5410 -5.49.188.0/24 21502 -5.49.189.0/24 5410 -5.49.190.0/23 5410 -5.49.192.0/20 5410 -5.49.208.0/24 21502 -5.49.209.0/24 5410 -5.49.210.0/24 5410 -5.49.211.0/24 21502 -5.49.212.0/22 5410 -5.49.216.0/22 5410 -5.49.220.0/23 5410 -5.49.222.0/24 21502 -5.49.223.0/24 5410 -5.49.224.0/21 5410 -5.49.232.0/22 5410 -5.49.236.0/24 21502 -5.49.237.0/24 5410 -5.49.238.0/23 5410 -5.49.240.0/20 5410 -5.50.0.0/15 5410 -5.52.0.0/16 197207 -5.53.0.0/21 12956 -5.53.8.0/21 15425 -5.53.16.0/20 50923 -5.53.32.0/19 58224 -5.53.64.0/19 205917 -5.53.96.0/21 61137 -5.53.104.0/21 29222 -5.53.112.0/21 35297 -5.53.120.0/22 50340 -5.53.124.0/23 49505 -5.53.126.0/23 50340 -5.53.128.0/17 13124 -5.54.0.0/15 3329 -5.56.0.0/21 61408 -5.56.12.0/22 198843 -5.56.16.0/21 201011 -5.56.24.0/21 57033 -5.56.32.0/24 41075 -5.56.33.0/24 5588 -5.56.34.0/23 12301 -5.56.37.0/24 5588 -5.56.38.0/24 5588 -5.56.39.0/24 41075 -5.56.40.0/23 199248 -5.56.43.0/24 199248 -5.56.44.0/22 199248 -5.56.48.0/21 24916 -5.56.56.0/21 57286 -5.56.64.0/18 8926 -5.56.128.0/22 197343 -5.56.132.0/24 209782 -5.56.133.0/24 50673 -5.56.134.0/24 61191 -5.56.135.0/24 200296 -5.56.136.0/21 198520 -5.56.144.0/20 31027 -5.56.160.0/21 58233 -5.56.168.0/21 198850 -5.56.176.0/20 6830 -5.56.192.0/18 6830 -5.57.0.0/24 39010 -5.57.1.0/24 3176 -5.57.2.0/24 24982 -5.57.3.0/24 39010 -5.57.4.0/22 39010 -5.57.8.0/21 8449 -5.57.16.0/22 43996 -5.57.20.0/23 202196 -5.57.22.0/23 43996 -5.57.24.0/21 199434 -5.57.32.0/24 34078 -5.57.33.0/24 197343 -5.57.34.0/23 197343 -5.57.36.0/22 197343 -5.57.40.0/21 50372 -5.57.48.0/21 198608 -5.57.56.0/21 204167 -5.57.64.0/21 49332 -5.57.72.0/21 197423 -5.57.88.0/21 8330 -5.57.96.0/19 49902 -5.57.128.0/18 43939 -5.57.192.0/21 12360 -5.57.200.0/21 199554 -5.57.216.0/21 13178 -5.57.224.0/21 29119 -5.57.232.0/21 28775 -5.57.240.0/21 35100 -5.57.248.0/21 42707 -5.58.0.0/16 16223 -5.59.0.0/21 56634 -5.59.8.0/23 196952 -5.59.10.0/24 202564 -5.59.11.0/24 206351 -5.59.12.0/22 56361 -5.59.16.0/21 48146 -5.59.24.0/21 207165 -5.59.32.0/23 31566 -5.59.34.0/24 39906 -5.59.35.0/24 206809 -5.59.38.0/23 39248 -5.59.40.0/22 61367 -5.59.44.0/22 59494 -5.59.48.0/22 206649 -5.59.52.0/23 31566 -5.59.54.0/24 205946 -5.59.55.0/24 49348 -5.59.60.0/22 48146 -5.59.64.0/19 201746 -5.59.97.0/24 57707 -5.59.98.0/23 31566 -5.59.100.0/22 197074 -5.59.104.0/24 51211 -5.59.105.0/24 57361 -5.59.108.0/22 201746 -5.59.112.0/21 48146 -5.59.120.0/21 44587 -5.59.128.0/19 47626 -5.59.160.0/21 57888 -5.59.168.0/21 201746 -5.59.176.0/22 49348 -5.59.184.0/22 48481 -5.59.192.0/18 50923 -5.60.0.0/16 8374 -5.61.0.0/21 204923 -5.61.8.0/24 25227 -5.61.9.0/24 60748 -5.61.10.0/23 25227 -5.61.12.0/24 25227 -5.61.13.0/24 51178 -5.61.14.0/24 51178 -5.61.15.0/24 199072 -5.61.16.0/21 47764 -5.61.24.0/23 58262 -5.61.26.0/24 58262 -5.61.27.0/24 39655 -5.61.28.0/22 58262 -5.61.32.0/20 28753 -5.61.48.0/22 50673 -5.61.56.0/22 50673 -5.61.60.0/23 9009 -5.61.64.0/21 15644 -5.61.72.0/21 58173 -5.61.80.0/21 8469 -5.61.88.0/21 198872 -5.61.96.0/21 39683 -5.61.112.0/21 199373 -5.61.120.0/21 25460 -5.61.128.0/18 58243 -5.61.192.0/21 29286 -5.61.200.0/21 198885 -5.61.208.0/23 198193 -5.61.212.0/22 50129 -5.61.216.0/21 202709 -5.61.232.0/21 47764 -5.61.240.0/21 47169 -5.61.248.0/21 12859 -5.62.16.0/23 198605 -5.62.18.0/24 199524 -5.62.19.0/24 49505 -5.62.20.0/24 198605 -5.62.21.0/24 36351 -5.62.22.0/23 36351 -5.62.24.0/24 198605 -5.62.30.0/24 198605 -5.62.32.0/24 198605 -5.62.33.0/24 36351 -5.62.34.0/23 36351 -5.62.36.0/22 198605 -5.62.40.0/21 198605 -5.62.48.0/23 198605 -5.62.51.0/24 16397 -5.62.52.0/22 198605 -5.62.56.0/21 198605 -5.62.64.0/21 199610 -5.62.72.0/21 62275 -5.62.80.0/20 14537 -5.62.96.0/19 199610 -5.62.128.0/24 198589 -5.62.132.0/23 198589 -5.62.136.0/24 198589 -5.62.141.0/24 198589 -5.62.142.0/24 198589 -5.62.144.0/24 198589 -5.62.152.0/21 46844 -5.62.160.0/19 12880 -5.62.192.0/18 57218 -5.63.0.0/21 37284 -5.63.8.0/22 57497 -5.63.12.0/23 57497 -5.63.14.0/24 57497 -5.63.15.0/24 16292 -5.63.16.0/21 199133 -5.63.24.0/21 31688 -5.63.32.0/19 62336 -5.63.64.0/18 9198 -5.63.128.0/21 49813 -5.63.136.0/21 21309 -5.63.144.0/21 29302 -5.63.152.0/21 197695 -5.63.160.0/24 201921 -5.63.161.0/24 49800 -5.63.162.0/23 49800 -5.63.164.0/22 49800 -5.63.168.0/21 30848 -5.63.176.0/21 61310 -5.63.184.0/24 208399 -5.63.185.0/24 203306 -5.63.186.0/23 200594 -5.63.188.0/23 200602 -5.63.192.0/18 21334 -5.64.0.0/13 5607 -5.72.0.0/15 57218 -5.74.0.0/16 12880 -5.75.0.0/17 58224 -5.75.128.0/17 24940 -5.76.0.0/16 9198 -5.77.0.0/20 34145 -5.77.16.0/22 34145 -5.77.20.0/22 20730 -5.77.24.0/21 20730 -5.77.32.0/22 20860 -5.77.36.0/23 20860 -5.77.38.0/24 20860 -5.77.39.0/24 31727 -5.77.40.0/21 20860 -5.77.48.0/22 20860 -5.77.52.0/23 20860 -5.77.54.0/24 20860 -5.77.55.0/24 31727 -5.77.56.0/22 20860 -5.77.60.0/23 20860 -5.77.62.0/23 31727 -5.77.64.0/19 12874 -5.77.128.0/17 44395 -5.78.0.0/16 16322 -5.79.0.0/18 15395 -5.79.64.0/18 60781 -5.79.128.0/17 8369 -5.80.0.0/15 2856 -5.82.0.0/16 35819 -5.83.0.0/21 51050 -5.83.8.0/21 58273 -5.83.16.0/21 35362 -5.83.24.0/21 28717 -5.83.32.0/21 6718 -5.83.40.0/24 199498 -5.83.42.0/24 51204 -5.83.43.0/24 41732 -5.83.44.0/24 207115 -5.83.45.0/24 64398 -5.83.46.0/24 35775 -5.83.47.0/24 64398 -5.83.48.0/22 29119 -5.83.52.0/23 29119 -5.83.54.0/24 50563 -5.83.55.0/24 29119 -5.83.56.0/21 61395 -5.83.64.0/21 50563 -5.83.72.0/21 29119 -5.83.80.0/21 29119 -5.83.88.0/24 50563 -5.83.89.0/24 29119 -5.83.90.0/23 29119 -5.83.92.0/23 29119 -5.83.94.0/24 29119 -5.83.95.0/24 50563 -5.83.96.0/21 8190 -5.83.104.0/21 198898 -5.83.112.0/21 58287 -5.83.120.0/22 49360 -5.83.124.0/22 198887 -5.83.128.0/21 12586 -5.83.136.0/24 200032 -5.83.137.0/24 12586 -5.83.138.0/23 12586 -5.83.140.0/22 12586 -5.83.151.0/24 12586 -5.83.160.0/22 199610 -5.83.176.0/20 200924 -5.83.192.0/19 51059 -5.83.224.0/21 3292 -5.83.232.0/23 39506 -5.83.240.0/20 57791 -5.84.0.0/14 24608 -5.88.0.0/13 30722 -5.96.0.0/14 3269 -5.100.0.0/18 28876 -5.100.64.0/18 42038 -5.100.128.0/20 42652 -5.100.144.0/21 58324 -5.100.152.0/21 394695 -5.100.160.0/21 30873 -5.100.168.0/21 18705 -5.100.176.0/20 50304 -5.100.192.0/19 44087 -5.100.224.0/21 8315 -5.100.232.0/21 12481 -5.100.240.0/22 56902 -5.100.244.0/24 204128 -5.100.245.0/24 209785 -5.100.248.0/21 12400 -5.101.0.0/21 34665 -5.101.8.0/21 56340 -5.101.16.0/21 28840 -5.101.24.0/21 201952 -5.101.32.0/21 49614 -5.101.40.0/22 34665 -5.101.44.0/23 202023 -5.101.46.0/23 209813 -5.101.48.0/22 49505 -5.101.52.0/22 21299 -5.101.56.0/22 21299 -5.101.60.0/22 8595 -5.101.64.0/21 34665 -5.101.72.0/21 48096 -5.101.80.0/21 34665 -5.101.88.0/24 50113 -5.101.89.0/24 34665 -5.101.90.0/23 34665 -5.101.96.0/20 14061 -5.101.112.0/20 198068 -5.101.128.0/21 56340 -5.101.136.0/21 42831 -5.101.144.0/21 42831 -5.101.152.0/21 198610 -5.101.160.0/21 199610 -5.101.168.0/21 42831 -5.101.176.0/20 198068 -5.101.192.0/21 56340 -5.101.200.0/21 8595 -5.101.208.0/21 39047 -5.101.216.0/23 50896 -5.101.219.0/24 50896 -5.101.220.0/24 50896 -5.101.222.0/24 50896 -5.101.224.0/19 15552 -5.102.0.0/19 198471 -5.102.32.0/22 60115 -5.102.36.0/22 39130 -5.102.40.0/22 200999 -5.102.44.0/24 208984 -5.102.45.0/24 210272 -5.102.46.0/24 208423 -5.102.47.0/24 208424 -5.102.48.0/20 198420 -5.102.64.0/21 41023 -5.102.72.0/21 51110 -5.102.80.0/20 8586 -5.102.96.0/19 51737 -5.102.128.0/23 199976 -5.102.130.0/24 199976 -5.102.131.0/24 201359 -5.102.132.0/24 199976 -5.102.133.0/24 209259 -5.102.134.0/24 207191 -5.102.135.0/24 200380 -5.102.136.0/22 52102 -5.102.140.0/23 52102 -5.102.142.0/24 52102 -5.102.144.0/21 59414 -5.102.152.0/21 28890 -5.102.160.0/21 199284 -5.102.168.0/23 50300 -5.102.170.0/23 62217 -5.102.172.0/22 50300 -5.102.176.0/21 204170 -5.102.184.0/21 6908 -5.102.192.0/18 47956 -5.103.0.0/16 44869 -5.104.0.0/20 47883 -5.104.16.0/21 198977 -5.104.24.0/21 12779 -5.104.32.0/19 59815 -5.104.64.0/23 15133 -5.104.72.0/22 9009 -5.104.76.0/22 35913 -5.104.80.0/21 198964 -5.104.88.0/21 51873 -5.104.96.0/21 50624 -5.104.104.0/21 24961 -5.104.128.0/21 29256 -5.104.136.0/21 43350 -5.104.144.0/21 21263 -5.104.152.0/22 203507 -5.104.156.0/23 206970 -5.104.159.0/24 202003 -5.104.160.0/21 34376 -5.104.168.0/23 57344 -5.104.170.0/23 49699 -5.104.172.0/23 49699 -5.104.174.0/24 57344 -5.104.175.0/24 44901 -5.104.176.0/20 34524 -5.104.192.0/21 34659 -5.104.200.0/21 58344 -5.104.208.0/21 58224 -5.104.216.0/21 28760 -5.104.224.0/21 62370 -5.104.232.0/21 9198 -5.104.240.0/21 20645 -5.104.248.0/21 58321 -5.105.0.0/19 43554 -5.105.32.0/21 43554 -5.105.44.0/22 43554 -5.105.52.0/22 43554 -5.105.56.0/21 43554 -5.105.64.0/20 43554 -5.105.84.0/22 43554 -5.105.88.0/21 43554 -5.105.100.0/22 43554 -5.105.108.0/22 43554 -5.105.116.0/22 43554 -5.105.120.0/21 43554 -5.105.128.0/21 43554 -5.105.136.0/22 43554 -5.105.144.0/20 43554 -5.105.160.0/20 43554 -5.105.176.0/22 43554 -5.105.184.0/22 43554 -5.105.192.0/19 43554 -5.105.224.0/20 43554 -5.105.240.0/21 43554 -5.105.248.0/22 43554 -5.106.0.0/16 197207 -5.107.0.0/16 5384 -5.108.0.0/16 35819 -5.109.0.0/17 35819 -5.109.128.0/18 34400 -5.109.192.0/18 35819 -5.110.0.0/19 35819 -5.110.32.0/19 34400 -5.110.64.0/18 35819 -5.110.128.0/17 35819 -5.111.0.0/16 35819 -5.112.0.0/14 44244 -5.116.0.0/15 44244 -5.118.4.0/24 44244 -5.118.10.0/24 44244 -5.119.0.0/16 44244 -5.120.0.0/13 44244 -5.128.0.0/16 31200 -5.129.0.0/17 31200 -5.129.128.0/19 31200 -5.129.176.0/22 60119 -5.129.180.0/24 206817 -5.129.181.0/24 31200 -5.129.182.0/23 60119 -5.129.184.0/23 31200 -5.129.186.0/24 31200 -5.129.187.0/24 205076 -5.129.188.0/22 60119 -5.129.192.0/18 50923 -5.130.0.0/15 31200 -5.132.0.0/17 50266 -5.132.137.0/24 44453 -5.132.157.0/24 47692 -5.132.158.0/24 31400 -5.132.159.0/24 47692 -5.132.160.0/24 47692 -5.132.161.0/24 44453 -5.132.162.0/24 44453 -5.132.189.0/24 44453 -5.132.190.0/24 44453 -5.132.191.0/24 47692 -5.132.192.0/19 35753 -5.132.224.0/20 35753 -5.132.240.0/21 35753 -5.132.254.0/23 35753 -5.133.0.0/21 198994 -5.133.8.0/21 197155 -5.133.16.0/21 59395 -5.133.24.0/22 199046 -5.133.28.0/23 199046 -5.133.30.0/24 57704 -5.133.31.0/24 199046 -5.133.32.0/22 51395 -5.133.40.0/21 199468 -5.133.48.0/22 198292 -5.133.56.0/22 198471 -5.133.60.0/24 198471 -5.133.61.0/24 198292 -5.133.62.0/23 198292 -5.133.64.0/23 15440 -5.133.66.0/24 42549 -5.133.68.0/23 56844 -5.133.72.0/22 14717 -5.133.76.0/22 12494 -5.133.80.0/22 60440 -5.133.84.0/22 60880 -5.133.92.0/22 39184 -5.133.96.0/22 200752 -5.133.104.0/22 38933 -5.133.108.0/23 49392 -5.133.110.0/24 12722 -5.133.111.0/24 43297 -5.133.116.0/22 9009 -5.133.128.0/19 20875 -5.133.160.0/23 41877 -5.133.164.0/24 206751 -5.133.168.0/22 51561 -5.133.172.0/22 43207 -5.133.176.0/21 20860 -5.133.184.0/23 25577 -5.133.186.0/23 29697 -5.133.188.0/24 29697 -5.133.189.0/24 25577 -5.133.190.0/24 3257 -5.133.191.0/24 25577 -5.133.192.0/19 197595 -5.133.224.0/20 196925 -5.133.240.0/21 41107 -5.133.248.0/21 197227 -5.134.0.0/21 34762 -5.134.8.0/21 34282 -5.134.24.0/21 39440 -5.134.32.0/20 58345 -5.134.48.0/20 57304 -5.134.64.0/23 197336 -5.134.68.0/22 39039 -5.134.72.0/21 199075 -5.134.80.0/21 49800 -5.134.88.0/21 62129 -5.134.96.0/21 34391 -5.134.104.0/23 41937 -5.134.108.0/22 41937 -5.134.112.0/21 59432 -5.134.120.0/21 3242 -5.134.128.0/18 57218 -5.134.192.0/21 43754 -5.134.200.0/21 29256 -5.134.208.0/21 42656 -5.134.216.0/21 21367 -5.134.224.0/19 29256 -5.135.0.0/16 16276 -5.136.0.0/15 12389 -5.138.0.0/16 12389 -5.139.0.0/17 12389 -5.139.128.0/18 12389 -5.139.192.0/20 35177 -5.139.208.0/23 12389 -5.139.210.0/23 35177 -5.139.212.0/22 35177 -5.139.216.0/23 35177 -5.139.218.0/23 12389 -5.139.220.0/22 35177 -5.139.224.0/19 12389 -5.140.0.0/19 12389 -5.140.32.0/21 34875 -5.140.40.0/21 12389 -5.140.48.0/20 12389 -5.140.64.0/18 12389 -5.140.128.0/19 12389 -5.140.160.0/24 12389 -5.140.161.0/24 60716 -5.140.162.0/23 12389 -5.140.164.0/22 12389 -5.140.168.0/21 12389 -5.140.176.0/20 12389 -5.140.192.0/18 12389 -5.141.0.0/18 12389 -5.141.64.0/21 34875 -5.141.72.0/21 12389 -5.141.80.0/20 12389 -5.141.96.0/21 12389 -5.141.104.0/22 48190 -5.141.108.0/22 12389 -5.141.112.0/20 12389 -5.141.128.0/17 12389 -5.142.0.0/16 12389 -5.143.0.0/17 12389 -5.143.128.0/18 12389 -5.143.192.0/19 12389 -5.143.224.0/24 201907 -5.143.225.0/24 12389 -5.143.226.0/24 201907 -5.143.227.0/24 12389 -5.143.228.0/22 12389 -5.143.232.0/22 12389 -5.143.236.0/23 12389 -5.143.238.0/24 203841 -5.143.239.0/24 12389 -5.143.240.0/20 12389 -5.144.0.0/19 15600 -5.144.32.0/21 25091 -5.144.40.0/21 15600 -5.144.48.0/20 50463 -5.144.64.0/20 13055 -5.144.80.0/24 59445 -5.144.84.0/22 59445 -5.144.88.0/23 61349 -5.144.90.0/24 59445 -5.144.91.0/24 61349 -5.144.96.0/20 8359 -5.144.112.0/21 8359 -5.144.120.0/22 8359 -5.144.124.0/24 8359 -5.144.125.0/24 29209 -5.144.126.0/23 60891 -5.144.128.0/21 59441 -5.144.136.0/21 8304 -5.144.144.0/21 197991 -5.144.154.0/23 8468 -5.144.156.0/22 31655 -5.144.160.0/20 12637 -5.144.176.0/21 30938 -5.144.184.0/21 31638 -5.144.192.0/19 29247 -5.144.224.0/20 29247 -5.145.0.0/18 15600 -5.145.64.0/19 15600 -5.145.96.0/21 15600 -5.145.104.0/21 203165 -5.145.112.0/22 60256 -5.145.116.0/24 58267 -5.145.117.0/24 60256 -5.145.119.0/24 60256 -5.145.120.0/21 35193 -5.145.128.0/20 34953 -5.145.144.0/22 196916 -5.145.148.0/22 197206 -5.145.152.0/21 44381 -5.145.160.0/21 44265 -5.145.168.0/21 39020 -5.145.176.0/23 198807 -5.145.184.0/21 9063 -5.145.192.0/18 44265 -5.146.0.0/15 6830 -5.148.0.0/17 25180 -5.148.128.0/19 25180 -5.148.160.0/19 29691 -5.148.192.0/18 6830 -5.149.0.0/21 34960 -5.149.8.0/21 33967 -5.149.16.0/20 15600 -5.149.32.0/19 15600 -5.149.64.0/23 59457 -5.149.66.0/24 35567 -5.149.67.0/24 59457 -5.149.68.0/22 59457 -5.149.72.0/21 59457 -5.149.80.0/21 59457 -5.149.92.0/22 59457 -5.149.96.0/23 59458 -5.149.99.0/24 59458 -5.149.100.0/24 59458 -5.149.102.0/23 59458 -5.149.104.0/23 59458 -5.149.108.0/24 59458 -5.149.112.0/22 29467 -5.149.116.0/24 29467 -5.149.118.0/24 54058 -5.149.119.0/24 29467 -5.149.120.0/21 28907 -5.149.128.0/21 35753 -5.149.136.0/23 6696 -5.149.138.0/24 6696 -5.149.139.0/24 48844 -5.149.140.0/22 6696 -5.149.144.0/23 15774 -5.149.146.0/24 15774 -5.149.147.0/24 21438 -5.149.148.0/24 21438 -5.149.149.0/24 15774 -5.149.150.0/24 15774 -5.149.152.0/23 56724 -5.149.154.0/24 56724 -5.149.155.0/24 201551 -5.149.156.0/23 201551 -5.149.158.0/24 60731 -5.149.159.0/24 56724 -5.149.160.0/21 31229 -5.149.168.0/21 199256 -5.149.176.0/20 47548 -5.149.192.0/21 196890 -5.149.200.0/21 50477 -5.149.208.0/20 35816 -5.149.224.0/20 12611 -5.149.240.0/21 197248 -5.149.248.0/23 59711 -5.149.250.0/23 61046 -5.149.252.0/23 201525 -5.149.254.0/23 59711 -5.150.64.0/21 60187 -5.150.74.0/23 60187 -5.150.76.0/24 60187 -5.150.80.0/20 60187 -5.150.96.0/19 60187 -5.150.128.0/20 5602 -5.150.144.0/21 34912 -5.150.156.0/22 36131 -5.150.168.0/22 31151 -5.150.172.0/24 31151 -5.150.192.0/18 8473 -5.151.0.0/16 42689 -5.152.0.0/17 35805 -5.152.128.0/19 199026 -5.152.160.0/21 59472 -5.152.168.0/21 29286 -5.152.176.0/24 198047 -5.152.177.0/24 6939 -5.152.178.0/24 25542 -5.152.179.0/24 6939 -5.152.180.0/24 17819 -5.152.181.0/24 6939 -5.152.182.0/23 6939 -5.152.184.0/23 59519 -5.152.187.0/24 53780 -5.152.188.0/23 59519 -5.152.192.0/19 20860 -5.152.224.0/21 5538 -5.152.232.0/21 199051 -5.152.240.0/21 12874 -5.152.248.0/21 59695 -5.153.0.0/18 36351 -5.153.64.0/19 12703 -5.153.96.0/21 44574 -5.153.104.0/21 60687 -5.153.112.0/20 15600 -5.153.128.0/23 41039 -5.153.130.0/23 3261 -5.153.132.0/24 3261 -5.153.133.0/24 41039 -5.153.134.0/23 41039 -5.153.136.0/23 41039 -5.153.138.0/24 3261 -5.153.139.0/24 41039 -5.153.140.0/23 3261 -5.153.142.0/23 41039 -5.153.144.0/20 3261 -5.153.160.0/22 3261 -5.153.168.0/22 3261 -5.153.172.0/24 3261 -5.153.173.0/24 41039 -5.153.174.0/24 41172 -5.153.175.0/24 3261 -5.153.176.0/23 41039 -5.153.178.0/24 209595 -5.153.179.0/24 3261 -5.153.180.0/24 8274 -5.153.181.0/24 41039 -5.153.182.0/23 41081 -5.153.184.0/21 196977 -5.153.192.0/19 44574 -5.153.224.0/21 35425 -5.153.232.0/22 57858 -5.153.236.0/24 41564 -5.153.237.0/24 57858 -5.153.238.0/24 57858 -5.153.239.0/24 41564 -5.153.240.0/21 15600 -5.153.248.0/21 50957 -5.154.0.0/24 50563 -5.154.1.0/24 29119 -5.154.2.0/23 29119 -5.154.4.0/23 29119 -5.154.6.0/24 202813 -5.154.7.0/24 29119 -5.154.8.0/21 29119 -5.154.16.0/23 29119 -5.154.18.0/24 29119 -5.154.19.0/24 199952 -5.154.20.0/22 29119 -5.154.24.0/21 29119 -5.154.32.0/21 29119 -5.154.40.0/22 29119 -5.154.44.0/24 50563 -5.154.45.0/24 29119 -5.154.46.0/23 29119 -5.154.48.0/21 29119 -5.154.56.0/22 48427 -5.154.60.0/22 29119 -5.154.64.0/22 29119 -5.154.68.0/24 29119 -5.154.69.0/24 202813 -5.154.70.0/23 29119 -5.154.72.0/21 29119 -5.154.80.0/20 29119 -5.154.96.0/23 29119 -5.154.98.0/24 203499 -5.154.99.0/24 29119 -5.154.100.0/23 29119 -5.154.102.0/23 206124 -5.154.104.0/21 29119 -5.154.112.0/23 29119 -5.154.114.0/24 203600 -5.154.115.0/24 29119 -5.154.116.0/22 29119 -5.154.120.0/21 29119 -5.154.128.0/22 36678 -5.154.132.0/23 4809 -5.154.134.0/23 36678 -5.154.136.0/22 4809 -5.154.140.0/22 36678 -5.154.144.0/21 36678 -5.154.152.0/22 36678 -5.154.156.0/23 36678 -5.154.158.0/23 4809 -5.154.160.0/21 1299 -5.154.168.0/23 57869 -5.154.170.0/24 42076 -5.154.171.0/24 39203 -5.154.172.0/24 33881 -5.154.174.0/24 203020 -5.154.175.0/24 43214 -5.154.176.0/24 43214 -5.154.177.0/24 50939 -5.154.178.0/24 50939 -5.154.179.0/24 5588 -5.154.180.0/24 60201 -5.154.181.0/24 42617 -5.154.182.0/23 48273 -5.154.184.0/24 48273 -5.154.185.0/24 43474 -5.154.186.0/24 39712 -5.154.187.0/24 60289 -5.154.188.0/23 48273 -5.154.190.0/23 59728 -5.154.192.0/19 15605 -5.154.224.0/24 6718 -5.154.225.0/24 44252 -5.154.226.0/23 5588 -5.154.228.0/23 57869 -5.154.230.0/23 5588 -5.154.232.0/24 48273 -5.154.233.0/24 48734 -5.154.236.0/24 207148 -5.154.237.0/24 34358 -5.154.238.0/24 34358 -5.154.239.0/24 6663 -5.154.240.0/24 209622 -5.154.241.0/24 6830 -5.154.242.0/24 48273 -5.154.243.0/24 41197 -5.154.244.0/22 62094 -5.154.248.0/22 57869 -5.154.252.0/22 60231 -5.155.0.0/16 29256 -5.156.0.0/16 39891 -5.157.0.0/23 57858 -5.157.2.0/23 57972 -5.157.5.0/24 57858 -5.157.6.0/24 47536 -5.157.7.0/24 57858 -5.157.8.0/24 41204 -5.157.9.0/24 57858 -5.157.10.0/24 57858 -5.157.11.0/24 47536 -5.157.12.0/24 57858 -5.157.13.0/24 47536 -5.157.15.0/24 57858 -5.157.16.0/24 57858 -5.157.17.0/24 41204 -5.157.18.0/24 57858 -5.157.19.0/24 204353 -5.157.20.0/23 57858 -5.157.22.0/24 60485 -5.157.23.0/24 47536 -5.157.24.0/24 47536 -5.157.25.0/24 57858 -5.157.26.0/24 204353 -5.157.28.0/24 57858 -5.157.29.0/24 47536 -5.157.31.0/24 57858 -5.157.32.0/23 47536 -5.157.34.0/23 57858 -5.157.36.0/24 57858 -5.157.37.0/24 47536 -5.157.38.0/24 60485 -5.157.40.0/24 57858 -5.157.42.0/24 41204 -5.157.43.0/24 47536 -5.157.44.0/24 57858 -5.157.45.0/24 41204 -5.157.46.0/23 57858 -5.157.48.0/22 57858 -5.157.52.0/24 57858 -5.157.53.0/24 47536 -5.157.54.0/24 57858 -5.157.55.0/24 47536 -5.157.56.0/24 41204 -5.157.58.0/23 41204 -5.157.60.0/22 41204 -5.157.64.0/21 12658 -5.157.72.0/21 174 -5.157.80.0/21 48635 -5.157.88.0/21 21162 -5.157.96.0/19 35612 -5.157.136.0/21 49687 -5.157.144.0/21 49687 -5.157.152.0/21 60882 -5.157.160.0/21 44374 -5.157.168.0/21 49687 -5.157.176.0/20 197476 -5.157.192.0/22 42859 -5.157.196.0/24 49687 -5.157.200.0/21 60901 -5.157.208.0/20 201909 -5.157.224.0/21 60231 -5.157.232.0/21 60882 -5.157.240.0/20 199552 -5.158.0.0/18 12353 -5.158.64.0/20 199181 -5.158.80.0/23 43160 -5.158.82.0/24 43160 -5.158.86.0/24 43160 -5.158.88.0/21 44369 -5.158.96.0/19 38934 -5.158.128.0/18 6830 -5.158.192.0/21 199990 -5.158.200.0/21 59518 -5.158.208.0/21 2914 -5.158.216.0/22 199143 -5.158.220.0/24 199143 -5.158.222.0/24 199143 -5.158.223.0/24 60609 -5.158.224.0/21 41489 -5.158.232.0/21 34892 -5.158.240.0/20 49594 -5.159.0.0/21 49808 -5.159.8.0/21 59499 -5.159.16.0/24 59503 -5.159.20.0/24 61167 -5.159.22.0/23 200568 -5.159.24.0/21 9136 -5.159.32.0/21 202016 -5.159.40.0/21 61194 -5.159.48.0/24 198357 -5.159.50.0/23 198357 -5.159.52.0/23 198357 -5.159.55.0/24 198357 -5.159.56.0/21 59507 -5.159.64.0/19 59507 -5.159.96.0/20 59508 -5.159.112.0/21 197078 -5.159.120.0/21 59659 -5.159.128.0/18 12334 -5.159.192.0/23 199053 -5.159.194.0/24 199053 -5.159.199.0/24 199053 -5.159.200.0/21 48620 -5.159.208.0/21 62262 -5.159.216.0/22 34655 -5.159.224.0/21 20860 -5.159.232.0/22 47381 -5.159.236.0/23 47381 -5.159.238.0/24 47381 -5.159.248.0/21 41296 -5.160.0.0/21 42337 -5.160.8.0/22 42337 -5.160.12.0/23 42337 -5.160.14.0/24 42337 -5.160.15.0/24 61176 -5.160.16.0/21 49100 -5.160.24.0/22 42337 -5.160.28.0/23 42337 -5.160.30.0/24 62318 -5.160.31.0/24 42337 -5.160.32.0/21 42337 -5.160.40.0/23 49100 -5.160.42.0/23 42337 -5.160.44.0/22 42337 -5.160.48.0/22 42337 -5.160.52.0/23 42337 -5.160.54.0/23 62157 -5.160.56.0/21 42337 -5.160.64.0/21 42337 -5.160.72.0/22 42337 -5.160.76.0/24 42337 -5.160.77.0/24 204650 -5.160.78.0/23 42337 -5.160.80.0/20 42337 -5.160.96.0/21 42337 -5.160.104.0/22 49100 -5.160.108.0/23 42337 -5.160.110.0/23 204650 -5.160.112.0/22 49100 -5.160.116.0/22 51469 -5.160.120.0/21 42337 -5.160.128.0/24 51235 -5.160.129.0/24 42337 -5.160.130.0/23 204650 -5.160.132.0/22 51469 -5.160.136.0/22 42337 -5.160.140.0/24 42337 -5.160.141.0/24 64460 -5.160.142.0/23 51469 -5.160.144.0/23 51469 -5.160.146.0/24 12660 -5.160.147.0/24 42337 -5.160.148.0/22 42337 -5.160.152.0/24 202391 -5.160.153.0/24 60932 -5.160.154.0/23 50855 -5.160.156.0/24 25158 -5.160.157.0/24 64436 -5.160.158.0/23 42337 -5.160.160.0/22 42337 -5.160.164.0/23 49100 -5.160.166.0/23 42337 -5.160.168.0/21 42337 -5.160.176.0/22 42337 -5.160.180.0/22 51235 -5.160.184.0/22 42337 -5.160.188.0/23 42337 -5.160.190.0/23 49100 -5.160.192.0/23 60811 -5.160.194.0/24 59797 -5.160.195.0/24 59961 -5.160.196.0/23 43395 -5.160.198.0/24 60932 -5.160.199.0/24 60014 -5.160.200.0/23 42337 -5.160.202.0/23 59838 -5.160.204.0/23 62039 -5.160.206.0/23 42337 -5.160.208.0/23 204650 -5.160.210.0/24 16018 -5.160.211.0/24 34341 -5.160.212.0/22 204650 -5.160.216.0/24 59757 -5.160.217.0/24 59501 -5.160.218.0/23 42337 -5.160.220.0/23 50692 -5.160.222.0/23 62265 -5.160.224.0/20 42337 -5.160.240.0/23 43395 -5.160.242.0/24 49433 -5.160.243.0/24 42337 -5.160.244.0/23 35615 -5.160.246.0/23 42337 -5.160.248.0/21 49100 -5.161.0.0/16 24940 -5.162.0.0/16 50010 -5.163.0.0/16 25019 -5.164.0.0/20 39028 -5.164.16.0/20 52207 -5.164.32.0/20 41843 -5.164.48.0/20 56377 -5.164.64.0/18 51570 -5.164.128.0/18 34533 -5.164.192.0/18 42682 -5.165.0.0/19 51604 -5.165.32.0/19 34533 -5.165.64.0/20 50542 -5.165.80.0/20 57044 -5.165.96.0/20 57026 -5.165.112.0/20 50498 -5.165.128.0/20 49048 -5.165.144.0/20 57026 -5.165.160.0/20 51819 -5.165.176.0/21 57378 -5.165.184.0/21 51035 -5.165.192.0/20 50543 -5.165.208.0/21 56981 -5.165.216.0/21 51819 -5.165.224.0/20 51604 -5.165.240.0/20 57378 -5.166.0.0/19 51819 -5.166.32.0/19 51604 -5.166.64.0/18 50512 -5.166.128.0/19 51570 -5.166.160.0/19 12768 -5.166.192.0/19 42682 -5.166.224.0/21 41661 -5.166.232.0/21 57378 -5.166.240.0/21 39028 -5.166.248.0/21 56420 -5.167.0.0/19 51645 -5.167.32.0/20 51819 -5.167.48.0/21 57378 -5.167.56.0/21 39028 -5.167.64.0/20 57026 -5.167.80.0/20 51819 -5.167.96.0/20 49048 -5.167.112.0/20 57378 -5.167.128.0/20 52207 -5.167.144.0/20 50543 -5.167.160.0/20 41727 -5.167.176.0/20 51570 -5.167.192.0/19 51570 -5.167.224.0/19 51604 -5.168.0.0/14 16232 -5.172.0.0/19 28890 -5.172.32.0/21 9125 -5.172.40.0/21 20559 -5.172.48.0/20 43599 -5.172.128.0/20 15600 -5.172.144.0/21 45011 -5.172.152.0/21 12703 -5.172.160.0/20 20712 -5.172.184.0/22 15798 -5.172.188.0/23 60279 -5.172.190.0/23 207012 -5.172.192.0/21 199081 -5.172.200.0/22 199081 -5.172.204.0/23 199081 -5.172.206.0/24 199081 -5.172.207.0/24 60911 -5.172.208.0/21 13113 -5.172.216.0/21 199139 -5.172.224.0/19 8374 -5.173.0.0/17 39603 -5.173.128.0/18 39603 -5.173.192.0/19 39603 -5.173.224.0/19 201019 -5.174.0.0/16 8374 -5.175.0.0/20 8972 -5.175.16.0/22 8972 -5.175.20.0/22 20773 -5.175.24.0/22 8972 -5.175.28.0/22 20773 -5.175.32.0/21 199352 -5.175.40.0/21 50926 -5.175.48.0/21 29419 -5.175.56.0/23 42010 -5.175.64.0/20 29286 -5.175.80.0/21 47886 -5.175.88.0/21 44507 -5.175.96.0/19 43793 -5.175.128.0/17 12586 -5.176.0.0/16 20978 -5.177.128.0/18 20978 -5.177.192.0/20 20978 -5.177.224.0/19 20978 -5.178.0.0/20 15723 -5.178.16.0/24 3257 -5.178.17.0/24 25465 -5.178.18.0/24 3257 -5.178.19.0/24 25465 -5.178.20.0/22 3257 -5.178.24.0/21 21191 -5.178.32.0/21 39647 -5.178.40.0/21 6762 -5.178.48.0/20 15962 -5.178.64.0/21 50673 -5.178.72.0/21 43948 -5.178.80.0/22 49505 -5.178.84.0/23 50340 -5.178.86.0/23 49505 -5.178.88.0/21 59919 -5.178.96.0/20 30938 -5.178.112.0/21 59554 -5.178.120.0/21 5602 -5.178.128.0/17 16010 -5.179.0.0/20 8605 -5.179.16.0/21 8605 -5.179.24.0/22 8605 -5.179.29.0/24 3241 -5.179.30.0/23 3241 -5.179.32.0/19 6830 -5.179.64.0/21 6830 -5.179.72.0/21 59597 -5.179.80.0/21 31027 -5.179.88.0/22 31027 -5.179.92.0/23 31027 -5.179.94.0/24 58282 -5.179.95.0/24 31027 -5.179.96.0/21 5413 -5.179.104.0/22 5413 -5.179.108.0/23 5413 -5.179.110.0/24 8468 -5.179.111.0/24 5413 -5.179.112.0/21 197308 -5.179.120.0/21 49463 -5.179.160.0/19 12874 -5.179.192.0/21 34235 -5.179.200.0/21 48173 -5.179.208.0/20 48173 -5.179.224.0/19 48173 -5.180.4.0/22 202469 -5.180.8.0/22 47602 -5.180.12.0/22 12577 -5.180.16.0/22 62415 -5.180.20.0/22 18978 -5.180.24.0/21 18978 -5.180.32.0/24 61317 -5.180.33.0/24 35575 -5.180.34.0/23 61317 -5.180.36.0/23 208944 -5.180.40.0/22 134094 -5.180.44.0/24 134094 -5.180.45.0/24 51559 -5.180.46.0/23 134094 -5.180.48.0/22 61317 -5.180.52.0/22 18978 -5.180.56.0/22 209146 -5.180.60.0/23 203380 -5.180.62.0/24 62240 -5.180.64.0/22 31400 -5.180.68.0/24 208761 -5.180.76.0/22 9009 -5.180.80.0/22 61317 -5.180.84.0/22 13213 -5.180.92.0/22 209141 -5.180.96.0/22 55933 -5.180.100.0/24 41813 -5.180.101.0/24 49747 -5.180.102.0/24 35196 -5.180.103.0/24 57330 -5.180.104.0/22 209737 -5.180.116.0/22 35202 -5.180.120.0/23 57747 -5.180.124.0/22 34968 -5.180.128.0/23 43633 -5.180.130.0/23 49620 -5.180.132.0/22 13030 -5.180.136.0/22 207569 -5.180.140.0/22 39686 -5.180.144.0/22 18978 -5.180.152.0/22 34549 -5.180.156.0/22 60233 -5.180.168.0/23 206801 -5.180.171.0/24 199837 -5.180.172.0/22 49335 -5.180.180.0/22 41436 -5.180.184.0/22 51559 -5.180.190.0/24 206483 -5.180.192.0/22 200462 -5.180.196.0/22 209135 -5.180.200.0/22 24971 -5.180.204.0/22 208578 -5.180.208.0/22 62240 -5.180.220.0/23 12989 -5.180.224.0/22 204805 -5.180.228.0/23 8637 -5.180.232.0/22 61317 -5.180.236.0/22 12679 -5.180.240.0/22 47626 -5.180.244.0/22 62240 -5.180.248.0/22 199290 -5.180.252.0/22 395800 -5.181.0.0/22 34549 -5.181.4.0/22 9009 -5.181.8.0/22 1197 -5.181.12.0/22 201971 -5.181.16.0/22 48737 -5.181.20.0/22 3214 -5.181.24.0/22 39690 -5.181.28.0/22 39184 -5.181.32.0/22 201341 -5.181.36.0/22 29262 -5.181.40.0/23 397796 -5.181.42.0/23 60781 -5.181.44.0/22 202207 -5.181.48.0/22 197540 -5.181.56.0/22 57099 -5.181.60.0/22 47764 -5.181.64.0/22 201341 -5.181.68.0/22 6718 -5.181.72.0/24 206576 -5.181.80.0/22 57344 -5.181.84.0/22 12695 -5.181.88.0/24 49981 -5.181.89.0/24 208810 -5.181.91.0/24 133766 -5.181.92.0/22 50825 -5.181.96.0/23 198193 -5.181.98.0/24 60609 -5.181.99.0/24 198934 -5.181.100.0/22 49629 -5.181.104.0/22 43915 -5.181.108.0/22 198610 -5.181.116.0/22 9063 -5.181.124.0/22 61317 -5.181.128.0/21 61317 -5.181.136.0/22 2856 -5.181.144.0/22 209071 -5.181.150.0/24 24000 -5.181.151.0/24 44066 -5.181.156.0/22 39798 -5.181.160.0/22 34929 -5.181.164.0/22 40676 -5.181.168.0/22 208058 -5.181.172.0/22 209124 -5.181.176.0/22 26556 -5.181.188.0/24 207208 -5.181.189.0/24 201814 -5.181.192.0/22 60989 -5.181.196.0/22 209121 -5.181.204.0/22 204287 -5.181.208.0/22 203307 -5.181.212.0/22 209088 -5.181.219.0/24 40065 -5.181.220.0/22 51681 -5.181.225.0/24 3214 -5.181.226.0/24 35145 -5.181.228.0/22 210237 -5.181.232.0/22 9009 -5.181.236.0/22 42947 -5.181.240.0/22 207174 -5.181.244.0/22 48711 -5.181.252.0/22 44128 -5.182.4.0/22 206119 -5.182.8.0/23 201902 -5.182.12.0/22 209709 -5.182.20.0/23 197216 -5.182.22.0/24 20473 -5.182.24.0/23 43264 -5.182.26.0/24 35682 -5.182.27.0/24 49392 -5.182.28.0/22 209945 -5.182.36.0/23 44676 -5.182.38.0/24 44676 -5.182.39.0/24 200019 -5.182.40.0/22 209110 -5.182.44.0/24 61173 -5.182.45.0/24 42337 -5.182.46.0/24 58224 -5.182.48.0/24 7489 -5.182.49.0/24 209181 -5.182.50.0/24 53340 -5.182.51.0/24 64249 -5.182.52.0/22 43045 -5.182.56.0/22 35142 -5.182.60.0/22 135391 -5.182.64.0/22 57843 -5.182.72.0/22 29119 -5.182.76.0/23 42807 -5.182.80.0/22 48146 -5.182.88.0/22 8767 -5.182.92.0/22 15884 -5.182.96.0/22 209106 -5.182.100.0/23 9009 -5.182.102.0/24 36352 -5.182.103.0/24 9009 -5.182.104.0/22 12679 -5.182.108.0/22 61317 -5.182.112.0/22 42864 -5.182.116.0/23 12722 -5.182.118.0/23 206766 -5.182.120.0/21 9009 -5.182.128.0/22 3292 -5.182.132.0/22 209068 -5.182.136.0/22 209095 -5.182.140.0/22 198906 -5.182.144.0/23 209097 -5.182.146.0/23 207607 -5.182.148.0/22 206548 -5.182.155.0/24 5539 -5.182.160.0/23 203641 -5.182.162.0/24 203641 -5.182.164.0/22 29119 -5.182.168.0/22 208957 -5.182.172.0/22 60609 -5.182.176.0/24 9135 -5.182.178.0/24 48918 -5.182.184.0/24 13213 -5.182.185.0/24 9009 -5.182.186.0/23 64200 -5.182.188.0/24 209094 -5.182.193.0/24 64200 -5.182.194.0/23 64200 -5.182.196.0/23 9009 -5.182.198.0/24 64200 -5.182.204.0/22 134094 -5.182.208.0/23 62068 -5.182.210.0/23 64425 -5.182.212.0/22 35280 -5.182.216.0/22 134548 -5.182.220.0/22 21396 -5.182.224.0/22 57844 -5.182.228.0/22 56630 -5.182.232.0/22 51559 -5.182.236.0/22 31863 -5.182.245.0/24 206119 -5.182.246.0/23 206119 -5.182.248.0/22 209042 -5.182.252.0/22 49961 -5.183.0.0/22 64463 -5.183.4.0/24 47176 -5.183.12.0/22 201476 -5.183.16.0/22 39305 -5.183.28.0/22 57334 -5.183.32.0/22 35913 -5.183.42.0/23 209039 -5.183.44.0/22 48447 -5.183.48.0/22 209044 -5.183.52.0/22 208406 -5.183.56.0/22 62235 -5.183.60.0/22 209723 -5.183.64.0/21 39047 -5.183.72.0/22 35258 -5.183.76.0/24 208460 -5.183.77.0/24 209555 -5.183.78.0/24 19844 -5.183.79.0/24 209077 -5.183.80.0/22 55933 -5.183.84.0/22 57353 -5.183.88.0/22 204348 -5.183.92.0/23 12989 -5.183.96.0/22 206316 -5.183.100.0/22 9009 -5.183.104.0/22 51083 -5.183.109.0/24 60783 -5.183.110.0/24 209076 -5.183.111.0/24 60783 -5.183.116.0/22 9312 -5.183.120.0/22 9312 -5.183.128.0/24 12722 -5.183.129.0/24 34665 -5.183.130.0/24 35048 -5.183.131.0/24 12722 -5.183.132.0/22 41960 -5.183.136.0/22 208653 -5.183.140.0/22 209072 -5.183.144.0/22 42897 -5.183.148.0/23 60609 -5.183.150.0/24 43618 -5.183.152.0/22 9123 -5.183.156.0/23 202778 -5.183.160.0/24 209054 -5.183.163.0/24 209054 -5.183.164.0/22 12597 -5.183.168.0/22 49645 -5.183.172.0/23 47692 -5.183.176.0/22 9009 -5.183.180.0/22 202486 -5.183.184.0/22 42820 -5.183.192.0/22 200438 -5.183.200.0/22 12998 -5.183.208.0/24 43501 -5.183.209.0/24 41825 -5.183.210.0/23 6718 -5.183.212.0/22 37002 -5.183.216.0/22 209050 -5.183.220.0/22 199736 -5.183.224.0/22 395800 -5.183.228.0/22 39184 -5.183.232.0/22 56689 -5.183.240.0/22 11325 -5.183.248.0/22 57809 -5.184.0.0/15 5617 -5.186.0.0/16 44869 -5.187.0.0/21 44066 -5.187.8.0/21 57768 -5.187.16.0/22 43082 -5.187.20.0/22 20860 -5.187.24.0/24 29164 -5.187.25.0/24 20860 -5.187.26.0/24 20860 -5.187.27.0/24 11352 -5.187.28.0/24 203833 -5.187.29.0/24 20860 -5.187.30.0/24 11352 -5.187.31.0/24 20860 -5.187.32.0/23 60458 -5.187.34.0/24 60458 -5.187.35.0/24 198193 -5.187.36.0/23 198193 -5.187.38.0/23 50129 -5.187.40.0/21 199096 -5.187.48.0/21 197155 -5.187.56.0/21 199092 -5.187.64.0/23 43727 -5.187.68.0/22 44604 -5.187.72.0/24 44604 -5.187.74.0/23 44604 -5.187.76.0/23 44604 -5.187.78.0/24 44604 -5.187.79.0/24 43727 -5.187.80.0/24 43727 -5.187.81.0/24 44604 -5.187.82.0/24 44604 -5.187.83.0/24 43727 -5.187.84.0/24 43727 -5.187.96.0/19 21351 -5.187.128.0/17 5483 -5.188.0.0/23 199524 -5.188.2.0/24 199524 -5.188.4.0/24 199524 -5.188.9.0/24 34665 -5.188.10.0/23 34665 -5.188.12.0/22 50673 -5.188.16.0/21 198068 -5.188.24.0/22 198068 -5.188.28.0/22 200487 -5.188.40.0/24 49505 -5.188.41.0/24 50340 -5.188.42.0/23 49505 -5.188.44.0/22 34665 -5.188.48.0/24 34665 -5.188.49.0/24 44050 -5.188.50.0/23 34665 -5.188.52.0/22 47478 -5.188.60.0/24 62088 -5.188.61.0/24 34665 -5.188.62.0/23 34665 -5.188.64.0/22 200590 -5.188.68.0/23 34665 -5.188.71.0/24 199524 -5.188.84.0/24 34665 -5.188.85.0/24 205378 -5.188.86.0/24 49453 -5.188.87.0/24 57172 -5.188.88.0/22 34665 -5.188.92.0/22 199524 -5.188.96.0/21 56340 -5.188.104.0/22 199860 -5.188.108.0/23 199524 -5.188.110.0/23 202422 -5.188.112.0/24 50340 -5.188.113.0/24 49505 -5.188.114.0/23 50340 -5.188.120.0/23 199524 -5.188.122.0/24 202422 -5.188.123.0/24 199524 -5.188.124.0/23 202422 -5.188.126.0/23 199524 -5.188.132.0/22 199524 -5.188.140.0/22 34665 -5.188.144.0/22 39047 -5.188.148.0/24 202422 -5.188.150.0/24 59796 -5.188.151.0/24 199524 -5.188.152.0/22 200590 -5.188.160.0/22 49505 -5.188.164.0/24 56534 -5.188.165.0/24 34665 -5.188.166.0/24 34665 -5.188.167.0/24 205553 -5.188.168.0/23 202422 -5.188.170.0/23 199524 -5.188.172.0/22 34665 -5.188.176.0/22 209813 -5.188.180.0/22 34665 -5.188.184.0/22 50340 -5.188.188.0/22 34665 -5.188.192.0/23 44050 -5.188.194.0/23 209813 -5.188.196.0/22 49505 -5.188.200.0/22 34665 -5.188.204.0/23 34665 -5.188.206.0/24 200391 -5.188.207.0/24 34665 -5.188.208.0/21 34665 -5.188.216.0/24 200557 -5.188.217.0/24 8100 -5.188.218.0/24 59924 -5.188.219.0/24 50896 -5.188.220.0/23 34665 -5.188.222.0/24 56897 -5.188.223.0/24 34665 -5.188.224.0/22 34665 -5.188.228.0/23 34665 -5.188.230.0/24 34665 -5.188.231.0/24 62088 -5.188.232.0/24 49981 -5.188.233.0/24 34665 -5.188.234.0/24 196682 -5.188.235.0/24 34665 -5.188.236.0/23 50509 -5.188.238.0/23 199524 -5.188.240.0/21 21299 -5.188.248.0/24 35566 -5.188.249.0/24 21299 -5.188.250.0/23 21299 -5.188.252.0/22 21299 -5.189.0.0/17 12668 -5.189.128.0/18 51167 -5.189.192.0/21 12737 -5.189.200.0/21 50896 -5.189.215.0/24 49665 -5.189.216.0/23 202023 -5.189.218.0/24 209813 -5.189.219.0/24 202023 -5.189.220.0/22 34665 -5.189.224.0/24 49505 -5.189.225.0/24 50340 -5.189.226.0/24 49505 -5.189.227.0/24 50340 -5.189.228.0/24 50340 -5.189.229.0/24 49505 -5.189.230.0/23 50340 -5.189.232.0/23 49505 -5.189.234.0/24 50340 -5.189.235.0/24 49505 -5.189.236.0/22 49505 -5.189.240.0/21 12737 -5.189.248.0/22 20853 -5.189.252.0/23 202023 -5.189.254.0/24 202023 -5.189.255.0/24 35277 -5.190.0.0/16 58224 -5.191.0.0/17 31721 -5.191.128.0/18 31721 -5.191.192.0/19 31721 -5.191.224.0/20 31721 -5.191.240.0/20 200729 -5.192.0.0/15 5384 -5.194.0.0/17 5384 -5.194.128.0/18 5384 -5.194.192.0/19 5384 -5.194.224.0/20 5384 -5.194.252.0/22 201678 -5.195.0.0/20 5384 -5.195.16.0/22 201678 -5.195.20.0/22 5384 -5.195.24.0/21 5384 -5.195.32.0/19 5384 -5.195.64.0/18 5384 -5.195.128.0/18 5384 -5.195.192.0/20 5384 -5.195.208.0/24 8966 -5.195.209.0/24 5384 -5.195.210.0/23 5384 -5.195.212.0/22 5384 -5.195.216.0/22 5384 -5.195.220.0/23 5384 -5.195.222.0/24 5384 -5.195.223.0/24 8966 -5.195.224.0/19 5384 -5.196.0.0/16 16276 -5.197.0.0/16 57293 -5.198.0.0/17 12390 -5.198.128.0/21 61425 -5.198.137.0/24 34079 -5.198.138.0/24 34079 -5.198.141.0/24 34079 -5.198.144.0/20 44453 -5.198.160.0/19 58224 -5.198.192.0/19 209523 -5.198.224.0/20 13113 -5.198.240.0/21 9038 -5.198.248.0/21 42708 -5.199.0.0/17 47622 -5.199.128.0/20 24961 -5.199.144.0/20 12414 -5.199.160.0/20 16125 -5.199.176.0/21 48284 -5.199.188.0/22 33915 -5.199.192.0/19 48642 -5.199.224.0/22 12521 -5.199.228.0/23 12521 -5.199.230.0/24 12521 -5.199.231.0/24 39398 -5.199.232.0/21 49984 -5.199.240.0/20 34953 -5.200.0.0/19 49544 -5.200.32.0/19 48096 -5.200.64.0/19 56466 -5.200.96.0/19 57218 -5.200.128.0/17 58224 -5.201.0.0/17 12324 -5.201.128.0/19 50810 -5.201.160.0/21 50810 -5.201.168.0/22 50810 -5.201.172.0/23 56547 -5.201.174.0/23 50810 -5.201.176.0/20 50810 -5.201.192.0/18 50810 -5.202.0.0/19 201150 -5.202.32.0/23 49100 -5.202.34.0/23 49596 -5.202.36.0/23 49596 -5.202.38.0/24 49596 -5.202.39.0/24 49100 -5.202.40.0/22 49100 -5.202.44.0/22 39364 -5.202.48.0/21 49100 -5.202.56.0/23 49100 -5.202.58.0/23 201150 -5.202.60.0/22 201150 -5.202.64.0/23 201150 -5.202.66.0/23 49100 -5.202.68.0/22 49100 -5.202.72.0/21 49100 -5.202.80.0/22 49100 -5.202.84.0/23 49100 -5.202.86.0/24 200376 -5.202.87.0/24 49100 -5.202.88.0/22 60138 -5.202.92.0/22 49100 -5.202.96.0/22 201150 -5.202.100.0/22 49100 -5.202.104.0/21 49100 -5.202.112.0/20 49100 -5.202.128.0/22 49100 -5.202.132.0/22 201150 -5.202.136.0/21 49100 -5.202.144.0/20 49100 -5.202.160.0/21 49100 -5.202.168.0/21 58142 -5.202.176.0/21 49100 -5.202.184.0/23 49100 -5.202.186.0/24 49100 -5.202.187.0/24 208593 -5.202.188.0/22 49100 -5.202.192.0/21 49100 -5.202.200.0/22 49100 -5.202.204.0/24 208412 -5.202.205.0/24 49100 -5.202.206.0/23 49100 -5.202.208.0/20 49100 -5.202.224.0/19 49100 -5.203.0.0/16 29247 -5.204.0.0/16 8448 -5.205.0.0/16 3352 -5.206.0.0/17 8369 -5.206.128.0/18 21334 -5.206.192.0/21 39642 -5.206.200.0/21 50719 -5.206.208.0/20 42707 -5.206.224.0/22 49349 -5.206.228.0/22 47674 -5.206.232.0/21 206262 -5.206.240.0/20 57332 -5.207.0.0/16 21497 -5.208.0.0/13 197207 -5.217.0.0/16 197207 -5.218.0.0/16 197207 -5.219.0.0/16 58224 -5.224.0.0/15 12430 -5.226.0.0/21 30781 -5.226.8.0/22 2187 -5.226.12.0/23 2187 -5.226.15.0/24 2187 -5.226.16.0/20 198411 -5.226.32.0/21 51701 -5.226.40.0/21 15879 -5.226.48.0/22 43395 -5.226.52.0/23 43395 -5.226.54.0/23 60932 -5.226.56.0/21 49765 -5.226.64.0/18 12741 -5.226.128.0/22 29007 -5.226.135.0/24 12741 -5.226.136.0/21 25369 -5.226.144.0/23 58299 -5.226.148.0/22 58299 -5.226.153.0/24 39045 -5.226.154.0/23 39045 -5.226.156.0/24 39045 -5.226.160.0/21 198869 -5.226.168.0/24 43578 -5.226.169.0/24 32875 -5.226.170.0/24 32875 -5.226.171.0/24 36352 -5.226.172.0/24 43578 -5.226.173.0/24 33182 -5.226.174.0/23 32875 -5.226.176.0/23 34587 -5.226.178.0/24 34587 -5.226.180.0/24 34587 -5.226.182.0/24 34587 -5.226.183.0/24 397192 -5.226.184.0/21 50478 -5.226.192.0/18 15897 -5.227.0.0/18 8580 -5.227.64.0/19 8580 -5.227.96.0/20 8580 -5.227.112.0/21 8580 -5.227.120.0/23 13174 -5.227.122.0/23 48612 -5.227.124.0/22 39001 -5.227.128.0/19 8580 -5.227.160.0/20 50406 -5.227.176.0/20 39858 -5.227.192.0/18 29190 -5.228.0.0/16 42610 -5.229.0.0/16 15897 -5.230.0.0/16 12586 -5.231.0.0/17 12586 -5.231.128.0/18 12360 -5.231.192.0/18 12586 -5.232.0.0/14 58224 -5.236.0.0/17 58224 -5.236.128.0/20 58224 -5.236.144.0/21 58224 -5.236.152.0/22 12880 -5.236.156.0/22 58224 -5.236.160.0/19 58224 -5.236.192.0/18 58224 -5.237.0.0/16 58224 -5.238.0.0/17 58224 -5.238.128.0/20 58224 -5.238.144.0/22 58224 -5.238.148.0/22 12880 -5.238.152.0/21 12880 -5.238.160.0/19 12880 -5.238.192.0/18 12880 -5.239.0.0/17 12880 -5.239.128.0/20 12880 -5.239.144.0/20 58224 -5.239.160.0/19 58224 -5.239.192.0/19 58224 -5.239.224.0/20 58224 -5.239.240.0/23 58224 -5.239.242.0/24 58224 -5.239.243.0/24 12880 -5.239.244.0/22 58224 -5.239.248.0/22 12880 -5.239.252.0/22 58224 -5.240.0.0/14 1257 -5.244.0.0/18 34400 -5.244.64.0/18 35819 -5.244.128.0/17 35819 -5.245.0.0/17 35819 -5.245.128.0/18 35819 -5.245.192.0/18 34400 -5.246.0.0/17 34400 -5.246.128.0/17 35819 -5.247.0.0/16 34400 -5.248.0.0/16 15895 -5.249.0.0/17 12353 -5.249.128.0/19 31034 -5.249.160.0/21 42708 -5.249.176.0/20 58056 -5.249.192.0/19 42277 -5.249.224.0/22 199566 -5.250.0.0/17 197207 -5.250.128.0/19 9198 -5.250.160.0/21 41369 -5.250.168.0/21 12714 -5.250.176.0/20 31708 -5.250.192.0/19 44725 -5.250.224.0/21 35542 -5.250.232.0/21 48166 -5.250.240.0/20 59674 -5.251.0.0/16 9198 -5.252.0.0/24 29119 -5.252.4.0/22 43417 -5.252.8.0/22 29119 -5.252.12.0/22 43571 -5.252.16.0/22 200497 -5.252.20.0/22 48430 -5.252.24.0/22 39690 -5.252.28.0/22 6662 -5.252.34.0/23 42745 -5.252.36.0/22 5413 -5.252.40.0/22 201548 -5.252.44.0/22 35762 -5.252.48.0/22 209374 -5.252.52.0/22 11404 -5.252.60.0/22 60032 -5.252.64.0/22 209476 -5.252.68.0/22 61317 -5.252.72.0/21 61317 -5.252.80.0/22 61317 -5.252.84.0/23 3269 -5.252.86.0/24 3269 -5.252.88.0/22 60032 -5.252.92.0/22 209910 -5.252.96.0/22 51559 -5.252.100.0/22 26556 -5.252.104.0/22 208863 -5.252.108.0/22 209086 -5.252.112.0/22 855 -5.252.116.0/24 207569 -5.252.117.0/24 209317 -5.252.118.0/24 206530 -5.252.119.0/24 209728 -5.252.120.0/22 209896 -5.252.124.0/22 6735 -5.252.128.0/24 49065 -5.252.140.0/22 35913 -5.252.144.0/22 16509 -5.252.148.0/22 207813 -5.252.152.0/24 49981 -5.252.160.0/22 61317 -5.252.164.0/23 64271 -5.252.166.0/24 64271 -5.252.172.0/22 43273 -5.252.176.0/22 39798 -5.252.180.0/22 15377 -5.252.184.0/22 43260 -5.252.188.0/22 48430 -5.252.192.0/23 44812 -5.252.196.0/22 9009 -5.252.200.0/23 51290 -5.252.202.0/24 15694 -5.252.204.0/22 43260 -5.252.212.0/24 209328 -5.252.214.0/23 198187 -5.252.216.0/22 61362 -5.252.220.0/22 25180 -5.252.224.0/22 197540 -5.252.228.0/22 203417 -5.252.232.0/23 197071 -5.252.234.0/24 36352 -5.252.235.0/24 46573 -5.252.236.0/24 209130 -5.252.240.0/22 41497 -5.252.244.0/22 209404 -5.252.248.0/22 18530 -5.252.252.0/22 58327 -5.253.0.0/24 47447 -5.253.4.0/22 51487 -5.253.8.0/22 199163 -5.253.12.0/22 134743 -5.253.16.0/23 40065 -5.253.18.0/23 58073 -5.253.20.0/22 134743 -5.253.24.0/22 202468 -5.253.28.0/22 18978 -5.253.32.0/22 202053 -5.253.36.0/22 61317 -5.253.40.0/22 18978 -5.253.44.0/23 61317 -5.253.46.0/24 42831 -5.253.47.0/24 61317 -5.253.48.0/22 209301 -5.253.52.0/22 39777 -5.253.56.0/22 43659 -5.253.60.0/24 197695 -5.253.61.0/24 57724 -5.253.62.0/24 197695 -5.253.63.0/24 49981 -5.253.68.0/22 199046 -5.253.72.0/22 209457 -5.253.80.0/22 57863 -5.253.84.0/24 136557 -5.253.85.0/24 204136 -5.253.86.0/24 207083 -5.253.87.0/24 40676 -5.253.88.0/22 43578 -5.253.92.0/22 199163 -5.253.100.0/22 209393 -5.253.104.0/22 209452 -5.253.112.0/22 62240 -5.253.116.0/22 48095 -5.253.120.0/22 209412 -5.253.124.0/22 60233 -5.253.128.0/24 8426 -5.253.129.0/24 9186 -5.253.132.0/23 44821 -5.253.134.0/24 44821 -5.253.135.0/24 209426 -5.253.136.0/24 30707 -5.253.137.0/24 35913 -5.253.138.0/23 35913 -5.253.140.0/22 42807 -5.253.144.0/22 33991 -5.253.148.0/24 209330 -5.253.152.0/23 44407 -5.253.156.0/22 29119 -5.253.160.0/22 48095 -5.253.164.0/22 209448 -5.253.168.0/22 209447 -5.253.172.0/24 209435 -5.253.176.0/23 202759 -5.253.180.0/24 8426 -5.253.181.0/24 9186 -5.253.184.0/23 9009 -5.253.186.0/24 35758 -5.253.187.0/24 9009 -5.253.188.0/22 39011 -5.253.192.0/22 42263 -5.253.200.0/22 61317 -5.253.204.0/22 9009 -5.253.208.0/22 25394 -5.253.212.0/22 209387 -5.253.216.0/22 29081 -5.253.220.0/22 209441 -5.253.228.0/22 204868 -5.253.232.0/22 35913 -5.253.236.0/22 203061 -5.253.240.0/22 21211 -5.253.244.0/24 134094 -5.253.247.0/24 134094 -5.253.248.0/22 47123 -5.253.252.0/22 43872 -5.254.0.0/22 3223 -5.254.4.0/23 3223 -5.254.8.0/21 3223 -5.254.16.0/22 3223 -5.254.20.0/24 3223 -5.254.22.0/23 3223 -5.254.24.0/21 3223 -5.254.32.0/20 3223 -5.254.49.0/24 39743 -5.254.55.0/24 3223 -5.254.56.0/22 3223 -5.254.60.0/23 3223 -5.254.63.0/24 3223 -5.254.64.0/19 3223 -5.254.96.0/20 3223 -5.254.112.0/22 3223 -5.254.116.0/24 3223 -5.254.118.0/23 3223 -5.254.120.0/22 3223 -5.254.124.0/24 3223 -5.254.126.0/23 3223 -5.254.128.0/19 42708 -5.254.160.0/23 199204 -5.254.162.0/23 51561 -5.254.164.0/23 51561 -5.254.168.0/21 1299 -5.254.176.0/21 15774 -5.254.184.0/21 199205 -5.254.224.0/19 12688 -5.255.0.0/19 30873 -5.255.32.0/20 31272 -5.255.48.0/21 199713 -5.255.56.0/21 197328 -5.255.64.0/21 50673 -5.255.72.0/22 50673 -5.255.76.0/24 60222 -5.255.77.0/24 50673 -5.255.78.0/23 50673 -5.255.80.0/21 50673 -5.255.88.0/24 50673 -5.255.89.0/24 204963 -5.255.90.0/23 50673 -5.255.92.0/22 50673 -5.255.96.0/19 60404 -5.255.128.0/22 201887 -5.255.132.0/23 201887 -5.255.136.0/22 9140 -5.255.144.0/21 12956 -5.255.152.0/21 41552 -5.255.160.0/20 34700 -5.255.176.0/20 21310 -5.255.192.0/18 13238 -6.2.0.0/17 668 -6.3.0.0/18 668 -6.4.0.0/16 668 -6.5.0.0/19 668 -6.6.0.0/22 668 -6.6.4.0/23 668 -6.6.7.0/24 668 -6.6.8.0/21 668 -6.6.16.0/20 668 -6.6.32.0/19 668 -6.6.64.0/18 668 -6.6.128.0/17 668 -6.7.0.0/24 668 -6.8.0.0/20 668 -6.9.0.0/20 668 -6.11.0.0/16 668 -6.14.0.0/15 668 -6.16.192.0/23 1600 -6.16.194.0/23 1637 -6.16.196.0/23 1602 -6.16.198.0/23 747 -6.16.200.0/23 747 -6.41.0.0/17 1488 -6.41.128.0/23 1541 -6.41.130.0/23 1488 -6.41.132.0/22 1488 -6.41.136.0/21 1488 -6.41.144.0/20 1488 -6.41.160.0/19 1488 -6.41.192.0/18 1488 -6.42.64.0/18 1491 -6.64.4.0/24 1565 -6.64.104.0/24 367 -6.64.120.0/24 367 -6.64.121.0/24 745 -6.64.128.0/22 1541 -6.64.132.0/23 1541 -6.64.136.0/23 1479 -6.64.138.0/23 1541 -6.64.140.0/23 1541 -6.64.142.0/24 1541 -6.64.143.0/24 27064 -6.64.146.0/23 1541 -6.64.148.0/24 1541 -6.64.150.0/24 1541 -6.64.152.0/24 1541 -6.64.153.0/24 1504 -6.64.157.0/24 1541 -6.64.158.0/24 1541 -6.64.159.0/24 1494 -6.64.160.0/24 27064 -6.64.161.0/24 1498 -6.64.162.0/23 1541 -6.64.164.0/23 367 -6.64.166.0/24 367 -6.64.175.0/24 27064 -6.64.177.0/24 1541 -6.64.181.0/24 721 -6.65.0.0/16 1506 -6.66.2.0/23 1452 -6.66.4.0/22 1452 -6.66.8.0/21 1452 -6.66.16.0/22 1452 -6.66.20.0/24 1452 -6.66.22.0/23 1452 -6.66.24.0/21 1452 -6.66.32.0/22 1452 -6.66.36.0/24 1452 -6.66.38.0/23 1452 -6.66.40.0/24 1452 -6.66.64.0/24 1463 -6.68.0.0/16 1479 -6.70.1.0/24 1505 -6.70.2.0/23 1505 -6.72.0.0/20 1464 -6.72.254.0/23 1461 -6.129.32.0/20 1451 -6.129.48.0/21 1451 -8.0.0.0/15 3356 -8.2.0.0/22 3356 -8.2.4.0/24 31949 -8.2.5.0/24 3356 -8.2.6.0/23 3356 -8.2.8.0/21 395662 -8.2.16.0/20 3356 -8.2.32.0/22 3356 -8.2.36.0/23 395662 -8.2.38.0/23 3356 -8.2.40.0/21 3356 -8.2.48.0/20 3356 -8.2.64.0/22 3356 -8.2.68.0/24 396835 -8.2.69.0/24 394558 -8.2.70.0/24 394928 -8.2.71.0/24 27614 -8.2.72.0/24 395922 -8.2.73.0/24 3356 -8.2.74.0/23 3356 -8.2.76.0/24 3356 -8.2.77.0/24 27564 -8.2.78.0/24 3356 -8.2.79.0/24 30118 -8.2.80.0/20 3356 -8.2.96.0/24 53393 -8.2.97.0/24 3356 -8.2.98.0/23 3356 -8.2.100.0/23 3356 -8.2.102.0/24 3356 -8.2.103.0/24 11312 -8.2.104.0/24 3356 -8.2.105.0/24 36671 -8.2.106.0/23 3356 -8.2.108.0/22 46636 -8.2.112.0/21 3356 -8.2.120.0/23 20473 -8.2.122.0/24 20473 -8.2.123.0/24 3356 -8.2.124.0/22 3356 -8.2.128.0/20 3356 -8.2.144.0/22 36394 -8.2.148.0/22 3356 -8.2.152.0/21 3356 -8.2.160.0/20 3356 -8.2.176.0/23 396238 -8.2.178.0/23 3356 -8.2.180.0/22 3356 -8.2.184.0/23 23089 -8.2.186.0/23 3356 -8.2.188.0/22 3356 -8.2.192.0/22 62738 -8.2.196.0/24 18690 -8.2.197.0/24 394041 -8.2.198.0/24 13716 -8.2.199.0/24 3356 -8.2.200.0/21 3402 -8.2.208.0/21 32798 -8.2.216.0/24 32208 -8.2.217.0/24 23089 -8.2.218.0/23 3356 -8.2.220.0/23 23089 -8.2.222.0/23 3356 -8.2.224.0/19 3356 -8.3.0.0/22 3356 -8.3.4.0/24 3356 -8.3.5.0/24 20473 -8.3.6.0/23 20473 -8.3.8.0/21 3356 -8.3.16.0/21 3356 -8.3.24.0/22 3356 -8.3.28.0/23 20473 -8.3.30.0/23 3356 -8.3.32.0/20 3356 -8.3.48.0/23 395148 -8.3.50.0/24 395148 -8.3.51.0/24 47054 -8.3.52.0/23 46559 -8.3.54.0/23 63402 -8.3.56.0/21 3356 -8.3.64.0/23 16743 -8.3.66.0/23 3356 -8.3.68.0/22 3356 -8.3.72.0/21 3356 -8.3.80.0/20 395354 -8.3.96.0/24 3356 -8.3.97.0/24 209 -8.3.98.0/23 3356 -8.3.100.0/22 3356 -8.3.104.0/21 3356 -8.3.112.0/20 7131 -8.3.128.0/18 3356 -8.3.192.0/20 3356 -8.3.208.0/21 3356 -8.3.216.0/24 3356 -8.3.217.0/24 27393 -8.3.218.0/23 26769 -8.3.220.0/22 3356 -8.3.224.0/21 3356 -8.3.232.0/23 3356 -8.3.234.0/24 33313 -8.3.235.0/24 3356 -8.3.236.0/22 3356 -8.3.240.0/23 3356 -8.3.242.0/24 14821 -8.3.243.0/24 3356 -8.3.244.0/22 3356 -8.3.248.0/24 397290 -8.3.249.0/24 3356 -8.3.250.0/23 3356 -8.3.252.0/24 14602 -8.3.253.0/24 3356 -8.3.254.0/24 22116 -8.3.255.0/24 3356 -8.4.0.0/18 3356 -8.4.64.0/19 3356 -8.4.96.0/20 3356 -8.4.112.0/21 3356 -8.4.120.0/22 40866 -8.4.124.0/22 3356 -8.4.128.0/19 3356 -8.4.160.0/23 3356 -8.4.162.0/24 3356 -8.4.163.0/24 25806 -8.4.164.0/22 3356 -8.4.168.0/21 3356 -8.4.176.0/20 3356 -8.4.192.0/19 3356 -8.4.224.0/24 13546 -8.4.225.0/24 40548 -8.4.226.0/24 46186 -8.4.227.0/24 3356 -8.4.228.0/24 18888 -8.4.229.0/24 39968 -8.4.230.0/24 3356 -8.4.231.0/24 22003 -8.4.232.0/21 3356 -8.4.240.0/20 3356 -8.5.0.0/24 22557 -8.5.1.0/24 3356 -8.5.2.0/23 3356 -8.5.4.0/24 11414 -8.5.5.0/24 11251 -8.5.6.0/23 3356 -8.5.8.0/21 3356 -8.5.16.0/20 3356 -8.5.32.0/19 3356 -8.5.64.0/18 3356 -8.5.128.0/23 30103 -8.5.130.0/23 3356 -8.5.132.0/22 3356 -8.5.136.0/21 3356 -8.5.144.0/20 3356 -8.5.160.0/24 3356 -8.5.161.0/24 18741 -8.5.162.0/23 3356 -8.5.164.0/22 3356 -8.5.168.0/21 3356 -8.5.176.0/20 3356 -8.5.192.0/19 3356 -8.5.224.0/20 3356 -8.5.240.0/23 3356 -8.5.242.0/23 46990 -8.5.244.0/24 19397 -8.5.245.0/24 3356 -8.5.246.0/23 3356 -8.5.248.0/23 32308 -8.5.250.0/24 11483 -8.5.251.0/24 11179 -8.5.252.0/23 17903 -8.5.254.0/23 3356 -8.6.0.0/23 3356 -8.6.2.0/23 20473 -8.6.4.0/23 40386 -8.6.6.0/23 3356 -8.6.8.0/23 20473 -8.6.10.0/23 3356 -8.6.12.0/23 3356 -8.6.14.0/24 3356 -8.6.15.0/24 20473 -8.6.16.0/23 3356 -8.6.18.0/24 3356 -8.6.19.0/24 13535 -8.6.20.0/22 3356 -8.6.24.0/24 10753 -8.6.25.0/24 3356 -8.6.26.0/23 3356 -8.6.28.0/22 3356 -8.6.32.0/19 3356 -8.6.64.0/22 3356 -8.6.68.0/22 17037 -8.6.72.0/22 3356 -8.6.76.0/23 3356 -8.6.78.0/23 395658 -8.6.80.0/24 11734 -8.6.81.0/24 3356 -8.6.82.0/23 395658 -8.6.84.0/23 395658 -8.6.86.0/23 3356 -8.6.88.0/24 3356 -8.6.89.0/24 11734 -8.6.90.0/23 3356 -8.6.92.0/23 11734 -8.6.94.0/24 3356 -8.6.95.0/24 11734 -8.6.96.0/20 3356 -8.6.112.0/24 13335 -8.6.113.0/24 3356 -8.6.114.0/23 3356 -8.6.116.0/22 3356 -8.6.120.0/21 3356 -8.6.128.0/20 3356 -8.6.144.0/23 13335 -8.6.146.0/24 13335 -8.6.147.0/24 3356 -8.6.148.0/22 3356 -8.6.152.0/21 3356 -8.6.160.0/20 3356 -8.6.176.0/24 3356 -8.6.177.0/24 29818 -8.6.178.0/23 3356 -8.6.180.0/22 3356 -8.6.184.0/23 33492 -8.6.186.0/24 46847 -8.6.187.0/24 3356 -8.6.188.0/22 3356 -8.6.192.0/24 3356 -8.6.193.0/24 20473 -8.6.194.0/23 3356 -8.6.196.0/22 3356 -8.6.200.0/21 3356 -8.6.208.0/21 3356 -8.6.216.0/22 3356 -8.6.220.0/22 3064 -8.6.224.0/20 3356 -8.6.240.0/23 33724 -8.6.242.0/23 3356 -8.6.244.0/24 6356 -8.6.245.0/24 10490 -8.6.246.0/23 3356 -8.6.248.0/21 3356 -8.7.0.0/18 3356 -8.7.64.0/21 3356 -8.7.72.0/24 3356 -8.7.73.0/24 36104 -8.7.74.0/23 3356 -8.7.76.0/22 3356 -8.7.80.0/21 3356 -8.7.88.0/22 3356 -8.7.92.0/23 3356 -8.7.94.0/24 18570 -8.7.95.0/24 3356 -8.7.96.0/21 19271 -8.7.104.0/22 3356 -8.7.108.0/24 22357 -8.7.109.0/24 3356 -8.7.110.0/23 3356 -8.7.112.0/20 3356 -8.7.128.0/20 3356 -8.7.144.0/22 3356 -8.7.148.0/24 3356 -8.7.149.0/24 40525 -8.7.150.0/23 3356 -8.7.152.0/23 3356 -8.7.154.0/24 396104 -8.7.155.0/24 3356 -8.7.156.0/22 3356 -8.7.160.0/19 3356 -8.7.192.0/21 3356 -8.7.200.0/24 394287 -8.7.201.0/24 393796 -8.7.202.0/24 3356 -8.7.203.0/24 18888 -8.7.204.0/24 3356 -8.7.205.0/24 22542 -8.7.206.0/23 3356 -8.7.208.0/21 3356 -8.7.216.0/22 3356 -8.7.220.0/23 3356 -8.7.222.0/24 3356 -8.7.223.0/24 30016 -8.7.224.0/22 3356 -8.7.228.0/24 26478 -8.7.229.0/24 3356 -8.7.230.0/23 3356 -8.7.232.0/24 3356 -8.7.233.0/24 20473 -8.7.234.0/24 3356 -8.7.235.0/24 11414 -8.7.236.0/22 3356 -8.7.240.0/22 3356 -8.7.244.0/24 16276 -8.7.245.0/24 3356 -8.7.246.0/23 3356 -8.7.248.0/21 3356 -8.8.0.0/22 3356 -8.8.4.0/24 15169 -8.8.5.0/24 3356 -8.8.6.0/23 3356 -8.8.8.0/24 15169 -8.8.9.0/24 3356 -8.8.10.0/23 3356 -8.8.12.0/22 3356 -8.8.16.0/20 3356 -8.8.32.0/22 3356 -8.8.36.0/23 3356 -8.8.38.0/24 3356 -8.8.39.0/24 26471 -8.8.40.0/21 3356 -8.8.48.0/20 3356 -8.8.64.0/18 3356 -8.8.128.0/19 3356 -8.8.160.0/20 3356 -8.8.176.0/24 30201 -8.8.177.0/24 3356 -8.8.178.0/23 3356 -8.8.180.0/22 3356 -8.8.184.0/21 3356 -8.8.192.0/20 3356 -8.8.208.0/21 14554 -8.8.216.0/22 13781 -8.8.220.0/22 3356 -8.8.224.0/23 3356 -8.8.226.0/24 395435 -8.8.227.0/24 26845 -8.8.228.0/22 393436 -8.8.232.0/21 11167 -8.8.240.0/20 3356 -8.9.0.0/23 3356 -8.9.2.0/24 3356 -8.9.3.0/24 20473 -8.9.4.0/23 20473 -8.9.6.0/24 20473 -8.9.7.0/24 3356 -8.9.8.0/24 20473 -8.9.9.0/24 3356 -8.9.10.0/24 3356 -8.9.11.0/24 20473 -8.9.12.0/23 3356 -8.9.14.0/24 3356 -8.9.15.0/24 20473 -8.9.16.0/24 20473 -8.9.17.0/24 3356 -8.9.18.0/23 3356 -8.9.20.0/22 3356 -8.9.24.0/22 3356 -8.9.28.0/23 3356 -8.9.30.0/23 20473 -8.9.32.0/22 3356 -8.9.36.0/23 20473 -8.9.38.0/23 3356 -8.9.40.0/21 62728 -8.9.48.0/20 3356 -8.9.64.0/20 3356 -8.9.80.0/20 31775 -8.9.96.0/23 32182 -8.9.98.0/23 3356 -8.9.100.0/22 3356 -8.9.104.0/21 3356 -8.9.112.0/20 3356 -8.9.128.0/19 3356 -8.9.160.0/22 62738 -8.9.164.0/22 3356 -8.9.168.0/21 3356 -8.9.176.0/20 3356 -8.9.192.0/23 3356 -8.9.194.0/24 3356 -8.9.195.0/24 10979 -8.9.196.0/23 3356 -8.9.198.0/23 15347 -8.9.200.0/23 3356 -8.9.202.0/24 3356 -8.9.203.0/24 39988 -8.9.204.0/22 3356 -8.9.208.0/20 3356 -8.9.224.0/24 17405 -8.9.225.0/24 3356 -8.9.226.0/23 23089 -8.9.228.0/23 3356 -8.9.230.0/23 13335 -8.9.232.0/22 3356 -8.9.236.0/24 3356 -8.9.237.0/24 40410 -8.9.238.0/24 3356 -8.9.239.0/24 62 -8.9.240.0/20 3356 -8.10.0.0/22 3356 -8.10.4.0/23 3356 -8.10.6.0/23 27896 -8.10.8.0/21 3356 -8.10.16.0/20 3356 -8.10.32.0/22 3356 -8.10.36.0/23 30363 -8.10.38.0/23 3356 -8.10.40.0/21 3356 -8.10.48.0/23 3356 -8.10.50.0/24 32760 -8.10.51.0/24 3356 -8.10.52.0/22 3356 -8.10.56.0/22 3356 -8.10.60.0/23 3356 -8.10.62.0/24 1 -8.10.63.0/24 3356 -8.10.64.0/24 3356 -8.10.65.0/24 11168 -8.10.66.0/23 11168 -8.10.68.0/24 11168 -8.10.69.0/24 33123 -8.10.70.0/23 11168 -8.10.72.0/22 3356 -8.10.76.0/24 3356 -8.10.77.0/24 26769 -8.10.78.0/23 3356 -8.10.80.0/20 3356 -8.10.96.0/20 3356 -8.10.112.0/21 3356 -8.10.120.0/24 33182 -8.10.121.0/24 3356 -8.10.122.0/23 3356 -8.10.124.0/22 3356 -8.10.128.0/21 3356 -8.10.136.0/22 3356 -8.10.140.0/24 22796 -8.10.141.0/24 63031 -8.10.142.0/23 10905 -8.10.144.0/22 3356 -8.10.148.0/24 13335 -8.10.149.0/24 26959 -8.10.150.0/23 3356 -8.10.152.0/21 3356 -8.10.160.0/23 20454 -8.10.162.0/24 3356 -8.10.163.0/24 26283 -8.10.164.0/23 25651 -8.10.166.0/23 3356 -8.10.168.0/21 3356 -8.10.176.0/23 14818 -8.10.178.0/24 21869 -8.10.179.0/24 3356 -8.10.180.0/22 3356 -8.10.184.0/21 3356 -8.10.192.0/24 394736 -8.10.193.0/24 3356 -8.10.194.0/24 16641 -8.10.195.0/24 3356 -8.10.196.0/22 3356 -8.10.200.0/21 3356 -8.10.208.0/23 3356 -8.10.210.0/24 16641 -8.10.211.0/24 3356 -8.10.212.0/22 3356 -8.10.216.0/22 3356 -8.10.220.0/23 3356 -8.10.222.0/23 25934 -8.10.224.0/20 3356 -8.10.240.0/22 3356 -8.10.244.0/24 3356 -8.10.245.0/24 17151 -8.10.246.0/23 3356 -8.10.248.0/21 3356 -8.11.0.0/24 3356 -8.11.1.0/24 36851 -8.11.2.0/24 3356 -8.11.3.0/24 20149 -8.11.4.0/22 3356 -8.11.8.0/21 3356 -8.11.16.0/20 3356 -8.11.32.0/19 3356 -8.11.64.0/18 3356 -8.11.128.0/19 3356 -8.11.160.0/22 3356 -8.11.164.0/23 3356 -8.11.166.0/24 46887 -8.11.167.0/24 3356 -8.11.168.0/21 3356 -8.11.176.0/20 3356 -8.11.192.0/24 7148 -8.11.193.0/24 3356 -8.11.194.0/24 3356 -8.11.195.0/24 30118 -8.11.196.0/22 3356 -8.11.200.0/24 17035 -8.11.201.0/24 3356 -8.11.202.0/23 3356 -8.11.204.0/22 3356 -8.11.208.0/20 3356 -8.11.224.0/22 3356 -8.11.228.0/24 26573 -8.11.229.0/24 3356 -8.11.230.0/23 3356 -8.11.232.0/21 3356 -8.11.240.0/21 3356 -8.11.248.0/24 3356 -8.11.249.0/24 11168 -8.11.250.0/23 3356 -8.11.252.0/22 11168 -8.12.0.0/24 3356 -8.12.1.0/24 23089 -8.12.2.0/24 3356 -8.12.3.0/24 31793 -8.12.4.0/24 3356 -8.12.5.0/24 14058 -8.12.6.0/24 3356 -8.12.7.0/24 53416 -8.12.8.0/21 3356 -8.12.16.0/23 20473 -8.12.18.0/24 20473 -8.12.19.0/24 3356 -8.12.20.0/23 3356 -8.12.22.0/23 20473 -8.12.24.0/21 3356 -8.12.32.0/22 26464 -8.12.36.0/23 26464 -8.12.38.0/23 3356 -8.12.40.0/21 26464 -8.12.48.0/22 3356 -8.12.52.0/24 26471 -8.12.53.0/24 3356 -8.12.54.0/24 3356 -8.12.55.0/24 27548 -8.12.56.0/23 3356 -8.12.58.0/24 3356 -8.12.59.0/24 15202 -8.12.60.0/24 46213 -8.12.61.0/24 3356 -8.12.62.0/24 20262 -8.12.63.0/24 398029 -8.12.64.0/23 20473 -8.12.66.0/23 3356 -8.12.68.0/24 20473 -8.12.69.0/24 3356 -8.12.70.0/23 3356 -8.12.72.0/24 33127 -8.12.73.0/24 13767 -8.12.74.0/23 13767 -8.12.76.0/24 25674 -8.12.77.0/24 3356 -8.12.78.0/24 3356 -8.12.79.0/24 31874 -8.12.80.0/20 3356 -8.12.96.0/23 3356 -8.12.98.0/24 30635 -8.12.99.0/24 3356 -8.12.100.0/22 3356 -8.12.104.0/21 3356 -8.12.112.0/24 29152 -8.12.113.0/24 3356 -8.12.114.0/23 3356 -8.12.116.0/22 3356 -8.12.120.0/24 6102 -8.12.121.0/24 3356 -8.12.122.0/23 3356 -8.12.124.0/22 3356 -8.12.128.0/19 3356 -8.12.160.0/23 3356 -8.12.162.0/23 26481 -8.12.164.0/24 26481 -8.12.165.0/24 3356 -8.12.166.0/23 3356 -8.12.168.0/21 3356 -8.12.176.0/20 3356 -8.12.192.0/19 3356 -8.12.224.0/20 3356 -8.12.240.0/22 3356 -8.12.244.0/24 3356 -8.12.245.0/24 14721 -8.12.246.0/23 12025 -8.12.248.0/23 3356 -8.12.250.0/24 16641 -8.12.251.0/24 12286 -8.12.252.0/24 3356 -8.12.253.0/24 1407 -8.12.254.0/24 26411 -8.12.255.0/24 3356 -8.13.0.0/16 3356 -8.14.0.0/24 394562 -8.14.1.0/24 46164 -8.14.2.0/23 46164 -8.14.4.0/22 46164 -8.14.8.0/21 46164 -8.14.16.0/20 46164 -8.14.32.0/24 13647 -8.14.33.0/24 3356 -8.14.34.0/23 3356 -8.14.36.0/22 3356 -8.14.40.0/21 3356 -8.14.48.0/21 3356 -8.14.56.0/23 3356 -8.14.58.0/23 23089 -8.14.60.0/24 31793 -8.14.61.0/24 23089 -8.14.62.0/23 23089 -8.14.64.0/23 11168 -8.14.66.0/24 11168 -8.14.67.0/24 3356 -8.14.68.0/22 11168 -8.14.72.0/21 3356 -8.14.80.0/24 12057 -8.14.81.0/24 3356 -8.14.82.0/24 3356 -8.14.83.0/24 21655 -8.14.84.0/22 23338 -8.14.88.0/21 3356 -8.14.96.0/22 3356 -8.14.100.0/23 3356 -8.14.102.0/24 21656 -8.14.103.0/24 13817 -8.14.104.0/21 3356 -8.14.112.0/24 3356 -8.14.113.0/24 26378 -8.14.114.0/24 3356 -8.14.115.0/24 25674 -8.14.116.0/23 3356 -8.14.118.0/24 3356 -8.14.119.0/24 47631 -8.14.120.0/24 14602 -8.14.121.0/24 12169 -8.14.122.0/23 3356 -8.14.124.0/22 3356 -8.14.128.0/21 3356 -8.14.136.0/23 3356 -8.14.138.0/24 3356 -8.14.139.0/24 21906 -8.14.140.0/22 3356 -8.14.144.0/24 3356 -8.14.145.0/24 26481 -8.14.146.0/23 26481 -8.14.148.0/22 3356 -8.14.152.0/22 3356 -8.14.156.0/24 23089 -8.14.157.0/24 3356 -8.14.158.0/23 3356 -8.14.160.0/22 3356 -8.14.164.0/24 32999 -8.14.165.0/24 3356 -8.14.166.0/24 20053 -8.14.167.0/24 3356 -8.14.168.0/21 3356 -8.14.176.0/20 3356 -8.14.192.0/23 3356 -8.14.194.0/24 3356 -8.14.195.0/24 26102 -8.14.196.0/24 3356 -8.14.197.0/24 11179 -8.14.198.0/24 3356 -8.14.199.0/24 13335 -8.14.200.0/24 3356 -8.14.201.0/24 13335 -8.14.202.0/23 13335 -8.14.204.0/24 13335 -8.14.205.0/24 3356 -8.14.206.0/23 3356 -8.14.208.0/21 3356 -8.14.216.0/22 3356 -8.14.220.0/24 3356 -8.14.221.0/24 40883 -8.14.222.0/23 3356 -8.14.224.0/19 28469 -8.15.0.0/21 3356 -8.15.8.0/22 3356 -8.15.12.0/24 19397 -8.15.13.0/24 3356 -8.15.14.0/23 3356 -8.15.16.0/20 3356 -8.15.32.0/19 3356 -8.15.64.0/24 18540 -8.15.65.0/24 3356 -8.15.66.0/23 3356 -8.15.68.0/22 3356 -8.15.72.0/21 3356 -8.15.80.0/20 3356 -8.15.96.0/19 3356 -8.15.128.0/20 3356 -8.15.144.0/21 3356 -8.15.152.0/22 36614 -8.15.156.0/22 3356 -8.15.160.0/21 3356 -8.15.168.0/22 3356 -8.15.172.0/23 18624 -8.15.174.0/23 3356 -8.15.176.0/20 18624 -8.15.192.0/21 3356 -8.15.200.0/24 3356 -8.15.201.0/24 1286 -8.15.202.0/24 3356 -8.15.203.0/24 7310 -8.15.204.0/22 3356 -8.15.208.0/20 3356 -8.15.224.0/23 64224 -8.15.226.0/23 3356 -8.15.228.0/22 3356 -8.15.232.0/21 3356 -8.15.240.0/22 3356 -8.15.244.0/24 40596 -8.15.245.0/24 3356 -8.15.246.0/24 11483 -8.15.247.0/24 3356 -8.15.248.0/22 3356 -8.15.252.0/23 3356 -8.15.254.0/24 18624 -8.15.255.0/24 3356 -8.16.0.0/16 3356 -8.17.0.0/21 3356 -8.17.8.0/23 26876 -8.17.10.0/23 3356 -8.17.12.0/22 3356 -8.17.16.0/23 3356 -8.17.18.0/24 32059 -8.17.19.0/24 3356 -8.17.20.0/23 3356 -8.17.22.0/24 40711 -8.17.23.0/24 3356 -8.17.24.0/23 3356 -8.17.26.0/24 40493 -8.17.27.0/24 3356 -8.17.28.0/22 3356 -8.17.32.0/24 26967 -8.17.33.0/24 3356 -8.17.34.0/24 26967 -8.17.35.0/24 3356 -8.17.36.0/24 3356 -8.17.37.0/24 14602 -8.17.38.0/24 3356 -8.17.39.0/24 209 -8.17.40.0/24 23089 -8.17.41.0/24 25975 -8.17.42.0/24 3356 -8.17.43.0/24 23089 -8.17.44.0/22 23089 -8.17.48.0/21 3356 -8.17.56.0/24 23089 -8.17.57.0/24 3356 -8.17.58.0/23 23089 -8.17.60.0/24 23089 -8.17.61.0/24 3356 -8.17.62.0/23 23089 -8.17.64.0/23 3356 -8.17.66.0/24 46639 -8.17.67.0/24 3356 -8.17.68.0/22 3356 -8.17.72.0/21 3356 -8.17.80.0/21 26464 -8.17.88.0/21 3356 -8.17.96.0/21 3356 -8.17.104.0/23 3356 -8.17.106.0/24 3356 -8.17.107.0/24 40311 -8.17.108.0/24 3356 -8.17.109.0/24 40311 -8.17.110.0/23 3356 -8.17.112.0/23 3356 -8.17.114.0/24 3356 -8.17.115.0/24 13886 -8.17.116.0/24 3356 -8.17.117.0/24 12144 -8.17.118.0/23 3356 -8.17.120.0/23 3356 -8.17.122.0/23 23089 -8.17.124.0/23 3356 -8.17.126.0/23 23089 -8.17.128.0/19 3356 -8.17.160.0/21 3356 -8.17.168.0/21 26464 -8.17.176.0/22 3356 -8.17.180.0/24 54819 -8.17.181.0/24 55137 -8.17.182.0/23 3356 -8.17.184.0/21 3356 -8.17.192.0/22 3356 -8.17.196.0/23 31890 -8.17.198.0/23 3356 -8.17.200.0/24 21970 -8.17.201.0/24 3356 -8.17.202.0/24 19067 -8.17.203.0/24 3356 -8.17.204.0/24 3356 -8.17.205.0/24 13335 -8.17.206.0/24 13335 -8.17.207.0/24 395747 -8.17.208.0/20 18826 -8.17.224.0/24 3356 -8.17.225.0/24 47040 -8.17.226.0/23 3356 -8.17.228.0/22 3356 -8.17.232.0/21 3356 -8.17.240.0/21 3356 -8.17.248.0/23 3356 -8.17.250.0/23 36352 -8.17.252.0/24 36352 -8.17.253.0/24 3356 -8.17.254.0/23 3356 -8.18.0.0/24 32662 -8.18.1.0/24 3356 -8.18.2.0/24 46340 -8.18.3.0/24 23089 -8.18.4.0/22 23089 -8.18.8.0/21 3356 -8.18.16.0/24 26298 -8.18.17.0/24 3356 -8.18.18.0/24 17405 -8.18.19.0/24 3356 -8.18.20.0/22 3356 -8.18.24.0/24 3356 -8.18.25.0/24 46484 -8.18.26.0/23 3356 -8.18.28.0/22 3356 -8.18.32.0/22 3356 -8.18.36.0/23 3356 -8.18.38.0/23 23089 -8.18.40.0/23 3356 -8.18.42.0/24 3356 -8.18.43.0/24 26769 -8.18.44.0/24 3356 -8.18.45.0/24 25751 -8.18.46.0/23 3356 -8.18.48.0/23 3356 -8.18.50.0/24 13335 -8.18.51.0/24 53281 -8.18.52.0/22 3356 -8.18.56.0/22 3356 -8.18.60.0/24 3356 -8.18.61.0/24 396858 -8.18.62.0/23 3356 -8.18.64.0/21 3356 -8.18.72.0/22 3356 -8.18.76.0/24 13427 -8.18.77.0/24 3356 -8.18.78.0/23 3356 -8.18.80.0/20 3356 -8.18.96.0/23 21691 -8.18.98.0/23 3356 -8.18.100.0/22 3356 -8.18.104.0/21 3356 -8.18.112.0/24 3356 -8.18.113.0/24 13335 -8.18.114.0/23 3356 -8.18.116.0/23 3356 -8.18.118.0/24 19067 -8.18.119.0/24 3356 -8.18.120.0/21 3356 -8.18.128.0/24 16276 -8.18.129.0/24 3356 -8.18.130.0/23 39988 -8.18.132.0/22 3356 -8.18.136.0/21 3356 -8.18.144.0/20 3356 -8.18.160.0/24 3356 -8.18.161.0/24 16676 -8.18.162.0/24 3356 -8.18.163.0/24 22116 -8.18.164.0/22 3356 -8.18.168.0/22 3356 -8.18.172.0/24 16276 -8.18.173.0/24 3356 -8.18.174.0/23 3356 -8.18.176.0/20 3356 -8.18.192.0/24 3356 -8.18.193.0/24 27559 -8.18.194.0/23 13335 -8.18.196.0/23 3356 -8.18.198.0/24 397818 -8.18.199.0/24 3356 -8.18.200.0/22 3356 -8.18.204.0/24 3356 -8.18.205.0/24 26471 -8.18.206.0/23 3356 -8.18.208.0/24 3356 -8.18.209.0/24 16774 -8.18.210.0/23 3356 -8.18.212.0/24 3356 -8.18.213.0/24 395907 -8.18.214.0/23 3356 -8.18.216.0/24 3356 -8.18.217.0/24 394192 -8.18.218.0/24 19001 -8.18.219.0/24 3356 -8.18.220.0/24 46864 -8.18.221.0/24 394941 -8.18.222.0/23 3356 -8.18.224.0/23 3356 -8.18.226.0/23 23089 -8.18.228.0/23 23089 -8.18.230.0/23 3356 -8.18.232.0/21 3356 -8.18.240.0/23 3356 -8.18.242.0/24 62743 -8.18.243.0/24 3356 -8.18.244.0/22 3356 -8.18.248.0/23 3356 -8.18.250.0/24 11732 -8.18.251.0/24 3356 -8.18.252.0/22 3356 -8.19.0.0/19 3356 -8.19.32.0/22 26464 -8.19.36.0/22 3356 -8.19.40.0/22 26464 -8.19.44.0/24 40393 -8.19.45.0/24 3356 -8.19.46.0/23 40393 -8.19.48.0/24 3356 -8.19.49.0/24 16998 -8.19.50.0/23 3356 -8.19.52.0/22 3356 -8.19.56.0/24 23089 -8.19.57.0/24 31793 -8.19.58.0/23 23089 -8.19.60.0/22 23089 -8.19.64.0/21 3356 -8.19.72.0/22 3356 -8.19.76.0/23 3356 -8.19.78.0/24 13955 -8.19.79.0/24 3356 -8.19.80.0/21 3356 -8.19.88.0/22 3356 -8.19.92.0/23 23089 -8.19.94.0/23 3356 -8.19.96.0/20 3356 -8.19.112.0/24 53345 -8.19.113.0/24 17466 -8.19.114.0/23 23486 -8.19.116.0/22 53780 -8.19.120.0/21 3356 -8.19.128.0/22 3356 -8.19.132.0/24 395148 -8.19.133.0/24 47054 -8.19.134.0/24 395148 -8.19.135.0/24 47054 -8.19.136.0/21 3356 -8.19.144.0/23 3356 -8.19.146.0/24 25674 -8.19.147.0/24 3356 -8.19.148.0/22 3356 -8.19.152.0/21 3356 -8.19.160.0/20 3356 -8.19.176.0/23 3356 -8.19.178.0/24 26143 -8.19.179.0/24 3356 -8.19.180.0/23 3356 -8.19.182.0/24 209 -8.19.183.0/24 3356 -8.19.184.0/22 3356 -8.19.188.0/24 32696 -8.19.189.0/24 3356 -8.19.190.0/23 3356 -8.19.192.0/21 3356 -8.19.200.0/24 3356 -8.19.201.0/24 53279 -8.19.202.0/24 32385 -8.19.203.0/24 53345 -8.19.204.0/23 3356 -8.19.206.0/23 23089 -8.19.208.0/20 3356 -8.19.224.0/21 3356 -8.19.232.0/24 3356 -8.19.233.0/24 23089 -8.19.234.0/23 3356 -8.19.236.0/24 23089 -8.19.237.0/24 31793 -8.19.238.0/23 31793 -8.19.240.0/24 3356 -8.19.241.0/24 53943 -8.19.242.0/24 19589 -8.19.243.0/24 3356 -8.19.244.0/23 3356 -8.19.246.0/24 63031 -8.19.247.0/24 3356 -8.19.248.0/24 19589 -8.19.249.0/24 396300 -8.19.250.0/23 3356 -8.19.252.0/23 63402 -8.19.254.0/23 3356 -8.20.0.0/23 35873 -8.20.2.0/24 35873 -8.20.3.0/24 3356 -8.20.4.0/22 3356 -8.20.8.0/23 29946 -8.20.10.0/23 3356 -8.20.12.0/22 3356 -8.20.16.0/23 3356 -8.20.18.0/23 23089 -8.20.20.0/22 23089 -8.20.24.0/24 3356 -8.20.25.0/24 1423 -8.20.26.0/23 3356 -8.20.28.0/23 3356 -8.20.30.0/24 3356 -8.20.31.0/24 393365 -8.20.32.0/23 23089 -8.20.34.0/23 3356 -8.20.36.0/23 23089 -8.20.38.0/23 3356 -8.20.40.0/24 3356 -8.20.41.0/24 396365 -8.20.42.0/23 3356 -8.20.44.0/22 3356 -8.20.48.0/23 3356 -8.20.50.0/23 21691 -8.20.52.0/24 3356 -8.20.53.0/24 26344 -8.20.54.0/24 3356 -8.20.55.0/24 40371 -8.20.56.0/23 46241 -8.20.58.0/24 3356 -8.20.59.0/24 40371 -8.20.60.0/24 40371 -8.20.61.0/24 3356 -8.20.62.0/24 3356 -8.20.63.0/24 394437 -8.20.64.0/24 3356 -8.20.65.0/24 18756 -8.20.66.0/23 3356 -8.20.68.0/24 3356 -8.20.69.0/24 36317 -8.20.70.0/23 3356 -8.20.72.0/24 3356 -8.20.73.0/24 20149 -8.20.74.0/24 23256 -8.20.75.0/24 3356 -8.20.76.0/22 3356 -8.20.80.0/24 40495 -8.20.81.0/24 3356 -8.20.82.0/23 3356 -8.20.84.0/22 3356 -8.20.88.0/24 53775 -8.20.89.0/24 3356 -8.20.90.0/24 53916 -8.20.91.0/24 396431 -8.20.92.0/24 30372 -8.20.93.0/24 3356 -8.20.94.0/23 3356 -8.20.96.0/23 23089 -8.20.98.0/23 3356 -8.20.100.0/24 3356 -8.20.101.0/24 13335 -8.20.102.0/24 3356 -8.20.103.0/24 13335 -8.20.104.0/22 3356 -8.20.108.0/24 3356 -8.20.109.0/24 47631 -8.20.110.0/24 16276 -8.20.111.0/24 3356 -8.20.112.0/24 13832 -8.20.113.0/24 46186 -8.20.114.0/24 3356 -8.20.115.0/24 394945 -8.20.116.0/23 3356 -8.20.118.0/24 53601 -8.20.119.0/24 14784 -8.20.120.0/23 3356 -8.20.122.0/23 13335 -8.20.124.0/23 13335 -8.20.126.0/23 3356 -8.20.128.0/19 3356 -8.20.160.0/24 3356 -8.20.161.0/24 19695 -8.20.162.0/24 11244 -8.20.163.0/24 3356 -8.20.164.0/22 3356 -8.20.168.0/21 3356 -8.20.176.0/23 3356 -8.20.178.0/23 11178 -8.20.180.0/23 3356 -8.20.182.0/23 53670 -8.20.184.0/24 13724 -8.20.185.0/24 3356 -8.20.186.0/23 11178 -8.20.188.0/23 3356 -8.20.190.0/24 11178 -8.20.191.0/24 25623 -8.20.192.0/21 3356 -8.20.200.0/22 3356 -8.20.204.0/22 23089 -8.20.208.0/22 3356 -8.20.212.0/24 14602 -8.20.213.0/24 3356 -8.20.214.0/23 63107 -8.20.216.0/21 33302 -8.20.224.0/20 3356 -8.20.240.0/22 3356 -8.20.244.0/24 3356 -8.20.245.0/24 7975 -8.20.246.0/24 26312 -8.20.247.0/24 3356 -8.20.248.0/23 3356 -8.20.250.0/24 3356 -8.20.251.0/24 397158 -8.20.252.0/24 14839 -8.20.253.0/24 3356 -8.20.254.0/23 3356 -8.21.0.0/21 3356 -8.21.8.0/24 13335 -8.21.9.0/24 3356 -8.21.10.0/23 3356 -8.21.12.0/22 3356 -8.21.16.0/21 3356 -8.21.24.0/24 397756 -8.21.25.0/24 3356 -8.21.26.0/23 3356 -8.21.28.0/23 3356 -8.21.30.0/24 3356 -8.21.31.0/24 15073 -8.21.32.0/24 3356 -8.21.33.0/24 14112 -8.21.34.0/23 14112 -8.21.36.0/24 3356 -8.21.37.0/24 40470 -8.21.38.0/23 40470 -8.21.40.0/24 3356 -8.21.41.0/24 16276 -8.21.42.0/23 3356 -8.21.44.0/22 3356 -8.21.48.0/20 3356 -8.21.64.0/24 27548 -8.21.65.0/24 3356 -8.21.66.0/23 3356 -8.21.68.0/22 40526 -8.21.72.0/21 3356 -8.21.80.0/24 3356 -8.21.81.0/24 22147 -8.21.82.0/24 3356 -8.21.83.0/24 20353 -8.21.84.0/23 3356 -8.21.86.0/24 3356 -8.21.87.0/24 40570 -8.21.88.0/21 3356 -8.21.96.0/23 3356 -8.21.98.0/24 397336 -8.21.99.0/24 16493 -8.21.100.0/24 3356 -8.21.101.0/24 18888 -8.21.102.0/24 396267 -8.21.103.0/24 3356 -8.21.104.0/23 2731 -8.21.106.0/24 393516 -8.21.107.0/24 33086 -8.21.108.0/22 3356 -8.21.112.0/22 3356 -8.21.116.0/23 3356 -8.21.118.0/24 35884 -8.21.119.0/24 40026 -8.21.120.0/22 2731 -8.21.124.0/23 2731 -8.21.126.0/23 3356 -8.21.128.0/24 3356 -8.21.129.0/24 55136 -8.21.130.0/23 3356 -8.21.132.0/22 3356 -8.21.136.0/21 3356 -8.21.144.0/22 3356 -8.21.148.0/23 3356 -8.21.150.0/24 3356 -8.21.151.0/24 393762 -8.21.152.0/22 14283 -8.21.156.0/22 3356 -8.21.160.0/24 3356 -8.21.161.0/24 46484 -8.21.162.0/24 3356 -8.21.163.0/24 46484 -8.21.164.0/24 46680 -8.21.165.0/24 3356 -8.21.166.0/23 10753 -8.21.168.0/24 5091 -8.21.169.0/24 3356 -8.21.170.0/23 3356 -8.21.172.0/22 3356 -8.21.176.0/22 3356 -8.21.180.0/24 46186 -8.21.181.0/24 3356 -8.21.182.0/23 3356 -8.21.184.0/21 3356 -8.21.192.0/22 3356 -8.21.196.0/23 3356 -8.21.198.0/23 18837 -8.21.200.0/21 3356 -8.21.208.0/23 23089 -8.21.210.0/23 3356 -8.21.212.0/24 33740 -8.21.213.0/24 11553 -8.21.214.0/23 3356 -8.21.216.0/23 3356 -8.21.218.0/24 23089 -8.21.219.0/24 3356 -8.21.220.0/23 23089 -8.21.222.0/23 3356 -8.21.224.0/22 3356 -8.21.228.0/24 3356 -8.21.229.0/24 32810 -8.21.230.0/24 23089 -8.21.231.0/24 3356 -8.21.232.0/24 3356 -8.21.233.0/24 36858 -8.21.234.0/24 53281 -8.21.235.0/24 3356 -8.21.236.0/22 3356 -8.21.240.0/20 3356 -8.22.0.0/21 3356 -8.22.8.0/22 3356 -8.22.12.0/22 53407 -8.22.16.0/20 3356 -8.22.32.0/23 3356 -8.22.34.0/24 46754 -8.22.35.0/24 3356 -8.22.36.0/23 6336 -8.22.38.0/23 3356 -8.22.40.0/21 3356 -8.22.48.0/23 3356 -8.22.50.0/24 3356 -8.22.51.0/24 18570 -8.22.52.0/22 3356 -8.22.56.0/21 3356 -8.22.64.0/23 3356 -8.22.66.0/24 3356 -8.22.67.0/24 7921 -8.22.68.0/22 46347 -8.22.72.0/21 3356 -8.22.80.0/22 3356 -8.22.84.0/22 14602 -8.22.88.0/22 3356 -8.22.92.0/23 3356 -8.22.94.0/23 31793 -8.22.96.0/24 3356 -8.22.97.0/24 12220 -8.22.98.0/23 3356 -8.22.100.0/24 3356 -8.22.101.0/24 12220 -8.22.102.0/23 3356 -8.22.104.0/21 3685 -8.22.112.0/20 3356 -8.22.128.0/21 3356 -8.22.136.0/24 3356 -8.22.137.0/24 394128 -8.22.138.0/23 3356 -8.22.140.0/23 3356 -8.22.142.0/24 13938 -8.22.143.0/24 3356 -8.22.144.0/20 3356 -8.22.160.0/24 3356 -8.22.161.0/24 14413 -8.22.162.0/23 3356 -8.22.164.0/22 3356 -8.22.168.0/24 32696 -8.22.169.0/24 3356 -8.22.170.0/23 3356 -8.22.172.0/22 3356 -8.22.176.0/23 3356 -8.22.178.0/24 3356 -8.22.179.0/24 1821 -8.22.180.0/22 3356 -8.22.184.0/22 3356 -8.22.188.0/23 11168 -8.22.190.0/23 3356 -8.22.192.0/23 393947 -8.22.194.0/23 3356 -8.22.196.0/24 40410 -8.22.197.0/24 3356 -8.22.198.0/23 3356 -8.22.200.0/21 19844 -8.22.208.0/24 397929 -8.22.209.0/24 3356 -8.22.210.0/23 3356 -8.22.212.0/22 3356 -8.22.216.0/24 33271 -8.22.217.0/24 3356 -8.22.218.0/23 3356 -8.22.220.0/22 3356 -8.22.224.0/21 3361 -8.22.232.0/21 3356 -8.22.240.0/24 30647 -8.22.241.0/24 3356 -8.22.242.0/23 3356 -8.22.244.0/22 3356 -8.22.248.0/21 3356 -8.23.0.0/20 3356 -8.23.16.0/21 3356 -8.23.24.0/23 6507 -8.23.26.0/23 3356 -8.23.28.0/22 3356 -8.23.32.0/20 3356 -8.23.48.0/22 3356 -8.23.52.0/23 3356 -8.23.54.0/24 62994 -8.23.55.0/24 3356 -8.23.56.0/21 3356 -8.23.64.0/21 23089 -8.23.72.0/22 3356 -8.23.76.0/22 394976 -8.23.80.0/23 26967 -8.23.82.0/23 23089 -8.23.84.0/22 26967 -8.23.88.0/24 46121 -8.23.89.0/24 3356 -8.23.90.0/24 3356 -8.23.91.0/24 209 -8.23.92.0/22 26967 -8.23.96.0/19 3356 -8.23.128.0/20 3356 -8.23.144.0/22 3356 -8.23.148.0/24 3356 -8.23.149.0/24 23005 -8.23.150.0/23 3356 -8.23.152.0/24 3356 -8.23.153.0/24 46435 -8.23.154.0/23 46435 -8.23.156.0/22 3356 -8.23.160.0/19 3356 -8.23.192.0/23 21859 -8.23.194.0/23 3356 -8.23.196.0/22 3356 -8.23.200.0/22 55863 -8.23.204.0/22 3356 -8.23.208.0/20 3356 -8.23.224.0/24 14627 -8.23.225.0/24 53845 -8.23.226.0/23 3356 -8.23.228.0/22 3356 -8.23.232.0/24 23240 -8.23.233.0/24 3356 -8.23.234.0/23 3356 -8.23.236.0/22 3356 -8.23.240.0/21 3356 -8.23.248.0/24 18801 -8.23.249.0/24 3356 -8.23.250.0/23 3356 -8.23.252.0/22 3356 -8.24.0.0/21 14112 -8.24.8.0/21 16276 -8.24.16.0/21 23089 -8.24.24.0/22 3356 -8.24.28.0/23 3356 -8.24.30.0/24 3356 -8.24.31.0/24 31902 -8.24.32.0/19 3356 -8.24.64.0/23 174 -8.24.66.0/24 36270 -8.24.67.0/24 3356 -8.24.68.0/23 26808 -8.24.70.0/24 3356 -8.24.71.0/24 397105 -8.24.72.0/23 174 -8.24.74.0/23 3356 -8.24.76.0/22 3356 -8.24.80.0/22 23089 -8.24.84.0/24 3356 -8.24.85.0/24 55086 -8.24.86.0/23 3356 -8.24.88.0/21 3356 -8.24.96.0/20 14828 -8.24.112.0/20 3356 -8.24.128.0/20 3356 -8.24.144.0/24 3356 -8.24.145.0/24 27565 -8.24.146.0/23 3356 -8.24.148.0/22 3356 -8.24.152.0/21 3356 -8.24.160.0/20 3356 -8.24.176.0/21 23089 -8.24.184.0/23 23089 -8.24.186.0/23 3356 -8.24.188.0/22 3356 -8.24.192.0/24 63098 -8.24.193.0/24 3356 -8.24.194.0/23 3356 -8.24.196.0/22 3356 -8.24.200.0/22 3356 -8.24.204.0/22 33561 -8.24.208.0/21 16574 -8.24.216.0/23 3356 -8.24.218.0/23 22084 -8.24.220.0/22 3356 -8.24.224.0/20 19844 -8.24.240.0/24 53690 -8.24.241.0/24 3356 -8.24.242.0/23 3356 -8.24.244.0/22 3356 -8.24.248.0/22 19844 -8.24.252.0/23 19844 -8.24.254.0/23 23368 -8.25.0.0/23 3356 -8.25.2.0/24 3356 -8.25.3.0/24 23089 -8.25.4.0/23 64224 -8.25.6.0/24 7257 -8.25.7.0/24 3356 -8.25.8.0/21 3356 -8.25.16.0/22 3356 -8.25.20.0/23 23089 -8.25.22.0/23 3356 -8.25.24.0/22 3356 -8.25.28.0/22 23089 -8.25.32.0/23 40866 -8.25.34.0/24 3356 -8.25.35.0/24 54761 -8.25.36.0/22 40866 -8.25.40.0/23 3356 -8.25.42.0/24 3356 -8.25.43.0/24 14911 -8.25.44.0/22 3356 -8.25.48.0/20 3356 -8.25.64.0/23 3356 -8.25.66.0/24 20070 -8.25.67.0/24 3356 -8.25.68.0/24 3356 -8.25.69.0/24 26062 -8.25.70.0/23 3356 -8.25.72.0/24 16493 -8.25.73.0/24 3356 -8.25.74.0/24 62949 -8.25.75.0/24 14739 -8.25.76.0/22 3356 -8.25.80.0/21 3356 -8.25.88.0/23 36298 -8.25.90.0/23 3356 -8.25.92.0/22 3356 -8.25.96.0/21 3356 -8.25.104.0/24 46125 -8.25.105.0/24 3356 -8.25.106.0/23 3356 -8.25.108.0/22 3356 -8.25.112.0/20 3356 -8.25.128.0/20 3356 -8.25.144.0/23 3356 -8.25.146.0/24 18690 -8.25.147.0/24 3356 -8.25.148.0/23 3356 -8.25.150.0/24 32467 -8.25.151.0/24 62747 -8.25.152.0/22 3356 -8.25.156.0/24 27507 -8.25.157.0/24 25611 -8.25.158.0/24 33428 -8.25.159.0/24 3356 -8.25.160.0/23 3356 -8.25.162.0/23 30354 -8.25.164.0/22 3356 -8.25.168.0/24 394517 -8.25.169.0/24 3356 -8.25.170.0/23 3356 -8.25.172.0/23 23089 -8.25.174.0/23 3356 -8.25.176.0/21 3356 -8.25.184.0/23 23089 -8.25.186.0/23 3356 -8.25.188.0/23 23089 -8.25.190.0/23 3356 -8.25.192.0/23 3356 -8.25.194.0/23 35995 -8.25.196.0/23 35995 -8.25.198.0/24 46680 -8.25.199.0/24 3356 -8.25.200.0/23 3356 -8.25.202.0/24 3356 -8.25.203.0/24 53444 -8.25.204.0/24 18604 -8.25.205.0/24 3356 -8.25.206.0/24 54169 -8.25.207.0/24 3356 -8.25.208.0/22 3356 -8.25.212.0/23 3356 -8.25.214.0/24 3356 -8.25.215.0/24 22680 -8.25.216.0/24 3356 -8.25.217.0/24 54756 -8.25.218.0/24 395362 -8.25.219.0/24 3356 -8.25.220.0/23 3356 -8.25.222.0/24 3356 -8.25.223.0/24 53985 -8.25.224.0/20 26903 -8.25.240.0/21 63107 -8.25.248.0/22 3356 -8.25.252.0/22 30174 -8.26.0.0/21 3356 -8.26.8.0/23 23089 -8.26.10.0/23 3356 -8.26.12.0/22 23089 -8.26.16.0/24 44521 -8.26.17.0/24 3356 -8.26.18.0/23 3356 -8.26.20.0/22 15083 -8.26.24.0/21 3356 -8.26.32.0/24 3356 -8.26.33.0/24 21893 -8.26.34.0/23 3356 -8.26.36.0/22 3356 -8.26.40.0/24 3356 -8.26.41.0/24 44521 -8.26.42.0/23 3356 -8.26.44.0/24 395590 -8.26.45.0/24 63421 -8.26.46.0/23 3356 -8.26.48.0/21 3356 -8.26.56.0/23 3356 -8.26.58.0/24 30328 -8.26.59.0/24 395800 -8.26.60.0/22 3356 -8.26.64.0/23 19222 -8.26.66.0/23 3356 -8.26.68.0/22 3356 -8.26.72.0/22 3356 -8.26.76.0/23 3356 -8.26.78.0/23 53845 -8.26.80.0/21 3356 -8.26.88.0/22 3356 -8.26.92.0/23 3356 -8.26.94.0/24 16276 -8.26.95.0/24 3356 -8.26.96.0/23 3356 -8.26.98.0/24 31793 -8.26.99.0/24 3356 -8.26.100.0/22 3356 -8.26.104.0/23 3356 -8.26.106.0/24 3356 -8.26.107.0/24 10753 -8.26.108.0/23 13604 -8.26.110.0/23 3356 -8.26.112.0/23 19589 -8.26.114.0/23 3356 -8.26.116.0/22 3356 -8.26.120.0/23 23089 -8.26.122.0/23 3356 -8.26.124.0/24 17348 -8.26.125.0/24 3356 -8.26.126.0/23 3356 -8.26.128.0/20 3356 -8.26.144.0/23 3356 -8.26.146.0/24 11414 -8.26.147.0/24 3356 -8.26.148.0/22 3356 -8.26.152.0/22 3356 -8.26.156.0/24 3356 -8.26.157.0/24 26673 -8.26.158.0/23 3356 -8.26.160.0/24 53524 -8.26.161.0/24 394526 -8.26.162.0/23 3356 -8.26.164.0/22 3356 -8.26.168.0/21 3356 -8.26.176.0/21 3356 -8.26.184.0/24 26471 -8.26.185.0/24 3356 -8.26.186.0/23 3356 -8.26.188.0/22 3356 -8.26.192.0/19 3356 -8.26.224.0/21 23089 -8.26.232.0/23 40076 -8.26.234.0/23 3356 -8.26.236.0/22 3356 -8.26.240.0/23 23089 -8.26.242.0/23 3356 -8.26.244.0/22 3356 -8.26.248.0/21 3356 -8.27.0.0/20 3356 -8.27.16.0/21 3356 -8.27.24.0/22 23089 -8.27.28.0/22 3356 -8.27.32.0/19 3356 -8.27.64.0/21 3356 -8.27.72.0/23 3356 -8.27.74.0/24 3356 -8.27.75.0/24 26991 -8.27.76.0/23 14059 -8.27.78.0/24 55209 -8.27.79.0/24 3356 -8.27.80.0/20 3356 -8.27.96.0/21 3356 -8.27.104.0/24 3356 -8.27.105.0/24 12209 -8.27.106.0/23 3356 -8.27.108.0/24 3356 -8.27.109.0/24 398170 -8.27.110.0/23 3356 -8.27.112.0/21 23089 -8.27.120.0/23 23089 -8.27.122.0/24 3356 -8.27.123.0/24 23089 -8.27.124.0/23 3356 -8.27.126.0/23 23089 -8.27.128.0/19 3356 -8.27.160.0/20 3356 -8.27.176.0/22 3356 -8.27.180.0/22 6086 -8.27.184.0/23 25651 -8.27.186.0/23 22528 -8.27.188.0/24 3356 -8.27.189.0/24 19843 -8.27.190.0/23 25651 -8.27.192.0/20 3356 -8.27.208.0/20 40749 -8.27.224.0/19 3356 -8.28.0.0/23 32308 -8.28.2.0/24 44965 -8.28.3.0/24 32308 -8.28.4.0/24 11179 -8.28.5.0/24 3356 -8.28.6.0/24 3356 -8.28.7.0/24 62713 -8.28.8.0/21 3356 -8.28.16.0/23 27471 -8.28.18.0/24 395819 -8.28.19.0/24 3356 -8.28.20.0/22 3356 -8.28.24.0/21 3356 -8.28.32.0/21 3356 -8.28.40.0/24 35884 -8.28.41.0/24 3356 -8.28.42.0/23 3356 -8.28.44.0/22 3356 -8.28.48.0/22 46887 -8.28.52.0/24 40367 -8.28.53.0/24 16657 -8.28.54.0/24 46887 -8.28.55.0/24 394830 -8.28.56.0/24 395809 -8.28.57.0/24 23160 -8.28.58.0/24 395729 -8.28.59.0/24 3356 -8.28.60.0/24 395729 -8.28.61.0/24 3356 -8.28.62.0/24 394280 -8.28.63.0/24 26991 -8.28.64.0/24 19067 -8.28.65.0/24 3356 -8.28.66.0/23 3356 -8.28.68.0/24 3356 -8.28.69.0/24 36118 -8.28.70.0/23 3356 -8.28.72.0/24 32848 -8.28.73.0/24 3356 -8.28.74.0/23 3356 -8.28.76.0/22 3356 -8.28.80.0/24 13345 -8.28.81.0/24 3356 -8.28.82.0/24 3356 -8.28.83.0/24 393625 -8.28.84.0/24 3356 -8.28.85.0/24 14602 -8.28.86.0/23 3356 -8.28.88.0/21 3356 -8.28.96.0/23 3356 -8.28.98.0/23 23089 -8.28.100.0/23 23089 -8.28.102.0/23 3356 -8.28.104.0/23 3356 -8.28.106.0/23 23089 -8.28.108.0/22 3356 -8.28.112.0/22 3356 -8.28.116.0/24 54983 -8.28.117.0/24 3356 -8.28.118.0/24 1605 -8.28.119.0/24 3356 -8.28.120.0/23 3356 -8.28.122.0/24 393895 -8.28.123.0/24 7384 -8.28.124.0/23 23286 -8.28.126.0/23 3356 -8.28.128.0/19 3356 -8.28.160.0/21 3356 -8.28.168.0/22 3356 -8.28.172.0/24 62764 -8.28.173.0/24 3356 -8.28.174.0/23 3356 -8.28.176.0/23 3356 -8.28.178.0/23 103 -8.28.180.0/24 55281 -8.28.181.0/24 3356 -8.28.182.0/24 3356 -8.28.183.0/24 16477 -8.28.184.0/21 30536 -8.28.192.0/21 3356 -8.28.200.0/24 3356 -8.28.201.0/24 396894 -8.28.202.0/23 3356 -8.28.204.0/22 3356 -8.28.208.0/21 3356 -8.28.216.0/23 3356 -8.28.218.0/24 3356 -8.28.219.0/24 6955 -8.28.220.0/22 3356 -8.28.224.0/24 3356 -8.28.225.0/24 22511 -8.28.226.0/24 3356 -8.28.227.0/24 395389 -8.28.228.0/24 396379 -8.28.229.0/24 11414 -8.28.230.0/23 3356 -8.28.232.0/21 3356 -8.28.240.0/20 22898 -8.29.0.0/23 3356 -8.29.2.0/23 23089 -8.29.4.0/22 3356 -8.29.8.0/21 3356 -8.29.16.0/23 3356 -8.29.18.0/24 46601 -8.29.19.0/24 3356 -8.29.20.0/23 3356 -8.29.22.0/23 23089 -8.29.24.0/24 3356 -8.29.25.0/24 4566 -8.29.26.0/23 3356 -8.29.28.0/24 62495 -8.29.29.0/24 40466 -8.29.30.0/23 3356 -8.29.32.0/19 3356 -8.29.64.0/23 23089 -8.29.66.0/23 3356 -8.29.68.0/22 3356 -8.29.72.0/21 36730 -8.29.80.0/22 3356 -8.29.84.0/22 62738 -8.29.88.0/21 3356 -8.29.96.0/22 3356 -8.29.100.0/24 3356 -8.29.101.0/24 393590 -8.29.102.0/24 40800 -8.29.103.0/24 54665 -8.29.104.0/23 3356 -8.29.106.0/24 3356 -8.29.107.0/24 394272 -8.29.108.0/23 3356 -8.29.110.0/24 3356 -8.29.111.0/24 17348 -8.29.112.0/22 3356 -8.29.116.0/24 3356 -8.29.117.0/24 13450 -8.29.118.0/23 3356 -8.29.120.0/21 53889 -8.29.128.0/20 30152 -8.29.144.0/22 26312 -8.29.148.0/22 3356 -8.29.152.0/21 30152 -8.29.160.0/22 3356 -8.29.164.0/24 30056 -8.29.165.0/24 3356 -8.29.166.0/23 3356 -8.29.168.0/21 3356 -8.29.176.0/20 3356 -8.29.192.0/22 31216 -8.29.196.0/23 31216 -8.29.198.0/24 60653 -8.29.199.0/24 31216 -8.29.200.0/21 3356 -8.29.208.0/24 32419 -8.29.209.0/24 46887 -8.29.210.0/23 46887 -8.29.212.0/24 46887 -8.29.213.0/24 62614 -8.29.214.0/23 46887 -8.29.216.0/21 3356 -8.29.224.0/24 16276 -8.29.225.0/24 3356 -8.29.226.0/23 3356 -8.29.228.0/22 3356 -8.29.232.0/21 3356 -8.29.240.0/20 3356 -8.30.0.0/22 3356 -8.30.4.0/24 53720 -8.30.5.0/24 3356 -8.30.6.0/23 3356 -8.30.8.0/22 3356 -8.30.12.0/22 17151 -8.30.16.0/20 3356 -8.30.32.0/23 3356 -8.30.34.0/24 3356 -8.30.35.0/24 31849 -8.30.36.0/22 3356 -8.30.40.0/21 3356 -8.30.48.0/20 3356 -8.30.64.0/20 3356 -8.30.80.0/24 3356 -8.30.81.0/24 395819 -8.30.82.0/23 3356 -8.30.84.0/24 22511 -8.30.85.0/24 3356 -8.30.86.0/24 3356 -8.30.87.0/24 22657 -8.30.88.0/22 3356 -8.30.92.0/24 54948 -8.30.93.0/24 3356 -8.30.94.0/23 3356 -8.30.96.0/21 23089 -8.30.104.0/23 23089 -8.30.106.0/23 3356 -8.30.108.0/22 3356 -8.30.112.0/21 3356 -8.30.120.0/22 3356 -8.30.124.0/24 13886 -8.30.125.0/24 55270 -8.30.126.0/23 3356 -8.30.128.0/20 3356 -8.30.144.0/21 3356 -8.30.152.0/23 14567 -8.30.154.0/23 3356 -8.30.156.0/24 39952 -8.30.157.0/24 54758 -8.30.158.0/24 3356 -8.30.159.0/24 31984 -8.30.160.0/20 3356 -8.30.176.0/21 13904 -8.30.184.0/23 3356 -8.30.186.0/23 13904 -8.30.188.0/22 13904 -8.30.192.0/21 12025 -8.30.200.0/23 3356 -8.30.202.0/24 3356 -8.30.203.0/24 22064 -8.30.204.0/22 3356 -8.30.208.0/21 16276 -8.30.216.0/21 3356 -8.30.224.0/21 3356 -8.30.232.0/22 3356 -8.30.236.0/24 27436 -8.30.237.0/24 26028 -8.30.238.0/23 54225 -8.30.240.0/22 3356 -8.30.244.0/22 18590 -8.30.248.0/22 103 -8.30.252.0/23 3356 -8.30.254.0/24 16820 -8.30.255.0/24 3356 -8.31.0.0/24 3356 -8.31.1.0/24 23089 -8.31.2.0/23 3356 -8.31.4.0/22 3356 -8.31.8.0/21 3356 -8.31.16.0/20 3356 -8.31.32.0/20 395368 -8.31.48.0/20 3356 -8.31.64.0/19 3356 -8.31.96.0/20 3356 -8.31.112.0/21 3356 -8.31.120.0/23 3356 -8.31.122.0/24 3257 -8.31.123.0/24 3356 -8.31.124.0/22 3356 -8.31.128.0/19 3356 -8.31.160.0/23 13335 -8.31.162.0/23 3356 -8.31.164.0/22 3356 -8.31.168.0/23 3356 -8.31.170.0/24 3356 -8.31.171.0/24 21812 -8.31.172.0/23 3356 -8.31.174.0/24 3356 -8.31.175.0/24 13982 -8.31.176.0/20 3356 -8.31.192.0/24 31849 -8.31.193.0/24 3356 -8.31.194.0/23 3356 -8.31.196.0/23 3356 -8.31.198.0/24 3356 -8.31.199.0/24 397690 -8.31.200.0/21 3356 -8.31.208.0/20 3356 -8.31.224.0/21 3356 -8.31.232.0/23 53780 -8.31.234.0/23 3356 -8.31.236.0/22 394059 -8.31.240.0/20 3356 -8.32.0.0/16 3356 -8.33.0.0/24 3356 -8.33.1.0/24 394053 -8.33.2.0/24 54868 -8.33.3.0/24 10753 -8.33.4.0/22 3356 -8.33.8.0/21 3356 -8.33.16.0/22 33616 -8.33.20.0/22 3356 -8.33.24.0/24 3356 -8.33.25.0/24 36162 -8.33.26.0/23 3356 -8.33.28.0/23 22474 -8.33.30.0/24 3356 -8.33.31.0/24 396957 -8.33.32.0/23 53407 -8.33.34.0/23 3356 -8.33.36.0/23 3356 -8.33.38.0/24 397849 -8.33.39.0/24 3356 -8.33.40.0/24 46802 -8.33.41.0/24 3356 -8.33.42.0/23 3356 -8.33.44.0/23 3356 -8.33.46.0/23 11475 -8.33.48.0/20 3356 -8.33.64.0/24 3356 -8.33.65.0/24 53560 -8.33.66.0/24 3356 -8.33.67.0/24 40882 -8.33.68.0/23 40882 -8.33.70.0/23 3356 -8.33.72.0/24 17158 -8.33.73.0/24 55100 -8.33.74.0/23 3356 -8.33.76.0/22 3356 -8.33.80.0/20 7381 -8.33.96.0/21 16276 -8.33.104.0/21 3356 -8.33.112.0/20 3356 -8.33.128.0/21 16276 -8.33.136.0/23 16276 -8.33.138.0/24 396157 -8.33.139.0/24 11071 -8.33.140.0/24 63110 -8.33.141.0/24 3356 -8.33.142.0/23 3356 -8.33.144.0/22 3356 -8.33.148.0/23 3356 -8.33.150.0/24 54100 -8.33.151.0/24 3356 -8.33.152.0/21 3356 -8.33.160.0/20 33182 -8.33.176.0/24 393971 -8.33.177.0/24 3356 -8.33.178.0/23 3356 -8.33.180.0/22 3356 -8.33.184.0/24 3356 -8.33.185.0/24 22687 -8.33.186.0/23 3356 -8.33.188.0/23 3356 -8.33.190.0/24 3356 -8.33.191.0/24 20070 -8.33.192.0/19 3356 -8.33.224.0/24 3356 -8.33.225.0/24 394804 -8.33.226.0/23 3356 -8.33.228.0/23 3356 -8.33.230.0/24 3356 -8.33.231.0/24 36636 -8.33.232.0/24 3356 -8.33.233.0/24 20035 -8.33.234.0/24 3356 -8.33.235.0/24 23071 -8.33.236.0/23 3356 -8.33.238.0/23 62738 -8.33.240.0/21 3356 -8.33.248.0/24 15229 -8.33.249.0/24 40614 -8.33.250.0/23 3356 -8.33.252.0/22 3356 -8.34.0.0/22 3356 -8.34.4.0/23 3356 -8.34.6.0/23 23089 -8.34.8.0/24 3356 -8.34.9.0/24 63031 -8.34.10.0/23 3356 -8.34.12.0/24 3356 -8.34.13.0/24 19589 -8.34.14.0/23 13604 -8.34.16.0/21 3356 -8.34.24.0/23 3356 -8.34.26.0/24 63283 -8.34.27.0/24 13984 -8.34.28.0/22 16695 -8.34.32.0/23 3356 -8.34.34.0/24 32921 -8.34.35.0/24 3356 -8.34.36.0/22 3356 -8.34.40.0/23 3356 -8.34.42.0/24 1821 -8.34.43.0/24 3356 -8.34.44.0/22 3356 -8.34.48.0/23 3356 -8.34.50.0/24 397425 -8.34.51.0/24 3356 -8.34.52.0/22 3356 -8.34.56.0/22 3356 -8.34.60.0/24 27507 -8.34.61.0/24 3356 -8.34.62.0/24 3356 -8.34.63.0/24 54906 -8.34.64.0/20 3356 -8.34.80.0/21 3356 -8.34.88.0/22 3356 -8.34.92.0/23 3356 -8.34.94.0/24 40636 -8.34.95.0/24 3356 -8.34.96.0/22 54868 -8.34.100.0/23 54868 -8.34.102.0/24 3356 -8.34.103.0/24 54868 -8.34.104.0/21 3356 -8.34.112.0/24 54761 -8.34.113.0/24 33313 -8.34.114.0/23 3356 -8.34.116.0/24 395148 -8.34.117.0/24 47054 -8.34.118.0/23 395148 -8.34.120.0/22 3356 -8.34.124.0/22 33695 -8.34.128.0/20 3356 -8.34.144.0/24 10969 -8.34.145.0/24 54976 -8.34.146.0/23 3356 -8.34.148.0/22 3356 -8.34.152.0/21 30536 -8.34.160.0/24 3356 -8.34.161.0/24 40917 -8.34.162.0/23 3356 -8.34.164.0/24 3356 -8.34.165.0/24 15359 -8.34.166.0/23 3356 -8.34.168.0/24 3356 -8.34.169.0/24 23384 -8.34.170.0/24 10397 -8.34.171.0/24 3356 -8.34.172.0/23 3356 -8.34.174.0/23 32278 -8.34.176.0/23 15359 -8.34.178.0/23 3356 -8.34.180.0/24 3356 -8.34.181.0/24 15359 -8.34.182.0/24 7324 -8.34.183.0/24 32752 -8.34.184.0/21 3356 -8.34.192.0/20 3356 -8.34.208.0/20 15169 -8.34.224.0/20 3356 -8.34.240.0/24 3356 -8.34.241.0/24 397929 -8.34.242.0/23 3356 -8.34.244.0/22 3356 -8.34.248.0/21 3356 -8.35.0.0/22 3356 -8.35.4.0/24 3356 -8.35.5.0/24 13475 -8.35.6.0/23 3356 -8.35.8.0/24 55110 -8.35.9.0/24 3356 -8.35.10.0/23 3356 -8.35.12.0/24 3356 -8.35.13.0/24 39984 -8.35.14.0/23 3356 -8.35.16.0/22 3257 -8.35.20.0/24 20077 -8.35.21.0/24 3257 -8.35.22.0/24 3257 -8.35.23.0/24 20077 -8.35.24.0/22 3257 -8.35.28.0/23 3257 -8.35.30.0/24 3257 -8.35.31.0/24 20077 -8.35.32.0/24 14058 -8.35.33.0/24 3356 -8.35.34.0/24 3356 -8.35.35.0/24 32921 -8.35.36.0/22 3356 -8.35.40.0/21 3356 -8.35.48.0/24 27632 -8.35.49.0/24 3356 -8.35.50.0/23 3356 -8.35.52.0/22 3356 -8.35.56.0/24 54665 -8.35.57.0/24 13335 -8.35.58.0/23 13335 -8.35.60.0/22 3356 -8.35.64.0/20 3356 -8.35.80.0/22 3356 -8.35.84.0/22 36614 -8.35.88.0/22 3356 -8.35.92.0/23 3356 -8.35.94.0/23 54948 -8.35.96.0/20 3356 -8.35.112.0/23 3356 -8.35.114.0/23 27425 -8.35.116.0/22 3356 -8.35.120.0/21 1423 -8.35.128.0/20 3356 -8.35.144.0/22 3356 -8.35.148.0/24 13750 -8.35.149.0/24 3356 -8.35.150.0/23 3356 -8.35.152.0/21 3356 -8.35.160.0/20 3685 -8.35.176.0/23 3356 -8.35.178.0/24 3356 -8.35.179.0/24 198018 -8.35.180.0/22 3356 -8.35.184.0/21 3356 -8.35.192.0/20 15169 -8.35.208.0/22 3356 -8.35.212.0/24 3356 -8.35.213.0/24 32912 -8.35.214.0/24 3356 -8.35.215.0/24 40152 -8.35.216.0/22 3356 -8.35.220.0/24 55272 -8.35.221.0/24 26447 -8.35.222.0/23 3356 -8.35.224.0/19 3356 -8.36.0.0/19 3356 -8.36.32.0/21 12025 -8.36.40.0/21 30152 -8.36.48.0/20 3356 -8.36.64.0/23 3356 -8.36.66.0/24 393226 -8.36.67.0/24 3356 -8.36.68.0/24 22511 -8.36.69.0/24 3356 -8.36.70.0/24 3356 -8.36.71.0/24 62613 -8.36.72.0/22 3356 -8.36.76.0/23 3356 -8.36.78.0/24 10753 -8.36.79.0/24 397274 -8.36.80.0/24 11414 -8.36.81.0/24 3356 -8.36.82.0/24 25871 -8.36.83.0/24 36047 -8.36.84.0/24 27447 -8.36.85.0/24 3356 -8.36.86.0/24 53831 -8.36.87.0/24 3356 -8.36.88.0/24 13458 -8.36.89.0/24 3356 -8.36.90.0/23 3356 -8.36.92.0/24 63046 -8.36.93.0/24 63439 -8.36.94.0/24 36848 -8.36.95.0/24 3356 -8.36.96.0/20 3356 -8.36.112.0/23 11414 -8.36.114.0/24 3356 -8.36.115.0/24 62 -8.36.116.0/24 55256 -8.36.117.0/24 62616 -8.36.118.0/23 3356 -8.36.120.0/24 11414 -8.36.121.0/24 3356 -8.36.122.0/23 3356 -8.36.124.0/24 3356 -8.36.125.0/24 22680 -8.36.126.0/24 3356 -8.36.127.0/24 397440 -8.36.128.0/19 3356 -8.36.160.0/23 3356 -8.36.162.0/24 27381 -8.36.163.0/24 3356 -8.36.164.0/22 3356 -8.36.168.0/21 3356 -8.36.176.0/20 3356 -8.36.192.0/20 3356 -8.36.208.0/21 3356 -8.36.216.0/23 13335 -8.36.218.0/24 13335 -8.36.219.0/24 3356 -8.36.220.0/24 13335 -8.36.221.0/24 3356 -8.36.222.0/23 3356 -8.36.224.0/23 3356 -8.36.226.0/23 393552 -8.36.228.0/23 11213 -8.36.230.0/23 19256 -8.36.232.0/23 3356 -8.36.234.0/24 20381 -8.36.235.0/24 3356 -8.36.236.0/24 46601 -8.36.237.0/24 3356 -8.36.238.0/23 3356 -8.36.240.0/20 14155 -8.37.0.0/22 31890 -8.37.4.0/23 3356 -8.37.6.0/24 3356 -8.37.7.0/24 20070 -8.37.8.0/22 3356 -8.37.12.0/23 3356 -8.37.14.0/23 54225 -8.37.16.0/21 3356 -8.37.24.0/22 3356 -8.37.28.0/23 3356 -8.37.30.0/24 3356 -8.37.31.0/24 393330 -8.37.32.0/23 3356 -8.37.34.0/24 3356 -8.37.35.0/24 35963 -8.37.36.0/24 22210 -8.37.37.0/24 396506 -8.37.38.0/24 3356 -8.37.39.0/24 22065 -8.37.40.0/24 3356 -8.37.41.0/24 13335 -8.37.42.0/24 3356 -8.37.43.0/24 13335 -8.37.44.0/22 3356 -8.37.48.0/21 3685 -8.37.56.0/24 14239 -8.37.57.0/24 3356 -8.37.58.0/23 3356 -8.37.60.0/22 3356 -8.37.64.0/22 3356 -8.37.68.0/23 3356 -8.37.70.0/23 18837 -8.37.72.0/24 3356 -8.37.73.0/24 20070 -8.37.74.0/24 3356 -8.37.75.0/24 20070 -8.37.76.0/22 3356 -8.37.80.0/22 3356 -8.37.84.0/23 3356 -8.37.86.0/24 3356 -8.37.87.0/24 53845 -8.37.88.0/22 3356 -8.37.92.0/24 19768 -8.37.93.0/24 62783 -8.37.94.0/23 3356 -8.37.96.0/20 16491 -8.37.112.0/24 33313 -8.37.113.0/24 54761 -8.37.114.0/23 3356 -8.37.116.0/24 3356 -8.37.117.0/24 394861 -8.37.118.0/23 3356 -8.37.120.0/23 3356 -8.37.122.0/24 3356 -8.37.123.0/24 33313 -8.37.124.0/22 3356 -8.37.128.0/20 3356 -8.37.144.0/21 3356 -8.37.152.0/23 3356 -8.37.154.0/24 11414 -8.37.155.0/24 3356 -8.37.156.0/22 3356 -8.37.160.0/22 3356 -8.37.164.0/24 27306 -8.37.165.0/24 19687 -8.37.166.0/23 3356 -8.37.168.0/21 3356 -8.37.176.0/23 3356 -8.37.178.0/23 63111 -8.37.180.0/24 3356 -8.37.181.0/24 393728 -8.37.182.0/23 3356 -8.37.184.0/24 16779 -8.37.185.0/24 3356 -8.37.186.0/24 53345 -8.37.187.0/24 3356 -8.37.188.0/23 3356 -8.37.190.0/24 10753 -8.37.191.0/24 3356 -8.37.192.0/24 54948 -8.37.193.0/24 3356 -8.37.194.0/23 3356 -8.37.196.0/22 3356 -8.37.200.0/23 3356 -8.37.202.0/24 3356 -8.37.203.0/24 54948 -8.37.204.0/22 3356 -8.37.208.0/21 3356 -8.37.216.0/22 3356 -8.37.220.0/24 3356 -8.37.221.0/24 26102 -8.37.222.0/23 3356 -8.37.224.0/24 54994 -8.37.225.0/24 3356 -8.37.226.0/23 3356 -8.37.228.0/23 3356 -8.37.230.0/23 54994 -8.37.232.0/21 54994 -8.37.240.0/20 3356 -8.38.0.0/22 3356 -8.38.4.0/24 3356 -8.38.5.0/24 23178 -8.38.6.0/23 3356 -8.38.8.0/21 3356 -8.38.16.0/20 3356 -8.38.32.0/24 3356 -8.38.33.0/24 16504 -8.38.34.0/24 3356 -8.38.35.0/24 398080 -8.38.36.0/23 3356 -8.38.38.0/24 11414 -8.38.39.0/24 31789 -8.38.40.0/24 3356 -8.38.41.0/24 53845 -8.38.42.0/23 40807 -8.38.44.0/23 3356 -8.38.46.0/24 3356 -8.38.47.0/24 396530 -8.38.48.0/20 3356 -8.38.64.0/21 3356 -8.38.72.0/24 12144 -8.38.73.0/24 46639 -8.38.74.0/23 3356 -8.38.76.0/22 13886 -8.38.80.0/23 3356 -8.38.82.0/23 54983 -8.38.84.0/24 395726 -8.38.85.0/24 3356 -8.38.86.0/23 3356 -8.38.88.0/23 13886 -8.38.90.0/24 3356 -8.38.91.0/24 53436 -8.38.92.0/24 3356 -8.38.93.0/24 393362 -8.38.94.0/23 3356 -8.38.96.0/23 3356 -8.38.98.0/24 393579 -8.38.99.0/24 3356 -8.38.100.0/22 3356 -8.38.104.0/21 3356 -8.38.112.0/23 3356 -8.38.114.0/24 3356 -8.38.115.0/24 395195 -8.38.116.0/22 3356 -8.38.120.0/21 3356 -8.38.128.0/20 3356 -8.38.144.0/23 3356 -8.38.146.0/24 3356 -8.38.147.0/24 13335 -8.38.148.0/23 13335 -8.38.150.0/23 3356 -8.38.152.0/21 3356 -8.38.160.0/24 13454 -8.38.161.0/24 3356 -8.38.162.0/23 20003 -8.38.164.0/22 3356 -8.38.168.0/22 3356 -8.38.172.0/24 13335 -8.38.173.0/24 396003 -8.38.174.0/24 40412 -8.38.175.0/24 3356 -8.38.176.0/24 395865 -8.38.177.0/24 18756 -8.38.178.0/24 3356 -8.38.179.0/24 40026 -8.38.180.0/22 3356 -8.38.184.0/21 3356 -8.38.192.0/21 3356 -8.38.200.0/22 3356 -8.38.204.0/24 11414 -8.38.205.0/24 3356 -8.38.206.0/23 3356 -8.38.208.0/23 3356 -8.38.210.0/24 26975 -8.38.211.0/24 3356 -8.38.212.0/22 3356 -8.38.216.0/21 3356 -8.38.224.0/23 1610 -8.38.226.0/24 395658 -8.38.227.0/24 3356 -8.38.228.0/24 3356 -8.38.229.0/24 395658 -8.38.230.0/23 395658 -8.38.232.0/24 3356 -8.38.233.0/24 395658 -8.38.234.0/23 3356 -8.38.236.0/22 395658 -8.38.240.0/23 3356 -8.38.242.0/24 3356 -8.38.243.0/24 393625 -8.38.244.0/22 3356 -8.38.248.0/22 395658 -8.38.252.0/23 3356 -8.38.254.0/23 395658 -8.39.0.0/22 3356 -8.39.4.0/23 3356 -8.39.6.0/24 13335 -8.39.7.0/24 3356 -8.39.8.0/21 3356 -8.39.16.0/24 26344 -8.39.17.0/24 32468 -8.39.18.0/24 13335 -8.39.19.0/24 3356 -8.39.20.0/24 3356 -8.39.21.0/24 21720 -8.39.22.0/23 3356 -8.39.24.0/21 3356 -8.39.32.0/22 26667 -8.39.36.0/23 26667 -8.39.38.0/23 3356 -8.39.40.0/23 3356 -8.39.42.0/24 30427 -8.39.43.0/24 3356 -8.39.44.0/22 3356 -8.39.48.0/24 3356 -8.39.49.0/24 394265 -8.39.50.0/24 394562 -8.39.51.0/24 3356 -8.39.52.0/24 3356 -8.39.53.0/24 13443 -8.39.54.0/23 2639 -8.39.56.0/22 3356 -8.39.60.0/23 3356 -8.39.62.0/24 3356 -8.39.63.0/24 26114 -8.39.64.0/20 3356 -8.39.80.0/22 3356 -8.39.84.0/23 3356 -8.39.86.0/24 3356 -8.39.87.0/24 394973 -8.39.88.0/21 3356 -8.39.96.0/23 3356 -8.39.98.0/24 53966 -8.39.99.0/24 3356 -8.39.100.0/23 22928 -8.39.102.0/24 25672 -8.39.103.0/24 3356 -8.39.104.0/21 3356 -8.39.112.0/23 3356 -8.39.114.0/24 3356 -8.39.115.0/24 36234 -8.39.116.0/24 3356 -8.39.117.0/24 394170 -8.39.118.0/23 3356 -8.39.120.0/22 32278 -8.39.124.0/24 3356 -8.39.125.0/24 13335 -8.39.126.0/23 13335 -8.39.128.0/23 17043 -8.39.130.0/23 3356 -8.39.132.0/24 26344 -8.39.133.0/24 19843 -8.39.134.0/23 3356 -8.39.136.0/24 23233 -8.39.137.0/24 3356 -8.39.138.0/23 3356 -8.39.140.0/23 3356 -8.39.142.0/24 62802 -8.39.143.0/24 3356 -8.39.144.0/24 55256 -8.39.145.0/24 3356 -8.39.146.0/24 54024 -8.39.147.0/24 3356 -8.39.148.0/22 3356 -8.39.152.0/22 3356 -8.39.156.0/24 3356 -8.39.157.0/24 394562 -8.39.158.0/24 3356 -8.39.159.0/24 25871 -8.39.160.0/24 395257 -8.39.161.0/24 55155 -8.39.162.0/24 14652 -8.39.163.0/24 397174 -8.39.164.0/22 3356 -8.39.168.0/22 3356 -8.39.172.0/24 3356 -8.39.173.0/24 26114 -8.39.174.0/24 14630 -8.39.175.0/24 3356 -8.39.176.0/21 10355 -8.39.184.0/21 3356 -8.39.192.0/21 54396 -8.39.200.0/24 46864 -8.39.201.0/24 13335 -8.39.202.0/23 13335 -8.39.204.0/22 13335 -8.39.208.0/23 3356 -8.39.210.0/24 3356 -8.39.211.0/24 53719 -8.39.212.0/22 13335 -8.39.216.0/24 26344 -8.39.217.0/24 3356 -8.39.218.0/24 32256 -8.39.219.0/24 3356 -8.39.220.0/23 3356 -8.39.222.0/24 3356 -8.39.223.0/24 394756 -8.39.224.0/23 18570 -8.39.226.0/24 3356 -8.39.227.0/24 18570 -8.39.228.0/22 3356 -8.39.232.0/24 3356 -8.39.233.0/24 27471 -8.39.234.0/23 397423 -8.39.236.0/22 3356 -8.39.240.0/20 14155 -8.40.0.0/24 3356 -8.40.1.0/24 19753 -8.40.2.0/23 3356 -8.40.4.0/22 3356 -8.40.8.0/21 3356 -8.40.16.0/22 3356 -8.40.20.0/24 3356 -8.40.21.0/24 46810 -8.40.22.0/23 3356 -8.40.24.0/24 3356 -8.40.25.0/24 18849 -8.40.26.0/23 13335 -8.40.28.0/22 13335 -8.40.32.0/23 3356 -8.40.34.0/24 3356 -8.40.35.0/24 394118 -8.40.36.0/22 3356 -8.40.40.0/21 3356 -8.40.48.0/20 23118 -8.40.64.0/23 3356 -8.40.66.0/23 396238 -8.40.68.0/23 396238 -8.40.70.0/24 397274 -8.40.71.0/24 3356 -8.40.72.0/24 394729 -8.40.73.0/24 3356 -8.40.74.0/24 396958 -8.40.75.0/24 3356 -8.40.76.0/23 29841 -8.40.78.0/23 3356 -8.40.80.0/24 3356 -8.40.81.0/24 393819 -8.40.82.0/23 3356 -8.40.84.0/22 3356 -8.40.88.0/24 3356 -8.40.89.0/24 63439 -8.40.90.0/23 393819 -8.40.92.0/23 46940 -8.40.94.0/23 3356 -8.40.96.0/22 3356 -8.40.100.0/23 3356 -8.40.102.0/24 31853 -8.40.103.0/24 3356 -8.40.104.0/24 3356 -8.40.105.0/24 7014 -8.40.106.0/24 3356 -8.40.107.0/24 13335 -8.40.108.0/24 3356 -8.40.109.0/24 17903 -8.40.110.0/24 3356 -8.40.111.0/24 13335 -8.40.112.0/20 3356 -8.40.128.0/24 19614 -8.40.129.0/24 3356 -8.40.130.0/24 55234 -8.40.131.0/24 3356 -8.40.132.0/22 62738 -8.40.136.0/23 3356 -8.40.138.0/24 22084 -8.40.139.0/24 3356 -8.40.140.0/24 13335 -8.40.141.0/24 3356 -8.40.142.0/23 3356 -8.40.144.0/22 33561 -8.40.148.0/22 32798 -8.40.152.0/23 3356 -8.40.154.0/24 395630 -8.40.155.0/24 3356 -8.40.156.0/22 23486 -8.40.160.0/21 13368 -8.40.168.0/23 13368 -8.40.170.0/24 3356 -8.40.171.0/24 13368 -8.40.172.0/22 13368 -8.40.176.0/20 13368 -8.40.192.0/20 13368 -8.40.208.0/22 3356 -8.40.212.0/23 26344 -8.40.214.0/23 3356 -8.40.216.0/24 394856 -8.40.217.0/24 3356 -8.40.218.0/24 3356 -8.40.219.0/24 395258 -8.40.220.0/23 3356 -8.40.222.0/23 2639 -8.40.224.0/23 3356 -8.40.226.0/24 32072 -8.40.227.0/24 3356 -8.40.228.0/22 3356 -8.40.232.0/21 3356 -8.40.240.0/23 3356 -8.40.242.0/23 26405 -8.40.244.0/24 394785 -8.40.245.0/24 3356 -8.40.246.0/23 3356 -8.40.248.0/21 22898 -8.41.0.0/24 7384 -8.41.1.0/24 3356 -8.41.2.0/24 396300 -8.41.3.0/24 3356 -8.41.4.0/24 3356 -8.41.5.0/24 13335 -8.41.6.0/23 13335 -8.41.8.0/21 3356 -8.41.16.0/21 27425 -8.41.24.0/22 3356 -8.41.28.0/23 3356 -8.41.30.0/24 11248 -8.41.31.0/24 27195 -8.41.32.0/23 3356 -8.41.34.0/24 17209 -8.41.35.0/24 33469 -8.41.36.0/23 13335 -8.41.38.0/24 3356 -8.41.39.0/24 13335 -8.41.40.0/21 3356 -8.41.48.0/22 3356 -8.41.52.0/22 397187 -8.41.56.0/23 3356 -8.41.58.0/24 32932 -8.41.59.0/24 53845 -8.41.60.0/23 3356 -8.41.62.0/24 3356 -8.41.63.0/24 11414 -8.41.64.0/22 3356 -8.41.68.0/23 3356 -8.41.70.0/24 396854 -8.41.71.0/24 3356 -8.41.72.0/24 31922 -8.41.73.0/24 395890 -8.41.74.0/23 3356 -8.41.76.0/22 3356 -8.41.80.0/23 6352 -8.41.82.0/24 62802 -8.41.83.0/24 54174 -8.41.84.0/24 22469 -8.41.85.0/24 3356 -8.41.86.0/24 3356 -8.41.87.0/24 394133 -8.41.88.0/23 3356 -8.41.90.0/24 3356 -8.41.91.0/24 26153 -8.41.92.0/24 3356 -8.41.93.0/24 53457 -8.41.94.0/24 3356 -8.41.95.0/24 27548 -8.41.96.0/22 3356 -8.41.100.0/23 3356 -8.41.102.0/24 30262 -8.41.103.0/24 53316 -8.41.104.0/22 3356 -8.41.108.0/24 395547 -8.41.109.0/24 14253 -8.41.110.0/24 394736 -8.41.111.0/24 3356 -8.41.112.0/20 23118 -8.41.128.0/19 3356 -8.41.160.0/22 393436 -8.41.164.0/22 3356 -8.41.168.0/24 3356 -8.41.169.0/24 19536 -8.41.170.0/23 3356 -8.41.172.0/22 30174 -8.41.176.0/24 40687 -8.41.177.0/24 3356 -8.41.178.0/23 3356 -8.41.180.0/22 3356 -8.41.184.0/24 396034 -8.41.185.0/24 3356 -8.41.186.0/24 3356 -8.41.187.0/24 47016 -8.41.188.0/22 3356 -8.41.192.0/24 30372 -8.41.193.0/24 63427 -8.41.194.0/24 13615 -8.41.195.0/24 30372 -8.41.196.0/24 30372 -8.41.197.0/24 63381 -8.41.198.0/23 3356 -8.41.200.0/24 63441 -8.41.201.0/24 3356 -8.41.202.0/24 40179 -8.41.203.0/24 63427 -8.41.204.0/22 30372 -8.41.208.0/24 30244 -8.41.209.0/24 3356 -8.41.210.0/24 3356 -8.41.211.0/24 395239 -8.41.212.0/23 26074 -8.41.214.0/24 18690 -8.41.215.0/24 3356 -8.41.216.0/23 3356 -8.41.218.0/24 3356 -8.41.219.0/24 26120 -8.41.220.0/24 3356 -8.41.221.0/24 53831 -8.41.222.0/24 26120 -8.41.223.0/24 3356 -8.41.224.0/24 18837 -8.41.225.0/24 18570 -8.41.226.0/24 18837 -8.41.227.0/24 3356 -8.41.228.0/22 3356 -8.41.232.0/21 3356 -8.41.240.0/20 3356 -8.42.0.0/23 16504 -8.42.2.0/23 3356 -8.42.4.0/22 3356 -8.42.8.0/21 3356 -8.42.16.0/24 23399 -8.42.17.0/24 44521 -8.42.18.0/24 393602 -8.42.19.0/24 1782 -8.42.20.0/22 3356 -8.42.24.0/24 394024 -8.42.25.0/24 31776 -8.42.26.0/23 3356 -8.42.28.0/22 3356 -8.42.32.0/20 3356 -8.42.48.0/23 3356 -8.42.50.0/24 3356 -8.42.51.0/24 13335 -8.42.52.0/24 13335 -8.42.53.0/24 393748 -8.42.54.0/23 13335 -8.42.56.0/24 54822 -8.42.57.0/24 393986 -8.42.58.0/24 3356 -8.42.59.0/24 395273 -8.42.60.0/24 393897 -8.42.61.0/24 27207 -8.42.62.0/23 26584 -8.42.64.0/24 63168 -8.42.65.0/24 3356 -8.42.66.0/24 6481 -8.42.67.0/24 13954 -8.42.68.0/22 3356 -8.42.72.0/22 3356 -8.42.76.0/22 393552 -8.42.80.0/20 14155 -8.42.96.0/23 3356 -8.42.98.0/24 16744 -8.42.99.0/24 63474 -8.42.100.0/23 3356 -8.42.102.0/24 11414 -8.42.103.0/24 3356 -8.42.104.0/24 19224 -8.42.105.0/24 3356 -8.42.106.0/24 3356 -8.42.107.0/24 394729 -8.42.108.0/22 62941 -8.42.112.0/20 62955 -8.42.128.0/20 3356 -8.42.144.0/24 394729 -8.42.145.0/24 3356 -8.42.146.0/23 396238 -8.42.148.0/23 396238 -8.42.150.0/23 19224 -8.42.152.0/21 3356 -8.42.160.0/24 3356 -8.42.161.0/24 13335 -8.42.162.0/24 17271 -8.42.163.0/24 18872 -8.42.164.0/24 13335 -8.42.165.0/24 3356 -8.42.166.0/23 3356 -8.42.168.0/24 54025 -8.42.169.0/24 3356 -8.42.170.0/23 3356 -8.42.172.0/24 13335 -8.42.173.0/24 3356 -8.42.174.0/24 15343 -8.42.175.0/24 3356 -8.42.176.0/20 11272 -8.42.192.0/23 3356 -8.42.194.0/24 3356 -8.42.195.0/24 22542 -8.42.196.0/22 3356 -8.42.200.0/24 395070 -8.42.201.0/24 23296 -8.42.202.0/24 12278 -8.42.203.0/24 395387 -8.42.204.0/24 13617 -8.42.205.0/24 3356 -8.42.206.0/24 3356 -8.42.207.0/24 395420 -8.42.208.0/24 26975 -8.42.209.0/24 40026 -8.42.210.0/24 394526 -8.42.211.0/24 3356 -8.42.212.0/23 3356 -8.42.214.0/24 3356 -8.42.215.0/24 31849 -8.42.216.0/23 3356 -8.42.218.0/24 3356 -8.42.219.0/24 46639 -8.42.220.0/22 22898 -8.42.224.0/21 13904 -8.42.232.0/24 13904 -8.42.233.0/24 3356 -8.42.234.0/23 13904 -8.42.236.0/22 13904 -8.42.240.0/22 33616 -8.42.244.0/24 394686 -8.42.245.0/24 13335 -8.42.246.0/23 3356 -8.42.248.0/24 3356 -8.42.249.0/24 395415 -8.42.250.0/23 3356 -8.42.252.0/22 3356 -8.43.0.0/22 3356 -8.43.4.0/23 3356 -8.43.6.0/24 3356 -8.43.7.0/24 3549 -8.43.8.0/21 3356 -8.43.16.0/22 3356 -8.43.20.0/23 3356 -8.43.22.0/24 393995 -8.43.23.0/24 393687 -8.43.24.0/24 3356 -8.43.25.0/24 19724 -8.43.26.0/23 3356 -8.43.28.0/24 46485 -8.43.29.0/24 22470 -8.43.30.0/23 3356 -8.43.32.0/21 3356 -8.43.40.0/23 19021 -8.43.42.0/23 3356 -8.43.44.0/22 3356 -8.43.48.0/21 27425 -8.43.56.0/22 394117 -8.43.60.0/22 3356 -8.43.64.0/24 63283 -8.43.65.0/24 3356 -8.43.66.0/23 54948 -8.43.68.0/23 3356 -8.43.70.0/24 3356 -8.43.71.0/24 25931 -8.43.72.0/22 26667 -8.43.76.0/24 3356 -8.43.77.0/24 14652 -8.43.78.0/23 54948 -8.43.80.0/24 36154 -8.43.81.0/24 3356 -8.43.82.0/23 394729 -8.43.84.0/22 17314 -8.43.88.0/23 3356 -8.43.90.0/24 21636 -8.43.91.0/24 3356 -8.43.92.0/24 3356 -8.43.93.0/24 12185 -8.43.94.0/23 3356 -8.43.96.0/20 3356 -8.43.112.0/24 46411 -8.43.113.0/24 40806 -8.43.114.0/24 3356 -8.43.115.0/24 26782 -8.43.116.0/22 3356 -8.43.120.0/24 3356 -8.43.121.0/24 13335 -8.43.122.0/23 13335 -8.43.124.0/22 3356 -8.43.128.0/19 3356 -8.43.160.0/20 3356 -8.43.176.0/22 46746 -8.43.180.0/22 3356 -8.43.184.0/21 3356 -8.43.192.0/19 3356 -8.43.224.0/23 13335 -8.43.226.0/24 13335 -8.43.227.0/24 3356 -8.43.228.0/22 3356 -8.43.232.0/21 3356 -8.43.240.0/20 3356 -8.44.0.0/22 13335 -8.44.4.0/24 62614 -8.44.5.0/24 63264 -8.44.6.0/24 13335 -8.44.7.0/24 3356 -8.44.8.0/21 3356 -8.44.16.0/20 3356 -8.44.32.0/21 3356 -8.44.40.0/23 3356 -8.44.42.0/24 4989 -8.44.43.0/24 3356 -8.44.44.0/22 3356 -8.44.48.0/23 3356 -8.44.50.0/24 3356 -8.44.51.0/24 11414 -8.44.52.0/22 11414 -8.44.56.0/24 3356 -8.44.57.0/24 30069 -8.44.58.0/23 13335 -8.44.60.0/22 13335 -8.44.64.0/20 3356 -8.44.80.0/22 202 -8.44.84.0/22 3356 -8.44.88.0/21 3356 -8.44.96.0/19 3356 -8.44.128.0/21 30174 -8.44.136.0/24 394663 -8.44.137.0/24 395230 -8.44.138.0/24 3356 -8.44.139.0/24 26959 -8.44.140.0/24 32932 -8.44.141.0/24 395218 -8.44.142.0/23 3356 -8.44.144.0/20 393552 -8.44.160.0/23 3356 -8.44.162.0/24 394928 -8.44.163.0/24 3356 -8.44.164.0/23 3356 -8.44.166.0/24 394950 -8.44.167.0/24 33613 -8.44.168.0/21 3356 -8.44.176.0/24 63388 -8.44.177.0/24 40276 -8.44.178.0/23 3356 -8.44.180.0/24 3356 -8.44.181.0/24 4989 -8.44.182.0/24 395762 -8.44.183.0/24 11726 -8.44.184.0/21 3356 -8.44.192.0/22 393819 -8.44.196.0/23 3356 -8.44.198.0/23 54739 -8.44.200.0/24 25611 -8.44.201.0/24 3356 -8.44.202.0/24 3356 -8.44.203.0/24 203107 -8.44.204.0/23 3356 -8.44.206.0/24 13464 -8.44.207.0/24 3356 -8.44.208.0/24 46766 -8.44.209.0/24 3356 -8.44.210.0/23 3356 -8.44.212.0/24 3356 -8.44.213.0/24 396146 -8.44.214.0/24 40276 -8.44.215.0/24 40026 -8.44.216.0/21 26375 -8.44.224.0/23 3356 -8.44.226.0/24 3356 -8.44.227.0/24 22469 -8.44.228.0/22 3356 -8.44.232.0/24 20387 -8.44.233.0/24 22266 -8.44.234.0/23 3356 -8.44.236.0/24 394301 -8.44.237.0/24 3356 -8.44.238.0/23 3356 -8.44.240.0/20 3356 -8.45.0.0/20 17639 -8.45.16.0/23 394730 -8.45.18.0/24 3356 -8.45.19.0/24 55253 -8.45.20.0/22 3356 -8.45.24.0/23 3356 -8.45.26.0/24 3356 -8.45.27.0/24 55253 -8.45.28.0/22 3356 -8.45.32.0/21 3356 -8.45.40.0/24 3356 -8.45.41.0/24 13335 -8.45.42.0/23 13335 -8.45.44.0/22 13335 -8.45.48.0/20 3356 -8.45.64.0/20 62955 -8.45.80.0/20 3356 -8.45.96.0/24 3356 -8.45.97.0/24 13335 -8.45.98.0/23 26114 -8.45.100.0/23 13335 -8.45.102.0/24 13335 -8.45.103.0/24 3356 -8.45.104.0/23 40526 -8.45.106.0/24 3356 -8.45.107.0/24 40526 -8.45.108.0/24 13335 -8.45.109.0/24 3356 -8.45.110.0/24 3356 -8.45.111.0/24 13335 -8.45.112.0/22 3356 -8.45.116.0/23 3356 -8.45.118.0/24 3356 -8.45.119.0/24 395753 -8.45.120.0/23 397938 -8.45.122.0/24 397938 -8.45.123.0/24 3356 -8.45.124.0/24 394161 -8.45.125.0/24 3356 -8.45.126.0/23 3356 -8.45.128.0/23 30453 -8.45.130.0/24 12022 -8.45.131.0/24 3356 -8.45.132.0/24 27207 -8.45.133.0/24 395056 -8.45.134.0/24 18539 -8.45.135.0/24 3356 -8.45.136.0/22 3356 -8.45.140.0/23 3356 -8.45.142.0/24 393339 -8.45.143.0/24 3356 -8.45.144.0/22 13335 -8.45.148.0/24 3356 -8.45.149.0/24 395623 -8.45.150.0/24 3356 -8.45.151.0/24 13335 -8.45.152.0/21 3356 -8.45.160.0/24 394000 -8.45.161.0/24 3356 -8.45.162.0/24 395343 -8.45.163.0/24 395290 -8.45.164.0/24 16653 -8.45.165.0/24 3356 -8.45.166.0/23 22707 -8.45.168.0/21 3356 -8.45.176.0/20 3356 -8.45.192.0/18 3356 -8.46.0.0/19 3356 -8.46.32.0/22 3356 -8.46.36.0/23 3356 -8.46.38.0/23 54948 -8.46.40.0/24 40000 -8.46.41.0/24 395528 -8.46.42.0/24 40000 -8.46.43.0/24 3356 -8.46.44.0/24 396044 -8.46.45.0/24 3356 -8.46.46.0/23 3356 -8.46.48.0/20 3356 -8.46.64.0/21 53407 -8.46.72.0/21 11167 -8.46.80.0/24 3356 -8.46.81.0/24 32263 -8.46.82.0/23 3356 -8.46.84.0/22 3356 -8.46.88.0/21 393552 -8.46.96.0/20 3356 -8.46.112.0/24 62713 -8.46.113.0/24 13335 -8.46.114.0/23 13335 -8.46.116.0/22 13335 -8.46.120.0/21 3356 -8.46.128.0/23 396268 -8.46.130.0/23 3356 -8.46.132.0/22 3356 -8.46.136.0/21 3356 -8.46.144.0/20 3356 -8.46.160.0/19 3356 -8.46.192.0/21 3356 -8.46.200.0/21 26375 -8.46.208.0/20 3356 -8.46.224.0/19 3356 -8.47.0.0/23 3356 -8.47.2.0/24 46282 -8.47.3.0/24 63283 -8.47.4.0/22 3356 -8.47.8.0/24 22065 -8.47.9.0/24 13335 -8.47.10.0/24 397849 -8.47.11.0/24 3356 -8.47.12.0/22 13335 -8.47.16.0/23 3356 -8.47.18.0/23 395662 -8.47.20.0/24 21646 -8.47.21.0/24 14385 -8.47.22.0/24 3356 -8.47.23.0/24 397699 -8.47.24.0/21 3356 -8.47.32.0/23 3356 -8.47.34.0/24 395463 -8.47.35.0/24 22709 -8.47.36.0/24 11414 -8.47.37.0/24 396300 -8.47.38.0/24 3356 -8.47.39.0/24 46864 -8.47.40.0/24 46203 -8.47.41.0/24 3356 -8.47.42.0/23 3356 -8.47.44.0/24 3356 -8.47.45.0/24 33222 -8.47.46.0/23 3356 -8.47.48.0/20 3356 -8.47.64.0/23 3356 -8.47.66.0/24 3356 -8.47.67.0/24 11414 -8.47.68.0/24 11414 -8.47.69.0/24 13335 -8.47.70.0/24 17330 -8.47.71.0/24 13335 -8.47.72.0/24 63141 -8.47.73.0/24 3356 -8.47.74.0/24 11414 -8.47.75.0/24 3356 -8.47.76.0/23 3356 -8.47.78.0/24 3356 -8.47.79.0/24 396474 -8.47.80.0/24 3356 -8.47.81.0/24 36806 -8.47.82.0/23 3356 -8.47.84.0/22 3356 -8.47.88.0/21 3356 -8.47.96.0/21 3356 -8.47.104.0/21 209 -8.47.112.0/20 3356 -8.47.128.0/18 3356 -8.47.192.0/20 209 -8.47.208.0/21 3356 -8.47.216.0/21 209 -8.47.224.0/19 3356 -8.48.0.0/19 3356 -8.48.32.0/20 394314 -8.48.48.0/20 3356 -8.48.64.0/22 3356 -8.48.68.0/23 3356 -8.48.70.0/24 3356 -8.48.71.0/24 11167 -8.48.72.0/21 3356 -8.48.80.0/20 3356 -8.48.96.0/20 3356 -8.48.112.0/22 27425 -8.48.116.0/22 3356 -8.48.120.0/21 3356 -8.48.128.0/24 11273 -8.48.129.0/24 3356 -8.48.130.0/24 13335 -8.48.131.0/24 395747 -8.48.132.0/23 13335 -8.48.134.0/24 13335 -8.48.135.0/24 3356 -8.48.136.0/21 3356 -8.48.144.0/20 3356 -8.48.160.0/19 3356 -8.48.192.0/18 3356 -8.49.0.0/16 3356 -8.50.0.0/15 3356 -8.52.0.0/14 3356 -8.56.0.0/13 3356 -8.64.0.0/10 3356 -8.128.0.0/22 37963 -8.132.0.0/14 37963 -8.192.0.0/24 3356 -8.192.1.0/24 4354 -8.192.2.0/23 3356 -8.192.4.0/22 3356 -8.192.8.0/21 3356 -8.192.16.0/21 3356 -8.192.24.0/22 3356 -8.192.28.0/24 40410 -8.192.29.0/24 3356 -8.192.30.0/23 3356 -8.192.32.0/21 3356 -8.192.40.0/24 32949 -8.192.41.0/24 3356 -8.192.42.0/23 3356 -8.192.44.0/22 3356 -8.192.48.0/20 3356 -8.192.64.0/18 3356 -8.192.128.0/20 3356 -8.192.144.0/21 3356 -8.192.152.0/22 3356 -8.192.156.0/24 16574 -8.192.157.0/24 3356 -8.192.158.0/24 16574 -8.192.159.0/24 3356 -8.192.160.0/24 4354 -8.192.161.0/24 3356 -8.192.162.0/23 3356 -8.192.164.0/22 3356 -8.192.168.0/22 3356 -8.192.172.0/23 3729 -8.192.174.0/23 3356 -8.192.176.0/20 3356 -8.192.192.0/18 3356 -8.193.0.0/22 3356 -8.193.4.0/23 29946 -8.193.6.0/23 3356 -8.193.8.0/21 3356 -8.193.16.0/20 3356 -8.193.32.0/19 3356 -8.193.64.0/18 3356 -8.193.128.0/17 3356 -8.194.0.0/15 3356 -8.196.0.0/14 3356 -8.200.0.0/13 3356 -8.208.0.0/16 45102 -8.209.0.0/19 45102 -8.209.32.0/22 45102 -8.209.64.0/18 45102 -8.224.0.0/22 3356 -8.224.4.0/24 10753 -8.224.5.0/24 14785 -8.224.6.0/24 3356 -8.224.7.0/24 10753 -8.224.8.0/24 3356 -8.224.9.0/24 10753 -8.224.10.0/24 40917 -8.224.11.0/24 36746 -8.224.12.0/22 3356 -8.224.16.0/20 3356 -8.224.32.0/23 12220 -8.224.34.0/24 12220 -8.224.35.0/24 3356 -8.224.36.0/22 3356 -8.224.40.0/21 3356 -8.224.48.0/24 3356 -8.224.49.0/24 32696 -8.224.50.0/23 3356 -8.224.52.0/22 3356 -8.224.56.0/21 3356 -8.224.64.0/19 3356 -8.224.96.0/23 3356 -8.224.98.0/24 3356 -8.224.99.0/24 26647 -8.224.100.0/22 3356 -8.224.104.0/21 3356 -8.224.112.0/20 3356 -8.224.128.0/19 3356 -8.224.160.0/20 3356 -8.224.176.0/23 3356 -8.224.178.0/24 53416 -8.224.179.0/24 19951 -8.224.180.0/22 3356 -8.224.184.0/21 3356 -8.224.192.0/18 3356 -8.225.0.0/17 3356 -8.225.128.0/19 3356 -8.225.160.0/24 3356 -8.225.161.0/24 36162 -8.225.162.0/23 3356 -8.225.164.0/22 3356 -8.225.168.0/21 3356 -8.225.176.0/24 3356 -8.225.177.0/24 26169 -8.225.178.0/23 3356 -8.225.180.0/22 3356 -8.225.184.0/23 3356 -8.225.186.0/23 46404 -8.225.188.0/22 3356 -8.225.192.0/24 3356 -8.225.193.0/24 30372 -8.225.194.0/24 30372 -8.225.195.0/24 53694 -8.225.196.0/22 3356 -8.225.200.0/23 3356 -8.225.202.0/24 3356 -8.225.203.0/24 46404 -8.225.204.0/22 3356 -8.225.208.0/21 3356 -8.225.216.0/22 3356 -8.225.220.0/23 3356 -8.225.222.0/24 23347 -8.225.223.0/24 3356 -8.225.224.0/19 3356 -8.226.0.0/15 3356 -8.228.0.0/14 3356 -8.232.0.0/13 3356 -8.240.0.0/16 3356 -8.241.0.0/19 3356 -8.241.32.0/20 3356 -8.241.48.0/21 3356 -8.241.56.0/22 202818 -8.241.60.0/23 202818 -8.241.62.0/23 3356 -8.241.64.0/22 3356 -8.241.68.0/22 202818 -8.241.72.0/21 3356 -8.241.80.0/22 3356 -8.241.84.0/22 202818 -8.241.88.0/21 3356 -8.241.96.0/19 3356 -8.241.128.0/17 3356 -8.242.0.0/17 3356 -8.242.128.0/18 3356 -8.242.192.0/19 3549 -8.242.224.0/20 3549 -8.242.240.0/22 3549 -8.242.244.0/22 3356 -8.242.248.0/21 3356 -8.243.0.0/16 3356 -8.244.0.0/24 3356 -8.244.1.0/24 63168 -8.244.2.0/23 3356 -8.244.4.0/22 3356 -8.244.8.0/21 3356 -8.244.16.0/20 3356 -8.244.32.0/19 3356 -8.244.64.0/18 3356 -8.244.128.0/17 3356 -8.245.0.0/16 3356 -8.246.0.0/18 3356 -8.246.64.0/23 202818 -8.246.66.0/23 3356 -8.246.68.0/22 3356 -8.246.72.0/21 3356 -8.246.80.0/23 202818 -8.246.82.0/23 3356 -8.246.84.0/22 3356 -8.246.88.0/23 202818 -8.246.90.0/23 3356 -8.246.92.0/22 3356 -8.246.96.0/19 3356 -8.246.128.0/17 3356 -8.247.0.0/17 3356 -8.247.128.0/18 3356 -8.247.192.0/22 202818 -8.247.196.0/22 3356 -8.247.200.0/21 3356 -8.247.208.0/20 3356 -8.247.224.0/21 3356 -8.247.232.0/22 3356 -8.247.236.0/22 202818 -8.247.240.0/22 202818 -8.247.244.0/22 10753 -8.247.248.0/22 10753 -8.247.252.0/22 3356 -8.248.0.0/14 3356 -8.252.0.0/16 3356 -8.253.0.0/18 3356 -8.253.64.0/21 3356 -8.253.72.0/22 3356 -8.253.76.0/24 3356 -8.253.77.0/24 202818 -8.253.78.0/23 3356 -8.253.80.0/20 3356 -8.253.96.0/19 3356 -8.253.128.0/19 3356 -8.253.160.0/21 3356 -8.253.168.0/24 3356 -8.253.169.0/24 202818 -8.253.170.0/24 202818 -8.253.171.0/24 3356 -8.253.172.0/22 3356 -8.253.176.0/21 3356 -8.253.184.0/23 3356 -8.253.186.0/23 202818 -8.253.188.0/22 3356 -8.253.192.0/18 3356 -8.254.0.0/15 3356 -9.9.9.0/24 19281 -11.100.1.0/24 64027 -12.0.0.0/19 7018 -12.0.32.0/21 7018 -12.0.40.0/23 7018 -12.0.42.0/24 7018 -12.0.43.0/24 2386 -12.0.44.0/22 7018 -12.0.48.0/20 1742 -12.0.64.0/19 7018 -12.0.96.0/20 7018 -12.0.112.0/21 7018 -12.0.120.0/24 53840 -12.0.121.0/24 7018 -12.0.122.0/23 7018 -12.0.124.0/23 7018 -12.0.126.0/23 14203 -12.0.128.0/18 7018 -12.0.192.0/19 7018 -12.0.224.0/21 2386 -12.0.232.0/21 7018 -12.0.240.0/20 7018 -12.1.0.0/19 7018 -12.1.32.0/20 7018 -12.1.48.0/23 33354 -12.1.50.0/24 33354 -12.1.51.0/24 7018 -12.1.52.0/23 7018 -12.1.54.0/24 23170 -12.1.55.0/24 7018 -12.1.56.0/23 7018 -12.1.58.0/23 17361 -12.1.60.0/22 7018 -12.1.64.0/20 7018 -12.1.80.0/21 7018 -12.1.88.0/24 30659 -12.1.89.0/24 7018 -12.1.90.0/23 7018 -12.1.92.0/22 7018 -12.1.96.0/24 23306 -12.1.97.0/24 7018 -12.1.98.0/23 7018 -12.1.100.0/22 7018 -12.1.104.0/23 7018 -12.1.106.0/24 7018 -12.1.107.0/24 2386 -12.1.108.0/22 7018 -12.1.112.0/20 7018 -12.1.128.0/18 7018 -12.1.192.0/20 7018 -12.1.208.0/21 7018 -12.1.216.0/23 7018 -12.1.218.0/24 7018 -12.1.219.0/24 2386 -12.1.220.0/22 7018 -12.1.224.0/19 7018 -12.2.0.0/21 7018 -12.2.8.0/22 7018 -12.2.12.0/23 7018 -12.2.14.0/24 7018 -12.2.15.0/24 1642 -12.2.16.0/22 7018 -12.2.20.0/23 7018 -12.2.22.0/24 13938 -12.2.23.0/24 7018 -12.2.24.0/21 7018 -12.2.32.0/23 7018 -12.2.34.0/24 7018 -12.2.35.0/24 21822 -12.2.36.0/22 7018 -12.2.40.0/21 7018 -12.2.48.0/20 7018 -12.2.64.0/18 7018 -12.2.128.0/21 7018 -12.2.136.0/22 7018 -12.2.140.0/23 7018 -12.2.142.0/24 14381 -12.2.143.0/24 7018 -12.2.144.0/20 7018 -12.2.160.0/21 7018 -12.2.168.0/24 7018 -12.2.169.0/24 11806 -12.2.170.0/23 7018 -12.2.172.0/22 7018 -12.2.176.0/24 32319 -12.2.177.0/24 7018 -12.2.178.0/23 7018 -12.2.180.0/22 7018 -12.2.184.0/21 7018 -12.2.192.0/18 7018 -12.3.0.0/19 7018 -12.3.32.0/24 2386 -12.3.33.0/24 17033 -12.3.34.0/23 7018 -12.3.36.0/22 7018 -12.3.40.0/24 2386 -12.3.41.0/24 7018 -12.3.42.0/23 7018 -12.3.44.0/22 7018 -12.3.48.0/20 7018 -12.3.64.0/22 7018 -12.3.68.0/23 7018 -12.3.70.0/24 4546 -12.3.71.0/24 7018 -12.3.72.0/21 7018 -12.3.80.0/22 10998 -12.3.84.0/22 7018 -12.3.88.0/21 7018 -12.3.96.0/19 7018 -12.3.128.0/20 7018 -12.3.144.0/23 7018 -12.3.146.0/24 7018 -12.3.147.0/24 26454 -12.3.148.0/22 7018 -12.3.152.0/21 7018 -12.3.160.0/22 7018 -12.3.164.0/23 7018 -12.3.166.0/24 7018 -12.3.167.0/24 2386 -12.3.168.0/21 7018 -12.3.176.0/21 7018 -12.3.184.0/22 7018 -12.3.188.0/24 32498 -12.3.189.0/24 7018 -12.3.190.0/23 7018 -12.3.192.0/20 7018 -12.3.208.0/22 7018 -12.3.212.0/23 4985 -12.3.214.0/23 7018 -12.3.216.0/22 7018 -12.3.220.0/23 7018 -12.3.222.0/24 7018 -12.3.223.0/24 10721 -12.3.224.0/19 7018 -12.4.0.0/20 7018 -12.4.16.0/21 7018 -12.4.24.0/23 7018 -12.4.26.0/23 2386 -12.4.28.0/22 7018 -12.4.32.0/19 7018 -12.4.64.0/24 2386 -12.4.65.0/24 7018 -12.4.66.0/23 7018 -12.4.68.0/22 7018 -12.4.72.0/21 7018 -12.4.80.0/20 7018 -12.4.96.0/19 7018 -12.4.128.0/18 7018 -12.4.192.0/20 7018 -12.4.208.0/22 7018 -12.4.212.0/23 7018 -12.4.214.0/24 7018 -12.4.215.0/24 54959 -12.4.216.0/22 7018 -12.4.220.0/24 7018 -12.4.221.0/24 2386 -12.4.222.0/23 7018 -12.4.224.0/24 7018 -12.4.225.0/24 16948 -12.4.226.0/23 7018 -12.4.228.0/22 7018 -12.4.232.0/21 7018 -12.4.240.0/20 7018 -12.5.0.0/18 7018 -12.5.64.0/23 7018 -12.5.66.0/24 7018 -12.5.67.0/24 16477 -12.5.68.0/22 7018 -12.5.72.0/21 7018 -12.5.80.0/20 7018 -12.5.96.0/19 7018 -12.5.128.0/19 7018 -12.5.160.0/24 7018 -12.5.161.0/24 21569 -12.5.162.0/24 32672 -12.5.163.0/24 32368 -12.5.164.0/22 7018 -12.5.168.0/21 7018 -12.5.176.0/21 7018 -12.5.184.0/23 7018 -12.5.186.0/23 109 -12.5.188.0/22 7018 -12.5.192.0/21 7018 -12.5.200.0/24 7018 -12.5.201.0/24 395439 -12.5.202.0/23 7018 -12.5.204.0/22 7018 -12.5.208.0/20 7018 -12.5.224.0/20 7018 -12.5.240.0/22 7018 -12.5.244.0/24 7018 -12.5.245.0/24 2386 -12.5.246.0/23 7018 -12.5.248.0/21 7018 -12.6.0.0/21 7018 -12.6.8.0/24 7018 -12.6.9.0/24 18434 -12.6.10.0/23 7018 -12.6.12.0/22 7018 -12.6.16.0/22 7018 -12.6.20.0/24 7018 -12.6.21.0/24 30082 -12.6.22.0/23 7018 -12.6.24.0/21 7018 -12.6.32.0/19 7018 -12.6.64.0/18 7018 -12.6.128.0/21 7018 -12.6.136.0/24 2386 -12.6.137.0/24 7018 -12.6.138.0/23 7018 -12.6.140.0/22 7018 -12.6.144.0/22 7018 -12.6.148.0/23 25688 -12.6.150.0/23 7018 -12.6.152.0/21 7018 -12.6.160.0/20 7018 -12.6.176.0/23 7018 -12.6.178.0/24 22880 -12.6.179.0/24 7018 -12.6.180.0/22 7018 -12.6.184.0/21 7018 -12.6.192.0/22 7018 -12.6.196.0/23 7018 -12.6.198.0/24 14376 -12.6.199.0/24 7018 -12.6.200.0/21 7018 -12.6.208.0/20 1742 -12.6.224.0/21 7018 -12.6.232.0/22 7018 -12.6.236.0/23 7018 -12.6.238.0/24 7018 -12.6.239.0/24 23355 -12.6.240.0/20 7018 -12.7.0.0/20 7018 -12.7.16.0/21 7018 -12.7.24.0/22 7018 -12.7.28.0/23 7018 -12.7.30.0/24 7018 -12.7.31.0/24 394549 -12.7.32.0/19 7018 -12.7.64.0/19 7018 -12.7.96.0/21 7018 -12.7.104.0/22 7018 -12.7.108.0/24 7018 -12.7.109.0/24 393489 -12.7.110.0/23 7018 -12.7.112.0/20 7018 -12.7.128.0/21 7018 -12.7.136.0/23 7018 -12.7.138.0/24 63462 -12.7.139.0/24 7018 -12.7.140.0/22 7018 -12.7.144.0/20 7018 -12.7.160.0/24 20429 -12.7.161.0/24 7018 -12.7.162.0/23 7018 -12.7.164.0/22 7018 -12.7.168.0/21 7018 -12.7.176.0/20 7018 -12.7.192.0/23 30115 -12.7.194.0/23 7018 -12.7.196.0/22 7018 -12.7.200.0/24 12257 -12.7.201.0/24 7018 -12.7.202.0/23 7018 -12.7.204.0/22 7018 -12.7.208.0/20 7018 -12.7.224.0/23 7018 -12.7.226.0/24 20451 -12.7.227.0/24 7018 -12.7.228.0/22 7018 -12.7.232.0/21 7018 -12.7.240.0/20 7018 -12.8.0.0/22 7018 -12.8.4.0/22 394711 -12.8.8.0/21 7018 -12.8.16.0/20 7018 -12.8.32.0/19 7018 -12.8.64.0/18 7018 -12.8.128.0/19 7018 -12.8.160.0/20 7018 -12.8.176.0/22 7018 -12.8.180.0/24 7018 -12.8.181.0/24 396403 -12.8.182.0/23 7018 -12.8.184.0/22 7018 -12.8.188.0/24 30598 -12.8.189.0/24 7018 -12.8.190.0/23 7018 -12.8.192.0/19 7018 -12.8.224.0/20 7018 -12.8.240.0/21 7018 -12.8.248.0/22 7018 -12.8.252.0/24 7018 -12.8.253.0/24 398026 -12.8.254.0/23 7018 -12.9.0.0/20 7018 -12.9.16.0/21 7018 -12.9.24.0/22 7018 -12.9.28.0/24 7018 -12.9.29.0/24 33161 -12.9.30.0/23 7018 -12.9.32.0/19 7018 -12.9.64.0/21 7018 -12.9.72.0/22 7018 -12.9.76.0/24 7018 -12.9.77.0/24 17081 -12.9.78.0/24 7018 -12.9.79.0/24 394711 -12.9.80.0/20 7018 -12.9.96.0/20 7018 -12.9.112.0/22 7018 -12.9.116.0/23 7018 -12.9.118.0/24 30364 -12.9.119.0/24 7018 -12.9.120.0/22 7018 -12.9.124.0/24 35976 -12.9.125.0/24 7018 -12.9.126.0/23 7018 -12.9.128.0/21 7018 -12.9.136.0/22 14990 -12.9.140.0/22 7018 -12.9.144.0/22 7018 -12.9.148.0/24 7018 -12.9.149.0/24 17032 -12.9.150.0/23 7018 -12.9.152.0/21 7018 -12.9.160.0/19 7018 -12.9.192.0/20 7018 -12.9.208.0/24 7018 -12.9.209.0/24 395929 -12.9.210.0/23 2386 -12.9.212.0/22 7018 -12.9.216.0/21 7018 -12.9.224.0/21 7018 -12.9.232.0/23 7018 -12.9.234.0/24 7018 -12.9.235.0/24 54043 -12.9.236.0/23 7018 -12.9.238.0/23 7914 -12.9.240.0/21 7018 -12.9.248.0/22 7018 -12.9.252.0/23 7018 -12.9.254.0/24 23544 -12.9.255.0/24 7018 -12.10.0.0/19 7018 -12.10.32.0/23 26380 -12.10.34.0/23 7018 -12.10.36.0/22 7018 -12.10.40.0/21 7018 -12.10.48.0/20 7018 -12.10.64.0/23 7018 -12.10.66.0/24 395422 -12.10.67.0/24 7018 -12.10.68.0/22 7018 -12.10.72.0/21 7018 -12.10.80.0/22 7018 -12.10.84.0/23 7018 -12.10.86.0/24 7018 -12.10.87.0/24 22763 -12.10.88.0/21 7018 -12.10.96.0/21 7018 -12.10.104.0/23 7018 -12.10.106.0/24 7018 -12.10.107.0/24 40230 -12.10.108.0/22 7018 -12.10.112.0/23 7018 -12.10.114.0/24 7018 -12.10.115.0/24 2386 -12.10.116.0/22 7018 -12.10.120.0/21 7018 -12.10.128.0/22 7018 -12.10.132.0/23 393546 -12.10.134.0/23 7018 -12.10.136.0/21 7018 -12.10.144.0/20 7018 -12.10.160.0/24 7018 -12.10.161.0/24 18771 -12.10.162.0/23 7018 -12.10.164.0/22 7018 -12.10.168.0/21 7018 -12.10.176.0/20 7018 -12.10.192.0/20 7018 -12.10.208.0/21 7018 -12.10.216.0/23 7018 -12.10.218.0/24 7018 -12.10.219.0/24 6307 -12.10.220.0/22 7018 -12.10.224.0/19 7018 -12.11.0.0/19 7018 -12.11.32.0/21 7018 -12.11.40.0/22 7018 -12.11.44.0/23 396116 -12.11.46.0/23 7018 -12.11.48.0/20 7018 -12.11.64.0/19 7018 -12.11.96.0/20 7018 -12.11.112.0/23 7018 -12.11.114.0/24 7018 -12.11.115.0/24 393300 -12.11.116.0/22 7018 -12.11.120.0/21 7018 -12.11.128.0/20 7018 -12.11.144.0/22 7018 -12.11.148.0/22 14267 -12.11.152.0/21 7018 -12.11.160.0/21 7018 -12.11.168.0/23 7018 -12.11.170.0/24 7018 -12.11.171.0/24 32130 -12.11.172.0/22 7018 -12.11.176.0/20 7018 -12.11.192.0/20 7018 -12.11.208.0/22 7018 -12.11.212.0/23 7018 -12.11.214.0/24 7018 -12.11.215.0/24 393702 -12.11.216.0/21 7018 -12.11.224.0/19 7018 -12.12.0.0/19 32328 -12.12.32.0/20 32328 -12.12.48.0/20 7018 -12.12.64.0/18 32328 -12.12.128.0/20 7018 -12.12.144.0/21 7018 -12.12.152.0/22 7018 -12.12.156.0/24 7018 -12.12.157.0/24 53840 -12.12.158.0/23 7018 -12.12.160.0/19 7018 -12.12.192.0/18 7018 -12.13.0.0/19 7018 -12.13.32.0/21 7018 -12.13.40.0/21 32869 -12.13.48.0/23 7018 -12.13.50.0/24 19307 -12.13.51.0/24 7018 -12.13.52.0/23 7018 -12.13.54.0/23 2386 -12.13.56.0/21 7018 -12.13.64.0/22 7018 -12.13.68.0/24 7018 -12.13.69.0/24 33252 -12.13.70.0/23 30229 -12.13.72.0/23 30229 -12.13.74.0/23 7018 -12.13.76.0/22 7018 -12.13.80.0/22 7018 -12.13.84.0/23 7018 -12.13.86.0/24 2386 -12.13.87.0/24 7018 -12.13.88.0/21 7018 -12.13.96.0/19 7018 -12.13.128.0/17 7018 -12.14.0.0/21 7018 -12.14.8.0/22 7018 -12.14.12.0/24 4185 -12.14.13.0/24 7018 -12.14.14.0/24 4185 -12.14.15.0/24 7018 -12.14.16.0/20 7018 -12.14.32.0/19 7018 -12.14.64.0/20 7018 -12.14.80.0/21 7018 -12.14.88.0/24 396462 -12.14.89.0/24 7018 -12.14.90.0/23 7018 -12.14.92.0/22 7018 -12.14.96.0/19 7018 -12.14.128.0/20 7018 -12.14.144.0/23 7018 -12.14.146.0/24 7018 -12.14.147.0/24 2386 -12.14.148.0/22 7018 -12.14.152.0/24 23349 -12.14.153.0/24 7018 -12.14.154.0/23 7018 -12.14.156.0/24 7018 -12.14.157.0/24 25783 -12.14.158.0/23 7018 -12.14.160.0/21 7018 -12.14.168.0/23 7018 -12.14.170.0/24 32567 -12.14.171.0/24 7018 -12.14.172.0/22 7018 -12.14.176.0/20 7018 -12.14.192.0/20 7018 -12.14.208.0/24 7018 -12.14.209.0/24 54809 -12.14.210.0/23 7018 -12.14.212.0/22 7018 -12.14.216.0/24 7018 -12.14.217.0/24 12022 -12.14.218.0/23 7018 -12.14.220.0/22 7018 -12.14.224.0/24 33252 -12.14.225.0/24 7018 -12.14.226.0/23 7018 -12.14.228.0/22 7018 -12.14.232.0/21 7018 -12.14.240.0/20 7018 -12.15.0.0/22 7018 -12.15.4.0/23 7018 -12.15.6.0/23 19524 -12.15.8.0/21 7018 -12.15.16.0/21 7018 -12.15.24.0/22 7018 -12.15.28.0/24 14381 -12.15.29.0/24 7018 -12.15.30.0/23 7018 -12.15.32.0/21 7018 -12.15.40.0/24 32912 -12.15.41.0/24 7018 -12.15.42.0/23 7018 -12.15.44.0/22 7018 -12.15.48.0/24 7018 -12.15.49.0/24 398234 -12.15.50.0/23 7018 -12.15.52.0/22 7018 -12.15.56.0/21 7018 -12.15.64.0/20 7018 -12.15.80.0/23 7018 -12.15.82.0/24 62697 -12.15.83.0/24 7018 -12.15.84.0/22 7018 -12.15.88.0/21 7018 -12.15.96.0/19 7018 -12.15.128.0/20 7018 -12.15.144.0/24 2386 -12.15.145.0/24 7018 -12.15.146.0/24 2386 -12.15.147.0/24 7018 -12.15.148.0/22 7018 -12.15.152.0/21 7018 -12.15.160.0/24 54036 -12.15.161.0/24 7018 -12.15.162.0/23 7018 -12.15.164.0/22 7018 -12.15.168.0/21 7018 -12.15.176.0/20 7018 -12.15.192.0/18 7018 -12.16.0.0/20 7018 -12.16.16.0/22 7018 -12.16.20.0/23 7018 -12.16.22.0/24 12090 -12.16.23.0/24 7018 -12.16.24.0/21 7018 -12.16.32.0/20 7018 -12.16.48.0/22 7018 -12.16.52.0/23 7018 -12.16.54.0/24 7018 -12.16.55.0/24 396156 -12.16.56.0/21 7018 -12.16.64.0/18 7018 -12.16.128.0/19 7018 -12.16.160.0/22 7018 -12.16.164.0/23 6318 -12.16.166.0/23 7018 -12.16.168.0/21 7018 -12.16.176.0/20 7018 -12.16.192.0/18 7018 -12.17.0.0/21 7018 -12.17.8.0/23 7018 -12.17.10.0/24 14411 -12.17.11.0/24 7018 -12.17.12.0/22 7018 -12.17.16.0/20 7018 -12.17.32.0/22 7018 -12.17.36.0/24 7018 -12.17.37.0/24 40485 -12.17.38.0/23 7018 -12.17.40.0/21 7018 -12.17.48.0/20 7018 -12.17.64.0/20 7018 -12.17.80.0/21 7018 -12.17.88.0/22 7018 -12.17.92.0/23 7018 -12.17.94.0/24 7018 -12.17.95.0/24 11641 -12.17.96.0/19 7018 -12.17.128.0/21 7018 -12.17.136.0/23 7018 -12.17.138.0/23 397602 -12.17.140.0/22 7018 -12.17.144.0/20 7018 -12.17.160.0/21 7018 -12.17.168.0/23 7018 -12.17.170.0/24 7018 -12.17.171.0/24 395035 -12.17.172.0/22 7018 -12.17.176.0/20 397602 -12.17.192.0/19 7018 -12.17.224.0/21 7018 -12.17.232.0/22 7018 -12.17.236.0/23 7018 -12.17.238.0/24 7018 -12.17.239.0/24 11933 -12.17.240.0/24 7018 -12.17.241.0/24 4473 -12.17.242.0/23 7018 -12.17.244.0/22 7018 -12.17.248.0/21 7018 -12.18.0.0/21 7018 -12.18.8.0/22 7018 -12.18.12.0/23 7018 -12.18.14.0/24 7018 -12.18.15.0/24 26907 -12.18.16.0/22 7018 -12.18.20.0/24 2386 -12.18.21.0/24 7018 -12.18.22.0/23 7018 -12.18.24.0/21 7018 -12.18.32.0/19 7018 -12.18.64.0/21 7018 -12.18.72.0/22 7018 -12.18.76.0/23 13471 -12.18.78.0/23 7018 -12.18.80.0/21 7018 -12.18.88.0/23 7018 -12.18.90.0/23 17064 -12.18.92.0/22 7018 -12.18.96.0/22 17064 -12.18.100.0/22 7018 -12.18.104.0/21 7018 -12.18.112.0/20 7018 -12.18.128.0/19 7018 -12.18.160.0/20 7018 -12.18.176.0/21 7018 -12.18.184.0/23 7018 -12.18.186.0/24 7018 -12.18.187.0/24 4917 -12.18.188.0/22 7018 -12.18.192.0/19 7018 -12.18.224.0/20 7018 -12.18.240.0/22 7018 -12.18.244.0/24 20265 -12.18.245.0/24 7018 -12.18.246.0/23 7018 -12.18.248.0/21 7018 -12.19.0.0/19 7018 -12.19.32.0/21 7018 -12.19.40.0/22 7018 -12.19.44.0/24 7018 -12.19.45.0/24 394543 -12.19.46.0/23 7018 -12.19.48.0/22 7018 -12.19.52.0/23 7018 -12.19.54.0/24 7018 -12.19.55.0/24 18434 -12.19.56.0/21 7018 -12.19.64.0/20 7018 -12.19.80.0/21 7018 -12.19.88.0/21 109 -12.19.96.0/22 7018 -12.19.100.0/24 7018 -12.19.101.0/24 395439 -12.19.102.0/23 7018 -12.19.104.0/24 7018 -12.19.105.0/24 29970 -12.19.106.0/23 7018 -12.19.108.0/22 7018 -12.19.112.0/20 7018 -12.19.128.0/18 7018 -12.19.192.0/22 7018 -12.19.196.0/24 7018 -12.19.197.0/24 3577 -12.19.198.0/23 7018 -12.19.200.0/21 7018 -12.19.208.0/20 7018 -12.19.224.0/24 7018 -12.19.225.0/24 16490 -12.19.226.0/23 7018 -12.19.228.0/22 7018 -12.19.232.0/22 7018 -12.19.236.0/24 7018 -12.19.237.0/24 11721 -12.19.238.0/23 7018 -12.19.240.0/20 7018 -12.20.0.0/19 7018 -12.20.32.0/20 7018 -12.20.48.0/23 17276 -12.20.50.0/23 7018 -12.20.52.0/22 7018 -12.20.56.0/22 7018 -12.20.60.0/23 36178 -12.20.62.0/23 7018 -12.20.64.0/20 7018 -12.20.80.0/21 7018 -12.20.88.0/22 7018 -12.20.92.0/24 11857 -12.20.93.0/24 7018 -12.20.94.0/23 7018 -12.20.96.0/20 7018 -12.20.112.0/21 7018 -12.20.120.0/23 7018 -12.20.122.0/24 14094 -12.20.123.0/24 40098 -12.20.124.0/23 7018 -12.20.126.0/24 7018 -12.20.127.0/24 14639 -12.20.128.0/23 7018 -12.20.130.0/24 7018 -12.20.131.0/24 6319 -12.20.132.0/22 7018 -12.20.136.0/21 7018 -12.20.144.0/21 7018 -12.20.152.0/23 7018 -12.20.154.0/24 7018 -12.20.155.0/24 396199 -12.20.156.0/23 7018 -12.20.158.0/24 7018 -12.20.159.0/24 2386 -12.20.160.0/20 7018 -12.20.176.0/21 7018 -12.20.184.0/22 7018 -12.20.188.0/24 22249 -12.20.189.0/24 7018 -12.20.190.0/23 7018 -12.20.192.0/19 7018 -12.20.224.0/20 7018 -12.20.240.0/21 7018 -12.20.248.0/24 7018 -12.20.249.0/24 30308 -12.20.250.0/23 7018 -12.20.252.0/22 7018 -12.21.0.0/20 7018 -12.21.16.0/21 7018 -12.21.24.0/21 16415 -12.21.32.0/19 7018 -12.21.64.0/20 7018 -12.21.80.0/21 7018 -12.21.88.0/22 7018 -12.21.92.0/24 7018 -12.21.93.0/24 26345 -12.21.94.0/23 7018 -12.21.96.0/24 7018 -12.21.97.0/24 14879 -12.21.98.0/23 7018 -12.21.100.0/22 7018 -12.21.104.0/21 7018 -12.21.112.0/20 7018 -12.21.128.0/21 7018 -12.21.136.0/22 7018 -12.21.140.0/23 7018 -12.21.142.0/24 7018 -12.21.143.0/24 53325 -12.21.144.0/20 7018 -12.21.160.0/20 7018 -12.21.176.0/23 7018 -12.21.178.0/24 393783 -12.21.179.0/24 7018 -12.21.180.0/22 7018 -12.21.184.0/21 7018 -12.21.192.0/23 7018 -12.21.194.0/24 3801 -12.21.195.0/24 7018 -12.21.196.0/22 7018 -12.21.200.0/21 7018 -12.21.208.0/20 7018 -12.21.224.0/22 7018 -12.21.228.0/24 30525 -12.21.229.0/24 7018 -12.21.230.0/23 7018 -12.21.232.0/21 7018 -12.21.240.0/20 7018 -12.22.0.0/18 7018 -12.22.64.0/19 7018 -12.22.96.0/22 2386 -12.22.100.0/22 7018 -12.22.104.0/21 7018 -12.22.112.0/23 7018 -12.22.114.0/24 22040 -12.22.115.0/24 7018 -12.22.116.0/22 7018 -12.22.120.0/21 7018 -12.22.128.0/20 7018 -12.22.144.0/21 7018 -12.22.152.0/21 26380 -12.22.160.0/20 7018 -12.22.176.0/23 7018 -12.22.178.0/23 30452 -12.22.180.0/22 7018 -12.22.184.0/22 7018 -12.22.188.0/22 54809 -12.22.192.0/21 7018 -12.22.200.0/22 7018 -12.22.204.0/24 18833 -12.22.205.0/24 7018 -12.22.206.0/23 7018 -12.22.208.0/20 7018 -12.22.224.0/19 7018 -12.23.0.0/20 7018 -12.23.16.0/21 7018 -12.23.24.0/22 7018 -12.23.28.0/24 27529 -12.23.29.0/24 7018 -12.23.30.0/23 7018 -12.23.32.0/20 7018 -12.23.48.0/21 7018 -12.23.56.0/22 7018 -12.23.60.0/24 36415 -12.23.61.0/24 7018 -12.23.62.0/23 7018 -12.23.64.0/18 7018 -12.23.128.0/19 7018 -12.23.160.0/21 7018 -12.23.168.0/23 7018 -12.23.170.0/24 7018 -12.23.171.0/24 18977 -12.23.172.0/22 7018 -12.23.176.0/21 7018 -12.23.184.0/22 7018 -12.23.188.0/24 7018 -12.23.189.0/24 32367 -12.23.190.0/23 7018 -12.23.192.0/22 7018 -12.23.196.0/23 7018 -12.23.198.0/24 396831 -12.23.199.0/24 7018 -12.23.200.0/21 7018 -12.23.208.0/20 7018 -12.23.224.0/21 7018 -12.23.232.0/22 7018 -12.23.236.0/23 7018 -12.23.238.0/24 53517 -12.23.239.0/24 7018 -12.23.240.0/20 7018 -12.24.0.0/23 7018 -12.24.2.0/24 7018 -12.24.3.0/24 32951 -12.24.4.0/22 2727 -12.24.8.0/21 7018 -12.24.16.0/21 7018 -12.24.24.0/22 7018 -12.24.28.0/24 397665 -12.24.29.0/24 7018 -12.24.30.0/23 7018 -12.24.32.0/20 7018 -12.24.48.0/21 7018 -12.24.56.0/22 7018 -12.24.60.0/23 26751 -12.24.62.0/23 7018 -12.24.64.0/19 7018 -12.24.96.0/21 7018 -12.24.104.0/22 7018 -12.24.108.0/23 7018 -12.24.110.0/24 7018 -12.24.111.0/24 2386 -12.24.112.0/22 4546 -12.24.116.0/22 7018 -12.24.120.0/21 7018 -12.24.128.0/21 7018 -12.24.136.0/23 7018 -12.24.138.0/23 10453 -12.24.140.0/22 7018 -12.24.144.0/20 7018 -12.24.160.0/20 7018 -12.24.176.0/23 7018 -12.24.178.0/24 7018 -12.24.179.0/24 16733 -12.24.180.0/22 7018 -12.24.184.0/21 7018 -12.24.192.0/19 7018 -12.24.224.0/23 7018 -12.24.226.0/24 33753 -12.24.227.0/24 7018 -12.24.228.0/22 7018 -12.24.232.0/21 7018 -12.24.240.0/20 7018 -12.25.0.0/18 7018 -12.25.64.0/20 7018 -12.25.80.0/21 7018 -12.25.88.0/22 7018 -12.25.92.0/23 7018 -12.25.94.0/24 7018 -12.25.95.0/24 21619 -12.25.96.0/21 7018 -12.25.104.0/23 7018 -12.25.106.0/24 7018 -12.25.107.0/24 32567 -12.25.108.0/22 7018 -12.25.112.0/23 7018 -12.25.114.0/24 2386 -12.25.115.0/24 7018 -12.25.116.0/22 7018 -12.25.120.0/21 7018 -12.25.128.0/20 7018 -12.25.144.0/21 7018 -12.25.152.0/23 7018 -12.25.154.0/24 31973 -12.25.155.0/24 7018 -12.25.156.0/22 7018 -12.25.160.0/19 7018 -12.25.192.0/19 7018 -12.25.224.0/21 7018 -12.25.232.0/21 7381 -12.25.240.0/20 7018 -12.26.0.0/24 22024 -12.26.1.0/24 7018 -12.26.2.0/24 7018 -12.26.3.0/24 17117 -12.26.4.0/23 7018 -12.26.6.0/24 7018 -12.26.7.0/24 17361 -12.26.8.0/22 7018 -12.26.12.0/22 2386 -12.26.16.0/20 7018 -12.26.32.0/20 7018 -12.26.48.0/22 7018 -12.26.52.0/24 7018 -12.26.53.0/24 6195 -12.26.54.0/24 7018 -12.26.55.0/24 4546 -12.26.56.0/21 7018 -12.26.64.0/24 7018 -12.26.65.0/24 21923 -12.26.66.0/23 7018 -12.26.68.0/22 7018 -12.26.72.0/21 7018 -12.26.80.0/22 7018 -12.26.84.0/24 3585 -12.26.85.0/24 7018 -12.26.86.0/23 7018 -12.26.88.0/21 7018 -12.26.96.0/19 7018 -12.26.128.0/18 7018 -12.26.192.0/19 7018 -12.26.224.0/24 7018 -12.26.225.0/24 26707 -12.26.226.0/23 7018 -12.26.228.0/22 7018 -12.26.232.0/21 7018 -12.26.240.0/20 7018 -12.27.0.0/21 7018 -12.27.8.0/22 7018 -12.27.12.0/24 7018 -12.27.13.0/24 29841 -12.27.14.0/23 7018 -12.27.16.0/20 7018 -12.27.32.0/24 7018 -12.27.33.0/24 40098 -12.27.34.0/23 7018 -12.27.36.0/22 7018 -12.27.40.0/21 7018 -12.27.48.0/20 7018 -12.27.64.0/23 7018 -12.27.66.0/24 7018 -12.27.67.0/24 16914 -12.27.68.0/24 7018 -12.27.69.0/24 54968 -12.27.70.0/23 7018 -12.27.72.0/21 7018 -12.27.80.0/20 7018 -12.27.96.0/22 7018 -12.27.100.0/23 7018 -12.27.102.0/24 6319 -12.27.103.0/24 7018 -12.27.104.0/21 7018 -12.27.112.0/22 7018 -12.27.116.0/23 7018 -12.27.118.0/23 2386 -12.27.120.0/21 7018 -12.27.128.0/19 7018 -12.27.160.0/21 7018 -12.27.168.0/22 7018 -12.27.172.0/23 7018 -12.27.174.0/24 33054 -12.27.175.0/24 7018 -12.27.176.0/21 7018 -12.27.184.0/23 7018 -12.27.186.0/23 33247 -12.27.188.0/22 33247 -12.27.192.0/23 7018 -12.27.194.0/24 7018 -12.27.195.0/24 5637 -12.27.196.0/22 7018 -12.27.200.0/23 7018 -12.27.202.0/24 7018 -12.27.203.0/24 47030 -12.27.204.0/22 7018 -12.27.208.0/21 7018 -12.27.216.0/22 7018 -12.27.220.0/23 7018 -12.27.222.0/23 12261 -12.27.224.0/20 7018 -12.27.240.0/21 2727 -12.27.248.0/21 7018 -12.28.0.0/19 7018 -12.28.32.0/22 7018 -12.28.36.0/23 7018 -12.28.38.0/24 7018 -12.28.39.0/24 22197 -12.28.40.0/21 7018 -12.28.48.0/23 7018 -12.28.50.0/24 7018 -12.28.51.0/24 394795 -12.28.52.0/22 7018 -12.28.56.0/21 7018 -12.28.64.0/20 7018 -12.28.80.0/24 7018 -12.28.81.0/24 2386 -12.28.82.0/23 7018 -12.28.84.0/22 7018 -12.28.88.0/21 7018 -12.28.96.0/21 7018 -12.28.104.0/23 393691 -12.28.106.0/23 7018 -12.28.108.0/22 7018 -12.28.112.0/21 7018 -12.28.120.0/22 7018 -12.28.124.0/24 20310 -12.28.125.0/24 7018 -12.28.126.0/23 7018 -12.28.128.0/20 7018 -12.28.144.0/23 7018 -12.28.146.0/23 54258 -12.28.148.0/22 7018 -12.28.152.0/21 7018 -12.28.160.0/21 7018 -12.28.168.0/22 7018 -12.28.172.0/23 7018 -12.28.174.0/24 7018 -12.28.175.0/24 394795 -12.28.176.0/20 7018 -12.28.192.0/22 7018 -12.28.196.0/24 19449 -12.28.197.0/24 7018 -12.28.198.0/23 7018 -12.28.200.0/21 7018 -12.28.208.0/20 7018 -12.28.224.0/19 7018 -12.29.0.0/19 7018 -12.29.32.0/21 7018 -12.29.40.0/23 7018 -12.29.42.0/24 16873 -12.29.43.0/24 7018 -12.29.44.0/22 7018 -12.29.48.0/20 7018 -12.29.64.0/19 7018 -12.29.96.0/22 7018 -12.29.100.0/23 6307 -12.29.102.0/24 6307 -12.29.103.0/24 7018 -12.29.104.0/21 7018 -12.29.112.0/22 7018 -12.29.116.0/22 4473 -12.29.120.0/21 7018 -12.29.128.0/20 7018 -12.29.144.0/21 7018 -12.29.152.0/22 7018 -12.29.156.0/24 7018 -12.29.157.0/24 30509 -12.29.158.0/23 7018 -12.29.160.0/22 7018 -12.29.164.0/23 7018 -12.29.166.0/24 7018 -12.29.167.0/24 2386 -12.29.168.0/21 7018 -12.29.176.0/20 7018 -12.29.192.0/22 7018 -12.29.196.0/23 2386 -12.29.198.0/24 2386 -12.29.199.0/24 7018 -12.29.200.0/21 7018 -12.29.208.0/20 7018 -12.29.224.0/20 7018 -12.29.240.0/21 7018 -12.29.248.0/22 7018 -12.29.252.0/24 21720 -12.29.253.0/24 7018 -12.29.254.0/23 7018 -12.30.0.0/18 7018 -12.30.64.0/19 7018 -12.30.96.0/20 7018 -12.30.112.0/21 7018 -12.30.120.0/24 7018 -12.30.121.0/24 25924 -12.30.122.0/23 7018 -12.30.124.0/22 7018 -12.30.128.0/20 7018 -12.30.144.0/21 7018 -12.30.152.0/24 7018 -12.30.153.0/24 100 -12.30.154.0/23 7018 -12.30.156.0/23 7018 -12.30.158.0/24 7018 -12.30.159.0/24 2386 -12.30.160.0/21 7018 -12.30.168.0/22 7018 -12.30.172.0/24 7018 -12.30.173.0/24 13628 -12.30.174.0/23 7018 -12.30.176.0/21 7018 -12.30.184.0/22 7018 -12.30.188.0/24 7018 -12.30.189.0/24 18889 -12.30.190.0/23 7018 -12.30.192.0/19 7018 -12.30.224.0/20 7018 -12.30.240.0/23 7018 -12.30.242.0/23 2386 -12.30.244.0/23 7018 -12.30.246.0/24 7018 -12.30.247.0/24 36251 -12.30.248.0/24 7018 -12.30.249.0/24 2386 -12.30.250.0/23 7018 -12.30.252.0/22 7018 -12.31.0.0/21 7018 -12.31.8.0/22 7018 -12.31.12.0/23 7018 -12.31.14.0/24 4883 -12.31.15.0/24 7018 -12.31.16.0/22 7018 -12.31.20.0/24 7018 -12.31.21.0/24 16558 -12.31.22.0/23 7018 -12.31.24.0/24 14056 -12.31.25.0/24 7018 -12.31.26.0/23 7018 -12.31.28.0/22 7018 -12.31.32.0/19 7018 -12.31.64.0/19 7018 -12.31.96.0/21 7018 -12.31.104.0/22 7018 -12.31.108.0/23 7018 -12.31.110.0/23 26311 -12.31.112.0/21 7018 -12.31.120.0/22 7018 -12.31.124.0/23 7018 -12.31.126.0/24 7018 -12.31.127.0/24 23087 -12.31.128.0/21 7018 -12.31.136.0/24 7018 -12.31.137.0/24 394878 -12.31.138.0/23 7018 -12.31.140.0/22 7018 -12.31.144.0/22 7018 -12.31.148.0/23 7018 -12.31.150.0/24 393599 -12.31.151.0/24 7018 -12.31.152.0/21 7018 -12.31.160.0/23 22065 -12.31.162.0/23 7018 -12.31.164.0/22 7018 -12.31.168.0/21 7018 -12.31.176.0/20 7018 -12.31.192.0/21 7018 -12.31.200.0/23 7018 -12.31.202.0/24 15215 -12.31.203.0/24 7018 -12.31.204.0/22 7018 -12.31.208.0/21 7018 -12.31.216.0/22 7018 -12.31.220.0/23 7018 -12.31.222.0/24 7018 -12.31.223.0/24 2386 -12.31.224.0/22 33331 -12.31.228.0/22 7018 -12.31.232.0/21 7018 -12.31.240.0/20 7018 -12.32.0.0/20 7018 -12.32.16.0/21 7018 -12.32.24.0/22 7018 -12.32.28.0/24 16983 -12.32.29.0/24 7018 -12.32.30.0/23 7018 -12.32.32.0/19 7018 -12.32.64.0/21 7018 -12.32.72.0/22 7018 -12.32.76.0/23 7018 -12.32.78.0/23 2386 -12.32.80.0/24 7018 -12.32.81.0/24 32041 -12.32.82.0/23 7018 -12.32.84.0/23 7018 -12.32.86.0/24 7018 -12.32.87.0/24 397958 -12.32.88.0/24 7018 -12.32.89.0/24 32041 -12.32.90.0/23 10788 -12.32.92.0/22 7018 -12.32.96.0/20 7018 -12.32.112.0/22 7018 -12.32.116.0/24 7018 -12.32.117.0/24 64202 -12.32.118.0/23 7018 -12.32.120.0/21 7018 -12.32.128.0/19 7018 -12.32.160.0/22 7018 -12.32.164.0/23 7018 -12.32.166.0/24 32687 -12.32.167.0/24 7018 -12.32.168.0/21 7018 -12.32.176.0/21 7018 -12.32.184.0/24 7018 -12.32.185.0/24 47039 -12.32.186.0/23 7018 -12.32.188.0/22 7018 -12.32.192.0/21 7018 -12.32.200.0/22 7018 -12.32.204.0/23 7018 -12.32.206.0/24 20118 -12.32.207.0/24 7018 -12.32.208.0/20 7018 -12.32.224.0/22 2386 -12.32.228.0/22 7018 -12.32.232.0/21 7018 -12.32.240.0/24 7018 -12.32.241.0/24 14372 -12.32.242.0/23 7018 -12.32.244.0/22 7018 -12.32.248.0/21 7018 -12.33.0.0/18 7018 -12.33.64.0/21 7018 -12.33.72.0/22 7018 -12.33.76.0/23 7018 -12.33.78.0/24 22209 -12.33.79.0/24 7018 -12.33.80.0/20 7018 -12.33.96.0/21 7018 -12.33.104.0/22 7018 -12.33.108.0/24 7018 -12.33.109.0/24 26341 -12.33.110.0/23 7018 -12.33.112.0/23 7018 -12.33.114.0/24 13938 -12.33.115.0/24 7018 -12.33.116.0/22 7018 -12.33.120.0/22 7018 -12.33.124.0/23 7018 -12.33.126.0/24 7018 -12.33.127.0/24 4546 -12.33.128.0/21 7018 -12.33.136.0/22 7018 -12.33.140.0/23 7018 -12.33.142.0/23 10998 -12.33.144.0/20 7018 -12.33.160.0/22 7018 -12.33.164.0/23 7018 -12.33.166.0/24 7018 -12.33.167.0/24 33160 -12.33.168.0/21 7018 -12.33.176.0/20 7018 -12.33.192.0/18 7018 -12.34.0.0/21 7018 -12.34.8.0/22 7018 -12.34.12.0/23 7018 -12.34.14.0/24 40607 -12.34.15.0/24 7018 -12.34.16.0/20 7018 -12.34.32.0/22 7018 -12.34.36.0/24 29841 -12.34.37.0/24 7018 -12.34.38.0/23 7018 -12.34.40.0/21 7018 -12.34.48.0/20 7018 -12.34.64.0/24 7018 -12.34.65.0/24 29733 -12.34.66.0/23 7018 -12.34.68.0/24 29733 -12.34.69.0/24 7018 -12.34.70.0/23 7018 -12.34.72.0/24 7018 -12.34.73.0/24 22610 -12.34.74.0/23 7018 -12.34.76.0/22 7018 -12.34.80.0/22 7018 -12.34.84.0/23 7018 -12.34.86.0/24 7018 -12.34.87.0/24 19998 -12.34.88.0/21 7018 -12.34.96.0/22 7018 -12.34.100.0/23 6253 -12.34.102.0/23 7018 -12.34.104.0/21 7018 -12.34.112.0/21 7018 -12.34.120.0/22 7018 -12.34.124.0/23 7018 -12.34.126.0/24 40233 -12.34.127.0/24 7018 -12.34.128.0/22 7018 -12.34.132.0/23 7018 -12.34.134.0/24 7018 -12.34.135.0/24 32009 -12.34.136.0/21 7018 -12.34.144.0/22 7018 -12.34.148.0/24 394819 -12.34.149.0/24 7018 -12.34.150.0/23 7018 -12.34.152.0/24 17178 -12.34.153.0/24 7018 -12.34.154.0/23 7018 -12.34.156.0/23 7018 -12.34.158.0/24 7018 -12.34.159.0/24 18848 -12.34.160.0/19 7018 -12.34.192.0/19 7018 -12.34.224.0/20 7018 -12.34.240.0/22 7018 -12.34.244.0/23 7018 -12.34.246.0/24 30678 -12.34.247.0/24 7018 -12.34.248.0/21 7018 -12.35.0.0/19 7018 -12.35.32.0/20 7018 -12.35.48.0/23 7018 -12.35.50.0/24 7018 -12.35.51.0/24 397762 -12.35.52.0/24 7018 -12.35.53.0/24 2386 -12.35.54.0/24 2386 -12.35.55.0/24 7018 -12.35.56.0/21 7018 -12.35.64.0/22 7018 -12.35.68.0/24 19215 -12.35.69.0/24 7018 -12.35.70.0/23 2 -12.35.72.0/21 7018 -12.35.80.0/20 7018 -12.35.96.0/24 7018 -12.35.97.0/24 62649 -12.35.98.0/23 7018 -12.35.100.0/22 7018 -12.35.104.0/21 7018 -12.35.112.0/23 7018 -12.35.114.0/24 7018 -12.35.115.0/24 40230 -12.35.116.0/22 7018 -12.35.120.0/21 7018 -12.35.128.0/21 7018 -12.35.136.0/24 7018 -12.35.137.0/24 394733 -12.35.138.0/23 7018 -12.35.140.0/22 7018 -12.35.144.0/20 7018 -12.35.160.0/20 7018 -12.35.176.0/21 7018 -12.35.184.0/22 7018 -12.35.188.0/22 53768 -12.35.192.0/22 7018 -12.35.196.0/24 7018 -12.35.197.0/24 11030 -12.35.198.0/23 7018 -12.35.200.0/21 7018 -12.35.208.0/23 7018 -12.35.210.0/24 7018 -12.35.211.0/24 2386 -12.35.212.0/22 7018 -12.35.216.0/21 7018 -12.35.224.0/19 7018 -12.36.0.0/21 7018 -12.36.8.0/24 7018 -12.36.9.0/24 26959 -12.36.10.0/23 7018 -12.36.12.0/24 36297 -12.36.13.0/24 7018 -12.36.14.0/23 7018 -12.36.16.0/20 7018 -12.36.32.0/19 7018 -12.36.64.0/24 55200 -12.36.65.0/24 7018 -12.36.66.0/23 7018 -12.36.68.0/22 7018 -12.36.72.0/21 7018 -12.36.80.0/20 7018 -12.36.96.0/19 7018 -12.36.128.0/18 7018 -12.36.192.0/24 7018 -12.36.193.0/24 395183 -12.36.194.0/24 7018 -12.36.195.0/24 395476 -12.36.196.0/22 7018 -12.36.200.0/22 7018 -12.36.204.0/24 7018 -12.36.205.0/24 23172 -12.36.206.0/24 14888 -12.36.207.0/24 20176 -12.36.208.0/24 7018 -12.36.209.0/24 26915 -12.36.210.0/23 7018 -12.36.212.0/22 7018 -12.36.216.0/24 7018 -12.36.217.0/24 8119 -12.36.218.0/24 8119 -12.36.219.0/24 7018 -12.36.220.0/22 7018 -12.36.224.0/21 7018 -12.36.232.0/21 2727 -12.36.240.0/21 7018 -12.36.248.0/22 394059 -12.36.252.0/22 7018 -12.37.0.0/21 7018 -12.37.8.0/22 7018 -12.37.12.0/24 7018 -12.37.13.0/24 2386 -12.37.14.0/23 7018 -12.37.16.0/23 7018 -12.37.18.0/23 35852 -12.37.20.0/22 7018 -12.37.24.0/21 7018 -12.37.32.0/19 7018 -12.37.64.0/21 7018 -12.37.72.0/22 7018 -12.37.76.0/23 7018 -12.37.78.0/24 7018 -12.37.79.0/24 33121 -12.37.80.0/20 7018 -12.37.96.0/21 7018 -12.37.104.0/23 7018 -12.37.106.0/24 12152 -12.37.107.0/24 7018 -12.37.108.0/22 7018 -12.37.112.0/20 7018 -12.37.128.0/20 7018 -12.37.144.0/24 33684 -12.37.145.0/24 7018 -12.37.146.0/23 7018 -12.37.148.0/22 7018 -12.37.152.0/24 7018 -12.37.153.0/24 40565 -12.37.154.0/23 7018 -12.37.156.0/22 7018 -12.37.160.0/21 7018 -12.37.168.0/22 7018 -12.37.172.0/24 7018 -12.37.173.0/24 2386 -12.37.174.0/23 7018 -12.37.176.0/21 7018 -12.37.184.0/22 7018 -12.37.188.0/23 7018 -12.37.190.0/24 7018 -12.37.191.0/24 30082 -12.37.192.0/22 7018 -12.37.196.0/23 62861 -12.37.198.0/23 7018 -12.37.200.0/21 7018 -12.37.208.0/20 7018 -12.37.224.0/21 7018 -12.37.232.0/22 7018 -12.37.236.0/23 7018 -12.37.238.0/23 16648 -12.37.240.0/20 7018 -12.38.0.0/23 7018 -12.38.2.0/24 7018 -12.38.3.0/24 395190 -12.38.4.0/22 7018 -12.38.8.0/22 7018 -12.38.12.0/23 7018 -12.38.14.0/23 6363 -12.38.16.0/20 7018 -12.38.32.0/19 7018 -12.38.64.0/22 7018 -12.38.68.0/24 15007 -12.38.69.0/24 7018 -12.38.70.0/23 7018 -12.38.72.0/21 7018 -12.38.80.0/22 7018 -12.38.84.0/23 7018 -12.38.86.0/24 7018 -12.38.87.0/24 2386 -12.38.88.0/21 7018 -12.38.96.0/19 7018 -12.38.128.0/19 7018 -12.38.160.0/21 7018 -12.38.168.0/22 7018 -12.38.172.0/24 7018 -12.38.173.0/24 16873 -12.38.174.0/23 7018 -12.38.176.0/21 7018 -12.38.184.0/24 7018 -12.38.185.0/24 46109 -12.38.186.0/23 7018 -12.38.188.0/22 30207 -12.38.192.0/19 7018 -12.38.224.0/21 7018 -12.38.232.0/22 7018 -12.38.236.0/24 7018 -12.38.237.0/24 31853 -12.38.238.0/23 7018 -12.38.240.0/20 7018 -12.39.0.0/18 7018 -12.39.64.0/21 7018 -12.39.72.0/22 7018 -12.39.76.0/23 33176 -12.39.78.0/23 7018 -12.39.80.0/20 7018 -12.39.96.0/21 7018 -12.39.104.0/23 7018 -12.39.106.0/24 22528 -12.39.107.0/24 7018 -12.39.108.0/22 7018 -12.39.112.0/20 7018 -12.39.128.0/22 7018 -12.39.132.0/23 7018 -12.39.134.0/23 394976 -12.39.136.0/21 7018 -12.39.144.0/23 394976 -12.39.146.0/23 7018 -12.39.148.0/22 7018 -12.39.152.0/21 7018 -12.39.160.0/23 7018 -12.39.162.0/24 7018 -12.39.163.0/24 13814 -12.39.164.0/22 7018 -12.39.168.0/24 7018 -12.39.169.0/24 2386 -12.39.170.0/23 7018 -12.39.172.0/22 7018 -12.39.176.0/20 7018 -12.39.192.0/22 7018 -12.39.196.0/23 7018 -12.39.198.0/23 53768 -12.39.200.0/21 7018 -12.39.208.0/20 7018 -12.39.224.0/20 7018 -12.39.240.0/21 7018 -12.39.248.0/23 7018 -12.39.250.0/24 7018 -12.39.251.0/24 36245 -12.39.252.0/22 7018 -12.40.0.0/19 7018 -12.40.32.0/21 7018 -12.40.40.0/22 7018 -12.40.44.0/24 27195 -12.40.45.0/24 7018 -12.40.46.0/23 7018 -12.40.48.0/24 7018 -12.40.49.0/24 32326 -12.40.50.0/23 7018 -12.40.52.0/22 7018 -12.40.56.0/22 7018 -12.40.60.0/24 7018 -12.40.61.0/24 19443 -12.40.62.0/23 7018 -12.40.64.0/19 7018 -12.40.96.0/22 7018 -12.40.100.0/23 26330 -12.40.102.0/24 7018 -12.40.103.0/24 32774 -12.40.104.0/22 7018 -12.40.108.0/24 35912 -12.40.109.0/24 7018 -12.40.110.0/23 7018 -12.40.112.0/22 7018 -12.40.116.0/24 7018 -12.40.117.0/24 2386 -12.40.118.0/23 7018 -12.40.120.0/21 7018 -12.40.128.0/21 7018 -12.40.136.0/22 7018 -12.40.140.0/23 7018 -12.40.142.0/24 7018 -12.40.143.0/24 7723 -12.40.144.0/20 7018 -12.40.160.0/20 7018 -12.40.176.0/22 7018 -12.40.180.0/24 15343 -12.40.181.0/24 7018 -12.40.182.0/23 7018 -12.40.184.0/21 7018 -12.40.192.0/21 7018 -12.40.200.0/22 7018 -12.40.204.0/23 7018 -12.40.206.0/24 63144 -12.40.207.0/24 7018 -12.40.208.0/22 7018 -12.40.212.0/22 14391 -12.40.216.0/21 7018 -12.40.224.0/23 7018 -12.40.226.0/24 7018 -12.40.227.0/24 33025 -12.40.228.0/22 7018 -12.40.232.0/21 7018 -12.40.240.0/20 7018 -12.41.0.0/19 7018 -12.41.32.0/20 7018 -12.41.48.0/24 21734 -12.41.49.0/24 7018 -12.41.50.0/23 7018 -12.41.52.0/23 7018 -12.41.54.0/24 13938 -12.41.55.0/24 7018 -12.41.56.0/21 7018 -12.41.64.0/21 7018 -12.41.72.0/23 7018 -12.41.74.0/24 395149 -12.41.75.0/24 7018 -12.41.76.0/22 7018 -12.41.80.0/20 7018 -12.41.96.0/23 7018 -12.41.98.0/24 14478 -12.41.99.0/24 7018 -12.41.100.0/22 7018 -12.41.104.0/21 7018 -12.41.112.0/23 7018 -12.41.114.0/24 14792 -12.41.115.0/24 7018 -12.41.116.0/22 7018 -12.41.120.0/23 7018 -12.41.122.0/24 7018 -12.41.123.0/24 31824 -12.41.124.0/22 7018 -12.41.128.0/20 7018 -12.41.144.0/22 7018 -12.41.148.0/23 7018 -12.41.150.0/24 23445 -12.41.151.0/24 7018 -12.41.152.0/21 7018 -12.41.160.0/20 7018 -12.41.176.0/21 7018 -12.41.184.0/22 7018 -12.41.188.0/24 16654 -12.41.189.0/24 7018 -12.41.190.0/23 7018 -12.41.192.0/21 7018 -12.41.200.0/22 7018 -12.41.204.0/23 7018 -12.41.206.0/24 36150 -12.41.207.0/24 7018 -12.41.208.0/20 7018 -12.41.224.0/20 7018 -12.41.240.0/21 7018 -12.41.248.0/22 7018 -12.41.252.0/23 26170 -12.41.254.0/23 7018 -12.42.0.0/19 7018 -12.42.32.0/20 7018 -12.42.48.0/23 7018 -12.42.50.0/23 6253 -12.42.52.0/22 7018 -12.42.56.0/23 7018 -12.42.58.0/23 6253 -12.42.60.0/24 7018 -12.42.61.0/24 16961 -12.42.62.0/23 7018 -12.42.64.0/18 7018 -12.42.128.0/24 2386 -12.42.129.0/24 7018 -12.42.130.0/24 7018 -12.42.131.0/24 19275 -12.42.132.0/22 7018 -12.42.136.0/21 7018 -12.42.144.0/20 7018 -12.42.160.0/21 7018 -12.42.168.0/22 7018 -12.42.172.0/23 7018 -12.42.174.0/24 7018 -12.42.175.0/24 32129 -12.42.176.0/21 7018 -12.42.184.0/24 2386 -12.42.185.0/24 7018 -12.42.186.0/23 7018 -12.42.188.0/22 7018 -12.42.192.0/21 7018 -12.42.200.0/24 7018 -12.42.201.0/24 2386 -12.42.202.0/24 7018 -12.42.203.0/24 2386 -12.42.204.0/22 7018 -12.42.208.0/22 7018 -12.42.212.0/24 396446 -12.42.213.0/24 7018 -12.42.214.0/23 7018 -12.42.216.0/21 7018 -12.42.224.0/21 7018 -12.42.232.0/22 7018 -12.42.236.0/23 7018 -12.42.238.0/23 2386 -12.42.240.0/20 7018 -12.43.0.0/21 7018 -12.43.8.0/23 7018 -12.43.10.0/23 2386 -12.43.12.0/22 7018 -12.43.16.0/22 7018 -12.43.20.0/23 7018 -12.43.22.0/24 2727 -12.43.23.0/24 7018 -12.43.24.0/21 7018 -12.43.32.0/19 7018 -12.43.64.0/20 7018 -12.43.80.0/21 7018 -12.43.88.0/22 2386 -12.43.92.0/22 7018 -12.43.96.0/20 7018 -12.43.112.0/23 7018 -12.43.114.0/23 2386 -12.43.116.0/22 7018 -12.43.120.0/21 7018 -12.43.128.0/23 7018 -12.43.130.0/23 16711 -12.43.132.0/22 7018 -12.43.136.0/22 7018 -12.43.140.0/24 16711 -12.43.141.0/24 7018 -12.43.142.0/23 7018 -12.43.144.0/23 7018 -12.43.146.0/23 16711 -12.43.148.0/22 7018 -12.43.152.0/24 13893 -12.43.153.0/24 7018 -12.43.154.0/23 7018 -12.43.156.0/24 7018 -12.43.157.0/24 16711 -12.43.158.0/24 7018 -12.43.159.0/24 16711 -12.43.160.0/21 7018 -12.43.168.0/24 7018 -12.43.169.0/24 13932 -12.43.170.0/23 7018 -12.43.172.0/22 7018 -12.43.176.0/20 7018 -12.43.192.0/20 7018 -12.43.208.0/21 7018 -12.43.216.0/24 23453 -12.43.217.0/24 4188 -12.43.218.0/23 7018 -12.43.220.0/22 7018 -12.43.224.0/19 7018 -12.44.0.0/19 7018 -12.44.32.0/21 7018 -12.44.40.0/22 7018 -12.44.44.0/24 23502 -12.44.45.0/24 7018 -12.44.46.0/23 7018 -12.44.48.0/20 7018 -12.44.64.0/19 7018 -12.44.96.0/20 7018 -12.44.112.0/22 7018 -12.44.116.0/23 7018 -12.44.118.0/24 2386 -12.44.119.0/24 7018 -12.44.120.0/21 7018 -12.44.128.0/20 7018 -12.44.144.0/23 6086 -12.44.146.0/23 7018 -12.44.148.0/22 7018 -12.44.152.0/21 7018 -12.44.160.0/19 7018 -12.44.192.0/19 7018 -12.44.224.0/20 7018 -12.44.240.0/23 7018 -12.44.242.0/24 7018 -12.44.243.0/24 26144 -12.44.244.0/22 7018 -12.44.248.0/21 7018 -12.45.0.0/23 7018 -12.45.2.0/24 7018 -12.45.3.0/24 22234 -12.45.4.0/22 7018 -12.45.8.0/21 7018 -12.45.16.0/20 7018 -12.45.32.0/21 7018 -12.45.40.0/22 7018 -12.45.44.0/24 2386 -12.45.45.0/24 7018 -12.45.46.0/23 7018 -12.45.48.0/24 46282 -12.45.49.0/24 7018 -12.45.50.0/24 35858 -12.45.51.0/24 7018 -12.45.52.0/22 7018 -12.45.56.0/22 7018 -12.45.60.0/23 18509 -12.45.62.0/23 7018 -12.45.64.0/20 7018 -12.45.80.0/22 7018 -12.45.84.0/23 7018 -12.45.86.0/23 2386 -12.45.88.0/21 7018 -12.45.96.0/19 7018 -12.45.128.0/21 7018 -12.45.136.0/22 7018 -12.45.140.0/24 22609 -12.45.141.0/24 26144 -12.45.142.0/23 7018 -12.45.144.0/20 7018 -12.45.160.0/22 7018 -12.45.164.0/24 393414 -12.45.165.0/24 7018 -12.45.166.0/23 7018 -12.45.168.0/24 7018 -12.45.169.0/24 16782 -12.45.170.0/23 7018 -12.45.172.0/22 7018 -12.45.176.0/20 7018 -12.45.192.0/19 7018 -12.45.224.0/24 7018 -12.45.225.0/24 63335 -12.45.226.0/23 7018 -12.45.228.0/22 7018 -12.45.232.0/24 22610 -12.45.233.0/24 7018 -12.45.234.0/23 7018 -12.45.236.0/22 7018 -12.45.240.0/20 7018 -12.46.0.0/21 7018 -12.46.8.0/22 7018 -12.46.12.0/23 7018 -12.46.14.0/24 7018 -12.46.15.0/24 396380 -12.46.16.0/20 7018 -12.46.32.0/24 2386 -12.46.33.0/24 7018 -12.46.34.0/23 7018 -12.46.36.0/22 7018 -12.46.40.0/21 7018 -12.46.48.0/20 7018 -12.46.64.0/19 7018 -12.46.96.0/20 7018 -12.46.112.0/21 7018 -12.46.120.0/23 7018 -12.46.122.0/24 63335 -12.46.123.0/24 7018 -12.46.124.0/22 7018 -12.46.128.0/22 7018 -12.46.132.0/23 7018 -12.46.134.0/24 7018 -12.46.135.0/24 32382 -12.46.136.0/21 7018 -12.46.144.0/20 7018 -12.46.160.0/24 8161 -12.46.161.0/24 7018 -12.46.162.0/23 8161 -12.46.164.0/22 8161 -12.46.168.0/23 8161 -12.46.170.0/23 7018 -12.46.172.0/24 7018 -12.46.173.0/24 8161 -12.46.174.0/24 7018 -12.46.175.0/24 8161 -12.46.176.0/21 7018 -12.46.184.0/22 7018 -12.46.188.0/24 7018 -12.46.189.0/24 25991 -12.46.190.0/23 7018 -12.46.192.0/19 7018 -12.46.224.0/21 7018 -12.46.232.0/22 7018 -12.46.236.0/23 7018 -12.46.238.0/24 13812 -12.46.239.0/24 7018 -12.46.240.0/20 7018 -12.47.0.0/23 7018 -12.47.2.0/24 2386 -12.47.3.0/24 7018 -12.47.4.0/22 7018 -12.47.8.0/21 7018 -12.47.16.0/20 7018 -12.47.32.0/19 7018 -12.47.64.0/22 7018 -12.47.68.0/23 7018 -12.47.70.0/24 10584 -12.47.71.0/24 7018 -12.47.72.0/21 7018 -12.47.80.0/22 7018 -12.47.84.0/24 2386 -12.47.85.0/24 7018 -12.47.86.0/23 7018 -12.47.88.0/21 7018 -12.47.96.0/21 7018 -12.47.104.0/23 7018 -12.47.106.0/23 4366 -12.47.108.0/22 7018 -12.47.112.0/20 7018 -12.47.128.0/19 7018 -12.47.160.0/21 7018 -12.47.168.0/22 7018 -12.47.172.0/24 22610 -12.47.173.0/24 7018 -12.47.174.0/23 7018 -12.47.176.0/23 7018 -12.47.178.0/24 7018 -12.47.179.0/24 22184 -12.47.180.0/22 7018 -12.47.184.0/21 7018 -12.47.192.0/21 7018 -12.47.200.0/22 7018 -12.47.204.0/24 53741 -12.47.205.0/24 7018 -12.47.206.0/23 7018 -12.47.208.0/24 33598 -12.47.209.0/24 7018 -12.47.210.0/24 7018 -12.47.211.0/24 33598 -12.47.212.0/22 7018 -12.47.216.0/21 7018 -12.47.224.0/21 7018 -12.47.232.0/24 29841 -12.47.233.0/24 7018 -12.47.234.0/23 7018 -12.47.236.0/22 7018 -12.47.240.0/20 7018 -12.48.0.0/22 7018 -12.48.4.0/24 26975 -12.48.5.0/24 7018 -12.48.6.0/23 7018 -12.48.8.0/21 7018 -12.48.16.0/20 7018 -12.48.32.0/20 7018 -12.48.48.0/21 7018 -12.48.56.0/22 7018 -12.48.60.0/23 7018 -12.48.62.0/24 7018 -12.48.63.0/24 40904 -12.48.64.0/19 7018 -12.48.96.0/20 7018 -12.48.112.0/23 7018 -12.48.114.0/24 30573 -12.48.115.0/24 7018 -12.48.116.0/22 7018 -12.48.120.0/21 7018 -12.48.128.0/24 7018 -12.48.129.0/24 27562 -12.48.130.0/23 7018 -12.48.132.0/22 7018 -12.48.136.0/21 7018 -12.48.144.0/21 7018 -12.48.152.0/23 7018 -12.48.154.0/23 18974 -12.48.156.0/22 2386 -12.48.160.0/19 7018 -12.48.192.0/18 7018 -12.49.0.0/22 7018 -12.49.4.0/23 7018 -12.49.6.0/24 16508 -12.49.7.0/24 7018 -12.49.8.0/24 7018 -12.49.9.0/24 26536 -12.49.10.0/24 7018 -12.49.11.0/24 32912 -12.49.12.0/22 7018 -12.49.16.0/20 7018 -12.49.32.0/20 7018 -12.49.48.0/21 7018 -12.49.56.0/24 15251 -12.49.57.0/24 7018 -12.49.58.0/24 63305 -12.49.59.0/24 7018 -12.49.60.0/22 7018 -12.49.64.0/18 7018 -12.49.128.0/18 7018 -12.49.192.0/21 7018 -12.49.200.0/23 7018 -12.49.202.0/24 7018 -12.49.203.0/24 394540 -12.49.204.0/23 6569 -12.49.206.0/23 7018 -12.49.208.0/20 7018 -12.49.224.0/20 7018 -12.49.240.0/22 7018 -12.49.244.0/24 10788 -12.49.245.0/24 7018 -12.49.246.0/23 7018 -12.49.248.0/21 7018 -12.50.0.0/24 7018 -12.50.1.0/24 2386 -12.50.2.0/23 7018 -12.50.4.0/22 7018 -12.50.8.0/24 7018 -12.50.9.0/24 26975 -12.50.10.0/23 7018 -12.50.12.0/22 7018 -12.50.16.0/23 397757 -12.50.18.0/24 26975 -12.50.19.0/24 7018 -12.50.20.0/22 7018 -12.50.24.0/21 7018 -12.50.32.0/23 7018 -12.50.34.0/24 7018 -12.50.35.0/24 63474 -12.50.36.0/22 7018 -12.50.40.0/21 7018 -12.50.48.0/21 7018 -12.50.56.0/22 7018 -12.50.60.0/22 2386 -12.50.64.0/18 7018 -12.50.128.0/17 7018 -12.51.0.0/20 7018 -12.51.16.0/21 7018 -12.51.24.0/23 7018 -12.51.26.0/24 26777 -12.51.27.0/24 7018 -12.51.28.0/23 7018 -12.51.30.0/24 1 -12.51.31.0/24 7018 -12.51.32.0/19 7018 -12.51.64.0/18 7018 -12.51.128.0/22 7018 -12.51.132.0/24 394763 -12.51.133.0/24 54210 -12.51.134.0/23 7018 -12.51.136.0/21 7018 -12.51.144.0/24 32912 -12.51.145.0/24 7018 -12.51.146.0/23 7018 -12.51.148.0/22 7018 -12.51.152.0/21 7018 -12.51.160.0/19 7018 -12.51.192.0/18 7018 -12.52.0.0/21 7018 -12.52.8.0/23 7018 -12.52.10.0/24 7018 -12.52.11.0/24 27548 -12.52.12.0/22 7018 -12.52.16.0/21 7018 -12.52.24.0/22 29841 -12.52.28.0/22 7018 -12.52.32.0/22 7018 -12.52.36.0/23 7018 -12.52.38.0/24 40743 -12.52.39.0/24 7018 -12.52.40.0/21 7018 -12.52.48.0/20 7018 -12.52.64.0/18 7018 -12.52.128.0/20 7018 -12.52.144.0/22 7018 -12.52.148.0/24 7018 -12.52.149.0/24 32912 -12.52.150.0/23 7018 -12.52.152.0/21 7018 -12.52.160.0/20 7018 -12.52.176.0/22 7018 -12.52.180.0/23 7018 -12.52.182.0/24 2386 -12.52.183.0/24 7018 -12.52.184.0/21 7018 -12.52.192.0/18 7018 -12.53.0.0/21 7018 -12.53.8.0/22 7018 -12.53.12.0/23 7018 -12.53.14.0/24 7018 -12.53.15.0/24 2386 -12.53.16.0/22 7018 -12.53.20.0/24 46668 -12.53.21.0/24 7018 -12.53.22.0/23 7018 -12.53.24.0/22 7018 -12.53.28.0/22 27482 -12.53.32.0/23 7018 -12.53.34.0/24 23016 -12.53.35.0/24 7018 -12.53.36.0/22 7018 -12.53.40.0/21 7018 -12.53.48.0/22 7018 -12.53.52.0/22 2386 -12.53.56.0/21 7018 -12.53.64.0/20 7018 -12.53.80.0/21 7018 -12.53.88.0/22 7018 -12.53.92.0/24 7018 -12.53.93.0/24 40584 -12.53.94.0/23 7018 -12.53.96.0/20 7018 -12.53.112.0/21 7018 -12.53.120.0/23 7018 -12.53.122.0/24 14748 -12.53.123.0/24 7018 -12.53.124.0/22 7018 -12.53.128.0/23 2727 -12.53.130.0/23 7018 -12.53.132.0/22 7018 -12.53.136.0/22 7018 -12.53.140.0/22 2727 -12.53.144.0/20 7018 -12.53.160.0/21 7018 -12.53.168.0/22 7018 -12.53.172.0/23 7018 -12.53.174.0/24 395621 -12.53.175.0/24 7018 -12.53.176.0/20 7018 -12.53.192.0/18 7018 -12.54.0.0/18 7018 -12.54.64.0/19 7018 -12.54.96.0/20 7018 -12.54.112.0/23 7018 -12.54.114.0/24 7018 -12.54.115.0/24 32608 -12.54.116.0/22 7018 -12.54.120.0/21 7018 -12.54.128.0/24 7018 -12.54.129.0/24 40410 -12.54.130.0/23 7018 -12.54.132.0/22 7018 -12.54.136.0/22 7018 -12.54.140.0/23 7018 -12.54.142.0/24 7018 -12.54.143.0/24 2386 -12.54.144.0/20 7018 -12.54.160.0/19 7018 -12.54.192.0/18 7018 -12.55.0.0/19 7018 -12.55.32.0/20 5728 -12.55.48.0/20 7018 -12.55.64.0/20 7018 -12.55.80.0/24 5728 -12.55.81.0/24 7018 -12.55.82.0/23 7018 -12.55.84.0/22 7018 -12.55.88.0/21 7018 -12.55.96.0/19 7018 -12.55.128.0/17 7018 -12.56.0.0/13 7018 -12.64.0.0/17 7018 -12.64.128.0/22 4264 -12.64.132.0/23 4264 -12.64.134.0/23 7018 -12.64.136.0/22 4264 -12.64.140.0/23 4264 -12.64.142.0/23 7018 -12.64.144.0/22 17231 -12.64.148.0/23 17231 -12.64.150.0/23 7018 -12.64.152.0/22 17231 -12.64.156.0/23 17231 -12.64.158.0/23 7018 -12.64.160.0/22 17229 -12.64.164.0/23 17229 -12.64.166.0/23 7018 -12.64.168.0/22 17229 -12.64.172.0/23 17229 -12.64.174.0/23 7018 -12.64.176.0/22 17228 -12.64.180.0/23 17228 -12.64.182.0/23 7018 -12.64.184.0/22 17228 -12.64.188.0/23 17228 -12.64.190.0/23 7018 -12.64.192.0/22 17227 -12.64.196.0/23 17227 -12.64.198.0/23 7018 -12.64.200.0/22 17227 -12.64.204.0/23 17227 -12.64.206.0/23 7018 -12.64.208.0/22 17233 -12.64.212.0/23 17233 -12.64.214.0/23 7018 -12.64.216.0/22 17233 -12.64.220.0/23 17233 -12.64.222.0/23 7018 -12.64.224.0/19 7018 -12.65.0.0/16 7018 -12.66.0.0/19 7018 -12.66.32.0/20 17231 -12.66.48.0/21 7018 -12.66.56.0/22 7018 -12.66.60.0/23 7018 -12.66.62.0/24 17227 -12.66.63.0/24 17231 -12.66.64.0/22 17231 -12.66.68.0/24 7018 -12.66.69.0/24 17231 -12.66.70.0/23 17231 -12.66.72.0/21 7018 -12.66.80.0/22 7018 -12.66.84.0/24 7018 -12.66.85.0/24 17227 -12.66.86.0/23 17227 -12.66.88.0/21 17227 -12.66.96.0/21 17227 -12.66.104.0/23 17227 -12.66.106.0/23 4267 -12.66.108.0/22 4267 -12.66.112.0/21 4267 -12.66.120.0/22 4267 -12.66.124.0/23 4267 -12.66.126.0/23 7018 -12.66.128.0/17 7018 -12.67.0.0/24 17229 -12.67.1.0/24 4264 -12.67.2.0/23 7018 -12.67.4.0/24 7018 -12.67.5.0/24 17227 -12.67.6.0/24 17231 -12.67.7.0/24 17233 -12.67.8.0/24 7018 -12.67.9.0/24 17231 -12.67.10.0/23 7018 -12.67.12.0/24 17226 -12.67.13.0/24 17229 -12.67.14.0/23 7018 -12.67.16.0/20 7018 -12.67.32.0/19 7018 -12.67.64.0/18 7018 -12.67.128.0/17 7018 -12.68.0.0/19 7018 -12.68.32.0/21 7018 -12.68.40.0/22 7018 -12.68.44.0/23 7018 -12.68.46.0/23 36753 -12.68.48.0/20 7018 -12.68.64.0/20 7018 -12.68.80.0/22 7018 -12.68.84.0/22 394540 -12.68.88.0/22 394540 -12.68.92.0/22 7018 -12.68.96.0/22 7018 -12.68.100.0/23 7018 -12.68.102.0/24 46752 -12.68.103.0/24 7018 -12.68.104.0/21 7018 -12.68.112.0/20 7018 -12.68.128.0/20 7018 -12.68.144.0/23 13628 -12.68.146.0/23 7018 -12.68.148.0/22 7018 -12.68.152.0/21 7018 -12.68.160.0/20 7018 -12.68.176.0/21 7018 -12.68.184.0/22 7018 -12.68.188.0/22 29841 -12.68.192.0/19 7018 -12.68.224.0/22 7018 -12.68.228.0/23 7018 -12.68.230.0/24 13355 -12.68.231.0/24 7018 -12.68.232.0/23 7018 -12.68.234.0/24 7018 -12.68.235.0/24 32140 -12.68.236.0/22 7018 -12.68.240.0/21 7018 -12.68.248.0/23 7018 -12.68.250.0/24 2386 -12.68.251.0/24 7018 -12.68.252.0/22 7018 -12.69.0.0/19 7018 -12.69.32.0/22 7018 -12.69.36.0/23 7018 -12.69.38.0/24 7018 -12.69.39.0/24 40844 -12.69.40.0/21 7018 -12.69.48.0/21 7018 -12.69.56.0/22 7018 -12.69.60.0/24 2386 -12.69.61.0/24 7018 -12.69.62.0/23 7018 -12.69.64.0/19 7018 -12.69.96.0/21 7018 -12.69.104.0/23 7018 -12.69.106.0/24 394845 -12.69.107.0/24 7018 -12.69.108.0/22 7018 -12.69.112.0/20 7018 -12.69.128.0/19 7018 -12.69.160.0/21 7018 -12.69.168.0/22 7018 -12.69.172.0/24 1444 -12.69.173.0/24 7018 -12.69.174.0/23 7018 -12.69.176.0/24 7018 -12.69.177.0/24 395975 -12.69.178.0/23 7018 -12.69.180.0/22 7018 -12.69.184.0/22 7018 -12.69.188.0/23 7018 -12.69.190.0/24 54731 -12.69.191.0/24 7018 -12.69.192.0/19 7018 -12.69.224.0/23 7018 -12.69.226.0/24 2386 -12.69.227.0/24 7018 -12.69.228.0/22 7018 -12.69.232.0/21 7018 -12.69.240.0/20 7018 -12.70.0.0/17 7018 -12.70.128.0/19 7018 -12.70.160.0/22 7018 -12.70.164.0/23 2386 -12.70.166.0/23 7018 -12.70.168.0/21 7018 -12.70.176.0/20 7018 -12.70.192.0/19 7018 -12.70.224.0/20 7018 -12.70.240.0/23 7018 -12.70.242.0/24 7018 -12.70.243.0/24 2386 -12.70.244.0/22 7018 -12.70.248.0/22 7018 -12.70.252.0/24 63047 -12.70.253.0/24 7018 -12.70.254.0/23 7018 -12.71.0.0/18 7018 -12.71.64.0/21 7018 -12.71.72.0/22 7018 -12.71.76.0/24 7018 -12.71.77.0/24 4473 -12.71.78.0/23 7018 -12.71.80.0/20 7018 -12.71.96.0/20 7018 -12.71.112.0/23 7018 -12.71.114.0/24 7018 -12.71.115.0/24 46229 -12.71.116.0/22 7018 -12.71.120.0/21 7018 -12.71.128.0/19 7018 -12.71.160.0/20 7018 -12.71.176.0/22 7018 -12.71.180.0/24 7018 -12.71.181.0/24 395069 -12.71.182.0/24 7018 -12.71.183.0/24 7381 -12.71.184.0/22 7018 -12.71.188.0/24 7018 -12.71.189.0/24 35910 -12.71.190.0/23 7018 -12.71.192.0/24 40919 -12.71.193.0/24 7018 -12.71.194.0/23 7018 -12.71.196.0/22 7018 -12.71.200.0/21 7018 -12.71.208.0/20 7018 -12.71.224.0/21 7018 -12.71.232.0/22 7018 -12.71.236.0/24 2386 -12.71.237.0/24 7018 -12.71.238.0/23 7018 -12.71.240.0/20 7018 -12.72.0.0/14 7018 -12.76.0.0/15 7018 -12.78.0.0/18 7018 -12.78.64.0/19 7018 -12.78.96.0/21 7018 -12.78.104.0/22 7018 -12.78.108.0/23 7018 -12.78.110.0/23 5728 -12.78.112.0/20 5728 -12.78.128.0/17 7018 -12.79.0.0/16 7018 -12.80.0.0/19 7018 -12.80.32.0/20 7018 -12.80.48.0/22 7018 -12.80.52.0/23 7018 -12.80.54.0/24 4466 -12.80.55.0/24 7018 -12.80.56.0/21 7018 -12.80.64.0/21 7018 -12.80.72.0/22 7018 -12.80.76.0/23 4466 -12.80.78.0/23 7018 -12.80.80.0/24 7018 -12.80.81.0/24 4466 -12.80.82.0/23 7018 -12.80.84.0/22 7018 -12.80.88.0/21 7018 -12.80.96.0/19 7018 -12.80.128.0/18 7018 -12.80.192.0/19 7018 -12.80.224.0/22 7018 -12.80.228.0/24 7018 -12.80.229.0/24 4466 -12.80.230.0/24 4466 -12.80.231.0/24 7018 -12.80.232.0/22 4466 -12.80.236.0/22 7018 -12.80.240.0/20 7018 -12.81.0.0/18 7018 -12.81.64.0/20 7018 -12.81.80.0/21 7018 -12.81.88.0/23 7018 -12.81.90.0/23 6389 -12.81.92.0/22 7018 -12.81.96.0/20 7018 -12.81.112.0/21 7018 -12.81.120.0/24 6389 -12.81.121.0/24 7018 -12.81.122.0/23 7018 -12.81.124.0/22 7018 -12.81.128.0/17 7018 -12.82.0.0/15 7018 -12.84.0.0/14 7018 -12.88.0.0/13 7018 -12.96.0.0/21 7018 -12.96.8.0/24 27548 -12.96.9.0/24 7018 -12.96.10.0/23 7018 -12.96.12.0/22 7018 -12.96.16.0/20 7018 -12.96.32.0/21 7018 -12.96.40.0/23 7018 -12.96.42.0/24 7018 -12.96.43.0/24 3423 -12.96.44.0/23 7018 -12.96.46.0/24 3423 -12.96.47.0/24 7018 -12.96.48.0/21 7018 -12.96.56.0/23 7018 -12.96.58.0/24 11496 -12.96.59.0/24 7018 -12.96.60.0/22 7018 -12.96.64.0/19 7018 -12.96.96.0/24 32617 -12.96.97.0/24 16593 -12.96.98.0/23 7018 -12.96.100.0/22 7018 -12.96.104.0/21 7018 -12.96.112.0/20 7018 -12.96.128.0/21 7018 -12.96.136.0/24 2386 -12.96.137.0/24 7018 -12.96.138.0/23 7018 -12.96.140.0/22 7018 -12.96.144.0/20 7018 -12.96.160.0/21 36351 -12.96.168.0/21 7018 -12.96.176.0/20 7018 -12.96.192.0/18 7018 -12.97.0.0/20 7018 -12.97.16.0/24 7018 -12.97.17.0/24 14696 -12.97.18.0/23 7018 -12.97.20.0/22 7018 -12.97.24.0/21 7018 -12.97.32.0/20 7018 -12.97.48.0/21 7018 -12.97.56.0/24 396134 -12.97.57.0/24 7018 -12.97.58.0/23 7018 -12.97.60.0/22 7018 -12.97.64.0/23 393508 -12.97.66.0/24 393508 -12.97.67.0/24 7018 -12.97.68.0/24 7018 -12.97.69.0/24 62721 -12.97.70.0/23 7018 -12.97.72.0/21 7018 -12.97.80.0/20 7018 -12.97.96.0/19 7018 -12.97.128.0/23 21945 -12.97.130.0/23 7018 -12.97.132.0/22 7018 -12.97.136.0/22 7018 -12.97.140.0/24 62747 -12.97.141.0/24 7018 -12.97.142.0/23 7018 -12.97.144.0/22 7018 -12.97.148.0/24 4473 -12.97.149.0/24 7018 -12.97.150.0/23 7018 -12.97.152.0/21 7018 -12.97.160.0/20 7018 -12.97.176.0/22 7018 -12.97.180.0/23 7018 -12.97.182.0/24 394041 -12.97.183.0/24 7018 -12.97.184.0/21 7018 -12.97.192.0/18 7018 -12.98.0.0/15 7018 -12.100.0.0/15 7018 -12.102.0.0/17 7018 -12.102.128.0/18 7018 -12.102.192.0/24 7018 -12.102.193.0/24 17224 -12.102.194.0/24 17224 -12.102.195.0/24 7018 -12.102.196.0/22 17224 -12.102.200.0/24 7018 -12.102.201.0/24 17224 -12.102.202.0/23 17224 -12.102.204.0/23 7018 -12.102.206.0/24 7018 -12.102.207.0/24 17224 -12.102.208.0/22 17224 -12.102.212.0/22 7018 -12.102.216.0/21 7018 -12.102.224.0/19 7018 -12.103.0.0/16 7018 -12.104.0.0/21 7018 -12.104.8.0/22 7018 -12.104.12.0/23 7018 -12.104.14.0/23 16669 -12.104.16.0/20 7018 -12.104.32.0/21 7018 -12.104.40.0/22 7018 -12.104.44.0/23 7018 -12.104.46.0/24 7018 -12.104.47.0/24 25930 -12.104.48.0/21 7018 -12.104.56.0/22 7018 -12.104.60.0/24 2386 -12.104.61.0/24 7018 -12.104.62.0/24 7018 -12.104.63.0/24 14119 -12.104.64.0/20 7018 -12.104.80.0/21 7018 -12.104.88.0/23 7018 -12.104.90.0/24 7018 -12.104.91.0/24 2386 -12.104.92.0/22 7018 -12.104.96.0/20 7018 -12.104.112.0/24 7018 -12.104.113.0/24 27358 -12.104.114.0/24 27358 -12.104.115.0/24 7018 -12.104.116.0/22 7018 -12.104.120.0/21 7018 -12.104.128.0/20 7018 -12.104.144.0/24 2386 -12.104.145.0/24 7018 -12.104.146.0/23 7018 -12.104.148.0/24 2386 -12.104.149.0/24 7018 -12.104.150.0/23 7018 -12.104.152.0/21 7018 -12.104.160.0/19 7018 -12.104.192.0/22 7018 -12.104.196.0/24 16618 -12.104.197.0/24 7018 -12.104.198.0/23 7018 -12.104.200.0/24 7018 -12.104.201.0/24 2386 -12.104.202.0/23 7018 -12.104.204.0/24 7018 -12.104.205.0/24 20170 -12.104.206.0/23 7018 -12.104.208.0/21 7018 -12.104.216.0/23 7018 -12.104.218.0/24 2386 -12.104.219.0/24 7018 -12.104.220.0/22 7018 -12.104.224.0/22 7018 -12.104.228.0/24 7018 -12.104.229.0/24 23019 -12.104.230.0/23 7018 -12.104.232.0/21 7018 -12.104.240.0/22 7018 -12.104.244.0/24 15343 -12.104.245.0/24 7018 -12.104.246.0/23 7018 -12.104.248.0/21 7018 -12.105.0.0/19 7018 -12.105.32.0/20 7018 -12.105.48.0/21 54690 -12.105.56.0/21 7018 -12.105.64.0/18 7018 -12.105.128.0/21 7018 -12.105.136.0/22 7018 -12.105.140.0/23 7018 -12.105.142.0/24 2386 -12.105.143.0/24 7018 -12.105.144.0/20 7018 -12.105.160.0/20 7018 -12.105.176.0/21 7018 -12.105.184.0/24 7018 -12.105.185.0/24 6307 -12.105.186.0/23 7018 -12.105.188.0/22 7018 -12.105.192.0/24 15262 -12.105.193.0/24 7018 -12.105.194.0/23 7018 -12.105.196.0/24 20426 -12.105.197.0/24 7018 -12.105.198.0/23 7018 -12.105.200.0/21 7018 -12.105.208.0/20 7018 -12.105.224.0/19 7018 -12.106.0.0/19 7018 -12.106.32.0/22 6431 -12.106.36.0/22 7018 -12.106.40.0/21 7018 -12.106.48.0/20 7018 -12.106.64.0/20 7018 -12.106.80.0/22 7018 -12.106.84.0/23 7018 -12.106.86.0/24 16455 -12.106.87.0/24 395971 -12.106.88.0/21 7018 -12.106.96.0/21 7018 -12.106.104.0/23 7018 -12.106.106.0/24 7018 -12.106.107.0/24 201093 -12.106.108.0/22 7018 -12.106.112.0/20 7018 -12.106.128.0/20 7018 -12.106.144.0/22 7018 -12.106.148.0/23 7018 -12.106.150.0/24 7018 -12.106.151.0/24 13396 -12.106.152.0/21 7018 -12.106.160.0/20 7018 -12.106.176.0/21 7018 -12.106.184.0/22 7018 -12.106.188.0/24 2386 -12.106.189.0/24 7018 -12.106.190.0/23 7018 -12.106.192.0/19 7018 -12.106.224.0/20 7018 -12.106.240.0/24 2386 -12.106.241.0/24 395230 -12.106.242.0/23 7018 -12.106.244.0/22 7018 -12.106.248.0/21 7018 -12.107.0.0/23 7018 -12.107.2.0/24 7018 -12.107.3.0/24 31805 -12.107.4.0/22 7018 -12.107.8.0/21 7018 -12.107.16.0/20 7018 -12.107.32.0/20 7018 -12.107.48.0/22 7018 -12.107.52.0/24 30082 -12.107.53.0/24 7018 -12.107.54.0/23 7018 -12.107.56.0/21 7018 -12.107.64.0/20 7018 -12.107.80.0/21 7018 -12.107.88.0/22 7018 -12.107.92.0/23 7018 -12.107.94.0/24 7018 -12.107.95.0/24 2386 -12.107.96.0/19 7018 -12.107.128.0/23 7018 -12.107.130.0/24 18585 -12.107.131.0/24 7018 -12.107.132.0/22 7018 -12.107.136.0/21 7018 -12.107.144.0/22 7018 -12.107.148.0/24 36059 -12.107.149.0/24 7018 -12.107.150.0/23 7018 -12.107.152.0/21 7018 -12.107.160.0/21 7018 -12.107.168.0/22 7018 -12.107.172.0/24 30356 -12.107.173.0/24 7018 -12.107.174.0/23 7018 -12.107.176.0/23 7018 -12.107.178.0/24 33311 -12.107.179.0/24 7018 -12.107.180.0/22 7018 -12.107.184.0/23 7018 -12.107.186.0/24 7018 -12.107.187.0/24 18539 -12.107.188.0/22 7018 -12.107.192.0/21 7018 -12.107.200.0/22 7018 -12.107.204.0/23 2386 -12.107.206.0/23 7018 -12.107.208.0/21 7018 -12.107.216.0/23 7018 -12.107.218.0/24 7018 -12.107.219.0/24 55083 -12.107.220.0/22 7018 -12.107.224.0/22 7018 -12.107.228.0/24 7018 -12.107.229.0/24 26964 -12.107.230.0/24 12261 -12.107.231.0/24 7018 -12.107.232.0/24 14381 -12.107.233.0/24 7018 -12.107.234.0/23 7018 -12.107.236.0/22 7018 -12.107.240.0/21 7018 -12.107.248.0/24 7018 -12.107.249.0/24 12261 -12.107.250.0/23 12261 -12.107.252.0/22 7018 -12.108.0.0/21 7018 -12.108.8.0/23 7018 -12.108.10.0/24 11066 -12.108.11.0/24 7018 -12.108.12.0/22 7018 -12.108.16.0/20 7018 -12.108.32.0/19 7018 -12.108.64.0/22 7018 -12.108.68.0/24 30647 -12.108.69.0/24 2386 -12.108.70.0/23 7018 -12.108.72.0/23 7018 -12.108.74.0/24 393469 -12.108.75.0/24 7018 -12.108.76.0/22 7018 -12.108.80.0/20 7018 -12.108.96.0/19 7018 -12.108.128.0/20 7018 -12.108.144.0/21 7018 -12.108.152.0/24 30509 -12.108.153.0/24 7018 -12.108.154.0/23 7018 -12.108.156.0/23 7018 -12.108.158.0/23 2386 -12.108.160.0/20 7018 -12.108.176.0/23 7018 -12.108.178.0/24 7018 -12.108.179.0/24 33025 -12.108.180.0/22 7018 -12.108.184.0/21 7018 -12.108.192.0/20 7018 -12.108.208.0/21 7018 -12.108.216.0/24 17229 -12.108.217.0/24 30452 -12.108.218.0/23 7018 -12.108.220.0/22 7018 -12.108.224.0/20 7018 -12.108.240.0/21 7018 -12.108.248.0/22 7018 -12.108.252.0/23 7018 -12.108.254.0/24 26829 -12.108.255.0/24 2386 -12.109.0.0/19 7018 -12.109.32.0/21 7018 -12.109.40.0/22 7018 -12.109.44.0/24 7018 -12.109.45.0/24 32206 -12.109.46.0/23 7018 -12.109.48.0/20 7018 -12.109.64.0/22 7018 -12.109.68.0/23 7018 -12.109.70.0/24 7018 -12.109.71.0/24 20004 -12.109.72.0/23 7018 -12.109.74.0/24 7018 -12.109.75.0/24 14094 -12.109.76.0/23 7018 -12.109.78.0/24 7018 -12.109.79.0/24 394633 -12.109.80.0/22 17229 -12.109.84.0/24 7018 -12.109.85.0/24 21822 -12.109.86.0/23 7018 -12.109.88.0/21 7018 -12.109.96.0/24 40404 -12.109.97.0/24 7018 -12.109.98.0/23 7018 -12.109.100.0/23 7018 -12.109.102.0/24 40098 -12.109.103.0/24 7018 -12.109.104.0/22 7018 -12.109.108.0/24 7018 -12.109.109.0/24 20133 -12.109.110.0/23 7018 -12.109.112.0/21 7018 -12.109.120.0/24 7018 -12.109.121.0/24 393896 -12.109.122.0/23 7018 -12.109.124.0/22 7018 -12.109.128.0/19 7018 -12.109.160.0/22 7018 -12.109.164.0/24 12169 -12.109.165.0/24 7018 -12.109.166.0/23 7018 -12.109.168.0/21 7018 -12.109.176.0/20 7018 -12.109.192.0/19 7018 -12.109.224.0/22 19610 -12.109.228.0/22 7018 -12.109.232.0/21 7018 -12.109.240.0/20 7018 -12.110.0.0/17 7018 -12.110.128.0/19 7018 -12.110.160.0/21 7018 -12.110.168.0/22 7018 -12.110.172.0/24 20217 -12.110.173.0/24 7018 -12.110.174.0/23 7018 -12.110.176.0/21 7018 -12.110.184.0/22 7018 -12.110.188.0/24 13976 -12.110.189.0/24 7018 -12.110.190.0/23 7018 -12.110.192.0/22 7018 -12.110.196.0/23 7018 -12.110.198.0/24 32158 -12.110.199.0/24 20118 -12.110.200.0/24 7018 -12.110.201.0/24 1609 -12.110.202.0/23 7018 -12.110.204.0/22 7018 -12.110.208.0/22 7018 -12.110.212.0/24 22048 -12.110.213.0/24 7018 -12.110.214.0/23 7018 -12.110.216.0/21 7018 -12.110.224.0/21 7018 -12.110.232.0/22 7018 -12.110.236.0/23 7018 -12.110.238.0/24 14010 -12.110.239.0/24 7018 -12.110.240.0/20 7018 -12.111.0.0/20 7018 -12.111.16.0/23 7018 -12.111.18.0/24 7018 -12.111.19.0/24 26075 -12.111.20.0/22 7018 -12.111.24.0/21 7018 -12.111.32.0/20 7018 -12.111.48.0/22 7018 -12.111.52.0/24 15051 -12.111.53.0/24 7018 -12.111.54.0/23 7018 -12.111.56.0/22 7018 -12.111.60.0/23 27271 -12.111.62.0/23 7018 -12.111.64.0/19 7018 -12.111.96.0/21 7018 -12.111.104.0/24 13695 -12.111.105.0/24 7018 -12.111.106.0/23 7018 -12.111.108.0/22 7018 -12.111.112.0/20 7018 -12.111.128.0/19 7018 -12.111.160.0/22 7018 -12.111.164.0/24 7018 -12.111.165.0/24 32869 -12.111.166.0/23 7018 -12.111.168.0/24 18509 -12.111.169.0/24 7018 -12.111.170.0/23 7018 -12.111.172.0/22 7018 -12.111.176.0/21 7018 -12.111.184.0/23 18509 -12.111.186.0/23 7018 -12.111.188.0/24 7018 -12.111.189.0/24 32869 -12.111.190.0/24 18509 -12.111.191.0/24 7018 -12.111.192.0/21 7018 -12.111.200.0/22 7018 -12.111.204.0/24 7018 -12.111.205.0/24 393321 -12.111.206.0/23 7018 -12.111.208.0/22 7018 -12.111.212.0/23 7018 -12.111.214.0/24 26789 -12.111.215.0/24 7018 -12.111.216.0/22 7018 -12.111.220.0/23 7018 -12.111.222.0/24 7018 -12.111.223.0/24 23094 -12.111.224.0/19 7018 -12.112.0.0/13 7018 -12.120.0.0/24 7018 -12.120.1.0/24 4466 -12.120.2.0/23 4466 -12.120.4.0/23 7018 -12.120.6.0/23 4466 -12.120.8.0/23 7018 -12.120.10.0/23 4466 -12.120.12.0/23 7018 -12.120.14.0/23 4466 -12.120.16.0/23 7018 -12.120.18.0/23 4466 -12.120.20.0/24 7018 -12.120.21.0/24 4466 -12.120.22.0/24 7018 -12.120.23.0/24 4466 -12.120.24.0/23 7018 -12.120.26.0/23 4466 -12.120.28.0/23 7018 -12.120.30.0/23 4466 -12.120.32.0/22 7018 -12.120.36.0/24 4466 -12.120.37.0/24 7018 -12.120.38.0/23 7018 -12.120.40.0/23 4466 -12.120.42.0/23 7018 -12.120.44.0/22 7018 -12.120.48.0/23 7018 -12.120.50.0/24 4466 -12.120.51.0/24 7018 -12.120.52.0/23 7018 -12.120.54.0/24 4466 -12.120.55.0/24 7018 -12.120.56.0/24 7018 -12.120.57.0/24 4466 -12.120.58.0/24 4466 -12.120.59.0/24 7018 -12.120.60.0/22 7018 -12.120.64.0/20 7018 -12.120.80.0/24 7018 -12.120.81.0/24 4466 -12.120.82.0/23 7018 -12.120.84.0/24 7018 -12.120.85.0/24 4466 -12.120.86.0/23 7018 -12.120.88.0/21 7018 -12.120.96.0/21 7018 -12.120.104.0/23 7018 -12.120.106.0/23 4466 -12.120.108.0/23 4466 -12.120.110.0/24 7018 -12.120.111.0/24 4466 -12.120.112.0/22 4466 -12.120.116.0/23 4466 -12.120.118.0/23 7018 -12.120.120.0/21 7018 -12.120.128.0/24 4466 -12.120.129.0/24 7018 -12.120.130.0/23 7018 -12.120.132.0/22 7018 -12.120.136.0/24 4466 -12.120.137.0/24 7018 -12.120.138.0/24 4466 -12.120.139.0/24 7018 -12.120.140.0/24 4466 -12.120.141.0/24 7018 -12.120.142.0/24 4466 -12.120.143.0/24 7018 -12.120.144.0/23 7018 -12.120.146.0/24 4466 -12.120.147.0/24 7018 -12.120.148.0/24 4466 -12.120.149.0/24 7018 -12.120.150.0/23 7018 -12.120.152.0/24 4466 -12.120.153.0/24 7018 -12.120.154.0/23 7018 -12.120.156.0/22 7018 -12.120.160.0/24 4466 -12.120.161.0/24 7018 -12.120.162.0/24 4466 -12.120.163.0/24 7018 -12.120.164.0/24 7018 -12.120.165.0/24 4466 -12.120.166.0/23 7018 -12.120.168.0/24 4466 -12.120.169.0/24 7018 -12.120.170.0/23 7018 -12.120.172.0/22 7018 -12.120.176.0/22 7018 -12.120.180.0/23 7018 -12.120.182.0/23 4466 -12.120.184.0/22 4466 -12.120.188.0/22 7018 -12.120.192.0/22 7018 -12.120.196.0/22 17224 -12.120.200.0/21 17224 -12.120.208.0/21 17224 -12.120.216.0/22 7018 -12.120.220.0/24 4465 -12.120.221.0/24 7018 -12.120.222.0/23 7018 -12.120.224.0/20 7018 -12.120.240.0/22 7018 -12.120.244.0/24 4465 -12.120.245.0/24 7018 -12.120.246.0/23 7018 -12.120.248.0/21 7018 -12.121.0.0/18 7018 -12.121.64.0/19 7018 -12.121.96.0/22 17224 -12.121.100.0/24 17224 -12.121.101.0/24 7018 -12.121.102.0/24 17224 -12.121.103.0/24 7018 -12.121.104.0/24 17224 -12.121.105.0/24 7018 -12.121.106.0/24 17224 -12.121.107.0/24 7018 -12.121.108.0/22 7018 -12.121.112.0/21 7018 -12.121.120.0/22 7018 -12.121.124.0/22 4466 -12.121.128.0/17 7018 -12.122.0.0/15 7018 -12.124.0.0/14 7018 -12.128.0.0/16 7018 -12.129.0.0/22 17226 -12.129.4.0/24 17226 -12.129.5.0/24 16763 -12.129.6.0/23 17226 -12.129.8.0/23 17226 -12.129.10.0/24 7018 -12.129.11.0/24 17226 -12.129.12.0/22 17226 -12.129.16.0/22 17226 -12.129.20.0/24 7018 -12.129.21.0/24 17226 -12.129.22.0/23 17226 -12.129.24.0/23 17226 -12.129.26.0/24 7018 -12.129.27.0/24 17226 -12.129.28.0/24 7018 -12.129.29.0/24 36803 -12.129.30.0/23 17226 -12.129.32.0/22 36803 -12.129.36.0/22 17226 -12.129.40.0/21 17226 -12.129.48.0/20 17232 -12.129.64.0/20 17228 -12.129.80.0/23 17228 -12.129.82.0/24 40631 -12.129.83.0/24 17228 -12.129.84.0/24 17228 -12.129.85.0/24 7018 -12.129.86.0/23 17228 -12.129.88.0/24 17228 -12.129.89.0/24 7018 -12.129.90.0/23 17228 -12.129.92.0/23 17228 -12.129.94.0/24 11539 -12.129.95.0/24 17228 -12.129.96.0/22 17228 -12.129.100.0/24 7018 -12.129.101.0/24 17228 -12.129.102.0/23 17228 -12.129.104.0/21 17228 -12.129.112.0/23 17228 -12.129.114.0/24 55083 -12.129.115.0/24 17228 -12.129.116.0/24 7018 -12.129.117.0/24 17228 -12.129.118.0/23 17228 -12.129.120.0/21 17228 -12.129.128.0/20 7018 -12.129.144.0/21 7018 -12.129.152.0/22 7018 -12.129.156.0/23 29944 -12.129.158.0/23 7018 -12.129.160.0/24 23189 -12.129.161.0/24 7018 -12.129.162.0/23 7018 -12.129.164.0/24 7018 -12.129.165.0/24 12225 -12.129.166.0/23 7018 -12.129.168.0/24 395231 -12.129.169.0/24 7018 -12.129.170.0/23 7018 -12.129.172.0/24 46803 -12.129.173.0/24 7018 -12.129.174.0/23 7018 -12.129.176.0/20 7018 -12.129.192.0/21 17233 -12.129.200.0/24 17233 -12.129.201.0/24 16966 -12.129.202.0/23 17233 -12.129.204.0/23 16966 -12.129.206.0/24 7018 -12.129.207.0/24 17233 -12.129.208.0/20 17233 -12.129.224.0/23 17233 -12.129.226.0/24 17233 -12.129.227.0/24 7018 -12.129.228.0/22 17233 -12.129.232.0/21 17233 -12.129.240.0/24 17233 -12.129.241.0/24 7018 -12.129.242.0/23 7018 -12.129.244.0/22 17233 -12.129.248.0/21 17233 -12.130.0.0/21 17225 -12.130.8.0/22 17225 -12.130.12.0/24 17225 -12.130.13.0/24 17088 -12.130.14.0/23 17225 -12.130.16.0/21 17225 -12.130.24.0/23 17225 -12.130.26.0/24 17225 -12.130.27.0/24 36271 -12.130.28.0/22 17225 -12.130.32.0/24 393255 -12.130.33.0/24 17225 -12.130.34.0/23 17225 -12.130.36.0/22 17225 -12.130.40.0/24 27178 -12.130.41.0/24 17225 -12.130.42.0/23 17225 -12.130.44.0/22 17225 -12.130.48.0/20 17225 -12.130.64.0/21 4266 -12.130.72.0/22 4266 -12.130.76.0/22 13788 -12.130.80.0/22 4264 -12.130.84.0/23 4264 -12.130.86.0/23 7172 -12.130.88.0/22 4265 -12.130.92.0/24 4265 -12.130.93.0/24 7018 -12.130.94.0/24 7018 -12.130.95.0/24 4265 -12.130.96.0/22 4262 -12.130.100.0/24 4262 -12.130.101.0/24 7018 -12.130.102.0/23 4262 -12.130.104.0/22 4262 -12.130.108.0/22 7018 -12.130.112.0/21 4262 -12.130.120.0/24 7018 -12.130.121.0/24 4262 -12.130.122.0/23 4262 -12.130.124.0/22 4262 -12.130.128.0/23 4263 -12.130.130.0/24 4263 -12.130.131.0/24 21621 -12.130.132.0/23 4263 -12.130.134.0/24 4263 -12.130.135.0/24 21621 -12.130.136.0/22 21621 -12.130.140.0/24 4263 -12.130.141.0/24 21621 -12.130.142.0/24 4263 -12.130.143.0/24 11261 -12.130.144.0/24 4263 -12.130.145.0/24 11261 -12.130.146.0/23 4263 -12.130.148.0/23 7018 -12.130.150.0/23 4263 -12.130.152.0/24 4263 -12.130.153.0/24 21621 -12.130.154.0/24 21621 -12.130.155.0/24 11261 -12.130.156.0/24 7018 -12.130.157.0/24 4263 -12.130.158.0/24 21621 -12.130.159.0/24 4263 -12.130.160.0/20 2386 -12.130.176.0/23 7018 -12.130.178.0/24 21621 -12.130.179.0/24 4263 -12.130.180.0/22 2386 -12.130.184.0/22 2386 -12.130.188.0/24 21621 -12.130.189.0/24 4263 -12.130.190.0/23 2386 -12.130.192.0/24 7018 -12.130.193.0/24 17232 -12.130.194.0/23 17232 -12.130.196.0/24 17232 -12.130.197.0/24 2386 -12.130.198.0/23 2386 -12.130.200.0/24 62811 -12.130.201.0/24 16966 -12.130.202.0/23 16966 -12.130.204.0/22 16966 -12.130.208.0/23 17228 -12.130.210.0/23 55083 -12.130.212.0/22 17228 -12.130.216.0/23 4263 -12.130.218.0/23 2386 -12.130.220.0/22 4263 -12.130.224.0/21 7018 -12.130.232.0/22 17227 -12.130.236.0/24 18604 -12.130.237.0/24 17227 -12.130.238.0/24 17227 -12.130.239.0/24 36271 -12.130.240.0/21 17233 -12.130.248.0/21 16967 -12.131.0.0/20 7018 -12.131.16.0/21 7018 -12.131.24.0/23 7018 -12.131.26.0/24 7018 -12.131.27.0/24 2386 -12.131.28.0/22 7018 -12.131.32.0/19 7018 -12.131.64.0/19 7018 -12.131.96.0/22 7018 -12.131.100.0/23 15085 -12.131.102.0/23 7018 -12.131.104.0/21 7018 -12.131.112.0/22 7018 -12.131.116.0/24 27358 -12.131.117.0/24 7018 -12.131.118.0/23 7018 -12.131.120.0/24 7018 -12.131.121.0/24 2386 -12.131.122.0/23 7018 -12.131.124.0/22 7018 -12.131.128.0/24 7018 -12.131.129.0/24 3423 -12.131.130.0/23 7018 -12.131.132.0/22 7018 -12.131.136.0/21 7018 -12.131.144.0/23 7018 -12.131.146.0/24 7018 -12.131.147.0/24 4057 -12.131.148.0/24 53396 -12.131.149.0/24 7018 -12.131.150.0/23 7018 -12.131.152.0/21 7018 -12.131.160.0/23 7018 -12.131.162.0/24 15023 -12.131.163.0/24 7018 -12.131.164.0/22 7018 -12.131.168.0/21 7018 -12.131.176.0/20 7018 -12.131.192.0/18 7018 -12.132.0.0/20 7018 -12.132.16.0/22 7018 -12.132.20.0/23 7018 -12.132.22.0/24 21791 -12.132.23.0/24 7018 -12.132.24.0/21 7018 -12.132.32.0/19 7018 -12.132.64.0/20 7018 -12.132.80.0/21 7018 -12.132.88.0/22 7018 -12.132.92.0/24 54578 -12.132.93.0/24 7018 -12.132.94.0/23 7018 -12.132.96.0/21 7018 -12.132.104.0/24 27309 -12.132.105.0/24 54420 -12.132.106.0/23 7018 -12.132.108.0/24 7018 -12.132.109.0/24 32158 -12.132.110.0/23 7018 -12.132.112.0/20 7018 -12.132.128.0/24 22916 -12.132.129.0/24 7018 -12.132.130.0/23 7018 -12.132.132.0/22 7018 -12.132.136.0/21 7018 -12.132.144.0/20 7018 -12.132.160.0/19 7018 -12.132.192.0/20 7018 -12.132.208.0/22 7018 -12.132.212.0/24 7018 -12.132.213.0/24 396911 -12.132.214.0/23 7018 -12.132.216.0/21 7018 -12.132.224.0/19 7018 -12.133.0.0/22 7018 -12.133.4.0/23 7018 -12.133.6.0/24 46676 -12.133.7.0/24 7018 -12.133.8.0/21 7018 -12.133.16.0/20 7018 -12.133.32.0/22 7018 -12.133.36.0/23 7018 -12.133.38.0/24 7018 -12.133.39.0/24 2386 -12.133.40.0/22 7018 -12.133.44.0/24 7018 -12.133.45.0/24 53719 -12.133.46.0/23 7018 -12.133.48.0/20 7018 -12.133.64.0/20 7018 -12.133.80.0/22 7018 -12.133.84.0/23 7018 -12.133.86.0/24 7018 -12.133.87.0/24 21880 -12.133.88.0/21 7018 -12.133.96.0/20 7018 -12.133.112.0/21 7018 -12.133.120.0/22 27482 -12.133.124.0/23 7018 -12.133.126.0/24 27485 -12.133.127.0/24 7018 -12.133.128.0/19 7018 -12.133.160.0/20 7018 -12.133.176.0/21 7018 -12.133.184.0/22 7018 -12.133.188.0/24 32300 -12.133.189.0/24 7018 -12.133.190.0/23 7018 -12.133.192.0/19 7018 -12.133.224.0/20 7018 -12.133.240.0/21 7018 -12.133.248.0/22 7018 -12.133.252.0/24 7018 -12.133.253.0/24 397593 -12.133.254.0/23 7018 -12.134.0.0/15 7018 -12.136.0.0/15 7018 -12.138.0.0/16 7018 -12.139.0.0/22 7018 -12.139.4.0/24 26028 -12.139.5.0/24 7018 -12.139.6.0/23 7018 -12.139.8.0/21 7018 -12.139.16.0/21 7018 -12.139.24.0/24 7018 -12.139.25.0/24 20240 -12.139.26.0/23 7018 -12.139.28.0/22 7018 -12.139.32.0/21 7018 -12.139.40.0/22 2386 -12.139.44.0/22 30091 -12.139.48.0/21 7018 -12.139.56.0/22 7018 -12.139.60.0/23 7018 -12.139.62.0/23 2386 -12.139.64.0/22 7018 -12.139.68.0/23 7018 -12.139.70.0/24 12246 -12.139.71.0/24 7018 -12.139.72.0/23 7018 -12.139.74.0/24 17365 -12.139.75.0/24 7018 -12.139.76.0/23 7018 -12.139.78.0/24 30450 -12.139.79.0/24 7018 -12.139.80.0/24 7018 -12.139.81.0/24 22535 -12.139.82.0/24 7018 -12.139.83.0/24 32486 -12.139.84.0/22 7018 -12.139.88.0/22 7018 -12.139.92.0/22 2386 -12.139.96.0/21 7018 -12.139.104.0/22 7018 -12.139.108.0/24 7018 -12.139.109.0/24 53432 -12.139.110.0/23 7018 -12.139.112.0/23 7018 -12.139.114.0/24 2386 -12.139.115.0/24 7018 -12.139.116.0/22 7018 -12.139.120.0/24 7018 -12.139.121.0/24 25823 -12.139.122.0/24 7018 -12.139.123.0/24 2386 -12.139.124.0/22 7018 -12.139.128.0/17 7018 -12.140.0.0/14 7018 -12.144.0.0/20 7018 -12.144.16.0/22 7018 -12.144.20.0/23 27329 -12.144.22.0/23 7018 -12.144.24.0/21 7018 -12.144.32.0/20 7018 -12.144.48.0/24 7018 -12.144.49.0/24 46887 -12.144.50.0/23 7018 -12.144.52.0/22 7018 -12.144.56.0/21 7018 -12.144.64.0/21 7018 -12.144.72.0/22 33247 -12.144.76.0/22 7018 -12.144.80.0/20 7018 -12.144.96.0/19 7018 -12.144.128.0/22 7018 -12.144.132.0/22 13540 -12.144.136.0/21 7018 -12.144.144.0/23 7018 -12.144.146.0/24 7018 -12.144.147.0/24 2386 -12.144.148.0/23 7018 -12.144.150.0/24 7018 -12.144.151.0/24 396281 -12.144.152.0/21 7018 -12.144.160.0/20 7018 -12.144.176.0/24 7018 -12.144.177.0/24 14478 -12.144.178.0/23 7018 -12.144.180.0/24 33025 -12.144.181.0/24 7018 -12.144.182.0/23 7018 -12.144.184.0/21 7018 -12.144.192.0/20 7018 -12.144.208.0/21 7018 -12.144.216.0/22 7018 -12.144.220.0/23 7018 -12.144.222.0/24 2386 -12.144.223.0/24 7018 -12.144.224.0/19 7018 -12.145.0.0/20 7018 -12.145.16.0/22 7018 -12.145.20.0/23 26881 -12.145.22.0/24 7018 -12.145.23.0/24 26881 -12.145.24.0/21 7018 -12.145.32.0/19 7018 -12.145.64.0/24 7018 -12.145.65.0/24 16980 -12.145.66.0/23 7018 -12.145.68.0/22 7018 -12.145.72.0/21 7018 -12.145.80.0/21 7018 -12.145.88.0/21 53768 -12.145.96.0/19 7018 -12.145.128.0/20 7018 -12.145.144.0/21 7018 -12.145.152.0/22 7018 -12.145.156.0/23 7018 -12.145.158.0/24 14013 -12.145.159.0/24 7018 -12.145.160.0/23 7018 -12.145.162.0/24 54230 -12.145.163.0/24 7018 -12.145.164.0/22 7018 -12.145.168.0/21 7018 -12.145.176.0/24 7018 -12.145.177.0/24 2386 -12.145.178.0/23 7018 -12.145.180.0/22 7018 -12.145.184.0/24 2386 -12.145.185.0/24 7018 -12.145.186.0/23 7018 -12.145.188.0/24 21651 -12.145.189.0/24 7018 -12.145.190.0/23 7018 -12.145.192.0/24 7018 -12.145.193.0/24 19244 -12.145.194.0/23 7018 -12.145.196.0/22 7018 -12.145.200.0/21 7018 -12.145.208.0/20 7018 -12.145.224.0/19 7018 -12.146.0.0/19 7018 -12.146.32.0/22 7018 -12.146.36.0/24 397602 -12.146.37.0/24 7018 -12.146.38.0/23 7018 -12.146.40.0/21 7018 -12.146.48.0/20 7018 -12.146.64.0/20 7018 -12.146.80.0/22 7018 -12.146.84.0/23 7018 -12.146.86.0/24 2386 -12.146.87.0/24 7018 -12.146.88.0/21 7018 -12.146.96.0/19 7018 -12.146.128.0/18 7018 -12.146.192.0/21 7018 -12.146.200.0/23 7018 -12.146.202.0/24 7018 -12.146.203.0/24 40506 -12.146.204.0/22 7018 -12.146.208.0/20 7018 -12.146.224.0/19 7018 -12.147.0.0/19 7018 -12.147.32.0/21 14858 -12.147.40.0/22 7018 -12.147.44.0/24 19663 -12.147.45.0/24 7018 -12.147.46.0/23 7018 -12.147.48.0/20 7018 -12.147.64.0/18 7018 -12.147.128.0/24 7018 -12.147.129.0/24 23093 -12.147.130.0/23 7018 -12.147.132.0/22 7018 -12.147.136.0/24 7018 -12.147.137.0/24 54959 -12.147.138.0/23 7018 -12.147.140.0/22 7018 -12.147.144.0/22 7018 -12.147.148.0/24 7018 -12.147.149.0/24 40265 -12.147.150.0/24 7018 -12.147.151.0/24 14047 -12.147.152.0/24 30509 -12.147.153.0/24 7018 -12.147.154.0/23 7018 -12.147.156.0/22 7018 -12.147.160.0/20 7018 -12.147.176.0/23 7018 -12.147.178.0/24 2386 -12.147.179.0/24 7018 -12.147.180.0/22 7018 -12.147.184.0/21 7018 -12.147.192.0/18 7018 -12.148.0.0/21 7018 -12.148.8.0/24 27309 -12.148.9.0/24 7018 -12.148.10.0/23 7018 -12.148.12.0/22 7018 -12.148.16.0/20 7018 -12.148.32.0/20 7018 -12.148.48.0/22 7018 -12.148.52.0/24 10584 -12.148.53.0/24 7018 -12.148.54.0/23 7018 -12.148.56.0/22 7018 -12.148.60.0/23 7018 -12.148.62.0/24 7018 -12.148.63.0/24 2386 -12.148.64.0/21 7018 -12.148.72.0/22 7018 -12.148.76.0/24 7018 -12.148.77.0/24 2386 -12.148.78.0/23 7018 -12.148.80.0/22 16966 -12.148.84.0/22 7018 -12.148.88.0/21 7018 -12.148.96.0/20 7018 -12.148.112.0/24 2386 -12.148.113.0/24 7018 -12.148.114.0/23 7018 -12.148.116.0/22 7018 -12.148.120.0/23 7018 -12.148.122.0/24 7018 -12.148.123.0/24 4883 -12.148.124.0/22 7018 -12.148.128.0/23 15106 -12.148.130.0/23 7018 -12.148.132.0/22 7018 -12.148.136.0/21 7018 -12.148.144.0/20 7018 -12.148.160.0/21 7018 -12.148.168.0/24 7018 -12.148.169.0/24 2386 -12.148.170.0/23 7018 -12.148.172.0/22 7018 -12.148.176.0/22 7018 -12.148.180.0/22 14379 -12.148.184.0/21 7018 -12.148.192.0/20 7018 -12.148.208.0/22 7018 -12.148.212.0/24 7018 -12.148.213.0/24 53738 -12.148.214.0/23 7018 -12.148.216.0/21 7018 -12.148.224.0/23 7018 -12.148.226.0/24 7018 -12.148.227.0/24 29841 -12.148.228.0/22 7018 -12.148.232.0/22 33247 -12.148.236.0/22 7018 -12.148.240.0/20 7018 -12.149.0.0/22 7018 -12.149.4.0/23 7018 -12.149.6.0/24 7018 -12.149.7.0/24 22406 -12.149.8.0/24 35866 -12.149.9.0/24 7018 -12.149.10.0/23 7018 -12.149.12.0/24 7018 -12.149.13.0/24 395491 -12.149.14.0/23 7018 -12.149.16.0/20 7018 -12.149.32.0/21 7018 -12.149.40.0/24 13652 -12.149.41.0/24 7018 -12.149.42.0/23 7018 -12.149.44.0/22 7018 -12.149.48.0/20 7018 -12.149.64.0/22 7018 -12.149.68.0/24 19275 -12.149.69.0/24 7018 -12.149.70.0/23 7018 -12.149.72.0/21 7018 -12.149.80.0/20 7018 -12.149.96.0/19 7018 -12.149.128.0/19 7018 -12.149.160.0/21 7018 -12.149.168.0/22 7018 -12.149.172.0/22 14436 -12.149.176.0/20 7018 -12.149.192.0/20 7018 -12.149.208.0/21 7018 -12.149.216.0/23 7018 -12.149.218.0/24 36136 -12.149.219.0/24 7018 -12.149.220.0/22 7018 -12.149.224.0/20 7018 -12.149.240.0/22 7018 -12.149.244.0/23 7018 -12.149.246.0/23 33247 -12.149.248.0/21 7018 -12.150.0.0/23 2386 -12.150.2.0/24 2386 -12.150.3.0/24 7018 -12.150.4.0/22 7018 -12.150.8.0/21 7018 -12.150.16.0/20 7018 -12.150.32.0/19 7018 -12.150.64.0/20 7018 -12.150.80.0/22 2386 -12.150.84.0/22 7018 -12.150.88.0/21 7018 -12.150.96.0/21 7018 -12.150.104.0/23 7018 -12.150.106.0/24 7018 -12.150.107.0/24 2386 -12.150.108.0/22 7018 -12.150.112.0/21 7018 -12.150.120.0/22 7018 -12.150.124.0/24 27548 -12.150.125.0/24 7018 -12.150.126.0/23 7018 -12.150.128.0/19 7018 -12.150.160.0/24 7018 -12.150.161.0/24 33025 -12.150.162.0/23 33025 -12.150.164.0/23 7018 -12.150.166.0/24 7018 -12.150.167.0/24 25932 -12.150.168.0/23 7018 -12.150.170.0/24 21923 -12.150.171.0/24 7018 -12.150.172.0/22 7018 -12.150.176.0/24 4185 -12.150.177.0/24 7018 -12.150.178.0/23 7018 -12.150.180.0/22 2386 -12.150.184.0/21 7018 -12.150.192.0/20 7018 -12.150.208.0/22 7018 -12.150.212.0/24 2386 -12.150.213.0/24 7018 -12.150.214.0/23 7018 -12.150.216.0/21 7018 -12.150.224.0/20 7018 -12.150.240.0/21 7018 -12.150.248.0/22 7018 -12.150.252.0/24 7018 -12.150.253.0/24 396116 -12.150.254.0/23 7018 -12.151.0.0/21 7018 -12.151.8.0/23 7018 -12.151.10.0/23 22959 -12.151.12.0/22 7018 -12.151.16.0/20 7018 -12.151.32.0/22 7018 -12.151.36.0/23 7018 -12.151.38.0/24 16669 -12.151.39.0/24 7018 -12.151.40.0/21 7018 -12.151.48.0/24 7018 -12.151.49.0/24 11133 -12.151.50.0/23 7018 -12.151.52.0/22 7018 -12.151.56.0/21 7018 -12.151.64.0/22 7018 -12.151.68.0/23 7018 -12.151.70.0/24 7018 -12.151.71.0/24 33358 -12.151.72.0/21 7018 -12.151.80.0/20 7018 -12.151.96.0/22 7018 -12.151.100.0/23 7018 -12.151.102.0/24 395535 -12.151.103.0/24 7018 -12.151.104.0/21 7018 -12.151.112.0/20 7018 -12.151.128.0/20 7018 -12.151.144.0/22 32412 -12.151.148.0/22 7018 -12.151.152.0/21 7018 -12.151.160.0/20 7018 -12.151.176.0/21 7018 -12.151.184.0/22 7018 -12.151.188.0/24 13526 -12.151.189.0/24 7018 -12.151.190.0/23 7018 -12.151.192.0/19 7018 -12.151.224.0/22 7018 -12.151.228.0/22 10584 -12.151.232.0/21 7018 -12.151.240.0/24 2386 -12.151.241.0/24 7018 -12.151.242.0/23 7018 -12.151.244.0/22 7018 -12.151.248.0/21 7018 -12.152.0.0/21 7018 -12.152.8.0/23 7018 -12.152.10.0/24 18903 -12.152.11.0/24 7018 -12.152.12.0/22 7018 -12.152.16.0/23 7018 -12.152.18.0/23 18903 -12.152.20.0/22 7018 -12.152.24.0/21 7018 -12.152.32.0/19 7018 -12.152.64.0/19 7018 -12.152.96.0/22 7018 -12.152.100.0/22 15150 -12.152.104.0/23 15150 -12.152.106.0/24 7018 -12.152.107.0/24 25921 -12.152.108.0/22 7018 -12.152.112.0/21 7018 -12.152.120.0/23 7018 -12.152.122.0/24 7018 -12.152.123.0/24 2386 -12.152.124.0/23 7018 -12.152.126.0/24 25921 -12.152.127.0/24 7018 -12.152.128.0/20 7018 -12.152.144.0/21 7018 -12.152.152.0/21 33176 -12.152.160.0/22 7018 -12.152.164.0/23 7018 -12.152.166.0/24 11133 -12.152.167.0/24 7018 -12.152.168.0/23 7018 -12.152.170.0/24 7018 -12.152.171.0/24 11133 -12.152.172.0/22 7018 -12.152.176.0/22 7018 -12.152.180.0/24 7018 -12.152.181.0/24 30175 -12.152.182.0/23 7018 -12.152.184.0/21 7018 -12.152.192.0/22 7018 -12.152.196.0/23 7018 -12.152.198.0/24 16618 -12.152.199.0/24 7018 -12.152.200.0/24 16618 -12.152.201.0/24 7018 -12.152.202.0/23 7018 -12.152.204.0/22 7018 -12.152.208.0/20 7018 -12.152.224.0/22 7018 -12.152.228.0/24 46901 -12.152.229.0/24 7018 -12.152.230.0/23 7018 -12.152.232.0/23 7018 -12.152.234.0/24 20118 -12.152.235.0/24 7018 -12.152.236.0/23 7018 -12.152.238.0/24 7018 -12.152.239.0/24 17025 -12.152.240.0/20 7018 -12.153.0.0/23 7018 -12.153.2.0/24 7018 -12.153.3.0/24 11709 -12.153.4.0/22 7018 -12.153.8.0/21 7018 -12.153.16.0/22 7018 -12.153.20.0/23 26244 -12.153.22.0/23 7018 -12.153.24.0/22 7018 -12.153.28.0/23 7018 -12.153.30.0/24 7018 -12.153.31.0/24 20242 -12.153.32.0/20 7018 -12.153.48.0/23 7018 -12.153.50.0/23 22602 -12.153.52.0/22 7018 -12.153.56.0/21 7018 -12.153.64.0/18 7018 -12.153.128.0/19 7018 -12.153.160.0/20 7018 -12.153.176.0/22 7018 -12.153.180.0/23 7018 -12.153.182.0/24 7018 -12.153.183.0/24 2386 -12.153.184.0/21 7018 -12.153.192.0/20 17253 -12.153.208.0/23 7018 -12.153.210.0/24 46715 -12.153.211.0/24 7018 -12.153.212.0/22 7018 -12.153.216.0/21 7018 -12.153.224.0/24 6352 -12.153.225.0/24 7018 -12.153.226.0/23 7018 -12.153.228.0/23 7018 -12.153.230.0/23 36180 -12.153.232.0/21 7018 -12.153.240.0/24 7018 -12.153.241.0/24 797 -12.153.242.0/23 7018 -12.153.244.0/22 7018 -12.153.248.0/21 7018 -12.154.0.0/19 7018 -12.154.32.0/21 7018 -12.154.40.0/22 22528 -12.154.44.0/22 7018 -12.154.48.0/22 7018 -12.154.52.0/23 7018 -12.154.54.0/24 7018 -12.154.55.0/24 2386 -12.154.56.0/22 7018 -12.154.60.0/23 7018 -12.154.62.0/24 7018 -12.154.63.0/24 32878 -12.154.64.0/19 7018 -12.154.96.0/24 20351 -12.154.97.0/24 7018 -12.154.98.0/23 7018 -12.154.100.0/23 40338 -12.154.102.0/23 7018 -12.154.104.0/21 2727 -12.154.112.0/20 7018 -12.154.128.0/20 7018 -12.154.144.0/21 7018 -12.154.152.0/22 7018 -12.154.156.0/24 36055 -12.154.157.0/24 7018 -12.154.158.0/23 7018 -12.154.160.0/20 7018 -12.154.176.0/21 7018 -12.154.184.0/22 7018 -12.154.188.0/23 7018 -12.154.190.0/24 7018 -12.154.191.0/24 32025 -12.154.192.0/18 7018 -12.155.0.0/22 7018 -12.155.4.0/23 7018 -12.155.6.0/23 396422 -12.155.8.0/23 18771 -12.155.10.0/24 2386 -12.155.11.0/24 7018 -12.155.12.0/22 7018 -12.155.16.0/22 7018 -12.155.20.0/24 7018 -12.155.21.0/24 14478 -12.155.22.0/23 7018 -12.155.24.0/21 7018 -12.155.32.0/23 7018 -12.155.34.0/24 32869 -12.155.35.0/24 7018 -12.155.36.0/22 7018 -12.155.40.0/24 7018 -12.155.41.0/24 4366 -12.155.42.0/23 7018 -12.155.44.0/24 15287 -12.155.45.0/24 7018 -12.155.46.0/23 7018 -12.155.48.0/20 7018 -12.155.64.0/18 7018 -12.155.128.0/18 7018 -12.155.192.0/20 7018 -12.155.208.0/24 30442 -12.155.209.0/24 7018 -12.155.210.0/23 7018 -12.155.212.0/22 7018 -12.155.216.0/21 7018 -12.155.224.0/22 7018 -12.155.228.0/24 18720 -12.155.229.0/24 7018 -12.155.230.0/23 7018 -12.155.232.0/21 7018 -12.155.240.0/21 7018 -12.155.248.0/22 7018 -12.155.252.0/23 7018 -12.155.254.0/24 7018 -12.155.255.0/24 396508 -12.156.0.0/21 7018 -12.156.8.0/22 7018 -12.156.12.0/24 14388 -12.156.13.0/24 7018 -12.156.14.0/23 7018 -12.156.16.0/20 7018 -12.156.32.0/20 7018 -12.156.48.0/24 7018 -12.156.49.0/24 54808 -12.156.50.0/23 7018 -12.156.52.0/22 7018 -12.156.56.0/21 7018 -12.156.64.0/18 7018 -12.156.128.0/21 7018 -12.156.136.0/22 7018 -12.156.140.0/23 7018 -12.156.142.0/23 395500 -12.156.144.0/21 7018 -12.156.152.0/22 7018 -12.156.156.0/23 7018 -12.156.158.0/24 46756 -12.156.159.0/24 7018 -12.156.160.0/19 7018 -12.156.192.0/24 7018 -12.156.193.0/24 32512 -12.156.194.0/23 7018 -12.156.196.0/22 7018 -12.156.200.0/21 7018 -12.156.208.0/21 7018 -12.156.216.0/22 7018 -12.156.220.0/23 7018 -12.156.222.0/24 1405 -12.156.223.0/24 7018 -12.156.224.0/19 7018 -12.157.0.0/19 7018 -12.157.32.0/20 7018 -12.157.48.0/22 7018 -12.157.52.0/23 7018 -12.157.54.0/24 2386 -12.157.55.0/24 7018 -12.157.56.0/21 7018 -12.157.64.0/21 7018 -12.157.72.0/23 7018 -12.157.74.0/24 54940 -12.157.75.0/24 7018 -12.157.76.0/23 7018 -12.157.78.0/24 2386 -12.157.79.0/24 7018 -12.157.80.0/20 7018 -12.157.96.0/21 7018 -12.157.104.0/23 7018 -12.157.106.0/24 7018 -12.157.107.0/24 395215 -12.157.108.0/22 7018 -12.157.112.0/21 7018 -12.157.120.0/22 7018 -12.157.124.0/24 18824 -12.157.125.0/24 7018 -12.157.126.0/24 30009 -12.157.127.0/24 7018 -12.157.128.0/20 7018 -12.157.144.0/21 7018 -12.157.152.0/24 7018 -12.157.153.0/24 395315 -12.157.154.0/23 7018 -12.157.156.0/23 7018 -12.157.158.0/24 7018 -12.157.159.0/24 26325 -12.157.160.0/20 7018 -12.157.176.0/21 7018 -12.157.184.0/22 7018 -12.157.188.0/22 3356 -12.157.192.0/19 7018 -12.157.224.0/22 7018 -12.157.228.0/23 7018 -12.157.230.0/24 7018 -12.157.231.0/24 16490 -12.157.232.0/22 7018 -12.157.236.0/22 16549 -12.157.240.0/20 7018 -12.158.0.0/18 7018 -12.158.64.0/20 7018 -12.158.80.0/21 7018 -12.158.88.0/24 7018 -12.158.89.0/24 19137 -12.158.90.0/23 7018 -12.158.92.0/22 7018 -12.158.96.0/19 7018 -12.158.128.0/19 7018 -12.158.160.0/20 7018 -12.158.176.0/21 7018 -12.158.184.0/23 7018 -12.158.186.0/24 27189 -12.158.187.0/24 7018 -12.158.188.0/22 7018 -12.158.192.0/18 7018 -12.159.0.0/19 7018 -12.159.32.0/20 7018 -12.159.48.0/24 7018 -12.159.49.0/24 23291 -12.159.50.0/23 7018 -12.159.52.0/22 7018 -12.159.56.0/21 7018 -12.159.64.0/20 7018 -12.159.80.0/24 7018 -12.159.81.0/24 395393 -12.159.82.0/23 7018 -12.159.84.0/22 7018 -12.159.88.0/21 7018 -12.159.96.0/19 7018 -12.159.128.0/20 7018 -12.159.144.0/22 7018 -12.159.148.0/22 109 -12.159.152.0/21 7018 -12.159.160.0/21 7018 -12.159.168.0/22 7018 -12.159.172.0/23 7018 -12.159.174.0/23 2386 -12.159.176.0/21 7018 -12.159.184.0/22 7018 -12.159.188.0/23 7018 -12.159.190.0/24 2386 -12.159.191.0/24 7018 -12.159.192.0/21 7018 -12.159.200.0/22 7018 -12.159.204.0/23 7018 -12.159.206.0/23 20452 -12.159.208.0/20 7018 -12.159.224.0/20 7018 -12.159.240.0/21 7018 -12.159.248.0/22 7018 -12.159.252.0/23 7018 -12.159.254.0/24 2386 -12.159.255.0/24 7018 -12.160.0.0/20 7018 -12.160.16.0/22 7018 -12.160.20.0/23 7018 -12.160.22.0/24 7018 -12.160.23.0/24 393264 -12.160.24.0/21 7018 -12.160.32.0/19 7018 -12.160.64.0/24 2386 -12.160.65.0/24 7018 -12.160.66.0/23 7018 -12.160.68.0/22 7018 -12.160.72.0/21 7018 -12.160.80.0/20 7018 -12.160.96.0/19 7018 -12.160.128.0/21 14858 -12.160.136.0/21 7018 -12.160.144.0/20 7018 -12.160.160.0/19 7018 -12.160.192.0/20 7018 -12.160.208.0/21 7018 -12.160.216.0/24 21547 -12.160.217.0/24 7018 -12.160.218.0/23 7018 -12.160.220.0/22 7018 -12.160.224.0/20 7018 -12.160.240.0/21 7018 -12.160.248.0/24 11924 -12.160.249.0/24 7018 -12.160.250.0/23 7018 -12.160.252.0/22 7018 -12.161.0.0/18 7018 -12.161.64.0/23 7018 -12.161.66.0/23 18961 -12.161.68.0/22 7018 -12.161.72.0/23 7018 -12.161.74.0/24 13719 -12.161.75.0/24 7018 -12.161.76.0/23 7018 -12.161.78.0/24 7018 -12.161.79.0/24 33233 -12.161.80.0/20 7018 -12.161.96.0/21 7018 -12.161.104.0/21 25648 -12.161.112.0/22 7018 -12.161.116.0/23 7018 -12.161.118.0/24 7018 -12.161.119.0/24 395491 -12.161.120.0/21 7018 -12.161.128.0/21 7018 -12.161.136.0/23 7018 -12.161.138.0/24 36478 -12.161.139.0/24 7018 -12.161.140.0/22 7018 -12.161.144.0/20 7018 -12.161.160.0/19 7018 -12.161.192.0/22 7018 -12.161.196.0/23 7018 -12.161.198.0/24 7018 -12.161.199.0/24 23153 -12.161.200.0/21 7018 -12.161.208.0/21 16948 -12.161.216.0/21 7018 -12.161.224.0/24 7018 -12.161.225.0/24 23170 -12.161.226.0/23 7018 -12.161.228.0/22 7018 -12.161.232.0/21 7018 -12.161.240.0/22 7018 -12.161.244.0/24 23170 -12.161.245.0/24 7018 -12.161.246.0/23 7018 -12.161.248.0/22 7018 -12.161.252.0/24 7018 -12.161.253.0/24 2386 -12.161.254.0/23 7018 -12.162.0.0/23 7018 -12.162.2.0/24 7018 -12.162.3.0/24 7381 -12.162.4.0/22 7018 -12.162.8.0/23 7381 -12.162.10.0/23 7018 -12.162.12.0/22 7018 -12.162.16.0/20 7018 -12.162.32.0/20 7018 -12.162.48.0/21 7018 -12.162.56.0/24 7018 -12.162.57.0/24 26822 -12.162.58.0/23 7018 -12.162.60.0/22 7018 -12.162.64.0/18 7018 -12.162.128.0/19 7018 -12.162.160.0/19 3801 -12.162.192.0/23 7018 -12.162.194.0/24 54814 -12.162.195.0/24 7018 -12.162.196.0/22 7018 -12.162.200.0/23 7018 -12.162.202.0/24 7018 -12.162.203.0/24 53457 -12.162.204.0/22 7018 -12.162.208.0/21 7018 -12.162.216.0/23 7018 -12.162.218.0/24 7018 -12.162.219.0/24 17117 -12.162.220.0/22 7018 -12.162.224.0/20 7018 -12.162.240.0/21 7018 -12.162.248.0/24 22610 -12.162.249.0/24 7018 -12.162.250.0/24 23291 -12.162.251.0/24 7018 -12.162.252.0/22 7018 -12.163.0.0/23 7018 -12.163.2.0/23 17030 -12.163.4.0/22 7018 -12.163.8.0/21 7018 -12.163.16.0/21 17166 -12.163.24.0/24 10599 -12.163.25.0/24 7018 -12.163.26.0/24 10599 -12.163.27.0/24 7018 -12.163.28.0/22 7018 -12.163.32.0/19 7018 -12.163.64.0/18 7018 -12.163.128.0/20 7018 -12.163.144.0/22 7018 -12.163.148.0/24 4546 -12.163.149.0/24 7018 -12.163.150.0/24 32255 -12.163.151.0/24 7018 -12.163.152.0/21 7018 -12.163.160.0/21 7018 -12.163.168.0/22 7018 -12.163.172.0/23 7018 -12.163.174.0/23 13701 -12.163.176.0/20 7018 -12.163.192.0/18 7018 -12.164.0.0/20 7018 -12.164.16.0/22 7018 -12.164.20.0/23 7018 -12.164.22.0/24 54273 -12.164.23.0/24 7018 -12.164.24.0/21 7018 -12.164.32.0/19 7018 -12.164.64.0/23 7018 -12.164.66.0/24 26789 -12.164.67.0/24 7018 -12.164.68.0/22 7018 -12.164.72.0/21 7018 -12.164.80.0/20 7018 -12.164.96.0/20 7018 -12.164.112.0/24 7018 -12.164.113.0/24 53763 -12.164.114.0/23 7018 -12.164.116.0/22 7018 -12.164.120.0/21 7018 -12.164.128.0/19 7018 -12.164.160.0/21 7018 -12.164.168.0/22 7018 -12.164.172.0/23 7018 -12.164.174.0/24 53840 -12.164.175.0/24 7018 -12.164.176.0/20 7018 -12.164.192.0/24 7018 -12.164.193.0/24 17406 -12.164.194.0/23 7018 -12.164.196.0/23 6086 -12.164.198.0/23 7018 -12.164.200.0/21 7018 -12.164.208.0/20 7018 -12.164.224.0/19 7018 -12.165.0.0/20 7018 -12.165.16.0/21 7018 -12.165.24.0/24 7018 -12.165.25.0/24 16948 -12.165.26.0/23 7018 -12.165.28.0/22 7018 -12.165.32.0/23 7018 -12.165.34.0/24 7018 -12.165.35.0/24 2386 -12.165.36.0/22 7018 -12.165.40.0/21 7018 -12.165.48.0/20 7018 -12.165.64.0/20 7018 -12.165.80.0/22 7018 -12.165.84.0/23 7018 -12.165.86.0/23 30091 -12.165.88.0/22 7018 -12.165.92.0/24 14858 -12.165.93.0/24 7018 -12.165.94.0/23 7018 -12.165.96.0/20 7018 -12.165.112.0/23 36297 -12.165.114.0/23 7018 -12.165.116.0/22 7018 -12.165.120.0/23 2386 -12.165.122.0/23 7018 -12.165.124.0/22 7018 -12.165.128.0/19 7018 -12.165.160.0/20 7018 -12.165.176.0/21 7018 -12.165.184.0/22 7018 -12.165.188.0/24 31890 -12.165.189.0/24 7018 -12.165.190.0/23 7018 -12.165.192.0/19 7018 -12.165.224.0/20 7018 -12.165.240.0/22 7018 -12.165.244.0/23 7018 -12.165.246.0/23 26244 -12.165.248.0/22 7018 -12.165.252.0/24 7018 -12.165.253.0/24 63467 -12.165.254.0/23 7018 -12.166.0.0/20 7018 -12.166.16.0/21 7018 -12.166.24.0/22 7018 -12.166.28.0/24 19706 -12.166.29.0/24 7018 -12.166.30.0/23 7018 -12.166.32.0/21 7018 -12.166.40.0/22 7018 -12.166.44.0/23 7018 -12.166.46.0/24 393485 -12.166.47.0/24 7018 -12.166.48.0/22 7018 -12.166.52.0/23 7018 -12.166.54.0/24 7018 -12.166.55.0/24 2386 -12.166.56.0/21 7018 -12.166.64.0/19 7018 -12.166.96.0/21 7018 -12.166.104.0/22 7018 -12.166.108.0/24 7018 -12.166.109.0/24 20358 -12.166.110.0/23 7018 -12.166.112.0/20 7018 -12.166.128.0/18 7018 -12.166.192.0/22 7018 -12.166.196.0/22 11966 -12.166.200.0/21 7018 -12.166.208.0/22 25921 -12.166.212.0/22 7018 -12.166.216.0/23 11966 -12.166.218.0/23 25921 -12.166.220.0/22 25921 -12.166.224.0/20 7018 -12.166.240.0/23 7018 -12.166.242.0/24 7018 -12.166.243.0/24 2386 -12.166.244.0/22 7018 -12.166.248.0/21 7018 -12.167.0.0/22 7018 -12.167.4.0/23 27482 -12.167.6.0/23 7018 -12.167.8.0/21 7018 -12.167.16.0/21 7018 -12.167.24.0/24 4546 -12.167.25.0/24 7018 -12.167.26.0/23 7018 -12.167.28.0/22 7018 -12.167.32.0/20 7018 -12.167.48.0/21 7018 -12.167.56.0/22 7018 -12.167.60.0/23 7018 -12.167.62.0/24 32583 -12.167.63.0/24 7018 -12.167.64.0/21 7018 -12.167.72.0/23 7018 -12.167.74.0/24 7018 -12.167.75.0/24 29767 -12.167.76.0/22 7018 -12.167.80.0/23 7018 -12.167.82.0/24 7018 -12.167.83.0/24 11575 -12.167.84.0/22 7018 -12.167.88.0/24 7018 -12.167.89.0/24 29767 -12.167.90.0/23 2386 -12.167.92.0/22 7018 -12.167.96.0/22 7018 -12.167.100.0/24 7018 -12.167.101.0/24 18636 -12.167.102.0/23 7018 -12.167.104.0/24 26171 -12.167.105.0/24 7018 -12.167.106.0/24 7018 -12.167.107.0/24 14478 -12.167.108.0/24 393508 -12.167.109.0/24 7018 -12.167.110.0/23 7018 -12.167.112.0/20 7018 -12.167.128.0/24 2386 -12.167.129.0/24 7018 -12.167.130.0/23 7018 -12.167.132.0/22 7018 -12.167.136.0/23 7018 -12.167.138.0/24 2386 -12.167.139.0/24 7018 -12.167.140.0/22 7018 -12.167.144.0/24 7018 -12.167.145.0/24 30291 -12.167.146.0/23 7018 -12.167.148.0/23 7018 -12.167.150.0/24 7018 -12.167.151.0/24 55219 -12.167.152.0/21 7018 -12.167.160.0/19 7018 -12.167.192.0/19 7018 -12.167.224.0/22 7018 -12.167.228.0/23 7018 -12.167.230.0/24 2386 -12.167.231.0/24 7018 -12.167.232.0/21 7018 -12.167.240.0/20 7018 -12.168.0.0/20 7018 -12.168.16.0/23 2386 -12.168.18.0/23 7018 -12.168.20.0/22 7018 -12.168.24.0/21 7018 -12.168.32.0/19 7018 -12.168.64.0/21 7018 -12.168.72.0/22 7018 -12.168.76.0/24 7018 -12.168.77.0/24 27619 -12.168.78.0/23 7018 -12.168.80.0/20 7018 -12.168.96.0/20 7018 -12.168.112.0/21 7018 -12.168.120.0/24 7018 -12.168.121.0/24 27231 -12.168.122.0/23 7018 -12.168.124.0/23 16405 -12.168.126.0/23 7018 -12.168.128.0/22 7018 -12.168.132.0/23 6318 -12.168.134.0/24 23424 -12.168.135.0/24 7018 -12.168.136.0/21 7018 -12.168.144.0/20 7018 -12.168.160.0/19 7018 -12.168.192.0/23 7018 -12.168.194.0/24 30572 -12.168.195.0/24 7018 -12.168.196.0/22 7018 -12.168.200.0/24 62951 -12.168.201.0/24 7018 -12.168.202.0/23 7018 -12.168.204.0/22 7018 -12.168.208.0/21 7018 -12.168.216.0/24 7018 -12.168.217.0/24 36726 -12.168.218.0/23 7018 -12.168.220.0/22 7018 -12.168.224.0/23 54857 -12.168.226.0/24 54857 -12.168.227.0/24 7018 -12.168.228.0/22 7018 -12.168.232.0/21 7018 -12.168.240.0/20 7018 -12.169.0.0/21 7018 -12.169.8.0/24 7029 -12.169.9.0/24 7018 -12.169.10.0/23 7018 -12.169.12.0/22 7018 -12.169.16.0/20 7018 -12.169.32.0/21 7018 -12.169.40.0/22 2386 -12.169.44.0/22 7018 -12.169.48.0/20 7018 -12.169.64.0/22 7018 -12.169.68.0/23 7018 -12.169.70.0/23 3655 -12.169.72.0/21 7018 -12.169.80.0/20 7018 -12.169.96.0/20 7018 -12.169.112.0/24 20196 -12.169.113.0/24 7018 -12.169.114.0/23 7018 -12.169.116.0/22 7018 -12.169.120.0/21 7018 -12.169.128.0/19 7018 -12.169.160.0/22 7018 -12.169.164.0/24 22785 -12.169.165.0/24 7018 -12.169.166.0/23 7018 -12.169.168.0/21 7018 -12.169.176.0/23 7018 -12.169.178.0/24 26507 -12.169.179.0/24 7018 -12.169.180.0/22 7018 -12.169.184.0/21 7018 -12.169.192.0/24 7018 -12.169.193.0/24 2386 -12.169.194.0/24 7018 -12.169.195.0/24 36712 -12.169.196.0/22 7018 -12.169.200.0/21 7018 -12.169.208.0/20 7018 -12.169.224.0/19 7018 -12.170.0.0/16 7018 -12.171.0.0/21 7018 -12.171.8.0/24 32954 -12.171.9.0/24 7018 -12.171.10.0/23 7018 -12.171.12.0/22 7018 -12.171.16.0/20 7018 -12.171.32.0/19 7018 -12.171.64.0/20 7018 -12.171.80.0/22 7018 -12.171.84.0/24 7018 -12.171.85.0/24 40458 -12.171.86.0/23 7018 -12.171.88.0/23 7018 -12.171.90.0/24 26694 -12.171.91.0/24 7018 -12.171.92.0/23 32787 -12.171.94.0/24 7723 -12.171.95.0/24 7018 -12.171.96.0/21 7018 -12.171.104.0/22 7018 -12.171.108.0/23 2386 -12.171.110.0/23 7018 -12.171.112.0/20 7018 -12.171.128.0/21 7018 -12.171.136.0/24 7018 -12.171.137.0/24 26842 -12.171.138.0/23 7018 -12.171.140.0/22 7018 -12.171.144.0/20 7018 -12.171.160.0/19 7018 -12.171.192.0/24 7018 -12.171.193.0/24 26591 -12.171.194.0/23 7018 -12.171.196.0/24 22312 -12.171.197.0/24 7018 -12.171.198.0/23 7018 -12.171.200.0/21 7018 -12.171.208.0/22 7018 -12.171.212.0/23 7018 -12.171.214.0/24 2386 -12.171.215.0/24 7018 -12.171.216.0/21 7018 -12.171.224.0/24 7018 -12.171.225.0/24 394540 -12.171.226.0/23 7018 -12.171.228.0/22 40098 -12.171.232.0/22 40098 -12.171.236.0/22 7018 -12.171.240.0/22 7018 -12.171.244.0/22 27202 -12.171.248.0/21 7018 -12.172.0.0/20 7018 -12.172.16.0/23 7018 -12.172.18.0/24 32158 -12.172.19.0/24 7018 -12.172.20.0/22 7018 -12.172.24.0/21 7018 -12.172.32.0/24 7018 -12.172.33.0/24 11045 -12.172.34.0/24 11045 -12.172.35.0/24 7018 -12.172.36.0/23 7018 -12.172.38.0/24 7018 -12.172.39.0/24 32326 -12.172.40.0/22 7018 -12.172.44.0/24 209 -12.172.45.0/24 11066 -12.172.46.0/23 11066 -12.172.48.0/20 7018 -12.172.64.0/23 7018 -12.172.66.0/24 7018 -12.172.67.0/24 27015 -12.172.68.0/22 7018 -12.172.72.0/21 7018 -12.172.80.0/20 7018 -12.172.96.0/22 7018 -12.172.100.0/24 396907 -12.172.101.0/24 7018 -12.172.102.0/23 7018 -12.172.104.0/21 7018 -12.172.112.0/22 7018 -12.172.116.0/22 27202 -12.172.120.0/22 7018 -12.172.124.0/23 7018 -12.172.126.0/24 7018 -12.172.127.0/24 2386 -12.172.128.0/21 2386 -12.172.136.0/21 7018 -12.172.144.0/21 7018 -12.172.152.0/24 7018 -12.172.153.0/24 12172 -12.172.154.0/23 7018 -12.172.156.0/22 7018 -12.172.160.0/20 7018 -12.172.176.0/23 7018 -12.172.178.0/23 27288 -12.172.180.0/22 7018 -12.172.184.0/22 7018 -12.172.188.0/24 7018 -12.172.189.0/24 40285 -12.172.190.0/23 7018 -12.172.192.0/24 7018 -12.172.193.0/24 32352 -12.172.194.0/23 7018 -12.172.196.0/22 7018 -12.172.200.0/22 7018 -12.172.204.0/23 7018 -12.172.206.0/24 7018 -12.172.207.0/24 36111 -12.172.208.0/23 40285 -12.172.210.0/23 7018 -12.172.212.0/22 7018 -12.172.216.0/21 7018 -12.172.224.0/22 7018 -12.172.228.0/22 27202 -12.172.232.0/21 7018 -12.172.240.0/20 7018 -12.173.0.0/19 7018 -12.173.32.0/21 7018 -12.173.40.0/24 7018 -12.173.41.0/24 2386 -12.173.42.0/23 7018 -12.173.44.0/22 7018 -12.173.48.0/21 7018 -12.173.56.0/24 54959 -12.173.57.0/24 7018 -12.173.58.0/23 7018 -12.173.60.0/22 7018 -12.173.64.0/18 7018 -12.173.128.0/18 7018 -12.173.192.0/19 7018 -12.173.224.0/23 7018 -12.173.226.0/24 7018 -12.173.227.0/24 46439 -12.173.228.0/22 7018 -12.173.232.0/23 7018 -12.173.234.0/24 7018 -12.173.235.0/24 30656 -12.173.236.0/22 7018 -12.173.240.0/22 7018 -12.173.244.0/24 7018 -12.173.245.0/24 29708 -12.173.246.0/23 7018 -12.173.248.0/21 7018 -12.174.0.0/17 7018 -12.174.128.0/20 7018 -12.174.144.0/21 7018 -12.174.152.0/22 7018 -12.174.156.0/23 7018 -12.174.158.0/24 2386 -12.174.159.0/24 7018 -12.174.160.0/21 7018 -12.174.168.0/21 32382 -12.174.176.0/20 7018 -12.174.192.0/20 7018 -12.174.208.0/23 7018 -12.174.210.0/23 22471 -12.174.212.0/22 7018 -12.174.216.0/21 7018 -12.174.224.0/19 7018 -12.175.0.0/22 7018 -12.175.4.0/24 2386 -12.175.5.0/24 7018 -12.175.6.0/24 11806 -12.175.7.0/24 7018 -12.175.8.0/23 7018 -12.175.10.0/24 7018 -12.175.11.0/24 19363 -12.175.12.0/22 7018 -12.175.16.0/23 7018 -12.175.18.0/24 394888 -12.175.19.0/24 7018 -12.175.20.0/22 7018 -12.175.24.0/21 7018 -12.175.32.0/19 7018 -12.175.64.0/19 7018 -12.175.96.0/21 7018 -12.175.104.0/22 7018 -12.175.108.0/23 7018 -12.175.110.0/24 7018 -12.175.111.0/24 396993 -12.175.112.0/22 7018 -12.175.116.0/23 7018 -12.175.118.0/24 7018 -12.175.119.0/24 23094 -12.175.120.0/21 7018 -12.175.128.0/21 7018 -12.175.136.0/22 7018 -12.175.140.0/23 7018 -12.175.142.0/24 36189 -12.175.143.0/24 7018 -12.175.144.0/20 7018 -12.175.160.0/19 7018 -12.175.192.0/22 7018 -12.175.196.0/23 7018 -12.175.198.0/24 7018 -12.175.199.0/24 40656 -12.175.200.0/21 7018 -12.175.208.0/23 7018 -12.175.210.0/24 7018 -12.175.211.0/24 40656 -12.175.212.0/22 7018 -12.175.216.0/21 7018 -12.175.224.0/21 7018 -12.175.232.0/22 7018 -12.175.236.0/23 7018 -12.175.238.0/24 7018 -12.175.239.0/24 393787 -12.175.240.0/20 7018 -12.176.0.0/20 7018 -12.176.16.0/21 7018 -12.176.24.0/23 7018 -12.176.26.0/24 7018 -12.176.27.0/24 26789 -12.176.28.0/22 7018 -12.176.32.0/20 7018 -12.176.48.0/21 7018 -12.176.56.0/22 7018 -12.176.60.0/24 395098 -12.176.61.0/24 7018 -12.176.62.0/23 7018 -12.176.64.0/20 7018 -12.176.80.0/21 7018 -12.176.88.0/23 7018 -12.176.90.0/24 18544 -12.176.91.0/24 7018 -12.176.92.0/22 7018 -12.176.96.0/22 7018 -12.176.100.0/22 25648 -12.176.104.0/21 7018 -12.176.112.0/20 7018 -12.176.128.0/24 7018 -12.176.129.0/24 17096 -12.176.130.0/23 7018 -12.176.132.0/22 7018 -12.176.136.0/21 7018 -12.176.144.0/20 7018 -12.176.160.0/19 7018 -12.176.192.0/19 7018 -12.176.224.0/21 7018 -12.176.232.0/24 395850 -12.176.233.0/24 7018 -12.176.234.0/23 7018 -12.176.236.0/22 7018 -12.176.240.0/22 7018 -12.176.244.0/23 7018 -12.176.246.0/24 7018 -12.176.247.0/24 33461 -12.176.248.0/24 7018 -12.176.249.0/24 30356 -12.176.250.0/23 7018 -12.176.252.0/22 7018 -12.177.0.0/23 7018 -12.177.2.0/23 2386 -12.177.4.0/24 7018 -12.177.5.0/24 6939 -12.177.6.0/23 7018 -12.177.8.0/21 7018 -12.177.16.0/21 7018 -12.177.24.0/23 7018 -12.177.26.0/24 395210 -12.177.27.0/24 7018 -12.177.28.0/22 7018 -12.177.32.0/20 7018 -12.177.48.0/22 7018 -12.177.52.0/24 2386 -12.177.53.0/24 7018 -12.177.54.0/23 7018 -12.177.56.0/21 7018 -12.177.64.0/22 7018 -12.177.68.0/23 396184 -12.177.70.0/23 7018 -12.177.72.0/21 7018 -12.177.80.0/23 7018 -12.177.82.0/24 7018 -12.177.83.0/24 12104 -12.177.84.0/24 7018 -12.177.85.0/24 46562 -12.177.86.0/23 7018 -12.177.88.0/21 7018 -12.177.96.0/20 7018 -12.177.112.0/21 7018 -12.177.120.0/24 7018 -12.177.121.0/24 2386 -12.177.122.0/24 2386 -12.177.123.0/24 7018 -12.177.124.0/22 7018 -12.177.128.0/18 7018 -12.177.192.0/20 7018 -12.177.208.0/21 7018 -12.177.216.0/23 7018 -12.177.218.0/24 7018 -12.177.219.0/24 2386 -12.177.220.0/22 7018 -12.177.224.0/23 7018 -12.177.226.0/23 27351 -12.177.228.0/22 7018 -12.177.232.0/21 7018 -12.177.240.0/20 7018 -12.178.0.0/20 7018 -12.178.16.0/21 7018 -12.178.24.0/24 7018 -12.178.25.0/24 11133 -12.178.26.0/23 7018 -12.178.28.0/22 7018 -12.178.32.0/20 7018 -12.178.48.0/23 7018 -12.178.50.0/24 7018 -12.178.51.0/24 33286 -12.178.52.0/22 7018 -12.178.56.0/21 7018 -12.178.64.0/21 7018 -12.178.72.0/22 7018 -12.178.76.0/23 7018 -12.178.78.0/23 396944 -12.178.80.0/23 7018 -12.178.82.0/24 30196 -12.178.83.0/24 7018 -12.178.84.0/22 7018 -12.178.88.0/21 7018 -12.178.96.0/20 7018 -12.178.112.0/24 7018 -12.178.113.0/24 31902 -12.178.114.0/23 7018 -12.178.116.0/22 7018 -12.178.120.0/23 7018 -12.178.122.0/24 31902 -12.178.123.0/24 7018 -12.178.124.0/22 7018 -12.178.128.0/20 7018 -12.178.144.0/23 7018 -12.178.146.0/24 7018 -12.178.147.0/24 13457 -12.178.148.0/24 7018 -12.178.149.0/24 394701 -12.178.150.0/23 7018 -12.178.152.0/21 7018 -12.178.160.0/19 7018 -12.178.192.0/19 7018 -12.178.224.0/20 7018 -12.178.240.0/21 7018 -12.178.248.0/22 7018 -12.178.252.0/23 7018 -12.178.254.0/24 7018 -12.178.255.0/24 13740 -12.179.0.0/17 7018 -12.179.128.0/22 7018 -12.179.132.0/22 14436 -12.179.136.0/21 7018 -12.179.144.0/20 7018 -12.179.160.0/20 7018 -12.179.176.0/23 7018 -12.179.178.0/24 17117 -12.179.179.0/24 7018 -12.179.180.0/22 7018 -12.179.184.0/22 7018 -12.179.188.0/24 12172 -12.179.189.0/24 7018 -12.179.190.0/23 7018 -12.179.192.0/19 7018 -12.179.224.0/20 7018 -12.179.240.0/21 7018 -12.179.248.0/23 7018 -12.179.250.0/24 13480 -12.179.251.0/24 7018 -12.179.252.0/22 7018 -12.180.0.0/19 7018 -12.180.32.0/20 7018 -12.180.48.0/23 32869 -12.180.50.0/23 7018 -12.180.52.0/24 7018 -12.180.53.0/24 32869 -12.180.54.0/24 32869 -12.180.55.0/24 36791 -12.180.56.0/24 32869 -12.180.57.0/24 7018 -12.180.58.0/23 32869 -12.180.60.0/22 7018 -12.180.64.0/19 7018 -12.180.96.0/21 7018 -12.180.104.0/23 30610 -12.180.106.0/23 7018 -12.180.108.0/22 7018 -12.180.112.0/23 7018 -12.180.114.0/24 7018 -12.180.115.0/24 16983 -12.180.116.0/22 7018 -12.180.120.0/21 7018 -12.180.128.0/19 7018 -12.180.160.0/22 7018 -12.180.164.0/24 53420 -12.180.165.0/24 7018 -12.180.166.0/24 2386 -12.180.167.0/24 7018 -12.180.168.0/21 7018 -12.180.176.0/21 7018 -12.180.184.0/24 14561 -12.180.185.0/24 7018 -12.180.186.0/24 7018 -12.180.187.0/24 36723 -12.180.188.0/22 7018 -12.180.192.0/20 7018 -12.180.208.0/21 7018 -12.180.216.0/23 7018 -12.180.218.0/24 15253 -12.180.219.0/24 7018 -12.180.220.0/22 7018 -12.180.224.0/23 7018 -12.180.226.0/24 27562 -12.180.227.0/24 7018 -12.180.228.0/24 22986 -12.180.229.0/24 7018 -12.180.230.0/23 7018 -12.180.232.0/22 7018 -12.180.236.0/23 7018 -12.180.238.0/24 22846 -12.180.239.0/24 7018 -12.180.240.0/23 26244 -12.180.242.0/24 26244 -12.180.243.0/24 7018 -12.180.244.0/22 7018 -12.180.248.0/23 26244 -12.180.250.0/23 7018 -12.180.252.0/22 7018 -12.181.0.0/21 7018 -12.181.8.0/22 7018 -12.181.12.0/23 7018 -12.181.14.0/24 7018 -12.181.15.0/24 62861 -12.181.16.0/22 7018 -12.181.20.0/24 395572 -12.181.21.0/24 7018 -12.181.22.0/24 7018 -12.181.23.0/24 62861 -12.181.24.0/22 7018 -12.181.28.0/23 2386 -12.181.30.0/23 7018 -12.181.32.0/24 7018 -12.181.33.0/24 2386 -12.181.34.0/23 7018 -12.181.36.0/22 7018 -12.181.40.0/24 7018 -12.181.41.0/24 23045 -12.181.42.0/23 7018 -12.181.44.0/22 7018 -12.181.48.0/23 7018 -12.181.50.0/24 14478 -12.181.51.0/24 7018 -12.181.52.0/22 7018 -12.181.56.0/21 7018 -12.181.64.0/18 7018 -12.181.128.0/24 7018 -12.181.129.0/24 13652 -12.181.130.0/23 7018 -12.181.132.0/22 7018 -12.181.136.0/22 7018 -12.181.140.0/24 7018 -12.181.141.0/24 6618 -12.181.142.0/23 7018 -12.181.144.0/20 7018 -12.181.160.0/24 7018 -12.181.161.0/24 31973 -12.181.162.0/24 7018 -12.181.163.0/24 2386 -12.181.164.0/22 7018 -12.181.168.0/21 7018 -12.181.176.0/20 7018 -12.181.192.0/21 7018 -12.181.200.0/22 7018 -12.181.204.0/22 32382 -12.181.208.0/20 7018 -12.181.224.0/20 7018 -12.181.240.0/21 7018 -12.181.248.0/24 7018 -12.181.249.0/24 12022 -12.181.250.0/23 7018 -12.181.252.0/24 36603 -12.181.253.0/24 7018 -12.181.254.0/23 7018 -12.182.0.0/19 7018 -12.182.32.0/22 7018 -12.182.36.0/23 7018 -12.182.38.0/24 7018 -12.182.39.0/24 40800 -12.182.40.0/24 7018 -12.182.41.0/24 32859 -12.182.42.0/23 7018 -12.182.44.0/22 7018 -12.182.48.0/20 7018 -12.182.64.0/19 7018 -12.182.96.0/23 7018 -12.182.98.0/24 40183 -12.182.99.0/24 7018 -12.182.100.0/22 7018 -12.182.104.0/22 7018 -12.182.108.0/23 46639 -12.182.110.0/23 7018 -12.182.112.0/24 22959 -12.182.113.0/24 7018 -12.182.114.0/23 7018 -12.182.116.0/22 7018 -12.182.120.0/21 7018 -12.182.128.0/18 7018 -12.182.192.0/21 30091 -12.182.200.0/21 7018 -12.182.208.0/21 7018 -12.182.216.0/22 7018 -12.182.220.0/24 30647 -12.182.221.0/24 7018 -12.182.222.0/23 7018 -12.182.224.0/20 7018 -12.182.240.0/21 7018 -12.182.248.0/22 7018 -12.182.252.0/24 7018 -12.182.253.0/24 40110 -12.182.254.0/24 7018 -12.182.255.0/24 2386 -12.183.0.0/20 7018 -12.183.16.0/23 2386 -12.183.18.0/23 7018 -12.183.20.0/22 7018 -12.183.24.0/24 12134 -12.183.25.0/24 7018 -12.183.26.0/24 12134 -12.183.27.0/24 2386 -12.183.28.0/24 7018 -12.183.29.0/24 46847 -12.183.30.0/23 7018 -12.183.32.0/19 7018 -12.183.64.0/23 7018 -12.183.66.0/24 7018 -12.183.67.0/24 29992 -12.183.68.0/23 7018 -12.183.70.0/24 7018 -12.183.71.0/24 4185 -12.183.72.0/21 7018 -12.183.80.0/20 7018 -12.183.96.0/20 7018 -12.183.112.0/23 7018 -12.183.114.0/24 32662 -12.183.115.0/24 7018 -12.183.116.0/24 3655 -12.183.117.0/24 7018 -12.183.118.0/23 7018 -12.183.120.0/21 7018 -12.183.128.0/20 7018 -12.183.144.0/21 7018 -12.183.152.0/23 7018 -12.183.154.0/24 7018 -12.183.155.0/24 40656 -12.183.156.0/23 7018 -12.183.158.0/23 36105 -12.183.160.0/20 7018 -12.183.176.0/23 7018 -12.183.178.0/24 25806 -12.183.179.0/24 7018 -12.183.180.0/23 7018 -12.183.182.0/24 33722 -12.183.183.0/24 7018 -12.183.184.0/21 7018 -12.183.192.0/19 7018 -12.183.224.0/23 7018 -12.183.226.0/24 2386 -12.183.227.0/24 7018 -12.183.228.0/22 7018 -12.183.232.0/21 7018 -12.183.240.0/20 7018 -12.184.0.0/20 7018 -12.184.16.0/21 7018 -12.184.24.0/22 7018 -12.184.28.0/23 7018 -12.184.30.0/24 7018 -12.184.31.0/24 17117 -12.184.32.0/19 7018 -12.184.64.0/19 7018 -12.184.96.0/22 7018 -12.184.100.0/23 7018 -12.184.102.0/23 26341 -12.184.104.0/21 7018 -12.184.112.0/20 7018 -12.184.128.0/21 7018 -12.184.136.0/22 7018 -12.184.140.0/23 7018 -12.184.142.0/24 16455 -12.184.143.0/24 7018 -12.184.144.0/20 7018 -12.184.160.0/19 7018 -12.184.192.0/19 7018 -12.184.224.0/21 7018 -12.184.232.0/24 7018 -12.184.233.0/24 2386 -12.184.234.0/23 7018 -12.184.236.0/22 7018 -12.184.240.0/21 7018 -12.184.248.0/24 16994 -12.184.249.0/24 7018 -12.184.250.0/23 7018 -12.184.252.0/22 7018 -12.185.0.0/22 7018 -12.185.4.0/24 4185 -12.185.5.0/24 7018 -12.185.6.0/24 7018 -12.185.7.0/24 4185 -12.185.8.0/21 7018 -12.185.16.0/21 7018 -12.185.24.0/24 16774 -12.185.25.0/24 7018 -12.185.26.0/24 7018 -12.185.27.0/24 22617 -12.185.28.0/24 1226 -12.185.29.0/24 7018 -12.185.30.0/23 7018 -12.185.32.0/20 7018 -12.185.48.0/24 7018 -12.185.49.0/24 4546 -12.185.50.0/23 7018 -12.185.52.0/22 7018 -12.185.56.0/21 7018 -12.185.64.0/18 7018 -12.185.128.0/19 7018 -12.185.160.0/20 7018 -12.185.176.0/22 7018 -12.185.180.0/24 46569 -12.185.181.0/24 7018 -12.185.182.0/23 7018 -12.185.184.0/21 7018 -12.185.192.0/22 7018 -12.185.196.0/24 54834 -12.185.197.0/24 7018 -12.185.198.0/23 7018 -12.185.200.0/21 7018 -12.185.208.0/20 7018 -12.185.224.0/21 7018 -12.185.232.0/24 7018 -12.185.233.0/24 36308 -12.185.234.0/23 7018 -12.185.236.0/22 7018 -12.185.240.0/20 7018 -12.186.0.0/19 7018 -12.186.32.0/20 7018 -12.186.48.0/23 7018 -12.186.50.0/24 14139 -12.186.51.0/24 7018 -12.186.52.0/22 7018 -12.186.56.0/21 7018 -12.186.64.0/18 7018 -12.186.128.0/21 7018 -12.186.136.0/22 7018 -12.186.140.0/24 7018 -12.186.141.0/24 395550 -12.186.142.0/23 7018 -12.186.144.0/21 7018 -12.186.152.0/24 23542 -12.186.153.0/24 7018 -12.186.154.0/23 7018 -12.186.156.0/22 7018 -12.186.160.0/19 7018 -12.186.192.0/18 7018 -12.187.0.0/20 7018 -12.187.16.0/23 7018 -12.187.18.0/24 7018 -12.187.19.0/24 395227 -12.187.20.0/22 7018 -12.187.24.0/21 7018 -12.187.32.0/21 7018 -12.187.40.0/22 7018 -12.187.44.0/23 7018 -12.187.46.0/24 11760 -12.187.47.0/24 7018 -12.187.48.0/20 7018 -12.187.64.0/24 7018 -12.187.65.0/24 62697 -12.187.66.0/23 7018 -12.187.68.0/22 7018 -12.187.72.0/21 7018 -12.187.80.0/20 7018 -12.187.96.0/20 7018 -12.187.112.0/22 7018 -12.187.116.0/24 2386 -12.187.117.0/24 7018 -12.187.118.0/23 7018 -12.187.120.0/21 7018 -12.187.128.0/19 7018 -12.187.160.0/21 4917 -12.187.168.0/21 7018 -12.187.176.0/23 2386 -12.187.178.0/23 7018 -12.187.180.0/22 2386 -12.187.184.0/24 7384 -12.187.185.0/24 7018 -12.187.186.0/23 7018 -12.187.188.0/22 7018 -12.187.192.0/19 7018 -12.187.224.0/22 54814 -12.187.228.0/22 7018 -12.187.232.0/21 7018 -12.187.240.0/21 7018 -12.187.248.0/23 7018 -12.187.250.0/24 7018 -12.187.251.0/24 393787 -12.187.252.0/22 7018 -12.188.0.0/22 7018 -12.188.4.0/23 7018 -12.188.6.0/23 13342 -12.188.8.0/21 7018 -12.188.16.0/23 7018 -12.188.18.0/24 36136 -12.188.19.0/24 7018 -12.188.20.0/22 7018 -12.188.24.0/21 7018 -12.188.32.0/20 7018 -12.188.48.0/22 7018 -12.188.52.0/24 30187 -12.188.53.0/24 7018 -12.188.54.0/23 7018 -12.188.56.0/22 7018 -12.188.60.0/23 2386 -12.188.62.0/23 7018 -12.188.64.0/19 7018 -12.188.96.0/20 7018 -12.188.112.0/22 7018 -12.188.116.0/24 30187 -12.188.117.0/24 7018 -12.188.118.0/23 7018 -12.188.120.0/21 7018 -12.188.128.0/20 7018 -12.188.144.0/21 7018 -12.188.152.0/22 7018 -12.188.156.0/23 7018 -12.188.158.0/24 7018 -12.188.159.0/24 31921 -12.188.160.0/22 7018 -12.188.164.0/22 2386 -12.188.168.0/23 7018 -12.188.170.0/24 19418 -12.188.171.0/24 7018 -12.188.172.0/24 7018 -12.188.173.0/24 32158 -12.188.174.0/23 7018 -12.188.176.0/21 7018 -12.188.184.0/24 7018 -12.188.185.0/24 27025 -12.188.186.0/23 7018 -12.188.188.0/22 7018 -12.188.192.0/22 7018 -12.188.196.0/23 7018 -12.188.198.0/24 7018 -12.188.199.0/24 2386 -12.188.200.0/22 393475 -12.188.204.0/22 7018 -12.188.208.0/20 7018 -12.188.224.0/21 7018 -12.188.232.0/24 32461 -12.188.233.0/24 7018 -12.188.234.0/23 7018 -12.188.236.0/22 7018 -12.188.240.0/21 7018 -12.188.248.0/23 7018 -12.188.250.0/24 26907 -12.188.251.0/24 11806 -12.188.252.0/24 7018 -12.188.253.0/24 25990 -12.188.254.0/23 7018 -12.189.0.0/20 7018 -12.189.16.0/22 7018 -12.189.20.0/23 7018 -12.189.22.0/24 36838 -12.189.23.0/24 7018 -12.189.24.0/21 7018 -12.189.32.0/19 7018 -12.189.64.0/22 7018 -12.189.68.0/24 7018 -12.189.69.0/24 46481 -12.189.70.0/23 7018 -12.189.72.0/21 7018 -12.189.80.0/20 7018 -12.189.96.0/21 7018 -12.189.104.0/23 7018 -12.189.106.0/24 393505 -12.189.107.0/24 7018 -12.189.108.0/22 7018 -12.189.112.0/20 7018 -12.189.128.0/21 7018 -12.189.136.0/23 7018 -12.189.138.0/24 7018 -12.189.139.0/24 11286 -12.189.140.0/23 7018 -12.189.142.0/24 7018 -12.189.143.0/24 62802 -12.189.144.0/22 7018 -12.189.148.0/24 19599 -12.189.149.0/24 7018 -12.189.150.0/23 7018 -12.189.152.0/23 7018 -12.189.154.0/24 32412 -12.189.155.0/24 7018 -12.189.156.0/24 19417 -12.189.157.0/24 7018 -12.189.158.0/23 7018 -12.189.160.0/20 7018 -12.189.176.0/24 23521 -12.189.177.0/24 7018 -12.189.178.0/23 7018 -12.189.180.0/23 7018 -12.189.182.0/23 40740 -12.189.184.0/21 7018 -12.189.192.0/23 26842 -12.189.194.0/23 7018 -12.189.196.0/22 7018 -12.189.200.0/21 7018 -12.189.208.0/20 7018 -12.189.224.0/21 7018 -12.189.232.0/22 7018 -12.189.236.0/23 7018 -12.189.238.0/24 2386 -12.189.239.0/24 7018 -12.189.240.0/20 7018 -12.190.0.0/18 7018 -12.190.64.0/19 7018 -12.190.96.0/23 7018 -12.190.98.0/24 23349 -12.190.99.0/24 7018 -12.190.100.0/22 7018 -12.190.104.0/21 7018 -12.190.112.0/22 7018 -12.190.116.0/22 21945 -12.190.120.0/21 7018 -12.190.128.0/20 7018 -12.190.144.0/21 7018 -12.190.152.0/22 7018 -12.190.156.0/23 7018 -12.190.158.0/24 7018 -12.190.159.0/24 16655 -12.190.160.0/21 7018 -12.190.168.0/22 7018 -12.190.172.0/23 7018 -12.190.174.0/24 7018 -12.190.175.0/24 17096 -12.190.176.0/20 7018 -12.190.192.0/19 7018 -12.190.224.0/21 7018 -12.190.232.0/22 7018 -12.190.236.0/24 36180 -12.190.237.0/24 7018 -12.190.238.0/23 7018 -12.190.240.0/20 7018 -12.191.0.0/20 7018 -12.191.16.0/24 7018 -12.191.17.0/24 36488 -12.191.18.0/23 7018 -12.191.20.0/22 7018 -12.191.24.0/21 7018 -12.191.32.0/23 26306 -12.191.34.0/23 7018 -12.191.36.0/22 7018 -12.191.40.0/21 7018 -12.191.48.0/23 7018 -12.191.50.0/23 26306 -12.191.52.0/24 7018 -12.191.53.0/24 22708 -12.191.54.0/23 7018 -12.191.56.0/21 7018 -12.191.64.0/22 7018 -12.191.68.0/22 26144 -12.191.72.0/21 7018 -12.191.80.0/20 7018 -12.191.96.0/19 7018 -12.191.128.0/19 7018 -12.191.160.0/23 7018 -12.191.162.0/24 7018 -12.191.163.0/24 27632 -12.191.164.0/22 7018 -12.191.168.0/21 7018 -12.191.176.0/20 7018 -12.191.192.0/21 7018 -12.191.200.0/23 22610 -12.191.202.0/23 7018 -12.191.204.0/22 7018 -12.191.208.0/20 7018 -12.191.224.0/19 7018 -12.192.0.0/23 7018 -12.192.2.0/24 7018 -12.192.3.0/24 40726 -12.192.4.0/22 7018 -12.192.8.0/24 7018 -12.192.9.0/24 14561 -12.192.10.0/24 7018 -12.192.11.0/24 11878 -12.192.12.0/23 7018 -12.192.14.0/24 7018 -12.192.15.0/24 19754 -12.192.16.0/23 6939 -12.192.18.0/23 7018 -12.192.20.0/22 7018 -12.192.24.0/21 7018 -12.192.32.0/21 7018 -12.192.40.0/23 7018 -12.192.42.0/24 30187 -12.192.43.0/24 7018 -12.192.44.0/22 7018 -12.192.48.0/20 7018 -12.192.64.0/18 7018 -12.192.128.0/20 7018 -12.192.144.0/23 7018 -12.192.146.0/24 27485 -12.192.147.0/24 7018 -12.192.148.0/23 7018 -12.192.150.0/24 394702 -12.192.151.0/24 7018 -12.192.152.0/21 7018 -12.192.160.0/19 7018 -12.192.192.0/21 7018 -12.192.200.0/24 62861 -12.192.201.0/24 7018 -12.192.202.0/23 7018 -12.192.204.0/22 7018 -12.192.208.0/20 7018 -12.192.224.0/23 7018 -12.192.226.0/24 19622 -12.192.227.0/24 7018 -12.192.228.0/22 7018 -12.192.232.0/21 7018 -12.192.240.0/20 7018 -12.193.0.0/24 19095 -12.193.1.0/24 7018 -12.193.2.0/23 7018 -12.193.4.0/22 7018 -12.193.8.0/22 7018 -12.193.12.0/23 206 -12.193.14.0/23 7018 -12.193.16.0/20 7018 -12.193.32.0/21 7018 -12.193.40.0/24 7018 -12.193.41.0/24 7029 -12.193.42.0/23 7018 -12.193.44.0/22 7018 -12.193.48.0/20 7018 -12.193.64.0/20 7018 -12.193.80.0/23 7018 -12.193.82.0/24 12007 -12.193.83.0/24 7018 -12.193.84.0/22 7018 -12.193.88.0/21 7018 -12.193.96.0/21 7018 -12.193.104.0/22 7018 -12.193.108.0/24 7018 -12.193.109.0/24 17224 -12.193.110.0/24 7018 -12.193.111.0/24 17224 -12.193.112.0/24 7018 -12.193.113.0/24 17224 -12.193.114.0/23 7018 -12.193.116.0/22 7018 -12.193.120.0/21 7018 -12.193.128.0/19 7018 -12.193.160.0/21 7018 -12.193.168.0/23 13740 -12.193.170.0/24 13740 -12.193.171.0/24 7018 -12.193.172.0/23 7018 -12.193.174.0/24 20152 -12.193.175.0/24 7018 -12.193.176.0/20 7018 -12.193.192.0/19 7018 -12.193.224.0/20 7018 -12.193.240.0/22 7018 -12.193.244.0/22 2386 -12.193.248.0/21 7018 -12.194.0.0/16 8030 -12.195.0.0/21 7018 -12.195.8.0/23 7018 -12.195.10.0/24 7018 -12.195.11.0/24 40886 -12.195.12.0/24 62620 -12.195.13.0/24 7018 -12.195.14.0/24 7018 -12.195.15.0/24 395380 -12.195.16.0/20 7018 -12.195.32.0/19 7018 -12.195.64.0/21 7018 -12.195.72.0/22 7018 -12.195.76.0/23 26244 -12.195.78.0/24 22260 -12.195.79.0/24 7018 -12.195.80.0/23 7018 -12.195.82.0/24 17078 -12.195.83.0/24 7018 -12.195.84.0/22 7018 -12.195.88.0/21 7018 -12.195.96.0/19 7018 -12.195.128.0/19 7018 -12.195.160.0/22 7018 -12.195.164.0/23 7018 -12.195.166.0/24 11974 -12.195.167.0/24 7018 -12.195.168.0/21 7018 -12.195.176.0/21 7018 -12.195.184.0/22 7018 -12.195.188.0/24 7018 -12.195.189.0/24 23170 -12.195.190.0/24 2386 -12.195.191.0/24 7018 -12.195.192.0/18 7018 -12.196.0.0/20 7018 -12.196.16.0/21 7018 -12.196.24.0/24 7018 -12.196.25.0/24 2386 -12.196.26.0/23 7018 -12.196.28.0/22 7018 -12.196.32.0/19 7018 -12.196.64.0/19 7018 -12.196.96.0/20 7018 -12.196.112.0/23 7018 -12.196.114.0/24 396301 -12.196.115.0/24 7018 -12.196.116.0/23 7018 -12.196.118.0/24 2386 -12.196.119.0/24 7018 -12.196.120.0/24 7018 -12.196.121.0/24 53366 -12.196.122.0/23 7018 -12.196.124.0/22 7018 -12.196.128.0/21 7018 -12.196.136.0/23 7018 -12.196.138.0/24 7018 -12.196.139.0/24 53341 -12.196.140.0/22 7018 -12.196.144.0/20 7018 -12.196.160.0/19 7018 -12.196.192.0/18 7018 -12.197.0.0/18 7018 -12.197.64.0/19 7018 -12.197.96.0/22 7018 -12.197.100.0/24 30337 -12.197.101.0/24 7018 -12.197.102.0/23 7018 -12.197.104.0/21 7018 -12.197.112.0/20 7018 -12.197.128.0/19 7018 -12.197.160.0/24 7018 -12.197.161.0/24 12104 -12.197.162.0/23 7018 -12.197.164.0/24 7018 -12.197.165.0/24 27548 -12.197.166.0/23 7018 -12.197.168.0/21 7018 -12.197.176.0/20 7018 -12.197.192.0/21 7018 -12.197.200.0/22 7018 -12.197.204.0/24 7018 -12.197.205.0/24 395521 -12.197.206.0/23 7018 -12.197.208.0/24 395377 -12.197.209.0/24 7018 -12.197.210.0/23 7018 -12.197.212.0/22 7018 -12.197.216.0/21 7018 -12.197.224.0/19 7018 -12.198.0.0/19 7018 -12.198.32.0/20 7018 -12.198.48.0/21 7018 -12.198.56.0/24 7018 -12.198.57.0/24 46282 -12.198.58.0/23 7018 -12.198.60.0/24 16574 -12.198.61.0/24 7018 -12.198.62.0/23 7018 -12.198.64.0/20 7018 -12.198.80.0/21 7018 -12.198.88.0/24 14794 -12.198.89.0/24 7018 -12.198.90.0/23 7018 -12.198.92.0/22 7018 -12.198.96.0/19 7018 -12.198.128.0/20 7018 -12.198.144.0/22 7018 -12.198.148.0/23 27482 -12.198.150.0/23 7018 -12.198.152.0/24 7018 -12.198.153.0/24 2386 -12.198.154.0/24 63255 -12.198.155.0/24 7018 -12.198.156.0/22 7018 -12.198.160.0/21 7018 -12.198.168.0/23 63069 -12.198.170.0/23 7018 -12.198.172.0/24 7018 -12.198.173.0/24 32892 -12.198.174.0/23 7018 -12.198.176.0/20 7018 -12.198.192.0/21 7018 -12.198.200.0/22 7018 -12.198.204.0/24 7018 -12.198.205.0/24 32158 -12.198.206.0/23 7018 -12.198.208.0/20 7018 -12.198.224.0/20 7018 -12.198.240.0/21 7018 -12.198.248.0/24 7018 -12.198.249.0/24 36111 -12.198.250.0/24 2386 -12.198.251.0/24 7018 -12.198.252.0/23 7018 -12.198.254.0/24 7018 -12.198.255.0/24 11208 -12.199.0.0/20 7018 -12.199.16.0/21 7018 -12.199.24.0/22 26306 -12.199.28.0/24 35884 -12.199.29.0/24 7018 -12.199.30.0/23 7018 -12.199.32.0/21 7018 -12.199.40.0/22 7018 -12.199.44.0/23 7018 -12.199.46.0/24 7018 -12.199.47.0/24 22602 -12.199.48.0/20 7018 -12.199.64.0/19 7018 -12.199.96.0/23 7018 -12.199.98.0/24 6307 -12.199.99.0/24 7018 -12.199.100.0/22 7018 -12.199.104.0/21 7018 -12.199.112.0/20 7018 -12.199.128.0/18 7018 -12.199.192.0/20 7018 -12.199.208.0/21 7018 -12.199.216.0/22 7018 -12.199.220.0/23 7018 -12.199.222.0/23 27482 -12.199.224.0/21 7018 -12.199.232.0/24 36725 -12.199.233.0/24 7018 -12.199.234.0/23 7018 -12.199.236.0/22 7018 -12.199.240.0/20 7018 -12.200.0.0/19 7018 -12.200.32.0/21 7018 -12.200.40.0/23 7018 -12.200.42.0/24 7018 -12.200.43.0/24 11047 -12.200.44.0/22 7018 -12.200.48.0/21 7018 -12.200.56.0/24 7018 -12.200.57.0/24 13968 -12.200.58.0/23 7018 -12.200.60.0/24 13968 -12.200.61.0/24 7018 -12.200.62.0/23 7018 -12.200.64.0/21 7018 -12.200.72.0/22 7018 -12.200.76.0/24 4917 -12.200.77.0/24 7018 -12.200.78.0/24 17058 -12.200.79.0/24 7018 -12.200.80.0/20 7018 -12.200.96.0/20 7018 -12.200.112.0/24 30672 -12.200.113.0/24 7018 -12.200.114.0/23 7018 -12.200.116.0/22 7018 -12.200.120.0/21 7018 -12.200.128.0/20 7018 -12.200.144.0/24 7018 -12.200.145.0/24 2386 -12.200.146.0/24 7018 -12.200.147.0/24 18934 -12.200.148.0/23 7018 -12.200.150.0/24 7018 -12.200.151.0/24 18934 -12.200.152.0/21 7018 -12.200.160.0/19 7018 -12.200.192.0/19 7018 -12.200.224.0/21 7018 -12.200.232.0/22 7018 -12.200.236.0/24 2386 -12.200.237.0/24 7018 -12.200.238.0/23 7018 -12.200.240.0/20 7018 -12.201.0.0/20 7018 -12.201.16.0/22 7018 -12.201.20.0/24 393788 -12.201.21.0/24 7018 -12.201.22.0/23 7018 -12.201.24.0/21 7018 -12.201.32.0/21 7018 -12.201.40.0/22 7018 -12.201.44.0/23 7018 -12.201.46.0/24 7018 -12.201.47.0/24 46847 -12.201.48.0/20 7018 -12.201.64.0/21 7018 -12.201.72.0/22 7018 -12.201.76.0/23 7018 -12.201.78.0/24 7018 -12.201.79.0/24 2386 -12.201.80.0/23 7018 -12.201.82.0/24 11219 -12.201.83.0/24 7018 -12.201.84.0/24 12020 -12.201.85.0/24 7018 -12.201.86.0/23 7018 -12.201.88.0/21 7018 -12.201.96.0/21 7018 -12.201.104.0/22 7018 -12.201.108.0/23 7018 -12.201.110.0/24 7018 -12.201.111.0/24 22040 -12.201.112.0/22 7018 -12.201.116.0/23 7018 -12.201.118.0/24 54271 -12.201.119.0/24 7018 -12.201.120.0/21 7018 -12.201.128.0/20 7018 -12.201.144.0/22 7018 -12.201.148.0/23 7018 -12.201.150.0/24 395767 -12.201.151.0/24 7018 -12.201.152.0/21 7018 -12.201.160.0/22 7018 -12.201.164.0/23 7018 -12.201.166.0/24 7018 -12.201.167.0/24 13641 -12.201.168.0/22 7018 -12.201.172.0/24 33735 -12.201.173.0/24 7018 -12.201.174.0/23 7018 -12.201.176.0/20 7018 -12.201.192.0/18 7018 -12.202.0.0/24 2386 -12.202.1.0/24 7018 -12.202.2.0/23 7018 -12.202.4.0/22 7018 -12.202.8.0/24 36297 -12.202.9.0/24 7018 -12.202.10.0/23 7018 -12.202.12.0/22 7018 -12.202.16.0/20 7018 -12.202.32.0/20 7018 -12.202.48.0/21 7018 -12.202.56.0/22 7018 -12.202.60.0/23 7018 -12.202.62.0/24 2386 -12.202.63.0/24 7018 -12.202.64.0/22 7018 -12.202.68.0/23 7018 -12.202.70.0/23 397872 -12.202.72.0/21 7018 -12.202.80.0/20 7018 -12.202.96.0/22 7018 -12.202.100.0/23 7018 -12.202.102.0/24 7018 -12.202.103.0/24 15077 -12.202.104.0/21 7018 -12.202.112.0/20 7018 -12.202.128.0/20 7018 -12.202.144.0/23 7018 -12.202.146.0/24 7018 -12.202.147.0/24 7349 -12.202.148.0/22 7018 -12.202.152.0/21 7018 -12.202.160.0/22 7018 -12.202.164.0/23 7018 -12.202.166.0/24 7018 -12.202.167.0/24 40318 -12.202.168.0/24 7018 -12.202.169.0/24 11212 -12.202.170.0/23 7018 -12.202.172.0/22 7018 -12.202.176.0/21 7018 -12.202.184.0/23 7018 -12.202.186.0/24 7018 -12.202.187.0/24 36835 -12.202.188.0/22 7018 -12.202.192.0/21 7018 -12.202.200.0/24 7018 -12.202.201.0/24 19215 -12.202.202.0/23 7018 -12.202.204.0/22 7018 -12.202.208.0/20 7018 -12.202.224.0/22 7018 -12.202.228.0/23 7018 -12.202.230.0/24 54199 -12.202.231.0/24 7018 -12.202.232.0/22 7018 -12.202.236.0/24 7018 -12.202.237.0/24 2386 -12.202.238.0/23 7018 -12.202.240.0/22 7018 -12.202.244.0/24 7018 -12.202.245.0/24 2386 -12.202.246.0/23 7018 -12.202.248.0/24 15133 -12.202.249.0/24 7018 -12.202.250.0/23 7018 -12.202.252.0/22 7018 -12.203.0.0/19 7018 -12.203.32.0/21 7018 -12.203.40.0/24 7018 -12.203.41.0/24 2386 -12.203.42.0/23 7018 -12.203.44.0/22 7018 -12.203.48.0/22 7018 -12.203.52.0/24 7018 -12.203.53.0/24 393327 -12.203.54.0/24 7018 -12.203.55.0/24 32343 -12.203.56.0/21 7018 -12.203.64.0/20 7018 -12.203.80.0/22 7018 -12.203.84.0/24 7018 -12.203.85.0/24 393508 -12.203.86.0/23 393508 -12.203.88.0/21 7018 -12.203.96.0/22 7018 -12.203.100.0/24 62802 -12.203.101.0/24 7018 -12.203.102.0/23 7018 -12.203.104.0/21 7018 -12.203.112.0/23 7018 -12.203.114.0/23 53806 -12.203.116.0/22 7018 -12.203.120.0/21 7018 -12.203.128.0/24 2386 -12.203.129.0/24 7018 -12.203.130.0/23 7018 -12.203.132.0/22 7018 -12.203.136.0/21 7018 -12.203.144.0/21 7018 -12.203.152.0/22 7018 -12.203.156.0/23 7018 -12.203.158.0/24 395941 -12.203.159.0/24 7018 -12.203.160.0/24 54834 -12.203.161.0/24 18641 -12.203.162.0/23 18641 -12.203.164.0/24 7018 -12.203.165.0/24 2386 -12.203.166.0/23 7018 -12.203.168.0/24 398026 -12.203.169.0/24 7018 -12.203.170.0/23 7018 -12.203.172.0/22 7018 -12.203.176.0/20 7018 -12.203.192.0/22 7018 -12.203.196.0/24 7018 -12.203.197.0/24 22034 -12.203.198.0/23 7018 -12.203.200.0/21 7018 -12.203.208.0/20 7018 -12.203.224.0/19 7018 -12.204.0.0/19 7018 -12.204.32.0/20 7018 -12.204.48.0/22 7018 -12.204.52.0/23 7018 -12.204.54.0/24 40656 -12.204.55.0/24 7018 -12.204.56.0/23 7018 -12.204.58.0/24 7018 -12.204.59.0/24 23120 -12.204.60.0/22 7018 -12.204.64.0/22 7018 -12.204.68.0/24 7018 -12.204.69.0/24 393674 -12.204.70.0/24 393674 -12.204.71.0/24 7018 -12.204.72.0/21 7018 -12.204.80.0/20 7018 -12.204.96.0/20 7018 -12.204.112.0/22 7018 -12.204.116.0/23 7018 -12.204.118.0/24 7018 -12.204.119.0/24 46870 -12.204.120.0/21 7018 -12.204.128.0/19 7018 -12.204.160.0/21 7018 -12.204.168.0/24 27529 -12.204.169.0/24 7018 -12.204.170.0/23 7018 -12.204.172.0/23 7018 -12.204.174.0/24 7018 -12.204.175.0/24 27529 -12.204.176.0/22 7018 -12.204.180.0/22 18569 -12.204.184.0/21 7018 -12.204.192.0/21 19957 -12.204.200.0/24 7018 -12.204.201.0/24 19956 -12.204.202.0/23 7018 -12.204.204.0/24 19957 -12.204.205.0/24 7018 -12.204.206.0/24 19957 -12.204.207.0/24 7018 -12.204.208.0/23 19956 -12.204.210.0/23 7018 -12.204.212.0/22 7018 -12.204.216.0/21 19957 -12.204.224.0/19 7018 -12.205.0.0/18 7018 -12.205.64.0/19 11992 -12.205.96.0/24 11992 -12.205.97.0/24 22888 -12.205.98.0/23 11992 -12.205.100.0/22 11992 -12.205.104.0/21 11992 -12.205.112.0/20 11992 -12.205.128.0/21 7018 -12.205.136.0/23 53325 -12.205.138.0/23 7018 -12.205.140.0/23 53325 -12.205.142.0/23 7018 -12.205.144.0/20 7018 -12.205.160.0/22 7018 -12.205.164.0/24 7018 -12.205.165.0/24 395936 -12.205.166.0/23 7018 -12.205.168.0/21 7018 -12.205.176.0/24 397926 -12.205.177.0/24 7018 -12.205.178.0/23 7018 -12.205.180.0/22 7018 -12.205.184.0/21 7018 -12.205.192.0/20 7018 -12.205.208.0/23 7018 -12.205.210.0/24 7018 -12.205.211.0/24 32041 -12.205.212.0/22 7018 -12.205.216.0/21 7018 -12.205.224.0/20 7018 -12.205.240.0/20 30091 -12.206.0.0/22 7018 -12.206.4.0/24 33172 -12.206.5.0/24 7018 -12.206.6.0/23 7018 -12.206.8.0/21 7018 -12.206.16.0/22 7018 -12.206.20.0/23 7018 -12.206.22.0/24 2386 -12.206.23.0/24 7018 -12.206.24.0/21 7018 -12.206.32.0/19 7018 -12.206.64.0/19 7018 -12.206.96.0/22 7018 -12.206.100.0/24 30196 -12.206.101.0/24 7018 -12.206.102.0/23 7018 -12.206.104.0/21 7018 -12.206.112.0/20 7018 -12.206.128.0/20 7018 -12.206.144.0/21 7018 -12.206.152.0/22 7018 -12.206.156.0/24 7018 -12.206.157.0/24 2386 -12.206.158.0/23 7018 -12.206.160.0/21 7018 -12.206.168.0/24 11803 -12.206.169.0/24 7018 -12.206.170.0/23 7018 -12.206.172.0/22 7018 -12.206.176.0/20 7018 -12.206.192.0/22 7018 -12.206.196.0/22 18531 -12.206.200.0/21 7018 -12.206.208.0/22 7018 -12.206.212.0/24 7018 -12.206.213.0/24 32375 -12.206.214.0/24 20315 -12.206.215.0/24 16961 -12.206.216.0/24 7018 -12.206.217.0/24 22340 -12.206.218.0/23 7018 -12.206.220.0/22 7018 -12.206.224.0/19 7018 -12.207.0.0/17 7018 -12.207.128.0/20 7018 -12.207.144.0/21 7018 -12.207.152.0/22 7018 -12.207.156.0/24 7018 -12.207.157.0/24 395757 -12.207.158.0/23 7018 -12.207.160.0/20 7018 -12.207.176.0/22 7018 -12.207.180.0/23 7018 -12.207.182.0/24 397593 -12.207.183.0/24 7018 -12.207.184.0/23 7018 -12.207.186.0/24 2386 -12.207.187.0/24 7018 -12.207.188.0/22 7018 -12.207.192.0/22 7018 -12.207.196.0/23 7018 -12.207.198.0/24 7018 -12.207.199.0/24 31847 -12.207.200.0/21 7018 -12.207.208.0/20 7018 -12.207.224.0/20 7018 -12.207.240.0/21 7018 -12.207.248.0/22 7018 -12.207.252.0/24 22106 -12.207.253.0/24 7018 -12.207.254.0/24 4546 -12.207.255.0/24 7018 -12.208.0.0/21 7018 -12.208.8.0/23 7018 -12.208.10.0/24 7018 -12.208.11.0/24 53765 -12.208.12.0/22 7018 -12.208.16.0/20 7018 -12.208.32.0/20 7018 -12.208.48.0/22 7018 -12.208.52.0/23 7018 -12.208.54.0/24 7018 -12.208.55.0/24 394059 -12.208.56.0/21 7018 -12.208.64.0/19 7018 -12.208.96.0/24 393707 -12.208.97.0/24 7018 -12.208.98.0/24 393707 -12.208.99.0/24 7018 -12.208.100.0/22 7018 -12.208.104.0/21 7018 -12.208.112.0/21 7018 -12.208.120.0/22 62620 -12.208.124.0/22 7018 -12.208.128.0/21 7018 -12.208.136.0/22 7018 -12.208.140.0/23 7018 -12.208.142.0/24 14388 -12.208.143.0/24 7018 -12.208.144.0/23 7018 -12.208.146.0/24 2386 -12.208.147.0/24 7018 -12.208.148.0/23 7018 -12.208.150.0/24 7018 -12.208.151.0/24 27309 -12.208.152.0/21 7018 -12.208.160.0/20 7018 -12.208.176.0/22 7018 -12.208.180.0/22 18531 -12.208.184.0/21 7018 -12.208.192.0/23 7018 -12.208.194.0/24 7018 -12.208.195.0/24 2386 -12.208.196.0/22 7018 -12.208.200.0/21 7018 -12.208.208.0/20 7018 -12.208.224.0/21 7018 -12.208.232.0/22 7018 -12.208.236.0/23 7018 -12.208.238.0/24 7018 -12.208.239.0/24 27632 -12.208.240.0/20 7018 -12.209.0.0/16 7018 -12.210.0.0/15 7018 -12.212.0.0/15 7018 -12.214.0.0/16 7018 -12.215.0.0/20 7018 -12.215.16.0/22 7018 -12.215.20.0/22 27202 -12.215.24.0/21 7018 -12.215.32.0/19 7018 -12.215.64.0/18 7018 -12.215.128.0/17 7018 -12.216.0.0/21 7018 -12.216.8.0/21 2386 -12.216.16.0/20 7018 -12.216.32.0/20 7018 -12.216.48.0/21 7018 -12.216.56.0/22 7018 -12.216.60.0/23 7018 -12.216.62.0/24 54411 -12.216.63.0/24 7018 -12.216.64.0/18 7018 -12.216.128.0/20 7018 -12.216.144.0/21 7018 -12.216.152.0/24 7018 -12.216.153.0/24 2386 -12.216.154.0/23 7018 -12.216.156.0/22 7018 -12.216.160.0/19 7018 -12.216.192.0/24 19932 -12.216.193.0/24 39989 -12.216.194.0/23 7018 -12.216.196.0/22 7018 -12.216.200.0/21 7018 -12.216.208.0/21 7018 -12.216.216.0/24 54428 -12.216.217.0/24 7018 -12.216.218.0/23 7018 -12.216.220.0/22 7018 -12.216.224.0/24 7018 -12.216.225.0/24 54747 -12.216.226.0/23 7018 -12.216.228.0/23 7018 -12.216.230.0/24 7018 -12.216.231.0/24 7384 -12.216.232.0/21 7018 -12.216.240.0/21 7018 -12.216.248.0/22 7018 -12.216.252.0/24 7018 -12.216.253.0/24 22362 -12.216.254.0/23 7018 -12.217.0.0/19 7018 -12.217.32.0/20 7018 -12.217.48.0/24 7018 -12.217.49.0/24 2386 -12.217.50.0/23 7018 -12.217.52.0/22 7018 -12.217.56.0/21 7018 -12.217.64.0/20 7018 -12.217.80.0/24 7018 -12.217.81.0/24 12104 -12.217.82.0/23 7018 -12.217.84.0/22 7018 -12.217.88.0/22 7018 -12.217.92.0/23 7018 -12.217.94.0/24 33160 -12.217.95.0/24 7018 -12.217.96.0/24 7018 -12.217.97.0/24 54710 -12.217.98.0/23 7018 -12.217.100.0/22 7018 -12.217.104.0/21 7018 -12.217.112.0/20 7018 -12.217.128.0/19 7018 -12.217.160.0/22 7018 -12.217.164.0/24 54262 -12.217.165.0/24 7018 -12.217.166.0/23 7018 -12.217.168.0/21 7018 -12.217.176.0/20 7018 -12.217.192.0/20 7018 -12.217.208.0/23 7018 -12.217.210.0/24 2386 -12.217.211.0/24 7018 -12.217.212.0/22 7018 -12.217.216.0/22 7018 -12.217.220.0/23 7018 -12.217.222.0/23 2386 -12.217.224.0/19 7018 -12.218.0.0/23 27529 -12.218.2.0/24 27529 -12.218.3.0/24 7018 -12.218.4.0/22 7018 -12.218.8.0/21 7018 -12.218.16.0/20 7018 -12.218.32.0/19 7018 -12.218.64.0/18 7018 -12.218.128.0/18 7018 -12.218.192.0/19 7018 -12.218.224.0/21 7018 -12.218.232.0/22 7018 -12.218.236.0/23 7018 -12.218.238.0/23 46286 -12.218.240.0/20 7018 -12.219.0.0/21 7018 -12.219.8.0/24 7018 -12.219.9.0/24 7046 -12.219.10.0/23 7018 -12.219.12.0/22 7018 -12.219.16.0/20 7018 -12.219.32.0/21 7018 -12.219.40.0/24 7018 -12.219.41.0/24 53533 -12.219.42.0/23 7018 -12.219.44.0/22 7018 -12.219.48.0/22 7018 -12.219.52.0/23 7018 -12.219.54.0/24 7018 -12.219.55.0/24 19015 -12.219.56.0/21 7018 -12.219.64.0/18 7018 -12.219.128.0/18 7018 -12.219.192.0/20 7018 -12.219.208.0/22 7018 -12.219.212.0/23 27195 -12.219.214.0/23 7018 -12.219.216.0/23 7018 -12.219.218.0/24 7018 -12.219.219.0/24 13621 -12.219.220.0/22 7018 -12.219.224.0/19 7018 -12.220.0.0/18 7018 -12.220.64.0/20 7018 -12.220.80.0/24 18569 -12.220.81.0/24 7018 -12.220.82.0/23 7018 -12.220.84.0/22 7018 -12.220.88.0/21 7018 -12.220.96.0/24 19443 -12.220.97.0/24 7018 -12.220.98.0/23 7018 -12.220.100.0/23 7018 -12.220.102.0/23 30572 -12.220.104.0/21 7018 -12.220.112.0/24 7018 -12.220.113.0/24 395992 -12.220.114.0/24 2386 -12.220.115.0/24 7018 -12.220.116.0/22 7018 -12.220.120.0/21 7018 -12.220.128.0/21 7018 -12.220.136.0/22 7018 -12.220.140.0/24 7018 -12.220.141.0/24 394265 -12.220.142.0/23 7018 -12.220.144.0/20 7018 -12.220.160.0/19 7018 -12.220.192.0/19 7018 -12.220.224.0/22 7018 -12.220.228.0/23 7018 -12.220.230.0/24 54411 -12.220.231.0/24 7018 -12.220.232.0/21 7018 -12.220.240.0/20 7018 -12.221.0.0/20 7018 -12.221.16.0/24 7018 -12.221.17.0/24 2386 -12.221.18.0/23 7018 -12.221.20.0/22 7018 -12.221.24.0/21 7018 -12.221.32.0/19 7018 -12.221.64.0/24 7018 -12.221.65.0/24 53946 -12.221.66.0/23 7018 -12.221.68.0/22 7018 -12.221.72.0/21 7018 -12.221.80.0/23 7018 -12.221.82.0/24 4366 -12.221.83.0/24 7018 -12.221.84.0/22 7018 -12.221.88.0/21 7018 -12.221.96.0/24 35884 -12.221.97.0/24 7018 -12.221.98.0/23 7018 -12.221.100.0/22 7018 -12.221.104.0/21 7018 -12.221.112.0/22 7018 -12.221.116.0/22 2386 -12.221.120.0/21 7018 -12.221.128.0/21 7018 -12.221.136.0/22 54638 -12.221.140.0/22 7018 -12.221.144.0/22 7018 -12.221.148.0/23 7018 -12.221.150.0/24 397977 -12.221.151.0/24 7018 -12.221.152.0/21 7018 -12.221.160.0/19 7018 -12.221.192.0/23 7018 -12.221.194.0/24 30610 -12.221.195.0/24 7018 -12.221.196.0/22 7018 -12.221.200.0/21 7018 -12.221.208.0/22 7018 -12.221.212.0/22 2386 -12.221.216.0/24 7018 -12.221.217.0/24 6352 -12.221.218.0/23 7018 -12.221.220.0/22 7018 -12.221.224.0/19 7018 -12.222.0.0/18 7018 -12.222.64.0/20 7018 -12.222.80.0/22 7018 -12.222.84.0/24 7018 -12.222.85.0/24 394733 -12.222.86.0/23 7018 -12.222.88.0/21 7018 -12.222.96.0/19 7018 -12.222.128.0/19 7018 -12.222.160.0/21 7018 -12.222.168.0/23 7018 -12.222.170.0/24 16571 -12.222.171.0/24 7018 -12.222.172.0/22 7018 -12.222.176.0/20 7018 -12.222.192.0/21 7018 -12.222.200.0/22 7018 -12.222.204.0/23 15150 -12.222.206.0/23 7018 -12.222.208.0/20 7018 -12.222.224.0/20 7018 -12.222.240.0/24 54959 -12.222.241.0/24 7018 -12.222.242.0/23 7018 -12.222.244.0/22 7018 -12.222.248.0/22 7018 -12.222.252.0/22 22528 -12.223.0.0/16 7018 -12.224.0.0/15 7018 -12.226.0.0/21 7018 -12.226.8.0/24 7018 -12.226.9.0/24 19309 -12.226.10.0/23 7018 -12.226.12.0/22 7018 -12.226.16.0/20 7018 -12.226.32.0/19 7018 -12.226.64.0/21 7018 -12.226.72.0/22 7018 -12.226.76.0/23 7018 -12.226.78.0/23 25993 -12.226.80.0/21 7018 -12.226.88.0/23 7018 -12.226.90.0/24 7018 -12.226.91.0/24 18610 -12.226.92.0/22 7018 -12.226.96.0/20 7018 -12.226.112.0/21 7018 -12.226.120.0/23 4473 -12.226.122.0/24 4473 -12.226.123.0/24 7018 -12.226.124.0/22 7018 -12.226.128.0/18 7018 -12.226.192.0/19 7018 -12.226.224.0/21 7018 -12.226.232.0/24 7018 -12.226.233.0/24 6319 -12.226.234.0/23 7018 -12.226.236.0/22 7018 -12.226.240.0/20 7018 -12.227.0.0/19 7018 -12.227.32.0/20 7018 -12.227.48.0/23 36105 -12.227.50.0/23 7018 -12.227.52.0/22 7018 -12.227.56.0/21 7018 -12.227.64.0/19 7018 -12.227.96.0/20 54448 -12.227.112.0/20 7018 -12.227.128.0/21 7018 -12.227.136.0/22 7018 -12.227.140.0/23 7018 -12.227.142.0/24 7018 -12.227.143.0/24 54448 -12.227.144.0/21 54448 -12.227.152.0/23 54448 -12.227.154.0/24 54448 -12.227.155.0/24 7018 -12.227.156.0/22 7018 -12.227.160.0/20 7018 -12.227.176.0/21 7018 -12.227.184.0/24 20181 -12.227.185.0/24 20072 -12.227.186.0/24 7018 -12.227.187.0/24 46579 -12.227.188.0/22 7018 -12.227.192.0/21 7018 -12.227.200.0/24 7018 -12.227.201.0/24 2386 -12.227.202.0/23 7018 -12.227.204.0/22 7018 -12.227.208.0/20 7018 -12.227.224.0/20 7018 -12.227.240.0/22 7018 -12.227.244.0/24 7018 -12.227.245.0/24 32326 -12.227.246.0/23 7018 -12.227.248.0/22 7018 -12.227.252.0/24 27482 -12.227.253.0/24 7018 -12.227.254.0/23 7018 -12.228.0.0/22 7018 -12.228.4.0/22 46121 -12.228.8.0/21 7018 -12.228.16.0/20 7018 -12.228.32.0/19 7018 -12.228.64.0/18 7018 -12.228.128.0/20 7018 -12.228.144.0/23 7018 -12.228.146.0/24 40842 -12.228.147.0/24 7018 -12.228.148.0/22 7018 -12.228.152.0/21 7018 -12.228.160.0/20 7018 -12.228.176.0/21 7018 -12.228.184.0/23 7018 -12.228.186.0/24 25632 -12.228.187.0/24 7018 -12.228.188.0/22 7018 -12.228.192.0/18 7018 -12.229.0.0/22 7018 -12.229.4.0/23 26306 -12.229.6.0/23 7018 -12.229.8.0/24 6319 -12.229.9.0/24 7018 -12.229.10.0/23 7018 -12.229.12.0/22 7018 -12.229.16.0/22 7018 -12.229.20.0/23 7018 -12.229.22.0/24 2386 -12.229.23.0/24 7018 -12.229.24.0/21 7018 -12.229.32.0/20 7018 -12.229.48.0/22 7018 -12.229.52.0/24 7018 -12.229.53.0/24 22528 -12.229.54.0/23 7018 -12.229.56.0/21 7018 -12.229.64.0/19 7018 -12.229.96.0/23 7018 -12.229.98.0/24 7018 -12.229.99.0/24 3655 -12.229.100.0/22 7018 -12.229.104.0/21 7018 -12.229.112.0/20 7018 -12.229.128.0/20 7018 -12.229.144.0/23 7018 -12.229.146.0/24 21900 -12.229.147.0/24 7018 -12.229.148.0/22 7018 -12.229.152.0/24 7018 -12.229.153.0/24 22535 -12.229.154.0/23 7018 -12.229.156.0/24 7018 -12.229.157.0/24 20408 -12.229.158.0/23 7018 -12.229.160.0/21 7018 -12.229.168.0/23 7018 -12.229.170.0/24 7018 -12.229.171.0/24 31806 -12.229.172.0/22 7018 -12.229.176.0/21 7018 -12.229.184.0/22 7018 -12.229.188.0/23 7018 -12.229.190.0/23 1641 -12.229.192.0/20 7018 -12.229.208.0/21 7018 -12.229.216.0/22 7018 -12.229.220.0/24 40656 -12.229.221.0/24 7018 -12.229.222.0/23 7018 -12.229.224.0/19 7018 -12.230.0.0/19 7018 -12.230.32.0/21 7018 -12.230.40.0/24 394777 -12.230.41.0/24 7018 -12.230.42.0/23 7018 -12.230.44.0/24 7018 -12.230.45.0/24 30258 -12.230.46.0/23 7018 -12.230.48.0/20 7018 -12.230.64.0/20 7018 -12.230.80.0/23 7018 -12.230.82.0/24 7018 -12.230.83.0/24 40037 -12.230.84.0/22 7018 -12.230.88.0/21 7018 -12.230.96.0/19 7018 -12.230.128.0/18 7018 -12.230.192.0/19 7018 -12.230.224.0/21 7018 -12.230.232.0/22 7018 -12.230.236.0/23 7018 -12.230.238.0/24 7018 -12.230.239.0/24 2386 -12.230.240.0/21 7018 -12.230.248.0/22 7018 -12.230.252.0/23 7018 -12.230.254.0/24 7018 -12.230.255.0/24 40697 -12.231.0.0/23 7018 -12.231.2.0/24 2386 -12.231.3.0/24 7018 -12.231.4.0/22 7018 -12.231.8.0/21 7018 -12.231.16.0/20 7018 -12.231.32.0/20 7018 -12.231.48.0/21 7018 -12.231.56.0/23 7018 -12.231.58.0/24 13968 -12.231.59.0/24 7018 -12.231.60.0/22 7018 -12.231.64.0/22 7018 -12.231.68.0/24 7018 -12.231.69.0/24 18651 -12.231.70.0/23 7018 -12.231.72.0/21 7018 -12.231.80.0/20 7018 -12.231.96.0/23 7018 -12.231.98.0/24 30356 -12.231.99.0/24 7018 -12.231.100.0/22 7018 -12.231.104.0/22 7018 -12.231.108.0/24 25783 -12.231.109.0/24 7018 -12.231.110.0/23 7018 -12.231.112.0/20 7018 -12.231.128.0/20 7018 -12.231.144.0/22 7018 -12.231.148.0/23 7018 -12.231.150.0/24 7018 -12.231.151.0/24 13624 -12.231.152.0/23 7018 -12.231.154.0/24 7018 -12.231.155.0/24 54357 -12.231.156.0/22 7018 -12.231.160.0/22 7018 -12.231.164.0/23 7018 -12.231.166.0/23 54638 -12.231.168.0/21 7018 -12.231.176.0/20 7018 -12.231.192.0/21 7018 -12.231.200.0/22 7018 -12.231.204.0/24 7018 -12.231.205.0/24 62553 -12.231.206.0/23 7018 -12.231.208.0/20 7018 -12.231.224.0/20 7018 -12.231.240.0/22 7018 -12.231.244.0/24 7018 -12.231.245.0/24 46579 -12.231.246.0/23 7018 -12.231.248.0/21 7018 -12.232.0.0/21 7018 -12.232.8.0/24 7018 -12.232.9.0/24 2386 -12.232.10.0/23 7018 -12.232.12.0/23 7018 -12.232.14.0/24 32219 -12.232.15.0/24 7018 -12.232.16.0/22 7018 -12.232.20.0/23 7018 -12.232.22.0/24 7018 -12.232.23.0/24 22261 -12.232.24.0/22 7018 -12.232.28.0/24 36173 -12.232.29.0/24 7018 -12.232.30.0/23 7018 -12.232.32.0/22 7018 -12.232.36.0/24 109 -12.232.37.0/24 7018 -12.232.38.0/23 7018 -12.232.40.0/21 7018 -12.232.48.0/20 7018 -12.232.64.0/20 7018 -12.232.80.0/22 7018 -12.232.84.0/23 7018 -12.232.86.0/24 4917 -12.232.87.0/24 7018 -12.232.88.0/21 7018 -12.232.96.0/19 7018 -12.232.128.0/20 7018 -12.232.144.0/22 7018 -12.232.148.0/24 7116 -12.232.149.0/24 7018 -12.232.150.0/23 7018 -12.232.152.0/21 7018 -12.232.160.0/19 7018 -12.232.192.0/18 7018 -12.233.0.0/22 7018 -12.233.4.0/23 7018 -12.233.6.0/24 2386 -12.233.7.0/24 7018 -12.233.8.0/21 7018 -12.233.16.0/21 7018 -12.233.24.0/23 7018 -12.233.26.0/24 395234 -12.233.27.0/24 7018 -12.233.28.0/22 7018 -12.233.32.0/19 7018 -12.233.64.0/20 7018 -12.233.80.0/21 7018 -12.233.88.0/22 7018 -12.233.92.0/23 7018 -12.233.94.0/23 46403 -12.233.96.0/24 7018 -12.233.97.0/24 2386 -12.233.98.0/24 7018 -12.233.99.0/24 26437 -12.233.100.0/22 7018 -12.233.104.0/21 7018 -12.233.112.0/20 7018 -12.233.128.0/19 7018 -12.233.160.0/24 7018 -12.233.161.0/24 2386 -12.233.162.0/24 2386 -12.233.163.0/24 7018 -12.233.164.0/22 7018 -12.233.168.0/21 7018 -12.233.176.0/24 32158 -12.233.177.0/24 7018 -12.233.178.0/23 7018 -12.233.180.0/22 7018 -12.233.184.0/21 7018 -12.233.192.0/20 7018 -12.233.208.0/22 7018 -12.233.212.0/24 30091 -12.233.213.0/24 2386 -12.233.214.0/23 7018 -12.233.216.0/21 7018 -12.233.224.0/19 7018 -12.234.0.0/18 7018 -12.234.64.0/20 7018 -12.234.80.0/21 7018 -12.234.88.0/22 7018 -12.234.92.0/24 7018 -12.234.93.0/24 40687 -12.234.94.0/23 7018 -12.234.96.0/19 7018 -12.234.128.0/17 7018 -12.235.0.0/21 7018 -12.235.8.0/24 13750 -12.235.9.0/24 7018 -12.235.10.0/23 7018 -12.235.12.0/22 7018 -12.235.16.0/20 7018 -12.235.32.0/19 7018 -12.235.64.0/18 7018 -12.235.128.0/20 7018 -12.235.144.0/22 7018 -12.235.148.0/23 7018 -12.235.150.0/24 7018 -12.235.151.0/24 396089 -12.235.152.0/22 7018 -12.235.156.0/23 7018 -12.235.158.0/24 7018 -12.235.159.0/24 2386 -12.235.160.0/21 7018 -12.235.168.0/22 7018 -12.235.172.0/24 395498 -12.235.173.0/24 7018 -12.235.174.0/23 7018 -12.235.176.0/20 7018 -12.235.192.0/18 7018 -12.236.0.0/22 7018 -12.236.4.0/24 395742 -12.236.5.0/24 7018 -12.236.6.0/23 7018 -12.236.8.0/21 7018 -12.236.16.0/21 7018 -12.236.24.0/22 7018 -12.236.28.0/24 7018 -12.236.29.0/24 395550 -12.236.30.0/23 7018 -12.236.32.0/19 7018 -12.236.64.0/20 7018 -12.236.80.0/22 7018 -12.236.84.0/22 2386 -12.236.88.0/21 7018 -12.236.96.0/21 7018 -12.236.104.0/22 7018 -12.236.108.0/23 7018 -12.236.110.0/24 46605 -12.236.111.0/24 7018 -12.236.112.0/20 7018 -12.236.128.0/20 7018 -12.236.144.0/21 7018 -12.236.152.0/22 7018 -12.236.156.0/23 62813 -12.236.158.0/23 7018 -12.236.160.0/19 7018 -12.236.192.0/21 7018 -12.236.200.0/23 7018 -12.236.202.0/24 36313 -12.236.203.0/24 7018 -12.236.204.0/22 7018 -12.236.208.0/21 7018 -12.236.216.0/23 7018 -12.236.218.0/24 36406 -12.236.219.0/24 7018 -12.236.220.0/22 7018 -12.236.224.0/23 7018 -12.236.226.0/24 46827 -12.236.227.0/24 7018 -12.236.228.0/24 7018 -12.236.229.0/24 4883 -12.236.230.0/23 7018 -12.236.232.0/22 7018 -12.236.236.0/23 7018 -12.236.238.0/23 55265 -12.236.240.0/21 7018 -12.236.248.0/23 2386 -12.236.250.0/23 7018 -12.236.252.0/22 7018 -12.237.0.0/22 7018 -12.237.4.0/22 26311 -12.237.8.0/21 7018 -12.237.16.0/20 7018 -12.237.32.0/19 7018 -12.237.64.0/24 7018 -12.237.65.0/24 55196 -12.237.66.0/23 7018 -12.237.68.0/24 14376 -12.237.69.0/24 7018 -12.237.70.0/23 7018 -12.237.72.0/21 7018 -12.237.80.0/20 7018 -12.237.96.0/22 7018 -12.237.100.0/23 7018 -12.237.102.0/24 7018 -12.237.103.0/24 14623 -12.237.104.0/21 7018 -12.237.112.0/20 7018 -12.237.128.0/20 7018 -12.237.144.0/23 7018 -12.237.146.0/24 46899 -12.237.147.0/24 7018 -12.237.148.0/22 7018 -12.237.152.0/21 7018 -12.237.160.0/20 7018 -12.237.176.0/23 7018 -12.237.178.0/24 30483 -12.237.179.0/24 7018 -12.237.180.0/24 30483 -12.237.181.0/24 7018 -12.237.182.0/23 7018 -12.237.184.0/21 7018 -12.237.192.0/22 7018 -12.237.196.0/23 30101 -12.237.198.0/23 7018 -12.237.200.0/22 7018 -12.237.204.0/23 7018 -12.237.206.0/23 2386 -12.237.208.0/21 7018 -12.237.216.0/22 7018 -12.237.220.0/23 7018 -12.237.222.0/24 2386 -12.237.223.0/24 7018 -12.237.224.0/21 7018 -12.237.232.0/22 7018 -12.237.236.0/24 2386 -12.237.237.0/24 7018 -12.237.238.0/23 7018 -12.237.240.0/20 7018 -12.238.0.0/18 7018 -12.238.64.0/19 7018 -12.238.96.0/24 11085 -12.238.97.0/24 7018 -12.238.98.0/23 7018 -12.238.100.0/22 7018 -12.238.104.0/21 7018 -12.238.112.0/20 7018 -12.238.128.0/20 7018 -12.238.144.0/21 7018 -12.238.152.0/22 7018 -12.238.156.0/23 7018 -12.238.158.0/23 32912 -12.238.160.0/19 7018 -12.238.192.0/18 7018 -12.239.0.0/19 7018 -12.239.32.0/20 7018 -12.239.48.0/22 7018 -12.239.52.0/24 19524 -12.239.53.0/24 7018 -12.239.54.0/23 7018 -12.239.56.0/21 7018 -12.239.64.0/19 7018 -12.239.96.0/20 7018 -12.239.112.0/21 7018 -12.239.120.0/22 40885 -12.239.124.0/22 7018 -12.239.128.0/18 7018 -12.239.192.0/20 7018 -12.239.208.0/22 7018 -12.239.212.0/24 7018 -12.239.213.0/24 22040 -12.239.214.0/23 7018 -12.239.216.0/21 7018 -12.239.224.0/19 7018 -12.240.0.0/13 7018 -12.248.0.0/14 7018 -12.252.0.0/16 7018 -12.253.0.0/18 8030 -12.253.64.0/18 7018 -12.253.128.0/17 7018 -12.254.0.0/16 7018 -12.255.0.0/18 7018 -12.255.64.0/20 7018 -12.255.80.0/23 7018 -12.255.82.0/24 7018 -12.255.83.0/24 4466 -12.255.84.0/22 4466 -12.255.88.0/23 4466 -12.255.90.0/23 7018 -12.255.92.0/22 4466 -12.255.96.0/19 7018 -12.255.128.0/21 7018 -12.255.136.0/23 7018 -12.255.138.0/23 4466 -12.255.140.0/23 4466 -12.255.142.0/24 4466 -12.255.143.0/24 7018 -12.255.144.0/21 17224 -12.255.152.0/23 17224 -12.255.154.0/24 17224 -12.255.155.0/24 7018 -12.255.156.0/22 17224 -12.255.160.0/21 17224 -12.255.168.0/23 17224 -12.255.170.0/24 17224 -12.255.171.0/24 7018 -12.255.172.0/22 17224 -12.255.176.0/20 7018 -12.255.192.0/18 7018 -13.0.200.0/21 33631 -13.0.208.0/21 33631 -13.1.64.0/21 33631 -13.1.96.0/20 33631 -13.1.120.0/22 33631 -13.1.136.0/22 33631 -13.1.168.0/21 33631 -13.2.8.0/21 33631 -13.2.16.0/21 33631 -13.2.40.0/21 33631 -13.2.112.0/21 33631 -13.3.160.0/21 33631 -13.4.0.0/22 33631 -13.4.8.0/21 33631 -13.4.16.0/22 33631 -13.4.44.0/22 33631 -13.4.48.0/22 33631 -13.4.66.0/24 33631 -13.6.0.0/23 33631 -13.7.0.0/24 33631 -13.7.8.0/21 33631 -13.7.16.0/22 33631 -13.7.24.0/21 33631 -13.7.32.0/21 33631 -13.7.64.0/21 33631 -13.7.132.0/22 33631 -13.7.140.0/22 33631 -13.7.148.0/22 33631 -13.7.152.0/24 33631 -13.7.160.0/19 33631 -13.7.192.0/21 33631 -13.8.0.0/16 26662 -13.10.0.0/16 26662 -13.13.0.0/16 22390 -13.14.0.0/15 22390 -13.16.0.0/15 26662 -13.20.0.0/15 395959 -13.32.0.0/21 16509 -13.32.8.0/22 16509 -13.32.12.0/23 16509 -13.32.14.0/24 16509 -13.32.16.0/21 16509 -13.32.24.0/22 16509 -13.32.28.0/23 16509 -13.32.30.0/24 16509 -13.32.32.0/21 16509 -13.32.40.0/22 16509 -13.32.45.0/24 16509 -13.32.46.0/24 16509 -13.32.48.0/21 16509 -13.32.56.0/23 16509 -13.32.60.0/22 16509 -13.32.72.0/21 16509 -13.32.80.0/21 16509 -13.32.88.0/22 16509 -13.32.93.0/24 16509 -13.32.98.0/23 16509 -13.32.100.0/23 16509 -13.32.104.0/23 16509 -13.32.106.0/24 16509 -13.32.108.0/22 16509 -13.32.112.0/22 16509 -13.32.117.0/24 16509 -13.32.118.0/23 16509 -13.32.120.0/23 16509 -13.32.124.0/22 16509 -13.32.128.0/23 16509 -13.32.134.0/23 16509 -13.32.136.0/23 16509 -13.32.167.0/24 16509 -13.32.168.0/21 16509 -13.32.178.0/23 16509 -13.32.184.0/21 16509 -13.32.192.0/20 16509 -13.32.230.0/23 16509 -13.32.232.0/24 16509 -13.32.246.0/23 16509 -13.32.252.0/22 16509 -13.33.8.0/22 16509 -13.33.12.0/23 16509 -13.33.16.0/21 16509 -13.33.24.0/22 16509 -13.33.40.0/21 16509 -13.33.48.0/21 16509 -13.33.56.0/22 16509 -13.33.60.0/23 16509 -13.33.62.0/24 16509 -13.33.64.0/21 16509 -13.33.72.0/22 16509 -13.33.76.0/23 16509 -13.33.80.0/21 16509 -13.33.88.0/22 16509 -13.33.94.0/23 16509 -13.33.96.0/21 16509 -13.33.108.0/23 16509 -13.33.111.0/24 16509 -13.33.120.0/22 16509 -13.33.126.0/24 16509 -13.33.128.0/21 16509 -13.33.140.0/22 16509 -13.33.152.0/22 16509 -13.33.156.0/23 16509 -13.33.160.0/21 16509 -13.33.168.0/22 16509 -13.33.174.0/24 16509 -13.33.176.0/21 16509 -13.33.189.0/24 16509 -13.33.200.0/22 16509 -13.33.208.0/21 16509 -13.33.224.0/19 16509 -13.35.0.0/21 16509 -13.35.8.0/23 16509 -13.35.11.0/24 16509 -13.35.12.0/22 16509 -13.35.16.0/21 16509 -13.35.24.0/23 16509 -13.35.27.0/24 16509 -13.35.28.0/22 16509 -13.35.32.0/21 16509 -13.35.40.0/23 16509 -13.35.43.0/24 16509 -13.35.44.0/22 16509 -13.35.48.0/21 16509 -13.35.57.0/24 16509 -13.35.58.0/23 16509 -13.35.60.0/22 16509 -13.35.64.0/21 16509 -13.35.73.0/24 16509 -13.35.74.0/23 16509 -13.35.76.0/22 16509 -13.35.80.0/21 16509 -13.35.89.0/24 16509 -13.35.90.0/23 16509 -13.35.92.0/22 16509 -13.35.96.0/21 16509 -13.35.105.0/24 16509 -13.35.106.0/23 16509 -13.35.108.0/22 16509 -13.35.112.0/21 16509 -13.35.121.0/24 16509 -13.35.122.0/23 16509 -13.35.124.0/22 16509 -13.35.128.0/21 16509 -13.35.137.0/24 16509 -13.35.138.0/23 16509 -13.35.140.0/22 16509 -13.35.144.0/21 16509 -13.35.153.0/24 16509 -13.35.154.0/23 16509 -13.35.156.0/22 16509 -13.35.160.0/21 16509 -13.35.169.0/24 16509 -13.35.170.0/23 16509 -13.35.172.0/22 16509 -13.35.176.0/21 16509 -13.35.185.0/24 16509 -13.35.186.0/23 16509 -13.35.188.0/22 16509 -13.35.193.0/24 16509 -13.35.194.0/23 16509 -13.35.196.0/22 16509 -13.35.201.0/24 16509 -13.35.202.0/23 16509 -13.35.204.0/22 16509 -13.35.208.0/20 16509 -13.35.224.0/21 16509 -13.35.233.0/24 16509 -13.35.234.0/23 16509 -13.35.236.0/22 16509 -13.35.240.0/21 16509 -13.35.250.0/23 16509 -13.35.252.0/22 16509 -13.48.0.0/15 16509 -13.52.0.0/14 16509 -13.56.0.0/14 16509 -13.64.0.0/11 8075 -13.104.0.0/15 8075 -13.106.0.0/16 8075 -13.107.0.0/23 8075 -13.107.2.0/24 8075 -13.107.3.0/24 8068 -13.107.4.0/22 8068 -13.107.8.0/24 8075 -13.107.9.0/24 8068 -13.107.10.0/23 8075 -13.107.12.0/23 8068 -13.107.14.0/24 8075 -13.107.15.0/24 8068 -13.107.16.0/24 8068 -13.107.17.0/24 8075 -13.107.18.0/23 8068 -13.107.20.0/24 8075 -13.107.21.0/24 8068 -13.107.22.0/24 8068 -13.107.23.0/24 8075 -13.107.24.0/24 8068 -13.107.25.0/24 8075 -13.107.26.0/23 8075 -13.107.28.0/22 8075 -13.107.32.0/22 8075 -13.107.36.0/23 8075 -13.107.38.0/24 8075 -13.107.39.0/24 8068 -13.107.40.0/24 8068 -13.107.41.0/24 8075 -13.107.42.0/23 8068 -13.107.44.0/24 8068 -13.107.45.0/24 8075 -13.107.46.0/23 8068 -13.107.48.0/22 8068 -13.107.52.0/23 8068 -13.107.54.0/24 8068 -13.107.55.0/24 8075 -13.107.56.0/24 8068 -13.107.57.0/24 8075 -13.107.58.0/24 8068 -13.107.59.0/24 8075 -13.107.60.0/22 8075 -13.107.64.0/18 8075 -13.107.128.0/23 8068 -13.107.130.0/23 8075 -13.107.132.0/22 8075 -13.107.136.0/23 8068 -13.107.138.0/23 8075 -13.107.140.0/24 8068 -13.107.141.0/24 8075 -13.107.142.0/23 8075 -13.107.144.0/20 8075 -13.107.160.0/24 8068 -13.107.161.0/24 8075 -13.107.162.0/23 8075 -13.107.164.0/22 8075 -13.107.168.0/21 8075 -13.107.176.0/20 8075 -13.107.192.0/22 8075 -13.107.196.0/23 8075 -13.107.198.0/24 8068 -13.107.199.0/24 8075 -13.107.200.0/23 8075 -13.107.202.0/24 8068 -13.107.203.0/24 8075 -13.107.204.0/24 8068 -13.107.205.0/24 8075 -13.107.206.0/23 8075 -13.107.208.0/24 8068 -13.107.209.0/24 8075 -13.107.210.0/23 8075 -13.107.212.0/22 8075 -13.107.216.0/23 8075 -13.107.218.0/24 8075 -13.107.219.0/24 8068 -13.107.220.0/23 8068 -13.107.222.0/23 8075 -13.107.224.0/20 8075 -13.107.240.0/22 8075 -13.107.244.0/23 8075 -13.107.246.0/24 8068 -13.107.247.0/24 8075 -13.107.248.0/22 8075 -13.107.252.0/24 8075 -13.107.253.0/24 8068 -13.107.254.0/24 8068 -13.107.255.0/24 8075 -13.108.0.0/15 14340 -13.110.0.0/16 14340 -13.111.0.0/21 22606 -13.111.10.0/23 22606 -13.111.12.0/22 22606 -13.111.16.0/20 22606 -13.111.32.0/19 22606 -13.111.64.0/20 22606 -13.111.80.0/22 22606 -13.111.85.0/24 22606 -13.111.86.0/23 22606 -13.111.88.0/21 22606 -13.111.96.0/19 22606 -13.111.128.0/21 22606 -13.111.136.0/23 22606 -13.111.140.0/22 22606 -13.111.144.0/20 22606 -13.111.160.0/24 22606 -13.111.162.0/23 22606 -13.111.250.0/23 22606 -13.111.254.0/23 22606 -13.112.0.0/14 16509 -13.124.0.0/14 16509 -13.208.0.0/14 16509 -13.224.0.0/24 16509 -13.224.2.0/23 16509 -13.224.4.0/22 16509 -13.224.8.0/21 16509 -13.224.16.0/21 16509 -13.224.25.0/24 16509 -13.224.26.0/23 16509 -13.224.28.0/22 16509 -13.224.32.0/21 16509 -13.224.41.0/24 16509 -13.224.42.0/23 16509 -13.224.44.0/22 16509 -13.224.48.0/21 16509 -13.224.57.0/24 16509 -13.224.58.0/23 16509 -13.224.60.0/22 16509 -13.224.64.0/21 16509 -13.224.73.0/24 16509 -13.224.74.0/23 16509 -13.224.76.0/22 16509 -13.224.80.0/21 16509 -13.224.89.0/24 16509 -13.224.90.0/23 16509 -13.224.92.0/22 16509 -13.224.96.0/21 16509 -13.224.105.0/24 16509 -13.224.106.0/23 16509 -13.224.108.0/22 16509 -13.224.112.0/21 16509 -13.224.121.0/24 16509 -13.224.122.0/23 16509 -13.224.124.0/22 16509 -13.224.128.0/21 16509 -13.224.137.0/24 16509 -13.224.138.0/23 16509 -13.224.140.0/22 16509 -13.224.144.0/21 16509 -13.224.153.0/24 16509 -13.224.154.0/23 16509 -13.224.156.0/22 16509 -13.224.160.0/21 16509 -13.224.169.0/24 16509 -13.224.170.0/23 16509 -13.224.172.0/22 16509 -13.224.176.0/21 16509 -13.224.185.0/24 16509 -13.224.186.0/23 16509 -13.224.188.0/22 16509 -13.224.192.0/21 16509 -13.224.201.0/24 16509 -13.224.202.0/23 16509 -13.224.204.0/22 16509 -13.224.208.0/21 16509 -13.224.217.0/24 16509 -13.224.218.0/23 16509 -13.224.220.0/22 16509 -13.224.224.0/21 16509 -13.224.233.0/24 16509 -13.224.234.0/23 16509 -13.224.236.0/22 16509 -13.224.240.0/21 16509 -13.224.249.0/24 16509 -13.224.250.0/23 16509 -13.224.252.0/22 16509 -13.225.0.0/21 16509 -13.225.9.0/24 16509 -13.225.10.0/23 16509 -13.225.12.0/22 16509 -13.225.16.0/21 16509 -13.225.25.0/24 16509 -13.225.26.0/23 16509 -13.225.28.0/22 16509 -13.225.32.0/21 16509 -13.225.41.0/24 16509 -13.225.42.0/23 16509 -13.225.44.0/22 16509 -13.225.48.0/21 16509 -13.225.57.0/24 16509 -13.225.58.0/23 16509 -13.225.60.0/22 16509 -13.225.64.0/21 16509 -13.225.73.0/24 16509 -13.225.74.0/23 16509 -13.225.76.0/22 16509 -13.225.80.0/21 16509 -13.225.105.0/24 16509 -13.225.106.0/23 16509 -13.225.108.0/22 16509 -13.225.112.0/21 16509 -13.225.121.0/24 16509 -13.225.122.0/23 16509 -13.225.124.0/22 16509 -13.225.128.0/21 16509 -13.225.137.0/24 16509 -13.225.138.0/23 16509 -13.225.140.0/22 16509 -13.225.144.0/21 16509 -13.225.153.0/24 16509 -13.225.154.0/23 16509 -13.225.156.0/22 16509 -13.225.160.0/21 16509 -13.225.169.0/24 16509 -13.225.170.0/23 16509 -13.225.172.0/22 16509 -13.225.176.0/21 16509 -13.225.185.0/24 16509 -13.225.186.0/23 16509 -13.225.188.0/22 16509 -13.225.192.0/21 16509 -13.225.201.0/24 16509 -13.225.202.0/23 16509 -13.225.204.0/22 16509 -13.225.208.0/21 16509 -13.225.217.0/24 16509 -13.225.218.0/23 16509 -13.225.220.0/22 16509 -13.225.224.0/21 16509 -13.225.233.0/24 16509 -13.225.234.0/23 16509 -13.225.236.0/22 16509 -13.225.240.0/21 16509 -13.225.249.0/24 16509 -13.225.250.0/23 16509 -13.225.252.0/22 16509 -13.226.0.0/21 16509 -13.226.9.0/24 16509 -13.226.10.0/23 16509 -13.226.12.0/22 16509 -13.226.16.0/21 16509 -13.226.25.0/24 16509 -13.226.26.0/23 16509 -13.226.28.0/22 16509 -13.226.32.0/21 16509 -13.226.41.0/24 16509 -13.226.42.0/23 16509 -13.226.44.0/22 16509 -13.226.48.0/21 16509 -13.226.57.0/24 16509 -13.226.58.0/23 16509 -13.226.60.0/22 16509 -13.226.64.0/21 16509 -13.226.74.0/23 16509 -13.226.77.0/24 16509 -13.226.78.0/23 16509 -13.226.80.0/22 16509 -13.226.85.0/24 16509 -13.226.86.0/24 16509 -13.226.90.0/23 16509 -13.226.92.0/22 16509 -13.226.96.0/20 16509 -13.226.112.0/22 16509 -13.226.117.0/24 16509 -13.226.118.0/23 16509 -13.226.120.0/21 16509 -13.226.128.0/22 16509 -13.226.132.0/24 16509 -13.226.134.0/23 16509 -13.226.136.0/21 16509 -13.226.144.0/22 16509 -13.226.148.0/24 16509 -13.226.150.0/23 16509 -13.226.152.0/21 16509 -13.226.160.0/22 16509 -13.226.164.0/24 16509 -13.226.166.0/23 16509 -13.226.168.0/21 16509 -13.226.176.0/22 16509 -13.226.180.0/24 16509 -13.226.182.0/23 16509 -13.226.184.0/21 16509 -13.226.192.0/22 16509 -13.226.196.0/24 16509 -13.226.198.0/23 16509 -13.226.200.0/21 16509 -13.226.208.0/22 16509 -13.226.212.0/24 16509 -13.226.214.0/23 16509 -13.226.216.0/21 16509 -13.226.224.0/22 16509 -13.226.228.0/24 16509 -13.226.230.0/23 16509 -13.226.232.0/21 16509 -13.226.240.0/20 16509 -13.227.0.0/22 16509 -13.227.5.0/24 16509 -13.227.6.0/23 16509 -13.227.8.0/21 16509 -13.227.16.0/22 16509 -13.227.21.0/24 16509 -13.227.22.0/23 16509 -13.227.24.0/21 16509 -13.227.32.0/24 16509 -13.227.34.0/23 16509 -13.227.36.0/22 16509 -13.227.40.0/21 16509 -13.227.48.0/22 16509 -13.227.53.0/24 16509 -13.227.54.0/23 16509 -13.227.56.0/21 16509 -13.227.64.0/22 16509 -13.227.69.0/24 16509 -13.227.70.0/23 16509 -13.227.72.0/21 16509 -13.227.80.0/22 16509 -13.227.85.0/24 16509 -13.227.86.0/23 16509 -13.227.88.0/21 16509 -13.227.96.0/22 16509 -13.227.101.0/24 16509 -13.227.102.0/23 16509 -13.227.104.0/21 16509 -13.227.112.0/22 16509 -13.227.117.0/24 16509 -13.227.118.0/23 16509 -13.227.120.0/21 16509 -13.227.128.0/22 16509 -13.227.133.0/24 16509 -13.227.134.0/23 16509 -13.227.136.0/21 16509 -13.227.144.0/22 16509 -13.227.149.0/24 16509 -13.227.150.0/23 16509 -13.227.152.0/21 16509 -13.227.160.0/22 16509 -13.227.165.0/24 16509 -13.227.166.0/23 16509 -13.227.168.0/21 16509 -13.227.176.0/22 16509 -13.227.181.0/24 16509 -13.227.182.0/23 16509 -13.227.184.0/21 16509 -13.227.192.0/22 16509 -13.227.198.0/23 16509 -13.227.200.0/21 16509 -13.227.208.0/22 16509 -13.227.212.0/24 16509 -13.227.214.0/23 16509 -13.227.216.0/21 16509 -13.227.224.0/22 16509 -13.227.228.0/24 16509 -13.227.230.0/23 16509 -13.227.232.0/21 16509 -13.227.240.0/22 16509 -13.227.244.0/24 16509 -13.227.246.0/23 16509 -13.227.248.0/21 16509 -13.228.0.0/14 16509 -13.232.0.0/13 16509 -13.244.0.0/15 16509 -13.248.0.0/19 16509 -13.248.32.0/20 16509 -13.248.48.0/21 16509 -13.248.60.0/22 16509 -13.248.96.0/21 16509 -13.248.104.0/22 16509 -13.248.108.0/23 16509 -13.248.111.0/24 16509 -13.248.112.0/23 16509 -13.248.115.0/24 16509 -13.248.116.0/22 16509 -13.248.120.0/23 16509 -13.248.122.0/24 16509 -13.248.124.0/24 16509 -13.248.128.0/18 16509 -13.248.192.0/19 16509 -13.248.224.0/20 16509 -13.248.240.0/21 16509 -13.248.248.0/22 16509 -13.248.252.0/23 16509 -13.249.2.0/23 16509 -13.249.4.0/22 16509 -13.249.8.0/21 16509 -13.249.16.0/24 16509 -13.249.18.0/23 16509 -13.249.20.0/22 16509 -13.249.24.0/21 16509 -13.249.32.0/20 16509 -13.249.48.0/24 16509 -13.249.50.0/23 16509 -13.249.52.0/22 16509 -13.249.56.0/21 16509 -13.249.64.0/24 16509 -13.249.66.0/23 16509 -13.249.68.0/22 16509 -13.249.72.0/21 16509 -13.249.80.0/24 16509 -13.249.82.0/23 16509 -13.249.84.0/22 16509 -13.249.88.0/21 16509 -13.249.96.0/24 16509 -13.249.98.0/23 16509 -13.249.100.0/22 16509 -13.249.104.0/21 16509 -13.249.112.0/24 16509 -13.249.114.0/23 16509 -13.249.116.0/22 16509 -13.249.120.0/21 16509 -13.249.128.0/24 16509 -13.249.130.0/23 16509 -13.249.132.0/22 16509 -13.249.136.0/21 16509 -13.249.144.0/24 16509 -13.249.146.0/23 16509 -13.249.148.0/22 16509 -13.249.152.0/21 16509 -13.249.160.0/24 16509 -13.249.162.0/23 16509 -13.249.164.0/22 16509 -13.249.168.0/21 16509 -13.249.176.0/24 16509 -13.249.178.0/23 16509 -13.249.180.0/22 16509 -13.249.184.0/21 16509 -13.249.192.0/24 16509 -13.249.194.0/23 16509 -13.249.196.0/22 16509 -13.249.200.0/21 16509 -13.249.208.0/24 16509 -13.249.210.0/23 16509 -13.249.212.0/22 16509 -13.249.216.0/21 16509 -13.249.224.0/24 16509 -13.249.226.0/23 16509 -13.249.228.0/22 16509 -13.249.232.0/21 16509 -13.249.240.0/24 16509 -13.249.242.0/23 16509 -13.249.244.0/22 16509 -13.249.248.0/21 16509 -13.250.0.0/15 16509 -14.0.8.0/22 55391 -14.0.16.0/20 24088 -14.0.41.0/24 54994 -14.0.43.0/24 54994 -14.0.44.0/24 54994 -14.0.46.0/23 54994 -14.0.55.0/24 36408 -14.0.59.0/24 54994 -14.0.61.0/24 36408 -14.0.64.0/19 38107 -14.0.96.0/20 38107 -14.0.112.0/22 38107 -14.0.116.0/23 38107 -14.0.118.0/24 38107 -14.0.128.0/17 38819 -14.1.4.0/22 55392 -14.1.8.0/21 10000 -14.1.16.0/22 55765 -14.1.20.0/22 46844 -14.1.28.0/22 63018 -14.1.32.0/19 45177 -14.1.64.0/20 18199 -14.1.80.0/21 18199 -14.1.88.0/23 18199 -14.1.90.0/24 18199 -14.1.92.0/23 18199 -14.1.96.0/23 55933 -14.1.98.0/24 55933 -14.1.99.0/24 134196 -14.1.104.0/22 9541 -14.1.112.0/22 134963 -14.1.116.0/22 134929 -14.1.120.0/24 134881 -14.1.124.0/22 133320 -14.1.128.0/17 45960 -14.2.0.0/17 7545 -14.2.128.0/18 4739 -14.2.192.0/20 7545 -14.2.208.0/20 4739 -14.2.224.0/19 4739 -14.3.0.0/16 4685 -14.4.0.0/14 17858 -14.8.0.0/14 2516 -14.12.0.0/15 2516 -14.14.0.0/18 131927 -14.14.64.0/19 131927 -14.14.96.0/20 23624 -14.14.128.0/20 131933 -14.14.144.0/21 131933 -14.14.160.0/19 131959 -14.14.192.0/18 131959 -14.15.0.0/19 131959 -14.16.0.0/16 4134 -14.17.0.0/18 4816 -14.17.64.0/19 134763 -14.17.96.0/20 134764 -14.17.112.0/23 134764 -14.17.114.0/23 58543 -14.17.116.0/22 58543 -14.17.120.0/21 58543 -14.17.128.0/17 4134 -14.18.0.0/19 4134 -14.18.32.0/19 58466 -14.18.64.0/18 58466 -14.18.128.0/21 4134 -14.18.136.0/22 4134 -14.18.140.0/22 58543 -14.18.144.0/20 4134 -14.18.160.0/19 4816 -14.18.192.0/20 58466 -14.18.208.0/20 58543 -14.18.224.0/21 58543 -14.18.232.0/23 4134 -14.18.234.0/23 58466 -14.18.236.0/22 58466 -14.18.240.0/22 58466 -14.18.244.0/22 4816 -14.18.248.0/21 58466 -14.19.0.0/16 4134 -14.20.0.0/15 4134 -14.22.0.0/21 58466 -14.22.8.0/22 58466 -14.22.12.0/22 134763 -14.22.16.0/22 134764 -14.22.20.0/22 4134 -14.22.24.0/22 58543 -14.22.28.0/23 58543 -14.22.30.0/24 4816 -14.22.31.0/24 58543 -14.22.32.0/24 58543 -14.22.33.0/24 58466 -14.22.34.0/23 58466 -14.22.36.0/22 4134 -14.22.40.0/21 4134 -14.22.48.0/20 4134 -14.22.64.0/18 4134 -14.22.128.0/17 4134 -14.23.0.0/16 4134 -14.24.0.0/14 4134 -14.28.0.0/16 4134 -14.29.0.0/19 4134 -14.29.32.0/19 134764 -14.29.64.0/21 4134 -14.29.72.0/24 58543 -14.29.73.0/24 4134 -14.29.74.0/23 4134 -14.29.76.0/22 4134 -14.29.80.0/20 58466 -14.29.96.0/19 58466 -14.29.128.0/17 4816 -14.30.0.0/15 4134 -14.32.0.0/15 4766 -14.34.0.0/21 4766 -14.34.8.0/21 9578 -14.34.16.0/20 4766 -14.34.32.0/19 4766 -14.34.64.0/18 4766 -14.34.128.0/20 4766 -14.34.144.0/21 4766 -14.34.152.0/22 4766 -14.34.156.0/24 38697 -14.34.157.0/24 4766 -14.34.158.0/23 4766 -14.34.160.0/19 4766 -14.34.192.0/18 4766 -14.35.0.0/19 4766 -14.35.32.0/20 4766 -14.35.48.0/22 38391 -14.35.52.0/23 38391 -14.35.54.0/23 4766 -14.35.56.0/21 4766 -14.35.64.0/20 38394 -14.35.80.0/23 38394 -14.35.82.0/23 38395 -14.35.84.0/22 38395 -14.35.88.0/23 38395 -14.35.90.0/23 38412 -14.35.92.0/22 38412 -14.35.96.0/22 38412 -14.35.100.0/24 38412 -14.35.101.0/24 4766 -14.35.102.0/23 4766 -14.35.104.0/22 4766 -14.35.108.0/24 4766 -14.35.109.0/24 38403 -14.35.110.0/23 38403 -14.35.112.0/22 38403 -14.35.116.0/24 38403 -14.35.117.0/24 38408 -14.35.118.0/23 38408 -14.35.120.0/22 38408 -14.35.124.0/24 38408 -14.35.125.0/24 38402 -14.35.126.0/23 38402 -14.35.128.0/21 38402 -14.35.136.0/22 38402 -14.35.140.0/24 38402 -14.35.141.0/24 38411 -14.35.142.0/23 38411 -14.35.144.0/21 38411 -14.35.152.0/21 38406 -14.35.160.0/23 38406 -14.35.162.0/24 38406 -14.35.163.0/24 38401 -14.35.164.0/22 38401 -14.35.168.0/23 38401 -14.35.170.0/24 38401 -14.35.171.0/24 38400 -14.35.172.0/22 38400 -14.35.176.0/22 38400 -14.35.180.0/23 38400 -14.35.182.0/23 4766 -14.35.184.0/22 4766 -14.35.188.0/23 4766 -14.35.190.0/24 38402 -14.35.191.0/24 4766 -14.35.192.0/21 46009 -14.35.200.0/21 4766 -14.35.208.0/20 4766 -14.35.224.0/19 4766 -14.36.0.0/19 4766 -14.36.32.0/24 9530 -14.36.33.0/24 4766 -14.36.34.0/23 4766 -14.36.36.0/22 4766 -14.36.40.0/21 4766 -14.36.48.0/20 4766 -14.36.64.0/18 4766 -14.36.128.0/18 4766 -14.36.192.0/20 4766 -14.36.208.0/23 23554 -14.36.210.0/24 23554 -14.36.211.0/24 9703 -14.36.212.0/24 18032 -14.36.213.0/24 4766 -14.36.214.0/23 4766 -14.36.216.0/21 4766 -14.36.224.0/19 4766 -14.37.0.0/16 4766 -14.38.0.0/18 4766 -14.38.64.0/19 4766 -14.38.96.0/21 4766 -14.38.104.0/24 38697 -14.38.105.0/24 4766 -14.38.106.0/23 4766 -14.38.108.0/22 4766 -14.38.112.0/20 4766 -14.38.128.0/17 4766 -14.39.0.0/17 4766 -14.39.128.0/18 4766 -14.39.192.0/20 4766 -14.39.208.0/22 4766 -14.39.212.0/24 4766 -14.39.213.0/24 55602 -14.39.214.0/24 4766 -14.39.215.0/24 38124 -14.39.216.0/21 4766 -14.39.224.0/19 4766 -14.40.0.0/16 4766 -14.41.0.0/23 4766 -14.41.2.0/24 55615 -14.41.3.0/24 4766 -14.41.4.0/22 4766 -14.41.8.0/21 4766 -14.41.16.0/20 4766 -14.41.32.0/20 4766 -14.41.48.0/22 4766 -14.41.52.0/23 4766 -14.41.54.0/24 4766 -14.41.55.0/24 55615 -14.41.56.0/23 4766 -14.41.58.0/24 55615 -14.41.59.0/24 4766 -14.41.60.0/24 55615 -14.41.61.0/24 4766 -14.41.62.0/23 4766 -14.41.64.0/18 4766 -14.41.128.0/17 4766 -14.42.0.0/18 4766 -14.42.64.0/20 4766 -14.42.80.0/22 4766 -14.42.84.0/23 4766 -14.42.86.0/24 10190 -14.42.87.0/24 4766 -14.42.88.0/21 4766 -14.42.96.0/19 4766 -14.42.128.0/17 4766 -14.43.0.0/16 4766 -14.44.0.0/18 4766 -14.44.64.0/19 4766 -14.44.96.0/20 4766 -14.44.112.0/20 9708 -14.44.128.0/17 4766 -14.45.0.0/16 4766 -14.46.0.0/16 4766 -14.47.0.0/18 4766 -14.47.64.0/19 4766 -14.47.96.0/20 4766 -14.47.112.0/22 4766 -14.47.116.0/23 4766 -14.47.118.0/24 4766 -14.47.119.0/24 9684 -14.47.120.0/24 9684 -14.47.121.0/24 4766 -14.47.122.0/23 4766 -14.47.124.0/22 4766 -14.47.128.0/23 4766 -14.47.130.0/24 38705 -14.47.131.0/24 4766 -14.47.132.0/22 4766 -14.47.136.0/21 4766 -14.47.144.0/20 4766 -14.47.160.0/19 4766 -14.47.192.0/18 4766 -14.48.0.0/16 4766 -14.49.0.0/21 4766 -14.49.8.0/22 4766 -14.49.12.0/24 4766 -14.49.13.0/24 46006 -14.49.14.0/24 46006 -14.49.15.0/24 4766 -14.49.16.0/23 4766 -14.49.18.0/24 4766 -14.49.19.0/24 4040 -14.49.20.0/23 4766 -14.49.22.0/24 4040 -14.49.23.0/24 4766 -14.49.24.0/21 4766 -14.49.32.0/19 4766 -14.49.64.0/18 4766 -14.49.128.0/18 4766 -14.49.192.0/23 38674 -14.49.194.0/24 38674 -14.49.195.0/24 4766 -14.49.196.0/22 4766 -14.49.200.0/21 4766 -14.49.208.0/20 4766 -14.49.224.0/21 17578 -14.49.232.0/22 17578 -14.49.236.0/22 4766 -14.49.240.0/20 4766 -14.50.0.0/17 4766 -14.50.128.0/19 4766 -14.50.160.0/20 4766 -14.50.176.0/20 10176 -14.50.192.0/20 10176 -14.50.208.0/20 4766 -14.50.224.0/20 4766 -14.50.240.0/21 4766 -14.50.248.0/21 10176 -14.51.0.0/16 4766 -14.52.0.0/20 4766 -14.52.16.0/21 4766 -14.52.24.0/22 4766 -14.52.28.0/23 4766 -14.52.30.0/24 4766 -14.52.31.0/24 45407 -14.52.32.0/21 4766 -14.52.40.0/22 4766 -14.52.44.0/23 4766 -14.52.46.0/24 4766 -14.52.47.0/24 9638 -14.52.48.0/20 4766 -14.52.64.0/18 4766 -14.52.128.0/21 4766 -14.52.136.0/24 9638 -14.52.137.0/24 4766 -14.52.138.0/23 4766 -14.52.140.0/22 4766 -14.52.144.0/20 4766 -14.52.160.0/19 4766 -14.52.192.0/24 9696 -14.52.193.0/24 4766 -14.52.194.0/23 4766 -14.52.196.0/22 4766 -14.52.200.0/22 4766 -14.52.204.0/23 4766 -14.52.206.0/24 4766 -14.52.207.0/24 9638 -14.52.208.0/20 4766 -14.52.224.0/19 4766 -14.53.0.0/19 4766 -14.53.32.0/20 4766 -14.53.48.0/21 4766 -14.53.56.0/23 4766 -14.53.58.0/24 38398 -14.53.59.0/24 4766 -14.53.60.0/24 38410 -14.53.61.0/24 38416 -14.53.62.0/23 38416 -14.53.64.0/20 4766 -14.53.80.0/21 4766 -14.53.88.0/23 4766 -14.53.90.0/24 38390 -14.53.91.0/24 38396 -14.53.92.0/22 38390 -14.53.96.0/21 38390 -14.53.104.0/23 38390 -14.53.106.0/23 38396 -14.53.108.0/22 38396 -14.53.112.0/22 38396 -14.53.116.0/23 38396 -14.53.118.0/23 4766 -14.53.120.0/21 38398 -14.53.128.0/20 4766 -14.53.144.0/21 38410 -14.53.152.0/22 38410 -14.53.156.0/22 4766 -14.53.160.0/23 38398 -14.53.162.0/23 4766 -14.53.164.0/22 4766 -14.53.168.0/21 38415 -14.53.176.0/23 38415 -14.53.178.0/23 38417 -14.53.180.0/22 4766 -14.53.184.0/21 4766 -14.53.192.0/18 4766 -14.54.0.0/15 4766 -14.56.0.0/17 4766 -14.56.128.0/20 4766 -14.56.144.0/21 4766 -14.56.152.0/23 4790 -14.56.154.0/23 4766 -14.56.156.0/22 4766 -14.56.160.0/19 4766 -14.56.192.0/18 4766 -14.57.0.0/17 4766 -14.57.128.0/20 4766 -14.57.144.0/22 4766 -14.57.148.0/23 4766 -14.57.150.0/24 4766 -14.57.151.0/24 9945 -14.57.152.0/21 4766 -14.57.160.0/19 4766 -14.57.192.0/18 4766 -14.58.0.0/15 4766 -14.60.0.0/15 4766 -14.62.0.0/16 4766 -14.63.0.0/20 4766 -14.63.16.0/22 4766 -14.63.20.0/24 4766 -14.63.21.0/24 3976 -14.63.22.0/23 4766 -14.63.24.0/21 4766 -14.63.32.0/19 4766 -14.63.64.0/18 4766 -14.63.128.0/17 4766 -14.64.0.0/11 4766 -14.96.64.0/18 134540 -14.96.240.0/21 55740 -14.98.0.0/17 45820 -14.98.128.0/18 45820 -14.98.192.0/19 45820 -14.98.224.0/20 45820 -14.98.240.0/21 45820 -14.98.248.0/22 45820 -14.98.252.0/23 45820 -14.98.254.0/24 45820 -14.99.0.0/19 45820 -14.99.32.0/20 45820 -14.99.48.0/24 45820 -14.99.52.0/22 45820 -14.99.56.0/21 45820 -14.99.64.0/19 45820 -14.100.0.0/16 45143 -14.101.0.0/16 2516 -14.102.0.0/20 18002 -14.102.16.0/24 18002 -14.102.17.0/24 133647 -14.102.18.0/23 133647 -14.102.20.0/23 133647 -14.102.23.0/24 18002 -14.102.24.0/21 18002 -14.102.32.0/23 18002 -14.102.35.0/24 18002 -14.102.36.0/22 18002 -14.102.40.0/22 18002 -14.102.44.0/23 18002 -14.102.46.0/23 133647 -14.102.48.0/24 18002 -14.102.49.0/24 133647 -14.102.50.0/24 18002 -14.102.51.0/24 133647 -14.102.52.0/22 18002 -14.102.56.0/24 18002 -14.102.58.0/24 133647 -14.102.59.0/24 18002 -14.102.60.0/24 18002 -14.102.61.0/24 133647 -14.102.62.0/23 18002 -14.102.64.0/23 18002 -14.102.67.0/24 18002 -14.102.68.0/22 18002 -14.102.72.0/21 18002 -14.102.80.0/23 18002 -14.102.83.0/24 18002 -14.102.84.0/23 18002 -14.102.87.0/24 18002 -14.102.88.0/23 18002 -14.102.91.0/24 18002 -14.102.92.0/23 18002 -14.102.94.0/24 133647 -14.102.95.0/24 18002 -14.102.96.0/22 18002 -14.102.100.0/23 18002 -14.102.102.0/24 133647 -14.102.103.0/24 18002 -14.102.104.0/21 18002 -14.102.112.0/22 18002 -14.102.116.0/23 18002 -14.102.118.0/24 5 -14.102.119.0/24 18002 -14.102.120.0/21 18002 -14.102.132.0/22 17534 -14.102.136.0/21 7600 -14.102.144.0/21 45352 -14.102.152.0/22 55653 -14.102.156.0/24 55786 -14.102.157.0/24 19893 -14.102.159.0/24 55786 -14.102.160.0/22 17625 -14.102.168.0/22 135025 -14.102.172.0/22 54578 -14.102.176.0/22 17676 -14.102.184.0/22 64033 -14.102.188.0/22 134316 -14.102.192.0/19 23637 -14.102.226.0/24 55782 -14.102.240.0/23 45816 -14.102.243.0/24 55480 -14.102.244.0/24 45816 -14.102.245.0/24 55480 -14.102.246.0/23 45816 -14.102.248.0/23 45816 -14.102.250.0/24 55480 -14.102.252.0/23 45816 -14.102.254.0/23 55480 -14.104.0.0/13 4134 -14.112.0.0/14 4134 -14.116.0.0/17 4134 -14.116.128.0/18 4816 -14.116.192.0/18 58466 -14.117.0.0/16 4134 -14.118.0.0/16 4134 -14.119.0.0/18 4134 -14.119.64.0/20 4134 -14.119.80.0/21 134764 -14.119.88.0/21 58543 -14.119.96.0/21 58543 -14.119.104.0/21 58466 -14.119.112.0/21 58466 -14.119.120.0/21 4134 -14.119.128.0/17 4134 -14.120.0.0/13 4134 -14.128.0.0/23 54994 -14.128.2.0/23 36408 -14.128.4.0/24 55759 -14.128.6.0/23 55759 -14.128.9.0/24 45413 -14.128.10.0/23 45413 -14.128.12.0/22 136246 -14.128.16.0/20 23637 -14.128.32.0/20 64050 -14.128.48.0/21 64050 -14.128.56.0/22 64050 -14.128.60.0/24 64050 -14.128.64.0/18 10013 -14.128.128.0/20 4766 -14.128.144.0/21 4766 -14.129.0.0/24 45996 -14.129.1.0/24 46003 -14.129.2.0/23 46003 -14.129.4.0/22 46003 -14.129.8.0/22 46003 -14.129.12.0/23 46003 -14.129.14.0/24 46003 -14.129.15.0/24 9286 -14.129.16.0/23 46003 -14.129.18.0/24 9286 -14.129.19.0/24 46003 -14.129.20.0/22 46003 -14.129.24.0/22 46003 -14.129.28.0/23 46003 -14.129.30.0/24 46003 -14.129.31.0/24 9286 -14.129.32.0/21 46003 -14.129.40.0/22 46003 -14.129.44.0/23 46003 -14.129.46.0/24 46003 -14.129.47.0/24 9286 -14.129.48.0/22 9286 -14.129.52.0/22 46003 -14.129.56.0/22 46003 -14.129.60.0/23 46003 -14.129.62.0/24 46003 -14.129.63.0/24 9286 -14.129.64.0/21 46003 -14.129.72.0/22 46003 -14.129.76.0/23 46003 -14.129.78.0/24 46003 -14.129.79.0/24 9286 -14.129.80.0/21 46003 -14.129.88.0/22 46003 -14.129.92.0/23 46003 -14.129.94.0/24 46003 -14.129.95.0/24 9286 -14.129.96.0/21 46003 -14.129.104.0/22 46003 -14.129.108.0/23 46003 -14.129.110.0/23 9286 -14.129.112.0/24 46003 -14.129.113.0/24 9286 -14.129.114.0/23 9286 -14.129.116.0/22 9286 -14.129.120.0/24 9286 -14.129.121.0/24 46003 -14.129.122.0/23 46003 -14.129.124.0/22 46003 -14.129.128.0/21 46003 -14.129.136.0/22 46003 -14.129.140.0/24 9286 -14.129.141.0/24 46003 -14.129.142.0/23 46003 -14.129.144.0/20 46003 -14.129.160.0/22 46003 -14.129.164.0/23 46003 -14.129.166.0/23 9286 -14.129.168.0/23 9286 -14.129.170.0/23 46003 -14.129.172.0/22 46003 -14.129.176.0/20 46003 -14.129.192.0/21 46003 -14.129.200.0/24 9286 -14.129.201.0/24 46003 -14.129.202.0/23 46003 -14.129.204.0/22 46003 -14.129.208.0/23 46003 -14.129.210.0/24 46003 -14.129.211.0/24 9286 -14.129.212.0/23 9286 -14.129.214.0/24 9286 -14.129.215.0/24 46003 -14.129.216.0/21 46003 -14.129.224.0/20 38676 -14.129.240.0/20 46003 -14.130.0.0/15 4808 -14.132.0.0/15 18126 -14.134.0.0/15 4134 -14.136.0.0/17 9269 -14.136.128.0/20 9269 -14.136.144.0/20 10103 -14.136.160.0/19 9269 -14.136.192.0/20 10103 -14.136.208.0/22 10103 -14.136.212.0/24 10103 -14.136.213.0/24 9269 -14.136.214.0/23 10103 -14.136.216.0/21 10103 -14.136.224.0/23 10103 -14.136.226.0/24 9269 -14.136.227.0/24 10103 -14.136.228.0/24 9269 -14.136.229.0/24 10103 -14.136.230.0/24 9269 -14.136.231.0/24 10103 -14.136.232.0/24 10103 -14.136.233.0/24 9269 -14.136.234.0/23 9269 -14.136.236.0/22 10103 -14.136.240.0/20 10103 -14.137.0.0/19 55850 -14.137.32.0/19 6453 -14.137.64.0/19 9443 -14.137.96.0/20 9482 -14.137.112.0/24 9482 -14.137.113.0/24 10113 -14.137.114.0/23 9482 -14.137.116.0/22 9482 -14.137.120.0/21 9482 -14.137.192.0/19 9443 -14.137.224.0/19 2554 -14.138.0.0/17 9943 -14.138.128.0/18 9943 -14.138.192.0/19 9943 -14.138.224.0/21 10036 -14.138.232.0/22 10036 -14.138.247.0/24 10036 -14.138.248.0/21 10036 -14.139.0.0/24 55824 -14.139.1.0/24 55847 -14.139.2.0/24 55847 -14.139.3.0/24 55824 -14.139.4.0/22 55824 -14.139.8.0/22 55824 -14.139.12.0/23 55824 -14.139.14.0/24 55824 -14.139.15.0/24 4758 -14.139.16.0/20 55824 -14.139.32.0/21 55824 -14.139.40.0/24 55847 -14.139.41.0/24 55824 -14.139.42.0/23 55824 -14.139.44.0/24 55824 -14.139.45.0/24 55847 -14.139.46.0/23 55847 -14.139.48.0/20 55824 -14.139.64.0/18 55824 -14.139.128.0/18 55824 -14.139.192.0/22 55824 -14.139.196.0/24 55847 -14.139.197.0/24 55824 -14.139.198.0/23 55824 -14.139.200.0/21 55824 -14.139.208.0/20 55824 -14.139.224.0/19 55824 -14.140.0.0/16 4755 -14.141.0.0/17 4755 -14.141.128.0/21 4755 -14.141.136.0/22 4755 -14.141.140.0/24 10199 -14.141.141.0/24 4755 -14.141.142.0/23 4755 -14.141.144.0/20 4755 -14.141.160.0/19 4755 -14.141.192.0/18 4755 -14.142.0.0/17 4755 -14.142.128.0/19 4755 -14.142.160.0/20 4755 -14.142.176.0/21 4755 -14.142.184.0/22 4755 -14.142.188.0/23 135197 -14.142.190.0/23 4755 -14.142.192.0/18 4755 -14.143.0.0/17 4755 -14.143.128.0/19 4755 -14.143.160.0/21 4755 -14.143.168.0/22 4755 -14.143.172.0/24 45335 -14.143.173.0/24 4755 -14.143.174.0/23 4755 -14.143.176.0/20 4755 -14.143.192.0/18 4755 -14.144.0.0/13 4134 -14.152.0.0/19 4134 -14.152.32.0/19 134764 -14.152.64.0/20 58466 -14.152.80.0/20 134763 -14.152.96.0/21 4134 -14.152.104.0/23 58543 -14.152.106.0/23 4816 -14.152.108.0/22 58543 -14.152.112.0/20 58543 -14.152.128.0/17 4134 -14.153.0.0/16 4134 -14.154.0.0/15 4134 -14.156.0.0/14 4134 -14.160.0.0/12 45899 -14.176.0.0/15 45899 -14.178.0.0/18 45899 -14.178.64.0/20 45899 -14.178.128.0/18 45899 -14.181.0.0/16 45899 -14.182.0.0/15 45899 -14.184.0.0/13 45899 -14.192.0.0/22 18229 -14.192.4.0/22 22769 -14.192.8.0/22 135026 -14.192.12.0/23 58766 -14.192.14.0/24 58766 -14.192.15.0/24 58725 -14.192.16.0/22 132717 -14.192.20.0/22 26658 -14.192.24.0/22 17665 -14.192.28.0/22 45916 -14.192.32.0/20 18126 -14.192.49.0/24 137443 -14.192.50.0/24 132839 -14.192.52.0/22 135772 -14.192.56.0/22 58511 -14.192.60.0/22 23724 -14.192.64.0/23 38182 -14.192.66.0/24 38182 -14.192.67.0/24 55720 -14.192.68.0/23 55720 -14.192.70.0/23 38182 -14.192.72.0/22 17828 -14.192.80.0/20 38676 -14.192.96.0/19 131934 -14.192.128.0/19 45814 -14.192.160.0/19 17732 -14.192.192.0/18 9534 -14.193.0.0/16 4721 -14.194.0.0/20 55441 -14.194.64.0/19 55441 -14.194.128.0/18 55441 -14.194.192.0/20 55441 -14.194.224.0/19 55441 -14.195.0.0/18 55441 -14.195.64.0/19 55441 -14.195.112.0/20 55441 -14.195.192.0/22 55441 -14.195.200.0/21 55441 -14.195.208.0/20 55441 -14.195.224.0/19 55441 -14.196.0.0/16 17964 -14.197.144.0/22 17964 -14.197.160.0/20 17964 -14.198.0.0/17 9269 -14.198.128.0/18 9269 -14.198.192.0/19 9269 -14.198.224.0/20 9269 -14.198.240.0/20 132252 -14.199.0.0/16 9269 -14.200.0.0/14 7545 -14.204.0.0/15 4837 -14.206.0.0/16 38701 -14.207.0.0/16 45758 -14.208.0.0/14 4134 -14.212.0.0/15 4134 -14.214.0.0/16 4134 -14.215.0.0/20 58543 -14.215.16.0/21 58543 -14.215.24.0/21 58466 -14.215.32.0/19 58466 -14.215.64.0/21 58543 -14.215.72.0/22 58543 -14.215.76.0/23 58543 -14.215.78.0/23 4134 -14.215.80.0/24 4134 -14.215.81.0/24 58543 -14.215.82.0/23 58543 -14.215.84.0/24 4134 -14.215.85.0/24 58543 -14.215.86.0/23 4134 -14.215.88.0/23 58543 -14.215.90.0/24 58543 -14.215.91.0/24 134764 -14.215.92.0/22 58543 -14.215.96.0/21 58543 -14.215.104.0/22 134764 -14.215.108.0/22 58543 -14.215.112.0/20 58543 -14.215.128.0/19 4816 -14.215.160.0/19 58466 -14.215.192.0/18 4134 -14.216.0.0/13 4134 -14.224.0.0/18 45899 -14.225.0.0/24 135905 -14.225.1.0/24 45899 -14.225.2.0/23 45899 -14.225.4.0/24 45899 -14.225.5.0/24 135905 -14.225.6.0/24 45899 -14.225.7.0/24 135905 -14.225.8.0/21 135905 -14.225.16.0/22 135905 -14.225.20.0/23 135905 -14.225.22.0/23 45899 -14.225.24.0/21 45899 -14.225.32.0/19 45899 -14.225.64.0/19 45899 -14.225.96.0/20 45899 -14.225.112.0/21 45899 -14.225.120.0/23 135905 -14.225.122.0/23 45899 -14.225.124.0/22 45899 -14.225.192.0/19 45899 -14.225.224.0/24 45899 -14.225.225.0/24 135905 -14.225.226.0/24 45899 -14.225.227.0/24 135905 -14.225.228.0/22 135905 -14.225.232.0/21 135905 -14.225.240.0/20 45899 -14.226.0.0/15 45899 -14.228.0.0/14 45899 -14.232.0.0/14 45899 -14.236.0.0/15 45899 -14.238.0.0/17 45899 -14.239.0.0/16 45899 -14.240.0.0/13 45899 -14.248.0.0/14 45899 -14.252.0.0/15 45899 -14.254.0.0/16 45899 -14.255.32.0/19 45899 -14.255.64.0/18 45899 -14.255.128.0/20 45899 -14.255.192.0/18 45899 -15.0.0.0/23 11680 -15.0.88.0/21 11680 -15.0.104.0/21 7018 -15.0.112.0/20 7018 -15.4.88.0/21 11680 -15.8.64.0/18 11680 -15.12.64.0/21 11680 -15.12.72.0/22 7018 -15.12.76.0/22 11680 -15.12.80.0/20 11680 -15.12.96.0/19 11680 -15.20.64.0/18 25888 -15.24.74.0/24 25888 -15.24.76.0/23 2686 -15.24.78.0/24 25888 -15.24.137.0/24 2686 -15.24.138.0/24 2686 -15.32.64.0/21 21326 -15.32.72.0/24 2687 -15.32.73.0/24 21326 -15.32.74.0/23 21326 -15.32.76.0/22 21326 -15.32.80.0/22 21326 -15.32.84.0/23 21326 -15.32.86.0/24 21326 -15.32.87.0/24 2687 -15.32.88.0/21 21326 -15.32.96.0/19 21326 -15.36.64.0/22 21326 -15.36.68.0/22 4809 -15.36.72.0/21 4809 -15.36.80.0/20 4809 -15.36.96.0/19 4809 -15.40.64.0/22 2687 -15.40.68.0/23 2687 -15.40.70.0/24 2687 -15.40.71.0/24 21326 -15.40.72.0/21 21326 -15.40.80.0/20 21326 -15.40.96.0/19 21326 -15.44.168.0/24 2687 -15.48.64.0/18 7430 -15.48.248.0/24 7430 -15.49.64.0/18 7430 -15.50.64.0/18 7430 -15.50.248.0/24 7430 -15.51.64.0/18 7430 -15.56.64.0/18 7430 -15.56.248.0/24 7430 -15.57.64.0/18 7430 -15.58.64.0/18 7430 -15.59.64.0/18 7430 -15.59.248.0/24 7430 -15.65.224.0/20 71 -15.65.240.0/20 11680 -15.72.0.0/17 54680 -15.72.128.0/17 71 -15.73.0.0/17 54680 -15.73.192.0/18 11680 -15.89.160.0/21 25888 -15.89.168.0/22 25888 -15.90.164.0/22 25888 -15.90.180.0/22 25888 -15.104.12.0/24 1931 -15.113.160.0/20 23005 -15.116.128.0/20 71 -15.116.144.0/23 71 -15.116.146.0/24 71 -15.116.147.0/24 13979 -15.116.148.0/22 71 -15.116.152.0/22 7430 -15.116.156.0/23 71 -15.116.158.0/24 71 -15.116.159.0/24 7430 -15.124.0.0/17 1874 -15.124.128.0/21 1874 -15.124.136.0/21 1931 -15.124.148.0/22 1931 -15.124.153.0/24 1874 -15.124.154.0/24 1874 -15.124.157.0/24 1931 -15.124.158.0/24 1931 -15.125.0.0/24 13979 -15.125.1.0/24 1874 -15.125.2.0/23 1874 -15.125.4.0/22 1874 -15.125.8.0/21 1874 -15.125.16.0/20 1874 -15.125.32.0/19 1874 -15.125.192.0/18 1931 -15.128.0.0/16 71 -15.129.0.0/17 71 -15.129.128.0/20 71 -15.129.144.0/22 71 -15.129.148.0/22 13979 -15.129.152.0/21 71 -15.129.160.0/19 71 -15.129.192.0/18 71 -15.130.0.0/16 71 -15.132.0.0/22 71 -15.132.4.0/24 71 -15.132.5.0/24 21302 -15.132.6.0/23 71 -15.132.8.0/22 71 -15.132.12.0/22 13979 -15.132.16.0/20 71 -15.132.32.0/19 71 -15.132.64.0/18 71 -15.132.128.0/17 71 -15.133.0.0/20 2129 -15.133.16.0/20 71 -15.133.32.0/19 71 -15.133.64.0/22 1889 -15.133.68.0/22 71 -15.133.72.0/21 71 -15.133.80.0/20 71 -15.133.96.0/19 71 -15.134.0.0/17 71 -15.135.0.0/17 71 -15.136.0.0/19 71 -15.136.32.0/21 71 -15.136.40.0/23 7430 -15.136.42.0/23 71 -15.136.44.0/22 71 -15.136.48.0/20 71 -15.136.64.0/18 71 -15.136.128.0/19 71 -15.136.160.0/20 13979 -15.136.176.0/24 21326 -15.136.177.0/24 71 -15.136.178.0/23 71 -15.136.180.0/22 71 -15.136.184.0/21 71 -15.136.192.0/18 71 -15.137.0.0/16 71 -15.138.0.0/16 71 -15.139.0.0/20 5073 -15.139.16.0/20 71 -15.139.32.0/19 71 -15.139.64.0/18 71 -15.139.128.0/18 71 -15.139.192.0/20 5073 -15.139.208.0/24 71 -15.139.209.0/24 17062 -15.139.210.0/23 71 -15.139.212.0/22 71 -15.139.216.0/21 71 -15.139.224.0/21 5073 -15.139.232.0/21 71 -15.139.240.0/21 71 -15.139.248.0/21 5073 -15.140.0.0/16 5073 -15.143.0.0/18 71 -15.143.64.0/19 71 -15.143.96.0/23 701 -15.143.98.0/23 71 -15.143.100.0/22 71 -15.143.104.0/21 71 -15.143.112.0/20 71 -15.144.0.0/15 71 -15.146.0.0/16 71 -15.148.0.0/16 71 -15.151.0.0/19 71 -15.151.32.0/22 71 -15.151.36.0/24 71 -15.151.37.0/24 17062 -15.151.38.0/23 71 -15.151.40.0/21 71 -15.151.48.0/20 71 -15.151.64.0/18 71 -15.152.0.0/16 71 -15.153.0.0/17 71 -15.153.128.0/19 71 -15.153.160.0/21 71 -15.153.168.0/22 71 -15.153.172.0/24 21326 -15.153.173.0/24 71 -15.153.174.0/23 71 -15.153.176.0/20 71 -15.153.192.0/18 71 -15.154.0.0/17 71 -15.154.128.0/18 71 -15.154.192.0/19 7430 -15.154.224.0/19 71 -15.161.0.0/16 16509 -15.162.0.0/16 71 -15.164.0.0/15 16509 -15.166.0.0/17 71 -15.170.0.0/16 71 -15.173.0.0/19 71 -15.173.32.0/19 25867 -15.173.64.0/18 71 -15.173.128.0/17 71 -15.175.0.0/17 71 -15.176.0.0/19 5073 -15.176.32.0/20 21877 -15.176.48.0/24 21877 -15.176.49.0/24 71 -15.176.50.0/23 71 -15.176.52.0/22 71 -15.176.56.0/21 71 -15.176.64.0/20 22562 -15.176.80.0/20 71 -15.176.96.0/20 25951 -15.176.112.0/20 25886 -15.176.128.0/20 2161 -15.176.144.0/20 71 -15.176.160.0/19 71 -15.176.192.0/18 71 -15.177.0.0/21 14618 -15.177.8.0/21 16509 -15.177.16.0/20 16509 -15.177.32.0/19 16509 -15.177.64.0/23 14618 -15.177.66.0/23 16509 -15.177.72.0/22 16509 -15.177.76.0/23 16509 -15.177.79.0/24 16509 -15.177.80.0/21 16509 -15.177.89.0/24 16509 -15.178.0.0/16 71 -15.179.128.0/17 71 -15.182.0.0/17 71 -15.183.0.0/17 71 -15.184.7.0/24 6301 -15.184.98.0/24 6301 -15.185.0.0/16 16509 -15.186.0.0/16 71 -15.188.0.0/16 16509 -15.189.0.0/20 71 -15.189.16.0/20 17062 -15.189.32.0/20 71 -15.189.48.0/20 25951 -15.189.64.0/21 71 -15.189.72.0/21 25951 -15.189.80.0/21 25951 -15.189.88.0/21 71 -15.189.96.0/20 71 -15.189.112.0/21 71 -15.189.120.0/21 25951 -15.189.128.0/17 71 -15.193.0.0/22 16509 -15.193.4.0/23 16509 -15.193.6.0/24 14618 -15.193.7.0/24 16509 -15.194.0.0/17 7430 -15.194.128.0/24 7430 -15.194.129.0/24 1931 -15.194.130.0/23 7430 -15.194.132.0/22 7430 -15.194.136.0/21 7430 -15.194.144.0/20 7430 -15.194.160.0/19 7430 -15.194.192.0/18 7430 -15.195.0.0/17 71 -15.195.128.0/19 71 -15.195.160.0/20 71 -15.195.176.0/20 7430 -15.195.192.0/23 10782 -15.195.194.0/23 7430 -15.195.196.0/22 7430 -15.195.200.0/21 7430 -15.195.208.0/23 10782 -15.195.210.0/23 7430 -15.195.212.0/22 7430 -15.195.216.0/21 7430 -15.195.224.0/19 71 -15.196.0.0/16 7430 -15.197.4.0/22 16509 -15.198.0.0/15 71 -15.200.0.0/16 8987 -15.201.0.0/16 10782 -15.202.0.0/16 7430 -15.203.0.0/17 71 -15.203.128.0/20 7430 -15.203.144.0/20 71 -15.203.160.0/19 7430 -15.203.192.0/18 71 -15.204.0.0/18 71 -15.204.64.0/19 71 -15.204.96.0/19 7430 -15.204.128.0/17 71 -15.206.0.0/15 16509 -15.208.0.0/17 71 -15.208.128.0/22 7430 -15.208.132.0/22 71 -15.208.136.0/21 71 -15.208.144.0/20 71 -15.208.160.0/19 71 -15.208.192.0/18 71 -15.209.0.0/18 71 -15.209.64.0/19 71 -15.209.96.0/19 7430 -15.209.128.0/17 71 -15.210.0.0/22 7430 -15.210.4.0/23 7430 -15.210.6.0/24 7430 -15.210.7.0/24 21326 -15.210.8.0/21 7430 -15.210.16.0/20 7430 -15.210.32.0/19 7430 -15.210.64.0/18 7430 -15.210.128.0/24 33383 -15.210.129.0/24 7430 -15.210.130.0/23 7430 -15.210.132.0/22 7430 -15.210.136.0/21 7430 -15.210.144.0/20 7430 -15.210.160.0/19 7430 -15.210.192.0/18 7430 -15.211.0.0/17 71 -15.211.128.0/19 7430 -15.211.160.0/20 71 -15.211.176.0/20 33383 -15.211.192.0/18 71 -15.212.0.0/17 71 -15.212.128.0/20 71 -15.212.144.0/21 71 -15.212.152.0/22 1931 -15.212.156.0/22 21326 -15.212.160.0/19 71 -15.212.192.0/18 71 -15.213.0.0/16 71 -15.214.0.0/16 71 -15.215.0.0/21 71 -15.215.8.0/23 13979 -15.215.10.0/23 71 -15.215.12.0/22 71 -15.215.16.0/21 71 -15.215.24.0/24 11680 -15.215.25.0/24 71 -15.215.26.0/23 71 -15.215.28.0/22 71 -15.215.32.0/19 71 -15.215.64.0/18 71 -15.215.128.0/18 10782 -15.215.192.0/18 1931 -15.216.0.0/21 10782 -15.216.8.0/24 151 -15.216.9.0/24 10782 -15.216.10.0/23 10782 -15.216.12.0/22 10782 -15.216.16.0/24 151 -15.216.17.0/24 10782 -15.216.18.0/23 10782 -15.216.20.0/22 10782 -15.216.24.0/21 10782 -15.216.32.0/19 10782 -15.216.64.0/18 10782 -15.216.128.0/17 10782 -15.217.0.0/16 10782 -15.218.0.0/17 7430 -15.218.128.0/17 33383 -15.219.0.0/17 71 -15.219.128.0/18 71 -15.219.192.0/23 7430 -15.219.194.0/24 7430 -15.219.195.0/24 25951 -15.219.196.0/22 7430 -15.219.200.0/21 7430 -15.219.208.0/20 71 -15.219.224.0/20 7430 -15.219.240.0/20 71 -15.221.8.0/21 16509 -15.222.0.0/15 16509 -15.224.0.0/16 71 -15.225.0.0/18 71 -15.226.0.0/16 71 -15.227.128.0/24 10782 -15.232.0.0/16 71 -15.233.0.0/17 71 -15.233.128.0/19 71 -15.233.160.0/23 10782 -15.233.162.0/23 71 -15.233.164.0/22 71 -15.233.168.0/21 71 -15.233.176.0/20 71 -15.233.192.0/18 71 -15.234.0.0/15 71 -15.236.0.0/15 16509 -15.240.0.0/16 10782 -15.241.0.0/16 71 -15.242.0.0/16 71 -15.243.0.0/17 71 -15.243.128.0/20 71 -15.243.144.0/20 7430 -15.243.160.0/24 10782 -15.243.161.0/24 71 -15.243.162.0/23 71 -15.243.164.0/22 71 -15.243.168.0/21 71 -15.243.176.0/20 71 -15.243.192.0/18 71 -15.244.0.0/17 71 -15.244.128.0/19 71 -15.244.160.0/20 71 -15.244.176.0/22 71 -15.244.180.0/24 11680 -15.244.181.0/24 71 -15.244.182.0/23 71 -15.244.184.0/21 71 -15.244.192.0/18 71 -15.245.0.0/16 71 -15.249.0.0/16 10782 -15.250.0.0/15 71 -15.252.0.0/16 71 -15.255.0.0/16 71 -16.0.32.0/24 13979 -16.1.33.0/24 33383 -16.41.112.0/23 11533 -16.41.252.0/24 203329 -16.105.108.0/22 13979 -16.105.112.0/23 21302 -16.134.0.0/17 33383 -16.139.64.0/24 151 -16.143.0.0/17 71 -16.239.200.0/21 71 -16.242.208.0/21 33383 -16.242.232.0/21 33383 -16.242.240.0/21 33383 -16.248.64.0/18 7430 -16.250.64.0/18 7430 -16.252.64.0/18 7430 -16.254.64.0/18 7430 -17.0.0.0/10 714 -17.64.0.0/11 714 -17.96.0.0/12 714 -17.112.0.0/14 714 -17.116.0.0/15 714 -17.118.0.0/16 714 -17.119.0.0/18 714 -17.119.64.0/20 714 -17.119.80.0/21 714 -17.119.88.0/22 714 -17.119.92.0/22 18703 -17.119.96.0/19 714 -17.119.128.0/17 714 -17.120.0.0/13 714 -17.128.0.0/10 714 -17.192.0.0/11 714 -17.224.0.0/12 714 -17.240.0.0/13 714 -17.248.0.0/14 714 -17.252.0.0/16 714 -17.253.0.0/21 6185 -17.253.8.0/23 6185 -17.253.10.0/23 714 -17.253.12.0/22 6185 -17.253.16.0/23 6185 -17.253.18.0/23 714 -17.253.20.0/22 6185 -17.253.24.0/22 6185 -17.253.28.0/23 714 -17.253.30.0/23 6185 -17.253.32.0/20 6185 -17.253.48.0/21 6185 -17.253.56.0/22 6185 -17.253.60.0/23 714 -17.253.62.0/23 6185 -17.253.64.0/21 6185 -17.253.72.0/23 6185 -17.253.74.0/24 714 -17.253.75.0/24 6185 -17.253.76.0/22 6185 -17.253.80.0/20 6185 -17.253.96.0/21 6185 -17.253.104.0/22 6185 -17.253.108.0/23 6185 -17.253.110.0/24 714 -17.253.111.0/24 6185 -17.253.112.0/21 6185 -17.253.120.0/22 6185 -17.253.124.0/23 6185 -17.253.126.0/23 714 -17.253.128.0/17 714 -17.254.0.0/15 714 -18.0.0.0/15 3 -18.2.0.0/19 10578 -18.2.128.0/19 10578 -18.2.192.0/19 10578 -18.3.0.0/16 3 -18.4.0.0/14 3 -18.8.0.0/13 3 -18.16.0.0/15 3 -18.18.0.0/16 3 -18.20.0.0/14 3 -18.24.0.0/13 3 -18.130.0.0/16 16509 -18.136.0.0/16 16509 -18.138.0.0/15 16509 -18.140.0.0/14 16509 -18.144.0.0/15 16509 -18.153.0.0/16 16509 -18.156.0.0/14 16509 -18.162.0.0/15 16509 -18.166.0.0/15 16509 -18.175.0.0/16 16509 -18.176.0.0/13 16509 -18.184.0.0/15 16509 -18.188.0.0/14 16509 -18.192.0.0/13 16509 -18.200.0.0/14 16509 -18.204.0.0/14 14618 -18.208.0.0/13 14618 -18.216.0.0/13 16509 -18.224.0.0/13 16509 -18.232.0.0/14 14618 -18.236.0.0/15 16509 -18.246.0.0/16 16509 -18.252.0.0/15 16509 -20.0.0.0/11 8075 -20.32.176.0/20 50207 -20.34.0.0/15 8070 -20.36.0.0/14 8075 -20.40.0.0/14 8075 -20.44.0.0/15 8075 -20.46.0.0/16 8075 -20.47.0.0/24 8069 -20.47.1.0/24 8075 -20.47.2.0/23 8075 -20.47.4.0/22 8075 -20.47.8.0/21 8075 -20.47.16.0/20 8075 -20.47.32.0/19 8075 -20.47.64.0/19 8075 -20.47.96.0/21 8075 -20.47.104.0/22 8069 -20.47.108.0/22 8075 -20.47.112.0/20 8075 -20.47.128.0/17 8075 -20.48.0.0/12 8075 -20.64.0.0/10 8075 -20.132.0.0/20 21877 -20.132.48.0/20 206 -20.132.64.0/20 206 -20.132.96.0/24 206 -20.132.160.0/19 206 -20.132.225.0/24 206 -20.132.228.0/23 206 -20.132.230.0/24 21877 -20.132.231.0/24 206 -20.132.243.0/24 206 -20.132.245.0/24 206 -20.132.246.0/24 206 -20.132.247.0/24 21877 -20.132.248.0/24 206 -20.133.0.0/20 22562 -20.133.16.0/20 5624 -20.133.40.0/21 17916 -20.133.64.0/20 50207 -20.133.232.0/24 5624 -20.133.234.0/24 22562 -20.133.241.0/24 5624 -20.133.244.0/24 22562 -20.134.0.0/18 17916 -20.134.64.0/19 17916 -20.134.144.0/20 17916 -20.134.176.0/24 17916 -20.134.192.0/21 17916 -20.134.208.0/22 17916 -20.134.212.0/23 17916 -20.134.224.0/20 17916 -20.134.240.0/21 17916 -20.134.248.0/23 17916 -20.134.250.0/24 17916 -20.137.0.0/21 4237 -20.137.8.0/22 206 -20.137.12.0/22 4237 -20.137.48.0/20 206 -20.137.64.0/20 206 -20.137.96.0/20 206 -20.137.160.0/20 4237 -20.137.176.0/20 21877 -20.137.216.0/24 4237 -20.137.240.0/20 4237 -20.138.0.0/22 4237 -20.138.16.0/20 5624 -20.138.48.0/20 4237 -20.138.224.0/19 22562 -20.139.0.0/22 17916 -20.139.4.0/23 17916 -20.139.6.0/24 4237 -20.139.7.0/24 17916 -20.139.8.0/22 4237 -20.139.12.0/22 17916 -20.139.16.0/20 17916 -20.139.32.0/19 17916 -20.139.64.0/20 4237 -20.139.80.0/21 4237 -20.139.88.0/21 17916 -20.139.96.0/20 17916 -20.139.121.0/24 4237 -20.139.144.0/21 4237 -20.139.152.0/21 17916 -20.139.192.0/20 17916 -20.139.208.0/21 17916 -20.139.216.0/24 17916 -20.139.217.0/24 4237 -20.139.218.0/23 17916 -20.139.220.0/22 17916 -20.139.224.0/19 17916 -20.140.0.0/15 8070 -20.142.32.0/23 17020 -20.142.120.0/22 17916 -20.148.0.0/20 206 -20.148.32.0/19 4237 -20.148.64.0/18 4237 -20.148.128.0/18 4237 -20.148.192.0/20 4237 -20.148.224.0/19 4237 -20.149.0.0/21 4237 -20.149.8.0/21 22562 -20.149.32.0/20 4237 -20.149.48.0/20 22562 -20.150.0.0/15 8075 -20.154.66.0/23 28857 -20.154.73.0/24 1764 -20.154.74.0/24 1764 -20.154.88.0/22 17916 -20.155.32.0/20 50207 -20.155.48.0/20 15917 -20.155.64.0/20 15917 -20.155.80.0/21 5624 -20.156.100.0/22 133486 -20.156.169.0/24 4237 -20.156.186.0/24 46116 -20.160.0.0/12 8075 -20.184.0.0/13 8075 -20.192.0.0/10 8075 -23.0.0.0/24 20940 -23.0.16.0/20 16625 -23.0.32.0/19 16625 -23.0.64.0/20 51375 -23.0.80.0/20 16625 -23.0.112.0/20 51375 -23.0.128.0/19 16625 -23.0.160.0/22 20940 -23.0.165.0/24 35994 -23.0.166.0/23 45727 -23.0.168.0/22 16625 -23.0.172.0/23 16625 -23.0.174.0/23 20940 -23.0.176.0/20 16625 -23.0.192.0/22 51375 -23.0.204.0/22 16625 -23.0.208.0/20 16625 -23.0.224.0/23 16625 -23.0.226.0/23 4750 -23.0.230.0/24 9498 -23.0.231.0/24 20940 -23.0.236.0/23 16625 -23.0.238.0/23 51375 -23.0.240.0/23 16625 -23.0.242.0/23 35994 -23.0.244.0/23 16625 -23.0.248.0/22 16625 -23.0.252.0/23 16625 -23.1.0.0/22 31377 -23.1.4.0/22 2860 -23.1.8.0/22 16625 -23.1.12.0/22 9498 -23.1.16.0/21 16625 -23.1.24.0/22 209 -23.1.28.0/22 16625 -23.1.32.0/23 16625 -23.1.34.0/24 2514 -23.1.35.0/24 33905 -23.1.36.0/22 9498 -23.1.44.0/22 16625 -23.1.48.0/20 16625 -23.1.64.0/19 16625 -23.1.96.0/24 20940 -23.1.98.0/24 20940 -23.1.99.0/24 33905 -23.1.100.0/22 16625 -23.1.106.0/24 33905 -23.1.107.0/24 20940 -23.1.108.0/22 16625 -23.1.112.0/20 16625 -23.1.128.0/20 209 -23.1.144.0/20 6762 -23.1.160.0/19 16625 -23.1.208.0/20 12956 -23.1.224.0/23 16625 -23.1.226.0/23 209 -23.1.228.0/23 20940 -23.1.230.0/23 16625 -23.1.232.0/24 35994 -23.1.234.0/23 20940 -23.1.236.0/23 20940 -23.1.238.0/24 55644 -23.1.239.0/24 9498 -23.1.240.0/22 20940 -23.1.244.0/22 16625 -23.1.248.0/22 16625 -23.1.254.0/23 20940 -23.2.0.0/24 24309 -23.2.1.0/24 23700 -23.2.2.0/23 16625 -23.2.4.0/22 16625 -23.2.8.0/22 16625 -23.2.12.0/24 35994 -23.2.13.0/24 20940 -23.2.14.0/24 20940 -23.2.15.0/24 7713 -23.2.16.0/24 20940 -23.2.18.0/23 20940 -23.2.20.0/23 2860 -23.2.22.0/23 16625 -23.2.24.0/23 20940 -23.2.28.0/23 16625 -23.2.32.0/24 34164 -23.2.33.0/24 9498 -23.2.34.0/23 20940 -23.2.36.0/22 16625 -23.2.40.0/21 16625 -23.2.48.0/20 16625 -23.2.64.0/21 20940 -23.2.76.0/22 16625 -23.2.80.0/21 16625 -23.2.96.0/20 16625 -23.2.112.0/20 20940 -23.2.128.0/18 16625 -23.2.208.0/20 16625 -23.2.224.0/19 16625 -23.3.0.0/23 17511 -23.3.2.0/24 35994 -23.3.3.0/24 34164 -23.3.4.0/23 20940 -23.3.6.0/23 16625 -23.3.8.0/24 20940 -23.3.9.0/24 18680 -23.3.10.0/23 20940 -23.3.12.0/23 20940 -23.3.15.0/24 20940 -23.3.32.0/20 17511 -23.3.48.0/20 16625 -23.3.64.0/22 16625 -23.3.68.0/24 20940 -23.3.70.0/24 9498 -23.3.71.0/24 20940 -23.3.72.0/24 27789 -23.3.73.0/24 20940 -23.3.74.0/23 20940 -23.3.76.0/22 45727 -23.3.80.0/21 16625 -23.3.88.0/22 20940 -23.3.92.0/22 16625 -23.3.96.0/22 20940 -23.3.100.0/23 16625 -23.3.102.0/23 20940 -23.3.104.0/23 20940 -23.3.106.0/24 4761 -23.3.107.0/24 20940 -23.3.108.0/22 16625 -23.3.112.0/20 16625 -23.3.128.0/21 16625 -23.3.136.0/24 209 -23.3.137.0/24 24319 -23.3.138.0/23 16625 -23.3.140.0/22 16625 -23.3.160.0/19 16625 -23.3.208.0/20 16625 -23.3.224.0/19 16625 -23.4.0.0/18 16625 -23.4.64.0/20 16625 -23.4.80.0/22 20940 -23.4.84.0/24 20940 -23.4.86.0/24 35994 -23.4.87.0/24 20940 -23.4.88.0/22 16625 -23.4.92.0/24 24319 -23.4.93.0/24 35994 -23.4.94.0/23 9605 -23.4.96.0/19 16625 -23.4.128.0/18 16625 -23.4.192.0/19 16625 -23.4.224.0/20 2914 -23.4.240.0/23 20940 -23.4.242.0/23 16625 -23.4.244.0/22 16625 -23.4.248.0/21 16625 -23.5.0.0/20 2914 -23.5.16.0/20 16625 -23.5.32.0/20 16625 -23.5.48.0/20 41164 -23.5.64.0/20 16625 -23.5.96.0/20 16625 -23.5.112.0/20 6762 -23.5.128.0/20 16625 -23.5.160.0/24 20940 -23.5.161.0/24 18101 -23.5.162.0/23 20940 -23.5.164.0/24 20940 -23.5.165.0/24 7473 -23.5.167.0/24 24319 -23.5.170.0/23 16625 -23.5.172.0/22 16625 -23.5.192.0/20 45727 -23.5.224.0/19 16625 -23.6.0.0/19 16625 -23.6.48.0/20 852 -23.6.64.0/19 16625 -23.6.96.0/20 16625 -23.6.112.0/21 20940 -23.6.120.0/24 4788 -23.6.121.0/24 20940 -23.6.122.0/23 16625 -23.6.124.0/22 16625 -23.6.160.0/19 16625 -23.6.192.0/22 20940 -23.6.196.0/23 20940 -23.6.198.0/24 24319 -23.6.199.0/24 33651 -23.6.200.0/22 33651 -23.6.208.0/20 9829 -23.6.224.0/20 16625 -23.6.240.0/20 6327 -23.7.0.0/20 20940 -23.7.16.0/20 4739 -23.7.32.0/19 16625 -23.7.64.0/20 14080 -23.7.80.0/20 16625 -23.7.128.0/20 16625 -23.7.144.0/20 20940 -23.7.160.0/20 20940 -23.7.176.0/20 16625 -23.7.192.0/20 16625 -23.7.208.0/20 20940 -23.7.224.0/20 16625 -23.7.240.0/22 9299 -23.7.244.0/24 33905 -23.7.246.0/23 9299 -23.7.248.0/23 34164 -23.7.250.0/24 18717 -23.7.251.0/24 20940 -23.8.0.0/20 20940 -23.8.16.0/20 3257 -23.8.32.0/20 8151 -23.8.48.0/20 4775 -23.8.80.0/20 16625 -23.8.96.0/20 16625 -23.8.128.0/19 9299 -23.8.160.0/20 3257 -23.8.176.0/20 16625 -23.8.192.0/20 4775 -23.8.208.0/20 9299 -23.8.224.0/20 16625 -23.8.240.0/20 20940 -23.9.0.0/19 16625 -23.9.32.0/20 3257 -23.9.48.0/20 18678 -23.9.64.0/19 16625 -23.9.96.0/20 16625 -23.9.112.0/20 20940 -23.9.144.0/20 16625 -23.9.160.0/19 16625 -23.9.192.0/19 16625 -23.9.224.0/20 4739 -23.9.240.0/20 16625 -23.10.0.0/20 20940 -23.10.16.0/20 16625 -23.10.32.0/19 16625 -23.10.64.0/18 16625 -23.10.128.0/20 16625 -23.10.144.0/20 3257 -23.10.160.0/20 4750 -23.10.192.0/20 16625 -23.10.208.0/20 812 -23.10.224.0/20 16625 -23.10.240.0/24 20940 -23.10.241.0/24 3257 -23.10.242.0/23 34164 -23.10.244.0/22 1267 -23.10.248.0/23 20940 -23.10.252.0/24 20940 -23.10.254.0/23 22773 -23.11.16.0/20 2914 -23.11.32.0/20 4750 -23.11.48.0/20 4761 -23.11.64.0/20 9924 -23.11.80.0/20 16625 -23.11.112.0/20 16625 -23.11.128.0/20 55818 -23.11.144.0/20 20940 -23.11.160.0/20 9924 -23.11.176.0/20 16625 -23.11.192.0/22 16625 -23.11.200.0/24 20940 -23.11.202.0/23 20940 -23.11.206.0/24 20940 -23.11.207.0/24 35994 -23.11.208.0/22 4739 -23.11.212.0/24 9534 -23.11.213.0/24 20940 -23.11.214.0/24 38266 -23.11.215.0/24 20940 -23.11.216.0/22 16625 -23.11.220.0/22 4750 -23.11.228.0/22 20940 -23.11.232.0/24 34164 -23.11.234.0/23 9498 -23.11.238.0/23 16625 -23.11.240.0/22 16625 -23.11.244.0/22 2914 -23.11.248.0/22 16625 -23.11.254.0/23 2914 -23.12.16.0/20 16625 -23.12.32.0/24 35994 -23.12.40.0/23 20940 -23.12.42.0/23 7843 -23.12.44.0/22 7843 -23.12.48.0/20 20940 -23.12.64.0/20 20940 -23.12.80.0/20 1267 -23.12.96.0/19 16625 -23.12.128.0/20 16625 -23.12.144.0/22 20940 -23.12.148.0/23 16625 -23.12.150.0/23 6762 -23.12.152.0/22 6762 -23.12.156.0/23 18101 -23.12.158.0/23 16625 -23.12.160.0/19 6762 -23.12.192.0/20 16625 -23.12.208.0/20 4651 -23.12.224.0/19 16625 -23.13.0.0/20 45727 -23.13.16.0/20 16625 -23.13.32.0/19 16625 -23.13.64.0/19 16625 -23.13.96.0/20 16625 -23.13.112.0/20 20940 -23.13.128.0/19 16625 -23.13.160.0/20 16625 -23.13.176.0/21 16625 -23.13.184.0/21 20940 -23.13.208.0/22 16625 -23.13.212.0/22 20940 -23.13.216.0/23 20940 -23.13.218.0/24 35994 -23.13.219.0/24 20940 -23.13.220.0/22 16625 -23.13.224.0/19 16625 -23.14.0.0/20 16625 -23.14.16.0/20 12956 -23.14.32.0/20 12956 -23.14.48.0/22 12956 -23.14.52.0/22 16625 -23.14.60.0/22 16625 -23.14.64.0/20 12956 -23.14.80.0/23 12956 -23.14.82.0/23 20940 -23.14.84.0/22 20940 -23.14.90.0/23 20940 -23.14.92.0/22 20940 -23.14.112.0/20 16625 -23.14.128.0/24 35994 -23.14.130.0/23 16625 -23.14.132.0/22 16625 -23.14.136.0/22 16625 -23.14.144.0/20 16625 -23.14.160.0/19 16625 -23.14.192.0/20 16625 -23.15.1.0/24 20940 -23.15.2.0/24 9498 -23.15.3.0/24 18717 -23.15.4.0/23 20940 -23.15.6.0/24 18101 -23.15.7.0/24 20940 -23.15.8.0/23 20940 -23.15.10.0/24 20940 -23.15.12.0/23 12222 -23.15.14.0/23 20940 -23.15.16.0/20 4788 -23.15.33.0/24 20940 -23.15.34.0/23 9498 -23.15.36.0/23 9498 -23.15.39.0/24 9498 -23.15.40.0/24 24319 -23.15.41.0/24 35994 -23.15.42.0/23 8781 -23.15.44.0/22 8781 -23.15.48.0/20 16625 -23.15.80.0/20 16625 -23.15.96.0/19 16625 -23.15.128.0/22 16625 -23.15.132.0/23 16625 -23.15.135.0/24 20940 -23.15.136.0/23 16625 -23.15.138.0/23 20940 -23.15.142.0/23 812 -23.15.144.0/20 16625 -23.15.160.0/20 16625 -23.15.177.0/24 20940 -23.15.178.0/23 20940 -23.15.180.0/22 17511 -23.15.184.0/22 16625 -23.15.188.0/23 4739 -23.15.190.0/23 16625 -23.15.192.0/22 16625 -23.15.196.0/23 20940 -23.15.204.0/22 812 -23.15.208.0/20 812 -23.15.240.0/23 20940 -23.15.242.0/23 16625 -23.15.244.0/24 20940 -23.15.246.0/24 20940 -23.15.248.0/21 16625 -23.16.0.0/15 852 -23.18.0.0/16 25877 -23.19.0.0/19 395954 -23.19.32.0/21 396190 -23.19.40.0/24 59253 -23.19.41.0/24 16265 -23.19.48.0/22 205184 -23.19.56.0/21 205544 -23.19.64.0/20 395954 -23.19.80.0/21 396190 -23.19.88.0/21 7203 -23.19.96.0/21 393886 -23.19.104.0/22 396190 -23.19.108.0/22 19148 -23.19.112.0/21 393886 -23.19.120.0/22 15003 -23.19.124.0/22 396190 -23.19.128.0/22 396190 -23.19.132.0/22 19148 -23.19.136.0/21 15003 -23.19.144.0/22 19148 -23.19.148.0/22 395954 -23.19.157.0/24 395954 -23.19.160.0/21 7203 -23.19.168.0/22 396190 -23.19.172.0/22 19148 -23.19.176.0/23 15003 -23.19.178.0/24 395954 -23.19.179.0/24 15003 -23.19.180.0/22 15003 -23.19.184.0/22 396190 -23.19.192.0/22 395954 -23.19.196.0/23 7203 -23.19.199.0/24 395954 -23.19.200.0/22 395954 -23.19.206.0/24 395954 -23.19.208.0/22 15003 -23.19.212.0/22 7203 -23.19.216.0/22 396190 -23.19.224.0/22 396362 -23.19.228.0/22 395954 -23.19.236.0/22 395954 -23.19.244.0/22 15003 -23.19.248.0/22 396190 -23.20.0.0/14 14618 -23.24.0.0/15 7922 -23.26.0.0/16 11798 -23.27.0.0/21 18779 -23.27.8.0/22 18779 -23.27.12.0/23 18779 -23.27.14.0/24 7203 -23.27.15.0/24 18779 -23.27.16.0/20 18779 -23.27.32.0/19 18779 -23.27.64.0/18 18779 -23.27.128.0/19 18779 -23.27.160.0/24 23338 -23.27.161.0/24 18779 -23.27.162.0/23 18779 -23.27.164.0/22 18779 -23.27.168.0/21 18779 -23.27.176.0/20 18779 -23.27.192.0/20 18779 -23.27.208.0/21 18779 -23.27.216.0/22 18779 -23.27.221.0/24 18779 -23.27.222.0/23 18779 -23.27.224.0/19 18779 -23.28.0.0/16 12083 -23.29.0.0/20 26421 -23.29.16.0/21 26265 -23.29.24.0/22 26265 -23.29.30.0/23 26265 -23.29.32.0/20 18712 -23.29.48.0/24 54098 -23.29.50.0/24 54098 -23.29.52.0/23 54098 -23.29.54.0/24 36685 -23.29.59.0/24 54098 -23.29.60.0/22 54098 -23.29.64.0/20 53850 -23.29.80.0/20 32768 -23.29.96.0/22 23148 -23.29.100.0/24 23148 -23.29.101.0/24 11303 -23.29.102.0/23 23148 -23.29.104.0/24 23148 -23.29.105.0/24 62795 -23.29.106.0/23 23148 -23.29.108.0/23 23148 -23.29.110.0/24 11303 -23.29.111.0/24 23148 -23.29.112.0/21 54540 -23.29.120.0/24 29802 -23.29.121.0/24 54540 -23.29.122.0/23 54540 -23.29.124.0/24 54540 -23.29.125.0/24 29802 -23.29.126.0/23 54540 -23.29.128.0/19 32748 -23.29.160.0/19 11979 -23.29.192.0/19 22995 -23.29.224.0/19 36315 -23.30.0.0/15 7922 -23.32.0.0/23 812 -23.32.2.0/24 35994 -23.32.3.0/24 20940 -23.32.4.0/24 35994 -23.32.5.0/24 20940 -23.32.6.0/23 16625 -23.32.8.0/22 16625 -23.32.12.0/23 16625 -23.32.14.0/24 35994 -23.32.15.0/24 20940 -23.32.16.0/23 20940 -23.32.18.0/23 35994 -23.32.20.0/23 20940 -23.32.22.0/23 16625 -23.32.24.0/22 16625 -23.32.28.0/23 20940 -23.32.32.0/22 16625 -23.32.36.0/23 35994 -23.32.38.0/23 16625 -23.32.40.0/22 20214 -23.32.44.0/23 20940 -23.32.46.0/24 33650 -23.32.47.0/24 18717 -23.32.48.0/22 9500 -23.32.52.0/22 16625 -23.32.56.0/22 16625 -23.32.60.0/24 20940 -23.32.61.0/24 35994 -23.32.62.0/23 20940 -23.32.64.0/19 16625 -23.32.96.0/20 16625 -23.32.112.0/20 20940 -23.32.128.0/20 16625 -23.32.144.0/21 16625 -23.32.152.0/24 20940 -23.32.155.0/24 35994 -23.32.156.0/22 16625 -23.32.160.0/20 16625 -23.32.176.0/22 9885 -23.32.180.0/24 32787 -23.32.181.0/24 35994 -23.32.182.0/23 20940 -23.32.184.0/21 16625 -23.32.192.0/20 20940 -23.32.208.0/22 20940 -23.32.212.0/22 16625 -23.32.216.0/21 16625 -23.32.224.0/20 2828 -23.32.240.0/22 20940 -23.32.244.0/22 6453 -23.32.248.0/23 20940 -23.32.250.0/23 16625 -23.32.252.0/22 16625 -23.33.0.0/20 16625 -23.33.16.0/20 13367 -23.33.32.0/22 2828 -23.33.36.0/22 16625 -23.33.40.0/21 20940 -23.33.48.0/20 16625 -23.33.64.0/20 16625 -23.33.80.0/23 16625 -23.33.82.0/23 35994 -23.33.84.0/22 20940 -23.33.88.0/24 35994 -23.33.90.0/23 35994 -23.33.92.0/24 35994 -23.33.94.0/23 20940 -23.33.96.0/20 16625 -23.33.112.0/21 16625 -23.33.120.0/22 16625 -23.33.124.0/22 35994 -23.33.128.0/19 16625 -23.33.160.0/20 16625 -23.33.176.0/23 55836 -23.33.178.0/23 20940 -23.33.180.0/22 6762 -23.33.184.0/24 35994 -23.33.185.0/24 20940 -23.33.187.0/24 20940 -23.33.188.0/22 16625 -23.33.192.0/20 45430 -23.33.208.0/22 16625 -23.33.212.0/23 35994 -23.33.214.0/24 20940 -23.33.216.0/22 16625 -23.33.224.0/22 6503 -23.33.228.0/22 16625 -23.33.232.0/22 18734 -23.33.236.0/23 55836 -23.33.238.0/23 20940 -23.33.240.0/22 16625 -23.33.248.0/21 16625 -23.34.0.0/22 33657 -23.34.4.0/22 16625 -23.34.8.0/21 16625 -23.34.16.0/20 26769 -23.34.32.0/20 16625 -23.34.48.0/21 16625 -23.34.56.0/23 20940 -23.34.58.0/23 209 -23.34.60.0/23 20940 -23.34.62.0/24 13367 -23.34.63.0/24 7725 -23.34.64.0/20 16625 -23.34.80.0/21 25019 -23.34.88.0/22 35994 -23.34.92.0/22 16625 -23.34.96.0/19 16625 -23.34.128.0/22 19037 -23.34.132.0/22 20940 -23.34.136.0/24 20940 -23.34.137.0/24 35994 -23.34.138.0/23 16625 -23.34.140.0/22 16625 -23.34.144.0/20 16625 -23.34.163.0/24 20940 -23.34.168.0/21 16625 -23.34.176.0/20 16625 -23.34.192.0/19 577 -23.34.224.0/20 8551 -23.34.240.0/22 20940 -23.34.244.0/23 20940 -23.35.0.0/20 9498 -23.35.18.0/23 31109 -23.35.29.0/24 31109 -23.35.30.0/23 31109 -23.35.32.0/20 9498 -23.35.48.0/20 16625 -23.35.68.0/22 20940 -23.35.72.0/21 16625 -23.35.80.0/20 20940 -23.35.96.0/23 16625 -23.35.98.0/23 20940 -23.35.100.0/22 16625 -23.35.104.0/22 16625 -23.35.108.0/23 16625 -23.35.110.0/23 20940 -23.35.112.0/20 16625 -23.35.128.0/20 16625 -23.35.144.0/23 20485 -23.35.146.0/23 16625 -23.35.149.0/24 20940 -23.35.150.0/24 20940 -23.35.151.0/24 24319 -23.35.152.0/21 16625 -23.35.160.0/20 20940 -23.35.176.0/20 16625 -23.35.192.0/20 16625 -23.35.208.0/22 33491 -23.35.212.0/22 16625 -23.35.216.0/24 20940 -23.35.217.0/24 35994 -23.35.218.0/24 20940 -23.35.219.0/24 24319 -23.35.220.0/22 16625 -23.35.224.0/20 6461 -23.35.240.0/20 4651 -23.36.0.0/24 35994 -23.36.1.0/24 20940 -23.36.2.0/23 20940 -23.36.4.0/22 9498 -23.36.8.0/22 20940 -23.36.12.0/23 35994 -23.36.14.0/24 35994 -23.36.15.0/24 20940 -23.36.16.0/20 8966 -23.36.32.0/22 16625 -23.36.36.0/23 16625 -23.36.38.0/23 20940 -23.36.40.0/22 20940 -23.36.44.0/23 20940 -23.36.52.0/22 16625 -23.36.56.0/22 16625 -23.36.60.0/23 16625 -23.36.64.0/23 55836 -23.36.66.0/23 20940 -23.36.68.0/22 16625 -23.36.72.0/22 16625 -23.36.76.0/22 12956 -23.36.80.0/20 16625 -23.36.96.0/20 16625 -23.36.128.0/20 4609 -23.36.148.0/22 1273 -23.36.152.0/21 1273 -23.36.164.0/22 1273 -23.36.168.0/21 1273 -23.36.176.0/22 16625 -23.36.180.0/24 20940 -23.36.181.0/24 6453 -23.36.182.0/24 35994 -23.36.183.0/24 20940 -23.36.184.0/22 16625 -23.36.188.0/22 20940 -23.36.192.0/22 6453 -23.36.196.0/22 16625 -23.36.200.0/23 35994 -23.36.202.0/24 35994 -23.36.204.0/22 35994 -23.36.208.0/20 16625 -23.36.224.0/22 16625 -23.36.228.0/23 9299 -23.36.230.0/23 1299 -23.36.232.0/21 16625 -23.36.240.0/24 31109 -23.36.241.0/24 20940 -23.36.252.0/22 16625 -23.37.0.0/19 9299 -23.37.32.0/19 16625 -23.37.64.0/19 16625 -23.37.96.0/20 719 -23.37.120.0/24 24319 -23.37.121.0/24 35994 -23.37.122.0/24 35994 -23.37.123.0/24 20940 -23.37.124.0/22 20940 -23.37.128.0/20 20940 -23.37.144.0/20 16625 -23.37.160.0/19 16625 -23.37.192.0/20 23700 -23.37.208.0/20 16625 -23.37.224.0/19 16625 -23.38.0.0/19 16625 -23.38.32.0/20 16625 -23.38.48.0/20 20940 -23.38.64.0/20 20940 -23.38.80.0/20 16625 -23.38.96.0/22 16625 -23.38.100.0/23 16625 -23.38.102.0/24 35994 -23.38.103.0/24 20940 -23.38.104.0/22 9299 -23.38.108.0/23 2828 -23.38.110.0/23 55818 -23.38.112.0/23 20940 -23.38.114.0/23 16625 -23.38.116.0/23 16625 -23.38.118.0/23 20940 -23.38.120.0/22 20940 -23.38.124.0/23 20940 -23.38.126.0/23 16625 -23.38.128.0/19 16625 -23.38.160.0/22 16625 -23.38.164.0/23 16625 -23.38.166.0/23 20940 -23.38.168.0/22 20940 -23.38.176.0/20 16625 -23.38.192.0/20 16625 -23.38.208.0/20 20940 -23.38.224.0/19 16625 -23.39.0.0/20 20940 -23.39.16.0/20 16625 -23.39.44.0/22 20940 -23.39.48.0/20 16625 -23.39.64.0/19 16625 -23.39.96.0/21 16625 -23.39.104.0/22 16625 -23.39.108.0/23 16625 -23.39.110.0/23 20940 -23.39.112.0/20 16625 -23.39.144.0/20 6461 -23.39.160.0/20 6762 -23.39.176.0/20 16625 -23.39.192.0/20 16625 -23.39.208.0/20 23700 -23.39.224.0/20 23700 -23.39.240.0/20 16625 -23.40.0.0/20 16625 -23.40.16.0/21 16625 -23.40.24.0/22 4230 -23.40.28.0/22 16625 -23.40.32.0/20 16625 -23.40.48.0/21 20940 -23.40.60.0/24 20940 -23.40.61.0/24 24319 -23.40.62.0/23 20940 -23.40.64.0/23 35994 -23.40.66.0/23 55836 -23.40.68.0/22 16625 -23.40.72.0/21 16625 -23.40.80.0/20 16625 -23.40.96.0/22 20940 -23.40.100.0/24 33905 -23.40.101.0/24 20940 -23.40.102.0/23 9500 -23.40.104.0/22 32787 -23.40.108.0/22 16625 -23.40.112.0/20 6762 -23.40.128.0/20 45629 -23.40.144.0/20 38040 -23.40.160.0/20 16625 -23.40.190.0/24 20940 -23.40.196.0/22 20940 -23.40.205.0/24 20940 -23.40.206.0/23 20940 -23.40.208.0/20 20940 -23.40.224.0/20 38040 -23.40.240.0/22 20940 -23.40.248.0/22 16625 -23.41.16.0/23 24319 -23.41.18.0/23 16625 -23.41.20.0/22 16625 -23.41.24.0/22 16625 -23.41.32.0/20 2914 -23.41.48.0/20 16625 -23.41.64.0/19 16625 -23.41.96.0/20 20940 -23.41.112.0/20 9605 -23.41.128.0/19 16625 -23.41.160.0/22 16625 -23.41.164.0/23 35994 -23.41.166.0/23 6461 -23.41.168.0/22 6461 -23.41.172.0/22 16625 -23.41.176.0/23 35994 -23.41.178.0/23 16625 -23.41.180.0/22 16625 -23.41.184.0/21 16625 -23.41.192.0/20 12956 -23.41.212.0/22 16625 -23.41.216.0/21 16625 -23.41.224.0/20 4775 -23.41.240.0/20 16625 -23.42.0.0/20 20940 -23.42.16.0/20 16625 -23.42.32.0/20 16625 -23.42.48.0/20 20940 -23.42.64.0/18 16625 -23.42.128.0/20 16625 -23.42.144.0/22 45629 -23.42.152.0/22 16625 -23.42.156.0/22 20940 -23.42.160.0/20 16625 -23.42.176.0/20 20940 -23.42.192.0/19 16625 -23.42.224.0/20 16625 -23.42.240.0/20 12956 -23.43.0.0/19 16625 -23.43.32.0/22 16625 -23.43.36.0/22 3257 -23.43.40.0/22 32098 -23.43.44.0/22 18734 -23.43.48.0/23 20940 -23.43.50.0/23 35994 -23.43.52.0/22 16625 -23.43.56.0/21 20940 -23.43.64.0/20 16625 -23.43.80.0/20 3257 -23.43.96.0/20 3257 -23.43.112.0/20 20940 -23.43.128.0/19 16625 -23.43.160.0/22 7725 -23.43.164.0/24 20940 -23.43.165.0/24 7016 -23.43.166.0/23 16625 -23.43.168.0/23 16625 -23.43.171.0/24 20940 -23.43.172.0/23 16625 -23.43.174.0/23 12956 -23.43.176.0/20 16625 -23.43.192.0/19 16625 -23.43.224.0/20 16625 -23.43.240.0/22 16625 -23.43.244.0/22 3257 -23.43.248.0/24 23693 -23.43.249.0/24 20940 -23.43.250.0/23 20940 -23.43.252.0/22 16625 -23.44.0.0/22 16625 -23.44.4.0/22 20940 -23.44.16.0/20 3257 -23.44.32.0/20 4739 -23.44.48.0/24 24319 -23.44.49.0/24 20940 -23.44.50.0/23 20940 -23.44.60.0/22 16625 -23.44.64.0/19 16625 -23.44.96.0/22 20940 -23.44.100.0/22 16625 -23.44.112.0/20 16625 -23.44.128.0/20 20940 -23.44.144.0/20 16625 -23.44.160.0/22 20940 -23.44.164.0/22 16625 -23.44.168.0/22 16625 -23.44.172.0/23 20940 -23.44.174.0/24 20940 -23.44.175.0/24 2914 -23.44.176.0/20 16625 -23.44.212.0/22 9605 -23.44.216.0/21 16625 -23.44.224.0/20 2514 -23.44.240.0/20 1680 -23.45.0.0/22 16625 -23.45.4.0/22 20940 -23.45.8.0/23 16625 -23.45.12.0/23 20940 -23.45.14.0/23 16625 -23.45.16.0/20 16625 -23.45.48.0/24 24319 -23.45.50.0/23 20940 -23.45.64.0/24 24319 -23.45.65.0/24 20940 -23.45.67.0/24 20940 -23.45.68.0/22 16625 -23.45.72.0/22 16625 -23.45.76.0/24 24319 -23.45.78.0/23 20940 -23.45.80.0/22 9500 -23.45.84.0/22 16625 -23.45.88.0/23 32787 -23.45.90.0/24 32787 -23.45.91.0/24 20940 -23.45.92.0/22 812 -23.45.96.0/20 20940 -23.45.112.0/22 16625 -23.45.116.0/22 6453 -23.45.120.0/24 12400 -23.45.121.0/24 8551 -23.45.122.0/23 6762 -23.45.124.0/23 20940 -23.45.126.0/24 8966 -23.45.127.0/24 1299 -23.45.128.0/23 20940 -23.45.130.0/23 35994 -23.45.132.0/22 16625 -23.45.136.0/22 14259 -23.45.140.0/22 17511 -23.45.144.0/22 16625 -23.45.148.0/22 9498 -23.45.152.0/23 20940 -23.45.155.0/24 24319 -23.45.172.0/24 20940 -23.45.176.0/24 31109 -23.45.177.0/24 24319 -23.45.178.0/24 24319 -23.45.179.0/24 20940 -23.45.180.0/22 20940 -23.45.188.0/22 16625 -23.45.196.0/22 16625 -23.45.200.0/22 18734 -23.45.204.0/22 6453 -23.45.208.0/20 16625 -23.45.224.0/22 16625 -23.45.228.0/22 33650 -23.45.232.0/23 20940 -23.45.234.0/24 7725 -23.45.235.0/24 20940 -23.45.236.0/22 20940 -23.45.240.0/20 16625 -23.46.0.0/23 16625 -23.46.2.0/23 20940 -23.46.4.0/22 16625 -23.46.9.0/24 9498 -23.46.10.0/23 16625 -23.46.12.0/23 16625 -23.46.14.0/23 6762 -23.46.16.0/24 20940 -23.46.17.0/24 35994 -23.46.18.0/23 16625 -23.46.20.0/23 20940 -23.46.22.0/23 16625 -23.46.24.0/23 20940 -23.46.26.0/23 16625 -23.46.28.0/23 20940 -23.46.30.0/24 20940 -23.46.31.0/24 35994 -23.46.32.0/20 16625 -23.46.48.0/23 20940 -23.46.50.0/24 24319 -23.46.52.0/22 20940 -23.46.56.0/21 16625 -23.46.64.0/20 812 -23.46.80.0/20 8529 -23.46.96.0/20 9299 -23.46.112.0/20 20940 -23.46.128.0/20 16625 -23.46.164.0/22 16625 -23.46.168.0/22 16625 -23.46.174.0/24 35994 -23.46.192.0/22 19429 -23.46.196.0/22 16625 -23.46.200.0/22 16625 -23.46.204.0/23 9605 -23.46.206.0/24 9605 -23.46.207.0/24 9498 -23.46.208.0/24 34164 -23.46.209.0/24 9500 -23.46.210.0/23 20940 -23.46.212.0/22 16625 -23.46.220.0/22 20940 -23.46.224.0/22 16625 -23.46.228.0/24 35994 -23.46.229.0/24 20940 -23.46.230.0/24 35994 -23.46.231.0/24 32787 -23.46.232.0/22 16625 -23.46.236.0/23 16625 -23.46.238.0/23 20940 -23.47.0.0/19 16625 -23.47.32.0/20 16625 -23.47.48.0/20 1299 -23.47.64.0/22 1299 -23.47.68.0/22 28006 -23.47.72.0/24 3257 -23.47.73.0/24 20940 -23.47.74.0/23 20940 -23.47.76.0/23 20940 -23.47.78.0/24 20940 -23.47.79.0/24 33668 -23.47.80.0/20 16625 -23.47.96.0/20 16625 -23.47.112.0/22 20940 -23.47.116.0/22 9605 -23.47.120.0/22 20940 -23.47.124.0/24 9605 -23.47.125.0/24 2828 -23.47.126.0/24 9829 -23.47.127.0/24 24319 -23.47.128.0/20 16625 -23.47.144.0/24 33490 -23.47.145.0/24 20940 -23.47.146.0/23 16625 -23.47.149.0/24 20940 -23.47.150.0/23 16625 -23.47.152.0/22 20940 -23.47.156.0/22 16625 -23.47.166.0/23 16625 -23.47.172.0/22 16625 -23.47.176.0/20 16625 -23.47.192.0/22 20940 -23.47.205.0/24 20940 -23.47.208.0/20 16625 -23.47.224.0/19 18101 -23.48.4.0/23 20940 -23.48.16.0/22 262197 -23.48.20.0/22 16625 -23.48.24.0/22 16625 -23.48.28.0/22 20940 -23.48.32.0/23 20940 -23.48.34.0/23 35994 -23.48.36.0/22 20940 -23.48.40.0/21 16625 -23.48.48.0/20 16625 -23.48.64.0/20 38040 -23.48.80.0/22 38040 -23.48.84.0/23 38040 -23.48.86.0/23 9605 -23.48.88.0/21 20940 -23.48.98.0/23 20940 -23.48.112.0/20 16625 -23.48.128.0/20 3462 -23.48.144.0/22 20940 -23.48.148.0/23 3462 -23.48.150.0/23 20940 -23.48.152.0/21 16625 -23.48.160.0/23 20940 -23.48.162.0/23 33668 -23.48.164.0/22 33668 -23.48.168.0/23 20940 -23.48.172.0/22 16625 -23.48.176.0/20 7843 -23.48.192.0/21 4739 -23.48.201.0/24 20940 -23.48.202.0/24 20940 -23.48.203.0/24 24319 -23.48.208.0/22 20940 -23.48.212.0/24 20940 -23.48.213.0/24 17511 -23.48.214.0/23 20940 -23.48.216.0/21 16625 -23.48.224.0/24 20940 -23.48.226.0/24 9498 -23.49.6.0/23 16625 -23.49.8.0/22 16625 -23.49.12.0/23 35994 -23.49.14.0/23 20940 -23.49.16.0/20 16625 -23.49.32.0/20 16625 -23.49.48.0/23 3786 -23.49.50.0/23 18101 -23.49.52.0/22 18101 -23.49.57.0/24 20940 -23.49.58.0/23 16625 -23.49.60.0/23 20940 -23.49.62.0/24 20940 -23.49.63.0/24 55836 -23.49.64.0/20 18101 -23.49.80.0/20 812 -23.49.96.0/20 812 -23.49.112.0/20 16625 -23.49.128.0/20 6327 -23.49.144.0/20 16625 -23.49.160.0/20 9329 -23.49.176.0/20 16625 -23.49.192.0/20 1273 -23.49.208.0/20 7545 -23.49.240.0/20 16625 -23.50.0.0/22 16625 -23.50.4.0/22 2119 -23.50.8.0/23 16625 -23.50.10.0/23 35994 -23.50.12.0/22 45899 -23.50.16.0/20 16625 -23.50.32.0/20 16625 -23.50.48.0/20 20940 -23.50.64.0/20 3257 -23.50.80.0/20 4657 -23.50.96.0/19 16625 -23.50.128.0/21 16625 -23.50.136.0/23 16625 -23.50.138.0/23 32787 -23.50.140.0/22 16625 -23.50.144.0/20 6762 -23.50.160.0/20 16625 -23.50.176.0/21 16625 -23.50.184.0/22 16625 -23.50.188.0/23 16625 -23.50.192.0/20 8452 -23.50.208.0/20 16625 -23.50.224.0/23 20940 -23.50.227.0/24 35994 -23.50.228.0/22 16625 -23.50.232.0/23 20940 -23.50.234.0/23 35994 -23.50.236.0/22 20940 -23.51.0.0/21 16625 -23.51.8.0/22 16625 -23.51.12.0/22 20940 -23.51.32.0/20 4788 -23.51.64.0/20 5511 -23.51.80.0/20 133612 -23.51.96.0/19 16625 -23.51.128.0/20 16625 -23.51.144.0/20 12956 -23.51.160.0/19 16625 -23.51.192.0/20 16625 -23.51.208.0/21 16625 -23.51.216.0/21 20940 -23.51.224.0/19 16625 -23.52.0.0/23 20940 -23.52.2.0/23 16625 -23.52.4.0/22 16625 -23.52.8.0/22 16625 -23.52.14.0/23 20940 -23.52.16.0/20 16625 -23.52.32.0/22 2119 -23.52.36.0/22 12956 -23.52.40.0/21 3257 -23.52.48.0/20 20940 -23.52.64.0/22 20940 -23.52.68.0/24 24319 -23.52.69.0/24 20940 -23.52.70.0/24 20940 -23.52.71.0/24 24319 -23.52.72.0/24 35994 -23.52.73.0/24 20940 -23.52.74.0/23 2914 -23.52.76.0/22 2914 -23.52.96.0/21 20940 -23.52.104.0/23 20940 -23.52.106.0/24 20940 -23.52.107.0/24 34164 -23.52.108.0/22 35994 -23.52.112.0/22 14080 -23.52.116.0/22 16625 -23.52.120.0/22 12956 -23.52.124.0/22 16625 -23.52.128.0/22 20940 -23.52.132.0/23 55644 -23.52.134.0/23 9498 -23.52.136.0/23 9498 -23.52.138.0/23 20485 -23.52.140.0/23 33651 -23.52.142.0/24 20940 -23.52.144.0/20 1299 -23.52.160.0/21 16625 -23.52.168.0/23 16625 -23.52.171.0/24 20940 -23.52.172.0/22 20940 -23.52.176.0/22 16625 -23.52.180.0/22 20940 -23.52.184.0/21 16625 -23.52.192.0/19 27747 -23.52.224.0/19 22773 -23.53.0.0/24 20940 -23.53.1.0/24 24319 -23.53.3.0/24 20940 -23.53.5.0/24 20940 -23.53.6.0/23 20940 -23.53.8.0/24 20940 -23.53.9.0/24 24319 -23.53.10.0/23 20940 -23.53.12.0/22 20940 -23.53.16.0/20 20940 -23.53.44.0/23 35994 -23.53.46.0/24 35994 -23.53.48.0/20 1299 -23.53.64.0/20 3462 -23.53.80.0/20 45629 -23.53.96.0/20 7470 -23.53.112.0/22 16625 -23.53.118.0/23 20940 -23.53.120.0/22 20940 -23.53.124.0/23 35994 -23.53.126.0/23 20940 -23.53.128.0/19 16625 -23.53.160.0/22 16625 -23.53.164.0/22 20940 -23.53.168.0/21 16625 -23.53.176.0/20 16625 -23.53.192.0/20 16625 -23.53.208.0/21 45899 -23.53.216.0/22 35994 -23.53.220.0/24 35994 -23.53.221.0/24 20940 -23.53.222.0/24 35994 -23.53.223.0/24 20940 -23.53.224.0/22 3786 -23.53.228.0/24 20940 -23.53.229.0/24 35994 -23.53.230.0/24 35994 -23.53.231.0/24 20940 -23.53.232.0/22 33491 -23.53.236.0/22 4739 -23.53.240.0/24 9498 -23.53.241.0/24 20940 -23.53.242.0/23 20940 -23.53.244.0/22 20940 -23.53.248.0/24 20940 -23.53.249.0/24 24319 -23.53.250.0/23 20940 -23.53.252.0/22 16625 -23.54.0.0/20 16625 -23.54.16.0/23 4739 -23.54.18.0/23 20940 -23.54.20.0/22 16625 -23.54.24.0/22 55836 -23.54.28.0/23 55836 -23.54.30.0/24 20940 -23.54.31.0/24 35994 -23.54.32.0/20 16625 -23.54.64.0/20 22773 -23.54.96.0/20 16625 -23.54.112.0/22 16625 -23.54.116.0/23 20940 -23.54.118.0/24 6799 -23.54.119.0/24 6762 -23.54.120.0/22 16625 -23.54.124.0/24 20940 -23.54.125.0/24 35994 -23.54.126.0/24 12956 -23.54.127.0/24 20940 -23.54.128.0/20 20940 -23.54.144.0/23 35994 -23.54.146.0/24 24319 -23.54.147.0/24 20940 -23.54.148.0/22 16625 -23.54.154.0/24 20940 -23.54.158.0/23 20940 -23.54.160.0/22 20940 -23.54.164.0/23 20940 -23.54.166.0/23 16625 -23.54.168.0/22 20940 -23.54.172.0/22 38266 -23.54.176.0/20 16625 -23.54.208.0/20 16625 -23.54.224.0/19 16625 -23.55.0.0/19 16625 -23.55.32.0/22 16625 -23.55.36.0/22 20940 -23.55.40.0/21 20940 -23.55.48.0/21 5511 -23.55.56.0/21 20940 -23.55.64.0/19 16625 -23.55.104.0/24 20940 -23.55.112.0/23 20940 -23.55.114.0/23 16625 -23.55.116.0/22 16625 -23.55.120.0/22 20940 -23.55.124.0/22 16625 -23.55.128.0/22 16625 -23.55.132.0/22 35994 -23.55.142.0/23 35994 -23.55.144.0/20 20940 -23.55.176.0/20 2914 -23.55.192.0/20 16625 -23.55.208.0/21 16625 -23.55.216.0/22 16625 -23.55.220.0/23 20940 -23.55.222.0/24 20940 -23.55.223.0/24 35994 -23.55.224.0/22 16625 -23.55.228.0/22 7725 -23.55.232.0/24 24319 -23.55.233.0/24 20940 -23.55.234.0/24 35994 -23.55.235.0/24 20940 -23.55.236.0/22 35994 -23.56.16.0/20 16625 -23.56.32.0/19 16625 -23.56.64.0/19 19429 -23.56.96.0/24 20940 -23.56.98.0/24 9002 -23.56.99.0/24 1273 -23.56.100.0/24 20940 -23.56.101.0/24 9498 -23.56.102.0/23 20940 -23.56.104.0/22 20940 -23.56.108.0/23 20940 -23.56.110.0/24 20940 -23.56.112.0/20 16625 -23.56.128.0/20 20940 -23.56.144.0/20 38040 -23.56.160.0/23 21342 -23.56.162.0/23 16625 -23.56.164.0/22 16625 -23.56.168.0/22 20940 -23.56.172.0/23 20940 -23.56.174.0/24 35994 -23.56.175.0/24 20940 -23.56.176.0/22 16625 -23.56.180.0/22 9269 -23.56.184.0/22 20940 -23.56.188.0/22 32098 -23.56.192.0/20 16625 -23.56.208.0/23 16625 -23.56.210.0/23 3257 -23.56.212.0/23 6453 -23.56.214.0/23 12956 -23.56.216.0/22 12956 -23.56.220.0/22 16625 -23.56.224.0/20 16625 -23.56.240.0/20 42961 -23.57.0.0/21 16625 -23.57.8.0/22 12956 -23.57.12.0/22 9498 -23.57.16.0/20 16625 -23.57.32.0/19 16625 -23.57.64.0/23 16625 -23.57.66.0/23 20940 -23.57.68.0/24 35994 -23.57.69.0/24 20940 -23.57.70.0/23 16625 -23.57.72.0/23 27814 -23.57.74.0/23 20940 -23.57.76.0/23 20940 -23.57.78.0/23 16625 -23.57.80.0/20 16625 -23.57.96.0/21 32787 -23.57.104.0/22 32787 -23.57.108.0/24 32787 -23.57.112.0/21 16625 -23.57.120.0/22 27814 -23.57.124.0/22 16625 -23.57.128.0/19 16625 -23.57.160.0/19 27814 -23.57.192.0/18 16625 -23.58.0.0/21 16625 -23.58.8.0/22 16625 -23.58.12.0/22 20940 -23.58.16.0/20 16625 -23.58.32.0/20 16625 -23.58.48.0/20 20940 -23.58.64.0/20 20940 -23.58.80.0/23 20940 -23.58.82.0/23 24319 -23.58.84.0/22 577 -23.58.88.0/24 3786 -23.58.89.0/24 35994 -23.58.90.0/23 16625 -23.58.92.0/24 7922 -23.58.93.0/24 9498 -23.58.94.0/24 61580 -23.58.95.0/24 9498 -23.58.96.0/20 18101 -23.58.112.0/20 577 -23.58.128.0/20 577 -23.58.144.0/21 577 -23.58.152.0/22 16625 -23.58.156.0/22 22773 -23.58.160.0/19 577 -23.58.192.0/20 17511 -23.58.208.0/24 35994 -23.58.209.0/24 20940 -23.58.210.0/23 35994 -23.58.212.0/22 35994 -23.58.216.0/22 16625 -23.58.220.0/24 35994 -23.58.221.0/24 20940 -23.58.222.0/23 20940 -23.58.224.0/19 16625 -23.59.0.0/20 16625 -23.59.16.0/22 16625 -23.59.20.0/23 16625 -23.59.22.0/24 20940 -23.59.23.0/24 24319 -23.59.24.0/22 7418 -23.59.28.0/22 9498 -23.59.32.0/19 18734 -23.59.64.0/21 16625 -23.59.72.0/21 20940 -23.59.80.0/21 16625 -23.59.88.0/24 20940 -23.59.90.0/23 16625 -23.59.92.0/22 16625 -23.59.128.0/20 16625 -23.59.144.0/21 20940 -23.59.152.0/22 20940 -23.59.156.0/22 16625 -23.59.160.0/24 20940 -23.59.161.0/24 24319 -23.59.162.0/24 577 -23.59.163.0/24 20940 -23.59.164.0/22 20940 -23.59.168.0/23 20940 -23.59.170.0/23 16625 -23.59.172.0/23 24319 -23.59.174.0/24 20940 -23.59.175.0/24 9498 -23.59.176.0/23 33491 -23.59.178.0/24 20940 -23.59.179.0/24 35994 -23.59.180.0/23 24309 -23.59.182.0/23 20940 -23.59.184.0/22 16625 -23.59.188.0/22 20940 -23.59.192.0/19 16625 -23.59.224.0/20 16625 -23.59.240.0/22 35994 -23.59.244.0/23 35994 -23.59.246.0/24 20214 -23.59.247.0/24 20940 -23.59.250.0/23 20940 -23.59.252.0/22 16625 -23.60.0.0/19 16625 -23.60.32.0/19 3257 -23.60.64.0/22 3257 -23.60.68.0/23 20940 -23.60.70.0/23 45899 -23.60.72.0/22 16625 -23.60.76.0/23 20940 -23.60.78.0/23 3491 -23.60.80.0/21 16625 -23.60.88.0/21 35994 -23.60.96.0/23 20940 -23.60.98.0/23 35994 -23.60.100.0/22 7418 -23.60.104.0/22 20940 -23.60.112.0/20 3491 -23.60.128.0/20 3491 -23.60.144.0/22 3491 -23.60.148.0/22 16625 -23.60.152.0/22 18004 -23.60.156.0/23 22773 -23.60.158.0/23 20940 -23.60.160.0/21 16625 -23.60.168.0/24 20940 -23.60.169.0/24 9829 -23.60.170.0/23 16625 -23.60.172.0/24 9498 -23.60.173.0/24 20940 -23.60.174.0/23 16625 -23.60.176.0/20 37457 -23.60.192.0/18 16625 -23.61.0.0/24 20940 -23.61.1.0/24 24319 -23.61.2.0/23 19429 -23.61.4.0/22 5432 -23.61.8.0/23 20940 -23.61.10.0/23 2914 -23.61.12.0/22 2914 -23.61.16.0/20 9605 -23.61.32.0/20 9605 -23.61.48.0/20 2914 -23.61.64.0/20 2914 -23.61.80.0/20 16625 -23.61.96.0/20 45629 -23.61.112.0/22 16625 -23.61.116.0/23 16625 -23.61.118.0/23 28573 -23.61.120.0/22 28573 -23.61.124.0/22 16625 -23.61.128.0/19 28573 -23.61.160.0/19 16625 -23.61.192.0/23 16625 -23.61.194.0/23 20940 -23.61.196.0/23 16625 -23.61.198.0/24 20940 -23.61.199.0/24 21342 -23.61.200.0/23 34164 -23.61.202.0/24 9534 -23.61.203.0/24 20940 -23.61.204.0/24 3462 -23.61.205.0/24 20940 -23.61.206.0/24 20940 -23.61.207.0/24 35994 -23.61.208.0/20 16625 -23.61.224.0/20 16625 -23.61.240.0/22 16625 -23.61.244.0/23 20940 -23.61.246.0/24 3462 -23.61.247.0/24 20940 -23.61.248.0/22 20940 -23.61.252.0/23 16625 -23.61.254.0/23 45899 -23.62.0.0/22 20940 -23.62.4.0/24 35994 -23.62.5.0/24 24319 -23.62.6.0/23 20940 -23.62.8.0/24 20940 -23.62.9.0/24 34164 -23.62.10.0/23 20940 -23.62.12.0/23 24309 -23.62.14.0/23 55410 -23.62.16.0/21 16625 -23.62.24.0/22 16625 -23.62.28.0/23 35994 -23.62.35.0/24 20940 -23.62.36.0/22 35994 -23.62.40.0/22 16625 -23.62.44.0/22 6147 -23.62.48.0/23 24309 -23.62.50.0/23 35994 -23.62.52.0/22 20940 -23.62.56.0/22 4230 -23.62.60.0/22 20940 -23.62.64.0/19 16625 -23.62.96.0/24 24319 -23.62.97.0/24 35994 -23.62.98.0/23 20940 -23.62.100.0/24 20940 -23.62.101.0/24 9498 -23.62.102.0/23 16625 -23.62.104.0/23 34164 -23.62.106.0/23 3257 -23.62.109.0/24 20940 -23.62.110.0/23 18004 -23.62.112.0/20 16625 -23.62.128.0/20 16625 -23.62.144.0/22 16625 -23.62.148.0/22 20940 -23.62.152.0/22 3257 -23.62.156.0/23 20940 -23.62.158.0/23 16625 -23.62.160.0/19 3257 -23.62.192.0/20 16625 -23.62.208.0/20 3257 -23.62.224.0/24 20940 -23.62.225.0/24 12222 -23.62.226.0/24 20940 -23.62.227.0/24 33491 -23.62.228.0/23 20940 -23.62.230.0/24 18680 -23.62.231.0/24 20940 -23.62.232.0/22 3786 -23.62.236.0/24 20940 -23.62.237.0/24 35994 -23.62.238.0/23 20940 -23.62.240.0/20 20940 -23.63.0.0/20 20940 -23.63.16.0/22 20940 -23.63.20.0/23 20940 -23.63.28.0/22 22773 -23.63.64.0/20 20940 -23.63.80.0/22 33662 -23.63.84.0/23 33662 -23.63.86.0/23 16625 -23.63.88.0/22 16625 -23.63.92.0/22 20940 -23.63.96.0/23 19037 -23.63.98.0/23 21342 -23.63.100.0/23 20940 -23.63.102.0/24 20940 -23.63.104.0/22 20940 -23.63.112.0/20 16625 -23.63.128.0/18 16625 -23.63.192.0/19 16625 -23.63.224.0/23 16625 -23.63.226.0/23 20940 -23.63.228.0/23 16625 -23.63.230.0/23 6453 -23.63.232.0/23 20940 -23.63.234.0/24 35994 -23.63.235.0/24 20940 -23.63.236.0/22 20940 -23.63.240.0/20 20940 -23.64.0.0/22 20940 -23.64.12.0/24 18101 -23.64.13.0/24 35994 -23.64.14.0/23 20940 -23.64.16.0/20 20940 -23.64.32.0/20 20940 -23.64.48.0/22 16625 -23.64.56.0/22 812 -23.64.64.0/19 33657 -23.64.96.0/20 16625 -23.64.112.0/20 3257 -23.64.128.0/23 16625 -23.64.130.0/23 20940 -23.64.132.0/22 20940 -23.64.136.0/23 24319 -23.64.140.0/24 55836 -23.64.141.0/24 20940 -23.64.142.0/23 16625 -23.64.176.0/20 16625 -23.64.192.0/19 16625 -23.64.224.0/20 16625 -23.64.240.0/20 2914 -23.65.0.0/20 2914 -23.65.16.0/22 2914 -23.65.20.0/23 2914 -23.65.22.0/24 20940 -23.65.23.0/24 35994 -23.65.24.0/22 16625 -23.65.28.0/23 20940 -23.65.32.0/20 16625 -23.65.64.0/20 9605 -23.65.80.0/20 9924 -23.65.96.0/20 9829 -23.65.112.0/22 9829 -23.65.116.0/22 16625 -23.65.120.0/24 20940 -23.65.121.0/24 35994 -23.65.122.0/23 20940 -23.65.124.0/24 20940 -23.65.125.0/24 35994 -23.65.126.0/23 16625 -23.65.128.0/19 16625 -23.65.160.0/20 16625 -23.65.176.0/22 16625 -23.65.180.0/24 20940 -23.65.181.0/24 7838 -23.65.182.0/23 20940 -23.65.184.0/22 16625 -23.65.188.0/23 20940 -23.65.192.0/20 20940 -23.65.224.0/19 16625 -23.66.8.0/21 9605 -23.66.16.0/20 16625 -23.66.32.0/20 16625 -23.66.48.0/21 16625 -23.66.60.0/22 16625 -23.66.64.0/19 16625 -23.66.96.0/20 16625 -23.66.112.0/23 9605 -23.66.114.0/23 20940 -23.66.116.0/22 9605 -23.66.122.0/23 20940 -23.66.128.0/19 16625 -23.66.192.0/19 16625 -23.66.224.0/22 16625 -23.66.228.0/23 16625 -23.66.230.0/24 35994 -23.66.231.0/24 20940 -23.66.232.0/24 5511 -23.66.233.0/24 20940 -23.66.236.0/22 16625 -23.66.240.0/20 16625 -23.67.0.0/20 16625 -23.67.16.0/20 20940 -23.67.32.0/24 20940 -23.67.33.0/24 9498 -23.67.34.0/23 20940 -23.67.36.0/24 20940 -23.67.37.0/24 24319 -23.67.38.0/24 20940 -23.67.41.0/24 20940 -23.67.42.0/23 20940 -23.67.44.0/24 20940 -23.67.45.0/24 24319 -23.67.47.0/24 20940 -23.67.48.0/24 20940 -23.67.50.0/24 20940 -23.67.51.0/24 24319 -23.67.52.0/24 21342 -23.67.53.0/24 20940 -23.67.54.0/23 20940 -23.67.57.0/24 20940 -23.67.58.0/24 34164 -23.67.59.0/24 20940 -23.67.60.0/23 20940 -23.67.62.0/24 4609 -23.67.64.0/21 16625 -23.67.78.0/23 20940 -23.67.80.0/20 16625 -23.67.96.0/19 16625 -23.67.128.0/20 20940 -23.67.144.0/22 16625 -23.67.148.0/23 9829 -23.67.150.0/23 24319 -23.67.152.0/24 35994 -23.67.153.0/24 20940 -23.67.154.0/23 9605 -23.67.156.0/22 16625 -23.67.160.0/19 20940 -23.67.192.0/19 16625 -23.67.224.0/20 16625 -23.67.240.0/23 16625 -23.67.242.0/23 20940 -23.67.248.0/22 20940 -23.67.254.0/24 35994 -23.67.255.0/24 20940 -23.68.0.0/14 7922 -23.72.0.0/19 16625 -23.72.32.0/22 16625 -23.72.36.0/23 16625 -23.72.38.0/23 20940 -23.72.40.0/22 20940 -23.72.44.0/22 16625 -23.72.48.0/20 16625 -23.72.64.0/20 16625 -23.72.80.0/23 16625 -23.72.82.0/23 20940 -23.72.84.0/22 20940 -23.72.88.0/22 16625 -23.72.92.0/23 16625 -23.72.94.0/23 20940 -23.72.96.0/19 16625 -23.72.128.0/21 20940 -23.72.136.0/23 20940 -23.72.138.0/23 16625 -23.72.140.0/22 16625 -23.72.144.0/20 16625 -23.72.160.0/20 16625 -23.72.176.0/22 20940 -23.72.180.0/23 20940 -23.72.182.0/23 16625 -23.72.184.0/22 16625 -23.72.188.0/22 20940 -23.72.192.0/19 16625 -23.72.224.0/23 20940 -23.72.226.0/23 16625 -23.72.228.0/23 852 -23.72.232.0/23 16625 -23.72.234.0/23 20940 -23.72.236.0/23 16625 -23.72.238.0/23 20940 -23.72.240.0/20 16625 -23.73.0.0/20 16625 -23.73.16.0/22 16625 -23.73.20.0/22 852 -23.73.24.0/21 16625 -23.73.32.0/19 852 -23.73.64.0/19 16625 -23.73.96.0/19 9500 -23.73.128.0/22 16625 -23.73.132.0/24 9498 -23.73.133.0/24 35994 -23.73.134.0/23 35994 -23.73.142.0/23 16625 -23.73.144.0/20 16625 -23.73.160.0/20 16625 -23.73.176.0/22 16625 -23.73.180.0/23 20940 -23.73.182.0/23 16625 -23.73.184.0/22 16625 -23.73.192.0/19 16625 -23.74.2.0/23 20940 -23.74.4.0/22 16625 -23.74.8.0/22 577 -23.74.12.0/23 16625 -23.74.16.0/21 3786 -23.74.25.0/24 21342 -23.74.26.0/23 16625 -23.74.28.0/24 20940 -23.74.29.0/24 12222 -23.74.30.0/23 16625 -23.74.48.0/20 16625 -23.74.64.0/19 16625 -23.74.164.0/22 20940 -23.74.168.0/21 16625 -23.74.176.0/20 16625 -23.74.192.0/18 16625 -23.75.0.0/20 16625 -23.75.16.0/22 16625 -23.75.20.0/23 16625 -23.75.22.0/24 35994 -23.75.23.0/24 20940 -23.75.24.0/21 16625 -23.75.32.0/19 16625 -23.75.68.0/22 16625 -23.75.72.0/21 16625 -23.75.80.0/20 16625 -23.75.96.0/19 16625 -23.75.128.0/18 16625 -23.75.192.0/20 16625 -23.75.208.0/21 16625 -23.75.216.0/23 16625 -23.75.218.0/23 14178 -23.75.220.0/22 14178 -23.75.224.0/19 16625 -23.76.0.0/19 14178 -23.76.32.0/19 19037 -23.76.64.0/19 16625 -23.76.100.0/22 16625 -23.76.104.0/23 16625 -23.76.106.0/23 9534 -23.76.108.0/22 9534 -23.76.112.0/20 16625 -23.76.128.0/20 16625 -23.76.144.0/23 16625 -23.76.146.0/24 33668 -23.76.147.0/24 20940 -23.76.148.0/23 16625 -23.76.150.0/23 12956 -23.76.153.0/24 20940 -23.76.154.0/23 16625 -23.76.156.0/23 9498 -23.76.160.0/19 9534 -23.76.192.0/22 16625 -23.76.200.0/22 12956 -23.76.206.0/23 16625 -23.76.208.0/20 16625 -23.76.224.0/20 16625 -23.76.240.0/20 12956 -23.77.0.0/19 16625 -23.77.32.0/20 12956 -23.77.48.0/20 16625 -23.77.84.0/22 16625 -23.77.88.0/21 16625 -23.77.96.0/19 20940 -23.77.128.0/18 16625 -23.77.192.0/23 16625 -23.77.194.0/24 35994 -23.77.195.0/24 21342 -23.77.196.0/22 16625 -23.77.206.0/23 20940 -23.77.208.0/22 20940 -23.77.212.0/23 16625 -23.77.214.0/23 20940 -23.77.220.0/22 16625 -23.77.224.0/21 20940 -23.77.232.0/22 20940 -23.77.236.0/23 20940 -23.77.238.0/24 20940 -23.77.240.0/22 16625 -23.77.244.0/22 20940 -23.77.248.0/22 16625 -23.78.0.0/20 6453 -23.78.16.0/20 16625 -23.78.32.0/19 16625 -23.78.64.0/19 16625 -23.78.96.0/20 16625 -23.78.128.0/21 20940 -23.78.136.0/22 16625 -23.78.160.0/19 16625 -23.78.192.0/20 16625 -23.78.208.0/22 16625 -23.78.212.0/23 16625 -23.78.216.0/22 16625 -23.78.220.0/22 20940 -23.78.224.0/19 27986 -23.79.0.0/18 16625 -23.79.64.0/19 16625 -23.79.96.0/19 45899 -23.79.128.0/19 16625 -23.79.192.0/19 16625 -23.79.224.0/22 12222 -23.79.229.0/24 12222 -23.79.230.0/23 12222 -23.79.232.0/23 12222 -23.79.234.0/24 35994 -23.79.235.0/24 12222 -23.79.237.0/24 12222 -23.79.238.0/23 12222 -23.79.240.0/24 20940 -23.79.241.0/24 35994 -23.79.242.0/24 24319 -23.79.243.0/24 35994 -23.79.244.0/23 20940 -23.79.246.0/24 35994 -23.79.247.0/24 6762 -23.79.248.0/23 35994 -23.79.250.0/24 35994 -23.79.251.0/24 20940 -23.79.252.0/23 35994 -23.79.255.0/24 20940 -23.80.0.0/16 395954 -23.81.0.0/21 396190 -23.81.8.0/21 7203 -23.81.16.0/21 19148 -23.81.24.0/21 15003 -23.81.32.0/21 7203 -23.81.48.0/20 19148 -23.81.64.0/21 396362 -23.81.72.0/21 15003 -23.81.80.0/22 19148 -23.81.84.0/22 7203 -23.81.88.0/21 19148 -23.81.96.0/20 7203 -23.81.112.0/21 7203 -23.81.120.0/21 19148 -23.81.128.0/21 19148 -23.81.136.0/21 396190 -23.81.144.0/21 19148 -23.81.152.0/21 15003 -23.81.160.0/22 7203 -23.81.168.0/22 7203 -23.81.172.0/22 19148 -23.81.176.0/21 7203 -23.81.184.0/21 395954 -23.81.192.0/21 19148 -23.81.200.0/22 7203 -23.81.208.0/21 396190 -23.81.220.0/22 7203 -23.81.224.0/19 19148 -23.82.0.0/21 7203 -23.82.8.0/21 30633 -23.82.16.0/20 7203 -23.82.32.0/21 396190 -23.82.40.0/21 15003 -23.82.48.0/22 7203 -23.82.56.0/22 7203 -23.82.60.0/22 19148 -23.82.64.0/21 7203 -23.82.72.0/21 396190 -23.82.80.0/21 15003 -23.82.88.0/21 7203 -23.82.96.0/21 7203 -23.82.104.0/21 15003 -23.82.112.0/21 7203 -23.82.124.0/22 7203 -23.82.128.0/22 30633 -23.82.132.0/22 7203 -23.82.136.0/21 393886 -23.82.144.0/21 396190 -23.82.160.0/21 395954 -23.82.168.0/21 7203 -23.82.176.0/21 7203 -23.82.184.0/21 396362 -23.82.192.0/19 396190 -23.82.224.0/21 396190 -23.82.236.0/22 7203 -23.82.240.0/21 396190 -23.82.248.0/21 395954 -23.83.0.0/18 395954 -23.83.64.0/21 7979 -23.83.80.0/20 15003 -23.83.96.0/20 395954 -23.83.112.0/20 7979 -23.83.128.0/21 19148 -23.83.136.0/21 395954 -23.83.144.0/21 19148 -23.83.152.0/21 7203 -23.83.160.0/21 7203 -23.83.168.0/21 396190 -23.83.176.0/21 7203 -23.83.184.0/22 19148 -23.83.192.0/20 395954 -23.83.208.0/21 36483 -23.83.216.0/22 16509 -23.83.220.0/23 36483 -23.83.222.0/24 36483 -23.83.223.0/24 132680 -23.83.224.0/19 25820 -23.86.16.0/20 19157 -23.88.0.0/15 18978 -23.90.0.0/19 62904 -23.90.32.0/21 62904 -23.90.40.0/22 49532 -23.90.44.0/22 62904 -23.90.48.0/20 62904 -23.90.64.0/21 62685 -23.90.72.0/22 62685 -23.90.76.0/24 62685 -23.90.79.0/24 62685 -23.90.80.0/22 62685 -23.90.84.0/24 62685 -23.90.86.0/23 62685 -23.90.88.0/22 397332 -23.90.92.0/22 32845 -23.90.128.0/20 21859 -23.91.0.0/19 40676 -23.91.32.0/19 36315 -23.91.64.0/20 62729 -23.91.96.0/22 135377 -23.91.100.0/23 135377 -23.91.102.0/23 21859 -23.91.104.0/23 21859 -23.91.108.0/23 21859 -23.91.111.0/24 3462 -23.91.112.0/24 46606 -23.91.113.0/24 32475 -23.91.114.0/23 46606 -23.91.116.0/24 46606 -23.91.117.0/24 62729 -23.91.118.0/24 62729 -23.91.119.0/24 46606 -23.91.120.0/22 46606 -23.91.124.0/23 46606 -23.91.126.0/24 46606 -23.91.127.0/24 36351 -23.91.128.0/19 5645 -23.91.160.0/19 36493 -23.91.192.0/20 11492 -23.91.208.0/21 11492 -23.91.216.0/22 11492 -23.91.220.0/24 11492 -23.91.221.0/24 18812 -23.91.222.0/23 11492 -23.91.224.0/19 11814 -23.92.0.0/20 62646 -23.92.16.0/20 63949 -23.92.32.0/20 54098 -23.92.48.0/24 8100 -23.92.52.0/22 8100 -23.92.56.0/22 8100 -23.92.60.0/23 33182 -23.92.64.0/24 54540 -23.92.65.0/24 394727 -23.92.66.0/23 54540 -23.92.68.0/24 29802 -23.92.69.0/24 54540 -23.92.70.0/24 54540 -23.92.71.0/24 29802 -23.92.72.0/24 54540 -23.92.73.0/24 29802 -23.92.74.0/24 54540 -23.92.75.0/24 29802 -23.92.76.0/24 29802 -23.92.77.0/24 13820 -23.92.78.0/23 54540 -23.92.80.0/20 19531 -23.92.112.0/23 46805 -23.92.114.0/24 46805 -23.92.115.0/24 206146 -23.92.116.0/22 46805 -23.92.120.0/22 46805 -23.92.124.0/23 46805 -23.92.126.0/24 46805 -23.92.127.0/24 47536 -23.92.128.0/20 40788 -23.92.144.0/20 63159 -23.92.160.0/23 14013 -23.92.162.0/24 14013 -23.92.176.0/22 29791 -23.92.180.0/23 13791 -23.92.182.0/23 12179 -23.92.184.0/22 12182 -23.92.188.0/23 10913 -23.92.190.0/23 29791 -23.92.192.0/22 36339 -23.92.196.0/22 26925 -23.92.200.0/22 17082 -23.92.204.0/22 14976 -23.92.208.0/22 31863 -23.92.212.0/23 31863 -23.92.214.0/24 64235 -23.92.215.0/24 31863 -23.92.216.0/24 31863 -23.92.217.0/24 64235 -23.92.218.0/23 31863 -23.92.220.0/22 31863 -23.92.224.0/19 16276 -23.93.0.0/16 7065 -23.94.0.0/21 36352 -23.94.8.0/22 36352 -23.94.12.0/24 20278 -23.94.13.0/24 36352 -23.94.14.0/23 36352 -23.94.16.0/20 36352 -23.94.32.0/23 36352 -23.94.34.0/24 36352 -23.94.35.0/24 20278 -23.94.36.0/23 36352 -23.94.38.0/24 36352 -23.94.39.0/24 20278 -23.94.40.0/23 36352 -23.94.42.0/24 20278 -23.94.43.0/24 36352 -23.94.44.0/22 36352 -23.94.48.0/20 36352 -23.94.64.0/18 36352 -23.94.128.0/17 36352 -23.95.0.0/20 36352 -23.95.16.0/22 36352 -23.95.20.0/24 36352 -23.95.21.0/24 20278 -23.95.22.0/24 20278 -23.95.23.0/24 36352 -23.95.24.0/21 36352 -23.95.32.0/21 36352 -23.95.40.0/24 20278 -23.95.41.0/24 36352 -23.95.42.0/23 36352 -23.95.44.0/23 36352 -23.95.46.0/24 20278 -23.95.47.0/24 36352 -23.95.48.0/20 36352 -23.95.64.0/18 36352 -23.95.128.0/17 36352 -23.96.0.0/14 8075 -23.100.0.0/15 8075 -23.102.0.0/16 8075 -23.103.64.0/18 8075 -23.103.128.0/17 8075 -23.104.0.0/16 395954 -23.105.0.0/20 30633 -23.105.16.0/20 7203 -23.105.32.0/24 394380 -23.105.36.0/22 30633 -23.105.40.0/21 395954 -23.105.64.0/19 396190 -23.105.96.0/19 7203 -23.105.128.0/19 396362 -23.105.160.0/19 30633 -23.105.192.0/19 25820 -23.105.224.0/19 7979 -23.106.0.0/19 396190 -23.106.32.0/21 205544 -23.106.44.0/22 7203 -23.106.48.0/22 7203 -23.106.80.0/21 395954 -23.106.88.0/21 7203 -23.106.96.0/21 15003 -23.106.104.0/21 7979 -23.106.112.0/21 7979 -23.106.120.0/21 59253 -23.106.128.0/19 25820 -23.106.160.0/20 7203 -23.106.180.0/22 395954 -23.106.184.0/21 7203 -23.106.192.0/19 396190 -23.106.224.0/22 7203 -23.106.240.0/22 7203 -23.106.248.0/21 59253 -23.107.0.0/16 395954 -23.108.0.0/19 396362 -23.108.32.0/19 393886 -23.108.64.0/19 15003 -23.108.108.0/22 7203 -23.108.112.0/21 7203 -23.108.120.0/22 7203 -23.108.128.0/19 396190 -23.108.160.0/19 7203 -23.108.192.0/21 7203 -23.108.204.0/22 7203 -23.108.208.0/20 7979 -23.108.224.0/19 396190 -23.109.0.0/21 7979 -23.109.16.0/22 7979 -23.110.0.0/16 395954 -23.111.8.0/22 12989 -23.111.16.0/20 7979 -23.111.64.0/21 54643 -23.111.72.0/22 54643 -23.111.76.0/22 11831 -23.111.80.0/20 7979 -23.111.96.0/19 7979 -23.111.128.0/18 29802 -23.111.192.0/21 7979 -23.111.224.0/20 7979 -23.111.244.0/22 7979 -23.111.249.0/24 15003 -23.111.251.0/24 15003 -23.111.252.0/22 30633 -23.112.0.0/12 7018 -23.128.0.0/24 393457 -23.128.16.0/24 397359 -23.128.24.0/24 12654 -23.128.64.0/23 19969 -23.128.80.0/24 397372 -23.128.96.0/24 53758 -23.128.124.0/24 12654 -23.128.128.0/23 395734 -23.128.144.0/23 62809 -23.128.160.0/24 397181 -23.128.176.0/24 397411 -23.128.192.0/24 11938 -23.128.208.0/24 55077 -23.128.224.0/24 11635 -23.128.240.0/24 397120 -23.129.0.0/24 13590 -23.129.16.0/24 46525 -23.129.32.0/24 53356 -23.129.64.0/24 396507 -23.129.80.0/24 17177 -23.129.96.0/24 19841 -23.129.128.0/24 60271 -23.129.144.0/24 395777 -23.129.160.0/24 46723 -23.129.176.0/24 14979 -23.129.224.0/24 395655 -23.129.240.0/24 397418 -23.130.0.0/24 62887 -23.130.16.0/24 17177 -23.130.32.0/24 23498 -23.130.48.0/24 20001 -23.130.64.0/24 14649 -23.130.80.0/24 32639 -23.130.96.0/24 46475 -23.130.97.0/24 11051 -23.130.128.0/23 26721 -23.130.144.0/24 397470 -23.130.160.0/24 393742 -23.130.176.0/24 7795 -23.130.192.0/24 394625 -23.130.208.0/24 394952 -23.130.224.0/24 32242 -23.131.0.0/24 393398 -23.131.16.0/24 32864 -23.131.32.0/24 36369 -23.131.64.0/23 396480 -23.131.80.0/24 133682 -23.131.96.0/24 16827 -23.131.128.0/24 395785 -23.131.144.0/24 14618 -23.131.160.0/23 13925 -23.131.176.0/24 395631 -23.131.192.0/24 25651 -23.131.224.0/24 19054 -23.132.16.0/24 397472 -23.132.32.0/24 36710 -23.132.48.0/24 397566 -23.132.80.0/24 46502 -23.132.96.0/24 42615 -23.132.112.0/24 53451 -23.132.128.0/24 13760 -23.132.144.0/24 397529 -23.132.160.0/24 40209 -23.132.176.0/24 54904 -23.132.192.0/24 30500 -23.132.208.0/24 55225 -23.132.224.0/23 26935 -23.132.240.0/24 46842 -23.133.0.0/24 40676 -23.133.1.0/24 7489 -23.133.2.0/23 46261 -23.133.4.0/24 53340 -23.133.16.0/24 10796 -23.133.32.0/24 393945 -23.133.48.0/24 398020 -23.133.64.0/24 394352 -23.133.96.0/24 393453 -23.133.112.0/24 25988 -23.133.160.0/24 10882 -23.133.192.0/24 16734 -23.133.224.0/24 14618 -23.134.0.0/24 394812 -23.134.16.0/24 393524 -23.134.32.0/24 396879 -23.134.80.0/24 5670 -23.134.96.0/23 22188 -23.134.112.0/24 397592 -23.134.128.0/24 62529 -23.134.144.0/24 397554 -23.134.160.0/24 30549 -23.134.176.0/24 26801 -23.134.192.0/22 22462 -23.134.224.0/24 40412 -23.134.240.0/24 397599 -23.135.32.0/24 397046 -23.135.48.0/24 396935 -23.135.64.0/24 396107 -23.135.128.0/24 395475 -23.135.144.0/24 14102 -23.135.176.0/24 63072 -23.135.192.0/23 396521 -23.135.208.0/24 210 -23.135.224.0/24 40111 -23.136.16.0/24 396855 -23.136.64.0/24 27517 -23.136.80.0/24 20119 -23.136.96.0/24 14694 -23.136.112.0/24 54835 -23.136.128.0/24 55128 -23.136.144.0/24 22058 -23.136.160.0/24 25985 -23.136.176.0/24 14618 -23.136.192.0/24 394805 -23.136.240.0/24 397617 -23.137.0.0/24 395214 -23.137.32.0/24 40881 -23.137.48.0/24 16904 -23.137.64.0/24 46537 -23.137.80.0/24 46280 -23.137.96.0/24 16904 -23.137.112.0/24 397636 -23.137.128.0/24 32109 -23.137.144.0/24 397656 -23.137.160.0/24 32995 -23.137.176.0/24 40098 -23.137.192.0/24 31798 -23.137.224.0/24 393398 -23.137.240.0/24 397614 -23.138.0.0/24 55140 -23.138.32.0/24 23033 -23.138.48.0/24 29768 -23.138.64.0/23 14078 -23.138.80.0/24 397674 -23.138.96.0/24 36222 -23.138.112.0/24 267 -23.138.160.0/24 394740 -23.138.192.0/24 64260 -23.138.208.0/24 26695 -23.138.240.0/24 397696 -23.139.0.0/24 36352 -23.139.32.0/24 14727 -23.139.48.0/24 8025 -23.139.64.0/24 40090 -23.139.96.0/24 46432 -23.139.112.0/24 53812 -23.139.128.0/24 395899 -23.139.160.0/24 26073 -23.139.176.0/24 397708 -23.139.192.0/24 262913 -23.139.224.0/24 134176 -23.140.0.0/24 394678 -23.140.16.0/24 63371 -23.140.48.0/24 7018 -23.140.80.0/24 30542 -23.140.96.0/24 16584 -23.140.112.0/24 395100 -23.140.128.0/24 394935 -23.140.144.0/24 397810 -23.140.176.0/24 40676 -23.140.192.0/24 396027 -23.140.224.0/24 40953 -23.140.240.0/24 397810 -23.141.0.0/24 2386 -23.141.16.0/24 397872 -23.141.32.0/24 134176 -23.141.64.0/24 19692 -23.141.96.0/24 395021 -23.141.112.0/24 6556 -23.141.128.0/24 395663 -23.141.144.0/24 397864 -23.141.160.0/24 46855 -23.141.176.0/24 397945 -23.141.224.0/24 31807 -23.141.240.0/24 397438 -23.142.0.0/24 395663 -23.142.16.0/24 397881 -23.142.32.0/23 30382 -23.142.48.0/24 397326 -23.142.64.0/24 395763 -23.142.80.0/24 33657 -23.142.96.0/24 54543 -23.142.128.0/24 394791 -23.142.144.0/24 174 -23.142.160.0/24 395703 -23.142.176.0/24 33657 -23.142.192.0/24 6939 -23.142.208.0/24 208188 -23.142.224.0/24 6233 -23.143.16.0/24 33657 -23.143.64.0/24 40713 -23.143.80.0/24 19523 -23.143.96.0/24 396968 -23.143.128.0/24 22120 -23.143.144.0/24 398085 -23.143.160.0/24 14534 -23.143.176.0/24 36260 -23.143.224.0/24 26311 -23.143.240.0/24 397389 -23.144.64.0/24 13539 -23.144.80.0/24 396865 -23.144.96.0/24 395646 -23.144.112.0/24 397990 -23.144.128.0/24 22652 -23.144.144.0/24 397911 -23.144.160.0/24 32727 -23.144.192.0/24 22084 -23.144.224.0/24 32995 -23.145.0.0/24 394592 -23.145.16.0/24 7871 -23.145.32.0/23 13428 -23.145.64.0/24 15204 -23.145.80.0/24 397666 -23.145.96.0/24 22603 -23.145.128.0/24 6939 -23.145.160.0/24 394144 -23.145.176.0/24 398065 -23.145.192.0/24 54116 -23.145.208.0/24 30456 -23.145.224.0/23 397427 -23.145.240.0/24 397582 -23.146.0.0/24 394109 -23.146.16.0/24 396281 -23.146.32.0/24 18534 -23.146.48.0/24 397982 -23.146.64.0/24 19054 -23.146.80.0/24 6939 -23.146.96.0/24 394532 -23.146.128.0/24 396002 -23.146.144.0/24 397391 -23.146.160.0/24 394626 -23.146.176.0/24 398008 -23.146.192.0/23 174 -23.146.240.0/24 46664 -23.147.64.0/24 25682 -23.147.128.0/24 395470 -23.147.160.0/24 395846 -23.147.224.0/24 35913 -23.148.0.0/23 62731 -23.148.3.0/24 62731 -23.148.16.0/24 397867 -23.148.64.0/24 393857 -23.148.96.0/24 396984 -23.148.128.0/24 395938 -23.148.176.0/24 62809 -23.148.192.0/23 174 -23.148.224.0/24 54344 -23.149.16.0/24 398223 -23.149.32.0/24 209 -23.149.48.0/24 27418 -23.149.64.0/24 25894 -23.149.96.0/24 19584 -23.149.128.0/24 395173 -23.149.160.0/24 20303 -23.149.176.0/24 32018 -23.149.192.0/24 13781 -23.149.208.0/24 16925 -23.149.224.0/24 32899 -23.149.240.0/24 23473 -23.150.0.0/24 394501 -23.150.32.0/24 64271 -23.150.64.0/24 19006 -23.150.96.0/24 397064 -23.150.128.0/24 32334 -23.150.160.0/24 397031 -23.150.192.0/24 395163 -23.150.224.0/24 397001 -23.151.0.0/24 33561 -23.151.32.0/23 397134 -23.151.96.0/24 20119 -23.151.128.0/24 30549 -23.151.160.0/24 13830 -23.151.192.0/23 394989 -23.151.224.0/24 46924 -23.152.0.0/24 8100 -23.152.32.0/24 26095 -23.152.64.0/24 32998 -23.152.128.0/23 396097 -23.152.160.0/24 7034 -23.152.192.0/24 30025 -23.152.224.0/24 138414 -23.152.225.0/24 53356 -23.153.32.0/24 46924 -23.153.96.0/24 22652 -23.153.128.0/24 396142 -23.153.160.0/24 54987 -23.153.224.0/24 397095 -23.154.0.0/23 174 -23.154.2.0/24 174 -23.154.32.0/24 397033 -23.154.128.0/24 63202 -23.154.160.0/24 174 -23.154.192.0/24 396031 -23.154.224.0/24 397104 -23.155.0.0/24 395477 -23.155.32.0/24 397081 -23.155.64.0/24 22652 -23.155.96.0/24 396997 -23.155.128.0/23 395261 -23.155.130.0/24 11287 -23.155.160.0/24 397019 -23.155.224.0/24 46246 -23.156.32.0/24 33576 -23.156.96.0/24 27507 -23.156.128.0/24 30456 -23.156.192.0/24 32217 -23.157.0.0/24 395101 -23.157.32.0/24 36741 -23.157.96.0/24 394752 -23.157.128.0/24 396101 -23.157.160.0/24 397143 -23.157.192.0/24 64267 -23.157.224.0/24 40706 -23.158.0.0/24 5008 -23.158.96.0/24 63304 -23.158.128.0/24 22867 -23.158.160.0/24 36025 -23.158.224.0/24 33086 -23.159.0.0/24 4556 -23.159.32.0/23 53740 -23.159.64.0/24 396422 -23.159.160.0/24 6233 -23.159.224.0/24 32281 -23.160.0.0/24 46489 -23.160.64.0/24 35868 -23.160.96.0/23 209 -23.160.128.0/24 64267 -23.160.160.0/23 39618 -23.160.192.0/23 397270 -23.160.194.0/24 397270 -23.160.224.0/24 62668 -23.161.0.0/23 395512 -23.161.32.0/24 12131 -23.161.96.0/24 174 -23.161.128.0/24 396262 -23.161.192.0/24 19575 -23.162.0.0/24 394972 -23.162.32.0/24 36141 -23.162.64.0/24 35892 -23.162.96.0/24 174 -23.162.160.0/24 21777 -23.162.192.0/24 35859 -23.162.224.0/24 22751 -23.163.0.0/24 8100 -23.163.32.0/24 397142 -23.163.128.0/24 54721 -23.163.192.0/24 62969 -23.163.224.0/23 16509 -23.164.0.0/24 394247 -23.164.64.0/24 64290 -23.164.96.0/24 19382 -23.164.160.0/24 6939 -23.164.192.0/24 25815 -23.164.224.0/24 393434 -23.165.0.0/24 33597 -23.165.32.0/24 14665 -23.165.96.0/24 394012 -23.165.128.0/24 7018 -23.165.192.0/24 23738 -23.165.224.0/23 26073 -23.165.226.0/24 26073 -23.166.0.0/24 3367 -23.166.32.0/24 394352 -23.166.64.0/24 18531 -23.166.96.0/24 18966 -23.166.128.0/24 54623 -23.166.192.0/24 26459 -23.166.224.0/24 14618 -23.166.225.0/24 62707 -23.167.0.0/24 394814 -23.167.32.0/24 394883 -23.167.64.0/24 40202 -23.167.96.0/24 397103 -23.167.128.0/24 395774 -23.167.192.0/24 397654 -23.167.224.0/24 55016 -23.168.0.0/24 26721 -23.168.32.0/24 22497 -23.168.96.0/24 14971 -23.168.160.0/24 19681 -23.168.192.0/23 29757 -23.168.224.0/24 7018 -23.169.0.0/24 395574 -23.169.32.0/24 54980 -23.169.64.0/24 19045 -23.169.96.0/24 394119 -23.169.128.0/24 396276 -23.169.160.0/24 394378 -23.169.192.0/24 54958 -23.169.224.0/24 138414 -23.169.225.0/24 53356 -23.170.0.0/24 394969 -23.170.32.0/23 397131 -23.170.65.0/24 209 -23.170.96.0/24 20119 -23.170.128.0/24 61323 -23.170.160.0/23 393582 -23.170.192.0/24 19568 -23.170.224.0/24 30168 -23.171.96.0/24 46995 -23.171.128.0/24 396313 -23.171.160.0/24 22652 -23.171.192.0/24 30399 -23.171.224.0/24 16400 -23.172.0.0/24 12243 -23.172.32.0/24 394743 -23.172.64.0/23 396502 -23.172.192.0/24 397268 -23.172.224.0/24 26035 -23.173.0.0/24 395568 -23.173.32.0/24 33452 -23.173.128.0/24 396279 -23.173.160.0/24 397072 -23.173.192.0/24 11281 -23.173.224.0/24 397672 -23.174.0.0/23 394868 -23.174.2.0/24 394868 -23.174.32.0/24 19289 -23.174.96.0/24 30323 -23.174.128.0/24 53698 -23.174.192.0/24 11763 -23.174.224.0/24 394233 -23.175.0.0/23 395502 -23.175.32.0/24 4508 -23.175.64.0/24 393626 -23.175.96.0/24 40001 -23.175.128.0/24 46920 -23.175.160.0/24 6939 -23.175.224.0/24 397247 -23.176.0.0/24 394367 -23.176.32.0/24 55009 -23.176.96.0/24 20029 -23.176.128.0/24 396340 -23.176.160.0/24 397327 -23.176.192.0/24 54509 -23.176.224.0/24 397376 -23.177.0.0/24 27298 -23.177.32.0/24 33491 -23.177.64.0/24 20001 -23.177.96.0/24 397300 -23.177.160.0/24 397321 -23.177.192.0/24 394767 -23.178.0.0/23 394232 -23.178.64.0/24 53334 -23.178.96.0/24 397347 -23.178.128.0/24 396380 -23.178.160.0/24 393763 -23.178.224.0/24 26370 -23.179.0.0/23 63297 -23.179.2.0/24 63297 -23.179.32.0/24 62838 -23.179.64.0/24 396182 -23.179.96.0/24 46841 -23.179.128.0/24 40216 -23.179.160.0/24 40202 -23.179.192.0/23 23379 -23.179.224.0/24 393898 -23.180.0.0/24 23473 -23.180.64.0/24 33541 -23.180.128.0/24 4556 -23.180.192.0/24 26253 -23.181.0.0/24 40805 -23.181.64.0/24 36198 -23.181.128.0/24 27168 -23.181.192.0/24 30542 -23.182.0.0/24 19465 -23.182.64.0/24 23738 -23.182.128.0/24 32489 -23.182.192.0/24 394887 -23.183.0.0/24 395657 -23.183.64.0/24 32494 -23.183.192.0/23 53732 -23.184.0.0/24 394656 -23.184.64.0/24 32267 -23.184.192.0/24 10963 -23.185.0.0/24 54113 -23.185.64.0/24 26721 -23.185.128.0/24 395852 -23.185.192.0/24 53989 -23.186.0.0/24 7992 -23.186.128.0/24 22020 -23.186.192.0/24 53810 -23.187.0.0/23 395678 -23.187.64.0/24 54285 -23.188.0.0/24 16437 -23.188.64.0/23 396990 -23.188.66.0/24 396990 -23.189.0.0/24 14877 -23.189.64.0/24 396136 -23.189.192.0/24 27593 -23.190.0.0/24 63393 -23.190.64.0/24 394256 -23.190.128.0/24 396472 -23.191.0.0/24 31843 -23.191.64.0/24 64276 -23.191.128.0/23 396316 -23.191.192.0/24 32708 -23.192.0.0/19 16625 -23.192.32.0/21 16625 -23.192.40.0/22 16625 -23.192.44.0/22 20940 -23.192.48.0/20 16625 -23.192.64.0/19 16625 -23.192.108.0/24 20940 -23.192.109.0/24 35994 -23.192.112.0/23 35994 -23.192.114.0/23 23947 -23.192.118.0/23 16625 -23.192.120.0/23 16625 -23.192.122.0/23 55644 -23.192.124.0/22 20940 -23.192.128.0/20 16625 -23.192.144.0/20 45820 -23.192.160.0/24 20940 -23.192.161.0/24 32098 -23.192.162.0/23 20940 -23.192.164.0/24 2914 -23.192.165.0/24 20940 -23.192.166.0/23 16625 -23.192.168.0/21 16625 -23.192.176.0/20 45820 -23.192.192.0/20 23947 -23.192.208.0/20 16625 -23.192.224.0/21 16625 -23.192.232.0/22 16625 -23.192.236.0/23 16625 -23.192.238.0/24 35994 -23.192.239.0/24 20940 -23.192.240.0/20 16625 -23.193.0.0/20 16625 -23.193.32.0/22 20940 -23.193.36.0/22 16625 -23.193.40.0/22 20940 -23.193.44.0/24 20940 -23.193.45.0/24 35994 -23.193.46.0/24 20940 -23.193.47.0/24 32787 -23.193.48.0/22 55410 -23.193.52.0/22 16625 -23.193.57.0/24 35994 -23.193.58.0/23 35994 -23.193.60.0/22 16625 -23.193.64.0/19 16625 -23.193.128.0/19 16625 -23.193.160.0/23 35994 -23.193.162.0/23 16625 -23.193.164.0/23 8151 -23.193.168.0/23 6147 -23.193.170.0/23 20940 -23.193.172.0/24 20940 -23.193.173.0/24 35994 -23.193.174.0/23 16625 -23.193.176.0/20 16625 -23.193.192.0/20 16625 -23.193.208.0/22 8151 -23.193.212.0/22 16625 -23.193.216.0/21 16625 -23.193.224.0/19 8151 -23.194.0.0/18 16625 -23.194.64.0/19 16625 -23.194.96.0/20 16625 -23.194.112.0/23 20940 -23.194.114.0/24 35994 -23.194.115.0/24 20940 -23.194.116.0/22 7922 -23.194.120.0/22 16625 -23.194.124.0/23 35994 -23.194.126.0/24 35994 -23.194.127.0/24 24319 -23.194.130.0/23 20940 -23.194.132.0/22 9443 -23.194.136.0/23 45899 -23.194.138.0/23 24319 -23.194.140.0/22 16625 -23.194.144.0/20 16625 -23.194.160.0/20 16625 -23.194.176.0/22 20940 -23.194.180.0/22 16625 -23.194.184.0/22 20940 -23.194.192.0/22 15802 -23.194.196.0/22 16625 -23.194.200.0/24 35994 -23.194.201.0/24 20940 -23.194.202.0/23 12956 -23.194.204.0/22 16625 -23.194.208.0/22 16625 -23.194.212.0/23 20940 -23.194.214.0/24 24319 -23.194.215.0/24 35994 -23.194.216.0/23 2914 -23.194.218.0/23 38040 -23.194.220.0/23 28573 -23.194.222.0/23 812 -23.194.224.0/19 16625 -23.195.0.0/22 16625 -23.195.4.0/22 8781 -23.195.8.0/22 8551 -23.195.12.0/22 2914 -23.195.48.0/21 23693 -23.195.56.0/22 23693 -23.195.60.0/22 16625 -23.195.64.0/22 16625 -23.195.68.0/24 20940 -23.195.69.0/24 35994 -23.195.70.0/23 2914 -23.195.72.0/24 35994 -23.195.73.0/24 20940 -23.195.74.0/24 38266 -23.195.75.0/24 35994 -23.195.76.0/22 2914 -23.195.80.0/20 2914 -23.195.96.0/20 2914 -23.195.112.0/20 16625 -23.195.128.0/20 16625 -23.195.148.0/22 28573 -23.195.152.0/22 812 -23.195.156.0/22 23947 -23.195.160.0/19 28573 -23.195.192.0/19 812 -23.195.240.0/22 7713 -23.195.244.0/22 16625 -23.195.252.0/22 2914 -23.196.0.0/23 35994 -23.196.2.0/23 16625 -23.196.4.0/22 16625 -23.196.8.0/21 16625 -23.196.16.0/20 16625 -23.196.32.0/22 20940 -23.196.40.0/22 20940 -23.196.48.0/20 16625 -23.196.64.0/18 16625 -23.196.128.0/18 16625 -23.196.192.0/19 2914 -23.196.224.0/22 2914 -23.196.228.0/23 2914 -23.196.230.0/23 16625 -23.196.232.0/21 16625 -23.196.240.0/20 16625 -23.197.0.0/19 16625 -23.197.32.0/20 16625 -23.197.48.0/23 16625 -23.197.50.0/23 33651 -23.197.52.0/23 20940 -23.197.54.0/23 26769 -23.197.56.0/22 16625 -23.197.60.0/23 4788 -23.197.62.0/23 20940 -23.197.64.0/20 20940 -23.197.80.0/22 16625 -23.197.86.0/23 20940 -23.197.88.0/21 16625 -23.197.96.0/22 33651 -23.197.100.0/22 20940 -23.197.104.0/22 26769 -23.197.108.0/22 20940 -23.197.112.0/20 20940 -23.197.128.0/20 20940 -23.197.144.0/20 26769 -23.197.160.0/20 26769 -23.197.188.0/22 16625 -23.197.192.0/21 20940 -23.197.200.0/23 20940 -23.197.202.0/24 20940 -23.197.203.0/24 35994 -23.197.204.0/23 35994 -23.197.206.0/24 20940 -23.197.208.0/20 16625 -23.197.224.0/20 16625 -23.197.240.0/22 16625 -23.197.248.0/22 20940 -23.197.252.0/22 16625 -23.198.0.0/22 20940 -23.198.4.0/22 16625 -23.198.8.0/24 34164 -23.198.9.0/24 20940 -23.198.10.0/23 20940 -23.198.12.0/22 7713 -23.198.16.0/20 16625 -23.198.32.0/19 20940 -23.198.64.0/19 16625 -23.198.96.0/23 16625 -23.198.98.0/24 35994 -23.198.99.0/24 20940 -23.198.100.0/22 20940 -23.198.104.0/23 20940 -23.198.106.0/23 16625 -23.198.108.0/22 16625 -23.198.112.0/20 20940 -23.198.128.0/20 20940 -23.198.144.0/20 16625 -23.198.160.0/20 16625 -23.198.176.0/20 12956 -23.198.192.0/20 12956 -23.198.208.0/22 12956 -23.198.212.0/23 12956 -23.198.214.0/23 26769 -23.198.216.0/22 26769 -23.198.220.0/22 16625 -23.198.224.0/19 26769 -23.199.0.0/19 16625 -23.199.32.0/23 16625 -23.199.34.0/24 20940 -23.199.35.0/24 35994 -23.199.36.0/22 16625 -23.199.40.0/22 7470 -23.199.46.0/23 16625 -23.199.48.0/22 20940 -23.199.56.0/23 20940 -23.199.59.0/24 20940 -23.199.60.0/24 35994 -23.199.61.0/24 24319 -23.199.62.0/23 20940 -23.199.64.0/22 16625 -23.199.68.0/24 7545 -23.199.69.0/24 20940 -23.199.71.0/24 20940 -23.199.72.0/21 16625 -23.199.80.0/21 16625 -23.199.88.0/22 8359 -23.199.92.0/22 55644 -23.199.96.0/19 16625 -23.199.128.0/18 16625 -23.199.192.0/19 16625 -23.199.224.0/22 20940 -23.199.228.0/22 16625 -23.199.232.0/22 16625 -23.199.236.0/22 55644 -23.199.240.0/21 16625 -23.200.0.0/22 20940 -23.200.12.0/22 16625 -23.200.16.0/20 16625 -23.200.32.0/20 16625 -23.200.48.0/22 55836 -23.200.54.0/23 16625 -23.200.56.0/21 16625 -23.200.64.0/21 16625 -23.200.72.0/22 20940 -23.200.76.0/23 35994 -23.200.78.0/24 35994 -23.200.79.0/24 20940 -23.200.82.0/23 4788 -23.200.84.0/24 20940 -23.200.85.0/24 7473 -23.200.86.0/23 20940 -23.200.88.0/23 16625 -23.200.90.0/23 45629 -23.200.92.0/24 35994 -23.200.93.0/24 20940 -23.200.94.0/23 20940 -23.200.96.0/20 20940 -23.200.112.0/20 16625 -23.200.128.0/22 14638 -23.200.132.0/22 16625 -23.200.136.0/22 38040 -23.200.140.0/22 20940 -23.200.144.0/20 20940 -23.200.176.0/20 23947 -23.200.192.0/20 2860 -23.200.212.0/22 16625 -23.200.216.0/24 55836 -23.200.217.0/24 24319 -23.200.228.0/22 16625 -23.200.232.0/22 16625 -23.200.236.0/24 20940 -23.200.237.0/24 35994 -23.200.238.0/23 9498 -23.200.240.0/20 16625 -23.201.0.0/20 16625 -23.201.16.0/22 16625 -23.201.20.0/23 35994 -23.201.22.0/23 20940 -23.201.24.0/22 16625 -23.201.28.0/22 20940 -23.201.32.0/19 16625 -23.201.64.0/19 16625 -23.201.96.0/24 24319 -23.201.97.0/24 3257 -23.201.98.0/23 21342 -23.201.100.0/23 21342 -23.201.103.0/24 20940 -23.201.104.0/23 9605 -23.201.107.0/24 20940 -23.201.108.0/22 20940 -23.201.112.0/20 9605 -23.201.128.0/20 9605 -23.201.144.0/22 9605 -23.201.148.0/22 16625 -23.201.152.0/22 20940 -23.201.156.0/22 4788 -23.201.160.0/19 16625 -23.201.192.0/20 20940 -23.201.208.0/22 5432 -23.201.212.0/22 20940 -23.201.216.0/22 20940 -23.201.220.0/22 9498 -23.201.224.0/19 16625 -23.202.0.0/19 61580 -23.202.32.0/22 16625 -23.202.36.0/23 33905 -23.202.38.0/23 16625 -23.202.40.0/22 16625 -23.202.45.0/24 34164 -23.202.46.0/23 16625 -23.202.52.0/22 16625 -23.202.64.0/19 16625 -23.202.96.0/20 16625 -23.202.112.0/22 16625 -23.202.116.0/22 1273 -23.202.120.0/23 1273 -23.202.122.0/23 9924 -23.202.124.0/22 9924 -23.202.128.0/20 1273 -23.202.160.0/22 20940 -23.202.164.0/22 16625 -23.202.168.0/21 16625 -23.202.176.0/20 55410 -23.202.192.0/19 33491 -23.202.224.0/22 12956 -23.202.228.0/24 35994 -23.202.229.0/24 20940 -23.202.230.0/23 20940 -23.202.232.0/22 16625 -23.202.236.0/22 2914 -23.202.240.0/20 16625 -23.203.0.0/20 16625 -23.203.16.0/20 2914 -23.203.32.0/22 55644 -23.203.36.0/22 38266 -23.203.40.0/22 16625 -23.203.44.0/22 20940 -23.203.48.0/23 2914 -23.203.50.0/23 20940 -23.203.52.0/23 3257 -23.203.54.0/23 35994 -23.203.56.0/22 16625 -23.203.60.0/23 16625 -23.203.62.0/23 20940 -23.203.64.0/19 16625 -23.203.100.0/22 3257 -23.203.104.0/21 16625 -23.203.112.0/20 3257 -23.203.128.0/20 3257 -23.203.144.0/20 20940 -23.203.160.0/21 16625 -23.203.173.0/24 35994 -23.203.174.0/23 20940 -23.203.176.0/20 16625 -23.203.192.0/19 16625 -23.203.224.0/20 16625 -23.203.240.0/21 16625 -23.203.248.0/21 20940 -23.204.0.0/18 16625 -23.204.64.0/20 20940 -23.204.80.0/23 20940 -23.204.82.0/23 25019 -23.204.84.0/22 25019 -23.204.88.0/22 35819 -23.204.92.0/23 35819 -23.204.94.0/24 35994 -23.204.95.0/24 20940 -23.204.96.0/22 20940 -23.204.100.0/23 16625 -23.204.102.0/24 52376 -23.204.103.0/24 33650 -23.204.104.0/21 20940 -23.204.112.0/23 20940 -23.204.114.0/23 16625 -23.204.116.0/22 20940 -23.204.120.0/23 55644 -23.204.122.0/23 20940 -23.204.124.0/22 20940 -23.204.128.0/22 16625 -23.204.132.0/23 55644 -23.204.134.0/23 9498 -23.204.136.0/23 20485 -23.204.138.0/23 20940 -23.204.140.0/22 20940 -23.204.145.0/24 20940 -23.204.146.0/23 20940 -23.204.148.0/22 16625 -23.204.152.0/22 33287 -23.204.156.0/22 20940 -23.204.160.0/19 16625 -23.204.192.0/19 16625 -23.204.224.0/20 20940 -23.204.242.0/23 16625 -23.204.244.0/22 16625 -23.204.248.0/21 16625 -23.205.0.0/19 20940 -23.205.32.0/21 20940 -23.205.40.0/22 9498 -23.205.44.0/23 35994 -23.205.46.0/23 24319 -23.205.48.0/20 20940 -23.205.64.0/19 20940 -23.205.96.0/20 20940 -23.205.112.0/24 24319 -23.205.113.0/24 20940 -23.205.114.0/23 20940 -23.205.116.0/23 20940 -23.205.118.0/24 9498 -23.205.119.0/24 20940 -23.205.120.0/24 33662 -23.205.121.0/24 35994 -23.205.122.0/24 9534 -23.205.123.0/24 20940 -23.205.124.0/23 6057 -23.205.126.0/24 35994 -23.205.127.0/24 20940 -23.205.128.0/20 20940 -23.205.144.0/22 6400 -23.205.148.0/22 32098 -23.205.152.0/23 16625 -23.205.154.0/23 20940 -23.205.156.0/22 16625 -23.205.160.0/21 20940 -23.205.170.0/24 20940 -23.205.172.0/23 20940 -23.205.175.0/24 20940 -23.205.176.0/20 16625 -23.205.192.0/20 16625 -23.205.208.0/22 33659 -23.205.212.0/22 16625 -23.205.216.0/22 20940 -23.205.220.0/23 20940 -23.205.222.0/24 20940 -23.205.223.0/24 55644 -23.205.224.0/19 16625 -23.206.0.0/19 16625 -23.206.32.0/20 16625 -23.206.48.0/20 18734 -23.206.64.0/20 18734 -23.206.80.0/20 16625 -23.206.96.0/20 16625 -23.206.112.0/22 16625 -23.206.116.0/23 16625 -23.206.118.0/23 20940 -23.206.120.0/22 33490 -23.206.124.0/22 2914 -23.206.128.0/19 16625 -23.206.160.0/20 2914 -23.206.176.0/21 16625 -23.206.184.0/23 16625 -23.206.186.0/24 32787 -23.206.187.0/24 20940 -23.206.188.0/24 20940 -23.206.189.0/24 9498 -23.206.190.0/23 16625 -23.206.192.0/23 2914 -23.206.194.0/23 20940 -23.206.196.0/22 16625 -23.206.200.0/23 20940 -23.206.202.0/23 9498 -23.206.204.0/22 9498 -23.206.208.0/20 16625 -23.206.224.0/24 7545 -23.206.225.0/24 20940 -23.206.229.0/24 20940 -23.206.232.0/22 16625 -23.206.236.0/23 16625 -23.206.238.0/24 20940 -23.206.239.0/24 24319 -23.206.240.0/23 24319 -23.206.242.0/23 20940 -23.206.244.0/22 16625 -23.206.248.0/22 16625 -23.206.252.0/22 20940 -23.207.0.0/18 16625 -23.207.64.0/19 8966 -23.207.96.0/19 20940 -23.207.128.0/19 9498 -23.207.160.0/23 35994 -23.207.162.0/23 20940 -23.207.164.0/22 20940 -23.207.168.0/24 34164 -23.207.169.0/24 35994 -23.207.170.0/23 35994 -23.207.176.0/20 20940 -23.207.192.0/22 16625 -23.207.196.0/23 35994 -23.207.198.0/23 20940 -23.207.200.0/24 24319 -23.207.202.0/24 20940 -23.207.204.0/22 33662 -23.207.240.0/20 33662 -23.208.0.0/20 33662 -23.208.16.0/23 33662 -23.208.18.0/23 35994 -23.208.20.0/22 20940 -23.208.24.0/22 20940 -23.208.28.0/23 20940 -23.208.30.0/24 24319 -23.208.31.0/24 327952 -23.208.32.0/19 16625 -23.208.64.0/22 16625 -23.208.68.0/22 20940 -23.208.72.0/22 20940 -23.208.76.0/22 16625 -23.208.80.0/20 20940 -23.208.96.0/19 20940 -23.208.128.0/21 16625 -23.208.136.0/22 20940 -23.208.144.0/21 16625 -23.208.152.0/23 35994 -23.208.154.0/23 20940 -23.208.156.0/22 16625 -23.208.160.0/22 3257 -23.208.164.0/24 3257 -23.208.165.0/24 35994 -23.208.166.0/23 20940 -23.208.168.0/22 16625 -23.208.172.0/22 8966 -23.208.176.0/20 6057 -23.208.192.0/20 6057 -23.208.208.0/22 6057 -23.208.212.0/22 8966 -23.208.220.0/22 20940 -23.208.224.0/19 8966 -23.209.0.0/19 16625 -23.209.32.0/22 16625 -23.209.36.0/22 20940 -23.209.40.0/24 20940 -23.209.41.0/24 35994 -23.209.43.0/24 20940 -23.209.44.0/22 9605 -23.209.48.0/20 16625 -23.209.64.0/22 20940 -23.209.68.0/22 16625 -23.209.73.0/24 20940 -23.209.74.0/23 16625 -23.209.76.0/22 16625 -23.209.80.0/23 16625 -23.209.82.0/23 6147 -23.209.84.0/22 16625 -23.209.88.0/22 6147 -23.209.92.0/24 6147 -23.209.93.0/24 20940 -23.209.94.0/24 35994 -23.209.95.0/24 20940 -23.209.96.0/22 14522 -23.209.102.0/23 20940 -23.209.104.0/24 34164 -23.209.105.0/24 12222 -23.209.106.0/23 8966 -23.209.108.0/22 12252 -23.209.112.0/20 16625 -23.209.128.0/19 16625 -23.209.160.0/20 16625 -23.209.176.0/22 16625 -23.209.180.0/24 20940 -23.209.181.0/24 35994 -23.209.182.0/24 6147 -23.209.183.0/24 20940 -23.209.184.0/22 16625 -23.209.188.0/23 9498 -23.209.190.0/24 33491 -23.209.191.0/24 20940 -23.209.192.0/19 23693 -23.209.224.0/19 16625 -23.210.0.0/22 16625 -23.210.4.0/24 35993 -23.210.5.0/24 24319 -23.210.6.0/23 20940 -23.210.8.0/22 16625 -23.210.12.0/23 3257 -23.210.15.0/24 35994 -23.210.16.0/22 16625 -23.210.20.0/22 7679 -23.210.24.0/24 20940 -23.210.25.0/24 35994 -23.210.26.0/23 16625 -23.210.28.0/22 20940 -23.210.32.0/23 20940 -23.210.34.0/23 35994 -23.210.36.0/22 16625 -23.210.40.0/21 16625 -23.210.48.0/20 20940 -23.210.72.0/24 24319 -23.210.73.0/24 20940 -23.210.74.0/23 20940 -23.210.76.0/22 16625 -23.210.80.0/22 20940 -23.210.84.0/22 16625 -23.210.88.0/22 35994 -23.210.92.0/23 20940 -23.210.94.0/23 9534 -23.210.96.0/19 16625 -23.210.128.0/19 16625 -23.210.160.0/19 7843 -23.210.192.0/23 20940 -23.210.194.0/23 20485 -23.210.196.0/22 20940 -23.210.200.0/22 20940 -23.210.204.0/22 16625 -23.210.208.0/24 20940 -23.210.209.0/24 35994 -23.210.210.0/23 20940 -23.210.212.0/23 35994 -23.210.214.0/23 20940 -23.210.216.0/24 33650 -23.210.217.0/24 35994 -23.210.218.0/23 20940 -23.210.220.0/22 16625 -23.210.224.0/20 16625 -23.210.240.0/22 16625 -23.210.244.0/23 16625 -23.210.246.0/24 24319 -23.210.247.0/24 20940 -23.210.248.0/21 16625 -23.211.0.0/21 16625 -23.211.8.0/22 16625 -23.211.12.0/23 35994 -23.211.14.0/23 20940 -23.211.16.0/20 20940 -23.211.32.0/20 20940 -23.211.48.0/21 20940 -23.211.56.0/22 20940 -23.211.61.0/24 21342 -23.211.62.0/23 16625 -23.211.64.0/19 20940 -23.211.96.0/22 16625 -23.211.104.0/24 18680 -23.211.106.0/23 35994 -23.211.108.0/24 20940 -23.211.112.0/24 35994 -23.211.113.0/24 20940 -23.211.116.0/22 20940 -23.211.120.0/22 20940 -23.211.124.0/23 33657 -23.211.126.0/23 8151 -23.211.128.0/22 16625 -23.211.132.0/23 21342 -23.211.134.0/24 24319 -23.211.135.0/24 9498 -23.211.136.0/24 20940 -23.211.138.0/24 35994 -23.211.142.0/23 9498 -23.211.144.0/20 16625 -23.211.160.0/19 16625 -23.211.192.0/19 9498 -23.211.224.0/22 9498 -23.211.228.0/22 16625 -23.211.232.0/21 16625 -23.211.240.0/21 20940 -23.211.248.0/22 20940 -23.211.252.0/24 17511 -23.211.253.0/24 20940 -23.211.254.0/23 20940 -23.212.0.0/22 20940 -23.212.4.0/24 35994 -23.212.5.0/24 32098 -23.212.6.0/23 15802 -23.212.12.0/22 16625 -23.212.16.0/20 16625 -23.212.32.0/20 16625 -23.212.49.0/24 20940 -23.212.50.0/24 20940 -23.212.51.0/24 35994 -23.212.54.0/24 20940 -23.212.55.0/24 4788 -23.212.56.0/24 20940 -23.212.58.0/24 9498 -23.212.59.0/24 3257 -23.212.60.0/24 9924 -23.212.61.0/24 20940 -23.212.62.0/23 20940 -23.212.64.0/19 16625 -23.212.99.0/24 20940 -23.212.100.0/24 35994 -23.212.101.0/24 20940 -23.212.102.0/23 4761 -23.212.104.0/22 4761 -23.212.108.0/23 20940 -23.212.110.0/23 3257 -23.212.112.0/20 4761 -23.212.128.0/20 4761 -23.212.144.0/20 3257 -23.212.160.0/20 3257 -23.212.176.0/22 3257 -23.212.180.0/22 33650 -23.212.184.0/24 35994 -23.212.186.0/23 20940 -23.212.188.0/24 20940 -23.212.190.0/24 20940 -23.212.192.0/19 16625 -23.212.224.0/22 16625 -23.212.228.0/22 20940 -23.212.232.0/22 20940 -23.212.236.0/24 20940 -23.212.237.0/24 35994 -23.212.238.0/24 20940 -23.212.239.0/24 18717 -23.213.2.0/24 20940 -23.213.16.0/20 2914 -23.213.32.0/20 2914 -23.213.48.0/22 2914 -23.213.52.0/23 2914 -23.213.54.0/23 20940 -23.213.56.0/22 16625 -23.213.60.0/23 20940 -23.213.62.0/24 20940 -23.213.63.0/24 35994 -23.213.64.0/19 55836 -23.213.96.0/19 2914 -23.213.128.0/24 20940 -23.213.129.0/24 35994 -23.213.130.0/23 16625 -23.213.132.0/23 20940 -23.213.136.0/23 20940 -23.213.139.0/24 20940 -23.213.140.0/22 16625 -23.213.144.0/20 16625 -23.213.172.0/23 35994 -23.213.174.0/24 35994 -23.213.176.0/21 16625 -23.213.184.0/24 35994 -23.213.185.0/24 20940 -23.213.186.0/23 16625 -23.213.188.0/22 812 -23.213.192.0/21 20940 -23.213.201.0/24 20940 -23.213.202.0/23 16625 -23.213.204.0/22 20940 -23.213.208.0/20 20940 -23.213.224.0/19 5432 -23.214.0.0/18 16625 -23.214.64.0/21 16625 -23.214.72.0/23 16625 -23.214.76.0/22 20940 -23.214.80.0/23 16625 -23.214.82.0/24 24319 -23.214.83.0/24 35994 -23.214.84.0/23 20940 -23.214.86.0/24 35994 -23.214.87.0/24 20940 -23.214.88.0/22 4739 -23.214.92.0/22 16625 -23.214.96.0/24 35994 -23.214.97.0/24 20940 -23.214.98.0/23 35994 -23.214.100.0/22 20940 -23.214.104.0/22 20940 -23.214.108.0/22 16625 -23.214.112.0/24 20940 -23.214.113.0/24 24319 -23.214.115.0/24 20940 -23.214.116.0/22 16625 -23.214.120.0/21 16625 -23.214.128.0/18 16625 -23.214.192.0/22 1299 -23.214.196.0/23 20940 -23.214.199.0/24 20940 -23.214.200.0/21 16625 -23.214.208.0/20 16625 -23.215.4.0/23 16625 -23.215.8.0/23 20940 -23.215.10.0/24 20940 -23.215.12.0/24 20940 -23.215.13.0/24 35994 -23.215.14.0/24 24319 -23.215.15.0/24 20940 -23.215.16.0/20 20940 -23.215.32.0/20 20940 -23.215.48.0/22 20940 -23.215.52.0/23 20940 -23.215.54.0/24 20940 -23.215.55.0/24 35994 -23.215.56.0/22 16625 -23.215.60.0/23 20940 -23.215.63.0/24 24319 -23.215.64.0/19 16625 -23.215.96.0/24 20940 -23.215.98.0/23 20940 -23.215.100.0/22 20940 -23.215.104.0/23 20940 -23.215.106.0/24 35994 -23.215.107.0/24 24319 -23.215.108.0/22 35994 -23.215.112.0/20 16625 -23.215.130.0/23 20940 -23.215.132.0/23 20940 -23.215.134.0/24 35994 -23.215.135.0/24 20940 -23.215.136.0/22 16625 -23.215.140.0/23 16625 -23.215.142.0/23 20940 -23.215.144.0/20 16625 -23.215.160.0/20 16625 -23.215.179.0/24 35994 -23.215.208.0/22 20940 -23.215.212.0/23 20940 -23.215.214.0/24 20940 -23.215.215.0/24 9498 -23.215.216.0/21 16625 -23.215.224.0/19 16625 -23.216.0.0/24 20940 -23.216.1.0/24 9498 -23.216.2.0/23 9498 -23.216.4.0/22 20940 -23.216.8.0/23 16625 -23.216.10.0/23 20940 -23.216.12.0/24 20940 -23.216.13.0/24 35994 -23.216.14.0/23 4230 -23.216.16.0/20 6147 -23.216.32.0/20 6147 -23.216.48.0/22 6147 -23.216.52.0/23 21342 -23.216.54.0/24 20940 -23.216.55.0/24 33662 -23.216.56.0/22 16625 -23.216.62.0/23 20940 -23.216.80.0/20 33652 -23.216.96.0/19 16625 -23.216.128.0/19 7016 -23.216.160.0/19 4230 -23.216.192.0/22 4230 -23.216.196.0/22 16625 -23.216.200.0/21 16625 -23.216.208.0/20 16625 -23.216.224.0/19 16625 -23.217.0.0/22 35994 -23.217.4.0/22 16625 -23.217.8.0/22 16625 -23.217.12.0/22 33650 -23.217.16.0/20 16625 -23.217.32.0/20 16625 -23.217.48.0/22 16625 -23.217.52.0/23 20940 -23.217.54.0/23 20485 -23.217.56.0/23 16625 -23.217.58.0/23 4230 -23.217.60.0/22 35994 -23.217.64.0/19 8151 -23.217.96.0/23 16625 -23.217.98.0/24 35994 -23.217.99.0/24 20940 -23.217.100.0/23 20940 -23.217.108.0/22 3303 -23.217.112.0/22 16625 -23.217.116.0/23 20940 -23.217.124.0/22 16625 -23.217.128.0/23 20940 -23.217.130.0/23 20485 -23.217.132.0/22 20940 -23.217.136.0/22 20940 -23.217.141.0/24 35994 -23.217.142.0/23 16625 -23.217.144.0/20 16625 -23.217.160.0/20 16625 -23.217.176.0/23 16625 -23.217.178.0/23 20940 -23.217.180.0/22 20940 -23.217.184.0/21 20940 -23.217.192.0/22 8151 -23.217.196.0/22 16625 -23.217.200.0/23 20940 -23.217.202.0/23 35994 -23.217.206.0/23 20940 -23.217.208.0/21 20940 -23.217.216.0/24 2914 -23.217.217.0/24 20940 -23.217.218.0/23 20940 -23.217.220.0/24 20940 -23.217.224.0/19 20940 -23.218.0.0/19 16625 -23.218.32.0/21 16625 -23.218.40.0/23 16625 -23.218.42.0/23 8966 -23.218.44.0/22 16625 -23.218.48.0/20 16625 -23.218.64.0/20 16625 -23.218.80.0/23 20940 -23.218.82.0/24 35994 -23.218.83.0/24 20940 -23.218.84.0/22 17072 -23.218.88.0/22 20940 -23.218.94.0/23 20940 -23.218.96.0/21 16625 -23.218.104.0/23 35994 -23.218.106.0/24 35994 -23.218.107.0/24 20940 -23.218.108.0/22 16625 -23.218.112.0/20 16625 -23.218.128.0/20 16625 -23.218.144.0/22 16625 -23.218.148.0/23 16625 -23.218.156.0/23 20940 -23.218.158.0/23 6453 -23.218.192.0/19 6453 -23.218.224.0/22 6453 -23.218.228.0/22 24835 -23.218.232.0/23 24835 -23.218.234.0/23 16625 -23.218.236.0/22 4230 -23.218.240.0/20 24835 -23.219.0.0/20 24835 -23.219.16.0/20 16625 -23.219.32.0/22 16625 -23.219.36.0/24 20940 -23.219.37.0/24 35994 -23.219.38.0/23 20940 -23.219.44.0/22 12956 -23.219.48.0/20 13489 -23.219.64.0/20 4230 -23.219.80.0/23 20940 -23.219.82.0/24 20940 -23.219.83.0/24 35994 -23.219.84.0/22 16625 -23.219.88.0/24 20940 -23.219.89.0/24 35994 -23.219.90.0/24 35994 -23.219.91.0/24 20940 -23.219.92.0/23 20940 -23.219.94.0/23 16625 -23.219.96.0/19 20214 -23.219.128.0/23 16625 -23.219.130.0/24 20485 -23.219.131.0/24 35994 -23.219.132.0/22 16625 -23.219.136.0/23 16625 -23.219.138.0/23 20940 -23.219.140.0/22 20940 -23.219.144.0/22 27947 -23.219.148.0/22 22047 -23.219.152.0/22 28032 -23.219.156.0/24 20940 -23.219.157.0/24 35994 -23.219.159.0/24 20940 -23.219.161.0/24 33287 -23.219.162.0/23 20940 -23.219.164.0/23 16625 -23.219.166.0/23 32098 -23.219.168.0/23 20940 -23.219.170.0/23 26769 -23.219.172.0/22 20940 -23.219.176.0/24 20940 -23.219.178.0/23 16625 -23.219.180.0/22 20940 -23.219.184.0/24 24203 -23.219.185.0/24 34164 -23.219.186.0/23 23693 -23.219.188.0/22 23693 -23.219.192.0/20 4230 -23.219.208.0/21 16625 -23.219.216.0/22 16625 -23.219.220.0/22 20940 -23.219.224.0/19 16625 -23.220.0.0/19 18734 -23.220.32.0/19 20940 -23.220.64.0/20 13489 -23.220.80.0/21 16625 -23.220.88.0/22 16625 -23.220.92.0/22 852 -23.220.96.0/22 20940 -23.220.100.0/23 20940 -23.220.102.0/23 16625 -23.220.104.0/22 16625 -23.220.108.0/22 20940 -23.220.112.0/20 16625 -23.220.128.0/20 16625 -23.220.144.0/23 20940 -23.220.148.0/23 20940 -23.220.150.0/23 16625 -23.220.152.0/21 20940 -23.220.192.0/22 20940 -23.220.196.0/22 16625 -23.220.200.0/22 20940 -23.220.204.0/23 9299 -23.220.206.0/23 16625 -23.220.208.0/20 16625 -23.220.224.0/19 16625 -23.221.0.0/20 16625 -23.221.16.0/22 16625 -23.221.20.0/23 16625 -23.221.24.0/24 35204 -23.221.25.0/24 35994 -23.221.26.0/23 12400 -23.221.28.0/22 12400 -23.221.32.0/20 16625 -23.221.48.0/21 16625 -23.221.60.0/23 24319 -23.221.64.0/22 16625 -23.221.68.0/23 16625 -23.221.70.0/23 7713 -23.221.72.0/22 20940 -23.221.76.0/22 7713 -23.221.80.0/20 45430 -23.221.96.0/19 16625 -23.221.128.0/19 12400 -23.221.160.0/19 34984 -23.221.192.0/22 34984 -23.221.196.0/23 34984 -23.221.198.0/23 20940 -23.221.200.0/22 16625 -23.221.204.0/22 8612 -23.221.208.0/23 35994 -23.221.210.0/23 16625 -23.221.221.0/24 20940 -23.221.224.0/22 20940 -23.221.228.0/22 35994 -23.221.232.0/23 35994 -23.221.236.0/24 20940 -23.221.237.0/24 35994 -23.221.238.0/24 9498 -23.221.239.0/24 20940 -23.221.240.0/20 8612 -23.222.0.0/20 8612 -23.222.16.0/23 8612 -23.222.18.0/23 16625 -23.222.20.0/22 16625 -23.222.24.0/22 16625 -23.222.28.0/23 20940 -23.222.30.0/23 16625 -23.222.32.0/19 16625 -23.222.64.0/21 16625 -23.222.72.0/22 16625 -23.222.80.0/20 16625 -23.222.96.0/19 16625 -23.222.128.0/20 16625 -23.222.160.0/19 16625 -23.222.192.0/19 16625 -23.222.224.0/20 2860 -23.222.240.0/23 20940 -23.222.242.0/24 20940 -23.222.243.0/24 35994 -23.222.244.0/22 16625 -23.222.248.0/23 20940 -23.222.250.0/24 35994 -23.222.251.0/24 20940 -23.222.252.0/22 20940 -23.223.0.0/20 16625 -23.223.48.0/22 9443 -23.223.52.0/22 20940 -23.223.56.0/22 20940 -23.223.60.0/24 20940 -23.223.62.0/23 20940 -23.223.64.0/19 16625 -23.223.96.0/20 16625 -23.223.112.0/20 20940 -23.223.128.0/20 20940 -23.223.144.0/21 20940 -23.223.152.0/22 18809 -23.223.156.0/22 20940 -23.223.192.0/21 20940 -23.223.200.0/22 20940 -23.223.204.0/22 19037 -23.223.208.0/20 16625 -23.223.224.0/20 16625 -23.224.0.0/16 40065 -23.225.0.0/18 40065 -23.225.64.0/20 40065 -23.225.80.0/21 40065 -23.225.88.0/22 40065 -23.225.92.0/23 40065 -23.225.94.0/24 33330 -23.225.95.0/24 40065 -23.225.96.0/19 40065 -23.225.128.0/21 132839 -23.225.136.0/21 40065 -23.225.144.0/20 40065 -23.225.160.0/19 40065 -23.225.192.0/18 40065 -23.226.0.0/23 23881 -23.226.2.0/24 23881 -23.226.5.0/24 23881 -23.226.6.0/23 23881 -23.226.11.0/24 23881 -23.226.13.0/24 23881 -23.226.14.0/23 23881 -23.226.16.0/20 393398 -23.226.32.0/22 29802 -23.226.36.0/22 17941 -23.226.40.0/24 396319 -23.226.41.0/24 29802 -23.226.42.0/23 29802 -23.226.44.0/22 4686 -23.226.48.0/22 136800 -23.226.52.0/23 136800 -23.226.54.0/24 26484 -23.226.55.0/24 136800 -23.226.56.0/21 136800 -23.226.64.0/20 53755 -23.226.80.0/20 62727 -23.226.96.0/20 13490 -23.226.112.0/23 203618 -23.226.118.0/24 396418 -23.226.120.0/21 27257 -23.226.128.0/20 8100 -23.226.160.0/20 3801 -23.226.176.0/22 40065 -23.226.180.0/24 40065 -23.226.181.0/24 138618 -23.226.182.0/23 40065 -23.226.184.0/22 40065 -23.226.188.0/23 40065 -23.226.190.0/24 40065 -23.226.191.0/24 138618 -23.226.192.0/20 14640 -23.226.208.0/22 396319 -23.226.212.0/23 396319 -23.226.214.0/24 19194 -23.226.215.0/24 29802 -23.226.217.0/24 19194 -23.226.218.0/23 396319 -23.226.220.0/23 19194 -23.226.222.0/24 19194 -23.226.223.0/24 396319 -23.226.224.0/20 3842 -23.227.0.0/21 62650 -23.227.8.0/22 62650 -23.227.13.0/24 62650 -23.227.14.0/23 62650 -23.227.28.0/24 62650 -23.227.32.0/22 62679 -23.227.36.0/23 62679 -23.227.38.0/23 13335 -23.227.40.0/21 62679 -23.227.48.0/21 62679 -23.227.56.0/22 62679 -23.227.60.0/23 62679 -23.227.62.0/24 62679 -23.227.63.0/24 13335 -23.227.64.0/19 393398 -23.227.96.0/19 395111 -23.227.128.0/19 55081 -23.227.160.0/22 54540 -23.227.164.0/23 54540 -23.227.166.0/24 54540 -23.227.167.0/24 394727 -23.227.168.0/23 29802 -23.227.170.0/23 54540 -23.227.172.0/23 54540 -23.227.174.0/24 29802 -23.227.175.0/24 54540 -23.227.176.0/24 54540 -23.227.177.0/24 29802 -23.227.178.0/23 29802 -23.227.180.0/22 54540 -23.227.184.0/23 54540 -23.227.186.0/24 54540 -23.227.187.0/24 29802 -23.227.188.0/24 394727 -23.227.189.0/24 54540 -23.227.190.0/24 29802 -23.227.191.0/24 54540 -23.227.192.0/21 35017 -23.227.200.0/22 35017 -23.227.204.0/23 35017 -23.227.206.0/24 35017 -23.227.207.0/24 29802 -23.228.64.0/18 46573 -23.228.128.0/18 16591 -23.228.192.0/19 40676 -23.228.224.0/21 40676 -23.228.232.0/22 40676 -23.228.236.0/23 40676 -23.228.238.0/24 35913 -23.228.239.0/24 40676 -23.228.240.0/20 40676 -23.229.0.0/19 55286 -23.229.32.0/21 55286 -23.229.40.0/23 55286 -23.229.42.0/24 36352 -23.229.43.0/24 55286 -23.229.44.0/22 55286 -23.229.48.0/20 55286 -23.229.64.0/19 55286 -23.229.96.0/19 36352 -23.229.128.0/17 26496 -23.230.0.0/16 18779 -23.231.0.0/21 62904 -23.231.8.0/22 62904 -23.231.12.0/22 49532 -23.231.16.0/22 49532 -23.231.20.0/22 62904 -23.231.24.0/21 62904 -23.231.32.0/20 62904 -23.231.48.0/22 62904 -23.231.54.0/23 62904 -23.231.60.0/22 62904 -23.231.64.0/23 62904 -23.231.68.0/22 62904 -23.231.72.0/21 62904 -23.231.80.0/20 62904 -23.231.96.0/19 62904 -23.231.128.0/17 20248 -23.232.0.0/17 36327 -23.232.128.0/17 2514 -23.233.0.0/17 5645 -23.233.128.0/17 5769 -23.234.0.0/19 26484 -23.234.32.0/21 26484 -23.234.40.0/22 134548 -23.234.44.0/23 134548 -23.234.46.0/24 134548 -23.234.48.0/21 26484 -23.234.60.0/22 26484 -23.234.64.0/18 11878 -23.234.128.0/18 393398 -23.234.192.0/23 35916 -23.234.194.0/24 35916 -23.234.195.0/24 395681 -23.234.196.0/22 35916 -23.234.200.0/21 35916 -23.234.208.0/20 35916 -23.234.224.0/19 35916 -23.235.0.0/20 14828 -23.235.16.0/20 26724 -23.235.32.0/21 54113 -23.235.40.0/24 54113 -23.235.42.0/23 54113 -23.235.44.0/22 54113 -23.235.48.0/20 64252 -23.235.64.0/20 18988 -23.235.80.0/22 23442 -23.235.84.0/23 23442 -23.235.92.0/23 29742 -23.235.94.0/24 29742 -23.235.96.0/20 7782 -23.235.112.0/20 26058 -23.235.128.0/19 132839 -23.235.160.0/21 136800 -23.235.168.0/23 136800 -23.235.170.0/24 26484 -23.235.171.0/24 136800 -23.235.172.0/22 136800 -23.235.176.0/20 136800 -23.235.192.0/20 54641 -23.235.208.0/20 22611 -23.235.224.0/21 19437 -23.235.232.0/21 60558 -23.235.240.0/22 20454 -23.235.244.0/23 20454 -23.235.246.0/24 20454 -23.235.247.0/24 19437 -23.235.248.0/24 19437 -23.235.249.0/24 20454 -23.235.250.0/23 19437 -23.235.252.0/22 19437 -23.236.0.0/20 14813 -23.236.16.0/20 20329 -23.236.32.0/21 22892 -23.236.40.0/22 22892 -23.236.44.0/22 395378 -23.236.48.0/20 15169 -23.236.64.0/24 134196 -23.236.65.0/24 21859 -23.236.66.0/23 209484 -23.236.68.0/23 209484 -23.236.70.0/24 21859 -23.236.72.0/24 35916 -23.236.73.0/24 134835 -23.236.74.0/23 134835 -23.236.76.0/23 134835 -23.236.78.0/23 35916 -23.236.80.0/20 15054 -23.236.96.0/23 21859 -23.236.99.0/24 21859 -23.236.100.0/22 21859 -23.236.104.0/21 21859 -23.236.112.0/21 21859 -23.236.120.0/22 21859 -23.236.124.0/23 21859 -23.236.126.0/24 135377 -23.236.127.0/24 21859 -23.236.128.0/24 55286 -23.236.129.0/24 36352 -23.236.130.0/23 55286 -23.236.132.0/22 55286 -23.236.136.0/21 55286 -23.236.144.0/20 55286 -23.236.160.0/20 55286 -23.236.176.0/22 55286 -23.236.180.0/22 36352 -23.236.184.0/21 55286 -23.236.192.0/24 55286 -23.236.193.0/24 36352 -23.236.194.0/24 36352 -23.236.195.0/24 55286 -23.236.196.0/24 36352 -23.236.197.0/24 55286 -23.236.198.0/23 55286 -23.236.200.0/21 55286 -23.236.208.0/21 55286 -23.236.216.0/24 36352 -23.236.217.0/24 55286 -23.236.218.0/23 55286 -23.236.220.0/22 55286 -23.236.224.0/20 55286 -23.236.240.0/20 36352 -23.237.0.0/17 174 -23.237.128.0/19 174 -23.237.160.0/20 174 -23.237.176.0/23 27630 -23.237.178.0/23 174 -23.237.180.0/22 174 -23.237.184.0/21 174 -23.237.192.0/19 174 -23.237.224.0/20 174 -23.237.240.0/22 174 -23.237.244.0/24 174 -23.237.245.0/24 27630 -23.237.246.0/23 174 -23.237.248.0/21 174 -23.238.0.0/17 54290 -23.238.128.0/18 40676 -23.238.192.0/24 40676 -23.238.193.0/24 35913 -23.238.194.0/23 40676 -23.238.196.0/22 40676 -23.238.200.0/21 40676 -23.238.208.0/20 40676 -23.238.224.0/19 40676 -23.239.0.0/19 63949 -23.239.32.0/20 22995 -23.239.48.0/22 22995 -23.239.64.0/19 19531 -23.239.96.0/19 53850 -23.239.160.0/21 19194 -23.239.168.0/22 396319 -23.239.173.0/24 29802 -23.239.174.0/23 29802 -23.239.176.0/21 396319 -23.239.184.0/22 396319 -23.239.188.0/22 17941 -23.239.192.0/20 30475 -23.239.208.0/22 30475 -23.239.212.0/23 30475 -23.239.214.0/24 47381 -23.239.215.0/24 30475 -23.239.216.0/21 30475 -23.239.224.0/23 21866 -23.239.227.0/24 21866 -23.240.0.0/14 20001 -23.244.0.0/15 18978 -23.246.0.0/18 2906 -23.246.64.0/18 12271 -23.246.128.0/23 54503 -23.246.130.0/24 54503 -23.246.144.0/23 54503 -23.246.160.0/23 54503 -23.246.176.0/23 54503 -23.246.178.0/24 54503 -23.246.190.0/24 54503 -23.246.192.0/18 36351 -23.247.0.0/17 46573 -23.248.0.0/17 7794 -23.248.128.0/19 7794 -23.248.160.0/23 4766 -23.248.162.0/23 135377 -23.248.164.0/22 21859 -23.248.168.0/22 21859 -23.248.172.0/23 21859 -23.248.174.0/23 135377 -23.248.176.0/21 21859 -23.248.184.0/23 135377 -23.248.186.0/23 21859 -23.248.188.0/22 21859 -23.248.192.0/22 136800 -23.248.196.0/23 136800 -23.248.198.0/24 26484 -23.248.199.0/24 136800 -23.248.200.0/23 136800 -23.248.202.0/24 40065 -23.248.203.0/24 136800 -23.248.204.0/24 40065 -23.248.205.0/24 136800 -23.248.206.0/24 136800 -23.248.207.0/24 40065 -23.248.208.0/23 136800 -23.248.210.0/23 40065 -23.248.212.0/24 40065 -23.248.213.0/24 136800 -23.248.214.0/24 136800 -23.248.215.0/24 40065 -23.248.216.0/23 136800 -23.248.218.0/24 136800 -23.248.219.0/24 40065 -23.248.220.0/24 40065 -23.248.221.0/24 136800 -23.248.222.0/24 136800 -23.248.223.0/24 40065 -23.248.224.0/24 136800 -23.248.225.0/24 40065 -23.248.226.0/24 136800 -23.248.227.0/24 26484 -23.248.228.0/24 136800 -23.248.229.0/24 40065 -23.248.230.0/23 40065 -23.248.232.0/24 136800 -23.248.233.0/24 40065 -23.248.234.0/24 136800 -23.248.235.0/24 40065 -23.248.236.0/23 136800 -23.248.238.0/24 40065 -23.248.239.0/24 136800 -23.248.240.0/24 136800 -23.248.241.0/24 40065 -23.248.242.0/24 136800 -23.248.243.0/24 40065 -23.248.244.0/22 40065 -23.248.248.0/22 136800 -23.248.252.0/23 136800 -23.248.254.0/23 40065 -23.249.1.0/24 55106 -23.249.8.0/22 19812 -23.249.12.0/22 396497 -23.249.16.0/24 134548 -23.249.17.0/24 18254 -23.249.18.0/24 134548 -23.249.19.0/24 21859 -23.249.20.0/23 21859 -23.249.22.0/23 18254 -23.249.24.0/21 21859 -23.249.32.0/20 12119 -23.249.64.0/20 395846 -23.249.80.0/20 18467 -23.249.96.0/20 32732 -23.249.112.0/20 21724 -23.249.128.0/21 62627 -23.249.136.0/24 23520 -23.249.137.0/24 62627 -23.249.138.0/23 62627 -23.249.140.0/23 62627 -23.249.143.0/24 27213 -23.249.160.0/24 64200 -23.249.161.0/24 36352 -23.249.162.0/23 36352 -23.249.164.0/23 36352 -23.249.167.0/24 36352 -23.249.168.0/23 36352 -23.249.170.0/24 36352 -23.249.172.0/24 9009 -23.249.174.0/23 36352 -23.249.176.0/21 26658 -23.249.184.0/22 26658 -23.249.188.0/22 22552 -23.249.192.0/22 12188 -23.249.196.0/24 12188 -23.249.200.0/22 36031 -23.249.204.0/24 36031 -23.249.205.0/24 12188 -23.249.208.0/23 16509 -23.249.210.0/23 8987 -23.249.212.0/23 8987 -23.249.214.0/24 8987 -23.249.216.0/23 14618 -23.249.220.0/24 16509 -23.249.224.0/23 33182 -23.249.226.0/24 8100 -23.249.228.0/22 396319 -23.249.232.0/21 57795 -23.249.240.0/20 8100 -23.250.0.0/18 55286 -23.250.64.0/21 55286 -23.250.72.0/22 55286 -23.250.76.0/24 55286 -23.250.77.0/24 36352 -23.250.78.0/23 55286 -23.250.80.0/22 55286 -23.250.84.0/23 55286 -23.250.86.0/24 55286 -23.250.87.0/24 36352 -23.250.88.0/23 55286 -23.250.90.0/24 55286 -23.250.91.0/24 36352 -23.250.92.0/22 55286 -23.250.96.0/22 55286 -23.250.100.0/24 55286 -23.250.101.0/24 36352 -23.250.102.0/23 55286 -23.250.104.0/21 55286 -23.250.112.0/20 36352 -23.250.128.0/17 393398 -23.251.0.0/20 11492 -23.251.16.0/21 11492 -23.251.24.0/22 11492 -23.251.28.0/23 11492 -23.251.30.0/24 11492 -23.251.32.0/21 62468 -23.251.40.0/23 62468 -23.251.42.0/24 137443 -23.251.43.0/24 62468 -23.251.44.0/22 62468 -23.251.48.0/20 62468 -23.251.64.0/19 26827 -23.251.96.0/20 21859 -23.251.112.0/23 21859 -23.251.114.0/24 21859 -23.251.115.0/24 3257 -23.251.116.0/22 21859 -23.251.120.0/23 21859 -23.251.122.0/24 4788 -23.251.123.0/24 21859 -23.251.124.0/22 21859 -23.251.128.0/19 15169 -23.251.160.0/19 36493 -23.251.192.0/19 14265 -23.252.0.0/24 16529 -23.252.2.0/24 16529 -23.252.16.0/20 12180 -23.252.32.0/20 174 -23.252.48.0/20 54858 -23.252.64.0/23 19257 -23.252.66.0/24 197328 -23.252.67.0/24 59447 -23.252.68.0/24 59447 -23.252.69.0/24 19257 -23.252.70.0/24 19257 -23.252.71.0/24 59447 -23.252.72.0/24 59447 -23.252.73.0/24 54103 -23.252.74.0/24 19257 -23.252.75.0/24 59447 -23.252.76.0/24 59447 -23.252.77.0/24 3257 -23.252.78.0/24 3257 -23.252.79.0/24 59447 -23.252.80.0/20 62814 -23.252.96.0/22 25820 -23.252.100.0/24 25820 -23.252.102.0/23 25820 -23.252.104.0/21 25820 -23.252.112.0/20 18450 -23.252.128.0/20 13351 -23.252.144.0/20 62886 -23.252.160.0/20 26484 -23.252.176.0/20 53848 -23.252.192.0/20 23089 -23.252.208.0/20 12056 -23.252.224.0/20 394232 -23.252.240.0/21 46261 -23.252.248.0/24 36352 -23.252.249.0/24 20454 -23.252.250.0/23 9009 -23.252.252.0/22 13332 -23.253.0.0/18 19994 -23.253.64.0/18 33070 -23.253.128.0/19 27357 -23.253.160.0/19 19994 -23.253.192.0/19 19994 -23.253.224.0/19 33070 -23.254.0.0/20 55286 -23.254.16.0/23 55286 -23.254.18.0/24 36352 -23.254.19.0/24 55286 -23.254.20.0/22 55286 -23.254.24.0/21 55286 -23.254.32.0/20 55286 -23.254.48.0/22 55286 -23.254.52.0/23 55286 -23.254.54.0/24 36352 -23.254.55.0/24 55286 -23.254.56.0/22 55286 -23.254.60.0/23 55286 -23.254.62.0/24 36352 -23.254.63.0/24 55286 -23.254.64.0/21 55286 -23.254.72.0/23 55286 -23.254.74.0/24 55286 -23.254.75.0/24 36352 -23.254.76.0/22 55286 -23.254.80.0/21 55286 -23.254.88.0/21 36352 -23.254.96.0/21 55286 -23.254.104.0/23 56030 -23.254.106.0/24 56030 -23.254.107.0/24 55286 -23.254.108.0/23 55286 -23.254.110.0/24 55286 -23.254.112.0/24 36352 -23.254.113.0/24 56030 -23.254.114.0/23 55286 -23.254.116.0/22 55286 -23.254.120.0/21 55286 -23.254.128.0/17 54290 -23.255.0.0/17 11878 -23.255.128.0/17 16591 -24.0.0.0/12 7922 -24.16.0.0/13 7922 -24.24.0.0/18 11351 -24.24.64.0/19 13343 -24.24.96.0/20 16787 -24.24.112.0/21 16787 -24.24.120.0/22 7843 -24.24.128.0/17 20001 -24.25.0.0/18 11426 -24.25.128.0/18 11351 -24.25.192.0/18 20001 -24.26.0.0/18 10796 -24.26.64.0/20 7843 -24.26.96.0/19 10796 -24.26.128.0/18 10796 -24.26.192.0/18 11427 -24.27.0.0/17 11427 -24.27.160.0/19 10796 -24.27.192.0/19 10796 -24.27.224.0/20 7843 -24.27.240.0/23 11426 -24.27.242.0/23 19115 -24.27.244.0/22 11426 -24.27.248.0/22 11426 -24.27.252.0/23 16787 -24.27.254.0/23 11426 -24.28.0.0/17 11427 -24.28.128.0/18 11427 -24.28.205.0/24 16787 -24.28.208.0/20 16787 -24.28.224.0/19 11426 -24.29.0.0/19 10796 -24.29.32.0/19 11351 -24.29.64.0/19 11351 -24.29.96.0/19 12271 -24.29.128.0/19 12271 -24.29.160.0/20 10796 -24.29.192.0/18 10796 -24.30.0.0/17 7922 -24.30.128.0/18 20001 -24.30.192.0/23 7843 -24.30.194.0/24 7843 -24.30.195.0/24 16787 -24.30.196.0/22 7843 -24.30.200.0/21 7843 -24.30.208.0/23 7843 -24.30.210.0/24 16787 -24.30.211.0/24 7843 -24.30.212.0/22 7843 -24.30.216.0/21 7843 -24.30.224.0/20 12271 -24.30.240.0/20 11351 -24.31.0.0/20 40285 -24.31.16.0/24 40285 -24.31.17.0/24 19108 -24.31.18.0/23 40285 -24.31.20.0/22 40285 -24.31.24.0/24 40285 -24.31.25.0/24 54814 -24.31.26.0/23 54814 -24.31.28.0/22 54814 -24.31.32.0/19 10796 -24.31.64.0/18 10796 -24.31.128.0/19 11351 -24.31.160.0/19 10796 -24.31.192.0/19 11426 -24.31.224.0/19 11427 -24.32.0.0/18 19108 -24.32.64.0/23 19108 -24.32.66.0/24 21615 -24.32.67.0/24 19108 -24.32.68.0/22 19108 -24.32.72.0/24 7018 -24.32.73.0/24 19108 -24.32.74.0/23 19108 -24.32.76.0/22 19108 -24.32.80.0/20 19108 -24.32.96.0/21 19108 -24.32.104.0/22 19108 -24.32.108.0/23 19108 -24.32.110.0/24 19108 -24.32.111.0/24 209 -24.32.112.0/24 209 -24.32.113.0/24 19108 -24.32.114.0/24 19108 -24.32.115.0/24 209 -24.32.116.0/22 19108 -24.32.120.0/21 19108 -24.32.128.0/23 19108 -24.32.130.0/24 19108 -24.32.131.0/24 21615 -24.32.132.0/23 21615 -24.32.134.0/24 209 -24.32.135.0/24 19108 -24.32.136.0/22 19108 -24.32.140.0/23 19108 -24.32.142.0/24 19108 -24.32.143.0/24 7018 -24.32.144.0/23 21615 -24.32.146.0/24 21615 -24.32.147.0/24 19108 -24.32.148.0/22 19108 -24.32.152.0/21 19108 -24.32.160.0/20 19108 -24.32.176.0/23 19108 -24.32.178.0/24 7018 -24.32.179.0/24 19108 -24.32.180.0/22 19108 -24.32.184.0/22 19108 -24.32.188.0/23 19108 -24.32.190.0/24 19108 -24.32.191.0/24 7018 -24.32.192.0/22 19108 -24.32.196.0/23 19108 -24.32.198.0/23 7018 -24.32.200.0/23 21615 -24.32.202.0/23 19108 -24.32.204.0/23 19108 -24.32.206.0/24 19108 -24.32.207.0/24 7018 -24.32.208.0/22 19108 -24.32.212.0/24 19108 -24.32.213.0/24 7018 -24.32.214.0/24 19108 -24.32.215.0/24 209 -24.32.216.0/24 209 -24.32.217.0/24 19108 -24.32.218.0/23 19108 -24.32.220.0/23 19108 -24.32.222.0/24 19108 -24.32.223.0/24 21615 -24.32.224.0/20 19108 -24.32.240.0/24 21615 -24.32.241.0/24 19108 -24.32.242.0/24 21615 -24.32.243.0/24 19108 -24.32.244.0/22 21615 -24.32.248.0/24 21615 -24.32.249.0/24 19108 -24.32.250.0/23 19108 -24.32.252.0/24 21615 -24.32.253.0/24 19108 -24.32.254.0/23 19108 -24.33.0.0/19 10796 -24.33.32.0/20 7843 -24.33.48.0/20 16787 -24.33.64.0/18 10796 -24.33.128.0/18 10796 -24.33.192.0/20 10796 -24.33.208.0/24 16787 -24.33.209.0/24 10796 -24.33.210.0/23 10796 -24.33.212.0/22 10796 -24.33.216.0/21 10796 -24.33.228.0/22 10796 -24.33.232.0/21 10796 -24.33.240.0/20 7843 -24.34.0.0/16 7922 -24.35.0.0/18 12083 -24.35.64.0/19 11404 -24.35.96.0/19 12083 -24.35.128.0/18 11976 -24.35.192.0/20 13825 -24.35.208.0/20 11976 -24.35.224.0/19 11976 -24.36.0.0/16 7992 -24.37.0.0/16 5769 -24.38.0.0/21 6128 -24.38.8.0/23 6128 -24.38.10.0/24 33759 -24.38.11.0/24 6128 -24.38.12.0/24 54004 -24.38.13.0/24 6128 -24.38.14.0/23 6128 -24.38.16.0/22 6128 -24.38.20.0/24 54004 -24.38.21.0/24 6128 -24.38.22.0/23 6128 -24.38.24.0/24 6128 -24.38.25.0/24 54004 -24.38.26.0/23 6128 -24.38.28.0/24 6128 -24.38.29.0/24 54004 -24.38.30.0/23 6128 -24.38.32.0/24 6128 -24.38.33.0/24 32195 -24.38.34.0/23 6128 -24.38.36.0/24 6128 -24.38.37.0/24 22362 -24.38.38.0/24 27390 -24.38.39.0/24 6128 -24.38.40.0/21 6128 -24.38.48.0/22 6128 -24.38.52.0/23 6128 -24.38.54.0/24 6128 -24.38.55.0/24 54004 -24.38.56.0/21 6128 -24.38.64.0/20 6128 -24.38.80.0/24 6128 -24.38.81.0/24 54004 -24.38.82.0/24 40951 -24.38.83.0/24 6128 -24.38.84.0/23 6128 -24.38.86.0/24 55209 -24.38.87.0/24 6128 -24.38.88.0/24 36681 -24.38.89.0/24 6128 -24.38.90.0/23 6128 -24.38.92.0/22 6128 -24.38.96.0/24 6128 -24.38.97.0/24 53482 -24.38.98.0/23 6128 -24.38.100.0/24 54004 -24.38.101.0/24 6128 -24.38.102.0/24 54004 -24.38.103.0/24 6128 -24.38.104.0/22 6128 -24.38.108.0/24 6128 -24.38.109.0/24 54004 -24.38.110.0/24 54004 -24.38.111.0/24 6128 -24.38.112.0/23 6128 -24.38.114.0/24 53640 -24.38.115.0/24 54004 -24.38.116.0/22 6128 -24.38.120.0/22 6128 -24.38.124.0/24 54004 -24.38.125.0/24 53555 -24.38.126.0/23 6128 -24.38.128.0/20 53271 -24.38.144.0/20 14008 -24.38.160.0/19 25710 -24.38.192.0/18 6128 -24.39.0.0/18 11351 -24.39.64.0/19 11351 -24.39.96.0/21 11351 -24.39.104.0/21 12271 -24.39.112.0/20 12271 -24.39.128.0/19 12271 -24.39.160.0/19 11351 -24.39.192.0/18 11351 -24.40.0.0/18 7922 -24.40.64.0/20 7922 -24.40.80.0/20 4181 -24.40.96.0/19 18474 -24.40.128.0/18 11426 -24.40.192.0/19 11426 -24.40.224.0/19 11976 -24.41.0.0/18 7029 -24.41.64.0/24 397866 -24.41.65.0/24 7029 -24.41.66.0/23 7029 -24.41.68.0/22 7029 -24.41.72.0/21 7029 -24.41.80.0/21 7029 -24.41.88.0/22 7029 -24.41.92.0/23 7029 -24.41.94.0/24 7029 -24.41.95.0/24 397866 -24.41.112.0/20 10011 -24.41.128.0/23 14638 -24.41.130.0/24 14638 -24.41.131.0/24 62931 -24.41.132.0/22 14638 -24.41.136.0/21 14638 -24.41.144.0/21 14638 -24.41.152.0/22 36423 -24.41.156.0/22 14638 -24.41.160.0/23 14638 -24.41.162.0/24 14638 -24.41.163.0/24 36423 -24.41.164.0/22 14638 -24.41.168.0/21 14638 -24.41.176.0/20 14638 -24.41.192.0/24 14638 -24.41.193.0/24 36423 -24.41.194.0/23 14638 -24.41.196.0/23 14638 -24.41.198.0/23 36423 -24.41.200.0/21 36423 -24.41.208.0/23 14638 -24.41.210.0/24 14638 -24.41.211.0/24 36423 -24.41.212.0/22 36423 -24.41.216.0/22 14638 -24.41.220.0/23 36423 -24.41.222.0/23 14638 -24.41.224.0/19 36423 -24.42.0.0/22 14638 -24.42.4.0/23 14638 -24.42.6.0/24 14638 -24.42.7.0/24 36423 -24.42.8.0/22 36423 -24.42.12.0/23 14638 -24.42.14.0/24 36423 -24.42.15.0/24 14638 -24.42.16.0/20 14638 -24.42.32.0/19 14638 -24.42.64.0/18 12271 -24.42.128.0/18 12083 -24.42.192.0/19 12083 -24.42.224.0/22 12083 -24.42.228.0/24 20412 -24.42.229.0/24 12083 -24.42.230.0/23 12083 -24.42.232.0/22 16724 -24.42.236.0/22 12083 -24.42.240.0/20 12083 -24.43.0.0/17 20001 -24.43.128.0/19 20001 -24.43.160.0/20 20001 -24.43.176.0/21 20001 -24.43.184.0/21 33363 -24.43.192.0/18 20001 -24.44.0.0/14 6128 -24.48.0.0/17 5769 -24.48.128.0/20 40396 -24.48.144.0/24 40396 -24.48.145.0/24 29866 -24.48.146.0/23 29866 -24.48.148.0/22 40396 -24.48.152.0/24 40396 -24.48.153.0/24 29866 -24.48.154.0/23 40396 -24.48.156.0/22 40396 -24.48.161.0/24 11492 -24.48.162.0/23 11492 -24.48.164.0/22 11492 -24.48.168.0/22 11492 -24.48.172.0/24 11492 -24.48.173.0/24 2386 -24.48.174.0/23 11492 -24.48.176.0/20 395761 -24.48.192.0/18 14638 -24.49.0.0/19 4922 -24.49.32.0/19 14291 -24.49.64.0/23 1246 -24.49.66.0/24 26801 -24.49.67.0/24 1246 -24.49.68.0/23 26801 -24.49.70.0/23 1246 -24.49.72.0/22 1246 -24.49.76.0/22 26801 -24.49.80.0/21 26801 -24.49.88.0/24 26801 -24.49.89.0/24 1246 -24.49.90.0/24 1246 -24.49.91.0/24 26801 -24.49.92.0/23 1246 -24.49.94.0/23 26801 -24.49.96.0/20 4181 -24.49.112.0/20 11232 -24.49.128.0/20 4181 -24.49.144.0/20 22646 -24.49.160.0/20 4181 -24.49.176.0/21 40285 -24.49.184.0/22 40285 -24.49.188.0/24 40285 -24.49.190.0/23 40285 -24.49.192.0/23 40285 -24.49.194.0/24 19108 -24.49.195.0/24 40285 -24.49.196.0/22 40285 -24.49.200.0/24 19108 -24.49.201.0/24 40285 -24.49.202.0/23 40285 -24.49.204.0/22 40285 -24.49.208.0/20 11976 -24.49.224.0/19 11290 -24.50.0.0/22 26801 -24.50.4.0/24 26801 -24.50.5.0/24 1246 -24.50.6.0/23 26801 -24.50.8.0/23 26801 -24.50.10.0/23 1246 -24.50.12.0/22 1246 -24.50.16.0/24 1246 -24.50.17.0/24 26801 -24.50.18.0/23 26801 -24.50.20.0/24 26801 -24.50.21.0/24 1246 -24.50.22.0/23 26801 -24.50.24.0/24 1246 -24.50.25.0/24 26801 -24.50.26.0/23 26801 -24.50.28.0/23 26801 -24.50.30.0/23 1246 -24.50.32.0/19 7992 -24.50.64.0/18 11290 -24.50.144.0/20 46449 -24.50.160.0/19 40788 -24.50.192.0/21 14638 -24.50.200.0/22 14638 -24.50.204.0/23 14638 -24.50.206.0/23 36423 -24.50.208.0/21 14638 -24.50.216.0/22 14638 -24.50.220.0/22 36423 -24.50.224.0/19 14638 -24.51.0.0/24 11414 -24.51.2.0/23 11414 -24.51.4.0/22 11414 -24.51.10.0/23 11414 -24.51.12.0/22 11414 -24.51.16.0/23 11414 -24.51.18.0/23 20347 -24.51.20.0/24 20347 -24.51.22.0/23 20347 -24.51.24.0/24 20347 -24.51.32.0/23 30164 -24.51.35.0/24 30164 -24.51.36.0/22 30164 -24.51.40.0/21 30612 -24.51.48.0/23 30612 -24.51.50.0/23 4474 -24.51.55.0/24 30164 -24.51.56.0/21 30164 -24.51.64.0/18 15146 -24.51.128.0/24 26801 -24.51.129.0/24 1246 -24.51.130.0/24 26801 -24.51.131.0/24 1246 -24.51.132.0/22 1246 -24.51.136.0/22 1246 -24.51.140.0/22 26801 -24.51.144.0/21 1246 -24.51.152.0/23 1246 -24.51.154.0/24 1246 -24.51.155.0/24 26801 -24.51.156.0/22 1246 -24.51.160.0/22 1246 -24.51.164.0/24 54388 -24.51.165.0/24 1246 -24.51.166.0/23 54388 -24.51.168.0/23 1246 -24.51.170.0/24 1246 -24.51.171.0/24 54388 -24.51.172.0/23 16948 -24.51.174.0/23 26801 -24.51.176.0/23 1246 -24.51.178.0/23 26801 -24.51.180.0/23 26801 -24.51.182.0/24 26801 -24.51.183.0/24 1246 -24.51.184.0/23 26801 -24.51.186.0/24 1246 -24.51.187.0/24 26801 -24.51.188.0/23 1246 -24.51.190.0/23 26801 -24.51.192.0/19 30404 -24.51.224.0/19 7992 -24.52.0.0/21 4181 -24.52.8.0/22 4181 -24.52.12.0/22 11232 -24.52.16.0/23 11232 -24.52.18.0/23 4181 -24.52.20.0/22 4181 -24.52.24.0/21 11232 -24.52.32.0/22 4181 -24.52.36.0/22 11232 -24.52.40.0/22 11232 -24.52.44.0/22 15198 -24.52.48.0/23 11176 -24.52.50.0/23 32776 -24.52.52.0/22 11232 -24.52.56.0/21 11232 -24.52.64.0/19 13490 -24.52.96.0/20 13490 -24.52.112.0/21 13490 -24.52.120.0/23 13490 -24.52.122.0/24 54357 -24.52.123.0/24 55198 -24.52.124.0/24 53749 -24.52.126.0/24 27180 -24.52.127.0/24 36814 -24.52.128.0/19 10971 -24.52.160.0/20 10971 -24.52.176.0/20 2386 -24.52.192.0/18 5645 -24.53.0.0/18 5769 -24.53.64.0/20 4922 -24.53.80.0/20 33230 -24.53.96.0/19 40788 -24.53.128.0/20 13490 -24.53.144.0/21 26076 -24.53.152.0/22 397027 -24.53.160.0/19 13490 -24.53.192.0/19 18260 -24.53.224.0/20 35843 -24.53.240.0/20 40788 -24.54.0.0/18 11290 -24.54.64.0/19 40788 -24.54.96.0/20 40285 -24.54.112.0/23 40285 -24.54.114.0/24 19108 -24.54.115.0/24 40285 -24.54.116.0/22 19108 -24.54.120.0/21 40285 -24.54.128.0/20 4181 -24.54.144.0/22 4181 -24.54.148.0/23 4181 -24.54.150.0/23 11232 -24.54.152.0/22 11232 -24.54.156.0/22 22827 -24.54.160.0/22 4181 -24.54.164.0/23 4181 -24.54.166.0/23 11232 -24.54.168.0/22 4181 -24.54.172.0/22 18643 -24.54.176.0/22 21882 -24.54.180.0/22 4181 -24.54.184.0/21 4181 -24.54.192.0/18 14638 -24.55.0.0/18 11427 -24.55.64.0/21 36423 -24.55.72.0/23 36423 -24.55.74.0/24 36423 -24.55.75.0/24 14638 -24.55.76.0/22 36423 -24.55.80.0/24 36423 -24.55.81.0/24 14638 -24.55.82.0/23 36423 -24.55.84.0/22 36423 -24.55.88.0/21 36423 -24.55.96.0/20 36423 -24.55.112.0/21 36423 -24.55.120.0/24 36423 -24.55.121.0/24 14638 -24.55.122.0/23 36423 -24.55.124.0/22 36423 -24.55.128.0/19 3737 -24.55.160.0/19 14638 -24.55.192.0/18 7992 -24.56.0.0/18 22773 -24.56.64.0/19 10796 -24.56.96.0/20 3356 -24.56.112.0/20 4922 -24.56.128.0/24 32779 -24.56.129.0/24 32777 -24.56.131.0/24 20368 -24.56.132.0/24 36339 -24.56.133.0/24 33700 -24.56.134.0/24 11582 -24.56.135.0/24 18643 -24.56.136.0/24 18601 -24.56.137.0/24 32776 -24.56.138.0/24 36392 -24.56.139.0/24 17082 -24.56.140.0/24 18444 -24.56.141.0/24 32686 -24.56.142.0/24 10949 -24.56.144.0/21 11232 -24.56.160.0/22 4181 -24.56.164.0/22 23278 -24.56.168.0/23 11232 -24.56.170.0/23 4181 -24.56.172.0/22 10949 -24.56.176.0/22 4181 -24.56.180.0/23 4181 -24.56.182.0/23 11232 -24.56.184.0/22 23279 -24.56.188.0/23 4181 -24.56.190.0/23 11232 -24.56.192.0/18 11404 -24.57.0.0/16 7992 -24.58.0.0/15 11351 -24.60.0.0/14 7922 -24.64.0.0/13 6327 -24.72.0.0/17 21804 -24.72.128.0/20 21804 -24.72.144.0/21 31939 -24.72.152.0/22 31939 -24.72.156.0/23 31939 -24.72.158.0/23 19257 -24.72.160.0/21 11492 -24.72.168.0/22 11492 -24.72.172.0/23 11492 -24.72.174.0/24 11492 -24.72.176.0/21 11492 -24.72.184.0/23 11492 -24.72.186.0/23 21615 -24.72.188.0/22 11492 -24.72.192.0/21 4474 -24.72.200.0/22 4474 -24.72.204.0/23 30164 -24.72.208.0/21 30612 -24.72.224.0/19 31939 -24.73.0.0/17 33363 -24.73.128.0/18 33363 -24.73.192.0/19 33363 -24.73.224.0/20 33363 -24.73.240.0/20 11427 -24.74.0.0/16 11426 -24.75.0.0/20 3356 -24.75.16.0/22 3356 -24.75.20.0/24 10753 -24.75.21.0/24 3356 -24.75.22.0/23 3356 -24.75.24.0/22 3356 -24.75.28.0/23 16490 -24.75.30.0/23 3356 -24.75.32.0/21 3356 -24.75.40.0/23 3356 -24.75.42.0/24 3356 -24.75.43.0/24 14423 -24.75.44.0/22 3356 -24.75.48.0/20 3356 -24.75.64.0/19 3356 -24.75.112.0/24 40285 -24.75.114.0/23 40285 -24.75.116.0/23 21615 -24.75.118.0/23 40285 -24.75.120.0/23 40285 -24.75.122.0/24 40285 -24.75.123.0/24 19108 -24.75.125.0/24 40285 -24.75.126.0/24 19108 -24.75.127.0/24 40285 -24.75.128.0/21 3356 -24.75.136.0/24 3356 -24.75.137.0/24 30299 -24.75.138.0/23 3356 -24.75.140.0/22 3356 -24.75.144.0/20 62522 -24.75.160.0/20 25853 -24.75.176.0/20 11290 -24.75.192.0/21 4181 -24.75.200.0/22 32686 -24.75.204.0/22 11582 -24.75.212.0/22 11176 -24.75.216.0/22 33287 -24.75.220.0/22 32775 -24.75.224.0/22 32779 -24.75.228.0/22 18601 -24.75.232.0/21 15198 -24.75.240.0/22 32777 -24.76.0.0/14 6327 -24.80.0.0/13 6327 -24.88.0.0/16 11426 -24.89.0.0/19 14291 -24.89.32.0/20 53508 -24.89.48.0/24 1651 -24.89.49.0/24 53508 -24.89.52.0/22 53508 -24.89.56.0/21 53508 -24.89.64.0/19 21804 -24.89.96.0/20 21804 -24.89.112.0/21 21804 -24.89.120.0/22 21804 -24.89.124.0/24 11568 -24.89.125.0/24 21804 -24.89.126.0/23 21804 -24.89.128.0/18 6128 -24.89.192.0/18 11260 -24.90.0.0/16 12271 -24.91.0.0/16 7922 -24.92.0.0/19 33363 -24.92.32.0/19 11351 -24.92.64.0/19 7843 -24.92.96.0/19 11427 -24.92.128.0/20 10796 -24.92.144.0/20 15344 -24.92.160.0/20 33363 -24.92.176.0/21 33363 -24.92.184.0/23 33363 -24.92.186.0/24 33363 -24.92.187.0/24 64496 -24.92.188.0/22 33363 -24.92.192.0/19 33363 -24.92.224.0/19 11351 -24.93.0.0/19 11351 -24.93.32.0/19 11427 -24.93.64.0/19 11426 -24.93.96.0/19 10796 -24.93.128.0/19 11351 -24.93.160.0/19 10796 -24.93.192.0/18 10796 -24.94.0.0/19 20001 -24.94.32.0/19 11351 -24.94.64.0/19 20001 -24.94.96.0/19 33363 -24.94.128.0/19 33363 -24.94.160.0/19 11427 -24.94.192.0/19 10796 -24.94.224.0/19 11955 -24.95.0.0/18 10796 -24.95.64.0/19 10796 -24.95.128.0/18 10796 -24.95.192.0/19 10796 -24.95.224.0/19 33363 -24.96.0.0/16 12083 -24.97.0.0/18 11351 -24.97.64.0/22 11351 -24.97.68.0/23 11351 -24.97.70.0/24 11351 -24.97.71.0/24 46236 -24.97.72.0/21 11351 -24.97.80.0/20 11351 -24.97.96.0/20 11351 -24.97.112.0/22 11351 -24.97.116.0/23 11351 -24.97.118.0/24 11351 -24.97.119.0/24 13524 -24.97.120.0/23 11351 -24.97.122.0/24 11351 -24.97.123.0/24 12271 -24.97.124.0/22 12271 -24.97.128.0/19 11351 -24.97.160.0/20 11351 -24.97.176.0/21 11351 -24.97.184.0/23 12271 -24.97.186.0/23 11351 -24.97.188.0/22 11351 -24.97.192.0/21 11351 -24.97.200.0/21 12271 -24.97.208.0/20 11351 -24.97.224.0/19 11351 -24.98.0.0/15 7922 -24.100.4.0/23 10796 -24.100.6.0/23 18812 -24.100.8.0/23 11492 -24.100.10.0/23 18812 -24.100.16.0/22 10796 -24.100.22.0/23 11492 -24.100.24.0/22 10796 -24.100.32.0/22 10796 -24.100.36.0/22 18812 -24.100.42.0/23 18812 -24.100.44.0/23 10796 -24.100.46.0/23 11492 -24.100.48.0/22 10796 -24.100.52.0/23 18812 -24.100.54.0/24 11492 -24.100.55.0/24 18812 -24.100.76.0/24 18812 -24.100.77.0/24 11492 -24.100.78.0/23 18812 -24.100.80.0/20 10796 -24.100.98.0/23 18812 -24.100.108.0/22 18812 -24.100.114.0/23 11492 -24.100.116.0/22 18812 -24.100.120.0/23 18812 -24.100.122.0/23 11492 -24.100.124.0/23 11492 -24.100.126.0/23 18812 -24.100.128.0/22 18812 -24.100.134.0/23 18812 -24.100.136.0/23 18812 -24.100.138.0/23 11492 -24.100.142.0/23 11492 -24.100.146.0/23 18812 -24.100.148.0/22 18812 -24.100.152.0/22 11492 -24.100.156.0/23 18812 -24.100.158.0/23 11492 -24.100.176.0/21 10796 -24.100.184.0/22 18812 -24.100.188.0/22 11492 -24.100.192.0/18 5769 -24.101.0.0/16 27364 -24.102.0.0/18 14366 -24.102.64.0/18 12271 -24.102.128.0/17 3737 -24.103.0.0/17 12271 -24.103.128.0/18 11351 -24.103.192.0/19 11351 -24.103.224.0/19 12271 -24.104.0.0/22 7922 -24.104.4.0/23 7922 -24.104.6.0/24 7922 -24.104.7.0/24 33661 -24.104.8.0/21 7922 -24.104.16.0/24 7922 -24.104.17.0/24 17117 -24.104.18.0/23 7922 -24.104.20.0/22 7922 -24.104.24.0/21 7922 -24.104.32.0/21 7922 -24.104.40.0/24 7922 -24.104.41.0/24 26325 -24.104.42.0/24 7725 -24.104.43.0/24 11662 -24.104.44.0/23 7922 -24.104.46.0/24 7015 -24.104.47.0/24 33491 -24.104.48.0/24 23389 -24.104.49.0/24 7922 -24.104.50.0/24 7922 -24.104.51.0/24 11633 -24.104.52.0/23 7922 -24.104.54.0/24 33667 -24.104.55.0/24 7015 -24.104.56.0/23 7922 -24.104.58.0/24 7015 -24.104.59.0/24 7922 -24.104.60.0/24 7922 -24.104.61.0/24 11270 -24.104.62.0/23 7922 -24.104.64.0/21 7922 -24.104.72.0/23 33651 -24.104.74.0/24 7922 -24.104.75.0/24 33662 -24.104.76.0/22 7922 -24.104.80.0/23 7922 -24.104.82.0/24 7922 -24.104.83.0/24 33661 -24.104.84.0/22 7922 -24.104.88.0/21 7922 -24.104.96.0/20 7922 -24.104.112.0/21 7922 -24.104.120.0/22 7922 -24.104.124.0/24 7015 -24.104.125.0/24 7725 -24.104.126.0/23 7922 -24.104.128.0/22 7922 -24.104.132.0/24 7922 -24.104.133.0/24 33491 -24.104.134.0/23 33667 -24.104.136.0/23 7922 -24.104.138.0/23 33651 -24.104.140.0/23 7922 -24.104.142.0/24 7922 -24.104.143.0/24 7016 -24.104.144.0/22 7922 -24.104.148.0/23 27007 -24.104.150.0/24 33651 -24.104.151.0/24 7922 -24.104.152.0/22 7922 -24.104.156.0/24 33287 -24.104.157.0/24 14149 -24.104.158.0/23 7922 -24.104.160.0/19 7311 -24.104.192.0/18 12271 -24.105.0.0/18 57976 -24.105.64.0/18 30236 -24.105.128.0/19 12271 -24.105.160.0/19 11351 -24.105.192.0/18 32953 -24.106.0.0/23 10796 -24.106.2.0/24 10796 -24.106.3.0/24 21801 -24.106.4.0/22 10796 -24.106.8.0/21 11427 -24.106.16.0/20 10796 -24.106.32.0/20 10796 -24.106.48.0/22 10796 -24.106.52.0/22 11427 -24.106.56.0/21 10796 -24.106.64.0/20 10796 -24.106.80.0/21 10796 -24.106.88.0/22 10796 -24.106.92.0/23 10796 -24.106.94.0/24 10796 -24.106.95.0/24 26720 -24.106.96.0/23 33363 -24.106.98.0/23 10796 -24.106.100.0/22 10796 -24.106.104.0/21 10796 -24.106.112.0/20 10796 -24.106.128.0/21 10796 -24.106.136.0/22 10796 -24.106.140.0/23 10796 -24.106.142.0/24 10796 -24.106.143.0/24 35884 -24.106.144.0/21 10796 -24.106.152.0/22 10796 -24.106.156.0/23 33363 -24.106.158.0/23 10796 -24.106.160.0/21 10796 -24.106.168.0/21 11426 -24.106.176.0/20 11426 -24.106.192.0/19 11426 -24.106.224.0/20 10796 -24.106.240.0/21 10796 -24.106.248.0/22 10796 -24.106.252.0/24 10796 -24.106.253.0/24 33363 -24.106.254.0/23 33363 -24.107.0.0/16 20115 -24.108.0.0/15 6327 -24.110.0.0/16 33363 -24.111.0.0/16 11232 -24.112.0.0/22 13368 -24.112.4.0/24 35986 -24.112.5.0/24 13368 -24.112.6.0/23 13368 -24.112.8.0/21 13368 -24.112.16.0/20 13368 -24.112.32.0/19 13368 -24.112.64.0/18 13368 -24.112.128.0/17 27364 -24.113.0.0/17 11404 -24.113.128.0/19 11404 -24.113.160.0/20 11404 -24.113.176.0/21 11404 -24.113.184.0/22 11404 -24.113.188.0/23 11404 -24.113.190.0/24 11404 -24.113.191.0/24 22759 -24.113.192.0/18 11404 -24.114.0.0/20 812 -24.114.16.0/22 812 -24.114.20.0/23 812 -24.114.22.0/23 20453 -24.114.24.0/22 20453 -24.114.28.0/22 812 -24.114.32.0/22 812 -24.114.36.0/22 20453 -24.114.40.0/22 20453 -24.114.44.0/23 20453 -24.114.46.0/23 812 -24.114.48.0/20 20453 -24.114.64.0/19 20453 -24.114.96.0/20 20453 -24.114.112.0/20 812 -24.114.128.0/17 812 -24.115.0.0/16 3737 -24.116.0.0/21 11492 -24.116.8.0/24 11492 -24.116.10.0/24 11492 -24.116.12.0/23 11492 -24.116.16.0/21 11492 -24.116.24.0/24 11492 -24.116.26.0/23 11492 -24.116.29.0/24 11492 -24.116.30.0/23 11492 -24.116.33.0/24 11492 -24.116.34.0/24 11492 -24.116.36.0/22 11492 -24.116.40.0/21 11492 -24.116.51.0/24 11492 -24.116.52.0/22 11492 -24.116.56.0/21 11492 -24.116.64.0/24 11492 -24.116.66.0/24 11492 -24.116.68.0/22 11492 -24.116.74.0/23 11492 -24.116.76.0/22 11492 -24.116.80.0/21 11492 -24.116.89.0/24 11492 -24.116.90.0/23 11492 -24.116.93.0/24 11492 -24.116.94.0/23 11492 -24.116.96.0/23 11492 -24.116.98.0/24 11492 -24.116.100.0/22 11492 -24.116.104.0/23 11492 -24.116.106.0/24 11492 -24.116.108.0/22 11492 -24.116.112.0/24 11492 -24.116.114.0/23 11492 -24.116.116.0/22 11492 -24.116.120.0/21 11492 -24.116.128.0/20 11492 -24.116.144.0/21 11492 -24.116.152.0/23 11492 -24.116.156.0/22 11492 -24.116.161.0/24 11492 -24.116.162.0/23 11492 -24.116.164.0/22 11492 -24.116.168.0/22 11492 -24.116.172.0/24 11492 -24.116.174.0/23 11492 -24.116.177.0/24 11492 -24.116.178.0/24 11492 -24.116.180.0/22 11492 -24.116.184.0/21 11492 -24.116.192.0/24 11492 -24.116.194.0/23 11492 -24.116.196.0/24 11492 -24.116.198.0/23 11492 -24.116.200.0/24 11492 -24.116.202.0/23 11492 -24.116.204.0/22 11492 -24.116.208.0/20 11492 -24.116.225.0/24 11492 -24.116.226.0/23 11492 -24.116.228.0/22 11492 -24.116.232.0/21 11492 -24.116.241.0/24 11492 -24.116.242.0/24 11492 -24.116.244.0/22 11492 -24.116.248.0/21 11492 -24.117.0.0/23 11492 -24.117.4.0/22 11492 -24.117.8.0/21 11492 -24.117.16.0/24 11492 -24.117.18.0/23 11492 -24.117.20.0/22 11492 -24.117.24.0/21 11492 -24.117.32.0/23 11492 -24.117.35.0/24 11492 -24.117.36.0/22 11492 -24.117.40.0/21 11492 -24.117.48.0/21 11492 -24.117.56.0/22 11492 -24.117.60.0/23 11492 -24.117.63.0/24 11492 -24.117.64.0/22 11492 -24.117.68.0/24 11492 -24.117.70.0/23 11492 -24.117.72.0/21 11492 -24.117.80.0/22 11492 -24.117.84.0/23 11492 -24.117.87.0/24 11492 -24.117.88.0/21 11492 -24.117.96.0/20 11492 -24.117.114.0/23 11492 -24.117.116.0/22 11492 -24.117.120.0/22 11492 -24.117.124.0/23 11492 -24.117.126.0/24 11492 -24.117.128.0/21 11492 -24.117.136.0/22 11492 -24.117.140.0/23 11492 -24.117.142.0/24 11492 -24.117.144.0/22 11492 -24.117.148.0/23 11492 -24.117.151.0/24 11492 -24.117.152.0/23 11492 -24.117.154.0/24 11492 -24.117.156.0/23 11492 -24.117.158.0/24 11492 -24.117.162.0/23 11492 -24.117.164.0/22 11492 -24.117.168.0/21 11492 -24.117.176.0/20 11492 -24.117.192.0/22 11492 -24.117.196.0/24 11492 -24.117.198.0/23 11492 -24.117.200.0/21 11492 -24.117.208.0/23 11492 -24.117.211.0/24 11492 -24.117.212.0/24 11492 -24.117.214.0/23 11492 -24.117.216.0/21 11492 -24.117.224.0/21 11492 -24.117.232.0/22 11492 -24.117.236.0/23 11492 -24.117.238.0/24 11492 -24.117.239.0/24 18812 -24.117.240.0/23 11492 -24.117.243.0/24 11492 -24.117.244.0/22 11492 -24.117.248.0/22 11492 -24.117.252.0/24 11492 -24.117.254.0/23 11492 -24.118.0.0/16 7922 -24.119.0.0/20 11492 -24.119.17.0/24 11492 -24.119.18.0/23 11492 -24.119.20.0/22 11492 -24.119.24.0/22 11492 -24.119.28.0/23 11492 -24.119.31.0/24 11492 -24.119.32.0/21 11492 -24.119.40.0/22 11492 -24.119.45.0/24 11492 -24.119.46.0/23 11492 -24.119.48.0/22 11492 -24.119.52.0/23 11492 -24.119.55.0/24 11492 -24.119.56.0/21 11492 -24.119.64.0/20 11492 -24.119.80.0/22 11492 -24.119.84.0/23 11492 -24.119.88.0/24 11492 -24.119.90.0/23 11492 -24.119.92.0/22 11492 -24.119.96.0/24 11492 -24.119.98.0/23 11492 -24.119.100.0/22 11492 -24.119.104.0/21 11492 -24.119.112.0/22 11492 -24.119.116.0/23 11492 -24.119.118.0/24 11492 -24.119.120.0/21 11492 -24.119.128.0/21 11492 -24.119.136.0/23 11492 -24.119.138.0/24 11492 -24.119.140.0/22 11492 -24.119.144.0/23 11492 -24.119.146.0/24 11492 -24.119.148.0/22 11492 -24.119.152.0/24 11492 -24.119.156.0/22 11492 -24.119.160.0/21 11492 -24.119.169.0/24 11492 -24.119.170.0/23 11492 -24.119.173.0/24 11492 -24.119.174.0/23 11492 -24.119.176.0/20 11492 -24.119.192.0/23 11492 -24.119.194.0/24 11492 -24.119.196.0/22 11492 -24.119.201.0/24 11492 -24.119.202.0/23 11492 -24.119.204.0/22 11492 -24.119.208.0/21 11492 -24.119.216.0/24 11492 -24.119.219.0/24 11492 -24.119.220.0/23 11492 -24.119.224.0/21 11492 -24.119.234.0/23 11492 -24.119.236.0/22 11492 -24.119.240.0/22 11492 -24.119.244.0/23 11492 -24.119.247.0/24 11492 -24.119.248.0/24 11492 -24.119.250.0/24 11492 -24.119.252.0/22 11492 -24.120.0.0/17 22773 -24.120.128.0/20 22773 -24.120.144.0/23 22773 -24.120.146.0/24 62957 -24.120.147.0/24 22773 -24.120.148.0/22 22773 -24.120.152.0/21 22773 -24.120.160.0/20 22773 -24.120.176.0/21 22773 -24.120.184.0/24 22773 -24.120.185.0/24 397124 -24.120.186.0/23 22773 -24.120.188.0/22 22773 -24.120.192.0/20 22773 -24.120.208.0/21 22773 -24.120.216.0/22 22773 -24.120.220.0/24 18798 -24.120.221.0/24 22773 -24.120.222.0/23 22773 -24.120.224.0/19 22773 -24.121.0.0/18 19108 -24.121.64.0/19 19108 -24.121.96.0/22 19108 -24.121.100.0/23 19108 -24.121.102.0/24 395866 -24.121.103.0/24 19108 -24.121.104.0/21 19108 -24.121.112.0/23 395866 -24.121.114.0/23 19108 -24.121.116.0/22 19108 -24.121.120.0/21 19108 -24.121.128.0/17 19108 -24.122.0.0/16 11290 -24.123.0.0/20 10796 -24.123.16.0/20 33363 -24.123.32.0/19 10796 -24.123.64.0/19 10796 -24.123.96.0/20 11427 -24.123.112.0/23 10796 -24.123.114.0/24 11426 -24.123.115.0/24 10796 -24.123.116.0/23 20001 -24.123.118.0/23 10838 -24.123.120.0/24 20001 -24.123.121.0/24 10796 -24.123.122.0/23 11955 -24.123.124.0/24 10796 -24.123.125.0/24 11426 -24.123.126.0/23 10796 -24.123.128.0/20 10796 -24.123.144.0/21 11426 -24.123.152.0/21 10796 -24.123.160.0/20 10796 -24.123.176.0/20 11426 -24.123.192.0/20 10796 -24.123.208.0/23 33363 -24.123.211.0/24 33363 -24.123.212.0/22 33363 -24.123.216.0/22 33363 -24.123.220.0/23 33363 -24.123.222.0/24 33363 -24.123.223.0/24 10796 -24.123.224.0/19 10796 -24.124.0.0/17 11232 -24.124.128.0/17 7922 -24.125.0.0/16 7922 -24.126.0.0/15 7922 -24.128.0.0/16 7922 -24.129.0.0/17 7922 -24.129.128.0/19 33363 -24.129.160.0/21 33363 -24.129.168.0/22 33363 -24.129.172.0/23 33363 -24.129.174.0/24 396066 -24.129.175.0/24 33363 -24.129.176.0/20 33363 -24.129.192.0/20 40224 -24.129.208.0/20 30036 -24.129.224.0/22 32233 -24.129.228.0/22 22799 -24.129.232.0/21 22799 -24.129.240.0/20 27364 -24.130.0.0/15 7922 -24.132.0.0/16 6830 -24.133.0.0/19 47524 -24.133.32.0/21 47524 -24.133.40.0/22 47524 -24.133.48.0/20 47524 -24.133.64.0/22 47524 -24.133.72.0/21 47524 -24.133.80.0/20 47524 -24.133.96.0/20 47524 -24.133.112.0/22 47524 -24.133.118.0/23 47524 -24.133.120.0/21 47524 -24.133.128.0/18 47524 -24.133.192.0/20 47524 -24.133.208.0/22 47524 -24.133.214.0/23 47524 -24.133.216.0/21 47524 -24.133.224.0/19 47524 -24.134.0.0/16 31334 -24.135.0.0/16 31042 -24.136.0.0/19 6079 -24.136.32.0/19 22773 -24.136.64.0/19 20001 -24.136.96.0/19 12271 -24.136.128.0/17 11426 -24.137.32.0/20 33541 -24.137.48.0/20 812 -24.137.64.0/18 11260 -24.137.128.0/19 16495 -24.137.160.0/20 16495 -24.137.192.0/19 812 -24.137.224.0/19 36423 -24.138.0.0/18 11260 -24.138.64.0/20 11260 -24.138.80.0/20 11290 -24.138.96.0/19 5690 -24.138.128.0/18 23184 -24.138.192.0/22 36423 -24.138.196.0/22 14638 -24.138.200.0/23 14638 -24.138.202.0/24 36423 -24.138.203.0/24 14638 -24.138.204.0/22 14638 -24.138.208.0/22 36423 -24.138.212.0/22 14638 -24.138.216.0/21 14638 -24.138.224.0/19 14638 -24.139.0.0/19 23184 -24.139.32.0/19 11976 -24.139.64.0/20 14638 -24.139.80.0/21 14638 -24.139.88.0/23 14638 -24.139.90.0/24 36423 -24.139.91.0/24 14638 -24.139.92.0/24 14638 -24.139.93.0/24 36423 -24.139.94.0/24 36423 -24.139.95.0/24 14638 -24.139.96.0/21 14638 -24.139.104.0/24 36423 -24.139.105.0/24 14638 -24.139.106.0/23 14638 -24.139.108.0/22 14638 -24.139.112.0/20 14638 -24.139.128.0/22 14638 -24.139.132.0/23 36423 -24.139.134.0/24 14638 -24.139.135.0/24 36423 -24.139.136.0/24 14638 -24.139.137.0/24 36423 -24.139.138.0/23 14638 -24.139.140.0/23 14638 -24.139.142.0/24 14638 -24.139.143.0/24 36423 -24.139.144.0/22 14638 -24.139.148.0/24 14638 -24.139.149.0/24 36423 -24.139.150.0/23 14638 -24.139.152.0/24 14638 -24.139.153.0/24 36423 -24.139.154.0/23 14638 -24.139.156.0/22 14638 -24.139.160.0/22 14638 -24.139.164.0/23 14638 -24.139.166.0/24 14638 -24.139.167.0/24 36423 -24.139.168.0/24 36423 -24.139.169.0/24 30440 -24.139.170.0/23 14638 -24.139.172.0/22 14638 -24.139.176.0/24 14638 -24.139.177.0/24 36423 -24.139.178.0/24 14638 -24.139.179.0/24 36423 -24.139.180.0/22 14638 -24.139.184.0/22 36423 -24.139.188.0/22 14638 -24.139.192.0/21 14638 -24.139.200.0/22 14638 -24.139.204.0/24 14638 -24.139.205.0/24 36423 -24.139.206.0/23 14638 -24.139.208.0/20 14638 -24.139.224.0/23 14638 -24.139.226.0/24 14638 -24.139.227.0/24 36423 -24.139.228.0/22 14638 -24.139.232.0/21 14638 -24.139.240.0/22 14638 -24.139.244.0/24 36423 -24.139.245.0/24 14638 -24.139.246.0/23 14638 -24.139.248.0/21 36423 -24.140.0.0/17 12097 -24.140.128.0/18 12097 -24.140.192.0/19 12097 -24.140.224.0/20 5645 -24.140.240.0/20 40788 -24.141.0.0/16 7992 -24.142.0.0/19 32233 -24.142.32.0/19 11260 -24.142.64.0/21 11492 -24.142.72.0/22 11492 -24.142.77.0/24 2386 -24.142.78.0/23 11492 -24.142.80.0/20 11290 -24.142.96.0/23 19036 -24.142.98.0/24 19036 -24.142.99.0/24 43905 -24.142.100.0/24 19036 -24.142.101.0/24 9229 -24.142.102.0/24 9229 -24.142.103.0/24 19036 -24.142.104.0/21 19036 -24.142.112.0/21 19036 -24.142.120.0/22 19036 -24.142.124.0/23 19036 -24.142.126.0/24 19036 -24.142.127.0/24 577 -24.142.128.0/19 10796 -24.142.160.0/20 10796 -24.142.176.0/24 53280 -24.142.177.0/24 10796 -24.142.178.0/23 10796 -24.142.180.0/22 10796 -24.142.184.0/21 10796 -24.142.192.0/18 11426 -24.143.0.0/23 13368 -24.143.3.0/24 35986 -24.143.6.0/24 35986 -24.143.8.0/22 35986 -24.143.12.0/22 13368 -24.143.17.0/24 35986 -24.143.18.0/23 35986 -24.143.20.0/23 13368 -24.143.22.0/23 35986 -24.143.24.0/21 35986 -24.143.32.0/19 11232 -24.143.64.0/18 11404 -24.143.128.0/19 40788 -24.143.160.0/19 7992 -24.143.192.0/20 7843 -24.143.208.0/20 11426 -24.143.224.0/19 16895 -24.144.0.0/18 12231 -24.144.64.0/18 33363 -24.144.128.0/17 27364 -24.145.0.0/18 11776 -24.145.64.0/21 11776 -24.145.72.0/22 11776 -24.145.76.0/24 11776 -24.145.78.0/23 11776 -24.145.80.0/21 11776 -24.145.88.0/22 11776 -24.145.92.0/23 11776 -24.145.94.0/24 11776 -24.145.95.0/24 32939 -24.145.112.0/20 11776 -24.145.128.0/19 10796 -24.145.160.0/21 11427 -24.145.168.0/21 10796 -24.145.176.0/20 10796 -24.145.192.0/20 10796 -24.145.208.0/23 10796 -24.145.210.0/23 33363 -24.145.212.0/22 10796 -24.145.216.0/22 10796 -24.145.220.0/24 33363 -24.145.221.0/24 10796 -24.145.222.0/23 10796 -24.145.224.0/20 10796 -24.145.240.0/20 11427 -24.146.0.0/18 7992 -24.146.64.0/18 7311 -24.146.128.0/17 6128 -24.147.0.0/16 7922 -24.148.0.0/18 6079 -24.148.64.0/19 6079 -24.148.96.0/19 32953 -24.148.128.0/17 11426 -24.149.0.0/19 13855 -24.149.32.0/19 11351 -24.149.64.0/18 4922 -24.149.128.0/18 11025 -24.149.192.0/19 11025 -24.150.0.0/16 7992 -24.151.0.0/16 20115 -24.152.128.0/20 20001 -24.152.144.0/21 33363 -24.152.152.0/21 20001 -24.152.160.0/19 20001 -24.152.192.0/18 3737 -24.153.0.0/19 812 -24.153.32.0/22 26504 -24.153.36.0/23 36790 -24.153.38.0/23 26504 -24.153.40.0/22 21688 -24.153.44.0/22 36790 -24.153.48.0/23 26504 -24.153.50.0/23 21688 -24.153.52.0/22 21688 -24.153.56.0/21 23391 -24.153.64.0/19 7922 -24.153.96.0/20 30466 -24.153.112.0/20 14291 -24.153.128.0/18 11427 -24.153.192.0/21 11427 -24.153.200.0/22 11427 -24.153.204.0/24 393756 -24.153.205.0/24 11427 -24.153.206.0/23 11427 -24.153.208.0/20 11427 -24.153.224.0/19 11427 -24.154.0.0/16 27364 -24.155.0.0/19 7459 -24.155.32.0/21 7459 -24.155.40.0/23 7459 -24.155.42.0/24 7459 -24.155.43.0/24 64281 -24.155.44.0/22 7459 -24.155.48.0/20 7459 -24.155.64.0/19 7459 -24.155.96.0/20 7459 -24.155.112.0/21 7459 -24.155.120.0/23 7459 -24.155.122.0/24 7459 -24.155.123.0/24 64281 -24.155.124.0/22 7459 -24.155.128.0/17 7459 -24.156.0.0/20 19108 -24.156.16.0/24 19108 -24.156.17.0/24 395866 -24.156.18.0/23 19108 -24.156.20.0/22 19108 -24.156.24.0/21 19108 -24.156.32.0/19 19108 -24.156.64.0/18 19108 -24.156.128.0/19 812 -24.156.160.0/20 54614 -24.156.176.0/20 40788 -24.156.192.0/18 7992 -24.157.16.0/20 36423 -24.157.32.0/24 6128 -24.157.33.0/24 54120 -24.157.34.0/24 17051 -24.157.35.0/24 6128 -24.157.36.0/22 6128 -24.157.40.0/22 6128 -24.157.44.0/23 6128 -24.157.46.0/24 6128 -24.157.47.0/24 18808 -24.157.48.0/24 13639 -24.157.49.0/24 6128 -24.157.50.0/23 6128 -24.157.52.0/22 6128 -24.157.56.0/24 54004 -24.157.57.0/24 6128 -24.157.58.0/23 6128 -24.157.60.0/22 6128 -24.157.64.0/18 7992 -24.157.128.0/17 5769 -24.158.0.0/16 20115 -24.159.0.0/17 20115 -24.159.128.0/19 20115 -24.159.160.0/21 20115 -24.159.168.0/22 20115 -24.159.172.0/23 20115 -24.159.176.0/20 20115 -24.159.192.0/18 20115 -24.160.0.0/19 11427 -24.160.32.0/21 20001 -24.160.40.0/21 10838 -24.160.64.0/18 33363 -24.160.128.0/19 11427 -24.160.160.0/19 10796 -24.160.192.0/18 10796 -24.161.0.0/17 12271 -24.161.160.0/20 7843 -24.162.0.0/17 11427 -24.162.128.0/18 11427 -24.162.192.0/19 11427 -24.162.224.0/19 11426 -24.163.0.0/17 11426 -24.163.128.0/19 10796 -24.163.192.0/18 10796 -24.164.0.0/18 33363 -24.164.64.0/18 10796 -24.164.128.0/18 12271 -24.164.192.0/19 11427 -24.164.224.0/19 10796 -24.165.0.0/18 20001 -24.165.64.0/19 20001 -24.165.96.0/19 10796 -24.165.128.0/18 10796 -24.165.192.0/19 10796 -24.165.224.0/19 11427 -24.166.0.0/17 10796 -24.166.144.0/20 13343 -24.166.160.0/22 10796 -24.166.164.0/22 11427 -24.166.168.0/21 11427 -24.166.176.0/20 11427 -24.166.192.0/18 10796 -24.167.0.0/17 11427 -24.167.128.0/18 11426 -24.167.192.0/18 10796 -24.168.0.0/17 12271 -24.168.128.0/19 12271 -24.168.160.0/19 11426 -24.168.192.0/18 11426 -24.169.0.0/17 11351 -24.169.134.0/23 20115 -24.169.136.0/23 20115 -24.169.150.0/23 20115 -24.169.152.0/23 20115 -24.169.160.0/21 19115 -24.169.172.0/23 20115 -24.169.187.0/24 19115 -24.169.192.0/24 10796 -24.169.240.0/20 11427 -24.170.0.0/17 11427 -24.170.128.0/18 33363 -24.170.192.0/20 22773 -24.170.224.0/19 14291 -24.171.0.0/17 20115 -24.171.128.0/19 20001 -24.171.160.0/19 11426 -24.171.192.0/23 36423 -24.171.194.0/24 36423 -24.171.195.0/24 14638 -24.171.196.0/23 36423 -24.171.198.0/23 14638 -24.171.200.0/21 14638 -24.171.208.0/22 14638 -24.171.212.0/24 7018 -24.171.213.0/24 14638 -24.171.214.0/23 14638 -24.171.216.0/21 14638 -24.171.224.0/21 36423 -24.171.232.0/21 14638 -24.171.240.0/21 14638 -24.171.248.0/23 36423 -24.171.250.0/24 36423 -24.171.251.0/24 14638 -24.171.252.0/22 36423 -24.172.0.0/17 11426 -24.172.128.0/20 10796 -24.172.144.0/22 10796 -24.172.148.0/23 10796 -24.172.150.0/24 10796 -24.172.151.0/24 53993 -24.172.152.0/21 10796 -24.172.160.0/21 33363 -24.172.168.0/22 33363 -24.172.172.0/23 33363 -24.172.174.0/24 33363 -24.172.176.0/20 33363 -24.172.192.0/19 10796 -24.172.224.0/20 11426 -24.172.240.0/21 10796 -24.172.248.0/21 11426 -24.173.0.0/18 11427 -24.173.64.0/19 11427 -24.173.96.0/20 11427 -24.173.112.0/20 33363 -24.173.128.0/19 33363 -24.173.160.0/20 33363 -24.173.176.0/20 11427 -24.173.192.0/18 11427 -24.174.42.0/23 11427 -24.175.0.0/17 11427 -24.175.160.0/19 11427 -24.175.192.0/18 11427 -24.176.0.0/16 20115 -24.177.0.0/17 20115 -24.177.128.0/23 14334 -24.177.130.0/23 20115 -24.177.132.0/22 20115 -24.177.136.0/21 20115 -24.177.160.0/19 20115 -24.177.192.0/18 20115 -24.178.0.0/16 20115 -24.179.0.0/18 20115 -24.179.64.0/19 20115 -24.179.96.0/22 20115 -24.179.104.0/21 20115 -24.179.112.0/20 20115 -24.179.128.0/17 20115 -24.180.0.0/14 20115 -24.184.0.0/13 6128 -24.192.0.0/16 12083 -24.193.0.0/16 12271 -24.194.0.0/15 11351 -24.196.0.0/17 20115 -24.196.128.0/18 20115 -24.196.192.0/19 20115 -24.196.224.0/20 20115 -24.196.240.0/24 20115 -24.196.242.0/24 19115 -24.196.244.0/22 20115 -24.196.248.0/21 20115 -24.197.0.0/17 20115 -24.197.128.0/20 20115 -24.197.160.0/19 20115 -24.197.192.0/18 20115 -24.198.0.0/16 11351 -24.199.0.0/20 20001 -24.199.16.0/21 20001 -24.199.24.0/22 20001 -24.199.28.0/23 33363 -24.199.30.0/23 20001 -24.199.32.0/22 20001 -24.199.36.0/23 33363 -24.199.38.0/23 20001 -24.199.40.0/21 20001 -24.199.48.0/20 20001 -24.199.64.0/18 12271 -24.199.128.0/18 11426 -24.199.192.0/20 11426 -24.199.208.0/21 11426 -24.199.216.0/23 11426 -24.199.218.0/24 11426 -24.199.219.0/24 21955 -24.199.220.0/22 11426 -24.199.224.0/19 11426 -24.200.0.0/14 5769 -24.204.0.0/20 18834 -24.204.16.0/21 18834 -24.204.24.0/21 12019 -24.204.32.0/19 12019 -24.204.64.0/18 18834 -24.204.128.0/21 18834 -24.204.136.0/24 29809 -24.204.137.0/24 18834 -24.204.138.0/23 18834 -24.204.144.0/22 30466 -24.204.148.0/24 30466 -24.204.150.0/23 30466 -24.204.152.0/21 30466 -24.204.160.0/19 174 -24.204.192.0/18 7992 -24.205.0.0/17 20115 -24.205.128.0/18 20115 -24.205.192.0/23 20115 -24.205.194.0/24 20115 -24.205.195.0/24 40534 -24.205.196.0/23 20115 -24.205.198.0/24 20115 -24.205.199.0/24 22415 -24.205.200.0/21 20115 -24.205.208.0/20 20115 -24.205.224.0/19 20115 -24.206.0.0/19 15146 -24.206.32.0/19 11426 -24.206.64.0/18 11427 -24.206.128.0/21 19108 -24.206.136.0/24 7018 -24.206.137.0/24 19108 -24.206.138.0/23 19108 -24.206.140.0/22 19108 -24.206.144.0/20 19108 -24.206.160.0/22 19108 -24.206.164.0/23 19108 -24.206.166.0/24 21615 -24.206.167.0/24 19108 -24.206.168.0/21 19108 -24.206.176.0/20 19108 -24.206.192.0/22 19108 -24.206.196.0/24 19108 -24.206.197.0/24 209 -24.206.198.0/23 7018 -24.206.200.0/24 19108 -24.206.201.0/24 7018 -24.206.202.0/23 19108 -24.206.204.0/22 19108 -24.206.208.0/20 19108 -24.206.224.0/19 19108 -24.207.0.0/17 22799 -24.207.128.0/17 20115 -24.208.0.0/18 10796 -24.208.64.0/19 10796 -24.208.96.0/23 10796 -24.208.98.0/23 11427 -24.208.100.0/22 11427 -24.208.104.0/21 10796 -24.208.112.0/20 10796 -24.208.128.0/17 10796 -24.209.0.0/16 10796 -24.210.0.0/16 10796 -24.211.0.0/19 10796 -24.211.32.0/19 11426 -24.211.64.0/18 11426 -24.211.128.0/17 11426 -24.212.0.0/17 35911 -24.212.128.0/17 5645 -24.213.0.0/19 20115 -24.213.32.0/20 20115 -24.213.48.0/21 20115 -24.213.56.0/22 20115 -24.213.60.0/23 20115 -24.213.62.0/24 20115 -24.213.63.0/24 62790 -24.213.64.0/19 14366 -24.213.96.0/20 46687 -24.213.112.0/21 40285 -24.213.121.0/24 40285 -24.213.122.0/23 40285 -24.213.124.0/22 40285 -24.213.128.0/19 11351 -24.213.160.0/20 12271 -24.213.176.0/21 12271 -24.213.184.0/21 11351 -24.213.192.0/18 11351 -24.214.0.0/18 12083 -24.214.64.0/21 12083 -24.214.72.0/24 12083 -24.214.73.0/24 20412 -24.214.74.0/23 12083 -24.214.76.0/22 12083 -24.214.80.0/20 12083 -24.214.96.0/19 12083 -24.214.128.0/20 12083 -24.214.144.0/22 12083 -24.214.148.0/23 20412 -24.214.150.0/23 12083 -24.214.152.0/21 12083 -24.214.160.0/20 12083 -24.214.176.0/22 12083 -24.214.180.0/23 12083 -24.214.182.0/23 20412 -24.214.184.0/24 12083 -24.214.185.0/24 20412 -24.214.186.0/24 20412 -24.214.187.0/24 12083 -24.214.188.0/23 12083 -24.214.190.0/24 12083 -24.214.191.0/24 20412 -24.214.192.0/22 12083 -24.214.196.0/23 12083 -24.214.198.0/24 12083 -24.214.199.0/24 20412 -24.214.200.0/21 12083 -24.214.208.0/20 12083 -24.214.224.0/22 12083 -24.214.228.0/24 12083 -24.214.229.0/24 20412 -24.214.230.0/23 12083 -24.214.232.0/21 12083 -24.214.240.0/24 20412 -24.214.241.0/24 12083 -24.214.242.0/23 12083 -24.214.244.0/22 12083 -24.214.248.0/21 12083 -24.215.0.0/18 14366 -24.215.64.0/18 11260 -24.215.128.0/17 12271 -24.216.0.0/20 20115 -24.216.16.0/21 20115 -24.216.24.0/23 20115 -24.216.27.0/24 20115 -24.216.28.0/22 20115 -24.216.32.0/21 20115 -24.216.42.0/24 20115 -24.216.44.0/23 20115 -24.216.46.0/24 20115 -24.216.48.0/20 20115 -24.216.64.0/20 20115 -24.216.80.0/21 20115 -24.216.88.0/24 20115 -24.216.90.0/23 20115 -24.216.92.0/22 20115 -24.216.98.0/24 20115 -24.216.100.0/22 20115 -24.216.104.0/21 20115 -24.216.112.0/20 20115 -24.216.128.0/21 20115 -24.216.136.0/24 20115 -24.216.138.0/24 20115 -24.216.140.0/22 20115 -24.216.144.0/24 19115 -24.216.146.0/23 20115 -24.216.148.0/22 20115 -24.216.152.0/21 20115 -24.216.160.0/19 20115 -24.216.192.0/18 20115 -24.217.0.0/16 20115 -24.218.0.0/16 7922 -24.219.0.0/22 8092 -24.219.4.0/24 8092 -24.219.7.0/24 8092 -24.219.8.0/21 8092 -24.219.16.0/22 8092 -24.219.32.0/22 8092 -24.219.37.0/24 8092 -24.219.38.0/23 8092 -24.219.40.0/23 8092 -24.219.42.0/24 8092 -24.219.64.0/20 8092 -24.219.99.0/24 8092 -24.219.100.0/23 8092 -24.219.112.0/20 8092 -24.219.129.0/24 8092 -24.219.130.0/23 8092 -24.219.132.0/24 8092 -24.219.136.0/22 8092 -24.219.192.0/19 8092 -24.219.224.0/23 8092 -24.219.226.0/24 8092 -24.220.0.0/18 11232 -24.220.64.0/21 11232 -24.220.72.0/22 11232 -24.220.76.0/24 11232 -24.220.77.0/24 394487 -24.220.78.0/23 11232 -24.220.80.0/20 11232 -24.220.96.0/19 11232 -24.220.128.0/17 11232 -24.221.0.0/17 3651 -24.221.128.0/18 3651 -24.221.192.0/19 3651 -24.221.224.0/19 10507 -24.222.0.0/18 11260 -24.222.64.0/19 11260 -24.222.96.0/22 11260 -24.222.100.0/24 11260 -24.222.101.0/24 398006 -24.222.102.0/23 11260 -24.222.104.0/21 11260 -24.222.112.0/20 11260 -24.222.128.0/19 11260 -24.222.160.0/20 32233 -24.222.176.0/20 11260 -24.222.192.0/18 11260 -24.223.0.0/23 13659 -24.223.3.0/24 13659 -24.223.7.0/24 13659 -24.223.9.0/24 13659 -24.223.10.0/24 13659 -24.223.49.0/24 13659 -24.223.50.0/23 13659 -24.223.52.0/24 13659 -24.223.55.0/24 54934 -24.223.60.0/24 209 -24.223.61.0/24 2386 -24.223.62.0/24 54934 -24.223.63.0/24 5650 -24.223.68.0/24 2731 -24.223.69.0/24 13659 -24.223.70.0/24 10835 -24.223.72.0/22 209 -24.223.76.0/24 30110 -24.223.77.0/24 209 -24.223.78.0/24 30110 -24.223.79.0/24 13659 -24.223.80.0/24 40285 -24.223.81.0/24 19108 -24.223.82.0/23 40285 -24.223.84.0/23 40285 -24.223.87.0/24 40285 -24.223.88.0/23 40285 -24.223.90.0/23 12208 -24.223.92.0/23 12208 -24.223.94.0/23 40285 -24.223.96.0/22 30164 -24.223.100.0/22 4474 -24.223.104.0/21 30164 -24.223.112.0/22 30164 -24.223.116.0/23 30164 -24.223.118.0/24 30164 -24.223.128.0/21 33363 -24.223.136.0/21 10796 -24.223.144.0/21 10796 -24.223.152.0/23 10796 -24.223.156.0/22 10796 -24.223.160.0/19 10796 -24.223.192.0/20 10796 -24.223.208.0/21 10796 -24.223.224.0/19 11427 -24.224.0.0/19 10821 -24.224.32.0/22 11492 -24.224.38.0/23 11492 -24.224.40.0/22 11492 -24.224.45.0/24 11492 -24.224.46.0/23 11492 -24.224.48.0/22 11492 -24.224.52.0/23 11492 -24.224.57.0/24 18812 -24.224.64.0/18 27264 -24.224.128.0/18 11260 -24.224.192.0/19 11260 -24.224.224.0/21 11260 -24.224.232.0/23 11260 -24.224.234.0/23 394846 -24.224.236.0/22 11260 -24.224.240.0/20 11260 -24.225.0.0/19 14155 -24.225.32.0/19 11426 -24.225.64.0/19 11426 -24.225.96.0/20 11232 -24.225.112.0/20 33234 -24.225.128.0/17 5769 -24.226.0.0/17 7992 -24.226.128.0/17 11290 -24.227.0.0/21 14638 -24.227.8.0/23 14638 -24.227.10.0/24 36423 -24.227.11.0/24 14638 -24.227.12.0/22 14638 -24.227.16.0/20 14638 -24.227.32.0/19 33363 -24.227.64.0/18 33363 -24.227.128.0/18 11427 -24.227.192.0/20 11427 -24.227.208.0/23 11427 -24.227.210.0/24 11427 -24.227.211.0/24 27325 -24.227.212.0/22 11427 -24.227.216.0/21 11427 -24.227.224.0/19 11427 -24.228.0.0/16 6128 -24.229.0.0/16 3737 -24.230.0.0/19 132418 -24.230.32.0/19 11232 -24.230.64.0/18 11232 -24.230.128.0/18 11232 -24.230.192.0/18 11290 -24.231.0.0/20 46618 -24.231.16.0/20 40098 -24.231.32.0/19 15146 -24.231.64.0/19 23184 -24.231.96.0/20 22423 -24.231.112.0/20 29866 -24.231.128.0/17 20115 -24.232.0.0/20 10481 -24.232.16.0/20 10318 -24.232.32.0/19 10318 -24.232.64.0/18 10318 -24.232.128.0/19 10318 -24.232.160.0/20 10318 -24.232.176.0/20 10481 -24.232.192.0/19 10318 -24.232.224.0/20 10318 -24.232.240.0/20 10481 -24.233.0.0/24 134121 -24.233.1.0/24 328543 -24.233.2.0/23 328543 -24.233.4.0/22 328543 -24.233.8.0/21 328543 -24.233.16.0/20 134121 -24.233.32.0/19 11427 -24.233.64.0/20 32220 -24.233.80.0/21 32220 -24.233.88.0/22 32220 -24.233.92.0/23 32220 -24.233.94.0/24 3763 -24.233.95.0/24 32220 -24.233.96.0/19 32448 -24.233.128.0/19 33363 -24.233.160.0/19 30404 -24.233.192.0/21 19635 -24.233.200.0/23 21688 -24.233.202.0/23 36790 -24.233.204.0/23 32448 -24.233.206.0/23 26504 -24.233.208.0/22 21688 -24.233.212.0/22 32448 -24.233.216.0/22 32448 -24.233.220.0/24 21688 -24.233.221.0/24 23391 -24.233.222.0/24 21688 -24.233.223.0/24 23391 -24.233.224.0/19 46687 -24.234.0.0/20 22773 -24.234.16.0/22 22773 -24.234.20.0/24 22773 -24.234.21.0/24 40222 -24.234.22.0/23 22773 -24.234.24.0/21 22773 -24.234.32.0/19 22773 -24.234.64.0/18 22773 -24.234.128.0/19 22773 -24.234.160.0/20 22773 -24.234.176.0/22 35937 -24.234.180.0/22 22773 -24.234.184.0/21 22773 -24.234.192.0/18 22773 -24.235.0.0/24 4261 -24.235.3.0/24 394384 -24.235.4.0/23 53889 -24.235.6.0/24 53559 -24.235.8.0/23 36599 -24.235.10.0/23 32896 -24.235.12.0/23 64267 -24.235.14.0/23 394297 -24.235.16.0/23 55098 -24.235.18.0/24 1646 -24.235.19.0/24 26994 -24.235.20.0/23 23470 -24.235.22.0/23 203872 -24.235.26.0/23 133772 -24.235.29.0/24 133772 -24.235.30.0/23 133772 -24.235.32.0/19 23184 -24.235.64.0/20 11351 -24.235.80.0/20 14291 -24.235.96.0/19 812 -24.235.128.0/17 7992 -24.236.32.0/21 4181 -24.236.40.0/21 11232 -24.236.48.0/22 20368 -24.236.52.0/22 4181 -24.236.60.0/22 11232 -24.236.64.0/18 12083 -24.236.128.0/17 20115 -24.237.0.0/16 8047 -24.238.0.0/24 174 -24.238.1.0/24 23089 -24.238.2.0/24 174 -24.238.4.0/22 23089 -24.238.8.0/22 23089 -24.238.12.0/22 174 -24.238.16.0/20 23089 -24.238.32.0/19 3737 -24.238.64.0/19 3737 -24.238.96.0/21 174 -24.238.104.0/22 174 -24.238.108.0/23 23089 -24.238.110.0/23 174 -24.238.112.0/22 174 -24.238.116.0/22 23089 -24.238.120.0/21 23089 -24.238.128.0/17 11427 -24.239.0.0/20 40383 -24.239.16.0/20 25853 -24.239.32.0/19 27364 -24.239.64.0/18 27364 -24.239.128.0/18 12271 -24.239.192.0/18 27364 -24.240.0.0/18 20115 -24.240.64.0/19 20115 -24.240.96.0/20 20115 -24.240.112.0/21 20115 -24.240.120.0/22 20115 -24.240.124.0/24 20028 -24.240.125.0/24 27453 -24.240.127.0/24 393723 -24.240.128.0/21 20115 -24.240.136.0/22 20115 -24.240.142.0/23 20115 -24.240.144.0/24 20115 -24.240.146.0/24 20115 -24.240.147.0/24 395286 -24.240.148.0/22 20115 -24.240.160.0/19 20115 -24.240.192.0/24 40142 -24.240.194.0/24 32989 -24.240.196.0/22 20115 -24.240.200.0/21 20115 -24.240.216.0/21 20115 -24.240.232.0/21 20115 -24.240.240.0/20 20115 -24.241.4.0/22 20115 -24.241.8.0/21 20115 -24.241.16.0/20 20115 -24.241.32.0/19 20115 -24.241.64.0/18 20115 -24.241.128.0/19 20115 -24.241.160.0/20 20115 -24.241.176.0/21 20115 -24.241.189.0/24 16787 -24.241.190.0/23 16787 -24.241.192.0/18 20115 -24.242.0.0/17 11427 -24.242.128.0/19 11427 -24.242.160.0/20 11427 -24.242.176.0/21 11427 -24.242.184.0/22 11427 -24.242.188.0/22 19115 -24.242.192.0/18 11427 -24.243.0.0/16 11427 -24.244.0.0/18 6327 -24.244.64.0/20 18988 -24.244.80.0/20 33541 -24.244.96.0/21 53508 -24.244.104.0/22 53508 -24.244.108.0/23 1651 -24.244.110.0/24 53508 -24.244.111.0/24 3356 -24.244.112.0/20 14008 -24.244.128.0/18 15146 -24.244.192.0/19 16949 -24.244.232.0/21 16949 -24.244.240.0/21 16949 -24.244.248.0/22 16949 -24.244.253.0/24 19821 -24.245.0.0/18 7922 -24.245.64.0/22 40285 -24.245.70.0/24 12208 -24.245.71.0/24 40285 -24.245.76.0/22 40285 -24.245.80.0/20 10971 -24.245.96.0/21 21688 -24.245.104.0/24 21688 -24.245.105.0/24 26504 -24.245.106.0/23 26504 -24.245.108.0/24 26504 -24.245.109.0/24 36790 -24.245.110.0/23 36790 -24.245.112.0/22 46687 -24.245.116.0/22 36790 -24.245.120.0/22 23391 -24.245.124.0/23 32448 -24.245.126.0/23 23391 -24.245.128.0/22 11492 -24.245.132.0/24 11492 -24.245.135.0/24 11492 -24.245.136.0/21 11492 -24.245.144.0/23 11492 -24.245.147.0/24 11492 -24.245.148.0/22 11492 -24.245.152.0/21 11492 -24.245.160.0/19 11492 -24.245.192.0/20 11492 -24.245.209.0/24 11492 -24.245.210.0/23 11492 -24.245.212.0/22 11492 -24.245.216.0/21 11492 -24.245.224.0/20 19016 -24.245.240.0/20 2386 -24.246.0.0/18 5645 -24.246.64.0/19 5645 -24.246.96.0/21 6128 -24.246.104.0/24 6128 -24.246.105.0/24 53720 -24.246.106.0/24 6128 -24.246.107.0/24 54004 -24.246.108.0/22 6128 -24.246.112.0/23 6128 -24.246.114.0/24 54467 -24.246.115.0/24 6128 -24.246.116.0/22 6128 -24.246.120.0/22 6128 -24.246.124.0/23 6128 -24.246.126.0/24 53958 -24.246.127.0/24 6128 -24.246.128.0/20 53488 -24.246.144.0/22 53488 -24.246.148.0/23 53488 -24.246.150.0/24 53488 -24.246.151.0/24 23118 -24.246.152.0/24 23118 -24.246.153.0/24 53488 -24.246.154.0/23 53488 -24.246.156.0/22 53488 -24.246.160.0/19 53488 -24.246.192.0/19 40918 -24.246.224.0/19 3737 -24.247.0.0/16 20115 -24.248.0.0/21 22773 -24.248.8.0/22 22773 -24.248.12.0/23 22773 -24.248.14.0/23 11492 -24.248.16.0/22 22773 -24.248.20.0/23 22773 -24.248.22.0/24 22773 -24.248.23.0/24 40077 -24.248.24.0/21 22773 -24.248.32.0/20 22773 -24.248.48.0/21 22773 -24.248.56.0/22 22773 -24.248.60.0/23 22773 -24.248.62.0/24 22773 -24.248.63.0/24 7818 -24.248.64.0/23 22773 -24.248.66.0/24 11492 -24.248.67.0/24 22773 -24.248.68.0/22 22773 -24.248.72.0/21 22773 -24.248.80.0/21 22773 -24.248.88.0/24 22773 -24.248.89.0/24 15013 -24.248.90.0/23 22773 -24.248.92.0/22 22773 -24.248.96.0/20 22773 -24.248.112.0/22 22773 -24.248.116.0/24 22773 -24.248.117.0/24 36860 -24.248.118.0/23 22773 -24.248.120.0/21 22773 -24.248.128.0/20 22773 -24.248.144.0/21 22773 -24.248.152.0/23 22773 -24.248.154.0/23 13980 -24.248.156.0/22 22773 -24.248.160.0/22 22773 -24.248.164.0/23 22773 -24.248.166.0/24 11981 -24.248.167.0/24 22773 -24.248.168.0/21 22773 -24.248.176.0/20 22773 -24.248.192.0/19 22773 -24.248.224.0/20 22773 -24.248.240.0/24 46145 -24.248.241.0/24 22773 -24.248.242.0/24 22773 -24.248.243.0/24 36860 -24.248.244.0/23 22773 -24.248.246.0/24 22773 -24.248.247.0/24 35910 -24.248.248.0/23 22773 -24.248.250.0/24 22773 -24.248.251.0/24 20102 -24.248.252.0/22 22773 -24.249.0.0/18 22773 -24.249.64.0/19 22773 -24.249.96.0/20 22773 -24.249.112.0/24 22773 -24.249.113.0/24 35851 -24.249.114.0/23 22773 -24.249.116.0/22 22773 -24.249.120.0/21 22773 -24.249.128.0/18 22773 -24.249.192.0/19 22773 -24.249.224.0/22 27582 -24.249.228.0/22 22773 -24.249.232.0/21 22773 -24.249.240.0/20 22773 -24.250.0.0/15 22773 -24.252.0.0/17 22773 -24.252.128.0/19 22773 -24.252.160.0/21 22773 -24.252.168.0/22 22773 -24.252.172.0/24 395397 -24.252.173.0/24 22773 -24.252.174.0/23 22773 -24.252.176.0/20 22773 -24.252.192.0/18 22773 -24.253.0.0/16 22773 -24.254.0.0/18 22773 -24.254.64.0/20 22773 -24.254.80.0/21 22773 -24.254.88.0/22 22773 -24.254.92.0/24 395367 -24.254.93.0/24 22773 -24.254.94.0/23 22773 -24.254.96.0/19 22773 -24.254.128.0/17 22773 -24.255.0.0/16 22773 -25.25.25.0/24 206747 -25.26.27.0/24 206747 -25.212.128.0/24 7552 -25.212.133.0/24 7552 -25.240.0.0/21 199055 -27.0.0.0/22 16509 -27.0.4.0/22 55420 -27.0.12.0/22 45544 -27.0.16.0/20 55900 -27.0.32.0/20 17514 -27.0.48.0/24 132573 -27.0.49.0/24 45415 -27.0.50.0/23 45415 -27.0.52.0/22 45415 -27.0.56.0/22 45415 -27.0.60.0/24 45415 -27.0.61.0/24 132573 -27.0.62.0/24 45415 -27.0.63.0/24 132573 -27.0.64.0/19 10113 -27.0.128.0/24 4837 -27.0.130.0/23 4837 -27.0.140.0/22 132954 -27.0.152.0/22 131607 -27.0.156.0/22 26658 -27.0.168.0/22 132971 -27.0.172.0/22 58438 -27.0.176.0/21 45942 -27.0.192.0/22 138415 -27.0.196.0/22 59288 -27.0.200.0/23 17439 -27.0.202.0/24 17439 -27.0.203.0/24 133883 -27.0.204.0/22 63679 -27.0.208.0/21 63677 -27.0.216.0/21 9829 -27.0.228.0/24 134871 -27.0.231.0/24 134871 -27.0.232.0/24 133752 -27.0.233.0/24 206804 -27.0.234.0/23 8100 -27.0.236.0/22 38099 -27.0.244.0/22 9829 -27.0.248.0/22 9829 -27.1.0.0/21 9943 -27.1.8.0/22 9943 -27.1.12.0/23 9943 -27.1.14.0/24 9943 -27.1.15.0/24 45996 -27.1.16.0/22 45996 -27.1.20.0/22 9943 -27.1.24.0/21 9943 -27.1.32.0/21 9943 -27.1.40.0/23 9943 -27.1.42.0/23 45996 -27.1.44.0/22 9943 -27.1.48.0/20 9943 -27.1.64.0/18 9943 -27.1.128.0/18 9943 -27.1.192.0/20 9943 -27.1.208.0/21 9943 -27.1.216.0/23 9943 -27.1.218.0/23 45996 -27.1.220.0/22 9943 -27.1.224.0/19 9943 -27.2.0.0/15 45543 -27.4.0.0/18 17488 -27.4.64.0/19 17488 -27.4.96.0/20 17488 -27.4.112.0/21 17488 -27.4.120.0/22 17488 -27.4.124.0/23 17488 -27.4.128.0/17 17488 -27.5.0.0/16 17488 -27.6.0.0/18 17488 -27.6.68.0/22 17488 -27.6.72.0/21 17488 -27.6.80.0/20 17488 -27.6.96.0/19 17488 -27.6.128.0/17 17488 -27.7.0.0/19 17488 -27.7.32.0/20 17488 -27.7.48.0/21 17488 -27.7.56.0/24 17488 -27.7.60.0/22 17488 -27.7.64.0/19 17488 -27.7.96.0/20 17488 -27.7.120.0/21 17488 -27.7.128.0/17 17488 -27.8.0.0/13 4837 -27.16.0.0/15 4134 -27.18.0.0/16 4134 -27.19.0.0/17 4134 -27.19.128.0/18 4134 -27.19.192.0/19 4134 -27.19.224.0/20 4134 -27.19.240.0/21 4134 -27.19.248.0/21 58563 -27.20.0.0/15 4134 -27.22.0.0/19 4134 -27.22.32.0/20 4134 -27.22.48.0/22 4134 -27.22.52.0/22 136192 -27.22.56.0/22 136192 -27.22.60.0/22 4134 -27.22.64.0/18 4134 -27.22.128.0/17 4134 -27.23.0.0/16 4134 -27.24.0.0/13 4134 -27.32.0.0/15 7545 -27.34.0.0/17 17501 -27.34.128.0/19 9597 -27.34.160.0/21 9597 -27.34.168.0/21 9993 -27.34.176.0/23 55464 -27.34.179.0/24 58523 -27.34.180.0/24 55464 -27.34.181.0/24 58755 -27.34.182.0/23 55464 -27.34.184.0/23 55464 -27.34.189.0/24 58523 -27.34.190.0/23 55464 -27.34.192.0/19 17941 -27.34.224.0/23 24500 -27.34.226.0/23 45510 -27.34.228.0/22 24500 -27.34.240.0/20 45648 -27.35.0.0/22 9762 -27.35.4.0/22 7562 -27.35.8.0/21 7562 -27.35.16.0/21 9762 -27.35.24.0/21 9569 -27.35.32.0/21 9569 -27.35.40.0/21 9762 -27.35.48.0/20 9762 -27.35.64.0/20 9762 -27.35.80.0/20 9319 -27.35.96.0/20 10175 -27.35.112.0/20 7623 -27.35.128.0/17 23584 -27.36.0.0/18 17816 -27.36.64.0/19 17816 -27.36.96.0/20 17816 -27.36.112.0/24 17816 -27.36.113.0/24 136959 -27.36.114.0/23 17816 -27.36.116.0/23 17816 -27.36.118.0/23 136959 -27.36.120.0/21 136959 -27.36.128.0/18 17816 -27.36.192.0/19 17816 -27.36.224.0/22 136959 -27.36.228.0/22 17816 -27.36.232.0/21 17816 -27.36.240.0/20 17816 -27.37.0.0/16 17816 -27.38.0.0/16 17623 -27.39.0.0/19 17622 -27.39.32.0/19 17623 -27.39.64.0/18 17816 -27.39.128.0/21 17816 -27.39.136.0/21 17623 -27.39.144.0/20 17816 -27.39.160.0/19 17816 -27.39.192.0/18 17816 -27.40.0.0/21 17816 -27.40.8.0/22 17622 -27.40.12.0/22 17816 -27.40.16.0/21 17623 -27.40.24.0/21 17816 -27.40.32.0/19 17816 -27.40.64.0/18 17816 -27.40.128.0/17 17816 -27.41.0.0/16 17816 -27.42.0.0/15 17816 -27.44.0.0/16 17816 -27.45.0.0/17 17816 -27.45.128.0/20 17816 -27.45.144.0/24 136959 -27.45.145.0/24 17816 -27.45.146.0/23 17816 -27.45.148.0/23 17816 -27.45.150.0/23 136959 -27.45.152.0/21 17816 -27.45.160.0/24 17816 -27.45.161.0/24 136959 -27.45.162.0/23 17816 -27.45.164.0/22 136959 -27.45.168.0/21 17816 -27.45.176.0/20 17816 -27.45.192.0/18 17816 -27.46.0.0/17 17623 -27.46.128.0/17 17622 -27.47.0.0/18 17622 -27.47.64.0/18 17816 -27.47.128.0/17 17622 -27.48.64.0/18 23772 -27.48.128.0/18 23772 -27.48.224.0/20 23772 -27.48.240.0/21 23772 -27.49.64.0/19 23772 -27.49.160.0/19 23772 -27.49.232.0/21 23772 -27.50.0.0/23 55303 -27.50.2.0/24 21859 -27.50.3.0/24 55303 -27.50.4.0/23 55448 -27.50.12.0/22 17676 -27.50.16.0/23 131111 -27.50.18.0/23 23947 -27.50.20.0/24 131111 -27.50.21.0/24 23947 -27.50.22.0/23 23947 -27.50.24.0/22 23947 -27.50.29.0/24 131111 -27.50.30.0/23 23947 -27.50.32.0/24 38186 -27.50.33.0/24 6939 -27.50.34.0/23 6939 -27.50.36.0/22 6939 -27.50.48.0/22 135026 -27.50.52.0/22 64050 -27.50.56.0/22 64050 -27.50.60.0/23 64050 -27.50.62.0/24 64050 -27.50.63.0/24 38197 -27.50.64.0/19 45671 -27.50.128.0/17 4837 -27.51.0.0/16 9674 -27.52.0.0/15 9674 -27.54.0.0/19 4657 -27.54.32.0/22 9874 -27.54.36.0/24 4657 -27.54.37.0/24 9874 -27.54.38.0/23 9874 -27.54.40.0/21 4657 -27.54.48.0/20 4657 -27.54.64.0/21 132848 -27.54.72.0/24 133948 -27.54.73.0/24 133741 -27.54.80.0/20 38719 -27.54.96.0/20 45687 -27.54.112.0/22 45687 -27.54.116.0/22 58396 -27.54.120.0/22 55453 -27.54.124.0/22 10013 -27.54.128.0/20 24541 -27.54.144.0/22 58691 -27.54.148.0/22 133854 -27.54.160.0/20 45117 -27.54.176.0/21 45117 -27.54.184.0/24 45117 -27.54.185.0/24 56315 -27.54.186.0/23 45117 -27.54.188.0/22 45117 -27.54.192.0/19 4837 -27.54.224.0/19 4134 -27.55.0.0/18 132061 -27.55.64.0/21 132061 -27.55.72.0/22 132061 -27.55.76.0/22 7470 -27.55.80.0/22 7470 -27.55.84.0/22 132061 -27.55.88.0/22 132061 -27.55.92.0/22 7470 -27.55.96.0/19 7470 -27.55.128.0/18 132061 -27.55.192.0/18 7470 -27.56.0.0/17 45609 -27.56.128.0/18 24560 -27.56.192.0/18 45609 -27.57.16.0/20 24560 -27.57.32.0/19 24560 -27.57.128.0/18 24560 -27.57.192.0/19 45609 -27.57.224.0/20 45609 -27.59.0.0/19 45609 -27.59.32.0/20 45609 -27.59.48.0/22 45609 -27.59.56.0/22 45609 -27.59.64.0/22 45609 -27.59.72.0/22 45609 -27.59.80.0/22 45609 -27.59.88.0/22 45609 -27.59.96.0/22 45609 -27.59.104.0/22 45609 -27.59.112.0/22 45609 -27.59.120.0/22 45609 -27.59.128.0/18 45609 -27.59.192.0/20 45609 -27.59.208.0/21 45609 -27.59.224.0/20 45609 -27.60.0.0/17 45609 -27.60.128.0/19 45609 -27.60.160.0/22 45609 -27.60.168.0/22 45609 -27.60.176.0/22 45609 -27.60.184.0/22 45609 -27.60.192.0/19 45609 -27.60.236.0/22 45609 -27.61.0.0/18 45609 -27.61.64.0/21 45609 -27.61.76.0/22 45609 -27.61.80.0/20 45609 -27.61.96.0/19 45609 -27.61.128.0/18 45609 -27.61.192.0/22 45609 -27.61.200.0/21 45609 -27.61.208.0/20 45609 -27.61.224.0/19 45609 -27.62.0.0/18 45609 -27.62.64.0/19 45609 -27.62.96.0/20 45609 -27.62.112.0/22 45609 -27.62.120.0/22 45609 -27.62.128.0/17 45609 -27.63.48.0/21 45609 -27.63.56.0/22 45609 -27.63.64.0/19 45609 -27.63.96.0/20 45609 -27.63.112.0/21 45609 -27.63.128.0/19 45609 -27.63.160.0/19 134426 -27.64.0.0/14 7552 -27.68.0.0/15 7552 -27.70.0.0/16 7552 -27.71.0.0/17 7552 -27.71.128.0/18 7552 -27.71.192.0/19 7552 -27.71.224.0/21 38731 -27.71.232.0/21 7552 -27.71.240.0/20 7552 -27.72.0.0/13 7552 -27.80.0.0/12 2516 -27.96.0.0/20 45690 -27.96.16.0/21 2519 -27.96.24.0/24 4648 -27.96.26.0/24 4648 -27.96.28.0/24 4648 -27.96.30.0/24 4648 -27.96.32.0/19 2519 -27.96.64.0/22 55524 -27.96.68.0/22 7670 -27.96.72.0/21 17689 -27.96.80.0/22 17689 -27.96.84.0/22 38901 -27.96.88.0/22 134913 -27.96.92.0/22 132165 -27.96.96.0/19 17547 -27.96.128.0/21 135354 -27.96.136.0/21 4766 -27.96.192.0/19 18390 -27.96.224.0/19 17809 -27.97.0.0/18 45271 -27.97.64.0/20 45271 -27.97.84.0/22 45271 -27.97.96.0/20 45271 -27.97.128.0/17 45271 -27.98.0.0/17 10010 -27.98.128.0/18 10010 -27.98.192.0/20 45932 -27.98.224.0/19 4837 -27.99.0.0/17 4804 -27.100.0.0/22 9283 -27.100.7.0/24 56096 -27.100.8.0/24 18068 -27.100.10.0/23 18068 -27.100.12.0/23 136946 -27.100.14.0/24 136946 -27.100.23.0/24 22363 -27.100.24.0/22 59179 -27.100.32.0/22 55378 -27.100.36.0/23 36351 -27.100.39.0/24 7489 -27.100.40.0/21 45458 -27.100.48.0/20 23805 -27.100.64.0/18 18049 -27.100.128.0/17 9946 -27.101.10.0/23 17841 -27.101.12.0/22 17841 -27.101.16.0/20 17841 -27.101.32.0/19 17841 -27.101.64.0/18 17841 -27.101.128.0/19 17841 -27.101.160.0/22 17841 -27.101.164.0/23 17841 -27.101.166.0/24 17841 -27.101.191.0/24 17841 -27.101.192.0/19 17841 -27.102.0.0/16 45996 -27.103.150.0/24 138449 -27.104.0.0/16 4773 -27.105.0.0/18 18182 -27.105.64.0/20 18182 -27.105.80.0/23 18182 -27.105.82.0/24 32787 -27.105.83.0/24 18182 -27.105.84.0/22 18182 -27.105.88.0/21 18182 -27.105.96.0/19 18182 -27.105.128.0/17 18182 -27.106.0.0/22 45194 -27.106.4.0/23 45194 -27.106.6.0/24 45194 -27.106.7.0/24 136334 -27.106.8.0/23 45194 -27.106.10.0/24 45194 -27.106.11.0/24 136334 -27.106.12.0/22 45194 -27.106.16.0/21 45194 -27.106.24.0/22 45194 -27.106.28.0/23 45194 -27.106.30.0/24 136334 -27.106.31.0/24 45194 -27.106.32.0/20 45194 -27.106.48.0/21 45194 -27.106.56.0/23 45194 -27.106.58.0/24 45194 -27.106.59.0/24 136334 -27.106.60.0/22 45194 -27.106.64.0/20 45194 -27.106.80.0/23 45194 -27.106.82.0/24 136334 -27.106.83.0/24 45194 -27.106.84.0/22 45194 -27.106.88.0/21 45194 -27.106.96.0/20 45194 -27.106.112.0/22 45194 -27.106.116.0/24 136334 -27.106.117.0/24 45194 -27.106.118.0/24 136334 -27.106.119.0/24 45194 -27.106.120.0/21 45194 -27.106.128.0/18 17816 -27.106.200.0/22 18037 -27.106.204.0/22 56013 -27.106.208.0/21 18260 -27.106.216.0/21 38325 -27.106.224.0/19 18260 -27.107.240.0/20 55441 -27.108.0.0/16 6648 -27.109.0.0/19 17625 -27.109.64.0/19 45754 -27.109.96.0/21 18129 -27.109.104.0/22 9911 -27.109.108.0/22 45763 -27.109.112.0/22 45498 -27.109.116.0/22 45429 -27.109.120.0/22 18097 -27.109.124.0/22 4812 -27.109.128.0/17 4609 -27.110.0.0/20 8220 -27.110.16.0/22 8220 -27.110.20.0/22 10021 -27.110.24.0/21 10021 -27.110.32.0/19 10021 -27.110.64.0/21 2914 -27.110.72.0/21 9221 -27.110.80.0/22 58730 -27.110.96.0/20 23783 -27.110.112.0/21 23783 -27.110.120.0/21 23655 -27.110.128.0/24 9299 -27.110.129.0/24 132508 -27.110.130.0/23 9299 -27.110.132.0/22 9299 -27.110.136.0/21 9299 -27.110.144.0/20 9299 -27.110.160.0/19 9299 -27.110.192.0/21 9299 -27.110.200.0/23 9299 -27.110.202.0/24 9299 -27.110.203.0/24 18190 -27.110.204.0/22 9299 -27.110.208.0/22 9299 -27.110.212.0/23 9299 -27.110.214.0/24 9299 -27.110.215.0/24 137417 -27.110.216.0/21 9299 -27.110.224.0/23 9299 -27.110.226.0/24 9299 -27.110.227.0/24 21433 -27.110.228.0/22 9299 -27.110.232.0/21 9299 -27.110.240.0/20 9299 -27.111.0.0/21 24092 -27.111.8.0/22 55559 -27.111.12.0/24 63979 -27.111.13.0/24 55561 -27.111.14.0/24 55561 -27.111.15.0/24 63979 -27.111.16.0/20 4613 -27.111.32.0/23 24532 -27.111.34.0/24 58477 -27.111.35.0/24 24532 -27.111.36.0/22 24532 -27.111.40.0/21 24532 -27.111.64.0/21 45768 -27.111.76.0/22 23720 -27.111.80.0/24 45671 -27.111.81.0/24 38719 -27.111.82.0/23 38719 -27.111.84.0/24 135132 -27.111.85.0/24 45671 -27.111.86.0/24 38719 -27.111.87.0/24 45671 -27.111.88.0/23 38719 -27.111.90.0/23 45671 -27.111.92.0/22 38719 -27.111.96.0/19 17596 -27.111.160.0/19 17819 -27.111.192.0/20 17819 -27.111.208.0/22 9989 -27.111.212.0/24 131194 -27.111.213.0/24 9989 -27.111.214.0/23 9989 -27.111.216.0/21 9989 -27.111.224.0/22 9989 -27.111.232.0/21 9989 -27.111.240.0/20 17819 -27.112.0.0/21 4837 -27.112.64.0/21 46063 -27.112.72.0/23 55564 -27.112.80.0/23 45084 -27.112.82.0/24 45084 -27.112.84.0/22 45084 -27.112.104.0/21 63997 -27.112.128.0/17 18310 -27.113.0.0/17 9781 -27.113.192.0/19 9351 -27.113.224.0/20 9354 -27.113.240.0/21 9336 -27.113.248.0/22 9378 -27.113.252.0/22 131215 -27.114.0.0/17 4713 -27.114.128.0/18 7642 -27.115.0.0/17 17621 -27.115.128.0/18 9971 -27.115.192.0/18 17871 -27.116.0.0/20 9378 -27.116.16.0/22 45582 -27.116.20.0/23 45582 -27.116.22.0/24 45582 -27.116.23.0/24 135226 -27.116.24.0/21 17940 -27.116.36.0/22 55581 -27.116.48.0/21 45916 -27.116.56.0/22 64081 -27.116.60.0/22 55636 -27.116.64.0/18 17854 -27.116.128.0/17 17608 -27.117.0.0/17 17857 -27.117.128.0/18 10164 -27.117.192.0/18 9756 -27.118.0.0/20 55376 -27.118.16.0/20 55313 -27.118.32.0/24 17903 -27.118.33.0/24 11690 -27.118.34.0/23 17903 -27.118.36.0/22 17903 -27.118.40.0/22 17903 -27.118.64.0/18 17573 -27.118.128.0/17 17877 -27.119.0.0/17 23563 -27.119.128.0/17 17864 -27.120.0.0/18 23578 -27.120.64.0/18 10013 -27.120.128.0/20 10013 -27.120.144.0/20 7522 -27.120.160.0/20 7522 -27.120.180.0/22 10013 -27.120.184.0/21 10013 -27.120.192.0/18 10013 -27.121.0.0/18 10010 -27.121.64.0/21 24446 -27.121.80.0/21 55652 -27.121.88.0/22 55752 -27.121.92.0/22 23616 -27.121.96.0/24 56304 -27.121.97.0/24 9503 -27.121.100.0/22 45916 -27.121.104.0/23 23992 -27.121.106.0/24 23992 -27.121.108.0/22 56111 -27.121.112.0/21 55754 -27.121.128.0/17 2519 -27.122.0.0/22 56089 -27.122.12.0/22 55536 -27.122.16.0/20 55792 -27.122.56.0/22 55799 -27.122.64.0/19 9374 -27.122.96.0/20 9374 -27.122.112.0/22 38195 -27.122.116.0/23 38195 -27.122.118.0/23 58868 -27.122.120.0/21 38195 -27.122.128.0/17 4668 -27.123.0.0/21 45706 -27.123.8.0/22 38638 -27.123.12.0/23 38638 -27.123.14.0/24 38638 -27.123.16.0/22 38082 -27.123.20.0/23 133090 -27.123.22.0/24 133090 -27.123.24.0/21 38719 -27.123.36.0/24 10310 -27.123.38.0/24 17457 -27.123.39.0/24 10310 -27.123.40.0/23 24506 -27.123.42.0/23 10310 -27.123.48.0/22 24506 -27.123.128.0/20 38442 -27.123.144.0/22 38442 -27.123.148.0/24 100 -27.123.149.0/24 38442 -27.123.150.0/23 38442 -27.123.152.0/21 38442 -27.123.160.0/19 38442 -27.123.194.0/23 24506 -27.123.198.0/23 24506 -27.123.200.0/21 10229 -27.123.208.0/22 132827 -27.123.212.0/22 55805 -27.123.216.0/22 55832 -27.123.220.0/22 58369 -27.123.224.0/22 132138 -27.123.228.0/22 132146 -27.123.232.0/22 134548 -27.123.240.0/24 4755 -27.123.241.0/24 132116 -27.123.242.0/23 132116 -27.123.244.0/22 132210 -27.123.248.0/22 133278 -27.123.252.0/22 134113 -27.124.0.0/21 64050 -27.124.8.0/22 64050 -27.124.12.0/23 64050 -27.124.14.0/24 64050 -27.124.17.0/24 64050 -27.124.18.0/23 64050 -27.124.20.0/22 64050 -27.124.24.0/21 64050 -27.124.32.0/20 64050 -27.124.48.0/24 64050 -27.124.52.0/24 64050 -27.124.55.0/24 64050 -27.124.56.0/23 64050 -27.124.61.0/24 64050 -27.124.62.0/23 64050 -27.124.81.0/24 38527 -27.124.82.0/24 38527 -27.124.85.0/24 135450 -27.124.86.0/24 38527 -27.124.92.0/22 38527 -27.124.96.0/20 55811 -27.124.112.0/20 38719 -27.124.128.0/18 38109 -27.124.192.0/19 38109 -27.124.224.0/21 38109 -27.124.232.0/22 17573 -27.124.236.0/22 38109 -27.124.240.0/21 38109 -27.124.248.0/22 38109 -27.124.252.0/22 17573 -27.125.0.0/19 4766 -27.125.32.0/20 4766 -27.125.48.0/22 4766 -27.125.52.0/23 4766 -27.125.54.0/23 45372 -27.125.56.0/21 45372 -27.125.64.0/20 45372 -27.125.80.0/21 45372 -27.125.88.0/21 4766 -27.125.96.0/19 4766 -27.125.128.0/18 55430 -27.125.192.0/22 45879 -27.125.196.0/22 10024 -27.125.200.0/22 55814 -27.125.204.0/22 55383 -27.125.208.0/20 55813 -27.125.224.0/19 38466 -27.126.0.0/22 38133 -27.126.4.0/22 38387 -27.126.8.0/24 38133 -27.126.9.0/24 38387 -27.126.10.0/23 38387 -27.126.12.0/22 38133 -27.126.16.0/23 38133 -27.126.18.0/23 38387 -27.126.20.0/23 38387 -27.126.22.0/24 38387 -27.126.24.0/21 38133 -27.126.32.0/21 38133 -27.126.40.0/22 38133 -27.126.44.0/23 38133 -27.126.46.0/24 38133 -27.126.47.0/24 38387 -27.126.48.0/20 38133 -27.126.64.0/18 18136 -27.126.128.0/20 18136 -27.126.144.0/21 55819 -27.126.152.0/22 55821 -27.126.156.0/22 55827 -27.126.177.0/24 38186 -27.126.178.0/23 38186 -27.126.180.0/22 38186 -27.126.184.0/23 38186 -27.126.187.0/24 38186 -27.126.188.0/22 38186 -27.126.192.0/22 45474 -27.126.197.0/24 45474 -27.126.198.0/23 45474 -27.126.200.0/22 45474 -27.126.205.0/24 45474 -27.126.206.0/23 45474 -27.126.208.0/24 45474 -27.126.209.0/24 63005 -27.126.210.0/23 45474 -27.126.212.0/24 45474 -27.126.215.0/24 45474 -27.126.216.0/23 45474 -27.126.220.0/24 45474 -27.126.221.0/24 59268 -27.126.222.0/23 59268 -27.126.224.0/23 45474 -27.126.226.0/24 45474 -27.126.228.0/23 59268 -27.126.230.0/24 59268 -27.126.231.0/24 45474 -27.126.233.0/24 45474 -27.126.234.0/23 45474 -27.126.236.0/22 45474 -27.126.240.0/20 45474 -27.127.0.0/17 2518 -27.127.128.0/18 7524 -27.127.192.0/19 9652 -27.127.224.0/20 9652 -27.127.240.0/20 55388 -27.128.0.0/15 4134 -27.130.0.0/18 45758 -27.130.64.0/20 45758 -27.130.80.0/21 45758 -27.130.88.0/21 45629 -27.130.96.0/19 45629 -27.130.128.0/17 45629 -27.131.0.0/21 38753 -27.131.8.0/22 38636 -27.131.12.0/22 55492 -27.131.16.0/20 23629 -27.131.32.0/20 23678 -27.131.48.0/21 23678 -27.131.56.0/22 23678 -27.131.60.0/23 23678 -27.131.62.0/23 45121 -27.131.64.0/18 38880 -27.131.128.0/20 24187 -27.131.144.0/21 24187 -27.131.152.0/22 24187 -27.131.156.0/23 24187 -27.131.158.0/24 24187 -27.131.159.0/24 136158 -27.131.160.0/21 24187 -27.131.168.0/22 24187 -27.131.172.0/24 45197 -27.131.173.0/24 24187 -27.131.174.0/23 24187 -27.131.176.0/20 24187 -27.131.192.0/21 23629 -27.131.208.0/21 45775 -27.131.216.0/22 38836 -27.131.224.0/20 17534 -27.131.240.0/21 59092 -27.132.12.0/22 10013 -27.132.32.0/19 10013 -27.132.64.0/18 10013 -27.132.128.0/19 10013 -27.132.160.0/20 10013 -27.132.192.0/18 10013 -27.133.0.0/21 10013 -27.133.8.0/23 10013 -27.133.16.0/21 10013 -27.133.46.0/23 10013 -27.133.48.0/20 7522 -27.133.90.0/23 10013 -27.133.92.0/22 10013 -27.133.96.0/19 10013 -27.133.128.0/19 9370 -27.133.160.0/21 10013 -27.133.168.0/22 10013 -27.133.184.0/21 10013 -27.133.192.0/20 7672 -27.133.208.0/20 24284 -27.133.224.0/22 17707 -27.133.228.0/22 58793 -27.133.232.0/21 58793 -27.133.240.0/22 4713 -27.133.244.0/23 58793 -27.133.246.0/24 58793 -27.133.247.0/24 9370 -27.133.248.0/22 59092 -27.133.252.0/22 9370 -27.134.0.0/20 10013 -27.134.22.0/23 10013 -27.134.24.0/21 10013 -27.134.32.0/19 10013 -27.134.64.0/21 10013 -27.134.80.0/20 10013 -27.134.128.0/19 7522 -27.134.160.0/20 7522 -27.134.176.0/21 10013 -27.134.184.0/22 10013 -27.134.188.0/24 10013 -27.134.240.0/20 9370 -27.135.0.0/19 10013 -27.135.48.0/21 10013 -27.135.73.0/24 10013 -27.135.74.0/23 10013 -27.135.96.0/19 10013 -27.135.128.0/17 10013 -27.136.0.0/13 9824 -27.144.0.0/16 9394 -27.145.0.0/16 17552 -27.147.0.0/18 18429 -27.147.64.0/20 58788 -27.147.80.0/20 23624 -27.147.96.0/20 17661 -27.147.112.0/20 131934 -27.147.128.0/17 23688 -27.148.0.0/17 4134 -27.148.128.0/19 133774 -27.148.160.0/19 133775 -27.148.192.0/22 133775 -27.148.196.0/22 133774 -27.148.200.0/23 133774 -27.148.202.0/24 133774 -27.148.203.0/24 4134 -27.148.204.0/24 4134 -27.148.205.0/24 133774 -27.148.206.0/23 133774 -27.148.208.0/21 133774 -27.148.216.0/21 4134 -27.148.224.0/20 4134 -27.148.240.0/21 4134 -27.148.248.0/23 133775 -27.148.250.0/23 4809 -27.148.252.0/22 4809 -27.149.0.0/16 4134 -27.150.0.0/20 4134 -27.150.16.0/20 133774 -27.150.32.0/19 4134 -27.150.64.0/18 4134 -27.150.128.0/19 4134 -27.150.160.0/21 4134 -27.150.168.0/21 133774 -27.150.176.0/22 4134 -27.150.180.0/22 133774 -27.150.184.0/22 133774 -27.150.188.0/23 133774 -27.150.190.0/24 133774 -27.150.191.0/24 4134 -27.150.192.0/18 4134 -27.151.0.0/19 133774 -27.151.32.0/19 4134 -27.151.64.0/18 4134 -27.151.128.0/17 4134 -27.152.0.0/19 4134 -27.152.32.0/20 4134 -27.152.48.0/21 4134 -27.152.56.0/22 4134 -27.152.60.0/24 133776 -27.152.61.0/24 4134 -27.152.62.0/23 4134 -27.152.64.0/18 4134 -27.152.128.0/19 4134 -27.152.160.0/20 4134 -27.152.176.0/21 4134 -27.152.184.0/22 133776 -27.152.188.0/23 4134 -27.152.190.0/23 133776 -27.152.192.0/18 4134 -27.153.0.0/16 4134 -27.154.0.0/16 4134 -27.155.0.0/18 4134 -27.155.64.0/18 133774 -27.155.128.0/17 4134 -27.156.0.0/15 4134 -27.158.0.0/16 4134 -27.159.0.0/18 4134 -27.159.64.0/20 133775 -27.159.80.0/22 133775 -27.159.84.0/23 4134 -27.159.86.0/23 133775 -27.159.88.0/21 133775 -27.159.96.0/21 133775 -27.159.104.0/21 4134 -27.159.112.0/21 4134 -27.159.120.0/23 133775 -27.159.122.0/23 133774 -27.159.124.0/22 133774 -27.159.128.0/17 4134 -27.160.0.0/12 9644 -27.176.0.0/13 9644 -27.184.0.0/13 4134 -27.192.0.0/11 4837 -27.224.0.0/14 4134 -27.228.0.0/15 9605 -27.230.0.0/19 9605 -27.230.41.0/24 9605 -27.230.48.0/22 9605 -27.230.52.0/24 9605 -27.230.56.0/21 9605 -27.230.64.0/20 9605 -27.230.80.0/21 9605 -27.230.88.0/22 9605 -27.230.94.0/24 9605 -27.230.98.0/23 9605 -27.230.100.0/22 9605 -27.230.104.0/21 9605 -27.230.112.0/20 9605 -27.230.128.0/17 9605 -27.231.0.0/16 9605 -27.232.0.0/13 4766 -27.240.0.0/13 9674 -27.250.0.0/16 10201 -27.251.0.0/22 10201 -27.251.5.0/24 10201 -27.251.6.0/23 10201 -27.251.8.0/22 10201 -27.251.15.0/24 10201 -27.251.22.0/23 10201 -27.251.24.0/22 10201 -27.251.28.0/23 10201 -27.251.31.0/24 10201 -27.251.32.0/21 10201 -27.251.42.0/24 10201 -27.251.44.0/24 10201 -27.251.46.0/23 10201 -27.251.48.0/23 10201 -27.251.50.0/24 10201 -27.251.52.0/22 10201 -27.251.56.0/21 10201 -27.251.64.0/21 10201 -27.251.73.0/24 10201 -27.251.74.0/23 10201 -27.251.77.0/24 10201 -27.251.78.0/24 10201 -27.251.80.0/21 10201 -27.251.89.0/24 10201 -27.251.90.0/23 10201 -27.251.93.0/24 10201 -27.251.95.0/24 10201 -27.251.96.0/21 10201 -27.251.104.0/23 10201 -27.251.107.0/24 10201 -27.251.108.0/23 10201 -27.251.110.0/24 10201 -27.251.112.0/20 10201 -27.251.128.0/23 10201 -27.251.131.0/24 10201 -27.251.132.0/22 10201 -27.251.136.0/23 10201 -27.251.139.0/24 10201 -27.251.140.0/22 10201 -27.251.144.0/23 10201 -27.251.148.0/22 10201 -27.251.152.0/21 10201 -27.251.160.0/20 10201 -27.251.177.0/24 10201 -27.251.178.0/23 10201 -27.251.180.0/23 10201 -27.251.183.0/24 10201 -27.251.184.0/22 10201 -27.251.190.0/24 10201 -27.251.192.0/21 10201 -27.251.200.0/23 10201 -27.251.202.0/24 10201 -27.251.204.0/22 10201 -27.251.208.0/20 10201 -27.251.224.0/23 10201 -27.251.227.0/24 10201 -27.251.228.0/24 10201 -27.251.230.0/23 10201 -27.251.232.0/23 10201 -27.251.234.0/24 10201 -27.251.236.0/22 10201 -27.251.240.0/22 10201 -27.251.244.0/24 10201 -27.251.246.0/23 10201 -27.251.248.0/21 10201 -27.252.0.0/16 9500 -27.253.0.0/17 4804 -27.253.128.0/17 55387 -27.254.0.0/24 138422 -27.254.1.0/24 4750 -27.254.2.0/23 4750 -27.254.4.0/23 4750 -27.254.6.0/24 136158 -27.254.7.0/24 4750 -27.254.8.0/24 17460 -27.254.9.0/24 4750 -27.254.10.0/23 4750 -27.254.12.0/22 4750 -27.254.16.0/21 4750 -27.254.24.0/24 4750 -27.254.25.0/24 133063 -27.254.26.0/23 4750 -27.254.28.0/22 4750 -27.254.32.0/19 9891 -27.254.64.0/21 9891 -27.254.72.0/21 4750 -27.254.80.0/21 9891 -27.254.88.0/22 4750 -27.254.92.0/22 9891 -27.254.96.0/22 9891 -27.254.100.0/22 4750 -27.254.104.0/23 4750 -27.254.106.0/24 4750 -27.254.107.0/24 134695 -27.254.108.0/22 9891 -27.254.112.0/23 55636 -27.254.114.0/24 4827 -27.254.115.0/24 55325 -27.254.116.0/22 4750 -27.254.120.0/22 4750 -27.254.124.0/23 4750 -27.254.126.0/24 24214 -27.254.127.0/24 4750 -27.254.128.0/21 9891 -27.254.136.0/22 9891 -27.254.140.0/23 63989 -27.254.142.0/24 63989 -27.254.143.0/24 9891 -27.254.144.0/23 9891 -27.254.146.0/23 63940 -27.254.148.0/22 9891 -27.254.152.0/23 63940 -27.254.154.0/24 9891 -27.254.155.0/24 59374 -27.254.156.0/22 9891 -27.254.160.0/23 9891 -27.254.162.0/24 9891 -27.254.163.0/24 58955 -27.254.164.0/22 59374 -27.254.168.0/21 9891 -27.254.176.0/21 4750 -27.254.184.0/24 45958 -27.254.185.0/24 4750 -27.254.186.0/23 4750 -27.254.188.0/22 4750 -27.254.192.0/20 4750 -27.254.208.0/22 9891 -27.254.212.0/23 9891 -27.254.214.0/23 4750 -27.254.216.0/24 59374 -27.254.217.0/24 9891 -27.254.218.0/23 9891 -27.254.220.0/23 4750 -27.254.222.0/24 4750 -27.254.223.0/24 138344 -27.254.224.0/24 4750 -27.254.225.0/24 133956 -27.254.226.0/23 4750 -27.254.228.0/22 4750 -27.254.232.0/21 4750 -27.254.240.0/23 4750 -27.254.242.0/23 24455 -27.254.244.0/23 4750 -27.254.246.0/24 4750 -27.254.247.0/24 38820 -27.254.248.0/22 4750 -27.254.252.0/24 38718 -27.254.253.0/24 4750 -27.254.254.0/24 134064 -27.254.255.0/24 38326 -27.255.0.0/22 55714 -27.255.4.0/24 55714 -27.255.5.0/24 23607 -27.255.6.0/23 55714 -27.255.8.0/24 55714 -27.255.9.0/24 23607 -27.255.10.0/23 55714 -27.255.12.0/22 55714 -27.255.16.0/21 55714 -27.255.24.0/22 55714 -27.255.28.0/23 55714 -27.255.31.0/24 55714 -27.255.32.0/21 55714 -27.255.40.0/22 55714 -27.255.44.0/24 55714 -27.255.45.0/24 23607 -27.255.46.0/23 55714 -27.255.48.0/23 55714 -27.255.50.0/24 23607 -27.255.51.0/24 55714 -27.255.52.0/22 55714 -27.255.56.0/23 55714 -27.255.59.0/24 55714 -27.255.60.0/22 55714 -27.255.64.0/24 4766 -27.255.65.0/24 45382 -27.255.69.0/24 3786 -27.255.70.0/24 45382 -27.255.74.0/24 3786 -27.255.75.0/24 45382 -27.255.76.0/24 3786 -27.255.77.0/24 45382 -27.255.79.0/24 45382 -27.255.80.0/23 45382 -27.255.83.0/24 3786 -27.255.84.0/24 3786 -27.255.86.0/24 3786 -27.255.88.0/22 45382 -27.255.92.0/23 45382 -27.255.94.0/24 45382 -27.255.95.0/24 3786 -27.255.96.0/21 38424 -27.255.105.0/24 38424 -27.255.128.0/19 17917 -27.255.160.0/20 17917 -27.255.192.0/18 17917 -29.8.208.0/20 19108 -29.8.224.0/20 19108 -29.16.240.0/20 19108 -31.0.0.0/15 8374 -31.2.0.0/17 21243 -31.2.128.0/17 197207 -31.3.0.0/24 21245 -31.3.2.0/23 21245 -31.3.4.0/24 21245 -31.3.5.0/24 42473 -31.3.6.0/24 42473 -31.3.7.0/24 21245 -31.3.8.0/21 5524 -31.3.16.0/21 47747 -31.3.24.0/21 39047 -31.3.32.0/19 28952 -31.3.64.0/24 60819 -31.3.65.0/24 3356 -31.3.66.0/24 3356 -31.3.67.0/24 60819 -31.3.68.0/22 60819 -31.3.72.0/21 48564 -31.3.80.0/21 196714 -31.3.88.0/22 34547 -31.3.92.0/24 34547 -31.3.93.0/24 43612 -31.3.94.0/24 43612 -31.3.95.0/24 34547 -31.3.96.0/21 35470 -31.3.104.0/21 197731 -31.3.112.0/21 2114 -31.3.120.0/21 31577 -31.3.130.0/23 199662 -31.3.134.0/23 199662 -31.3.136.0/21 8426 -31.3.144.0/22 51720 -31.3.150.0/23 41321 -31.3.152.0/21 51430 -31.3.168.0/21 200043 -31.3.176.0/20 200043 -31.3.192.0/20 197743 -31.3.208.0/20 25577 -31.3.224.0/19 20860 -31.4.0.0/16 12430 -31.5.0.0/16 6830 -31.6.0.0/24 30094 -31.6.1.0/24 22363 -31.6.3.0/24 22363 -31.6.4.0/24 22363 -31.6.7.0/24 22363 -31.6.9.0/24 22363 -31.6.10.0/23 22363 -31.6.17.0/24 22363 -31.6.18.0/23 22363 -31.6.20.0/23 22363 -31.6.30.0/24 22363 -31.6.41.0/24 22363 -31.6.42.0/24 22363 -31.6.44.0/24 22363 -31.6.49.0/24 22363 -31.6.58.0/24 22363 -31.6.60.0/24 22363 -31.6.62.0/23 22363 -31.6.64.0/22 39869 -31.6.68.0/22 59491 -31.6.72.0/21 34555 -31.6.80.0/21 39582 -31.6.88.0/23 39582 -31.6.90.0/24 39582 -31.6.96.0/19 59815 -31.6.128.0/18 21021 -31.6.192.0/19 21021 -31.6.248.0/22 44643 -31.7.0.0/21 20847 -31.7.8.0/21 8676 -31.7.16.0/20 21366 -31.7.32.0/21 57152 -31.7.40.0/21 35063 -31.7.48.0/21 49221 -31.7.56.0/21 51852 -31.7.64.0/21 56616 -31.7.72.0/23 56616 -31.7.74.0/23 62416 -31.7.76.0/22 56616 -31.7.80.0/23 62416 -31.7.82.0/23 56616 -31.7.84.0/22 62416 -31.7.88.0/21 56616 -31.7.96.0/19 58224 -31.7.129.0/24 56632 -31.7.130.0/23 56632 -31.7.133.0/24 56632 -31.7.135.0/24 56632 -31.7.136.0/22 56632 -31.7.140.0/24 56632 -31.7.142.0/23 56632 -31.7.144.0/20 49360 -31.7.160.0/21 42109 -31.7.168.0/21 48057 -31.7.176.0/20 201011 -31.7.192.0/19 56635 -31.7.224.0/20 39289 -31.7.240.0/21 21430 -31.7.248.0/21 30781 -31.8.0.0/16 28812 -31.9.0.0/19 29256 -31.9.32.0/20 29256 -31.9.48.0/22 29256 -31.9.64.0/18 29256 -31.9.128.0/17 29256 -31.10.0.0/22 47151 -31.10.4.0/24 47151 -31.10.8.0/22 35140 -31.10.12.0/23 35140 -31.10.14.0/23 34709 -31.10.16.0/20 56653 -31.10.32.0/20 42004 -31.10.48.0/21 5396 -31.10.56.0/21 196845 -31.10.64.0/18 35271 -31.10.128.0/17 6830 -31.11.0.0/19 6772 -31.11.32.0/21 31034 -31.11.40.0/21 210176 -31.11.48.0/21 48728 -31.11.56.0/23 13205 -31.11.58.0/24 5400 -31.11.64.0/18 16333 -31.11.128.0/17 29314 -31.12.0.0/21 29287 -31.12.8.0/22 3313 -31.12.12.0/22 3257 -31.12.16.0/20 6821 -31.12.56.0/21 61352 -31.12.64.0/22 44099 -31.12.68.0/23 44099 -31.12.70.0/24 44099 -31.12.71.0/24 202708 -31.12.72.0/22 208510 -31.12.76.0/22 9009 -31.12.80.0/22 57630 -31.12.88.0/24 209258 -31.12.92.0/22 35913 -31.12.96.0/19 44574 -31.13.0.0/21 44574 -31.13.8.0/21 197784 -31.13.16.0/21 25227 -31.13.24.0/21 32934 -31.13.32.0/21 8732 -31.13.40.0/22 8732 -31.13.44.0/24 8732 -31.13.45.0/24 202150 -31.13.46.0/23 8732 -31.13.48.0/20 8732 -31.13.64.0/18 32934 -31.13.128.0/21 197765 -31.13.136.0/21 49605 -31.13.144.0/21 16345 -31.13.152.0/21 44356 -31.13.160.0/21 51440 -31.13.168.0/21 196819 -31.13.176.0/21 24811 -31.13.184.0/22 202284 -31.13.188.0/22 9009 -31.13.192.0/23 57634 -31.13.194.0/23 34224 -31.13.196.0/24 44851 -31.13.197.0/24 34224 -31.13.198.0/24 42794 -31.13.199.0/24 57634 -31.13.200.0/21 29030 -31.13.209.0/24 57634 -31.13.211.0/24 34224 -31.13.212.0/24 43548 -31.13.214.0/24 34224 -31.13.215.0/24 47748 -31.13.216.0/21 34224 -31.13.224.0/24 48584 -31.13.225.0/24 57634 -31.13.226.0/24 210211 -31.13.227.0/24 60784 -31.13.228.0/23 47748 -31.13.230.0/23 34224 -31.13.232.0/22 61437 -31.13.236.0/22 34224 -31.13.240.0/24 204469 -31.13.241.0/24 34224 -31.13.242.0/23 29030 -31.13.244.0/24 60230 -31.13.245.0/24 34224 -31.13.246.0/24 208224 -31.13.247.0/24 43548 -31.13.248.0/22 34224 -31.13.252.0/22 43561 -31.14.0.0/22 199483 -31.14.8.0/24 33925 -31.14.9.0/24 23470 -31.14.10.0/24 42731 -31.14.11.0/24 201401 -31.14.12.0/22 5588 -31.14.16.0/24 49774 -31.14.18.0/24 57098 -31.14.19.0/24 2614 -31.14.20.0/24 9050 -31.14.21.0/24 6910 -31.14.22.0/23 5588 -31.14.24.0/24 206451 -31.14.25.0/24 39829 -31.14.26.0/24 51024 -31.14.27.0/24 48161 -31.14.28.0/24 56550 -31.14.29.0/24 206825 -31.14.30.0/24 206825 -31.14.32.0/24 201401 -31.14.33.0/24 44252 -31.14.34.0/23 204156 -31.14.36.0/22 6910 -31.14.40.0/23 19624 -31.14.43.0/24 43295 -31.14.44.0/24 201401 -31.14.46.0/23 29141 -31.14.48.0/24 201401 -31.14.49.0/24 39543 -31.14.50.0/23 34762 -31.14.52.0/24 43260 -31.14.53.0/24 31362 -31.14.54.0/24 31362 -31.14.55.0/24 208179 -31.14.56.0/24 5588 -31.14.57.0/24 33977 -31.14.58.0/23 33977 -31.14.60.0/22 200555 -31.14.65.0/24 9009 -31.14.66.0/23 51490 -31.14.72.0/23 36351 -31.14.74.0/24 36351 -31.14.76.0/22 21409 -31.14.80.0/20 58224 -31.14.100.0/23 31362 -31.14.102.0/24 9050 -31.14.103.0/24 200960 -31.14.104.0/21 6910 -31.14.112.0/20 25184 -31.14.128.0/20 31034 -31.14.144.0/20 58224 -31.14.160.0/24 62226 -31.14.161.0/24 39105 -31.14.162.0/24 23470 -31.14.163.0/24 57450 -31.14.164.0/22 29256 -31.14.168.0/21 3329 -31.14.176.0/22 62282 -31.14.183.0/24 12637 -31.14.184.0/21 3269 -31.14.192.0/21 6910 -31.14.200.0/22 29119 -31.14.204.0/23 29119 -31.14.206.0/24 29119 -31.14.207.0/24 200845 -31.14.208.0/21 3329 -31.14.216.0/23 60819 -31.14.219.0/24 39756 -31.14.220.0/23 41537 -31.14.222.0/23 42568 -31.14.224.0/22 6910 -31.14.228.0/22 39668 -31.14.233.0/24 201198 -31.14.234.0/23 39572 -31.14.238.0/24 33925 -31.14.239.0/24 48336 -31.14.240.0/21 3329 -31.14.248.0/22 56478 -31.14.252.0/24 9009 -31.14.253.0/24 59854 -31.14.254.0/24 9050 -31.14.255.0/24 200960 -31.15.0.0/22 50129 -31.15.4.0/24 201770 -31.15.5.0/24 200845 -31.15.6.0/23 200845 -31.15.8.0/21 25234 -31.15.16.0/21 44053 -31.15.24.0/21 41628 -31.15.32.0/19 3246 -31.15.64.0/21 31333 -31.15.72.0/21 44513 -31.15.80.0/21 29497 -31.15.88.0/22 29497 -31.15.92.0/23 29497 -31.15.94.0/24 29497 -31.15.95.0/24 57155 -31.15.96.0/21 48862 -31.15.104.0/21 12703 -31.15.112.0/21 56704 -31.15.124.0/22 50290 -31.15.128.0/17 3212 -31.16.0.0/14 31334 -31.20.0.0/15 50266 -31.22.0.0/21 34119 -31.22.8.0/22 11404 -31.22.16.0/24 56837 -31.22.20.0/22 56837 -31.22.24.0/21 200924 -31.22.32.0/24 207718 -31.22.33.0/24 21367 -31.22.34.0/23 21367 -31.22.36.0/22 21367 -31.22.40.0/21 35071 -31.22.48.0/20 50616 -31.22.64.0/22 197803 -31.22.72.0/21 8607 -31.22.80.0/21 8455 -31.22.88.0/21 13214 -31.22.96.0/21 29314 -31.22.104.0/22 24961 -31.22.112.0/23 197746 -31.22.115.0/24 197746 -31.22.118.0/23 197746 -31.22.120.0/21 197692 -31.22.128.0/17 42863 -31.23.0.0/16 12389 -31.24.0.0/21 16082 -31.24.8.0/21 8758 -31.24.16.0/24 47381 -31.24.17.0/24 42232 -31.24.18.0/23 42232 -31.24.20.0/22 42232 -31.24.24.0/21 39701 -31.24.32.0/21 20860 -31.24.40.0/21 50926 -31.24.48.0/22 56517 -31.24.56.0/21 61307 -31.24.64.0/21 197617 -31.24.72.0/21 48803 -31.24.80.0/24 56464 -31.24.88.0/21 12406 -31.24.96.0/21 9211 -31.24.104.0/21 50056 -31.24.112.0/21 44806 -31.24.120.0/21 15954 -31.24.128.0/21 29486 -31.24.136.0/21 203489 -31.24.144.0/21 49855 -31.24.152.0/21 50926 -31.24.160.0/21 200831 -31.24.168.0/21 197729 -31.24.176.0/21 43451 -31.24.184.0/21 44789 -31.24.192.0/21 8194 -31.24.200.0/21 56466 -31.24.208.0/21 15497 -31.24.216.0/21 34555 -31.24.224.0/24 13213 -31.24.225.0/24 36351 -31.24.226.0/23 13213 -31.24.228.0/22 13213 -31.24.232.0/21 56547 -31.24.240.0/21 16347 -31.24.248.0/21 29608 -31.25.0.0/21 41484 -31.25.8.0/22 56367 -31.25.16.0/21 35637 -31.25.24.0/21 35815 -31.25.32.0/21 15830 -31.25.40.0/21 41998 -31.25.48.0/21 205542 -31.25.56.0/24 57795 -31.25.64.0/21 44368 -31.25.72.0/21 51440 -31.25.80.0/21 50032 -31.25.88.0/23 51411 -31.25.90.0/24 50057 -31.25.91.0/24 51411 -31.25.92.0/23 51411 -31.25.94.0/24 51411 -31.25.95.0/24 202391 -31.25.96.0/21 48635 -31.25.104.0/21 48309 -31.25.120.0/21 61174 -31.25.128.0/21 43754 -31.25.136.0/22 197882 -31.25.140.0/23 197882 -31.25.142.0/23 21277 -31.25.144.0/21 48299 -31.25.152.0/21 197637 -31.25.160.0/21 8902 -31.25.168.0/21 197654 -31.25.176.0/21 34471 -31.25.184.0/21 50957 -31.25.192.0/22 56565 -31.25.196.0/23 56565 -31.25.198.0/24 49546 -31.25.199.0/24 56565 -31.25.200.0/21 43567 -31.25.208.0/21 16349 -31.25.216.0/21 56828 -31.25.224.0/21 56528 -31.25.240.0/22 39741 -31.25.246.0/23 39741 -31.25.248.0/21 28678 -31.27.0.0/18 30722 -31.27.96.0/20 30722 -31.27.128.0/17 30722 -31.28.0.0/20 29076 -31.28.16.0/22 29076 -31.28.20.0/23 29076 -31.28.22.0/24 204039 -31.28.23.0/24 29076 -31.28.24.0/24 12616 -31.28.25.0/24 3175 -31.28.26.0/24 29076 -31.28.27.0/24 12616 -31.28.28.0/24 204041 -31.28.29.0/24 29076 -31.28.30.0/23 29076 -31.28.32.0/19 8439 -31.28.64.0/19 50056 -31.28.96.0/19 48524 -31.28.128.0/19 15425 -31.28.160.0/19 15497 -31.28.192.0/19 12389 -31.28.224.0/19 35816 -31.29.0.0/19 12997 -31.29.32.0/19 15943 -31.29.64.0/19 56479 -31.29.96.0/19 197618 -31.29.128.0/20 39858 -31.29.144.0/21 39858 -31.29.168.0/21 29190 -31.29.176.0/20 39858 -31.29.192.0/20 29190 -31.29.208.0/22 29190 -31.29.212.0/22 48612 -31.29.216.0/21 29190 -31.29.224.0/19 29190 -31.30.0.0/16 16019 -31.31.0.0/19 1547 -31.31.40.0/21 57329 -31.31.48.0/20 15547 -31.31.64.0/21 21453 -31.31.72.0/21 197019 -31.31.80.0/21 199213 -31.31.88.0/23 198934 -31.31.90.0/24 198934 -31.31.91.0/24 15364 -31.31.96.0/19 6876 -31.31.128.0/19 199095 -31.31.160.0/21 50168 -31.31.168.0/21 20853 -31.31.176.0/20 30873 -31.31.192.0/20 197695 -31.31.208.0/21 9188 -31.31.216.0/21 197686 -31.31.224.0/19 56566 -31.32.0.0/13 5410 -31.40.0.0/21 56703 -31.40.8.0/21 12714 -31.40.16.0/21 197131 -31.40.24.0/22 59668 -31.40.28.0/22 21001 -31.40.32.0/19 49776 -31.40.64.0/21 50174 -31.40.72.0/22 50174 -31.40.76.0/23 50174 -31.40.80.0/20 50174 -31.40.96.0/21 56779 -31.40.104.0/21 35352 -31.40.112.0/20 56761 -31.40.128.0/23 59823 -31.40.132.0/24 201776 -31.40.133.0/24 204144 -31.40.134.0/23 201776 -31.40.136.0/24 204144 -31.40.137.0/24 201776 -31.40.138.0/24 201776 -31.40.140.0/24 201776 -31.40.142.0/23 201776 -31.40.144.0/22 39529 -31.40.148.0/23 39529 -31.40.150.0/24 39529 -31.40.151.0/24 201776 -31.40.152.0/21 39529 -31.40.160.0/23 39529 -31.40.162.0/23 201776 -31.40.164.0/22 200872 -31.40.172.0/23 201776 -31.40.176.0/24 200872 -31.40.178.0/23 201776 -31.40.188.0/22 206751 -31.40.193.0/24 393559 -31.40.195.0/24 393559 -31.40.200.0/24 34665 -31.40.201.0/24 62300 -31.40.202.0/24 34665 -31.40.203.0/24 35048 -31.40.208.0/22 174 -31.40.212.0/23 35913 -31.40.214.0/24 40065 -31.40.215.0/24 35913 -31.40.216.0/22 56630 -31.40.220.0/22 197328 -31.40.224.0/22 48095 -31.40.228.0/22 197328 -31.40.232.0/22 17941 -31.40.236.0/24 198433 -31.40.240.0/22 209982 -31.40.244.0/22 209919 -31.40.252.0/22 174 -31.41.0.0/21 44540 -31.41.8.0/21 197658 -31.41.16.0/22 44851 -31.41.20.0/22 56546 -31.41.24.0/21 56575 -31.41.32.0/21 25408 -31.41.40.0/21 56577 -31.41.48.0/21 56652 -31.41.56.0/21 197311 -31.41.64.0/21 50648 -31.41.72.0/21 41084 -31.41.80.0/21 197667 -31.41.88.0/21 41820 -31.41.96.0/21 47397 -31.41.104.0/21 49465 -31.41.112.0/21 35365 -31.41.120.0/21 48485 -31.41.128.0/21 39056 -31.41.136.0/21 12985 -31.41.144.0/22 61288 -31.41.148.0/22 205671 -31.41.152.0/21 49505 -31.41.160.0/21 197718 -31.41.172.0/22 197811 -31.41.176.0/21 197724 -31.41.184.0/21 56361 -31.41.192.0/21 42574 -31.41.200.0/21 43708 -31.41.208.0/21 29314 -31.41.216.0/21 42655 -31.41.224.0/21 197499 -31.41.232.0/21 197734 -31.41.240.0/24 51977 -31.41.241.0/24 38979 -31.41.242.0/24 206069 -31.41.243.0/24 201394 -31.41.244.0/24 61974 -31.41.245.0/24 41361 -31.41.246.0/24 41162 -31.41.247.0/24 57996 -31.41.248.0/21 35815 -31.42.0.0/20 49528 -31.42.16.0/20 21021 -31.42.32.0/20 8242 -31.42.48.0/20 20714 -31.42.64.0/20 29688 -31.42.80.0/21 24589 -31.42.88.0/23 24589 -31.42.90.0/24 24589 -31.42.91.0/24 15899 -31.42.92.0/22 15899 -31.42.112.0/20 8647 -31.42.128.0/19 50835 -31.42.160.0/20 49461 -31.42.176.0/22 205172 -31.42.184.0/22 205172 -31.42.188.0/23 50673 -31.42.190.0/23 50113 -31.42.192.0/19 56476 -31.42.224.0/19 50060 -31.43.0.0/19 50004 -31.43.32.0/19 50581 -31.43.64.0/19 30886 -31.43.96.0/19 56433 -31.43.128.0/19 48438 -31.43.160.0/19 50576 -31.43.192.0/19 56487 -31.43.224.0/19 43764 -31.44.0.0/21 30910 -31.44.8.0/22 201844 -31.44.12.0/23 198070 -31.44.14.0/23 205246 -31.44.16.0/20 197506 -31.44.32.0/20 6898 -31.44.48.0/20 56420 -31.44.64.0/20 35047 -31.44.80.0/20 29226 -31.44.96.0/20 21211 -31.44.112.0/20 197954 -31.44.128.0/20 42925 -31.44.144.0/20 50129 -31.44.160.0/20 31263 -31.44.176.0/21 56541 -31.44.184.0/23 34665 -31.44.188.0/24 48031 -31.44.189.0/24 51852 -31.44.190.0/24 29076 -31.44.191.0/24 25369 -31.44.192.0/22 197633 -31.44.202.0/23 197633 -31.44.204.0/24 197633 -31.44.205.0/24 34984 -31.44.208.0/24 3259 -31.44.210.0/24 3259 -31.44.212.0/23 3259 -31.44.214.0/23 44527 -31.44.216.0/22 3259 -31.44.223.0/24 197634 -31.44.224.0/20 35100 -31.44.240.0/22 56535 -31.44.244.0/23 197779 -31.44.246.0/24 5547 -31.44.247.0/24 203997 -31.44.248.0/23 198086 -31.44.250.0/24 199110 -31.44.252.0/22 56535 -31.45.0.0/17 2119 -31.45.128.0/18 12810 -31.45.192.0/19 12810 -31.45.224.0/20 12810 -31.45.240.0/24 12810 -31.45.241.0/24 199433 -31.45.242.0/23 12810 -31.45.244.0/22 12810 -31.45.248.0/21 12810 -31.46.0.0/20 5483 -31.46.16.0/22 5483 -31.46.20.0/23 5483 -31.46.22.0/24 5483 -31.46.23.0/24 51120 -31.46.24.0/21 5483 -31.46.32.0/19 5483 -31.46.64.0/18 5483 -31.46.128.0/17 5483 -31.47.0.0/19 202632 -31.47.32.0/19 25184 -31.47.64.0/21 199486 -31.47.72.0/21 15954 -31.47.80.0/21 57154 -31.47.88.0/21 38176 -31.47.96.0/20 8251 -31.47.112.0/20 8427 -31.47.128.0/19 43793 -31.47.160.0/19 12688 -31.47.192.0/22 49800 -31.47.196.0/24 49800 -31.47.197.0/24 57849 -31.47.198.0/24 49800 -31.47.199.0/24 57491 -31.47.200.0/21 34385 -31.47.216.0/21 6067 -31.47.224.0/21 49435 -31.47.232.0/21 34549 -31.47.240.0/20 45012 -31.48.0.0/13 2856 -31.56.0.0/14 31549 -31.60.0.0/14 5617 -31.64.0.0/11 12576 -31.96.0.0/12 12576 -31.112.0.0/13 12576 -31.120.0.0/15 2856 -31.122.0.0/15 12576 -31.124.0.0/16 12576 -31.125.0.0/16 6871 -31.126.0.0/15 12576 -31.128.0.0/19 56515 -31.128.32.0/19 49055 -31.128.64.0/24 42041 -31.128.65.0/24 21219 -31.128.66.0/23 21219 -31.128.68.0/22 21219 -31.128.72.0/22 21219 -31.128.76.0/22 3326 -31.128.80.0/20 3326 -31.128.100.0/22 35714 -31.128.104.0/21 35714 -31.128.120.0/21 35714 -31.128.128.0/19 51032 -31.128.160.0/19 48919 -31.128.192.0/22 48738 -31.128.204.0/22 48738 -31.128.208.0/20 48738 -31.128.224.0/20 20714 -31.128.240.0/21 20714 -31.128.248.0/22 20714 -31.128.252.0/24 203016 -31.128.253.0/24 42719 -31.128.254.0/23 20714 -31.129.0.0/19 41789 -31.129.32.0/19 52125 -31.129.64.0/19 51069 -31.129.98.0/24 198610 -31.129.120.0/24 34453 -31.129.122.0/24 39462 -31.129.123.0/24 35118 -31.129.124.0/24 58207 -31.129.125.0/24 8681 -31.129.126.0/23 204117 -31.129.128.0/19 51669 -31.129.160.0/19 24872 -31.129.192.0/22 47286 -31.129.196.0/22 61405 -31.129.200.0/21 47286 -31.129.208.0/21 47286 -31.129.220.0/22 47286 -31.129.224.0/21 50130 -31.129.232.0/22 50130 -31.129.240.0/21 50130 -31.129.252.0/22 50130 -31.130.0.0/19 47844 -31.130.32.0/19 49583 -31.130.64.0/19 15673 -31.130.96.0/20 56709 -31.130.112.0/21 56626 -31.130.120.0/21 56676 -31.130.128.0/19 34602 -31.130.160.0/21 56747 -31.130.168.0/21 15935 -31.130.176.0/20 49100 -31.130.192.0/21 57123 -31.130.200.0/21 56740 -31.130.216.0/21 39507 -31.130.224.0/20 56554 -31.130.240.0/21 204229 -31.130.248.0/21 51158 -31.131.0.0/22 43588 -31.131.4.0/23 43588 -31.131.16.0/20 56851 -31.131.32.0/21 12700 -31.131.40.0/21 56940 -31.131.48.0/20 199936 -31.131.64.0/20 43936 -31.131.80.0/21 42498 -31.131.88.0/22 202280 -31.131.92.0/22 12494 -31.131.96.0/19 41871 -31.131.128.0/21 48595 -31.131.136.0/23 48595 -31.131.138.0/24 48595 -31.131.139.0/24 52213 -31.131.140.0/22 48595 -31.131.144.0/20 43319 -31.131.160.0/21 51474 -31.131.168.0/21 20670 -31.131.176.0/21 56909 -31.131.184.0/21 56917 -31.131.192.0/22 202717 -31.131.208.0/20 50498 -31.131.224.0/20 56933 -31.131.240.0/21 12874 -31.131.248.0/22 49505 -31.131.252.0/23 50340 -31.131.254.0/23 49505 -31.132.0.0/21 42831 -31.132.8.0/22 15576 -31.132.12.0/24 719 -31.132.16.0/20 57294 -31.132.32.0/22 60257 -31.132.36.0/22 49004 -31.132.40.0/22 204326 -31.132.48.0/22 210144 -31.132.52.0/24 13213 -31.132.53.0/24 64200 -31.132.54.0/23 64200 -31.132.56.0/23 42695 -31.132.58.0/24 42695 -31.132.60.0/22 18530 -31.132.64.0/21 56945 -31.132.72.0/21 56956 -31.132.80.0/20 21299 -31.132.96.0/19 47438 -31.132.128.0/19 42145 -31.132.160.0/22 42145 -31.132.164.0/22 57044 -31.132.168.0/21 42145 -31.132.176.0/20 42145 -31.132.192.0/21 200063 -31.132.200.0/21 56953 -31.132.208.0/20 48481 -31.132.224.0/20 56969 -31.132.240.0/20 15774 -31.133.0.0/21 51290 -31.133.8.0/21 56624 -31.133.16.0/21 56646 -31.133.24.0/22 199429 -31.133.28.0/22 34744 -31.133.32.0/21 47694 -31.133.40.0/22 52091 -31.133.46.0/24 208167 -31.133.47.0/24 208435 -31.133.48.0/21 202279 -31.133.56.0/21 39089 -31.133.64.0/20 48882 -31.133.80.0/20 196957 -31.133.96.0/23 48641 -31.133.98.0/23 43361 -31.133.100.0/24 56378 -31.133.101.0/24 1680 -31.133.102.0/24 44709 -31.133.103.0/24 56378 -31.133.104.0/21 197768 -31.133.112.0/22 56623 -31.133.116.0/24 48964 -31.133.117.0/24 56623 -31.133.118.0/24 48964 -31.133.120.0/21 61152 -31.133.192.0/24 9009 -31.133.194.0/24 203785 -31.133.196.0/23 203785 -31.133.198.0/24 203785 -31.133.200.0/21 57181 -31.133.208.0/20 56956 -31.133.224.0/19 47211 -31.134.0.0/20 48347 -31.134.16.0/20 56592 -31.134.32.0/20 51428 -31.134.48.0/20 50467 -31.134.64.0/19 47800 -31.134.96.0/21 56656 -31.134.104.0/22 48323 -31.134.108.0/24 48323 -31.134.112.0/21 49561 -31.134.120.0/21 56668 -31.134.128.0/18 42668 -31.134.192.0/21 56802 -31.134.208.0/21 56823 -31.134.216.0/21 41030 -31.134.224.0/20 15774 -31.134.240.0/23 15774 -31.134.242.0/24 15774 -31.134.243.0/24 20485 -31.134.244.0/22 20485 -31.134.248.0/21 20485 -31.135.0.0/21 199429 -31.135.16.0/20 56983 -31.135.32.0/19 48327 -31.135.64.0/20 43865 -31.135.80.0/21 43865 -31.135.88.0/22 43865 -31.135.92.0/23 57456 -31.135.94.0/24 57456 -31.135.95.0/24 43865 -31.135.96.0/19 42239 -31.135.128.0/19 20539 -31.135.160.0/21 57718 -31.135.168.0/21 29314 -31.135.176.0/24 197923 -31.135.177.0/24 47651 -31.135.179.0/24 207889 -31.135.180.0/24 197923 -31.135.181.0/24 62028 -31.135.182.0/23 62028 -31.135.184.0/21 59595 -31.135.192.0/20 41931 -31.135.208.0/21 57016 -31.135.216.0/21 51388 -31.135.224.0/20 44056 -31.135.240.0/23 57041 -31.135.242.0/23 56330 -31.135.244.0/22 210109 -31.135.248.0/22 210109 -31.135.252.0/22 57041 -31.136.0.0/14 15480 -31.140.0.0/16 16135 -31.141.48.0/20 16135 -31.141.64.0/20 16135 -31.145.0.0/20 15924 -31.145.16.0/22 15924 -31.145.20.0/24 15924 -31.145.21.0/24 51585 -31.145.22.0/23 15924 -31.145.24.0/21 15924 -31.145.32.0/20 15924 -31.145.48.0/21 15924 -31.145.56.0/23 15924 -31.145.58.0/24 15924 -31.145.59.0/24 206409 -31.145.60.0/24 60083 -31.145.61.0/24 15924 -31.145.62.0/23 15924 -31.145.64.0/22 15924 -31.145.68.0/23 15924 -31.145.70.0/23 60096 -31.145.72.0/24 33830 -31.145.73.0/24 15924 -31.145.74.0/23 15924 -31.145.76.0/22 15924 -31.145.80.0/23 15924 -31.145.82.0/24 50875 -31.145.83.0/24 15924 -31.145.84.0/22 15924 -31.145.88.0/24 47185 -31.145.89.0/24 15924 -31.145.90.0/23 15924 -31.145.92.0/22 15924 -31.145.96.0/20 15924 -31.145.112.0/21 15924 -31.145.120.0/23 15924 -31.145.122.0/24 206806 -31.145.123.0/24 15924 -31.145.124.0/22 15924 -31.145.128.0/21 15924 -31.145.136.0/22 15924 -31.145.140.0/24 202557 -31.145.141.0/24 15924 -31.145.142.0/23 15924 -31.145.144.0/20 15924 -31.145.160.0/21 15924 -31.145.168.0/23 15924 -31.145.170.0/24 15924 -31.145.171.0/24 33830 -31.145.172.0/22 15924 -31.145.176.0/20 15924 -31.145.192.0/24 15924 -31.145.193.0/24 8386 -31.145.194.0/23 8386 -31.145.196.0/22 8386 -31.145.200.0/21 8386 -31.145.208.0/23 8386 -31.145.210.0/23 15924 -31.145.212.0/22 8386 -31.145.216.0/22 8386 -31.145.220.0/23 15924 -31.145.222.0/23 8386 -31.145.224.0/20 8386 -31.145.240.0/21 8386 -31.145.248.0/22 8386 -31.145.252.0/23 8386 -31.145.254.0/24 8386 -31.145.255.0/24 15924 -31.146.0.0/16 35805 -31.147.0.0/16 2108 -31.148.0.0/24 60088 -31.148.1.0/24 62142 -31.148.2.0/23 60075 -31.148.4.0/24 60028 -31.148.5.0/24 62069 -31.148.6.0/23 59738 -31.148.8.0/22 56592 -31.148.12.0/22 61372 -31.148.16.0/22 49811 -31.148.20.0/24 204889 -31.148.21.0/24 201469 -31.148.22.0/24 49393 -31.148.23.0/24 49038 -31.148.24.0/24 48709 -31.148.25.0/24 61312 -31.148.26.0/23 59475 -31.148.28.0/23 47673 -31.148.30.0/24 44343 -31.148.31.0/24 201469 -31.148.32.0/21 41575 -31.148.40.0/21 47551 -31.148.48.0/23 207228 -31.148.50.0/24 64486 -31.148.51.0/24 64490 -31.148.52.0/22 59392 -31.148.56.0/21 59392 -31.148.64.0/19 50923 -31.148.96.0/24 50516 -31.148.97.0/24 39448 -31.148.98.0/24 39417 -31.148.99.0/24 35196 -31.148.100.0/22 61390 -31.148.104.0/21 56361 -31.148.112.0/21 15428 -31.148.120.0/21 60165 -31.148.128.0/22 44546 -31.148.132.0/23 41712 -31.148.134.0/23 49491 -31.148.136.0/22 51685 -31.148.140.0/22 41124 -31.148.144.0/22 43533 -31.148.148.0/22 61031 -31.148.152.0/21 29256 -31.148.160.0/21 57016 -31.148.168.0/24 202353 -31.148.169.0/24 202290 -31.148.170.0/24 201069 -31.148.171.0/24 202198 -31.148.172.0/23 60245 -31.148.174.0/24 201069 -31.148.175.0/24 61988 -31.148.176.0/20 57903 -31.148.192.0/22 201746 -31.148.196.0/23 60002 -31.148.198.0/23 44031 -31.148.200.0/24 56965 -31.148.201.0/24 51841 -31.148.202.0/23 44834 -31.148.204.0/24 44975 -31.148.205.0/24 62331 -31.148.206.0/23 43301 -31.148.208.0/22 50025 -31.148.212.0/22 44546 -31.148.216.0/24 62444 -31.148.217.0/24 34503 -31.148.218.0/24 204791 -31.148.219.0/24 43060 -31.148.220.0/24 43060 -31.148.221.0/24 51962 -31.148.222.0/24 200122 -31.148.223.0/24 59679 -31.148.224.0/20 201746 -31.148.240.0/22 201746 -31.148.244.0/24 201069 -31.148.245.0/24 204408 -31.148.246.0/24 210188 -31.148.247.0/24 44546 -31.148.248.0/22 50334 -31.148.252.0/22 47702 -31.149.0.0/16 1136 -31.150.0.0/16 9145 -31.151.0.0/16 6830 -31.152.0.0/16 29247 -31.153.0.0/16 6866 -31.154.0.0/17 12400 -31.154.128.0/21 12400 -31.154.136.0/23 12400 -31.154.138.0/24 12400 -31.154.139.0/24 9116 -31.154.140.0/22 12400 -31.154.144.0/20 12400 -31.154.160.0/19 12400 -31.154.192.0/18 12400 -31.155.0.0/19 15924 -31.155.32.0/20 15924 -31.155.50.0/24 8386 -31.155.51.0/24 15924 -31.155.52.0/24 15924 -31.155.64.0/20 8386 -31.155.80.0/21 8386 -31.155.88.0/23 8386 -31.155.90.0/24 15924 -31.155.91.0/24 8386 -31.155.92.0/22 8386 -31.155.96.0/20 8386 -31.155.112.0/21 8386 -31.155.120.0/24 8386 -31.155.122.0/23 8386 -31.155.124.0/22 8386 -31.155.128.0/17 8386 -31.156.0.0/14 30722 -31.160.0.0/15 1136 -31.162.0.0/15 12389 -31.164.0.0/15 6730 -31.166.0.0/17 35819 -31.166.128.0/18 35819 -31.166.192.0/19 34400 -31.166.224.0/19 35819 -31.167.0.0/16 35819 -31.168.0.0/19 8551 -31.168.32.0/22 8551 -31.168.36.0/23 6810 -31.168.38.0/23 8551 -31.168.40.0/21 8551 -31.168.48.0/20 8551 -31.168.64.0/18 8551 -31.168.128.0/17 8551 -31.169.0.0/19 9198 -31.169.32.0/23 60194 -31.169.35.0/24 60194 -31.169.39.0/24 60194 -31.169.40.0/21 197492 -31.169.48.0/21 50304 -31.169.56.0/21 15447 -31.169.64.0/20 56582 -31.169.80.0/23 56582 -31.169.82.0/24 34984 -31.169.83.0/24 56582 -31.169.84.0/24 34984 -31.169.85.0/24 48737 -31.169.86.0/24 15924 -31.169.88.0/21 56582 -31.169.96.0/21 62059 -31.169.104.0/21 197845 -31.169.112.0/21 199283 -31.169.120.0/22 209854 -31.170.0.0/21 44212 -31.170.8.0/21 197696 -31.170.16.0/21 43513 -31.170.24.0/21 50986 -31.170.32.0/21 12714 -31.170.42.0/23 8968 -31.170.48.0/20 44208 -31.170.64.0/19 8887 -31.170.96.0/23 204122 -31.170.100.0/23 201942 -31.170.102.0/24 201942 -31.170.103.0/24 209365 -31.170.104.0/22 29141 -31.170.108.0/23 29141 -31.170.110.0/24 29141 -31.170.111.0/24 8100 -31.170.112.0/21 42526 -31.170.120.0/21 198047 -31.170.128.0/19 42714 -31.170.160.0/21 47583 -31.170.168.0/21 31724 -31.170.176.0/21 35236 -31.170.184.0/21 25880 -31.170.232.0/21 29049 -31.170.249.0/24 29049 -31.170.251.0/24 29049 -31.170.252.0/24 29049 -31.170.255.0/24 29049 -31.171.0.0/18 44725 -31.171.64.0/24 29049 -31.171.68.0/22 29049 -31.171.72.0/22 29049 -31.171.80.0/20 29049 -31.171.104.0/22 207251 -31.171.108.0/23 29049 -31.171.110.0/24 29049 -31.171.128.0/21 47869 -31.171.136.0/21 31115 -31.171.144.0/21 197742 -31.171.152.0/21 197706 -31.171.160.0/21 60411 -31.171.168.0/22 60411 -31.171.172.0/23 60411 -31.171.174.0/24 60411 -31.171.176.0/20 60411 -31.171.192.0/21 60072 -31.171.200.0/21 31673 -31.171.208.0/24 56583 -31.171.210.0/24 56583 -31.171.216.0/21 51469 -31.171.224.0/20 41627 -31.171.240.0/24 50837 -31.171.243.0/24 48622 -31.171.244.0/22 50837 -31.171.248.0/21 50837 -31.172.0.0/18 39138 -31.172.64.0/19 44066 -31.172.104.0/21 15943 -31.172.112.0/20 60955 -31.172.128.0/22 50340 -31.172.132.0/23 44963 -31.172.134.0/23 50340 -31.172.136.0/23 24685 -31.172.138.0/23 1820 -31.172.140.0/23 1820 -31.172.142.0/24 1820 -31.172.143.0/24 41540 -31.172.144.0/21 8632 -31.172.152.0/21 198024 -31.172.160.0/24 198435 -31.172.161.0/24 41370 -31.172.163.0/24 199575 -31.172.164.0/22 41765 -31.172.168.0/22 15967 -31.172.172.0/22 35625 -31.172.176.0/20 50481 -31.172.192.0/19 12389 -31.172.224.0/22 43700 -31.172.228.0/23 16347 -31.172.232.0/22 30781 -31.172.236.0/23 30781 -31.172.238.0/24 30781 -31.172.239.0/24 57694 -31.172.240.0/20 34920 -31.173.0.0/18 25159 -31.173.64.0/19 25159 -31.173.96.0/23 31224 -31.173.98.0/24 50928 -31.173.99.0/24 31224 -31.173.100.0/22 31224 -31.173.104.0/21 29648 -31.173.112.0/21 29648 -31.173.120.0/21 31224 -31.173.128.0/22 31133 -31.173.132.0/22 31195 -31.173.136.0/22 31133 -31.173.140.0/23 31133 -31.173.142.0/24 31133 -31.173.143.0/24 31195 -31.173.144.0/23 50928 -31.173.146.0/24 50928 -31.173.147.0/24 31133 -31.173.148.0/22 31133 -31.173.152.0/21 31133 -31.173.160.0/21 31133 -31.173.168.0/22 31133 -31.173.172.0/23 50928 -31.173.174.0/23 31133 -31.173.176.0/24 35298 -31.173.177.0/24 31133 -31.173.178.0/24 31133 -31.173.179.0/24 35298 -31.173.180.0/22 31133 -31.173.184.0/21 31133 -31.173.192.0/21 31163 -31.173.200.0/23 31163 -31.173.202.0/24 31133 -31.173.203.0/24 50928 -31.173.204.0/23 31133 -31.173.206.0/24 50928 -31.173.207.0/24 31133 -31.173.208.0/20 31163 -31.173.224.0/23 31195 -31.173.226.0/24 31195 -31.173.227.0/24 50928 -31.173.228.0/22 31195 -31.173.232.0/21 31195 -31.173.240.0/21 31205 -31.173.248.0/21 50928 -31.174.0.0/15 39603 -31.176.128.0/17 9146 -31.177.0.0/21 203872 -31.177.8.0/21 50962 -31.177.16.0/22 197651 -31.177.24.0/21 47868 -31.177.32.0/21 197985 -31.177.40.0/21 56550 -31.177.48.0/21 16039 -31.177.56.0/21 56910 -31.177.64.0/22 48287 -31.177.68.0/23 48287 -31.177.70.0/24 43489 -31.177.71.0/24 48287 -31.177.72.0/21 48287 -31.177.80.0/22 48287 -31.177.84.0/23 48287 -31.177.86.0/23 47595 -31.177.88.0/21 48287 -31.177.96.0/21 12430 -31.177.104.0/21 44053 -31.177.112.0/21 44512 -31.177.120.0/21 9188 -31.177.128.0/19 8386 -31.177.160.0/20 8386 -31.177.176.0/21 8386 -31.177.184.0/22 8386 -31.177.188.0/23 8386 -31.177.190.0/24 8386 -31.177.191.0/24 15924 -31.177.192.0/18 8386 -31.178.0.0/16 6830 -31.179.0.0/17 6830 -31.179.128.0/18 6830 -31.179.192.0/22 6830 -31.179.196.0/22 198537 -31.179.200.0/22 6830 -31.179.204.0/24 201046 -31.179.205.0/24 201132 -31.179.206.0/24 199296 -31.179.207.0/24 201132 -31.179.208.0/24 6830 -31.179.209.0/24 198888 -31.179.210.0/23 6830 -31.179.212.0/22 6830 -31.179.216.0/22 6830 -31.179.220.0/24 6830 -31.179.221.0/24 201737 -31.179.222.0/24 6830 -31.179.223.0/24 201638 -31.179.224.0/22 6830 -31.179.228.0/24 6830 -31.179.229.0/24 201990 -31.179.230.0/23 6830 -31.179.232.0/21 6830 -31.179.240.0/22 198537 -31.179.244.0/22 202100 -31.179.248.0/24 199896 -31.179.249.0/24 199407 -31.179.250.0/23 6830 -31.179.252.0/24 60309 -31.179.253.0/24 199296 -31.179.254.0/24 199407 -31.179.255.0/24 6830 -31.180.0.0/15 12389 -31.182.0.0/15 16342 -31.184.0.0/18 9145 -31.184.64.0/18 20507 -31.184.128.0/23 51074 -31.184.130.0/23 57292 -31.184.132.0/22 57292 -31.184.136.0/21 51074 -31.184.144.0/20 51074 -31.184.160.0/22 51074 -31.184.164.0/24 21170 -31.184.165.0/24 51074 -31.184.166.0/23 51074 -31.184.168.0/21 51074 -31.184.176.0/20 51074 -31.184.192.0/20 34665 -31.184.208.0/22 49505 -31.184.212.0/23 50340 -31.184.214.0/23 49505 -31.184.216.0/24 50340 -31.184.217.0/24 49505 -31.184.218.0/23 49505 -31.184.220.0/22 49505 -31.184.224.0/22 49505 -31.184.228.0/23 34665 -31.184.230.0/24 43696 -31.184.231.0/24 34665 -31.184.232.0/22 34665 -31.184.236.0/24 198620 -31.184.237.0/24 34665 -31.184.238.0/23 34665 -31.184.240.0/21 34665 -31.184.248.0/21 49505 -31.185.0.0/22 48573 -31.185.4.0/24 48573 -31.185.5.0/24 50549 -31.185.6.0/24 50549 -31.185.7.0/24 48573 -31.185.8.0/21 41344 -31.185.16.0/23 47187 -31.185.20.0/22 47187 -31.185.24.0/21 2116 -31.185.32.0/19 6871 -31.185.64.0/19 39642 -31.185.96.0/21 41327 -31.185.104.0/21 43847 -31.185.112.0/20 42560 -31.185.128.0/17 6871 -31.186.0.0/23 199484 -31.186.8.0/24 199484 -31.186.23.0/24 199484 -31.186.24.0/22 199484 -31.186.28.0/23 199484 -31.186.32.0/21 48142 -31.186.40.0/21 44473 -31.186.48.0/21 12764 -31.186.56.0/21 39045 -31.186.64.0/20 198110 -31.186.80.0/21 57367 -31.186.88.0/21 31020 -31.186.96.0/22 49505 -31.186.100.0/23 49505 -31.186.102.0/23 50340 -31.186.104.0/21 198188 -31.186.112.0/21 8681 -31.186.120.0/21 29239 -31.186.128.0/19 21365 -31.186.160.0/21 35467 -31.186.168.0/23 60781 -31.186.170.0/23 50673 -31.186.172.0/22 50673 -31.186.176.0/21 51737 -31.186.184.0/21 29583 -31.186.192.0/19 6830 -31.186.224.0/24 30282 -31.186.225.0/24 393954 -31.186.226.0/24 2639 -31.186.227.0/24 30282 -31.186.228.0/23 29791 -31.186.230.0/24 30282 -31.186.231.0/24 15570 -31.186.232.0/23 15570 -31.186.234.0/24 15570 -31.186.235.0/24 26931 -31.186.236.0/23 15570 -31.186.238.0/24 15570 -31.186.239.0/24 55256 -31.186.240.0/23 30282 -31.186.242.0/24 30282 -31.186.243.0/24 2639 -31.186.244.0/24 15570 -31.186.245.0/24 55096 -31.186.246.0/23 30282 -31.186.248.0/23 15570 -31.186.250.0/23 48910 -31.186.252.0/24 30282 -31.186.253.0/24 32787 -31.186.254.0/24 14148 -31.186.255.0/24 30282 -31.187.0.0/18 6830 -31.187.64.0/24 63473 -31.187.65.0/24 201341 -31.187.66.0/24 18779 -31.187.67.0/24 21413 -31.187.68.0/24 25259 -31.187.70.0/23 20860 -31.187.72.0/22 46261 -31.187.76.0/24 63473 -31.187.77.0/24 21413 -31.187.79.0/24 21413 -31.187.80.0/22 29413 -31.187.84.0/22 201964 -31.187.88.0/22 29413 -31.187.92.0/22 29075 -31.187.96.0/21 200685 -31.187.104.0/21 201602 -31.187.112.0/20 9145 -31.187.128.0/17 50266 -31.188.0.0/14 24608 -31.192.0.0/18 49129 -31.192.64.0/19 197798 -31.192.96.0/21 44611 -31.192.104.0/21 49335 -31.192.112.0/20 48684 -31.192.128.0/19 31214 -31.192.160.0/19 35154 -31.192.192.0/20 45011 -31.192.208.0/21 51559 -31.192.216.0/21 56682 -31.192.224.0/22 43948 -31.192.228.0/24 42708 -31.192.229.0/24 43948 -31.192.230.0/23 43948 -31.192.232.0/21 47271 -31.192.240.0/21 30938 -31.192.248.0/21 8449 -31.193.0.0/20 61323 -31.193.16.0/20 51580 -31.193.32.0/21 15433 -31.193.40.0/21 56675 -31.193.48.0/21 15401 -31.193.56.0/21 28767 -31.193.64.0/20 29256 -31.193.80.0/21 47359 -31.193.90.0/24 49620 -31.193.91.0/24 44695 -31.193.92.0/22 47359 -31.193.96.0/21 8286 -31.193.104.0/21 42707 -31.193.120.0/21 56689 -31.193.128.0/20 29550 -31.193.144.0/21 15696 -31.193.152.0/24 207655 -31.193.154.0/23 15696 -31.193.160.0/21 49808 -31.193.168.0/21 31708 -31.193.176.0/21 34762 -31.193.184.0/21 56841 -31.193.192.0/21 47205 -31.193.200.0/21 197799 -31.193.208.0/21 15600 -31.193.216.0/21 29644 -31.193.224.0/21 56732 -31.193.232.0/21 8273 -31.193.240.0/21 35600 -31.193.248.0/21 56711 -31.194.0.0/15 3269 -31.196.0.0/14 3269 -31.200.0.0/17 12978 -31.200.128.0/18 13280 -31.200.192.0/20 12418 -31.200.208.0/21 20559 -31.200.216.0/23 31494 -31.200.218.0/24 31494 -31.200.219.0/24 21353 -31.200.220.0/24 31494 -31.200.221.0/24 21353 -31.200.222.0/23 21353 -31.200.224.0/20 196949 -31.200.240.0/21 60494 -31.200.248.0/21 61400 -31.201.0.0/16 50266 -31.202.0.0/17 34700 -31.202.128.0/18 34700 -31.202.192.0/18 6712 -31.203.0.0/16 42961 -31.204.0.0/18 50147 -31.204.64.0/21 12552 -31.204.72.0/21 31726 -31.204.80.0/21 57809 -31.204.88.0/24 56665 -31.204.90.0/23 56665 -31.204.92.0/22 56665 -31.204.96.0/20 12389 -31.204.112.0/21 51906 -31.204.120.0/22 51906 -31.204.124.0/22 13237 -31.204.128.0/19 49544 -31.204.160.0/19 39578 -31.204.192.0/18 8585 -31.205.0.0/16 41230 -31.206.0.0/19 8386 -31.206.32.0/24 60096 -31.206.33.0/24 15924 -31.206.34.0/23 15924 -31.206.36.0/22 15924 -31.206.40.0/24 60146 -31.206.41.0/24 15924 -31.206.42.0/23 15924 -31.206.44.0/22 15924 -31.206.48.0/20 15924 -31.206.64.0/18 8386 -31.206.128.0/18 8386 -31.206.192.0/20 8386 -31.206.208.0/21 8386 -31.206.216.0/21 15924 -31.206.224.0/20 8386 -31.206.240.0/24 15924 -31.206.241.0/24 8386 -31.206.242.0/24 15924 -31.206.243.0/24 8386 -31.206.244.0/22 8386 -31.206.248.0/22 15924 -31.206.252.0/22 8386 -31.207.0.0/24 6130 -31.207.1.0/24 53889 -31.207.2.0/23 53889 -31.207.4.0/22 53889 -31.207.8.0/21 209519 -31.207.16.0/20 209519 -31.207.32.0/21 16347 -31.207.42.0/24 29045 -31.207.44.0/22 57043 -31.207.48.0/21 203822 -31.207.56.0/23 395401 -31.207.58.0/23 53440 -31.207.60.0/22 203822 -31.207.64.0/20 47149 -31.207.80.0/21 42807 -31.207.88.0/22 45037 -31.207.96.0/19 57469 -31.207.128.0/17 8369 -31.208.0.0/16 29518 -31.209.0.0/18 29518 -31.209.64.0/20 21412 -31.209.80.0/20 50629 -31.209.96.0/20 197792 -31.209.112.0/20 25394 -31.209.128.0/21 43256 -31.209.136.0/21 51896 -31.209.144.0/20 6677 -31.209.160.0/20 6663 -31.209.176.0/21 12552 -31.209.184.0/21 56737 -31.209.192.0/18 6677 -31.210.0.0/21 197788 -31.210.8.0/21 6663 -31.210.16.0/22 61157 -31.210.24.0/23 51048 -31.210.26.0/24 51048 -31.210.27.0/24 43915 -31.210.28.0/22 51048 -31.210.32.0/23 42910 -31.210.35.0/24 42910 -31.210.36.0/22 42910 -31.210.40.0/21 42910 -31.210.48.0/21 42910 -31.210.56.0/22 42910 -31.210.61.0/24 42910 -31.210.62.0/23 15830 -31.210.64.0/20 42926 -31.210.80.0/22 42926 -31.210.84.0/23 42926 -31.210.86.0/24 42926 -31.210.88.0/21 42926 -31.210.96.0/22 197328 -31.210.100.0/23 197328 -31.210.102.0/24 197328 -31.210.103.0/24 42926 -31.210.104.0/21 197328 -31.210.112.0/20 197328 -31.210.128.0/21 39537 -31.210.136.0/24 34709 -31.210.137.0/24 47441 -31.210.138.0/23 47441 -31.210.140.0/22 47441 -31.210.148.0/23 394923 -31.210.152.0/22 43260 -31.210.156.0/24 199608 -31.210.157.0/24 43260 -31.210.158.0/23 43260 -31.210.160.0/21 16205 -31.210.168.0/23 197793 -31.210.170.0/23 207728 -31.210.172.0/24 21100 -31.210.173.0/24 207728 -31.210.174.0/23 197793 -31.210.176.0/20 47956 -31.210.208.0/21 43727 -31.210.216.0/22 43727 -31.210.220.0/23 43727 -31.210.224.0/21 42666 -31.210.232.0/21 42040 -31.210.240.0/23 31220 -31.210.243.0/24 31220 -31.210.244.0/23 31220 -31.210.246.0/24 31220 -31.210.248.0/21 35706 -31.211.0.0/20 31036 -31.211.16.0/21 31036 -31.211.24.0/22 31036 -31.211.28.0/23 31036 -31.211.30.0/24 31036 -31.211.31.0/24 61106 -31.211.32.0/21 31036 -31.211.40.0/22 31036 -31.211.44.0/22 56707 -31.211.48.0/21 31036 -31.211.56.0/23 47938 -31.211.58.0/23 31036 -31.211.60.0/24 31036 -31.211.61.0/24 56707 -31.211.62.0/23 31036 -31.211.64.0/21 56707 -31.211.72.0/24 56707 -31.211.73.0/24 31036 -31.211.74.0/23 31036 -31.211.76.0/22 56707 -31.211.80.0/21 56707 -31.211.88.0/21 31036 -31.211.96.0/19 31036 -31.211.128.0/19 197897 -31.211.160.0/21 56745 -31.211.168.0/22 197943 -31.211.172.0/24 197943 -31.211.176.0/21 13237 -31.211.184.0/21 198454 -31.211.192.0/18 33885 -31.212.0.0/15 3320 -31.214.0.0/19 42961 -31.214.128.0/24 199610 -31.214.129.0/24 43260 -31.214.130.0/23 199610 -31.214.134.0/23 199610 -31.214.136.0/24 199610 -31.214.137.0/24 41421 -31.214.138.0/24 41421 -31.214.139.0/24 50129 -31.214.140.0/24 41421 -31.214.141.0/24 197071 -31.214.142.0/23 199610 -31.214.144.0/24 31400 -31.214.145.0/24 41421 -31.214.148.0/24 199610 -31.214.149.0/24 197071 -31.214.150.0/23 208988 -31.214.152.0/24 43260 -31.214.153.0/24 56550 -31.214.154.0/24 16322 -31.214.155.0/24 206057 -31.214.156.0/24 60609 -31.214.157.0/24 58329 -31.214.158.0/23 199610 -31.214.160.0/21 199610 -31.214.168.0/21 16322 -31.214.176.0/20 57910 -31.214.192.0/21 199610 -31.214.200.0/23 16322 -31.214.202.0/23 199610 -31.214.204.0/22 199610 -31.214.208.0/22 199610 -31.214.213.0/24 25279 -31.214.215.0/24 34309 -31.214.216.0/22 199610 -31.214.220.0/23 199610 -31.214.222.0/23 5539 -31.214.224.0/22 199610 -31.214.228.0/22 16322 -31.214.232.0/21 199610 -31.214.240.0/22 197071 -31.214.244.0/23 197071 -31.214.246.0/23 30823 -31.214.248.0/21 16322 -31.215.0.0/16 5384 -31.216.0.0/20 57356 -31.216.16.0/20 49463 -31.216.32.0/21 197308 -31.216.40.0/21 48461 -31.216.48.0/21 20860 -31.216.64.0/18 15805 -31.216.128.0/22 47959 -31.216.136.0/21 61146 -31.216.144.0/21 24611 -31.216.152.0/21 197807 -31.216.160.0/21 28769 -31.216.168.0/23 28769 -31.216.170.0/24 28769 -31.216.172.0/22 28769 -31.216.176.0/21 196660 -31.216.184.0/21 42571 -31.216.192.0/19 5391 -31.216.224.0/21 50904 -31.216.232.0/21 56767 -31.216.240.0/20 29177 -31.217.0.0/17 5391 -31.217.128.0/19 43531 -31.217.176.0/22 29247 -31.217.180.0/23 29247 -31.217.184.0/22 29247 -31.217.192.0/21 29154 -31.217.200.0/21 31121 -31.217.208.0/21 24631 -31.217.216.0/21 39878 -31.217.224.0/23 198392 -31.217.232.0/21 20900 -31.217.240.0/21 49567 -31.218.0.0/16 5384 -31.219.0.0/17 5384 -31.219.128.0/19 5384 -31.219.160.0/20 5384 -31.219.176.0/24 5384 -31.219.177.0/24 8966 -31.219.178.0/23 5384 -31.219.180.0/22 5384 -31.219.184.0/21 5384 -31.219.192.0/18 5384 -31.220.0.0/22 206264 -31.220.4.0/22 63473 -31.220.8.0/22 8001 -31.220.12.0/23 30456 -31.220.14.0/24 8100 -31.220.15.0/24 63473 -31.220.16.0/21 47583 -31.220.24.0/22 39572 -31.220.28.0/24 201341 -31.220.29.0/24 25369 -31.220.30.0/23 63473 -31.220.32.0/21 8001 -31.220.40.0/23 206264 -31.220.42.0/23 63473 -31.220.44.0/23 63473 -31.220.46.0/23 201341 -31.220.48.0/20 47583 -31.220.64.0/21 197637 -31.220.72.0/21 16372 -31.220.80.0/20 16372 -31.220.96.0/21 16372 -31.220.104.0/21 47583 -31.220.112.0/21 31317 -31.220.120.0/21 15817 -31.220.136.0/21 31078 -31.220.144.0/22 31229 -31.220.152.0/21 34709 -31.220.160.0/19 29072 -31.220.192.0/18 42689 -31.221.0.0/17 25180 -31.221.128.0/17 16299 -31.222.0.0/20 197846 -31.222.16.0/21 57665 -31.222.24.0/24 197827 -31.222.30.0/24 199642 -31.222.32.0/21 44736 -31.222.40.0/21 33924 -31.222.48.0/22 1273 -31.222.52.0/23 19905 -31.222.54.0/24 1273 -31.222.55.0/24 21110 -31.222.56.0/22 21110 -31.222.60.0/22 56775 -31.222.64.0/20 12678 -31.222.80.0/20 15704 -31.222.96.0/19 50129 -31.222.128.0/18 15395 -31.222.192.0/24 47608 -31.222.193.0/24 8218 -31.222.194.0/24 47608 -31.222.195.0/24 8218 -31.222.196.0/22 8218 -31.222.200.0/21 12327 -31.222.208.0/20 198082 -31.223.1.0/24 12735 -31.223.2.0/23 12735 -31.223.4.0/22 12735 -31.223.8.0/21 12735 -31.223.16.0/20 12735 -31.223.32.0/23 12735 -31.223.34.0/24 12735 -31.223.40.0/21 12735 -31.223.48.0/20 12735 -31.223.64.0/20 12735 -31.223.80.0/21 12735 -31.223.88.0/22 12735 -31.223.92.0/23 12735 -31.223.95.0/24 12735 -31.223.96.0/21 12735 -31.223.104.0/24 12735 -31.223.106.0/23 12735 -31.223.108.0/22 12735 -31.223.112.0/20 12735 -31.223.128.0/19 25144 -31.223.160.0/20 28878 -31.223.176.0/21 56787 -31.223.184.0/22 56787 -31.223.188.0/23 56787 -31.223.190.0/24 56787 -31.223.191.0/24 51151 -31.223.192.0/21 25534 -31.223.200.0/22 25534 -31.223.204.0/23 25534 -31.223.206.0/23 61185 -31.223.208.0/20 21107 -31.223.224.0/21 29062 -31.223.232.0/21 47116 -31.223.240.0/20 47902 -31.224.0.0/11 3320 -32.0.0.0/15 2686 -32.2.0.0/17 2686 -32.2.128.0/18 8030 -32.2.192.0/18 2686 -32.3.0.0/16 2686 -32.4.0.0/15 2686 -32.6.0.0/16 2686 -32.7.0.0/19 2686 -32.7.32.0/20 8030 -32.7.48.0/20 2686 -32.7.64.0/18 2686 -32.7.128.0/17 2686 -32.8.0.0/15 2686 -32.10.0.0/18 8030 -32.10.64.0/18 2686 -32.10.128.0/17 2686 -32.11.0.0/16 2686 -32.12.0.0/14 2686 -32.16.0.0/14 2686 -32.20.0.0/16 2686 -32.21.0.0/17 2686 -32.21.128.0/19 2686 -32.21.160.0/19 8030 -32.21.192.0/18 2686 -32.22.0.0/15 2686 -32.24.0.0/18 2686 -32.24.64.0/20 2686 -32.24.80.0/21 2686 -32.24.88.0/24 134534 -32.24.89.0/24 134530 -32.24.90.0/23 2686 -32.24.92.0/22 2686 -32.24.96.0/19 2686 -32.24.128.0/17 2686 -32.25.0.0/16 2686 -32.26.0.0/15 2686 -32.28.0.0/16 2686 -32.29.0.0/17 2686 -32.29.128.0/18 8030 -32.29.192.0/19 2686 -32.29.224.0/20 8030 -32.29.240.0/20 2686 -32.30.0.0/15 2686 -32.32.0.0/15 2686 -32.34.0.0/17 2686 -32.34.128.0/18 2686 -32.34.192.0/19 2686 -32.34.224.0/20 2686 -32.34.240.0/21 2686 -32.34.248.0/22 2686 -32.34.252.0/22 8030 -32.35.0.0/18 2686 -32.35.64.0/19 8030 -32.35.96.0/21 2686 -32.35.104.0/21 8030 -32.35.112.0/20 2686 -32.35.128.0/20 2686 -32.35.144.0/21 2686 -32.35.152.0/22 8030 -32.35.156.0/24 8030 -32.35.157.0/24 2686 -32.35.158.0/23 2686 -32.35.160.0/19 2686 -32.35.192.0/18 2686 -32.36.0.0/16 2686 -32.37.0.0/17 2686 -32.37.128.0/18 2686 -32.37.192.0/19 8030 -32.37.224.0/19 2686 -32.38.0.0/16 2686 -32.39.0.0/18 2686 -32.39.64.0/22 2686 -32.39.68.0/24 2686 -32.39.69.0/24 134535 -32.39.70.0/23 2686 -32.39.72.0/21 2686 -32.39.80.0/20 2686 -32.39.96.0/19 2686 -32.39.128.0/19 8030 -32.39.160.0/19 2686 -32.39.192.0/18 2686 -32.40.0.0/17 2686 -32.40.128.0/18 2686 -32.40.192.0/19 2686 -32.40.224.0/20 17224 -32.40.240.0/20 2686 -32.41.0.0/16 2686 -32.42.0.0/21 6905 -32.42.8.0/22 2686 -32.42.12.0/22 6905 -32.42.16.0/20 2686 -32.42.32.0/20 6905 -32.42.48.0/20 2686 -32.42.64.0/18 2686 -32.42.128.0/20 5104 -32.42.144.0/20 5107 -32.42.160.0/22 7294 -32.42.164.0/24 2687 -32.42.165.0/24 7294 -32.42.166.0/23 7294 -32.42.168.0/21 3422 -32.42.176.0/21 10770 -32.42.184.0/21 2686 -32.42.192.0/22 6904 -32.42.196.0/22 2686 -32.42.200.0/21 2686 -32.42.208.0/20 2686 -32.42.224.0/19 2686 -32.43.0.0/16 7018 -32.44.0.0/14 7018 -32.48.0.0/16 7018 -32.49.0.0/18 2686 -32.49.64.0/19 2686 -32.49.96.0/20 2686 -32.49.112.0/22 2686 -32.49.116.0/22 8030 -32.49.120.0/21 2686 -32.49.128.0/18 2686 -32.49.192.0/19 2686 -32.49.224.0/20 2686 -32.49.240.0/22 8030 -32.49.244.0/23 8030 -32.49.246.0/23 2686 -32.49.248.0/21 2686 -32.50.0.0/15 2686 -32.52.0.0/14 2686 -32.56.0.0/15 2686 -32.58.0.0/18 2686 -32.58.64.0/19 2686 -32.58.96.0/21 2686 -32.58.104.0/22 6905 -32.58.108.0/22 2686 -32.58.112.0/20 2686 -32.58.128.0/18 2686 -32.58.192.0/19 2686 -32.58.224.0/20 2686 -32.58.240.0/22 6905 -32.58.244.0/23 6905 -32.58.246.0/24 2686 -32.58.247.0/24 6905 -32.58.248.0/21 6905 -32.59.0.0/16 2688 -32.60.0.0/19 2687 -32.60.32.0/21 6904 -32.60.40.0/23 6904 -32.60.42.0/24 2687 -32.60.43.0/24 6904 -32.60.44.0/22 6904 -32.60.48.0/24 6904 -32.60.49.0/24 2687 -32.60.50.0/23 6904 -32.60.52.0/22 6904 -32.60.56.0/21 6904 -32.60.64.0/19 2685 -32.60.96.0/20 2685 -32.60.112.0/21 2685 -32.60.120.0/21 2686 -32.60.128.0/17 2686 -32.61.0.0/16 2686 -32.62.0.0/15 2686 -32.64.0.0/17 2686 -32.64.128.0/19 2686 -32.64.160.0/22 2686 -32.64.164.0/22 2687 -32.64.168.0/22 2688 -32.64.172.0/22 2685 -32.64.176.0/20 2686 -32.64.192.0/18 2686 -32.65.0.0/19 2686 -32.65.32.0/23 7018 -32.65.34.0/24 7018 -32.65.35.0/24 4466 -32.65.36.0/23 7018 -32.65.38.0/24 7018 -32.65.39.0/24 4466 -32.65.40.0/22 7018 -32.65.44.0/24 7018 -32.65.45.0/24 4466 -32.65.46.0/24 4466 -32.65.47.0/24 7018 -32.65.48.0/20 2686 -32.65.64.0/18 2686 -32.65.128.0/18 2686 -32.65.192.0/23 4466 -32.65.194.0/24 4466 -32.65.195.0/24 7018 -32.65.196.0/24 7018 -32.65.197.0/24 4466 -32.65.198.0/23 7018 -32.65.200.0/21 7018 -32.65.208.0/20 2686 -32.65.224.0/19 2686 -32.66.0.0/16 2686 -32.67.0.0/21 17224 -32.67.8.0/23 17224 -32.67.10.0/24 17224 -32.67.11.0/24 2686 -32.67.12.0/23 2686 -32.67.14.0/24 2686 -32.67.15.0/24 17224 -32.67.16.0/20 17224 -32.67.32.0/19 2686 -32.67.64.0/18 2686 -32.67.128.0/17 2686 -32.68.0.0/14 2686 -32.72.0.0/13 2686 -32.80.0.0/13 2686 -32.88.0.0/14 2686 -32.92.0.0/15 2686 -32.94.0.0/16 2688 -32.95.0.0/16 2686 -32.96.0.0/19 7018 -32.96.32.0/21 7018 -32.96.40.0/23 7018 -32.96.42.0/24 7018 -32.96.43.0/24 12169 -32.96.44.0/22 7018 -32.96.48.0/21 7018 -32.96.56.0/22 7018 -32.96.60.0/23 7018 -32.96.62.0/24 2386 -32.96.63.0/24 7018 -32.96.64.0/20 7018 -32.96.80.0/22 7018 -32.96.84.0/23 7018 -32.96.86.0/24 18440 -32.96.87.0/24 7018 -32.96.88.0/21 7018 -32.96.96.0/19 7018 -32.96.128.0/18 7018 -32.96.192.0/19 7018 -32.96.224.0/19 2685 -32.97.0.0/20 7018 -32.97.16.0/24 7018 -32.97.17.0/24 19604 -32.97.18.0/23 7018 -32.97.20.0/22 7018 -32.97.24.0/21 7018 -32.97.32.0/19 7018 -32.97.64.0/19 7018 -32.97.96.0/22 7018 -32.97.100.0/24 12169 -32.97.101.0/24 7018 -32.97.102.0/23 7018 -32.97.104.0/22 7018 -32.97.108.0/23 7018 -32.97.110.0/24 18703 -32.97.111.0/24 7018 -32.97.112.0/20 7018 -32.97.128.0/21 7018 -32.97.136.0/24 14904 -32.97.137.0/24 7018 -32.97.138.0/23 7018 -32.97.140.0/22 7018 -32.97.144.0/21 7018 -32.97.152.0/24 18440 -32.97.153.0/24 7018 -32.97.154.0/24 7018 -32.97.155.0/24 19604 -32.97.156.0/23 7018 -32.97.158.0/24 7018 -32.97.159.0/24 18440 -32.97.160.0/22 7018 -32.97.164.0/23 7018 -32.97.166.0/24 2386 -32.97.167.0/24 7018 -32.97.168.0/21 7018 -32.97.176.0/22 7018 -32.97.180.0/23 7018 -32.97.182.0/23 706 -32.97.184.0/24 7018 -32.97.185.0/24 706 -32.97.186.0/23 7018 -32.97.188.0/22 7018 -32.97.192.0/22 7018 -32.97.196.0/23 7018 -32.97.198.0/24 19604 -32.97.199.0/24 7018 -32.97.200.0/21 7018 -32.97.208.0/21 7018 -32.97.216.0/24 7018 -32.97.217.0/24 2386 -32.97.218.0/24 7018 -32.97.219.0/24 2386 -32.97.220.0/22 7018 -32.97.224.0/19 7018 -32.98.0.0/15 7018 -32.100.0.0/16 7018 -32.101.0.0/17 7018 -32.101.128.0/18 7018 -32.101.192.0/21 7018 -32.101.200.0/22 7018 -32.101.204.0/23 7018 -32.101.206.0/24 2386 -32.101.207.0/24 7018 -32.101.208.0/24 7018 -32.101.209.0/24 17229 -32.101.210.0/23 7018 -32.101.212.0/22 7018 -32.101.216.0/21 7018 -32.101.224.0/19 7018 -32.102.0.0/19 7018 -32.102.32.0/20 7018 -32.102.48.0/23 7018 -32.102.50.0/24 17227 -32.102.51.0/24 7018 -32.102.52.0/22 7018 -32.102.56.0/21 7018 -32.102.64.0/18 7018 -32.102.128.0/22 7018 -32.102.132.0/23 7018 -32.102.134.0/23 2685 -32.102.136.0/21 2685 -32.102.144.0/24 2685 -32.102.145.0/24 7018 -32.102.146.0/23 7018 -32.102.148.0/22 7018 -32.102.152.0/21 7018 -32.102.160.0/19 7018 -32.102.192.0/18 7018 -32.103.0.0/16 7018 -32.104.0.0/15 2688 -32.106.0.0/16 2686 -32.107.0.0/20 2686 -32.107.16.0/22 2686 -32.107.20.0/24 2685 -32.107.21.0/24 2686 -32.107.22.0/23 2686 -32.107.24.0/21 2686 -32.107.32.0/20 2686 -32.107.48.0/22 2686 -32.107.52.0/23 2686 -32.107.54.0/24 2687 -32.107.55.0/24 2686 -32.107.56.0/22 2686 -32.107.60.0/23 2686 -32.107.62.0/24 2686 -32.107.63.0/24 2685 -32.107.64.0/19 2686 -32.107.96.0/21 2686 -32.107.104.0/23 2686 -32.107.106.0/24 2687 -32.107.107.0/24 2686 -32.107.108.0/22 2686 -32.107.112.0/23 2688 -32.107.114.0/23 2686 -32.107.116.0/23 2688 -32.107.118.0/23 2686 -32.107.120.0/21 2686 -32.107.128.0/17 2686 -32.108.0.0/14 2686 -32.112.0.0/19 2686 -32.112.32.0/21 2686 -32.112.40.0/23 2686 -32.112.42.0/24 2686 -32.112.43.0/24 4468 -32.112.44.0/23 4468 -32.112.46.0/23 2686 -32.112.48.0/20 2686 -32.112.64.0/18 2686 -32.112.128.0/17 2686 -32.113.0.0/16 2686 -32.114.0.0/20 2687 -32.114.16.0/22 2687 -32.114.20.0/23 2687 -32.114.22.0/23 4468 -32.114.24.0/21 2687 -32.114.32.0/19 2687 -32.114.64.0/18 2687 -32.114.128.0/17 2687 -32.115.0.0/18 2688 -32.115.64.0/18 2685 -32.115.128.0/18 2688 -32.115.192.0/18 2686 -32.116.0.0/16 2686 -32.117.0.0/17 2686 -32.117.128.0/19 2686 -32.117.160.0/22 2686 -32.117.164.0/24 2687 -32.117.165.0/24 2686 -32.117.166.0/23 2686 -32.117.168.0/21 2686 -32.117.176.0/20 2686 -32.117.192.0/18 2686 -32.118.0.0/20 2686 -32.118.16.0/24 2687 -32.118.17.0/24 2686 -32.118.18.0/23 2686 -32.118.20.0/22 2686 -32.118.24.0/21 2686 -32.118.32.0/19 2686 -32.118.64.0/18 2686 -32.118.128.0/18 2686 -32.118.192.0/19 2686 -32.118.224.0/20 2686 -32.118.240.0/20 2687 -32.119.0.0/16 2686 -32.120.0.0/13 2686 -32.128.0.0/13 2686 -32.136.0.0/14 2686 -32.140.0.0/16 7018 -32.141.0.0/16 2686 -32.142.0.0/15 2686 -32.144.0.0/12 2686 -32.160.0.0/12 2686 -32.176.0.0/14 20057 -32.180.0.0/14 2686 -32.184.0.0/13 2686 -32.192.0.0/12 2686 -32.208.0.0/12 46690 -32.224.0.0/17 2687 -32.224.128.0/21 2687 -32.224.136.0/22 2687 -32.224.140.0/23 2687 -32.224.142.0/24 17227 -32.224.143.0/24 2687 -32.224.144.0/20 2687 -32.224.160.0/19 2687 -32.224.192.0/18 2687 -32.225.0.0/16 2687 -32.226.0.0/15 2687 -32.228.0.0/18 2687 -32.228.64.0/19 2687 -32.228.96.0/21 17229 -32.228.104.0/21 2687 -32.228.112.0/20 2687 -32.228.128.0/21 17231 -32.228.136.0/21 2687 -32.228.144.0/20 2687 -32.228.160.0/21 17231 -32.228.168.0/21 7018 -32.228.176.0/22 17227 -32.228.180.0/24 17227 -32.228.181.0/24 2687 -32.228.182.0/23 2687 -32.228.184.0/23 17227 -32.228.186.0/24 17227 -32.228.187.0/24 2687 -32.228.188.0/23 2687 -32.228.190.0/23 4267 -32.228.192.0/22 4267 -32.228.196.0/22 2687 -32.228.200.0/21 2687 -32.228.208.0/20 2687 -32.228.224.0/19 2687 -32.229.0.0/21 4264 -32.229.8.0/21 2687 -32.229.16.0/20 2687 -32.229.32.0/19 2687 -32.229.64.0/21 17228 -32.229.72.0/21 2687 -32.229.80.0/20 2687 -32.229.96.0/19 2687 -32.229.128.0/21 17227 -32.229.136.0/21 2687 -32.229.144.0/20 2687 -32.229.160.0/19 2687 -32.229.192.0/21 17233 -32.229.200.0/21 2687 -32.229.208.0/20 2687 -32.229.224.0/19 2687 -32.230.0.0/16 2687 -32.231.0.0/19 2687 -32.231.32.0/22 2687 -32.231.36.0/23 2687 -32.231.38.0/23 2688 -32.231.40.0/22 2688 -32.231.44.0/24 2687 -32.231.45.0/24 2688 -32.231.46.0/24 2688 -32.231.47.0/24 2687 -32.231.48.0/21 2687 -32.231.56.0/22 2687 -32.231.60.0/23 2687 -32.231.62.0/24 2687 -32.231.63.0/24 2688 -32.231.64.0/18 2687 -32.231.128.0/17 2687 -32.232.0.0/14 2687 -32.236.0.0/15 2687 -32.238.0.0/17 2687 -32.238.128.0/21 2687 -32.238.136.0/23 2687 -32.238.138.0/24 2687 -32.238.139.0/24 2686 -32.238.140.0/23 2686 -32.238.142.0/23 2687 -32.238.144.0/20 2687 -32.238.160.0/19 2687 -32.238.192.0/18 2687 -32.239.0.0/18 2687 -32.239.64.0/19 2687 -32.239.96.0/21 2687 -32.239.104.0/22 2687 -32.239.108.0/24 2686 -32.239.109.0/24 2687 -32.239.110.0/23 2687 -32.239.112.0/22 2687 -32.239.116.0/23 2687 -32.239.118.0/24 2687 -32.239.119.0/24 2686 -32.239.120.0/21 2687 -32.239.128.0/19 2687 -32.239.160.0/22 2686 -32.239.164.0/23 2687 -32.239.166.0/23 2686 -32.239.168.0/21 2687 -32.239.176.0/20 2687 -32.239.192.0/20 2687 -32.239.208.0/22 2687 -32.239.212.0/23 2687 -32.239.214.0/23 2686 -32.239.216.0/23 2686 -32.239.218.0/23 2687 -32.239.220.0/22 2687 -32.239.224.0/22 2687 -32.239.228.0/23 2687 -32.239.230.0/24 2686 -32.239.231.0/24 2687 -32.239.232.0/21 2687 -32.239.240.0/21 2687 -32.239.248.0/23 2687 -32.239.250.0/24 2687 -32.239.251.0/24 2686 -32.239.252.0/22 2687 -32.240.0.0/14 2686 -32.244.0.0/16 2686 -32.245.0.0/17 2686 -32.245.128.0/18 2686 -32.245.192.0/23 8030 -32.245.194.0/23 2686 -32.245.196.0/22 2686 -32.245.200.0/21 8030 -32.245.208.0/20 8030 -32.245.224.0/19 2686 -32.246.0.0/15 2686 -32.248.0.0/13 2686 -34.64.0.0/16 139070 -34.65.0.0/16 15169 -34.66.0.0/15 15169 -34.68.0.0/14 15169 -34.72.0.0/13 15169 -34.80.0.0/12 15169 -34.96.0.0/15 15169 -34.98.0.0/17 15169 -34.98.128.0/20 15169 -34.98.144.0/21 15169 -34.98.152.0/22 15169 -34.98.156.0/22 19527 -34.98.160.0/19 15169 -34.98.192.0/18 19527 -34.99.0.0/19 15169 -34.99.32.0/19 19527 -34.99.64.0/20 19527 -34.99.80.0/20 15169 -34.99.96.0/19 15169 -34.99.128.0/17 19527 -34.100.0.0/18 15169 -34.100.64.0/19 15169 -34.100.96.0/20 15169 -34.100.112.0/20 19527 -34.100.128.0/17 15169 -34.101.0.0/16 139190 -34.102.0.0/16 15169 -34.103.0.0/20 19527 -34.103.16.0/20 15169 -34.103.32.0/20 19527 -34.103.48.0/20 15169 -34.103.64.0/18 15169 -34.103.128.0/17 19527 -34.104.0.0/13 15169 -34.112.0.0/14 19527 -34.116.0.0/14 15169 -34.120.0.0/14 15169 -34.124.0.0/18 15169 -34.124.64.0/20 15169 -34.124.80.0/22 15169 -34.124.84.0/22 19527 -34.124.88.0/21 15169 -34.124.96.0/19 15169 -34.124.128.0/17 15169 -34.125.0.0/16 15169 -34.126.0.0/15 15169 -34.192.0.0/12 14618 -34.208.0.0/12 16509 -34.224.0.0/12 14618 -34.240.0.0/12 16509 -35.0.0.0/15 237 -35.2.0.0/15 36375 -35.4.0.0/15 237 -35.6.0.0/16 36375 -35.7.0.0/16 237 -35.8.0.0/13 237 -35.16.0.0/12 237 -35.32.0.0/12 237 -35.48.0.0/13 237 -35.56.0.0/14 237 -35.60.0.0/15 237 -35.62.0.0/21 397797 -35.62.8.0/21 237 -35.62.16.0/20 237 -35.62.32.0/19 237 -35.62.64.0/18 237 -35.62.128.0/17 237 -35.63.0.0/16 237 -35.64.0.0/14 237 -35.68.0.0/15 237 -35.70.0.0/16 237 -35.71.0.0/18 237 -35.128.0.0/19 394141 -35.128.32.0/20 394141 -35.128.48.0/22 394141 -35.128.52.0/23 394141 -35.128.54.0/24 394141 -35.128.55.0/24 32456 -35.128.56.0/24 394141 -35.128.57.0/24 395179 -35.128.58.0/23 394141 -35.128.60.0/22 394141 -35.128.192.0/23 11096 -35.128.206.0/23 11096 -35.129.0.0/18 20115 -35.129.64.0/19 20115 -35.130.0.0/16 20115 -35.131.0.0/19 20115 -35.131.128.0/17 20115 -35.132.0.0/24 33588 -35.132.32.0/24 33588 -35.132.128.0/17 20115 -35.133.0.0/18 33588 -35.133.64.0/18 20115 -35.133.128.0/17 20115 -35.134.0.0/17 20115 -35.134.192.0/18 33588 -35.135.128.0/19 20115 -35.135.192.0/21 16787 -35.136.0.0/13 33363 -35.152.0.0/16 16509 -35.153.0.0/16 14618 -35.154.0.0/15 16509 -35.156.0.0/14 16509 -35.160.0.0/13 16509 -35.168.0.0/13 14618 -35.176.0.0/13 16509 -35.184.0.0/13 15169 -35.192.0.0/14 15169 -35.196.0.0/15 15169 -35.198.0.0/16 15169 -35.199.0.0/17 15169 -35.199.128.0/18 15169 -35.200.0.0/15 15169 -35.202.0.0/16 15169 -35.203.0.0/17 15169 -35.203.128.0/18 15169 -35.203.192.0/19 15169 -35.203.224.0/22 15169 -35.203.228.0/23 19527 -35.203.230.0/23 15169 -35.203.232.0/21 15169 -35.203.240.0/20 15169 -35.204.0.0/15 15169 -35.206.0.0/15 19527 -35.208.0.0/13 19527 -35.216.0.0/14 19527 -35.220.0.0/14 15169 -35.224.0.0/12 15169 -35.240.0.0/13 15169 -35.248.0.0/20 3549 -35.248.16.0/24 27459 -35.248.17.0/24 3549 -35.248.18.0/24 8149 -35.248.19.0/24 3549 -35.248.20.0/22 3549 -35.248.24.0/22 3549 -35.248.28.0/23 3549 -35.248.30.0/24 36513 -35.248.31.0/24 3549 -35.248.32.0/20 14554 -35.248.48.0/20 3549 -35.248.64.0/18 3549 -35.248.128.0/17 3549 -35.249.0.0/16 3549 -35.250.0.0/15 3549 -35.252.0.0/14 3549 -36.0.4.0/22 45170 -36.0.93.0/24 133948 -36.0.94.0/24 133948 -36.0.101.0/24 133948 -36.1.0.0/16 4134 -36.2.0.0/15 2519 -36.4.0.0/14 4134 -36.8.0.0/13 2516 -36.16.0.0/13 4134 -36.24.0.0/16 4134 -36.25.0.0/17 4134 -36.25.128.0/18 4134 -36.25.192.0/19 4134 -36.25.224.0/20 4134 -36.25.240.0/20 58461 -36.26.0.0/18 4134 -36.26.64.0/19 58461 -36.26.96.0/19 4134 -36.26.128.0/17 4134 -36.27.0.0/17 4134 -36.27.128.0/18 4134 -36.27.192.0/20 4134 -36.27.208.0/20 136190 -36.27.224.0/19 4134 -36.28.0.0/14 4134 -36.32.0.0/14 4837 -36.36.0.0/16 17962 -36.37.32.0/22 56136 -36.37.64.0/23 4800 -36.37.66.0/24 131718 -36.37.67.0/24 4800 -36.37.68.0/22 4800 -36.37.72.0/21 4800 -36.37.80.0/20 4800 -36.37.96.0/20 4800 -36.37.112.0/21 4800 -36.37.120.0/24 38513 -36.37.121.0/24 4800 -36.37.122.0/24 38513 -36.37.123.0/24 4800 -36.37.124.0/22 4800 -36.37.128.0/17 38623 -36.38.8.0/22 38091 -36.38.12.0/24 38091 -36.38.13.0/24 45996 -36.38.14.0/23 38091 -36.38.16.0/21 45365 -36.38.24.0/22 38091 -36.38.28.0/24 38091 -36.38.29.0/24 17586 -36.38.30.0/23 9698 -36.38.32.0/22 38091 -36.38.36.0/23 38669 -36.38.38.0/24 17586 -36.38.39.0/24 38091 -36.38.40.0/21 9770 -36.38.48.0/20 9770 -36.38.64.0/18 18313 -36.38.128.0/19 10037 -36.38.160.0/21 10037 -36.38.168.0/21 38669 -36.38.176.0/20 45365 -36.38.192.0/20 9697 -36.38.208.0/21 9697 -36.38.216.0/22 9697 -36.38.220.0/22 9845 -36.38.224.0/21 9845 -36.38.232.0/22 9845 -36.38.236.0/22 9697 -36.38.240.0/20 9697 -36.39.0.0/17 17839 -36.39.128.0/20 38669 -36.39.144.0/20 9770 -36.39.160.0/19 17577 -36.39.192.0/18 17577 -36.40.0.0/18 4134 -36.40.64.0/19 134768 -36.40.96.0/19 4134 -36.40.128.0/17 4134 -36.41.0.0/17 4134 -36.41.128.0/19 4134 -36.41.160.0/21 4134 -36.41.168.0/21 134768 -36.41.176.0/21 4134 -36.41.184.0/21 134768 -36.41.192.0/18 4134 -36.42.0.0/18 4134 -36.42.64.0/21 4134 -36.42.72.0/21 134768 -36.42.80.0/20 4134 -36.42.96.0/19 4134 -36.42.128.0/17 4134 -36.43.0.0/16 4134 -36.44.0.0/15 4134 -36.46.0.0/17 4134 -36.46.128.0/19 134768 -36.46.160.0/19 4134 -36.46.192.0/18 4134 -36.47.0.0/16 4134 -36.48.0.0/15 4134 -36.51.252.0/23 4808 -36.51.254.0/24 37936 -36.51.255.0/24 55355 -36.52.0.0/20 10013 -36.52.26.0/23 10013 -36.52.28.0/22 10013 -36.52.32.0/19 10013 -36.52.64.0/19 10013 -36.52.96.0/20 7522 -36.52.126.0/23 10013 -36.52.128.0/21 10013 -36.52.136.0/21 18144 -36.52.152.0/21 18144 -36.52.160.0/21 18144 -36.52.174.0/23 10013 -36.52.176.0/20 10013 -36.52.192.0/20 10013 -36.52.208.0/21 10013 -36.52.216.0/22 10013 -36.52.220.0/23 10013 -36.52.222.0/24 10013 -36.52.238.0/23 10013 -36.52.240.0/20 10013 -36.53.0.0/17 9370 -36.53.128.0/18 9370 -36.53.192.0/19 10013 -36.53.224.0/21 10013 -36.53.232.0/21 18144 -36.53.240.0/20 7522 -36.54.0.0/15 10013 -36.56.0.0/13 4134 -36.64.0.0/16 17974 -36.65.0.0/16 7713 -36.66.0.0/23 17974 -36.66.2.0/24 7713 -36.66.3.0/24 17974 -36.66.4.0/24 17974 -36.66.5.0/24 137019 -36.66.6.0/23 17974 -36.66.8.0/21 17974 -36.66.16.0/24 17974 -36.66.17.0/24 137019 -36.66.18.0/24 137019 -36.66.19.0/24 7713 -36.66.20.0/24 7713 -36.66.21.0/24 137019 -36.66.22.0/24 137019 -36.66.23.0/24 7713 -36.66.24.0/24 7713 -36.66.25.0/24 17974 -36.66.26.0/23 17974 -36.66.28.0/22 17974 -36.66.32.0/19 17974 -36.66.64.0/18 17974 -36.66.128.0/17 17974 -36.67.0.0/17 17974 -36.67.128.0/19 17974 -36.67.160.0/20 17974 -36.67.176.0/23 17974 -36.67.178.0/24 17974 -36.67.179.0/24 7713 -36.67.180.0/24 7713 -36.67.181.0/24 17974 -36.67.182.0/23 17974 -36.67.184.0/21 17974 -36.67.192.0/18 17974 -36.68.0.0/15 7713 -36.70.0.0/17 7713 -36.70.128.0/19 7713 -36.70.160.0/21 17974 -36.70.168.0/21 7713 -36.70.176.0/20 7713 -36.70.192.0/18 7713 -36.71.0.0/22 7713 -36.71.4.0/22 17974 -36.71.8.0/22 7713 -36.71.12.0/22 17974 -36.71.16.0/20 7713 -36.71.32.0/19 7713 -36.71.64.0/18 7713 -36.71.128.0/20 7713 -36.71.144.0/24 17974 -36.71.145.0/24 7713 -36.71.146.0/23 7713 -36.71.148.0/22 7713 -36.71.152.0/21 7713 -36.71.160.0/19 7713 -36.71.192.0/18 7713 -36.72.0.0/17 7713 -36.72.128.0/18 7713 -36.72.192.0/19 7713 -36.72.224.0/22 17974 -36.72.228.0/22 7713 -36.72.232.0/21 7713 -36.72.240.0/20 7713 -36.73.0.0/16 7713 -36.74.0.0/16 7713 -36.75.0.0/17 7713 -36.75.128.0/19 7713 -36.75.160.0/20 7713 -36.75.176.0/23 7713 -36.75.178.0/23 17974 -36.75.180.0/22 7713 -36.75.184.0/21 7713 -36.75.192.0/23 7713 -36.75.194.0/24 17974 -36.75.195.0/24 7713 -36.75.196.0/22 7713 -36.75.200.0/21 7713 -36.75.208.0/20 7713 -36.75.224.0/21 7713 -36.75.232.0/22 17974 -36.75.236.0/22 7713 -36.75.240.0/20 7713 -36.76.0.0/15 7713 -36.78.0.0/17 7713 -36.78.128.0/19 7713 -36.78.160.0/20 7713 -36.78.176.0/21 7713 -36.78.184.0/24 7713 -36.78.185.0/24 17974 -36.78.186.0/23 7713 -36.78.188.0/22 7713 -36.78.192.0/19 7713 -36.78.224.0/20 17974 -36.78.240.0/24 7713 -36.78.241.0/24 17974 -36.78.242.0/23 7713 -36.78.244.0/22 7713 -36.78.248.0/22 7713 -36.78.252.0/23 7713 -36.78.254.0/24 17974 -36.78.255.0/24 7713 -36.79.0.0/16 7713 -36.80.0.0/15 7713 -36.82.0.0/19 7713 -36.82.32.0/20 7713 -36.82.48.0/21 7713 -36.82.56.0/21 17974 -36.82.64.0/21 17974 -36.82.72.0/21 7713 -36.82.80.0/20 7713 -36.82.96.0/19 7713 -36.82.128.0/20 7713 -36.82.144.0/23 7713 -36.82.146.0/23 17974 -36.82.148.0/23 7713 -36.82.150.0/23 17974 -36.82.152.0/21 17974 -36.82.160.0/21 17974 -36.82.168.0/21 7713 -36.82.176.0/20 7713 -36.82.192.0/18 7713 -36.83.0.0/21 7713 -36.83.8.0/22 17974 -36.83.12.0/22 7713 -36.83.16.0/20 7713 -36.83.32.0/19 7713 -36.83.64.0/18 7713 -36.83.128.0/17 7713 -36.84.0.0/24 7713 -36.84.1.0/24 17974 -36.84.2.0/24 7713 -36.84.3.0/24 17974 -36.84.4.0/22 17974 -36.84.8.0/22 7713 -36.84.12.0/23 7713 -36.84.14.0/24 7713 -36.84.15.0/24 17974 -36.84.16.0/22 7713 -36.84.20.0/22 17974 -36.84.24.0/22 7713 -36.84.28.0/24 7713 -36.84.29.0/24 17974 -36.84.30.0/23 17974 -36.84.32.0/23 17974 -36.84.34.0/24 17974 -36.84.35.0/24 7713 -36.84.36.0/22 7713 -36.84.40.0/21 7713 -36.84.48.0/24 17974 -36.84.49.0/24 7713 -36.84.50.0/23 17974 -36.84.52.0/22 7713 -36.84.56.0/22 7713 -36.84.60.0/23 7713 -36.84.62.0/24 17974 -36.84.63.0/24 7713 -36.84.64.0/24 17974 -36.84.65.0/24 7713 -36.84.66.0/23 17974 -36.84.68.0/22 17974 -36.84.72.0/21 7713 -36.84.80.0/21 7713 -36.84.88.0/23 17974 -36.84.90.0/23 7713 -36.84.92.0/22 7713 -36.84.96.0/19 7713 -36.84.128.0/19 7713 -36.84.160.0/21 7713 -36.84.168.0/21 17974 -36.84.176.0/21 17974 -36.84.184.0/21 7713 -36.84.192.0/19 7713 -36.84.224.0/23 17974 -36.84.226.0/24 17974 -36.84.227.0/24 7713 -36.84.228.0/23 17974 -36.84.230.0/24 17974 -36.84.231.0/24 7713 -36.84.232.0/21 7713 -36.84.240.0/22 17974 -36.84.244.0/22 7713 -36.84.248.0/21 7713 -36.85.0.0/16 7713 -36.86.0.0/19 7713 -36.86.32.0/20 7713 -36.86.48.0/22 17974 -36.86.52.0/23 7713 -36.86.54.0/23 17974 -36.86.56.0/24 7713 -36.86.57.0/24 17974 -36.86.58.0/23 7713 -36.86.60.0/22 17974 -36.86.64.0/18 7713 -36.86.128.0/18 17974 -36.86.192.0/18 7713 -36.87.0.0/19 17974 -36.87.32.0/19 7713 -36.87.64.0/19 7713 -36.87.96.0/19 17974 -36.87.128.0/17 7713 -36.88.0.0/17 7713 -36.88.128.0/19 7713 -36.88.160.0/19 17974 -36.88.192.0/18 7713 -36.89.0.0/24 7713 -36.89.1.0/24 17974 -36.89.2.0/23 7713 -36.89.4.0/23 7713 -36.89.6.0/23 17974 -36.89.8.0/21 17974 -36.89.16.0/20 17974 -36.89.32.0/19 17974 -36.89.64.0/18 17974 -36.89.128.0/18 17974 -36.89.192.0/20 17974 -36.89.208.0/21 17974 -36.89.216.0/22 17974 -36.89.220.0/24 7713 -36.89.221.0/24 17974 -36.89.222.0/23 17974 -36.89.224.0/19 17974 -36.90.0.0/16 7713 -36.91.0.0/17 17974 -36.91.128.0/18 17974 -36.91.192.0/21 17974 -36.91.200.0/23 17974 -36.91.202.0/24 7713 -36.91.203.0/24 17974 -36.91.204.0/22 17974 -36.91.208.0/20 17974 -36.91.224.0/22 17974 -36.91.228.0/23 17974 -36.91.230.0/24 17974 -36.91.231.0/24 7713 -36.91.232.0/24 7713 -36.91.233.0/24 17974 -36.91.234.0/23 17974 -36.91.236.0/22 17974 -36.91.240.0/21 17974 -36.91.248.0/23 17974 -36.91.250.0/24 7713 -36.91.251.0/24 17974 -36.91.252.0/22 17974 -36.92.0.0/17 17974 -36.92.128.0/18 17974 -36.92.192.0/19 17974 -36.92.224.0/20 7713 -36.92.240.0/20 17974 -36.93.0.0/16 7713 -36.96.0.0/22 4134 -36.96.4.0/23 4134 -36.96.6.0/23 137694 -36.96.8.0/21 4134 -36.96.16.0/20 4134 -36.96.32.0/19 4134 -36.96.64.0/18 4134 -36.96.128.0/18 4134 -36.96.192.0/20 4134 -36.96.208.0/21 4134 -36.96.216.0/21 137694 -36.96.224.0/19 4134 -36.97.0.0/16 4134 -36.98.0.0/16 4134 -36.99.0.0/21 139018 -36.99.8.0/21 4134 -36.99.16.0/24 4134 -36.99.17.0/24 139018 -36.99.18.0/24 139018 -36.99.19.0/24 4134 -36.99.20.0/22 4134 -36.99.24.0/21 4134 -36.99.32.0/20 137687 -36.99.48.0/20 4134 -36.99.64.0/18 4134 -36.99.128.0/21 4134 -36.99.136.0/21 137687 -36.99.144.0/20 4134 -36.99.160.0/19 137687 -36.99.192.0/19 4134 -36.99.224.0/21 137687 -36.99.232.0/21 4134 -36.99.240.0/20 4134 -36.100.0.0/15 4134 -36.102.0.0/16 4134 -36.103.0.0/17 4134 -36.103.128.0/18 4134 -36.103.192.0/20 4134 -36.103.208.0/21 4134 -36.103.216.0/22 4134 -36.103.220.0/22 134761 -36.103.224.0/19 134761 -36.104.0.0/16 4134 -36.105.0.0/18 4134 -36.105.64.0/23 137694 -36.105.66.0/24 137694 -36.105.67.0/24 4134 -36.105.68.0/22 137694 -36.105.72.0/23 137694 -36.105.74.0/23 4134 -36.105.76.0/23 4134 -36.105.78.0/24 137694 -36.105.79.0/24 4134 -36.105.80.0/21 4134 -36.105.88.0/22 137694 -36.105.92.0/22 4134 -36.105.96.0/19 4134 -36.105.128.0/21 4134 -36.105.136.0/21 137694 -36.105.144.0/20 4134 -36.105.160.0/21 4134 -36.105.168.0/23 4134 -36.105.170.0/23 137694 -36.105.172.0/22 4134 -36.105.176.0/21 4134 -36.105.184.0/21 137694 -36.105.192.0/19 4134 -36.105.224.0/20 4134 -36.105.240.0/22 4134 -36.105.244.0/22 137694 -36.105.248.0/21 4134 -36.106.0.0/16 17638 -36.107.0.0/20 4134 -36.107.16.0/21 4134 -36.107.24.0/23 137694 -36.107.26.0/23 4134 -36.107.28.0/22 4134 -36.107.32.0/21 4134 -36.107.40.0/22 137694 -36.107.44.0/22 4134 -36.107.48.0/20 4134 -36.107.64.0/20 4134 -36.107.80.0/21 4134 -36.107.88.0/22 4134 -36.107.92.0/22 137694 -36.107.96.0/19 4134 -36.107.128.0/17 4134 -36.108.0.0/16 4134 -36.109.0.0/18 4134 -36.109.64.0/19 4134 -36.109.96.0/21 137694 -36.109.104.0/21 4134 -36.109.112.0/20 4134 -36.109.128.0/17 4134 -36.110.0.0/17 4847 -36.110.128.0/17 23724 -36.111.0.0/19 4812 -36.111.32.0/20 58543 -36.111.48.0/20 4134 -36.111.64.0/21 38283 -36.111.72.0/22 4134 -36.111.76.0/23 38283 -36.111.78.0/23 4134 -36.111.80.0/21 4134 -36.111.88.0/24 23724 -36.111.89.0/24 4134 -36.111.90.0/23 4134 -36.111.92.0/22 4134 -36.111.96.0/19 4134 -36.111.128.0/18 58519 -36.111.192.0/21 134756 -36.111.200.0/21 63835 -36.111.208.0/20 4134 -36.111.224.0/19 4134 -36.112.0.0/18 4847 -36.112.64.0/19 4847 -36.112.96.0/20 4847 -36.112.112.0/23 4847 -36.112.114.0/24 23724 -36.112.115.0/24 4847 -36.112.116.0/22 4847 -36.112.120.0/21 4847 -36.112.128.0/21 23724 -36.112.136.0/22 23724 -36.112.140.0/23 4847 -36.112.142.0/23 23724 -36.112.144.0/24 4847 -36.112.145.0/24 23724 -36.112.146.0/23 23724 -36.112.148.0/23 23724 -36.112.150.0/24 23724 -36.112.151.0/24 4847 -36.112.152.0/23 4847 -36.112.154.0/23 23724 -36.112.156.0/22 4847 -36.112.160.0/21 4847 -36.112.168.0/23 23724 -36.112.170.0/23 4847 -36.112.172.0/22 4847 -36.112.176.0/20 4847 -36.112.192.0/18 4847 -36.113.0.0/17 137689 -36.113.128.0/18 137689 -36.113.192.0/19 137689 -36.113.224.0/20 137689 -36.113.240.0/21 137689 -36.113.248.0/23 137689 -36.128.0.0/15 56044 -36.130.0.0/15 9808 -36.132.0.0/20 56044 -36.132.16.0/20 9808 -36.132.32.0/19 9808 -36.132.64.0/18 9808 -36.132.128.0/17 9808 -36.133.0.0/21 9808 -36.133.8.0/22 9808 -36.133.12.0/22 56047 -36.133.16.0/21 56047 -36.133.24.0/21 56046 -36.133.32.0/22 56046 -36.133.36.0/22 24445 -36.133.40.0/21 24445 -36.133.48.0/20 9808 -36.133.64.0/21 9808 -36.133.72.0/21 24400 -36.133.80.0/22 24400 -36.133.84.0/22 9808 -36.133.88.0/21 9808 -36.133.96.0/19 9808 -36.133.128.0/17 9808 -36.134.0.0/21 56041 -36.134.8.0/21 9808 -36.134.16.0/20 9808 -36.134.32.0/19 9808 -36.134.64.0/18 9808 -36.134.128.0/17 9808 -36.135.0.0/16 9808 -36.136.0.0/14 9808 -36.140.0.0/15 9808 -36.142.0.0/16 9808 -36.143.0.0/18 24547 -36.143.64.0/18 9808 -36.143.128.0/17 9808 -36.144.0.0/14 9808 -36.148.0.0/17 56047 -36.148.128.0/17 9808 -36.149.0.0/16 56046 -36.150.0.0/15 56046 -36.152.0.0/14 56046 -36.156.0.0/16 56046 -36.157.0.0/16 56047 -36.158.0.0/17 56047 -36.158.128.0/20 9808 -36.158.144.0/20 56047 -36.158.160.0/19 56047 -36.158.192.0/18 56047 -36.159.0.0/16 9808 -36.160.0.0/11 9808 -36.192.0.0/21 24138 -36.192.8.0/22 9394 -36.192.12.0/22 37981 -36.192.16.0/21 37981 -36.192.24.0/22 37981 -36.192.28.0/22 9394 -36.192.32.0/19 9394 -36.192.64.0/19 9394 -36.192.96.0/21 9394 -36.192.104.0/22 9394 -36.192.108.0/22 45057 -36.192.112.0/20 9394 -36.192.128.0/19 9394 -36.192.160.0/20 9394 -36.192.176.0/20 9808 -36.192.192.0/21 9394 -36.192.200.0/22 9394 -36.192.204.0/23 45069 -36.192.206.0/23 9394 -36.192.208.0/20 9394 -36.192.224.0/19 9394 -36.193.0.0/19 9394 -36.193.32.0/21 9394 -36.193.40.0/21 38370 -36.193.48.0/20 38370 -36.193.64.0/19 9394 -36.193.96.0/20 9394 -36.193.112.0/21 9808 -36.193.120.0/21 9394 -36.193.128.0/17 9394 -36.194.0.0/15 9394 -36.196.0.0/14 9394 -36.200.0.0/13 9394 -36.208.0.0/12 9394 -36.224.0.0/12 3462 -36.240.0.0/13 37903 -36.248.0.0/14 4837 -36.252.0.0/15 38565 -36.255.0.0/23 46071 -36.255.3.0/24 18229 -36.255.8.0/22 17625 -36.255.24.0/22 27630 -36.255.28.0/22 135086 -36.255.32.0/22 9541 -36.255.39.0/24 17819 -36.255.40.0/23 9541 -36.255.43.0/24 9541 -36.255.44.0/22 9541 -36.255.48.0/22 134067 -36.255.52.0/22 135092 -36.255.60.0/22 135607 -36.255.72.0/22 13768 -36.255.78.0/24 46636 -36.255.79.0/24 8100 -36.255.80.0/22 136732 -36.255.84.0/22 132559 -36.255.88.0/23 17665 -36.255.90.0/24 17665 -36.255.91.0/24 58966 -36.255.92.0/22 207895 -36.255.96.0/23 21859 -36.255.98.0/24 9009 -36.255.99.0/24 36351 -36.255.100.0/22 132165 -36.255.104.0/23 136238 -36.255.106.0/23 134431 -36.255.108.0/22 24554 -36.255.112.0/22 17907 -36.255.124.0/22 131259 -36.255.128.0/22 63570 -36.255.132.0/22 138730 -36.255.136.0/22 56050 -36.255.140.0/23 45352 -36.255.144.0/22 38566 -36.255.152.0/22 136915 -36.255.156.0/24 45117 -36.255.157.0/24 135718 -36.255.158.0/23 135718 -36.255.164.0/24 63571 -36.255.168.0/22 138790 -36.255.188.0/22 135115 -36.255.192.0/22 64021 -36.255.200.0/22 134927 -36.255.204.0/22 33438 -36.255.208.0/22 133269 -36.255.212.0/24 14163 -36.255.213.0/24 64200 -36.255.214.0/24 64200 -36.255.215.0/24 13213 -36.255.216.0/22 24295 -36.255.220.0/22 135377 -36.255.224.0/22 56209 -36.255.228.0/22 132547 -36.255.232.0/22 134053 -36.255.236.0/22 24295 -36.255.240.0/22 134293 -36.255.244.0/22 134672 -36.255.248.0/22 134899 -36.255.252.0/22 135133 -37.0.0.0/22 198301 -37.0.4.0/23 198301 -37.0.7.0/24 200451 -37.0.16.0/21 35467 -37.0.24.0/21 50794 -37.0.32.0/19 15547 -37.0.64.0/21 31042 -37.0.72.0/21 35393 -37.0.80.0/20 28685 -37.0.96.0/21 198312 -37.0.104.0/21 57074 -37.0.114.0/24 10780 -37.0.118.0/23 10780 -37.0.120.0/21 198310 -37.0.128.0/17 1257 -37.1.0.0/18 34456 -37.1.64.0/20 12389 -37.1.80.0/21 197078 -37.1.88.0/21 50763 -37.1.96.0/21 35826 -37.1.104.0/22 49250 -37.1.108.0/23 49250 -37.1.112.0/20 57618 -37.1.128.0/20 48524 -37.1.144.0/22 60781 -37.1.152.0/21 8190 -37.1.160.0/19 29286 -37.1.192.0/21 28753 -37.1.200.0/21 50673 -37.1.208.0/21 35017 -37.1.216.0/21 50673 -37.1.224.0/21 51059 -37.1.232.0/21 51207 -37.1.240.0/21 48072 -37.1.248.0/23 48072 -37.1.250.0/23 31167 -37.1.252.0/22 48072 -37.2.0.0/15 1257 -37.4.0.0/15 31334 -37.6.0.0/16 25472 -37.7.0.0/16 8374 -37.8.0.0/17 15975 -37.8.128.0/20 20875 -37.8.144.0/20 42038 -37.8.160.0/19 51207 -37.8.192.0/18 29314 -37.9.0.0/22 50340 -37.9.4.0/23 49505 -37.9.6.0/23 50340 -37.9.8.0/22 49505 -37.9.12.0/24 50340 -37.9.13.0/24 49505 -37.9.14.0/23 49505 -37.9.16.0/20 21299 -37.9.32.0/22 202422 -37.9.36.0/22 34665 -37.9.40.0/23 50896 -37.9.42.0/24 200557 -37.9.43.0/24 31133 -37.9.44.0/22 46844 -37.9.48.0/24 34665 -37.9.50.0/24 34665 -37.9.51.0/24 41112 -37.9.52.0/22 20853 -37.9.56.0/21 42831 -37.9.64.0/18 13238 -37.9.128.0/21 198295 -37.9.136.0/21 199571 -37.9.144.0/20 8439 -37.9.160.0/21 31477 -37.9.168.0/21 51013 -37.9.176.0/21 29286 -37.9.184.0/21 9063 -37.9.192.0/21 25424 -37.9.200.0/21 43352 -37.9.208.0/21 207693 -37.9.216.0/21 57626 -37.9.224.0/20 12637 -37.9.240.0/22 16345 -37.9.244.0/23 16345 -37.9.247.0/24 16345 -37.9.248.0/22 57816 -37.9.252.0/23 13231 -37.9.254.0/24 57816 -37.9.255.0/24 24631 -37.10.0.0/24 43996 -37.10.1.0/24 202196 -37.10.24.0/24 202196 -37.10.26.0/23 202196 -37.10.28.0/22 202196 -37.10.32.0/22 43996 -37.10.36.0/23 43996 -37.10.38.0/24 43996 -37.10.40.0/22 202196 -37.10.44.0/23 202196 -37.10.46.0/24 202196 -37.10.56.0/23 43996 -37.10.58.0/24 43996 -37.10.60.0/23 43996 -37.10.63.0/24 43996 -37.10.64.0/22 16322 -37.10.68.0/23 208988 -37.10.70.0/24 198193 -37.10.71.0/24 9009 -37.10.72.0/21 57910 -37.10.80.0/20 197954 -37.10.96.0/21 199610 -37.10.104.0/22 199610 -37.10.108.0/24 198193 -37.10.109.0/24 16322 -37.10.110.0/23 208988 -37.10.112.0/24 44066 -37.10.113.0/24 25369 -37.10.114.0/24 25369 -37.10.115.0/24 199610 -37.10.116.0/24 50129 -37.10.117.0/24 16322 -37.10.118.0/23 199610 -37.10.120.0/21 199610 -37.10.128.0/17 3352 -37.11.0.0/16 12479 -37.12.0.0/15 3352 -37.14.0.0/15 12479 -37.16.0.0/19 59980 -37.16.32.0/19 35819 -37.16.64.0/21 12843 -37.16.80.0/22 31261 -37.16.84.0/24 198728 -37.16.85.0/24 58229 -37.16.86.0/24 198700 -37.16.88.0/23 202245 -37.16.92.0/22 12897 -37.16.96.0/22 51691 -37.16.100.0/22 60109 -37.16.104.0/21 51691 -37.16.112.0/20 57664 -37.16.128.0/17 35819 -37.17.0.0/17 42772 -37.17.128.0/19 200865 -37.17.160.0/22 57657 -37.17.164.0/22 30836 -37.17.168.0/23 43711 -37.17.170.0/24 61998 -37.17.171.0/24 57657 -37.17.172.0/24 61998 -37.17.173.0/24 5483 -37.17.174.0/24 62292 -37.17.175.0/24 47587 -37.17.176.0/21 41798 -37.17.184.0/24 25180 -37.17.186.0/24 6279 -37.17.187.0/24 25180 -37.17.188.0/23 6279 -37.17.192.0/20 42912 -37.17.208.0/20 28878 -37.17.224.0/21 44066 -37.17.232.0/21 13030 -37.17.240.0/22 49029 -37.17.244.0/23 35362 -37.17.246.0/23 25193 -37.17.248.0/21 45011 -37.18.0.0/24 199825 -37.18.1.0/24 60598 -37.18.2.0/24 58272 -37.18.3.0/24 56495 -37.18.4.0/22 50673 -37.18.8.0/23 56495 -37.18.10.0/24 56495 -37.18.11.0/24 48275 -37.18.12.0/24 48275 -37.18.13.0/24 204361 -37.18.14.0/24 59846 -37.18.15.0/24 60505 -37.18.16.0/24 205675 -37.18.17.0/24 205657 -37.18.18.0/24 56975 -37.18.19.0/24 205611 -37.18.20.0/24 205616 -37.18.21.0/24 61276 -37.18.22.0/24 203714 -37.18.23.0/24 200790 -37.18.24.0/24 60557 -37.18.25.0/24 60535 -37.18.26.0/24 199991 -37.18.27.0/24 48096 -37.18.28.0/22 48096 -37.18.32.0/23 48096 -37.18.34.0/24 48096 -37.18.35.0/24 201468 -37.18.36.0/24 207250 -37.18.37.0/24 205528 -37.18.38.0/24 207079 -37.18.39.0/24 206965 -37.18.40.0/24 48188 -37.18.41.0/24 206385 -37.18.42.0/23 57489 -37.18.44.0/22 8818 -37.18.48.0/21 210150 -37.18.56.0/23 58272 -37.18.58.0/24 58272 -37.18.59.0/24 204496 -37.18.60.0/24 58094 -37.18.61.0/24 202700 -37.18.62.0/24 203714 -37.18.63.0/24 197998 -37.18.64.0/21 2116 -37.18.72.0/23 58272 -37.18.74.0/23 198770 -37.18.76.0/23 198770 -37.18.78.0/24 44937 -37.18.79.0/24 58071 -37.18.80.0/24 24774 -37.18.81.0/24 203517 -37.18.82.0/24 56975 -37.18.83.0/24 56495 -37.18.85.0/24 204231 -37.18.86.0/24 209773 -37.18.87.0/24 61991 -37.18.88.0/22 48096 -37.18.92.0/23 34849 -37.18.94.0/24 62056 -37.18.95.0/24 210160 -37.18.96.0/22 201411 -37.18.100.0/22 58272 -37.18.104.0/24 204291 -37.18.105.0/24 202700 -37.18.106.0/24 202000 -37.18.107.0/24 58272 -37.18.108.0/22 58272 -37.18.112.0/23 58272 -37.18.114.0/24 58272 -37.18.115.0/24 208677 -37.18.116.0/22 208677 -37.18.120.0/23 208677 -37.18.122.0/24 208677 -37.18.123.0/24 60826 -37.18.124.0/24 60826 -37.18.125.0/24 200644 -37.18.126.0/24 201569 -37.18.127.0/24 200976 -37.18.128.0/22 49354 -37.18.132.0/22 203712 -37.18.136.0/21 8680 -37.18.144.0/23 31733 -37.18.148.0/23 31733 -37.18.150.0/24 15533 -37.18.151.0/24 31733 -37.18.152.0/21 48176 -37.18.160.0/20 16347 -37.18.176.0/22 36351 -37.18.184.0/24 198370 -37.18.185.0/24 201047 -37.18.186.0/23 198370 -37.18.192.0/20 198347 -37.18.208.0/21 198347 -37.18.216.0/22 198347 -37.18.220.0/23 198347 -37.18.222.0/24 198347 -37.18.224.0/20 5603 -37.18.240.0/21 198355 -37.18.248.0/21 56689 -37.19.1.0/24 198354 -37.19.2.0/23 198354 -37.19.6.0/23 198354 -37.19.8.0/22 6696 -37.19.12.0/23 6696 -37.19.14.0/24 62383 -37.19.15.0/24 6696 -37.19.16.0/21 60846 -37.19.24.0/21 12684 -37.19.32.0/20 12389 -37.19.48.0/21 12389 -37.19.64.0/21 58056 -37.19.72.0/21 42322 -37.19.80.0/20 5484 -37.19.96.0/21 29286 -37.19.104.0/21 44143 -37.19.112.0/20 50463 -37.19.128.0/17 31343 -37.20.0.0/14 12389 -37.24.0.0/16 6830 -37.25.40.0/22 50129 -37.25.44.0/22 48101 -37.25.48.0/21 41998 -37.25.56.0/21 57642 -37.25.64.0/21 42525 -37.25.72.0/21 39473 -37.25.80.0/21 6821 -37.25.88.0/21 13122 -37.25.96.0/19 31272 -37.25.128.0/20 12663 -37.25.144.0/22 12663 -37.25.148.0/24 201917 -37.25.149.0/24 12663 -37.25.150.0/23 12663 -37.25.152.0/21 12663 -37.25.160.0/21 12663 -37.25.168.0/24 12663 -37.25.169.0/24 201917 -37.25.170.0/23 12663 -37.25.172.0/22 12663 -37.25.176.0/20 12663 -37.25.192.0/18 12663 -37.26.0.0/18 39232 -37.26.64.0/21 57722 -37.26.72.0/21 47443 -37.26.80.0/21 198279 -37.26.88.0/21 199055 -37.26.96.0/24 49056 -37.26.97.0/24 25467 -37.26.98.0/23 25467 -37.26.100.0/22 49056 -37.26.104.0/21 52148 -37.26.112.0/20 16625 -37.26.128.0/20 1547 -37.26.144.0/21 198484 -37.26.152.0/21 48093 -37.26.168.0/21 47623 -37.26.176.0/21 48504 -37.26.184.0/21 30781 -37.26.192.0/22 34337 -37.26.196.0/23 34337 -37.26.200.0/21 28748 -37.26.208.0/20 57660 -37.26.224.0/21 15695 -37.26.232.0/21 57662 -37.26.240.0/21 196689 -37.26.248.0/23 57074 -37.26.250.0/24 203499 -37.26.251.0/24 29119 -37.26.252.0/22 49173 -37.27.0.0/16 16322 -37.28.0.0/17 50010 -37.28.128.0/21 198368 -37.28.136.0/21 42525 -37.28.144.0/21 35637 -37.28.152.0/21 197155 -37.28.160.0/20 31213 -37.28.176.0/21 25159 -37.28.184.0/22 31208 -37.28.188.0/22 31195 -37.28.192.0/18 12353 -37.29.0.0/22 31133 -37.29.4.0/23 31133 -37.29.6.0/24 62169 -37.29.7.0/24 31133 -37.29.8.0/21 31133 -37.29.16.0/21 31133 -37.29.24.0/22 31133 -37.29.28.0/22 62169 -37.29.32.0/21 25159 -37.29.40.0/22 31195 -37.29.44.0/22 31224 -37.29.48.0/20 31213 -37.29.64.0/21 31213 -37.29.72.0/22 31208 -37.29.76.0/22 35298 -37.29.80.0/22 50928 -37.29.84.0/23 62169 -37.29.86.0/23 31205 -37.29.88.0/21 31195 -37.29.96.0/20 31133 -37.29.112.0/20 31163 -37.29.128.0/17 16299 -37.30.0.0/15 12912 -37.32.0.0/19 47796 -37.32.32.0/21 44285 -37.32.40.0/21 197343 -37.32.48.0/21 35132 -37.32.56.0/21 50796 -37.32.64.0/21 57675 -37.32.72.0/23 57675 -37.32.74.0/24 50371 -37.32.75.0/24 13099 -37.32.80.0/21 12874 -37.32.96.0/23 202636 -37.32.101.0/24 8749 -37.32.102.0/24 57477 -37.32.112.0/22 50558 -37.32.116.0/24 50558 -37.32.117.0/24 199633 -37.32.118.0/23 50558 -37.32.120.0/21 50558 -37.32.128.0/17 5408 -37.33.0.0/16 16086 -37.34.0.0/19 47883 -37.34.32.0/21 50428 -37.34.40.0/21 198471 -37.34.48.0/21 35470 -37.34.56.0/21 20857 -37.34.64.0/22 49940 -37.34.68.0/24 8220 -37.34.69.0/24 49940 -37.34.70.0/23 49940 -37.34.72.0/21 198399 -37.34.80.0/20 51737 -37.34.96.0/22 43925 -37.34.100.0/22 200640 -37.34.104.0/24 34529 -37.34.105.0/24 43925 -37.34.106.0/23 43925 -37.34.108.0/22 43925 -37.34.112.0/20 43925 -37.34.128.0/17 42961 -37.35.0.0/21 29104 -37.35.8.0/21 8400 -37.35.16.0/20 24895 -37.35.32.0/22 60901 -37.35.36.0/24 49687 -37.35.37.0/24 201909 -37.35.38.0/24 60741 -37.35.39.0/24 60882 -37.35.44.0/22 49687 -37.35.48.0/22 60231 -37.35.52.0/24 49687 -37.35.53.0/24 44374 -37.35.55.0/24 199552 -37.35.56.0/21 197476 -37.35.64.0/21 33983 -37.35.72.0/21 50957 -37.35.80.0/21 20904 -37.35.88.0/21 16376 -37.35.96.0/21 49974 -37.35.104.0/21 198385 -37.35.112.0/20 15600 -37.35.128.0/17 12479 -37.36.0.0/14 42961 -37.40.0.0/15 28885 -37.42.0.0/15 35819 -37.44.0.0/21 25291 -37.44.8.0/21 57146 -37.44.16.0/20 198403 -37.44.32.0/21 9038 -37.44.40.0/21 44265 -37.44.48.0/21 198024 -37.44.56.0/21 57218 -37.44.64.0/18 6697 -37.44.128.0/18 16234 -37.44.192.0/22 48430 -37.44.198.0/24 49392 -37.44.199.0/24 62300 -37.44.200.0/22 197328 -37.44.204.0/22 13189 -37.44.212.0/24 19624 -37.44.215.0/24 19624 -37.44.216.0/22 9009 -37.44.224.0/22 48996 -37.44.228.0/22 40676 -37.44.232.0/22 209912 -37.44.236.0/22 49434 -37.44.240.0/22 15404 -37.44.244.0/22 47583 -37.44.252.0/23 49453 -37.44.254.0/23 174 -37.45.0.0/16 6697 -37.46.0.0/21 21371 -37.46.8.0/23 43193 -37.46.10.0/24 43193 -37.46.11.0/24 3320 -37.46.12.0/24 209749 -37.46.13.0/24 48956 -37.46.16.0/21 44451 -37.46.24.0/23 14062 -37.46.32.0/20 47956 -37.46.56.0/22 24739 -37.46.60.0/24 199072 -37.46.61.0/24 24739 -37.46.62.0/23 24739 -37.46.64.0/21 200864 -37.46.72.0/21 15699 -37.46.80.0/21 198171 -37.46.88.0/21 57929 -37.46.98.0/23 56568 -37.46.101.0/24 198967 -37.46.104.0/21 198561 -37.46.112.0/20 51430 -37.46.128.0/21 29182 -37.46.136.0/21 25151 -37.46.144.0/22 8758 -37.46.152.0/21 57677 -37.46.160.0/19 33885 -37.46.192.0/22 47869 -37.46.196.0/23 47869 -37.46.198.0/24 61349 -37.46.199.0/24 47869 -37.46.200.0/21 39326 -37.46.208.0/21 34222 -37.46.224.0/19 13188 -37.47.0.0/16 5617 -37.48.0.0/18 13036 -37.48.64.0/18 60781 -37.48.128.0/18 29256 -37.48.192.0/19 29256 -37.48.224.0/24 198440 -37.48.225.0/24 206347 -37.48.226.0/23 206347 -37.48.228.0/24 206347 -37.48.229.0/24 198440 -37.48.230.0/24 198440 -37.48.231.0/24 206347 -37.48.232.0/21 35549 -37.48.240.0/21 48954 -37.48.248.0/21 31512 -37.49.0.0/17 6830 -37.49.128.0/20 31027 -37.49.144.0/22 61317 -37.49.152.0/21 25291 -37.49.160.0/19 12688 -37.49.192.0/22 21127 -37.49.196.0/24 15774 -37.49.197.0/24 21127 -37.49.198.0/23 21127 -37.49.200.0/22 21127 -37.49.204.0/23 15774 -37.49.206.0/24 21127 -37.49.207.0/24 15774 -37.49.208.0/20 21127 -37.49.224.0/22 208666 -37.49.228.0/23 209299 -37.49.230.0/24 208666 -37.49.231.0/24 209299 -37.49.234.0/24 57734 -37.49.240.0/20 50572 -37.50.0.0/15 3320 -37.52.0.0/21 6849 -37.52.8.0/21 6877 -37.52.16.0/20 6849 -37.52.32.0/20 6849 -37.52.48.0/21 6877 -37.52.56.0/21 6849 -37.52.64.0/18 6849 -37.52.128.0/18 6849 -37.52.192.0/19 6849 -37.52.224.0/20 6877 -37.52.240.0/21 6849 -37.52.248.0/22 6849 -37.52.252.0/23 6849 -37.52.254.0/24 6849 -37.52.255.0/24 6877 -37.53.0.0/19 6849 -37.53.32.0/20 6849 -37.53.48.0/22 6877 -37.53.52.0/22 6849 -37.53.56.0/21 6849 -37.53.64.0/19 6877 -37.53.96.0/19 6849 -37.53.128.0/18 6849 -37.53.192.0/20 6849 -37.53.208.0/21 6849 -37.53.216.0/21 6877 -37.53.224.0/19 6849 -37.54.0.0/21 6849 -37.54.8.0/21 6877 -37.54.16.0/20 6849 -37.54.32.0/20 6849 -37.54.48.0/21 6877 -37.54.56.0/21 6849 -37.54.64.0/18 6849 -37.54.128.0/18 6849 -37.54.192.0/19 6849 -37.54.224.0/24 6877 -37.54.225.0/24 6849 -37.54.226.0/23 6849 -37.54.228.0/22 6849 -37.54.232.0/21 6849 -37.54.240.0/24 6877 -37.54.241.0/24 6849 -37.54.242.0/23 6849 -37.54.244.0/22 6849 -37.54.248.0/21 6849 -37.55.0.0/17 6849 -37.55.128.0/21 6849 -37.55.136.0/22 6877 -37.55.140.0/22 6849 -37.55.144.0/20 6849 -37.55.160.0/19 6849 -37.55.192.0/18 6849 -37.56.0.0/18 25019 -37.56.64.0/19 25019 -37.56.96.0/20 25019 -37.56.128.0/17 25019 -37.57.0.0/18 13188 -37.57.64.0/20 13188 -37.57.80.0/21 13188 -37.57.88.0/22 13188 -37.57.92.0/23 13188 -37.57.94.0/24 13188 -37.57.96.0/20 13188 -37.57.112.0/21 13188 -37.57.120.0/23 13188 -37.57.123.0/24 13188 -37.57.124.0/22 13188 -37.57.128.0/17 13188 -37.58.0.0/20 5610 -37.58.16.0/21 48737 -37.58.24.0/24 25577 -37.58.25.0/24 29697 -37.58.26.0/23 25577 -37.58.28.0/23 25577 -37.58.30.0/24 25577 -37.58.31.0/24 29697 -37.58.32.0/21 15774 -37.58.40.0/21 49333 -37.58.48.0/20 28753 -37.58.64.0/18 36351 -37.58.128.0/17 16347 -37.59.0.0/16 16276 -37.60.0.0/21 198570 -37.60.8.0/21 60572 -37.60.16.0/21 50923 -37.60.24.0/21 198594 -37.60.32.0/21 13113 -37.60.40.0/21 42925 -37.60.48.0/20 16276 -37.60.64.0/18 49158 -37.60.136.0/24 60784 -37.60.138.0/23 34224 -37.60.141.0/24 34577 -37.60.142.0/24 34224 -37.60.143.0/24 60590 -37.60.144.0/21 51440 -37.60.152.0/23 29608 -37.60.154.0/24 29608 -37.60.155.0/24 201080 -37.60.156.0/24 29608 -37.60.157.0/24 201080 -37.60.158.0/24 201080 -37.60.159.0/24 29608 -37.60.168.0/21 47297 -37.60.176.0/21 16047 -37.60.184.0/21 29513 -37.60.192.0/21 1126 -37.60.200.0/21 197932 -37.60.208.0/20 31214 -37.60.224.0/20 32475 -37.60.240.0/22 32475 -37.60.244.0/23 32475 -37.60.246.0/24 36351 -37.60.247.0/24 32475 -37.60.248.0/22 32475 -37.60.252.0/23 32475 -37.60.254.0/24 36351 -37.60.255.0/24 32475 -37.61.0.0/17 28787 -37.61.128.0/20 28876 -37.61.144.0/22 34977 -37.61.148.0/22 202491 -37.61.152.0/23 34977 -37.61.154.0/24 202491 -37.61.155.0/24 34977 -37.61.156.0/22 34977 -37.61.160.0/20 57710 -37.61.176.0/22 15774 -37.61.180.0/23 15774 -37.61.182.0/23 51813 -37.61.184.0/21 203541 -37.61.192.0/24 8972 -37.61.193.0/24 20773 -37.61.194.0/23 20773 -37.61.196.0/23 20773 -37.61.198.0/23 8972 -37.61.200.0/21 8972 -37.61.208.0/20 29066 -37.61.224.0/24 3223 -37.61.225.0/24 57731 -37.61.226.0/24 262184 -37.61.227.0/24 37427 -37.61.228.0/23 57731 -37.61.230.0/24 58738 -37.61.231.0/24 57731 -37.61.232.0/21 22612 -37.61.240.0/22 30781 -37.61.244.0/22 197685 -37.61.248.0/22 210123 -37.61.252.0/24 29119 -37.61.253.0/24 210123 -37.61.254.0/23 210123 -37.62.0.0/16 5432 -37.63.0.0/17 8717 -37.64.0.0/13 15557 -37.72.0.0/21 29119 -37.72.8.0/24 199853 -37.72.9.0/24 29119 -37.72.10.0/23 29119 -37.72.12.0/24 199482 -37.72.13.0/24 29119 -37.72.14.0/23 29119 -37.72.16.0/24 199482 -37.72.17.0/24 29119 -37.72.18.0/23 29119 -37.72.20.0/22 29119 -37.72.24.0/21 29119 -37.72.32.0/21 198434 -37.72.40.0/21 24945 -37.72.48.0/20 198436 -37.72.64.0/20 13055 -37.72.80.0/20 50071 -37.72.96.0/20 61029 -37.72.112.0/21 41484 -37.72.120.0/21 38987 -37.72.144.0/21 50629 -37.72.152.0/21 8680 -37.72.160.0/21 34762 -37.72.168.0/23 35017 -37.72.170.0/23 29802 -37.72.172.0/23 35017 -37.72.174.0/23 29802 -37.72.176.0/21 60098 -37.72.184.0/23 57972 -37.72.186.0/24 47536 -37.72.187.0/24 57858 -37.72.188.0/22 57858 -37.72.192.0/19 29286 -37.72.224.0/22 31167 -37.72.228.0/23 31167 -37.72.230.0/23 8362 -37.72.232.0/23 31167 -37.72.242.0/23 29286 -37.72.244.0/22 29286 -37.72.248.0/21 29286 -37.73.0.0/16 34058 -37.74.0.0/16 1136 -37.75.0.0/21 34139 -37.75.8.0/21 199484 -37.75.16.0/20 8926 -37.75.32.0/19 33874 -37.75.64.0/18 8926 -37.75.128.0/21 57768 -37.75.136.0/21 57763 -37.75.144.0/22 59451 -37.75.152.0/21 60781 -37.75.160.0/19 43557 -37.75.192.0/21 43530 -37.75.200.0/21 50596 -37.75.208.0/23 31408 -37.75.211.0/24 12975 -37.75.216.0/21 39047 -37.75.224.0/21 198508 -37.75.232.0/22 42831 -37.75.236.0/24 42831 -37.75.237.0/24 174 -37.75.240.0/21 58081 -37.75.248.0/21 8324 -37.76.0.0/17 5483 -37.76.128.0/18 12389 -37.76.192.0/19 51407 -37.76.224.0/19 35753 -37.77.0.0/21 39582 -37.77.8.0/23 39582 -37.77.10.0/24 39582 -37.77.11.0/24 202588 -37.77.12.0/24 39582 -37.77.15.0/24 39582 -37.77.16.0/23 39582 -37.77.18.0/24 39582 -37.77.20.0/22 39582 -37.77.24.0/23 39582 -37.77.27.0/24 39582 -37.77.28.0/22 39582 -37.77.32.0/20 44530 -37.77.48.0/23 198589 -37.77.50.0/24 198589 -37.77.53.0/24 198589 -37.77.54.0/24 198589 -37.77.69.0/24 60663 -37.77.70.0/23 60663 -37.77.72.0/22 60663 -37.77.76.0/23 60663 -37.77.96.0/22 15605 -37.77.100.0/23 15605 -37.77.102.0/24 15605 -37.77.103.0/24 39739 -37.77.108.0/22 47586 -37.77.112.0/20 198471 -37.77.128.0/24 43370 -37.77.129.0/24 8492 -37.77.130.0/23 8492 -37.77.132.0/22 8492 -37.77.136.0/21 28716 -37.77.152.0/21 29314 -37.77.160.0/21 197075 -37.77.168.0/22 43281 -37.77.172.0/24 43281 -37.77.174.0/24 210133 -37.77.175.0/24 201711 -37.77.176.0/21 16082 -37.77.184.0/21 2906 -37.77.192.0/21 198623 -37.77.200.0/24 60351 -37.77.203.0/24 60351 -37.77.204.0/22 60351 -37.77.208.0/20 28929 -37.77.224.0/19 202237 -37.78.0.0/15 12389 -37.80.0.0/12 3320 -37.96.0.0/16 9158 -37.97.0.0/18 29695 -37.97.64.0/19 8399 -37.97.96.0/20 8399 -37.97.112.0/21 209104 -37.97.120.0/24 48266 -37.97.121.0/24 200063 -37.97.124.0/22 12479 -37.97.128.0/17 20857 -37.98.0.0/17 50810 -37.98.128.0/20 57732 -37.98.144.0/21 8851 -37.98.152.0/21 24722 -37.98.160.0/19 47241 -37.98.192.0/21 57794 -37.98.200.0/22 201704 -37.98.204.0/22 50563 -37.98.208.0/20 8374 -37.98.224.0/21 50597 -37.98.232.0/22 16839 -37.98.236.0/24 16839 -37.98.240.0/20 12668 -37.99.0.0/17 21299 -37.99.128.0/20 47794 -37.99.144.0/21 47794 -37.99.152.0/22 47794 -37.99.156.0/23 47794 -37.99.158.0/24 47794 -37.99.159.0/24 48695 -37.99.160.0/19 47794 -37.99.192.0/21 198477 -37.99.200.0/21 197637 -37.99.208.0/21 8220 -37.99.216.0/21 21191 -37.99.224.0/20 48500 -37.99.240.0/21 48500 -37.99.248.0/21 45015 -37.100.0.0/14 24608 -37.104.0.0/14 25019 -37.108.0.0/16 5617 -37.109.0.0/16 8374 -37.110.0.0/17 42610 -37.110.128.0/19 42610 -37.110.160.0/19 35805 -37.110.192.0/24 59413 -37.110.193.0/24 30781 -37.110.194.0/23 30781 -37.110.196.0/22 30781 -37.110.200.0/22 48288 -37.110.204.0/22 41872 -37.110.208.0/21 41202 -37.110.216.0/21 34912 -37.110.224.0/20 48475 -37.110.240.0/21 50538 -37.110.248.0/21 198781 -37.111.0.0/20 133385 -37.111.32.0/24 133385 -37.111.34.0/24 133385 -37.111.40.0/22 133385 -37.111.44.0/24 133385 -37.111.46.0/24 133385 -37.111.48.0/22 133385 -37.111.124.0/24 133385 -37.111.126.0/23 133385 -37.111.128.0/22 24499 -37.111.132.0/24 24499 -37.111.134.0/23 24499 -37.111.136.0/22 24499 -37.111.152.0/24 24499 -37.111.190.0/24 24499 -37.111.192.0/18 24389 -37.112.0.0/20 12768 -37.112.16.0/21 51035 -37.112.24.0/21 41754 -37.112.32.0/21 57378 -37.112.40.0/21 57044 -37.112.48.0/20 57044 -37.112.64.0/19 49048 -37.112.96.0/20 56420 -37.112.112.0/21 50543 -37.112.120.0/21 31363 -37.112.128.0/20 42682 -37.112.144.0/21 50498 -37.112.152.0/21 51035 -37.112.160.0/20 51035 -37.112.176.0/20 50512 -37.112.192.0/20 50544 -37.112.208.0/20 34533 -37.112.224.0/20 57378 -37.112.240.0/20 42682 -37.113.0.0/21 50542 -37.113.8.0/21 41754 -37.113.16.0/20 41754 -37.113.32.0/19 41754 -37.113.64.0/21 56330 -37.113.72.0/21 51819 -37.113.88.0/21 51819 -37.113.96.0/19 57026 -37.113.128.0/18 41661 -37.113.192.0/21 57044 -37.113.200.0/21 57026 -37.113.208.0/20 31363 -37.113.224.0/21 51035 -37.113.232.0/21 51645 -37.113.240.0/21 51819 -37.113.248.0/21 50543 -37.114.0.0/21 198520 -37.114.8.0/21 21176 -37.114.16.0/20 41341 -37.114.36.0/23 57433 -37.114.38.0/24 59592 -37.114.39.0/24 60461 -37.114.40.0/22 44066 -37.114.46.0/24 57433 -37.114.52.0/22 44066 -37.114.56.0/24 44066 -37.114.57.0/24 12586 -37.114.63.0/24 44066 -37.114.64.0/21 49540 -37.114.72.0/21 20521 -37.114.80.0/22 198514 -37.114.84.0/23 198514 -37.114.87.0/24 198514 -37.114.88.0/21 57795 -37.114.96.0/24 31400 -37.114.97.0/24 62255 -37.114.98.0/23 62255 -37.114.100.0/22 62255 -37.114.104.0/22 62255 -37.114.108.0/24 62255 -37.114.109.0/24 31400 -37.114.110.0/23 62255 -37.114.112.0/20 62255 -37.114.128.0/18 44725 -37.114.192.0/18 51074 -37.115.0.0/16 15895 -37.116.0.0/14 30722 -37.120.0.0/17 20880 -37.120.129.0/24 9009 -37.120.130.0/23 9009 -37.120.132.0/22 9009 -37.120.136.0/21 9009 -37.120.144.0/20 9009 -37.120.160.0/19 197540 -37.120.192.0/20 9009 -37.120.208.0/21 9009 -37.120.216.0/22 9009 -37.120.221.0/24 9009 -37.120.222.0/23 9009 -37.120.224.0/20 3210 -37.120.240.0/23 41984 -37.120.243.0/24 3210 -37.120.248.0/22 13210 -37.120.252.0/23 56704 -37.121.0.0/16 35819 -37.122.0.0/17 28812 -37.122.136.0/21 20649 -37.122.144.0/22 60662 -37.122.148.0/22 57131 -37.122.152.0/22 57862 -37.122.156.0/24 57862 -37.122.157.0/24 50440 -37.122.158.0/23 57862 -37.122.160.0/19 8585 -37.122.192.0/22 25180 -37.122.196.0/23 45014 -37.122.198.0/23 206405 -37.122.200.0/21 25540 -37.122.208.0/21 20738 -37.122.216.0/22 205262 -37.122.229.0/24 197633 -37.122.231.0/24 197633 -37.122.232.0/23 197633 -37.122.240.0/21 44869 -37.122.248.0/21 51945 -37.123.0.0/20 197633 -37.123.16.0/21 197633 -37.123.64.0/19 42912 -37.123.96.0/21 57844 -37.123.104.0/21 25291 -37.123.112.0/21 13213 -37.123.120.0/21 197637 -37.123.128.0/18 8473 -37.123.192.0/21 45671 -37.123.200.0/21 35378 -37.123.208.0/23 57172 -37.123.216.0/21 50289 -37.123.224.0/21 49232 -37.123.240.0/21 61000 -37.123.248.0/21 198623 -37.124.0.0/16 35819 -37.125.0.0/20 35819 -37.125.16.0/21 34400 -37.125.24.0/22 35819 -37.125.28.0/22 34400 -37.125.32.0/19 35819 -37.125.64.0/18 35819 -37.125.128.0/17 35819 -37.126.0.0/16 35819 -37.127.0.0/18 35819 -37.127.64.0/19 34400 -37.127.96.0/19 35819 -37.127.128.0/19 35819 -37.127.160.0/20 35819 -37.127.176.0/20 34400 -37.127.192.0/18 35819 -37.128.0.0/17 12741 -37.128.128.0/21 50957 -37.128.136.0/21 12835 -37.128.144.0/21 197902 -37.128.152.0/21 8865 -37.128.160.0/21 57832 -37.128.168.0/23 198479 -37.128.171.0/24 198479 -37.128.172.0/22 198479 -37.128.176.0/21 198433 -37.128.184.0/22 20860 -37.128.188.0/24 39451 -37.128.189.0/24 20860 -37.128.190.0/23 20860 -37.128.192.0/21 48142 -37.128.200.0/21 15723 -37.128.208.0/20 39642 -37.128.224.0/20 2614 -37.128.240.0/20 39308 -37.129.0.0/16 197207 -37.130.0.0/18 15874 -37.130.66.0/23 34296 -37.130.72.0/23 34296 -37.130.74.0/24 34296 -37.130.76.0/22 34296 -37.130.80.0/22 34296 -37.130.84.0/24 34296 -37.130.86.0/23 34296 -37.130.88.0/21 34296 -37.130.96.0/19 34296 -37.130.128.0/21 51906 -37.130.136.0/24 51906 -37.130.137.0/24 8820 -37.130.138.0/23 51906 -37.130.140.0/24 205868 -37.130.141.0/24 51906 -37.130.142.0/23 51906 -37.130.144.0/21 199478 -37.130.152.0/21 57846 -37.130.160.0/19 16086 -37.130.192.0/23 34545 -37.130.194.0/24 34545 -37.130.196.0/22 199386 -37.130.200.0/21 51074 -37.130.208.0/21 49650 -37.130.216.0/21 205330 -37.130.224.0/24 36351 -37.130.225.0/24 13213 -37.130.226.0/23 13213 -37.130.228.0/22 13213 -37.130.232.0/21 202020 -37.130.240.0/21 13124 -37.130.248.0/21 47474 -37.131.0.0/20 51375 -37.131.16.0/21 51375 -37.131.24.0/24 64444 -37.131.25.0/24 51375 -37.131.26.0/23 51375 -37.131.28.0/22 51375 -37.131.48.0/20 51375 -37.131.64.0/18 51375 -37.131.128.0/19 21021 -37.131.160.0/24 35745 -37.131.161.0/24 199234 -37.131.162.0/23 199234 -37.131.164.0/23 35745 -37.131.166.0/24 199234 -37.131.167.0/24 35745 -37.131.168.0/23 35745 -37.131.170.0/23 199234 -37.131.172.0/22 199234 -37.131.179.0/24 60522 -37.131.180.0/22 60522 -37.131.184.0/21 25375 -37.131.192.0/19 48524 -37.131.224.0/21 44327 -37.131.232.0/21 61157 -37.131.240.0/21 15743 -37.131.248.0/21 9074 -37.132.0.0/14 12479 -37.136.0.0/16 16086 -37.137.0.0/19 57218 -37.137.32.0/22 57218 -37.137.36.0/24 57218 -37.137.37.0/24 34592 -37.137.38.0/23 57218 -37.137.40.0/21 57218 -37.137.48.0/20 57218 -37.137.64.0/18 57218 -37.137.128.0/17 57218 -37.138.0.0/16 9145 -37.139.0.0/19 14061 -37.139.32.0/22 56534 -37.139.36.0/23 56534 -37.139.38.0/24 203196 -37.139.39.0/24 56534 -37.139.40.0/23 56534 -37.139.42.0/24 48180 -37.139.43.0/24 56534 -37.139.44.0/22 56534 -37.139.48.0/23 34665 -37.139.50.0/24 205454 -37.139.51.0/24 34665 -37.139.52.0/24 51167 -37.139.53.0/24 34665 -37.139.54.0/23 34665 -37.139.56.0/22 34665 -37.139.60.0/22 49505 -37.139.64.0/24 52148 -37.139.65.0/24 9268 -37.139.68.0/24 9268 -37.139.70.0/24 8100 -37.139.71.0/24 9268 -37.139.80.0/21 35026 -37.139.88.0/21 12850 -37.139.96.0/20 35816 -37.139.112.0/21 57961 -37.139.120.0/21 57877 -37.139.128.0/22 43659 -37.139.132.0/24 6453 -37.139.136.0/21 57866 -37.139.144.0/21 42739 -37.139.152.0/21 198538 -37.139.160.0/19 25133 -37.139.192.0/18 33894 -37.140.0.0/17 8369 -37.140.128.0/18 13238 -37.140.192.0/21 197695 -37.140.200.0/21 62192 -37.140.208.0/23 8947 -37.140.224.0/21 198553 -37.140.232.0/22 57872 -37.140.236.0/23 57872 -37.140.238.0/23 60558 -37.141.0.0/16 35819 -37.142.0.0/18 12849 -37.142.64.0/21 12849 -37.142.72.0/22 12849 -37.142.76.0/22 21450 -37.142.80.0/20 12849 -37.142.96.0/19 12849 -37.142.128.0/19 12849 -37.142.160.0/23 12849 -37.142.162.0/24 21450 -37.142.163.0/24 12849 -37.142.164.0/24 21450 -37.142.165.0/24 12849 -37.142.166.0/24 12849 -37.142.167.0/24 21450 -37.142.168.0/23 12849 -37.142.170.0/24 12849 -37.142.171.0/24 21450 -37.142.172.0/22 12849 -37.142.176.0/20 12849 -37.142.192.0/18 12849 -37.143.0.0/23 47537 -37.143.2.0/24 47537 -37.143.6.0/24 47537 -37.143.8.0/21 203226 -37.143.16.0/20 24739 -37.143.32.0/22 43350 -37.143.36.0/23 34373 -37.143.38.0/23 43350 -37.143.40.0/21 57607 -37.143.48.0/22 29492 -37.143.52.0/22 198507 -37.143.56.0/22 200715 -37.143.60.0/22 61317 -37.143.64.0/21 57873 -37.143.76.0/22 47116 -37.143.80.0/21 50266 -37.143.88.0/21 8343 -37.143.96.0/20 50923 -37.143.112.0/21 48926 -37.143.120.0/21 43885 -37.143.130.0/24 136258 -37.143.132.0/22 196777 -37.143.136.0/24 196745 -37.143.138.0/23 196745 -37.143.140.0/22 196745 -37.143.144.0/21 58256 -37.143.152.0/21 57881 -37.143.160.0/23 51793 -37.143.162.0/23 52023 -37.143.164.0/22 52023 -37.143.168.0/24 34714 -37.143.170.0/24 52023 -37.143.171.0/24 57785 -37.143.172.0/24 57785 -37.143.176.0/20 29056 -37.143.192.0/18 43205 -37.144.0.0/18 8402 -37.144.64.0/19 3216 -37.144.96.0/19 8402 -37.144.128.0/18 8402 -37.144.192.0/19 8402 -37.144.224.0/20 8402 -37.144.240.0/20 42110 -37.145.0.0/20 8402 -37.145.16.0/22 29125 -37.145.20.0/22 8402 -37.145.24.0/21 8402 -37.145.32.0/19 8402 -37.145.64.0/18 8402 -37.145.128.0/17 8402 -37.146.0.0/20 8402 -37.146.16.0/20 42110 -37.146.32.0/20 8371 -37.146.48.0/20 3216 -37.146.64.0/19 8402 -37.146.96.0/20 8402 -37.146.112.0/21 29125 -37.146.120.0/21 3216 -37.146.128.0/19 3216 -37.146.160.0/19 8402 -37.146.192.0/20 8402 -37.146.208.0/20 3216 -37.146.224.0/20 3216 -37.146.240.0/20 8402 -37.147.0.0/19 8402 -37.147.32.0/21 8402 -37.147.40.0/21 3216 -37.147.48.0/22 3216 -37.147.52.0/22 8402 -37.147.56.0/21 3216 -37.147.64.0/19 3216 -37.147.96.0/19 8402 -37.147.128.0/19 8402 -37.147.160.0/20 8402 -37.147.176.0/21 3216 -37.147.184.0/21 8402 -37.147.192.0/20 8371 -37.147.208.0/20 42110 -37.147.224.0/19 8402 -37.148.0.0/17 31549 -37.148.128.0/21 34968 -37.148.136.0/21 50469 -37.148.144.0/21 29492 -37.148.152.0/21 198967 -37.148.160.0/21 62370 -37.148.168.0/24 20910 -37.148.169.0/24 204427 -37.148.170.0/23 204427 -37.148.172.0/22 20910 -37.148.176.0/21 34762 -37.148.192.0/21 61044 -37.148.200.0/21 21501 -37.148.208.0/21 34619 -37.148.216.0/21 12327 -37.148.224.0/21 30848 -37.148.232.0/21 43509 -37.148.240.0/23 47332 -37.148.242.0/23 198583 -37.148.244.0/23 39180 -37.148.246.0/24 39180 -37.148.247.0/24 47332 -37.148.248.0/22 62238 -37.148.252.0/22 34993 -37.150.0.0/15 9198 -37.152.0.0/21 9038 -37.152.8.0/21 39647 -37.152.16.0/20 8374 -37.152.32.0/20 8586 -37.152.48.0/21 57907 -37.152.56.0/21 43948 -37.152.64.0/21 2 -37.152.72.0/22 49467 -37.152.76.0/24 49467 -37.152.80.0/21 199930 -37.152.88.0/21 57910 -37.152.96.0/19 28952 -37.152.128.0/22 57970 -37.152.132.0/23 57970 -37.152.134.0/24 60397 -37.152.135.0/24 57970 -37.152.136.0/21 57970 -37.152.144.0/20 57970 -37.152.160.0/20 198569 -37.152.176.0/21 202468 -37.152.184.0/24 198569 -37.152.185.0/24 202468 -37.152.186.0/23 202468 -37.152.188.0/22 202468 -37.152.192.0/18 6871 -37.153.0.0/18 196750 -37.153.64.0/21 196750 -37.153.72.0/21 43599 -37.153.80.0/21 41655 -37.153.88.0/21 60494 -37.153.120.0/21 26464 -37.153.128.0/22 58224 -37.153.132.0/24 209706 -37.153.133.0/24 6830 -37.153.134.0/24 201341 -37.153.135.0/24 12874 -37.153.136.0/24 6663 -37.153.137.0/24 62445 -37.153.138.0/23 42695 -37.153.144.0/21 3329 -37.153.152.0/24 9204 -37.153.158.0/24 59854 -37.153.159.0/24 58276 -37.153.160.0/21 3329 -37.153.168.0/22 43350 -37.153.172.0/23 42695 -37.153.174.0/23 44252 -37.153.176.0/20 57218 -37.153.192.0/18 28685 -37.154.0.0/15 20978 -37.156.4.0/24 60150 -37.156.5.0/24 62343 -37.156.6.0/24 201341 -37.156.8.0/22 43754 -37.156.12.0/22 58224 -37.156.16.0/21 50810 -37.156.24.0/22 50810 -37.156.28.0/23 47330 -37.156.30.0/23 50810 -37.156.32.0/23 3223 -37.156.34.0/24 23470 -37.156.35.0/24 9050 -37.156.36.0/24 62342 -37.156.37.0/24 39425 -37.156.38.0/23 8681 -37.156.40.0/21 203872 -37.156.48.0/20 57218 -37.156.64.0/24 209686 -37.156.65.0/24 201117 -37.156.66.0/24 39855 -37.156.67.0/24 3164 -37.156.69.0/24 60405 -37.156.70.0/24 60405 -37.156.71.0/24 8751 -37.156.72.0/22 56478 -37.156.76.0/22 62235 -37.156.80.0/20 29413 -37.156.96.0/22 31638 -37.156.100.0/22 58224 -37.156.104.0/22 206206 -37.156.108.0/22 62235 -37.156.112.0/20 58224 -37.156.128.0/20 58224 -37.156.144.0/22 43754 -37.156.148.0/22 31638 -37.156.152.0/21 57218 -37.156.160.0/21 58224 -37.156.168.0/22 31638 -37.156.172.0/24 34450 -37.156.173.0/24 209559 -37.156.174.0/24 50769 -37.156.175.0/24 64417 -37.156.176.0/22 58224 -37.156.180.0/22 5588 -37.156.184.0/23 198605 -37.156.187.0/24 198605 -37.156.188.0/22 205624 -37.156.192.0/20 1653 -37.156.208.0/22 31638 -37.156.212.0/22 12880 -37.156.216.0/21 62282 -37.156.225.0/24 3164 -37.156.226.0/24 203872 -37.156.227.0/24 41496 -37.156.232.0/21 58224 -37.156.240.0/22 58224 -37.156.244.0/24 9050 -37.156.245.0/24 43295 -37.156.246.0/24 43260 -37.156.247.0/24 39855 -37.156.248.0/22 58224 -37.157.0.0/21 198622 -37.157.8.0/21 57928 -37.157.16.0/21 6863 -37.157.24.0/22 43567 -37.157.28.0/23 43567 -37.157.30.0/24 43567 -37.157.31.0/24 200551 -37.157.32.0/21 57276 -37.157.40.0/21 42652 -37.157.48.0/21 31472 -37.157.56.0/21 8565 -37.157.64.0/18 3249 -37.157.128.0/21 57943 -37.157.136.0/21 43561 -37.157.144.0/21 21412 -37.157.152.0/21 6661 -37.157.160.0/24 34653 -37.157.161.0/24 43561 -37.157.162.0/23 43561 -37.157.164.0/22 43561 -37.157.168.0/21 43561 -37.157.176.0/20 43561 -37.157.192.0/21 197019 -37.157.200.0/21 41421 -37.157.208.0/24 42688 -37.157.209.0/24 44395 -37.157.210.0/23 44395 -37.157.216.0/21 8932 -37.157.224.0/21 42845 -37.157.232.0/21 42676 -37.157.240.0/21 20860 -37.157.248.0/21 24961 -37.158.0.0/16 3352 -37.159.0.0/16 30722 -37.160.0.0/17 29447 -37.160.128.0/17 51207 -37.161.0.0/16 51207 -37.162.0.0/15 51207 -37.164.0.0/14 51207 -37.168.0.0/13 51207 -37.176.0.0/13 30722 -37.184.0.0/15 5432 -37.186.0.0/22 39912 -37.186.4.0/24 39912 -37.186.5.0/24 202909 -37.186.6.0/23 39912 -37.186.8.0/21 39912 -37.186.16.0/21 39912 -37.186.24.0/21 35753 -37.186.32.0/19 48728 -37.186.64.0/18 49800 -37.186.128.0/18 20811 -37.186.192.0/18 12874 -37.187.0.0/16 16276 -37.188.0.0/18 42277 -37.188.64.0/20 12871 -37.188.80.0/21 6830 -37.188.88.0/21 57951 -37.188.96.0/19 15395 -37.188.128.0/17 5610 -37.189.0.0/16 3243 -37.190.0.0/17 25513 -37.190.128.0/17 21021 -37.191.0.0/18 6830 -37.191.64.0/19 48309 -37.191.96.0/19 42973 -37.191.128.0/17 57963 -37.192.0.0/14 31200 -37.196.0.0/14 1257 -37.200.0.0/18 2119 -37.200.64.0/22 49505 -37.200.68.0/23 49505 -37.200.70.0/23 50340 -37.200.72.0/21 196949 -37.200.80.0/22 202193 -37.200.88.0/21 12714 -37.200.96.0/23 8972 -37.200.98.0/23 34011 -37.200.100.0/22 8972 -37.200.104.0/21 198636 -37.200.112.0/21 24958 -37.200.120.0/21 24663 -37.200.128.0/17 50010 -37.201.0.0/16 6830 -37.202.0.0/21 15817 -37.202.8.0/22 25188 -37.202.12.0/23 6672 -37.202.14.0/24 201443 -37.202.15.0/24 6672 -37.202.16.0/21 60475 -37.202.24.0/21 5381 -37.202.32.0/21 196818 -37.202.40.0/22 196818 -37.202.46.0/23 196818 -37.202.48.0/21 6823 -37.202.56.0/23 29479 -37.202.59.0/24 29479 -37.202.64.0/18 8376 -37.202.128.0/17 31549 -37.203.0.0/19 6876 -37.203.32.0/21 12993 -37.203.40.0/22 44332 -37.203.44.0/23 33459 -37.203.46.0/23 44332 -37.203.48.0/22 51173 -37.203.52.0/24 51173 -37.203.56.0/21 39637 -37.203.64.0/18 9146 -37.203.128.0/18 42689 -37.203.192.0/21 29286 -37.203.200.0/21 56420 -37.203.208.0/24 57858 -37.203.209.0/24 60485 -37.203.210.0/23 57858 -37.203.212.0/22 57858 -37.203.216.0/21 50295 -37.203.224.0/20 199309 -37.203.240.0/24 44964 -37.203.241.0/24 199430 -37.203.242.0/24 205978 -37.203.243.0/24 44964 -37.203.244.0/24 205978 -37.203.245.0/24 202520 -37.203.246.0/24 44964 -37.203.247.0/24 205978 -37.203.248.0/21 21040 -37.204.0.0/16 42610 -37.205.0.0/21 42926 -37.205.8.0/21 24971 -37.205.16.0/21 198626 -37.205.24.0/21 42560 -37.205.32.0/21 59396 -37.205.40.0/21 198641 -37.205.48.0/21 21127 -37.205.56.0/21 41811 -37.205.64.0/21 21127 -37.205.72.0/22 21127 -37.205.76.0/24 21127 -37.205.77.0/24 15774 -37.205.78.0/23 21127 -37.205.80.0/20 21127 -37.205.112.0/21 205473 -37.205.120.0/21 42525 -37.205.128.0/17 3269 -37.206.0.0/15 3269 -37.208.0.0/19 198612 -37.208.32.0/21 42560 -37.208.40.0/21 41798 -37.208.48.0/24 34704 -37.208.50.0/24 34704 -37.208.52.0/22 34704 -37.208.56.0/21 48137 -37.208.64.0/20 58002 -37.208.80.0/21 174 -37.208.89.0/24 202964 -37.208.90.0/23 202964 -37.208.92.0/24 202964 -37.208.96.0/22 44579 -37.208.100.0/22 41822 -37.208.104.0/21 58010 -37.208.112.0/21 205617 -37.208.120.0/21 25086 -37.208.128.0/17 8781 -37.209.0.0/17 6830 -37.209.128.0/19 15855 -37.209.160.0/21 198159 -37.209.168.0/21 29084 -37.209.176.0/20 41872 -37.209.192.0/24 397215 -37.209.194.0/24 397213 -37.209.196.0/24 397213 -37.209.198.0/24 134389 -37.209.200.0/21 49284 -37.209.208.0/24 31463 -37.209.209.0/24 39545 -37.209.210.0/24 31463 -37.209.211.0/24 39545 -37.209.212.0/24 31463 -37.209.213.0/24 39545 -37.209.214.0/23 39545 -37.209.216.0/21 31463 -37.209.224.0/22 16285 -37.209.229.0/24 16285 -37.209.230.0/23 16285 -37.209.232.0/21 16285 -37.209.240.0/23 58045 -37.209.248.0/23 9051 -37.209.250.0/24 9051 -37.209.251.0/24 61113 -37.209.252.0/22 9051 -37.210.0.0/16 42298 -37.211.0.0/18 42298 -37.211.64.0/19 42298 -37.211.96.0/19 8781 -37.211.128.0/18 42298 -37.211.192.0/18 8781 -37.212.0.0/14 6697 -37.216.0.0/15 35819 -37.218.0.0/17 12338 -37.218.128.0/18 12997 -37.218.196.0/22 43356 -37.218.208.0/20 51737 -37.218.224.0/23 201700 -37.218.232.0/21 25274 -37.218.240.0/24 133752 -37.218.241.0/24 209829 -37.218.242.0/24 47172 -37.218.244.0/22 47172 -37.218.248.0/22 45031 -37.218.252.0/24 45012 -37.218.253.0/24 45031 -37.218.254.0/24 45012 -37.218.255.0/24 45031 -37.219.0.0/16 16086 -37.220.0.0/19 20860 -37.220.32.0/21 58073 -37.220.40.0/21 5602 -37.220.48.0/20 49594 -37.220.64.0/20 199493 -37.220.80.0/21 41070 -37.220.88.0/21 61323 -37.220.96.0/21 34920 -37.220.104.0/22 47264 -37.220.108.0/23 47264 -37.220.110.0/24 6842 -37.220.111.0/24 47264 -37.220.112.0/20 9038 -37.220.128.0/21 50261 -37.220.136.0/22 50261 -37.220.140.0/23 50261 -37.220.142.0/24 61294 -37.220.143.0/24 50261 -37.220.144.0/23 34430 -37.220.146.0/24 34430 -37.220.147.0/24 13127 -37.220.148.0/23 13127 -37.220.150.0/24 13127 -37.220.152.0/21 196742 -37.220.160.0/22 34879 -37.220.165.0/24 34879 -37.220.166.0/23 34879 -37.220.168.0/21 198694 -37.220.176.0/20 8324 -37.220.192.0/18 21334 -37.221.64.0/22 48430 -37.221.68.0/23 49121 -37.221.70.0/24 49121 -37.221.72.0/22 12676 -37.221.80.0/24 12722 -37.221.81.0/24 62300 -37.221.82.0/23 49505 -37.221.84.0/23 39305 -37.221.86.0/24 39305 -37.221.87.0/24 202757 -37.221.88.0/22 201730 -37.221.92.0/22 395800 -37.221.96.0/22 62007 -37.221.100.0/22 198537 -37.221.104.0/22 34244 -37.221.108.0/22 393559 -37.221.112.0/22 9009 -37.221.116.0/24 35236 -37.221.124.0/22 62416 -37.221.128.0/19 3255 -37.221.160.0/20 3223 -37.221.176.0/22 198961 -37.221.180.0/24 60861 -37.221.181.0/24 198961 -37.221.182.0/23 198961 -37.221.184.0/21 58084 -37.221.192.0/21 197540 -37.221.200.0/23 8492 -37.221.202.0/24 43370 -37.221.203.0/24 8492 -37.221.204.0/23 8492 -37.221.206.0/24 8492 -37.221.207.0/24 43370 -37.221.208.0/21 41075 -37.221.216.0/21 31220 -37.221.224.0/21 198965 -37.221.232.0/21 198760 -37.221.240.0/20 198668 -37.222.0.0/15 12430 -37.224.0.0/22 39891 -37.224.4.0/22 25019 -37.224.8.0/21 25019 -37.224.16.0/20 25019 -37.224.32.0/19 25019 -37.224.64.0/22 39891 -37.224.68.0/22 25019 -37.224.72.0/21 25019 -37.224.80.0/20 25019 -37.224.96.0/19 25019 -37.224.128.0/21 39891 -37.224.136.0/21 25019 -37.224.144.0/20 25019 -37.224.160.0/19 39891 -37.224.192.0/21 25019 -37.224.200.0/21 39891 -37.224.208.0/20 25019 -37.224.224.0/19 39891 -37.225.0.0/16 5617 -37.226.0.0/15 24608 -37.228.0.0/18 5617 -37.228.64.0/21 35104 -37.228.72.0/21 35470 -37.228.80.0/23 34352 -37.228.83.0/24 34352 -37.228.84.0/22 34352 -37.228.88.0/22 48347 -37.228.92.0/23 48347 -37.228.94.0/24 48347 -37.228.95.0/24 205595 -37.228.98.0/23 199171 -37.228.104.0/21 39832 -37.228.112.0/21 50340 -37.228.120.0/24 51720 -37.228.122.0/23 51720 -37.228.124.0/24 51720 -37.228.127.0/24 8767 -37.228.128.0/23 200651 -37.228.130.0/24 50873 -37.228.131.0/24 16322 -37.228.132.0/24 200615 -37.228.133.0/24 16322 -37.228.134.0/24 200615 -37.228.135.0/24 16322 -37.228.136.0/22 60976 -37.228.140.0/22 209400 -37.228.144.0/22 8893 -37.228.148.0/23 204035 -37.228.150.0/24 204035 -37.228.152.0/21 34432 -37.228.160.0/20 12843 -37.228.176.0/20 47297 -37.228.192.0/18 6830 -37.229.0.0/16 15895 -37.230.0.0/19 9063 -37.230.32.0/21 198672 -37.230.40.0/21 16097 -37.230.48.0/20 51059 -37.230.64.0/20 29119 -37.230.80.0/22 29119 -37.230.84.0/23 29119 -37.230.86.0/24 203600 -37.230.87.0/24 29119 -37.230.88.0/21 29119 -37.230.96.0/21 35470 -37.230.104.0/21 42807 -37.230.112.0/21 29182 -37.230.120.0/21 201205 -37.230.130.0/24 3223 -37.230.131.0/24 9009 -37.230.132.0/24 204402 -37.230.133.0/24 202547 -37.230.134.0/24 58272 -37.230.135.0/24 204402 -37.230.136.0/24 206385 -37.230.137.0/24 197309 -37.230.138.0/24 203674 -37.230.139.0/24 206980 -37.230.140.0/24 62063 -37.230.141.0/24 48614 -37.230.142.0/24 57064 -37.230.144.0/24 203725 -37.230.145.0/24 60568 -37.230.146.0/24 197535 -37.230.147.0/24 57652 -37.230.148.0/24 56676 -37.230.149.0/24 62268 -37.230.150.0/24 60872 -37.230.151.0/24 60287 -37.230.152.0/22 198770 -37.230.157.0/24 25513 -37.230.158.0/24 57064 -37.230.159.0/24 206153 -37.230.160.0/24 60062 -37.230.161.0/24 24774 -37.230.162.0/24 197309 -37.230.163.0/24 206448 -37.230.164.0/22 8818 -37.230.168.0/24 46562 -37.230.169.0/24 3223 -37.230.170.0/24 1421 -37.230.171.0/24 3223 -37.230.173.0/24 36351 -37.230.174.0/24 9009 -37.230.175.0/24 3223 -37.230.176.0/24 9009 -37.230.177.0/24 40676 -37.230.178.0/24 40676 -37.230.180.0/24 16125 -37.230.181.0/24 9009 -37.230.183.0/24 36351 -37.230.184.0/24 9009 -37.230.187.0/24 9009 -37.230.188.0/24 43317 -37.230.189.0/24 46562 -37.230.190.0/24 209378 -37.230.191.0/24 1421 -37.230.192.0/21 58272 -37.230.200.0/24 43563 -37.230.201.0/24 59726 -37.230.202.0/23 199530 -37.230.204.0/24 208388 -37.230.205.0/24 203831 -37.230.206.0/23 48558 -37.230.208.0/24 200764 -37.230.209.0/24 204159 -37.230.210.0/24 197309 -37.230.211.0/24 29528 -37.230.212.0/23 58272 -37.230.220.0/23 199651 -37.230.222.0/24 60779 -37.230.223.0/24 197998 -37.230.225.0/24 204112 -37.230.226.0/23 204036 -37.230.228.0/24 197309 -37.230.229.0/24 62413 -37.230.230.0/24 57064 -37.230.231.0/24 42822 -37.230.232.0/24 57064 -37.230.234.0/24 200922 -37.230.235.0/24 202781 -37.230.236.0/24 48219 -37.230.237.0/24 201825 -37.230.238.0/24 197535 -37.230.239.0/24 44657 -37.230.240.0/24 199444 -37.230.241.0/24 56928 -37.230.242.0/23 200095 -37.230.244.0/24 51698 -37.230.245.0/24 31133 -37.230.246.0/24 61051 -37.230.247.0/24 42938 -37.230.248.0/24 198770 -37.230.249.0/24 200016 -37.230.250.0/24 57064 -37.230.251.0/24 62111 -37.230.252.0/23 199170 -37.230.254.0/24 199674 -37.230.255.0/24 61257 -37.231.0.0/16 47589 -37.232.0.0/17 35805 -37.232.128.0/17 12714 -37.233.0.0/18 31252 -37.233.64.0/20 3246 -37.233.80.0/21 42678 -37.233.88.0/21 58003 -37.233.96.0/20 198717 -37.233.116.0/24 204921 -37.233.117.0/24 202051 -37.233.118.0/24 35810 -37.233.120.0/21 57853 -37.233.128.0/17 20771 -37.234.0.0/16 8448 -37.235.0.0/21 51453 -37.235.8.0/21 33915 -37.235.16.0/20 5484 -37.235.32.0/21 43160 -37.235.40.0/23 174 -37.235.42.0/24 174 -37.235.43.0/24 51561 -37.235.44.0/22 174 -37.235.48.0/24 51290 -37.235.49.0/24 50613 -37.235.50.0/23 57169 -37.235.52.0/24 28099 -37.235.53.0/24 39020 -37.235.54.0/24 39326 -37.235.55.0/24 24851 -37.235.56.0/21 57169 -37.235.64.0/21 39289 -37.235.72.0/24 58109 -37.235.76.0/24 56860 -37.235.77.0/24 21427 -37.235.78.0/24 43779 -37.235.79.0/24 62187 -37.235.80.0/21 58075 -37.235.88.0/22 35625 -37.235.92.0/23 24935 -37.235.94.0/23 35625 -37.235.96.0/21 39392 -37.235.104.0/24 39392 -37.235.105.0/24 60068 -37.235.106.0/23 39392 -37.235.108.0/22 39392 -37.235.112.0/21 35332 -37.235.120.0/23 50300 -37.235.122.0/24 31463 -37.235.128.0/17 41268 -37.236.0.0/14 50710 -37.240.0.0/19 35819 -37.240.32.0/19 34400 -37.240.64.0/18 34400 -37.240.128.0/19 35819 -37.240.160.0/19 34400 -37.240.192.0/19 35819 -37.240.224.0/19 34400 -37.241.0.0/16 34400 -37.242.0.0/23 34400 -37.242.2.0/24 34400 -37.242.3.0/24 35819 -37.242.4.0/24 35819 -37.242.5.0/24 34400 -37.242.6.0/23 34400 -37.242.8.0/22 34400 -37.242.12.0/22 35819 -37.242.16.0/21 35819 -37.242.24.0/21 34400 -37.242.32.0/19 34400 -37.242.64.0/18 34400 -37.242.128.0/18 34400 -37.242.192.0/19 35819 -37.242.224.0/19 34400 -37.243.0.0/16 35819 -37.244.0.0/21 57976 -37.244.8.0/23 57976 -37.244.15.0/24 57976 -37.244.16.0/20 57976 -37.244.32.0/20 57976 -37.244.48.0/23 57976 -37.244.50.0/24 57976 -37.244.52.0/22 57976 -37.244.56.0/21 57976 -37.244.64.0/18 15533 -37.244.128.0/17 12810 -37.245.0.0/16 5384 -37.246.0.0/16 57598 -37.247.0.0/19 33885 -37.247.32.0/20 25459 -37.247.48.0/21 34971 -37.247.56.0/21 197227 -37.247.64.0/19 21413 -37.247.96.0/22 43260 -37.247.100.0/24 43260 -37.247.101.0/24 199366 -37.247.102.0/23 43260 -37.247.104.0/21 43260 -37.247.112.0/23 29141 -37.247.114.0/24 29141 -37.247.115.0/24 205406 -37.247.116.0/23 20860 -37.247.118.0/24 205406 -37.247.119.0/24 47447 -37.247.120.0/21 15954 -37.247.128.0/18 8374 -37.247.192.0/19 8374 -37.247.224.0/21 8374 -37.247.232.0/23 8374 -37.247.234.0/24 8374 -37.247.235.0/24 57811 -37.247.236.0/23 57811 -37.247.238.0/23 8374 -37.247.240.0/22 8374 -37.247.244.0/23 21243 -37.247.246.0/23 8374 -37.247.248.0/21 8374 -37.248.0.0/15 8374 -37.250.0.0/16 44034 -37.251.0.0/17 49562 -37.251.128.0/19 34358 -37.251.160.0/20 34358 -37.251.176.0/20 210176 -37.251.200.0/21 210176 -37.251.208.0/20 8953 -37.251.224.0/20 31317 -37.251.240.0/21 210176 -37.251.248.0/21 34358 -37.252.0.0/23 12722 -37.252.2.0/24 59627 -37.252.3.0/24 50673 -37.252.4.0/23 34702 -37.252.6.0/23 43333 -37.252.8.0/23 42708 -37.252.10.0/23 43333 -37.252.12.0/24 59627 -37.252.13.0/24 50673 -37.252.14.0/23 50673 -37.252.16.0/22 58095 -37.252.22.0/24 58095 -37.252.24.0/21 8851 -37.252.32.0/20 44574 -37.252.48.0/20 13037 -37.252.64.0/19 44395 -37.252.96.0/24 39020 -37.252.97.0/24 198934 -37.252.98.0/24 198193 -37.252.99.0/24 15364 -37.252.100.0/23 198193 -37.252.102.0/24 60458 -37.252.104.0/21 29286 -37.252.112.0/21 61006 -37.252.120.0/21 196752 -37.252.128.0/19 48885 -37.252.160.0/20 29990 -37.252.176.0/21 12430 -37.252.184.0/21 44133 -37.252.192.0/21 198719 -37.252.200.0/21 29286 -37.252.210.0/23 44654 -37.252.212.0/23 44654 -37.252.215.0/24 16065 -37.252.224.0/19 42473 -37.253.0.0/16 2119 -37.254.0.0/15 58224 -38.0.0.0/15 174 -38.2.0.0/16 174 -38.3.0.0/20 174 -38.3.16.0/20 18590 -38.3.32.0/19 174 -38.3.64.0/18 174 -38.3.128.0/17 174 -38.4.0.0/14 174 -38.8.0.0/13 174 -38.16.0.0/16 174 -38.17.0.0/19 174 -38.17.32.0/22 63018 -38.17.36.0/22 395800 -38.17.40.0/21 174 -38.17.48.0/21 17139 -38.17.56.0/21 32012 -38.17.64.0/18 174 -38.17.128.0/17 174 -38.18.0.0/19 174 -38.18.32.0/19 19816 -38.18.64.0/18 174 -38.18.128.0/21 174 -38.18.136.0/22 40281 -38.18.140.0/22 174 -38.18.144.0/21 12105 -38.18.152.0/21 174 -38.18.160.0/19 174 -38.18.192.0/19 396521 -38.18.224.0/21 174 -38.18.232.0/22 396422 -38.18.236.0/22 46432 -38.18.240.0/20 395795 -38.19.0.0/16 174 -38.20.0.0/18 174 -38.20.64.0/19 174 -38.20.96.0/21 395111 -38.20.104.0/21 174 -38.20.112.0/20 395127 -38.20.128.0/22 174 -38.20.132.0/23 394989 -38.20.134.0/24 26110 -38.20.135.0/24 174 -38.20.136.0/21 174 -38.20.144.0/22 174 -38.20.148.0/22 32012 -38.20.152.0/21 174 -38.20.160.0/19 174 -38.20.192.0/18 174 -38.21.0.0/19 174 -38.21.32.0/21 395795 -38.21.40.0/21 40545 -38.21.48.0/21 174 -38.21.56.0/21 13692 -38.21.64.0/18 174 -38.21.128.0/18 174 -38.21.192.0/20 174 -38.21.208.0/20 40545 -38.21.224.0/20 26484 -38.21.240.0/22 26484 -38.21.244.0/23 26484 -38.21.246.0/24 26484 -38.21.247.0/24 174 -38.21.248.0/22 26484 -38.21.252.0/23 26484 -38.21.254.0/24 174 -38.21.255.0/24 26484 -38.22.0.0/21 21624 -38.22.8.0/22 174 -38.22.12.0/22 25651 -38.22.16.0/20 174 -38.22.32.0/20 174 -38.22.48.0/21 174 -38.22.56.0/22 174 -38.22.60.0/22 40866 -38.22.64.0/18 174 -38.22.128.0/17 174 -38.23.0.0/16 174 -38.24.0.0/15 174 -38.26.0.0/20 174 -38.26.16.0/20 53338 -38.26.32.0/19 174 -38.26.64.0/18 174 -38.26.128.0/17 174 -38.27.0.0/18 174 -38.27.64.0/19 174 -38.27.96.0/21 26484 -38.27.104.0/24 174 -38.27.105.0/24 397596 -38.27.106.0/24 395717 -38.27.107.0/24 174 -38.27.108.0/24 174 -38.27.109.0/24 396168 -38.27.110.0/23 174 -38.27.112.0/22 14277 -38.27.116.0/23 17330 -38.27.118.0/24 11713 -38.27.119.0/24 10753 -38.27.120.0/24 174 -38.27.121.0/24 16639 -38.27.122.0/24 174 -38.27.123.0/24 396168 -38.27.124.0/22 14277 -38.27.128.0/20 40545 -38.27.144.0/20 174 -38.27.160.0/24 174 -38.27.161.0/24 36671 -38.27.162.0/24 1605 -38.27.163.0/24 174 -38.27.164.0/23 36360 -38.27.166.0/23 174 -38.27.168.0/21 174 -38.27.176.0/20 174 -38.27.192.0/24 29783 -38.27.193.0/24 174 -38.27.194.0/23 174 -38.27.196.0/22 174 -38.27.200.0/21 174 -38.27.208.0/20 174 -38.27.224.0/19 174 -38.28.0.0/16 174 -38.29.0.0/20 174 -38.29.16.0/21 174 -38.29.24.0/23 174 -38.29.26.0/23 53338 -38.29.28.0/22 13727 -38.29.32.0/19 32100 -38.29.64.0/18 174 -38.29.128.0/20 174 -38.29.144.0/21 393857 -38.29.152.0/24 393857 -38.29.153.0/24 62683 -38.29.154.0/23 393857 -38.29.156.0/22 174 -38.29.160.0/21 40285 -38.29.168.0/23 174 -38.29.170.0/24 11686 -38.29.171.0/24 174 -38.29.172.0/22 174 -38.29.176.0/22 40285 -38.29.180.0/24 40285 -38.29.181.0/24 174 -38.29.182.0/23 40285 -38.29.184.0/24 395535 -38.29.185.0/24 393662 -38.29.186.0/23 40805 -38.29.188.0/22 174 -38.29.192.0/22 174 -38.29.196.0/22 62592 -38.29.200.0/23 174 -38.29.202.0/24 174 -38.29.203.0/24 16468 -38.29.204.0/22 395866 -38.29.208.0/22 46294 -38.29.212.0/23 174 -38.29.214.0/24 395077 -38.29.215.0/24 395160 -38.29.216.0/22 174 -38.29.220.0/23 174 -38.29.222.0/24 395579 -38.29.223.0/24 174 -38.29.224.0/23 174 -38.29.226.0/24 395866 -38.29.227.0/24 174 -38.29.228.0/22 46294 -38.29.232.0/22 16468 -38.29.236.0/22 174 -38.29.240.0/20 174 -38.30.0.0/15 174 -38.32.0.0/14 174 -38.36.0.0/15 174 -38.38.0.0/16 174 -38.39.0.0/20 174 -38.39.16.0/21 22060 -38.39.24.0/21 174 -38.39.32.0/19 4877 -38.39.64.0/19 32277 -38.39.96.0/19 12132 -38.39.128.0/21 203223 -38.39.136.0/21 174 -38.39.144.0/22 397311 -38.39.148.0/24 397311 -38.39.149.0/24 174 -38.39.150.0/23 174 -38.39.152.0/21 174 -38.39.160.0/20 174 -38.39.176.0/20 21554 -38.39.192.0/20 40676 -38.39.208.0/22 55140 -38.39.212.0/23 55140 -38.39.214.0/23 397019 -38.39.216.0/21 55140 -38.39.224.0/19 174 -38.40.0.0/13 174 -38.48.0.0/12 174 -38.64.0.0/24 174 -38.64.1.0/24 54960 -38.64.2.0/23 174 -38.64.4.0/22 23486 -38.64.8.0/21 174 -38.64.16.0/20 174 -38.64.32.0/22 174 -38.64.36.0/24 174 -38.64.37.0/24 36472 -38.64.38.0/24 36472 -38.64.39.0/24 174 -38.64.40.0/21 174 -38.64.48.0/20 174 -38.64.64.0/23 174 -38.64.66.0/24 174 -38.64.67.0/24 395924 -38.64.68.0/22 174 -38.64.72.0/24 174 -38.64.73.0/24 14460 -38.64.74.0/24 11160 -38.64.75.0/24 174 -38.64.76.0/22 58879 -38.64.80.0/24 174 -38.64.81.0/24 36062 -38.64.82.0/24 174 -38.64.83.0/24 55253 -38.64.84.0/23 174 -38.64.86.0/24 174 -38.64.87.0/24 393729 -38.64.88.0/22 174 -38.64.92.0/24 58879 -38.64.93.0/24 174 -38.64.94.0/23 174 -38.64.96.0/23 174 -38.64.98.0/24 394844 -38.64.99.0/24 174 -38.64.100.0/22 174 -38.64.104.0/21 174 -38.64.112.0/20 174 -38.64.128.0/24 174 -38.64.129.0/24 26110 -38.64.130.0/23 174 -38.64.132.0/23 174 -38.64.134.0/24 26110 -38.64.135.0/24 46477 -38.64.136.0/22 174 -38.64.140.0/23 174 -38.64.142.0/23 26110 -38.64.144.0/23 46430 -38.64.146.0/23 174 -38.64.148.0/22 26110 -38.64.152.0/22 174 -38.64.156.0/23 26110 -38.64.158.0/24 26110 -38.64.159.0/24 7122 -38.64.160.0/24 174 -38.64.161.0/24 394429 -38.64.162.0/23 174 -38.64.164.0/22 174 -38.64.168.0/24 40635 -38.64.169.0/24 174 -38.64.170.0/23 174 -38.64.172.0/23 19842 -38.64.174.0/24 27471 -38.64.175.0/24 397905 -38.64.176.0/21 21570 -38.64.184.0/21 174 -38.64.192.0/24 174 -38.64.193.0/24 63122 -38.64.194.0/23 174 -38.64.196.0/22 26110 -38.64.200.0/23 174 -38.64.202.0/23 63122 -38.64.204.0/22 47027 -38.64.208.0/21 174 -38.64.216.0/22 174 -38.64.220.0/23 174 -38.64.222.0/24 394284 -38.64.223.0/24 393339 -38.64.224.0/20 174 -38.64.240.0/22 53338 -38.64.244.0/23 174 -38.64.246.0/24 174 -38.64.247.0/24 33044 -38.64.248.0/22 33007 -38.64.252.0/23 26110 -38.64.254.0/23 174 -38.65.0.0/21 174 -38.65.8.0/23 174 -38.65.10.0/24 174 -38.65.11.0/24 18919 -38.65.12.0/23 174 -38.65.14.0/24 174 -38.65.15.0/24 18919 -38.65.16.0/23 174 -38.65.18.0/24 1419 -38.65.19.0/24 174 -38.65.20.0/23 174 -38.65.22.0/24 11794 -38.65.23.0/24 174 -38.65.24.0/22 9009 -38.65.28.0/23 174 -38.65.30.0/24 55049 -38.65.31.0/24 17317 -38.65.32.0/23 174 -38.65.34.0/24 174 -38.65.35.0/24 397633 -38.65.36.0/22 174 -38.65.40.0/21 174 -38.65.48.0/22 174 -38.65.52.0/22 394334 -38.65.56.0/21 174 -38.65.64.0/23 174 -38.65.66.0/24 394765 -38.65.67.0/24 174 -38.65.68.0/23 174 -38.65.70.0/23 395948 -38.65.72.0/21 395948 -38.65.80.0/20 32098 -38.65.96.0/24 174 -38.65.97.0/24 19211 -38.65.98.0/23 174 -38.65.100.0/23 174 -38.65.102.0/24 55140 -38.65.103.0/24 174 -38.65.104.0/22 174 -38.65.108.0/23 55140 -38.65.110.0/23 174 -38.65.112.0/24 174 -38.65.113.0/24 55140 -38.65.114.0/24 55140 -38.65.115.0/24 174 -38.65.116.0/24 174 -38.65.117.0/24 63354 -38.65.118.0/24 174 -38.65.119.0/24 55140 -38.65.120.0/22 174 -38.65.124.0/22 63275 -38.65.128.0/22 174 -38.65.132.0/23 174 -38.65.134.0/23 263157 -38.65.136.0/22 174 -38.65.140.0/24 43009 -38.65.141.0/24 174 -38.65.142.0/23 174 -38.65.144.0/20 28409 -38.65.160.0/23 28409 -38.65.162.0/24 28409 -38.65.163.0/24 174 -38.65.164.0/22 28409 -38.65.168.0/21 174 -38.65.176.0/24 28409 -38.65.177.0/24 174 -38.65.178.0/23 174 -38.65.180.0/22 174 -38.65.184.0/21 174 -38.65.192.0/23 174 -38.65.194.0/24 174 -38.65.195.0/24 10584 -38.65.196.0/22 36498 -38.65.200.0/23 36498 -38.65.202.0/24 174 -38.65.203.0/24 13452 -38.65.204.0/23 54240 -38.65.206.0/24 26970 -38.65.207.0/24 174 -38.65.208.0/21 174 -38.65.216.0/23 26135 -38.65.218.0/23 174 -38.65.220.0/24 40371 -38.65.221.0/24 174 -38.65.222.0/23 174 -38.65.224.0/21 174 -38.65.232.0/22 174 -38.65.236.0/23 395383 -38.65.238.0/24 174 -38.65.239.0/24 395383 -38.65.240.0/23 174 -38.65.242.0/24 396063 -38.65.243.0/24 174 -38.65.244.0/22 174 -38.65.248.0/21 174 -38.66.0.0/20 22898 -38.66.16.0/20 174 -38.66.32.0/20 22898 -38.66.48.0/20 174 -38.66.64.0/21 174 -38.66.72.0/23 174 -38.66.74.0/24 174 -38.66.75.0/24 40781 -38.66.76.0/24 23515 -38.66.77.0/24 174 -38.66.78.0/24 174 -38.66.79.0/24 30641 -38.66.80.0/24 174 -38.66.81.0/24 46935 -38.66.82.0/23 174 -38.66.84.0/22 174 -38.66.88.0/21 174 -38.66.96.0/19 174 -38.66.128.0/24 174 -38.66.129.0/24 397364 -38.66.130.0/23 174 -38.66.132.0/22 174 -38.66.136.0/21 174 -38.66.144.0/20 174 -38.66.160.0/19 174 -38.66.192.0/24 174 -38.66.193.0/24 29972 -38.66.194.0/24 395535 -38.66.195.0/24 174 -38.66.196.0/24 46658 -38.66.197.0/24 174 -38.66.198.0/23 14775 -38.66.200.0/22 13876 -38.66.204.0/22 174 -38.66.208.0/22 53959 -38.66.212.0/22 174 -38.66.216.0/24 17085 -38.66.217.0/24 174 -38.66.218.0/23 174 -38.66.220.0/24 395535 -38.66.221.0/24 40510 -38.66.222.0/24 174 -38.66.223.0/24 395411 -38.66.224.0/21 40285 -38.66.232.0/24 14319 -38.66.233.0/24 40510 -38.66.234.0/23 174 -38.66.236.0/22 174 -38.66.240.0/21 40285 -38.66.248.0/24 40510 -38.66.249.0/24 395535 -38.66.250.0/23 174 -38.66.252.0/23 40510 -38.66.254.0/23 174 -38.67.0.0/22 174 -38.67.4.0/23 174 -38.67.6.0/24 11133 -38.67.7.0/24 174 -38.67.8.0/23 174 -38.67.10.0/23 19754 -38.67.12.0/22 174 -38.67.16.0/22 174 -38.67.20.0/24 174 -38.67.21.0/24 36054 -38.67.22.0/24 394265 -38.67.23.0/24 174 -38.67.24.0/24 394459 -38.67.25.0/24 174 -38.67.26.0/23 174 -38.67.28.0/22 3402 -38.67.32.0/19 174 -38.67.64.0/18 174 -38.67.128.0/21 174 -38.67.136.0/23 1286 -38.67.138.0/23 174 -38.67.140.0/22 174 -38.67.144.0/20 174 -38.67.160.0/19 174 -38.67.192.0/24 174 -38.67.193.0/24 45432 -38.67.194.0/23 174 -38.67.196.0/22 174 -38.67.200.0/22 174 -38.67.204.0/24 35884 -38.67.205.0/24 394876 -38.67.206.0/23 174 -38.67.208.0/21 174 -38.67.216.0/22 174 -38.67.220.0/24 63383 -38.67.221.0/24 174 -38.67.222.0/23 174 -38.67.224.0/20 174 -38.67.240.0/23 174 -38.67.242.0/24 19277 -38.67.243.0/24 174 -38.67.244.0/22 174 -38.67.248.0/21 174 -38.68.0.0/23 39988 -38.68.2.0/24 54650 -38.68.3.0/24 174 -38.68.4.0/22 174 -38.68.8.0/24 174 -38.68.9.0/24 395314 -38.68.10.0/23 174 -38.68.12.0/23 397849 -38.68.14.0/24 174 -38.68.15.0/24 396457 -38.68.16.0/22 393737 -38.68.20.0/23 395434 -38.68.22.0/23 174 -38.68.24.0/24 46957 -38.68.25.0/24 174 -38.68.26.0/23 19201 -38.68.28.0/23 174 -38.68.30.0/23 46957 -38.68.32.0/24 174 -38.68.33.0/24 396073 -38.68.34.0/24 397843 -38.68.35.0/24 174 -38.68.36.0/22 396073 -38.68.40.0/23 396073 -38.68.42.0/23 174 -38.68.44.0/22 174 -38.68.48.0/20 174 -38.68.64.0/18 174 -38.68.128.0/22 174 -38.68.132.0/23 174 -38.68.134.0/23 63023 -38.68.136.0/21 174 -38.68.144.0/20 174 -38.68.160.0/23 174 -38.68.162.0/24 174 -38.68.163.0/24 12400 -38.68.164.0/22 174 -38.68.168.0/22 26769 -38.68.172.0/22 174 -38.68.176.0/20 174 -38.68.192.0/24 174 -38.68.193.0/24 394346 -38.68.194.0/23 174 -38.68.196.0/23 174 -38.68.198.0/24 40220 -38.68.199.0/24 26476 -38.68.200.0/23 174 -38.68.202.0/24 394941 -38.68.203.0/24 27471 -38.68.204.0/24 174 -38.68.205.0/24 395047 -38.68.206.0/23 174 -38.68.208.0/20 174 -38.68.224.0/20 40220 -38.68.240.0/22 40220 -38.68.244.0/22 174 -38.68.248.0/23 174 -38.68.250.0/23 40220 -38.68.252.0/22 40220 -38.69.0.0/24 54583 -38.69.1.0/24 174 -38.69.2.0/23 174 -38.69.4.0/22 174 -38.69.8.0/21 174 -38.69.16.0/20 174 -38.69.32.0/21 174 -38.69.40.0/22 174 -38.69.44.0/23 174 -38.69.46.0/23 7767 -38.69.48.0/22 174 -38.69.52.0/23 174 -38.69.54.0/24 174 -38.69.55.0/24 63130 -38.69.56.0/21 174 -38.69.64.0/18 174 -38.69.128.0/24 174 -38.69.129.0/24 36225 -38.69.130.0/24 11077 -38.69.131.0/24 174 -38.69.132.0/23 12212 -38.69.134.0/24 174 -38.69.135.0/24 394235 -38.69.136.0/23 174 -38.69.138.0/23 21552 -38.69.140.0/24 36225 -38.69.141.0/24 174 -38.69.142.0/24 62717 -38.69.143.0/24 174 -38.69.144.0/22 174 -38.69.148.0/23 174 -38.69.150.0/24 174 -38.69.151.0/24 22423 -38.69.152.0/22 174 -38.69.156.0/23 32100 -38.69.158.0/23 174 -38.69.160.0/21 174 -38.69.168.0/22 22113 -38.69.172.0/22 174 -38.69.176.0/22 22113 -38.69.180.0/22 174 -38.69.184.0/21 174 -38.69.192.0/21 174 -38.69.200.0/24 393515 -38.69.201.0/24 174 -38.69.202.0/23 174 -38.69.204.0/22 174 -38.69.208.0/21 16413 -38.69.216.0/21 174 -38.69.224.0/21 174 -38.69.232.0/24 174 -38.69.233.0/24 395019 -38.69.234.0/24 174 -38.69.235.0/24 393346 -38.69.236.0/22 174 -38.69.240.0/20 174 -38.70.0.0/22 174 -38.70.4.0/24 174 -38.70.5.0/24 18929 -38.70.6.0/24 22554 -38.70.7.0/24 174 -38.70.8.0/21 174 -38.70.16.0/20 174 -38.70.32.0/19 174 -38.70.64.0/24 174 -38.70.65.0/24 1996 -38.70.66.0/23 174 -38.70.68.0/23 174 -38.70.70.0/24 395868 -38.70.71.0/24 397473 -38.70.72.0/21 174 -38.70.80.0/20 174 -38.70.96.0/19 174 -38.70.128.0/18 174 -38.70.192.0/24 174 -38.70.193.0/24 21644 -38.70.194.0/24 1605 -38.70.195.0/24 174 -38.70.196.0/24 393989 -38.70.197.0/24 174 -38.70.198.0/24 26441 -38.70.199.0/24 174 -38.70.200.0/21 32212 -38.70.208.0/21 32212 -38.70.216.0/22 174 -38.70.220.0/23 62819 -38.70.222.0/23 174 -38.70.224.0/21 174 -38.70.232.0/22 174 -38.70.236.0/23 174 -38.70.238.0/24 16664 -38.70.239.0/24 54531 -38.70.240.0/20 174 -38.71.0.0/23 174 -38.71.2.0/24 26558 -38.71.3.0/24 174 -38.71.4.0/22 174 -38.71.8.0/24 4905 -38.71.9.0/24 174 -38.71.10.0/23 174 -38.71.12.0/22 174 -38.71.16.0/20 174 -38.71.32.0/19 174 -38.71.64.0/24 174 -38.71.65.0/24 30216 -38.71.66.0/23 46449 -38.71.68.0/23 174 -38.71.70.0/24 11586 -38.71.71.0/24 174 -38.71.72.0/22 174 -38.71.76.0/22 46449 -38.71.80.0/20 174 -38.71.96.0/19 174 -38.71.128.0/18 174 -38.71.192.0/23 174 -38.71.194.0/24 26215 -38.71.195.0/24 174 -38.71.196.0/24 174 -38.71.197.0/24 33540 -38.71.198.0/23 26215 -38.71.200.0/21 174 -38.71.208.0/20 174 -38.71.224.0/19 174 -38.72.0.0/18 174 -38.72.64.0/22 174 -38.72.68.0/23 174 -38.72.70.0/24 54751 -38.72.71.0/24 174 -38.72.72.0/23 16468 -38.72.74.0/23 174 -38.72.76.0/24 54620 -38.72.77.0/24 174 -38.72.78.0/23 174 -38.72.80.0/22 395822 -38.72.84.0/22 174 -38.72.88.0/21 174 -38.72.96.0/23 174 -38.72.98.0/23 395866 -38.72.100.0/24 21557 -38.72.101.0/24 174 -38.72.102.0/23 174 -38.72.104.0/22 174 -38.72.108.0/24 63252 -38.72.109.0/24 174 -38.72.110.0/23 174 -38.72.112.0/23 174 -38.72.114.0/23 395724 -38.72.116.0/24 396175 -38.72.117.0/24 22911 -38.72.118.0/24 174 -38.72.119.0/24 395077 -38.72.120.0/23 174 -38.72.122.0/24 174 -38.72.123.0/24 54441 -38.72.124.0/24 174 -38.72.125.0/24 394550 -38.72.126.0/23 174 -38.72.128.0/23 174 -38.72.130.0/24 174 -38.72.131.0/24 27471 -38.72.132.0/22 174 -38.72.136.0/23 394140 -38.72.138.0/23 174 -38.72.140.0/22 174 -38.72.144.0/21 395111 -38.72.152.0/22 395111 -38.72.156.0/23 29802 -38.72.158.0/23 63018 -38.72.160.0/19 174 -38.72.192.0/21 174 -38.72.200.0/22 18779 -38.72.204.0/22 174 -38.72.208.0/20 174 -38.72.224.0/19 174 -38.73.0.0/17 174 -38.73.128.0/24 174 -38.73.129.0/24 17209 -38.73.130.0/23 174 -38.73.132.0/22 174 -38.73.136.0/21 174 -38.73.144.0/20 174 -38.73.160.0/19 174 -38.73.192.0/24 174 -38.73.193.0/24 32586 -38.73.194.0/23 174 -38.73.196.0/22 174 -38.73.200.0/21 174 -38.73.208.0/20 174 -38.73.224.0/24 174 -38.73.225.0/24 395717 -38.73.226.0/24 174 -38.73.227.0/24 63071 -38.73.228.0/22 174 -38.73.232.0/24 174 -38.73.233.0/24 63071 -38.73.234.0/24 174 -38.73.235.0/24 397934 -38.73.236.0/22 174 -38.73.240.0/20 174 -38.74.0.0/24 174 -38.74.1.0/24 12212 -38.74.2.0/24 395282 -38.74.3.0/24 174 -38.74.4.0/23 174 -38.74.6.0/23 17397 -38.74.8.0/21 55286 -38.74.16.0/20 26932 -38.74.32.0/20 174 -38.74.48.0/23 174 -38.74.50.0/24 174 -38.74.51.0/24 33028 -38.74.52.0/22 174 -38.74.56.0/21 174 -38.74.64.0/21 174 -38.74.72.0/23 394830 -38.74.74.0/23 174 -38.74.76.0/22 174 -38.74.80.0/20 174 -38.74.96.0/19 174 -38.74.128.0/23 174 -38.74.130.0/23 1286 -38.74.132.0/22 174 -38.74.136.0/24 1286 -38.74.137.0/24 174 -38.74.138.0/23 174 -38.74.140.0/22 174 -38.74.144.0/20 174 -38.74.160.0/19 174 -38.74.192.0/23 174 -38.74.194.0/24 55223 -38.74.195.0/24 22791 -38.74.196.0/22 174 -38.74.200.0/21 174 -38.74.208.0/20 174 -38.74.224.0/19 174 -38.75.0.0/21 174 -38.75.8.0/23 174 -38.75.10.0/24 174 -38.75.11.0/24 54306 -38.75.12.0/22 174 -38.75.16.0/23 21557 -38.75.18.0/23 32945 -38.75.20.0/22 174 -38.75.24.0/21 174 -38.75.32.0/21 174 -38.75.40.0/24 174 -38.75.41.0/24 11804 -38.75.42.0/23 174 -38.75.44.0/22 174 -38.75.48.0/20 174 -38.75.64.0/20 174 -38.75.80.0/22 16413 -38.75.84.0/22 174 -38.75.88.0/21 174 -38.75.96.0/19 174 -38.75.128.0/23 174 -38.75.130.0/24 174 -38.75.131.0/24 54792 -38.75.132.0/24 174 -38.75.133.0/24 54583 -38.75.134.0/23 394715 -38.75.136.0/23 63023 -38.75.138.0/23 174 -38.75.140.0/22 174 -38.75.144.0/20 174 -38.75.160.0/19 174 -38.75.192.0/22 174 -38.75.196.0/23 63270 -38.75.198.0/23 174 -38.75.200.0/23 54431 -38.75.202.0/23 174 -38.75.204.0/22 174 -38.75.208.0/23 394883 -38.75.210.0/23 174 -38.75.212.0/22 174 -38.75.216.0/21 174 -38.75.224.0/21 63270 -38.75.232.0/21 174 -38.75.240.0/20 174 -38.76.0.0/23 174 -38.76.2.0/24 174 -38.76.3.0/24 46394 -38.76.4.0/24 14120 -38.76.5.0/24 174 -38.76.6.0/23 174 -38.76.8.0/24 174 -38.76.9.0/24 54566 -38.76.10.0/24 54748 -38.76.11.0/24 174 -38.76.12.0/22 174 -38.76.16.0/23 57624 -38.76.18.0/24 40081 -38.76.19.0/24 174 -38.76.20.0/23 174 -38.76.22.0/24 54566 -38.76.23.0/24 46806 -38.76.24.0/23 174 -38.76.26.0/23 133010 -38.76.28.0/23 54183 -38.76.30.0/24 63241 -38.76.31.0/24 174 -38.76.32.0/24 174 -38.76.33.0/24 27390 -38.76.34.0/23 174 -38.76.36.0/22 174 -38.76.40.0/21 174 -38.76.48.0/20 174 -38.76.64.0/24 13536 -38.76.65.0/24 30967 -38.76.66.0/23 174 -38.76.68.0/24 54897 -38.76.69.0/24 396078 -38.76.70.0/24 174 -38.76.71.0/24 27257 -38.76.72.0/24 174 -38.76.73.0/24 26154 -38.76.74.0/23 174 -38.76.76.0/22 174 -38.76.80.0/21 174 -38.76.88.0/22 395822 -38.76.92.0/22 174 -38.76.96.0/19 26375 -38.76.128.0/23 174 -38.76.130.0/24 10298 -38.76.131.0/24 174 -38.76.132.0/22 174 -38.76.136.0/21 174 -38.76.144.0/20 174 -38.76.160.0/19 174 -38.76.192.0/18 174 -38.77.0.0/21 174 -38.77.8.0/21 40545 -38.77.16.0/20 174 -38.77.32.0/22 174 -38.77.36.0/23 174 -38.77.38.0/23 63104 -38.77.40.0/21 40545 -38.77.48.0/24 174 -38.77.49.0/24 15065 -38.77.50.0/23 63104 -38.77.52.0/22 40545 -38.77.56.0/22 40545 -38.77.60.0/22 174 -38.77.64.0/18 174 -38.77.128.0/22 174 -38.77.132.0/23 174 -38.77.134.0/24 394771 -38.77.135.0/24 174 -38.77.136.0/21 174 -38.77.144.0/24 63264 -38.77.145.0/24 174 -38.77.146.0/23 174 -38.77.148.0/23 63264 -38.77.150.0/23 174 -38.77.152.0/21 174 -38.77.160.0/19 174 -38.77.192.0/22 395719 -38.77.196.0/22 174 -38.77.200.0/22 174 -38.77.204.0/23 174 -38.77.206.0/24 23576 -38.77.207.0/24 174 -38.77.208.0/20 174 -38.77.224.0/19 174 -38.78.0.0/17 174 -38.78.128.0/22 174 -38.78.132.0/23 174 -38.78.134.0/23 4907 -38.78.136.0/21 174 -38.78.144.0/20 174 -38.78.160.0/19 174 -38.78.192.0/23 54819 -38.78.194.0/23 32890 -38.78.196.0/22 394449 -38.78.200.0/21 174 -38.78.208.0/20 393429 -38.78.224.0/19 174 -38.79.0.0/23 174 -38.79.2.0/24 174 -38.79.3.0/24 33001 -38.79.4.0/24 174 -38.79.5.0/24 30646 -38.79.6.0/23 174 -38.79.8.0/21 174 -38.79.16.0/20 174 -38.79.32.0/19 174 -38.79.64.0/21 174 -38.79.72.0/22 174 -38.79.76.0/24 4374 -38.79.77.0/24 174 -38.79.78.0/24 11068 -38.79.79.0/24 174 -38.79.80.0/20 174 -38.79.96.0/19 174 -38.79.128.0/17 174 -38.80.0.0/21 174 -38.80.8.0/22 174 -38.80.12.0/23 36326 -38.80.14.0/23 174 -38.80.16.0/20 174 -38.80.32.0/19 174 -38.80.64.0/22 174 -38.80.68.0/23 174 -38.80.70.0/24 174 -38.80.71.0/24 54081 -38.80.72.0/23 40571 -38.80.74.0/23 174 -38.80.76.0/23 174 -38.80.78.0/24 10929 -38.80.79.0/24 174 -38.80.80.0/24 174 -38.80.81.0/24 395240 -38.80.82.0/23 26413 -38.80.84.0/22 174 -38.80.88.0/21 174 -38.80.96.0/19 174 -38.80.128.0/19 174 -38.80.160.0/23 396422 -38.80.162.0/23 18771 -38.80.164.0/22 174 -38.80.168.0/21 174 -38.80.176.0/20 174 -38.80.192.0/19 174 -38.80.224.0/19 27288 -38.81.0.0/22 174 -38.81.4.0/24 8149 -38.81.5.0/24 174 -38.81.6.0/23 174 -38.81.8.0/21 174 -38.81.16.0/20 174 -38.81.32.0/19 174 -38.81.64.0/22 174 -38.81.68.0/24 19256 -38.81.69.0/24 174 -38.81.70.0/23 174 -38.81.72.0/21 174 -38.81.80.0/20 174 -38.81.96.0/24 22754 -38.81.97.0/24 174 -38.81.98.0/24 54343 -38.81.99.0/24 174 -38.81.100.0/24 174 -38.81.101.0/24 395748 -38.81.102.0/24 174 -38.81.103.0/24 33570 -38.81.104.0/22 174 -38.81.108.0/22 22742 -38.81.112.0/22 22742 -38.81.116.0/22 174 -38.81.120.0/21 174 -38.81.128.0/23 174 -38.81.130.0/23 14144 -38.81.132.0/22 174 -38.81.136.0/21 174 -38.81.144.0/20 394717 -38.81.160.0/19 174 -38.81.192.0/23 174 -38.81.194.0/23 33597 -38.81.196.0/23 174 -38.81.198.0/24 36249 -38.81.199.0/24 174 -38.81.200.0/21 174 -38.81.208.0/20 174 -38.81.224.0/19 174 -38.82.0.0/17 174 -38.82.128.0/18 174 -38.82.192.0/23 174 -38.82.194.0/24 17895 -38.82.195.0/24 33313 -38.82.196.0/22 174 -38.82.200.0/22 33313 -38.82.204.0/23 23356 -38.82.206.0/23 174 -38.82.208.0/21 174 -38.82.216.0/22 174 -38.82.220.0/24 174 -38.82.221.0/24 63430 -38.82.222.0/23 174 -38.82.224.0/19 174 -38.83.0.0/21 174 -38.83.8.0/22 174 -38.83.12.0/22 393684 -38.83.16.0/20 174 -38.83.32.0/19 174 -38.83.64.0/21 174 -38.83.72.0/24 174 -38.83.73.0/24 52438 -38.83.74.0/23 174 -38.83.76.0/22 174 -38.83.80.0/21 40784 -38.83.88.0/21 174 -38.83.96.0/22 174 -38.83.100.0/23 174 -38.83.102.0/23 63199 -38.83.104.0/21 63199 -38.83.112.0/20 174 -38.83.128.0/22 17216 -38.83.132.0/22 174 -38.83.136.0/24 174 -38.83.137.0/24 6231 -38.83.138.0/24 394829 -38.83.139.0/24 174 -38.83.140.0/23 174 -38.83.142.0/24 174 -38.83.143.0/24 394844 -38.83.144.0/20 7250 -38.83.160.0/19 174 -38.83.192.0/18 174 -38.84.0.0/19 174 -38.84.32.0/23 174 -38.84.34.0/24 174 -38.84.35.0/24 32382 -38.84.36.0/24 19984 -38.84.37.0/24 174 -38.84.38.0/24 174 -38.84.39.0/24 46700 -38.84.40.0/23 15001 -38.84.42.0/24 40614 -38.84.43.0/24 394108 -38.84.44.0/23 174 -38.84.46.0/24 174 -38.84.47.0/24 8097 -38.84.48.0/22 174 -38.84.52.0/24 394984 -38.84.53.0/24 174 -38.84.54.0/23 174 -38.84.56.0/22 174 -38.84.60.0/24 174 -38.84.61.0/24 396916 -38.84.62.0/23 396041 -38.84.64.0/23 174 -38.84.66.0/24 174 -38.84.67.0/24 394837 -38.84.68.0/22 174 -38.84.72.0/24 174 -38.84.73.0/24 5108 -38.84.74.0/23 174 -38.84.76.0/22 174 -38.84.80.0/20 174 -38.84.96.0/19 174 -38.84.128.0/21 174 -38.84.136.0/22 174 -38.84.140.0/23 174 -38.84.142.0/24 19098 -38.84.143.0/24 174 -38.84.144.0/21 54744 -38.84.152.0/21 174 -38.84.160.0/24 30967 -38.84.161.0/24 174 -38.84.162.0/23 174 -38.84.164.0/22 174 -38.84.168.0/21 174 -38.84.176.0/20 174 -38.84.192.0/23 174 -38.84.194.0/24 174 -38.84.195.0/24 33137 -38.84.196.0/22 174 -38.84.200.0/21 174 -38.84.208.0/20 174 -38.84.224.0/19 174 -38.85.0.0/16 174 -38.86.0.0/19 174 -38.86.32.0/23 174 -38.86.34.0/24 174 -38.86.35.0/24 397700 -38.86.36.0/22 174 -38.86.40.0/21 174 -38.86.48.0/20 174 -38.86.64.0/22 394356 -38.86.68.0/24 394356 -38.86.69.0/24 174 -38.86.70.0/23 393950 -38.86.72.0/23 174 -38.86.74.0/23 25920 -38.86.76.0/24 40604 -38.86.77.0/24 33086 -38.86.78.0/23 394356 -38.86.80.0/21 11550 -38.86.88.0/22 174 -38.86.92.0/22 11550 -38.86.96.0/19 174 -38.86.128.0/22 174 -38.86.132.0/24 23103 -38.86.133.0/24 174 -38.86.134.0/23 174 -38.86.136.0/22 18779 -38.86.140.0/22 174 -38.86.144.0/20 174 -38.86.160.0/24 27593 -38.86.161.0/24 174 -38.86.162.0/23 174 -38.86.164.0/22 174 -38.86.168.0/23 174 -38.86.170.0/24 32646 -38.86.171.0/24 174 -38.86.172.0/24 62672 -38.86.173.0/24 174 -38.86.174.0/24 27630 -38.86.175.0/24 174 -38.86.176.0/22 174 -38.86.180.0/24 174 -38.86.181.0/24 63351 -38.86.182.0/24 394458 -38.86.183.0/24 174 -38.86.184.0/22 26769 -38.86.188.0/23 26769 -38.86.190.0/23 174 -38.86.192.0/18 174 -38.87.0.0/19 174 -38.87.32.0/24 174 -38.87.33.0/24 396368 -38.87.34.0/23 174 -38.87.36.0/23 7336 -38.87.38.0/23 174 -38.87.40.0/23 395045 -38.87.42.0/24 174 -38.87.43.0/24 393871 -38.87.44.0/24 397536 -38.87.45.0/24 174 -38.87.46.0/23 55081 -38.87.48.0/24 174 -38.87.49.0/24 14877 -38.87.50.0/24 14877 -38.87.51.0/24 174 -38.87.52.0/24 26873 -38.87.53.0/24 174 -38.87.54.0/23 174 -38.87.56.0/21 174 -38.87.64.0/22 54098 -38.87.68.0/24 54103 -38.87.69.0/24 54098 -38.87.70.0/23 54098 -38.87.72.0/24 54103 -38.87.73.0/24 54098 -38.87.74.0/24 54098 -38.87.75.0/24 54103 -38.87.76.0/24 54098 -38.87.77.0/24 54103 -38.87.78.0/24 54098 -38.87.79.0/24 54103 -38.87.80.0/24 26653 -38.87.81.0/24 174 -38.87.82.0/24 174 -38.87.83.0/24 26508 -38.87.84.0/24 15249 -38.87.85.0/24 174 -38.87.86.0/23 174 -38.87.88.0/21 174 -38.87.96.0/21 14971 -38.87.104.0/21 174 -38.87.112.0/20 174 -38.87.128.0/20 174 -38.87.144.0/22 395111 -38.87.148.0/22 63018 -38.87.152.0/22 395800 -38.87.156.0/22 395111 -38.87.160.0/19 174 -38.87.192.0/22 63351 -38.87.196.0/22 266809 -38.87.200.0/21 174 -38.87.208.0/21 28007 -38.87.216.0/22 28007 -38.87.220.0/22 174 -38.87.224.0/23 25730 -38.87.226.0/23 395088 -38.87.228.0/22 174 -38.87.232.0/22 21559 -38.87.236.0/24 36435 -38.87.237.0/24 21559 -38.87.238.0/23 21559 -38.87.240.0/22 36640 -38.87.244.0/24 36640 -38.87.245.0/24 262184 -38.87.246.0/24 262184 -38.87.247.0/24 174 -38.87.248.0/22 266811 -38.87.252.0/23 28007 -38.87.254.0/23 174 -38.88.0.0/20 174 -38.88.16.0/24 174 -38.88.17.0/24 30201 -38.88.18.0/23 174 -38.88.20.0/22 174 -38.88.24.0/21 174 -38.88.32.0/19 174 -38.88.64.0/21 174 -38.88.72.0/22 174 -38.88.76.0/23 174 -38.88.78.0/23 14027 -38.88.80.0/22 174 -38.88.84.0/24 174 -38.88.85.0/24 393544 -38.88.86.0/23 174 -38.88.88.0/21 174 -38.88.96.0/20 395570 -38.88.112.0/21 174 -38.88.120.0/23 174 -38.88.122.0/23 54133 -38.88.124.0/23 54133 -38.88.126.0/24 174 -38.88.127.0/24 54133 -38.88.128.0/17 174 -38.89.0.0/18 174 -38.89.64.0/19 174 -38.89.96.0/23 174 -38.89.98.0/24 174 -38.89.99.0/24 30394 -38.89.100.0/23 46294 -38.89.102.0/23 174 -38.89.104.0/21 174 -38.89.112.0/20 174 -38.89.128.0/23 174 -38.89.130.0/24 54739 -38.89.131.0/24 174 -38.89.132.0/22 174 -38.89.136.0/21 174 -38.89.144.0/22 174 -38.89.148.0/22 29852 -38.89.152.0/21 174 -38.89.160.0/24 174 -38.89.161.0/24 46945 -38.89.162.0/23 174 -38.89.164.0/24 25837 -38.89.165.0/24 174 -38.89.166.0/23 174 -38.89.168.0/21 174 -38.89.176.0/20 174 -38.89.192.0/19 174 -38.89.224.0/23 174 -38.89.226.0/24 174 -38.89.227.0/24 63432 -38.89.228.0/23 36498 -38.89.230.0/23 174 -38.89.232.0/22 174 -38.89.236.0/23 174 -38.89.238.0/23 26135 -38.89.240.0/22 174 -38.89.244.0/24 1420 -38.89.245.0/24 62523 -38.89.246.0/23 62523 -38.89.248.0/24 18807 -38.89.249.0/24 174 -38.89.250.0/24 394205 -38.89.251.0/24 174 -38.89.252.0/22 174 -38.90.0.0/18 174 -38.90.64.0/19 174 -38.90.96.0/24 36131 -38.90.97.0/24 174 -38.90.98.0/23 174 -38.90.100.0/22 174 -38.90.104.0/21 174 -38.90.112.0/20 174 -38.90.128.0/21 174 -38.90.136.0/24 174 -38.90.137.0/24 55284 -38.90.138.0/23 174 -38.90.140.0/23 174 -38.90.142.0/24 53893 -38.90.143.0/24 174 -38.90.144.0/24 23078 -38.90.145.0/24 174 -38.90.146.0/23 174 -38.90.148.0/22 174 -38.90.152.0/24 174 -38.90.153.0/24 393664 -38.90.154.0/24 174 -38.90.155.0/24 22362 -38.90.156.0/23 174 -38.90.158.0/24 174 -38.90.159.0/24 60793 -38.90.160.0/19 174 -38.90.192.0/19 174 -38.90.224.0/23 174 -38.90.226.0/23 50881 -38.90.228.0/22 174 -38.90.232.0/21 174 -38.90.240.0/20 174 -38.91.0.0/18 174 -38.91.64.0/19 174 -38.91.96.0/22 38880 -38.91.100.0/23 63023 -38.91.102.0/24 63023 -38.91.103.0/24 174 -38.91.104.0/23 174 -38.91.106.0/23 63023 -38.91.108.0/22 30212 -38.91.112.0/21 397548 -38.91.120.0/21 33313 -38.91.128.0/17 174 -38.92.0.0/18 174 -38.92.64.0/21 30174 -38.92.72.0/21 26909 -38.92.80.0/20 174 -38.92.96.0/23 174 -38.92.98.0/24 174 -38.92.99.0/24 27775 -38.92.100.0/22 174 -38.92.104.0/24 396149 -38.92.105.0/24 395916 -38.92.106.0/23 174 -38.92.108.0/22 174 -38.92.112.0/22 174 -38.92.116.0/22 27759 -38.92.120.0/21 11594 -38.92.128.0/22 47096 -38.92.132.0/24 27029 -38.92.133.0/24 26446 -38.92.134.0/23 174 -38.92.136.0/24 62715 -38.92.137.0/24 18778 -38.92.138.0/24 174 -38.92.139.0/24 396449 -38.92.140.0/24 174 -38.92.141.0/24 11959 -38.92.142.0/24 174 -38.92.143.0/24 6924 -38.92.144.0/24 17355 -38.92.145.0/24 174 -38.92.146.0/23 174 -38.92.148.0/23 174 -38.92.150.0/23 396939 -38.92.152.0/21 15011 -38.92.160.0/19 174 -38.92.192.0/18 174 -38.93.0.0/17 174 -38.93.128.0/22 174 -38.93.132.0/22 46281 -38.93.136.0/24 19367 -38.93.137.0/24 33089 -38.93.138.0/24 174 -38.93.139.0/24 395392 -38.93.140.0/24 174 -38.93.141.0/24 20940 -38.93.142.0/23 174 -38.93.144.0/21 46281 -38.93.152.0/21 174 -38.93.160.0/20 174 -38.93.176.0/21 174 -38.93.184.0/21 26725 -38.93.192.0/19 174 -38.93.224.0/21 174 -38.93.232.0/22 174 -38.93.236.0/23 174 -38.93.238.0/24 34309 -38.93.239.0/24 174 -38.93.240.0/21 174 -38.93.248.0/22 27759 -38.93.252.0/23 27759 -38.93.254.0/24 27593 -38.93.255.0/24 174 -38.94.0.0/17 174 -38.94.128.0/22 174 -38.94.132.0/24 174 -38.94.133.0/24 23330 -38.94.134.0/23 174 -38.94.136.0/23 174 -38.94.138.0/24 174 -38.94.139.0/24 55080 -38.94.140.0/23 62820 -38.94.142.0/23 174 -38.94.144.0/22 63219 -38.94.148.0/23 174 -38.94.150.0/24 174 -38.94.151.0/24 40853 -38.94.152.0/21 174 -38.94.160.0/24 40118 -38.94.161.0/24 63070 -38.94.162.0/24 25630 -38.94.163.0/24 32534 -38.94.164.0/24 174 -38.94.165.0/24 27335 -38.94.166.0/24 174 -38.94.167.0/24 393642 -38.94.168.0/24 174 -38.94.169.0/24 30654 -38.94.170.0/23 174 -38.94.172.0/24 6434 -38.94.173.0/24 393800 -38.94.174.0/23 174 -38.94.176.0/20 174 -38.94.192.0/23 396238 -38.94.194.0/23 174 -38.94.196.0/22 174 -38.94.200.0/22 396238 -38.94.204.0/23 395085 -38.94.206.0/24 14525 -38.94.207.0/24 174 -38.94.208.0/20 174 -38.94.224.0/19 174 -38.95.0.0/23 174 -38.95.2.0/24 394844 -38.95.3.0/24 174 -38.95.4.0/22 174 -38.95.8.0/21 174 -38.95.16.0/20 174 -38.95.32.0/23 174 -38.95.34.0/24 395111 -38.95.35.0/24 174 -38.95.36.0/24 174 -38.95.37.0/24 394295 -38.95.38.0/23 174 -38.95.40.0/21 174 -38.95.48.0/20 174 -38.95.64.0/24 395907 -38.95.65.0/24 174 -38.95.66.0/23 174 -38.95.68.0/22 174 -38.95.72.0/21 174 -38.95.80.0/20 174 -38.95.96.0/21 174 -38.95.104.0/23 19730 -38.95.106.0/23 174 -38.95.108.0/22 9009 -38.95.112.0/20 174 -38.95.128.0/19 174 -38.95.160.0/23 174 -38.95.162.0/24 55116 -38.95.163.0/24 395495 -38.95.164.0/23 174 -38.95.166.0/24 32001 -38.95.167.0/24 174 -38.95.168.0/21 174 -38.95.176.0/23 174 -38.95.178.0/24 395800 -38.95.179.0/24 174 -38.95.180.0/22 174 -38.95.184.0/21 174 -38.95.192.0/23 174 -38.95.194.0/24 62923 -38.95.195.0/24 174 -38.95.196.0/22 174 -38.95.200.0/22 62923 -38.95.204.0/23 174 -38.95.206.0/24 174 -38.95.207.0/24 32326 -38.95.208.0/23 397911 -38.95.210.0/23 174 -38.95.212.0/22 174 -38.95.216.0/22 397048 -38.95.220.0/22 174 -38.95.224.0/24 16986 -38.95.225.0/24 174 -38.95.226.0/24 395730 -38.95.227.0/24 174 -38.95.228.0/24 174 -38.95.229.0/24 25786 -38.95.230.0/24 394869 -38.95.231.0/24 63430 -38.95.232.0/23 174 -38.95.234.0/24 394342 -38.95.235.0/24 174 -38.95.236.0/22 174 -38.95.240.0/20 3685 -38.96.0.0/21 174 -38.96.8.0/22 174 -38.96.12.0/24 26782 -38.96.13.0/24 174 -38.96.14.0/24 21581 -38.96.15.0/24 174 -38.96.16.0/20 174 -38.96.32.0/19 174 -38.96.64.0/18 174 -38.96.128.0/23 174 -38.96.130.0/24 174 -38.96.131.0/24 13383 -38.96.132.0/22 174 -38.96.136.0/22 174 -38.96.140.0/23 174 -38.96.142.0/24 174 -38.96.143.0/24 53593 -38.96.144.0/22 174 -38.96.148.0/24 19624 -38.96.149.0/24 174 -38.96.150.0/23 174 -38.96.152.0/24 54739 -38.96.153.0/24 174 -38.96.154.0/23 174 -38.96.156.0/22 174 -38.96.160.0/24 174 -38.96.161.0/24 394156 -38.96.162.0/24 36484 -38.96.163.0/24 174 -38.96.164.0/22 174 -38.96.168.0/23 174 -38.96.170.0/24 46548 -38.96.171.0/24 174 -38.96.172.0/23 174 -38.96.174.0/24 174 -38.96.175.0/24 19624 -38.96.176.0/24 174 -38.96.177.0/24 40303 -38.96.178.0/23 174 -38.96.180.0/24 394442 -38.96.181.0/24 174 -38.96.182.0/24 174 -38.96.183.0/24 53382 -38.96.184.0/24 40296 -38.96.185.0/24 174 -38.96.186.0/23 174 -38.96.188.0/22 174 -38.96.192.0/23 174 -38.96.194.0/24 174 -38.96.195.0/24 18689 -38.96.196.0/22 174 -38.96.200.0/21 174 -38.96.208.0/24 36307 -38.96.209.0/24 174 -38.96.210.0/23 174 -38.96.212.0/24 13693 -38.96.213.0/24 174 -38.96.214.0/23 174 -38.96.216.0/23 174 -38.96.218.0/24 396085 -38.96.219.0/24 174 -38.96.220.0/23 174 -38.96.222.0/24 53845 -38.96.223.0/24 174 -38.96.224.0/21 395948 -38.96.232.0/21 174 -38.96.240.0/22 174 -38.96.244.0/24 11888 -38.96.245.0/24 174 -38.96.246.0/24 174 -38.96.247.0/24 394737 -38.96.248.0/21 174 -38.97.0.0/24 174 -38.97.1.0/24 394844 -38.97.2.0/23 174 -38.97.4.0/22 174 -38.97.8.0/21 174 -38.97.16.0/24 32863 -38.97.17.0/24 174 -38.97.18.0/23 174 -38.97.20.0/22 174 -38.97.24.0/21 174 -38.97.32.0/19 174 -38.97.64.0/22 174 -38.97.68.0/23 174 -38.97.70.0/24 174 -38.97.71.0/24 22421 -38.97.72.0/24 174 -38.97.73.0/24 14761 -38.97.74.0/23 174 -38.97.76.0/22 174 -38.97.80.0/21 174 -38.97.88.0/23 36271 -38.97.90.0/24 174 -38.97.91.0/24 29786 -38.97.92.0/23 174 -38.97.94.0/24 174 -38.97.95.0/24 18684 -38.97.96.0/24 174 -38.97.97.0/24 23406 -38.97.98.0/23 174 -38.97.100.0/24 174 -38.97.101.0/24 19359 -38.97.102.0/23 174 -38.97.104.0/24 174 -38.97.105.0/24 19543 -38.97.106.0/24 174 -38.97.107.0/24 35973 -38.97.108.0/23 174 -38.97.110.0/24 174 -38.97.111.0/24 29746 -38.97.112.0/22 174 -38.97.116.0/24 396527 -38.97.117.0/24 174 -38.97.118.0/23 174 -38.97.120.0/23 30140 -38.97.122.0/23 174 -38.97.124.0/23 174 -38.97.126.0/24 46625 -38.97.127.0/24 22421 -38.97.128.0/18 174 -38.97.192.0/22 174 -38.97.196.0/24 174 -38.97.197.0/24 46847 -38.97.198.0/23 62695 -38.97.200.0/23 174 -38.97.202.0/24 174 -38.97.203.0/24 11291 -38.97.204.0/22 53454 -38.97.208.0/21 174 -38.97.216.0/21 54744 -38.97.224.0/21 174 -38.97.232.0/22 174 -38.97.236.0/24 397571 -38.97.237.0/24 174 -38.97.238.0/23 174 -38.97.240.0/20 174 -38.98.0.0/24 174 -38.98.1.0/24 40511 -38.98.2.0/23 174 -38.98.4.0/22 174 -38.98.8.0/23 174 -38.98.10.0/23 40511 -38.98.12.0/24 174 -38.98.13.0/24 30471 -38.98.14.0/24 53533 -38.98.15.0/24 174 -38.98.16.0/23 54183 -38.98.18.0/23 174 -38.98.20.0/22 174 -38.98.24.0/21 35960 -38.98.32.0/23 174 -38.98.34.0/23 35916 -38.98.36.0/24 40511 -38.98.37.0/24 174 -38.98.38.0/24 40511 -38.98.39.0/24 174 -38.98.40.0/23 174 -38.98.42.0/24 22687 -38.98.43.0/24 174 -38.98.44.0/22 174 -38.98.48.0/22 174 -38.98.52.0/24 174 -38.98.53.0/24 1286 -38.98.54.0/23 174 -38.98.56.0/22 174 -38.98.60.0/23 174 -38.98.62.0/24 54270 -38.98.63.0/24 174 -38.98.64.0/23 174 -38.98.66.0/24 19426 -38.98.67.0/24 174 -38.98.68.0/22 174 -38.98.72.0/22 174 -38.98.76.0/24 20079 -38.98.77.0/24 26740 -38.98.78.0/24 17357 -38.98.79.0/24 19596 -38.98.80.0/22 174 -38.98.84.0/24 15050 -38.98.85.0/24 174 -38.98.86.0/24 174 -38.98.87.0/24 33732 -38.98.88.0/22 174 -38.98.92.0/24 397067 -38.98.93.0/24 396405 -38.98.94.0/24 55080 -38.98.95.0/24 8029 -38.98.96.0/23 174 -38.98.98.0/24 174 -38.98.99.0/24 27457 -38.98.100.0/24 18543 -38.98.101.0/24 46390 -38.98.102.0/24 174 -38.98.103.0/24 22754 -38.98.104.0/23 174 -38.98.106.0/24 39957 -38.98.107.0/24 174 -38.98.108.0/24 174 -38.98.109.0/24 18698 -38.98.110.0/23 174 -38.98.112.0/24 174 -38.98.113.0/24 394178 -38.98.114.0/23 174 -38.98.116.0/24 395673 -38.98.117.0/24 174 -38.98.118.0/23 174 -38.98.120.0/23 174 -38.98.122.0/24 53415 -38.98.123.0/24 174 -38.98.124.0/22 174 -38.98.128.0/24 174 -38.98.129.0/24 36661 -38.98.130.0/23 174 -38.98.132.0/24 174 -38.98.133.0/24 40937 -38.98.134.0/23 40937 -38.98.136.0/24 174 -38.98.137.0/24 36539 -38.98.138.0/23 174 -38.98.140.0/24 174 -38.98.141.0/24 36498 -38.98.142.0/24 174 -38.98.143.0/24 46534 -38.98.144.0/24 174 -38.98.145.0/24 27245 -38.98.146.0/23 174 -38.98.148.0/22 174 -38.98.152.0/24 174 -38.98.153.0/24 33540 -38.98.154.0/23 174 -38.98.156.0/23 36498 -38.98.158.0/23 40676 -38.98.160.0/24 27447 -38.98.161.0/24 174 -38.98.162.0/23 174 -38.98.164.0/22 174 -38.98.168.0/22 174 -38.98.172.0/23 174 -38.98.174.0/24 40926 -38.98.175.0/24 174 -38.98.176.0/22 174 -38.98.180.0/23 174 -38.98.182.0/24 54008 -38.98.183.0/24 174 -38.98.184.0/24 32446 -38.98.185.0/24 7415 -38.98.186.0/24 174 -38.98.187.0/24 55152 -38.98.188.0/22 174 -38.98.192.0/22 174 -38.98.196.0/23 174 -38.98.198.0/23 22722 -38.98.200.0/22 174 -38.98.204.0/24 393600 -38.98.205.0/24 174 -38.98.206.0/23 33480 -38.98.208.0/21 174 -38.98.216.0/22 174 -38.98.220.0/24 32213 -38.98.221.0/24 174 -38.98.222.0/24 174 -38.98.223.0/24 53577 -38.98.224.0/24 53579 -38.98.225.0/24 174 -38.98.226.0/23 174 -38.98.228.0/24 23515 -38.98.229.0/24 174 -38.98.230.0/24 53381 -38.98.231.0/24 174 -38.98.232.0/24 174 -38.98.233.0/24 393500 -38.98.234.0/23 174 -38.98.236.0/23 174 -38.98.238.0/24 20053 -38.98.239.0/24 174 -38.98.240.0/23 174 -38.98.242.0/24 22554 -38.98.243.0/24 174 -38.98.244.0/22 174 -38.98.248.0/24 174 -38.98.249.0/24 26726 -38.98.250.0/23 174 -38.98.252.0/24 40167 -38.98.253.0/24 174 -38.98.254.0/23 174 -38.99.0.0/24 174 -38.99.1.0/24 394975 -38.99.2.0/23 174 -38.99.4.0/22 174 -38.99.8.0/21 174 -38.99.16.0/24 174 -38.99.17.0/24 53268 -38.99.18.0/24 174 -38.99.19.0/24 55075 -38.99.20.0/24 174 -38.99.21.0/24 22389 -38.99.22.0/24 30140 -38.99.23.0/24 54717 -38.99.24.0/21 174 -38.99.32.0/21 174 -38.99.40.0/23 174 -38.99.42.0/24 174 -38.99.43.0/24 32355 -38.99.44.0/22 174 -38.99.48.0/24 32452 -38.99.49.0/24 174 -38.99.50.0/23 174 -38.99.52.0/22 174 -38.99.56.0/24 174 -38.99.57.0/24 394844 -38.99.58.0/23 174 -38.99.60.0/22 174 -38.99.64.0/24 174 -38.99.65.0/24 395907 -38.99.66.0/24 14528 -38.99.67.0/24 174 -38.99.68.0/23 174 -38.99.70.0/24 174 -38.99.71.0/24 36776 -38.99.72.0/24 394796 -38.99.73.0/24 174 -38.99.74.0/24 174 -38.99.75.0/24 394993 -38.99.76.0/22 36323 -38.99.80.0/23 174 -38.99.82.0/24 174 -38.99.83.0/24 54185 -38.99.84.0/22 174 -38.99.88.0/22 174 -38.99.92.0/24 393814 -38.99.93.0/24 174 -38.99.94.0/23 174 -38.99.96.0/24 395362 -38.99.97.0/24 174 -38.99.98.0/23 174 -38.99.100.0/22 174 -38.99.104.0/22 174 -38.99.108.0/24 395748 -38.99.109.0/24 174 -38.99.110.0/24 26455 -38.99.111.0/24 394213 -38.99.112.0/23 174 -38.99.114.0/24 174 -38.99.115.0/24 17378 -38.99.116.0/22 174 -38.99.120.0/22 174 -38.99.124.0/24 174 -38.99.125.0/24 393229 -38.99.126.0/23 174 -38.99.128.0/21 174 -38.99.136.0/23 174 -38.99.138.0/24 174 -38.99.139.0/24 12212 -38.99.140.0/22 174 -38.99.144.0/23 174 -38.99.146.0/24 30507 -38.99.147.0/24 36615 -38.99.148.0/22 174 -38.99.152.0/22 174 -38.99.156.0/24 31015 -38.99.157.0/24 174 -38.99.158.0/23 174 -38.99.160.0/21 174 -38.99.168.0/24 12212 -38.99.169.0/24 174 -38.99.170.0/23 174 -38.99.172.0/22 174 -38.99.176.0/23 174 -38.99.178.0/24 44654 -38.99.179.0/24 174 -38.99.180.0/22 174 -38.99.184.0/22 174 -38.99.188.0/24 12212 -38.99.189.0/24 174 -38.99.190.0/23 174 -38.99.192.0/19 174 -38.99.224.0/22 174 -38.99.228.0/23 174 -38.99.230.0/24 174 -38.99.231.0/24 46447 -38.99.232.0/22 174 -38.99.236.0/23 174 -38.99.238.0/23 25730 -38.99.240.0/22 174 -38.99.244.0/24 174 -38.99.245.0/24 395507 -38.99.246.0/24 174 -38.99.247.0/24 63023 -38.99.248.0/24 40353 -38.99.249.0/24 174 -38.99.250.0/24 1286 -38.99.251.0/24 174 -38.99.252.0/22 174 -38.100.0.0/22 174 -38.100.4.0/24 174 -38.100.5.0/24 29971 -38.100.6.0/23 174 -38.100.8.0/24 174 -38.100.9.0/24 27447 -38.100.10.0/23 174 -38.100.12.0/22 174 -38.100.16.0/23 174 -38.100.18.0/24 19316 -38.100.19.0/24 174 -38.100.20.0/24 174 -38.100.21.0/24 396989 -38.100.22.0/24 174 -38.100.23.0/24 395941 -38.100.24.0/21 174 -38.100.32.0/24 174 -38.100.33.0/24 30112 -38.100.34.0/23 174 -38.100.36.0/24 174 -38.100.37.0/24 63142 -38.100.38.0/23 174 -38.100.40.0/21 174 -38.100.48.0/24 63261 -38.100.49.0/24 174 -38.100.50.0/23 174 -38.100.52.0/22 174 -38.100.56.0/22 6405 -38.100.60.0/24 174 -38.100.61.0/24 32565 -38.100.62.0/23 174 -38.100.64.0/20 174 -38.100.80.0/23 174 -38.100.82.0/24 174 -38.100.83.0/24 1828 -38.100.84.0/22 174 -38.100.88.0/21 174 -38.100.96.0/21 174 -38.100.104.0/23 174 -38.100.106.0/24 174 -38.100.107.0/24 397012 -38.100.108.0/23 174 -38.100.110.0/24 18590 -38.100.111.0/24 174 -38.100.112.0/22 174 -38.100.116.0/23 174 -38.100.118.0/23 25697 -38.100.120.0/21 174 -38.100.128.0/23 174 -38.100.130.0/24 174 -38.100.131.0/24 54480 -38.100.132.0/22 174 -38.100.136.0/24 174 -38.100.137.0/24 1996 -38.100.138.0/24 174 -38.100.139.0/24 23003 -38.100.140.0/22 174 -38.100.144.0/24 174 -38.100.145.0/24 32936 -38.100.146.0/23 174 -38.100.148.0/22 174 -38.100.152.0/23 174 -38.100.154.0/24 394459 -38.100.155.0/24 174 -38.100.156.0/22 174 -38.100.160.0/21 174 -38.100.168.0/23 174 -38.100.170.0/24 174 -38.100.171.0/24 26089 -38.100.172.0/22 174 -38.100.176.0/23 174 -38.100.178.0/24 397655 -38.100.179.0/24 174 -38.100.180.0/22 174 -38.100.184.0/22 174 -38.100.188.0/23 174 -38.100.190.0/23 11597 -38.100.192.0/24 174 -38.100.193.0/24 33724 -38.100.194.0/23 33724 -38.100.196.0/24 174 -38.100.197.0/24 33724 -38.100.198.0/23 174 -38.100.200.0/21 174 -38.100.208.0/21 174 -38.100.216.0/22 54594 -38.100.220.0/22 174 -38.100.224.0/22 174 -38.100.228.0/23 23033 -38.100.230.0/23 174 -38.100.232.0/21 174 -38.100.240.0/21 174 -38.100.248.0/23 174 -38.100.250.0/24 55140 -38.100.251.0/24 174 -38.100.252.0/22 174 -38.101.0.0/21 174 -38.101.8.0/22 174 -38.101.12.0/23 174 -38.101.14.0/24 174 -38.101.15.0/24 32650 -38.101.16.0/24 174 -38.101.17.0/24 15092 -38.101.18.0/23 174 -38.101.20.0/24 26778 -38.101.21.0/24 174 -38.101.22.0/23 174 -38.101.24.0/21 174 -38.101.32.0/24 174 -38.101.33.0/24 18771 -38.101.34.0/24 54143 -38.101.35.0/24 174 -38.101.36.0/22 174 -38.101.40.0/24 17388 -38.101.41.0/24 174 -38.101.42.0/23 174 -38.101.44.0/22 174 -38.101.48.0/21 174 -38.101.56.0/22 174 -38.101.60.0/22 29787 -38.101.64.0/23 174 -38.101.66.0/23 29787 -38.101.68.0/24 174 -38.101.69.0/24 12243 -38.101.70.0/23 174 -38.101.72.0/22 174 -38.101.76.0/23 174 -38.101.78.0/24 174 -38.101.79.0/24 36246 -38.101.80.0/22 46746 -38.101.84.0/24 174 -38.101.85.0/24 396051 -38.101.86.0/23 174 -38.101.88.0/22 174 -38.101.92.0/24 174 -38.101.93.0/24 25952 -38.101.94.0/24 33100 -38.101.95.0/24 174 -38.101.96.0/24 396186 -38.101.97.0/24 174 -38.101.98.0/23 174 -38.101.100.0/24 174 -38.101.101.0/24 36340 -38.101.102.0/23 174 -38.101.104.0/24 174 -38.101.105.0/24 13350 -38.101.106.0/23 174 -38.101.108.0/22 174 -38.101.112.0/22 174 -38.101.116.0/24 397548 -38.101.117.0/24 174 -38.101.118.0/23 174 -38.101.120.0/21 174 -38.101.128.0/21 174 -38.101.136.0/23 174 -38.101.138.0/23 395748 -38.101.140.0/22 174 -38.101.144.0/24 174 -38.101.145.0/24 26782 -38.101.146.0/23 174 -38.101.148.0/23 174 -38.101.150.0/24 64208 -38.101.151.0/24 174 -38.101.152.0/24 174 -38.101.153.0/24 5022 -38.101.154.0/23 174 -38.101.156.0/23 17145 -38.101.158.0/24 174 -38.101.159.0/24 12100 -38.101.160.0/22 174 -38.101.164.0/24 174 -38.101.165.0/24 13923 -38.101.166.0/23 174 -38.101.168.0/21 174 -38.101.176.0/23 174 -38.101.178.0/24 174 -38.101.179.0/24 36033 -38.101.180.0/22 174 -38.101.184.0/24 174 -38.101.185.0/24 18608 -38.101.186.0/23 174 -38.101.188.0/23 174 -38.101.190.0/24 54173 -38.101.191.0/24 174 -38.101.192.0/22 174 -38.101.196.0/24 174 -38.101.197.0/24 13985 -38.101.198.0/24 26420 -38.101.199.0/24 174 -38.101.200.0/21 174 -38.101.208.0/22 174 -38.101.212.0/23 174 -38.101.214.0/24 174 -38.101.215.0/24 26646 -38.101.216.0/24 174 -38.101.217.0/24 7219 -38.101.218.0/23 174 -38.101.220.0/22 174 -38.101.224.0/21 174 -38.101.232.0/24 174 -38.101.233.0/24 26646 -38.101.234.0/23 174 -38.101.236.0/24 16560 -38.101.237.0/24 174 -38.101.238.0/24 32938 -38.101.239.0/24 174 -38.101.240.0/20 174 -38.102.0.0/20 174 -38.102.16.0/22 174 -38.102.20.0/23 14277 -38.102.22.0/23 174 -38.102.24.0/22 174 -38.102.28.0/22 397125 -38.102.32.0/23 174 -38.102.34.0/24 32452 -38.102.35.0/24 25677 -38.102.36.0/24 174 -38.102.37.0/24 30555 -38.102.38.0/23 174 -38.102.40.0/21 174 -38.102.48.0/22 174 -38.102.52.0/23 174 -38.102.54.0/24 33215 -38.102.55.0/24 174 -38.102.56.0/22 174 -38.102.60.0/23 174 -38.102.62.0/24 22187 -38.102.63.0/24 174 -38.102.64.0/24 33028 -38.102.65.0/24 174 -38.102.66.0/23 174 -38.102.68.0/24 174 -38.102.69.0/24 40470 -38.102.70.0/23 395633 -38.102.72.0/22 174 -38.102.76.0/22 55286 -38.102.80.0/23 40571 -38.102.82.0/24 174 -38.102.83.0/24 33028 -38.102.84.0/22 174 -38.102.88.0/23 26413 -38.102.90.0/24 174 -38.102.91.0/24 396856 -38.102.92.0/22 174 -38.102.96.0/20 174 -38.102.112.0/21 26932 -38.102.120.0/24 18801 -38.102.121.0/24 174 -38.102.122.0/24 18801 -38.102.123.0/24 174 -38.102.124.0/22 174 -38.102.128.0/19 174 -38.102.160.0/24 174 -38.102.161.0/24 397934 -38.102.162.0/23 174 -38.102.164.0/22 174 -38.102.168.0/21 63888 -38.102.176.0/21 174 -38.102.184.0/22 395719 -38.102.188.0/22 174 -38.102.192.0/19 174 -38.102.224.0/24 63430 -38.102.225.0/24 394869 -38.102.226.0/23 174 -38.102.228.0/24 174 -38.102.229.0/24 63294 -38.102.230.0/23 174 -38.102.232.0/22 174 -38.102.236.0/23 2730 -38.102.238.0/23 174 -38.102.240.0/24 2730 -38.102.241.0/24 54270 -38.102.242.0/24 394869 -38.102.243.0/24 174 -38.102.244.0/22 174 -38.102.248.0/23 2730 -38.102.250.0/24 22116 -38.102.251.0/24 174 -38.102.252.0/22 174 -38.103.0.0/23 40695 -38.103.2.0/24 395800 -38.103.3.0/24 40930 -38.103.4.0/22 174 -38.103.8.0/23 16409 -38.103.10.0/23 174 -38.103.12.0/23 174 -38.103.14.0/24 174 -38.103.15.0/24 14652 -38.103.16.0/22 174 -38.103.20.0/24 26483 -38.103.21.0/24 174 -38.103.22.0/24 174 -38.103.23.0/24 33577 -38.103.24.0/21 174 -38.103.32.0/24 55289 -38.103.33.0/24 174 -38.103.34.0/24 63231 -38.103.35.0/24 174 -38.103.36.0/23 174 -38.103.38.0/23 36106 -38.103.40.0/23 174 -38.103.42.0/24 21886 -38.103.43.0/24 174 -38.103.44.0/24 18608 -38.103.45.0/24 174 -38.103.46.0/23 174 -38.103.48.0/20 174 -38.103.64.0/20 174 -38.103.80.0/22 46746 -38.103.84.0/24 394844 -38.103.85.0/24 174 -38.103.86.0/23 174 -38.103.88.0/21 174 -38.103.96.0/23 174 -38.103.98.0/23 36498 -38.103.100.0/22 36498 -38.103.104.0/21 36498 -38.103.112.0/22 174 -38.103.116.0/22 36498 -38.103.120.0/21 174 -38.103.128.0/24 23033 -38.103.129.0/24 174 -38.103.130.0/23 174 -38.103.132.0/22 174 -38.103.136.0/23 174 -38.103.138.0/24 395657 -38.103.139.0/24 174 -38.103.140.0/22 174 -38.103.144.0/21 174 -38.103.152.0/22 174 -38.103.156.0/23 59873 -38.103.158.0/23 174 -38.103.160.0/24 174 -38.103.161.0/24 40065 -38.103.162.0/24 174 -38.103.163.0/24 54149 -38.103.164.0/23 174 -38.103.166.0/24 15301 -38.103.167.0/24 46841 -38.103.168.0/22 174 -38.103.172.0/22 14380 -38.103.176.0/20 174 -38.103.192.0/21 174 -38.103.200.0/21 29914 -38.103.208.0/22 174 -38.103.212.0/24 174 -38.103.213.0/24 16843 -38.103.214.0/23 174 -38.103.216.0/22 62516 -38.103.220.0/22 174 -38.103.224.0/20 174 -38.103.240.0/23 174 -38.103.242.0/24 19367 -38.103.243.0/24 174 -38.103.244.0/22 174 -38.103.248.0/21 174 -38.104.0.0/16 174 -38.105.0.0/22 174 -38.105.4.0/23 174 -38.105.6.0/24 174 -38.105.7.0/24 11457 -38.105.8.0/22 174 -38.105.12.0/23 174 -38.105.14.0/24 174 -38.105.15.0/24 44431 -38.105.16.0/23 174 -38.105.18.0/24 396123 -38.105.19.0/24 174 -38.105.20.0/22 174 -38.105.24.0/21 174 -38.105.32.0/24 18470 -38.105.33.0/24 11088 -38.105.34.0/23 174 -38.105.36.0/22 174 -38.105.40.0/21 174 -38.105.48.0/20 174 -38.105.64.0/21 174 -38.105.72.0/22 174 -38.105.76.0/24 395941 -38.105.77.0/24 174 -38.105.78.0/23 174 -38.105.80.0/20 174 -38.105.96.0/21 174 -38.105.104.0/22 174 -38.105.108.0/23 174 -38.105.110.0/24 174 -38.105.111.0/24 16642 -38.105.112.0/20 174 -38.105.128.0/23 174 -38.105.130.0/24 174 -38.105.131.0/24 23385 -38.105.132.0/24 174 -38.105.133.0/24 394491 -38.105.134.0/24 174 -38.105.135.0/24 13464 -38.105.136.0/24 12157 -38.105.137.0/24 174 -38.105.138.0/24 53331 -38.105.139.0/24 23325 -38.105.140.0/24 16407 -38.105.141.0/24 174 -38.105.142.0/24 174 -38.105.143.0/24 32396 -38.105.144.0/24 174 -38.105.145.0/24 26997 -38.105.146.0/24 174 -38.105.147.0/24 36033 -38.105.148.0/23 174 -38.105.150.0/24 46587 -38.105.151.0/24 174 -38.105.152.0/24 174 -38.105.153.0/24 54220 -38.105.154.0/23 174 -38.105.156.0/22 174 -38.105.160.0/22 174 -38.105.164.0/24 32761 -38.105.165.0/24 19427 -38.105.166.0/24 11903 -38.105.167.0/24 174 -38.105.168.0/24 174 -38.105.169.0/24 19601 -38.105.170.0/23 174 -38.105.172.0/24 40577 -38.105.173.0/24 174 -38.105.174.0/23 174 -38.105.176.0/21 174 -38.105.184.0/24 397119 -38.105.185.0/24 174 -38.105.186.0/24 174 -38.105.187.0/24 40825 -38.105.188.0/22 174 -38.105.192.0/23 174 -38.105.194.0/24 18564 -38.105.195.0/24 174 -38.105.196.0/24 174 -38.105.197.0/24 46394 -38.105.198.0/23 174 -38.105.200.0/24 14969 -38.105.201.0/24 174 -38.105.202.0/24 17028 -38.105.203.0/24 174 -38.105.204.0/22 30666 -38.105.208.0/24 174 -38.105.209.0/24 14732 -38.105.210.0/23 174 -38.105.212.0/22 174 -38.105.216.0/22 174 -38.105.220.0/24 174 -38.105.221.0/24 22478 -38.105.222.0/24 22418 -38.105.223.0/24 174 -38.105.224.0/23 174 -38.105.226.0/24 174 -38.105.227.0/24 397266 -38.105.228.0/24 174 -38.105.229.0/24 19970 -38.105.230.0/23 174 -38.105.232.0/24 394643 -38.105.233.0/24 174 -38.105.234.0/23 174 -38.105.236.0/23 174 -38.105.238.0/24 40827 -38.105.239.0/24 30593 -38.105.240.0/23 174 -38.105.242.0/24 22651 -38.105.243.0/24 174 -38.105.244.0/22 174 -38.105.248.0/24 394597 -38.105.249.0/24 174 -38.105.250.0/23 174 -38.105.252.0/22 29852 -38.106.0.0/22 174 -38.106.4.0/23 174 -38.106.6.0/24 174 -38.106.7.0/24 1286 -38.106.8.0/24 174 -38.106.9.0/24 32708 -38.106.10.0/24 174 -38.106.11.0/24 63541 -38.106.12.0/22 174 -38.106.16.0/22 174 -38.106.20.0/22 134520 -38.106.24.0/23 174 -38.106.26.0/24 174 -38.106.27.0/24 32696 -38.106.28.0/23 1286 -38.106.30.0/24 397826 -38.106.31.0/24 394837 -38.106.32.0/23 1286 -38.106.34.0/24 26558 -38.106.35.0/24 174 -38.106.36.0/22 174 -38.106.40.0/23 174 -38.106.42.0/24 174 -38.106.43.0/24 32461 -38.106.44.0/22 40511 -38.106.48.0/23 174 -38.106.50.0/24 26904 -38.106.51.0/24 174 -38.106.52.0/24 35916 -38.106.53.0/24 174 -38.106.54.0/24 54270 -38.106.55.0/24 174 -38.106.56.0/22 174 -38.106.60.0/23 174 -38.106.62.0/24 1422 -38.106.63.0/24 174 -38.106.64.0/23 174 -38.106.66.0/23 46185 -38.106.68.0/22 174 -38.106.72.0/21 174 -38.106.80.0/23 174 -38.106.82.0/24 30202 -38.106.83.0/24 174 -38.106.84.0/24 174 -38.106.85.0/24 36033 -38.106.86.0/24 174 -38.106.87.0/24 16752 -38.106.88.0/24 397508 -38.106.89.0/24 174 -38.106.90.0/24 174 -38.106.91.0/24 26208 -38.106.92.0/22 174 -38.106.96.0/21 174 -38.106.104.0/21 19955 -38.106.112.0/20 174 -38.106.128.0/21 396850 -38.106.136.0/24 16909 -38.106.137.0/24 174 -38.106.138.0/24 174 -38.106.139.0/24 26660 -38.106.140.0/23 174 -38.106.142.0/24 174 -38.106.143.0/24 33151 -38.106.144.0/23 14293 -38.106.146.0/24 174 -38.106.147.0/24 27387 -38.106.148.0/22 174 -38.106.152.0/23 174 -38.106.154.0/24 25614 -38.106.155.0/24 54103 -38.106.156.0/22 174 -38.106.160.0/22 174 -38.106.164.0/24 174 -38.106.165.0/24 32612 -38.106.166.0/23 174 -38.106.168.0/24 40584 -38.106.169.0/24 174 -38.106.170.0/24 174 -38.106.171.0/24 3561 -38.106.172.0/23 174 -38.106.174.0/24 46125 -38.106.175.0/24 14739 -38.106.176.0/24 46226 -38.106.177.0/24 174 -38.106.178.0/23 174 -38.106.180.0/22 174 -38.106.184.0/22 174 -38.106.188.0/24 174 -38.106.189.0/24 46436 -38.106.190.0/24 174 -38.106.191.0/24 46503 -38.106.192.0/21 174 -38.106.200.0/22 36498 -38.106.204.0/22 174 -38.106.208.0/20 15069 -38.106.224.0/24 174 -38.106.225.0/24 54642 -38.106.226.0/23 174 -38.106.228.0/23 14238 -38.106.230.0/23 174 -38.106.232.0/21 174 -38.106.240.0/22 36498 -38.106.244.0/22 174 -38.106.248.0/24 174 -38.106.249.0/24 36498 -38.106.250.0/23 174 -38.106.252.0/22 36498 -38.107.0.0/18 174 -38.107.64.0/24 174 -38.107.65.0/24 46952 -38.107.66.0/23 174 -38.107.68.0/23 174 -38.107.70.0/24 174 -38.107.71.0/24 36776 -38.107.72.0/22 11168 -38.107.76.0/23 11168 -38.107.78.0/23 174 -38.107.80.0/23 174 -38.107.82.0/24 53865 -38.107.83.0/24 174 -38.107.84.0/22 27229 -38.107.88.0/21 21559 -38.107.96.0/23 174 -38.107.98.0/23 36498 -38.107.100.0/22 174 -38.107.104.0/22 174 -38.107.108.0/23 174 -38.107.110.0/24 174 -38.107.111.0/24 20159 -38.107.112.0/20 174 -38.107.128.0/21 174 -38.107.136.0/24 174 -38.107.137.0/24 394229 -38.107.138.0/23 174 -38.107.140.0/24 174 -38.107.141.0/24 33028 -38.107.142.0/23 174 -38.107.144.0/24 174 -38.107.145.0/24 15347 -38.107.146.0/23 174 -38.107.148.0/24 395748 -38.107.149.0/24 33345 -38.107.150.0/24 174 -38.107.151.0/24 33345 -38.107.152.0/22 174 -38.107.156.0/22 33345 -38.107.160.0/22 33313 -38.107.164.0/22 174 -38.107.168.0/24 394869 -38.107.169.0/24 174 -38.107.170.0/24 396117 -38.107.171.0/24 394869 -38.107.172.0/23 174 -38.107.174.0/24 394869 -38.107.175.0/24 174 -38.107.176.0/24 394869 -38.107.177.0/24 174 -38.107.178.0/23 174 -38.107.180.0/23 174 -38.107.182.0/24 174 -38.107.183.0/24 394869 -38.107.184.0/23 174 -38.107.186.0/24 395743 -38.107.187.0/24 174 -38.107.188.0/22 174 -38.107.192.0/21 63182 -38.107.200.0/24 36414 -38.107.201.0/24 174 -38.107.202.0/23 174 -38.107.204.0/23 174 -38.107.206.0/24 26189 -38.107.207.0/24 174 -38.107.208.0/22 174 -38.107.212.0/24 174 -38.107.213.0/24 30018 -38.107.214.0/23 13830 -38.107.216.0/22 174 -38.107.220.0/24 174 -38.107.221.0/24 393398 -38.107.222.0/23 174 -38.107.224.0/24 174 -38.107.225.0/24 63026 -38.107.226.0/23 174 -38.107.228.0/22 13907 -38.107.232.0/21 174 -38.107.240.0/24 54418 -38.107.241.0/24 396414 -38.107.242.0/23 393398 -38.107.244.0/22 174 -38.107.248.0/23 174 -38.107.250.0/24 393398 -38.107.251.0/24 174 -38.107.252.0/24 13907 -38.107.253.0/24 174 -38.107.254.0/23 174 -38.108.0.0/22 174 -38.108.4.0/23 174 -38.108.6.0/23 62998 -38.108.8.0/24 174 -38.108.9.0/24 55075 -38.108.10.0/23 174 -38.108.12.0/23 174 -38.108.14.0/24 36671 -38.108.15.0/24 174 -38.108.16.0/23 396107 -38.108.18.0/23 174 -38.108.20.0/22 174 -38.108.24.0/24 174 -38.108.25.0/24 4546 -38.108.26.0/24 396107 -38.108.27.0/24 174 -38.108.28.0/23 174 -38.108.30.0/24 174 -38.108.31.0/24 396107 -38.108.32.0/22 262248 -38.108.36.0/22 174 -38.108.40.0/21 174 -38.108.48.0/22 174 -38.108.52.0/22 46281 -38.108.56.0/21 46281 -38.108.64.0/24 18801 -38.108.65.0/24 174 -38.108.66.0/23 174 -38.108.68.0/24 33028 -38.108.69.0/24 174 -38.108.70.0/24 32613 -38.108.71.0/24 174 -38.108.72.0/22 174 -38.108.76.0/24 53338 -38.108.77.0/24 174 -38.108.78.0/23 174 -38.108.80.0/22 174 -38.108.84.0/23 174 -38.108.86.0/24 63114 -38.108.87.0/24 63470 -38.108.88.0/22 26932 -38.108.92.0/22 174 -38.108.96.0/23 174 -38.108.98.0/24 174 -38.108.99.0/24 1422 -38.108.100.0/22 174 -38.108.104.0/22 174 -38.108.108.0/24 174 -38.108.109.0/24 26688 -38.108.110.0/23 174 -38.108.112.0/21 174 -38.108.120.0/24 22116 -38.108.121.0/24 174 -38.108.122.0/23 174 -38.108.124.0/22 174 -38.108.128.0/19 174 -38.108.160.0/20 174 -38.108.176.0/23 174 -38.108.178.0/24 54293 -38.108.179.0/24 62966 -38.108.180.0/22 174 -38.108.184.0/23 174 -38.108.186.0/24 174 -38.108.187.0/24 53559 -38.108.188.0/23 174 -38.108.190.0/24 393229 -38.108.191.0/24 174 -38.108.192.0/24 174 -38.108.193.0/24 40879 -38.108.194.0/24 46355 -38.108.195.0/24 174 -38.108.196.0/24 18564 -38.108.197.0/24 174 -38.108.198.0/23 174 -38.108.200.0/24 174 -38.108.201.0/24 46397 -38.108.202.0/23 174 -38.108.204.0/22 174 -38.108.208.0/21 174 -38.108.216.0/23 174 -38.108.218.0/24 46667 -38.108.219.0/24 174 -38.108.220.0/23 174 -38.108.222.0/24 174 -38.108.223.0/24 46993 -38.108.224.0/23 174 -38.108.226.0/24 1622 -38.108.227.0/24 174 -38.108.228.0/24 174 -38.108.229.0/24 25788 -38.108.230.0/23 174 -38.108.232.0/24 174 -38.108.233.0/24 18698 -38.108.234.0/23 174 -38.108.236.0/23 174 -38.108.238.0/24 6244 -38.108.239.0/24 30050 -38.108.240.0/23 174 -38.108.242.0/24 174 -38.108.243.0/24 40841 -38.108.244.0/23 174 -38.108.246.0/24 174 -38.108.247.0/24 16665 -38.108.248.0/22 174 -38.108.252.0/24 53516 -38.108.253.0/24 174 -38.108.254.0/24 397260 -38.108.255.0/24 174 -38.109.0.0/21 19955 -38.109.8.0/21 174 -38.109.16.0/21 174 -38.109.24.0/24 174 -38.109.25.0/24 396853 -38.109.26.0/23 174 -38.109.28.0/22 15011 -38.109.32.0/19 174 -38.109.64.0/24 174 -38.109.65.0/24 42228 -38.109.66.0/24 174 -38.109.67.0/24 54087 -38.109.68.0/24 46287 -38.109.69.0/24 30590 -38.109.70.0/24 174 -38.109.71.0/24 40811 -38.109.72.0/24 174 -38.109.73.0/24 55080 -38.109.74.0/24 20078 -38.109.75.0/24 174 -38.109.76.0/24 22151 -38.109.77.0/24 11168 -38.109.78.0/24 36266 -38.109.79.0/24 17078 -38.109.80.0/24 174 -38.109.81.0/24 27585 -38.109.82.0/23 174 -38.109.84.0/23 174 -38.109.86.0/24 54795 -38.109.87.0/24 174 -38.109.88.0/24 396868 -38.109.89.0/24 174 -38.109.90.0/23 174 -38.109.92.0/22 174 -38.109.96.0/22 174 -38.109.100.0/24 174 -38.109.101.0/24 22044 -38.109.102.0/23 174 -38.109.104.0/22 174 -38.109.108.0/23 174 -38.109.110.0/24 174 -38.109.111.0/24 23004 -38.109.112.0/22 174 -38.109.116.0/23 174 -38.109.118.0/24 174 -38.109.119.0/24 32467 -38.109.120.0/23 174 -38.109.122.0/24 174 -38.109.123.0/24 53381 -38.109.124.0/24 395753 -38.109.125.0/24 26654 -38.109.126.0/23 174 -38.109.128.0/21 174 -38.109.136.0/22 174 -38.109.140.0/23 16858 -38.109.142.0/24 174 -38.109.143.0/24 14144 -38.109.144.0/22 174 -38.109.148.0/24 174 -38.109.149.0/24 393415 -38.109.150.0/24 14652 -38.109.151.0/24 395654 -38.109.152.0/24 394765 -38.109.153.0/24 16639 -38.109.154.0/23 174 -38.109.156.0/22 174 -38.109.160.0/23 174 -38.109.162.0/24 30507 -38.109.163.0/24 174 -38.109.164.0/23 174 -38.109.166.0/23 32100 -38.109.168.0/23 174 -38.109.170.0/24 174 -38.109.171.0/24 394617 -38.109.172.0/24 32503 -38.109.173.0/24 174 -38.109.174.0/24 29951 -38.109.175.0/24 174 -38.109.176.0/24 174 -38.109.177.0/24 40437 -38.109.178.0/23 393950 -38.109.180.0/22 174 -38.109.184.0/22 26312 -38.109.188.0/22 174 -38.109.192.0/23 174 -38.109.194.0/24 174 -38.109.195.0/24 46658 -38.109.196.0/22 174 -38.109.200.0/21 174 -38.109.208.0/23 174 -38.109.210.0/23 62695 -38.109.212.0/23 174 -38.109.214.0/24 174 -38.109.215.0/24 63304 -38.109.216.0/21 40092 -38.109.224.0/22 174 -38.109.228.0/24 174 -38.109.229.0/24 40281 -38.109.230.0/23 397301 -38.109.232.0/21 174 -38.109.240.0/23 395111 -38.109.242.0/23 63018 -38.109.244.0/22 395111 -38.109.248.0/24 174 -38.109.249.0/24 394005 -38.109.250.0/23 398149 -38.109.252.0/22 174 -38.110.0.0/24 11128 -38.110.1.0/24 174 -38.110.2.0/23 174 -38.110.4.0/22 174 -38.110.8.0/23 174 -38.110.10.0/24 174 -38.110.11.0/24 30503 -38.110.12.0/23 174 -38.110.14.0/24 174 -38.110.15.0/24 31989 -38.110.16.0/21 174 -38.110.24.0/24 174 -38.110.25.0/24 17077 -38.110.26.0/24 21535 -38.110.27.0/24 174 -38.110.28.0/23 174 -38.110.30.0/24 174 -38.110.31.0/24 54435 -38.110.32.0/22 15083 -38.110.36.0/24 29760 -38.110.37.0/24 174 -38.110.38.0/24 174 -38.110.39.0/24 396058 -38.110.40.0/22 174 -38.110.44.0/23 174 -38.110.46.0/24 2637 -38.110.47.0/24 174 -38.110.48.0/22 40805 -38.110.52.0/22 174 -38.110.56.0/21 174 -38.110.64.0/24 174 -38.110.65.0/24 12212 -38.110.66.0/23 174 -38.110.68.0/22 174 -38.110.72.0/22 174 -38.110.76.0/24 12212 -38.110.77.0/24 174 -38.110.78.0/24 174 -38.110.79.0/24 23015 -38.110.80.0/22 174 -38.110.84.0/22 26110 -38.110.88.0/21 174 -38.110.96.0/21 22113 -38.110.104.0/21 395570 -38.110.112.0/20 174 -38.110.128.0/21 174 -38.110.136.0/24 30417 -38.110.137.0/24 174 -38.110.138.0/24 55075 -38.110.139.0/24 174 -38.110.140.0/22 174 -38.110.144.0/21 174 -38.110.152.0/22 174 -38.110.156.0/23 174 -38.110.158.0/24 32770 -38.110.159.0/24 174 -38.110.160.0/19 174 -38.110.192.0/18 174 -38.111.0.0/23 174 -38.111.2.0/24 46763 -38.111.3.0/24 174 -38.111.4.0/24 174 -38.111.5.0/24 32607 -38.111.6.0/24 174 -38.111.7.0/24 394844 -38.111.8.0/23 174 -38.111.10.0/24 36283 -38.111.11.0/24 174 -38.111.12.0/22 174 -38.111.16.0/24 174 -38.111.17.0/24 198949 -38.111.18.0/24 53453 -38.111.19.0/24 174 -38.111.20.0/23 174 -38.111.22.0/24 174 -38.111.23.0/24 14705 -38.111.24.0/24 12043 -38.111.25.0/24 174 -38.111.26.0/24 174 -38.111.27.0/24 54077 -38.111.28.0/24 174 -38.111.29.0/24 397758 -38.111.30.0/24 174 -38.111.31.0/24 394251 -38.111.32.0/23 174 -38.111.34.0/24 63404 -38.111.35.0/24 174 -38.111.36.0/22 174 -38.111.40.0/23 174 -38.111.42.0/24 30140 -38.111.43.0/24 174 -38.111.44.0/24 33063 -38.111.45.0/24 174 -38.111.46.0/24 174 -38.111.47.0/24 395717 -38.111.48.0/24 54693 -38.111.49.0/24 63404 -38.111.50.0/23 174 -38.111.52.0/24 63404 -38.111.53.0/24 18724 -38.111.54.0/24 174 -38.111.55.0/24 54995 -38.111.56.0/23 174 -38.111.58.0/24 174 -38.111.59.0/24 15027 -38.111.60.0/24 174 -38.111.61.0/24 393333 -38.111.62.0/24 30474 -38.111.63.0/24 174 -38.111.64.0/19 174 -38.111.96.0/21 174 -38.111.104.0/23 174 -38.111.106.0/23 32489 -38.111.108.0/23 174 -38.111.110.0/24 174 -38.111.111.0/24 30549 -38.111.112.0/24 36529 -38.111.113.0/24 174 -38.111.114.0/24 62563 -38.111.115.0/24 174 -38.111.116.0/23 174 -38.111.118.0/23 15128 -38.111.120.0/24 394989 -38.111.121.0/24 26110 -38.111.122.0/23 26110 -38.111.124.0/23 174 -38.111.126.0/24 174 -38.111.127.0/24 35893 -38.111.128.0/23 62550 -38.111.130.0/24 54960 -38.111.131.0/24 174 -38.111.132.0/23 174 -38.111.134.0/23 46841 -38.111.136.0/24 46822 -38.111.137.0/24 23078 -38.111.138.0/23 174 -38.111.140.0/24 174 -38.111.141.0/24 4897 -38.111.142.0/24 394973 -38.111.143.0/24 174 -38.111.144.0/20 174 -38.111.160.0/20 174 -38.111.176.0/22 174 -38.111.180.0/23 174 -38.111.182.0/24 174 -38.111.183.0/24 31957 -38.111.184.0/21 174 -38.111.192.0/21 174 -38.111.200.0/22 174 -38.111.204.0/24 174 -38.111.205.0/24 19188 -38.111.206.0/23 174 -38.111.208.0/20 174 -38.111.224.0/23 174 -38.111.226.0/23 22421 -38.111.228.0/22 174 -38.111.232.0/22 174 -38.111.236.0/24 33058 -38.111.237.0/24 174 -38.111.238.0/23 174 -38.111.240.0/21 174 -38.111.248.0/23 174 -38.111.250.0/23 14991 -38.111.252.0/22 174 -38.112.0.0/19 174 -38.112.32.0/20 174 -38.112.48.0/21 174 -38.112.56.0/23 174 -38.112.58.0/24 395826 -38.112.59.0/24 174 -38.112.60.0/22 174 -38.112.64.0/24 35884 -38.112.65.0/24 174 -38.112.66.0/23 174 -38.112.68.0/22 174 -38.112.72.0/21 174 -38.112.80.0/20 174 -38.112.96.0/20 174 -38.112.112.0/24 26677 -38.112.113.0/24 174 -38.112.114.0/23 174 -38.112.116.0/22 174 -38.112.120.0/21 174 -38.112.128.0/20 174 -38.112.144.0/21 174 -38.112.152.0/23 174 -38.112.154.0/24 30140 -38.112.155.0/24 174 -38.112.156.0/22 174 -38.112.160.0/23 174 -38.112.162.0/23 46734 -38.112.164.0/22 174 -38.112.168.0/21 174 -38.112.176.0/20 174 -38.112.192.0/23 174 -38.112.194.0/24 29802 -38.112.195.0/24 174 -38.112.196.0/23 174 -38.112.198.0/24 21889 -38.112.199.0/24 174 -38.112.200.0/21 174 -38.112.208.0/20 174 -38.112.224.0/23 174 -38.112.226.0/24 13331 -38.112.227.0/24 174 -38.112.228.0/22 174 -38.112.232.0/21 174 -38.112.240.0/20 174 -38.113.0.0/24 174 -38.113.1.0/24 29873 -38.113.2.0/23 174 -38.113.4.0/22 174 -38.113.8.0/21 174 -38.113.16.0/22 174 -38.113.20.0/24 29873 -38.113.21.0/24 174 -38.113.22.0/23 174 -38.113.24.0/21 174 -38.113.32.0/19 174 -38.113.64.0/20 174 -38.113.80.0/23 174 -38.113.82.0/23 22904 -38.113.84.0/22 174 -38.113.88.0/21 174 -38.113.96.0/20 174 -38.113.112.0/22 174 -38.113.116.0/23 174 -38.113.118.0/24 174 -38.113.119.0/24 25677 -38.113.120.0/24 174 -38.113.121.0/24 36737 -38.113.122.0/23 174 -38.113.124.0/22 174 -38.113.128.0/23 174 -38.113.130.0/24 26750 -38.113.131.0/24 174 -38.113.132.0/22 174 -38.113.136.0/21 174 -38.113.144.0/20 174 -38.113.160.0/24 174 -38.113.161.0/24 5096 -38.113.162.0/24 12212 -38.113.163.0/24 174 -38.113.164.0/23 174 -38.113.166.0/24 174 -38.113.167.0/24 395309 -38.113.168.0/22 174 -38.113.172.0/24 4546 -38.113.173.0/24 174 -38.113.174.0/23 174 -38.113.176.0/22 4877 -38.113.180.0/24 18801 -38.113.181.0/24 174 -38.113.182.0/23 174 -38.113.184.0/24 53338 -38.113.185.0/24 174 -38.113.186.0/24 174 -38.113.187.0/24 14611 -38.113.188.0/22 32489 -38.113.192.0/18 174 -38.114.0.0/18 174 -38.114.64.0/21 22926 -38.114.72.0/23 174 -38.114.74.0/24 174 -38.114.75.0/24 19211 -38.114.76.0/22 22926 -38.114.80.0/20 174 -38.114.96.0/22 174 -38.114.100.0/22 40395 -38.114.104.0/23 174 -38.114.106.0/24 36249 -38.114.107.0/24 174 -38.114.108.0/23 174 -38.114.110.0/24 27208 -38.114.111.0/24 174 -38.114.112.0/24 174 -38.114.113.0/24 397550 -38.114.114.0/24 63023 -38.114.115.0/24 174 -38.114.116.0/23 174 -38.114.118.0/24 174 -38.114.119.0/24 63023 -38.114.120.0/22 18590 -38.114.124.0/22 174 -38.114.128.0/20 174 -38.114.144.0/21 174 -38.114.152.0/23 174 -38.114.154.0/24 54336 -38.114.155.0/24 174 -38.114.156.0/22 174 -38.114.160.0/19 174 -38.114.192.0/21 174 -38.114.200.0/22 174 -38.114.204.0/24 394844 -38.114.205.0/24 396107 -38.114.206.0/24 174 -38.114.207.0/24 40614 -38.114.208.0/23 174 -38.114.210.0/24 174 -38.114.211.0/24 4546 -38.114.212.0/22 174 -38.114.216.0/22 174 -38.114.220.0/24 40614 -38.114.221.0/24 174 -38.114.222.0/23 174 -38.114.224.0/19 27166 -38.115.0.0/24 174 -38.115.1.0/24 11361 -38.115.2.0/23 174 -38.115.4.0/22 174 -38.115.8.0/21 174 -38.115.16.0/20 174 -38.115.32.0/20 174 -38.115.48.0/21 174 -38.115.56.0/22 174 -38.115.60.0/24 32744 -38.115.61.0/24 174 -38.115.62.0/24 34 -38.115.63.0/24 174 -38.115.64.0/18 174 -38.115.128.0/22 174 -38.115.132.0/24 27361 -38.115.133.0/24 174 -38.115.134.0/23 174 -38.115.136.0/21 174 -38.115.144.0/24 26629 -38.115.145.0/24 174 -38.115.146.0/23 174 -38.115.148.0/22 174 -38.115.152.0/21 174 -38.115.160.0/20 174 -38.115.176.0/22 174 -38.115.180.0/24 174 -38.115.181.0/24 32846 -38.115.182.0/23 174 -38.115.184.0/21 174 -38.115.192.0/18 174 -38.116.0.0/19 174 -38.116.32.0/22 174 -38.116.36.0/23 174 -38.116.38.0/24 25975 -38.116.39.0/24 174 -38.116.40.0/21 174 -38.116.48.0/20 174 -38.116.64.0/18 174 -38.116.128.0/18 174 -38.116.192.0/24 394821 -38.116.193.0/24 174 -38.116.194.0/23 174 -38.116.196.0/23 174 -38.116.198.0/23 11703 -38.116.200.0/21 174 -38.116.208.0/20 174 -38.116.224.0/19 174 -38.117.0.0/24 174 -38.117.1.0/24 15083 -38.117.2.0/23 174 -38.117.4.0/22 174 -38.117.8.0/21 174 -38.117.16.0/22 174 -38.117.20.0/23 174 -38.117.22.0/24 174 -38.117.23.0/24 33724 -38.117.24.0/21 174 -38.117.32.0/19 174 -38.117.64.0/24 174 -38.117.65.0/24 12212 -38.117.66.0/23 174 -38.117.68.0/23 394085 -38.117.70.0/24 394085 -38.117.71.0/24 62947 -38.117.72.0/23 174 -38.117.74.0/24 174 -38.117.75.0/24 11077 -38.117.76.0/22 36529 -38.117.80.0/22 174 -38.117.84.0/23 174 -38.117.86.0/24 174 -38.117.87.0/24 12212 -38.117.88.0/24 30507 -38.117.89.0/24 174 -38.117.90.0/24 174 -38.117.91.0/24 397468 -38.117.92.0/24 174 -38.117.93.0/24 26677 -38.117.94.0/24 4373 -38.117.95.0/24 36225 -38.117.96.0/24 12212 -38.117.97.0/24 174 -38.117.98.0/24 174 -38.117.99.0/24 394229 -38.117.100.0/23 46430 -38.117.102.0/24 174 -38.117.103.0/24 36225 -38.117.104.0/24 174 -38.117.105.0/24 12212 -38.117.106.0/23 174 -38.117.108.0/23 174 -38.117.110.0/24 46430 -38.117.111.0/24 174 -38.117.112.0/22 32012 -38.117.116.0/22 53338 -38.117.120.0/23 174 -38.117.122.0/24 174 -38.117.123.0/24 394085 -38.117.124.0/22 174 -38.117.128.0/22 174 -38.117.132.0/23 174 -38.117.134.0/24 36671 -38.117.135.0/24 174 -38.117.136.0/22 174 -38.117.140.0/23 174 -38.117.142.0/24 27251 -38.117.143.0/24 174 -38.117.144.0/22 174 -38.117.148.0/24 27533 -38.117.149.0/24 174 -38.117.150.0/23 174 -38.117.152.0/21 174 -38.117.160.0/21 174 -38.117.168.0/23 30489 -38.117.170.0/23 174 -38.117.172.0/22 174 -38.117.176.0/24 30140 -38.117.177.0/24 174 -38.117.178.0/23 174 -38.117.180.0/22 174 -38.117.184.0/21 174 -38.117.192.0/23 30666 -38.117.194.0/24 32171 -38.117.195.0/24 174 -38.117.196.0/22 174 -38.117.200.0/22 174 -38.117.204.0/23 174 -38.117.206.0/24 174 -38.117.207.0/24 25952 -38.117.208.0/22 14465 -38.117.212.0/24 174 -38.117.213.0/24 30666 -38.117.214.0/23 30666 -38.117.216.0/22 174 -38.117.220.0/23 174 -38.117.222.0/24 174 -38.117.223.0/24 32493 -38.117.224.0/21 174 -38.117.232.0/24 33001 -38.117.233.0/24 174 -38.117.234.0/23 30666 -38.117.236.0/22 174 -38.117.240.0/20 174 -38.118.0.0/21 174 -38.118.8.0/22 174 -38.118.12.0/23 174 -38.118.14.0/24 174 -38.118.15.0/24 27169 -38.118.16.0/20 174 -38.118.32.0/20 174 -38.118.48.0/23 174 -38.118.50.0/24 21886 -38.118.51.0/24 174 -38.118.52.0/22 174 -38.118.56.0/21 174 -38.118.64.0/22 174 -38.118.68.0/23 174 -38.118.70.0/24 174 -38.118.71.0/24 36106 -38.118.72.0/22 174 -38.118.76.0/23 174 -38.118.78.0/24 22449 -38.118.79.0/24 174 -38.118.80.0/24 174 -38.118.81.0/24 12218 -38.118.82.0/24 174 -38.118.83.0/24 12218 -38.118.84.0/22 174 -38.118.88.0/21 174 -38.118.96.0/19 174 -38.118.128.0/18 174 -38.118.192.0/23 174 -38.118.194.0/24 174 -38.118.195.0/24 30212 -38.118.196.0/23 174 -38.118.198.0/24 174 -38.118.199.0/24 30212 -38.118.200.0/21 174 -38.118.208.0/20 174 -38.118.224.0/19 174 -38.119.0.0/17 174 -38.119.128.0/24 174 -38.119.129.0/24 27447 -38.119.130.0/23 174 -38.119.132.0/22 174 -38.119.136.0/21 174 -38.119.144.0/21 174 -38.119.152.0/22 174 -38.119.156.0/24 174 -38.119.157.0/24 33693 -38.119.158.0/23 174 -38.119.160.0/22 174 -38.119.164.0/23 174 -38.119.166.0/24 174 -38.119.167.0/24 19116 -38.119.168.0/21 174 -38.119.176.0/20 174 -38.119.192.0/20 174 -38.119.208.0/23 174 -38.119.210.0/24 35884 -38.119.211.0/24 174 -38.119.212.0/22 174 -38.119.216.0/24 174 -38.119.217.0/24 29787 -38.119.218.0/23 174 -38.119.220.0/22 174 -38.119.224.0/19 174 -38.120.0.0/16 174 -38.121.0.0/20 174 -38.121.16.0/22 174 -38.121.20.0/22 138576 -38.121.24.0/21 174 -38.121.32.0/23 174 -38.121.34.0/24 36249 -38.121.35.0/24 174 -38.121.36.0/23 174 -38.121.38.0/24 398044 -38.121.39.0/24 174 -38.121.40.0/23 174 -38.121.42.0/24 174 -38.121.43.0/24 63023 -38.121.44.0/22 174 -38.121.48.0/22 174 -38.121.52.0/24 40683 -38.121.53.0/24 18689 -38.121.54.0/23 174 -38.121.56.0/22 174 -38.121.60.0/22 63199 -38.121.64.0/21 174 -38.121.72.0/22 174 -38.121.76.0/23 32489 -38.121.78.0/23 174 -38.121.80.0/20 174 -38.121.96.0/20 174 -38.121.112.0/23 174 -38.121.114.0/24 174 -38.121.115.0/24 22890 -38.121.116.0/24 22890 -38.121.117.0/24 62680 -38.121.118.0/23 174 -38.121.120.0/21 174 -38.121.128.0/21 174 -38.121.136.0/24 174 -38.121.137.0/24 53900 -38.121.138.0/23 174 -38.121.140.0/22 174 -38.121.144.0/23 174 -38.121.146.0/24 12072 -38.121.147.0/24 174 -38.121.148.0/22 174 -38.121.152.0/23 174 -38.121.154.0/24 174 -38.121.155.0/24 23499 -38.121.156.0/22 174 -38.121.160.0/21 174 -38.121.168.0/22 174 -38.121.172.0/23 174 -38.121.174.0/24 54748 -38.121.175.0/24 174 -38.121.176.0/22 174 -38.121.180.0/24 36227 -38.121.181.0/24 394065 -38.121.182.0/23 174 -38.121.184.0/22 174 -38.121.188.0/23 174 -38.121.190.0/24 174 -38.121.191.0/24 40719 -38.121.192.0/19 174 -38.121.224.0/22 174 -38.121.228.0/24 174 -38.121.229.0/24 14310 -38.121.230.0/23 174 -38.121.232.0/21 174 -38.121.240.0/20 26932 -38.122.0.0/16 174 -38.123.0.0/19 174 -38.123.32.0/22 40166 -38.123.36.0/22 174 -38.123.40.0/21 174 -38.123.48.0/20 174 -38.123.64.0/23 174 -38.123.66.0/23 263157 -38.123.68.0/23 174 -38.123.70.0/23 263157 -38.123.72.0/21 174 -38.123.80.0/22 174 -38.123.84.0/22 11597 -38.123.88.0/23 174 -38.123.90.0/23 54276 -38.123.92.0/22 174 -38.123.96.0/20 63199 -38.123.112.0/21 174 -38.123.120.0/22 174 -38.123.124.0/22 395948 -38.123.128.0/21 174 -38.123.136.0/24 174 -38.123.137.0/24 397384 -38.123.138.0/23 174 -38.123.140.0/22 174 -38.123.144.0/20 174 -38.123.160.0/19 174 -38.123.192.0/22 32098 -38.123.196.0/22 263157 -38.123.200.0/24 174 -38.123.201.0/24 263157 -38.123.202.0/23 263157 -38.123.204.0/24 263157 -38.123.205.0/24 174 -38.123.206.0/23 174 -38.123.208.0/22 263167 -38.123.212.0/22 174 -38.123.216.0/21 174 -38.123.224.0/22 174 -38.123.228.0/23 174 -38.123.230.0/24 174 -38.123.231.0/24 53721 -38.123.232.0/21 174 -38.123.240.0/22 174 -38.123.244.0/23 27582 -38.123.246.0/24 26465 -38.123.247.0/24 394187 -38.123.248.0/22 174 -38.123.252.0/24 174 -38.123.253.0/24 395111 -38.123.254.0/24 32391 -38.123.255.0/24 174 -38.124.0.0/24 3733 -38.124.1.0/24 64249 -38.124.2.0/24 174 -38.124.3.0/24 26714 -38.124.4.0/24 174 -38.124.5.0/24 1355 -38.124.6.0/24 19098 -38.124.7.0/24 174 -38.124.8.0/23 36498 -38.124.10.0/23 174 -38.124.12.0/22 36498 -38.124.16.0/23 174 -38.124.18.0/23 36498 -38.124.20.0/24 174 -38.124.21.0/24 36147 -38.124.22.0/23 174 -38.124.24.0/22 36498 -38.124.28.0/24 174 -38.124.29.0/24 394715 -38.124.30.0/23 174 -38.124.32.0/21 174 -38.124.40.0/22 174 -38.124.44.0/24 15222 -38.124.45.0/24 174 -38.124.46.0/23 174 -38.124.48.0/22 36498 -38.124.52.0/22 174 -38.124.56.0/24 174 -38.124.57.0/24 11428 -38.124.58.0/24 30278 -38.124.59.0/24 174 -38.124.60.0/22 174 -38.124.64.0/21 174 -38.124.72.0/22 174 -38.124.76.0/24 33400 -38.124.77.0/24 174 -38.124.78.0/23 174 -38.124.80.0/21 174 -38.124.88.0/21 36498 -38.124.96.0/24 174 -38.124.97.0/24 103 -38.124.98.0/23 174 -38.124.100.0/23 174 -38.124.102.0/24 41069 -38.124.103.0/24 174 -38.124.104.0/21 174 -38.124.112.0/20 174 -38.124.128.0/21 174 -38.124.136.0/23 174 -38.124.138.0/24 29886 -38.124.139.0/24 174 -38.124.140.0/23 174 -38.124.142.0/24 174 -38.124.143.0/24 12183 -38.124.144.0/22 174 -38.124.148.0/23 29886 -38.124.150.0/23 174 -38.124.152.0/24 14501 -38.124.153.0/24 174 -38.124.154.0/23 174 -38.124.156.0/22 174 -38.124.160.0/21 174 -38.124.168.0/24 174 -38.124.169.0/24 263157 -38.124.170.0/24 174 -38.124.171.0/24 263157 -38.124.172.0/23 263157 -38.124.174.0/24 263157 -38.124.175.0/24 174 -38.124.176.0/20 174 -38.124.192.0/24 174 -38.124.193.0/24 263157 -38.124.194.0/23 174 -38.124.196.0/22 174 -38.124.200.0/21 174 -38.124.208.0/20 174 -38.124.224.0/21 174 -38.124.232.0/22 174 -38.124.236.0/22 20075 -38.124.240.0/21 174 -38.124.248.0/24 19931 -38.124.249.0/24 10886 -38.124.250.0/23 174 -38.124.252.0/22 174 -38.125.0.0/23 11168 -38.125.2.0/23 174 -38.125.4.0/23 174 -38.125.6.0/24 174 -38.125.7.0/24 54514 -38.125.8.0/22 174 -38.125.12.0/24 174 -38.125.13.0/24 394980 -38.125.14.0/23 174 -38.125.16.0/23 174 -38.125.18.0/24 174 -38.125.19.0/24 53518 -38.125.20.0/24 174 -38.125.21.0/24 46667 -38.125.22.0/24 174 -38.125.23.0/24 19970 -38.125.24.0/24 16764 -38.125.25.0/24 174 -38.125.26.0/23 174 -38.125.28.0/23 174 -38.125.30.0/24 174 -38.125.31.0/24 54894 -38.125.32.0/23 174 -38.125.34.0/24 394973 -38.125.35.0/24 174 -38.125.36.0/22 174 -38.125.40.0/24 393925 -38.125.41.0/24 174 -38.125.42.0/23 174 -38.125.44.0/23 174 -38.125.46.0/24 393925 -38.125.47.0/24 394427 -38.125.48.0/24 396174 -38.125.49.0/24 174 -38.125.50.0/23 174 -38.125.52.0/22 174 -38.125.56.0/22 174 -38.125.60.0/24 174 -38.125.61.0/24 46667 -38.125.62.0/23 174 -38.125.64.0/20 174 -38.125.80.0/24 55253 -38.125.81.0/24 53630 -38.125.82.0/23 174 -38.125.84.0/22 174 -38.125.88.0/24 395603 -38.125.89.0/24 174 -38.125.90.0/23 174 -38.125.92.0/24 174 -38.125.93.0/24 53521 -38.125.94.0/23 174 -38.125.96.0/21 174 -38.125.104.0/23 174 -38.125.106.0/24 30417 -38.125.107.0/24 61429 -38.125.108.0/22 174 -38.125.112.0/22 395822 -38.125.116.0/22 174 -38.125.120.0/23 174 -38.125.122.0/24 22917 -38.125.123.0/24 54620 -38.125.124.0/23 174 -38.125.126.0/24 55096 -38.125.127.0/24 174 -38.125.128.0/19 174 -38.125.160.0/22 174 -38.125.164.0/24 174 -38.125.165.0/24 4058 -38.125.166.0/23 174 -38.125.168.0/21 174 -38.125.176.0/22 174 -38.125.180.0/23 174 -38.125.182.0/24 14483 -38.125.183.0/24 174 -38.125.184.0/23 174 -38.125.186.0/24 394156 -38.125.187.0/24 174 -38.125.188.0/22 174 -38.125.192.0/22 174 -38.125.196.0/23 174 -38.125.198.0/24 174 -38.125.199.0/24 46887 -38.125.200.0/23 174 -38.125.202.0/23 16754 -38.125.204.0/22 174 -38.125.208.0/20 174 -38.125.224.0/21 174 -38.125.232.0/21 395111 -38.125.240.0/20 174 -38.126.0.0/20 174 -38.126.16.0/22 36498 -38.126.20.0/22 174 -38.126.24.0/21 174 -38.126.32.0/22 174 -38.126.36.0/24 19730 -38.126.37.0/24 174 -38.126.38.0/23 174 -38.126.40.0/21 174 -38.126.48.0/22 174 -38.126.52.0/23 174 -38.126.54.0/24 19730 -38.126.55.0/24 13653 -38.126.56.0/21 174 -38.126.64.0/22 174 -38.126.68.0/24 395717 -38.126.69.0/24 174 -38.126.70.0/23 174 -38.126.72.0/24 4903 -38.126.73.0/24 33509 -38.126.74.0/23 174 -38.126.76.0/22 174 -38.126.80.0/20 14797 -38.126.96.0/24 174 -38.126.97.0/24 394122 -38.126.98.0/24 395748 -38.126.99.0/24 32002 -38.126.100.0/24 174 -38.126.101.0/24 395748 -38.126.102.0/24 174 -38.126.103.0/24 395620 -38.126.104.0/21 174 -38.126.112.0/20 174 -38.126.128.0/23 174 -38.126.130.0/24 1422 -38.126.131.0/24 174 -38.126.132.0/22 174 -38.126.136.0/23 174 -38.126.138.0/24 16754 -38.126.139.0/24 27399 -38.126.140.0/23 11825 -38.126.142.0/23 174 -38.126.144.0/23 174 -38.126.146.0/24 393403 -38.126.147.0/24 174 -38.126.148.0/22 174 -38.126.152.0/21 174 -38.126.160.0/24 396853 -38.126.161.0/24 174 -38.126.162.0/24 174 -38.126.163.0/24 47096 -38.126.164.0/23 174 -38.126.166.0/24 174 -38.126.167.0/24 396853 -38.126.168.0/24 18778 -38.126.169.0/24 174 -38.126.170.0/23 174 -38.126.172.0/23 174 -38.126.174.0/23 35901 -38.126.176.0/21 46131 -38.126.184.0/21 15011 -38.126.192.0/22 174 -38.126.196.0/24 35978 -38.126.197.0/24 174 -38.126.198.0/23 174 -38.126.200.0/22 40784 -38.126.204.0/22 174 -38.126.208.0/24 174 -38.126.209.0/24 55270 -38.126.210.0/23 174 -38.126.212.0/22 265264 -38.126.216.0/24 174 -38.126.217.0/24 63452 -38.126.218.0/23 174 -38.126.220.0/22 174 -38.126.224.0/22 174 -38.126.228.0/24 397834 -38.126.229.0/24 32056 -38.126.230.0/23 174 -38.126.232.0/23 174 -38.126.234.0/23 14237 -38.126.236.0/23 14237 -38.126.238.0/23 174 -38.126.240.0/22 14237 -38.126.244.0/23 174 -38.126.246.0/23 16468 -38.126.248.0/21 14237 -38.127.0.0/22 174 -38.127.4.0/24 174 -38.127.5.0/24 397578 -38.127.6.0/23 174 -38.127.8.0/21 174 -38.127.16.0/20 174 -38.127.32.0/19 174 -38.127.64.0/20 174 -38.127.80.0/24 62715 -38.127.81.0/24 174 -38.127.82.0/23 174 -38.127.84.0/22 174 -38.127.88.0/22 394931 -38.127.92.0/24 23033 -38.127.93.0/24 174 -38.127.94.0/24 395657 -38.127.95.0/24 394140 -38.127.96.0/19 174 -38.127.128.0/24 174 -38.127.129.0/24 395436 -38.127.130.0/23 174 -38.127.132.0/22 174 -38.127.136.0/22 174 -38.127.140.0/23 174 -38.127.142.0/24 174 -38.127.143.0/24 25829 -38.127.144.0/21 174 -38.127.152.0/22 174 -38.127.156.0/24 395800 -38.127.157.0/24 174 -38.127.158.0/23 174 -38.127.160.0/20 174 -38.127.176.0/22 174 -38.127.180.0/24 174 -38.127.181.0/24 394844 -38.127.182.0/23 174 -38.127.184.0/22 174 -38.127.188.0/22 395800 -38.127.192.0/21 174 -38.127.200.0/22 174 -38.127.204.0/23 174 -38.127.206.0/24 63425 -38.127.207.0/24 174 -38.127.208.0/21 174 -38.127.216.0/22 174 -38.127.220.0/23 40784 -38.127.222.0/23 174 -38.127.224.0/23 174 -38.127.226.0/24 63191 -38.127.227.0/24 174 -38.127.228.0/22 174 -38.127.232.0/24 394959 -38.127.233.0/24 174 -38.127.234.0/23 174 -38.127.236.0/24 394765 -38.127.237.0/24 174 -38.127.238.0/23 174 -38.127.240.0/20 174 -38.128.0.0/18 174 -38.128.64.0/23 174 -38.128.66.0/24 63023 -38.128.67.0/24 63430 -38.128.68.0/22 174 -38.128.72.0/21 33313 -38.128.80.0/22 396273 -38.128.84.0/22 174 -38.128.88.0/21 174 -38.128.96.0/22 174 -38.128.100.0/23 174 -38.128.102.0/23 17077 -38.128.104.0/21 174 -38.128.112.0/20 174 -38.128.128.0/20 16527 -38.128.144.0/22 62516 -38.128.148.0/22 174 -38.128.152.0/21 174 -38.128.160.0/21 62516 -38.128.168.0/21 174 -38.128.176.0/20 174 -38.128.192.0/22 174 -38.128.196.0/24 13545 -38.128.197.0/24 174 -38.128.198.0/23 174 -38.128.200.0/21 174 -38.128.208.0/20 174 -38.128.224.0/21 26932 -38.128.232.0/23 174 -38.128.234.0/23 26413 -38.128.236.0/22 174 -38.128.240.0/20 31851 -38.129.0.0/18 174 -38.129.64.0/23 174 -38.129.66.0/24 174 -38.129.67.0/24 14380 -38.129.68.0/22 174 -38.129.72.0/21 174 -38.129.80.0/20 174 -38.129.96.0/19 174 -38.129.128.0/22 174 -38.129.132.0/23 174 -38.129.134.0/24 19367 -38.129.135.0/24 174 -38.129.136.0/21 174 -38.129.144.0/20 174 -38.129.160.0/19 174 -38.129.192.0/18 174 -38.130.0.0/19 30174 -38.130.32.0/19 174 -38.130.64.0/21 174 -38.130.72.0/23 174 -38.130.74.0/24 174 -38.130.75.0/24 200904 -38.130.76.0/22 174 -38.130.80.0/22 174 -38.130.84.0/24 174 -38.130.85.0/24 62826 -38.130.86.0/23 174 -38.130.88.0/21 174 -38.130.96.0/20 174 -38.130.112.0/22 174 -38.130.116.0/23 174 -38.130.118.0/24 32545 -38.130.119.0/24 394229 -38.130.120.0/21 174 -38.130.128.0/23 174 -38.130.130.0/24 11967 -38.130.131.0/24 174 -38.130.132.0/22 174 -38.130.136.0/21 174 -38.130.144.0/20 174 -38.130.160.0/19 174 -38.130.192.0/19 13886 -38.130.224.0/24 174 -38.130.225.0/24 13886 -38.130.226.0/23 13886 -38.130.228.0/22 13886 -38.130.232.0/21 174 -38.130.240.0/20 174 -38.131.0.0/23 174 -38.131.2.0/24 174 -38.131.3.0/24 53865 -38.131.4.0/22 174 -38.131.8.0/22 174 -38.131.12.0/22 262248 -38.131.16.0/20 174 -38.131.32.0/21 174 -38.131.40.0/21 22898 -38.131.48.0/22 174 -38.131.52.0/22 14726 -38.131.56.0/21 174 -38.131.64.0/19 174 -38.131.96.0/19 35913 -38.131.128.0/22 395111 -38.131.132.0/22 174 -38.131.136.0/21 395111 -38.131.144.0/20 395111 -38.131.160.0/19 174 -38.131.192.0/20 174 -38.131.208.0/21 55140 -38.131.216.0/23 174 -38.131.218.0/23 55140 -38.131.220.0/24 174 -38.131.221.0/24 55140 -38.131.222.0/24 174 -38.131.223.0/24 33735 -38.131.224.0/22 63242 -38.131.228.0/22 174 -38.131.232.0/22 174 -38.131.236.0/23 174 -38.131.238.0/24 395077 -38.131.239.0/24 174 -38.131.240.0/24 1355 -38.131.241.0/24 29970 -38.131.242.0/24 174 -38.131.243.0/24 15167 -38.131.244.0/22 54240 -38.131.248.0/21 174 -38.132.0.0/18 174 -38.132.64.0/19 174 -38.132.96.0/19 9009 -38.132.128.0/18 23118 -38.132.192.0/20 174 -38.132.208.0/22 174 -38.132.212.0/24 396101 -38.132.213.0/24 174 -38.132.214.0/24 30363 -38.132.215.0/24 174 -38.132.216.0/21 174 -38.132.224.0/19 174 -38.133.0.0/20 174 -38.133.16.0/21 26932 -38.133.24.0/21 394232 -38.133.32.0/20 174 -38.133.48.0/21 26932 -38.133.56.0/21 174 -38.133.64.0/22 174 -38.133.68.0/23 30298 -38.133.70.0/23 174 -38.133.72.0/21 174 -38.133.80.0/20 174 -38.133.96.0/22 21580 -38.133.100.0/22 174 -38.133.104.0/21 21580 -38.133.112.0/21 174 -38.133.120.0/22 174 -38.133.124.0/23 174 -38.133.126.0/24 174 -38.133.127.0/24 22075 -38.133.128.0/24 174 -38.133.129.0/24 54882 -38.133.130.0/23 174 -38.133.132.0/22 174 -38.133.136.0/24 174 -38.133.137.0/24 30417 -38.133.138.0/24 16534 -38.133.139.0/24 40221 -38.133.140.0/23 174 -38.133.142.0/24 174 -38.133.143.0/24 25841 -38.133.144.0/24 32607 -38.133.145.0/24 174 -38.133.146.0/23 174 -38.133.148.0/22 174 -38.133.152.0/22 174 -38.133.156.0/24 40618 -38.133.157.0/24 174 -38.133.158.0/23 174 -38.133.160.0/22 174 -38.133.164.0/23 174 -38.133.166.0/24 396534 -38.133.167.0/24 174 -38.133.168.0/22 174 -38.133.172.0/24 53664 -38.133.173.0/24 397017 -38.133.174.0/23 174 -38.133.176.0/24 16830 -38.133.177.0/24 39979 -38.133.178.0/23 174 -38.133.180.0/24 33215 -38.133.181.0/24 174 -38.133.182.0/23 174 -38.133.184.0/21 174 -38.133.192.0/21 174 -38.133.200.0/24 63383 -38.133.201.0/24 174 -38.133.202.0/23 174 -38.133.204.0/23 15347 -38.133.206.0/23 174 -38.133.208.0/23 174 -38.133.210.0/24 174 -38.133.211.0/24 22040 -38.133.212.0/24 174 -38.133.213.0/24 22040 -38.133.214.0/23 174 -38.133.216.0/24 174 -38.133.217.0/24 29970 -38.133.218.0/23 174 -38.133.220.0/23 174 -38.133.222.0/24 174 -38.133.223.0/24 18843 -38.133.224.0/21 394225 -38.133.232.0/21 174 -38.133.240.0/20 394717 -38.134.0.0/23 174 -38.134.2.0/24 395371 -38.134.3.0/24 174 -38.134.4.0/22 393737 -38.134.8.0/21 174 -38.134.16.0/20 174 -38.134.32.0/23 174 -38.134.34.0/24 174 -38.134.35.0/24 46212 -38.134.36.0/22 174 -38.134.40.0/21 174 -38.134.48.0/20 174 -38.134.64.0/19 174 -38.134.96.0/21 174 -38.134.104.0/24 46847 -38.134.105.0/24 174 -38.134.106.0/23 174 -38.134.108.0/24 4888 -38.134.109.0/24 174 -38.134.110.0/24 26558 -38.134.111.0/24 174 -38.134.112.0/24 396168 -38.134.113.0/24 174 -38.134.114.0/23 26484 -38.134.116.0/22 174 -38.134.120.0/22 26484 -38.134.124.0/22 174 -38.134.128.0/22 174 -38.134.132.0/22 54960 -38.134.136.0/21 174 -38.134.144.0/20 174 -38.134.160.0/19 174 -38.134.192.0/19 174 -38.134.224.0/21 174 -38.134.232.0/23 18927 -38.134.234.0/23 174 -38.134.236.0/22 174 -38.134.240.0/20 174 -38.135.0.0/21 174 -38.135.8.0/23 174 -38.135.10.0/24 395748 -38.135.11.0/24 174 -38.135.12.0/22 174 -38.135.16.0/20 174 -38.135.32.0/22 393398 -38.135.36.0/23 393398 -38.135.38.0/24 174 -38.135.39.0/24 393398 -38.135.40.0/22 395948 -38.135.44.0/22 394737 -38.135.48.0/24 393398 -38.135.49.0/24 174 -38.135.50.0/23 393398 -38.135.52.0/22 174 -38.135.56.0/21 63018 -38.135.64.0/21 64252 -38.135.72.0/24 22362 -38.135.73.0/24 174 -38.135.74.0/23 174 -38.135.76.0/22 64252 -38.135.80.0/23 174 -38.135.82.0/24 21636 -38.135.83.0/24 174 -38.135.84.0/22 174 -38.135.88.0/23 174 -38.135.90.0/24 397530 -38.135.91.0/24 174 -38.135.92.0/24 174 -38.135.93.0/24 393802 -38.135.94.0/24 63237 -38.135.95.0/24 396989 -38.135.96.0/24 396406 -38.135.97.0/24 174 -38.135.98.0/24 393339 -38.135.99.0/24 174 -38.135.100.0/22 174 -38.135.104.0/23 200904 -38.135.106.0/24 174 -38.135.107.0/24 15167 -38.135.108.0/22 174 -38.135.112.0/21 174 -38.135.120.0/23 174 -38.135.122.0/23 200904 -38.135.124.0/22 174 -38.135.128.0/19 174 -38.135.160.0/23 15234 -38.135.162.0/24 174 -38.135.163.0/24 15234 -38.135.164.0/24 15234 -38.135.165.0/24 174 -38.135.166.0/23 174 -38.135.168.0/21 174 -38.135.176.0/20 174 -38.135.192.0/24 393446 -38.135.193.0/24 174 -38.135.194.0/23 174 -38.135.196.0/22 174 -38.135.200.0/22 174 -38.135.204.0/23 16698 -38.135.206.0/23 13428 -38.135.208.0/21 174 -38.135.216.0/21 55140 -38.135.224.0/19 174 -38.136.0.0/14 174 -38.140.0.0/18 174 -38.140.64.0/19 11272 -38.140.96.0/19 174 -38.140.128.0/17 174 -38.141.0.0/21 40285 -38.141.8.0/21 54133 -38.141.16.0/20 393737 -38.141.32.0/21 174 -38.141.40.0/21 23033 -38.141.48.0/21 394449 -38.141.56.0/22 394449 -38.141.60.0/22 174 -38.141.64.0/18 174 -38.141.128.0/17 174 -38.142.0.0/16 174 -38.143.0.0/23 134520 -38.143.2.0/24 134520 -38.143.3.0/24 40065 -38.143.4.0/24 397442 -38.143.5.0/24 174 -38.143.6.0/24 174 -38.143.7.0/24 26558 -38.143.8.0/23 134520 -38.143.10.0/24 134520 -38.143.11.0/24 40065 -38.143.12.0/23 174 -38.143.14.0/24 394844 -38.143.15.0/24 174 -38.143.16.0/23 174 -38.143.18.0/23 138576 -38.143.20.0/22 174 -38.143.24.0/21 174 -38.143.32.0/19 174 -38.143.64.0/24 36126 -38.143.65.0/24 174 -38.143.66.0/24 63023 -38.143.67.0/24 174 -38.143.68.0/22 396509 -38.143.72.0/21 174 -38.143.80.0/20 174 -38.143.96.0/19 174 -38.143.128.0/19 174 -38.143.160.0/23 22631 -38.143.162.0/24 22631 -38.143.163.0/24 40926 -38.143.164.0/23 16698 -38.143.166.0/23 174 -38.143.168.0/23 394998 -38.143.170.0/24 13428 -38.143.171.0/24 394998 -38.143.172.0/23 394998 -38.143.174.0/24 394998 -38.143.175.0/24 13428 -38.143.176.0/20 174 -38.143.192.0/22 35913 -38.143.196.0/23 35913 -38.143.198.0/24 40676 -38.143.199.0/24 35913 -38.143.200.0/24 35913 -38.143.201.0/24 40676 -38.143.202.0/23 35913 -38.143.204.0/22 35913 -38.143.208.0/24 40676 -38.143.209.0/24 35913 -38.143.210.0/23 40676 -38.143.212.0/23 40676 -38.143.214.0/24 35913 -38.143.215.0/24 40676 -38.143.216.0/23 35913 -38.143.218.0/24 35913 -38.143.219.0/24 40676 -38.143.220.0/22 35913 -38.143.224.0/19 174 -38.144.0.0/16 174 -38.145.0.0/19 174 -38.145.32.0/19 31976 -38.145.64.0/18 395111 -38.145.128.0/20 174 -38.145.144.0/20 40545 -38.145.160.0/19 40545 -38.145.192.0/18 174 -38.146.0.0/19 174 -38.146.32.0/22 174 -38.146.36.0/22 33083 -38.146.40.0/24 395717 -38.146.41.0/24 174 -38.146.42.0/23 174 -38.146.44.0/23 174 -38.146.46.0/24 174 -38.146.47.0/24 63417 -38.146.48.0/24 30417 -38.146.49.0/24 174 -38.146.50.0/23 174 -38.146.52.0/23 174 -38.146.54.0/24 174 -38.146.55.0/24 64249 -38.146.56.0/21 174 -38.146.64.0/22 40805 -38.146.68.0/22 174 -38.146.72.0/21 40285 -38.146.80.0/20 174 -38.146.96.0/19 174 -38.146.128.0/22 174 -38.146.132.0/22 395800 -38.146.136.0/21 174 -38.146.144.0/20 174 -38.146.160.0/24 174 -38.146.161.0/24 394869 -38.146.162.0/23 174 -38.146.164.0/22 174 -38.146.168.0/21 174 -38.146.176.0/20 174 -38.146.192.0/24 395047 -38.146.193.0/24 174 -38.146.194.0/23 174 -38.146.196.0/23 265264 -38.146.198.0/24 265264 -38.146.199.0/24 397533 -38.146.200.0/24 397550 -38.146.201.0/24 174 -38.146.202.0/23 174 -38.146.204.0/22 174 -38.146.208.0/20 174 -38.146.224.0/19 174 -38.147.0.0/23 54133 -38.147.2.0/23 174 -38.147.4.0/22 397778 -38.147.8.0/22 395570 -38.147.12.0/22 174 -38.147.16.0/20 174 -38.147.32.0/21 40285 -38.147.40.0/21 53959 -38.147.48.0/20 174 -38.147.64.0/19 174 -38.147.96.0/23 174 -38.147.98.0/24 397761 -38.147.99.0/24 62683 -38.147.100.0/22 174 -38.147.104.0/21 174 -38.147.112.0/20 174 -38.147.128.0/24 174 -38.147.129.0/24 40221 -38.147.130.0/24 395434 -38.147.131.0/24 174 -38.147.132.0/22 174 -38.147.136.0/21 174 -38.147.144.0/20 174 -38.147.160.0/21 138576 -38.147.168.0/21 174 -38.147.176.0/20 174 -38.147.192.0/18 174 -38.148.0.0/14 174 -38.152.0.0/13 174 -38.160.0.0/16 174 -38.161.0.0/18 174 -38.161.64.0/19 174 -38.161.96.0/20 174 -38.161.112.0/21 174 -38.161.120.0/22 174 -38.161.124.0/23 174 -38.161.126.0/24 174 -38.161.127.0/24 63000 -38.161.128.0/17 174 -38.162.0.0/15 174 -38.164.0.0/20 174 -38.164.16.0/22 174 -38.164.20.0/23 40177 -38.164.22.0/23 174 -38.164.24.0/21 174 -38.164.32.0/19 174 -38.164.64.0/18 174 -38.164.128.0/17 174 -38.165.0.0/16 174 -38.166.0.0/15 174 -38.168.0.0/16 174 -38.169.0.0/19 174 -38.169.32.0/24 32945 -38.169.33.0/24 174 -38.169.34.0/23 174 -38.169.36.0/22 174 -38.169.40.0/21 174 -38.169.48.0/20 174 -38.169.64.0/18 174 -38.169.128.0/18 174 -38.169.192.0/19 174 -38.169.224.0/21 174 -38.169.232.0/24 32945 -38.169.233.0/24 174 -38.169.234.0/23 174 -38.169.236.0/22 174 -38.169.240.0/20 174 -38.170.0.0/15 174 -38.172.0.0/14 174 -38.176.0.0/18 174 -38.176.64.0/20 174 -38.176.80.0/21 174 -38.176.88.0/23 174 -38.176.90.0/24 29987 -38.176.91.0/24 174 -38.176.92.0/22 174 -38.176.96.0/19 174 -38.176.128.0/17 174 -38.177.0.0/16 174 -38.178.0.0/15 174 -38.180.0.0/14 174 -38.184.0.0/13 174 -38.192.0.0/13 174 -38.200.0.0/22 174 -38.200.4.0/22 9009 -38.200.8.0/21 174 -38.200.16.0/20 174 -38.200.32.0/19 174 -38.200.64.0/18 174 -38.200.128.0/19 174 -38.200.160.0/20 174 -38.200.176.0/22 9009 -38.200.180.0/22 174 -38.200.184.0/21 174 -38.200.192.0/19 174 -38.200.224.0/20 174 -38.200.240.0/21 174 -38.200.248.0/22 174 -38.200.252.0/22 9009 -38.201.0.0/22 9009 -38.201.4.0/22 174 -38.201.8.0/21 174 -38.201.16.0/20 174 -38.201.32.0/19 174 -38.201.64.0/18 174 -38.201.128.0/22 9009 -38.201.132.0/22 174 -38.201.136.0/21 174 -38.201.144.0/20 174 -38.201.160.0/19 174 -38.201.192.0/22 9009 -38.201.196.0/22 174 -38.201.200.0/21 174 -38.201.208.0/20 174 -38.201.224.0/19 174 -38.202.0.0/22 9009 -38.202.4.0/22 174 -38.202.8.0/21 174 -38.202.16.0/20 174 -38.202.32.0/20 174 -38.202.48.0/22 174 -38.202.52.0/22 9009 -38.202.56.0/21 174 -38.202.64.0/18 174 -38.202.128.0/19 174 -38.202.160.0/21 174 -38.202.168.0/22 174 -38.202.172.0/22 9009 -38.202.176.0/20 174 -38.202.192.0/18 174 -38.203.0.0/22 9009 -38.203.4.0/22 174 -38.203.8.0/21 174 -38.203.16.0/20 174 -38.203.32.0/19 174 -38.203.64.0/18 174 -38.203.128.0/22 9009 -38.203.132.0/22 174 -38.203.136.0/21 174 -38.203.144.0/20 174 -38.203.160.0/19 174 -38.203.192.0/22 9009 -38.203.196.0/22 174 -38.203.200.0/21 174 -38.203.208.0/20 174 -38.203.224.0/19 174 -38.204.0.0/22 9009 -38.204.4.0/22 174 -38.204.8.0/21 174 -38.204.16.0/20 174 -38.204.32.0/20 174 -38.204.48.0/21 174 -38.204.56.0/22 174 -38.204.60.0/22 9009 -38.204.64.0/18 174 -38.204.128.0/18 174 -38.204.192.0/22 9009 -38.204.196.0/22 174 -38.204.200.0/21 174 -38.204.208.0/20 174 -38.204.224.0/19 174 -38.205.0.0/22 9009 -38.205.4.0/22 174 -38.205.8.0/21 174 -38.205.16.0/20 174 -38.205.32.0/19 174 -38.205.64.0/18 174 -38.205.128.0/22 9009 -38.205.132.0/22 174 -38.205.136.0/21 174 -38.205.144.0/20 174 -38.205.160.0/20 174 -38.205.176.0/21 174 -38.205.184.0/22 174 -38.205.188.0/22 9009 -38.205.192.0/18 174 -38.206.0.0/22 9009 -38.206.4.0/22 174 -38.206.8.0/21 174 -38.206.16.0/20 174 -38.206.32.0/19 174 -38.206.64.0/18 174 -38.206.128.0/22 9009 -38.206.132.0/22 174 -38.206.136.0/21 174 -38.206.144.0/20 174 -38.206.160.0/19 174 -38.206.192.0/18 174 -38.207.0.0/16 174 -38.208.0.0/13 174 -38.216.0.0/16 174 -38.217.0.0/17 174 -38.217.128.0/19 174 -38.217.160.0/20 174 -38.217.176.0/21 174 -38.217.184.0/22 174 -38.217.188.0/24 53968 -38.217.189.0/24 174 -38.217.190.0/23 174 -38.217.192.0/18 174 -38.218.0.0/15 174 -38.220.0.0/14 174 -38.224.0.0/14 174 -38.228.0.0/16 174 -38.229.0.0/16 23028 -38.230.0.0/15 174 -38.232.0.0/13 174 -38.240.0.0/18 31798 -38.240.64.0/21 395800 -38.240.72.0/21 174 -38.240.80.0/20 174 -38.240.96.0/19 174 -38.240.128.0/21 174 -38.240.136.0/21 40926 -38.240.144.0/20 11325 -38.240.160.0/20 4877 -38.240.176.0/21 395111 -38.240.184.0/21 395800 -38.240.192.0/19 174 -38.240.224.0/21 54133 -38.240.232.0/21 174 -38.240.240.0/20 40545 -38.241.0.0/16 174 -38.242.0.0/22 174 -38.242.4.0/23 174 -38.242.6.0/24 174 -38.242.7.0/24 64249 -38.242.8.0/22 25808 -38.242.12.0/24 64249 -38.242.13.0/24 395717 -38.242.14.0/24 395697 -38.242.15.0/24 174 -38.242.16.0/23 174 -38.242.18.0/24 64249 -38.242.19.0/24 40004 -38.242.20.0/24 18684 -38.242.21.0/24 395213 -38.242.22.0/24 174 -38.242.23.0/24 54255 -38.242.24.0/24 64249 -38.242.25.0/24 174 -38.242.26.0/23 174 -38.242.28.0/22 174 -38.242.32.0/19 174 -38.242.64.0/18 174 -38.242.128.0/17 174 -38.243.0.0/16 174 -38.244.0.0/14 174 -38.248.0.0/13 174 -39.0.32.0/24 133741 -39.0.110.0/24 133948 -39.0.119.0/24 133948 -39.0.120.0/24 133948 -39.0.150.0/24 133955 -39.1.0.0/16 18182 -39.2.128.0/17 4725 -39.3.0.0/16 4725 -39.4.0.0/14 4766 -39.8.0.0/13 9674 -39.16.0.0/13 4766 -39.32.0.0/12 45595 -39.48.0.0/13 45595 -39.56.0.0/14 45595 -39.60.0.0/15 45595 -39.62.0.0/19 45814 -39.62.32.0/21 45814 -39.62.40.0/22 55714 -39.62.44.0/23 55714 -39.62.46.0/23 45595 -39.62.48.0/23 45595 -39.62.50.0/23 55714 -39.62.52.0/24 55714 -39.62.53.0/24 45595 -39.62.54.0/23 45595 -39.62.56.0/22 45595 -39.62.60.0/22 55714 -39.62.64.0/18 45595 -39.62.128.0/17 45595 -39.63.0.0/16 45595 -39.64.0.0/11 4837 -39.96.0.0/13 37963 -39.104.0.0/14 37963 -39.108.0.0/16 37963 -39.109.0.0/19 133779 -39.109.32.0/23 133779 -39.109.96.0/22 209484 -39.109.104.0/22 133115 -39.109.112.0/22 133115 -39.109.116.0/23 133115 -39.109.120.0/23 55649 -39.109.122.0/23 133115 -39.109.124.0/23 137969 -39.109.126.0/23 133115 -39.109.128.0/17 55430 -39.110.0.0/15 2527 -39.112.0.0/15 9318 -39.114.0.0/16 9318 -39.115.0.0/23 9318 -39.115.2.0/24 9958 -39.115.3.0/24 9318 -39.115.4.0/22 9318 -39.115.8.0/21 9318 -39.115.16.0/20 9318 -39.115.32.0/19 9318 -39.115.64.0/18 9318 -39.115.128.0/18 9318 -39.115.192.0/20 9318 -39.115.208.0/22 9318 -39.115.212.0/24 38100 -39.115.213.0/24 9318 -39.115.214.0/23 9318 -39.115.216.0/21 9318 -39.115.224.0/19 9318 -39.116.0.0/16 9318 -39.117.0.0/18 9318 -39.117.64.0/22 9318 -39.117.68.0/23 9318 -39.117.70.0/24 9318 -39.117.71.0/24 9272 -39.117.72.0/21 9318 -39.117.80.0/20 9318 -39.117.96.0/19 9318 -39.117.128.0/17 9318 -39.118.0.0/15 9318 -39.120.0.0/14 9318 -39.124.0.0/15 9318 -39.126.0.0/16 7562 -39.127.0.0/22 45363 -39.127.4.0/22 9318 -39.127.8.0/21 9318 -39.127.16.0/20 9318 -39.127.32.0/19 9318 -39.127.64.0/19 9318 -39.127.96.0/20 9318 -39.127.112.0/21 9318 -39.127.120.0/23 9318 -39.127.122.0/24 9318 -39.127.123.0/24 38702 -39.127.124.0/22 9318 -39.127.128.0/18 9318 -39.127.192.0/19 9318 -39.127.224.0/20 9318 -39.127.240.0/21 9318 -39.127.248.0/24 9318 -39.127.249.0/24 23600 -39.127.250.0/23 9318 -39.127.252.0/22 9318 -39.128.0.0/14 9808 -39.132.0.0/15 9808 -39.134.0.0/21 9808 -39.134.8.0/21 56047 -39.134.16.0/24 56047 -39.134.17.0/24 9808 -39.134.18.0/23 9808 -39.134.20.0/22 9808 -39.134.24.0/23 9808 -39.134.26.0/23 56042 -39.134.28.0/22 56042 -39.134.32.0/21 9808 -39.134.40.0/23 9808 -39.134.42.0/23 56040 -39.134.44.0/22 56040 -39.134.48.0/23 56040 -39.134.50.0/23 56044 -39.134.52.0/22 56044 -39.134.56.0/22 56044 -39.134.60.0/23 56044 -39.134.62.0/23 132525 -39.134.64.0/22 132525 -39.134.68.0/24 132525 -39.134.69.0/24 56046 -39.134.70.0/23 56046 -39.134.72.0/21 56046 -39.134.80.0/22 56046 -39.134.84.0/23 56046 -39.134.86.0/23 24400 -39.134.88.0/22 24400 -39.134.92.0/22 9808 -39.134.96.0/19 9808 -39.134.128.0/22 9808 -39.134.132.0/23 9808 -39.134.134.0/24 9808 -39.134.135.0/24 56048 -39.134.136.0/22 9808 -39.134.140.0/23 38019 -39.134.142.0/24 38019 -39.134.143.0/24 24444 -39.134.144.0/21 24444 -39.134.152.0/23 24444 -39.134.154.0/23 9808 -39.134.156.0/22 9808 -39.134.160.0/21 134810 -39.134.168.0/21 9808 -39.134.176.0/21 56041 -39.134.184.0/23 56041 -39.134.186.0/24 56041 -39.134.187.0/24 24547 -39.134.188.0/22 24547 -39.134.192.0/22 24547 -39.134.196.0/22 9808 -39.134.200.0/21 9808 -39.134.208.0/23 9808 -39.134.210.0/23 24445 -39.134.212.0/22 24445 -39.134.216.0/21 24445 -39.134.224.0/21 24445 -39.134.232.0/22 24445 -39.134.236.0/22 9808 -39.134.240.0/20 56047 -39.135.0.0/22 9808 -39.135.4.0/23 56047 -39.135.6.0/23 9808 -39.135.8.0/21 9808 -39.135.16.0/20 9808 -39.135.32.0/20 9808 -39.135.48.0/21 9808 -39.135.56.0/24 9808 -39.135.57.0/24 134810 -39.135.58.0/23 56040 -39.135.60.0/22 56040 -39.135.64.0/22 56040 -39.135.68.0/22 24547 -39.135.72.0/21 9808 -39.135.80.0/20 9808 -39.135.96.0/24 9808 -39.135.97.0/24 56041 -39.135.98.0/23 56041 -39.135.100.0/23 56041 -39.135.102.0/24 56041 -39.135.103.0/24 24444 -39.135.104.0/21 24444 -39.135.112.0/23 24444 -39.135.114.0/24 24444 -39.135.115.0/24 56044 -39.135.116.0/24 56044 -39.135.117.0/24 9808 -39.135.118.0/23 24400 -39.135.120.0/22 24400 -39.135.124.0/23 24400 -39.135.126.0/23 56044 -39.135.128.0/22 56044 -39.135.132.0/22 132525 -39.135.136.0/23 132525 -39.135.138.0/23 9808 -39.135.140.0/22 9808 -39.135.144.0/21 9808 -39.135.152.0/22 9808 -39.135.156.0/24 9808 -39.135.157.0/24 24444 -39.135.158.0/23 24444 -39.135.160.0/22 24444 -39.135.164.0/23 24444 -39.135.166.0/24 24444 -39.135.167.0/24 24445 -39.135.168.0/21 24445 -39.135.176.0/21 24445 -39.135.184.0/23 24445 -39.135.186.0/24 9808 -39.135.187.0/24 56042 -39.135.188.0/22 56042 -39.135.192.0/20 9808 -39.135.208.0/21 9808 -39.135.216.0/23 9808 -39.135.218.0/23 24400 -39.135.220.0/23 24400 -39.135.222.0/23 9808 -39.135.224.0/21 9808 -39.135.232.0/22 9808 -39.135.236.0/23 9808 -39.135.238.0/23 56048 -39.135.240.0/23 56048 -39.135.242.0/24 56048 -39.135.243.0/24 9808 -39.135.244.0/22 9808 -39.135.248.0/21 9808 -39.136.0.0/23 9808 -39.136.2.0/24 9808 -39.136.3.0/24 56041 -39.136.4.0/23 9808 -39.136.6.0/24 56041 -39.136.7.0/24 9808 -39.136.8.0/21 9808 -39.136.16.0/23 9808 -39.136.18.0/24 9808 -39.136.19.0/24 24444 -39.136.20.0/22 24444 -39.136.24.0/21 24444 -39.136.32.0/19 9808 -39.136.64.0/18 9808 -39.136.128.0/17 9808 -39.137.0.0/21 56044 -39.137.8.0/23 56044 -39.137.10.0/23 9808 -39.137.12.0/22 9808 -39.137.16.0/23 9808 -39.137.18.0/23 56042 -39.137.20.0/23 56042 -39.137.22.0/24 56042 -39.137.23.0/24 9808 -39.137.24.0/22 9808 -39.137.28.0/22 56040 -39.137.32.0/23 56040 -39.137.34.0/24 56040 -39.137.35.0/24 24400 -39.137.36.0/23 24400 -39.137.38.0/23 9808 -39.137.40.0/21 9808 -39.137.48.0/20 9808 -39.137.64.0/23 9808 -39.137.66.0/23 56048 -39.137.68.0/23 38019 -39.137.70.0/24 38019 -39.137.71.0/24 9808 -39.137.72.0/22 9808 -39.137.76.0/22 24444 -39.137.80.0/23 24444 -39.137.82.0/24 24444 -39.137.83.0/24 134810 -39.137.84.0/22 134810 -39.137.88.0/22 9808 -39.137.92.0/23 9808 -39.137.94.0/24 56041 -39.137.95.0/24 24547 -39.137.96.0/22 24547 -39.137.100.0/22 9808 -39.137.104.0/21 9808 -39.137.112.0/22 56041 -39.137.116.0/22 9808 -39.137.120.0/22 24445 -39.137.124.0/22 9808 -39.137.128.0/20 9808 -39.137.144.0/24 9808 -39.137.145.0/24 24547 -39.137.146.0/23 24445 -39.137.148.0/22 24445 -39.137.152.0/21 24445 -39.137.160.0/22 24445 -39.137.164.0/24 24547 -39.137.165.0/24 9808 -39.137.166.0/23 9808 -39.137.168.0/21 9808 -39.137.176.0/20 9808 -39.137.192.0/18 9808 -39.138.0.0/15 9808 -39.140.0.0/15 9808 -39.142.0.0/16 9808 -39.143.0.0/23 56046 -39.143.2.0/23 9808 -39.143.4.0/23 9808 -39.143.6.0/23 56048 -39.143.8.0/23 56048 -39.143.10.0/24 56048 -39.143.11.0/24 9808 -39.143.12.0/24 24400 -39.143.13.0/24 9808 -39.143.14.0/23 9808 -39.143.16.0/22 9808 -39.143.20.0/24 56046 -39.143.21.0/24 56048 -39.143.22.0/24 9808 -39.143.23.0/24 24400 -39.143.24.0/21 9808 -39.143.32.0/19 9808 -39.143.64.0/18 9808 -39.143.128.0/17 9808 -39.144.0.0/24 24444 -39.144.1.0/24 9808 -39.144.2.0/23 9808 -39.144.4.0/22 9808 -39.144.8.0/22 9808 -39.144.12.0/24 9808 -39.144.13.0/24 56040 -39.144.14.0/23 9808 -39.144.16.0/24 56040 -39.144.17.0/24 9808 -39.144.18.0/23 9808 -39.144.20.0/24 9808 -39.144.21.0/24 24445 -39.144.22.0/23 24445 -39.144.24.0/23 24445 -39.144.26.0/23 9808 -39.144.28.0/22 9808 -39.144.32.0/19 9808 -39.144.64.0/18 9808 -39.144.128.0/17 9808 -39.145.0.0/16 9808 -39.146.0.0/15 9808 -39.148.0.0/16 24445 -39.149.0.0/16 9808 -39.150.0.0/15 9808 -39.152.0.0/16 56044 -39.153.0.0/17 56044 -39.153.128.0/17 9808 -39.154.0.0/16 9808 -39.155.0.0/17 9808 -39.155.128.0/17 56048 -39.156.0.0/14 9808 -39.160.0.0/15 9808 -39.162.0.0/15 24445 -39.164.0.0/15 24445 -39.166.0.0/15 9808 -39.168.0.0/15 9808 -39.170.0.0/15 56041 -39.172.0.0/14 56041 -39.176.0.0/14 9808 -39.180.0.0/14 56041 -39.184.0.0/13 56041 -39.192.0.0/10 23693 -40.0.0.0/10 4249 -40.64.0.0/15 8075 -40.66.0.0/18 8075 -40.66.64.0/20 8075 -40.66.80.0/21 8075 -40.66.88.0/22 8075 -40.66.92.0/24 8075 -40.66.93.0/24 8068 -40.66.94.0/23 8075 -40.66.96.0/19 8075 -40.66.128.0/17 8075 -40.67.0.0/16 8075 -40.68.0.0/14 8075 -40.72.0.0/15 58593 -40.74.0.0/15 8075 -40.76.0.0/14 8075 -40.80.0.0/13 8075 -40.88.0.0/15 8075 -40.90.0.0/22 8075 -40.90.4.0/24 8068 -40.90.5.0/24 8075 -40.90.6.0/23 8075 -40.90.8.0/21 8075 -40.90.16.0/20 8075 -40.90.32.0/19 8075 -40.90.64.0/18 8075 -40.90.128.0/17 8075 -40.91.0.0/16 8075 -40.92.0.0/14 8075 -40.96.0.0/12 8075 -40.112.0.0/13 8075 -40.120.0.0/14 8075 -40.124.0.0/16 8075 -40.125.0.0/17 8075 -40.125.128.0/17 58593 -40.126.0.0/18 8075 -40.126.64.0/18 58593 -40.126.128.0/17 8075 -40.127.0.0/16 8075 -40.128.0.0/17 7029 -40.128.128.0/18 7029 -40.128.192.0/20 7029 -40.128.208.0/22 7029 -40.128.212.0/23 7029 -40.128.214.0/24 394342 -40.128.215.0/24 7029 -40.128.216.0/21 7029 -40.128.224.0/20 7029 -40.128.240.0/22 7029 -40.128.244.0/23 7029 -40.128.246.0/24 30373 -40.128.247.0/24 7029 -40.128.248.0/21 7029 -40.129.0.0/17 7029 -40.129.128.0/19 7029 -40.129.160.0/24 14822 -40.129.161.0/24 7029 -40.129.162.0/23 7029 -40.129.164.0/22 7029 -40.129.168.0/21 7029 -40.129.176.0/21 7029 -40.129.184.0/22 7029 -40.129.188.0/23 7029 -40.129.190.0/24 54673 -40.129.191.0/24 7029 -40.129.192.0/18 7029 -40.130.0.0/17 7029 -40.130.128.0/19 7029 -40.130.160.0/20 7029 -40.130.176.0/21 7029 -40.130.184.0/22 7029 -40.130.188.0/23 7029 -40.130.190.0/24 46940 -40.130.191.0/24 63302 -40.130.192.0/18 7029 -40.131.0.0/16 7029 -40.132.0.0/16 7029 -40.133.0.0/19 7029 -40.133.32.0/21 7349 -40.133.40.0/21 7029 -40.133.48.0/20 7029 -40.133.64.0/18 7029 -40.133.128.0/17 7029 -40.134.0.0/16 7029 -40.135.0.0/20 7029 -40.135.16.0/23 7029 -40.135.18.0/24 14439 -40.135.19.0/24 7029 -40.135.20.0/22 7029 -40.135.24.0/24 7029 -40.135.25.0/24 7896 -40.135.26.0/23 7029 -40.135.28.0/22 7029 -40.135.32.0/19 7029 -40.135.64.0/18 7029 -40.135.128.0/19 7029 -40.135.160.0/20 7029 -40.135.176.0/21 7029 -40.135.184.0/24 394877 -40.135.185.0/24 7029 -40.135.186.0/23 7029 -40.135.188.0/22 7029 -40.135.192.0/18 7029 -40.136.0.0/19 7029 -40.136.32.0/23 1818 -40.136.34.0/23 7029 -40.136.36.0/22 7029 -40.136.40.0/21 7029 -40.136.48.0/20 7029 -40.136.64.0/18 7029 -40.136.128.0/18 7029 -40.136.192.0/22 7029 -40.136.196.0/23 7029 -40.136.198.0/24 393278 -40.136.199.0/24 7029 -40.136.200.0/21 7029 -40.136.208.0/20 7029 -40.136.224.0/19 7029 -40.137.0.0/16 7029 -40.138.0.0/17 7029 -40.138.128.0/21 7029 -40.138.136.0/24 32196 -40.138.137.0/24 7029 -40.138.138.0/23 7029 -40.138.140.0/22 7029 -40.138.144.0/20 7029 -40.138.160.0/19 7029 -40.138.192.0/20 7029 -40.138.208.0/21 7029 -40.138.216.0/22 7029 -40.138.224.0/19 7029 -40.139.0.0/17 7029 -40.139.128.0/18 7029 -40.139.192.0/19 7029 -40.139.224.0/20 7029 -40.139.240.0/22 7029 -40.139.244.0/24 393486 -40.139.245.0/24 7029 -40.139.246.0/23 7029 -40.139.248.0/21 7029 -40.140.0.0/17 7029 -40.140.128.0/20 7029 -40.140.144.0/24 62895 -40.140.145.0/24 7029 -40.140.146.0/23 7029 -40.140.148.0/22 7029 -40.140.152.0/22 7029 -40.140.156.0/23 7029 -40.140.158.0/24 32103 -40.140.159.0/24 7029 -40.140.160.0/19 7029 -40.140.192.0/18 7029 -40.141.0.0/19 7029 -40.141.32.0/20 7029 -40.141.48.0/21 7029 -40.141.56.0/23 7029 -40.141.58.0/24 21609 -40.141.59.0/24 7029 -40.141.60.0/22 7029 -40.141.64.0/18 7029 -40.141.128.0/18 7029 -40.141.192.0/19 7029 -40.141.224.0/20 7029 -40.141.240.0/22 7029 -40.141.244.0/23 7029 -40.141.246.0/24 40662 -40.141.247.0/24 7029 -40.141.248.0/21 7029 -40.142.0.0/21 7029 -40.142.8.0/22 16695 -40.142.12.0/22 7029 -40.142.16.0/20 7349 -40.142.32.0/21 7349 -40.142.40.0/24 7181 -40.142.41.0/24 7349 -40.142.42.0/23 7349 -40.142.44.0/22 11383 -40.142.48.0/22 7349 -40.142.52.0/22 26094 -40.142.56.0/22 19019 -40.142.60.0/22 7349 -40.142.64.0/21 30496 -40.142.72.0/23 7349 -40.142.74.0/24 7181 -40.142.75.0/24 7349 -40.142.76.0/22 17378 -40.142.80.0/21 19019 -40.142.88.0/21 17378 -40.142.128.0/17 7029 -40.143.0.0/19 7349 -40.143.32.0/20 7349 -40.143.48.0/21 17378 -40.143.56.0/21 7349 -40.143.64.0/21 7029 -40.143.74.0/23 7349 -40.143.78.0/24 395382 -40.143.79.0/24 27582 -40.143.80.0/22 7349 -40.143.84.0/24 7349 -40.143.85.0/24 11958 -40.143.86.0/23 7349 -40.143.88.0/22 7349 -40.143.92.0/23 7349 -40.143.94.0/24 7181 -40.143.95.0/24 7349 -40.143.96.0/20 7349 -40.143.112.0/24 33083 -40.143.113.0/24 7349 -40.143.114.0/23 7349 -40.143.116.0/22 7349 -40.143.120.0/21 7349 -40.143.128.0/18 7349 -40.143.192.0/21 7349 -40.143.200.0/22 7349 -40.143.204.0/23 7349 -40.143.206.0/24 7349 -40.143.207.0/24 11958 -40.143.208.0/20 7349 -40.143.224.0/20 7349 -40.143.240.0/24 7181 -40.143.241.0/24 7349 -40.143.242.0/23 7349 -40.143.244.0/22 7349 -40.143.248.0/24 7181 -40.143.249.0/24 33693 -40.143.250.0/23 19019 -40.144.0.0/12 4249 -40.160.0.0/11 4249 -40.192.0.0/11 4249 -40.224.0.0/12 4249 -40.240.0.0/13 4249 -40.248.0.0/14 4249 -40.252.0.0/20 4249 -40.252.16.0/21 4249 -40.252.24.0/24 5466 -40.252.25.0/24 4249 -40.252.26.0/23 4249 -40.252.28.0/22 4249 -40.252.32.0/19 4249 -40.252.64.0/18 4249 -40.252.128.0/17 4249 -40.253.0.0/16 4249 -40.254.0.0/15 4249 -41.0.0.0/16 36994 -41.1.0.0/16 29975 -41.2.0.0/15 29975 -41.4.0.0/14 29975 -41.8.0.0/15 29975 -41.10.0.0/16 29975 -41.12.0.0/14 29975 -41.17.0.0/16 29975 -41.18.0.0/16 29975 -41.21.128.0/17 36994 -41.22.0.0/15 29975 -41.26.0.0/15 29975 -41.28.0.0/14 29975 -41.32.0.0/16 8452 -41.33.0.0/20 8452 -41.33.16.0/23 8452 -41.33.18.0/24 8452 -41.33.19.0/24 328062 -41.33.20.0/22 8452 -41.33.24.0/21 8452 -41.33.32.0/19 8452 -41.33.64.0/18 8452 -41.33.128.0/17 8452 -41.34.0.0/15 8452 -41.36.0.0/14 8452 -41.40.0.0/13 8452 -41.48.0.0/13 37168 -41.56.0.0/17 37105 -41.56.136.0/21 37105 -41.56.144.0/23 37105 -41.56.148.0/22 37105 -41.56.152.0/21 37105 -41.56.160.0/19 37105 -41.56.192.0/18 33762 -41.57.0.0/23 22750 -41.57.6.0/23 22750 -41.57.10.0/23 22750 -41.57.12.0/22 22750 -41.57.16.0/20 22750 -41.57.32.0/22 22750 -41.57.36.0/23 22750 -41.57.38.0/24 22750 -41.57.40.0/24 22750 -41.57.42.0/23 22750 -41.57.46.0/23 22750 -41.57.50.0/24 22750 -41.57.60.0/24 22750 -41.57.64.0/22 36986 -41.57.68.0/23 36986 -41.57.80.0/20 37410 -41.57.96.0/20 36866 -41.57.120.0/22 37472 -41.57.124.0/22 37442 -41.57.128.0/23 22750 -41.57.131.0/24 22750 -41.57.132.0/23 22750 -41.57.134.0/24 22750 -41.57.136.0/23 22750 -41.57.140.0/23 22750 -41.57.145.0/24 22750 -41.57.146.0/23 22750 -41.57.148.0/24 22750 -41.57.150.0/23 22750 -41.57.153.0/24 22750 -41.57.154.0/24 22750 -41.57.156.0/24 22750 -41.57.160.0/24 22750 -41.57.180.0/23 22750 -41.57.188.0/22 36937 -41.57.192.0/18 37103 -41.58.0.0/16 36923 -41.59.0.0/19 33765 -41.59.32.0/20 33765 -41.59.48.0/21 33765 -41.59.56.0/22 33765 -41.59.60.0/24 33765 -41.59.61.0/24 327795 -41.59.62.0/23 33765 -41.59.64.0/18 33765 -41.59.128.0/18 33765 -41.59.192.0/19 33765 -41.59.224.0/20 33765 -41.59.240.0/21 33765 -41.59.248.0/23 33765 -41.59.250.0/24 33765 -41.59.251.0/24 327795 -41.59.252.0/22 327795 -41.60.0.0/22 37146 -41.60.4.0/23 37146 -41.60.6.0/24 37146 -41.60.7.0/24 30844 -41.60.8.0/22 37146 -41.60.12.0/24 30844 -41.60.13.0/24 37146 -41.60.14.0/23 37146 -41.60.16.0/24 37146 -41.60.17.0/24 30844 -41.60.18.0/24 30844 -41.60.19.0/24 37146 -41.60.20.0/22 37146 -41.60.24.0/21 30844 -41.60.32.0/19 30969 -41.60.64.0/18 30969 -41.60.128.0/22 37146 -41.60.132.0/24 37146 -41.60.133.0/24 30844 -41.60.134.0/23 30844 -41.60.136.0/21 30844 -41.60.144.0/20 30844 -41.60.160.0/19 30844 -41.60.192.0/22 37146 -41.60.196.0/23 37146 -41.60.198.0/23 30844 -41.60.200.0/21 30844 -41.60.208.0/20 30844 -41.60.224.0/22 30844 -41.60.228.0/23 30844 -41.60.230.0/24 37146 -41.60.231.0/24 30844 -41.60.232.0/21 30844 -41.60.240.0/20 30844 -41.61.0.0/16 36943 -41.62.0.0/16 37705 -41.63.0.0/18 37532 -41.63.64.0/18 22822 -41.63.128.0/20 37037 -41.63.144.0/24 37037 -41.63.146.0/23 37037 -41.63.148.0/22 37037 -41.63.157.0/24 37037 -41.63.158.0/23 37037 -41.63.160.0/19 36907 -41.63.192.0/18 37009 -41.64.0.0/15 36992 -41.66.0.0/18 29571 -41.66.64.0/18 22750 -41.66.128.0/20 37179 -41.66.144.0/21 37179 -41.66.152.0/22 37179 -41.66.156.0/23 37179 -41.66.158.0/24 65536 -41.66.159.0/24 37179 -41.66.160.0/19 37179 -41.66.192.0/18 29614 -41.67.0.0/18 37197 -41.67.80.0/21 24863 -41.67.128.0/20 30998 -41.67.144.0/24 30998 -41.67.175.0/24 30998 -41.67.176.0/23 198394 -41.67.178.0/23 198504 -41.67.180.0/22 198504 -41.67.192.0/18 15964 -41.68.0.0/15 24835 -41.70.8.0/22 37215 -41.70.12.0/23 37215 -41.70.14.0/23 37098 -41.70.16.0/20 37098 -41.70.32.0/20 327941 -41.70.64.0/21 37098 -41.70.97.0/24 37215 -41.70.128.0/17 37081 -41.71.0.0/17 37053 -41.72.0.0/19 37155 -41.72.32.0/20 37155 -41.72.52.0/23 198381 -41.72.54.0/23 198394 -41.72.56.0/23 37155 -41.72.58.0/24 198381 -41.72.59.0/24 198394 -41.72.60.0/23 37155 -41.72.62.0/24 37155 -41.72.64.0/19 8452 -41.72.96.0/19 37154 -41.72.128.0/19 37153 -41.72.192.0/19 30844 -41.72.224.0/24 37169 -41.72.225.0/24 38176 -41.72.240.0/23 37169 -41.73.0.0/20 37004 -41.73.32.0/20 37105 -41.73.48.0/22 37105 -41.73.52.0/24 37105 -41.73.53.0/24 37515 -41.73.54.0/23 37105 -41.73.56.0/21 37105 -41.73.96.0/19 30985 -41.73.128.0/21 30988 -41.73.156.0/23 30988 -41.73.158.0/23 37350 -41.73.160.0/19 36965 -41.73.192.0/19 36930 -41.73.224.0/20 16284 -41.73.240.0/22 16284 -41.73.244.0/24 36994 -41.73.245.0/24 16284 -41.73.246.0/23 16284 -41.73.248.0/22 16284 -41.73.252.0/23 16284 -41.74.0.0/20 37292 -41.74.16.0/20 37037 -41.74.44.0/24 37544 -41.74.48.0/20 36963 -41.74.64.0/20 37284 -41.74.80.0/20 37263 -41.74.112.0/20 327771 -41.74.128.0/20 37517 -41.74.144.0/20 2018 -41.74.160.0/20 37228 -41.74.176.0/20 37053 -41.74.192.0/21 37235 -41.74.200.0/23 37235 -41.74.202.0/24 37235 -41.74.203.0/24 30031 -41.74.204.0/22 37235 -41.74.208.0/20 37037 -41.74.240.0/20 11259 -41.75.0.0/20 33781 -41.75.48.0/20 33786 -41.75.64.0/20 37281 -41.75.80.0/20 37282 -41.75.96.0/20 37276 -41.75.112.0/20 37187 -41.75.128.0/20 36968 -41.75.144.0/20 37165 -41.75.160.0/19 37113 -41.75.192.0/24 16284 -41.75.196.0/23 36994 -41.75.199.0/24 16284 -41.75.200.0/21 16284 -41.75.208.0/20 37133 -41.76.0.0/21 42235 -41.76.8.0/21 37503 -41.76.16.0/21 37057 -41.76.24.0/23 37162 -41.76.26.0/24 37162 -41.76.32.0/21 37333 -41.76.40.0/21 30999 -41.76.56.0/21 37525 -41.76.64.0/21 37194 -41.76.80.0/23 37209 -41.76.82.0/24 37209 -41.76.85.0/24 37209 -41.76.86.0/23 37209 -41.76.88.0/21 37213 -41.76.96.0/21 37236 -41.76.104.0/21 327979 -41.76.112.0/21 37172 -41.76.128.0/21 37199 -41.76.144.0/21 37223 -41.76.152.0/21 37230 -41.76.168.0/21 37219 -41.76.176.0/21 37225 -41.76.192.0/22 37280 -41.76.196.0/24 37280 -41.76.198.0/24 37280 -41.76.200.0/21 37239 -41.76.208.0/21 37611 -41.76.216.0/21 37254 -41.76.224.0/21 327693 -41.76.240.0/21 14988 -41.76.248.0/21 37286 -41.77.0.0/21 37287 -41.77.8.0/21 37098 -41.77.16.0/21 37303 -41.77.24.0/21 37673 -41.77.32.0/21 42235 -41.77.40.0/21 37345 -41.77.48.0/21 37670 -41.77.56.0/21 36985 -41.77.64.0/21 37320 -41.77.72.0/21 37063 -41.77.80.0/21 327741 -41.77.88.0/21 36963 -41.77.96.0/21 37515 -41.77.111.0/24 3741 -41.77.112.0/21 36666 -41.77.128.0/21 37110 -41.77.136.0/22 33785 -41.77.140.0/23 33785 -41.77.142.0/24 33785 -41.77.144.0/21 30844 -41.77.152.0/21 32653 -41.77.168.0/21 37398 -41.77.184.0/21 37430 -41.77.192.0/21 37213 -41.77.200.0/21 37333 -41.77.208.0/22 37475 -41.77.220.0/22 37447 -41.77.232.0/21 37510 -41.78.4.0/22 37353 -41.78.8.0/22 37106 -41.78.16.0/22 37119 -41.78.20.0/22 37191 -41.78.24.0/22 37156 -41.78.28.0/22 37159 -41.78.36.0/22 37157 -41.78.40.0/22 37161 -41.78.48.0/21 37163 -41.78.57.0/24 37440 -41.78.58.0/23 37440 -41.78.60.0/22 6762 -41.78.64.0/24 37218 -41.78.72.0/22 37371 -41.78.76.0/22 37184 -41.78.80.0/22 37018 -41.78.84.0/22 37208 -41.78.88.0/22 37192 -41.78.100.0/22 37200 -41.78.108.0/22 37211 -41.78.112.0/22 37214 -41.78.116.0/22 37205 -41.78.120.0/23 22351 -41.78.124.0/22 37232 -41.78.128.0/22 37589 -41.78.136.0/22 37229 -41.78.140.0/22 37275 -41.78.148.0/24 37250 -41.78.156.0/22 37249 -41.78.164.0/22 328013 -41.78.168.0/22 36909 -41.78.172.0/22 36920 -41.78.184.0/22 37675 -41.78.188.0/22 37271 -41.78.192.0/22 37453 -41.78.196.0/24 22351 -41.78.197.0/24 37414 -41.78.198.0/24 22351 -41.78.199.0/24 37414 -41.78.200.0/22 37276 -41.78.204.0/22 37475 -41.78.208.0/22 37308 -41.78.212.0/22 327698 -41.78.216.0/22 37187 -41.78.220.0/22 37317 -41.78.224.0/22 37443 -41.78.228.0/22 37491 -41.78.232.0/22 37302 -41.78.240.0/22 37390 -41.78.244.0/22 327987 -41.78.248.0/22 37294 -41.78.252.0/22 37296 -41.79.4.0/22 37209 -41.79.8.0/22 37305 -41.79.16.0/22 37317 -41.79.20.0/22 37314 -41.79.24.0/22 37406 -41.79.28.0/22 30969 -41.79.32.0/22 327760 -41.79.36.0/22 37053 -41.79.44.0/22 37336 -41.79.48.0/23 37337 -41.79.50.0/24 37337 -41.79.51.0/24 37529 -41.79.56.0/22 327770 -41.79.60.0/23 37343 -41.79.62.0/24 37343 -41.79.64.0/22 37347 -41.79.68.0/22 37349 -41.79.76.0/22 37352 -41.79.80.0/22 37358 -41.79.88.0/23 37712 -41.79.90.0/24 37712 -41.79.92.0/22 37363 -41.79.96.0/22 37373 -41.79.104.0/22 37368 -41.79.108.0/22 33762 -41.79.116.0/22 37377 -41.79.120.0/22 37376 -41.79.124.0/22 37575 -41.79.128.0/22 37475 -41.79.132.0/22 30969 -41.79.136.0/22 37395 -41.79.148.0/22 37403 -41.79.155.0/24 37407 -41.79.156.0/22 37053 -41.79.160.0/22 37387 -41.79.164.0/22 328013 -41.79.168.0/23 37156 -41.79.170.0/23 198394 -41.79.172.0/22 37411 -41.79.180.0/23 10474 -41.79.182.0/24 37412 -41.79.183.0/24 10474 -41.79.184.0/22 37576 -41.79.188.0/22 37184 -41.79.192.0/22 37417 -41.79.196.0/22 37425 -41.79.200.0/22 37427 -41.79.204.0/24 37209 -41.79.206.0/23 198504 -41.79.208.0/22 37437 -41.79.212.0/22 328366 -41.79.216.0/22 37424 -41.79.220.0/22 327794 -41.79.224.0/22 37545 -41.79.228.0/22 37165 -41.79.232.0/22 37677 -41.79.236.0/22 37141 -41.79.240.0/22 37236 -41.79.244.0/22 3491 -41.79.248.0/23 3491 -41.79.250.0/24 3491 -41.79.252.0/22 37137 -41.80.0.0/19 33771 -41.80.32.0/21 37061 -41.80.40.0/21 33771 -41.80.48.0/20 33771 -41.80.64.0/18 33771 -41.80.128.0/17 33771 -41.81.0.0/16 33771 -41.82.0.0/15 8346 -41.84.0.0/18 37179 -41.84.64.0/18 36874 -41.84.128.0/22 30844 -41.84.132.0/24 30844 -41.84.133.0/24 19676 -41.84.134.0/23 30844 -41.84.136.0/21 30844 -41.84.144.0/20 30844 -41.84.192.0/19 37273 -41.84.224.0/19 19711 -41.85.0.0/22 22355 -41.85.4.0/24 328418 -41.85.5.0/24 22355 -41.85.6.0/23 22355 -41.85.8.0/21 22355 -41.85.16.0/20 22355 -41.85.32.0/19 22355 -41.85.64.0/24 328418 -41.85.65.0/24 22355 -41.85.66.0/23 22355 -41.85.68.0/22 22355 -41.85.72.0/21 22355 -41.85.80.0/20 22355 -41.85.96.0/19 22355 -41.85.128.0/19 37525 -41.85.160.0/19 28683 -41.85.192.0/19 37183 -41.85.224.0/20 37225 -41.85.250.0/24 37225 -41.85.252.0/22 37225 -41.86.0.0/19 37203 -41.86.32.0/19 36958 -41.86.96.0/20 10474 -41.86.112.0/20 12258 -41.86.128.0/19 35074 -41.86.160.0/19 22354 -41.86.216.0/21 26106 -41.86.224.0/19 37090 -41.87.0.0/19 36969 -41.87.64.0/19 37248 -41.87.96.0/19 37100 -41.87.128.0/19 36925 -41.87.160.0/19 14988 -41.87.192.0/19 37315 -41.87.224.0/19 37525 -41.89.0.0/16 36914 -41.90.0.0/21 33771 -41.90.8.0/21 37061 -41.90.16.0/20 33771 -41.90.32.0/19 33771 -41.90.64.0/19 33771 -41.90.96.0/19 37061 -41.90.128.0/19 33771 -41.90.160.0/24 33771 -41.90.161.0/24 37061 -41.90.162.0/23 37061 -41.90.164.0/24 33771 -41.90.165.0/24 37061 -41.90.166.0/23 37061 -41.90.168.0/21 33771 -41.90.176.0/20 33771 -41.90.192.0/19 33771 -41.90.224.0/20 37061 -41.90.240.0/20 33771 -41.91.0.0/17 37069 -41.91.128.0/18 37069 -41.91.192.0/19 37069 -41.91.224.0/20 37069 -41.91.244.0/22 37069 -41.91.248.0/23 37069 -41.91.252.0/22 37069 -41.92.0.0/17 36925 -41.92.128.0/24 37034 -41.92.132.0/22 37034 -41.92.152.0/21 37034 -41.92.180.0/22 37034 -41.92.184.0/22 37034 -41.92.196.0/22 15964 -41.92.200.0/24 37034 -41.92.201.0/24 15964 -41.92.203.0/24 37034 -41.92.205.0/24 37034 -41.92.208.0/21 37034 -41.92.216.0/22 15964 -41.92.220.0/24 37034 -41.92.224.0/24 15964 -41.92.236.0/22 37034 -41.92.240.0/23 37034 -41.92.252.0/23 37034 -41.92.254.0/24 37034 -41.93.0.0/17 37182 -41.94.0.0/16 327700 -41.95.0.0/17 36998 -41.95.128.0/24 36998 -41.95.192.0/24 36998 -41.95.194.0/24 36998 -41.95.196.0/23 36998 -41.95.245.0/24 36998 -41.95.246.0/23 36998 -41.95.248.0/21 36998 -41.96.0.0/12 36947 -41.112.0.0/16 2905 -41.113.0.0/16 12091 -41.114.0.0/17 12091 -41.114.128.0/17 2905 -41.115.0.0/17 2905 -41.115.128.0/17 12091 -41.116.0.0/14 2905 -41.120.0.0/13 2905 -41.128.0.0/17 24863 -41.128.128.0/22 24863 -41.128.132.0/24 6127 -41.128.133.0/24 24863 -41.128.134.0/23 24863 -41.128.136.0/21 24863 -41.128.144.0/20 24863 -41.128.160.0/19 24863 -41.128.192.0/20 24863 -41.128.208.0/22 24863 -41.128.212.0/23 24863 -41.128.214.0/24 6127 -41.128.215.0/24 24863 -41.128.216.0/24 24863 -41.128.217.0/24 6127 -41.128.218.0/24 6127 -41.128.219.0/24 24863 -41.128.220.0/22 24863 -41.128.224.0/19 24863 -41.129.0.0/16 24863 -41.130.0.0/15 24863 -41.132.0.0/14 10474 -41.136.0.0/16 23889 -41.137.0.0/18 36884 -41.137.64.0/19 36884 -41.137.96.0/21 36884 -41.137.104.0/23 36884 -41.137.106.0/24 36884 -41.137.107.0/24 198949 -41.137.108.0/22 36884 -41.137.112.0/20 36884 -41.137.128.0/17 36884 -41.138.32.0/19 37385 -41.138.64.0/21 37333 -41.138.72.0/21 36963 -41.138.80.0/21 37124 -41.138.88.0/22 37136 -41.138.92.0/22 36916 -41.138.96.0/19 25543 -41.138.128.0/23 37541 -41.138.130.0/24 8346 -41.138.131.0/24 37541 -41.138.132.0/22 37541 -41.138.136.0/24 37541 -41.138.137.0/24 8346 -41.138.138.0/23 8346 -41.138.140.0/22 8346 -41.138.144.0/24 37541 -41.138.145.0/24 8346 -41.138.146.0/23 8346 -41.138.148.0/22 8346 -41.138.152.0/21 8346 -41.138.161.0/24 20598 -41.138.163.0/24 20598 -41.138.164.0/22 20598 -41.138.168.0/24 17557 -41.138.169.0/24 20598 -41.138.170.0/23 20598 -41.138.172.0/23 20598 -41.138.180.0/22 20598 -41.138.184.0/22 20598 -41.138.188.0/23 20598 -41.138.208.0/21 37122 -41.138.216.0/22 37122 -41.138.220.0/23 37122 -41.138.222.0/24 37122 -41.138.224.0/20 30619 -41.138.240.0/22 12684 -41.138.244.0/23 12684 -41.138.248.0/22 37019 -41.138.252.0/23 204043 -41.138.254.0/23 12684 -41.139.0.0/18 35091 -41.139.128.0/17 37061 -41.140.0.0/17 36903 -41.140.128.0/18 36903 -41.140.192.0/19 36903 -41.140.224.0/20 36903 -41.140.240.0/20 6713 -41.141.0.0/17 36903 -41.141.128.0/18 36903 -41.141.192.0/19 36903 -41.141.224.0/20 36903 -41.141.240.0/21 36903 -41.141.248.0/21 6713 -41.142.0.0/17 36903 -41.142.128.0/18 36903 -41.142.192.0/19 36903 -41.142.224.0/20 36903 -41.142.240.0/20 6713 -41.143.0.0/17 36903 -41.143.128.0/18 36903 -41.143.192.0/19 36903 -41.143.224.0/20 36903 -41.143.240.0/21 36903 -41.143.248.0/21 6713 -41.144.0.0/15 37457 -41.146.0.0/16 37457 -41.147.0.0/17 37457 -41.147.128.0/18 37457 -41.147.192.0/19 37457 -41.147.224.0/19 5713 -41.148.0.0/17 37457 -41.148.128.0/18 5713 -41.148.192.0/20 37457 -41.148.208.0/23 5713 -41.148.210.0/23 37457 -41.148.212.0/23 5713 -41.148.214.0/23 37457 -41.148.216.0/23 5713 -41.148.218.0/24 37457 -41.148.219.0/24 5713 -41.148.220.0/23 5713 -41.148.222.0/24 37457 -41.148.223.0/24 5713 -41.148.224.0/20 37457 -41.148.240.0/20 5713 -41.149.0.0/18 5713 -41.149.64.0/18 37457 -41.149.128.0/19 37457 -41.149.160.0/19 5713 -41.149.192.0/18 37457 -41.150.0.0/22 37457 -41.150.4.0/22 5713 -41.150.8.0/21 37457 -41.150.16.0/21 37457 -41.150.24.0/22 37457 -41.150.28.0/22 5713 -41.150.32.0/19 37457 -41.150.64.0/19 37457 -41.150.96.0/20 37457 -41.150.112.0/21 37457 -41.150.120.0/22 5713 -41.150.124.0/22 37457 -41.150.128.0/19 37457 -41.150.160.0/20 37457 -41.150.176.0/24 5713 -41.150.177.0/24 37457 -41.150.178.0/23 5713 -41.150.180.0/22 5713 -41.150.184.0/21 5713 -41.150.192.0/20 37457 -41.150.208.0/21 5713 -41.150.216.0/21 37457 -41.150.224.0/19 37457 -41.151.0.0/19 37457 -41.151.32.0/20 37457 -41.151.48.0/21 37457 -41.151.56.0/22 37457 -41.151.60.0/23 5713 -41.151.62.0/24 37457 -41.151.63.0/24 5713 -41.151.64.0/19 5713 -41.151.96.0/21 5713 -41.151.104.0/21 37457 -41.151.112.0/21 5713 -41.151.120.0/21 37457 -41.151.128.0/19 5713 -41.151.160.0/20 5713 -41.151.176.0/22 37457 -41.151.180.0/22 5713 -41.151.184.0/22 37457 -41.151.188.0/22 5713 -41.151.192.0/21 5713 -41.151.200.0/21 37457 -41.151.208.0/20 5713 -41.151.224.0/21 37457 -41.151.232.0/21 5713 -41.151.240.0/20 5713 -41.152.0.0/15 36992 -41.154.0.0/16 37079 -41.155.128.0/17 37069 -41.156.0.0/15 37168 -41.158.0.0/16 16058 -41.159.0.0/19 16058 -41.159.32.0/21 16058 -41.159.40.0/22 16058 -41.159.44.0/23 16058 -41.159.46.0/24 16058 -41.159.47.0/24 37169 -41.159.48.0/24 37169 -41.159.49.0/24 16058 -41.159.50.0/23 16058 -41.159.52.0/22 16058 -41.159.56.0/21 16058 -41.159.64.0/18 16058 -41.159.128.0/21 16058 -41.159.136.0/22 16058 -41.159.140.0/23 16058 -41.159.142.0/24 37669 -41.159.143.0/24 16058 -41.159.144.0/20 16058 -41.159.160.0/19 16058 -41.159.192.0/18 16058 -41.160.0.0/13 36937 -41.168.0.0/15 36937 -41.170.0.0/19 36937 -41.170.32.0/22 36937 -41.170.36.0/23 36937 -41.170.38.0/24 328312 -41.170.39.0/24 36937 -41.170.40.0/21 36937 -41.170.48.0/20 36937 -41.170.64.0/18 36937 -41.170.128.0/17 36937 -41.171.0.0/16 36937 -41.172.0.0/15 36937 -41.174.0.0/18 30844 -41.174.64.0/19 30969 -41.174.96.0/19 30844 -41.174.128.0/17 30844 -41.175.0.0/18 30844 -41.175.64.0/18 30969 -41.175.128.0/20 30969 -41.175.144.0/20 30844 -41.175.160.0/19 30844 -41.175.192.0/19 30844 -41.175.224.0/20 30844 -41.175.240.0/21 30844 -41.175.248.0/22 30844 -41.175.252.0/23 30844 -41.175.254.0/24 22351 -41.175.255.0/24 30844 -41.176.0.0/17 36992 -41.176.128.0/24 36992 -41.176.132.0/24 36992 -41.176.134.0/23 36992 -41.176.136.0/21 36992 -41.176.144.0/20 36992 -41.176.161.0/24 36992 -41.176.162.0/23 36992 -41.176.165.0/24 36992 -41.176.166.0/24 36992 -41.176.168.0/21 36992 -41.176.176.0/21 36992 -41.176.185.0/24 36992 -41.176.192.0/18 36992 -41.177.0.0/16 36874 -41.178.0.0/16 24863 -41.179.244.0/23 31065 -41.179.246.0/24 31065 -41.179.251.0/24 31065 -41.179.253.0/24 31065 -41.179.254.0/23 31065 -41.180.0.0/16 36916 -41.181.0.0/16 2905 -41.182.0.0/16 36996 -41.183.0.0/16 37028 -41.184.0.0/16 29091 -41.185.0.0/16 36943 -41.186.0.0/16 36890 -41.187.0.0/16 20928 -41.188.0.0/18 37054 -41.188.64.0/18 29544 -41.188.128.0/20 37084 -41.188.144.0/21 37084 -41.188.152.0/22 37084 -41.188.156.0/23 37084 -41.188.158.0/24 37084 -41.188.159.0/24 198247 -41.188.160.0/21 37084 -41.188.168.0/24 198381 -41.188.169.0/24 37084 -41.188.170.0/23 37084 -41.188.172.0/22 37084 -41.188.176.0/21 37084 -41.188.184.0/22 37084 -41.188.188.0/23 37084 -41.188.190.0/24 37027 -41.188.191.0/24 37084 -41.188.192.0/18 19232 -41.189.0.0/19 36923 -41.189.32.0/19 29571 -41.189.64.0/19 37179 -41.189.160.0/19 30986 -41.189.192.0/22 27822 -41.189.196.0/23 37102 -41.189.206.0/24 37102 -41.189.208.0/24 37102 -41.189.210.0/23 37102 -41.189.212.0/23 37102 -41.189.214.0/24 37102 -41.189.224.0/19 30990 -41.190.1.0/24 37076 -41.190.2.0/23 37076 -41.190.4.0/22 37076 -41.190.8.0/24 37076 -41.190.10.0/23 37076 -41.190.12.0/22 37076 -41.190.16.0/20 37076 -41.190.32.0/23 31856 -41.190.34.0/24 31856 -41.190.35.0/24 37189 -41.190.36.0/22 31856 -41.190.40.0/21 31856 -41.190.48.0/21 31856 -41.190.56.0/23 31856 -41.190.58.0/23 37189 -41.190.60.0/23 31856 -41.190.62.0/23 37024 -41.190.65.0/24 37292 -41.190.66.0/24 37292 -41.190.69.0/24 37032 -41.190.70.0/24 37032 -41.190.80.0/22 37453 -41.190.84.0/22 37026 -41.190.88.0/22 37140 -41.190.92.0/22 37187 -41.190.96.0/19 36999 -41.190.128.0/21 36997 -41.190.136.0/22 36997 -41.190.140.0/24 36997 -41.190.141.0/24 30844 -41.190.142.0/23 36997 -41.190.144.0/21 36997 -41.190.152.0/22 36997 -41.190.156.0/22 30844 -41.190.224.0/24 37034 -41.190.226.0/23 37034 -41.190.228.0/22 37385 -41.190.232.0/23 37638 -41.190.234.0/24 37447 -41.190.235.0/24 37638 -41.190.236.0/22 37037 -41.190.244.0/22 36963 -41.190.248.0/23 37069 -41.191.64.0/22 37604 -41.191.68.0/22 37190 -41.191.72.0/22 30619 -41.191.76.0/22 37063 -41.191.80.0/22 37066 -41.191.84.0/22 37292 -41.191.88.0/22 37116 -41.191.96.0/22 37087 -41.191.101.0/24 37089 -41.191.102.0/23 37089 -41.191.104.0/22 37094 -41.191.116.0/22 37185 -41.191.120.0/22 36958 -41.191.192.0/21 37052 -41.191.200.0/21 37057 -41.191.212.0/23 37674 -41.191.216.0/22 37678 -41.191.220.0/22 37141 -41.191.224.0/21 30844 -41.191.232.0/21 37123 -41.191.240.0/21 37103 -41.191.249.0/24 37164 -41.191.251.0/24 37164 -41.192.0.0/19 29975 -41.192.128.0/19 29975 -41.192.192.0/19 29975 -41.192.248.0/21 29975 -41.193.0.0/17 11845 -41.193.128.0/18 11845 -41.193.192.0/19 11845 -41.193.224.0/20 11845 -41.193.240.0/20 198504 -41.194.0.0/19 22351 -41.194.32.0/20 22351 -41.194.48.0/21 22351 -41.194.56.0/22 22351 -41.194.60.0/23 22351 -41.194.62.0/24 22351 -41.194.63.0/24 37453 -41.194.64.0/18 22351 -41.194.128.0/17 22351 -41.195.0.0/16 2905 -41.196.0.0/19 24863 -41.196.32.0/23 24863 -41.196.34.0/23 37069 -41.196.36.0/22 24863 -41.196.40.0/21 24863 -41.196.48.0/20 24863 -41.196.64.0/18 24863 -41.196.128.0/17 24863 -41.197.0.0/16 36934 -41.198.0.0/23 18922 -41.198.10.0/23 5713 -41.198.12.0/23 5713 -41.198.16.0/20 36877 -41.198.32.0/20 36877 -41.198.50.0/23 36877 -41.198.52.0/22 36877 -41.198.56.0/21 36877 -41.198.64.0/20 5713 -41.198.80.0/22 37379 -41.198.96.0/20 39356 -41.198.116.0/22 39356 -41.198.120.0/22 39356 -41.198.125.0/24 12684 -41.198.126.0/24 12684 -41.198.127.0/24 39356 -41.198.128.0/18 5713 -41.198.192.0/19 5713 -41.198.224.0/20 5713 -41.198.240.0/20 328306 -41.199.0.0/19 36992 -41.199.36.0/23 36992 -41.199.56.0/21 36992 -41.199.96.0/20 36992 -41.199.112.0/24 36992 -41.199.120.0/22 36992 -41.199.124.0/24 36992 -41.199.128.0/17 36992 -41.200.0.0/15 36947 -41.202.0.0/19 36961 -41.202.32.0/19 25818 -41.202.64.0/19 29571 -41.202.96.0/19 36974 -41.202.160.0/19 33788 -41.202.192.0/19 36912 -41.202.224.0/19 36991 -41.203.0.0/19 37153 -41.203.32.0/19 36968 -41.203.64.0/19 37148 -41.203.107.0/24 36993 -41.203.110.0/23 37025 -41.203.112.0/24 37001 -41.203.113.0/24 37056 -41.203.114.0/24 37056 -41.203.115.0/24 37104 -41.203.116.0/24 37104 -41.203.117.0/24 36970 -41.203.118.0/23 37269 -41.203.120.0/23 36970 -41.203.122.0/23 327721 -41.203.128.0/19 37233 -41.203.160.0/20 29918 -41.203.176.0/20 33567 -41.203.192.0/20 36864 -41.203.208.0/20 37061 -41.203.224.0/20 25543 -41.203.240.0/20 36902 -41.204.0.0/19 32398 -41.204.32.0/19 29614 -41.204.64.0/19 15964 -41.204.96.0/19 21042 -41.204.128.0/19 36930 -41.204.160.0/20 36914 -41.204.176.0/21 36914 -41.204.184.0/22 36914 -41.204.188.0/23 36914 -41.204.190.0/23 327945 -41.204.192.0/19 37153 -41.204.224.0/20 36911 -41.204.240.0/21 36911 -41.204.248.0/22 36911 -41.204.252.0/24 36911 -41.204.254.0/24 36911 -41.205.0.0/19 30992 -41.205.32.0/19 36907 -41.205.64.0/19 36905 -41.205.97.0/24 24863 -41.205.98.0/23 24863 -41.205.100.0/23 24863 -41.205.102.0/24 30993 -41.205.103.0/24 24863 -41.205.104.0/24 24863 -41.205.105.0/24 30993 -41.205.110.0/23 30993 -41.205.112.0/20 30993 -41.205.128.0/19 36996 -41.205.192.0/19 36925 -41.205.224.0/19 36928 -41.206.0.0/19 29465 -41.206.32.0/19 15808 -41.206.64.0/19 36974 -41.206.96.0/19 37100 -41.206.128.0/21 36935 -41.206.136.0/23 36935 -41.206.138.0/24 36935 -41.206.139.0/24 24835 -41.206.140.0/22 36935 -41.206.144.0/20 36935 -41.206.160.0/20 6453 -41.206.176.0/21 6453 -41.206.184.0/23 6453 -41.206.188.0/23 6453 -41.206.192.0/21 22355 -41.206.200.0/22 22355 -41.206.204.0/23 328418 -41.206.206.0/23 22355 -41.206.208.0/20 22355 -41.207.0.0/19 29571 -41.207.32.0/19 37054 -41.207.64.0/19 36915 -41.207.99.0/24 12684 -41.207.100.0/24 39356 -41.207.102.0/23 37019 -41.207.104.0/23 37019 -41.207.106.0/24 37019 -41.207.107.0/24 204043 -41.207.109.0/24 39356 -41.207.110.0/23 39356 -41.207.112.0/23 39356 -41.207.114.0/24 41589 -41.207.115.0/24 39356 -41.207.116.0/24 39356 -41.207.117.0/24 37019 -41.207.118.0/24 29259 -41.207.119.0/24 41589 -41.207.124.0/22 37019 -41.207.128.0/22 36868 -41.207.132.0/24 36868 -41.207.138.0/24 36868 -41.207.144.0/20 36868 -41.207.160.0/19 24691 -41.207.192.0/19 29571 -41.207.228.0/22 37533 -41.207.232.0/22 37100 -41.207.236.0/22 36898 -41.207.240.0/21 37349 -41.207.248.0/22 37540 -41.207.252.0/22 37282 -41.208.0.0/23 2905 -41.208.2.0/24 16637 -41.208.3.0/24 2905 -41.208.4.0/22 2905 -41.208.8.0/21 2905 -41.208.16.0/21 2905 -41.208.24.0/22 2905 -41.208.28.0/24 2905 -41.208.29.0/24 16637 -41.208.30.0/23 2905 -41.208.32.0/19 2905 -41.208.64.0/18 21003 -41.208.128.0/18 8346 -41.208.192.0/18 33762 -41.209.0.0/18 9129 -41.209.64.0/18 15706 -41.209.192.0/24 20484 -41.209.215.0/24 20484 -41.209.232.0/24 20484 -41.210.0.0/18 29614 -41.210.128.0/18 20294 -41.210.192.0/18 37081 -41.211.0.0/19 35091 -41.211.32.0/19 327765 -41.211.64.0/19 36868 -41.211.96.0/20 36955 -41.211.112.0/22 37034 -41.211.116.0/22 36955 -41.211.120.0/21 36955 -41.211.128.0/18 16058 -41.212.0.0/17 15399 -41.212.128.0/17 23889 -41.213.0.0/17 33762 -41.213.128.0/17 37002 -41.214.0.0/17 8346 -41.214.128.0/17 36925 -41.215.0.0/17 15808 -41.215.128.0/20 36866 -41.215.144.0/20 19711 -41.215.160.0/20 37030 -41.215.176.0/20 36959 -41.215.208.0/20 37517 -41.215.232.0/21 37053 -41.215.240.0/22 33785 -41.215.244.0/22 36920 -41.215.248.0/22 37006 -41.215.252.0/22 37453 -41.216.32.0/21 28683 -41.216.40.0/23 28683 -41.216.42.0/23 328228 -41.216.44.0/22 28683 -41.216.48.0/20 28683 -41.216.64.0/20 28698 -41.216.80.0/21 28698 -41.216.88.0/22 28698 -41.216.92.0/23 28698 -41.216.94.0/24 28698 -41.216.95.0/24 36962 -41.216.96.0/24 21174 -41.216.97.0/24 37006 -41.216.98.0/23 37006 -41.216.100.0/24 21174 -41.216.101.0/24 37006 -41.216.102.0/23 21174 -41.216.104.0/21 21174 -41.216.120.0/22 37006 -41.216.124.0/22 30844 -41.216.128.0/20 18931 -41.216.144.0/20 37073 -41.216.160.0/20 37088 -41.216.176.0/21 52125 -41.216.184.0/24 40676 -41.216.185.0/24 40065 -41.216.186.0/24 202425 -41.216.187.0/24 327813 -41.216.188.0/23 52125 -41.216.190.0/23 208102 -41.216.192.0/20 37105 -41.216.208.0/21 14988 -41.216.216.0/21 37101 -41.216.224.0/22 36941 -41.216.228.0/22 37098 -41.216.232.0/22 37672 -41.216.236.0/22 37264 -41.217.0.0/17 37340 -41.217.148.0/22 37034 -41.217.160.0/19 24863 -41.217.194.0/23 36937 -41.217.200.0/22 36908 -41.217.204.0/22 37125 -41.217.212.0/22 37100 -41.217.216.0/22 37187 -41.217.220.0/22 37109 -41.217.224.0/21 37031 -41.217.232.0/21 37113 -41.217.240.0/21 37482 -41.218.0.0/18 15706 -41.218.64.0/18 33763 -41.218.128.0/19 25576 -41.218.160.0/20 25576 -41.218.176.0/22 25576 -41.218.180.0/24 36992 -41.218.181.0/24 25576 -41.218.182.0/23 25576 -41.218.184.0/22 25576 -41.218.188.0/23 25576 -41.218.190.0/24 25576 -41.218.191.0/24 36992 -41.218.192.0/18 29614 -41.219.0.0/18 37196 -41.219.64.0/18 37009 -41.219.131.0/24 30998 -41.219.132.0/24 30998 -41.219.134.0/23 30998 -41.219.136.0/21 30998 -41.219.149.0/24 30998 -41.219.168.0/23 30998 -41.219.170.0/24 30998 -41.219.179.0/24 30998 -41.219.180.0/22 30998 -41.219.184.0/22 30998 -41.219.188.0/24 30998 -41.219.190.0/23 30998 -41.220.0.0/20 29032 -41.220.16.0/20 37204 -41.220.32.0/20 25139 -41.220.64.0/20 29465 -41.220.80.0/20 37506 -41.220.96.0/20 36902 -41.220.112.0/20 15808 -41.220.128.0/20 36909 -41.220.144.0/21 327931 -41.220.152.0/22 327931 -41.220.157.0/24 327931 -41.220.158.0/23 327931 -41.220.160.0/20 30619 -41.220.176.0/20 31810 -41.220.192.0/20 36945 -41.220.208.0/21 29032 -41.220.216.0/24 29032 -41.220.224.0/19 30844 -41.221.0.0/20 36968 -41.221.16.0/20 36947 -41.221.32.0/22 37084 -41.221.36.0/24 37084 -41.221.37.0/24 39356 -41.221.38.0/24 37084 -41.221.39.0/24 198394 -41.221.40.0/24 39356 -41.221.41.0/24 37084 -41.221.42.0/23 37084 -41.221.44.0/24 39356 -41.221.45.0/24 37084 -41.221.46.0/24 37084 -41.221.47.0/24 198394 -41.221.48.0/20 36965 -41.221.64.0/20 36865 -41.221.80.0/20 36977 -41.221.96.0/20 36969 -41.221.128.0/20 24863 -41.221.144.0/20 36986 -41.221.160.0/20 36923 -41.221.176.0/20 30985 -41.221.192.0/20 37517 -41.221.208.0/24 3491 -41.221.209.0/24 31713 -41.221.210.0/23 3491 -41.221.212.0/22 3491 -41.221.216.0/21 3491 -41.221.224.0/22 36916 -41.221.230.0/23 36916 -41.221.232.0/23 36916 -41.221.235.0/24 36916 -41.221.236.0/22 36916 -41.221.240.0/20 17400 -41.222.0.0/21 36997 -41.222.8.0/21 36866 -41.222.16.0/21 36959 -41.222.32.0/21 327979 -41.222.40.0/21 37106 -41.222.48.0/21 32653 -41.222.56.0/21 37143 -41.222.64.0/21 36923 -41.222.72.0/22 37584 -41.222.76.0/22 36938 -41.222.88.0/21 37126 -41.222.96.0/21 37622 -41.222.104.0/23 36983 -41.222.108.0/22 34738 -41.222.112.0/21 37173 -41.222.120.0/23 328446 -41.222.126.0/24 328446 -41.222.128.0/21 36992 -41.222.136.0/21 37049 -41.222.145.0/24 25163 -41.222.146.0/23 25163 -41.222.151.0/24 25163 -41.222.152.0/21 37403 -41.222.160.0/21 37044 -41.222.168.0/21 37031 -41.222.176.0/21 37035 -41.222.184.0/21 37294 -41.222.192.0/22 37090 -41.222.196.0/22 37020 -41.222.200.0/22 37593 -41.222.204.0/22 36958 -41.222.208.0/22 37018 -41.222.213.0/24 37016 -41.222.214.0/23 37016 -41.222.216.0/22 37415 -41.222.220.0/22 3741 -41.222.224.0/22 37353 -41.222.228.0/22 37055 -41.222.232.0/22 37012 -41.222.236.0/22 37011 -41.222.244.0/23 37010 -41.222.248.0/21 36907 -41.223.4.0/22 36908 -41.223.8.0/22 37387 -41.223.20.0/22 36935 -41.223.24.0/22 37596 -41.223.28.0/22 36905 -41.223.32.0/22 37053 -41.223.36.0/22 36968 -41.223.40.0/22 36917 -41.223.44.0/22 36872 -41.223.48.0/22 37665 -41.223.52.0/23 33785 -41.223.54.0/24 33785 -41.223.56.0/22 36926 -41.223.60.0/22 36916 -41.223.64.0/22 36920 -41.223.72.0/22 37014 -41.223.76.0/22 37622 -41.223.80.0/22 36999 -41.223.85.0/24 37075 -41.223.86.0/23 37075 -41.223.89.0/24 34444 -41.223.96.0/22 37508 -41.223.100.0/22 36917 -41.223.104.0/22 37414 -41.223.108.0/23 328250 -41.223.110.0/24 38176 -41.223.111.0/24 328250 -41.223.116.0/22 36962 -41.223.120.0/22 36951 -41.223.124.0/22 32017 -41.223.130.0/23 36957 -41.223.132.0/22 36988 -41.223.136.0/22 37077 -41.223.140.0/22 36963 -41.223.144.0/24 37001 -41.223.145.0/24 36970 -41.223.146.0/24 36979 -41.223.147.0/24 36993 -41.223.150.0/23 36967 -41.223.152.0/22 37110 -41.223.156.0/22 11259 -41.223.160.0/22 36972 -41.223.164.0/22 36976 -41.223.168.0/22 37669 -41.223.172.0/22 36985 -41.223.180.0/22 37576 -41.223.184.0/22 37460 -41.223.192.0/24 37678 -41.223.195.0/24 37678 -41.223.196.0/22 36990 -41.223.200.0/22 36998 -41.223.204.0/22 36867 -41.223.212.0/22 37309 -41.223.216.0/22 36958 -41.223.220.0/22 23889 -41.223.224.0/22 37006 -41.223.228.0/22 37013 -41.223.232.0/22 37008 -41.223.236.0/22 36947 -41.223.240.0/22 30995 -41.223.244.0/22 32437 -41.223.248.0/22 37292 -41.223.252.0/22 37055 -41.224.0.0/19 37492 -41.224.32.0/23 37492 -41.224.34.0/24 2609 -41.224.35.0/24 37492 -41.224.36.0/22 37492 -41.224.40.0/24 37492 -41.224.41.0/24 2609 -41.224.42.0/24 37492 -41.224.43.0/24 2609 -41.224.44.0/22 37492 -41.224.48.0/20 37492 -41.224.64.0/18 37492 -41.224.128.0/17 37492 -41.225.0.0/16 37671 -41.226.0.0/16 37705 -41.227.0.0/18 2609 -41.227.64.0/19 37693 -41.227.96.0/19 2609 -41.227.128.0/17 2609 -41.228.0.0/20 37693 -41.228.16.0/21 37693 -41.228.24.0/22 37693 -41.228.28.0/22 2609 -41.228.32.0/21 37693 -41.228.40.0/23 37693 -41.228.42.0/23 2609 -41.228.44.0/22 37693 -41.228.48.0/24 37693 -41.228.49.0/24 2609 -41.228.50.0/23 2609 -41.228.52.0/22 37693 -41.228.56.0/22 37693 -41.228.60.0/22 2609 -41.228.64.0/18 37492 -41.228.128.0/18 37492 -41.228.192.0/18 37693 -41.229.0.0/16 37717 -41.230.0.0/17 2609 -41.230.128.0/18 2609 -41.230.192.0/20 2609 -41.230.208.0/22 37693 -41.230.212.0/22 37492 -41.230.216.0/21 37492 -41.230.224.0/19 37492 -41.231.0.0/22 2609 -41.231.4.0/23 2609 -41.231.6.0/23 37504 -41.231.8.0/21 2609 -41.231.16.0/23 327969 -41.231.18.0/23 2609 -41.231.20.0/22 2609 -41.231.24.0/22 2609 -41.231.28.0/23 2609 -41.231.30.0/23 37492 -41.231.32.0/20 2609 -41.231.48.0/21 2609 -41.231.56.0/21 37492 -41.231.64.0/18 2609 -41.231.128.0/18 2609 -41.231.192.0/19 2609 -41.231.224.0/21 2609 -41.231.232.0/22 37693 -41.231.236.0/22 2609 -41.231.240.0/20 2609 -41.232.0.0/13 8452 -41.240.0.0/15 36998 -41.242.0.0/22 37684 -41.242.4.0/22 37685 -41.242.16.0/20 37566 -41.242.40.0/21 37403 -41.242.48.0/20 37688 -41.242.64.0/20 37605 -41.242.80.0/22 328036 -41.242.88.0/22 37612 -41.242.96.0/20 37054 -41.242.112.0/22 37613 -41.242.116.0/22 37662 -41.242.120.0/22 37624 -41.242.124.0/22 49902 -41.242.128.0/22 327933 -41.242.136.0/22 37623 -41.242.140.0/22 22690 -41.242.144.0/21 37674 -41.242.152.0/21 328594 -41.242.160.0/20 37049 -41.242.192.0/18 37105 -41.243.1.0/24 37020 -41.243.2.0/23 37020 -41.243.4.0/22 37020 -41.243.8.0/21 37020 -41.243.16.0/23 37020 -41.243.18.0/24 37020 -41.243.21.0/24 37020 -41.243.28.0/22 37020 -41.243.42.0/24 37020 -41.243.44.0/24 37020 -41.243.52.0/24 37075 -41.243.54.0/24 37020 -41.243.240.0/20 37020 -41.244.0.0/16 37620 -41.245.128.0/24 328050 -41.245.192.0/20 328050 -41.246.0.0/20 37457 -41.246.16.0/22 5713 -41.246.20.0/22 37457 -41.246.24.0/21 37457 -41.246.32.0/20 5713 -41.246.48.0/20 37457 -41.246.64.0/18 5713 -41.246.128.0/18 5713 -41.246.192.0/18 37457 -41.247.0.0/17 5713 -41.247.128.0/19 37457 -41.247.160.0/19 5713 -41.247.192.0/19 5713 -41.247.224.0/19 37457 -41.248.0.0/21 6713 -41.248.8.0/21 36903 -41.248.16.0/20 36903 -41.248.32.0/19 36903 -41.248.64.0/18 36903 -41.248.128.0/18 36903 -41.248.192.0/19 36903 -41.248.224.0/20 36903 -41.248.240.0/20 6713 -41.249.0.0/17 36903 -41.249.128.0/18 36903 -41.249.192.0/19 36903 -41.249.224.0/20 36903 -41.249.240.0/21 36903 -41.249.248.0/21 6713 -41.250.0.0/21 36903 -41.250.8.0/21 6713 -41.250.16.0/20 36903 -41.250.32.0/19 36903 -41.250.64.0/21 36903 -41.250.72.0/21 6713 -41.250.80.0/20 36903 -41.250.96.0/19 36903 -41.250.128.0/18 36903 -41.250.192.0/19 36903 -41.250.224.0/21 6713 -41.250.232.0/21 36903 -41.250.240.0/21 36903 -41.250.248.0/21 6713 -41.251.0.0/17 36903 -41.251.128.0/18 36903 -41.251.192.0/19 36903 -41.251.224.0/20 36903 -41.251.240.0/21 36903 -41.251.248.0/21 6713 -41.252.0.0/14 21003 -42.0.4.0/22 24432 -42.0.20.0/24 133948 -42.0.28.0/22 56140 -42.0.64.0/18 4780 -42.1.22.0/24 133955 -42.1.60.0/22 46015 -42.2.0.0/16 4760 -42.3.0.0/17 4760 -42.3.128.0/18 4760 -42.3.192.0/19 4760 -42.3.224.0/23 4760 -42.3.226.0/24 4515 -42.3.227.0/24 4760 -42.3.228.0/22 4760 -42.3.232.0/21 4760 -42.3.240.0/20 4760 -42.4.0.0/14 4837 -42.16.0.0/12 9644 -42.32.0.0/12 9644 -42.48.0.0/15 4837 -42.51.0.0/16 56005 -42.52.0.0/14 4837 -42.56.0.0/14 4837 -42.60.0.0/16 9506 -42.61.0.0/17 3758 -42.61.128.0/17 9506 -42.62.0.0/18 23724 -42.62.64.0/19 23724 -42.62.96.0/20 23724 -42.62.112.0/22 23724 -42.62.116.0/24 23724 -42.62.117.0/24 4808 -42.62.118.0/23 23724 -42.62.120.0/21 23724 -42.62.129.0/24 133948 -42.62.176.0/22 55690 -42.62.192.0/18 4804 -42.63.0.0/16 4837 -42.66.0.0/15 17421 -42.70.0.0/15 17421 -42.72.0.0/13 17421 -42.80.0.0/16 17638 -42.81.0.0/16 58542 -42.82.0.0/19 10037 -42.82.32.0/20 9770 -42.82.48.0/20 9697 -42.82.64.0/19 9845 -42.82.96.0/20 9845 -42.82.112.0/22 10037 -42.82.116.0/22 9845 -42.82.120.0/21 9845 -42.82.128.0/19 38669 -42.82.160.0/20 9698 -42.82.176.0/20 9770 -42.82.192.0/20 9770 -42.82.224.0/21 9845 -42.82.232.0/21 10037 -42.82.240.0/20 9845 -42.83.0.0/18 18135 -42.83.78.0/24 4134 -42.83.84.0/22 56167 -42.83.128.0/22 24151 -42.83.132.0/23 24151 -42.83.134.0/24 24151 -42.83.136.0/23 24151 -42.83.138.0/24 24406 -42.83.144.0/22 24151 -42.83.200.0/23 24409 -42.84.0.0/17 4837 -42.84.128.0/19 4837 -42.84.160.0/20 4837 -42.84.176.0/21 9929 -42.84.184.0/21 4837 -42.84.192.0/18 4837 -42.85.0.0/16 4837 -42.86.0.0/15 4837 -42.88.0.0/13 4134 -42.96.6.0/24 45554 -42.96.8.0/24 45554 -42.96.104.0/22 55303 -42.96.128.0/17 37963 -42.97.0.0/16 4134 -42.98.0.0/16 4760 -42.99.0.0/18 4134 -42.99.88.0/24 133955 -42.99.116.0/23 137443 -42.99.128.0/24 4766 -42.99.129.0/24 4637 -42.99.130.0/23 4637 -42.99.132.0/22 4637 -42.99.136.0/21 4637 -42.99.144.0/20 4637 -42.99.160.0/19 4637 -42.99.192.0/19 4637 -42.99.224.0/24 58451 -42.99.225.0/24 4637 -42.99.226.0/23 4637 -42.99.228.0/22 4637 -42.99.232.0/21 4637 -42.99.240.0/20 4637 -42.100.0.0/16 4134 -42.101.0.0/19 4134 -42.101.32.0/20 4134 -42.101.48.0/21 4134 -42.101.56.0/21 137698 -42.101.64.0/18 4134 -42.101.128.0/17 4134 -42.102.0.0/15 4134 -42.104.0.0/18 38266 -42.104.64.0/18 55410 -42.104.128.0/17 38266 -42.105.0.0/16 38266 -42.106.0.0/15 38266 -42.108.0.0/14 38266 -42.112.0.0/15 18403 -42.114.0.0/16 18403 -42.115.0.0/17 131178 -42.115.128.0/17 18403 -42.116.0.0/14 18403 -42.120.0.0/15 37963 -42.122.0.0/16 17638 -42.123.20.0/24 133955 -42.123.32.0/22 23661 -42.123.64.0/18 58519 -42.124.0.0/16 10010 -42.125.0.0/17 10010 -42.125.128.0/18 10010 -42.125.192.0/19 10010 -42.125.225.0/24 10010 -42.125.226.0/23 10010 -42.125.228.0/22 10010 -42.125.232.0/21 10010 -42.125.240.0/21 10010 -42.125.248.0/23 10010 -42.125.251.0/24 10010 -42.125.252.0/22 10010 -42.126.0.0/15 10010 -42.144.0.0/13 9824 -42.153.4.0/22 38322 -42.153.8.0/22 38322 -42.153.16.0/24 38322 -42.153.19.0/24 38322 -42.153.20.0/22 38322 -42.153.24.0/23 38322 -42.153.28.0/23 38322 -42.153.32.0/19 38322 -42.153.95.0/24 38322 -42.153.96.0/24 38322 -42.153.128.0/19 38322 -42.156.32.0/22 136474 -42.156.128.0/17 37963 -42.157.0.0/21 4837 -42.157.8.0/22 4837 -42.157.12.0/23 131477 -42.157.128.0/21 134763 -42.157.160.0/19 23650 -42.157.192.0/21 134763 -42.157.224.0/21 4837 -42.158.0.0/16 23724 -42.159.0.0/16 58593 -42.176.0.0/13 4837 -42.184.0.0/15 4134 -42.186.0.0/16 45062 -42.187.33.0/24 133955 -42.187.120.0/22 58519 -42.187.124.0/22 17682 -42.187.128.0/17 45090 -42.188.0.0/14 4788 -42.194.80.0/24 133955 -42.196.0.0/16 4847 -42.197.0.0/18 7497 -42.197.64.0/18 17964 -42.197.128.0/17 17964 -42.198.0.0/16 7497 -42.199.0.0/18 17964 -42.199.64.0/18 4847 -42.199.128.0/17 9395 -42.200.0.0/21 4515 -42.200.8.0/24 4515 -42.200.9.0/24 38866 -42.200.10.0/23 4515 -42.200.12.0/23 4515 -42.200.14.0/24 4515 -42.200.15.0/24 131337 -42.200.16.0/20 4515 -42.200.32.0/19 4515 -42.200.64.0/18 4760 -42.200.128.0/17 4760 -42.201.32.0/19 133111 -42.201.128.0/21 55714 -42.201.136.0/22 55714 -42.201.140.0/24 23607 -42.201.142.0/23 55714 -42.201.144.0/21 55714 -42.201.152.0/24 23607 -42.201.153.0/24 55714 -42.201.154.0/23 55714 -42.201.156.0/22 55714 -42.201.160.0/21 55714 -42.201.168.0/23 55714 -42.201.170.0/24 55714 -42.201.172.0/22 55714 -42.201.176.0/23 55714 -42.201.178.0/24 23607 -42.201.179.0/24 55714 -42.201.180.0/24 23607 -42.201.181.0/24 55714 -42.201.182.0/23 55714 -42.201.184.0/21 55714 -42.201.192.0/19 55714 -42.201.224.0/20 55714 -42.201.241.0/24 55714 -42.201.242.0/23 55714 -42.201.244.0/22 55714 -42.201.248.0/23 55714 -42.201.251.0/24 55714 -42.201.252.0/22 55714 -42.202.0.0/17 4134 -42.202.128.0/19 134762 -42.202.160.0/19 4134 -42.202.192.0/18 4134 -42.203.0.0/16 4134 -42.204.0.0/14 7641 -42.224.0.0/12 4837 -42.240.128.0/17 58466 -42.241.0.0/16 4804 -42.242.0.0/15 4134 -42.244.0.0/14 4538 -42.248.0.0/16 4134 -42.249.0.0/17 4134 -42.249.128.0/19 17799 -42.249.160.0/19 4134 -42.249.192.0/18 4134 -43.224.0.0/22 45916 -43.224.4.0/22 9381 -43.224.8.0/22 45916 -43.224.12.0/22 4837 -43.224.19.0/24 58397 -43.224.24.0/22 4837 -43.224.28.0/24 10010 -43.224.29.0/24 136209 -43.224.30.0/24 4766 -43.224.31.0/24 55592 -43.224.32.0/22 20473 -43.224.36.0/22 9873 -43.224.40.0/23 9988 -43.224.42.0/24 9988 -43.224.43.0/24 45558 -43.224.48.0/22 9381 -43.224.52.0/23 4837 -43.224.56.0/22 138950 -43.224.60.0/22 17559 -43.224.64.0/22 135391 -43.224.80.0/22 4837 -43.224.84.0/23 132167 -43.224.86.0/24 132167 -43.224.88.0/22 133847 -43.224.92.0/22 9381 -43.224.96.0/23 59161 -43.224.98.0/24 59161 -43.224.104.0/22 45365 -43.224.108.0/22 133854 -43.224.112.0/22 58682 -43.224.116.0/22 9441 -43.224.120.0/22 132347 -43.224.124.0/22 132124 -43.224.128.0/22 56268 -43.224.132.0/22 23033 -43.224.136.0/22 17439 -43.224.149.0/24 132422 -43.224.152.0/22 139021 -43.224.156.0/22 132556 -43.224.160.0/22 4837 -43.224.164.0/23 45528 -43.224.167.0/24 45528 -43.224.170.0/23 45701 -43.224.172.0/22 24554 -43.224.180.0/22 132778 -43.224.184.0/22 7497 -43.224.188.0/22 63927 -43.224.195.0/24 18200 -43.224.208.0/22 4837 -43.224.212.0/22 23724 -43.224.220.0/22 133234 -43.224.224.0/22 22769 -43.224.228.0/22 9381 -43.224.232.0/22 10103 -43.224.236.0/22 24499 -43.224.244.0/22 63855 -43.224.248.0/23 55933 -43.224.250.0/23 131291 -43.224.252.0/22 45528 -43.225.0.0/22 135772 -43.225.4.0/22 133862 -43.225.8.0/22 9381 -43.225.12.0/22 64006 -43.225.16.0/22 55862 -43.225.20.0/22 133685 -43.225.24.0/22 18229 -43.225.28.0/22 40065 -43.225.32.0/22 58511 -43.225.36.0/22 55720 -43.225.40.0/22 55303 -43.225.44.0/22 133199 -43.225.48.0/22 63920 -43.225.52.0/22 394695 -43.225.56.0/22 62468 -43.225.60.0/22 135352 -43.225.64.0/22 58495 -43.225.68.0/22 59162 -43.225.72.0/22 133676 -43.225.80.0/22 136557 -43.225.84.0/23 133865 -43.225.87.0/24 133865 -43.225.88.0/22 2519 -43.225.92.0/23 55303 -43.225.94.0/24 55303 -43.225.95.0/24 21859 -43.225.96.0/23 198381 -43.225.98.0/24 136030 -43.225.99.0/24 9557 -43.225.100.0/22 4594 -43.225.105.0/24 38478 -43.225.106.0/23 38478 -43.225.108.0/23 132198 -43.225.110.0/24 132198 -43.225.111.0/24 45352 -43.225.112.0/22 13122 -43.225.116.0/22 132893 -43.225.124.0/22 132839 -43.225.132.0/22 9381 -43.225.136.0/22 55303 -43.225.140.0/22 62468 -43.225.144.0/22 45269 -43.225.148.0/22 9441 -43.225.156.0/22 133115 -43.225.160.0/22 133001 -43.225.164.0/22 45536 -43.225.168.0/22 134884 -43.225.172.0/22 131324 -43.225.176.0/24 58921 -43.225.179.0/24 58921 -43.225.180.0/22 59037 -43.225.184.0/22 9422 -43.225.188.0/24 132335 -43.225.189.0/24 136557 -43.225.190.0/24 132335 -43.225.191.0/24 136557 -43.225.192.0/22 58965 -43.225.196.0/22 45753 -43.225.200.0/22 133878 -43.225.204.0/22 58599 -43.225.209.0/24 131506 -43.225.212.0/23 59162 -43.225.214.0/24 59162 -43.225.216.0/22 4847 -43.225.248.0/22 133248 -43.226.0.0/23 133881 -43.226.2.0/23 135244 -43.226.4.0/22 63927 -43.226.10.0/24 132917 -43.226.12.0/22 131331 -43.226.16.0/23 38197 -43.226.20.0/22 38197 -43.226.24.0/22 35916 -43.226.28.0/22 45775 -43.226.32.0/20 134762 -43.226.49.0/24 134762 -43.226.50.0/23 134762 -43.226.53.0/24 134762 -43.226.54.0/24 134762 -43.226.64.0/21 134762 -43.226.72.0/22 134762 -43.226.76.0/23 134762 -43.226.112.0/22 63612 -43.226.116.0/22 4837 -43.226.120.0/22 4837 -43.226.124.0/22 38197 -43.226.144.0/20 134762 -43.226.160.0/21 4837 -43.226.216.0/22 133887 -43.226.220.0/22 7642 -43.226.228.0/24 9009 -43.226.229.0/24 36351 -43.226.230.0/24 132372 -43.226.231.0/24 38001 -43.226.232.0/22 38851 -43.226.236.0/23 4808 -43.226.238.0/24 4847 -43.226.239.0/24 4808 -43.227.12.0/22 136480 -43.227.16.0/23 133296 -43.227.18.0/23 33480 -43.227.20.0/22 132770 -43.227.24.0/22 38851 -43.227.56.0/21 63612 -43.227.64.0/22 134762 -43.227.68.0/24 134762 -43.227.104.0/22 4837 -43.227.112.0/23 55592 -43.227.114.0/24 136209 -43.227.115.0/24 55592 -43.227.116.0/22 45974 -43.227.120.0/22 38673 -43.227.124.0/24 45838 -43.227.128.0/22 136716 -43.227.132.0/22 132215 -43.227.140.0/22 4808 -43.227.152.0/21 59037 -43.227.160.0/20 59037 -43.227.176.0/21 59037 -43.227.192.0/19 59037 -43.227.224.0/22 133711 -43.227.228.0/23 132526 -43.227.230.0/24 132526 -43.227.231.0/24 38532 -43.227.236.0/22 63928 -43.227.244.0/22 45235 -43.227.252.0/22 4808 -43.228.0.0/19 59037 -43.228.36.0/22 4808 -43.228.40.0/21 59037 -43.228.48.0/20 59037 -43.228.64.0/21 59037 -43.228.72.0/22 132770 -43.228.76.0/22 134765 -43.228.80.0/22 133909 -43.228.84.0/23 56309 -43.228.86.0/24 56309 -43.228.87.0/24 63989 -43.228.88.0/23 134705 -43.228.90.0/24 64021 -43.228.91.0/24 132422 -43.228.92.0/22 18229 -43.228.96.0/22 45117 -43.228.108.0/22 132045 -43.228.112.0/22 134855 -43.228.117.0/24 57110 -43.228.124.0/23 133322 -43.228.126.0/24 133322 -43.228.128.0/22 17882 -43.228.144.0/22 18019 -43.228.148.0/22 4812 -43.228.152.0/22 4812 -43.228.156.0/24 45671 -43.228.157.0/24 36351 -43.228.158.0/24 38001 -43.228.159.0/24 36351 -43.228.160.0/22 4766 -43.228.176.0/22 133708 -43.228.180.0/22 64096 -43.228.184.0/22 1299 -43.228.192.0/22 24550 -43.228.198.0/23 55303 -43.228.200.0/22 132882 -43.228.208.0/23 58682 -43.228.210.0/24 58682 -43.228.220.0/24 133275 -43.228.221.0/24 134872 -43.228.222.0/23 133275 -43.228.224.0/22 132768 -43.228.228.0/22 132923 -43.228.232.0/23 63888 -43.228.234.0/24 63888 -43.228.235.0/24 26484 -43.228.236.0/22 132335 -43.228.244.0/22 45352 -43.229.0.0/22 134979 -43.229.4.0/22 59371 -43.229.8.0/24 132768 -43.229.9.0/24 58438 -43.229.11.0/24 132768 -43.229.12.0/22 63932 -43.229.16.0/22 136800 -43.229.20.0/22 23949 -43.229.24.0/22 132004 -43.229.28.0/22 63888 -43.229.36.0/22 134705 -43.229.44.0/22 56134 -43.229.48.0/22 55996 -43.229.52.0/22 63888 -43.229.60.0/22 133159 -43.229.64.0/22 6507 -43.229.68.0/22 56134 -43.229.72.0/22 45433 -43.229.76.0/22 56309 -43.229.84.0/22 38532 -43.229.88.0/22 58969 -43.229.92.0/22 45433 -43.229.112.0/22 136800 -43.229.116.0/22 133929 -43.229.120.0/22 24000 -43.229.124.0/22 136039 -43.229.128.0/23 38532 -43.229.130.0/24 38532 -43.229.132.0/22 56309 -43.229.142.0/23 4515 -43.229.148.0/22 56309 -43.229.152.0/23 64021 -43.229.154.0/23 132422 -43.229.156.0/23 21660 -43.229.158.0/24 21660 -43.229.159.0/24 29207 -43.229.160.0/24 136645 -43.229.161.0/24 134341 -43.229.162.0/23 134341 -43.229.164.0/22 58895 -43.229.200.0/22 133713 -43.229.204.0/22 24532 -43.229.208.0/23 58736 -43.229.210.0/23 136531 -43.229.212.0/22 132839 -43.229.216.0/23 45101 -43.229.218.0/23 131558 -43.229.224.0/22 132779 -43.229.228.0/22 132883 -43.229.240.0/22 132827 -43.229.244.0/22 18068 -43.229.252.0/24 138841 -43.229.253.0/24 23679 -43.229.254.0/23 23679 -43.230.0.0/22 9318 -43.230.4.0/24 38788 -43.230.5.0/24 58558 -43.230.6.0/24 55723 -43.230.7.0/24 38788 -43.230.8.0/23 132422 -43.230.10.0/24 64021 -43.230.24.0/23 58436 -43.230.26.0/24 8100 -43.230.27.0/24 134079 -43.230.28.0/22 38769 -43.230.36.0/22 132974 -43.230.40.0/22 58966 -43.230.44.0/24 134307 -43.230.46.0/23 134307 -43.230.48.0/22 43519 -43.230.56.0/22 203098 -43.230.60.0/22 9902 -43.230.64.0/22 134375 -43.230.68.0/22 4808 -43.230.72.0/22 59037 -43.230.76.0/22 4766 -43.230.80.0/22 3786 -43.230.88.0/23 135391 -43.230.90.0/24 135391 -43.230.91.0/24 9304 -43.230.92.0/22 58895 -43.230.96.0/22 18106 -43.230.102.0/23 3257 -43.230.104.0/22 132754 -43.230.108.0/23 58907 -43.230.110.0/24 58907 -43.230.112.0/22 26484 -43.230.120.0/22 133954 -43.230.128.0/22 23679 -43.230.132.0/22 17747 -43.230.136.0/22 133952 -43.230.140.0/24 26484 -43.230.141.0/24 134705 -43.230.142.0/24 26484 -43.230.143.0/24 134705 -43.230.144.0/22 26484 -43.230.155.0/24 45725 -43.230.156.0/22 133647 -43.230.164.0/24 133405 -43.230.165.0/24 136933 -43.230.166.0/23 133405 -43.230.168.0/22 132839 -43.230.172.0/22 58640 -43.230.176.0/22 132586 -43.230.180.0/24 1449 -43.230.181.0/24 59065 -43.230.182.0/24 59065 -43.230.184.0/22 133724 -43.230.188.0/23 9535 -43.230.190.0/24 9535 -43.230.192.0/22 23673 -43.230.196.0/22 133676 -43.230.200.0/22 23033 -43.230.204.0/23 135386 -43.230.207.0/24 135386 -43.230.208.0/24 135666 -43.230.209.0/24 133894 -43.230.210.0/23 135881 -43.230.212.0/22 59164 -43.230.216.0/22 9756 -43.230.220.0/22 23848 -43.230.224.0/23 135061 -43.231.4.0/22 55720 -43.231.8.0/24 136209 -43.231.9.0/24 55592 -43.231.10.0/24 55592 -43.231.11.0/24 136209 -43.231.16.0/22 63888 -43.231.20.0/22 38067 -43.231.24.0/22 17559 -43.231.28.0/22 55944 -43.231.32.0/20 4837 -43.231.52.0/22 45235 -43.231.56.0/22 133648 -43.231.60.0/22 58895 -43.231.64.0/22 133070 -43.231.68.0/22 38835 -43.231.72.0/23 56229 -43.231.75.0/24 56229 -43.231.76.0/24 63963 -43.231.77.0/24 3 -43.231.78.0/23 63963 -43.231.80.0/20 58466 -43.231.96.0/20 4816 -43.231.112.0/22 63962 -43.231.116.0/24 132564 -43.231.124.0/22 56110 -43.231.128.0/23 38788 -43.231.132.0/22 55352 -43.231.144.0/20 138950 -43.231.160.0/22 4808 -43.231.164.0/23 4808 -43.231.166.0/24 4808 -43.231.184.0/24 137443 -43.231.185.0/24 58879 -43.231.186.0/23 137443 -43.231.188.0/24 15412 -43.231.189.0/24 9311 -43.231.190.0/24 15412 -43.231.191.0/24 9311 -43.231.192.0/22 132255 -43.231.196.0/22 63888 -43.231.200.0/22 132245 -43.231.204.0/22 36351 -43.231.208.0/22 55915 -43.231.212.0/22 55352 -43.231.216.0/22 58438 -43.231.220.0/22 2519 -43.231.224.0/22 134069 -43.231.228.0/22 131303 -43.231.232.0/24 133296 -43.231.234.0/23 133296 -43.231.236.0/22 55352 -43.231.240.0/22 45775 -43.231.244.0/22 4686 -43.231.248.0/24 13886 -43.231.250.0/24 18229 -43.231.252.0/22 55352 -43.232.0.0/14 17506 -43.239.52.0/22 133590 -43.239.64.0/24 63888 -43.239.66.0/24 63888 -43.239.68.0/22 58640 -43.239.72.0/23 133443 -43.239.74.0/24 133443 -43.239.76.0/22 133977 -43.239.80.0/22 45804 -43.239.84.0/22 63888 -43.239.88.0/22 43350 -43.239.92.0/22 45179 -43.239.96.0/23 63956 -43.239.99.0/24 45671 -43.239.101.0/24 132829 -43.239.102.0/24 10143 -43.239.103.0/24 24516 -43.239.104.0/24 17408 -43.239.105.0/24 9311 -43.239.106.0/24 17408 -43.239.107.0/24 9311 -43.239.108.0/22 133296 -43.239.112.0/24 136334 -43.239.113.0/24 45194 -43.239.114.0/23 45194 -43.239.120.0/22 4837 -43.239.132.0/22 133980 -43.239.136.0/22 49544 -43.239.140.0/23 134512 -43.239.142.0/24 134512 -43.239.148.0/22 18403 -43.239.152.0/22 132941 -43.239.156.0/24 63916 -43.239.157.0/24 134520 -43.239.158.0/23 134520 -43.239.160.0/22 26658 -43.239.164.0/22 132742 -43.239.176.0/22 55720 -43.239.180.0/22 45215 -43.239.188.0/22 38726 -43.239.192.0/22 132937 -43.239.196.0/22 134866 -43.239.200.0/22 59164 -43.239.204.0/22 58965 -43.239.220.0/23 7643 -43.239.222.0/23 18403 -43.239.224.0/22 45538 -43.239.232.0/24 133948 -43.239.233.0/24 56109 -43.239.234.0/24 56109 -43.239.248.0/23 35017 -43.239.250.0/24 11878 -43.239.251.0/24 35017 -43.240.0.0/22 23650 -43.240.4.0/24 133676 -43.240.5.0/24 58906 -43.240.6.0/23 133676 -43.240.8.0/22 133246 -43.240.12.0/23 55933 -43.240.14.0/24 134176 -43.240.15.0/24 55933 -43.240.20.0/22 9534 -43.240.24.0/22 9924 -43.240.28.0/22 133199 -43.240.36.0/22 38197 -43.240.40.0/22 133389 -43.240.48.0/22 132839 -43.240.56.0/22 4837 -43.240.60.0/22 58541 -43.240.64.0/22 133296 -43.240.72.0/22 4837 -43.240.80.0/24 55665 -43.240.82.0/24 55665 -43.240.83.0/24 5 -43.240.88.0/22 9246 -43.240.92.0/22 133617 -43.240.96.0/22 7575 -43.240.100.0/22 38026 -43.240.104.0/22 17709 -43.240.112.0/22 38794 -43.240.116.0/22 56001 -43.240.120.0/22 58713 -43.240.124.0/24 4812 -43.240.125.0/24 17621 -43.240.126.0/23 4812 -43.240.128.0/22 17621 -43.240.136.0/22 4808 -43.240.140.0/22 131166 -43.240.144.0/22 135357 -43.240.148.0/22 55679 -43.240.152.0/22 18049 -43.240.156.0/22 134771 -43.240.192.0/21 4812 -43.240.200.0/23 4808 -43.240.204.0/22 4837 -43.240.224.0/22 63493 -43.240.228.0/22 58552 -43.240.236.0/22 136800 -43.240.244.0/24 4808 -43.240.245.0/24 24138 -43.240.246.0/23 24138 -43.240.248.0/24 24138 -43.240.249.0/24 4808 -43.240.250.0/23 24138 -43.240.252.0/22 24138 -43.241.0.0/23 24138 -43.241.2.0/24 24138 -43.241.3.0/24 23724 -43.241.16.0/22 134771 -43.241.24.0/22 132770 -43.241.28.0/22 58678 -43.241.32.0/22 133747 -43.241.36.0/22 133296 -43.241.40.0/22 6453 -43.241.44.0/24 132839 -43.241.45.0/24 136800 -43.241.46.0/24 136800 -43.241.47.0/24 132839 -43.241.48.0/23 23650 -43.241.50.0/24 4837 -43.241.51.0/24 23650 -43.241.52.0/23 45638 -43.241.54.0/24 45638 -43.241.56.0/22 63940 -43.241.60.0/22 133296 -43.241.64.0/22 134033 -43.241.68.0/22 133296 -43.241.72.0/23 132056 -43.241.76.0/22 23724 -43.241.88.0/21 23844 -43.241.96.0/22 58910 -43.241.104.0/23 18168 -43.241.106.0/23 18033 -43.241.108.0/22 18033 -43.241.116.0/22 24554 -43.241.120.0/22 134033 -43.241.124.0/22 133720 -43.241.128.0/21 58678 -43.241.136.0/22 23955 -43.241.140.0/22 45916 -43.241.144.0/22 45916 -43.241.148.0/22 38769 -43.241.152.0/22 132742 -43.241.156.0/22 24000 -43.241.160.0/22 18049 -43.241.164.0/22 133747 -43.241.180.0/22 17638 -43.241.188.0/22 4826 -43.241.192.0/22 45916 -43.241.196.0/22 137443 -43.241.200.0/22 1851 -43.241.204.0/22 9381 -43.241.208.0/20 4808 -43.241.224.0/20 4808 -43.241.252.0/22 132742 -43.242.0.0/22 203061 -43.242.32.0/22 133199 -43.242.36.0/22 45232 -43.242.40.0/24 58940 -43.242.42.0/24 58940 -43.242.44.0/22 132742 -43.242.48.0/22 4808 -43.242.52.0/24 134366 -43.242.64.0/22 138950 -43.242.72.0/22 133774 -43.242.84.0/22 23724 -43.242.101.0/24 9541 -43.242.104.0/22 9829 -43.242.108.0/22 133847 -43.242.112.0/22 9712 -43.242.116.0/24 45916 -43.242.120.0/22 45916 -43.242.124.0/22 18229 -43.242.128.0/22 133199 -43.242.132.0/23 58476 -43.242.134.0/23 133524 -43.242.136.0/22 2519 -43.242.140.0/22 55649 -43.242.152.0/21 4837 -43.242.164.0/22 4837 -43.242.173.0/24 38478 -43.242.175.0/24 38478 -43.242.176.0/22 58893 -43.242.180.0/22 4837 -43.242.184.0/22 131236 -43.242.192.0/22 4847 -43.242.196.0/22 4808 -43.242.200.0/22 40065 -43.242.208.0/22 58678 -43.242.212.0/22 18229 -43.242.224.0/21 58678 -43.242.236.0/22 58627 -43.242.240.0/22 17882 -43.242.244.0/22 132787 -43.242.248.0/22 134141 -43.242.252.0/22 45090 -43.243.0.0/24 56294 -43.243.2.0/23 56294 -43.243.4.0/22 4837 -43.243.12.0/22 4847 -43.243.16.0/22 4837 -43.243.20.0/24 133324 -43.243.24.0/22 58962 -43.243.28.0/22 38197 -43.243.32.0/24 24000 -43.243.33.0/24 132839 -43.243.34.0/23 24000 -43.243.36.0/22 133226 -43.243.40.0/23 47339 -43.243.44.0/22 132742 -43.243.48.0/22 58451 -43.243.52.0/22 55558 -43.243.56.0/23 132857 -43.243.58.0/23 132268 -43.243.60.0/22 55561 -43.243.64.0/22 132742 -43.243.68.0/22 38197 -43.243.72.0/22 38197 -43.243.80.0/22 17665 -43.243.84.0/22 25820 -43.243.92.0/22 24000 -43.243.96.0/22 138546 -43.243.100.0/22 38197 -43.243.104.0/22 132506 -43.243.108.0/22 38197 -43.243.112.0/22 58451 -43.243.116.0/23 38719 -43.243.118.0/24 58621 -43.243.119.0/24 38719 -43.243.120.0/22 133405 -43.243.127.0/24 23930 -43.243.128.0/22 133775 -43.243.132.0/22 64072 -43.243.136.0/22 4808 -43.243.140.0/23 131111 -43.243.142.0/24 131111 -43.243.143.0/24 23947 -43.243.148.0/22 17621 -43.243.156.0/22 4837 -43.243.160.0/22 45204 -43.243.164.0/22 133054 -43.243.168.0/23 134548 -43.243.170.0/24 134176 -43.243.171.0/24 55933 -43.243.172.0/22 134254 -43.243.176.0/22 133405 -43.243.184.0/22 63827 -43.243.188.0/22 136800 -43.243.192.0/22 55933 -43.243.200.0/22 55884 -43.243.204.0/22 24122 -43.243.208.0/22 132742 -43.243.212.0/22 132996 -43.243.220.0/22 138415 -43.243.224.0/22 58779 -43.243.228.0/22 4837 -43.243.232.0/22 23724 -43.243.236.0/22 133739 -43.243.240.0/22 132742 -43.243.244.0/22 17816 -43.243.248.0/22 45932 -43.243.252.0/22 18049 -43.244.0.0/16 10013 -43.245.0.0/22 55734 -43.245.8.0/22 56167 -43.245.12.0/23 58597 -43.245.14.0/24 58597 -43.245.16.0/22 10024 -43.245.20.0/23 45625 -43.245.24.0/24 55884 -43.245.26.0/23 55884 -43.245.28.0/22 55555 -43.245.32.0/22 38901 -43.245.36.0/22 38835 -43.245.40.0/22 55532 -43.245.44.0/22 131322 -43.245.48.0/22 36236 -43.245.52.0/22 45459 -43.245.56.0/23 38442 -43.245.58.0/24 38442 -43.245.60.0/22 38001 -43.245.64.0/22 133536 -43.245.68.0/22 38880 -43.245.72.0/21 132405 -43.245.80.0/22 58666 -43.245.84.0/22 45650 -43.245.88.0/22 55410 -43.245.92.0/22 55427 -43.245.96.0/24 58621 -43.245.98.0/23 58621 -43.245.100.0/22 55879 -43.245.104.0/22 4773 -43.245.112.0/22 133130 -43.245.116.0/24 131179 -43.245.117.0/24 56264 -43.245.118.0/24 132313 -43.245.119.0/24 56264 -43.245.120.0/22 45245 -43.245.128.0/22 132165 -43.245.132.0/22 133407 -43.245.136.0/22 58640 -43.245.140.0/22 58717 -43.245.144.0/22 45758 -43.245.148.0/22 58640 -43.245.152.0/22 38195 -43.245.156.0/22 58640 -43.245.160.0/22 133480 -43.245.164.0/22 58940 -43.245.168.0/24 36351 -43.245.169.0/24 131476 -43.245.170.0/23 131476 -43.245.172.0/22 133043 -43.245.176.0/22 58505 -43.245.180.0/22 58397 -43.245.184.0/22 131755 -43.245.188.0/22 58376 -43.245.192.0/22 58601 -43.245.196.0/24 55799 -43.245.198.0/23 55799 -43.245.200.0/23 59318 -43.245.202.0/23 131207 -43.245.204.0/22 9260 -43.245.208.0/22 58640 -43.245.212.0/23 45345 -43.245.214.0/24 45345 -43.245.215.0/24 131995 -43.245.216.0/22 133378 -43.245.220.0/24 55799 -43.245.221.0/24 63916 -43.245.222.0/23 55799 -43.245.224.0/23 132627 -43.245.226.0/24 132627 -43.245.228.0/22 14127 -43.245.232.0/22 58691 -43.245.236.0/22 45845 -43.245.240.0/22 56186 -43.245.244.0/22 38192 -43.245.248.0/22 131740 -43.245.252.0/23 38719 -43.246.113.0/24 59253 -43.246.114.0/23 40676 -43.246.116.0/22 26658 -43.246.128.0/24 9311 -43.246.129.0/24 17408 -43.246.130.0/24 9311 -43.246.131.0/24 17408 -43.246.132.0/22 134518 -43.246.136.0/22 134326 -43.246.140.0/22 134294 -43.246.144.0/21 55303 -43.246.156.0/22 45415 -43.246.160.0/22 136639 -43.246.164.0/24 17666 -43.246.166.0/23 17666 -43.246.172.0/22 55720 -43.246.176.0/22 45352 -43.246.180.0/22 55303 -43.246.184.0/22 55303 -43.246.192.0/22 2516 -43.246.196.0/24 9311 -43.246.197.0/24 17408 -43.246.198.0/24 9311 -43.246.199.0/24 17408 -43.246.200.0/22 64018 -43.246.208.0/22 132883 -43.246.212.0/22 24000 -43.246.216.0/22 135387 -43.246.220.0/22 58895 -43.246.224.0/22 58895 -43.246.228.0/23 4837 -43.246.232.0/22 56132 -43.246.240.0/24 134316 -43.246.241.0/24 132751 -43.246.242.0/23 132751 -43.246.244.0/22 58438 -43.247.0.0/22 63888 -43.247.4.0/22 4837 -43.247.12.0/22 38320 -43.247.16.0/22 59322 -43.247.20.0/23 24523 -43.247.22.0/24 131780 -43.247.23.0/24 24523 -43.247.24.0/22 133613 -43.247.28.0/22 135754 -43.247.32.0/23 45312 -43.247.36.0/22 38320 -43.247.40.0/22 132116 -43.247.56.0/22 17887 -43.247.60.0/22 7131 -43.247.64.0/22 9268 -43.247.68.0/22 55933 -43.247.80.0/22 38289 -43.247.88.0/22 138950 -43.247.100.0/22 4812 -43.247.116.0/22 7600 -43.247.120.0/22 45814 -43.247.124.0/22 24516 -43.247.128.0/22 24516 -43.247.132.0/22 58985 -43.247.136.0/22 55352 -43.247.144.0/22 55862 -43.247.148.0/22 17638 -43.247.156.0/22 55947 -43.247.160.0/22 132761 -43.247.164.0/24 58451 -43.247.165.0/24 134705 -43.247.166.0/23 134705 -43.247.170.0/23 16552 -43.247.172.0/22 45267 -43.247.176.0/21 23724 -43.247.184.0/21 4808 -43.247.192.0/22 17586 -43.247.196.0/22 45090 -43.247.240.0/22 9394 -43.248.8.0/22 134705 -43.248.12.0/22 132165 -43.248.16.0/22 18046 -43.248.20.0/22 4837 -43.248.24.0/22 18103 -43.248.32.0/22 45916 -43.248.36.0/22 56209 -43.248.40.0/22 132827 -43.248.44.0/22 9297 -43.248.48.0/22 4808 -43.248.52.0/22 132529 -43.248.60.0/22 132742 -43.248.64.0/22 132742 -43.248.68.0/22 132296 -43.248.72.0/22 55341 -43.248.104.0/22 63612 -43.248.112.0/22 55468 -43.248.120.0/21 63612 -43.248.144.0/22 63612 -43.248.152.0/22 132116 -43.248.156.0/23 38875 -43.248.158.0/23 58524 -43.248.160.0/22 4686 -43.248.164.0/22 9381 -43.248.168.0/22 131324 -43.248.172.0/23 137443 -43.248.174.0/24 136800 -43.248.175.0/24 134176 -43.248.184.0/21 4837 -43.248.192.0/20 4837 -43.248.208.0/22 63612 -43.248.212.0/23 58474 -43.248.214.0/24 58474 -43.248.216.0/22 132827 -43.248.224.0/22 9381 -43.248.228.0/22 17621 -43.248.237.0/24 133275 -43.248.238.0/23 133275 -43.248.240.0/22 132116 -43.248.244.0/22 4837 -43.248.248.0/22 59217 -43.249.0.0/22 139021 -43.249.8.0/22 62468 -43.249.12.0/24 131259 -43.249.16.0/22 58451 -43.249.20.0/23 58451 -43.249.22.0/24 45932 -43.249.23.0/24 58451 -43.249.24.0/22 132839 -43.249.28.0/22 133115 -43.249.32.0/22 45413 -43.249.36.0/23 133752 -43.249.38.0/23 59253 -43.249.40.0/22 55330 -43.249.48.0/24 58438 -43.249.49.0/24 132768 -43.249.50.0/24 58438 -43.249.51.0/24 132768 -43.249.52.0/22 133275 -43.249.56.0/21 38794 -43.249.64.0/23 38794 -43.249.66.0/24 38794 -43.249.67.0/24 137885 -43.249.68.0/22 38794 -43.249.75.0/24 54113 -43.249.76.0/22 132742 -43.249.80.0/22 137443 -43.249.88.0/22 58451 -43.249.92.0/22 132827 -43.249.96.0/22 131274 -43.249.100.0/22 133747 -43.249.104.0/21 38794 -43.249.112.0/22 38794 -43.249.116.0/22 58927 -43.249.124.0/22 58451 -43.249.128.0/22 22363 -43.249.136.0/22 4837 -43.249.140.0/22 55653 -43.249.144.0/22 138950 -43.249.172.0/22 136800 -43.249.176.0/22 56017 -43.249.184.0/22 58405 -43.249.188.0/22 23033 -43.249.192.0/22 4837 -43.249.196.0/22 132449 -43.249.200.0/22 133096 -43.249.204.0/22 38197 -43.249.208.0/22 45298 -43.249.212.0/24 9924 -43.249.213.0/24 20940 -43.249.214.0/24 3462 -43.249.215.0/24 4609 -43.249.216.0/22 59164 -43.249.220.0/22 132742 -43.249.224.0/22 18229 -43.249.228.0/22 45916 -43.249.232.0/22 45916 -43.249.240.0/22 2519 -43.249.244.0/22 55902 -43.249.248.0/22 133748 -43.249.252.0/22 55720 -43.250.0.0/22 29990 -43.250.4.0/22 4837 -43.250.8.0/23 38478 -43.250.16.0/21 7497 -43.250.24.0/22 9266 -43.250.32.0/24 45093 -43.250.33.0/24 4837 -43.250.34.0/23 4837 -43.250.40.0/22 131459 -43.250.44.0/22 38851 -43.250.51.0/24 393559 -43.250.56.0/21 9381 -43.250.72.0/22 40676 -43.250.80.0/22 58689 -43.250.84.0/22 23888 -43.250.92.0/22 132405 -43.250.100.0/22 7497 -43.250.105.0/24 138570 -43.250.106.0/24 138570 -43.250.107.0/24 58879 -43.250.108.0/22 7497 -43.250.112.0/22 4837 -43.250.116.0/22 58519 -43.250.120.0/22 58594 -43.250.124.0/24 18126 -43.250.125.0/24 133177 -43.250.126.0/23 133177 -43.250.132.0/22 133315 -43.250.136.0/24 138322 -43.250.137.0/24 38742 -43.250.138.0/23 38742 -43.250.140.0/23 45638 -43.250.142.0/24 45638 -43.250.144.0/22 17621 -43.250.152.0/23 23576 -43.250.157.0/24 45916 -43.250.158.0/23 45916 -43.250.164.0/22 45916 -43.250.168.0/22 4837 -43.250.172.0/22 62468 -43.250.184.0/22 53587 -43.250.188.0/22 132742 -43.250.192.0/23 16509 -43.250.200.0/22 4837 -43.250.204.0/23 45671 -43.250.208.0/22 133315 -43.250.224.0/22 132615 -43.250.228.0/22 2519 -43.250.232.0/24 10084 -43.250.234.0/24 10084 -43.250.236.0/22 59029 -43.250.240.0/22 45356 -43.250.244.0/22 4837 -43.250.248.0/22 38719 -43.250.252.0/22 133283 -43.251.0.0/22 45661 -43.251.8.0/22 8100 -43.251.12.0/22 134548 -43.251.16.0/23 55933 -43.251.20.0/22 9381 -43.251.24.0/22 9381 -43.251.28.0/22 55303 -43.251.34.0/23 132818 -43.251.36.0/22 4837 -43.251.40.0/22 11054 -43.251.44.0/22 55303 -43.251.48.0/22 2519 -43.251.52.0/22 38835 -43.251.56.0/22 131603 -43.251.60.0/22 131593 -43.251.64.0/22 136462 -43.251.68.0/22 55303 -43.251.72.0/22 45916 -43.251.76.0/22 55303 -43.251.80.0/22 133297 -43.251.84.0/22 45766 -43.251.88.0/22 45775 -43.251.92.0/22 132116 -43.251.96.0/22 132641 -43.251.100.0/22 137443 -43.251.104.0/23 132839 -43.251.106.0/23 136800 -43.251.108.0/22 17766 -43.251.112.0/22 132825 -43.251.116.0/22 62468 -43.251.120.0/22 17598 -43.251.124.0/22 55303 -43.251.128.0/22 55303 -43.251.132.0/22 9381 -43.251.136.0/23 24028 -43.251.138.0/24 9534 -43.251.139.0/24 24028 -43.251.140.0/22 9381 -43.251.144.0/21 55303 -43.251.152.0/23 45780 -43.251.155.0/24 45780 -43.251.157.0/24 134520 -43.251.158.0/24 55799 -43.251.159.0/24 134520 -43.251.160.0/22 57433 -43.251.164.0/22 22363 -43.251.168.0/21 45804 -43.251.176.0/22 45804 -43.251.180.0/22 40676 -43.251.184.0/24 15412 -43.251.185.0/24 9311 -43.251.186.0/24 15412 -43.251.187.0/24 9311 -43.251.188.0/22 59161 -43.251.196.0/22 9381 -43.251.200.0/22 9268 -43.251.204.0/22 38794 -43.251.208.0/22 45352 -43.251.212.0/23 18002 -43.251.214.0/24 18002 -43.251.216.0/22 133001 -43.251.220.0/22 45916 -43.251.224.0/22 40065 -43.251.228.0/22 136800 -43.251.236.0/22 132883 -43.251.240.0/22 133794 -43.251.244.0/22 9808 -43.251.252.0/22 136384 -43.252.0.0/22 45270 -43.252.8.0/22 46023 -43.252.12.0/22 17470 -43.252.16.0/22 131178 -43.252.24.0/21 58640 -43.252.36.0/23 45144 -43.252.38.0/24 45144 -43.252.40.0/22 38277 -43.252.44.0/22 23678 -43.252.48.0/24 133111 -43.252.52.0/22 9231 -43.252.60.0/22 45117 -43.252.64.0/22 132815 -43.252.68.0/22 55785 -43.252.72.0/22 38758 -43.252.76.0/22 9268 -43.252.80.0/22 133070 -43.252.84.0/22 10099 -43.252.88.0/22 17439 -43.252.92.0/22 17465 -43.252.96.0/22 55766 -43.252.100.0/22 55862 -43.252.104.0/22 45305 -43.252.108.0/22 38803 -43.252.112.0/22 135126 -43.252.116.0/22 45117 -43.252.120.0/22 45652 -43.252.124.0/22 135513 -43.252.128.0/24 4826 -43.252.132.0/22 10032 -43.252.136.0/23 58404 -43.252.138.0/24 58404 -43.252.140.0/22 55814 -43.252.144.0/23 56233 -43.252.148.0/22 58411 -43.252.154.0/23 45352 -43.252.156.0/22 55666 -43.252.160.0/22 59371 -43.252.164.0/22 38277 -43.252.168.0/22 58779 -43.252.172.0/22 59371 -43.252.178.0/24 38478 -43.252.180.0/22 38794 -43.252.184.0/22 58816 -43.252.192.0/22 17625 -43.252.196.0/22 45916 -43.252.204.0/22 45884 -43.252.208.0/22 64021 -43.252.212.0/22 46015 -43.252.216.0/22 132882 -43.252.220.0/23 133469 -43.252.222.0/23 58481 -43.252.228.0/22 55933 -43.252.232.0/22 38044 -43.252.236.0/23 55701 -43.252.238.0/24 55701 -43.252.239.0/24 45316 -43.252.240.0/22 58438 -43.252.244.0/22 10226 -43.252.248.0/22 23860 -43.252.252.0/22 9822 -43.253.0.0/18 17686 -43.253.64.0/21 59095 -43.253.72.0/21 17686 -43.253.80.0/20 17686 -43.253.96.0/19 17686 -43.253.128.0/17 17686 -43.254.0.0/22 55990 -43.254.8.0/22 4837 -43.254.16.0/22 131149 -43.254.20.0/22 58423 -43.254.24.0/24 4808 -43.254.25.0/24 4847 -43.254.26.0/23 4847 -43.254.28.0/22 132779 -43.254.32.0/22 134331 -43.254.40.0/22 18229 -43.254.44.0/22 17621 -43.254.48.0/23 58597 -43.254.50.0/24 58597 -43.254.52.0/22 138950 -43.254.56.0/22 133606 -43.254.60.0/22 59243 -43.254.64.0/22 4515 -43.254.72.0/22 4847 -43.254.88.0/22 4847 -43.254.100.0/22 134542 -43.254.104.0/23 17621 -43.254.106.0/24 4812 -43.254.108.0/22 56272 -43.254.116.0/22 4808 -43.254.120.0/22 24319 -43.254.124.0/22 58482 -43.254.128.0/22 134764 -43.254.132.0/23 131447 -43.254.134.0/24 131447 -43.254.135.0/24 135063 -43.254.136.0/22 4837 -43.254.144.0/21 17621 -43.254.152.0/24 4812 -43.254.153.0/24 59083 -43.254.154.0/23 59083 -43.254.156.0/22 59072 -43.254.160.0/22 45648 -43.254.164.0/22 58985 -43.254.168.0/22 4837 -43.254.176.0/22 45954 -43.254.192.0/22 4808 -43.254.200.0/22 4847 -43.254.204.0/22 58659 -43.254.212.0/22 58659 -43.254.216.0/22 55933 -43.254.220.0/22 4812 -43.254.224.0/22 17621 -43.254.228.0/22 45110 -43.254.232.0/21 45110 -43.254.240.0/22 45110 -43.254.244.0/22 38661 -43.254.248.0/22 45110 -43.255.0.0/22 45110 -43.255.4.0/22 24137 -43.255.12.0/22 131584 -43.255.20.0/23 133605 -43.255.22.0/24 133605 -43.255.24.0/22 18119 -43.255.28.0/22 133199 -43.255.32.0/22 59346 -43.255.36.0/23 64021 -43.255.38.0/24 64021 -43.255.39.0/24 132422 -43.255.40.0/22 23620 -43.255.44.0/22 59346 -43.255.52.0/22 59214 -43.255.56.0/22 133296 -43.255.60.0/22 23884 -43.255.68.0/22 63581 -43.255.82.0/24 36351 -43.255.84.0/22 138950 -43.255.88.0/22 24157 -43.255.100.0/22 14127 -43.255.104.0/22 62468 -43.255.108.0/22 134548 -43.255.112.0/22 58424 -43.255.116.0/23 64021 -43.255.118.0/24 64021 -43.255.119.0/24 132422 -43.255.120.0/23 58985 -43.255.123.0/24 58985 -43.255.128.0/23 18361 -43.255.132.0/22 58659 -43.255.136.0/22 132007 -43.255.140.0/22 58659 -43.255.148.0/22 38201 -43.255.152.0/22 26496 -43.255.156.0/22 58985 -43.255.160.0/22 23838 -43.255.164.0/22 135817 -43.255.168.0/23 58962 -43.255.170.0/24 58962 -43.255.172.0/22 9534 -43.255.180.0/22 24157 -43.255.188.0/22 134176 -43.255.192.0/22 58519 -43.255.196.0/22 23693 -43.255.212.0/22 134764 -43.255.216.0/22 17970 -43.255.220.0/22 133720 -43.255.224.0/22 63548 -43.255.228.0/22 59043 -43.255.236.0/22 17480 -43.255.240.0/22 59374 -43.255.252.0/22 38676 -44.0.0.0/15 7377 -44.2.0.0/22 7377 -44.2.4.0/23 7377 -44.2.6.0/24 209 -44.2.7.0/24 7377 -44.2.8.0/22 7377 -44.2.12.0/24 20473 -44.2.13.0/24 7377 -44.2.14.0/23 7377 -44.2.16.0/23 7377 -44.2.18.0/24 203729 -44.2.19.0/24 7377 -44.2.20.0/22 7377 -44.2.24.0/21 7377 -44.2.32.0/19 7377 -44.2.64.0/18 7377 -44.2.128.0/17 7377 -44.3.0.0/22 7377 -44.3.4.0/24 64249 -44.3.5.0/24 7377 -44.3.6.0/23 7377 -44.3.8.0/21 7377 -44.3.16.0/20 7377 -44.3.32.0/19 7377 -44.3.64.0/18 7377 -44.3.128.0/17 7377 -44.4.0.0/20 7377 -44.4.16.0/24 7377 -44.4.17.0/24 7034 -44.4.18.0/23 7377 -44.4.20.0/22 7377 -44.4.24.0/21 7377 -44.4.32.0/21 7377 -44.4.40.0/24 7377 -44.4.41.0/24 26073 -44.4.42.0/23 7377 -44.4.44.0/24 208707 -44.4.45.0/24 7377 -44.4.46.0/23 7377 -44.4.48.0/23 7377 -44.4.50.0/24 7377 -44.4.51.0/24 20473 -44.4.52.0/22 7377 -44.4.56.0/24 7377 -44.4.57.0/24 32329 -44.4.58.0/24 40216 -44.4.59.0/24 7377 -44.4.60.0/22 7377 -44.4.64.0/22 13925 -44.4.68.0/22 7377 -44.4.72.0/21 7377 -44.4.80.0/20 7377 -44.4.96.0/19 7377 -44.4.128.0/22 30640 -44.4.132.0/22 7377 -44.4.136.0/21 7377 -44.4.144.0/20 7377 -44.4.160.0/19 7377 -44.4.192.0/18 7377 -44.5.0.0/16 7377 -44.6.0.0/17 7377 -44.6.128.0/24 29962 -44.6.129.0/24 7377 -44.6.130.0/23 7377 -44.6.132.0/22 7377 -44.6.136.0/21 7377 -44.6.144.0/20 7377 -44.6.160.0/19 7377 -44.6.192.0/18 7377 -44.7.0.0/16 7377 -44.8.0.0/22 7377 -44.8.4.0/24 7377 -44.8.5.0/24 195 -44.8.6.0/23 7377 -44.8.8.0/21 7377 -44.8.16.0/20 7377 -44.8.32.0/19 7377 -44.8.64.0/18 7377 -44.8.128.0/17 7377 -44.9.0.0/16 7377 -44.10.0.0/21 7377 -44.10.8.0/23 7377 -44.10.10.0/24 7247 -44.10.11.0/24 7377 -44.10.12.0/22 7377 -44.10.16.0/20 7377 -44.10.32.0/19 7377 -44.10.64.0/18 7377 -44.10.128.0/17 7377 -44.11.0.0/16 7377 -44.12.0.0/22 7377 -44.12.4.0/23 7377 -44.12.6.0/23 63479 -44.12.8.0/24 7377 -44.12.9.0/24 63479 -44.12.10.0/23 7377 -44.12.12.0/23 7377 -44.12.14.0/24 395394 -44.12.15.0/24 7377 -44.12.16.0/20 7377 -44.12.32.0/20 7377 -44.12.48.0/24 397376 -44.12.49.0/24 7377 -44.12.50.0/23 7377 -44.12.52.0/22 7377 -44.12.56.0/21 7377 -44.12.64.0/19 7377 -44.12.96.0/22 63479 -44.12.100.0/22 7377 -44.12.104.0/21 7377 -44.12.112.0/20 7377 -44.12.128.0/17 7377 -44.13.0.0/16 7377 -44.14.0.0/15 7377 -44.16.0.0/21 7377 -44.16.8.0/22 7377 -44.16.12.0/23 7377 -44.16.14.0/24 7377 -44.16.15.0/24 226 -44.16.16.0/20 7377 -44.16.32.0/20 7377 -44.16.48.0/23 7377 -44.16.50.0/23 202540 -44.16.52.0/22 7377 -44.16.56.0/21 7377 -44.16.64.0/18 7377 -44.16.128.0/17 7377 -44.17.0.0/16 7377 -44.18.0.0/15 7377 -44.20.0.0/22 7377 -44.20.4.0/24 20473 -44.20.5.0/24 7377 -44.20.6.0/23 7377 -44.20.8.0/21 7377 -44.20.16.0/21 7377 -44.20.24.0/22 7377 -44.20.28.0/24 7377 -44.20.29.0/24 20473 -44.20.30.0/23 7377 -44.20.32.0/21 7377 -44.20.40.0/24 30475 -44.20.41.0/24 7377 -44.20.42.0/24 7377 -44.20.43.0/24 20473 -44.20.44.0/24 209089 -44.20.45.0/24 7377 -44.20.46.0/23 7377 -44.20.48.0/20 7377 -44.20.64.0/18 7377 -44.20.128.0/17 7377 -44.21.0.0/16 7377 -44.22.0.0/15 7377 -44.24.0.0/17 7377 -44.24.128.0/23 7377 -44.24.130.0/24 7377 -44.24.131.0/24 63479 -44.24.132.0/24 54858 -44.24.133.0/24 7377 -44.24.134.0/24 7377 -44.24.135.0/24 201106 -44.24.136.0/21 7377 -44.24.144.0/20 7377 -44.24.160.0/20 7377 -44.24.176.0/22 7377 -44.24.180.0/24 7377 -44.24.181.0/24 396388 -44.24.182.0/24 20473 -44.24.183.0/24 7377 -44.24.184.0/21 7377 -44.24.192.0/21 7377 -44.24.200.0/22 26370 -44.24.204.0/22 7377 -44.24.208.0/21 7377 -44.24.216.0/22 7377 -44.24.220.0/24 7377 -44.24.221.0/24 63479 -44.24.222.0/23 7377 -44.24.224.0/20 7377 -44.24.240.0/20 63479 -44.25.0.0/16 63479 -44.26.0.0/18 7377 -44.26.64.0/19 7377 -44.26.96.0/21 7377 -44.26.104.0/22 7377 -44.26.108.0/24 63479 -44.26.109.0/24 7377 -44.26.110.0/23 7377 -44.26.112.0/20 7377 -44.26.128.0/22 63069 -44.26.132.0/22 7377 -44.26.136.0/21 7377 -44.26.144.0/20 7377 -44.26.160.0/23 7377 -44.26.162.0/24 7377 -44.26.163.0/24 34553 -44.26.164.0/22 7377 -44.26.168.0/21 7377 -44.26.176.0/20 7377 -44.26.192.0/18 7377 -44.27.0.0/16 7377 -44.28.0.0/15 7377 -44.30.0.0/17 7377 -44.30.128.0/18 7377 -44.30.192.0/19 7377 -44.30.224.0/20 7377 -44.30.240.0/20 63479 -44.31.0.0/16 7377 -44.32.0.0/15 7377 -44.34.0.0/18 7377 -44.34.64.0/19 7377 -44.34.96.0/24 20473 -44.34.97.0/24 7377 -44.34.98.0/23 7377 -44.34.100.0/23 7377 -44.34.102.0/23 397911 -44.34.104.0/21 7377 -44.34.112.0/20 7377 -44.34.128.0/21 63479 -44.34.136.0/21 7377 -44.34.144.0/20 7377 -44.34.160.0/19 7377 -44.34.192.0/18 7377 -44.35.0.0/16 7377 -44.36.0.0/21 7377 -44.36.8.0/23 7377 -44.36.10.0/24 7377 -44.36.11.0/24 20473 -44.36.12.0/22 7377 -44.36.16.0/20 7377 -44.36.32.0/19 7377 -44.36.64.0/18 7377 -44.36.128.0/18 7377 -44.36.192.0/19 7377 -44.36.224.0/20 7377 -44.36.240.0/21 63479 -44.36.248.0/21 7377 -44.37.0.0/16 7377 -44.38.0.0/21 7377 -44.38.8.0/23 7377 -44.38.10.0/24 204778 -44.38.11.0/24 7377 -44.38.12.0/22 7377 -44.38.16.0/20 7377 -44.38.32.0/19 7377 -44.38.64.0/18 7377 -44.38.128.0/17 7377 -44.39.0.0/16 7377 -44.40.0.0/19 7377 -44.40.32.0/21 7377 -44.40.40.0/22 7377 -44.40.44.0/22 40761 -44.40.48.0/20 7377 -44.40.64.0/18 7377 -44.40.128.0/19 7377 -44.40.160.0/23 20473 -44.40.162.0/23 7377 -44.40.164.0/22 7377 -44.40.168.0/21 7377 -44.40.176.0/20 7377 -44.40.192.0/18 7377 -44.41.0.0/16 7377 -44.42.0.0/15 7377 -44.44.0.0/18 7377 -44.44.64.0/19 7377 -44.44.96.0/20 7377 -44.44.112.0/22 7377 -44.44.116.0/24 7377 -44.44.117.0/24 33083 -44.44.118.0/23 7377 -44.44.120.0/22 7377 -44.44.124.0/23 7377 -44.44.126.0/24 7377 -44.44.127.0/24 156 -44.44.128.0/17 7377 -44.45.0.0/16 7377 -44.46.0.0/20 7377 -44.46.16.0/23 7377 -44.46.18.0/24 19969 -44.46.19.0/24 20473 -44.46.20.0/24 21737 -44.46.21.0/24 7377 -44.46.22.0/23 7377 -44.46.24.0/21 7377 -44.46.32.0/19 7377 -44.46.64.0/18 7377 -44.46.128.0/17 7377 -44.47.0.0/16 7377 -44.48.0.0/21 7377 -44.48.8.0/22 20473 -44.48.12.0/22 7377 -44.48.16.0/24 7332 -44.48.17.0/24 7377 -44.48.18.0/23 7377 -44.48.20.0/22 7377 -44.48.24.0/23 7332 -44.48.26.0/23 20473 -44.48.28.0/22 7377 -44.48.32.0/21 7377 -44.48.40.0/24 7377 -44.48.41.0/24 42615 -44.48.42.0/23 7377 -44.48.44.0/22 7377 -44.48.48.0/24 395990 -44.48.49.0/24 7377 -44.48.50.0/23 7377 -44.48.52.0/22 7377 -44.48.56.0/21 7377 -44.48.64.0/18 7377 -44.48.128.0/19 7377 -44.48.160.0/21 7377 -44.48.168.0/23 7377 -44.48.170.0/24 20473 -44.48.171.0/24 7377 -44.48.172.0/22 7377 -44.48.176.0/20 7377 -44.48.192.0/18 7377 -44.49.0.0/16 7377 -44.50.0.0/24 7377 -44.50.1.0/24 20473 -44.50.2.0/23 7377 -44.50.4.0/22 7377 -44.50.8.0/21 7377 -44.50.16.0/20 7377 -44.50.32.0/19 7377 -44.50.64.0/18 7377 -44.50.128.0/17 7377 -44.51.0.0/16 7377 -44.52.0.0/14 7377 -44.56.0.0/17 7377 -44.56.128.0/24 19969 -44.56.129.0/24 7377 -44.56.130.0/23 7377 -44.56.132.0/22 7377 -44.56.136.0/22 7377 -44.56.140.0/24 14815 -44.56.141.0/24 7377 -44.56.142.0/23 7377 -44.56.144.0/20 7377 -44.56.160.0/19 7377 -44.56.192.0/21 7377 -44.56.200.0/22 7377 -44.56.204.0/23 7377 -44.56.206.0/24 7377 -44.56.207.0/24 20473 -44.56.208.0/20 7377 -44.56.224.0/19 7377 -44.57.0.0/16 7377 -44.58.0.0/15 7377 -44.60.0.0/15 7377 -44.62.0.0/23 7377 -44.62.2.0/24 7377 -44.62.3.0/24 20473 -44.62.4.0/22 7377 -44.62.8.0/23 7377 -44.62.10.0/24 7247 -44.62.11.0/24 20473 -44.62.12.0/24 7377 -44.62.13.0/24 20473 -44.62.14.0/24 20473 -44.62.15.0/24 7377 -44.62.16.0/20 7377 -44.62.32.0/19 7377 -44.62.64.0/18 7377 -44.62.128.0/17 7377 -44.63.0.0/16 7377 -44.64.0.0/14 7377 -44.68.0.0/15 7377 -44.70.0.0/20 7377 -44.70.16.0/21 7377 -44.70.24.0/23 20473 -44.70.26.0/23 7377 -44.70.28.0/22 7377 -44.70.32.0/20 7377 -44.70.48.0/23 53356 -44.70.50.0/24 138414 -44.70.51.0/24 7377 -44.70.52.0/22 7377 -44.70.56.0/21 7377 -44.70.64.0/18 7377 -44.70.128.0/17 7377 -44.71.0.0/16 7377 -44.72.0.0/20 7377 -44.72.16.0/22 7377 -44.72.20.0/24 7377 -44.72.21.0/24 22829 -44.72.22.0/23 7377 -44.72.24.0/21 7377 -44.72.32.0/19 7377 -44.72.64.0/18 7377 -44.72.128.0/17 7377 -44.73.0.0/16 7377 -44.74.0.0/22 7377 -44.74.4.0/24 7377 -44.74.5.0/24 53274 -44.74.6.0/23 7377 -44.74.8.0/21 7377 -44.74.16.0/20 7377 -44.74.32.0/19 7377 -44.74.64.0/18 7377 -44.74.128.0/17 7377 -44.75.0.0/16 7377 -44.76.0.0/22 7377 -44.76.4.0/22 62744 -44.76.8.0/22 7377 -44.76.12.0/24 396414 -44.76.13.0/24 26857 -44.76.14.0/24 397438 -44.76.15.0/24 20473 -44.76.16.0/24 397677 -44.76.17.0/24 36198 -44.76.18.0/23 7377 -44.76.20.0/22 7377 -44.76.24.0/21 7377 -44.76.32.0/19 7377 -44.76.64.0/18 7377 -44.76.128.0/17 7377 -44.77.0.0/16 7377 -44.78.0.0/15 7377 -44.80.0.0/13 7377 -44.88.0.0/15 7377 -44.90.0.0/19 7377 -44.90.32.0/20 7377 -44.90.48.0/22 7377 -44.90.52.0/23 7377 -44.90.54.0/24 7377 -44.90.55.0/24 19969 -44.90.56.0/21 7377 -44.90.64.0/18 7377 -44.90.128.0/20 7377 -44.90.144.0/23 7377 -44.90.146.0/24 20473 -44.90.147.0/24 7377 -44.90.148.0/22 7377 -44.90.152.0/21 7377 -44.90.160.0/19 7377 -44.90.192.0/18 7377 -44.91.0.0/16 7377 -44.92.0.0/19 7377 -44.92.32.0/20 7377 -44.92.48.0/22 7377 -44.92.52.0/22 30162 -44.92.56.0/21 7377 -44.92.64.0/18 7377 -44.92.128.0/17 7377 -44.93.0.0/16 7377 -44.94.0.0/18 7377 -44.94.64.0/22 53740 -44.94.68.0/22 7377 -44.94.72.0/23 53301 -44.94.74.0/24 53301 -44.94.75.0/24 7377 -44.94.76.0/22 7377 -44.94.80.0/22 53301 -44.94.84.0/22 7377 -44.94.88.0/21 7377 -44.94.96.0/20 10377 -44.94.112.0/20 7377 -44.94.128.0/17 7377 -44.95.0.0/16 7377 -44.96.0.0/15 7377 -44.98.0.0/17 7377 -44.98.128.0/18 7377 -44.98.192.0/19 7377 -44.98.224.0/20 7377 -44.98.240.0/22 7377 -44.98.244.0/24 12110 -44.98.245.0/24 29802 -44.98.246.0/23 7377 -44.98.248.0/23 12110 -44.98.250.0/23 7377 -44.98.252.0/24 12110 -44.98.253.0/24 7377 -44.98.254.0/24 12110 -44.98.255.0/24 7377 -44.99.0.0/16 7377 -44.100.0.0/18 7377 -44.100.64.0/20 7377 -44.100.80.0/21 7377 -44.100.88.0/22 7377 -44.100.92.0/23 7377 -44.100.94.0/24 20473 -44.100.95.0/24 7377 -44.100.96.0/19 7377 -44.100.128.0/17 7377 -44.101.0.0/16 7377 -44.102.0.0/16 7377 -44.103.0.0/19 54869 -44.103.32.0/23 18675 -44.103.34.0/24 22829 -44.103.35.0/24 40720 -44.103.36.0/23 7377 -44.103.38.0/24 7377 -44.103.39.0/24 64218 -44.103.40.0/21 7377 -44.103.48.0/23 62618 -44.103.50.0/24 18675 -44.103.51.0/24 7377 -44.103.52.0/22 7377 -44.103.56.0/21 7377 -44.103.64.0/18 7377 -44.103.128.0/17 7377 -44.104.0.0/14 7377 -44.108.0.0/21 7377 -44.108.8.0/24 395813 -44.108.9.0/24 7377 -44.108.10.0/24 27294 -44.108.11.0/24 7377 -44.108.12.0/22 7377 -44.108.16.0/20 7377 -44.108.32.0/19 7377 -44.108.64.0/18 7377 -44.108.128.0/17 7377 -44.109.0.0/16 7377 -44.110.0.0/24 54489 -44.110.1.0/24 7377 -44.110.2.0/23 7377 -44.110.4.0/22 7377 -44.110.8.0/21 7377 -44.110.16.0/20 7377 -44.110.32.0/19 7377 -44.110.64.0/18 7377 -44.110.128.0/17 7377 -44.111.0.0/16 7377 -44.112.0.0/13 7377 -44.120.0.0/14 7377 -44.124.0.0/21 7377 -44.124.8.0/24 206885 -44.124.9.0/24 7377 -44.124.10.0/23 7377 -44.124.12.0/22 7377 -44.124.16.0/20 7377 -44.124.32.0/19 7377 -44.124.64.0/18 7377 -44.124.128.0/17 7377 -44.125.0.0/24 20018 -44.125.1.0/24 7377 -44.125.2.0/23 7377 -44.125.4.0/22 7377 -44.125.8.0/21 7377 -44.125.16.0/20 7377 -44.125.32.0/19 7377 -44.125.64.0/18 7377 -44.125.128.0/17 7377 -44.126.0.0/16 7377 -44.127.0.0/24 7377 -44.127.1.0/24 33695 -44.127.2.0/23 7377 -44.127.4.0/23 7377 -44.127.6.0/23 12637 -44.127.8.0/21 7377 -44.127.16.0/20 394144 -44.127.32.0/21 7377 -44.127.40.0/24 19969 -44.127.41.0/24 7377 -44.127.42.0/23 7377 -44.127.44.0/22 23738 -44.127.48.0/20 7377 -44.127.64.0/18 7377 -44.127.128.0/24 61337 -44.127.129.0/24 7377 -44.127.130.0/23 7377 -44.127.132.0/22 7377 -44.127.136.0/21 7377 -44.127.144.0/20 7377 -44.127.160.0/19 7377 -44.127.192.0/24 201106 -44.127.193.0/24 7377 -44.127.194.0/23 7377 -44.127.196.0/22 7377 -44.127.200.0/21 7377 -44.127.208.0/20 7377 -44.127.224.0/19 7377 -44.128.0.0/16 7377 -44.129.0.0/20 7377 -44.129.16.0/24 7377 -44.129.17.0/24 139589 -44.129.18.0/23 7377 -44.129.20.0/22 7377 -44.129.24.0/21 7377 -44.129.32.0/19 7377 -44.129.64.0/18 7377 -44.129.128.0/17 7377 -44.130.0.0/18 7377 -44.130.64.0/19 7377 -44.130.96.0/23 7377 -44.130.98.0/24 7377 -44.130.99.0/24 28748 -44.130.100.0/22 7377 -44.130.104.0/22 48777 -44.130.108.0/22 7377 -44.130.112.0/24 202113 -44.130.113.0/24 7377 -44.130.114.0/23 7377 -44.130.116.0/24 199610 -44.130.117.0/24 7377 -44.130.118.0/23 7377 -44.130.120.0/24 13132 -44.130.121.0/24 48777 -44.130.122.0/23 48777 -44.130.124.0/22 48777 -44.130.128.0/17 7377 -44.131.0.0/24 7377 -44.131.1.0/24 207748 -44.131.2.0/24 60899 -44.131.3.0/24 200280 -44.131.4.0/24 30746 -44.131.5.0/24 61220 -44.131.6.0/24 207754 -44.131.7.0/24 7377 -44.131.8.0/24 7377 -44.131.9.0/24 38950 -44.131.10.0/24 208907 -44.131.11.0/24 7377 -44.131.12.0/24 25369 -44.131.13.0/24 206754 -44.131.14.0/24 206671 -44.131.15.0/24 20473 -44.131.16.0/22 7377 -44.131.20.0/23 7377 -44.131.22.0/24 7377 -44.131.23.0/24 20712 -44.131.24.0/21 7377 -44.131.32.0/19 7377 -44.131.64.0/18 7377 -44.131.128.0/17 7377 -44.132.0.0/16 7377 -44.133.0.0/17 7377 -44.133.128.0/18 7377 -44.133.192.0/21 7377 -44.133.200.0/24 7377 -44.133.201.0/24 205827 -44.133.202.0/23 7377 -44.133.204.0/22 7377 -44.133.208.0/20 7377 -44.133.224.0/21 7377 -44.133.232.0/24 7377 -44.133.233.0/24 205827 -44.133.234.0/23 7377 -44.133.236.0/22 7377 -44.133.240.0/20 7377 -44.134.0.0/19 7377 -44.134.32.0/22 7377 -44.134.36.0/23 7377 -44.134.38.0/23 197835 -44.134.40.0/21 7377 -44.134.48.0/20 7377 -44.134.64.0/18 7377 -44.134.128.0/18 7377 -44.134.192.0/21 7377 -44.134.200.0/22 7377 -44.134.204.0/23 7377 -44.134.206.0/23 31638 -44.134.208.0/20 7377 -44.134.224.0/19 7377 -44.135.0.0/18 7377 -44.135.64.0/19 7377 -44.135.96.0/20 7377 -44.135.112.0/22 7377 -44.135.116.0/22 396503 -44.135.120.0/24 18451 -44.135.121.0/24 7377 -44.135.122.0/23 7377 -44.135.124.0/22 7377 -44.135.128.0/23 7377 -44.135.130.0/23 40092 -44.135.132.0/22 7377 -44.135.136.0/21 7377 -44.135.144.0/20 7377 -44.135.160.0/21 25999 -44.135.168.0/23 7377 -44.135.170.0/24 36369 -44.135.171.0/24 7377 -44.135.172.0/22 7377 -44.135.176.0/22 7377 -44.135.180.0/24 63479 -44.135.181.0/24 7377 -44.135.182.0/23 7377 -44.135.184.0/21 7377 -44.135.192.0/24 7377 -44.135.193.0/24 53356 -44.135.194.0/23 7377 -44.135.196.0/24 7377 -44.135.197.0/24 26288 -44.135.198.0/24 7377 -44.135.199.0/24 22113 -44.135.200.0/21 7377 -44.135.208.0/21 40598 -44.135.216.0/23 25999 -44.135.218.0/24 63297 -44.135.219.0/24 63479 -44.135.220.0/22 7377 -44.135.224.0/19 7377 -44.136.0.0/19 7377 -44.136.32.0/24 7377 -44.136.33.0/24 20473 -44.136.34.0/23 7377 -44.136.36.0/22 7377 -44.136.40.0/21 7377 -44.136.48.0/21 7377 -44.136.56.0/22 7377 -44.136.60.0/24 134830 -44.136.61.0/24 4739 -44.136.62.0/23 7377 -44.136.64.0/22 133536 -44.136.68.0/24 133536 -44.136.69.0/24 7377 -44.136.70.0/23 7377 -44.136.72.0/21 7377 -44.136.80.0/20 7377 -44.136.96.0/20 7377 -44.136.112.0/21 7377 -44.136.120.0/22 7377 -44.136.124.0/24 9449 -44.136.125.0/24 7377 -44.136.126.0/23 7377 -44.136.128.0/23 20473 -44.136.130.0/23 7377 -44.136.132.0/22 7377 -44.136.136.0/23 7377 -44.136.138.0/24 4764 -44.136.139.0/24 7701 -44.136.140.0/22 7377 -44.136.144.0/22 7377 -44.136.148.0/23 7377 -44.136.150.0/24 4764 -44.136.151.0/24 7701 -44.136.152.0/23 4764 -44.136.154.0/24 7701 -44.136.155.0/24 137273 -44.136.156.0/24 4764 -44.136.157.0/24 7377 -44.136.158.0/23 7490 -44.136.160.0/19 7377 -44.136.192.0/21 7377 -44.136.200.0/24 7377 -44.136.201.0/24 45671 -44.136.202.0/23 7377 -44.136.204.0/22 7377 -44.136.208.0/20 7377 -44.136.224.0/23 7377 -44.136.226.0/24 7377 -44.136.227.0/24 4764 -44.136.228.0/22 7377 -44.136.232.0/21 7377 -44.136.240.0/20 7377 -44.137.0.0/16 208717 -44.138.0.0/16 7377 -44.139.0.0/16 34387 -44.140.0.0/16 1653 -44.141.0.0/18 7377 -44.141.64.0/19 7377 -44.141.96.0/20 7377 -44.141.112.0/21 7377 -44.141.120.0/22 7377 -44.141.124.0/24 58302 -44.141.125.0/24 20473 -44.141.126.0/23 7377 -44.141.128.0/22 7377 -44.141.132.0/24 58302 -44.141.133.0/24 7377 -44.141.134.0/23 7377 -44.141.136.0/22 7377 -44.141.140.0/22 16175 -44.141.144.0/20 7377 -44.141.160.0/19 7377 -44.141.192.0/18 7377 -44.142.0.0/15 7377 -44.144.0.0/19 62383 -44.144.32.0/20 62383 -44.144.48.0/24 62383 -44.144.49.0/24 20473 -44.144.50.0/24 62383 -44.144.51.0/24 50083 -44.144.52.0/22 62383 -44.144.56.0/21 62383 -44.144.64.0/19 62383 -44.144.96.0/22 62383 -44.144.100.0/23 35701 -44.144.102.0/23 62383 -44.144.104.0/21 62383 -44.144.112.0/21 62383 -44.144.120.0/23 62383 -44.144.122.0/24 62383 -44.144.123.0/24 20473 -44.144.124.0/24 35701 -44.144.125.0/24 62383 -44.144.126.0/23 62383 -44.144.128.0/20 62383 -44.144.144.0/23 62383 -44.144.146.0/24 34762 -44.144.147.0/24 62383 -44.144.148.0/22 62383 -44.144.152.0/21 62383 -44.144.160.0/19 62383 -44.144.192.0/18 62383 -44.145.0.0/17 7377 -44.145.128.0/24 209616 -44.145.129.0/24 7377 -44.145.130.0/23 7377 -44.145.132.0/22 7377 -44.145.136.0/21 7377 -44.145.144.0/20 7377 -44.145.160.0/19 7377 -44.145.192.0/18 7377 -44.146.0.0/15 7377 -44.148.0.0/15 7377 -44.150.0.0/16 7377 -44.151.0.0/17 7377 -44.151.128.0/18 7377 -44.151.192.0/21 7377 -44.151.200.0/24 209097 -44.151.201.0/24 7377 -44.151.202.0/23 7377 -44.151.204.0/22 7377 -44.151.208.0/20 7377 -44.151.224.0/19 7377 -44.152.0.0/15 7377 -44.154.0.0/18 7377 -44.154.64.0/22 7377 -44.154.68.0/23 7377 -44.154.70.0/24 5408 -44.154.71.0/24 7377 -44.154.72.0/21 7377 -44.154.80.0/20 7377 -44.154.96.0/19 7377 -44.154.128.0/23 7377 -44.154.130.0/24 210312 -44.154.131.0/24 7377 -44.154.132.0/24 210312 -44.154.133.0/24 7377 -44.154.134.0/23 7377 -44.154.136.0/21 7377 -44.154.144.0/24 7377 -44.154.145.0/24 5408 -44.154.146.0/23 7377 -44.154.148.0/22 7377 -44.154.152.0/21 7377 -44.154.160.0/19 7377 -44.154.192.0/18 7377 -44.155.0.0/17 1213 -44.155.128.0/18 1213 -44.155.192.0/21 1213 -44.155.200.0/24 209506 -44.155.201.0/24 1213 -44.155.202.0/23 1213 -44.155.204.0/22 1213 -44.155.208.0/20 1213 -44.155.224.0/19 1213 -44.156.0.0/15 7377 -44.158.0.0/16 7377 -44.159.0.0/21 7377 -44.159.8.0/22 7377 -44.159.12.0/22 56067 -44.159.16.0/20 7377 -44.159.32.0/19 7377 -44.159.64.0/24 135646 -44.159.65.0/24 7377 -44.159.66.0/23 135646 -44.159.68.0/22 7377 -44.159.72.0/21 7377 -44.159.80.0/24 7377 -44.159.81.0/24 48301 -44.159.82.0/23 7377 -44.159.84.0/22 7377 -44.159.88.0/21 7377 -44.159.96.0/19 7377 -44.159.128.0/17 7377 -44.160.0.0/16 7377 -44.161.0.0/17 7377 -44.161.128.0/18 7377 -44.161.192.0/21 7377 -44.161.200.0/22 7377 -44.161.204.0/23 15780 -44.161.206.0/23 7377 -44.161.208.0/21 7377 -44.161.216.0/23 7377 -44.161.218.0/24 7377 -44.161.219.0/24 15780 -44.161.220.0/22 15780 -44.161.224.0/22 7377 -44.161.228.0/23 7377 -44.161.230.0/24 15780 -44.161.231.0/24 7377 -44.161.232.0/22 7377 -44.161.236.0/24 7377 -44.161.237.0/24 15780 -44.161.238.0/23 15780 -44.161.240.0/20 7377 -44.162.0.0/16 39120 -44.163.0.0/16 7377 -44.164.0.0/18 7377 -44.164.64.0/22 207036 -44.164.68.0/22 7377 -44.164.72.0/21 7377 -44.164.80.0/20 7377 -44.164.96.0/19 7377 -44.164.128.0/17 7377 -44.165.0.0/16 7377 -44.166.0.0/15 7377 -44.168.0.0/16 20473 -44.169.0.0/16 7377 -44.170.0.0/16 198785 -44.171.0.0/16 7377 -44.172.0.0/15 7377 -44.174.0.0/17 7377 -44.174.128.0/18 7377 -44.174.192.0/21 7377 -44.174.200.0/24 7377 -44.174.201.0/24 209114 -44.174.202.0/24 209114 -44.174.203.0/24 7377 -44.174.204.0/22 7377 -44.174.208.0/20 7377 -44.174.224.0/19 7377 -44.175.0.0/16 7377 -44.176.0.0/14 7377 -44.180.0.0/15 7377 -44.182.0.0/20 58247 -44.182.16.0/20 7377 -44.182.32.0/20 7377 -44.182.48.0/22 7377 -44.182.52.0/22 39420 -44.182.56.0/21 7377 -44.182.64.0/20 7377 -44.182.80.0/22 7377 -44.182.84.0/24 43483 -44.182.85.0/24 7377 -44.182.86.0/23 7377 -44.182.88.0/21 7377 -44.182.96.0/19 7377 -44.182.128.0/17 7377 -44.183.0.0/16 7377 -44.184.0.0/17 7377 -44.184.128.0/21 7377 -44.184.136.0/22 55016 -44.184.140.0/22 7377 -44.184.144.0/20 7377 -44.184.160.0/19 7377 -44.184.192.0/18 7377 -44.185.0.0/16 7377 -44.186.0.0/15 7377 -44.188.0.0/17 7377 -44.188.128.0/21 199295 -44.188.136.0/21 7377 -44.188.144.0/20 7377 -44.188.160.0/19 7377 -44.188.192.0/18 7377 -44.189.0.0/16 7377 -44.190.0.0/24 39702 -44.190.1.0/24 202928 -44.190.2.0/24 47251 -44.190.3.0/24 203125 -44.190.4.0/24 7377 -44.190.5.0/24 7247 -44.190.6.0/24 7034 -44.190.7.0/24 53356 -44.190.8.0/24 133217 -44.190.9.0/24 7377 -44.190.10.0/24 16584 -44.190.11.0/24 20473 -44.190.12.0/24 31863 -44.190.13.0/24 199610 -44.190.14.0/24 7377 -44.190.15.0/24 13319 -44.190.16.0/24 45772 -44.190.17.0/24 7377 -44.190.18.0/23 7377 -44.190.20.0/24 202928 -44.190.21.0/24 7377 -44.190.22.0/24 208340 -44.190.23.0/24 203478 -44.190.24.0/22 20473 -44.190.28.0/24 7377 -44.190.29.0/24 397990 -44.190.30.0/23 7377 -44.190.32.0/19 7377 -44.190.64.0/18 7377 -44.190.128.0/18 7377 -44.190.192.0/19 7377 -44.190.224.0/20 7377 -44.190.240.0/21 7377 -44.190.248.0/22 7377 -44.190.252.0/23 7377 -44.190.254.0/24 7377 -44.190.255.0/24 61337 -44.191.0.0/16 7377 -44.192.0.0/11 14618 -44.224.0.0/11 16509 -45.2.0.0/16 7311 -45.3.0.0/19 40788 -45.3.64.0/19 1312 -45.3.96.0/20 40220 -45.3.112.0/20 1312 -45.3.128.0/17 33363 -45.4.0.0/22 265662 -45.4.4.0/22 266042 -45.4.8.0/22 266052 -45.4.12.0/22 266035 -45.4.16.0/22 266053 -45.4.20.0/22 266050 -45.4.24.0/22 266043 -45.4.28.0/22 266036 -45.4.32.0/22 266044 -45.4.36.0/23 266045 -45.4.39.0/24 266045 -45.4.40.0/22 266054 -45.4.44.0/22 266055 -45.4.48.0/22 266037 -45.4.52.0/22 266040 -45.4.56.0/22 266038 -45.4.60.0/22 266039 -45.4.64.0/22 266056 -45.4.68.0/22 266069 -45.4.72.0/22 266046 -45.4.76.0/22 266041 -45.4.80.0/22 266085 -45.4.84.0/22 262234 -45.4.88.0/22 264668 -45.4.92.0/22 265674 -45.4.96.0/24 266077 -45.4.97.0/24 265658 -45.4.98.0/23 265756 -45.4.100.0/22 265673 -45.4.104.0/22 266063 -45.4.108.0/22 266047 -45.4.112.0/22 266070 -45.4.116.0/22 266048 -45.4.120.0/22 266071 -45.4.124.0/22 266066 -45.4.128.0/22 264677 -45.4.132.0/22 266062 -45.4.136.0/22 264677 -45.4.140.0/22 266072 -45.4.144.0/22 266049 -45.4.148.0/22 266073 -45.4.152.0/22 266074 -45.4.156.0/22 266078 -45.4.160.0/22 61518 -45.4.164.0/22 266749 -45.4.168.0/22 264780 -45.4.172.0/22 394474 -45.4.176.0/22 266097 -45.4.180.0/22 266057 -45.4.184.0/22 266051 -45.4.188.0/22 266089 -45.4.192.0/22 266087 -45.4.196.0/22 265671 -45.4.200.0/22 263238 -45.4.204.0/22 265671 -45.4.208.0/22 266086 -45.4.212.0/22 266061 -45.4.216.0/22 265679 -45.4.220.0/22 266067 -45.4.224.0/22 266060 -45.4.228.0/22 266075 -45.4.232.0/22 266059 -45.4.236.0/22 266058 -45.4.240.0/22 266076 -45.4.244.0/22 266065 -45.4.248.0/22 266064 -45.4.252.0/22 265661 -45.5.0.0/23 265687 -45.5.6.0/23 266132 -45.5.8.0/22 265695 -45.5.12.0/24 16906 -45.5.13.0/24 265670 -45.5.14.0/24 266068 -45.5.15.0/24 265690 -45.5.16.0/22 266083 -45.5.20.0/22 265685 -45.5.28.0/22 265706 -45.5.32.0/22 266079 -45.5.36.0/22 266080 -45.5.40.0/22 266093 -45.5.44.0/22 266107 -45.5.48.0/22 266081 -45.5.52.0/22 265530 -45.5.56.0/22 266757 -45.5.60.0/22 262184 -45.5.64.0/22 394474 -45.5.68.0/23 265691 -45.5.70.0/23 27843 -45.5.72.0/22 266082 -45.5.76.0/22 265680 -45.5.80.0/22 266088 -45.5.84.0/22 266090 -45.5.88.0/22 266084 -45.5.92.0/22 28419 -45.5.96.0/22 266091 -45.5.100.0/22 266095 -45.5.104.0/22 266096 -45.5.108.0/22 266092 -45.5.112.0/22 266094 -45.5.116.0/22 265684 -45.5.120.0/22 265672 -45.5.124.0/22 265644 -45.5.128.0/22 266111 -45.5.132.0/22 266112 -45.5.136.0/22 266098 -45.5.140.0/22 266099 -45.5.144.0/22 266103 -45.5.148.0/22 265702 -45.5.152.0/22 265676 -45.5.156.0/22 266114 -45.5.160.0/23 10299 -45.5.164.0/22 10299 -45.5.168.0/22 266179 -45.5.172.0/22 10299 -45.5.178.0/23 266194 -45.5.180.0/23 10299 -45.5.182.0/23 265696 -45.5.184.0/23 265696 -45.5.186.0/23 10299 -45.5.188.0/23 10299 -45.5.190.0/23 265696 -45.5.192.0/24 266104 -45.5.194.0/23 266104 -45.5.196.0/22 266105 -45.5.200.0/22 266106 -45.5.204.0/22 266122 -45.5.208.0/22 266100 -45.5.212.0/22 266101 -45.5.220.0/22 266123 -45.5.224.0/22 266113 -45.5.228.0/22 266102 -45.5.236.0/22 266109 -45.5.240.0/22 266124 -45.5.244.0/22 266110 -45.5.252.0/22 266115 -45.6.0.0/22 266116 -45.6.4.0/22 265686 -45.6.8.0/22 265819 -45.6.12.0/22 266117 -45.6.16.0/22 266119 -45.6.20.0/22 266120 -45.6.24.0/22 266118 -45.6.28.0/22 266121 -45.6.32.0/22 266175 -45.6.36.0/22 266152 -45.6.40.0/22 264605 -45.6.44.0/22 266817 -45.6.48.0/22 52449 -45.6.56.0/22 266128 -45.6.60.0/22 265505 -45.6.64.0/22 266133 -45.6.72.0/22 266126 -45.6.76.0/22 266180 -45.6.80.0/22 266182 -45.6.84.0/22 266186 -45.6.88.0/22 266127 -45.6.92.0/22 266129 -45.6.96.0/22 266185 -45.6.100.0/22 266181 -45.6.104.0/22 265701 -45.6.108.0/22 266130 -45.6.112.0/22 266131 -45.6.116.0/22 266157 -45.6.120.0/22 266158 -45.6.124.0/23 266134 -45.6.128.0/22 266135 -45.6.132.0/22 265697 -45.6.136.0/22 266136 -45.6.140.0/22 265531 -45.6.144.0/22 266227 -45.6.148.0/22 266137 -45.6.152.0/22 266147 -45.6.156.0/22 266231 -45.6.160.0/22 266196 -45.6.164.0/22 266140 -45.6.168.0/22 266138 -45.6.172.0/22 266139 -45.6.176.0/22 266170 -45.6.180.0/22 266232 -45.6.184.0/22 266164 -45.6.188.0/22 266169 -45.6.192.0/22 266545 -45.6.196.0/22 266563 -45.6.200.0/22 266245 -45.6.204.0/22 266246 -45.6.208.0/22 266250 -45.6.212.0/23 265709 -45.6.214.0/24 265709 -45.6.216.0/22 266247 -45.6.220.0/22 266248 -45.6.224.0/22 265724 -45.6.228.0/22 266233 -45.6.232.0/22 266254 -45.6.236.0/22 266234 -45.6.240.0/22 266249 -45.7.0.0/22 266590 -45.7.4.0/22 266613 -45.7.8.0/22 266579 -45.7.12.0/22 266606 -45.7.16.0/22 266560 -45.7.20.0/22 266596 -45.7.24.0/22 266568 -45.7.28.0/22 11172 -45.7.32.0/22 266597 -45.7.36.0/24 6507 -45.7.39.0/24 6507 -45.7.40.0/22 266565 -45.7.44.0/22 265534 -45.7.48.0/22 266580 -45.7.52.0/22 266581 -45.7.56.0/22 266567 -45.7.60.0/22 266561 -45.7.68.0/22 266610 -45.7.72.0/22 266570 -45.7.76.0/22 266578 -45.7.80.0/22 266575 -45.7.84.0/22 265722 -45.7.88.0/23 265723 -45.7.90.0/23 27827 -45.7.92.0/22 28098 -45.7.96.0/22 20207 -45.7.103.0/24 266583 -45.7.104.0/22 266576 -45.7.108.0/22 266571 -45.7.112.0/22 266573 -45.7.116.0/23 266584 -45.7.118.0/24 266584 -45.7.119.0/24 266018 -45.7.120.0/22 266638 -45.7.124.0/22 265692 -45.7.128.0/22 53062 -45.7.132.0/22 267857 -45.7.136.0/23 265554 -45.7.138.0/23 265535 -45.7.140.0/23 52468 -45.7.144.0/22 266605 -45.7.148.0/22 266586 -45.7.152.0/22 266593 -45.7.156.0/22 266587 -45.7.160.0/22 266588 -45.7.164.0/22 266592 -45.7.168.0/22 266594 -45.7.172.0/22 266591 -45.7.176.0/22 266626 -45.7.180.0/22 266599 -45.7.184.0/22 266601 -45.7.188.0/22 266595 -45.7.192.0/22 266607 -45.7.196.0/22 266608 -45.7.200.0/22 266614 -45.7.204.0/22 28580 -45.7.208.0/22 265729 -45.7.212.0/22 266622 -45.7.216.0/22 266619 -45.7.220.0/22 266598 -45.7.224.0/22 266615 -45.7.228.0/22 52512 -45.7.232.0/22 266602 -45.7.236.0/22 27884 -45.7.240.0/22 52444 -45.7.244.0/22 265736 -45.7.248.0/22 265738 -45.7.252.0/22 265739 -45.8.0.0/22 9119 -45.8.4.0/22 204303 -45.8.8.0/24 35120 -45.8.16.0/24 36351 -45.8.17.0/24 206804 -45.8.20.0/22 207046 -45.8.26.0/23 46562 -45.8.28.0/22 132839 -45.8.32.0/22 9312 -45.8.36.0/22 209064 -45.8.40.0/22 209055 -45.8.44.0/22 49468 -45.8.48.0/22 209063 -45.8.52.0/22 50585 -45.8.56.0/22 56596 -45.8.64.0/22 199290 -45.8.76.0/22 50563 -45.8.80.0/22 206894 -45.8.90.0/24 49450 -45.8.91.0/24 60660 -45.8.96.0/24 397796 -45.8.97.0/24 19437 -45.8.98.0/24 46573 -45.8.99.0/24 397796 -45.8.100.0/22 21267 -45.8.104.0/22 209242 -45.8.108.0/24 48219 -45.8.112.0/22 4785 -45.8.116.0/23 205516 -45.8.120.0/22 44205 -45.8.124.0/23 49505 -45.8.126.0/24 3327 -45.8.127.0/24 49505 -45.8.132.0/22 3257 -45.8.136.0/22 29119 -45.8.144.0/22 44676 -45.8.148.0/22 3257 -45.8.152.0/22 34244 -45.8.156.0/24 12722 -45.8.157.0/24 56630 -45.8.158.0/23 49392 -45.8.160.0/22 200370 -45.8.164.0/22 3257 -45.8.172.0/22 34549 -45.8.180.0/22 208330 -45.8.184.0/21 61317 -45.8.192.0/20 61317 -45.8.208.0/24 50340 -45.8.209.0/24 200449 -45.8.210.0/24 197068 -45.8.211.0/24 50214 -45.8.216.0/22 26636 -45.8.220.0/22 4785 -45.8.224.0/24 48254 -45.8.226.0/23 48254 -45.8.228.0/23 9002 -45.8.230.0/24 48347 -45.8.231.0/24 9002 -45.8.232.0/22 209053 -45.8.236.0/22 49033 -45.8.244.0/22 209048 -45.8.248.0/24 48430 -45.8.249.0/24 19969 -45.8.250.0/24 48430 -45.8.251.0/24 19969 -45.8.252.0/22 61317 -45.9.0.0/23 42831 -45.9.2.0/23 61317 -45.9.4.0/22 61317 -45.9.8.0/24 41378 -45.9.9.0/24 3214 -45.9.10.0/24 41378 -45.9.11.0/24 4842 -45.9.12.0/24 35913 -45.9.13.0/24 40676 -45.9.14.0/24 40676 -45.9.15.0/24 35913 -45.9.16.0/22 35913 -45.9.20.0/22 24838 -45.9.24.0/24 210053 -45.9.28.0/22 12695 -45.9.32.0/22 209047 -45.9.36.0/22 209023 -45.9.40.0/22 197726 -45.9.44.0/22 209046 -45.9.48.0/24 13213 -45.9.49.0/24 36351 -45.9.50.0/23 36351 -45.9.56.0/24 35421 -45.9.64.0/22 202942 -45.9.68.0/23 208606 -45.9.72.0/23 200740 -45.9.84.0/22 59790 -45.9.88.0/22 134121 -45.9.92.0/24 40676 -45.9.104.0/22 200780 -45.9.108.0/22 132839 -45.9.116.0/24 60781 -45.9.117.0/24 29066 -45.9.118.0/23 29066 -45.9.120.0/24 29066 -45.9.122.0/23 60781 -45.9.132.0/22 205981 -45.9.140.0/23 204161 -45.9.142.0/23 209038 -45.9.144.0/24 203392 -45.9.145.0/24 43395 -45.9.146.0/23 43395 -45.9.148.0/24 49447 -45.9.152.0/22 43260 -45.9.168.0/22 42864 -45.9.172.0/22 204805 -45.9.176.0/22 60233 -45.9.184.0/22 395800 -45.9.188.0/22 47583 -45.9.195.0/24 208975 -45.9.196.0/22 198507 -45.9.200.0/22 51920 -45.9.212.0/22 35815 -45.9.216.0/24 208977 -45.9.217.0/24 208739 -45.9.220.0/22 59909 -45.9.224.0/22 51616 -45.9.228.0/22 209033 -45.9.233.0/24 60589 -45.9.234.0/23 60589 -45.9.236.0/22 42331 -45.9.240.0/22 209031 -45.9.248.0/22 9009 -45.9.252.0/22 44285 -45.10.0.0/24 209859 -45.10.1.0/24 40676 -45.10.2.0/23 395800 -45.10.4.0/22 29119 -45.10.12.0/22 202470 -45.10.16.0/22 34929 -45.10.20.0/24 40676 -45.10.21.0/24 23422 -45.10.22.0/24 53340 -45.10.23.0/24 64249 -45.10.24.0/22 31400 -45.10.28.0/22 25274 -45.10.32.0/22 208978 -45.10.40.0/22 208861 -45.10.44.0/24 198034 -45.10.45.0/24 57752 -45.10.46.0/23 57752 -45.10.52.0/23 48347 -45.10.54.0/24 48347 -45.10.56.0/22 201364 -45.10.60.0/22 12897 -45.10.64.0/22 49505 -45.10.68.0/24 6134 -45.10.69.0/24 21859 -45.10.70.0/23 21859 -45.10.72.0/22 49632 -45.10.80.0/22 49505 -45.10.88.0/23 48693 -45.10.90.0/24 48693 -45.10.91.0/24 203303 -45.10.92.0/23 47169 -45.10.96.0/22 6718 -45.10.100.0/22 174 -45.10.104.0/22 43419 -45.10.108.0/24 204957 -45.10.109.0/24 12722 -45.10.110.0/24 203004 -45.10.111.0/24 208689 -45.10.112.0/22 48146 -45.10.116.0/22 58073 -45.10.120.0/24 49030 -45.10.124.0/22 41960 -45.10.128.0/24 198192 -45.10.130.0/24 60609 -45.10.136.0/24 61154 -45.10.137.0/24 207912 -45.10.138.0/24 30780 -45.10.139.0/24 2821 -45.10.140.0/22 47954 -45.10.144.0/22 39560 -45.10.148.0/22 51559 -45.10.152.0/22 35913 -45.10.160.0/22 9009 -45.10.172.0/23 133779 -45.10.174.0/23 55933 -45.10.190.0/24 208837 -45.10.191.0/24 51248 -45.10.192.0/21 197706 -45.10.200.0/23 209015 -45.10.202.0/24 209015 -45.10.204.0/24 209016 -45.10.208.0/22 132839 -45.10.212.0/22 201341 -45.10.216.0/22 44676 -45.10.224.0/22 29075 -45.10.228.0/22 39647 -45.10.232.0/24 12989 -45.10.233.0/24 33438 -45.10.236.0/22 204287 -45.10.248.0/22 35751 -45.10.252.0/23 208999 -45.11.0.0/22 9009 -45.11.4.0/22 197628 -45.11.8.0/22 395800 -45.11.16.0/22 30823 -45.11.20.0/23 35048 -45.11.22.0/24 12722 -45.11.23.0/24 34665 -45.11.24.0/22 9002 -45.11.28.0/22 58291 -45.11.32.0/22 46261 -45.11.36.0/23 396865 -45.11.40.0/24 15924 -45.11.41.0/24 34984 -45.11.42.0/24 12735 -45.11.43.0/24 209007 -45.11.46.0/23 133199 -45.11.52.0/22 395800 -45.11.56.0/22 269800 -45.11.60.0/22 202004 -45.11.64.0/22 29119 -45.11.76.0/22 55933 -45.11.80.0/22 35913 -45.11.88.0/22 40676 -45.11.95.0/24 42994 -45.11.96.0/24 60721 -45.11.97.0/24 51559 -45.11.98.0/23 60721 -45.11.100.0/22 62129 -45.11.104.0/24 9009 -45.11.105.0/24 57695 -45.11.106.0/23 57695 -45.11.108.0/22 12301 -45.11.112.0/22 12668 -45.11.116.0/22 201333 -45.11.124.0/22 35751 -45.11.128.0/23 35793 -45.11.132.0/22 39761 -45.11.136.0/22 208997 -45.11.144.0/22 13216 -45.11.148.0/22 60032 -45.11.152.0/22 208485 -45.11.160.0/22 200851 -45.11.164.0/22 39686 -45.11.168.0/22 62455 -45.11.172.0/22 62370 -45.11.180.0/23 9009 -45.11.182.0/24 42708 -45.11.184.0/21 18013 -45.11.192.0/22 208996 -45.11.200.0/24 58293 -45.11.204.0/22 39090 -45.11.208.0/22 20900 -45.11.212.0/23 12722 -45.11.214.0/23 50556 -45.11.216.0/22 204413 -45.11.220.0/22 59414 -45.11.224.0/22 205285 -45.11.228.0/23 23470 -45.11.230.0/23 46573 -45.11.232.0/21 9009 -45.11.240.0/22 208867 -45.11.248.0/22 49192 -45.11.252.0/24 16509 -45.12.4.0/22 42632 -45.12.12.0/22 34549 -45.12.16.0/22 198610 -45.12.32.0/22 200313 -45.12.36.0/22 207199 -45.12.40.0/22 197886 -45.12.44.0/22 34549 -45.12.48.0/22 29423 -45.12.52.0/22 208972 -45.12.60.0/22 29066 -45.12.64.0/22 57844 -45.12.68.0/22 58057 -45.12.72.0/22 35237 -45.12.76.0/22 28961 -45.12.80.0/22 34549 -45.12.84.0/22 208961 -45.12.88.0/24 40065 -45.12.89.0/24 209224 -45.12.90.0/24 40065 -45.12.91.0/24 209224 -45.12.100.0/22 31400 -45.12.104.0/22 12679 -45.12.108.0/22 35913 -45.12.112.0/22 35913 -45.12.120.0/24 208840 -45.12.124.0/23 208981 -45.12.128.0/22 35913 -45.12.132.0/23 35913 -45.12.134.0/24 35913 -45.12.135.0/24 40676 -45.12.136.0/23 35913 -45.12.138.0/24 35913 -45.12.139.0/24 40676 -45.12.140.0/22 35913 -45.12.144.0/23 35913 -45.12.146.0/24 40676 -45.12.147.0/24 35913 -45.12.148.0/22 35913 -45.12.152.0/22 50715 -45.12.160.0/24 209209 -45.12.161.0/24 40676 -45.12.162.0/24 54600 -45.12.163.0/24 35913 -45.12.164.0/23 15704 -45.12.166.0/24 15704 -45.12.167.0/24 43747 -45.12.168.0/22 208974 -45.12.172.0/22 205835 -45.12.176.0/22 47602 -45.12.180.0/23 395800 -45.12.184.0/24 35085 -45.12.185.0/24 25369 -45.12.186.0/23 25369 -45.12.200.0/22 202539 -45.12.204.0/22 9009 -45.12.212.0/22 204601 -45.12.216.0/22 30938 -45.12.220.0/22 9009 -45.12.228.0/22 134121 -45.12.232.0/23 395800 -45.12.234.0/23 54600 -45.12.236.0/22 35237 -45.12.240.0/24 20668 -45.12.241.0/24 48955 -45.12.242.0/24 20668 -45.12.243.0/24 48955 -45.12.252.0/22 43659 -45.13.4.0/22 60377 -45.13.8.0/22 202125 -45.13.15.0/24 8881 -45.13.18.0/24 208946 -45.13.20.0/22 208968 -45.13.28.0/22 9009 -45.13.36.0/24 35478 -45.13.37.0/24 200615 -45.13.38.0/24 200615 -45.13.39.0/24 35478 -45.13.40.0/22 39452 -45.13.48.0/22 208963 -45.13.60.0/22 201172 -45.13.64.0/23 208956 -45.13.66.0/24 44684 -45.13.68.0/22 48500 -45.13.72.0/22 203061 -45.13.76.0/23 208784 -45.13.80.0/22 200984 -45.13.84.0/22 60781 -45.13.88.0/22 34758 -45.13.92.0/22 50495 -45.13.96.0/22 51548 -45.13.104.0/22 57199 -45.13.116.0/24 3280 -45.13.117.0/24 202322 -45.13.118.0/24 34854 -45.13.119.0/24 209956 -45.13.120.0/22 201877 -45.13.124.0/22 43578 -45.13.132.0/22 47583 -45.13.136.0/24 6718 -45.13.137.0/24 43431 -45.13.138.0/23 6718 -45.13.140.0/22 208839 -45.13.144.0/22 51185 -45.13.148.0/22 395800 -45.13.152.0/22 208804 -45.13.160.0/22 132839 -45.13.164.0/22 20559 -45.13.168.0/23 48146 -45.13.170.0/24 48146 -45.13.176.0/22 48955 -45.13.182.0/24 19531 -45.13.183.0/24 395800 -45.13.184.0/22 60781 -45.13.188.0/22 34549 -45.13.192.0/22 51167 -45.13.196.0/23 6233 -45.13.198.0/24 41378 -45.13.199.0/24 3214 -45.13.200.0/22 197077 -45.13.208.0/22 208616 -45.13.212.0/22 35478 -45.13.224.0/23 202322 -45.13.226.0/23 8100 -45.13.228.0/22 204287 -45.13.232.0/22 35913 -45.13.236.0/22 34549 -45.13.240.0/22 29695 -45.13.246.0/23 35913 -45.13.248.0/23 9009 -45.13.250.0/23 33083 -45.13.252.0/22 47583 -45.14.0.0/22 209549 -45.14.4.0/22 34244 -45.14.8.0/22 42864 -45.14.12.0/22 204601 -45.14.16.0/22 48711 -45.14.20.0/22 208955 -45.14.24.0/22 49223 -45.14.28.0/22 25385 -45.14.32.0/24 208952 -45.14.36.0/22 208881 -45.14.44.0/23 35913 -45.14.47.0/24 54600 -45.14.48.0/23 208951 -45.14.50.0/24 208951 -45.14.52.0/22 29695 -45.14.56.0/22 208776 -45.14.61.0/24 59808 -45.14.62.0/23 59808 -45.14.64.0/22 136782 -45.14.68.0/22 8100 -45.14.72.0/24 9009 -45.14.73.0/24 35758 -45.14.74.0/23 9009 -45.14.76.0/22 208913 -45.14.80.0/22 208867 -45.14.84.0/22 208939 -45.14.92.0/22 57389 -45.14.96.0/22 58243 -45.14.100.0/22 60233 -45.14.104.0/22 8100 -45.14.108.0/23 6768 -45.14.110.0/24 44294 -45.14.111.0/24 6768 -45.14.112.0/24 60945 -45.14.113.0/24 40676 -45.14.114.0/24 19844 -45.14.115.0/24 23033 -45.14.116.0/23 208721 -45.14.120.0/23 42947 -45.14.122.0/24 42947 -45.14.124.0/22 12843 -45.14.128.0/24 1836 -45.14.136.0/22 205285 -45.14.140.0/22 39642 -45.14.144.0/22 17941 -45.14.148.0/22 44220 -45.14.156.0/22 39761 -45.14.160.0/22 209987 -45.14.172.0/24 208924 -45.14.175.0/24 204451 -45.14.176.0/22 198507 -45.14.184.0/22 60798 -45.14.188.0/22 12897 -45.14.192.0/22 35913 -45.14.196.0/22 29119 -45.14.204.0/22 62235 -45.14.208.0/22 48146 -45.14.212.0/22 201341 -45.14.216.0/23 395800 -45.14.220.0/23 12722 -45.14.222.0/24 34665 -45.14.223.0/24 56601 -45.14.224.0/22 62068 -45.14.228.0/23 208934 -45.14.232.0/22 208942 -45.14.236.0/24 35711 -45.14.237.0/24 34679 -45.14.240.0/22 35055 -45.14.244.0/22 61390 -45.14.248.0/22 208925 -45.14.252.0/24 13009 -45.15.0.0/22 208928 -45.15.4.0/22 31027 -45.15.8.0/24 133115 -45.15.9.0/24 133073 -45.15.10.0/23 133115 -45.15.16.0/24 197595 -45.15.17.0/24 50304 -45.15.18.0/24 174 -45.15.19.0/24 50304 -45.15.20.0/22 203523 -45.15.28.0/24 208933 -45.15.29.0/24 12552 -45.15.30.0/23 208933 -45.15.32.0/22 206496 -45.15.36.0/23 54600 -45.15.44.0/22 9119 -45.15.48.0/22 3352 -45.15.52.0/22 34549 -45.15.56.0/22 42189 -45.15.60.0/22 24904 -45.15.64.0/22 205835 -45.15.72.0/23 35048 -45.15.74.0/24 62300 -45.15.75.0/24 49505 -45.15.80.0/24 28875 -45.15.82.0/24 28875 -45.15.88.0/22 208929 -45.15.92.0/22 207054 -45.15.100.0/24 34568 -45.15.101.0/24 33984 -45.15.102.0/24 34568 -45.15.108.0/22 15765 -45.15.112.0/22 208912 -45.15.116.0/22 206195 -45.15.120.0/22 24940 -45.15.124.0/22 35913 -45.15.128.0/22 35913 -45.15.132.0/22 208897 -45.15.136.0/22 208909 -45.15.140.0/22 35913 -45.15.144.0/24 40676 -45.15.145.0/24 35913 -45.15.146.0/23 35913 -45.15.152.0/22 35913 -45.15.156.0/22 39493 -45.15.160.0/22 35913 -45.15.164.0/24 35913 -45.15.165.0/24 40676 -45.15.166.0/23 35913 -45.15.168.0/23 35913 -45.15.170.0/23 40676 -45.15.176.0/22 35913 -45.15.184.0/23 35913 -45.15.186.0/24 35913 -45.15.187.0/24 40676 -45.15.188.0/22 208921 -45.15.192.0/22 1828 -45.15.196.0/22 393894 -45.15.200.0/22 57986 -45.15.204.0/22 35625 -45.15.208.0/22 62240 -45.15.220.0/22 20891 -45.15.224.0/22 207164 -45.15.228.0/22 208899 -45.15.236.0/22 62415 -45.15.244.0/22 204872 -45.15.248.0/22 49103 -45.15.252.0/24 12722 -45.15.253.0/24 202933 -45.15.255.0/24 12722 -45.16.0.0/12 7018 -45.32.0.0/16 20473 -45.33.0.0/17 63949 -45.33.128.0/20 6939 -45.33.144.0/22 18978 -45.33.148.0/23 18978 -45.33.150.0/24 9009 -45.33.151.0/24 46261 -45.33.152.0/24 9009 -45.33.153.0/24 18978 -45.33.154.0/24 46261 -45.33.155.0/24 18978 -45.33.156.0/23 18978 -45.33.158.0/23 9009 -45.33.192.0/23 23379 -45.33.194.0/23 54440 -45.33.196.0/24 397406 -45.33.198.0/23 53914 -45.33.200.0/23 395200 -45.33.202.0/23 19787 -45.33.204.0/24 32061 -45.33.205.0/24 53538 -45.33.206.0/24 393619 -45.33.207.0/24 64278 -45.33.208.0/21 397285 -45.33.216.0/22 397285 -45.33.220.0/23 397285 -45.33.222.0/23 15305 -45.33.224.0/21 61317 -45.33.232.0/22 13886 -45.33.236.0/23 13886 -45.33.240.0/20 26658 -45.34.0.0/16 40676 -45.35.0.0/17 40676 -45.35.128.0/18 40676 -45.35.192.0/24 40676 -45.35.193.0/24 201106 -45.35.194.0/23 40676 -45.35.196.0/22 40676 -45.35.200.0/21 40676 -45.35.208.0/20 40676 -45.35.224.0/20 40676 -45.35.240.0/21 40676 -45.35.248.0/23 40676 -45.35.250.0/24 40676 -45.35.251.0/24 7489 -45.35.252.0/22 40676 -45.36.0.0/15 11426 -45.38.0.0/15 18779 -45.40.0.0/20 393809 -45.40.19.0/24 63411 -45.40.34.0/23 394351 -45.40.36.0/23 394351 -45.40.38.0/24 394351 -45.40.48.0/21 21859 -45.40.56.0/23 135377 -45.40.58.0/24 21859 -45.40.60.0/22 21859 -45.40.64.0/20 40788 -45.40.80.0/20 174 -45.40.96.0/20 395111 -45.40.112.0/22 36352 -45.40.116.0/23 36352 -45.40.118.0/23 395111 -45.40.120.0/21 395111 -45.40.128.0/18 26496 -45.40.192.0/20 45090 -45.40.208.0/21 45090 -45.40.216.0/21 132203 -45.40.224.0/19 45090 -45.41.64.0/20 395209 -45.41.80.0/20 26658 -45.41.128.0/22 22400 -45.41.132.0/24 35908 -45.41.133.0/24 32181 -45.41.134.0/24 35913 -45.41.135.0/24 20473 -45.41.136.0/24 62240 -45.41.137.0/24 32181 -45.41.138.0/24 3223 -45.41.139.0/24 133752 -45.41.140.0/22 22400 -45.41.144.0/24 22400 -45.41.145.0/24 18450 -45.41.146.0/24 22400 -45.41.147.0/24 36351 -45.41.148.0/24 22400 -45.41.149.0/24 13213 -45.41.150.0/23 22400 -45.41.152.0/21 11367 -45.41.160.0/21 22400 -45.41.168.0/21 395570 -45.41.176.0/22 22400 -45.41.180.0/24 35908 -45.41.181.0/24 32181 -45.41.182.0/23 33307 -45.41.184.0/24 133752 -45.41.185.0/24 36351 -45.41.186.0/23 22653 -45.41.188.0/23 36351 -45.41.190.0/24 36351 -45.41.191.0/24 32181 -45.42.0.0/22 16929 -45.42.4.0/22 209 -45.42.8.0/22 395570 -45.42.12.0/23 395570 -45.42.14.0/24 395570 -45.42.15.0/24 40028 -45.42.24.0/22 30414 -45.42.28.0/22 33339 -45.42.32.0/22 393841 -45.42.36.0/22 30466 -45.42.40.0/21 62941 -45.42.48.0/22 394129 -45.42.56.0/21 33132 -45.42.64.0/23 30427 -45.42.66.0/24 30427 -45.42.68.0/23 55248 -45.42.70.0/24 55248 -45.42.72.0/21 22423 -45.42.80.0/20 26658 -45.42.96.0/19 11814 -45.43.0.0/23 396202 -45.43.2.0/23 209519 -45.43.4.0/24 397651 -45.43.5.0/24 29838 -45.43.6.0/24 40065 -45.43.7.0/24 3223 -45.43.8.0/24 31863 -45.43.9.0/24 40065 -45.43.10.0/23 209519 -45.43.12.0/22 209519 -45.43.16.0/22 209519 -45.43.20.0/24 209519 -45.43.21.0/24 16584 -45.43.22.0/24 209519 -45.43.23.0/24 40065 -45.43.24.0/24 209519 -45.43.25.0/24 397651 -45.43.26.0/24 40676 -45.43.27.0/24 35913 -45.43.28.0/24 29838 -45.43.29.0/24 201106 -45.43.30.0/23 201106 -45.43.32.0/22 21859 -45.43.36.0/23 135377 -45.43.38.0/23 21859 -45.43.40.0/23 21859 -45.43.44.0/22 21859 -45.43.48.0/22 21859 -45.43.52.0/22 135377 -45.43.56.0/23 135377 -45.43.58.0/24 135377 -45.43.59.0/24 21859 -45.43.60.0/22 135377 -45.43.66.0/24 58305 -45.43.67.0/24 43350 -45.43.68.0/22 43350 -45.43.72.0/24 43350 -45.43.87.0/24 812 -45.43.88.0/21 43350 -45.43.96.0/22 26827 -45.43.100.0/24 26827 -45.43.101.0/24 54174 -45.43.102.0/23 26827 -45.43.104.0/21 26827 -45.43.112.0/20 63414 -45.43.128.0/18 13886 -45.43.192.0/19 46261 -45.43.224.0/20 26658 -45.43.240.0/20 53828 -45.44.0.0/18 54198 -45.44.64.0/19 54198 -45.44.96.0/20 54198 -45.44.112.0/22 54198 -45.44.120.0/22 54198 -45.44.124.0/24 54198 -45.44.128.0/21 54198 -45.44.136.0/22 54198 -45.44.140.0/24 54198 -45.44.196.0/22 54198 -45.44.200.0/21 54198 -45.44.208.0/20 54198 -45.44.224.0/19 54198 -45.45.0.0/17 5769 -45.46.0.0/15 11351 -45.48.0.0/14 20001 -45.52.0.0/18 5650 -45.52.64.0/20 5650 -45.52.80.0/21 5650 -45.52.88.0/24 5650 -45.52.89.0/24 32587 -45.52.90.0/23 5650 -45.52.92.0/23 5650 -45.52.94.0/24 5650 -45.52.95.0/24 7011 -45.52.96.0/19 5650 -45.52.128.0/18 5650 -45.52.192.0/24 5650 -45.52.193.0/24 32587 -45.52.194.0/23 5650 -45.52.196.0/22 5650 -45.52.200.0/21 5650 -45.52.208.0/20 5650 -45.52.224.0/19 5650 -45.53.0.0/16 5650 -45.54.11.0/24 63911 -45.54.12.0/24 36236 -45.54.13.0/24 63911 -45.54.14.0/23 63911 -45.54.16.0/22 63911 -45.54.20.0/24 63911 -45.54.22.0/23 63911 -45.54.25.0/24 63911 -45.54.26.0/24 63911 -45.54.29.0/24 63911 -45.54.30.0/24 63911 -45.54.32.0/24 63911 -45.54.34.0/24 42210 -45.54.35.0/24 36236 -45.54.36.0/23 63911 -45.54.38.0/24 63911 -45.54.40.0/21 63911 -45.54.48.0/22 63911 -45.54.52.0/24 63911 -45.54.54.0/23 63911 -45.54.56.0/24 7224 -45.54.58.0/24 63911 -45.54.61.0/24 63911 -45.54.64.0/24 29997 -45.54.65.0/24 63911 -45.54.66.0/23 63911 -45.54.68.0/23 63911 -45.54.71.0/24 63911 -45.54.73.0/24 63911 -45.54.76.0/22 63911 -45.54.128.0/17 10405 -45.55.0.0/16 14061 -45.56.0.0/18 16591 -45.56.64.0/18 63949 -45.56.128.0/24 32181 -45.56.129.0/24 397978 -45.56.130.0/24 13213 -45.56.131.0/24 22400 -45.56.132.0/22 22400 -45.56.136.0/24 22400 -45.56.137.0/24 12989 -45.56.138.0/23 8100 -45.56.140.0/24 22400 -45.56.141.0/24 35908 -45.56.142.0/24 32181 -45.56.143.0/24 9009 -45.56.144.0/23 22400 -45.56.146.0/24 206092 -45.56.147.0/24 22400 -45.56.148.0/24 35913 -45.56.149.0/24 36351 -45.56.150.0/24 18450 -45.56.151.0/24 36351 -45.56.152.0/23 36351 -45.56.154.0/24 36351 -45.56.155.0/24 32181 -45.56.156.0/23 36351 -45.56.158.0/24 36351 -45.56.159.0/24 22400 -45.56.160.0/23 174 -45.56.162.0/23 8100 -45.56.164.0/22 8100 -45.56.168.0/24 22400 -45.56.169.0/24 60068 -45.56.170.0/23 60068 -45.56.172.0/24 60068 -45.56.173.0/24 22400 -45.56.174.0/24 174 -45.56.175.0/24 22400 -45.56.176.0/22 395826 -45.56.180.0/24 53340 -45.56.181.0/24 22400 -45.56.182.0/24 22400 -45.56.183.0/24 35908 -45.56.184.0/22 22400 -45.56.188.0/22 394868 -45.56.192.0/24 44066 -45.56.193.0/24 30633 -45.56.194.0/24 53889 -45.56.196.0/23 32780 -45.56.198.0/24 32780 -45.56.199.0/24 62904 -45.56.200.0/24 262287 -45.56.201.0/24 394844 -45.56.202.0/24 394844 -45.56.203.0/24 64200 -45.56.206.0/24 394351 -45.56.208.0/21 11979 -45.56.216.0/21 13768 -45.56.224.0/19 203101 -45.57.0.0/21 2906 -45.57.8.0/23 40027 -45.57.10.0/23 2906 -45.57.12.0/22 2906 -45.57.16.0/20 2906 -45.57.32.0/21 2906 -45.57.40.0/23 40027 -45.57.42.0/23 2906 -45.57.44.0/22 2906 -45.57.48.0/20 2906 -45.57.64.0/20 2906 -45.57.80.0/22 2906 -45.57.84.0/23 2906 -45.57.86.0/23 40027 -45.57.88.0/23 2906 -45.57.90.0/23 40027 -45.57.92.0/22 2906 -45.57.96.0/19 2906 -45.57.128.0/23 55286 -45.57.130.0/24 55081 -45.57.131.0/24 55286 -45.57.132.0/22 55286 -45.57.136.0/21 55286 -45.57.144.0/23 55286 -45.57.146.0/24 36352 -45.57.147.0/24 55286 -45.57.148.0/23 55286 -45.57.150.0/24 55286 -45.57.151.0/24 36352 -45.57.152.0/22 55286 -45.57.156.0/23 55286 -45.57.158.0/24 36352 -45.57.159.0/24 55286 -45.57.160.0/20 55286 -45.57.176.0/24 55286 -45.57.177.0/24 36352 -45.57.178.0/24 55286 -45.57.179.0/24 36352 -45.57.180.0/24 55286 -45.57.181.0/24 36352 -45.57.182.0/23 55286 -45.57.184.0/22 55286 -45.57.188.0/23 55286 -45.57.190.0/24 36352 -45.57.191.0/24 55286 -45.57.192.0/21 55286 -45.57.200.0/22 55286 -45.57.204.0/23 55286 -45.57.206.0/24 36352 -45.57.207.0/24 55286 -45.57.208.0/24 55081 -45.57.209.0/24 55286 -45.57.210.0/23 55286 -45.57.212.0/22 55286 -45.57.216.0/21 55286 -45.57.224.0/24 55286 -45.57.225.0/24 36352 -45.57.226.0/23 55286 -45.57.228.0/22 55286 -45.57.232.0/22 55286 -45.57.236.0/24 55286 -45.57.237.0/24 36352 -45.57.238.0/23 55286 -45.57.240.0/22 36352 -45.57.244.0/24 62904 -45.57.245.0/24 55286 -45.57.246.0/23 55286 -45.57.248.0/21 36352 -45.58.0.0/22 14821 -45.58.4.0/24 14821 -45.58.8.0/21 14821 -45.58.16.0/20 395167 -45.58.32.0/22 6364 -45.58.36.0/23 13768 -45.58.38.0/23 6364 -45.58.40.0/21 6364 -45.58.48.0/23 7489 -45.58.50.0/24 19969 -45.58.51.0/24 7489 -45.58.52.0/24 7489 -45.58.53.0/24 201106 -45.58.54.0/23 7489 -45.58.56.0/23 7489 -45.58.58.0/24 7489 -45.58.59.0/24 19969 -45.58.60.0/24 7489 -45.58.61.0/24 201106 -45.58.62.0/24 62217 -45.58.63.0/24 19969 -45.58.64.0/20 19679 -45.58.80.0/20 54614 -45.58.96.0/20 22423 -45.58.112.0/20 23470 -45.58.128.0/19 46844 -45.58.160.0/20 46844 -45.58.176.0/22 46844 -45.58.180.0/24 23881 -45.58.181.0/24 46844 -45.58.182.0/23 46844 -45.58.184.0/21 46844 -45.58.192.0/18 36493 -45.59.0.0/20 30036 -45.59.16.0/24 33182 -45.59.17.0/24 23470 -45.59.18.0/23 18779 -45.59.20.0/24 18978 -45.59.21.0/24 46261 -45.59.22.0/24 33083 -45.59.23.0/24 23470 -45.59.24.0/24 60558 -45.59.25.0/24 46261 -45.59.26.0/24 21743 -45.59.27.0/24 18978 -45.59.28.0/24 18779 -45.59.29.0/24 33083 -45.59.30.0/24 18779 -45.59.31.0/24 33182 -45.59.32.0/20 6181 -45.59.48.0/20 5056 -45.59.64.0/21 3800 -45.59.72.0/21 54182 -45.59.80.0/20 19746 -45.59.96.0/20 397126 -45.59.112.0/24 20150 -45.59.115.0/24 20150 -45.59.116.0/24 20150 -45.59.118.0/23 20150 -45.59.120.0/23 20150 -45.59.122.0/24 20150 -45.59.126.0/23 20150 -45.59.192.0/18 20001 -45.60.0.0/19 19551 -45.60.32.0/20 19551 -45.60.48.0/21 19551 -45.60.56.0/22 19551 -45.60.60.0/24 19551 -45.60.62.0/23 19551 -45.60.64.0/18 19551 -45.60.128.0/19 19551 -45.60.160.0/21 19551 -45.60.168.0/22 19551 -45.60.172.0/23 19551 -45.60.175.0/24 19551 -45.60.176.0/23 19551 -45.60.181.0/24 19551 -45.60.182.0/23 19551 -45.60.184.0/24 19551 -45.60.186.0/24 19551 -45.60.188.0/24 19551 -45.60.193.0/24 19551 -45.60.194.0/23 19551 -45.60.196.0/22 19551 -45.60.200.0/22 19551 -45.60.204.0/23 19551 -45.60.206.0/24 19551 -45.60.208.0/24 19551 -45.60.211.0/24 19551 -45.60.212.0/22 19551 -45.60.216.0/21 19551 -45.60.224.0/24 19551 -45.60.232.0/24 19551 -45.60.234.0/24 19551 -45.60.236.0/24 19551 -45.61.0.0/21 22652 -45.61.8.0/22 22652 -45.61.12.0/24 395282 -45.61.13.0/24 22652 -45.61.14.0/23 22652 -45.61.16.0/20 53828 -45.61.32.0/21 53889 -45.61.40.0/23 53889 -45.61.42.0/24 6130 -45.61.43.0/24 53889 -45.61.44.0/22 53889 -45.61.48.0/24 47869 -45.61.49.0/24 30176 -45.61.64.0/22 62874 -45.61.68.0/24 62874 -45.61.69.0/24 133752 -45.61.70.0/24 62874 -45.61.71.0/24 36351 -45.61.72.0/24 62874 -45.61.73.0/24 8100 -45.61.74.0/24 62874 -45.61.75.0/24 133752 -45.61.76.0/23 133752 -45.61.78.0/24 32181 -45.61.79.0/24 36351 -45.61.80.0/23 46562 -45.61.82.0/24 32181 -45.61.83.0/24 46562 -45.61.84.0/23 22362 -45.61.86.0/24 266815 -45.61.87.0/24 62874 -45.61.88.0/21 62874 -45.61.96.0/21 395570 -45.61.104.0/21 62874 -45.61.112.0/24 62874 -45.61.113.0/24 22653 -45.61.114.0/24 8100 -45.61.115.0/24 62874 -45.61.116.0/22 395826 -45.61.120.0/21 62874 -45.61.128.0/21 46261 -45.61.136.0/24 40676 -45.61.138.0/23 40676 -45.61.140.0/23 46261 -45.61.143.0/24 39335 -45.61.144.0/23 16584 -45.61.147.0/24 23470 -45.61.148.0/22 46261 -45.61.152.0/22 8100 -45.61.156.0/22 46261 -45.61.160.0/20 8100 -45.61.176.0/21 53667 -45.61.184.0/21 8100 -45.61.192.0/19 53587 -45.61.224.0/20 53587 -45.61.241.0/24 26484 -45.61.242.0/23 26484 -45.61.244.0/22 26484 -45.61.248.0/23 26484 -45.61.250.0/24 26484 -45.61.252.0/23 53587 -45.61.254.0/24 26484 -45.61.255.0/24 53587 -45.62.0.0/19 29848 -45.62.32.0/21 53889 -45.62.40.0/22 53889 -45.62.44.0/23 53889 -45.62.46.0/24 53889 -45.62.47.0/24 6130 -45.62.48.0/23 53889 -45.62.50.0/24 6130 -45.62.51.0/24 53889 -45.62.52.0/24 32181 -45.62.53.0/24 53889 -45.62.54.0/24 6130 -45.62.55.0/24 53889 -45.62.56.0/23 53889 -45.62.58.0/24 6130 -45.62.59.0/24 53889 -45.62.60.0/23 53889 -45.62.62.0/24 53889 -45.62.63.0/24 6130 -45.62.64.0/20 40440 -45.62.80.0/21 40440 -45.62.88.0/23 40440 -45.62.90.0/23 16509 -45.62.92.0/22 40440 -45.62.96.0/19 25820 -45.62.128.0/24 31882 -45.62.129.0/24 15265 -45.62.130.0/23 31882 -45.62.132.0/22 31882 -45.62.136.0/22 31882 -45.62.140.0/24 31882 -45.62.141.0/24 15265 -45.62.142.0/23 15265 -45.62.144.0/22 15265 -45.62.148.0/23 15265 -45.62.150.0/23 31882 -45.62.152.0/22 15265 -45.62.156.0/23 31882 -45.62.158.0/24 31882 -45.62.159.0/24 15265 -45.62.160.0/20 3800 -45.62.176.0/20 13150 -45.62.192.0/20 31798 -45.62.208.0/21 31798 -45.62.216.0/22 394146 -45.62.220.0/23 394146 -45.62.222.0/23 31798 -45.62.224.0/19 31798 -45.63.0.0/17 20473 -45.63.128.0/17 4549 -45.64.0.0/22 55660 -45.64.4.0/22 38778 -45.64.8.0/24 133676 -45.64.9.0/24 58906 -45.64.10.0/23 133676 -45.64.12.0/22 55832 -45.64.16.0/22 55832 -45.64.20.0/22 4609 -45.64.24.0/22 45773 -45.64.28.0/24 38841 -45.64.29.0/24 9924 -45.64.30.0/23 9924 -45.64.32.0/22 24164 -45.64.36.0/22 58408 -45.64.40.0/22 32934 -45.64.48.0/22 45177 -45.64.52.0/22 38197 -45.64.56.0/22 38790 -45.64.60.0/23 132692 -45.64.62.0/24 132692 -45.64.64.0/22 19551 -45.64.68.0/22 9650 -45.64.72.0/23 134739 -45.64.74.0/23 55933 -45.64.76.0/23 38040 -45.64.78.0/24 38040 -45.64.80.0/22 59325 -45.64.84.0/22 58678 -45.64.88.0/22 38794 -45.64.92.0/22 23872 -45.64.96.0/24 58477 -45.64.97.0/24 135360 -45.64.98.0/23 58477 -45.64.100.0/22 45786 -45.64.104.0/23 132335 -45.64.106.0/24 132335 -45.64.107.0/24 136557 -45.64.108.0/22 132839 -45.64.112.0/23 55933 -45.64.114.0/23 45650 -45.64.116.0/22 133399 -45.64.120.0/22 9927 -45.64.124.0/22 38623 -45.64.128.0/22 45634 -45.64.132.0/22 24323 -45.64.136.0/22 58889 -45.64.140.0/22 55615 -45.64.144.0/22 38684 -45.64.148.0/22 134844 -45.64.152.0/22 55592 -45.64.156.0/22 45942 -45.64.160.0/22 55915 -45.64.164.0/22 38200 -45.64.168.0/22 45352 -45.64.172.0/22 4766 -45.64.176.0/22 45433 -45.64.180.0/22 17539 -45.64.184.0/22 58955 -45.64.188.0/22 132933 -45.64.192.0/22 17625 -45.64.200.0/24 18407 -45.64.208.0/22 55832 -45.64.212.0/22 132933 -45.64.216.0/22 132563 -45.64.220.0/22 23860 -45.64.224.0/22 23860 -45.64.228.0/22 9919 -45.64.232.0/22 18429 -45.64.236.0/22 23860 -45.64.240.0/22 17924 -45.64.244.0/22 131324 -45.64.248.0/22 18025 -45.64.252.0/22 45294 -45.65.0.0/22 4657 -45.65.4.0/23 4648 -45.65.6.0/23 55936 -45.65.20.0/22 23848 -45.65.36.0/22 132931 -45.65.40.0/22 9829 -45.65.44.0/24 396076 -45.65.45.0/24 32708 -45.65.46.0/23 32708 -45.65.48.0/22 134019 -45.65.52.0/22 55353 -45.65.58.0/24 132471 -45.65.59.0/24 42705 -45.65.60.0/22 135543 -45.65.64.0/22 51487 -45.65.68.0/24 40676 -45.65.69.0/24 39184 -45.65.70.0/24 59268 -45.65.71.0/24 60117 -45.65.72.0/22 209905 -45.65.76.0/22 203020 -45.65.88.0/22 209900 -45.65.92.0/22 46261 -45.65.96.0/22 209899 -45.65.104.0/21 60032 -45.65.112.0/22 18013 -45.65.124.0/22 209895 -45.65.128.0/22 266528 -45.65.132.0/22 266529 -45.65.136.0/22 262186 -45.65.140.0/22 266530 -45.65.144.0/22 266566 -45.65.148.0/22 265715 -45.65.152.0/22 62550 -45.65.156.0/22 7063 -45.65.160.0/22 28098 -45.65.164.0/22 266562 -45.65.168.0/22 266543 -45.65.172.0/22 266265 -45.65.176.0/22 266258 -45.65.180.0/22 266266 -45.65.184.0/22 266536 -45.65.188.0/22 264677 -45.65.192.0/22 266267 -45.65.196.0/22 266537 -45.65.200.0/24 267893 -45.65.201.0/24 266589 -45.65.202.0/24 265730 -45.65.203.0/24 265734 -45.65.204.0/22 266544 -45.65.208.0/22 266268 -45.65.212.0/22 266525 -45.65.216.0/22 266531 -45.65.220.0/22 266539 -45.65.224.0/22 266725 -45.65.228.0/22 266532 -45.65.232.0/23 18678 -45.65.236.0/22 266526 -45.65.240.0/22 264780 -45.65.244.0/22 265721 -45.65.248.0/22 27855 -45.65.253.0/24 265941 -45.65.254.0/24 55002 -45.65.255.0/24 27687 -45.66.0.0/22 208710 -45.66.4.0/22 35360 -45.66.8.0/22 204601 -45.66.12.0/22 48430 -45.66.16.0/22 207937 -45.66.24.0/22 50107 -45.66.28.0/22 8767 -45.66.32.0/22 47482 -45.66.36.0/22 43915 -45.66.40.0/22 200736 -45.66.44.0/23 31287 -45.66.48.0/24 42994 -45.66.51.0/24 58305 -45.66.52.0/23 48146 -45.66.54.0/24 202564 -45.66.55.0/24 42250 -45.66.56.0/22 208180 -45.66.60.0/22 25780 -45.66.64.0/22 199952 -45.66.72.0/22 209429 -45.66.76.0/22 35224 -45.66.80.0/22 8224 -45.66.88.0/22 13135 -45.66.92.0/23 60800 -45.66.94.0/23 60257 -45.66.96.0/22 43209 -45.66.100.0/22 31617 -45.66.104.0/22 42864 -45.66.108.0/22 43619 -45.66.116.0/22 397796 -45.66.120.0/22 209400 -45.66.124.0/22 35499 -45.66.128.0/22 54600 -45.66.132.0/22 9009 -45.66.136.0/22 35913 -45.66.140.0/22 24929 -45.66.144.0/24 49367 -45.66.148.0/22 61317 -45.66.152.0/22 61317 -45.66.156.0/24 134094 -45.66.160.0/21 18978 -45.66.168.0/22 48317 -45.66.172.0/22 1836 -45.66.176.0/22 62240 -45.66.180.0/23 35482 -45.66.184.0/24 208858 -45.66.185.0/24 199081 -45.66.186.0/23 199081 -45.66.188.0/22 132839 -45.66.192.0/22 209325 -45.66.196.0/22 35441 -45.66.200.0/22 51920 -45.66.204.0/22 209410 -45.66.208.0/24 62282 -45.66.209.0/24 46844 -45.66.210.0/24 8100 -45.66.211.0/24 46844 -45.66.212.0/22 29119 -45.66.216.0/22 54600 -45.66.220.0/22 21217 -45.66.224.0/22 209408 -45.66.228.0/22 43659 -45.66.236.0/22 48095 -45.66.240.0/22 209688 -45.66.244.0/22 200851 -45.66.248.0/23 204490 -45.66.250.0/24 174 -45.66.251.0/24 48430 -45.66.252.0/22 197706 -45.67.4.0/22 24768 -45.67.8.0/22 204996 -45.67.12.0/23 209403 -45.67.14.0/23 207616 -45.67.16.0/23 395800 -45.67.18.0/24 209537 -45.67.19.0/24 197216 -45.67.20.0/22 49223 -45.67.24.0/23 35455 -45.67.28.0/22 209270 -45.67.32.0/22 48430 -45.67.36.0/24 5588 -45.67.37.0/24 39081 -45.67.38.0/23 5588 -45.67.40.0/22 31263 -45.67.44.0/22 201814 -45.67.48.0/22 35203 -45.67.52.0/22 9009 -45.67.56.0/22 198610 -45.67.60.0/22 9009 -45.67.64.0/22 50628 -45.67.68.0/22 44066 -45.67.72.0/23 48728 -45.67.80.0/22 198985 -45.67.84.0/22 57844 -45.67.88.0/22 39184 -45.67.92.0/22 42525 -45.67.96.0/24 45671 -45.67.97.0/24 38001 -45.67.98.0/24 36351 -45.67.100.0/22 44459 -45.67.104.0/22 208973 -45.67.108.0/22 49033 -45.67.112.0/23 209970 -45.67.114.0/24 209970 -45.67.115.0/24 41327 -45.67.116.0/24 43818 -45.67.117.0/24 202965 -45.67.120.0/22 197726 -45.67.124.0/22 209387 -45.67.128.0/22 198068 -45.67.132.0/24 13213 -45.67.133.0/24 36351 -45.67.134.0/23 36351 -45.67.136.0/23 38001 -45.67.138.0/24 133219 -45.67.140.0/22 31715 -45.67.148.0/22 60609 -45.67.152.0/22 209380 -45.67.156.0/22 39679 -45.67.168.0/22 39878 -45.67.176.0/22 48095 -45.67.180.0/22 39328 -45.67.184.0/22 29119 -45.67.188.0/24 209285 -45.67.190.0/24 209285 -45.67.192.0/22 208803 -45.67.196.0/22 201813 -45.67.200.0/22 51559 -45.67.204.0/23 8767 -45.67.206.0/24 8767 -45.67.208.0/22 134121 -45.67.212.0/23 46844 -45.67.214.0/24 46844 -45.67.215.0/24 35406 -45.67.216.0/23 42366 -45.67.218.0/23 63473 -45.67.220.0/23 42366 -45.67.222.0/24 42366 -45.67.223.0/24 40065 -45.67.224.0/22 204287 -45.67.228.0/24 62088 -45.67.229.0/24 200019 -45.67.230.0/24 44094 -45.67.231.0/24 62088 -45.67.232.0/22 60721 -45.67.236.0/22 209382 -45.67.244.0/22 207046 -45.67.248.0/22 35437 -45.67.252.0/22 25540 -45.70.0.0/22 267556 -45.70.4.0/22 267557 -45.70.8.0/23 265817 -45.70.10.0/24 265817 -45.70.12.0/22 264668 -45.70.16.0/22 267543 -45.70.20.0/22 267573 -45.70.24.0/22 267569 -45.70.28.0/22 267574 -45.70.32.0/22 267544 -45.70.36.0/22 267545 -45.70.40.0/22 267546 -45.70.44.0/22 267565 -45.70.48.0/22 267551 -45.70.52.0/22 267579 -45.70.56.0/22 264668 -45.70.60.0/22 267552 -45.70.64.0/22 267566 -45.70.68.0/22 267580 -45.70.72.0/22 267553 -45.70.76.0/22 267581 -45.70.80.0/22 267570 -45.70.84.0/22 267593 -45.70.88.0/22 52477 -45.70.92.0/22 267616 -45.70.96.0/22 267635 -45.70.100.0/22 267567 -45.70.104.0/22 267558 -45.70.108.0/22 267559 -45.70.112.0/22 267561 -45.70.116.0/22 265824 -45.70.120.0/22 267577 -45.70.124.0/22 267562 -45.70.128.0/22 267563 -45.70.132.0/22 267572 -45.70.136.0/22 267582 -45.70.140.0/22 267583 -45.70.144.0/22 267568 -45.70.148.0/22 267589 -45.70.152.0/24 265809 -45.70.154.0/24 265809 -45.70.156.0/22 267654 -45.70.160.0/22 267575 -45.70.164.0/22 267578 -45.70.168.0/23 265833 -45.70.170.0/24 265833 -45.70.172.0/22 267584 -45.70.176.0/22 267576 -45.70.180.0/22 265814 -45.70.184.0/22 263693 -45.70.188.0/22 267594 -45.70.192.0/22 267585 -45.70.196.0/22 264668 -45.70.200.0/22 264668 -45.70.204.0/22 267586 -45.70.208.0/22 267609 -45.70.212.0/22 267587 -45.70.216.0/22 267588 -45.70.220.0/22 265816 -45.70.224.0/22 267590 -45.70.228.0/22 265826 -45.70.232.0/22 267591 -45.70.236.0/22 264668 -45.70.240.0/22 265818 -45.70.244.0/22 267598 -45.70.248.0/22 267610 -45.70.252.0/22 267611 -45.71.0.0/24 266672 -45.71.3.0/24 264836 -45.71.4.0/24 267592 -45.71.5.0/24 265884 -45.71.6.0/24 267630 -45.71.7.0/24 27817 -45.71.12.0/22 267595 -45.71.16.0/22 265827 -45.71.20.0/22 267596 -45.71.24.0/22 267631 -45.71.28.0/22 267599 -45.71.32.0/22 27843 -45.71.36.0/22 264668 -45.71.40.0/22 267634 -45.71.44.0/22 265830 -45.71.48.0/22 61586 -45.71.52.0/24 265820 -45.71.56.0/22 27983 -45.71.60.0/22 267600 -45.71.64.0/22 267612 -45.71.68.0/22 267601 -45.71.72.0/22 267597 -45.71.76.0/22 267615 -45.71.80.0/22 267617 -45.71.84.0/22 267602 -45.71.88.0/22 267618 -45.71.92.0/22 267606 -45.71.96.0/22 267603 -45.71.100.0/22 267607 -45.71.104.0/23 263329 -45.71.106.0/24 265860 -45.71.107.0/24 267655 -45.71.108.0/22 267614 -45.71.112.0/22 264668 -45.71.116.0/22 267605 -45.71.120.0/22 267619 -45.71.124.0/22 267620 -45.71.128.0/22 267608 -45.71.132.0/22 267664 -45.71.136.0/22 267658 -45.71.140.0/22 266917 -45.71.144.0/22 61717 -45.71.148.0/22 267656 -45.71.152.0/22 265836 -45.71.156.0/22 265825 -45.71.160.0/22 267638 -45.71.164.0/22 267621 -45.71.168.0/22 267622 -45.71.172.0/22 267633 -45.71.176.0/22 267627 -45.71.180.0/24 14080 -45.71.181.0/24 262186 -45.71.182.0/23 262186 -45.71.184.0/22 264668 -45.71.188.0/22 267628 -45.71.192.0/23 264459 -45.71.194.0/24 267642 -45.71.195.0/24 264459 -45.71.196.0/22 265828 -45.71.200.0/22 264668 -45.71.204.0/22 28100 -45.71.208.0/22 267639 -45.71.212.0/23 267623 -45.71.214.0/23 267626 -45.71.216.0/22 267629 -45.71.220.0/22 267643 -45.71.224.0/22 28146 -45.71.228.0/22 267624 -45.71.232.0/22 267632 -45.71.236.0/22 267625 -45.71.240.0/22 267645 -45.71.244.0/22 267651 -45.71.248.0/22 267640 -45.71.252.0/22 264668 -45.72.0.0/24 55286 -45.72.1.0/24 36352 -45.72.2.0/23 55286 -45.72.4.0/22 55286 -45.72.8.0/21 55286 -45.72.16.0/22 55286 -45.72.20.0/23 55286 -45.72.22.0/24 36352 -45.72.23.0/24 55286 -45.72.24.0/21 55286 -45.72.32.0/24 55286 -45.72.33.0/24 36352 -45.72.34.0/23 55286 -45.72.36.0/24 55286 -45.72.37.0/24 36352 -45.72.38.0/23 55286 -45.72.40.0/22 55286 -45.72.44.0/24 55081 -45.72.45.0/24 55286 -45.72.46.0/23 55286 -45.72.48.0/22 55286 -45.72.52.0/24 55286 -45.72.53.0/24 55081 -45.72.54.0/23 55081 -45.72.56.0/22 55286 -45.72.60.0/24 55286 -45.72.61.0/24 36352 -45.72.62.0/23 55286 -45.72.64.0/24 55286 -45.72.65.0/24 36352 -45.72.66.0/23 55286 -45.72.68.0/24 55081 -45.72.69.0/24 55286 -45.72.70.0/23 55286 -45.72.72.0/21 55286 -45.72.80.0/21 55286 -45.72.88.0/22 55286 -45.72.92.0/23 55286 -45.72.94.0/23 55081 -45.72.96.0/23 55081 -45.72.98.0/23 55286 -45.72.100.0/22 55286 -45.72.104.0/22 55286 -45.72.108.0/24 55081 -45.72.109.0/24 55286 -45.72.110.0/23 55286 -45.72.112.0/22 55286 -45.72.116.0/24 55286 -45.72.117.0/24 36352 -45.72.118.0/23 36352 -45.72.120.0/21 55286 -45.72.128.0/17 5645 -45.73.0.0/17 5769 -45.73.128.0/20 26292 -45.73.144.0/24 33132 -45.73.145.0/24 393959 -45.73.146.0/23 33132 -45.73.148.0/22 33132 -45.73.152.0/21 33132 -45.73.160.0/21 21769 -45.73.168.0/23 17090 -45.73.170.0/23 46261 -45.73.172.0/22 46261 -45.73.176.0/22 46261 -45.73.180.0/23 23470 -45.73.182.0/24 21769 -45.73.183.0/24 54103 -45.73.184.0/24 21769 -45.73.185.0/24 54103 -45.73.186.0/23 21769 -45.73.188.0/24 54103 -45.73.189.0/24 21769 -45.73.190.0/24 9009 -45.73.191.0/24 55803 -45.73.192.0/18 36315 -45.74.0.0/23 3223 -45.74.2.0/24 46562 -45.74.3.0/24 45671 -45.74.4.0/24 3223 -45.74.5.0/24 9009 -45.74.6.0/24 9009 -45.74.7.0/24 3223 -45.74.8.0/23 3223 -45.74.10.0/23 203020 -45.74.12.0/24 9009 -45.74.13.0/24 46562 -45.74.14.0/24 45671 -45.74.15.0/24 46562 -45.74.16.0/24 29854 -45.74.17.0/24 29802 -45.74.18.0/23 29802 -45.74.20.0/22 29802 -45.74.24.0/23 29802 -45.74.26.0/24 29802 -45.74.27.0/24 29854 -45.74.29.0/24 29854 -45.74.30.0/24 45671 -45.74.31.0/24 36351 -45.74.32.0/24 55286 -45.74.33.0/24 46562 -45.74.34.0/23 46562 -45.74.36.0/24 36351 -45.74.37.0/24 45671 -45.74.38.0/24 9009 -45.74.39.0/24 36351 -45.74.40.0/24 13213 -45.74.41.0/24 36351 -45.74.42.0/24 53889 -45.74.43.0/24 36351 -45.74.44.0/23 9009 -45.74.46.0/24 9009 -45.74.47.0/24 3223 -45.74.48.0/24 3223 -45.74.49.0/24 132372 -45.74.50.0/24 3223 -45.74.51.0/24 132372 -45.74.52.0/24 46562 -45.74.53.0/24 3223 -45.74.54.0/24 3223 -45.74.55.0/24 46562 -45.74.56.0/24 3223 -45.74.57.0/24 63018 -45.74.58.0/23 3223 -45.74.60.0/24 46562 -45.74.61.0/24 36351 -45.74.62.0/24 9009 -45.74.63.0/24 3223 -45.74.64.0/20 54614 -45.74.80.0/20 23089 -45.74.96.0/19 40788 -45.74.128.0/17 19397 -45.75.0.0/17 38628 -45.75.128.0/18 49425 -45.75.192.0/21 49425 -45.75.200.0/23 49425 -45.75.202.0/24 394183 -45.75.203.0/24 49425 -45.75.204.0/22 49425 -45.75.208.0/20 49425 -45.75.224.0/19 49425 -45.76.0.0/15 20473 -45.78.0.0/18 25820 -45.78.64.0/20 25820 -45.78.82.0/23 393559 -45.78.86.0/23 393559 -45.78.88.0/24 393559 -45.78.92.0/23 393559 -45.78.96.0/19 23252 -45.78.128.0/20 11698 -45.78.144.0/24 46261 -45.78.149.0/24 46261 -45.78.152.0/24 46261 -45.78.156.0/24 62900 -45.78.159.0/24 62900 -45.78.160.0/19 7992 -45.78.192.0/18 36493 -45.79.0.0/21 63949 -45.79.8.0/22 63949 -45.79.12.0/23 63949 -45.79.14.0/24 63949 -45.79.16.0/20 63949 -45.79.32.0/19 63949 -45.79.64.0/19 63949 -45.79.96.0/20 63949 -45.79.112.0/22 63949 -45.79.116.0/24 22822 -45.79.117.0/24 55429 -45.79.118.0/24 38622 -45.79.119.0/24 63949 -45.79.128.0/18 63949 -45.79.192.0/19 63949 -45.79.224.0/21 63949 -45.80.1.0/24 200780 -45.80.2.0/24 41652 -45.80.16.0/22 199417 -45.80.28.0/22 207046 -45.80.36.0/23 62068 -45.80.38.0/23 51942 -45.80.40.0/23 208741 -45.80.43.0/24 208741 -45.80.48.0/22 8100 -45.80.60.0/22 203061 -45.80.64.0/22 12389 -45.80.68.0/22 198610 -45.80.76.0/22 49961 -45.80.80.0/22 207046 -45.80.84.0/22 208711 -45.80.88.0/22 208905 -45.80.92.0/22 39642 -45.80.96.0/22 208867 -45.80.100.0/22 393894 -45.80.104.0/23 49453 -45.80.106.0/23 46844 -45.80.108.0/22 208525 -45.80.112.0/22 132839 -45.80.116.0/22 8280 -45.80.120.0/22 34665 -45.80.128.0/24 46573 -45.80.129.0/24 51167 -45.80.130.0/23 35913 -45.80.132.0/22 208898 -45.80.136.0/22 57757 -45.80.148.0/23 204641 -45.80.150.0/24 204641 -45.80.156.0/24 36351 -45.80.157.0/24 20473 -45.80.158.0/23 13213 -45.80.160.0/22 43915 -45.80.164.0/22 50495 -45.80.168.0/22 62240 -45.80.172.0/23 203377 -45.80.174.0/24 203377 -45.80.175.0/24 207459 -45.80.176.0/22 54600 -45.80.184.0/22 35913 -45.80.189.0/24 3214 -45.80.190.0/23 3214 -45.80.192.0/24 40676 -45.80.193.0/24 202322 -45.80.194.0/23 202322 -45.80.196.0/22 208888 -45.80.200.0/22 34549 -45.80.204.0/22 134121 -45.80.208.0/21 134121 -45.80.216.0/22 49505 -45.80.220.0/22 62415 -45.80.224.0/22 29119 -45.80.228.0/22 33991 -45.80.232.0/22 15879 -45.80.240.0/22 204144 -45.80.244.0/24 20668 -45.80.245.0/24 48955 -45.80.246.0/24 20668 -45.80.247.0/24 48955 -45.80.248.0/22 210015 -45.80.252.0/22 57809 -45.81.0.0/22 61317 -45.81.4.0/22 35913 -45.81.8.0/22 54600 -45.81.16.0/22 49981 -45.81.20.0/24 7489 -45.81.21.0/24 51942 -45.81.22.0/23 51942 -45.81.24.0/22 9009 -45.81.28.0/22 208883 -45.81.32.0/22 134121 -45.81.40.0/22 208882 -45.81.44.0/22 8893 -45.81.52.0/22 208418 -45.81.60.0/22 51083 -45.81.64.0/22 49289 -45.81.68.0/22 59414 -45.81.72.0/22 32181 -45.81.76.0/22 62415 -45.81.80.0/22 44407 -45.81.84.0/22 197922 -45.81.96.0/22 206548 -45.81.104.0/22 50129 -45.81.108.0/22 205285 -45.81.112.0/22 34549 -45.81.116.0/22 9009 -45.81.120.0/22 41230 -45.81.124.0/22 50129 -45.81.129.0/24 21859 -45.81.130.0/23 21859 -45.81.132.0/22 24961 -45.81.136.0/23 35048 -45.81.138.0/24 34665 -45.81.139.0/24 49505 -45.81.140.0/22 57844 -45.81.144.0/22 208859 -45.81.148.0/23 40676 -45.81.150.0/24 64236 -45.81.151.0/24 40676 -45.81.152.0/22 200908 -45.81.160.0/22 9009 -45.81.168.0/22 207903 -45.81.172.0/22 42487 -45.81.180.0/22 49397 -45.81.188.0/22 44176 -45.81.192.0/22 198507 -45.81.196.0/22 52075 -45.81.200.0/23 8595 -45.81.204.0/22 60456 -45.81.208.0/22 20565 -45.81.212.0/22 25540 -45.81.220.0/22 62240 -45.81.224.0/22 204601 -45.81.228.0/22 202265 -45.81.232.0/22 44066 -45.81.236.0/22 54600 -45.81.240.0/22 43659 -45.81.244.0/22 54600 -45.81.248.0/22 202322 -45.81.252.0/22 200019 -45.82.4.0/22 398083 -45.82.13.0/24 397796 -45.82.14.0/23 19437 -45.82.20.0/22 201341 -45.82.32.0/22 42549 -45.82.40.0/22 9009 -45.82.44.0/22 58073 -45.82.48.0/22 9009 -45.82.52.0/22 208485 -45.82.56.0/22 208530 -45.82.60.0/22 208866 -45.82.64.0/22 39690 -45.82.68.0/22 204601 -45.82.76.0/22 55933 -45.82.80.0/24 49770 -45.82.81.0/24 51248 -45.82.82.0/24 51167 -45.82.83.0/24 59432 -45.82.86.0/23 42159 -45.82.88.0/22 25144 -45.82.96.0/22 62240 -45.82.116.0/22 208304 -45.82.120.0/22 44066 -45.82.124.0/22 42184 -45.82.128.0/24 208844 -45.82.132.0/22 202709 -45.82.136.0/22 202468 -45.82.140.0/22 59447 -45.82.144.0/22 198401 -45.82.148.0/22 208599 -45.82.153.0/24 202984 -45.82.154.0/23 49558 -45.82.156.0/22 42189 -45.82.164.0/22 9009 -45.82.176.0/22 204601 -45.82.180.0/22 35009 -45.82.184.0/22 200023 -45.82.188.0/22 31477 -45.82.196.0/22 47602 -45.82.204.0/23 54600 -45.82.208.0/22 59842 -45.82.212.0/22 208849 -45.82.216.0/24 208274 -45.82.220.0/23 39782 -45.82.222.0/24 39782 -45.82.223.0/24 60068 -45.82.228.0/22 12874 -45.82.232.0/22 208847 -45.82.236.0/22 4785 -45.82.240.0/23 135391 -45.82.244.0/22 35913 -45.82.248.0/24 35913 -45.82.249.0/24 40676 -45.82.250.0/23 35913 -45.82.252.0/23 40676 -45.82.254.0/23 35913 -45.83.0.0/22 54903 -45.83.4.0/22 62240 -45.83.8.0/22 51248 -45.83.12.0/22 206085 -45.83.24.0/22 35913 -45.83.28.0/24 36351 -45.83.29.0/24 35913 -45.83.30.0/23 35913 -45.83.32.0/24 208821 -45.83.33.0/24 34984 -45.83.34.0/24 34984 -45.83.35.0/24 206119 -45.83.36.0/22 198781 -45.83.40.0/24 44709 -45.83.41.0/24 204548 -45.83.42.0/23 44709 -45.83.44.0/24 208829 -45.83.48.0/22 29119 -45.83.56.0/22 48955 -45.83.64.0/22 29014 -45.83.68.0/22 15623 -45.83.72.0/22 208834 -45.83.76.0/24 5413 -45.83.77.0/24 16293 -45.83.84.0/22 35913 -45.83.88.0/22 9009 -45.83.92.0/22 208838 -45.83.96.0/24 25465 -45.83.100.0/22 204189 -45.83.112.0/22 57844 -45.83.116.0/22 35913 -45.83.120.0/22 200313 -45.83.124.0/22 57844 -45.83.128.0/24 40676 -45.83.129.0/24 35913 -45.83.130.0/23 35913 -45.83.132.0/22 57844 -45.83.136.0/22 57844 -45.83.140.0/22 35913 -45.83.144.0/22 57844 -45.83.148.0/24 40676 -45.83.149.0/24 35913 -45.83.150.0/23 35913 -45.83.160.0/22 62240 -45.83.164.0/22 208833 -45.83.172.0/22 50470 -45.83.176.0/23 48644 -45.83.179.0/24 49877 -45.83.180.0/22 57844 -45.83.184.0/24 35758 -45.83.185.0/24 9009 -45.83.186.0/23 9009 -45.83.188.0/22 62240 -45.83.192.0/22 56851 -45.83.204.0/22 62240 -45.83.212.0/22 39761 -45.83.220.0/22 39351 -45.83.224.0/22 49335 -45.83.228.0/22 24904 -45.83.237.0/24 134835 -45.83.238.0/23 209484 -45.83.240.0/23 395800 -45.83.242.0/24 395800 -45.83.248.0/22 209916 -45.83.252.0/23 54600 -45.83.254.0/24 24000 -45.83.255.0/24 21859 -45.84.0.0/24 200019 -45.84.1.0/24 44094 -45.84.2.0/23 44676 -45.84.4.0/22 205185 -45.84.12.0/22 208762 -45.84.20.0/22 61323 -45.84.24.0/22 8767 -45.84.28.0/22 208816 -45.84.32.0/22 61381 -45.84.40.0/22 57112 -45.84.44.0/22 9009 -45.84.48.0/22 202754 -45.84.52.0/22 39305 -45.84.56.0/22 35913 -45.84.64.0/22 204704 -45.84.72.0/23 8767 -45.84.74.0/23 61157 -45.84.76.0/22 205285 -45.84.80.0/22 209372 -45.84.84.0/22 208777 -45.84.92.0/22 48915 -45.84.98.0/23 208482 -45.84.104.0/24 57878 -45.84.105.0/24 24961 -45.84.106.0/23 9009 -45.84.108.0/23 394381 -45.84.110.0/24 394381 -45.84.112.0/22 35600 -45.84.116.0/24 208734 -45.84.118.0/23 208734 -45.84.120.0/22 59447 -45.84.124.0/22 207233 -45.84.128.0/22 47764 -45.84.136.0/22 35913 -45.84.140.0/22 56708 -45.84.144.0/23 61438 -45.84.146.0/23 41574 -45.84.156.0/22 201150 -45.84.160.0/22 203061 -45.84.164.0/22 208805 -45.84.168.0/22 203726 -45.84.172.0/22 59466 -45.84.176.0/23 35048 -45.84.178.0/24 34665 -45.84.179.0/24 49505 -45.84.184.0/22 41019 -45.84.188.0/24 51559 -45.84.189.0/24 42926 -45.84.192.0/24 199364 -45.84.194.0/24 51765 -45.84.195.0/24 12874 -45.84.196.0/24 24961 -45.84.197.0/24 8100 -45.84.198.0/23 398127 -45.84.200.0/22 208802 -45.84.204.0/22 47583 -45.84.208.0/22 208591 -45.84.212.0/23 133752 -45.84.214.0/23 32181 -45.84.216.0/22 46562 -45.84.220.0/24 58879 -45.84.221.0/24 138570 -45.84.224.0/22 198610 -45.84.228.0/22 62240 -45.84.236.0/24 208630 -45.84.240.0/24 16509 -45.84.252.0/23 42473 -45.84.254.0/24 42473 -45.85.0.0/22 9009 -45.85.8.0/22 57332 -45.85.12.0/22 208794 -45.85.16.0/22 205498 -45.85.20.0/22 208620 -45.85.24.0/22 208793 -45.85.36.0/22 208791 -45.85.40.0/23 57667 -45.85.42.0/24 57667 -45.85.44.0/22 198575 -45.85.52.0/24 208789 -45.85.56.0/22 208644 -45.85.60.0/22 49375 -45.85.64.0/24 12722 -45.85.65.0/24 48995 -45.85.66.0/24 49505 -45.85.67.0/24 12722 -45.85.72.0/22 58317 -45.85.76.0/22 55933 -45.85.80.0/22 198545 -45.85.84.0/24 40676 -45.85.86.0/24 52423 -45.85.87.0/24 23470 -45.85.88.0/23 32181 -45.85.90.0/24 206092 -45.85.91.0/24 54825 -45.85.92.0/22 15517 -45.85.96.0/24 3303 -45.85.104.0/23 46562 -45.85.106.0/24 32181 -45.85.107.0/24 46562 -45.85.108.0/22 9009 -45.85.112.0/22 208665 -45.85.116.0/24 62184 -45.85.124.0/22 9009 -45.85.128.0/22 208867 -45.85.132.0/22 200780 -45.85.136.0/22 35394 -45.85.140.0/22 33991 -45.85.148.0/22 208654 -45.85.156.0/23 49367 -45.85.158.0/23 31863 -45.85.160.0/22 397796 -45.85.168.0/22 9304 -45.85.176.0/22 60032 -45.85.180.0/22 203704 -45.85.188.0/22 35913 -45.85.192.0/23 54600 -45.85.194.0/24 60945 -45.85.195.0/24 206499 -45.85.196.0/22 208770 -45.85.200.0/23 208228 -45.85.208.0/22 199980 -45.85.212.0/22 204144 -45.85.216.0/22 44066 -45.85.220.0/22 208152 -45.85.228.0/22 208766 -45.85.232.0/22 201172 -45.85.236.0/23 208759 -45.85.238.0/24 208759 -45.85.240.0/22 9009 -45.85.248.0/22 35913 -45.86.0.0/23 35048 -45.86.2.0/24 62300 -45.86.3.0/24 12722 -45.86.4.0/22 203392 -45.86.12.0/24 29066 -45.86.13.0/24 398083 -45.86.14.0/24 29066 -45.86.15.0/24 60781 -45.86.16.0/22 39690 -45.86.20.0/22 209896 -45.86.24.0/21 9009 -45.86.32.0/22 203566 -45.86.44.0/22 207967 -45.86.52.0/22 43260 -45.86.56.0/22 197423 -45.86.60.0/22 35913 -45.86.64.0/20 35913 -45.86.80.0/24 205516 -45.86.88.0/22 202322 -45.86.92.0/22 50673 -45.86.96.0/22 57809 -45.86.100.0/22 208746 -45.86.104.0/24 43948 -45.86.105.0/24 208662 -45.86.108.0/22 49088 -45.86.116.0/23 203501 -45.86.120.0/24 208576 -45.86.124.0/24 200462 -45.86.125.0/24 34549 -45.86.126.0/23 200462 -45.86.128.0/22 204287 -45.86.132.0/23 9044 -45.86.136.0/22 21368 -45.86.140.0/22 137443 -45.86.144.0/22 48955 -45.86.154.0/23 202322 -45.86.156.0/22 202322 -45.86.160.0/22 50495 -45.86.164.0/24 208740 -45.86.166.0/23 208740 -45.86.168.0/24 209507 -45.86.169.0/24 43350 -45.86.170.0/24 786 -45.86.171.0/24 34665 -45.86.176.0/22 201975 -45.86.180.0/22 44128 -45.86.184.0/23 62235 -45.86.186.0/24 62235 -45.86.188.0/24 398083 -45.86.192.0/22 34549 -45.86.196.0/22 49103 -45.86.200.0/24 206092 -45.86.202.0/24 206092 -45.86.203.0/24 28753 -45.86.204.0/24 25540 -45.86.205.0/24 35625 -45.86.224.0/22 48146 -45.86.228.0/22 134121 -45.86.232.0/22 137443 -45.86.240.0/24 20668 -45.86.241.0/24 39877 -45.86.242.0/24 20668 -45.86.243.0/24 39877 -45.86.244.0/24 60781 -45.86.245.0/24 35913 -45.86.246.0/24 35913 -45.86.247.0/24 60781 -45.87.0.0/22 204601 -45.87.4.0/22 44285 -45.87.8.0/22 201341 -45.87.12.0/22 39761 -45.87.16.0/22 6735 -45.87.28.0/22 26636 -45.87.32.0/22 202006 -45.87.40.0/22 62068 -45.87.44.0/22 43260 -45.87.48.0/22 262287 -45.87.52.0/22 55303 -45.87.56.0/22 44407 -45.87.60.0/24 25369 -45.87.61.0/24 8100 -45.87.62.0/24 29802 -45.87.63.0/24 57695 -45.87.64.0/22 41974 -45.87.68.0/24 174 -45.87.72.0/22 208613 -45.87.76.0/22 208725 -45.87.80.0/22 47583 -45.87.88.0/22 207475 -45.87.96.0/22 208724 -45.87.100.0/22 13332 -45.87.104.0/22 42632 -45.87.112.0/22 208708 -45.87.116.0/24 208422 -45.87.120.0/23 60118 -45.87.124.0/22 62415 -45.87.128.0/23 204646 -45.87.131.0/24 174 -45.87.132.0/22 208722 -45.87.136.0/22 47447 -45.87.140.0/22 208879 -45.87.144.0/22 12494 -45.87.148.0/22 48585 -45.87.160.0/23 202265 -45.87.164.0/24 6233 -45.87.165.0/24 62805 -45.87.166.0/23 62805 -45.87.168.0/22 9009 -45.87.172.0/22 34549 -45.87.176.0/22 208704 -45.87.184.0/22 61317 -45.87.188.0/22 200548 -45.87.204.0/22 209196 -45.87.208.0/22 174 -45.87.212.0/22 9009 -45.87.216.0/23 50809 -45.87.218.0/24 50809 -45.87.219.0/24 64429 -45.87.220.0/22 43863 -45.87.224.0/23 207044 -45.87.228.0/22 132839 -45.87.232.0/22 393559 -45.87.236.0/23 208712 -45.87.240.0/22 397796 -45.87.244.0/22 207967 -45.87.248.0/23 60781 -45.87.251.0/24 207907 -45.87.252.0/23 35048 -45.87.254.0/24 12722 -45.87.255.0/24 49505 -45.88.0.0/22 200313 -45.88.4.0/23 137571 -45.88.6.0/23 18013 -45.88.12.0/23 133115 -45.88.14.0/24 133115 -45.88.15.0/24 45250 -45.88.16.0/22 58073 -45.88.24.0/22 43659 -45.88.40.0/22 9009 -45.88.44.0/22 198024 -45.88.48.0/22 39647 -45.88.52.0/22 201776 -45.88.60.0/22 21267 -45.88.64.0/22 43659 -45.88.76.0/22 204601 -45.88.80.0/22 62415 -45.88.84.0/22 398083 -45.88.88.0/22 43659 -45.88.92.0/22 42864 -45.88.96.0/23 61317 -45.88.98.0/24 51043 -45.88.99.0/24 61317 -45.88.100.0/24 9009 -45.88.101.0/24 57129 -45.88.102.0/24 174 -45.88.103.0/24 9009 -45.88.104.0/22 204601 -45.88.108.0/22 44066 -45.88.112.0/22 50056 -45.88.116.0/22 208692 -45.88.136.0/24 12695 -45.88.137.0/24 12679 -45.88.138.0/23 12679 -45.88.140.0/22 198682 -45.88.144.0/22 39458 -45.88.148.0/22 35913 -45.88.156.0/24 202654 -45.88.157.0/24 205715 -45.88.158.0/24 208380 -45.88.159.0/24 207889 -45.88.160.0/22 35913 -45.88.168.0/22 35913 -45.88.172.0/22 206382 -45.88.176.0/21 35913 -45.88.192.0/22 54574 -45.88.196.0/22 47583 -45.88.201.0/24 206898 -45.88.202.0/24 34962 -45.88.203.0/24 42651 -45.88.204.0/22 8990 -45.88.208.0/24 12722 -45.88.209.0/24 42577 -45.88.210.0/24 64429 -45.88.211.0/24 12722 -45.88.216.0/22 209702 -45.88.220.0/22 35913 -45.88.224.0/22 208694 -45.88.228.0/22 36445 -45.88.232.0/24 49415 -45.88.236.0/22 12337 -45.88.240.0/22 1764 -45.88.244.0/22 398083 -45.88.252.0/22 204144 -45.89.0.0/22 48662 -45.89.4.0/22 208687 -45.89.8.0/22 62321 -45.89.12.0/22 54600 -45.89.16.0/22 35048 -45.89.20.0/22 49334 -45.89.24.0/22 55933 -45.89.28.0/22 25057 -45.89.32.0/22 35913 -45.89.36.0/22 26636 -45.89.40.0/22 48146 -45.89.44.0/22 206085 -45.89.48.0/22 197328 -45.89.52.0/22 44676 -45.89.56.0/22 29611 -45.89.60.0/22 42993 -45.89.64.0/24 50113 -45.89.65.0/24 35196 -45.89.66.0/23 35196 -45.89.68.0/24 12722 -45.89.69.0/24 56630 -45.89.70.0/24 34665 -45.89.71.0/24 12722 -45.89.72.0/22 12695 -45.89.76.0/22 57809 -45.89.80.0/22 200845 -45.89.84.0/22 42946 -45.89.88.0/23 51500 -45.89.90.0/24 30886 -45.89.92.0/22 8893 -45.89.96.0/20 35913 -45.89.116.0/22 204287 -45.89.120.0/24 2597 -45.89.124.0/22 202322 -45.89.132.0/22 208683 -45.89.136.0/24 208675 -45.89.138.0/23 208675 -45.89.140.0/22 44066 -45.89.156.0/22 42946 -45.89.160.0/23 205614 -45.89.163.0/24 5404 -45.89.164.0/22 48112 -45.89.168.0/22 204989 -45.89.172.0/22 9009 -45.89.176.0/22 132839 -45.89.180.0/22 28716 -45.89.184.0/22 206851 -45.89.188.0/24 202423 -45.89.189.0/24 35415 -45.89.190.0/24 8100 -45.89.191.0/24 35415 -45.89.192.0/22 50304 -45.89.196.0/22 35913 -45.89.200.0/24 34947 -45.89.208.0/22 50495 -45.89.212.0/22 198193 -45.89.216.0/22 4785 -45.89.224.0/22 208677 -45.89.228.0/23 49392 -45.89.230.0/24 51659 -45.89.231.0/24 49505 -45.89.232.0/22 55933 -45.89.240.0/22 61317 -45.89.244.0/22 7018 -45.89.248.0/21 61317 -45.90.0.0/23 48956 -45.90.2.0/23 203140 -45.90.4.0/22 197540 -45.90.12.0/22 42946 -45.90.16.0/22 197518 -45.90.20.0/22 42946 -45.90.24.0/22 57763 -45.90.28.0/22 34939 -45.90.32.0/22 198610 -45.90.36.0/22 8896 -45.90.40.0/24 18212 -45.90.44.0/24 12722 -45.90.47.0/24 12722 -45.90.52.0/23 29119 -45.90.54.0/24 200407 -45.90.55.0/24 29119 -45.90.56.0/22 204957 -45.90.68.0/22 29081 -45.90.72.0/22 9009 -45.90.84.0/22 208661 -45.90.88.0/22 7018 -45.90.92.0/22 49088 -45.90.96.0/22 34549 -45.90.100.0/22 34819 -45.90.104.0/22 209181 -45.90.112.0/22 203061 -45.90.116.0/22 42946 -45.90.120.0/22 35913 -45.90.132.0/22 553 -45.90.140.0/22 9009 -45.90.144.0/23 207907 -45.90.146.0/23 207083 -45.90.156.0/22 51048 -45.90.160.0/24 35395 -45.90.164.0/22 47755 -45.90.168.0/22 208449 -45.90.172.0/22 42946 -45.90.176.0/22 49223 -45.90.180.0/23 61314 -45.90.188.0/22 203934 -45.90.192.0/23 209993 -45.90.194.0/23 48072 -45.90.196.0/24 35048 -45.90.197.0/24 61317 -45.90.198.0/23 206766 -45.90.200.0/22 42946 -45.90.204.0/22 55803 -45.90.208.0/22 9312 -45.90.212.0/22 199926 -45.90.216.0/22 207967 -45.90.224.0/22 60032 -45.90.236.0/22 207046 -45.90.244.0/22 55933 -45.90.248.0/22 17941 -45.90.252.0/22 208603 -45.91.0.0/22 208663 -45.91.4.0/24 42508 -45.91.5.0/24 39877 -45.91.6.0/23 20668 -45.91.8.0/24 56630 -45.91.9.0/24 61317 -45.91.10.0/23 206766 -45.91.16.0/23 208638 -45.91.19.0/24 208638 -45.91.20.0/22 42946 -45.91.24.0/24 40676 -45.91.25.0/24 54600 -45.91.26.0/23 54600 -45.91.28.0/22 35236 -45.91.32.0/22 208485 -45.91.40.0/22 48955 -45.91.52.0/22 42993 -45.91.56.0/22 57112 -45.91.60.0/22 41731 -45.91.64.0/24 24961 -45.91.65.0/24 58286 -45.91.67.0/24 205220 -45.91.68.0/22 48886 -45.91.72.0/24 174 -45.91.76.0/22 209432 -45.91.80.0/22 209484 -45.91.88.0/22 204287 -45.91.92.0/23 63473 -45.91.94.0/24 63473 -45.91.100.0/22 31400 -45.91.104.0/22 209196 -45.91.108.0/22 59447 -45.91.112.0/22 42946 -45.91.116.0/22 395800 -45.91.124.0/24 208585 -45.91.125.0/24 208567 -45.91.126.0/24 208627 -45.91.132.0/22 398083 -45.91.136.0/22 34549 -45.91.140.0/22 208655 -45.91.144.0/22 57752 -45.91.148.0/22 207787 -45.91.152.0/24 208651 -45.91.156.0/22 20546 -45.91.160.0/24 12722 -45.91.161.0/24 34665 -45.91.162.0/24 47709 -45.91.163.0/24 64429 -45.91.164.0/22 262287 -45.91.168.0/22 269871 -45.91.176.0/22 203061 -45.91.180.0/22 208648 -45.91.184.0/22 202074 -45.91.188.0/22 9009 -45.91.196.0/22 12337 -45.91.200.0/22 204601 -45.91.206.0/24 204982 -45.91.207.0/24 208646 -45.91.208.0/22 60781 -45.91.212.0/22 31276 -45.91.216.0/22 201746 -45.91.220.0/22 59668 -45.91.225.0/24 136038 -45.91.226.0/24 133115 -45.91.228.0/23 6898 -45.91.232.0/22 208572 -45.91.236.0/23 9009 -45.91.238.0/24 9009 -45.91.239.0/24 34665 -45.91.240.0/22 208640 -45.91.248.0/24 64249 -45.91.250.0/24 49367 -45.91.251.0/24 46475 -45.91.252.0/22 197328 -45.92.0.0/22 262287 -45.92.4.0/22 398083 -45.92.8.0/23 35913 -45.92.10.0/23 40676 -45.92.16.0/22 209702 -45.92.20.0/22 60781 -45.92.24.0/22 209143 -45.92.28.0/22 40676 -45.92.32.0/22 9009 -45.92.36.0/22 208621 -45.92.40.0/23 208634 -45.92.42.0/24 208295 -45.92.43.0/24 208612 -45.92.52.0/22 64484 -45.92.60.0/22 43578 -45.92.64.0/22 208625 -45.92.68.0/22 208609 -45.92.72.0/22 43160 -45.92.80.0/22 134743 -45.92.84.0/22 204287 -45.92.88.0/22 398083 -45.92.95.0/24 59441 -45.92.96.0/22 134743 -45.92.104.0/22 34549 -45.92.108.0/22 204818 -45.92.124.0/22 35913 -45.92.132.0/22 208619 -45.92.136.0/22 208134 -45.92.140.0/22 35913 -45.92.148.0/22 31617 -45.92.152.0/22 134743 -45.92.156.0/24 58073 -45.92.158.0/23 55933 -45.92.160.0/21 35913 -45.92.168.0/22 60781 -45.92.172.0/24 49505 -45.92.173.0/24 48330 -45.92.174.0/24 34665 -45.92.175.0/24 47636 -45.92.176.0/22 134121 -45.92.180.0/22 57809 -45.92.184.0/22 205836 -45.92.188.0/22 47987 -45.92.192.0/22 35913 -45.92.196.0/22 208479 -45.92.200.0/22 25540 -45.92.204.0/22 208617 -45.92.208.0/22 197793 -45.92.212.0/22 34549 -45.92.216.0/22 202322 -45.92.224.0/22 57112 -45.92.228.0/24 9009 -45.92.231.0/24 9009 -45.92.236.0/22 42189 -45.92.240.0/24 208660 -45.92.241.0/24 200999 -45.92.242.0/23 200999 -45.92.244.0/23 60781 -45.92.246.0/24 397796 -45.92.247.0/24 60781 -45.92.248.0/22 9009 -45.92.252.0/22 51083 -45.93.0.0/22 203061 -45.93.4.0/22 28753 -45.93.8.0/22 44676 -45.93.12.0/24 49505 -45.93.13.0/24 51659 -45.93.14.0/23 49505 -45.93.16.0/22 137443 -45.93.20.0/24 174 -45.93.21.0/24 43350 -45.93.28.0/22 209484 -45.93.32.0/22 58073 -45.93.36.0/22 34758 -45.93.40.0/22 35224 -45.93.44.0/22 61317 -45.93.48.0/22 207176 -45.93.52.0/22 203061 -45.93.56.0/22 205775 -45.93.60.0/22 9009 -45.93.64.0/22 132839 -45.93.68.0/22 60781 -45.93.72.0/22 35224 -45.93.80.0/24 49505 -45.93.81.0/24 201971 -45.93.82.0/24 1680 -45.93.83.0/24 53755 -45.93.84.0/22 9009 -45.93.88.0/23 208600 -45.93.90.0/24 208600 -45.93.92.0/22 47959 -45.93.96.0/22 50495 -45.93.104.0/22 8893 -45.93.108.0/22 12897 -45.93.112.0/22 34790 -45.93.116.0/23 137443 -45.93.118.0/23 35913 -45.93.120.0/22 200810 -45.93.128.0/22 48955 -45.93.132.0/22 62241 -45.93.144.0/22 39305 -45.93.152.0/22 208093 -45.93.156.0/22 209687 -45.93.160.0/22 50606 -45.93.164.0/22 42946 -45.93.168.0/24 57497 -45.93.172.0/22 42946 -45.93.180.0/22 204717 -45.93.188.0/24 16509 -45.93.192.0/22 208586 -45.93.196.0/22 35267 -45.93.200.0/22 62415 -45.93.204.0/22 200799 -45.93.208.0/22 208597 -45.93.212.0/22 202723 -45.93.216.0/22 9009 -45.93.220.0/22 35444 -45.93.224.0/22 15395 -45.93.228.0/22 62416 -45.93.232.0/22 34244 -45.93.244.0/24 60721 -45.93.245.0/24 207787 -45.93.246.0/23 207787 -45.93.248.0/22 44066 -45.94.0.0/22 31263 -45.94.4.0/24 42926 -45.94.5.0/24 15924 -45.94.6.0/24 42926 -45.94.7.0/24 206119 -45.94.8.0/22 198193 -45.94.16.0/22 20766 -45.94.20.0/24 49505 -45.94.21.0/24 59510 -45.94.22.0/24 47358 -45.94.23.0/24 34665 -45.94.24.0/22 262287 -45.94.32.0/22 201508 -45.94.36.0/22 60781 -45.94.40.0/22 55933 -45.94.44.0/22 60781 -45.94.48.0/22 33988 -45.94.56.0/22 42366 -45.94.60.0/22 42946 -45.94.64.0/22 201341 -45.94.68.0/22 209484 -45.94.72.0/22 60110 -45.94.84.0/22 49696 -45.94.88.0/22 15623 -45.94.92.0/22 50581 -45.94.96.0/22 262287 -45.94.100.0/22 29119 -45.94.104.0/22 201211 -45.94.108.0/22 42263 -45.94.112.0/22 3320 -45.94.120.0/22 134121 -45.94.136.0/22 9009 -45.94.140.0/22 52193 -45.94.148.0/22 208594 -45.94.152.0/22 9009 -45.94.156.0/22 56851 -45.94.160.0/22 201341 -45.94.164.0/22 54600 -45.94.172.0/22 202120 -45.94.176.0/22 42946 -45.94.180.0/22 202120 -45.94.188.0/22 202120 -45.94.192.0/22 209196 -45.94.196.0/22 202120 -45.94.200.0/23 395800 -45.94.204.0/22 202120 -45.94.208.0/22 40676 -45.94.213.0/24 60932 -45.94.214.0/23 60932 -45.94.216.0/22 208592 -45.94.220.0/22 42946 -45.94.228.0/22 35751 -45.94.232.0/22 24768 -45.94.236.0/22 208485 -45.94.240.0/22 48549 -45.94.244.0/22 59447 -45.94.252.0/24 44841 -45.94.253.0/24 48551 -45.94.254.0/23 48551 -45.95.0.0/23 208979 -45.95.12.0/22 61317 -45.95.16.0/22 395092 -45.95.20.0/22 61317 -45.95.24.0/22 203020 -45.95.28.0/23 49505 -45.95.30.0/24 51724 -45.95.31.0/24 34665 -45.95.32.0/23 42549 -45.95.34.0/24 15440 -45.95.35.0/24 42549 -45.95.36.0/24 61317 -45.95.37.0/24 209526 -45.95.38.0/23 209526 -45.95.40.0/22 18013 -45.95.44.0/22 206892 -45.95.48.0/22 197328 -45.95.52.0/22 200303 -45.95.56.0/23 208456 -45.95.68.0/22 58075 -45.95.76.0/22 42947 -45.95.80.0/22 59732 -45.95.88.0/22 206085 -45.95.96.0/23 60781 -45.95.98.0/24 6939 -45.95.99.0/24 60781 -45.95.112.0/24 208589 -45.95.116.0/22 25369 -45.95.120.0/22 398127 -45.95.124.0/22 39560 -45.95.128.0/22 9009 -45.95.132.0/22 203020 -45.95.136.0/22 208534 -45.95.140.0/22 201814 -45.95.144.0/22 51942 -45.95.148.0/22 35751 -45.95.160.0/22 9009 -45.95.164.0/22 25133 -45.95.168.0/22 42864 -45.95.176.0/22 9009 -45.95.184.0/24 60945 -45.95.185.0/24 40676 -45.95.186.0/24 36352 -45.95.188.0/22 57234 -45.95.192.0/23 49367 -45.95.194.0/23 31863 -45.95.196.0/22 207747 -45.95.200.0/22 207967 -45.95.204.0/22 60767 -45.95.212.0/22 34549 -45.95.216.0/22 9009 -45.95.220.0/22 48955 -45.95.224.0/22 4785 -45.95.228.0/22 39777 -45.95.232.0/24 205220 -45.95.233.0/24 8100 -45.95.234.0/24 209401 -45.95.235.0/24 35029 -45.95.236.0/22 3320 -45.95.248.0/22 42946 -45.95.252.0/22 41960 -45.96.0.0/12 37069 -45.112.0.0/22 134000 -45.112.8.0/22 55352 -45.112.12.0/22 45415 -45.112.16.0/22 132108 -45.112.20.0/24 133011 -45.112.21.0/24 55806 -45.112.22.0/24 133011 -45.112.23.0/24 139195 -45.112.24.0/22 63888 -45.112.36.0/22 133466 -45.112.40.0/22 45415 -45.112.44.0/22 133070 -45.112.52.0/22 17426 -45.112.56.0/22 55352 -45.112.60.0/22 45230 -45.112.64.0/23 23884 -45.112.66.0/24 23884 -45.112.68.0/22 23860 -45.112.72.0/24 139065 -45.112.73.0/24 38067 -45.112.76.0/22 134078 -45.112.82.0/23 131235 -45.112.84.0/23 20546 -45.112.86.0/24 41179 -45.112.87.0/24 20546 -45.112.88.0/22 10164 -45.112.92.0/22 17857 -45.112.96.0/22 23578 -45.112.100.0/22 9971 -45.112.104.0/22 17597 -45.112.108.0/22 18310 -45.112.116.0/22 17871 -45.112.120.0/22 16509 -45.112.124.0/22 58369 -45.112.128.0/22 17676 -45.112.132.0/24 63545 -45.112.133.0/24 4847 -45.112.134.0/23 63545 -45.112.136.0/22 24309 -45.112.140.0/22 45455 -45.112.144.0/22 45769 -45.112.148.0/23 45769 -45.112.152.0/22 17854 -45.112.156.0/22 38109 -45.112.160.0/22 17573 -45.112.164.0/22 17849 -45.112.168.0/22 38095 -45.112.172.0/22 134789 -45.112.176.0/22 9988 -45.112.184.0/22 45582 -45.112.196.0/22 134088 -45.112.200.0/22 133660 -45.112.204.0/22 133115 -45.112.224.0/22 4638 -45.112.244.0/22 63956 -45.112.248.0/24 133720 -45.112.249.0/24 45194 -45.112.250.0/24 45194 -45.112.252.0/22 18209 -45.113.0.0/22 40065 -45.113.4.0/22 18068 -45.113.8.0/22 45179 -45.113.12.0/22 17622 -45.113.24.0/22 23650 -45.113.28.0/22 63705 -45.113.32.0/23 63959 -45.113.34.0/24 63959 -45.113.36.0/22 38084 -45.113.40.0/22 37963 -45.113.44.0/22 38705 -45.113.48.0/22 9972 -45.113.60.0/23 45530 -45.113.62.0/23 135244 -45.113.64.0/22 134177 -45.113.68.0/22 132203 -45.113.76.0/22 59170 -45.113.80.0/23 40676 -45.113.82.0/23 38197 -45.113.84.0/22 56050 -45.113.88.0/22 58765 -45.113.92.0/22 17907 -45.113.100.0/22 45775 -45.113.104.0/22 45117 -45.113.108.0/22 24000 -45.113.116.0/22 55429 -45.113.120.0/23 394695 -45.113.122.0/24 19905 -45.113.123.0/24 394695 -45.113.124.0/22 58895 -45.113.128.0/22 46489 -45.113.132.0/22 58715 -45.113.136.0/24 18229 -45.113.138.0/23 18229 -45.113.140.0/22 133485 -45.113.152.0/22 45117 -45.113.156.0/22 131597 -45.113.160.0/22 138415 -45.113.164.0/22 133012 -45.113.172.0/22 18097 -45.113.177.0/24 31972 -45.113.178.0/24 31972 -45.113.189.0/24 18229 -45.113.190.0/23 18229 -45.113.192.0/22 55967 -45.113.196.0/22 55811 -45.113.200.0/22 137697 -45.113.224.0/22 133296 -45.113.228.0/24 139396 -45.113.229.0/24 38496 -45.113.230.0/23 38496 -45.113.232.0/22 10148 -45.113.236.0/22 59341 -45.113.240.0/23 4837 -45.113.244.0/22 9336 -45.113.248.0/22 134055 -45.113.252.0/22 4837 -45.114.4.0/22 135600 -45.114.8.0/23 55933 -45.114.10.0/24 55933 -45.114.11.0/24 328543 -45.114.12.0/24 24000 -45.114.13.0/24 22769 -45.114.14.0/23 22769 -45.114.16.0/22 18126 -45.114.28.0/22 38278 -45.114.36.0/22 59196 -45.114.40.0/22 131477 -45.114.44.0/22 63888 -45.114.48.0/22 133695 -45.114.60.0/22 134000 -45.114.68.0/22 135821 -45.114.72.0/22 9829 -45.114.76.0/22 18229 -45.114.80.0/22 56209 -45.114.84.0/24 58715 -45.114.85.0/24 63969 -45.114.86.0/23 63969 -45.114.88.0/22 134116 -45.114.92.0/24 55592 -45.114.93.0/24 136209 -45.114.94.0/23 55592 -45.114.100.0/24 9535 -45.114.103.0/24 9535 -45.114.104.0/24 132839 -45.114.105.0/24 136800 -45.114.106.0/24 136800 -45.114.107.0/24 132839 -45.114.108.0/22 134548 -45.114.112.0/22 4686 -45.114.116.0/24 63956 -45.114.117.0/24 38001 -45.114.118.0/24 134451 -45.114.124.0/22 137443 -45.114.128.0/22 45382 -45.114.132.0/22 55821 -45.114.140.0/22 18229 -45.114.144.0/22 55507 -45.114.148.0/22 132785 -45.114.152.0/22 59162 -45.114.156.0/22 45194 -45.114.164.0/22 63888 -45.114.168.0/22 132839 -45.114.172.0/22 63888 -45.114.176.0/22 133589 -45.114.180.0/22 56264 -45.114.184.0/22 4686 -45.114.188.0/23 58144 -45.114.190.0/24 58144 -45.114.192.0/22 58678 -45.114.208.0/22 18126 -45.114.220.0/22 132724 -45.114.224.0/22 13768 -45.114.232.0/23 59347 -45.114.234.0/24 59347 -45.114.236.0/24 132168 -45.114.240.0/22 133320 -45.114.244.0/23 18229 -45.114.246.0/24 18229 -45.114.248.0/22 45415 -45.115.0.0/24 58725 -45.115.1.0/24 58766 -45.115.2.0/24 58725 -45.115.4.0/22 133275 -45.115.24.0/24 58955 -45.115.25.0/24 36351 -45.115.26.0/24 3223 -45.115.27.0/24 38001 -45.115.32.0/24 15412 -45.115.33.0/24 9311 -45.115.34.0/24 15412 -45.115.35.0/24 9311 -45.115.36.0/24 133380 -45.115.39.0/24 133380 -45.115.40.0/23 40065 -45.115.42.0/23 132839 -45.115.44.0/22 4812 -45.115.48.0/24 132162 -45.115.50.0/23 133760 -45.115.52.0/22 17665 -45.115.56.0/24 55352 -45.115.60.0/22 133676 -45.115.64.0/22 38753 -45.115.68.0/22 134139 -45.115.73.0/24 58731 -45.115.74.0/23 58731 -45.115.76.0/22 133593 -45.115.81.0/24 137066 -45.115.82.0/23 137066 -45.115.84.0/22 23674 -45.115.96.0/22 38571 -45.115.104.0/22 134026 -45.115.108.0/22 134287 -45.115.112.0/22 55828 -45.115.116.0/24 9517 -45.115.119.0/24 17439 -45.115.124.0/22 132839 -45.115.128.0/22 26380 -45.115.136.0/22 63873 -45.115.140.0/22 58640 -45.115.144.0/22 4812 -45.115.152.0/22 3786 -45.115.164.0/22 4837 -45.115.168.0/24 59162 -45.115.170.0/23 59162 -45.115.172.0/22 132960 -45.115.176.0/22 134316 -45.115.180.0/22 38623 -45.115.184.0/22 134022 -45.115.188.0/22 132323 -45.115.192.0/22 2519 -45.115.196.0/22 9253 -45.115.208.0/22 38901 -45.115.216.0/24 18222 -45.115.220.0/22 134069 -45.115.224.0/22 137498 -45.115.228.0/22 31972 -45.115.232.0/22 134160 -45.115.236.0/22 132883 -45.115.240.0/22 132742 -45.115.244.0/22 59022 -45.115.252.0/22 133647 -45.116.0.0/22 134053 -45.116.4.0/22 58594 -45.116.8.0/22 41095 -45.116.12.0/24 137443 -45.116.13.0/24 134130 -45.116.14.0/24 134130 -45.116.20.0/22 23752 -45.116.32.0/22 58466 -45.116.40.0/22 45474 -45.116.44.0/22 24554 -45.116.52.0/22 45061 -45.116.68.0/24 133647 -45.116.72.0/22 18097 -45.116.76.0/22 55933 -45.116.80.0/22 54994 -45.116.91.0/24 197068 -45.116.92.0/22 17676 -45.116.100.0/22 23650 -45.116.106.0/23 133647 -45.116.112.0/22 58898 -45.116.116.0/22 132323 -45.116.120.0/22 131215 -45.116.128.0/23 58697 -45.116.130.0/24 132899 -45.116.131.0/24 58559 -45.116.132.0/24 17819 -45.116.135.0/24 17819 -45.116.136.0/22 58885 -45.116.140.0/22 58466 -45.116.144.0/22 134548 -45.116.148.0/23 55341 -45.116.150.0/24 55341 -45.116.152.0/22 4847 -45.116.156.0/22 133823 -45.116.160.0/21 55720 -45.116.168.0/23 7532 -45.116.170.0/24 59214 -45.116.172.0/22 55720 -45.116.176.0/22 55720 -45.116.184.0/24 134008 -45.116.185.0/24 58678 -45.116.186.0/23 134008 -45.116.188.0/22 45804 -45.116.204.0/22 45117 -45.116.208.0/22 63701 -45.116.212.0/22 138415 -45.116.216.0/22 38566 -45.116.220.0/22 134369 -45.116.224.0/22 24295 -45.116.228.0/22 133301 -45.116.232.0/22 59257 -45.116.236.0/22 24068 -45.116.240.0/22 4788 -45.116.244.0/24 9986 -45.116.246.0/24 9986 -45.116.248.0/22 59332 -45.117.0.0/22 58678 -45.117.4.0/22 133320 -45.117.12.0/22 4766 -45.117.24.0/22 133534 -45.117.28.0/22 135724 -45.117.32.0/22 9484 -45.117.36.0/22 45267 -45.117.40.0/22 24000 -45.117.45.0/24 133003 -45.117.46.0/24 133003 -45.117.48.0/22 24554 -45.117.52.0/22 133320 -45.117.60.0/22 134186 -45.117.64.0/22 134033 -45.117.72.0/22 17665 -45.117.76.0/22 131428 -45.117.80.0/22 131353 -45.117.96.0/22 63981 -45.117.100.0/24 23858 -45.117.101.0/24 23748 -45.117.102.0/23 23748 -45.117.104.0/22 132165 -45.117.108.0/22 24554 -45.117.123.0/24 134190 -45.117.128.0/22 18196 -45.117.136.0/22 133320 -45.117.140.0/22 4686 -45.117.144.0/22 55592 -45.117.148.0/22 24554 -45.117.156.0/22 23470 -45.117.160.0/22 38731 -45.117.164.0/22 45538 -45.117.168.0/22 45544 -45.117.172.0/22 56151 -45.117.176.0/22 131353 -45.117.180.0/22 58762 -45.117.188.0/22 4628 -45.117.192.0/22 132839 -45.117.196.0/22 7131 -45.117.200.0/21 17747 -45.117.212.0/23 45194 -45.117.215.0/24 45194 -45.117.220.0/22 133001 -45.117.228.0/22 134202 -45.117.232.0/22 133320 -45.117.236.0/22 133421 -45.117.240.0/21 45355 -45.117.248.0/22 24554 -45.118.8.0/22 133994 -45.118.32.0/22 134032 -45.118.36.0/22 7629 -45.118.40.0/22 24295 -45.118.48.0/22 9829 -45.118.60.0/22 134201 -45.118.64.0/22 17907 -45.118.68.0/23 133957 -45.118.70.0/24 134599 -45.118.71.0/24 135353 -45.118.72.0/22 45582 -45.118.76.0/22 38901 -45.118.92.0/22 9829 -45.118.104.0/23 17665 -45.118.106.0/23 135739 -45.118.108.0/22 9829 -45.118.112.0/22 131717 -45.118.120.0/22 9829 -45.118.124.0/22 8100 -45.118.132.0/22 63949 -45.118.136.0/22 45557 -45.118.140.0/22 131349 -45.118.144.0/22 131414 -45.118.148.0/22 131367 -45.118.156.0/23 133982 -45.118.159.0/24 133982 -45.118.160.0/24 17665 -45.118.161.0/24 135739 -45.118.162.0/24 17665 -45.118.163.0/24 135739 -45.118.164.0/22 133652 -45.118.176.0/22 9829 -45.118.180.0/22 132717 -45.118.188.0/23 134220 -45.118.190.0/24 56030 -45.118.191.0/24 134220 -45.118.192.0/22 9829 -45.118.204.0/22 45433 -45.118.216.0/22 134899 -45.118.244.0/22 45905 -45.118.248.0/22 134705 -45.118.252.0/22 137443 -45.119.6.0/23 21859 -45.119.8.0/22 45117 -45.119.12.0/22 132296 -45.119.16.0/22 9829 -45.119.28.0/22 135739 -45.119.36.0/22 9829 -45.119.40.0/22 39782 -45.119.44.0/22 133001 -45.119.48.0/22 9829 -45.119.52.0/22 55933 -45.119.56.0/24 135241 -45.119.57.0/24 132770 -45.119.58.0/23 132770 -45.119.60.0/22 133774 -45.119.68.0/22 4837 -45.119.80.0/21 131386 -45.119.88.0/22 55507 -45.119.92.0/22 62468 -45.119.96.0/22 133199 -45.119.100.0/23 24189 -45.119.112.0/22 59185 -45.119.116.0/22 132422 -45.119.124.0/22 62468 -45.119.128.0/22 132931 -45.119.132.0/22 58678 -45.119.140.0/23 133275 -45.119.142.0/24 133275 -45.119.143.0/24 134872 -45.119.144.0/22 135354 -45.119.148.0/22 45194 -45.119.152.0/22 56300 -45.119.156.0/24 133136 -45.119.157.0/24 56300 -45.119.158.0/24 56300 -45.119.160.0/22 58983 -45.119.164.0/22 18126 -45.119.172.0/22 9829 -45.119.200.0/23 38001 -45.119.202.0/24 38001 -45.119.203.0/24 63930 -45.119.204.0/22 132827 -45.119.208.0/22 27176 -45.119.212.0/22 131423 -45.119.216.0/22 131435 -45.119.223.0/24 4826 -45.119.228.0/22 9829 -45.119.237.0/24 59162 -45.119.240.0/22 131418 -45.119.252.0/22 55592 -45.120.0.0/22 9381 -45.120.4.0/22 8100 -45.120.16.0/22 132568 -45.120.20.0/22 9829 -45.120.24.0/22 9829 -45.120.28.0/22 55720 -45.120.36.0/24 17890 -45.120.37.0/24 132990 -45.120.38.0/23 58890 -45.120.40.0/22 134040 -45.120.44.0/22 133041 -45.120.48.0/22 136557 -45.120.52.0/22 55720 -45.120.56.0/22 58640 -45.120.64.0/22 18328 -45.120.68.0/22 3786 -45.120.78.0/24 136209 -45.120.79.0/24 10010 -45.120.80.0/22 132839 -45.120.84.0/22 133385 -45.120.96.0/22 134236 -45.120.100.0/22 4837 -45.120.104.0/22 46160 -45.120.108.0/22 4775 -45.120.112.0/22 63996 -45.120.116.0/22 132744 -45.120.120.0/22 132933 -45.120.124.0/22 132934 -45.120.128.0/22 133444 -45.120.132.0/22 18126 -45.120.136.0/22 132335 -45.120.144.0/22 133590 -45.120.148.0/22 55293 -45.120.152.0/22 133115 -45.120.156.0/23 134835 -45.120.158.0/24 55933 -45.120.159.0/24 134835 -45.120.160.0/22 132116 -45.120.168.0/22 9381 -45.120.172.0/23 24109 -45.120.174.0/24 24109 -45.120.176.0/22 18126 -45.120.180.0/22 134157 -45.120.184.0/22 138415 -45.120.188.0/22 134352 -45.120.192.0/22 4686 -45.120.200.0/22 22363 -45.120.204.0/22 26658 -45.120.212.0/22 9829 -45.120.216.0/22 134366 -45.120.220.0/22 62468 -45.120.224.0/24 135905 -45.120.228.0/22 56147 -45.120.232.0/21 9829 -45.120.240.0/23 63582 -45.120.243.0/24 63582 -45.120.244.0/24 135457 -45.120.249.0/24 132116 -45.120.250.0/24 135814 -45.120.252.0/22 9829 -45.121.0.0/22 9829 -45.121.20.0/24 55720 -45.121.24.0/22 131429 -45.121.28.0/22 45184 -45.121.32.0/22 136908 -45.121.36.0/22 45960 -45.121.40.0/22 56245 -45.121.44.0/22 9829 -45.121.48.0/22 31972 -45.121.52.0/22 4847 -45.121.56.0/22 132742 -45.121.60.0/22 45328 -45.121.80.0/22 132742 -45.121.84.0/22 18106 -45.121.88.0/22 132447 -45.121.100.0/22 9829 -45.121.104.0/22 63889 -45.121.108.0/22 135214 -45.121.124.0/22 9829 -45.121.132.0/22 1851 -45.121.136.0/22 22552 -45.121.144.0/22 55720 -45.121.148.0/22 2516 -45.121.160.0/22 56149 -45.121.164.0/24 9532 -45.121.165.0/24 17581 -45.121.166.0/24 17581 -45.121.167.0/24 17873 -45.121.180.0/22 2635 -45.121.184.0/22 32590 -45.121.188.0/22 58640 -45.121.192.0/21 23881 -45.121.200.0/23 23881 -45.121.202.0/24 60068 -45.121.203.0/24 23881 -45.121.208.0/22 137409 -45.121.212.0/24 132422 -45.121.216.0/24 131111 -45.121.217.0/24 23947 -45.121.218.0/24 131111 -45.121.219.0/24 23947 -45.121.228.0/22 134426 -45.121.236.0/22 132590 -45.122.0.0/22 63535 -45.122.44.0/22 38571 -45.122.48.0/22 38794 -45.122.52.0/22 135448 -45.122.56.0/22 133797 -45.122.120.0/22 134375 -45.122.132.0/22 132742 -45.122.136.0/22 132742 -45.122.150.0/23 9829 -45.122.156.0/22 15695 -45.122.220.0/22 56150 -45.122.224.0/22 2516 -45.122.228.0/24 133403 -45.122.230.0/24 133403 -45.122.231.0/24 133324 -45.122.232.0/21 45903 -45.122.240.0/21 45903 -45.122.248.0/22 45903 -45.122.252.0/24 45903 -45.122.253.0/24 38732 -45.122.254.0/24 45903 -45.123.0.0/22 132556 -45.123.8.0/24 59162 -45.123.10.0/23 59162 -45.123.12.0/22 45804 -45.123.16.0/22 55836 -45.123.20.0/22 63888 -45.123.24.0/22 17483 -45.123.40.0/22 134382 -45.123.88.0/22 133398 -45.123.92.0/23 132137 -45.123.94.0/24 132137 -45.123.96.0/23 135920 -45.123.99.0/24 135920 -45.123.100.0/22 55720 -45.123.104.0/22 38835 -45.123.108.0/22 45775 -45.123.116.0/24 134094 -45.123.117.0/24 49544 -45.123.118.0/23 134094 -45.123.124.0/22 132850 -45.123.144.0/22 133296 -45.123.160.0/22 58765 -45.123.188.0/22 133398 -45.123.192.0/23 134401 -45.123.194.0/24 134401 -45.123.195.0/24 134700 -45.123.196.0/22 132742 -45.123.200.0/22 133613 -45.123.216.0/22 45804 -45.123.220.0/22 55915 -45.124.4.0/22 45775 -45.124.8.0/22 9381 -45.124.12.0/22 58912 -45.124.16.0/22 21650 -45.124.20.0/22 9394 -45.124.24.0/22 134196 -45.124.40.0/23 42382 -45.124.44.0/22 45093 -45.124.48.0/22 45194 -45.124.52.0/22 133159 -45.124.56.0/22 133334 -45.124.64.0/22 36351 -45.124.68.0/22 23650 -45.124.72.0/22 55720 -45.124.80.0/22 138950 -45.124.84.0/22 135905 -45.124.88.0/22 131410 -45.124.92.0/22 45899 -45.124.96.0/23 133668 -45.124.108.0/23 55705 -45.124.110.0/23 133324 -45.124.112.0/22 137443 -45.124.124.0/22 4812 -45.124.132.0/22 49544 -45.124.136.0/22 63997 -45.124.140.0/24 134009 -45.124.141.0/24 17665 -45.124.142.0/23 135846 -45.124.144.0/22 133255 -45.124.164.0/22 38803 -45.124.168.0/22 9441 -45.124.200.0/22 134067 -45.124.204.0/24 9311 -45.124.205.0/24 17408 -45.124.206.0/24 9311 -45.124.207.0/24 17408 -45.124.216.0/22 2516 -45.124.220.0/22 24295 -45.124.252.0/22 21859 -45.125.0.0/22 9312 -45.125.4.0/22 24000 -45.125.8.0/22 9304 -45.125.12.0/24 55933 -45.125.13.0/24 133731 -45.125.14.0/23 55933 -45.125.16.0/24 133731 -45.125.17.0/24 55933 -45.125.18.0/23 55933 -45.125.20.0/22 56308 -45.125.28.0/22 24000 -45.125.32.0/22 134196 -45.125.44.0/22 4837 -45.125.48.0/24 136933 -45.125.49.0/24 132325 -45.125.50.0/24 136933 -45.125.51.0/24 133199 -45.125.60.0/23 133275 -45.125.62.0/24 134872 -45.125.63.0/24 133275 -45.125.64.0/22 133398 -45.125.68.0/22 133713 -45.125.72.0/22 135448 -45.125.76.0/22 45110 -45.125.104.0/22 24000 -45.125.108.0/22 26658 -45.125.112.0/24 64047 -45.125.113.0/24 58779 -45.125.114.0/24 64047 -45.125.115.0/24 58779 -45.125.116.0/22 132556 -45.125.120.0/22 55581 -45.125.124.0/22 134441 -45.125.128.0/22 9287 -45.125.152.0/22 132220 -45.125.156.0/22 45469 -45.125.164.0/24 134835 -45.125.166.0/23 134835 -45.125.168.0/22 24183 -45.125.188.0/22 132827 -45.125.192.0/22 63930 -45.125.196.0/22 58436 -45.125.200.0/21 45896 -45.125.208.0/22 45896 -45.125.216.0/22 132721 -45.125.220.0/22 63526 -45.125.229.0/24 133880 -45.125.230.0/23 133880 -45.125.232.0/22 45974 -45.125.236.0/23 45538 -45.125.238.0/24 7643 -45.125.239.0/24 18403 -45.125.240.0/22 4686 -45.125.244.0/24 204287 -45.125.245.0/24 136557 -45.125.246.0/24 132335 -45.125.247.0/24 136557 -45.125.252.0/22 133296 -45.126.0.0/24 134544 -45.126.4.0/24 4646 -45.126.8.0/22 58659 -45.126.12.0/22 17819 -45.126.20.0/22 132540 -45.126.24.0/22 134139 -45.126.44.0/22 134141 -45.126.56.0/23 132647 -45.126.59.0/24 132647 -45.126.60.0/22 17617 -45.126.74.0/23 45905 -45.126.76.0/22 26658 -45.126.80.0/22 135478 -45.126.84.0/24 17408 -45.126.85.0/24 9311 -45.126.86.0/24 17408 -45.126.87.0/24 9311 -45.126.88.0/23 134553 -45.126.91.0/24 134553 -45.126.92.0/22 55313 -45.126.96.0/22 38247 -45.126.112.0/22 4847 -45.126.120.0/22 133774 -45.126.124.0/24 64022 -45.126.128.0/22 18400 -45.126.132.0/22 132644 -45.126.136.0/21 55303 -45.126.144.0/22 56209 -45.126.148.0/22 55303 -45.126.152.0/22 56241 -45.126.156.0/22 2516 -45.126.160.0/22 17747 -45.126.164.0/22 41690 -45.126.168.0/22 134014 -45.126.180.0/22 59371 -45.126.184.0/22 17451 -45.126.208.0/22 23470 -45.126.212.0/23 58985 -45.126.215.0/24 58985 -45.126.224.0/22 55303 -45.126.228.0/22 26658 -45.126.244.0/22 11179 -45.126.252.0/24 133000 -45.126.253.0/24 134134 -45.126.254.0/23 45117 -45.127.0.0/23 58451 -45.127.2.0/24 58451 -45.127.3.0/24 134548 -45.127.28.0/22 2516 -45.127.32.0/24 45477 -45.127.36.0/22 132839 -45.127.40.0/22 58640 -45.127.44.0/22 134674 -45.127.48.0/22 45766 -45.127.56.0/22 18229 -45.127.60.0/22 38794 -45.127.88.0/22 55352 -45.127.92.0/22 137522 -45.127.96.0/22 55933 -45.127.100.0/23 18229 -45.127.102.0/24 18229 -45.127.104.0/24 45194 -45.127.105.0/24 134937 -45.127.106.0/24 45194 -45.127.107.0/24 134937 -45.127.112.0/22 40138 -45.127.120.0/22 58678 -45.127.124.0/22 132839 -45.127.128.0/22 45062 -45.127.132.0/22 58477 -45.127.136.0/22 45235 -45.127.140.0/22 55303 -45.127.144.0/21 4847 -45.127.152.0/22 17726 -45.127.160.0/22 26658 -45.127.164.0/22 23944 -45.127.168.0/22 56094 -45.127.172.0/22 15412 -45.127.176.0/22 24000 -45.127.180.0/22 55478 -45.127.185.0/24 134687 -45.127.186.0/23 134687 -45.127.188.0/22 17771 -45.127.192.0/22 133272 -45.127.200.0/22 24554 -45.127.204.0/22 55699 -45.127.216.0/22 31972 -45.127.220.0/22 45433 -45.127.224.0/22 59163 -45.127.232.0/22 135772 -45.127.244.0/22 55492 -45.127.248.0/22 134180 -45.127.252.0/22 38244 -45.128.0.0/22 201290 -45.128.4.0/22 43202 -45.128.8.0/22 208569 -45.128.20.0/22 203950 -45.128.24.0/24 60781 -45.128.25.0/24 397796 -45.128.26.0/24 46723 -45.128.27.0/24 397796 -45.128.28.0/22 54600 -45.128.32.0/22 42946 -45.128.36.0/22 197328 -45.128.44.0/22 203061 -45.128.48.0/20 35913 -45.128.64.0/22 34373 -45.128.68.0/22 39201 -45.128.72.0/22 35913 -45.128.76.0/24 60781 -45.128.78.0/23 397796 -45.128.84.0/23 14052 -45.128.88.0/22 208319 -45.128.92.0/22 202741 -45.128.100.0/22 12571 -45.128.104.0/22 49981 -45.128.108.0/22 43073 -45.128.112.0/24 208363 -45.128.116.0/22 51177 -45.128.120.0/22 208570 -45.128.124.0/22 62415 -45.128.128.0/24 34665 -45.128.129.0/24 49505 -45.128.130.0/23 12722 -45.128.132.0/22 206804 -45.128.136.0/22 394648 -45.128.140.0/22 44285 -45.128.144.0/24 21859 -45.128.145.0/24 62468 -45.128.146.0/23 6134 -45.128.148.0/24 15626 -45.128.149.0/24 204957 -45.128.150.0/24 21100 -45.128.151.0/24 50979 -45.128.152.0/22 9009 -45.128.156.0/24 8100 -45.128.157.0/24 23470 -45.128.158.0/24 63023 -45.128.159.0/24 8100 -45.128.168.0/24 58197 -45.128.176.0/22 207967 -45.128.180.0/22 12897 -45.128.184.0/22 202423 -45.128.188.0/22 43633 -45.128.200.0/23 60609 -45.128.202.0/24 29119 -45.128.204.0/24 197695 -45.128.205.0/24 60330 -45.128.206.0/24 197695 -45.128.207.0/24 57724 -45.128.208.0/22 55933 -45.128.212.0/22 208564 -45.128.216.0/23 208566 -45.128.219.0/24 6681 -45.128.220.0/23 55933 -45.128.222.0/24 55933 -45.128.223.0/24 42831 -45.128.224.0/22 49558 -45.128.228.0/22 206766 -45.128.232.0/22 7018 -45.128.236.0/22 207614 -45.128.244.0/22 60781 -45.129.0.0/24 56630 -45.129.1.0/24 34665 -45.129.2.0/23 51659 -45.129.4.0/22 62415 -45.129.8.0/22 55933 -45.129.12.0/22 35478 -45.129.16.0/22 208417 -45.129.20.0/22 200738 -45.129.28.0/22 26484 -45.129.32.0/24 209854 -45.129.34.0/23 35913 -45.129.36.0/24 208555 -45.129.38.0/23 208555 -45.129.40.0/21 9009 -45.129.53.0/24 16509 -45.129.54.0/23 16509 -45.129.60.0/22 39371 -45.129.64.0/22 31244 -45.129.68.0/24 47377 -45.129.72.0/23 208557 -45.129.76.0/23 9009 -45.129.78.0/24 9009 -45.129.79.0/24 49505 -45.129.84.0/22 43659 -45.129.88.0/22 262287 -45.129.94.0/24 49752 -45.129.95.0/24 207888 -45.129.96.0/24 208440 -45.129.98.0/23 201094 -45.129.100.0/22 208522 -45.129.107.0/24 208259 -45.129.120.0/22 206119 -45.129.124.0/24 60781 -45.129.125.0/24 398083 -45.129.126.0/23 397796 -45.129.128.0/23 57129 -45.129.130.0/23 9009 -45.129.132.0/22 9009 -45.129.138.0/23 48847 -45.129.140.0/22 134121 -45.129.148.0/22 10753 -45.129.160.0/22 42550 -45.129.164.0/23 209858 -45.129.166.0/23 208533 -45.129.168.0/23 39294 -45.129.170.0/24 34897 -45.129.171.0/24 206766 -45.129.172.0/22 205185 -45.129.176.0/22 58073 -45.129.184.0/23 35029 -45.129.187.0/24 397978 -45.129.196.0/23 49392 -45.129.198.0/23 49505 -45.129.200.0/22 208544 -45.129.204.0/22 62415 -45.129.208.0/23 54247 -45.129.212.0/22 208551 -45.129.216.0/22 57809 -45.129.220.0/22 9009 -45.129.228.0/24 135134 -45.129.229.0/24 38001 -45.129.236.0/24 57271 -45.129.237.0/24 56740 -45.129.238.0/23 49569 -45.129.240.0/22 30962 -45.129.248.0/22 57558 -45.129.252.0/23 47275 -45.130.0.0/22 6876 -45.130.8.0/22 204490 -45.130.12.0/24 15830 -45.130.13.0/24 47952 -45.130.16.0/22 200908 -45.130.20.0/22 21859 -45.130.24.0/22 49619 -45.130.28.0/22 200999 -45.130.32.0/24 35758 -45.130.33.0/24 9009 -45.130.34.0/23 9009 -45.130.40.0/22 198610 -45.130.44.0/22 3320 -45.130.48.0/22 208199 -45.130.56.0/22 43915 -45.130.60.0/22 60781 -45.130.64.0/22 9009 -45.130.68.0/22 42993 -45.130.72.0/23 52423 -45.130.75.0/24 21859 -45.130.76.0/22 208485 -45.130.84.0/23 1299 -45.130.88.0/22 208532 -45.130.92.0/22 8893 -45.130.96.0/22 57704 -45.130.100.0/22 18013 -45.130.104.0/22 40676 -45.130.108.0/22 208920 -45.130.112.0/22 203061 -45.130.116.0/22 9009 -45.130.120.0/22 15701 -45.130.124.0/23 60781 -45.130.128.0/22 60781 -45.130.136.0/24 9009 -45.130.137.0/24 45671 -45.130.138.0/24 45671 -45.130.139.0/24 38001 -45.130.144.0/24 49505 -45.130.145.0/24 49392 -45.130.146.0/23 49392 -45.130.148.0/22 62415 -45.130.152.0/24 64271 -45.130.160.0/22 203704 -45.130.168.0/22 44676 -45.130.172.0/24 58314 -45.130.176.0/22 9009 -45.130.180.0/22 21859 -45.130.184.0/22 33657 -45.130.192.0/23 12731 -45.130.196.0/22 51942 -45.130.200.0/22 51942 -45.130.204.0/22 201814 -45.130.208.0/22 34903 -45.130.212.0/23 57129 -45.130.214.0/23 9009 -45.130.220.0/22 204145 -45.130.224.0/22 201341 -45.130.248.0/22 207187 -45.130.252.0/23 35913 -45.130.254.0/24 35913 -45.130.255.0/24 60781 -45.131.0.0/22 209737 -45.131.4.0/22 49981 -45.131.12.0/22 29405 -45.131.16.0/22 43350 -45.131.20.0/23 208403 -45.131.22.0/24 208403 -45.131.24.0/24 24000 -45.131.25.0/24 132422 -45.131.26.0/23 24000 -45.131.28.0/22 50564 -45.131.36.0/22 12897 -45.131.40.0/22 59504 -45.131.44.0/24 49505 -45.131.45.0/24 203156 -45.131.46.0/24 210240 -45.131.47.0/24 49505 -45.131.48.0/22 62415 -45.131.52.0/22 198192 -45.131.56.0/22 208529 -45.131.60.0/22 25668 -45.131.64.0/22 47987 -45.131.68.0/22 57578 -45.131.72.0/22 209196 -45.131.76.0/22 3320 -45.131.80.0/22 60458 -45.131.88.0/24 39389 -45.131.92.0/22 34549 -45.131.96.0/24 58024 -45.131.100.0/22 34549 -45.131.104.0/23 48955 -45.131.106.0/23 39877 -45.131.108.0/24 205388 -45.131.109.0/24 398127 -45.131.110.0/24 398127 -45.131.111.0/24 46573 -45.131.116.0/22 203744 -45.131.120.0/22 5669 -45.131.124.0/24 208526 -45.131.125.0/24 49800 -45.131.126.0/23 49800 -45.131.132.0/22 197518 -45.131.144.0/22 59447 -45.131.148.0/22 47169 -45.131.152.0/23 133752 -45.131.154.0/24 133752 -45.131.155.0/24 4785 -45.131.156.0/22 132839 -45.131.160.0/23 57129 -45.131.162.0/24 9009 -45.131.164.0/22 35004 -45.131.168.0/22 43260 -45.131.172.0/22 203534 -45.131.176.0/24 21859 -45.131.177.0/24 62468 -45.131.178.0/24 136933 -45.131.179.0/24 6134 -45.131.180.0/22 3320 -45.131.184.0/23 26484 -45.131.186.0/23 137443 -45.131.188.0/22 34244 -45.131.192.0/22 3320 -45.131.196.0/22 43260 -45.131.200.0/22 39647 -45.131.204.0/22 203222 -45.131.208.0/22 49981 -45.131.212.0/23 60781 -45.131.215.0/24 60781 -45.131.224.0/22 200019 -45.131.228.0/22 35913 -45.131.240.0/22 208501 -45.131.248.0/22 35913 -45.132.0.0/22 35592 -45.132.4.0/22 59447 -45.132.8.0/23 208364 -45.132.11.0/24 208364 -45.132.12.0/24 136933 -45.132.14.0/24 24000 -45.132.15.0/24 20473 -45.132.16.0/24 57724 -45.132.17.0/24 9002 -45.132.18.0/23 48347 -45.132.20.0/22 35751 -45.132.24.0/24 58040 -45.132.25.0/24 61317 -45.132.26.0/23 61317 -45.132.28.0/24 208500 -45.132.36.0/23 57129 -45.132.38.0/23 49505 -45.132.40.0/22 3320 -45.132.48.0/22 49392 -45.132.56.0/22 269866 -45.132.68.0/22 208512 -45.132.72.0/23 63473 -45.132.76.0/22 60781 -45.132.80.0/22 9009 -45.132.84.0/24 60757 -45.132.85.0/24 35794 -45.132.86.0/23 208448 -45.132.88.0/22 44066 -45.132.92.0/22 39862 -45.132.100.0/22 42864 -45.132.104.0/22 204601 -45.132.108.0/22 21267 -45.132.112.0/22 3320 -45.132.120.0/22 398083 -45.132.124.0/22 200303 -45.132.128.0/23 49505 -45.132.130.0/23 9009 -45.132.132.0/22 208495 -45.132.136.0/22 49981 -45.132.140.0/24 49981 -45.132.141.0/24 60068 -45.132.142.0/23 60068 -45.132.148.0/23 57093 -45.132.151.0/24 201119 -45.132.152.0/22 57866 -45.132.168.0/22 49103 -45.132.172.0/22 49847 -45.132.176.0/23 57129 -45.132.178.0/23 9009 -45.132.180.0/22 34549 -45.132.184.0/24 62282 -45.132.185.0/24 46844 -45.132.186.0/24 8100 -45.132.187.0/24 46844 -45.132.188.0/23 58360 -45.132.190.0/24 58360 -45.132.192.0/24 208673 -45.132.193.0/24 60068 -45.132.194.0/24 61272 -45.132.196.0/22 29256 -45.132.200.0/22 25274 -45.132.204.0/24 57530 -45.132.205.0/24 47691 -45.132.206.0/24 59731 -45.132.207.0/24 51167 -45.132.208.0/22 51569 -45.132.220.0/23 208499 -45.132.232.0/22 208478 -45.132.236.0/24 21859 -45.132.237.0/24 62468 -45.132.238.0/23 6134 -45.132.248.0/22 44407 -45.132.252.0/22 207967 -45.133.0.0/22 35913 -45.133.8.0/22 31400 -45.133.16.0/22 9123 -45.133.20.0/22 208402 -45.133.28.0/23 31198 -45.133.30.0/24 31198 -45.133.31.0/24 49505 -45.133.32.0/22 35751 -45.133.36.0/22 51559 -45.133.40.0/22 203061 -45.133.44.0/22 59447 -45.133.56.0/22 43260 -45.133.60.0/22 202147 -45.133.64.0/22 54600 -45.133.68.0/22 57809 -45.133.72.0/24 19844 -45.133.73.0/24 202322 -45.133.74.0/23 202322 -45.133.76.0/22 134548 -45.133.84.0/22 54600 -45.133.88.0/23 49981 -45.133.90.0/24 60068 -45.133.91.0/24 49981 -45.133.92.0/22 50302 -45.133.96.0/24 41111 -45.133.98.0/24 210135 -45.133.100.0/24 35489 -45.133.104.0/22 49800 -45.133.108.0/22 15395 -45.133.112.0/22 33657 -45.133.116.0/24 9009 -45.133.118.0/24 57695 -45.133.119.0/24 22769 -45.133.136.0/24 59934 -45.133.138.0/23 39877 -45.133.148.0/22 134121 -45.133.152.0/24 20668 -45.133.153.0/24 41270 -45.133.154.0/23 39877 -45.133.156.0/23 197071 -45.133.158.0/23 39083 -45.133.160.0/22 208055 -45.133.164.0/22 33916 -45.133.168.0/21 61317 -45.133.177.0/24 61317 -45.133.180.0/22 9009 -45.133.184.0/22 208490 -45.133.192.0/22 395092 -45.133.196.0/22 20559 -45.133.200.0/22 200313 -45.133.204.0/22 174 -45.133.208.0/22 60781 -45.133.212.0/23 49367 -45.133.214.0/24 49367 -45.133.215.0/24 31863 -45.133.220.0/22 29066 -45.133.224.0/22 35751 -45.133.228.0/22 137443 -45.133.232.0/22 203156 -45.133.236.0/24 21859 -45.133.237.0/24 62468 -45.133.238.0/23 6134 -45.133.240.0/22 57610 -45.133.244.0/22 55933 -45.133.248.0/22 7018 -45.134.0.0/23 132422 -45.134.2.0/24 31863 -45.134.3.0/24 32181 -45.134.4.0/22 31931 -45.134.8.0/22 208480 -45.134.12.0/24 58073 -45.134.13.0/24 12679 -45.134.14.0/23 12679 -45.134.16.0/22 9009 -45.134.24.0/23 49505 -45.134.26.0/24 56630 -45.134.27.0/24 203004 -45.134.28.0/22 34665 -45.134.36.0/24 46573 -45.134.37.0/24 40676 -45.134.38.0/23 40676 -45.134.44.0/22 28854 -45.134.48.0/24 47232 -45.134.49.0/24 35478 -45.134.50.0/23 35478 -45.134.52.0/22 62415 -45.134.56.0/22 48514 -45.134.60.0/22 203714 -45.134.68.0/22 204287 -45.134.72.0/22 34549 -45.134.76.0/22 200019 -45.134.80.0/24 21859 -45.134.81.0/24 62468 -45.134.82.0/23 6134 -45.134.84.0/22 200908 -45.134.88.0/23 34927 -45.134.90.0/24 209022 -45.134.92.0/22 29405 -45.134.96.0/22 15404 -45.134.104.0/22 197706 -45.134.108.0/22 202322 -45.134.112.0/22 203020 -45.134.116.0/22 201341 -45.134.120.0/22 205199 -45.134.140.0/22 197328 -45.134.144.0/22 40676 -45.134.148.0/22 9009 -45.134.152.0/22 201466 -45.134.156.0/22 209372 -45.134.160.0/22 50939 -45.134.164.0/23 39537 -45.134.166.0/24 43059 -45.134.168.0/22 55933 -45.134.172.0/22 397796 -45.134.178.0/24 63023 -45.134.179.0/24 43350 -45.134.180.0/22 208475 -45.134.184.0/24 60781 -45.134.187.0/24 60781 -45.134.188.0/22 204287 -45.134.200.0/22 208473 -45.134.208.0/22 31169 -45.134.212.0/22 197328 -45.134.216.0/22 50025 -45.134.236.0/22 25274 -45.134.244.0/22 47373 -45.134.248.0/22 262287 -45.134.252.0/22 204941 -45.135.0.0/24 208467 -45.135.8.0/22 262287 -45.135.12.0/22 49505 -45.135.16.0/22 50495 -45.135.24.0/22 50316 -45.135.28.0/22 35751 -45.135.32.0/22 204941 -45.135.36.0/24 60781 -45.135.39.0/24 60781 -45.135.40.0/22 4785 -45.135.44.0/24 133744 -45.135.45.0/24 133115 -45.135.47.0/24 133115 -45.135.48.0/23 136782 -45.135.50.0/23 43092 -45.135.56.0/22 49033 -45.135.60.0/22 208470 -45.135.64.0/22 209528 -45.135.68.0/22 49088 -45.135.72.0/22 197653 -45.135.80.0/22 34139 -45.135.88.0/22 207865 -45.135.100.0/22 54600 -45.135.104.0/24 207580 -45.135.105.0/24 42034 -45.135.108.0/22 208463 -45.135.116.0/24 21859 -45.135.117.0/24 62468 -45.135.118.0/23 6134 -45.135.120.0/22 56630 -45.135.124.0/22 205614 -45.135.128.0/22 62415 -45.135.136.0/22 9009 -45.135.148.0/24 30475 -45.135.149.0/24 174 -45.135.150.0/24 40676 -45.135.151.0/24 208751 -45.135.156.0/22 59767 -45.135.160.0/22 201814 -45.135.164.0/24 48347 -45.135.176.0/22 204941 -45.135.180.0/22 204860 -45.135.184.0/23 13213 -45.135.186.0/24 133752 -45.135.187.0/24 206092 -45.135.188.0/23 42857 -45.135.190.0/24 42473 -45.135.192.0/22 44592 -45.135.196.0/22 202375 -45.135.200.0/22 44486 -45.135.204.0/24 206375 -45.135.206.0/23 206375 -45.135.208.0/23 208390 -45.135.210.0/24 202120 -45.135.211.0/24 208390 -45.135.216.0/22 51310 -45.135.220.0/22 54600 -45.135.224.0/23 39877 -45.135.226.0/23 20668 -45.135.228.0/24 202422 -45.135.229.0/24 199524 -45.135.232.0/22 204941 -45.135.236.0/22 51765 -45.135.244.0/22 262287 -45.135.248.0/22 197155 -45.136.3.0/24 35029 -45.136.5.0/24 209737 -45.136.6.0/23 209737 -45.136.12.0/22 139659 -45.136.20.0/22 47764 -45.136.24.0/24 1239 -45.136.25.0/24 397881 -45.136.26.0/24 397881 -45.136.27.0/24 1239 -45.136.32.0/22 199770 -45.136.36.0/22 62113 -45.136.44.0/22 208770 -45.136.52.0/22 57743 -45.136.56.0/22 208450 -45.136.60.0/22 201814 -45.136.64.0/24 205406 -45.136.65.0/24 62563 -45.136.66.0/24 210013 -45.136.67.0/24 205406 -45.136.68.0/24 34665 -45.136.69.0/24 51167 -45.136.70.0/23 40015 -45.136.84.0/22 204601 -45.136.92.0/22 61205 -45.136.96.0/22 42263 -45.136.100.0/22 207967 -45.136.104.0/22 60721 -45.136.108.0/24 38994 -45.136.109.0/24 49505 -45.136.110.0/23 49505 -45.136.112.0/21 18978 -45.136.124.0/22 18978 -45.136.128.0/22 18978 -45.136.132.0/23 61241 -45.136.134.0/23 51876 -45.136.136.0/22 58057 -45.136.140.0/22 262287 -45.136.144.0/24 35608 -45.136.145.0/24 49394 -45.136.146.0/24 207762 -45.136.148.0/22 18978 -45.136.152.0/22 59447 -45.136.156.0/22 205199 -45.136.160.0/23 29108 -45.136.162.0/24 29108 -45.136.163.0/24 39063 -45.136.164.0/22 208439 -45.136.168.0/22 12897 -45.136.172.0/24 60781 -45.136.173.0/24 397796 -45.136.174.0/23 207907 -45.136.176.0/22 21859 -45.136.180.0/22 134121 -45.136.184.0/22 21859 -45.136.188.0/23 208443 -45.136.192.0/22 204581 -45.136.204.0/22 62415 -45.136.216.0/22 9009 -45.136.220.0/24 208431 -45.136.228.0/24 60781 -45.136.229.0/24 397796 -45.136.230.0/24 397796 -45.136.231.0/24 60781 -45.136.232.0/22 35913 -45.136.236.0/22 262287 -45.136.240.0/24 14618 -45.136.241.0/24 16509 -45.136.242.0/24 16509 -45.136.244.0/23 51659 -45.136.248.0/24 51167 -45.136.250.0/23 40015 -45.136.252.0/22 51942 -45.137.0.0/22 48336 -45.137.8.0/24 21859 -45.137.9.0/24 62468 -45.137.10.0/23 6134 -45.137.12.0/22 50129 -45.137.20.0/23 51447 -45.137.22.0/24 51447 -45.137.24.0/22 208436 -45.137.28.0/22 61317 -45.137.36.0/22 205072 -45.137.40.0/24 60781 -45.137.43.0/24 60781 -45.137.44.0/22 206576 -45.137.48.0/22 42228 -45.137.52.0/24 34665 -45.137.53.0/24 200081 -45.137.55.0/24 34665 -45.137.60.0/24 60781 -45.137.61.0/24 397796 -45.137.63.0/24 60781 -45.137.64.0/22 204601 -45.137.72.0/22 205981 -45.137.76.0/22 204287 -45.137.80.0/24 60781 -45.137.84.0/24 60781 -45.137.85.0/24 397796 -45.137.86.0/23 397796 -45.137.88.0/22 51942 -45.137.92.0/22 61967 -45.137.96.0/22 43260 -45.137.100.0/22 51942 -45.137.104.0/22 207967 -45.137.112.0/23 205638 -45.137.116.0/22 61317 -45.137.124.0/22 61317 -45.137.128.0/22 204860 -45.137.132.0/22 61317 -45.137.136.0/23 200845 -45.137.138.0/24 207136 -45.137.139.0/24 50129 -45.137.140.0/22 201341 -45.137.148.0/22 202448 -45.137.152.0/23 42632 -45.137.154.0/24 49392 -45.137.155.0/24 25229 -45.137.156.0/23 61317 -45.137.158.0/23 42831 -45.137.160.0/22 200908 -45.137.164.0/22 208429 -45.137.172.0/22 9009 -45.137.180.0/22 40676 -45.137.184.0/22 59760 -45.137.188.0/24 34665 -45.137.189.0/24 57271 -45.137.190.0/24 57271 -45.137.191.0/24 34665 -45.137.196.0/24 49981 -45.137.197.0/24 60068 -45.137.198.0/23 49981 -45.137.200.0/22 202322 -45.137.204.0/22 51942 -45.137.216.0/24 35029 -45.137.217.0/24 41378 -45.137.218.0/24 41378 -45.137.219.0/24 20473 -45.137.224.0/22 50606 -45.137.228.0/22 202966 -45.137.232.0/23 210129 -45.137.236.0/22 208420 -45.137.252.0/22 208411 -45.138.0.0/24 205406 -45.138.1.0/24 63023 -45.138.3.0/24 205406 -45.138.4.0/22 207967 -45.138.8.0/22 208408 -45.138.12.0/22 43260 -45.138.16.0/22 51942 -45.138.20.0/22 208419 -45.138.28.0/22 47987 -45.138.36.0/22 60144 -45.138.40.0/22 62336 -45.138.44.0/22 207640 -45.138.52.0/22 51942 -45.138.56.0/22 20810 -45.138.64.0/22 35261 -45.138.68.0/23 40065 -45.138.70.0/24 40065 -45.138.71.0/24 40676 -45.138.72.0/24 16262 -45.138.73.0/24 50214 -45.138.74.0/24 202306 -45.138.75.0/24 208279 -45.138.76.0/22 9009 -45.138.80.0/22 137443 -45.138.84.0/22 395092 -45.138.88.0/22 25274 -45.138.92.0/22 203020 -45.138.96.0/22 9009 -45.138.100.0/24 62282 -45.138.101.0/24 46844 -45.138.102.0/24 35913 -45.138.103.0/24 46844 -45.138.108.0/24 54600 -45.138.109.0/24 209280 -45.138.110.0/24 205388 -45.138.111.0/24 209280 -45.138.112.0/22 44407 -45.138.124.0/22 197328 -45.138.132.0/22 59441 -45.138.136.0/22 29405 -45.138.140.0/22 205199 -45.138.144.0/24 49505 -45.138.145.0/24 51167 -45.138.146.0/24 49569 -45.138.147.0/24 49505 -45.138.148.0/22 204805 -45.138.152.0/22 50411 -45.138.156.0/24 34665 -45.138.157.0/24 62088 -45.138.158.0/24 202933 -45.138.159.0/24 34665 -45.138.160.0/22 134121 -45.138.164.0/23 29075 -45.138.168.0/23 49432 -45.138.170.0/24 49432 -45.138.171.0/24 47251 -45.138.172.0/22 30823 -45.138.180.0/22 34549 -45.138.188.0/22 57505 -45.138.196.0/23 49367 -45.138.198.0/23 31863 -45.138.200.0/24 60798 -45.138.204.0/22 203061 -45.138.208.0/24 55720 -45.138.209.0/24 3786 -45.138.212.0/22 204941 -45.138.216.0/23 39146 -45.138.224.0/22 203020 -45.138.228.0/24 15562 -45.138.229.0/24 35913 -45.138.230.0/23 35913 -45.138.232.0/22 134121 -45.138.240.0/22 201341 -45.139.0.0/22 9009 -45.139.8.0/22 47285 -45.139.20.0/24 208382 -45.139.24.0/22 47203 -45.139.28.0/23 34665 -45.139.30.0/24 61317 -45.139.31.0/24 34665 -45.139.32.0/22 9009 -45.139.48.0/23 49981 -45.139.50.0/24 49981 -45.139.51.0/24 60068 -45.139.52.0/23 49505 -45.139.54.0/24 395092 -45.139.55.0/24 49505 -45.139.56.0/22 57844 -45.139.60.0/22 48055 -45.139.64.0/22 57844 -45.139.68.0/23 20668 -45.139.70.0/23 39877 -45.139.84.0/22 60781 -45.139.88.0/22 197296 -45.139.92.0/22 44061 -45.139.100.0/22 7018 -45.139.104.0/22 7018 -45.139.108.0/22 35751 -45.139.112.0/22 44066 -45.139.116.0/22 203061 -45.139.120.0/22 7018 -45.139.124.0/24 3216 -45.139.125.0/24 49505 -45.139.126.0/23 49505 -45.139.132.0/22 208415 -45.139.148.0/22 50458 -45.139.156.0/24 62563 -45.139.158.0/24 63023 -45.139.159.0/24 210013 -45.139.160.0/21 51942 -45.139.168.0/22 49392 -45.139.172.0/22 51942 -45.139.176.0/22 204941 -45.139.180.0/22 61317 -45.139.184.0/22 59504 -45.139.188.0/22 45650 -45.139.200.0/23 60721 -45.139.202.0/24 60721 -45.139.208.0/22 9009 -45.139.212.0/22 6799 -45.139.216.0/22 200864 -45.139.220.0/24 51559 -45.139.221.0/24 61135 -45.139.222.0/24 61135 -45.139.223.0/24 60721 -45.139.224.0/24 202297 -45.139.225.0/24 34539 -45.139.226.0/23 6233 -45.139.228.0/22 9009 -45.139.232.0/22 47602 -45.139.236.0/23 202984 -45.139.239.0/24 202984 -45.139.252.0/22 51942 -45.140.0.0/22 25369 -45.140.8.0/24 174 -45.140.9.0/24 210013 -45.140.10.0/24 35913 -45.140.11.0/24 174 -45.140.12.0/24 35913 -45.140.13.0/24 60781 -45.140.16.0/22 49392 -45.140.24.0/22 56361 -45.140.40.0/22 200918 -45.140.52.0/22 35048 -45.140.56.0/22 6233 -45.140.60.0/22 49505 -45.140.64.0/23 49505 -45.140.66.0/23 62240 -45.140.68.0/22 262287 -45.140.72.0/22 49505 -45.140.80.0/22 51522 -45.140.84.0/22 199947 -45.140.88.0/24 21859 -45.140.89.0/24 62468 -45.140.90.0/23 6134 -45.140.92.0/22 8749 -45.140.96.0/22 47556 -45.140.104.0/22 35478 -45.140.108.0/22 269800 -45.140.120.0/22 6876 -45.140.128.0/22 199610 -45.140.132.0/22 51942 -45.140.136.0/22 31463 -45.140.140.0/22 51942 -45.140.145.0/24 3214 -45.140.147.0/24 3214 -45.140.152.0/22 16509 -45.140.156.0/22 41960 -45.140.160.0/22 205341 -45.140.164.0/22 61317 -45.140.168.0/23 51659 -45.140.170.0/24 49392 -45.140.171.0/24 34665 -45.140.173.0/24 49505 -45.140.174.0/24 395092 -45.140.175.0/24 49505 -45.140.176.0/22 50673 -45.140.188.0/22 51942 -45.140.192.0/22 208386 -45.140.196.0/22 208808 -45.140.200.0/22 201341 -45.140.204.0/23 8100 -45.140.206.0/23 206485 -45.140.208.0/22 62075 -45.140.212.0/22 51942 -45.140.216.0/22 7155 -45.140.220.0/23 8100 -45.140.222.0/23 51942 -45.140.224.0/21 44285 -45.140.232.0/22 25274 -45.140.236.0/22 41108 -45.140.248.0/22 60781 -45.140.252.0/22 31463 -45.141.1.0/24 197064 -45.141.2.0/23 47544 -45.141.4.0/22 29119 -45.141.8.0/22 56630 -45.141.16.0/22 34562 -45.141.24.0/22 51942 -45.141.28.0/22 8283 -45.141.36.0/22 44592 -45.141.40.0/22 208296 -45.141.44.0/22 21859 -45.141.48.0/22 9009 -45.141.52.0/24 208393 -45.141.53.0/24 59741 -45.141.54.0/24 59741 -45.141.55.0/24 208094 -45.141.56.0/23 30823 -45.141.60.0/24 8100 -45.141.61.0/24 62563 -45.141.62.0/24 210013 -45.141.63.0/24 62563 -45.141.64.0/22 29119 -45.141.68.0/22 137443 -45.141.72.0/22 9009 -45.141.76.0/22 198610 -45.141.80.0/22 31480 -45.141.84.0/24 206728 -45.141.85.0/24 206485 -45.141.86.0/24 206728 -45.141.87.0/24 56971 -45.141.92.0/22 207967 -45.141.100.0/22 48347 -45.141.104.0/22 57866 -45.141.108.0/22 197595 -45.141.120.0/22 35913 -45.141.124.0/24 174 -45.141.125.0/24 208258 -45.141.126.0/24 395800 -45.141.127.0/24 174 -45.141.128.0/22 33657 -45.141.140.0/22 201341 -45.141.144.0/24 57878 -45.141.145.0/24 21859 -45.141.146.0/23 21859 -45.141.148.0/22 209737 -45.141.152.0/22 9009 -45.141.156.0/24 30860 -45.141.157.0/24 209696 -45.141.158.0/24 34224 -45.141.164.0/22 201902 -45.141.168.0/22 209411 -45.141.176.0/24 60781 -45.141.180.0/22 29083 -45.141.184.0/22 57129 -45.141.192.0/22 201746 -45.141.196.0/24 201971 -45.141.198.0/23 12722 -45.141.200.0/22 51942 -45.141.205.0/24 174 -45.141.208.0/22 44676 -45.141.212.0/22 51942 -45.141.220.0/22 201341 -45.141.228.0/23 208376 -45.141.230.0/24 208376 -45.141.231.0/24 31638 -45.141.236.0/22 51942 -45.141.240.0/22 209235 -45.141.244.0/23 21859 -45.141.246.0/24 30707 -45.141.247.0/24 50673 -45.141.252.0/22 209235 -45.142.0.0/22 200313 -45.142.4.0/22 51942 -45.142.12.0/22 208375 -45.142.16.0/22 51942 -45.142.24.0/22 197706 -45.142.28.0/24 60781 -45.142.29.0/24 46723 -45.142.30.0/23 397796 -45.142.32.0/22 196678 -45.142.36.0/23 49392 -45.142.38.0/23 209249 -45.142.40.0/22 50129 -45.142.44.0/22 207967 -45.142.52.0/22 9009 -45.142.56.0/22 208372 -45.142.60.0/24 209484 -45.142.61.0/24 24000 -45.142.62.0/24 24000 -45.142.63.0/24 21859 -45.142.68.0/22 206366 -45.142.72.0/22 204941 -45.142.76.0/22 132839 -45.142.84.0/24 43004 -45.142.88.0/22 34605 -45.142.92.0/22 134121 -45.142.96.0/22 134121 -45.142.104.0/23 46573 -45.142.106.0/24 49981 -45.142.107.0/24 46573 -45.142.108.0/22 57809 -45.142.112.0/22 44066 -45.142.116.0/22 60781 -45.142.120.0/22 207967 -45.142.124.0/22 137443 -45.142.128.0/22 15830 -45.142.133.0/24 203540 -45.142.136.0/23 56902 -45.142.140.0/22 37560 -45.142.144.0/22 51942 -45.142.152.0/24 133115 -45.142.153.0/24 136038 -45.142.156.0/23 201106 -45.142.160.0/22 208348 -45.142.165.0/24 4785 -45.142.166.0/23 4785 -45.142.168.0/22 205051 -45.142.180.0/22 44592 -45.142.184.0/22 31263 -45.142.188.0/22 202391 -45.142.192.0/23 35478 -45.142.194.0/24 35478 -45.142.196.0/22 49792 -45.142.204.0/22 51942 -45.142.208.0/24 59504 -45.142.209.0/24 208861 -45.142.210.0/23 208861 -45.142.212.0/24 200019 -45.142.213.0/24 202933 -45.142.214.0/24 200019 -45.142.215.0/24 202933 -45.142.216.0/22 45027 -45.142.228.0/22 200908 -45.142.232.0/22 51942 -45.142.240.0/22 208315 -45.142.245.0/24 137940 -45.142.247.0/24 57695 -45.142.248.0/22 397735 -45.142.252.0/22 204941 -45.143.4.0/22 204941 -45.143.8.0/22 43260 -45.143.16.0/22 204053 -45.143.20.0/22 56340 -45.143.24.0/22 12577 -45.143.29.0/24 208341 -45.143.31.0/24 208341 -45.143.33.0/24 35171 -45.143.34.0/24 35171 -45.143.36.0/22 209702 -45.143.44.0/22 39690 -45.143.48.0/22 25133 -45.143.68.0/22 47602 -45.143.72.0/22 199980 -45.143.76.0/22 12897 -45.143.84.0/22 201193 -45.143.92.0/24 9002 -45.143.93.0/24 48347 -45.143.94.0/23 9002 -45.143.96.0/24 208485 -45.143.97.0/24 51559 -45.143.98.0/24 51559 -45.143.99.0/24 208485 -45.143.104.0/22 24768 -45.143.112.0/22 43915 -45.143.120.0/22 21339 -45.143.136.0/22 47196 -45.143.140.0/22 204941 -45.143.144.0/24 57695 -45.143.145.0/24 23470 -45.143.148.0/22 60458 -45.143.164.0/23 19969 -45.143.166.0/23 43182 -45.143.172.0/22 24768 -45.143.180.0/22 56376 -45.143.184.0/22 197540 -45.143.188.0/23 204348 -45.143.190.0/24 34984 -45.143.191.0/24 15924 -45.143.196.0/24 50673 -45.143.200.0/24 202729 -45.143.204.0/22 208339 -45.143.212.0/22 201155 -45.143.220.0/23 209299 -45.143.222.0/23 208346 -45.143.238.0/23 20688 -45.143.244.0/22 49392 -45.144.0.0/24 51167 -45.144.1.0/24 34667 -45.144.2.0/23 51659 -45.144.4.0/23 208338 -45.144.6.0/23 208283 -45.144.8.0/22 1213 -45.144.16.0/22 41152 -45.144.24.0/22 9009 -45.144.28.0/22 42993 -45.144.32.0/22 208343 -45.144.36.0/22 204941 -45.144.40.0/22 43060 -45.144.56.0/22 35913 -45.144.60.0/24 203201 -45.144.64.0/22 50113 -45.144.68.0/22 21859 -45.144.76.0/22 210150 -45.144.80.0/23 136787 -45.144.84.0/22 39560 -45.144.88.0/22 262287 -45.144.108.0/22 59447 -45.144.116.0/22 205199 -45.144.124.0/22 44285 -45.144.128.0/22 35913 -45.144.136.0/23 139659 -45.144.139.0/24 133199 -45.144.152.0/22 7018 -45.144.156.0/22 51942 -45.144.160.0/22 35913 -45.144.164.0/22 51942 -45.144.168.0/22 35751 -45.144.175.0/24 20473 -45.144.176.0/22 49392 -45.144.180.0/22 44205 -45.144.184.0/22 15817 -45.144.188.0/22 51942 -45.144.192.0/22 47169 -45.144.204.0/22 60134 -45.144.212.0/22 34549 -45.144.216.0/22 397796 -45.144.220.0/22 207154 -45.144.224.0/22 35913 -45.144.228.0/22 200908 -45.144.232.0/22 61317 -45.144.236.0/24 205406 -45.144.240.0/22 9009 -45.144.244.0/22 208258 -45.144.248.0/22 203936 -45.145.0.0/24 200019 -45.145.3.0/24 12722 -45.145.12.0/22 60781 -45.145.16.0/23 20668 -45.145.18.0/23 39877 -45.145.20.0/23 60721 -45.145.22.0/23 51559 -45.145.24.0/22 35131 -45.145.28.0/22 197328 -45.145.32.0/22 41228 -45.145.36.0/22 40065 -45.145.52.0/24 197071 -45.145.53.0/24 395846 -45.145.55.0/24 8100 -45.145.56.0/24 60781 -45.145.64.0/22 204941 -45.145.68.0/22 49367 -45.145.76.0/22 208770 -45.145.80.0/24 34924 -45.145.81.0/24 62468 -45.145.82.0/24 62468 -45.145.83.0/24 21859 -45.145.86.0/23 51561 -45.145.92.0/22 208327 -45.145.96.0/22 34549 -45.145.105.0/24 23470 -45.145.106.0/24 23470 -45.145.112.0/22 39405 -45.145.116.0/22 208475 -45.145.124.0/22 62468 -45.145.128.0/23 174 -45.145.130.0/23 62282 -45.145.132.0/22 50129 -45.145.144.0/21 35913 -45.145.156.0/22 59447 -45.145.160.0/24 206766 -45.145.161.0/24 51167 -45.145.162.0/24 49505 -45.145.163.0/24 34665 -45.145.164.0/22 64484 -45.145.168.0/24 34665 -45.145.169.0/24 49505 -45.145.170.0/24 49505 -45.145.171.0/24 34665 -45.145.184.0/22 35913 -45.145.192.0/22 201814 -45.145.200.0/22 209883 -45.145.204.0/22 203201 -45.145.208.0/22 15391 -45.145.212.0/22 55803 -45.145.216.0/22 9009 -45.145.220.0/22 200918 -45.145.228.0/22 40065 -45.145.232.0/22 25057 -45.145.236.0/22 13101 -45.145.248.0/22 36351 -45.145.252.0/22 58073 -45.146.0.0/22 57389 -45.146.4.0/23 44103 -45.146.6.0/24 208624 -45.146.7.0/24 207972 -45.146.8.0/22 35913 -45.146.12.0/22 199046 -45.146.16.0/22 12337 -45.146.24.0/22 49392 -45.146.36.0/22 207967 -45.146.40.0/24 207657 -45.146.41.0/24 207698 -45.146.42.0/24 56810 -45.146.44.0/22 15391 -45.146.52.0/22 397796 -45.146.56.0/22 397796 -45.146.60.0/22 35913 -45.146.64.0/22 50374 -45.146.68.0/22 208307 -45.146.72.0/22 205986 -45.146.80.0/22 20860 -45.146.84.0/24 208238 -45.146.88.0/22 60781 -45.146.112.0/22 137443 -45.146.116.0/22 269800 -45.146.120.0/22 9009 -45.146.128.0/22 60781 -45.146.132.0/22 200567 -45.146.136.0/22 12586 -45.146.140.0/22 35122 -45.146.148.0/22 208313 -45.146.164.0/22 50673 -45.146.168.0/23 49505 -45.146.170.0/24 48031 -45.146.171.0/24 49505 -45.146.172.0/22 34953 -45.146.176.0/22 208311 -45.146.180.0/24 60781 -45.146.181.0/24 35913 -45.146.182.0/23 35913 -45.146.184.0/22 35913 -45.146.188.0/22 60458 -45.146.192.0/22 35913 -45.146.200.0/22 42549 -45.146.212.0/22 41405 -45.146.220.0/22 395092 -45.146.224.0/22 29119 -45.146.229.0/24 42551 -45.146.230.0/23 49505 -45.146.232.0/22 209411 -45.146.236.0/22 50064 -45.146.240.0/22 56466 -45.146.252.0/22 205220 -45.147.0.0/23 49505 -45.147.4.0/24 40676 -45.147.5.0/24 20473 -45.147.6.0/24 133219 -45.147.8.0/22 20473 -45.147.16.0/24 208485 -45.147.17.0/24 51559 -45.147.18.0/23 208485 -45.147.24.0/22 6134 -45.147.28.0/24 60781 -45.147.29.0/24 35913 -45.147.30.0/23 35913 -45.147.36.0/22 204188 -45.147.40.0/22 198385 -45.147.45.0/24 209737 -45.147.46.0/24 209737 -45.147.60.0/22 55803 -45.147.64.0/22 29310 -45.147.68.0/22 9009 -45.147.72.0/22 201341 -45.147.76.0/24 208268 -45.147.84.0/22 26556 -45.147.88.0/22 205072 -45.147.92.0/24 48603 -45.147.96.0/22 62000 -45.147.100.0/22 60781 -45.147.104.0/22 200908 -45.147.108.0/22 43304 -45.147.116.0/22 200908 -45.147.120.0/22 204895 -45.147.128.0/22 208928 -45.147.132.0/22 34549 -45.147.136.0/22 56635 -45.147.144.0/22 208061 -45.147.148.0/22 49505 -45.147.152.0/22 208485 -45.147.156.0/22 50261 -45.147.160.0/22 199524 -45.147.164.0/22 204860 -45.147.168.0/22 204941 -45.147.172.0/22 35913 -45.147.176.0/22 198610 -45.147.180.0/22 60781 -45.147.192.0/22 204941 -45.147.196.0/22 204601 -45.147.200.0/23 51659 -45.147.204.0/22 29119 -45.147.208.0/22 203698 -45.147.212.0/22 132839 -45.147.220.0/22 50575 -45.147.224.0/22 197518 -45.147.228.0/22 30823 -45.147.232.0/22 20473 -45.147.244.0/22 204941 -45.147.252.0/24 49505 -45.147.253.0/24 47141 -45.148.0.0/22 48305 -45.148.4.0/24 9009 -45.148.8.0/24 135330 -45.148.9.0/24 396073 -45.148.10.0/24 48090 -45.148.11.0/24 9009 -45.148.12.0/22 26556 -45.148.16.0/22 197595 -45.148.20.0/24 42692 -45.148.28.0/22 24940 -45.148.32.0/22 12357 -45.148.36.0/22 41108 -45.148.44.0/22 208485 -45.148.56.0/22 7922 -45.148.68.0/22 60711 -45.148.72.0/22 203936 -45.148.76.0/22 53356 -45.148.100.0/22 60781 -45.148.104.0/22 203020 -45.148.112.0/22 8893 -45.148.120.0/22 64425 -45.148.124.0/24 62282 -45.148.125.0/24 35913 -45.148.126.0/24 46844 -45.148.127.0/24 8100 -45.148.128.0/22 64021 -45.148.132.0/22 12679 -45.148.136.0/22 35913 -45.148.148.0/22 269800 -45.148.152.0/22 197726 -45.148.156.0/22 50903 -45.148.160.0/22 47730 -45.148.164.0/24 50673 -45.148.165.0/24 8100 -45.148.166.0/24 16353 -45.148.167.0/24 61424 -45.148.168.0/22 205668 -45.148.172.0/22 51044 -45.148.176.0/22 207046 -45.148.184.0/22 8455 -45.148.188.0/22 204287 -45.148.192.0/22 42366 -45.148.196.0/22 202913 -45.148.204.0/22 62183 -45.148.208.0/22 208290 -45.148.212.0/22 57558 -45.148.216.0/23 15945 -45.148.228.0/22 49223 -45.148.232.0/23 49453 -45.148.234.0/23 206485 -45.148.236.0/22 48350 -45.148.240.0/23 49505 -45.148.242.0/24 49505 -45.148.243.0/24 56529 -45.148.244.0/22 44676 -45.148.248.0/24 62284 -45.149.0.0/22 398083 -45.149.4.0/22 3214 -45.149.8.0/22 57866 -45.149.12.0/22 209702 -45.149.16.0/22 136933 -45.149.20.0/22 262287 -45.149.24.0/22 31475 -45.149.28.0/22 262287 -45.149.32.0/22 39560 -45.149.40.0/22 197628 -45.149.44.0/22 43414 -45.149.64.0/22 208270 -45.149.68.0/22 132839 -45.149.72.0/22 398083 -45.149.80.0/22 204941 -45.149.84.0/24 208278 -45.149.88.0/22 210013 -45.149.92.0/22 24747 -45.149.96.0/22 8368 -45.149.100.0/22 41108 -45.149.104.0/22 398083 -45.149.108.0/22 16509 -45.149.112.0/22 18978 -45.149.116.0/22 60397 -45.149.120.0/22 46616 -45.149.128.0/24 42447 -45.149.129.0/24 49505 -45.149.130.0/23 49505 -45.149.132.0/24 49505 -45.149.133.0/24 48031 -45.149.134.0/24 62240 -45.149.135.0/24 49505 -45.149.136.0/22 5624 -45.149.144.0/22 60781 -45.149.176.0/24 42005 -45.149.180.0/23 208265 -45.149.182.0/23 208257 -45.149.184.0/22 41108 -45.149.192.0/22 398083 -45.149.196.0/22 64021 -45.149.200.0/22 200793 -45.149.204.0/22 35913 -45.149.212.0/24 3301 -45.149.216.0/23 43847 -45.149.220.0/22 35913 -45.149.225.0/24 6453 -45.149.226.0/24 6453 -45.149.227.0/24 36937 -45.149.228.0/22 57910 -45.149.232.0/22 58271 -45.149.244.0/22 6789 -45.149.248.0/23 49250 -45.149.252.0/22 56595 -45.150.0.0/22 35224 -45.150.4.0/24 23470 -45.150.8.0/22 44676 -45.150.12.0/22 43402 -45.150.16.0/22 35913 -45.150.20.0/22 9009 -45.150.24.0/22 62415 -45.150.28.0/22 15466 -45.150.36.0/22 204860 -45.150.40.0/22 45009 -45.150.48.0/22 201971 -45.150.52.0/23 9009 -45.150.56.0/22 47725 -45.150.60.0/23 49505 -45.150.62.0/23 62240 -45.150.64.0/22 61317 -45.150.76.0/22 60144 -45.150.80.0/23 20668 -45.150.82.0/23 39877 -45.150.84.0/22 50129 -45.150.88.0/22 208246 -45.150.92.0/22 398083 -45.150.104.0/22 60893 -45.150.108.0/22 49505 -45.150.112.0/24 51167 -45.150.113.0/24 34582 -45.150.114.0/23 40015 -45.150.124.0/23 60264 -45.150.128.0/22 35913 -45.150.136.0/22 208262 -45.150.140.0/22 23338 -45.150.144.0/22 35913 -45.150.148.0/22 43069 -45.150.152.0/22 208236 -45.150.156.0/22 49981 -45.150.160.0/22 205199 -45.150.184.0/22 208253 -45.150.192.0/22 200908 -45.150.200.0/22 201795 -45.150.204.0/23 24663 -45.150.209.0/24 5384 -45.150.210.0/23 32787 -45.150.212.0/23 33657 -45.150.214.0/24 33657 -45.150.215.0/24 1239 -45.150.216.0/22 62412 -45.150.220.0/23 33657 -45.150.222.0/24 33657 -45.150.223.0/24 1239 -45.150.228.0/22 59953 -45.150.232.0/22 56630 -45.150.236.0/22 26484 -45.150.240.0/22 9009 -45.150.244.0/24 208241 -45.150.252.0/22 47602 -45.151.0.0/22 34549 -45.151.4.0/22 43414 -45.151.8.0/22 64484 -45.151.12.0/22 43260 -45.151.16.0/22 41114 -45.151.24.0/22 208770 -45.151.28.0/24 34882 -45.151.29.0/24 49505 -45.151.44.0/22 62240 -45.151.48.0/23 208248 -45.151.50.0/23 196816 -45.151.56.0/22 46723 -45.151.60.0/22 20891 -45.151.64.0/22 59447 -45.151.68.0/22 20891 -45.151.72.0/22 197740 -45.151.76.0/22 208365 -45.151.84.0/22 208247 -45.151.88.0/22 58271 -45.151.96.0/22 208747 -45.151.100.0/22 60781 -45.151.104.0/24 60781 -45.151.105.0/24 207907 -45.151.106.0/23 207907 -45.151.108.0/24 209446 -45.151.116.0/22 41960 -45.151.124.0/24 208220 -45.151.125.0/24 47544 -45.151.126.0/23 47544 -45.151.136.0/22 43260 -45.151.140.0/22 208121 -45.151.144.0/23 207967 -45.151.146.0/24 48236 -45.151.147.0/24 56534 -45.151.156.0/23 208258 -45.151.158.0/24 208258 -45.151.166.0/24 207871 -45.151.168.0/22 200278 -45.151.172.0/22 35913 -45.151.176.0/22 207944 -45.151.180.0/22 328543 -45.151.192.0/22 60458 -45.151.204.0/22 43350 -45.151.212.0/23 59808 -45.151.216.0/22 30813 -45.151.224.0/24 57878 -45.151.232.0/24 202423 -45.151.233.0/24 203190 -45.151.236.0/22 3255 -45.151.240.0/22 50629 -45.151.244.0/22 208222 -45.151.248.0/22 209853 -45.151.252.0/22 35913 -45.152.4.0/22 35913 -45.152.8.0/23 210013 -45.152.12.0/23 48146 -45.152.14.0/24 48146 -45.152.16.0/22 57809 -45.152.23.0/24 204506 -45.152.24.0/22 39130 -45.152.28.0/22 43915 -45.152.32.0/22 35913 -45.152.40.0/22 59456 -45.152.48.0/22 50304 -45.152.52.0/22 48362 -45.152.56.0/23 210013 -45.152.58.0/23 205406 -45.152.72.0/22 3255 -45.152.76.0/24 45040 -45.152.78.0/23 202120 -45.152.80.0/24 206841 -45.152.84.0/24 203087 -45.152.85.0/24 44676 -45.152.91.0/24 20473 -45.152.92.0/24 42053 -45.152.94.0/24 42053 -45.152.100.0/22 24603 -45.152.104.0/22 15830 -45.152.116.0/22 49392 -45.152.120.0/23 57456 -45.152.122.0/24 57456 -45.152.124.0/24 206499 -45.152.125.0/24 205591 -45.152.126.0/24 205591 -45.152.127.0/24 206499 -45.152.128.0/23 49367 -45.152.130.0/23 31863 -45.152.140.0/22 50129 -45.152.144.0/22 59919 -45.152.148.0/22 35913 -45.152.152.0/22 204053 -45.152.156.0/22 60134 -45.152.160.0/22 46723 -45.152.164.0/22 203948 -45.152.168.0/22 205500 -45.152.172.0/22 34244 -45.152.176.0/22 61317 -45.152.180.0/22 9009 -45.152.192.0/22 58073 -45.152.196.0/24 60781 -45.152.197.0/24 55720 -45.152.198.0/23 60781 -45.152.200.0/22 60781 -45.152.208.0/22 60781 -45.152.212.0/22 49505 -45.152.220.0/22 56679 -45.152.224.0/23 49505 -45.152.226.0/24 49505 -45.152.227.0/24 51167 -45.152.228.0/22 208183 -45.152.236.0/22 34968 -45.152.240.0/22 62240 -45.152.248.0/22 207942 -45.152.252.0/24 45014 -45.153.4.0/22 62240 -45.153.10.0/23 6134 -45.153.12.0/22 208221 -45.153.16.0/22 201702 -45.153.20.0/22 60781 -45.153.24.0/22 43350 -45.153.28.0/22 202629 -45.153.32.0/24 207842 -45.153.33.0/24 44592 -45.153.34.0/23 44592 -45.153.48.0/22 207967 -45.153.52.0/22 49505 -45.153.56.0/22 48324 -45.153.68.0/22 207967 -45.153.72.0/23 206766 -45.153.80.0/22 208218 -45.153.92.0/22 39405 -45.153.96.0/22 3352 -45.153.100.0/22 39384 -45.153.112.0/22 201709 -45.153.120.0/22 208201 -45.153.124.0/22 61317 -45.153.128.0/22 55933 -45.153.132.0/22 61337 -45.153.136.0/22 208216 -45.153.140.0/23 207203 -45.153.142.0/24 207203 -45.153.143.0/24 34812 -45.153.148.0/22 47169 -45.153.152.0/22 39923 -45.153.156.0/22 39384 -45.153.168.0/22 35913 -45.153.176.0/22 201962 -45.153.180.0/22 56910 -45.153.184.0/22 202448 -45.153.192.0/22 198668 -45.153.196.0/22 25100 -45.153.200.0/22 35913 -45.153.204.0/22 20565 -45.153.208.0/22 43633 -45.153.216.0/24 60781 -45.153.217.0/24 35913 -45.153.218.0/23 35913 -45.153.220.0/22 35913 -45.153.224.0/22 207967 -45.153.228.0/24 62088 -45.153.229.0/24 200019 -45.153.230.0/24 202984 -45.153.231.0/24 44094 -45.153.232.0/22 9009 -45.153.236.0/22 55803 -45.153.240.0/22 30823 -45.153.248.0/22 60721 -45.153.252.0/22 201290 -45.154.8.0/24 208209 -45.154.24.0/22 8283 -45.154.28.0/22 8873 -45.154.32.0/23 209152 -45.154.34.0/24 31400 -45.154.35.0/24 207770 -45.154.36.0/22 42318 -45.154.48.0/22 44066 -45.154.52.0/22 208202 -45.154.56.0/24 60781 -45.154.60.0/24 202945 -45.154.61.0/24 210118 -45.154.62.0/24 201281 -45.154.64.0/22 39384 -45.154.68.0/22 30798 -45.154.72.0/24 208200 -45.154.74.0/23 42072 -45.154.76.0/22 48181 -45.154.80.0/22 197328 -45.154.84.0/24 60781 -45.154.85.0/24 207907 -45.154.86.0/23 207907 -45.154.96.0/24 208709 -45.154.97.0/24 44258 -45.154.98.0/24 208264 -45.154.99.0/24 208085 -45.154.100.0/22 49567 -45.154.104.0/23 40676 -45.154.106.0/24 40676 -45.154.107.0/24 23033 -45.154.108.0/22 206313 -45.154.112.0/22 44146 -45.154.116.0/22 56485 -45.154.120.0/22 9009 -45.154.124.0/22 8455 -45.154.128.0/22 3255 -45.154.132.0/24 208176 -45.154.136.0/22 397796 -45.154.140.0/22 269800 -45.154.144.0/22 61251 -45.154.148.0/23 204646 -45.154.152.0/22 9009 -45.154.156.0/22 34549 -45.154.160.0/22 49505 -45.154.164.0/22 202591 -45.154.168.0/22 208196 -45.154.172.0/22 208109 -45.154.176.0/24 202543 -45.154.178.0/23 202543 -45.154.180.0/22 136133 -45.154.184.0/22 47522 -45.154.192.0/22 61290 -45.154.196.0/22 47987 -45.154.208.0/22 25460 -45.154.216.0/24 29119 -45.154.217.0/24 57335 -45.154.218.0/23 29119 -45.154.222.0/23 25506 -45.154.224.0/22 202208 -45.154.228.0/24 60781 -45.154.229.0/24 207907 -45.154.230.0/23 207907 -45.154.232.0/22 44381 -45.154.236.0/24 35913 -45.154.237.0/24 395800 -45.154.238.0/24 43233 -45.154.244.0/24 60781 -45.154.245.0/24 35913 -45.154.246.0/23 55720 -45.154.248.0/22 41230 -45.154.252.0/24 61072 -45.154.254.0/23 41281 -45.155.0.0/22 15391 -45.155.4.0/22 197793 -45.155.16.0/22 62240 -45.155.20.0/24 208130 -45.155.21.0/24 205072 -45.155.22.0/23 205072 -45.155.24.0/22 49567 -45.155.32.0/22 197240 -45.155.36.0/22 395092 -45.155.40.0/22 35913 -45.155.52.0/22 42993 -45.155.56.0/22 50129 -45.155.60.0/24 57724 -45.155.61.0/24 49505 -45.155.62.0/23 209984 -45.155.64.0/22 26636 -45.155.68.0/24 60781 -45.155.70.0/23 55720 -45.155.72.0/22 35367 -45.155.77.0/24 59741 -45.155.78.0/24 49367 -45.155.79.0/24 59741 -45.155.80.0/22 57454 -45.155.84.0/22 60776 -45.155.88.0/22 133334 -45.155.92.0/22 208177 -45.155.96.0/22 197564 -45.155.100.0/23 42831 -45.155.104.0/22 199879 -45.155.116.0/22 48585 -45.155.124.0/23 60721 -45.155.126.0/24 42724 -45.155.127.0/24 60721 -45.155.128.0/22 43260 -45.155.132.0/23 9051 -45.155.134.0/24 9051 -45.155.135.0/24 208007 -45.155.144.0/22 204272 -45.155.148.0/22 198984 -45.155.160.0/22 9009 -45.155.164.0/22 40824 -45.155.168.0/22 62000 -45.155.172.0/22 30823 -45.155.180.0/22 205986 -45.155.192.0/22 48359 -45.155.196.0/22 205220 -45.155.200.0/22 35913 -45.155.204.0/22 50673 -45.155.208.0/23 200756 -45.155.224.0/24 23338 -45.155.225.0/24 138545 -45.155.226.0/24 132352 -45.155.227.0/24 55020 -45.155.228.0/22 200780 -45.155.240.0/22 203178 -45.155.244.0/22 47692 -45.155.248.0/22 34549 -45.155.252.0/22 197518 -45.156.4.0/22 8218 -45.156.8.0/22 201697 -45.156.12.0/23 15924 -45.156.14.0/24 15924 -45.156.15.0/24 65544 -45.156.20.0/22 56971 -45.156.28.0/24 15924 -45.156.31.0/24 204457 -45.156.36.0/22 6876 -45.156.44.0/22 204860 -45.156.48.0/22 50673 -45.156.52.0/22 46562 -45.156.56.0/22 203178 -45.156.62.0/24 209076 -45.156.63.0/24 208172 -45.156.64.0/22 55803 -45.156.72.0/22 207787 -45.156.76.0/22 9009 -45.156.84.0/24 44592 -45.156.86.0/23 44592 -45.156.88.0/22 9211 -45.156.92.0/22 201172 -45.156.96.0/22 16509 -45.156.120.0/22 201000 -45.156.132.0/22 3259 -45.156.148.0/22 49505 -45.156.156.0/22 26556 -45.156.160.0/24 57648 -45.156.168.0/22 132839 -45.156.172.0/22 208164 -45.156.176.0/22 60134 -45.156.180.0/22 44285 -45.156.184.0/22 208161 -45.156.192.0/22 44285 -45.156.196.0/22 49103 -45.156.200.0/22 44285 -45.156.204.0/24 40676 -45.156.205.0/24 25369 -45.156.208.0/22 201843 -45.156.212.0/22 16321 -45.156.216.0/22 132839 -45.156.220.0/22 23338 -45.156.224.0/22 203020 -45.156.228.0/22 44407 -45.156.236.0/22 34358 -45.156.244.0/22 42929 -45.156.248.0/22 200698 -45.157.4.0/24 60435 -45.157.12.0/22 199723 -45.157.16.0/22 50113 -45.157.32.0/24 395800 -45.157.36.0/22 35913 -45.157.52.0/24 208115 -45.157.56.0/23 198411 -45.157.58.0/24 198411 -45.157.60.0/22 51269 -45.157.64.0/24 51185 -45.157.68.0/24 136933 -45.157.76.0/22 201401 -45.157.80.0/22 204287 -45.157.84.0/22 29611 -45.157.88.0/22 132839 -45.157.96.0/22 397796 -45.157.100.0/22 35478 -45.157.108.0/22 39647 -45.157.112.0/22 397796 -45.157.116.0/22 209916 -45.157.120.0/22 35913 -45.157.124.0/22 197706 -45.157.128.0/22 35913 -45.157.132.0/23 208064 -45.157.138.0/24 60412 -45.157.140.0/24 48347 -45.157.141.0/24 52000 -45.157.148.0/22 208131 -45.157.160.0/22 30823 -45.157.164.0/22 49974 -45.157.180.0/22 57844 -45.157.184.0/22 204287 -45.157.188.0/22 29222 -45.157.200.0/24 35913 -45.157.201.0/24 208078 -45.157.202.0/24 395800 -45.157.204.0/22 34859 -45.157.208.0/22 197518 -45.157.212.0/22 56701 -45.157.216.0/22 42275 -45.157.228.0/22 201847 -45.157.232.0/22 44066 -45.157.236.0/22 50629 -45.157.240.0/22 205112 -45.157.248.0/22 41114 -45.157.252.0/22 209411 -45.158.0.0/22 60917 -45.158.8.0/22 50113 -45.158.12.0/24 51559 -45.158.13.0/24 41683 -45.158.14.0/24 203377 -45.158.15.0/24 207459 -45.158.16.0/22 41897 -45.158.20.0/22 136038 -45.158.32.0/24 133441 -45.158.33.0/24 132422 -45.158.34.0/23 132422 -45.158.36.0/23 29802 -45.158.44.0/24 395092 -45.158.45.0/24 49505 -45.158.46.0/23 40015 -45.158.48.0/22 25133 -45.158.60.0/22 51509 -45.158.84.0/22 202833 -45.158.88.0/22 204860 -45.158.100.0/22 207923 -45.158.112.0/22 48501 -45.158.116.0/22 37560 -45.158.132.0/22 35478 -45.158.136.0/22 60721 -45.158.140.0/22 206610 -45.158.144.0/22 39093 -45.158.148.0/22 18978 -45.158.152.0/22 209196 -45.158.156.0/22 57704 -45.158.164.0/22 15510 -45.158.168.0/22 25369 -45.158.172.0/22 20810 -45.158.176.0/22 50326 -45.158.180.0/24 138915 -45.158.184.0/22 60781 -45.158.192.0/22 9009 -45.158.196.0/22 35913 -45.158.212.0/22 203020 -45.158.216.0/22 29119 -45.158.220.0/22 132839 -45.158.232.0/22 44270 -45.158.240.0/22 57626 -45.158.244.0/22 3255 -45.158.252.0/22 23338 -45.159.4.0/22 205220 -45.159.8.0/22 203020 -45.159.24.0/22 207953 -45.159.28.0/23 208095 -45.159.31.0/24 207617 -45.159.32.0/22 48821 -45.159.36.0/23 57264 -45.159.38.0/24 57264 -45.159.44.0/22 43995 -45.159.56.0/23 18013 -45.159.58.0/24 18013 -45.159.73.0/24 207810 -45.159.74.0/23 207810 -45.159.76.0/22 200908 -45.159.84.0/24 49505 -45.159.85.0/24 51167 -45.159.86.0/24 57013 -45.159.87.0/24 49505 -45.159.88.0/22 7922 -45.159.107.0/24 207867 -45.159.112.0/24 201295 -45.159.113.0/24 61173 -45.159.116.0/22 42908 -45.159.120.0/22 16509 -45.159.124.0/22 57129 -45.159.129.0/24 42316 -45.159.132.0/22 35478 -45.159.136.0/22 51093 -45.159.140.0/22 8283 -45.159.144.0/22 60781 -45.159.152.0/22 7922 -45.159.160.0/22 208071 -45.159.164.0/23 200031 -45.159.168.0/22 60134 -45.159.172.0/22 200562 -45.159.176.0/22 54600 -45.159.180.0/22 201971 -45.159.184.0/23 15511 -45.159.186.0/24 15511 -45.159.188.0/23 14576 -45.159.190.0/24 14576 -45.159.191.0/24 57724 -45.159.192.0/24 208078 -45.159.196.0/23 48551 -45.159.199.0/24 48551 -45.159.200.0/22 45054 -45.159.204.0/22 60781 -45.159.212.0/22 39351 -45.159.220.0/22 204287 -45.159.224.0/22 16509 -45.159.228.0/22 204287 -45.159.232.0/22 208108 -45.159.236.0/22 198537 -45.159.244.0/22 397796 -45.159.248.0/22 44676 -45.160.0.0/22 268387 -45.160.4.0/22 266866 -45.160.12.0/22 269733 -45.160.16.0/22 268402 -45.160.20.0/22 268437 -45.160.24.0/22 268398 -45.160.28.0/22 266872 -45.160.32.0/22 266876 -45.160.36.0/22 268391 -45.160.40.0/22 268392 -45.160.44.0/22 268438 -45.160.48.0/22 268393 -45.160.52.0/22 268394 -45.160.56.0/22 268395 -45.160.60.0/22 268399 -45.160.64.0/22 268396 -45.160.68.0/22 268403 -45.160.72.0/23 266878 -45.160.75.0/24 266878 -45.160.76.0/23 268441 -45.160.78.0/23 267688 -45.160.80.0/22 268462 -45.160.84.0/22 268404 -45.160.88.0/22 268414 -45.160.92.0/22 268415 -45.160.96.0/22 268407 -45.160.100.0/22 268406 -45.160.104.0/22 268397 -45.160.108.0/22 268416 -45.160.112.0/22 268400 -45.160.116.0/22 268514 -45.160.120.0/22 268418 -45.160.124.0/22 268408 -45.160.128.0/22 268457 -45.160.132.0/22 266875 -45.160.136.0/22 268409 -45.160.140.0/22 268420 -45.160.148.0/22 268411 -45.160.152.0/22 268431 -45.160.156.0/22 266890 -45.160.160.0/22 268432 -45.160.164.0/22 268412 -45.160.168.0/22 268425 -45.160.172.0/22 268426 -45.160.176.0/22 268417 -45.160.180.0/22 268413 -45.160.184.0/22 268421 -45.160.188.0/22 266887 -45.160.192.0/22 268471 -45.160.196.0/22 27983 -45.160.200.0/22 266884 -45.160.204.0/22 268410 -45.160.208.0/22 268422 -45.160.212.0/22 266881 -45.160.216.0/23 61594 -45.160.220.0/22 268423 -45.160.224.0/22 267693 -45.160.228.0/22 268428 -45.160.232.0/22 268429 -45.160.236.0/22 268434 -45.160.244.0/22 268452 -45.160.248.0/22 268436 -45.160.252.0/22 268445 -45.161.0.0/22 268430 -45.161.4.0/22 268424 -45.161.8.0/22 266883 -45.161.12.0/22 268439 -45.161.16.0/22 268446 -45.161.20.0/22 268440 -45.161.24.0/22 266893 -45.161.28.0/22 268490 -45.161.32.0/22 266894 -45.161.36.0/22 268500 -45.161.40.0/22 268443 -45.161.44.0/22 266902 -45.161.48.0/22 268447 -45.161.52.0/22 268448 -45.161.56.0/22 268453 -45.161.60.0/22 268454 -45.161.64.0/22 268444 -45.161.68.0/24 2 -45.161.69.0/24 268455 -45.161.70.0/23 268455 -45.161.76.0/22 268450 -45.161.80.0/22 268502 -45.161.84.0/22 268511 -45.161.88.0/22 268456 -45.161.92.0/22 268501 -45.161.96.0/22 268463 -45.161.100.0/22 268458 -45.161.104.0/22 268451 -45.161.108.0/22 266901 -45.161.112.0/22 266891 -45.161.116.0/22 266885 -45.161.120.0/22 268464 -45.161.124.0/22 268465 -45.161.128.0/22 268459 -45.161.132.0/22 27983 -45.161.136.0/22 268543 -45.161.140.0/22 268480 -45.161.144.0/22 268510 -45.161.148.0/22 268603 -45.161.152.0/22 268469 -45.161.156.0/22 268519 -45.161.160.0/22 268466 -45.161.164.0/22 268467 -45.161.168.0/22 265751 -45.161.172.0/22 266897 -45.161.176.0/22 268470 -45.161.180.0/24 27983 -45.161.181.0/24 266892 -45.161.182.0/23 27983 -45.161.184.0/22 268512 -45.161.188.0/22 266910 -45.161.192.0/22 268481 -45.161.196.0/22 268472 -45.161.200.0/22 268473 -45.161.204.0/22 268474 -45.161.208.0/23 268498 -45.161.210.0/23 268488 -45.161.212.0/22 268513 -45.161.216.0/22 268476 -45.161.220.0/22 268499 -45.161.224.0/22 268477 -45.161.228.0/22 268483 -45.161.232.0/22 268478 -45.161.236.0/24 266909 -45.161.240.0/22 268479 -45.161.244.0/22 268484 -45.161.248.0/22 268487 -45.161.252.0/22 268491 -45.162.2.0/24 266903 -45.162.4.0/22 268492 -45.162.8.0/22 268485 -45.162.12.0/22 268493 -45.162.16.0/22 268489 -45.162.20.0/23 267690 -45.162.22.0/23 268508 -45.162.24.0/22 268525 -45.162.28.0/22 268526 -45.162.32.0/22 268532 -45.162.36.0/22 268494 -45.162.40.0/24 268495 -45.162.43.0/24 268495 -45.162.44.0/22 268496 -45.162.48.0/22 268529 -45.162.52.0/22 268509 -45.162.56.0/22 268503 -45.162.60.0/22 267679 -45.162.64.0/22 268593 -45.162.68.0/22 268507 -45.162.72.0/22 266904 -45.162.76.0/23 18678 -45.162.78.0/24 18678 -45.162.79.0/24 267678 -45.162.80.0/23 267975 -45.162.82.0/23 267682 -45.162.84.0/24 267682 -45.162.86.0/24 267726 -45.162.87.0/24 267727 -45.162.88.0/22 263244 -45.162.92.0/22 268517 -45.162.96.0/22 268506 -45.162.100.0/22 266898 -45.162.104.0/22 268516 -45.162.108.0/22 267694 -45.162.112.0/22 268505 -45.162.116.0/22 268515 -45.162.120.0/22 268504 -45.162.124.0/24 268536 -45.162.125.0/24 266899 -45.162.126.0/24 267691 -45.162.127.0/24 268612 -45.162.128.0/22 268518 -45.162.136.0/22 268520 -45.162.140.0/23 266905 -45.162.142.0/24 266905 -45.162.144.0/22 268531 -45.162.148.0/22 268521 -45.162.152.0/22 268534 -45.162.156.0/22 268522 -45.162.160.0/22 268523 -45.162.164.0/22 268524 -45.162.172.0/22 268527 -45.162.176.0/22 268537 -45.162.180.0/22 267704 -45.162.184.0/22 16629 -45.162.188.0/22 268662 -45.162.192.0/22 267697 -45.162.196.0/22 268538 -45.162.200.0/23 268539 -45.162.202.0/23 268634 -45.162.204.0/22 267692 -45.162.212.0/22 268564 -45.162.216.0/22 268528 -45.162.220.0/22 268535 -45.162.224.0/22 268533 -45.162.228.0/22 268581 -45.162.232.0/22 268582 -45.162.236.0/22 268544 -45.162.240.0/22 268591 -45.162.244.0/22 268540 -45.162.248.0/22 268541 -45.162.252.0/22 268600 -45.163.4.0/22 268545 -45.163.8.0/22 268547 -45.163.12.0/22 268589 -45.163.16.0/23 268644 -45.163.18.0/23 267685 -45.163.28.0/24 14080 -45.163.29.0/24 267841 -45.163.30.0/24 267841 -45.163.31.0/24 267683 -45.163.32.0/22 268594 -45.163.36.0/22 267680 -45.163.40.0/22 268548 -45.163.44.0/22 268549 -45.163.52.0/22 268550 -45.163.56.0/22 268567 -45.163.60.0/22 268572 -45.163.64.0/22 268554 -45.163.68.0/22 268559 -45.163.72.0/22 268573 -45.163.76.0/22 268551 -45.163.80.0/23 267687 -45.163.84.0/22 268546 -45.163.88.0/22 268569 -45.163.92.0/22 268574 -45.163.100.0/22 268595 -45.163.104.0/22 268552 -45.163.108.0/22 268575 -45.163.112.0/22 268576 -45.163.116.0/22 268577 -45.163.120.0/22 265554 -45.163.128.0/24 267696 -45.163.132.0/22 268670 -45.163.136.0/22 267698 -45.163.140.0/22 267686 -45.163.144.0/22 268568 -45.163.148.0/22 268560 -45.163.152.0/22 268561 -45.163.156.0/22 268570 -45.163.160.0/22 268571 -45.163.164.0/22 268562 -45.163.168.0/22 268563 -45.163.172.0/22 268556 -45.163.176.0/22 268578 -45.163.180.0/22 268579 -45.163.184.0/22 268553 -45.163.188.0/22 267702 -45.163.192.0/22 268557 -45.163.196.0/22 268565 -45.163.200.0/22 268566 -45.163.204.0/22 267684 -45.163.208.0/22 268618 -45.163.212.0/22 268583 -45.163.216.0/22 268601 -45.163.220.0/22 268586 -45.163.224.0/22 268602 -45.163.228.0/22 268580 -45.163.232.0/22 268587 -45.163.236.0/22 267944 -45.163.240.0/22 268584 -45.163.244.0/22 268588 -45.163.248.0/22 267707 -45.163.252.0/22 268590 -45.164.0.0/22 268592 -45.164.4.0/22 268613 -45.164.8.0/22 268585 -45.164.12.0/23 267700 -45.164.16.0/23 267695 -45.164.20.0/23 23470 -45.164.22.0/24 45382 -45.164.23.0/24 23470 -45.164.24.0/22 268604 -45.164.28.0/22 268621 -45.164.32.0/22 268635 -45.164.36.0/22 268622 -45.164.40.0/22 268596 -45.164.44.0/22 268597 -45.164.48.0/22 268680 -45.164.52.0/22 268598 -45.164.56.0/22 268599 -45.164.60.0/22 268605 -45.164.64.0/23 267699 -45.164.67.0/24 23487 -45.164.68.0/22 268606 -45.164.72.0/22 268690 -45.164.76.0/22 268607 -45.164.80.0/22 268608 -45.164.84.0/22 268609 -45.164.88.0/22 268610 -45.164.92.0/22 268685 -45.164.96.0/22 268611 -45.164.100.0/22 268669 -45.164.104.0/22 268630 -45.164.112.0/22 268614 -45.164.116.0/23 268615 -45.164.122.0/23 268623 -45.164.124.0/22 268624 -45.164.128.0/22 268616 -45.164.132.0/22 268617 -45.164.136.0/23 265556 -45.164.140.0/22 268625 -45.164.144.0/22 268631 -45.164.148.0/24 267713 -45.164.150.0/23 267713 -45.164.152.0/22 268619 -45.164.156.0/22 268632 -45.164.160.0/22 268626 -45.164.164.0/22 268627 -45.164.168.0/22 28427 -45.164.172.0/22 267705 -45.164.176.0/22 268645 -45.164.180.0/22 268636 -45.164.184.0/22 268633 -45.164.188.0/22 268628 -45.164.192.0/22 268646 -45.164.196.0/24 268640 -45.164.200.0/22 268642 -45.164.204.0/23 267703 -45.164.207.0/24 267709 -45.164.208.0/22 268637 -45.164.212.0/22 268641 -45.164.216.0/22 268653 -45.164.220.0/22 268668 -45.164.224.0/22 268638 -45.164.228.0/22 267706 -45.164.232.0/22 268643 -45.164.236.0/23 265559 -45.164.240.0/22 268647 -45.164.244.0/22 268648 -45.164.248.0/22 268650 -45.164.252.0/22 268649 -45.165.0.0/22 268665 -45.165.4.0/22 268654 -45.165.8.0/22 268651 -45.165.12.0/22 268663 -45.165.16.0/22 268667 -45.165.20.0/22 268652 -45.165.24.0/22 268664 -45.165.28.0/22 268655 -45.165.32.0/22 268656 -45.165.36.0/22 267710 -45.165.44.0/22 267714 -45.165.48.0/22 268657 -45.165.52.0/23 267723 -45.165.54.0/23 268666 -45.165.56.0/22 267954 -45.165.60.0/22 268658 -45.165.64.0/22 268659 -45.165.68.0/22 268679 -45.165.72.0/22 268660 -45.165.76.0/22 268661 -45.165.80.0/23 61595 -45.165.83.0/24 61595 -45.165.84.0/22 268671 -45.165.88.0/22 268672 -45.165.92.0/22 268681 -45.165.96.0/22 268674 -45.165.100.0/22 268675 -45.165.104.0/22 268673 -45.165.108.0/22 268686 -45.165.112.0/22 267734 -45.165.116.0/22 268427 -45.165.120.0/22 268699 -45.165.124.0/22 268700 -45.165.128.0/22 262899 -45.165.132.0/22 268676 -45.165.136.0/22 268677 -45.165.140.0/22 268687 -45.165.144.0/22 268682 -45.165.148.0/22 268678 -45.165.152.0/24 267715 -45.165.153.0/24 268001 -45.165.154.0/23 267736 -45.165.156.0/22 268693 -45.165.160.0/22 267961 -45.165.164.0/22 268683 -45.165.168.0/22 265703 -45.165.172.0/22 268684 -45.165.176.0/22 263067 -45.165.180.0/22 268694 -45.165.184.0/22 268695 -45.165.188.0/22 268688 -45.165.192.0/22 267937 -45.165.196.0/22 268689 -45.165.200.0/22 267938 -45.165.204.0/22 268691 -45.165.208.0/22 268692 -45.165.212.0/22 267939 -45.165.216.0/22 267940 -45.165.220.0/22 267933 -45.165.224.0/22 262405 -45.165.228.0/22 268018 -45.165.232.0/22 268005 -45.165.236.0/24 263102 -45.165.240.0/22 267980 -45.165.244.0/23 268696 -45.165.246.0/24 268696 -45.165.248.0/22 268697 -45.165.252.0/22 267934 -45.166.0.0/22 267941 -45.166.4.0/22 267942 -45.166.8.0/22 268698 -45.166.12.0/22 268124 -45.166.16.0/22 267722 -45.166.20.0/22 264105 -45.166.24.0/22 267950 -45.166.28.0/22 267943 -45.166.32.0/22 265291 -45.166.36.0/22 267951 -45.166.40.0/22 268007 -45.166.44.0/22 267935 -45.166.48.0/22 267952 -45.166.52.0/22 267936 -45.166.56.0/23 264173 -45.166.58.0/24 264173 -45.166.60.0/22 267945 -45.166.64.0/22 267946 -45.166.68.0/22 267953 -45.166.72.0/22 267719 -45.166.76.0/23 267731 -45.166.78.0/24 267731 -45.166.79.0/24 268014 -45.166.80.0/22 27983 -45.166.84.0/22 267947 -45.166.88.0/22 267960 -45.166.92.0/23 263725 -45.166.94.0/24 262262 -45.166.96.0/22 267959 -45.166.104.0/22 267948 -45.166.108.0/23 174 -45.166.110.0/24 174 -45.166.112.0/22 267955 -45.166.116.0/22 267956 -45.166.120.0/22 267976 -45.166.128.0/22 267957 -45.166.132.0/22 267970 -45.166.136.0/22 267962 -45.166.140.0/22 267949 -45.166.144.0/22 267724 -45.166.148.0/22 267963 -45.166.152.0/22 267964 -45.166.160.0/22 267985 -45.166.164.0/22 267958 -45.166.168.0/22 267979 -45.166.172.0/22 268032 -45.166.176.0/22 267730 -45.166.180.0/22 267986 -45.166.184.0/22 267965 -45.166.188.0/22 267987 -45.166.192.0/22 267966 -45.166.196.0/22 267988 -45.166.200.0/22 268033 -45.166.208.0/22 267969 -45.166.212.0/22 267989 -45.166.216.0/22 262913 -45.166.220.0/22 267971 -45.166.224.0/23 265650 -45.166.228.0/22 267972 -45.166.232.0/22 268002 -45.166.236.0/22 267981 -45.166.244.0/24 267973 -45.166.248.0/22 267974 -45.166.252.0/24 27983 -45.167.0.0/23 52468 -45.167.4.0/22 268025 -45.167.8.0/22 268020 -45.167.12.0/22 265534 -45.167.16.0/24 268015 -45.167.18.0/23 267759 -45.167.20.0/22 267721 -45.167.24.0/22 267728 -45.167.28.0/23 267982 -45.167.32.0/22 267990 -45.167.36.0/22 267983 -45.167.40.0/22 267984 -45.167.44.0/22 268050 -45.167.48.0/22 267995 -45.167.52.0/22 267991 -45.167.56.0/22 267994 -45.167.60.0/22 268053 -45.167.64.0/22 268006 -45.167.68.0/22 267992 -45.167.72.0/22 268004 -45.167.76.0/22 267997 -45.167.80.0/22 268038 -45.167.84.0/22 267996 -45.167.88.0/22 267735 -45.167.92.0/24 265538 -45.167.93.0/24 265561 -45.167.94.0/24 265561 -45.167.95.0/24 265538 -45.167.96.0/22 267998 -45.167.100.0/22 268003 -45.167.104.0/22 268054 -45.167.108.0/22 267999 -45.167.112.0/22 265562 -45.167.116.0/22 268049 -45.167.120.0/24 267732 -45.167.121.0/24 267751 -45.167.122.0/23 268070 -45.167.124.0/23 269804 -45.167.126.0/24 269804 -45.167.127.0/24 267736 -45.167.128.0/22 268010 -45.167.132.0/22 268074 -45.167.136.0/22 268067 -45.167.140.0/22 268011 -45.167.144.0/22 268012 -45.167.148.0/22 268016 -45.167.152.0/22 268013 -45.167.156.0/22 263157 -45.167.160.0/22 268041 -45.167.164.0/22 268017 -45.167.168.0/22 267738 -45.167.172.0/22 268034 -45.167.178.0/23 268021 -45.167.180.0/22 268042 -45.167.184.0/23 268019 -45.167.188.0/22 268046 -45.167.192.0/22 267733 -45.167.196.0/22 263785 -45.167.200.0/22 7155 -45.167.204.0/22 267993 -45.167.208.0/22 268008 -45.167.216.0/22 268009 -45.167.220.0/22 267729 -45.167.224.0/22 268104 -45.167.228.0/22 267747 -45.167.232.0/22 268066 -45.167.239.0/24 61596 -45.167.240.0/22 268058 -45.167.244.0/22 268119 -45.167.248.0/22 267788 -45.167.252.0/22 265565 -45.168.0.0/22 268022 -45.168.4.0/22 268047 -45.168.12.0/22 268035 -45.168.16.0/22 268026 -45.168.20.0/22 268051 -45.168.24.0/22 268036 -45.168.28.0/22 268052 -45.168.32.0/22 268048 -45.168.36.0/22 268027 -45.168.40.0/22 268028 -45.168.44.0/22 268024 -45.168.48.0/22 268037 -45.168.52.0/22 268029 -45.168.56.0/22 268030 -45.168.60.0/22 268031 -45.168.64.0/22 268138 -45.168.68.0/22 61466 -45.168.72.0/22 268081 -45.168.76.0/22 268039 -45.168.80.0/24 267741 -45.168.82.0/23 268073 -45.168.84.0/22 268043 -45.168.88.0/22 268056 -45.168.92.0/22 268040 -45.168.96.0/22 268044 -45.168.100.0/22 268088 -45.168.108.0/22 268057 -45.168.112.0/22 268055 -45.168.116.0/22 268059 -45.168.120.0/22 268060 -45.168.124.0/22 2 -45.168.128.0/22 268109 -45.168.132.0/22 268105 -45.168.136.0/22 268061 -45.168.140.0/22 268062 -45.168.144.0/22 268118 -45.168.148.0/22 268758 -45.168.152.0/23 268069 -45.168.154.0/24 268069 -45.168.156.0/22 268101 -45.168.160.0/22 268064 -45.168.164.0/22 268065 -45.168.168.0/22 268077 -45.168.172.0/23 267737 -45.168.174.0/23 269876 -45.168.176.0/22 268078 -45.168.180.0/22 268068 -45.168.184.0/22 268071 -45.168.188.0/22 268089 -45.168.192.0/22 265816 -45.168.196.0/22 267740 -45.168.200.0/22 268144 -45.168.204.0/22 268083 -45.168.208.0/22 268110 -45.168.212.0/22 267763 -45.168.216.0/22 268075 -45.168.220.0/22 268092 -45.168.224.0/22 268072 -45.168.228.0/22 28426 -45.168.232.0/22 28394 -45.168.236.0/24 265530 -45.168.238.0/23 265530 -45.168.240.0/22 268094 -45.168.244.0/22 268084 -45.168.248.0/22 268085 -45.168.252.0/22 268086 -45.169.0.0/22 268079 -45.169.4.0/22 268080 -45.169.8.0/22 268076 -45.169.12.0/22 268090 -45.169.16.0/22 268087 -45.169.20.0/22 268082 -45.169.24.0/22 268091 -45.169.28.0/22 268093 -45.169.32.0/22 268113 -45.169.36.0/22 267742 -45.169.40.0/22 268096 -45.169.44.0/22 268097 -45.169.48.0/22 268128 -45.169.52.0/23 267741 -45.169.54.0/23 267753 -45.169.56.0/22 268120 -45.169.64.0/22 268098 -45.169.68.0/22 268129 -45.169.72.0/22 268095 -45.169.76.0/22 268150 -45.169.80.0/22 268103 -45.169.84.0/22 268100 -45.169.88.0/22 268099 -45.169.92.0/22 22411 -45.169.97.0/24 268102 -45.169.98.0/23 262186 -45.169.100.0/22 64114 -45.169.104.0/22 267764 -45.169.108.0/22 268106 -45.169.112.0/22 267767 -45.169.116.0/22 268107 -45.169.120.0/22 268112 -45.169.124.0/22 268108 -45.169.128.0/23 268114 -45.169.130.0/24 268114 -45.169.132.0/22 268115 -45.169.136.0/22 268117 -45.169.140.0/22 3549 -45.169.144.0/23 264825 -45.169.146.0/24 264825 -45.169.148.0/22 267746 -45.169.152.0/22 268111 -45.169.159.0/24 268116 -45.169.160.0/23 268707 -45.169.162.0/24 268178 -45.169.163.0/24 267745 -45.169.164.0/22 48252 -45.169.168.0/23 267762 -45.169.170.0/24 267762 -45.169.172.0/22 268701 -45.169.176.0/22 268121 -45.169.180.0/22 268147 -45.169.184.0/22 268122 -45.169.188.0/22 268131 -45.169.192.0/22 52471 -45.169.196.0/22 268132 -45.169.200.0/22 268137 -45.169.204.0/22 268123 -45.169.208.0/22 268130 -45.169.212.0/22 268133 -45.169.216.0/22 268125 -45.169.220.0/22 268139 -45.169.224.0/22 268140 -45.169.228.0/22 268126 -45.169.232.0/22 268127 -45.169.236.0/22 263114 -45.169.240.0/22 268134 -45.169.244.0/22 267760 -45.169.248.0/24 15695 -45.169.250.0/24 267793 -45.169.251.0/24 267772 -45.169.252.0/24 268783 -45.169.253.0/24 13489 -45.169.254.0/23 268146 -45.170.0.0/22 268141 -45.170.4.0/22 268135 -45.170.8.0/23 267750 -45.170.11.0/24 267750 -45.170.12.0/22 53856 -45.170.16.0/22 268145 -45.170.20.0/22 268136 -45.170.24.0/22 268713 -45.170.28.0/22 267752 -45.170.32.0/24 267761 -45.170.34.0/23 267761 -45.170.36.0/22 264839 -45.170.40.0/22 52465 -45.170.44.0/22 267756 -45.170.48.0/22 6147 -45.170.52.0/22 268718 -45.170.56.0/22 268148 -45.170.60.0/22 268142 -45.170.68.0/22 268143 -45.170.72.0/22 268153 -45.170.76.0/22 268151 -45.170.80.0/22 268719 -45.170.84.0/22 268720 -45.170.88.0/22 268156 -45.170.92.0/22 268149 -45.170.96.0/22 268157 -45.170.100.0/22 267758 -45.170.104.0/22 263750 -45.170.110.0/23 267783 -45.170.112.0/22 268158 -45.170.116.0/22 268159 -45.170.120.0/22 268154 -45.170.124.0/22 267755 -45.170.128.0/22 61512 -45.170.132.0/24 265554 -45.170.135.0/24 265554 -45.170.136.0/22 268162 -45.170.140.0/22 268167 -45.170.144.0/22 268160 -45.170.148.0/22 268702 -45.170.152.0/22 268155 -45.170.156.0/22 268163 -45.170.160.0/22 268168 -45.170.164.0/22 268161 -45.170.168.0/22 268165 -45.170.172.0/22 268164 -45.170.176.0/22 268169 -45.170.180.0/22 268166 -45.170.186.0/23 267766 -45.170.188.0/22 18734 -45.170.192.0/22 268179 -45.170.196.0/22 268171 -45.170.200.0/22 268172 -45.170.204.0/22 268185 -45.170.208.0/22 268170 -45.170.216.0/22 268173 -45.170.220.0/22 268174 -45.170.224.0/22 267797 -45.170.228.0/22 268710 -45.170.232.0/22 267768 -45.170.236.0/22 268182 -45.170.240.0/22 267769 -45.170.249.0/24 23470 -45.170.250.0/23 23470 -45.170.252.0/24 31834 -45.170.253.0/24 174 -45.171.0.0/22 268180 -45.171.4.0/22 268175 -45.171.8.0/22 268176 -45.171.12.0/22 268177 -45.171.16.0/22 268181 -45.171.20.0/22 268812 -45.171.24.0/22 268183 -45.171.28.0/22 268186 -45.171.32.0/22 268184 -45.171.36.0/22 264679 -45.171.40.0/22 268747 -45.171.44.0/22 268738 -45.171.50.0/23 268766 -45.171.52.0/22 268708 -45.171.56.0/22 268827 -45.171.60.0/22 268187 -45.171.64.0/22 22869 -45.171.68.0/22 268188 -45.171.72.0/22 268703 -45.171.76.0/24 265571 -45.171.78.0/23 268706 -45.171.84.0/22 268717 -45.171.88.0/22 268704 -45.171.92.0/22 268705 -45.171.96.0/22 268712 -45.171.100.0/22 268716 -45.171.104.0/22 268709 -45.171.108.0/22 267778 -45.171.112.0/22 52465 -45.171.116.0/23 268743 -45.171.118.0/24 262191 -45.171.122.0/23 268876 -45.171.124.0/22 268711 -45.171.128.0/22 268755 -45.171.132.0/23 267782 -45.171.134.0/24 267782 -45.171.136.0/22 268714 -45.171.140.0/22 268798 -45.171.144.0/22 268715 -45.171.148.0/22 268761 -45.171.152.0/22 268721 -45.171.156.0/22 265569 -45.171.160.0/22 267787 -45.171.164.0/22 268723 -45.171.168.0/22 268722 -45.171.172.0/22 52862 -45.171.176.0/22 268725 -45.171.180.0/23 267777 -45.171.182.0/23 262186 -45.171.184.0/22 268726 -45.171.188.0/23 268727 -45.171.190.0/24 268745 -45.171.191.0/24 268759 -45.171.192.0/22 268728 -45.171.196.0/22 268730 -45.171.200.0/22 267803 -45.171.204.0/22 268774 -45.171.208.0/22 268735 -45.171.212.0/22 268731 -45.171.216.0/22 268732 -45.171.220.0/22 267776 -45.171.224.0/22 267786 -45.171.228.0/22 268746 -45.171.232.0/22 268741 -45.171.236.0/22 268736 -45.171.240.0/22 268733 -45.171.244.0/22 268734 -45.171.248.0/23 268729 -45.171.250.0/24 268729 -45.171.252.0/22 268737 -45.172.0.0/22 268754 -45.172.4.0/22 268739 -45.172.8.0/24 265705 -45.172.9.0/24 265554 -45.172.10.0/23 267800 -45.172.12.0/22 268779 -45.172.20.0/22 268740 -45.172.29.0/24 267779 -45.172.30.0/23 267779 -45.172.32.0/22 268748 -45.172.36.0/22 268846 -45.172.40.0/22 268749 -45.172.44.0/22 268742 -45.172.48.0/22 268806 -45.172.52.0/22 268750 -45.172.56.0/22 268762 -45.172.60.0/22 268751 -45.172.64.0/22 268791 -45.172.68.0/22 268752 -45.172.72.0/22 268760 -45.172.76.0/22 268753 -45.172.80.0/22 268756 -45.172.84.0/22 268757 -45.172.88.0/22 265570 -45.172.92.0/22 265566 -45.172.96.0/22 268767 -45.172.100.0/22 268768 -45.172.104.0/22 268763 -45.172.108.0/22 265741 -45.172.112.0/22 268773 -45.172.116.0/22 268764 -45.172.120.0/22 268765 -45.172.124.0/22 268769 -45.172.128.0/22 268770 -45.172.132.0/22 268771 -45.172.148.0/22 268775 -45.172.152.0/23 27847 -45.172.158.0/23 268784 -45.172.160.0/22 268785 -45.172.164.0/22 268778 -45.172.168.0/22 268786 -45.172.172.0/22 268822 -45.172.176.0/23 267791 -45.172.178.0/23 267810 -45.172.180.0/22 268772 -45.172.184.0/24 267796 -45.172.188.0/22 267792 -45.172.196.0/22 268795 -45.172.200.0/22 268824 -45.172.204.0/22 268787 -45.172.208.0/22 264100 -45.172.212.0/22 268796 -45.172.216.0/23 268794 -45.172.218.0/24 267810 -45.172.219.0/24 267824 -45.172.220.0/23 267824 -45.172.222.0/23 267823 -45.172.224.0/23 267830 -45.172.226.0/24 267830 -45.172.228.0/22 267795 -45.172.232.0/22 268800 -45.172.236.0/22 268781 -45.172.240.0/22 268782 -45.172.244.0/22 268797 -45.172.248.0/22 267801 -45.172.252.0/22 268834 -45.173.0.0/22 61451 -45.173.4.0/24 267857 -45.173.5.0/24 262186 -45.173.6.0/23 262191 -45.173.8.0/22 262186 -45.173.12.0/24 267823 -45.173.13.0/24 268807 -45.173.14.0/23 267799 -45.173.16.0/22 267798 -45.173.20.0/22 268792 -45.173.24.0/22 268788 -45.173.28.0/22 268789 -45.173.32.0/22 268808 -45.173.36.0/22 268790 -45.173.40.0/24 267802 -45.173.44.0/24 267799 -45.173.45.0/24 268826 -45.173.46.0/24 268843 -45.173.47.0/24 268958 -45.173.48.0/22 268793 -45.173.52.0/23 267825 -45.173.56.0/22 267860 -45.173.60.0/22 264742 -45.173.68.0/22 267807 -45.173.72.0/22 267815 -45.173.76.0/22 268801 -45.173.80.0/22 268802 -45.173.84.0/23 268860 -45.173.87.0/24 268860 -45.173.88.0/23 268819 -45.173.100.0/22 268809 -45.173.104.0/22 268804 -45.173.108.0/22 268805 -45.173.112.0/22 264826 -45.173.116.0/22 268810 -45.173.120.0/22 267818 -45.173.124.0/22 268811 -45.173.128.0/22 267826 -45.173.132.0/22 268828 -45.173.136.0/22 268813 -45.173.140.0/22 268814 -45.173.144.0/22 268831 -45.173.148.0/22 268832 -45.173.152.0/22 268815 -45.173.156.0/22 268816 -45.173.160.0/23 268821 -45.173.162.0/23 268830 -45.173.164.0/22 268817 -45.173.168.0/22 52399 -45.173.176.0/22 268818 -45.173.180.0/24 267806 -45.173.181.0/24 267827 -45.173.182.0/23 267827 -45.173.184.0/22 268823 -45.173.188.0/22 268886 -45.173.192.0/22 267798 -45.173.196.0/22 267809 -45.173.200.0/22 267831 -45.173.204.0/22 267813 -45.173.208.0/22 267812 -45.173.212.0/22 264758 -45.173.216.0/22 267828 -45.173.220.0/22 268829 -45.173.224.0/22 268835 -45.173.228.0/22 263238 -45.173.232.0/22 268833 -45.173.236.0/22 268840 -45.173.240.0/22 268845 -45.173.244.0/22 267816 -45.173.248.0/22 268839 -45.173.252.0/22 268847 -45.174.0.0/22 268841 -45.174.4.0/22 268914 -45.174.8.0/24 12684 -45.174.9.0/24 268844 -45.174.10.0/23 268938 -45.174.12.0/22 268915 -45.174.16.0/22 268878 -45.174.28.0/22 268836 -45.174.32.0/22 268837 -45.174.36.0/22 268838 -45.174.40.0/22 268842 -45.174.44.0/23 28428 -45.174.48.0/22 267847 -45.174.52.0/22 267867 -45.174.60.0/22 267821 -45.174.64.0/22 268851 -45.174.68.0/23 265577 -45.174.70.0/24 265577 -45.174.72.0/22 28433 -45.174.76.0/22 28431 -45.174.80.0/22 268887 -45.174.84.0/24 11172 -45.174.86.0/23 28387 -45.174.88.0/24 18734 -45.174.92.0/22 28429 -45.174.96.0/23 268895 -45.174.98.0/23 265568 -45.174.100.0/22 268848 -45.174.108.0/24 265574 -45.174.112.0/22 268855 -45.174.116.0/22 268862 -45.174.120.0/22 268861 -45.174.128.0/24 268850 -45.174.129.0/24 267820 -45.174.130.0/23 267820 -45.174.135.0/24 28329 -45.174.136.0/22 268865 -45.174.140.0/22 268853 -45.174.144.0/22 268854 -45.174.148.0/22 267829 -45.174.152.0/22 268856 -45.174.156.0/22 268857 -45.174.160.0/22 268858 -45.174.164.0/22 268859 -45.174.172.0/22 262913 -45.174.176.0/23 268863 -45.174.180.0/22 268866 -45.174.184.0/22 268870 -45.174.188.0/22 268986 -45.174.192.0/22 268864 -45.174.196.0/22 3549 -45.174.200.0/24 265575 -45.174.212.0/23 268867 -45.174.216.0/22 268868 -45.174.220.0/22 268869 -45.174.224.0/23 267842 -45.174.226.0/24 267877 -45.174.227.0/24 267855 -45.174.228.0/22 265534 -45.174.232.0/22 268908 -45.174.236.0/22 268873 -45.174.240.0/24 265583 -45.174.248.0/22 265582 -45.174.252.0/24 265580 -45.174.254.0/24 265580 -45.175.0.0/22 268871 -45.175.4.0/22 268872 -45.175.8.0/22 269067 -45.175.16.0/22 268875 -45.175.20.0/24 267832 -45.175.21.0/24 7049 -45.175.22.0/24 267892 -45.175.23.0/24 268889 -45.175.24.0/22 268879 -45.175.28.0/22 268880 -45.175.32.0/22 268881 -45.175.39.0/24 23146 -45.175.40.0/22 265816 -45.175.44.0/22 268937 -45.175.48.0/22 268884 -45.175.52.0/22 268882 -45.175.56.0/22 268883 -45.175.60.0/22 268885 -45.175.64.0/22 263686 -45.175.68.0/22 267838 -45.175.72.0/22 268888 -45.175.76.0/22 268890 -45.175.80.0/22 268891 -45.175.84.0/22 268905 -45.175.88.0/22 268892 -45.175.92.0/22 268893 -45.175.96.0/22 268907 -45.175.100.0/22 267833 -45.175.104.0/22 268900 -45.175.108.0/22 268901 -45.175.112.0/22 268906 -45.175.116.0/22 268894 -45.175.120.0/22 268911 -45.175.124.0/22 268896 -45.175.128.0/22 268897 -45.175.132.0/22 268898 -45.175.136.0/23 267850 -45.175.138.0/24 267850 -45.175.139.0/24 27951 -45.175.140.0/22 265663 -45.175.144.0/22 268899 -45.175.148.0/22 267878 -45.175.152.0/22 267874 -45.175.156.0/22 267837 -45.175.160.0/22 267835 -45.175.164.0/24 267849 -45.175.165.0/24 267699 -45.175.168.0/22 268916 -45.175.172.0/22 268902 -45.175.176.0/22 268917 -45.175.180.0/22 268903 -45.175.184.0/23 268904 -45.175.186.0/23 260984 -45.175.188.0/22 268918 -45.175.192.0/22 268919 -45.175.196.0/22 268920 -45.175.200.0/22 268909 -45.175.204.0/22 268921 -45.175.208.0/22 268910 -45.175.212.0/22 267840 -45.175.216.0/22 268922 -45.175.220.0/22 268941 -45.175.224.0/23 268912 -45.175.228.0/22 268913 -45.175.232.0/22 265586 -45.175.236.0/22 265587 -45.175.240.0/22 268936 -45.175.244.0/22 268923 -45.175.248.0/22 269096 -45.176.0.0/22 268924 -45.176.4.0/22 268925 -45.176.8.0/22 267856 -45.176.12.0/22 268928 -45.176.16.0/22 268926 -45.176.20.0/22 267910 -45.176.24.0/22 268939 -45.176.28.0/22 268927 -45.176.32.0/22 267875 -45.176.36.0/22 268968 -45.176.40.0/22 268929 -45.176.44.0/22 268930 -45.176.48.0/22 268931 -45.176.52.0/22 268974 -45.176.56.0/22 268969 -45.176.60.0/22 268932 -45.176.64.0/22 268935 -45.176.68.0/23 268933 -45.176.70.0/23 27951 -45.176.72.0/22 268934 -45.176.76.0/22 268970 -45.176.80.0/22 269011 -45.176.84.0/23 267896 -45.176.86.0/23 267872 -45.176.88.0/22 267864 -45.176.92.0/23 267845 -45.176.94.0/24 267845 -45.176.100.0/22 268988 -45.176.104.0/22 268997 -45.176.112.0/22 269035 -45.176.116.0/22 265703 -45.176.120.0/22 269040 -45.176.124.0/23 268947 -45.176.126.0/24 268947 -45.176.132.0/22 268942 -45.176.136.0/22 268943 -45.176.140.0/22 268944 -45.176.144.0/22 268945 -45.176.150.0/23 269006 -45.176.152.0/22 269007 -45.176.156.0/22 268946 -45.176.160.0/22 269002 -45.176.164.0/23 267894 -45.176.168.0/22 268959 -45.176.172.0/22 268948 -45.176.176.0/22 268965 -45.176.180.0/22 268949 -45.176.184.0/22 268950 -45.176.192.0/24 267868 -45.176.193.0/24 27951 -45.176.194.0/23 267854 -45.176.196.0/22 268951 -45.176.200.0/22 268966 -45.176.204.0/22 268952 -45.176.208.0/22 268953 -45.176.212.0/22 268972 -45.176.216.0/22 268954 -45.176.220.0/22 267460 -45.176.224.0/22 268955 -45.176.228.0/22 268956 -45.176.232.0/23 267869 -45.176.234.0/23 27951 -45.176.240.0/22 268960 -45.176.244.0/23 268957 -45.176.246.0/23 268961 -45.176.248.0/22 268977 -45.176.252.0/22 268973 -45.177.0.0/22 267862 -45.177.4.0/22 268962 -45.177.8.0/22 268967 -45.177.12.0/22 268978 -45.177.16.0/22 267885 -45.177.24.0/22 269010 -45.177.28.0/22 268963 -45.177.32.0/22 268984 -45.177.36.0/22 268964 -45.177.44.0/22 268979 -45.177.48.0/22 268971 -45.177.53.0/24 19429 -45.177.55.0/24 267917 -45.177.56.0/22 268975 -45.177.60.0/22 269031 -45.177.64.0/22 267870 -45.177.68.0/22 28100 -45.177.72.0/23 267921 -45.177.74.0/24 267921 -45.177.76.0/22 268976 -45.177.80.0/22 267897 -45.177.84.0/22 269033 -45.177.88.0/24 267861 -45.177.92.0/24 52308 -45.177.93.0/24 267891 -45.177.94.0/23 267891 -45.177.96.0/22 267863 -45.177.100.0/22 13786 -45.177.104.0/22 268980 -45.177.109.0/24 267857 -45.177.112.0/22 268981 -45.177.116.0/22 268991 -45.177.120.0/22 268987 -45.177.124.0/22 267881 -45.177.128.0/22 267895 -45.177.132.0/22 268982 -45.177.136.0/22 268983 -45.177.140.0/22 268994 -45.177.144.0/22 264732 -45.177.148.0/22 268998 -45.177.152.0/22 268985 -45.177.156.0/22 268992 -45.177.160.0/22 269039 -45.177.164.0/22 269029 -45.177.168.0/22 268989 -45.177.172.0/22 269038 -45.177.176.0/22 265530 -45.177.184.0/22 268993 -45.177.188.0/22 268990 -45.177.192.0/22 269030 -45.177.196.0/23 263189 -45.177.199.0/24 269101 -45.177.200.0/23 267889 -45.177.204.0/22 267883 -45.177.208.0/22 268999 -45.177.212.0/22 268995 -45.177.216.0/22 269000 -45.177.220.0/23 269049 -45.177.223.0/24 269049 -45.177.224.0/22 268996 -45.177.232.0/22 269001 -45.177.236.0/22 264679 -45.177.240.0/22 269050 -45.177.244.0/23 269003 -45.177.246.0/24 269003 -45.177.247.0/24 267313 -45.177.248.0/22 269013 -45.177.252.0/22 269081 -45.178.0.0/22 267882 -45.178.4.0/22 39782 -45.178.8.0/24 265816 -45.178.12.0/22 267890 -45.178.16.0/22 269057 -45.178.20.0/22 269015 -45.178.24.0/22 269016 -45.178.28.0/22 269004 -45.178.32.0/22 269005 -45.178.38.0/23 14522 -45.178.40.0/22 269009 -45.178.44.0/22 269087 -45.178.48.0/22 267905 -45.178.52.0/22 269776 -45.178.56.0/22 269008 -45.178.60.0/22 269017 -45.178.64.0/22 267902 -45.178.68.0/23 264758 -45.178.70.0/24 267822 -45.178.71.0/24 264758 -45.178.72.0/22 265590 -45.178.76.0/22 269090 -45.178.80.0/22 269012 -45.178.84.0/24 267918 -45.178.88.0/22 265591 -45.178.92.0/22 269032 -45.178.96.0/22 267899 -45.178.100.0/22 269024 -45.178.108.0/22 269034 -45.178.116.0/22 269018 -45.178.120.0/22 269019 -45.178.124.0/22 269020 -45.178.128.0/22 269025 -45.178.132.0/23 267908 -45.178.135.0/24 267908 -45.178.136.0/22 269021 -45.178.140.0/22 269026 -45.178.144.0/22 269022 -45.178.148.0/22 269023 -45.178.152.0/22 269046 -45.178.156.0/22 269027 -45.178.160.0/22 269055 -45.178.164.0/22 267888 -45.178.168.0/22 269041 -45.178.172.0/22 269036 -45.178.176.0/22 269061 -45.178.180.0/22 269098 -45.178.184.0/23 27690 -45.178.188.0/23 269091 -45.178.200.0/22 269028 -45.178.204.0/22 269056 -45.178.208.0/22 269047 -45.178.212.0/22 269111 -45.178.216.0/22 269071 -45.178.220.0/22 269042 -45.178.224.0/23 269048 -45.178.226.0/23 269054 -45.178.228.0/22 269043 -45.178.232.0/22 269044 -45.178.236.0/22 269102 -45.178.240.0/23 269115 -45.178.242.0/24 269132 -45.178.243.0/24 269045 -45.178.244.0/22 267915 -45.178.252.0/22 264643 -45.179.0.0/22 269112 -45.179.4.0/22 269120 -45.179.8.0/22 269058 -45.179.12.0/22 267923 -45.179.16.0/22 269059 -45.179.20.0/22 269062 -45.179.24.0/22 269063 -45.179.32.0/22 269065 -45.179.36.0/22 269073 -45.179.40.0/22 269082 -45.179.44.0/22 269077 -45.179.48.0/22 269060 -45.179.52.0/23 269053 -45.179.54.0/23 267903 -45.179.57.0/24 269066 -45.179.60.0/24 267903 -45.179.61.0/24 269133 -45.179.62.0/23 269086 -45.179.64.0/22 269113 -45.179.68.0/22 269109 -45.179.72.0/22 267912 -45.179.76.0/22 269083 -45.179.80.0/22 269068 -45.179.84.0/22 269069 -45.179.88.0/22 269070 -45.179.92.0/22 267913 -45.179.96.0/22 269074 -45.179.100.0/22 269088 -45.179.104.0/23 269129 -45.179.106.0/24 269129 -45.179.108.0/22 269075 -45.179.112.0/22 269119 -45.179.116.0/22 269076 -45.179.120.0/22 269084 -45.179.124.0/22 269078 -45.179.128.0/22 269085 -45.179.132.0/22 269079 -45.179.136.0/22 269080 -45.179.140.0/22 267916 -45.179.144.0/22 269089 -45.179.148.0/22 269107 -45.179.152.0/22 267914 -45.179.156.0/22 269097 -45.179.160.0/22 269743 -45.179.164.0/22 269730 -45.179.168.0/22 269092 -45.179.172.0/22 269093 -45.179.176.0/22 269094 -45.179.180.0/22 269095 -45.179.184.0/22 269099 -45.179.188.0/22 269195 -45.179.192.0/22 267920 -45.179.196.0/23 267917 -45.179.198.0/24 267927 -45.179.204.0/22 269100 -45.179.208.0/22 269116 -45.179.212.0/22 269103 -45.179.216.0/22 269193 -45.179.220.0/24 269121 -45.179.223.0/24 269121 -45.179.224.0/22 269104 -45.179.228.0/22 269118 -45.179.232.0/22 269122 -45.179.236.0/22 269105 -45.179.240.0/22 269144 -45.179.244.0/22 262186 -45.179.248.0/22 269108 -45.179.252.0/22 269726 -45.180.0.0/22 269123 -45.180.4.0/22 269110 -45.180.8.0/23 265592 -45.180.16.0/22 269165 -45.180.22.0/23 269742 -45.180.28.0/22 269114 -45.180.32.0/22 269162 -45.180.36.0/22 269124 -45.180.40.0/22 269130 -45.180.44.0/24 269742 -45.180.45.0/24 267924 -45.180.46.0/23 267924 -45.180.48.0/22 269125 -45.180.56.0/22 269131 -45.180.60.0/22 266725 -45.180.64.0/22 269164 -45.180.72.0/22 269126 -45.180.76.0/22 267925 -45.180.80.0/23 269431 -45.180.82.0/23 262186 -45.180.84.0/22 269139 -45.180.88.0/22 269127 -45.180.92.0/22 269167 -45.180.96.0/22 269128 -45.180.100.0/22 269173 -45.180.104.0/22 269174 -45.180.108.0/22 269186 -45.180.112.0/24 262186 -45.180.113.0/24 269191 -45.180.114.0/24 269731 -45.180.116.0/22 269271 -45.180.120.0/24 267932 -45.180.124.0/22 267931 -45.180.128.0/22 269134 -45.180.132.0/22 269135 -45.180.136.0/22 269136 -45.180.140.0/24 269728 -45.180.144.0/22 269137 -45.180.148.0/22 269138 -45.180.152.0/22 269140 -45.180.156.0/22 269141 -45.180.160.0/22 269142 -45.180.164.0/22 269143 -45.180.178.0/24 269404 -45.180.179.0/24 269849 -45.180.181.0/24 269725 -45.180.182.0/23 269725 -45.180.184.0/22 263524 -45.180.188.0/22 269154 -45.180.192.0/23 269146 -45.180.196.0/22 269147 -45.180.200.0/22 269148 -45.180.204.0/22 269149 -45.180.208.0/22 269155 -45.180.212.0/22 269152 -45.180.216.0/22 269194 -45.180.220.0/22 269150 -45.180.224.0/22 269227 -45.180.228.0/22 269151 -45.180.232.0/23 28546 -45.180.236.0/22 269153 -45.180.240.0/22 269734 -45.180.244.0/22 265595 -45.180.248.0/22 269210 -45.180.252.0/22 269156 -45.181.0.0/22 269157 -45.181.4.0/23 269289 -45.181.6.0/24 269769 -45.181.7.0/24 269216 -45.181.8.0/22 269159 -45.181.12.0/22 265523 -45.181.16.0/22 269177 -45.181.20.0/22 269166 -45.181.24.0/22 269163 -45.181.28.0/22 269160 -45.181.32.0/22 269211 -45.181.36.0/23 269161 -45.181.38.0/24 269161 -45.181.43.0/24 269740 -45.181.44.0/22 267798 -45.181.48.0/22 269168 -45.181.52.0/22 269172 -45.181.56.0/22 269169 -45.181.60.0/22 269170 -45.181.64.0/22 269171 -45.181.68.0/22 269736 -45.181.72.0/22 269188 -45.181.77.0/24 269775 -45.181.78.0/23 269774 -45.181.80.0/22 269178 -45.181.84.0/22 269729 -45.181.88.0/22 269290 -45.181.92.0/22 269175 -45.181.96.0/22 269179 -45.181.100.0/22 269182 -45.181.104.0/22 269180 -45.181.108.0/22 269183 -45.181.112.0/22 269181 -45.181.116.0/22 269221 -45.181.120.0/22 269733 -45.181.124.0/22 269832 -45.181.128.0/22 264765 -45.181.132.0/22 269184 -45.181.136.0/22 269198 -45.181.144.0/22 269185 -45.181.148.0/22 269192 -45.181.152.0/22 269199 -45.181.156.0/22 269755 -45.181.160.0/22 269228 -45.181.164.0/22 269762 -45.181.168.0/22 269196 -45.181.172.0/22 269224 -45.181.176.0/22 263099 -45.181.180.0/22 269190 -45.181.184.0/22 269200 -45.181.192.0/22 269203 -45.181.196.0/22 269197 -45.181.200.0/22 269241 -45.181.204.0/24 269746 -45.181.206.0/24 269737 -45.181.207.0/24 27951 -45.181.208.0/22 269201 -45.181.212.0/22 269202 -45.181.216.0/22 269204 -45.181.220.0/22 269252 -45.181.224.0/22 269738 -45.181.228.0/23 269259 -45.181.230.0/24 269259 -45.181.232.0/22 269207 -45.181.236.0/22 269205 -45.181.240.0/22 269218 -45.181.248.0/22 269741 -45.181.252.0/22 269206 -45.182.0.0/22 269219 -45.182.4.0/24 269208 -45.182.8.0/22 269262 -45.182.12.0/22 269760 -45.182.16.0/22 269261 -45.182.20.0/23 263170 -45.182.22.0/23 263725 -45.182.24.0/22 269213 -45.182.32.0/22 269265 -45.182.41.0/24 269746 -45.182.42.0/24 269266 -45.182.44.0/22 269212 -45.182.48.0/22 269225 -45.182.52.0/22 269285 -45.182.56.0/22 269267 -45.182.60.0/22 269220 -45.182.64.0/22 269214 -45.182.68.0/22 269215 -45.182.72.0/22 269226 -45.182.76.0/22 269234 -45.182.80.0/22 269766 -45.182.84.0/22 269328 -45.182.88.0/22 269276 -45.182.92.0/22 269280 -45.182.96.0/22 269339 -45.182.100.0/22 269222 -45.182.104.0/22 61597 -45.182.108.0/22 269223 -45.182.112.0/22 269785 -45.182.116.0/24 269774 -45.182.117.0/24 27947 -45.182.118.0/24 269792 -45.182.119.0/24 269790 -45.182.120.0/22 269275 -45.182.124.0/22 269747 -45.182.128.0/22 269748 -45.182.136.0/22 269229 -45.182.140.0/23 269749 -45.182.144.0/22 269217 -45.182.148.0/22 269240 -45.182.152.0/22 269230 -45.182.156.0/22 269231 -45.182.160.0/22 269281 -45.182.164.0/22 269302 -45.182.168.0/22 269274 -45.182.172.0/22 269233 -45.182.176.0/22 269250 -45.182.186.0/23 269757 -45.182.188.0/24 269770 -45.182.189.0/24 207688 -45.182.190.0/23 262186 -45.182.192.0/22 269246 -45.182.196.0/23 269235 -45.182.198.0/23 1 -45.182.200.0/23 269236 -45.182.204.0/22 269237 -45.182.208.0/22 269238 -45.182.212.0/22 269251 -45.182.216.0/22 269239 -45.182.220.0/22 269768 -45.182.224.0/22 269242 -45.182.228.0/22 269247 -45.182.236.0/23 269753 -45.182.238.0/24 269753 -45.182.240.0/22 269243 -45.182.244.0/22 269244 -45.182.248.0/22 269245 -45.182.252.0/22 269248 -45.183.0.0/22 269249 -45.183.4.0/22 264773 -45.183.8.0/22 269269 -45.183.12.0/22 269253 -45.183.16.0/22 269254 -45.183.20.0/22 269309 -45.183.24.0/22 269255 -45.183.28.0/22 269258 -45.183.32.0/22 269310 -45.183.36.0/22 269256 -45.183.40.0/24 262186 -45.183.41.0/24 269758 -45.183.42.0/23 3549 -45.183.44.0/23 64116 -45.183.48.0/22 269319 -45.183.52.0/22 269759 -45.183.56.0/22 269263 -45.183.64.0/22 269264 -45.183.68.0/22 269273 -45.183.72.0/22 269321 -45.183.76.0/22 269333 -45.183.80.0/22 269270 -45.183.84.0/22 269268 -45.183.92.0/22 269272 -45.183.96.0/22 269279 -45.183.104.0/23 269324 -45.183.112.0/22 269286 -45.183.120.0/22 269399 -45.183.124.0/22 269330 -45.183.128.0/23 269277 -45.183.130.0/23 265090 -45.183.134.0/23 269282 -45.183.136.0/23 264668 -45.183.140.0/22 264824 -45.183.144.0/22 269287 -45.183.148.0/22 269398 -45.183.152.0/22 269283 -45.183.156.0/22 269781 -45.183.160.0/22 269278 -45.183.164.0/22 269288 -45.183.168.0/22 269297 -45.183.180.0/22 269337 -45.183.184.0/23 269797 -45.183.188.0/22 269298 -45.183.192.0/22 269306 -45.183.200.0/22 269403 -45.183.204.0/22 269284 -45.183.208.0/22 269291 -45.183.212.0/22 269292 -45.183.216.0/22 269360 -45.183.220.0/23 263763 -45.183.223.0/24 269406 -45.183.224.0/22 269312 -45.183.228.0/22 269293 -45.183.232.0/22 269294 -45.183.236.0/22 269295 -45.183.240.0/22 269299 -45.183.244.0/23 269346 -45.183.246.0/24 269400 -45.183.247.0/24 269777 -45.183.248.0/22 269300 -45.183.252.0/22 269301 -45.184.4.0/22 269438 -45.184.8.0/22 269307 -45.184.12.0/22 269313 -45.184.16.0/22 269308 -45.184.20.0/22 263684 -45.184.24.0/22 269303 -45.184.28.0/22 267564 -45.184.32.0/22 269353 -45.184.36.0/22 269305 -45.184.40.0/22 269325 -45.184.44.0/22 269311 -45.184.48.0/22 269314 -45.184.52.0/22 269315 -45.184.56.0/22 269316 -45.184.60.0/22 269317 -45.184.64.0/22 269320 -45.184.68.0/22 269359 -45.184.72.0/22 269326 -45.184.76.0/22 269322 -45.184.80.0/22 269323 -45.184.88.0/22 269334 -45.184.92.0/22 269780 -45.184.96.0/22 269335 -45.184.100.0/23 269769 -45.184.102.0/24 269791 -45.184.103.0/24 269771 -45.184.104.0/22 269823 -45.184.108.0/22 269783 -45.184.112.0/22 269396 -45.184.120.0/22 269459 -45.184.128.0/22 269329 -45.184.136.0/22 269382 -45.184.140.0/22 269340 -45.184.148.0/22 269341 -45.184.152.0/22 269817 -45.184.156.0/22 269794 -45.184.160.0/22 269383 -45.184.164.0/22 269401 -45.184.168.0/22 269331 -45.184.172.0/22 269332 -45.184.176.0/22 269392 -45.184.180.0/22 269393 -45.184.184.0/22 269338 -45.184.188.0/22 269347 -45.184.192.0/22 269364 -45.184.196.0/22 269342 -45.184.200.0/22 269354 -45.184.204.0/22 269343 -45.184.208.0/22 269361 -45.184.212.0/22 269344 -45.184.216.0/22 269345 -45.184.220.0/22 269519 -45.184.224.0/23 269805 -45.184.226.0/24 265667 -45.184.228.0/24 269795 -45.184.231.0/24 269795 -45.184.232.0/22 269348 -45.184.236.0/22 269349 -45.184.240.0/22 269362 -45.184.244.0/22 269350 -45.184.248.0/22 269782 -45.184.252.0/22 269452 -45.185.0.0/22 269351 -45.185.4.0/22 269355 -45.185.8.0/22 269369 -45.185.12.0/22 269352 -45.185.16.0/22 3549 -45.185.20.0/22 263222 -45.185.24.0/22 269356 -45.185.31.0/24 269796 -45.185.32.0/22 269363 -45.185.36.0/22 269441 -45.185.40.0/23 269365 -45.185.42.0/24 269543 -45.185.44.0/22 269357 -45.185.52.0/22 269800 -45.185.56.0/22 269366 -45.185.60.0/23 269407 -45.185.62.0/24 269407 -45.185.64.0/24 269427 -45.185.68.0/22 269370 -45.185.76.0/22 269367 -45.185.80.0/22 269371 -45.185.84.0/22 269408 -45.185.88.0/22 269379 -45.185.92.0/22 269380 -45.185.96.0/22 269372 -45.185.100.0/22 269368 -45.185.104.0/22 269375 -45.185.108.0/22 269389 -45.185.112.0/22 269373 -45.185.120.0/22 269381 -45.185.124.0/22 269374 -45.185.128.0/24 52468 -45.185.132.0/22 269376 -45.185.136.0/22 269377 -45.185.140.0/22 269378 -45.185.144.0/22 269480 -45.185.148.0/24 269807 -45.185.150.0/23 269560 -45.185.152.0/22 269386 -45.185.156.0/22 269384 -45.185.164.0/22 269486 -45.185.168.0/22 269387 -45.185.172.0/22 269391 -45.185.176.0/22 269397 -45.185.180.0/22 269388 -45.185.184.0/23 269807 -45.185.186.0/23 269811 -45.185.192.0/23 269553 -45.185.194.0/23 267463 -45.185.196.0/23 269390 -45.185.200.0/22 269402 -45.185.208.0/22 269559 -45.185.216.0/22 269394 -45.185.220.0/22 64117 -45.185.224.0/22 269405 -45.185.232.0/22 269395 -45.185.236.0/22 269565 -45.185.240.0/24 265601 -45.185.241.0/24 20454 -45.185.244.0/24 265602 -45.185.248.0/22 265599 -45.185.252.0/23 265600 -45.186.0.0/22 269502 -45.186.4.0/24 264668 -45.186.6.0/24 269806 -45.186.8.0/22 269453 -45.186.12.0/22 269816 -45.186.16.0/22 269468 -45.186.20.0/23 269798 -45.186.22.0/24 269798 -45.186.32.0/22 269425 -45.186.36.0/22 269409 -45.186.40.0/22 269410 -45.186.44.0/23 269808 -45.186.46.0/24 269808 -45.186.48.0/22 269426 -45.186.52.0/22 269411 -45.186.56.0/22 269412 -45.186.60.0/22 269413 -45.186.64.0/22 269418 -45.186.72.0/22 269414 -45.186.76.0/22 269415 -45.186.80.0/23 269416 -45.186.84.0/22 269430 -45.186.88.0/22 269417 -45.186.92.0/22 268183 -45.186.96.0/22 269429 -45.186.100.0/22 269422 -45.186.104.0/22 265684 -45.186.108.0/22 269815 -45.186.112.0/22 269419 -45.186.116.0/22 269420 -45.186.120.0/22 269423 -45.186.132.0/22 269424 -45.186.140.0/24 269838 -45.186.142.0/24 269549 -45.186.144.0/22 269832 -45.186.148.0/22 269828 -45.186.152.0/22 265747 -45.186.156.0/22 269499 -45.186.160.0/22 269500 -45.186.164.0/22 269444 -45.186.168.0/22 269432 -45.186.172.0/22 269518 -45.186.176.0/22 269449 -45.186.180.0/22 269445 -45.186.184.0/22 269446 -45.186.188.0/22 269434 -45.186.192.0/22 269458 -45.186.196.0/22 269435 -45.186.200.0/22 269820 -45.186.204.0/22 269817 -45.186.208.0/22 269827 -45.186.212.0/22 269436 -45.186.216.0/22 269454 -45.186.220.0/22 269437 -45.186.228.0/22 269439 -45.186.236.0/23 269514 -45.186.239.0/24 269514 -45.186.240.0/22 269442 -45.186.244.0/22 269526 -45.186.248.0/22 269455 -45.186.252.0/22 269826 -45.187.4.0/22 8053 -45.187.8.0/22 269460 -45.187.16.0/22 269448 -45.187.20.0/22 269483 -45.187.24.0/22 269469 -45.187.28.0/22 269450 -45.187.32.0/22 269524 -45.187.36.0/22 269847 -45.187.40.0/22 269484 -45.187.44.0/24 265603 -45.187.48.0/24 269855 -45.187.52.0/22 269456 -45.187.56.0/22 269546 -45.187.60.0/22 269457 -45.187.64.0/22 269528 -45.187.68.0/23 269461 -45.187.72.0/22 269470 -45.187.76.0/24 265816 -45.187.80.0/22 269600 -45.187.84.0/22 269589 -45.187.92.0/22 269829 -45.187.96.0/22 269462 -45.187.100.0/22 269493 -45.187.104.0/22 269494 -45.187.108.0/22 269463 -45.187.112.0/22 269464 -45.187.118.0/23 269471 -45.187.124.0/22 269478 -45.187.128.0/22 269466 -45.187.136.0/22 269479 -45.187.140.0/22 269467 -45.187.144.0/22 269495 -45.187.152.0/22 269472 -45.187.156.0/22 269496 -45.187.164.0/22 269540 -45.187.168.0/22 269473 -45.187.172.0/22 269474 -45.187.176.0/22 269475 -45.187.180.0/22 269481 -45.187.188.0/22 269555 -45.187.192.0/22 269477 -45.187.196.0/22 269556 -45.187.200.0/22 269485 -45.187.204.0/22 269497 -45.187.212.0/22 269554 -45.187.216.0/22 269498 -45.187.220.0/22 269487 -45.187.224.0/22 269506 -45.187.228.0/22 269488 -45.187.232.0/22 269507 -45.187.236.0/22 269489 -45.187.240.0/22 269490 -45.187.244.0/22 269491 -45.187.250.0/23 269525 -45.187.252.0/22 269513 -45.188.0.0/22 269840 -45.188.4.0/22 269564 -45.188.8.0/22 269566 -45.188.16.0/22 269501 -45.188.28.0/22 269504 -45.188.32.0/22 269520 -45.188.40.0/22 269505 -45.188.48.0/22 15695 -45.188.52.0/22 269571 -45.188.56.0/23 269825 -45.188.60.0/22 269585 -45.188.64.0/22 269522 -45.188.68.0/23 269523 -45.188.72.0/22 269517 -45.188.80.0/22 269587 -45.188.84.0/22 269516 -45.188.96.0/24 269515 -45.188.97.0/24 52688 -45.188.98.0/23 52688 -45.188.100.0/22 269511 -45.188.104.0/22 269512 -45.188.108.0/22 265607 -45.188.112.0/22 269510 -45.188.116.0/22 269521 -45.188.120.0/24 269509 -45.188.128.0/22 52468 -45.188.132.0/24 269544 -45.188.134.0/23 269631 -45.188.136.0/22 52496 -45.188.140.0/22 269532 -45.188.144.0/22 269536 -45.188.156.0/22 269581 -45.188.160.0/22 22080 -45.188.168.0/22 269537 -45.188.176.0/22 269535 -45.188.180.0/22 269529 -45.188.184.0/22 269530 -45.188.188.0/22 52496 -45.188.192.0/22 269599 -45.188.196.0/22 269533 -45.188.200.0/22 269538 -45.188.207.0/24 268707 -45.188.208.0/23 269786 -45.188.212.0/22 269834 -45.188.216.0/23 269884 -45.188.218.0/24 269562 -45.188.219.0/24 269844 -45.188.220.0/22 269541 -45.188.224.0/22 269542 -45.188.228.0/24 269852 -45.188.229.0/24 27668 -45.188.232.0/22 264744 -45.188.236.0/22 269595 -45.188.240.0/22 269561 -45.188.244.0/22 269551 -45.188.248.0/22 269864 -45.188.252.0/22 269552 -45.189.0.0/22 269648 -45.189.4.0/22 269557 -45.189.12.0/22 269547 -45.189.16.0/22 269548 -45.189.20.0/22 269649 -45.189.28.0/22 269558 -45.189.32.0/23 269576 -45.189.36.0/22 13489 -45.189.40.0/22 269570 -45.189.44.0/22 269577 -45.189.48.0/22 269568 -45.189.52.0/22 269578 -45.189.60.0/24 52276 -45.189.64.0/22 269586 -45.189.68.0/22 269572 -45.189.72.0/22 269573 -45.189.76.0/22 269854 -45.189.80.0/22 269580 -45.189.84.0/22 269609 -45.189.88.0/22 269574 -45.189.92.0/22 269593 -45.189.96.0/22 269579 -45.189.100.0/22 269592 -45.189.104.0/22 269575 -45.189.108.0/22 269843 -45.189.112.0/22 266783 -45.189.116.0/23 269857 -45.189.118.0/24 269857 -45.189.119.0/24 27817 -45.189.120.0/22 269582 -45.189.124.0/22 269583 -45.189.128.0/22 269584 -45.189.132.0/22 269588 -45.189.136.0/22 269590 -45.189.140.0/22 269591 -45.189.144.0/22 269596 -45.189.160.0/22 269724 -45.189.164.0/22 270237 -45.189.168.0/22 269666 -45.189.176.0/22 269597 -45.189.180.0/22 269598 -45.189.188.0/22 64116 -45.189.200.0/22 269872 -45.189.208.0/22 269602 -45.189.220.0/23 269615 -45.189.224.0/22 269611 -45.189.228.0/22 269612 -45.189.235.0/24 27951 -45.189.240.0/23 269604 -45.189.244.0/22 269605 -45.189.248.0/22 269603 -45.189.252.0/22 265613 -45.190.0.0/22 269606 -45.190.8.0/23 269617 -45.190.10.0/24 269617 -45.190.14.0/24 269613 -45.190.16.0/22 269875 -45.190.20.0/22 269608 -45.190.36.0/22 269623 -45.190.40.0/22 269633 -45.190.44.0/22 269619 -45.190.48.0/22 52648 -45.190.52.0/22 269627 -45.190.60.0/22 269620 -45.190.64.0/22 269880 -45.190.72.0/22 269702 -45.190.80.0/22 269621 -45.190.92.0/22 269878 -45.190.96.0/22 269645 -45.190.108.0/22 269626 -45.190.112.0/22 269641 -45.190.116.0/22 269629 -45.190.120.0/22 269634 -45.190.128.0/22 269660 -45.190.132.0/22 269638 -45.190.136.0/22 269647 -45.190.140.0/22 269661 -45.190.152.0/22 269639 -45.190.156.0/22 269663 -45.190.160.0/22 269657 -45.190.168.0/23 269901 -45.190.172.0/22 269642 -45.190.176.0/23 269643 -45.190.192.0/22 269868 -45.190.196.0/22 265609 -45.190.204.0/22 269630 -45.190.208.0/22 269635 -45.190.212.0/22 269636 -45.190.216.0/22 269637 -45.190.220.0/22 269651 -45.190.224.0/22 269652 -45.190.232.0/22 269654 -45.190.240.0/22 265615 -45.190.244.0/22 269655 -45.190.248.0/22 269656 -45.191.0.0/22 64114 -45.191.8.0/22 269698 -45.191.12.0/22 270258 -45.191.16.0/23 269658 -45.191.18.0/23 269679 -45.191.20.0/22 269664 -45.191.24.0/22 269659 -45.191.32.0/22 269665 -45.191.36.0/22 270246 -45.191.48.0/22 262213 -45.191.52.0/22 265619 -45.191.60.0/22 269667 -45.191.64.0/22 269670 -45.191.68.0/22 269678 -45.191.76.0/22 269700 -45.191.84.0/22 266721 -45.191.88.0/22 269887 -45.191.124.0/22 269671 -45.191.128.0/22 269689 -45.191.132.0/22 269672 -45.191.136.0/22 269673 -45.191.140.0/22 269674 -45.191.144.0/22 269690 -45.191.148.0/22 269676 -45.191.152.0/22 269677 -45.191.160.0/22 269707 -45.191.168.0/22 269682 -45.191.180.0/22 269691 -45.191.184.0/22 269687 -45.191.200.0/22 269692 -45.191.204.0/22 269684 -45.191.212.0/22 269686 -45.191.216.0/22 269688 -45.191.220.0/22 269694 -45.191.224.0/22 269890 -45.191.228.0/22 52614 -45.191.236.0/22 269693 -45.191.240.0/22 270240 -45.191.244.0/22 269899 -45.191.248.0/24 269701 -45.191.252.0/23 269699 -45.191.254.0/24 269699 -45.192.0.0/18 55933 -45.192.64.0/18 134548 -45.192.128.0/19 328170 -45.192.160.0/20 137443 -45.192.176.0/23 58879 -45.192.178.0/24 58879 -45.192.180.0/22 137443 -45.192.184.0/22 137443 -45.192.188.0/23 137443 -45.192.190.0/24 137443 -45.192.192.0/18 134548 -45.193.0.0/16 134548 -45.194.0.0/22 328170 -45.194.4.0/24 134548 -45.194.5.0/24 328170 -45.194.6.0/23 328170 -45.194.8.0/21 328170 -45.194.16.0/20 328170 -45.194.32.0/19 328170 -45.194.64.0/18 134548 -45.194.128.0/17 134548 -45.195.1.0/24 64021 -45.195.2.0/23 132839 -45.195.4.0/22 4809 -45.195.8.0/21 40065 -45.195.16.0/21 137263 -45.195.24.0/24 137263 -45.195.25.0/24 133115 -45.195.26.0/23 138570 -45.195.29.0/24 204333 -45.195.32.0/20 137577 -45.195.48.0/22 137577 -45.195.62.0/23 40065 -45.195.64.0/21 40065 -45.195.72.0/22 40065 -45.195.76.0/24 40065 -45.195.77.0/24 139659 -45.195.78.0/24 63199 -45.195.80.0/22 132883 -45.195.84.0/22 134548 -45.195.88.0/21 137941 -45.195.96.0/20 134548 -45.195.112.0/20 62468 -45.195.128.0/22 133771 -45.195.132.0/24 136950 -45.195.133.0/24 136933 -45.195.134.0/24 134176 -45.195.136.0/23 40065 -45.195.138.0/24 135596 -45.195.139.0/24 134548 -45.195.140.0/23 133201 -45.195.142.0/24 133201 -45.195.143.0/24 134548 -45.195.144.0/23 134705 -45.195.146.0/24 38197 -45.195.147.0/24 131188 -45.195.148.0/24 136933 -45.195.149.0/24 137233 -45.195.150.0/24 135026 -45.195.151.0/24 22769 -45.195.152.0/22 40065 -45.195.156.0/24 40065 -45.195.157.0/24 139640 -45.195.158.0/23 40065 -45.195.160.0/19 132839 -45.195.192.0/22 133771 -45.195.196.0/23 40065 -45.195.198.0/24 137962 -45.195.199.0/24 132839 -45.195.200.0/24 135330 -45.195.201.0/24 136970 -45.195.202.0/24 136950 -45.195.203.0/24 136970 -45.195.204.0/24 136950 -45.195.205.0/24 136933 -45.195.206.0/24 136038 -45.195.208.0/20 134705 -45.195.224.0/22 134705 -45.195.228.0/22 133771 -45.195.232.0/21 134705 -45.195.240.0/21 134705 -45.195.250.0/24 137443 -45.195.251.0/24 135026 -45.195.252.0/22 133771 -45.196.0.0/21 328170 -45.196.8.0/23 328170 -45.196.10.0/24 134548 -45.196.11.0/24 328170 -45.196.12.0/22 328170 -45.196.16.0/20 328170 -45.196.32.0/19 328170 -45.196.64.0/18 134548 -45.196.128.0/18 328170 -45.196.192.0/18 134548 -45.197.0.0/19 328170 -45.197.32.0/23 328170 -45.197.34.0/24 35916 -45.197.35.0/24 328170 -45.197.36.0/22 328170 -45.197.40.0/21 328170 -45.197.48.0/20 328170 -45.197.64.0/18 134548 -45.197.128.0/19 133201 -45.197.160.0/19 328170 -45.197.192.0/18 328170 -45.198.0.0/16 328170 -45.199.0.0/17 134548 -45.199.128.0/20 133201 -45.199.144.0/22 133201 -45.199.148.0/22 64096 -45.199.152.0/24 35916 -45.199.153.0/24 40676 -45.199.154.0/24 40065 -45.199.155.0/24 35916 -45.199.156.0/24 35916 -45.199.157.0/24 26484 -45.199.158.0/24 26484 -45.199.159.0/24 55330 -45.199.160.0/23 393294 -45.199.162.0/23 19257 -45.199.164.0/22 19257 -45.199.168.0/22 19257 -45.199.172.0/24 14821 -45.199.173.0/24 19257 -45.199.174.0/23 19257 -45.199.176.0/24 31863 -45.199.177.0/24 54600 -45.199.178.0/24 40676 -45.199.179.0/24 133199 -45.199.180.0/24 133199 -45.199.181.0/24 139659 -45.199.182.0/24 139659 -45.199.183.0/24 21859 -45.199.184.0/24 18530 -45.199.185.0/24 46844 -45.199.186.0/23 54600 -45.199.188.0/23 54600 -45.199.190.0/24 46573 -45.199.191.0/24 13768 -45.199.192.0/18 8100 -45.200.0.0/15 328170 -45.202.0.0/24 134548 -45.202.1.0/24 139086 -45.202.2.0/23 139086 -45.202.4.0/22 62468 -45.202.8.0/23 137443 -45.202.10.0/24 132839 -45.202.11.0/24 20473 -45.202.12.0/22 132839 -45.202.16.0/20 135607 -45.202.32.0/19 139086 -45.202.64.0/18 139086 -45.202.128.0/18 132839 -45.202.192.0/19 132839 -45.202.224.0/20 132839 -45.202.240.0/20 40065 -45.203.0.0/18 328170 -45.203.64.0/18 134548 -45.203.128.0/17 328170 -45.204.0.0/24 134548 -45.204.1.0/24 40065 -45.204.2.0/23 133199 -45.204.4.0/22 137443 -45.204.8.0/21 132813 -45.204.16.0/21 55720 -45.204.24.0/21 135357 -45.204.32.0/19 8100 -45.204.64.0/21 137443 -45.204.72.0/21 134705 -45.204.80.0/22 134705 -45.204.84.0/22 138392 -45.204.88.0/21 138392 -45.204.96.0/19 134705 -45.204.128.0/19 134705 -45.204.160.0/20 134705 -45.204.176.0/23 134705 -45.204.178.0/24 134705 -45.204.179.0/24 26484 -45.204.180.0/22 134705 -45.204.184.0/21 134705 -45.204.192.0/18 134705 -45.205.0.0/24 35916 -45.205.1.0/24 54600 -45.205.2.0/23 40065 -45.205.4.0/22 139355 -45.205.8.0/21 40065 -45.205.16.0/20 132839 -45.205.32.0/19 40065 -45.205.64.0/18 54600 -45.205.128.0/18 132839 -45.205.192.0/18 26484 -45.206.0.0/16 328170 -45.207.0.0/18 134548 -45.207.64.0/18 136800 -45.207.128.0/17 134548 -45.208.0.0/15 37140 -45.212.0.0/14 37287 -45.216.0.0/14 36925 -45.220.0.0/19 327901 -45.220.32.0/20 327999 -45.220.48.0/24 328499 -45.220.49.0/24 328119 -45.220.50.0/23 328115 -45.220.52.0/22 328107 -45.220.56.0/21 328112 -45.220.64.0/18 22769 -45.220.128.0/17 32653 -45.221.0.0/22 715 -45.221.4.0/22 327738 -45.221.8.0/22 328118 -45.221.12.0/22 327892 -45.221.16.0/22 715 -45.221.20.0/22 37533 -45.221.24.0/24 328264 -45.221.25.0/24 328117 -45.221.26.0/24 328114 -45.221.28.0/24 328121 -45.221.32.0/20 327781 -45.221.48.0/20 328106 -45.221.64.0/24 61317 -45.221.65.0/24 327813 -45.221.66.0/24 61317 -45.221.68.0/24 61317 -45.221.70.0/23 61317 -45.221.72.0/21 37027 -45.221.80.0/20 327794 -45.221.96.0/19 328543 -45.221.128.0/18 37199 -45.221.192.0/21 328097 -45.221.200.0/21 37658 -45.221.208.0/22 327943 -45.221.212.0/22 37652 -45.221.216.0/22 328101 -45.221.220.0/24 328101 -45.221.224.0/19 328092 -45.222.0.0/19 327849 -45.222.32.0/20 328039 -45.222.48.0/20 328076 -45.222.64.0/19 37640 -45.222.96.0/22 328035 -45.222.100.0/23 328035 -45.222.102.0/24 198394 -45.222.103.0/24 198504 -45.222.104.0/21 328041 -45.222.112.0/20 328422 -45.222.128.0/18 327886 -45.222.192.0/18 37282 -45.223.12.0/24 16509 -45.223.13.0/24 14618 -45.223.16.0/20 19551 -45.223.32.0/21 19551 -45.223.40.0/24 19551 -45.223.101.0/24 19551 -45.224.0.0/22 267652 -45.224.4.0/22 267646 -45.224.12.0/22 266982 -45.224.16.0/22 266976 -45.224.20.0/22 264668 -45.224.28.0/22 265835 -45.224.32.0/22 266924 -45.224.36.0/22 267637 -45.224.40.0/22 267641 -45.224.44.0/22 266939 -45.224.48.0/22 266932 -45.224.52.0/22 52327 -45.224.56.0/22 267647 -45.224.60.0/22 267663 -45.224.68.0/22 267648 -45.224.72.0/22 267668 -45.224.76.0/22 28580 -45.224.80.0/22 267649 -45.224.84.0/22 267650 -45.224.88.0/22 267653 -45.224.92.0/22 266946 -45.224.96.0/22 264668 -45.224.108.0/22 266911 -45.224.112.0/22 267657 -45.224.118.0/23 264668 -45.224.120.0/22 28098 -45.224.124.0/22 52327 -45.224.128.0/22 266912 -45.224.132.0/22 267659 -45.224.136.0/22 266922 -45.224.140.0/22 265843 -45.224.144.0/22 27843 -45.224.148.0/22 264668 -45.224.152.0/23 264668 -45.224.154.0/24 264668 -45.224.156.0/22 27792 -45.224.160.0/22 267661 -45.224.164.0/22 267662 -45.224.168.0/22 266919 -45.224.172.0/22 266923 -45.224.176.0/22 266918 -45.224.180.0/22 267660 -45.224.184.0/24 265859 -45.224.185.0/24 267086 -45.224.187.0/24 267670 -45.224.188.0/23 265862 -45.224.192.0/22 267669 -45.224.196.0/22 267672 -45.224.200.0/23 267670 -45.224.202.0/24 266907 -45.224.203.0/24 265842 -45.224.204.0/22 267665 -45.224.208.0/22 267666 -45.224.212.0/22 267671 -45.224.220.0/22 267673 -45.224.224.0/22 267674 -45.224.228.0/22 265849 -45.224.232.0/22 266914 -45.224.236.0/22 267675 -45.224.240.0/22 267676 -45.224.244.0/22 266925 -45.224.248.0/22 262529 -45.224.252.0/22 53856 -45.225.0.0/22 265857 -45.225.4.0/22 262873 -45.225.11.0/24 266971 -45.225.12.0/22 266915 -45.225.16.0/22 266920 -45.225.20.0/22 266926 -45.225.24.0/22 266927 -45.225.28.0/23 265841 -45.225.30.0/24 265841 -45.225.32.0/22 266928 -45.225.36.0/22 266921 -45.225.40.0/23 265842 -45.225.43.0/24 266655 -45.225.44.0/24 266880 -45.225.46.0/23 264668 -45.225.48.0/22 266941 -45.225.52.0/22 266942 -45.225.56.0/22 266995 -45.225.60.0/22 266943 -45.225.64.0/22 267018 -45.225.68.0/23 266670 -45.225.70.0/23 265867 -45.225.72.0/23 266929 -45.225.74.0/24 265867 -45.225.75.0/24 266671 -45.225.80.0/22 28098 -45.225.84.0/22 266931 -45.225.88.0/22 264668 -45.225.92.0/22 263702 -45.225.100.0/22 266963 -45.225.108.0/22 266933 -45.225.112.0/22 45382 -45.225.116.0/22 266934 -45.225.120.0/23 266935 -45.225.123.0/24 266935 -45.225.124.0/22 266936 -45.225.128.0/22 266937 -45.225.132.0/23 266655 -45.225.134.0/24 266654 -45.225.135.0/24 39782 -45.225.136.0/22 267003 -45.225.140.0/22 266938 -45.225.144.0/22 266944 -45.225.148.0/22 267021 -45.225.152.0/24 32034 -45.225.153.0/24 265515 -45.225.154.0/23 266960 -45.225.156.0/22 266656 -45.225.160.0/22 266950 -45.225.164.0/22 266959 -45.225.168.0/22 266998 -45.225.172.0/22 266940 -45.225.176.0/22 266951 -45.225.180.0/22 266947 -45.225.184.0/22 265851 -45.225.188.0/22 266945 -45.225.192.0/22 266948 -45.225.196.0/22 266949 -45.225.200.0/22 267072 -45.225.204.0/22 265858 -45.225.208.0/22 266972 -45.225.212.0/23 265852 -45.225.214.0/24 265852 -45.225.216.0/23 265862 -45.225.218.0/23 265853 -45.225.220.0/22 265854 -45.225.225.0/24 27951 -45.225.226.0/24 27951 -45.225.227.0/24 265855 -45.225.228.0/22 266973 -45.225.232.0/22 266964 -45.225.236.0/22 266988 -45.225.240.0/22 266955 -45.225.244.0/23 266366 -45.225.246.0/24 266974 -45.225.247.0/24 266366 -45.225.248.0/22 267005 -45.225.252.0/22 266952 -45.226.0.0/23 266987 -45.226.3.0/24 266987 -45.226.4.0/22 266953 -45.226.8.0/22 264856 -45.226.12.0/22 267032 -45.226.16.0/22 266957 -45.226.20.0/22 266954 -45.226.24.0/22 266956 -45.226.28.0/23 265868 -45.226.30.0/24 264857 -45.226.31.0/24 265868 -45.226.33.0/24 265880 -45.226.34.0/23 265880 -45.226.36.0/22 266975 -45.226.40.0/22 266986 -45.226.44.0/22 266958 -45.226.48.0/22 267015 -45.226.52.0/22 266985 -45.226.56.0/23 267109 -45.226.58.0/24 265865 -45.226.60.0/22 266965 -45.226.67.0/24 265873 -45.226.68.0/22 27843 -45.226.72.0/22 266961 -45.226.76.0/22 266984 -45.226.80.0/22 266989 -45.226.84.0/22 266990 -45.226.88.0/22 266991 -45.226.92.0/22 266992 -45.226.96.0/22 267020 -45.226.100.0/22 52327 -45.226.104.0/22 267013 -45.226.108.0/22 266993 -45.226.112.0/22 265861 -45.226.116.0/22 28210 -45.226.120.0/22 266977 -45.226.124.0/22 266962 -45.226.128.0/22 266996 -45.226.132.0/22 266966 -45.226.136.0/23 263935 -45.226.138.0/23 266967 -45.226.140.0/22 266983 -45.226.144.0/22 265844 -45.226.148.0/22 266968 -45.226.152.0/22 266969 -45.226.156.0/22 266970 -45.226.160.0/22 267045 -45.226.164.0/22 267046 -45.226.168.0/23 64108 -45.226.170.0/24 64108 -45.226.172.0/22 265874 -45.226.183.0/24 265864 -45.226.184.0/23 266786 -45.226.186.0/23 27951 -45.226.188.0/23 266997 -45.226.192.0/22 266981 -45.226.196.0/22 266978 -45.226.200.0/22 266979 -45.226.204.0/24 265863 -45.226.205.0/24 264836 -45.226.206.0/23 265863 -45.226.208.0/22 267056 -45.226.212.0/22 267002 -45.226.216.0/22 267004 -45.226.220.0/22 267006 -45.226.224.0/22 265866 -45.226.228.0/22 265876 -45.226.232.0/22 267025 -45.226.236.0/22 267026 -45.226.240.0/22 267022 -45.226.244.0/22 266999 -45.226.248.0/22 267000 -45.226.252.0/22 267009 -45.227.4.0/24 267001 -45.227.6.0/23 267049 -45.227.9.0/24 265882 -45.227.10.0/24 265882 -45.227.12.0/22 266740 -45.227.16.0/22 265869 -45.227.20.0/22 267008 -45.227.24.0/22 267040 -45.227.28.0/22 267047 -45.227.32.0/22 265879 -45.227.36.0/22 265877 -45.227.40.0/22 52568 -45.227.44.0/22 267079 -45.227.48.0/22 265872 -45.227.52.0/22 267007 -45.227.56.0/22 267016 -45.227.60.0/24 266662 -45.227.62.0/23 265871 -45.227.64.0/22 28098 -45.227.68.0/22 265870 -45.227.72.0/22 267031 -45.227.76.0/22 267055 -45.227.80.0/22 267070 -45.227.84.0/22 267010 -45.227.88.0/22 23059 -45.227.92.0/22 266653 -45.227.96.0/22 267069 -45.227.104.0/22 267019 -45.227.108.0/22 267023 -45.227.112.0/22 267024 -45.227.116.0/22 267011 -45.227.120.0/22 267012 -45.227.124.0/22 267014 -45.227.128.0/23 266778 -45.227.130.0/24 266778 -45.227.131.0/24 266726 -45.227.132.0/22 28098 -45.227.136.0/22 267017 -45.227.140.0/22 267113 -45.227.144.0/22 267036 -45.227.148.0/22 267035 -45.227.152.0/22 52444 -45.227.156.0/22 267034 -45.227.160.0/22 266660 -45.227.164.0/22 265883 -45.227.168.0/22 267027 -45.227.176.0/22 61466 -45.227.180.0/22 267028 -45.227.184.0/22 267033 -45.227.188.0/22 263665 -45.227.192.0/22 28146 -45.227.196.0/22 266683 -45.227.200.0/22 52468 -45.227.204.0/22 267030 -45.227.208.0/22 267029 -45.227.212.0/22 267043 -45.227.216.0/23 52251 -45.227.218.0/24 52251 -45.227.219.0/24 267711 -45.227.220.0/22 267052 -45.227.224.0/22 52328 -45.227.228.0/24 267097 -45.227.230.0/23 267097 -45.227.232.0/22 267037 -45.227.236.0/22 267094 -45.227.240.0/22 267044 -45.227.248.0/22 267038 -45.227.252.0/24 209272 -45.227.253.0/24 49453 -45.227.254.0/24 51852 -45.227.255.0/24 43350 -45.228.4.0/22 267039 -45.228.8.0/22 267062 -45.228.12.0/22 267095 -45.228.16.0/22 266685 -45.228.20.0/22 267100 -45.228.24.0/22 267063 -45.228.28.0/22 267088 -45.228.32.0/22 267101 -45.228.40.0/22 267068 -45.228.44.0/22 267048 -45.228.48.0/22 267041 -45.228.52.0/24 266679 -45.228.56.0/22 262196 -45.228.60.0/22 266677 -45.228.64.0/24 61442 -45.228.65.0/24 266886 -45.228.67.0/24 266886 -45.228.68.0/22 265542 -45.228.72.0/22 266674 -45.228.76.0/22 266682 -45.228.80.0/22 267053 -45.228.84.0/22 267067 -45.228.88.0/22 267050 -45.228.92.0/22 267057 -45.228.96.0/22 267058 -45.228.100.0/22 267051 -45.228.104.0/22 267077 -45.228.108.0/22 267059 -45.228.112.0/22 267060 -45.228.116.0/22 267081 -45.228.120.0/22 267061 -45.228.124.0/22 267071 -45.228.128.0/22 267064 -45.228.132.0/22 267065 -45.228.136.0/22 266673 -45.228.140.0/22 267102 -45.228.144.0/22 267084 -45.228.148.0/22 267078 -45.228.152.0/22 266666 -45.228.157.0/24 267130 -45.228.158.0/23 267087 -45.228.160.0/22 267073 -45.228.164.0/22 267066 -45.228.168.0/22 267074 -45.228.172.0/23 266667 -45.228.176.0/22 266675 -45.228.180.0/24 266681 -45.228.184.0/22 267092 -45.228.188.0/22 266668 -45.228.192.0/22 267093 -45.228.196.0/22 267117 -45.228.204.0/22 267076 -45.228.208.0/22 263702 -45.228.212.0/22 267098 -45.228.216.0/22 267119 -45.228.220.0/24 266684 -45.228.224.0/22 267080 -45.228.228.0/22 267122 -45.228.232.0/22 265684 -45.228.236.0/22 267125 -45.228.240.0/22 267085 -45.228.244.0/22 267083 -45.228.248.0/22 267126 -45.228.252.0/22 267089 -45.229.0.0/22 267090 -45.229.4.0/24 266676 -45.229.8.0/22 267123 -45.229.12.0/22 267138 -45.229.16.0/22 266690 -45.229.20.0/22 267091 -45.229.24.0/22 267096 -45.229.28.0/22 266680 -45.229.32.0/22 28007 -45.229.36.0/22 266704 -45.229.44.0/22 266687 -45.229.48.0/22 64110 -45.229.52.0/22 267124 -45.229.56.0/22 266692 -45.229.60.0/22 266693 -45.229.64.0/22 267103 -45.229.68.0/22 267222 -45.229.72.0/24 262186 -45.229.74.0/24 266729 -45.229.75.0/24 267111 -45.229.76.0/22 267104 -45.229.80.0/22 267105 -45.229.84.0/23 266705 -45.229.86.0/24 266705 -45.229.87.0/24 266728 -45.229.88.0/22 267106 -45.229.92.0/22 267107 -45.229.96.0/22 267110 -45.229.100.0/22 267147 -45.229.104.0/22 267121 -45.229.108.0/22 267108 -45.229.112.0/22 267115 -45.229.116.0/22 267116 -45.229.120.0/22 267114 -45.229.124.0/22 267118 -45.229.128.0/22 266688 -45.229.137.0/24 266715 -45.229.138.0/23 267128 -45.229.140.0/22 267127 -45.229.144.0/22 267155 -45.229.148.0/23 266709 -45.229.150.0/24 267230 -45.229.151.0/24 266738 -45.229.152.0/22 267156 -45.229.156.0/22 267120 -45.229.160.0/22 267129 -45.229.164.0/22 267139 -45.229.168.0/22 266694 -45.229.172.0/22 267162 -45.229.176.0/22 267131 -45.229.180.0/22 27983 -45.229.184.0/22 267132 -45.229.188.0/23 266706 -45.229.192.0/24 262186 -45.229.193.0/24 267757 -45.229.194.0/24 267259 -45.229.196.0/22 266695 -45.229.200.0/22 267133 -45.229.204.0/22 266721 -45.229.208.0/23 267149 -45.229.212.0/22 267193 -45.229.216.0/22 267141 -45.229.220.0/24 267134 -45.229.223.0/24 267134 -45.229.224.0/22 267151 -45.229.228.0/22 267135 -45.229.232.0/22 267136 -45.229.236.0/22 267137 -45.229.240.0/22 267142 -45.229.246.0/24 266746 -45.229.247.0/24 266711 -45.229.248.0/22 266707 -45.229.252.0/24 266720 -45.230.0.0/22 267140 -45.230.4.0/22 267143 -45.230.8.0/22 266710 -45.230.12.0/23 7049 -45.230.16.0/22 267148 -45.230.20.0/24 266700 -45.230.22.0/23 266715 -45.230.24.0/22 267144 -45.230.28.0/22 267145 -45.230.32.0/24 267179 -45.230.33.0/24 262186 -45.230.34.0/23 64109 -45.230.36.0/22 266713 -45.230.40.0/22 267146 -45.230.44.0/22 269750 -45.230.48.0/22 266731 -45.230.52.0/22 267170 -45.230.56.0/22 267150 -45.230.64.0/22 266702 -45.230.68.0/22 267158 -45.230.72.0/22 264857 -45.230.76.0/22 267159 -45.230.80.0/22 266703 -45.230.84.0/23 267182 -45.230.86.0/23 266739 -45.230.88.0/22 267166 -45.230.92.0/22 267174 -45.230.96.0/22 267160 -45.230.100.0/22 267178 -45.230.104.0/22 267171 -45.230.108.0/22 61589 -45.230.112.0/22 267152 -45.230.116.0/22 267165 -45.230.120.0/22 267157 -45.230.124.0/23 263157 -45.230.126.0/24 263157 -45.230.127.0/24 17072 -45.230.128.0/22 267167 -45.230.132.0/22 267168 -45.230.136.0/22 267161 -45.230.140.0/22 267172 -45.230.144.0/22 267163 -45.230.152.0/22 267186 -45.230.156.0/22 267164 -45.230.160.0/22 267214 -45.230.164.0/22 267201 -45.230.168.0/23 3549 -45.230.171.0/24 3549 -45.230.172.0/22 265545 -45.230.176.0/22 267173 -45.230.180.0/22 267235 -45.230.184.0/22 267206 -45.230.188.0/22 267196 -45.230.192.0/22 267197 -45.230.196.0/22 3549 -45.230.200.0/22 267208 -45.230.204.0/22 266743 -45.230.208.0/22 267246 -45.230.212.0/22 267175 -45.230.216.0/22 266734 -45.230.220.0/22 267184 -45.230.224.0/22 267209 -45.230.228.0/22 267226 -45.230.232.0/22 267177 -45.230.236.0/22 267176 -45.230.240.0/22 264825 -45.230.244.0/22 267187 -45.230.248.0/22 267904 -45.230.252.0/22 267181 -45.231.0.0/22 267185 -45.231.4.0/23 267215 -45.231.6.0/23 267244 -45.231.8.0/22 267223 -45.231.12.0/22 267180 -45.231.16.0/24 267191 -45.231.18.0/23 267191 -45.231.20.0/22 267183 -45.231.24.0/22 6453 -45.231.28.0/22 267188 -45.231.32.0/22 267749 -45.231.36.0/22 267220 -45.231.44.0/22 265546 -45.231.48.0/22 28098 -45.231.54.0/24 263779 -45.231.56.0/22 267200 -45.231.60.0/22 267233 -45.231.64.0/22 267204 -45.231.68.0/22 267202 -45.231.76.0/22 267194 -45.231.84.0/22 267189 -45.231.88.0/22 267205 -45.231.92.0/22 267190 -45.231.96.0/22 267192 -45.231.100.0/22 267236 -45.231.104.0/22 263689 -45.231.108.0/22 28425 -45.231.112.0/22 267195 -45.231.116.0/22 267207 -45.231.120.0/23 267211 -45.231.122.0/24 267211 -45.231.124.0/22 267198 -45.231.128.0/22 267239 -45.231.132.0/22 267212 -45.231.136.0/22 267203 -45.231.140.0/22 267199 -45.231.144.0/23 267245 -45.231.146.0/23 267255 -45.231.148.0/24 265775 -45.231.152.0/22 267261 -45.231.156.0/23 266758 -45.231.158.0/24 266758 -45.231.159.0/24 267300 -45.231.160.0/22 267227 -45.231.164.0/22 267210 -45.231.168.0/22 265547 -45.231.172.0/22 267216 -45.231.176.0/22 267213 -45.231.180.0/22 267217 -45.231.184.0/23 266737 -45.231.188.0/22 267231 -45.231.192.0/22 267224 -45.231.196.0/22 267218 -45.231.200.0/22 267232 -45.231.204.0/23 267247 -45.231.206.0/23 61317 -45.231.208.0/22 267225 -45.231.212.0/23 267219 -45.231.216.0/22 27997 -45.231.220.0/22 28424 -45.231.224.0/22 266735 -45.231.228.0/22 267228 -45.231.232.0/22 267240 -45.231.240.0/22 267234 -45.231.244.0/22 267229 -45.231.248.0/22 266750 -45.231.252.0/22 267237 -45.232.0.0/22 266754 -45.232.4.0/22 267238 -45.232.8.0/22 267281 -45.232.12.0/22 27983 -45.232.16.0/22 266741 -45.232.20.0/22 267248 -45.232.24.0/22 267301 -45.232.31.0/24 267241 -45.232.32.0/22 52341 -45.232.36.0/22 267242 -45.232.40.0/22 267265 -45.232.44.0/23 267266 -45.232.46.0/23 266745 -45.232.48.0/22 267256 -45.232.52.0/22 267260 -45.232.56.0/22 267249 -45.232.60.0/22 267316 -45.232.64.0/22 267267 -45.232.68.0/22 267250 -45.232.72.0/22 267251 -45.232.76.0/22 267252 -45.232.80.0/22 267257 -45.232.88.0/22 267254 -45.232.92.0/22 52341 -45.232.96.0/22 266753 -45.232.100.0/22 267262 -45.232.108.0/22 267258 -45.232.112.0/22 40311 -45.232.119.0/24 11830 -45.232.120.0/22 27735 -45.232.124.0/22 267264 -45.232.128.0/22 267268 -45.232.132.0/22 267269 -45.232.136.0/22 267321 -45.232.140.0/22 267329 -45.232.144.0/22 266752 -45.232.148.0/24 266757 -45.232.149.0/24 28032 -45.232.150.0/23 266757 -45.232.152.0/22 266761 -45.232.156.0/22 267270 -45.232.160.0/22 267274 -45.232.164.0/23 266759 -45.232.168.0/22 264569 -45.232.172.0/22 266815 -45.232.176.0/22 266771 -45.232.180.0/22 267282 -45.232.184.0/22 267271 -45.232.188.0/22 267272 -45.232.192.0/22 267749 -45.232.196.0/22 267279 -45.232.200.0/22 267273 -45.232.212.0/22 267276 -45.232.216.0/22 267283 -45.232.220.0/22 267277 -45.232.224.0/22 267278 -45.232.228.0/22 267280 -45.232.232.0/22 267302 -45.232.236.0/22 267358 -45.232.240.0/22 267284 -45.232.244.0/22 267285 -45.232.248.0/22 267297 -45.232.252.0/22 265548 -45.233.0.0/22 267303 -45.233.8.0/22 267286 -45.233.12.0/22 267287 -45.233.16.0/22 267288 -45.233.20.0/22 267309 -45.233.24.0/22 267298 -45.233.28.0/22 267290 -45.233.32.0/22 267304 -45.233.36.0/22 267291 -45.233.40.0/22 267292 -45.233.44.0/22 267293 -45.233.48.0/22 267294 -45.233.52.0/22 267299 -45.233.56.0/22 267289 -45.233.60.0/22 267295 -45.233.64.0/23 266755 -45.233.68.0/22 22798 -45.233.76.0/22 267296 -45.233.80.0/22 267354 -45.233.84.0/22 267305 -45.233.88.0/22 267317 -45.233.92.0/22 266756 -45.233.96.0/22 267306 -45.233.100.0/23 266790 -45.233.102.0/24 266790 -45.233.103.0/24 269799 -45.233.104.0/22 267307 -45.233.108.0/22 267308 -45.233.112.0/22 267327 -45.233.116.0/22 265549 -45.233.120.0/22 267323 -45.233.124.0/22 267311 -45.233.128.0/22 267312 -45.233.132.0/22 267324 -45.233.136.0/24 267318 -45.233.138.0/23 267318 -45.233.140.0/23 266781 -45.233.142.0/24 266781 -45.233.144.0/22 267313 -45.233.148.0/22 267314 -45.233.152.0/22 267328 -45.233.156.0/22 267319 -45.233.160.0/22 267315 -45.233.164.0/22 267320 -45.233.168.0/24 262186 -45.233.169.0/24 266816 -45.233.170.0/24 266816 -45.233.171.0/24 262186 -45.233.172.0/22 267372 -45.233.176.0/22 267325 -45.233.180.0/22 267347 -45.233.184.0/24 267326 -45.233.188.0/22 267348 -45.233.192.0/22 267349 -45.233.196.0/22 267395 -45.233.200.0/22 267396 -45.233.204.0/22 267397 -45.233.208.0/22 267339 -45.233.212.0/22 267380 -45.233.220.0/22 267341 -45.233.224.0/22 267330 -45.233.228.0/22 267350 -45.233.232.0/23 267352 -45.233.234.0/24 263699 -45.233.236.0/23 266773 -45.233.240.0/22 267331 -45.233.244.0/22 267332 -45.233.248.0/22 267333 -45.233.252.0/22 267334 -45.234.0.0/22 267335 -45.234.4.0/22 267351 -45.234.8.0/22 267408 -45.234.12.0/22 61590 -45.234.16.0/22 267336 -45.234.20.0/22 267342 -45.234.24.0/22 268212 -45.234.28.0/22 267415 -45.234.32.0/22 266769 -45.234.36.0/22 267359 -45.234.40.0/22 267337 -45.234.44.0/22 267343 -45.234.48.0/22 267353 -45.234.52.0/22 267360 -45.234.56.0/22 267361 -45.234.60.0/22 266766 -45.234.64.0/22 267362 -45.234.68.0/22 267363 -45.234.72.0/22 267364 -45.234.76.0/22 267344 -45.234.80.0/22 267345 -45.234.84.0/23 266782 -45.234.86.0/24 266782 -45.234.87.0/24 263699 -45.234.88.0/22 266762 -45.234.92.0/23 267355 -45.234.94.0/24 267355 -45.234.96.0/22 267401 -45.234.100.0/22 61592 -45.234.104.0/22 267357 -45.234.108.0/22 267370 -45.234.112.0/22 266780 -45.234.116.0/22 266772 -45.234.120.0/22 27983 -45.234.124.0/22 267374 -45.234.128.0/22 267365 -45.234.132.0/22 267366 -45.234.136.0/22 267371 -45.234.140.0/22 267382 -45.234.144.0/22 267383 -45.234.148.0/22 267367 -45.234.152.0/22 267368 -45.234.156.0/24 262237 -45.234.160.0/23 266793 -45.234.162.0/23 268203 -45.234.164.0/22 266792 -45.234.168.0/22 267375 -45.234.172.0/22 266763 -45.234.176.0/22 267369 -45.234.180.0/22 266764 -45.234.184.0/22 267376 -45.234.188.0/22 267377 -45.234.192.0/22 267378 -45.234.196.0/22 267384 -45.234.200.0/24 267402 -45.234.201.0/24 270313 -45.234.202.0/23 267402 -45.234.204.0/22 267403 -45.234.208.0/22 267385 -45.234.212.0/22 267373 -45.234.216.0/22 267393 -45.234.220.0/22 267379 -45.234.224.0/22 266765 -45.234.228.0/22 266785 -45.234.232.0/23 27884 -45.234.235.0/24 27884 -45.234.236.0/22 267386 -45.234.240.0/22 267404 -45.234.244.0/22 267387 -45.234.248.0/22 52872 -45.234.252.0/22 267389 -45.235.0.0/22 267390 -45.235.4.0/22 267391 -45.235.8.0/22 267405 -45.235.12.0/22 266783 -45.235.16.0/22 267406 -45.235.20.0/22 267398 -45.235.24.0/22 267381 -45.235.28.0/22 267407 -45.235.32.0/22 267399 -45.235.36.0/22 266779 -45.235.40.0/24 266774 -45.235.44.0/22 268200 -45.235.48.0/22 267400 -45.235.52.0/22 268207 -45.235.56.0/22 267411 -45.235.60.0/22 267394 -45.235.64.0/22 267412 -45.235.68.0/22 268209 -45.235.76.0/22 267417 -45.235.80.0/22 267356 -45.235.84.0/22 268194 -45.235.88.0/23 264848 -45.235.90.0/24 264848 -45.235.92.0/22 267410 -45.235.96.0/23 266775 -45.235.98.0/23 266777 -45.235.100.0/22 268195 -45.235.104.0/22 267413 -45.235.108.0/22 267416 -45.235.112.0/22 268190 -45.235.116.0/22 267414 -45.235.120.0/22 266784 -45.235.124.0/23 268196 -45.235.127.0/24 268196 -45.235.128.0/22 265523 -45.235.132.0/22 267422 -45.235.136.0/22 268189 -45.235.140.0/22 61468 -45.235.144.0/22 268197 -45.235.148.0/22 268202 -45.235.152.0/22 267418 -45.235.156.0/22 267419 -45.235.160.0/22 267420 -45.235.164.0/22 267421 -45.235.168.0/22 268193 -45.235.172.0/22 28394 -45.235.176.0/22 268191 -45.235.180.0/22 268192 -45.235.184.0/22 268198 -45.235.188.0/22 268206 -45.235.192.0/22 268236 -45.235.196.0/22 268199 -45.235.200.0/22 268229 -45.235.204.0/22 268237 -45.235.208.0/22 268214 -45.235.212.0/22 27855 -45.235.216.0/22 268201 -45.235.220.0/22 268230 -45.235.226.0/24 268220 -45.235.227.0/24 266797 -45.235.228.0/22 263689 -45.235.232.0/22 268217 -45.235.236.0/22 268218 -45.235.240.0/22 268204 -45.235.248.0/22 268216 -45.235.252.0/23 265550 -45.235.255.0/24 265550 -45.236.0.0/22 268215 -45.236.4.0/22 268210 -45.236.8.0/23 268213 -45.236.12.0/22 268219 -45.236.16.0/22 268211 -45.236.20.0/22 268222 -45.236.24.0/22 266788 -45.236.28.0/22 266809 -45.236.32.0/22 266791 -45.236.36.0/22 268239 -45.236.40.0/22 266813 -45.236.48.0/22 268205 -45.236.52.0/22 268221 -45.236.56.0/22 268232 -45.236.60.0/22 268223 -45.236.64.0/22 268224 -45.236.68.0/22 268228 -45.236.72.0/22 268225 -45.236.76.0/22 268226 -45.236.80.0/23 266794 -45.236.82.0/24 266794 -45.236.83.0/24 27983 -45.236.84.0/22 268227 -45.236.88.0/22 266795 -45.236.92.0/22 27983 -45.236.96.0/22 268233 -45.236.100.0/22 266806 -45.236.104.0/22 263238 -45.236.108.0/22 268231 -45.236.112.0/22 268234 -45.236.116.0/22 268235 -45.236.120.0/24 267701 -45.236.121.0/24 268306 -45.236.122.0/23 268317 -45.236.124.0/22 266801 -45.236.128.0/22 64111 -45.236.132.0/22 268260 -45.236.136.0/22 268238 -45.236.140.0/22 266808 -45.236.144.0/22 268240 -45.236.148.0/23 266812 -45.236.152.0/22 268255 -45.236.160.0/22 268241 -45.236.164.0/24 262256 -45.236.168.0/22 266802 -45.236.172.0/23 41095 -45.236.174.0/23 266818 -45.236.176.0/22 268256 -45.236.180.0/22 268244 -45.236.184.0/22 266803 -45.236.188.0/22 268351 -45.236.196.0/23 268261 -45.236.198.0/23 265134 -45.236.200.0/22 268243 -45.236.204.0/22 268245 -45.236.208.0/22 268251 -45.236.212.0/22 268246 -45.236.216.0/22 268247 -45.236.220.0/22 268248 -45.236.224.0/22 268249 -45.236.232.0/22 7303 -45.236.236.0/22 268250 -45.236.240.0/22 268257 -45.236.244.0/22 266805 -45.236.248.0/22 268253 -45.236.252.0/22 268252 -45.237.0.0/22 268330 -45.237.4.0/22 268292 -45.237.8.0/22 268258 -45.237.12.0/22 268274 -45.237.16.0/22 268259 -45.237.20.0/22 268277 -45.237.24.0/22 268262 -45.237.28.0/22 268263 -45.237.32.0/22 268310 -45.237.40.0/22 268266 -45.237.44.0/22 266814 -45.237.48.0/22 266815 -45.237.52.0/23 52318 -45.237.56.0/22 268300 -45.237.60.0/22 268275 -45.237.64.0/22 28165 -45.237.68.0/22 268264 -45.237.72.0/22 268279 -45.237.76.0/22 268265 -45.237.80.0/22 268270 -45.237.84.0/22 266820 -45.237.88.0/22 61478 -45.237.92.0/22 268267 -45.237.96.0/22 268268 -45.237.100.0/22 268269 -45.237.104.0/22 268280 -45.237.108.0/22 268301 -45.237.112.0/22 268285 -45.237.116.0/22 268271 -45.237.120.0/22 268272 -45.237.126.0/23 268273 -45.237.128.0/22 268276 -45.237.132.0/22 266826 -45.237.136.0/22 266835 -45.237.140.0/22 268281 -45.237.144.0/22 61593 -45.237.152.0/23 268278 -45.237.154.0/23 268356 -45.237.156.0/22 268286 -45.237.160.0/22 268284 -45.237.164.0/22 268314 -45.237.168.0/22 266827 -45.237.176.0/22 27983 -45.237.180.0/22 268283 -45.237.184.0/24 266828 -45.237.188.0/22 268287 -45.237.192.0/22 268288 -45.237.196.0/22 268294 -45.237.200.0/22 268289 -45.237.204.0/22 268290 -45.237.208.0/22 268298 -45.237.212.0/22 268303 -45.237.216.0/22 268299 -45.237.220.0/22 266819 -45.237.224.0/22 268291 -45.237.228.0/22 268302 -45.237.232.0/22 268304 -45.237.236.0/22 268295 -45.237.240.0/22 268307 -45.237.244.0/22 268296 -45.237.248.0/22 268297 -45.237.252.0/22 268333 -45.238.0.0/22 268305 -45.238.4.0/22 268308 -45.238.8.0/22 266825 -45.238.12.0/22 266837 -45.238.16.0/22 266836 -45.238.20.0/22 266830 -45.238.24.0/22 268337 -45.238.28.0/22 52468 -45.238.32.0/22 268340 -45.238.36.0/22 266831 -45.238.40.0/22 268311 -45.238.44.0/22 268312 -45.238.48.0/22 268309 -45.238.52.0/22 266829 -45.238.56.0/22 264668 -45.238.60.0/22 262213 -45.238.64.0/22 268321 -45.238.68.0/22 268315 -45.238.72.0/22 268328 -45.238.76.0/22 268319 -45.238.82.0/23 268316 -45.238.88.0/22 268318 -45.238.92.0/22 268320 -45.238.96.0/22 52320 -45.238.100.0/22 268335 -45.238.104.0/22 266861 -45.238.108.0/22 268322 -45.238.112.0/22 268331 -45.238.116.0/22 268323 -45.238.120.0/22 268324 -45.238.124.0/22 268325 -45.238.128.0/22 268326 -45.238.132.0/22 268327 -45.238.136.0/22 268332 -45.238.140.0/22 263686 -45.238.144.0/23 266832 -45.238.150.0/23 268542 -45.238.152.0/22 266844 -45.238.156.0/22 266842 -45.238.160.0/22 268347 -45.238.164.0/22 268338 -45.238.168.0/22 268341 -45.238.172.0/22 268334 -45.238.176.0/23 265703 -45.238.178.0/24 268558 -45.238.179.0/24 265703 -45.238.180.0/22 266860 -45.238.184.0/22 268336 -45.238.188.0/22 265551 -45.238.192.0/24 266807 -45.238.196.0/22 266848 -45.238.200.0/22 268360 -45.238.204.0/22 268339 -45.238.208.0/22 268361 -45.238.212.0/22 27730 -45.238.216.0/23 61468 -45.238.218.0/24 61468 -45.238.219.0/24 23487 -45.238.220.0/22 266843 -45.238.224.0/22 268343 -45.238.228.0/22 268342 -45.238.232.0/22 268350 -45.238.236.0/22 268358 -45.238.240.0/22 268364 -45.238.244.0/22 268344 -45.238.248.0/22 266838 -45.238.252.0/22 268367 -45.239.4.0/22 268349 -45.239.8.0/22 268345 -45.239.12.0/22 268346 -45.239.16.0/22 21623 -45.239.20.0/23 268352 -45.239.22.0/23 12252 -45.239.24.0/22 268374 -45.239.32.0/22 266725 -45.239.36.0/22 266871 -45.239.40.0/22 268375 -45.239.44.0/22 266858 -45.239.48.0/22 266847 -45.239.52.0/22 268353 -45.239.56.0/22 268354 -45.239.60.0/22 266854 -45.239.64.0/22 266853 -45.239.71.0/24 28539 -45.239.72.0/22 268355 -45.239.76.0/22 263157 -45.239.80.0/22 268384 -45.239.84.0/23 266873 -45.239.86.0/24 266873 -45.239.88.0/22 266862 -45.239.92.0/22 266874 -45.239.96.0/22 266864 -45.239.100.0/22 268442 -45.239.105.0/24 268475 -45.239.106.0/24 268497 -45.239.107.0/24 266896 -45.239.108.0/22 266855 -45.239.113.0/24 268460 -45.239.114.0/24 52399 -45.239.115.0/24 266868 -45.239.116.0/22 266850 -45.239.120.0/22 269733 -45.239.124.0/22 27983 -45.239.128.0/22 266863 -45.239.132.0/22 268366 -45.239.136.0/22 268362 -45.239.140.0/22 268363 -45.239.144.0/22 268365 -45.239.148.0/22 268372 -45.239.152.0/22 268369 -45.239.156.0/22 268359 -45.239.160.0/23 266856 -45.239.164.0/22 268357 -45.239.168.0/22 268368 -45.239.172.0/22 268373 -45.239.176.0/22 268370 -45.239.180.0/22 268385 -45.239.184.0/22 268371 -45.239.188.0/22 268379 -45.239.192.0/22 268380 -45.239.196.0/22 268381 -45.239.200.0/22 268468 -45.239.204.0/22 268405 -45.239.208.0/22 269733 -45.239.212.0/22 268388 -45.239.220.0/22 268383 -45.239.224.0/22 268386 -45.239.228.0/22 268376 -45.239.232.0/22 268389 -45.239.236.0/22 263427 -45.239.240.0/22 268377 -45.239.244.0/22 268482 -45.239.248.0/22 268378 -45.239.252.0/22 268401 -45.240.0.0/13 24863 -45.248.0.0/23 132116 -45.248.2.0/24 137085 -45.248.3.0/24 132116 -45.248.8.0/22 137697 -45.248.12.0/24 59162 -45.248.16.0/22 132220 -45.248.20.0/22 133720 -45.248.24.0/24 133676 -45.248.25.0/24 58906 -45.248.26.0/23 133676 -45.248.28.0/22 45235 -45.248.32.0/23 135257 -45.248.34.0/24 135257 -45.248.36.0/23 132772 -45.248.40.0/22 134884 -45.248.44.0/22 26464 -45.248.48.0/22 134697 -45.248.52.0/24 36131 -45.248.53.0/24 9009 -45.248.54.0/24 394844 -45.248.55.0/24 64200 -45.248.56.0/22 45804 -45.248.64.0/22 136334 -45.248.68.0/22 135386 -45.248.72.0/22 9270 -45.248.76.0/22 136557 -45.248.84.0/22 137443 -45.248.92.0/22 45117 -45.248.120.0/22 133712 -45.248.124.0/22 16696 -45.248.132.0/22 63549 -45.248.138.0/23 135257 -45.248.140.0/24 40310 -45.248.141.0/24 40313 -45.248.142.0/23 40310 -45.248.145.0/24 139629 -45.248.146.0/24 134813 -45.248.147.0/24 138482 -45.248.148.0/22 134732 -45.248.152.0/22 38067 -45.248.156.0/22 133661 -45.248.160.0/22 133661 -45.248.164.0/22 135186 -45.248.168.0/23 132573 -45.248.170.0/24 132573 -45.248.171.0/24 45415 -45.248.172.0/22 132116 -45.248.192.0/22 45184 -45.248.196.0/22 9310 -45.248.236.0/22 63549 -45.249.8.0/22 135407 -45.249.40.0/22 133720 -45.249.44.0/22 36131 -45.249.48.0/23 45582 -45.249.50.0/24 45582 -45.249.51.0/24 55286 -45.249.52.0/22 132952 -45.249.56.0/23 45194 -45.249.58.0/24 45194 -45.249.64.0/22 4766 -45.249.68.0/22 23860 -45.249.72.0/22 23860 -45.249.76.0/22 18229 -45.249.80.0/22 23860 -45.249.84.0/23 17747 -45.249.86.0/24 17747 -45.249.88.0/24 7489 -45.249.89.0/24 131477 -45.249.90.0/24 4766 -45.249.91.0/24 46664 -45.249.92.0/22 133115 -45.249.96.0/24 137386 -45.249.97.0/24 17941 -45.249.98.0/24 137445 -45.249.99.0/24 17941 -45.249.100.0/23 135411 -45.249.102.0/23 63526 -45.249.104.0/22 203098 -45.249.108.0/22 18229 -45.249.116.0/22 134090 -45.249.120.0/22 134326 -45.249.152.0/22 9829 -45.249.160.0/22 45976 -45.249.164.0/22 23860 -45.249.168.0/24 133997 -45.249.169.0/24 23860 -45.249.170.0/23 133997 -45.249.172.0/22 9829 -45.249.176.0/22 9829 -45.249.180.0/24 137443 -45.249.182.0/24 137443 -45.249.184.0/23 135420 -45.249.186.0/24 135420 -45.249.212.0/22 63655 -45.249.216.0/23 23679 -45.249.218.0/23 131265 -45.249.220.0/24 55664 -45.249.221.0/24 20473 -45.249.222.0/24 55664 -45.249.223.0/24 38001 -45.249.232.0/22 132215 -45.249.244.0/22 135377 -45.249.255.0/24 135189 -45.250.0.0/21 9829 -45.250.8.0/22 135260 -45.250.20.0/22 135125 -45.250.24.0/24 62240 -45.250.25.0/24 24669 -45.250.26.0/23 24669 -45.250.32.0/21 4837 -45.250.40.0/23 4134 -45.250.42.0/24 4134 -45.250.43.0/24 58461 -45.250.45.0/24 136334 -45.250.46.0/23 136334 -45.250.48.0/22 45775 -45.250.60.0/22 35829 -45.250.64.0/24 23860 -45.250.65.0/24 133647 -45.250.66.0/23 133647 -45.250.68.0/22 135036 -45.250.72.0/23 62660 -45.250.100.0/22 9794 -45.250.156.0/22 135423 -45.250.160.0/24 55256 -45.250.168.0/23 45433 -45.250.171.0/24 45433 -45.250.172.0/22 26658 -45.250.177.0/24 132280 -45.250.196.0/22 132839 -45.250.200.0/23 135427 -45.250.202.0/24 135427 -45.250.204.0/23 38389 -45.250.207.0/24 38389 -45.250.208.0/22 6507 -45.250.212.0/22 45235 -45.250.216.0/22 135193 -45.250.220.0/22 38676 -45.250.224.0/22 17665 -45.250.228.0/22 134180 -45.250.232.0/22 132220 -45.250.236.0/22 55769 -45.250.240.0/22 135433 -45.250.244.0/22 23860 -45.250.248.0/23 58678 -45.250.250.0/24 58678 -45.250.251.0/24 135795 -45.250.252.0/22 135437 -45.251.4.0/22 135477 -45.251.8.0/22 133775 -45.251.12.0/22 133296 -45.251.20.0/22 9801 -45.251.32.0/22 135247 -45.251.36.0/22 134325 -45.251.40.0/22 59162 -45.251.44.0/22 63182 -45.251.48.0/22 134375 -45.251.52.0/22 58466 -45.251.56.0/22 55406 -45.251.60.0/22 45804 -45.251.64.0/22 63981 -45.251.68.0/22 135244 -45.251.72.0/22 131711 -45.251.76.0/24 58678 -45.251.77.0/24 135776 -45.251.78.0/23 135776 -45.251.80.0/24 134021 -45.251.88.0/22 17816 -45.251.92.0/22 58519 -45.251.100.0/22 58519 -45.251.104.0/22 135356 -45.251.108.0/23 135356 -45.251.110.0/23 23930 -45.251.112.0/22 45544 -45.251.116.0/22 135253 -45.251.128.0/22 58668 -45.251.132.0/22 24295 -45.251.136.0/24 62468 -45.251.228.0/23 136498 -45.251.230.0/23 59362 -45.251.232.0/22 132757 -45.251.240.0/23 134130 -45.251.242.0/23 55933 -45.251.248.0/22 9829 -45.252.52.0/22 135517 -45.252.56.0/22 203098 -45.252.60.0/22 55933 -45.252.64.0/22 56134 -45.252.68.0/22 132137 -45.252.72.0/22 132770 -45.252.76.0/22 135212 -45.252.80.0/22 135235 -45.252.104.0/23 4837 -45.252.106.0/23 137702 -45.252.180.0/22 58640 -45.252.184.0/22 13896 -45.252.188.0/23 136557 -45.252.190.0/24 132335 -45.252.191.0/24 136557 -45.252.236.0/22 38803 -45.252.240.0/21 63747 -45.252.248.0/22 63760 -45.253.16.0/21 7497 -45.253.24.0/23 17621 -45.253.26.0/23 4812 -45.253.60.0/22 63621 -45.253.64.0/22 23650 -45.253.96.0/20 45062 -45.253.112.0/21 45062 -45.253.124.0/22 132268 -45.253.128.0/23 134743 -45.253.132.0/22 45062 -45.253.136.0/21 45062 -45.253.144.0/20 45062 -45.253.160.0/19 45062 -45.253.192.0/19 45062 -45.253.224.0/20 45062 -45.253.240.0/22 45062 -45.253.244.0/22 135391 -45.254.20.0/22 133774 -45.254.24.0/24 26484 -45.254.25.0/24 137571 -45.254.26.0/24 40676 -45.254.32.0/22 45899 -45.254.36.0/23 135530 -45.254.38.0/24 63997 -45.254.44.0/22 135529 -45.254.48.0/23 4837 -45.254.64.0/20 23724 -45.254.244.0/22 22363 -45.254.252.0/23 22363 -45.254.254.0/24 22363 -45.255.124.0/22 135391 -45.255.128.0/24 22363 -45.255.130.0/23 22363 -45.255.132.0/22 135391 -45.255.227.0/24 262186 -46.0.0.0/16 34533 -46.1.0.0/20 34296 -46.1.24.0/21 34296 -46.1.32.0/21 34296 -46.1.40.0/22 34296 -46.1.45.0/24 34296 -46.1.46.0/23 34296 -46.1.48.0/24 34296 -46.1.50.0/23 34296 -46.1.52.0/22 34296 -46.1.56.0/21 34296 -46.1.64.0/19 34296 -46.1.96.0/21 34296 -46.1.104.0/23 34296 -46.1.106.0/24 34296 -46.1.108.0/22 34296 -46.1.112.0/20 34296 -46.1.128.0/20 34296 -46.1.144.0/22 34296 -46.1.152.0/21 34296 -46.1.160.0/20 34296 -46.1.176.0/21 34296 -46.1.184.0/22 34296 -46.1.190.0/23 34296 -46.1.192.0/23 34296 -46.1.194.0/24 34296 -46.1.196.0/22 34296 -46.1.200.0/21 34296 -46.1.210.0/23 34296 -46.1.214.0/23 34296 -46.1.216.0/22 34296 -46.1.222.0/23 34296 -46.1.224.0/22 34296 -46.1.230.0/23 34296 -46.1.232.0/21 34296 -46.1.242.0/23 34296 -46.1.244.0/22 34296 -46.1.248.0/22 34296 -46.1.252.0/23 34296 -46.2.0.0/17 8386 -46.2.128.0/19 8386 -46.2.160.0/21 8386 -46.2.168.0/22 8386 -46.2.174.0/23 8386 -46.2.176.0/20 8386 -46.2.192.0/18 8386 -46.3.0.0/17 134121 -46.3.128.0/19 207636 -46.3.160.0/19 134121 -46.3.192.0/20 134121 -46.3.208.0/21 134121 -46.3.216.0/24 134121 -46.3.217.0/24 207636 -46.3.218.0/24 207636 -46.3.219.0/24 134121 -46.3.220.0/22 134121 -46.3.224.0/20 55933 -46.3.240.0/20 207636 -46.4.0.0/16 24940 -46.5.0.0/16 6830 -46.6.0.0/18 15704 -46.6.112.0/23 16299 -46.6.128.0/17 16299 -46.7.0.0/16 6830 -46.8.0.0/22 24768 -46.8.4.0/22 200509 -46.8.8.0/23 60592 -46.8.10.0/23 35048 -46.8.12.0/23 44676 -46.8.14.0/23 35048 -46.8.16.0/23 35048 -46.8.18.0/23 204490 -46.8.20.0/24 209005 -46.8.21.0/24 202984 -46.8.22.0/23 35048 -46.8.27.0/24 44578 -46.8.28.0/24 204684 -46.8.29.0/24 202984 -46.8.30.0/24 57803 -46.8.31.0/24 47966 -46.8.32.0/24 208825 -46.8.33.0/24 39442 -46.8.34.0/24 61058 -46.8.35.0/24 61019 -46.8.36.0/24 61009 -46.8.37.0/24 208852 -46.8.38.0/24 60873 -46.8.39.0/24 61372 -46.8.40.0/24 57803 -46.8.42.0/24 59502 -46.8.43.0/24 60947 -46.8.44.0/23 21100 -46.8.46.0/24 43330 -46.8.47.0/24 203173 -46.8.48.0/23 60986 -46.8.50.0/23 51288 -46.8.54.0/23 58238 -46.8.56.0/23 35048 -46.8.58.0/23 60919 -46.8.60.0/22 60985 -46.8.64.0/21 56669 -46.8.72.0/22 39853 -46.8.76.0/22 56669 -46.8.80.0/21 60931 -46.8.88.0/21 47193 -46.8.96.0/21 196768 -46.8.104.0/24 57439 -46.8.105.0/24 204848 -46.8.106.0/23 35048 -46.8.108.0/23 61228 -46.8.110.0/23 35048 -46.8.112.0/20 3217 -46.8.128.0/20 51501 -46.8.144.0/21 51501 -46.8.154.0/23 35048 -46.8.156.0/23 35048 -46.8.158.0/24 202984 -46.8.159.0/24 208936 -46.8.160.0/20 201746 -46.8.184.0/21 201746 -46.8.192.0/23 35048 -46.8.204.0/22 200819 -46.8.208.0/22 204490 -46.8.212.0/23 35048 -46.8.214.0/23 44676 -46.8.216.0/23 203527 -46.8.218.0/24 197163 -46.8.219.0/24 206386 -46.8.220.0/23 204490 -46.8.222.0/23 35048 -46.8.224.0/20 28917 -46.8.240.0/21 203695 -46.8.248.0/24 51501 -46.8.249.0/24 203481 -46.8.250.0/24 204199 -46.8.251.0/24 203493 -46.8.252.0/23 203481 -46.8.254.0/24 206134 -46.8.255.0/24 204490 -46.9.0.0/16 2119 -46.10.0.0/17 8866 -46.10.128.0/20 8866 -46.10.144.0/21 8866 -46.10.152.0/22 8866 -46.10.156.0/24 60457 -46.10.157.0/24 8866 -46.10.158.0/23 8866 -46.10.160.0/23 8866 -46.10.162.0/23 29286 -46.10.164.0/22 8866 -46.10.168.0/21 8866 -46.10.176.0/24 201384 -46.10.177.0/24 8866 -46.10.178.0/24 8866 -46.10.179.0/24 205132 -46.10.180.0/22 8866 -46.10.184.0/21 8866 -46.10.192.0/24 8866 -46.10.193.0/24 47410 -46.10.194.0/24 60560 -46.10.195.0/24 8866 -46.10.196.0/22 8866 -46.10.200.0/21 8866 -46.10.208.0/20 8866 -46.10.224.0/19 8866 -46.11.0.0/17 15735 -46.11.128.0/18 15735 -46.11.192.0/19 15735 -46.11.224.0/20 15735 -46.11.240.0/23 35356 -46.11.242.0/24 15735 -46.11.243.0/24 35356 -46.11.244.0/24 35356 -46.11.245.0/24 15735 -46.11.246.0/23 15735 -46.11.248.0/24 35356 -46.11.249.0/24 15735 -46.11.250.0/24 15735 -46.11.251.0/24 35356 -46.11.252.0/24 15735 -46.11.253.0/24 35356 -46.11.254.0/24 35356 -46.11.255.0/24 15735 -46.12.0.0/16 1241 -46.13.0.0/20 5588 -46.13.16.0/20 13036 -46.13.32.0/19 13036 -46.13.64.0/18 13036 -46.13.128.0/17 13036 -46.14.0.0/16 3303 -46.15.0.0/16 12929 -46.16.0.0/21 51551 -46.16.8.0/22 41789 -46.16.12.0/24 5577 -46.16.13.0/24 202423 -46.16.14.0/24 46573 -46.16.15.0/24 5577 -46.16.16.0/21 8818 -46.16.24.0/21 45005 -46.16.40.0/21 197369 -46.16.48.0/22 16186 -46.16.52.0/22 21119 -46.16.56.0/21 197712 -46.16.64.0/21 3216 -46.16.72.0/21 51862 -46.16.80.0/21 51572 -46.16.88.0/21 52030 -46.16.96.0/21 16345 -46.16.104.0/21 9125 -46.16.112.0/21 51504 -46.16.120.0/21 44430 -46.16.128.0/22 202263 -46.16.132.0/22 202054 -46.16.136.0/21 51606 -46.16.144.0/21 51878 -46.16.152.0/21 47337 -46.16.160.0/23 43584 -46.16.164.0/24 43584 -46.16.166.0/23 43584 -46.16.168.0/21 12637 -46.16.176.0/21 12714 -46.16.184.0/21 36351 -46.16.192.0/22 50020 -46.16.196.0/24 59746 -46.16.197.0/24 202864 -46.16.198.0/24 50020 -46.16.199.0/24 210299 -46.16.200.0/22 207758 -46.16.208.0/21 48961 -46.16.216.0/21 200567 -46.16.224.0/21 44391 -46.16.232.0/21 44136 -46.16.240.0/22 198847 -46.16.244.0/23 198847 -46.16.246.0/24 198847 -46.16.248.0/21 51682 -46.17.0.0/21 60781 -46.17.8.0/22 25459 -46.17.12.0/23 25459 -46.17.14.0/23 60781 -46.17.16.0/21 20741 -46.17.24.0/22 1136 -46.17.32.0/21 1239 -46.17.40.0/21 51659 -46.17.48.0/21 43045 -46.17.56.0/21 39326 -46.17.64.0/21 35012 -46.17.72.0/23 51910 -46.17.76.0/22 51910 -46.17.80.0/21 51985 -46.17.88.0/21 15510 -46.17.96.0/21 57043 -46.17.104.0/24 50113 -46.17.105.0/24 200740 -46.17.106.0/24 205090 -46.17.107.0/24 204154 -46.17.108.0/22 9136 -46.17.112.0/21 51675 -46.17.120.0/21 197324 -46.17.128.0/21 41902 -46.17.136.0/21 51678 -46.17.144.0/21 31042 -46.17.160.0/21 51055 -46.17.168.0/24 12552 -46.17.172.0/22 47583 -46.17.184.0/21 1257 -46.17.192.0/21 34273 -46.17.200.0/21 49675 -46.17.208.0/21 59455 -46.17.216.0/21 60198 -46.17.224.0/21 8387 -46.17.232.0/21 30844 -46.17.240.0/22 201260 -46.17.244.0/22 20677 -46.17.248.0/21 47271 -46.18.0.0/21 25071 -46.18.8.0/22 50300 -46.18.16.0/21 47253 -46.18.24.0/21 51708 -46.18.32.0/24 203148 -46.18.33.0/24 6696 -46.18.34.0/23 6696 -46.18.36.0/22 6696 -46.18.40.0/21 201748 -46.18.48.0/21 15689 -46.18.56.0/23 25325 -46.18.58.0/24 25325 -46.18.59.0/24 34156 -46.18.60.0/23 25325 -46.18.62.0/23 34156 -46.18.64.0/21 39280 -46.18.72.0/22 6739 -46.18.76.0/23 6739 -46.18.78.0/24 6739 -46.18.80.0/23 29457 -46.18.82.0/24 29457 -46.18.85.0/24 29457 -46.18.86.0/23 29457 -46.18.88.0/21 50535 -46.18.96.0/21 35665 -46.18.112.0/24 51762 -46.18.114.0/24 51762 -46.18.116.0/23 51762 -46.18.118.0/24 51762 -46.18.120.0/21 57809 -46.18.128.0/21 51754 -46.18.136.0/21 196749 -46.18.144.0/21 35328 -46.18.152.0/21 31198 -46.18.160.0/24 197989 -46.18.161.0/24 29684 -46.18.162.0/23 197989 -46.18.164.0/24 197989 -46.18.165.0/24 29684 -46.18.166.0/23 197989 -46.18.168.0/21 43531 -46.18.176.0/23 197370 -46.18.181.0/24 197370 -46.18.182.0/23 197370 -46.18.184.0/24 60220 -46.18.186.0/23 60220 -46.18.188.0/22 60220 -46.18.192.0/22 6738 -46.18.197.0/24 6738 -46.18.198.0/23 6738 -46.18.200.0/21 48479 -46.18.208.0/21 34235 -46.18.216.0/21 47474 -46.18.224.0/21 197033 -46.18.232.0/21 60803 -46.18.240.0/23 51795 -46.18.243.0/24 51795 -46.18.244.0/24 51795 -46.18.246.0/23 51795 -46.18.248.0/21 51785 -46.19.0.0/22 39923 -46.19.4.0/24 58123 -46.19.6.0/24 58123 -46.19.7.0/24 57948 -46.19.8.0/21 51790 -46.19.16.0/24 3292 -46.19.17.0/24 49082 -46.19.18.0/23 49082 -46.19.20.0/22 49082 -46.19.24.0/23 51806 -46.19.32.0/21 196752 -46.19.40.0/21 43994 -46.19.48.0/21 3257 -46.19.56.0/21 47777 -46.19.64.0/21 41070 -46.19.72.0/21 197381 -46.19.80.0/21 16116 -46.19.88.0/21 50629 -46.19.96.0/21 49800 -46.19.104.0/21 210176 -46.19.112.0/21 50477 -46.19.120.0/21 8723 -46.19.128.0/21 39271 -46.19.136.0/21 51852 -46.19.144.0/21 43513 -46.19.152.0/21 6753 -46.19.160.0/23 197407 -46.19.162.0/23 10099 -46.19.164.0/22 10099 -46.19.176.0/21 25593 -46.19.184.0/21 39102 -46.19.192.0/21 9051 -46.19.200.0/24 208030 -46.19.201.0/24 30823 -46.19.202.0/24 47814 -46.19.203.0/24 25004 -46.19.204.0/23 47814 -46.19.206.0/24 47814 -46.19.207.0/24 30823 -46.19.208.0/23 51865 -46.19.210.0/24 51865 -46.19.211.0/24 13035 -46.19.212.0/22 51865 -46.19.216.0/21 20559 -46.19.224.0/21 29170 -46.19.232.0/21 197664 -46.19.248.0/21 20681 -46.20.0.0/21 43260 -46.20.9.0/24 43260 -46.20.10.0/24 199366 -46.20.11.0/24 43260 -46.20.12.0/23 199366 -46.20.14.0/24 43260 -46.20.15.0/24 60721 -46.20.16.0/20 39560 -46.20.32.0/20 24961 -46.20.48.0/24 35745 -46.20.49.0/24 28785 -46.20.50.0/23 35745 -46.20.52.0/23 62393 -46.20.54.0/23 35745 -46.20.56.0/23 62393 -46.20.58.0/24 35745 -46.20.59.0/24 62393 -46.20.60.0/23 62393 -46.20.62.0/23 35745 -46.20.64.0/21 15774 -46.20.72.0/22 15774 -46.20.76.0/22 51813 -46.20.80.0/20 51569 -46.20.96.0/23 34458 -46.20.98.0/23 9051 -46.20.100.0/23 34458 -46.20.102.0/24 34458 -46.20.103.0/24 9051 -46.20.104.0/21 34458 -46.20.112.0/20 13768 -46.20.128.0/20 49909 -46.20.144.0/22 48737 -46.20.149.0/24 48737 -46.20.150.0/23 48737 -46.20.152.0/21 48737 -46.20.160.0/20 16347 -46.20.176.0/20 42322 -46.20.192.0/20 24722 -46.20.208.0/20 51737 -46.20.224.0/20 20860 -46.20.240.0/20 25091 -46.21.0.0/20 15925 -46.21.16.0/22 6898 -46.21.24.0/22 197352 -46.21.28.0/23 6898 -46.21.30.0/24 203639 -46.21.31.0/24 6898 -46.21.32.0/20 44869 -46.21.48.0/24 8544 -46.21.49.0/24 16229 -46.21.50.0/24 8544 -46.21.51.0/24 16229 -46.21.52.0/24 8544 -46.21.53.0/24 16229 -46.21.54.0/23 8544 -46.21.56.0/24 16229 -46.21.57.0/24 8544 -46.21.58.0/24 8544 -46.21.59.0/24 197785 -46.21.60.0/24 8544 -46.21.61.0/24 16229 -46.21.62.0/23 8544 -46.21.64.0/23 43265 -46.21.68.0/22 34518 -46.21.72.0/22 42062 -46.21.76.0/22 34518 -46.21.80.0/20 39308 -46.21.96.0/22 43948 -46.21.100.0/24 42708 -46.21.101.0/24 43948 -46.21.102.0/23 43948 -46.21.104.0/21 43948 -46.21.112.0/20 49463 -46.21.128.0/22 35184 -46.21.144.0/22 29802 -46.21.148.0/24 29802 -46.21.150.0/23 35017 -46.21.152.0/22 35017 -46.21.156.0/24 29802 -46.21.157.0/24 35017 -46.21.158.0/23 35017 -46.21.160.0/20 42755 -46.21.176.0/20 47217 -46.21.192.0/20 35393 -46.21.208.0/21 39288 -46.21.216.0/24 39288 -46.21.217.0/24 60463 -46.21.218.0/24 60463 -46.21.219.0/24 39288 -46.21.220.0/22 39288 -46.21.224.0/20 34762 -46.21.240.0/21 197401 -46.21.248.0/24 49505 -46.21.249.0/24 50340 -46.21.250.0/24 21100 -46.21.251.0/24 209565 -46.21.252.0/22 61400 -46.22.0.0/20 15943 -46.22.16.0/20 51873 -46.22.32.0/20 61157 -46.22.48.0/20 12722 -46.22.68.0/23 15133 -46.22.70.0/24 15133 -46.22.72.0/23 15133 -46.22.76.0/24 15133 -46.22.78.0/23 15133 -46.22.80.0/20 48072 -46.22.96.0/20 51896 -46.22.112.0/20 43853 -46.22.128.0/20 39122 -46.22.144.0/20 51908 -46.22.160.0/24 42927 -46.22.161.0/24 61242 -46.22.163.0/24 60816 -46.22.164.0/23 42927 -46.22.167.0/24 42927 -46.22.168.0/23 42927 -46.22.170.0/24 42927 -46.22.171.0/24 208892 -46.22.172.0/24 61242 -46.22.173.0/24 42927 -46.22.174.0/24 49785 -46.22.176.0/23 29396 -46.22.180.0/22 24586 -46.22.184.0/21 24586 -46.22.192.0/20 30781 -46.22.208.0/20 34702 -46.22.224.0/20 41997 -46.22.240.0/20 42514 -46.23.0.0/20 197441 -46.23.32.0/20 24651 -46.23.48.0/20 197296 -46.23.64.0/20 13213 -46.23.80.0/20 3265 -46.23.96.0/20 15723 -46.23.112.0/20 9038 -46.23.128.0/20 51968 -46.23.144.0/20 43314 -46.23.160.0/20 52056 -46.23.176.0/20 13174 -46.23.192.0/20 60822 -46.23.208.0/20 5521 -46.23.224.0/24 207194 -46.23.225.0/24 60610 -46.23.226.0/23 57168 -46.23.232.0/21 48173 -46.23.240.0/20 197465 -46.24.0.0/18 12430 -46.24.64.0/21 12430 -46.24.72.0/24 12430 -46.24.73.0/24 200555 -46.24.74.0/23 12430 -46.24.76.0/22 12430 -46.24.80.0/20 12430 -46.24.96.0/19 12430 -46.24.128.0/20 12430 -46.24.144.0/22 12430 -46.24.148.0/24 206830 -46.24.149.0/24 12430 -46.24.150.0/23 12430 -46.24.152.0/21 12430 -46.24.160.0/19 12430 -46.24.192.0/18 12430 -46.25.0.0/16 12430 -46.26.0.0/15 12430 -46.28.0.0/21 52030 -46.28.8.0/22 31229 -46.28.12.0/23 31229 -46.28.14.0/24 31229 -46.28.16.0/23 51309 -46.28.18.0/24 51309 -46.28.20.0/22 51309 -46.28.24.0/21 51300 -46.28.32.0/21 16024 -46.28.48.0/21 13213 -46.28.56.0/24 12993 -46.28.64.0/21 15626 -46.28.72.0/22 44285 -46.28.76.0/23 44285 -46.28.78.0/23 58053 -46.28.80.0/21 35205 -46.28.88.0/21 25227 -46.28.96.0/21 12406 -46.28.104.0/21 197019 -46.28.112.0/21 197208 -46.28.120.0/21 47927 -46.28.128.0/21 39586 -46.28.136.0/21 51440 -46.28.144.0/21 3301 -46.28.152.0/21 197403 -46.28.160.0/21 199312 -46.28.168.0/21 51326 -46.28.176.0/22 16229 -46.28.180.0/23 16229 -46.28.182.0/24 16229 -46.28.183.0/24 8544 -46.28.184.0/24 12878 -46.28.192.0/21 48923 -46.28.200.0/21 197988 -46.28.208.0/22 51773 -46.28.212.0/24 51773 -46.28.216.0/21 41885 -46.28.224.0/21 42339 -46.28.232.0/21 42910 -46.28.241.0/24 34209 -46.28.243.0/24 34209 -46.28.244.0/23 34209 -46.28.246.0/24 34209 -46.28.248.0/21 49318 -46.29.0.0/23 6663 -46.29.2.0/24 201924 -46.29.3.0/24 6663 -46.29.4.0/22 197284 -46.29.8.0/21 197204 -46.29.16.0/21 197226 -46.29.28.0/22 35486 -46.29.32.0/21 31668 -46.29.40.0/21 29394 -46.29.48.0/21 51718 -46.29.56.0/21 51406 -46.29.64.0/21 51378 -46.29.72.0/21 197235 -46.29.80.0/23 197247 -46.29.88.0/21 29017 -46.29.96.0/24 6878 -46.29.97.0/24 34086 -46.29.98.0/23 34086 -46.29.100.0/22 34086 -46.29.104.0/21 49284 -46.29.112.0/23 44963 -46.29.114.0/23 208058 -46.29.116.0/23 44963 -46.29.118.0/23 199669 -46.29.120.0/23 35625 -46.29.122.0/24 24935 -46.29.123.0/24 35625 -46.29.124.0/22 35625 -46.29.128.0/24 12883 -46.29.136.0/23 51438 -46.29.138.0/24 8730 -46.29.139.0/24 51438 -46.29.140.0/22 51438 -46.29.144.0/21 35063 -46.29.152.0/21 51437 -46.29.160.0/23 51659 -46.29.162.0/24 49392 -46.29.163.0/24 51659 -46.29.164.0/22 51659 -46.29.168.0/21 34547 -46.29.176.0/22 51405 -46.29.180.0/24 206610 -46.29.182.0/24 51405 -46.29.183.0/24 60391 -46.29.184.0/21 35592 -46.29.192.0/21 50928 -46.29.200.0/21 20746 -46.29.208.0/21 44300 -46.29.216.0/21 44764 -46.29.224.0/21 47232 -46.29.232.0/21 34804 -46.29.240.0/22 13127 -46.29.244.0/23 13127 -46.29.246.0/24 13127 -46.29.247.0/24 33915 -46.29.248.0/21 57858 -46.30.0.0/21 57667 -46.30.8.0/21 35266 -46.30.16.0/21 44585 -46.30.24.0/21 52088 -46.30.32.0/21 5567 -46.30.40.0/21 210079 -46.30.48.0/21 60925 -46.30.56.0/21 15817 -46.30.64.0/21 28905 -46.30.72.0/21 41431 -46.30.80.0/21 43503 -46.30.88.0/21 197277 -46.30.96.0/24 56637 -46.30.104.0/23 197240 -46.30.108.0/22 197240 -46.30.112.0/22 51978 -46.30.116.0/23 51978 -46.30.119.0/24 51978 -46.30.120.0/21 47527 -46.30.130.0/23 50290 -46.30.132.0/22 50290 -46.30.136.0/24 196881 -46.30.137.0/24 8468 -46.30.138.0/23 196881 -46.30.140.0/24 196881 -46.30.144.0/21 43070 -46.30.152.0/21 39613 -46.30.160.0/21 25521 -46.30.168.0/21 15605 -46.30.176.0/21 48953 -46.30.188.0/22 50495 -46.30.192.0/21 51489 -46.30.200.0/21 39444 -46.30.208.0/21 51468 -46.30.216.0/24 196708 -46.30.219.0/24 196708 -46.30.220.0/23 196708 -46.30.222.0/24 198471 -46.30.223.0/24 196708 -46.30.224.0/21 51539 -46.30.232.0/21 33883 -46.30.240.0/21 52030 -46.30.248.0/21 51499 -46.31.0.0/23 51764 -46.31.2.0/24 41942 -46.31.3.0/24 51764 -46.31.4.0/23 41942 -46.31.6.0/24 41942 -46.31.7.0/24 51764 -46.31.8.0/21 12561 -46.31.16.0/21 43088 -46.31.24.0/21 29124 -46.31.32.0/22 197336 -46.31.36.0/22 39039 -46.31.40.0/21 44141 -46.31.48.0/21 51514 -46.31.56.0/21 197267 -46.31.64.0/23 25122 -46.31.70.0/23 25122 -46.31.76.0/22 61135 -46.31.80.0/21 196628 -46.31.88.0/21 196987 -46.31.96.0/21 51825 -46.31.104.0/21 197075 -46.31.112.0/23 51625 -46.31.114.0/24 51625 -46.31.116.0/23 51625 -46.31.118.0/24 51625 -46.31.120.0/21 51531 -46.31.128.0/21 197290 -46.31.136.0/21 51989 -46.31.144.0/22 51540 -46.31.148.0/23 51540 -46.31.151.0/24 51540 -46.31.152.0/21 51532 -46.31.160.0/21 50758 -46.31.168.0/21 39295 -46.31.176.0/23 50181 -46.31.178.0/23 12301 -46.31.180.0/23 12301 -46.31.182.0/24 12301 -46.31.183.0/24 5483 -46.31.188.0/22 25148 -46.31.192.0/21 44297 -46.31.200.0/21 8680 -46.31.208.0/21 29513 -46.31.216.0/21 29413 -46.31.224.0/21 39884 -46.31.232.0/23 16552 -46.31.234.0/24 16552 -46.31.236.0/23 16552 -46.31.240.0/21 8681 -46.31.248.0/21 197293 -46.32.0.0/19 24631 -46.32.32.0/19 39642 -46.32.64.0/20 48416 -46.32.80.0/21 48416 -46.32.92.0/22 48416 -46.32.96.0/19 48832 -46.32.128.0/19 42525 -46.32.160.0/19 197223 -46.32.192.0/19 51440 -46.32.224.0/19 20738 -46.33.0.0/19 42689 -46.33.32.0/21 31593 -46.33.40.0/22 31593 -46.33.44.0/22 44668 -46.33.48.0/22 35588 -46.33.52.0/24 35588 -46.33.53.0/24 43320 -46.33.54.0/23 35588 -46.33.56.0/22 31593 -46.33.60.0/22 48082 -46.33.64.0/19 3257 -46.33.96.0/19 29208 -46.33.128.0/19 51561 -46.33.160.0/19 50583 -46.33.192.0/19 8585 -46.33.224.0/19 31272 -46.34.0.0/19 8190 -46.34.32.0/19 197100 -46.34.64.0/24 34984 -46.34.68.0/23 23148 -46.34.71.0/24 23148 -46.34.72.0/24 23148 -46.34.73.0/24 11303 -46.34.74.0/24 11303 -46.34.75.0/24 23148 -46.34.76.0/23 11303 -46.34.78.0/24 202207 -46.34.79.0/24 23148 -46.34.80.0/22 23148 -46.34.84.0/22 11303 -46.34.88.0/23 23148 -46.34.90.0/23 34984 -46.34.92.0/22 23148 -46.34.96.0/19 48608 -46.34.128.0/23 8595 -46.34.130.0/23 43370 -46.34.132.0/23 8595 -46.34.134.0/24 8492 -46.34.135.0/24 8595 -46.34.136.0/21 8492 -46.34.144.0/23 31430 -46.34.146.0/23 34277 -46.34.148.0/22 8492 -46.34.152.0/24 15599 -46.34.153.0/24 25227 -46.34.154.0/23 25227 -46.34.156.0/22 25227 -46.34.160.0/22 202391 -46.34.164.0/22 24631 -46.34.168.0/21 24631 -46.34.176.0/20 24631 -46.34.192.0/20 21299 -46.34.208.0/21 21299 -46.34.216.0/23 35566 -46.34.218.0/23 21299 -46.34.220.0/22 21299 -46.34.224.0/19 28952 -46.35.0.0/19 9003 -46.35.32.0/20 51978 -46.35.48.0/20 12931 -46.35.64.0/19 30873 -46.35.96.0/19 199226 -46.35.128.0/19 20875 -46.35.160.0/20 47771 -46.35.176.0/22 44247 -46.35.180.0/23 58079 -46.35.182.0/23 8967 -46.35.184.0/21 58079 -46.35.192.0/19 30836 -46.35.224.0/19 35816 -46.36.0.0/19 48642 -46.36.32.0/19 51731 -46.36.64.0/19 43627 -46.36.96.0/20 51759 -46.36.112.0/20 44395 -46.36.128.0/19 39824 -46.36.160.0/19 16178 -46.36.192.0/21 201508 -46.36.200.0/22 43350 -46.36.204.0/22 207199 -46.36.208.0/21 207199 -46.36.216.0/21 198068 -46.37.0.0/19 31034 -46.37.32.0/19 51918 -46.37.64.0/20 34977 -46.37.80.0/22 34977 -46.37.84.0/23 34977 -46.37.86.0/24 34977 -46.37.87.0/24 202491 -46.37.88.0/22 34977 -46.37.92.0/23 34977 -46.37.94.0/24 34977 -46.37.95.0/24 202491 -46.37.96.0/19 52037 -46.37.128.0/19 42038 -46.37.160.0/19 61323 -46.37.192.0/19 44078 -46.37.224.0/19 29449 -46.38.0.0/21 49301 -46.38.8.0/21 20485 -46.38.16.0/22 20485 -46.38.20.0/23 20485 -46.38.22.0/24 20485 -46.38.23.0/24 49301 -46.38.24.0/22 20485 -46.38.28.0/24 20485 -46.38.29.0/24 49301 -46.38.30.0/23 20485 -46.38.32.0/20 31430 -46.38.48.0/20 52201 -46.38.64.0/19 35753 -46.38.96.0/19 8752 -46.38.128.0/24 44889 -46.38.129.0/24 34837 -46.38.130.0/23 34837 -46.38.132.0/22 44889 -46.38.138.0/24 44889 -46.38.140.0/23 34837 -46.38.142.0/23 49981 -46.38.144.0/23 133398 -46.38.146.0/23 58142 -46.38.148.0/22 43260 -46.38.152.0/22 58142 -46.38.158.0/24 44889 -46.38.159.0/24 48434 -46.38.160.0/19 15395 -46.38.192.0/19 34968 -46.38.224.0/19 197540 -46.39.0.0/21 52015 -46.39.16.0/21 52015 -46.39.24.0/24 52015 -46.39.28.0/22 52015 -46.39.32.0/19 15582 -46.39.64.0/19 21310 -46.39.96.0/19 50821 -46.39.128.0/19 51504 -46.39.160.0/19 31246 -46.39.192.0/19 60203 -46.39.224.0/19 29124 -46.40.0.0/18 41897 -46.40.64.0/18 43205 -46.40.128.0/18 29256 -46.40.192.0/21 50010 -46.40.200.0/22 50010 -46.40.204.0/22 204974 -46.40.208.0/22 204974 -46.40.212.0/22 50010 -46.40.216.0/22 204974 -46.40.220.0/22 50010 -46.40.224.0/21 50010 -46.40.232.0/22 204974 -46.40.236.0/22 50010 -46.40.240.0/22 204974 -46.40.244.0/22 50010 -46.40.248.0/21 50010 -46.41.0.0/21 15987 -46.41.8.0/23 15987 -46.41.10.0/24 15987 -46.41.11.0/24 8820 -46.41.12.0/23 15987 -46.41.14.0/24 8820 -46.41.15.0/24 15987 -46.41.16.0/20 15987 -46.41.32.0/19 15987 -46.41.64.0/18 12389 -46.41.128.0/18 12824 -46.41.192.0/18 16322 -46.42.0.0/18 44507 -46.42.64.0/20 51375 -46.42.80.0/23 51375 -46.42.84.0/22 51375 -46.42.92.0/22 51375 -46.42.96.0/20 51375 -46.42.112.0/22 51375 -46.42.116.0/23 51375 -46.42.120.0/21 51375 -46.42.128.0/19 29125 -46.42.160.0/20 29125 -46.42.176.0/22 29125 -46.42.192.0/20 21299 -46.42.208.0/21 21299 -46.42.216.0/22 21299 -46.42.220.0/23 35566 -46.42.222.0/24 35566 -46.42.223.0/24 21299 -46.42.224.0/19 21299 -46.43.0.0/18 35425 -46.43.64.0/18 51407 -46.43.128.0/18 39477 -46.43.192.0/18 44347 -46.44.0.0/18 28917 -46.44.64.0/18 35819 -46.44.128.0/18 28685 -46.44.192.0/18 21056 -46.45.0.0/19 51515 -46.45.32.0/20 51515 -46.45.48.0/24 51515 -46.45.49.0/24 201570 -46.45.50.0/24 201570 -46.45.51.0/24 51515 -46.45.52.0/23 51515 -46.45.64.0/20 208066 -46.45.80.0/20 51484 -46.45.96.0/19 51484 -46.45.128.0/24 197328 -46.45.129.0/24 42926 -46.45.130.0/23 42926 -46.45.132.0/24 199515 -46.45.133.0/24 42926 -46.45.134.0/24 42926 -46.45.136.0/21 197328 -46.45.144.0/24 42926 -46.45.145.0/24 205196 -46.45.146.0/23 42926 -46.45.148.0/22 42926 -46.45.154.0/23 42926 -46.45.156.0/24 42926 -46.45.158.0/23 42926 -46.45.160.0/21 42926 -46.45.168.0/21 197328 -46.45.176.0/21 197328 -46.45.184.0/24 50941 -46.45.185.0/24 42926 -46.45.186.0/23 42926 -46.45.188.0/22 42926 -46.45.192.0/20 12389 -46.45.208.0/23 12683 -46.45.210.0/24 12683 -46.45.211.0/24 12389 -46.45.212.0/22 12683 -46.45.216.0/23 12683 -46.45.218.0/24 12683 -46.45.219.0/24 12389 -46.45.220.0/24 12683 -46.45.221.0/24 12389 -46.45.222.0/23 12683 -46.45.224.0/23 12683 -46.45.226.0/24 12683 -46.45.227.0/24 12389 -46.45.228.0/22 12683 -46.45.232.0/23 12683 -46.45.234.0/24 12683 -46.45.235.0/24 12389 -46.45.236.0/24 12389 -46.45.237.0/24 12683 -46.45.238.0/23 12389 -46.45.240.0/20 12683 -46.46.0.0/20 15638 -46.46.17.0/24 15638 -46.46.24.0/21 15638 -46.46.32.0/19 15638 -46.46.64.0/18 48045 -46.46.128.0/18 29470 -46.46.192.0/20 2116 -46.46.224.0/19 2116 -46.47.0.0/19 197298 -46.47.32.0/20 197298 -46.47.48.0/24 50477 -46.47.49.0/24 201294 -46.47.50.0/23 50477 -46.47.52.0/22 50477 -46.47.56.0/21 50477 -46.47.64.0/18 43205 -46.47.128.0/18 30764 -46.47.192.0/19 20632 -46.47.224.0/20 20632 -46.47.240.0/22 20632 -46.47.244.0/24 20632 -46.47.245.0/24 25185 -46.47.246.0/23 20632 -46.47.248.0/21 20632 -46.48.0.0/17 12668 -46.48.128.0/20 21487 -46.48.144.0/20 12389 -46.48.160.0/19 12389 -46.48.192.0/18 12389 -46.49.0.0/17 16010 -46.49.128.0/24 43987 -46.49.130.0/24 43987 -46.49.131.0/24 25233 -46.49.132.0/23 43987 -46.49.135.0/24 43987 -46.49.138.0/23 43987 -46.49.140.0/23 43987 -46.49.144.0/24 43987 -46.49.150.0/23 201771 -46.49.154.0/24 201771 -46.49.159.0/24 201771 -46.49.173.0/24 43987 -46.49.192.0/24 43987 -46.49.200.0/23 201771 -46.50.0.0/17 42863 -46.50.128.0/19 21127 -46.50.160.0/23 21127 -46.50.162.0/24 15774 -46.50.163.0/24 21127 -46.50.164.0/22 21127 -46.50.168.0/21 21127 -46.50.176.0/20 21127 -46.50.192.0/21 21127 -46.50.200.0/22 21127 -46.50.204.0/23 21127 -46.50.206.0/24 21127 -46.50.207.0/24 15774 -46.50.208.0/20 21127 -46.50.224.0/20 21127 -46.50.240.0/21 21127 -46.50.248.0/22 21127 -46.50.252.0/23 21127 -46.50.254.0/24 15774 -46.50.255.0/24 21127 -46.51.0.0/17 197207 -46.51.128.0/18 16509 -46.51.192.0/20 16509 -46.51.216.0/21 16509 -46.51.224.0/19 16509 -46.52.0.0/17 35819 -46.52.128.0/20 12772 -46.52.144.0/21 12772 -46.52.152.0/23 12772 -46.52.155.0/24 12772 -46.52.156.0/22 12772 -46.52.160.0/20 12772 -46.52.176.0/21 21353 -46.52.184.0/21 12772 -46.52.192.0/21 12772 -46.52.200.0/22 12772 -46.52.204.0/23 12772 -46.52.206.0/24 24588 -46.52.207.0/24 12772 -46.52.208.0/20 12772 -46.52.224.0/21 56341 -46.52.232.0/21 12389 -46.52.240.0/20 12772 -46.53.0.0/17 29256 -46.53.128.0/20 20852 -46.53.144.0/21 20852 -46.53.152.0/21 42772 -46.53.160.0/21 42772 -46.53.168.0/21 20852 -46.53.176.0/20 42772 -46.53.192.0/22 42772 -46.53.196.0/24 205820 -46.53.197.0/24 42772 -46.53.198.0/23 42772 -46.53.200.0/21 42772 -46.53.208.0/22 42772 -46.53.212.0/22 20852 -46.53.216.0/21 42772 -46.53.224.0/19 42772 -46.54.0.0/17 12709 -46.54.128.0/18 51615 -46.54.192.0/19 51615 -46.54.224.0/20 51615 -46.54.240.0/20 9119 -46.55.0.0/17 8926 -46.55.128.0/18 51582 -46.55.192.0/20 51582 -46.55.208.0/21 34841 -46.55.216.0/21 51582 -46.55.224.0/20 51582 -46.55.240.0/24 34841 -46.55.241.0/24 51582 -46.55.242.0/23 51582 -46.55.244.0/22 51582 -46.55.248.0/22 51582 -46.55.252.0/22 31287 -46.56.56.0/22 25106 -46.56.64.0/18 25106 -46.56.128.0/17 42772 -46.57.0.0/17 8437 -46.57.128.0/17 29256 -46.58.128.0/17 29256 -46.59.0.0/17 8473 -46.59.128.0/17 15943 -46.60.0.0/17 197350 -46.60.128.0/17 51704 -46.61.0.0/17 12389 -46.61.128.0/21 12389 -46.61.136.0/24 12389 -46.61.137.0/24 21403 -46.61.138.0/23 12389 -46.61.140.0/22 12389 -46.61.144.0/20 12389 -46.61.160.0/20 12389 -46.61.176.0/21 12389 -46.61.184.0/24 205576 -46.61.185.0/24 12389 -46.61.186.0/23 12389 -46.61.188.0/22 12389 -46.61.192.0/20 12389 -46.61.208.0/24 12389 -46.61.209.0/24 205060 -46.61.210.0/23 12389 -46.61.212.0/22 12389 -46.61.216.0/21 12389 -46.61.224.0/19 12389 -46.62.0.0/17 42277 -46.62.128.0/17 16322 -46.63.0.0/17 51784 -46.63.128.0/22 12389 -46.63.132.0/24 12389 -46.63.133.0/24 12683 -46.63.134.0/23 12389 -46.63.136.0/23 12683 -46.63.138.0/24 12683 -46.63.139.0/24 12389 -46.63.140.0/22 12389 -46.63.144.0/23 12683 -46.63.146.0/23 12389 -46.63.148.0/23 12389 -46.63.150.0/24 12683 -46.63.151.0/24 12389 -46.63.152.0/23 12389 -46.63.154.0/23 12683 -46.63.156.0/24 12389 -46.63.157.0/24 12683 -46.63.158.0/23 12683 -46.63.160.0/23 12683 -46.63.162.0/24 12683 -46.63.163.0/24 12389 -46.63.164.0/22 12683 -46.63.168.0/23 12389 -46.63.170.0/23 12683 -46.63.172.0/23 12683 -46.63.174.0/23 12389 -46.63.176.0/23 12389 -46.63.178.0/24 12683 -46.63.179.0/24 12389 -46.63.180.0/23 12389 -46.63.182.0/24 12389 -46.63.183.0/24 12683 -46.63.184.0/21 12389 -46.63.192.0/19 12389 -46.63.224.0/22 12389 -46.63.228.0/23 12683 -46.63.230.0/23 12389 -46.63.232.0/21 12389 -46.63.240.0/20 12389 -46.64.0.0/15 5607 -46.66.0.0/15 2119 -46.68.0.0/15 12576 -46.70.0.0/15 12297 -46.72.0.0/15 12714 -46.74.0.0/15 8447 -46.76.0.0/15 8374 -46.78.0.0/15 3320 -46.80.0.0/12 3320 -46.96.0.0/16 34058 -46.97.0.0/16 12302 -46.98.0.0/16 15377 -46.99.0.0/16 21246 -46.100.0.0/19 12880 -46.100.32.0/20 12880 -46.100.48.0/21 12880 -46.100.56.0/23 12880 -46.100.58.0/24 12880 -46.100.59.0/24 58224 -46.100.60.0/22 58224 -46.100.64.0/18 58224 -46.100.128.0/18 58224 -46.100.192.0/19 58224 -46.100.224.0/21 58224 -46.100.232.0/22 12880 -46.100.236.0/22 58224 -46.100.240.0/21 58224 -46.100.248.0/22 58224 -46.100.252.0/23 58224 -46.100.254.0/23 12880 -46.101.0.0/16 14061 -46.102.0.0/18 6910 -46.102.64.0/19 6910 -46.102.96.0/22 23470 -46.102.100.0/24 61154 -46.102.102.0/24 206825 -46.102.104.0/24 40975 -46.102.105.0/24 48881 -46.102.106.0/24 42926 -46.102.108.0/24 35664 -46.102.109.0/24 56885 -46.102.110.0/23 44184 -46.102.112.0/22 48544 -46.102.116.0/24 203872 -46.102.117.0/24 60819 -46.102.120.0/21 58224 -46.102.131.0/24 25184 -46.102.135.0/24 25184 -46.102.144.0/22 48881 -46.102.148.0/22 209519 -46.102.152.0/24 51852 -46.102.153.0/24 9009 -46.102.154.0/24 39855 -46.102.155.0/24 9050 -46.102.158.0/23 44605 -46.102.160.0/21 12479 -46.102.168.0/23 59398 -46.102.170.0/23 201838 -46.102.172.0/24 39855 -46.102.173.0/24 12310 -46.102.174.0/24 209706 -46.102.175.0/24 52044 -46.102.176.0/24 39855 -46.102.177.0/24 209686 -46.102.178.0/23 209686 -46.102.180.0/24 9009 -46.102.181.0/24 39855 -46.102.184.0/22 58224 -46.102.188.0/23 56550 -46.102.190.0/24 203320 -46.102.191.0/24 50887 -46.102.192.0/19 51561 -46.102.224.0/21 39647 -46.102.232.0/23 39758 -46.102.234.0/24 56654 -46.102.235.0/24 40975 -46.102.236.0/24 39474 -46.102.237.0/24 48336 -46.102.239.0/24 201665 -46.102.240.0/21 60781 -46.102.248.0/24 39756 -46.102.249.0/24 5588 -46.102.250.0/24 9009 -46.102.251.0/24 201341 -46.102.252.0/23 25369 -46.102.254.0/24 49302 -46.102.255.0/24 51239 -46.103.0.0/18 3329 -46.103.64.0/18 6866 -46.103.128.0/17 6866 -46.104.0.0/18 20978 -46.104.64.0/20 20978 -46.104.80.0/21 20978 -46.104.89.0/24 20978 -46.104.90.0/23 20978 -46.104.92.0/24 20978 -46.104.95.0/24 20978 -46.104.96.0/19 20978 -46.104.128.0/17 20978 -46.105.0.0/16 16276 -46.106.0.0/17 15897 -46.106.128.0/18 15897 -46.106.192.0/21 44558 -46.106.200.0/22 44558 -46.106.204.0/22 62211 -46.106.208.0/20 44558 -46.106.224.0/19 15897 -46.107.0.0/17 5483 -46.107.128.0/18 5483 -46.107.192.0/19 5483 -46.107.224.0/24 15545 -46.107.225.0/24 5483 -46.107.226.0/23 58098 -46.107.228.0/22 58098 -46.107.232.0/23 58098 -46.107.234.0/23 5483 -46.107.236.0/23 5483 -46.107.238.0/24 5483 -46.107.239.0/24 60097 -46.107.240.0/20 5483 -46.108.0.0/16 12663 -46.109.0.0/16 12578 -46.110.0.0/16 48484 -46.111.0.0/16 2854 -46.112.0.0/15 39603 -46.114.0.0/15 6805 -46.116.0.0/15 1680 -46.118.0.0/15 15895 -46.120.0.0/15 9116 -46.122.0.0/15 21283 -46.124.0.0/15 8412 -46.126.0.0/15 6830 -46.128.0.0/16 35244 -46.129.0.0/17 6830 -46.129.128.0/17 33915 -46.130.0.0/16 43733 -46.131.0.0/16 3249 -46.132.0.0/16 1759 -46.133.0.0/16 21497 -46.134.0.0/17 5617 -46.134.128.0/18 5617 -46.134.192.0/19 21395 -46.134.224.0/19 5617 -46.135.0.0/16 16019 -46.136.0.0/16 12430 -46.137.0.0/16 16509 -46.138.0.0/16 25513 -46.139.0.0/16 5483 -46.140.0.0/16 6830 -46.141.0.0/16 49524 -46.142.0.0/16 8881 -46.143.0.0/18 43754 -46.143.128.0/18 35753 -46.143.204.0/22 44400 -46.143.244.0/23 61962 -46.143.252.0/22 51788 -46.144.0.0/15 1136 -46.146.0.0/16 12768 -46.147.0.0/18 12768 -46.147.64.0/19 42116 -46.147.96.0/19 57378 -46.147.128.0/18 34590 -46.147.192.0/20 52207 -46.147.208.0/20 57378 -46.147.224.0/20 42116 -46.147.240.0/21 57378 -46.147.248.0/21 56330 -46.148.0.0/20 30838 -46.148.16.0/22 50297 -46.148.20.0/23 50297 -46.148.22.0/24 50297 -46.148.26.0/23 50297 -46.148.28.0/24 50297 -46.148.32.0/22 51788 -46.148.36.0/23 51788 -46.148.38.0/23 43395 -46.148.40.0/24 51788 -46.148.41.0/24 49970 -46.148.42.0/23 51788 -46.148.44.0/23 43395 -46.148.46.0/23 51788 -46.148.48.0/20 51812 -46.148.64.0/20 35491 -46.148.80.0/20 200414 -46.148.96.0/20 48940 -46.148.114.0/24 209813 -46.148.116.0/24 44750 -46.148.118.0/24 44750 -46.148.121.0/24 44750 -46.148.122.0/24 44750 -46.148.123.0/24 35277 -46.148.125.0/24 35277 -46.148.126.0/24 35277 -46.148.128.0/20 44056 -46.148.144.0/20 48659 -46.148.160.0/20 197405 -46.148.176.0/20 204161 -46.148.192.0/20 21367 -46.148.208.0/20 197443 -46.148.240.0/20 197070 -46.149.0.0/20 25019 -46.149.16.0/20 51969 -46.149.32.0/20 51973 -46.149.48.0/20 51993 -46.149.64.0/20 196936 -46.149.80.0/20 34814 -46.149.96.0/24 57000 -46.149.101.0/24 49830 -46.149.109.0/24 208059 -46.149.110.0/24 35598 -46.149.112.0/20 52092 -46.149.128.0/20 42740 -46.149.144.0/20 197503 -46.149.160.0/22 197328 -46.149.164.0/22 48430 -46.149.168.0/22 56911 -46.149.172.0/24 61276 -46.149.173.0/24 203549 -46.149.174.0/24 50340 -46.149.176.0/20 197522 -46.149.192.0/20 59371 -46.149.208.0/20 52195 -46.149.224.0/20 52175 -46.149.240.0/20 35575 -46.150.0.0/19 47513 -46.150.32.0/19 3212 -46.150.64.0/19 25229 -46.150.96.0/19 13106 -46.150.128.0/19 51891 -46.150.160.0/19 49106 -46.150.192.0/19 51947 -46.150.224.0/19 196768 -46.151.0.0/21 197406 -46.151.8.0/21 51836 -46.151.16.0/21 50467 -46.151.24.0/21 49608 -46.151.32.0/21 203464 -46.151.40.0/21 34047 -46.151.48.0/22 44387 -46.151.56.0/21 51653 -46.151.64.0/21 58219 -46.151.72.0/21 57213 -46.151.80.0/21 43668 -46.151.96.0/21 34762 -46.151.104.0/21 50802 -46.151.112.0/21 197418 -46.151.120.0/23 25337 -46.151.122.0/24 25337 -46.151.128.0/21 6700 -46.151.136.0/21 197437 -46.151.144.0/22 12507 -46.151.148.0/23 12507 -46.151.150.0/23 56587 -46.151.152.0/21 50473 -46.151.160.0/21 25504 -46.151.168.0/21 12714 -46.151.184.0/21 52079 -46.151.192.0/21 48243 -46.151.200.0/24 60587 -46.151.208.0/22 51975 -46.151.212.0/23 51975 -46.151.215.0/24 51975 -46.151.216.0/21 52009 -46.151.224.0/21 50437 -46.151.232.0/21 197470 -46.151.240.0/21 52043 -46.151.248.0/21 48117 -46.152.0.0/19 34400 -46.152.32.0/19 35819 -46.152.64.0/19 34400 -46.152.96.0/19 35819 -46.152.128.0/17 35819 -46.153.0.0/20 34400 -46.153.16.0/20 35819 -46.153.32.0/19 35819 -46.153.64.0/18 35819 -46.153.128.0/17 35819 -46.154.0.0/15 15897 -46.156.0.0/15 2119 -46.158.0.0/15 12389 -46.160.0.0/18 47241 -46.160.64.0/20 6712 -46.160.80.0/21 6712 -46.160.88.0/21 34700 -46.160.96.0/19 6712 -46.160.128.0/18 41560 -46.160.192.0/19 33993 -46.160.224.0/19 35539 -46.161.0.0/24 59504 -46.161.1.0/24 34665 -46.161.2.0/23 34665 -46.161.4.0/22 34665 -46.161.8.0/22 34665 -46.161.12.0/23 40824 -46.161.14.0/23 34665 -46.161.16.0/22 20853 -46.161.20.0/22 34665 -46.161.24.0/23 34665 -46.161.26.0/24 34665 -46.161.27.0/24 43350 -46.161.28.0/23 34665 -46.161.30.0/24 34665 -46.161.31.0/24 209813 -46.161.32.0/22 34665 -46.161.36.0/23 49505 -46.161.38.0/24 49505 -46.161.39.0/24 50340 -46.161.40.0/24 209272 -46.161.41.0/24 34665 -46.161.42.0/24 34665 -46.161.44.0/22 34665 -46.161.48.0/22 34665 -46.161.52.0/22 49505 -46.161.56.0/21 62282 -46.161.64.0/18 8585 -46.161.128.0/18 31036 -46.161.192.0/19 29256 -46.161.224.0/19 30873 -46.162.0.0/18 24881 -46.162.64.0/18 29518 -46.162.128.0/18 49594 -46.162.192.0/20 44395 -46.162.208.0/21 44395 -46.162.216.0/22 44395 -46.162.220.0/22 8932 -46.162.224.0/19 44395 -46.163.0.0/18 9119 -46.163.64.0/20 8972 -46.163.80.0/22 61157 -46.163.84.0/22 35329 -46.163.88.0/21 61157 -46.163.100.0/22 61157 -46.163.104.0/21 8972 -46.163.112.0/21 8972 -46.163.120.0/21 61157 -46.163.128.0/18 28890 -46.163.192.0/18 51935 -46.164.0.0/18 8591 -46.164.128.0/21 21219 -46.164.136.0/23 21219 -46.164.138.0/24 21075 -46.164.139.0/24 21219 -46.164.140.0/22 21219 -46.164.144.0/21 3326 -46.164.152.0/23 3326 -46.164.154.0/23 21219 -46.164.156.0/23 21219 -46.164.158.0/24 21219 -46.164.159.0/24 3326 -46.164.160.0/19 21219 -46.164.192.0/18 6856 -46.165.0.0/18 49218 -46.165.64.0/18 41272 -46.165.128.0/18 42652 -46.165.192.0/18 28753 -46.166.0.0/18 25454 -46.166.65.0/24 28769 -46.166.66.0/24 28769 -46.166.78.0/23 28769 -46.166.87.0/24 28769 -46.166.88.0/23 28769 -46.166.91.0/24 28769 -46.166.92.0/23 28769 -46.166.94.0/24 28769 -46.166.96.0/20 28769 -46.166.112.0/23 28769 -46.166.114.0/24 28769 -46.166.116.0/22 28769 -46.166.120.0/21 28769 -46.166.128.0/20 43350 -46.166.144.0/21 43350 -46.166.158.0/23 43350 -46.166.160.0/20 16125 -46.166.176.0/20 43350 -46.166.192.0/20 44417 -46.166.208.0/21 44417 -46.167.0.0/21 206761 -46.167.8.0/21 203536 -46.167.16.0/21 12843 -46.167.24.0/21 200924 -46.167.32.0/21 12693 -46.167.40.0/21 13237 -46.167.48.0/21 21413 -46.167.56.0/21 12337 -46.167.64.0/18 8427 -46.167.128.0/19 56402 -46.167.160.0/19 42442 -46.167.192.0/18 6830 -46.168.0.0/15 8374 -46.170.0.0/15 5617 -46.172.0.0/18 197023 -46.172.64.0/23 43110 -46.172.66.0/24 43110 -46.172.67.0/24 48422 -46.172.68.0/24 48422 -46.172.69.0/24 43110 -46.172.70.0/23 43110 -46.172.72.0/23 48422 -46.172.74.0/24 208531 -46.172.75.0/24 48422 -46.172.76.0/24 205753 -46.172.77.0/24 48422 -46.172.78.0/24 43110 -46.172.79.0/24 48422 -46.172.80.0/24 203088 -46.172.81.0/24 48422 -46.172.82.0/23 48422 -46.172.84.0/23 48422 -46.172.86.0/23 203088 -46.172.88.0/22 48422 -46.172.92.0/24 43110 -46.172.93.0/24 48422 -46.172.94.0/24 48422 -46.172.96.0/20 9177 -46.172.112.0/20 196791 -46.172.128.0/19 49125 -46.172.160.0/19 48044 -46.172.192.0/19 48330 -46.172.224.0/19 6752 -46.173.0.0/19 43235 -46.173.32.0/19 49120 -46.173.64.0/19 48004 -46.173.96.0/19 44318 -46.173.128.0/19 34743 -46.173.160.0/20 49183 -46.173.176.0/20 52194 -46.173.192.0/20 197550 -46.173.208.0/24 56364 -46.173.209.0/24 47196 -46.173.210.0/24 56364 -46.173.211.0/24 47196 -46.173.212.0/22 47196 -46.173.216.0/22 47196 -46.173.220.0/22 56364 -46.173.224.0/20 39857 -46.173.240.0/20 200063 -46.174.0.0/21 52101 -46.174.8.0/22 200524 -46.174.12.0/23 200524 -46.174.14.0/24 200524 -46.174.15.0/24 8732 -46.174.16.0/21 6830 -46.174.24.0/21 52110 -46.174.32.0/21 52029 -46.174.40.0/21 34573 -46.174.48.0/21 197309 -46.174.56.0/21 52058 -46.174.64.0/21 52103 -46.174.72.0/21 42832 -46.174.80.0/21 31028 -46.174.88.0/21 52099 -46.174.96.0/21 52105 -46.174.104.0/21 42740 -46.174.112.0/21 49325 -46.174.120.0/21 196808 -46.174.128.0/21 24642 -46.174.136.0/23 12637 -46.174.138.0/24 12637 -46.174.140.0/22 209671 -46.174.144.0/21 47388 -46.174.152.0/21 52154 -46.174.160.0/21 39742 -46.174.168.0/24 15694 -46.174.169.0/24 198430 -46.174.170.0/23 198430 -46.174.172.0/22 198430 -46.174.176.0/21 52142 -46.174.189.0/24 24700 -46.174.190.0/23 24700 -46.174.192.0/21 50159 -46.174.200.0/22 57217 -46.174.204.0/22 48266 -46.174.208.0/21 16110 -46.174.216.0/21 39248 -46.174.224.0/21 197113 -46.174.240.0/21 35562 -46.174.248.0/21 56326 -46.175.0.0/22 56356 -46.175.4.0/22 39574 -46.175.8.0/24 199178 -46.175.9.0/24 15830 -46.175.10.0/23 60384 -46.175.12.0/24 59644 -46.175.13.0/24 45014 -46.175.14.0/23 12741 -46.175.16.0/21 34251 -46.175.24.0/21 197460 -46.175.32.0/21 15880 -46.175.40.0/21 197227 -46.175.48.0/21 203067 -46.175.56.0/21 25504 -46.175.64.0/20 56347 -46.175.80.0/21 56347 -46.175.88.0/21 197565 -46.175.96.0/21 48470 -46.175.104.0/21 197345 -46.175.112.0/21 51426 -46.175.120.0/21 56361 -46.175.136.0/21 56385 -46.175.152.0/22 48095 -46.175.156.0/22 204004 -46.175.160.0/22 56404 -46.175.164.0/23 56404 -46.175.166.0/24 56404 -46.175.168.0/21 50590 -46.175.176.0/21 56427 -46.175.184.0/21 44800 -46.175.192.0/21 47562 -46.175.200.0/24 25513 -46.175.208.0/20 196739 -46.175.224.0/20 43171 -46.175.241.0/24 56386 -46.175.242.0/23 56386 -46.175.244.0/24 56386 -46.175.247.0/24 49327 -46.175.248.0/23 44695 -46.175.250.0/23 203149 -46.175.252.0/22 56386 -46.176.0.0/15 3329 -46.178.0.0/15 5432 -46.180.0.0/15 39927 -46.182.0.0/22 207758 -46.182.4.0/22 204818 -46.182.8.0/21 1197 -46.182.16.0/21 43847 -46.182.24.0/21 49505 -46.182.32.0/21 58224 -46.182.40.0/21 45050 -46.182.48.0/21 42772 -46.182.56.0/21 3910 -46.182.64.0/21 8678 -46.182.72.0/21 39480 -46.182.80.0/21 44600 -46.182.88.0/21 198471 -46.182.96.0/21 29007 -46.182.104.0/21 58073 -46.182.112.0/21 719 -46.182.120.0/21 60781 -46.182.128.0/21 28769 -46.182.136.0/21 29252 -46.182.144.0/21 15451 -46.182.152.0/21 29050 -46.182.160.0/21 49283 -46.182.168.0/21 48861 -46.182.176.0/21 60781 -46.182.184.0/21 43571 -46.182.192.0/21 50083 -46.182.200.0/21 42303 -46.182.208.0/21 39473 -46.182.216.0/21 39704 -46.182.224.0/21 3212 -46.182.232.0/21 51940 -46.182.240.0/21 51922 -46.182.248.0/21 25220 -46.183.0.0/21 196742 -46.183.8.0/21 41357 -46.183.16.0/21 200744 -46.183.24.0/21 44838 -46.183.32.0/21 51933 -46.183.40.0/22 3320 -46.183.45.0/24 3320 -46.183.46.0/23 3320 -46.183.49.0/24 48426 -46.183.50.0/23 48426 -46.183.52.0/24 48426 -46.183.56.0/21 197442 -46.183.64.0/21 6830 -46.183.72.0/21 51941 -46.183.80.0/21 43793 -46.183.96.0/21 34953 -46.183.104.0/21 31122 -46.183.112.0/21 49635 -46.183.120.0/21 56468 -46.183.128.0/21 8749 -46.183.136.0/21 16245 -46.183.145.0/24 40824 -46.183.160.0/24 197695 -46.183.161.0/24 25227 -46.183.162.0/24 25227 -46.183.163.0/24 197695 -46.183.164.0/24 202752 -46.183.165.0/24 197695 -46.183.166.0/23 205952 -46.183.168.0/21 197475 -46.183.176.0/21 197453 -46.183.184.0/22 47987 -46.183.188.0/22 202259 -46.183.192.0/21 51551 -46.183.208.0/21 51996 -46.183.216.0/21 52048 -46.183.232.0/21 28716 -46.183.240.0/22 35156 -46.183.244.0/24 35156 -46.183.248.0/21 15693 -46.184.0.0/19 48695 -46.184.32.0/19 47794 -46.184.64.0/20 47794 -46.184.80.0/22 47794 -46.184.84.0/22 48695 -46.184.88.0/22 48695 -46.184.92.0/22 47794 -46.184.96.0/21 47794 -46.184.104.0/21 48695 -46.184.112.0/21 47794 -46.184.120.0/21 48695 -46.184.189.0/24 51375 -46.184.190.0/23 51375 -46.184.192.0/19 51375 -46.184.224.0/20 51375 -46.184.240.0/21 51375 -46.184.252.0/22 51375 -46.185.0.0/17 15895 -46.185.128.0/17 8376 -46.186.0.0/17 21021 -46.186.128.0/17 42961 -46.187.0.0/17 12714 -46.187.128.0/17 43118 -46.188.0.0/17 8334 -46.188.128.0/17 5391 -46.189.0.0/17 8881 -46.189.128.0/17 12353 -46.190.0.0/17 25472 -46.190.128.0/21 12663 -46.190.136.0/24 12663 -46.190.137.0/24 1273 -46.190.138.0/23 12663 -46.190.140.0/22 12663 -46.190.144.0/24 12663 -46.190.145.0/24 6660 -46.190.146.0/23 12663 -46.190.148.0/22 12663 -46.190.152.0/21 12663 -46.190.160.0/19 12663 -46.190.192.0/20 12663 -46.190.208.0/21 12663 -46.190.216.0/24 12663 -46.190.217.0/24 201917 -46.190.218.0/23 12663 -46.190.220.0/22 12663 -46.190.224.0/20 12663 -46.190.240.0/21 12663 -46.190.248.0/22 12663 -46.190.252.0/23 12663 -46.190.254.0/24 1273 -46.190.255.0/24 12663 -46.191.0.0/17 44087 -46.191.128.0/18 24955 -46.191.192.0/19 24955 -46.191.224.0/22 57128 -46.191.228.0/22 24955 -46.191.232.0/21 24955 -46.191.240.0/20 41704 -46.192.0.0/15 52075 -46.194.0.0/15 2119 -46.196.0.0/17 47524 -46.196.128.0/20 47524 -46.196.144.0/21 47524 -46.196.152.0/22 47524 -46.196.160.0/19 47524 -46.196.192.0/19 47524 -46.196.227.0/24 47524 -46.196.229.0/24 47524 -46.196.232.0/23 47524 -46.196.235.0/24 47524 -46.196.236.0/22 47524 -46.196.240.0/20 47524 -46.197.0.0/19 47524 -46.197.36.0/22 47524 -46.197.40.0/21 47524 -46.197.48.0/21 47524 -46.197.60.0/22 47524 -46.197.64.0/22 47524 -46.197.68.0/24 47524 -46.197.70.0/23 47524 -46.197.74.0/23 47524 -46.197.76.0/22 47524 -46.197.80.0/20 47524 -46.197.96.0/20 47524 -46.197.112.0/21 47524 -46.197.120.0/22 47524 -46.197.126.0/24 47524 -46.197.128.0/21 47524 -46.197.140.0/22 47524 -46.197.147.0/24 47524 -46.197.150.0/23 47524 -46.197.152.0/21 47524 -46.197.160.0/21 47524 -46.197.171.0/24 47524 -46.197.172.0/22 47524 -46.197.176.0/21 47524 -46.197.184.0/22 47524 -46.197.192.0/19 47524 -46.197.224.0/20 47524 -46.197.243.0/24 47524 -46.197.244.0/22 47524 -46.197.248.0/21 47524 -46.198.0.0/17 6866 -46.198.128.0/20 6866 -46.198.144.0/20 3329 -46.198.160.0/19 6866 -46.198.192.0/19 3329 -46.198.224.0/19 6866 -46.199.0.0/16 6866 -46.200.0.0/18 6849 -46.200.64.0/21 6849 -46.200.72.0/22 6877 -46.200.76.0/22 6849 -46.200.80.0/20 6849 -46.200.96.0/19 6849 -46.200.128.0/17 6849 -46.201.0.0/20 6849 -46.201.16.0/22 6849 -46.201.20.0/23 6877 -46.201.22.0/23 6849 -46.201.24.0/21 6849 -46.201.32.0/19 6849 -46.201.64.0/21 6849 -46.201.72.0/23 6877 -46.201.74.0/23 6849 -46.201.76.0/22 6849 -46.201.80.0/20 6849 -46.201.96.0/19 6849 -46.201.128.0/20 6849 -46.201.144.0/21 6849 -46.201.152.0/21 6877 -46.201.160.0/19 6849 -46.201.192.0/20 6849 -46.201.208.0/21 6849 -46.201.216.0/23 6849 -46.201.218.0/23 6877 -46.201.220.0/22 6849 -46.201.224.0/22 6877 -46.201.228.0/22 6849 -46.201.232.0/21 6849 -46.201.240.0/20 6877 -46.202.0.0/15 6877 -46.204.0.0/15 12912 -46.206.0.0/15 8447 -46.208.0.0/16 6871 -46.209.0.0/24 60320 -46.209.1.0/24 42337 -46.209.2.0/23 42337 -46.209.4.0/22 42337 -46.209.8.0/23 42337 -46.209.10.0/24 49100 -46.209.11.0/24 42337 -46.209.12.0/22 42337 -46.209.16.0/20 42337 -46.209.32.0/21 49100 -46.209.40.0/22 12660 -46.209.44.0/22 42337 -46.209.48.0/22 42337 -46.209.52.0/23 42337 -46.209.54.0/23 49100 -46.209.56.0/23 204650 -46.209.58.0/23 42337 -46.209.60.0/22 42337 -46.209.64.0/20 42337 -46.209.80.0/21 12660 -46.209.88.0/21 42337 -46.209.96.0/22 42337 -46.209.100.0/24 42337 -46.209.101.0/24 209544 -46.209.102.0/24 49100 -46.209.103.0/24 42337 -46.209.104.0/22 42337 -46.209.108.0/22 204650 -46.209.112.0/20 42337 -46.209.128.0/22 42337 -46.209.132.0/24 42337 -46.209.133.0/24 204650 -46.209.134.0/23 204650 -46.209.136.0/21 42337 -46.209.144.0/20 42337 -46.209.160.0/21 42337 -46.209.168.0/21 49100 -46.209.176.0/21 49100 -46.209.184.0/23 61209 -46.209.186.0/23 42337 -46.209.188.0/22 42337 -46.209.192.0/19 42337 -46.209.224.0/20 42337 -46.209.240.0/21 42337 -46.209.248.0/23 49100 -46.209.250.0/24 49100 -46.209.251.0/24 42337 -46.209.252.0/22 42337 -46.210.0.0/16 1680 -46.211.0.0/16 15895 -46.212.128.0/17 41164 -46.213.0.0/16 29256 -46.214.0.0/16 48161 -46.215.0.0/16 8374 -46.216.0.0/16 25106 -46.217.0.0/17 6821 -46.217.128.0/18 6821 -46.217.192.0/19 6821 -46.217.224.0/20 6821 -46.217.240.0/21 41557 -46.217.248.0/22 41557 -46.217.252.0/22 6821 -46.218.0.0/16 12670 -46.219.1.0/24 31148 -46.219.2.0/23 31148 -46.219.4.0/22 31148 -46.219.8.0/21 31148 -46.219.16.0/22 31148 -46.219.21.0/24 31148 -46.219.22.0/23 31148 -46.219.24.0/21 31148 -46.219.32.0/23 31148 -46.219.42.0/23 31148 -46.219.44.0/22 31148 -46.219.48.0/24 31148 -46.219.52.0/22 31148 -46.219.56.0/23 31148 -46.219.59.0/24 31148 -46.219.60.0/23 31148 -46.219.62.0/24 31148 -46.219.66.0/24 31148 -46.219.68.0/23 31148 -46.219.71.0/24 31148 -46.219.72.0/21 31148 -46.219.80.0/23 31148 -46.219.84.0/23 31148 -46.219.87.0/24 31148 -46.219.89.0/24 31148 -46.219.90.0/23 31148 -46.219.92.0/22 31148 -46.219.96.0/22 31148 -46.219.101.0/24 31148 -46.219.102.0/23 31148 -46.219.104.0/22 31148 -46.219.108.0/24 31148 -46.219.110.0/23 31148 -46.219.112.0/20 31148 -46.219.128.0/24 31148 -46.219.130.0/23 31148 -46.219.200.0/24 31148 -46.219.204.0/22 31148 -46.219.208.0/20 31148 -46.219.224.0/19 31148 -46.220.0.0/16 25255 -46.221.0.0/18 15924 -46.221.64.0/18 15897 -46.221.128.0/17 15897 -46.222.0.0/16 16299 -46.223.0.0/16 6830 -46.224.0.0/15 56402 -46.226.0.0/21 56595 -46.226.8.0/21 39783 -46.226.16.0/21 52176 -46.226.24.0/24 12552 -46.226.25.0/24 29492 -46.226.26.0/24 12552 -46.226.32.0/21 39155 -46.226.40.0/21 15699 -46.226.48.0/21 21345 -46.226.56.0/21 5524 -46.226.64.0/21 34703 -46.226.72.0/21 197529 -46.226.80.0/21 38927 -46.226.88.0/21 20559 -46.226.96.0/21 6863 -46.226.104.0/22 203476 -46.226.108.0/22 29169 -46.226.112.0/21 43503 -46.226.128.0/21 34863 -46.226.136.0/21 56588 -46.226.144.0/21 201942 -46.226.160.0/21 16230 -46.226.168.0/21 52200 -46.226.176.0/21 56320 -46.226.184.0/21 13122 -46.226.193.0/24 199081 -46.226.194.0/23 199081 -46.226.200.0/21 12835 -46.226.216.0/23 205294 -46.226.218.0/23 22001 -46.226.224.0/22 203750 -46.226.228.0/23 205232 -46.226.232.0/22 44187 -46.226.236.0/22 41960 -46.226.240.0/21 43782 -46.226.248.0/21 31727 -46.227.0.0/21 198471 -46.227.8.0/21 34315 -46.227.16.0/21 43142 -46.227.24.0/21 41789 -46.227.32.0/22 56324 -46.227.36.0/22 51155 -46.227.40.0/21 31708 -46.227.48.0/21 60788 -46.227.56.0/24 208149 -46.227.57.0/24 8280 -46.227.58.0/23 8280 -46.227.60.0/22 8280 -46.227.64.0/21 197595 -46.227.72.0/21 13189 -46.227.80.0/21 8304 -46.227.88.0/21 44180 -46.227.96.0/21 12611 -46.227.104.0/21 8819 -46.227.112.0/21 20963 -46.227.120.0/21 39231 -46.227.128.0/21 15844 -46.227.136.0/21 24945 -46.227.144.0/21 56329 -46.227.152.0/21 50627 -46.227.160.0/21 31059 -46.227.168.0/22 39904 -46.227.172.0/24 199604 -46.227.173.0/24 39904 -46.227.174.0/24 205724 -46.227.175.0/24 39904 -46.227.176.0/21 56349 -46.227.184.0/24 206026 -46.227.185.0/24 35168 -46.227.186.0/24 206026 -46.227.187.0/24 35168 -46.227.188.0/23 35168 -46.227.190.0/23 206026 -46.227.192.0/21 2116 -46.227.200.0/21 41495 -46.227.208.0/21 12714 -46.227.216.0/22 21413 -46.227.220.0/24 201600 -46.227.221.0/24 21413 -46.227.222.0/23 21413 -46.227.224.0/21 42760 -46.227.232.0/21 12871 -46.227.240.0/21 15969 -46.227.248.0/21 41833 -46.228.0.0/20 24739 -46.228.16.0/20 57188 -46.228.32.0/20 34010 -46.228.48.0/20 31726 -46.228.64.0/22 24665 -46.228.80.0/20 13110 -46.228.96.0/20 44507 -46.228.112.0/20 42678 -46.228.128.0/21 16273 -46.228.136.0/23 16509 -46.228.140.0/23 16273 -46.228.143.0/24 16273 -46.228.144.0/20 51082 -46.228.160.0/20 56396 -46.228.176.0/20 39280 -46.228.192.0/20 24961 -46.228.208.0/21 48326 -46.228.216.0/22 48326 -46.228.220.0/23 48326 -46.228.222.0/24 49798 -46.228.223.0/24 48326 -46.228.224.0/20 44514 -46.228.240.0/20 5396 -46.229.0.0/20 20902 -46.229.16.0/20 25276 -46.229.45.0/24 61157 -46.229.46.0/23 61157 -46.229.48.0/21 34056 -46.229.56.0/24 204549 -46.229.57.0/24 204294 -46.229.58.0/24 201948 -46.229.59.0/24 48323 -46.229.60.0/24 201041 -46.229.61.0/24 197254 -46.229.64.0/22 8711 -46.229.68.0/22 25549 -46.229.72.0/23 8711 -46.229.74.0/23 25549 -46.229.76.0/22 25549 -46.229.80.0/20 13097 -46.229.96.0/20 56350 -46.229.112.0/20 56450 -46.229.128.0/22 25159 -46.229.132.0/22 31224 -46.229.136.0/21 31208 -46.229.144.0/21 15694 -46.229.152.0/22 15694 -46.229.156.0/23 15694 -46.229.158.0/23 24723 -46.229.160.0/20 39572 -46.229.176.0/20 197078 -46.229.192.0/20 20911 -46.229.208.0/22 8492 -46.229.212.0/22 9123 -46.229.216.0/21 199860 -46.229.224.0/20 29405 -46.229.240.0/21 56681 -46.229.248.0/22 56681 -46.229.252.0/23 56681 -46.229.255.0/24 46261 -46.230.0.0/17 35819 -46.230.128.0/20 2116 -46.230.176.0/20 1299 -46.230.192.0/19 1299 -46.230.224.0/20 1299 -46.231.0.0/21 12338 -46.231.8.0/21 43207 -46.231.16.0/21 201290 -46.231.24.0/21 3313 -46.231.32.0/21 56376 -46.231.40.0/21 5524 -46.231.48.0/22 210143 -46.231.52.0/22 209386 -46.231.56.0/21 21021 -46.231.64.0/21 59395 -46.231.72.0/21 34093 -46.231.80.0/21 39647 -46.231.88.0/21 61157 -46.231.96.0/21 48304 -46.231.104.0/21 210176 -46.231.112.0/21 34920 -46.231.120.0/21 42612 -46.231.136.0/21 33843 -46.231.144.0/21 50624 -46.231.152.0/21 34999 -46.231.160.0/21 12775 -46.231.168.0/21 48475 -46.231.176.0/21 48173 -46.231.184.0/21 31727 -46.231.192.0/24 198514 -46.231.195.0/24 198514 -46.231.197.0/24 198514 -46.231.200.0/21 21069 -46.231.208.0/21 8492 -46.231.216.0/23 198435 -46.231.218.0/24 198435 -46.231.219.0/24 199792 -46.231.220.0/23 198435 -46.231.222.0/24 198435 -46.231.223.0/24 199792 -46.231.224.0/21 13121 -46.231.232.0/21 15726 -46.231.240.0/22 198985 -46.231.244.0/22 201290 -46.231.248.0/21 21162 -46.232.0.0/20 207636 -46.232.16.0/20 55933 -46.232.32.0/20 55933 -46.232.48.0/20 207636 -46.232.64.0/19 207636 -46.232.96.0/21 48666 -46.232.104.0/21 207636 -46.232.112.0/23 48666 -46.232.114.0/23 207636 -46.232.116.0/22 207636 -46.232.120.0/21 207636 -46.232.128.0/21 56391 -46.232.136.0/21 198291 -46.232.144.0/21 20836 -46.232.152.0/21 13124 -46.232.164.0/23 13174 -46.232.168.0/21 56422 -46.232.176.0/21 35206 -46.232.184.0/21 196922 -46.232.192.0/21 34442 -46.232.200.0/22 31205 -46.232.204.0/22 31133 -46.232.208.0/22 60233 -46.232.212.0/22 202257 -46.232.216.0/21 12714 -46.232.224.0/21 12843 -46.232.232.0/23 25498 -46.232.238.0/23 198720 -46.232.240.0/23 56480 -46.232.248.0/22 197540 -46.233.0.0/19 42431 -46.233.32.0/22 42431 -46.233.36.0/23 42431 -46.233.40.0/21 44077 -46.233.48.0/21 42410 -46.233.56.0/21 41339 -46.233.64.0/18 56460 -46.233.128.0/18 39636 -46.233.192.0/18 47165 -46.234.0.0/21 15924 -46.234.8.0/24 15924 -46.234.9.0/24 65595 -46.234.10.0/24 15924 -46.234.11.0/24 57914 -46.234.12.0/24 57914 -46.234.13.0/24 58156 -46.234.14.0/24 35185 -46.234.15.0/24 15924 -46.234.16.0/24 60093 -46.234.17.0/24 15924 -46.234.18.0/23 15924 -46.234.20.0/22 15924 -46.234.24.0/21 15924 -46.234.32.0/19 34288 -46.234.64.0/19 31012 -46.234.96.0/19 39392 -46.234.128.0/19 197722 -46.234.160.0/20 56360 -46.234.192.0/19 50316 -46.234.224.0/19 20811 -46.235.0.0/22 57740 -46.235.4.0/24 702 -46.235.5.0/24 47973 -46.235.6.0/24 702 -46.235.7.0/24 47973 -46.235.8.0/22 42926 -46.235.12.0/23 42926 -46.235.14.0/24 56582 -46.235.15.0/24 42926 -46.235.16.0/21 56403 -46.235.24.0/21 33984 -46.235.32.0/24 206934 -46.235.33.0/24 206690 -46.235.34.0/24 206934 -46.235.35.0/24 206690 -46.235.36.0/24 206689 -46.235.37.0/24 206733 -46.235.38.0/24 206689 -46.235.39.0/24 206733 -46.235.40.0/21 51088 -46.235.48.0/22 51764 -46.235.52.0/23 56994 -46.235.54.0/23 51764 -46.235.56.0/21 25353 -46.235.64.0/21 47954 -46.235.72.0/22 57096 -46.235.76.0/23 58224 -46.235.78.0/23 62169 -46.235.80.0/21 35104 -46.235.88.0/21 29684 -46.235.96.0/21 35573 -46.235.104.0/22 24232 -46.235.108.0/24 19806 -46.235.109.0/24 11158 -46.235.112.0/21 51483 -46.235.120.0/21 197630 -46.235.128.0/22 34497 -46.235.132.0/24 34497 -46.235.134.0/24 34497 -46.235.136.0/21 197589 -46.235.144.0/21 48218 -46.235.152.0/23 27471 -46.235.154.0/24 27471 -46.235.156.0/24 27471 -46.235.158.0/23 27471 -46.235.160.0/21 12389 -46.235.168.0/21 13009 -46.235.176.0/21 42487 -46.235.184.0/23 34879 -46.235.186.0/24 34879 -46.235.188.0/22 34879 -46.235.192.0/21 33814 -46.235.200.0/21 33828 -46.235.208.0/21 35457 -46.235.216.0/21 42575 -46.235.224.0/21 44684 -46.235.232.0/21 197581 -46.235.240.0/21 25260 -46.235.248.0/21 60098 -46.236.0.0/19 24931 -46.236.32.0/20 24931 -46.236.48.0/21 12703 -46.236.56.0/24 16645 -46.236.60.0/23 57669 -46.236.62.0/24 57669 -46.236.63.0/24 38963 -46.236.64.0/18 45011 -46.236.128.0/19 34145 -46.236.160.0/22 34145 -46.236.184.0/21 34145 -46.236.192.0/21 8820 -46.236.200.0/22 8820 -46.236.204.0/22 43140 -46.236.208.0/21 8820 -46.236.216.0/23 8820 -46.236.218.0/24 60128 -46.236.219.0/24 8820 -46.236.220.0/22 8820 -46.236.224.0/19 61244 -46.237.0.0/19 12389 -46.237.32.0/21 12389 -46.237.40.0/22 12958 -46.237.44.0/22 39374 -46.237.48.0/20 12389 -46.237.64.0/18 43205 -46.237.128.0/18 29009 -46.237.192.0/18 6830 -46.238.0.0/22 29580 -46.238.4.0/23 29580 -46.238.6.0/24 29580 -46.238.7.0/24 35141 -46.238.8.0/24 35141 -46.238.9.0/24 8717 -46.238.10.0/23 35141 -46.238.12.0/23 35141 -46.238.14.0/24 8717 -46.238.15.0/24 35141 -46.238.16.0/24 35141 -46.238.17.0/24 8717 -46.238.18.0/24 8717 -46.238.19.0/24 35141 -46.238.20.0/24 8717 -46.238.21.0/24 35141 -46.238.22.0/23 35141 -46.238.24.0/22 35141 -46.238.28.0/24 35141 -46.238.29.0/24 8717 -46.238.30.0/24 35141 -46.238.31.0/24 8717 -46.238.32.0/23 35141 -46.238.34.0/24 8717 -46.238.35.0/24 35141 -46.238.36.0/23 35141 -46.238.38.0/24 35141 -46.238.39.0/24 8717 -46.238.40.0/23 35141 -46.238.42.0/24 35141 -46.238.43.0/24 8717 -46.238.44.0/22 35141 -46.238.48.0/22 35141 -46.238.52.0/24 8717 -46.238.53.0/24 35141 -46.238.54.0/24 29580 -46.238.55.0/24 35141 -46.238.56.0/23 35141 -46.238.58.0/24 8717 -46.238.59.0/24 35141 -46.238.60.0/23 35141 -46.238.62.0/24 35141 -46.238.63.0/24 8717 -46.238.64.0/18 13110 -46.238.128.0/18 21351 -46.238.192.0/18 12618 -46.239.0.0/18 25144 -46.239.64.0/21 2840 -46.239.80.0/20 2840 -46.239.96.0/19 2840 -46.239.128.0/20 8326 -46.239.144.0/20 12618 -46.239.160.0/19 12618 -46.239.192.0/18 12969 -46.240.0.0/17 35819 -46.240.128.0/17 31042 -46.241.0.0/20 21127 -46.241.16.0/23 21127 -46.241.18.0/24 15774 -46.241.19.0/24 21127 -46.241.20.0/22 21127 -46.241.24.0/21 21127 -46.241.32.0/19 21127 -46.241.64.0/22 21127 -46.241.68.0/23 15774 -46.241.70.0/23 21127 -46.241.72.0/22 21127 -46.241.76.0/23 21127 -46.241.78.0/23 15774 -46.241.80.0/22 21127 -46.241.84.0/23 15774 -46.241.86.0/23 21127 -46.241.88.0/24 21127 -46.241.89.0/24 15774 -46.241.90.0/23 21127 -46.241.92.0/22 21127 -46.241.96.0/23 21127 -46.241.98.0/23 15774 -46.241.100.0/22 15774 -46.241.104.0/23 21127 -46.241.106.0/24 15774 -46.241.107.0/24 21127 -46.241.108.0/22 21127 -46.241.112.0/21 21127 -46.241.120.0/22 21127 -46.241.124.0/23 21127 -46.241.126.0/24 15774 -46.241.127.0/24 21127 -46.241.128.0/17 44395 -46.242.0.0/17 42610 -46.242.128.0/20 12824 -46.242.144.0/22 12824 -46.242.148.0/24 12824 -46.242.149.0/24 8560 -46.242.150.0/23 12824 -46.242.152.0/21 12824 -46.242.160.0/19 12824 -46.242.192.0/18 12824 -46.243.0.0/21 209929 -46.243.8.0/21 49759 -46.243.16.0/22 57908 -46.243.21.0/24 57908 -46.243.23.0/24 57908 -46.243.24.0/21 29462 -46.243.32.0/21 28716 -46.243.40.0/21 6819 -46.243.48.0/21 43541 -46.243.56.0/22 201923 -46.243.60.0/24 62459 -46.243.64.0/22 39574 -46.243.68.0/24 39574 -46.243.69.0/24 15962 -46.243.70.0/23 39574 -46.243.72.0/22 29686 -46.243.76.0/22 200615 -46.243.80.0/21 12897 -46.243.88.0/21 45012 -46.243.96.0/21 197395 -46.243.104.0/21 61109 -46.243.112.0/21 2614 -46.243.120.0/21 198913 -46.243.128.0/21 29650 -46.243.136.0/24 20853 -46.243.138.0/23 201011 -46.243.140.0/23 9009 -46.243.142.0/24 59564 -46.243.143.0/24 201011 -46.243.144.0/22 9009 -46.243.148.0/23 9009 -46.243.150.0/24 29802 -46.243.151.0/24 8818 -46.243.152.0/22 50673 -46.243.156.0/22 58272 -46.243.160.0/24 203674 -46.243.161.0/24 204551 -46.243.162.0/24 206323 -46.243.163.0/24 56676 -46.243.164.0/24 50523 -46.243.165.0/24 51470 -46.243.166.0/24 203563 -46.243.167.0/24 202857 -46.243.168.0/24 198618 -46.243.169.0/24 203563 -46.243.170.0/24 6012 -46.243.171.0/24 60058 -46.243.172.0/24 60505 -46.243.173.0/24 56928 -46.243.174.0/24 204665 -46.243.175.0/24 201244 -46.243.176.0/24 35469 -46.243.177.0/24 203725 -46.243.178.0/24 201282 -46.243.179.0/24 199735 -46.243.180.0/23 209974 -46.243.182.0/24 209974 -46.243.183.0/24 209283 -46.243.184.0/24 209974 -46.243.186.0/24 209283 -46.243.188.0/22 50673 -46.243.192.0/21 50673 -46.243.200.0/24 56595 -46.243.202.0/23 42525 -46.243.204.0/24 3223 -46.243.205.0/24 9009 -46.243.207.0/24 40676 -46.243.208.0/24 9009 -46.243.210.0/24 9009 -46.243.212.0/24 46562 -46.243.214.0/24 29854 -46.243.215.0/24 9009 -46.243.216.0/23 9009 -46.243.218.0/24 9009 -46.243.220.0/24 49335 -46.243.221.0/24 3223 -46.243.222.0/23 9009 -46.243.224.0/24 197706 -46.243.225.0/24 9009 -46.243.226.0/24 46844 -46.243.227.0/24 46562 -46.243.229.0/24 8100 -46.243.230.0/24 36352 -46.243.231.0/24 36351 -46.243.232.0/24 36351 -46.243.233.0/24 9009 -46.243.234.0/24 9009 -46.243.235.0/24 20860 -46.243.236.0/23 9009 -46.243.238.0/24 9009 -46.243.239.0/24 46562 -46.243.240.0/24 36351 -46.243.241.0/24 9009 -46.243.243.0/24 32489 -46.243.244.0/24 46562 -46.243.245.0/24 36351 -46.243.246.0/24 45671 -46.243.247.0/24 36351 -46.243.248.0/24 9009 -46.243.249.0/24 3223 -46.243.250.0/23 36351 -46.243.252.0/24 200619 -46.243.253.0/24 58272 -46.243.254.0/24 197858 -46.243.255.0/24 60954 -46.244.0.0/20 51088 -46.244.16.0/23 51088 -46.244.18.0/24 39855 -46.244.19.0/24 51088 -46.244.20.0/22 51088 -46.244.24.0/22 51088 -46.244.28.0/23 36351 -46.244.30.0/24 32181 -46.244.31.0/24 51088 -46.244.32.0/20 16276 -46.244.48.0/20 49784 -46.244.64.0/19 51407 -46.244.96.0/22 15830 -46.244.100.0/22 51088 -46.244.104.0/22 51088 -46.244.108.0/22 39855 -46.244.112.0/23 51088 -46.244.114.0/24 51088 -46.244.115.0/24 39855 -46.244.116.0/22 54103 -46.244.120.0/21 51088 -46.244.128.0/17 8767 -46.245.0.0/18 47262 -46.245.64.0/18 43754 -46.245.128.0/21 43530 -46.245.136.0/21 197580 -46.245.144.0/21 3303 -46.245.152.0/21 43591 -46.245.160.0/22 197143 -46.245.165.0/24 197143 -46.245.166.0/23 197143 -46.245.168.0/21 48848 -46.245.176.0/21 41412 -46.245.184.0/21 35518 -46.245.192.0/21 31229 -46.245.200.0/21 43957 -46.245.208.0/21 61194 -46.245.216.0/21 60294 -46.245.224.0/21 199997 -46.245.232.0/21 8426 -46.245.248.0/24 31463 -46.245.249.0/24 39545 -46.245.250.0/23 39545 -46.245.252.0/24 39545 -46.245.253.0/24 31463 -46.245.254.0/23 31463 -46.246.0.0/24 42708 -46.246.1.0/24 206804 -46.246.2.0/23 42708 -46.246.4.0/22 42708 -46.246.8.0/21 42708 -46.246.16.0/20 42708 -46.246.32.0/19 37560 -46.246.64.0/18 42708 -46.246.128.0/17 1241 -46.247.0.0/17 39545 -46.247.128.0/19 31343 -46.247.160.0/19 48504 -46.247.192.0/19 8445 -46.248.0.0/22 44931 -46.248.32.0/19 58224 -46.248.64.0/19 52035 -46.248.96.0/19 9153 -46.248.128.0/19 8220 -46.248.160.0/19 47544 -46.248.192.0/19 9038 -46.248.224.0/19 5555 -46.249.0.0/20 34456 -46.249.16.0/20 50009 -46.249.32.0/22 50673 -46.249.36.0/23 50673 -46.249.38.0/24 57043 -46.249.39.0/24 50673 -46.249.40.0/21 50673 -46.249.48.0/20 50673 -46.249.64.0/20 43561 -46.249.80.0/21 43561 -46.249.88.0/22 43561 -46.249.92.0/23 43561 -46.249.94.0/24 198202 -46.249.95.0/24 43561 -46.249.96.0/24 12697 -46.249.97.0/24 23338 -46.249.98.0/23 23338 -46.249.100.0/22 23338 -46.249.104.0/21 23338 -46.249.112.0/21 23338 -46.249.120.0/21 201150 -46.249.128.0/19 8462 -46.249.160.0/20 25406 -46.249.176.0/21 25406 -46.249.184.0/21 34857 -46.249.192.0/19 12703 -46.249.224.0/19 49455 -46.250.0.0/19 34661 -46.250.32.0/20 21332 -46.250.48.0/22 21332 -46.250.52.0/22 16345 -46.250.60.0/22 21332 -46.250.64.0/21 41822 -46.250.72.0/22 41822 -46.250.76.0/23 44579 -46.250.80.0/20 41822 -46.250.96.0/19 41911 -46.250.128.0/22 51218 -46.250.136.0/21 51218 -46.250.156.0/22 51218 -46.250.160.0/19 34688 -46.250.192.0/19 28824 -46.250.224.0/20 39674 -46.250.240.0/21 39674 -46.250.248.0/23 39674 -46.250.250.0/24 39674 -46.250.251.0/24 43013 -46.250.252.0/22 20712 -46.251.0.0/21 42232 -46.251.16.0/20 43529 -46.251.32.0/19 21412 -46.251.64.0/19 8371 -46.251.96.0/19 35432 -46.251.128.0/19 35819 -46.251.160.0/19 12479 -46.251.192.0/19 50223 -46.251.224.0/24 16322 -46.251.225.0/24 197071 -46.251.226.0/24 16322 -46.251.227.0/24 197071 -46.251.228.0/22 199610 -46.251.232.0/22 199610 -46.251.236.0/24 199610 -46.251.237.0/24 16322 -46.251.238.0/24 199610 -46.251.239.0/24 44066 -46.251.240.0/21 199610 -46.251.248.0/24 199610 -46.251.250.0/24 206057 -46.251.251.0/24 31400 -46.251.252.0/22 56882 -46.252.0.0/20 202111 -46.252.16.0/24 34011 -46.252.17.0/24 8972 -46.252.18.0/24 8972 -46.252.19.0/24 34011 -46.252.20.0/23 34011 -46.252.22.0/23 8972 -46.252.24.0/22 34011 -46.252.28.0/23 34011 -46.252.30.0/24 34011 -46.252.31.0/24 8972 -46.252.32.0/20 21183 -46.252.48.0/20 34841 -46.252.64.0/20 6908 -46.252.80.0/20 29017 -46.252.96.0/20 48953 -46.252.112.0/20 41727 -46.252.128.0/20 6830 -46.252.144.0/20 60087 -46.252.160.0/20 38951 -46.252.176.0/20 43424 -46.252.192.0/22 21501 -46.252.196.0/22 20773 -46.252.200.0/22 20773 -46.252.204.0/22 21501 -46.252.208.0/20 8779 -46.252.224.0/20 52115 -46.252.240.0/20 24739 -46.253.0.0/21 44814 -46.253.8.0/24 44814 -46.253.9.0/24 198228 -46.253.10.0/24 44814 -46.253.11.0/24 206346 -46.253.12.0/23 206346 -46.253.14.0/24 206346 -46.253.15.0/24 44814 -46.253.16.0/20 34624 -46.253.32.0/20 51984 -46.253.48.0/20 197558 -46.253.64.0/20 6663 -46.253.80.0/20 52145 -46.253.96.0/21 42306 -46.253.112.0/20 29551 -46.253.134.0/24 198247 -46.253.135.0/24 198381 -46.253.136.0/24 198394 -46.253.137.0/24 198381 -46.253.144.0/23 29551 -46.253.146.0/24 197297 -46.253.147.0/24 29551 -46.253.148.0/22 29551 -46.253.152.0/23 29551 -46.253.154.0/24 29551 -46.253.155.0/24 197297 -46.253.156.0/22 29551 -46.253.160.0/20 44216 -46.253.176.0/20 24889 -46.253.192.0/20 51701 -46.253.208.0/20 39507 -46.253.224.0/20 56345 -46.253.240.0/22 201035 -46.253.244.0/22 42525 -46.253.248.0/24 42525 -46.253.249.0/24 201035 -46.253.250.0/23 201035 -46.253.252.0/22 201035 -46.254.0.0/21 197806 -46.254.8.0/21 42695 -46.254.16.0/21 203226 -46.254.24.0/21 38972 -46.254.32.0/21 52030 -46.254.40.0/21 34618 -46.254.48.0/21 52033 -46.254.56.0/21 56993 -46.254.64.0/21 5588 -46.254.72.0/22 49895 -46.254.76.0/24 49895 -46.254.77.0/24 59607 -46.254.78.0/24 50898 -46.254.79.0/24 49895 -46.254.80.0/21 39256 -46.254.88.0/22 25820 -46.254.94.0/24 58029 -46.254.96.0/21 13170 -46.254.112.0/21 47480 -46.254.120.0/21 35258 -46.254.128.0/22 47374 -46.254.132.0/23 29694 -46.254.134.0/24 29694 -46.254.135.0/24 210154 -46.254.136.0/21 51483 -46.254.144.0/21 197907 -46.254.152.0/22 52083 -46.254.156.0/22 205716 -46.254.160.0/21 50596 -46.254.176.0/24 8816 -46.254.177.0/24 60227 -46.254.178.0/23 60227 -46.254.180.0/22 60227 -46.254.184.0/21 52063 -46.254.192.0/21 39116 -46.254.200.0/21 786 -46.254.208.0/21 20904 -46.254.216.0/21 48149 -46.254.224.0/21 25540 -46.254.232.0/21 47902 -46.254.240.0/22 5547 -46.254.244.0/23 5547 -46.254.246.0/23 44267 -46.254.248.0/21 8680 -46.255.8.0/21 52084 -46.255.16.0/21 8896 -46.255.24.0/21 33915 -46.255.32.0/21 25133 -46.255.41.0/24 25605 -46.255.42.0/23 25605 -46.255.44.0/22 25605 -46.255.48.0/21 34510 -46.255.56.0/21 197508 -46.255.64.0/22 31203 -46.255.68.0/23 31203 -46.255.70.0/23 35576 -46.255.72.0/21 8943 -46.255.80.0/21 31638 -46.255.88.0/21 197156 -46.255.96.0/21 42358 -46.255.104.0/21 15879 -46.255.112.0/21 41811 -46.255.120.0/23 48285 -46.255.123.0/24 48285 -46.255.124.0/23 48285 -46.255.128.0/21 197505 -46.255.136.0/21 29425 -46.255.144.0/21 47394 -46.255.152.0/21 49766 -46.255.160.0/21 35393 -46.255.168.0/21 15600 -46.255.176.0/21 8218 -46.255.184.0/21 52122 -46.255.192.0/21 51164 -46.255.200.0/21 30781 -46.255.208.0/21 42774 -46.255.216.0/21 52140 -46.255.224.0/21 43614 -46.255.232.0/21 43873 -46.255.240.0/21 209897 -46.255.248.0/21 31742 -47.3.0.0/19 19115 -47.4.192.0/18 20115 -47.5.0.0/17 33588 -47.5.128.0/17 20115 -47.6.0.0/16 20115 -47.7.0.0/19 20115 -47.7.32.0/22 20115 -47.7.40.0/21 20115 -47.7.48.0/20 20115 -47.7.64.0/18 20115 -47.7.128.0/17 20115 -47.8.0.0/15 55836 -47.11.0.0/16 55836 -47.12.0.0/15 20115 -47.14.0.0/16 20115 -47.15.0.0/16 55836 -47.16.0.0/15 6128 -47.18.0.0/16 6128 -47.19.0.0/23 6128 -47.19.2.0/24 22234 -47.19.3.0/24 6128 -47.19.4.0/22 6128 -47.19.8.0/23 6128 -47.19.10.0/24 22994 -47.19.11.0/24 6128 -47.19.12.0/22 6128 -47.19.16.0/23 6128 -47.19.18.0/24 6128 -47.19.19.0/24 395117 -47.19.20.0/23 6128 -47.19.22.0/24 6128 -47.19.23.0/24 54004 -47.19.24.0/23 6128 -47.19.26.0/24 46183 -47.19.27.0/24 6128 -47.19.28.0/22 6128 -47.19.32.0/23 6128 -47.19.34.0/24 62677 -47.19.35.0/24 36474 -47.19.36.0/24 6128 -47.19.37.0/24 54004 -47.19.38.0/23 6128 -47.19.40.0/24 6102 -47.19.41.0/24 6128 -47.19.42.0/24 6128 -47.19.43.0/24 54004 -47.19.44.0/23 6128 -47.19.46.0/24 21656 -47.19.47.0/24 6128 -47.19.48.0/23 6128 -47.19.50.0/24 6128 -47.19.51.0/24 55052 -47.19.52.0/22 6128 -47.19.56.0/21 6128 -47.19.64.0/20 6128 -47.19.80.0/23 6128 -47.19.82.0/24 54004 -47.19.83.0/24 6128 -47.19.84.0/22 6128 -47.19.88.0/24 54004 -47.19.89.0/24 6128 -47.19.90.0/23 6128 -47.19.92.0/24 6128 -47.19.93.0/24 54004 -47.19.94.0/24 6128 -47.19.95.0/24 19642 -47.19.96.0/24 6128 -47.19.97.0/24 54004 -47.19.98.0/24 6128 -47.19.99.0/24 397394 -47.19.100.0/23 6128 -47.19.102.0/24 6128 -47.19.103.0/24 3408 -47.19.104.0/24 6128 -47.19.105.0/24 31922 -47.19.106.0/23 6128 -47.19.108.0/24 6128 -47.19.109.0/24 33645 -47.19.110.0/24 54004 -47.19.111.0/24 6128 -47.19.112.0/23 6128 -47.19.114.0/24 6128 -47.19.115.0/24 14822 -47.19.116.0/24 54004 -47.19.117.0/24 6128 -47.19.118.0/23 6128 -47.19.120.0/24 14822 -47.19.121.0/24 6128 -47.19.122.0/23 6128 -47.19.124.0/23 6128 -47.19.126.0/24 6128 -47.19.127.0/24 63329 -47.19.128.0/21 6128 -47.19.136.0/24 14070 -47.19.137.0/24 6128 -47.19.138.0/24 393644 -47.19.139.0/24 6128 -47.19.140.0/24 6128 -47.19.141.0/24 54004 -47.19.142.0/23 6128 -47.19.144.0/22 6128 -47.19.148.0/23 6128 -47.19.150.0/24 6128 -47.19.151.0/24 63397 -47.19.152.0/24 63397 -47.19.153.0/24 6128 -47.19.154.0/23 6128 -47.19.156.0/24 63378 -47.19.157.0/24 31774 -47.19.158.0/23 6128 -47.19.160.0/20 6128 -47.19.176.0/23 6128 -47.19.178.0/24 395547 -47.19.179.0/24 6128 -47.19.180.0/23 6128 -47.19.182.0/24 6128 -47.19.183.0/24 394524 -47.19.184.0/23 6128 -47.19.186.0/24 54004 -47.19.187.0/24 6128 -47.19.188.0/23 6128 -47.19.190.0/24 6128 -47.19.191.0/24 32696 -47.19.192.0/24 6128 -47.19.193.0/24 393329 -47.19.194.0/23 6128 -47.19.196.0/23 6128 -47.19.198.0/24 20287 -47.19.199.0/24 54004 -47.19.200.0/24 54004 -47.19.201.0/24 6128 -47.19.202.0/23 6128 -47.19.204.0/24 6128 -47.19.205.0/24 20370 -47.19.206.0/23 6128 -47.19.208.0/24 6128 -47.19.209.0/24 62802 -47.19.210.0/23 6128 -47.19.212.0/23 6128 -47.19.214.0/24 394245 -47.19.215.0/24 54004 -47.19.216.0/24 23069 -47.19.217.0/24 6128 -47.19.218.0/24 394454 -47.19.219.0/24 53482 -47.19.220.0/24 27536 -47.19.221.0/24 6128 -47.19.222.0/23 6128 -47.19.224.0/21 6128 -47.19.232.0/22 6128 -47.19.236.0/24 6128 -47.19.237.0/24 54004 -47.19.238.0/23 6128 -47.19.240.0/21 6128 -47.19.248.0/23 6128 -47.19.250.0/24 6128 -47.19.251.0/24 54004 -47.19.252.0/23 6128 -47.19.254.0/24 394817 -47.19.255.0/24 6128 -47.20.0.0/15 6128 -47.22.0.0/16 6128 -47.23.0.0/17 6128 -47.23.128.0/18 6128 -47.23.192.0/19 6128 -47.23.224.0/20 6128 -47.23.240.0/21 6128 -47.23.248.0/23 6128 -47.23.250.0/24 6128 -47.23.251.0/24 19720 -47.23.252.0/22 19720 -47.24.0.0/14 20115 -47.28.0.0/17 20115 -47.28.128.0/18 20115 -47.28.192.0/18 33588 -47.29.0.0/16 55836 -47.30.0.0/15 55836 -47.32.0.0/14 20115 -47.36.0.0/16 20115 -47.37.0.0/18 33588 -47.37.64.0/18 20115 -47.37.128.0/17 20115 -47.38.0.0/15 20115 -47.40.0.0/15 20115 -47.42.0.0/17 20115 -47.42.128.0/18 20115 -47.42.192.0/19 20115 -47.42.224.0/20 20115 -47.42.246.0/23 19157 -47.43.16.0/20 40294 -47.44.0.0/22 20115 -47.44.4.0/24 20115 -47.44.5.0/24 19115 -47.44.6.0/23 20115 -47.44.8.0/21 20115 -47.44.16.0/21 20115 -47.44.32.0/19 20115 -47.44.64.0/19 20115 -47.44.96.0/20 20115 -47.44.112.0/20 33588 -47.44.128.0/21 20115 -47.44.144.0/20 20115 -47.44.160.0/19 20115 -47.44.192.0/18 20115 -47.45.0.0/24 395498 -47.45.1.0/24 394361 -47.45.2.0/24 395961 -47.45.4.0/24 396080 -47.45.8.0/24 393483 -47.45.12.0/24 20115 -47.45.14.0/24 20115 -47.45.16.0/24 20115 -47.45.17.0/24 396491 -47.45.19.0/24 396426 -47.45.22.0/24 33753 -47.45.23.0/24 30426 -47.45.24.0/22 396192 -47.45.30.0/24 397141 -47.45.31.0/24 33468 -47.45.32.0/24 4546 -47.45.33.0/24 397492 -47.45.37.0/24 19936 -47.45.38.0/24 32461 -47.46.0.0/19 20115 -47.46.64.0/18 20115 -47.46.128.0/17 20115 -47.47.0.0/17 20115 -47.47.128.0/18 33588 -47.47.192.0/18 20115 -47.48.0.0/15 20115 -47.50.0.0/16 20115 -47.51.0.0/19 20115 -47.51.32.0/20 20115 -47.51.48.0/21 20115 -47.51.56.0/22 20115 -47.51.60.0/24 32324 -47.51.61.0/24 20115 -47.51.62.0/23 20115 -47.51.64.0/18 20115 -47.51.128.0/17 20115 -47.52.0.0/16 45102 -47.53.0.0/16 30722 -47.54.0.0/15 855 -47.56.0.0/19 45102 -47.56.32.0/20 45102 -47.56.48.0/23 45102 -47.56.50.0/24 45102 -47.56.51.0/24 134963 -47.56.52.0/22 45102 -47.56.56.0/21 45102 -47.56.64.0/18 45102 -47.56.128.0/17 45102 -47.57.0.0/16 45102 -47.58.0.0/15 12430 -47.60.0.0/14 12430 -47.64.0.0/13 3209 -47.72.0.0/16 9500 -47.73.0.0/20 12663 -47.73.16.0/21 12663 -47.73.24.0/23 201917 -47.73.26.0/23 12663 -47.73.28.0/23 12663 -47.73.30.0/24 12663 -47.73.31.0/24 201917 -47.73.32.0/19 12663 -47.73.64.0/20 12663 -47.73.80.0/24 12663 -47.73.81.0/24 201917 -47.73.82.0/23 12663 -47.73.84.0/24 12663 -47.73.85.0/24 201917 -47.73.86.0/24 201917 -47.73.87.0/24 12663 -47.73.88.0/21 12663 -47.73.96.0/20 12663 -47.73.112.0/23 12663 -47.73.114.0/24 201917 -47.73.115.0/24 12663 -47.73.116.0/23 12663 -47.73.118.0/23 201917 -47.73.120.0/21 12663 -47.73.128.0/20 12663 -47.73.144.0/23 12663 -47.73.146.0/24 201917 -47.73.147.0/24 12663 -47.73.148.0/22 12663 -47.73.152.0/21 12663 -47.73.160.0/21 12663 -47.73.168.0/23 12663 -47.73.170.0/24 1273 -47.73.171.0/24 12663 -47.73.172.0/22 12663 -47.73.176.0/22 12663 -47.73.180.0/23 12663 -47.73.182.0/24 1273 -47.73.183.0/24 12663 -47.73.184.0/24 1273 -47.73.185.0/24 12663 -47.73.186.0/23 12663 -47.73.188.0/22 12663 -47.73.192.0/20 12663 -47.73.208.0/22 12663 -47.73.212.0/23 12663 -47.73.214.0/24 201917 -47.73.215.0/24 12663 -47.73.216.0/21 12663 -47.73.224.0/21 12663 -47.73.232.0/22 12663 -47.73.236.0/24 1273 -47.73.237.0/24 12663 -47.73.238.0/24 12663 -47.73.239.0/24 1273 -47.73.240.0/22 1273 -47.73.244.0/22 12663 -47.73.248.0/23 12663 -47.73.250.0/24 201917 -47.73.251.0/24 12663 -47.73.252.0/22 12663 -47.74.0.0/15 45102 -47.88.0.0/16 45102 -47.89.0.0/18 45102 -47.89.64.0/24 24429 -47.89.66.0/24 24429 -47.89.71.0/24 45102 -47.89.72.0/21 45102 -47.89.80.0/22 45102 -47.89.84.0/23 45102 -47.89.88.0/23 45102 -47.89.90.0/24 45102 -47.89.91.0/24 24429 -47.89.92.0/22 45102 -47.89.96.0/20 45102 -47.89.112.0/22 24429 -47.89.116.0/24 24429 -47.89.119.0/24 24429 -47.89.121.0/24 24429 -47.89.122.0/23 45102 -47.89.124.0/23 45102 -47.89.128.0/17 45102 -47.90.0.0/15 45102 -47.92.0.0/14 37963 -47.96.0.0/12 37963 -47.112.0.0/14 37963 -47.132.0.0/14 20115 -47.136.0.0/13 5650 -47.144.0.0/12 5650 -47.160.0.0/12 5650 -47.176.0.0/13 5650 -47.184.0.0/14 5650 -47.188.0.0/15 5650 -47.190.0.0/16 5650 -47.192.0.0/16 5650 -47.193.0.0/17 5650 -47.195.0.0/16 5650 -47.196.0.0/14 5650 -47.200.0.0/14 5650 -47.204.0.0/15 5650 -47.206.0.0/16 5650 -47.208.0.0/16 19108 -47.209.0.0/19 19108 -47.209.32.0/20 19108 -47.209.48.0/21 19108 -47.209.56.0/22 19108 -47.209.60.0/23 7018 -47.209.62.0/23 19108 -47.209.64.0/18 19108 -47.209.128.0/17 19108 -47.210.0.0/15 19108 -47.212.0.0/14 19108 -47.216.0.0/13 19108 -47.224.0.0/17 20115 -47.224.128.0/18 20115 -47.225.0.0/17 20115 -47.225.128.0/18 20115 -47.226.0.0/16 20115 -47.227.0.0/16 33363 -47.228.0.0/21 7224 -47.228.8.0/22 7224 -47.228.12.0/24 7224 -47.232.0.0/15 20115 -47.234.0.0/17 7843 -47.235.0.0/21 45102 -47.235.8.0/24 45102 -47.235.10.0/23 45102 -47.240.0.0/15 45102 -47.244.0.0/16 45102 -47.245.0.0/18 45102 -47.246.0.0/20 24429 -47.246.16.0/21 24429 -47.246.24.0/23 24429 -47.246.26.0/24 24429 -47.246.28.0/22 24429 -47.246.32.0/22 45102 -47.246.36.0/23 24429 -47.246.41.0/24 24429 -47.246.42.0/23 24429 -47.246.44.0/22 24429 -47.246.48.0/24 24429 -47.246.50.0/23 24429 -47.246.52.0/23 24429 -47.246.57.0/24 24429 -47.246.58.0/23 24429 -47.246.61.0/24 24429 -47.246.64.0/22 45102 -47.246.68.0/23 45102 -47.246.72.0/21 45102 -47.246.80.0/24 45102 -47.246.82.0/23 45102 -47.246.84.0/22 45102 -47.246.88.0/22 45102 -47.246.92.0/23 45102 -47.246.96.0/20 45102 -47.246.128.0/21 45102 -47.247.0.0/16 55836 -47.248.128.0/17 33363 -47.249.0.0/16 33363 -47.250.0.0/17 45102 -47.251.0.0/16 45102 -47.252.0.0/15 45102 -47.254.0.0/16 45102 -49.0.0.0/22 55701 -49.0.4.0/22 134180 -49.0.8.0/24 55834 -49.0.12.0/24 55834 -49.0.16.0/21 24249 -49.0.28.0/24 55702 -49.0.29.0/24 139272 -49.0.31.0/24 55702 -49.0.32.0/20 38744 -49.0.64.0/19 133481 -49.0.96.0/20 45430 -49.0.112.0/24 45458 -49.0.113.0/24 3839 -49.0.114.0/24 45458 -49.0.115.0/24 45430 -49.0.116.0/24 45458 -49.0.117.0/24 45430 -49.0.118.0/23 45458 -49.0.120.0/22 45458 -49.0.124.0/24 45430 -49.0.125.0/24 45458 -49.0.126.0/24 45430 -49.0.127.0/24 45458 -49.0.128.0/17 38818 -49.1.0.0/17 10036 -49.1.128.0/18 10036 -49.1.192.0/20 10036 -49.1.208.0/21 10036 -49.1.216.0/24 9569 -49.1.217.0/24 7562 -49.1.218.0/23 7562 -49.1.220.0/22 10036 -49.1.224.0/22 7562 -49.1.228.0/22 10036 -49.1.232.0/21 10036 -49.1.240.0/20 10036 -49.2.0.0/15 4804 -49.4.0.0/19 55990 -49.4.32.0/20 4808 -49.4.48.0/20 55990 -49.4.64.0/19 55990 -49.4.96.0/21 4837 -49.4.104.0/22 4837 -49.4.108.0/23 4837 -49.4.110.0/24 4837 -49.4.111.0/24 63727 -49.4.112.0/21 55990 -49.4.120.0/22 55990 -49.4.124.0/23 55990 -49.4.126.0/24 55990 -49.4.127.0/24 4837 -49.4.128.0/17 45093 -49.5.0.0/20 4847 -49.7.0.0/16 23724 -49.8.0.0/24 9858 -49.8.2.0/24 9858 -49.8.4.0/24 9858 -49.8.8.0/23 9858 -49.8.10.0/24 9858 -49.8.12.0/22 9858 -49.8.16.0/22 9858 -49.8.21.0/24 9858 -49.8.39.0/24 45370 -49.12.0.0/15 24940 -49.14.0.0/18 45271 -49.14.64.0/21 45271 -49.14.80.0/20 45271 -49.14.96.0/19 45271 -49.14.128.0/19 45271 -49.14.160.0/20 45271 -49.14.176.0/22 45271 -49.14.192.0/18 45271 -49.15.0.0/18 45271 -49.15.64.0/19 45271 -49.15.128.0/19 45271 -49.15.160.0/20 45271 -49.15.176.0/23 45271 -49.15.179.0/24 45271 -49.15.180.0/22 45271 -49.15.184.0/22 45271 -49.15.188.0/23 45271 -49.15.191.0/24 45271 -49.15.192.0/18 45271 -49.16.0.0/12 4766 -49.32.0.0/13 55836 -49.40.0.0/14 55836 -49.44.48.0/20 55836 -49.44.64.0/18 55836 -49.44.128.0/17 55836 -49.45.0.0/22 55836 -49.45.4.0/23 64049 -49.45.6.0/23 55836 -49.45.8.0/21 55836 -49.45.16.0/20 55836 -49.45.32.0/19 55836 -49.45.64.0/18 55836 -49.45.128.0/17 55836 -49.46.0.0/15 55836 -49.48.0.0/17 45758 -49.48.128.0/18 45758 -49.48.192.0/19 45758 -49.48.224.0/21 45758 -49.48.232.0/21 45629 -49.48.240.0/20 45629 -49.49.0.0/17 45758 -49.49.128.0/18 45758 -49.49.192.0/19 45758 -49.49.224.0/21 45629 -49.49.232.0/21 45758 -49.49.240.0/20 45629 -49.50.0.0/22 55597 -49.50.4.0/22 45298 -49.50.8.0/22 55660 -49.50.12.0/24 9930 -49.50.16.0/24 55587 -49.50.17.0/24 9862 -49.50.18.0/23 55587 -49.50.20.0/22 55587 -49.50.24.0/21 55587 -49.50.32.0/19 10049 -49.50.64.0/18 55470 -49.50.144.0/20 4766 -49.50.160.0/20 135354 -49.50.192.0/19 55853 -49.50.224.0/21 55853 -49.50.232.0/22 23884 -49.50.236.0/23 55856 -49.50.240.0/20 24466 -49.51.0.0/19 132203 -49.51.32.0/20 132203 -49.51.48.0/21 132203 -49.51.62.0/24 198949 -49.51.63.0/24 132203 -49.51.64.0/19 132203 -49.51.96.0/21 132203 -49.51.104.0/22 132203 -49.51.108.0/23 132203 -49.51.128.0/18 132203 -49.51.192.0/20 132203 -49.51.224.0/23 132203 -49.51.228.0/22 132203 -49.51.232.0/21 132203 -49.51.240.0/20 132203 -49.52.0.0/14 4538 -49.56.0.0/13 4766 -49.64.0.0/18 4134 -49.64.64.0/20 4134 -49.64.80.0/22 4134 -49.64.84.0/24 4134 -49.64.85.0/24 23650 -49.64.86.0/24 23650 -49.64.87.0/24 4134 -49.64.88.0/21 4134 -49.64.96.0/19 4134 -49.64.128.0/19 4134 -49.64.160.0/21 4134 -49.64.168.0/24 4134 -49.64.169.0/24 23650 -49.64.170.0/23 4134 -49.64.172.0/22 4134 -49.64.176.0/20 4134 -49.64.192.0/20 4134 -49.64.208.0/21 4134 -49.64.216.0/22 4134 -49.64.220.0/24 23650 -49.64.221.0/24 4134 -49.64.222.0/23 4134 -49.64.224.0/20 4134 -49.64.240.0/23 4134 -49.64.242.0/24 23650 -49.64.243.0/24 4134 -49.64.244.0/22 4134 -49.64.248.0/21 4134 -49.65.0.0/18 4134 -49.65.64.0/19 4134 -49.65.96.0/21 134756 -49.65.104.0/21 4134 -49.65.112.0/21 4134 -49.65.120.0/21 134756 -49.65.128.0/17 4134 -49.66.0.0/15 4134 -49.68.0.0/14 4134 -49.72.0.0/19 4134 -49.72.32.0/21 4134 -49.72.40.0/22 4134 -49.72.44.0/23 4134 -49.72.46.0/24 23650 -49.72.47.0/24 4134 -49.72.48.0/23 4134 -49.72.50.0/24 4134 -49.72.51.0/24 23650 -49.72.52.0/22 4134 -49.72.56.0/21 4134 -49.72.64.0/19 4134 -49.72.96.0/21 4134 -49.72.104.0/22 4134 -49.72.108.0/23 4134 -49.72.110.0/23 23650 -49.72.112.0/20 4134 -49.72.128.0/18 4134 -49.72.192.0/20 4134 -49.72.208.0/22 4134 -49.72.212.0/23 23650 -49.72.214.0/23 4134 -49.72.216.0/21 4134 -49.72.224.0/19 4134 -49.73.0.0/19 4134 -49.73.32.0/21 4134 -49.73.40.0/23 4134 -49.73.42.0/23 23650 -49.73.44.0/22 4134 -49.73.48.0/21 4134 -49.73.56.0/22 4134 -49.73.60.0/24 4134 -49.73.61.0/24 23650 -49.73.62.0/23 4134 -49.73.64.0/20 4134 -49.73.80.0/22 4134 -49.73.84.0/24 23650 -49.73.85.0/24 4134 -49.73.86.0/23 4134 -49.73.88.0/21 4134 -49.73.96.0/19 4134 -49.73.128.0/20 4134 -49.73.144.0/21 4134 -49.73.152.0/23 4134 -49.73.154.0/24 23650 -49.73.155.0/24 4134 -49.73.156.0/22 4134 -49.73.160.0/19 4134 -49.73.192.0/19 4134 -49.73.224.0/21 4134 -49.73.232.0/23 4134 -49.73.234.0/24 4134 -49.73.235.0/24 23650 -49.73.236.0/22 4134 -49.73.240.0/20 4134 -49.74.0.0/16 4134 -49.75.0.0/19 4134 -49.75.32.0/20 4134 -49.75.48.0/21 4134 -49.75.56.0/23 4134 -49.75.58.0/24 4134 -49.75.59.0/24 23650 -49.75.60.0/22 4134 -49.75.64.0/18 4134 -49.75.128.0/19 4134 -49.75.160.0/20 4134 -49.75.176.0/21 4134 -49.75.184.0/24 4134 -49.75.185.0/24 23650 -49.75.186.0/23 4134 -49.75.188.0/22 4134 -49.75.192.0/18 4134 -49.76.0.0/15 4134 -49.78.0.0/16 4134 -49.79.0.0/17 4134 -49.79.128.0/18 4134 -49.79.192.0/19 4134 -49.79.224.0/23 131325 -49.79.226.0/24 131325 -49.79.227.0/24 23650 -49.79.228.0/23 131325 -49.79.230.0/24 131325 -49.79.231.0/24 4134 -49.79.232.0/22 23650 -49.79.236.0/24 23650 -49.79.237.0/24 131325 -49.79.238.0/24 23650 -49.79.239.0/24 131325 -49.79.240.0/23 131325 -49.79.242.0/23 4134 -49.79.244.0/22 4134 -49.79.248.0/21 4134 -49.80.0.0/14 4134 -49.84.0.0/17 4134 -49.84.128.0/18 4134 -49.84.192.0/20 4134 -49.84.208.0/22 4134 -49.84.212.0/24 4134 -49.84.213.0/24 23650 -49.84.214.0/23 4134 -49.84.216.0/21 4134 -49.84.224.0/23 4134 -49.84.226.0/24 23650 -49.84.227.0/24 4134 -49.84.228.0/22 4134 -49.84.232.0/21 4134 -49.84.240.0/20 4134 -49.85.0.0/16 4134 -49.86.0.0/19 4134 -49.86.32.0/21 4134 -49.86.40.0/22 4134 -49.86.44.0/22 137697 -49.86.48.0/20 4134 -49.86.64.0/18 4134 -49.86.128.0/17 4134 -49.87.0.0/16 4134 -49.88.0.0/13 4134 -49.96.0.0/20 9605 -49.96.16.0/21 9605 -49.96.24.0/24 9605 -49.96.29.0/24 9605 -49.96.34.0/23 9605 -49.96.36.0/22 9605 -49.96.40.0/22 9605 -49.96.44.0/24 9605 -49.96.49.0/24 9605 -49.96.50.0/23 9605 -49.96.52.0/22 9605 -49.96.56.0/22 9605 -49.96.216.0/21 9605 -49.96.224.0/23 9605 -49.96.226.0/24 9605 -49.96.231.0/24 9605 -49.96.246.0/23 9605 -49.96.248.0/21 9605 -49.97.86.0/24 9605 -49.97.92.0/22 9605 -49.97.96.0/19 9605 -49.97.128.0/18 9605 -49.97.196.0/22 9605 -49.97.200.0/22 9605 -49.98.7.0/24 9605 -49.98.8.0/21 9605 -49.98.16.0/23 9605 -49.98.20.0/22 9605 -49.98.24.0/23 9605 -49.98.28.0/22 9605 -49.98.32.0/22 9605 -49.98.44.0/22 9605 -49.98.48.0/20 9605 -49.98.64.0/20 9605 -49.98.80.0/21 9605 -49.98.88.0/22 9605 -49.98.96.0/20 9605 -49.98.120.0/21 9605 -49.98.128.0/18 9605 -49.98.192.0/19 9605 -49.99.0.0/16 9605 -49.100.0.0/17 9605 -49.100.160.0/19 9605 -49.100.192.0/18 9605 -49.101.0.0/16 9605 -49.102.0.0/17 9605 -49.102.128.0/22 9605 -49.102.132.0/23 9605 -49.102.148.0/22 9605 -49.102.152.0/21 9605 -49.102.160.0/23 9605 -49.102.164.0/22 9605 -49.102.168.0/21 9605 -49.102.176.0/20 9605 -49.103.16.0/20 9605 -49.103.32.0/19 9605 -49.103.128.0/17 9605 -49.104.0.0/17 9605 -49.104.128.0/18 9605 -49.104.192.0/19 9605 -49.104.224.0/20 9605 -49.104.240.0/21 9605 -49.104.248.0/22 9605 -49.104.252.0/24 9605 -49.104.254.0/24 9605 -49.105.10.0/23 9605 -49.105.14.0/23 9605 -49.105.16.0/20 9605 -49.105.32.0/19 9605 -49.105.73.0/24 9605 -49.105.78.0/23 9605 -49.105.80.0/23 9605 -49.105.86.0/23 9605 -49.105.88.0/23 9605 -49.105.114.0/23 9605 -49.105.128.0/17 9605 -49.106.0.0/18 9605 -49.106.91.0/24 9605 -49.106.92.0/22 9605 -49.106.96.0/22 9605 -49.106.100.0/24 9605 -49.106.172.0/24 9605 -49.106.174.0/23 9605 -49.106.188.0/23 9605 -49.106.190.0/24 9605 -49.106.192.0/19 9605 -49.106.224.0/22 9605 -49.106.228.0/23 9605 -49.106.231.0/24 9605 -49.106.232.0/23 9605 -49.106.234.0/24 9605 -49.106.236.0/22 9605 -49.106.240.0/20 9605 -49.107.0.0/17 9605 -49.107.128.0/18 9605 -49.108.0.0/17 9605 -49.108.128.0/18 9605 -49.108.192.0/19 9605 -49.108.224.0/23 9605 -49.108.238.0/23 9605 -49.108.240.0/23 9605 -49.109.0.0/16 9605 -49.110.0.0/18 9605 -49.110.124.0/22 9605 -49.110.128.0/17 9605 -49.111.0.0/16 9605 -49.112.0.0/18 4134 -49.112.64.0/19 4134 -49.112.96.0/20 4134 -49.112.112.0/21 4134 -49.112.120.0/21 137694 -49.112.128.0/18 4134 -49.112.192.0/19 4134 -49.112.224.0/21 4134 -49.112.232.0/24 137694 -49.112.233.0/24 4134 -49.112.234.0/23 4134 -49.112.236.0/22 4134 -49.112.240.0/21 4134 -49.112.248.0/22 4134 -49.112.252.0/23 4134 -49.112.254.0/23 137694 -49.113.0.0/16 4134 -49.114.0.0/18 4134 -49.114.64.0/19 4134 -49.114.96.0/20 137694 -49.114.112.0/21 137694 -49.114.120.0/21 4134 -49.114.128.0/22 137694 -49.114.132.0/23 4134 -49.114.134.0/23 137694 -49.114.136.0/21 4134 -49.114.144.0/20 4134 -49.114.160.0/20 4134 -49.114.176.0/22 4134 -49.114.180.0/22 137694 -49.114.184.0/21 4134 -49.114.192.0/21 137694 -49.114.200.0/21 4134 -49.114.208.0/20 4134 -49.114.224.0/19 4134 -49.115.0.0/17 4134 -49.115.128.0/18 4134 -49.115.192.0/19 4134 -49.115.224.0/21 4134 -49.115.232.0/21 137694 -49.115.240.0/21 4134 -49.115.248.0/22 4134 -49.115.252.0/22 137694 -49.116.0.0/18 4134 -49.116.64.0/21 137694 -49.116.72.0/21 4134 -49.116.80.0/20 4134 -49.116.96.0/19 4134 -49.116.128.0/17 4134 -49.117.0.0/16 4134 -49.118.0.0/16 4134 -49.119.0.0/19 4134 -49.119.32.0/21 137694 -49.119.40.0/21 4134 -49.119.48.0/20 4134 -49.119.64.0/18 4134 -49.119.128.0/18 4134 -49.119.192.0/20 4134 -49.119.208.0/22 137694 -49.119.212.0/22 4134 -49.119.216.0/21 4134 -49.119.224.0/19 4134 -49.120.0.0/14 4538 -49.124.0.0/15 4818 -49.126.0.0/16 38565 -49.127.0.0/16 56132 -49.128.1.0/24 133547 -49.128.8.0/22 55843 -49.128.12.0/22 55797 -49.128.16.0/21 17698 -49.128.24.0/21 23780 -49.128.32.0/19 17547 -49.128.65.0/24 59268 -49.128.66.0/23 59268 -49.128.68.0/23 59268 -49.128.70.0/24 59268 -49.128.72.0/24 59268 -49.128.77.0/24 59268 -49.128.78.0/23 59268 -49.128.80.0/21 59268 -49.128.88.0/22 59268 -49.128.92.0/24 59268 -49.128.96.0/22 23780 -49.128.100.0/22 23822 -49.128.104.0/22 55863 -49.128.108.0/22 55446 -49.128.112.0/20 10135 -49.128.128.0/19 10001 -49.128.160.0/20 55862 -49.128.176.0/21 55666 -49.128.184.0/22 131745 -49.128.191.0/24 55665 -49.128.192.0/24 4766 -49.128.193.0/24 55592 -49.128.194.0/23 4766 -49.128.196.0/23 55592 -49.128.198.0/23 4766 -49.128.200.0/23 55592 -49.128.202.0/24 4766 -49.128.204.0/24 4766 -49.128.205.0/24 136209 -49.128.206.0/24 4766 -49.128.207.0/24 55592 -49.128.210.0/23 55592 -49.128.213.0/24 4766 -49.128.214.0/23 55592 -49.128.217.0/24 55592 -49.128.218.0/24 4766 -49.128.219.0/24 138195 -49.128.220.0/24 55592 -49.128.221.0/24 131477 -49.128.224.0/24 5666 -49.128.225.0/24 55865 -49.128.226.0/24 55865 -49.128.227.0/24 5666 -49.128.228.0/22 55865 -49.128.232.0/21 55865 -49.128.240.0/20 55865 -49.129.0.0/16 2518 -49.130.0.0/15 17924 -49.132.0.0/14 2516 -49.140.0.0/15 4538 -49.142.0.0/22 7562 -49.142.4.0/23 7562 -49.142.6.0/24 7562 -49.142.7.0/24 9762 -49.142.8.0/21 7562 -49.142.16.0/20 9569 -49.142.32.0/19 9762 -49.142.64.0/23 7562 -49.142.66.0/24 7562 -49.142.67.0/24 9762 -49.142.68.0/22 9762 -49.142.72.0/21 7562 -49.142.80.0/20 7623 -49.142.96.0/20 9762 -49.142.112.0/20 7623 -49.142.128.0/19 9319 -49.142.160.0/20 9981 -49.142.176.0/22 7623 -49.142.180.0/23 7562 -49.142.184.0/22 9319 -49.142.188.0/22 9981 -49.142.192.0/22 23584 -49.142.196.0/22 7623 -49.142.200.0/23 9319 -49.142.204.0/22 9319 -49.142.208.0/21 9319 -49.142.216.0/21 7623 -49.142.224.0/20 7623 -49.142.240.0/22 7623 -49.142.244.0/22 9319 -49.142.248.0/21 7623 -49.143.0.0/21 7623 -49.143.8.0/22 9319 -49.143.12.0/22 7623 -49.143.16.0/22 10175 -49.143.20.0/22 9319 -49.143.24.0/21 7623 -49.143.32.0/22 9319 -49.143.36.0/22 7623 -49.143.40.0/22 7623 -49.143.44.0/22 9319 -49.143.48.0/21 9319 -49.143.56.0/22 7623 -49.143.60.0/22 9319 -49.143.64.0/22 9319 -49.143.68.0/22 7623 -49.143.72.0/22 7623 -49.143.76.0/22 9319 -49.143.80.0/21 9319 -49.143.88.0/22 9319 -49.143.92.0/22 10175 -49.143.96.0/20 10175 -49.143.112.0/22 10175 -49.143.116.0/22 7623 -49.143.120.0/21 9319 -49.143.128.0/19 38684 -49.143.160.0/20 38684 -49.143.176.0/22 38684 -49.143.180.0/22 18033 -49.143.184.0/23 18033 -49.143.186.0/24 18033 -49.143.187.0/24 18168 -49.143.188.0/22 38684 -49.143.192.0/20 4766 -49.143.224.0/22 55861 -49.143.228.0/22 45475 -49.143.232.0/23 209 -49.143.234.0/24 209 -49.143.235.0/24 21509 -49.143.240.0/24 18068 -49.143.241.0/24 7506 -49.143.242.0/23 18068 -49.143.244.0/22 18068 -49.143.252.0/22 55879 -49.144.0.0/13 9299 -49.152.31.0/24 133948 -49.156.0.0/22 38901 -49.156.4.0/22 24251 -49.156.8.0/21 24251 -49.156.16.0/22 55884 -49.156.20.0/22 134630 -49.156.24.0/21 55803 -49.156.32.0/20 133378 -49.156.48.0/22 4648 -49.156.52.0/22 56141 -49.156.56.0/21 55667 -49.156.128.0/19 17483 -49.156.160.0/19 56291 -49.156.192.0/18 7679 -49.157.0.0/21 9658 -49.157.8.0/23 9658 -49.157.10.0/23 18190 -49.157.12.0/23 18190 -49.157.14.0/23 9658 -49.157.16.0/20 9658 -49.157.32.0/19 9658 -49.157.64.0/20 9658 -49.158.0.0/17 24164 -49.158.128.0/18 24164 -49.158.192.0/20 24163 -49.158.208.0/22 24163 -49.158.212.0/22 24164 -49.158.216.0/21 24164 -49.158.224.0/21 24165 -49.158.232.0/23 24165 -49.158.234.0/23 24164 -49.158.236.0/22 24164 -49.158.240.0/20 24164 -49.159.0.0/21 24165 -49.159.8.0/21 24164 -49.159.16.0/20 24164 -49.159.32.0/19 24164 -49.159.64.0/20 24164 -49.159.80.0/21 24164 -49.159.88.0/21 24163 -49.159.96.0/19 24164 -49.159.128.0/18 24164 -49.159.192.0/20 24164 -49.159.208.0/21 24164 -49.159.216.0/23 24165 -49.159.218.0/23 24164 -49.159.220.0/22 24164 -49.159.224.0/20 24164 -49.159.240.0/22 24164 -49.159.244.0/22 24165 -49.159.248.0/21 24164 -49.160.0.0/12 17858 -49.176.0.0/12 4804 -49.192.0.0/13 4804 -49.200.64.0/19 55441 -49.200.112.0/20 55441 -49.200.128.0/18 55441 -49.200.240.0/20 55441 -49.201.24.0/21 17762 -49.202.168.0/21 55441 -49.202.176.0/20 55441 -49.202.208.0/24 45820 -49.202.212.0/22 55441 -49.202.224.0/22 55441 -49.202.228.0/23 55441 -49.202.242.0/23 55441 -49.202.244.0/24 17762 -49.203.192.0/18 55441 -49.204.0.0/18 131269 -49.204.64.0/19 24309 -49.204.96.0/20 18209 -49.204.112.0/20 131269 -49.204.128.0/18 131269 -49.204.192.0/20 131269 -49.204.208.0/20 18209 -49.204.224.0/21 18209 -49.204.232.0/21 131269 -49.204.240.0/20 24309 -49.205.0.0/18 131269 -49.205.65.0/24 18209 -49.205.66.0/23 131269 -49.205.68.0/22 24309 -49.205.72.0/21 24309 -49.205.80.0/21 131269 -49.205.88.0/21 24309 -49.205.96.0/20 131269 -49.205.128.0/19 131269 -49.205.160.0/21 131269 -49.205.168.0/24 131269 -49.205.169.0/24 55577 -49.205.170.0/23 55577 -49.205.172.0/22 18209 -49.205.176.0/20 18209 -49.205.192.0/20 131269 -49.205.208.0/21 131269 -49.205.216.0/21 24309 -49.205.224.0/19 24309 -49.206.0.0/18 24309 -49.206.64.0/19 131269 -49.206.96.0/20 24309 -49.206.120.0/22 131269 -49.206.124.0/22 24309 -49.206.128.0/19 24309 -49.206.160.0/19 18209 -49.206.192.0/22 18209 -49.206.196.0/23 55577 -49.206.198.0/23 18209 -49.206.200.0/21 18209 -49.206.208.0/21 18209 -49.206.216.0/24 55577 -49.206.220.0/22 18209 -49.206.224.0/21 24309 -49.206.232.0/22 24309 -49.206.236.0/24 24309 -49.206.240.0/21 24309 -49.206.249.0/24 24309 -49.206.251.0/24 24309 -49.206.252.0/22 24309 -49.207.0.0/23 18209 -49.207.2.0/23 55577 -49.207.4.0/22 18209 -49.207.8.0/24 18209 -49.207.9.0/24 55577 -49.207.10.0/24 55577 -49.207.11.0/24 18209 -49.207.12.0/22 18209 -49.207.16.0/20 131269 -49.207.32.0/23 24309 -49.207.34.0/24 18209 -49.207.35.0/24 24309 -49.207.36.0/22 24309 -49.207.41.0/24 24309 -49.207.45.0/24 18209 -49.207.46.0/23 18209 -49.207.48.0/20 24309 -49.207.64.0/18 18209 -49.207.128.0/20 24309 -49.207.144.0/20 18209 -49.207.160.0/20 18209 -49.207.176.0/21 24309 -49.207.184.0/22 24309 -49.207.192.0/18 131269 -49.208.0.0/15 4538 -49.210.0.0/15 7497 -49.212.0.0/18 9371 -49.212.64.0/24 9371 -49.212.65.0/24 7684 -49.212.66.0/24 7684 -49.212.67.0/24 9371 -49.212.68.0/22 9371 -49.212.72.0/23 7684 -49.212.74.0/24 9371 -49.212.75.0/24 7684 -49.212.76.0/23 9371 -49.212.78.0/24 7684 -49.212.79.0/24 9371 -49.212.80.0/20 9371 -49.212.96.0/20 9371 -49.212.112.0/22 9371 -49.212.116.0/24 7684 -49.212.117.0/24 9371 -49.212.118.0/23 9371 -49.212.120.0/23 7684 -49.212.122.0/23 9371 -49.212.124.0/22 9371 -49.212.128.0/19 9371 -49.212.160.0/21 9371 -49.212.168.0/24 7684 -49.212.169.0/24 9371 -49.212.170.0/23 9371 -49.212.172.0/22 9371 -49.212.176.0/20 9371 -49.212.192.0/20 9371 -49.212.208.0/22 9371 -49.212.212.0/23 9371 -49.212.214.0/24 9371 -49.212.215.0/24 7684 -49.212.216.0/21 9371 -49.212.224.0/21 9371 -49.212.232.0/24 9371 -49.212.233.0/24 7684 -49.212.234.0/23 9371 -49.212.236.0/22 9371 -49.212.240.0/20 9371 -49.213.0.0/21 10098 -49.213.16.0/20 24482 -49.213.64.0/18 38244 -49.213.128.0/17 18049 -49.214.0.0/17 9924 -49.214.128.0/17 24158 -49.215.0.0/19 9924 -49.215.32.0/20 9924 -49.215.48.0/21 9924 -49.215.56.0/21 24158 -49.215.64.0/21 9924 -49.215.72.0/21 24158 -49.215.80.0/20 9924 -49.215.96.0/19 9924 -49.215.128.0/17 24158 -49.216.0.0/19 24158 -49.216.32.0/21 9924 -49.216.40.0/21 24158 -49.216.48.0/20 24158 -49.216.64.0/18 24158 -49.216.128.0/18 24158 -49.216.192.0/20 24158 -49.216.208.0/21 24158 -49.216.216.0/21 9924 -49.216.224.0/19 9924 -49.217.0.0/17 24158 -49.217.128.0/17 9924 -49.218.0.0/23 24158 -49.218.2.0/23 9924 -49.218.4.0/22 9924 -49.218.8.0/21 9924 -49.218.16.0/20 9924 -49.218.32.0/19 9924 -49.218.64.0/18 9924 -49.218.128.0/17 9924 -49.219.0.0/17 9924 -49.219.128.0/18 24158 -49.219.192.0/24 24158 -49.219.193.0/24 9924 -49.219.194.0/24 24158 -49.219.195.0/24 9924 -49.219.196.0/22 9924 -49.219.200.0/22 9924 -49.219.204.0/24 9924 -49.219.205.0/24 24158 -49.219.206.0/23 9924 -49.219.208.0/20 9924 -49.219.224.0/19 9924 -49.220.0.0/17 9395 -49.220.128.0/17 4847 -49.221.0.0/20 4847 -49.221.16.0/20 17964 -49.221.32.0/19 9395 -49.221.64.0/18 4847 -49.221.128.0/17 4847 -49.222.0.0/16 7497 -49.223.0.0/17 9395 -49.223.128.0/18 9395 -49.223.192.0/18 4847 -49.224.0.0/14 9500 -49.228.0.0/16 133481 -49.229.0.0/20 45430 -49.229.16.0/24 45806 -49.229.17.0/24 45458 -49.229.18.0/23 45430 -49.229.20.0/24 45458 -49.229.21.0/24 45430 -49.229.22.0/23 45458 -49.229.24.0/23 45458 -49.229.26.0/23 45430 -49.229.28.0/24 45430 -49.229.29.0/24 45458 -49.229.30.0/23 45430 -49.229.32.0/24 132866 -49.229.33.0/24 45430 -49.229.34.0/24 45458 -49.229.35.0/24 45430 -49.229.36.0/22 45458 -49.229.40.0/21 45458 -49.229.48.0/23 45458 -49.229.50.0/24 45458 -49.229.51.0/24 45430 -49.229.52.0/24 45430 -49.229.53.0/24 45458 -49.229.54.0/23 45430 -49.229.56.0/21 45430 -49.229.64.0/18 45430 -49.229.128.0/19 45430 -49.229.160.0/19 131445 -49.229.192.0/18 131445 -49.230.0.0/19 131445 -49.230.32.0/24 131445 -49.230.33.0/24 45430 -49.230.34.0/24 131445 -49.230.35.0/24 45430 -49.230.36.0/23 131445 -49.230.38.0/23 45430 -49.230.40.0/22 45430 -49.230.44.0/22 131445 -49.230.48.0/22 131445 -49.230.52.0/23 45430 -49.230.54.0/23 131445 -49.230.56.0/21 131445 -49.230.64.0/19 131445 -49.230.96.0/20 131445 -49.230.112.0/22 131445 -49.230.116.0/22 45430 -49.230.120.0/21 45430 -49.230.128.0/20 131445 -49.230.144.0/20 45430 -49.230.160.0/19 45430 -49.230.192.0/18 45430 -49.231.0.0/20 45458 -49.231.16.0/22 45458 -49.231.20.0/23 45458 -49.231.22.0/23 45430 -49.231.24.0/24 45458 -49.231.25.0/24 132681 -49.231.26.0/24 132681 -49.231.27.0/24 55488 -49.231.28.0/24 45255 -49.231.29.0/24 45458 -49.231.30.0/23 45458 -49.231.32.0/21 45458 -49.231.40.0/24 45458 -49.231.41.0/24 45430 -49.231.42.0/23 45430 -49.231.44.0/22 45430 -49.231.48.0/20 45430 -49.231.64.0/22 45458 -49.231.68.0/23 45458 -49.231.70.0/23 45430 -49.231.72.0/24 133848 -49.231.73.0/24 45430 -49.231.74.0/23 45430 -49.231.76.0/24 133848 -49.231.77.0/24 45430 -49.231.78.0/24 133848 -49.231.79.0/24 45430 -49.231.80.0/21 45458 -49.231.88.0/24 45458 -49.231.89.0/24 45430 -49.231.90.0/23 45458 -49.231.92.0/23 45458 -49.231.94.0/24 45458 -49.231.95.0/24 45430 -49.231.96.0/22 131445 -49.231.100.0/22 45430 -49.231.104.0/22 131445 -49.231.108.0/22 45430 -49.231.112.0/24 20940 -49.231.113.0/24 45430 -49.231.114.0/23 45430 -49.231.116.0/22 45430 -49.231.120.0/21 45430 -49.231.128.0/21 133848 -49.231.136.0/21 45458 -49.231.144.0/20 45458 -49.231.160.0/20 45458 -49.231.176.0/22 45458 -49.231.180.0/24 45458 -49.231.181.0/24 45199 -49.231.182.0/23 45458 -49.231.184.0/21 45458 -49.231.192.0/21 45458 -49.231.200.0/22 45458 -49.231.204.0/23 45458 -49.231.206.0/24 38820 -49.231.207.0/24 45458 -49.231.208.0/22 45458 -49.231.212.0/24 7630 -49.231.213.0/24 45458 -49.231.214.0/23 45458 -49.231.216.0/21 45458 -49.231.224.0/21 45458 -49.231.232.0/23 9551 -49.231.234.0/23 45458 -49.231.236.0/22 45458 -49.231.240.0/20 45458 -49.232.0.0/14 45090 -49.236.64.0/18 17858 -49.236.128.0/22 38690 -49.236.132.0/22 23576 -49.236.136.0/21 135354 -49.236.144.0/21 23576 -49.236.158.0/23 135354 -49.236.160.0/21 135354 -49.236.168.0/21 38690 -49.236.176.0/20 38690 -49.236.192.0/20 17971 -49.236.208.0/22 135918 -49.236.212.0/22 55915 -49.236.216.0/21 55668 -49.236.224.0/22 17948 -49.236.232.0/21 17957 -49.236.240.0/20 7469 -49.237.0.0/21 7470 -49.237.8.0/22 132618 -49.237.12.0/22 7470 -49.237.16.0/20 7470 -49.237.32.0/19 7470 -49.237.64.0/18 7470 -49.237.128.0/19 132618 -49.237.160.0/19 7470 -49.237.192.0/19 132618 -49.237.224.0/20 7470 -49.237.240.0/21 7470 -49.237.248.0/22 7470 -49.237.252.0/23 7470 -49.237.254.0/24 132618 -49.237.255.0/24 7470 -49.238.0.0/19 9614 -49.238.34.0/24 17771 -49.238.38.0/24 17771 -49.238.40.0/23 17771 -49.238.42.0/24 17771 -49.238.45.0/24 17771 -49.238.46.0/23 17771 -49.238.48.0/24 17771 -49.238.50.0/24 17771 -49.238.58.0/23 17771 -49.238.60.0/22 17771 -49.238.127.0/24 17608 -49.238.128.0/18 38690 -49.238.192.0/19 38661 -49.238.224.0/20 4766 -49.238.240.0/21 4766 -49.238.248.0/22 4766 -49.238.252.0/22 38661 -49.239.0.0/19 45080 -49.239.64.0/18 2497 -49.239.128.0/18 4663 -49.239.192.0/19 58834 -49.239.224.0/19 17816 -49.240.0.0/15 10013 -49.242.64.0/18 4686 -49.242.128.0/19 17698 -49.242.160.0/20 4686 -49.242.192.0/18 10013 -49.243.0.0/16 10013 -49.244.0.0/16 23752 -49.245.0.0/16 4773 -49.246.0.0/17 10054 -49.246.128.0/18 38735 -49.246.192.0/19 38735 -49.246.226.0/23 40676 -49.246.234.0/23 40676 -49.247.0.0/17 38700 -49.247.128.0/18 38700 -49.247.192.0/19 38700 -49.247.224.0/20 38700 -49.247.240.0/21 38700 -49.247.248.0/22 38700 -49.247.252.0/23 38700 -49.247.254.0/24 38700 -49.247.255.0/24 4766 -49.248.0.0/19 17762 -49.248.32.0/20 17762 -49.248.64.0/19 17762 -49.248.96.0/23 17762 -49.248.98.0/23 134540 -49.248.100.0/22 134540 -49.248.104.0/21 17762 -49.248.112.0/21 17762 -49.248.120.0/22 17762 -49.248.124.0/24 17762 -49.248.125.0/24 58608 -49.248.126.0/24 17762 -49.248.127.0/24 134540 -49.248.128.0/24 134540 -49.248.129.0/24 17762 -49.248.130.0/23 134540 -49.248.132.0/23 134540 -49.248.134.0/24 134540 -49.248.135.0/24 17762 -49.248.136.0/24 17762 -49.248.137.0/24 134540 -49.248.138.0/23 17762 -49.248.140.0/22 17762 -49.248.144.0/22 17762 -49.248.148.0/23 17762 -49.248.150.0/24 45820 -49.248.151.0/24 17762 -49.248.152.0/22 17762 -49.248.160.0/21 17762 -49.248.168.0/21 134540 -49.248.208.0/20 17762 -49.248.224.0/20 55441 -49.248.240.0/22 55441 -49.248.246.0/23 17762 -49.248.248.0/21 17762 -49.249.32.0/19 55441 -49.249.64.0/19 55441 -49.249.96.0/20 55441 -49.249.156.0/22 55441 -49.249.164.0/22 55441 -49.249.168.0/22 55441 -49.249.224.0/24 45820 -49.249.225.0/24 58693 -49.249.226.0/23 58693 -49.249.228.0/23 58693 -49.249.231.0/24 45820 -49.249.232.0/23 45820 -49.249.235.0/24 45820 -49.249.236.0/22 45820 -49.249.240.0/21 45820 -49.249.248.0/22 45820 -49.249.252.0/23 45820 -49.249.254.0/24 17762 -49.250.0.0/15 9617 -49.252.0.0/16 37903 -49.253.0.0/16 17676 -49.254.0.0/16 4766 -49.255.0.0/21 4826 -49.255.8.0/24 17819 -49.255.9.0/24 4826 -49.255.10.0/23 4826 -49.255.12.0/22 4826 -49.255.16.0/20 4826 -49.255.32.0/19 4826 -49.255.64.0/21 4826 -49.255.72.0/23 4826 -49.255.74.0/24 138475 -49.255.75.0/24 4826 -49.255.76.0/22 4826 -49.255.80.0/20 4826 -49.255.96.0/22 4826 -49.255.100.0/24 4826 -49.255.101.0/24 138475 -49.255.102.0/23 4826 -49.255.104.0/21 4826 -49.255.112.0/20 4826 -49.255.128.0/19 4826 -49.255.160.0/23 4826 -49.255.162.0/24 4826 -49.255.163.0/24 24375 -49.255.164.0/22 4826 -49.255.168.0/21 4826 -49.255.176.0/20 4826 -49.255.192.0/18 4826 -50.0.2.0/23 7065 -50.0.4.0/22 7065 -50.0.8.0/21 7065 -50.0.16.0/20 46375 -50.0.32.0/19 46375 -50.0.64.0/19 46375 -50.0.96.0/20 7065 -50.0.112.0/21 7065 -50.0.120.0/21 46375 -50.0.128.0/18 46375 -50.0.192.0/20 46375 -50.0.208.0/20 7065 -50.0.224.0/20 7065 -50.0.240.0/20 46375 -50.1.0.0/19 7065 -50.1.32.0/20 7065 -50.1.48.0/20 46375 -50.1.64.0/22 7065 -50.1.68.0/24 7065 -50.1.72.0/21 7065 -50.1.80.0/20 46375 -50.1.96.0/19 46375 -50.1.128.0/17 7065 -50.2.0.0/19 62904 -50.2.32.0/22 62904 -50.2.36.0/22 49532 -50.2.40.0/21 62904 -50.2.48.0/20 62904 -50.2.64.0/18 62904 -50.2.128.0/18 62904 -50.2.192.0/19 62904 -50.2.224.0/22 62904 -50.2.228.0/23 62904 -50.2.232.0/21 62904 -50.2.240.0/20 62904 -50.3.0.0/22 30693 -50.3.4.0/22 62904 -50.3.8.0/22 62904 -50.3.12.0/22 54049 -50.3.16.0/20 62904 -50.3.32.0/19 62904 -50.3.64.0/22 62904 -50.3.68.0/22 49532 -50.3.72.0/21 49532 -50.3.80.0/21 49532 -50.3.88.0/22 49532 -50.3.92.0/22 62904 -50.3.96.0/19 62904 -50.3.128.0/18 62904 -50.3.196.0/22 49532 -50.3.200.0/21 62904 -50.3.208.0/20 62904 -50.3.224.0/19 62904 -50.4.0.0/16 12083 -50.5.0.0/16 6181 -50.6.0.0/16 46606 -50.7.0.0/19 174 -50.7.32.0/20 174 -50.7.48.0/21 174 -50.7.56.0/23 174 -50.7.58.0/24 174 -50.7.59.0/24 2914 -50.7.60.0/23 2914 -50.7.62.0/23 174 -50.7.64.0/18 174 -50.7.128.0/20 174 -50.7.144.0/21 174 -50.7.152.0/22 174 -50.7.156.0/23 174 -50.7.158.0/23 2914 -50.7.160.0/19 174 -50.7.192.0/19 174 -50.7.224.0/20 174 -50.7.240.0/21 174 -50.7.248.0/23 174 -50.7.250.0/23 2914 -50.7.252.0/23 2914 -50.7.254.0/24 174 -50.7.255.0/24 2914 -50.16.0.0/15 14618 -50.18.0.0/16 16509 -50.19.0.0/16 14618 -50.20.0.0/18 17184 -50.20.64.0/19 17184 -50.20.96.0/20 17184 -50.20.128.0/18 17184 -50.20.208.0/20 17184 -50.20.224.0/20 17184 -50.20.240.0/21 17184 -50.21.0.0/20 17184 -50.21.16.0/21 17184 -50.21.28.0/22 17184 -50.21.32.0/22 17184 -50.21.36.0/23 17184 -50.21.56.0/22 17184 -50.21.60.0/24 17184 -50.21.66.0/23 17184 -50.21.68.0/22 17184 -50.21.96.0/22 17184 -50.21.128.0/20 14102 -50.21.144.0/20 27338 -50.21.160.0/20 29909 -50.21.176.0/20 8560 -50.21.192.0/20 4181 -50.21.208.0/20 20334 -50.21.224.0/21 852 -50.21.232.0/22 852 -50.21.236.0/23 852 -50.21.238.0/24 852 -50.21.240.0/20 22645 -50.22.0.0/15 36351 -50.24.0.0/14 19108 -50.28.0.0/18 32244 -50.28.64.0/19 32244 -50.28.96.0/19 53824 -50.28.128.0/18 13796 -50.28.192.0/18 19271 -50.29.0.0/17 6128 -50.29.128.0/17 3737 -50.30.0.0/23 1406 -50.30.4.0/23 1406 -50.30.16.0/23 30688 -50.30.18.0/24 30688 -50.30.19.0/24 394195 -50.30.20.0/23 30688 -50.30.22.0/24 394568 -50.30.23.0/24 54245 -50.30.24.0/24 394568 -50.30.25.0/24 30688 -50.30.26.0/23 394568 -50.30.28.0/23 394568 -50.30.30.0/24 394568 -50.30.31.0/24 30688 -50.30.32.0/20 30083 -50.30.48.0/23 36295 -50.30.50.0/24 14658 -50.30.51.0/24 36295 -50.30.52.0/22 36295 -50.30.56.0/22 36295 -50.30.60.0/23 36295 -50.30.62.0/24 14658 -50.30.63.0/24 36295 -50.30.64.0/20 13694 -50.30.80.0/20 17293 -50.30.96.0/20 54075 -50.30.112.0/21 13781 -50.30.120.0/22 13781 -50.30.124.0/23 13781 -50.30.126.0/24 13781 -50.30.128.0/22 23473 -50.30.132.0/24 23473 -50.30.133.0/24 46925 -50.30.134.0/23 23473 -50.30.136.0/23 23473 -50.30.138.0/24 46925 -50.30.139.0/24 23473 -50.30.140.0/22 23473 -50.30.146.0/23 23473 -50.30.148.0/23 46925 -50.30.150.0/23 23473 -50.30.152.0/23 23473 -50.30.154.0/23 46925 -50.30.156.0/22 46925 -50.30.160.0/22 23473 -50.30.164.0/23 23473 -50.30.166.0/23 46925 -50.30.168.0/23 23473 -50.30.170.0/23 46925 -50.30.172.0/23 46925 -50.30.174.0/23 23473 -50.30.177.0/24 23473 -50.30.178.0/23 23473 -50.30.180.0/23 23473 -50.30.182.0/24 23473 -50.30.183.0/24 46925 -50.30.184.0/24 23473 -50.30.185.0/24 46925 -50.30.186.0/23 23473 -50.30.188.0/24 23473 -50.30.189.0/24 46925 -50.30.190.0/24 23473 -50.30.192.0/24 23473 -50.30.194.0/23 23473 -50.30.200.0/24 23473 -50.30.208.0/22 23473 -50.30.212.0/23 23473 -50.30.216.0/24 23473 -50.30.222.0/24 23473 -50.30.224.0/23 23473 -50.30.232.0/23 23473 -50.30.234.0/24 23473 -50.30.236.0/23 23473 -50.30.240.0/23 46925 -50.30.245.0/24 46925 -50.30.248.0/23 23473 -50.30.250.0/23 46925 -50.30.252.0/22 23473 -50.31.0.0/20 32748 -50.31.16.0/22 46811 -50.31.20.0/22 32748 -50.31.24.0/21 32748 -50.31.32.0/19 32748 -50.31.64.0/18 32748 -50.31.128.0/22 23352 -50.31.132.0/24 48851 -50.31.133.0/24 23352 -50.31.134.0/23 23352 -50.31.136.0/22 23352 -50.31.140.0/23 23352 -50.31.142.0/24 22075 -50.31.143.0/24 23352 -50.31.144.0/21 23352 -50.31.152.0/24 23352 -50.31.153.0/24 22370 -50.31.154.0/23 23352 -50.31.156.0/22 23352 -50.31.160.0/23 23352 -50.31.162.0/24 23352 -50.31.163.0/24 10493 -50.31.164.0/24 23467 -50.31.165.0/24 23352 -50.31.166.0/23 23352 -50.31.168.0/21 23352 -50.31.176.0/20 23352 -50.31.192.0/22 23352 -50.31.196.0/23 30081 -50.31.198.0/24 23352 -50.31.199.0/24 7014 -50.31.200.0/24 23352 -50.31.201.0/24 30081 -50.31.202.0/23 23352 -50.31.204.0/22 23352 -50.31.208.0/20 23352 -50.31.224.0/24 22370 -50.31.225.0/24 23352 -50.31.226.0/23 23352 -50.31.228.0/22 23352 -50.31.232.0/22 23352 -50.31.236.0/24 2914 -50.31.237.0/24 23352 -50.31.238.0/24 30081 -50.31.239.0/24 23352 -50.31.240.0/24 32780 -50.31.241.0/24 13213 -50.31.242.0/23 32771 -50.31.244.0/23 23352 -50.31.246.0/24 40509 -50.31.247.0/24 23352 -50.31.248.0/22 23352 -50.31.252.0/22 32780 -50.32.0.0/19 5650 -50.32.32.0/20 5650 -50.32.48.0/21 5650 -50.32.56.0/22 5650 -50.32.60.0/24 5650 -50.32.61.0/24 3593 -50.32.62.0/23 5650 -50.32.64.0/21 3593 -50.32.72.0/24 3593 -50.32.73.0/24 5650 -50.32.74.0/24 3593 -50.32.75.0/24 395333 -50.32.76.0/22 5650 -50.32.80.0/20 5650 -50.32.96.0/19 5650 -50.32.128.0/17 5650 -50.33.0.0/23 5650 -50.33.2.0/23 20300 -50.33.4.0/23 5650 -50.33.6.0/24 7011 -50.33.7.0/24 5650 -50.33.8.0/21 5650 -50.33.16.0/20 5650 -50.33.32.0/19 5650 -50.33.64.0/20 5650 -50.33.80.0/21 5650 -50.33.88.0/22 5650 -50.33.92.0/23 5650 -50.33.94.0/24 7011 -50.33.95.0/24 5650 -50.33.96.0/19 5650 -50.33.128.0/17 5650 -50.34.0.0/15 27017 -50.36.0.0/17 5650 -50.36.128.0/18 5650 -50.36.192.0/22 5650 -50.36.196.0/22 7011 -50.36.200.0/21 5650 -50.36.208.0/20 7011 -50.36.224.0/19 5650 -50.37.0.0/18 5650 -50.37.64.0/18 27017 -50.37.128.0/17 27017 -50.38.0.0/17 27017 -50.38.128.0/22 5650 -50.38.132.0/23 5650 -50.38.134.0/24 5650 -50.38.135.0/24 394681 -50.38.136.0/21 5650 -50.38.144.0/20 5650 -50.38.160.0/19 5650 -50.38.192.0/18 5650 -50.39.0.0/21 5650 -50.39.8.0/23 5650 -50.39.10.0/24 5650 -50.39.11.0/24 7011 -50.39.12.0/22 5650 -50.39.16.0/20 5650 -50.39.32.0/19 5650 -50.39.64.0/18 27017 -50.39.128.0/17 27017 -50.40.0.0/17 5650 -50.40.128.0/20 5650 -50.40.144.0/22 5650 -50.40.148.0/22 7011 -50.40.152.0/21 5650 -50.40.160.0/19 5650 -50.40.192.0/18 5650 -50.41.0.0/16 5650 -50.42.0.0/16 5650 -50.43.0.0/17 27017 -50.43.128.0/17 5650 -50.44.0.0/20 5650 -50.44.16.0/21 5650 -50.44.24.0/22 5650 -50.44.28.0/24 5650 -50.44.29.0/24 54794 -50.44.30.0/23 5650 -50.44.32.0/19 5650 -50.44.64.0/18 5650 -50.44.128.0/17 5650 -50.45.0.0/17 5650 -50.45.128.0/17 27017 -50.46.0.0/15 27017 -50.48.0.0/21 7011 -50.48.8.0/21 5650 -50.48.16.0/21 7011 -50.48.24.0/21 5650 -50.48.32.0/20 7011 -50.48.48.0/20 5650 -50.48.64.0/18 5650 -50.48.128.0/17 5650 -50.49.0.0/17 5650 -50.49.128.0/18 5650 -50.49.192.0/19 5650 -50.49.224.0/20 5650 -50.49.240.0/21 5650 -50.49.248.0/22 5650 -50.49.252.0/24 31862 -50.49.253.0/24 5650 -50.49.254.0/24 20359 -50.49.255.0/24 5650 -50.50.0.0/22 5650 -50.50.4.0/22 7011 -50.50.8.0/21 5650 -50.50.16.0/20 5650 -50.50.32.0/19 5650 -50.50.64.0/18 5650 -50.50.128.0/22 5650 -50.50.132.0/24 5650 -50.50.133.0/24 7011 -50.50.134.0/23 5650 -50.50.136.0/21 5650 -50.50.144.0/20 5650 -50.50.160.0/19 5650 -50.50.192.0/18 5650 -50.51.0.0/16 5650 -50.52.0.0/17 27017 -50.52.128.0/17 5650 -50.53.0.0/16 27017 -50.54.0.0/17 5650 -50.54.128.0/19 27017 -50.54.160.0/24 27017 -50.54.161.0/24 394764 -50.54.162.0/23 27017 -50.54.164.0/22 27017 -50.54.168.0/21 27017 -50.54.176.0/20 27017 -50.54.192.0/19 27017 -50.54.224.0/20 27017 -50.54.240.0/23 27017 -50.54.242.0/24 201385 -50.54.243.0/24 27017 -50.54.244.0/22 27017 -50.54.248.0/21 27017 -50.55.0.0/16 5650 -50.56.0.0/17 19994 -50.56.128.0/20 33070 -50.56.144.0/22 33070 -50.56.148.0/22 53824 -50.56.152.0/21 33070 -50.56.160.0/19 33070 -50.56.192.0/19 33070 -50.56.224.0/22 33070 -50.56.228.0/23 10532 -50.56.230.0/24 22720 -50.56.231.0/24 33070 -50.56.232.0/21 33070 -50.56.240.0/20 33070 -50.57.0.0/17 19994 -50.57.128.0/18 19994 -50.57.192.0/19 19994 -50.57.224.0/20 19994 -50.57.240.0/20 32244 -50.58.0.0/21 3549 -50.58.8.0/22 6318 -50.58.12.0/23 3549 -50.58.14.0/24 36434 -50.58.15.0/24 3549 -50.58.16.0/23 14328 -50.58.18.0/23 3549 -50.58.20.0/22 3549 -50.58.24.0/22 3549 -50.58.28.0/23 3549 -50.58.30.0/24 3549 -50.58.31.0/24 14096 -50.58.32.0/19 3549 -50.58.64.0/20 3549 -50.58.80.0/24 3549 -50.58.81.0/24 395058 -50.58.82.0/23 3549 -50.58.84.0/22 3549 -50.58.88.0/21 3549 -50.58.96.0/21 3549 -50.58.104.0/22 3549 -50.58.108.0/23 394828 -50.58.110.0/24 394828 -50.58.111.0/24 3549 -50.58.112.0/23 3549 -50.58.114.0/24 3549 -50.58.115.0/24 11372 -50.58.116.0/22 3549 -50.58.120.0/23 3549 -50.58.122.0/24 32763 -50.58.123.0/24 3549 -50.58.124.0/22 3549 -50.58.128.0/23 3549 -50.58.130.0/24 394152 -50.58.131.0/24 53787 -50.58.132.0/22 3549 -50.58.136.0/23 3549 -50.58.138.0/24 20236 -50.58.139.0/24 3549 -50.58.140.0/23 3549 -50.58.142.0/23 26421 -50.58.144.0/21 3549 -50.58.152.0/24 3549 -50.58.153.0/24 17406 -50.58.154.0/24 17406 -50.58.155.0/24 3549 -50.58.156.0/22 3549 -50.58.160.0/23 3549 -50.58.162.0/24 19102 -50.58.163.0/24 26729 -50.58.164.0/22 3549 -50.58.168.0/24 3549 -50.58.169.0/24 16981 -50.58.170.0/23 3549 -50.58.172.0/24 25920 -50.58.173.0/24 3549 -50.58.174.0/23 3549 -50.58.176.0/22 3549 -50.58.180.0/24 7213 -50.58.181.0/24 3549 -50.58.182.0/23 3549 -50.58.184.0/22 3549 -50.58.188.0/24 3549 -50.58.189.0/24 1444 -50.58.190.0/24 394714 -50.58.191.0/24 54030 -50.58.192.0/24 393541 -50.58.193.0/24 3549 -50.58.194.0/24 3549 -50.58.195.0/24 32822 -50.58.196.0/24 3549 -50.58.197.0/24 40034 -50.58.198.0/24 3549 -50.58.199.0/24 27637 -50.58.200.0/24 63483 -50.58.201.0/24 3549 -50.58.202.0/23 3549 -50.58.204.0/22 3549 -50.58.208.0/23 3549 -50.58.210.0/24 19725 -50.58.211.0/24 3549 -50.58.212.0/24 63483 -50.58.213.0/24 3549 -50.58.214.0/23 3549 -50.58.216.0/24 393443 -50.58.217.0/24 3549 -50.58.218.0/23 26831 -50.58.220.0/22 3549 -50.58.224.0/22 3549 -50.58.228.0/24 3549 -50.58.229.0/24 17406 -50.58.230.0/23 63264 -50.58.232.0/23 3549 -50.58.234.0/24 30525 -50.58.235.0/24 3549 -50.58.236.0/23 3549 -50.58.238.0/24 3549 -50.58.239.0/24 393233 -50.58.240.0/24 46672 -50.58.241.0/24 3549 -50.58.242.0/23 3549 -50.58.244.0/22 3549 -50.58.248.0/24 54147 -50.58.249.0/24 3549 -50.58.250.0/24 26781 -50.58.251.0/24 3549 -50.58.252.0/24 26845 -50.58.253.0/24 3549 -50.58.254.0/23 3549 -50.59.0.0/24 3549 -50.59.1.0/24 22866 -50.59.2.0/24 3549 -50.59.3.0/24 3356 -50.59.4.0/23 17406 -50.59.6.0/23 3549 -50.59.8.0/21 3549 -50.59.16.0/22 3549 -50.59.20.0/24 62561 -50.59.21.0/24 3549 -50.59.22.0/23 3549 -50.59.24.0/21 3549 -50.59.32.0/23 62802 -50.59.34.0/23 3549 -50.59.36.0/23 3549 -50.59.38.0/24 3549 -50.59.39.0/24 54230 -50.59.40.0/23 3549 -50.59.42.0/24 3549 -50.59.43.0/24 54436 -50.59.44.0/22 3549 -50.59.48.0/22 3549 -50.59.52.0/24 46266 -50.59.53.0/24 3549 -50.59.54.0/23 3549 -50.59.56.0/24 8077 -50.59.57.0/24 3549 -50.59.58.0/24 54341 -50.59.59.0/24 3549 -50.59.60.0/23 3549 -50.59.62.0/24 17274 -50.59.63.0/24 3549 -50.59.64.0/24 3549 -50.59.65.0/24 63483 -50.59.66.0/23 3549 -50.59.68.0/22 3549 -50.59.72.0/24 27610 -50.59.73.0/24 63483 -50.59.74.0/23 3549 -50.59.76.0/22 3549 -50.59.80.0/24 53759 -50.59.81.0/24 3549 -50.59.82.0/23 63483 -50.59.84.0/24 54349 -50.59.85.0/24 3549 -50.59.86.0/24 3549 -50.59.87.0/24 15292 -50.59.88.0/22 3549 -50.59.92.0/23 63483 -50.59.94.0/23 3549 -50.59.96.0/22 3549 -50.59.100.0/24 3549 -50.59.101.0/24 32837 -50.59.102.0/23 14058 -50.59.104.0/24 3549 -50.59.105.0/24 54571 -50.59.106.0/23 3549 -50.59.108.0/22 3549 -50.59.112.0/23 3549 -50.59.114.0/23 62802 -50.59.116.0/23 3549 -50.59.118.0/24 16391 -50.59.119.0/24 17216 -50.59.120.0/21 3549 -50.59.128.0/23 3549 -50.59.130.0/24 25670 -50.59.131.0/24 3549 -50.59.132.0/24 3549 -50.59.133.0/24 26709 -50.59.134.0/23 3549 -50.59.136.0/24 3549 -50.59.137.0/24 394983 -50.59.138.0/23 3549 -50.59.140.0/22 3549 -50.59.144.0/24 3549 -50.59.145.0/24 397854 -50.59.146.0/23 394828 -50.59.148.0/23 3549 -50.59.150.0/24 11075 -50.59.151.0/24 3549 -50.59.152.0/23 12025 -50.59.154.0/23 3549 -50.59.156.0/23 3549 -50.59.158.0/24 3549 -50.59.159.0/24 396241 -50.59.160.0/22 3549 -50.59.164.0/24 3549 -50.59.165.0/24 46220 -50.59.166.0/23 3549 -50.59.168.0/21 3549 -50.59.176.0/22 3549 -50.59.180.0/24 3549 -50.59.181.0/24 394121 -50.59.182.0/23 3549 -50.59.184.0/23 3549 -50.59.186.0/24 54865 -50.59.187.0/24 3549 -50.59.188.0/22 3549 -50.59.192.0/21 3549 -50.59.200.0/22 3549 -50.59.204.0/23 3549 -50.59.206.0/24 17145 -50.59.207.0/24 3549 -50.59.208.0/22 3549 -50.59.212.0/24 3549 -50.59.213.0/24 40464 -50.59.214.0/23 3549 -50.59.216.0/24 54770 -50.59.217.0/24 18906 -50.59.218.0/23 3549 -50.59.220.0/22 3549 -50.59.224.0/24 54683 -50.59.225.0/24 53514 -50.59.226.0/23 3549 -50.59.228.0/23 3549 -50.59.230.0/23 63483 -50.59.232.0/23 393693 -50.59.234.0/23 3549 -50.59.236.0/22 3549 -50.59.240.0/22 16391 -50.59.244.0/22 3549 -50.59.248.0/21 3549 -50.60.0.0/17 25019 -50.60.128.0/20 25019 -50.60.144.0/24 25019 -50.60.145.0/24 25653 -50.60.146.0/23 25019 -50.60.148.0/22 25019 -50.60.152.0/21 25019 -50.60.160.0/19 25019 -50.60.192.0/18 25019 -50.61.0.0/18 25019 -50.62.0.0/16 26496 -50.63.0.0/20 26496 -50.63.16.0/22 26496 -50.63.20.0/23 26496 -50.63.22.0/24 44273 -50.63.23.0/24 26496 -50.63.24.0/21 26496 -50.63.32.0/19 26496 -50.63.64.0/18 26496 -50.63.128.0/17 26496 -50.64.0.0/13 6327 -50.72.0.0/16 6327 -50.73.0.0/16 7922 -50.74.0.0/18 12271 -50.74.64.0/20 12271 -50.74.80.0/23 12271 -50.74.82.0/24 12271 -50.74.83.0/24 16770 -50.74.84.0/22 12271 -50.74.88.0/21 12271 -50.74.96.0/19 12271 -50.74.128.0/17 12271 -50.75.0.0/19 11351 -50.75.32.0/21 11351 -50.75.40.0/24 53623 -50.75.41.0/24 11351 -50.75.42.0/23 11351 -50.75.44.0/23 11351 -50.75.46.0/24 11351 -50.75.47.0/24 63243 -50.75.48.0/20 11351 -50.75.64.0/18 11351 -50.75.128.0/18 11351 -50.75.192.0/18 12271 -50.76.0.0/14 7922 -50.80.0.0/14 30036 -50.84.0.0/19 11427 -50.84.32.0/21 11427 -50.84.40.0/22 11427 -50.84.44.0/24 11427 -50.84.45.0/24 14313 -50.84.46.0/23 11427 -50.84.48.0/20 11427 -50.84.64.0/21 11427 -50.84.72.0/22 11427 -50.84.76.0/24 54089 -50.84.77.0/24 11427 -50.84.78.0/23 11427 -50.84.80.0/20 11427 -50.84.96.0/19 11427 -50.84.128.0/19 11427 -50.84.160.0/20 11427 -50.84.176.0/21 11427 -50.84.184.0/24 13554 -50.84.185.0/24 11427 -50.84.186.0/23 11427 -50.84.188.0/22 11427 -50.84.192.0/18 11427 -50.86.0.0/16 11272 -50.87.0.0/17 46606 -50.87.128.0/18 46606 -50.87.192.0/19 46606 -50.87.224.0/20 46606 -50.87.240.0/22 46606 -50.87.244.0/23 46606 -50.87.246.0/24 30380 -50.87.247.0/24 46606 -50.87.248.0/21 46606 -50.88.0.0/14 33363 -50.92.0.0/16 852 -50.93.0.0/17 852 -50.93.144.0/20 16574 -50.93.160.0/20 6407 -50.93.176.0/20 53435 -50.93.195.0/24 8100 -50.93.196.0/24 53974 -50.93.197.0/24 8100 -50.93.198.0/23 53974 -50.93.200.0/24 53974 -50.93.201.0/24 8100 -50.93.202.0/23 53974 -50.93.204.0/23 53974 -50.93.206.0/24 8100 -50.93.207.0/24 53974 -50.93.208.0/20 46262 -50.93.224.0/20 14155 -50.93.240.0/22 10242 -50.93.244.0/23 10242 -50.93.246.0/23 62715 -50.93.248.0/22 10242 -50.93.252.0/23 10242 -50.93.254.0/24 10242 -50.93.255.0/24 62715 -50.94.0.0/15 14654 -50.96.0.0/17 7029 -50.96.128.0/18 7029 -50.96.192.0/21 7029 -50.96.200.0/22 394183 -50.96.204.0/22 7029 -50.96.208.0/20 7029 -50.96.224.0/19 7029 -50.97.0.0/16 36351 -50.98.0.0/15 852 -50.100.0.0/20 603 -50.100.16.0/21 603 -50.100.24.0/21 577 -50.100.32.0/19 577 -50.100.64.0/18 577 -50.100.128.0/17 577 -50.101.0.0/16 577 -50.102.0.0/15 5650 -50.104.0.0/18 5650 -50.104.64.0/19 5650 -50.104.96.0/20 5650 -50.104.112.0/21 5650 -50.104.120.0/22 5650 -50.104.124.0/24 26127 -50.104.125.0/24 5650 -50.104.126.0/23 5650 -50.104.128.0/19 5650 -50.104.160.0/21 5650 -50.104.168.0/24 26127 -50.104.169.0/24 5650 -50.104.170.0/23 5650 -50.104.172.0/22 5650 -50.104.176.0/20 5650 -50.104.192.0/18 5650 -50.105.0.0/17 5650 -50.105.128.0/18 5650 -50.105.192.0/19 5650 -50.105.224.0/20 5650 -50.105.240.0/24 7011 -50.105.241.0/24 5650 -50.105.242.0/23 5650 -50.105.244.0/22 7011 -50.105.248.0/21 5650 -50.106.0.0/19 27017 -50.106.32.0/23 27017 -50.106.34.0/24 27017 -50.106.35.0/24 393286 -50.106.36.0/22 27017 -50.106.40.0/21 27017 -50.106.48.0/20 27017 -50.106.64.0/18 5650 -50.106.128.0/21 5650 -50.106.136.0/21 7011 -50.106.144.0/20 5650 -50.106.160.0/19 5650 -50.106.192.0/18 5650 -50.107.0.0/20 5650 -50.107.16.0/21 5650 -50.107.24.0/21 27017 -50.107.32.0/20 5650 -50.107.48.0/23 5650 -50.107.50.0/24 7011 -50.107.51.0/24 5650 -50.107.52.0/22 5650 -50.107.56.0/21 5650 -50.107.64.0/18 5650 -50.107.128.0/17 5650 -50.108.0.0/19 5650 -50.108.32.0/22 5650 -50.108.36.0/23 5650 -50.108.38.0/24 7011 -50.108.39.0/24 5650 -50.108.40.0/22 5650 -50.108.44.0/23 7011 -50.108.46.0/24 7011 -50.108.47.0/24 5650 -50.108.48.0/20 5650 -50.108.64.0/18 5650 -50.108.128.0/18 5650 -50.108.192.0/21 5650 -50.108.200.0/22 5650 -50.108.204.0/23 7011 -50.108.206.0/23 5650 -50.108.208.0/20 5650 -50.108.224.0/19 5650 -50.109.0.0/17 5650 -50.109.128.0/18 5650 -50.109.192.0/19 5650 -50.109.224.0/19 27017 -50.110.0.0/15 5650 -50.112.0.0/16 16509 -50.113.0.0/16 20001 -50.114.0.0/16 11798 -50.115.0.0/20 40824 -50.115.16.0/20 53861 -50.115.32.0/20 18450 -50.115.48.0/20 11979 -50.115.64.0/20 14265 -50.115.80.0/22 1828 -50.115.84.0/24 1828 -50.115.86.0/23 1828 -50.115.88.0/21 1828 -50.115.96.0/20 54045 -50.115.112.0/20 29854 -50.115.128.0/20 20248 -50.115.144.0/23 15165 -50.115.146.0/24 15165 -50.115.147.0/24 13329 -50.115.148.0/24 397298 -50.115.153.0/24 54057 -50.115.154.0/23 54057 -50.115.156.0/24 15165 -50.115.157.0/24 13329 -50.115.160.0/20 32875 -50.115.176.0/20 7992 -50.115.192.0/22 54048 -50.115.196.0/23 54048 -50.115.198.0/23 17013 -50.115.200.0/21 54048 -50.115.208.0/22 12269 -50.115.216.0/21 12269 -50.115.224.0/21 27257 -50.115.232.0/22 27257 -50.115.236.0/22 20264 -50.115.240.0/20 46792 -50.116.0.0/18 63949 -50.116.64.0/18 46606 -50.116.128.0/18 3663 -50.116.192.0/19 6336 -50.116.236.0/22 6336 -50.117.0.0/19 18779 -50.117.32.0/21 18779 -50.117.40.0/22 18779 -50.117.44.0/24 26481 -50.117.45.0/24 18779 -50.117.46.0/23 18779 -50.117.48.0/20 18779 -50.117.64.0/18 18779 -50.117.128.0/19 6058 -50.117.160.0/20 53910 -50.117.191.0/24 53910 -50.118.0.0/17 46606 -50.118.128.0/19 18779 -50.118.160.0/20 18779 -50.118.176.0/21 18779 -50.118.184.0/22 18779 -50.118.188.0/24 18779 -50.118.189.0/24 63008 -50.118.190.0/23 18779 -50.118.192.0/22 18779 -50.118.196.0/24 18779 -50.118.197.0/24 53889 -50.118.198.0/23 18779 -50.118.200.0/21 18779 -50.118.208.0/20 18779 -50.118.224.0/19 18779 -50.119.0.0/16 25019 -50.120.0.0/20 5650 -50.120.16.0/21 5650 -50.120.24.0/22 5650 -50.120.28.0/23 5650 -50.120.30.0/24 5650 -50.120.31.0/24 7011 -50.120.32.0/22 7011 -50.120.36.0/22 5650 -50.120.40.0/21 5650 -50.120.48.0/20 5650 -50.120.64.0/19 27017 -50.120.96.0/19 5650 -50.120.128.0/19 5650 -50.120.160.0/21 5650 -50.120.168.0/23 5650 -50.120.170.0/24 393542 -50.120.171.0/24 5650 -50.120.172.0/22 5650 -50.120.176.0/20 5650 -50.120.192.0/23 5650 -50.120.194.0/23 3593 -50.120.196.0/23 5650 -50.120.198.0/24 5650 -50.120.199.0/24 3593 -50.120.200.0/21 5650 -50.120.208.0/24 3593 -50.120.209.0/24 5650 -50.120.210.0/23 5650 -50.120.212.0/22 5650 -50.120.216.0/21 5650 -50.120.224.0/20 5650 -50.120.240.0/21 5650 -50.120.248.0/22 7011 -50.120.252.0/22 5650 -50.121.0.0/23 5650 -50.121.2.0/24 26127 -50.121.3.0/24 5650 -50.121.4.0/22 5650 -50.121.8.0/21 5650 -50.121.16.0/20 5650 -50.121.32.0/19 5650 -50.121.64.0/24 5650 -50.121.65.0/24 32587 -50.121.66.0/23 32587 -50.121.68.0/23 5650 -50.121.70.0/24 5650 -50.121.71.0/24 32587 -50.121.72.0/22 32587 -50.121.76.0/24 32587 -50.121.77.0/24 5650 -50.121.78.0/24 5650 -50.121.79.0/24 32587 -50.121.80.0/20 5650 -50.121.96.0/19 5650 -50.121.128.0/20 5650 -50.121.144.0/22 5650 -50.121.148.0/23 5650 -50.121.150.0/24 5650 -50.121.151.0/24 26650 -50.121.152.0/21 5650 -50.121.160.0/22 5650 -50.121.164.0/23 7011 -50.121.166.0/23 5650 -50.121.168.0/21 5650 -50.121.176.0/20 5650 -50.121.192.0/18 5650 -50.122.0.0/21 5650 -50.122.8.0/22 5650 -50.122.12.0/22 7011 -50.122.16.0/20 5650 -50.122.32.0/20 5650 -50.122.48.0/24 5650 -50.122.49.0/24 7011 -50.122.50.0/23 5650 -50.122.52.0/22 5650 -50.122.56.0/21 5650 -50.122.64.0/18 5650 -50.122.128.0/19 5650 -50.122.160.0/20 5650 -50.122.176.0/22 5650 -50.122.180.0/23 7011 -50.122.182.0/24 7011 -50.122.183.0/24 5650 -50.122.184.0/21 5650 -50.122.192.0/20 7011 -50.122.208.0/20 5650 -50.122.224.0/19 5650 -50.123.0.0/20 5650 -50.123.16.0/21 5650 -50.123.24.0/23 5650 -50.123.26.0/23 7011 -50.123.28.0/22 5650 -50.123.32.0/19 5650 -50.123.64.0/18 27017 -50.123.128.0/18 5650 -50.123.192.0/19 5650 -50.123.224.0/21 5650 -50.123.232.0/22 7011 -50.123.236.0/22 5650 -50.123.240.0/20 5650 -50.124.0.0/18 5650 -50.124.64.0/20 7011 -50.124.80.0/21 5650 -50.124.88.0/22 5650 -50.124.92.0/24 5650 -50.124.93.0/24 40534 -50.124.94.0/23 5650 -50.124.96.0/21 5650 -50.124.104.0/22 5650 -50.124.108.0/23 5650 -50.124.110.0/24 5650 -50.124.111.0/24 7011 -50.124.112.0/20 5650 -50.124.128.0/18 5650 -50.124.192.0/22 5650 -50.124.196.0/23 5650 -50.124.198.0/23 7011 -50.124.200.0/23 5650 -50.124.202.0/24 46972 -50.124.203.0/24 5650 -50.124.204.0/22 5650 -50.124.208.0/21 5650 -50.124.216.0/22 5650 -50.124.220.0/23 7011 -50.124.222.0/23 5650 -50.124.224.0/19 5650 -50.125.0.0/16 27017 -50.126.0.0/18 5650 -50.126.64.0/18 27017 -50.126.128.0/17 5650 -50.127.0.0/18 5650 -50.127.64.0/19 5650 -50.127.96.0/20 5650 -50.127.112.0/21 5650 -50.127.120.0/22 5650 -50.127.124.0/23 5650 -50.127.126.0/24 5650 -50.127.127.0/24 26127 -50.127.128.0/19 5650 -50.127.160.0/20 7011 -50.127.176.0/20 5650 -50.127.192.0/19 5650 -50.127.224.0/19 7011 -50.128.0.0/10 7922 -50.192.0.0/13 7922 -50.200.0.0/24 7922 -50.200.1.0/24 33248 -50.200.2.0/23 7922 -50.200.4.0/24 7922 -50.200.5.0/24 33491 -50.200.6.0/23 7922 -50.200.8.0/21 7922 -50.200.16.0/24 7922 -50.200.17.0/24 40485 -50.200.18.0/23 7922 -50.200.20.0/22 7922 -50.200.24.0/21 7922 -50.200.32.0/21 7922 -50.200.40.0/24 20008 -50.200.41.0/24 7922 -50.200.42.0/23 7922 -50.200.44.0/22 7922 -50.200.48.0/20 7922 -50.200.64.0/20 7922 -50.200.80.0/21 7922 -50.200.88.0/22 7922 -50.200.92.0/24 395433 -50.200.93.0/24 7922 -50.200.94.0/23 7922 -50.200.96.0/22 7922 -50.200.100.0/23 7922 -50.200.102.0/24 7922 -50.200.103.0/24 33491 -50.200.104.0/24 33491 -50.200.105.0/24 7922 -50.200.106.0/23 7922 -50.200.108.0/22 33491 -50.200.112.0/24 46336 -50.200.113.0/24 7922 -50.200.114.0/23 7922 -50.200.116.0/22 7922 -50.200.120.0/21 7922 -50.200.128.0/22 7922 -50.200.132.0/24 7922 -50.200.133.0/24 54246 -50.200.134.0/23 7922 -50.200.136.0/21 7922 -50.200.144.0/20 7922 -50.200.160.0/23 7922 -50.200.162.0/24 7922 -50.200.163.0/24 23235 -50.200.164.0/22 7922 -50.200.168.0/21 7922 -50.200.176.0/22 7922 -50.200.180.0/24 54946 -50.200.181.0/24 7922 -50.200.182.0/24 7922 -50.200.183.0/24 33491 -50.200.184.0/21 7922 -50.200.192.0/19 7922 -50.200.224.0/21 7922 -50.200.232.0/24 7922 -50.200.233.0/24 33378 -50.200.234.0/23 7922 -50.200.236.0/22 7922 -50.200.240.0/20 7922 -50.201.0.0/22 7922 -50.201.4.0/23 7922 -50.201.6.0/24 54617 -50.201.7.0/24 7922 -50.201.8.0/21 7922 -50.201.16.0/23 7922 -50.201.18.0/24 7015 -50.201.19.0/24 7922 -50.201.20.0/22 7922 -50.201.24.0/21 7922 -50.201.32.0/20 7922 -50.201.48.0/22 7922 -50.201.52.0/24 7922 -50.201.53.0/24 62870 -50.201.54.0/23 7922 -50.201.56.0/24 32549 -50.201.57.0/24 7922 -50.201.58.0/23 7922 -50.201.60.0/23 7922 -50.201.62.0/24 26912 -50.201.63.0/24 7922 -50.201.64.0/23 7922 -50.201.66.0/24 46675 -50.201.67.0/24 7922 -50.201.68.0/22 7922 -50.201.72.0/21 7922 -50.201.80.0/20 7922 -50.201.96.0/22 7922 -50.201.100.0/24 7922 -50.201.101.0/24 18744 -50.201.102.0/24 18744 -50.201.103.0/24 7922 -50.201.104.0/22 7922 -50.201.108.0/23 7922 -50.201.110.0/24 7922 -50.201.111.0/24 54870 -50.201.112.0/22 7922 -50.201.116.0/23 7922 -50.201.118.0/24 7922 -50.201.119.0/24 33491 -50.201.120.0/21 7922 -50.201.128.0/21 7922 -50.201.136.0/24 7922 -50.201.137.0/24 30248 -50.201.138.0/23 7922 -50.201.140.0/22 7922 -50.201.144.0/20 7922 -50.201.160.0/20 7922 -50.201.176.0/22 7922 -50.201.180.0/23 7922 -50.201.182.0/24 7922 -50.201.183.0/24 29873 -50.201.184.0/22 7922 -50.201.188.0/23 7922 -50.201.190.0/24 7922 -50.201.191.0/24 33491 -50.201.192.0/21 7922 -50.201.200.0/22 7922 -50.201.204.0/23 7922 -50.201.206.0/24 7922 -50.201.207.0/24 22688 -50.201.208.0/23 7922 -50.201.210.0/24 7922 -50.201.211.0/24 26028 -50.201.212.0/22 7922 -50.201.216.0/21 7922 -50.201.224.0/21 7922 -50.201.232.0/24 7922 -50.201.233.0/24 32074 -50.201.234.0/23 7922 -50.201.236.0/22 7922 -50.201.240.0/20 7922 -50.202.0.0/21 7922 -50.202.8.0/23 7922 -50.202.10.0/23 29714 -50.202.12.0/22 7922 -50.202.16.0/23 7922 -50.202.18.0/24 7922 -50.202.19.0/24 33491 -50.202.20.0/22 7922 -50.202.24.0/21 7922 -50.202.32.0/22 7922 -50.202.36.0/23 7922 -50.202.38.0/24 11713 -50.202.39.0/24 7922 -50.202.40.0/22 7922 -50.202.44.0/23 7922 -50.202.46.0/23 33491 -50.202.48.0/23 7922 -50.202.50.0/24 32276 -50.202.51.0/24 22928 -50.202.52.0/22 7922 -50.202.56.0/22 7922 -50.202.60.0/24 7922 -50.202.61.0/24 40644 -50.202.62.0/23 7922 -50.202.64.0/22 7922 -50.202.68.0/23 7922 -50.202.70.0/24 12152 -50.202.71.0/24 7922 -50.202.72.0/24 7922 -50.202.73.0/24 33491 -50.202.74.0/23 7922 -50.202.76.0/24 32291 -50.202.77.0/24 7922 -50.202.78.0/23 7922 -50.202.80.0/22 7922 -50.202.84.0/24 7922 -50.202.85.0/24 62868 -50.202.86.0/23 7922 -50.202.88.0/22 7922 -50.202.92.0/23 7922 -50.202.94.0/24 7922 -50.202.95.0/24 13735 -50.202.96.0/20 7922 -50.202.112.0/23 14021 -50.202.114.0/23 7922 -50.202.116.0/22 7922 -50.202.120.0/21 7922 -50.202.128.0/20 7922 -50.202.144.0/21 7922 -50.202.152.0/22 7922 -50.202.156.0/23 7922 -50.202.158.0/24 33491 -50.202.159.0/24 22928 -50.202.160.0/21 7922 -50.202.168.0/22 7922 -50.202.172.0/24 40039 -50.202.173.0/24 7922 -50.202.174.0/23 7922 -50.202.176.0/24 7922 -50.202.177.0/24 393604 -50.202.178.0/23 7922 -50.202.180.0/22 7922 -50.202.184.0/21 7922 -50.202.192.0/20 7922 -50.202.208.0/23 7922 -50.202.210.0/24 7922 -50.202.211.0/24 32072 -50.202.212.0/22 7922 -50.202.216.0/23 7922 -50.202.218.0/24 20381 -50.202.219.0/24 7922 -50.202.220.0/22 7922 -50.202.224.0/21 7922 -50.202.232.0/22 7922 -50.202.236.0/23 7922 -50.202.238.0/24 7922 -50.202.239.0/24 19144 -50.202.240.0/24 26966 -50.202.241.0/24 7922 -50.202.242.0/23 7922 -50.202.244.0/23 7922 -50.202.246.0/24 395707 -50.202.247.0/24 7922 -50.202.248.0/24 7922 -50.202.249.0/24 63487 -50.202.250.0/23 7922 -50.202.252.0/22 7922 -50.203.0.0/23 7922 -50.203.2.0/24 7922 -50.203.3.0/24 32285 -50.203.4.0/22 7922 -50.203.8.0/21 7922 -50.203.16.0/24 7922 -50.203.17.0/24 32749 -50.203.18.0/24 7922 -50.203.19.0/24 33491 -50.203.20.0/22 7922 -50.203.24.0/21 7922 -50.203.32.0/22 7922 -50.203.36.0/24 16539 -50.203.37.0/24 7922 -50.203.38.0/24 53454 -50.203.39.0/24 7922 -50.203.40.0/21 7922 -50.203.48.0/20 7922 -50.203.64.0/20 7922 -50.203.80.0/23 7922 -50.203.82.0/24 46305 -50.203.83.0/24 7922 -50.203.84.0/22 7922 -50.203.88.0/21 7922 -50.203.96.0/21 7922 -50.203.104.0/22 7922 -50.203.108.0/24 19599 -50.203.109.0/24 7922 -50.203.110.0/23 7922 -50.203.112.0/20 7922 -50.203.128.0/21 7922 -50.203.136.0/24 7922 -50.203.137.0/24 46807 -50.203.138.0/23 7922 -50.203.140.0/22 7922 -50.203.144.0/20 7922 -50.203.160.0/23 7922 -50.203.162.0/24 7922 -50.203.163.0/24 23411 -50.203.164.0/23 7922 -50.203.166.0/24 25868 -50.203.167.0/24 7922 -50.203.168.0/23 7922 -50.203.170.0/24 7922 -50.203.171.0/24 33491 -50.203.172.0/23 7922 -50.203.174.0/24 33491 -50.203.175.0/24 7922 -50.203.176.0/20 7922 -50.203.192.0/23 7922 -50.203.194.0/24 7922 -50.203.195.0/24 32688 -50.203.196.0/24 7922 -50.203.197.0/24 54420 -50.203.198.0/23 7922 -50.203.200.0/23 7922 -50.203.202.0/24 33491 -50.203.203.0/24 7922 -50.203.204.0/22 7922 -50.203.208.0/20 7922 -50.203.224.0/21 7922 -50.203.232.0/22 7922 -50.203.236.0/24 7922 -50.203.237.0/24 23412 -50.203.238.0/23 7922 -50.203.240.0/23 7922 -50.203.242.0/24 33491 -50.203.243.0/24 7922 -50.203.244.0/22 7922 -50.203.248.0/24 7922 -50.203.249.0/24 7046 -50.203.250.0/23 7922 -50.203.252.0/22 7922 -50.204.0.0/21 7922 -50.204.8.0/22 7922 -50.204.12.0/24 14711 -50.204.13.0/24 7922 -50.204.14.0/23 7922 -50.204.16.0/22 7922 -50.204.20.0/23 7922 -50.204.22.0/24 7922 -50.204.23.0/24 33491 -50.204.24.0/21 7922 -50.204.32.0/20 7922 -50.204.48.0/21 7922 -50.204.56.0/23 7922 -50.204.58.0/24 7922 -50.204.59.0/24 39942 -50.204.60.0/22 7922 -50.204.64.0/20 7922 -50.204.80.0/24 33491 -50.204.81.0/24 7922 -50.204.82.0/23 7922 -50.204.84.0/22 7922 -50.204.88.0/23 7922 -50.204.90.0/24 7922 -50.204.91.0/24 33491 -50.204.92.0/22 7922 -50.204.96.0/24 7922 -50.204.97.0/24 26998 -50.204.98.0/23 7922 -50.204.100.0/23 7922 -50.204.102.0/24 20381 -50.204.103.0/24 7922 -50.204.104.0/21 7922 -50.204.112.0/23 7922 -50.204.114.0/24 33331 -50.204.115.0/24 7922 -50.204.116.0/22 7922 -50.204.120.0/24 397030 -50.204.121.0/24 7922 -50.204.122.0/23 7922 -50.204.124.0/22 7922 -50.204.128.0/20 7922 -50.204.144.0/24 7922 -50.204.145.0/24 27369 -50.204.146.0/23 7922 -50.204.148.0/22 7922 -50.204.152.0/23 7922 -50.204.154.0/24 7922 -50.204.155.0/24 23408 -50.204.156.0/24 7922 -50.204.157.0/24 393272 -50.204.158.0/24 7922 -50.204.159.0/24 36679 -50.204.160.0/20 7922 -50.204.176.0/21 7922 -50.204.184.0/22 7922 -50.204.188.0/24 7922 -50.204.189.0/24 33491 -50.204.190.0/23 7922 -50.204.192.0/23 7922 -50.204.194.0/24 33491 -50.204.195.0/24 7922 -50.204.196.0/24 395536 -50.204.197.0/24 7922 -50.204.198.0/23 7922 -50.204.200.0/22 7922 -50.204.204.0/24 7922 -50.204.205.0/24 63422 -50.204.206.0/23 7922 -50.204.208.0/20 7922 -50.204.224.0/24 62977 -50.204.225.0/24 7922 -50.204.226.0/23 7922 -50.204.228.0/22 7922 -50.204.232.0/23 7922 -50.204.234.0/24 55086 -50.204.235.0/24 7922 -50.204.236.0/22 7922 -50.204.240.0/20 7922 -50.205.0.0/22 7922 -50.205.4.0/23 7922 -50.205.6.0/24 7922 -50.205.7.0/24 62644 -50.205.8.0/21 7922 -50.205.16.0/21 7922 -50.205.24.0/23 7922 -50.205.26.0/24 18743 -50.205.27.0/24 7922 -50.205.28.0/23 7922 -50.205.30.0/24 7922 -50.205.31.0/24 18743 -50.205.32.0/21 7922 -50.205.40.0/24 7922 -50.205.41.0/24 7016 -50.205.42.0/23 7922 -50.205.44.0/22 7922 -50.205.48.0/22 7922 -50.205.52.0/24 32001 -50.205.53.0/24 7922 -50.205.54.0/23 33491 -50.205.56.0/23 7922 -50.205.58.0/24 33491 -50.205.59.0/24 7922 -50.205.60.0/22 7922 -50.205.64.0/24 7922 -50.205.65.0/24 33378 -50.205.66.0/23 7922 -50.205.68.0/22 7922 -50.205.72.0/24 7922 -50.205.73.0/24 397936 -50.205.74.0/23 7922 -50.205.76.0/22 7922 -50.205.80.0/21 7922 -50.205.88.0/22 7922 -50.205.92.0/24 393722 -50.205.93.0/24 7922 -50.205.94.0/23 7922 -50.205.96.0/20 7922 -50.205.112.0/24 7922 -50.205.113.0/24 23399 -50.205.114.0/23 7922 -50.205.116.0/23 7922 -50.205.118.0/24 32949 -50.205.119.0/24 7922 -50.205.120.0/21 7922 -50.205.128.0/21 7922 -50.205.136.0/22 7922 -50.205.140.0/24 393418 -50.205.141.0/24 7922 -50.205.142.0/23 7922 -50.205.144.0/23 7922 -50.205.146.0/24 7922 -50.205.147.0/24 25846 -50.205.148.0/22 7922 -50.205.152.0/21 7922 -50.205.160.0/24 4922 -50.205.161.0/24 7922 -50.205.162.0/23 7922 -50.205.164.0/23 7922 -50.205.166.0/24 33491 -50.205.167.0/24 7922 -50.205.168.0/24 7922 -50.205.169.0/24 394953 -50.205.170.0/23 7922 -50.205.172.0/22 7922 -50.205.176.0/23 7922 -50.205.178.0/24 7922 -50.205.179.0/24 26453 -50.205.180.0/22 7922 -50.205.184.0/21 7922 -50.205.192.0/23 7922 -50.205.194.0/24 7922 -50.205.195.0/24 27178 -50.205.196.0/22 7922 -50.205.200.0/21 7922 -50.205.208.0/23 7922 -50.205.210.0/24 33261 -50.205.211.0/24 7922 -50.205.212.0/22 7922 -50.205.216.0/24 7922 -50.205.217.0/24 21508 -50.205.218.0/23 7922 -50.205.220.0/22 7922 -50.205.224.0/22 7922 -50.205.228.0/22 7015 -50.205.232.0/21 7922 -50.205.240.0/20 7922 -50.206.0.0/20 7922 -50.206.16.0/21 7922 -50.206.24.0/24 63057 -50.206.25.0/24 7922 -50.206.26.0/23 7922 -50.206.28.0/22 7922 -50.206.32.0/24 7922 -50.206.33.0/24 393426 -50.206.34.0/24 22214 -50.206.35.0/24 7922 -50.206.36.0/22 7922 -50.206.40.0/23 7922 -50.206.42.0/24 22897 -50.206.43.0/24 7922 -50.206.44.0/22 7922 -50.206.48.0/22 7922 -50.206.52.0/24 26419 -50.206.53.0/24 7922 -50.206.54.0/23 7922 -50.206.56.0/22 7922 -50.206.60.0/24 33491 -50.206.61.0/24 7922 -50.206.62.0/23 7922 -50.206.64.0/18 7922 -50.206.128.0/19 7922 -50.206.160.0/23 7922 -50.206.162.0/24 7922 -50.206.163.0/24 63021 -50.206.164.0/22 7922 -50.206.168.0/21 7922 -50.206.176.0/20 7922 -50.206.192.0/21 7922 -50.206.200.0/23 7922 -50.206.202.0/24 393439 -50.206.203.0/24 7922 -50.206.204.0/22 7922 -50.206.208.0/21 7922 -50.206.216.0/23 7922 -50.206.218.0/24 17131 -50.206.219.0/24 7922 -50.206.220.0/24 7922 -50.206.221.0/24 32602 -50.206.222.0/24 7922 -50.206.223.0/24 393505 -50.206.224.0/20 7922 -50.206.240.0/22 7922 -50.206.244.0/24 33652 -50.206.245.0/24 7922 -50.206.246.0/23 7922 -50.206.248.0/23 7922 -50.206.250.0/24 33491 -50.206.251.0/24 7922 -50.206.252.0/23 7922 -50.206.254.0/24 7922 -50.206.255.0/24 17903 -50.207.0.0/21 7922 -50.207.8.0/23 7922 -50.207.10.0/24 53531 -50.207.11.0/24 7922 -50.207.12.0/22 7922 -50.207.16.0/22 7922 -50.207.20.0/23 7922 -50.207.22.0/24 63207 -50.207.23.0/24 7922 -50.207.24.0/21 7922 -50.207.32.0/20 7922 -50.207.48.0/21 7922 -50.207.56.0/22 7922 -50.207.60.0/23 7922 -50.207.62.0/24 7922 -50.207.63.0/24 35961 -50.207.64.0/21 7922 -50.207.72.0/22 7922 -50.207.76.0/24 33491 -50.207.77.0/24 7922 -50.207.78.0/23 7922 -50.207.80.0/20 7922 -50.207.96.0/22 7922 -50.207.100.0/24 393643 -50.207.101.0/24 7922 -50.207.102.0/23 7922 -50.207.104.0/23 7922 -50.207.106.0/24 7922 -50.207.107.0/24 18636 -50.207.108.0/22 7922 -50.207.112.0/20 7922 -50.207.128.0/19 7922 -50.207.160.0/21 7922 -50.207.168.0/24 393786 -50.207.169.0/24 7922 -50.207.170.0/23 7922 -50.207.172.0/22 7922 -50.207.176.0/21 7922 -50.207.184.0/22 7922 -50.207.188.0/24 18661 -50.207.189.0/24 7922 -50.207.190.0/23 7922 -50.207.192.0/23 7922 -50.207.194.0/24 7922 -50.207.195.0/24 33491 -50.207.196.0/22 7922 -50.207.200.0/21 7922 -50.207.208.0/21 7922 -50.207.216.0/24 32770 -50.207.217.0/24 7922 -50.207.218.0/23 7922 -50.207.220.0/23 7922 -50.207.222.0/24 7922 -50.207.223.0/24 63302 -50.207.224.0/23 7922 -50.207.226.0/24 7922 -50.207.227.0/24 63375 -50.207.228.0/22 7922 -50.207.232.0/24 7922 -50.207.233.0/24 33491 -50.207.234.0/23 7922 -50.207.236.0/23 7922 -50.207.238.0/24 7922 -50.207.239.0/24 393843 -50.207.240.0/24 7922 -50.207.241.0/24 393459 -50.207.242.0/23 7922 -50.207.244.0/22 7922 -50.207.248.0/21 7922 -50.208.0.0/13 7922 -50.216.0.0/20 7922 -50.216.16.0/22 7922 -50.216.20.0/23 7922 -50.216.22.0/24 19277 -50.216.23.0/24 7922 -50.216.24.0/21 7922 -50.216.32.0/22 7922 -50.216.36.0/24 33491 -50.216.37.0/24 7922 -50.216.38.0/24 33662 -50.216.39.0/24 7922 -50.216.40.0/24 7922 -50.216.41.0/24 21514 -50.216.42.0/23 7922 -50.216.44.0/22 7922 -50.216.48.0/24 7922 -50.216.49.0/24 397777 -50.216.50.0/23 7922 -50.216.52.0/22 7922 -50.216.56.0/22 7922 -50.216.60.0/24 7922 -50.216.61.0/24 397527 -50.216.62.0/23 7922 -50.216.64.0/20 7922 -50.216.80.0/21 7922 -50.216.88.0/22 7922 -50.216.92.0/23 7922 -50.216.94.0/24 33491 -50.216.95.0/24 7922 -50.216.96.0/19 7922 -50.216.128.0/17 7922 -50.217.0.0/16 7922 -50.218.0.0/15 7922 -50.220.0.0/22 7922 -50.220.4.0/22 33491 -50.220.8.0/22 395581 -50.220.12.0/22 7922 -50.220.16.0/20 7922 -50.220.32.0/21 7922 -50.220.40.0/24 22024 -50.220.41.0/24 7922 -50.220.42.0/23 7922 -50.220.44.0/22 7922 -50.220.48.0/23 7922 -50.220.50.0/24 7922 -50.220.51.0/24 397936 -50.220.52.0/22 7922 -50.220.56.0/21 7922 -50.220.64.0/18 7922 -50.220.128.0/17 7922 -50.221.0.0/16 7922 -50.222.0.0/22 7922 -50.222.4.0/24 7922 -50.222.5.0/24 397567 -50.222.6.0/23 7922 -50.222.8.0/21 7922 -50.222.16.0/21 7922 -50.222.24.0/23 7922 -50.222.26.0/24 33651 -50.222.27.0/24 7922 -50.222.28.0/24 397764 -50.222.29.0/24 7922 -50.222.30.0/23 7922 -50.222.32.0/19 7922 -50.222.64.0/19 36732 -50.222.96.0/19 7922 -50.222.128.0/17 7922 -50.223.0.0/16 7922 -50.224.0.0/23 7922 -50.224.2.0/24 393708 -50.224.3.0/24 7922 -50.224.4.0/23 7922 -50.224.6.0/24 7922 -50.224.7.0/24 394557 -50.224.8.0/22 7922 -50.224.12.0/24 7922 -50.224.13.0/24 394547 -50.224.14.0/23 7922 -50.224.16.0/22 7922 -50.224.20.0/24 33491 -50.224.21.0/24 7922 -50.224.22.0/23 7922 -50.224.24.0/23 7922 -50.224.26.0/24 7922 -50.224.27.0/24 33491 -50.224.28.0/22 7922 -50.224.32.0/24 7922 -50.224.33.0/24 394774 -50.224.34.0/23 7922 -50.224.36.0/22 7922 -50.224.40.0/23 7922 -50.224.42.0/24 7922 -50.224.43.0/24 32108 -50.224.44.0/24 32108 -50.224.45.0/24 33491 -50.224.46.0/23 7922 -50.224.48.0/22 7922 -50.224.52.0/23 7922 -50.224.54.0/24 26038 -50.224.55.0/24 7922 -50.224.56.0/21 7922 -50.224.64.0/22 7922 -50.224.68.0/24 7922 -50.224.69.0/24 395269 -50.224.70.0/23 7922 -50.224.72.0/23 7922 -50.224.74.0/23 33491 -50.224.76.0/22 7922 -50.224.80.0/22 7922 -50.224.84.0/24 7922 -50.224.85.0/24 64203 -50.224.86.0/23 7922 -50.224.88.0/21 7922 -50.224.96.0/22 7922 -50.224.100.0/23 7922 -50.224.102.0/24 7922 -50.224.103.0/24 33491 -50.224.104.0/21 7922 -50.224.112.0/21 7922 -50.224.120.0/24 395009 -50.224.121.0/24 7922 -50.224.122.0/23 7922 -50.224.124.0/23 7922 -50.224.126.0/23 6254 -50.224.128.0/21 7922 -50.224.136.0/22 7922 -50.224.140.0/23 33491 -50.224.142.0/23 7922 -50.224.144.0/21 7922 -50.224.152.0/24 395270 -50.224.153.0/24 7922 -50.224.154.0/23 7922 -50.224.156.0/22 7922 -50.224.160.0/19 7922 -50.224.192.0/23 7922 -50.224.194.0/24 33491 -50.224.195.0/24 7922 -50.224.196.0/22 7922 -50.224.200.0/24 7922 -50.224.201.0/24 36776 -50.224.202.0/24 11261 -50.224.203.0/24 7922 -50.224.204.0/22 7922 -50.224.208.0/21 7922 -50.224.216.0/23 7922 -50.224.218.0/24 22032 -50.224.219.0/24 7922 -50.224.220.0/24 7922 -50.224.221.0/24 7725 -50.224.222.0/24 7922 -50.224.223.0/24 33662 -50.224.224.0/20 7922 -50.224.240.0/22 7922 -50.224.244.0/23 7922 -50.224.246.0/24 395293 -50.224.247.0/24 7922 -50.224.248.0/22 7922 -50.224.252.0/23 7922 -50.224.254.0/23 40805 -50.225.0.0/21 7922 -50.225.8.0/23 33659 -50.225.10.0/23 7922 -50.225.12.0/22 7922 -50.225.16.0/21 7922 -50.225.24.0/22 7922 -50.225.28.0/23 33491 -50.225.30.0/23 7922 -50.225.32.0/22 7922 -50.225.36.0/24 7016 -50.225.37.0/24 33287 -50.225.38.0/23 7922 -50.225.40.0/24 7922 -50.225.41.0/24 394304 -50.225.42.0/23 7922 -50.225.44.0/24 394304 -50.225.45.0/24 7922 -50.225.46.0/23 7922 -50.225.48.0/21 7922 -50.225.56.0/22 7922 -50.225.60.0/22 32669 -50.225.64.0/21 7922 -50.225.72.0/23 7922 -50.225.74.0/24 394767 -50.225.75.0/24 7922 -50.225.76.0/22 7922 -50.225.80.0/22 7922 -50.225.84.0/23 7922 -50.225.86.0/24 7922 -50.225.87.0/24 20066 -50.225.88.0/24 33491 -50.225.89.0/24 7922 -50.225.90.0/24 394498 -50.225.91.0/24 7922 -50.225.92.0/23 7922 -50.225.94.0/24 33491 -50.225.95.0/24 7922 -50.225.96.0/21 7922 -50.225.104.0/21 62658 -50.225.112.0/20 7922 -50.225.128.0/20 7922 -50.225.144.0/21 7922 -50.225.152.0/22 7922 -50.225.156.0/24 7922 -50.225.157.0/24 33491 -50.225.158.0/23 7922 -50.225.160.0/21 7922 -50.225.168.0/23 7922 -50.225.170.0/24 7922 -50.225.171.0/24 13744 -50.225.172.0/23 7922 -50.225.174.0/24 396115 -50.225.175.0/24 7922 -50.225.176.0/20 7922 -50.225.192.0/23 7922 -50.225.194.0/24 395772 -50.225.195.0/24 7922 -50.225.196.0/23 7922 -50.225.198.0/24 7922 -50.225.199.0/24 54321 -50.225.200.0/21 7922 -50.225.208.0/21 7922 -50.225.216.0/24 7922 -50.225.217.0/24 30521 -50.225.218.0/23 7922 -50.225.220.0/22 7922 -50.225.224.0/21 7922 -50.225.232.0/22 7922 -50.225.236.0/23 7922 -50.225.238.0/24 7922 -50.225.239.0/24 395976 -50.225.240.0/23 7922 -50.225.242.0/24 396017 -50.225.243.0/24 7922 -50.225.244.0/24 396019 -50.225.245.0/24 7922 -50.225.246.0/24 395974 -50.225.247.0/24 7922 -50.225.248.0/24 395980 -50.225.249.0/24 396021 -50.225.250.0/23 7922 -50.225.252.0/22 7922 -50.226.0.0/23 7922 -50.226.2.0/24 393305 -50.226.3.0/24 4374 -50.226.4.0/22 7922 -50.226.8.0/21 7922 -50.226.16.0/22 7922 -50.226.20.0/23 7922 -50.226.22.0/24 395835 -50.226.23.0/24 7922 -50.226.24.0/23 7922 -50.226.26.0/24 395868 -50.226.27.0/24 7922 -50.226.28.0/24 7922 -50.226.29.0/24 395820 -50.226.30.0/23 7922 -50.226.32.0/23 7922 -50.226.34.0/24 7922 -50.226.35.0/24 33491 -50.226.36.0/22 7922 -50.226.40.0/22 7922 -50.226.44.0/24 36717 -50.226.45.0/24 7922 -50.226.46.0/23 7922 -50.226.48.0/21 7922 -50.226.56.0/22 7922 -50.226.60.0/23 7922 -50.226.62.0/24 7922 -50.226.63.0/24 63264 -50.226.64.0/22 7922 -50.226.68.0/23 7922 -50.226.70.0/24 33668 -50.226.71.0/24 7922 -50.226.72.0/21 7922 -50.226.80.0/20 7922 -50.226.96.0/24 396210 -50.226.97.0/24 7922 -50.226.98.0/23 7922 -50.226.100.0/23 7922 -50.226.102.0/23 63402 -50.226.104.0/22 7922 -50.226.108.0/23 7922 -50.226.110.0/24 7922 -50.226.111.0/24 396178 -50.226.112.0/20 7922 -50.226.128.0/20 7922 -50.226.144.0/24 7922 -50.226.145.0/24 396337 -50.226.146.0/23 7922 -50.226.148.0/22 7922 -50.226.152.0/22 7922 -50.226.156.0/24 7922 -50.226.157.0/24 33491 -50.226.158.0/23 7922 -50.226.160.0/20 7922 -50.226.176.0/23 7922 -50.226.178.0/24 7922 -50.226.179.0/24 396332 -50.226.180.0/22 7922 -50.226.184.0/23 7922 -50.226.186.0/24 396036 -50.226.187.0/24 7922 -50.226.188.0/22 7922 -50.226.192.0/19 7922 -50.226.224.0/24 396272 -50.226.225.0/24 395892 -50.226.226.0/23 7922 -50.226.228.0/23 7922 -50.226.230.0/24 46807 -50.226.231.0/24 7922 -50.226.232.0/23 7922 -50.226.234.0/24 46807 -50.226.235.0/24 7922 -50.226.236.0/22 7922 -50.226.240.0/23 7922 -50.226.242.0/24 7922 -50.226.243.0/24 395858 -50.226.244.0/22 7922 -50.226.248.0/22 7922 -50.226.252.0/24 397612 -50.226.253.0/24 7922 -50.226.254.0/23 7922 -50.227.0.0/23 6343 -50.227.2.0/23 7922 -50.227.4.0/22 7922 -50.227.8.0/24 36690 -50.227.9.0/24 7922 -50.227.10.0/23 7922 -50.227.12.0/22 7922 -50.227.16.0/21 7922 -50.227.24.0/22 7922 -50.227.28.0/23 7922 -50.227.30.0/24 396489 -50.227.31.0/24 7922 -50.227.32.0/22 7922 -50.227.36.0/23 7922 -50.227.38.0/24 36271 -50.227.39.0/24 7922 -50.227.40.0/21 7922 -50.227.48.0/20 7922 -50.227.64.0/20 7922 -50.227.80.0/24 7922 -50.227.81.0/24 36457 -50.227.82.0/23 7922 -50.227.84.0/23 7922 -50.227.86.0/24 7922 -50.227.87.0/24 29891 -50.227.88.0/22 7922 -50.227.92.0/23 7922 -50.227.94.0/24 394498 -50.227.95.0/24 7922 -50.227.96.0/23 7922 -50.227.98.0/24 7922 -50.227.99.0/24 394621 -50.227.100.0/23 7922 -50.227.102.0/24 13983 -50.227.103.0/24 7922 -50.227.104.0/22 7922 -50.227.108.0/23 7922 -50.227.110.0/24 7922 -50.227.111.0/24 14337 -50.227.112.0/21 7922 -50.227.120.0/23 7922 -50.227.122.0/24 15099 -50.227.123.0/24 7922 -50.227.124.0/22 396293 -50.227.128.0/21 7922 -50.227.136.0/22 7922 -50.227.140.0/24 40834 -50.227.141.0/24 7922 -50.227.142.0/24 33652 -50.227.143.0/24 7922 -50.227.144.0/20 7922 -50.227.160.0/20 7922 -50.227.176.0/23 7922 -50.227.178.0/24 63439 -50.227.179.0/24 7922 -50.227.180.0/22 7922 -50.227.184.0/21 7922 -50.227.192.0/24 7922 -50.227.193.0/24 395132 -50.227.194.0/23 7922 -50.227.196.0/23 7922 -50.227.198.0/23 397911 -50.227.200.0/21 7922 -50.227.208.0/21 7922 -50.227.216.0/22 7922 -50.227.220.0/22 27288 -50.227.224.0/22 27288 -50.227.228.0/22 7922 -50.227.232.0/24 17035 -50.227.233.0/24 7922 -50.227.234.0/23 23531 -50.227.236.0/23 7922 -50.227.238.0/24 7922 -50.227.239.0/24 33491 -50.227.240.0/23 7922 -50.227.242.0/24 22289 -50.227.243.0/24 7922 -50.227.244.0/22 7922 -50.227.248.0/24 26436 -50.227.249.0/24 7922 -50.227.250.0/23 7922 -50.227.252.0/23 33491 -50.227.254.0/23 7922 -50.228.0.0/18 7922 -50.228.64.0/22 7922 -50.228.68.0/24 7922 -50.228.69.0/24 397284 -50.228.70.0/23 7922 -50.228.72.0/21 7922 -50.228.80.0/21 7922 -50.228.88.0/24 395488 -50.228.89.0/24 7922 -50.228.90.0/23 7922 -50.228.92.0/22 7922 -50.228.96.0/24 7922 -50.228.97.0/24 33491 -50.228.98.0/23 7922 -50.228.100.0/22 7922 -50.228.104.0/22 7922 -50.228.108.0/24 12211 -50.228.109.0/24 7922 -50.228.110.0/23 7922 -50.228.112.0/21 7922 -50.228.120.0/24 7922 -50.228.121.0/24 397380 -50.228.122.0/23 7922 -50.228.124.0/22 7922 -50.228.128.0/23 7922 -50.228.130.0/24 33651 -50.228.131.0/24 7922 -50.228.132.0/22 7922 -50.228.136.0/21 7922 -50.228.144.0/20 54040 -50.228.160.0/22 7922 -50.228.164.0/23 7922 -50.228.166.0/24 46847 -50.228.167.0/24 7922 -50.228.168.0/21 7922 -50.228.176.0/24 7922 -50.228.177.0/24 7015 -50.228.178.0/23 7922 -50.228.180.0/24 397062 -50.228.181.0/24 7922 -50.228.182.0/23 7922 -50.228.184.0/24 397167 -50.228.185.0/24 7922 -50.228.186.0/23 7922 -50.228.188.0/22 7922 -50.228.192.0/18 7922 -50.229.0.0/16 7922 -50.230.0.0/22 7922 -50.230.4.0/23 7922 -50.230.6.0/24 63402 -50.230.7.0/24 7922 -50.230.8.0/22 7922 -50.230.12.0/24 7922 -50.230.13.0/24 397487 -50.230.14.0/23 7922 -50.230.16.0/20 7922 -50.230.32.0/19 7922 -50.230.64.0/18 7922 -50.230.128.0/22 7922 -50.230.132.0/24 394993 -50.230.133.0/24 7922 -50.230.134.0/23 7922 -50.230.136.0/21 7922 -50.230.144.0/20 17035 -50.230.160.0/20 7922 -50.230.176.0/23 7922 -50.230.178.0/24 7922 -50.230.179.0/24 14950 -50.230.180.0/22 7922 -50.230.184.0/21 7922 -50.230.192.0/18 7922 -50.231.0.0/19 7922 -50.231.32.0/22 7922 -50.231.36.0/24 33491 -50.231.37.0/24 7922 -50.231.38.0/23 7922 -50.231.40.0/21 7922 -50.231.48.0/20 7922 -50.231.64.0/18 7922 -50.231.128.0/17 7922 -50.232.0.0/20 7922 -50.232.16.0/21 7922 -50.232.24.0/24 63206 -50.232.25.0/24 7922 -50.232.26.0/23 7922 -50.232.28.0/22 7922 -50.232.32.0/21 7922 -50.232.40.0/22 7922 -50.232.44.0/24 7922 -50.232.45.0/24 26696 -50.232.46.0/23 7922 -50.232.48.0/21 7922 -50.232.56.0/24 20310 -50.232.57.0/24 7922 -50.232.58.0/23 7922 -50.232.60.0/22 7922 -50.232.64.0/22 7922 -50.232.68.0/23 7922 -50.232.70.0/24 40101 -50.232.71.0/24 7922 -50.232.72.0/23 7922 -50.232.74.0/24 33491 -50.232.75.0/24 7922 -50.232.76.0/22 7922 -50.232.80.0/21 7922 -50.232.88.0/24 7922 -50.232.89.0/24 393696 -50.232.90.0/23 7922 -50.232.92.0/24 7922 -50.232.93.0/24 33491 -50.232.94.0/24 7922 -50.232.95.0/24 33491 -50.232.96.0/22 7922 -50.232.100.0/23 7922 -50.232.102.0/24 27421 -50.232.103.0/24 7922 -50.232.104.0/21 7922 -50.232.112.0/24 7922 -50.232.113.0/24 55200 -50.232.114.0/23 7922 -50.232.116.0/23 7922 -50.232.118.0/24 7922 -50.232.119.0/24 29880 -50.232.120.0/22 7922 -50.232.124.0/23 7922 -50.232.126.0/24 13520 -50.232.127.0/24 7922 -50.232.128.0/21 7922 -50.232.136.0/23 7922 -50.232.138.0/24 40145 -50.232.139.0/24 7922 -50.232.140.0/23 7922 -50.232.142.0/24 33491 -50.232.143.0/24 7922 -50.232.144.0/20 7922 -50.232.160.0/20 7922 -50.232.176.0/24 33491 -50.232.177.0/24 7922 -50.232.178.0/23 7922 -50.232.180.0/22 7922 -50.232.184.0/21 7922 -50.232.192.0/23 7922 -50.232.194.0/24 7922 -50.232.195.0/24 33491 -50.232.196.0/22 7922 -50.232.200.0/21 7922 -50.232.208.0/20 7922 -50.232.224.0/21 7922 -50.232.232.0/24 396322 -50.232.233.0/24 7922 -50.232.234.0/23 7922 -50.232.236.0/22 7922 -50.232.240.0/24 7922 -50.232.241.0/24 393781 -50.232.242.0/23 7922 -50.232.244.0/22 7922 -50.232.248.0/21 7922 -50.233.0.0/21 7922 -50.233.8.0/22 33491 -50.233.12.0/22 7922 -50.233.16.0/20 7922 -50.233.32.0/20 7922 -50.233.48.0/21 7922 -50.233.56.0/23 7922 -50.233.58.0/24 33491 -50.233.59.0/24 7922 -50.233.60.0/23 7922 -50.233.62.0/24 7922 -50.233.63.0/24 394208 -50.233.64.0/21 7922 -50.233.72.0/22 7922 -50.233.76.0/24 26840 -50.233.77.0/24 7922 -50.233.78.0/23 7922 -50.233.80.0/24 7922 -50.233.81.0/24 394132 -50.233.82.0/23 7922 -50.233.84.0/22 7922 -50.233.88.0/22 7922 -50.233.92.0/24 7922 -50.233.93.0/24 33491 -50.233.94.0/23 7922 -50.233.96.0/22 7922 -50.233.100.0/24 7922 -50.233.101.0/24 394156 -50.233.102.0/23 7922 -50.233.104.0/23 7922 -50.233.106.0/24 7922 -50.233.107.0/24 394174 -50.233.108.0/24 7922 -50.233.109.0/24 26411 -50.233.110.0/23 7922 -50.233.112.0/23 7922 -50.233.114.0/24 15023 -50.233.115.0/24 7922 -50.233.116.0/22 7922 -50.233.120.0/24 7922 -50.233.121.0/24 13780 -50.233.122.0/23 7922 -50.233.124.0/22 7922 -50.233.128.0/23 7922 -50.233.130.0/24 31836 -50.233.131.0/24 7922 -50.233.132.0/23 7922 -50.233.134.0/24 62730 -50.233.135.0/24 7922 -50.233.136.0/21 7922 -50.233.144.0/20 7922 -50.233.160.0/24 394662 -50.233.161.0/24 7922 -50.233.162.0/23 7922 -50.233.164.0/22 7922 -50.233.168.0/23 7922 -50.233.170.0/24 7922 -50.233.171.0/24 46740 -50.233.172.0/22 7922 -50.233.176.0/23 7922 -50.233.178.0/24 7922 -50.233.179.0/24 394754 -50.233.180.0/22 7922 -50.233.184.0/21 7922 -50.233.192.0/21 7922 -50.233.200.0/22 7922 -50.233.204.0/23 7922 -50.233.206.0/23 11212 -50.233.208.0/22 7922 -50.233.212.0/24 7922 -50.233.213.0/24 7015 -50.233.214.0/23 394063 -50.233.216.0/24 33491 -50.233.217.0/24 7922 -50.233.218.0/23 7922 -50.233.220.0/22 7922 -50.233.224.0/21 7922 -50.233.232.0/24 33173 -50.233.233.0/24 7922 -50.233.234.0/24 17117 -50.233.235.0/24 7922 -50.233.236.0/22 7922 -50.233.240.0/22 7922 -50.233.244.0/23 7922 -50.233.246.0/24 7922 -50.233.247.0/24 33491 -50.233.248.0/21 7922 -50.234.0.0/22 7922 -50.234.4.0/23 7922 -50.234.6.0/24 23172 -50.234.7.0/24 7922 -50.234.8.0/23 7922 -50.234.10.0/24 394412 -50.234.11.0/24 7922 -50.234.12.0/24 394115 -50.234.13.0/24 7922 -50.234.14.0/23 7922 -50.234.16.0/20 7922 -50.234.32.0/21 7922 -50.234.40.0/23 7922 -50.234.42.0/24 394604 -50.234.43.0/24 7922 -50.234.44.0/24 46807 -50.234.45.0/24 54883 -50.234.46.0/23 7922 -50.234.48.0/20 7922 -50.234.64.0/23 7922 -50.234.66.0/24 7922 -50.234.67.0/24 394390 -50.234.68.0/22 7922 -50.234.72.0/21 7922 -50.234.80.0/21 7922 -50.234.88.0/22 7922 -50.234.92.0/24 394535 -50.234.93.0/24 7922 -50.234.94.0/23 7922 -50.234.96.0/20 7922 -50.234.112.0/24 7922 -50.234.113.0/24 26820 -50.234.114.0/24 7922 -50.234.115.0/24 30067 -50.234.116.0/22 7922 -50.234.120.0/21 7922 -50.234.128.0/21 7922 -50.234.136.0/24 395676 -50.234.137.0/24 395680 -50.234.138.0/23 7922 -50.234.140.0/24 7922 -50.234.141.0/24 33491 -50.234.142.0/23 7922 -50.234.144.0/24 395847 -50.234.145.0/24 7922 -50.234.146.0/24 395691 -50.234.147.0/24 7922 -50.234.148.0/22 7922 -50.234.152.0/21 7922 -50.234.160.0/22 7922 -50.234.164.0/24 395420 -50.234.165.0/24 395882 -50.234.166.0/23 7922 -50.234.168.0/21 7922 -50.234.176.0/22 7922 -50.234.180.0/24 395928 -50.234.181.0/24 7922 -50.234.182.0/23 7922 -50.234.184.0/22 7922 -50.234.188.0/24 7922 -50.234.189.0/24 7015 -50.234.190.0/23 7922 -50.234.192.0/22 7922 -50.234.196.0/23 7922 -50.234.198.0/24 396307 -50.234.199.0/24 7922 -50.234.200.0/21 7922 -50.234.208.0/23 7922 -50.234.210.0/24 7922 -50.234.211.0/24 13799 -50.234.212.0/23 396204 -50.234.214.0/23 7922 -50.234.216.0/21 7922 -50.234.224.0/22 7922 -50.234.228.0/23 7922 -50.234.230.0/24 395979 -50.234.231.0/24 7922 -50.234.232.0/21 7922 -50.234.240.0/22 7922 -50.234.244.0/23 7922 -50.234.246.0/23 396023 -50.234.248.0/23 7922 -50.234.250.0/24 17035 -50.234.251.0/24 7922 -50.234.252.0/22 7922 -50.235.0.0/23 7922 -50.235.2.0/24 7922 -50.235.3.0/24 40774 -50.235.4.0/22 7922 -50.235.8.0/21 7922 -50.235.16.0/23 7922 -50.235.18.0/24 394782 -50.235.19.0/24 7922 -50.235.20.0/22 7922 -50.235.24.0/23 7922 -50.235.26.0/24 7922 -50.235.27.0/24 394627 -50.235.28.0/22 7922 -50.235.32.0/23 33491 -50.235.34.0/23 7922 -50.235.36.0/22 7922 -50.235.40.0/21 7922 -50.235.48.0/21 7922 -50.235.56.0/22 7922 -50.235.60.0/23 7922 -50.235.62.0/24 7922 -50.235.63.0/24 394930 -50.235.64.0/19 7922 -50.235.96.0/24 33491 -50.235.97.0/24 7922 -50.235.98.0/23 7922 -50.235.100.0/22 7922 -50.235.104.0/21 7922 -50.235.112.0/20 7922 -50.235.128.0/22 7922 -50.235.132.0/23 7922 -50.235.134.0/24 7922 -50.235.135.0/24 394845 -50.235.136.0/21 7922 -50.235.144.0/24 7922 -50.235.145.0/24 394136 -50.235.146.0/23 7922 -50.235.148.0/23 7922 -50.235.150.0/24 7922 -50.235.151.0/24 7725 -50.235.152.0/23 7922 -50.235.154.0/24 7922 -50.235.155.0/24 33491 -50.235.156.0/22 7922 -50.235.160.0/24 7922 -50.235.161.0/24 395083 -50.235.162.0/23 7922 -50.235.164.0/22 7922 -50.235.168.0/23 7922 -50.235.170.0/24 396176 -50.235.171.0/24 7922 -50.235.172.0/23 7922 -50.235.174.0/24 7922 -50.235.175.0/24 395334 -50.235.176.0/20 7922 -50.235.192.0/22 7922 -50.235.196.0/24 7922 -50.235.197.0/24 23296 -50.235.198.0/24 46109 -50.235.199.0/24 7922 -50.235.200.0/22 7922 -50.235.204.0/24 7922 -50.235.205.0/24 395614 -50.235.206.0/23 7922 -50.235.208.0/21 7922 -50.235.216.0/23 7922 -50.235.218.0/24 395503 -50.235.219.0/24 7922 -50.235.220.0/22 7922 -50.235.224.0/20 7922 -50.235.240.0/23 7922 -50.235.242.0/24 7922 -50.235.243.0/24 35962 -50.235.244.0/22 7922 -50.235.248.0/21 7922 -50.236.0.0/21 7922 -50.236.8.0/23 7922 -50.236.10.0/24 7922 -50.236.11.0/24 18860 -50.236.12.0/22 7922 -50.236.16.0/23 7922 -50.236.18.0/24 393776 -50.236.19.0/24 7922 -50.236.20.0/22 7922 -50.236.24.0/22 7922 -50.236.28.0/24 18729 -50.236.29.0/24 7922 -50.236.30.0/23 7922 -50.236.32.0/21 7922 -50.236.40.0/22 7922 -50.236.44.0/24 7922 -50.236.45.0/24 31927 -50.236.46.0/23 7922 -50.236.48.0/23 7922 -50.236.50.0/24 18741 -50.236.51.0/24 7922 -50.236.52.0/22 7922 -50.236.56.0/22 7922 -50.236.60.0/24 7922 -50.236.61.0/24 396456 -50.236.62.0/24 396308 -50.236.63.0/24 7922 -50.236.64.0/22 7922 -50.236.68.0/23 7922 -50.236.70.0/24 27178 -50.236.71.0/24 7922 -50.236.72.0/22 7922 -50.236.76.0/24 11200 -50.236.77.0/24 7922 -50.236.78.0/23 7922 -50.236.80.0/20 7922 -50.236.96.0/21 7922 -50.236.104.0/22 7922 -50.236.108.0/23 7922 -50.236.110.0/24 29891 -50.236.111.0/24 7922 -50.236.112.0/20 7922 -50.236.128.0/22 7922 -50.236.132.0/23 7922 -50.236.134.0/24 7922 -50.236.135.0/24 30484 -50.236.136.0/22 7922 -50.236.140.0/23 7922 -50.236.142.0/24 7922 -50.236.143.0/24 26758 -50.236.144.0/24 12250 -50.236.145.0/24 7922 -50.236.146.0/24 7922 -50.236.147.0/24 14388 -50.236.148.0/24 7922 -50.236.149.0/24 13484 -50.236.150.0/23 7922 -50.236.152.0/22 7922 -50.236.156.0/23 7922 -50.236.158.0/24 19596 -50.236.159.0/24 7922 -50.236.160.0/19 7922 -50.236.192.0/21 7922 -50.236.200.0/22 7922 -50.236.204.0/22 26038 -50.236.208.0/22 7922 -50.236.212.0/24 4579 -50.236.213.0/24 7922 -50.236.214.0/24 16785 -50.236.215.0/24 7922 -50.236.216.0/21 7922 -50.236.224.0/22 7922 -50.236.228.0/23 7922 -50.236.230.0/24 7922 -50.236.231.0/24 2 -50.236.232.0/23 7922 -50.236.234.0/24 20458 -50.236.235.0/24 7922 -50.236.236.0/22 7922 -50.236.240.0/24 7922 -50.236.241.0/24 12230 -50.236.242.0/24 7922 -50.236.243.0/24 54293 -50.236.244.0/22 7922 -50.236.248.0/21 7922 -50.237.0.0/24 46131 -50.237.1.0/24 7922 -50.237.2.0/23 7922 -50.237.4.0/22 7922 -50.237.8.0/24 7922 -50.237.9.0/24 46998 -50.237.10.0/23 7922 -50.237.12.0/24 33491 -50.237.13.0/24 7922 -50.237.14.0/23 7922 -50.237.16.0/20 7922 -50.237.32.0/22 7922 -50.237.36.0/23 7922 -50.237.38.0/24 7922 -50.237.39.0/24 33491 -50.237.40.0/24 7922 -50.237.41.0/24 22007 -50.237.42.0/23 7922 -50.237.44.0/22 7922 -50.237.48.0/23 7922 -50.237.50.0/24 7922 -50.237.51.0/24 396849 -50.237.52.0/22 7922 -50.237.56.0/21 7922 -50.237.64.0/20 7922 -50.237.80.0/24 54568 -50.237.81.0/24 7922 -50.237.82.0/23 7922 -50.237.84.0/22 7922 -50.237.88.0/23 7922 -50.237.90.0/24 7922 -50.237.91.0/24 394156 -50.237.92.0/24 394156 -50.237.93.0/24 7922 -50.237.94.0/23 7922 -50.237.96.0/21 7922 -50.237.104.0/22 7922 -50.237.108.0/23 7922 -50.237.110.0/24 7922 -50.237.111.0/24 33491 -50.237.112.0/24 33491 -50.237.113.0/24 7922 -50.237.114.0/23 7922 -50.237.116.0/24 54308 -50.237.117.0/24 7922 -50.237.118.0/23 7922 -50.237.120.0/24 30553 -50.237.121.0/24 7922 -50.237.122.0/23 7922 -50.237.124.0/22 7922 -50.237.128.0/22 7922 -50.237.132.0/24 53775 -50.237.133.0/24 7922 -50.237.134.0/23 7922 -50.237.136.0/21 7922 -50.237.144.0/21 7922 -50.237.152.0/22 7922 -50.237.156.0/24 7922 -50.237.157.0/24 36361 -50.237.158.0/23 7922 -50.237.160.0/21 7922 -50.237.168.0/24 7922 -50.237.169.0/24 33491 -50.237.170.0/23 7922 -50.237.172.0/22 7922 -50.237.176.0/24 33287 -50.237.177.0/24 7922 -50.237.178.0/23 7922 -50.237.180.0/22 7922 -50.237.184.0/21 7922 -50.237.192.0/23 7922 -50.237.194.0/24 7922 -50.237.195.0/24 14388 -50.237.196.0/22 7922 -50.237.200.0/22 32535 -50.237.204.0/22 7922 -50.237.208.0/20 7922 -50.237.224.0/24 20214 -50.237.225.0/24 7922 -50.237.226.0/23 7922 -50.237.228.0/24 7922 -50.237.229.0/24 64287 -50.237.230.0/23 7922 -50.237.232.0/21 7922 -50.237.240.0/24 29864 -50.237.241.0/24 7922 -50.237.242.0/24 7922 -50.237.243.0/24 23472 -50.237.244.0/22 7922 -50.237.248.0/21 7922 -50.238.0.0/22 7922 -50.238.4.0/24 7922 -50.238.5.0/24 53957 -50.238.6.0/23 7922 -50.238.8.0/22 7922 -50.238.12.0/23 7922 -50.238.14.0/24 32407 -50.238.15.0/24 7922 -50.238.16.0/20 7922 -50.238.32.0/22 63483 -50.238.36.0/22 7922 -50.238.40.0/23 7922 -50.238.42.0/24 14816 -50.238.43.0/24 7922 -50.238.44.0/22 7922 -50.238.48.0/21 7922 -50.238.56.0/22 7922 -50.238.60.0/23 7922 -50.238.62.0/24 7922 -50.238.63.0/24 54472 -50.238.64.0/22 7922 -50.238.68.0/24 396967 -50.238.69.0/24 7922 -50.238.70.0/23 7922 -50.238.72.0/21 7922 -50.238.80.0/24 7922 -50.238.81.0/24 33491 -50.238.82.0/23 7922 -50.238.84.0/22 7922 -50.238.88.0/21 7922 -50.238.96.0/20 7922 -50.238.112.0/24 33657 -50.238.113.0/24 7922 -50.238.114.0/24 396897 -50.238.115.0/24 7922 -50.238.116.0/22 7922 -50.238.120.0/23 7922 -50.238.122.0/24 63342 -50.238.123.0/24 7922 -50.238.124.0/23 7922 -50.238.126.0/24 7922 -50.238.127.0/24 33490 -50.238.128.0/22 7922 -50.238.132.0/24 7922 -50.238.133.0/24 33651 -50.238.134.0/23 7922 -50.238.136.0/21 7922 -50.238.144.0/20 7922 -50.238.160.0/20 7922 -50.238.176.0/22 7922 -50.238.180.0/23 7922 -50.238.182.0/24 33287 -50.238.183.0/24 7922 -50.238.184.0/21 7922 -50.238.192.0/20 7922 -50.238.208.0/23 7922 -50.238.210.0/24 7922 -50.238.211.0/24 53985 -50.238.212.0/22 7922 -50.238.216.0/21 7922 -50.238.224.0/20 7922 -50.238.240.0/21 7922 -50.238.248.0/23 7922 -50.238.250.0/24 7922 -50.238.251.0/24 33491 -50.238.252.0/22 7922 -50.239.0.0/24 397062 -50.239.1.0/24 7922 -50.239.2.0/23 7922 -50.239.4.0/22 7922 -50.239.8.0/23 7922 -50.239.10.0/25 7922 -50.239.10.128/27 7922 -50.239.10.160/29 7922 -50.239.10.168/30 7922 -50.239.10.172/31 7922 -50.239.10.175/32 7922 -50.239.10.176/28 7922 -50.239.10.192/26 7922 -50.239.11.0/24 7922 -50.239.12.0/24 7922 -50.239.13.0/24 26963 -50.239.14.0/23 7922 -50.239.16.0/21 7922 -50.239.24.0/22 7922 -50.239.28.0/24 7922 -50.239.29.0/24 63120 -50.239.30.0/23 7922 -50.239.32.0/21 7922 -50.239.40.0/22 7922 -50.239.44.0/23 7922 -50.239.46.0/24 393776 -50.239.47.0/24 7922 -50.239.48.0/21 7922 -50.239.56.0/24 7922 -50.239.57.0/24 17060 -50.239.58.0/23 7922 -50.239.60.0/22 7922 -50.239.64.0/20 7922 -50.239.80.0/22 7922 -50.239.84.0/24 7922 -50.239.85.0/24 33657 -50.239.86.0/23 7922 -50.239.88.0/22 7922 -50.239.92.0/23 7922 -50.239.94.0/24 7922 -50.239.95.0/24 63120 -50.239.96.0/19 7922 -50.239.128.0/22 7922 -50.239.132.0/23 7922 -50.239.134.0/24 26963 -50.239.135.0/24 7922 -50.239.136.0/21 7922 -50.239.144.0/20 7922 -50.239.160.0/24 33491 -50.239.161.0/24 7922 -50.239.162.0/23 7922 -50.239.164.0/22 7922 -50.239.168.0/21 7922 -50.239.176.0/20 7922 -50.239.192.0/21 7922 -50.239.200.0/23 7922 -50.239.202.0/23 30103 -50.239.204.0/24 30103 -50.239.205.0/24 7922 -50.239.206.0/23 7922 -50.239.208.0/24 17117 -50.239.209.0/24 7922 -50.239.210.0/23 7922 -50.239.212.0/22 7922 -50.239.216.0/21 7922 -50.239.224.0/21 7922 -50.239.232.0/22 7922 -50.239.236.0/24 7922 -50.239.237.0/24 397180 -50.239.238.0/23 7922 -50.239.240.0/20 7922 -50.240.0.0/12 7922 -51.4.0.0/15 200517 -51.6.0.0/15 6871 -51.8.0.0/16 200517 -51.9.0.0/16 6871 -51.10.0.0/15 8075 -51.12.0.0/15 8075 -51.14.0.0/16 2856 -51.15.0.0/16 12876 -51.18.0.0/16 200517 -51.19.0.0/16 5607 -51.36.0.0/16 43766 -51.37.0.0/16 15502 -51.38.0.0/16 16276 -51.39.0.0/16 43766 -51.51.0.0/16 8075 -51.52.0.0/17 31655 -51.52.128.0/18 31655 -51.52.192.0/19 31655 -51.52.224.0/20 31655 -51.52.240.0/21 31655 -51.52.248.0/22 60788 -51.52.252.0/22 31655 -51.53.0.0/16 8075 -51.68.0.0/16 16276 -51.75.0.0/16 16276 -51.77.0.0/16 16276 -51.79.0.0/16 16276 -51.81.0.0/16 16276 -51.83.0.0/16 16276 -51.89.0.0/16 16276 -51.91.0.0/16 16276 -51.103.0.0/16 8075 -51.104.0.0/15 8075 -51.107.0.0/16 8075 -51.116.0.0/16 8075 -51.120.0.0/16 8075 -51.124.0.0/16 8075 -51.132.0.0/16 8075 -51.136.0.0/15 8075 -51.138.0.0/16 8075 -51.140.0.0/14 8075 -51.144.0.0/15 8075 -51.146.0.0/16 5607 -51.148.0.0/16 13037 -51.149.0.0/23 43519 -51.149.2.0/24 3257 -51.149.9.0/24 39326 -51.149.10.0/23 39326 -51.149.15.0/24 3549 -51.149.16.0/24 25180 -51.149.254.0/23 43519 -51.154.0.0/16 15796 -51.155.0.0/16 13037 -51.158.0.0/15 12876 -51.161.0.0/17 16276 -51.163.0.0/23 15830 -51.163.2.0/24 208333 -51.163.3.0/24 21371 -51.163.4.0/22 21371 -51.163.8.0/21 21371 -51.163.16.0/20 21371 -51.163.32.0/19 21371 -51.163.64.0/22 15830 -51.163.88.0/22 21371 -51.163.96.0/20 21371 -51.163.120.0/21 21371 -51.163.128.0/20 21371 -51.163.144.0/21 21371 -51.163.152.0/22 21371 -51.163.156.0/23 21371 -51.163.158.0/23 39588 -51.163.160.0/19 47973 -51.163.192.0/18 47973 -51.171.0.0/16 5466 -51.174.0.0/15 29695 -51.178.0.0/16 16276 -51.179.64.0/18 198471 -51.179.128.0/18 42973 -51.179.192.0/19 199055 -51.182.0.0/15 210278 -51.186.0.0/15 210278 -51.190.0.0/15 210278 -51.194.0.0/16 5607 -51.195.0.0/16 16276 -51.198.0.0/15 5607 -51.211.128.0/19 39891 -51.211.160.0/20 25019 -51.211.176.0/21 25019 -51.211.184.0/22 25019 -51.211.192.0/21 25019 -51.211.200.0/22 25019 -51.211.208.0/20 25019 -51.211.224.0/20 25019 -51.218.0.0/16 25019 -51.219.0.0/16 31655 -51.223.0.0/16 25019 -51.235.0.0/16 25019 -51.241.0.0/16 5607 -51.252.0.0/17 39891 -51.253.0.0/17 39891 -51.254.0.0/15 16276 -52.0.0.0/13 14618 -52.8.0.0/13 16509 -52.16.0.0/14 16509 -52.20.0.0/14 14618 -52.24.0.0/13 16509 -52.32.0.0/13 16509 -52.40.0.0/14 16509 -52.44.0.0/15 14618 -52.46.0.0/20 16509 -52.46.16.0/22 16509 -52.46.20.0/24 16509 -52.46.22.0/23 16509 -52.46.24.0/23 16509 -52.46.26.0/24 16509 -52.46.29.0/24 16509 -52.46.30.0/24 16509 -52.46.34.0/23 16509 -52.46.36.0/23 16509 -52.46.38.0/24 16509 -52.46.40.0/23 16509 -52.46.43.0/24 16509 -52.46.44.0/24 16509 -52.46.46.0/23 16509 -52.46.48.0/21 16509 -52.46.56.0/23 16509 -52.46.58.0/24 16509 -52.46.60.0/22 16509 -52.46.64.0/18 16509 -52.46.128.0/19 16509 -52.46.172.0/22 16509 -52.46.176.0/22 8987 -52.46.180.0/22 16509 -52.46.184.0/22 16509 -52.46.188.0/22 7224 -52.46.192.0/19 16509 -52.46.224.0/20 8987 -52.46.240.0/22 16509 -52.46.249.0/24 16509 -52.47.0.0/16 16509 -52.48.0.0/14 16509 -52.52.0.0/15 16509 -52.54.0.0/15 14618 -52.56.0.0/14 16509 -52.60.0.0/16 16509 -52.61.0.0/16 8987 -52.62.0.0/15 16509 -52.64.0.0/14 16509 -52.68.0.0/15 16509 -52.70.0.0/15 14618 -52.72.0.0/15 14618 -52.74.0.0/15 16509 -52.76.0.0/14 16509 -52.80.0.0/15 55960 -52.82.0.0/17 135629 -52.82.128.0/23 135629 -52.82.131.0/24 135629 -52.82.132.0/24 135629 -52.82.134.0/23 135629 -52.82.136.0/24 135629 -52.82.144.0/23 135629 -52.82.148.0/22 135629 -52.82.153.0/24 135629 -52.82.154.0/23 135629 -52.82.156.0/24 135629 -52.82.168.0/24 135629 -52.82.176.0/21 135629 -52.82.187.0/24 135629 -52.82.188.0/23 135629 -52.82.190.0/24 135629 -52.82.192.0/18 135629 -52.83.0.0/16 135629 -52.84.0.0/21 16509 -52.84.8.0/22 16509 -52.84.12.0/23 16509 -52.84.14.0/24 16509 -52.84.26.0/23 16509 -52.84.28.0/22 16509 -52.84.32.0/21 16509 -52.84.40.0/24 16509 -52.84.42.0/23 16509 -52.84.44.0/22 16509 -52.84.48.0/23 16509 -52.84.72.0/24 16509 -52.84.74.0/23 16509 -52.84.76.0/22 16509 -52.84.80.0/22 16509 -52.84.88.0/21 16509 -52.84.96.0/19 16509 -52.84.128.0/22 16509 -52.84.132.0/23 16509 -52.84.136.0/21 16509 -52.84.145.0/24 16509 -52.84.146.0/23 16509 -52.84.148.0/23 16509 -52.84.152.0/24 16509 -52.84.154.0/23 16509 -52.84.156.0/24 16509 -52.84.158.0/23 16509 -52.84.160.0/20 16509 -52.84.176.0/22 16509 -52.84.180.0/23 16509 -52.84.182.0/24 16509 -52.84.185.0/24 16509 -52.84.186.0/23 16509 -52.84.188.0/22 16509 -52.84.192.0/21 16509 -52.84.212.0/22 16509 -52.84.216.0/23 16509 -52.84.219.0/24 16509 -52.84.220.0/22 16509 -52.84.224.0/21 16509 -52.84.232.0/22 16509 -52.84.242.0/23 16509 -52.84.244.0/22 16509 -52.84.248.0/23 16509 -52.84.251.0/24 16509 -52.84.252.0/23 16509 -52.85.4.0/22 16509 -52.85.8.0/24 16509 -52.85.10.0/23 16509 -52.85.12.0/22 16509 -52.85.22.0/23 16509 -52.85.24.0/22 16509 -52.85.40.0/21 16509 -52.85.48.0/22 16509 -52.85.70.0/23 16509 -52.85.72.0/21 16509 -52.85.80.0/21 16509 -52.85.94.0/23 16509 -52.85.96.0/22 16509 -52.85.101.0/24 16509 -52.85.102.0/23 16509 -52.85.104.0/24 16509 -52.85.106.0/23 16509 -52.85.108.0/23 16509 -52.85.110.0/24 16509 -52.85.118.0/23 16509 -52.85.120.0/21 16509 -52.85.128.0/21 16509 -52.85.140.0/23 16509 -52.85.142.0/24 16509 -52.85.144.0/20 16509 -52.85.160.0/21 16509 -52.85.169.0/24 16509 -52.85.170.0/23 16509 -52.85.178.0/23 16509 -52.85.180.0/22 16509 -52.85.184.0/21 16509 -52.85.192.0/21 16509 -52.85.200.0/24 16509 -52.85.202.0/23 16509 -52.85.204.0/22 16509 -52.85.208.0/20 16509 -52.85.224.0/23 16509 -52.85.227.0/24 16509 -52.85.228.0/22 16509 -52.85.232.0/21 16509 -52.85.240.0/22 16509 -52.86.0.0/15 14618 -52.88.0.0/15 16509 -52.90.0.0/15 14618 -52.92.0.0/21 16509 -52.92.8.0/22 16509 -52.92.16.0/20 16509 -52.92.32.0/23 16509 -52.92.34.0/24 16509 -52.92.40.0/21 16509 -52.92.48.0/23 16509 -52.92.50.0/24 16509 -52.92.60.0/22 16509 -52.92.72.0/23 16509 -52.92.74.0/24 16509 -52.92.76.0/23 16509 -52.92.78.0/24 16509 -52.92.89.0/24 16509 -52.92.90.0/23 16509 -52.92.248.0/23 16509 -52.93.110.0/24 16509 -52.94.0.0/21 16509 -52.94.8.0/24 16509 -52.94.9.0/24 8987 -52.94.10.0/23 16509 -52.94.12.0/22 16509 -52.94.16.0/22 16509 -52.94.20.0/24 16509 -52.94.22.0/23 16509 -52.94.24.0/23 16509 -52.94.28.0/23 16509 -52.94.30.0/24 16509 -52.94.32.0/19 16509 -52.94.64.0/22 16509 -52.94.68.0/23 16509 -52.94.72.0/21 16509 -52.94.80.0/20 16509 -52.94.96.0/20 16509 -52.94.112.0/22 16509 -52.94.120.0/21 16509 -52.94.204.0/22 16509 -52.94.208.0/20 16509 -52.94.224.0/20 16509 -52.94.240.0/22 16509 -52.94.252.0/22 16509 -52.95.0.0/20 16509 -52.95.16.0/21 16509 -52.95.24.0/22 16509 -52.95.28.0/24 16509 -52.95.30.0/23 16509 -52.95.34.0/23 16509 -52.95.48.0/22 16509 -52.95.56.0/22 16509 -52.95.64.0/19 16509 -52.95.96.0/22 16509 -52.95.100.0/22 8987 -52.95.104.0/22 16509 -52.95.108.0/23 16509 -52.95.111.0/24 16509 -52.95.112.0/20 16509 -52.95.128.0/24 16509 -52.95.131.0/24 16509 -52.95.132.0/23 16509 -52.95.134.0/24 16509 -52.95.142.0/23 8987 -52.95.144.0/24 8987 -52.95.145.0/24 16509 -52.95.146.0/23 16509 -52.95.148.0/22 16509 -52.95.152.0/21 16509 -52.95.160.0/20 16509 -52.95.176.0/24 16509 -52.95.192.0/20 16509 -52.95.212.0/22 16509 -52.95.224.0/24 16509 -52.95.226.0/23 16509 -52.95.228.0/23 16509 -52.95.230.0/24 16509 -52.95.239.0/24 16509 -52.95.240.0/22 16509 -52.95.244.0/24 16509 -52.95.245.0/24 14618 -52.95.246.0/23 16509 -52.95.248.0/22 16509 -52.95.252.0/23 16509 -52.95.254.0/24 16509 -52.96.0.0/12 8075 -52.112.0.0/16 8075 -52.113.0.0/17 8075 -52.113.128.0/18 8075 -52.113.192.0/23 8075 -52.113.194.0/23 8068 -52.113.196.0/23 8068 -52.113.198.0/23 8075 -52.113.200.0/21 8075 -52.113.208.0/20 8075 -52.113.224.0/19 8075 -52.114.0.0/15 8075 -52.116.0.0/15 36351 -52.119.0.0/24 46151 -52.119.1.0/24 40676 -52.119.2.0/24 395115 -52.119.3.0/24 53889 -52.119.4.0/22 395802 -52.119.8.0/24 5048 -52.119.9.0/24 19131 -52.119.10.0/24 27217 -52.119.11.0/24 21909 -52.119.12.0/24 397434 -52.119.13.0/24 395113 -52.119.14.0/23 40735 -52.119.16.0/22 46467 -52.119.20.0/22 209 -52.119.24.0/24 209 -52.119.25.0/24 7029 -52.119.26.0/24 209 -52.119.27.0/24 46467 -52.119.28.0/23 209 -52.119.30.0/24 3257 -52.119.31.0/24 209 -52.119.32.0/23 396321 -52.119.34.0/23 19271 -52.119.36.0/22 62943 -52.119.40.0/24 395363 -52.119.44.0/22 394949 -52.119.48.0/21 30688 -52.119.56.0/21 395100 -52.119.64.0/19 18616 -52.119.96.0/24 3257 -52.119.97.0/24 33132 -52.119.98.0/24 4150 -52.119.99.0/24 11232 -52.119.100.0/24 26271 -52.119.101.0/24 22768 -52.119.104.0/23 22768 -52.119.106.0/24 22768 -52.119.107.0/24 11114 -52.119.108.0/24 15164 -52.119.109.0/24 26935 -52.119.111.0/24 26935 -52.119.112.0/20 32329 -52.119.128.0/18 16509 -52.119.192.0/21 16509 -52.119.205.0/24 16509 -52.119.206.0/23 16509 -52.119.208.0/23 8987 -52.119.210.0/23 16509 -52.119.212.0/22 16509 -52.119.216.0/21 16509 -52.119.224.0/21 16509 -52.119.232.0/22 16509 -52.119.240.0/21 16509 -52.119.248.0/23 16509 -52.119.252.0/22 16509 -52.120.0.0/14 8075 -52.124.0.0/24 20115 -52.124.1.0/24 396123 -52.124.2.0/24 46456 -52.124.3.0/24 394569 -52.124.4.0/22 11589 -52.124.8.0/21 26300 -52.124.16.0/24 36240 -52.124.17.0/24 20316 -52.124.18.0/23 64267 -52.124.20.0/23 32786 -52.124.24.0/21 395532 -52.124.32.0/21 62887 -52.124.40.0/22 62887 -52.124.47.0/24 62887 -52.124.48.0/22 395467 -52.124.56.0/24 396052 -52.124.57.0/24 394669 -52.124.58.0/24 22458 -52.124.59.0/24 40545 -52.124.60.0/24 394884 -52.124.61.0/24 395186 -52.124.62.0/24 395233 -52.124.63.0/24 395138 -52.124.64.0/19 23184 -52.124.96.0/19 32233 -52.124.128.0/23 16509 -52.124.130.0/24 16509 -52.124.143.0/24 16509 -52.124.145.0/24 16509 -52.124.146.0/24 16509 -52.124.156.0/24 16509 -52.124.161.0/24 16509 -52.124.170.0/23 16509 -52.124.173.0/24 16509 -52.124.174.0/24 16509 -52.124.176.0/24 16509 -52.124.178.0/24 16509 -52.124.180.0/23 16509 -52.124.187.0/24 16509 -52.124.191.0/24 16509 -52.124.198.0/23 16509 -52.124.202.0/23 16509 -52.124.204.0/24 16509 -52.124.209.0/24 16509 -52.124.210.0/23 16509 -52.124.212.0/24 16509 -52.124.215.0/24 16509 -52.124.216.0/24 16509 -52.124.218.0/23 16509 -52.124.220.0/22 16509 -52.124.224.0/21 16509 -52.124.232.0/22 16509 -52.124.237.0/24 16509 -52.124.238.0/23 16509 -52.124.240.0/21 16509 -52.124.248.0/23 16509 -52.124.251.0/24 16509 -52.124.252.0/22 16509 -52.125.0.0/16 8075 -52.126.0.0/15 8070 -52.128.16.0/21 19324 -52.128.24.0/22 53764 -52.128.28.0/24 396158 -52.128.29.0/24 18812 -52.128.30.0/24 10302 -52.128.31.0/24 64267 -52.128.32.0/24 33012 -52.128.33.0/24 394569 -52.128.34.0/23 394468 -52.128.36.0/22 55232 -52.128.40.0/22 14618 -52.128.48.0/20 26077 -52.128.98.0/23 14010 -52.128.101.0/24 14010 -52.128.102.0/23 14010 -52.128.104.0/22 14010 -52.128.108.0/23 14010 -52.128.111.0/24 14010 -52.128.112.0/22 14010 -52.128.116.0/23 14010 -52.128.119.0/24 14010 -52.128.120.0/22 14010 -52.128.124.0/23 14010 -52.128.126.0/24 14010 -52.128.127.0/24 30665 -52.128.128.0/19 36016 -52.128.224.0/19 45753 -52.129.0.0/21 12177 -52.129.10.0/24 394835 -52.129.11.0/24 22652 -52.129.12.0/23 6939 -52.129.14.0/24 23365 -52.129.15.0/24 55074 -52.129.16.0/23 40089 -52.129.18.0/24 40089 -52.129.20.0/24 63304 -52.129.21.0/24 16696 -52.129.22.0/24 46746 -52.129.23.0/24 394954 -52.129.24.0/22 394999 -52.129.28.0/22 32586 -52.129.32.0/23 14239 -52.129.34.0/24 16509 -52.129.35.0/24 394667 -52.129.36.0/24 63201 -52.129.38.0/23 62642 -52.129.40.0/22 19544 -52.129.46.0/23 394882 -52.129.48.0/20 53764 -52.129.64.0/23 15301 -52.129.66.0/23 395492 -52.129.68.0/22 395492 -52.129.72.0/23 15301 -52.129.74.0/23 395492 -52.129.76.0/22 15301 -52.129.80.0/23 15301 -52.129.82.0/23 395492 -52.129.84.0/23 15301 -52.129.86.0/23 395492 -52.129.88.0/22 15301 -52.129.92.0/23 395492 -52.129.94.0/23 15301 -52.129.112.0/22 3728 -52.129.116.0/23 3728 -52.129.120.0/21 63296 -52.130.0.0/20 58593 -52.130.16.0/21 58593 -52.130.24.0/22 58593 -52.130.32.0/19 58593 -52.130.64.0/19 58593 -52.131.0.0/16 58593 -52.136.0.0/13 8075 -52.144.0.0/21 393347 -52.144.9.0/24 393347 -52.144.10.0/23 393347 -52.144.16.0/21 393494 -52.144.25.0/24 394875 -52.144.26.0/24 394982 -52.144.27.0/24 32586 -52.144.28.0/24 397091 -52.144.29.0/24 397018 -52.144.30.0/24 32832 -52.144.31.0/24 62642 -52.144.32.0/21 63242 -52.144.40.0/22 22911 -52.144.44.0/22 36007 -52.144.48.0/21 50292 -52.144.56.0/23 55039 -52.144.58.0/24 54105 -52.144.59.0/24 396257 -52.144.60.0/24 9009 -52.144.62.0/24 394960 -52.144.63.0/24 395599 -52.144.64.0/20 5602 -52.144.80.0/21 5602 -52.144.88.0/23 5602 -52.144.90.0/24 5396 -52.144.91.0/24 5602 -52.144.92.0/22 5602 -52.144.96.0/20 26077 -52.144.112.0/21 63242 -52.144.120.0/22 395861 -52.144.124.0/23 26967 -52.144.126.0/23 395454 -52.146.0.0/15 8075 -52.148.0.0/14 8075 -52.152.0.0/13 8075 -52.160.0.0/11 8075 -52.192.0.0/13 16509 -52.200.0.0/13 14618 -52.208.0.0/13 16509 -52.216.0.0/19 16509 -52.216.32.0/22 16509 -52.216.64.0/21 16509 -52.216.72.0/24 16509 -52.216.76.0/22 16509 -52.216.80.0/20 16509 -52.216.96.0/19 16509 -52.216.128.0/18 16509 -52.216.192.0/22 16509 -52.216.200.0/21 16509 -52.216.224.0/19 16509 -52.217.0.0/20 16509 -52.217.16.0/22 16509 -52.217.32.0/20 16509 -52.218.16.0/20 16509 -52.218.32.0/21 16509 -52.218.40.0/22 16509 -52.218.48.0/20 16509 -52.218.64.0/22 16509 -52.218.80.0/21 16509 -52.218.96.0/20 16509 -52.218.128.0/19 16509 -52.218.160.0/20 16509 -52.218.192.0/18 16509 -52.219.0.0/21 16509 -52.219.8.0/22 16509 -52.219.13.0/24 16509 -52.219.16.0/20 16509 -52.219.32.0/20 16509 -52.219.48.0/22 16509 -52.219.56.0/21 16509 -52.219.64.0/21 16509 -52.219.72.0/22 16509 -52.219.80.0/21 16509 -52.219.88.0/22 16509 -52.219.96.0/21 16509 -52.219.104.0/22 16509 -52.219.112.0/20 16509 -52.219.128.0/21 16509 -52.219.136.0/22 16509 -52.220.0.0/15 16509 -52.222.0.0/17 8987 -52.222.128.0/21 16509 -52.222.145.0/24 16509 -52.222.146.0/23 16509 -52.222.148.0/22 16509 -52.222.152.0/21 16509 -52.222.160.0/20 16509 -52.222.192.0/21 16509 -52.222.200.0/22 16509 -52.222.204.0/23 16509 -52.222.206.0/24 16509 -52.222.211.0/24 16509 -52.222.223.0/24 16509 -52.222.234.0/23 16509 -52.222.238.0/24 16509 -52.222.243.0/24 16509 -52.222.244.0/22 16509 -52.222.248.0/24 16509 -52.222.250.0/23 16509 -52.222.252.0/22 16509 -52.223.192.0/20 46489 -52.223.208.0/21 46489 -52.223.224.0/19 46489 -52.224.0.0/11 8075 -53.0.0.0/8 31399 -54.36.0.0/14 16276 -54.64.0.0/12 16509 -54.80.0.0/13 14618 -54.88.0.0/14 14618 -54.92.0.0/17 16509 -54.92.128.0/17 14618 -54.93.0.0/16 16509 -54.94.0.0/15 16509 -54.144.0.0/14 14618 -54.148.0.0/14 16509 -54.152.0.0/16 14618 -54.153.0.0/16 16509 -54.154.0.0/15 16509 -54.156.0.0/14 14618 -54.160.0.0/13 14618 -54.168.0.0/14 16509 -54.172.0.0/14 14618 -54.176.0.0/14 16509 -54.180.0.0/15 16509 -54.182.0.0/21 16509 -54.182.128.0/20 16509 -54.182.144.0/21 16509 -54.182.152.0/24 16509 -54.182.154.0/23 16509 -54.182.156.0/22 16509 -54.182.162.0/23 16509 -54.182.164.0/22 16509 -54.182.170.0/23 16509 -54.182.172.0/22 16509 -54.182.176.0/21 16509 -54.182.184.0/23 16509 -54.182.188.0/22 16509 -54.182.192.0/21 16509 -54.182.200.0/22 16509 -54.182.205.0/24 16509 -54.182.206.0/23 16509 -54.182.209.0/24 16509 -54.182.210.0/23 16509 -54.182.212.0/23 16509 -54.182.215.0/24 16509 -54.182.216.0/21 16509 -54.182.224.0/21 16509 -54.182.232.0/23 16509 -54.182.235.0/24 16509 -54.182.236.0/24 16509 -54.182.239.0/24 16509 -54.182.240.0/23 16509 -54.182.243.0/24 16509 -54.182.244.0/24 16509 -54.182.246.0/23 16509 -54.182.248.0/21 16509 -54.183.0.0/16 16509 -54.184.0.0/13 16509 -54.192.4.0/22 16509 -54.192.8.0/22 16509 -54.192.16.0/21 16509 -54.192.28.0/22 16509 -54.192.32.0/22 16509 -54.192.36.0/24 16509 -54.192.38.0/23 16509 -54.192.48.0/22 16509 -54.192.56.0/21 16509 -54.192.68.0/22 16509 -54.192.72.0/21 16509 -54.192.92.0/22 16509 -54.192.96.0/22 16509 -54.192.116.0/22 16509 -54.192.120.0/21 16509 -54.192.136.0/22 16509 -54.192.144.0/21 16509 -54.192.156.0/23 16509 -54.192.159.0/24 16509 -54.192.160.0/22 16509 -54.192.172.0/22 16509 -54.192.180.0/22 16509 -54.192.184.0/22 16509 -54.192.192.0/22 16509 -54.192.200.0/21 16509 -54.192.216.0/22 16509 -54.192.224.0/21 16509 -54.192.232.0/22 16509 -54.192.240.0/24 16509 -54.192.243.0/24 16509 -54.193.0.0/16 16509 -54.194.0.0/15 16509 -54.196.0.0/15 14618 -54.198.0.0/16 14618 -54.199.0.0/16 16509 -54.200.0.0/14 16509 -54.204.0.0/15 14618 -54.206.0.0/15 16509 -54.208.0.0/14 14618 -54.212.0.0/14 16509 -54.216.0.0/14 16509 -54.220.0.0/16 16509 -54.221.0.0/16 14618 -54.222.0.0/19 55960 -54.222.32.0/21 55960 -54.222.45.0/24 55960 -54.222.48.0/23 55960 -54.222.50.0/24 55960 -54.222.57.0/24 55960 -54.222.59.0/24 55960 -54.222.60.0/22 55960 -54.222.128.0/17 55960 -54.223.0.0/16 55960 -54.224.0.0/14 14618 -54.228.0.0/15 16509 -54.230.4.0/22 16509 -54.230.8.0/22 16509 -54.230.16.0/21 16509 -54.230.28.0/22 16509 -54.230.32.0/21 16509 -54.230.48.0/22 16509 -54.230.56.0/21 16509 -54.230.68.0/22 16509 -54.230.72.0/21 16509 -54.230.84.0/22 16509 -54.230.92.0/22 16509 -54.230.96.0/22 16509 -54.230.100.0/24 16509 -54.230.116.0/22 16509 -54.230.120.0/21 16509 -54.230.136.0/22 16509 -54.230.144.0/21 16509 -54.230.156.0/22 16509 -54.230.160.0/22 16509 -54.230.172.0/22 16509 -54.230.180.0/22 16509 -54.230.184.0/22 16509 -54.230.192.0/22 16509 -54.230.200.0/21 16509 -54.230.216.0/22 16509 -54.230.224.0/21 16509 -54.230.232.0/22 16509 -54.230.240.0/20 16509 -54.231.0.0/24 16509 -54.231.10.0/23 16509 -54.231.16.0/22 16509 -54.231.32.0/22 16509 -54.231.40.0/21 16509 -54.231.48.0/20 16509 -54.231.64.0/20 16509 -54.231.80.0/21 16509 -54.231.88.0/24 16509 -54.231.96.0/19 16509 -54.231.128.0/21 16509 -54.231.163.0/24 16509 -54.231.164.0/23 16509 -54.231.168.0/21 16509 -54.231.176.0/20 16509 -54.231.192.0/23 16509 -54.231.194.0/24 16509 -54.231.232.0/21 16509 -54.231.244.0/22 16509 -54.231.248.0/22 16509 -54.231.252.0/24 16509 -54.232.0.0/16 16509 -54.233.64.0/18 16509 -54.233.128.0/17 16509 -54.234.0.0/15 14618 -54.236.0.0/15 14618 -54.238.0.0/16 16509 -54.239.2.0/23 16509 -54.239.4.0/22 16509 -54.239.8.0/21 16509 -54.239.16.0/20 16509 -54.239.32.0/21 16509 -54.239.48.0/20 16509 -54.239.64.0/21 16509 -54.239.96.0/24 16509 -54.239.98.0/23 16509 -54.239.108.0/22 16509 -54.239.116.0/22 16509 -54.239.120.0/21 16509 -54.239.129.0/24 16509 -54.239.130.0/23 16509 -54.239.132.0/24 16509 -54.239.134.0/23 16509 -54.239.140.0/23 16509 -54.239.144.0/23 16509 -54.239.152.0/24 16509 -54.239.154.0/24 16509 -54.239.156.0/23 16509 -54.239.158.0/24 16509 -54.239.160.0/23 16509 -54.239.166.0/23 16509 -54.239.168.0/24 16509 -54.239.170.0/23 16509 -54.239.172.0/24 16509 -54.239.180.0/24 16509 -54.239.182.0/23 16509 -54.239.186.0/23 16509 -54.239.190.0/23 16509 -54.239.192.0/24 16509 -54.239.195.0/24 16509 -54.239.200.0/24 16509 -54.239.202.0/23 16509 -54.239.204.0/22 16509 -54.239.208.0/20 16509 -54.240.0.0/21 16509 -54.240.8.0/21 14618 -54.240.16.0/24 16509 -54.240.24.0/22 16509 -54.240.30.0/23 14618 -54.240.32.0/20 14618 -54.240.48.0/23 14618 -54.240.50.0/23 16509 -54.240.52.0/22 16509 -54.240.56.0/21 16509 -54.240.129.0/24 16509 -54.240.130.0/23 16509 -54.240.147.0/24 16509 -54.240.149.0/24 16509 -54.240.150.0/24 16509 -54.240.156.0/23 16509 -54.240.160.0/23 16509 -54.240.168.0/23 16509 -54.240.170.0/24 16509 -54.240.172.0/23 16509 -54.240.174.0/24 16509 -54.240.186.0/24 16509 -54.240.188.0/23 16509 -54.240.192.0/21 16509 -54.240.200.0/24 16509 -54.240.202.0/23 16509 -54.240.204.0/22 16509 -54.240.208.0/20 16509 -54.240.225.0/24 16509 -54.240.226.0/23 16509 -54.240.228.0/22 16509 -54.240.232.0/22 16509 -54.240.244.0/22 16509 -54.240.248.0/21 16509 -54.241.0.0/16 16509 -54.242.0.0/15 14618 -54.244.0.0/14 16509 -54.248.0.0/13 16509 -55.0.0.0/16 721 -55.1.0.0/16 359 -55.2.0.0/16 344 -55.3.0.0/16 345 -55.4.0.0/15 721 -55.6.0.0/16 721 -55.7.0.0/16 362 -55.8.0.0/16 316 -55.9.0.0/16 721 -55.10.0.0/16 306 -55.11.0.0/16 317 -55.12.0.0/16 721 -55.13.0.0/16 346 -55.14.0.0/16 347 -55.15.0.0/16 306 -55.16.0.0/16 364 -55.17.0.0/16 306 -55.18.0.0/16 365 -55.19.0.0/16 331 -55.20.0.0/16 332 -55.21.0.0/16 721 -55.22.0.0/18 348 -55.22.64.0/22 348 -55.22.68.0/24 348 -55.22.69.0/24 306 -55.22.70.0/23 348 -55.22.72.0/21 348 -55.22.80.0/23 348 -55.22.82.0/24 13979 -55.22.83.0/24 348 -55.22.84.0/24 13979 -55.22.85.0/24 348 -55.22.86.0/24 13979 -55.22.87.0/24 348 -55.22.88.0/21 348 -55.22.96.0/19 348 -55.22.128.0/23 348 -55.22.130.0/24 13979 -55.22.131.0/24 348 -55.22.132.0/22 348 -55.22.136.0/21 348 -55.22.144.0/24 13979 -55.22.145.0/24 348 -55.22.146.0/23 348 -55.22.148.0/22 348 -55.22.152.0/22 348 -55.22.156.0/23 348 -55.22.158.0/24 13979 -55.22.159.0/24 348 -55.22.160.0/21 348 -55.22.168.0/23 348 -55.22.170.0/24 13979 -55.22.171.0/24 348 -55.22.172.0/23 348 -55.22.174.0/24 13979 -55.22.175.0/24 348 -55.22.176.0/24 13979 -55.22.177.0/24 348 -55.22.178.0/23 348 -55.22.180.0/22 348 -55.22.184.0/22 348 -55.22.188.0/23 348 -55.22.190.0/24 13979 -55.22.191.0/24 348 -55.22.192.0/18 348 -55.23.0.0/16 349 -55.24.0.0/16 321 -55.25.0.0/22 320 -55.25.4.0/24 320 -55.25.5.0/24 306 -55.25.6.0/23 320 -55.25.8.0/21 320 -55.25.16.0/20 320 -55.25.32.0/19 320 -55.25.64.0/18 320 -55.25.128.0/17 320 -55.26.0.0/16 319 -55.27.0.0/16 306 -55.28.0.0/16 721 -55.29.0.0/17 721 -55.29.128.0/18 721 -55.29.192.0/19 721 -55.29.224.0/22 721 -55.29.228.0/24 337 -55.29.229.0/24 721 -55.29.230.0/23 721 -55.29.232.0/21 721 -55.29.240.0/20 721 -55.30.0.0/16 350 -55.31.0.0/16 721 -55.32.0.0/16 352 -55.33.0.0/16 721 -55.34.0.0/16 338 -55.35.0.0/16 322 -55.36.0.0/16 323 -55.37.0.0/16 351 -55.38.0.0/16 306 -55.39.0.0/21 324 -55.39.8.0/22 324 -55.39.12.0/23 324 -55.39.14.0/24 65548 -55.39.15.0/24 324 -55.39.16.0/20 324 -55.39.32.0/19 324 -55.39.64.0/19 324 -55.39.96.0/24 65536 -55.39.97.0/24 324 -55.39.98.0/23 324 -55.39.100.0/22 324 -55.39.104.0/22 324 -55.39.108.0/23 324 -55.39.110.0/24 65543 -55.39.111.0/24 324 -55.39.112.0/20 324 -55.39.128.0/20 324 -55.39.144.0/22 324 -55.39.148.0/23 324 -55.39.150.0/23 65536 -55.39.152.0/23 65536 -55.39.154.0/24 324 -55.39.155.0/24 65536 -55.39.156.0/22 324 -55.39.160.0/21 324 -55.39.168.0/24 65542 -55.39.169.0/24 324 -55.39.170.0/23 324 -55.39.172.0/22 324 -55.39.176.0/22 324 -55.39.180.0/24 324 -55.39.181.0/24 65550 -55.39.182.0/23 324 -55.39.184.0/21 324 -55.39.192.0/18 324 -55.40.0.0/16 340 -55.41.0.0/16 353 -55.42.0.0/15 721 -55.44.0.0/16 306 -55.45.0.0/16 327 -55.46.0.0/16 355 -55.47.0.0/16 341 -55.48.0.0/16 356 -55.49.0.0/16 721 -55.50.0.0/16 721 -55.51.0.0/16 306 -55.52.0.0/16 358 -55.53.0.0/16 328 -55.54.0.0/15 721 -55.56.0.0/16 342 -55.57.0.0/16 721 -55.58.0.0/16 360 -55.59.0.0/16 361 -55.60.0.0/16 362 -55.61.0.0/16 306 -55.62.0.0/15 361 -55.64.0.0/16 347 -55.65.0.0/16 721 -55.66.0.0/16 721 -55.67.0.0/16 306 -55.68.0.0/16 306 -55.69.0.0/16 365 -55.70.0.0/16 331 -55.71.0.0/19 332 -55.71.32.0/23 18155 -55.71.34.0/23 332 -55.71.36.0/22 332 -55.71.40.0/21 332 -55.71.48.0/20 332 -55.71.64.0/18 332 -55.71.128.0/17 332 -55.72.0.0/16 334 -55.73.0.0/16 340 -55.74.0.0/16 335 -55.75.0.0/16 336 -55.76.0.0/15 357 -55.78.0.0/16 306 -55.79.0.0/16 721 -55.80.0.0/15 721 -55.82.0.0/16 366 -55.83.0.0/16 339 -55.84.0.0/16 351 -55.85.0.0/16 306 -55.86.0.0/23 340 -55.86.2.0/24 306 -55.86.3.0/24 340 -55.86.4.0/22 340 -55.86.8.0/21 340 -55.86.16.0/20 340 -55.86.32.0/19 340 -55.86.64.0/18 340 -55.86.128.0/17 340 -55.87.0.0/16 368 -55.88.0.0/16 341 -55.89.0.0/16 356 -55.90.0.0/16 357 -55.91.0.0/16 369 -55.92.0.0/16 329 -55.93.0.0/16 370 -55.94.0.0/16 343 -55.95.0.0/16 371 -55.96.0.0/15 361 -55.98.0.0/15 357 -55.100.0.0/14 721 -55.104.0.0/13 721 -55.112.0.0/13 721 -55.120.0.0/14 721 -55.124.0.0/16 1541 -55.125.0.0/18 1541 -55.125.64.0/19 1541 -55.125.96.0/22 1541 -55.125.100.0/23 1541 -55.125.102.0/24 1541 -55.125.103.0/24 1452 -55.125.104.0/21 1541 -55.125.112.0/20 1541 -55.125.128.0/17 1541 -55.126.0.0/16 326 -55.127.0.0/16 721 -55.128.0.0/11 1541 -55.160.0.0/12 1541 -55.176.0.0/13 1541 -55.184.0.0/14 1541 -55.188.0.0/16 337 -55.189.0.0/16 306 -55.190.0.0/16 326 -55.191.0.0/22 325 -55.191.4.0/23 325 -55.191.6.0/24 325 -55.191.7.0/24 145 -55.191.8.0/21 325 -55.191.16.0/21 145 -55.191.24.0/21 325 -55.191.32.0/19 325 -55.191.64.0/19 325 -55.191.96.0/21 325 -55.191.104.0/23 145 -55.191.106.0/24 325 -55.191.107.0/24 145 -55.191.108.0/22 145 -55.191.112.0/23 325 -55.191.114.0/24 145 -55.191.115.0/24 325 -55.191.116.0/24 145 -55.191.117.0/24 325 -55.191.118.0/23 325 -55.191.120.0/22 145 -55.191.124.0/24 145 -55.191.125.0/24 325 -55.191.126.0/23 325 -55.191.128.0/24 145 -55.191.129.0/24 325 -55.191.130.0/24 325 -55.191.131.0/24 145 -55.191.132.0/24 325 -55.191.133.0/24 145 -55.191.134.0/23 145 -55.191.136.0/23 325 -55.191.138.0/24 145 -55.191.139.0/24 325 -55.191.140.0/24 325 -55.191.141.0/24 145 -55.191.142.0/24 145 -55.191.143.0/24 325 -55.191.144.0/24 145 -55.191.145.0/24 325 -55.191.146.0/24 145 -55.191.147.0/24 325 -55.191.148.0/23 325 -55.191.150.0/24 145 -55.191.151.0/24 325 -55.191.152.0/22 145 -55.191.156.0/23 145 -55.191.158.0/24 145 -55.191.159.0/24 325 -55.191.160.0/23 145 -55.191.162.0/23 325 -55.191.164.0/24 325 -55.191.165.0/24 145 -55.191.166.0/24 145 -55.191.167.0/24 325 -55.191.168.0/22 145 -55.191.172.0/24 325 -55.191.173.0/24 145 -55.191.174.0/23 325 -55.191.176.0/23 325 -55.191.178.0/24 325 -55.191.179.0/24 145 -55.191.180.0/24 325 -55.191.181.0/24 145 -55.191.182.0/24 325 -55.191.183.0/24 145 -55.191.184.0/23 325 -55.191.186.0/24 325 -55.191.187.0/24 145 -55.191.188.0/22 325 -55.191.192.0/24 325 -55.191.193.0/24 145 -55.191.194.0/23 325 -55.191.196.0/23 325 -55.191.198.0/24 325 -55.191.199.0/24 145 -55.191.200.0/24 145 -55.191.201.0/24 325 -55.191.202.0/24 325 -55.191.203.0/24 145 -55.191.204.0/24 325 -55.191.205.0/24 145 -55.191.206.0/23 325 -55.191.208.0/23 145 -55.191.210.0/24 145 -55.191.211.0/24 325 -55.191.212.0/22 325 -55.191.216.0/22 325 -55.191.220.0/22 145 -55.191.224.0/23 145 -55.191.226.0/24 145 -55.191.227.0/24 325 -55.191.228.0/24 145 -55.191.229.0/24 325 -55.191.230.0/23 145 -55.191.232.0/21 325 -55.191.240.0/20 325 -55.192.0.0/16 1541 -55.193.0.0/16 326 -55.194.0.0/16 326 -55.195.0.0/16 307 -55.196.0.0/16 1503 -55.197.0.0/16 1541 -55.198.0.0/15 721 -55.200.0.0/15 1541 -55.202.0.0/15 721 -55.204.0.0/16 721 -55.205.0.0/16 1541 -55.206.0.0/15 721 -55.208.0.0/16 721 -55.209.0.0/18 721 -55.209.64.0/19 721 -55.209.96.0/22 721 -55.209.100.0/24 1494 -55.209.101.0/24 721 -55.209.102.0/23 721 -55.209.104.0/21 721 -55.209.112.0/20 721 -55.209.128.0/18 721 -55.209.192.0/21 721 -55.209.200.0/23 1541 -55.209.202.0/24 1494 -55.209.203.0/24 1590 -55.209.204.0/22 721 -55.209.208.0/20 721 -55.209.224.0/19 721 -55.210.0.0/15 721 -55.212.0.0/14 721 -55.216.0.0/13 721 -55.224.0.0/16 306 -55.225.0.0/16 721 -55.226.0.0/15 721 -55.228.0.0/14 721 -55.232.0.0/13 721 -55.240.0.0/16 721 -55.241.0.0/16 306 -55.242.0.0/16 306 -55.243.0.0/16 721 -55.244.0.0/14 721 -55.248.0.0/13 721 -56.0.32.0/20 5774 -56.0.64.0/19 5774 -56.0.128.0/18 5774 -56.0.192.0/19 5774 -56.22.22.0/24 5774 -56.105.64.0/18 5774 -56.105.128.0/18 5774 -56.235.0.0/16 5774 -57.0.0.0/10 2647 -57.64.0.0/16 51964 -57.65.0.0/16 2647 -57.66.0.0/15 51964 -57.68.0.0/15 51964 -57.70.0.0/17 51964 -57.70.128.0/19 51964 -57.70.160.0/19 2647 -57.70.192.0/18 2647 -57.71.0.0/16 2647 -57.72.0.0/24 4862 -57.72.1.0/24 51964 -57.72.2.0/23 51964 -57.72.4.0/22 51964 -57.72.8.0/21 51964 -57.72.16.0/20 51964 -57.72.32.0/19 51964 -57.72.64.0/18 51964 -57.72.128.0/17 51964 -57.73.0.0/16 51964 -57.74.0.0/15 51964 -57.76.0.0/15 51964 -57.78.0.0/16 51964 -57.79.0.0/17 51964 -57.79.128.0/19 51964 -57.79.160.0/20 51964 -57.79.176.0/20 2647 -57.79.192.0/20 51964 -57.79.208.0/20 2647 -57.79.224.0/20 51964 -57.79.240.0/20 2647 -57.80.0.0/15 51964 -57.82.0.0/18 51964 -57.82.64.0/20 2647 -57.82.80.0/20 51964 -57.82.96.0/19 2647 -57.82.128.0/17 2647 -57.83.0.0/20 51964 -57.83.16.0/20 2647 -57.83.32.0/19 2647 -57.83.64.0/20 2647 -57.83.80.0/20 51964 -57.83.96.0/19 2647 -57.83.128.0/19 2647 -57.83.160.0/20 51964 -57.83.176.0/20 2647 -57.83.192.0/20 2647 -57.83.208.0/20 51964 -57.83.224.0/19 2647 -57.84.0.0/18 51964 -57.84.64.0/19 51964 -57.84.96.0/20 51964 -57.84.112.0/20 2647 -57.84.128.0/20 2647 -57.84.144.0/20 51964 -57.84.160.0/19 2647 -57.84.192.0/19 2647 -57.84.224.0/20 51964 -57.84.240.0/20 2647 -57.85.0.0/16 2647 -57.86.0.0/16 51964 -57.87.0.0/18 51964 -57.87.64.0/20 51964 -57.87.80.0/23 51964 -57.87.82.0/24 10282 -57.87.83.0/24 51964 -57.87.84.0/22 51964 -57.87.88.0/21 51964 -57.87.96.0/19 51964 -57.87.128.0/17 51964 -57.88.0.0/19 2647 -57.88.32.0/20 51964 -57.88.48.0/20 2647 -57.88.64.0/19 2647 -57.88.96.0/20 2647 -57.88.112.0/20 51964 -57.88.128.0/20 2647 -57.88.144.0/20 51964 -57.88.160.0/20 2647 -57.88.176.0/20 51964 -57.88.192.0/19 51964 -57.88.224.0/19 2647 -57.89.0.0/20 51964 -57.89.16.0/20 2647 -57.89.32.0/19 2647 -57.89.64.0/18 2647 -57.89.128.0/17 2647 -57.90.0.0/15 51964 -57.92.0.0/15 51964 -57.94.0.0/19 51964 -57.94.32.0/19 2647 -57.94.64.0/18 2647 -57.94.128.0/20 51964 -57.94.144.0/20 2647 -57.94.160.0/19 2647 -57.94.192.0/18 2647 -57.95.0.0/16 2647 -57.96.0.0/14 51964 -57.100.0.0/21 17650 -57.100.8.0/21 2647 -57.100.16.0/20 2647 -57.100.32.0/19 2647 -57.100.64.0/21 17650 -57.100.72.0/21 2647 -57.100.80.0/20 2647 -57.100.96.0/21 17650 -57.100.104.0/21 2647 -57.100.112.0/20 2647 -57.100.128.0/17 2647 -57.101.0.0/16 2647 -57.102.0.0/15 2647 -57.104.0.0/13 2647 -57.112.0.0/12 2647 -57.128.0.0/11 2647 -57.160.0.0/12 2647 -57.176.0.0/13 2647 -57.184.0.0/14 2647 -57.188.0.0/22 205080 -57.188.4.0/22 2647 -57.188.8.0/23 2647 -57.188.10.0/24 205080 -57.188.11.0/24 2647 -57.188.12.0/24 205080 -57.188.13.0/24 2647 -57.188.14.0/24 205080 -57.188.15.0/24 2647 -57.188.16.0/23 205080 -57.188.18.0/24 2647 -57.188.19.0/24 205080 -57.188.20.0/22 2647 -57.188.24.0/21 2647 -57.188.32.0/22 205080 -57.188.36.0/23 205080 -57.188.38.0/24 205080 -57.188.39.0/24 2647 -57.188.40.0/24 205080 -57.188.41.0/24 2647 -57.188.42.0/23 2647 -57.188.44.0/22 2647 -57.188.48.0/21 2647 -57.188.56.0/22 2647 -57.188.60.0/24 2647 -57.188.61.0/24 205080 -57.188.62.0/24 2647 -57.188.63.0/24 205080 -57.188.64.0/18 2647 -57.188.128.0/17 2647 -57.189.0.0/16 2647 -57.190.0.0/20 206433 -57.190.16.0/20 2647 -57.190.32.0/19 2647 -57.190.64.0/18 2647 -57.190.128.0/17 2647 -57.191.0.0/21 198912 -57.191.8.0/21 2647 -57.191.16.0/20 2647 -57.191.32.0/19 2647 -57.191.64.0/22 132399 -57.191.68.0/22 2647 -57.191.72.0/21 2647 -57.191.80.0/20 2647 -57.191.96.0/19 2647 -57.191.128.0/22 11868 -57.191.132.0/22 2647 -57.191.136.0/21 2647 -57.191.144.0/20 2647 -57.191.160.0/19 2647 -57.191.192.0/18 2647 -57.192.0.0/11 2647 -57.224.0.0/13 2647 -57.232.0.0/15 2647 -57.234.0.0/17 2647 -57.234.128.0/18 2647 -57.234.192.0/20 2647 -57.234.208.0/21 2647 -57.234.216.0/22 2647 -57.234.220.0/24 2647 -57.234.221.0/24 1624 -57.234.222.0/23 2647 -57.234.224.0/19 2647 -57.235.0.0/16 2647 -57.236.0.0/14 2647 -57.240.0.0/13 2647 -57.248.0.0/15 2647 -57.250.0.0/17 2647 -57.250.128.0/18 2647 -57.250.192.0/20 19545 -57.250.208.0/21 2647 -57.250.216.0/22 2647 -57.250.220.0/24 51964 -57.250.221.0/24 19545 -57.250.222.0/24 2647 -57.250.223.0/24 19545 -57.250.224.0/24 19545 -57.250.225.0/24 2647 -57.250.226.0/23 2647 -57.250.228.0/23 2647 -57.250.230.0/24 2647 -57.250.231.0/24 51964 -57.250.232.0/21 2647 -57.250.240.0/23 2647 -57.250.242.0/24 2647 -57.250.243.0/24 51964 -57.250.244.0/24 51964 -57.250.245.0/24 2647 -57.250.246.0/23 51964 -57.250.248.0/22 2647 -57.250.252.0/24 51964 -57.250.253.0/24 2647 -57.250.254.0/24 3215 -57.250.255.0/24 2647 -57.251.0.0/16 2647 -57.252.0.0/14 2647 -58.0.0.0/15 2510 -58.2.236.0/23 17466 -58.2.238.0/23 9498 -58.3.0.0/16 7679 -58.4.0.0/15 17506 -58.6.0.0/20 9543 -58.6.16.0/21 9543 -58.6.26.0/23 4739 -58.6.28.0/22 9543 -58.6.32.0/21 9543 -58.6.40.0/22 9543 -58.6.44.0/22 7545 -58.6.56.0/22 9543 -58.6.60.0/22 7545 -58.6.64.0/21 4739 -58.6.72.0/21 7545 -58.6.80.0/20 4739 -58.6.96.0/21 4739 -58.6.104.0/24 9543 -58.6.112.0/20 4739 -58.6.136.0/21 7545 -58.6.144.0/20 9543 -58.6.160.0/21 4739 -58.6.168.0/21 7545 -58.6.176.0/20 7545 -58.6.192.0/21 9543 -58.6.200.0/21 7545 -58.6.208.0/20 9543 -58.6.224.0/19 7545 -58.7.0.0/21 9543 -58.7.8.0/22 9543 -58.7.12.0/22 4739 -58.7.16.0/21 4739 -58.7.24.0/22 4739 -58.7.28.0/23 4739 -58.7.30.0/23 9543 -58.7.32.0/19 4739 -58.7.64.0/19 7545 -58.7.96.0/20 4739 -58.7.112.0/20 7545 -58.7.128.0/20 4739 -58.7.144.0/20 7545 -58.7.160.0/19 7545 -58.7.192.0/18 7545 -58.8.0.0/15 17552 -58.10.0.0/16 17552 -58.11.0.0/17 17552 -58.11.128.0/17 7470 -58.12.0.0/15 17506 -58.16.0.0/15 4837 -58.18.0.0/18 4837 -58.18.64.0/19 4837 -58.18.96.0/20 139007 -58.18.112.0/20 4837 -58.18.128.0/17 4837 -58.19.0.0/16 4837 -58.20.0.0/14 4837 -58.24.0.0/15 9812 -58.26.0.0/16 4788 -58.27.0.0/17 4788 -58.27.128.0/17 38264 -58.28.0.0/16 17435 -58.29.0.0/19 17858 -58.29.32.0/20 17858 -58.29.48.0/20 9316 -58.29.64.0/20 9316 -58.29.80.0/20 17858 -58.29.96.0/20 9316 -58.29.112.0/20 17858 -58.29.128.0/19 9316 -58.29.160.0/20 9316 -58.29.176.0/21 9316 -58.29.184.0/23 9316 -58.29.186.0/24 9871 -58.29.187.0/24 9316 -58.29.188.0/22 9316 -58.29.192.0/18 9316 -58.30.0.0/19 9811 -58.30.32.0/24 17429 -58.30.33.0/24 9811 -58.30.34.0/23 9811 -58.30.36.0/22 9811 -58.30.40.0/21 9811 -58.30.48.0/20 9811 -58.30.64.0/18 9811 -58.30.128.0/17 9811 -58.31.0.0/16 17429 -58.32.0.0/13 4812 -58.40.0.0/15 4812 -58.42.0.0/23 4134 -58.42.2.0/24 139203 -58.42.3.0/24 4134 -58.42.4.0/22 4134 -58.42.8.0/22 4134 -58.42.12.0/23 4134 -58.42.14.0/23 139203 -58.42.16.0/20 4134 -58.42.32.0/20 4134 -58.42.48.0/20 139203 -58.42.64.0/18 4134 -58.42.128.0/17 4134 -58.43.0.0/17 4134 -58.43.128.0/18 4134 -58.43.192.0/18 4809 -58.44.0.0/14 4134 -58.48.0.0/16 4134 -58.49.0.0/18 4134 -58.49.64.0/19 4134 -58.49.96.0/21 4134 -58.49.104.0/22 4134 -58.49.108.0/24 4809 -58.49.109.0/24 4134 -58.49.110.0/23 4134 -58.49.112.0/20 4134 -58.49.128.0/21 4134 -58.49.136.0/24 4134 -58.49.137.0/24 58563 -58.49.138.0/24 58563 -58.49.139.0/24 4134 -58.49.140.0/22 4134 -58.49.144.0/20 58563 -58.49.160.0/22 58563 -58.49.164.0/22 4134 -58.49.168.0/21 4134 -58.49.176.0/20 4134 -58.49.192.0/21 58563 -58.49.200.0/21 4134 -58.49.208.0/22 4134 -58.49.212.0/22 58563 -58.49.216.0/22 58563 -58.49.220.0/22 4134 -58.49.224.0/19 58563 -58.50.0.0/20 4134 -58.50.16.0/21 4134 -58.50.24.0/22 4134 -58.50.28.0/23 4134 -58.50.30.0/24 4134 -58.50.31.0/24 136193 -58.50.32.0/19 4134 -58.50.64.0/18 4134 -58.50.128.0/19 4134 -58.50.160.0/20 4134 -58.50.176.0/21 4134 -58.50.184.0/24 136191 -58.50.185.0/24 4134 -58.50.186.0/23 4134 -58.50.188.0/22 4134 -58.50.192.0/18 4134 -58.51.0.0/16 4134 -58.52.0.0/14 4134 -58.56.0.0/21 4134 -58.56.8.0/24 4134 -58.56.9.0/24 58540 -58.56.10.0/23 4134 -58.56.12.0/22 4134 -58.56.16.0/20 4134 -58.56.32.0/19 4134 -58.56.64.0/24 4134 -58.56.65.0/24 58540 -58.56.66.0/24 58540 -58.56.67.0/24 4134 -58.56.68.0/22 4134 -58.56.72.0/21 4134 -58.56.80.0/20 4134 -58.56.96.0/21 4134 -58.56.104.0/22 4134 -58.56.108.0/22 58540 -58.56.112.0/22 4134 -58.56.116.0/23 4134 -58.56.118.0/24 4134 -58.56.119.0/24 58540 -58.56.120.0/22 4134 -58.56.124.0/23 58540 -58.56.126.0/23 4134 -58.56.128.0/19 4134 -58.56.160.0/24 4134 -58.56.161.0/24 58541 -58.56.162.0/24 4134 -58.56.163.0/24 58541 -58.56.164.0/22 4134 -58.56.168.0/21 4134 -58.56.176.0/20 4134 -58.56.192.0/18 4134 -58.57.0.0/16 4134 -58.58.0.0/19 4134 -58.58.32.0/24 4134 -58.58.33.0/24 58541 -58.58.34.0/24 58541 -58.58.35.0/24 4134 -58.58.36.0/22 4134 -58.58.40.0/21 4134 -58.58.48.0/20 4134 -58.58.64.0/19 4134 -58.58.96.0/21 4134 -58.58.104.0/22 4134 -58.58.108.0/23 4134 -58.58.110.0/24 58540 -58.58.111.0/24 4134 -58.58.112.0/20 4134 -58.58.128.0/17 4134 -58.59.0.0/24 4134 -58.59.1.0/24 58540 -58.59.2.0/24 4134 -58.59.3.0/24 58540 -58.59.4.0/22 4134 -58.59.8.0/24 58540 -58.59.9.0/24 4134 -58.59.10.0/23 4134 -58.59.12.0/22 4134 -58.59.16.0/23 4134 -58.59.18.0/23 58540 -58.59.20.0/22 4134 -58.59.24.0/21 4134 -58.59.32.0/19 4134 -58.59.64.0/18 4134 -58.59.128.0/17 4134 -58.60.0.0/21 4134 -58.60.8.0/21 4816 -58.60.16.0/20 4134 -58.60.32.0/19 4134 -58.60.64.0/18 4134 -58.60.128.0/17 4134 -58.61.0.0/19 4134 -58.61.32.0/21 4816 -58.61.40.0/21 4134 -58.61.48.0/20 4134 -58.61.64.0/18 4134 -58.61.128.0/20 4134 -58.61.144.0/21 4134 -58.61.152.0/21 4816 -58.61.160.0/21 4816 -58.61.168.0/21 4134 -58.61.176.0/20 4134 -58.61.192.0/18 4134 -58.62.0.0/16 4134 -58.63.0.0/17 4134 -58.63.128.0/18 4134 -58.63.192.0/20 4813 -58.63.208.0/20 4134 -58.63.224.0/21 4134 -58.63.232.0/21 58466 -58.63.240.0/20 58466 -58.64.0.0/23 45430 -58.64.2.0/23 45458 -58.64.4.0/23 45458 -58.64.6.0/24 45430 -58.64.7.0/24 45458 -58.64.8.0/23 45458 -58.64.10.0/24 136040 -58.64.11.0/24 45430 -58.64.12.0/23 45430 -58.64.14.0/23 45458 -58.64.16.0/21 45458 -58.64.24.0/24 45430 -58.64.25.0/24 45458 -58.64.26.0/23 45458 -58.64.28.0/23 45458 -58.64.30.0/24 45458 -58.64.31.0/24 45430 -58.64.32.0/24 55545 -58.64.33.0/24 45458 -58.64.34.0/24 45255 -58.64.35.0/24 45458 -58.64.36.0/22 45458 -58.64.40.0/24 58930 -58.64.41.0/24 45458 -58.64.42.0/24 18256 -58.64.43.0/24 45458 -58.64.44.0/22 45458 -58.64.48.0/20 133481 -58.64.64.0/18 133481 -58.64.128.0/17 17444 -58.65.0.0/21 17645 -58.65.8.0/22 17645 -58.65.12.0/24 17645 -58.65.13.0/24 45794 -58.65.14.0/23 17645 -58.65.16.0/20 17645 -58.65.32.0/19 23777 -58.65.64.0/18 9694 -58.65.128.0/18 23674 -58.65.192.0/20 9541 -58.65.208.0/21 9541 -58.65.217.0/24 9541 -58.65.218.0/23 9541 -58.65.220.0/22 9541 -58.65.224.0/21 38054 -58.65.240.0/21 24535 -58.65.248.0/24 17987 -58.65.250.0/24 38332 -58.65.252.0/23 17987 -58.65.254.0/24 17987 -58.66.0.0/15 4134 -58.68.0.0/17 10201 -58.68.128.0/20 4808 -58.68.144.0/21 4808 -58.68.168.0/21 21859 -58.68.176.0/23 21859 -58.68.178.0/24 21859 -58.68.179.0/24 4808 -58.68.180.0/24 4808 -58.68.181.0/24 21859 -58.68.182.0/23 21859 -58.68.184.0/21 21859 -58.68.192.0/21 21859 -58.68.224.0/19 23724 -58.69.0.0/22 9299 -58.69.4.0/23 9299 -58.69.6.0/24 46071 -58.69.7.0/24 9299 -58.69.8.0/21 9299 -58.69.16.0/20 9299 -58.69.32.0/19 9299 -58.69.64.0/18 9299 -58.69.128.0/18 9299 -58.69.192.0/19 9299 -58.69.224.0/20 9299 -58.69.240.0/21 9299 -58.69.248.0/22 9299 -58.69.252.0/24 9299 -58.69.253.0/24 36776 -58.69.254.0/23 9299 -58.70.0.0/16 17511 -58.71.0.0/18 9299 -58.71.64.0/23 9299 -58.71.66.0/24 9299 -58.71.67.0/24 24456 -58.71.68.0/23 9299 -58.71.70.0/24 9299 -58.71.71.0/24 24451 -58.71.72.0/21 9299 -58.71.80.0/20 9299 -58.71.96.0/19 9299 -58.71.128.0/17 9534 -58.72.0.0/17 3786 -58.72.128.0/19 3786 -58.72.160.0/22 3786 -58.72.164.0/24 3786 -58.72.165.0/24 23584 -58.72.166.0/23 23584 -58.72.168.0/21 3786 -58.72.176.0/20 3786 -58.72.192.0/21 3786 -58.72.200.0/22 3786 -58.72.204.0/23 3786 -58.72.206.0/23 17615 -58.72.208.0/22 17615 -58.72.212.0/22 3786 -58.72.216.0/21 3786 -58.72.224.0/22 3786 -58.72.228.0/24 3786 -58.72.229.0/24 9638 -58.72.230.0/23 3786 -58.72.232.0/21 3786 -58.72.240.0/20 3786 -58.73.0.0/16 3786 -58.74.0.0/15 3786 -58.76.0.0/20 3786 -58.76.16.0/22 3786 -58.76.20.0/24 3786 -58.76.21.0/24 17586 -58.76.22.0/23 17586 -58.76.24.0/22 17586 -58.76.28.0/23 17586 -58.76.30.0/24 17586 -58.76.31.0/24 3786 -58.76.32.0/19 3786 -58.76.64.0/18 3786 -58.76.128.0/20 3786 -58.76.144.0/20 23584 -58.76.160.0/20 7562 -58.76.176.0/21 7562 -58.76.184.0/24 9762 -58.76.185.0/24 7562 -58.76.186.0/23 7562 -58.76.188.0/22 7562 -58.76.192.0/22 3786 -58.76.196.0/24 3786 -58.76.197.0/24 9638 -58.76.198.0/23 3786 -58.76.200.0/21 3786 -58.76.208.0/20 3786 -58.76.224.0/19 3786 -58.77.0.0/16 3786 -58.78.0.0/15 3786 -58.80.0.0/15 17506 -58.82.128.0/19 55423 -58.82.160.0/20 55423 -58.82.176.0/23 55423 -58.82.178.0/24 45642 -58.82.179.0/24 55423 -58.82.180.0/22 55423 -58.82.184.0/23 55423 -58.82.186.0/24 134718 -58.82.187.0/24 45455 -58.82.188.0/23 45455 -58.82.190.0/24 55423 -58.82.191.0/24 45629 -58.82.192.0/21 38277 -58.82.200.0/23 134705 -58.82.202.0/24 134705 -58.82.203.0/24 136743 -58.82.204.0/23 136743 -58.82.206.0/24 136743 -58.82.207.0/24 134705 -58.82.208.0/24 134705 -58.82.209.0/24 26484 -58.82.210.0/24 26484 -58.82.211.0/24 134705 -58.82.212.0/22 134705 -58.82.216.0/22 134705 -58.82.224.0/21 134705 -58.82.232.0/22 134548 -58.82.236.0/22 134705 -58.82.240.0/23 134705 -58.82.242.0/23 26484 -58.82.244.0/22 134705 -58.82.248.0/22 134705 -58.83.17.0/24 4837 -58.83.128.0/17 4835 -58.84.4.0/24 17408 -58.84.5.0/24 136758 -58.84.6.0/23 134700 -58.84.12.0/23 133668 -58.84.14.0/23 134006 -58.84.16.0/22 38182 -58.84.20.0/22 9829 -58.84.28.0/22 17539 -58.84.32.0/22 59249 -58.84.36.0/22 45179 -58.84.40.0/22 45352 -58.84.48.0/22 131227 -58.84.52.0/22 134705 -58.84.56.0/22 134269 -58.84.60.0/22 134343 -58.84.64.0/18 7545 -58.84.128.0/18 45763 -58.84.192.0/20 45763 -58.84.208.0/20 45603 -58.84.224.0/20 24111 -58.84.254.0/23 55895 -58.85.0.0/16 9617 -58.86.0.0/16 18042 -58.87.0.0/23 45411 -58.87.2.0/23 9723 -58.87.4.0/23 45411 -58.87.6.0/23 9723 -58.87.8.0/21 9723 -58.87.16.0/20 23777 -58.87.32.0/20 9524 -58.87.48.0/21 9524 -58.87.56.0/23 9524 -58.87.58.0/24 3786 -58.87.59.0/24 9524 -58.87.60.0/22 9524 -58.87.64.0/18 45090 -58.87.128.0/17 2527 -58.88.0.0/13 4713 -58.96.0.0/17 10143 -58.96.128.0/19 9224 -58.96.192.0/18 55430 -58.97.0.0/21 7470 -58.97.8.0/24 7470 -58.97.9.0/24 45173 -58.97.10.0/23 7470 -58.97.12.0/22 7470 -58.97.16.0/22 7470 -58.97.20.0/24 38554 -58.97.21.0/24 7470 -58.97.22.0/23 7470 -58.97.24.0/21 7470 -58.97.32.0/22 7470 -58.97.36.0/24 7470 -58.97.37.0/24 18197 -58.97.38.0/24 7470 -58.97.39.0/24 38599 -58.97.40.0/21 7470 -58.97.48.0/21 7470 -58.97.56.0/22 7470 -58.97.60.0/23 7470 -58.97.62.0/24 38543 -58.97.63.0/24 7470 -58.97.64.0/19 7470 -58.97.96.0/20 7470 -58.97.112.0/21 7470 -58.97.120.0/23 7470 -58.97.122.0/24 55916 -58.97.123.0/24 7470 -58.97.124.0/22 7470 -58.97.141.0/24 45904 -58.97.142.0/24 45904 -58.97.144.0/20 55303 -58.97.160.0/23 9927 -58.97.162.0/24 58884 -58.97.163.0/24 9927 -58.97.164.0/24 9927 -58.97.166.0/23 9927 -58.97.168.0/21 9927 -58.97.176.0/20 9927 -58.97.249.0/24 45904 -58.97.250.0/23 45904 -58.97.252.0/22 45904 -58.98.0.0/16 9595 -58.99.0.0/17 18049 -58.99.128.0/18 4134 -58.99.192.0/19 4134 -58.99.224.0/20 4134 -58.99.240.0/21 4134 -58.99.248.0/22 4134 -58.99.252.0/23 4134 -58.99.254.0/23 58466 -58.100.0.0/15 24139 -58.102.0.0/18 18302 -58.102.64.0/21 18302 -58.102.72.0/22 18302 -58.102.76.0/24 18302 -58.102.77.0/24 38092 -58.102.78.0/23 38092 -58.102.80.0/22 38092 -58.102.84.0/22 18302 -58.102.88.0/21 18302 -58.102.96.0/22 18302 -58.102.100.0/22 45393 -58.102.104.0/21 18302 -58.102.112.0/20 18302 -58.102.128.0/23 23580 -58.102.130.0/23 18302 -58.102.132.0/23 18302 -58.102.134.0/24 18302 -58.102.135.0/24 9318 -58.102.136.0/21 18302 -58.102.144.0/20 18302 -58.102.160.0/19 18302 -58.102.192.0/22 18302 -58.102.196.0/23 18302 -58.102.198.0/24 18302 -58.102.199.0/24 38120 -58.102.200.0/23 38120 -58.102.202.0/23 18302 -58.102.204.0/22 18302 -58.102.208.0/20 18302 -58.102.224.0/23 18302 -58.102.226.0/24 23990 -58.102.227.0/24 18302 -58.102.228.0/24 18302 -58.102.229.0/24 45388 -58.102.230.0/23 45388 -58.102.232.0/21 18302 -58.102.240.0/20 18302 -58.103.0.0/23 18302 -58.103.2.0/23 46009 -58.103.4.0/22 46009 -58.103.8.0/22 46009 -58.103.12.0/22 18302 -58.103.16.0/20 18302 -58.103.32.0/19 18302 -58.103.64.0/18 18302 -58.103.128.0/19 18302 -58.103.160.0/21 9708 -58.103.168.0/23 9708 -58.103.170.0/23 18302 -58.103.172.0/22 18302 -58.103.176.0/23 38127 -58.103.178.0/24 38127 -58.103.179.0/24 18302 -58.103.180.0/22 18302 -58.103.184.0/21 18302 -58.103.192.0/18 18302 -58.104.0.0/13 4804 -58.112.0.0/15 9595 -58.114.0.0/16 9416 -58.115.0.0/21 9416 -58.115.8.0/21 38851 -58.115.16.0/20 38851 -58.115.32.0/19 38851 -58.115.64.0/18 9416 -58.115.128.0/18 9416 -58.115.192.0/20 38851 -58.115.208.0/20 9416 -58.115.224.0/19 9416 -58.116.0.0/14 4847 -58.120.0.0/19 9318 -58.120.32.0/21 9318 -58.120.40.0/22 9318 -58.120.44.0/23 9318 -58.120.46.0/24 9318 -58.120.47.0/24 45399 -58.120.48.0/20 9318 -58.120.64.0/18 9318 -58.120.128.0/19 9318 -58.120.160.0/22 9318 -58.120.164.0/24 9318 -58.120.165.0/24 45407 -58.120.166.0/23 9318 -58.120.168.0/21 9318 -58.120.176.0/20 9318 -58.120.192.0/18 9318 -58.121.0.0/16 9318 -58.122.0.0/16 9318 -58.123.0.0/17 9318 -58.123.128.0/19 9318 -58.123.160.0/20 9318 -58.123.176.0/22 9318 -58.123.180.0/23 9318 -58.123.182.0/24 9318 -58.123.183.0/24 38389 -58.123.184.0/22 9318 -58.123.188.0/23 9318 -58.123.190.0/24 9318 -58.123.191.0/24 9841 -58.123.192.0/18 9318 -58.124.0.0/17 9318 -58.124.128.0/18 9318 -58.124.192.0/19 9318 -58.124.224.0/20 9318 -58.124.240.0/21 9318 -58.124.248.0/24 9318 -58.124.249.0/24 9526 -58.124.250.0/24 9526 -58.124.251.0/24 9318 -58.124.252.0/22 9318 -58.125.0.0/16 9318 -58.126.0.0/16 9318 -58.127.0.0/17 9318 -58.127.128.0/19 9318 -58.127.160.0/24 9318 -58.127.161.0/24 10169 -58.127.162.0/23 9318 -58.127.164.0/22 9318 -58.127.168.0/21 9318 -58.127.176.0/20 9318 -58.127.192.0/18 9318 -58.128.0.0/13 4847 -58.137.0.0/20 4750 -58.137.16.0/21 4750 -58.137.24.0/22 4750 -58.137.28.0/23 4750 -58.137.30.0/24 4750 -58.137.31.0/24 131460 -58.137.32.0/24 4750 -58.137.33.0/24 56223 -58.137.34.0/23 4750 -58.137.36.0/22 4750 -58.137.40.0/21 4750 -58.137.48.0/24 24097 -58.137.49.0/24 4750 -58.137.50.0/23 4750 -58.137.52.0/22 4750 -58.137.56.0/22 4750 -58.137.60.0/24 45255 -58.137.61.0/24 4750 -58.137.62.0/24 56223 -58.137.63.0/24 4750 -58.137.64.0/24 4750 -58.137.65.0/24 45530 -58.137.66.0/24 23891 -58.137.67.0/24 4750 -58.137.68.0/24 4750 -58.137.69.0/24 24455 -58.137.70.0/23 4750 -58.137.72.0/22 4750 -58.137.76.0/23 4750 -58.137.78.0/24 4750 -58.137.79.0/24 136457 -58.137.80.0/21 4750 -58.137.88.0/22 4750 -58.137.92.0/23 4750 -58.137.94.0/24 4750 -58.137.95.0/24 45959 -58.137.96.0/24 56112 -58.137.97.0/24 4750 -58.137.98.0/23 4750 -58.137.100.0/22 4750 -58.137.104.0/22 4750 -58.137.108.0/24 17980 -58.137.109.0/24 4750 -58.137.110.0/24 55868 -58.137.111.0/24 4750 -58.137.112.0/21 4750 -58.137.120.0/22 4750 -58.137.124.0/23 4750 -58.137.126.0/24 4750 -58.137.127.0/24 131460 -58.137.128.0/22 4750 -58.137.132.0/23 4750 -58.137.134.0/24 18408 -58.137.135.0/24 4750 -58.137.136.0/24 45806 -58.137.137.0/24 4750 -58.137.138.0/23 4750 -58.137.140.0/22 4750 -58.137.144.0/23 4750 -58.137.146.0/24 4750 -58.137.147.0/24 46013 -58.137.148.0/22 4750 -58.137.152.0/24 131460 -58.137.153.0/24 4750 -58.137.154.0/23 4750 -58.137.156.0/23 4750 -58.137.158.0/24 4750 -58.137.159.0/24 45173 -58.137.160.0/24 4750 -58.137.161.0/24 7630 -58.137.162.0/23 4750 -58.137.164.0/23 4750 -58.137.166.0/24 135620 -58.137.167.0/24 4750 -58.137.168.0/21 4750 -58.137.176.0/23 4750 -58.137.178.0/24 45265 -58.137.179.0/24 4750 -58.137.180.0/22 4750 -58.137.184.0/24 4750 -58.137.185.0/24 46013 -58.137.186.0/24 4750 -58.137.187.0/24 55634 -58.137.188.0/22 4750 -58.137.192.0/22 4750 -58.137.196.0/24 37977 -58.137.197.0/24 37983 -58.137.198.0/24 4750 -58.137.199.0/24 55916 -58.137.200.0/24 4750 -58.137.201.0/24 38543 -58.137.202.0/23 4750 -58.137.204.0/24 4750 -58.137.205.0/24 10151 -58.137.206.0/23 4750 -58.137.208.0/21 4750 -58.137.216.0/24 24083 -58.137.217.0/24 4750 -58.137.218.0/24 4750 -58.137.219.0/24 38231 -58.137.220.0/23 4750 -58.137.222.0/24 4750 -58.137.223.0/24 45520 -58.137.224.0/19 4750 -58.138.0.0/17 2497 -58.138.128.0/18 2497 -58.138.192.0/18 9765 -58.139.240.0/20 23736 -58.140.0.0/18 10036 -58.140.64.0/20 10036 -58.140.80.0/21 10036 -58.140.88.0/22 7562 -58.140.92.0/22 10036 -58.140.96.0/24 9569 -58.140.97.0/24 7562 -58.140.98.0/24 7562 -58.140.99.0/24 9569 -58.140.100.0/22 10036 -58.140.104.0/21 10036 -58.140.112.0/20 10036 -58.140.128.0/18 10036 -58.140.192.0/20 10036 -58.140.208.0/21 10036 -58.140.216.0/23 10036 -58.140.218.0/23 7562 -58.140.220.0/22 10036 -58.140.224.0/19 10036 -58.141.0.0/18 10036 -58.141.64.0/20 10036 -58.141.80.0/22 10036 -58.141.84.0/22 7562 -58.141.88.0/24 9569 -58.141.89.0/24 7562 -58.141.90.0/23 7562 -58.141.92.0/22 7562 -58.141.96.0/20 7562 -58.141.112.0/24 9569 -58.141.113.0/24 7562 -58.141.114.0/23 7562 -58.141.116.0/22 7562 -58.141.120.0/23 7562 -58.141.122.0/24 3786 -58.141.123.0/24 7562 -58.141.124.0/23 7562 -58.141.126.0/24 9569 -58.141.127.0/24 7562 -58.141.128.0/22 7562 -58.141.132.0/23 7562 -58.141.134.0/23 10036 -58.141.136.0/21 10036 -58.141.144.0/20 10036 -58.141.160.0/19 10036 -58.141.192.0/19 10036 -58.141.224.0/21 10036 -58.141.232.0/22 7562 -58.141.236.0/22 10036 -58.141.240.0/22 10036 -58.141.244.0/22 7562 -58.141.248.0/21 10036 -58.142.0.0/18 10036 -58.142.64.0/19 10036 -58.142.96.0/20 10036 -58.142.112.0/21 10036 -58.142.120.0/22 10036 -58.142.124.0/22 7562 -58.142.128.0/17 10036 -58.143.0.0/16 10036 -58.144.0.0/16 4837 -58.145.0.0/19 9689 -58.145.32.0/20 9689 -58.145.48.0/21 9689 -58.145.56.0/24 38097 -58.145.57.0/24 9689 -58.145.58.0/23 9689 -58.145.60.0/22 9689 -58.145.64.0/18 9689 -58.145.128.0/19 4804 -58.145.160.0/21 59108 -58.145.168.0/22 46054 -58.145.174.0/23 46054 -58.145.176.0/21 17676 -58.145.184.0/21 24432 -58.145.195.0/24 4637 -58.145.196.0/24 4637 -58.145.198.0/23 4637 -58.145.200.0/22 4637 -58.145.205.0/24 4637 -58.145.225.0/24 4637 -58.145.226.0/23 4628 -58.145.228.0/24 4637 -58.145.229.0/24 4628 -58.145.230.0/23 4628 -58.145.232.0/23 4628 -58.145.234.0/24 4637 -58.145.235.0/24 4628 -58.145.236.0/22 4628 -58.146.0.0/18 17529 -58.146.64.0/19 17529 -58.146.96.0/19 24554 -58.146.128.0/18 10091 -58.146.192.0/18 9698 -58.147.128.0/20 17411 -58.147.144.0/24 17411 -58.147.146.0/23 17411 -58.147.148.0/23 17411 -58.147.158.0/24 206283 -58.147.159.0/24 198247 -58.147.160.0/21 37891 -58.147.168.0/21 38071 -58.147.176.0/24 18168 -58.147.180.0/22 18168 -58.147.184.0/22 24534 -58.147.188.0/23 24534 -58.147.191.0/24 24534 -58.147.192.0/18 7671 -58.148.0.0/16 17858 -58.149.0.0/16 3786 -58.150.0.0/19 3786 -58.150.32.0/20 3786 -58.150.48.0/21 3786 -58.150.56.0/23 3786 -58.150.58.0/24 9647 -58.150.59.0/24 3786 -58.150.60.0/22 3786 -58.150.64.0/18 3786 -58.150.128.0/18 3786 -58.150.192.0/19 3786 -58.150.224.0/20 3786 -58.150.240.0/23 3786 -58.150.242.0/24 3786 -58.150.243.0/24 9866 -58.150.244.0/22 3786 -58.150.248.0/21 9982 -58.151.0.0/16 3786 -58.152.0.0/21 4515 -58.152.8.0/21 4760 -58.152.16.0/20 4760 -58.152.32.0/19 4760 -58.152.64.0/18 4760 -58.152.128.0/17 4760 -58.153.0.0/16 4760 -58.154.0.0/15 4538 -58.156.0.0/14 17506 -58.160.0.0/12 1221 -58.176.0.0/16 9269 -58.177.0.0/17 9269 -58.177.128.0/19 9269 -58.177.160.0/20 9269 -58.177.176.0/21 10103 -58.177.184.0/23 9269 -58.177.186.0/24 10103 -58.177.187.0/24 9269 -58.177.188.0/22 9269 -58.177.192.0/18 9269 -58.178.0.0/15 9443 -58.180.0.0/20 4670 -58.180.16.0/22 4670 -58.180.20.0/23 4670 -58.180.22.0/24 4664 -58.180.23.0/24 4670 -58.180.24.0/21 4670 -58.180.32.0/19 4670 -58.180.64.0/18 4670 -58.180.128.0/22 4670 -58.180.132.0/24 4670 -58.180.133.0/24 9848 -58.180.134.0/23 4670 -58.180.136.0/21 4670 -58.180.144.0/20 4670 -58.180.160.0/20 4670 -58.180.176.0/21 4670 -58.180.184.0/22 4670 -58.180.188.0/24 9842 -58.180.189.0/24 4670 -58.180.190.0/24 4670 -58.180.191.0/24 9842 -58.180.192.0/19 4670 -58.180.224.0/22 4664 -58.180.228.0/22 4670 -58.180.232.0/21 4670 -58.180.240.0/20 4670 -58.181.0.0/18 17877 -58.181.65.0/24 24570 -58.181.69.0/24 24570 -58.181.71.0/24 10223 -58.181.72.0/24 24570 -58.181.73.0/24 10143 -58.181.77.0/24 24570 -58.181.80.0/24 24570 -58.181.96.0/23 17557 -58.181.98.0/24 58895 -58.181.99.0/24 17557 -58.181.100.0/22 17557 -58.181.104.0/22 17557 -58.181.108.0/22 45595 -58.181.112.0/24 45595 -58.181.114.0/23 17557 -58.181.124.0/24 17557 -58.181.128.0/20 7693 -58.181.144.0/21 7693 -58.181.152.0/23 7693 -58.181.154.0/24 38554 -58.181.155.0/24 7693 -58.181.156.0/22 7693 -58.181.160.0/20 7693 -58.181.176.0/23 7693 -58.181.178.0/24 45471 -58.181.179.0/24 7693 -58.181.180.0/22 7693 -58.181.184.0/21 7693 -58.181.192.0/21 7693 -58.181.200.0/23 7693 -58.181.202.0/24 7693 -58.181.203.0/24 58544 -58.181.204.0/22 7693 -58.181.208.0/24 7693 -58.181.209.0/24 38599 -58.181.210.0/23 7693 -58.181.212.0/22 7693 -58.181.216.0/21 7693 -58.181.224.0/24 7693 -58.181.225.0/24 38599 -58.181.226.0/23 7693 -58.181.228.0/22 7693 -58.181.232.0/21 7693 -58.181.240.0/20 7693 -58.182.0.0/16 55430 -58.183.0.0/16 18144 -58.184.0.0/23 9950 -58.184.2.0/24 3786 -58.184.3.0/24 9950 -58.184.4.0/22 9950 -58.184.8.0/23 9950 -58.184.10.0/24 9950 -58.184.11.0/24 3786 -58.184.12.0/22 9950 -58.184.16.0/20 9950 -58.184.32.0/19 9950 -58.184.64.0/21 9950 -58.184.72.0/22 9950 -58.184.76.0/24 3786 -58.184.77.0/24 9950 -58.184.78.0/23 9950 -58.184.80.0/20 9950 -58.184.96.0/21 9950 -58.184.104.0/22 9950 -58.184.108.0/24 10043 -58.184.109.0/24 9950 -58.184.110.0/23 9950 -58.184.112.0/24 9950 -58.184.113.0/24 3786 -58.184.114.0/23 9950 -58.184.116.0/23 9950 -58.184.118.0/24 38102 -58.184.119.0/24 9950 -58.184.120.0/24 9950 -58.184.121.0/24 17841 -58.184.122.0/23 9950 -58.184.124.0/22 9950 -58.184.128.0/23 9950 -58.184.130.0/24 9950 -58.184.131.0/24 3786 -58.184.132.0/22 9950 -58.184.136.0/21 9950 -58.184.144.0/23 9950 -58.184.146.0/23 3786 -58.184.148.0/23 3786 -58.184.150.0/23 9950 -58.184.152.0/21 9950 -58.184.160.0/19 9950 -58.184.192.0/18 9950 -58.185.0.0/16 3758 -58.186.0.0/15 18403 -58.188.0.0/14 17511 -58.192.0.0/14 4538 -58.196.0.0/17 4538 -58.196.128.0/19 4538 -58.196.160.0/20 4538 -58.196.176.0/23 24364 -58.196.178.0/24 24364 -58.196.179.0/24 4538 -58.196.180.0/22 4538 -58.196.184.0/21 4538 -58.196.192.0/18 4538 -58.197.0.0/16 4538 -58.198.0.0/15 4538 -58.200.0.0/18 4538 -58.200.64.0/19 4538 -58.200.96.0/21 4538 -58.200.104.0/22 4538 -58.200.108.0/23 4538 -58.200.110.0/24 4538 -58.200.111.0/24 24361 -58.200.112.0/20 4538 -58.200.128.0/18 4538 -58.200.192.0/20 4538 -58.200.208.0/21 4538 -58.200.216.0/24 9406 -58.200.217.0/24 4538 -58.200.218.0/23 4538 -58.200.220.0/22 4538 -58.200.224.0/19 4538 -58.201.0.0/16 4538 -58.202.0.0/15 4538 -58.204.0.0/14 4538 -58.208.0.0/19 4134 -58.208.32.0/20 4134 -58.208.48.0/21 4134 -58.208.56.0/22 4134 -58.208.60.0/24 23650 -58.208.61.0/24 4134 -58.208.62.0/23 4134 -58.208.64.0/20 4134 -58.208.80.0/22 4134 -58.208.84.0/23 23650 -58.208.86.0/23 4134 -58.208.88.0/21 4134 -58.208.96.0/19 4134 -58.208.128.0/17 4134 -58.209.0.0/18 4134 -58.209.64.0/20 4134 -58.209.80.0/22 23650 -58.209.84.0/22 4134 -58.209.88.0/21 4134 -58.209.96.0/19 4134 -58.209.128.0/18 4134 -58.209.192.0/20 4134 -58.209.208.0/21 4134 -58.209.216.0/22 4134 -58.209.220.0/23 4134 -58.209.222.0/24 4134 -58.209.223.0/24 23650 -58.209.224.0/21 4134 -58.209.232.0/23 4134 -58.209.234.0/24 23650 -58.209.235.0/24 4134 -58.209.236.0/22 4134 -58.209.240.0/21 4134 -58.209.248.0/23 4134 -58.209.250.0/24 23650 -58.209.251.0/24 4134 -58.209.252.0/22 4134 -58.210.0.0/16 4134 -58.211.0.0/21 23650 -58.211.8.0/23 4134 -58.211.10.0/24 4134 -58.211.11.0/24 23650 -58.211.12.0/22 23650 -58.211.16.0/21 23650 -58.211.24.0/21 4134 -58.211.32.0/19 4134 -58.211.64.0/21 4134 -58.211.72.0/22 23650 -58.211.76.0/24 4134 -58.211.77.0/24 23650 -58.211.78.0/23 23650 -58.211.80.0/22 23650 -58.211.84.0/23 23650 -58.211.86.0/23 4134 -58.211.88.0/21 4134 -58.211.96.0/19 4134 -58.211.128.0/21 4134 -58.211.136.0/22 23650 -58.211.140.0/24 4134 -58.211.141.0/24 23650 -58.211.142.0/23 4134 -58.211.144.0/20 4134 -58.211.160.0/19 4134 -58.211.192.0/20 4134 -58.211.208.0/22 4134 -58.211.212.0/23 4134 -58.211.214.0/24 4134 -58.211.215.0/24 134770 -58.211.216.0/21 4134 -58.211.224.0/19 4134 -58.212.0.0/21 4134 -58.212.8.0/23 137702 -58.212.10.0/23 4134 -58.212.12.0/22 4134 -58.212.16.0/20 4134 -58.212.32.0/21 4134 -58.212.40.0/22 4134 -58.212.44.0/23 4134 -58.212.46.0/24 4134 -58.212.47.0/24 134756 -58.212.48.0/20 4134 -58.212.64.0/22 4134 -58.212.68.0/23 4134 -58.212.70.0/24 134756 -58.212.71.0/24 4134 -58.212.72.0/21 4134 -58.212.80.0/22 4134 -58.212.84.0/23 137702 -58.212.86.0/23 4134 -58.212.88.0/21 4134 -58.212.96.0/19 4134 -58.212.128.0/23 4134 -58.212.130.0/23 137702 -58.212.132.0/22 4134 -58.212.136.0/21 4134 -58.212.144.0/20 4134 -58.212.160.0/20 4134 -58.212.176.0/23 4134 -58.212.178.0/24 4134 -58.212.179.0/24 134756 -58.212.180.0/22 4134 -58.212.184.0/21 4134 -58.212.192.0/21 4134 -58.212.200.0/22 4134 -58.212.204.0/23 4134 -58.212.206.0/24 4134 -58.212.207.0/24 134756 -58.212.208.0/20 4134 -58.212.224.0/19 4134 -58.213.0.0/24 4134 -58.213.1.0/24 134756 -58.213.2.0/23 134756 -58.213.4.0/24 134756 -58.213.5.0/24 4134 -58.213.6.0/23 4134 -58.213.8.0/21 4134 -58.213.16.0/20 4134 -58.213.32.0/19 4134 -58.213.64.0/20 4134 -58.213.80.0/21 4134 -58.213.88.0/22 4134 -58.213.92.0/23 4134 -58.213.94.0/23 134756 -58.213.96.0/22 134756 -58.213.100.0/23 134756 -58.213.102.0/23 4134 -58.213.104.0/21 4134 -58.213.112.0/20 4134 -58.213.128.0/17 4134 -58.214.0.0/16 4134 -58.215.0.0/19 4134 -58.215.32.0/23 23650 -58.215.34.0/23 138950 -58.215.36.0/24 138950 -58.215.37.0/24 4134 -58.215.38.0/24 4134 -58.215.39.0/24 138950 -58.215.40.0/22 138950 -58.215.44.0/23 138950 -58.215.46.0/24 138950 -58.215.47.0/24 23650 -58.215.48.0/21 138950 -58.215.56.0/23 23650 -58.215.58.0/23 4134 -58.215.60.0/23 23650 -58.215.62.0/24 23650 -58.215.63.0/24 4134 -58.215.64.0/21 4134 -58.215.72.0/24 4134 -58.215.73.0/24 23650 -58.215.74.0/23 4134 -58.215.76.0/23 4134 -58.215.78.0/24 4134 -58.215.79.0/24 23650 -58.215.80.0/23 4134 -58.215.82.0/24 4134 -58.215.83.0/24 23650 -58.215.84.0/23 4134 -58.215.86.0/23 23650 -58.215.88.0/21 23650 -58.215.96.0/20 23650 -58.215.112.0/21 23650 -58.215.120.0/22 23650 -58.215.124.0/23 23650 -58.215.126.0/24 4134 -58.215.127.0/24 23650 -58.215.128.0/24 23650 -58.215.129.0/24 4134 -58.215.130.0/23 4134 -58.215.132.0/24 4134 -58.215.133.0/24 23650 -58.215.134.0/24 23650 -58.215.135.0/24 4134 -58.215.136.0/21 138950 -58.215.144.0/22 23650 -58.215.148.0/23 4134 -58.215.150.0/24 4134 -58.215.151.0/24 23650 -58.215.152.0/24 4134 -58.215.153.0/24 23650 -58.215.154.0/24 4134 -58.215.155.0/24 23650 -58.215.156.0/24 4134 -58.215.157.0/24 23650 -58.215.158.0/23 23650 -58.215.160.0/19 138950 -58.215.192.0/18 4134 -58.216.0.0/24 134769 -58.216.1.0/24 4134 -58.216.2.0/23 23650 -58.216.4.0/24 23650 -58.216.5.0/24 4134 -58.216.6.0/23 4134 -58.216.8.0/21 23650 -58.216.16.0/24 23650 -58.216.17.0/24 4134 -58.216.18.0/23 4134 -58.216.20.0/22 23650 -58.216.24.0/23 4134 -58.216.26.0/24 134769 -58.216.27.0/24 4134 -58.216.28.0/24 23650 -58.216.29.0/24 4134 -58.216.30.0/23 4134 -58.216.32.0/23 23650 -58.216.34.0/23 4134 -58.216.36.0/22 4134 -58.216.40.0/22 4134 -58.216.44.0/24 4134 -58.216.45.0/24 23650 -58.216.46.0/24 23650 -58.216.47.0/24 134769 -58.216.48.0/22 4134 -58.216.52.0/23 4134 -58.216.54.0/24 4134 -58.216.55.0/24 23650 -58.216.56.0/21 4134 -58.216.64.0/24 4134 -58.216.65.0/24 23650 -58.216.66.0/24 23650 -58.216.67.0/24 4134 -58.216.68.0/22 4134 -58.216.72.0/21 4134 -58.216.80.0/22 4134 -58.216.84.0/23 4134 -58.216.86.0/24 4134 -58.216.87.0/24 134769 -58.216.88.0/22 134769 -58.216.92.0/23 134769 -58.216.94.0/24 4134 -58.216.95.0/24 23650 -58.216.96.0/23 4134 -58.216.98.0/24 4134 -58.216.99.0/24 23650 -58.216.100.0/24 4134 -58.216.101.0/24 23650 -58.216.102.0/24 23650 -58.216.103.0/24 4134 -58.216.104.0/24 4134 -58.216.105.0/24 134769 -58.216.106.0/24 134769 -58.216.107.0/24 4134 -58.216.108.0/24 4134 -58.216.109.0/24 23650 -58.216.110.0/23 23650 -58.216.112.0/22 4134 -58.216.116.0/24 134769 -58.216.117.0/24 4134 -58.216.118.0/24 23650 -58.216.119.0/24 134769 -58.216.120.0/22 4134 -58.216.124.0/24 23650 -58.216.125.0/24 4134 -58.216.126.0/23 4134 -58.216.128.0/17 4134 -58.217.0.0/17 4134 -58.217.128.0/23 4134 -58.217.130.0/24 137702 -58.217.131.0/24 4134 -58.217.132.0/22 137702 -58.217.136.0/22 137702 -58.217.140.0/24 137702 -58.217.141.0/24 4134 -58.217.142.0/24 137702 -58.217.143.0/24 4134 -58.217.144.0/21 4134 -58.217.152.0/22 4134 -58.217.156.0/22 137702 -58.217.160.0/22 137702 -58.217.164.0/23 137702 -58.217.166.0/24 137702 -58.217.167.0/24 4134 -58.217.168.0/21 4134 -58.217.176.0/21 137702 -58.217.184.0/24 4134 -58.217.185.0/24 137702 -58.217.186.0/24 4134 -58.217.187.0/24 137702 -58.217.188.0/23 4134 -58.217.190.0/24 137702 -58.217.191.0/24 4134 -58.217.192.0/21 137702 -58.217.200.0/21 134756 -58.217.208.0/20 137702 -58.217.224.0/24 137702 -58.217.225.0/24 4134 -58.217.226.0/23 4134 -58.217.228.0/23 4134 -58.217.230.0/24 137702 -58.217.231.0/24 4134 -58.217.232.0/23 137702 -58.217.234.0/23 4134 -58.217.236.0/22 137702 -58.217.240.0/22 137702 -58.217.244.0/23 137702 -58.217.246.0/24 137702 -58.217.247.0/24 4134 -58.217.248.0/23 4134 -58.217.250.0/23 137702 -58.217.252.0/24 4134 -58.217.253.0/24 137702 -58.217.254.0/24 137702 -58.217.255.0/24 4134 -58.218.0.0/20 4134 -58.218.16.0/21 4134 -58.218.24.0/22 4134 -58.218.28.0/24 23650 -58.218.29.0/24 4134 -58.218.30.0/23 4134 -58.218.32.0/19 4134 -58.218.64.0/18 4134 -58.218.128.0/18 4134 -58.218.192.0/22 4134 -58.218.196.0/23 4134 -58.218.198.0/24 23650 -58.218.199.0/24 4134 -58.218.200.0/21 4134 -58.218.208.0/20 4134 -58.218.224.0/19 4134 -58.219.0.0/16 4134 -58.220.0.0/22 137697 -58.220.4.0/24 137697 -58.220.5.0/24 4134 -58.220.6.0/24 4134 -58.220.7.0/24 137697 -58.220.8.0/21 137697 -58.220.16.0/22 137697 -58.220.20.0/23 137697 -58.220.22.0/24 4134 -58.220.23.0/24 137697 -58.220.24.0/21 137697 -58.220.32.0/20 137697 -58.220.48.0/21 137697 -58.220.56.0/22 137697 -58.220.60.0/24 4134 -58.220.61.0/24 137697 -58.220.62.0/23 137697 -58.220.64.0/20 137697 -58.220.80.0/22 137697 -58.220.84.0/22 4134 -58.220.88.0/22 4134 -58.220.92.0/22 137697 -58.220.96.0/19 4134 -58.220.128.0/18 4134 -58.220.192.0/20 4134 -58.220.208.0/21 4134 -58.220.216.0/22 4134 -58.220.220.0/24 137697 -58.220.221.0/24 4134 -58.220.222.0/23 4134 -58.220.224.0/19 4134 -58.221.0.0/20 4134 -58.221.16.0/21 4134 -58.221.24.0/22 4134 -58.221.28.0/24 131325 -58.221.29.0/24 4134 -58.221.30.0/24 131325 -58.221.31.0/24 4134 -58.221.32.0/24 131325 -58.221.33.0/24 23650 -58.221.34.0/23 23650 -58.221.36.0/22 131325 -58.221.40.0/24 131325 -58.221.41.0/24 23650 -58.221.42.0/23 131325 -58.221.44.0/24 131325 -58.221.45.0/24 23650 -58.221.46.0/23 131325 -58.221.48.0/24 4134 -58.221.49.0/24 131325 -58.221.50.0/23 131325 -58.221.52.0/23 131325 -58.221.54.0/24 23650 -58.221.55.0/24 131325 -58.221.56.0/24 23650 -58.221.57.0/24 131325 -58.221.58.0/24 131325 -58.221.59.0/24 23650 -58.221.60.0/23 23650 -58.221.62.0/24 23650 -58.221.63.0/24 131325 -58.221.64.0/22 23650 -58.221.68.0/23 23650 -58.221.70.0/24 4134 -58.221.71.0/24 23650 -58.221.72.0/24 131325 -58.221.73.0/24 4134 -58.221.74.0/23 4134 -58.221.76.0/24 4134 -58.221.77.0/24 23650 -58.221.78.0/23 23650 -58.221.80.0/20 4134 -58.221.96.0/19 4134 -58.221.128.0/20 4134 -58.221.144.0/23 4134 -58.221.146.0/24 4809 -58.221.147.0/24 4134 -58.221.148.0/22 4134 -58.221.152.0/21 4134 -58.221.160.0/19 4134 -58.221.192.0/19 4134 -58.221.224.0/20 4134 -58.221.240.0/22 4134 -58.221.244.0/23 4134 -58.221.246.0/24 23650 -58.221.247.0/24 4134 -58.221.248.0/21 4134 -58.222.0.0/16 4134 -58.223.0.0/18 4134 -58.223.64.0/19 4134 -58.223.96.0/20 4134 -58.223.112.0/21 4134 -58.223.120.0/22 4134 -58.223.124.0/24 4134 -58.223.125.0/24 131325 -58.223.126.0/24 131325 -58.223.127.0/24 4134 -58.223.128.0/17 4134 -58.224.0.0/18 9318 -58.224.64.0/19 9318 -58.224.96.0/20 9318 -58.224.112.0/22 9318 -58.224.116.0/22 55615 -58.224.120.0/24 55615 -58.224.121.0/24 9318 -58.224.122.0/24 9318 -58.224.123.0/24 55615 -58.224.124.0/22 9318 -58.224.128.0/21 9318 -58.224.136.0/22 9318 -58.224.140.0/23 9318 -58.224.142.0/24 55615 -58.224.143.0/24 9318 -58.224.144.0/20 9318 -58.224.160.0/23 55615 -58.224.162.0/24 55615 -58.224.163.0/24 9318 -58.224.164.0/22 9318 -58.224.168.0/21 9318 -58.224.176.0/20 9318 -58.224.192.0/18 9318 -58.225.0.0/21 9318 -58.225.8.0/23 9318 -58.225.10.0/23 9647 -58.225.12.0/22 9318 -58.225.16.0/20 9318 -58.225.32.0/19 9318 -58.225.64.0/18 9318 -58.225.128.0/17 9318 -58.226.0.0/17 9318 -58.226.128.0/18 9318 -58.226.192.0/20 9318 -58.226.208.0/22 9318 -58.226.212.0/24 9318 -58.226.213.0/24 45399 -58.226.214.0/23 9318 -58.226.216.0/21 9318 -58.226.224.0/19 9318 -58.227.0.0/18 9318 -58.227.64.0/21 9318 -58.227.72.0/23 9318 -58.227.74.0/24 45375 -58.227.75.0/24 9318 -58.227.76.0/22 9318 -58.227.80.0/20 9318 -58.227.96.0/19 9318 -58.227.128.0/19 9318 -58.227.160.0/20 9318 -58.227.176.0/23 9318 -58.227.178.0/24 9966 -58.227.179.0/24 9318 -58.227.180.0/22 9318 -58.227.184.0/21 9318 -58.227.192.0/20 9318 -58.227.208.0/21 9318 -58.227.216.0/22 9318 -58.227.220.0/23 9318 -58.227.222.0/24 9318 -58.227.223.0/24 55632 -58.227.224.0/19 9318 -58.228.0.0/16 9318 -58.229.0.0/18 9318 -58.229.64.0/19 9318 -58.229.96.0/23 9318 -58.229.98.0/24 9318 -58.229.99.0/24 10062 -58.229.100.0/22 9318 -58.229.104.0/21 9318 -58.229.112.0/22 9318 -58.229.116.0/23 9318 -58.229.118.0/24 9318 -58.229.119.0/24 45370 -58.229.120.0/21 9318 -58.229.128.0/17 9318 -58.230.0.0/16 9318 -58.231.0.0/17 9318 -58.231.128.0/18 9318 -58.231.192.0/19 9318 -58.231.224.0/21 9318 -58.231.232.0/22 9318 -58.231.236.0/23 9318 -58.231.238.0/24 9318 -58.231.239.0/24 10188 -58.231.240.0/20 9318 -58.232.0.0/15 9318 -58.234.0.0/17 9318 -58.234.128.0/18 9318 -58.234.192.0/19 9318 -58.234.224.0/21 9318 -58.234.232.0/22 9318 -58.234.236.0/24 45399 -58.234.237.0/24 9318 -58.234.238.0/23 9318 -58.234.240.0/20 9318 -58.235.0.0/17 9318 -58.235.128.0/18 9318 -58.235.192.0/19 9318 -58.235.224.0/23 9318 -58.235.226.0/24 9318 -58.235.227.0/24 38088 -58.235.228.0/22 9318 -58.235.232.0/22 9318 -58.235.236.0/23 9318 -58.235.238.0/24 9318 -58.235.239.0/24 38088 -58.235.240.0/20 9318 -58.236.0.0/17 9318 -58.236.128.0/19 9318 -58.236.160.0/20 9318 -58.236.176.0/21 9318 -58.236.184.0/22 9318 -58.236.188.0/24 9318 -58.236.189.0/24 10169 -58.236.190.0/23 9318 -58.236.192.0/23 9318 -58.236.194.0/24 10169 -58.236.195.0/24 9318 -58.236.196.0/22 9318 -58.236.200.0/21 9318 -58.236.208.0/24 9318 -58.236.209.0/24 10169 -58.236.210.0/23 9318 -58.236.212.0/22 9318 -58.236.216.0/21 9318 -58.236.224.0/19 9318 -58.237.0.0/16 9318 -58.238.0.0/18 9318 -58.238.64.0/20 9318 -58.238.80.0/22 9318 -58.238.84.0/24 10062 -58.238.85.0/24 9318 -58.238.86.0/23 9318 -58.238.88.0/21 9318 -58.238.96.0/19 9318 -58.238.128.0/17 9318 -58.239.0.0/16 9318 -58.240.0.0/14 4837 -58.244.0.0/15 4837 -58.246.0.0/17 17621 -58.246.128.0/18 17621 -58.246.192.0/21 17621 -58.246.200.0/22 17621 -58.246.204.0/23 17621 -58.246.206.0/24 17621 -58.246.207.0/24 138421 -58.246.208.0/20 17621 -58.246.224.0/19 17621 -58.247.0.0/16 17621 -58.248.0.0/16 17622 -58.249.0.0/17 17622 -58.249.128.0/17 17816 -58.250.0.0/18 17623 -58.250.64.0/19 17623 -58.250.96.0/20 17623 -58.250.112.0/21 17623 -58.250.120.0/22 17623 -58.250.124.0/22 135061 -58.250.128.0/24 17623 -58.250.129.0/24 135061 -58.250.130.0/23 17623 -58.250.132.0/22 17623 -58.250.136.0/22 135061 -58.250.140.0/24 135061 -58.250.141.0/24 17623 -58.250.142.0/23 17623 -58.250.144.0/20 17623 -58.250.160.0/19 17623 -58.250.192.0/18 17623 -58.251.0.0/19 17623 -58.251.32.0/20 17623 -58.251.48.0/21 17623 -58.251.56.0/23 135061 -58.251.58.0/24 135061 -58.251.59.0/24 17623 -58.251.60.0/24 135061 -58.251.61.0/24 17623 -58.251.62.0/23 135061 -58.251.64.0/19 17623 -58.251.96.0/22 17623 -58.251.100.0/23 17623 -58.251.102.0/24 17623 -58.251.103.0/24 135061 -58.251.104.0/23 17623 -58.251.106.0/23 135061 -58.251.108.0/22 17623 -58.251.112.0/21 17623 -58.251.120.0/23 17623 -58.251.122.0/24 17623 -58.251.123.0/24 135061 -58.251.124.0/23 135061 -58.251.126.0/23 17623 -58.251.128.0/21 17623 -58.251.136.0/23 17623 -58.251.138.0/24 17623 -58.251.139.0/24 135061 -58.251.140.0/22 17623 -58.251.144.0/22 17623 -58.251.148.0/23 135061 -58.251.150.0/24 135061 -58.251.151.0/24 17623 -58.251.152.0/21 17623 -58.251.160.0/19 17623 -58.251.192.0/18 17623 -58.252.0.0/15 17816 -58.254.0.0/17 17816 -58.254.128.0/24 17816 -58.254.129.0/24 136958 -58.254.130.0/24 17816 -58.254.131.0/24 136958 -58.254.132.0/22 136958 -58.254.136.0/23 17816 -58.254.138.0/24 136958 -58.254.139.0/24 17816 -58.254.140.0/22 136958 -58.254.144.0/22 136958 -58.254.148.0/24 136958 -58.254.149.0/24 17816 -58.254.150.0/23 136958 -58.254.152.0/21 136958 -58.254.160.0/20 136958 -58.254.176.0/21 136958 -58.254.184.0/22 136958 -58.254.188.0/23 136958 -58.254.190.0/24 17816 -58.254.191.0/24 136958 -58.254.192.0/22 17816 -58.254.196.0/23 17816 -58.254.198.0/23 136958 -58.254.200.0/21 17816 -58.254.208.0/21 17816 -58.254.216.0/23 17816 -58.254.218.0/24 17816 -58.254.219.0/24 9929 -58.254.220.0/22 17816 -58.254.224.0/19 17816 -58.255.0.0/17 17816 -58.255.128.0/19 17816 -58.255.160.0/21 17816 -58.255.168.0/22 17816 -58.255.172.0/22 136959 -58.255.176.0/20 17816 -58.255.192.0/18 17816 -59.0.0.0/16 4766 -59.1.0.0/19 4766 -59.1.32.0/21 4766 -59.1.40.0/23 7560 -59.1.42.0/23 4766 -59.1.44.0/22 4766 -59.1.48.0/20 4766 -59.1.64.0/18 4766 -59.1.128.0/17 4766 -59.2.0.0/18 4766 -59.2.64.0/19 4766 -59.2.96.0/20 4766 -59.2.112.0/24 9954 -59.2.113.0/24 4766 -59.2.114.0/23 4766 -59.2.116.0/22 4766 -59.2.120.0/21 4766 -59.2.128.0/17 4766 -59.3.0.0/16 4766 -59.4.0.0/16 4766 -59.5.0.0/19 4766 -59.5.32.0/21 4766 -59.5.40.0/24 4766 -59.5.41.0/24 23587 -59.5.42.0/23 4766 -59.5.44.0/22 4766 -59.5.48.0/20 4766 -59.5.64.0/21 4766 -59.5.72.0/22 4766 -59.5.76.0/24 4766 -59.5.77.0/24 1704 -59.5.78.0/23 4766 -59.5.80.0/20 4766 -59.5.96.0/19 4766 -59.5.128.0/21 4766 -59.5.136.0/22 4766 -59.5.140.0/24 17843 -59.5.141.0/24 4766 -59.5.142.0/23 4766 -59.5.144.0/20 4766 -59.5.160.0/19 4766 -59.5.192.0/19 4766 -59.5.224.0/21 4766 -59.5.232.0/24 17843 -59.5.233.0/24 4766 -59.5.234.0/23 4766 -59.5.236.0/22 4766 -59.5.240.0/20 4766 -59.6.0.0/16 4766 -59.7.0.0/17 4766 -59.7.128.0/18 4766 -59.7.192.0/19 4766 -59.7.224.0/20 4766 -59.7.240.0/21 4766 -59.7.248.0/22 4766 -59.7.252.0/24 23554 -59.7.253.0/24 4766 -59.7.254.0/23 23555 -59.8.0.0/17 4766 -59.8.128.0/18 4766 -59.8.192.0/19 4766 -59.8.224.0/20 4766 -59.8.240.0/24 4766 -59.8.241.0/24 38401 -59.8.242.0/23 4766 -59.8.244.0/22 4766 -59.8.248.0/21 4766 -59.9.0.0/16 4766 -59.10.0.0/17 4766 -59.10.128.0/18 4766 -59.10.192.0/19 4766 -59.10.224.0/20 4766 -59.10.240.0/22 4766 -59.10.244.0/24 9776 -59.10.245.0/24 4766 -59.10.246.0/23 4766 -59.10.248.0/21 4766 -59.11.0.0/18 4766 -59.11.64.0/22 4766 -59.11.68.0/24 10185 -59.11.69.0/24 4766 -59.11.70.0/23 4766 -59.11.72.0/21 4766 -59.11.80.0/20 4766 -59.11.96.0/19 4766 -59.11.128.0/17 4766 -59.12.0.0/17 4766 -59.12.128.0/19 4766 -59.12.160.0/21 4766 -59.12.168.0/23 4766 -59.12.170.0/24 4766 -59.12.171.0/24 23554 -59.12.172.0/22 4766 -59.12.176.0/20 4766 -59.12.192.0/19 4766 -59.12.224.0/21 4766 -59.12.232.0/22 4766 -59.12.236.0/23 4766 -59.12.238.0/23 23566 -59.12.240.0/21 4766 -59.12.248.0/23 4766 -59.12.250.0/24 23581 -59.12.251.0/24 4766 -59.12.252.0/22 4766 -59.13.0.0/24 23566 -59.13.1.0/24 4766 -59.13.2.0/23 4766 -59.13.4.0/22 4766 -59.13.8.0/21 4766 -59.13.16.0/20 4766 -59.13.32.0/19 4766 -59.13.64.0/18 4766 -59.13.128.0/24 38400 -59.13.129.0/24 4766 -59.13.130.0/23 4766 -59.13.132.0/22 4766 -59.13.136.0/21 4766 -59.13.144.0/20 4766 -59.13.160.0/19 4766 -59.13.192.0/18 4766 -59.14.0.0/18 4766 -59.14.64.0/19 4766 -59.14.96.0/22 4766 -59.14.100.0/23 4766 -59.14.102.0/23 46009 -59.14.104.0/24 46009 -59.14.105.0/24 4766 -59.14.106.0/23 4766 -59.14.108.0/22 4766 -59.14.112.0/21 4766 -59.14.120.0/23 4766 -59.14.122.0/24 4766 -59.14.123.0/24 46009 -59.14.124.0/23 46009 -59.14.126.0/24 46009 -59.14.127.0/24 4766 -59.14.128.0/17 4766 -59.15.0.0/21 4766 -59.15.8.0/23 4766 -59.15.10.0/24 45399 -59.15.11.0/24 4766 -59.15.12.0/22 4766 -59.15.16.0/21 4766 -59.15.24.0/22 4766 -59.15.28.0/23 4766 -59.15.30.0/24 9526 -59.15.31.0/24 4766 -59.15.32.0/19 4766 -59.15.64.0/18 4766 -59.15.128.0/17 4766 -59.16.0.0/16 4766 -59.17.0.0/23 4766 -59.17.2.0/24 4766 -59.17.3.0/24 10188 -59.17.4.0/22 4766 -59.17.8.0/21 4766 -59.17.16.0/20 4766 -59.17.32.0/19 4766 -59.17.64.0/18 4766 -59.17.128.0/19 4766 -59.17.160.0/20 4766 -59.17.176.0/21 4766 -59.17.184.0/23 4766 -59.17.186.0/24 17567 -59.17.187.0/24 4766 -59.17.188.0/24 17567 -59.17.189.0/24 4766 -59.17.190.0/23 4766 -59.17.192.0/18 4766 -59.18.0.0/17 4766 -59.18.128.0/18 4766 -59.18.192.0/20 4766 -59.18.208.0/22 4766 -59.18.212.0/23 4766 -59.18.214.0/24 4766 -59.18.215.0/24 18032 -59.18.216.0/21 4766 -59.18.224.0/19 4766 -59.19.0.0/16 4766 -59.20.0.0/14 4766 -59.24.0.0/16 4766 -59.25.0.0/18 4766 -59.25.64.0/22 38104 -59.25.68.0/24 38104 -59.25.69.0/24 4766 -59.25.70.0/23 4766 -59.25.72.0/21 4766 -59.25.80.0/20 4766 -59.25.96.0/19 4766 -59.25.128.0/17 4766 -59.26.0.0/22 4766 -59.26.4.0/23 9782 -59.26.6.0/24 9782 -59.26.7.0/24 18029 -59.26.8.0/21 4766 -59.26.16.0/20 4766 -59.26.32.0/19 4766 -59.26.64.0/18 4766 -59.26.128.0/18 4766 -59.26.192.0/20 4766 -59.26.208.0/21 4766 -59.26.216.0/22 4766 -59.26.220.0/24 4766 -59.26.221.0/24 9775 -59.26.222.0/23 9775 -59.26.224.0/19 4766 -59.27.0.0/18 4766 -59.27.64.0/19 4766 -59.27.96.0/21 4766 -59.27.104.0/24 10058 -59.27.105.0/24 4766 -59.27.106.0/23 4766 -59.27.108.0/22 4766 -59.27.112.0/20 4766 -59.27.128.0/19 4766 -59.27.160.0/23 4766 -59.27.162.0/24 4766 -59.27.163.0/24 23552 -59.27.164.0/22 23552 -59.27.168.0/24 23552 -59.27.169.0/24 4766 -59.27.170.0/23 4766 -59.27.172.0/22 4766 -59.27.176.0/20 4766 -59.27.192.0/18 4766 -59.28.0.0/16 4766 -59.29.0.0/20 4766 -59.29.16.0/22 4766 -59.29.20.0/24 4766 -59.29.21.0/24 55615 -59.29.22.0/23 4766 -59.29.24.0/21 4766 -59.29.32.0/20 4766 -59.29.48.0/22 4766 -59.29.52.0/23 4766 -59.29.54.0/24 55615 -59.29.55.0/24 4766 -59.29.56.0/21 4766 -59.29.64.0/18 4766 -59.29.128.0/17 4766 -59.30.0.0/17 4766 -59.30.128.0/18 4766 -59.30.192.0/19 4766 -59.30.224.0/20 4766 -59.30.240.0/21 4766 -59.30.248.0/22 4766 -59.30.252.0/23 4766 -59.30.254.0/24 55615 -59.30.255.0/24 4766 -59.31.0.0/16 4766 -59.32.0.0/16 4134 -59.33.0.0/19 4134 -59.33.32.0/22 4134 -59.33.36.0/23 4134 -59.33.38.0/23 58543 -59.33.40.0/21 4134 -59.33.48.0/20 4134 -59.33.64.0/18 4134 -59.33.128.0/17 4134 -59.34.0.0/19 4134 -59.34.32.0/21 4134 -59.34.40.0/22 4134 -59.34.44.0/23 58543 -59.34.46.0/23 4134 -59.34.48.0/20 4134 -59.34.64.0/18 4134 -59.34.128.0/23 4134 -59.34.130.0/24 4134 -59.34.131.0/24 58543 -59.34.132.0/22 4134 -59.34.136.0/21 4134 -59.34.144.0/22 4134 -59.34.148.0/24 58543 -59.34.149.0/24 4134 -59.34.150.0/23 4134 -59.34.152.0/21 4134 -59.34.160.0/19 4134 -59.34.192.0/22 4134 -59.34.196.0/23 58543 -59.34.198.0/24 58543 -59.34.199.0/24 4134 -59.34.200.0/21 4134 -59.34.208.0/22 4134 -59.34.212.0/23 4134 -59.34.214.0/24 4134 -59.34.215.0/24 58543 -59.34.216.0/24 58543 -59.34.217.0/24 4134 -59.34.218.0/23 4134 -59.34.220.0/22 4134 -59.34.224.0/19 4134 -59.35.0.0/16 4134 -59.36.0.0/19 4134 -59.36.32.0/19 4816 -59.36.64.0/19 4816 -59.36.96.0/21 134763 -59.36.104.0/23 58543 -59.36.106.0/24 58543 -59.36.107.0/24 134763 -59.36.108.0/24 134763 -59.36.109.0/24 58543 -59.36.110.0/23 58543 -59.36.112.0/20 4816 -59.36.128.0/19 4816 -59.36.160.0/20 4816 -59.36.176.0/20 4134 -59.36.192.0/21 58543 -59.36.200.0/21 134764 -59.36.208.0/20 4816 -59.36.224.0/20 134764 -59.36.240.0/20 4134 -59.37.0.0/23 4134 -59.37.2.0/24 58466 -59.37.3.0/24 4134 -59.37.4.0/22 4134 -59.37.8.0/21 4134 -59.37.16.0/20 4134 -59.37.32.0/20 4134 -59.37.48.0/23 4134 -59.37.50.0/24 4134 -59.37.51.0/24 4813 -59.37.52.0/22 4813 -59.37.56.0/21 4134 -59.37.64.0/23 4134 -59.37.66.0/23 4813 -59.37.68.0/24 4813 -59.37.69.0/24 4134 -59.37.70.0/23 4813 -59.37.72.0/24 4813 -59.37.73.0/24 4134 -59.37.74.0/23 4134 -59.37.76.0/22 4813 -59.37.80.0/20 134764 -59.37.96.0/19 4816 -59.37.128.0/20 58466 -59.37.144.0/22 58466 -59.37.148.0/22 4813 -59.37.152.0/22 4813 -59.37.156.0/23 4813 -59.37.158.0/24 58543 -59.37.159.0/24 4813 -59.37.160.0/21 4134 -59.37.168.0/22 4134 -59.37.172.0/23 58466 -59.37.174.0/23 4134 -59.37.176.0/20 4134 -59.37.192.0/18 4134 -59.38.0.0/18 4134 -59.38.64.0/19 4134 -59.38.96.0/21 134763 -59.38.104.0/22 4134 -59.38.108.0/23 4134 -59.38.110.0/24 4134 -59.38.111.0/24 134764 -59.38.112.0/21 134763 -59.38.120.0/22 134764 -59.38.124.0/23 134764 -59.38.126.0/24 134764 -59.38.127.0/24 4134 -59.38.128.0/19 4134 -59.38.160.0/19 4813 -59.38.192.0/22 58543 -59.38.196.0/22 4134 -59.38.200.0/21 4134 -59.38.208.0/20 4134 -59.38.224.0/19 4134 -59.39.0.0/22 4134 -59.39.4.0/23 4134 -59.39.6.0/24 4134 -59.39.7.0/24 134764 -59.39.8.0/21 4134 -59.39.16.0/21 4134 -59.39.24.0/22 4134 -59.39.28.0/23 4134 -59.39.30.0/24 4134 -59.39.31.0/24 134764 -59.39.32.0/20 4134 -59.39.48.0/21 4134 -59.39.56.0/24 4134 -59.39.57.0/24 134764 -59.39.58.0/23 4134 -59.39.60.0/22 4134 -59.39.64.0/23 4134 -59.39.66.0/24 134764 -59.39.67.0/24 4134 -59.39.68.0/23 4134 -59.39.70.0/24 4134 -59.39.71.0/24 134764 -59.39.72.0/21 4813 -59.39.80.0/21 4813 -59.39.88.0/21 4134 -59.39.96.0/19 4134 -59.39.128.0/17 4134 -59.40.0.0/15 4134 -59.42.0.0/17 4134 -59.42.128.0/18 4134 -59.42.192.0/19 4134 -59.42.224.0/20 4134 -59.42.240.0/20 58466 -59.44.0.0/18 4134 -59.44.64.0/18 134762 -59.44.128.0/17 4134 -59.45.0.0/16 4134 -59.46.0.0/17 4134 -59.46.128.0/17 134762 -59.47.0.0/16 4134 -59.48.0.0/16 4134 -59.49.0.0/19 4134 -59.49.32.0/21 4134 -59.49.40.0/21 132147 -59.49.48.0/20 4134 -59.49.64.0/20 4134 -59.49.80.0/20 132147 -59.49.96.0/20 4134 -59.49.112.0/22 4809 -59.49.116.0/24 4134 -59.49.117.0/24 132147 -59.49.118.0/23 4134 -59.49.120.0/21 4134 -59.49.128.0/17 4134 -59.50.0.0/15 4134 -59.52.0.0/16 4134 -59.53.0.0/19 4134 -59.53.32.0/20 4134 -59.53.48.0/23 134238 -59.53.50.0/24 4134 -59.53.51.0/24 134238 -59.53.52.0/22 134238 -59.53.56.0/21 134238 -59.53.64.0/20 134238 -59.53.80.0/22 4134 -59.53.84.0/23 134238 -59.53.86.0/23 139201 -59.53.88.0/24 139201 -59.53.89.0/24 4134 -59.53.90.0/23 134238 -59.53.92.0/22 134238 -59.53.96.0/19 4134 -59.53.128.0/17 4134 -59.54.0.0/19 4134 -59.54.32.0/20 4134 -59.54.48.0/22 4134 -59.54.52.0/23 4134 -59.54.54.0/24 139201 -59.54.55.0/24 4134 -59.54.56.0/21 4134 -59.54.64.0/18 4134 -59.54.128.0/17 4134 -59.55.0.0/16 4134 -59.56.0.0/20 4134 -59.56.16.0/20 133774 -59.56.32.0/19 4134 -59.56.64.0/23 133774 -59.56.66.0/24 133774 -59.56.67.0/24 4134 -59.56.68.0/22 133774 -59.56.72.0/21 133774 -59.56.80.0/20 4134 -59.56.96.0/21 133774 -59.56.104.0/22 133774 -59.56.108.0/24 4134 -59.56.109.0/24 133774 -59.56.110.0/23 133774 -59.56.112.0/20 4134 -59.56.128.0/17 4134 -59.57.0.0/16 4134 -59.58.0.0/15 4134 -59.60.0.0/20 4809 -59.60.16.0/20 4134 -59.60.32.0/19 4134 -59.60.64.0/18 4134 -59.60.128.0/20 4134 -59.60.144.0/23 4134 -59.60.146.0/24 4134 -59.60.147.0/24 133775 -59.60.148.0/22 4134 -59.60.152.0/23 4134 -59.60.154.0/24 133775 -59.60.155.0/24 4134 -59.60.156.0/24 133775 -59.60.157.0/24 4134 -59.60.158.0/23 4134 -59.60.160.0/19 4134 -59.60.192.0/18 4134 -59.61.0.0/16 4134 -59.62.0.0/16 4134 -59.63.0.0/17 4134 -59.63.128.0/20 4134 -59.63.144.0/21 4134 -59.63.152.0/22 4134 -59.63.156.0/22 134238 -59.63.160.0/19 134238 -59.63.192.0/18 134238 -59.64.0.0/12 4538 -59.80.0.0/16 134542 -59.81.8.0/23 4837 -59.81.12.0/23 4837 -59.81.16.0/23 4837 -59.81.20.0/23 4837 -59.81.24.0/23 4837 -59.81.32.0/23 4837 -59.81.36.0/23 4837 -59.81.40.0/23 4837 -59.81.46.0/24 4837 -59.81.64.0/23 17621 -59.81.68.0/23 4837 -59.81.72.0/23 4837 -59.81.76.0/22 4837 -59.81.80.0/22 4837 -59.81.86.0/23 4837 -59.81.88.0/23 4837 -59.81.92.0/22 4837 -59.81.98.0/23 4837 -59.81.100.0/22 4837 -59.81.104.0/23 4837 -59.81.106.0/23 17621 -59.82.0.0/21 37963 -59.83.128.0/23 4134 -59.83.130.0/24 32242 -59.83.131.0/24 4134 -59.83.132.0/22 4134 -59.83.136.0/21 4134 -59.83.144.0/20 4134 -59.83.160.0/19 4134 -59.83.192.0/19 4837 -59.83.224.0/20 4837 -59.83.240.0/21 4837 -59.83.248.0/22 4837 -59.83.252.0/23 4837 -59.83.254.0/24 4837 -59.83.255.0/24 32242 -59.84.0.0/15 10010 -59.86.0.0/17 10010 -59.86.128.0/19 10010 -59.86.160.0/20 17734 -59.86.176.0/24 17734 -59.86.177.0/24 9881 -59.86.178.0/23 9881 -59.86.180.0/24 17734 -59.86.181.0/24 9881 -59.86.182.0/24 17734 -59.86.183.0/24 9881 -59.86.184.0/21 17734 -59.86.192.0/18 17839 -59.87.0.0/16 17506 -59.88.0.0/13 9829 -59.96.0.0/14 9829 -59.100.0.0/15 2764 -59.102.0.0/17 7545 -59.102.128.0/17 131596 -59.103.0.0/20 45595 -59.103.16.0/22 45814 -59.103.20.0/24 17557 -59.103.21.0/24 45595 -59.103.22.0/23 45595 -59.103.24.0/21 45595 -59.103.32.0/19 45814 -59.103.64.0/21 45814 -59.103.72.0/23 45595 -59.103.74.0/24 58895 -59.103.75.0/24 45595 -59.103.76.0/22 45595 -59.103.80.0/20 45595 -59.103.96.0/19 9541 -59.103.128.0/21 45595 -59.103.136.0/24 17557 -59.103.137.0/24 45595 -59.103.138.0/23 45595 -59.103.140.0/22 45595 -59.103.144.0/21 45595 -59.103.152.0/23 58895 -59.103.154.0/23 45595 -59.103.156.0/22 45595 -59.103.160.0/21 45595 -59.103.168.0/24 17557 -59.103.169.0/24 45595 -59.103.170.0/23 45595 -59.103.172.0/22 45595 -59.103.176.0/24 58895 -59.103.177.0/24 45595 -59.103.178.0/23 58895 -59.103.180.0/22 45595 -59.103.184.0/21 45595 -59.103.192.0/19 45595 -59.103.224.0/20 45595 -59.103.240.0/21 45595 -59.103.248.0/23 17557 -59.103.250.0/23 45595 -59.103.252.0/23 17557 -59.103.254.0/24 17557 -59.103.255.0/24 45595 -59.104.0.0/15 4780 -59.106.0.0/17 9370 -59.106.128.0/18 9370 -59.106.192.0/19 9370 -59.106.224.0/20 9370 -59.106.240.0/22 9370 -59.107.0.0/17 4134 -59.107.190.0/24 133948 -59.108.0.0/20 4847 -59.108.16.0/20 18245 -59.108.32.0/23 4847 -59.108.34.0/24 18245 -59.108.35.0/24 4847 -59.108.36.0/22 18245 -59.108.40.0/22 18245 -59.108.44.0/24 4847 -59.108.45.0/24 18245 -59.108.46.0/24 18245 -59.108.47.0/24 4847 -59.108.48.0/24 18245 -59.108.49.0/24 4847 -59.108.50.0/24 18245 -59.108.51.0/24 4847 -59.108.52.0/23 4847 -59.108.54.0/23 18245 -59.108.56.0/23 18245 -59.108.58.0/24 18245 -59.108.59.0/24 4847 -59.108.60.0/24 4847 -59.108.61.0/24 18245 -59.108.62.0/24 18245 -59.108.63.0/24 4847 -59.108.64.0/21 18245 -59.108.72.0/21 24428 -59.108.80.0/24 24428 -59.108.81.0/24 18245 -59.108.82.0/23 18245 -59.108.84.0/22 24428 -59.108.88.0/22 24428 -59.108.92.0/24 18245 -59.108.93.0/24 24428 -59.108.94.0/23 24428 -59.108.96.0/23 4847 -59.108.98.0/23 18245 -59.108.100.0/23 18245 -59.108.102.0/23 24428 -59.108.104.0/23 18245 -59.108.106.0/24 18245 -59.108.107.0/24 4847 -59.108.108.0/24 4847 -59.108.109.0/24 24428 -59.108.110.0/24 24428 -59.108.111.0/24 4847 -59.108.112.0/23 18245 -59.108.114.0/23 4847 -59.108.116.0/22 4847 -59.108.120.0/23 4847 -59.108.122.0/24 24428 -59.108.123.0/24 4847 -59.108.124.0/22 4847 -59.108.128.0/19 4847 -59.108.160.0/20 4847 -59.108.176.0/20 18245 -59.108.192.0/18 4847 -59.109.0.0/20 18245 -59.109.16.0/20 4847 -59.109.32.0/19 4847 -59.109.64.0/20 4847 -59.109.80.0/23 4847 -59.109.82.0/24 4847 -59.109.83.0/24 18245 -59.109.84.0/22 4847 -59.109.88.0/21 4847 -59.109.96.0/19 4847 -59.109.128.0/19 4847 -59.109.160.0/24 18245 -59.109.161.0/24 4847 -59.109.162.0/23 4847 -59.109.164.0/22 4847 -59.109.168.0/21 4847 -59.109.176.0/20 4847 -59.109.192.0/19 4847 -59.109.224.0/19 18245 -59.110.0.0/16 37963 -59.111.0.0/16 45062 -59.112.0.0/12 3462 -59.128.0.0/12 2516 -59.144.0.0/22 24560 -59.144.4.0/22 9498 -59.144.8.0/21 9498 -59.144.16.0/20 9498 -59.144.32.0/24 24560 -59.144.33.0/24 9498 -59.144.34.0/23 9498 -59.144.36.0/22 9498 -59.144.40.0/24 24560 -59.144.41.0/24 9498 -59.144.42.0/23 9498 -59.144.44.0/23 9498 -59.144.46.0/23 24560 -59.144.48.0/24 9498 -59.144.49.0/24 24560 -59.144.50.0/23 9498 -59.144.52.0/22 9498 -59.144.56.0/21 9498 -59.144.64.0/20 9498 -59.144.80.0/21 9498 -59.144.88.0/22 9498 -59.144.92.0/24 24560 -59.144.93.0/24 9498 -59.144.94.0/23 9498 -59.144.96.0/24 24560 -59.144.97.0/24 9730 -59.144.98.0/23 9498 -59.144.100.0/22 9498 -59.144.104.0/22 9498 -59.144.108.0/23 9498 -59.144.110.0/24 9498 -59.144.111.0/24 45609 -59.144.112.0/21 9498 -59.144.120.0/22 9498 -59.144.124.0/22 24560 -59.144.128.0/19 9498 -59.144.160.0/20 24560 -59.144.176.0/21 9498 -59.144.184.0/22 9498 -59.144.188.0/24 9498 -59.144.189.0/24 137670 -59.144.190.0/24 9498 -59.144.191.0/24 132215 -59.144.192.0/22 9498 -59.144.196.0/22 24560 -59.144.200.0/21 9498 -59.144.208.0/20 9498 -59.144.224.0/20 9498 -59.144.240.0/20 24560 -59.145.0.0/18 9498 -59.145.64.0/22 9498 -59.145.68.0/24 137670 -59.145.69.0/24 9498 -59.145.70.0/23 9498 -59.145.72.0/23 9730 -59.145.74.0/23 9498 -59.145.76.0/22 9498 -59.145.80.0/20 9498 -59.145.96.0/19 9498 -59.145.128.0/17 9498 -59.146.0.0/15 2527 -59.148.0.0/20 9269 -59.148.16.0/21 10103 -59.148.24.0/21 9269 -59.148.32.0/19 9269 -59.148.64.0/21 9269 -59.148.72.0/23 10103 -59.148.74.0/23 9269 -59.148.76.0/22 9269 -59.148.80.0/20 9269 -59.148.96.0/19 9269 -59.148.128.0/19 9269 -59.148.160.0/22 9269 -59.148.164.0/22 10103 -59.148.168.0/22 9269 -59.148.172.0/23 9269 -59.148.174.0/23 10103 -59.148.176.0/23 10103 -59.148.178.0/24 10103 -59.148.179.0/24 9269 -59.148.180.0/24 9269 -59.148.181.0/24 10103 -59.148.182.0/23 9269 -59.148.184.0/21 9269 -59.148.192.0/24 9269 -59.148.193.0/24 10103 -59.148.194.0/23 9269 -59.148.196.0/22 9269 -59.148.200.0/22 10103 -59.148.204.0/22 9269 -59.148.208.0/20 9269 -59.148.224.0/19 9269 -59.149.0.0/17 9269 -59.149.128.0/18 9269 -59.149.192.0/19 9269 -59.149.224.0/20 9269 -59.149.240.0/21 9269 -59.149.248.0/21 10103 -59.150.0.0/21 9457 -59.150.8.0/22 9457 -59.150.12.0/23 18328 -59.150.14.0/24 18328 -59.150.15.0/24 9457 -59.150.16.0/23 9457 -59.150.18.0/24 9457 -59.150.19.0/24 9692 -59.150.20.0/22 9457 -59.150.24.0/21 9457 -59.150.32.0/20 9457 -59.150.48.0/22 9457 -59.150.52.0/24 17838 -59.150.53.0/24 38676 -59.150.54.0/23 9457 -59.150.56.0/21 9457 -59.150.64.0/21 9457 -59.150.72.0/24 38676 -59.150.73.0/24 9457 -59.150.74.0/23 9457 -59.150.76.0/22 9457 -59.150.80.0/20 9457 -59.150.96.0/19 9457 -59.150.128.0/18 9457 -59.150.192.0/22 9457 -59.150.196.0/24 9457 -59.150.197.0/24 9845 -59.150.198.0/23 9457 -59.150.200.0/21 9457 -59.150.208.0/20 9457 -59.150.224.0/19 9457 -59.151.0.0/22 9802 -59.151.4.0/23 9308 -59.151.6.0/23 9802 -59.151.8.0/21 9802 -59.151.16.0/20 9802 -59.151.32.0/19 9802 -59.151.64.0/22 9802 -59.151.68.0/23 9802 -59.151.70.0/24 9802 -59.151.71.0/24 9308 -59.151.72.0/21 9802 -59.151.80.0/20 9802 -59.151.96.0/19 9802 -59.151.128.0/22 16625 -59.151.132.0/22 24319 -59.151.136.0/22 16625 -59.151.140.0/22 24319 -59.151.144.0/20 24319 -59.151.160.0/22 24319 -59.151.164.0/22 16625 -59.151.168.0/22 24319 -59.151.172.0/22 16625 -59.151.176.0/22 16625 -59.151.180.0/22 24319 -59.151.184.0/21 24319 -59.151.192.0/18 9981 -59.152.0.0/20 18230 -59.152.33.0/24 135006 -59.152.34.0/23 135006 -59.152.38.0/23 4847 -59.152.40.0/22 58967 -59.152.44.0/22 64078 -59.152.48.0/22 26658 -59.152.52.0/22 17625 -59.152.56.0/22 55352 -59.152.60.0/22 38026 -59.152.84.0/22 203061 -59.152.88.0/21 18230 -59.152.96.0/23 63969 -59.152.98.0/24 63969 -59.152.99.0/24 58715 -59.152.100.0/24 58715 -59.152.101.0/24 63969 -59.152.102.0/23 63969 -59.152.104.0/23 63969 -59.152.106.0/24 134382 -59.152.107.0/24 63969 -59.152.108.0/23 58715 -59.152.110.0/24 58715 -59.152.111.0/24 63969 -59.152.120.0/23 17665 -59.152.122.0/24 58966 -59.152.123.0/24 17665 -59.152.124.0/22 46261 -59.152.128.0/18 38120 -59.152.192.0/18 9381 -59.153.0.0/22 55352 -59.153.4.0/22 23771 -59.153.8.0/22 64098 -59.153.12.0/22 36236 -59.153.16.0/22 64043 -59.153.20.0/22 4049 -59.153.24.0/23 59285 -59.153.26.0/23 132901 -59.153.28.0/22 134128 -59.153.36.0/22 58640 -59.153.40.0/23 57976 -59.153.44.0/22 131899 -59.153.48.0/22 26658 -59.153.52.0/24 38478 -59.153.56.0/22 133771 -59.153.60.0/22 18013 -59.153.72.0/22 63549 -59.153.80.0/22 56233 -59.153.84.0/22 56293 -59.153.88.0/22 58952 -59.153.92.0/22 4812 -59.153.96.0/22 134004 -59.153.100.0/22 134732 -59.153.104.0/24 64049 -59.153.107.0/24 64049 -59.153.108.0/22 134736 -59.153.112.0/22 17882 -59.153.116.0/22 63620 -59.153.120.0/22 55352 -59.153.124.0/22 132471 -59.153.140.0/22 2516 -59.153.144.0/22 26658 -59.153.148.0/22 55720 -59.153.160.0/22 26658 -59.153.168.0/23 59083 -59.153.200.0/22 63980 -59.153.204.0/22 2516 -59.153.208.0/24 24378 -59.153.211.0/24 24378 -59.153.220.0/22 131429 -59.153.224.0/19 131429 -59.154.0.0/19 7474 -59.154.32.0/20 7474 -59.154.48.0/22 7474 -59.154.52.0/23 7474 -59.154.54.0/24 7474 -59.154.55.0/24 56307 -59.154.56.0/21 7474 -59.154.64.0/20 7474 -59.154.80.0/24 56080 -59.154.81.0/24 7474 -59.154.82.0/23 7474 -59.154.84.0/22 7474 -59.154.88.0/21 7474 -59.154.96.0/19 7474 -59.154.128.0/17 7474 -59.156.0.0/20 10013 -59.156.16.0/22 10013 -59.156.22.0/23 10013 -59.156.24.0/24 10013 -59.156.29.0/24 10013 -59.156.30.0/23 10013 -59.156.32.0/19 10013 -59.156.64.0/18 10013 -59.156.132.0/23 10013 -59.156.134.0/24 10013 -59.156.144.0/20 7522 -59.156.160.0/19 10013 -59.156.192.0/21 10013 -59.157.0.0/17 10013 -59.157.128.0/18 10013 -59.157.224.0/19 10013 -59.158.0.0/15 17506 -59.160.0.0/19 4755 -59.160.32.0/24 4755 -59.160.33.0/24 9238 -59.160.34.0/23 4755 -59.160.36.0/22 4755 -59.160.40.0/21 4755 -59.160.48.0/21 4755 -59.160.56.0/23 4755 -59.160.58.0/24 4755 -59.160.59.0/24 26685 -59.160.60.0/22 4755 -59.160.64.0/18 4755 -59.160.128.0/19 4755 -59.160.160.0/20 4755 -59.160.176.0/23 4755 -59.160.178.0/24 4755 -59.160.179.0/24 8966 -59.160.180.0/22 4755 -59.160.184.0/21 4755 -59.160.192.0/18 4755 -59.161.0.0/19 10199 -59.161.32.0/19 4755 -59.161.64.0/20 4755 -59.161.80.0/20 10199 -59.161.96.0/21 10199 -59.161.104.0/21 4755 -59.161.112.0/21 4755 -59.161.120.0/21 10199 -59.161.128.0/19 10199 -59.161.160.0/24 45820 -59.161.161.0/24 10199 -59.161.162.0/23 10199 -59.161.164.0/23 4755 -59.161.166.0/23 10199 -59.161.168.0/21 10199 -59.161.176.0/20 10199 -59.161.192.0/19 10199 -59.161.224.0/20 10199 -59.161.240.0/20 4755 -59.162.0.0/22 4755 -59.162.4.0/23 4755 -59.162.6.0/24 4755 -59.162.7.0/24 9238 -59.162.8.0/21 4755 -59.162.16.0/20 4755 -59.162.32.0/19 4755 -59.162.64.0/20 4755 -59.162.80.0/22 4755 -59.162.84.0/23 4755 -59.162.87.0/24 4755 -59.162.88.0/22 17908 -59.162.94.0/24 17908 -59.162.96.0/20 4755 -59.162.116.0/22 17908 -59.162.122.0/23 17908 -59.162.125.0/24 4755 -59.162.128.0/20 17908 -59.162.144.0/22 17908 -59.162.148.0/23 17908 -59.162.152.0/22 17908 -59.162.160.0/21 4755 -59.162.168.0/21 17908 -59.162.176.0/21 4755 -59.162.184.0/21 17908 -59.162.192.0/21 17908 -59.162.204.0/24 17908 -59.162.208.0/20 17908 -59.162.224.0/19 17908 -59.163.0.0/19 4755 -59.163.32.0/21 4755 -59.163.40.0/22 4755 -59.163.44.0/23 4755 -59.163.46.0/24 4755 -59.163.47.0/24 9238 -59.163.48.0/21 4755 -59.163.56.0/22 4755 -59.163.60.0/23 4755 -59.163.62.0/24 4755 -59.163.63.0/24 9238 -59.163.64.0/18 4755 -59.163.128.0/19 4755 -59.163.160.0/21 4755 -59.163.168.0/22 4755 -59.163.172.0/23 17908 -59.163.174.0/23 4755 -59.163.176.0/20 4755 -59.163.192.0/19 4755 -59.163.224.0/22 4755 -59.163.228.0/23 4755 -59.163.230.0/24 4755 -59.163.231.0/24 6453 -59.163.232.0/21 4755 -59.163.240.0/20 4755 -59.164.0.0/18 17908 -59.164.64.0/22 17908 -59.164.68.0/22 4755 -59.164.72.0/22 17908 -59.164.76.0/23 4755 -59.164.78.0/23 17908 -59.164.80.0/20 17908 -59.164.96.0/20 17908 -59.164.112.0/22 17908 -59.164.116.0/23 17908 -59.164.118.0/24 17908 -59.164.119.0/24 4755 -59.164.120.0/21 17908 -59.164.128.0/17 17908 -59.165.0.0/20 17908 -59.165.24.0/21 17908 -59.165.56.0/24 17908 -59.165.64.0/19 17908 -59.165.96.0/21 4755 -59.165.104.0/21 17908 -59.165.112.0/20 4755 -59.165.128.0/17 4755 -59.166.0.0/16 9824 -59.167.0.0/16 4739 -59.168.0.0/14 9824 -59.172.0.0/16 4134 -59.173.0.0/17 4134 -59.173.128.0/18 4134 -59.173.192.0/19 4134 -59.173.224.0/20 4134 -59.173.240.0/21 4134 -59.173.248.0/24 4809 -59.173.249.0/24 4134 -59.173.250.0/23 4134 -59.173.252.0/22 4134 -59.174.0.0/15 4134 -59.176.0.0/14 17813 -59.180.0.0/15 17813 -59.182.192.0/19 17813 -59.183.0.0/16 17813 -59.185.0.0/16 17813 -59.186.0.0/18 3786 -59.186.64.0/19 3786 -59.186.96.0/21 3786 -59.186.104.0/23 3786 -59.186.106.0/23 23584 -59.186.108.0/22 23584 -59.186.112.0/23 23584 -59.186.114.0/23 3786 -59.186.116.0/22 3786 -59.186.120.0/21 3786 -59.186.128.0/18 3786 -59.186.192.0/19 3786 -59.186.224.0/20 3786 -59.186.240.0/21 3786 -59.186.248.0/24 9638 -59.186.249.0/24 3786 -59.186.250.0/23 3786 -59.186.252.0/22 3786 -59.187.0.0/17 3786 -59.187.128.0/18 3786 -59.187.192.0/18 7562 -59.188.0.0/16 17444 -59.189.0.0/16 10091 -59.190.0.0/16 17511 -59.191.128.0/18 17530 -59.191.192.0/20 38280 -59.191.208.0/20 56132 -59.191.224.0/21 38749 -59.191.240.0/20 4589 -59.252.0.0/16 37937 -60.0.0.0/12 4837 -60.16.0.0/13 4837 -60.24.0.0/14 4837 -60.28.0.0/15 4837 -60.30.0.0/16 4837 -60.31.0.0/17 4837 -60.31.128.0/21 4837 -60.31.136.0/22 4837 -60.31.140.0/22 139007 -60.31.144.0/21 139007 -60.31.152.0/22 139007 -60.31.156.0/22 4837 -60.31.160.0/19 4837 -60.31.192.0/19 4837 -60.31.224.0/20 4837 -60.31.240.0/22 4837 -60.31.244.0/24 139007 -60.31.245.0/24 4837 -60.31.246.0/23 4837 -60.31.248.0/21 4837 -60.32.0.0/12 4713 -60.48.0.0/14 4788 -60.52.0.0/15 4788 -60.54.0.0/16 4788 -60.55.0.0/21 4134 -60.55.8.0/21 136188 -60.55.16.0/20 4134 -60.55.32.0/19 136188 -60.55.64.0/18 4134 -60.55.128.0/17 4134 -60.56.0.0/15 17511 -60.58.0.0/15 9824 -60.60.0.0/15 9824 -60.62.0.0/16 9824 -60.63.0.0/16 9812 -60.64.0.0/10 17676 -60.128.0.0/11 17676 -60.160.0.0/16 4134 -60.161.0.0/20 4134 -60.161.16.0/22 134766 -60.161.20.0/22 4134 -60.161.24.0/21 4134 -60.161.32.0/19 4134 -60.161.64.0/18 4134 -60.161.128.0/17 4134 -60.162.0.0/16 4134 -60.163.0.0/17 4134 -60.163.128.0/22 136190 -60.163.132.0/24 136190 -60.163.133.0/24 4134 -60.163.134.0/23 4134 -60.163.136.0/21 4134 -60.163.144.0/20 4134 -60.163.160.0/20 136190 -60.163.176.0/21 4134 -60.163.184.0/22 4134 -60.163.188.0/23 4134 -60.163.190.0/24 4134 -60.163.191.0/24 136190 -60.163.192.0/18 4134 -60.164.0.0/14 4134 -60.168.0.0/13 4134 -60.176.0.0/13 4134 -60.184.0.0/14 4134 -60.188.0.0/15 4134 -60.190.0.0/24 4134 -60.190.1.0/24 136188 -60.190.2.0/23 4134 -60.190.4.0/22 4134 -60.190.8.0/21 4134 -60.190.16.0/21 4134 -60.190.24.0/22 4134 -60.190.28.0/23 4134 -60.190.30.0/24 4134 -60.190.31.0/24 136188 -60.190.32.0/22 4134 -60.190.36.0/23 4134 -60.190.38.0/23 136188 -60.190.40.0/21 4134 -60.190.48.0/21 4134 -60.190.56.0/22 4134 -60.190.60.0/23 4134 -60.190.62.0/24 4134 -60.190.63.0/24 136188 -60.190.64.0/19 4134 -60.190.96.0/20 4134 -60.190.112.0/23 4134 -60.190.114.0/24 134771 -60.190.115.0/24 4134 -60.190.116.0/23 4134 -60.190.118.0/23 134771 -60.190.120.0/21 4134 -60.190.128.0/18 4134 -60.190.192.0/21 4134 -60.190.200.0/23 4134 -60.190.202.0/23 58461 -60.190.204.0/22 4134 -60.190.208.0/21 4134 -60.190.216.0/21 58461 -60.190.224.0/21 4134 -60.190.232.0/23 4134 -60.190.234.0/23 58461 -60.190.236.0/22 4134 -60.190.240.0/23 4134 -60.190.242.0/24 4134 -60.190.243.0/24 58461 -60.190.244.0/22 4134 -60.190.248.0/21 4134 -60.191.0.0/19 4134 -60.191.32.0/20 4134 -60.191.48.0/21 4134 -60.191.56.0/24 4134 -60.191.57.0/24 58461 -60.191.58.0/23 4134 -60.191.60.0/22 4134 -60.191.64.0/20 4134 -60.191.80.0/21 58461 -60.191.88.0/21 4134 -60.191.96.0/19 4134 -60.191.128.0/21 4134 -60.191.136.0/24 4134 -60.191.137.0/24 58461 -60.191.138.0/23 4134 -60.191.140.0/22 4134 -60.191.144.0/20 4134 -60.191.160.0/19 4134 -60.191.192.0/24 136190 -60.191.193.0/24 4134 -60.191.194.0/23 4134 -60.191.196.0/24 136190 -60.191.197.0/24 4134 -60.191.198.0/23 4134 -60.191.200.0/23 4134 -60.191.202.0/23 136190 -60.191.204.0/24 4134 -60.191.205.0/24 136190 -60.191.206.0/23 4134 -60.191.208.0/21 4134 -60.191.216.0/22 4134 -60.191.220.0/22 136190 -60.191.224.0/22 4134 -60.191.228.0/24 4134 -60.191.229.0/24 136190 -60.191.230.0/24 4134 -60.191.231.0/24 136190 -60.191.232.0/24 136190 -60.191.233.0/24 4134 -60.191.234.0/23 4134 -60.191.236.0/23 4134 -60.191.238.0/24 4134 -60.191.239.0/24 136190 -60.191.240.0/21 4134 -60.191.248.0/23 136190 -60.191.250.0/23 4134 -60.191.252.0/24 136190 -60.191.253.0/24 4134 -60.191.254.0/24 136190 -60.191.255.0/24 4134 -60.192.0.0/15 9595 -60.194.0.0/17 4808 -60.194.128.0/19 4808 -60.194.160.0/20 4808 -60.194.176.0/21 4808 -60.194.184.0/23 17964 -60.194.186.0/23 4808 -60.194.188.0/22 4808 -60.194.192.0/18 4808 -60.195.0.0/17 4808 -60.195.128.0/18 4808 -60.195.192.0/19 4808 -60.195.224.0/20 4808 -60.195.240.0/21 4808 -60.195.248.0/21 17964 -60.196.0.0/24 9530 -60.196.1.0/24 3786 -60.196.2.0/23 3786 -60.196.4.0/22 3786 -60.196.8.0/21 3786 -60.196.16.0/20 3786 -60.196.32.0/19 3786 -60.196.64.0/18 3786 -60.196.128.0/21 3786 -60.196.136.0/23 3786 -60.196.138.0/24 3786 -60.196.139.0/24 9847 -60.196.140.0/22 3786 -60.196.144.0/20 3786 -60.196.160.0/19 3786 -60.196.192.0/18 3786 -60.197.0.0/16 3786 -60.198.0.0/19 9924 -60.198.32.0/21 9924 -60.198.40.0/21 24164 -60.198.48.0/20 9924 -60.198.64.0/18 9924 -60.198.128.0/21 9924 -60.198.136.0/24 133747 -60.198.137.0/24 9924 -60.198.138.0/23 136782 -60.198.140.0/24 136782 -60.198.141.0/24 9924 -60.198.142.0/23 9924 -60.198.144.0/21 9924 -60.198.152.0/22 17213 -60.198.156.0/23 9924 -60.198.158.0/24 9924 -60.198.159.0/24 17213 -60.198.160.0/19 9924 -60.198.192.0/18 9924 -60.199.0.0/16 9924 -60.200.0.0/14 4134 -60.205.0.0/16 37963 -60.206.0.0/21 4808 -60.206.8.0/22 4808 -60.206.12.0/22 23724 -60.206.16.0/20 4808 -60.206.32.0/19 4808 -60.206.64.0/18 4808 -60.206.128.0/17 4808 -60.207.0.0/16 4808 -60.208.0.0/12 4837 -60.224.0.0/13 1221 -60.232.128.0/17 24143 -60.234.0.0/18 9790 -60.234.64.0/21 9790 -60.234.72.0/24 9790 -60.234.73.0/24 56030 -60.234.74.0/23 9790 -60.234.76.0/22 9790 -60.234.80.0/20 9790 -60.234.96.0/19 9790 -60.234.128.0/17 9790 -60.235.0.0/16 4134 -60.236.0.0/14 2518 -60.240.0.0/15 7545 -60.242.0.0/16 7545 -60.243.0.0/17 17488 -60.243.128.0/19 17488 -60.243.160.0/20 17488 -60.243.176.0/23 17488 -60.243.180.0/22 17488 -60.243.184.0/21 17488 -60.243.192.0/19 17488 -60.243.224.0/22 17488 -60.243.236.0/22 17488 -60.243.245.0/24 17488 -60.243.246.0/24 17488 -60.243.248.0/21 17488 -60.244.0.0/18 7482 -60.244.64.0/20 7482 -60.244.80.0/23 24154 -60.244.82.0/23 7482 -60.244.84.0/22 7482 -60.244.88.0/22 7482 -60.244.92.0/24 24154 -60.244.93.0/24 7482 -60.244.94.0/23 7482 -60.244.96.0/19 24154 -60.244.128.0/17 7482 -60.245.0.0/18 9676 -60.245.64.0/19 9919 -60.245.120.0/21 38851 -60.245.128.0/17 7497 -60.246.0.0/16 4609 -60.247.0.0/17 4847 -60.247.129.0/24 37941 -60.247.130.0/24 37941 -60.248.0.0/14 3462 -60.252.0.0/16 17968 -60.253.0.0/18 9981 -60.253.64.0/19 4792 -60.253.96.0/19 38144 -60.253.128.0/17 17964 -60.254.0.0/19 17488 -60.254.32.0/22 17488 -60.254.36.0/23 17488 -60.254.38.0/24 17488 -60.254.40.0/21 17488 -60.254.48.0/20 17488 -60.254.64.0/19 17488 -60.254.96.0/21 17488 -60.254.104.0/24 17488 -60.254.110.0/23 17488 -60.254.112.0/20 17488 -60.254.128.0/22 24319 -60.254.132.0/22 16625 -60.254.136.0/22 24319 -60.254.140.0/23 24319 -60.254.142.0/23 20940 -60.254.144.0/23 24319 -60.254.146.0/23 16625 -60.254.148.0/24 20940 -60.254.149.0/24 24319 -60.254.150.0/23 24319 -60.254.152.0/21 24319 -60.254.160.0/21 24319 -60.254.168.0/22 16625 -60.254.172.0/24 24319 -60.254.173.0/24 20940 -60.254.174.0/23 24319 -60.254.176.0/20 24319 -60.254.192.0/18 37903 -60.255.0.0/16 4837 -61.0.0.0/14 9829 -61.4.0.0/18 10132 -61.4.64.0/24 131322 -61.4.65.0/24 18399 -61.4.66.0/23 131322 -61.4.70.0/23 131322 -61.4.72.0/24 131322 -61.4.79.0/24 18399 -61.4.80.0/24 133948 -61.4.82.0/23 4847 -61.4.85.0/24 133948 -61.4.96.0/20 24321 -61.4.112.0/21 55720 -61.4.120.0/22 55720 -61.4.124.0/23 55720 -61.4.126.0/24 139265 -61.4.127.0/24 55720 -61.4.128.0/20 17691 -61.4.144.0/21 17691 -61.4.152.0/21 4713 -61.4.160.0/20 4713 -61.4.176.0/20 23724 -61.4.192.0/18 18313 -61.5.0.0/21 7713 -61.5.8.0/22 7713 -61.5.12.0/22 17974 -61.5.16.0/20 7713 -61.5.32.0/21 7713 -61.5.40.0/22 17974 -61.5.44.0/22 7713 -61.5.48.0/22 17974 -61.5.52.0/22 7713 -61.5.56.0/24 17974 -61.5.57.0/24 7713 -61.5.58.0/23 7713 -61.5.60.0/22 7713 -61.5.64.0/19 7713 -61.5.96.0/20 7713 -61.5.112.0/22 7713 -61.5.116.0/24 17974 -61.5.117.0/24 7713 -61.5.118.0/23 17974 -61.5.120.0/21 7713 -61.5.128.0/20 9541 -61.5.145.0/24 9541 -61.5.146.0/23 9541 -61.5.148.0/22 9541 -61.5.152.0/23 9541 -61.5.154.0/24 9541 -61.5.156.0/22 9541 -61.5.160.0/19 3786 -61.5.192.0/24 133066 -61.5.193.0/24 138322 -61.5.194.0/24 138322 -61.5.195.0/24 38742 -61.5.196.0/24 138322 -61.5.197.0/24 38742 -61.5.198.0/23 38742 -61.5.200.0/21 38742 -61.5.208.0/20 18200 -61.5.224.0/20 10013 -61.5.245.0/24 10013 -61.5.246.0/23 10013 -61.5.248.0/21 10013 -61.6.0.0/17 9930 -61.6.128.0/18 9930 -61.6.192.0/18 10094 -61.7.0.0/17 18150 -61.7.128.0/23 131090 -61.7.132.0/22 131090 -61.7.136.0/24 131090 -61.7.138.0/24 131090 -61.7.141.0/24 131090 -61.7.142.0/23 131090 -61.7.144.0/22 131090 -61.7.148.0/23 131090 -61.7.150.0/24 9931 -61.7.151.0/24 131090 -61.7.152.0/23 131090 -61.7.154.0/23 9931 -61.7.156.0/23 9931 -61.7.158.0/23 131090 -61.7.160.0/21 131090 -61.7.171.0/24 131090 -61.7.172.0/23 131090 -61.7.176.0/23 131090 -61.7.180.0/24 131090 -61.7.182.0/23 131090 -61.7.184.0/23 131090 -61.7.186.0/24 131090 -61.7.188.0/23 131090 -61.7.191.0/24 131090 -61.7.192.0/19 9931 -61.7.224.0/20 9931 -61.7.240.0/21 9931 -61.7.248.0/24 133042 -61.7.249.0/24 9931 -61.7.250.0/23 9931 -61.7.252.0/22 9931 -61.8.0.0/19 7543 -61.8.32.0/19 4637 -61.8.64.0/20 4800 -61.8.80.0/20 10013 -61.8.96.0/19 7545 -61.8.128.0/22 17447 -61.8.133.0/24 17447 -61.8.134.0/23 17447 -61.8.136.0/21 17447 -61.8.144.0/21 17447 -61.8.152.0/22 17447 -61.8.157.0/24 17447 -61.8.158.0/23 17447 -61.8.176.0/20 63134 -61.8.192.0/19 4657 -61.8.224.0/21 4657 -61.8.232.0/23 4657 -61.8.234.0/24 4657 -61.8.235.0/24 9874 -61.8.236.0/24 9874 -61.8.237.0/24 4657 -61.8.238.0/23 4657 -61.8.240.0/20 4657 -61.9.0.0/20 17970 -61.9.16.0/22 17970 -61.9.20.0/22 23944 -61.9.24.0/21 17970 -61.9.32.0/22 17970 -61.9.36.0/22 23944 -61.9.40.0/21 23944 -61.9.48.0/21 17970 -61.9.56.0/22 17970 -61.9.60.0/22 23944 -61.9.64.0/22 17970 -61.9.68.0/22 23944 -61.9.72.0/21 23944 -61.9.80.0/21 6163 -61.9.88.0/21 17970 -61.9.96.0/22 17970 -61.9.100.0/22 23944 -61.9.104.0/21 23944 -61.9.112.0/20 23944 -61.9.128.0/17 1221 -61.10.0.0/16 9908 -61.11.0.0/24 17908 -61.11.1.0/24 4755 -61.11.2.0/23 4755 -61.11.4.0/22 4755 -61.11.8.0/21 4755 -61.11.16.0/22 4755 -61.11.20.0/24 17908 -61.11.21.0/24 4755 -61.11.22.0/23 4755 -61.11.24.0/22 17908 -61.11.28.0/24 17908 -61.11.29.0/24 4755 -61.11.30.0/23 17908 -61.11.32.0/21 17908 -61.11.44.0/22 17908 -61.11.48.0/21 17908 -61.11.64.0/24 17908 -61.11.72.0/21 4755 -61.11.104.0/23 17908 -61.11.128.0/18 23783 -61.11.192.0/20 23783 -61.11.208.0/20 24218 -61.12.0.0/21 17820 -61.12.8.0/22 17820 -61.12.20.0/22 17820 -61.12.24.0/21 17820 -61.12.32.0/20 45820 -61.12.48.0/22 17820 -61.12.56.0/21 17820 -61.12.64.0/20 45820 -61.12.80.0/21 45820 -61.12.88.0/22 45820 -61.12.92.0/23 45820 -61.12.94.0/24 45820 -61.12.96.0/21 17820 -61.12.108.0/22 17820 -61.12.112.0/22 17820 -61.12.120.0/21 17820 -61.12.128.0/17 10013 -61.13.2.0/24 134078 -61.13.16.0/20 134078 -61.13.128.0/22 134078 -61.13.136.0/22 134078 -61.14.0.0/18 3300 -61.14.64.0/19 134078 -61.14.96.0/19 9738 -61.14.128.0/19 4637 -61.14.160.0/22 4637 -61.14.164.0/24 393513 -61.14.165.0/24 4637 -61.14.166.0/23 4637 -61.14.168.0/21 4637 -61.14.176.0/20 4637 -61.14.192.0/21 17970 -61.14.202.0/24 10099 -61.14.208.0/22 45382 -61.14.224.0/22 46261 -61.14.228.0/23 18002 -61.14.230.0/24 18002 -61.14.232.0/22 45899 -61.14.236.0/22 63731 -61.14.248.0/22 63501 -61.14.252.0/22 63888 -61.15.0.0/16 9908 -61.16.0.0/20 134078 -61.16.16.0/24 134078 -61.16.32.0/22 134078 -61.16.48.0/20 137468 -61.16.128.0/20 45820 -61.16.144.0/20 17820 -61.16.160.0/22 17820 -61.16.172.0/22 17820 -61.16.176.0/20 17820 -61.16.192.0/21 17820 -61.16.208.0/20 17820 -61.16.224.0/19 17820 -61.17.0.0/24 17908 -61.17.1.0/24 4755 -61.17.2.0/23 4755 -61.17.4.0/22 4755 -61.17.8.0/22 4755 -61.17.12.0/22 17908 -61.17.16.0/21 17908 -61.17.24.0/21 4755 -61.17.32.0/23 4755 -61.17.34.0/24 17908 -61.17.35.0/24 4755 -61.17.36.0/22 17908 -61.17.40.0/22 4755 -61.17.44.0/22 17908 -61.17.48.0/21 17908 -61.17.56.0/24 4755 -61.17.57.0/24 17908 -61.17.58.0/23 4755 -61.17.60.0/22 4755 -61.17.64.0/21 4755 -61.17.72.0/22 17908 -61.17.76.0/22 4755 -61.17.80.0/23 4755 -61.17.82.0/24 4755 -61.17.83.0/24 17908 -61.17.84.0/22 4755 -61.17.88.0/21 4755 -61.17.96.0/21 4755 -61.17.104.0/22 4755 -61.17.108.0/24 17908 -61.17.109.0/24 4755 -61.17.110.0/23 4755 -61.17.112.0/21 17908 -61.17.120.0/23 17908 -61.17.122.0/23 4755 -61.17.124.0/22 17908 -61.17.128.0/20 17908 -61.17.144.0/21 17908 -61.17.152.0/21 4755 -61.17.160.0/20 4755 -61.17.176.0/22 4755 -61.17.180.0/24 4755 -61.17.181.0/24 17908 -61.17.182.0/23 17908 -61.17.184.0/21 4755 -61.17.192.0/22 4755 -61.17.196.0/24 4755 -61.17.197.0/24 17908 -61.17.198.0/23 4755 -61.17.200.0/21 4755 -61.17.208.0/20 17908 -61.17.224.0/22 17908 -61.17.228.0/23 17908 -61.17.230.0/23 4755 -61.17.232.0/22 4755 -61.17.236.0/23 17908 -61.17.238.0/24 17908 -61.17.239.0/24 4755 -61.17.240.0/20 17908 -61.18.0.0/16 9908 -61.19.0.0/23 4651 -61.19.2.0/24 4651 -61.19.4.0/23 4651 -61.19.7.0/24 4651 -61.19.8.0/23 4651 -61.19.11.0/24 4651 -61.19.12.0/23 4651 -61.19.14.0/24 4651 -61.19.16.0/20 9931 -61.19.32.0/20 9931 -61.19.48.0/21 9931 -61.19.56.0/22 9931 -61.19.64.0/18 9931 -61.19.128.0/20 18252 -61.19.144.0/20 9931 -61.19.160.0/20 9931 -61.19.176.0/21 9931 -61.19.184.0/22 9931 -61.19.188.0/23 9931 -61.19.190.0/24 9931 -61.19.191.0/24 132701 -61.19.192.0/21 9931 -61.19.200.0/22 9931 -61.19.204.0/24 135635 -61.19.205.0/24 9931 -61.19.206.0/23 9931 -61.19.208.0/21 9931 -61.19.216.0/22 9931 -61.19.220.0/23 9931 -61.19.222.0/24 7715 -61.19.223.0/24 9931 -61.19.224.0/24 9931 -61.19.225.0/24 24042 -61.19.226.0/23 9931 -61.19.228.0/22 9931 -61.19.232.0/21 9931 -61.19.240.0/21 9335 -61.19.248.0/22 9335 -61.19.252.0/24 9335 -61.19.253.0/24 9931 -61.19.254.0/23 9931 -61.20.0.0/16 9674 -61.21.0.0/16 9824 -61.22.0.0/15 9824 -61.24.0.0/14 9824 -61.28.0.0/18 17490 -61.28.64.0/19 17490 -61.28.96.0/20 17490 -61.28.112.0/20 17622 -61.28.128.0/19 9658 -61.28.160.0/21 9658 -61.28.168.0/22 9658 -61.28.172.0/23 136955 -61.28.174.0/23 9658 -61.28.176.0/24 136955 -61.28.177.0/24 9658 -61.28.178.0/23 9658 -61.28.180.0/22 9658 -61.28.184.0/21 9658 -61.28.192.0/20 17978 -61.28.208.0/21 17978 -61.28.217.0/24 17978 -61.28.218.0/23 17978 -61.28.220.0/22 17978 -61.28.224.0/19 38244 -61.29.0.0/17 2764 -61.29.128.0/18 4134 -61.29.192.0/19 4134 -61.29.224.0/20 4134 -61.29.240.0/23 4134 -61.29.242.0/24 135391 -61.29.243.0/24 4134 -61.29.244.0/22 4134 -61.29.248.0/21 4134 -61.30.0.0/20 9924 -61.30.16.0/21 9924 -61.30.24.0/24 9924 -61.30.25.0/24 24158 -61.30.26.0/23 9924 -61.30.28.0/22 9924 -61.30.32.0/19 9924 -61.30.64.0/18 9924 -61.30.128.0/17 9924 -61.31.0.0/16 9924 -61.32.0.0/17 3786 -61.32.128.0/18 3786 -61.32.192.0/19 3786 -61.32.224.0/20 3786 -61.32.240.0/21 3786 -61.32.248.0/24 3786 -61.32.249.0/24 9641 -61.32.250.0/23 3786 -61.32.252.0/23 3786 -61.32.254.0/24 3786 -61.32.255.0/24 4665 -61.33.0.0/17 3786 -61.33.128.0/18 3786 -61.33.192.0/22 3786 -61.33.196.0/24 3786 -61.33.197.0/24 17853 -61.33.198.0/23 3786 -61.33.200.0/22 3786 -61.33.204.0/24 3786 -61.33.205.0/24 38428 -61.33.206.0/23 3786 -61.33.208.0/23 3786 -61.33.210.0/24 3786 -61.33.211.0/24 38428 -61.33.212.0/22 3786 -61.33.216.0/22 3786 -61.33.220.0/24 3786 -61.33.221.0/24 10058 -61.33.222.0/23 3786 -61.33.224.0/21 3786 -61.33.232.0/23 3786 -61.33.234.0/24 3786 -61.33.235.0/24 9578 -61.33.236.0/22 3786 -61.33.240.0/22 3786 -61.33.244.0/24 10185 -61.33.245.0/24 3786 -61.33.246.0/23 3786 -61.33.248.0/21 3786 -61.34.0.0/17 3786 -61.34.128.0/20 3786 -61.34.144.0/21 3786 -61.34.152.0/22 3786 -61.34.156.0/24 3786 -61.34.157.0/24 38104 -61.34.158.0/23 3786 -61.34.160.0/23 3786 -61.34.162.0/24 3786 -61.34.163.0/24 45408 -61.34.164.0/23 3786 -61.34.166.0/24 63199 -61.34.167.0/24 3786 -61.34.168.0/21 3786 -61.34.176.0/21 3786 -61.34.184.0/22 3786 -61.34.188.0/24 3786 -61.34.189.0/24 9972 -61.34.190.0/23 3786 -61.34.192.0/19 3786 -61.34.224.0/20 3786 -61.34.240.0/21 3786 -61.34.248.0/22 3786 -61.34.252.0/24 3786 -61.34.253.0/24 45363 -61.34.254.0/24 45363 -61.34.255.0/24 3786 -61.35.0.0/19 3786 -61.35.32.0/22 3786 -61.35.36.0/24 3786 -61.35.37.0/24 10072 -61.35.38.0/24 9946 -61.35.39.0/24 3786 -61.35.40.0/21 3786 -61.35.48.0/20 3786 -61.35.64.0/18 3786 -61.35.128.0/18 3786 -61.35.192.0/19 3786 -61.35.224.0/21 3786 -61.35.232.0/22 3786 -61.35.236.0/24 23566 -61.35.237.0/24 3786 -61.35.238.0/23 3786 -61.35.240.0/21 3786 -61.35.248.0/22 3786 -61.35.252.0/24 3786 -61.35.253.0/24 9946 -61.35.254.0/23 3786 -61.36.0.0/17 3786 -61.36.128.0/18 3786 -61.36.192.0/20 3786 -61.36.208.0/21 3786 -61.36.216.0/22 3786 -61.36.220.0/23 3786 -61.36.222.0/24 3786 -61.36.223.0/24 23714 -61.36.224.0/22 3786 -61.36.228.0/24 9857 -61.36.229.0/24 3786 -61.36.230.0/23 3786 -61.36.232.0/24 3786 -61.36.233.0/24 4766 -61.36.234.0/23 4766 -61.36.236.0/24 4766 -61.36.237.0/24 3786 -61.36.238.0/23 3786 -61.36.240.0/20 3786 -61.37.0.0/17 3786 -61.37.128.0/18 3786 -61.37.192.0/19 3786 -61.37.224.0/20 3786 -61.37.240.0/21 3786 -61.37.248.0/22 3786 -61.37.252.0/24 9863 -61.37.253.0/24 3786 -61.37.254.0/24 9638 -61.37.255.0/24 3786 -61.38.0.0/21 3786 -61.38.8.0/23 3786 -61.38.10.0/23 9955 -61.38.12.0/22 3786 -61.38.16.0/20 3786 -61.38.32.0/19 3786 -61.38.64.0/18 3786 -61.38.128.0/18 3786 -61.38.192.0/19 3786 -61.38.224.0/20 3786 -61.38.240.0/21 3786 -61.38.248.0/24 3786 -61.38.249.0/24 9946 -61.38.250.0/24 9968 -61.38.251.0/24 3786 -61.38.252.0/22 3786 -61.39.0.0/23 9946 -61.39.2.0/23 3786 -61.39.4.0/22 3786 -61.39.8.0/21 3786 -61.39.16.0/21 3786 -61.39.24.0/23 3786 -61.39.26.0/23 9946 -61.39.28.0/24 9946 -61.39.29.0/24 17586 -61.39.30.0/23 3786 -61.39.32.0/20 3786 -61.39.48.0/21 3786 -61.39.56.0/22 3786 -61.39.60.0/24 3786 -61.39.61.0/24 9946 -61.39.62.0/23 3786 -61.39.64.0/18 3786 -61.39.128.0/19 3786 -61.39.160.0/21 3786 -61.39.168.0/23 3786 -61.39.170.0/24 9946 -61.39.171.0/24 3786 -61.39.172.0/22 3786 -61.39.176.0/20 3786 -61.39.192.0/20 3786 -61.39.208.0/21 3786 -61.39.216.0/22 3786 -61.39.220.0/23 3786 -61.39.222.0/23 23714 -61.39.224.0/24 3786 -61.39.225.0/24 17578 -61.39.226.0/24 3786 -61.39.227.0/24 23714 -61.39.228.0/24 23714 -61.39.229.0/24 3786 -61.39.230.0/24 3786 -61.39.231.0/24 23714 -61.39.232.0/24 23714 -61.39.233.0/24 3786 -61.39.234.0/23 3786 -61.39.236.0/22 3786 -61.39.240.0/23 3786 -61.39.242.0/24 3786 -61.39.243.0/24 17578 -61.39.244.0/22 17578 -61.39.248.0/23 17578 -61.39.250.0/23 3786 -61.39.252.0/22 3786 -61.40.0.0/20 3786 -61.40.16.0/23 3786 -61.40.18.0/24 45978 -61.40.19.0/24 3786 -61.40.20.0/22 3786 -61.40.24.0/23 3786 -61.40.26.0/24 3786 -61.40.27.0/24 18295 -61.40.28.0/22 3786 -61.40.32.0/19 3786 -61.40.64.0/18 3786 -61.40.128.0/24 38700 -61.40.129.0/24 3786 -61.40.130.0/23 3786 -61.40.132.0/22 3786 -61.40.136.0/21 3786 -61.40.144.0/23 3786 -61.40.146.0/24 3786 -61.40.147.0/24 38700 -61.40.148.0/22 3786 -61.40.152.0/21 3786 -61.40.160.0/19 3786 -61.40.192.0/19 3786 -61.40.224.0/21 3786 -61.40.232.0/22 3786 -61.40.236.0/24 9629 -61.40.237.0/24 3786 -61.40.238.0/23 3786 -61.40.240.0/21 3786 -61.40.248.0/24 17863 -61.40.249.0/24 3786 -61.40.250.0/23 3786 -61.40.252.0/22 3786 -61.41.0.0/17 3786 -61.41.128.0/20 3786 -61.41.144.0/21 3786 -61.41.152.0/23 3786 -61.41.154.0/24 3786 -61.41.155.0/24 9638 -61.41.156.0/22 3786 -61.41.160.0/21 3786 -61.41.168.0/24 18326 -61.41.169.0/24 3786 -61.41.170.0/23 3786 -61.41.172.0/22 3786 -61.41.176.0/20 3786 -61.41.192.0/22 3786 -61.41.196.0/24 3786 -61.41.197.0/24 55585 -61.41.198.0/23 3786 -61.41.200.0/22 3786 -61.41.204.0/23 3786 -61.41.206.0/24 3786 -61.41.207.0/24 9946 -61.41.208.0/22 3786 -61.41.212.0/24 9946 -61.41.213.0/24 3786 -61.41.214.0/23 9982 -61.41.216.0/24 9946 -61.41.217.0/24 3786 -61.41.218.0/24 3786 -61.41.219.0/24 17598 -61.41.220.0/22 17598 -61.41.224.0/21 17598 -61.41.232.0/23 17598 -61.41.234.0/24 17598 -61.41.235.0/24 9946 -61.41.236.0/23 9946 -61.41.238.0/24 9946 -61.41.239.0/24 9871 -61.41.240.0/21 3786 -61.41.248.0/24 3786 -61.41.249.0/24 9946 -61.41.250.0/23 3786 -61.41.252.0/22 3786 -61.42.0.0/19 3786 -61.42.32.0/22 3786 -61.42.36.0/22 17586 -61.42.40.0/24 17586 -61.42.41.0/24 9946 -61.42.42.0/23 3786 -61.42.44.0/24 3786 -61.42.45.0/24 38127 -61.42.46.0/23 3786 -61.42.48.0/21 3786 -61.42.56.0/24 9946 -61.42.57.0/24 3786 -61.42.58.0/23 3786 -61.42.60.0/23 3786 -61.42.62.0/24 3786 -61.42.63.0/24 9955 -61.42.64.0/22 9955 -61.42.68.0/24 9946 -61.42.69.0/24 3786 -61.42.70.0/23 3786 -61.42.72.0/21 3786 -61.42.80.0/21 3786 -61.42.88.0/24 9946 -61.42.89.0/24 3786 -61.42.90.0/23 3786 -61.42.92.0/22 3786 -61.42.96.0/21 3786 -61.42.104.0/24 3786 -61.42.105.0/24 9684 -61.42.106.0/23 3786 -61.42.108.0/22 3786 -61.42.112.0/22 3786 -61.42.116.0/23 3786 -61.42.118.0/24 3786 -61.42.119.0/24 9946 -61.42.120.0/22 3786 -61.42.124.0/23 3786 -61.42.126.0/23 9946 -61.42.128.0/22 3786 -61.42.132.0/24 3786 -61.42.133.0/24 9946 -61.42.134.0/23 3786 -61.42.136.0/21 3786 -61.42.144.0/22 3786 -61.42.148.0/23 3786 -61.42.150.0/23 9946 -61.42.152.0/23 3786 -61.42.154.0/24 3786 -61.42.155.0/24 17586 -61.42.156.0/23 17586 -61.42.158.0/24 3786 -61.42.159.0/24 4668 -61.42.160.0/21 3786 -61.42.168.0/21 17586 -61.42.176.0/22 3786 -61.42.180.0/24 9946 -61.42.181.0/24 3786 -61.42.182.0/23 3786 -61.42.184.0/23 3786 -61.42.186.0/24 3786 -61.42.187.0/24 4668 -61.42.188.0/22 3786 -61.42.192.0/22 3786 -61.42.196.0/24 9946 -61.42.197.0/24 3786 -61.42.198.0/24 3786 -61.42.199.0/24 18295 -61.42.200.0/21 3786 -61.42.208.0/23 3786 -61.42.210.0/24 3786 -61.42.211.0/24 9638 -61.42.212.0/23 9638 -61.42.214.0/23 23714 -61.42.216.0/24 23714 -61.42.217.0/24 3786 -61.42.218.0/23 3786 -61.42.220.0/22 3786 -61.42.224.0/23 3786 -61.42.226.0/24 45974 -61.42.227.0/24 3786 -61.42.228.0/22 3786 -61.42.232.0/22 3786 -61.42.236.0/23 3786 -61.42.238.0/23 45979 -61.42.240.0/22 3786 -61.42.244.0/23 3786 -61.42.246.0/24 9776 -61.42.247.0/24 3786 -61.42.248.0/21 3786 -61.43.0.0/19 3786 -61.43.32.0/21 3786 -61.43.40.0/22 3786 -61.43.44.0/24 9946 -61.43.45.0/24 3786 -61.43.46.0/23 3786 -61.43.48.0/24 9946 -61.43.49.0/24 3786 -61.43.50.0/23 3786 -61.43.52.0/22 3786 -61.43.56.0/22 3786 -61.43.60.0/24 18314 -61.43.61.0/24 3786 -61.43.62.0/24 3786 -61.43.63.0/24 9946 -61.43.64.0/22 3786 -61.43.68.0/24 9946 -61.43.69.0/24 3786 -61.43.70.0/24 3786 -61.43.71.0/24 9946 -61.43.72.0/23 9946 -61.43.74.0/24 9946 -61.43.75.0/24 3786 -61.43.76.0/22 3786 -61.43.80.0/23 3786 -61.43.82.0/24 4668 -61.43.83.0/24 3786 -61.43.84.0/22 3786 -61.43.88.0/23 3786 -61.43.90.0/24 10073 -61.43.91.0/24 3786 -61.43.92.0/22 3786 -61.43.96.0/23 3786 -61.43.98.0/23 10073 -61.43.100.0/22 3786 -61.43.104.0/21 3786 -61.43.112.0/24 9946 -61.43.113.0/24 3786 -61.43.114.0/23 3786 -61.43.116.0/22 3786 -61.43.120.0/21 3786 -61.43.128.0/21 3786 -61.43.136.0/24 4668 -61.43.137.0/24 3786 -61.43.138.0/23 3786 -61.43.140.0/22 3786 -61.43.144.0/21 3786 -61.43.152.0/23 3786 -61.43.154.0/24 3786 -61.43.155.0/24 55626 -61.43.156.0/24 55626 -61.43.157.0/24 3786 -61.43.158.0/23 3786 -61.43.160.0/22 3786 -61.43.164.0/24 17853 -61.43.165.0/24 3786 -61.43.166.0/23 3786 -61.43.168.0/21 3786 -61.43.176.0/23 3786 -61.43.178.0/24 3786 -61.43.179.0/24 17853 -61.43.180.0/23 17853 -61.43.182.0/23 3786 -61.43.184.0/21 3786 -61.43.192.0/24 3786 -61.43.193.0/24 9946 -61.43.194.0/24 3786 -61.43.195.0/24 45384 -61.43.196.0/22 3786 -61.43.200.0/24 9946 -61.43.201.0/24 3786 -61.43.202.0/24 3786 -61.43.203.0/24 23573 -61.43.204.0/24 4665 -61.43.205.0/24 3786 -61.43.206.0/23 3786 -61.43.208.0/24 3786 -61.43.209.0/24 38427 -61.43.210.0/23 3786 -61.43.212.0/22 3786 -61.43.216.0/21 3786 -61.43.224.0/23 3786 -61.43.226.0/24 17853 -61.43.227.0/24 3786 -61.43.228.0/23 3786 -61.43.230.0/24 17853 -61.43.231.0/24 3786 -61.43.232.0/22 3786 -61.43.236.0/24 17853 -61.43.237.0/24 3786 -61.43.238.0/23 3786 -61.43.240.0/23 3786 -61.43.242.0/24 3786 -61.43.243.0/24 38418 -61.43.244.0/22 3786 -61.43.248.0/22 3786 -61.43.252.0/24 23584 -61.43.253.0/24 3786 -61.43.254.0/23 3786 -61.44.16.0/20 10013 -61.44.32.0/19 10013 -61.44.64.0/23 10013 -61.44.66.0/24 10013 -61.44.68.0/22 10013 -61.44.72.0/21 10013 -61.44.96.0/19 10013 -61.44.128.0/18 59127 -61.44.208.0/20 10013 -61.44.224.0/19 18092 -61.45.0.0/17 9595 -61.45.131.0/24 9394 -61.45.192.0/19 9600 -61.45.240.0/21 17676 -61.46.0.0/16 9617 -61.47.1.0/24 4765 -61.47.2.0/24 4765 -61.47.6.0/23 4765 -61.47.8.0/22 4765 -61.47.12.0/23 4765 -61.47.14.0/24 4765 -61.47.16.0/24 4765 -61.47.18.0/23 4765 -61.47.20.0/24 4765 -61.47.23.0/24 4765 -61.47.25.0/24 4765 -61.47.26.0/24 4765 -61.47.28.0/24 4765 -61.47.30.0/23 4765 -61.47.32.0/21 4765 -61.47.40.0/22 4765 -61.47.47.0/24 4765 -61.47.48.0/24 4765 -61.47.52.0/24 4765 -61.47.57.0/24 4765 -61.47.58.0/23 4765 -61.47.60.0/22 4765 -61.47.67.0/24 4765 -61.47.68.0/22 4765 -61.47.80.0/21 4765 -61.47.96.0/23 4765 -61.47.100.0/23 4765 -61.47.104.0/22 4765 -61.47.112.0/20 4765 -61.47.128.0/18 17968 -61.47.192.0/18 17597 -61.48.0.0/16 4808 -61.49.0.0/18 4808 -61.49.64.0/20 4808 -61.49.80.0/22 4808 -61.49.84.0/23 4808 -61.49.86.0/24 4837 -61.49.87.0/24 4808 -61.49.88.0/21 4808 -61.49.96.0/19 4808 -61.49.128.0/17 4808 -61.50.0.0/15 4808 -61.52.0.0/14 4837 -61.56.0.0/20 18183 -61.56.16.0/20 18411 -61.56.64.0/19 9244 -61.56.96.0/20 18046 -61.56.128.0/19 18182 -61.56.160.0/20 4662 -61.56.176.0/21 4662 -61.56.184.0/22 4662 -61.56.188.0/23 4662 -61.56.190.0/24 4662 -61.56.191.0/24 24163 -61.56.192.0/18 9919 -61.57.0.0/19 9924 -61.57.32.0/19 4782 -61.57.64.0/18 131596 -61.57.128.0/19 18429 -61.57.208.0/20 4780 -61.57.224.0/20 17710 -61.57.240.0/20 18415 -61.58.0.0/20 18040 -61.58.16.0/20 4780 -61.58.32.0/22 2914 -61.58.36.0/23 2914 -61.58.38.0/24 38385 -61.58.39.0/24 2914 -61.58.40.0/22 2914 -61.58.44.0/23 2914 -61.58.46.0/24 27471 -61.58.47.0/24 2914 -61.58.48.0/20 4780 -61.58.64.0/19 131596 -61.58.96.0/21 4662 -61.58.104.0/22 24163 -61.58.108.0/22 4662 -61.58.112.0/21 4662 -61.58.120.0/22 4662 -61.58.124.0/22 24165 -61.58.128.0/19 18049 -61.58.160.0/19 131596 -61.58.192.0/18 9676 -61.59.0.0/16 4780 -61.60.0.0/17 4782 -61.60.128.0/18 9676 -61.60.192.0/20 18419 -61.60.208.0/22 24164 -61.60.212.0/23 24164 -61.60.214.0/23 9924 -61.60.216.0/21 24164 -61.60.224.0/20 18049 -61.60.240.0/20 9924 -61.61.0.0/21 9918 -61.61.32.0/24 9918 -61.61.33.0/24 9919 -61.61.34.0/23 9918 -61.61.36.0/22 9918 -61.61.40.0/24 9919 -61.61.41.0/24 9918 -61.61.42.0/23 9918 -61.61.44.0/22 9918 -61.61.48.0/20 9918 -61.61.76.0/22 9922 -61.61.80.0/20 9922 -61.61.96.0/19 9919 -61.61.128.0/22 9918 -61.61.132.0/22 9919 -61.61.136.0/23 9919 -61.61.138.0/23 9918 -61.61.140.0/24 9919 -61.61.141.0/24 9918 -61.61.142.0/23 9918 -61.61.144.0/20 9918 -61.61.160.0/21 9918 -61.61.168.0/21 9919 -61.61.176.0/20 9918 -61.61.208.0/20 4662 -61.61.224.0/20 4662 -61.61.240.0/20 18422 -61.62.0.0/16 18182 -61.63.0.0/18 18042 -61.63.64.0/19 18042 -61.63.96.0/19 131596 -61.63.128.0/17 9676 -61.64.0.0/19 4662 -61.64.48.0/20 10135 -61.64.64.0/18 18182 -61.64.128.0/17 18182 -61.65.0.0/17 9676 -61.65.128.0/18 9676 -61.65.192.0/19 18413 -61.65.224.0/21 131597 -61.65.232.0/22 131597 -61.65.240.0/20 38851 -61.66.0.0/16 9919 -61.67.0.0/20 18413 -61.67.16.0/20 18049 -61.67.32.0/21 18049 -61.67.40.0/22 18049 -61.67.44.0/24 18049 -61.67.45.0/24 4780 -61.67.46.0/23 18049 -61.67.64.0/19 4782 -61.67.128.0/17 18042 -61.68.0.0/16 7545 -61.69.0.0/22 18111 -61.69.4.0/22 2764 -61.69.8.0/21 2764 -61.69.16.0/21 2764 -61.69.24.0/23 18111 -61.69.26.0/24 18111 -61.69.27.0/24 2764 -61.69.28.0/22 2764 -61.69.32.0/19 2764 -61.69.64.0/18 2764 -61.69.128.0/17 7545 -61.70.0.0/16 9416 -61.71.0.0/18 9416 -61.71.64.0/19 9416 -61.71.96.0/20 9416 -61.71.112.0/20 131597 -61.71.128.0/17 9416 -61.72.0.0/20 4766 -61.72.16.0/23 4766 -61.72.18.0/24 38122 -61.72.19.0/24 4766 -61.72.20.0/22 4766 -61.72.24.0/21 4766 -61.72.32.0/19 4766 -61.72.64.0/19 4766 -61.72.96.0/20 4766 -61.72.112.0/21 4766 -61.72.120.0/22 4766 -61.72.124.0/23 4766 -61.72.126.0/23 18031 -61.72.128.0/23 18031 -61.72.130.0/23 4766 -61.72.132.0/22 4766 -61.72.136.0/21 4766 -61.72.144.0/20 4766 -61.72.160.0/19 4766 -61.72.192.0/19 4766 -61.72.224.0/23 17841 -61.72.226.0/24 17841 -61.72.227.0/24 4766 -61.72.228.0/23 4766 -61.72.230.0/24 17841 -61.72.231.0/24 4766 -61.72.232.0/22 4766 -61.72.236.0/24 4766 -61.72.237.0/24 17841 -61.72.238.0/23 17841 -61.72.240.0/20 4766 -61.73.0.0/17 4766 -61.73.128.0/19 4766 -61.73.160.0/20 4766 -61.73.176.0/21 4766 -61.73.184.0/23 55615 -61.73.186.0/23 4766 -61.73.188.0/22 4766 -61.73.192.0/20 4766 -61.73.208.0/22 4766 -61.73.212.0/24 55615 -61.73.213.0/24 4766 -61.73.214.0/23 4766 -61.73.216.0/21 4766 -61.73.224.0/19 4766 -61.74.0.0/17 4766 -61.74.128.0/21 4766 -61.74.136.0/22 4766 -61.74.140.0/24 9696 -61.74.141.0/24 4766 -61.74.142.0/23 4766 -61.74.144.0/20 4766 -61.74.160.0/20 4766 -61.74.176.0/21 4766 -61.74.184.0/22 4766 -61.74.188.0/23 4766 -61.74.190.0/24 4766 -61.74.191.0/24 38427 -61.74.192.0/18 4766 -61.75.0.0/17 4766 -61.75.128.0/18 4766 -61.75.192.0/22 4766 -61.75.196.0/23 23975 -61.75.198.0/23 9631 -61.75.200.0/23 9631 -61.75.202.0/23 4766 -61.75.204.0/22 4766 -61.75.208.0/20 4766 -61.75.224.0/20 4766 -61.75.240.0/21 4766 -61.75.248.0/22 4766 -61.75.252.0/24 4766 -61.75.253.0/24 38427 -61.75.254.0/24 38427 -61.75.255.0/24 4766 -61.76.0.0/17 4766 -61.76.128.0/18 4766 -61.76.192.0/19 4766 -61.76.224.0/21 4766 -61.76.232.0/22 4766 -61.76.236.0/22 9631 -61.76.240.0/20 4766 -61.77.0.0/20 4766 -61.77.16.0/23 4766 -61.77.18.0/24 4766 -61.77.19.0/24 38408 -61.77.20.0/22 4766 -61.77.24.0/22 4766 -61.77.28.0/24 4766 -61.77.29.0/24 38403 -61.77.30.0/23 4766 -61.77.32.0/21 4766 -61.77.40.0/22 4766 -61.77.44.0/24 4766 -61.77.45.0/24 38406 -61.77.46.0/23 4766 -61.77.48.0/20 4766 -61.77.64.0/18 4766 -61.77.128.0/17 4766 -61.78.0.0/24 55615 -61.78.1.0/24 4766 -61.78.2.0/23 4766 -61.78.4.0/22 4766 -61.78.8.0/22 4766 -61.78.12.0/24 55615 -61.78.13.0/24 4766 -61.78.14.0/23 4766 -61.78.16.0/20 4766 -61.78.32.0/19 4766 -61.78.64.0/23 4766 -61.78.66.0/24 9696 -61.78.67.0/24 4766 -61.78.68.0/22 4766 -61.78.72.0/23 4766 -61.78.74.0/24 10185 -61.78.75.0/24 4766 -61.78.76.0/22 4766 -61.78.80.0/20 4766 -61.78.96.0/19 4766 -61.78.128.0/20 4766 -61.78.144.0/21 4766 -61.78.152.0/22 4766 -61.78.156.0/24 4766 -61.78.157.0/24 9784 -61.78.158.0/23 4766 -61.78.160.0/19 4766 -61.78.192.0/18 4766 -61.79.0.0/18 4766 -61.79.64.0/20 4766 -61.79.80.0/21 4766 -61.79.88.0/24 38403 -61.79.89.0/24 4766 -61.79.90.0/23 4766 -61.79.92.0/22 4766 -61.79.96.0/19 4766 -61.79.128.0/18 4766 -61.79.192.0/19 4766 -61.79.224.0/20 4766 -61.79.240.0/22 4766 -61.79.244.0/23 38110 -61.79.246.0/24 38391 -61.79.247.0/24 38404 -61.79.248.0/21 4766 -61.80.0.0/17 4766 -61.80.128.0/18 4766 -61.80.192.0/21 4766 -61.80.200.0/22 4766 -61.80.204.0/23 4766 -61.80.206.0/23 18341 -61.80.208.0/20 18341 -61.80.224.0/19 4766 -61.81.0.0/18 4766 -61.81.64.0/19 4766 -61.81.96.0/23 4766 -61.81.98.0/23 9782 -61.81.100.0/22 4766 -61.81.104.0/24 4766 -61.81.105.0/24 10190 -61.81.106.0/23 10190 -61.81.108.0/22 10190 -61.81.112.0/20 4766 -61.81.128.0/17 4766 -61.82.0.0/18 4766 -61.82.64.0/21 4766 -61.82.72.0/24 4766 -61.82.73.0/24 9696 -61.82.74.0/23 4766 -61.82.76.0/22 4766 -61.82.80.0/20 4766 -61.82.96.0/19 4766 -61.82.128.0/20 4766 -61.82.144.0/22 4766 -61.82.148.0/24 55592 -61.82.149.0/24 4766 -61.82.150.0/23 4766 -61.82.152.0/21 4766 -61.82.160.0/19 4766 -61.82.192.0/19 4766 -61.82.224.0/20 4766 -61.82.240.0/21 4766 -61.82.248.0/22 4766 -61.82.252.0/22 18023 -61.83.0.0/18 4766 -61.83.64.0/20 4766 -61.83.80.0/22 4766 -61.83.84.0/23 4793 -61.83.86.0/23 4766 -61.83.88.0/21 4766 -61.83.96.0/20 4766 -61.83.112.0/21 4766 -61.83.120.0/22 4766 -61.83.124.0/24 4793 -61.83.125.0/24 4766 -61.83.126.0/23 4766 -61.83.128.0/18 4766 -61.83.192.0/20 4766 -61.83.208.0/21 4766 -61.83.216.0/22 4766 -61.83.220.0/24 4766 -61.83.221.0/24 38408 -61.83.222.0/23 4766 -61.83.224.0/21 4766 -61.83.232.0/23 4766 -61.83.234.0/23 55624 -61.83.236.0/22 55624 -61.83.240.0/20 4766 -61.84.0.0/18 4766 -61.84.64.0/20 4766 -61.84.80.0/21 4766 -61.84.88.0/22 4766 -61.84.92.0/23 4766 -61.84.94.0/24 4766 -61.84.95.0/24 10185 -61.84.96.0/19 4766 -61.84.128.0/18 4766 -61.84.192.0/20 4766 -61.84.208.0/21 4766 -61.84.216.0/23 4766 -61.84.218.0/23 18164 -61.84.220.0/23 18164 -61.84.222.0/23 4766 -61.84.224.0/19 4766 -61.85.0.0/18 4766 -61.85.64.0/22 4766 -61.85.68.0/23 4766 -61.85.70.0/24 9960 -61.85.71.0/24 4766 -61.85.72.0/21 4766 -61.85.80.0/22 4766 -61.85.84.0/24 10058 -61.85.85.0/24 4766 -61.85.86.0/23 4766 -61.85.88.0/23 4766 -61.85.90.0/24 4766 -61.85.91.0/24 10058 -61.85.92.0/22 4766 -61.85.96.0/19 4766 -61.85.128.0/17 4766 -61.86.0.0/16 18081 -61.87.0.0/21 10013 -61.87.16.0/20 10013 -61.87.64.0/18 9354 -61.87.128.0/18 4637 -61.87.192.0/18 9812 -61.88.0.0/19 7474 -61.88.32.0/20 7474 -61.88.48.0/21 7474 -61.88.56.0/23 7474 -61.88.58.0/24 9738 -61.88.59.0/24 7474 -61.88.60.0/22 7474 -61.88.64.0/18 7474 -61.88.128.0/19 7474 -61.88.160.0/20 7474 -61.88.176.0/21 7474 -61.88.184.0/23 4804 -61.88.186.0/24 4804 -61.88.187.0/24 7474 -61.88.188.0/23 7474 -61.88.190.0/24 4804 -61.88.191.0/24 7474 -61.88.192.0/20 7474 -61.88.208.0/21 7474 -61.88.216.0/22 7474 -61.88.223.0/24 37931 -61.88.228.0/23 7474 -61.88.230.0/24 7474 -61.88.231.0/24 134139 -61.88.232.0/22 7474 -61.88.253.0/24 7474 -61.88.254.0/23 7474 -61.89.0.0/16 18081 -61.90.0.0/17 17552 -61.90.128.0/20 7470 -61.90.144.0/21 7470 -61.90.152.0/22 7470 -61.90.156.0/24 7470 -61.90.157.0/24 38815 -61.90.158.0/23 7470 -61.90.160.0/20 7470 -61.90.176.0/24 7470 -61.90.177.0/24 45806 -61.90.178.0/23 7470 -61.90.180.0/23 7470 -61.90.182.0/24 7470 -61.90.183.0/24 136581 -61.90.184.0/24 7470 -61.90.185.0/24 9287 -61.90.186.0/23 7470 -61.90.188.0/22 7470 -61.90.192.0/22 7470 -61.90.196.0/24 7470 -61.90.197.0/24 9287 -61.90.198.0/24 9287 -61.90.199.0/24 7470 -61.90.200.0/22 9287 -61.90.204.0/23 9287 -61.90.206.0/23 7470 -61.90.208.0/24 7470 -61.90.209.0/24 55938 -61.90.210.0/23 7470 -61.90.212.0/24 136579 -61.90.213.0/24 9287 -61.90.214.0/24 7470 -61.90.215.0/24 136579 -61.90.216.0/23 7470 -61.90.218.0/24 17475 -61.90.219.0/24 7470 -61.90.220.0/22 7470 -61.90.224.0/23 7470 -61.90.226.0/24 7470 -61.90.227.0/24 131460 -61.90.228.0/23 7470 -61.90.230.0/24 7470 -61.90.231.0/24 9287 -61.90.232.0/23 7470 -61.90.234.0/23 37992 -61.90.236.0/23 37992 -61.90.238.0/23 7470 -61.90.240.0/21 7470 -61.90.248.0/24 45806 -61.90.249.0/24 133167 -61.90.250.0/24 7470 -61.90.251.0/24 21734 -61.90.252.0/22 7470 -61.91.0.0/21 9287 -61.91.8.0/23 7470 -61.91.10.0/24 7470 -61.91.11.0/24 9287 -61.91.12.0/22 9287 -61.91.16.0/20 7470 -61.91.32.0/19 7470 -61.91.64.0/21 7470 -61.91.72.0/24 7470 -61.91.73.0/24 45200 -61.91.74.0/23 7470 -61.91.76.0/22 7470 -61.91.80.0/23 9287 -61.91.82.0/23 7470 -61.91.84.0/23 7470 -61.91.86.0/24 7470 -61.91.87.0/24 58544 -61.91.88.0/23 7470 -61.91.90.0/24 7470 -61.91.91.0/24 38448 -61.91.92.0/24 9287 -61.91.93.0/24 7470 -61.91.94.0/23 7470 -61.91.96.0/21 7470 -61.91.104.0/24 38599 -61.91.105.0/24 7470 -61.91.106.0/23 7470 -61.91.108.0/22 7470 -61.91.112.0/21 7470 -61.91.120.0/21 9287 -61.91.128.0/21 17552 -61.91.136.0/21 7470 -61.91.144.0/21 17552 -61.91.152.0/21 7470 -61.91.160.0/19 7470 -61.91.192.0/23 7470 -61.91.194.0/24 21859 -61.91.195.0/24 7470 -61.91.196.0/23 24067 -61.91.198.0/24 7470 -61.91.199.0/24 23683 -61.91.200.0/21 7470 -61.91.208.0/21 7470 -61.91.216.0/22 7470 -61.91.220.0/24 7470 -61.91.221.0/24 38082 -61.91.222.0/23 7470 -61.91.224.0/20 7470 -61.91.240.0/22 7470 -61.91.244.0/23 7470 -61.91.246.0/24 7470 -61.91.247.0/24 9287 -61.91.248.0/21 7470 -61.92.0.0/16 9269 -61.93.0.0/17 9269 -61.93.128.0/19 9269 -61.93.160.0/20 9269 -61.93.176.0/21 9269 -61.93.184.0/22 10103 -61.93.188.0/22 9269 -61.93.192.0/18 9269 -61.94.0.0/20 17974 -61.94.16.0/22 7713 -61.94.20.0/23 7713 -61.94.22.0/24 17974 -61.94.23.0/24 7713 -61.94.24.0/21 17974 -61.94.32.0/20 7713 -61.94.48.0/21 7713 -61.94.56.0/24 7713 -61.94.57.0/24 17974 -61.94.58.0/23 7713 -61.94.60.0/22 7713 -61.94.64.0/24 17974 -61.94.65.0/24 7713 -61.94.66.0/23 7713 -61.94.68.0/22 17974 -61.94.72.0/22 7713 -61.94.76.0/22 17974 -61.94.80.0/22 17974 -61.94.84.0/22 7713 -61.94.88.0/22 7713 -61.94.92.0/23 7713 -61.94.94.0/24 7713 -61.94.95.0/24 17974 -61.94.96.0/24 17974 -61.94.97.0/24 7713 -61.94.98.0/24 7713 -61.94.99.0/24 17974 -61.94.100.0/22 7713 -61.94.104.0/23 7713 -61.94.106.0/23 17974 -61.94.108.0/23 7713 -61.94.110.0/24 7713 -61.94.111.0/24 17974 -61.94.112.0/23 7713 -61.94.114.0/23 17974 -61.94.116.0/23 17974 -61.94.118.0/23 7713 -61.94.120.0/23 17974 -61.94.122.0/23 7713 -61.94.124.0/22 7713 -61.94.128.0/23 7713 -61.94.130.0/24 17974 -61.94.131.0/24 7713 -61.94.132.0/22 7713 -61.94.136.0/23 17974 -61.94.138.0/23 7713 -61.94.140.0/22 7713 -61.94.144.0/24 17974 -61.94.145.0/24 7713 -61.94.146.0/23 7713 -61.94.148.0/22 7713 -61.94.152.0/21 7713 -61.94.160.0/22 7713 -61.94.164.0/23 7713 -61.94.166.0/23 17974 -61.94.168.0/22 17974 -61.94.172.0/24 17974 -61.94.173.0/24 7713 -61.94.174.0/23 7713 -61.94.176.0/22 7713 -61.94.180.0/23 17974 -61.94.182.0/23 7713 -61.94.184.0/23 7713 -61.94.186.0/24 17974 -61.94.187.0/24 7713 -61.94.188.0/24 17974 -61.94.189.0/24 7713 -61.94.190.0/24 7713 -61.94.191.0/24 17974 -61.94.192.0/24 17974 -61.94.193.0/24 7713 -61.94.194.0/23 7713 -61.94.196.0/23 17974 -61.94.198.0/23 7713 -61.94.200.0/22 17974 -61.94.204.0/24 17974 -61.94.205.0/24 7713 -61.94.206.0/23 7713 -61.94.208.0/21 7713 -61.94.216.0/23 7713 -61.94.218.0/23 17974 -61.94.220.0/23 7713 -61.94.222.0/24 7713 -61.94.223.0/24 17974 -61.94.224.0/22 7713 -61.94.228.0/24 7713 -61.94.229.0/24 17974 -61.94.230.0/23 17974 -61.94.232.0/24 17974 -61.94.233.0/24 7713 -61.94.234.0/23 7713 -61.94.236.0/22 7713 -61.94.240.0/24 7713 -61.94.241.0/24 17974 -61.94.242.0/23 7713 -61.94.244.0/22 7713 -61.94.248.0/23 7713 -61.94.250.0/24 17974 -61.94.251.0/24 7713 -61.94.252.0/23 7713 -61.94.254.0/23 17974 -61.95.0.0/17 2764 -61.95.128.0/18 9498 -61.95.192.0/22 24560 -61.95.196.0/24 9498 -61.95.197.0/24 24560 -61.95.198.0/23 24560 -61.95.200.0/21 24560 -61.95.208.0/21 9498 -61.95.216.0/23 9498 -61.95.218.0/24 9498 -61.95.219.0/24 24560 -61.95.220.0/22 24560 -61.95.224.0/24 24560 -61.95.225.0/24 9498 -61.95.226.0/24 9498 -61.95.227.0/24 24560 -61.95.228.0/24 24560 -61.95.229.0/24 9498 -61.95.230.0/23 9498 -61.95.232.0/23 9498 -61.95.234.0/23 24560 -61.95.236.0/22 9498 -61.95.240.0/22 9498 -61.95.244.0/23 9498 -61.95.246.0/24 24560 -61.95.247.0/24 9498 -61.95.248.0/24 9498 -61.95.249.0/24 24560 -61.95.250.0/23 9498 -61.95.252.0/22 9498 -61.96.0.0/19 9457 -61.96.32.0/20 9457 -61.96.48.0/23 9457 -61.96.50.0/23 38703 -61.96.52.0/22 9457 -61.96.56.0/21 9457 -61.96.64.0/20 45374 -61.96.80.0/22 9457 -61.96.84.0/23 9457 -61.96.86.0/24 38676 -61.96.87.0/24 9457 -61.96.88.0/21 9457 -61.96.96.0/19 9457 -61.96.128.0/21 9457 -61.96.136.0/22 9457 -61.96.140.0/23 9457 -61.96.142.0/24 9457 -61.96.143.0/24 10056 -61.96.144.0/20 9457 -61.96.160.0/21 9457 -61.96.168.0/21 45374 -61.96.176.0/23 45374 -61.96.178.0/23 9457 -61.96.180.0/22 9457 -61.96.184.0/21 9457 -61.96.192.0/21 9457 -61.96.200.0/22 9457 -61.96.204.0/23 9457 -61.96.206.0/24 38434 -61.96.207.0/24 38101 -61.96.208.0/20 9457 -61.96.224.0/20 9457 -61.96.240.0/20 45374 -61.97.0.0/20 10049 -61.97.16.0/20 17864 -61.97.32.0/19 3786 -61.97.96.0/24 9848 -61.97.112.0/20 3786 -61.97.128.0/19 38661 -61.97.160.0/20 4766 -61.97.176.0/20 23576 -61.97.192.0/19 17839 -61.97.224.0/20 17608 -61.97.240.0/24 4766 -61.97.241.0/24 45382 -61.97.242.0/24 3786 -61.97.243.0/24 45382 -61.97.244.0/23 45382 -61.97.246.0/24 45382 -61.97.247.0/24 3786 -61.97.248.0/24 45382 -61.97.249.0/24 133441 -61.97.250.0/23 45382 -61.97.252.0/23 45382 -61.97.255.0/24 3786 -61.98.0.0/15 9318 -61.100.0.0/21 9848 -61.100.8.0/24 9952 -61.100.9.0/24 9848 -61.100.10.0/23 9848 -61.100.12.0/22 9848 -61.100.16.0/20 9848 -61.100.32.0/23 9848 -61.100.34.0/24 38092 -61.100.35.0/24 9848 -61.100.36.0/22 9848 -61.100.40.0/21 9848 -61.100.48.0/21 9848 -61.100.56.0/22 9848 -61.100.60.0/23 9848 -61.100.62.0/24 9848 -61.100.63.0/24 38092 -61.100.64.0/22 38669 -61.100.68.0/24 38669 -61.100.69.0/24 9848 -61.100.70.0/23 9848 -61.100.72.0/21 9848 -61.100.80.0/21 9848 -61.100.88.0/23 9848 -61.100.90.0/23 9697 -61.100.92.0/22 9697 -61.100.96.0/22 9848 -61.100.100.0/22 9845 -61.100.104.0/22 9845 -61.100.108.0/23 9845 -61.100.110.0/24 9845 -61.100.111.0/24 9848 -61.100.112.0/22 9845 -61.100.116.0/22 9848 -61.100.120.0/22 9848 -61.100.124.0/22 9697 -61.100.128.0/19 9848 -61.100.160.0/20 9848 -61.100.176.0/21 9848 -61.100.184.0/22 9848 -61.100.188.0/23 9848 -61.100.190.0/24 9848 -61.100.191.0/24 9952 -61.100.192.0/19 18310 -61.100.224.0/20 17609 -61.100.240.0/21 45372 -61.100.248.0/22 3786 -61.101.0.0/18 9318 -61.101.64.0/21 9318 -61.101.72.0/24 9318 -61.101.73.0/24 38698 -61.101.74.0/23 9318 -61.101.76.0/22 9318 -61.101.80.0/20 9318 -61.101.96.0/19 9318 -61.101.128.0/18 9318 -61.101.192.0/19 9318 -61.101.224.0/22 3786 -61.101.244.0/22 3786 -61.102.0.0/17 17839 -61.102.128.0/18 38097 -61.102.192.0/18 9689 -61.103.0.0/19 9457 -61.103.32.0/20 9457 -61.103.48.0/24 9457 -61.103.49.0/24 38703 -61.103.50.0/23 38703 -61.103.52.0/22 9457 -61.103.56.0/21 9457 -61.103.64.0/18 9457 -61.103.128.0/17 9457 -61.104.0.0/19 18302 -61.104.32.0/21 18302 -61.104.40.0/23 18302 -61.104.42.0/23 23990 -61.104.44.0/24 18302 -61.104.45.0/24 23990 -61.104.46.0/23 18302 -61.104.48.0/22 18302 -61.104.52.0/23 18302 -61.104.54.0/24 18302 -61.104.55.0/24 38130 -61.104.56.0/21 18302 -61.104.64.0/21 18302 -61.104.72.0/22 18302 -61.104.76.0/24 17841 -61.104.77.0/24 18302 -61.104.78.0/23 18302 -61.104.80.0/20 18302 -61.104.96.0/19 18302 -61.104.128.0/22 38114 -61.104.132.0/23 38114 -61.104.134.0/23 18302 -61.104.136.0/21 18302 -61.104.144.0/21 18302 -61.104.152.0/22 18302 -61.104.156.0/23 18302 -61.104.158.0/24 18302 -61.104.159.0/24 38117 -61.104.160.0/23 38117 -61.104.162.0/24 38117 -61.104.163.0/24 18302 -61.104.164.0/22 18302 -61.104.168.0/23 18302 -61.104.170.0/24 18302 -61.104.171.0/24 17880 -61.104.172.0/22 18302 -61.104.176.0/20 18302 -61.104.192.0/18 18302 -61.105.0.0/16 9318 -61.106.0.0/19 10160 -61.106.32.0/19 4663 -61.106.64.0/20 9943 -61.106.80.0/20 17839 -61.106.96.0/19 17839 -61.106.128.0/18 4766 -61.106.192.0/19 17864 -61.106.224.0/20 9286 -61.107.0.0/17 9457 -61.107.128.0/20 9457 -61.107.144.0/22 9457 -61.107.148.0/23 9457 -61.107.150.0/24 45361 -61.107.151.0/24 9457 -61.107.152.0/21 9457 -61.107.160.0/19 9457 -61.107.192.0/19 9457 -61.107.224.0/21 9457 -61.107.232.0/22 9457 -61.107.236.0/23 9457 -61.107.238.0/24 9457 -61.107.239.0/24 38091 -61.107.240.0/20 9457 -61.108.0.0/21 9316 -61.108.8.0/23 9316 -61.108.10.0/24 23579 -61.108.11.0/24 9316 -61.108.12.0/22 9316 -61.108.16.0/21 9316 -61.108.24.0/23 9316 -61.108.26.0/24 38403 -61.108.27.0/24 9316 -61.108.28.0/22 9316 -61.108.32.0/20 9316 -61.108.48.0/24 17600 -61.108.49.0/24 9316 -61.108.50.0/23 3786 -61.108.52.0/22 9316 -61.108.56.0/24 38415 -61.108.57.0/24 9316 -61.108.58.0/23 9316 -61.108.60.0/24 9316 -61.108.61.0/24 9871 -61.108.62.0/23 9316 -61.108.64.0/20 9316 -61.108.80.0/23 9316 -61.108.82.0/24 9316 -61.108.83.0/24 9711 -61.108.84.0/24 9711 -61.108.85.0/24 9316 -61.108.86.0/23 9316 -61.108.88.0/24 9316 -61.108.89.0/24 3786 -61.108.90.0/24 17600 -61.108.91.0/24 9316 -61.108.92.0/22 9316 -61.108.96.0/21 9316 -61.108.104.0/22 9316 -61.108.108.0/23 9316 -61.108.110.0/24 55610 -61.108.111.0/24 9316 -61.108.112.0/20 9316 -61.108.128.0/19 9316 -61.108.160.0/23 9316 -61.108.162.0/24 9316 -61.108.163.0/24 17582 -61.108.164.0/22 9316 -61.108.168.0/24 9316 -61.108.169.0/24 9871 -61.108.170.0/23 9316 -61.108.172.0/22 9316 -61.108.176.0/20 9316 -61.108.192.0/19 9316 -61.108.224.0/24 9707 -61.108.225.0/24 9316 -61.108.226.0/24 9316 -61.108.227.0/24 45394 -61.108.228.0/22 9316 -61.108.232.0/23 9316 -61.108.234.0/24 9871 -61.108.235.0/24 9950 -61.108.236.0/24 9950 -61.108.237.0/24 9316 -61.108.238.0/23 9316 -61.108.240.0/20 9316 -61.109.0.0/17 17864 -61.109.128.0/20 9848 -61.109.144.0/22 9848 -61.109.148.0/23 9848 -61.109.150.0/24 9845 -61.109.151.0/24 9848 -61.109.152.0/23 9770 -61.109.154.0/23 9848 -61.109.156.0/23 9848 -61.109.158.0/23 23584 -61.109.160.0/22 23584 -61.109.164.0/23 23584 -61.109.166.0/23 9848 -61.109.168.0/21 9848 -61.109.176.0/21 9848 -61.109.184.0/22 9848 -61.109.188.0/24 9845 -61.109.189.0/24 9770 -61.109.190.0/23 9848 -61.109.192.0/19 9848 -61.109.224.0/21 9848 -61.109.232.0/22 9848 -61.109.236.0/23 9848 -61.109.238.0/23 9770 -61.109.240.0/23 9770 -61.109.242.0/23 9848 -61.109.244.0/23 9952 -61.109.246.0/24 9952 -61.109.247.0/24 9848 -61.109.248.0/23 9848 -61.109.250.0/24 9952 -61.109.251.0/24 9848 -61.109.252.0/24 9848 -61.109.253.0/24 9952 -61.109.254.0/23 9848 -61.110.0.0/19 4670 -61.110.48.0/20 4670 -61.110.64.0/19 4670 -61.110.96.0/22 4670 -61.110.100.0/24 9980 -61.110.101.0/24 4670 -61.110.102.0/23 4670 -61.110.104.0/23 4664 -61.110.106.0/23 4670 -61.110.108.0/22 4670 -61.110.112.0/23 4664 -61.110.114.0/23 4670 -61.110.116.0/22 4670 -61.110.120.0/21 4670 -61.110.128.0/22 17583 -61.110.132.0/22 9845 -61.110.136.0/21 9845 -61.110.144.0/20 9845 -61.110.160.0/19 17583 -61.110.192.0/20 4766 -61.110.208.0/21 38107 -61.110.216.0/21 36408 -61.110.224.0/19 38107 -61.111.0.0/18 3786 -61.111.64.0/19 3786 -61.111.112.0/23 4670 -61.111.114.0/24 4664 -61.111.115.0/24 4670 -61.111.116.0/22 4670 -61.111.120.0/21 4670 -61.111.128.0/18 4670 -61.111.240.0/20 4670 -61.112.0.0/15 4713 -61.114.0.0/18 2516 -61.114.64.0/20 10002 -61.114.80.0/20 10003 -61.114.96.0/20 10000 -61.114.112.0/20 4713 -61.114.128.0/19 7679 -61.114.160.0/20 10012 -61.114.176.0/20 10006 -61.114.192.0/19 4685 -61.114.224.0/20 10015 -61.114.240.0/20 17676 -61.115.0.0/19 9595 -61.115.32.0/24 9595 -61.115.33.0/24 4713 -61.115.34.0/23 9595 -61.115.36.0/22 9595 -61.115.40.0/21 9595 -61.115.48.0/20 9595 -61.115.64.0/18 9595 -61.115.128.0/18 9617 -61.115.192.0/20 17676 -61.115.208.0/20 7524 -61.115.224.0/21 4694 -61.115.232.0/23 4694 -61.115.234.0/24 2554 -61.115.235.0/24 4694 -61.115.236.0/22 4694 -61.115.240.0/20 10019 -61.116.0.0/16 4725 -61.117.0.0/16 2516 -61.118.0.0/15 4713 -61.120.0.0/17 2516 -61.120.128.0/20 9997 -61.120.144.0/20 2914 -61.120.160.0/19 2527 -61.120.192.0/20 10021 -61.120.208.0/21 10013 -61.120.224.0/19 10010 -61.121.0.0/17 2510 -61.121.128.0/18 9998 -61.121.198.0/24 4694 -61.121.200.0/24 4694 -61.121.208.0/20 17707 -61.121.224.0/20 10011 -61.121.240.0/24 4694 -61.121.241.0/24 4725 -61.121.242.0/23 4694 -61.121.244.0/22 4694 -61.121.248.0/21 4694 -61.122.0.0/22 7670 -61.122.16.0/22 2522 -61.122.32.0/20 17676 -61.122.48.0/20 9614 -61.122.64.0/19 4723 -61.122.112.0/20 17506 -61.122.128.0/18 17504 -61.122.208.0/20 10019 -61.122.224.0/20 17513 -61.122.240.0/20 17511 -61.123.0.0/16 4725 -61.124.0.0/16 2510 -61.125.0.0/18 9595 -61.125.64.0/18 9617 -61.125.128.0/20 17676 -61.125.144.0/20 9351 -61.125.160.0/20 7670 -61.125.192.0/18 4685 -61.126.0.0/15 4713 -61.128.0.0/20 4134 -61.128.16.0/21 137694 -61.128.24.0/21 4134 -61.128.32.0/19 4134 -61.128.64.0/21 137694 -61.128.72.0/21 4134 -61.128.80.0/21 4134 -61.128.88.0/22 137694 -61.128.92.0/22 4134 -61.128.96.0/19 4134 -61.128.128.0/21 4134 -61.128.136.0/21 134420 -61.128.144.0/21 134420 -61.128.152.0/22 134420 -61.128.156.0/22 4134 -61.128.160.0/21 4134 -61.128.168.0/23 4134 -61.128.170.0/24 4134 -61.128.171.0/24 134420 -61.128.172.0/23 134420 -61.128.174.0/23 4134 -61.128.176.0/20 4134 -61.128.192.0/23 4134 -61.128.194.0/24 134420 -61.128.195.0/24 4134 -61.128.196.0/24 134420 -61.128.197.0/24 4134 -61.128.198.0/24 134420 -61.128.199.0/24 4134 -61.128.200.0/21 4134 -61.128.208.0/20 4134 -61.128.224.0/19 4134 -61.129.0.0/16 4812 -61.130.0.0/21 4134 -61.130.8.0/24 4134 -61.130.9.0/24 58461 -61.130.10.0/23 4134 -61.130.12.0/22 4134 -61.130.16.0/21 4134 -61.130.24.0/24 4134 -61.130.25.0/24 136190 -61.130.26.0/23 4134 -61.130.28.0/23 136190 -61.130.30.0/24 136190 -61.130.31.0/24 4134 -61.130.32.0/19 4134 -61.130.64.0/18 4134 -61.130.128.0/20 4134 -61.130.144.0/23 136190 -61.130.146.0/23 4134 -61.130.148.0/22 4134 -61.130.152.0/21 4134 -61.130.160.0/19 4134 -61.130.192.0/18 4134 -61.131.0.0/16 4134 -61.132.0.0/19 4134 -61.132.32.0/20 4134 -61.132.48.0/23 4134 -61.132.50.0/24 4134 -61.132.51.0/24 137702 -61.132.52.0/22 4134 -61.132.56.0/21 4134 -61.132.64.0/21 4134 -61.132.72.0/23 4134 -61.132.74.0/23 137702 -61.132.76.0/22 4134 -61.132.80.0/20 4134 -61.132.96.0/19 4134 -61.132.128.0/17 4134 -61.133.0.0/17 4837 -61.133.128.0/17 4134 -61.134.0.0/18 4134 -61.134.64.0/19 4134 -61.134.96.0/19 4837 -61.134.128.0/17 4837 -61.135.0.0/16 4808 -61.136.0.0/17 4837 -61.136.128.0/19 4134 -61.136.160.0/21 4134 -61.136.168.0/22 4134 -61.136.172.0/24 4134 -61.136.173.0/24 136194 -61.136.174.0/23 4134 -61.136.176.0/20 4134 -61.136.192.0/18 4134 -61.137.0.0/17 4134 -61.137.128.0/17 4837 -61.138.0.0/18 4837 -61.138.64.0/20 4837 -61.138.80.0/24 4837 -61.138.81.0/24 139007 -61.138.82.0/24 139007 -61.138.83.0/24 4837 -61.138.84.0/22 4837 -61.138.88.0/21 4837 -61.138.96.0/21 4837 -61.138.104.0/22 4837 -61.138.108.0/23 4837 -61.138.110.0/24 139007 -61.138.111.0/24 4837 -61.138.112.0/20 4837 -61.138.128.0/18 4837 -61.138.192.0/18 4134 -61.139.0.0/21 4134 -61.139.8.0/24 38283 -61.139.9.0/24 4134 -61.139.10.0/23 4134 -61.139.12.0/22 4134 -61.139.16.0/20 4134 -61.139.32.0/22 4134 -61.139.36.0/23 4134 -61.139.38.0/24 4134 -61.139.39.0/24 38283 -61.139.40.0/24 38283 -61.139.41.0/24 4134 -61.139.42.0/23 4134 -61.139.44.0/22 4134 -61.139.48.0/20 4134 -61.139.64.0/24 38283 -61.139.65.0/24 4134 -61.139.66.0/23 4134 -61.139.68.0/22 4134 -61.139.72.0/22 4134 -61.139.76.0/23 38283 -61.139.78.0/23 4134 -61.139.80.0/20 4134 -61.139.96.0/22 4134 -61.139.100.0/23 4134 -61.139.102.0/24 4134 -61.139.103.0/24 38283 -61.139.104.0/21 4134 -61.139.112.0/22 4134 -61.139.116.0/23 4134 -61.139.118.0/24 4134 -61.139.119.0/24 38283 -61.139.120.0/24 38283 -61.139.121.0/24 4134 -61.139.122.0/23 4134 -61.139.124.0/23 4134 -61.139.126.0/24 38283 -61.139.127.0/24 4134 -61.139.128.0/18 4837 -61.139.192.0/18 4134 -61.140.0.0/21 4813 -61.140.8.0/23 4813 -61.140.10.0/24 58543 -61.140.11.0/24 4813 -61.140.12.0/24 4813 -61.140.13.0/24 58543 -61.140.14.0/23 4134 -61.140.16.0/20 4134 -61.140.32.0/19 4134 -61.140.64.0/18 4134 -61.140.128.0/17 4134 -61.141.0.0/22 4134 -61.141.4.0/24 4134 -61.141.5.0/24 58543 -61.141.6.0/23 4134 -61.141.8.0/21 4134 -61.141.16.0/20 4134 -61.141.32.0/24 58543 -61.141.33.0/24 4134 -61.141.34.0/23 4134 -61.141.36.0/23 58543 -61.141.38.0/23 4134 -61.141.40.0/21 4134 -61.141.48.0/20 4134 -61.141.64.0/18 4134 -61.141.128.0/17 4134 -61.142.0.0/18 4134 -61.142.64.0/23 4134 -61.142.66.0/24 58543 -61.142.67.0/24 4134 -61.142.68.0/22 4134 -61.142.72.0/21 4134 -61.142.80.0/23 58543 -61.142.82.0/24 58543 -61.142.83.0/24 4134 -61.142.84.0/22 4134 -61.142.88.0/21 4134 -61.142.96.0/19 4134 -61.142.128.0/22 4134 -61.142.132.0/23 134764 -61.142.134.0/23 4134 -61.142.136.0/21 4134 -61.142.144.0/20 4134 -61.142.160.0/22 4134 -61.142.164.0/23 4134 -61.142.166.0/24 134764 -61.142.167.0/24 4134 -61.142.168.0/22 4134 -61.142.172.0/23 4134 -61.142.174.0/24 4134 -61.142.175.0/24 134764 -61.142.176.0/24 134764 -61.142.177.0/24 4134 -61.142.178.0/23 4134 -61.142.180.0/22 4134 -61.142.184.0/21 4134 -61.142.192.0/20 4134 -61.142.208.0/24 134764 -61.142.209.0/24 4134 -61.142.210.0/23 4134 -61.142.212.0/22 4134 -61.142.216.0/21 4134 -61.142.224.0/20 4134 -61.142.240.0/21 4134 -61.142.248.0/23 4134 -61.142.250.0/24 134764 -61.142.251.0/24 4134 -61.142.252.0/24 4134 -61.142.253.0/24 134764 -61.142.254.0/24 134764 -61.142.255.0/24 4134 -61.143.0.0/19 4134 -61.143.32.0/22 4134 -61.143.36.0/23 4134 -61.143.38.0/24 58543 -61.143.39.0/24 4134 -61.143.40.0/21 4134 -61.143.48.0/20 4134 -61.143.64.0/19 4134 -61.143.96.0/22 4134 -61.143.100.0/24 4134 -61.143.101.0/24 58543 -61.143.102.0/23 4134 -61.143.104.0/21 4134 -61.143.112.0/20 4134 -61.143.128.0/20 4134 -61.143.144.0/21 4134 -61.143.152.0/23 4134 -61.143.154.0/24 58543 -61.143.155.0/24 4134 -61.143.156.0/22 4134 -61.143.160.0/19 4134 -61.143.192.0/20 4134 -61.143.208.0/23 4134 -61.143.210.0/23 58543 -61.143.212.0/22 4134 -61.143.216.0/22 4134 -61.143.220.0/23 58543 -61.143.222.0/24 58543 -61.143.223.0/24 4134 -61.143.224.0/23 58543 -61.143.226.0/23 4134 -61.143.228.0/22 4134 -61.143.232.0/21 4134 -61.143.240.0/20 4134 -61.144.0.0/16 4134 -61.145.0.0/19 4134 -61.145.32.0/20 4134 -61.145.48.0/22 4134 -61.145.52.0/23 4813 -61.145.54.0/23 58543 -61.145.56.0/22 4134 -61.145.60.0/23 4134 -61.145.62.0/24 58543 -61.145.63.0/24 4134 -61.145.64.0/21 4134 -61.145.72.0/24 134764 -61.145.73.0/24 4134 -61.145.74.0/23 4134 -61.145.76.0/22 4134 -61.145.80.0/20 4134 -61.145.96.0/20 4134 -61.145.112.0/21 58466 -61.145.120.0/22 58466 -61.145.124.0/24 58466 -61.145.125.0/24 4813 -61.145.126.0/23 58466 -61.145.128.0/17 4134 -61.146.0.0/18 4134 -61.146.64.0/21 4134 -61.146.72.0/23 134764 -61.146.74.0/23 4134 -61.146.76.0/22 4134 -61.146.80.0/20 4134 -61.146.96.0/19 4134 -61.146.128.0/21 4134 -61.146.136.0/23 4134 -61.146.138.0/24 58543 -61.146.139.0/24 4134 -61.146.140.0/22 4134 -61.146.144.0/21 4134 -61.146.152.0/22 58543 -61.146.156.0/22 4134 -61.146.160.0/19 4134 -61.146.192.0/20 4134 -61.146.208.0/21 4134 -61.146.216.0/22 4134 -61.146.220.0/23 4134 -61.146.222.0/24 4134 -61.146.223.0/24 58543 -61.146.224.0/19 4134 -61.147.0.0/23 4134 -61.147.2.0/24 4134 -61.147.3.0/24 134756 -61.147.4.0/24 134756 -61.147.5.0/24 4134 -61.147.6.0/24 4134 -61.147.7.0/24 134756 -61.147.8.0/24 134756 -61.147.9.0/24 4134 -61.147.10.0/23 4134 -61.147.12.0/24 4134 -61.147.13.0/24 134756 -61.147.14.0/23 134756 -61.147.16.0/23 4134 -61.147.18.0/23 134756 -61.147.20.0/24 4134 -61.147.21.0/24 134756 -61.147.22.0/23 4134 -61.147.24.0/23 4134 -61.147.26.0/24 134756 -61.147.27.0/24 4134 -61.147.28.0/22 4134 -61.147.32.0/19 4134 -61.147.64.0/23 4134 -61.147.66.0/24 4134 -61.147.67.0/24 137697 -61.147.68.0/22 137697 -61.147.72.0/22 137697 -61.147.76.0/24 4134 -61.147.77.0/24 137697 -61.147.78.0/23 137697 -61.147.80.0/20 137697 -61.147.96.0/22 137697 -61.147.100.0/24 137697 -61.147.101.0/24 4134 -61.147.102.0/23 137697 -61.147.104.0/21 137697 -61.147.112.0/20 137697 -61.147.128.0/21 4134 -61.147.136.0/21 137702 -61.147.144.0/20 4134 -61.147.160.0/22 4134 -61.147.164.0/24 4134 -61.147.165.0/24 137702 -61.147.166.0/23 137702 -61.147.168.0/21 137702 -61.147.176.0/22 137702 -61.147.180.0/24 137702 -61.147.181.0/24 138950 -61.147.182.0/23 138950 -61.147.184.0/22 138950 -61.147.188.0/24 138950 -61.147.189.0/24 23650 -61.147.190.0/23 23650 -61.147.192.0/22 4134 -61.147.196.0/24 4134 -61.147.197.0/24 23650 -61.147.198.0/24 23650 -61.147.199.0/24 131325 -61.147.200.0/22 4134 -61.147.204.0/24 4134 -61.147.205.0/24 23650 -61.147.206.0/23 4134 -61.147.208.0/24 131325 -61.147.209.0/24 4134 -61.147.210.0/23 23650 -61.147.212.0/22 23650 -61.147.216.0/23 23650 -61.147.218.0/23 131325 -61.147.220.0/22 131325 -61.147.224.0/22 131325 -61.147.228.0/24 131325 -61.147.229.0/24 4134 -61.147.230.0/24 4134 -61.147.231.0/24 131325 -61.147.232.0/21 131325 -61.147.240.0/20 4134 -61.148.0.0/15 4808 -61.150.0.0/16 4134 -61.151.0.0/16 4812 -61.152.0.0/16 4812 -61.153.0.0/20 4134 -61.153.16.0/24 4134 -61.153.17.0/24 136188 -61.153.18.0/23 136188 -61.153.20.0/22 4134 -61.153.24.0/21 4134 -61.153.32.0/19 4134 -61.153.64.0/19 4134 -61.153.96.0/22 136190 -61.153.100.0/23 136190 -61.153.102.0/24 136190 -61.153.103.0/24 4134 -61.153.104.0/21 4134 -61.153.112.0/20 4134 -61.153.128.0/19 4134 -61.153.160.0/20 4134 -61.153.176.0/21 4134 -61.153.184.0/21 58461 -61.153.192.0/18 4134 -61.154.0.0/16 4134 -61.155.0.0/22 4134 -61.155.4.0/24 4134 -61.155.5.0/24 137702 -61.155.6.0/24 4134 -61.155.7.0/24 137702 -61.155.8.0/23 137702 -61.155.10.0/23 4134 -61.155.12.0/22 4134 -61.155.16.0/20 4134 -61.155.32.0/22 4134 -61.155.36.0/23 4134 -61.155.38.0/24 4134 -61.155.39.0/24 23650 -61.155.40.0/24 4134 -61.155.41.0/24 23650 -61.155.42.0/23 23650 -61.155.44.0/23 4134 -61.155.46.0/24 4134 -61.155.47.0/24 23650 -61.155.48.0/20 4134 -61.155.64.0/19 4134 -61.155.96.0/21 4134 -61.155.104.0/23 4134 -61.155.106.0/23 137702 -61.155.108.0/22 4134 -61.155.112.0/20 4134 -61.155.128.0/22 23650 -61.155.132.0/23 4134 -61.155.134.0/23 134770 -61.155.136.0/24 4134 -61.155.137.0/24 23650 -61.155.138.0/24 23650 -61.155.139.0/24 134770 -61.155.140.0/22 23650 -61.155.144.0/20 23650 -61.155.160.0/21 23650 -61.155.168.0/23 23650 -61.155.170.0/24 23650 -61.155.171.0/24 134770 -61.155.172.0/22 23650 -61.155.176.0/21 23650 -61.155.184.0/23 4134 -61.155.186.0/24 4134 -61.155.187.0/24 23650 -61.155.188.0/22 23650 -61.155.192.0/20 23650 -61.155.208.0/21 23650 -61.155.216.0/23 23650 -61.155.218.0/23 4134 -61.155.220.0/22 23650 -61.155.224.0/21 4134 -61.155.232.0/22 4134 -61.155.236.0/24 137702 -61.155.237.0/24 4134 -61.155.238.0/24 137702 -61.155.239.0/24 4134 -61.155.240.0/20 4134 -61.156.0.0/16 4837 -61.157.0.0/18 4134 -61.157.64.0/19 4134 -61.157.96.0/24 38283 -61.157.97.0/24 4134 -61.157.98.0/23 4134 -61.157.100.0/22 4134 -61.157.104.0/22 4134 -61.157.108.0/24 4134 -61.157.109.0/24 38283 -61.157.110.0/23 4134 -61.157.112.0/20 4134 -61.157.128.0/18 4134 -61.157.192.0/19 4134 -61.157.224.0/22 4134 -61.157.228.0/23 38283 -61.157.230.0/23 4134 -61.157.232.0/21 4134 -61.157.240.0/20 4134 -61.158.0.0/16 4837 -61.159.0.0/18 4837 -61.159.64.0/18 4134 -61.159.128.0/17 4134 -61.160.0.0/19 4134 -61.160.32.0/23 4134 -61.160.34.0/24 4134 -61.160.35.0/24 138950 -61.160.36.0/24 138950 -61.160.37.0/24 4134 -61.160.38.0/24 4134 -61.160.39.0/24 138950 -61.160.40.0/22 138950 -61.160.44.0/24 23650 -61.160.45.0/24 4134 -61.160.46.0/24 4134 -61.160.47.0/24 138950 -61.160.48.0/20 4134 -61.160.64.0/18 4134 -61.160.128.0/22 4134 -61.160.132.0/23 4134 -61.160.134.0/24 23650 -61.160.135.0/24 4134 -61.160.136.0/22 4134 -61.160.140.0/24 23650 -61.160.141.0/24 4134 -61.160.142.0/23 4134 -61.160.144.0/22 4134 -61.160.148.0/23 4134 -61.160.150.0/24 23650 -61.160.151.0/24 4134 -61.160.152.0/22 4134 -61.160.156.0/23 4134 -61.160.158.0/24 23650 -61.160.159.0/24 4134 -61.160.160.0/21 4134 -61.160.168.0/22 4134 -61.160.172.0/23 4134 -61.160.174.0/23 134770 -61.160.176.0/23 4134 -61.160.178.0/24 4134 -61.160.179.0/24 134770 -61.160.180.0/22 4134 -61.160.184.0/21 4134 -61.160.192.0/20 23650 -61.160.208.0/24 134769 -61.160.209.0/24 23650 -61.160.210.0/23 23650 -61.160.212.0/22 23650 -61.160.216.0/24 23650 -61.160.217.0/24 134769 -61.160.218.0/23 23650 -61.160.220.0/22 23650 -61.160.224.0/19 23650 -61.161.0.0/18 4837 -61.161.64.0/22 4134 -61.161.68.0/24 4134 -61.161.69.0/24 134420 -61.161.70.0/23 4134 -61.161.72.0/21 4134 -61.161.80.0/20 4134 -61.161.96.0/19 4134 -61.161.128.0/17 4837 -61.162.0.0/15 4837 -61.164.0.0/21 4134 -61.164.8.0/22 4134 -61.164.12.0/24 4134 -61.164.13.0/24 58461 -61.164.14.0/23 4134 -61.164.16.0/21 4134 -61.164.24.0/22 4134 -61.164.28.0/23 4134 -61.164.30.0/24 4134 -61.164.31.0/24 58461 -61.164.32.0/20 4134 -61.164.48.0/21 4134 -61.164.56.0/22 4134 -61.164.60.0/22 58461 -61.164.64.0/21 4134 -61.164.72.0/22 4134 -61.164.76.0/23 4134 -61.164.78.0/24 4134 -61.164.79.0/24 136188 -61.164.80.0/20 4134 -61.164.96.0/21 4134 -61.164.104.0/22 4134 -61.164.108.0/22 134771 -61.164.112.0/21 134771 -61.164.120.0/23 4134 -61.164.122.0/24 4134 -61.164.123.0/24 134771 -61.164.124.0/23 134771 -61.164.126.0/23 4134 -61.164.128.0/21 4134 -61.164.136.0/22 4134 -61.164.140.0/24 134771 -61.164.141.0/24 4134 -61.164.142.0/23 134771 -61.164.144.0/23 134771 -61.164.146.0/24 4134 -61.164.147.0/24 134771 -61.164.148.0/22 134771 -61.164.152.0/24 4134 -61.164.153.0/24 134771 -61.164.154.0/23 134771 -61.164.156.0/22 134771 -61.164.160.0/23 136190 -61.164.162.0/23 4134 -61.164.164.0/22 4134 -61.164.168.0/22 4134 -61.164.172.0/24 4134 -61.164.173.0/24 136190 -61.164.174.0/24 136190 -61.164.175.0/24 4134 -61.164.176.0/21 4134 -61.164.184.0/23 4134 -61.164.186.0/23 136190 -61.164.188.0/22 4134 -61.164.192.0/20 4134 -61.164.208.0/24 4134 -61.164.209.0/24 58461 -61.164.210.0/23 58461 -61.164.212.0/24 4134 -61.164.213.0/24 58461 -61.164.214.0/23 4134 -61.164.216.0/21 4134 -61.164.224.0/19 4134 -61.165.0.0/16 4812 -61.166.0.0/17 4134 -61.166.128.0/20 4134 -61.166.144.0/22 4134 -61.166.148.0/23 4134 -61.166.150.0/24 4134 -61.166.151.0/24 134765 -61.166.152.0/23 4134 -61.166.154.0/24 4134 -61.166.155.0/24 134765 -61.166.156.0/22 4134 -61.166.160.0/19 4134 -61.166.192.0/18 4134 -61.167.0.0/16 4837 -61.168.0.0/16 4837 -61.169.0.0/16 4812 -61.170.0.0/18 4812 -61.170.64.0/18 4134 -61.170.128.0/17 4812 -61.171.0.0/16 4812 -61.172.0.0/15 4812 -61.174.0.0/21 4134 -61.174.8.0/21 136190 -61.174.16.0/20 4134 -61.174.32.0/21 4134 -61.174.40.0/22 136188 -61.174.44.0/22 4134 -61.174.48.0/22 4134 -61.174.52.0/23 4134 -61.174.54.0/24 4134 -61.174.55.0/24 58461 -61.174.56.0/21 4134 -61.174.64.0/22 4134 -61.174.68.0/24 136188 -61.174.69.0/24 4134 -61.174.70.0/23 4134 -61.174.72.0/21 4134 -61.174.80.0/20 4134 -61.174.96.0/19 4134 -61.174.128.0/18 4134 -61.174.192.0/19 4134 -61.174.224.0/20 4134 -61.174.240.0/20 136190 -61.175.0.0/18 4134 -61.175.64.0/19 4134 -61.175.96.0/22 4134 -61.175.100.0/23 4134 -61.175.102.0/24 4134 -61.175.103.0/24 136188 -61.175.104.0/21 4134 -61.175.112.0/20 4134 -61.175.128.0/18 4134 -61.175.192.0/19 4134 -61.175.224.0/23 4134 -61.175.226.0/24 4134 -61.175.227.0/24 136190 -61.175.228.0/22 4134 -61.175.232.0/21 4134 -61.175.240.0/21 4134 -61.175.248.0/22 4134 -61.175.252.0/24 4134 -61.175.253.0/24 136190 -61.175.254.0/23 4134 -61.176.0.0/16 4837 -61.177.0.0/20 4134 -61.177.16.0/22 4134 -61.177.20.0/23 23650 -61.177.22.0/24 23650 -61.177.23.0/24 4134 -61.177.24.0/21 4134 -61.177.32.0/19 4134 -61.177.64.0/20 4134 -61.177.80.0/21 4134 -61.177.88.0/22 4134 -61.177.92.0/23 4134 -61.177.94.0/24 4134 -61.177.95.0/24 134769 -61.177.96.0/20 4134 -61.177.112.0/24 4134 -61.177.113.0/24 23650 -61.177.114.0/23 4134 -61.177.116.0/22 4134 -61.177.120.0/21 4134 -61.177.128.0/17 4134 -61.178.0.0/16 4134 -61.179.0.0/16 4837 -61.180.0.0/17 4134 -61.180.128.0/17 4837 -61.181.0.0/16 4837 -61.182.0.0/16 4837 -61.183.0.0/17 4134 -61.183.128.0/19 4134 -61.183.160.0/22 4134 -61.183.164.0/22 58563 -61.183.168.0/21 4134 -61.183.176.0/20 4134 -61.183.192.0/18 4134 -61.184.0.0/18 4134 -61.184.64.0/19 4134 -61.184.96.0/20 4134 -61.184.112.0/22 4134 -61.184.116.0/23 136194 -61.184.118.0/24 136194 -61.184.119.0/24 4134 -61.184.120.0/21 4134 -61.184.128.0/17 4134 -61.185.0.0/16 4134 -61.186.0.0/17 4134 -61.186.128.0/18 4134 -61.186.192.0/19 4134 -61.186.224.0/20 4134 -61.186.240.0/21 4134 -61.186.248.0/23 4134 -61.186.250.0/23 134420 -61.186.252.0/23 134420 -61.186.254.0/24 134420 -61.186.255.0/24 4134 -61.187.0.0/16 4134 -61.188.0.0/24 139220 -61.188.1.0/24 38283 -61.188.2.0/23 4134 -61.188.4.0/22 4134 -61.188.8.0/24 4134 -61.188.9.0/24 38283 -61.188.10.0/23 4134 -61.188.12.0/22 4134 -61.188.16.0/20 4134 -61.188.32.0/22 4134 -61.188.36.0/24 4134 -61.188.37.0/24 38283 -61.188.38.0/23 38283 -61.188.40.0/21 4134 -61.188.48.0/20 4134 -61.188.64.0/20 4134 -61.188.80.0/22 4134 -61.188.84.0/23 4134 -61.188.86.0/24 4134 -61.188.87.0/24 38283 -61.188.88.0/21 4134 -61.188.96.0/24 38283 -61.188.97.0/24 4134 -61.188.98.0/23 4134 -61.188.100.0/22 4134 -61.188.104.0/21 4134 -61.188.112.0/20 4134 -61.188.128.0/19 4134 -61.188.160.0/20 4134 -61.188.176.0/22 38283 -61.188.180.0/22 4134 -61.188.184.0/22 4134 -61.188.188.0/24 4134 -61.188.189.0/24 38283 -61.188.190.0/24 38283 -61.188.191.0/24 4134 -61.188.192.0/21 4134 -61.188.200.0/24 4134 -61.188.201.0/24 38283 -61.188.202.0/23 4134 -61.188.204.0/22 4134 -61.188.208.0/20 4134 -61.188.224.0/20 4134 -61.188.240.0/21 4134 -61.188.248.0/22 4134 -61.188.252.0/23 4134 -61.188.254.0/24 4134 -61.188.255.0/24 38283 -61.189.0.0/17 4837 -61.189.128.0/17 4134 -61.190.0.0/15 4134 -61.192.0.0/17 9617 -61.192.128.0/17 10013 -61.193.0.0/17 2518 -61.193.128.0/20 17530 -61.193.144.0/20 4678 -61.193.160.0/19 17676 -61.193.192.0/18 9595 -61.194.0.0/16 2514 -61.195.0.0/21 10013 -61.195.8.0/21 18144 -61.195.16.0/20 10013 -61.195.32.0/20 17676 -61.195.48.0/20 17685 -61.195.64.0/21 45684 -61.195.72.0/23 45684 -61.195.74.0/24 10021 -61.195.75.0/24 45684 -61.195.76.0/22 45684 -61.195.96.0/19 17511 -61.195.128.0/20 10002 -61.195.144.0/20 9600 -61.195.160.0/23 2554 -61.195.162.0/23 4694 -61.195.164.0/22 4694 -61.195.168.0/21 4694 -61.195.176.0/20 17676 -61.195.208.0/20 9605 -61.195.224.0/20 9614 -61.195.240.0/20 10001 -61.196.0.0/16 4725 -61.197.0.0/16 2514 -61.198.16.0/20 17689 -61.198.48.0/20 9351 -61.198.64.0/19 17534 -61.198.96.0/19 10010 -61.198.128.0/17 2516 -61.199.0.0/16 4713 -61.200.0.0/18 17676 -61.200.64.0/20 7676 -61.200.80.0/20 2914 -61.200.96.0/19 10010 -61.200.128.0/17 2516 -61.201.0.0/17 4725 -61.201.136.0/21 4725 -61.201.144.0/21 4725 -61.201.160.0/19 4725 -61.201.192.0/18 4725 -61.202.0.0/17 2516 -61.202.128.0/19 17504 -61.202.160.0/22 17504 -61.202.164.0/24 17504 -61.202.192.0/18 17676 -61.203.0.0/17 2518 -61.203.128.0/20 17676 -61.203.144.0/20 10012 -61.203.164.0/22 10013 -61.203.168.0/21 10013 -61.203.176.0/20 4694 -61.203.192.0/19 7679 -61.203.224.0/19 4721 -61.204.0.0/16 2516 -61.205.0.0/20 17511 -61.205.32.0/21 18144 -61.205.40.0/21 10013 -61.205.48.0/21 10013 -61.205.57.0/24 10013 -61.205.58.0/23 10013 -61.205.60.0/22 10013 -61.205.64.0/20 10016 -61.205.80.0/20 17511 -61.205.96.0/19 17511 -61.205.128.0/18 9617 -61.205.192.0/18 9595 -61.206.0.0/20 7522 -61.206.16.0/20 17676 -61.206.32.0/22 2554 -61.206.36.0/22 4694 -61.206.40.0/21 4694 -61.206.64.0/20 10010 -61.206.112.0/20 2514 -61.206.128.0/18 17676 -61.206.192.0/20 9351 -61.206.208.0/20 10000 -61.206.224.0/20 9365 -61.206.240.0/20 9997 -61.207.0.0/16 4713 -61.208.0.0/16 4713 -61.209.0.0/16 4725 -61.210.0.0/16 2510 -61.211.0.0/18 2527 -61.211.96.0/19 2497 -61.211.128.0/20 17529 -61.211.144.0/20 7686 -61.211.160.0/20 17675 -61.211.176.0/20 10010 -61.211.192.0/19 10010 -61.211.224.0/20 9370 -61.211.240.0/20 10013 -61.213.0.0/20 17676 -61.213.16.0/20 17682 -61.213.32.0/20 17682 -61.213.48.0/20 17680 -61.213.64.0/18 4685 -61.213.128.0/20 17511 -61.213.144.0/20 2914 -61.213.160.0/19 2914 -61.213.192.0/20 17529 -61.213.208.0/20 17534 -61.213.224.0/20 10012 -61.213.240.0/20 7670 -61.214.0.0/16 4713 -61.215.0.0/17 2516 -61.215.128.0/19 9378 -61.215.160.0/20 9378 -61.215.176.0/20 59108 -61.215.192.0/20 17676 -61.215.208.0/20 4694 -61.215.224.0/20 7672 -61.215.240.0/20 7522 -61.216.0.0/13 3462 -61.224.0.0/13 3462 -61.232.0.0/20 24138 -61.232.16.0/21 9394 -61.232.24.0/22 9394 -61.232.28.0/22 37981 -61.232.32.0/22 37981 -61.232.36.0/22 9394 -61.232.40.0/23 9394 -61.232.42.0/23 45069 -61.232.44.0/23 9394 -61.232.46.0/24 9394 -61.232.47.0/24 45069 -61.232.48.0/24 9394 -61.232.49.0/24 45069 -61.232.50.0/23 9394 -61.232.52.0/24 9394 -61.232.53.0/24 45069 -61.232.54.0/24 9394 -61.232.55.0/24 45069 -61.232.56.0/21 9394 -61.232.64.0/23 45057 -61.232.66.0/23 9394 -61.232.68.0/23 9394 -61.232.70.0/23 45057 -61.232.72.0/22 45057 -61.232.76.0/24 45057 -61.232.77.0/24 9394 -61.232.78.0/23 9394 -61.232.80.0/20 9394 -61.232.96.0/19 9394 -61.232.128.0/19 9394 -61.232.160.0/20 9394 -61.232.176.0/21 38341 -61.232.184.0/21 63711 -61.232.192.0/22 63711 -61.232.196.0/22 9808 -61.232.200.0/22 9808 -61.232.204.0/22 9394 -61.232.208.0/20 9394 -61.232.224.0/19 9394 -61.233.0.0/19 24138 -61.233.32.0/20 37981 -61.233.48.0/20 9394 -61.233.64.0/18 63711 -61.233.128.0/20 9394 -61.233.144.0/23 9394 -61.233.146.0/24 45069 -61.233.147.0/24 9394 -61.233.148.0/23 45069 -61.233.150.0/23 9394 -61.233.152.0/24 9394 -61.233.153.0/24 45069 -61.233.154.0/23 9394 -61.233.156.0/23 9394 -61.233.158.0/23 45069 -61.233.160.0/19 38341 -61.233.192.0/18 9394 -61.234.0.0/20 9394 -61.234.16.0/20 37981 -61.234.32.0/19 9394 -61.234.64.0/19 9394 -61.234.96.0/19 38370 -61.234.128.0/19 9394 -61.234.160.0/20 38370 -61.234.176.0/20 9394 -61.234.192.0/18 9394 -61.235.0.0/18 9394 -61.235.64.0/18 38370 -61.235.128.0/22 9394 -61.235.132.0/22 37981 -61.235.136.0/21 37981 -61.235.144.0/20 37981 -61.235.160.0/19 9394 -61.235.192.0/18 9394 -61.236.0.0/18 9394 -61.236.64.0/20 9394 -61.236.80.0/20 38341 -61.236.96.0/20 38341 -61.236.112.0/21 38341 -61.236.120.0/21 9394 -61.236.128.0/18 9394 -61.236.192.0/20 9394 -61.236.208.0/21 9394 -61.236.216.0/21 9808 -61.236.224.0/19 9808 -61.237.0.0/17 9394 -61.237.128.0/18 9394 -61.237.192.0/19 38341 -61.237.224.0/20 24138 -61.237.240.0/20 9394 -61.238.0.0/18 9269 -61.238.64.0/20 10103 -61.238.80.0/20 9269 -61.238.96.0/19 10103 -61.238.128.0/21 9269 -61.238.136.0/21 10103 -61.238.144.0/21 10103 -61.238.152.0/22 9269 -61.238.156.0/22 10103 -61.238.160.0/21 10103 -61.238.168.0/21 9269 -61.238.176.0/20 9269 -61.238.192.0/24 9269 -61.238.193.0/24 10103 -61.238.194.0/23 9269 -61.238.196.0/22 9269 -61.238.200.0/21 9269 -61.238.208.0/20 9269 -61.238.224.0/19 9269 -61.239.0.0/16 9269 -61.240.0.0/19 4837 -61.240.32.0/20 4837 -61.240.48.0/21 9929 -61.240.56.0/21 4837 -61.240.64.0/18 4837 -61.240.128.0/18 4837 -61.240.192.0/19 4837 -61.240.224.0/20 4837 -61.240.240.0/21 4837 -61.241.0.0/18 17623 -61.241.64.0/18 4837 -61.241.128.0/18 4837 -61.241.192.0/19 4837 -61.242.0.0/19 17816 -61.242.32.0/19 17622 -61.242.64.0/19 17816 -61.242.96.0/19 17622 -61.242.128.0/17 4837 -61.243.0.0/18 4837 -61.243.112.0/21 4837 -61.243.124.0/22 4837 -61.243.128.0/18 4837 -61.243.192.0/19 4837 -61.244.0.0/22 10103 -61.244.4.0/22 9269 -61.244.8.0/22 10103 -61.244.12.0/24 10103 -61.244.13.0/24 9269 -61.244.14.0/23 9269 -61.244.16.0/20 10103 -61.244.32.0/22 10103 -61.244.36.0/24 9269 -61.244.37.0/24 10103 -61.244.38.0/23 10103 -61.244.40.0/21 9269 -61.244.48.0/20 9269 -61.244.64.0/21 10103 -61.244.72.0/22 10103 -61.244.76.0/23 10103 -61.244.78.0/23 9269 -61.244.80.0/21 9269 -61.244.88.0/21 10103 -61.244.96.0/20 9269 -61.244.112.0/21 10103 -61.244.120.0/21 9269 -61.244.128.0/19 9269 -61.244.160.0/22 10103 -61.244.164.0/22 9269 -61.244.168.0/21 9269 -61.244.176.0/21 9269 -61.244.184.0/21 10103 -61.244.192.0/20 9269 -61.244.208.0/20 10103 -61.244.224.0/19 9269 -61.245.0.0/17 17676 -61.245.128.0/19 4764 -61.245.160.0/20 45356 -61.245.176.0/20 38673 -61.245.192.0/20 23786 -61.245.208.0/20 10019 -61.245.224.0/19 9271 -61.246.0.0/21 24560 -61.246.8.0/22 9498 -61.246.12.0/23 24560 -61.246.14.0/23 9498 -61.246.16.0/20 9498 -61.246.32.0/21 24560 -61.246.40.0/22 9498 -61.246.44.0/23 9498 -61.246.46.0/24 9498 -61.246.47.0/24 24560 -61.246.48.0/20 9498 -61.246.64.0/18 9498 -61.246.128.0/21 9498 -61.246.136.0/23 9498 -61.246.138.0/24 9498 -61.246.139.0/24 24560 -61.246.140.0/24 24560 -61.246.141.0/24 9498 -61.246.142.0/23 9498 -61.246.144.0/20 24560 -61.246.160.0/19 9498 -61.246.192.0/19 9498 -61.246.224.0/21 9498 -61.246.232.0/22 9498 -61.246.236.0/23 24560 -61.246.238.0/23 9498 -61.246.240.0/24 9498 -61.246.241.0/24 24560 -61.246.242.0/23 9498 -61.246.244.0/22 9498 -61.246.248.0/22 9498 -61.246.252.0/24 9498 -61.246.253.0/24 24560 -61.246.254.0/23 9498 -61.247.0.0/18 23700 -61.247.64.0/18 17854 -61.247.128.0/19 10036 -61.247.160.0/20 9244 -61.247.176.0/20 38031 -61.247.224.0/20 24560 -61.247.240.0/22 24560 -61.247.244.0/22 9498 -61.247.248.0/23 9498 -61.247.250.0/24 9498 -61.247.251.0/24 24560 -61.247.252.0/23 24560 -61.247.254.0/24 9498 -61.247.255.0/24 24560 -61.248.128.0/19 3786 -61.248.176.0/21 4670 -61.248.184.0/22 4670 -61.248.188.0/24 4670 -61.248.189.0/24 38660 -61.248.190.0/24 38660 -61.248.191.0/24 4670 -61.248.224.0/23 9642 -61.249.0.0/18 3786 -61.249.92.0/22 3786 -61.249.96.0/19 4670 -61.249.128.0/19 4670 -61.249.224.0/20 4670 -61.249.240.0/21 4670 -61.249.248.0/24 4670 -61.249.249.0/24 38660 -61.249.250.0/24 9319 -61.249.251.0/24 4670 -61.249.252.0/22 4670 -61.250.0.0/18 9644 -61.250.64.0/20 9848 -61.250.80.0/21 9848 -61.250.88.0/22 9848 -61.250.92.0/24 9952 -61.250.93.0/24 9848 -61.250.94.0/23 9848 -61.250.96.0/22 9848 -61.250.100.0/23 9848 -61.250.102.0/24 9848 -61.250.103.0/24 45361 -61.250.104.0/22 45361 -61.250.108.0/22 9848 -61.250.112.0/20 9848 -61.250.128.0/17 38661 -61.251.0.0/20 38684 -61.251.16.0/20 38086 -61.251.64.0/20 4766 -61.251.96.0/20 2914 -61.251.112.0/23 3786 -61.251.160.0/20 10160 -61.251.176.0/20 38676 -61.251.192.0/19 9689 -61.251.224.0/21 9689 -61.251.232.0/22 9689 -61.251.236.0/24 9689 -61.251.237.0/24 38097 -61.251.238.0/23 9689 -61.251.240.0/20 9689 -61.252.16.0/20 38661 -61.252.32.0/20 4766 -61.252.48.0/20 9270 -61.252.76.0/22 3786 -61.252.96.0/19 10036 -61.252.128.0/19 38661 -61.252.160.0/20 9848 -61.252.176.0/22 9848 -61.252.180.0/22 9697 -61.252.184.0/23 38669 -61.252.186.0/24 9848 -61.252.187.0/24 9770 -61.252.188.0/22 9770 -61.252.192.0/18 18310 -61.253.0.0/18 9318 -61.253.64.0/19 9318 -61.253.96.0/21 9318 -61.253.104.0/22 9318 -61.253.108.0/23 9318 -61.253.110.0/24 9318 -61.253.111.0/24 17592 -61.253.112.0/20 9318 -61.253.128.0/18 9318 -61.253.192.0/20 9318 -61.253.208.0/23 9318 -61.253.210.0/24 9318 -61.253.211.0/24 9845 -61.253.212.0/23 9845 -61.253.214.0/23 9318 -61.253.216.0/24 9318 -61.253.217.0/24 9845 -61.253.218.0/23 9845 -61.253.220.0/24 9318 -61.253.221.0/24 9845 -61.253.222.0/23 9318 -61.253.224.0/22 9318 -61.253.228.0/23 9318 -61.253.230.0/24 9318 -61.253.231.0/24 9845 -61.253.232.0/21 9845 -61.253.240.0/20 9845 -61.254.0.0/17 9318 -61.254.128.0/19 18302 -61.254.160.0/20 9318 -61.254.176.0/21 9318 -61.254.184.0/23 9318 -61.254.186.0/24 9532 -61.254.187.0/24 9318 -61.254.188.0/22 9318 -61.254.192.0/18 9318 -61.255.0.0/19 9318 -61.255.32.0/20 9318 -61.255.48.0/21 9318 -61.255.56.0/22 9318 -61.255.60.0/23 9318 -61.255.62.0/24 10188 -61.255.63.0/24 9318 -61.255.64.0/19 9318 -61.255.96.0/20 9318 -61.255.112.0/22 9318 -61.255.116.0/23 9318 -61.255.118.0/23 9845 -61.255.120.0/21 9318 -61.255.128.0/23 9318 -61.255.130.0/24 9318 -61.255.131.0/24 45403 -61.255.132.0/24 45403 -61.255.133.0/24 9318 -61.255.134.0/23 9318 -61.255.136.0/21 9318 -61.255.144.0/23 9318 -61.255.146.0/24 9318 -61.255.147.0/24 45389 -61.255.148.0/22 9318 -61.255.152.0/21 9318 -61.255.160.0/20 9318 -61.255.176.0/23 9318 -61.255.178.0/24 45403 -61.255.179.0/24 9318 -61.255.180.0/22 9318 -61.255.184.0/21 9318 -61.255.192.0/23 9318 -61.255.194.0/23 4202 -61.255.196.0/24 4202 -61.255.197.0/24 9318 -61.255.198.0/24 45403 -61.255.199.0/24 9318 -61.255.200.0/21 9318 -61.255.208.0/20 9318 -61.255.224.0/19 9318 -62.0.0.0/22 1680 -62.0.4.0/24 56804 -62.0.5.0/24 1680 -62.0.6.0/23 1680 -62.0.8.0/21 1680 -62.0.16.0/20 1680 -62.0.32.0/19 1680 -62.0.64.0/18 1680 -62.0.128.0/17 1680 -62.1.0.0/17 1241 -62.1.128.0/18 1241 -62.1.192.0/20 1241 -62.1.208.0/21 1241 -62.1.216.0/24 197746 -62.1.217.0/24 1241 -62.1.218.0/23 1241 -62.1.220.0/22 1241 -62.1.224.0/19 1241 -62.2.0.0/16 6830 -62.3.16.0/24 39432 -62.3.20.0/24 39432 -62.3.23.0/24 39432 -62.3.24.0/23 39432 -62.3.34.0/23 39432 -62.3.36.0/22 39432 -62.3.44.0/24 39432 -62.3.63.0/24 39432 -62.3.64.0/18 13037 -62.3.128.0/21 15869 -62.3.160.0/19 9112 -62.3.192.0/18 9105 -62.4.0.0/19 12876 -62.4.32.0/19 43940 -62.4.64.0/19 13237 -62.4.96.0/21 29208 -62.4.104.0/22 31246 -62.4.108.0/24 206718 -62.4.109.0/24 202756 -62.4.110.0/23 202756 -62.4.112.0/22 202756 -62.4.116.0/22 29208 -62.4.120.0/21 29208 -62.4.128.0/17 5432 -62.5.0.0/17 5400 -62.5.128.0/17 8359 -62.6.0.0/15 2856 -62.8.0.0/19 15557 -62.8.32.0/19 15933 -62.8.64.0/19 15399 -62.8.96.0/19 8586 -62.8.128.0/17 20676 -62.9.0.0/16 702 -62.10.0.0/15 8612 -62.12.0.0/19 1136 -62.12.56.0/21 48564 -62.12.64.0/24 8544 -62.12.65.0/24 16229 -62.12.66.0/23 8544 -62.12.68.0/23 8544 -62.12.70.0/23 16229 -62.12.72.0/24 8544 -62.12.73.0/24 16229 -62.12.74.0/24 8544 -62.12.75.0/24 16229 -62.12.76.0/22 16229 -62.12.80.0/23 8544 -62.12.82.0/24 16229 -62.12.83.0/24 8544 -62.12.84.0/22 16229 -62.12.88.0/21 16229 -62.12.96.0/20 327881 -62.12.112.0/21 37684 -62.12.120.0/21 328299 -62.12.128.0/17 15623 -62.13.0.0/17 2119 -62.13.128.0/19 60969 -62.13.160.0/19 24608 -62.13.192.0/21 15498 -62.13.205.0/24 15498 -62.13.210.0/24 15498 -62.13.220.0/24 15498 -62.13.223.0/24 15498 -62.13.224.0/19 50429 -62.14.0.0/15 12479 -62.16.0.0/19 6876 -62.16.32.0/19 15640 -62.16.64.0/20 47253 -62.16.96.0/19 12714 -62.16.128.0/17 2119 -62.17.0.0/19 702 -62.17.32.0/22 702 -62.17.36.0/23 702 -62.17.38.0/23 13662 -62.17.40.0/21 702 -62.17.48.0/20 702 -62.17.64.0/18 702 -62.17.128.0/17 702 -62.18.0.0/15 16232 -62.20.0.0/16 3301 -62.21.0.0/17 13110 -62.21.128.0/17 1136 -62.22.0.0/16 702 -62.23.0.0/16 8220 -62.24.0.0/19 8426 -62.24.32.0/19 50272 -62.24.64.0/19 6830 -62.24.96.0/20 12455 -62.24.112.0/23 12455 -62.24.114.0/24 12455 -62.24.115.0/24 30994 -62.24.116.0/22 30994 -62.24.120.0/22 30994 -62.24.124.0/22 12455 -62.24.128.0/17 13285 -62.25.0.0/18 1136 -62.25.64.0/19 1273 -62.25.96.0/20 1273 -62.25.112.0/21 1273 -62.25.120.0/22 1273 -62.25.124.0/23 1273 -62.25.126.0/23 49694 -62.25.128.0/24 202917 -62.25.129.0/24 6660 -62.25.130.0/23 6660 -62.25.132.0/22 6660 -62.25.136.0/21 6660 -62.25.144.0/20 6660 -62.25.160.0/19 6660 -62.25.192.0/18 6660 -62.26.0.0/15 12312 -62.28.0.0/16 15525 -62.29.0.0/17 12978 -62.29.128.0/17 5588 -62.30.0.0/15 5089 -62.32.0.0/19 21232 -62.32.32.0/19 24753 -62.32.64.0/23 34277 -62.32.66.0/23 8492 -62.32.68.0/23 8492 -62.32.70.0/24 8492 -62.32.71.0/24 34277 -62.32.72.0/24 31430 -62.32.73.0/24 8492 -62.32.74.0/23 8492 -62.32.76.0/24 8492 -62.32.77.0/24 8595 -62.32.78.0/24 209665 -62.32.79.0/24 34277 -62.32.80.0/23 8595 -62.32.82.0/24 25227 -62.32.83.0/24 8492 -62.32.84.0/23 34277 -62.32.86.0/23 31430 -62.32.88.0/22 8492 -62.32.92.0/23 34277 -62.32.94.0/24 8492 -62.32.95.0/24 25227 -62.32.96.0/23 9193 -62.32.98.0/23 197832 -62.32.100.0/22 197832 -62.32.104.0/21 9193 -62.32.112.0/20 197832 -62.32.128.0/17 12479 -62.33.0.0/18 20485 -62.33.64.0/19 20485 -62.33.96.0/20 20485 -62.33.112.0/21 20485 -62.33.120.0/23 20485 -62.33.122.0/23 15774 -62.33.124.0/22 20485 -62.33.128.0/17 20485 -62.34.0.0/15 5410 -62.36.0.0/15 12479 -62.38.0.0/16 3329 -62.39.0.0/18 15557 -62.39.64.0/21 15557 -62.39.72.0/22 15557 -62.39.76.0/24 15557 -62.39.77.0/24 29322 -62.39.78.0/23 15557 -62.39.80.0/20 15557 -62.39.96.0/22 15557 -62.39.100.0/24 29322 -62.39.101.0/24 15557 -62.39.102.0/23 15557 -62.39.104.0/21 15557 -62.39.112.0/20 15557 -62.39.128.0/17 15557 -62.40.0.0/19 8469 -62.40.32.0/19 13280 -62.40.64.0/19 702 -62.40.96.0/19 20965 -62.40.128.0/17 8339 -62.41.0.0/23 286 -62.41.2.0/24 61429 -62.41.3.0/24 286 -62.41.4.0/22 286 -62.41.8.0/23 286 -62.41.10.0/24 61429 -62.41.11.0/24 286 -62.41.12.0/22 286 -62.41.16.0/22 286 -62.41.20.0/23 61429 -62.41.22.0/23 286 -62.41.24.0/22 286 -62.41.28.0/22 1136 -62.41.32.0/20 1136 -62.41.48.0/21 1136 -62.41.56.0/23 286 -62.41.58.0/24 286 -62.41.59.0/24 61429 -62.41.60.0/24 61429 -62.41.61.0/24 286 -62.41.62.0/23 286 -62.41.64.0/23 286 -62.41.66.0/23 14616 -62.41.68.0/22 286 -62.41.72.0/21 286 -62.41.80.0/22 286 -62.41.84.0/23 286 -62.41.86.0/23 1136 -62.41.88.0/21 1136 -62.41.96.0/19 1136 -62.41.128.0/19 1136 -62.41.160.0/24 286 -62.41.161.0/24 1136 -62.41.162.0/23 1136 -62.41.164.0/22 1136 -62.41.168.0/21 1136 -62.41.176.0/20 1136 -62.41.192.0/18 1136 -62.42.0.0/16 6739 -62.43.0.0/20 12357 -62.43.16.0/20 6739 -62.43.32.0/19 12357 -62.43.64.0/19 12357 -62.43.96.0/21 12357 -62.43.104.0/22 12357 -62.43.108.0/22 6739 -62.43.112.0/20 6739 -62.43.128.0/19 12357 -62.43.160.0/21 6739 -62.43.168.0/22 12357 -62.43.172.0/22 6739 -62.43.176.0/20 6739 -62.43.192.0/19 6739 -62.43.224.0/20 6739 -62.43.240.0/21 6739 -62.43.248.0/22 6739 -62.43.252.0/23 29119 -62.43.254.0/23 6739 -62.44.0.0/19 29208 -62.44.32.0/23 35242 -62.44.34.0/23 41707 -62.44.36.0/22 41707 -62.44.40.0/22 41707 -62.44.46.0/23 35242 -62.44.64.0/19 5413 -62.44.96.0/19 5421 -62.44.128.0/18 3308 -62.44.192.0/18 16086 -62.45.0.0/16 15435 -62.46.0.0/15 8447 -62.48.0.0/19 8271 -62.48.32.0/19 13284 -62.48.64.0/19 15743 -62.48.96.0/19 12620 -62.48.128.0/17 15525 -62.49.0.0/16 2529 -62.50.0.0/18 3257 -62.50.64.0/19 3257 -62.50.96.0/19 12374 -62.50.128.0/19 8928 -62.50.160.0/19 35132 -62.50.192.0/21 39852 -62.50.207.0/24 39852 -62.51.0.0/16 10310 -62.52.0.0/14 6805 -62.56.0.0/17 2529 -62.56.128.0/21 12491 -62.56.136.0/23 12491 -62.56.138.0/24 36892 -62.56.139.0/24 12491 -62.56.140.0/22 12491 -62.56.144.0/21 12491 -62.56.152.0/23 12491 -62.56.154.0/24 12491 -62.56.156.0/22 12491 -62.56.160.0/22 12491 -62.56.165.0/24 12491 -62.56.166.0/23 12491 -62.56.168.0/21 12491 -62.56.176.0/22 12491 -62.56.181.0/24 12491 -62.56.182.0/23 12491 -62.56.184.0/21 12491 -62.56.216.0/24 12491 -62.56.218.0/23 12491 -62.56.220.0/22 12491 -62.56.224.0/20 12491 -62.56.240.0/21 12491 -62.56.248.0/22 12491 -62.56.252.0/22 29165 -62.57.0.0/19 12357 -62.57.32.0/24 6739 -62.57.33.0/24 12357 -62.57.34.0/23 12357 -62.57.36.0/22 12357 -62.57.40.0/21 12357 -62.57.48.0/23 12357 -62.57.50.0/23 6739 -62.57.52.0/22 6739 -62.57.56.0/21 12357 -62.57.64.0/19 12357 -62.57.96.0/22 12357 -62.57.100.0/24 12357 -62.57.101.0/24 6739 -62.57.102.0/24 12357 -62.57.103.0/24 6739 -62.57.104.0/22 12357 -62.57.108.0/22 6739 -62.57.112.0/20 12357 -62.57.128.0/20 12357 -62.57.144.0/21 12357 -62.57.152.0/22 12357 -62.57.156.0/23 12357 -62.57.158.0/24 12357 -62.57.159.0/24 6739 -62.57.160.0/22 6739 -62.57.164.0/22 12357 -62.57.168.0/21 12357 -62.57.176.0/23 12357 -62.57.178.0/24 12357 -62.57.179.0/24 6739 -62.57.180.0/22 12357 -62.57.184.0/21 12357 -62.57.192.0/18 12357 -62.58.0.0/18 13127 -62.58.64.0/19 13127 -62.58.96.0/22 13127 -62.58.100.0/23 13127 -62.58.102.0/24 47377 -62.58.103.0/24 13127 -62.58.104.0/21 13127 -62.58.112.0/20 13127 -62.58.128.0/17 13127 -62.59.0.0/16 13127 -62.60.0.0/22 49572 -62.60.4.0/23 49572 -62.60.6.0/24 6779 -62.60.7.0/24 49572 -62.60.8.0/21 49572 -62.60.16.0/20 49572 -62.60.32.0/20 49572 -62.60.48.0/21 49572 -62.60.56.0/23 49572 -62.60.58.0/24 49572 -62.60.59.0/24 6779 -62.60.60.0/22 6779 -62.60.64.0/22 49572 -62.60.68.0/23 49572 -62.60.70.0/23 6779 -62.60.72.0/21 49572 -62.60.80.0/21 6779 -62.60.88.0/22 6779 -62.60.92.0/23 49572 -62.60.94.0/23 6779 -62.60.96.0/20 49572 -62.60.112.0/21 49572 -62.60.120.0/22 49572 -62.60.124.0/23 49572 -62.60.126.0/24 6779 -62.60.127.0/24 49572 -62.60.128.0/21 22769 -62.60.136.0/23 15611 -62.60.139.0/24 15611 -62.60.140.0/22 15611 -62.60.145.0/24 15611 -62.60.160.0/19 18013 -62.60.192.0/21 61391 -62.60.200.0/21 22769 -62.60.208.0/20 18013 -62.60.224.0/19 18013 -62.61.0.0/20 5386 -62.61.16.0/20 3218 -62.61.32.0/19 21021 -62.61.64.0/19 702 -62.61.96.0/24 702 -62.61.97.0/24 2830 -62.61.98.0/23 702 -62.61.100.0/22 702 -62.61.104.0/21 702 -62.61.112.0/20 702 -62.61.128.0/19 15516 -62.61.160.0/19 28885 -62.61.192.0/18 49902 -62.62.128.0/19 12626 -62.62.160.0/21 12626 -62.62.168.0/24 12626 -62.62.169.0/24 12566 -62.62.170.0/23 12626 -62.62.172.0/22 12626 -62.62.176.0/20 12626 -62.62.192.0/18 12626 -62.63.0.0/18 2116 -62.63.64.0/22 20985 -62.63.68.0/24 20985 -62.63.69.0/24 197460 -62.63.70.0/23 20985 -62.63.72.0/21 20985 -62.63.80.0/20 20985 -62.63.96.0/19 20985 -62.63.128.0/21 5518 -62.63.136.0/22 5518 -62.63.144.0/20 5518 -62.63.160.0/20 5518 -62.63.176.0/21 35182 -62.63.184.0/22 35182 -62.63.188.0/23 35182 -62.63.190.0/23 5518 -62.63.192.0/18 8473 -62.64.0.0/20 25159 -62.64.16.0/20 6854 -62.64.32.0/19 49594 -62.64.64.0/18 12530 -62.64.128.0/17 9105 -62.65.0.0/19 3246 -62.65.32.0/19 3249 -62.65.64.0/18 2119 -62.65.128.0/19 15517 -62.65.160.0/19 16160 -62.65.192.0/18 13272 -62.66.0.0/16 9158 -62.67.0.0/21 3356 -62.67.8.0/22 3356 -62.67.12.0/24 18807 -62.67.13.0/24 3356 -62.67.14.0/23 3356 -62.67.16.0/20 3356 -62.67.32.0/21 3356 -62.67.40.0/24 3356 -62.67.41.0/24 11179 -62.67.42.0/24 20473 -62.67.43.0/24 3356 -62.67.44.0/22 3356 -62.67.48.0/22 3356 -62.67.52.0/23 3356 -62.67.54.0/24 3356 -62.67.55.0/24 23023 -62.67.56.0/21 3356 -62.67.64.0/18 3356 -62.67.128.0/18 3356 -62.67.192.0/23 3356 -62.67.194.0/24 15968 -62.67.195.0/24 3356 -62.67.196.0/22 3356 -62.67.200.0/21 3356 -62.67.208.0/23 3356 -62.67.210.0/24 3356 -62.67.211.0/24 61157 -62.67.212.0/23 3356 -62.67.214.0/24 3356 -62.67.215.0/24 61157 -62.67.216.0/24 3356 -62.67.217.0/24 14226 -62.67.218.0/23 3356 -62.67.220.0/22 3356 -62.67.224.0/21 3356 -62.67.232.0/22 3356 -62.67.236.0/23 3356 -62.67.238.0/24 3356 -62.67.239.0/24 12956 -62.67.240.0/22 15968 -62.67.244.0/22 3356 -62.67.248.0/21 3356 -62.68.0.0/19 6735 -62.68.32.0/19 21003 -62.68.64.0/19 12653 -62.68.96.0/19 198252 -62.68.128.0/19 34145 -62.68.160.0/19 8680 -62.68.192.0/19 56833 -62.68.224.0/20 24835 -62.68.240.0/22 24835 -62.68.244.0/23 24835 -62.68.246.0/24 24835 -62.68.247.0/24 36935 -62.68.248.0/21 24835 -62.69.0.0/19 13227 -62.69.32.0/20 5413 -62.69.48.0/21 5413 -62.69.56.0/22 5413 -62.69.60.0/23 5413 -62.69.62.0/24 5413 -62.69.63.0/24 3257 -62.69.64.0/18 5587 -62.69.128.0/21 59766 -62.69.136.0/22 199196 -62.69.140.0/23 199196 -62.69.142.0/24 199196 -62.69.143.0/24 25577 -62.69.144.0/23 201785 -62.69.148.0/22 201785 -62.69.152.0/21 47527 -62.69.192.0/18 43939 -62.70.0.0/16 702 -62.71.0.0/16 1759 -62.72.0.0/18 5427 -62.72.64.0/19 8881 -62.72.96.0/19 8220 -62.72.128.0/19 5413 -62.72.160.0/19 24896 -62.72.192.0/19 15480 -62.72.224.0/19 24751 -62.73.0.0/20 174 -62.73.24.0/21 8999 -62.73.32.0/19 1759 -62.73.64.0/21 8866 -62.73.72.0/24 60168 -62.73.73.0/24 8866 -62.73.74.0/23 8866 -62.73.76.0/22 8866 -62.73.80.0/21 8866 -62.73.88.0/22 8866 -62.73.92.0/23 8866 -62.73.94.0/24 8866 -62.73.95.0/24 51987 -62.73.96.0/20 8866 -62.73.112.0/23 29084 -62.73.114.0/24 203484 -62.73.115.0/24 29084 -62.73.116.0/23 29084 -62.73.118.0/24 8866 -62.73.119.0/24 210229 -62.73.120.0/21 8866 -62.73.128.0/19 15533 -62.73.160.0/19 2914 -62.73.192.0/19 3292 -62.73.224.0/20 3292 -62.73.240.0/21 3292 -62.73.248.0/22 3292 -62.73.252.0/24 41164 -62.73.253.0/24 3292 -62.73.254.0/23 3292 -62.74.0.0/18 12361 -62.74.64.0/18 3329 -62.74.128.0/17 12361 -62.75.1.0/24 12713 -62.75.2.0/23 12713 -62.75.10.0/24 12713 -62.75.13.0/24 12713 -62.75.15.0/24 12713 -62.75.16.0/22 12713 -62.75.20.0/23 12713 -62.75.23.0/24 12713 -62.75.24.0/23 12713 -62.75.54.0/24 12713 -62.75.128.0/23 61157 -62.75.130.0/24 8972 -62.75.131.0/24 61157 -62.75.132.0/23 61157 -62.75.134.0/24 8972 -62.75.135.0/24 61157 -62.75.136.0/22 8972 -62.75.140.0/24 61157 -62.75.141.0/24 8972 -62.75.142.0/23 8972 -62.75.144.0/21 8972 -62.75.152.0/24 8972 -62.75.153.0/24 61157 -62.75.154.0/24 61157 -62.75.155.0/24 8972 -62.75.156.0/22 8972 -62.75.160.0/21 8972 -62.75.168.0/22 8972 -62.75.172.0/24 61157 -62.75.173.0/24 8972 -62.75.174.0/24 61157 -62.75.175.0/24 8972 -62.75.176.0/24 61157 -62.75.177.0/24 8972 -62.75.178.0/23 8972 -62.75.180.0/24 61157 -62.75.181.0/24 8972 -62.75.182.0/23 8972 -62.75.184.0/21 8972 -62.75.192.0/21 8972 -62.75.200.0/22 8972 -62.75.204.0/24 8972 -62.75.205.0/24 61157 -62.75.206.0/24 61157 -62.75.207.0/24 8972 -62.75.208.0/22 8972 -62.75.212.0/24 61157 -62.75.213.0/24 8972 -62.75.214.0/23 8972 -62.75.216.0/21 8972 -62.75.224.0/23 8972 -62.75.228.0/23 8972 -62.75.230.0/24 8972 -62.75.231.0/24 61157 -62.75.232.0/22 8972 -62.75.236.0/23 8972 -62.75.238.0/24 8972 -62.75.239.0/24 61157 -62.75.240.0/20 8972 -62.76.1.0/24 199377 -62.76.2.0/24 60854 -62.76.3.0/24 60753 -62.76.4.0/24 60827 -62.76.5.0/24 208991 -62.76.6.0/24 12999 -62.76.7.0/24 200368 -62.76.8.0/24 8475 -62.76.9.0/24 60915 -62.76.10.0/24 60796 -62.76.11.0/24 60702 -62.76.12.0/24 59833 -62.76.13.0/24 28891 -62.76.14.0/24 201575 -62.76.15.0/24 60834 -62.76.16.0/21 12494 -62.76.24.0/22 61400 -62.76.29.0/24 60812 -62.76.30.0/24 60892 -62.76.31.0/24 60841 -62.76.32.0/22 8599 -62.76.36.0/23 13185 -62.76.38.0/23 42548 -62.76.40.0/21 57010 -62.76.62.0/23 43832 -62.76.64.0/21 51054 -62.76.72.0/23 59433 -62.76.74.0/23 51408 -62.76.76.0/23 43832 -62.76.78.0/24 49210 -62.76.79.0/24 57512 -62.76.80.0/22 12494 -62.76.84.0/23 60473 -62.76.86.0/24 60575 -62.76.87.0/24 51408 -62.76.88.0/22 61400 -62.76.92.0/23 15620 -62.76.94.0/24 51200 -62.76.96.0/23 51408 -62.76.98.0/24 60470 -62.76.99.0/24 15913 -62.76.100.0/22 61400 -62.76.104.0/21 56580 -62.76.112.0/22 61400 -62.76.116.0/22 13077 -62.76.121.0/24 50157 -62.76.122.0/24 41895 -62.76.123.0/24 201211 -62.76.124.0/23 8909 -62.76.126.0/24 60482 -62.76.127.0/24 197986 -62.76.128.0/22 8817 -62.76.132.0/24 61379 -62.76.133.0/24 60826 -62.76.134.0/24 199314 -62.76.135.0/24 60360 -62.76.136.0/24 60726 -62.76.138.0/24 201211 -62.76.139.0/24 51578 -62.76.140.0/24 60747 -62.76.141.0/24 34139 -62.76.142.0/24 34139 -62.76.143.0/24 61151 -62.76.144.0/24 62333 -62.76.145.0/24 60518 -62.76.146.0/23 24626 -62.76.148.0/23 30812 -62.76.150.0/24 30812 -62.76.152.0/24 24683 -62.76.153.0/24 44812 -62.76.154.0/24 60818 -62.76.156.0/24 61382 -62.76.157.0/24 60826 -62.76.158.0/24 60835 -62.76.159.0/24 60179 -62.76.160.0/22 48731 -62.76.164.0/24 60699 -62.76.165.0/24 60678 -62.76.166.0/24 60643 -62.76.167.0/24 62316 -62.76.168.0/21 8981 -62.76.176.0/20 57010 -62.76.192.0/24 200135 -62.76.193.0/24 34017 -62.76.194.0/24 64433 -62.76.196.0/22 8981 -62.76.200.0/23 60347 -62.76.202.0/24 8475 -62.76.203.0/24 201065 -62.76.204.0/24 61035 -62.76.205.0/24 60544 -62.76.206.0/24 60988 -62.76.207.0/24 12770 -62.76.210.0/24 199280 -62.76.211.0/24 60523 -62.76.212.0/22 8981 -62.76.216.0/21 8981 -62.76.224.0/22 60575 -62.76.228.0/22 201211 -62.76.232.0/22 201211 -62.76.236.0/22 60747 -62.76.246.0/23 8475 -62.76.248.0/22 3316 -62.76.252.0/24 21416 -62.76.253.0/24 8331 -62.76.254.0/24 6672 -62.76.255.0/24 49335 -62.77.0.0/19 24742 -62.77.32.0/19 20746 -62.77.64.0/18 5588 -62.77.128.0/23 15566 -62.77.130.0/24 15566 -62.77.132.0/24 15566 -62.77.136.0/21 6821 -62.77.144.0/21 12301 -62.77.152.0/21 62282 -62.77.160.0/19 5466 -62.77.192.0/19 12301 -62.77.224.0/20 12301 -62.77.240.0/23 20845 -62.77.242.0/23 12301 -62.77.244.0/22 12301 -62.77.248.0/21 12301 -62.78.32.0/19 50289 -62.78.76.0/24 49609 -62.78.80.0/20 48858 -62.78.96.0/19 16086 -62.78.128.0/17 16086 -62.79.0.0/16 9158 -62.80.0.0/18 8426 -62.80.64.0/20 15410 -62.80.96.0/19 13237 -62.80.128.0/19 24751 -62.80.160.0/19 25386 -62.80.192.0/19 12597 -62.80.224.0/19 25406 -62.81.0.0/17 6739 -62.81.128.0/19 6739 -62.81.160.0/24 6739 -62.81.161.0/24 24580 -62.81.162.0/23 6739 -62.81.164.0/22 6739 -62.81.168.0/21 6739 -62.81.176.0/20 6739 -62.81.192.0/19 6739 -62.81.224.0/22 6739 -62.81.228.0/23 6739 -62.81.230.0/24 12357 -62.81.231.0/24 6739 -62.81.232.0/21 6739 -62.81.240.0/24 21027 -62.81.241.0/24 6739 -62.81.242.0/24 12357 -62.81.243.0/24 6739 -62.81.244.0/22 6739 -62.81.248.0/21 6739 -62.82.0.0/20 6739 -62.82.16.0/23 6739 -62.82.18.0/24 6739 -62.82.19.0/24 62352 -62.82.20.0/22 6739 -62.82.24.0/21 6739 -62.82.32.0/20 6739 -62.82.48.0/23 6739 -62.82.50.0/23 206487 -62.82.52.0/22 6739 -62.82.56.0/21 6739 -62.82.64.0/20 6739 -62.82.80.0/22 6739 -62.82.84.0/24 43160 -62.82.85.0/24 6739 -62.82.86.0/23 6739 -62.82.88.0/21 6739 -62.82.96.0/19 6739 -62.82.128.0/21 6739 -62.82.136.0/22 6739 -62.82.140.0/24 197478 -62.82.141.0/24 6739 -62.82.142.0/23 6739 -62.82.144.0/22 6739 -62.82.148.0/23 6739 -62.82.150.0/24 6739 -62.82.151.0/24 12357 -62.82.152.0/22 6739 -62.82.156.0/23 6739 -62.82.158.0/24 206487 -62.82.159.0/24 6739 -62.82.160.0/19 6739 -62.82.192.0/19 6739 -62.82.224.0/21 6739 -62.82.232.0/23 6739 -62.82.234.0/24 6739 -62.82.235.0/24 12357 -62.82.236.0/23 6739 -62.82.238.0/24 43160 -62.82.239.0/24 6739 -62.82.240.0/20 6739 -62.83.0.0/17 12430 -62.83.128.0/24 12430 -62.83.129.0/24 12357 -62.83.130.0/23 12357 -62.83.132.0/22 12357 -62.83.136.0/21 12357 -62.83.144.0/20 12357 -62.83.160.0/19 12357 -62.83.192.0/18 12357 -62.84.0.0/19 20910 -62.84.32.0/19 39824 -62.84.64.0/20 42334 -62.84.80.0/21 42334 -62.84.89.0/24 42334 -62.84.90.0/23 42334 -62.84.92.0/22 42334 -62.84.96.0/19 21109 -62.84.128.0/19 5588 -62.84.160.0/19 6911 -62.84.192.0/19 8220 -62.84.224.0/20 8591 -62.84.240.0/22 60781 -62.84.244.0/22 25525 -62.84.248.0/21 35362 -62.85.0.0/17 12578 -62.85.128.0/19 48179 -62.85.160.0/19 15404 -62.85.192.0/19 12797 -62.85.224.0/19 8968 -62.86.0.0/18 3269 -62.86.64.0/19 3269 -62.86.96.0/20 3269 -62.86.112.0/22 3269 -62.86.116.0/24 20746 -62.86.117.0/24 3269 -62.86.118.0/23 3269 -62.86.120.0/21 3269 -62.86.128.0/17 3269 -62.87.0.0/17 12430 -62.87.128.0/18 12741 -62.87.192.0/19 12741 -62.87.224.0/20 12741 -62.87.240.0/21 12741 -62.87.248.0/22 12741 -62.87.252.0/23 12741 -62.87.254.0/24 21010 -62.87.255.0/24 12741 -62.88.0.0/17 47377 -62.88.128.0/17 25387 -62.89.0.0/19 49800 -62.89.32.0/19 60717 -62.89.64.0/18 12741 -62.89.128.0/19 8419 -62.89.160.0/19 9066 -62.89.192.0/24 200823 -62.89.193.0/24 204271 -62.89.194.0/24 31133 -62.89.195.0/24 204230 -62.89.196.0/24 60484 -62.89.197.0/24 3168 -62.89.198.0/23 57531 -62.89.205.0/24 205349 -62.89.206.0/23 3168 -62.89.208.0/22 43197 -62.90.0.0/16 1680 -62.91.0.0/16 20686 -62.92.0.0/16 2119 -62.93.0.0/19 13101 -62.93.32.0/19 25468 -62.93.64.0/20 25447 -62.93.80.0/22 25447 -62.93.84.0/23 25447 -62.93.86.0/24 25447 -62.93.87.0/24 50920 -62.93.88.0/21 25447 -62.93.96.0/20 25447 -62.93.112.0/22 25447 -62.93.116.0/22 43002 -62.93.120.0/21 25447 -62.93.136.0/24 18622 -62.93.137.0/24 14616 -62.93.140.0/22 14616 -62.93.144.0/22 14616 -62.93.148.0/22 18622 -62.93.154.0/24 18622 -62.93.156.0/23 18622 -62.93.158.0/24 14616 -62.93.160.0/19 4589 -62.93.192.0/23 13237 -62.93.194.0/24 13237 -62.93.195.0/24 20756 -62.93.196.0/22 13237 -62.93.200.0/21 13237 -62.93.208.0/22 13237 -62.93.212.0/23 8520 -62.93.214.0/23 13237 -62.93.216.0/21 13237 -62.93.224.0/24 13237 -62.93.225.0/24 8218 -62.93.226.0/23 13237 -62.93.228.0/22 13237 -62.93.232.0/21 13237 -62.93.240.0/22 13237 -62.93.244.0/23 13237 -62.93.246.0/23 8520 -62.93.248.0/21 13237 -62.94.0.0/16 15589 -62.95.0.0/17 3246 -62.96.0.0/20 8220 -62.96.16.0/22 8220 -62.96.20.0/23 8220 -62.96.22.0/24 8220 -62.96.23.0/24 205661 -62.96.24.0/21 8220 -62.96.32.0/19 8220 -62.96.64.0/18 8220 -62.96.128.0/18 8220 -62.96.192.0/20 8220 -62.96.208.0/22 8220 -62.96.212.0/24 60845 -62.96.213.0/24 8220 -62.96.214.0/23 8220 -62.96.216.0/21 8220 -62.96.224.0/19 8220 -62.97.0.0/19 15529 -62.97.32.0/19 31115 -62.97.64.0/19 8220 -62.97.96.0/20 8220 -62.97.112.0/21 8220 -62.97.120.0/23 8220 -62.97.122.0/24 25583 -62.97.123.0/24 8220 -62.97.124.0/22 8220 -62.97.128.0/19 9165 -62.97.160.0/19 41164 -62.97.192.0/18 8542 -62.98.0.0/16 1267 -62.99.0.0/17 12338 -62.99.128.0/17 6830 -62.100.0.0/18 8608 -62.100.64.0/21 15472 -62.100.72.0/23 15472 -62.100.75.0/24 5602 -62.100.76.0/23 5602 -62.100.81.0/24 49289 -62.100.82.0/24 13097 -62.100.85.0/24 15472 -62.100.86.0/23 30848 -62.100.88.0/21 15472 -62.100.96.0/19 6739 -62.100.128.0/19 35393 -62.100.160.0/19 16334 -62.100.192.0/22 39855 -62.100.196.0/22 15830 -62.100.202.0/24 54103 -62.100.204.0/22 12488 -62.100.208.0/24 262287 -62.100.209.0/24 9009 -62.100.211.0/24 42831 -62.100.212.0/22 39855 -62.100.216.0/22 54103 -62.100.220.0/22 39855 -62.100.224.0/20 28728 -62.100.240.0/20 5483 -62.101.0.0/23 15584 -62.101.2.0/24 15584 -62.101.32.0/20 13189 -62.101.48.0/22 13189 -62.101.52.0/22 25466 -62.101.56.0/21 13189 -62.101.64.0/18 12874 -62.101.160.0/22 6739 -62.101.164.0/22 12357 -62.101.168.0/21 12357 -62.101.176.0/22 6739 -62.101.180.0/22 12357 -62.101.184.0/21 12357 -62.101.192.0/18 2116 -62.102.0.0/17 5400 -62.102.128.0/20 50810 -62.102.144.0/22 51815 -62.102.148.0/23 51815 -62.102.150.0/24 197775 -62.102.151.0/24 51815 -62.102.152.0/21 197650 -62.102.160.0/19 2119 -62.102.192.0/19 25220 -62.102.224.0/19 16347 -62.103.0.0/18 6799 -62.103.64.0/19 6799 -62.103.96.0/22 6799 -62.103.100.0/23 6799 -62.103.102.0/24 6799 -62.103.103.0/24 29247 -62.103.104.0/21 6799 -62.103.112.0/20 6799 -62.103.128.0/17 6799 -62.104.0.0/16 5430 -62.105.0.0/19 12389 -62.105.32.0/19 25474 -62.105.64.0/18 5413 -62.105.128.0/20 3216 -62.105.144.0/21 3216 -62.105.152.0/23 3216 -62.105.154.0/24 8872 -62.105.155.0/24 3216 -62.105.156.0/22 3216 -62.105.160.0/19 8607 -62.105.192.0/18 4589 -62.106.0.0/19 8829 -62.106.32.0/20 8829 -62.106.48.0/20 57732 -62.106.96.0/19 8439 -62.106.128.0/17 15557 -62.107.0.0/16 197288 -62.108.0.0/19 6830 -62.108.32.0/19 30962 -62.108.64.0/21 8831 -62.108.72.0/22 8831 -62.108.96.0/19 6700 -62.108.128.0/23 6623 -62.108.130.0/23 13553 -62.108.132.0/22 13553 -62.108.136.0/21 13553 -62.108.144.0/20 13553 -62.108.160.0/20 28678 -62.108.176.0/21 28678 -62.108.184.0/21 28797 -62.108.192.0/19 20625 -62.108.224.0/19 25518 -62.109.0.0/19 29182 -62.109.32.0/19 12552 -62.109.64.0/18 6805 -62.109.128.0/19 29134 -62.109.160.0/19 24783 -62.109.192.0/18 13445 -62.110.0.0/16 3269 -62.111.128.0/17 12741 -62.112.0.0/21 209706 -62.112.8.0/22 49981 -62.112.12.0/23 209706 -62.112.15.0/24 200869 -62.112.16.0/23 200869 -62.112.24.0/22 10753 -62.112.28.0/24 4515 -62.112.29.0/24 6696 -62.112.30.0/24 209706 -62.112.31.0/24 6696 -62.112.32.0/19 13157 -62.112.64.0/19 24590 -62.112.96.0/19 25513 -62.112.128.0/19 5464 -62.112.160.0/19 16074 -62.112.192.0/19 197248 -62.112.224.0/19 29311 -62.113.0.0/19 20875 -62.113.32.0/19 25530 -62.113.80.0/22 6903 -62.113.84.0/23 13155 -62.113.86.0/24 6903 -62.113.87.0/24 13155 -62.113.88.0/24 8359 -62.113.89.0/24 6903 -62.113.90.0/24 6903 -62.113.95.0/24 6903 -62.113.96.0/20 198610 -62.113.112.0/21 48282 -62.113.120.0/21 6903 -62.113.128.0/19 3292 -62.113.160.0/19 16086 -62.113.192.0/18 47447 -62.114.0.0/17 36992 -62.114.128.0/18 36992 -62.114.192.0/19 36992 -62.114.224.0/20 36992 -62.114.252.0/23 36992 -62.115.0.0/16 1299 -62.116.0.0/19 8437 -62.116.32.0/19 1901 -62.116.64.0/18 8437 -62.116.128.0/20 15456 -62.116.144.0/22 15456 -62.116.148.0/23 15456 -62.116.150.0/23 8495 -62.116.152.0/23 8495 -62.116.154.0/23 15456 -62.116.156.0/22 15456 -62.116.160.0/19 15456 -62.116.192.0/21 31027 -62.116.200.0/22 31027 -62.116.204.0/23 31027 -62.116.206.0/24 44869 -62.116.207.0/24 31027 -62.116.208.0/20 31027 -62.116.224.0/19 16117 -62.117.0.0/19 20880 -62.117.32.0/21 25576 -62.117.40.0/23 25576 -62.117.42.0/24 25576 -62.117.44.0/24 25576 -62.117.46.0/23 25576 -62.117.48.0/20 25576 -62.117.64.0/22 8732 -62.117.68.0/23 8732 -62.117.70.0/24 49458 -62.117.71.0/24 8732 -62.117.72.0/21 8732 -62.117.80.0/20 8732 -62.117.96.0/24 43001 -62.117.97.0/24 8732 -62.117.98.0/23 8732 -62.117.100.0/22 8732 -62.117.104.0/21 8732 -62.117.112.0/20 8732 -62.117.128.0/17 12430 -62.118.0.0/17 8359 -62.118.128.0/19 62347 -62.118.160.0/19 8359 -62.118.192.0/18 8359 -62.119.0.0/16 2119 -62.120.0.0/19 34400 -62.120.32.0/19 35819 -62.120.64.0/18 35819 -62.120.128.0/17 35819 -62.121.0.0/19 8607 -62.121.32.0/19 39699 -62.121.64.0/18 6830 -62.121.128.0/20 15541 -62.121.144.0/21 15541 -62.121.152.0/23 15541 -62.121.160.0/19 9158 -62.121.192.0/23 25435 -62.121.208.0/23 25435 -62.121.224.0/23 25435 -62.121.240.0/24 25435 -62.122.8.0/21 48744 -62.122.16.0/21 48870 -62.122.24.0/22 31543 -62.122.32.0/22 48146 -62.122.39.0/24 35701 -62.122.40.0/21 210176 -62.122.48.0/21 47530 -62.122.56.0/21 34786 -62.122.64.0/22 42504 -62.122.68.0/23 42504 -62.122.70.0/24 42504 -62.122.71.0/24 25229 -62.122.72.0/22 208432 -62.122.76.0/22 8764 -62.122.80.0/21 16379 -62.122.88.0/21 47844 -62.122.96.0/21 48940 -62.122.120.0/21 56373 -62.122.128.0/21 15673 -62.122.136.0/21 49472 -62.122.144.0/21 47562 -62.122.152.0/21 49019 -62.122.160.0/21 28717 -62.122.168.0/21 50245 -62.122.176.0/21 49120 -62.122.192.0/21 49106 -62.122.200.0/21 49125 -62.122.208.0/22 49160 -62.122.212.0/24 49160 -62.122.213.0/24 197309 -62.122.214.0/23 197309 -62.122.216.0/22 8100 -62.122.220.0/22 49223 -62.122.224.0/22 197653 -62.122.228.0/23 29119 -62.122.230.0/24 35699 -62.122.231.0/24 29119 -62.122.232.0/21 49290 -62.122.240.0/21 48176 -62.122.248.0/21 39783 -62.123.0.0/16 12797 -62.124.0.0/15 702 -62.126.0.0/17 702 -62.126.160.0/21 702 -62.126.224.0/19 702 -62.127.0.0/16 2119 -62.128.0.0/19 12337 -62.128.32.0/19 9116 -62.128.64.0/24 13253 -62.128.65.0/24 20942 -62.128.66.0/23 20942 -62.128.68.0/22 20942 -62.128.72.0/21 20942 -62.128.80.0/20 12465 -62.128.96.0/22 45102 -62.128.100.0/22 3327 -62.128.104.0/21 3327 -62.128.112.0/20 3327 -62.128.128.0/19 13768 -62.128.160.0/21 12440 -62.128.168.0/21 44795 -62.128.176.0/20 12440 -62.128.192.0/19 20860 -62.128.224.0/19 2119 -62.129.0.0/19 8309 -62.129.32.0/19 30764 -62.129.112.0/20 16365 -62.129.128.0/19 15535 -62.129.160.0/19 21502 -62.129.192.0/18 12824 -62.131.0.0/16 1136 -62.132.0.0/22 286 -62.132.4.0/22 1136 -62.132.8.0/21 1136 -62.132.16.0/21 1136 -62.132.24.0/23 286 -62.132.26.0/23 1136 -62.132.28.0/24 286 -62.132.29.0/24 1136 -62.132.30.0/23 1136 -62.132.32.0/19 1136 -62.132.64.0/19 1136 -62.132.96.0/20 1136 -62.132.112.0/23 1136 -62.132.114.0/24 286 -62.132.115.0/24 25038 -62.132.116.0/22 1136 -62.132.120.0/21 1136 -62.132.128.0/17 1136 -62.133.0.0/19 16082 -62.133.32.0/23 3214 -62.133.34.0/23 136782 -62.133.36.0/22 206487 -62.133.44.0/22 59447 -62.133.52.0/22 12695 -62.133.60.0/22 48430 -62.133.64.0/18 1136 -62.133.128.0/19 38987 -62.133.160.0/20 28812 -62.133.176.0/21 28812 -62.133.184.0/22 28812 -62.133.188.0/23 28812 -62.133.190.0/24 28812 -62.133.191.0/24 208352 -62.133.192.0/18 28788 -62.134.0.0/17 5400 -62.134.128.0/18 5400 -62.134.192.0/21 5400 -62.134.200.0/22 5400 -62.134.204.0/23 5400 -62.134.206.0/24 5400 -62.134.207.0/24 13789 -62.134.208.0/20 5400 -62.134.224.0/19 5400 -62.135.0.0/17 24863 -62.135.128.0/17 3292 -62.138.0.0/19 8972 -62.138.32.0/20 35329 -62.138.48.0/20 20738 -62.138.64.0/18 61157 -62.138.128.0/20 8972 -62.138.144.0/21 8972 -62.138.152.0/22 8972 -62.138.156.0/22 20773 -62.138.160.0/24 20773 -62.138.161.0/24 34011 -62.138.162.0/24 20773 -62.138.163.0/24 34011 -62.138.164.0/23 8972 -62.138.166.0/24 8972 -62.138.167.0/24 20773 -62.138.168.0/21 20773 -62.138.176.0/21 8972 -62.138.184.0/22 8972 -62.138.188.0/24 20773 -62.138.189.0/24 8972 -62.138.190.0/23 8972 -62.138.192.0/20 61157 -62.138.209.0/24 61157 -62.138.210.0/24 200386 -62.138.211.0/24 61157 -62.138.212.0/22 61157 -62.138.216.0/22 61157 -62.138.220.0/23 61157 -62.138.222.0/24 61157 -62.138.224.0/20 61157 -62.138.242.0/23 61157 -62.138.244.0/22 61157 -62.138.248.0/21 61157 -62.139.0.0/16 36992 -62.140.0.0/22 3356 -62.140.4.0/23 3356 -62.140.6.0/24 3356 -62.140.7.0/24 39588 -62.140.8.0/23 3356 -62.140.10.0/24 39588 -62.140.11.0/24 26114 -62.140.12.0/22 3356 -62.140.16.0/21 3356 -62.140.24.0/22 3356 -62.140.28.0/23 3356 -62.140.30.0/24 3356 -62.140.31.0/24 43009 -62.140.32.0/19 8412 -62.140.64.0/18 36992 -62.140.128.0/20 15480 -62.140.144.0/21 15480 -62.140.156.0/23 15480 -62.140.160.0/19 28995 -62.140.192.0/19 24867 -62.140.224.0/22 28917 -62.140.228.0/23 28917 -62.140.230.0/24 28917 -62.140.231.0/24 50299 -62.140.232.0/24 34139 -62.140.233.0/24 28917 -62.140.234.0/23 28917 -62.140.236.0/22 28917 -62.140.240.0/23 28917 -62.140.242.0/24 47282 -62.140.243.0/24 28917 -62.140.244.0/22 28917 -62.140.248.0/24 208142 -62.140.249.0/24 28917 -62.140.250.0/24 28917 -62.140.251.0/24 50299 -62.140.252.0/22 28917 -62.141.0.0/21 13036 -62.141.8.0/23 5588 -62.141.10.0/23 13036 -62.141.12.0/24 5588 -62.141.13.0/24 13036 -62.141.14.0/23 13036 -62.141.16.0/24 13036 -62.141.17.0/24 5588 -62.141.18.0/23 13036 -62.141.20.0/22 13036 -62.141.24.0/21 13036 -62.141.32.0/20 24961 -62.141.48.0/20 31103 -62.141.64.0/18 3216 -62.141.128.0/19 41164 -62.141.160.0/19 20588 -62.141.192.0/18 21021 -62.142.0.0/16 790 -62.143.0.0/16 6830 -62.144.0.0/16 12312 -62.145.0.0/19 20676 -62.145.32.0/20 16074 -62.145.59.0/24 16074 -62.145.60.0/24 16074 -62.145.62.0/24 16074 -62.145.64.0/22 13126 -62.145.68.0/24 24753 -62.145.69.0/24 13126 -62.145.70.0/24 24753 -62.145.71.0/24 13126 -62.145.72.0/21 13126 -62.145.80.0/20 13126 -62.145.96.0/20 13126 -62.145.112.0/21 13126 -62.145.120.0/22 13126 -62.145.124.0/23 13126 -62.145.126.0/24 24753 -62.145.127.0/24 13126 -62.145.128.0/19 12969 -62.145.160.0/19 13170 -62.145.192.0/18 33915 -62.146.0.0/16 15598 -62.147.0.0/16 12322 -62.148.0.0/19 39376 -62.148.32.0/19 13243 -62.148.64.0/19 12741 -62.148.96.0/20 206175 -62.148.112.0/21 206175 -62.148.120.0/23 206175 -62.148.122.0/24 206175 -62.148.124.0/22 206175 -62.148.128.0/20 15468 -62.148.144.0/21 15468 -62.148.152.0/22 15468 -62.148.156.0/24 15468 -62.148.157.0/24 12389 -62.148.158.0/23 15468 -62.148.160.0/19 25542 -62.148.192.0/19 15527 -62.148.224.0/19 12389 -62.149.0.0/19 15497 -62.149.32.0/19 6908 -62.149.64.0/22 25019 -62.149.68.0/23 25019 -62.149.70.0/24 25019 -62.149.71.0/24 39386 -62.149.72.0/21 25019 -62.149.80.0/20 25019 -62.149.96.0/19 25019 -62.149.128.0/17 31034 -62.150.0.0/16 9155 -62.151.0.0/23 12479 -62.151.3.0/24 12479 -62.151.4.0/22 12479 -62.151.9.0/24 12479 -62.151.10.0/23 12479 -62.151.12.0/22 12479 -62.151.16.0/20 12479 -62.151.32.0/19 12479 -62.151.64.0/18 12479 -62.151.128.0/19 12479 -62.151.160.0/21 8560 -62.151.168.0/21 12479 -62.151.176.0/21 8560 -62.151.184.0/21 12479 -62.151.192.0/18 12479 -62.152.0.0/22 16229 -62.152.4.0/24 16229 -62.152.5.0/24 8544 -62.152.6.0/23 8544 -62.152.8.0/24 16229 -62.152.9.0/24 8544 -62.152.10.0/24 16229 -62.152.11.0/24 8544 -62.152.12.0/23 16229 -62.152.14.0/24 8544 -62.152.15.0/24 16229 -62.152.16.0/22 16229 -62.152.20.0/23 16229 -62.152.22.0/23 8544 -62.152.24.0/22 16229 -62.152.28.0/23 8544 -62.152.30.0/24 16229 -62.152.31.0/24 8544 -62.152.32.0/22 29076 -62.152.36.0/23 29076 -62.152.38.0/24 29076 -62.152.39.0/24 3175 -62.152.40.0/21 29076 -62.152.48.0/22 29076 -62.152.52.0/24 29076 -62.152.53.0/24 3175 -62.152.54.0/23 3175 -62.152.56.0/23 3175 -62.152.58.0/24 3175 -62.152.59.0/24 12616 -62.152.60.0/23 3175 -62.152.62.0/24 3175 -62.152.63.0/24 29076 -62.152.64.0/19 8359 -62.152.96.0/19 8220 -62.152.128.0/20 1902 -62.152.144.0/20 12912 -62.152.160.0/19 29252 -62.152.192.0/19 12958 -62.152.224.0/19 16160 -62.153.0.0/16 3320 -62.154.0.0/15 3320 -62.156.0.0/14 3320 -62.160.0.0/20 3215 -62.160.16.0/21 3215 -62.160.24.0/23 3215 -62.160.26.0/24 3215 -62.160.27.0/24 8908 -62.160.28.0/22 3215 -62.160.32.0/19 3215 -62.160.64.0/18 3215 -62.160.128.0/19 3215 -62.160.160.0/20 3215 -62.160.176.0/22 3215 -62.160.180.0/23 3215 -62.160.182.0/24 3215 -62.160.183.0/24 39552 -62.160.184.0/21 3215 -62.160.192.0/19 3215 -62.160.224.0/20 3215 -62.160.240.0/21 3215 -62.160.248.0/23 3215 -62.160.250.0/24 3215 -62.160.251.0/24 24954 -62.160.252.0/24 24954 -62.160.253.0/24 3215 -62.160.254.0/23 3215 -62.161.0.0/16 3215 -62.162.0.0/18 6821 -62.162.64.0/19 6821 -62.162.96.0/20 6821 -62.162.112.0/22 6821 -62.162.116.0/24 205623 -62.162.117.0/24 6821 -62.162.118.0/23 6821 -62.162.120.0/21 6821 -62.162.128.0/19 6821 -62.162.160.0/22 6821 -62.162.164.0/22 41557 -62.162.168.0/22 6821 -62.162.172.0/23 6821 -62.162.174.0/24 199128 -62.162.175.0/24 6821 -62.162.176.0/20 41557 -62.162.192.0/20 6821 -62.162.208.0/22 6821 -62.162.212.0/24 41557 -62.162.213.0/24 6821 -62.162.214.0/23 6821 -62.162.216.0/21 6821 -62.162.224.0/19 6821 -62.163.0.0/16 6830 -62.164.96.0/21 2134 -62.164.104.0/22 2134 -62.164.112.0/22 2134 -62.164.128.0/17 8897 -62.165.0.0/19 12389 -62.165.32.0/22 28745 -62.165.36.0/23 28745 -62.165.38.0/24 28745 -62.165.39.0/24 20485 -62.165.40.0/23 20485 -62.165.42.0/23 28745 -62.165.44.0/22 28745 -62.165.48.0/21 28745 -62.165.56.0/22 28745 -62.165.60.0/24 28745 -62.165.61.0/24 20485 -62.165.62.0/23 28745 -62.165.64.0/18 20847 -62.165.128.0/18 16086 -62.165.192.0/18 20845 -62.166.0.0/16 13127 -62.167.0.0/16 6730 -62.168.0.0/18 5588 -62.168.64.0/18 5578 -62.168.128.0/19 20626 -62.168.160.0/19 16010 -62.168.192.0/19 31055 -62.168.224.0/19 25086 -62.169.0.0/21 15506 -62.169.32.0/19 28831 -62.169.64.0/18 2860 -62.169.128.0/19 8897 -62.169.160.0/20 24744 -62.169.176.0/22 208670 -62.169.180.0/23 208667 -62.169.182.0/23 24744 -62.169.184.0/21 208668 -62.169.192.0/18 25472 -62.170.0.0/16 198471 -62.171.0.0/17 8821 -62.171.128.0/18 51167 -62.171.192.0/18 5503 -62.172.0.0/21 5400 -62.172.8.0/21 2856 -62.172.16.0/20 2856 -62.172.32.0/19 2856 -62.172.64.0/18 2856 -62.172.128.0/21 2856 -62.172.136.0/22 2856 -62.172.140.0/24 32787 -62.172.141.0/24 2856 -62.172.142.0/23 2856 -62.172.144.0/20 2856 -62.172.160.0/21 2856 -62.172.168.0/22 2856 -62.172.172.0/24 2856 -62.172.173.0/24 35452 -62.172.174.0/23 2856 -62.172.176.0/20 2856 -62.172.192.0/18 2856 -62.173.0.0/19 34558 -62.173.32.0/19 29091 -62.173.64.0/18 8426 -62.173.128.0/19 34300 -62.173.160.0/19 5602 -62.173.192.0/18 5400 -62.174.0.0/18 12430 -62.174.64.0/23 6739 -62.174.66.0/24 206487 -62.174.67.0/24 6739 -62.174.68.0/23 6739 -62.174.70.0/24 209791 -62.174.71.0/24 60675 -62.174.72.0/21 6739 -62.174.80.0/20 6739 -62.174.96.0/19 6739 -62.174.128.0/17 12430 -62.175.0.0/20 12357 -62.175.16.0/21 12357 -62.175.24.0/21 6739 -62.175.32.0/19 6739 -62.175.64.0/19 12357 -62.175.96.0/20 12357 -62.175.112.0/21 12357 -62.175.120.0/21 6739 -62.175.128.0/19 6739 -62.175.160.0/20 6739 -62.175.176.0/22 6739 -62.175.180.0/24 12357 -62.175.181.0/24 6739 -62.175.182.0/23 6739 -62.175.184.0/21 6739 -62.175.192.0/21 6739 -62.175.200.0/23 6739 -62.175.202.0/24 43160 -62.175.203.0/24 6739 -62.175.204.0/22 6739 -62.175.208.0/20 6739 -62.175.224.0/21 6739 -62.175.232.0/23 6739 -62.175.234.0/24 6739 -62.175.235.0/24 12357 -62.175.236.0/22 6739 -62.175.240.0/21 6739 -62.175.248.0/22 6739 -62.175.252.0/23 206487 -62.175.254.0/23 6739 -62.176.0.0/19 34456 -62.176.32.0/19 702 -62.176.64.0/19 8866 -62.176.96.0/21 8866 -62.176.104.0/22 8866 -62.176.108.0/23 8866 -62.176.110.0/24 8866 -62.176.111.0/24 35183 -62.176.112.0/21 8866 -62.176.120.0/24 39163 -62.176.121.0/24 201114 -62.176.122.0/23 8866 -62.176.124.0/22 8866 -62.176.128.0/19 8426 -62.176.160.0/19 12905 -62.176.192.0/19 2116 -62.176.224.0/19 9136 -62.177.0.0/19 12874 -62.177.32.0/21 28947 -62.177.40.0/23 28947 -62.177.42.0/23 41556 -62.177.44.0/22 28947 -62.177.48.0/20 28947 -62.177.64.0/18 29208 -62.177.128.0/17 15670 -62.178.0.0/16 6830 -62.179.0.0/17 6830 -62.180.0.0/19 5400 -62.180.32.0/20 5400 -62.180.48.0/21 5400 -62.180.56.0/22 5400 -62.180.60.0/24 5400 -62.180.61.0/24 24840 -62.180.62.0/23 5400 -62.180.64.0/18 5400 -62.180.128.0/17 5400 -62.181.0.0/19 21244 -62.181.32.0/24 57334 -62.181.33.0/24 24739 -62.181.34.0/23 28968 -62.181.36.0/22 28968 -62.181.40.0/24 28968 -62.181.41.0/24 24739 -62.181.42.0/23 24739 -62.181.44.0/23 24739 -62.181.46.0/23 28968 -62.181.48.0/23 28968 -62.181.50.0/24 28968 -62.181.51.0/24 24739 -62.181.52.0/22 24739 -62.181.56.0/22 28968 -62.181.60.0/23 206585 -62.181.62.0/23 28968 -62.181.64.0/18 1257 -62.181.128.0/19 15790 -62.181.160.0/19 12741 -62.181.192.0/18 21195 -62.182.0.0/21 45011 -62.182.8.0/21 44491 -62.182.16.0/21 200083 -62.182.24.0/21 44540 -62.182.44.0/24 202253 -62.182.48.0/21 44678 -62.182.56.0/21 34762 -62.182.64.0/21 196638 -62.182.72.0/21 29124 -62.182.80.0/21 205172 -62.182.88.0/21 25408 -62.182.96.0/23 62240 -62.182.98.0/24 62240 -62.182.100.0/23 49443 -62.182.102.0/23 12843 -62.182.104.0/21 197605 -62.182.112.0/21 34917 -62.182.120.0/21 34251 -62.182.128.0/21 42891 -62.182.136.0/21 29497 -62.182.144.0/21 50625 -62.182.152.0/22 12301 -62.182.156.0/22 207967 -62.182.168.0/21 31130 -62.182.176.0/21 197415 -62.182.192.0/21 47165 -62.182.200.0/21 44391 -62.182.208.0/21 51277 -62.182.216.0/21 47467 -62.182.224.0/21 13000 -62.182.232.0/21 47131 -62.182.240.0/22 47197 -62.182.244.0/23 201546 -62.182.246.0/23 47197 -62.182.248.0/23 47198 -62.182.250.0/24 15404 -62.183.0.0/20 25490 -62.183.16.0/22 12389 -62.183.20.0/22 25490 -62.183.24.0/21 25490 -62.183.32.0/19 25490 -62.183.64.0/21 25490 -62.183.72.0/22 25490 -62.183.76.0/22 42548 -62.183.80.0/21 43132 -62.183.88.0/21 25490 -62.183.96.0/22 25490 -62.183.100.0/23 35177 -62.183.102.0/24 12389 -62.183.103.0/24 35177 -62.183.104.0/21 35177 -62.183.112.0/23 12389 -62.183.114.0/24 35177 -62.183.115.0/24 12389 -62.183.116.0/24 12389 -62.183.124.0/22 12389 -62.183.128.0/17 16086 -62.188.0.0/16 702 -62.189.0.0/22 702 -62.189.4.0/23 702 -62.189.6.0/24 34437 -62.189.7.0/24 702 -62.189.8.0/21 702 -62.189.16.0/20 702 -62.189.32.0/19 702 -62.189.64.0/21 702 -62.189.72.0/23 702 -62.189.74.0/24 702 -62.189.75.0/24 1699 -62.189.76.0/23 702 -62.189.78.0/23 64401 -62.189.80.0/24 15277 -62.189.81.0/24 702 -62.189.82.0/23 702 -62.189.84.0/22 702 -62.189.88.0/21 702 -62.189.96.0/20 702 -62.189.112.0/23 702 -62.189.114.0/24 20249 -62.189.115.0/24 702 -62.189.116.0/22 702 -62.189.120.0/21 702 -62.189.128.0/18 702 -62.189.192.0/20 702 -62.189.208.0/23 702 -62.189.210.0/24 13458 -62.189.211.0/24 702 -62.189.212.0/22 702 -62.189.216.0/21 702 -62.189.224.0/21 702 -62.189.232.0/23 1661 -62.189.234.0/23 702 -62.189.236.0/23 702 -62.189.238.0/24 1675 -62.189.239.0/24 702 -62.189.240.0/20 702 -62.190.0.0/18 702 -62.190.64.0/20 702 -62.190.80.0/22 702 -62.190.84.0/23 702 -62.190.86.0/24 702 -62.190.87.0/24 395753 -62.190.88.0/21 702 -62.190.96.0/19 702 -62.190.128.0/20 702 -62.190.144.0/22 702 -62.190.148.0/24 2830 -62.190.149.0/24 702 -62.190.150.0/23 702 -62.190.152.0/21 702 -62.190.160.0/19 702 -62.190.192.0/18 702 -62.191.0.0/19 5586 -62.191.32.0/19 702 -62.191.64.0/18 702 -62.191.128.0/17 702 -62.192.0.0/21 8220 -62.192.8.0/23 8220 -62.192.10.0/24 8220 -62.192.11.0/24 206484 -62.192.12.0/22 8220 -62.192.16.0/24 8220 -62.192.17.0/24 31141 -62.192.18.0/23 8220 -62.192.20.0/22 8220 -62.192.24.0/21 8220 -62.192.32.0/19 39775 -62.192.64.0/22 15430 -62.192.68.0/23 15430 -62.192.96.0/19 4589 -62.192.128.0/23 31727 -62.192.136.0/22 62300 -62.192.140.0/22 41114 -62.192.144.0/22 210136 -62.192.148.0/22 51765 -62.192.156.0/22 57809 -62.192.165.0/24 1136 -62.192.168.0/24 34962 -62.192.172.0/22 25780 -62.192.176.0/22 203061 -62.192.180.0/22 21211 -62.192.184.0/24 24958 -62.192.185.0/24 29748 -62.192.188.0/22 132839 -62.192.192.0/21 15446 -62.192.200.0/23 15446 -62.192.202.0/24 20546 -62.192.203.0/24 15446 -62.192.204.0/22 15446 -62.192.208.0/20 15446 -62.192.224.0/19 38976 -62.193.4.0/22 5618 -62.193.12.0/22 5618 -62.193.16.0/23 5618 -62.193.18.0/24 5618 -62.193.20.0/23 5618 -62.193.32.0/19 16211 -62.193.64.0/19 15475 -62.193.96.0/21 15475 -62.193.104.0/22 15475 -62.193.108.0/24 15475 -62.193.109.0/24 36992 -62.193.110.0/23 15475 -62.193.112.0/20 15475 -62.193.128.0/19 6700 -62.194.0.0/15 6830 -62.196.0.0/16 3302 -62.197.0.0/19 12680 -62.197.32.0/19 31708 -62.197.64.0/18 12392 -62.197.128.0/23 58073 -62.197.130.0/24 58073 -62.197.136.0/24 58073 -62.197.160.0/19 16086 -62.197.192.0/20 16160 -62.197.208.0/21 16160 -62.197.216.0/22 16160 -62.197.220.0/23 16160 -62.197.222.0/24 5578 -62.197.223.0/24 16160 -62.197.224.0/19 16160 -62.198.0.0/15 3308 -62.200.0.0/20 2686 -62.200.16.0/22 2686 -62.200.20.0/23 2686 -62.200.22.0/24 22731 -62.200.23.0/24 2686 -62.200.24.0/21 2686 -62.200.32.0/20 2686 -62.200.48.0/22 2686 -62.200.52.0/24 2686 -62.200.53.0/24 205006 -62.200.54.0/23 2686 -62.200.56.0/21 2686 -62.200.64.0/18 2686 -62.200.128.0/19 2686 -62.200.160.0/20 2686 -62.200.176.0/22 2686 -62.200.180.0/23 2686 -62.200.182.0/24 205006 -62.200.183.0/24 2686 -62.200.184.0/21 2686 -62.200.192.0/18 2686 -62.201.0.0/22 15548 -62.201.4.0/23 15548 -62.201.8.0/22 15548 -62.201.16.0/20 31349 -62.201.42.0/24 57208 -62.201.64.0/18 5483 -62.201.128.0/19 5410 -62.201.160.0/23 12731 -62.201.162.0/24 12731 -62.201.163.0/24 29380 -62.201.164.0/22 12731 -62.201.168.0/21 12731 -62.201.176.0/20 12731 -62.201.192.0/24 41032 -62.201.193.0/24 44217 -62.201.194.0/23 44217 -62.201.196.0/24 198589 -62.201.200.0/21 41032 -62.201.208.0/22 41032 -62.201.212.0/22 44217 -62.201.216.0/24 41032 -62.201.217.0/24 44217 -62.201.218.0/23 44217 -62.201.220.0/22 44217 -62.201.224.0/21 44217 -62.201.232.0/22 44217 -62.201.236.0/24 44217 -62.201.237.0/24 41032 -62.201.238.0/23 44217 -62.201.240.0/21 44217 -62.201.248.0/23 41032 -62.201.250.0/24 41032 -62.201.251.0/24 44217 -62.201.252.0/22 44217 -62.202.0.0/17 3303 -62.202.128.0/19 3303 -62.202.160.0/20 12684 -62.202.176.0/20 3303 -62.202.192.0/18 3303 -62.203.0.0/16 3303 -62.204.0.0/19 30798 -62.204.64.0/19 41887 -62.204.96.0/19 15600 -62.204.128.0/22 8717 -62.204.132.0/23 62418 -62.204.134.0/23 8717 -62.204.136.0/23 8717 -62.204.138.0/23 29580 -62.204.140.0/22 8717 -62.204.144.0/21 8717 -62.204.152.0/24 8717 -62.204.153.0/24 29580 -62.204.154.0/23 8717 -62.204.156.0/23 8717 -62.204.158.0/24 48917 -62.204.159.0/24 209274 -62.204.160.0/19 12886 -62.204.192.0/19 15630 -62.204.224.0/19 34040 -62.205.0.0/19 44747 -62.205.32.0/19 702 -62.205.64.0/18 6848 -62.205.128.0/19 29632 -62.205.160.0/22 8402 -62.205.164.0/24 8402 -62.205.165.0/24 8371 -62.205.166.0/23 8402 -62.205.168.0/21 8402 -62.205.176.0/20 8402 -62.205.192.0/18 28843 -62.206.0.0/16 20676 -62.207.0.0/16 1136 -62.208.0.0/19 1273 -62.208.32.0/22 1273 -62.208.36.0/22 48945 -62.208.40.0/21 1273 -62.208.48.0/20 1273 -62.208.64.0/19 1273 -62.208.96.0/20 1273 -62.208.112.0/21 4445 -62.208.120.0/21 1273 -62.208.128.0/17 1273 -62.209.0.0/19 31452 -62.209.32.0/20 15830 -62.209.48.0/23 15830 -62.209.50.0/23 52129 -62.209.52.0/24 49216 -62.209.53.0/24 15830 -62.209.54.0/23 15830 -62.209.56.0/21 15830 -62.209.64.0/18 2119 -62.209.128.0/19 34718 -62.209.160.0/19 12552 -62.209.192.0/18 5588 -62.210.0.0/16 12876 -62.211.0.0/16 3269 -62.212.0.0/19 9026 -62.212.32.0/19 34797 -62.212.64.0/19 60781 -62.212.96.0/19 13193 -62.212.128.0/19 39647 -62.212.160.0/19 29081 -62.212.192.0/19 8764 -62.212.224.0/24 29049 -62.212.227.0/24 29049 -62.212.228.0/22 29049 -62.212.234.0/24 29049 -62.212.235.0/24 201167 -62.212.236.0/23 29049 -62.212.244.0/24 29049 -62.212.251.0/24 29049 -62.212.252.0/23 29049 -62.213.0.0/19 12389 -62.213.32.0/19 29071 -62.213.64.0/24 25227 -62.213.65.0/24 197695 -62.213.66.0/23 197695 -62.213.68.0/24 197695 -62.213.69.0/24 25227 -62.213.70.0/23 25227 -62.213.72.0/21 205952 -62.213.82.0/23 25227 -62.213.84.0/23 25227 -62.213.86.0/24 205952 -62.213.87.0/24 197695 -62.213.88.0/22 25227 -62.213.92.0/24 197695 -62.213.94.0/23 205952 -62.213.96.0/24 25227 -62.213.97.0/24 15599 -62.213.98.0/23 25227 -62.213.100.0/24 197695 -62.213.101.0/24 25227 -62.213.102.0/23 205952 -62.213.104.0/23 25227 -62.213.106.0/24 197695 -62.213.107.0/24 25227 -62.213.108.0/24 197695 -62.213.109.0/24 25227 -62.213.110.0/24 25227 -62.213.111.0/24 197695 -62.213.112.0/23 205952 -62.213.114.0/24 197695 -62.213.115.0/24 25227 -62.213.116.0/24 205952 -62.213.117.0/24 25227 -62.213.118.0/23 25227 -62.213.120.0/23 25227 -62.213.122.0/24 197695 -62.213.123.0/24 25227 -62.213.124.0/24 25227 -62.213.125.0/24 197695 -62.213.126.0/24 197695 -62.213.127.0/24 25227 -62.213.128.0/23 1273 -62.213.130.0/24 1273 -62.213.131.0/24 12663 -62.213.132.0/22 1273 -62.213.136.0/21 12663 -62.213.144.0/21 12663 -62.213.152.0/22 12663 -62.213.156.0/22 1273 -62.213.160.0/19 34391 -62.213.192.0/19 28707 -62.213.238.0/24 28707 -62.213.240.0/21 29435 -62.214.0.0/16 8881 -62.215.0.0/19 21050 -62.215.32.0/20 21050 -62.215.48.0/24 21050 -62.215.49.0/24 52081 -62.215.50.0/23 21050 -62.215.52.0/22 21050 -62.215.56.0/21 21050 -62.215.64.0/18 21050 -62.215.128.0/18 21050 -62.215.192.0/20 21050 -62.215.208.0/21 21050 -62.215.216.0/22 21050 -62.215.220.0/24 21050 -62.215.221.0/24 43852 -62.215.222.0/23 21050 -62.215.224.0/19 21050 -62.216.0.0/19 3265 -62.216.32.0/21 41710 -62.216.40.0/22 41710 -62.216.44.0/23 41710 -62.216.46.0/24 41710 -62.216.48.0/23 41710 -62.216.50.0/24 41710 -62.216.52.0/24 41710 -62.216.54.0/23 41710 -62.216.56.0/21 41710 -62.216.64.0/20 44374 -62.216.96.0/19 719 -62.216.128.0/19 15412 -62.216.160.0/19 25560 -62.216.192.0/19 8767 -62.216.224.0/21 15830 -62.216.233.0/24 15830 -62.216.234.0/23 15830 -62.216.236.0/22 15830 -62.216.240.0/20 15830 -62.217.0.0/19 4589 -62.217.32.0/19 8881 -62.217.64.0/18 5408 -62.217.128.0/19 15723 -62.217.160.0/19 24850 -62.217.192.0/18 8953 -62.218.0.0/17 8437 -62.218.128.0/19 8437 -62.218.160.0/21 8437 -62.218.168.0/22 8437 -62.218.172.0/24 8437 -62.218.173.0/24 202856 -62.218.174.0/23 8437 -62.218.176.0/20 8437 -62.218.192.0/18 8437 -62.219.0.0/18 8551 -62.219.64.0/20 8551 -62.219.80.0/21 8551 -62.219.88.0/22 8551 -62.219.92.0/24 6810 -62.219.93.0/24 8551 -62.219.94.0/23 8551 -62.219.96.0/19 8551 -62.219.128.0/17 8551 -62.220.0.0/19 8881 -62.220.32.0/21 8580 -62.220.40.0/23 8580 -62.220.42.0/24 8580 -62.220.43.0/24 8359 -62.220.44.0/22 8580 -62.220.48.0/21 48400 -62.220.56.0/22 41209 -62.220.60.0/22 29190 -62.220.64.0/20 15437 -62.220.80.0/20 200043 -62.220.96.0/21 21341 -62.220.104.0/22 21341 -62.220.108.0/23 206862 -62.220.110.0/23 21341 -62.220.112.0/21 42337 -62.220.120.0/21 21341 -62.220.128.0/19 6893 -62.220.160.0/19 29518 -62.220.192.0/19 6821 -62.220.224.0/22 45010 -62.220.240.0/22 57664 -62.220.244.0/22 29132 -62.220.252.0/22 45010 -62.221.0.0/19 1273 -62.221.32.0/23 6703 -62.221.34.0/24 12883 -62.221.35.0/24 6703 -62.221.36.0/22 12883 -62.221.40.0/23 12883 -62.221.42.0/23 6703 -62.221.44.0/22 6703 -62.221.48.0/23 12883 -62.221.50.0/23 6703 -62.221.52.0/23 6703 -62.221.54.0/24 6703 -62.221.55.0/24 12883 -62.221.56.0/24 6703 -62.221.57.0/24 12883 -62.221.58.0/24 6703 -62.221.59.0/24 12883 -62.221.60.0/22 6703 -62.221.64.0/18 1547 -62.221.128.0/19 13124 -62.221.168.0/21 13183 -62.221.176.0/21 13183 -62.221.184.0/21 20942 -62.221.192.0/19 48635 -62.221.224.0/22 39855 -62.221.228.0/22 208988 -62.221.232.0/21 12329 -62.221.240.0/21 12329 -62.221.248.0/23 48635 -62.221.250.0/24 43345 -62.221.251.0/24 48635 -62.221.252.0/22 48635 -62.222.0.0/15 8918 -62.224.0.0/14 3320 -62.228.0.0/17 6866 -62.228.128.0/18 6866 -62.228.192.0/19 6866 -62.228.224.0/21 6866 -62.228.232.0/23 6866 -62.228.234.0/24 6866 -62.228.235.0/24 208601 -62.228.236.0/23 6866 -62.228.238.0/24 205972 -62.228.239.0/24 202534 -62.228.240.0/24 203598 -62.228.241.0/24 6866 -62.228.242.0/24 31198 -62.228.243.0/24 200649 -62.228.244.0/23 201444 -62.228.246.0/23 196676 -62.228.248.0/24 6866 -62.228.249.0/24 202117 -62.228.250.0/24 202232 -62.228.251.0/24 6866 -62.228.252.0/24 31198 -62.228.253.0/24 199598 -62.228.254.0/23 51228 -62.229.0.0/19 51964 -62.229.32.0/19 5511 -62.229.64.0/18 51964 -62.229.128.0/20 5511 -62.229.144.0/20 51964 -62.229.160.0/19 5511 -62.229.192.0/19 5511 -62.229.224.0/20 51964 -62.229.240.0/20 5511 -62.230.0.0/20 51964 -62.231.0.0/21 3216 -62.231.8.0/22 3216 -62.231.12.0/24 3216 -62.231.13.0/24 15850 -62.231.14.0/24 41258 -62.231.15.0/24 3216 -62.231.16.0/24 16173 -62.231.17.0/24 3216 -62.231.18.0/23 3216 -62.231.20.0/22 3216 -62.231.24.0/23 3216 -62.231.26.0/24 44315 -62.231.27.0/24 3216 -62.231.28.0/22 3216 -62.231.32.0/19 25441 -62.231.64.0/18 8708 -62.231.128.0/19 8426 -62.231.160.0/19 29072 -62.231.192.0/19 28885 -62.231.224.0/20 28885 -62.231.240.0/21 28885 -62.231.248.0/24 50010 -62.231.249.0/24 28885 -62.231.250.0/23 28885 -62.231.252.0/22 28885 -62.232.0.0/16 5413 -62.233.0.0/19 15583 -62.233.64.0/23 20860 -62.233.66.0/24 60423 -62.233.67.0/24 20860 -62.233.68.0/22 20860 -62.233.72.0/21 20860 -62.233.80.0/20 20860 -62.233.96.0/19 20860 -62.233.128.0/17 12741 -62.234.0.0/16 45090 -62.235.0.0/16 5432 -62.236.0.0/15 16086 -62.238.0.0/16 15542 -62.239.0.0/16 2856 -62.240.0.0/20 203877 -62.240.16.0/23 203877 -62.240.18.0/24 203877 -62.240.20.0/24 203877 -62.240.24.0/23 41937 -62.240.32.0/19 21003 -62.240.64.0/19 719 -62.240.96.0/22 24835 -62.240.100.0/24 24835 -62.240.101.0/24 36935 -62.240.102.0/23 36935 -62.240.104.0/24 36935 -62.240.105.0/24 24835 -62.240.106.0/23 24835 -62.240.108.0/22 24835 -62.240.112.0/23 24835 -62.240.114.0/24 24835 -62.240.115.0/24 36935 -62.240.116.0/22 24835 -62.240.120.0/21 24835 -62.240.128.0/19 51265 -62.240.160.0/19 6830 -62.240.192.0/19 13267 -62.240.224.0/19 8426 -62.241.0.0/24 15720 -62.241.2.0/23 15720 -62.241.4.0/22 15720 -62.241.8.0/21 15720 -62.241.16.0/21 15720 -62.241.24.0/23 43976 -62.241.28.0/22 43976 -62.241.32.0/19 202040 -62.241.64.0/19 21502 -62.241.128.0/19 24863 -62.241.160.0/19 9105 -62.241.192.0/18 16086 -62.242.0.0/15 3292 -62.244.0.0/18 3254 -62.244.64.0/22 8565 -62.244.68.0/23 8565 -62.244.70.0/23 16347 -62.244.72.0/22 16347 -62.244.76.0/22 8565 -62.244.80.0/22 8565 -62.244.84.0/23 8565 -62.244.86.0/23 12629 -62.244.88.0/24 8565 -62.244.89.0/24 12629 -62.244.90.0/23 16347 -62.244.92.0/23 16347 -62.244.94.0/23 8565 -62.244.96.0/22 8565 -62.244.100.0/23 8565 -62.244.102.0/24 8565 -62.244.103.0/24 201961 -62.244.104.0/23 8565 -62.244.106.0/24 201961 -62.244.107.0/24 8565 -62.244.108.0/23 8565 -62.244.110.0/24 8565 -62.244.111.0/24 41291 -62.244.112.0/23 8565 -62.244.114.0/24 8565 -62.244.115.0/24 12629 -62.244.116.0/24 8565 -62.244.117.0/24 12629 -62.244.118.0/23 8565 -62.244.120.0/21 8565 -62.244.128.0/19 12741 -62.244.160.0/19 25180 -62.244.192.0/20 15924 -62.244.208.0/21 15924 -62.244.216.0/22 15924 -62.244.220.0/24 15924 -62.244.221.0/24 30734 -62.244.222.0/24 15924 -62.244.223.0/24 8947 -62.244.224.0/21 15924 -62.244.232.0/23 15924 -62.244.234.0/24 49161 -62.244.235.0/24 15924 -62.244.236.0/24 15924 -62.244.237.0/24 38920 -62.244.238.0/23 15924 -62.244.240.0/23 15924 -62.244.242.0/24 15924 -62.244.243.0/24 39253 -62.244.244.0/24 33830 -62.244.245.0/24 15924 -62.244.246.0/23 15924 -62.244.248.0/21 15924 -62.245.0.0/19 203872 -62.245.32.0/19 5563 -62.245.64.0/18 6830 -62.245.128.0/17 8767 -62.246.0.0/16 12312 -62.247.0.0/16 702 -62.248.0.0/17 9121 -62.248.128.0/17 719 -62.249.0.0/19 702 -62.249.32.0/21 29094 -62.249.64.0/18 3330 -62.249.128.0/22 49301 -62.249.132.0/22 20485 -62.249.136.0/21 20485 -62.249.144.0/23 20485 -62.249.146.0/24 49301 -62.249.147.0/24 20485 -62.249.148.0/22 20485 -62.249.152.0/24 49301 -62.249.153.0/24 20485 -62.249.154.0/23 20485 -62.249.156.0/22 20485 -62.249.160.0/19 2119 -62.249.192.0/18 8468 -62.250.0.0/16 13127 -62.251.0.0/17 3265 -62.251.128.0/17 6713 -62.252.0.0/15 5089 -62.254.0.0/16 5089 -62.255.0.0/17 5089 -62.255.128.0/21 5089 -62.255.136.0/22 5089 -62.255.140.0/23 5089 -62.255.142.0/24 32787 -62.255.143.0/24 5089 -62.255.144.0/20 5089 -62.255.160.0/19 5089 -62.255.192.0/18 5089 -63.0.0.0/12 701 -63.16.0.0/13 701 -63.24.0.0/15 701 -63.26.0.0/20 6984 -63.26.16.0/20 701 -63.26.32.0/19 701 -63.26.64.0/18 701 -63.26.128.0/17 701 -63.27.0.0/19 6984 -63.27.32.0/20 6984 -63.27.48.0/20 701 -63.27.64.0/18 701 -63.27.128.0/17 701 -63.28.0.0/14 701 -63.32.0.0/14 16509 -63.36.0.0/16 3356 -63.37.0.0/16 701 -63.38.0.0/18 701 -63.38.64.0/19 701 -63.38.96.0/20 701 -63.38.112.0/21 6995 -63.38.120.0/22 6995 -63.38.124.0/23 6995 -63.38.126.0/24 701 -63.38.127.0/24 6995 -63.38.128.0/24 701 -63.38.129.0/24 6995 -63.38.130.0/23 701 -63.38.132.0/23 6995 -63.38.134.0/23 701 -63.38.136.0/21 701 -63.38.144.0/20 701 -63.38.160.0/19 701 -63.38.192.0/18 701 -63.39.0.0/16 701 -63.40.0.0/14 22394 -63.44.0.0/15 22394 -63.46.0.0/16 22394 -63.47.0.0/16 701 -63.48.0.0/14 701 -63.52.0.0/15 701 -63.54.0.0/15 6167 -63.56.0.0/13 701 -63.64.0.0/20 701 -63.64.16.0/21 701 -63.64.24.0/24 1661 -63.64.25.0/24 701 -63.64.26.0/23 701 -63.64.28.0/22 701 -63.64.32.0/22 701 -63.64.36.0/23 30211 -63.64.38.0/23 701 -63.64.40.0/24 701 -63.64.41.0/24 46601 -63.64.42.0/23 701 -63.64.44.0/23 701 -63.64.46.0/24 701 -63.64.47.0/24 23263 -63.64.48.0/21 701 -63.64.56.0/22 701 -63.64.60.0/23 13434 -63.64.62.0/23 701 -63.64.64.0/21 701 -63.64.72.0/24 701 -63.64.73.0/24 13666 -63.64.74.0/23 701 -63.64.76.0/22 701 -63.64.80.0/22 701 -63.64.84.0/24 701 -63.64.85.0/24 11466 -63.64.86.0/23 701 -63.64.88.0/21 701 -63.64.96.0/20 701 -63.64.112.0/21 701 -63.64.120.0/22 701 -63.64.124.0/23 701 -63.64.126.0/24 20115 -63.64.127.0/24 701 -63.64.128.0/23 701 -63.64.130.0/23 12061 -63.64.132.0/22 701 -63.64.136.0/21 701 -63.64.144.0/21 701 -63.64.152.0/24 396972 -63.64.153.0/24 10753 -63.64.154.0/24 396973 -63.64.155.0/24 10753 -63.64.156.0/23 701 -63.64.158.0/24 701 -63.64.159.0/24 26036 -63.64.160.0/19 701 -63.64.192.0/18 701 -63.65.0.0/20 701 -63.65.16.0/22 701 -63.65.20.0/23 701 -63.65.22.0/24 1699 -63.65.23.0/24 701 -63.65.24.0/24 701 -63.65.25.0/24 1699 -63.65.26.0/23 701 -63.65.28.0/22 701 -63.65.32.0/19 701 -63.65.64.0/18 701 -63.65.128.0/19 701 -63.65.160.0/21 701 -63.65.168.0/24 701 -63.65.169.0/24 26381 -63.65.170.0/23 701 -63.65.172.0/22 701 -63.65.176.0/20 701 -63.65.192.0/19 701 -63.65.224.0/21 701 -63.65.232.0/22 701 -63.65.236.0/23 1699 -63.65.238.0/24 1699 -63.65.239.0/24 701 -63.65.240.0/21 701 -63.65.248.0/23 701 -63.65.250.0/24 1661 -63.65.251.0/24 701 -63.65.252.0/22 701 -63.66.0.0/19 701 -63.66.32.0/20 701 -63.66.48.0/21 701 -63.66.56.0/23 701 -63.66.58.0/24 701 -63.66.59.0/24 11981 -63.66.60.0/22 701 -63.66.64.0/22 701 -63.66.68.0/24 701 -63.66.69.0/24 19405 -63.66.70.0/23 701 -63.66.72.0/21 701 -63.66.80.0/20 701 -63.66.96.0/20 701 -63.66.112.0/23 15089 -63.66.114.0/23 701 -63.66.116.0/22 701 -63.66.120.0/21 701 -63.66.128.0/19 701 -63.66.160.0/22 26097 -63.66.164.0/22 701 -63.66.168.0/22 701 -63.66.172.0/24 701 -63.66.173.0/24 12153 -63.66.174.0/23 701 -63.66.176.0/20 701 -63.66.192.0/20 701 -63.66.208.0/21 11486 -63.66.216.0/21 701 -63.66.224.0/19 701 -63.67.0.0/22 701 -63.67.4.0/23 701 -63.67.6.0/24 18943 -63.67.7.0/24 701 -63.67.8.0/21 701 -63.67.16.0/20 701 -63.67.32.0/19 701 -63.67.64.0/22 701 -63.67.68.0/22 7799 -63.67.72.0/21 701 -63.67.80.0/20 701 -63.67.96.0/19 701 -63.67.128.0/20 701 -63.67.144.0/24 701 -63.67.145.0/24 32805 -63.67.146.0/23 701 -63.67.148.0/22 701 -63.67.152.0/21 701 -63.67.160.0/21 701 -63.67.168.0/23 701 -63.67.170.0/23 16785 -63.67.172.0/23 209 -63.67.174.0/23 701 -63.67.176.0/24 23148 -63.67.177.0/24 11486 -63.67.178.0/23 701 -63.67.180.0/22 701 -63.67.184.0/21 701 -63.67.192.0/19 701 -63.67.224.0/21 701 -63.67.232.0/22 701 -63.67.236.0/23 701 -63.67.238.0/24 54646 -63.67.239.0/24 701 -63.67.240.0/23 54646 -63.67.242.0/23 701 -63.67.244.0/22 701 -63.67.248.0/23 701 -63.67.250.0/24 701 -63.67.251.0/24 14495 -63.67.252.0/22 701 -63.68.0.0/17 701 -63.68.128.0/19 701 -63.68.160.0/20 701 -63.68.176.0/22 701 -63.68.180.0/23 701 -63.68.182.0/24 14495 -63.68.183.0/24 701 -63.68.184.0/21 701 -63.68.192.0/18 701 -63.69.0.0/20 701 -63.69.16.0/21 26938 -63.69.24.0/21 701 -63.69.32.0/20 701 -63.69.48.0/23 30064 -63.69.50.0/23 701 -63.69.52.0/22 701 -63.69.56.0/21 701 -63.69.64.0/23 701 -63.69.66.0/24 63336 -63.69.67.0/24 701 -63.69.68.0/24 46350 -63.69.69.0/24 701 -63.69.70.0/23 701 -63.69.72.0/21 701 -63.69.80.0/20 701 -63.69.96.0/19 701 -63.69.128.0/23 701 -63.69.130.0/24 701 -63.69.131.0/24 26381 -63.69.132.0/22 701 -63.69.136.0/21 701 -63.69.144.0/20 701 -63.69.160.0/19 701 -63.69.192.0/18 701 -63.70.0.0/18 701 -63.70.64.0/21 701 -63.70.72.0/23 28502 -63.70.74.0/23 701 -63.70.76.0/22 701 -63.70.80.0/21 14669 -63.70.88.0/23 21726 -63.70.90.0/23 14669 -63.70.92.0/22 14669 -63.70.96.0/19 701 -63.70.128.0/21 701 -63.70.136.0/23 701 -63.70.138.0/24 22866 -63.70.139.0/24 701 -63.70.140.0/22 701 -63.70.144.0/20 701 -63.70.160.0/22 701 -63.70.164.0/23 20005 -63.70.166.0/23 701 -63.70.168.0/21 701 -63.70.176.0/20 701 -63.70.192.0/19 701 -63.70.224.0/21 701 -63.70.232.0/23 701 -63.70.234.0/23 28502 -63.70.236.0/22 701 -63.70.240.0/20 701 -63.71.0.0/23 701 -63.71.2.0/24 701 -63.71.3.0/24 13570 -63.71.4.0/22 701 -63.71.8.0/21 13380 -63.71.16.0/20 701 -63.71.32.0/19 701 -63.71.64.0/20 701 -63.71.80.0/21 701 -63.71.88.0/22 701 -63.71.92.0/23 701 -63.71.94.0/23 18703 -63.71.96.0/20 701 -63.71.112.0/21 701 -63.71.120.0/23 701 -63.71.122.0/24 701 -63.71.123.0/24 705 -63.71.124.0/22 701 -63.71.128.0/19 701 -63.71.160.0/20 701 -63.71.176.0/22 701 -63.71.180.0/23 14717 -63.71.182.0/23 701 -63.71.184.0/21 701 -63.71.192.0/21 701 -63.71.200.0/24 701 -63.71.201.0/24 14226 -63.71.202.0/23 701 -63.71.204.0/22 701 -63.71.208.0/23 701 -63.71.210.0/24 701 -63.71.211.0/24 11716 -63.71.212.0/22 701 -63.71.216.0/21 701 -63.71.224.0/19 701 -63.72.0.0/17 701 -63.72.128.0/18 701 -63.72.192.0/20 701 -63.72.208.0/22 7996 -63.72.212.0/22 701 -63.72.216.0/21 701 -63.72.224.0/19 701 -63.73.0.0/21 701 -63.73.8.0/23 701 -63.73.10.0/23 16791 -63.73.12.0/24 16791 -63.73.13.0/24 701 -63.73.14.0/23 701 -63.73.16.0/20 701 -63.73.32.0/21 701 -63.73.40.0/23 26279 -63.73.42.0/23 701 -63.73.44.0/22 701 -63.73.48.0/20 701 -63.73.64.0/22 701 -63.73.68.0/24 701 -63.73.69.0/24 14013 -63.73.70.0/23 701 -63.73.72.0/21 701 -63.73.80.0/20 701 -63.73.96.0/19 701 -63.73.128.0/23 701 -63.73.130.0/23 19604 -63.73.132.0/22 701 -63.73.136.0/21 701 -63.73.144.0/21 701 -63.73.152.0/22 701 -63.73.156.0/23 701 -63.73.158.0/24 16387 -63.73.159.0/24 701 -63.73.160.0/19 701 -63.73.192.0/22 701 -63.73.196.0/23 701 -63.73.198.0/24 701 -63.73.199.0/24 13626 -63.73.200.0/21 701 -63.73.208.0/22 701 -63.73.212.0/24 701 -63.73.213.0/24 13716 -63.73.214.0/23 26097 -63.73.216.0/21 701 -63.73.224.0/19 701 -63.74.0.0/18 701 -63.74.64.0/19 701 -63.74.96.0/21 701 -63.74.104.0/24 701 -63.74.105.0/24 10333 -63.74.106.0/23 701 -63.74.108.0/22 701 -63.74.112.0/20 701 -63.74.128.0/19 701 -63.74.160.0/20 701 -63.74.176.0/21 701 -63.74.184.0/22 701 -63.74.188.0/23 701 -63.74.190.0/24 701 -63.74.191.0/24 30066 -63.74.192.0/20 701 -63.74.208.0/21 701 -63.74.216.0/23 62574 -63.74.218.0/23 701 -63.74.220.0/22 701 -63.74.224.0/19 701 -63.75.0.0/20 701 -63.75.16.0/21 701 -63.75.24.0/22 701 -63.75.28.0/23 701 -63.75.30.0/24 701 -63.75.31.0/24 18943 -63.75.32.0/20 701 -63.75.48.0/21 701 -63.75.56.0/22 701 -63.75.60.0/22 10461 -63.75.64.0/18 701 -63.75.128.0/19 701 -63.75.160.0/22 701 -63.75.164.0/23 701 -63.75.166.0/24 701 -63.75.167.0/24 20472 -63.75.168.0/21 701 -63.75.176.0/20 701 -63.75.192.0/18 701 -63.76.0.0/22 701 -63.76.4.0/23 701 -63.76.6.0/23 12234 -63.76.8.0/21 701 -63.76.16.0/21 701 -63.76.24.0/24 10753 -63.76.25.0/24 701 -63.76.26.0/23 701 -63.76.28.0/22 701 -63.76.32.0/21 701 -63.76.40.0/23 701 -63.76.42.0/24 10717 -63.76.43.0/24 701 -63.76.44.0/22 701 -63.76.48.0/22 701 -63.76.52.0/22 36489 -63.76.56.0/24 701 -63.76.57.0/24 46601 -63.76.58.0/23 701 -63.76.60.0/22 701 -63.76.64.0/23 701 -63.76.66.0/23 14717 -63.76.68.0/22 701 -63.76.72.0/23 701 -63.76.74.0/23 19885 -63.76.76.0/23 701 -63.76.78.0/24 701 -63.76.79.0/24 46847 -63.76.80.0/21 701 -63.76.88.0/24 46601 -63.76.89.0/24 23304 -63.76.90.0/23 701 -63.76.92.0/22 701 -63.76.96.0/22 701 -63.76.100.0/24 701 -63.76.101.0/24 29767 -63.76.102.0/23 701 -63.76.104.0/21 701 -63.76.112.0/21 701 -63.76.120.0/22 701 -63.76.124.0/23 701 -63.76.126.0/24 13893 -63.76.127.0/24 701 -63.76.128.0/24 701 -63.76.129.0/24 62865 -63.76.130.0/23 701 -63.76.132.0/24 11275 -63.76.133.0/24 701 -63.76.134.0/23 701 -63.76.136.0/24 701 -63.76.137.0/24 14056 -63.76.138.0/23 701 -63.76.140.0/22 701 -63.76.144.0/20 701 -63.76.160.0/20 701 -63.76.176.0/23 13662 -63.76.178.0/23 701 -63.76.180.0/22 701 -63.76.184.0/21 701 -63.76.192.0/20 701 -63.76.208.0/23 14454 -63.76.210.0/23 701 -63.76.212.0/22 701 -63.76.216.0/24 26959 -63.76.217.0/24 701 -63.76.218.0/23 701 -63.76.220.0/22 701 -63.76.224.0/21 701 -63.76.232.0/24 396922 -63.76.233.0/24 701 -63.76.234.0/23 701 -63.76.236.0/22 701 -63.76.240.0/21 701 -63.76.248.0/22 33616 -63.76.252.0/23 33616 -63.76.254.0/23 393442 -63.77.0.0/20 701 -63.77.16.0/21 701 -63.77.24.0/21 33616 -63.77.32.0/23 701 -63.77.34.0/24 3455 -63.77.35.0/24 701 -63.77.36.0/22 701 -63.77.40.0/23 701 -63.77.42.0/24 30338 -63.77.43.0/24 701 -63.77.44.0/22 701 -63.77.48.0/20 701 -63.77.64.0/21 701 -63.77.72.0/22 701 -63.77.76.0/23 1661 -63.77.78.0/23 701 -63.77.80.0/20 701 -63.77.96.0/23 701 -63.77.98.0/24 701 -63.77.99.0/24 705 -63.77.100.0/22 701 -63.77.104.0/22 701 -63.77.108.0/23 701 -63.77.110.0/24 46601 -63.77.111.0/24 701 -63.77.112.0/20 701 -63.77.128.0/21 701 -63.77.136.0/22 701 -63.77.140.0/23 701 -63.77.142.0/24 701 -63.77.143.0/24 19627 -63.77.144.0/20 701 -63.77.160.0/19 701 -63.77.192.0/23 701 -63.77.194.0/24 27393 -63.77.195.0/24 701 -63.77.196.0/22 701 -63.77.200.0/22 33616 -63.77.204.0/23 393442 -63.77.206.0/24 33616 -63.77.207.0/24 393442 -63.77.208.0/20 701 -63.77.224.0/21 701 -63.77.232.0/23 13524 -63.77.234.0/24 13524 -63.77.235.0/24 701 -63.77.236.0/22 701 -63.77.240.0/22 701 -63.77.244.0/23 701 -63.77.246.0/24 705 -63.77.247.0/24 701 -63.77.248.0/22 701 -63.77.252.0/24 705 -63.77.253.0/24 701 -63.77.254.0/23 701 -63.78.0.0/21 701 -63.78.8.0/22 701 -63.78.12.0/22 11588 -63.78.16.0/21 701 -63.78.24.0/22 701 -63.78.28.0/23 701 -63.78.30.0/24 701 -63.78.31.0/24 16387 -63.78.32.0/24 701 -63.78.33.0/24 23148 -63.78.34.0/23 23148 -63.78.36.0/22 701 -63.78.40.0/24 701 -63.78.41.0/24 23148 -63.78.42.0/24 701 -63.78.43.0/24 23148 -63.78.44.0/23 701 -63.78.46.0/24 23148 -63.78.47.0/24 701 -63.78.48.0/20 701 -63.78.64.0/19 701 -63.78.96.0/20 701 -63.78.112.0/22 701 -63.78.116.0/22 36103 -63.78.120.0/21 701 -63.78.128.0/21 701 -63.78.136.0/22 701 -63.78.140.0/23 701 -63.78.142.0/24 26959 -63.78.143.0/24 701 -63.78.144.0/20 701 -63.78.160.0/20 701 -63.78.176.0/21 701 -63.78.184.0/22 701 -63.78.188.0/24 23304 -63.78.189.0/24 701 -63.78.190.0/23 701 -63.78.192.0/21 701 -63.78.200.0/22 701 -63.78.204.0/23 701 -63.78.206.0/24 701 -63.78.207.0/24 23291 -63.78.208.0/23 701 -63.78.210.0/24 1661 -63.78.211.0/24 701 -63.78.212.0/22 36103 -63.78.216.0/21 701 -63.78.224.0/20 701 -63.78.240.0/24 701 -63.78.241.0/24 14958 -63.78.242.0/24 18971 -63.78.243.0/24 701 -63.78.244.0/22 23219 -63.78.248.0/21 701 -63.79.0.0/24 36313 -63.79.1.0/24 701 -63.79.2.0/23 701 -63.79.4.0/23 701 -63.79.6.0/24 1661 -63.79.7.0/24 701 -63.79.8.0/22 701 -63.79.12.0/23 14063 -63.79.14.0/23 701 -63.79.16.0/20 701 -63.79.32.0/20 701 -63.79.48.0/21 701 -63.79.56.0/22 33616 -63.79.60.0/24 33616 -63.79.61.0/24 393442 -63.79.62.0/23 393442 -63.79.64.0/20 701 -63.79.80.0/21 701 -63.79.88.0/23 10695 -63.79.90.0/24 10695 -63.79.91.0/24 32851 -63.79.92.0/22 701 -63.79.96.0/21 701 -63.79.104.0/23 14495 -63.79.106.0/23 701 -63.79.108.0/22 701 -63.79.112.0/20 701 -63.79.128.0/21 33616 -63.79.136.0/21 701 -63.79.144.0/20 701 -63.79.160.0/20 701 -63.79.176.0/22 18573 -63.79.180.0/22 701 -63.79.184.0/21 701 -63.79.192.0/18 701 -63.80.0.0/19 701 -63.80.32.0/22 701 -63.80.36.0/23 701 -63.80.38.0/24 15572 -63.80.39.0/24 22759 -63.80.40.0/22 701 -63.80.44.0/24 22617 -63.80.45.0/24 701 -63.80.46.0/23 701 -63.80.48.0/23 701 -63.80.50.0/24 32688 -63.80.51.0/24 701 -63.80.52.0/24 11988 -63.80.53.0/24 701 -63.80.54.0/23 701 -63.80.56.0/24 701 -63.80.57.0/24 22759 -63.80.58.0/23 701 -63.80.60.0/22 701 -63.80.64.0/21 701 -63.80.72.0/23 701 -63.80.74.0/24 701 -63.80.75.0/24 32078 -63.80.76.0/22 701 -63.80.80.0/21 701 -63.80.88.0/23 16578 -63.80.90.0/23 701 -63.80.92.0/22 701 -63.80.96.0/23 701 -63.80.98.0/24 30548 -63.80.99.0/24 701 -63.80.100.0/23 701 -63.80.102.0/24 22759 -63.80.103.0/24 701 -63.80.104.0/24 701 -63.80.105.0/24 54546 -63.80.106.0/23 701 -63.80.108.0/22 701 -63.80.112.0/21 701 -63.80.120.0/22 701 -63.80.124.0/24 701 -63.80.125.0/24 55182 -63.80.126.0/23 701 -63.80.128.0/22 701 -63.80.132.0/23 701 -63.80.134.0/24 701 -63.80.135.0/24 36690 -63.80.136.0/23 22135 -63.80.138.0/23 701 -63.80.140.0/22 701 -63.80.144.0/20 701 -63.80.160.0/23 701 -63.80.162.0/24 15572 -63.80.163.0/24 701 -63.80.164.0/22 701 -63.80.168.0/22 701 -63.80.172.0/23 701 -63.80.174.0/24 7018 -63.80.175.0/24 701 -63.80.176.0/21 701 -63.80.184.0/21 16578 -63.80.192.0/22 701 -63.80.196.0/24 396454 -63.80.197.0/24 701 -63.80.198.0/24 32319 -63.80.199.0/24 701 -63.80.200.0/23 701 -63.80.202.0/24 32688 -63.80.203.0/24 701 -63.80.204.0/22 701 -63.80.208.0/22 701 -63.80.212.0/23 701 -63.80.214.0/24 701 -63.80.215.0/24 395753 -63.80.216.0/21 701 -63.80.224.0/19 701 -63.81.0.0/19 701 -63.81.32.0/21 701 -63.81.40.0/23 701 -63.81.42.0/24 54451 -63.81.43.0/24 701 -63.81.44.0/22 701 -63.81.48.0/20 701 -63.81.64.0/21 701 -63.81.72.0/24 7018 -63.81.73.0/24 701 -63.81.74.0/23 701 -63.81.76.0/22 701 -63.81.80.0/20 16578 -63.81.96.0/21 701 -63.81.104.0/22 701 -63.81.108.0/23 25967 -63.81.110.0/23 701 -63.81.112.0/20 701 -63.81.128.0/20 701 -63.81.144.0/23 701 -63.81.146.0/24 19176 -63.81.147.0/24 701 -63.81.148.0/22 701 -63.81.152.0/21 701 -63.81.160.0/21 701 -63.81.168.0/22 701 -63.81.172.0/23 701 -63.81.174.0/24 701 -63.81.175.0/24 705 -63.81.176.0/20 701 -63.81.192.0/23 701 -63.81.194.0/24 701 -63.81.195.0/24 1635 -63.81.196.0/22 701 -63.81.200.0/21 701 -63.81.208.0/20 701 -63.81.224.0/19 701 -63.82.0.0/21 22530 -63.82.8.0/21 701 -63.82.16.0/20 701 -63.82.32.0/20 701 -63.82.48.0/21 16578 -63.82.56.0/21 701 -63.82.64.0/19 701 -63.82.96.0/20 701 -63.82.112.0/21 701 -63.82.120.0/22 701 -63.82.124.0/23 701 -63.82.126.0/24 701 -63.82.127.0/24 705 -63.82.128.0/23 701 -63.82.130.0/24 46186 -63.82.131.0/24 701 -63.82.132.0/22 701 -63.82.136.0/21 701 -63.82.144.0/20 701 -63.82.160.0/19 701 -63.82.192.0/18 701 -63.83.0.0/20 701 -63.83.16.0/21 701 -63.83.24.0/24 32330 -63.83.25.0/24 701 -63.83.26.0/23 701 -63.83.28.0/22 701 -63.83.32.0/22 701 -63.83.36.0/23 18703 -63.83.38.0/23 701 -63.83.40.0/21 701 -63.83.48.0/20 701 -63.83.64.0/21 701 -63.83.72.0/21 16578 -63.83.80.0/20 701 -63.83.96.0/19 701 -63.83.128.0/17 701 -63.84.0.0/21 701 -63.84.8.0/24 701 -63.84.9.0/24 393675 -63.84.10.0/23 701 -63.84.12.0/23 701 -63.84.14.0/24 701 -63.84.15.0/24 393850 -63.84.16.0/22 701 -63.84.20.0/24 25991 -63.84.21.0/24 701 -63.84.22.0/24 701 -63.84.23.0/24 7723 -63.84.24.0/21 701 -63.84.32.0/20 701 -63.84.48.0/24 46630 -63.84.49.0/24 701 -63.84.50.0/23 701 -63.84.52.0/22 701 -63.84.56.0/21 701 -63.84.64.0/22 28502 -63.84.68.0/22 701 -63.84.72.0/22 21660 -63.84.76.0/23 701 -63.84.78.0/24 701 -63.84.79.0/24 26768 -63.84.80.0/24 701 -63.84.81.0/24 394856 -63.84.82.0/23 701 -63.84.84.0/22 701 -63.84.88.0/21 701 -63.84.96.0/20 701 -63.84.112.0/23 701 -63.84.114.0/24 209 -63.84.115.0/24 701 -63.84.116.0/22 701 -63.84.120.0/21 701 -63.84.128.0/21 701 -63.84.136.0/22 701 -63.84.140.0/22 14414 -63.84.144.0/24 64279 -63.84.145.0/24 701 -63.84.146.0/23 701 -63.84.148.0/22 701 -63.84.152.0/21 701 -63.84.160.0/22 701 -63.84.164.0/23 1663 -63.84.166.0/23 701 -63.84.168.0/21 701 -63.84.176.0/21 701 -63.84.184.0/22 701 -63.84.188.0/24 15085 -63.84.189.0/24 701 -63.84.190.0/23 701 -63.84.192.0/23 701 -63.84.194.0/24 13883 -63.84.195.0/24 701 -63.84.196.0/22 701 -63.84.200.0/24 15085 -63.84.201.0/24 701 -63.84.202.0/23 701 -63.84.204.0/22 701 -63.84.208.0/22 701 -63.84.212.0/23 701 -63.84.214.0/24 26306 -63.84.215.0/24 701 -63.84.216.0/22 701 -63.84.220.0/22 13462 -63.84.224.0/24 29782 -63.84.225.0/24 701 -63.84.226.0/23 701 -63.84.228.0/22 701 -63.84.232.0/21 701 -63.84.240.0/22 701 -63.84.244.0/23 6318 -63.84.246.0/23 701 -63.84.248.0/21 701 -63.85.0.0/22 701 -63.85.4.0/22 21973 -63.85.8.0/24 20040 -63.85.9.0/24 701 -63.85.10.0/23 701 -63.85.12.0/22 701 -63.85.16.0/22 701 -63.85.20.0/24 19462 -63.85.21.0/24 701 -63.85.22.0/23 701 -63.85.24.0/22 701 -63.85.28.0/23 701 -63.85.30.0/24 701 -63.85.31.0/24 705 -63.85.32.0/21 701 -63.85.40.0/23 701 -63.85.42.0/23 10388 -63.85.44.0/22 701 -63.85.48.0/21 701 -63.85.56.0/23 701 -63.85.58.0/24 19369 -63.85.59.0/24 701 -63.85.60.0/22 701 -63.85.64.0/22 701 -63.85.68.0/24 11621 -63.85.69.0/24 701 -63.85.70.0/23 701 -63.85.72.0/24 13517 -63.85.73.0/24 701 -63.85.74.0/23 701 -63.85.76.0/23 701 -63.85.78.0/24 17056 -63.85.79.0/24 701 -63.85.80.0/21 701 -63.85.88.0/22 30462 -63.85.92.0/22 701 -63.85.96.0/19 701 -63.85.128.0/20 701 -63.85.144.0/22 701 -63.85.148.0/23 701 -63.85.150.0/24 396240 -63.85.151.0/24 701 -63.85.152.0/21 701 -63.85.160.0/22 701 -63.85.164.0/24 21973 -63.85.165.0/24 701 -63.85.166.0/24 21973 -63.85.167.0/24 701 -63.85.168.0/24 21973 -63.85.169.0/24 701 -63.85.170.0/23 701 -63.85.172.0/22 701 -63.85.176.0/21 701 -63.85.184.0/22 701 -63.85.188.0/24 701 -63.85.189.0/24 20127 -63.85.190.0/23 701 -63.85.192.0/21 701 -63.85.200.0/24 40234 -63.85.201.0/24 701 -63.85.202.0/23 701 -63.85.204.0/22 701 -63.85.208.0/23 701 -63.85.210.0/24 701 -63.85.211.0/24 394260 -63.85.212.0/23 701 -63.85.214.0/24 36152 -63.85.215.0/24 701 -63.85.216.0/21 701 -63.85.224.0/21 701 -63.85.232.0/24 701 -63.85.233.0/24 397890 -63.85.234.0/23 701 -63.85.236.0/22 701 -63.85.240.0/23 701 -63.85.242.0/24 26789 -63.85.243.0/24 701 -63.85.244.0/22 701 -63.85.248.0/21 701 -63.86.0.0/22 701 -63.86.4.0/23 701 -63.86.6.0/24 16756 -63.86.7.0/24 701 -63.86.8.0/22 30462 -63.86.12.0/22 701 -63.86.16.0/23 1635 -63.86.18.0/23 701 -63.86.20.0/22 701 -63.86.24.0/21 701 -63.86.32.0/19 701 -63.86.64.0/21 701 -63.86.72.0/22 701 -63.86.76.0/23 701 -63.86.78.0/24 23057 -63.86.79.0/24 701 -63.86.80.0/21 701 -63.86.88.0/24 27358 -63.86.89.0/24 701 -63.86.90.0/23 701 -63.86.92.0/22 701 -63.86.96.0/21 701 -63.86.104.0/24 701 -63.86.105.0/24 14652 -63.86.106.0/24 32929 -63.86.107.0/24 701 -63.86.108.0/22 701 -63.86.112.0/21 701 -63.86.120.0/22 46303 -63.86.124.0/24 39947 -63.86.125.0/24 701 -63.86.126.0/23 701 -63.86.128.0/20 701 -63.86.144.0/21 701 -63.86.152.0/24 701 -63.86.153.0/24 27485 -63.86.154.0/23 701 -63.86.156.0/22 701 -63.86.160.0/20 701 -63.86.176.0/21 701 -63.86.184.0/23 701 -63.86.186.0/24 701 -63.86.187.0/24 18434 -63.86.188.0/23 26097 -63.86.190.0/23 701 -63.86.192.0/21 701 -63.86.200.0/23 701 -63.86.202.0/24 701 -63.86.203.0/24 21973 -63.86.204.0/23 701 -63.86.206.0/24 40711 -63.86.207.0/24 701 -63.86.208.0/20 701 -63.86.224.0/19 701 -63.87.0.0/23 701 -63.87.2.0/24 701 -63.87.3.0/24 395321 -63.87.4.0/22 701 -63.87.8.0/21 701 -63.87.16.0/23 1661 -63.87.18.0/23 701 -63.87.20.0/22 701 -63.87.24.0/21 701 -63.87.32.0/19 701 -63.87.64.0/22 701 -63.87.68.0/22 13716 -63.87.72.0/21 701 -63.87.80.0/21 701 -63.87.88.0/22 21729 -63.87.92.0/22 701 -63.87.96.0/20 701 -63.87.112.0/20 46303 -63.87.128.0/20 701 -63.87.144.0/22 701 -63.87.148.0/23 701 -63.87.150.0/23 705 -63.87.152.0/21 701 -63.87.160.0/21 701 -63.87.168.0/23 701 -63.87.170.0/24 14566 -63.87.171.0/24 701 -63.87.172.0/22 701 -63.87.176.0/20 701 -63.87.192.0/20 701 -63.87.208.0/21 701 -63.87.216.0/23 701 -63.87.218.0/24 701 -63.87.219.0/24 14792 -63.87.220.0/23 7381 -63.87.222.0/23 701 -63.87.224.0/20 11486 -63.87.240.0/21 11486 -63.87.248.0/22 11486 -63.87.252.0/24 11486 -63.87.253.0/24 7046 -63.87.254.0/23 11486 -63.88.0.0/23 701 -63.88.2.0/24 701 -63.88.3.0/24 10361 -63.88.4.0/22 701 -63.88.8.0/23 701 -63.88.10.0/23 12234 -63.88.12.0/22 701 -63.88.16.0/20 701 -63.88.32.0/22 701 -63.88.36.0/22 40412 -63.88.40.0/23 701 -63.88.42.0/23 14473 -63.88.44.0/22 701 -63.88.48.0/22 701 -63.88.52.0/23 12169 -63.88.54.0/24 701 -63.88.55.0/24 12169 -63.88.56.0/22 701 -63.88.60.0/23 701 -63.88.62.0/23 32058 -63.88.64.0/21 701 -63.88.72.0/23 701 -63.88.74.0/24 22778 -63.88.75.0/24 701 -63.88.76.0/23 701 -63.88.78.0/24 53945 -63.88.79.0/24 701 -63.88.80.0/20 701 -63.88.96.0/21 701 -63.88.104.0/24 53523 -63.88.105.0/24 701 -63.88.106.0/23 701 -63.88.108.0/22 701 -63.88.112.0/20 701 -63.88.128.0/18 701 -63.88.192.0/21 701 -63.88.200.0/23 701 -63.88.202.0/23 17160 -63.88.204.0/22 701 -63.88.208.0/20 701 -63.88.224.0/19 701 -63.89.0.0/18 701 -63.89.64.0/21 701 -63.89.72.0/22 701 -63.89.76.0/22 20088 -63.89.80.0/22 701 -63.89.84.0/23 701 -63.89.86.0/24 701 -63.89.87.0/24 20088 -63.89.88.0/21 701 -63.89.96.0/19 701 -63.89.128.0/18 701 -63.89.192.0/22 701 -63.89.196.0/23 701 -63.89.198.0/24 701 -63.89.199.0/24 22001 -63.89.200.0/21 701 -63.89.208.0/20 701 -63.89.224.0/23 701 -63.89.226.0/23 14717 -63.89.228.0/22 701 -63.89.232.0/21 701 -63.89.240.0/20 701 -63.90.0.0/18 701 -63.90.64.0/23 701 -63.90.66.0/23 15227 -63.90.68.0/22 701 -63.90.72.0/23 701 -63.90.74.0/24 36103 -63.90.75.0/24 701 -63.90.76.0/22 15089 -63.90.80.0/20 701 -63.90.96.0/20 701 -63.90.112.0/20 46530 -63.90.128.0/19 701 -63.90.160.0/21 701 -63.90.168.0/22 701 -63.90.172.0/24 3356 -63.90.173.0/24 701 -63.90.174.0/23 701 -63.90.176.0/20 701 -63.90.192.0/18 701 -63.91.0.0/20 701 -63.91.16.0/21 701 -63.91.24.0/22 701 -63.91.28.0/24 14717 -63.91.29.0/24 701 -63.91.30.0/23 701 -63.91.32.0/19 701 -63.91.64.0/19 701 -63.91.96.0/21 701 -63.91.104.0/22 701 -63.91.108.0/23 701 -63.91.110.0/23 7381 -63.91.112.0/20 701 -63.91.128.0/24 701 -63.91.129.0/24 29898 -63.91.130.0/23 701 -63.91.132.0/22 701 -63.91.136.0/21 701 -63.91.144.0/20 701 -63.91.160.0/20 701 -63.91.176.0/24 10584 -63.91.177.0/24 701 -63.91.178.0/23 701 -63.91.180.0/22 701 -63.91.184.0/21 701 -63.91.192.0/18 701 -63.92.0.0/17 701 -63.92.128.0/20 701 -63.92.144.0/22 701 -63.92.148.0/23 54646 -63.92.150.0/23 701 -63.92.152.0/21 701 -63.92.160.0/19 701 -63.92.192.0/23 18703 -63.92.194.0/24 18703 -63.92.195.0/24 701 -63.92.196.0/22 701 -63.92.200.0/21 701 -63.92.208.0/20 701 -63.92.224.0/19 714 -63.93.0.0/17 701 -63.93.128.0/18 701 -63.93.192.0/19 701 -63.93.224.0/22 701 -63.93.228.0/24 701 -63.93.229.0/24 23170 -63.93.230.0/23 701 -63.93.232.0/21 701 -63.93.240.0/20 701 -63.94.0.0/18 701 -63.94.64.0/20 701 -63.94.80.0/21 701 -63.94.88.0/22 701 -63.94.92.0/22 14717 -63.94.96.0/19 701 -63.94.128.0/19 701 -63.94.160.0/21 701 -63.94.168.0/23 701 -63.94.170.0/24 701 -63.94.171.0/24 13524 -63.94.172.0/22 701 -63.94.176.0/20 701 -63.94.192.0/19 701 -63.94.224.0/22 701 -63.94.228.0/23 701 -63.94.230.0/24 701 -63.94.231.0/24 14385 -63.94.232.0/21 701 -63.94.240.0/20 701 -63.95.0.0/22 701 -63.95.4.0/24 701 -63.95.5.0/24 26134 -63.95.6.0/23 701 -63.95.8.0/21 701 -63.95.16.0/20 701 -63.95.32.0/22 701 -63.95.36.0/24 13970 -63.95.37.0/24 701 -63.95.38.0/23 701 -63.95.40.0/21 701 -63.95.48.0/22 701 -63.95.52.0/24 20088 -63.95.53.0/24 701 -63.95.54.0/23 701 -63.95.56.0/21 701 -63.95.64.0/21 17302 -63.95.72.0/21 701 -63.95.80.0/20 701 -63.95.96.0/19 701 -63.95.128.0/18 701 -63.95.192.0/19 701 -63.95.224.0/20 701 -63.95.240.0/22 701 -63.95.244.0/23 701 -63.95.246.0/23 17119 -63.95.248.0/21 701 -63.96.0.0/24 701 -63.96.1.0/24 18434 -63.96.2.0/23 701 -63.96.4.0/22 701 -63.96.8.0/22 701 -63.96.12.0/23 701 -63.96.14.0/24 701 -63.96.15.0/24 396524 -63.96.16.0/21 701 -63.96.24.0/22 701 -63.96.28.0/23 26344 -63.96.30.0/24 26344 -63.96.31.0/24 701 -63.96.32.0/22 701 -63.96.36.0/24 701 -63.96.37.0/24 393977 -63.96.38.0/23 701 -63.96.40.0/21 701 -63.96.48.0/23 701 -63.96.50.0/23 201106 -63.96.52.0/22 701 -63.96.56.0/22 701 -63.96.60.0/22 16791 -63.96.64.0/21 701 -63.96.72.0/22 701 -63.96.76.0/22 395800 -63.96.80.0/21 701 -63.96.88.0/23 701 -63.96.90.0/24 63321 -63.96.91.0/24 701 -63.96.92.0/22 701 -63.96.96.0/19 701 -63.96.128.0/23 701 -63.96.130.0/24 701 -63.96.131.0/24 46202 -63.96.132.0/22 701 -63.96.136.0/21 701 -63.96.144.0/23 701 -63.96.146.0/24 701 -63.96.147.0/24 705 -63.96.148.0/22 701 -63.96.152.0/21 701 -63.96.160.0/19 701 -63.96.192.0/23 3729 -63.96.194.0/23 701 -63.96.196.0/22 701 -63.96.200.0/23 13701 -63.96.202.0/23 701 -63.96.204.0/22 701 -63.96.208.0/21 22762 -63.96.216.0/22 701 -63.96.220.0/24 701 -63.96.221.0/24 6503 -63.96.222.0/23 701 -63.96.224.0/23 701 -63.96.226.0/24 25907 -63.96.227.0/24 701 -63.96.228.0/24 701 -63.96.229.0/24 13554 -63.96.230.0/23 701 -63.96.232.0/24 701 -63.96.233.0/24 46202 -63.96.234.0/23 46202 -63.96.236.0/22 701 -63.96.240.0/23 701 -63.96.242.0/23 26344 -63.96.244.0/22 701 -63.96.248.0/21 701 -63.97.0.0/21 701 -63.97.8.0/22 701 -63.97.12.0/23 701 -63.97.14.0/24 701 -63.97.15.0/24 25907 -63.97.16.0/20 701 -63.97.32.0/21 701 -63.97.40.0/23 701 -63.97.42.0/23 54650 -63.97.44.0/22 701 -63.97.48.0/21 701 -63.97.56.0/23 701 -63.97.58.0/24 18867 -63.97.59.0/24 701 -63.97.60.0/22 701 -63.97.64.0/19 701 -63.97.96.0/21 701 -63.97.104.0/23 1661 -63.97.106.0/23 701 -63.97.108.0/24 701 -63.97.109.0/24 31892 -63.97.110.0/23 701 -63.97.112.0/20 701 -63.97.128.0/20 701 -63.97.144.0/23 701 -63.97.146.0/24 54959 -63.97.147.0/24 701 -63.97.148.0/23 701 -63.97.150.0/24 701 -63.97.151.0/24 29891 -63.97.152.0/21 701 -63.97.160.0/22 701 -63.97.164.0/23 701 -63.97.166.0/24 701 -63.97.167.0/24 26843 -63.97.168.0/22 701 -63.97.172.0/24 13782 -63.97.173.0/24 701 -63.97.174.0/23 701 -63.97.176.0/21 701 -63.97.184.0/23 701 -63.97.186.0/24 701 -63.97.187.0/24 23304 -63.97.188.0/22 701 -63.97.192.0/21 701 -63.97.200.0/24 701 -63.97.201.0/24 396922 -63.97.202.0/23 701 -63.97.204.0/23 701 -63.97.206.0/24 30523 -63.97.207.0/24 701 -63.97.208.0/21 701 -63.97.216.0/22 701 -63.97.220.0/23 701 -63.97.222.0/24 21973 -63.97.223.0/24 701 -63.97.224.0/20 701 -63.97.240.0/23 701 -63.97.242.0/24 701 -63.97.243.0/24 53470 -63.97.244.0/22 701 -63.97.248.0/23 701 -63.97.250.0/24 701 -63.97.251.0/24 23304 -63.97.252.0/22 701 -63.98.0.0/21 701 -63.98.8.0/22 701 -63.98.12.0/24 11653 -63.98.13.0/24 701 -63.98.14.0/23 701 -63.98.16.0/23 701 -63.98.18.0/24 701 -63.98.19.0/24 1382 -63.98.20.0/22 701 -63.98.24.0/21 701 -63.98.32.0/20 701 -63.98.48.0/21 701 -63.98.56.0/22 701 -63.98.60.0/24 701 -63.98.61.0/24 46601 -63.98.62.0/23 701 -63.98.64.0/19 701 -63.98.96.0/22 701 -63.98.100.0/24 701 -63.98.101.0/24 46639 -63.98.102.0/24 701 -63.98.103.0/24 55182 -63.98.104.0/21 701 -63.98.112.0/20 701 -63.98.128.0/20 701 -63.98.144.0/22 701 -63.98.148.0/24 54692 -63.98.149.0/24 701 -63.98.150.0/23 701 -63.98.152.0/21 701 -63.98.160.0/24 54650 -63.98.161.0/24 701 -63.98.162.0/23 701 -63.98.164.0/22 701 -63.98.168.0/21 701 -63.98.176.0/20 701 -63.98.192.0/19 701 -63.98.224.0/24 394661 -63.98.225.0/24 701 -63.98.226.0/23 701 -63.98.228.0/22 701 -63.98.232.0/21 701 -63.98.240.0/20 701 -63.99.0.0/20 701 -63.99.16.0/21 701 -63.99.24.0/22 701 -63.99.28.0/24 23079 -63.99.29.0/24 29970 -63.99.30.0/23 701 -63.99.32.0/19 701 -63.99.64.0/21 701 -63.99.72.0/23 701 -63.99.74.0/23 30515 -63.99.76.0/22 701 -63.99.80.0/20 701 -63.99.96.0/20 701 -63.99.112.0/21 701 -63.99.120.0/23 30452 -63.99.122.0/23 20034 -63.99.124.0/22 701 -63.99.128.0/18 701 -63.99.192.0/21 11486 -63.99.200.0/22 11486 -63.99.204.0/23 11486 -63.99.206.0/24 11486 -63.99.207.0/24 32059 -63.99.208.0/20 11486 -63.99.224.0/22 11486 -63.99.228.0/23 11486 -63.99.230.0/24 7046 -63.99.231.0/24 11486 -63.99.232.0/21 11486 -63.99.240.0/21 11486 -63.99.248.0/22 11486 -63.99.252.0/23 11486 -63.99.254.0/24 32059 -63.99.255.0/24 11486 -63.100.0.0/22 701 -63.100.4.0/24 701 -63.100.5.0/24 18478 -63.100.6.0/23 701 -63.100.8.0/21 701 -63.100.16.0/20 701 -63.100.32.0/20 701 -63.100.48.0/23 701 -63.100.50.0/24 701 -63.100.51.0/24 14313 -63.100.52.0/22 701 -63.100.56.0/21 701 -63.100.64.0/18 701 -63.100.128.0/19 701 -63.100.160.0/21 701 -63.100.168.0/22 701 -63.100.172.0/24 22848 -63.100.173.0/24 701 -63.100.174.0/23 701 -63.100.176.0/24 17032 -63.100.177.0/24 701 -63.100.178.0/23 701 -63.100.180.0/22 701 -63.100.184.0/21 701 -63.100.192.0/18 701 -63.101.0.0/17 701 -63.101.128.0/20 701 -63.101.144.0/22 701 -63.101.148.0/23 701 -63.101.150.0/23 14566 -63.101.152.0/21 701 -63.101.160.0/19 701 -63.101.192.0/18 701 -63.102.0.0/19 701 -63.102.32.0/20 701 -63.102.48.0/21 701 -63.102.56.0/22 7029 -63.102.60.0/22 701 -63.102.64.0/19 701 -63.102.96.0/21 701 -63.102.104.0/23 701 -63.102.106.0/24 701 -63.102.107.0/24 21973 -63.102.108.0/22 701 -63.102.112.0/20 701 -63.102.128.0/18 701 -63.102.192.0/19 701 -63.102.224.0/20 701 -63.102.240.0/21 701 -63.102.248.0/21 18573 -63.103.0.0/19 701 -63.103.32.0/20 701 -63.103.48.0/23 701 -63.103.50.0/23 21996 -63.103.52.0/22 701 -63.103.56.0/21 701 -63.103.64.0/19 701 -63.103.96.0/23 701 -63.103.98.0/24 3356 -63.103.99.0/24 701 -63.103.100.0/22 701 -63.103.104.0/24 15045 -63.103.105.0/24 3356 -63.103.106.0/24 3356 -63.103.107.0/24 701 -63.103.108.0/22 15045 -63.103.112.0/20 701 -63.103.128.0/18 701 -63.103.192.0/19 701 -63.103.224.0/24 15173 -63.103.225.0/24 701 -63.103.226.0/23 701 -63.103.228.0/22 701 -63.103.232.0/21 701 -63.103.240.0/20 701 -63.104.0.0/18 701 -63.104.64.0/21 701 -63.104.72.0/24 701 -63.104.73.0/24 4565 -63.104.74.0/24 4565 -63.104.75.0/24 701 -63.104.76.0/22 701 -63.104.80.0/20 701 -63.104.96.0/19 701 -63.104.128.0/18 701 -63.104.192.0/21 701 -63.104.200.0/23 701 -63.104.202.0/24 16898 -63.104.203.0/24 701 -63.104.204.0/22 701 -63.104.208.0/21 701 -63.104.216.0/23 701 -63.104.218.0/23 12169 -63.104.220.0/22 701 -63.104.224.0/20 701 -63.104.240.0/23 16952 -63.104.242.0/24 701 -63.104.243.0/24 16952 -63.104.244.0/22 701 -63.104.248.0/21 701 -63.105.0.0/19 701 -63.105.32.0/20 701 -63.105.48.0/23 701 -63.105.50.0/23 16801 -63.105.52.0/22 701 -63.105.56.0/21 701 -63.105.64.0/18 701 -63.105.128.0/18 701 -63.105.192.0/20 9286 -63.105.208.0/20 701 -63.105.224.0/19 701 -63.106.0.0/22 701 -63.106.4.0/23 701 -63.106.6.0/24 22587 -63.106.7.0/24 701 -63.106.8.0/21 701 -63.106.16.0/21 701 -63.106.24.0/22 701 -63.106.28.0/24 701 -63.106.29.0/24 21973 -63.106.30.0/23 701 -63.106.32.0/19 701 -63.106.64.0/21 701 -63.106.72.0/23 701 -63.106.74.0/24 22417 -63.106.75.0/24 701 -63.106.76.0/22 701 -63.106.80.0/20 701 -63.106.96.0/21 701 -63.106.104.0/22 701 -63.106.108.0/23 701 -63.106.110.0/24 62477 -63.106.111.0/24 701 -63.106.112.0/20 701 -63.106.128.0/17 701 -63.107.0.0/21 701 -63.107.8.0/23 701 -63.107.10.0/23 20472 -63.107.12.0/22 701 -63.107.16.0/20 701 -63.107.32.0/19 701 -63.107.64.0/18 701 -63.107.128.0/22 701 -63.107.132.0/23 701 -63.107.134.0/24 701 -63.107.135.0/24 16983 -63.107.136.0/21 701 -63.107.144.0/20 701 -63.107.160.0/19 701 -63.107.192.0/18 701 -63.108.0.0/17 701 -63.108.128.0/21 701 -63.108.136.0/23 19176 -63.108.138.0/24 19176 -63.108.139.0/24 701 -63.108.140.0/22 701 -63.108.144.0/20 701 -63.108.160.0/19 701 -63.108.192.0/18 701 -63.109.0.0/19 701 -63.109.32.0/22 701 -63.109.36.0/23 701 -63.109.38.0/24 20472 -63.109.39.0/24 701 -63.109.40.0/22 701 -63.109.44.0/23 20472 -63.109.46.0/23 701 -63.109.48.0/20 701 -63.109.64.0/18 701 -63.109.128.0/18 701 -63.109.192.0/20 701 -63.109.208.0/21 701 -63.109.216.0/22 701 -63.109.220.0/23 701 -63.109.222.0/24 46773 -63.109.223.0/24 701 -63.109.224.0/19 701 -63.110.0.0/21 701 -63.110.8.0/23 701 -63.110.10.0/24 46601 -63.110.11.0/24 701 -63.110.12.0/22 701 -63.110.16.0/21 701 -63.110.24.0/22 701 -63.110.28.0/23 36451 -63.110.30.0/23 701 -63.110.32.0/23 701 -63.110.34.0/24 701 -63.110.35.0/24 31892 -63.110.36.0/24 31892 -63.110.37.0/24 701 -63.110.38.0/23 701 -63.110.40.0/21 701 -63.110.48.0/20 701 -63.110.64.0/24 22610 -63.110.65.0/24 701 -63.110.66.0/23 701 -63.110.68.0/22 701 -63.110.72.0/21 701 -63.110.80.0/20 701 -63.110.96.0/24 26959 -63.110.97.0/24 701 -63.110.98.0/23 701 -63.110.100.0/23 701 -63.110.102.0/23 1661 -63.110.104.0/21 701 -63.110.112.0/21 701 -63.110.120.0/22 28502 -63.110.124.0/22 701 -63.110.128.0/19 701 -63.110.160.0/21 15227 -63.110.168.0/24 46601 -63.110.169.0/24 701 -63.110.170.0/23 701 -63.110.172.0/22 701 -63.110.176.0/24 701 -63.110.177.0/24 30276 -63.110.178.0/23 701 -63.110.180.0/22 701 -63.110.184.0/22 701 -63.110.188.0/22 28502 -63.110.192.0/21 705 -63.110.200.0/22 705 -63.110.204.0/23 705 -63.110.206.0/23 701 -63.110.208.0/22 705 -63.110.212.0/23 705 -63.110.214.0/24 701 -63.110.215.0/24 705 -63.110.216.0/21 705 -63.110.224.0/22 701 -63.110.228.0/23 701 -63.110.230.0/24 701 -63.110.231.0/24 395098 -63.110.232.0/21 701 -63.110.240.0/24 701 -63.110.241.0/24 11895 -63.110.242.0/23 701 -63.110.244.0/23 701 -63.110.246.0/24 22610 -63.110.247.0/24 701 -63.110.248.0/21 701 -63.111.0.0/20 11486 -63.111.16.0/22 11486 -63.111.20.0/24 11486 -63.111.21.0/24 36842 -63.111.22.0/23 11486 -63.111.24.0/21 11486 -63.111.32.0/19 11486 -63.111.64.0/24 11539 -63.111.65.0/24 11486 -63.111.66.0/23 11486 -63.111.68.0/22 11486 -63.111.72.0/22 11486 -63.111.76.0/23 11486 -63.111.78.0/23 46372 -63.111.80.0/20 11486 -63.111.96.0/20 701 -63.111.112.0/23 11486 -63.111.114.0/24 11486 -63.111.115.0/24 394322 -63.111.116.0/22 11486 -63.111.120.0/21 701 -63.111.128.0/19 701 -63.111.160.0/23 701 -63.111.162.0/24 701 -63.111.163.0/24 393361 -63.111.164.0/22 701 -63.111.168.0/21 701 -63.111.176.0/21 701 -63.111.184.0/23 17088 -63.111.186.0/23 701 -63.111.188.0/22 701 -63.111.192.0/18 701 -63.112.0.0/17 701 -63.112.128.0/20 701 -63.112.144.0/21 701 -63.112.152.0/24 17373 -63.112.153.0/24 701 -63.112.154.0/23 701 -63.112.156.0/22 701 -63.112.160.0/19 701 -63.112.192.0/19 701 -63.112.224.0/20 701 -63.112.240.0/21 701 -63.112.248.0/24 701 -63.112.249.0/24 13782 -63.112.250.0/23 701 -63.112.252.0/22 701 -63.113.0.0/17 701 -63.113.128.0/18 701 -63.113.192.0/20 701 -63.113.208.0/23 701 -63.113.210.0/24 701 -63.113.211.0/24 19627 -63.113.212.0/22 701 -63.113.216.0/21 701 -63.113.224.0/19 701 -63.114.0.0/24 16558 -63.114.1.0/24 701 -63.114.2.0/23 701 -63.114.4.0/22 701 -63.114.8.0/21 701 -63.114.16.0/20 701 -63.114.32.0/19 701 -63.114.64.0/19 701 -63.114.96.0/21 701 -63.114.104.0/22 701 -63.114.108.0/24 11847 -63.114.109.0/24 701 -63.114.110.0/23 701 -63.114.112.0/20 701 -63.114.128.0/20 701 -63.114.144.0/23 701 -63.114.146.0/24 19271 -63.114.147.0/24 701 -63.114.148.0/23 701 -63.114.150.0/23 17305 -63.114.152.0/21 701 -63.114.160.0/19 701 -63.114.192.0/23 701 -63.114.194.0/24 701 -63.114.195.0/24 17406 -63.114.196.0/22 701 -63.114.200.0/21 701 -63.114.208.0/20 701 -63.114.224.0/19 701 -63.115.0.0/20 3855 -63.115.16.0/20 701 -63.115.32.0/21 701 -63.115.40.0/22 701 -63.115.44.0/23 32373 -63.115.46.0/23 701 -63.115.48.0/23 701 -63.115.50.0/24 18728 -63.115.51.0/24 701 -63.115.52.0/22 701 -63.115.56.0/21 701 -63.115.64.0/22 701 -63.115.68.0/23 17155 -63.115.70.0/24 32926 -63.115.71.0/24 701 -63.115.72.0/23 701 -63.115.74.0/23 17155 -63.115.76.0/22 701 -63.115.80.0/20 701 -63.115.96.0/20 701 -63.115.112.0/23 701 -63.115.114.0/24 701 -63.115.115.0/24 21869 -63.115.116.0/22 701 -63.115.120.0/21 701 -63.115.128.0/24 701 -63.115.129.0/24 7029 -63.115.130.0/23 701 -63.115.132.0/22 701 -63.115.136.0/23 701 -63.115.138.0/23 26341 -63.115.140.0/22 12169 -63.115.144.0/20 701 -63.115.160.0/19 701 -63.115.192.0/18 701 -63.116.0.0/21 701 -63.116.8.0/24 701 -63.116.9.0/24 8173 -63.116.10.0/23 701 -63.116.12.0/22 26097 -63.116.16.0/22 701 -63.116.20.0/23 701 -63.116.22.0/24 40118 -63.116.23.0/24 701 -63.116.24.0/24 701 -63.116.25.0/24 22575 -63.116.26.0/23 701 -63.116.28.0/22 16983 -63.116.32.0/20 701 -63.116.48.0/23 701 -63.116.50.0/24 26417 -63.116.51.0/24 701 -63.116.52.0/22 701 -63.116.56.0/22 701 -63.116.60.0/24 46824 -63.116.61.0/24 701 -63.116.62.0/24 46548 -63.116.63.0/24 46442 -63.116.64.0/21 701 -63.116.72.0/23 701 -63.116.74.0/23 17056 -63.116.76.0/24 701 -63.116.77.0/24 395753 -63.116.78.0/23 133010 -63.116.80.0/24 701 -63.116.81.0/24 46765 -63.116.82.0/24 53393 -63.116.83.0/24 33141 -63.116.84.0/24 701 -63.116.85.0/24 23500 -63.116.86.0/23 701 -63.116.88.0/21 701 -63.116.96.0/22 701 -63.116.100.0/24 701 -63.116.101.0/24 19670 -63.116.102.0/24 46767 -63.116.103.0/24 701 -63.116.104.0/23 18746 -63.116.106.0/23 701 -63.116.108.0/22 701 -63.116.112.0/21 701 -63.116.120.0/23 63374 -63.116.122.0/24 63374 -63.116.123.0/24 701 -63.116.124.0/23 701 -63.116.126.0/24 701 -63.116.127.0/24 33054 -63.116.128.0/23 701 -63.116.130.0/23 22575 -63.116.132.0/22 701 -63.116.136.0/21 701 -63.116.144.0/23 701 -63.116.146.0/24 701 -63.116.147.0/24 23402 -63.116.148.0/22 701 -63.116.152.0/23 701 -63.116.154.0/24 701 -63.116.155.0/24 27424 -63.116.156.0/23 701 -63.116.158.0/24 54589 -63.116.159.0/24 701 -63.116.160.0/21 701 -63.116.168.0/23 701 -63.116.170.0/24 397109 -63.116.171.0/24 701 -63.116.172.0/22 701 -63.116.176.0/22 701 -63.116.180.0/24 701 -63.116.181.0/24 13508 -63.116.182.0/23 701 -63.116.184.0/22 701 -63.116.188.0/23 701 -63.116.190.0/24 701 -63.116.191.0/24 33366 -63.116.192.0/22 701 -63.116.196.0/23 701 -63.116.198.0/23 25936 -63.116.200.0/24 701 -63.116.201.0/24 40527 -63.116.202.0/23 701 -63.116.204.0/22 701 -63.116.208.0/23 701 -63.116.210.0/24 701 -63.116.211.0/24 54698 -63.116.212.0/23 18692 -63.116.214.0/23 701 -63.116.216.0/21 701 -63.116.224.0/24 701 -63.116.225.0/24 26535 -63.116.226.0/24 33378 -63.116.227.0/24 701 -63.116.228.0/24 395284 -63.116.229.0/24 14021 -63.116.230.0/23 701 -63.116.232.0/23 701 -63.116.234.0/24 21606 -63.116.235.0/24 701 -63.116.236.0/23 701 -63.116.238.0/24 20475 -63.116.239.0/24 701 -63.116.240.0/23 701 -63.116.242.0/24 701 -63.116.243.0/24 396392 -63.116.244.0/23 701 -63.116.246.0/24 395414 -63.116.247.0/24 4451 -63.116.248.0/22 701 -63.116.252.0/24 701 -63.116.253.0/24 12120 -63.116.254.0/24 701 -63.116.255.0/24 30441 -63.117.0.0/23 701 -63.117.2.0/24 33199 -63.117.3.0/24 701 -63.117.4.0/22 701 -63.117.8.0/23 18692 -63.117.10.0/23 701 -63.117.12.0/22 701 -63.117.16.0/20 701 -63.117.32.0/20 701 -63.117.48.0/24 701 -63.117.49.0/24 27311 -63.117.50.0/23 701 -63.117.52.0/22 701 -63.117.56.0/21 14717 -63.117.64.0/24 55218 -63.117.65.0/24 701 -63.117.66.0/23 701 -63.117.68.0/22 701 -63.117.72.0/22 701 -63.117.76.0/23 701 -63.117.78.0/24 701 -63.117.79.0/24 174 -63.117.80.0/20 701 -63.117.96.0/23 701 -63.117.98.0/24 16983 -63.117.99.0/24 701 -63.117.100.0/22 701 -63.117.104.0/24 701 -63.117.105.0/24 11760 -63.117.106.0/24 701 -63.117.107.0/24 27481 -63.117.108.0/22 701 -63.117.112.0/20 701 -63.117.128.0/19 701 -63.117.160.0/22 701 -63.117.164.0/23 701 -63.117.166.0/24 701 -63.117.167.0/24 14218 -63.117.168.0/23 701 -63.117.170.0/24 701 -63.117.171.0/24 1419 -63.117.172.0/23 701 -63.117.174.0/24 701 -63.117.175.0/24 40025 -63.117.176.0/21 701 -63.117.184.0/22 701 -63.117.188.0/24 31840 -63.117.189.0/24 701 -63.117.190.0/23 701 -63.117.192.0/21 701 -63.117.200.0/24 701 -63.117.201.0/24 20287 -63.117.202.0/24 33378 -63.117.203.0/24 701 -63.117.204.0/24 33620 -63.117.205.0/24 701 -63.117.206.0/23 701 -63.117.208.0/21 701 -63.117.216.0/23 701 -63.117.218.0/24 22794 -63.117.219.0/24 701 -63.117.220.0/22 701 -63.117.224.0/22 701 -63.117.228.0/24 701 -63.117.229.0/24 3707 -63.117.230.0/23 701 -63.117.232.0/23 701 -63.117.234.0/24 54151 -63.117.235.0/24 701 -63.117.236.0/22 701 -63.117.240.0/20 701 -63.118.0.0/23 1661 -63.118.2.0/23 701 -63.118.4.0/22 701 -63.118.8.0/21 701 -63.118.16.0/21 701 -63.118.24.0/22 701 -63.118.28.0/23 701 -63.118.30.0/24 701 -63.118.31.0/24 19140 -63.118.32.0/20 701 -63.118.48.0/21 701 -63.118.56.0/22 701 -63.118.60.0/24 396067 -63.118.61.0/24 701 -63.118.62.0/23 701 -63.118.64.0/21 701 -63.118.72.0/23 701 -63.118.74.0/24 46424 -63.118.75.0/24 701 -63.118.76.0/24 701 -63.118.77.0/24 393463 -63.118.78.0/24 701 -63.118.79.0/24 18684 -63.118.80.0/24 701 -63.118.81.0/24 19587 -63.118.82.0/23 701 -63.118.84.0/23 701 -63.118.86.0/24 701 -63.118.87.0/24 13888 -63.118.88.0/23 701 -63.118.90.0/23 1661 -63.118.92.0/23 701 -63.118.94.0/24 36336 -63.118.95.0/24 701 -63.118.96.0/19 701 -63.118.128.0/23 701 -63.118.130.0/24 701 -63.118.131.0/24 30593 -63.118.132.0/22 701 -63.118.136.0/21 701 -63.118.144.0/21 701 -63.118.152.0/23 20472 -63.118.154.0/23 701 -63.118.156.0/22 701 -63.118.160.0/23 26455 -63.118.162.0/24 701 -63.118.163.0/24 7170 -63.118.164.0/22 701 -63.118.168.0/22 701 -63.118.172.0/23 701 -63.118.174.0/24 32467 -63.118.175.0/24 19670 -63.118.176.0/20 701 -63.118.192.0/21 701 -63.118.200.0/22 701 -63.118.204.0/23 701 -63.118.206.0/24 22553 -63.118.207.0/24 701 -63.118.208.0/20 701 -63.118.224.0/22 701 -63.118.228.0/23 701 -63.118.230.0/24 21975 -63.118.231.0/24 701 -63.118.232.0/21 701 -63.118.240.0/20 701 -63.119.0.0/20 701 -63.119.16.0/22 701 -63.119.20.0/24 19328 -63.119.21.0/24 705 -63.119.22.0/23 701 -63.119.24.0/23 701 -63.119.26.0/24 26306 -63.119.27.0/24 701 -63.119.28.0/22 701 -63.119.32.0/22 701 -63.119.36.0/23 701 -63.119.38.0/23 6620 -63.119.40.0/21 701 -63.119.48.0/20 701 -63.119.64.0/20 701 -63.119.80.0/24 701 -63.119.81.0/24 22664 -63.119.82.0/24 53720 -63.119.83.0/24 701 -63.119.84.0/22 701 -63.119.88.0/21 701 -63.119.96.0/21 701 -63.119.104.0/22 701 -63.119.108.0/24 701 -63.119.109.0/24 63137 -63.119.110.0/23 701 -63.119.112.0/24 701 -63.119.113.0/24 395538 -63.119.114.0/23 701 -63.119.116.0/22 701 -63.119.120.0/21 701 -63.119.128.0/20 701 -63.119.144.0/24 18790 -63.119.145.0/24 701 -63.119.146.0/23 701 -63.119.148.0/22 701 -63.119.152.0/21 701 -63.119.160.0/22 701 -63.119.164.0/24 11713 -63.119.165.0/24 701 -63.119.166.0/23 701 -63.119.168.0/21 701 -63.119.176.0/24 701 -63.119.177.0/24 705 -63.119.178.0/23 701 -63.119.180.0/22 701 -63.119.184.0/21 701 -63.119.192.0/21 701 -63.119.200.0/23 701 -63.119.202.0/24 701 -63.119.203.0/24 54100 -63.119.204.0/22 701 -63.119.208.0/21 701 -63.119.216.0/24 395319 -63.119.217.0/24 701 -63.119.218.0/23 701 -63.119.220.0/23 701 -63.119.222.0/24 15277 -63.119.223.0/24 701 -63.119.224.0/21 701 -63.119.232.0/22 701 -63.119.236.0/24 46983 -63.119.237.0/24 701 -63.119.238.0/23 701 -63.119.240.0/21 701 -63.119.248.0/23 701 -63.119.250.0/24 174 -63.119.251.0/24 701 -63.119.252.0/22 701 -63.120.0.0/18 701 -63.120.64.0/19 701 -63.120.96.0/20 701 -63.120.112.0/21 701 -63.120.120.0/22 701 -63.120.124.0/23 701 -63.120.126.0/24 701 -63.120.127.0/24 31877 -63.120.128.0/20 701 -63.120.144.0/21 701 -63.120.152.0/23 701 -63.120.154.0/24 10453 -63.120.155.0/24 701 -63.120.156.0/22 701 -63.120.160.0/19 701 -63.120.192.0/18 701 -63.121.0.0/20 701 -63.121.16.0/21 701 -63.121.24.0/22 701 -63.121.28.0/22 10694 -63.121.32.0/20 701 -63.121.48.0/21 701 -63.121.56.0/22 701 -63.121.60.0/23 701 -63.121.62.0/24 395074 -63.121.63.0/24 701 -63.121.64.0/21 701 -63.121.72.0/22 701 -63.121.76.0/24 701 -63.121.77.0/24 18842 -63.121.78.0/23 701 -63.121.80.0/20 701 -63.121.96.0/19 701 -63.121.128.0/22 701 -63.121.132.0/23 14717 -63.121.134.0/24 14717 -63.121.135.0/24 701 -63.121.136.0/21 701 -63.121.144.0/20 701 -63.121.160.0/19 701 -63.121.192.0/18 701 -63.122.0.0/18 701 -63.122.64.0/19 701 -63.122.96.0/20 701 -63.122.112.0/21 701 -63.122.120.0/22 701 -63.122.124.0/23 701 -63.122.126.0/23 18829 -63.122.128.0/18 701 -63.122.192.0/20 701 -63.122.208.0/22 701 -63.122.212.0/24 701 -63.122.213.0/24 30390 -63.122.214.0/23 701 -63.122.216.0/21 701 -63.122.224.0/23 701 -63.122.226.0/24 701 -63.122.227.0/24 31961 -63.122.228.0/22 701 -63.122.232.0/21 701 -63.122.240.0/22 701 -63.122.244.0/24 701 -63.122.245.0/24 13923 -63.122.246.0/23 701 -63.122.248.0/21 701 -63.123.0.0/19 701 -63.123.32.0/19 11486 -63.123.64.0/20 11486 -63.123.80.0/21 33482 -63.123.88.0/21 11486 -63.123.96.0/19 701 -63.123.128.0/22 11486 -63.123.132.0/24 11486 -63.123.133.0/24 7046 -63.123.134.0/24 11486 -63.123.135.0/24 7046 -63.123.136.0/21 11486 -63.123.144.0/24 11486 -63.123.145.0/24 7046 -63.123.146.0/23 11486 -63.123.148.0/23 11486 -63.123.150.0/24 11486 -63.123.151.0/24 7046 -63.123.152.0/21 11486 -63.123.160.0/21 705 -63.123.168.0/23 705 -63.123.170.0/24 705 -63.123.171.0/24 701 -63.123.172.0/22 705 -63.123.176.0/24 701 -63.123.177.0/24 705 -63.123.178.0/23 705 -63.123.180.0/23 705 -63.123.182.0/24 701 -63.123.183.0/24 705 -63.123.184.0/24 705 -63.123.185.0/24 701 -63.123.186.0/23 701 -63.123.188.0/22 701 -63.123.192.0/19 701 -63.123.224.0/20 11486 -63.123.240.0/23 7046 -63.123.242.0/23 11486 -63.123.244.0/22 11486 -63.123.248.0/21 11486 -63.124.0.0/24 701 -63.124.1.0/24 22314 -63.124.2.0/23 1699 -63.124.4.0/24 701 -63.124.5.0/24 1699 -63.124.6.0/23 1699 -63.124.8.0/22 701 -63.124.12.0/23 701 -63.124.14.0/24 1699 -63.124.15.0/24 701 -63.124.16.0/22 701 -63.124.20.0/23 1699 -63.124.22.0/24 1699 -63.124.23.0/24 701 -63.124.24.0/21 701 -63.124.32.0/19 701 -63.124.64.0/21 701 -63.124.72.0/22 701 -63.124.76.0/23 701 -63.124.78.0/23 6619 -63.124.80.0/20 701 -63.124.96.0/19 701 -63.124.128.0/21 701 -63.124.136.0/23 701 -63.124.138.0/24 19103 -63.124.139.0/24 701 -63.124.140.0/23 12087 -63.124.142.0/24 701 -63.124.143.0/24 12087 -63.124.144.0/20 701 -63.124.160.0/19 701 -63.124.192.0/18 701 -63.125.0.0/21 701 -63.125.8.0/22 701 -63.125.12.0/24 701 -63.125.13.0/24 20287 -63.125.14.0/23 701 -63.125.16.0/20 701 -63.125.32.0/19 701 -63.125.64.0/18 701 -63.125.128.0/19 701 -63.125.160.0/20 701 -63.125.176.0/23 701 -63.125.178.0/24 701 -63.125.179.0/24 22204 -63.125.180.0/22 701 -63.125.184.0/21 701 -63.125.192.0/18 701 -63.126.0.0/20 701 -63.126.16.0/21 701 -63.126.24.0/24 701 -63.126.25.0/24 1689 -63.126.26.0/23 701 -63.126.28.0/22 701 -63.126.32.0/22 701 -63.126.36.0/22 20397 -63.126.40.0/21 701 -63.126.48.0/20 701 -63.126.64.0/21 701 -63.126.72.0/24 19783 -63.126.73.0/24 701 -63.126.74.0/23 701 -63.126.76.0/22 701 -63.126.80.0/20 701 -63.126.96.0/19 701 -63.126.128.0/21 701 -63.126.136.0/23 701 -63.126.138.0/23 20472 -63.126.140.0/22 701 -63.126.144.0/20 701 -63.126.160.0/20 701 -63.126.176.0/21 701 -63.126.184.0/23 701 -63.126.186.0/24 701 -63.126.187.0/24 22762 -63.126.188.0/22 701 -63.126.192.0/20 701 -63.126.208.0/21 15227 -63.126.216.0/21 701 -63.126.224.0/19 701 -63.127.0.0/21 701 -63.127.8.0/23 701 -63.127.10.0/23 18606 -63.127.12.0/22 701 -63.127.16.0/22 701 -63.127.20.0/24 33259 -63.127.21.0/24 701 -63.127.22.0/23 701 -63.127.24.0/21 701 -63.127.32.0/19 701 -63.127.64.0/20 701 -63.127.80.0/21 10333 -63.127.88.0/21 701 -63.127.96.0/19 701 -63.127.128.0/19 701 -63.127.160.0/22 19176 -63.127.164.0/22 701 -63.127.168.0/21 19176 -63.127.176.0/21 701 -63.127.184.0/22 701 -63.127.188.0/23 7011 -63.127.190.0/23 701 -63.127.192.0/21 21547 -63.127.200.0/21 701 -63.127.208.0/20 701 -63.127.224.0/19 3614 -63.128.0.0/20 3561 -63.128.16.0/22 3561 -63.128.20.0/24 3561 -63.128.21.0/24 30031 -63.128.22.0/23 3561 -63.128.24.0/21 3561 -63.128.32.0/23 3561 -63.128.34.0/23 46263 -63.128.36.0/22 3561 -63.128.40.0/21 3561 -63.128.48.0/20 3561 -63.128.64.0/20 3561 -63.128.80.0/22 3561 -63.128.84.0/23 3561 -63.128.86.0/24 3561 -63.128.87.0/24 209 -63.128.88.0/21 3561 -63.128.96.0/22 3561 -63.128.100.0/23 3561 -63.128.102.0/23 26584 -63.128.104.0/21 3561 -63.128.112.0/20 3561 -63.128.128.0/23 3561 -63.128.130.0/24 22013 -63.128.131.0/24 3561 -63.128.132.0/22 3561 -63.128.136.0/22 3561 -63.128.140.0/23 3561 -63.128.142.0/24 19701 -63.128.143.0/24 3561 -63.128.144.0/20 3561 -63.128.160.0/21 3561 -63.128.168.0/23 3561 -63.128.170.0/24 22013 -63.128.171.0/24 3561 -63.128.172.0/22 3561 -63.128.176.0/20 3561 -63.128.192.0/18 3561 -63.129.0.0/16 3561 -63.130.0.0/18 1273 -63.130.64.0/21 1273 -63.130.72.0/22 1273 -63.130.76.0/24 1273 -63.130.77.0/24 20940 -63.130.78.0/23 1273 -63.130.80.0/23 1273 -63.130.82.0/24 4445 -63.130.83.0/24 1273 -63.130.84.0/22 1273 -63.130.88.0/21 1273 -63.130.96.0/20 4445 -63.130.112.0/20 1273 -63.130.128.0/19 1273 -63.130.160.0/20 1273 -63.130.176.0/22 1273 -63.130.180.0/23 1273 -63.130.182.0/23 22933 -63.130.184.0/21 1273 -63.130.192.0/19 1273 -63.130.224.0/20 1273 -63.130.240.0/21 1273 -63.130.248.0/24 1273 -63.130.249.0/24 22933 -63.130.250.0/23 1273 -63.130.252.0/22 1273 -63.131.0.0/17 7029 -63.131.128.0/20 14492 -63.131.144.0/20 22205 -63.131.160.0/20 14140 -63.131.176.0/20 26794 -63.131.192.0/19 26133 -63.131.224.0/20 30340 -63.131.240.0/22 40414 -63.131.244.0/23 40414 -63.131.246.0/23 46868 -63.131.248.0/21 40414 -63.133.128.0/21 18990 -63.133.136.0/24 18990 -63.133.137.0/24 3257 -63.133.138.0/23 18990 -63.133.140.0/23 20077 -63.133.142.0/23 18990 -63.133.144.0/20 20077 -63.133.160.0/24 18990 -63.133.161.0/24 20077 -63.133.162.0/23 20077 -63.133.164.0/23 27596 -63.133.166.0/23 20077 -63.133.168.0/21 20077 -63.133.176.0/20 20077 -63.133.192.0/21 20077 -63.133.200.0/22 20077 -63.133.204.0/23 3257 -63.133.206.0/24 20077 -63.133.207.0/24 3257 -63.133.208.0/22 46508 -63.133.224.0/20 3580 -63.134.0.0/17 1239 -63.134.128.0/18 32709 -63.134.192.0/18 14992 -63.135.0.0/19 23184 -63.135.32.0/20 10430 -63.135.48.0/20 13370 -63.135.64.0/20 13645 -63.135.80.0/20 33739 -63.135.96.0/19 14992 -63.135.128.0/19 3663 -63.135.160.0/22 13703 -63.135.164.0/23 13703 -63.135.166.0/24 395336 -63.135.167.0/24 13703 -63.135.168.0/23 13703 -63.135.170.0/24 395336 -63.135.171.0/24 13703 -63.135.172.0/23 13703 -63.135.174.0/23 22626 -63.135.176.0/20 19331 -63.135.192.0/19 7385 -63.135.224.0/20 22549 -63.135.240.0/20 10396 -63.136.0.0/18 3561 -63.136.64.0/19 3561 -63.136.96.0/23 3561 -63.136.98.0/24 20240 -63.136.99.0/24 3561 -63.136.100.0/22 3561 -63.136.104.0/21 3561 -63.136.112.0/21 6639 -63.136.120.0/21 3561 -63.136.128.0/18 3561 -63.136.192.0/22 3561 -63.136.196.0/23 3561 -63.136.198.0/23 209 -63.136.200.0/21 3561 -63.136.208.0/20 3561 -63.136.224.0/19 3561 -63.137.0.0/19 3561 -63.137.32.0/22 3561 -63.137.36.0/24 3561 -63.137.37.0/24 27447 -63.137.38.0/23 3561 -63.137.40.0/21 3561 -63.137.48.0/20 3561 -63.137.64.0/21 3561 -63.137.72.0/24 3561 -63.137.73.0/24 19367 -63.137.74.0/23 3561 -63.137.76.0/23 3561 -63.137.78.0/24 3561 -63.137.79.0/24 394928 -63.137.80.0/20 3561 -63.137.96.0/19 3561 -63.137.128.0/19 3561 -63.137.160.0/20 3561 -63.137.176.0/22 3561 -63.137.180.0/24 397464 -63.137.181.0/24 3561 -63.137.182.0/23 3561 -63.137.184.0/21 3561 -63.137.192.0/19 3561 -63.137.224.0/22 3561 -63.137.228.0/24 3561 -63.137.229.0/24 40934 -63.137.230.0/23 3561 -63.137.232.0/21 3561 -63.137.240.0/20 3561 -63.138.0.0/19 7029 -63.138.32.0/20 7029 -63.138.48.0/23 7029 -63.138.50.0/23 40399 -63.138.52.0/22 7029 -63.138.56.0/21 7029 -63.138.64.0/20 7029 -63.138.80.0/21 7029 -63.138.88.0/22 7029 -63.138.92.0/23 7029 -63.138.94.0/24 19389 -63.138.95.0/24 7029 -63.138.96.0/21 7029 -63.138.104.0/22 7029 -63.138.108.0/23 40399 -63.138.110.0/24 7029 -63.138.111.0/24 40399 -63.138.112.0/20 7029 -63.138.128.0/19 7029 -63.138.160.0/21 7029 -63.138.168.0/24 36314 -63.138.169.0/24 7029 -63.138.170.0/24 7029 -63.138.171.0/24 32679 -63.138.172.0/22 7029 -63.138.176.0/20 7029 -63.138.192.0/19 7029 -63.138.224.0/22 7029 -63.138.228.0/24 10584 -63.138.229.0/24 7029 -63.138.230.0/23 7029 -63.138.232.0/21 7029 -63.138.240.0/20 7029 -63.139.0.0/18 7029 -63.139.64.0/20 7029 -63.139.80.0/22 7029 -63.139.84.0/24 53286 -63.139.85.0/24 7029 -63.139.86.0/23 7029 -63.139.88.0/21 7029 -63.139.96.0/21 7029 -63.139.104.0/22 7029 -63.139.108.0/23 7029 -63.139.110.0/23 40399 -63.139.112.0/20 7029 -63.139.128.0/18 7029 -63.139.192.0/22 7029 -63.139.196.0/24 40114 -63.139.197.0/24 7029 -63.139.198.0/23 7029 -63.139.200.0/21 7029 -63.139.208.0/20 7029 -63.139.224.0/19 7029 -63.140.0.0/24 4134 -63.140.1.0/24 63527 -63.140.2.0/24 63527 -63.140.3.0/24 4809 -63.140.4.0/22 4809 -63.140.8.0/23 4809 -63.140.13.0/24 4809 -63.140.16.0/20 25764 -63.140.40.0/21 15224 -63.140.48.0/22 15224 -63.140.52.0/24 15224 -63.140.56.0/21 15224 -63.140.64.0/18 7782 -63.140.128.0/17 14654 -63.141.0.0/20 32809 -63.141.16.0/20 62658 -63.141.32.0/23 64200 -63.141.38.0/24 395240 -63.141.39.0/24 16565 -63.141.40.0/22 394205 -63.141.48.0/24 32780 -63.141.49.0/24 46562 -63.141.50.0/24 46562 -63.141.51.0/24 25956 -63.141.52.0/22 64200 -63.141.56.0/24 64200 -63.141.57.0/24 20016 -63.141.58.0/24 46562 -63.141.59.0/24 30337 -63.141.60.0/24 36131 -63.141.61.0/24 44066 -63.141.62.0/24 30633 -63.141.63.0/24 20016 -63.141.64.0/18 11979 -63.141.128.0/19 36351 -63.141.160.0/23 18434 -63.141.192.0/21 3257 -63.141.200.0/22 3257 -63.141.204.0/24 3257 -63.141.205.0/24 27876 -63.141.206.0/23 3257 -63.141.208.0/22 3257 -63.141.212.0/23 3257 -63.141.214.0/23 62804 -63.141.216.0/22 3257 -63.141.220.0/23 3257 -63.141.222.0/24 18779 -63.141.223.0/24 3257 -63.141.224.0/19 33387 -63.142.0.0/20 48582 -63.142.16.0/20 6128 -63.142.32.0/19 30036 -63.142.64.0/22 18812 -63.142.68.0/23 18812 -63.142.70.0/24 18812 -63.142.71.0/24 11492 -63.142.72.0/23 11492 -63.142.74.0/24 11492 -63.142.75.0/24 18812 -63.142.76.0/23 11492 -63.142.78.0/24 11492 -63.142.79.0/24 18812 -63.142.80.0/23 11492 -63.142.82.0/23 10796 -63.142.84.0/23 10796 -63.142.86.0/23 11492 -63.142.88.0/23 11492 -63.142.90.0/23 18812 -63.142.92.0/22 11492 -63.142.96.0/23 18812 -63.142.98.0/23 10796 -63.142.100.0/23 10796 -63.142.102.0/24 10796 -63.142.103.0/24 18812 -63.142.104.0/22 18812 -63.142.108.0/23 11492 -63.142.110.0/23 18812 -63.142.112.0/20 18812 -63.142.128.0/20 14430 -63.142.144.0/20 11404 -63.142.160.0/20 33554 -63.142.176.0/20 16904 -63.142.192.0/21 22608 -63.142.200.0/23 22608 -63.142.202.0/24 22608 -63.142.204.0/22 22608 -63.142.208.0/20 13370 -63.142.224.0/20 11397 -63.142.240.0/22 8100 -63.142.244.0/22 33182 -63.142.248.0/23 8100 -63.142.250.0/23 394727 -63.142.252.0/22 394727 -63.143.0.0/20 13480 -63.143.16.0/20 13728 -63.143.32.0/19 46475 -63.143.64.0/21 33576 -63.143.72.0/22 33576 -63.143.76.0/24 35900 -63.143.77.0/24 33576 -63.143.78.0/24 33576 -63.143.79.0/24 396357 -63.143.80.0/20 33576 -63.143.96.0/22 33576 -63.143.100.0/23 33576 -63.143.102.0/24 33576 -63.143.103.0/24 396357 -63.143.104.0/21 33576 -63.143.112.0/20 33576 -63.143.128.0/17 6128 -63.144.0.0/18 209 -63.144.64.0/19 209 -63.144.96.0/21 209 -63.144.104.0/22 209 -63.144.108.0/23 209 -63.144.110.0/24 209 -63.144.111.0/24 40122 -63.144.112.0/23 209 -63.144.114.0/24 209 -63.144.115.0/24 27202 -63.144.116.0/24 36271 -63.144.117.0/24 209 -63.144.118.0/23 209 -63.144.120.0/24 33265 -63.144.121.0/24 209 -63.144.122.0/23 209 -63.144.124.0/22 209 -63.144.128.0/20 209 -63.144.144.0/21 209 -63.144.152.0/24 393795 -63.144.153.0/24 209 -63.144.154.0/23 209 -63.144.156.0/22 209 -63.144.160.0/21 209 -63.144.168.0/24 209 -63.144.169.0/24 397490 -63.144.170.0/23 209 -63.144.172.0/22 209 -63.144.176.0/20 209 -63.144.192.0/20 209 -63.144.208.0/21 209 -63.144.216.0/23 209 -63.144.218.0/24 22587 -63.144.219.0/24 209 -63.144.220.0/22 209 -63.144.224.0/20 209 -63.144.240.0/24 13984 -63.144.241.0/24 209 -63.144.242.0/23 209 -63.144.244.0/22 209 -63.144.248.0/21 209 -63.145.0.0/23 209 -63.145.2.0/24 209 -63.145.3.0/24 395190 -63.145.4.0/22 209 -63.145.8.0/21 209 -63.145.16.0/20 209 -63.145.32.0/19 209 -63.145.64.0/19 209 -63.145.96.0/22 209 -63.145.100.0/23 209 -63.145.102.0/23 26959 -63.145.104.0/22 209 -63.145.108.0/23 209 -63.145.110.0/24 209 -63.145.111.0/24 397345 -63.145.112.0/22 209 -63.145.116.0/24 209 -63.145.117.0/24 54244 -63.145.118.0/23 209 -63.145.120.0/21 209 -63.145.128.0/21 209 -63.145.136.0/22 209 -63.145.140.0/23 209 -63.145.142.0/24 30278 -63.145.143.0/24 209 -63.145.144.0/21 209 -63.145.152.0/23 30363 -63.145.154.0/24 209 -63.145.155.0/24 22742 -63.145.156.0/22 209 -63.145.160.0/19 209 -63.145.192.0/22 209 -63.145.196.0/23 209 -63.145.198.0/24 209 -63.145.199.0/24 16901 -63.145.200.0/21 209 -63.145.208.0/21 209 -63.145.216.0/22 209 -63.145.220.0/23 209 -63.145.222.0/24 209 -63.145.223.0/24 19087 -63.145.224.0/19 209 -63.146.0.0/21 209 -63.146.8.0/23 209 -63.146.10.0/24 16930 -63.146.11.0/24 209 -63.146.12.0/22 209 -63.146.16.0/21 209 -63.146.24.0/22 209 -63.146.28.0/23 209 -63.146.30.0/24 39965 -63.146.31.0/24 209 -63.146.32.0/19 209 -63.146.64.0/23 209 -63.146.66.0/24 209 -63.146.67.0/24 40171 -63.146.68.0/22 209 -63.146.72.0/24 209 -63.146.73.0/24 11261 -63.146.74.0/23 209 -63.146.76.0/22 209 -63.146.80.0/23 209 -63.146.82.0/24 209 -63.146.83.0/24 30334 -63.146.84.0/22 209 -63.146.88.0/21 209 -63.146.96.0/24 53316 -63.146.97.0/24 209 -63.146.98.0/24 26058 -63.146.99.0/24 209 -63.146.100.0/22 209 -63.146.104.0/21 209 -63.146.112.0/20 209 -63.146.128.0/18 209 -63.146.192.0/19 209 -63.146.224.0/20 209 -63.146.240.0/22 209 -63.146.244.0/24 21963 -63.146.245.0/24 209 -63.146.246.0/23 209 -63.146.248.0/21 209 -63.147.0.0/23 209 -63.147.2.0/24 209 -63.147.3.0/24 40067 -63.147.4.0/22 209 -63.147.8.0/23 209 -63.147.10.0/24 33032 -63.147.11.0/24 209 -63.147.12.0/22 209 -63.147.16.0/20 209 -63.147.32.0/23 209 -63.147.34.0/24 54208 -63.147.35.0/24 209 -63.147.36.0/22 209 -63.147.40.0/21 209 -63.147.48.0/22 209 -63.147.52.0/24 394815 -63.147.53.0/24 209 -63.147.54.0/23 209 -63.147.56.0/22 209 -63.147.60.0/23 11691 -63.147.62.0/23 209 -63.147.64.0/20 209 -63.147.80.0/22 209 -63.147.84.0/24 209 -63.147.85.0/24 3910 -63.147.86.0/23 209 -63.147.88.0/22 209 -63.147.92.0/22 13994 -63.147.96.0/21 209 -63.147.104.0/22 16858 -63.147.108.0/22 209 -63.147.112.0/20 209 -63.147.128.0/20 209 -63.147.144.0/22 209 -63.147.148.0/23 209 -63.147.150.0/24 39984 -63.147.151.0/24 209 -63.147.152.0/22 209 -63.147.156.0/23 209 -63.147.158.0/24 53323 -63.147.159.0/24 209 -63.147.160.0/19 209 -63.147.192.0/24 63443 -63.147.193.0/24 209 -63.147.194.0/23 209 -63.147.196.0/22 209 -63.147.200.0/22 209 -63.147.204.0/23 209 -63.147.206.0/24 26664 -63.147.207.0/24 209 -63.147.208.0/20 209 -63.147.224.0/19 209 -63.148.0.0/21 209 -63.148.8.0/23 209 -63.148.10.0/24 209 -63.148.11.0/24 20380 -63.148.12.0/22 209 -63.148.16.0/20 209 -63.148.32.0/21 209 -63.148.40.0/22 209 -63.148.44.0/23 209 -63.148.46.0/24 53316 -63.148.47.0/24 209 -63.148.48.0/20 209 -63.148.64.0/20 209 -63.148.80.0/24 209 -63.148.81.0/24 27554 -63.148.82.0/23 209 -63.148.84.0/22 209 -63.148.88.0/21 209 -63.148.96.0/19 209 -63.148.128.0/20 209 -63.148.144.0/23 209 -63.148.146.0/24 13393 -63.148.147.0/24 209 -63.148.148.0/22 209 -63.148.152.0/22 209 -63.148.156.0/24 209 -63.148.157.0/24 26133 -63.148.158.0/23 209 -63.148.160.0/24 209 -63.148.161.0/24 19013 -63.148.162.0/23 209 -63.148.164.0/23 209 -63.148.166.0/24 209 -63.148.167.0/24 11163 -63.148.168.0/21 209 -63.148.176.0/20 209 -63.148.192.0/20 209 -63.148.208.0/24 22310 -63.148.209.0/24 209 -63.148.210.0/23 209 -63.148.212.0/22 209 -63.148.216.0/21 209 -63.148.224.0/21 2828 -63.148.232.0/21 209 -63.148.240.0/21 209 -63.148.248.0/23 209 -63.148.250.0/24 27013 -63.148.251.0/24 397603 -63.148.252.0/22 209 -63.149.0.0/22 209 -63.149.4.0/23 209 -63.149.6.0/24 2560 -63.149.7.0/24 209 -63.149.8.0/21 209 -63.149.16.0/23 209 -63.149.18.0/23 47095 -63.149.20.0/22 209 -63.149.24.0/22 209 -63.149.28.0/24 209 -63.149.29.0/24 32194 -63.149.30.0/23 209 -63.149.32.0/21 209 -63.149.40.0/24 21969 -63.149.41.0/24 209 -63.149.42.0/23 209 -63.149.44.0/22 209 -63.149.48.0/21 209 -63.149.56.0/22 209 -63.149.60.0/23 47095 -63.149.62.0/23 209 -63.149.64.0/20 209 -63.149.80.0/21 209 -63.149.88.0/24 33543 -63.149.89.0/24 209 -63.149.90.0/23 209 -63.149.92.0/22 209 -63.149.96.0/22 209 -63.149.100.0/23 209 -63.149.102.0/24 209 -63.149.103.0/24 4566 -63.149.104.0/21 209 -63.149.112.0/21 209 -63.149.120.0/22 209 -63.149.124.0/24 30380 -63.149.125.0/24 209 -63.149.126.0/23 209 -63.149.128.0/19 209 -63.149.160.0/20 209 -63.149.176.0/22 209 -63.149.180.0/23 209 -63.149.182.0/24 209 -63.149.183.0/24 63333 -63.149.184.0/23 209 -63.149.186.0/24 36838 -63.149.187.0/24 209 -63.149.188.0/24 5777 -63.149.189.0/24 209 -63.149.190.0/23 209 -63.149.192.0/18 209 -63.150.0.0/21 209 -63.150.8.0/22 209 -63.150.12.0/24 20940 -63.150.13.0/24 209 -63.150.14.0/23 209 -63.150.16.0/22 209 -63.150.20.0/24 209 -63.150.21.0/24 19031 -63.150.22.0/23 209 -63.150.24.0/21 209 -63.150.32.0/19 209 -63.150.64.0/21 209 -63.150.72.0/23 209 -63.150.74.0/23 22587 -63.150.76.0/22 209 -63.150.80.0/20 209 -63.150.96.0/19 209 -63.150.128.0/19 209 -63.150.160.0/22 209 -63.150.164.0/24 1447 -63.150.165.0/24 209 -63.150.166.0/23 209 -63.150.168.0/23 209 -63.150.170.0/24 209 -63.150.171.0/24 6653 -63.150.172.0/22 209 -63.150.176.0/21 209 -63.150.184.0/24 209 -63.150.185.0/24 14045 -63.150.186.0/23 209 -63.150.188.0/22 209 -63.150.192.0/20 209 -63.150.208.0/23 209 -63.150.210.0/23 47095 -63.150.212.0/23 209 -63.150.214.0/23 17143 -63.150.216.0/21 209 -63.150.224.0/24 209 -63.150.225.0/24 36659 -63.150.226.0/24 209 -63.150.227.0/24 393806 -63.150.228.0/22 209 -63.150.232.0/21 209 -63.150.240.0/22 209 -63.150.244.0/24 394459 -63.150.245.0/24 209 -63.150.246.0/23 209 -63.150.248.0/21 209 -63.151.0.0/19 209 -63.151.32.0/21 209 -63.151.40.0/23 209 -63.151.42.0/23 21509 -63.151.44.0/22 209 -63.151.48.0/20 209 -63.151.64.0/21 10835 -63.151.72.0/21 209 -63.151.80.0/21 209 -63.151.88.0/23 209 -63.151.90.0/23 31890 -63.151.92.0/22 209 -63.151.96.0/20 209 -63.151.112.0/22 209 -63.151.116.0/23 13781 -63.151.118.0/23 209 -63.151.120.0/21 209 -63.151.128.0/21 209 -63.151.136.0/24 209 -63.151.137.0/24 20940 -63.151.138.0/23 209 -63.151.140.0/24 209 -63.151.141.0/24 47095 -63.151.142.0/23 209 -63.151.144.0/21 209 -63.151.152.0/23 209 -63.151.154.0/24 209 -63.151.155.0/24 33564 -63.151.156.0/22 209 -63.151.160.0/20 209 -63.151.176.0/22 2714 -63.151.180.0/24 21646 -63.151.181.0/24 209 -63.151.182.0/23 209 -63.151.184.0/23 209 -63.151.186.0/24 209 -63.151.187.0/24 17337 -63.151.188.0/22 209 -63.151.192.0/21 209 -63.151.200.0/24 19936 -63.151.201.0/24 209 -63.151.202.0/23 209 -63.151.204.0/22 209 -63.151.208.0/21 209 -63.151.216.0/24 209 -63.151.217.0/24 21934 -63.151.218.0/23 209 -63.151.220.0/22 209 -63.151.224.0/19 209 -63.152.0.0/14 209 -63.156.0.0/24 32996 -63.156.1.0/24 209 -63.156.2.0/23 209 -63.156.4.0/22 209 -63.156.8.0/21 209 -63.156.16.0/20 209 -63.156.32.0/20 209 -63.156.48.0/21 209 -63.156.56.0/23 209 -63.156.58.0/24 32056 -63.156.59.0/24 209 -63.156.60.0/22 209 -63.156.64.0/19 209 -63.156.96.0/21 209 -63.156.104.0/22 209 -63.156.108.0/24 209 -63.156.109.0/24 22230 -63.156.110.0/23 209 -63.156.112.0/20 209 -63.156.128.0/19 209 -63.156.160.0/23 209 -63.156.162.0/24 393860 -63.156.163.0/24 209 -63.156.164.0/24 209 -63.156.165.0/24 21646 -63.156.166.0/23 209 -63.156.168.0/24 20145 -63.156.169.0/24 209 -63.156.170.0/23 209 -63.156.172.0/22 209 -63.156.176.0/21 209 -63.156.184.0/22 209 -63.156.188.0/24 209 -63.156.189.0/24 16618 -63.156.190.0/23 209 -63.156.192.0/22 209 -63.156.196.0/23 209 -63.156.198.0/24 394792 -63.156.199.0/24 209 -63.156.200.0/21 209 -63.156.208.0/20 209 -63.156.224.0/19 209 -63.157.0.0/19 209 -63.157.32.0/22 209 -63.157.36.0/23 209 -63.157.38.0/24 209 -63.157.39.0/24 19843 -63.157.40.0/24 19843 -63.157.41.0/24 209 -63.157.42.0/23 209 -63.157.44.0/22 209 -63.157.48.0/20 209 -63.157.64.0/21 209 -63.157.72.0/22 209 -63.157.76.0/24 23182 -63.157.77.0/24 209 -63.157.78.0/23 209 -63.157.80.0/20 209 -63.157.96.0/21 209 -63.157.104.0/24 209 -63.157.105.0/24 395478 -63.157.106.0/23 209 -63.157.108.0/22 209 -63.157.112.0/22 209 -63.157.116.0/24 209 -63.157.117.0/24 394005 -63.157.118.0/23 209 -63.157.120.0/22 209 -63.157.124.0/24 393834 -63.157.125.0/24 209 -63.157.126.0/23 209 -63.157.128.0/19 209 -63.157.160.0/20 209 -63.157.176.0/21 209 -63.157.184.0/22 209 -63.157.188.0/24 209 -63.157.189.0/24 54244 -63.157.190.0/23 209 -63.157.192.0/20 209 -63.157.208.0/21 209 -63.157.216.0/22 209 -63.157.220.0/23 209 -63.157.222.0/24 27377 -63.157.223.0/24 209 -63.157.224.0/19 209 -63.158.0.0/18 209 -63.158.64.0/20 209 -63.158.80.0/22 209 -63.158.84.0/23 209 -63.158.86.0/24 22273 -63.158.87.0/24 209 -63.158.88.0/21 209 -63.158.96.0/20 209 -63.158.112.0/24 23249 -63.158.113.0/24 209 -63.158.114.0/23 209 -63.158.116.0/22 209 -63.158.120.0/21 209 -63.158.128.0/18 209 -63.158.192.0/21 209 -63.158.200.0/24 395478 -63.158.201.0/24 209 -63.158.202.0/23 209 -63.158.204.0/22 209 -63.158.208.0/23 209 -63.158.210.0/24 27514 -63.158.211.0/24 209 -63.158.212.0/22 209 -63.158.216.0/21 209 -63.158.224.0/19 209 -63.159.0.0/23 3908 -63.159.2.0/23 209 -63.159.4.0/22 209 -63.159.8.0/21 209 -63.159.16.0/20 209 -63.159.32.0/19 209 -63.159.64.0/18 209 -63.159.128.0/21 209 -63.159.136.0/22 209 -63.159.140.0/24 209 -63.159.141.0/24 25652 -63.159.142.0/23 209 -63.159.144.0/20 209 -63.159.160.0/20 209 -63.159.176.0/24 62817 -63.159.177.0/24 209 -63.159.178.0/23 209 -63.159.180.0/24 209 -63.159.181.0/24 3910 -63.159.182.0/23 209 -63.159.184.0/21 209 -63.159.192.0/23 209 -63.159.194.0/24 209 -63.159.195.0/24 393353 -63.159.196.0/22 209 -63.159.200.0/22 209 -63.159.204.0/24 209 -63.159.205.0/24 16491 -63.159.206.0/23 209 -63.159.208.0/21 209 -63.159.216.0/23 54994 -63.159.218.0/23 209 -63.159.220.0/22 209 -63.159.224.0/20 209 -63.159.240.0/21 209 -63.159.248.0/23 209 -63.159.250.0/24 209 -63.159.251.0/24 31752 -63.159.252.0/23 209 -63.159.254.0/24 209 -63.159.255.0/24 33238 -63.160.0.0/21 1239 -63.160.8.0/22 1239 -63.160.12.0/23 1239 -63.160.14.0/24 394830 -63.160.15.0/24 1239 -63.160.16.0/20 1239 -63.160.32.0/21 17054 -63.160.40.0/22 1239 -63.160.44.0/24 1239 -63.160.45.0/24 396922 -63.160.46.0/23 1239 -63.160.48.0/20 1239 -63.160.64.0/19 1239 -63.160.96.0/21 1239 -63.160.104.0/23 1239 -63.160.106.0/24 25873 -63.160.107.0/24 1239 -63.160.108.0/22 1239 -63.160.112.0/20 1239 -63.160.128.0/21 1239 -63.160.136.0/22 1239 -63.160.140.0/24 1239 -63.160.141.0/24 19360 -63.160.142.0/23 1239 -63.160.144.0/21 1239 -63.160.152.0/22 1239 -63.160.156.0/22 16823 -63.160.160.0/21 1239 -63.160.168.0/22 40631 -63.160.172.0/22 1239 -63.160.176.0/20 1239 -63.160.192.0/20 1239 -63.160.208.0/22 1239 -63.160.212.0/22 10461 -63.160.216.0/23 10461 -63.160.218.0/24 33088 -63.160.219.0/24 1239 -63.160.220.0/22 1239 -63.160.224.0/19 1239 -63.161.0.0/22 1239 -63.161.4.0/23 1239 -63.161.6.0/24 1239 -63.161.7.0/24 395506 -63.161.8.0/21 1239 -63.161.16.0/20 1239 -63.161.32.0/19 1239 -63.161.64.0/21 1239 -63.161.72.0/23 1239 -63.161.74.0/24 1239 -63.161.75.0/24 395506 -63.161.76.0/22 1239 -63.161.80.0/20 1239 -63.161.96.0/21 1239 -63.161.104.0/22 1239 -63.161.108.0/23 1239 -63.161.110.0/24 40026 -63.161.111.0/24 1239 -63.161.112.0/24 31937 -63.161.113.0/24 1239 -63.161.114.0/23 1239 -63.161.116.0/23 13938 -63.161.118.0/23 1239 -63.161.120.0/21 1239 -63.161.128.0/23 1239 -63.161.130.0/24 1239 -63.161.131.0/24 22891 -63.161.132.0/22 1239 -63.161.136.0/23 1239 -63.161.138.0/24 14847 -63.161.139.0/24 1239 -63.161.140.0/24 6103 -63.161.141.0/24 1239 -63.161.142.0/23 1239 -63.161.144.0/23 1239 -63.161.146.0/24 1239 -63.161.147.0/24 40676 -63.161.148.0/22 1239 -63.161.152.0/22 1239 -63.161.156.0/24 1239 -63.161.157.0/24 25612 -63.161.158.0/23 1239 -63.161.160.0/19 1239 -63.161.192.0/21 1239 -63.161.200.0/22 1239 -63.161.204.0/22 40676 -63.161.208.0/21 6222 -63.161.216.0/21 1239 -63.161.224.0/19 1239 -63.162.0.0/19 1239 -63.162.32.0/21 1239 -63.162.40.0/23 1239 -63.162.42.0/23 1790 -63.162.44.0/22 1239 -63.162.48.0/20 1239 -63.162.64.0/21 1239 -63.162.72.0/21 26518 -63.162.80.0/20 12133 -63.162.96.0/20 1239 -63.162.112.0/21 1239 -63.162.120.0/21 4150 -63.162.128.0/19 1239 -63.162.160.0/20 1239 -63.162.176.0/21 1239 -63.162.184.0/22 1239 -63.162.188.0/23 1239 -63.162.190.0/24 19346 -63.162.191.0/24 1239 -63.162.192.0/22 1239 -63.162.196.0/24 1239 -63.162.197.0/24 5778 -63.162.198.0/23 209 -63.162.200.0/23 209 -63.162.202.0/24 209 -63.162.203.0/24 5778 -63.162.204.0/22 209 -63.162.208.0/21 1239 -63.162.216.0/23 1239 -63.162.218.0/24 1239 -63.162.219.0/24 18961 -63.162.220.0/22 1239 -63.162.224.0/19 1239 -63.163.0.0/19 1239 -63.163.32.0/20 1239 -63.163.48.0/22 1239 -63.163.52.0/23 1239 -63.163.54.0/24 1239 -63.163.55.0/24 25907 -63.163.56.0/22 1239 -63.163.60.0/24 25612 -63.163.61.0/24 1239 -63.163.62.0/24 17046 -63.163.63.0/24 1239 -63.163.64.0/24 62759 -63.163.65.0/24 1239 -63.163.66.0/23 1239 -63.163.68.0/22 1239 -63.163.72.0/22 1239 -63.163.76.0/24 1239 -63.163.77.0/24 5650 -63.163.78.0/23 1239 -63.163.80.0/20 1239 -63.163.96.0/21 1239 -63.163.104.0/22 1239 -63.163.108.0/23 26724 -63.163.110.0/23 1239 -63.163.112.0/21 1239 -63.163.120.0/21 4150 -63.163.128.0/20 1239 -63.163.144.0/23 1239 -63.163.146.0/24 1239 -63.163.147.0/24 22762 -63.163.148.0/22 1239 -63.163.152.0/21 1239 -63.163.160.0/24 16389 -63.163.161.0/24 1239 -63.163.162.0/23 1239 -63.163.164.0/22 1239 -63.163.168.0/21 1239 -63.163.176.0/22 26794 -63.163.180.0/23 1239 -63.163.182.0/23 40676 -63.163.184.0/21 1239 -63.163.192.0/18 1239 -63.164.0.0/21 1239 -63.164.8.0/23 1239 -63.164.10.0/24 1239 -63.164.11.0/24 11743 -63.164.12.0/22 1239 -63.164.16.0/21 1239 -63.164.24.0/22 1239 -63.164.28.0/22 1312 -63.164.32.0/20 11398 -63.164.48.0/20 1239 -63.164.64.0/19 1239 -63.164.96.0/22 13767 -63.164.100.0/24 25916 -63.164.101.0/24 13767 -63.164.102.0/23 13767 -63.164.104.0/22 19390 -63.164.108.0/22 27696 -63.164.112.0/20 1239 -63.164.128.0/21 1239 -63.164.136.0/23 1239 -63.164.138.0/23 19772 -63.164.140.0/22 1239 -63.164.144.0/22 1239 -63.164.148.0/23 1239 -63.164.150.0/24 1239 -63.164.151.0/24 19103 -63.164.152.0/21 1239 -63.164.160.0/19 1239 -63.164.192.0/21 1239 -63.164.200.0/22 1239 -63.164.204.0/23 19772 -63.164.206.0/23 1239 -63.164.208.0/20 1239 -63.164.224.0/20 1239 -63.164.240.0/22 1239 -63.164.244.0/23 1239 -63.164.246.0/23 22474 -63.164.248.0/21 1239 -63.165.0.0/20 1239 -63.165.16.0/22 1239 -63.165.20.0/23 1239 -63.165.22.0/24 19772 -63.165.23.0/24 1239 -63.165.24.0/21 11398 -63.165.32.0/19 1239 -63.165.64.0/19 1239 -63.165.96.0/20 1239 -63.165.112.0/22 1239 -63.165.116.0/23 1239 -63.165.118.0/24 1239 -63.165.119.0/24 14921 -63.165.120.0/22 1239 -63.165.124.0/23 1239 -63.165.126.0/24 26307 -63.165.127.0/24 1239 -63.165.128.0/20 1239 -63.165.144.0/20 5778 -63.165.160.0/23 1239 -63.165.162.0/24 1239 -63.165.163.0/24 13524 -63.165.164.0/22 1239 -63.165.168.0/21 1239 -63.165.176.0/22 1239 -63.165.180.0/23 1239 -63.165.182.0/24 1239 -63.165.183.0/24 26148 -63.165.184.0/24 1239 -63.165.185.0/24 62802 -63.165.186.0/23 1239 -63.165.188.0/22 1239 -63.165.192.0/19 1239 -63.165.224.0/20 1239 -63.165.240.0/20 11403 -63.166.0.0/21 1239 -63.166.8.0/22 1239 -63.166.12.0/24 32254 -63.166.13.0/24 1239 -63.166.14.0/23 1239 -63.166.16.0/22 1239 -63.166.20.0/23 1239 -63.166.22.0/24 396482 -63.166.23.0/24 1239 -63.166.24.0/22 1239 -63.166.28.0/22 11924 -63.166.32.0/19 1239 -63.166.64.0/21 1239 -63.166.72.0/23 1239 -63.166.74.0/24 1239 -63.166.75.0/24 26005 -63.166.76.0/22 1239 -63.166.80.0/21 1239 -63.166.88.0/22 18494 -63.166.92.0/22 1239 -63.166.96.0/20 1239 -63.166.112.0/23 1239 -63.166.114.0/24 1239 -63.166.115.0/24 22106 -63.166.116.0/22 1239 -63.166.120.0/21 1239 -63.166.128.0/20 1239 -63.166.144.0/22 1239 -63.166.148.0/23 1239 -63.166.150.0/24 40676 -63.166.151.0/24 1239 -63.166.152.0/21 1239 -63.166.160.0/23 1239 -63.166.162.0/23 17046 -63.166.164.0/23 18632 -63.166.166.0/23 1239 -63.166.168.0/21 1239 -63.166.176.0/22 1239 -63.166.180.0/23 1239 -63.166.182.0/24 1239 -63.166.183.0/24 15251 -63.166.184.0/21 1239 -63.166.192.0/20 1239 -63.166.208.0/22 1239 -63.166.212.0/22 54437 -63.166.216.0/24 395694 -63.166.217.0/24 1239 -63.166.218.0/23 1239 -63.166.220.0/22 1239 -63.166.224.0/19 1239 -63.167.0.0/22 1239 -63.167.4.0/24 1239 -63.167.5.0/24 30435 -63.167.6.0/23 1239 -63.167.8.0/21 1239 -63.167.16.0/20 1239 -63.167.32.0/19 1239 -63.167.64.0/21 1239 -63.167.72.0/22 1790 -63.167.76.0/22 1239 -63.167.80.0/22 1239 -63.167.84.0/24 1239 -63.167.85.0/24 32325 -63.167.86.0/23 1239 -63.167.88.0/21 1239 -63.167.96.0/19 1239 -63.167.128.0/18 1239 -63.167.192.0/22 1239 -63.167.196.0/23 1239 -63.167.198.0/24 46140 -63.167.199.0/24 1239 -63.167.200.0/23 1239 -63.167.202.0/24 25612 -63.167.203.0/24 1239 -63.167.204.0/22 1239 -63.167.208.0/20 36549 -63.167.224.0/22 1239 -63.167.228.0/24 18593 -63.167.229.0/24 1239 -63.167.230.0/23 1239 -63.167.232.0/21 1239 -63.167.240.0/20 1239 -63.168.0.0/20 1239 -63.168.16.0/22 1239 -63.168.20.0/23 13866 -63.168.22.0/23 1239 -63.168.24.0/21 1239 -63.168.32.0/20 1239 -63.168.48.0/21 1239 -63.168.56.0/23 1239 -63.168.58.0/24 5778 -63.168.59.0/24 1239 -63.168.60.0/22 1239 -63.168.64.0/20 1239 -63.168.80.0/21 1239 -63.168.88.0/22 1239 -63.168.92.0/24 1239 -63.168.93.0/24 19429 -63.168.94.0/23 1239 -63.168.96.0/20 1239 -63.168.112.0/23 1239 -63.168.114.0/24 25612 -63.168.115.0/24 1239 -63.168.116.0/24 1239 -63.168.117.0/24 17129 -63.168.118.0/23 1239 -63.168.120.0/21 1239 -63.168.128.0/20 1239 -63.168.144.0/21 1239 -63.168.152.0/24 1239 -63.168.153.0/24 5778 -63.168.154.0/23 1239 -63.168.156.0/22 1239 -63.168.160.0/21 1239 -63.168.168.0/23 30873 -63.168.170.0/23 1239 -63.168.172.0/22 1239 -63.168.176.0/20 1239 -63.168.192.0/18 1239 -63.169.0.0/18 1239 -63.169.64.0/19 1239 -63.169.96.0/22 1239 -63.169.100.0/22 17054 -63.169.104.0/21 1239 -63.169.112.0/20 1239 -63.169.128.0/20 1239 -63.169.144.0/23 1239 -63.169.146.0/24 5778 -63.169.147.0/24 1239 -63.169.148.0/22 1239 -63.169.152.0/21 1239 -63.169.160.0/19 1239 -63.169.192.0/18 1239 -63.170.0.0/21 1239 -63.170.8.0/23 1239 -63.170.10.0/24 1239 -63.170.11.0/24 26876 -63.170.12.0/22 1239 -63.170.16.0/20 1239 -63.170.32.0/21 1239 -63.170.40.0/22 1239 -63.170.44.0/23 1239 -63.170.46.0/24 40157 -63.170.47.0/24 1239 -63.170.48.0/23 1239 -63.170.50.0/24 1239 -63.170.51.0/24 40026 -63.170.52.0/22 1239 -63.170.56.0/21 1239 -63.170.64.0/24 1239 -63.170.65.0/24 62802 -63.170.66.0/23 1239 -63.170.68.0/23 14813 -63.170.70.0/23 1239 -63.170.72.0/21 1239 -63.170.80.0/21 1239 -63.170.88.0/23 1239 -63.170.90.0/24 1239 -63.170.91.0/24 16747 -63.170.92.0/22 1239 -63.170.96.0/20 1239 -63.170.112.0/22 1239 -63.170.116.0/23 1239 -63.170.118.0/23 18632 -63.170.120.0/21 1239 -63.170.128.0/21 13776 -63.170.136.0/21 1239 -63.170.144.0/20 1239 -63.170.160.0/21 1239 -63.170.168.0/22 1239 -63.170.172.0/23 1239 -63.170.174.0/24 31920 -63.170.175.0/24 1239 -63.170.176.0/21 1239 -63.170.184.0/24 1239 -63.170.185.0/24 54246 -63.170.186.0/23 1239 -63.170.188.0/22 1239 -63.170.192.0/19 1239 -63.170.224.0/21 1239 -63.170.232.0/24 46718 -63.170.233.0/24 1239 -63.170.234.0/23 1239 -63.170.236.0/22 1239 -63.170.240.0/21 1239 -63.170.248.0/22 1239 -63.170.252.0/23 1239 -63.170.254.0/24 36134 -63.170.255.0/24 1239 -63.171.0.0/20 1239 -63.171.16.0/23 1239 -63.171.18.0/23 30873 -63.171.20.0/22 1239 -63.171.24.0/21 1239 -63.171.32.0/19 1239 -63.171.64.0/23 1239 -63.171.66.0/24 6062 -63.171.67.0/24 1239 -63.171.68.0/22 1239 -63.171.72.0/21 1239 -63.171.80.0/22 1239 -63.171.84.0/24 32068 -63.171.85.0/24 1239 -63.171.86.0/23 1239 -63.171.88.0/21 1239 -63.171.96.0/19 1239 -63.171.128.0/19 1239 -63.171.160.0/22 1239 -63.171.164.0/23 62802 -63.171.166.0/23 1239 -63.171.168.0/21 1239 -63.171.176.0/20 1239 -63.171.192.0/22 1239 -63.171.196.0/24 4972 -63.171.197.0/24 1239 -63.171.198.0/23 1239 -63.171.200.0/21 1239 -63.171.208.0/20 1239 -63.171.224.0/21 1239 -63.171.232.0/24 19429 -63.171.233.0/24 1239 -63.171.234.0/24 32076 -63.171.235.0/24 1239 -63.171.236.0/22 1239 -63.171.240.0/20 1239 -63.172.0.0/19 1239 -63.172.32.0/21 1239 -63.172.40.0/21 18618 -63.172.48.0/20 1239 -63.172.64.0/23 1239 -63.172.66.0/24 25612 -63.172.67.0/24 1239 -63.172.68.0/22 1239 -63.172.72.0/21 1239 -63.172.80.0/22 1239 -63.172.84.0/23 11280 -63.172.86.0/23 1239 -63.172.88.0/21 1239 -63.172.96.0/24 1239 -63.172.97.0/24 32068 -63.172.98.0/23 1239 -63.172.100.0/22 1239 -63.172.104.0/21 1239 -63.172.112.0/21 1239 -63.172.120.0/23 1239 -63.172.122.0/24 1239 -63.172.123.0/24 62802 -63.172.124.0/22 1239 -63.172.128.0/19 1239 -63.172.160.0/20 1239 -63.172.176.0/21 1239 -63.172.184.0/24 30117 -63.172.185.0/24 19437 -63.172.186.0/23 1239 -63.172.188.0/22 1239 -63.172.192.0/19 1239 -63.172.224.0/23 1239 -63.172.226.0/24 26556 -63.172.227.0/24 1239 -63.172.228.0/23 1239 -63.172.230.0/24 46536 -63.172.231.0/24 1239 -63.172.232.0/24 14330 -63.172.233.0/24 10333 -63.172.234.0/23 14330 -63.172.236.0/23 10333 -63.172.238.0/23 1239 -63.172.240.0/22 1239 -63.172.244.0/24 1239 -63.172.245.0/24 7381 -63.172.246.0/23 1239 -63.172.248.0/21 1239 -63.173.0.0/19 1239 -63.173.32.0/24 1239 -63.173.33.0/24 31853 -63.173.34.0/23 1239 -63.173.36.0/22 1239 -63.173.40.0/24 1239 -63.173.41.0/24 397739 -63.173.42.0/23 1239 -63.173.44.0/22 1239 -63.173.48.0/20 1239 -63.173.64.0/22 1239 -63.173.68.0/24 1239 -63.173.69.0/24 2386 -63.173.70.0/23 1239 -63.173.72.0/21 1239 -63.173.80.0/20 1239 -63.173.96.0/20 1239 -63.173.112.0/22 1239 -63.173.116.0/23 1239 -63.173.118.0/23 209 -63.173.120.0/23 1239 -63.173.122.0/23 209 -63.173.124.0/22 1239 -63.173.128.0/19 1239 -63.173.160.0/23 1239 -63.173.162.0/24 1239 -63.173.163.0/24 21950 -63.173.164.0/22 1239 -63.173.168.0/22 1239 -63.173.172.0/23 30873 -63.173.174.0/23 1239 -63.173.176.0/20 1239 -63.173.192.0/20 1239 -63.173.208.0/22 1239 -63.173.212.0/22 19390 -63.173.216.0/21 1239 -63.173.224.0/19 1239 -63.174.0.0/21 1239 -63.174.8.0/21 14921 -63.174.16.0/20 17054 -63.174.32.0/20 1239 -63.174.48.0/21 1239 -63.174.56.0/21 26556 -63.174.64.0/20 1239 -63.174.80.0/21 1239 -63.174.88.0/23 1239 -63.174.90.0/24 1239 -63.174.91.0/24 46325 -63.174.92.0/22 1239 -63.174.96.0/21 1239 -63.174.104.0/23 1239 -63.174.106.0/24 1239 -63.174.107.0/24 32068 -63.174.108.0/22 1239 -63.174.112.0/20 1239 -63.174.128.0/22 1239 -63.174.132.0/23 1239 -63.174.134.0/23 46853 -63.174.136.0/22 46853 -63.174.140.0/23 46853 -63.174.142.0/24 46853 -63.174.143.0/24 1239 -63.174.144.0/22 46853 -63.174.148.0/22 1239 -63.174.152.0/21 1239 -63.174.160.0/21 1239 -63.174.168.0/22 1239 -63.174.172.0/23 1239 -63.174.174.0/24 5778 -63.174.175.0/24 1239 -63.174.176.0/20 1239 -63.174.192.0/23 1239 -63.174.194.0/24 1239 -63.174.195.0/24 20287 -63.174.196.0/22 1239 -63.174.200.0/21 1239 -63.174.208.0/21 1239 -63.174.216.0/23 1239 -63.174.218.0/24 19409 -63.174.219.0/24 1239 -63.174.220.0/22 1239 -63.174.224.0/23 1239 -63.174.226.0/24 26451 -63.174.227.0/24 1239 -63.174.228.0/22 1239 -63.174.232.0/21 1239 -63.174.240.0/20 1239 -63.175.0.0/23 1239 -63.175.2.0/23 18618 -63.175.4.0/24 18618 -63.175.5.0/24 397361 -63.175.6.0/23 18618 -63.175.8.0/21 1239 -63.175.16.0/22 1239 -63.175.20.0/23 1239 -63.175.22.0/24 1239 -63.175.23.0/24 26262 -63.175.24.0/21 1239 -63.175.32.0/19 1239 -63.175.64.0/21 1239 -63.175.72.0/22 1239 -63.175.76.0/23 1239 -63.175.78.0/24 1239 -63.175.79.0/24 16565 -63.175.80.0/20 1239 -63.175.96.0/19 1239 -63.175.128.0/22 1239 -63.175.132.0/23 1239 -63.175.134.0/24 1239 -63.175.135.0/24 55198 -63.175.136.0/22 1239 -63.175.140.0/23 22885 -63.175.142.0/23 1239 -63.175.144.0/21 1239 -63.175.152.0/22 1239 -63.175.156.0/22 14813 -63.175.160.0/20 1239 -63.175.176.0/21 1239 -63.175.184.0/23 1239 -63.175.186.0/23 14979 -63.175.188.0/22 1239 -63.175.192.0/23 1239 -63.175.194.0/23 7381 -63.175.196.0/22 1239 -63.175.200.0/22 1239 -63.175.204.0/24 1239 -63.175.205.0/24 6109 -63.175.206.0/23 1239 -63.175.208.0/22 1239 -63.175.212.0/23 27462 -63.175.214.0/23 1239 -63.175.216.0/21 1239 -63.175.224.0/23 1239 -63.175.226.0/24 27696 -63.175.227.0/24 1239 -63.175.228.0/24 25765 -63.175.229.0/24 1239 -63.175.230.0/23 1239 -63.175.232.0/23 15265 -63.175.234.0/23 1239 -63.175.236.0/22 1239 -63.175.240.0/20 1239 -63.178.146.0/24 3644 -63.178.148.0/23 3644 -63.178.150.0/24 3644 -63.192.0.0/23 7018 -63.192.2.0/24 7018 -63.192.3.0/24 13932 -63.192.4.0/22 7018 -63.192.8.0/21 7018 -63.192.16.0/20 7018 -63.192.32.0/19 7018 -63.192.64.0/20 7018 -63.192.80.0/23 7018 -63.192.82.0/24 39953 -63.192.83.0/24 7018 -63.192.84.0/22 7018 -63.192.88.0/21 7018 -63.192.96.0/19 7018 -63.192.128.0/20 7018 -63.192.144.0/21 7018 -63.192.152.0/22 7018 -63.192.156.0/23 7018 -63.192.158.0/24 54968 -63.192.159.0/24 7018 -63.192.160.0/19 7018 -63.192.192.0/18 7018 -63.193.0.0/17 7018 -63.193.128.0/18 7018 -63.193.192.0/21 7018 -63.193.200.0/24 25664 -63.193.201.0/24 7018 -63.193.202.0/23 7018 -63.193.204.0/22 7018 -63.193.208.0/20 7018 -63.193.224.0/19 7018 -63.194.0.0/19 7018 -63.194.32.0/21 7018 -63.194.40.0/22 7018 -63.194.44.0/24 7018 -63.194.45.0/24 46880 -63.194.46.0/23 7018 -63.194.48.0/20 7018 -63.194.64.0/18 7018 -63.194.128.0/21 7018 -63.194.136.0/23 7018 -63.194.138.0/24 7018 -63.194.139.0/24 393508 -63.194.140.0/22 7018 -63.194.144.0/21 7018 -63.194.152.0/24 7018 -63.194.153.0/24 7065 -63.194.154.0/23 7018 -63.194.156.0/22 7018 -63.194.160.0/20 7018 -63.194.176.0/21 7018 -63.194.184.0/22 7018 -63.194.188.0/23 7018 -63.194.190.0/24 36437 -63.194.191.0/24 7018 -63.194.192.0/18 7018 -63.195.0.0/17 7018 -63.195.128.0/19 7018 -63.195.160.0/20 7018 -63.195.176.0/21 7018 -63.195.184.0/22 7018 -63.195.188.0/23 7018 -63.195.190.0/24 54968 -63.195.191.0/24 7018 -63.195.192.0/18 7018 -63.196.0.0/17 7018 -63.196.128.0/22 7018 -63.196.132.0/24 22559 -63.196.133.0/24 7018 -63.196.134.0/23 7018 -63.196.136.0/21 7018 -63.196.144.0/20 7018 -63.196.160.0/19 7018 -63.196.192.0/18 7018 -63.197.0.0/17 7018 -63.197.128.0/18 7018 -63.197.192.0/19 7018 -63.197.224.0/20 7018 -63.197.240.0/23 7018 -63.197.242.0/24 7018 -63.197.243.0/24 23233 -63.197.244.0/22 7018 -63.197.248.0/21 7018 -63.198.0.0/16 7018 -63.199.0.0/19 7018 -63.199.32.0/21 25664 -63.199.40.0/22 25664 -63.199.44.0/24 25664 -63.199.45.0/24 7018 -63.199.46.0/23 7018 -63.199.48.0/20 7018 -63.199.64.0/22 7018 -63.199.68.0/23 22352 -63.199.70.0/24 7018 -63.199.71.0/24 22352 -63.199.72.0/21 7018 -63.199.80.0/20 7018 -63.199.96.0/19 7018 -63.199.128.0/17 7018 -63.200.0.0/17 7018 -63.200.128.0/18 7018 -63.200.192.0/20 7018 -63.200.208.0/22 7018 -63.200.212.0/23 7018 -63.200.214.0/24 2386 -63.200.215.0/24 7018 -63.200.216.0/21 7018 -63.200.224.0/19 7018 -63.201.0.0/19 7018 -63.201.32.0/21 7018 -63.201.40.0/22 7018 -63.201.44.0/23 7018 -63.201.46.0/24 7018 -63.201.47.0/24 396329 -63.201.48.0/20 7018 -63.201.64.0/18 7018 -63.201.128.0/17 7018 -63.202.0.0/16 7018 -63.203.0.0/18 7018 -63.203.64.0/20 7018 -63.203.80.0/22 7018 -63.203.84.0/23 7018 -63.203.86.0/24 7018 -63.203.87.0/24 393508 -63.203.88.0/21 7018 -63.203.96.0/19 7018 -63.203.128.0/17 7018 -63.204.0.0/17 7018 -63.204.128.0/18 7018 -63.204.192.0/19 7018 -63.204.224.0/21 7018 -63.204.232.0/24 7018 -63.204.233.0/24 5033 -63.204.234.0/23 7018 -63.204.236.0/22 7018 -63.204.240.0/20 7018 -63.205.0.0/16 7018 -63.206.0.0/17 7018 -63.206.128.0/18 7018 -63.206.192.0/21 7018 -63.206.200.0/22 7018 -63.206.204.0/23 7018 -63.206.206.0/24 40795 -63.206.207.0/24 7018 -63.206.208.0/20 7018 -63.206.224.0/19 7018 -63.207.0.0/22 7018 -63.207.4.0/23 7018 -63.207.6.0/24 26685 -63.207.7.0/24 7018 -63.207.8.0/21 7018 -63.207.16.0/20 7018 -63.207.32.0/19 7018 -63.207.64.0/18 7018 -63.207.128.0/18 7018 -63.207.192.0/20 7018 -63.207.208.0/23 7018 -63.207.210.0/24 7018 -63.207.211.0/24 36714 -63.207.212.0/22 7018 -63.207.216.0/21 7018 -63.207.224.0/19 7018 -63.208.0.0/24 3356 -63.208.1.0/24 3064 -63.208.2.0/23 3356 -63.208.4.0/22 3356 -63.208.8.0/21 3356 -63.208.16.0/20 3356 -63.208.32.0/20 3356 -63.208.48.0/22 3356 -63.208.52.0/23 3356 -63.208.54.0/24 3356 -63.208.55.0/24 6461 -63.208.56.0/21 3356 -63.208.64.0/21 3356 -63.208.72.0/23 3356 -63.208.74.0/24 32181 -63.208.75.0/24 3356 -63.208.76.0/22 3257 -63.208.80.0/20 3356 -63.208.96.0/19 3356 -63.208.128.0/21 3356 -63.208.136.0/23 3356 -63.208.138.0/24 3356 -63.208.139.0/24 11525 -63.208.140.0/23 3356 -63.208.142.0/24 20473 -63.208.143.0/24 3356 -63.208.144.0/20 3356 -63.208.160.0/22 27553 -63.208.164.0/22 3356 -63.208.168.0/22 3356 -63.208.172.0/23 11168 -63.208.174.0/23 3356 -63.208.176.0/20 3356 -63.208.192.0/23 3356 -63.208.194.0/24 3356 -63.208.195.0/24 12222 -63.208.196.0/22 3356 -63.208.200.0/21 3356 -63.208.208.0/20 3356 -63.208.224.0/19 3356 -63.209.0.0/21 3356 -63.209.8.0/22 3356 -63.209.12.0/24 32308 -63.209.13.0/24 3356 -63.209.14.0/23 3356 -63.209.16.0/20 3356 -63.209.32.0/23 20473 -63.209.34.0/24 3356 -63.209.35.0/24 20473 -63.209.36.0/23 20473 -63.209.38.0/23 3356 -63.209.40.0/21 3356 -63.209.48.0/20 3356 -63.209.64.0/18 3356 -63.209.128.0/22 3356 -63.209.132.0/23 3356 -63.209.134.0/24 3356 -63.209.135.0/24 36394 -63.209.136.0/21 3356 -63.209.144.0/21 3356 -63.209.152.0/23 3356 -63.209.154.0/23 27896 -63.209.156.0/22 3356 -63.209.160.0/19 3356 -63.209.192.0/24 3356 -63.209.193.0/24 10397 -63.209.194.0/23 3356 -63.209.196.0/22 3356 -63.209.200.0/21 3356 -63.209.208.0/23 3356 -63.209.210.0/23 4565 -63.209.212.0/22 3356 -63.209.216.0/21 3356 -63.209.224.0/21 3356 -63.209.232.0/21 64200 -63.209.240.0/20 3356 -63.210.0.0/19 3356 -63.210.32.0/21 3356 -63.210.40.0/22 3356 -63.210.44.0/23 21886 -63.210.46.0/23 3356 -63.210.48.0/21 16559 -63.210.56.0/22 3356 -63.210.60.0/23 12684 -63.210.62.0/24 3356 -63.210.63.0/24 16559 -63.210.64.0/19 3356 -63.210.96.0/24 3356 -63.210.97.0/24 16820 -63.210.98.0/23 3257 -63.210.100.0/22 3356 -63.210.104.0/21 3356 -63.210.112.0/20 3356 -63.210.128.0/20 3356 -63.210.144.0/24 3356 -63.210.145.0/24 20473 -63.210.146.0/23 3356 -63.210.148.0/23 20473 -63.210.150.0/23 3356 -63.210.152.0/21 3356 -63.210.160.0/19 3356 -63.210.192.0/20 3356 -63.210.208.0/24 394265 -63.210.209.0/24 16504 -63.210.210.0/24 394937 -63.210.211.0/24 394563 -63.210.212.0/23 3356 -63.210.214.0/24 3356 -63.210.215.0/24 395252 -63.210.216.0/21 3356 -63.210.224.0/19 3356 -63.211.0.0/23 3356 -63.211.2.0/24 3356 -63.211.3.0/24 12129 -63.211.4.0/22 3356 -63.211.8.0/21 3356 -63.211.16.0/20 3356 -63.211.32.0/19 3356 -63.211.64.0/19 3356 -63.211.96.0/21 3356 -63.211.104.0/22 3356 -63.211.108.0/23 3356 -63.211.110.0/24 3356 -63.211.111.0/24 20473 -63.211.112.0/20 3356 -63.211.128.0/23 3356 -63.211.130.0/24 3356 -63.211.131.0/24 32348 -63.211.132.0/22 3356 -63.211.136.0/21 3356 -63.211.144.0/20 3356 -63.211.160.0/19 3356 -63.211.192.0/21 3356 -63.211.200.0/24 3356 -63.211.201.0/24 32035 -63.211.202.0/23 3356 -63.211.204.0/22 3356 -63.211.208.0/21 3356 -63.211.216.0/22 3356 -63.211.220.0/24 3356 -63.211.221.0/24 20473 -63.211.222.0/23 3356 -63.211.224.0/21 3356 -63.211.232.0/22 3356 -63.211.236.0/23 3356 -63.211.238.0/24 3356 -63.211.239.0/24 14602 -63.211.240.0/20 3356 -63.212.0.0/17 3356 -63.212.128.0/22 3356 -63.212.132.0/23 3356 -63.212.134.0/24 3356 -63.212.135.0/24 32696 -63.212.136.0/21 3356 -63.212.144.0/20 3356 -63.212.160.0/22 3356 -63.212.164.0/23 3356 -63.212.166.0/24 3356 -63.212.167.0/24 32560 -63.212.168.0/21 3356 -63.212.176.0/20 3356 -63.212.192.0/18 3356 -63.213.0.0/16 3356 -63.214.0.0/19 3356 -63.214.32.0/21 16618 -63.214.40.0/21 3356 -63.214.48.0/21 3356 -63.214.56.0/23 7029 -63.214.58.0/23 3356 -63.214.60.0/23 3356 -63.214.62.0/23 7029 -63.214.64.0/18 3356 -63.214.128.0/19 3356 -63.214.160.0/22 3356 -63.214.164.0/23 20454 -63.214.166.0/23 11572 -63.214.168.0/21 3356 -63.214.176.0/20 3356 -63.214.192.0/19 3356 -63.214.224.0/21 3356 -63.214.232.0/22 3356 -63.214.236.0/23 31881 -63.214.238.0/23 32806 -63.214.240.0/24 3356 -63.214.241.0/24 20077 -63.214.242.0/23 3356 -63.214.244.0/22 3356 -63.214.248.0/21 3356 -63.215.0.0/18 3356 -63.215.64.0/21 3356 -63.215.72.0/23 3356 -63.215.74.0/24 20473 -63.215.75.0/24 3356 -63.215.76.0/22 3356 -63.215.80.0/20 3356 -63.215.96.0/22 1 -63.215.100.0/22 3356 -63.215.104.0/21 16618 -63.215.112.0/21 3356 -63.215.120.0/23 10461 -63.215.122.0/23 3356 -63.215.124.0/23 3356 -63.215.126.0/24 3257 -63.215.127.0/24 3356 -63.215.128.0/19 3356 -63.215.160.0/21 27553 -63.215.168.0/21 3356 -63.215.176.0/24 3356 -63.215.177.0/24 328543 -63.215.178.0/23 3356 -63.215.180.0/22 328543 -63.215.184.0/21 3356 -63.215.192.0/23 3356 -63.215.194.0/24 3356 -63.215.195.0/24 10753 -63.215.196.0/23 10753 -63.215.198.0/23 3356 -63.215.200.0/23 3356 -63.215.202.0/24 25751 -63.215.203.0/24 3356 -63.215.204.0/22 3356 -63.215.208.0/20 3356 -63.215.224.0/19 3356 -63.216.0.0/19 3491 -63.216.32.0/20 3491 -63.216.48.0/21 3491 -63.216.56.0/24 3491 -63.216.57.0/24 45753 -63.216.58.0/23 3491 -63.216.60.0/22 3491 -63.216.64.0/21 36734 -63.216.72.0/21 3491 -63.216.80.0/20 3491 -63.216.96.0/19 3491 -63.216.128.0/17 3491 -63.217.0.0/18 3491 -63.217.64.0/20 3491 -63.217.80.0/24 3491 -63.217.81.0/24 24413 -63.217.82.0/24 10082 -63.217.83.0/24 3491 -63.217.84.0/24 3491 -63.217.85.0/24 7262 -63.217.86.0/24 3491 -63.217.87.0/24 24413 -63.217.88.0/21 3491 -63.217.96.0/21 3491 -63.217.104.0/23 3491 -63.217.106.0/23 17057 -63.217.108.0/24 16841 -63.217.109.0/24 3491 -63.217.110.0/23 3491 -63.217.112.0/21 3491 -63.217.120.0/23 3491 -63.217.122.0/24 3491 -63.217.123.0/24 53345 -63.217.124.0/22 3491 -63.217.128.0/18 3491 -63.217.192.0/19 3491 -63.217.224.0/21 3491 -63.217.232.0/24 20940 -63.217.233.0/24 3491 -63.217.234.0/23 3491 -63.217.236.0/22 3491 -63.217.240.0/20 3491 -63.218.0.0/20 3491 -63.218.16.0/21 3491 -63.218.24.0/22 3491 -63.218.28.0/23 9237 -63.218.30.0/23 3491 -63.218.32.0/19 3491 -63.218.64.0/18 3491 -63.218.128.0/17 3491 -63.219.0.0/20 9237 -63.219.16.0/20 3491 -63.219.32.0/19 3491 -63.219.64.0/18 3491 -63.219.128.0/20 3491 -63.219.144.0/22 3491 -63.219.148.0/23 3491 -63.219.150.0/24 3491 -63.219.151.0/24 16552 -63.219.152.0/21 3491 -63.219.160.0/19 3491 -63.219.192.0/18 3491 -63.220.0.0/22 3491 -63.220.4.0/24 45753 -63.220.5.0/24 3491 -63.220.6.0/24 38186 -63.220.7.0/24 45753 -63.220.8.0/21 3491 -63.220.16.0/20 3491 -63.220.32.0/19 3491 -63.220.64.0/18 3491 -63.220.128.0/17 3491 -63.221.0.0/18 3491 -63.221.64.0/20 3491 -63.221.80.0/21 3491 -63.221.88.0/24 46261 -63.221.89.0/24 3491 -63.221.90.0/23 3491 -63.221.92.0/22 3491 -63.221.96.0/24 3491 -63.221.97.0/24 62627 -63.221.98.0/23 3491 -63.221.100.0/22 3491 -63.221.104.0/21 3491 -63.221.112.0/20 3491 -63.221.128.0/22 3491 -63.221.132.0/23 22566 -63.221.134.0/23 3491 -63.221.136.0/23 3491 -63.221.138.0/24 45753 -63.221.139.0/24 3491 -63.221.140.0/22 3491 -63.221.144.0/20 3491 -63.221.160.0/19 3491 -63.221.192.0/18 3491 -63.222.0.0/16 3491 -63.223.0.0/18 3491 -63.223.64.0/23 19194 -63.223.66.0/24 19194 -63.223.67.0/24 3491 -63.223.68.0/22 19194 -63.223.72.0/21 19194 -63.223.80.0/24 19194 -63.223.81.0/24 3491 -63.223.82.0/23 19194 -63.223.84.0/22 19194 -63.223.88.0/24 19194 -63.223.89.0/24 29802 -63.223.90.0/24 29802 -63.223.91.0/24 19194 -63.223.92.0/22 19194 -63.223.96.0/21 19194 -63.223.104.0/23 19194 -63.223.106.0/24 29802 -63.223.107.0/24 19194 -63.223.108.0/24 19194 -63.223.109.0/24 29802 -63.223.110.0/23 19194 -63.223.112.0/20 19194 -63.223.128.0/18 3491 -63.223.192.0/21 3491 -63.223.200.0/23 3491 -63.223.202.0/24 3491 -63.223.203.0/24 7262 -63.223.204.0/24 7262 -63.223.205.0/24 3491 -63.223.206.0/23 3491 -63.223.208.0/20 3491 -63.223.224.0/19 3491 -63.224.0.0/17 209 -63.224.128.0/22 209 -63.224.132.0/24 209 -63.224.133.0/24 30449 -63.224.134.0/23 209 -63.224.136.0/21 209 -63.224.144.0/20 209 -63.224.160.0/23 209 -63.224.162.0/23 25786 -63.224.164.0/22 209 -63.224.168.0/22 209 -63.224.172.0/23 209 -63.224.174.0/23 22180 -63.224.176.0/20 209 -63.224.192.0/18 209 -63.225.0.0/24 209 -63.225.1.0/24 3912 -63.225.2.0/23 209 -63.225.4.0/22 209 -63.225.8.0/21 209 -63.225.16.0/20 209 -63.225.32.0/20 209 -63.225.48.0/21 209 -63.225.56.0/22 209 -63.225.60.0/23 209 -63.225.62.0/24 209 -63.225.63.0/24 14149 -63.225.64.0/24 209 -63.225.65.0/24 3910 -63.225.66.0/23 209 -63.225.68.0/22 209 -63.225.72.0/21 209 -63.225.80.0/20 209 -63.225.96.0/19 209 -63.225.128.0/21 209 -63.225.136.0/24 209 -63.225.137.0/24 32210 -63.225.138.0/23 209 -63.225.140.0/22 209 -63.225.144.0/20 209 -63.225.160.0/19 209 -63.225.192.0/18 209 -63.226.0.0/19 209 -63.226.32.0/24 106 -63.226.33.0/24 209 -63.226.34.0/23 209 -63.226.36.0/22 209 -63.226.40.0/23 209 -63.226.42.0/24 26326 -63.226.43.0/24 209 -63.226.44.0/22 209 -63.226.48.0/20 209 -63.226.64.0/19 209 -63.226.96.0/20 209 -63.226.112.0/22 209 -63.226.116.0/23 209 -63.226.118.0/23 394456 -63.226.120.0/21 209 -63.226.128.0/21 209 -63.226.136.0/24 18629 -63.226.137.0/24 209 -63.226.138.0/23 209 -63.226.140.0/22 209 -63.226.144.0/21 209 -63.226.152.0/22 209 -63.226.156.0/23 209 -63.226.158.0/24 15009 -63.226.159.0/24 209 -63.226.160.0/23 395455 -63.226.162.0/23 209 -63.226.164.0/23 209 -63.226.166.0/24 46131 -63.226.167.0/24 209 -63.226.168.0/21 209 -63.226.176.0/20 209 -63.226.192.0/19 209 -63.226.224.0/20 209 -63.226.240.0/22 209 -63.226.244.0/24 22463 -63.226.245.0/24 209 -63.226.246.0/23 209 -63.226.248.0/21 209 -63.227.0.0/18 209 -63.227.64.0/21 209 -63.227.72.0/22 209 -63.227.76.0/24 209 -63.227.77.0/24 393604 -63.227.78.0/23 209 -63.227.80.0/20 209 -63.227.96.0/19 209 -63.227.128.0/22 209 -63.227.132.0/24 6594 -63.227.133.0/24 209 -63.227.134.0/24 209 -63.227.135.0/24 20940 -63.227.136.0/21 209 -63.227.144.0/20 209 -63.227.160.0/20 209 -63.227.176.0/21 209 -63.227.184.0/22 209 -63.227.188.0/24 18821 -63.227.189.0/24 209 -63.227.190.0/23 209 -63.227.192.0/18 209 -63.228.0.0/20 209 -63.228.16.0/21 209 -63.228.24.0/22 209 -63.228.28.0/24 15009 -63.228.29.0/24 209 -63.228.30.0/23 209 -63.228.32.0/19 209 -63.228.64.0/18 209 -63.228.128.0/19 209 -63.228.160.0/20 209 -63.228.176.0/21 209 -63.228.184.0/24 209 -63.228.185.0/24 3910 -63.228.186.0/23 209 -63.228.188.0/22 209 -63.228.192.0/20 209 -63.228.208.0/22 209 -63.228.212.0/24 17206 -63.228.213.0/24 209 -63.228.214.0/23 209 -63.228.216.0/21 209 -63.228.224.0/21 209 -63.228.232.0/22 209 -63.228.236.0/23 10835 -63.228.238.0/23 209 -63.228.240.0/22 209 -63.228.244.0/23 209 -63.228.246.0/24 6594 -63.228.247.0/24 209 -63.228.248.0/21 209 -63.229.0.0/19 209 -63.229.32.0/21 209 -63.229.40.0/22 209 -63.229.44.0/23 209 -63.229.46.0/24 54208 -63.229.47.0/24 209 -63.229.48.0/22 209 -63.229.52.0/24 22904 -63.229.53.0/24 209 -63.229.54.0/23 209 -63.229.56.0/21 209 -63.229.64.0/19 209 -63.229.96.0/23 209 -63.229.98.0/24 6086 -63.229.99.0/24 209 -63.229.100.0/23 26326 -63.229.102.0/23 209 -63.229.104.0/24 3910 -63.229.105.0/24 209 -63.229.106.0/23 209 -63.229.108.0/22 209 -63.229.112.0/20 209 -63.229.128.0/19 209 -63.229.160.0/23 209 -63.229.162.0/24 395245 -63.229.163.0/24 209 -63.229.164.0/23 209 -63.229.166.0/23 395452 -63.229.168.0/21 209 -63.229.176.0/20 209 -63.229.192.0/19 209 -63.229.224.0/20 209 -63.229.240.0/21 209 -63.229.248.0/24 209 -63.229.249.0/24 32406 -63.229.250.0/23 209 -63.229.252.0/22 209 -63.230.0.0/18 209 -63.230.64.0/19 209 -63.230.96.0/20 209 -63.230.112.0/22 209 -63.230.116.0/23 209 -63.230.118.0/24 6594 -63.230.119.0/24 209 -63.230.120.0/21 209 -63.230.128.0/19 209 -63.230.160.0/20 209 -63.230.176.0/22 11066 -63.230.180.0/22 209 -63.230.184.0/22 209 -63.230.188.0/23 209 -63.230.190.0/23 36172 -63.230.192.0/19 209 -63.230.224.0/20 209 -63.230.240.0/24 3910 -63.230.241.0/24 209 -63.230.242.0/23 209 -63.230.244.0/22 209 -63.230.248.0/21 209 -63.231.0.0/18 209 -63.231.64.0/19 209 -63.231.96.0/20 209 -63.231.112.0/21 209 -63.231.120.0/22 209 -63.231.124.0/24 18703 -63.231.125.0/24 209 -63.231.126.0/23 209 -63.231.128.0/18 209 -63.231.192.0/22 209 -63.231.196.0/22 16871 -63.231.200.0/23 16871 -63.231.202.0/23 209 -63.231.204.0/22 209 -63.231.208.0/23 209 -63.231.210.0/24 209 -63.231.211.0/24 3910 -63.231.212.0/22 209 -63.231.216.0/21 209 -63.231.224.0/19 209 -63.232.0.0/21 209 -63.232.8.0/22 27516 -63.232.12.0/22 209 -63.232.16.0/20 209 -63.232.32.0/20 209 -63.232.48.0/24 394575 -63.232.49.0/24 209 -63.232.50.0/23 209 -63.232.52.0/22 209 -63.232.56.0/23 53316 -63.232.58.0/23 209 -63.232.60.0/23 209 -63.232.62.0/24 209 -63.232.63.0/24 29976 -63.232.64.0/21 209 -63.232.72.0/23 209 -63.232.74.0/24 53466 -63.232.75.0/24 209 -63.232.76.0/22 209 -63.232.80.0/22 209 -63.232.84.0/23 209 -63.232.86.0/24 209 -63.232.87.0/24 53261 -63.232.88.0/21 209 -63.232.96.0/20 209 -63.232.112.0/21 209 -63.232.120.0/24 209 -63.232.121.0/24 16915 -63.232.122.0/24 209 -63.232.123.0/24 26382 -63.232.124.0/22 209 -63.232.128.0/20 209 -63.232.144.0/24 19468 -63.232.145.0/24 209 -63.232.146.0/23 209 -63.232.148.0/22 209 -63.232.152.0/21 209 -63.232.160.0/21 209 -63.232.168.0/23 209 -63.232.170.0/24 209 -63.232.171.0/24 14230 -63.232.172.0/22 209 -63.232.176.0/20 209 -63.232.192.0/22 209 -63.232.196.0/24 209 -63.232.197.0/24 394306 -63.232.198.0/23 209 -63.232.200.0/22 209 -63.232.204.0/23 209 -63.232.206.0/24 54573 -63.232.207.0/24 209 -63.232.208.0/20 209 -63.232.224.0/22 209 -63.232.228.0/23 209 -63.232.230.0/24 209 -63.232.231.0/24 12113 -63.232.232.0/22 209 -63.232.236.0/24 53316 -63.232.237.0/24 209 -63.232.238.0/23 209 -63.232.240.0/21 209 -63.232.248.0/24 15185 -63.232.249.0/24 19546 -63.232.250.0/24 23221 -63.232.251.0/24 209 -63.232.252.0/23 393806 -63.232.254.0/23 209 -63.233.0.0/20 209 -63.233.16.0/21 209 -63.233.24.0/22 209 -63.233.28.0/24 209 -63.233.29.0/24 21509 -63.233.30.0/23 209 -63.233.32.0/20 209 -63.233.48.0/21 209 -63.233.56.0/22 209 -63.233.60.0/23 20940 -63.233.62.0/24 209 -63.233.63.0/24 11962 -63.233.64.0/21 209 -63.233.72.0/22 209 -63.233.76.0/23 209 -63.233.78.0/24 209 -63.233.79.0/24 19031 -63.233.80.0/21 209 -63.233.88.0/23 209 -63.233.90.0/24 14055 -63.233.91.0/24 209 -63.233.92.0/22 209 -63.233.96.0/21 209 -63.233.104.0/24 209 -63.233.105.0/24 21509 -63.233.106.0/23 209 -63.233.108.0/22 209 -63.233.112.0/24 20940 -63.233.113.0/24 209 -63.233.114.0/23 209 -63.233.116.0/22 209 -63.233.120.0/22 209 -63.233.124.0/23 209 -63.233.126.0/24 20940 -63.233.127.0/24 209 -63.233.128.0/18 209 -63.233.192.0/20 209 -63.233.208.0/21 209 -63.233.216.0/22 209 -63.233.220.0/23 395245 -63.233.222.0/23 209 -63.233.224.0/24 20940 -63.233.225.0/24 209 -63.233.226.0/24 209 -63.233.227.0/24 23004 -63.233.228.0/22 209 -63.233.232.0/21 209 -63.233.240.0/20 209 -63.234.0.0/20 209 -63.234.16.0/21 209 -63.234.24.0/22 209 -63.234.28.0/24 209 -63.234.29.0/24 63182 -63.234.30.0/24 14161 -63.234.31.0/24 209 -63.234.32.0/19 209 -63.234.64.0/20 209 -63.234.80.0/23 209 -63.234.82.0/24 209 -63.234.83.0/24 23178 -63.234.84.0/22 209 -63.234.88.0/22 209 -63.234.92.0/23 209 -63.234.94.0/24 53655 -63.234.95.0/24 209 -63.234.96.0/19 209 -63.234.128.0/18 209 -63.234.192.0/20 209 -63.234.208.0/24 209 -63.234.209.0/24 18795 -63.234.210.0/23 209 -63.234.212.0/23 209 -63.234.214.0/24 35917 -63.234.215.0/24 209 -63.234.216.0/21 209 -63.234.224.0/22 209 -63.234.228.0/23 209 -63.234.230.0/24 17164 -63.234.231.0/24 209 -63.234.232.0/24 12068 -63.234.233.0/24 209 -63.234.234.0/23 209 -63.234.236.0/22 209 -63.234.240.0/24 21509 -63.234.241.0/24 33603 -63.234.242.0/23 209 -63.234.244.0/22 209 -63.234.248.0/21 209 -63.235.0.0/21 209 -63.235.8.0/22 209 -63.235.12.0/24 209 -63.235.13.0/24 397818 -63.235.14.0/23 209 -63.235.16.0/22 209 -63.235.20.0/23 20940 -63.235.22.0/23 209 -63.235.24.0/21 209 -63.235.32.0/20 209 -63.235.48.0/21 209 -63.235.56.0/22 209 -63.235.60.0/24 209 -63.235.61.0/24 32848 -63.235.62.0/24 209 -63.235.63.0/24 26373 -63.235.64.0/19 209 -63.235.96.0/22 209 -63.235.100.0/24 209 -63.235.101.0/24 10511 -63.235.102.0/23 209 -63.235.104.0/21 209 -63.235.112.0/21 209 -63.235.120.0/24 14597 -63.235.121.0/24 209 -63.235.122.0/23 209 -63.235.124.0/22 209 -63.235.128.0/23 209 -63.235.130.0/24 10511 -63.235.131.0/24 209 -63.235.132.0/22 209 -63.235.136.0/21 209 -63.235.144.0/24 3561 -63.235.145.0/24 209 -63.235.146.0/23 209 -63.235.148.0/22 209 -63.235.152.0/21 209 -63.235.160.0/22 209 -63.235.164.0/22 14567 -63.235.168.0/21 209 -63.235.176.0/21 209 -63.235.184.0/22 209 -63.235.188.0/23 26244 -63.235.190.0/23 209 -63.235.192.0/18 209 -63.236.0.0/19 209 -63.236.32.0/20 209 -63.236.48.0/23 209 -63.236.50.0/24 209 -63.236.51.0/24 54450 -63.236.52.0/22 209 -63.236.56.0/21 209 -63.236.64.0/21 209 -63.236.72.0/22 209 -63.236.76.0/23 53316 -63.236.78.0/23 209 -63.236.80.0/20 209 -63.236.96.0/22 209 -63.236.100.0/24 21622 -63.236.101.0/24 209 -63.236.102.0/23 209 -63.236.104.0/21 209 -63.236.112.0/20 209 -63.236.128.0/18 209 -63.236.192.0/20 209 -63.236.208.0/22 209 -63.236.212.0/23 209 -63.236.214.0/24 209 -63.236.215.0/24 14378 -63.236.216.0/24 209 -63.236.217.0/24 394709 -63.236.218.0/23 209 -63.236.220.0/22 209 -63.236.224.0/21 209 -63.236.232.0/23 209 -63.236.234.0/24 27624 -63.236.235.0/24 209 -63.236.236.0/22 209 -63.236.240.0/22 19031 -63.236.244.0/22 209 -63.236.248.0/22 209 -63.236.252.0/23 209 -63.236.254.0/23 36120 -63.237.0.0/23 209 -63.237.2.0/24 209 -63.237.3.0/24 22992 -63.237.4.0/22 209 -63.237.8.0/21 209 -63.237.16.0/22 209 -63.237.20.0/24 53272 -63.237.21.0/24 209 -63.237.22.0/23 209 -63.237.24.0/21 209 -63.237.32.0/21 209 -63.237.40.0/23 209 -63.237.42.0/24 209 -63.237.43.0/24 31890 -63.237.44.0/22 209 -63.237.48.0/23 209 -63.237.50.0/24 209 -63.237.51.0/24 18618 -63.237.52.0/22 209 -63.237.56.0/21 209 -63.237.64.0/22 209 -63.237.68.0/24 209 -63.237.69.0/24 16431 -63.237.70.0/23 209 -63.237.72.0/22 209 -63.237.76.0/24 209 -63.237.77.0/24 22473 -63.237.78.0/23 209 -63.237.80.0/24 395800 -63.237.81.0/24 209 -63.237.82.0/23 209 -63.237.84.0/22 209 -63.237.88.0/24 396989 -63.237.89.0/24 209 -63.237.90.0/23 209 -63.237.92.0/22 209 -63.237.96.0/19 209 -63.237.128.0/21 209 -63.237.136.0/24 11223 -63.237.137.0/24 209 -63.237.138.0/23 209 -63.237.140.0/22 209 -63.237.144.0/23 209 -63.237.146.0/24 209 -63.237.147.0/24 33376 -63.237.148.0/22 209 -63.237.152.0/21 209 -63.237.160.0/19 209 -63.237.192.0/19 209 -63.237.224.0/21 209 -63.237.232.0/24 209 -63.237.233.0/24 40272 -63.237.234.0/23 209 -63.237.236.0/22 209 -63.237.240.0/21 209 -63.237.248.0/24 11505 -63.237.249.0/24 209 -63.237.250.0/23 209 -63.237.252.0/22 209 -63.238.0.0/24 209 -63.238.1.0/24 32664 -63.238.2.0/23 209 -63.238.4.0/22 209 -63.238.8.0/21 209 -63.238.16.0/21 209 -63.238.24.0/22 209 -63.238.28.0/23 209 -63.238.30.0/24 209 -63.238.31.0/24 10333 -63.238.32.0/21 209 -63.238.40.0/22 209 -63.238.44.0/23 209 -63.238.46.0/24 209 -63.238.47.0/24 394757 -63.238.48.0/22 209 -63.238.52.0/23 14793 -63.238.54.0/24 14793 -63.238.55.0/24 32040 -63.238.56.0/21 209 -63.238.64.0/21 209 -63.238.72.0/22 397288 -63.238.76.0/22 209 -63.238.80.0/20 209 -63.238.96.0/22 209 -63.238.100.0/23 209 -63.238.102.0/24 209 -63.238.103.0/24 23083 -63.238.104.0/23 13994 -63.238.106.0/24 13994 -63.238.107.0/24 209 -63.238.108.0/24 209 -63.238.109.0/24 13781 -63.238.110.0/24 13781 -63.238.111.0/24 209 -63.238.112.0/22 209 -63.238.116.0/23 32571 -63.238.118.0/23 209 -63.238.120.0/24 397486 -63.238.121.0/24 209 -63.238.122.0/24 17143 -63.238.123.0/24 209 -63.238.124.0/22 209 -63.238.128.0/22 55193 -63.238.132.0/22 209 -63.238.136.0/23 209 -63.238.138.0/24 209 -63.238.139.0/24 13314 -63.238.140.0/22 209 -63.238.144.0/21 209 -63.238.152.0/23 209 -63.238.154.0/23 53282 -63.238.156.0/23 47095 -63.238.158.0/23 209 -63.238.160.0/21 209 -63.238.168.0/24 209 -63.238.169.0/24 10945 -63.238.170.0/23 209 -63.238.172.0/22 209 -63.238.176.0/20 209 -63.238.192.0/19 209 -63.238.224.0/20 209 -63.238.240.0/21 209 -63.238.248.0/23 209 -63.238.250.0/24 209 -63.238.251.0/24 20940 -63.238.252.0/22 209 -63.239.0.0/20 209 -63.239.16.0/24 209 -63.239.17.0/24 13626 -63.239.18.0/23 209 -63.239.20.0/22 209 -63.239.24.0/21 209 -63.239.32.0/19 209 -63.239.64.0/22 209 -63.239.68.0/23 209 -63.239.70.0/24 20166 -63.239.71.0/24 209 -63.239.72.0/21 209 -63.239.80.0/22 209 -63.239.84.0/23 209 -63.239.86.0/24 22992 -63.239.87.0/24 209 -63.239.88.0/23 209 -63.239.90.0/23 53272 -63.239.92.0/22 209 -63.239.96.0/22 209 -63.239.100.0/24 19031 -63.239.101.0/24 209 -63.239.102.0/23 209 -63.239.104.0/21 209 -63.239.112.0/22 209 -63.239.116.0/24 20077 -63.239.117.0/24 3257 -63.239.118.0/23 209 -63.239.120.0/21 209 -63.239.128.0/22 209 -63.239.132.0/23 209 -63.239.134.0/24 209 -63.239.135.0/24 10886 -63.239.136.0/21 209 -63.239.144.0/20 209 -63.239.160.0/21 209 -63.239.168.0/23 209 -63.239.170.0/24 40122 -63.239.171.0/24 209 -63.239.172.0/22 209 -63.239.176.0/21 209 -63.239.184.0/23 209 -63.239.186.0/24 13683 -63.239.187.0/24 209 -63.239.188.0/22 209 -63.239.192.0/21 209 -63.239.200.0/22 209 -63.239.204.0/23 53316 -63.239.206.0/23 209 -63.239.208.0/20 209 -63.239.224.0/21 209 -63.239.232.0/23 20940 -63.239.234.0/23 209 -63.239.236.0/22 209 -63.239.240.0/21 209 -63.239.248.0/22 209 -63.239.252.0/23 209 -63.239.254.0/24 209 -63.239.255.0/24 394953 -63.240.0.0/18 4264 -63.240.64.0/20 17232 -63.240.80.0/24 7018 -63.240.81.0/24 17232 -63.240.82.0/23 17232 -63.240.84.0/22 17232 -63.240.88.0/21 17232 -63.240.96.0/22 17232 -63.240.100.0/24 17232 -63.240.101.0/24 7105 -63.240.102.0/24 7105 -63.240.103.0/24 17232 -63.240.104.0/21 17232 -63.240.112.0/22 17232 -63.240.116.0/23 17232 -63.240.118.0/24 17232 -63.240.119.0/24 7018 -63.240.120.0/22 2386 -63.240.124.0/22 17232 -63.240.128.0/21 17229 -63.240.136.0/24 7018 -63.240.137.0/24 17229 -63.240.138.0/23 17229 -63.240.140.0/22 17229 -63.240.144.0/23 17229 -63.240.146.0/24 7018 -63.240.147.0/24 17229 -63.240.148.0/22 17229 -63.240.152.0/23 17229 -63.240.154.0/23 7018 -63.240.156.0/24 17229 -63.240.157.0/24 7018 -63.240.158.0/24 7018 -63.240.159.0/24 17229 -63.240.160.0/22 17229 -63.240.164.0/23 7018 -63.240.166.0/23 17229 -63.240.168.0/22 17229 -63.240.172.0/24 7018 -63.240.173.0/24 17229 -63.240.174.0/23 17229 -63.240.176.0/24 17229 -63.240.177.0/24 7018 -63.240.178.0/24 7018 -63.240.179.0/24 17229 -63.240.180.0/23 17229 -63.240.182.0/24 7018 -63.240.183.0/24 17229 -63.240.184.0/21 7018 -63.240.192.0/20 17231 -63.240.208.0/22 17231 -63.240.212.0/23 17231 -63.240.214.0/23 7018 -63.240.216.0/21 17231 -63.240.224.0/23 7018 -63.240.226.0/24 7018 -63.240.227.0/24 16959 -63.240.228.0/24 16959 -63.240.229.0/24 7018 -63.240.230.0/23 7018 -63.240.232.0/21 7018 -63.240.240.0/22 16959 -63.240.244.0/22 7018 -63.240.248.0/23 7018 -63.240.250.0/24 16959 -63.240.251.0/24 7018 -63.240.252.0/22 7018 -63.241.0.0/20 4266 -63.241.16.0/21 4266 -63.241.24.0/22 4266 -63.241.28.0/23 4266 -63.241.30.0/24 7018 -63.241.31.0/24 4266 -63.241.32.0/21 4266 -63.241.40.0/23 13788 -63.241.42.0/24 13788 -63.241.43.0/24 4266 -63.241.44.0/24 13788 -63.241.45.0/24 4266 -63.241.46.0/23 4266 -63.241.48.0/20 4266 -63.241.64.0/21 4265 -63.241.72.0/23 4265 -63.241.74.0/24 4265 -63.241.75.0/24 7018 -63.241.76.0/22 4265 -63.241.80.0/24 4265 -63.241.81.0/24 7018 -63.241.82.0/23 4265 -63.241.84.0/23 4265 -63.241.86.0/24 4265 -63.241.87.0/24 7018 -63.241.88.0/23 4265 -63.241.90.0/24 53825 -63.241.91.0/24 7018 -63.241.92.0/24 4265 -63.241.93.0/24 54981 -63.241.94.0/24 7018 -63.241.95.0/24 4265 -63.241.96.0/22 4269 -63.241.100.0/23 4269 -63.241.102.0/24 4269 -63.241.103.0/24 394803 -63.241.104.0/24 4269 -63.241.105.0/24 7018 -63.241.106.0/23 4269 -63.241.108.0/23 4269 -63.241.110.0/24 17903 -63.241.111.0/24 4269 -63.241.112.0/20 4269 -63.241.128.0/21 4267 -63.241.136.0/22 4267 -63.241.140.0/23 4267 -63.241.142.0/24 4267 -63.241.143.0/24 2386 -63.241.144.0/23 4267 -63.241.146.0/24 7018 -63.241.147.0/24 4267 -63.241.148.0/24 27271 -63.241.149.0/24 4267 -63.241.150.0/24 2386 -63.241.151.0/24 4267 -63.241.152.0/23 4267 -63.241.154.0/24 7018 -63.241.155.0/24 4267 -63.241.156.0/23 2386 -63.241.158.0/24 2386 -63.241.159.0/24 7018 -63.241.160.0/23 4267 -63.241.162.0/23 7018 -63.241.164.0/24 4267 -63.241.165.0/24 7018 -63.241.166.0/24 27271 -63.241.167.0/24 4267 -63.241.168.0/24 4267 -63.241.169.0/24 7018 -63.241.170.0/24 4267 -63.241.171.0/24 7018 -63.241.172.0/24 7018 -63.241.173.0/24 2386 -63.241.174.0/23 4267 -63.241.176.0/23 4267 -63.241.178.0/24 4267 -63.241.179.0/24 2386 -63.241.180.0/22 4267 -63.241.184.0/23 4267 -63.241.186.0/23 7018 -63.241.188.0/23 4267 -63.241.190.0/23 2386 -63.241.192.0/21 17227 -63.241.200.0/22 17227 -63.241.204.0/24 17227 -63.241.205.0/24 7018 -63.241.206.0/23 17227 -63.241.208.0/23 17227 -63.241.210.0/24 17227 -63.241.211.0/24 7018 -63.241.212.0/22 17227 -63.241.216.0/22 17227 -63.241.220.0/23 17227 -63.241.222.0/24 7018 -63.241.223.0/24 17227 -63.241.224.0/22 17227 -63.241.228.0/23 17227 -63.241.230.0/24 7018 -63.241.231.0/24 17227 -63.241.232.0/24 7018 -63.241.233.0/24 17227 -63.241.234.0/24 18604 -63.241.235.0/24 7018 -63.241.236.0/23 17227 -63.241.238.0/24 7018 -63.241.239.0/24 17227 -63.241.240.0/24 7018 -63.241.241.0/24 17227 -63.241.242.0/23 17227 -63.241.244.0/22 17227 -63.241.248.0/22 17227 -63.241.252.0/24 18604 -63.241.253.0/24 17227 -63.241.254.0/23 17227 -63.242.0.0/16 7018 -63.243.0.0/18 7029 -63.243.64.0/19 7029 -63.243.96.0/21 7029 -63.243.104.0/24 11021 -63.243.105.0/24 7029 -63.243.106.0/23 7029 -63.243.108.0/22 7029 -63.243.112.0/20 7029 -63.243.128.0/22 6453 -63.243.132.0/24 40676 -63.243.133.0/24 6453 -63.243.134.0/23 6453 -63.243.136.0/21 6453 -63.243.144.0/20 6453 -63.243.160.0/22 6453 -63.243.164.0/24 10929 -63.243.165.0/24 6453 -63.243.166.0/23 6453 -63.243.168.0/21 6453 -63.243.176.0/20 6453 -63.243.192.0/22 6453 -63.243.196.0/23 6453 -63.243.198.0/24 6453 -63.243.199.0/24 20001 -63.243.200.0/21 6453 -63.243.208.0/20 6453 -63.243.224.0/22 6453 -63.243.228.0/24 20940 -63.243.229.0/24 6453 -63.243.230.0/24 20940 -63.243.231.0/24 6453 -63.243.232.0/21 6453 -63.243.240.0/21 6453 -63.243.248.0/22 6453 -63.243.252.0/24 55967 -63.243.253.0/24 6453 -63.243.254.0/23 6453 -63.244.0.0/17 25929 -63.244.128.0/18 25929 -63.244.192.0/19 25929 -63.244.224.0/20 25929 -63.244.240.0/24 25929 -63.244.241.0/24 49274 -63.244.242.0/23 49274 -63.244.244.0/22 25929 -63.244.248.0/21 25929 -63.245.0.0/21 23520 -63.245.8.0/21 27696 -63.245.16.0/22 27696 -63.245.20.0/23 23520 -63.245.22.0/24 62627 -63.245.23.0/24 23520 -63.245.24.0/22 23520 -63.245.28.0/23 23520 -63.245.30.0/23 46650 -63.245.32.0/20 23520 -63.245.48.0/21 14813 -63.245.56.0/22 46650 -63.245.60.0/24 23520 -63.245.61.0/24 28506 -63.245.62.0/24 28506 -63.245.63.0/24 23520 -63.245.64.0/23 23520 -63.245.66.0/23 46650 -63.245.68.0/22 23520 -63.245.72.0/21 23520 -63.245.80.0/21 23520 -63.245.88.0/23 62627 -63.245.90.0/23 23520 -63.245.92.0/24 23520 -63.245.93.0/24 62627 -63.245.94.0/24 23520 -63.245.95.0/24 62627 -63.245.96.0/24 18678 -63.245.97.0/24 23520 -63.245.98.0/23 23520 -63.245.100.0/22 23520 -63.245.104.0/24 23520 -63.245.105.0/24 265590 -63.245.106.0/23 23520 -63.245.108.0/23 52233 -63.245.110.0/23 23520 -63.245.112.0/20 8014 -63.245.128.0/22 32758 -63.245.132.0/24 32694 -63.245.135.0/24 32694 -63.245.136.0/24 32694 -63.245.137.0/24 15165 -63.245.138.0/23 32694 -63.245.140.0/23 15165 -63.245.142.0/24 47028 -63.245.143.0/24 32800 -63.245.144.0/22 32800 -63.245.148.0/23 32758 -63.245.150.0/23 14155 -63.245.152.0/24 32758 -63.245.153.0/24 15165 -63.245.154.0/24 32694 -63.245.155.0/24 32758 -63.245.156.0/22 15165 -63.245.160.0/23 15165 -63.245.162.0/23 23452 -63.245.164.0/22 32758 -63.245.168.0/24 32758 -63.245.169.0/24 15165 -63.245.170.0/23 32694 -63.245.172.0/23 32694 -63.245.174.0/24 32758 -63.245.175.0/24 15165 -63.245.176.0/23 32758 -63.245.178.0/23 32800 -63.245.180.0/23 393796 -63.245.182.0/23 32800 -63.245.184.0/24 15165 -63.245.185.0/24 32758 -63.245.186.0/24 32800 -63.245.187.0/24 15165 -63.245.188.0/23 32758 -63.245.190.0/23 32800 -63.245.192.0/23 26282 -63.245.204.0/22 26282 -63.245.208.0/23 36856 -63.245.210.0/23 53371 -63.245.212.0/24 395642 -63.245.218.0/24 395639 -63.245.220.0/24 395622 -63.245.221.0/24 395602 -63.245.222.0/24 395606 -63.245.224.0/23 19685 -63.245.227.0/24 19685 -63.245.228.0/23 19685 -63.245.232.0/24 19685 -63.245.236.0/24 19685 -63.245.239.0/24 26267 -63.245.242.0/23 19685 -63.245.244.0/23 19685 -63.245.252.0/23 19685 -63.245.255.0/24 19685 -63.246.0.0/19 27467 -63.246.32.0/20 715 -63.246.48.0/20 15054 -63.246.64.0/22 7268 -63.246.68.0/22 7029 -63.246.72.0/22 7268 -63.246.76.0/22 7029 -63.246.80.0/21 7029 -63.246.88.0/22 7029 -63.246.92.0/23 7029 -63.246.94.0/24 393278 -63.246.95.0/24 7029 -63.246.96.0/20 27419 -63.246.128.0/24 62904 -63.246.129.0/24 64200 -63.246.130.0/23 64200 -63.246.132.0/23 64200 -63.246.134.0/24 27602 -63.246.135.0/24 262287 -63.246.136.0/23 64200 -63.246.138.0/24 397661 -63.246.139.0/24 64200 -63.246.140.0/23 20276 -63.246.142.0/24 64200 -63.246.143.0/24 397377 -63.246.144.0/24 7018 -63.246.145.0/24 64200 -63.246.146.0/23 64200 -63.246.148.0/22 64200 -63.246.152.0/24 64200 -63.246.153.0/24 9009 -63.246.155.0/24 397334 -63.246.158.0/23 64200 -63.246.160.0/19 11427 -63.246.192.0/19 7029 -63.246.224.0/20 46452 -63.246.240.0/20 40128 -63.247.0.0/21 27609 -63.247.8.0/22 27609 -63.247.13.0/24 27609 -63.247.14.0/23 27609 -63.247.16.0/21 27609 -63.247.24.0/22 27609 -63.247.28.0/23 27609 -63.247.32.0/20 10352 -63.247.48.0/20 40229 -63.247.64.0/21 11042 -63.247.72.0/22 11042 -63.247.76.0/23 11042 -63.247.78.0/24 11042 -63.247.79.0/24 7226 -63.247.80.0/20 11042 -63.247.96.0/20 23400 -63.247.112.0/20 40144 -63.247.128.0/20 19271 -63.247.144.0/20 30221 -63.247.160.0/22 6128 -63.247.164.0/24 30527 -63.247.165.0/24 6128 -63.247.166.0/24 36667 -63.247.167.0/24 6128 -63.247.168.0/24 6128 -63.247.169.0/24 54004 -63.247.170.0/23 6128 -63.247.172.0/22 6128 -63.247.176.0/22 6128 -63.247.180.0/23 6128 -63.247.182.0/24 6128 -63.247.183.0/24 54004 -63.247.184.0/22 6128 -63.247.188.0/24 6128 -63.247.189.0/24 15319 -63.247.190.0/23 6128 -63.247.192.0/23 15695 -63.247.194.0/24 15695 -63.247.208.0/20 49808 -63.247.224.0/19 174 -63.248.0.0/16 23205 -63.249.0.0/21 3742 -63.249.8.0/22 3742 -63.249.12.0/24 3742 -63.249.13.0/24 22030 -63.249.14.0/23 22030 -63.249.16.0/21 22030 -63.249.24.0/24 3742 -63.249.25.0/24 22030 -63.249.26.0/23 3742 -63.249.28.0/22 3742 -63.249.32.0/20 17306 -63.249.48.0/21 14978 -63.249.56.0/22 14978 -63.249.60.0/23 14978 -63.249.62.0/24 14978 -63.249.63.0/24 6461 -63.249.64.0/20 11994 -63.249.80.0/22 11994 -63.249.84.0/22 7065 -63.249.88.0/22 7065 -63.249.92.0/22 11994 -63.249.96.0/21 11994 -63.249.104.0/21 7065 -63.249.112.0/21 7065 -63.249.120.0/21 11994 -63.249.128.0/17 54489 -63.250.0.0/22 12180 -63.250.4.0/22 27229 -63.250.8.0/21 27229 -63.250.16.0/20 27229 -63.250.32.0/20 22612 -63.250.48.0/22 29909 -63.250.52.0/22 4906 -63.250.56.0/23 41436 -63.250.58.0/23 4906 -63.250.60.0/24 204548 -63.250.61.0/24 4906 -63.250.62.0/24 12400 -63.250.63.0/24 4906 -63.250.64.0/20 11069 -63.250.80.0/21 11069 -63.250.88.0/22 19263 -63.250.92.0/22 11069 -63.250.96.0/19 21570 -63.250.128.0/18 3300 -63.250.192.0/22 36647 -63.250.196.0/22 26101 -63.250.200.0/22 26101 -63.250.204.0/22 36647 -63.250.208.0/20 36647 -63.250.224.0/23 7029 -63.250.226.0/24 7029 -63.250.227.0/24 26255 -63.250.228.0/22 7029 -63.250.232.0/21 7029 -63.250.240.0/21 7029 -63.250.248.0/22 7029 -63.250.252.0/24 27482 -63.250.253.0/24 7029 -63.250.254.0/23 7029 -63.251.0.0/21 14744 -63.251.8.0/22 14744 -63.251.12.0/23 14744 -63.251.14.0/23 32475 -63.251.16.0/21 13789 -63.251.24.0/22 13789 -63.251.28.0/24 26558 -63.251.29.0/24 13789 -63.251.30.0/23 13789 -63.251.32.0/23 12179 -63.251.34.0/24 12179 -63.251.35.0/24 393954 -63.251.36.0/24 12179 -63.251.37.0/24 8097 -63.251.38.0/23 12179 -63.251.40.0/23 12179 -63.251.42.0/24 63018 -63.251.43.0/24 12179 -63.251.44.0/22 12179 -63.251.48.0/24 14743 -63.251.49.0/24 55034 -63.251.50.0/23 14743 -63.251.52.0/23 14743 -63.251.54.0/24 14743 -63.251.55.0/24 22202 -63.251.56.0/24 25985 -63.251.57.0/24 14743 -63.251.58.0/23 14743 -63.251.60.0/22 14743 -63.251.64.0/21 14745 -63.251.72.0/22 14745 -63.251.76.0/24 14745 -63.251.77.0/24 6318 -63.251.78.0/24 30636 -63.251.79.0/24 14745 -63.251.80.0/24 10913 -63.251.81.0/24 26353 -63.251.82.0/23 10913 -63.251.84.0/23 10913 -63.251.86.0/23 32475 -63.251.88.0/22 10913 -63.251.92.0/24 10913 -63.251.93.0/24 46071 -63.251.94.0/24 31753 -63.251.95.0/24 10913 -63.251.96.0/22 29791 -63.251.100.0/23 12182 -63.251.102.0/24 46474 -63.251.103.0/24 12182 -63.251.104.0/22 29791 -63.251.108.0/24 16417 -63.251.109.0/24 36062 -63.251.110.0/23 24247 -63.251.112.0/22 29791 -63.251.116.0/23 394506 -63.251.118.0/24 19525 -63.251.119.0/24 12181 -63.251.120.0/23 394506 -63.251.122.0/24 12181 -63.251.123.0/24 33433 -63.251.124.0/22 14636 -63.251.128.0/21 14742 -63.251.136.0/22 27382 -63.251.140.0/22 14742 -63.251.144.0/24 12180 -63.251.145.0/24 10912 -63.251.146.0/23 12180 -63.251.148.0/22 12180 -63.251.152.0/23 12180 -63.251.154.0/24 53865 -63.251.155.0/24 27229 -63.251.156.0/23 12180 -63.251.158.0/24 21744 -63.251.159.0/24 12180 -63.251.160.0/22 14744 -63.251.164.0/23 14744 -63.251.166.0/24 46501 -63.251.167.0/24 14744 -63.251.168.0/21 14744 -63.251.176.0/22 13790 -63.251.180.0/24 26550 -63.251.181.0/24 13790 -63.251.182.0/24 395110 -63.251.183.0/24 53766 -63.251.184.0/23 13790 -63.251.186.0/23 63188 -63.251.188.0/22 13790 -63.251.192.0/24 13789 -63.251.193.0/24 10912 -63.251.194.0/24 395864 -63.251.195.0/24 10912 -63.251.196.0/23 10912 -63.251.198.0/23 23433 -63.251.200.0/22 10912 -63.251.204.0/24 12180 -63.251.205.0/24 10912 -63.251.206.0/24 5693 -63.251.207.0/24 10912 -63.251.208.0/22 10912 -63.251.212.0/24 15074 -63.251.213.0/24 10912 -63.251.214.0/23 63381 -63.251.216.0/24 53766 -63.251.217.0/24 10912 -63.251.218.0/24 394183 -63.251.219.0/24 10912 -63.251.220.0/24 10912 -63.251.221.0/24 33134 -63.251.222.0/24 395291 -63.251.223.0/24 10912 -63.251.224.0/22 29791 -63.251.228.0/24 16830 -63.251.232.0/22 29791 -63.251.238.0/23 29791 -63.251.240.0/22 29791 -63.251.244.0/22 14743 -63.251.248.0/23 14743 -63.251.250.0/24 18504 -63.251.251.0/24 55034 -63.251.252.0/22 29791 -63.252.0.0/18 7029 -63.252.64.0/20 7029 -63.252.80.0/21 7029 -63.252.88.0/22 7029 -63.252.92.0/24 7029 -63.252.93.0/24 16402 -63.252.94.0/23 7029 -63.252.96.0/19 7029 -63.252.128.0/18 7029 -63.252.192.0/21 7029 -63.252.200.0/22 7029 -63.252.204.0/23 7029 -63.252.206.0/24 18633 -63.252.207.0/24 7029 -63.252.208.0/20 7029 -63.252.224.0/22 7029 -63.252.228.0/22 19625 -63.252.232.0/22 19625 -63.252.236.0/22 7029 -63.252.240.0/21 19625 -63.252.248.0/21 7029 -63.253.0.0/16 7029 -63.254.0.0/20 7029 -63.254.16.0/21 7029 -63.254.24.0/23 7029 -63.254.26.0/24 14125 -63.254.27.0/24 7029 -63.254.28.0/22 7029 -63.254.32.0/19 7029 -63.254.64.0/18 7029 -63.254.128.0/20 7029 -63.254.144.0/21 7029 -63.254.152.0/22 7349 -63.254.156.0/22 17378 -63.254.160.0/19 7029 -63.254.192.0/18 7029 -63.255.0.0/19 7029 -63.255.32.0/20 7029 -63.255.48.0/21 7029 -63.255.56.0/22 7029 -63.255.60.0/24 7029 -63.255.61.0/24 36104 -63.255.62.0/23 7029 -63.255.64.0/18 7029 -63.255.128.0/19 7029 -63.255.160.0/21 7029 -63.255.168.0/22 7029 -63.255.172.0/24 7029 -63.255.173.0/24 23389 -63.255.174.0/23 7029 -63.255.176.0/20 7029 -63.255.192.0/18 7029 -64.0.0.0/21 2828 -64.0.8.0/22 3845 -64.0.12.0/22 2828 -64.0.16.0/21 2828 -64.0.24.0/22 2828 -64.0.28.0/24 2828 -64.0.29.0/24 30718 -64.0.30.0/23 2828 -64.0.32.0/20 2828 -64.0.48.0/21 2828 -64.0.56.0/22 2828 -64.0.60.0/22 3845 -64.0.64.0/18 2828 -64.0.128.0/18 2828 -64.0.192.0/24 7014 -64.0.193.0/24 2828 -64.0.194.0/23 2828 -64.0.196.0/22 2828 -64.0.200.0/21 2828 -64.0.208.0/20 2828 -64.0.224.0/19 2828 -64.1.0.0/21 2828 -64.1.8.0/22 7014 -64.1.12.0/22 2828 -64.1.16.0/21 2828 -64.1.24.0/24 701 -64.1.25.0/24 2828 -64.1.26.0/23 2828 -64.1.28.0/23 2828 -64.1.30.0/24 2828 -64.1.31.0/24 701 -64.1.32.0/19 2828 -64.1.64.0/24 2828 -64.1.65.0/24 394027 -64.1.66.0/23 2828 -64.1.68.0/22 2828 -64.1.72.0/21 7029 -64.1.80.0/20 2828 -64.1.96.0/22 2828 -64.1.100.0/24 2828 -64.1.101.0/24 47051 -64.1.102.0/23 2828 -64.1.104.0/21 2828 -64.1.112.0/20 2828 -64.1.128.0/17 2828 -64.2.0.0/20 2828 -64.2.16.0/22 2828 -64.2.20.0/24 2828 -64.2.21.0/24 22199 -64.2.22.0/23 2828 -64.2.24.0/21 2828 -64.2.32.0/19 2828 -64.2.64.0/18 2828 -64.2.128.0/21 2828 -64.2.136.0/22 2828 -64.2.140.0/23 2828 -64.2.142.0/24 5715 -64.2.143.0/24 2828 -64.2.144.0/20 2828 -64.2.160.0/19 2828 -64.2.192.0/18 2828 -64.3.0.0/19 2828 -64.3.32.0/20 2828 -64.3.48.0/21 2828 -64.3.56.0/22 2828 -64.3.60.0/24 395052 -64.3.61.0/24 2828 -64.3.62.0/23 2828 -64.3.64.0/18 2828 -64.3.128.0/18 2828 -64.3.192.0/20 2828 -64.3.208.0/22 2828 -64.3.212.0/23 11758 -64.3.214.0/23 2828 -64.3.216.0/21 2828 -64.3.224.0/19 2828 -64.4.0.0/19 8075 -64.4.32.0/20 8075 -64.4.48.0/24 8068 -64.4.49.0/24 8075 -64.4.50.0/23 8075 -64.4.52.0/22 8075 -64.4.56.0/21 8075 -64.4.64.0/19 7122 -64.4.96.0/19 7795 -64.4.128.0/19 4927 -64.4.168.0/24 62685 -64.4.169.0/24 395841 -64.4.170.0/24 62685 -64.4.171.0/24 55884 -64.4.172.0/23 32488 -64.4.174.0/24 54406 -64.4.175.0/24 397715 -64.4.176.0/20 36612 -64.4.192.0/19 174 -64.4.224.0/20 11090 -64.4.240.0/21 17012 -64.4.248.0/22 17012 -64.4.252.0/22 11643 -64.5.0.0/19 14107 -64.5.32.0/20 36351 -64.5.48.0/22 36351 -64.5.52.0/24 36351 -64.5.53.0/24 63949 -64.5.54.0/23 36351 -64.5.56.0/21 36351 -64.5.64.0/20 32867 -64.5.81.0/24 33680 -64.5.90.0/24 33680 -64.5.93.0/24 33680 -64.5.94.0/24 33680 -64.5.98.0/23 55106 -64.5.100.0/24 55106 -64.5.103.0/24 55106 -64.5.104.0/24 55106 -64.5.112.0/24 22820 -64.5.119.0/24 397146 -64.5.121.0/24 26319 -64.5.122.0/24 11403 -64.5.123.0/24 396089 -64.5.124.0/22 22820 -64.5.128.0/20 11221 -64.5.144.0/24 19354 -64.5.145.0/24 11221 -64.5.146.0/24 11221 -64.5.147.0/24 22773 -64.5.154.0/23 11221 -64.5.156.0/24 11221 -64.5.160.0/19 23432 -64.6.0.0/20 14363 -64.6.16.0/24 23274 -64.6.20.0/22 23274 -64.6.28.0/23 23274 -64.6.30.0/24 23274 -64.6.32.0/20 13740 -64.6.48.0/22 13740 -64.6.52.0/23 13740 -64.6.54.0/24 13740 -64.6.64.0/24 20172 -64.6.65.0/24 10515 -64.6.72.0/22 26415 -64.6.76.0/23 26415 -64.6.78.0/24 26415 -64.6.79.0/24 7342 -64.6.86.0/23 26415 -64.6.88.0/24 16509 -64.6.92.0/24 7342 -64.6.93.0/24 26415 -64.6.96.0/20 19237 -64.6.112.0/20 19504 -64.6.128.0/23 8159 -64.6.130.0/24 27425 -64.6.131.0/24 8159 -64.6.132.0/22 8159 -64.6.136.0/21 8159 -64.6.144.0/20 8159 -64.6.160.0/23 18566 -64.6.162.0/23 4565 -64.6.164.0/22 18566 -64.6.168.0/21 4565 -64.6.176.0/20 4565 -64.6.208.0/20 19783 -64.6.224.0/19 17054 -64.7.0.0/19 4565 -64.7.32.0/20 8010 -64.7.48.0/22 8010 -64.7.52.0/24 4565 -64.7.53.0/24 8010 -64.7.54.0/23 8010 -64.7.56.0/21 8010 -64.7.64.0/19 53497 -64.7.96.0/20 15042 -64.7.112.0/20 6453 -64.7.128.0/19 11647 -64.7.160.0/19 13549 -64.7.192.0/22 10912 -64.7.196.0/22 12181 -64.7.200.0/21 12181 -64.7.208.0/21 12181 -64.7.216.0/23 12179 -64.7.218.0/24 29791 -64.7.219.0/24 12179 -64.7.220.0/23 12181 -64.7.224.0/21 6939 -64.7.232.0/23 6939 -64.7.234.0/24 6939 -64.7.235.0/24 11758 -64.7.236.0/22 6939 -64.7.240.0/23 22773 -64.8.0.0/21 3356 -64.8.8.0/24 3356 -64.8.9.0/24 10753 -64.8.10.0/23 3356 -64.8.12.0/22 3356 -64.8.16.0/20 3356 -64.8.32.0/20 3356 -64.8.48.0/23 10753 -64.8.50.0/23 3356 -64.8.52.0/22 3356 -64.8.56.0/21 3356 -64.8.64.0/22 3356 -64.8.68.0/23 3356 -64.8.70.0/23 36271 -64.8.72.0/23 3356 -64.8.74.0/24 3593 -64.8.75.0/24 3356 -64.8.76.0/22 3356 -64.8.80.0/20 3356 -64.8.96.0/19 17393 -64.8.128.0/18 1998 -64.8.192.0/20 4565 -64.8.208.0/21 4565 -64.8.216.0/23 4565 -64.8.218.0/24 6267 -64.8.219.0/24 4565 -64.8.220.0/22 4565 -64.8.224.0/19 4565 -64.9.0.0/22 3356 -64.9.4.0/24 14983 -64.9.5.0/24 3356 -64.9.6.0/23 3356 -64.9.8.0/21 3356 -64.9.16.0/20 3356 -64.9.32.0/22 3356 -64.9.36.0/23 3356 -64.9.38.0/24 15209 -64.9.39.0/24 3356 -64.9.40.0/21 3356 -64.9.48.0/20 3356 -64.9.64.0/19 3356 -64.9.96.0/20 3356 -64.9.112.0/22 3356 -64.9.116.0/24 3356 -64.9.117.0/24 397297 -64.9.118.0/24 397297 -64.9.119.0/24 3356 -64.9.120.0/22 3356 -64.9.124.0/23 3356 -64.9.126.0/24 3356 -64.9.127.0/24 10753 -64.9.128.0/20 3900 -64.9.144.0/21 3900 -64.9.152.0/23 3900 -64.9.154.0/24 36341 -64.9.155.0/24 3900 -64.9.156.0/22 3900 -64.9.160.0/19 3900 -64.9.192.0/23 32477 -64.9.194.0/24 11115 -64.9.195.0/24 393640 -64.9.196.0/24 393640 -64.9.197.0/24 32477 -64.9.198.0/23 32477 -64.9.200.0/23 32477 -64.9.202.0/24 393640 -64.9.203.0/24 32477 -64.9.204.0/22 32477 -64.9.208.0/20 32477 -64.9.224.0/23 36492 -64.9.227.0/24 36492 -64.9.228.0/23 36492 -64.9.232.0/21 36492 -64.9.240.0/20 36492 -64.10.0.0/15 701 -64.13.4.0/23 16586 -64.13.48.0/23 16586 -64.13.56.0/24 16586 -64.13.68.0/22 16586 -64.13.112.0/22 16586 -64.13.128.0/24 395441 -64.13.129.0/24 11404 -64.13.130.0/23 11404 -64.13.132.0/22 11404 -64.13.136.0/21 11404 -64.13.144.0/20 11404 -64.13.160.0/21 11404 -64.13.168.0/22 11404 -64.13.172.0/23 11404 -64.13.174.0/24 11404 -64.13.175.0/24 63366 -64.13.176.0/20 11404 -64.13.192.0/18 31815 -64.14.0.0/20 3561 -64.14.16.0/23 3561 -64.14.18.0/24 3561 -64.14.19.0/24 19701 -64.14.20.0/23 3561 -64.14.22.0/24 3561 -64.14.23.0/24 4298 -64.14.24.0/22 3561 -64.14.28.0/24 19701 -64.14.29.0/24 14870 -64.14.30.0/23 3561 -64.14.32.0/19 3561 -64.14.64.0/18 3561 -64.14.128.0/20 3561 -64.14.144.0/24 21622 -64.14.145.0/24 3561 -64.14.146.0/23 3561 -64.14.148.0/24 23280 -64.14.149.0/24 3561 -64.14.150.0/23 3561 -64.14.152.0/21 3561 -64.14.160.0/23 3561 -64.14.162.0/23 46434 -64.14.164.0/24 46434 -64.14.165.0/24 3561 -64.14.166.0/23 3561 -64.14.168.0/21 3561 -64.14.176.0/20 3561 -64.14.192.0/19 3561 -64.14.224.0/22 3561 -64.14.228.0/24 21563 -64.14.229.0/24 3561 -64.14.230.0/23 3561 -64.14.232.0/21 3561 -64.14.240.0/20 3561 -64.15.16.0/23 32372 -64.15.20.0/24 32372 -64.15.28.0/22 32372 -64.15.32.0/20 9328 -64.15.48.0/20 21564 -64.15.64.0/20 10929 -64.15.80.0/24 17286 -64.15.81.0/24 11976 -64.15.82.0/23 11976 -64.15.84.0/22 11976 -64.15.88.0/24 11976 -64.15.92.0/22 11976 -64.15.96.0/20 22343 -64.15.112.0/23 43515 -64.15.114.0/23 36040 -64.15.116.0/23 43515 -64.15.118.0/23 36040 -64.15.120.0/23 36040 -64.15.122.0/24 43515 -64.15.123.0/24 36040 -64.15.124.0/23 43515 -64.15.126.0/24 36040 -64.15.127.0/24 43515 -64.15.128.0/19 32613 -64.15.160.0/22 3561 -64.15.164.0/23 3561 -64.15.166.0/23 29976 -64.15.168.0/21 3561 -64.15.176.0/24 6640 -64.15.177.0/24 3561 -64.15.178.0/23 3561 -64.15.180.0/23 3561 -64.15.182.0/23 6640 -64.15.184.0/21 6640 -64.15.192.0/20 3561 -64.15.208.0/20 21557 -64.15.224.0/19 3561 -64.16.0.0/20 7385 -64.16.16.0/21 7385 -64.16.24.0/24 7385 -64.16.25.0/24 25651 -64.16.26.0/23 7385 -64.16.28.0/23 25651 -64.16.30.0/24 25651 -64.16.31.0/24 7385 -64.16.32.0/21 7385 -64.16.40.0/22 7385 -64.16.44.0/24 7385 -64.16.45.0/24 25651 -64.16.46.0/24 25651 -64.16.47.0/24 7385 -64.16.48.0/21 7385 -64.16.56.0/24 7385 -64.16.57.0/24 25651 -64.16.58.0/23 7385 -64.16.60.0/22 7385 -64.16.72.0/21 15170 -64.16.108.0/24 21540 -64.16.112.0/21 3561 -64.16.128.0/18 7029 -64.16.192.0/19 25019 -64.16.224.0/19 63440 -64.17.0.0/20 27325 -64.17.16.0/20 6653 -64.17.32.0/20 35041 -64.17.48.0/20 174 -64.17.64.0/22 11232 -64.17.68.0/22 4181 -64.17.72.0/23 4181 -64.17.74.0/23 11232 -64.17.76.0/22 4181 -64.17.80.0/20 4181 -64.17.96.0/24 5738 -64.17.97.0/24 54989 -64.17.98.0/23 5738 -64.17.100.0/22 5738 -64.17.104.0/21 5738 -64.17.112.0/22 5738 -64.17.116.0/23 5738 -64.17.118.0/24 5738 -64.17.119.0/24 54989 -64.17.120.0/21 5738 -64.17.128.0/18 46606 -64.17.192.0/20 22607 -64.17.208.0/20 22068 -64.17.224.0/22 19406 -64.17.228.0/23 19406 -64.17.230.0/24 19453 -64.17.231.0/24 19406 -64.17.232.0/21 19453 -64.17.240.0/22 19453 -64.17.244.0/23 19453 -64.17.246.0/23 26878 -64.17.248.0/21 29930 -64.18.0.0/23 394699 -64.18.8.0/22 394699 -64.18.16.0/22 2830 -64.18.20.0/24 2830 -64.18.21.0/24 15572 -64.18.22.0/23 2830 -64.18.24.0/21 2830 -64.18.32.0/20 19616 -64.18.48.0/20 27403 -64.18.64.0/24 21548 -64.18.65.0/24 3257 -64.18.66.0/24 35927 -64.18.67.0/24 21548 -64.18.68.0/24 21548 -64.18.69.0/24 23498 -64.18.70.0/23 21548 -64.18.72.0/24 19700 -64.18.73.0/24 21548 -64.18.74.0/23 14112 -64.18.76.0/22 14112 -64.18.80.0/24 21548 -64.18.81.0/24 27280 -64.18.82.0/23 21548 -64.18.84.0/22 21548 -64.18.88.0/23 21548 -64.18.90.0/24 21548 -64.18.91.0/24 394976 -64.18.92.0/22 21548 -64.18.96.0/19 19830 -64.18.128.0/20 14037 -64.18.144.0/21 27611 -64.18.152.0/21 395354 -64.18.160.0/19 19515 -64.18.192.0/20 14127 -64.18.208.0/21 14127 -64.18.216.0/22 14127 -64.18.222.0/23 14127 -64.18.224.0/20 17306 -64.18.240.0/20 40523 -64.19.0.0/18 7029 -64.19.64.0/20 11722 -64.19.80.0/23 11722 -64.19.82.0/23 62476 -64.19.84.0/23 62476 -64.19.86.0/24 11722 -64.19.87.0/24 62476 -64.19.88.0/21 11722 -64.19.96.0/19 30029 -64.19.128.0/18 7078 -64.19.192.0/23 13767 -64.19.194.0/23 13951 -64.19.196.0/22 13951 -64.19.200.0/22 13951 -64.19.204.0/23 13951 -64.19.206.0/24 29951 -64.19.207.0/24 13951 -64.19.208.0/21 13951 -64.19.216.0/23 13951 -64.19.218.0/24 32575 -64.19.219.0/24 13951 -64.19.220.0/23 13951 -64.19.222.0/24 13951 -64.19.223.0/24 13767 -64.19.224.0/24 14332 -64.19.226.0/23 14332 -64.19.240.0/20 4913 -64.20.0.0/20 3257 -64.20.16.0/20 16863 -64.20.32.0/19 19318 -64.20.64.0/20 16564 -64.20.80.0/24 27287 -64.20.96.0/21 16503 -64.20.104.0/23 16503 -64.20.106.0/24 394931 -64.20.107.0/24 16503 -64.20.108.0/22 16503 -64.20.112.0/21 16503 -64.20.120.0/24 394931 -64.20.121.0/24 16503 -64.20.122.0/23 16503 -64.20.124.0/22 16503 -64.20.128.0/19 22646 -64.20.160.0/23 27506 -64.20.162.0/24 46887 -64.20.163.0/24 27506 -64.20.164.0/22 27506 -64.20.168.0/23 27506 -64.20.170.0/24 32640 -64.20.171.0/24 21755 -64.20.172.0/22 27506 -64.20.176.0/24 21755 -64.20.177.0/24 27506 -64.20.178.0/23 27506 -64.20.180.0/24 21704 -64.20.181.0/24 27506 -64.20.182.0/23 27506 -64.20.184.0/21 27506 -64.20.192.0/20 19653 -64.20.224.0/20 27325 -64.20.240.0/22 27325 -64.20.244.0/23 27325 -64.20.246.0/24 27325 -64.20.247.0/24 18499 -64.20.248.0/24 30145 -64.20.249.0/24 27325 -64.20.250.0/23 27325 -64.20.252.0/22 30145 -64.21.0.0/18 8001 -64.21.64.0/19 8001 -64.21.96.0/22 8001 -64.21.100.0/23 8001 -64.21.102.0/24 8001 -64.21.103.0/24 53886 -64.21.104.0/21 8001 -64.21.112.0/21 8001 -64.21.120.0/24 8001 -64.21.121.0/24 23131 -64.21.122.0/23 8001 -64.21.124.0/22 8001 -64.21.128.0/18 8001 -64.21.192.0/19 14265 -64.21.224.0/22 14090 -64.21.228.0/22 63414 -64.21.232.0/21 12042 -64.21.240.0/21 12042 -64.21.248.0/24 12042 -64.21.249.0/24 14090 -64.21.250.0/23 14090 -64.21.252.0/22 14090 -64.22.0.0/19 18474 -64.22.32.0/22 22302 -64.22.36.0/23 22302 -64.22.38.0/23 21627 -64.22.40.0/22 21627 -64.22.44.0/23 21627 -64.22.46.0/23 22302 -64.22.48.0/20 22302 -64.22.64.0/22 11042 -64.22.68.0/24 7226 -64.22.69.0/24 11042 -64.22.70.0/24 11042 -64.22.71.0/24 63949 -64.22.72.0/24 11042 -64.22.75.0/24 7226 -64.22.76.0/23 7226 -64.22.78.0/23 11042 -64.22.80.0/24 7349 -64.22.81.0/24 11042 -64.22.82.0/23 11042 -64.22.84.0/24 63949 -64.22.85.0/24 11042 -64.22.86.0/23 11042 -64.22.88.0/23 11042 -64.22.90.0/24 7226 -64.22.91.0/24 11042 -64.22.92.0/24 7226 -64.22.93.0/24 11042 -64.22.94.0/24 11042 -64.22.95.0/24 7226 -64.22.96.0/23 11042 -64.22.98.0/24 11042 -64.22.99.0/24 7226 -64.22.100.0/24 7226 -64.22.101.0/24 11042 -64.22.102.0/24 7226 -64.22.103.0/24 63949 -64.22.104.0/22 11042 -64.22.108.0/24 3595 -64.22.109.0/24 63949 -64.22.110.0/23 11042 -64.22.112.0/24 11042 -64.22.113.0/24 7226 -64.22.114.0/24 11042 -64.22.115.0/24 7226 -64.22.116.0/22 7226 -64.22.120.0/23 11042 -64.22.122.0/24 7226 -64.22.123.0/24 11042 -64.22.124.0/23 63949 -64.22.126.0/24 11042 -64.22.127.0/24 3595 -64.22.128.0/21 3561 -64.22.136.0/23 3561 -64.22.138.0/24 14415 -64.22.139.0/24 3561 -64.22.140.0/22 3561 -64.22.144.0/23 3561 -64.22.146.0/24 16431 -64.22.147.0/24 3561 -64.22.148.0/22 3561 -64.22.152.0/23 3561 -64.22.154.0/23 63182 -64.22.156.0/22 3561 -64.22.160.0/23 13631 -64.22.164.0/24 13631 -64.22.172.0/24 13631 -64.22.176.0/20 698 -64.22.192.0/19 11320 -64.22.224.0/21 21737 -64.22.232.0/22 21737 -64.22.236.0/23 397732 -64.22.238.0/23 21737 -64.22.240.0/20 21737 -64.23.0.0/18 3064 -64.23.64.0/22 9848 -64.23.68.0/23 9848 -64.23.70.0/24 9848 -64.23.71.0/24 9952 -64.23.72.0/21 9848 -64.23.80.0/20 3064 -64.23.96.0/19 32400 -64.23.157.0/24 4565 -64.24.0.0/22 7029 -64.24.4.0/23 6316 -64.24.6.0/23 7029 -64.24.8.0/21 7029 -64.24.16.0/20 7029 -64.24.32.0/19 7029 -64.24.64.0/18 7029 -64.24.128.0/17 7029 -64.25.0.0/20 17184 -64.25.20.0/23 19535 -64.25.24.0/23 19535 -64.25.27.0/24 7046 -64.25.28.0/23 19535 -64.25.32.0/20 30588 -64.25.48.0/21 35977 -64.25.56.0/24 35977 -64.25.58.0/23 35977 -64.25.61.0/24 35977 -64.25.62.0/23 35977 -64.25.64.0/20 19356 -64.25.80.0/20 26251 -64.25.96.0/21 33491 -64.25.104.0/22 397189 -64.25.108.0/22 394369 -64.25.112.0/20 31785 -64.25.128.0/23 21947 -64.25.130.0/24 33521 -64.25.131.0/24 21947 -64.25.132.0/22 21947 -64.25.136.0/21 21947 -64.25.144.0/20 16822 -64.25.160.0/19 25636 -64.25.192.0/20 26271 -64.25.208.0/22 13536 -64.25.212.0/24 13536 -64.25.213.0/24 12055 -64.25.214.0/24 12055 -64.25.215.0/24 13536 -64.25.216.0/22 13536 -64.25.220.0/24 13536 -64.25.221.0/24 16384 -64.25.222.0/23 13536 -64.25.224.0/20 26891 -64.25.240.0/20 29938 -64.26.0.0/24 3064 -64.26.28.0/22 3064 -64.26.43.0/24 3064 -64.26.59.0/24 3064 -64.26.60.0/24 3064 -64.26.64.0/18 6189 -64.26.128.0/18 812 -64.26.192.0/19 14343 -64.26.224.0/22 14343 -64.26.230.0/24 14343 -64.26.232.0/21 14343 -64.26.240.0/21 12200 -64.26.248.0/24 12200 -64.26.249.0/24 14343 -64.26.250.0/23 12200 -64.26.253.0/24 12200 -64.26.254.0/24 14343 -64.26.255.0/24 12200 -64.27.0.0/19 35916 -64.27.32.0/22 3549 -64.27.36.0/23 3549 -64.27.38.0/24 3549 -64.27.39.0/24 25843 -64.27.40.0/22 25843 -64.27.44.0/22 3549 -64.27.48.0/20 30475 -64.27.64.0/19 14492 -64.27.96.0/20 14492 -64.27.112.0/21 22205 -64.27.120.0/21 14492 -64.27.128.0/19 16399 -64.27.160.0/23 3561 -64.27.162.0/24 14870 -64.27.163.0/24 3561 -64.27.164.0/22 3561 -64.27.168.0/21 3561 -64.27.192.0/19 27553 -64.27.224.0/20 62943 -64.27.240.0/24 16931 -64.27.244.0/23 14745 -64.27.246.0/23 16931 -64.27.248.0/23 53907 -64.27.250.0/23 16931 -64.27.253.0/24 16931 -64.27.254.0/24 16931 -64.28.0.0/19 2116 -64.28.32.0/20 33227 -64.28.48.0/20 26949 -64.28.64.0/22 3561 -64.28.68.0/23 40089 -64.28.70.0/23 3561 -64.28.72.0/21 3561 -64.28.80.0/20 3561 -64.28.96.0/20 3728 -64.28.112.0/24 32222 -64.28.113.0/24 20385 -64.28.114.0/24 32222 -64.28.115.0/24 20385 -64.28.116.0/24 20385 -64.28.117.0/24 32222 -64.28.118.0/24 395279 -64.28.119.0/24 20385 -64.28.120.0/24 20385 -64.28.121.0/24 32222 -64.28.122.0/23 20385 -64.28.124.0/24 32222 -64.28.125.0/24 20385 -64.28.126.0/23 20385 -64.28.128.0/21 28067 -64.28.136.0/23 5639 -64.28.138.0/24 28067 -64.28.139.0/24 5639 -64.28.140.0/24 28067 -64.28.142.0/24 28067 -64.28.143.0/24 5639 -64.28.145.0/24 3549 -64.28.146.0/24 3549 -64.28.176.0/20 27516 -64.28.192.0/19 14335 -64.28.224.0/20 11093 -64.28.240.0/20 25963 -64.29.0.0/20 53477 -64.29.16.0/20 13768 -64.29.32.0/21 36509 -64.29.40.0/22 14959 -64.29.48.0/20 13692 -64.29.64.0/20 11563 -64.29.80.0/21 11563 -64.29.88.0/24 16819 -64.29.89.0/24 11563 -64.29.90.0/23 11563 -64.29.92.0/22 11563 -64.29.96.0/20 26052 -64.29.112.0/20 22790 -64.29.128.0/20 23342 -64.29.144.0/20 30447 -64.29.160.0/20 7835 -64.29.176.0/20 23421 -64.29.219.0/24 11303 -64.29.221.0/24 11303 -64.29.224.0/23 4927 -64.29.226.0/24 30412 -64.29.227.0/24 4927 -64.29.228.0/22 4927 -64.29.232.0/24 4927 -64.29.233.0/24 26402 -64.29.234.0/23 4927 -64.29.236.0/22 4927 -64.29.240.0/20 27279 -64.30.0.0/20 3356 -64.30.16.0/21 3356 -64.30.24.0/23 3356 -64.30.26.0/24 5738 -64.30.27.0/24 3356 -64.30.28.0/22 3356 -64.30.32.0/23 3356 -64.30.34.0/24 13547 -64.30.35.0/24 3356 -64.30.36.0/22 3356 -64.30.40.0/22 3356 -64.30.44.0/24 3356 -64.30.45.0/24 5738 -64.30.46.0/24 14635 -64.30.47.0/24 3356 -64.30.48.0/24 10753 -64.30.49.0/24 3356 -64.30.50.0/23 3356 -64.30.52.0/23 3356 -64.30.54.0/24 32662 -64.30.55.0/24 3356 -64.30.56.0/21 3356 -64.30.64.0/19 26292 -64.30.96.0/19 14051 -64.30.148.0/23 32076 -64.30.151.0/24 15830 -64.30.152.0/23 15830 -64.30.154.0/24 395699 -64.30.155.0/24 6461 -64.30.156.0/24 15830 -64.30.158.0/24 30496 -64.30.159.0/24 16682 -64.30.160.0/21 31939 -64.30.168.0/22 31939 -64.30.172.0/23 31939 -64.30.174.0/24 31939 -64.30.175.0/24 29930 -64.30.176.0/20 31939 -64.30.192.0/19 11123 -64.30.224.0/21 6623 -64.30.232.0/24 6623 -64.30.233.0/24 6641 -64.30.234.0/23 6641 -64.30.236.0/22 6641 -64.30.240.0/20 11351 -64.31.0.0/18 46475 -64.31.64.0/19 16617 -64.31.96.0/19 14265 -64.31.128.0/19 3356 -64.31.160.0/22 3356 -64.31.164.0/23 3356 -64.31.166.0/24 3356 -64.31.167.0/24 26536 -64.31.168.0/21 3356 -64.31.176.0/21 3356 -64.31.184.0/22 3356 -64.31.188.0/23 3356 -64.31.190.0/24 22992 -64.31.191.0/24 3356 -64.31.192.0/20 17306 -64.31.208.0/22 17306 -64.31.216.0/21 17306 -64.31.224.0/20 17306 -64.31.240.0/20 11138 -64.32.0.0/19 46844 -64.32.64.0/18 6400 -64.32.128.0/17 4565 -64.33.0.0/18 24255 -64.33.64.0/18 11232 -64.33.128.0/18 11796 -64.33.192.0/20 11796 -64.33.208.0/20 11696 -64.33.224.0/21 13576 -64.33.232.0/22 13576 -64.33.236.0/23 13576 -64.33.238.0/24 20014 -64.33.239.0/24 13576 -64.33.240.0/23 13576 -64.33.242.0/24 20014 -64.33.243.0/24 13576 -64.33.244.0/22 13576 -64.33.248.0/21 13576 -64.34.8.0/21 13768 -64.34.18.0/23 13768 -64.34.20.0/22 13768 -64.34.24.0/21 13768 -64.34.32.0/19 13768 -64.34.64.0/22 13768 -64.34.68.0/23 13768 -64.34.70.0/24 54643 -64.34.71.0/24 13768 -64.34.72.0/24 54643 -64.34.73.0/24 13768 -64.34.74.0/23 13768 -64.34.76.0/22 13768 -64.34.80.0/20 13768 -64.34.96.0/21 13768 -64.34.104.0/22 13768 -64.34.108.0/23 13768 -64.34.110.0/24 13768 -64.34.111.0/24 54643 -64.34.114.0/24 23498 -64.34.115.0/24 19202 -64.34.116.0/24 23498 -64.34.118.0/24 55199 -64.34.119.0/24 271 -64.34.120.0/22 42473 -64.34.126.0/24 12068 -64.34.127.0/24 13768 -64.34.128.0/18 13768 -64.34.192.0/19 13768 -64.34.224.0/20 13768 -64.34.240.0/24 577 -64.34.241.0/24 397474 -64.34.242.0/24 35947 -64.34.243.0/24 13768 -64.34.244.0/22 23498 -64.34.248.0/21 13768 -64.35.0.0/21 2828 -64.35.8.0/23 2828 -64.35.10.0/24 2828 -64.35.11.0/24 395806 -64.35.12.0/22 2828 -64.35.16.0/20 2828 -64.35.32.0/21 2828 -64.35.40.0/24 2828 -64.35.41.0/24 393731 -64.35.42.0/23 2828 -64.35.44.0/22 2828 -64.35.48.0/20 2828 -64.35.64.0/18 2828 -64.35.128.0/20 12111 -64.35.144.0/20 46595 -64.35.176.0/20 36378 -64.35.192.0/20 4181 -64.35.208.0/20 10320 -64.35.224.0/20 701 -64.35.240.0/22 701 -64.35.244.0/24 701 -64.36.0.0/16 701 -64.37.0.0/20 36143 -64.37.16.0/21 32281 -64.37.24.0/22 32281 -64.37.28.0/23 32281 -64.37.30.0/24 32281 -64.37.31.0/24 398230 -64.37.36.0/22 11618 -64.37.40.0/22 11618 -64.37.46.0/23 11618 -64.37.48.0/20 33182 -64.37.64.0/18 7393 -64.37.128.0/18 13720 -64.37.192.0/22 3561 -64.37.196.0/24 21563 -64.37.197.0/24 3561 -64.37.198.0/23 3561 -64.37.200.0/22 3561 -64.37.204.0/24 21563 -64.37.205.0/24 3561 -64.37.206.0/23 3561 -64.37.208.0/23 3561 -64.37.210.0/24 21563 -64.37.211.0/24 3561 -64.37.212.0/22 3561 -64.37.216.0/22 3561 -64.37.220.0/23 3561 -64.37.222.0/24 22087 -64.37.223.0/24 3561 -64.37.224.0/21 3561 -64.37.232.0/23 16494 -64.37.234.0/23 3561 -64.37.236.0/22 3561 -64.37.240.0/20 3561 -64.38.0.0/18 22576 -64.38.80.0/20 11433 -64.38.96.0/20 19151 -64.38.112.0/22 19151 -64.38.116.0/23 19151 -64.38.118.0/23 18568 -64.38.120.0/21 19151 -64.38.128.0/21 18530 -64.38.136.0/22 18530 -64.38.140.0/23 18530 -64.38.142.0/23 396032 -64.38.144.0/20 18530 -64.38.160.0/20 18530 -64.38.176.0/21 18530 -64.38.184.0/21 396032 -64.38.192.0/20 20454 -64.38.208.0/22 20454 -64.38.212.0/23 32161 -64.38.214.0/23 29656 -64.38.216.0/23 174 -64.38.218.0/23 20454 -64.38.220.0/22 20454 -64.38.224.0/20 20454 -64.38.240.0/22 32164 -64.38.244.0/22 20454 -64.38.248.0/24 20454 -64.38.249.0/24 11572 -64.38.250.0/24 11572 -64.38.251.0/24 20454 -64.38.252.0/22 20454 -64.39.0.0/19 33070 -64.39.32.0/20 3561 -64.39.48.0/23 3561 -64.39.50.0/24 3561 -64.39.51.0/24 14469 -64.39.52.0/22 3561 -64.39.56.0/21 3561 -64.39.64.0/22 27521 -64.39.69.0/24 27521 -64.39.70.0/23 27521 -64.39.72.0/21 27521 -64.39.80.0/20 40718 -64.39.96.0/20 27385 -64.39.112.0/20 2152 -64.39.128.0/19 16700 -64.39.160.0/19 7794 -64.39.192.0/19 14878 -64.39.224.0/20 6428 -64.39.240.0/20 7896 -64.40.0.0/23 397754 -64.40.3.0/24 397754 -64.40.4.0/22 396316 -64.40.8.0/23 26863 -64.40.12.0/22 395512 -64.40.64.0/24 16835 -64.40.65.0/24 209 -64.40.66.0/24 209 -64.40.67.0/24 16835 -64.40.68.0/22 209 -64.40.72.0/21 22561 -64.40.80.0/23 16835 -64.40.82.0/24 16835 -64.40.83.0/24 209 -64.40.84.0/22 16835 -64.40.88.0/21 22561 -64.40.96.0/19 14280 -64.40.128.0/20 14205 -64.40.144.0/23 395532 -64.40.146.0/24 395532 -64.40.151.0/24 4250 -64.40.160.0/20 15035 -64.40.176.0/20 32900 -64.40.192.0/20 6479 -64.40.208.0/20 3356 -64.40.228.0/23 10325 -64.40.230.0/23 24989 -64.40.232.0/23 14566 -64.40.234.0/23 9989 -64.40.236.0/23 14566 -64.40.238.0/23 10325 -64.40.240.0/20 32453 -64.41.0.0/18 7029 -64.41.82.0/23 3064 -64.41.84.0/22 3064 -64.41.88.0/22 3064 -64.41.92.0/24 3064 -64.41.94.0/23 3064 -64.41.97.0/24 3064 -64.41.98.0/24 3064 -64.41.102.0/23 3064 -64.41.112.0/24 7215 -64.41.114.0/24 7215 -64.41.116.0/23 3064 -64.41.122.0/24 3064 -64.41.126.0/23 3064 -64.41.128.0/19 3561 -64.41.160.0/20 3561 -64.41.176.0/22 3561 -64.41.180.0/24 3561 -64.41.181.0/24 19701 -64.41.182.0/24 19701 -64.41.183.0/24 3561 -64.41.184.0/22 3561 -64.41.188.0/23 3561 -64.41.190.0/23 4298 -64.41.192.0/21 3561 -64.41.200.0/24 27385 -64.41.201.0/24 3561 -64.41.202.0/23 3561 -64.41.204.0/22 3561 -64.41.208.0/21 3561 -64.41.216.0/23 3561 -64.41.218.0/24 33717 -64.41.219.0/24 3561 -64.41.220.0/22 3561 -64.41.224.0/23 3561 -64.41.226.0/24 4298 -64.41.227.0/24 3561 -64.41.228.0/22 3561 -64.41.232.0/21 3561 -64.41.240.0/22 3561 -64.41.244.0/24 4298 -64.41.245.0/24 3561 -64.41.246.0/23 3561 -64.41.248.0/21 3561 -64.42.0.0/17 7385 -64.42.128.0/20 10381 -64.42.144.0/21 10381 -64.42.152.0/22 26831 -64.42.160.0/20 10381 -64.42.176.0/21 63018 -64.42.184.0/21 18888 -64.42.192.0/18 6539 -64.43.0.0/19 15502 -64.43.32.0/20 15502 -64.43.64.0/20 199429 -64.43.80.0/21 209767 -64.43.88.0/21 60912 -64.43.128.0/18 15502 -64.43.192.0/20 9009 -64.43.208.0/20 397451 -64.43.224.0/21 18704 -64.43.232.0/22 33633 -64.43.236.0/22 18704 -64.43.240.0/21 18704 -64.43.248.0/23 18704 -64.43.250.0/24 48951 -64.43.251.0/24 18704 -64.43.252.0/22 18704 -64.44.0.0/17 20278 -64.44.128.0/18 20278 -64.44.192.0/20 20278 -64.44.208.0/20 32204 -64.44.224.0/19 20278 -64.45.0.0/18 13768 -64.45.64.0/18 557 -64.45.128.0/24 14618 -64.45.129.0/24 16509 -64.45.130.0/23 16509 -64.45.132.0/24 14618 -64.45.148.0/22 7944 -64.45.152.0/22 7944 -64.45.159.0/24 21808 -64.45.160.0/23 11696 -64.45.162.0/24 11696 -64.45.166.0/23 11696 -64.45.170.0/24 11696 -64.45.174.0/23 11696 -64.45.176.0/23 11696 -64.45.179.0/24 11696 -64.45.180.0/24 11696 -64.45.192.0/22 2379 -64.45.196.0/24 2379 -64.45.197.0/24 393579 -64.45.198.0/24 2379 -64.45.199.0/24 209 -64.45.200.0/22 2379 -64.45.204.0/24 209 -64.45.205.0/24 2379 -64.45.206.0/24 31928 -64.45.207.0/24 2379 -64.45.208.0/22 209 -64.45.212.0/22 2379 -64.45.216.0/22 2379 -64.45.220.0/24 209 -64.45.221.0/24 2379 -64.45.222.0/23 2379 -64.45.224.0/22 2379 -64.45.228.0/23 2379 -64.45.230.0/24 2379 -64.45.231.0/24 209 -64.45.232.0/21 2379 -64.45.240.0/24 209 -64.45.241.0/24 5778 -64.45.242.0/23 5778 -64.45.244.0/22 5778 -64.45.248.0/22 6367 -64.45.252.0/24 209 -64.45.253.0/24 18494 -64.45.254.0/24 209 -64.45.255.0/24 22186 -64.46.0.0/19 40029 -64.46.32.0/20 19875 -64.46.48.0/21 19875 -64.46.56.0/24 19875 -64.46.57.0/24 55094 -64.46.58.0/23 19875 -64.46.60.0/22 19875 -64.46.64.0/19 27947 -64.46.96.0/24 26163 -64.46.97.0/24 32475 -64.46.98.0/23 32475 -64.46.100.0/22 26163 -64.46.104.0/21 32475 -64.46.112.0/23 32475 -64.46.114.0/23 26163 -64.46.116.0/22 26163 -64.46.120.0/21 26163 -64.46.128.0/19 5716 -64.46.160.0/19 23376 -64.46.192.0/18 10962 -64.47.0.0/21 19855 -64.47.8.0/22 19855 -64.47.12.0/23 19855 -64.47.14.0/24 19855 -64.47.15.0/24 15027 -64.47.16.0/23 30482 -64.47.18.0/23 19855 -64.47.20.0/22 19855 -64.47.24.0/24 19855 -64.47.25.0/24 6352 -64.47.26.0/23 19855 -64.47.28.0/22 19855 -64.47.32.0/24 19855 -64.47.33.0/24 30018 -64.47.34.0/23 19855 -64.47.36.0/22 19855 -64.47.40.0/21 19855 -64.47.48.0/22 19855 -64.47.52.0/24 14527 -64.47.53.0/24 19855 -64.47.54.0/24 14527 -64.47.55.0/24 19855 -64.47.56.0/21 19855 -64.47.64.0/18 19855 -64.47.128.0/19 19855 -64.47.160.0/21 19855 -64.47.168.0/24 46605 -64.47.169.0/24 19855 -64.47.170.0/23 19855 -64.47.172.0/24 32352 -64.47.173.0/24 19855 -64.47.174.0/23 19855 -64.47.176.0/20 19855 -64.47.192.0/22 19855 -64.47.196.0/23 19855 -64.47.198.0/24 27226 -64.47.199.0/24 19855 -64.47.200.0/21 19855 -64.47.208.0/21 19855 -64.47.216.0/22 19855 -64.47.220.0/23 19855 -64.47.222.0/24 19855 -64.47.223.0/24 33014 -64.47.224.0/19 19855 -64.48.0.0/24 2828 -64.48.1.0/24 63233 -64.48.2.0/23 2828 -64.48.4.0/22 2828 -64.48.8.0/21 2828 -64.48.16.0/20 2828 -64.48.32.0/19 2828 -64.48.64.0/18 2828 -64.48.128.0/17 2828 -64.49.0.0/18 12036 -64.49.64.0/22 19082 -64.49.68.0/23 19082 -64.49.70.0/24 19082 -64.49.71.0/24 1820 -64.49.72.0/23 19082 -64.49.75.0/24 19082 -64.49.76.0/22 19082 -64.49.81.0/24 19082 -64.49.82.0/23 19082 -64.49.84.0/23 19082 -64.49.87.0/24 19082 -64.49.90.0/23 19082 -64.49.93.0/24 19082 -64.49.94.0/23 19082 -64.49.96.0/23 19082 -64.49.98.0/24 19082 -64.49.100.0/23 19082 -64.49.103.0/24 19082 -64.49.105.0/24 19082 -64.49.111.0/24 19082 -64.49.112.0/23 39987 -64.49.115.0/24 39987 -64.49.121.0/24 39987 -64.49.122.0/23 39987 -64.49.125.0/24 39987 -64.49.127.0/24 39987 -64.49.128.0/20 11127 -64.49.144.0/21 11127 -64.49.152.0/24 11300 -64.49.153.0/24 11127 -64.49.154.0/23 24753 -64.49.156.0/23 24753 -64.49.158.0/23 11127 -64.49.160.0/19 11127 -64.49.192.0/19 33070 -64.49.224.0/21 33070 -64.49.232.0/23 19994 -64.49.234.0/23 33070 -64.49.236.0/22 33070 -64.49.240.0/20 33070 -64.50.0.0/17 2828 -64.50.128.0/20 4565 -64.50.144.0/23 32244 -64.50.146.0/23 11342 -64.50.148.0/22 32244 -64.50.152.0/21 32244 -64.50.160.0/20 15244 -64.50.176.0/22 15244 -64.50.180.0/23 15244 -64.50.182.0/24 15244 -64.50.184.0/22 15244 -64.50.189.0/24 15244 -64.50.190.0/24 15244 -64.50.192.0/21 4565 -64.50.200.0/22 4565 -64.50.204.0/23 4565 -64.50.206.0/23 18566 -64.50.208.0/20 4565 -64.50.224.0/19 4181 -64.51.0.0/18 4565 -64.51.64.0/19 4565 -64.51.96.0/20 4565 -64.51.112.0/21 4565 -64.51.120.0/22 4565 -64.51.124.0/23 4565 -64.51.126.0/23 18566 -64.51.128.0/17 4565 -64.52.2.0/24 11696 -64.52.4.0/24 394844 -64.52.5.0/24 40160 -64.52.7.0/24 11696 -64.52.8.0/23 11696 -64.52.11.0/24 11696 -64.52.16.0/23 395111 -64.52.19.0/24 11696 -64.52.22.0/23 8100 -64.52.24.0/21 395570 -64.52.32.0/19 7029 -64.52.64.0/20 7029 -64.52.82.0/23 32780 -64.52.84.0/22 8100 -64.52.100.0/24 30633 -64.52.102.0/23 30633 -64.52.105.0/24 11696 -64.52.107.0/24 11696 -64.52.108.0/23 8100 -64.52.110.0/24 11696 -64.52.112.0/20 7029 -64.52.128.0/20 26919 -64.52.144.0/20 7029 -64.52.160.0/24 11696 -64.52.162.0/23 11403 -64.52.164.0/22 13886 -64.52.168.0/21 13886 -64.52.176.0/22 26919 -64.52.180.0/22 25892 -64.52.184.0/22 25892 -64.52.192.0/18 7029 -64.53.0.0/22 2711 -64.53.4.0/24 2711 -64.53.5.0/24 18671 -64.53.6.0/24 22646 -64.53.7.0/24 16863 -64.53.8.0/24 2711 -64.53.9.0/24 7250 -64.53.10.0/24 7250 -64.53.11.0/24 14615 -64.53.12.0/24 2711 -64.53.13.0/24 21830 -64.53.14.0/23 2711 -64.53.16.0/22 2711 -64.53.20.0/24 19635 -64.53.21.0/24 2711 -64.53.22.0/24 23118 -64.53.23.0/24 16863 -64.53.24.0/24 2711 -64.53.25.0/24 40641 -64.53.26.0/24 2711 -64.53.27.0/24 14615 -64.53.28.0/23 2711 -64.53.30.0/24 2711 -64.53.31.0/24 16863 -64.53.32.0/23 2711 -64.53.34.0/24 2711 -64.53.35.0/24 12208 -64.53.36.0/24 10279 -64.53.37.0/24 2711 -64.53.38.0/23 2711 -64.53.40.0/22 2711 -64.53.44.0/23 2711 -64.53.46.0/24 2711 -64.53.47.0/24 21830 -64.53.48.0/22 2711 -64.53.52.0/23 2711 -64.53.54.0/24 23118 -64.53.55.0/24 2711 -64.53.56.0/24 2711 -64.53.57.0/24 18671 -64.53.58.0/24 12208 -64.53.59.0/24 18671 -64.53.60.0/23 2711 -64.53.62.0/24 14615 -64.53.63.0/24 22646 -64.53.64.0/23 2711 -64.53.66.0/24 2711 -64.53.67.0/24 10279 -64.53.68.0/24 22646 -64.53.69.0/24 2711 -64.53.70.0/23 22646 -64.53.72.0/22 19212 -64.53.76.0/24 2711 -64.53.77.0/24 14615 -64.53.78.0/24 2711 -64.53.79.0/24 29897 -64.53.80.0/24 2711 -64.53.81.0/24 7250 -64.53.82.0/24 2711 -64.53.83.0/24 21766 -64.53.84.0/22 2711 -64.53.88.0/24 12208 -64.53.89.0/24 2711 -64.53.90.0/24 2711 -64.53.91.0/24 23118 -64.53.92.0/22 2711 -64.53.96.0/23 2711 -64.53.98.0/24 22646 -64.53.99.0/24 26903 -64.53.100.0/24 10279 -64.53.101.0/24 23118 -64.53.102.0/24 16863 -64.53.103.0/24 2711 -64.53.104.0/24 18671 -64.53.105.0/24 2711 -64.53.106.0/24 18671 -64.53.107.0/24 19212 -64.53.108.0/22 2711 -64.53.112.0/24 18671 -64.53.113.0/24 22646 -64.53.114.0/23 10279 -64.53.116.0/23 2711 -64.53.118.0/23 7250 -64.53.120.0/22 2711 -64.53.124.0/23 2711 -64.53.126.0/24 40641 -64.53.127.0/24 2711 -64.53.128.0/17 12083 -64.54.0.0/16 5653 -64.55.0.0/18 2828 -64.55.64.0/21 2828 -64.55.72.0/24 2828 -64.55.73.0/24 53996 -64.55.74.0/23 2828 -64.55.76.0/22 2828 -64.55.80.0/20 2828 -64.55.96.0/20 2828 -64.55.112.0/21 55106 -64.55.120.0/21 2828 -64.55.128.0/23 2828 -64.55.130.0/24 17150 -64.55.131.0/24 2828 -64.55.132.0/22 2828 -64.55.136.0/21 2828 -64.55.144.0/20 2828 -64.55.160.0/21 2828 -64.55.168.0/22 2828 -64.55.172.0/24 393698 -64.55.173.0/24 2828 -64.55.174.0/23 2828 -64.55.176.0/20 2828 -64.55.192.0/18 2828 -64.56.0.0/19 5009 -64.56.32.0/24 7922 -64.56.33.0/24 33659 -64.56.34.0/23 7922 -64.56.36.0/22 7922 -64.56.40.0/21 7922 -64.56.48.0/21 7922 -64.56.56.0/23 7922 -64.56.58.0/24 7922 -64.56.59.0/24 40207 -64.56.60.0/22 7922 -64.56.64.0/20 22439 -64.56.82.0/23 11096 -64.56.84.0/24 4511 -64.56.85.0/24 7939 -64.56.86.0/24 11096 -64.56.87.0/24 13406 -64.56.88.0/24 31999 -64.56.89.0/24 11096 -64.56.90.0/24 16393 -64.56.91.0/24 394234 -64.56.92.0/23 394234 -64.56.94.0/23 11096 -64.56.96.0/19 14131 -64.56.128.0/19 15102 -64.56.160.0/19 4694 -64.56.192.0/20 3561 -64.56.208.0/24 46675 -64.56.209.0/24 394768 -64.56.210.0/24 7932 -64.56.211.0/24 21548 -64.56.212.0/22 395713 -64.56.216.0/22 63238 -64.56.220.0/22 395826 -64.56.224.0/19 6407 -64.57.0.0/21 15213 -64.57.8.0/24 15213 -64.57.9.0/24 14618 -64.57.10.0/23 15213 -64.57.12.0/23 15213 -64.57.14.0/24 15213 -64.57.15.0/24 14618 -64.57.16.0/22 11537 -64.57.20.0/23 11164 -64.57.22.0/23 11537 -64.57.24.0/22 11537 -64.57.28.0/24 11537 -64.57.29.0/24 11164 -64.57.30.0/23 11537 -64.57.32.0/20 13880 -64.57.48.0/22 29831 -64.57.58.0/23 29831 -64.57.60.0/22 29831 -64.57.64.0/19 19237 -64.57.96.0/20 11620 -64.57.112.0/20 25695 -64.57.128.0/24 23033 -64.57.129.0/24 46562 -64.57.130.0/24 32181 -64.57.131.0/24 29838 -64.57.136.0/21 62874 -64.57.144.0/23 18594 -64.57.146.0/24 18594 -64.57.149.0/24 18594 -64.57.150.0/23 18594 -64.57.152.0/22 18659 -64.57.156.0/23 18659 -64.57.158.0/24 18659 -64.57.160.0/22 26727 -64.57.164.0/23 26727 -64.57.168.0/21 26727 -64.57.176.0/22 11351 -64.57.180.0/24 11351 -64.57.182.0/24 11351 -64.57.183.0/24 23086 -64.57.184.0/23 11351 -64.57.190.0/23 23086 -64.57.192.0/20 396106 -64.57.208.0/20 22576 -64.57.224.0/20 11134 -64.57.240.0/20 20141 -64.58.0.0/19 14755 -64.58.32.0/20 1403 -64.58.48.0/22 36329 -64.58.52.0/23 36329 -64.58.57.0/24 36329 -64.58.62.0/23 36329 -64.58.64.0/24 3561 -64.58.65.0/24 17184 -64.58.66.0/23 3561 -64.58.68.0/22 3561 -64.58.72.0/23 46696 -64.58.74.0/23 3561 -64.58.76.0/22 3561 -64.58.80.0/20 3561 -64.58.96.0/20 11127 -64.58.112.0/20 7979 -64.58.128.0/23 22773 -64.58.130.0/24 22773 -64.58.131.0/24 54567 -64.58.132.0/22 22773 -64.58.136.0/22 22773 -64.58.140.0/23 22773 -64.58.142.0/24 22773 -64.58.143.0/24 18700 -64.58.144.0/20 22773 -64.58.160.0/20 22773 -64.58.176.0/21 22773 -64.58.184.0/24 22773 -64.58.185.0/24 22814 -64.58.186.0/24 22773 -64.58.187.0/24 397485 -64.58.188.0/24 23544 -64.58.189.0/24 22773 -64.58.190.0/24 22773 -64.58.191.0/24 54710 -64.58.192.0/20 32458 -64.58.208.0/24 6286 -64.58.210.0/24 6286 -64.58.212.0/24 6286 -64.58.217.0/24 54790 -64.58.220.0/23 6286 -64.58.224.0/21 13649 -64.58.232.0/24 13649 -64.58.233.0/24 23199 -64.58.234.0/23 13649 -64.58.236.0/23 13649 -64.58.238.0/24 13649 -64.58.239.0/24 27646 -64.58.240.0/20 33154 -64.59.0.0/20 7029 -64.59.16.0/22 7029 -64.59.20.0/24 7029 -64.59.21.0/24 16908 -64.59.22.0/23 7029 -64.59.24.0/21 7029 -64.59.32.0/19 7029 -64.59.64.0/18 27589 -64.59.128.0/18 6327 -64.59.192.0/20 13438 -64.59.208.0/22 13438 -64.59.212.0/24 29723 -64.59.213.0/24 13438 -64.59.214.0/23 13438 -64.59.216.0/21 13438 -64.59.224.0/19 33490 -64.60.0.0/17 14265 -64.60.128.0/18 14265 -64.60.192.0/20 14265 -64.60.208.0/21 14265 -64.60.216.0/24 14265 -64.60.217.0/24 10951 -64.60.218.0/23 14265 -64.60.220.0/22 14265 -64.60.224.0/19 14265 -64.61.0.0/18 7029 -64.61.64.0/19 7029 -64.61.96.0/21 393258 -64.61.104.0/21 7029 -64.61.112.0/20 7029 -64.61.128.0/18 7029 -64.61.192.0/24 32946 -64.61.193.0/24 12042 -64.61.194.0/23 12042 -64.61.196.0/24 12042 -64.61.197.0/24 14440 -64.61.198.0/24 40554 -64.61.199.0/24 12042 -64.61.200.0/21 12042 -64.61.208.0/20 12042 -64.61.224.0/19 12042 -64.62.0.0/17 7385 -64.62.128.0/21 6939 -64.62.136.0/24 6939 -64.62.137.0/24 397805 -64.62.138.0/23 6939 -64.62.140.0/24 6939 -64.62.141.0/24 394996 -64.62.142.0/23 6939 -64.62.144.0/22 6939 -64.62.148.0/24 6939 -64.62.149.0/24 57 -64.62.150.0/23 6939 -64.62.152.0/22 6939 -64.62.156.0/24 13650 -64.62.157.0/24 6939 -64.62.158.0/23 6939 -64.62.160.0/24 6939 -64.62.161.0/24 43531 -64.62.162.0/23 6939 -64.62.164.0/22 6939 -64.62.168.0/23 6939 -64.62.170.0/24 397787 -64.62.171.0/24 6939 -64.62.172.0/23 6939 -64.62.174.0/24 6939 -64.62.175.0/24 15188 -64.62.176.0/24 36103 -64.62.177.0/24 63141 -64.62.178.0/23 6939 -64.62.180.0/22 6939 -64.62.184.0/22 6939 -64.62.188.0/24 6939 -64.62.189.0/24 54288 -64.62.190.0/24 63949 -64.62.191.0/24 54288 -64.62.192.0/22 6939 -64.62.196.0/24 54288 -64.62.197.0/24 26914 -64.62.198.0/23 6939 -64.62.200.0/24 6939 -64.62.201.0/24 394993 -64.62.202.0/23 6939 -64.62.204.0/22 6939 -64.62.208.0/24 6939 -64.62.209.0/24 54288 -64.62.210.0/23 6939 -64.62.212.0/22 6939 -64.62.216.0/21 6939 -64.62.224.0/24 8309 -64.62.225.0/24 6939 -64.62.226.0/23 6939 -64.62.228.0/24 63949 -64.62.229.0/24 6939 -64.62.230.0/24 6939 -64.62.231.0/24 63949 -64.62.232.0/22 6939 -64.62.236.0/23 6939 -64.62.238.0/24 396841 -64.62.239.0/24 6939 -64.62.240.0/21 6939 -64.62.248.0/22 6939 -64.62.252.0/24 6939 -64.62.253.0/24 54288 -64.62.254.0/24 6939 -64.62.255.0/24 394996 -64.63.0.0/18 13414 -64.63.64.0/18 17530 -64.63.128.0/18 53828 -64.63.192.0/20 18557 -64.63.224.0/20 18557 -64.63.248.0/22 18557 -64.64.0.0/20 30633 -64.64.16.0/22 30633 -64.64.20.0/22 7203 -64.64.24.0/21 7203 -64.64.32.0/19 2386 -64.64.64.0/19 209 -64.64.96.0/24 40676 -64.64.97.0/24 396281 -64.64.98.0/23 12025 -64.64.100.0/22 12025 -64.64.104.0/22 12025 -64.64.108.0/24 36351 -64.64.109.0/24 27630 -64.64.110.0/24 54540 -64.64.111.0/24 12025 -64.64.112.0/24 54540 -64.64.113.0/24 12025 -64.64.114.0/24 32899 -64.64.115.0/24 6461 -64.64.116.0/24 12025 -64.64.118.0/23 138576 -64.64.120.0/24 12025 -64.64.121.0/24 206092 -64.64.122.0/24 12025 -64.64.124.0/23 12025 -64.64.126.0/24 53559 -64.64.127.0/24 12025 -64.64.128.0/20 13807 -64.64.144.0/21 13807 -64.64.152.0/22 13807 -64.64.156.0/23 395335 -64.64.158.0/24 17378 -64.64.159.0/24 32062 -64.64.160.0/19 13468 -64.64.192.0/21 1616 -64.64.200.0/23 1616 -64.64.202.0/23 13649 -64.64.204.0/23 13649 -64.64.206.0/23 1616 -64.64.210.0/24 13649 -64.64.211.0/24 1616 -64.64.212.0/22 13649 -64.64.216.0/23 13649 -64.64.218.0/23 1616 -64.64.220.0/23 1616 -64.64.222.0/23 3595 -64.64.224.0/19 25820 -64.65.0.0/18 13768 -64.65.128.0/18 7385 -64.65.192.0/18 7029 -64.66.0.0/20 15146 -64.66.16.0/20 18875 -64.66.36.0/24 13659 -64.66.39.0/24 397848 -64.66.45.0/24 14618 -64.66.46.0/24 397767 -64.66.47.0/24 7381 -64.66.48.0/23 16877 -64.66.50.0/24 16877 -64.66.61.0/24 16877 -64.66.64.0/19 3356 -64.66.96.0/20 3356 -64.66.112.0/20 29968 -64.66.156.0/24 3064 -64.66.158.0/24 3064 -64.66.192.0/19 53913 -64.66.224.0/20 15127 -64.67.0.0/17 3737 -64.67.128.0/20 3737 -64.67.144.0/22 3737 -64.67.148.0/24 3737 -64.67.149.0/24 4565 -64.67.150.0/23 3737 -64.67.152.0/21 3737 -64.67.160.0/19 3737 -64.67.192.0/20 3737 -64.67.208.0/24 4565 -64.67.209.0/24 3737 -64.67.210.0/23 3737 -64.67.212.0/22 3737 -64.67.216.0/21 3737 -64.67.224.0/19 3737 -64.68.0.0/20 27539 -64.68.16.0/20 16567 -64.68.36.0/24 17054 -64.68.64.0/21 3561 -64.68.72.0/22 3561 -64.68.76.0/23 13989 -64.68.78.0/23 3561 -64.68.80.0/20 3561 -64.68.96.0/19 13445 -64.68.128.0/20 4927 -64.68.160.0/19 14955 -64.68.192.0/24 13335 -64.68.193.0/24 16686 -64.68.196.0/22 16686 -64.68.200.0/22 16686 -64.68.207.0/24 16686 -64.68.208.0/22 30167 -64.68.212.0/23 30167 -64.68.214.0/24 30167 -64.68.215.0/24 32098 -64.68.216.0/22 30167 -64.68.220.0/23 30167 -64.68.222.0/24 30167 -64.68.223.0/24 265531 -64.68.224.0/19 13904 -64.69.0.0/24 13832 -64.69.14.0/23 13832 -64.69.32.0/20 35916 -64.69.48.0/21 15147 -64.69.56.0/24 15147 -64.69.57.0/24 10753 -64.69.58.0/23 15147 -64.69.60.0/22 15147 -64.69.64.0/24 54643 -64.69.65.0/24 13768 -64.69.66.0/23 13768 -64.69.68.0/22 13768 -64.69.72.0/22 13768 -64.69.76.0/23 13768 -64.69.78.0/24 13768 -64.69.79.0/24 54643 -64.69.80.0/20 13768 -64.69.96.0/19 7029 -64.69.128.0/20 53862 -64.69.144.0/20 18795 -64.69.160.0/19 1273 -64.69.192.0/20 16931 -64.69.208.0/24 55002 -64.69.209.0/24 19871 -64.69.210.0/23 19871 -64.69.212.0/24 19871 -64.69.213.0/24 55002 -64.69.214.0/24 55002 -64.69.215.0/24 19871 -64.69.216.0/22 19871 -64.69.220.0/24 55002 -64.69.221.0/24 19871 -64.69.222.0/24 19871 -64.69.224.0/20 21627 -64.69.240.0/20 16597 -64.70.0.0/21 3561 -64.70.8.0/22 3561 -64.70.12.0/24 3561 -64.70.13.0/24 14459 -64.70.14.0/23 3561 -64.70.16.0/20 3561 -64.70.32.0/20 3561 -64.70.48.0/21 3561 -64.70.56.0/24 15095 -64.70.57.0/24 3561 -64.70.58.0/23 3561 -64.70.60.0/22 3561 -64.70.64.0/23 3561 -64.70.66.0/24 3561 -64.70.67.0/24 25665 -64.70.68.0/22 3561 -64.70.72.0/21 3561 -64.70.80.0/21 3561 -64.70.88.0/22 3561 -64.70.92.0/23 3561 -64.70.94.0/24 25665 -64.70.95.0/24 3561 -64.70.96.0/20 3561 -64.70.112.0/22 33409 -64.70.116.0/24 33409 -64.70.117.0/24 63002 -64.70.118.0/23 33409 -64.70.120.0/21 33409 -64.70.128.0/18 3064 -64.70.192.0/19 32400 -64.70.224.0/19 3064 -64.71.0.0/19 33544 -64.71.32.0/19 3064 -64.71.64.0/21 14814 -64.71.72.0/21 13886 -64.71.80.0/20 1970 -64.71.96.0/19 26760 -64.71.128.0/21 6939 -64.71.136.0/24 394996 -64.71.137.0/24 6939 -64.71.138.0/23 6939 -64.71.140.0/22 6939 -64.71.144.0/23 6939 -64.71.146.0/24 394996 -64.71.147.0/24 6939 -64.71.148.0/22 6939 -64.71.152.0/24 63949 -64.71.153.0/24 6939 -64.71.154.0/23 6939 -64.71.156.0/22 6939 -64.71.160.0/24 6939 -64.71.161.0/24 393259 -64.71.162.0/23 6939 -64.71.164.0/22 6939 -64.71.168.0/22 6939 -64.71.172.0/24 63186 -64.71.173.0/24 54288 -64.71.174.0/23 6939 -64.71.176.0/22 6939 -64.71.180.0/24 6939 -64.71.181.0/24 6565 -64.71.182.0/23 6939 -64.71.184.0/21 6939 -64.71.192.0/20 14230 -64.71.208.0/20 393885 -64.71.224.0/21 27229 -64.71.232.0/22 27229 -64.71.236.0/24 27229 -64.71.237.0/24 12180 -64.71.238.0/24 14618 -64.71.239.0/24 27229 -64.71.240.0/20 812 -64.72.0.0/19 11745 -64.72.32.0/21 19108 -64.72.40.0/22 19108 -64.72.44.0/23 19108 -64.72.46.0/24 19108 -64.72.47.0/24 21615 -64.72.48.0/22 19108 -64.72.52.0/23 19108 -64.72.54.0/24 209 -64.72.55.0/24 19108 -64.72.56.0/23 19108 -64.72.58.0/24 21615 -64.72.59.0/24 209 -64.72.60.0/24 209 -64.72.61.0/24 21615 -64.72.62.0/24 21615 -64.72.63.0/24 209 -64.72.64.0/22 46887 -64.72.68.0/24 1419 -64.72.69.0/24 46887 -64.72.70.0/24 46887 -64.72.71.0/24 40951 -64.72.72.0/22 46887 -64.72.76.0/23 46887 -64.72.78.0/24 46887 -64.72.79.0/24 12184 -64.72.80.0/24 25909 -64.72.81.0/24 46887 -64.72.82.0/24 53778 -64.72.83.0/24 29905 -64.72.84.0/23 46887 -64.72.86.0/24 20208 -64.72.87.0/24 46887 -64.72.88.0/22 46887 -64.72.92.0/23 46887 -64.72.94.0/24 33493 -64.72.95.0/24 46887 -64.72.96.0/20 27501 -64.72.112.0/20 15011 -64.72.128.0/19 17054 -64.72.160.0/24 64252 -64.72.176.0/20 16904 -64.72.208.0/21 54458 -64.72.216.0/23 54458 -64.72.222.0/23 54458 -64.72.224.0/24 812 -64.72.225.0/24 6407 -64.72.226.0/23 812 -64.72.228.0/22 6407 -64.72.232.0/21 6407 -64.72.240.0/20 6407 -64.73.0.0/21 3599 -64.73.8.0/22 3599 -64.73.12.0/23 3599 -64.73.14.0/23 19421 -64.73.16.0/21 10788 -64.73.24.0/21 3599 -64.73.32.0/19 3599 -64.73.64.0/18 3599 -64.73.128.0/18 3599 -64.73.192.0/19 7393 -64.73.224.0/19 14265 -64.74.0.0/22 14744 -64.74.4.0/23 14744 -64.74.6.0/24 14216 -64.74.7.0/24 14744 -64.74.8.0/22 14744 -64.74.12.0/24 64022 -64.74.13.0/24 24246 -64.74.14.0/24 394140 -64.74.15.0/24 14744 -64.74.16.0/22 15570 -64.74.20.0/22 14744 -64.74.24.0/22 14744 -64.74.28.0/24 53766 -64.74.29.0/24 14744 -64.74.30.0/23 14744 -64.74.32.0/22 10910 -64.74.36.0/23 15278 -64.74.38.0/24 15278 -64.74.39.0/24 10910 -64.74.40.0/22 26654 -64.74.44.0/23 10910 -64.74.46.0/23 14745 -64.74.48.0/22 10910 -64.74.52.0/23 14745 -64.74.54.0/24 29791 -64.74.55.0/24 10910 -64.74.56.0/24 23463 -64.74.57.0/24 10910 -64.74.58.0/23 10910 -64.74.60.0/22 10910 -64.74.64.0/23 10910 -64.74.66.0/24 10910 -64.74.67.0/24 62613 -64.74.68.0/24 10910 -64.74.69.0/24 29949 -64.74.70.0/23 10910 -64.74.72.0/23 14745 -64.74.74.0/23 10910 -64.74.76.0/23 10910 -64.74.78.0/23 14745 -64.74.80.0/23 30282 -64.74.82.0/23 10910 -64.74.84.0/23 10910 -64.74.86.0/24 13821 -64.74.87.0/24 32011 -64.74.88.0/21 10910 -64.74.96.0/24 19024 -64.74.97.0/24 14586 -64.74.98.0/24 6640 -64.74.99.0/24 19024 -64.74.100.0/24 14742 -64.74.101.0/24 18908 -64.74.102.0/23 19024 -64.74.104.0/24 19024 -64.74.105.0/24 23365 -64.74.106.0/23 19024 -64.74.108.0/23 19024 -64.74.110.0/24 14742 -64.74.111.0/24 394314 -64.74.112.0/24 14745 -64.74.113.0/24 32787 -64.74.114.0/23 14745 -64.74.116.0/24 14745 -64.74.117.0/24 30636 -64.74.118.0/24 14745 -64.74.119.0/24 30636 -64.74.120.0/24 30636 -64.74.121.0/24 23023 -64.74.122.0/23 14745 -64.74.124.0/22 14745 -64.74.128.0/22 12182 -64.74.132.0/23 12182 -64.74.134.0/24 63417 -64.74.135.0/24 12182 -64.74.136.0/24 46474 -64.74.137.0/24 12182 -64.74.138.0/23 12182 -64.74.140.0/22 12182 -64.74.144.0/24 12178 -64.74.145.0/24 36544 -64.74.146.0/24 12178 -64.74.147.0/24 33257 -64.74.148.0/22 12178 -64.74.152.0/23 12178 -64.74.154.0/24 395388 -64.74.155.0/24 12178 -64.74.156.0/24 35872 -64.74.157.0/24 12178 -64.74.158.0/23 12178 -64.74.160.0/23 63018 -64.74.162.0/24 63018 -64.74.163.0/24 10912 -64.74.164.0/24 10912 -64.74.165.0/24 27545 -64.74.166.0/23 10912 -64.74.168.0/22 10912 -64.74.172.0/23 10912 -64.74.174.0/24 10912 -64.74.175.0/24 32873 -64.74.176.0/23 13790 -64.74.178.0/23 5715 -64.74.180.0/22 13790 -64.74.184.0/23 63188 -64.74.186.0/24 63188 -64.74.187.0/24 16618 -64.74.188.0/23 13790 -64.74.190.0/24 13790 -64.74.191.0/24 397808 -64.74.192.0/22 14745 -64.74.196.0/23 14745 -64.74.198.0/24 26275 -64.74.199.0/24 14745 -64.74.200.0/22 63410 -64.74.204.0/24 16791 -64.74.205.0/24 29791 -64.74.206.0/24 14745 -64.74.207.0/24 22132 -64.74.208.0/22 12182 -64.74.212.0/23 12182 -64.74.214.0/24 12182 -64.74.215.0/24 54538 -64.74.216.0/24 12182 -64.74.217.0/24 63417 -64.74.218.0/23 12182 -64.74.220.0/23 12182 -64.74.222.0/24 25875 -64.74.223.0/24 12182 -64.74.224.0/24 40150 -64.74.225.0/24 21734 -64.74.226.0/23 19024 -64.74.228.0/24 19024 -64.74.229.0/24 6640 -64.74.230.0/23 19024 -64.74.232.0/23 19024 -64.74.234.0/24 393836 -64.74.235.0/24 23335 -64.74.236.0/24 22075 -64.74.237.0/24 14148 -64.74.238.0/23 19024 -64.74.240.0/21 13789 -64.74.248.0/24 13570 -64.74.249.0/24 40686 -64.74.250.0/23 13789 -64.74.252.0/23 14610 -64.74.254.0/24 393954 -64.74.255.0/24 13789 -64.75.0.0/21 3561 -64.75.8.0/22 3561 -64.75.12.0/23 3561 -64.75.14.0/24 3561 -64.75.15.0/24 19950 -64.75.16.0/23 3561 -64.75.18.0/24 3561 -64.75.19.0/24 13713 -64.75.20.0/23 3561 -64.75.22.0/24 3561 -64.75.23.0/24 396167 -64.75.24.0/22 3561 -64.75.28.0/23 3561 -64.75.30.0/24 3561 -64.75.31.0/24 18705 -64.75.32.0/19 3561 -64.75.64.0/20 19963 -64.75.84.0/22 19963 -64.75.111.0/24 19963 -64.75.112.0/20 19963 -64.75.128.0/18 3776 -64.75.192.0/20 3776 -64.75.208.0/22 3776 -64.75.212.0/23 3776 -64.75.214.0/24 395618 -64.75.215.0/24 3776 -64.75.216.0/21 3776 -64.75.224.0/19 3776 -64.76.0.0/18 3549 -64.76.64.0/20 3549 -64.76.80.0/24 22698 -64.76.81.0/24 3549 -64.76.82.0/23 3549 -64.76.84.0/22 3549 -64.76.88.0/21 3549 -64.76.96.0/24 10753 -64.76.97.0/24 3549 -64.76.98.0/24 10753 -64.76.99.0/24 3549 -64.76.100.0/22 3549 -64.76.104.0/21 3549 -64.76.112.0/20 3549 -64.76.128.0/20 3549 -64.76.144.0/23 3549 -64.76.146.0/24 3549 -64.76.147.0/24 26048 -64.76.148.0/23 262228 -64.76.150.0/23 3549 -64.76.152.0/24 27911 -64.76.153.0/24 3549 -64.76.154.0/23 21765 -64.76.156.0/24 21765 -64.76.157.0/24 3549 -64.76.158.0/23 3549 -64.76.160.0/21 3549 -64.76.168.0/23 3549 -64.76.170.0/24 52246 -64.76.171.0/24 3549 -64.76.172.0/22 3549 -64.76.176.0/21 3549 -64.76.184.0/23 3549 -64.76.186.0/24 3549 -64.76.187.0/24 22698 -64.76.188.0/22 3549 -64.76.192.0/22 3549 -64.76.196.0/24 262257 -64.76.197.0/24 3549 -64.76.198.0/23 3549 -64.76.200.0/21 3549 -64.76.208.0/20 3549 -64.76.224.0/20 3549 -64.76.240.0/23 3549 -64.76.242.0/24 3549 -64.76.243.0/24 3356 -64.76.244.0/23 3549 -64.77.0.0/17 13768 -64.77.201.0/24 7029 -64.77.205.0/24 33178 -64.77.206.0/24 20115 -64.77.213.0/24 33234 -64.77.216.0/23 33234 -64.77.218.0/24 33234 -64.77.219.0/24 4452 -64.77.220.0/24 11272 -64.77.221.0/24 394859 -64.77.222.0/23 27258 -64.77.224.0/20 25892 -64.77.240.0/20 36103 -64.78.0.0/21 16406 -64.78.8.0/21 20385 -64.78.16.0/20 16406 -64.78.32.0/19 16406 -64.78.82.0/24 7016 -64.78.144.0/20 13649 -64.78.160.0/20 31972 -64.78.176.0/20 13649 -64.78.192.0/21 13649 -64.78.200.0/21 42 -64.78.208.0/20 3356 -64.78.224.0/20 13649 -64.78.240.0/20 19689 -64.79.0.0/20 30410 -64.79.16.0/20 17322 -64.79.32.0/24 11924 -64.79.33.0/24 22485 -64.79.34.0/23 11924 -64.79.36.0/24 22485 -64.79.37.0/24 11924 -64.79.38.0/23 11924 -64.79.40.0/21 11924 -64.79.48.0/20 393713 -64.79.64.0/19 10297 -64.79.96.0/20 53264 -64.79.112.0/20 33544 -64.79.128.0/21 23005 -64.79.136.0/24 4882 -64.79.137.0/24 23005 -64.79.138.0/23 23005 -64.79.140.0/22 23005 -64.79.144.0/23 27496 -64.79.146.0/23 23005 -64.79.148.0/24 23005 -64.79.149.0/24 26914 -64.79.150.0/23 23005 -64.79.152.0/23 23005 -64.79.154.0/24 36288 -64.79.155.0/24 6146 -64.79.156.0/23 22911 -64.79.158.0/23 23005 -64.79.160.0/24 14415 -64.79.161.0/24 3561 -64.79.162.0/23 3561 -64.79.164.0/23 3561 -64.79.166.0/24 3561 -64.79.167.0/24 14415 -64.79.168.0/24 14415 -64.79.169.0/24 3561 -64.79.170.0/24 14415 -64.79.171.0/24 3561 -64.79.172.0/22 3561 -64.79.176.0/20 19956 -64.79.192.0/19 29873 -64.79.224.0/21 11325 -64.79.232.0/23 11325 -64.79.234.0/23 9009 -64.79.236.0/22 11325 -64.79.240.0/20 11325 -64.80.0.0/18 7029 -64.80.64.0/19 7029 -64.80.96.0/21 7029 -64.80.104.0/23 7029 -64.80.106.0/24 1785 -64.80.107.0/24 7029 -64.80.108.0/22 7029 -64.80.112.0/20 7029 -64.80.128.0/17 7029 -64.81.0.0/19 18566 -64.81.32.0/21 18566 -64.81.40.0/22 18566 -64.81.44.0/24 18566 -64.81.45.0/24 17184 -64.81.46.0/23 18566 -64.81.48.0/20 18566 -64.81.64.0/21 18566 -64.81.72.0/22 18566 -64.81.76.0/23 18566 -64.81.78.0/24 18566 -64.81.79.0/24 17184 -64.81.80.0/20 18566 -64.81.96.0/20 18566 -64.81.112.0/21 18566 -64.81.120.0/22 18566 -64.81.124.0/23 18566 -64.81.126.0/24 18566 -64.81.127.0/24 17184 -64.81.128.0/20 18566 -64.81.144.0/21 18566 -64.81.152.0/22 18566 -64.81.156.0/23 18566 -64.81.158.0/24 18566 -64.81.159.0/24 17184 -64.81.160.0/19 18566 -64.81.192.0/18 18566 -64.82.0.0/17 7029 -64.82.128.0/18 46687 -64.82.192.0/18 27419 -64.83.0.0/18 7029 -64.83.64.0/20 7029 -64.83.96.0/19 20098 -64.83.128.0/24 7341 -64.83.129.0/24 39942 -64.83.130.0/24 39942 -64.83.131.0/24 7341 -64.83.132.0/22 7341 -64.83.136.0/23 7341 -64.83.138.0/24 26801 -64.83.139.0/24 7341 -64.83.140.0/22 7341 -64.83.144.0/21 7341 -64.83.152.0/22 7341 -64.83.156.0/24 53374 -64.83.157.0/24 7341 -64.83.158.0/24 7341 -64.83.159.0/24 53374 -64.83.160.0/19 4181 -64.83.192.0/19 20115 -64.83.224.0/20 20115 -64.83.240.0/20 40702 -64.84.0.0/24 19893 -64.84.2.0/23 394552 -64.84.5.0/24 19893 -64.84.6.0/23 19893 -64.84.8.0/23 26424 -64.84.11.0/24 19893 -64.84.12.0/24 577 -64.84.13.0/24 19458 -64.84.15.0/24 19893 -64.84.16.0/24 19893 -64.84.17.0/24 23005 -64.84.18.0/23 19893 -64.84.20.0/23 19893 -64.84.23.0/24 19893 -64.84.26.0/24 19893 -64.84.27.0/24 36204 -64.84.29.0/24 19893 -64.84.30.0/24 21827 -64.84.31.0/24 19893 -64.84.37.0/24 19893 -64.84.38.0/23 19893 -64.84.46.0/23 19893 -64.84.49.0/24 19893 -64.84.54.0/23 19893 -64.84.56.0/23 36451 -64.84.58.0/23 19893 -64.84.62.0/23 19893 -64.84.64.0/24 10780 -64.84.65.0/24 36204 -64.84.66.0/23 10780 -64.84.68.0/22 10780 -64.84.72.0/23 10780 -64.84.74.0/24 10780 -64.84.78.0/23 36451 -64.84.80.0/24 11629 -64.84.83.0/24 22712 -64.84.84.0/24 17387 -64.84.85.0/24 17059 -64.84.86.0/23 36451 -64.84.96.0/19 11590 -64.85.8.0/21 13894 -64.85.16.0/21 13894 -64.85.24.0/24 53889 -64.85.25.0/24 6130 -64.85.26.0/24 63008 -64.85.27.0/24 53889 -64.85.28.0/22 55246 -64.85.32.0/19 15247 -64.85.64.0/18 3561 -64.85.128.0/19 30517 -64.85.160.0/21 30517 -64.85.168.0/21 19009 -64.85.176.0/23 19435 -64.85.178.0/23 14430 -64.85.180.0/22 19435 -64.85.184.0/22 19435 -64.85.188.0/24 19435 -64.85.189.0/24 14430 -64.85.190.0/23 19435 -64.85.192.0/20 4581 -64.85.208.0/22 4581 -64.85.212.0/24 4581 -64.85.213.0/24 11929 -64.85.214.0/23 4581 -64.85.216.0/21 4581 -64.85.224.0/19 11404 -64.86.0.0/20 6453 -64.86.16.0/22 6453 -64.86.20.0/23 6453 -64.86.22.0/24 6453 -64.86.23.0/24 24439 -64.86.24.0/23 6453 -64.86.26.0/23 37204 -64.86.28.0/22 6453 -64.86.32.0/21 6453 -64.86.40.0/22 6453 -64.86.44.0/24 6648 -64.86.45.0/24 6453 -64.86.46.0/24 6453 -64.86.47.0/24 22652 -64.86.48.0/20 6453 -64.86.64.0/21 6453 -64.86.72.0/22 7131 -64.86.76.0/24 24439 -64.86.77.0/24 6453 -64.86.78.0/23 6453 -64.86.80.0/21 6453 -64.86.88.0/22 6453 -64.86.92.0/24 6453 -64.86.93.0/24 11427 -64.86.94.0/23 6453 -64.86.96.0/19 6453 -64.86.128.0/21 6453 -64.86.136.0/22 6453 -64.86.140.0/23 18563 -64.86.142.0/23 6453 -64.86.144.0/20 6453 -64.86.160.0/19 6453 -64.86.192.0/22 6453 -64.86.196.0/24 7029 -64.86.197.0/24 6453 -64.86.198.0/23 6453 -64.86.200.0/22 6453 -64.86.204.0/23 6453 -64.86.206.0/24 20940 -64.86.207.0/24 6453 -64.86.208.0/21 6453 -64.86.216.0/22 6453 -64.86.220.0/23 53365 -64.86.222.0/23 6453 -64.86.224.0/23 14080 -64.86.226.0/23 6453 -64.86.228.0/22 6453 -64.86.232.0/21 40009 -64.86.240.0/20 6453 -64.87.0.0/19 6130 -64.87.32.0/19 40824 -64.87.64.0/18 812 -64.88.0.0/17 26463 -64.88.128.0/19 35041 -64.88.160.0/19 20141 -64.88.192.0/19 14860 -64.88.224.0/20 22351 -64.88.240.0/20 30361 -64.89.0.0/20 11367 -64.89.32.0/21 3561 -64.89.40.0/22 3561 -64.89.44.0/23 14919 -64.89.46.0/23 3561 -64.89.48.0/20 395896 -64.89.64.0/19 7029 -64.89.96.0/24 209 -64.89.97.0/24 40735 -64.89.98.0/24 20448 -64.89.99.0/24 5006 -64.89.100.0/22 22561 -64.89.104.0/23 22561 -64.89.106.0/24 5006 -64.89.107.0/24 209 -64.89.108.0/24 22561 -64.89.109.0/24 209 -64.89.110.0/24 22561 -64.89.111.0/24 20448 -64.89.112.0/23 22561 -64.89.114.0/24 5006 -64.89.115.0/24 23126 -64.89.116.0/23 23126 -64.89.118.0/23 22561 -64.89.120.0/22 22561 -64.89.124.0/23 22561 -64.89.126.0/24 23126 -64.89.127.0/24 22561 -64.89.128.0/23 54804 -64.89.144.0/20 3549 -64.89.160.0/20 12036 -64.89.176.0/20 7896 -64.89.192.0/20 11367 -64.89.208.0/20 11961 -64.89.224.0/20 17204 -64.89.240.0/20 29979 -64.90.0.0/19 7029 -64.90.33.0/24 26347 -64.90.34.0/23 26347 -64.90.36.0/22 26347 -64.90.40.0/21 26347 -64.90.48.0/20 26347 -64.90.64.0/24 64227 -64.90.65.0/24 20283 -64.90.66.0/23 20283 -64.90.68.0/22 20283 -64.90.72.0/21 20283 -64.90.80.0/20 20283 -64.90.96.0/20 19797 -64.90.112.0/22 18787 -64.90.116.0/23 18787 -64.90.124.0/24 7018 -64.90.125.0/24 29782 -64.90.126.0/23 4188 -64.90.128.0/23 393474 -64.90.130.0/24 393474 -64.90.131.0/24 40684 -64.90.132.0/22 393474 -64.90.136.0/21 393474 -64.90.144.0/20 21782 -64.90.160.0/24 11403 -64.90.161.0/24 3356 -64.90.162.0/23 11403 -64.90.164.0/23 11403 -64.90.166.0/24 11403 -64.90.167.0/24 3356 -64.90.168.0/22 11403 -64.90.172.0/23 11403 -64.90.174.0/24 57624 -64.90.175.0/24 11403 -64.90.176.0/20 11403 -64.90.192.0/20 13649 -64.90.208.0/20 27216 -64.90.224.0/21 16599 -64.90.232.0/23 16599 -64.90.235.0/24 16599 -64.90.237.0/24 16599 -64.90.238.0/23 16599 -64.90.240.0/20 19963 -64.91.0.0/20 22561 -64.91.16.0/21 22561 -64.91.24.0/23 22561 -64.91.26.0/24 22561 -64.91.27.0/24 209 -64.91.28.0/22 22561 -64.91.32.0/21 22561 -64.91.40.0/22 22561 -64.91.44.0/23 22561 -64.91.46.0/24 22561 -64.91.47.0/24 209 -64.91.48.0/22 22561 -64.91.52.0/24 22561 -64.91.53.0/24 209 -64.91.54.0/23 22561 -64.91.56.0/23 22561 -64.91.58.0/24 209 -64.91.59.0/24 22561 -64.91.60.0/22 22561 -64.91.64.0/19 22561 -64.91.96.0/23 22561 -64.91.98.0/24 209 -64.91.99.0/24 22561 -64.91.100.0/22 22561 -64.91.104.0/23 209 -64.91.106.0/23 22561 -64.91.108.0/24 22561 -64.91.109.0/24 209 -64.91.110.0/23 22561 -64.91.112.0/21 22561 -64.91.120.0/22 22561 -64.91.124.0/23 209 -64.91.126.0/24 22561 -64.91.127.0/24 209 -64.91.128.0/18 7029 -64.91.192.0/19 7029 -64.91.224.0/19 32244 -64.92.0.0/18 6300 -64.92.64.0/24 174 -64.92.65.0/24 33059 -64.92.66.0/23 174 -64.92.68.0/24 174 -64.92.69.0/24 15149 -64.92.70.0/23 33059 -64.92.72.0/24 33059 -64.92.78.0/23 32732 -64.92.96.0/19 21777 -64.92.128.0/19 39939 -64.92.160.0/24 209 -64.92.161.0/24 56001 -64.92.162.0/23 209 -64.92.164.0/24 29976 -64.92.165.0/24 209 -64.92.166.0/23 209 -64.92.168.0/21 209 -64.92.176.0/20 22645 -64.92.192.0/24 29863 -64.92.193.0/24 396037 -64.92.194.0/24 396037 -64.92.195.0/24 29863 -64.92.196.0/24 396037 -64.92.197.0/24 29863 -64.92.198.0/23 29863 -64.92.200.0/22 29863 -64.92.204.0/24 396037 -64.92.205.0/24 29863 -64.92.206.0/23 29863 -64.92.208.0/24 396037 -64.92.209.0/24 29863 -64.92.210.0/23 29863 -64.92.212.0/24 29863 -64.92.213.0/24 396037 -64.92.214.0/23 29863 -64.92.216.0/21 29863 -64.93.0.0/18 4565 -64.93.64.0/19 558 -64.93.96.0/22 19016 -64.93.100.0/23 19016 -64.93.102.0/23 394081 -64.93.104.0/23 19016 -64.93.106.0/24 19016 -64.93.107.0/24 394081 -64.93.108.0/22 19016 -64.93.112.0/20 39939 -64.93.128.0/17 32733 -64.94.0.0/21 14745 -64.94.8.0/24 30636 -64.94.9.0/24 14745 -64.94.10.0/23 14745 -64.94.12.0/22 14745 -64.94.16.0/21 10913 -64.94.24.0/24 33498 -64.94.25.0/24 10913 -64.94.26.0/23 10913 -64.94.28.0/24 10913 -64.94.29.0/24 14743 -64.94.30.0/24 27385 -64.94.31.0/24 10913 -64.94.32.0/22 19024 -64.94.36.0/24 18965 -64.94.37.0/24 19024 -64.94.38.0/23 19024 -64.94.40.0/24 19024 -64.94.41.0/24 33498 -64.94.42.0/23 19024 -64.94.44.0/22 19024 -64.94.48.0/23 12180 -64.94.50.0/24 32270 -64.94.51.0/24 12180 -64.94.52.0/23 12180 -64.94.54.0/24 53766 -64.94.55.0/24 12180 -64.94.56.0/23 12180 -64.94.58.0/24 21744 -64.94.59.0/24 12180 -64.94.60.0/24 12180 -64.94.61.0/24 21744 -64.94.62.0/24 395951 -64.94.63.0/24 21744 -64.94.64.0/22 46373 -64.94.72.0/22 26353 -64.94.76.0/22 10913 -64.94.87.0/24 46071 -64.94.88.0/22 11855 -64.94.94.0/24 14745 -64.94.95.0/24 63018 -64.94.96.0/24 13792 -64.94.97.0/24 10912 -64.94.98.0/23 10912 -64.94.100.0/23 32374 -64.94.102.0/23 10912 -64.94.104.0/22 10912 -64.94.108.0/23 10912 -64.94.110.0/24 394183 -64.94.111.0/24 10912 -64.94.112.0/23 14744 -64.94.114.0/24 6640 -64.94.115.0/24 14744 -64.94.116.0/22 14744 -64.94.120.0/21 14744 -64.94.128.0/21 14744 -64.94.136.0/23 14744 -64.94.138.0/24 6640 -64.94.139.0/24 14744 -64.94.140.0/22 14744 -64.94.144.0/23 14745 -64.94.146.0/24 26380 -64.94.147.0/24 14745 -64.94.148.0/22 11853 -64.94.152.0/22 11853 -64.94.156.0/23 11853 -64.94.158.0/24 14744 -64.94.159.0/24 11853 -64.94.160.0/22 13789 -64.94.164.0/24 13789 -64.94.165.0/24 14922 -64.94.166.0/24 36544 -64.94.167.0/24 25781 -64.94.168.0/22 13789 -64.94.172.0/24 13789 -64.94.173.0/24 14610 -64.94.174.0/23 13789 -64.94.176.0/22 13789 -64.94.180.0/23 19812 -64.94.182.0/23 13789 -64.94.184.0/22 13789 -64.94.188.0/24 13789 -64.94.189.0/24 11823 -64.94.190.0/23 13789 -64.94.192.0/22 12178 -64.94.196.0/23 36234 -64.94.198.0/23 12178 -64.94.200.0/22 12178 -64.94.204.0/24 12178 -64.94.205.0/24 4546 -64.94.206.0/23 12178 -64.94.208.0/21 35913 -64.94.216.0/21 12181 -64.94.224.0/24 14745 -64.94.225.0/24 19592 -64.94.226.0/23 14745 -64.94.228.0/22 14745 -64.94.232.0/24 54155 -64.94.233.0/24 14745 -64.94.234.0/23 14745 -64.94.236.0/22 14745 -64.94.240.0/24 3846 -64.94.241.0/24 14742 -64.94.242.0/23 14742 -64.94.244.0/22 27382 -64.94.248.0/21 14742 -64.95.0.0/21 10910 -64.95.8.0/24 31982 -64.95.9.0/24 10910 -64.95.10.0/23 10910 -64.95.12.0/23 10910 -64.95.14.0/24 10910 -64.95.15.0/24 32826 -64.95.16.0/22 10910 -64.95.20.0/24 21751 -64.95.21.0/24 1608 -64.95.22.0/23 10910 -64.95.24.0/22 10910 -64.95.32.0/21 10913 -64.95.40.0/23 13789 -64.95.42.0/23 27273 -64.95.44.0/22 13789 -64.95.48.0/24 14745 -64.95.49.0/24 30636 -64.95.50.0/23 14745 -64.95.52.0/24 29791 -64.95.53.0/24 14745 -64.95.54.0/23 14745 -64.95.56.0/22 14745 -64.95.60.0/24 22132 -64.95.61.0/24 14745 -64.95.62.0/23 14745 -64.95.64.0/22 14742 -64.95.68.0/24 14742 -64.95.69.0/24 19592 -64.95.70.0/23 14742 -64.95.72.0/22 14742 -64.95.76.0/23 14742 -64.95.78.0/24 27382 -64.95.79.0/24 14742 -64.95.80.0/21 11853 -64.95.88.0/23 20461 -64.95.90.0/24 20461 -64.95.91.0/24 11853 -64.95.92.0/22 11853 -64.95.96.0/21 29791 -64.95.108.0/24 11855 -64.95.109.0/24 21691 -64.95.110.0/23 11855 -64.95.112.0/20 14743 -64.95.128.0/23 48910 -64.95.130.0/24 48910 -64.95.131.0/24 394808 -64.95.132.0/24 394808 -64.95.133.0/24 48910 -64.95.134.0/23 48910 -64.95.136.0/24 394779 -64.95.137.0/24 12182 -64.95.138.0/24 394471 -64.95.139.0/24 26654 -64.95.140.0/23 12182 -64.95.142.0/24 25974 -64.95.143.0/24 12182 -64.95.144.0/23 14745 -64.95.146.0/23 26380 -64.95.156.0/24 12182 -64.95.157.0/24 12181 -64.95.158.0/23 29791 -64.95.160.0/23 29791 -64.95.162.0/23 14745 -64.95.164.0/23 14745 -64.95.166.0/24 63441 -64.95.167.0/24 14745 -64.95.168.0/21 14744 -64.95.176.0/22 14745 -64.95.180.0/22 12179 -64.95.184.0/22 14745 -64.95.188.0/23 15570 -64.95.190.0/24 15570 -64.95.191.0/24 21734 -64.95.192.0/22 14745 -64.95.196.0/22 12181 -64.95.200.0/22 12181 -64.95.204.0/22 14745 -64.95.208.0/21 13791 -64.95.216.0/22 13791 -64.95.220.0/24 33717 -64.95.221.0/24 13791 -64.95.222.0/24 13791 -64.95.223.0/24 395644 -64.95.224.0/22 26654 -64.95.228.0/22 10910 -64.95.232.0/24 31956 -64.95.233.0/24 10910 -64.95.234.0/23 10910 -64.95.236.0/22 10910 -64.95.240.0/21 12180 -64.95.248.0/22 12180 -64.95.252.0/24 12180 -64.95.253.0/24 27229 -64.95.254.0/23 12180 -64.96.0.0/18 62831 -64.96.144.0/20 393818 -64.96.160.0/19 62831 -64.96.192.0/19 62087 -64.96.240.0/20 63363 -64.98.0.0/22 394497 -64.98.4.0/23 394308 -64.98.6.0/23 394497 -64.98.8.0/23 394497 -64.98.10.0/23 32491 -64.98.12.0/22 32491 -64.98.16.0/20 394497 -64.98.32.0/20 32491 -64.98.48.0/20 394497 -64.98.64.0/19 32491 -64.98.96.0/19 394497 -64.98.128.0/18 32491 -64.98.192.0/20 32491 -64.98.208.0/20 394497 -64.98.224.0/20 32491 -64.98.240.0/20 394497 -64.99.0.0/17 15348 -64.99.128.0/18 15348 -64.99.192.0/19 15348 -64.99.224.0/19 22070 -64.100.0.0/14 109 -64.104.0.0/16 109 -64.105.0.0/16 18566 -64.106.0.0/17 3388 -64.106.128.0/18 14492 -64.106.192.0/19 14492 -64.106.224.0/23 22205 -64.106.226.0/24 14492 -64.106.227.0/24 40085 -64.106.228.0/22 14492 -64.106.232.0/21 14492 -64.106.240.0/22 14492 -64.106.244.0/23 14492 -64.106.246.0/23 22205 -64.106.248.0/21 22205 -64.107.0.0/23 6325 -64.107.2.0/24 6325 -64.107.3.0/24 19480 -64.107.4.0/22 6325 -64.107.8.0/21 40038 -64.107.16.0/20 6325 -64.107.32.0/21 6325 -64.107.40.0/22 6325 -64.107.44.0/22 394031 -64.107.48.0/24 29885 -64.107.49.0/24 6325 -64.107.50.0/23 6325 -64.107.52.0/23 6325 -64.107.54.0/24 395068 -64.107.55.0/24 6325 -64.107.56.0/21 6325 -64.107.64.0/20 6325 -64.107.80.0/23 1777 -64.107.82.0/24 1777 -64.107.83.0/24 6325 -64.107.84.0/22 6325 -64.107.88.0/21 6325 -64.107.96.0/19 6325 -64.107.128.0/19 6325 -64.107.160.0/20 6325 -64.107.176.0/21 6325 -64.107.184.0/24 29993 -64.107.185.0/24 6325 -64.107.186.0/23 6325 -64.107.188.0/22 6325 -64.107.192.0/18 6325 -64.108.0.0/16 7018 -64.109.0.0/17 7018 -64.109.128.0/18 7018 -64.109.192.0/20 7018 -64.109.208.0/23 7018 -64.109.210.0/24 15131 -64.109.211.0/24 7018 -64.109.212.0/22 7018 -64.109.216.0/21 7018 -64.109.224.0/19 7018 -64.110.0.0/21 30043 -64.110.8.0/24 30043 -64.110.16.0/21 21902 -64.110.24.0/22 63018 -64.110.28.0/22 47965 -64.110.32.0/20 47965 -64.110.48.0/23 47965 -64.110.50.0/24 47965 -64.110.51.0/24 60725 -64.110.52.0/22 12684 -64.110.56.0/21 12684 -64.110.64.0/18 47965 -64.110.128.0/24 63356 -64.110.129.0/24 54540 -64.110.130.0/24 63356 -64.110.131.0/24 29802 -64.110.136.0/23 174 -64.110.140.0/22 12684 -64.110.144.0/22 47965 -64.110.153.0/24 47965 -64.110.154.0/23 60725 -64.110.192.0/18 803 -64.111.0.0/20 53809 -64.111.16.0/20 33302 -64.111.32.0/23 62943 -64.111.34.0/24 397780 -64.111.35.0/24 62943 -64.111.36.0/22 62943 -64.111.40.0/23 62943 -64.111.42.0/23 10750 -64.111.44.0/23 62943 -64.111.46.0/24 19746 -64.111.47.0/24 62943 -64.111.48.0/21 62943 -64.111.56.0/24 395040 -64.111.57.0/24 26400 -64.111.58.0/23 62943 -64.111.60.0/23 62943 -64.111.62.0/24 62943 -64.111.63.0/24 395040 -64.111.64.0/20 18616 -64.111.81.0/24 19397 -64.111.83.0/24 19397 -64.111.84.0/22 19397 -64.111.88.0/22 19397 -64.111.94.0/23 19397 -64.111.96.0/19 26347 -64.111.128.0/19 3593 -64.111.160.0/22 40551 -64.111.164.0/24 40551 -64.111.167.0/24 40551 -64.111.169.0/24 40551 -64.111.170.0/23 40551 -64.111.172.0/22 40551 -64.111.176.0/20 19371 -64.111.192.0/19 23393 -64.111.224.0/19 17049 -64.112.128.0/19 1226 -64.112.160.0/20 394826 -64.112.176.0/22 394548 -64.112.180.0/23 394548 -64.112.182.0/23 46887 -64.112.184.0/22 14713 -64.112.188.0/23 174 -64.112.190.0/24 19605 -64.112.191.0/24 20304 -64.112.192.0/19 13728 -64.112.224.0/20 22171 -64.112.240.0/20 5078 -64.113.0.0/24 10835 -64.113.2.0/24 10835 -64.113.4.0/24 10835 -64.113.6.0/23 16713 -64.113.8.0/24 16713 -64.113.18.0/23 16713 -64.113.20.0/22 62642 -64.113.24.0/23 13789 -64.113.26.0/23 12179 -64.113.28.0/22 53501 -64.113.32.0/20 15154 -64.113.48.0/23 53292 -64.113.50.0/24 53292 -64.113.51.0/24 15324 -64.113.52.0/22 53292 -64.113.56.0/22 53292 -64.113.60.0/22 63251 -64.113.64.0/19 2698 -64.113.96.0/19 14051 -64.113.128.0/19 3356 -64.113.160.0/20 16664 -64.113.176.0/20 46491 -64.113.192.0/19 7029 -64.113.224.0/20 11833 -64.113.241.0/24 30635 -64.113.242.0/24 30635 -64.113.249.0/24 30635 -64.113.250.0/24 30635 -64.113.254.0/23 30635 -64.114.0.0/18 852 -64.114.64.0/20 852 -64.114.80.0/22 25668 -64.114.84.0/23 25668 -64.114.86.0/23 852 -64.114.88.0/21 852 -64.114.96.0/19 852 -64.114.128.0/20 852 -64.114.144.0/22 852 -64.114.148.0/22 25668 -64.114.152.0/21 852 -64.114.160.0/20 852 -64.114.176.0/21 852 -64.114.184.0/22 852 -64.114.188.0/24 852 -64.114.189.0/24 7861 -64.114.190.0/23 852 -64.114.192.0/21 852 -64.114.200.0/23 25668 -64.114.202.0/23 852 -64.114.204.0/22 852 -64.114.208.0/20 852 -64.114.224.0/20 852 -64.114.240.0/21 852 -64.114.248.0/23 852 -64.114.250.0/23 25668 -64.114.252.0/22 852 -64.115.0.0/16 7029 -64.116.0.0/17 14551 -64.116.128.0/19 14551 -64.116.160.0/24 14551 -64.116.161.0/24 21599 -64.116.162.0/23 14551 -64.116.164.0/22 14551 -64.116.168.0/23 14551 -64.116.170.0/24 21883 -64.116.171.0/24 14551 -64.116.172.0/22 14551 -64.116.176.0/23 14551 -64.116.178.0/24 21883 -64.116.179.0/24 14551 -64.116.180.0/22 14551 -64.116.184.0/24 21599 -64.116.185.0/24 28005 -64.116.186.0/23 21599 -64.116.188.0/23 21599 -64.116.190.0/24 21599 -64.116.191.0/24 27687 -64.116.192.0/20 14551 -64.116.208.0/22 14551 -64.116.212.0/23 13424 -64.116.214.0/23 14551 -64.116.216.0/21 14551 -64.116.224.0/19 14551 -64.117.0.0/19 14551 -64.117.32.0/21 14551 -64.117.40.0/22 14551 -64.117.44.0/23 14551 -64.117.46.0/24 33392 -64.117.47.0/24 14551 -64.117.48.0/20 14551 -64.117.64.0/18 14551 -64.117.128.0/18 14551 -64.117.192.0/21 14551 -64.117.200.0/21 21599 -64.117.208.0/20 14551 -64.117.224.0/21 14551 -64.117.232.0/23 14551 -64.117.234.0/24 27649 -64.117.235.0/24 14551 -64.117.236.0/22 14551 -64.117.240.0/20 14551 -64.118.0.0/20 25637 -64.118.16.0/20 23252 -64.118.32.0/20 22378 -64.118.48.0/20 33284 -64.118.64.0/20 36820 -64.118.80.0/20 22418 -64.118.96.0/19 14750 -64.118.128.0/19 7029 -64.118.160.0/22 26803 -64.118.164.0/24 26803 -64.118.165.0/24 11691 -64.118.166.0/23 26803 -64.118.168.0/21 26803 -64.118.179.0/24 11882 -64.118.180.0/22 11882 -64.118.185.0/24 11882 -64.118.196.0/24 10660 -64.118.198.0/23 10660 -64.118.200.0/22 10660 -64.118.205.0/24 10660 -64.118.206.0/23 10660 -64.118.208.0/20 18948 -64.118.224.0/19 13645 -64.119.0.0/20 19518 -64.119.16.0/20 17882 -64.119.32.0/20 19381 -64.119.48.0/24 46970 -64.119.49.0/24 64242 -64.119.50.0/23 64242 -64.119.52.0/24 64242 -64.119.53.0/24 46970 -64.119.54.0/24 46970 -64.119.55.0/24 64242 -64.119.56.0/22 64242 -64.119.60.0/24 64242 -64.119.61.0/24 46970 -64.119.62.0/24 46970 -64.119.63.0/24 64242 -64.119.64.0/20 7029 -64.119.80.0/20 19689 -64.119.96.0/19 812 -64.119.128.0/20 19406 -64.119.144.0/21 19406 -64.119.152.0/23 19406 -64.119.154.0/24 19406 -64.119.155.0/24 26185 -64.119.156.0/22 19406 -64.119.160.0/21 29863 -64.119.168.0/22 29863 -64.119.172.0/24 26841 -64.119.173.0/24 29863 -64.119.174.0/23 29863 -64.119.176.0/20 29863 -64.119.192.0/20 35900 -64.119.208.0/21 22652 -64.119.216.0/22 22652 -64.119.220.0/23 22652 -64.119.222.0/24 22652 -64.119.223.0/24 40864 -64.119.240.0/20 19991 -64.120.2.0/24 396190 -64.120.4.0/22 396190 -64.120.8.0/22 395954 -64.120.12.0/22 15003 -64.120.16.0/22 396190 -64.120.20.0/22 15003 -64.120.24.0/22 15003 -64.120.28.0/22 396362 -64.120.32.0/21 15003 -64.120.40.0/22 395954 -64.120.44.0/22 396362 -64.120.48.0/22 396190 -64.120.65.0/24 396190 -64.120.68.0/23 396190 -64.120.72.0/22 19148 -64.120.78.0/24 394380 -64.120.80.0/21 15003 -64.120.88.0/22 133752 -64.120.96.0/21 395954 -64.120.106.0/24 396190 -64.120.108.0/24 30633 -64.120.109.0/24 395954 -64.120.110.0/23 59253 -64.120.112.0/21 133752 -64.120.120.0/23 133752 -64.120.123.0/24 396190 -64.120.128.0/17 2906 -64.121.0.0/16 6079 -64.122.0.0/16 7385 -64.123.0.0/20 7018 -64.123.16.0/22 7018 -64.123.20.0/23 7018 -64.123.22.0/24 25993 -64.123.23.0/24 7018 -64.123.24.0/21 7018 -64.123.32.0/19 7018 -64.123.64.0/19 7018 -64.123.96.0/21 17064 -64.123.104.0/23 17064 -64.123.106.0/23 7018 -64.123.108.0/22 7018 -64.123.112.0/20 7018 -64.123.128.0/18 7018 -64.123.192.0/19 7018 -64.123.224.0/20 7018 -64.123.240.0/22 7018 -64.123.244.0/23 7018 -64.123.246.0/24 2386 -64.123.247.0/24 7018 -64.123.248.0/21 7018 -64.124.0.0/23 6461 -64.124.2.0/24 6461 -64.124.3.0/24 393780 -64.124.4.0/22 6461 -64.124.8.0/24 26552 -64.124.9.0/24 6461 -64.124.10.0/23 6461 -64.124.12.0/22 6461 -64.124.16.0/21 6461 -64.124.24.0/22 6461 -64.124.28.0/24 6461 -64.124.29.0/24 25857 -64.124.30.0/24 3356 -64.124.31.0/24 6461 -64.124.32.0/22 6461 -64.124.36.0/23 6461 -64.124.38.0/24 6461 -64.124.39.0/24 18798 -64.124.40.0/21 6461 -64.124.48.0/24 6461 -64.124.49.0/24 26344 -64.124.50.0/23 6461 -64.124.52.0/22 6461 -64.124.56.0/24 3356 -64.124.57.0/24 6461 -64.124.58.0/23 6461 -64.124.60.0/23 6461 -64.124.62.0/24 6461 -64.124.63.0/24 36261 -64.124.64.0/23 6461 -64.124.66.0/24 6461 -64.124.67.0/24 17367 -64.124.68.0/23 6461 -64.124.70.0/24 30417 -64.124.71.0/24 6461 -64.124.72.0/21 6461 -64.124.80.0/24 6461 -64.124.81.0/24 4474 -64.124.82.0/23 6461 -64.124.84.0/22 6461 -64.124.88.0/21 6461 -64.124.96.0/24 36051 -64.124.97.0/24 6461 -64.124.98.0/23 6461 -64.124.100.0/24 14011 -64.124.101.0/24 6461 -64.124.102.0/23 6461 -64.124.104.0/24 22556 -64.124.105.0/24 6461 -64.124.106.0/24 6461 -64.124.107.0/24 17025 -64.124.108.0/22 6461 -64.124.112.0/22 6461 -64.124.116.0/23 6461 -64.124.118.0/24 55167 -64.124.119.0/24 6461 -64.124.120.0/24 40184 -64.124.121.0/24 6461 -64.124.122.0/23 6461 -64.124.124.0/23 6461 -64.124.126.0/24 6461 -64.124.127.0/24 16503 -64.124.128.0/22 6461 -64.124.132.0/24 25755 -64.124.133.0/24 6461 -64.124.134.0/24 17025 -64.124.135.0/24 6461 -64.124.136.0/22 6461 -64.124.140.0/24 29874 -64.124.141.0/24 36261 -64.124.142.0/23 6461 -64.124.144.0/24 22556 -64.124.145.0/24 6461 -64.124.146.0/23 6461 -64.124.148.0/24 6461 -64.124.149.0/24 32225 -64.124.150.0/23 6461 -64.124.152.0/22 6461 -64.124.156.0/23 6461 -64.124.158.0/24 394441 -64.124.159.0/24 6461 -64.124.160.0/22 6461 -64.124.164.0/23 6461 -64.124.166.0/24 17025 -64.124.167.0/24 20940 -64.124.168.0/24 6461 -64.124.169.0/24 18649 -64.124.170.0/23 6461 -64.124.172.0/24 26552 -64.124.173.0/24 46864 -64.124.174.0/23 6461 -64.124.176.0/24 6461 -64.124.177.0/24 16534 -64.124.178.0/23 6461 -64.124.180.0/22 6461 -64.124.184.0/21 6461 -64.124.192.0/21 6461 -64.124.200.0/22 6461 -64.124.204.0/23 6461 -64.124.206.0/24 6461 -64.124.207.0/24 19605 -64.124.208.0/22 6461 -64.124.212.0/24 6461 -64.124.213.0/24 17025 -64.124.214.0/23 6461 -64.124.216.0/23 6461 -64.124.218.0/23 23342 -64.124.220.0/24 6461 -64.124.221.0/24 21734 -64.124.222.0/23 6461 -64.124.224.0/22 6461 -64.124.228.0/23 6461 -64.124.230.0/24 19478 -64.124.231.0/24 7767 -64.124.232.0/21 6461 -64.124.240.0/20 6461 -64.125.0.0/19 6461 -64.125.32.0/22 6461 -64.125.36.0/23 6461 -64.125.38.0/24 19092 -64.125.39.0/24 11414 -64.125.40.0/24 11414 -64.125.41.0/24 6461 -64.125.42.0/24 394360 -64.125.43.0/24 6461 -64.125.44.0/24 6461 -64.125.45.0/24 395365 -64.125.46.0/24 6461 -64.125.47.0/24 30292 -64.125.48.0/24 11414 -64.125.49.0/24 6461 -64.125.50.0/24 6461 -64.125.51.0/24 395762 -64.125.52.0/24 30250 -64.125.53.0/24 6461 -64.125.54.0/24 6461 -64.125.55.0/24 11414 -64.125.56.0/23 6461 -64.125.58.0/24 21704 -64.125.59.0/24 6461 -64.125.60.0/23 6461 -64.125.62.0/24 30103 -64.125.63.0/24 6461 -64.125.64.0/23 6461 -64.125.66.0/24 14056 -64.125.67.0/24 6461 -64.125.68.0/22 6461 -64.125.72.0/22 6461 -64.125.76.0/24 6461 -64.125.77.0/24 25755 -64.125.78.0/23 6461 -64.125.80.0/22 6461 -64.125.84.0/24 6461 -64.125.85.0/24 11768 -64.125.86.0/24 6461 -64.125.87.0/24 394872 -64.125.88.0/21 6461 -64.125.96.0/24 30419 -64.125.97.0/24 63474 -64.125.98.0/24 14147 -64.125.99.0/24 6461 -64.125.100.0/24 7752 -64.125.101.0/24 6461 -64.125.102.0/23 6461 -64.125.104.0/24 6461 -64.125.105.0/24 36376 -64.125.106.0/23 6461 -64.125.108.0/23 6461 -64.125.110.0/24 6461 -64.125.111.0/24 53802 -64.125.112.0/22 6461 -64.125.116.0/24 6461 -64.125.117.0/24 6305 -64.125.118.0/23 6461 -64.125.120.0/21 6461 -64.125.128.0/22 6461 -64.125.132.0/24 6461 -64.125.133.0/24 393631 -64.125.134.0/24 393631 -64.125.135.0/24 13955 -64.125.136.0/24 6461 -64.125.137.0/24 23342 -64.125.138.0/23 6461 -64.125.140.0/22 6461 -64.125.144.0/21 6461 -64.125.152.0/23 6461 -64.125.154.0/24 16494 -64.125.155.0/24 31845 -64.125.156.0/23 31845 -64.125.158.0/23 6461 -64.125.160.0/21 33481 -64.125.168.0/24 6461 -64.125.169.0/24 17025 -64.125.170.0/23 6461 -64.125.172.0/22 6461 -64.125.176.0/20 6461 -64.125.192.0/21 6461 -64.125.200.0/23 22556 -64.125.202.0/23 6461 -64.125.204.0/23 6461 -64.125.206.0/24 22637 -64.125.207.0/24 26419 -64.125.208.0/22 6461 -64.125.212.0/23 22795 -64.125.214.0/23 6461 -64.125.216.0/22 6461 -64.125.220.0/24 6461 -64.125.221.0/24 18586 -64.125.222.0/23 6461 -64.125.224.0/23 6461 -64.125.226.0/24 6461 -64.125.227.0/24 17025 -64.125.228.0/24 6461 -64.125.229.0/24 29863 -64.125.230.0/24 29944 -64.125.231.0/24 5693 -64.125.232.0/22 6461 -64.125.236.0/24 32187 -64.125.237.0/24 6461 -64.125.238.0/24 6461 -64.125.239.0/24 20293 -64.125.240.0/21 6461 -64.125.248.0/24 6461 -64.125.249.0/24 31845 -64.125.250.0/24 54999 -64.125.251.0/24 13344 -64.125.252.0/22 6461 -64.126.0.0/18 18712 -64.126.64.0/19 18712 -64.126.96.0/23 18712 -64.126.98.0/24 17338 -64.126.99.0/24 14071 -64.126.100.0/24 17338 -64.126.101.0/24 18712 -64.126.102.0/23 18712 -64.126.104.0/21 18712 -64.126.112.0/21 18712 -64.126.120.0/22 18712 -64.126.124.0/23 18712 -64.126.126.0/24 18712 -64.126.127.0/24 27195 -64.126.128.0/18 23138 -64.126.208.0/23 12601 -64.126.222.0/23 14489 -64.126.224.0/23 14489 -64.126.250.0/24 12874 -64.127.0.0/18 15227 -64.127.64.0/20 22343 -64.127.80.0/20 36813 -64.127.122.0/24 26914 -64.127.128.0/17 19151 -64.128.0.0/21 3549 -64.128.8.0/22 3549 -64.128.12.0/23 3549 -64.128.14.0/24 19233 -64.128.15.0/24 3549 -64.128.16.0/22 3549 -64.128.20.0/24 3549 -64.128.21.0/24 22416 -64.128.22.0/24 18843 -64.128.23.0/24 3549 -64.128.24.0/22 3549 -64.128.28.0/23 54979 -64.128.30.0/23 3549 -64.128.32.0/20 3549 -64.128.48.0/21 3549 -64.128.56.0/22 3549 -64.128.60.0/23 3549 -64.128.62.0/24 395523 -64.128.63.0/24 394829 -64.128.64.0/22 3549 -64.128.68.0/24 33479 -64.128.69.0/24 3549 -64.128.70.0/24 23469 -64.128.71.0/24 3549 -64.128.72.0/22 3549 -64.128.76.0/23 3549 -64.128.78.0/24 3549 -64.128.79.0/24 19091 -64.128.80.0/21 3549 -64.128.88.0/23 3549 -64.128.90.0/24 3356 -64.128.91.0/24 3549 -64.128.92.0/23 3549 -64.128.94.0/24 3549 -64.128.95.0/24 13434 -64.128.96.0/23 3549 -64.128.98.0/23 6318 -64.128.100.0/23 22984 -64.128.102.0/23 3549 -64.128.104.0/24 3549 -64.128.105.0/24 395355 -64.128.106.0/23 3549 -64.128.108.0/22 3549 -64.128.112.0/23 3549 -64.128.114.0/24 19123 -64.128.115.0/24 32734 -64.128.116.0/23 40244 -64.128.118.0/23 3549 -64.128.120.0/21 3549 -64.128.128.0/21 3549 -64.128.136.0/23 3549 -64.128.138.0/24 3549 -64.128.139.0/24 13542 -64.128.140.0/24 3549 -64.128.141.0/24 54898 -64.128.142.0/24 18902 -64.128.143.0/24 3549 -64.128.144.0/20 3549 -64.128.160.0/22 3549 -64.128.164.0/23 32899 -64.128.166.0/24 3549 -64.128.167.0/24 22984 -64.128.168.0/21 3549 -64.128.176.0/23 3549 -64.128.178.0/24 29784 -64.128.179.0/24 3549 -64.128.180.0/24 30061 -64.128.181.0/24 3549 -64.128.182.0/23 3549 -64.128.184.0/22 3549 -64.128.188.0/24 3549 -64.128.189.0/24 31981 -64.128.190.0/23 40244 -64.128.192.0/20 3549 -64.128.208.0/24 3549 -64.128.209.0/24 15232 -64.128.210.0/23 3549 -64.128.212.0/22 3549 -64.128.216.0/24 26098 -64.128.217.0/24 3549 -64.128.218.0/23 3549 -64.128.220.0/22 3549 -64.128.224.0/20 3549 -64.128.240.0/21 3549 -64.128.248.0/23 3549 -64.128.250.0/24 3549 -64.128.251.0/24 16896 -64.128.252.0/24 53938 -64.128.253.0/24 23314 -64.128.254.0/23 3549 -64.129.0.0/23 3549 -64.129.2.0/24 62819 -64.129.3.0/24 3549 -64.129.4.0/23 3549 -64.129.6.0/23 62819 -64.129.8.0/21 3549 -64.129.16.0/24 3549 -64.129.17.0/24 39956 -64.129.18.0/23 3549 -64.129.20.0/23 3549 -64.129.22.0/24 3549 -64.129.23.0/24 32899 -64.129.24.0/21 3549 -64.129.32.0/22 3549 -64.129.36.0/24 3549 -64.129.37.0/24 5777 -64.129.38.0/24 36523 -64.129.39.0/24 396245 -64.129.40.0/21 3549 -64.129.48.0/23 3549 -64.129.50.0/24 55031 -64.129.51.0/24 3549 -64.129.52.0/24 30672 -64.129.53.0/24 3549 -64.129.54.0/23 3549 -64.129.56.0/21 3549 -64.129.64.0/21 3549 -64.129.72.0/22 3549 -64.129.76.0/24 3549 -64.129.77.0/24 393396 -64.129.78.0/24 20029 -64.129.79.0/24 3549 -64.129.80.0/22 3549 -64.129.84.0/23 3549 -64.129.86.0/24 31787 -64.129.87.0/24 3549 -64.129.88.0/21 3549 -64.129.96.0/21 3549 -64.129.104.0/24 3549 -64.129.105.0/24 11553 -64.129.106.0/24 3549 -64.129.107.0/24 31913 -64.129.108.0/22 3549 -64.129.112.0/21 3549 -64.129.120.0/24 32899 -64.129.121.0/24 40277 -64.129.122.0/24 3549 -64.129.123.0/24 40800 -64.129.124.0/24 14897 -64.129.125.0/24 3549 -64.129.126.0/23 3549 -64.129.128.0/20 3549 -64.129.144.0/24 20251 -64.129.145.0/24 3549 -64.129.146.0/23 3549 -64.129.148.0/22 3549 -64.129.152.0/24 3549 -64.129.153.0/24 54319 -64.129.154.0/23 3549 -64.129.156.0/23 3549 -64.129.158.0/24 11967 -64.129.159.0/24 26556 -64.129.160.0/23 3549 -64.129.162.0/24 40215 -64.129.163.0/24 3549 -64.129.164.0/22 3549 -64.129.168.0/22 3549 -64.129.172.0/23 3549 -64.129.174.0/24 3549 -64.129.175.0/24 18567 -64.129.176.0/22 3549 -64.129.180.0/24 17060 -64.129.181.0/24 3549 -64.129.182.0/23 3549 -64.129.184.0/24 33267 -64.129.185.0/24 3549 -64.129.186.0/23 3549 -64.129.188.0/24 25938 -64.129.189.0/24 3549 -64.129.190.0/24 27529 -64.129.191.0/24 3549 -64.129.192.0/20 3549 -64.129.208.0/21 3549 -64.129.216.0/22 3549 -64.129.220.0/23 3549 -64.129.222.0/24 3549 -64.129.223.0/24 53273 -64.129.224.0/23 3549 -64.129.226.0/24 3549 -64.129.227.0/24 26805 -64.129.228.0/24 26421 -64.129.229.0/24 3549 -64.129.230.0/23 3549 -64.129.232.0/21 3549 -64.129.240.0/20 3549 -64.130.0.0/18 7859 -64.130.64.0/20 13693 -64.130.80.0/23 12056 -64.130.82.0/24 12056 -64.130.84.0/22 12056 -64.130.89.0/24 12056 -64.130.90.0/23 12056 -64.130.94.0/23 12056 -64.130.96.0/19 13825 -64.130.128.0/18 29894 -64.130.192.0/20 12044 -64.130.208.0/20 23136 -64.130.224.0/20 26251 -64.130.240.0/24 30329 -64.130.241.0/24 20077 -64.130.242.0/23 30329 -64.130.244.0/22 30329 -64.130.248.0/21 30329 -64.131.0.0/18 15250 -64.131.64.0/19 30633 -64.131.96.0/19 29825 -64.131.128.0/17 12271 -64.132.0.0/24 22048 -64.132.1.0/24 3549 -64.132.2.0/23 3549 -64.132.4.0/22 53873 -64.132.8.0/24 3549 -64.132.9.0/24 39957 -64.132.10.0/23 3549 -64.132.12.0/22 3549 -64.132.16.0/24 393580 -64.132.17.0/24 3549 -64.132.18.0/23 3549 -64.132.20.0/22 62738 -64.132.24.0/22 3549 -64.132.28.0/23 3549 -64.132.30.0/24 3549 -64.132.31.0/24 26831 -64.132.32.0/21 3549 -64.132.40.0/22 3549 -64.132.44.0/24 33344 -64.132.45.0/24 3549 -64.132.46.0/23 3549 -64.132.48.0/23 3549 -64.132.50.0/24 397007 -64.132.51.0/24 3549 -64.132.52.0/23 3549 -64.132.54.0/24 3549 -64.132.55.0/24 29787 -64.132.56.0/21 3549 -64.132.64.0/20 3549 -64.132.80.0/21 3549 -64.132.88.0/23 22606 -64.132.90.0/24 25843 -64.132.91.0/24 33127 -64.132.92.0/24 22606 -64.132.93.0/24 3549 -64.132.94.0/23 3549 -64.132.96.0/24 22216 -64.132.97.0/24 3549 -64.132.98.0/23 3549 -64.132.100.0/23 3549 -64.132.102.0/24 3549 -64.132.103.0/24 33420 -64.132.104.0/22 3549 -64.132.108.0/23 3549 -64.132.110.0/24 3549 -64.132.111.0/24 393984 -64.132.112.0/22 3549 -64.132.116.0/23 3549 -64.132.118.0/24 63264 -64.132.119.0/24 3549 -64.132.120.0/23 3549 -64.132.122.0/24 32300 -64.132.123.0/24 23314 -64.132.124.0/22 3549 -64.132.128.0/21 3549 -64.132.136.0/22 3549 -64.132.140.0/24 3549 -64.132.141.0/24 15281 -64.132.142.0/23 3549 -64.132.144.0/22 3549 -64.132.148.0/24 3549 -64.132.149.0/24 393779 -64.132.150.0/23 3549 -64.132.152.0/22 3549 -64.132.156.0/23 3549 -64.132.158.0/24 3549 -64.132.159.0/24 395760 -64.132.160.0/20 3549 -64.132.176.0/23 3549 -64.132.178.0/23 22984 -64.132.180.0/22 3549 -64.132.184.0/22 3549 -64.132.188.0/24 30567 -64.132.189.0/24 3549 -64.132.190.0/23 3549 -64.132.192.0/22 3549 -64.132.196.0/23 3549 -64.132.198.0/24 3549 -64.132.199.0/24 33395 -64.132.200.0/23 3549 -64.132.202.0/24 18434 -64.132.203.0/24 3549 -64.132.204.0/23 3549 -64.132.206.0/23 21829 -64.132.208.0/21 3549 -64.132.216.0/23 3549 -64.132.218.0/24 3549 -64.132.219.0/24 32390 -64.132.220.0/23 3549 -64.132.222.0/24 3549 -64.132.223.0/24 393339 -64.132.224.0/19 3549 -64.133.0.0/16 1239 -64.134.0.0/16 14654 -64.135.0.0/20 13645 -64.135.16.0/21 13645 -64.135.24.0/23 13645 -64.135.26.0/24 393362 -64.135.27.0/24 13645 -64.135.28.0/22 13645 -64.135.32.0/20 13645 -64.135.48.0/21 13645 -64.135.56.0/23 13645 -64.135.58.0/24 13645 -64.135.59.0/24 32385 -64.135.60.0/22 13645 -64.135.64.0/18 13645 -64.135.128.0/20 11847 -64.135.144.0/20 16567 -64.135.160.0/21 14755 -64.135.176.0/20 14755 -64.135.192.0/19 10689 -64.135.224.0/19 6536 -64.136.0.0/23 13446 -64.136.2.0/24 13426 -64.136.3.0/24 8164 -64.136.4.0/24 13446 -64.136.5.0/24 13426 -64.136.6.0/23 13446 -64.136.8.0/21 13446 -64.136.16.0/20 13446 -64.136.32.0/19 13446 -64.136.64.0/19 22921 -64.136.96.0/24 3356 -64.136.98.0/23 394002 -64.136.104.0/21 55204 -64.136.112.0/20 33007 -64.136.128.0/19 10993 -64.136.160.0/20 16795 -64.136.176.0/20 36170 -64.136.192.0/19 18712 -64.136.224.0/21 19653 -64.136.232.0/23 22379 -64.136.234.0/23 19653 -64.136.236.0/22 19653 -64.136.240.0/20 19653 -64.137.0.0/21 13886 -64.137.8.0/21 61317 -64.137.16.0/20 61317 -64.137.32.0/19 61317 -64.137.64.0/19 61317 -64.137.96.0/20 61317 -64.137.112.0/22 61317 -64.137.116.0/23 61317 -64.137.118.0/24 61317 -64.137.119.0/24 207461 -64.137.120.0/21 61317 -64.137.128.0/19 21949 -64.137.160.0/19 31798 -64.138.0.0/17 19855 -64.138.128.0/21 19855 -64.138.136.0/22 19855 -64.138.140.0/23 19855 -64.138.142.0/24 19855 -64.138.143.0/24 22775 -64.138.144.0/20 19855 -64.138.160.0/19 19855 -64.138.192.0/19 21565 -64.138.224.0/22 21565 -64.138.228.0/24 21565 -64.138.230.0/23 21565 -64.138.232.0/21 21565 -64.138.240.0/20 21565 -64.139.0.0/18 4565 -64.139.64.0/19 7922 -64.139.96.0/19 20474 -64.139.128.0/24 19271 -64.139.129.0/24 13645 -64.139.130.0/24 19271 -64.139.131.0/24 13645 -64.139.132.0/22 13645 -64.139.136.0/21 13645 -64.139.144.0/22 13645 -64.139.148.0/23 19271 -64.139.150.0/23 13645 -64.139.152.0/21 54488 -64.139.160.0/19 13645 -64.139.192.0/22 19271 -64.139.196.0/24 13645 -64.139.197.0/24 19271 -64.139.198.0/23 19271 -64.139.200.0/21 19271 -64.139.208.0/21 19271 -64.139.216.0/22 19271 -64.139.220.0/22 13645 -64.139.224.0/23 40285 -64.139.226.0/24 40285 -64.139.227.0/24 19108 -64.139.228.0/24 40285 -64.139.230.0/23 40285 -64.139.232.0/23 40285 -64.139.234.0/24 19108 -64.139.235.0/24 40285 -64.139.236.0/22 40285 -64.139.240.0/22 40285 -64.139.244.0/23 54814 -64.139.246.0/24 19108 -64.139.247.0/24 40285 -64.139.248.0/23 40285 -64.139.251.0/24 40285 -64.139.252.0/22 40285 -64.140.8.0/21 3549 -64.140.16.0/21 3356 -64.140.24.0/21 11915 -64.140.32.0/21 18687 -64.140.40.0/21 3356 -64.140.48.0/21 18687 -64.140.56.0/21 3356 -64.140.88.0/22 18687 -64.140.96.0/24 29866 -64.140.97.0/24 46147 -64.140.98.0/23 29866 -64.140.100.0/22 29866 -64.140.104.0/21 29866 -64.140.112.0/20 40788 -64.140.128.0/20 396319 -64.140.144.0/22 46261 -64.140.150.0/24 23033 -64.140.151.0/24 46261 -64.140.152.0/22 46261 -64.140.156.0/24 35017 -64.140.157.0/24 63356 -64.140.158.0/23 63356 -64.140.160.0/20 18450 -64.140.176.0/20 33686 -64.140.192.0/21 21547 -64.140.200.0/24 13536 -64.140.201.0/24 21547 -64.140.202.0/23 21547 -64.140.204.0/22 21547 -64.140.208.0/23 21547 -64.140.210.0/24 13536 -64.140.211.0/24 21547 -64.140.212.0/22 21547 -64.140.216.0/21 21547 -64.140.224.0/20 21547 -64.140.240.0/22 21547 -64.140.244.0/24 13536 -64.140.245.0/24 21547 -64.140.246.0/23 21547 -64.140.248.0/21 21547 -64.141.0.0/22 6327 -64.141.4.0/24 6327 -64.141.5.0/24 53359 -64.141.6.0/23 6327 -64.141.8.0/21 6327 -64.141.16.0/22 6327 -64.141.20.0/23 6327 -64.141.22.0/24 394006 -64.141.23.0/24 6327 -64.141.24.0/21 6327 -64.141.32.0/19 6327 -64.141.64.0/22 6327 -64.141.68.0/23 19875 -64.141.70.0/23 6327 -64.141.72.0/21 6327 -64.141.80.0/20 6327 -64.141.96.0/22 3397 -64.141.100.0/22 6327 -64.141.104.0/22 21533 -64.141.108.0/22 6327 -64.141.112.0/21 6327 -64.141.120.0/22 32738 -64.141.124.0/24 6327 -64.141.125.0/24 19286 -64.141.126.0/23 6327 -64.141.128.0/22 26554 -64.141.132.0/24 26554 -64.141.133.0/24 27004 -64.141.134.0/23 26554 -64.141.136.0/21 26554 -64.141.144.0/20 26554 -64.141.160.0/22 26554 -64.141.164.0/24 16977 -64.141.165.0/24 20193 -64.141.166.0/23 26554 -64.141.168.0/21 26554 -64.141.176.0/20 26554 -64.141.192.0/20 55274 -64.141.208.0/24 55274 -64.141.224.0/21 7381 -64.141.232.0/22 55274 -64.142.0.0/17 7065 -64.142.128.0/18 16415 -64.142.192.0/19 16415 -64.142.224.0/24 21650 -64.142.225.0/24 16415 -64.142.226.0/24 21650 -64.142.227.0/24 16415 -64.142.228.0/22 16415 -64.142.232.0/22 16415 -64.142.236.0/24 18452 -64.142.237.0/24 16415 -64.142.238.0/24 16415 -64.142.239.0/24 18452 -64.142.240.0/20 16415 -64.143.0.0/18 16967 -64.143.64.0/19 16967 -64.143.96.0/20 16967 -64.143.112.0/24 7018 -64.143.113.0/24 26344 -64.143.114.0/23 16967 -64.143.116.0/22 16967 -64.143.120.0/22 16967 -64.143.124.0/23 16967 -64.143.126.0/24 16967 -64.143.127.0/24 7018 -64.143.128.0/19 16967 -64.143.160.0/20 16967 -64.143.176.0/21 16967 -64.143.184.0/23 16967 -64.143.186.0/24 16967 -64.143.187.0/24 7018 -64.143.188.0/23 7018 -64.143.190.0/23 16967 -64.143.192.0/19 16967 -64.144.0.0/16 4565 -64.145.0.0/20 4565 -64.145.16.0/22 18566 -64.145.20.0/22 4565 -64.145.24.0/21 4565 -64.145.32.0/19 4565 -64.145.64.0/22 12989 -64.145.68.0/22 26769 -64.145.72.0/24 20940 -64.145.73.0/24 18607 -64.145.74.0/24 53962 -64.145.75.0/24 26769 -64.145.76.0/22 12989 -64.145.80.0/22 12989 -64.145.84.0/23 12989 -64.145.86.0/24 12989 -64.145.87.0/24 20940 -64.145.88.0/23 26769 -64.145.90.0/23 33438 -64.145.92.0/24 26769 -64.145.93.0/24 12989 -64.145.94.0/24 12989 -64.145.95.0/24 26769 -64.145.96.0/21 4565 -64.145.104.0/22 4565 -64.145.108.0/22 18566 -64.145.112.0/20 4565 -64.145.128.0/22 18566 -64.145.132.0/22 4565 -64.145.136.0/22 18566 -64.145.140.0/22 4565 -64.145.144.0/20 4565 -64.145.160.0/21 4565 -64.145.168.0/22 4565 -64.145.172.0/22 18566 -64.145.176.0/20 4565 -64.145.192.0/21 4565 -64.145.200.0/22 18566 -64.145.204.0/22 4565 -64.145.208.0/20 4565 -64.145.224.0/20 4565 -64.145.240.0/21 4565 -64.145.248.0/22 4565 -64.145.252.0/22 18566 -64.146.0.0/17 7029 -64.146.128.0/22 16713 -64.146.132.0/22 11404 -64.146.136.0/21 16713 -64.146.144.0/23 16713 -64.146.146.0/24 20224 -64.146.147.0/24 16713 -64.146.148.0/22 16713 -64.146.152.0/22 16713 -64.146.156.0/22 25764 -64.146.160.0/22 16713 -64.146.164.0/24 16713 -64.146.165.0/24 396098 -64.146.166.0/24 16713 -64.146.167.0/24 27373 -64.146.168.0/24 27373 -64.146.169.0/24 16713 -64.146.170.0/23 20224 -64.146.172.0/22 16713 -64.146.176.0/22 20224 -64.146.180.0/22 16713 -64.146.184.0/21 16713 -64.146.192.0/20 11404 -64.146.208.0/21 16713 -64.146.216.0/21 7799 -64.146.224.0/20 16713 -64.146.240.0/21 7799 -64.146.248.0/21 16713 -64.147.0.0/20 22773 -64.147.16.0/21 22773 -64.147.24.0/22 22773 -64.147.28.0/24 54763 -64.147.29.0/24 22773 -64.147.30.0/24 18700 -64.147.31.0/24 22773 -64.147.32.0/20 27254 -64.147.48.0/21 55032 -64.147.56.0/22 55032 -64.147.60.0/23 55032 -64.147.62.0/24 55032 -64.147.63.0/24 33651 -64.147.68.0/24 19460 -64.147.74.0/23 19460 -64.147.80.0/20 32020 -64.147.96.0/21 11403 -64.147.104.0/24 3356 -64.147.105.0/24 11403 -64.147.106.0/23 11403 -64.147.108.0/23 11403 -64.147.110.0/24 11403 -64.147.111.0/24 57624 -64.147.112.0/23 11403 -64.147.114.0/24 3356 -64.147.115.0/24 11403 -64.147.116.0/23 11403 -64.147.118.0/24 32957 -64.147.119.0/24 11403 -64.147.120.0/21 11403 -64.147.128.0/19 11319 -64.147.160.0/24 13915 -64.147.188.0/22 26914 -64.147.192.0/20 19653 -64.147.208.0/22 27446 -64.147.212.0/22 62880 -64.147.216.0/22 27446 -64.147.220.0/23 27446 -64.147.222.0/24 53274 -64.147.223.0/24 395876 -64.147.224.0/20 2386 -64.147.240.0/20 852 -64.148.0.0/18 7018 -64.148.64.0/20 7018 -64.148.80.0/20 16966 -64.148.96.0/19 7018 -64.148.128.0/21 7018 -64.148.136.0/22 7018 -64.148.140.0/24 36426 -64.148.141.0/24 7018 -64.148.142.0/23 7018 -64.148.144.0/20 7018 -64.148.160.0/19 7018 -64.148.192.0/18 7018 -64.149.0.0/16 7018 -64.150.0.0/20 1416 -64.150.16.0/20 6325 -64.150.32.0/19 6325 -64.150.64.0/24 62523 -64.150.65.0/24 6325 -64.150.66.0/23 6325 -64.150.68.0/22 6325 -64.150.72.0/21 6325 -64.150.80.0/20 6325 -64.150.96.0/19 6325 -64.150.128.0/22 21565 -64.150.132.0/24 21565 -64.150.134.0/23 21565 -64.150.136.0/24 21565 -64.150.138.0/23 21565 -64.150.141.0/24 21565 -64.150.142.0/23 21565 -64.150.144.0/20 21565 -64.150.160.0/23 29873 -64.150.162.0/24 29873 -64.150.163.0/24 22458 -64.150.164.0/22 29873 -64.150.168.0/21 29873 -64.150.176.0/20 18501 -64.150.192.0/18 15146 -64.151.0.0/18 18712 -64.151.64.0/18 26228 -64.151.128.0/18 11069 -64.151.192.0/18 26753 -64.152.0.0/20 3356 -64.152.16.0/21 3356 -64.152.24.0/24 3356 -64.152.25.0/24 14413 -64.152.26.0/23 3356 -64.152.28.0/22 3356 -64.152.32.0/19 3356 -64.152.64.0/22 3356 -64.152.68.0/24 10753 -64.152.69.0/24 3356 -64.152.70.0/23 3356 -64.152.72.0/21 3356 -64.152.80.0/20 3356 -64.152.96.0/19 3356 -64.152.128.0/17 3356 -64.153.0.0/16 3356 -64.154.0.0/22 3356 -64.154.4.0/22 20454 -64.154.8.0/21 3356 -64.154.16.0/23 3356 -64.154.18.0/24 32208 -64.154.19.0/24 3356 -64.154.20.0/22 3356 -64.154.24.0/21 3356 -64.154.32.0/23 3356 -64.154.34.0/23 4565 -64.154.36.0/23 3356 -64.154.38.0/24 20473 -64.154.39.0/24 3356 -64.154.40.0/24 3356 -64.154.41.0/24 46714 -64.154.42.0/23 3356 -64.154.44.0/22 3356 -64.154.48.0/20 3356 -64.154.64.0/20 3356 -64.154.80.0/21 3356 -64.154.88.0/22 40866 -64.154.92.0/22 3356 -64.154.96.0/19 3356 -64.154.128.0/24 3356 -64.154.129.0/24 21869 -64.154.130.0/23 3356 -64.154.132.0/22 3356 -64.154.136.0/21 3356 -64.154.144.0/20 3356 -64.154.160.0/19 3356 -64.154.192.0/18 3356 -64.155.0.0/16 3356 -64.156.0.0/21 3356 -64.156.8.0/22 3356 -64.156.12.0/23 3356 -64.156.14.0/24 20473 -64.156.15.0/24 3356 -64.156.16.0/21 3356 -64.156.24.0/21 3064 -64.156.32.0/20 3356 -64.156.48.0/21 3356 -64.156.56.0/24 62 -64.156.57.0/24 3356 -64.156.58.0/23 3356 -64.156.60.0/22 3356 -64.156.64.0/20 3356 -64.156.80.0/22 3356 -64.156.84.0/22 7029 -64.156.88.0/21 3356 -64.156.96.0/20 3356 -64.156.112.0/20 3064 -64.156.128.0/19 3356 -64.156.160.0/22 3356 -64.156.164.0/23 3356 -64.156.166.0/24 3356 -64.156.167.0/24 25751 -64.156.168.0/21 3356 -64.156.176.0/20 3356 -64.156.192.0/22 21581 -64.156.196.0/22 3356 -64.156.200.0/21 3356 -64.156.208.0/20 3356 -64.156.224.0/19 3356 -64.157.0.0/22 3064 -64.157.4.0/23 3356 -64.157.6.0/24 10753 -64.157.7.0/24 3356 -64.157.8.0/21 3064 -64.157.16.0/20 3356 -64.157.32.0/21 6621 -64.157.40.0/21 3356 -64.157.48.0/20 3356 -64.157.64.0/19 3356 -64.157.96.0/20 3356 -64.157.112.0/21 3356 -64.157.120.0/23 3356 -64.157.122.0/24 3356 -64.157.123.0/24 30496 -64.157.124.0/22 3356 -64.157.128.0/21 3356 -64.157.136.0/22 3356 -64.157.140.0/23 3356 -64.157.142.0/24 3356 -64.157.143.0/24 395800 -64.157.144.0/21 3356 -64.157.152.0/23 3356 -64.157.154.0/23 7029 -64.157.156.0/23 7029 -64.157.158.0/23 3356 -64.157.160.0/22 3356 -64.157.164.0/24 3356 -64.157.165.0/24 62723 -64.157.166.0/23 3356 -64.157.168.0/23 3356 -64.157.170.0/24 3356 -64.157.171.0/24 17151 -64.157.172.0/22 3356 -64.157.176.0/24 3064 -64.157.177.0/24 3356 -64.157.178.0/23 3356 -64.157.180.0/22 3356 -64.157.184.0/21 3356 -64.157.192.0/19 3356 -64.157.224.0/21 3356 -64.157.232.0/22 3356 -64.157.236.0/23 3356 -64.157.238.0/24 20053 -64.157.239.0/24 3356 -64.157.240.0/20 3356 -64.158.0.0/20 3356 -64.158.16.0/21 3356 -64.158.24.0/22 3356 -64.158.28.0/22 3064 -64.158.32.0/21 3356 -64.158.40.0/22 3356 -64.158.44.0/24 32208 -64.158.45.0/24 3356 -64.158.46.0/23 3356 -64.158.48.0/20 3356 -64.158.64.0/22 3356 -64.158.68.0/24 3356 -64.158.69.0/24 31993 -64.158.70.0/23 3356 -64.158.72.0/22 3356 -64.158.76.0/22 3064 -64.158.80.0/20 3356 -64.158.96.0/19 3356 -64.158.128.0/20 3356 -64.158.144.0/23 3356 -64.158.146.0/23 26481 -64.158.148.0/22 3356 -64.158.152.0/21 3356 -64.158.160.0/23 3356 -64.158.162.0/24 11774 -64.158.163.0/24 3356 -64.158.164.0/22 3064 -64.158.168.0/21 3356 -64.158.176.0/23 3356 -64.158.178.0/24 32560 -64.158.179.0/24 3356 -64.158.180.0/22 3356 -64.158.184.0/21 3356 -64.158.192.0/21 3356 -64.158.200.0/24 3356 -64.158.201.0/24 26842 -64.158.202.0/23 3356 -64.158.204.0/22 3356 -64.158.208.0/21 3356 -64.158.216.0/22 3356 -64.158.220.0/23 3356 -64.158.222.0/24 3356 -64.158.223.0/24 25751 -64.158.224.0/19 3356 -64.159.0.0/18 3356 -64.159.64.0/19 3064 -64.159.96.0/20 3356 -64.159.112.0/21 3356 -64.159.120.0/23 3356 -64.159.122.0/24 3356 -64.159.123.0/24 18848 -64.159.124.0/22 3356 -64.159.128.0/17 3356 -64.160.0.0/18 7132 -64.160.64.0/19 7132 -64.160.96.0/22 7132 -64.160.100.0/23 22352 -64.160.102.0/23 7132 -64.160.104.0/21 7132 -64.160.112.0/20 7132 -64.160.128.0/18 7132 -64.160.192.0/19 7132 -64.160.224.0/20 7132 -64.160.240.0/21 7132 -64.160.248.0/22 7132 -64.160.252.0/23 7132 -64.160.254.0/24 5033 -64.160.255.0/24 7132 -64.161.0.0/16 7132 -64.162.0.0/18 7132 -64.162.64.0/19 7132 -64.162.96.0/20 7132 -64.162.112.0/22 7132 -64.162.116.0/24 5033 -64.162.117.0/24 7132 -64.162.118.0/23 7132 -64.162.120.0/21 7132 -64.162.128.0/20 7132 -64.162.144.0/21 7132 -64.162.152.0/23 397450 -64.162.154.0/23 7132 -64.162.156.0/22 7132 -64.162.160.0/19 7132 -64.162.192.0/20 7132 -64.162.208.0/21 7132 -64.162.216.0/22 7132 -64.162.220.0/23 7132 -64.162.222.0/24 17043 -64.162.223.0/24 7132 -64.162.224.0/22 7132 -64.162.228.0/24 7132 -64.162.229.0/24 7018 -64.162.230.0/23 7132 -64.162.232.0/21 7132 -64.162.240.0/20 7132 -64.163.0.0/17 7132 -64.163.128.0/22 7132 -64.163.132.0/22 23369 -64.163.136.0/21 7132 -64.163.144.0/20 7132 -64.163.160.0/19 7132 -64.163.192.0/18 7132 -64.164.0.0/18 7132 -64.164.64.0/19 7132 -64.164.96.0/21 7132 -64.164.104.0/22 7132 -64.164.108.0/24 7132 -64.164.109.0/24 22880 -64.164.110.0/23 7132 -64.164.112.0/20 7132 -64.164.128.0/17 7132 -64.165.0.0/20 7132 -64.165.16.0/22 7132 -64.165.20.0/23 7132 -64.165.22.0/24 7132 -64.165.23.0/24 22687 -64.165.24.0/21 7132 -64.165.32.0/19 7132 -64.165.64.0/18 7132 -64.165.128.0/18 7132 -64.165.192.0/19 7132 -64.165.224.0/20 7132 -64.165.240.0/21 7132 -64.165.248.0/24 7132 -64.165.249.0/24 19248 -64.165.250.0/23 7132 -64.165.252.0/22 7132 -64.166.0.0/18 7132 -64.166.64.0/21 7132 -64.166.72.0/23 7132 -64.166.74.0/24 7132 -64.166.75.0/24 20066 -64.166.76.0/22 7132 -64.166.80.0/20 7132 -64.166.96.0/19 7132 -64.166.128.0/24 30417 -64.166.129.0/24 7132 -64.166.130.0/23 7132 -64.166.132.0/22 7132 -64.166.136.0/21 7132 -64.166.144.0/22 2386 -64.166.148.0/23 2386 -64.166.150.0/24 2386 -64.166.151.0/24 7132 -64.166.152.0/21 7132 -64.166.160.0/19 7132 -64.166.192.0/18 7132 -64.167.0.0/18 7132 -64.167.64.0/20 7132 -64.167.80.0/24 7132 -64.167.81.0/24 13330 -64.167.82.0/23 7132 -64.167.84.0/22 7132 -64.167.88.0/21 7132 -64.167.96.0/19 7132 -64.167.128.0/17 7132 -64.168.0.0/15 7132 -64.170.0.0/16 7132 -64.171.0.0/17 7132 -64.171.128.0/21 7132 -64.171.136.0/22 7132 -64.171.140.0/23 7132 -64.171.142.0/23 22352 -64.171.144.0/21 7132 -64.171.152.0/22 7132 -64.171.156.0/24 7132 -64.171.157.0/24 1226 -64.171.158.0/23 7132 -64.171.160.0/19 7132 -64.171.192.0/20 7132 -64.171.208.0/21 7132 -64.171.216.0/24 29930 -64.171.217.0/24 7132 -64.171.218.0/23 7132 -64.171.220.0/22 7132 -64.171.224.0/22 396513 -64.171.228.0/22 7132 -64.171.232.0/21 7132 -64.171.240.0/20 7132 -64.172.0.0/18 7132 -64.172.64.0/19 7132 -64.172.96.0/22 7132 -64.172.100.0/23 7132 -64.172.102.0/24 7132 -64.172.103.0/24 32843 -64.172.104.0/21 7132 -64.172.112.0/20 7132 -64.172.128.0/21 7132 -64.172.136.0/22 7132 -64.172.140.0/23 7132 -64.172.142.0/24 395215 -64.172.143.0/24 7132 -64.172.144.0/20 7132 -64.172.160.0/19 7132 -64.172.192.0/19 7132 -64.172.224.0/22 22065 -64.172.228.0/22 7132 -64.172.232.0/21 7132 -64.172.240.0/20 7132 -64.173.0.0/16 7132 -64.174.0.0/15 7132 -64.176.0.0/15 11022 -64.178.0.0/20 2828 -64.178.16.0/21 2828 -64.178.24.0/22 2828 -64.178.28.0/24 20427 -64.178.29.0/24 2828 -64.178.30.0/23 2828 -64.178.32.0/19 2828 -64.178.64.0/19 2828 -64.178.96.0/19 7029 -64.178.128.0/19 32233 -64.178.175.0/24 36579 -64.178.176.0/24 23404 -64.178.177.0/24 21725 -64.178.178.0/23 21725 -64.178.180.0/22 21725 -64.178.184.0/22 21725 -64.178.188.0/23 21725 -64.178.190.0/24 23404 -64.178.191.0/24 21725 -64.178.192.0/19 14920 -64.178.224.0/23 40020 -64.178.226.0/24 40020 -64.178.228.0/24 40020 -64.178.229.0/24 396185 -64.178.230.0/24 396185 -64.178.231.0/24 40020 -64.178.232.0/21 40020 -64.178.240.0/24 397893 -64.178.241.0/24 40020 -64.178.242.0/24 30119 -64.178.243.0/24 40020 -64.178.244.0/22 40020 -64.178.248.0/23 53959 -64.178.250.0/24 53959 -64.178.251.0/24 40020 -64.178.252.0/23 40020 -64.178.254.0/23 54936 -64.179.0.0/20 7029 -64.179.16.0/24 7029 -64.179.17.0/24 26914 -64.179.18.0/23 7029 -64.179.20.0/22 7029 -64.179.24.0/21 7029 -64.179.32.0/19 7029 -64.179.64.0/18 7029 -64.179.128.0/19 20412 -64.179.164.0/22 20412 -64.179.168.0/21 20412 -64.179.176.0/20 20412 -64.179.192.0/20 46426 -64.179.208.0/20 40224 -64.179.224.0/23 11320 -64.179.226.0/24 11320 -64.179.227.0/24 13335 -64.179.228.0/24 13335 -64.179.229.0/24 11320 -64.179.230.0/23 11320 -64.179.232.0/21 11320 -64.180.0.0/16 852 -64.181.0.0/17 15227 -64.181.176.0/22 792 -64.181.180.0/23 792 -64.181.184.0/23 792 -64.181.216.0/23 792 -64.181.220.0/23 792 -64.181.224.0/23 792 -64.182.0.0/16 54489 -64.183.0.0/19 20001 -64.183.32.0/21 20001 -64.183.40.0/23 20001 -64.183.42.0/23 11159 -64.183.44.0/22 20001 -64.183.48.0/20 20001 -64.183.64.0/18 20001 -64.183.128.0/22 11955 -64.183.132.0/23 10796 -64.183.134.0/24 7843 -64.183.135.0/24 10838 -64.183.136.0/22 10838 -64.183.140.0/24 10796 -64.183.141.0/24 7843 -64.183.142.0/23 10838 -64.183.144.0/23 11955 -64.183.146.0/23 10838 -64.183.148.0/24 10796 -64.183.149.0/24 11955 -64.183.150.0/23 10838 -64.183.152.0/24 20001 -64.183.153.0/24 10796 -64.183.154.0/23 11426 -64.183.156.0/23 20001 -64.183.158.0/23 11426 -64.183.160.0/21 10796 -64.183.168.0/21 20001 -64.183.176.0/20 11427 -64.183.192.0/18 11427 -64.184.0.0/21 32703 -64.184.8.0/21 11525 -64.184.16.0/22 32703 -64.184.20.0/23 53989 -64.184.22.0/24 32703 -64.184.23.0/24 35984 -64.184.24.0/21 32703 -64.184.32.0/20 22110 -64.184.48.0/20 11118 -64.184.64.0/22 393227 -64.184.68.0/22 32703 -64.184.72.0/21 32703 -64.184.80.0/21 3131 -64.184.88.0/24 32703 -64.184.89.0/24 53989 -64.184.90.0/23 32703 -64.184.92.0/24 54225 -64.184.93.0/24 32703 -64.184.94.0/24 3131 -64.184.95.0/24 32703 -64.184.96.0/22 19112 -64.184.100.0/22 22110 -64.184.104.0/23 32703 -64.184.106.0/24 32703 -64.184.107.0/24 19112 -64.184.108.0/22 32703 -64.184.112.0/22 3131 -64.184.116.0/22 22110 -64.184.120.0/21 55230 -64.184.128.0/19 16713 -64.184.160.0/21 16713 -64.184.168.0/23 16713 -64.184.170.0/24 27373 -64.184.171.0/24 16713 -64.184.172.0/23 16713 -64.184.174.0/24 16713 -64.184.175.0/24 395394 -64.184.176.0/20 16713 -64.184.192.0/19 26288 -64.184.224.0/19 10835 -64.185.0.0/19 13693 -64.185.32.0/21 13693 -64.185.40.0/22 13693 -64.185.44.0/23 13693 -64.185.46.0/24 13693 -64.185.47.0/24 29776 -64.185.48.0/21 13693 -64.185.56.0/24 12056 -64.185.57.0/24 13693 -64.185.58.0/23 13693 -64.185.60.0/24 13693 -64.185.61.0/24 12056 -64.185.62.0/23 13693 -64.185.64.0/19 3707 -64.185.96.0/19 23265 -64.185.128.0/19 11351 -64.185.160.0/24 40009 -64.185.161.0/24 4755 -64.185.162.0/23 40009 -64.185.164.0/22 40009 -64.185.168.0/23 40009 -64.185.170.0/24 40009 -64.185.172.0/22 40009 -64.185.176.0/22 40009 -64.185.181.0/24 40009 -64.185.182.0/23 40009 -64.185.184.0/22 40009 -64.185.190.0/23 40009 -64.185.192.0/19 20372 -64.185.224.0/20 18450 -64.185.240.0/23 30524 -64.185.242.0/24 56637 -64.185.243.0/24 30524 -64.185.244.0/24 56637 -64.185.245.0/24 30524 -64.185.246.0/23 30524 -64.185.248.0/23 30524 -64.185.250.0/24 30524 -64.185.252.0/24 13729 -64.186.0.0/23 62887 -64.186.3.0/24 16509 -64.186.4.0/22 32899 -64.186.8.0/23 396097 -64.186.10.0/24 398182 -64.186.14.0/23 53764 -64.186.16.0/21 32867 -64.186.24.0/23 397983 -64.186.26.0/23 47254 -64.186.28.0/22 47254 -64.186.32.0/24 26554 -64.186.33.0/24 62482 -64.186.34.0/23 26554 -64.186.36.0/23 26554 -64.186.38.0/23 29833 -64.186.40.0/24 29833 -64.186.41.0/24 26554 -64.186.42.0/23 26554 -64.186.44.0/22 26554 -64.186.48.0/22 26554 -64.186.52.0/24 26554 -64.186.53.0/24 12074 -64.186.54.0/24 27004 -64.186.55.0/24 26554 -64.186.56.0/23 26554 -64.186.58.0/24 393416 -64.186.59.0/24 26554 -64.186.60.0/22 26554 -64.186.64.0/20 13638 -64.186.80.0/20 11776 -64.186.96.0/19 22079 -64.186.128.0/23 11042 -64.186.130.0/24 27413 -64.186.144.0/22 7226 -64.186.160.0/20 16467 -64.186.188.0/24 29705 -64.186.192.0/20 14317 -64.186.224.0/23 18990 -64.186.226.0/24 18990 -64.186.227.0/24 3257 -64.186.228.0/24 3257 -64.186.229.0/24 18990 -64.186.230.0/23 18990 -64.186.232.0/24 18990 -64.186.233.0/24 3257 -64.186.234.0/24 3257 -64.186.235.0/24 18990 -64.186.236.0/22 3257 -64.186.240.0/24 18990 -64.186.241.0/24 3257 -64.186.242.0/24 18990 -64.186.243.0/24 3257 -64.186.244.0/24 3257 -64.186.245.0/24 18990 -64.186.246.0/24 18990 -64.186.247.0/24 3257 -64.186.248.0/22 18990 -64.186.252.0/23 18990 -64.186.254.0/24 18990 -64.186.255.0/24 3257 -64.187.0.0/19 6539 -64.187.32.0/20 577 -64.187.48.0/22 577 -64.187.52.0/24 6539 -64.187.53.0/24 577 -64.187.54.0/23 577 -64.187.56.0/21 577 -64.187.64.0/20 16608 -64.187.80.0/20 17046 -64.187.96.0/21 15083 -64.187.104.0/24 396307 -64.187.105.0/24 15083 -64.187.106.0/23 15083 -64.187.108.0/24 15083 -64.187.109.0/24 398160 -64.187.110.0/23 15083 -64.187.112.0/21 26650 -64.187.120.0/23 397589 -64.187.122.0/24 397799 -64.187.123.0/24 397687 -64.187.124.0/23 19310 -64.187.126.0/24 397616 -64.187.144.0/20 54288 -64.187.160.0/20 54858 -64.187.176.0/20 22652 -64.187.192.0/20 40933 -64.187.210.0/23 36817 -64.187.212.0/22 33695 -64.187.216.0/21 32743 -64.187.224.0/20 46261 -64.187.240.0/20 36378 -64.188.0.0/19 8100 -64.188.48.0/20 23393 -64.188.64.0/18 46339 -64.188.128.0/23 26801 -64.188.130.0/23 1246 -64.188.132.0/23 26801 -64.188.134.0/23 1246 -64.188.136.0/21 26801 -64.188.144.0/20 26801 -64.188.160.0/20 1246 -64.188.176.0/21 26801 -64.188.184.0/24 1246 -64.188.185.0/24 26801 -64.188.186.0/24 26801 -64.188.187.0/24 1246 -64.188.188.0/23 26801 -64.188.190.0/23 1246 -64.188.192.0/23 26801 -64.188.194.0/23 1246 -64.188.196.0/22 1246 -64.188.200.0/23 1246 -64.188.202.0/23 26801 -64.188.204.0/22 1246 -64.188.208.0/21 26801 -64.188.216.0/24 26801 -64.188.217.0/24 1246 -64.188.218.0/24 26801 -64.188.219.0/24 1246 -64.188.220.0/23 1246 -64.188.222.0/24 1246 -64.188.223.0/24 26801 -64.188.224.0/22 1246 -64.188.228.0/22 26801 -64.188.232.0/24 26801 -64.188.233.0/24 1246 -64.188.234.0/23 1246 -64.188.236.0/22 26801 -64.188.240.0/22 26801 -64.188.244.0/24 1246 -64.188.245.0/24 26801 -64.188.246.0/23 1246 -64.188.248.0/23 1246 -64.188.250.0/23 26801 -64.188.252.0/24 26801 -64.188.253.0/24 1246 -64.188.254.0/23 26801 -64.189.8.0/21 54607 -64.189.45.0/24 40285 -64.189.46.0/24 40285 -64.189.47.0/24 54607 -64.189.48.0/23 54607 -64.189.50.0/24 4181 -64.189.51.0/24 54607 -64.189.52.0/22 54607 -64.189.56.0/23 54607 -64.189.58.0/24 19108 -64.189.59.0/24 25899 -64.189.60.0/22 20115 -64.189.64.0/22 22773 -64.189.68.0/23 6367 -64.189.70.0/24 54607 -64.189.72.0/23 6367 -64.189.74.0/23 7459 -64.189.76.0/22 7459 -64.189.80.0/21 46273 -64.189.88.0/21 395461 -64.189.96.0/24 46273 -64.189.108.0/22 395461 -64.189.112.0/21 3356 -64.189.120.0/22 1767 -64.189.124.0/22 395461 -64.189.128.0/21 11232 -64.189.192.0/20 54607 -64.189.208.0/23 7016 -64.189.224.0/20 46273 -64.189.240.0/21 54607 -64.189.248.0/21 14325 -64.190.0.0/23 11774 -64.190.2.0/24 11696 -64.190.4.0/24 11696 -64.190.10.0/23 11696 -64.190.12.0/22 11696 -64.190.16.0/21 11696 -64.190.24.0/23 11696 -64.190.26.0/24 11696 -64.190.28.0/22 11696 -64.190.32.0/22 11696 -64.190.37.0/24 11696 -64.190.38.0/23 11696 -64.190.40.0/23 11696 -64.190.43.0/24 11696 -64.190.48.0/21 11696 -64.190.58.0/23 11696 -64.190.60.0/23 11696 -64.190.64.0/20 11696 -64.190.81.0/24 11696 -64.190.82.0/24 11774 -64.190.83.0/24 11696 -64.190.84.0/22 13886 -64.190.88.0/24 11696 -64.190.90.0/23 11403 -64.190.92.0/22 13886 -64.190.96.0/24 11696 -64.190.98.0/23 11696 -64.190.100.0/24 11696 -64.190.104.0/22 11696 -64.190.108.0/24 11696 -64.190.110.0/24 7203 -64.190.111.0/24 64200 -64.190.112.0/24 26646 -64.190.114.0/23 30633 -64.190.116.0/24 64200 -64.190.117.0/24 7203 -64.190.121.0/24 7203 -64.190.122.0/24 394844 -64.190.123.0/24 11696 -64.190.124.0/22 11696 -64.190.128.0/21 11696 -64.190.136.0/24 11774 -64.190.137.0/24 11696 -64.190.138.0/23 11696 -64.190.140.0/22 11696 -64.190.144.0/24 11696 -64.190.145.0/24 394844 -64.190.146.0/24 394844 -64.190.148.0/24 394844 -64.190.150.0/24 11696 -64.190.151.0/24 26776 -64.190.152.0/23 11696 -64.190.154.0/24 46202 -64.190.155.0/24 62774 -64.190.156.0/22 394437 -64.190.160.0/24 11696 -64.190.165.0/24 11696 -64.190.168.0/23 11696 -64.190.171.0/24 11696 -64.190.172.0/24 11696 -64.190.174.0/23 11696 -64.190.176.0/22 11696 -64.190.180.0/24 11696 -64.190.182.0/23 11696 -64.190.184.0/23 11696 -64.190.187.0/24 11696 -64.190.188.0/23 11696 -64.190.190.0/24 11696 -64.190.196.0/23 27163 -64.190.200.0/24 11774 -64.190.202.0/23 8100 -64.190.204.0/23 8100 -64.190.208.0/22 11696 -64.190.212.0/24 11696 -64.190.214.0/23 11696 -64.190.216.0/24 11696 -64.190.218.0/23 11696 -64.190.220.0/22 11696 -64.190.228.0/22 11696 -64.190.232.0/23 11696 -64.190.234.0/24 11696 -64.190.236.0/24 11696 -64.190.240.0/24 11696 -64.190.242.0/23 11696 -64.190.244.0/24 11696 -64.190.248.0/22 11696 -64.190.252.0/22 205659 -64.191.0.0/23 64238 -64.191.3.0/24 29762 -64.191.4.0/22 20298 -64.191.8.0/22 13855 -64.191.12.0/24 54661 -64.191.14.0/24 64255 -64.191.16.0/23 18915 -64.191.20.0/22 18915 -64.191.31.0/24 18915 -64.191.32.0/21 393457 -64.191.40.0/23 393457 -64.191.42.0/24 393457 -64.191.43.0/24 397667 -64.191.44.0/23 394369 -64.191.46.0/24 397711 -64.191.47.0/24 393457 -64.191.48.0/20 22646 -64.191.64.0/19 53828 -64.191.96.0/21 53828 -64.191.104.0/22 53828 -64.191.108.0/23 53828 -64.191.110.0/24 53828 -64.191.111.0/24 395406 -64.191.112.0/20 53828 -64.191.128.0/18 13776 -64.191.192.0/24 394749 -64.191.194.0/24 394749 -64.191.195.0/24 14609 -64.191.201.0/24 394749 -64.191.202.0/24 394749 -64.191.204.0/24 14609 -64.191.206.0/23 14609 -64.191.208.0/23 394749 -64.191.210.0/24 12085 -64.191.211.0/24 54588 -64.191.212.0/24 14244 -64.191.214.0/24 29884 -64.191.215.0/24 19930 -64.191.216.0/24 46916 -64.191.217.0/24 36552 -64.191.220.0/23 266849 -64.191.222.0/24 14609 -64.191.224.0/24 14609 -64.191.226.0/23 14609 -64.191.231.0/24 32323 -64.191.238.0/23 14609 -64.191.248.0/23 14609 -64.191.255.0/24 14609 -64.192.0.0/21 33548 -64.192.8.0/21 3356 -64.192.16.0/20 3356 -64.192.32.0/24 40139 -64.192.33.0/24 3356 -64.192.34.0/23 3356 -64.192.36.0/22 3356 -64.192.40.0/21 3356 -64.192.48.0/22 3356 -64.192.52.0/22 7856 -64.192.56.0/24 7856 -64.192.57.0/24 3356 -64.192.58.0/23 3356 -64.192.60.0/22 3356 -64.192.64.0/22 22561 -64.192.68.0/24 22561 -64.192.69.0/24 209 -64.192.70.0/23 3356 -64.192.72.0/21 3356 -64.192.80.0/21 3356 -64.192.88.0/23 3356 -64.192.90.0/23 13886 -64.192.92.0/23 3356 -64.192.94.0/24 3356 -64.192.95.0/24 30329 -64.192.96.0/20 3356 -64.192.112.0/23 397633 -64.192.114.0/23 3356 -64.192.116.0/22 3356 -64.192.120.0/22 30006 -64.192.124.0/22 3356 -64.192.128.0/20 3356 -64.192.144.0/22 3356 -64.192.148.0/23 3356 -64.192.150.0/24 3356 -64.192.151.0/24 17151 -64.192.152.0/21 3356 -64.192.160.0/21 3356 -64.192.168.0/22 3356 -64.192.172.0/23 30006 -64.192.174.0/23 3356 -64.192.176.0/21 3356 -64.192.184.0/22 3356 -64.192.188.0/23 3356 -64.192.190.0/24 36271 -64.192.191.0/24 3356 -64.192.192.0/20 3356 -64.192.208.0/21 3356 -64.192.216.0/24 7029 -64.192.217.0/24 3356 -64.192.218.0/23 3356 -64.192.220.0/22 3356 -64.192.224.0/22 3356 -64.192.228.0/23 27526 -64.192.230.0/23 3356 -64.192.232.0/22 7856 -64.192.236.0/24 7856 -64.192.237.0/24 3356 -64.192.238.0/23 3356 -64.192.240.0/20 3356 -64.193.0.0/20 3356 -64.193.16.0/22 3356 -64.193.20.0/24 3356 -64.193.21.0/24 62723 -64.193.22.0/23 3356 -64.193.24.0/21 30536 -64.193.32.0/20 3356 -64.193.48.0/22 3356 -64.193.52.0/24 3356 -64.193.53.0/24 395800 -64.193.54.0/23 3356 -64.193.56.0/22 3356 -64.193.60.0/23 3356 -64.193.62.0/23 8100 -64.193.64.0/20 3356 -64.193.80.0/21 3356 -64.193.88.0/22 3356 -64.193.92.0/22 33548 -64.193.96.0/20 3356 -64.193.112.0/22 17099 -64.193.116.0/22 3356 -64.193.120.0/23 3356 -64.193.122.0/23 7131 -64.193.124.0/22 22898 -64.193.128.0/19 3356 -64.193.160.0/22 3356 -64.193.164.0/24 3356 -64.193.165.0/24 46887 -64.193.166.0/23 3356 -64.193.168.0/21 3356 -64.193.176.0/20 134121 -64.193.192.0/20 134121 -64.193.208.0/20 3356 -64.193.224.0/24 33606 -64.193.225.0/24 3356 -64.193.226.0/23 3356 -64.193.228.0/23 3356 -64.193.230.0/24 30329 -64.193.231.0/24 3356 -64.193.232.0/21 3356 -64.193.240.0/20 3356 -64.194.0.0/18 3356 -64.194.64.0/21 21541 -64.194.72.0/21 3356 -64.194.80.0/20 3356 -64.194.96.0/19 3356 -64.194.128.0/22 3356 -64.194.132.0/22 33548 -64.194.136.0/24 3356 -64.194.137.0/24 25674 -64.194.138.0/23 25674 -64.194.140.0/22 3356 -64.194.144.0/20 3356 -64.194.160.0/21 21541 -64.194.168.0/21 3356 -64.194.176.0/20 3356 -64.194.192.0/21 3356 -64.194.200.0/23 3356 -64.194.202.0/23 14195 -64.194.204.0/24 3356 -64.194.205.0/24 395800 -64.194.206.0/23 3356 -64.194.208.0/23 3356 -64.194.210.0/23 25674 -64.194.212.0/24 25674 -64.194.213.0/24 3356 -64.194.214.0/23 3356 -64.194.216.0/21 3356 -64.194.224.0/23 3356 -64.194.226.0/24 3356 -64.194.227.0/24 36555 -64.194.228.0/22 3356 -64.194.232.0/21 3356 -64.194.240.0/20 3356 -64.195.0.0/17 3356 -64.195.128.0/24 3356 -64.195.129.0/24 25674 -64.195.130.0/24 25674 -64.195.131.0/24 3356 -64.195.132.0/24 3356 -64.195.133.0/24 25674 -64.195.134.0/24 3356 -64.195.135.0/24 25674 -64.195.136.0/24 3356 -64.195.137.0/24 25674 -64.195.138.0/23 3356 -64.195.140.0/24 25674 -64.195.141.0/24 3356 -64.195.142.0/24 25674 -64.195.143.0/24 3356 -64.195.144.0/20 3356 -64.195.160.0/19 3356 -64.195.192.0/20 3356 -64.195.208.0/22 3356 -64.195.212.0/23 3356 -64.195.214.0/24 3356 -64.195.215.0/24 46887 -64.195.216.0/22 3356 -64.195.220.0/23 21541 -64.195.222.0/23 3356 -64.195.224.0/19 3356 -64.196.0.0/18 7029 -64.196.64.0/19 7029 -64.196.96.0/20 7029 -64.196.112.0/22 7029 -64.196.116.0/23 7029 -64.196.118.0/24 7029 -64.196.119.0/24 394815 -64.196.120.0/21 7029 -64.196.128.0/22 7029 -64.196.132.0/24 30354 -64.196.133.0/24 7029 -64.196.134.0/23 7029 -64.196.136.0/21 7029 -64.196.144.0/20 7029 -64.196.160.0/19 7029 -64.196.192.0/18 7029 -64.197.0.0/16 7029 -64.198.0.0/17 7029 -64.198.128.0/18 7029 -64.198.192.0/20 7029 -64.198.208.0/21 7029 -64.198.216.0/22 7029 -64.198.220.0/24 7029 -64.198.221.0/24 25660 -64.198.222.0/23 7029 -64.198.224.0/19 7029 -64.199.0.0/17 7029 -64.199.128.0/18 7029 -64.199.192.0/19 7029 -64.199.224.0/23 7029 -64.199.226.0/24 23094 -64.199.227.0/24 7029 -64.199.228.0/22 7029 -64.199.232.0/21 7029 -64.199.240.0/21 7029 -64.199.248.0/23 7029 -64.199.250.0/23 394183 -64.199.252.0/24 393775 -64.199.253.0/24 7029 -64.199.254.0/23 393238 -64.200.0.0/21 20472 -64.200.8.0/22 20472 -64.200.12.0/22 3356 -64.200.16.0/20 3356 -64.200.32.0/21 22747 -64.200.40.0/21 3356 -64.200.48.0/20 3356 -64.200.64.0/18 3356 -64.200.128.0/24 25674 -64.200.129.0/24 3356 -64.200.130.0/23 3356 -64.200.132.0/22 3356 -64.200.136.0/21 3356 -64.200.144.0/20 3356 -64.200.160.0/22 3356 -64.200.164.0/23 3356 -64.200.166.0/24 395800 -64.200.167.0/24 3356 -64.200.168.0/21 3356 -64.200.176.0/22 3356 -64.200.180.0/23 32877 -64.200.182.0/23 3356 -64.200.184.0/21 3356 -64.200.192.0/20 3356 -64.200.208.0/22 3356 -64.200.212.0/24 22561 -64.200.213.0/24 3356 -64.200.214.0/23 3356 -64.200.216.0/22 3356 -64.200.220.0/23 3356 -64.200.222.0/24 22241 -64.200.223.0/24 3356 -64.200.224.0/20 3356 -64.200.240.0/21 3356 -64.200.248.0/23 3356 -64.200.250.0/23 10753 -64.200.252.0/22 3356 -64.201.0.0/19 7029 -64.201.32.0/20 12021 -64.201.48.0/21 12021 -64.201.56.0/23 393994 -64.201.58.0/23 394284 -64.201.60.0/23 394284 -64.201.62.0/24 19652 -64.201.63.0/24 12021 -64.201.64.0/20 26449 -64.201.80.0/20 21555 -64.201.96.0/19 30041 -64.201.128.0/20 11915 -64.201.144.0/21 7029 -64.201.152.0/22 7029 -64.201.158.0/23 7029 -64.201.160.0/20 20161 -64.201.176.0/23 20161 -64.201.178.0/23 16543 -64.201.180.0/24 16543 -64.201.181.0/24 20161 -64.201.182.0/23 20161 -64.201.184.0/21 20161 -64.201.192.0/19 803 -64.201.224.0/24 33675 -64.201.229.0/24 33675 -64.201.230.0/24 33675 -64.201.232.0/22 31775 -64.201.236.0/24 23005 -64.201.240.0/20 36734 -64.202.0.0/19 174 -64.202.32.0/20 11138 -64.202.48.0/20 23380 -64.202.64.0/20 22807 -64.202.80.0/20 29867 -64.202.96.0/21 23352 -64.202.104.0/23 23352 -64.202.106.0/24 393713 -64.202.107.0/24 23352 -64.202.108.0/22 23352 -64.202.112.0/24 22075 -64.202.113.0/24 23352 -64.202.114.0/23 23352 -64.202.116.0/23 23352 -64.202.118.0/24 10625 -64.202.119.0/24 23352 -64.202.120.0/23 23352 -64.202.122.0/24 23352 -64.202.123.0/24 48851 -64.202.124.0/24 48851 -64.202.125.0/24 25657 -64.202.126.0/24 33633 -64.202.127.0/24 393713 -64.202.128.0/20 22820 -64.202.144.0/20 40304 -64.202.160.0/19 26496 -64.202.192.0/21 395924 -64.202.200.0/22 395924 -64.202.204.0/24 395924 -64.202.212.0/22 394133 -64.202.218.0/24 17025 -64.202.219.0/24 6461 -64.202.220.0/22 54511 -64.202.224.0/20 26674 -64.202.240.0/22 10242 -64.202.244.0/24 10242 -64.202.245.0/24 3561 -64.202.246.0/23 10242 -64.202.248.0/24 16904 -64.202.249.0/24 10242 -64.202.250.0/23 10242 -64.203.0.0/18 20001 -64.203.64.0/20 19523 -64.203.80.0/21 19523 -64.203.96.0/20 25817 -64.203.112.0/20 33548 -64.203.128.0/20 7795 -64.203.144.0/21 7795 -64.203.152.0/23 27409 -64.203.154.0/23 7795 -64.203.156.0/22 7795 -64.203.160.0/19 7795 -64.203.192.0/18 22646 -64.204.0.0/21 4565 -64.204.8.0/22 18566 -64.204.12.0/22 4565 -64.204.16.0/20 4565 -64.204.32.0/19 4565 -64.204.64.0/20 4565 -64.204.80.0/21 4565 -64.204.88.0/22 4565 -64.204.92.0/22 18566 -64.204.96.0/20 4565 -64.204.112.0/22 18566 -64.204.116.0/22 4565 -64.204.120.0/21 4565 -64.204.128.0/20 4565 -64.204.144.0/22 4565 -64.204.148.0/22 18566 -64.204.152.0/22 4565 -64.204.156.0/22 18566 -64.204.160.0/19 4565 -64.204.192.0/19 4565 -64.204.224.0/20 4565 -64.204.240.0/22 4565 -64.204.244.0/22 18566 -64.204.248.0/21 4565 -64.205.0.0/19 4565 -64.205.32.0/21 4565 -64.205.40.0/22 4565 -64.205.44.0/22 18566 -64.205.48.0/21 4565 -64.205.56.0/22 18566 -64.205.60.0/22 4565 -64.205.64.0/19 4565 -64.205.96.0/21 4565 -64.205.104.0/22 18566 -64.205.108.0/22 4565 -64.205.112.0/21 4565 -64.205.120.0/22 18566 -64.205.124.0/22 4565 -64.205.128.0/18 4565 -64.205.192.0/19 4565 -64.205.224.0/20 4565 -64.205.240.0/21 18566 -64.205.248.0/21 4565 -64.206.0.0/19 7029 -64.206.32.0/22 7029 -64.206.36.0/24 7029 -64.206.37.0/24 54942 -64.206.38.0/24 7029 -64.206.39.0/24 54120 -64.206.40.0/21 7029 -64.206.48.0/20 7029 -64.206.64.0/18 7029 -64.206.128.0/18 7029 -64.206.192.0/19 7029 -64.206.224.0/22 7029 -64.206.228.0/23 7029 -64.206.230.0/24 7029 -64.206.231.0/24 54966 -64.206.232.0/21 7029 -64.206.240.0/20 7029 -64.207.0.0/18 17184 -64.207.64.0/20 17306 -64.207.80.0/21 17306 -64.207.88.0/22 17306 -64.207.92.0/22 27209 -64.207.96.0/21 11598 -64.207.104.0/22 11598 -64.207.108.0/23 11598 -64.207.110.0/24 11598 -64.207.112.0/20 14977 -64.207.128.0/19 31815 -64.207.160.0/21 31815 -64.207.176.0/20 31815 -64.207.192.0/23 26329 -64.207.194.0/24 16509 -64.207.195.0/24 26329 -64.207.201.0/24 18433 -64.207.202.0/23 18433 -64.207.205.0/24 26329 -64.207.206.0/24 40108 -64.207.207.0/24 396923 -64.207.208.0/23 45178 -64.207.212.0/22 45178 -64.207.216.0/22 62856 -64.207.220.0/24 10753 -64.207.221.0/24 394385 -64.207.222.0/24 26329 -64.207.224.0/19 22773 -64.208.0.0/21 3549 -64.208.8.0/23 3549 -64.208.10.0/24 3549 -64.208.11.0/24 16526 -64.208.12.0/22 3549 -64.208.16.0/23 3549 -64.208.18.0/24 3549 -64.208.19.0/24 16781 -64.208.20.0/23 3549 -64.208.22.0/24 3549 -64.208.23.0/24 1075 -64.208.24.0/21 3549 -64.208.32.0/21 3549 -64.208.40.0/24 3549 -64.208.41.0/24 10753 -64.208.42.0/23 3549 -64.208.44.0/22 3549 -64.208.48.0/24 3549 -64.208.49.0/24 29150 -64.208.50.0/24 3549 -64.208.51.0/24 25765 -64.208.52.0/22 3549 -64.208.56.0/22 3549 -64.208.60.0/22 40244 -64.208.64.0/20 3549 -64.208.80.0/21 3549 -64.208.88.0/23 3549 -64.208.90.0/23 36471 -64.208.92.0/22 3549 -64.208.96.0/22 3549 -64.208.100.0/23 3549 -64.208.102.0/24 1286 -64.208.103.0/24 3549 -64.208.104.0/23 393441 -64.208.106.0/23 3549 -64.208.108.0/22 3549 -64.208.112.0/22 3549 -64.208.116.0/24 40841 -64.208.117.0/24 3549 -64.208.118.0/23 3549 -64.208.120.0/22 3549 -64.208.124.0/23 3549 -64.208.126.0/24 3549 -64.208.127.0/24 3356 -64.208.128.0/21 3549 -64.208.136.0/22 29990 -64.208.140.0/23 29990 -64.208.142.0/23 3549 -64.208.144.0/22 22958 -64.208.148.0/22 3549 -64.208.152.0/21 3549 -64.208.160.0/24 62262 -64.208.161.0/24 3549 -64.208.162.0/24 3549 -64.208.163.0/24 10753 -64.208.164.0/22 3549 -64.208.168.0/21 3549 -64.208.176.0/21 3549 -64.208.184.0/24 3549 -64.208.185.0/24 3356 -64.208.186.0/23 3549 -64.208.188.0/22 32882 -64.208.192.0/21 3549 -64.208.200.0/22 3549 -64.208.204.0/24 3356 -64.208.205.0/24 3549 -64.208.206.0/23 3549 -64.208.208.0/22 3549 -64.208.212.0/23 3549 -64.208.214.0/24 9229 -64.208.215.0/24 3549 -64.208.216.0/21 3549 -64.208.224.0/20 3549 -64.208.240.0/21 3549 -64.208.248.0/23 3549 -64.208.250.0/24 202213 -64.208.251.0/24 3549 -64.208.252.0/22 3549 -64.209.0.0/20 3549 -64.209.16.0/21 3549 -64.209.24.0/22 3549 -64.209.28.0/23 3549 -64.209.30.0/23 52468 -64.209.32.0/21 3549 -64.209.40.0/23 3549 -64.209.42.0/24 3356 -64.209.43.0/24 3549 -64.209.44.0/22 3549 -64.209.48.0/23 3549 -64.209.50.0/23 3356 -64.209.52.0/22 3549 -64.209.56.0/21 6939 -64.209.64.0/22 3549 -64.209.68.0/22 6939 -64.209.72.0/21 3549 -64.209.80.0/21 3549 -64.209.88.0/24 3549 -64.209.89.0/24 6404 -64.209.90.0/23 3549 -64.209.92.0/22 3549 -64.209.96.0/20 3549 -64.209.112.0/23 3549 -64.209.114.0/24 3549 -64.209.115.0/24 40841 -64.209.116.0/22 3549 -64.209.120.0/21 3549 -64.209.128.0/22 3561 -64.209.132.0/23 3561 -64.209.134.0/23 14415 -64.209.136.0/22 3561 -64.209.140.0/23 3561 -64.209.142.0/24 14415 -64.209.143.0/24 3561 -64.209.144.0/20 14860 -64.209.160.0/19 3561 -64.209.192.0/20 3561 -64.209.209.0/24 22241 -64.209.210.0/24 22241 -64.209.220.0/23 22241 -64.209.222.0/24 22241 -64.209.224.0/20 3561 -64.209.240.0/23 3561 -64.209.242.0/24 3561 -64.209.243.0/24 7991 -64.209.244.0/23 3561 -64.209.246.0/24 3561 -64.209.247.0/24 16645 -64.209.248.0/21 3561 -64.210.0.0/24 3549 -64.210.1.0/24 62262 -64.210.2.0/23 3549 -64.210.4.0/22 3549 -64.210.8.0/21 3549 -64.210.16.0/21 3549 -64.210.24.0/23 3549 -64.210.26.0/24 19087 -64.210.27.0/24 3549 -64.210.28.0/22 3549 -64.210.32.0/21 23190 -64.210.40.0/21 14813 -64.210.48.0/22 3549 -64.210.52.0/22 22958 -64.210.56.0/21 29990 -64.210.64.0/24 262248 -64.210.65.0/24 3549 -64.210.66.0/23 3549 -64.210.68.0/22 3549 -64.210.72.0/21 3549 -64.210.80.0/20 3549 -64.210.96.0/19 3549 -64.210.128.0/22 29789 -64.210.132.0/23 29789 -64.210.134.0/24 29789 -64.210.135.0/24 30361 -64.210.136.0/24 29789 -64.210.137.0/24 30361 -64.210.138.0/23 29789 -64.210.140.0/23 29789 -64.210.142.0/24 29789 -64.210.143.0/24 30361 -64.210.144.0/21 29789 -64.210.152.0/22 29789 -64.210.156.0/23 29789 -64.210.158.0/24 29789 -64.210.159.0/24 30361 -64.210.160.0/21 3561 -64.210.168.0/23 3561 -64.210.170.0/24 3561 -64.210.171.0/24 17088 -64.210.172.0/22 3561 -64.210.176.0/20 3561 -64.210.192.0/20 3561 -64.210.208.0/21 3561 -64.210.216.0/24 4298 -64.210.217.0/24 3561 -64.210.218.0/23 3561 -64.210.220.0/23 4298 -64.210.222.0/24 4298 -64.210.223.0/24 3561 -64.210.224.0/19 3561 -64.211.0.0/20 3549 -64.211.16.0/21 3549 -64.211.24.0/22 3549 -64.211.28.0/23 3549 -64.211.30.0/24 14246 -64.211.31.0/24 3549 -64.211.32.0/20 3549 -64.211.48.0/21 3549 -64.211.56.0/23 3549 -64.211.58.0/24 21651 -64.211.59.0/24 3549 -64.211.60.0/22 3549 -64.211.64.0/20 3549 -64.211.80.0/21 3549 -64.211.88.0/22 3549 -64.211.92.0/23 3549 -64.211.94.0/24 3356 -64.211.95.0/24 3549 -64.211.96.0/21 3549 -64.211.104.0/22 3549 -64.211.108.0/24 3356 -64.211.109.0/24 3549 -64.211.110.0/23 3549 -64.211.112.0/23 14828 -64.211.114.0/23 62759 -64.211.116.0/23 14828 -64.211.118.0/23 62759 -64.211.120.0/21 3549 -64.211.128.0/20 3549 -64.211.144.0/24 30103 -64.211.145.0/24 3549 -64.211.146.0/23 3549 -64.211.148.0/22 3549 -64.211.152.0/21 3549 -64.211.160.0/20 3549 -64.211.176.0/23 3549 -64.211.178.0/24 3549 -64.211.179.0/24 393747 -64.211.180.0/24 3549 -64.211.181.0/24 46666 -64.211.182.0/23 3549 -64.211.184.0/21 3549 -64.211.192.0/22 3549 -64.211.196.0/23 3549 -64.211.198.0/24 3549 -64.211.199.0/24 262706 -64.211.200.0/23 3549 -64.211.202.0/24 3549 -64.211.203.0/24 27624 -64.211.204.0/22 3549 -64.211.208.0/23 3549 -64.211.210.0/24 3356 -64.211.211.0/24 3549 -64.211.212.0/22 35985 -64.211.216.0/22 3549 -64.211.220.0/23 23249 -64.211.222.0/23 3549 -64.211.224.0/19 3561 -64.212.0.0/19 3549 -64.212.32.0/20 3549 -64.212.48.0/21 3549 -64.212.56.0/22 3549 -64.212.60.0/24 3549 -64.212.61.0/24 13631 -64.212.62.0/24 3549 -64.212.63.0/24 13480 -64.212.64.0/20 3549 -64.212.80.0/23 3549 -64.212.82.0/23 16526 -64.212.84.0/22 3549 -64.212.88.0/23 3549 -64.212.90.0/24 3356 -64.212.91.0/24 3549 -64.212.92.0/22 3549 -64.212.96.0/20 3549 -64.212.112.0/24 33483 -64.212.113.0/24 3549 -64.212.114.0/23 3549 -64.212.116.0/22 3549 -64.212.120.0/21 3549 -64.212.128.0/19 3549 -64.212.160.0/21 3549 -64.212.168.0/22 3549 -64.212.172.0/23 3549 -64.212.174.0/24 23334 -64.212.175.0/24 3549 -64.212.176.0/20 3549 -64.212.192.0/20 3549 -64.212.208.0/24 31837 -64.212.209.0/24 3549 -64.212.210.0/23 3549 -64.212.212.0/22 3549 -64.212.216.0/24 3549 -64.212.217.0/24 26476 -64.212.218.0/24 266695 -64.212.219.0/24 3549 -64.212.220.0/22 3549 -64.212.224.0/19 3549 -64.213.0.0/19 3549 -64.213.32.0/24 16526 -64.213.33.0/24 3549 -64.213.34.0/23 3549 -64.213.36.0/24 3549 -64.213.37.0/24 11178 -64.213.38.0/23 3549 -64.213.40.0/22 3549 -64.213.44.0/23 3549 -64.213.46.0/24 3549 -64.213.47.0/24 395800 -64.213.48.0/23 36471 -64.213.50.0/23 3549 -64.213.52.0/22 3549 -64.213.56.0/21 18809 -64.213.64.0/18 3549 -64.213.128.0/23 3549 -64.213.130.0/24 16659 -64.213.131.0/24 3549 -64.213.132.0/23 3549 -64.213.134.0/24 16789 -64.213.135.0/24 3549 -64.213.136.0/21 3549 -64.213.144.0/20 3549 -64.213.160.0/19 3549 -64.213.192.0/21 3549 -64.213.200.0/22 3549 -64.213.204.0/24 3356 -64.213.205.0/24 3549 -64.213.206.0/23 3549 -64.213.208.0/21 3549 -64.213.216.0/21 14828 -64.213.224.0/19 11992 -64.214.0.0/18 3549 -64.214.64.0/23 3549 -64.214.66.0/24 3549 -64.214.67.0/24 18994 -64.214.68.0/23 3549 -64.214.70.0/24 3549 -64.214.71.0/24 3356 -64.214.72.0/21 3549 -64.214.80.0/22 3549 -64.214.84.0/24 3549 -64.214.85.0/24 21651 -64.214.86.0/23 3549 -64.214.88.0/22 3356 -64.214.92.0/24 3549 -64.214.93.0/24 16948 -64.214.94.0/23 3549 -64.214.96.0/23 3549 -64.214.98.0/24 18729 -64.214.99.0/24 3549 -64.214.100.0/22 3549 -64.214.104.0/21 3549 -64.214.112.0/20 3549 -64.214.128.0/22 3549 -64.214.132.0/24 3356 -64.214.133.0/24 3549 -64.214.134.0/23 3549 -64.214.136.0/21 3549 -64.214.144.0/20 3549 -64.214.160.0/24 3356 -64.214.161.0/24 3549 -64.214.162.0/23 3549 -64.214.164.0/22 3549 -64.214.168.0/21 3549 -64.214.176.0/22 3549 -64.214.180.0/24 3549 -64.214.181.0/24 31972 -64.214.182.0/23 3549 -64.214.184.0/21 6939 -64.214.192.0/21 3549 -64.214.200.0/24 3549 -64.214.201.0/24 26552 -64.214.202.0/23 3549 -64.214.204.0/22 3549 -64.214.208.0/24 3549 -64.214.209.0/24 30560 -64.214.210.0/23 3549 -64.214.212.0/23 3549 -64.214.214.0/24 16948 -64.214.215.0/24 3549 -64.214.216.0/21 3549 -64.214.224.0/19 3549 -64.215.0.0/22 3549 -64.215.4.0/23 3549 -64.215.6.0/24 3549 -64.215.7.0/24 21801 -64.215.8.0/21 3549 -64.215.16.0/22 3549 -64.215.20.0/23 3549 -64.215.22.0/24 22616 -64.215.23.0/24 3549 -64.215.24.0/21 3549 -64.215.32.0/19 3549 -64.215.64.0/20 3549 -64.215.80.0/22 3549 -64.215.84.0/24 3549 -64.215.85.0/24 3356 -64.215.86.0/23 3549 -64.215.88.0/21 3549 -64.215.96.0/19 3549 -64.215.128.0/20 3549 -64.215.144.0/23 3549 -64.215.146.0/24 52468 -64.215.147.0/24 3549 -64.215.148.0/22 3549 -64.215.152.0/24 18541 -64.215.153.0/24 3549 -64.215.154.0/23 3549 -64.215.156.0/22 3549 -64.215.160.0/23 21552 -64.215.162.0/23 3549 -64.215.164.0/22 3549 -64.215.168.0/22 3549 -64.215.172.0/23 3549 -64.215.174.0/24 3549 -64.215.175.0/24 3356 -64.215.176.0/21 3549 -64.215.184.0/22 3549 -64.215.188.0/24 3356 -64.215.189.0/24 3549 -64.215.190.0/23 3549 -64.215.192.0/22 3549 -64.215.196.0/23 3549 -64.215.198.0/24 22958 -64.215.199.0/24 3549 -64.215.200.0/24 3549 -64.215.201.0/24 3356 -64.215.202.0/24 3549 -64.215.203.0/24 3356 -64.215.204.0/23 3549 -64.215.206.0/24 3549 -64.215.207.0/24 22433 -64.215.208.0/24 3549 -64.215.209.0/24 5080 -64.215.210.0/23 3549 -64.215.212.0/24 11178 -64.215.213.0/24 3549 -64.215.214.0/23 3549 -64.215.216.0/23 395800 -64.215.218.0/23 3549 -64.215.220.0/24 3549 -64.215.221.0/24 3356 -64.215.222.0/23 3549 -64.215.224.0/21 3549 -64.215.232.0/24 3549 -64.215.233.0/24 14969 -64.215.234.0/23 3549 -64.215.236.0/23 16526 -64.215.238.0/23 3549 -64.215.240.0/23 3549 -64.215.242.0/23 16526 -64.215.244.0/22 3549 -64.215.248.0/24 3549 -64.215.249.0/24 40841 -64.215.250.0/23 16526 -64.215.252.0/23 3549 -64.215.254.0/23 18837 -64.216.0.0/15 7018 -64.218.0.0/18 7018 -64.218.64.0/20 7018 -64.218.80.0/21 7018 -64.218.88.0/24 7018 -64.218.89.0/24 2386 -64.218.90.0/23 7018 -64.218.92.0/22 7018 -64.218.96.0/19 7018 -64.218.128.0/19 7018 -64.218.160.0/21 7018 -64.218.168.0/24 7018 -64.218.169.0/24 3257 -64.218.170.0/24 3257 -64.218.171.0/24 7018 -64.218.172.0/22 7018 -64.218.176.0/20 7018 -64.218.192.0/18 7018 -64.219.0.0/18 7018 -64.219.64.0/19 7018 -64.219.96.0/20 7018 -64.219.112.0/21 7018 -64.219.120.0/22 7018 -64.219.124.0/23 7018 -64.219.126.0/24 7018 -64.219.127.0/24 11492 -64.219.128.0/17 7018 -64.220.0.0/17 2828 -64.220.128.0/18 2828 -64.220.192.0/19 2828 -64.220.224.0/21 2828 -64.220.232.0/23 46746 -64.220.234.0/24 46746 -64.220.235.0/24 2828 -64.220.236.0/22 2828 -64.220.240.0/20 2828 -64.221.0.0/21 2828 -64.221.8.0/24 394526 -64.221.9.0/24 2828 -64.221.10.0/23 2828 -64.221.12.0/22 2828 -64.221.16.0/20 2828 -64.221.32.0/19 2828 -64.221.64.0/18 2828 -64.221.128.0/17 2828 -64.222.0.0/18 701 -64.222.64.0/21 13977 -64.222.72.0/23 13977 -64.222.74.0/24 53322 -64.222.75.0/24 13977 -64.222.76.0/22 13977 -64.222.80.0/21 13977 -64.222.88.0/22 13977 -64.222.92.0/24 53327 -64.222.94.0/23 13977 -64.222.96.0/19 13977 -64.222.128.0/24 53963 -64.222.129.0/24 13977 -64.222.130.0/23 13977 -64.222.132.0/24 13977 -64.222.133.0/24 13672 -64.222.134.0/23 13672 -64.222.136.0/23 13672 -64.222.138.0/24 13672 -64.222.139.0/24 13977 -64.222.140.0/23 13672 -64.222.142.0/24 13977 -64.222.143.0/24 13672 -64.222.144.0/21 13672 -64.222.152.0/22 13977 -64.222.156.0/23 13672 -64.222.158.0/23 13977 -64.222.160.0/22 13977 -64.222.164.0/23 13977 -64.222.166.0/24 13672 -64.222.167.0/24 13977 -64.222.168.0/24 13672 -64.222.169.0/24 22270 -64.222.170.0/23 13977 -64.222.172.0/22 13977 -64.222.176.0/22 13977 -64.222.180.0/24 13977 -64.222.181.0/24 13672 -64.222.182.0/23 13672 -64.222.184.0/21 13672 -64.222.192.0/18 13977 -64.223.0.0/18 701 -64.223.64.0/19 13977 -64.223.96.0/20 13977 -64.223.112.0/23 13977 -64.223.114.0/24 13977 -64.223.116.0/22 13977 -64.223.120.0/21 13977 -64.223.128.0/22 13977 -64.223.132.0/24 13977 -64.223.133.0/24 13672 -64.223.134.0/24 13977 -64.223.135.0/24 13672 -64.223.136.0/23 13977 -64.223.138.0/24 13672 -64.223.139.0/24 13977 -64.223.140.0/24 13672 -64.223.141.0/24 13977 -64.223.142.0/24 13977 -64.223.143.0/24 13672 -64.223.144.0/24 13977 -64.223.145.0/24 13672 -64.223.146.0/23 13672 -64.223.148.0/22 13977 -64.223.152.0/24 13977 -64.223.153.0/24 13672 -64.223.154.0/23 13977 -64.223.156.0/24 13672 -64.223.157.0/24 13977 -64.223.158.0/23 13977 -64.223.160.0/20 13977 -64.223.176.0/21 13977 -64.223.184.0/21 13672 -64.223.194.0/23 13977 -64.223.196.0/22 13977 -64.223.200.0/22 13977 -64.223.204.0/23 13977 -64.223.207.0/24 13977 -64.223.208.0/20 13977 -64.223.224.0/20 13977 -64.223.240.0/24 13977 -64.223.242.0/24 13977 -64.223.246.0/23 13977 -64.223.248.0/21 13977 -64.224.0.0/16 13768 -64.225.0.0/18 14061 -64.225.64.0/20 14061 -64.225.80.0/22 14061 -64.225.96.0/19 14061 -64.225.128.0/17 13768 -64.226.0.0/16 13768 -64.227.0.0/18 14061 -64.227.64.0/19 14061 -64.227.128.0/17 13768 -64.228.0.0/15 577 -64.230.219.0/24 577 -64.230.224.0/24 577 -64.230.230.0/23 577 -64.231.0.0/16 577 -64.232.0.0/19 7029 -64.232.32.0/22 7029 -64.232.36.0/24 7029 -64.232.37.0/24 44901 -64.232.38.0/23 44901 -64.232.40.0/21 7029 -64.232.48.0/20 7029 -64.232.64.0/19 7029 -64.232.96.0/20 7029 -64.232.112.0/23 395800 -64.232.114.0/23 7029 -64.232.116.0/22 7029 -64.232.120.0/21 7029 -64.232.128.0/17 7029 -64.233.0.0/18 7029 -64.233.64.0/22 7029 -64.233.68.0/23 7029 -64.233.70.0/24 7029 -64.233.71.0/24 395800 -64.233.72.0/21 7029 -64.233.80.0/20 7029 -64.233.96.0/19 7029 -64.233.128.0/19 23404 -64.233.160.0/19 15169 -64.233.192.0/19 12083 -64.233.224.0/20 12083 -64.233.240.0/21 12083 -64.233.248.0/22 12083 -64.233.252.0/24 22366 -64.233.253.0/24 12083 -64.233.254.0/23 12083 -64.234.1.0/24 19108 -64.234.2.0/23 40285 -64.234.4.0/22 40285 -64.234.9.0/24 12208 -64.234.10.0/23 40285 -64.234.12.0/22 40285 -64.234.17.0/24 40285 -64.234.18.0/23 40285 -64.234.20.0/22 40285 -64.234.24.0/22 40285 -64.234.28.0/23 40285 -64.234.32.0/23 40285 -64.234.35.0/24 40285 -64.234.36.0/22 40285 -64.234.40.0/22 40285 -64.234.44.0/23 40285 -64.234.46.0/24 40285 -64.234.48.0/22 40285 -64.234.52.0/23 40285 -64.234.54.0/24 40285 -64.234.56.0/24 12208 -64.234.57.0/24 40285 -64.234.58.0/23 40285 -64.234.60.0/22 40285 -64.234.64.0/23 40285 -64.234.66.0/24 40285 -64.234.69.0/24 40285 -64.234.70.0/24 40285 -64.234.71.0/24 12208 -64.234.72.0/23 40285 -64.234.75.0/24 40285 -64.234.76.0/23 40285 -64.234.79.0/24 40285 -64.234.80.0/20 40285 -64.234.96.0/20 40285 -64.234.112.0/24 393677 -64.234.113.0/24 393899 -64.234.116.0/24 36078 -64.234.118.0/24 394352 -64.234.119.0/24 23328 -64.234.120.0/22 40266 -64.234.128.0/18 40586 -64.234.192.0/19 22275 -64.234.240.0/20 39939 -64.235.0.0/20 15076 -64.235.22.0/23 16645 -64.235.24.0/23 16645 -64.235.26.0/24 16645 -64.235.28.0/22 16645 -64.235.32.0/19 26277 -64.235.64.0/19 25769 -64.235.96.0/20 15024 -64.235.112.0/20 31753 -64.235.128.0/20 22879 -64.235.144.0/22 15324 -64.235.148.0/23 8447 -64.235.150.0/23 53292 -64.235.152.0/24 15324 -64.235.153.0/24 53292 -64.235.154.0/23 15324 -64.235.156.0/22 15324 -64.235.160.0/19 36733 -64.235.192.0/19 26198 -64.235.224.0/22 3257 -64.235.228.0/24 3257 -64.235.229.0/24 33494 -64.235.230.0/24 3257 -64.235.231.0/24 33494 -64.235.232.0/21 3257 -64.235.240.0/23 3257 -64.235.242.0/23 33494 -64.235.244.0/23 3257 -64.235.246.0/24 3257 -64.235.247.0/24 33494 -64.235.248.0/24 53582 -64.235.249.0/24 3257 -64.235.250.0/23 3257 -64.235.252.0/22 5580 -64.237.0.0/21 22654 -64.237.8.0/24 12012 -64.237.9.0/24 22654 -64.237.10.0/23 22654 -64.237.12.0/23 22654 -64.237.14.0/23 12012 -64.237.16.0/20 30036 -64.237.32.0/19 20473 -64.237.64.0/19 5009 -64.237.104.0/22 64227 -64.237.112.0/20 53828 -64.237.128.0/17 10396 -64.238.0.0/23 7944 -64.238.2.0/24 16509 -64.238.3.0/24 14618 -64.238.4.0/23 16509 -64.238.6.0/24 16509 -64.238.7.0/24 14618 -64.238.16.0/20 25612 -64.238.32.0/22 3549 -64.238.36.0/24 3549 -64.238.37.0/24 64071 -64.238.38.0/24 64069 -64.238.39.0/24 3549 -64.238.40.0/21 13776 -64.238.48.0/23 36590 -64.238.54.0/24 36590 -64.238.62.0/23 36590 -64.238.96.0/19 17184 -64.238.128.0/20 46887 -64.238.144.0/21 62 -64.238.152.0/23 62 -64.238.154.0/24 62 -64.238.155.0/24 397325 -64.238.156.0/23 62 -64.238.158.0/24 62 -64.238.159.0/24 36607 -64.238.160.0/19 10674 -64.238.192.0/19 7381 -64.238.224.0/23 22561 -64.238.226.0/24 40447 -64.238.227.0/24 22561 -64.238.228.0/23 22561 -64.238.230.0/24 22561 -64.238.231.0/24 209 -64.238.232.0/21 22561 -64.238.240.0/24 5006 -64.238.241.0/24 22561 -64.238.242.0/24 22561 -64.238.243.0/24 209 -64.238.244.0/22 22561 -64.238.248.0/23 22561 -64.238.250.0/24 22561 -64.238.251.0/24 209 -64.238.252.0/22 22561 -64.239.0.0/17 13768 -64.239.128.0/18 11509 -64.239.192.0/24 32592 -64.239.193.0/24 33701 -64.239.194.0/23 33701 -64.239.196.0/23 33701 -64.239.198.0/24 33701 -64.239.199.0/24 32592 -64.239.200.0/22 33701 -64.239.204.0/24 33701 -64.239.205.0/24 32592 -64.239.206.0/23 33701 -64.239.208.0/20 32592 -64.239.224.0/21 395167 -64.239.232.0/22 395167 -64.239.236.0/22 209706 -64.239.240.0/20 19271 -64.240.0.0/19 3561 -64.240.32.0/20 3561 -64.240.48.0/21 3561 -64.240.56.0/22 3561 -64.240.60.0/23 3561 -64.240.62.0/24 18891 -64.240.63.0/24 3561 -64.240.64.0/18 3561 -64.240.128.0/18 3561 -64.240.192.0/19 3561 -64.240.224.0/22 3561 -64.240.228.0/23 3561 -64.240.230.0/23 14990 -64.240.232.0/21 3561 -64.240.240.0/20 3561 -64.241.0.0/18 3561 -64.241.64.0/19 3561 -64.241.96.0/20 3561 -64.241.112.0/21 3561 -64.241.120.0/24 3356 -64.241.121.0/24 16809 -64.241.122.0/23 3561 -64.241.124.0/22 3561 -64.241.128.0/18 3561 -64.241.192.0/19 3561 -64.241.224.0/21 3561 -64.241.232.0/22 3561 -64.241.236.0/23 3561 -64.241.238.0/24 3561 -64.241.239.0/24 54922 -64.241.240.0/22 3561 -64.241.244.0/23 3561 -64.241.246.0/24 395800 -64.241.247.0/24 3561 -64.241.248.0/21 3561 -64.242.0.0/17 3561 -64.242.128.0/19 3561 -64.242.160.0/20 3561 -64.242.176.0/21 3561 -64.242.184.0/24 23071 -64.242.185.0/24 3561 -64.242.186.0/23 3561 -64.242.188.0/22 3561 -64.242.192.0/19 3561 -64.242.224.0/21 3561 -64.242.232.0/23 3561 -64.242.234.0/24 46696 -64.242.235.0/24 3561 -64.242.236.0/22 3561 -64.242.240.0/20 3561 -64.243.0.0/17 3561 -64.243.128.0/21 3561 -64.243.136.0/22 3561 -64.243.140.0/24 395800 -64.243.141.0/24 3561 -64.243.142.0/23 3561 -64.243.144.0/20 3561 -64.243.160.0/19 3561 -64.243.192.0/20 3561 -64.243.208.0/22 3561 -64.243.212.0/23 3561 -64.243.214.0/24 3561 -64.243.215.0/24 8132 -64.243.216.0/21 3561 -64.243.224.0/19 3561 -64.244.0.0/19 2828 -64.244.32.0/23 2828 -64.244.34.0/24 12165 -64.244.35.0/24 2828 -64.244.36.0/22 36103 -64.244.40.0/21 2828 -64.244.48.0/23 25694 -64.244.50.0/23 13767 -64.244.52.0/22 25694 -64.244.56.0/21 25694 -64.244.64.0/18 2828 -64.244.128.0/18 2828 -64.244.192.0/24 2828 -64.244.193.0/24 55043 -64.244.194.0/23 2828 -64.244.196.0/24 2828 -64.244.197.0/24 46361 -64.244.198.0/24 2828 -64.244.199.0/24 17219 -64.244.200.0/21 2828 -64.244.208.0/21 2828 -64.244.216.0/22 2828 -64.244.220.0/23 2828 -64.244.222.0/24 2828 -64.244.223.0/24 1996 -64.244.224.0/19 2828 -64.245.0.0/22 36825 -64.245.4.0/22 2828 -64.245.8.0/21 2828 -64.245.16.0/20 2828 -64.245.32.0/22 17119 -64.245.36.0/22 2828 -64.245.40.0/21 2828 -64.245.48.0/20 2828 -64.245.64.0/21 2828 -64.245.72.0/22 2828 -64.245.76.0/23 19514 -64.245.78.0/23 2828 -64.245.80.0/20 2828 -64.245.96.0/19 2828 -64.245.128.0/21 2828 -64.245.136.0/23 32225 -64.245.138.0/23 2828 -64.245.140.0/24 2828 -64.245.141.0/24 32402 -64.245.142.0/23 2828 -64.245.144.0/20 2828 -64.245.160.0/19 2828 -64.245.192.0/21 2828 -64.245.200.0/24 2828 -64.245.201.0/24 22362 -64.245.202.0/23 2828 -64.245.204.0/24 2828 -64.245.205.0/24 29803 -64.245.206.0/23 2828 -64.245.208.0/22 2828 -64.245.212.0/23 2828 -64.245.214.0/24 2828 -64.245.215.0/24 396861 -64.245.216.0/21 2828 -64.245.224.0/19 2828 -64.246.0.0/18 36351 -64.246.64.0/22 18885 -64.246.68.0/23 18885 -64.246.70.0/23 24867 -64.246.72.0/21 18885 -64.246.80.0/20 18885 -64.246.96.0/19 20205 -64.246.128.0/20 22302 -64.246.144.0/21 22302 -64.246.152.0/22 22302 -64.246.156.0/23 22302 -64.246.158.0/24 22302 -64.246.159.0/24 36100 -64.246.160.0/19 6295 -64.246.192.0/20 3356 -64.246.208.0/22 3356 -64.246.212.0/23 3356 -64.246.214.0/24 3356 -64.246.215.0/24 11899 -64.246.216.0/22 3356 -64.246.220.0/23 3356 -64.246.222.0/24 35856 -64.246.223.0/24 3356 -64.246.224.0/20 395685 -64.247.0.0/22 8001 -64.247.4.0/23 8001 -64.247.6.0/24 8001 -64.247.7.0/24 43584 -64.247.8.0/21 8001 -64.247.16.0/20 8001 -64.247.32.0/21 8001 -64.247.40.0/23 8001 -64.247.42.0/24 32746 -64.247.43.0/24 8001 -64.247.44.0/22 8001 -64.247.48.0/20 8001 -64.247.64.0/18 17135 -64.247.128.0/19 22684 -64.247.160.0/21 11992 -64.247.168.0/22 11992 -64.247.172.0/23 11992 -64.247.174.0/24 11992 -64.247.175.0/24 12206 -64.247.176.0/20 62729 -64.247.192.0/19 11320 -64.247.224.0/19 7029 -64.248.0.0/19 4565 -64.248.32.0/20 4565 -64.248.48.0/21 4565 -64.248.56.0/22 18566 -64.248.60.0/22 4565 -64.248.64.0/21 4565 -64.248.72.0/22 4565 -64.248.76.0/22 18566 -64.248.80.0/21 4565 -64.248.88.0/22 4565 -64.248.92.0/22 18566 -64.248.96.0/19 4565 -64.248.128.0/17 4565 -64.249.0.0/16 4565 -64.250.0.0/20 18859 -64.250.32.0/20 16788 -64.250.48.0/24 13329 -64.250.49.0/24 54057 -64.250.50.0/23 14155 -64.250.52.0/22 14155 -64.250.56.0/22 397298 -64.250.60.0/23 397298 -64.250.62.0/24 54057 -64.250.63.0/24 13329 -64.250.64.0/20 11979 -64.250.80.0/20 33130 -64.250.96.0/21 30162 -64.250.104.0/22 30162 -64.250.108.0/23 30162 -64.250.110.0/24 30162 -64.250.111.0/24 12138 -64.250.112.0/20 23367 -64.250.160.0/20 2386 -64.250.176.0/20 46691 -64.250.192.0/19 11650 -64.250.224.0/20 27501 -64.250.240.0/21 27501 -64.250.248.0/22 27501 -64.250.252.0/24 16882 -64.250.253.0/24 27501 -64.250.254.0/23 27501 -64.251.0.0/19 15083 -64.251.32.0/20 11584 -64.251.48.0/20 22742 -64.251.64.0/21 6327 -64.251.72.0/22 6327 -64.251.76.0/24 53359 -64.251.77.0/24 6327 -64.251.78.0/23 23181 -64.251.80.0/22 6327 -64.251.84.0/24 395298 -64.251.85.0/24 6327 -64.251.86.0/23 6327 -64.251.88.0/21 30500 -64.251.96.0/20 27294 -64.251.112.0/20 32102 -64.251.128.0/22 11976 -64.251.133.0/24 11976 -64.251.134.0/23 11976 -64.251.136.0/21 11976 -64.251.144.0/20 11976 -64.251.160.0/19 6580 -64.251.192.0/20 30496 -64.251.208.0/20 26284 -64.251.224.0/24 3549 -64.251.230.0/24 3549 -64.251.240.0/20 393408 -64.252.0.0/20 7018 -64.252.16.0/21 7018 -64.252.24.0/24 394276 -64.252.25.0/24 7018 -64.252.26.0/23 7018 -64.252.28.0/22 7018 -64.252.32.0/19 7018 -64.252.128.0/21 16509 -64.252.136.0/24 16509 -64.252.138.0/23 16509 -64.252.140.0/22 16509 -64.252.144.0/23 16509 -64.252.147.0/24 16509 -64.252.148.0/23 16509 -64.252.151.0/24 16509 -64.252.152.0/24 16509 -64.252.154.0/23 16509 -64.252.156.0/24 16509 -64.252.159.0/24 16509 -64.252.161.0/24 16509 -64.252.163.0/24 16509 -64.252.164.0/24 16509 -64.252.166.0/23 16509 -64.252.168.0/21 16509 -64.252.176.0/22 16509 -64.252.180.0/24 16509 -64.252.182.0/23 16509 -64.252.184.0/21 16509 -64.252.192.0/19 7018 -64.252.224.0/20 7018 -64.252.240.0/21 20442 -64.252.248.0/21 7018 -64.253.0.0/19 22646 -64.253.32.0/19 51048 -64.253.64.0/20 32262 -64.253.80.0/22 22363 -64.253.84.0/23 22363 -64.253.96.0/19 4364 -64.253.128.0/19 19171 -64.253.160.0/23 22773 -64.253.162.0/24 15263 -64.253.163.0/24 22773 -64.253.164.0/23 22773 -64.253.166.0/24 23172 -64.253.167.0/24 22773 -64.253.168.0/21 22773 -64.253.176.0/20 22773 -64.253.208.0/20 12261 -64.253.224.0/19 20428 -64.254.0.0/22 18563 -64.254.4.0/23 18563 -64.254.6.0/23 19086 -64.254.8.0/21 18563 -64.254.16.0/21 18563 -64.254.24.0/23 18563 -64.254.26.0/24 32787 -64.254.27.0/24 18563 -64.254.28.0/22 19086 -64.254.32.0/20 19227 -64.254.48.0/21 19227 -64.254.56.0/23 19227 -64.254.58.0/24 19227 -64.254.59.0/24 16524 -64.254.60.0/22 19227 -64.254.64.0/20 600 -64.254.80.0/20 11836 -64.254.96.0/24 18484 -64.254.97.0/24 18485 -64.254.98.0/24 18489 -64.254.99.0/24 18487 -64.254.100.0/24 19803 -64.254.101.0/24 19804 -64.254.102.0/24 17307 -64.254.103.0/24 18486 -64.254.104.0/24 17307 -64.254.105.0/24 18490 -64.254.106.0/23 17307 -64.254.108.0/24 17307 -64.254.109.0/24 18491 -64.254.110.0/24 18485 -64.254.111.0/24 19808 -64.254.112.0/24 17307 -64.254.113.0/24 19803 -64.254.114.0/24 19804 -64.254.115.0/24 18490 -64.254.116.0/24 18488 -64.254.117.0/24 17307 -64.254.118.0/24 18484 -64.254.119.0/24 19806 -64.254.120.0/24 19807 -64.254.121.0/24 19809 -64.254.122.0/24 18487 -64.254.123.0/24 17307 -64.254.124.0/24 19803 -64.254.125.0/24 17307 -64.254.126.0/24 18491 -64.254.127.0/24 17307 -64.254.128.0/20 16617 -64.254.144.0/20 16941 -64.254.160.0/20 396349 -64.254.176.0/22 12042 -64.254.180.0/24 12042 -64.254.182.0/23 12042 -64.254.184.0/21 12042 -64.254.192.0/19 174 -64.254.224.0/20 21548 -64.254.240.0/23 21548 -64.254.242.0/24 30003 -64.254.243.0/24 21548 -64.254.244.0/22 21548 -64.254.248.0/24 21548 -64.254.249.0/24 46720 -64.254.250.0/23 21548 -64.254.252.0/22 21548 -64.255.0.0/18 19237 -64.255.64.0/20 27553 -64.255.80.0/20 11071 -64.255.96.0/19 19570 -64.255.128.0/20 12042 -64.255.144.0/21 63414 -64.255.152.0/21 14090 -64.255.160.0/21 4544 -64.255.172.0/24 4544 -64.255.224.0/20 2044 -64.255.240.0/20 17054 -65.4.0.0/17 6389 -65.4.128.0/17 7018 -65.5.0.0/22 6389 -65.5.4.0/24 39977 -65.5.5.0/24 6389 -65.5.6.0/23 6389 -65.5.8.0/23 6389 -65.5.10.0/24 6389 -65.5.11.0/24 30087 -65.5.12.0/22 6389 -65.5.16.0/20 6389 -65.5.32.0/19 6389 -65.5.64.0/18 6389 -65.5.128.0/19 6389 -65.5.160.0/21 6389 -65.5.168.0/22 7018 -65.5.172.0/22 6389 -65.5.176.0/20 7018 -65.5.192.0/21 7018 -65.5.200.0/21 6389 -65.5.208.0/20 7018 -65.5.224.0/22 7018 -65.5.228.0/22 6389 -65.5.232.0/21 6389 -65.5.240.0/20 6389 -65.6.0.0/17 7018 -65.6.128.0/18 7018 -65.6.192.0/21 6389 -65.6.200.0/21 7018 -65.6.208.0/21 7018 -65.6.216.0/22 7018 -65.6.220.0/22 6389 -65.6.224.0/20 6389 -65.6.240.0/20 6384 -65.7.0.0/18 7018 -65.7.64.0/18 6389 -65.7.128.0/17 7018 -65.12.0.0/17 6389 -65.12.128.0/17 7018 -65.13.0.0/18 7018 -65.13.64.0/20 7018 -65.13.80.0/22 7018 -65.13.84.0/22 6389 -65.13.88.0/22 7018 -65.13.92.0/22 6389 -65.13.96.0/20 7018 -65.13.112.0/21 7018 -65.13.120.0/21 6389 -65.13.128.0/21 7018 -65.13.136.0/22 6389 -65.13.140.0/22 7018 -65.13.144.0/20 7018 -65.13.160.0/20 7018 -65.13.176.0/20 6389 -65.13.192.0/21 6389 -65.13.200.0/22 7018 -65.13.204.0/22 6389 -65.13.208.0/22 7018 -65.13.212.0/22 6389 -65.13.216.0/21 7018 -65.13.224.0/19 7018 -65.14.0.0/18 6389 -65.14.64.0/21 6389 -65.14.72.0/22 6389 -65.14.76.0/24 22276 -65.14.77.0/24 6389 -65.14.78.0/23 6389 -65.14.80.0/20 6389 -65.14.96.0/19 6389 -65.14.128.0/17 6389 -65.15.0.0/17 7018 -65.15.128.0/20 6389 -65.15.144.0/20 7018 -65.15.160.0/20 7018 -65.15.176.0/20 6389 -65.15.192.0/21 7018 -65.15.200.0/21 6389 -65.15.208.0/21 6389 -65.15.216.0/21 7018 -65.15.224.0/20 7018 -65.15.240.0/21 7018 -65.15.248.0/21 6389 -65.16.0.0/19 16526 -65.16.32.0/20 16526 -65.16.48.0/21 16526 -65.16.56.0/22 16526 -65.16.60.0/24 17184 -65.16.61.0/24 16526 -65.16.62.0/23 16526 -65.16.64.0/18 16526 -65.16.128.0/24 16526 -65.16.129.0/24 17184 -65.16.130.0/23 16526 -65.16.132.0/22 16526 -65.16.136.0/21 16526 -65.16.144.0/20 16526 -65.16.160.0/19 16526 -65.16.192.0/18 16526 -65.17.0.0/17 16526 -65.17.128.0/19 11473 -65.17.160.0/20 19323 -65.17.176.0/20 63448 -65.17.192.0/24 14492 -65.17.193.0/24 22205 -65.17.194.0/23 14492 -65.17.196.0/22 14492 -65.17.200.0/23 22205 -65.17.202.0/23 14492 -65.17.204.0/22 14492 -65.17.208.0/20 14492 -65.17.224.0/20 14492 -65.17.240.0/22 14492 -65.17.244.0/23 14492 -65.17.246.0/23 22205 -65.17.248.0/21 22205 -65.18.0.0/18 557 -65.18.64.0/19 557 -65.18.96.0/20 557 -65.18.112.0/20 136255 -65.18.128.0/18 15600 -65.18.192.0/23 394984 -65.18.194.0/24 394984 -65.18.195.0/24 19916 -65.18.196.0/23 394984 -65.18.198.0/23 19916 -65.18.200.0/22 19271 -65.18.204.0/22 14371 -65.18.208.0/20 35432 -65.18.224.0/24 20217 -65.18.231.0/24 20217 -65.19.0.0/21 14818 -65.19.8.0/23 395245 -65.19.10.0/23 14818 -65.19.12.0/22 14818 -65.19.16.0/20 14818 -65.19.32.0/19 14818 -65.19.64.0/19 12282 -65.19.128.0/22 6939 -65.19.132.0/24 394996 -65.19.133.0/24 6939 -65.19.134.0/23 6939 -65.19.136.0/21 6939 -65.19.144.0/20 6939 -65.19.160.0/21 6939 -65.19.168.0/22 6939 -65.19.172.0/24 54288 -65.19.173.0/24 6939 -65.19.174.0/23 6939 -65.19.176.0/23 6939 -65.19.178.0/24 63949 -65.19.179.0/24 6939 -65.19.180.0/24 6939 -65.19.181.0/24 394996 -65.19.182.0/24 54288 -65.19.183.0/24 6939 -65.19.184.0/23 54288 -65.19.186.0/24 26077 -65.19.187.0/24 6939 -65.19.188.0/24 393513 -65.19.189.0/24 6939 -65.19.190.0/23 6939 -65.19.192.0/24 3833 -65.19.196.0/24 3833 -65.19.208.0/24 3833 -65.19.224.0/22 19605 -65.19.228.0/24 8057 -65.19.229.0/24 33339 -65.19.230.0/24 33339 -65.19.231.0/24 8057 -65.19.232.0/23 8057 -65.19.234.0/23 1378 -65.19.236.0/24 1378 -65.19.237.0/24 395251 -65.19.238.0/23 8057 -65.19.240.0/24 33339 -65.19.241.0/24 8057 -65.19.242.0/24 8057 -65.19.243.0/24 40933 -65.19.244.0/23 19605 -65.19.246.0/24 40933 -65.19.247.0/24 33339 -65.19.248.0/23 8057 -65.19.250.0/24 33339 -65.19.251.0/24 40933 -65.19.252.0/24 40933 -65.19.253.0/24 33339 -65.19.254.0/24 40933 -65.19.255.0/24 8057 -65.20.0.0/22 199592 -65.20.10.0/23 199592 -65.20.12.0/23 199592 -65.20.32.0/23 10627 -65.20.64.0/24 19210 -65.21.1.0/24 19210 -65.22.0.0/22 12041 -65.22.4.0/23 42 -65.22.6.0/23 12041 -65.22.8.0/23 12041 -65.22.10.0/24 12041 -65.22.12.0/24 33280 -65.22.14.0/24 13657 -65.22.15.0/24 13810 -65.22.16.0/23 12041 -65.22.18.0/24 12041 -65.22.19.0/24 42 -65.22.20.0/23 12041 -65.22.22.0/24 12041 -65.22.23.0/24 42 -65.22.24.0/23 12041 -65.22.26.0/24 12041 -65.22.27.0/24 42 -65.22.28.0/23 12041 -65.22.30.0/24 12041 -65.22.31.0/24 42 -65.22.32.0/23 12041 -65.22.34.0/24 12041 -65.22.35.0/24 42 -65.22.36.0/23 12041 -65.22.38.0/24 12041 -65.22.39.0/24 42 -65.22.40.0/23 12041 -65.22.43.0/24 42 -65.22.44.0/23 12041 -65.22.46.0/24 12041 -65.22.47.0/24 42 -65.22.48.0/23 12041 -65.22.50.0/24 12041 -65.22.51.0/24 42 -65.22.52.0/23 12041 -65.22.54.0/24 12041 -65.22.55.0/24 42 -65.22.56.0/23 12041 -65.22.58.0/24 12041 -65.22.59.0/24 42 -65.22.60.0/23 12041 -65.22.62.0/24 12041 -65.22.63.0/24 42 -65.22.64.0/23 12041 -65.22.66.0/24 12041 -65.22.67.0/24 42 -65.22.68.0/23 12041 -65.22.70.0/24 12041 -65.22.71.0/24 42 -65.22.76.0/23 12041 -65.22.78.0/24 12041 -65.22.79.0/24 42 -65.22.80.0/23 12041 -65.22.82.0/24 12041 -65.22.83.0/24 42 -65.22.84.0/23 12041 -65.22.86.0/24 12041 -65.22.87.0/24 42 -65.22.88.0/23 12041 -65.22.90.0/24 12041 -65.22.91.0/24 42 -65.22.92.0/23 12041 -65.22.94.0/24 12041 -65.22.95.0/24 42 -65.22.96.0/23 12041 -65.22.98.0/24 12041 -65.22.99.0/24 42 -65.22.100.0/23 12041 -65.22.102.0/24 12041 -65.22.103.0/24 42 -65.22.104.0/23 12041 -65.22.106.0/24 12041 -65.22.107.0/24 42 -65.22.108.0/23 12041 -65.22.110.0/24 12041 -65.22.111.0/24 42 -65.22.112.0/23 12041 -65.22.114.0/24 12041 -65.22.115.0/24 42 -65.22.116.0/23 12041 -65.22.118.0/24 12041 -65.22.119.0/24 42 -65.22.120.0/23 12041 -65.22.122.0/24 12041 -65.22.123.0/24 42 -65.22.124.0/23 12041 -65.22.126.0/24 12041 -65.22.127.0/24 42 -65.22.128.0/23 12041 -65.22.130.0/24 12041 -65.22.131.0/24 42 -65.22.132.0/23 12041 -65.22.134.0/24 12041 -65.22.135.0/24 42 -65.22.136.0/23 12041 -65.22.138.0/24 12041 -65.22.139.0/24 42 -65.22.140.0/23 12041 -65.22.142.0/24 12041 -65.22.143.0/24 42 -65.22.144.0/23 12041 -65.22.146.0/24 12041 -65.22.147.0/24 42 -65.22.148.0/23 12041 -65.22.150.0/24 12041 -65.22.151.0/24 42 -65.22.152.0/23 12041 -65.22.154.0/24 12041 -65.22.155.0/24 42 -65.22.156.0/23 12041 -65.22.158.0/24 12041 -65.22.159.0/24 42 -65.22.160.0/23 12041 -65.22.162.0/24 12041 -65.22.163.0/24 42 -65.22.164.0/24 12041 -65.22.168.0/23 12041 -65.22.170.0/24 12041 -65.22.171.0/24 42 -65.22.172.0/23 12041 -65.22.174.0/24 12041 -65.22.175.0/24 42 -65.22.176.0/23 12041 -65.22.178.0/24 12041 -65.22.179.0/24 42 -65.22.180.0/23 12041 -65.22.182.0/24 12041 -65.22.183.0/24 42 -65.22.184.0/23 12041 -65.22.186.0/24 12041 -65.22.187.0/24 42 -65.22.188.0/23 12041 -65.22.190.0/24 12041 -65.22.191.0/24 42 -65.22.192.0/23 12041 -65.22.194.0/24 12041 -65.22.195.0/24 42 -65.22.196.0/23 12041 -65.22.198.0/24 12041 -65.22.199.0/24 42 -65.22.200.0/23 12041 -65.22.202.0/24 12041 -65.22.203.0/24 42 -65.22.204.0/23 12041 -65.22.206.0/24 12041 -65.22.207.0/24 42 -65.22.208.0/23 12041 -65.22.210.0/24 12041 -65.22.211.0/24 42 -65.22.212.0/23 12041 -65.22.214.0/24 12041 -65.22.215.0/24 42 -65.22.216.0/23 12041 -65.22.218.0/24 12041 -65.22.219.0/24 42 -65.22.220.0/23 12041 -65.22.222.0/24 12041 -65.22.223.0/24 42 -65.22.224.0/23 12041 -65.22.226.0/24 12041 -65.22.227.0/24 42 -65.22.228.0/23 12041 -65.22.230.0/24 12041 -65.22.231.0/24 42 -65.22.232.0/23 12041 -65.22.234.0/24 12041 -65.22.235.0/24 42 -65.22.236.0/23 12041 -65.22.238.0/24 12041 -65.22.239.0/24 42 -65.22.240.0/23 12041 -65.22.242.0/24 12041 -65.22.243.0/24 42 -65.22.244.0/23 12041 -65.22.246.0/24 12041 -65.22.247.0/24 42 -65.22.248.0/21 21775 -65.23.0.0/18 7029 -65.23.64.0/21 26554 -65.23.72.0/24 26510 -65.23.73.0/24 26554 -65.23.74.0/23 26554 -65.23.76.0/22 26554 -65.23.80.0/21 26554 -65.23.88.0/23 26554 -65.23.90.0/23 27216 -65.23.92.0/22 26554 -65.23.96.0/19 7029 -65.23.128.0/19 12025 -65.23.160.0/19 32809 -65.23.192.0/18 10396 -65.24.0.0/15 10796 -65.26.0.0/19 11427 -65.26.32.0/20 11427 -65.26.48.0/21 11427 -65.26.56.0/21 10796 -65.26.64.0/21 10796 -65.26.72.0/21 11427 -65.26.80.0/20 11427 -65.26.96.0/19 11427 -65.26.128.0/20 11427 -65.26.144.0/20 10796 -65.26.160.0/20 10796 -65.26.192.0/18 10796 -65.27.0.0/16 10796 -65.28.0.0/19 11427 -65.28.32.0/19 10796 -65.28.64.0/18 11427 -65.28.128.0/22 10796 -65.28.132.0/23 10796 -65.28.134.0/23 11955 -65.28.136.0/21 11955 -65.28.144.0/21 11426 -65.28.152.0/21 11955 -65.28.160.0/19 10796 -65.28.192.0/21 7843 -65.28.200.0/23 7843 -65.28.202.0/23 10796 -65.28.204.0/24 10796 -65.28.205.0/24 7843 -65.28.206.0/24 7843 -65.28.207.0/24 11426 -65.28.208.0/23 7843 -65.28.210.0/24 7843 -65.28.211.0/24 20001 -65.28.212.0/24 20001 -65.28.213.0/24 10838 -65.28.214.0/24 7843 -65.28.215.0/24 10838 -65.28.216.0/22 10838 -65.28.220.0/23 11955 -65.28.222.0/24 7843 -65.28.223.0/24 10796 -65.28.224.0/19 10796 -65.29.0.0/16 10796 -65.30.0.0/16 10796 -65.31.0.0/18 10796 -65.31.64.0/20 33363 -65.31.80.0/20 10796 -65.31.96.0/19 10796 -65.31.128.0/18 10796 -65.31.192.0/19 11427 -65.31.224.0/19 10796 -65.32.0.0/15 33363 -65.34.0.0/19 33363 -65.34.32.0/20 22800 -65.34.48.0/20 33363 -65.34.64.0/18 33363 -65.34.128.0/17 7922 -65.35.0.0/16 33363 -65.36.0.0/19 7459 -65.36.32.0/23 7459 -65.36.34.0/24 4576 -65.36.35.0/24 7459 -65.36.36.0/22 7459 -65.36.40.0/24 64281 -65.36.41.0/24 7459 -65.36.42.0/23 7459 -65.36.44.0/23 7459 -65.36.46.0/24 589 -65.36.47.0/24 7459 -65.36.48.0/21 7459 -65.36.56.0/22 7459 -65.36.60.0/24 7459 -65.36.61.0/24 54222 -65.36.62.0/23 7459 -65.36.64.0/22 7459 -65.36.68.0/23 7459 -65.36.70.0/24 397021 -65.36.71.0/24 7459 -65.36.72.0/21 7459 -65.36.80.0/20 7459 -65.36.96.0/19 7459 -65.36.128.0/17 20021 -65.37.0.0/18 5650 -65.37.64.0/23 5650 -65.37.66.0/23 7011 -65.37.68.0/22 5650 -65.37.72.0/22 7011 -65.37.76.0/22 5650 -65.37.80.0/21 5650 -65.37.88.0/22 7011 -65.37.92.0/22 5650 -65.37.96.0/21 5650 -65.37.104.0/24 7345 -65.37.105.0/24 5650 -65.37.106.0/24 5650 -65.37.107.0/24 7011 -65.37.108.0/23 5650 -65.37.110.0/23 7011 -65.37.112.0/20 5650 -65.37.128.0/18 7029 -65.37.192.0/19 7029 -65.37.224.0/20 32592 -65.37.241.0/24 11133 -65.37.242.0/24 11133 -65.37.244.0/23 11133 -65.37.246.0/24 11133 -65.37.247.0/24 2685 -65.37.250.0/23 11133 -65.37.252.0/22 11133 -65.38.0.0/19 22747 -65.38.32.0/20 19662 -65.38.48.0/20 12009 -65.38.64.0/19 22423 -65.38.96.0/19 7381 -65.38.128.0/23 10835 -65.38.130.0/23 393436 -65.38.132.0/22 10835 -65.38.136.0/21 10835 -65.38.144.0/20 10835 -65.38.160.0/20 29863 -65.38.176.0/22 29863 -65.38.180.0/24 50075 -65.38.181.0/24 29863 -65.38.182.0/23 29863 -65.38.184.0/21 29863 -65.38.192.0/23 11992 -65.38.194.0/23 32189 -65.38.196.0/22 11992 -65.38.200.0/21 11992 -65.38.208.0/22 11992 -65.38.212.0/23 11992 -65.38.214.0/24 11992 -65.38.215.0/24 62931 -65.38.216.0/23 40414 -65.38.218.0/23 11992 -65.38.220.0/22 11992 -65.38.224.0/21 18557 -65.38.240.0/22 18557 -65.38.244.0/24 7029 -65.38.245.0/24 18557 -65.38.246.0/23 18557 -65.38.248.0/21 18557 -65.39.0.0/18 26071 -65.39.64.0/19 8399 -65.39.96.0/20 27005 -65.39.112.0/21 27005 -65.39.120.0/24 21947 -65.39.121.0/24 27005 -65.39.122.0/23 27005 -65.39.124.0/22 27005 -65.39.128.0/20 13768 -65.39.144.0/21 13768 -65.39.152.0/24 30103 -65.39.153.0/24 46525 -65.39.154.0/23 13768 -65.39.156.0/22 13768 -65.39.160.0/20 13768 -65.39.176.0/22 13768 -65.39.180.0/24 6640 -65.39.181.0/24 13768 -65.39.182.0/24 54643 -65.39.183.0/24 13768 -65.39.184.0/21 13768 -65.39.192.0/21 13768 -65.39.200.0/22 13768 -65.39.204.0/24 13768 -65.39.205.0/24 53831 -65.39.206.0/23 13768 -65.39.208.0/20 13768 -65.39.224.0/21 13768 -65.39.232.0/22 271 -65.39.236.0/22 13768 -65.39.240.0/24 54643 -65.39.241.0/24 13768 -65.39.242.0/24 54643 -65.39.243.0/24 13768 -65.39.244.0/22 13768 -65.39.248.0/24 13768 -65.39.250.0/23 13768 -65.39.252.0/22 13768 -65.40.0.0/24 209 -65.40.1.0/24 2379 -65.40.2.0/24 209 -65.40.3.0/24 2379 -65.40.4.0/22 2379 -65.40.8.0/24 209 -65.40.9.0/24 2379 -65.40.10.0/24 209 -65.40.11.0/24 2379 -65.40.12.0/22 2379 -65.40.16.0/21 2379 -65.40.24.0/24 209 -65.40.25.0/24 2379 -65.40.26.0/24 2379 -65.40.27.0/24 209 -65.40.28.0/24 2379 -65.40.29.0/24 209 -65.40.30.0/23 209 -65.40.32.0/24 2379 -65.40.33.0/24 209 -65.40.34.0/23 209 -65.40.36.0/23 2379 -65.40.38.0/24 2379 -65.40.39.0/24 209 -65.40.40.0/23 2379 -65.40.42.0/24 209 -65.40.43.0/24 2379 -65.40.44.0/24 209 -65.40.45.0/24 2379 -65.40.46.0/23 209 -65.40.48.0/23 2379 -65.40.50.0/24 2379 -65.40.51.0/24 209 -65.40.52.0/22 2379 -65.40.56.0/22 209 -65.40.60.0/22 2379 -65.40.64.0/20 209 -65.40.80.0/22 209 -65.40.84.0/24 209 -65.40.85.0/24 5778 -65.40.86.0/24 5778 -65.40.87.0/24 209 -65.40.88.0/21 209 -65.40.96.0/23 6367 -65.40.98.0/23 209 -65.40.100.0/23 6367 -65.40.102.0/23 209 -65.40.104.0/22 209 -65.40.108.0/23 209 -65.40.110.0/24 209 -65.40.111.0/24 5778 -65.40.112.0/21 209 -65.40.120.0/22 6222 -65.40.124.0/23 209 -65.40.126.0/24 209 -65.40.127.0/24 14905 -65.40.128.0/19 209 -65.40.160.0/20 209 -65.40.176.0/21 14921 -65.40.184.0/21 18494 -65.40.192.0/22 209 -65.40.196.0/23 209 -65.40.198.0/24 209 -65.40.199.0/24 6222 -65.40.200.0/24 6367 -65.40.201.0/24 209 -65.40.202.0/24 6367 -65.40.203.0/24 209 -65.40.204.0/22 209 -65.40.208.0/22 16718 -65.40.212.0/22 209 -65.40.216.0/23 209 -65.40.218.0/23 14905 -65.40.220.0/22 14921 -65.40.224.0/22 14921 -65.40.228.0/22 5778 -65.40.232.0/22 209 -65.40.236.0/23 209 -65.40.238.0/23 6222 -65.40.240.0/22 6222 -65.40.244.0/24 209 -65.40.245.0/24 11398 -65.40.246.0/23 209 -65.40.248.0/24 18494 -65.40.249.0/24 209 -65.40.250.0/24 18494 -65.40.251.0/24 209 -65.40.252.0/22 209 -65.41.0.0/23 2379 -65.41.2.0/24 209 -65.41.3.0/24 2379 -65.41.4.0/22 4282 -65.41.8.0/22 2379 -65.41.12.0/22 4282 -65.41.16.0/24 209 -65.41.17.0/24 2379 -65.41.18.0/23 209 -65.41.20.0/22 2379 -65.41.24.0/23 209 -65.41.26.0/23 2379 -65.41.28.0/23 209 -65.41.30.0/24 2379 -65.41.31.0/24 209 -65.41.32.0/24 18847 -65.41.33.0/24 5778 -65.41.34.0/23 5778 -65.41.36.0/22 209 -65.41.40.0/22 209 -65.41.44.0/24 209 -65.41.45.0/24 5778 -65.41.46.0/24 5778 -65.41.47.0/24 209 -65.41.48.0/20 209 -65.41.64.0/22 16718 -65.41.68.0/23 6367 -65.41.70.0/24 209 -65.41.71.0/24 6367 -65.41.72.0/23 6367 -65.41.74.0/23 209 -65.41.76.0/23 209 -65.41.78.0/24 209 -65.41.79.0/24 16718 -65.41.80.0/23 209 -65.41.82.0/23 6222 -65.41.84.0/22 6222 -65.41.88.0/23 209 -65.41.90.0/24 6222 -65.41.91.0/24 209 -65.41.92.0/22 6222 -65.41.96.0/21 18494 -65.41.104.0/23 14905 -65.41.106.0/24 209 -65.41.107.0/24 14905 -65.41.108.0/22 14905 -65.41.112.0/21 17402 -65.41.120.0/24 11398 -65.41.121.0/24 209 -65.41.122.0/23 209 -65.41.124.0/22 11398 -65.41.128.0/22 2379 -65.41.132.0/24 209 -65.41.133.0/24 2379 -65.41.134.0/23 209 -65.41.136.0/21 209 -65.41.144.0/24 2379 -65.41.145.0/24 209 -65.41.146.0/23 2379 -65.41.148.0/22 2379 -65.41.152.0/24 2379 -65.41.153.0/24 209 -65.41.154.0/24 209 -65.41.155.0/24 2379 -65.41.156.0/24 2379 -65.41.157.0/24 209 -65.41.158.0/23 2379 -65.41.160.0/21 209 -65.41.168.0/24 5778 -65.41.169.0/24 55131 -65.41.170.0/23 5778 -65.41.172.0/23 5778 -65.41.174.0/23 209 -65.41.176.0/20 209 -65.41.192.0/22 17402 -65.41.196.0/24 18494 -65.41.197.0/24 209 -65.41.198.0/23 18494 -65.41.200.0/21 209 -65.41.208.0/22 209 -65.41.212.0/23 209 -65.41.214.0/24 209 -65.41.215.0/24 11398 -65.41.216.0/21 18494 -65.41.224.0/22 2379 -65.41.228.0/23 2379 -65.41.230.0/24 2379 -65.41.231.0/24 209 -65.41.232.0/24 5778 -65.41.233.0/24 209 -65.41.234.0/23 5778 -65.41.236.0/22 209 -65.41.240.0/23 209 -65.41.242.0/24 209 -65.41.243.0/24 6367 -65.41.244.0/22 6222 -65.41.248.0/22 209 -65.41.252.0/23 209 -65.41.254.0/24 209 -65.41.255.0/24 5778 -65.42.0.0/19 7018 -65.42.32.0/20 7018 -65.42.48.0/21 7018 -65.42.56.0/23 26306 -65.42.58.0/23 7018 -65.42.60.0/22 7018 -65.42.64.0/19 7018 -65.42.96.0/20 7018 -65.42.112.0/22 7018 -65.42.116.0/24 7018 -65.42.117.0/24 27216 -65.42.118.0/23 7018 -65.42.120.0/21 7018 -65.42.128.0/19 7018 -65.42.160.0/21 7018 -65.42.168.0/22 7018 -65.42.172.0/22 46530 -65.42.176.0/20 7018 -65.42.192.0/24 12250 -65.42.193.0/24 7018 -65.42.194.0/23 7018 -65.42.196.0/22 7018 -65.42.200.0/21 7018 -65.42.208.0/20 7018 -65.42.224.0/19 7018 -65.43.0.0/16 7018 -65.44.0.0/18 2828 -65.44.64.0/19 2828 -65.44.96.0/20 2828 -65.44.112.0/21 2828 -65.44.120.0/22 2828 -65.44.124.0/24 2828 -65.44.125.0/24 11052 -65.44.126.0/23 2828 -65.44.128.0/19 2828 -65.44.160.0/21 2828 -65.44.168.0/23 2828 -65.44.170.0/24 2828 -65.44.171.0/24 393293 -65.44.172.0/22 2828 -65.44.176.0/20 2828 -65.44.192.0/23 2828 -65.44.194.0/24 2828 -65.44.195.0/24 12275 -65.44.196.0/23 2828 -65.44.198.0/24 12275 -65.44.199.0/24 2828 -65.44.200.0/21 2828 -65.44.208.0/20 2828 -65.44.224.0/19 2828 -65.45.0.0/16 2828 -65.46.0.0/15 2828 -65.48.0.0/18 7029 -65.48.64.0/20 30432 -65.48.80.0/20 21854 -65.48.96.0/20 11696 -65.48.112.0/20 40911 -65.48.128.0/22 14813 -65.48.132.0/23 14813 -65.48.134.0/23 46650 -65.48.136.0/22 46650 -65.48.140.0/22 46408 -65.48.144.0/24 11139 -65.48.146.0/23 14813 -65.48.148.0/22 14813 -65.48.152.0/24 14813 -65.48.153.0/24 11139 -65.48.154.0/23 11139 -65.48.156.0/23 11139 -65.48.158.0/23 14813 -65.48.160.0/21 14813 -65.48.168.0/23 14813 -65.48.170.0/23 15344 -65.48.172.0/23 15344 -65.48.174.0/24 11139 -65.48.176.0/21 14813 -65.48.184.0/22 14813 -65.48.188.0/24 14813 -65.48.192.0/23 14813 -65.48.196.0/22 14813 -65.48.200.0/23 14813 -65.48.202.0/23 46650 -65.48.204.0/23 46650 -65.48.206.0/24 46650 -65.48.207.0/24 11139 -65.48.208.0/22 14813 -65.48.212.0/24 14813 -65.48.214.0/24 11139 -65.48.215.0/24 15344 -65.48.216.0/24 15344 -65.48.217.0/24 11139 -65.48.218.0/23 11139 -65.48.220.0/24 11139 -65.48.221.0/24 14813 -65.48.222.0/24 11139 -65.48.225.0/24 14813 -65.48.226.0/23 14813 -65.48.228.0/24 14813 -65.48.229.0/24 46408 -65.48.230.0/23 14813 -65.48.233.0/24 46408 -65.48.234.0/23 46408 -65.48.236.0/24 11139 -65.48.237.0/24 14813 -65.48.238.0/23 14813 -65.48.240.0/24 14813 -65.48.242.0/23 14813 -65.48.244.0/23 14813 -65.48.246.0/24 14813 -65.48.247.0/24 11139 -65.48.250.0/24 14813 -65.48.251.0/24 11139 -65.48.252.0/22 14813 -65.49.0.0/24 6939 -65.49.1.0/24 36791 -65.49.2.0/23 6939 -65.49.4.0/24 6939 -65.49.5.0/24 54288 -65.49.6.0/23 36103 -65.49.8.0/23 6939 -65.49.10.0/24 6939 -65.49.11.0/24 46278 -65.49.12.0/22 6939 -65.49.16.0/21 6939 -65.49.24.0/22 6939 -65.49.28.0/23 6939 -65.49.30.0/24 6939 -65.49.31.0/24 40604 -65.49.32.0/21 6939 -65.49.40.0/24 6939 -65.49.41.0/24 54288 -65.49.42.0/24 6939 -65.49.43.0/24 397753 -65.49.44.0/24 6939 -65.49.45.0/24 54288 -65.49.46.0/24 36111 -65.49.47.0/24 6939 -65.49.48.0/22 6939 -65.49.52.0/24 6939 -65.49.53.0/24 394740 -65.49.54.0/24 394996 -65.49.55.0/24 16830 -65.49.56.0/24 6939 -65.49.57.0/24 54288 -65.49.58.0/23 36103 -65.49.60.0/24 63949 -65.49.61.0/24 6939 -65.49.62.0/23 6939 -65.49.64.0/21 6939 -65.49.72.0/23 6939 -65.49.74.0/23 36103 -65.49.76.0/23 6939 -65.49.78.0/24 394996 -65.49.79.0/24 6939 -65.49.80.0/24 6939 -65.49.81.0/24 394996 -65.49.82.0/23 6939 -65.49.84.0/22 36103 -65.49.88.0/23 6939 -65.49.90.0/23 36103 -65.49.92.0/24 54288 -65.49.93.0/24 18779 -65.49.94.0/23 36103 -65.49.96.0/22 36103 -65.49.100.0/22 6939 -65.49.104.0/21 6939 -65.49.112.0/22 23657 -65.49.116.0/22 36103 -65.49.120.0/22 36103 -65.49.124.0/23 6939 -65.49.126.0/24 6939 -65.49.127.0/24 395753 -65.49.128.0/23 14397 -65.49.130.0/23 25820 -65.49.132.0/22 25820 -65.49.136.0/21 13370 -65.49.144.0/23 25820 -65.49.147.0/24 19653 -65.49.149.0/24 10835 -65.49.150.0/23 25820 -65.49.152.0/21 25914 -65.49.192.0/19 25820 -65.49.224.0/20 25820 -65.49.240.0/20 22379 -65.50.0.0/22 31939 -65.50.4.0/24 22626 -65.50.5.0/24 31939 -65.50.6.0/23 31939 -65.50.8.0/21 31939 -65.50.16.0/20 31939 -65.50.32.0/19 31939 -65.50.64.0/18 31939 -65.50.128.0/19 31939 -65.50.160.0/20 31939 -65.50.176.0/21 31939 -65.50.184.0/21 54154 -65.50.192.0/23 11404 -65.50.194.0/24 396977 -65.50.195.0/24 11404 -65.50.196.0/23 11404 -65.50.198.0/24 11404 -65.50.199.0/24 6596 -65.50.200.0/24 6596 -65.50.201.0/24 11404 -65.50.202.0/23 11404 -65.50.204.0/22 11404 -65.50.208.0/20 11404 -65.50.224.0/19 21623 -65.51.0.0/22 6128 -65.51.4.0/23 6128 -65.51.6.0/24 11759 -65.51.7.0/24 6128 -65.51.8.0/23 6128 -65.51.10.0/24 30367 -65.51.11.0/24 6128 -65.51.12.0/22 6128 -65.51.16.0/24 54004 -65.51.17.0/24 16828 -65.51.18.0/23 54004 -65.51.20.0/24 54004 -65.51.21.0/24 6128 -65.51.22.0/23 6128 -65.51.24.0/22 6128 -65.51.28.0/22 19720 -65.51.32.0/23 6128 -65.51.34.0/24 25924 -65.51.35.0/24 6128 -65.51.36.0/22 6128 -65.51.40.0/21 6128 -65.51.48.0/23 6128 -65.51.50.0/24 6128 -65.51.51.0/24 54004 -65.51.52.0/22 6128 -65.51.56.0/21 6128 -65.51.64.0/23 6128 -65.51.66.0/24 35880 -65.51.67.0/24 6128 -65.51.68.0/22 6128 -65.51.72.0/21 6128 -65.51.80.0/23 6128 -65.51.82.0/24 6128 -65.51.83.0/24 54004 -65.51.84.0/24 6128 -65.51.85.0/24 46152 -65.51.86.0/24 54004 -65.51.87.0/24 6128 -65.51.88.0/22 6128 -65.51.92.0/24 6128 -65.51.93.0/24 35922 -65.51.94.0/24 6128 -65.51.95.0/24 46388 -65.51.96.0/24 6128 -65.51.97.0/24 46126 -65.51.98.0/23 6128 -65.51.100.0/22 6128 -65.51.104.0/22 6128 -65.51.108.0/24 6128 -65.51.109.0/24 13938 -65.51.110.0/23 6128 -65.51.112.0/22 6128 -65.51.116.0/24 16979 -65.51.117.0/24 6128 -65.51.118.0/23 6128 -65.51.120.0/24 6128 -65.51.121.0/24 33311 -65.51.122.0/24 6128 -65.51.123.0/24 54004 -65.51.124.0/24 6128 -65.51.125.0/24 54004 -65.51.126.0/23 6128 -65.51.128.0/21 6128 -65.51.136.0/24 54004 -65.51.137.0/24 6128 -65.51.138.0/23 6128 -65.51.140.0/23 6128 -65.51.142.0/24 6128 -65.51.143.0/24 54004 -65.51.144.0/21 6128 -65.51.152.0/23 13938 -65.51.154.0/23 6128 -65.51.156.0/24 22405 -65.51.157.0/24 6128 -65.51.158.0/24 46766 -65.51.159.0/24 6128 -65.51.160.0/22 6128 -65.51.164.0/24 54004 -65.51.165.0/24 395434 -65.51.166.0/23 6128 -65.51.168.0/24 12216 -65.51.169.0/24 6128 -65.51.170.0/23 6128 -65.51.172.0/24 394564 -65.51.173.0/24 6128 -65.51.174.0/23 6128 -65.51.176.0/22 6128 -65.51.180.0/23 6128 -65.51.182.0/24 6128 -65.51.183.0/24 54004 -65.51.184.0/22 6128 -65.51.188.0/23 6128 -65.51.190.0/24 6128 -65.51.191.0/24 4451 -65.51.192.0/23 6128 -65.51.194.0/24 54004 -65.51.195.0/24 6128 -65.51.196.0/22 6128 -65.51.200.0/24 46835 -65.51.201.0/24 14699 -65.51.202.0/24 54004 -65.51.203.0/24 46904 -65.51.204.0/22 6128 -65.51.208.0/24 46870 -65.51.209.0/24 6128 -65.51.210.0/24 6128 -65.51.211.0/24 54004 -65.51.212.0/24 54004 -65.51.213.0/24 6128 -65.51.214.0/23 6128 -65.51.216.0/24 54004 -65.51.217.0/24 13460 -65.51.218.0/23 397394 -65.51.220.0/23 6128 -65.51.222.0/24 54004 -65.51.223.0/24 6128 -65.51.224.0/21 6128 -65.51.232.0/23 6128 -65.51.234.0/24 53880 -65.51.235.0/24 6128 -65.51.236.0/22 6128 -65.51.240.0/23 6128 -65.51.242.0/24 19862 -65.51.243.0/24 6128 -65.51.244.0/22 6128 -65.51.248.0/24 6128 -65.51.249.0/24 40137 -65.51.250.0/24 6128 -65.51.251.0/24 22345 -65.51.252.0/23 6128 -65.51.254.0/24 33677 -65.51.255.0/24 6128 -65.52.0.0/16 8075 -65.53.0.0/16 3598 -65.54.0.0/17 8075 -65.54.128.0/18 8075 -65.54.192.0/23 8068 -65.54.194.0/23 8075 -65.54.196.0/22 8068 -65.54.200.0/24 8068 -65.54.201.0/24 8075 -65.54.202.0/23 8068 -65.54.204.0/24 8075 -65.54.205.0/24 8068 -65.54.206.0/24 8075 -65.54.207.0/24 8068 -65.54.208.0/24 8068 -65.54.209.0/24 8075 -65.54.210.0/24 8075 -65.54.211.0/24 8068 -65.54.212.0/23 8075 -65.54.214.0/23 8068 -65.54.216.0/24 8068 -65.54.217.0/24 8075 -65.54.218.0/23 8068 -65.54.220.0/23 8075 -65.54.222.0/24 8068 -65.54.223.0/24 8075 -65.54.224.0/19 8075 -65.55.0.0/16 8075 -65.56.0.0/16 3356 -65.57.0.0/17 3356 -65.57.128.0/18 3356 -65.57.192.0/20 3356 -65.57.208.0/21 3356 -65.57.216.0/22 3356 -65.57.220.0/23 3356 -65.57.222.0/24 7029 -65.57.223.0/24 3356 -65.57.224.0/19 3356 -65.58.0.0/16 3356 -65.59.0.0/18 3356 -65.59.64.0/19 3356 -65.59.96.0/20 3356 -65.59.112.0/24 40443 -65.59.113.0/24 10461 -65.59.114.0/23 3356 -65.59.116.0/22 3356 -65.59.120.0/21 3356 -65.59.128.0/19 3356 -65.59.160.0/20 3356 -65.59.176.0/21 3356 -65.59.184.0/22 3356 -65.59.188.0/22 3064 -65.59.192.0/21 3356 -65.59.200.0/23 3356 -65.59.202.0/24 11853 -65.59.203.0/24 3356 -65.59.204.0/22 3356 -65.59.208.0/20 3356 -65.59.224.0/20 3356 -65.59.240.0/22 3356 -65.59.244.0/23 3356 -65.59.246.0/23 11135 -65.59.248.0/21 3356 -65.60.0.0/18 32475 -65.60.64.0/18 14265 -65.60.128.0/17 12083 -65.61.0.0/19 11357 -65.61.32.0/20 11357 -65.61.48.0/23 33005 -65.61.50.0/23 17164 -65.61.53.0/24 19271 -65.61.56.0/23 397296 -65.61.59.0/24 54893 -65.61.60.0/24 396912 -65.61.61.0/24 54893 -65.61.62.0/24 54433 -65.61.63.0/24 16713 -65.61.64.0/19 21730 -65.61.96.0/19 30340 -65.61.128.0/21 33070 -65.61.136.0/22 33070 -65.61.140.0/24 33070 -65.61.141.0/24 27357 -65.61.142.0/23 27357 -65.61.144.0/23 33070 -65.61.146.0/23 27357 -65.61.148.0/22 33070 -65.61.152.0/24 27357 -65.61.153.0/24 33070 -65.61.154.0/23 33070 -65.61.156.0/22 33070 -65.61.160.0/20 33070 -65.61.176.0/21 33070 -65.61.184.0/23 33070 -65.61.186.0/23 27357 -65.61.188.0/24 15395 -65.61.189.0/24 33070 -65.61.190.0/23 33070 -65.61.192.0/18 26753 -65.64.0.0/20 7018 -65.64.16.0/22 15026 -65.64.20.0/22 7018 -65.64.24.0/21 7018 -65.64.32.0/19 7018 -65.64.64.0/20 7018 -65.64.80.0/21 16872 -65.64.88.0/21 7018 -65.64.96.0/19 7018 -65.64.128.0/18 7018 -65.64.192.0/20 7018 -65.64.208.0/21 7018 -65.64.216.0/24 19934 -65.64.217.0/24 7018 -65.64.218.0/23 7018 -65.64.220.0/22 7018 -65.64.224.0/19 7018 -65.65.0.0/17 7018 -65.65.128.0/20 36105 -65.65.144.0/21 7018 -65.65.152.0/21 36105 -65.65.160.0/19 7018 -65.65.192.0/18 7018 -65.66.0.0/18 7018 -65.66.64.0/21 7018 -65.66.72.0/22 7018 -65.66.76.0/24 16788 -65.66.77.0/24 7018 -65.66.78.0/23 7018 -65.66.80.0/20 7018 -65.66.96.0/19 7018 -65.66.128.0/17 7018 -65.67.0.0/16 7018 -65.68.0.0/20 7018 -65.68.16.0/21 7018 -65.68.24.0/22 7018 -65.68.28.0/24 7018 -65.68.29.0/24 16788 -65.68.30.0/23 7018 -65.68.32.0/20 7018 -65.68.48.0/22 7018 -65.68.52.0/24 7018 -65.68.53.0/24 2386 -65.68.54.0/23 7018 -65.68.56.0/21 7018 -65.68.64.0/18 7018 -65.68.128.0/17 7018 -65.69.0.0/18 7018 -65.69.64.0/20 7018 -65.69.80.0/24 7018 -65.69.81.0/24 22703 -65.69.82.0/23 7018 -65.69.84.0/22 7018 -65.69.88.0/21 7018 -65.69.96.0/19 7018 -65.69.128.0/19 7018 -65.69.160.0/21 7018 -65.69.168.0/22 7018 -65.69.172.0/23 2386 -65.69.174.0/23 7018 -65.69.176.0/20 7018 -65.69.192.0/18 7018 -65.70.0.0/21 7018 -65.70.8.0/23 7018 -65.70.10.0/24 7018 -65.70.11.0/24 16788 -65.70.12.0/22 7018 -65.70.16.0/20 7018 -65.70.32.0/19 7018 -65.70.64.0/24 22086 -65.70.65.0/24 7018 -65.70.66.0/23 7018 -65.70.68.0/24 7018 -65.70.69.0/24 21648 -65.70.70.0/23 7018 -65.70.72.0/21 7018 -65.70.80.0/20 7018 -65.70.96.0/19 7018 -65.70.128.0/18 7018 -65.70.192.0/19 7018 -65.70.224.0/20 7018 -65.70.240.0/23 7018 -65.70.242.0/23 11492 -65.70.244.0/22 7018 -65.70.248.0/21 7018 -65.71.0.0/20 7018 -65.71.16.0/21 7018 -65.71.24.0/22 7018 -65.71.28.0/23 7018 -65.71.30.0/24 393359 -65.71.31.0/24 7018 -65.71.32.0/19 7018 -65.71.64.0/18 7018 -65.71.128.0/20 7018 -65.71.144.0/21 7018 -65.71.152.0/23 7018 -65.71.154.0/24 2386 -65.71.155.0/24 7018 -65.71.156.0/22 7018 -65.71.160.0/19 7018 -65.71.192.0/18 7018 -65.72.0.0/20 3491 -65.72.32.0/20 3491 -65.72.64.0/20 3491 -65.73.0.0/21 7011 -65.73.8.0/21 5650 -65.73.16.0/21 5650 -65.73.24.0/22 5650 -65.73.28.0/22 7011 -65.73.32.0/22 5650 -65.73.36.0/23 7011 -65.73.38.0/24 7011 -65.73.39.0/24 5650 -65.73.40.0/23 5650 -65.73.42.0/24 5650 -65.73.43.0/24 7011 -65.73.44.0/22 5650 -65.73.48.0/24 7011 -65.73.49.0/24 5650 -65.73.50.0/23 5650 -65.73.52.0/24 7011 -65.73.53.0/24 5650 -65.73.54.0/23 18884 -65.73.56.0/21 18884 -65.73.64.0/21 7011 -65.73.72.0/22 7011 -65.73.76.0/22 5650 -65.73.80.0/22 7011 -65.73.84.0/22 5650 -65.73.88.0/21 5650 -65.73.96.0/22 5650 -65.73.100.0/24 5650 -65.73.101.0/24 7011 -65.73.102.0/23 5650 -65.73.104.0/21 5650 -65.73.112.0/21 5650 -65.73.120.0/24 7011 -65.73.121.0/24 5650 -65.73.122.0/24 5650 -65.73.123.0/24 7011 -65.73.124.0/24 7011 -65.73.125.0/24 5650 -65.73.126.0/24 5650 -65.73.127.0/24 7011 -65.73.128.0/21 7011 -65.73.136.0/22 7011 -65.73.140.0/22 5650 -65.73.144.0/22 5650 -65.73.148.0/22 7011 -65.73.152.0/23 7011 -65.73.154.0/23 5650 -65.73.156.0/22 5650 -65.73.160.0/23 5650 -65.73.162.0/23 7011 -65.73.164.0/24 5650 -65.73.165.0/24 7011 -65.73.166.0/23 7011 -65.73.168.0/22 7011 -65.73.172.0/24 7011 -65.73.173.0/24 5650 -65.73.174.0/23 5650 -65.73.176.0/20 5650 -65.73.192.0/22 7011 -65.73.196.0/22 5650 -65.73.200.0/24 5650 -65.73.201.0/24 7011 -65.73.202.0/23 5650 -65.73.204.0/24 5650 -65.73.205.0/24 7011 -65.73.206.0/23 5650 -65.73.208.0/22 5650 -65.73.212.0/23 7011 -65.73.214.0/23 5650 -65.73.216.0/22 5650 -65.73.220.0/22 7011 -65.73.224.0/22 7011 -65.73.228.0/22 5650 -65.73.232.0/22 5650 -65.73.236.0/23 5650 -65.73.238.0/24 5650 -65.73.239.0/24 7011 -65.73.240.0/22 5650 -65.73.244.0/24 7011 -65.73.245.0/24 5650 -65.73.246.0/23 5650 -65.73.248.0/21 5650 -65.74.0.0/17 8047 -65.74.128.0/18 17018 -65.74.192.0/18 14654 -65.75.0.0/18 6062 -65.75.64.0/18 15146 -65.75.128.0/18 62729 -65.75.216.0/23 10494 -65.75.224.0/20 11623 -65.77.0.0/20 3356 -65.77.16.0/22 3356 -65.77.20.0/23 3356 -65.77.22.0/24 3356 -65.77.23.0/24 32098 -65.77.24.0/21 3356 -65.77.32.0/21 3356 -65.77.40.0/23 3356 -65.77.42.0/23 20112 -65.77.44.0/23 20112 -65.77.46.0/23 3356 -65.77.48.0/20 3356 -65.77.64.0/21 22898 -65.77.72.0/21 3356 -65.77.80.0/20 3356 -65.77.96.0/19 3356 -65.77.128.0/19 3356 -65.77.160.0/20 3356 -65.77.176.0/24 3356 -65.77.177.0/24 46887 -65.77.178.0/23 3356 -65.77.180.0/24 3356 -65.77.181.0/24 30222 -65.77.182.0/23 3356 -65.77.184.0/21 3356 -65.77.192.0/20 3356 -65.77.208.0/22 30222 -65.77.212.0/22 3356 -65.77.216.0/21 3356 -65.77.224.0/20 3356 -65.77.240.0/22 3356 -65.77.244.0/23 30048 -65.77.246.0/23 3356 -65.77.248.0/21 3356 -65.78.0.0/17 6079 -65.78.128.0/18 14051 -65.78.192.0/18 15227 -65.79.0.0/21 6325 -65.79.8.0/23 6325 -65.79.10.0/24 63130 -65.79.11.0/24 6325 -65.79.12.0/23 6325 -65.79.14.0/24 63130 -65.79.15.0/24 6325 -65.79.16.0/20 6325 -65.79.32.0/19 6325 -65.79.64.0/19 6325 -65.79.96.0/20 6325 -65.79.112.0/21 6325 -65.79.120.0/22 32464 -65.79.124.0/22 6325 -65.79.128.0/19 6079 -65.79.160.0/20 7381 -65.79.176.0/21 7381 -65.79.184.0/22 7381 -65.79.188.0/23 7381 -65.79.190.0/24 55002 -65.79.191.0/24 7381 -65.79.192.0/19 11067 -65.79.224.0/23 7029 -65.79.226.0/23 7784 -65.79.228.0/23 7784 -65.79.230.0/23 7029 -65.79.232.0/22 7029 -65.79.236.0/22 7784 -65.79.240.0/20 14369 -65.80.0.0/17 6389 -65.80.128.0/19 6389 -65.80.160.0/20 6389 -65.80.176.0/20 7018 -65.80.192.0/19 7018 -65.80.224.0/19 6389 -65.81.0.0/18 6389 -65.81.64.0/23 7018 -65.81.66.0/23 6389 -65.81.68.0/22 6389 -65.81.72.0/22 7018 -65.81.76.0/22 6389 -65.81.80.0/23 7018 -65.81.82.0/23 6389 -65.81.84.0/22 7018 -65.81.88.0/22 6389 -65.81.92.0/22 7018 -65.81.96.0/22 7018 -65.81.100.0/24 7018 -65.81.101.0/24 6389 -65.81.102.0/23 7018 -65.81.104.0/22 7018 -65.81.108.0/22 6389 -65.81.112.0/22 7018 -65.81.116.0/22 6389 -65.81.120.0/21 6389 -65.81.128.0/18 6389 -65.81.192.0/23 7018 -65.81.194.0/23 6389 -65.81.196.0/22 6389 -65.81.200.0/21 6389 -65.81.208.0/23 8063 -65.81.210.0/23 6389 -65.81.212.0/22 6389 -65.81.216.0/21 6389 -65.81.224.0/21 6389 -65.81.232.0/23 6382 -65.81.234.0/23 6389 -65.81.236.0/22 6389 -65.81.240.0/20 6389 -65.82.0.0/17 6389 -65.82.128.0/23 6389 -65.82.130.0/23 23199 -65.82.132.0/23 6389 -65.82.134.0/24 6389 -65.82.135.0/24 3565 -65.82.136.0/24 2386 -65.82.137.0/24 36711 -65.82.138.0/23 6389 -65.82.140.0/22 6389 -65.82.144.0/22 6389 -65.82.148.0/24 6389 -65.82.149.0/24 11767 -65.82.150.0/24 11767 -65.82.151.0/24 6389 -65.82.152.0/21 6389 -65.82.160.0/23 7018 -65.82.162.0/23 6389 -65.82.164.0/23 7018 -65.82.166.0/23 6389 -65.82.168.0/21 6389 -65.82.176.0/20 7018 -65.82.192.0/21 7018 -65.82.200.0/21 6389 -65.82.208.0/21 7018 -65.82.216.0/23 7018 -65.82.218.0/23 6389 -65.82.220.0/24 6389 -65.82.221.0/24 7018 -65.82.222.0/23 6389 -65.82.224.0/22 7018 -65.82.228.0/23 7018 -65.82.230.0/23 6389 -65.82.232.0/22 7018 -65.82.236.0/22 6389 -65.82.240.0/21 7018 -65.82.248.0/22 7018 -65.82.252.0/22 6389 -65.83.0.0/18 6389 -65.83.64.0/19 6389 -65.83.96.0/20 6389 -65.83.112.0/22 6389 -65.83.116.0/23 6389 -65.83.118.0/23 2722 -65.83.120.0/21 6389 -65.83.128.0/20 7018 -65.83.144.0/20 6389 -65.83.160.0/20 6389 -65.83.176.0/21 7018 -65.83.184.0/21 6389 -65.83.192.0/20 7018 -65.83.208.0/24 6197 -65.83.209.0/24 7018 -65.83.210.0/23 7018 -65.83.212.0/22 7018 -65.83.216.0/21 7018 -65.83.224.0/19 6389 -65.84.0.0/23 18566 -65.84.2.0/23 4565 -65.84.4.0/22 4565 -65.84.8.0/21 4565 -65.84.16.0/23 4565 -65.84.18.0/23 18566 -65.84.20.0/22 4565 -65.84.24.0/21 4565 -65.84.32.0/19 4565 -65.84.64.0/18 4565 -65.84.128.0/19 4565 -65.84.160.0/21 4565 -65.84.168.0/22 4565 -65.84.172.0/23 18566 -65.84.174.0/23 4565 -65.84.176.0/20 4565 -65.84.192.0/18 4565 -65.85.0.0/16 4565 -65.86.0.0/17 4565 -65.86.128.0/18 4565 -65.86.192.0/19 4565 -65.86.224.0/20 4565 -65.86.240.0/21 4565 -65.86.248.0/23 4565 -65.86.250.0/24 4565 -65.86.251.0/24 6267 -65.86.252.0/22 4565 -65.87.0.0/20 25752 -65.87.16.0/21 25752 -65.87.24.0/23 25752 -65.87.26.0/24 54322 -65.87.27.0/24 25752 -65.87.28.0/22 25752 -65.87.32.0/19 23155 -65.87.64.0/22 23148 -65.87.68.0/24 23148 -65.87.70.0/23 23148 -65.87.72.0/24 23148 -65.87.75.0/24 23148 -65.87.80.0/24 23148 -65.87.100.0/24 23148 -65.87.105.0/24 23148 -65.87.106.0/24 23148 -65.87.109.0/24 23148 -65.87.110.0/24 23148 -65.87.113.0/24 23148 -65.87.115.0/24 23148 -65.87.116.0/24 23148 -65.87.126.0/23 23148 -65.87.128.0/18 11426 -65.87.192.0/19 20472 -65.87.224.0/19 21804 -65.88.0.0/20 3356 -65.88.16.0/22 3356 -65.88.20.0/23 3356 -65.88.22.0/24 18434 -65.88.23.0/24 3356 -65.88.24.0/23 3356 -65.88.26.0/24 3356 -65.88.27.0/24 25593 -65.88.28.0/22 3356 -65.88.32.0/19 3356 -65.88.64.0/20 3356 -65.88.80.0/22 3356 -65.88.84.0/22 62 -65.88.88.0/23 35999 -65.88.90.0/23 3356 -65.88.92.0/22 3356 -65.88.96.0/20 6621 -65.88.112.0/20 3356 -65.88.128.0/17 3356 -65.89.0.0/20 3356 -65.89.16.0/21 3356 -65.89.24.0/22 3356 -65.89.28.0/24 14590 -65.89.29.0/24 3356 -65.89.30.0/23 3356 -65.89.32.0/20 3356 -65.89.48.0/21 62 -65.89.56.0/22 62 -65.89.60.0/22 3356 -65.89.64.0/22 3356 -65.89.68.0/22 19689 -65.89.72.0/21 3356 -65.89.80.0/20 3356 -65.89.96.0/23 3356 -65.89.98.0/24 3729 -65.89.99.0/24 3356 -65.89.100.0/22 3356 -65.89.104.0/21 3356 -65.89.112.0/21 3356 -65.89.120.0/22 3356 -65.89.124.0/23 3356 -65.89.126.0/24 3356 -65.89.127.0/24 22022 -65.89.128.0/20 3356 -65.89.144.0/22 19689 -65.89.148.0/22 3356 -65.89.152.0/21 3356 -65.89.160.0/21 3356 -65.89.168.0/22 3356 -65.89.172.0/23 29946 -65.89.174.0/23 3356 -65.89.176.0/20 3356 -65.89.192.0/19 3356 -65.89.224.0/21 3356 -65.89.232.0/22 3356 -65.89.236.0/24 3356 -65.89.237.0/24 25746 -65.89.238.0/23 3356 -65.89.240.0/20 3356 -65.90.0.0/21 3356 -65.90.8.0/23 3356 -65.90.10.0/24 3356 -65.90.11.0/24 16574 -65.90.12.0/22 3356 -65.90.16.0/20 3356 -65.90.32.0/22 3356 -65.90.36.0/24 3356 -65.90.37.0/24 7996 -65.90.38.0/23 3356 -65.90.40.0/21 3356 -65.90.48.0/20 3356 -65.90.64.0/22 3356 -65.90.68.0/23 3356 -65.90.70.0/24 3356 -65.90.71.0/24 19886 -65.90.72.0/21 3356 -65.90.80.0/24 62 -65.90.81.0/24 6977 -65.90.82.0/23 62 -65.90.84.0/22 6977 -65.90.88.0/21 3356 -65.90.96.0/19 3356 -65.90.128.0/21 3356 -65.90.136.0/23 3356 -65.90.138.0/24 32342 -65.90.139.0/24 3356 -65.90.140.0/23 3356 -65.90.142.0/24 40410 -65.90.143.0/24 3356 -65.90.144.0/20 3356 -65.90.160.0/19 3356 -65.90.192.0/18 3356 -65.91.0.0/19 3356 -65.91.32.0/20 3356 -65.91.48.0/22 3356 -65.91.52.0/24 36471 -65.91.53.0/24 3356 -65.91.54.0/23 3356 -65.91.56.0/21 3356 -65.91.64.0/18 3356 -65.91.128.0/19 3356 -65.91.160.0/23 3356 -65.91.162.0/24 15065 -65.91.163.0/24 3356 -65.91.164.0/22 3356 -65.91.168.0/21 3356 -65.91.176.0/20 3356 -65.91.192.0/22 3356 -65.91.196.0/22 16574 -65.91.200.0/21 3356 -65.91.208.0/20 3356 -65.91.224.0/19 3356 -65.92.0.0/14 577 -65.96.0.0/16 7922 -65.97.0.0/19 36733 -65.97.32.0/20 26198 -65.97.64.0/18 7018 -65.97.128.0/18 7029 -65.97.192.0/18 812 -65.98.0.0/17 25653 -65.98.128.0/21 14265 -65.98.136.0/23 11915 -65.98.138.0/23 14265 -65.98.140.0/22 14265 -65.98.144.0/22 14265 -65.98.148.0/23 19864 -65.98.150.0/24 14265 -65.98.151.0/24 19864 -65.98.152.0/23 14265 -65.98.154.0/24 14265 -65.98.156.0/22 14265 -65.98.160.0/20 14265 -65.98.176.0/24 14265 -65.98.177.0/24 19864 -65.98.178.0/23 19864 -65.98.180.0/22 11915 -65.98.184.0/22 14265 -65.98.188.0/24 26866 -65.98.189.0/24 14265 -65.98.190.0/23 14265 -65.98.192.0/20 14265 -65.98.208.0/21 14265 -65.98.216.0/24 11915 -65.98.217.0/24 14265 -65.98.218.0/23 14265 -65.98.220.0/22 14265 -65.98.224.0/21 14265 -65.98.232.0/21 19864 -65.98.240.0/24 19864 -65.98.241.0/24 14265 -65.98.242.0/23 14265 -65.98.244.0/22 14265 -65.98.248.0/22 14265 -65.98.252.0/24 14265 -65.98.253.0/24 19864 -65.98.254.0/23 19864 -65.99.0.0/18 135573 -65.99.64.0/19 135573 -65.99.96.0/20 21688 -65.99.112.0/24 21688 -65.99.113.0/24 26504 -65.99.114.0/23 23391 -65.99.116.0/23 36790 -65.99.118.0/23 32448 -65.99.120.0/24 36790 -65.99.121.0/24 21688 -65.99.122.0/23 23391 -65.99.124.0/23 26504 -65.99.126.0/23 36790 -65.99.128.0/20 12552 -65.99.144.0/21 12552 -65.99.152.0/23 34610 -65.99.154.0/24 34610 -65.99.155.0/24 12552 -65.99.156.0/22 34610 -65.99.160.0/20 12552 -65.99.176.0/24 12552 -65.99.177.0/24 34610 -65.99.178.0/24 12552 -65.99.179.0/24 34610 -65.99.180.0/24 34610 -65.99.181.0/24 12552 -65.99.182.0/23 34610 -65.99.184.0/24 34610 -65.99.185.0/24 12552 -65.99.186.0/23 34610 -65.99.188.0/24 12552 -65.99.189.0/24 34610 -65.99.190.0/23 12552 -65.99.192.0/24 7181 -65.99.193.0/24 36352 -65.99.194.0/23 30496 -65.99.196.0/22 30496 -65.99.200.0/22 30496 -65.99.204.0/22 36024 -65.99.208.0/22 30496 -65.99.212.0/24 36024 -65.99.213.0/24 63410 -65.99.214.0/23 30496 -65.99.216.0/22 30496 -65.99.220.0/23 30496 -65.99.222.0/24 30496 -65.99.223.0/24 36024 -65.99.224.0/22 36024 -65.99.228.0/23 30496 -65.99.230.0/23 36024 -65.99.232.0/23 30496 -65.99.234.0/24 36024 -65.99.235.0/24 63410 -65.99.236.0/24 30496 -65.99.237.0/24 62729 -65.99.238.0/23 63410 -65.99.240.0/22 30496 -65.99.244.0/23 30496 -65.99.246.0/24 36352 -65.99.247.0/24 30496 -65.99.248.0/23 36024 -65.99.250.0/24 36024 -65.99.251.0/24 30496 -65.99.252.0/23 36024 -65.99.254.0/24 394094 -65.99.255.0/24 36024 -65.100.0.0/21 209 -65.100.8.0/22 209 -65.100.12.0/24 18980 -65.100.13.0/24 3910 -65.100.14.0/23 209 -65.100.16.0/20 209 -65.100.32.0/20 209 -65.100.48.0/24 36172 -65.100.49.0/24 209 -65.100.50.0/23 209 -65.100.52.0/22 209 -65.100.56.0/21 209 -65.100.64.0/18 209 -65.100.128.0/17 209 -65.101.0.0/17 209 -65.101.128.0/18 209 -65.101.192.0/21 209 -65.101.200.0/22 209 -65.101.204.0/23 209 -65.101.206.0/24 209 -65.101.207.0/24 22658 -65.101.208.0/20 209 -65.101.224.0/19 209 -65.102.0.0/16 209 -65.103.0.0/17 209 -65.103.128.0/20 209 -65.103.144.0/23 209 -65.103.146.0/23 16491 -65.103.148.0/22 209 -65.103.152.0/21 209 -65.103.160.0/19 209 -65.103.192.0/20 209 -65.103.208.0/21 209 -65.103.216.0/22 209 -65.103.220.0/24 14230 -65.103.221.0/24 209 -65.103.222.0/23 209 -65.103.224.0/19 209 -65.104.0.0/15 2828 -65.106.0.0/16 2828 -65.107.0.0/17 2828 -65.107.128.0/22 2828 -65.107.132.0/24 2828 -65.107.133.0/24 23509 -65.107.134.0/23 2828 -65.107.136.0/21 2828 -65.107.144.0/20 2828 -65.107.160.0/20 2828 -65.107.176.0/22 2828 -65.107.180.0/23 2828 -65.107.182.0/24 2828 -65.107.183.0/24 36748 -65.107.184.0/21 2828 -65.107.192.0/18 2828 -65.108.0.0/15 11022 -65.110.0.0/19 25668 -65.110.40.0/21 32181 -65.110.48.0/22 396933 -65.110.52.0/22 19730 -65.110.56.0/21 14689 -65.110.64.0/19 14992 -65.110.96.0/19 20392 -65.110.128.0/19 11351 -65.110.160.0/24 36031 -65.110.161.0/24 12188 -65.110.162.0/23 12188 -65.110.164.0/22 36030 -65.110.168.0/23 12188 -65.110.170.0/24 12188 -65.110.171.0/24 30715 -65.110.172.0/24 30715 -65.110.173.0/24 31934 -65.110.174.0/23 12188 -65.110.176.0/21 27272 -65.110.184.0/22 30715 -65.110.188.0/23 36031 -65.110.190.0/24 36031 -65.110.192.0/19 5645 -65.110.224.0/19 2698 -65.111.32.0/21 20112 -65.111.40.0/24 30462 -65.111.42.0/24 20112 -65.111.44.0/23 20112 -65.111.48.0/20 22138 -65.111.64.0/21 18990 -65.111.72.0/23 572 -65.111.74.0/23 18990 -65.111.76.0/22 18990 -65.111.80.0/20 18990 -65.111.96.0/19 7459 -65.111.128.0/21 2711 -65.111.136.0/22 2711 -65.111.140.0/24 6231 -65.111.141.0/24 2711 -65.111.142.0/23 6231 -65.111.152.0/24 20453 -65.111.156.0/24 22652 -65.111.157.0/24 21548 -65.111.158.0/24 5769 -65.111.160.0/19 15083 -65.111.192.0/19 19872 -65.111.224.0/20 4307 -65.111.240.0/20 30691 -65.112.0.0/20 1742 -65.112.16.0/21 209 -65.112.24.0/22 209 -65.112.28.0/23 13866 -65.112.30.0/23 209 -65.112.32.0/20 209 -65.112.48.0/21 209 -65.112.56.0/22 209 -65.112.60.0/23 209 -65.112.62.0/24 209 -65.112.63.0/24 47095 -65.112.64.0/20 209 -65.112.80.0/22 209 -65.112.84.0/23 209 -65.112.86.0/24 209 -65.112.87.0/24 40122 -65.112.88.0/21 209 -65.112.96.0/19 209 -65.112.128.0/22 209 -65.112.132.0/24 16526 -65.112.133.0/24 209 -65.112.134.0/23 209 -65.112.136.0/24 209 -65.112.137.0/24 396482 -65.112.138.0/23 209 -65.112.140.0/24 16526 -65.112.141.0/24 209 -65.112.142.0/23 209 -65.112.144.0/24 209 -65.112.145.0/24 14434 -65.112.146.0/23 14434 -65.112.148.0/24 14434 -65.112.149.0/24 53323 -65.112.150.0/23 209 -65.112.152.0/23 209 -65.112.154.0/24 209 -65.112.155.0/24 32561 -65.112.156.0/22 209 -65.112.160.0/19 209 -65.112.192.0/18 209 -65.113.0.0/22 209 -65.113.4.0/23 209 -65.113.6.0/24 209 -65.113.7.0/24 32231 -65.113.8.0/23 209 -65.113.10.0/24 209 -65.113.11.0/24 10835 -65.113.12.0/22 209 -65.113.16.0/20 209 -65.113.32.0/21 209 -65.113.40.0/23 22965 -65.113.42.0/23 209 -65.113.44.0/22 209 -65.113.48.0/23 209 -65.113.50.0/24 209 -65.113.51.0/24 33327 -65.113.52.0/22 209 -65.113.56.0/23 209 -65.113.58.0/24 395800 -65.113.59.0/24 209 -65.113.60.0/24 209 -65.113.61.0/24 10886 -65.113.62.0/23 209 -65.113.64.0/23 209 -65.113.66.0/24 209 -65.113.67.0/24 394050 -65.113.68.0/22 209 -65.113.72.0/21 209 -65.113.80.0/21 209 -65.113.88.0/21 14434 -65.113.96.0/21 209 -65.113.104.0/21 14434 -65.113.112.0/20 209 -65.113.128.0/19 209 -65.113.160.0/20 209 -65.113.176.0/22 209 -65.113.180.0/23 16526 -65.113.182.0/23 209 -65.113.184.0/21 209 -65.113.192.0/22 209 -65.113.196.0/23 53282 -65.113.198.0/23 209 -65.113.200.0/24 209 -65.113.201.0/24 393806 -65.113.202.0/23 393806 -65.113.204.0/22 209 -65.113.208.0/22 209 -65.113.212.0/23 394046 -65.113.214.0/24 394046 -65.113.215.0/24 395244 -65.113.216.0/24 209 -65.113.217.0/24 46551 -65.113.218.0/23 209 -65.113.220.0/22 209 -65.113.224.0/20 209 -65.113.240.0/22 209 -65.113.244.0/24 209 -65.113.245.0/24 18718 -65.113.246.0/23 209 -65.113.248.0/21 209 -65.114.0.0/19 209 -65.114.32.0/23 22992 -65.114.34.0/23 209 -65.114.36.0/22 209 -65.114.40.0/24 209 -65.114.41.0/24 11076 -65.114.42.0/23 209 -65.114.44.0/22 209 -65.114.48.0/21 209 -65.114.56.0/22 209 -65.114.60.0/24 63188 -65.114.61.0/24 209 -65.114.62.0/23 209 -65.114.64.0/22 209 -65.114.68.0/24 26840 -65.114.69.0/24 209 -65.114.70.0/23 209 -65.114.72.0/21 209 -65.114.80.0/20 209 -65.114.96.0/20 209 -65.114.112.0/21 209 -65.114.120.0/24 209 -65.114.121.0/24 46817 -65.114.122.0/23 209 -65.114.124.0/23 47095 -65.114.126.0/24 209 -65.114.127.0/24 30334 -65.114.128.0/20 209 -65.114.144.0/22 209 -65.114.148.0/23 209 -65.114.150.0/23 22349 -65.114.152.0/22 22349 -65.114.156.0/22 209 -65.114.160.0/21 209 -65.114.168.0/23 209 -65.114.170.0/24 209 -65.114.171.0/24 21812 -65.114.172.0/24 395800 -65.114.173.0/24 209 -65.114.174.0/23 209 -65.114.176.0/22 209 -65.114.180.0/23 209 -65.114.182.0/24 22618 -65.114.183.0/24 209 -65.114.184.0/21 209 -65.114.192.0/21 209 -65.114.200.0/23 209 -65.114.202.0/24 40380 -65.114.203.0/24 209 -65.114.204.0/22 209 -65.114.208.0/20 209 -65.114.224.0/21 209 -65.114.232.0/22 209 -65.114.236.0/23 209 -65.114.238.0/24 32175 -65.114.239.0/24 209 -65.114.240.0/24 209 -65.114.241.0/24 22266 -65.114.242.0/23 209 -65.114.244.0/22 209 -65.114.248.0/22 209 -65.114.252.0/24 22180 -65.114.253.0/24 209 -65.114.254.0/23 209 -65.115.0.0/21 209 -65.115.8.0/22 209 -65.115.12.0/23 209 -65.115.14.0/24 26437 -65.115.15.0/24 209 -65.115.16.0/21 209 -65.115.24.0/23 209 -65.115.26.0/24 209 -65.115.27.0/24 20230 -65.115.28.0/22 209 -65.115.32.0/20 209 -65.115.48.0/23 209 -65.115.50.0/24 62791 -65.115.51.0/24 209 -65.115.52.0/22 209 -65.115.56.0/21 209 -65.115.64.0/22 209 -65.115.68.0/23 209 -65.115.70.0/23 11691 -65.115.72.0/21 209 -65.115.80.0/22 209 -65.115.84.0/24 209 -65.115.85.0/24 22965 -65.115.86.0/23 209 -65.115.88.0/21 209 -65.115.96.0/23 209 -65.115.98.0/24 10979 -65.115.99.0/24 209 -65.115.100.0/22 209 -65.115.104.0/21 209 -65.115.112.0/20 209 -65.115.128.0/19 209 -65.115.160.0/20 209 -65.115.176.0/21 209 -65.115.184.0/22 209 -65.115.188.0/23 16526 -65.115.190.0/23 209 -65.115.192.0/19 209 -65.115.224.0/23 209 -65.115.226.0/24 10361 -65.115.227.0/24 209 -65.115.228.0/24 22904 -65.115.229.0/24 32460 -65.115.230.0/23 209 -65.115.232.0/23 209 -65.115.234.0/24 21702 -65.115.235.0/24 209 -65.115.236.0/22 209 -65.115.240.0/24 23004 -65.115.241.0/24 209 -65.115.242.0/23 209 -65.115.244.0/22 209 -65.115.248.0/21 209 -65.116.0.0/21 209 -65.116.8.0/24 16931 -65.116.9.0/24 209 -65.116.10.0/23 209 -65.116.12.0/23 209 -65.116.14.0/23 46849 -65.116.16.0/23 209 -65.116.18.0/24 21812 -65.116.19.0/24 209 -65.116.20.0/22 209 -65.116.24.0/21 209 -65.116.32.0/20 209 -65.116.48.0/23 209 -65.116.50.0/24 209 -65.116.51.0/24 13893 -65.116.52.0/22 209 -65.116.56.0/21 209 -65.116.64.0/23 209 -65.116.66.0/24 40701 -65.116.67.0/24 209 -65.116.68.0/22 209 -65.116.72.0/22 209 -65.116.76.0/23 209 -65.116.78.0/24 32124 -65.116.79.0/24 209 -65.116.80.0/21 209 -65.116.88.0/23 209 -65.116.90.0/24 14478 -65.116.91.0/24 209 -65.116.92.0/23 14478 -65.116.94.0/23 209 -65.116.96.0/21 209 -65.116.104.0/23 209 -65.116.106.0/24 32824 -65.116.107.0/24 209 -65.116.108.0/22 209 -65.116.112.0/21 25655 -65.116.120.0/21 209 -65.116.128.0/24 26761 -65.116.129.0/24 209 -65.116.130.0/23 209 -65.116.132.0/22 209 -65.116.136.0/22 209 -65.116.140.0/24 14937 -65.116.141.0/24 209 -65.116.142.0/23 209 -65.116.144.0/20 209 -65.116.160.0/22 209 -65.116.164.0/23 20940 -65.116.166.0/23 209 -65.116.168.0/21 209 -65.116.176.0/20 209 -65.116.192.0/19 209 -65.116.224.0/20 209 -65.116.240.0/23 209 -65.116.242.0/24 31942 -65.116.243.0/24 209 -65.116.244.0/22 209 -65.116.248.0/21 209 -65.117.0.0/18 209 -65.117.64.0/21 19390 -65.117.72.0/22 64242 -65.117.76.0/22 209 -65.117.80.0/20 209 -65.117.96.0/20 209 -65.117.112.0/22 209 -65.117.116.0/23 209 -65.117.118.0/24 23340 -65.117.119.0/24 209 -65.117.120.0/22 209 -65.117.124.0/24 209 -65.117.125.0/24 25758 -65.117.126.0/24 46817 -65.117.127.0/24 209 -65.117.128.0/19 209 -65.117.160.0/23 40122 -65.117.162.0/23 209 -65.117.164.0/22 209 -65.117.168.0/21 209 -65.117.176.0/20 209 -65.117.192.0/21 209 -65.117.200.0/24 209 -65.117.201.0/24 15238 -65.117.202.0/23 209 -65.117.204.0/22 209 -65.117.208.0/21 10835 -65.117.216.0/21 209 -65.117.224.0/22 209 -65.117.228.0/23 53316 -65.117.230.0/23 3561 -65.117.232.0/21 209 -65.117.240.0/20 209 -65.118.0.0/20 209 -65.118.16.0/22 27202 -65.118.20.0/24 23032 -65.118.21.0/24 209 -65.118.22.0/23 209 -65.118.24.0/23 29969 -65.118.26.0/23 209 -65.118.28.0/22 209 -65.118.32.0/22 209 -65.118.36.0/24 209 -65.118.37.0/24 30293 -65.118.38.0/23 209 -65.118.40.0/23 209 -65.118.42.0/24 395800 -65.118.43.0/24 209 -65.118.44.0/22 209 -65.118.48.0/24 209 -65.118.49.0/24 16931 -65.118.50.0/23 209 -65.118.52.0/22 209 -65.118.56.0/21 209 -65.118.64.0/23 21973 -65.118.66.0/23 54695 -65.118.68.0/22 209 -65.118.72.0/21 209 -65.118.80.0/20 209 -65.118.96.0/21 209 -65.118.104.0/23 209 -65.118.106.0/24 209 -65.118.107.0/24 14057 -65.118.108.0/22 209 -65.118.112.0/21 209 -65.118.120.0/24 209 -65.118.121.0/24 46348 -65.118.122.0/23 209 -65.118.124.0/22 209 -65.118.128.0/20 209 -65.118.144.0/24 32099 -65.118.145.0/24 209 -65.118.146.0/23 209 -65.118.148.0/22 209 -65.118.152.0/24 22776 -65.118.153.0/24 209 -65.118.154.0/23 209 -65.118.156.0/22 209 -65.118.160.0/19 209 -65.118.192.0/18 209 -65.119.0.0/19 209 -65.119.32.0/20 209 -65.119.48.0/22 27235 -65.119.52.0/22 209 -65.119.56.0/21 209 -65.119.64.0/19 209 -65.119.96.0/20 209 -65.119.112.0/23 209 -65.119.114.0/24 25934 -65.119.115.0/24 209 -65.119.116.0/24 209 -65.119.117.0/24 25934 -65.119.118.0/23 25934 -65.119.120.0/21 209 -65.119.128.0/20 209 -65.119.144.0/24 209 -65.119.145.0/24 33603 -65.119.146.0/23 209 -65.119.148.0/22 209 -65.119.152.0/21 209 -65.119.160.0/22 27482 -65.119.164.0/22 209 -65.119.168.0/21 209 -65.119.176.0/20 209 -65.119.192.0/21 209 -65.119.200.0/24 209 -65.119.201.0/24 23384 -65.119.202.0/24 26437 -65.119.203.0/24 209 -65.119.204.0/22 209 -65.119.208.0/21 209 -65.119.216.0/24 21509 -65.119.217.0/24 209 -65.119.218.0/23 209 -65.119.220.0/22 209 -65.119.224.0/24 209 -65.119.225.0/24 31892 -65.119.226.0/23 31892 -65.119.228.0/22 209 -65.119.232.0/21 209 -65.119.240.0/20 209 -65.120.0.0/21 27235 -65.120.8.0/21 209 -65.120.16.0/21 209 -65.120.24.0/21 3910 -65.120.32.0/21 209 -65.120.40.0/22 209 -65.120.44.0/23 209 -65.120.46.0/24 36555 -65.120.47.0/24 209 -65.120.48.0/21 209 -65.120.56.0/24 11937 -65.120.57.0/24 11255 -65.120.58.0/23 11255 -65.120.60.0/23 209 -65.120.62.0/24 14436 -65.120.63.0/24 209 -65.120.64.0/19 209 -65.120.96.0/20 209 -65.120.112.0/21 209 -65.120.120.0/22 27516 -65.120.124.0/22 209 -65.120.128.0/19 209 -65.120.160.0/22 209 -65.120.164.0/23 209 -65.120.166.0/24 393806 -65.120.167.0/24 209 -65.120.168.0/21 209 -65.120.176.0/20 209 -65.120.192.0/19 209 -65.120.224.0/22 209 -65.120.228.0/24 393776 -65.120.229.0/24 209 -65.120.230.0/23 209 -65.120.232.0/21 209 -65.120.240.0/20 209 -65.121.0.0/24 209 -65.121.1.0/24 46131 -65.121.2.0/23 209 -65.121.4.0/22 209 -65.121.8.0/22 209 -65.121.12.0/22 21843 -65.121.16.0/21 209 -65.121.24.0/22 209 -65.121.28.0/24 106 -65.121.29.0/24 209 -65.121.30.0/23 209 -65.121.32.0/23 209 -65.121.34.0/24 393890 -65.121.35.0/24 36602 -65.121.36.0/22 209 -65.121.40.0/22 209 -65.121.44.0/24 395218 -65.121.45.0/24 209 -65.121.46.0/23 209 -65.121.48.0/20 209 -65.121.64.0/22 46663 -65.121.68.0/22 209 -65.121.72.0/24 54185 -65.121.73.0/24 209 -65.121.74.0/23 209 -65.121.76.0/22 209 -65.121.80.0/21 209 -65.121.88.0/22 209 -65.121.92.0/24 32118 -65.121.93.0/24 209 -65.121.94.0/23 209 -65.121.96.0/23 36159 -65.121.98.0/24 209 -65.121.99.0/24 36159 -65.121.100.0/22 209 -65.121.104.0/21 209 -65.121.112.0/20 209 -65.121.128.0/23 209 -65.121.130.0/24 209 -65.121.131.0/24 395846 -65.121.132.0/22 209 -65.121.136.0/22 209 -65.121.140.0/24 26955 -65.121.141.0/24 209 -65.121.142.0/23 209 -65.121.144.0/20 209 -65.121.160.0/21 209 -65.121.168.0/22 209 -65.121.172.0/24 25603 -65.121.173.0/24 209 -65.121.174.0/23 209 -65.121.176.0/24 19546 -65.121.177.0/24 209 -65.121.178.0/23 209 -65.121.180.0/23 209 -65.121.182.0/24 53885 -65.121.183.0/24 209 -65.121.184.0/21 209 -65.121.192.0/19 209 -65.121.224.0/22 209 -65.121.228.0/24 54259 -65.121.229.0/24 209 -65.121.230.0/23 209 -65.121.232.0/21 209 -65.121.240.0/23 209 -65.121.242.0/24 13762 -65.121.243.0/24 209 -65.121.244.0/22 209 -65.121.248.0/21 209 -65.122.0.0/22 209 -65.122.4.0/23 209 -65.122.6.0/24 26326 -65.122.7.0/24 209 -65.122.8.0/22 209 -65.122.12.0/23 22180 -65.122.14.0/23 209 -65.122.16.0/21 209 -65.122.24.0/24 209 -65.122.25.0/24 36457 -65.122.26.0/23 209 -65.122.28.0/22 209 -65.122.32.0/20 209 -65.122.48.0/24 23340 -65.122.49.0/24 209 -65.122.50.0/23 209 -65.122.52.0/22 209 -65.122.56.0/21 209 -65.122.64.0/22 209 -65.122.68.0/23 209 -65.122.70.0/24 395773 -65.122.71.0/24 209 -65.122.72.0/23 209 -65.122.74.0/23 2768 -65.122.76.0/22 209 -65.122.80.0/22 209 -65.122.84.0/24 46817 -65.122.85.0/24 209 -65.122.86.0/23 209 -65.122.88.0/23 209 -65.122.90.0/24 5777 -65.122.91.0/24 209 -65.122.92.0/24 209 -65.122.93.0/24 35994 -65.122.94.0/23 209 -65.122.96.0/19 209 -65.122.128.0/20 209 -65.122.144.0/21 209 -65.122.152.0/23 209 -65.122.154.0/24 19800 -65.122.155.0/24 209 -65.122.156.0/24 10835 -65.122.157.0/24 209 -65.122.158.0/24 29864 -65.122.159.0/24 209 -65.122.160.0/21 209 -65.122.168.0/21 12005 -65.122.176.0/20 209 -65.122.192.0/19 209 -65.122.224.0/20 209 -65.122.240.0/22 209 -65.122.244.0/23 209 -65.122.246.0/24 16477 -65.122.247.0/24 209 -65.122.248.0/22 209 -65.122.252.0/24 33644 -65.122.253.0/24 209 -65.122.254.0/23 209 -65.123.0.0/20 209 -65.123.16.0/23 209 -65.123.18.0/24 395800 -65.123.19.0/24 209 -65.123.20.0/22 209 -65.123.24.0/22 209 -65.123.28.0/24 209 -65.123.29.0/24 21622 -65.123.30.0/23 209 -65.123.32.0/21 209 -65.123.40.0/22 209 -65.123.44.0/24 209 -65.123.45.0/24 32231 -65.123.46.0/23 209 -65.123.48.0/21 19390 -65.123.56.0/21 209 -65.123.64.0/20 209 -65.123.80.0/23 209 -65.123.82.0/24 22401 -65.123.83.0/24 209 -65.123.84.0/22 209 -65.123.88.0/21 209 -65.123.96.0/21 209 -65.123.104.0/24 32571 -65.123.105.0/24 209 -65.123.106.0/23 209 -65.123.108.0/24 36071 -65.123.109.0/24 209 -65.123.110.0/24 47095 -65.123.111.0/24 209 -65.123.112.0/20 209 -65.123.128.0/23 209 -65.123.130.0/24 32824 -65.123.131.0/24 209 -65.123.132.0/22 209 -65.123.136.0/21 209 -65.123.144.0/20 209 -65.123.160.0/22 209 -65.123.164.0/23 209 -65.123.166.0/24 209 -65.123.167.0/24 35962 -65.123.168.0/21 209 -65.123.176.0/22 209 -65.123.180.0/23 209 -65.123.182.0/24 16648 -65.123.183.0/24 209 -65.123.184.0/21 209 -65.123.192.0/22 209 -65.123.196.0/23 209 -65.123.198.0/24 21812 -65.123.199.0/24 209 -65.123.200.0/22 209 -65.123.204.0/23 26308 -65.123.206.0/23 209 -65.123.208.0/23 209 -65.123.210.0/24 209 -65.123.211.0/24 40122 -65.123.212.0/22 209 -65.123.216.0/21 209 -65.123.224.0/19 209 -65.124.0.0/21 209 -65.124.8.0/22 209 -65.124.12.0/23 209 -65.124.14.0/24 11842 -65.124.15.0/24 209 -65.124.16.0/20 209 -65.124.32.0/20 209 -65.124.48.0/21 209 -65.124.56.0/24 40289 -65.124.57.0/24 209 -65.124.58.0/23 209 -65.124.60.0/22 209 -65.124.64.0/22 209 -65.124.68.0/23 209 -65.124.70.0/24 14862 -65.124.71.0/24 209 -65.124.72.0/24 395030 -65.124.73.0/24 209 -65.124.74.0/23 209 -65.124.76.0/22 209 -65.124.80.0/21 209 -65.124.88.0/23 209 -65.124.90.0/24 209 -65.124.91.0/24 395030 -65.124.92.0/24 209 -65.124.93.0/24 25729 -65.124.94.0/23 209 -65.124.96.0/23 209 -65.124.98.0/24 22273 -65.124.99.0/24 40451 -65.124.100.0/22 209 -65.124.104.0/21 32571 -65.124.112.0/23 209 -65.124.114.0/23 23355 -65.124.116.0/24 209 -65.124.117.0/24 22813 -65.124.118.0/24 40010 -65.124.119.0/24 209 -65.124.120.0/21 209 -65.124.128.0/24 394307 -65.124.129.0/24 209 -65.124.130.0/23 209 -65.124.132.0/23 209 -65.124.134.0/24 19629 -65.124.135.0/24 209 -65.124.136.0/22 209 -65.124.140.0/24 20285 -65.124.141.0/24 209 -65.124.142.0/23 209 -65.124.144.0/21 209 -65.124.152.0/23 209 -65.124.154.0/24 209 -65.124.155.0/24 36104 -65.124.156.0/22 209 -65.124.160.0/22 209 -65.124.164.0/24 26378 -65.124.165.0/24 209 -65.124.166.0/23 209 -65.124.168.0/22 209 -65.124.172.0/24 32362 -65.124.173.0/24 209 -65.124.174.0/23 209 -65.124.176.0/22 209 -65.124.180.0/23 209 -65.124.182.0/24 21697 -65.124.183.0/24 209 -65.124.184.0/21 209 -65.124.192.0/21 209 -65.124.200.0/23 209 -65.124.202.0/24 209 -65.124.203.0/24 30048 -65.124.204.0/22 209 -65.124.208.0/20 209 -65.124.224.0/22 209 -65.124.228.0/23 209 -65.124.230.0/24 209 -65.124.231.0/24 14045 -65.124.232.0/21 209 -65.124.240.0/20 209 -65.125.0.0/19 209 -65.125.32.0/21 209 -65.125.40.0/22 209 -65.125.44.0/23 209 -65.125.46.0/24 22206 -65.125.47.0/24 209 -65.125.48.0/22 209 -65.125.52.0/23 209 -65.125.54.0/24 53316 -65.125.55.0/24 209 -65.125.56.0/21 209 -65.125.64.0/22 209 -65.125.68.0/24 209 -65.125.69.0/24 33232 -65.125.70.0/24 209 -65.125.71.0/24 63215 -65.125.72.0/21 209 -65.125.80.0/21 209 -65.125.88.0/23 209 -65.125.90.0/24 54781 -65.125.91.0/24 209 -65.125.92.0/24 209 -65.125.93.0/24 25921 -65.125.94.0/23 209 -65.125.96.0/22 209 -65.125.100.0/23 209 -65.125.102.0/24 62977 -65.125.103.0/24 209 -65.125.104.0/21 209 -65.125.112.0/20 209 -65.125.128.0/21 209 -65.125.136.0/22 209 -65.125.140.0/23 209 -65.125.142.0/24 36159 -65.125.143.0/24 54358 -65.125.144.0/20 209 -65.125.160.0/21 209 -65.125.168.0/22 209 -65.125.172.0/24 62801 -65.125.173.0/24 209 -65.125.174.0/23 209 -65.125.176.0/20 209 -65.125.192.0/21 209 -65.125.200.0/23 25940 -65.125.202.0/23 209 -65.125.204.0/22 209 -65.125.208.0/24 209 -65.125.209.0/24 32108 -65.125.210.0/23 209 -65.125.212.0/22 209 -65.125.216.0/22 209 -65.125.220.0/24 209 -65.125.221.0/24 55193 -65.125.222.0/23 209 -65.125.224.0/19 209 -65.126.0.0/19 209 -65.126.32.0/21 209 -65.126.40.0/24 36159 -65.126.41.0/24 209 -65.126.42.0/23 209 -65.126.44.0/22 209 -65.126.48.0/20 209 -65.126.64.0/21 209 -65.126.72.0/22 209 -65.126.76.0/23 209 -65.126.78.0/24 14844 -65.126.79.0/24 209 -65.126.80.0/20 209 -65.126.96.0/20 209 -65.126.112.0/21 36515 -65.126.120.0/22 209 -65.126.124.0/24 27178 -65.126.125.0/24 11633 -65.126.126.0/23 209 -65.126.128.0/20 209 -65.126.144.0/22 209 -65.126.148.0/23 209 -65.126.150.0/23 22035 -65.126.152.0/24 63111 -65.126.153.0/24 209 -65.126.154.0/23 209 -65.126.156.0/22 209 -65.126.160.0/20 209 -65.126.176.0/24 393643 -65.126.177.0/24 209 -65.126.178.0/23 209 -65.126.180.0/24 8444 -65.126.181.0/24 209 -65.126.182.0/23 209 -65.126.184.0/21 209 -65.126.192.0/19 209 -65.126.224.0/21 209 -65.126.232.0/22 209 -65.126.236.0/22 27516 -65.126.240.0/22 209 -65.126.244.0/24 23340 -65.126.245.0/24 209 -65.126.246.0/23 209 -65.126.248.0/21 209 -65.127.0.0/20 209 -65.127.16.0/23 209 -65.127.18.0/23 1818 -65.127.20.0/22 209 -65.127.24.0/21 209 -65.127.32.0/19 209 -65.127.64.0/19 209 -65.127.96.0/23 209 -65.127.98.0/24 209 -65.127.99.0/24 32571 -65.127.100.0/23 2707 -65.127.102.0/23 209 -65.127.104.0/21 209 -65.127.112.0/20 209 -65.127.128.0/24 54111 -65.127.129.0/24 26955 -65.127.130.0/24 16756 -65.127.131.0/24 209 -65.127.132.0/22 209 -65.127.136.0/22 209 -65.127.140.0/24 706 -65.127.141.0/24 26062 -65.127.142.0/24 19604 -65.127.143.0/24 19603 -65.127.144.0/20 209 -65.127.160.0/23 209 -65.127.162.0/24 209 -65.127.163.0/24 15257 -65.127.164.0/22 209 -65.127.168.0/21 209 -65.127.176.0/20 209 -65.127.192.0/20 209 -65.127.208.0/22 209 -65.127.212.0/23 209 -65.127.214.0/24 12165 -65.127.215.0/24 209 -65.127.216.0/22 209 -65.127.220.0/23 10886 -65.127.222.0/23 209 -65.127.224.0/20 209 -65.127.240.0/22 209 -65.127.244.0/24 209 -65.127.245.0/24 22621 -65.127.246.0/23 209 -65.127.248.0/22 209 -65.127.252.0/23 209 -65.127.254.0/24 55261 -65.127.255.0/24 209 -65.128.0.0/14 209 -65.132.0.0/21 209 -65.132.8.0/23 209 -65.132.10.0/24 394423 -65.132.11.0/24 209 -65.132.12.0/22 209 -65.132.16.0/20 209 -65.132.32.0/21 209 -65.132.40.0/24 394972 -65.132.41.0/24 209 -65.132.42.0/23 209 -65.132.44.0/22 209 -65.132.48.0/20 209 -65.132.64.0/18 209 -65.132.128.0/18 209 -65.132.192.0/22 209 -65.132.196.0/24 209 -65.132.197.0/24 394704 -65.132.198.0/23 209 -65.132.200.0/21 209 -65.132.208.0/20 209 -65.132.224.0/19 209 -65.133.0.0/16 209 -65.134.0.0/15 209 -65.136.0.0/13 209 -65.144.0.0/21 209 -65.144.8.0/22 209 -65.144.12.0/24 26341 -65.144.13.0/24 209 -65.144.14.0/23 209 -65.144.16.0/20 209 -65.144.32.0/19 209 -65.144.64.0/21 209 -65.144.72.0/24 209 -65.144.73.0/24 397524 -65.144.74.0/23 209 -65.144.76.0/22 209 -65.144.80.0/20 209 -65.144.96.0/20 209 -65.144.112.0/21 209 -65.144.120.0/22 209 -65.144.124.0/24 6223 -65.144.125.0/24 209 -65.144.126.0/23 209 -65.144.128.0/18 209 -65.144.192.0/19 209 -65.144.224.0/22 209 -65.144.228.0/24 209 -65.144.229.0/24 395562 -65.144.230.0/23 209 -65.144.232.0/21 209 -65.144.240.0/20 209 -65.145.0.0/16 209 -65.146.0.0/15 209 -65.148.0.0/19 209 -65.148.32.0/24 209 -65.148.33.0/24 3910 -65.148.34.0/23 209 -65.148.36.0/22 209 -65.148.40.0/21 209 -65.148.48.0/20 209 -65.148.64.0/18 209 -65.148.128.0/17 209 -65.149.0.0/16 209 -65.150.0.0/16 209 -65.151.0.0/23 395505 -65.151.2.0/24 394515 -65.151.3.0/24 209 -65.151.4.0/22 209 -65.151.8.0/24 209 -65.151.9.0/24 40835 -65.151.10.0/24 209 -65.151.11.0/24 40835 -65.151.12.0/22 209 -65.151.16.0/24 209 -65.151.17.0/24 47094 -65.151.18.0/23 209 -65.151.20.0/22 209 -65.151.24.0/24 209 -65.151.25.0/24 32561 -65.151.26.0/23 209 -65.151.28.0/24 395531 -65.151.29.0/24 395736 -65.151.30.0/23 209 -65.151.32.0/23 209 -65.151.34.0/24 209 -65.151.35.0/24 395891 -65.151.36.0/22 209 -65.151.40.0/22 209 -65.151.44.0/24 209 -65.151.45.0/24 47094 -65.151.46.0/23 209 -65.151.48.0/20 209 -65.151.64.0/18 209 -65.151.128.0/20 6640 -65.151.144.0/21 6640 -65.151.152.0/22 6640 -65.151.156.0/23 6640 -65.151.158.0/23 209 -65.151.160.0/19 6640 -65.151.192.0/19 6640 -65.151.224.0/23 6640 -65.151.226.0/23 209 -65.151.228.0/22 209 -65.151.232.0/21 209 -65.151.240.0/20 209 -65.152.0.0/18 209 -65.152.64.0/19 209 -65.152.96.0/21 209 -65.152.104.0/24 209 -65.152.105.0/24 22794 -65.152.106.0/23 209 -65.152.108.0/22 209 -65.152.112.0/20 209 -65.152.128.0/21 209 -65.152.136.0/24 209 -65.152.137.0/24 394929 -65.152.138.0/23 209 -65.152.140.0/22 209 -65.152.144.0/21 209 -65.152.152.0/24 209 -65.152.153.0/24 11651 -65.152.154.0/23 209 -65.152.156.0/22 209 -65.152.160.0/19 209 -65.152.192.0/20 209 -65.152.208.0/21 209 -65.152.216.0/24 209 -65.152.217.0/24 36652 -65.152.218.0/23 209 -65.152.220.0/22 209 -65.152.224.0/19 209 -65.153.0.0/19 209 -65.153.32.0/21 209 -65.153.40.0/23 209 -65.153.42.0/24 22794 -65.153.43.0/24 209 -65.153.44.0/22 209 -65.153.48.0/21 209 -65.153.56.0/24 40026 -65.153.57.0/24 209 -65.153.58.0/23 209 -65.153.60.0/24 27195 -65.153.61.0/24 209 -65.153.62.0/23 209 -65.153.64.0/20 209 -65.153.80.0/21 209 -65.153.88.0/24 395920 -65.153.89.0/24 395915 -65.153.90.0/23 209 -65.153.92.0/22 209 -65.153.96.0/20 209 -65.153.112.0/23 209 -65.153.114.0/24 63415 -65.153.115.0/24 209 -65.153.116.0/24 62478 -65.153.117.0/24 209 -65.153.118.0/23 209 -65.153.120.0/21 209 -65.153.128.0/21 209 -65.153.136.0/23 209 -65.153.138.0/24 40806 -65.153.139.0/24 209 -65.153.140.0/22 209 -65.153.144.0/20 209 -65.153.160.0/19 209 -65.153.192.0/18 209 -65.154.0.0/21 209 -65.154.8.0/22 209 -65.154.12.0/23 209 -65.154.14.0/24 209 -65.154.15.0/24 395702 -65.154.16.0/21 209 -65.154.24.0/24 395562 -65.154.25.0/24 209 -65.154.26.0/23 209 -65.154.28.0/22 209 -65.154.32.0/20 209 -65.154.48.0/22 209 -65.154.52.0/24 209 -65.154.53.0/24 395654 -65.154.54.0/23 209 -65.154.56.0/21 209 -65.154.64.0/21 209 -65.154.72.0/24 209 -65.154.73.0/24 62773 -65.154.74.0/23 209 -65.154.76.0/22 209 -65.154.80.0/20 209 -65.154.96.0/22 209 -65.154.100.0/24 209 -65.154.101.0/24 35840 -65.154.102.0/23 209 -65.154.104.0/22 209 -65.154.108.0/23 209 -65.154.110.0/24 209 -65.154.111.0/24 395918 -65.154.112.0/20 209 -65.154.128.0/19 209 -65.154.160.0/22 209 -65.154.164.0/23 209 -65.154.166.0/24 209 -65.154.167.0/24 19357 -65.154.168.0/21 209 -65.154.176.0/20 209 -65.154.192.0/19 209 -65.154.224.0/23 209 -65.154.226.0/24 54538 -65.154.227.0/24 209 -65.154.228.0/22 209 -65.154.232.0/23 209 -65.154.234.0/24 3910 -65.154.235.0/24 209 -65.154.236.0/22 209 -65.154.240.0/21 209 -65.154.248.0/22 209 -65.154.252.0/23 209 -65.154.254.0/24 209 -65.154.255.0/24 40222 -65.155.0.0/20 209 -65.155.16.0/21 209 -65.155.24.0/22 209 -65.155.28.0/23 209 -65.155.30.0/24 64280 -65.155.31.0/24 209 -65.155.32.0/22 209 -65.155.36.0/24 22032 -65.155.37.0/24 209 -65.155.38.0/24 54538 -65.155.39.0/24 209 -65.155.40.0/23 209 -65.155.42.0/24 63443 -65.155.43.0/24 209 -65.155.44.0/22 209 -65.155.48.0/20 209 -65.155.64.0/19 209 -65.155.96.0/20 209 -65.155.112.0/22 209 -65.155.116.0/23 209 -65.155.118.0/24 209 -65.155.119.0/24 393917 -65.155.120.0/21 209 -65.155.128.0/22 209 -65.155.132.0/23 209 -65.155.134.0/24 209 -65.155.135.0/24 10695 -65.155.136.0/21 209 -65.155.144.0/20 209 -65.155.160.0/19 209 -65.155.192.0/18 209 -65.156.0.0/23 393658 -65.156.2.0/23 209 -65.156.4.0/22 209 -65.156.8.0/21 209 -65.156.16.0/20 209 -65.156.32.0/19 209 -65.156.64.0/18 209 -65.156.128.0/18 209 -65.156.192.0/19 209 -65.156.224.0/23 209 -65.156.226.0/24 209 -65.156.227.0/24 13443 -65.156.228.0/22 209 -65.156.232.0/21 209 -65.156.240.0/20 209 -65.157.0.0/16 209 -65.158.0.0/20 209 -65.158.16.0/21 209 -65.158.24.0/22 209 -65.158.28.0/23 209 -65.158.30.0/24 3910 -65.158.31.0/24 209 -65.158.32.0/20 209 -65.158.48.0/21 209 -65.158.56.0/24 10753 -65.158.57.0/24 209 -65.158.58.0/23 209 -65.158.60.0/22 209 -65.158.64.0/18 209 -65.158.128.0/19 209 -65.158.160.0/24 394789 -65.158.161.0/24 209 -65.158.162.0/23 209 -65.158.164.0/22 209 -65.158.168.0/21 209 -65.158.176.0/22 209 -65.158.180.0/24 20940 -65.158.181.0/24 209 -65.158.182.0/23 209 -65.158.184.0/24 20940 -65.158.185.0/24 209 -65.158.186.0/24 395290 -65.158.187.0/24 209 -65.158.188.0/22 209 -65.158.192.0/24 209 -65.158.193.0/24 32385 -65.158.194.0/23 209 -65.158.196.0/22 209 -65.158.200.0/21 209 -65.158.208.0/20 209 -65.158.224.0/19 209 -65.159.0.0/16 209 -65.160.0.0/20 1239 -65.160.16.0/20 11398 -65.160.32.0/20 1239 -65.160.48.0/23 1239 -65.160.50.0/24 395576 -65.160.51.0/24 1239 -65.160.52.0/22 1239 -65.160.56.0/24 1239 -65.160.57.0/24 13607 -65.160.58.0/23 1239 -65.160.60.0/22 1239 -65.160.64.0/20 1239 -65.160.80.0/21 1239 -65.160.88.0/23 1239 -65.160.90.0/24 1239 -65.160.91.0/24 25909 -65.160.92.0/22 1239 -65.160.96.0/19 1239 -65.160.128.0/18 1239 -65.160.192.0/19 1239 -65.160.224.0/22 19893 -65.160.228.0/24 19893 -65.160.229.0/24 63284 -65.160.230.0/23 19893 -65.160.232.0/22 19893 -65.160.236.0/23 19893 -65.160.238.0/24 19893 -65.160.239.0/24 1239 -65.160.240.0/23 1239 -65.160.242.0/23 16586 -65.160.244.0/23 1239 -65.160.246.0/24 1239 -65.160.247.0/24 20411 -65.160.248.0/21 1239 -65.161.0.0/20 1239 -65.161.16.0/21 1239 -65.161.24.0/24 1239 -65.161.25.0/24 18529 -65.161.26.0/23 1239 -65.161.28.0/23 1239 -65.161.30.0/24 40370 -65.161.31.0/24 1239 -65.161.32.0/24 1239 -65.161.33.0/24 397099 -65.161.34.0/23 1239 -65.161.36.0/22 1239 -65.161.40.0/21 1239 -65.161.48.0/20 1239 -65.161.64.0/19 1239 -65.161.96.0/21 1239 -65.161.104.0/22 1239 -65.161.108.0/23 1239 -65.161.110.0/24 1239 -65.161.111.0/24 23045 -65.161.112.0/22 1239 -65.161.116.0/22 36827 -65.161.120.0/21 1239 -65.161.128.0/24 1239 -65.161.129.0/24 19248 -65.161.130.0/23 1239 -65.161.132.0/22 1239 -65.161.136.0/21 1239 -65.161.144.0/20 1239 -65.161.160.0/20 1239 -65.161.176.0/22 1239 -65.161.180.0/23 17046 -65.161.182.0/23 1239 -65.161.184.0/21 1239 -65.161.192.0/21 1239 -65.161.200.0/22 1239 -65.161.204.0/23 1239 -65.161.206.0/23 32614 -65.161.208.0/20 1239 -65.161.224.0/19 1239 -65.162.0.0/21 1239 -65.162.8.0/23 1239 -65.162.10.0/24 27619 -65.162.11.0/24 1239 -65.162.12.0/22 1239 -65.162.16.0/20 1239 -65.162.32.0/21 1239 -65.162.40.0/24 14828 -65.162.41.0/24 62759 -65.162.42.0/23 14828 -65.162.44.0/23 14828 -65.162.46.0/23 62759 -65.162.48.0/20 1239 -65.162.64.0/21 1239 -65.162.72.0/24 18618 -65.162.73.0/24 16823 -65.162.74.0/23 1239 -65.162.76.0/22 1239 -65.162.80.0/20 1239 -65.162.96.0/20 1239 -65.162.112.0/20 11398 -65.162.128.0/19 1239 -65.162.160.0/21 1239 -65.162.168.0/22 1239 -65.162.172.0/24 19783 -65.162.173.0/24 1239 -65.162.174.0/23 1239 -65.162.176.0/21 1239 -65.162.184.0/23 30873 -65.162.186.0/24 5778 -65.162.187.0/24 1239 -65.162.188.0/22 1239 -65.162.192.0/22 23338 -65.162.196.0/22 1239 -65.162.200.0/23 5778 -65.162.202.0/24 209 -65.162.203.0/24 5778 -65.162.204.0/22 1239 -65.162.208.0/20 1239 -65.162.224.0/19 1239 -65.163.0.0/22 1239 -65.163.4.0/23 1239 -65.163.6.0/23 7381 -65.163.8.0/21 1239 -65.163.16.0/21 1239 -65.163.24.0/23 1239 -65.163.26.0/24 7381 -65.163.27.0/24 23280 -65.163.28.0/22 1239 -65.163.32.0/20 1239 -65.163.48.0/21 1239 -65.163.56.0/22 1239 -65.163.60.0/23 1239 -65.163.62.0/23 13776 -65.163.64.0/20 1239 -65.163.80.0/24 26556 -65.163.81.0/24 1239 -65.163.82.0/23 1239 -65.163.84.0/22 1239 -65.163.88.0/21 1239 -65.163.96.0/20 1239 -65.163.112.0/20 19201 -65.163.128.0/19 1239 -65.163.160.0/22 1239 -65.163.164.0/24 17054 -65.163.165.0/24 1239 -65.163.166.0/23 1239 -65.163.168.0/21 1239 -65.163.176.0/22 1239 -65.163.180.0/23 1239 -65.163.182.0/24 1239 -65.163.183.0/24 25633 -65.163.184.0/21 1239 -65.163.192.0/24 1239 -65.163.193.0/24 29717 -65.163.194.0/23 1239 -65.163.196.0/22 1239 -65.163.200.0/21 1239 -65.163.208.0/20 1239 -65.163.224.0/21 1239 -65.163.232.0/24 393448 -65.163.233.0/24 1239 -65.163.234.0/23 1239 -65.163.236.0/22 1239 -65.163.240.0/22 1239 -65.163.244.0/23 7381 -65.163.246.0/23 1239 -65.163.248.0/21 1239 -65.164.0.0/20 1239 -65.164.16.0/22 209 -65.164.20.0/23 209 -65.164.22.0/23 6222 -65.164.24.0/21 1239 -65.164.32.0/21 1239 -65.164.40.0/23 54246 -65.164.42.0/24 1239 -65.164.43.0/24 32833 -65.164.44.0/23 1239 -65.164.46.0/24 1239 -65.164.47.0/24 2828 -65.164.48.0/22 1239 -65.164.52.0/24 1239 -65.164.53.0/24 20282 -65.164.54.0/23 1239 -65.164.56.0/21 1239 -65.164.64.0/19 1239 -65.164.96.0/21 1239 -65.164.104.0/24 27288 -65.164.105.0/24 1239 -65.164.106.0/23 1239 -65.164.108.0/22 26556 -65.164.112.0/20 1239 -65.164.128.0/20 1239 -65.164.144.0/22 1239 -65.164.148.0/22 27696 -65.164.152.0/22 1239 -65.164.156.0/24 1239 -65.164.157.0/24 26709 -65.164.158.0/23 1239 -65.164.160.0/22 1239 -65.164.164.0/23 1239 -65.164.166.0/24 1239 -65.164.167.0/24 20127 -65.164.168.0/22 1239 -65.164.172.0/22 11708 -65.164.176.0/24 1239 -65.164.177.0/24 30111 -65.164.178.0/23 1239 -65.164.180.0/22 1239 -65.164.184.0/21 1239 -65.164.192.0/21 1239 -65.164.200.0/24 6222 -65.164.201.0/24 18494 -65.164.202.0/24 209 -65.164.203.0/24 6222 -65.164.204.0/24 6222 -65.164.205.0/24 209 -65.164.206.0/23 6222 -65.164.208.0/21 1239 -65.164.216.0/22 1239 -65.164.220.0/24 1239 -65.164.221.0/24 31744 -65.164.222.0/23 1239 -65.164.224.0/22 1239 -65.164.228.0/23 1239 -65.164.230.0/24 1239 -65.164.231.0/24 13776 -65.164.232.0/21 1239 -65.164.240.0/21 1239 -65.164.248.0/22 1239 -65.164.252.0/24 11819 -65.164.253.0/24 1239 -65.164.254.0/23 1239 -65.165.0.0/22 1239 -65.165.4.0/23 7381 -65.165.6.0/23 1239 -65.165.8.0/24 1239 -65.165.9.0/24 397924 -65.165.10.0/23 1239 -65.165.12.0/22 1239 -65.165.16.0/20 1239 -65.165.32.0/21 1239 -65.165.40.0/21 16747 -65.165.48.0/20 1239 -65.165.64.0/18 1239 -65.165.128.0/19 1239 -65.165.160.0/22 1239 -65.165.164.0/22 18632 -65.165.168.0/21 1239 -65.165.176.0/20 1239 -65.165.192.0/22 1239 -65.165.196.0/24 397461 -65.165.197.0/24 1239 -65.165.198.0/23 1239 -65.165.200.0/21 1239 -65.165.208.0/20 1239 -65.165.224.0/19 1239 -65.166.0.0/24 12115 -65.166.1.0/24 1239 -65.166.2.0/23 1239 -65.166.4.0/22 1239 -65.166.8.0/23 209 -65.166.10.0/23 1239 -65.166.12.0/22 1239 -65.166.16.0/24 20396 -65.166.17.0/24 1239 -65.166.18.0/23 1239 -65.166.20.0/23 1239 -65.166.22.0/24 15251 -65.166.23.0/24 1239 -65.166.24.0/21 1239 -65.166.32.0/19 1239 -65.166.64.0/23 1239 -65.166.66.0/24 27521 -65.166.67.0/24 1239 -65.166.68.0/22 1239 -65.166.72.0/21 1239 -65.166.80.0/20 1239 -65.166.96.0/20 1239 -65.166.112.0/21 12241 -65.166.120.0/23 1239 -65.166.122.0/24 1239 -65.166.123.0/24 15227 -65.166.124.0/22 1239 -65.166.128.0/21 1239 -65.166.136.0/24 20081 -65.166.137.0/24 1239 -65.166.138.0/23 1239 -65.166.140.0/22 1239 -65.166.144.0/20 1239 -65.166.160.0/21 1239 -65.166.168.0/22 13776 -65.166.172.0/22 1239 -65.166.176.0/22 1239 -65.166.180.0/24 395800 -65.166.181.0/24 1239 -65.166.182.0/23 1239 -65.166.184.0/21 1239 -65.166.192.0/21 1239 -65.166.200.0/24 19772 -65.166.201.0/24 1239 -65.166.202.0/23 1239 -65.166.204.0/22 1239 -65.166.208.0/20 1239 -65.166.224.0/20 1239 -65.166.240.0/21 14813 -65.166.248.0/23 1239 -65.166.250.0/24 32926 -65.166.251.0/24 1239 -65.166.252.0/22 1239 -65.167.0.0/20 1239 -65.167.16.0/22 1239 -65.167.20.0/23 1239 -65.167.22.0/23 26556 -65.167.24.0/21 1239 -65.167.32.0/21 1239 -65.167.40.0/21 26724 -65.167.48.0/20 19429 -65.167.64.0/22 1239 -65.167.68.0/22 13866 -65.167.72.0/21 1239 -65.167.80.0/20 19429 -65.167.96.0/22 1239 -65.167.100.0/24 10507 -65.167.101.0/24 1239 -65.167.102.0/23 1239 -65.167.104.0/21 1239 -65.167.112.0/21 1239 -65.167.120.0/22 1239 -65.167.124.0/24 40432 -65.167.125.0/24 1239 -65.167.126.0/23 1239 -65.167.128.0/20 1239 -65.167.144.0/23 1239 -65.167.146.0/24 1239 -65.167.147.0/24 6318 -65.167.148.0/22 1239 -65.167.152.0/22 12241 -65.167.156.0/22 1239 -65.167.160.0/19 1239 -65.167.192.0/24 1239 -65.167.193.0/24 5778 -65.167.194.0/23 1239 -65.167.196.0/22 1239 -65.167.200.0/21 1239 -65.167.208.0/23 32091 -65.167.210.0/24 26536 -65.167.211.0/24 1239 -65.167.212.0/22 1239 -65.167.216.0/21 1239 -65.167.224.0/24 1239 -65.167.225.0/24 30457 -65.167.226.0/23 9751 -65.167.228.0/22 1239 -65.167.232.0/21 1239 -65.167.240.0/20 1239 -65.168.0.0/20 1239 -65.168.16.0/22 20081 -65.168.20.0/22 1239 -65.168.24.0/21 1239 -65.168.32.0/24 1239 -65.168.33.0/24 6103 -65.168.34.0/23 1239 -65.168.36.0/22 1239 -65.168.40.0/21 1239 -65.168.48.0/20 1239 -65.168.64.0/21 18435 -65.168.72.0/21 1239 -65.168.80.0/20 1239 -65.168.96.0/19 1239 -65.168.128.0/20 1239 -65.168.144.0/24 1239 -65.168.145.0/24 7029 -65.168.146.0/23 1239 -65.168.148.0/22 1239 -65.168.152.0/21 1239 -65.168.160.0/19 1239 -65.168.192.0/19 1239 -65.168.224.0/22 1239 -65.168.228.0/23 14861 -65.168.230.0/23 1239 -65.168.232.0/23 1239 -65.168.234.0/24 40489 -65.168.235.0/24 1239 -65.168.236.0/22 1239 -65.168.240.0/21 1239 -65.168.248.0/22 1239 -65.168.252.0/23 1239 -65.168.254.0/23 7381 -65.169.0.0/22 1239 -65.169.4.0/23 1239 -65.169.6.0/23 62802 -65.169.8.0/22 1239 -65.169.12.0/23 1239 -65.169.14.0/24 1239 -65.169.15.0/24 20282 -65.169.16.0/20 1239 -65.169.32.0/22 1239 -65.169.36.0/23 1239 -65.169.38.0/23 20081 -65.169.40.0/21 1239 -65.169.48.0/20 1239 -65.169.64.0/23 397361 -65.169.66.0/24 397361 -65.169.67.0/24 18618 -65.169.68.0/24 16823 -65.169.69.0/24 18618 -65.169.70.0/23 18618 -65.169.72.0/22 1239 -65.169.76.0/24 22083 -65.169.77.0/24 1239 -65.169.78.0/23 1239 -65.169.80.0/20 1239 -65.169.96.0/19 1239 -65.169.128.0/20 1239 -65.169.144.0/24 17032 -65.169.145.0/24 1239 -65.169.146.0/23 1239 -65.169.148.0/22 1239 -65.169.152.0/22 1239 -65.169.156.0/24 33198 -65.169.157.0/24 1239 -65.169.158.0/24 1239 -65.169.159.0/24 27696 -65.169.160.0/21 1239 -65.169.168.0/24 1239 -65.169.169.0/24 25612 -65.169.170.0/23 1239 -65.169.172.0/22 1239 -65.169.176.0/20 1239 -65.169.192.0/20 1239 -65.169.208.0/21 1239 -65.169.216.0/24 25678 -65.169.217.0/24 1239 -65.169.218.0/23 1239 -65.169.220.0/22 1239 -65.169.224.0/20 1239 -65.169.240.0/21 1239 -65.169.248.0/23 1239 -65.169.250.0/24 22106 -65.169.251.0/24 1239 -65.169.252.0/22 1239 -65.170.0.0/22 1239 -65.170.4.0/23 12044 -65.170.6.0/23 1239 -65.170.8.0/21 1239 -65.170.16.0/20 1239 -65.170.32.0/24 1239 -65.170.33.0/24 1790 -65.170.34.0/23 1239 -65.170.36.0/22 1239 -65.170.40.0/24 1239 -65.170.41.0/24 36488 -65.170.42.0/23 1239 -65.170.44.0/22 1239 -65.170.48.0/20 1239 -65.170.64.0/20 1239 -65.170.80.0/22 1239 -65.170.84.0/23 1239 -65.170.86.0/23 13866 -65.170.88.0/21 1239 -65.170.96.0/20 1239 -65.170.112.0/21 1239 -65.170.120.0/23 1239 -65.170.122.0/24 46140 -65.170.123.0/24 1239 -65.170.124.0/22 1239 -65.170.128.0/19 1239 -65.170.160.0/22 14861 -65.170.164.0/23 14861 -65.170.166.0/23 1239 -65.170.168.0/22 1239 -65.170.172.0/23 1239 -65.170.174.0/24 1239 -65.170.175.0/24 29756 -65.170.176.0/20 1239 -65.170.192.0/20 1239 -65.170.208.0/21 1239 -65.170.216.0/24 1239 -65.170.217.0/24 23545 -65.170.218.0/24 3549 -65.170.219.0/24 1239 -65.170.220.0/22 1239 -65.170.224.0/21 1239 -65.170.232.0/22 26724 -65.170.236.0/22 1239 -65.170.240.0/20 1239 -65.171.0.0/22 1239 -65.171.4.0/22 40157 -65.171.8.0/21 1239 -65.171.16.0/20 1239 -65.171.32.0/19 1239 -65.171.64.0/20 1239 -65.171.80.0/21 14574 -65.171.88.0/21 1239 -65.171.96.0/23 1239 -65.171.98.0/24 16705 -65.171.99.0/24 1239 -65.171.100.0/22 1239 -65.171.104.0/21 1239 -65.171.112.0/20 1239 -65.171.128.0/19 1239 -65.171.160.0/20 1239 -65.171.176.0/21 14991 -65.171.184.0/21 1239 -65.171.192.0/19 1239 -65.171.224.0/22 1239 -65.171.228.0/24 1239 -65.171.229.0/24 7381 -65.171.230.0/23 1239 -65.171.232.0/21 1239 -65.171.240.0/20 1239 -65.172.0.0/20 1239 -65.172.16.0/21 1239 -65.172.24.0/22 14813 -65.172.28.0/23 23391 -65.172.30.0/23 1239 -65.172.32.0/22 1239 -65.172.36.0/23 1239 -65.172.38.0/24 1239 -65.172.39.0/24 46131 -65.172.40.0/21 1239 -65.172.48.0/22 27696 -65.172.52.0/23 1239 -65.172.54.0/24 1647 -65.172.55.0/24 1239 -65.172.56.0/21 1239 -65.172.64.0/21 1239 -65.172.72.0/23 18632 -65.172.74.0/23 1239 -65.172.76.0/22 1239 -65.172.80.0/20 1239 -65.172.96.0/19 1239 -65.172.128.0/20 1239 -65.172.144.0/22 1239 -65.172.148.0/24 36517 -65.172.149.0/24 1239 -65.172.150.0/23 1239 -65.172.152.0/21 1239 -65.172.160.0/19 1239 -65.172.192.0/19 1239 -65.172.224.0/20 1239 -65.172.240.0/22 15065 -65.172.244.0/22 18435 -65.172.248.0/22 1239 -65.172.252.0/22 40157 -65.173.0.0/18 1239 -65.173.64.0/22 11398 -65.173.68.0/22 209 -65.173.72.0/22 5778 -65.173.76.0/22 209 -65.173.80.0/22 209 -65.173.84.0/23 209 -65.173.86.0/24 209 -65.173.87.0/24 11398 -65.173.88.0/23 11398 -65.173.90.0/23 209 -65.173.92.0/22 209 -65.173.96.0/21 1239 -65.173.104.0/22 19201 -65.173.108.0/23 396139 -65.173.110.0/23 18618 -65.173.112.0/20 1239 -65.173.128.0/18 1239 -65.173.192.0/20 1239 -65.173.208.0/23 1239 -65.173.210.0/24 1239 -65.173.211.0/24 6157 -65.173.212.0/22 1239 -65.173.216.0/21 1239 -65.173.224.0/19 1239 -65.174.0.0/18 1239 -65.174.64.0/23 1239 -65.174.66.0/24 12217 -65.174.67.0/24 1239 -65.174.68.0/22 1239 -65.174.72.0/21 1239 -65.174.80.0/20 1239 -65.174.96.0/20 1239 -65.174.112.0/21 1239 -65.174.120.0/23 1239 -65.174.122.0/24 5778 -65.174.123.0/24 1239 -65.174.124.0/22 1239 -65.174.128.0/19 1239 -65.174.160.0/22 209 -65.174.164.0/22 1239 -65.174.168.0/24 1239 -65.174.169.0/24 4972 -65.174.170.0/23 1239 -65.174.172.0/22 1239 -65.174.176.0/20 1239 -65.174.192.0/24 31920 -65.174.193.0/24 1239 -65.174.194.0/23 1239 -65.174.196.0/22 1239 -65.174.200.0/21 1239 -65.174.208.0/21 1239 -65.174.216.0/22 1239 -65.174.220.0/24 25612 -65.174.221.0/24 1239 -65.174.222.0/23 1239 -65.174.224.0/24 1239 -65.174.225.0/24 14648 -65.174.226.0/23 1239 -65.174.228.0/22 1239 -65.174.232.0/21 1239 -65.174.240.0/21 1239 -65.174.248.0/22 1239 -65.174.252.0/24 32692 -65.174.253.0/24 1239 -65.174.254.0/23 1239 -65.175.0.0/23 3257 -65.175.2.0/24 17378 -65.175.3.0/24 174 -65.175.4.0/23 3257 -65.175.6.0/24 3257 -65.175.7.0/24 20206 -65.175.8.0/21 3257 -65.175.16.0/21 3257 -65.175.24.0/23 3257 -65.175.26.0/23 23029 -65.175.28.0/22 3257 -65.175.32.0/22 3257 -65.175.36.0/23 3257 -65.175.38.0/24 17352 -65.175.39.0/24 3257 -65.175.40.0/22 3257 -65.175.44.0/24 19811 -65.175.45.0/24 3257 -65.175.46.0/23 3257 -65.175.48.0/23 3257 -65.175.50.0/24 36853 -65.175.51.0/24 3257 -65.175.52.0/24 17074 -65.175.53.0/24 3257 -65.175.54.0/23 3257 -65.175.56.0/21 3257 -65.175.64.0/18 7393 -65.175.128.0/17 32448 -65.181.32.0/20 22684 -65.181.48.0/23 29933 -65.181.50.0/24 11475 -65.181.51.0/24 29933 -65.181.52.0/22 29933 -65.181.56.0/23 29933 -65.181.58.0/24 40505 -65.181.59.0/24 29933 -65.181.60.0/22 29933 -65.181.64.0/18 25653 -65.181.128.0/18 7859 -65.181.192.0/22 11492 -65.181.197.0/24 11492 -65.181.198.0/23 11492 -65.181.200.0/23 11492 -65.181.203.0/24 11492 -65.181.204.0/24 11492 -65.181.209.0/24 11492 -65.181.210.0/23 11492 -65.181.212.0/22 11492 -65.181.216.0/24 11492 -65.181.218.0/23 11492 -65.181.220.0/24 11492 -65.181.222.0/23 11492 -65.181.224.0/21 11492 -65.181.232.0/24 11492 -65.181.234.0/23 11492 -65.181.236.0/22 11492 -65.181.240.0/21 11492 -65.181.248.0/22 11492 -65.181.252.0/23 11492 -65.181.254.0/24 11492 -65.182.0.0/22 23383 -65.182.4.0/23 23383 -65.182.6.0/24 23383 -65.182.7.0/24 20299 -65.182.8.0/24 20299 -65.182.10.0/24 27773 -65.182.11.0/24 3790 -65.182.30.0/24 3790 -65.182.31.0/24 20299 -65.182.32.0/19 31939 -65.182.64.0/19 13693 -65.182.96.0/20 33055 -65.182.112.0/20 20238 -65.182.128.0/20 33067 -65.182.144.0/20 14859 -65.182.160.0/22 22458 -65.182.164.0/23 22458 -65.182.166.0/23 14872 -65.182.168.0/21 22458 -65.182.176.0/21 22458 -65.182.184.0/24 22458 -65.182.185.0/24 14872 -65.182.186.0/23 22458 -65.182.188.0/22 22458 -65.182.192.0/19 20021 -65.182.224.0/19 33470 -65.183.0.0/20 30689 -65.183.24.0/23 19623 -65.183.26.0/24 19623 -65.183.27.0/24 19668 -65.183.32.0/19 11942 -65.183.64.0/20 6582 -65.183.80.0/24 31904 -65.183.81.0/24 6582 -65.183.82.0/23 6582 -65.183.84.0/22 6582 -65.183.88.0/21 6582 -65.183.96.0/23 17253 -65.183.98.0/24 17253 -65.183.99.0/24 32126 -65.183.100.0/22 17253 -65.183.104.0/21 17253 -65.183.112.0/20 17253 -65.183.128.0/20 33604 -65.183.144.0/21 33604 -65.183.152.0/22 33604 -65.183.156.0/23 33604 -65.183.158.0/24 33604 -65.183.159.0/24 12107 -65.183.160.0/21 12129 -65.183.168.0/22 12129 -65.183.172.0/24 33418 -65.183.173.0/24 12129 -65.183.174.0/23 12129 -65.183.176.0/21 12129 -65.183.184.0/22 12129 -65.183.188.0/24 22379 -65.183.189.0/24 12129 -65.183.190.0/23 12129 -65.183.192.0/19 11404 -65.183.224.0/19 15267 -65.184.0.0/16 11426 -65.185.0.0/17 10796 -65.185.144.0/20 10796 -65.185.160.0/19 10796 -65.185.192.0/19 16787 -65.185.232.0/22 7843 -65.185.239.0/24 16787 -65.185.241.0/24 7843 -65.185.242.0/24 10796 -65.185.243.0/24 14065 -65.185.244.0/24 11351 -65.185.245.0/24 7843 -65.185.247.0/24 11427 -65.185.254.0/23 20001 -65.186.0.0/17 10796 -65.186.160.0/19 10796 -65.186.192.0/19 10796 -65.186.224.0/21 10796 -65.186.232.0/22 10796 -65.186.236.0/23 10796 -65.186.238.0/24 10796 -65.186.239.0/24 16787 -65.186.240.0/20 10796 -65.187.0.0/16 11426 -65.188.0.0/16 11426 -65.189.0.0/16 10796 -65.190.0.0/15 11426 -65.192.0.0/16 701 -65.193.0.0/20 701 -65.193.16.0/23 16747 -65.193.18.0/23 701 -65.193.20.0/22 701 -65.193.24.0/21 701 -65.193.32.0/19 701 -65.193.64.0/21 701 -65.193.72.0/22 701 -65.193.76.0/22 20472 -65.193.80.0/20 701 -65.193.96.0/19 701 -65.193.128.0/18 701 -65.193.192.0/20 701 -65.193.208.0/21 701 -65.193.216.0/22 7799 -65.193.220.0/22 701 -65.193.224.0/19 701 -65.194.0.0/17 701 -65.194.128.0/21 15227 -65.194.136.0/21 701 -65.194.144.0/20 701 -65.194.160.0/19 701 -65.194.192.0/20 701 -65.194.208.0/21 701 -65.194.216.0/22 701 -65.194.220.0/22 36279 -65.194.224.0/24 36279 -65.194.225.0/24 701 -65.194.226.0/23 701 -65.194.228.0/22 701 -65.194.232.0/21 701 -65.194.240.0/23 701 -65.194.242.0/24 701 -65.194.243.0/24 12098 -65.194.244.0/22 701 -65.194.248.0/21 701 -65.195.0.0/18 701 -65.195.64.0/19 701 -65.195.96.0/20 701 -65.195.112.0/21 701 -65.195.120.0/24 701 -65.195.121.0/24 21886 -65.195.122.0/23 701 -65.195.124.0/22 701 -65.195.128.0/22 701 -65.195.132.0/24 701 -65.195.133.0/24 19602 -65.195.134.0/23 701 -65.195.136.0/21 701 -65.195.144.0/20 701 -65.195.160.0/20 701 -65.195.176.0/22 701 -65.195.180.0/24 701 -65.195.181.0/24 705 -65.195.182.0/23 701 -65.195.184.0/21 701 -65.195.192.0/18 701 -65.196.0.0/22 701 -65.196.4.0/24 701 -65.196.5.0/24 30196 -65.196.6.0/24 701 -65.196.7.0/24 33699 -65.196.8.0/22 701 -65.196.12.0/24 53530 -65.196.13.0/24 701 -65.196.14.0/23 701 -65.196.16.0/20 701 -65.196.32.0/21 701 -65.196.40.0/22 701 -65.196.44.0/24 701 -65.196.45.0/24 36380 -65.196.46.0/24 701 -65.196.47.0/24 3455 -65.196.48.0/22 701 -65.196.52.0/24 701 -65.196.53.0/24 19641 -65.196.54.0/24 21975 -65.196.55.0/24 701 -65.196.56.0/22 701 -65.196.60.0/24 394930 -65.196.61.0/24 701 -65.196.62.0/23 701 -65.196.64.0/24 701 -65.196.65.0/24 29987 -65.196.66.0/23 701 -65.196.68.0/22 701 -65.196.72.0/21 701 -65.196.80.0/21 701 -65.196.88.0/22 701 -65.196.92.0/24 701 -65.196.93.0/24 54754 -65.196.94.0/23 701 -65.196.96.0/20 701 -65.196.112.0/21 701 -65.196.120.0/22 701 -65.196.124.0/23 701 -65.196.126.0/24 393988 -65.196.127.0/24 701 -65.196.128.0/21 701 -65.196.136.0/24 701 -65.196.137.0/24 18902 -65.196.138.0/24 46493 -65.196.139.0/24 54705 -65.196.140.0/23 701 -65.196.142.0/24 701 -65.196.143.0/24 14556 -65.196.144.0/22 701 -65.196.148.0/24 31824 -65.196.149.0/24 701 -65.196.150.0/23 701 -65.196.152.0/21 701 -65.196.160.0/22 701 -65.196.164.0/24 62697 -65.196.165.0/24 396941 -65.196.166.0/23 701 -65.196.168.0/23 701 -65.196.170.0/24 15092 -65.196.171.0/24 701 -65.196.172.0/22 701 -65.196.176.0/24 701 -65.196.177.0/24 6352 -65.196.178.0/23 701 -65.196.180.0/22 701 -65.196.184.0/22 701 -65.196.188.0/23 701 -65.196.190.0/24 701 -65.196.191.0/24 7310 -65.196.192.0/19 701 -65.196.224.0/20 701 -65.196.240.0/21 701 -65.196.248.0/22 701 -65.196.252.0/23 701 -65.196.254.0/24 701 -65.196.255.0/24 11933 -65.197.0.0/20 701 -65.197.16.0/23 701 -65.197.18.0/24 701 -65.197.19.0/24 13893 -65.197.20.0/23 701 -65.197.22.0/24 701 -65.197.23.0/24 7046 -65.197.24.0/21 701 -65.197.32.0/19 701 -65.197.64.0/18 701 -65.197.128.0/21 701 -65.197.136.0/24 701 -65.197.137.0/24 30211 -65.197.138.0/23 701 -65.197.140.0/22 701 -65.197.144.0/20 701 -65.197.160.0/22 701 -65.197.164.0/24 32869 -65.197.165.0/24 701 -65.197.166.0/23 701 -65.197.168.0/21 701 -65.197.176.0/20 701 -65.197.192.0/21 701 -65.197.200.0/22 701 -65.197.204.0/24 701 -65.197.205.0/24 21689 -65.197.206.0/23 701 -65.197.208.0/22 701 -65.197.212.0/23 701 -65.197.214.0/24 701 -65.197.215.0/24 33198 -65.197.216.0/24 12016 -65.197.217.0/24 701 -65.197.218.0/23 701 -65.197.220.0/24 11716 -65.197.221.0/24 701 -65.197.222.0/24 3356 -65.197.223.0/24 701 -65.197.224.0/22 701 -65.197.228.0/24 701 -65.197.229.0/24 16983 -65.197.230.0/23 701 -65.197.232.0/24 32790 -65.197.233.0/24 701 -65.197.234.0/24 22610 -65.197.235.0/24 701 -65.197.236.0/22 701 -65.197.240.0/23 701 -65.197.242.0/24 21942 -65.197.243.0/24 701 -65.197.244.0/22 701 -65.197.248.0/22 701 -65.197.252.0/23 701 -65.197.254.0/24 26282 -65.197.255.0/24 701 -65.198.0.0/20 701 -65.198.16.0/21 701 -65.198.24.0/24 701 -65.198.25.0/24 27468 -65.198.26.0/23 701 -65.198.28.0/22 701 -65.198.32.0/20 701 -65.198.48.0/20 12103 -65.198.64.0/21 701 -65.198.72.0/24 701 -65.198.73.0/24 40321 -65.198.74.0/23 701 -65.198.76.0/23 13518 -65.198.78.0/23 701 -65.198.80.0/22 19088 -65.198.84.0/23 701 -65.198.86.0/24 701 -65.198.87.0/24 4451 -65.198.88.0/21 701 -65.198.96.0/21 701 -65.198.104.0/22 701 -65.198.108.0/24 21726 -65.198.109.0/24 701 -65.198.110.0/23 701 -65.198.112.0/22 701 -65.198.116.0/23 701 -65.198.118.0/24 393370 -65.198.119.0/24 701 -65.198.120.0/21 701 -65.198.128.0/20 701 -65.198.144.0/21 701 -65.198.152.0/23 17305 -65.198.154.0/23 701 -65.198.156.0/22 701 -65.198.160.0/23 701 -65.198.162.0/24 701 -65.198.163.0/24 29729 -65.198.164.0/22 701 -65.198.168.0/21 701 -65.198.176.0/21 701 -65.198.184.0/22 701 -65.198.188.0/22 19885 -65.198.192.0/20 701 -65.198.208.0/21 8014 -65.198.216.0/21 701 -65.198.224.0/22 701 -65.198.228.0/23 701 -65.198.230.0/24 27781 -65.198.231.0/24 701 -65.198.232.0/24 701 -65.198.233.0/24 62987 -65.198.234.0/24 1661 -65.198.235.0/24 701 -65.198.236.0/24 32009 -65.198.237.0/24 19434 -65.198.238.0/23 701 -65.198.240.0/20 701 -65.199.0.0/21 15227 -65.199.8.0/21 701 -65.199.16.0/24 12087 -65.199.17.0/24 701 -65.199.18.0/24 12087 -65.199.19.0/24 701 -65.199.20.0/23 701 -65.199.22.0/23 714 -65.199.24.0/24 32982 -65.199.25.0/24 701 -65.199.26.0/24 701 -65.199.27.0/24 33094 -65.199.28.0/22 701 -65.199.32.0/22 701 -65.199.36.0/23 701 -65.199.38.0/24 701 -65.199.39.0/24 29874 -65.199.40.0/21 701 -65.199.48.0/20 701 -65.199.64.0/20 701 -65.199.80.0/21 701 -65.199.88.0/23 701 -65.199.90.0/24 701 -65.199.91.0/24 30211 -65.199.92.0/22 701 -65.199.96.0/19 701 -65.199.128.0/20 701 -65.199.144.0/22 701 -65.199.148.0/23 701 -65.199.150.0/23 30202 -65.199.152.0/24 16983 -65.199.153.0/24 701 -65.199.154.0/24 701 -65.199.155.0/24 14136 -65.199.156.0/22 701 -65.199.160.0/24 701 -65.199.161.0/24 40397 -65.199.162.0/23 701 -65.199.164.0/22 701 -65.199.168.0/21 701 -65.199.176.0/23 701 -65.199.178.0/24 32973 -65.199.179.0/24 701 -65.199.180.0/22 701 -65.199.184.0/22 701 -65.199.188.0/24 701 -65.199.189.0/24 25850 -65.199.190.0/23 701 -65.199.192.0/20 701 -65.199.208.0/24 701 -65.199.209.0/24 46639 -65.199.210.0/24 701 -65.199.211.0/24 23080 -65.199.212.0/22 701 -65.199.216.0/21 701 -65.199.224.0/20 701 -65.199.240.0/21 701 -65.199.248.0/22 701 -65.199.252.0/23 701 -65.199.254.0/24 33508 -65.199.255.0/24 701 -65.200.0.0/21 701 -65.200.8.0/22 701 -65.200.12.0/24 11160 -65.200.13.0/24 701 -65.200.14.0/23 701 -65.200.16.0/24 11196 -65.200.17.0/24 701 -65.200.18.0/23 701 -65.200.20.0/22 701 -65.200.24.0/23 701 -65.200.26.0/24 46601 -65.200.27.0/24 701 -65.200.28.0/23 701 -65.200.30.0/24 20400 -65.200.31.0/24 701 -65.200.32.0/24 701 -65.200.33.0/24 16455 -65.200.34.0/23 701 -65.200.36.0/22 701 -65.200.40.0/22 394976 -65.200.44.0/22 701 -65.200.48.0/24 20389 -65.200.49.0/24 701 -65.200.50.0/23 701 -65.200.52.0/22 701 -65.200.56.0/21 701 -65.200.64.0/24 701 -65.200.65.0/24 13782 -65.200.66.0/23 701 -65.200.68.0/22 701 -65.200.72.0/21 701 -65.200.80.0/20 701 -65.200.96.0/19 701 -65.200.128.0/22 701 -65.200.132.0/24 26772 -65.200.133.0/24 701 -65.200.134.0/23 701 -65.200.136.0/21 701 -65.200.144.0/22 701 -65.200.148.0/24 46533 -65.200.149.0/24 33242 -65.200.150.0/23 701 -65.200.152.0/21 701 -65.200.160.0/23 701 -65.200.162.0/24 13458 -65.200.163.0/24 701 -65.200.164.0/22 701 -65.200.168.0/24 701 -65.200.169.0/24 17056 -65.200.170.0/23 701 -65.200.172.0/23 701 -65.200.174.0/24 394689 -65.200.175.0/24 701 -65.200.176.0/24 701 -65.200.177.0/24 63433 -65.200.178.0/23 701 -65.200.180.0/22 701 -65.200.184.0/23 701 -65.200.186.0/24 54986 -65.200.187.0/24 701 -65.200.188.0/24 20287 -65.200.189.0/24 701 -65.200.190.0/23 701 -65.200.192.0/19 11486 -65.200.224.0/19 701 -65.201.0.0/20 701 -65.201.16.0/21 701 -65.201.24.0/23 701 -65.201.26.0/24 701 -65.201.27.0/24 19353 -65.201.28.0/22 701 -65.201.32.0/19 701 -65.201.64.0/18 701 -65.201.128.0/22 701 -65.201.132.0/23 701 -65.201.134.0/24 26282 -65.201.135.0/24 701 -65.201.136.0/22 701 -65.201.140.0/24 12087 -65.201.141.0/24 701 -65.201.142.0/23 701 -65.201.144.0/20 701 -65.201.160.0/22 701 -65.201.164.0/24 701 -65.201.165.0/24 16829 -65.201.166.0/23 701 -65.201.168.0/21 701 -65.201.176.0/20 701 -65.201.192.0/18 701 -65.202.0.0/21 701 -65.202.8.0/24 701 -65.202.9.0/24 14424 -65.202.10.0/23 701 -65.202.12.0/22 701 -65.202.16.0/21 701 -65.202.24.0/23 701 -65.202.26.0/24 26381 -65.202.27.0/24 701 -65.202.28.0/22 701 -65.202.32.0/23 701 -65.202.34.0/24 701 -65.202.35.0/24 15174 -65.202.36.0/22 701 -65.202.40.0/23 701 -65.202.42.0/24 701 -65.202.43.0/24 23239 -65.202.44.0/22 701 -65.202.48.0/24 26455 -65.202.49.0/24 701 -65.202.50.0/23 701 -65.202.52.0/22 701 -65.202.56.0/23 701 -65.202.58.0/24 701 -65.202.59.0/24 14248 -65.202.60.0/22 701 -65.202.64.0/22 20472 -65.202.68.0/24 701 -65.202.69.0/24 15572 -65.202.70.0/23 701 -65.202.72.0/21 701 -65.202.80.0/20 701 -65.202.96.0/23 14279 -65.202.98.0/24 46847 -65.202.99.0/24 701 -65.202.100.0/23 701 -65.202.102.0/24 701 -65.202.103.0/24 7045 -65.202.104.0/21 701 -65.202.112.0/23 701 -65.202.114.0/24 15572 -65.202.115.0/24 30563 -65.202.116.0/22 701 -65.202.120.0/22 701 -65.202.124.0/24 32894 -65.202.125.0/24 701 -65.202.126.0/23 701 -65.202.128.0/21 701 -65.202.136.0/22 701 -65.202.140.0/24 33717 -65.202.141.0/24 701 -65.202.142.0/23 701 -65.202.144.0/24 701 -65.202.145.0/24 46524 -65.202.146.0/23 701 -65.202.148.0/22 701 -65.202.152.0/21 701 -65.202.160.0/20 701 -65.202.176.0/22 701 -65.202.180.0/23 701 -65.202.182.0/24 54678 -65.202.183.0/24 701 -65.202.184.0/22 701 -65.202.188.0/23 701 -65.202.190.0/24 394839 -65.202.191.0/24 701 -65.202.192.0/23 701 -65.202.194.0/24 701 -65.202.195.0/24 395513 -65.202.196.0/22 701 -65.202.200.0/22 701 -65.202.204.0/23 701 -65.202.206.0/24 54883 -65.202.207.0/24 701 -65.202.208.0/21 701 -65.202.216.0/23 701 -65.202.218.0/24 701 -65.202.219.0/24 23396 -65.202.220.0/22 701 -65.202.224.0/21 701 -65.202.232.0/23 701 -65.202.234.0/24 54959 -65.202.235.0/24 701 -65.202.236.0/23 701 -65.202.238.0/24 701 -65.202.239.0/24 33278 -65.202.240.0/21 701 -65.202.248.0/22 701 -65.202.252.0/23 701 -65.202.254.0/24 701 -65.202.255.0/24 54959 -65.203.0.0/20 701 -65.203.16.0/22 36103 -65.203.20.0/22 701 -65.203.24.0/21 701 -65.203.32.0/19 701 -65.203.64.0/20 701 -65.203.80.0/22 701 -65.203.84.0/23 701 -65.203.86.0/24 33172 -65.203.87.0/24 701 -65.203.88.0/22 701 -65.203.92.0/24 701 -65.203.93.0/24 11057 -65.203.94.0/23 701 -65.203.96.0/21 701 -65.203.104.0/22 701 -65.203.108.0/24 701 -65.203.109.0/24 26507 -65.203.110.0/23 701 -65.203.112.0/20 701 -65.203.128.0/24 701 -65.203.129.0/24 22610 -65.203.130.0/23 701 -65.203.132.0/22 701 -65.203.136.0/21 701 -65.203.144.0/23 701 -65.203.146.0/23 1661 -65.203.148.0/23 701 -65.203.150.0/24 13782 -65.203.151.0/24 701 -65.203.152.0/21 701 -65.203.160.0/19 701 -65.203.192.0/19 701 -65.203.224.0/19 11486 -65.204.0.0/21 701 -65.204.8.0/22 701 -65.204.12.0/23 701 -65.204.14.0/24 14831 -65.204.15.0/24 701 -65.204.16.0/21 701 -65.204.24.0/24 32254 -65.204.25.0/24 701 -65.204.26.0/23 701 -65.204.28.0/22 701 -65.204.32.0/23 701 -65.204.34.0/24 19353 -65.204.35.0/24 701 -65.204.36.0/22 701 -65.204.40.0/21 701 -65.204.48.0/24 39960 -65.204.49.0/24 701 -65.204.50.0/23 701 -65.204.52.0/22 701 -65.204.56.0/21 701 -65.204.64.0/19 701 -65.204.96.0/20 701 -65.204.112.0/21 701 -65.204.120.0/24 394481 -65.204.121.0/24 701 -65.204.122.0/23 701 -65.204.124.0/22 701 -65.204.128.0/20 701 -65.204.144.0/22 701 -65.204.148.0/23 701 -65.204.150.0/24 7018 -65.204.151.0/24 701 -65.204.152.0/21 701 -65.204.160.0/22 701 -65.204.164.0/22 28502 -65.204.168.0/21 701 -65.204.176.0/21 701 -65.204.184.0/24 701 -65.204.185.0/24 13782 -65.204.186.0/23 701 -65.204.188.0/22 701 -65.204.192.0/19 701 -65.204.224.0/22 701 -65.204.228.0/24 701 -65.204.229.0/24 7384 -65.204.230.0/23 701 -65.204.232.0/21 701 -65.204.240.0/20 701 -65.205.0.0/22 701 -65.205.4.0/23 701 -65.205.6.0/24 701 -65.205.7.0/24 11347 -65.205.8.0/21 701 -65.205.16.0/23 701 -65.205.18.0/24 54959 -65.205.19.0/24 701 -65.205.20.0/22 701 -65.205.24.0/21 701 -65.205.32.0/24 701 -65.205.33.0/24 15572 -65.205.34.0/23 701 -65.205.36.0/22 701 -65.205.40.0/24 26341 -65.205.41.0/24 701 -65.205.42.0/23 701 -65.205.44.0/22 701 -65.205.48.0/21 701 -65.205.56.0/22 701 -65.205.60.0/23 701 -65.205.62.0/23 15297 -65.205.64.0/19 701 -65.205.96.0/23 701 -65.205.98.0/24 13434 -65.205.99.0/24 701 -65.205.100.0/22 701 -65.205.104.0/21 701 -65.205.112.0/20 701 -65.205.128.0/23 701 -65.205.130.0/24 36842 -65.205.131.0/24 701 -65.205.132.0/22 701 -65.205.136.0/21 701 -65.205.144.0/22 701 -65.205.148.0/24 12101 -65.205.149.0/24 701 -65.205.150.0/23 701 -65.205.152.0/23 701 -65.205.154.0/24 701 -65.205.155.0/24 21809 -65.205.156.0/23 701 -65.205.158.0/24 46639 -65.205.159.0/24 701 -65.205.160.0/24 701 -65.205.161.0/24 16791 -65.205.162.0/24 16791 -65.205.163.0/24 701 -65.205.164.0/22 701 -65.205.168.0/21 701 -65.205.176.0/21 701 -65.205.184.0/24 701 -65.205.185.0/24 394260 -65.205.186.0/23 701 -65.205.188.0/22 701 -65.205.192.0/19 701 -65.205.224.0/22 701 -65.205.228.0/23 701 -65.205.230.0/24 701 -65.205.231.0/24 396322 -65.205.232.0/21 701 -65.205.240.0/20 701 -65.206.0.0/24 46578 -65.206.1.0/24 701 -65.206.2.0/23 701 -65.206.4.0/22 701 -65.206.8.0/21 701 -65.206.16.0/23 23170 -65.206.18.0/23 701 -65.206.20.0/22 701 -65.206.24.0/23 701 -65.206.26.0/24 701 -65.206.27.0/24 33476 -65.206.28.0/22 701 -65.206.32.0/23 701 -65.206.34.0/24 1825 -65.206.35.0/24 701 -65.206.36.0/22 701 -65.206.40.0/21 701 -65.206.48.0/20 701 -65.206.64.0/22 701 -65.206.68.0/23 701 -65.206.70.0/24 701 -65.206.71.0/24 395090 -65.206.72.0/22 701 -65.206.76.0/24 33717 -65.206.77.0/24 701 -65.206.78.0/23 701 -65.206.80.0/23 701 -65.206.82.0/24 701 -65.206.83.0/24 32551 -65.206.84.0/22 701 -65.206.88.0/24 10584 -65.206.89.0/24 701 -65.206.90.0/23 701 -65.206.92.0/22 701 -65.206.96.0/20 701 -65.206.112.0/22 701 -65.206.116.0/24 395331 -65.206.117.0/24 701 -65.206.118.0/23 701 -65.206.120.0/21 701 -65.206.128.0/17 701 -65.207.0.0/24 701 -65.207.1.0/24 14021 -65.207.2.0/24 22124 -65.207.3.0/24 701 -65.207.4.0/22 701 -65.207.8.0/21 701 -65.207.16.0/21 701 -65.207.24.0/24 701 -65.207.25.0/24 15572 -65.207.26.0/23 701 -65.207.28.0/22 701 -65.207.32.0/23 701 -65.207.34.0/24 54268 -65.207.35.0/24 701 -65.207.36.0/22 701 -65.207.40.0/24 22082 -65.207.41.0/24 701 -65.207.42.0/23 701 -65.207.44.0/22 701 -65.207.48.0/21 701 -65.207.56.0/23 701 -65.207.58.0/24 22334 -65.207.59.0/24 46773 -65.207.60.0/22 701 -65.207.64.0/20 701 -65.207.80.0/22 701 -65.207.84.0/24 701 -65.207.85.0/24 22470 -65.207.86.0/23 701 -65.207.88.0/21 701 -65.207.96.0/22 701 -65.207.100.0/24 22288 -65.207.101.0/24 701 -65.207.102.0/24 393439 -65.207.103.0/24 701 -65.207.104.0/24 701 -65.207.105.0/24 29822 -65.207.106.0/23 701 -65.207.108.0/24 30328 -65.207.109.0/24 701 -65.207.110.0/23 701 -65.207.112.0/21 701 -65.207.120.0/24 701 -65.207.121.0/24 25931 -65.207.122.0/23 701 -65.207.124.0/22 701 -65.207.128.0/20 701 -65.207.144.0/24 701 -65.207.145.0/24 11539 -65.207.146.0/23 701 -65.207.148.0/23 701 -65.207.150.0/24 701 -65.207.151.0/24 16791 -65.207.152.0/24 701 -65.207.153.0/24 18459 -65.207.154.0/23 701 -65.207.156.0/22 701 -65.207.160.0/24 11609 -65.207.161.0/24 701 -65.207.162.0/23 701 -65.207.164.0/22 701 -65.207.168.0/21 701 -65.207.176.0/20 701 -65.207.192.0/24 33121 -65.207.193.0/24 701 -65.207.194.0/23 701 -65.207.196.0/24 701 -65.207.197.0/24 13893 -65.207.198.0/23 701 -65.207.200.0/21 701 -65.207.208.0/22 701 -65.207.212.0/24 22144 -65.207.213.0/24 701 -65.207.214.0/23 701 -65.207.216.0/21 701 -65.207.224.0/20 701 -65.207.240.0/24 33222 -65.207.241.0/24 701 -65.207.242.0/23 701 -65.207.244.0/22 701 -65.207.248.0/21 701 -65.208.0.0/18 701 -65.208.64.0/22 701 -65.208.68.0/24 701 -65.208.69.0/24 18678 -65.208.70.0/23 701 -65.208.72.0/21 701 -65.208.80.0/21 701 -65.208.88.0/24 40345 -65.208.89.0/24 701 -65.208.90.0/23 701 -65.208.92.0/22 701 -65.208.96.0/20 701 -65.208.112.0/22 701 -65.208.116.0/22 23505 -65.208.120.0/23 701 -65.208.122.0/23 11081 -65.208.124.0/22 701 -65.208.128.0/18 701 -65.208.192.0/20 701 -65.208.208.0/23 701 -65.208.210.0/24 22527 -65.208.211.0/24 701 -65.208.212.0/22 701 -65.208.216.0/21 701 -65.208.224.0/22 701 -65.208.228.0/23 17338 -65.208.230.0/24 17338 -65.208.231.0/24 701 -65.208.232.0/21 701 -65.208.240.0/20 701 -65.209.0.0/20 701 -65.209.16.0/21 701 -65.209.24.0/24 701 -65.209.25.0/24 54646 -65.209.26.0/23 701 -65.209.28.0/23 701 -65.209.30.0/24 701 -65.209.31.0/24 20282 -65.209.32.0/19 701 -65.209.64.0/21 701 -65.209.72.0/23 701 -65.209.74.0/24 11217 -65.209.75.0/24 701 -65.209.76.0/22 701 -65.209.80.0/23 701 -65.209.82.0/24 11860 -65.209.83.0/24 23500 -65.209.84.0/22 701 -65.209.88.0/21 701 -65.209.96.0/20 701 -65.209.112.0/24 23097 -65.209.113.0/24 701 -65.209.114.0/23 701 -65.209.116.0/22 701 -65.209.120.0/21 701 -65.209.128.0/19 701 -65.209.160.0/21 701 -65.209.168.0/22 701 -65.209.172.0/24 701 -65.209.173.0/24 22502 -65.209.174.0/23 701 -65.209.176.0/20 701 -65.209.192.0/21 701 -65.209.200.0/23 701 -65.209.202.0/24 701 -65.209.203.0/24 1615 -65.209.204.0/22 701 -65.209.208.0/23 701 -65.209.210.0/24 701 -65.209.211.0/24 22866 -65.209.212.0/22 701 -65.209.216.0/21 701 -65.209.224.0/19 701 -65.210.0.0/20 701 -65.210.16.0/22 701 -65.210.20.0/23 701 -65.210.22.0/24 701 -65.210.23.0/24 14652 -65.210.24.0/21 701 -65.210.32.0/21 701 -65.210.40.0/23 1685 -65.210.42.0/23 701 -65.210.44.0/22 701 -65.210.48.0/21 701 -65.210.56.0/24 701 -65.210.57.0/24 10440 -65.210.58.0/23 701 -65.210.60.0/22 701 -65.210.64.0/19 701 -65.210.96.0/22 62514 -65.210.100.0/23 701 -65.210.102.0/24 33261 -65.210.103.0/24 701 -65.210.104.0/23 701 -65.210.106.0/24 701 -65.210.107.0/24 40802 -65.210.108.0/24 701 -65.210.109.0/24 14010 -65.210.110.0/23 701 -65.210.112.0/22 701 -65.210.116.0/23 701 -65.210.118.0/24 25931 -65.210.119.0/24 701 -65.210.120.0/24 14652 -65.210.121.0/24 701 -65.210.122.0/23 701 -65.210.124.0/22 701 -65.210.128.0/24 701 -65.210.129.0/24 16493 -65.210.130.0/23 701 -65.210.132.0/22 701 -65.210.136.0/23 701 -65.210.138.0/24 701 -65.210.139.0/24 22674 -65.210.140.0/22 701 -65.210.144.0/20 701 -65.210.160.0/22 701 -65.210.164.0/23 701 -65.210.166.0/24 17178 -65.210.167.0/24 701 -65.210.168.0/21 701 -65.210.176.0/23 701 -65.210.178.0/23 1661 -65.210.180.0/24 1661 -65.210.181.0/24 701 -65.210.182.0/23 701 -65.210.184.0/21 701 -65.210.192.0/22 701 -65.210.196.0/23 701 -65.210.198.0/24 26843 -65.210.199.0/24 701 -65.210.200.0/22 701 -65.210.204.0/24 13782 -65.210.205.0/24 701 -65.210.206.0/23 701 -65.210.208.0/20 701 -65.210.224.0/19 701 -65.211.0.0/24 20027 -65.211.1.0/24 701 -65.211.2.0/23 701 -65.211.4.0/22 7029 -65.211.8.0/21 701 -65.211.16.0/24 701 -65.211.17.0/24 23088 -65.211.18.0/23 701 -65.211.20.0/22 701 -65.211.24.0/22 701 -65.211.28.0/23 701 -65.211.30.0/24 701 -65.211.31.0/24 14601 -65.211.32.0/21 701 -65.211.40.0/23 701 -65.211.42.0/24 701 -65.211.43.0/24 31837 -65.211.44.0/22 701 -65.211.48.0/23 701 -65.211.50.0/24 53936 -65.211.51.0/24 701 -65.211.52.0/23 701 -65.211.54.0/24 701 -65.211.55.0/24 19176 -65.211.56.0/22 701 -65.211.60.0/23 701 -65.211.62.0/24 25931 -65.211.63.0/24 701 -65.211.64.0/21 701 -65.211.72.0/23 701 -65.211.74.0/24 32373 -65.211.75.0/24 701 -65.211.76.0/22 701 -65.211.80.0/22 701 -65.211.84.0/24 701 -65.211.85.0/24 11331 -65.211.86.0/24 701 -65.211.87.0/24 14717 -65.211.88.0/21 701 -65.211.96.0/22 701 -65.211.100.0/24 18842 -65.211.101.0/24 701 -65.211.102.0/23 701 -65.211.104.0/21 701 -65.211.112.0/21 701 -65.211.120.0/23 1661 -65.211.122.0/23 701 -65.211.124.0/22 701 -65.211.128.0/19 701 -65.211.160.0/20 701 -65.211.176.0/23 701 -65.211.178.0/24 701 -65.211.179.0/24 16981 -65.211.180.0/22 701 -65.211.184.0/21 701 -65.211.192.0/20 701 -65.211.208.0/23 701 -65.211.210.0/24 701 -65.211.211.0/24 32059 -65.211.212.0/22 701 -65.211.216.0/21 701 -65.211.224.0/19 701 -65.212.0.0/18 701 -65.212.64.0/24 23505 -65.212.65.0/24 19088 -65.212.66.0/23 701 -65.212.68.0/23 701 -65.212.70.0/24 701 -65.212.71.0/24 7045 -65.212.72.0/21 701 -65.212.80.0/20 701 -65.212.96.0/20 701 -65.212.112.0/24 701 -65.212.113.0/24 26427 -65.212.114.0/23 701 -65.212.116.0/22 701 -65.212.120.0/21 701 -65.212.128.0/24 701 -65.212.129.0/24 26355 -65.212.130.0/23 701 -65.212.132.0/22 701 -65.212.136.0/21 701 -65.212.144.0/20 701 -65.212.160.0/20 701 -65.212.176.0/22 701 -65.212.180.0/23 32915 -65.212.182.0/23 701 -65.212.184.0/21 701 -65.212.192.0/19 701 -65.212.224.0/20 701 -65.212.240.0/22 701 -65.212.244.0/23 701 -65.212.246.0/24 701 -65.212.247.0/24 705 -65.212.248.0/21 701 -65.213.0.0/22 701 -65.213.4.0/24 705 -65.213.5.0/24 701 -65.213.6.0/23 701 -65.213.8.0/21 701 -65.213.16.0/21 701 -65.213.24.0/22 701 -65.213.28.0/23 701 -65.213.30.0/24 36107 -65.213.31.0/24 701 -65.213.32.0/19 701 -65.213.64.0/23 701 -65.213.66.0/24 25885 -65.213.67.0/24 701 -65.213.68.0/22 701 -65.213.72.0/23 701 -65.213.74.0/24 701 -65.213.75.0/24 31837 -65.213.76.0/22 701 -65.213.80.0/21 701 -65.213.88.0/23 701 -65.213.90.0/24 701 -65.213.91.0/24 14015 -65.213.92.0/24 54892 -65.213.93.0/24 701 -65.213.94.0/23 701 -65.213.96.0/23 701 -65.213.98.0/24 701 -65.213.99.0/24 22755 -65.213.100.0/22 701 -65.213.104.0/21 701 -65.213.112.0/21 701 -65.213.120.0/22 701 -65.213.124.0/23 701 -65.213.126.0/24 701 -65.213.127.0/24 25931 -65.213.128.0/20 701 -65.213.144.0/22 6947 -65.213.148.0/22 701 -65.213.152.0/21 701 -65.213.160.0/20 701 -65.213.176.0/22 701 -65.213.180.0/23 701 -65.213.182.0/24 701 -65.213.183.0/24 6352 -65.213.184.0/21 701 -65.213.192.0/24 23008 -65.213.193.0/24 701 -65.213.194.0/23 701 -65.213.196.0/24 11057 -65.213.197.0/24 701 -65.213.198.0/23 701 -65.213.200.0/24 701 -65.213.201.0/24 14652 -65.213.202.0/23 701 -65.213.204.0/22 701 -65.213.208.0/21 701 -65.213.216.0/22 701 -65.213.220.0/24 701 -65.213.221.0/24 36380 -65.213.222.0/23 701 -65.213.224.0/19 701 -65.214.0.0/20 701 -65.214.16.0/22 11486 -65.214.20.0/24 11486 -65.214.21.0/24 7046 -65.214.22.0/23 7046 -65.214.24.0/21 11486 -65.214.32.0/20 11486 -65.214.48.0/21 11486 -65.214.56.0/23 11486 -65.214.58.0/24 11486 -65.214.59.0/24 7046 -65.214.60.0/22 11486 -65.214.64.0/21 13388 -65.214.72.0/21 701 -65.214.80.0/20 701 -65.214.96.0/19 701 -65.214.128.0/20 701 -65.214.144.0/22 7065 -65.214.148.0/22 701 -65.214.152.0/23 701 -65.214.154.0/24 701 -65.214.155.0/24 27468 -65.214.156.0/22 7407 -65.214.160.0/20 701 -65.214.176.0/21 701 -65.214.184.0/22 701 -65.214.188.0/23 701 -65.214.190.0/24 32594 -65.214.191.0/24 701 -65.214.192.0/19 701 -65.214.224.0/22 701 -65.214.228.0/24 701 -65.214.229.0/24 31947 -65.214.230.0/23 701 -65.214.232.0/21 701 -65.214.240.0/21 16567 -65.214.248.0/21 701 -65.215.0.0/21 701 -65.215.8.0/22 701 -65.215.12.0/24 134121 -65.215.13.0/24 701 -65.215.14.0/23 701 -65.215.16.0/23 701 -65.215.18.0/24 6143 -65.215.19.0/24 701 -65.215.20.0/23 701 -65.215.22.0/24 33550 -65.215.23.0/24 701 -65.215.24.0/22 701 -65.215.28.0/24 701 -65.215.29.0/24 18690 -65.215.30.0/23 701 -65.215.32.0/24 32942 -65.215.33.0/24 701 -65.215.34.0/23 701 -65.215.36.0/22 701 -65.215.40.0/22 701 -65.215.44.0/24 701 -65.215.45.0/24 54292 -65.215.46.0/23 701 -65.215.48.0/20 701 -65.215.64.0/23 701 -65.215.66.0/24 701 -65.215.67.0/24 398116 -65.215.68.0/24 701 -65.215.69.0/24 15089 -65.215.70.0/23 701 -65.215.72.0/21 701 -65.215.80.0/23 701 -65.215.82.0/24 701 -65.215.83.0/24 11931 -65.215.84.0/22 701 -65.215.88.0/22 701 -65.215.92.0/24 701 -65.215.93.0/24 22130 -65.215.94.0/23 701 -65.215.96.0/24 701 -65.215.97.0/24 6619 -65.215.98.0/23 701 -65.215.100.0/24 22840 -65.215.101.0/24 397828 -65.215.102.0/23 701 -65.215.104.0/21 701 -65.215.112.0/22 701 -65.215.116.0/24 40901 -65.215.117.0/24 701 -65.215.118.0/23 701 -65.215.120.0/23 15089 -65.215.122.0/24 15089 -65.215.123.0/24 40740 -65.215.124.0/22 701 -65.215.128.0/23 701 -65.215.130.0/24 701 -65.215.131.0/24 30301 -65.215.132.0/22 701 -65.215.136.0/21 701 -65.215.144.0/20 701 -65.215.160.0/22 13690 -65.215.164.0/22 701 -65.215.168.0/21 701 -65.215.176.0/20 701 -65.215.192.0/18 701 -65.216.0.0/20 701 -65.216.16.0/23 701 -65.216.18.0/24 30514 -65.216.19.0/24 701 -65.216.20.0/22 701 -65.216.24.0/21 701 -65.216.32.0/19 701 -65.216.64.0/22 11486 -65.216.68.0/24 11486 -65.216.69.0/24 397556 -65.216.70.0/23 11486 -65.216.72.0/23 11486 -65.216.74.0/24 11486 -65.216.75.0/24 7046 -65.216.76.0/22 11486 -65.216.80.0/20 701 -65.216.96.0/19 11486 -65.216.128.0/20 701 -65.216.144.0/24 25931 -65.216.145.0/24 701 -65.216.146.0/23 701 -65.216.148.0/22 701 -65.216.152.0/21 701 -65.216.160.0/22 701 -65.216.164.0/24 3925 -65.216.165.0/24 701 -65.216.166.0/23 701 -65.216.168.0/22 701 -65.216.172.0/23 6352 -65.216.174.0/23 701 -65.216.176.0/24 395753 -65.216.177.0/24 701 -65.216.178.0/24 46601 -65.216.179.0/24 701 -65.216.180.0/24 701 -65.216.181.0/24 7046 -65.216.182.0/23 701 -65.216.184.0/21 701 -65.216.192.0/20 701 -65.216.208.0/21 701 -65.216.216.0/23 701 -65.216.218.0/24 701 -65.216.219.0/24 19407 -65.216.220.0/24 22815 -65.216.221.0/24 701 -65.216.222.0/23 701 -65.216.224.0/21 701 -65.216.232.0/22 701 -65.216.236.0/23 701 -65.216.238.0/24 27351 -65.216.239.0/24 701 -65.216.240.0/23 701 -65.216.242.0/24 701 -65.216.243.0/24 705 -65.216.244.0/22 701 -65.216.248.0/21 701 -65.217.0.0/19 701 -65.217.32.0/21 701 -65.217.40.0/23 1661 -65.217.42.0/23 701 -65.217.44.0/22 701 -65.217.48.0/23 701 -65.217.50.0/24 27781 -65.217.51.0/24 701 -65.217.52.0/23 701 -65.217.54.0/24 701 -65.217.55.0/24 23168 -65.217.56.0/22 701 -65.217.60.0/24 701 -65.217.61.0/24 10453 -65.217.62.0/23 701 -65.217.64.0/18 701 -65.217.128.0/21 701 -65.217.136.0/22 701 -65.217.140.0/24 705 -65.217.141.0/24 701 -65.217.142.0/23 701 -65.217.144.0/22 7029 -65.217.148.0/22 701 -65.217.152.0/21 701 -65.217.160.0/23 13518 -65.217.162.0/23 701 -65.217.164.0/23 701 -65.217.166.0/23 26279 -65.217.168.0/21 701 -65.217.176.0/21 701 -65.217.184.0/22 701 -65.217.188.0/23 701 -65.217.190.0/24 701 -65.217.191.0/24 15079 -65.217.192.0/19 701 -65.217.224.0/21 701 -65.217.232.0/24 701 -65.217.233.0/24 32295 -65.217.234.0/23 701 -65.217.236.0/22 701 -65.217.240.0/20 701 -65.218.0.0/18 701 -65.218.64.0/21 701 -65.218.72.0/22 6620 -65.218.76.0/24 6620 -65.218.77.0/24 701 -65.218.78.0/23 701 -65.218.80.0/24 15137 -65.218.81.0/24 701 -65.218.82.0/23 701 -65.218.84.0/22 701 -65.218.88.0/21 701 -65.218.96.0/19 701 -65.218.128.0/20 701 -65.218.144.0/21 11653 -65.218.152.0/21 701 -65.218.160.0/19 701 -65.218.192.0/21 701 -65.218.200.0/23 32289 -65.218.202.0/23 701 -65.218.204.0/22 701 -65.218.208.0/21 701 -65.218.216.0/24 701 -65.218.217.0/24 14045 -65.218.218.0/23 701 -65.218.220.0/22 701 -65.218.224.0/19 701 -65.219.0.0/17 701 -65.219.128.0/23 701 -65.219.130.0/24 30211 -65.219.131.0/24 701 -65.219.132.0/22 701 -65.219.136.0/21 701 -65.219.144.0/20 701 -65.219.160.0/20 701 -65.219.176.0/23 701 -65.219.178.0/24 9751 -65.219.179.0/24 701 -65.219.180.0/22 701 -65.219.184.0/21 701 -65.219.192.0/19 701 -65.219.224.0/24 15202 -65.219.225.0/24 701 -65.219.226.0/23 701 -65.219.228.0/22 701 -65.219.232.0/21 701 -65.219.240.0/20 701 -65.220.0.0/24 701 -65.220.1.0/24 32206 -65.220.2.0/23 701 -65.220.4.0/22 701 -65.220.8.0/22 701 -65.220.12.0/23 701 -65.220.14.0/24 701 -65.220.15.0/24 23219 -65.220.16.0/23 23219 -65.220.18.0/23 701 -65.220.20.0/22 701 -65.220.24.0/21 701 -65.220.32.0/20 701 -65.220.48.0/22 701 -65.220.52.0/23 22361 -65.220.54.0/23 701 -65.220.56.0/22 701 -65.220.60.0/23 701 -65.220.62.0/23 17020 -65.220.64.0/19 701 -65.220.96.0/23 701 -65.220.98.0/24 23239 -65.220.99.0/24 701 -65.220.100.0/23 701 -65.220.102.0/24 30053 -65.220.103.0/24 701 -65.220.104.0/21 701 -65.220.112.0/20 701 -65.220.128.0/17 701 -65.221.0.0/22 11486 -65.221.4.0/24 7046 -65.221.5.0/24 11486 -65.221.6.0/24 25708 -65.221.7.0/24 1685 -65.221.8.0/22 11486 -65.221.12.0/24 395356 -65.221.13.0/24 11486 -65.221.14.0/23 11486 -65.221.16.0/21 11486 -65.221.24.0/22 11486 -65.221.28.0/24 7046 -65.221.29.0/24 11486 -65.221.30.0/24 7046 -65.221.31.0/24 11486 -65.221.32.0/19 701 -65.221.64.0/19 701 -65.221.96.0/21 11486 -65.221.104.0/24 11486 -65.221.105.0/24 7046 -65.221.106.0/23 11486 -65.221.108.0/22 11486 -65.221.112.0/20 11486 -65.221.128.0/17 701 -65.222.0.0/17 701 -65.222.128.0/24 394096 -65.222.129.0/24 701 -65.222.130.0/23 701 -65.222.132.0/22 701 -65.222.136.0/22 701 -65.222.140.0/23 701 -65.222.142.0/24 393432 -65.222.143.0/24 701 -65.222.144.0/22 701 -65.222.148.0/24 46187 -65.222.149.0/24 701 -65.222.150.0/23 701 -65.222.152.0/24 701 -65.222.153.0/24 63362 -65.222.154.0/23 701 -65.222.156.0/22 701 -65.222.160.0/24 46622 -65.222.161.0/24 701 -65.222.162.0/23 701 -65.222.164.0/22 701 -65.222.168.0/22 701 -65.222.172.0/24 25931 -65.222.173.0/24 701 -65.222.174.0/24 26645 -65.222.175.0/24 701 -65.222.176.0/22 701 -65.222.180.0/23 14652 -65.222.182.0/23 701 -65.222.184.0/23 701 -65.222.186.0/24 701 -65.222.187.0/24 10440 -65.222.188.0/22 701 -65.222.192.0/22 701 -65.222.196.0/22 23505 -65.222.200.0/21 701 -65.222.208.0/20 701 -65.222.224.0/22 701 -65.222.228.0/23 701 -65.222.230.0/24 701 -65.222.231.0/24 395824 -65.222.232.0/21 701 -65.222.240.0/23 701 -65.222.242.0/24 40323 -65.222.243.0/24 701 -65.222.244.0/24 13666 -65.222.245.0/24 701 -65.222.246.0/23 701 -65.222.248.0/21 701 -65.223.0.0/21 701 -65.223.8.0/22 701 -65.223.12.0/24 705 -65.223.13.0/24 701 -65.223.14.0/23 701 -65.223.16.0/20 701 -65.223.32.0/21 701 -65.223.40.0/24 705 -65.223.41.0/24 701 -65.223.42.0/23 701 -65.223.44.0/22 701 -65.223.48.0/22 701 -65.223.52.0/24 701 -65.223.53.0/24 40532 -65.223.54.0/23 701 -65.223.56.0/21 701 -65.223.64.0/18 701 -65.223.128.0/21 701 -65.223.136.0/22 701 -65.223.140.0/24 10584 -65.223.141.0/24 701 -65.223.142.0/24 701 -65.223.143.0/24 393463 -65.223.144.0/22 7029 -65.223.148.0/22 701 -65.223.152.0/21 701 -65.223.160.0/23 701 -65.223.162.0/24 701 -65.223.163.0/24 23443 -65.223.164.0/22 701 -65.223.168.0/23 701 -65.223.170.0/23 21547 -65.223.172.0/22 701 -65.223.176.0/20 701 -65.223.192.0/20 701 -65.223.208.0/21 701 -65.223.216.0/24 701 -65.223.217.0/24 395410 -65.223.218.0/23 701 -65.223.220.0/22 701 -65.223.224.0/21 701 -65.223.232.0/23 701 -65.223.234.0/24 22794 -65.223.235.0/24 14251 -65.223.236.0/22 701 -65.223.240.0/20 701 -65.224.0.0/14 701 -65.228.0.0/19 701 -65.228.32.0/22 701 -65.228.36.0/22 6256 -65.228.40.0/22 6256 -65.228.44.0/22 701 -65.228.48.0/21 6256 -65.228.56.0/21 701 -65.228.64.0/22 701 -65.228.68.0/22 6256 -65.228.72.0/22 6256 -65.228.76.0/22 701 -65.228.80.0/20 701 -65.228.96.0/22 701 -65.228.100.0/22 6256 -65.228.104.0/22 6256 -65.228.108.0/22 701 -65.228.112.0/20 701 -65.228.128.0/22 701 -65.228.132.0/22 6256 -65.228.136.0/22 6256 -65.228.140.0/22 701 -65.228.144.0/20 701 -65.228.160.0/22 701 -65.228.164.0/22 6256 -65.228.168.0/22 6256 -65.228.172.0/22 701 -65.228.176.0/20 701 -65.228.192.0/22 701 -65.228.196.0/22 6256 -65.228.200.0/22 6256 -65.228.204.0/22 701 -65.228.208.0/20 701 -65.228.224.0/22 701 -65.228.228.0/23 6256 -65.228.230.0/23 701 -65.228.232.0/21 701 -65.228.240.0/20 701 -65.229.0.0/21 6256 -65.229.8.0/22 6256 -65.229.12.0/22 701 -65.229.16.0/22 701 -65.229.20.0/23 701 -65.229.22.0/23 6256 -65.229.24.0/21 6256 -65.229.32.0/23 6256 -65.229.34.0/23 701 -65.229.36.0/22 701 -65.229.40.0/21 701 -65.229.48.0/20 701 -65.229.64.0/19 701 -65.229.96.0/20 701 -65.229.112.0/21 701 -65.229.120.0/22 701 -65.229.124.0/22 6256 -65.229.128.0/19 6256 -65.229.160.0/22 6256 -65.229.164.0/22 701 -65.229.168.0/21 701 -65.229.176.0/20 701 -65.229.192.0/18 701 -65.230.0.0/15 701 -65.232.0.0/13 701 -65.240.0.0/20 701 -65.240.16.0/21 701 -65.240.24.0/22 701 -65.240.28.0/22 46303 -65.240.32.0/19 701 -65.240.64.0/19 701 -65.240.96.0/20 701 -65.240.112.0/21 701 -65.240.120.0/21 6620 -65.240.128.0/20 701 -65.240.144.0/21 701 -65.240.152.0/22 701 -65.240.156.0/24 22674 -65.240.157.0/24 701 -65.240.158.0/23 701 -65.240.160.0/20 701 -65.240.176.0/21 701 -65.240.184.0/23 22587 -65.240.186.0/23 701 -65.240.188.0/22 701 -65.240.192.0/23 701 -65.240.194.0/23 12238 -65.240.196.0/22 701 -65.240.200.0/21 701 -65.240.208.0/20 701 -65.240.224.0/24 11486 -65.240.225.0/24 18459 -65.240.226.0/23 11486 -65.240.228.0/22 11486 -65.240.232.0/21 11486 -65.240.240.0/20 701 -65.241.0.0/19 701 -65.241.32.0/23 701 -65.241.34.0/24 701 -65.241.35.0/24 14330 -65.241.36.0/22 701 -65.241.40.0/21 701 -65.241.48.0/20 701 -65.241.64.0/21 701 -65.241.72.0/22 701 -65.241.76.0/23 701 -65.241.78.0/24 6481 -65.241.79.0/24 701 -65.241.80.0/21 701 -65.241.88.0/23 701 -65.241.90.0/24 701 -65.241.91.0/24 46387 -65.241.92.0/22 701 -65.241.96.0/19 701 -65.241.128.0/19 701 -65.241.160.0/24 13888 -65.241.161.0/24 701 -65.241.162.0/23 701 -65.241.164.0/22 701 -65.241.168.0/21 701 -65.241.176.0/20 701 -65.241.192.0/19 701 -65.241.224.0/22 11486 -65.241.228.0/22 701 -65.241.232.0/21 701 -65.241.240.0/20 701 -65.242.0.0/19 701 -65.242.32.0/20 701 -65.242.48.0/21 701 -65.242.56.0/22 701 -65.242.60.0/23 701 -65.242.62.0/24 701 -65.242.63.0/24 13666 -65.242.64.0/21 701 -65.242.72.0/22 701 -65.242.76.0/23 26097 -65.242.78.0/23 701 -65.242.80.0/23 701 -65.242.82.0/24 701 -65.242.83.0/24 15297 -65.242.84.0/22 701 -65.242.88.0/22 701 -65.242.92.0/24 36606 -65.242.93.0/24 701 -65.242.94.0/23 701 -65.242.96.0/20 701 -65.242.112.0/24 13666 -65.242.113.0/24 701 -65.242.114.0/23 701 -65.242.116.0/22 701 -65.242.120.0/23 701 -65.242.122.0/24 13666 -65.242.123.0/24 701 -65.242.124.0/22 701 -65.242.128.0/23 701 -65.242.130.0/24 30280 -65.242.131.0/24 701 -65.242.132.0/22 701 -65.242.136.0/22 25692 -65.242.140.0/22 701 -65.242.144.0/20 701 -65.242.160.0/21 701 -65.242.168.0/22 701 -65.242.172.0/24 14771 -65.242.173.0/24 701 -65.242.174.0/23 701 -65.242.176.0/20 701 -65.242.192.0/20 701 -65.242.208.0/24 33476 -65.242.209.0/24 701 -65.242.210.0/23 701 -65.242.212.0/22 701 -65.242.216.0/21 701 -65.242.224.0/19 701 -65.243.0.0/19 701 -65.243.32.0/21 701 -65.243.40.0/22 701 -65.243.44.0/24 701 -65.243.45.0/24 32467 -65.243.46.0/24 23476 -65.243.47.0/24 701 -65.243.48.0/21 701 -65.243.56.0/22 3549 -65.243.60.0/22 701 -65.243.64.0/22 701 -65.243.68.0/24 13834 -65.243.69.0/24 701 -65.243.70.0/23 701 -65.243.72.0/21 701 -65.243.80.0/20 701 -65.243.96.0/22 701 -65.243.100.0/22 15146 -65.243.104.0/21 701 -65.243.112.0/20 701 -65.243.128.0/20 701 -65.243.144.0/22 701 -65.243.148.0/22 7799 -65.243.152.0/21 701 -65.243.160.0/24 26319 -65.243.161.0/24 701 -65.243.162.0/23 701 -65.243.164.0/22 701 -65.243.168.0/22 701 -65.243.172.0/23 1661 -65.243.174.0/23 701 -65.243.176.0/21 701 -65.243.184.0/21 7799 -65.243.192.0/19 701 -65.243.224.0/21 701 -65.243.232.0/23 701 -65.243.234.0/24 20310 -65.243.235.0/24 701 -65.243.236.0/22 701 -65.243.240.0/20 701 -65.244.0.0/19 701 -65.244.32.0/22 701 -65.244.36.0/24 701 -65.244.37.0/24 25896 -65.244.38.0/23 701 -65.244.40.0/21 701 -65.244.48.0/23 701 -65.244.50.0/23 395434 -65.244.52.0/22 701 -65.244.56.0/24 14717 -65.244.57.0/24 701 -65.244.58.0/24 29929 -65.244.59.0/24 20353 -65.244.60.0/22 701 -65.244.64.0/19 701 -65.244.96.0/24 701 -65.244.97.0/24 13729 -65.244.98.0/23 701 -65.244.100.0/22 701 -65.244.104.0/21 701 -65.244.112.0/20 701 -65.244.128.0/23 701 -65.244.130.0/24 705 -65.244.131.0/24 701 -65.244.132.0/24 701 -65.244.133.0/24 705 -65.244.134.0/23 701 -65.244.136.0/22 701 -65.244.140.0/23 701 -65.244.142.0/24 18434 -65.244.143.0/24 701 -65.244.144.0/20 701 -65.244.160.0/19 701 -65.244.192.0/18 701 -65.245.0.0/22 701 -65.245.4.0/24 701 -65.245.5.0/24 29729 -65.245.6.0/23 701 -65.245.8.0/21 701 -65.245.16.0/20 701 -65.245.32.0/19 701 -65.245.64.0/18 701 -65.245.128.0/19 701 -65.245.160.0/20 701 -65.245.176.0/21 33616 -65.245.184.0/23 33616 -65.245.186.0/23 393442 -65.245.188.0/22 393442 -65.245.192.0/19 701 -65.245.224.0/19 11486 -65.246.0.0/21 701 -65.246.8.0/22 701 -65.246.12.0/23 701 -65.246.14.0/24 22580 -65.246.15.0/24 701 -65.246.16.0/23 701 -65.246.18.0/24 22580 -65.246.19.0/24 701 -65.246.20.0/22 701 -65.246.24.0/22 701 -65.246.28.0/24 25873 -65.246.29.0/24 701 -65.246.30.0/23 701 -65.246.32.0/20 701 -65.246.48.0/22 701 -65.246.52.0/22 26097 -65.246.56.0/21 701 -65.246.64.0/22 701 -65.246.68.0/23 701 -65.246.70.0/24 396452 -65.246.71.0/24 701 -65.246.72.0/24 701 -65.246.73.0/24 46643 -65.246.74.0/24 701 -65.246.75.0/24 15572 -65.246.76.0/23 701 -65.246.78.0/24 701 -65.246.79.0/24 54019 -65.246.80.0/21 701 -65.246.88.0/22 395650 -65.246.92.0/24 395650 -65.246.93.0/24 701 -65.246.94.0/24 395650 -65.246.95.0/24 701 -65.246.96.0/21 23190 -65.246.104.0/21 701 -65.246.112.0/20 701 -65.246.128.0/19 701 -65.246.160.0/20 701 -65.246.176.0/22 701 -65.246.180.0/24 701 -65.246.181.0/24 13524 -65.246.182.0/23 701 -65.246.184.0/21 701 -65.246.192.0/24 46104 -65.246.193.0/24 701 -65.246.194.0/23 701 -65.246.196.0/24 701 -65.246.197.0/24 26497 -65.246.198.0/23 701 -65.246.200.0/21 701 -65.246.208.0/20 701 -65.246.224.0/20 701 -65.246.240.0/21 26644 -65.246.248.0/21 701 -65.247.0.0/19 701 -65.247.32.0/22 701 -65.247.36.0/24 701 -65.247.37.0/24 13782 -65.247.38.0/23 701 -65.247.40.0/21 701 -65.247.48.0/20 701 -65.247.64.0/19 701 -65.247.96.0/20 701 -65.247.112.0/21 701 -65.247.120.0/24 701 -65.247.121.0/24 26915 -65.247.122.0/23 701 -65.247.124.0/22 701 -65.247.128.0/17 701 -65.248.0.0/21 701 -65.248.8.0/22 701 -65.248.12.0/24 701 -65.248.13.0/24 395116 -65.248.14.0/23 701 -65.248.16.0/24 33543 -65.248.17.0/24 701 -65.248.18.0/23 701 -65.248.20.0/22 701 -65.248.24.0/21 701 -65.248.32.0/19 701 -65.248.64.0/20 701 -65.248.80.0/24 701 -65.248.81.0/24 14617 -65.248.82.0/23 701 -65.248.84.0/22 701 -65.248.88.0/21 701 -65.248.96.0/19 701 -65.248.128.0/24 701 -65.248.129.0/24 6352 -65.248.130.0/23 701 -65.248.132.0/22 701 -65.248.136.0/21 701 -65.248.144.0/20 701 -65.248.160.0/24 27781 -65.248.161.0/24 701 -65.248.162.0/23 701 -65.248.164.0/23 14279 -65.248.166.0/23 701 -65.248.168.0/21 701 -65.248.176.0/20 701 -65.248.192.0/22 701 -65.248.196.0/23 701 -65.248.198.0/24 21511 -65.248.199.0/24 701 -65.248.200.0/21 701 -65.248.208.0/20 46303 -65.248.224.0/22 701 -65.248.228.0/24 701 -65.248.229.0/24 27247 -65.248.230.0/23 701 -65.248.232.0/21 701 -65.248.240.0/20 701 -65.249.0.0/19 701 -65.249.32.0/21 701 -65.249.40.0/23 701 -65.249.42.0/23 22702 -65.249.44.0/22 701 -65.249.48.0/21 7799 -65.249.56.0/22 701 -65.249.60.0/24 705 -65.249.61.0/24 701 -65.249.62.0/23 701 -65.249.64.0/20 11486 -65.249.80.0/20 701 -65.249.96.0/19 701 -65.249.128.0/22 701 -65.249.132.0/23 14717 -65.249.134.0/23 701 -65.249.136.0/21 701 -65.249.144.0/20 701 -65.249.160.0/20 701 -65.249.176.0/21 701 -65.249.184.0/22 14717 -65.249.188.0/24 29956 -65.249.189.0/24 14717 -65.249.190.0/23 701 -65.249.192.0/23 701 -65.249.194.0/24 701 -65.249.195.0/24 27573 -65.249.196.0/24 15026 -65.249.197.0/24 701 -65.249.198.0/23 701 -65.249.200.0/21 701 -65.249.208.0/20 701 -65.249.224.0/23 701 -65.249.226.0/23 54650 -65.249.228.0/22 701 -65.249.232.0/21 701 -65.249.240.0/22 701 -65.249.244.0/23 40676 -65.249.246.0/23 701 -65.249.248.0/21 701 -65.250.0.0/15 701 -65.252.0.0/15 701 -65.254.0.0/23 46887 -65.254.2.0/24 46887 -65.254.3.0/24 22257 -65.254.4.0/23 46887 -65.254.6.0/24 46887 -65.254.7.0/24 22257 -65.254.8.0/21 46887 -65.254.16.0/22 46887 -65.254.20.0/23 46887 -65.254.22.0/24 13365 -65.254.23.0/24 46887 -65.254.24.0/21 46887 -65.254.32.0/21 11042 -65.254.40.0/22 11042 -65.254.44.0/23 11042 -65.254.46.0/24 7226 -65.254.47.0/24 11042 -65.254.48.0/22 11042 -65.254.52.0/24 11042 -65.254.53.0/24 7226 -65.254.54.0/23 11042 -65.254.56.0/22 11042 -65.254.60.0/23 11042 -65.254.62.0/24 11042 -65.254.63.0/24 7226 -65.254.64.0/19 46606 -65.254.96.0/19 2552 -65.254.128.0/20 33354 -65.254.144.0/20 13638 -65.254.160.0/24 22299 -65.254.162.0/24 22299 -65.254.164.0/22 22299 -65.254.168.0/22 22299 -65.254.172.0/23 393591 -65.254.174.0/23 22299 -65.254.176.0/24 22451 -65.254.177.0/24 393591 -65.254.178.0/24 393591 -65.254.179.0/24 22299 -65.254.180.0/22 22299 -65.254.184.0/23 47036 -65.254.186.0/24 22451 -65.254.187.0/24 20091 -65.254.188.0/22 22299 -65.254.192.0/22 19931 -65.254.201.0/24 22903 -65.254.205.0/24 22646 -65.254.208.0/20 19271 -65.254.224.0/19 29873 -65.255.0.0/19 25970 -65.255.32.0/20 21859 -65.255.48.0/20 22933 -65.255.64.0/19 11650 -65.255.96.0/19 13986 -65.255.128.0/23 62943 -65.255.130.0/24 54579 -65.255.131.0/24 62943 -65.255.132.0/23 62943 -65.255.134.0/24 10750 -65.255.135.0/24 62943 -65.255.136.0/22 62943 -65.255.140.0/24 395040 -65.255.141.0/24 62943 -65.255.142.0/23 62943 -65.255.144.0/20 54579 -65.255.160.0/20 33227 -65.255.176.0/20 32233 -65.255.192.0/20 29930 -65.255.208.0/22 29930 -65.255.212.0/24 29930 -65.255.213.0/24 40480 -65.255.214.0/23 29930 -65.255.216.0/21 29930 -65.255.224.0/20 6539 -65.255.240.0/20 46303 -66.0.0.0/19 7029 -66.0.32.0/24 27338 -66.0.33.0/24 7029 -66.0.34.0/23 7029 -66.0.36.0/22 7029 -66.0.40.0/22 7029 -66.0.44.0/23 7029 -66.0.46.0/24 7029 -66.0.47.0/24 27338 -66.0.48.0/21 7029 -66.0.56.0/22 7029 -66.0.60.0/22 27338 -66.0.64.0/22 7029 -66.0.68.0/23 7029 -66.0.70.0/24 27338 -66.0.71.0/24 7029 -66.0.72.0/21 7029 -66.0.80.0/21 7029 -66.0.88.0/22 7029 -66.0.92.0/23 7029 -66.0.94.0/24 53271 -66.0.95.0/24 7029 -66.0.96.0/20 7029 -66.0.112.0/21 7029 -66.0.120.0/22 7029 -66.0.124.0/24 7029 -66.0.125.0/24 394609 -66.0.126.0/23 7029 -66.0.128.0/18 7029 -66.0.192.0/19 7029 -66.0.224.0/20 7029 -66.0.240.0/21 7029 -66.0.248.0/22 7029 -66.0.252.0/23 27338 -66.0.254.0/24 27338 -66.0.255.0/24 7029 -66.1.0.0/23 3651 -66.1.4.0/23 3651 -66.1.8.0/23 3651 -66.1.12.0/23 3651 -66.1.16.0/23 3651 -66.1.20.0/23 3651 -66.1.24.0/23 3651 -66.1.28.0/23 3651 -66.1.32.0/23 3651 -66.1.36.0/23 3651 -66.1.40.0/23 3651 -66.1.56.0/22 3651 -66.1.60.0/23 3651 -66.1.64.0/23 3651 -66.1.68.0/23 3651 -66.1.72.0/23 3651 -66.1.76.0/23 3651 -66.1.80.0/23 3651 -66.1.112.0/23 3651 -66.1.116.0/23 3651 -66.1.120.0/23 3651 -66.1.124.0/23 3651 -66.1.208.0/24 10507 -66.1.252.0/24 10507 -66.2.0.0/19 2828 -66.2.32.0/21 2828 -66.2.40.0/23 22530 -66.2.42.0/23 2828 -66.2.44.0/22 2828 -66.2.48.0/24 2828 -66.2.49.0/24 22530 -66.2.50.0/23 2828 -66.2.52.0/22 2828 -66.2.56.0/22 2828 -66.2.60.0/23 2828 -66.2.62.0/24 2828 -66.2.63.0/24 7014 -66.2.64.0/18 2828 -66.2.128.0/17 2828 -66.3.0.0/16 2828 -66.4.0.0/21 19957 -66.4.8.0/22 19957 -66.4.12.0/23 19957 -66.4.14.0/23 19956 -66.4.16.0/21 19957 -66.4.24.0/23 19957 -66.4.26.0/24 19957 -66.4.27.0/24 19956 -66.4.28.0/22 19956 -66.4.32.0/19 19957 -66.4.64.0/18 19957 -66.4.128.0/17 19957 -66.5.0.0/16 19957 -66.6.0.0/20 13576 -66.6.16.0/20 31958 -66.6.32.0/23 26101 -66.6.44.0/24 26101 -66.6.64.0/20 7029 -66.6.96.0/19 11320 -66.6.128.0/22 21772 -66.6.134.0/23 21772 -66.6.137.0/24 21772 -66.6.139.0/24 21772 -66.6.142.0/24 17237 -66.6.143.0/24 21772 -66.6.144.0/20 13433 -66.6.160.0/20 22958 -66.6.176.0/20 27292 -66.6.208.0/20 11509 -66.6.224.0/23 40073 -66.6.226.0/24 40073 -66.6.230.0/24 40073 -66.7.0.0/18 7029 -66.7.64.0/19 174 -66.7.96.0/20 3657 -66.7.112.0/20 29933 -66.7.128.0/20 3257 -66.7.144.0/22 3257 -66.7.148.0/23 33480 -66.7.150.0/23 3257 -66.7.152.0/21 3257 -66.7.160.0/22 3257 -66.7.164.0/23 3257 -66.7.166.0/23 23029 -66.7.168.0/22 3257 -66.7.172.0/23 3257 -66.7.174.0/24 3257 -66.7.175.0/24 15277 -66.7.176.0/22 3257 -66.7.180.0/23 3257 -66.7.182.0/23 23029 -66.7.184.0/23 23029 -66.7.186.0/23 3257 -66.7.188.0/22 3257 -66.7.192.0/19 33182 -66.7.224.0/19 14265 -66.8.0.0/17 2905 -66.8.128.0/17 20001 -66.9.0.0/19 18885 -66.9.32.0/24 18885 -66.9.33.0/24 19689 -66.9.34.0/23 18885 -66.9.36.0/22 18885 -66.9.40.0/22 18885 -66.9.44.0/24 18885 -66.9.45.0/24 35988 -66.9.46.0/23 18885 -66.9.48.0/23 18885 -66.9.50.0/23 24867 -66.9.52.0/23 24867 -66.9.54.0/23 18885 -66.9.56.0/21 18885 -66.9.64.0/20 18885 -66.9.80.0/21 18885 -66.9.88.0/23 18885 -66.9.90.0/24 18885 -66.9.91.0/24 24867 -66.9.92.0/22 18885 -66.9.96.0/19 18885 -66.9.128.0/19 18885 -66.9.160.0/23 24867 -66.9.162.0/23 18885 -66.9.164.0/22 18885 -66.9.168.0/21 18885 -66.9.176.0/20 18885 -66.9.192.0/23 18885 -66.9.194.0/23 24867 -66.9.196.0/23 24867 -66.9.198.0/24 18885 -66.9.199.0/24 20115 -66.9.200.0/21 18885 -66.9.208.0/20 18885 -66.9.224.0/20 18885 -66.9.240.0/24 18885 -66.9.241.0/24 24867 -66.9.242.0/23 18885 -66.9.244.0/22 18885 -66.9.248.0/21 18885 -66.10.0.0/24 7132 -66.10.1.0/24 7018 -66.10.2.0/23 7018 -66.10.4.0/22 7018 -66.10.8.0/21 7018 -66.10.16.0/20 7018 -66.10.32.0/19 7018 -66.10.64.0/18 7018 -66.10.128.0/18 7018 -66.10.192.0/19 7018 -66.10.224.0/20 7018 -66.10.240.0/21 7018 -66.10.248.0/22 7018 -66.10.252.0/23 7018 -66.10.254.0/24 7132 -66.10.255.0/24 7018 -66.11.0.0/19 17054 -66.11.32.0/20 21548 -66.11.51.0/24 14173 -66.11.52.0/22 14173 -66.11.56.0/24 14173 -66.11.64.0/19 20161 -66.11.96.0/20 6368 -66.11.112.0/23 209519 -66.11.114.0/24 209519 -66.11.115.0/24 201106 -66.11.116.0/24 209519 -66.11.117.0/24 201106 -66.11.118.0/24 209519 -66.11.119.0/24 8100 -66.11.120.0/24 23422 -66.11.121.0/24 30475 -66.11.122.0/24 397651 -66.11.123.0/24 209519 -66.11.124.0/24 17216 -66.11.125.0/24 3223 -66.11.126.0/24 16584 -66.11.127.0/24 55229 -66.11.128.0/22 11817 -66.11.132.0/24 11817 -66.11.133.0/24 23227 -66.11.134.0/24 23227 -66.11.135.0/24 11817 -66.11.136.0/24 13400 -66.11.137.0/24 11817 -66.11.139.0/24 11817 -66.11.140.0/24 11817 -66.11.144.0/20 19234 -66.11.160.0/19 11814 -66.11.192.0/19 18649 -66.11.224.0/21 36252 -66.11.240.0/20 36545 -66.12.0.0/24 5650 -66.12.1.0/24 701 -66.12.2.0/24 701 -66.12.3.0/24 5650 -66.12.4.0/22 701 -66.12.8.0/22 701 -66.12.12.0/24 5650 -66.12.13.0/24 701 -66.12.14.0/23 701 -66.12.16.0/21 701 -66.12.24.0/22 701 -66.12.28.0/23 701 -66.12.30.0/24 701 -66.12.31.0/24 5650 -66.12.32.0/24 5650 -66.12.33.0/24 701 -66.12.34.0/23 701 -66.12.36.0/24 5650 -66.12.37.0/24 701 -66.12.38.0/24 5650 -66.12.39.0/24 701 -66.12.40.0/21 701 -66.12.48.0/22 5650 -66.12.52.0/24 701 -66.12.53.0/24 5650 -66.12.54.0/23 701 -66.12.56.0/23 701 -66.12.58.0/24 701 -66.12.59.0/24 5650 -66.12.60.0/23 5650 -66.12.62.0/24 701 -66.12.63.0/24 5650 -66.12.64.0/22 701 -66.12.68.0/23 701 -66.12.70.0/24 5650 -66.12.71.0/24 701 -66.12.72.0/24 701 -66.12.73.0/24 5650 -66.12.74.0/23 701 -66.12.76.0/24 5650 -66.12.77.0/24 701 -66.12.78.0/23 701 -66.12.80.0/24 5650 -66.12.81.0/24 701 -66.12.82.0/24 5650 -66.12.83.0/24 701 -66.12.84.0/24 5650 -66.12.85.0/24 701 -66.12.86.0/24 701 -66.12.87.0/24 5650 -66.12.88.0/23 701 -66.12.90.0/24 5650 -66.12.91.0/24 701 -66.12.92.0/23 701 -66.12.94.0/24 701 -66.12.95.0/24 5650 -66.12.96.0/22 701 -66.12.100.0/23 701 -66.12.102.0/23 5650 -66.12.104.0/24 5650 -66.12.105.0/24 701 -66.12.106.0/24 5650 -66.12.107.0/24 701 -66.12.108.0/23 701 -66.12.110.0/24 701 -66.12.111.0/24 5650 -66.12.112.0/21 701 -66.12.120.0/24 5650 -66.12.121.0/24 701 -66.12.122.0/24 701 -66.12.123.0/24 5650 -66.12.124.0/22 701 -66.12.128.0/24 5650 -66.12.129.0/24 701 -66.12.130.0/23 5650 -66.12.132.0/24 701 -66.12.133.0/24 5650 -66.12.134.0/23 701 -66.12.136.0/24 701 -66.12.137.0/24 5650 -66.12.138.0/23 5650 -66.12.140.0/22 701 -66.12.144.0/24 701 -66.12.145.0/24 5650 -66.12.146.0/23 701 -66.12.148.0/22 701 -66.12.152.0/24 5650 -66.12.153.0/24 701 -66.12.154.0/23 5650 -66.12.156.0/22 701 -66.12.160.0/24 5650 -66.12.161.0/24 701 -66.12.162.0/24 701 -66.12.163.0/24 5650 -66.12.164.0/24 701 -66.12.165.0/24 5650 -66.12.166.0/24 5650 -66.12.167.0/24 701 -66.12.168.0/23 701 -66.12.170.0/23 5650 -66.12.172.0/23 701 -66.12.174.0/24 701 -66.12.175.0/24 5650 -66.12.176.0/24 5650 -66.12.177.0/24 701 -66.12.178.0/23 5650 -66.12.180.0/24 701 -66.12.181.0/24 5650 -66.12.182.0/23 701 -66.12.184.0/24 5650 -66.12.185.0/24 701 -66.12.186.0/23 701 -66.12.188.0/24 701 -66.12.189.0/24 5650 -66.12.190.0/24 5650 -66.12.191.0/24 701 -66.12.192.0/23 701 -66.12.194.0/24 5650 -66.12.195.0/24 701 -66.12.196.0/24 5650 -66.12.197.0/24 701 -66.12.198.0/24 5650 -66.12.199.0/24 701 -66.12.200.0/23 701 -66.12.202.0/24 5650 -66.12.203.0/24 701 -66.12.204.0/23 701 -66.12.206.0/23 5650 -66.12.208.0/23 701 -66.12.210.0/24 701 -66.12.211.0/24 5650 -66.12.212.0/24 5650 -66.12.213.0/24 701 -66.12.214.0/23 701 -66.12.216.0/22 701 -66.12.220.0/23 701 -66.12.222.0/23 5650 -66.12.224.0/24 5650 -66.12.225.0/24 701 -66.12.226.0/23 701 -66.12.228.0/24 5650 -66.12.229.0/24 701 -66.12.230.0/24 5650 -66.12.231.0/24 701 -66.12.232.0/23 701 -66.12.234.0/24 5650 -66.12.235.0/24 701 -66.12.236.0/23 701 -66.12.238.0/24 701 -66.12.239.0/24 5650 -66.12.240.0/23 701 -66.12.242.0/23 5650 -66.12.244.0/24 5650 -66.12.245.0/24 701 -66.12.246.0/24 701 -66.12.247.0/24 5650 -66.12.248.0/23 701 -66.12.250.0/24 5650 -66.12.251.0/24 701 -66.12.252.0/24 701 -66.12.253.0/24 5650 -66.12.254.0/24 5650 -66.12.255.0/24 701 -66.13.0.0/24 5650 -66.13.1.0/24 701 -66.13.2.0/23 701 -66.13.4.0/23 701 -66.13.6.0/24 5650 -66.13.7.0/24 701 -66.13.8.0/23 5650 -66.13.10.0/23 701 -66.13.12.0/23 5650 -66.13.14.0/23 701 -66.13.16.0/24 701 -66.13.17.0/24 5650 -66.13.18.0/24 701 -66.13.19.0/24 5650 -66.13.20.0/23 701 -66.13.22.0/24 5650 -66.13.23.0/24 701 -66.13.24.0/22 701 -66.13.28.0/24 5650 -66.13.29.0/24 701 -66.13.30.0/24 5650 -66.13.31.0/24 701 -66.13.32.0/23 701 -66.13.34.0/24 5650 -66.13.35.0/24 701 -66.13.36.0/24 701 -66.13.37.0/24 5650 -66.13.38.0/23 5650 -66.13.40.0/24 701 -66.13.41.0/24 5650 -66.13.42.0/23 701 -66.13.44.0/23 701 -66.13.46.0/23 5650 -66.13.48.0/24 701 -66.13.49.0/24 5650 -66.13.50.0/24 701 -66.13.51.0/24 5650 -66.13.52.0/24 701 -66.13.53.0/24 5650 -66.13.54.0/23 701 -66.13.56.0/22 701 -66.13.60.0/23 5650 -66.13.62.0/23 701 -66.13.64.0/23 701 -66.13.66.0/24 5650 -66.13.67.0/24 701 -66.13.68.0/24 701 -66.13.69.0/24 5650 -66.13.70.0/23 701 -66.13.72.0/22 701 -66.13.76.0/24 5650 -66.13.77.0/24 701 -66.13.78.0/23 701 -66.13.80.0/24 5650 -66.13.81.0/24 701 -66.13.82.0/24 701 -66.13.83.0/24 5650 -66.13.84.0/24 5650 -66.13.85.0/24 701 -66.13.86.0/23 5650 -66.13.88.0/22 701 -66.13.92.0/23 5650 -66.13.94.0/23 701 -66.13.96.0/21 701 -66.13.104.0/23 5650 -66.13.106.0/24 5650 -66.13.107.0/24 701 -66.13.108.0/24 701 -66.13.109.0/24 5650 -66.13.110.0/23 5650 -66.13.112.0/23 701 -66.13.114.0/24 5650 -66.13.115.0/24 701 -66.13.116.0/24 5650 -66.13.117.0/24 701 -66.13.118.0/23 701 -66.13.120.0/23 701 -66.13.122.0/24 701 -66.13.123.0/24 5650 -66.13.124.0/22 5650 -66.13.128.0/23 5650 -66.13.130.0/24 5650 -66.13.131.0/24 701 -66.13.132.0/24 5650 -66.13.133.0/24 701 -66.13.134.0/24 701 -66.13.135.0/24 5650 -66.13.136.0/23 701 -66.13.138.0/24 5650 -66.13.139.0/24 701 -66.13.140.0/23 701 -66.13.142.0/23 5650 -66.13.144.0/24 701 -66.13.145.0/24 5650 -66.13.146.0/24 701 -66.13.147.0/24 5650 -66.13.148.0/22 701 -66.13.152.0/23 5650 -66.13.154.0/24 5650 -66.13.155.0/24 701 -66.13.156.0/23 701 -66.13.158.0/24 701 -66.13.159.0/24 5650 -66.13.160.0/24 5650 -66.13.161.0/24 701 -66.13.162.0/23 701 -66.13.164.0/22 701 -66.13.168.0/24 701 -66.13.169.0/24 5650 -66.13.170.0/23 701 -66.13.172.0/23 701 -66.13.174.0/24 701 -66.13.175.0/24 5650 -66.13.176.0/24 5650 -66.13.177.0/24 701 -66.13.178.0/24 701 -66.13.179.0/24 5650 -66.13.180.0/22 701 -66.13.184.0/23 701 -66.13.186.0/24 5650 -66.13.187.0/24 701 -66.13.188.0/22 701 -66.13.192.0/23 701 -66.13.194.0/24 5650 -66.13.195.0/24 701 -66.13.196.0/24 5650 -66.13.197.0/24 701 -66.13.198.0/23 701 -66.13.200.0/23 701 -66.13.202.0/24 5650 -66.13.203.0/24 701 -66.13.204.0/24 701 -66.13.205.0/24 5650 -66.13.206.0/24 701 -66.13.207.0/24 5650 -66.13.208.0/22 701 -66.13.212.0/24 701 -66.13.213.0/24 5650 -66.13.214.0/24 5650 -66.13.215.0/24 701 -66.13.216.0/24 5650 -66.13.217.0/24 701 -66.13.218.0/24 5650 -66.13.219.0/24 701 -66.13.220.0/24 701 -66.13.221.0/24 5650 -66.13.222.0/23 701 -66.13.224.0/24 5650 -66.13.225.0/24 701 -66.13.226.0/24 701 -66.13.227.0/24 5650 -66.13.228.0/23 701 -66.13.230.0/24 5650 -66.13.231.0/24 701 -66.13.232.0/23 701 -66.13.234.0/24 701 -66.13.235.0/24 5650 -66.13.236.0/22 701 -66.13.240.0/22 5650 -66.13.244.0/24 701 -66.13.245.0/24 5650 -66.13.246.0/24 701 -66.13.247.0/24 5650 -66.13.248.0/24 5650 -66.13.249.0/24 701 -66.13.250.0/24 701 -66.13.251.0/24 5650 -66.13.252.0/22 5650 -66.14.0.0/24 5650 -66.14.1.0/24 701 -66.14.2.0/24 701 -66.14.3.0/24 5650 -66.14.4.0/23 701 -66.14.6.0/24 5650 -66.14.7.0/24 701 -66.14.8.0/24 701 -66.14.9.0/24 5650 -66.14.10.0/23 701 -66.14.12.0/24 5650 -66.14.13.0/24 701 -66.14.14.0/23 701 -66.14.16.0/24 5650 -66.14.17.0/24 701 -66.14.18.0/23 5650 -66.14.20.0/22 5650 -66.14.24.0/23 701 -66.14.26.0/24 5650 -66.14.27.0/24 701 -66.14.28.0/22 5650 -66.14.32.0/23 701 -66.14.34.0/24 5650 -66.14.35.0/24 701 -66.14.36.0/24 701 -66.14.37.0/24 5650 -66.14.38.0/23 701 -66.14.40.0/24 5650 -66.14.41.0/24 701 -66.14.42.0/24 701 -66.14.43.0/24 5650 -66.14.44.0/22 701 -66.14.48.0/23 701 -66.14.50.0/24 5650 -66.14.51.0/24 701 -66.14.52.0/24 701 -66.14.53.0/24 5650 -66.14.54.0/24 701 -66.14.55.0/24 5650 -66.14.56.0/24 701 -66.14.57.0/24 5650 -66.14.58.0/24 701 -66.14.59.0/24 5650 -66.14.60.0/23 701 -66.14.62.0/24 5650 -66.14.63.0/24 701 -66.14.64.0/24 5650 -66.14.65.0/24 701 -66.14.66.0/23 5650 -66.14.68.0/23 5650 -66.14.70.0/24 5650 -66.14.71.0/24 701 -66.14.72.0/24 5650 -66.14.73.0/24 701 -66.14.74.0/24 701 -66.14.75.0/24 5650 -66.14.76.0/24 5650 -66.14.77.0/24 701 -66.14.78.0/24 701 -66.14.79.0/24 5650 -66.14.80.0/24 701 -66.14.81.0/24 5650 -66.14.82.0/24 5650 -66.14.83.0/24 701 -66.14.84.0/23 701 -66.14.86.0/23 5650 -66.14.88.0/22 701 -66.14.92.0/23 5650 -66.14.94.0/23 701 -66.14.96.0/23 5650 -66.14.98.0/24 5650 -66.14.99.0/24 701 -66.14.100.0/24 701 -66.14.101.0/24 5650 -66.14.102.0/23 701 -66.14.104.0/21 701 -66.14.112.0/20 701 -66.14.128.0/20 701 -66.14.144.0/23 701 -66.14.146.0/24 5650 -66.14.147.0/24 701 -66.14.148.0/24 701 -66.14.149.0/24 5650 -66.14.150.0/23 5650 -66.14.152.0/21 701 -66.14.160.0/20 701 -66.14.176.0/22 5650 -66.14.180.0/23 5650 -66.14.182.0/24 701 -66.14.183.0/24 5650 -66.14.184.0/24 701 -66.14.185.0/24 5650 -66.14.186.0/23 701 -66.14.188.0/22 701 -66.14.192.0/20 701 -66.14.208.0/23 701 -66.14.210.0/24 5650 -66.14.211.0/24 701 -66.14.212.0/24 701 -66.14.213.0/24 5650 -66.14.214.0/23 701 -66.14.216.0/23 701 -66.14.218.0/23 5650 -66.14.220.0/24 5650 -66.14.221.0/24 701 -66.14.222.0/23 701 -66.14.224.0/22 701 -66.14.228.0/24 5650 -66.14.229.0/24 701 -66.14.230.0/23 701 -66.14.232.0/24 5650 -66.14.233.0/24 701 -66.14.234.0/23 701 -66.14.236.0/22 701 -66.14.240.0/20 701 -66.15.0.0/20 701 -66.15.16.0/22 701 -66.15.20.0/23 701 -66.15.22.0/24 5650 -66.15.23.0/24 701 -66.15.24.0/21 701 -66.15.32.0/20 701 -66.15.48.0/22 701 -66.15.52.0/24 701 -66.15.53.0/24 5650 -66.15.54.0/23 701 -66.15.56.0/21 701 -66.15.64.0/21 701 -66.15.72.0/23 5650 -66.15.74.0/23 701 -66.15.76.0/23 701 -66.15.78.0/24 5650 -66.15.79.0/24 701 -66.15.80.0/20 701 -66.15.96.0/23 701 -66.15.98.0/24 701 -66.15.99.0/24 5650 -66.15.100.0/23 701 -66.15.102.0/24 5650 -66.15.103.0/24 701 -66.15.104.0/21 701 -66.15.112.0/21 701 -66.15.120.0/24 701 -66.15.121.0/24 5650 -66.15.122.0/23 5650 -66.15.124.0/24 5650 -66.15.125.0/24 701 -66.15.126.0/23 5650 -66.15.128.0/22 701 -66.15.132.0/23 701 -66.15.134.0/24 5650 -66.15.135.0/24 701 -66.15.136.0/21 701 -66.15.144.0/21 701 -66.15.152.0/23 701 -66.15.154.0/24 5650 -66.15.155.0/24 701 -66.15.156.0/22 701 -66.15.160.0/21 701 -66.15.168.0/22 701 -66.15.172.0/23 5650 -66.15.174.0/23 701 -66.15.176.0/21 701 -66.15.184.0/24 5650 -66.15.185.0/24 701 -66.15.186.0/24 5650 -66.15.187.0/24 701 -66.15.188.0/23 701 -66.15.190.0/23 5650 -66.15.192.0/22 701 -66.15.196.0/23 701 -66.15.198.0/24 5650 -66.15.199.0/24 701 -66.15.200.0/22 701 -66.15.204.0/23 701 -66.15.206.0/24 5650 -66.15.207.0/24 701 -66.15.208.0/21 701 -66.15.216.0/22 701 -66.15.220.0/24 701 -66.15.221.0/24 5650 -66.15.222.0/24 701 -66.15.223.0/24 5650 -66.15.224.0/20 701 -66.15.240.0/23 701 -66.15.242.0/24 701 -66.15.243.0/24 5650 -66.15.244.0/22 5650 -66.15.248.0/24 5650 -66.15.249.0/24 701 -66.15.250.0/23 701 -66.15.252.0/24 5650 -66.15.253.0/24 701 -66.15.254.0/23 5650 -66.16.0.0/16 7029 -66.17.0.0/18 14265 -66.17.66.0/23 22199 -66.17.72.0/22 22199 -66.17.78.0/23 22199 -66.17.80.0/23 30329 -66.17.82.0/24 20077 -66.17.83.0/24 30329 -66.17.84.0/22 30329 -66.17.88.0/22 30329 -66.17.92.0/24 30329 -66.17.93.0/24 35985 -66.17.94.0/23 30329 -66.17.96.0/19 26860 -66.17.128.0/24 3257 -66.17.129.0/24 33256 -66.17.130.0/23 3257 -66.17.132.0/22 3257 -66.17.136.0/22 3257 -66.17.140.0/24 3257 -66.17.141.0/24 23029 -66.17.142.0/24 17352 -66.17.143.0/24 3257 -66.17.144.0/21 3257 -66.17.152.0/22 46281 -66.17.156.0/24 3257 -66.17.157.0/24 40676 -66.17.158.0/23 3257 -66.17.160.0/20 3257 -66.17.176.0/21 3257 -66.17.184.0/24 3257 -66.17.185.0/24 15238 -66.17.186.0/23 3257 -66.17.188.0/22 3257 -66.17.192.0/20 3257 -66.17.208.0/21 3257 -66.17.216.0/22 3257 -66.17.220.0/24 3257 -66.17.221.0/24 15238 -66.17.222.0/23 3257 -66.17.224.0/21 3257 -66.17.232.0/22 3257 -66.17.236.0/23 3257 -66.17.238.0/24 3257 -66.17.239.0/24 40676 -66.17.240.0/21 3257 -66.17.248.0/22 3257 -66.17.252.0/23 3257 -66.17.254.0/24 3257 -66.17.255.0/24 32256 -66.18.0.0/20 13767 -66.18.16.0/20 6547 -66.18.32.0/19 26827 -66.18.64.0/19 22572 -66.18.96.0/19 19271 -66.18.128.0/19 18687 -66.18.160.0/20 11711 -66.18.176.0/20 16564 -66.18.192.0/18 26546 -66.19.0.0/16 7029 -66.20.0.0/19 6389 -66.20.32.0/21 6389 -66.20.40.0/22 6389 -66.20.44.0/24 6389 -66.20.45.0/24 23199 -66.20.46.0/23 6389 -66.20.48.0/20 6389 -66.20.64.0/21 6389 -66.20.72.0/21 7018 -66.20.80.0/20 6389 -66.20.96.0/19 6389 -66.20.128.0/18 6389 -66.20.192.0/20 6389 -66.20.208.0/22 6389 -66.20.212.0/23 29902 -66.20.214.0/23 6389 -66.20.216.0/21 6389 -66.20.224.0/20 6389 -66.20.240.0/22 6389 -66.20.244.0/24 2386 -66.20.245.0/24 6389 -66.20.246.0/23 6389 -66.20.248.0/24 63238 -66.20.249.0/24 6389 -66.20.250.0/23 6389 -66.20.252.0/22 6389 -66.21.0.0/19 6389 -66.21.32.0/21 6389 -66.21.40.0/23 6389 -66.21.42.0/24 32467 -66.21.43.0/24 6389 -66.21.44.0/22 6389 -66.21.48.0/20 6389 -66.21.64.0/18 6389 -66.21.128.0/18 6389 -66.21.192.0/19 6389 -66.21.224.0/20 6389 -66.21.240.0/24 6389 -66.21.241.0/24 2386 -66.21.242.0/23 6389 -66.21.244.0/22 6389 -66.21.248.0/21 6389 -66.22.0.0/19 8010 -66.22.32.0/20 8010 -66.22.48.0/24 4565 -66.22.49.0/24 8010 -66.22.50.0/23 8010 -66.22.52.0/22 8010 -66.22.56.0/21 8010 -66.22.64.0/18 8010 -66.22.128.0/17 8010 -66.23.0.0/21 8010 -66.23.8.0/22 8010 -66.23.12.0/23 8010 -66.23.14.0/24 8010 -66.23.15.0/24 4565 -66.23.16.0/20 8010 -66.23.32.0/19 8010 -66.23.64.0/18 8010 -66.23.128.0/19 8010 -66.23.160.0/20 8010 -66.23.176.0/21 8010 -66.23.184.0/22 8010 -66.23.188.0/23 8010 -66.23.190.0/24 46847 -66.23.191.0/24 8010 -66.23.193.0/24 20150 -66.23.196.0/24 20150 -66.23.198.0/24 8100 -66.23.199.0/24 20150 -66.23.200.0/21 63018 -66.23.208.0/24 262913 -66.23.209.0/24 394862 -66.23.210.0/23 394862 -66.23.212.0/22 22911 -66.23.216.0/24 397556 -66.23.218.0/24 397556 -66.23.220.0/22 22500 -66.23.224.0/20 19318 -66.23.240.0/20 23336 -66.24.0.0/16 11351 -66.25.0.0/18 11427 -66.25.64.0/19 11427 -66.25.96.0/19 33363 -66.25.128.0/17 11427 -66.26.0.0/16 11426 -66.27.0.0/19 10838 -66.27.32.0/21 20001 -66.27.40.0/22 20001 -66.27.44.0/23 20001 -66.27.46.0/23 25640 -66.27.48.0/20 20001 -66.27.64.0/18 20001 -66.27.128.0/17 20001 -66.28.0.0/20 174 -66.28.16.0/24 6494 -66.28.17.0/24 174 -66.28.18.0/23 174 -66.28.20.0/22 174 -66.28.24.0/22 174 -66.28.28.0/24 174 -66.28.29.0/24 33436 -66.28.30.0/23 174 -66.28.32.0/23 32554 -66.28.34.0/23 174 -66.28.36.0/22 174 -66.28.40.0/21 174 -66.28.48.0/20 174 -66.28.64.0/20 174 -66.28.80.0/23 174 -66.28.82.0/24 26541 -66.28.83.0/24 22654 -66.28.84.0/23 14454 -66.28.86.0/23 174 -66.28.88.0/23 22561 -66.28.90.0/24 22241 -66.28.91.0/24 174 -66.28.92.0/22 22561 -66.28.96.0/20 174 -66.28.112.0/22 174 -66.28.116.0/23 174 -66.28.118.0/23 22561 -66.28.120.0/21 174 -66.28.128.0/19 174 -66.28.160.0/22 174 -66.28.164.0/24 174 -66.28.165.0/24 25678 -66.28.166.0/23 174 -66.28.168.0/21 174 -66.28.176.0/22 174 -66.28.180.0/23 174 -66.28.182.0/24 30666 -66.28.183.0/24 174 -66.28.184.0/23 26819 -66.28.186.0/23 174 -66.28.188.0/22 174 -66.28.192.0/18 174 -66.29.0.0/18 8001 -66.29.64.0/20 8001 -66.29.80.0/21 8001 -66.29.88.0/23 8001 -66.29.90.0/24 8001 -66.29.91.0/24 63949 -66.29.92.0/22 8001 -66.29.96.0/19 8001 -66.29.128.0/19 19538 -66.29.160.0/19 32808 -66.29.192.0/19 17184 -66.29.224.0/19 29877 -66.30.0.0/15 7922 -66.32.0.0/23 26914 -66.32.2.0/24 7029 -66.32.3.0/24 26914 -66.32.4.0/22 26914 -66.32.8.0/21 7029 -66.32.16.0/20 26914 -66.32.32.0/19 7029 -66.32.64.0/23 26914 -66.32.66.0/24 7029 -66.32.67.0/24 26914 -66.32.68.0/22 26914 -66.32.72.0/21 7029 -66.32.80.0/20 26914 -66.32.96.0/23 26914 -66.32.98.0/24 7029 -66.32.99.0/24 26914 -66.32.100.0/22 26914 -66.32.104.0/21 7029 -66.32.112.0/20 26914 -66.32.128.0/17 7029 -66.33.0.0/17 13768 -66.33.128.0/18 7270 -66.33.192.0/23 26347 -66.33.194.0/24 26347 -66.33.196.0/22 26347 -66.33.200.0/24 26347 -66.33.202.0/23 26347 -66.33.204.0/23 26347 -66.33.207.0/24 26347 -66.33.208.0/20 26347 -66.33.224.0/19 3593 -66.34.0.0/16 54489 -66.35.0.0/21 26935 -66.35.8.0/24 40033 -66.35.9.0/24 26935 -66.35.10.0/24 26935 -66.35.11.0/24 40033 -66.35.12.0/22 40033 -66.35.16.0/20 40934 -66.35.32.0/22 22625 -66.35.36.0/24 32150 -66.35.37.0/24 22625 -66.35.38.0/24 22625 -66.35.39.0/24 32150 -66.35.40.0/21 22625 -66.35.48.0/24 32150 -66.35.49.0/24 22625 -66.35.50.0/23 22625 -66.35.52.0/24 22625 -66.35.53.0/24 26250 -66.35.54.0/23 22625 -66.35.56.0/22 22625 -66.35.60.0/23 22625 -66.35.62.0/24 32150 -66.35.63.0/24 22625 -66.35.64.0/20 396300 -66.35.80.0/24 396300 -66.35.81.0/24 394805 -66.35.82.0/23 396300 -66.35.84.0/22 396300 -66.35.88.0/21 396300 -66.35.96.0/19 14955 -66.35.128.0/20 7029 -66.35.144.0/21 7029 -66.35.152.0/24 22312 -66.35.153.0/24 7029 -66.35.154.0/23 7029 -66.35.156.0/22 7029 -66.35.160.0/19 7029 -66.35.192.0/19 3561 -66.35.224.0/22 3561 -66.35.228.0/23 3561 -66.35.230.0/24 3561 -66.35.231.0/24 394788 -66.35.232.0/21 3561 -66.35.240.0/20 3561 -66.36.0.0/20 7029 -66.36.16.0/21 7349 -66.36.32.0/19 7029 -66.36.92.0/23 14495 -66.36.96.0/20 13768 -66.36.112.0/22 33635 -66.36.116.0/23 33635 -66.36.119.0/24 33635 -66.36.120.0/24 33635 -66.36.122.0/23 33635 -66.36.124.0/22 33635 -66.36.128.0/19 6280 -66.36.160.0/20 14265 -66.36.176.0/21 14265 -66.36.184.0/22 14265 -66.36.188.0/23 14265 -66.36.190.0/24 14265 -66.36.191.0/24 3064 -66.36.192.0/19 22351 -66.36.226.0/23 14361 -66.36.228.0/22 14361 -66.36.232.0/24 14361 -66.36.234.0/24 64236 -66.36.236.0/22 14361 -66.36.240.0/20 14361 -66.37.0.0/19 19237 -66.37.32.0/22 46887 -66.37.36.0/24 46887 -66.37.37.0/24 35966 -66.37.38.0/24 46887 -66.37.39.0/24 46124 -66.37.40.0/22 46887 -66.37.44.0/24 62641 -66.37.45.0/24 46887 -66.37.46.0/24 46887 -66.37.47.0/24 11713 -66.37.48.0/20 13333 -66.37.64.0/19 16942 -66.37.100.0/24 37030 -66.37.103.0/24 29614 -66.37.106.0/24 30986 -66.37.112.0/20 46649 -66.37.128.0/20 16992 -66.37.144.0/21 16992 -66.37.152.0/22 16992 -66.37.156.0/24 21777 -66.37.157.0/24 16992 -66.37.158.0/23 16992 -66.37.160.0/19 6534 -66.37.192.0/19 3561 -66.37.224.0/19 22773 -66.38.0.0/22 11979 -66.38.4.0/23 16433 -66.38.6.0/23 11979 -66.38.8.0/22 26727 -66.38.12.0/22 11979 -66.38.16.0/21 11979 -66.38.24.0/22 11979 -66.38.28.0/23 11979 -66.38.30.0/24 26727 -66.38.31.0/24 29894 -66.38.32.0/21 29894 -66.38.40.0/22 16433 -66.38.44.0/24 26727 -66.38.45.0/24 11979 -66.38.46.0/24 11979 -66.38.48.0/21 11979 -66.38.56.0/23 26727 -66.38.58.0/23 11979 -66.38.60.0/22 11979 -66.38.64.0/20 11979 -66.38.80.0/23 11979 -66.38.82.0/24 11979 -66.38.84.0/24 26727 -66.38.88.0/21 26727 -66.38.96.0/19 16433 -66.38.128.0/24 577 -66.38.129.0/24 6539 -66.38.130.0/23 6539 -66.38.132.0/22 6539 -66.38.136.0/21 6539 -66.38.144.0/24 603 -66.38.145.0/24 6539 -66.38.146.0/24 603 -66.38.147.0/24 6539 -66.38.148.0/22 6539 -66.38.152.0/21 6539 -66.38.160.0/19 6539 -66.38.192.0/24 36493 -66.38.193.0/24 6539 -66.38.194.0/23 6539 -66.38.196.0/22 6539 -66.38.200.0/21 6539 -66.38.208.0/20 6539 -66.38.224.0/21 6539 -66.38.232.0/22 6539 -66.38.236.0/22 14112 -66.38.240.0/22 6539 -66.38.244.0/24 40282 -66.38.245.0/24 6539 -66.38.246.0/23 6539 -66.38.248.0/22 6539 -66.38.252.0/23 6539 -66.38.254.0/24 21610 -66.38.255.0/24 6539 -66.39.0.0/17 7859 -66.39.128.0/19 7859 -66.39.160.0/21 27008 -66.39.168.0/22 27008 -66.39.172.0/24 36330 -66.39.173.0/24 27008 -66.39.174.0/23 27008 -66.39.176.0/20 27008 -66.39.192.0/20 1421 -66.39.208.0/24 30359 -66.39.209.0/24 1421 -66.39.210.0/23 1421 -66.39.212.0/24 30359 -66.39.213.0/24 1421 -66.39.214.0/23 30359 -66.39.216.0/22 30359 -66.39.220.0/22 1421 -66.39.224.0/19 20115 -66.40.0.0/16 13768 -66.41.0.0/16 7922 -66.42.0.0/19 23314 -66.42.32.0/19 20473 -66.42.64.0/18 20473 -66.42.128.0/18 6181 -66.42.192.0/21 6181 -66.42.200.0/22 6181 -66.42.204.0/23 6181 -66.42.206.0/24 30059 -66.42.207.0/24 6181 -66.42.208.0/24 6181 -66.42.209.0/24 394375 -66.42.210.0/23 6181 -66.42.212.0/22 6181 -66.42.216.0/21 6181 -66.42.224.0/19 6181 -66.43.0.0/20 12025 -66.43.16.0/23 14233 -66.43.24.0/23 36175 -66.43.26.0/24 14233 -66.43.27.0/24 36175 -66.43.29.0/24 36175 -66.43.32.0/20 19170 -66.43.48.0/20 10929 -66.43.64.0/20 14669 -66.43.80.0/21 14669 -66.43.88.0/22 14669 -66.43.92.0/24 32035 -66.43.93.0/24 14669 -66.43.94.0/23 14669 -66.43.96.0/23 32035 -66.43.98.0/24 32035 -66.43.99.0/24 14669 -66.43.100.0/24 14669 -66.43.101.0/24 32035 -66.43.102.0/24 11308 -66.43.103.0/24 14669 -66.43.104.0/24 21726 -66.43.105.0/24 32035 -66.43.106.0/24 32035 -66.43.107.0/24 14669 -66.43.108.0/24 32035 -66.43.109.0/24 14669 -66.43.110.0/24 32035 -66.43.111.0/24 14669 -66.43.112.0/21 32035 -66.43.120.0/24 21726 -66.43.121.0/24 14669 -66.43.122.0/23 14669 -66.43.124.0/22 14669 -66.43.128.0/18 7029 -66.43.192.0/21 5056 -66.43.200.0/23 5056 -66.43.202.0/24 53347 -66.43.203.0/24 5056 -66.43.204.0/23 5056 -66.43.206.0/24 5056 -66.43.207.0/24 30325 -66.43.208.0/23 5056 -66.43.210.0/24 30325 -66.43.211.0/24 5056 -66.43.212.0/22 5056 -66.43.216.0/24 5056 -66.43.217.0/24 30325 -66.43.218.0/24 30325 -66.43.219.0/24 5056 -66.43.220.0/24 46627 -66.43.221.0/24 30325 -66.43.222.0/23 5056 -66.43.224.0/22 5056 -66.43.228.0/24 63394 -66.43.229.0/24 5056 -66.43.230.0/23 5056 -66.43.232.0/21 5056 -66.43.240.0/22 5056 -66.43.244.0/23 5056 -66.43.246.0/24 5056 -66.43.247.0/24 396878 -66.43.248.0/21 5056 -66.44.0.0/17 6079 -66.44.128.0/24 23465 -66.44.129.0/24 15100 -66.44.130.0/23 23465 -66.44.132.0/22 23465 -66.44.136.0/21 23465 -66.44.144.0/20 15100 -66.44.160.0/20 23465 -66.44.176.0/21 23465 -66.44.184.0/22 23465 -66.44.188.0/23 23465 -66.44.190.0/24 15100 -66.44.191.0/24 23465 -66.44.192.0/19 25853 -66.44.224.0/23 14477 -66.44.226.0/24 14477 -66.44.240.0/20 33647 -66.45.0.0/17 7381 -66.45.128.0/19 11232 -66.45.160.0/20 30340 -66.45.176.0/21 30340 -66.45.184.0/22 30340 -66.45.188.0/24 30340 -66.45.189.0/24 394457 -66.45.190.0/23 30340 -66.45.192.0/19 16503 -66.45.224.0/19 19318 -66.46.0.0/19 15290 -66.46.32.0/21 15290 -66.46.40.0/24 21570 -66.46.41.0/24 15290 -66.46.42.0/23 15290 -66.46.44.0/22 15290 -66.46.48.0/20 15290 -66.46.64.0/21 15290 -66.46.72.0/24 15290 -66.46.73.0/24 21570 -66.46.74.0/23 15290 -66.46.76.0/22 15290 -66.46.80.0/20 15290 -66.46.96.0/19 15290 -66.46.128.0/21 15290 -66.46.136.0/22 15290 -66.46.140.0/24 15290 -66.46.141.0/24 21774 -66.46.142.0/23 15290 -66.46.144.0/20 15290 -66.46.160.0/22 15290 -66.46.164.0/23 15290 -66.46.166.0/24 21570 -66.46.167.0/24 15290 -66.46.168.0/21 15290 -66.46.176.0/21 393698 -66.46.184.0/21 15290 -66.46.192.0/18 15290 -66.47.0.0/16 7029 -66.48.0.0/21 701 -66.48.8.0/22 701 -66.48.12.0/24 813 -66.48.13.0/24 701 -66.48.14.0/23 701 -66.48.16.0/20 701 -66.48.32.0/19 701 -66.48.64.0/18 701 -66.48.128.0/17 701 -66.49.0.0/17 7029 -66.49.128.0/18 11814 -66.49.192.0/20 33139 -66.49.208.0/20 11814 -66.49.224.0/20 11814 -66.49.240.0/21 11814 -66.49.248.0/22 11814 -66.49.252.0/23 33139 -66.49.254.0/24 33139 -66.49.255.0/24 11814 -66.50.0.0/19 10396 -66.50.32.0/21 10396 -66.50.40.0/22 10396 -66.50.44.0/24 10396 -66.50.45.0/24 26148 -66.50.46.0/23 10396 -66.50.48.0/20 10396 -66.50.64.0/18 10396 -66.50.128.0/17 10396 -66.51.0.0/21 13649 -66.51.8.0/22 13649 -66.51.12.0/23 13649 -66.51.14.0/24 394526 -66.51.15.0/24 13649 -66.51.16.0/21 13845 -66.51.24.0/21 13649 -66.51.32.0/20 393924 -66.51.48.0/22 3356 -66.51.52.0/24 3356 -66.51.53.0/24 3064 -66.51.54.0/23 3356 -66.51.56.0/21 3356 -66.51.64.0/19 7029 -66.51.96.0/19 13911 -66.51.128.0/20 25668 -66.51.144.0/20 12129 -66.51.160.0/20 18986 -66.51.176.0/20 19058 -66.51.192.0/19 19817 -66.51.224.0/20 26794 -66.51.240.0/22 33554 -66.51.244.0/23 33554 -66.51.246.0/24 46478 -66.51.247.0/24 33554 -66.51.248.0/21 33554 -66.54.0.0/21 5714 -66.54.16.0/21 5714 -66.54.28.0/22 5714 -66.54.36.0/22 5714 -66.54.40.0/21 15217 -66.54.48.0/22 5714 -66.54.56.0/22 2158 -66.54.60.0/22 5714 -66.54.64.0/21 14803 -66.54.72.0/21 1248 -66.54.80.0/20 1248 -66.54.96.0/22 12129 -66.54.104.0/24 397333 -66.54.105.0/24 397917 -66.54.106.0/23 7018 -66.54.110.0/23 11035 -66.54.112.0/21 33576 -66.54.120.0/22 13771 -66.54.124.0/24 13771 -66.54.125.0/24 19855 -66.54.126.0/23 33576 -66.54.128.0/22 3257 -66.54.132.0/22 46401 -66.54.136.0/21 3257 -66.54.144.0/20 3257 -66.54.160.0/22 3257 -66.54.164.0/24 31917 -66.54.165.0/24 3257 -66.54.166.0/23 3257 -66.54.168.0/21 3257 -66.54.176.0/21 3257 -66.54.184.0/24 14707 -66.54.185.0/24 3257 -66.54.186.0/23 3257 -66.54.188.0/22 3257 -66.54.192.0/22 3257 -66.54.196.0/23 3257 -66.54.198.0/24 3257 -66.54.199.0/24 11696 -66.54.200.0/22 3257 -66.54.204.0/23 3257 -66.54.206.0/24 40676 -66.54.207.0/24 3257 -66.54.208.0/20 3257 -66.54.224.0/21 3257 -66.54.232.0/22 40676 -66.54.236.0/22 3257 -66.54.240.0/20 3257 -66.55.0.0/20 3549 -66.55.16.0/23 3549 -66.55.18.0/23 26831 -66.55.20.0/22 3549 -66.55.24.0/21 3549 -66.55.32.0/21 3549 -66.55.40.0/23 3549 -66.55.42.0/24 3549 -66.55.43.0/24 7257 -66.55.44.0/22 3549 -66.55.48.0/20 3549 -66.55.64.0/23 40676 -66.55.66.0/24 46176 -66.55.67.0/24 40676 -66.55.68.0/24 40676 -66.55.69.0/24 46176 -66.55.70.0/24 174 -66.55.71.0/24 46176 -66.55.72.0/23 46176 -66.55.74.0/24 12260 -66.55.75.0/24 46176 -66.55.76.0/24 8100 -66.55.78.0/24 8100 -66.55.79.0/24 46176 -66.55.80.0/20 32181 -66.55.112.0/22 13802 -66.55.116.0/23 13802 -66.55.118.0/24 13802 -66.55.119.0/24 3855 -66.55.120.0/21 13802 -66.55.128.0/19 20473 -66.55.160.0/19 29877 -66.55.192.0/19 5760 -66.55.224.0/19 7029 -66.56.0.0/18 7922 -66.56.64.0/22 203999 -66.56.68.0/24 19710 -66.56.69.0/24 203999 -66.56.70.0/23 203999 -66.56.72.0/24 203999 -66.56.73.0/24 19710 -66.56.74.0/23 19710 -66.56.76.0/22 19710 -66.56.80.0/20 19710 -66.56.96.0/19 11426 -66.56.128.0/18 11426 -66.56.192.0/19 11426 -66.56.224.0/20 11426 -66.56.240.0/21 11426 -66.56.248.0/22 19115 -66.56.252.0/22 11426 -66.57.0.0/18 11426 -66.57.64.0/19 11426 -66.57.96.0/20 11426 -66.57.112.0/24 396324 -66.57.113.0/24 11426 -66.57.114.0/23 11426 -66.57.116.0/22 11426 -66.57.120.0/21 11426 -66.57.128.0/17 11426 -66.58.0.0/17 701 -66.58.128.0/17 8047 -66.59.0.0/19 17358 -66.59.32.0/21 14265 -66.59.40.0/23 14265 -66.59.42.0/24 14265 -66.59.43.0/24 396059 -66.59.44.0/22 14265 -66.59.48.0/21 7849 -66.59.56.0/22 7849 -66.59.60.0/24 7849 -66.59.61.0/24 14618 -66.59.62.0/24 14618 -66.59.63.0/24 7849 -66.59.64.0/19 4906 -66.59.96.0/24 209 -66.59.97.0/24 11590 -66.59.98.0/23 11590 -66.59.101.0/24 11590 -66.59.102.0/23 11590 -66.59.104.0/21 11590 -66.59.112.0/20 11590 -66.59.128.0/18 6539 -66.59.192.0/19 17184 -66.59.224.0/19 11123 -66.60.0.0/18 26608 -66.60.64.0/19 23532 -66.60.96.0/19 13415 -66.60.128.0/18 14051 -66.60.192.0/19 23465 -66.60.224.0/23 22442 -66.60.226.0/24 53406 -66.60.227.0/24 22442 -66.60.228.0/22 22442 -66.60.232.0/23 22442 -66.60.234.0/24 394437 -66.60.235.0/24 22442 -66.60.236.0/22 22442 -66.60.240.0/24 22442 -66.60.241.0/24 394437 -66.60.242.0/23 22442 -66.60.244.0/24 22442 -66.60.245.0/24 54781 -66.60.246.0/23 22442 -66.60.248.0/21 22442 -66.61.0.0/17 10796 -66.61.128.0/20 16787 -66.61.144.0/20 7843 -66.61.160.0/19 7843 -66.61.192.0/18 11426 -66.62.0.0/19 19092 -66.62.32.0/20 19092 -66.62.48.0/21 19092 -66.62.56.0/22 19092 -66.62.60.0/24 19092 -66.62.61.0/24 36222 -66.62.62.0/23 19092 -66.62.64.0/23 19092 -66.62.66.0/24 19092 -66.62.67.0/24 15177 -66.62.68.0/23 19092 -66.62.70.0/23 10947 -66.62.72.0/23 19092 -66.62.74.0/24 19092 -66.62.75.0/24 10947 -66.62.76.0/24 53607 -66.62.77.0/24 19092 -66.62.78.0/23 19092 -66.62.80.0/21 19092 -66.62.88.0/24 19092 -66.62.89.0/24 21632 -66.62.90.0/23 19092 -66.62.92.0/24 19092 -66.62.93.0/24 21632 -66.62.94.0/24 19092 -66.62.95.0/24 21632 -66.62.96.0/20 19092 -66.62.112.0/24 19092 -66.62.113.0/24 21632 -66.62.114.0/24 19092 -66.62.115.0/24 6461 -66.62.116.0/23 6461 -66.62.118.0/24 6461 -66.62.119.0/24 19092 -66.62.120.0/24 19092 -66.62.121.0/24 21632 -66.62.122.0/23 21632 -66.62.124.0/24 21632 -66.62.125.0/24 19092 -66.62.126.0/24 21632 -66.62.127.0/24 19092 -66.62.128.0/20 19092 -66.62.144.0/23 19092 -66.62.146.0/24 54650 -66.62.147.0/24 19092 -66.62.148.0/23 19092 -66.62.150.0/24 19092 -66.62.151.0/24 23492 -66.62.152.0/21 19092 -66.62.160.0/23 19092 -66.62.162.0/24 5715 -66.62.163.0/24 19092 -66.62.164.0/23 19092 -66.62.166.0/24 21632 -66.62.167.0/24 19092 -66.62.168.0/21 19092 -66.62.176.0/20 19092 -66.62.192.0/22 19092 -66.62.196.0/24 5715 -66.62.197.0/24 19092 -66.62.198.0/23 19092 -66.62.200.0/22 19092 -66.62.204.0/24 19092 -66.62.205.0/24 6461 -66.62.206.0/23 19092 -66.62.208.0/20 19092 -66.62.224.0/21 19092 -66.62.232.0/22 19092 -66.62.236.0/23 19092 -66.62.238.0/23 6461 -66.62.240.0/22 6461 -66.62.244.0/23 6461 -66.62.246.0/23 19092 -66.62.248.0/21 19092 -66.63.0.0/18 16559 -66.63.64.0/19 5760 -66.63.96.0/20 5760 -66.63.112.0/23 5760 -66.63.114.0/24 5760 -66.63.115.0/24 22847 -66.63.116.0/22 5760 -66.63.120.0/21 5760 -66.63.160.0/19 8100 -66.63.197.0/24 16526 -66.63.204.0/24 16526 -66.63.224.0/19 32262 -66.64.0.0/18 11215 -66.64.64.0/19 22163 -66.64.96.0/19 18712 -66.64.128.0/17 7029 -66.65.0.0/17 12271 -66.65.128.0/18 12271 -66.65.192.0/18 11351 -66.66.0.0/15 11351 -66.68.0.0/15 11427 -66.70.0.0/24 14492 -66.70.1.0/24 24043 -66.70.2.0/23 22205 -66.70.4.0/22 22205 -66.70.8.0/23 22205 -66.70.10.0/23 14492 -66.70.12.0/22 14492 -66.70.16.0/20 14492 -66.70.32.0/23 14492 -66.70.34.0/23 22205 -66.70.36.0/22 14492 -66.70.40.0/21 14492 -66.70.48.0/22 14492 -66.70.52.0/22 22205 -66.70.56.0/21 14492 -66.70.64.0/20 14492 -66.70.80.0/21 14492 -66.70.88.0/22 14492 -66.70.92.0/22 24043 -66.70.96.0/22 14492 -66.70.100.0/22 22205 -66.70.104.0/23 14492 -66.70.106.0/24 14492 -66.70.107.0/24 24043 -66.70.108.0/23 14492 -66.70.110.0/23 22205 -66.70.112.0/23 14492 -66.70.114.0/23 22205 -66.70.116.0/22 22205 -66.70.120.0/21 22205 -66.70.128.0/17 16276 -66.71.0.0/17 3999 -66.71.128.0/18 31034 -66.71.192.0/19 14438 -66.71.224.0/24 394715 -66.71.225.0/24 174 -66.71.226.0/23 174 -66.71.228.0/24 174 -66.71.229.0/24 394715 -66.71.230.0/23 394715 -66.71.232.0/22 394715 -66.71.236.0/22 174 -66.71.240.0/20 46562 -66.72.0.0/16 7018 -66.73.0.0/20 7018 -66.73.16.0/21 7018 -66.73.24.0/23 22093 -66.73.26.0/23 7018 -66.73.28.0/22 7018 -66.73.32.0/19 7018 -66.73.64.0/18 7018 -66.73.128.0/17 7018 -66.74.0.0/17 20001 -66.74.128.0/19 20001 -66.74.160.0/20 7224 -66.74.176.0/20 20001 -66.74.192.0/18 20001 -66.75.0.0/16 20001 -66.76.0.0/16 19108 -66.77.0.0/21 209 -66.77.8.0/23 209 -66.77.10.0/24 209 -66.77.11.0/24 22375 -66.77.12.0/22 209 -66.77.16.0/24 21622 -66.77.17.0/24 209 -66.77.18.0/23 209 -66.77.20.0/22 209 -66.77.24.0/21 209 -66.77.32.0/22 209 -66.77.36.0/23 209 -66.77.38.0/24 26959 -66.77.39.0/24 209 -66.77.40.0/21 209 -66.77.48.0/20 209 -66.77.64.0/22 209 -66.77.68.0/24 209 -66.77.69.0/24 13906 -66.77.70.0/24 209 -66.77.71.0/24 395818 -66.77.72.0/24 209 -66.77.73.0/24 13906 -66.77.74.0/23 209 -66.77.76.0/22 209 -66.77.80.0/20 209 -66.77.96.0/23 209 -66.77.98.0/24 10584 -66.77.99.0/24 209 -66.77.100.0/23 209 -66.77.102.0/24 33415 -66.77.103.0/24 209 -66.77.104.0/21 209 -66.77.112.0/22 209 -66.77.116.0/23 209 -66.77.118.0/24 209 -66.77.119.0/24 53316 -66.77.120.0/22 209 -66.77.124.0/24 209 -66.77.125.0/24 14459 -66.77.126.0/23 209 -66.77.128.0/20 209 -66.77.144.0/21 209 -66.77.152.0/23 209 -66.77.154.0/24 209 -66.77.155.0/24 3561 -66.77.156.0/22 209 -66.77.160.0/24 209 -66.77.161.0/24 21670 -66.77.162.0/23 209 -66.77.164.0/22 209 -66.77.168.0/21 209 -66.77.176.0/22 209 -66.77.180.0/23 209 -66.77.182.0/24 13330 -66.77.183.0/24 209 -66.77.184.0/21 209 -66.77.192.0/20 209 -66.77.208.0/21 209 -66.77.216.0/22 209 -66.77.220.0/23 209 -66.77.222.0/24 209 -66.77.223.0/24 393738 -66.77.224.0/20 209 -66.77.240.0/24 209 -66.77.241.0/24 13330 -66.77.242.0/23 209 -66.77.244.0/22 209 -66.77.248.0/22 209 -66.77.252.0/24 209 -66.77.253.0/24 22375 -66.77.254.0/23 209 -66.78.0.0/21 21769 -66.78.8.0/24 21769 -66.78.9.0/24 54103 -66.78.10.0/24 54103 -66.78.11.0/24 21769 -66.78.12.0/24 54103 -66.78.13.0/24 21769 -66.78.14.0/23 54103 -66.78.16.0/23 46261 -66.78.18.0/23 21769 -66.78.20.0/23 9009 -66.78.22.0/23 21769 -66.78.24.0/23 21769 -66.78.26.0/24 19437 -66.78.27.0/24 46261 -66.78.28.0/22 21769 -66.78.32.0/21 46261 -66.78.40.0/23 46261 -66.78.42.0/23 9009 -66.78.44.0/23 42831 -66.78.46.0/24 46261 -66.78.47.0/24 42831 -66.78.48.0/21 46261 -66.78.56.0/24 21769 -66.78.57.0/24 9009 -66.78.58.0/24 42831 -66.78.59.0/24 46261 -66.78.60.0/23 174 -66.78.62.0/24 8038 -66.78.63.0/24 21769 -66.78.64.0/20 54198 -66.78.80.0/21 54198 -66.78.88.0/22 54198 -66.78.96.0/19 53791 -66.78.128.0/18 18474 -66.78.192.0/21 23278 -66.78.200.0/21 11192 -66.78.208.0/21 23277 -66.78.216.0/21 26925 -66.78.224.0/22 32775 -66.78.228.0/22 32779 -66.78.232.0/22 23279 -66.78.236.0/22 32778 -66.78.240.0/23 32776 -66.78.242.0/23 32777 -66.78.244.0/23 11192 -66.78.246.0/23 36339 -66.78.248.0/23 20368 -66.78.250.0/23 11192 -66.78.254.0/23 32778 -66.79.0.0/23 16835 -66.79.2.0/23 209 -66.79.4.0/24 16835 -66.79.5.0/24 22561 -66.79.6.0/24 209 -66.79.7.0/24 22561 -66.79.8.0/22 22561 -66.79.12.0/23 16835 -66.79.14.0/23 209 -66.79.16.0/20 22561 -66.79.32.0/20 22561 -66.79.48.0/22 22561 -66.79.52.0/23 22561 -66.79.54.0/24 209 -66.79.55.0/24 22561 -66.79.56.0/21 22561 -66.79.64.0/21 22561 -66.79.72.0/22 22561 -66.79.76.0/22 16835 -66.79.80.0/22 16835 -66.79.84.0/23 22561 -66.79.86.0/23 209 -66.79.88.0/21 22561 -66.79.96.0/19 58224 -66.79.128.0/20 22211 -66.79.156.0/24 30636 -66.79.157.0/24 22132 -66.79.160.0/21 23338 -66.79.168.0/22 23338 -66.79.172.0/23 23338 -66.79.174.0/24 23338 -66.79.175.0/24 17213 -66.79.176.0/24 23338 -66.79.177.0/24 17213 -66.79.178.0/23 23338 -66.79.180.0/22 23338 -66.79.184.0/21 23338 -66.79.192.0/19 27553 -66.79.224.0/19 18997 -66.80.0.0/20 4565 -66.80.16.0/23 18566 -66.80.18.0/23 4565 -66.80.20.0/22 4565 -66.80.24.0/21 18566 -66.80.32.0/19 4565 -66.80.64.0/19 4565 -66.80.96.0/23 4565 -66.80.98.0/24 4565 -66.80.99.0/24 6267 -66.80.100.0/22 4565 -66.80.104.0/21 4565 -66.80.112.0/22 4565 -66.80.116.0/23 4565 -66.80.118.0/24 4565 -66.80.119.0/24 27423 -66.80.120.0/22 4565 -66.80.124.0/23 4565 -66.80.126.0/24 4565 -66.80.127.0/24 18566 -66.80.128.0/19 4565 -66.80.160.0/20 4565 -66.80.176.0/21 4565 -66.80.184.0/24 4565 -66.80.185.0/24 6267 -66.80.186.0/23 4565 -66.80.188.0/22 4565 -66.80.192.0/18 4565 -66.81.0.0/23 19864 -66.81.2.0/23 14265 -66.81.5.0/24 14265 -66.81.6.0/24 14265 -66.81.7.0/24 19864 -66.81.8.0/24 19864 -66.81.9.0/24 14265 -66.81.10.0/23 14265 -66.81.12.0/23 14265 -66.81.14.0/24 19864 -66.81.16.0/21 14265 -66.81.24.0/22 14265 -66.81.30.0/23 14265 -66.81.32.0/22 19864 -66.81.36.0/23 19864 -66.81.38.0/23 14265 -66.81.40.0/22 394811 -66.81.44.0/22 19864 -66.81.48.0/23 11915 -66.81.52.0/22 19864 -66.81.56.0/21 14265 -66.81.64.0/20 14265 -66.81.80.0/24 14265 -66.81.81.0/24 19864 -66.81.82.0/23 14265 -66.81.84.0/22 19864 -66.81.88.0/22 14265 -66.81.92.0/23 14265 -66.81.94.0/24 14265 -66.81.96.0/22 14265 -66.81.100.0/23 14265 -66.81.102.0/24 14265 -66.81.103.0/24 19864 -66.81.104.0/23 19864 -66.81.106.0/23 14265 -66.81.108.0/22 11915 -66.81.112.0/21 14265 -66.81.120.0/22 19864 -66.81.124.0/22 14265 -66.81.128.0/22 14265 -66.81.132.0/24 19864 -66.81.133.0/24 14265 -66.81.134.0/23 11915 -66.81.136.0/21 14265 -66.81.144.0/21 14265 -66.81.152.0/22 14265 -66.81.156.0/23 14265 -66.81.158.0/24 14265 -66.81.159.0/24 19864 -66.81.168.0/21 19864 -66.81.176.0/20 19864 -66.81.192.0/23 40034 -66.81.194.0/24 40034 -66.81.199.0/24 40034 -66.81.204.0/22 40034 -66.81.208.0/22 14265 -66.81.212.0/22 19864 -66.81.224.0/23 14265 -66.81.226.0/24 14265 -66.81.227.0/24 19864 -66.81.228.0/23 14265 -66.81.230.0/24 14265 -66.81.231.0/24 11915 -66.81.232.0/21 14265 -66.81.240.0/20 19864 -66.82.0.0/20 6621 -66.82.16.0/22 6621 -66.82.20.0/23 6621 -66.82.22.0/24 6621 -66.82.23.0/24 63062 -66.82.24.0/21 6621 -66.82.32.0/19 6621 -66.82.64.0/19 6621 -66.82.96.0/20 6621 -66.82.112.0/21 6621 -66.82.120.0/22 6621 -66.82.124.0/24 63062 -66.82.125.0/24 6621 -66.82.126.0/23 6621 -66.82.128.0/24 6621 -66.82.129.0/24 63062 -66.82.130.0/23 6621 -66.82.132.0/22 6621 -66.82.136.0/22 6621 -66.82.140.0/23 6621 -66.82.142.0/24 6621 -66.82.143.0/24 63062 -66.82.144.0/22 6621 -66.82.148.0/23 6621 -66.82.150.0/24 63062 -66.82.151.0/24 6621 -66.82.152.0/21 6621 -66.82.160.0/19 6621 -66.82.192.0/19 6621 -66.82.224.0/22 6621 -66.82.228.0/23 6621 -66.82.230.0/23 63062 -66.82.232.0/24 63062 -66.82.233.0/24 6621 -66.82.234.0/23 6621 -66.82.236.0/23 63062 -66.82.238.0/23 6621 -66.82.240.0/23 6621 -66.82.242.0/24 63062 -66.82.243.0/24 6621 -66.82.244.0/24 63062 -66.82.245.0/24 6621 -66.82.246.0/23 6621 -66.82.248.0/21 6621 -66.83.0.0/16 7029 -66.84.0.0/18 17054 -66.84.64.0/21 14537 -66.84.72.0/24 206174 -66.84.73.0/24 14537 -66.84.74.0/23 14537 -66.84.76.0/22 14537 -66.84.80.0/21 19517 -66.84.88.0/21 64267 -66.84.96.0/19 27216 -66.84.128.0/21 7029 -66.84.136.0/22 7029 -66.84.140.0/24 7029 -66.84.141.0/24 15237 -66.84.142.0/23 7029 -66.84.144.0/23 7029 -66.84.146.0/24 35997 -66.84.147.0/24 7029 -66.84.148.0/22 7029 -66.84.152.0/21 7029 -66.84.160.0/22 7268 -66.84.164.0/23 7268 -66.84.166.0/24 7268 -66.84.167.0/24 7029 -66.84.168.0/21 7029 -66.84.176.0/20 7029 -66.84.192.0/19 7029 -66.84.224.0/21 7029 -66.84.232.0/22 26284 -66.84.236.0/22 7029 -66.84.240.0/20 7029 -66.85.1.0/24 394316 -66.85.3.0/24 2386 -66.85.4.0/24 36790 -66.85.5.0/24 23391 -66.85.6.0/24 26479 -66.85.8.0/24 396481 -66.85.9.0/24 40875 -66.85.10.0/24 19381 -66.85.11.0/24 394656 -66.85.12.0/24 394292 -66.85.13.0/24 394002 -66.85.14.0/23 14586 -66.85.16.0/22 13415 -66.85.20.0/24 4324 -66.85.21.0/24 396133 -66.85.22.0/23 393985 -66.85.24.0/24 4324 -66.85.26.0/23 8100 -66.85.28.0/22 54643 -66.85.32.0/23 4324 -66.85.34.0/24 32424 -66.85.35.0/24 4324 -66.85.36.0/22 4324 -66.85.40.0/24 4324 -66.85.41.0/24 53357 -66.85.42.0/24 4324 -66.85.43.0/24 395777 -66.85.44.0/24 393960 -66.85.45.0/24 397438 -66.85.46.0/23 393960 -66.85.48.0/22 62537 -66.85.52.0/23 62537 -66.85.56.0/24 11433 -66.85.57.0/24 26637 -66.85.58.0/24 4324 -66.85.59.0/24 17378 -66.85.60.0/24 394205 -66.85.61.0/24 4324 -66.85.62.0/24 394257 -66.85.63.0/24 18683 -66.85.64.0/24 394267 -66.85.66.0/24 4324 -66.85.67.0/24 394301 -66.85.68.0/24 4324 -66.85.69.0/24 394309 -66.85.70.0/24 32382 -66.85.72.0/21 19969 -66.85.80.0/24 14586 -66.85.81.0/24 393227 -66.85.82.0/23 394032 -66.85.84.0/23 18812 -66.85.86.0/23 11492 -66.85.88.0/24 11403 -66.85.89.0/24 32748 -66.85.90.0/24 376 -66.85.91.0/24 394347 -66.85.92.0/22 64236 -66.85.96.0/19 14265 -66.85.128.0/18 20454 -66.85.192.0/20 14164 -66.85.208.0/20 11979 -66.85.224.0/20 26827 -66.85.240.0/21 21960 -66.85.248.0/22 36236 -66.85.252.0/23 63318 -66.85.254.0/24 395535 -66.86.0.0/19 4282 -66.86.32.0/21 4282 -66.86.40.0/21 22561 -66.86.48.0/20 2379 -66.86.64.0/20 5778 -66.86.80.0/20 7191 -66.86.96.0/19 4283 -66.86.128.0/21 22561 -66.86.136.0/21 2379 -66.86.144.0/20 5778 -66.86.160.0/19 2379 -66.86.192.0/19 4284 -66.86.224.0/19 4282 -66.87.0.0/21 10507 -66.87.8.0/23 10507 -66.87.11.0/24 10507 -66.87.12.0/22 10507 -66.87.16.0/20 10507 -66.87.32.0/23 10507 -66.87.41.0/24 10507 -66.87.42.0/23 10507 -66.87.44.0/22 10507 -66.87.48.0/22 10507 -66.87.53.0/24 10507 -66.87.54.0/23 10507 -66.87.56.0/21 10507 -66.87.64.0/19 10507 -66.87.96.0/21 10507 -66.87.104.0/22 10507 -66.87.112.0/20 10507 -66.87.128.0/18 10507 -66.87.192.0/24 10507 -66.87.196.0/22 10507 -66.87.200.0/21 10507 -66.87.208.0/23 10507 -66.88.0.0/15 2828 -66.90.0.0/18 14288 -66.90.64.0/18 174 -66.90.128.0/17 7459 -66.91.0.0/16 20001 -66.92.0.0/18 18566 -66.92.64.0/24 17184 -66.92.65.0/24 18566 -66.92.66.0/23 18566 -66.92.68.0/22 18566 -66.92.72.0/21 18566 -66.92.80.0/20 18566 -66.92.96.0/19 18566 -66.92.128.0/20 18566 -66.92.144.0/21 18566 -66.92.152.0/22 18566 -66.92.156.0/23 18566 -66.92.158.0/24 18566 -66.92.159.0/24 11696 -66.92.160.0/19 18566 -66.92.192.0/19 18566 -66.92.224.0/24 17184 -66.92.225.0/24 18566 -66.92.226.0/23 18566 -66.92.228.0/22 18566 -66.92.232.0/21 18566 -66.92.240.0/20 18566 -66.93.0.0/18 18566 -66.93.64.0/20 18566 -66.93.80.0/22 18566 -66.93.84.0/23 18566 -66.93.86.0/24 18566 -66.93.87.0/24 17184 -66.93.88.0/21 18566 -66.93.96.0/19 18566 -66.93.128.0/17 18566 -66.94.0.0/19 21928 -66.94.32.0/23 7381 -66.94.36.0/23 7381 -66.94.38.0/24 7381 -66.94.40.0/21 7381 -66.94.48.0/24 32923 -66.94.64.0/19 22958 -66.94.96.0/20 394513 -66.94.112.0/21 394513 -66.94.120.0/22 394513 -66.94.124.0/22 395813 -66.94.128.0/20 17306 -66.94.160.0/20 17306 -66.94.188.0/22 17306 -66.94.192.0/23 12119 -66.94.195.0/24 21908 -66.94.196.0/24 12119 -66.94.197.0/24 21908 -66.94.198.0/23 21908 -66.94.200.0/21 21908 -66.94.208.0/24 12119 -66.94.209.0/24 21908 -66.94.210.0/24 21908 -66.94.211.0/24 12119 -66.94.212.0/24 21908 -66.94.216.0/23 21908 -66.94.220.0/22 21908 -66.95.0.0/16 4565 -66.96.0.0/20 13337 -66.96.16.0/20 30528 -66.96.32.0/23 6505 -66.96.34.0/23 5511 -66.96.36.0/22 5511 -66.96.40.0/21 5511 -66.96.48.0/20 5511 -66.96.64.0/20 10430 -66.96.80.0/20 29802 -66.96.96.0/20 46208 -66.96.112.0/20 715 -66.96.128.0/18 29873 -66.96.192.0/20 56300 -66.96.208.0/21 56300 -66.96.216.0/23 56300 -66.96.218.0/24 56300 -66.96.219.0/24 133136 -66.96.220.0/23 133136 -66.96.222.0/24 132132 -66.96.223.0/24 133136 -66.96.224.0/19 63859 -66.97.0.0/20 10848 -66.97.16.0/20 26677 -66.97.32.0/20 27823 -66.97.48.0/20 27294 -66.97.64.0/19 40788 -66.97.96.0/20 33125 -66.97.128.0/22 13649 -66.97.132.0/24 13649 -66.97.133.0/24 46802 -66.97.134.0/23 13649 -66.97.136.0/21 13649 -66.97.144.0/22 7018 -66.97.160.0/23 396458 -66.97.162.0/23 29711 -66.97.164.0/24 40108 -66.97.165.0/24 16582 -66.97.166.0/24 55087 -66.97.167.0/24 17216 -66.97.168.0/24 11589 -66.97.169.0/24 396104 -66.97.170.0/24 5056 -66.97.171.0/24 21607 -66.97.172.0/23 395705 -66.97.174.0/23 395746 -66.97.176.0/24 36237 -66.97.177.0/24 6939 -66.97.178.0/24 394444 -66.97.179.0/24 64267 -66.97.180.0/22 18875 -66.97.184.0/23 394471 -66.97.187.0/24 394471 -66.97.188.0/24 397692 -66.97.189.0/24 393418 -66.97.190.0/23 396403 -66.97.192.0/19 11061 -66.97.224.0/21 26794 -66.97.232.0/24 26794 -66.97.233.0/24 18780 -66.97.234.0/23 26794 -66.97.236.0/24 26794 -66.97.237.0/24 394321 -66.97.238.0/24 26794 -66.97.239.0/24 394321 -66.97.240.0/23 26794 -66.97.242.0/24 26794 -66.97.243.0/24 40569 -66.97.244.0/22 26794 -66.97.248.0/22 26794 -66.97.252.0/24 26794 -66.97.253.0/24 11138 -66.97.254.0/24 26794 -66.97.255.0/24 11138 -66.98.0.0/18 6400 -66.98.64.0/19 6400 -66.98.96.0/21 54519 -66.98.104.0/21 19149 -66.98.112.0/20 25820 -66.98.128.0/17 36351 -66.99.0.0/22 6325 -66.99.4.0/24 6325 -66.99.5.0/24 19480 -66.99.6.0/23 6325 -66.99.8.0/22 19941 -66.99.12.0/22 6325 -66.99.16.0/20 6325 -66.99.32.0/19 6325 -66.99.64.0/18 6325 -66.99.128.0/18 6325 -66.99.192.0/19 6325 -66.99.224.0/20 6325 -66.99.240.0/23 46286 -66.99.242.0/23 6325 -66.99.244.0/22 6325 -66.99.248.0/21 6325 -66.100.0.0/18 3561 -66.100.64.0/19 3561 -66.100.96.0/21 3561 -66.100.104.0/22 3561 -66.100.108.0/24 46854 -66.100.109.0/24 3561 -66.100.110.0/23 3561 -66.100.112.0/24 14858 -66.100.113.0/24 3561 -66.100.114.0/23 3561 -66.100.116.0/22 3561 -66.100.120.0/21 3561 -66.100.128.0/20 3561 -66.100.144.0/21 3561 -66.100.152.0/24 3561 -66.100.153.0/24 8132 -66.100.154.0/23 3561 -66.100.156.0/22 3561 -66.100.160.0/19 3561 -66.100.192.0/20 3561 -66.100.208.0/22 3561 -66.100.212.0/23 3561 -66.100.214.0/24 3561 -66.100.215.0/24 27328 -66.100.216.0/21 3561 -66.100.224.0/19 3561 -66.101.0.0/17 3561 -66.101.128.0/18 3561 -66.101.192.0/21 46696 -66.101.200.0/21 3561 -66.101.208.0/22 3561 -66.101.212.0/24 46696 -66.101.213.0/24 3561 -66.101.214.0/23 3561 -66.101.216.0/22 19271 -66.101.220.0/22 3561 -66.101.224.0/19 3561 -66.102.0.0/20 15169 -66.102.16.0/20 36538 -66.102.32.0/20 715 -66.102.48.0/20 13651 -66.102.64.0/19 23252 -66.102.96.0/24 394715 -66.102.97.0/24 174 -66.102.98.0/23 174 -66.102.100.0/22 174 -66.102.104.0/21 174 -66.102.112.0/20 174 -66.102.128.0/20 15244 -66.102.144.0/21 15121 -66.102.152.0/24 15121 -66.102.154.0/23 15121 -66.102.156.0/22 15121 -66.102.160.0/20 16572 -66.102.176.0/21 16572 -66.102.184.0/23 16572 -66.102.186.0/24 20057 -66.102.187.0/24 16572 -66.102.188.0/22 16572 -66.102.192.0/20 11061 -66.102.208.0/20 26725 -66.102.224.0/20 13876 -66.102.240.0/24 4809 -66.102.241.0/24 36678 -66.102.242.0/23 4134 -66.102.244.0/23 4134 -66.102.246.0/24 4134 -66.102.247.0/24 4809 -66.102.248.0/24 36678 -66.102.249.0/24 4809 -66.102.250.0/23 36678 -66.102.252.0/24 4809 -66.102.253.0/24 26484 -66.102.254.0/24 4809 -66.102.255.0/24 4134 -66.103.0.0/20 23089 -66.103.16.0/20 32475 -66.103.32.0/19 23184 -66.103.64.0/20 23027 -66.103.80.0/21 32841 -66.103.90.0/23 23027 -66.103.92.0/24 23027 -66.103.96.0/20 12191 -66.103.112.0/20 8025 -66.103.129.0/24 16557 -66.103.130.0/23 16557 -66.103.132.0/22 16557 -66.103.143.0/24 16557 -66.103.145.0/24 16557 -66.103.146.0/23 16557 -66.103.148.0/24 16557 -66.103.150.0/23 16557 -66.103.159.0/24 16557 -66.103.160.0/19 23465 -66.103.192.0/19 14663 -66.103.224.0/22 12129 -66.103.228.0/23 12129 -66.103.230.0/24 55293 -66.103.231.0/24 12129 -66.103.232.0/21 12129 -66.103.240.0/22 12129 -66.103.244.0/24 12129 -66.103.245.0/24 19224 -66.103.246.0/23 12129 -66.103.248.0/22 12129 -66.103.252.0/23 12129 -66.103.254.0/24 55293 -66.103.255.0/24 12129 -66.104.0.0/22 2828 -66.104.4.0/24 12152 -66.104.5.0/24 2828 -66.104.6.0/23 2828 -66.104.8.0/21 2828 -66.104.16.0/20 2828 -66.104.32.0/20 2828 -66.104.48.0/21 2828 -66.104.56.0/23 2828 -66.104.58.0/24 2828 -66.104.59.0/24 12115 -66.104.60.0/22 2828 -66.104.64.0/19 2828 -66.104.96.0/22 2828 -66.104.100.0/23 2828 -66.104.102.0/24 40715 -66.104.103.0/24 2828 -66.104.104.0/21 2828 -66.104.112.0/20 2828 -66.104.128.0/20 2828 -66.104.144.0/21 2828 -66.104.152.0/23 2828 -66.104.154.0/24 2828 -66.104.155.0/24 16493 -66.104.156.0/22 2828 -66.104.160.0/19 2828 -66.104.192.0/18 2828 -66.105.0.0/16 2828 -66.106.0.0/17 2828 -66.106.128.0/19 2828 -66.106.160.0/20 2828 -66.106.176.0/21 2828 -66.106.184.0/22 2828 -66.106.188.0/24 4565 -66.106.189.0/24 2828 -66.106.190.0/23 2828 -66.106.192.0/18 2828 -66.107.0.0/16 2828 -66.108.0.0/16 12271 -66.109.0.0/20 7843 -66.109.16.0/20 31797 -66.109.32.0/21 13536 -66.109.40.0/23 13536 -66.109.42.0/24 13536 -66.109.43.0/24 26945 -66.109.44.0/22 13536 -66.109.48.0/21 13536 -66.109.56.0/21 21752 -66.109.64.0/20 7029 -66.109.80.0/21 31814 -66.109.88.0/22 31814 -66.109.92.0/23 31814 -66.109.94.0/24 31814 -66.109.95.0/24 22773 -66.109.96.0/20 11404 -66.109.112.0/21 19504 -66.109.120.0/21 32758 -66.109.128.0/19 21947 -66.109.160.0/19 15227 -66.109.208.0/20 39939 -66.109.224.0/19 7029 -66.110.0.0/22 6453 -66.110.4.0/23 6453 -66.110.6.0/23 18563 -66.110.8.0/21 6453 -66.110.16.0/20 6453 -66.110.32.0/22 6453 -66.110.36.0/23 6453 -66.110.38.0/24 6453 -66.110.39.0/24 7029 -66.110.40.0/23 6453 -66.110.42.0/24 6453 -66.110.43.0/24 7029 -66.110.44.0/22 6453 -66.110.48.0/20 6453 -66.110.64.0/21 6453 -66.110.72.0/23 6453 -66.110.74.0/24 394469 -66.110.75.0/24 6453 -66.110.76.0/22 6453 -66.110.80.0/20 6453 -66.110.96.0/24 6453 -66.110.97.0/24 12271 -66.110.98.0/23 6453 -66.110.100.0/22 6453 -66.110.104.0/21 6453 -66.110.112.0/20 11259 -66.110.128.0/19 852 -66.110.160.0/20 852 -66.110.176.0/20 26891 -66.110.192.0/20 31877 -66.110.208.0/24 63010 -66.110.209.0/24 31877 -66.110.210.0/23 31877 -66.110.212.0/24 31877 -66.110.213.0/24 63010 -66.110.214.0/23 31877 -66.110.216.0/24 31877 -66.110.217.0/24 63010 -66.110.218.0/23 31877 -66.110.220.0/23 31877 -66.110.222.0/24 31877 -66.110.223.0/24 64261 -66.110.224.0/19 22709 -66.111.0.0/21 11403 -66.111.8.0/24 11403 -66.111.9.0/24 57624 -66.111.10.0/23 11403 -66.111.12.0/22 11403 -66.111.16.0/22 11656 -66.111.22.0/24 11656 -66.111.25.0/24 11656 -66.111.27.0/24 11656 -66.111.29.0/24 11656 -66.111.32.0/20 20371 -66.111.48.0/22 11917 -66.111.53.0/24 29775 -66.111.56.0/23 393476 -66.111.60.0/24 395558 -66.111.61.0/24 13213 -66.111.62.0/23 30633 -66.111.64.0/19 13768 -66.111.96.0/20 20021 -66.111.112.0/20 36728 -66.111.129.0/24 18784 -66.111.131.0/24 22292 -66.111.138.0/23 7381 -66.111.140.0/23 7381 -66.111.147.0/24 7381 -66.111.150.0/24 7381 -66.111.152.0/24 7381 -66.111.153.0/24 18784 -66.111.160.0/22 7545 -66.111.167.0/24 7545 -66.111.168.0/24 1221 -66.111.170.0/23 2764 -66.111.172.0/23 2764 -66.111.177.0/24 7381 -66.111.183.0/24 7381 -66.111.188.0/22 7381 -66.111.192.0/18 35041 -66.112.0.0/19 22561 -66.112.32.0/21 22561 -66.112.40.0/22 22561 -66.112.44.0/24 22561 -66.112.45.0/24 209 -66.112.46.0/23 22561 -66.112.48.0/20 22561 -66.112.64.0/21 22561 -66.112.72.0/22 22561 -66.112.76.0/22 209 -66.112.80.0/20 22561 -66.112.96.0/21 22561 -66.112.104.0/23 22561 -66.112.106.0/24 209 -66.112.107.0/24 22561 -66.112.108.0/22 22561 -66.112.112.0/20 22561 -66.112.128.0/20 5511 -66.112.145.0/24 8119 -66.112.146.0/23 8119 -66.112.148.0/22 8119 -66.112.152.0/23 8119 -66.112.154.0/24 8119 -66.112.156.0/23 8119 -66.112.160.0/22 40285 -66.112.164.0/23 40285 -66.112.166.0/24 40285 -66.112.168.0/21 40285 -66.112.176.0/20 36817 -66.112.192.0/20 22378 -66.112.208.0/20 25820 -66.112.224.0/20 395461 -66.112.240.0/22 395461 -66.112.244.0/23 395461 -66.112.248.0/21 395461 -66.113.0.0/19 15221 -66.113.32.0/23 8057 -66.113.34.0/24 8057 -66.113.35.0/24 33339 -66.113.36.0/24 33339 -66.113.37.0/24 8057 -66.113.38.0/24 19605 -66.113.39.0/24 40933 -66.113.40.0/24 40933 -66.113.41.0/24 33339 -66.113.42.0/23 8057 -66.113.44.0/24 40933 -66.113.45.0/24 1378 -66.113.46.0/23 33339 -66.113.48.0/21 19605 -66.113.56.0/22 33339 -66.113.60.0/23 40933 -66.113.62.0/24 33339 -66.113.63.0/24 8057 -66.113.96.0/22 30170 -66.113.100.0/24 30170 -66.113.101.0/24 393387 -66.113.102.0/23 30170 -66.113.104.0/24 30170 -66.113.105.0/24 26548 -66.113.106.0/23 30170 -66.113.108.0/22 30170 -66.113.112.0/20 852 -66.113.128.0/23 3064 -66.113.130.0/24 3064 -66.113.135.0/24 3064 -66.113.136.0/24 3064 -66.113.138.0/24 3064 -66.113.160.0/21 15216 -66.113.168.0/24 3064 -66.113.176.0/20 14280 -66.113.192.0/20 14280 -66.113.208.0/20 15216 -66.113.224.0/21 15216 -66.113.232.0/24 3064 -66.113.233.0/24 15216 -66.113.234.0/23 15216 -66.113.236.0/22 15216 -66.113.240.0/20 15216 -66.114.0.0/19 26894 -66.114.32.0/20 13831 -66.114.49.0/24 36408 -66.114.52.0/24 36408 -66.114.55.0/24 36408 -66.114.56.0/23 36408 -66.114.60.0/23 36408 -66.114.62.0/24 36408 -66.114.64.0/19 19940 -66.114.96.0/19 13649 -66.114.128.0/19 18530 -66.114.160.0/20 13445 -66.114.176.0/20 17306 -66.114.192.0/18 3356 -66.115.0.0/22 13645 -66.115.4.0/22 7018 -66.115.8.0/21 13645 -66.115.16.0/20 13645 -66.115.32.0/19 13645 -66.115.64.0/20 40545 -66.115.80.0/20 2727 -66.115.96.0/22 13368 -66.115.104.0/23 13368 -66.115.106.0/24 13368 -66.115.108.0/24 13368 -66.115.113.0/24 13368 -66.115.114.0/23 13368 -66.115.116.0/22 13368 -66.115.120.0/23 13368 -66.115.122.0/24 7018 -66.115.124.0/23 7018 -66.115.126.0/24 7018 -66.115.128.0/19 46562 -66.115.160.0/22 46562 -66.115.164.0/23 46562 -66.115.166.0/24 46562 -66.115.167.0/24 22384 -66.115.168.0/21 46562 -66.115.176.0/20 46562 -66.115.192.0/23 13576 -66.115.194.0/24 395417 -66.115.195.0/24 13576 -66.115.196.0/23 13576 -66.115.198.0/24 13576 -66.115.199.0/24 395037 -66.115.200.0/24 13576 -66.115.201.0/24 23011 -66.115.202.0/24 393417 -66.115.203.0/24 13576 -66.115.204.0/22 13576 -66.115.208.0/20 13576 -66.115.224.0/22 13576 -66.115.228.0/24 13576 -66.115.229.0/24 54061 -66.115.230.0/24 54061 -66.115.231.0/24 13576 -66.115.232.0/21 13576 -66.115.240.0/24 13576 -66.115.241.0/24 20014 -66.115.242.0/23 13576 -66.115.244.0/22 13576 -66.115.248.0/21 13576 -66.116.0.0/18 5742 -66.116.64.0/20 17403 -66.116.80.0/20 54483 -66.116.96.0/21 23005 -66.116.104.0/24 23005 -66.116.105.0/24 395468 -66.116.106.0/23 23005 -66.116.108.0/22 23005 -66.116.112.0/23 27496 -66.116.114.0/23 23005 -66.116.116.0/22 23005 -66.116.120.0/21 23005 -66.116.128.0/17 46606 -66.117.0.0/24 22611 -66.117.1.0/24 17139 -66.117.2.0/24 17139 -66.117.3.0/24 22611 -66.117.4.0/23 22611 -66.117.6.0/23 17139 -66.117.8.0/22 17139 -66.117.12.0/23 17139 -66.117.14.0/23 22611 -66.117.16.0/20 15224 -66.117.32.0/20 29748 -66.117.48.0/22 29748 -66.117.52.0/24 29748 -66.117.53.0/24 19920 -66.117.54.0/23 29748 -66.117.56.0/21 29748 -66.117.64.0/21 31857 -66.117.72.0/21 12111 -66.117.80.0/22 395494 -66.117.84.0/24 10835 -66.117.85.0/24 12111 -66.117.86.0/23 12111 -66.117.88.0/21 12111 -66.117.96.0/20 17211 -66.117.112.0/20 8029 -66.117.128.0/20 7235 -66.117.144.0/21 7235 -66.117.152.0/23 36734 -66.117.154.0/23 7235 -66.117.156.0/22 7235 -66.117.160.0/19 10692 -66.117.192.0/22 6181 -66.117.196.0/24 26937 -66.117.197.0/24 6181 -66.117.198.0/23 6181 -66.117.200.0/22 6181 -66.117.204.0/23 6181 -66.117.206.0/24 6181 -66.117.207.0/24 54076 -66.117.208.0/24 20040 -66.117.209.0/24 6181 -66.117.210.0/23 6181 -66.117.212.0/22 6181 -66.117.216.0/21 6181 -66.117.224.0/22 6181 -66.117.228.0/24 6181 -66.117.229.0/24 25683 -66.117.230.0/23 6181 -66.117.232.0/21 6181 -66.117.240.0/20 6181 -66.118.8.0/24 32152 -66.118.64.0/19 6536 -66.118.96.0/20 22646 -66.118.112.0/20 26166 -66.118.128.0/18 25019 -66.118.192.0/19 6653 -66.118.241.0/24 32514 -66.119.0.0/20 21737 -66.119.16.0/21 21737 -66.119.24.0/23 21737 -66.119.26.0/24 395655 -66.119.27.0/24 21737 -66.119.28.0/22 21737 -66.119.32.0/20 3561 -66.119.48.0/20 10947 -66.119.64.0/21 22364 -66.119.72.0/21 12956 -66.119.80.0/21 12956 -66.119.88.0/23 12956 -66.119.90.0/24 12956 -66.119.91.0/24 62913 -66.119.92.0/24 12127 -66.119.93.0/24 12956 -66.119.94.0/23 13682 -66.119.96.0/20 54665 -66.119.112.0/24 13565 -66.119.113.0/24 20145 -66.119.118.0/24 396488 -66.119.119.0/24 6939 -66.119.120.0/22 30640 -66.119.124.0/23 18692 -66.119.128.0/20 30336 -66.119.144.0/20 8075 -66.119.160.0/20 20161 -66.119.176.0/22 20161 -66.119.180.0/24 20161 -66.119.181.0/24 16570 -66.119.182.0/23 20161 -66.119.184.0/21 20161 -66.119.192.0/19 16713 -66.119.224.0/20 16955 -66.119.240.0/20 25801 -66.120.0.0/20 7132 -66.120.16.0/21 7132 -66.120.24.0/22 7132 -66.120.28.0/24 7132 -66.120.29.0/24 22624 -66.120.30.0/24 7132 -66.120.31.0/24 20066 -66.120.32.0/19 7132 -66.120.64.0/18 7132 -66.120.128.0/17 7132 -66.121.0.0/16 7132 -66.122.0.0/15 7132 -66.124.0.0/15 7132 -66.126.0.0/19 7132 -66.126.32.0/23 22352 -66.126.34.0/23 7132 -66.126.36.0/22 7132 -66.126.40.0/21 22352 -66.126.48.0/20 7132 -66.126.64.0/18 7132 -66.126.128.0/19 7132 -66.126.160.0/20 7132 -66.126.176.0/21 7132 -66.126.184.0/22 7132 -66.126.188.0/24 26325 -66.126.189.0/24 7132 -66.126.190.0/23 7132 -66.126.192.0/18 7132 -66.127.0.0/17 7132 -66.127.128.0/20 7132 -66.127.144.0/23 7132 -66.127.146.0/24 11188 -66.127.147.0/24 7132 -66.127.148.0/22 7132 -66.127.152.0/23 7132 -66.127.154.0/24 5033 -66.127.155.0/24 7132 -66.127.156.0/22 7132 -66.127.160.0/19 7132 -66.127.192.0/18 7132 -66.128.0.0/21 30666 -66.128.8.0/22 30666 -66.128.12.0/24 21655 -66.128.13.0/24 22956 -66.128.14.0/23 30666 -66.128.16.0/22 10322 -66.128.32.0/20 263236 -66.128.48.0/20 7819 -66.128.64.0/22 3561 -66.128.68.0/22 15072 -66.128.72.0/21 3561 -66.128.80.0/20 22995 -66.128.96.0/19 20115 -66.128.128.0/20 54665 -66.128.144.0/20 2734 -66.128.160.0/20 13576 -66.128.176.0/23 13576 -66.128.178.0/24 398112 -66.128.179.0/24 13576 -66.128.180.0/22 13576 -66.128.184.0/22 13576 -66.128.188.0/24 13576 -66.128.189.0/24 19019 -66.128.190.0/23 19019 -66.128.192.0/20 54301 -66.128.208.0/20 32022 -66.128.224.0/20 3561 -66.128.240.0/20 40237 -66.129.0.0/19 3901 -66.129.33.0/24 26981 -66.129.39.0/24 26981 -66.129.41.0/24 26981 -66.129.42.0/24 26981 -66.129.44.0/22 26981 -66.129.48.0/20 39939 -66.129.64.0/18 19271 -66.129.128.0/19 10865 -66.129.160.0/23 23550 -66.129.164.0/23 23550 -66.129.166.0/24 14957 -66.129.167.0/24 23550 -66.129.168.0/21 23550 -66.129.176.0/20 13768 -66.129.224.0/22 14203 -66.129.232.0/22 14203 -66.129.237.0/24 14203 -66.129.238.0/24 21870 -66.129.239.0/24 14203 -66.129.240.0/23 14203 -66.129.242.0/24 14203 -66.129.246.0/24 14203 -66.130.0.0/15 5769 -66.132.0.0/22 35884 -66.132.4.0/22 174 -66.132.8.0/21 174 -66.132.16.0/20 174 -66.132.32.0/19 174 -66.132.64.0/18 174 -66.132.128.0/17 13768 -66.133.0.0/22 12684 -66.133.4.0/24 60725 -66.133.6.0/24 47965 -66.133.7.0/24 60725 -66.133.8.0/24 47965 -66.133.9.0/24 12684 -66.133.10.0/23 60725 -66.133.13.0/24 47965 -66.133.16.0/21 12684 -66.133.24.0/22 12684 -66.133.32.0/24 26049 -66.133.40.0/24 12684 -66.133.44.0/24 12684 -66.133.48.0/24 12684 -66.133.57.0/24 47965 -66.133.58.0/23 47965 -66.133.64.0/21 20419 -66.133.72.0/23 53889 -66.133.74.0/24 63008 -66.133.75.0/24 201665 -66.133.76.0/23 53889 -66.133.78.0/24 63008 -66.133.79.0/24 53889 -66.133.83.0/24 3491 -66.133.84.0/24 3491 -66.133.86.0/23 133772 -66.133.88.0/23 133772 -66.133.90.0/24 133772 -66.133.93.0/24 4637 -66.133.94.0/24 4637 -66.133.95.0/24 3491 -66.133.96.0/19 13649 -66.133.128.0/21 5650 -66.133.136.0/22 7011 -66.133.140.0/22 5650 -66.133.144.0/20 5650 -66.133.160.0/21 5650 -66.133.168.0/23 5650 -66.133.170.0/24 7011 -66.133.171.0/24 5650 -66.133.172.0/22 5650 -66.133.176.0/23 5650 -66.133.178.0/23 7011 -66.133.180.0/24 7011 -66.133.181.0/24 5650 -66.133.182.0/23 5650 -66.133.184.0/21 5650 -66.133.192.0/19 20001 -66.133.224.0/21 20001 -66.133.232.0/22 33363 -66.133.236.0/22 20001 -66.133.240.0/20 20001 -66.134.0.0/18 18566 -66.134.64.0/21 18566 -66.134.72.0/23 18566 -66.134.74.0/24 3257 -66.134.75.0/24 18566 -66.134.76.0/22 18566 -66.134.80.0/20 18566 -66.134.96.0/19 18566 -66.134.128.0/17 18566 -66.135.0.0/19 21637 -66.135.32.0/19 13768 -66.135.64.0/20 18897 -66.135.80.0/21 18897 -66.135.88.0/22 18897 -66.135.92.0/23 18897 -66.135.94.0/24 395786 -66.135.95.0/24 18897 -66.135.96.0/19 14453 -66.135.128.0/22 8092 -66.135.132.0/23 8092 -66.135.134.0/24 8092 -66.135.136.0/23 8092 -66.135.138.0/24 8092 -66.135.144.0/21 8092 -66.135.152.0/22 8092 -66.135.156.0/24 8092 -66.135.160.0/22 8092 -66.135.166.0/23 8092 -66.135.168.0/22 8092 -66.135.175.0/24 8092 -66.135.176.0/24 8092 -66.135.178.0/23 8092 -66.135.180.0/22 8092 -66.135.184.0/23 8092 -66.135.188.0/22 8092 -66.135.192.0/19 11643 -66.135.224.0/19 21686 -66.136.0.0/19 7018 -66.136.32.0/21 7018 -66.136.40.0/24 18674 -66.136.41.0/24 7018 -66.136.42.0/23 7018 -66.136.44.0/22 7018 -66.136.48.0/20 7018 -66.136.64.0/19 7018 -66.136.96.0/20 7018 -66.136.112.0/24 19784 -66.136.113.0/24 7018 -66.136.114.0/23 7018 -66.136.116.0/22 7018 -66.136.120.0/21 7018 -66.136.128.0/17 7018 -66.137.0.0/16 7018 -66.138.0.0/17 7018 -66.138.128.0/20 7018 -66.138.144.0/21 7018 -66.138.152.0/22 7018 -66.138.156.0/23 7018 -66.138.158.0/24 4917 -66.138.159.0/24 7018 -66.138.160.0/19 7018 -66.138.192.0/18 7018 -66.139.0.0/20 7018 -66.139.16.0/21 7018 -66.139.24.0/23 7018 -66.139.26.0/24 7018 -66.139.27.0/24 395238 -66.139.28.0/22 7018 -66.139.32.0/19 7018 -66.139.64.0/18 7018 -66.139.128.0/17 7018 -66.140.0.0/18 7018 -66.140.64.0/19 7018 -66.140.96.0/21 7018 -66.140.104.0/22 7018 -66.140.108.0/23 7018 -66.140.110.0/24 7018 -66.140.111.0/24 10421 -66.140.112.0/20 7018 -66.140.128.0/18 7018 -66.140.192.0/22 7018 -66.140.196.0/24 22528 -66.140.197.0/24 7018 -66.140.198.0/23 7018 -66.140.200.0/21 7018 -66.140.208.0/20 7018 -66.140.224.0/19 7018 -66.141.0.0/17 7018 -66.141.128.0/18 7018 -66.141.192.0/19 7018 -66.141.224.0/21 7018 -66.141.232.0/24 7018 -66.141.233.0/24 29790 -66.141.234.0/23 7018 -66.141.236.0/22 7018 -66.141.240.0/20 7018 -66.142.0.0/18 7018 -66.142.64.0/19 7018 -66.142.96.0/20 7018 -66.142.112.0/24 7018 -66.142.113.0/24 16788 -66.142.114.0/23 7018 -66.142.116.0/22 7018 -66.142.120.0/21 7018 -66.142.128.0/18 7018 -66.142.192.0/23 7018 -66.142.194.0/24 7018 -66.142.195.0/24 27268 -66.142.196.0/22 7018 -66.142.200.0/21 7018 -66.142.208.0/20 7018 -66.142.224.0/20 7018 -66.142.240.0/22 7018 -66.142.244.0/24 46202 -66.142.245.0/24 54639 -66.142.246.0/23 7018 -66.142.248.0/21 7018 -66.143.0.0/17 7018 -66.143.128.0/19 7018 -66.143.160.0/21 7018 -66.143.168.0/22 7018 -66.143.172.0/23 7018 -66.143.174.0/24 5671 -66.143.175.0/24 7018 -66.143.176.0/20 7018 -66.143.192.0/18 7018 -66.144.0.0/15 19902 -66.146.0.0/17 11123 -66.146.128.0/19 812 -66.146.160.0/19 35985 -66.146.192.0/20 26068 -66.146.208.0/21 26068 -66.146.216.0/22 26068 -66.146.220.0/24 32302 -66.146.221.0/24 26068 -66.146.222.0/23 26068 -66.146.224.0/23 1635 -66.146.227.0/24 396226 -66.146.228.0/22 395503 -66.146.232.0/24 64267 -66.146.233.0/24 397630 -66.146.234.0/23 64267 -66.146.236.0/22 64267 -66.146.240.0/20 29900 -66.147.0.0/17 7029 -66.147.128.0/19 3356 -66.147.160.0/23 3356 -66.147.162.0/24 14001 -66.147.163.0/24 3356 -66.147.164.0/22 3356 -66.147.168.0/22 3356 -66.147.172.0/23 26224 -66.147.174.0/24 26224 -66.147.175.0/24 394609 -66.147.176.0/20 3356 -66.147.192.0/20 3356 -66.147.208.0/22 3356 -66.147.212.0/23 36471 -66.147.214.0/23 3356 -66.147.216.0/21 3356 -66.147.224.0/20 23535 -66.147.240.0/20 46606 -66.148.0.0/18 13768 -66.148.64.0/19 14361 -66.148.96.0/20 46696 -66.148.112.0/20 14361 -66.148.128.0/17 7029 -66.149.0.0/16 7029 -66.150.0.0/24 12179 -66.150.1.0/24 396173 -66.150.2.0/24 12179 -66.150.3.0/24 33717 -66.150.4.0/22 14744 -66.150.8.0/21 14744 -66.150.16.0/21 14745 -66.150.24.0/23 14745 -66.150.26.0/24 54155 -66.150.27.0/24 14745 -66.150.28.0/22 35913 -66.150.32.0/21 12178 -66.150.40.0/22 12178 -66.150.44.0/23 12178 -66.150.46.0/24 33257 -66.150.47.0/24 12178 -66.150.48.0/24 14745 -66.150.49.0/24 23023 -66.150.50.0/23 14745 -66.150.52.0/22 14745 -66.150.56.0/21 14745 -66.150.64.0/21 35913 -66.150.72.0/23 10910 -66.150.74.0/23 15278 -66.150.76.0/23 10910 -66.150.78.0/24 22771 -66.150.79.0/24 10910 -66.150.80.0/22 15278 -66.150.84.0/22 10910 -66.150.88.0/23 19812 -66.150.90.0/23 10910 -66.150.92.0/22 10910 -66.150.96.0/23 19024 -66.150.98.0/23 6640 -66.150.100.0/23 19024 -66.150.102.0/24 54021 -66.150.103.0/24 22075 -66.150.104.0/24 19024 -66.150.105.0/24 6640 -66.150.106.0/23 19024 -66.150.108.0/22 19024 -66.150.112.0/21 10913 -66.150.120.0/24 10913 -66.150.121.0/24 13789 -66.150.122.0/23 10913 -66.150.124.0/24 23516 -66.150.125.0/24 10913 -66.150.126.0/23 10913 -66.150.128.0/22 35913 -66.150.132.0/22 13791 -66.150.136.0/23 13791 -66.150.138.0/24 395644 -66.150.139.0/24 13791 -66.150.140.0/22 13791 -66.150.144.0/23 10912 -66.150.146.0/24 19909 -66.150.147.0/24 10912 -66.150.148.0/22 10912 -66.150.152.0/23 10912 -66.150.154.0/24 10912 -66.150.155.0/24 32374 -66.150.156.0/24 55096 -66.150.157.0/24 10912 -66.150.158.0/23 10912 -66.150.160.0/22 14744 -66.150.164.0/24 32751 -66.150.165.0/24 14744 -66.150.166.0/23 14744 -66.150.168.0/23 14744 -66.150.170.0/24 62794 -66.150.171.0/24 29818 -66.150.172.0/23 14744 -66.150.174.0/24 6640 -66.150.175.0/24 14744 -66.150.176.0/21 10912 -66.150.184.0/22 10912 -66.150.188.0/24 32374 -66.150.189.0/24 14012 -66.150.190.0/24 397291 -66.150.191.0/24 10912 -66.150.192.0/20 14742 -66.150.208.0/23 12179 -66.150.210.0/24 12235 -66.150.211.0/24 12179 -66.150.212.0/24 12179 -66.150.213.0/24 26380 -66.150.214.0/23 12179 -66.150.216.0/23 12179 -66.150.218.0/24 46282 -66.150.219.0/24 12179 -66.150.220.0/22 12179 -66.150.224.0/20 12178 -66.150.240.0/20 14743 -66.151.0.0/22 22199 -66.151.4.0/23 19024 -66.151.6.0/24 19024 -66.151.7.0/24 14148 -66.151.8.0/22 19024 -66.151.12.0/24 19024 -66.151.13.0/24 22276 -66.151.14.0/24 19024 -66.151.15.0/24 6640 -66.151.16.0/21 26328 -66.151.24.0/23 19024 -66.151.26.0/24 394651 -66.151.27.0/24 19024 -66.151.28.0/22 19024 -66.151.32.0/24 12180 -66.151.33.0/24 6507 -66.151.34.0/23 12180 -66.151.36.0/22 12180 -66.151.40.0/21 12180 -66.151.48.0/22 35913 -66.151.52.0/22 10912 -66.151.56.0/21 10912 -66.151.64.0/24 10912 -66.151.65.0/24 13791 -66.151.66.0/24 17144 -66.151.67.0/24 13791 -66.151.68.0/23 13791 -66.151.70.0/24 13791 -66.151.71.0/24 18690 -66.151.72.0/24 13791 -66.151.73.0/24 26093 -66.151.74.0/23 13791 -66.151.76.0/22 13791 -66.151.80.0/20 12181 -66.151.96.0/22 10913 -66.151.100.0/23 10913 -66.151.102.0/24 16919 -66.151.103.0/24 10913 -66.151.104.0/23 10913 -66.151.106.0/24 22276 -66.151.107.0/24 10913 -66.151.108.0/24 40889 -66.151.109.0/24 10913 -66.151.110.0/23 10913 -66.151.112.0/23 10910 -66.151.114.0/24 11129 -66.151.115.0/24 10910 -66.151.116.0/22 35913 -66.151.120.0/21 10910 -66.151.128.0/23 12182 -66.151.130.0/24 4898 -66.151.131.0/24 393954 -66.151.132.0/24 12182 -66.151.133.0/24 63417 -66.151.134.0/24 12182 -66.151.135.0/24 55256 -66.151.136.0/22 12182 -66.151.140.0/24 12182 -66.151.141.0/24 40885 -66.151.142.0/23 12182 -66.151.144.0/21 12182 -66.151.152.0/23 12182 -66.151.154.0/24 53766 -66.151.155.0/24 12182 -66.151.156.0/22 12182 -66.151.160.0/23 12179 -66.151.162.0/24 26550 -66.151.163.0/24 13790 -66.151.164.0/22 13790 -66.151.168.0/21 35913 -66.151.176.0/24 13896 -66.151.177.0/24 14742 -66.151.178.0/23 14742 -66.151.180.0/22 14742 -66.151.184.0/22 14742 -66.151.188.0/22 27382 -66.151.192.0/22 10910 -66.151.196.0/22 35913 -66.151.200.0/21 10910 -66.151.208.0/22 35913 -66.151.212.0/24 10910 -66.151.213.0/24 26654 -66.151.214.0/24 10910 -66.151.215.0/24 26738 -66.151.220.0/24 396868 -66.151.221.0/24 10910 -66.151.222.0/24 32699 -66.151.223.0/24 10910 -66.151.224.0/24 14742 -66.151.225.0/24 40368 -66.151.226.0/23 14742 -66.151.228.0/22 14742 -66.151.232.0/21 14742 -66.151.240.0/23 12179 -66.151.242.0/24 63018 -66.151.243.0/24 12179 -66.151.244.0/22 12179 -66.151.248.0/21 12179 -66.152.0.0/18 7029 -66.152.64.0/21 14720 -66.152.72.0/24 7029 -66.152.73.0/24 14720 -66.152.74.0/23 14720 -66.152.76.0/22 14720 -66.152.80.0/20 14720 -66.152.96.0/20 13536 -66.152.112.0/21 14477 -66.152.120.0/22 14477 -66.152.124.0/23 14477 -66.152.126.0/24 23525 -66.152.127.0/24 14477 -66.152.128.0/19 3737 -66.152.160.0/19 35916 -66.152.192.0/21 7029 -66.152.200.0/23 7029 -66.152.202.0/24 7029 -66.152.203.0/24 63307 -66.152.204.0/22 7029 -66.152.208.0/20 7029 -66.152.224.0/19 7029 -66.153.0.0/19 7029 -66.153.32.0/21 7029 -66.153.40.0/24 36117 -66.153.41.0/24 7029 -66.153.42.0/23 7029 -66.153.44.0/22 7029 -66.153.48.0/20 7029 -66.153.64.0/18 7029 -66.153.128.0/19 21565 -66.153.160.0/21 21565 -66.153.168.0/22 21565 -66.153.172.0/23 21565 -66.153.175.0/24 21565 -66.153.176.0/21 21565 -66.153.184.0/22 21565 -66.153.188.0/23 21565 -66.153.190.0/24 21565 -66.153.192.0/22 21565 -66.153.196.0/24 21565 -66.153.198.0/23 21565 -66.153.200.0/21 21565 -66.153.208.0/20 21565 -66.153.224.0/20 21565 -66.153.240.0/21 21565 -66.153.249.0/24 21565 -66.153.250.0/23 21565 -66.153.252.0/22 21565 -66.154.0.0/22 22653 -66.154.4.0/24 22653 -66.154.5.0/24 64250 -66.154.6.0/23 22653 -66.154.8.0/21 22653 -66.154.16.0/20 22653 -66.154.32.0/19 22653 -66.154.64.0/19 22653 -66.154.96.0/24 8100 -66.154.97.0/24 46562 -66.154.98.0/24 46562 -66.154.99.0/24 8100 -66.154.100.0/22 8100 -66.154.104.0/22 8100 -66.154.108.0/23 8100 -66.154.110.0/24 8100 -66.154.111.0/24 46562 -66.154.112.0/20 8100 -66.154.128.0/19 32522 -66.154.160.0/20 36683 -66.154.176.0/21 36683 -66.154.184.0/23 36683 -66.154.186.0/23 32522 -66.154.188.0/22 32522 -66.154.192.0/20 36683 -66.154.208.0/20 32522 -66.154.224.0/19 32522 -66.155.0.0/22 13768 -66.155.4.0/23 6640 -66.155.8.0/21 13768 -66.155.16.0/23 13768 -66.155.18.0/23 6640 -66.155.20.0/22 13768 -66.155.24.0/23 13768 -66.155.26.0/24 13768 -66.155.27.0/24 6640 -66.155.28.0/24 6640 -66.155.29.0/24 13768 -66.155.30.0/23 13768 -66.155.32.0/20 13768 -66.155.48.0/21 13768 -66.155.58.0/23 13768 -66.155.60.0/22 13768 -66.155.64.0/20 13768 -66.155.80.0/21 13768 -66.155.88.0/23 13768 -66.155.94.0/24 6640 -66.155.96.0/24 6640 -66.155.97.0/24 13768 -66.155.98.0/23 13768 -66.155.100.0/24 6640 -66.155.101.0/24 13768 -66.155.102.0/23 13768 -66.155.104.0/21 13768 -66.155.112.0/20 13768 -66.155.128.0/17 7029 -66.156.0.0/18 6389 -66.156.64.0/19 7018 -66.156.96.0/20 7018 -66.156.112.0/20 6389 -66.156.128.0/19 6389 -66.156.160.0/22 6389 -66.156.164.0/22 7018 -66.156.168.0/21 6389 -66.156.176.0/20 6389 -66.156.192.0/21 6389 -66.156.200.0/24 6384 -66.156.201.0/24 6389 -66.156.202.0/23 6389 -66.156.204.0/22 6389 -66.156.208.0/20 6389 -66.156.224.0/19 6389 -66.157.0.0/17 6389 -66.157.128.0/18 6389 -66.157.192.0/18 7018 -66.158.0.0/19 6325 -66.158.32.0/21 6325 -66.158.40.0/22 6325 -66.158.44.0/23 6325 -66.158.46.0/23 32344 -66.158.48.0/24 32344 -66.158.49.0/24 6325 -66.158.50.0/23 6325 -66.158.52.0/22 6325 -66.158.56.0/23 6325 -66.158.58.0/24 33248 -66.158.59.0/24 6325 -66.158.60.0/22 6325 -66.158.64.0/24 6325 -66.158.65.0/24 33248 -66.158.66.0/23 6325 -66.158.68.0/22 6325 -66.158.72.0/21 6325 -66.158.80.0/20 6325 -66.158.96.0/19 6325 -66.158.128.0/19 16532 -66.158.160.0/20 11069 -66.158.176.0/20 12231 -66.158.192.0/24 32083 -66.158.195.0/24 32083 -66.158.196.0/23 32083 -66.158.199.0/24 32083 -66.158.200.0/24 32083 -66.158.202.0/24 32083 -66.158.204.0/22 32083 -66.158.208.0/22 32083 -66.158.212.0/23 32083 -66.158.231.0/24 32083 -66.158.232.0/23 32083 -66.158.234.0/24 32083 -66.158.236.0/23 32083 -66.158.238.0/24 32083 -66.158.250.0/23 32083 -66.159.0.0/20 3356 -66.159.16.0/21 3356 -66.159.24.0/21 22773 -66.159.32.0/20 30236 -66.159.48.0/20 12028 -66.159.64.0/19 17054 -66.159.96.0/23 53962 -66.159.98.0/23 17206 -66.159.100.0/23 54664 -66.159.102.0/24 17378 -66.159.104.0/23 32312 -66.159.106.0/23 33459 -66.159.108.0/22 55053 -66.159.112.0/20 5690 -66.159.128.0/18 7018 -66.160.0.0/17 7029 -66.160.128.0/24 6939 -66.160.129.0/24 14979 -66.160.130.0/24 395478 -66.160.131.0/24 6939 -66.160.132.0/22 6939 -66.160.136.0/22 6939 -66.160.140.0/24 6939 -66.160.141.0/24 63949 -66.160.142.0/23 6939 -66.160.144.0/21 6939 -66.160.152.0/22 6939 -66.160.156.0/24 54288 -66.160.157.0/24 6939 -66.160.158.0/23 6939 -66.160.160.0/24 6939 -66.160.161.0/24 54288 -66.160.162.0/24 6939 -66.160.163.0/24 12183 -66.160.164.0/22 6939 -66.160.168.0/23 6939 -66.160.170.0/24 395478 -66.160.171.0/24 6939 -66.160.172.0/22 6939 -66.160.176.0/22 6939 -66.160.180.0/24 54288 -66.160.181.0/24 6939 -66.160.182.0/23 6939 -66.160.184.0/24 6939 -66.160.185.0/24 40841 -66.160.186.0/24 54288 -66.160.187.0/24 6939 -66.160.188.0/24 397655 -66.160.189.0/24 6939 -66.160.190.0/24 6939 -66.160.191.0/24 18779 -66.160.192.0/23 6939 -66.160.194.0/24 54408 -66.160.195.0/24 6939 -66.160.196.0/22 6939 -66.160.200.0/24 54288 -66.160.201.0/24 6939 -66.160.202.0/23 6939 -66.160.204.0/23 6939 -66.160.206.0/24 6939 -66.160.207.0/24 54288 -66.160.208.0/20 17306 -66.160.224.0/20 10823 -66.160.240.0/20 6594 -66.161.0.0/19 16966 -66.161.32.0/20 16966 -66.161.48.0/21 16966 -66.161.56.0/22 16966 -66.161.60.0/24 16966 -66.161.61.0/24 22911 -66.161.62.0/23 16966 -66.161.64.0/19 16966 -66.161.96.0/20 16966 -66.161.112.0/21 16966 -66.161.120.0/23 16966 -66.161.122.0/24 7018 -66.161.123.0/24 396432 -66.161.124.0/22 16966 -66.161.128.0/21 6181 -66.161.136.0/22 6181 -66.161.140.0/24 6181 -66.161.141.0/24 30059 -66.161.142.0/23 6181 -66.161.144.0/21 6181 -66.161.152.0/23 6181 -66.161.154.0/23 23115 -66.161.156.0/23 23115 -66.161.158.0/23 6181 -66.161.160.0/19 6181 -66.161.192.0/19 6181 -66.161.224.0/21 6181 -66.161.232.0/22 6181 -66.161.236.0/24 6181 -66.161.237.0/24 27608 -66.161.238.0/23 6181 -66.161.240.0/20 6181 -66.162.0.0/23 3549 -66.162.2.0/24 21771 -66.162.3.0/24 3549 -66.162.4.0/22 3549 -66.162.8.0/24 3549 -66.162.9.0/24 27383 -66.162.10.0/23 3549 -66.162.12.0/22 3549 -66.162.16.0/20 3549 -66.162.32.0/20 3549 -66.162.48.0/22 3549 -66.162.52.0/23 394599 -66.162.54.0/23 3549 -66.162.56.0/24 40154 -66.162.57.0/24 3549 -66.162.58.0/23 3549 -66.162.60.0/22 3549 -66.162.64.0/22 3549 -66.162.68.0/23 3549 -66.162.70.0/24 3549 -66.162.71.0/24 22984 -66.162.72.0/21 3549 -66.162.80.0/22 3549 -66.162.84.0/23 3549 -66.162.86.0/24 3549 -66.162.87.0/24 209 -66.162.88.0/21 3549 -66.162.96.0/20 3549 -66.162.112.0/21 3549 -66.162.120.0/22 3549 -66.162.124.0/24 3549 -66.162.125.0/24 21679 -66.162.126.0/23 3549 -66.162.128.0/19 3549 -66.162.160.0/20 3549 -66.162.176.0/21 3549 -66.162.184.0/24 11120 -66.162.185.0/24 3549 -66.162.186.0/23 3549 -66.162.188.0/22 3549 -66.162.192.0/22 3549 -66.162.196.0/23 3549 -66.162.198.0/24 33420 -66.162.199.0/24 3549 -66.162.200.0/22 3549 -66.162.204.0/24 3549 -66.162.205.0/24 10843 -66.162.206.0/23 3549 -66.162.208.0/21 3549 -66.162.216.0/22 3549 -66.162.220.0/24 394203 -66.162.221.0/24 3549 -66.162.222.0/23 3549 -66.162.224.0/21 3549 -66.162.232.0/22 3549 -66.162.236.0/24 32419 -66.162.237.0/24 3549 -66.162.238.0/23 3549 -66.162.240.0/22 3549 -66.162.244.0/24 23019 -66.162.245.0/24 3549 -66.162.246.0/23 3549 -66.162.248.0/22 3549 -66.162.252.0/24 23204 -66.162.253.0/24 3549 -66.162.254.0/24 30472 -66.162.255.0/24 3549 -66.163.0.0/19 21724 -66.163.32.0/19 13445 -66.163.64.0/20 6327 -66.163.80.0/20 19074 -66.163.96.0/20 17306 -66.163.112.0/20 29877 -66.163.128.0/20 14090 -66.163.144.0/21 63414 -66.163.152.0/24 63414 -66.163.153.0/24 62688 -66.163.154.0/24 62688 -66.163.155.0/24 63414 -66.163.156.0/22 63414 -66.163.168.0/21 36646 -66.163.176.0/20 36646 -66.163.192.0/20 15247 -66.163.209.0/24 53559 -66.163.214.0/24 53559 -66.163.217.0/24 53559 -66.163.220.0/24 53559 -66.163.223.0/24 53559 -66.163.224.0/19 6597 -66.164.0.0/21 11492 -66.164.9.0/24 11492 -66.164.10.0/23 11492 -66.164.12.0/22 11492 -66.164.17.0/24 11492 -66.164.18.0/23 11492 -66.164.21.0/24 11492 -66.164.22.0/23 11492 -66.164.24.0/21 11492 -66.164.32.0/23 11492 -66.164.36.0/22 11492 -66.164.41.0/24 11492 -66.164.42.0/23 11492 -66.164.44.0/22 11492 -66.164.48.0/21 11492 -66.164.56.0/22 11492 -66.164.61.0/24 11492 -66.164.63.0/24 11492 -66.164.64.0/21 11492 -66.164.72.0/22 11492 -66.164.80.0/23 11492 -66.164.84.0/22 11492 -66.164.88.0/21 11492 -66.164.96.0/24 11492 -66.164.98.0/23 11492 -66.164.104.0/21 11492 -66.164.112.0/21 11492 -66.164.120.0/23 11492 -66.164.128.0/20 11492 -66.164.144.0/21 11492 -66.164.154.0/23 11492 -66.164.156.0/22 11492 -66.164.161.0/24 11492 -66.164.162.0/23 11492 -66.164.164.0/23 11492 -66.164.166.0/24 11492 -66.164.168.0/21 11492 -66.164.176.0/21 11492 -66.164.184.0/23 11492 -66.164.187.0/24 11492 -66.164.188.0/22 11492 -66.164.196.0/22 11492 -66.164.202.0/23 11492 -66.164.204.0/22 11492 -66.164.208.0/22 11492 -66.164.213.0/24 11492 -66.164.214.0/24 11492 -66.164.216.0/22 11492 -66.164.222.0/23 11492 -66.164.224.0/22 11492 -66.164.246.0/24 11492 -66.164.249.0/24 11492 -66.164.250.0/23 11492 -66.164.252.0/22 11492 -66.165.0.0/19 3853 -66.165.32.0/22 6295 -66.165.36.0/23 54431 -66.165.38.0/23 6295 -66.165.40.0/24 53467 -66.165.41.0/24 6295 -66.165.42.0/23 6295 -66.165.44.0/22 6295 -66.165.48.0/22 6295 -66.165.52.0/23 54431 -66.165.54.0/23 6295 -66.165.56.0/22 6295 -66.165.60.0/23 6295 -66.165.62.0/23 54431 -66.165.64.0/18 7393 -66.165.128.0/19 21627 -66.165.160.0/20 23148 -66.165.176.0/24 62795 -66.165.177.0/24 23148 -66.165.178.0/23 23148 -66.165.180.0/22 23148 -66.165.184.0/21 23148 -66.165.192.0/19 26288 -66.165.224.0/19 29802 -66.166.0.0/16 18566 -66.167.0.0/17 18566 -66.167.128.0/19 18566 -66.167.160.0/22 18566 -66.167.164.0/24 26669 -66.167.165.0/24 18566 -66.167.166.0/23 18566 -66.167.168.0/21 18566 -66.167.176.0/20 18566 -66.167.192.0/18 18566 -66.168.0.0/19 20115 -66.168.32.0/24 20115 -66.168.34.0/23 20115 -66.168.36.0/23 20115 -66.168.38.0/23 15085 -66.168.40.0/21 20115 -66.168.48.0/20 20115 -66.168.64.0/18 20115 -66.168.128.0/17 20115 -66.169.0.0/16 20115 -66.170.0.0/20 4150 -66.170.16.0/21 4150 -66.170.24.0/22 4150 -66.170.28.0/24 29959 -66.170.29.0/24 4150 -66.170.30.0/23 4150 -66.170.32.0/21 13819 -66.170.40.0/24 16564 -66.170.41.0/24 13819 -66.170.42.0/23 13819 -66.170.44.0/22 16698 -66.170.48.0/20 13819 -66.170.64.0/20 10352 -66.170.80.0/22 33186 -66.170.84.0/22 14805 -66.170.88.0/21 14805 -66.170.96.0/24 53512 -66.170.97.0/24 395632 -66.170.98.0/24 22965 -66.170.99.0/24 22918 -66.170.100.0/24 62542 -66.170.101.0/24 397404 -66.170.102.0/23 40816 -66.170.104.0/21 40816 -66.170.112.0/20 30121 -66.170.128.0/23 3356 -66.170.130.0/24 2768 -66.170.131.0/24 3356 -66.170.132.0/23 3356 -66.170.134.0/24 14384 -66.170.135.0/24 3356 -66.170.136.0/21 3356 -66.170.144.0/20 21724 -66.170.160.0/20 11069 -66.170.177.0/24 3356 -66.170.179.0/24 209 -66.170.180.0/22 22113 -66.170.184.0/21 21743 -66.170.192.0/20 6300 -66.170.224.0/20 5691 -66.170.240.0/23 13996 -66.170.243.0/24 13996 -66.170.248.0/22 13996 -66.170.252.0/24 13996 -66.170.255.0/24 13996 -66.171.0.0/20 19201 -66.171.16.0/20 33339 -66.171.32.0/24 53889 -66.171.33.0/24 6130 -66.171.34.0/23 53889 -66.171.36.0/22 53889 -66.171.40.0/21 14371 -66.171.48.0/20 46618 -66.171.64.0/20 21886 -66.171.80.0/20 17310 -66.171.96.0/20 852 -66.171.112.0/23 9505 -66.171.114.0/23 33717 -66.171.116.0/23 9505 -66.171.118.0/23 33717 -66.171.120.0/21 33717 -66.171.128.0/20 27618 -66.171.144.0/23 20281 -66.171.146.0/23 16582 -66.171.148.0/22 16582 -66.171.152.0/21 16582 -66.171.160.0/20 11478 -66.171.176.0/20 21743 -66.171.192.0/22 11855 -66.171.196.0/24 3356 -66.171.197.0/24 11855 -66.171.198.0/23 11855 -66.171.200.0/24 55034 -66.171.201.0/24 63362 -66.171.202.0/23 14743 -66.171.204.0/23 14743 -66.171.206.0/24 14743 -66.171.207.0/24 63388 -66.171.208.0/20 31861 -66.171.224.0/20 3257 -66.171.240.0/20 7296 -66.172.0.0/23 11051 -66.172.2.0/24 11051 -66.172.3.0/24 32544 -66.172.4.0/22 11051 -66.172.8.0/21 11051 -66.172.16.0/20 11051 -66.172.32.0/21 11051 -66.172.40.0/23 46378 -66.172.42.0/23 11051 -66.172.44.0/22 11051 -66.172.48.0/20 11051 -66.172.64.0/19 21713 -66.172.96.0/19 13370 -66.172.128.0/19 32760 -66.172.160.0/19 30220 -66.172.192.0/18 32867 -66.173.0.0/17 4181 -66.173.128.0/23 7029 -66.173.130.0/24 32376 -66.173.131.0/24 7029 -66.173.132.0/22 7029 -66.173.136.0/21 7029 -66.173.144.0/21 7029 -66.173.152.0/23 7029 -66.173.154.0/24 7029 -66.173.155.0/24 19919 -66.173.156.0/22 7029 -66.173.160.0/19 7029 -66.173.192.0/19 7029 -66.173.224.0/24 7029 -66.173.225.0/24 32425 -66.173.226.0/23 7029 -66.173.228.0/23 7029 -66.173.230.0/23 19919 -66.173.232.0/23 7029 -66.173.234.0/24 7029 -66.173.235.0/24 19919 -66.173.236.0/22 7029 -66.173.240.0/20 7029 -66.174.0.0/16 6167 -66.175.0.0/18 30447 -66.175.64.0/19 21686 -66.175.96.0/20 23148 -66.175.112.0/22 23148 -66.175.116.0/23 23148 -66.175.118.0/24 23148 -66.175.119.0/24 40208 -66.175.120.0/21 23148 -66.175.128.0/18 11272 -66.175.192.0/21 26785 -66.175.200.0/22 26785 -66.175.204.0/23 26785 -66.175.206.0/24 26785 -66.175.207.0/24 394495 -66.175.208.0/20 63949 -66.175.224.0/21 11900 -66.175.232.0/21 8560 -66.175.240.0/21 19353 -66.175.248.0/22 397151 -66.176.0.0/15 7922 -66.178.0.0/22 12684 -66.178.4.0/24 12684 -66.178.5.0/24 9751 -66.178.6.0/23 12684 -66.178.8.0/22 12684 -66.178.12.0/23 12684 -66.178.14.0/24 9751 -66.178.15.0/24 12684 -66.178.16.0/20 12684 -66.178.32.0/22 12684 -66.178.36.0/23 12684 -66.178.38.0/24 60725 -66.178.39.0/24 12684 -66.178.40.0/21 12684 -66.178.48.0/24 12684 -66.178.49.0/24 60725 -66.178.50.0/23 12684 -66.178.52.0/24 12684 -66.178.53.0/24 60725 -66.178.54.0/23 12684 -66.178.56.0/21 12684 -66.178.64.0/19 12684 -66.178.96.0/20 12684 -66.178.112.0/22 12684 -66.178.116.0/23 12684 -66.178.118.0/24 12684 -66.178.119.0/24 32034 -66.178.120.0/21 12684 -66.178.128.0/23 6296 -66.178.130.0/24 6296 -66.178.131.0/24 23408 -66.178.132.0/22 6296 -66.178.136.0/22 23408 -66.178.140.0/22 6296 -66.178.144.0/23 6296 -66.178.146.0/23 23408 -66.178.148.0/24 11986 -66.178.149.0/24 6296 -66.178.150.0/23 6296 -66.178.152.0/21 6296 -66.178.160.0/20 6296 -66.178.176.0/20 29838 -66.178.192.0/18 7029 -66.179.0.0/16 7381 -66.180.0.0/20 30452 -66.180.16.0/20 19627 -66.180.32.0/22 7819 -66.180.36.0/24 395048 -66.180.37.0/24 20128 -66.180.40.0/22 52335 -66.180.48.0/21 20128 -66.180.56.0/23 20128 -66.180.58.0/24 20128 -66.180.59.0/24 7819 -66.180.60.0/22 20128 -66.180.64.0/24 62961 -66.180.65.0/24 395311 -66.180.67.0/24 395145 -66.180.68.0/22 396015 -66.180.72.0/21 54381 -66.180.80.0/20 36421 -66.180.96.0/19 17184 -66.180.128.0/21 11563 -66.180.136.0/24 11563 -66.180.137.0/24 394044 -66.180.138.0/23 11563 -66.180.140.0/22 11563 -66.180.144.0/20 11563 -66.180.160.0/20 11595 -66.180.176.0/20 88 -66.180.192.0/20 11051 -66.180.208.0/20 36463 -66.180.224.0/20 18671 -66.180.240.0/20 14265 -66.181.0.0/19 21623 -66.181.32.0/19 64236 -66.181.64.0/20 17054 -66.181.80.0/21 53298 -66.181.88.0/21 17054 -66.181.96.0/20 6954 -66.181.112.0/20 11847 -66.181.128.0/20 7961 -66.181.144.0/20 11123 -66.181.160.0/23 17882 -66.181.163.0/24 17882 -66.181.164.0/22 17882 -66.181.168.0/21 17882 -66.181.176.0/20 17882 -66.181.192.0/20 11850 -66.181.208.0/20 62943 -66.181.224.0/20 14325 -66.181.240.0/20 22632 -66.182.0.0/18 7385 -66.182.64.0/19 23205 -66.182.96.0/20 7029 -66.182.112.0/20 17385 -66.182.128.0/22 6082 -66.182.132.0/23 16509 -66.182.136.0/21 7098 -66.182.149.0/24 6082 -66.182.156.0/22 6082 -66.182.160.0/21 7098 -66.182.170.0/23 6082 -66.182.172.0/22 6082 -66.182.176.0/20 7098 -66.182.192.0/18 20135 -66.183.0.0/16 852 -66.184.0.0/16 7029 -66.185.0.0/20 17306 -66.185.16.0/20 21554 -66.185.32.0/20 14434 -66.185.48.0/20 395761 -66.185.64.0/20 22247 -66.185.80.0/20 812 -66.185.96.0/20 15175 -66.185.112.0/20 42 -66.185.160.0/21 16582 -66.185.168.0/22 16582 -66.185.172.0/23 16582 -66.185.174.0/24 32429 -66.185.175.0/24 16582 -66.185.176.0/22 2559 -66.185.180.0/23 2559 -66.185.182.0/24 18730 -66.185.183.0/24 2559 -66.185.184.0/21 2559 -66.185.192.0/19 5690 -66.185.224.0/20 7352 -66.185.240.0/20 19162 -66.186.0.0/19 7296 -66.186.32.0/21 35908 -66.186.40.0/22 35908 -66.186.44.0/23 35908 -66.186.46.0/23 395426 -66.186.48.0/20 35908 -66.186.64.0/19 5690 -66.186.96.0/20 40702 -66.186.112.0/20 13797 -66.186.128.0/20 11951 -66.186.144.0/20 5078 -66.186.160.0/20 21547 -66.186.176.0/23 32043 -66.186.178.0/23 21547 -66.186.180.0/22 21547 -66.186.184.0/21 21547 -66.186.192.0/21 19151 -66.186.200.0/22 19151 -66.186.204.0/23 19151 -66.186.206.0/24 30071 -66.186.207.0/24 19151 -66.186.208.0/20 19151 -66.186.224.0/19 5009 -66.187.16.0/21 30517 -66.187.24.0/22 30517 -66.187.30.0/23 55039 -66.187.32.0/20 14703 -66.187.48.0/20 11427 -66.187.64.0/20 40156 -66.187.112.0/20 4540 -66.187.128.0/19 33327 -66.187.160.0/21 11402 -66.187.168.0/23 11402 -66.187.170.0/24 46860 -66.187.171.0/24 11402 -66.187.172.0/23 11402 -66.187.174.0/24 11402 -66.187.175.0/24 396223 -66.187.176.0/20 35985 -66.187.192.0/21 32029 -66.187.200.0/22 32029 -66.187.208.0/20 109 -66.187.224.0/24 17314 -66.187.225.0/24 31976 -66.187.226.0/23 31976 -66.187.228.0/22 31976 -66.187.232.0/23 22753 -66.187.234.0/23 31976 -66.187.236.0/24 28625 -66.187.237.0/24 31976 -66.187.238.0/24 201286 -66.187.239.0/24 22753 -66.188.0.0/16 20115 -66.189.0.0/17 20115 -66.189.130.0/23 20115 -66.189.132.0/22 20115 -66.189.136.0/21 20115 -66.189.144.0/20 20115 -66.189.160.0/19 20115 -66.189.192.0/19 20115 -66.189.224.0/20 20115 -66.189.242.0/23 16787 -66.189.244.0/22 20115 -66.189.248.0/24 19115 -66.189.250.0/24 20115 -66.189.251.0/24 22046 -66.189.252.0/22 20115 -66.190.0.0/17 20115 -66.190.128.0/19 20115 -66.190.160.0/20 20115 -66.190.176.0/21 20115 -66.190.184.0/22 20115 -66.190.188.0/23 16787 -66.190.192.0/18 20115 -66.191.0.0/17 20115 -66.191.128.0/20 20115 -66.191.144.0/24 11621 -66.191.145.0/24 12152 -66.191.146.0/24 20115 -66.191.147.0/24 27490 -66.191.148.0/24 23083 -66.191.149.0/24 20115 -66.191.150.0/23 20115 -66.191.152.0/21 20115 -66.191.160.0/19 20115 -66.191.192.0/18 20115 -66.192.0.0/21 3549 -66.192.8.0/22 3549 -66.192.12.0/24 3549 -66.192.13.0/24 19881 -66.192.14.0/24 32268 -66.192.15.0/24 3549 -66.192.16.0/21 3549 -66.192.24.0/24 3549 -66.192.25.0/24 7029 -66.192.26.0/23 3549 -66.192.28.0/23 3549 -66.192.30.0/23 23314 -66.192.32.0/23 3549 -66.192.34.0/24 23334 -66.192.35.0/24 3549 -66.192.36.0/22 3549 -66.192.40.0/21 3549 -66.192.48.0/21 7349 -66.192.56.0/22 3549 -66.192.60.0/23 3549 -66.192.62.0/24 3549 -66.192.63.0/24 26153 -66.192.64.0/23 3549 -66.192.66.0/24 3549 -66.192.67.0/24 21829 -66.192.68.0/22 3549 -66.192.72.0/23 3549 -66.192.74.0/24 3549 -66.192.75.0/24 32617 -66.192.76.0/22 3549 -66.192.80.0/21 3549 -66.192.88.0/24 3549 -66.192.89.0/24 18929 -66.192.90.0/23 3549 -66.192.92.0/22 3549 -66.192.96.0/23 14467 -66.192.98.0/23 3549 -66.192.100.0/24 3549 -66.192.101.0/24 14288 -66.192.102.0/24 14288 -66.192.103.0/24 3549 -66.192.104.0/24 25898 -66.192.105.0/24 3549 -66.192.106.0/23 3549 -66.192.108.0/22 3549 -66.192.112.0/20 3549 -66.192.128.0/19 3549 -66.192.160.0/21 3549 -66.192.168.0/24 26850 -66.192.169.0/24 3549 -66.192.170.0/23 3549 -66.192.172.0/24 3549 -66.192.173.0/24 13628 -66.192.174.0/23 3549 -66.192.176.0/21 3549 -66.192.184.0/24 3549 -66.192.185.0/24 54236 -66.192.186.0/23 3549 -66.192.188.0/22 3549 -66.192.192.0/23 3549 -66.192.194.0/23 22984 -66.192.196.0/24 3549 -66.192.197.0/24 30328 -66.192.198.0/23 3549 -66.192.200.0/24 3549 -66.192.201.0/24 11218 -66.192.202.0/23 3549 -66.192.204.0/23 22475 -66.192.206.0/23 3549 -66.192.208.0/23 3549 -66.192.210.0/24 22362 -66.192.211.0/24 3549 -66.192.212.0/23 3549 -66.192.214.0/24 19233 -66.192.215.0/24 3549 -66.192.216.0/24 19233 -66.192.217.0/24 3549 -66.192.218.0/23 3549 -66.192.220.0/22 3549 -66.192.224.0/24 18524 -66.192.225.0/24 3549 -66.192.226.0/23 3549 -66.192.228.0/22 3549 -66.192.232.0/24 3549 -66.192.233.0/24 396424 -66.192.234.0/23 3549 -66.192.236.0/22 3549 -66.192.240.0/20 3549 -66.193.0.0/21 3549 -66.193.8.0/21 11402 -66.193.16.0/21 3549 -66.193.24.0/24 53466 -66.193.25.0/24 3549 -66.193.26.0/24 3549 -66.193.27.0/24 16644 -66.193.28.0/22 3549 -66.193.32.0/22 3549 -66.193.36.0/24 3356 -66.193.37.0/24 3549 -66.193.38.0/24 53752 -66.193.39.0/24 3549 -66.193.40.0/21 3549 -66.193.48.0/22 3549 -66.193.52.0/23 3549 -66.193.54.0/24 16940 -66.193.55.0/24 3549 -66.193.56.0/24 10753 -66.193.57.0/24 3549 -66.193.58.0/23 3549 -66.193.60.0/22 3549 -66.193.64.0/22 3549 -66.193.68.0/24 36020 -66.193.69.0/24 29942 -66.193.70.0/24 3549 -66.193.71.0/24 29765 -66.193.72.0/21 3549 -66.193.80.0/24 53466 -66.193.81.0/24 3549 -66.193.82.0/23 3549 -66.193.84.0/22 3549 -66.193.88.0/22 32899 -66.193.92.0/24 3549 -66.193.93.0/24 1401 -66.193.94.0/23 20277 -66.193.96.0/24 3549 -66.193.97.0/24 393291 -66.193.98.0/23 3549 -66.193.100.0/23 3549 -66.193.102.0/24 3549 -66.193.103.0/24 15033 -66.193.104.0/23 3549 -66.193.106.0/24 3549 -66.193.107.0/24 22509 -66.193.108.0/22 3549 -66.193.112.0/23 3549 -66.193.114.0/24 3549 -66.193.115.0/24 11135 -66.193.116.0/22 3549 -66.193.120.0/23 3549 -66.193.122.0/24 3549 -66.193.123.0/24 46413 -66.193.124.0/23 3549 -66.193.126.0/24 3549 -66.193.127.0/24 29991 -66.193.128.0/22 63298 -66.193.132.0/22 3549 -66.193.136.0/21 3549 -66.193.144.0/23 3549 -66.193.146.0/24 23657 -66.193.147.0/24 3549 -66.193.148.0/24 3549 -66.193.149.0/24 54408 -66.193.150.0/23 3549 -66.193.152.0/21 3549 -66.193.160.0/23 23314 -66.193.162.0/23 3549 -66.193.164.0/22 3549 -66.193.168.0/21 3549 -66.193.176.0/23 27537 -66.193.178.0/23 3549 -66.193.180.0/22 3549 -66.193.184.0/22 3549 -66.193.188.0/24 31981 -66.193.189.0/24 3549 -66.193.190.0/23 3549 -66.193.192.0/21 3549 -66.193.200.0/22 3549 -66.193.204.0/23 3549 -66.193.206.0/23 29985 -66.193.208.0/22 3549 -66.193.212.0/24 3549 -66.193.213.0/24 394829 -66.193.214.0/23 3549 -66.193.216.0/24 3549 -66.193.217.0/24 40079 -66.193.218.0/24 33630 -66.193.219.0/24 27590 -66.193.220.0/22 3549 -66.193.224.0/22 3549 -66.193.228.0/24 33710 -66.193.229.0/24 17348 -66.193.230.0/23 3549 -66.193.232.0/21 3549 -66.193.240.0/24 54321 -66.193.241.0/24 3549 -66.193.242.0/23 3549 -66.193.244.0/22 3549 -66.193.248.0/24 3549 -66.193.249.0/24 395533 -66.193.250.0/24 18504 -66.193.251.0/24 3549 -66.193.252.0/22 3549 -66.194.0.0/23 3549 -66.194.2.0/24 30258 -66.194.3.0/24 3549 -66.194.4.0/22 3549 -66.194.8.0/23 3549 -66.194.10.0/24 19985 -66.194.11.0/24 19881 -66.194.12.0/22 3549 -66.194.16.0/21 3549 -66.194.24.0/24 3549 -66.194.25.0/24 30525 -66.194.26.0/23 3549 -66.194.28.0/24 3549 -66.194.29.0/24 22655 -66.194.30.0/23 3549 -66.194.32.0/24 40455 -66.194.33.0/24 3549 -66.194.34.0/23 3549 -66.194.36.0/23 3549 -66.194.38.0/24 35863 -66.194.39.0/24 3549 -66.194.40.0/23 3549 -66.194.42.0/24 14942 -66.194.43.0/24 3549 -66.194.44.0/23 23314 -66.194.46.0/23 14288 -66.194.48.0/20 3549 -66.194.64.0/21 3549 -66.194.72.0/24 396258 -66.194.73.0/24 19777 -66.194.74.0/24 3549 -66.194.75.0/24 395837 -66.194.76.0/22 3549 -66.194.80.0/24 54666 -66.194.81.0/24 3549 -66.194.82.0/23 3549 -66.194.84.0/23 3549 -66.194.86.0/24 3549 -66.194.87.0/24 19659 -66.194.88.0/21 3549 -66.194.96.0/22 3549 -66.194.100.0/24 3549 -66.194.101.0/24 30439 -66.194.102.0/23 3549 -66.194.104.0/23 13755 -66.194.106.0/23 3549 -66.194.108.0/23 3549 -66.194.110.0/24 3549 -66.194.111.0/24 7915 -66.194.112.0/23 17035 -66.194.114.0/24 3549 -66.194.115.0/24 19818 -66.194.116.0/22 3549 -66.194.120.0/22 3549 -66.194.124.0/24 3549 -66.194.125.0/24 394750 -66.194.126.0/23 3549 -66.194.128.0/21 3549 -66.194.136.0/22 3549 -66.194.140.0/22 32899 -66.194.144.0/21 3549 -66.194.152.0/22 3549 -66.194.156.0/24 3549 -66.194.157.0/24 32566 -66.194.158.0/23 3549 -66.194.160.0/22 3549 -66.194.164.0/23 3549 -66.194.166.0/24 3549 -66.194.167.0/24 16897 -66.194.168.0/22 3549 -66.194.172.0/24 25679 -66.194.173.0/24 3549 -66.194.174.0/23 63483 -66.194.176.0/22 46379 -66.194.180.0/24 46379 -66.194.181.0/24 3549 -66.194.182.0/23 3549 -66.194.184.0/23 3549 -66.194.186.0/24 27491 -66.194.187.0/24 3356 -66.194.188.0/22 3549 -66.194.192.0/24 3549 -66.194.193.0/24 21985 -66.194.194.0/23 3549 -66.194.196.0/23 3549 -66.194.198.0/24 3549 -66.194.199.0/24 395884 -66.194.200.0/21 3549 -66.194.208.0/23 3549 -66.194.210.0/23 394829 -66.194.212.0/22 3549 -66.194.216.0/23 3549 -66.194.218.0/24 3549 -66.194.219.0/24 33202 -66.194.220.0/22 3549 -66.194.224.0/21 3549 -66.194.232.0/24 3549 -66.194.233.0/24 36188 -66.194.234.0/23 3549 -66.194.236.0/22 3549 -66.194.240.0/23 3549 -66.194.242.0/24 3549 -66.194.243.0/24 55156 -66.194.244.0/22 21752 -66.194.248.0/21 3549 -66.195.0.0/24 3549 -66.195.1.0/24 53466 -66.195.2.0/24 3549 -66.195.3.0/24 32899 -66.195.4.0/24 3549 -66.195.5.0/24 32899 -66.195.6.0/24 3549 -66.195.7.0/24 18585 -66.195.8.0/21 21752 -66.195.16.0/24 3549 -66.195.17.0/24 33182 -66.195.18.0/23 33182 -66.195.20.0/24 394293 -66.195.21.0/24 3549 -66.195.22.0/23 14288 -66.195.24.0/21 3549 -66.195.32.0/22 3549 -66.195.36.0/23 3549 -66.195.38.0/24 3549 -66.195.39.0/24 29921 -66.195.40.0/23 3549 -66.195.42.0/24 3549 -66.195.43.0/24 394171 -66.195.44.0/22 3549 -66.195.48.0/20 3549 -66.195.64.0/19 3549 -66.195.96.0/21 3549 -66.195.104.0/22 3549 -66.195.108.0/23 3549 -66.195.110.0/24 26831 -66.195.111.0/24 3549 -66.195.112.0/22 3549 -66.195.116.0/23 3549 -66.195.118.0/23 19119 -66.195.120.0/24 3549 -66.195.121.0/24 394587 -66.195.122.0/23 3549 -66.195.124.0/22 33182 -66.195.128.0/21 3549 -66.195.136.0/22 3549 -66.195.140.0/24 3549 -66.195.141.0/24 14554 -66.195.142.0/24 55043 -66.195.143.0/24 33127 -66.195.144.0/22 3549 -66.195.148.0/24 36785 -66.195.149.0/24 3549 -66.195.150.0/23 3549 -66.195.152.0/21 3549 -66.195.160.0/20 3549 -66.195.176.0/23 3549 -66.195.178.0/23 63298 -66.195.180.0/22 3549 -66.195.184.0/21 3549 -66.195.192.0/21 11402 -66.195.200.0/23 3549 -66.195.202.0/24 394829 -66.195.203.0/24 3549 -66.195.204.0/22 3549 -66.195.208.0/22 3549 -66.195.212.0/23 3549 -66.195.214.0/24 393413 -66.195.215.0/24 40823 -66.195.216.0/22 3549 -66.195.220.0/23 3549 -66.195.222.0/24 3356 -66.195.223.0/24 3549 -66.195.224.0/24 395890 -66.195.225.0/24 3549 -66.195.226.0/23 3549 -66.195.228.0/22 3549 -66.195.232.0/22 3549 -66.195.236.0/23 3549 -66.195.238.0/23 32899 -66.195.240.0/22 33182 -66.195.244.0/22 3549 -66.195.248.0/21 3549 -66.196.0.0/19 7459 -66.196.32.0/20 30158 -66.196.48.0/20 13765 -66.196.64.0/21 10310 -66.196.80.0/21 26101 -66.196.88.0/22 26085 -66.196.104.0/21 26101 -66.196.112.0/21 26101 -66.196.128.0/18 12281 -66.196.192.0/18 11215 -66.197.0.0/17 29748 -66.197.128.0/17 2906 -66.198.0.0/21 6453 -66.198.8.0/24 20940 -66.198.9.0/24 6453 -66.198.10.0/23 6453 -66.198.12.0/23 6453 -66.198.14.0/24 10796 -66.198.15.0/24 6453 -66.198.16.0/20 6453 -66.198.32.0/22 6453 -66.198.36.0/23 6453 -66.198.38.0/24 395434 -66.198.39.0/24 6453 -66.198.40.0/21 6453 -66.198.56.0/21 6453 -66.198.64.0/20 6453 -66.198.80.0/21 6453 -66.198.96.0/19 6453 -66.198.128.0/21 6453 -66.198.136.0/23 6453 -66.198.138.0/24 6453 -66.198.139.0/24 24494 -66.198.140.0/22 6453 -66.198.144.0/20 6453 -66.198.160.0/19 6453 -66.198.192.0/21 10835 -66.198.200.0/22 10835 -66.198.204.0/24 209 -66.198.205.0/24 10835 -66.198.206.0/23 10835 -66.198.208.0/22 33152 -66.198.212.0/23 10835 -66.198.214.0/23 393436 -66.198.216.0/21 10835 -66.198.224.0/22 7016 -66.198.240.0/20 55293 -66.199.0.0/20 3549 -66.199.16.0/21 3549 -66.199.24.0/22 3549 -66.199.28.0/23 3549 -66.199.30.0/24 26831 -66.199.31.0/24 33606 -66.199.32.0/21 23498 -66.199.40.0/22 23498 -66.199.44.0/23 23498 -66.199.46.0/24 26802 -66.199.47.0/24 21548 -66.199.48.0/20 40405 -66.199.64.0/23 8092 -66.199.66.0/24 8092 -66.199.68.0/22 8092 -66.199.72.0/23 8092 -66.199.74.0/24 8092 -66.199.79.0/24 8092 -66.199.82.0/23 8092 -66.199.84.0/23 8092 -66.199.86.0/24 8092 -66.199.96.0/22 8092 -66.199.103.0/24 8092 -66.199.104.0/24 8092 -66.199.116.0/23 8092 -66.199.120.0/23 8092 -66.199.122.0/24 8092 -66.199.124.0/24 8092 -66.199.126.0/23 8092 -66.199.128.0/22 13768 -66.199.132.0/24 21719 -66.199.133.0/24 13768 -66.199.134.0/24 15128 -66.199.136.0/21 13768 -66.199.144.0/20 13768 -66.199.160.0/21 13768 -66.199.168.0/22 13768 -66.199.172.0/23 13768 -66.199.174.0/24 54643 -66.199.175.0/24 13768 -66.199.176.0/22 13768 -66.199.180.0/22 21775 -66.199.184.0/24 13768 -66.199.185.0/24 54643 -66.199.186.0/23 13768 -66.199.188.0/22 13768 -66.199.192.0/19 21873 -66.199.224.0/19 15149 -66.200.0.0/16 4565 -66.201.0.0/19 394513 -66.201.32.0/19 26803 -66.201.64.0/18 7393 -66.201.128.0/19 12111 -66.201.160.0/24 263783 -66.201.161.0/24 12956 -66.201.162.0/23 12956 -66.201.164.0/22 12956 -66.201.168.0/23 12956 -66.201.170.0/23 263783 -66.201.172.0/23 12956 -66.201.174.0/24 12956 -66.201.175.0/24 13682 -66.201.176.0/23 12956 -66.201.178.0/24 263783 -66.201.179.0/24 12956 -66.201.180.0/24 12127 -66.201.181.0/24 12956 -66.201.182.0/23 12956 -66.201.184.0/21 12956 -66.201.192.0/20 577 -66.201.208.0/24 14112 -66.201.209.0/24 577 -66.201.210.0/23 577 -66.201.212.0/22 577 -66.201.216.0/21 577 -66.201.224.0/19 577 -66.202.0.0/17 7029 -66.202.128.0/23 3356 -66.202.130.0/23 14676 -66.202.132.0/22 14676 -66.202.136.0/22 3356 -66.202.140.0/23 3356 -66.202.142.0/23 14676 -66.202.144.0/23 3356 -66.202.146.0/23 14676 -66.202.148.0/22 14676 -66.202.152.0/23 14676 -66.202.154.0/23 3356 -66.202.156.0/22 3356 -66.202.160.0/22 3356 -66.202.164.0/22 14676 -66.202.168.0/21 14676 -66.202.176.0/21 3356 -66.202.184.0/22 3356 -66.202.188.0/22 14676 -66.202.192.0/19 30154 -66.202.224.0/24 30154 -66.203.10.0/23 14532 -66.203.13.0/24 14532 -66.203.14.0/24 14532 -66.203.16.0/20 22320 -66.203.32.0/19 12247 -66.203.64.0/19 17113 -66.203.96.0/23 13330 -66.203.100.0/22 22375 -66.203.104.0/24 13330 -66.203.112.0/22 11922 -66.203.116.0/24 11922 -66.203.117.0/24 16364 -66.203.118.0/23 11922 -66.203.120.0/21 11922 -66.203.128.0/20 36063 -66.203.144.0/20 59371 -66.203.160.0/19 7794 -66.203.192.0/19 852 -66.203.224.0/20 12083 -66.204.0.0/16 21852 -66.205.0.0/18 22351 -66.205.64.0/19 35432 -66.205.96.0/22 19108 -66.205.100.0/24 21615 -66.205.101.0/24 209 -66.205.102.0/23 19108 -66.205.104.0/24 7018 -66.205.105.0/24 19108 -66.205.106.0/24 209 -66.205.107.0/24 19108 -66.205.108.0/23 19108 -66.205.110.0/24 21615 -66.205.111.0/24 19108 -66.205.112.0/21 19108 -66.205.120.0/24 21615 -66.205.121.0/24 19108 -66.205.122.0/24 21615 -66.205.123.0/24 19108 -66.205.124.0/22 19108 -66.205.128.0/19 14051 -66.205.160.0/20 693 -66.205.176.0/20 13649 -66.205.192.0/19 13614 -66.205.228.0/23 47254 -66.205.230.0/24 397983 -66.205.231.0/24 47254 -66.205.240.0/23 30301 -66.205.243.0/24 398020 -66.205.247.0/24 397570 -66.205.252.0/22 22060 -66.206.0.0/20 29802 -66.206.16.0/21 29802 -66.206.24.0/23 29802 -66.206.28.0/22 29802 -66.206.32.0/20 40244 -66.206.48.0/20 14703 -66.206.64.0/20 174 -66.206.80.0/20 32869 -66.206.96.0/20 62509 -66.206.112.0/21 46887 -66.206.120.0/24 46887 -66.206.121.0/24 394492 -66.206.122.0/24 46887 -66.206.123.0/24 27390 -66.206.124.0/22 46887 -66.206.128.0/19 46722 -66.206.160.0/21 13917 -66.206.168.0/22 13917 -66.206.172.0/24 13917 -66.206.173.0/24 16509 -66.206.174.0/23 13917 -66.206.176.0/20 23102 -66.206.192.0/22 19019 -66.206.196.0/24 19019 -66.206.197.0/24 20210 -66.206.198.0/23 19019 -66.206.200.0/23 19019 -66.206.202.0/24 17378 -66.206.203.0/24 19019 -66.206.204.0/22 19019 -66.206.208.0/23 23380 -66.206.210.0/24 23380 -66.206.211.0/24 14288 -66.206.212.0/24 23380 -66.206.213.0/24 14288 -66.206.214.0/23 23380 -66.206.216.0/23 14288 -66.206.218.0/23 23380 -66.206.220.0/22 23380 -66.206.224.0/19 23184 -66.207.0.0/19 33734 -66.207.32.0/22 36057 -66.207.36.0/22 53365 -66.207.40.0/22 27257 -66.207.44.0/24 27257 -66.207.45.0/24 36236 -66.207.46.0/23 27257 -66.207.48.0/23 33284 -66.207.51.0/24 33284 -66.207.52.0/22 33284 -66.207.56.0/21 33284 -66.207.64.0/21 7795 -66.207.72.0/23 7795 -66.207.74.0/24 27409 -66.207.75.0/24 7795 -66.207.76.0/24 7795 -66.207.77.0/24 396983 -66.207.78.0/24 7795 -66.207.79.0/24 396983 -66.207.80.0/20 7795 -66.207.96.0/22 12021 -66.207.100.0/23 12021 -66.207.102.0/24 12021 -66.207.103.0/24 394284 -66.207.104.0/23 394284 -66.207.106.0/23 12021 -66.207.108.0/22 12021 -66.207.112.0/22 393994 -66.207.116.0/23 393994 -66.207.118.0/23 394284 -66.207.120.0/22 12021 -66.207.124.0/23 394284 -66.207.126.0/23 12021 -66.207.128.0/21 19261 -66.207.136.0/22 19261 -66.207.140.0/23 19261 -66.207.142.0/24 19261 -66.207.143.0/24 46619 -66.207.144.0/22 14408 -66.207.148.0/24 14408 -66.207.150.0/23 14408 -66.207.153.0/24 14408 -66.207.155.0/24 14408 -66.207.156.0/24 14408 -66.207.158.0/24 14408 -66.207.160.0/20 6939 -66.207.190.0/24 63306 -66.207.192.0/19 21949 -66.207.224.0/19 15153 -66.208.0.0/18 22925 -66.208.64.0/20 10352 -66.208.96.0/20 18618 -66.208.112.0/20 32098 -66.208.128.0/23 209 -66.208.130.0/24 209 -66.208.131.0/24 5006 -66.208.132.0/23 209 -66.208.134.0/24 209 -66.208.135.0/24 22561 -66.208.136.0/24 22561 -66.208.137.0/24 209 -66.208.138.0/24 23126 -66.208.139.0/24 209 -66.208.140.0/23 22561 -66.208.142.0/24 22561 -66.208.143.0/24 209 -66.208.144.0/23 22561 -66.208.146.0/24 209 -66.208.147.0/24 5006 -66.208.148.0/24 22561 -66.208.149.0/24 209 -66.208.150.0/23 209 -66.208.152.0/24 22561 -66.208.153.0/24 209 -66.208.154.0/23 209 -66.208.156.0/22 22561 -66.208.160.0/23 209 -66.208.162.0/23 22561 -66.208.164.0/24 209 -66.208.165.0/24 5006 -66.208.166.0/23 209 -66.208.168.0/24 209 -66.208.169.0/24 22561 -66.208.170.0/24 209 -66.208.171.0/24 22561 -66.208.172.0/24 5006 -66.208.173.0/24 22561 -66.208.174.0/23 22561 -66.208.176.0/23 22561 -66.208.178.0/23 209 -66.208.180.0/23 209 -66.208.182.0/24 5006 -66.208.183.0/24 209 -66.208.184.0/24 22561 -66.208.185.0/24 209 -66.208.186.0/24 5006 -66.208.187.0/24 22561 -66.208.188.0/24 22561 -66.208.189.0/24 5006 -66.208.190.0/23 209 -66.208.192.0/18 7922 -66.209.0.0/19 16572 -66.209.32.0/20 15054 -66.209.48.0/20 30147 -66.209.64.0/21 23005 -66.209.72.0/23 23005 -66.209.74.0/24 64212 -66.209.75.0/24 23005 -66.209.76.0/22 23005 -66.209.80.0/24 23005 -66.209.81.0/24 27496 -66.209.82.0/23 23005 -66.209.84.0/23 23005 -66.209.86.0/24 47094 -66.209.87.0/24 23005 -66.209.88.0/22 23005 -66.209.92.0/24 15019 -66.209.93.0/24 19393 -66.209.94.0/24 64212 -66.209.95.0/24 23005 -66.209.96.0/19 35985 -66.209.128.0/22 7106 -66.209.132.0/23 7106 -66.209.134.0/23 394708 -66.209.136.0/21 7106 -66.209.144.0/21 27427 -66.209.152.0/22 27427 -66.209.156.0/23 27427 -66.209.160.0/20 3714 -66.209.176.0/20 40438 -66.209.192.0/21 5015 -66.209.200.0/22 5015 -66.209.204.0/23 5015 -66.209.206.0/24 5015 -66.209.207.0/24 3257 -66.209.208.0/22 5015 -66.209.212.0/24 3257 -66.209.213.0/24 5015 -66.209.214.0/23 5015 -66.209.216.0/21 5015 -66.209.224.0/20 7332 -66.209.240.0/20 46694 -66.210.0.0/21 22773 -66.210.8.0/23 22773 -66.210.10.0/24 19403 -66.210.11.0/24 22773 -66.210.12.0/22 22773 -66.210.16.0/20 22773 -66.210.32.0/22 22773 -66.210.36.0/24 32616 -66.210.37.0/24 22773 -66.210.38.0/23 22773 -66.210.40.0/21 22773 -66.210.48.0/20 22773 -66.210.64.0/21 22773 -66.210.72.0/22 22773 -66.210.76.0/24 22773 -66.210.77.0/24 14885 -66.210.78.0/23 22773 -66.210.80.0/20 22773 -66.210.96.0/24 22773 -66.210.97.0/24 26519 -66.210.98.0/23 26519 -66.210.100.0/22 22773 -66.210.104.0/21 22773 -66.210.112.0/21 22773 -66.210.120.0/22 22773 -66.210.124.0/23 22773 -66.210.126.0/24 22773 -66.210.127.0/24 30465 -66.210.128.0/22 22773 -66.210.132.0/23 22773 -66.210.134.0/24 22773 -66.210.135.0/24 46787 -66.210.136.0/21 22773 -66.210.144.0/20 22773 -66.210.160.0/21 22773 -66.210.168.0/22 22773 -66.210.172.0/24 22773 -66.210.173.0/24 20102 -66.210.174.0/24 22773 -66.210.175.0/24 54945 -66.210.176.0/20 22773 -66.210.192.0/21 22773 -66.210.200.0/22 22773 -66.210.204.0/24 27582 -66.210.205.0/24 22773 -66.210.206.0/23 22773 -66.210.208.0/20 22773 -66.210.224.0/19 22773 -66.211.0.0/20 17306 -66.211.16.0/20 30264 -66.211.32.0/22 22561 -66.211.36.0/23 22561 -66.211.38.0/24 22561 -66.211.39.0/24 19969 -66.211.40.0/21 22561 -66.211.48.0/23 209 -66.211.50.0/23 22561 -66.211.52.0/22 22561 -66.211.56.0/24 22561 -66.211.57.0/24 209 -66.211.58.0/23 22561 -66.211.60.0/24 23447 -66.211.61.0/24 22561 -66.211.62.0/23 22561 -66.211.64.0/23 14374 -66.211.67.0/24 14374 -66.211.68.0/22 14374 -66.211.73.0/24 14374 -66.211.74.0/23 14374 -66.211.77.0/24 14374 -66.211.78.0/23 14374 -66.211.80.0/22 14374 -66.211.84.0/23 14374 -66.211.86.0/24 14374 -66.211.89.0/24 14374 -66.211.92.0/22 14374 -66.211.96.0/20 11691 -66.211.112.0/20 53726 -66.211.128.0/20 10367 -66.211.144.0/21 10367 -66.211.152.0/24 10367 -66.211.153.0/24 53784 -66.211.154.0/23 10367 -66.211.156.0/22 10367 -66.211.160.0/21 11643 -66.211.168.0/22 17012 -66.211.172.0/22 11643 -66.211.176.0/20 11643 -66.211.192.0/19 7341 -66.211.224.0/20 7341 -66.211.240.0/21 7341 -66.211.248.0/24 17125 -66.211.249.0/24 7341 -66.211.250.0/23 7341 -66.211.252.0/22 7341 -66.212.0.0/20 10823 -66.212.16.0/21 8100 -66.212.24.0/23 8100 -66.212.26.0/24 19257 -66.212.27.0/24 8100 -66.212.28.0/22 8100 -66.212.32.0/20 17049 -66.212.50.0/24 393706 -66.212.51.0/24 33346 -66.212.52.0/23 33576 -66.212.54.0/24 33576 -66.212.55.0/24 396357 -66.212.56.0/22 394281 -66.212.60.0/23 62913 -66.212.62.0/23 15344 -66.212.64.0/20 21525 -66.212.80.0/23 17281 -66.212.128.0/19 13333 -66.212.160.0/20 11342 -66.212.176.0/21 11342 -66.212.184.0/22 11342 -66.212.188.0/22 14152 -66.212.192.0/19 23100 -66.212.224.0/19 14537 -66.213.0.0/17 26923 -66.213.128.0/24 6461 -66.213.129.0/24 54236 -66.213.130.0/23 6461 -66.213.132.0/22 6461 -66.213.136.0/23 22969 -66.213.138.0/24 22875 -66.213.139.0/24 22969 -66.213.140.0/22 22969 -66.213.144.0/20 4997 -66.213.160.0/20 4208 -66.213.176.0/20 33003 -66.213.192.0/18 7385 -66.214.0.0/15 20115 -66.216.0.0/20 19151 -66.216.16.0/23 19151 -66.216.18.0/24 19151 -66.216.19.0/24 64459 -66.216.20.0/22 19151 -66.216.24.0/21 19151 -66.216.32.0/19 19151 -66.216.64.0/19 33070 -66.216.96.0/20 33070 -66.216.112.0/22 33070 -66.216.116.0/23 19994 -66.216.118.0/23 33070 -66.216.120.0/21 33070 -66.216.128.0/18 7029 -66.216.192.0/23 11693 -66.216.194.0/23 12083 -66.216.196.0/22 11693 -66.216.200.0/22 11693 -66.216.204.0/23 12083 -66.216.206.0/23 11693 -66.216.208.0/23 11693 -66.216.210.0/23 12083 -66.216.212.0/22 11693 -66.216.216.0/22 11693 -66.216.220.0/24 12083 -66.216.221.0/24 11693 -66.216.222.0/24 11693 -66.216.223.0/24 12083 -66.216.224.0/19 20115 -66.217.0.0/16 7029 -66.218.0.0/19 22727 -66.218.32.0/21 19817 -66.218.40.0/22 19817 -66.218.48.0/22 19817 -66.218.56.0/21 19817 -66.218.80.0/20 26101 -66.218.96.0/22 33680 -66.218.100.0/22 30470 -66.218.104.0/21 30470 -66.218.112.0/20 30470 -66.218.128.0/22 17192 -66.218.132.0/24 18872 -66.218.134.0/23 17192 -66.218.136.0/21 17192 -66.218.144.0/20 36695 -66.218.160.0/23 36154 -66.218.170.0/23 16744 -66.218.176.0/20 33227 -66.218.192.0/20 17129 -66.218.208.0/22 32592 -66.218.212.0/23 32592 -66.218.214.0/24 32592 -66.218.215.0/24 10984 -66.218.216.0/21 32592 -66.218.224.0/20 16495 -66.218.240.0/21 209 -66.218.248.0/21 16495 -66.219.0.0/20 25769 -66.219.16.0/24 15085 -66.219.18.0/23 15085 -66.219.20.0/22 15085 -66.219.24.0/21 15085 -66.219.32.0/20 27325 -66.219.48.0/21 27325 -66.219.56.0/22 27325 -66.219.60.0/24 27325 -66.219.61.0/24 18499 -66.219.62.0/23 27325 -66.219.64.0/19 7029 -66.219.96.0/20 10843 -66.219.112.0/22 2882 -66.219.116.0/23 237 -66.219.118.0/24 237 -66.219.119.0/24 2882 -66.219.120.0/24 237 -66.219.121.0/24 2882 -66.219.122.0/24 237 -66.219.123.0/24 2882 -66.219.124.0/24 237 -66.219.125.0/24 2882 -66.219.126.0/23 2882 -66.219.128.0/18 23141 -66.219.192.0/20 29933 -66.219.208.0/21 29933 -66.219.216.0/24 29933 -66.219.217.0/24 36025 -66.219.218.0/23 29933 -66.219.220.0/22 29933 -66.219.224.0/21 29933 -66.219.232.0/22 29933 -66.219.236.0/24 29933 -66.219.237.0/24 393816 -66.219.238.0/23 29933 -66.219.240.0/20 29933 -66.220.0.0/24 6939 -66.220.1.0/24 63949 -66.220.2.0/23 6939 -66.220.4.0/22 6939 -66.220.8.0/22 6939 -66.220.12.0/23 6939 -66.220.14.0/24 54288 -66.220.15.0/24 6939 -66.220.16.0/24 6939 -66.220.17.0/24 54288 -66.220.18.0/24 6939 -66.220.19.0/24 54288 -66.220.20.0/24 6939 -66.220.21.0/24 54288 -66.220.22.0/23 6939 -66.220.24.0/23 6939 -66.220.26.0/24 6939 -66.220.27.0/24 36103 -66.220.28.0/22 6939 -66.220.32.0/20 22837 -66.220.48.0/22 22837 -66.220.56.0/23 22837 -66.220.58.0/24 1421 -66.220.59.0/24 22837 -66.220.60.0/22 22837 -66.220.64.0/20 21565 -66.220.80.0/20 36813 -66.220.96.0/19 4181 -66.220.128.0/20 27235 -66.220.144.0/20 32934 -66.220.160.0/20 36295 -66.220.176.0/20 16700 -66.220.192.0/20 395965 -66.220.208.0/20 15011 -66.220.224.0/19 17356 -66.221.0.0/16 54489 -66.222.0.0/17 4181 -66.222.128.0/17 852 -66.223.0.0/17 13768 -66.223.128.0/17 8047 -66.224.0.0/16 7385 -66.225.0.0/19 12111 -66.225.32.0/20 54240 -66.225.48.0/20 33430 -66.225.64.0/20 29914 -66.225.80.0/22 29914 -66.225.88.0/21 29914 -66.225.96.0/20 29914 -66.225.112.0/22 29914 -66.225.116.0/23 29914 -66.225.118.0/24 27557 -66.225.119.0/24 29914 -66.225.120.0/23 29914 -66.225.122.0/24 29914 -66.225.123.0/24 27557 -66.225.124.0/22 27557 -66.225.128.0/19 20161 -66.225.160.0/19 5690 -66.225.192.0/24 33633 -66.225.193.0/24 23352 -66.225.194.0/23 36352 -66.225.196.0/24 23352 -66.225.197.0/24 30081 -66.225.198.0/24 36352 -66.225.199.0/24 23352 -66.225.200.0/21 23352 -66.225.208.0/24 30081 -66.225.209.0/24 23352 -66.225.210.0/23 23352 -66.225.212.0/23 23352 -66.225.214.0/24 30081 -66.225.215.0/24 23352 -66.225.216.0/22 23352 -66.225.220.0/23 23352 -66.225.222.0/24 30081 -66.225.223.0/24 3949 -66.225.224.0/22 23352 -66.225.228.0/23 23352 -66.225.230.0/24 23352 -66.225.231.0/24 36352 -66.225.232.0/24 36352 -66.225.233.0/24 23352 -66.225.234.0/23 23352 -66.225.236.0/23 23352 -66.225.238.0/24 23352 -66.225.239.0/24 198949 -66.225.240.0/23 23352 -66.225.242.0/24 23352 -66.225.243.0/24 30081 -66.225.244.0/22 23352 -66.225.248.0/23 23352 -66.225.250.0/24 23352 -66.225.251.0/24 393713 -66.225.252.0/22 23352 -66.226.0.0/19 7296 -66.226.32.0/19 33647 -66.226.64.0/21 30447 -66.226.72.0/21 18501 -66.226.80.0/21 14116 -66.226.88.0/21 30447 -66.226.96.0/19 12033 -66.226.128.0/19 26753 -66.226.160.0/19 19128 -66.226.192.0/24 35985 -66.226.193.0/24 20077 -66.226.194.0/23 20077 -66.226.196.0/22 20077 -66.226.200.0/21 20077 -66.226.208.0/20 20077 -66.226.224.0/21 20077 -66.226.232.0/22 18990 -66.226.236.0/22 20077 -66.226.240.0/21 20077 -66.226.248.0/22 20077 -66.226.252.0/23 18990 -66.226.254.0/23 20077 -66.227.0.0/21 3257 -66.227.8.0/23 3257 -66.227.10.0/24 23029 -66.227.11.0/24 3257 -66.227.12.0/22 3257 -66.227.16.0/23 3257 -66.227.18.0/24 27508 -66.227.19.0/24 3257 -66.227.20.0/22 3257 -66.227.24.0/21 3257 -66.227.32.0/21 3257 -66.227.40.0/22 3257 -66.227.44.0/23 46281 -66.227.46.0/24 17352 -66.227.47.0/24 3257 -66.227.48.0/21 3257 -66.227.56.0/23 3257 -66.227.58.0/24 3257 -66.227.59.0/24 26694 -66.227.60.0/22 3257 -66.227.64.0/22 3257 -66.227.68.0/23 3257 -66.227.70.0/23 21886 -66.227.72.0/21 3257 -66.227.80.0/21 3257 -66.227.88.0/22 3257 -66.227.92.0/23 3257 -66.227.94.0/24 26881 -66.227.95.0/24 3257 -66.227.96.0/21 3257 -66.227.104.0/22 3257 -66.227.108.0/23 3257 -66.227.110.0/24 3257 -66.227.111.0/24 23029 -66.227.112.0/24 40676 -66.227.113.0/24 3257 -66.227.114.0/23 3257 -66.227.116.0/23 3257 -66.227.118.0/24 13517 -66.227.119.0/24 3257 -66.227.120.0/21 3257 -66.227.128.0/17 20115 -66.228.0.0/20 135600 -66.228.16.0/20 11233 -66.228.32.0/19 63949 -66.228.64.0/19 19406 -66.228.96.0/20 14046 -66.228.112.0/20 36351 -66.228.128.0/19 19337 -66.228.160.0/20 7233 -66.228.200.0/23 16518 -66.228.202.0/23 6295 -66.228.208.0/21 6295 -66.228.216.0/22 6295 -66.228.221.0/24 14380 -66.228.222.0/23 7336 -66.228.224.0/19 25637 -66.229.0.0/16 7922 -66.230.0.0/18 46476 -66.230.64.0/20 17054 -66.230.80.0/20 7782 -66.230.96.0/19 7782 -66.230.128.0/18 23393 -66.230.192.0/19 3064 -66.230.224.0/20 3064 -66.230.240.0/22 209 -66.230.244.0/23 209 -66.230.246.0/24 209 -66.230.247.0/24 14935 -66.230.248.0/22 14979 -66.230.252.0/24 27233 -66.231.0.0/19 13576 -66.231.32.0/19 46825 -66.231.64.0/24 202349 -66.231.65.0/24 23031 -66.231.66.0/23 23031 -66.231.68.0/24 23246 -66.231.70.0/24 205645 -66.231.71.0/24 208969 -66.231.72.0/23 23031 -66.231.74.0/24 34466 -66.231.75.0/24 23031 -66.231.76.0/22 23031 -66.231.80.0/20 22606 -66.231.96.0/20 14511 -66.231.112.0/21 14511 -66.231.120.0/21 29744 -66.231.128.0/19 10674 -66.231.160.0/20 11992 -66.231.176.0/20 33597 -66.231.192.0/23 21547 -66.231.194.0/24 33728 -66.231.195.0/24 21547 -66.231.196.0/24 46188 -66.231.197.0/24 21547 -66.231.198.0/23 21547 -66.231.200.0/24 21547 -66.231.201.0/24 46188 -66.231.202.0/23 21547 -66.231.204.0/22 21547 -66.231.208.0/20 21547 -66.231.224.0/22 22364 -66.231.230.0/23 22364 -66.231.232.0/21 22364 -66.231.240.0/22 22364 -66.231.244.0/23 22364 -66.231.247.0/24 22364 -66.231.248.0/21 22364 -66.232.0.0/20 59371 -66.232.16.0/22 19156 -66.232.20.0/23 16509 -66.232.22.0/23 27229 -66.232.26.0/23 27229 -66.232.28.0/22 40511 -66.232.32.0/24 64280 -66.232.33.0/24 54538 -66.232.34.0/24 54538 -66.232.35.0/24 64280 -66.232.36.0/23 54538 -66.232.38.0/23 64280 -66.232.40.0/24 54538 -66.232.41.0/24 64280 -66.232.42.0/23 64280 -66.232.44.0/22 64280 -66.232.48.0/21 63448 -66.232.56.0/23 27229 -66.232.58.0/24 27229 -66.232.60.0/22 32586 -66.232.64.0/19 15305 -66.232.96.0/19 29802 -66.232.128.0/21 201471 -66.232.136.0/22 9952 -66.232.140.0/22 9848 -66.232.144.0/22 9848 -66.232.148.0/22 3064 -66.232.152.0/21 3064 -66.232.160.0/19 22926 -66.232.192.0/19 30612 -66.232.224.0/22 40839 -66.232.228.0/23 40839 -66.232.231.0/24 40839 -66.232.232.0/21 40839 -66.232.240.0/20 27262 -66.233.140.0/22 16586 -66.233.161.0/24 3356 -66.233.192.0/20 16586 -66.234.0.0/20 13768 -66.234.16.0/20 18875 -66.234.32.0/19 12271 -66.234.64.0/19 397048 -66.234.96.0/22 11495 -66.234.101.0/24 11495 -66.234.104.0/23 11495 -66.234.106.0/24 11495 -66.234.112.0/20 36374 -66.234.128.0/20 14022 -66.234.144.0/24 17139 -66.234.145.0/24 14022 -66.234.146.0/23 14022 -66.234.148.0/22 14022 -66.234.152.0/21 14022 -66.234.160.0/23 55348 -66.234.176.0/20 14909 -66.234.192.0/19 11404 -66.234.224.0/19 3257 -66.235.0.0/18 11404 -66.235.64.0/20 3853 -66.235.80.0/21 11492 -66.235.92.0/22 11492 -66.235.96.0/20 7349 -66.235.112.0/24 46940 -66.235.128.0/19 15224 -66.235.160.0/21 14361 -66.235.168.0/24 397423 -66.235.169.0/24 40244 -66.235.170.0/23 40676 -66.235.172.0/22 40676 -66.235.176.0/20 14361 -66.235.192.0/24 29873 -66.235.194.0/24 22458 -66.235.196.0/22 29873 -66.235.200.0/24 13335 -66.235.201.0/24 22458 -66.235.202.0/23 29873 -66.235.207.0/24 22458 -66.235.209.0/24 22458 -66.235.214.0/24 22458 -66.235.215.0/24 29873 -66.235.216.0/21 29873 -66.235.224.0/19 26978 -66.236.0.0/21 2828 -66.236.8.0/22 2828 -66.236.12.0/24 2828 -66.236.13.0/24 22199 -66.236.14.0/23 2828 -66.236.16.0/20 2828 -66.236.32.0/19 2828 -66.236.64.0/18 2828 -66.236.128.0/17 2828 -66.237.0.0/22 2828 -66.237.4.0/24 2828 -66.237.5.0/24 22759 -66.237.6.0/23 22759 -66.237.8.0/21 2828 -66.237.16.0/20 2828 -66.237.32.0/21 2828 -66.237.40.0/22 2828 -66.237.44.0/24 2828 -66.237.45.0/24 22759 -66.237.46.0/24 22759 -66.237.47.0/24 2828 -66.237.48.0/22 22759 -66.237.52.0/22 2828 -66.237.56.0/21 2828 -66.237.64.0/20 2828 -66.237.80.0/21 2828 -66.237.88.0/22 2828 -66.237.92.0/23 2828 -66.237.94.0/23 22759 -66.237.96.0/19 2828 -66.237.128.0/17 2828 -66.238.0.0/22 2828 -66.238.4.0/22 22759 -66.238.8.0/21 2828 -66.238.16.0/20 2828 -66.238.32.0/19 2828 -66.238.64.0/22 2828 -66.238.68.0/22 22759 -66.238.72.0/21 2828 -66.238.80.0/20 2828 -66.238.96.0/19 2828 -66.238.128.0/19 2828 -66.238.160.0/20 2828 -66.238.176.0/21 2828 -66.238.184.0/23 2828 -66.238.186.0/24 29819 -66.238.187.0/24 2828 -66.238.188.0/22 2828 -66.238.192.0/19 2828 -66.238.224.0/21 2828 -66.238.232.0/22 2828 -66.238.236.0/23 2828 -66.238.238.0/24 7046 -66.238.239.0/24 2828 -66.238.240.0/20 2828 -66.239.0.0/23 2828 -66.239.2.0/24 33355 -66.239.3.0/24 2828 -66.239.4.0/22 2828 -66.239.8.0/21 2828 -66.239.16.0/21 2828 -66.239.24.0/24 12165 -66.239.25.0/24 2828 -66.239.26.0/23 2828 -66.239.28.0/22 2828 -66.239.32.0/19 2828 -66.239.64.0/19 2828 -66.239.96.0/21 2828 -66.239.104.0/22 2828 -66.239.108.0/23 2828 -66.239.110.0/24 2828 -66.239.111.0/24 31835 -66.239.112.0/20 2828 -66.239.128.0/17 2828 -66.240.0.0/20 7922 -66.240.16.0/21 7922 -66.240.24.0/22 7922 -66.240.28.0/23 7922 -66.240.30.0/24 33287 -66.240.31.0/24 7922 -66.240.32.0/20 7922 -66.240.48.0/21 7922 -66.240.56.0/23 7922 -66.240.58.0/24 33491 -66.240.59.0/24 7922 -66.240.60.0/22 7922 -66.240.64.0/18 7029 -66.240.128.0/22 23136 -66.240.132.0/24 22027 -66.240.133.0/24 23136 -66.240.134.0/23 22027 -66.240.136.0/21 23136 -66.240.144.0/20 23136 -66.240.160.0/19 23136 -66.240.192.0/18 10439 -66.241.0.0/19 25766 -66.241.32.0/19 25923 -66.241.64.0/19 14188 -66.241.96.0/21 5715 -66.241.104.0/22 5715 -66.241.108.0/24 5715 -66.241.111.0/24 5715 -66.241.112.0/21 36351 -66.241.128.0/21 23498 -66.241.136.0/23 23498 -66.241.138.0/24 23498 -66.241.139.0/24 62667 -66.241.140.0/22 23498 -66.241.144.0/20 36221 -66.241.160.0/19 16604 -66.241.192.0/18 20021 -66.242.0.0/20 7979 -66.242.16.0/20 29873 -66.242.32.0/19 14861 -66.242.64.0/23 21823 -66.242.66.0/23 16904 -66.242.68.0/22 16904 -66.242.72.0/24 16904 -66.242.73.0/24 21823 -66.242.74.0/24 21823 -66.242.75.0/24 16904 -66.242.76.0/23 16904 -66.242.78.0/23 21823 -66.242.80.0/23 16904 -66.242.82.0/24 16904 -66.242.83.0/24 21823 -66.242.84.0/24 21823 -66.242.85.0/24 16904 -66.242.86.0/23 16904 -66.242.88.0/23 21823 -66.242.90.0/23 16904 -66.242.92.0/23 16904 -66.242.94.0/24 21823 -66.242.95.0/24 16904 -66.242.96.0/20 812 -66.242.112.0/20 36720 -66.242.128.0/19 19271 -66.242.160.0/20 25649 -66.242.176.0/21 25941 -66.242.184.0/21 15068 -66.242.192.0/19 18596 -66.242.224.0/21 22561 -66.242.232.0/24 22561 -66.242.233.0/24 209 -66.242.234.0/24 22561 -66.242.235.0/24 5006 -66.242.236.0/23 209 -66.242.238.0/23 22561 -66.242.240.0/22 209 -66.242.244.0/22 22561 -66.242.248.0/22 22561 -66.242.252.0/22 209 -66.243.0.0/18 3356 -66.243.64.0/22 3356 -66.243.68.0/24 3356 -66.243.69.0/24 21734 -66.243.70.0/23 3356 -66.243.72.0/21 3356 -66.243.80.0/20 3356 -66.243.96.0/21 3356 -66.243.104.0/22 3356 -66.243.108.0/24 14001 -66.243.109.0/24 3356 -66.243.110.0/23 3356 -66.243.112.0/20 3356 -66.243.128.0/21 3356 -66.243.136.0/23 3356 -66.243.138.0/24 3356 -66.243.139.0/24 22362 -66.243.140.0/22 3356 -66.243.144.0/20 3356 -66.243.160.0/19 3356 -66.243.192.0/21 209 -66.243.200.0/21 32645 -66.243.208.0/22 32645 -66.243.212.0/22 12175 -66.243.216.0/23 32645 -66.243.218.0/23 6461 -66.243.220.0/23 5742 -66.243.222.0/24 17093 -66.243.223.0/24 12175 -66.243.224.0/24 174 -66.243.225.0/24 12175 -66.243.226.0/24 12175 -66.243.227.0/24 22647 -66.243.228.0/22 209 -66.243.232.0/21 12175 -66.243.240.0/20 12175 -66.244.0.0/18 23483 -66.244.64.0/23 11550 -66.244.66.0/24 11550 -66.244.67.0/24 62945 -66.244.68.0/22 11550 -66.244.72.0/21 11550 -66.244.80.0/20 11550 -66.244.96.0/20 11550 -66.244.112.0/21 11550 -66.244.120.0/23 11550 -66.244.122.0/23 22615 -66.244.124.0/22 11550 -66.244.128.0/20 32524 -66.244.144.0/20 27589 -66.244.160.0/19 16399 -66.244.192.0/22 6327 -66.244.196.0/23 6327 -66.244.198.0/23 30500 -66.244.200.0/21 6327 -66.244.208.0/21 6327 -66.244.216.0/24 6327 -66.244.217.0/24 16583 -66.244.218.0/24 23498 -66.244.219.0/24 6327 -66.244.220.0/24 3561 -66.244.221.0/24 6327 -66.244.222.0/23 6327 -66.244.224.0/21 6327 -66.244.232.0/22 6327 -66.244.236.0/23 6327 -66.244.238.0/24 6327 -66.244.239.0/24 54296 -66.244.240.0/22 6327 -66.244.244.0/23 54841 -66.244.246.0/23 6327 -66.244.248.0/21 6327 -66.245.0.0/17 7029 -66.245.128.0/19 7029 -66.245.176.0/22 63290 -66.245.184.0/21 33218 -66.245.192.0/22 19817 -66.245.224.0/19 7456 -66.246.0.0/18 8001 -66.246.64.0/22 8001 -66.246.68.0/24 8001 -66.246.69.0/24 30202 -66.246.70.0/23 8001 -66.246.72.0/23 8001 -66.246.74.0/24 8001 -66.246.75.0/24 63949 -66.246.76.0/24 63949 -66.246.77.0/24 8001 -66.246.78.0/23 8001 -66.246.80.0/20 8001 -66.246.96.0/19 8001 -66.246.128.0/21 8001 -66.246.136.0/23 8001 -66.246.138.0/24 63949 -66.246.139.0/24 8001 -66.246.140.0/22 8001 -66.246.144.0/22 8001 -66.246.148.0/24 8001 -66.246.149.0/24 396924 -66.246.150.0/23 8001 -66.246.152.0/24 8001 -66.246.153.0/24 23131 -66.246.154.0/23 8001 -66.246.156.0/22 8001 -66.246.160.0/19 8001 -66.246.192.0/19 8001 -66.246.224.0/21 8001 -66.246.232.0/24 396924 -66.246.233.0/24 8001 -66.246.234.0/23 8001 -66.246.236.0/22 8001 -66.246.240.0/20 8001 -66.247.0.0/18 1239 -66.247.64.0/19 1239 -66.247.96.0/21 1239 -66.247.104.0/22 17402 -66.247.108.0/22 1239 -66.247.112.0/20 1239 -66.247.128.0/18 1239 -66.247.192.0/21 1239 -66.247.200.0/21 11816 -66.247.208.0/22 17402 -66.247.212.0/22 1239 -66.247.216.0/21 1239 -66.247.224.0/19 1239 -66.248.0.0/17 7029 -66.248.128.0/19 26407 -66.248.160.0/19 14434 -66.248.200.0/22 30148 -66.248.204.0/22 57043 -66.248.228.0/22 396502 -66.248.232.0/23 6556 -66.248.234.0/24 6556 -66.248.240.0/23 36352 -66.248.244.0/24 397943 -66.248.245.0/24 394752 -66.248.248.0/23 17025 -66.248.254.0/24 27228 -66.249.0.0/19 29873 -66.249.32.0/20 22561 -66.249.48.0/21 22561 -66.249.56.0/23 22561 -66.249.58.0/23 209 -66.249.60.0/23 22561 -66.249.62.0/23 16835 -66.249.64.0/19 15169 -66.249.96.0/23 22442 -66.249.98.0/24 22442 -66.249.99.0/24 394437 -66.249.100.0/23 394437 -66.249.102.0/23 22442 -66.249.104.0/22 22442 -66.249.108.0/24 394437 -66.249.109.0/24 22442 -66.249.110.0/24 22442 -66.249.111.0/24 394437 -66.249.112.0/23 394437 -66.249.114.0/23 22442 -66.249.116.0/23 22442 -66.249.118.0/24 22442 -66.249.119.0/24 394437 -66.249.120.0/21 22442 -66.249.128.0/21 46261 -66.249.136.0/22 46261 -66.249.142.0/23 46261 -66.249.144.0/23 33576 -66.249.146.0/24 33576 -66.249.148.0/23 33576 -66.249.150.0/24 35900 -66.249.151.0/24 33576 -66.249.152.0/23 13771 -66.249.154.0/24 13771 -66.249.155.0/24 33576 -66.249.156.0/22 33576 -66.249.160.0/21 14265 -66.249.168.0/22 14265 -66.249.176.0/20 14265 -66.249.192.0/24 12127 -66.249.193.0/24 12956 -66.249.194.0/23 12956 -66.249.196.0/24 12127 -66.249.197.0/24 12956 -66.249.198.0/24 12127 -66.249.199.0/24 12956 -66.249.200.0/22 12956 -66.249.204.0/23 12956 -66.249.206.0/23 12127 -66.249.208.0/21 12956 -66.249.216.0/22 12956 -66.249.220.0/23 12956 -66.249.222.0/24 27768 -66.249.223.0/24 12956 -66.249.224.0/22 13819 -66.249.228.0/22 16698 -66.249.232.0/22 16698 -66.249.236.0/22 13819 -66.249.240.0/21 13819 -66.249.248.0/22 13819 -66.249.252.0/23 63328 -66.249.254.0/24 63328 -66.249.255.0/24 13819 -66.250.0.0/20 174 -66.250.16.0/21 6494 -66.250.24.0/21 174 -66.250.32.0/20 174 -66.250.48.0/23 26819 -66.250.50.0/23 174 -66.250.52.0/22 174 -66.250.56.0/21 174 -66.250.64.0/19 174 -66.250.96.0/23 174 -66.250.98.0/23 30666 -66.250.100.0/22 174 -66.250.104.0/21 174 -66.250.112.0/21 174 -66.250.120.0/22 26819 -66.250.124.0/22 174 -66.250.128.0/19 174 -66.250.160.0/20 174 -66.250.176.0/21 174 -66.250.184.0/22 174 -66.250.188.0/23 174 -66.250.190.0/23 11686 -66.250.192.0/20 174 -66.250.208.0/21 174 -66.250.216.0/22 27229 -66.250.220.0/22 174 -66.250.224.0/20 174 -66.250.240.0/22 174 -66.250.244.0/24 1421 -66.250.245.0/24 174 -66.250.246.0/23 174 -66.250.248.0/21 174 -66.251.0.0/18 7029 -66.251.64.0/21 7029 -66.251.72.0/23 7029 -66.251.74.0/24 7029 -66.251.75.0/24 32679 -66.251.76.0/22 7029 -66.251.80.0/20 7029 -66.251.96.0/22 7029 -66.251.100.0/23 7029 -66.251.102.0/23 40399 -66.251.104.0/21 7029 -66.251.112.0/20 7029 -66.251.128.0/19 328013 -66.251.160.0/20 328013 -66.251.176.0/21 328013 -66.251.192.0/24 3356 -66.251.193.0/24 3064 -66.251.194.0/23 3356 -66.251.196.0/24 3356 -66.251.197.0/24 25612 -66.251.198.0/23 3356 -66.251.200.0/23 3356 -66.251.202.0/24 3356 -66.251.203.0/24 16741 -66.251.204.0/22 3356 -66.251.208.0/24 3064 -66.251.209.0/24 3356 -66.251.210.0/23 3356 -66.251.212.0/23 3356 -66.251.214.0/24 18624 -66.251.215.0/24 36675 -66.251.216.0/21 3356 -66.251.224.0/19 26068 -66.252.0.0/22 23522 -66.252.5.0/24 23522 -66.252.24.0/24 32181 -66.252.28.0/24 32181 -66.252.30.0/24 32181 -66.252.32.0/19 11847 -66.252.64.0/20 12223 -66.252.80.0/20 46231 -66.252.96.0/20 19578 -66.252.112.0/20 36487 -66.252.128.0/20 32408 -66.252.144.0/24 812 -66.252.145.0/24 26788 -66.252.146.0/23 26788 -66.252.148.0/22 26788 -66.252.152.0/21 26788 -66.252.160.0/19 25606 -66.252.192.0/21 20303 -66.252.200.0/21 16700 -66.252.208.0/20 29843 -66.252.224.0/22 21875 -66.252.228.0/22 14519 -66.252.232.0/21 14519 -66.253.0.0/20 18566 -66.253.16.0/21 18566 -66.253.24.0/24 17184 -66.253.25.0/24 18566 -66.253.26.0/23 18566 -66.253.28.0/22 18566 -66.253.32.0/19 18566 -66.253.64.0/18 18566 -66.253.128.0/21 23473 -66.253.136.0/23 46925 -66.253.138.0/23 23473 -66.253.140.0/23 23473 -66.253.144.0/22 23473 -66.253.148.0/24 23473 -66.253.150.0/23 23473 -66.253.152.0/21 23473 -66.253.160.0/21 23473 -66.253.168.0/23 23473 -66.253.172.0/24 23473 -66.253.173.0/24 46925 -66.253.176.0/24 46925 -66.253.178.0/23 23473 -66.253.180.0/22 23473 -66.253.184.0/23 46925 -66.253.186.0/23 23473 -66.253.188.0/24 23473 -66.253.193.0/24 23473 -66.253.194.0/23 23473 -66.253.196.0/24 23473 -66.253.198.0/23 23473 -66.253.200.0/23 23473 -66.253.203.0/24 23473 -66.253.204.0/24 46925 -66.253.205.0/24 23473 -66.253.206.0/23 23473 -66.253.208.0/21 23473 -66.253.220.0/24 23473 -66.253.228.0/22 23473 -66.253.232.0/22 23473 -66.253.236.0/23 23473 -66.253.240.0/23 46925 -66.253.244.0/23 23473 -66.253.248.0/23 23473 -66.253.251.0/24 23473 -66.253.252.0/23 23473 -66.254.0.0/19 36097 -66.254.32.0/19 26480 -66.254.64.0/19 7024 -66.254.96.0/20 29789 -66.254.112.0/21 29789 -66.254.120.0/22 29789 -66.254.124.0/24 30361 -66.254.125.0/24 29789 -66.254.126.0/23 29789 -66.254.128.0/19 25712 -66.254.160.0/19 22552 -66.254.192.0/19 17306 -66.254.224.0/19 693 -66.255.0.0/17 7029 -66.255.128.0/18 7029 -66.255.192.0/23 13828 -66.255.195.0/24 13828 -66.255.196.0/24 13828 -66.255.198.0/23 13828 -66.255.200.0/24 13828 -66.255.202.0/23 13828 -66.255.204.0/23 13828 -66.255.206.0/24 13828 -66.255.224.0/20 11620 -66.255.240.0/20 13781 -67.0.0.0/13 209 -67.8.0.0/16 33363 -67.9.0.0/19 33363 -67.9.32.0/20 33363 -67.9.64.0/18 33363 -67.9.128.0/17 33363 -67.10.0.0/15 11427 -67.13.168.0/21 3909 -67.13.192.0/21 3909 -67.13.228.0/24 3909 -67.13.251.0/24 3909 -67.13.252.0/22 3909 -67.14.0.0/17 209 -67.14.128.0/19 209 -67.14.162.0/23 1421 -67.14.192.0/20 6528 -67.14.208.0/21 6528 -67.14.216.0/24 6528 -67.14.218.0/23 6528 -67.14.220.0/24 6528 -67.14.222.0/23 6528 -67.14.224.0/22 23089 -67.14.228.0/24 23089 -67.14.229.0/24 31793 -67.14.230.0/23 23089 -67.14.232.0/21 23089 -67.14.240.0/24 23089 -67.14.242.0/23 23089 -67.14.244.0/22 23089 -67.14.248.0/21 23089 -67.15.0.0/16 36351 -67.16.0.0/18 3549 -67.16.64.0/20 3549 -67.16.80.0/20 7850 -67.16.96.0/19 3549 -67.16.128.0/18 3549 -67.16.192.0/21 22566 -67.16.200.0/21 3549 -67.16.208.0/21 3549 -67.16.216.0/21 3356 -67.16.224.0/19 3549 -67.17.0.0/19 3549 -67.17.32.0/20 53889 -67.17.48.0/20 3549 -67.17.64.0/18 3549 -67.17.128.0/19 3549 -67.17.160.0/22 3549 -67.17.164.0/22 44976 -67.17.168.0/22 3549 -67.17.172.0/22 16948 -67.17.176.0/20 3549 -67.17.192.0/21 3549 -67.17.200.0/23 3549 -67.17.202.0/23 52468 -67.17.204.0/23 16526 -67.17.206.0/24 20080 -67.17.207.0/24 3356 -67.17.208.0/21 3549 -67.17.216.0/21 22958 -67.17.224.0/21 3549 -67.17.232.0/21 32098 -67.17.240.0/20 3549 -67.18.0.0/18 36351 -67.18.64.0/20 36351 -67.18.80.0/21 36351 -67.18.88.0/24 36351 -67.18.89.0/24 63949 -67.18.90.0/23 36351 -67.18.92.0/24 63949 -67.18.93.0/24 36351 -67.18.94.0/23 36351 -67.18.96.0/19 36351 -67.18.128.0/19 36351 -67.18.160.0/20 36351 -67.18.176.0/24 63949 -67.18.177.0/24 36351 -67.18.178.0/23 36351 -67.18.180.0/22 36351 -67.18.184.0/23 36351 -67.18.186.0/23 63949 -67.18.188.0/22 36351 -67.18.192.0/20 36351 -67.18.208.0/24 63949 -67.18.209.0/24 36351 -67.18.210.0/23 36351 -67.18.212.0/22 36351 -67.18.216.0/21 36351 -67.18.224.0/19 36351 -67.19.0.0/16 36351 -67.20.0.0/20 27334 -67.20.16.0/20 11976 -67.20.32.0/20 11381 -67.20.48.0/22 36444 -67.20.52.0/23 36444 -67.20.54.0/23 40819 -67.20.56.0/24 36444 -67.20.58.0/23 36444 -67.20.61.0/24 36444 -67.20.62.0/23 36444 -67.20.64.0/18 46606 -67.20.128.0/19 22646 -67.20.160.0/19 7381 -67.20.192.0/19 3685 -67.20.224.0/19 13333 -67.21.0.0/20 36825 -67.21.16.0/20 32806 -67.21.32.0/24 397373 -67.21.33.0/24 14935 -67.21.34.0/24 3356 -67.21.35.0/24 12189 -67.21.36.0/24 25 -67.21.37.0/24 42 -67.21.38.0/23 11301 -67.21.40.0/21 14265 -67.21.48.0/21 35873 -67.21.56.0/22 35873 -67.21.60.0/24 35873 -67.21.62.0/23 35873 -67.21.64.0/19 46844 -67.21.96.0/20 11084 -67.21.112.0/20 33695 -67.21.140.0/24 13996 -67.21.144.0/21 7311 -67.21.152.0/22 35998 -67.21.156.0/22 7311 -67.21.160.0/22 1616 -67.21.164.0/23 1616 -67.21.166.0/24 1616 -67.21.167.0/24 13649 -67.21.168.0/22 13649 -67.21.172.0/22 1616 -67.21.176.0/22 40285 -67.21.180.0/23 40285 -67.21.182.0/24 40285 -67.21.183.0/24 12208 -67.21.184.0/24 40285 -67.21.186.0/23 40285 -67.21.188.0/22 40285 -67.21.192.0/19 20161 -67.21.224.0/19 33554 -67.22.0.0/21 5758 -67.22.8.0/22 5758 -67.22.12.0/23 5758 -67.22.14.0/23 46208 -67.22.16.0/20 32278 -67.22.32.0/20 48684 -67.22.48.0/24 29789 -67.22.49.0/24 48684 -67.22.50.0/23 29789 -67.22.52.0/23 29789 -67.22.56.0/23 29789 -67.22.58.0/24 29789 -67.22.60.0/24 44066 -67.22.61.0/24 394752 -67.22.62.0/23 64200 -67.22.64.0/20 32233 -67.22.80.0/20 40473 -67.22.96.0/21 19234 -67.22.104.0/22 19234 -67.22.108.0/24 19234 -67.22.109.0/24 19875 -67.22.110.0/23 19875 -67.22.112.0/21 42 -67.22.120.0/21 36731 -67.22.128.0/20 13767 -67.22.144.0/20 393885 -67.22.160.0/20 36728 -67.22.176.0/20 14634 -67.22.192.0/20 53347 -67.22.208.0/21 63178 -67.22.216.0/23 63178 -67.22.219.0/24 63178 -67.22.220.0/24 63178 -67.22.221.0/24 397361 -67.22.222.0/23 397361 -67.22.224.0/22 21548 -67.22.228.0/23 21548 -67.22.230.0/24 23498 -67.22.231.0/24 21548 -67.22.232.0/23 21548 -67.22.234.0/24 26374 -67.22.235.0/24 21548 -67.22.236.0/22 21548 -67.22.240.0/20 33470 -67.23.0.0/19 33070 -67.23.32.0/20 33070 -67.23.48.0/22 36086 -67.23.52.0/23 36086 -67.23.54.0/24 33742 -67.23.55.0/24 36086 -67.23.56.0/21 36086 -67.23.64.0/20 33724 -67.23.80.0/20 46339 -67.23.96.0/22 40015 -67.23.100.0/24 40015 -67.23.101.0/24 25922 -67.23.102.0/23 40015 -67.23.104.0/21 40015 -67.23.112.0/20 40015 -67.23.138.0/23 29873 -67.23.144.0/20 20009 -67.23.160.0/19 15085 -67.23.192.0/20 36687 -67.23.224.0/19 33182 -67.24.0.0/21 202818 -67.24.8.0/21 3356 -67.24.16.0/21 3549 -67.24.24.0/21 3356 -67.24.32.0/21 3356 -67.24.40.0/21 10753 -67.24.48.0/21 10753 -67.24.56.0/21 3549 -67.24.64.0/21 3549 -67.24.72.0/21 3356 -67.24.80.0/21 3356 -67.24.88.0/21 3549 -67.24.96.0/20 3549 -67.24.112.0/21 3549 -67.24.120.0/21 3356 -67.24.128.0/20 3356 -67.24.144.0/21 3356 -67.24.152.0/21 3549 -67.24.160.0/21 3549 -67.24.168.0/21 3356 -67.24.176.0/21 3356 -67.24.184.0/21 10753 -67.24.192.0/21 10753 -67.24.200.0/21 3549 -67.24.208.0/20 3549 -67.24.224.0/19 3549 -67.25.0.0/16 3549 -67.26.0.0/18 3356 -67.26.64.0/21 202818 -67.26.72.0/21 3356 -67.26.80.0/20 3356 -67.26.96.0/19 3356 -67.26.128.0/17 3356 -67.27.0.0/21 3356 -67.27.8.0/21 202818 -67.27.16.0/21 202818 -67.27.24.0/21 3356 -67.27.32.0/19 3356 -67.27.64.0/21 202818 -67.27.72.0/21 3356 -67.27.80.0/20 3356 -67.27.96.0/19 3356 -67.27.128.0/20 3356 -67.27.144.0/22 202818 -67.27.148.0/22 3356 -67.27.152.0/21 3356 -67.27.160.0/19 3356 -67.27.192.0/18 3356 -67.28.0.0/16 3356 -67.29.0.0/17 3356 -67.29.128.0/19 3356 -67.29.160.0/22 3356 -67.29.164.0/24 3064 -67.29.165.0/24 3356 -67.29.166.0/23 3356 -67.29.168.0/21 3356 -67.29.176.0/20 3356 -67.29.192.0/18 3356 -67.30.0.0/17 3356 -67.30.128.0/22 3356 -67.30.132.0/22 20454 -67.30.136.0/21 3356 -67.30.144.0/20 3356 -67.30.160.0/19 3356 -67.30.192.0/18 3356 -67.31.0.0/16 3356 -67.32.0.0/19 6389 -67.32.32.0/23 33346 -67.32.34.0/24 33346 -67.32.35.0/24 6389 -67.32.36.0/22 6389 -67.32.40.0/21 6389 -67.32.48.0/20 6389 -67.32.64.0/18 6389 -67.32.128.0/20 7018 -67.32.144.0/21 7018 -67.32.152.0/22 7018 -67.32.156.0/22 6389 -67.32.160.0/21 7018 -67.32.168.0/21 6389 -67.32.176.0/20 6389 -67.32.192.0/18 6389 -67.33.0.0/19 6389 -67.33.32.0/20 7018 -67.33.48.0/21 7018 -67.33.56.0/22 6389 -67.33.60.0/23 6389 -67.33.62.0/23 7018 -67.33.64.0/19 7018 -67.33.96.0/19 6389 -67.33.128.0/18 7018 -67.33.192.0/19 6389 -67.33.224.0/20 8063 -67.33.240.0/21 6384 -67.33.248.0/21 6389 -67.34.0.0/18 7018 -67.34.64.0/19 6389 -67.34.96.0/19 7018 -67.34.128.0/19 6389 -67.34.160.0/21 7018 -67.34.168.0/21 6389 -67.34.176.0/20 6389 -67.34.192.0/18 6389 -67.35.0.0/19 7018 -67.35.32.0/19 6389 -67.35.64.0/19 7018 -67.35.96.0/22 6389 -67.35.100.0/22 7018 -67.35.104.0/21 7018 -67.35.112.0/20 7018 -67.35.128.0/17 6389 -67.36.0.0/16 7018 -67.37.0.0/17 7018 -67.37.128.0/18 7018 -67.37.192.0/22 7018 -67.37.196.0/23 7018 -67.37.198.0/24 31890 -67.37.199.0/24 7018 -67.37.200.0/23 31890 -67.37.202.0/23 7018 -67.37.204.0/22 7018 -67.37.208.0/20 7018 -67.37.224.0/19 7018 -67.38.0.0/16 7018 -67.39.0.0/17 7018 -67.39.128.0/18 7018 -67.39.192.0/20 7018 -67.39.208.0/21 7018 -67.39.216.0/23 7018 -67.39.218.0/24 7018 -67.39.219.0/24 20422 -67.39.220.0/22 7018 -67.39.224.0/19 7018 -67.40.0.0/16 209 -67.41.0.0/19 209 -67.41.32.0/20 209 -67.41.48.0/22 209 -67.41.52.0/23 209 -67.41.54.0/24 209 -67.41.55.0/24 23172 -67.41.56.0/21 209 -67.41.64.0/18 209 -67.41.128.0/17 209 -67.42.0.0/16 209 -67.43.0.0/20 32244 -67.43.16.0/20 15309 -67.43.48.0/20 6939 -67.43.64.0/20 12044 -67.43.83.0/24 33359 -67.43.84.0/23 33359 -67.43.86.0/23 16385 -67.43.88.0/24 33359 -67.43.92.0/24 46887 -67.43.96.0/20 30481 -67.43.112.0/20 22926 -67.43.128.0/20 11647 -67.43.160.0/20 27630 -67.43.176.0/20 29948 -67.43.192.0/20 11623 -67.43.208.0/23 394883 -67.43.212.0/23 394883 -67.43.214.0/24 394883 -67.43.216.0/21 394883 -67.43.224.0/20 36666 -67.43.240.0/20 11976 -67.44.0.0/17 6621 -67.44.128.0/20 6621 -67.44.160.0/19 6621 -67.44.192.0/18 6621 -67.45.0.0/20 6621 -67.45.32.0/19 6621 -67.45.64.0/20 6621 -67.45.96.0/19 6621 -67.45.160.0/19 6621 -67.45.192.0/20 6621 -67.46.0.0/20 6621 -67.46.48.0/20 6621 -67.46.112.0/20 6621 -67.46.144.0/20 6621 -67.46.160.0/20 6621 -67.46.192.0/19 6621 -67.46.224.0/20 6621 -67.47.0.0/20 6621 -67.47.16.0/23 6621 -67.47.18.0/24 6621 -67.47.19.0/24 63062 -67.47.20.0/23 63062 -67.47.22.0/23 6621 -67.47.24.0/21 6621 -67.47.32.0/19 6621 -67.47.80.0/21 6621 -67.47.88.0/22 6621 -67.47.92.0/23 16535 -67.47.94.0/23 6621 -67.47.192.0/20 6621 -67.47.224.0/20 6621 -67.48.16.0/20 11427 -67.48.32.0/19 11427 -67.48.80.0/20 11427 -67.48.96.0/20 11955 -67.48.112.0/20 11426 -67.48.128.0/18 11427 -67.48.192.0/19 11427 -67.48.224.0/19 3456 -67.49.0.0/16 20001 -67.50.0.0/18 7385 -67.50.64.0/19 7385 -67.50.96.0/20 7385 -67.50.112.0/22 7385 -67.50.116.0/23 7385 -67.50.118.0/24 7385 -67.50.119.0/24 19717 -67.50.120.0/21 7385 -67.50.128.0/17 7385 -67.51.0.0/18 7385 -67.51.64.0/20 7385 -67.51.80.0/21 7385 -67.51.88.0/24 7385 -67.51.89.0/24 11071 -67.51.90.0/23 7385 -67.51.92.0/22 7385 -67.51.96.0/19 7385 -67.51.128.0/19 7385 -67.51.160.0/22 7385 -67.51.164.0/23 36687 -67.51.166.0/23 7385 -67.51.168.0/21 7385 -67.51.176.0/22 7385 -67.51.180.0/23 7385 -67.51.182.0/24 7385 -67.51.183.0/24 39949 -67.51.184.0/21 7385 -67.51.192.0/21 7385 -67.51.200.0/22 7385 -67.51.204.0/24 7385 -67.51.205.0/24 36583 -67.51.206.0/23 7385 -67.51.208.0/20 7385 -67.51.224.0/20 7385 -67.51.240.0/21 7385 -67.51.248.0/22 7385 -67.51.252.0/24 7385 -67.51.253.0/24 32397 -67.51.254.0/23 7385 -67.52.0.0/20 10796 -67.52.16.0/24 10796 -67.52.17.0/24 14252 -67.52.18.0/23 11427 -67.52.20.0/22 10796 -67.52.24.0/22 10796 -67.52.28.0/23 11964 -67.52.30.0/23 10796 -67.52.32.0/19 10796 -67.52.64.0/19 20001 -67.52.96.0/20 20001 -67.52.112.0/22 20001 -67.52.116.0/24 20001 -67.52.117.0/24 23297 -67.52.118.0/23 20001 -67.52.120.0/21 20001 -67.52.128.0/23 11030 -67.52.130.0/24 11030 -67.52.131.0/24 17032 -67.52.132.0/22 11030 -67.52.136.0/21 20001 -67.52.144.0/20 20001 -67.52.160.0/19 20001 -67.52.192.0/20 10796 -67.52.208.0/21 10796 -67.52.216.0/23 11427 -67.52.218.0/23 10838 -67.52.220.0/23 10796 -67.52.222.0/23 11427 -67.52.224.0/20 11427 -67.52.240.0/21 10796 -67.52.248.0/23 11427 -67.52.250.0/24 19914 -67.52.251.0/24 11427 -67.52.252.0/23 11427 -67.52.254.0/24 11427 -67.52.255.0/24 10796 -67.53.0.0/20 10796 -67.53.16.0/21 10796 -67.53.24.0/23 11427 -67.53.26.0/23 10796 -67.53.28.0/22 10796 -67.53.32.0/19 20001 -67.53.64.0/22 11427 -67.53.68.0/22 11955 -67.53.72.0/22 11955 -67.53.76.0/24 393774 -67.53.77.0/24 10796 -67.53.78.0/23 10796 -67.53.80.0/22 10796 -67.53.84.0/23 10796 -67.53.86.0/23 11427 -67.53.88.0/22 10796 -67.53.92.0/23 11427 -67.53.94.0/23 10796 -67.53.96.0/20 33363 -67.53.112.0/20 20001 -67.53.128.0/21 10796 -67.53.136.0/24 10796 -67.53.137.0/24 33127 -67.53.138.0/23 10796 -67.53.140.0/22 10796 -67.53.144.0/21 10796 -67.53.152.0/22 10796 -67.53.156.0/23 10796 -67.53.158.0/24 30391 -67.53.159.0/24 10796 -67.53.160.0/22 11427 -67.53.164.0/22 10796 -67.53.168.0/21 10796 -67.53.176.0/20 10796 -67.53.192.0/19 20001 -67.53.224.0/19 10796 -67.54.0.0/17 3561 -67.54.128.0/18 7155 -67.54.192.0/21 16491 -67.54.200.0/21 7155 -67.54.208.0/20 7155 -67.54.224.0/20 7155 -67.54.240.0/21 7155 -67.54.248.0/21 16491 -67.55.0.0/23 11814 -67.55.2.0/23 33139 -67.55.4.0/22 11814 -67.55.8.0/21 11814 -67.55.16.0/20 11814 -67.55.32.0/19 11814 -67.55.64.0/20 27257 -67.55.80.0/24 27257 -67.55.81.0/24 36057 -67.55.82.0/23 27257 -67.55.84.0/22 27257 -67.55.88.0/21 27257 -67.55.96.0/20 27257 -67.55.112.0/23 27257 -67.55.114.0/23 20264 -67.55.116.0/22 27257 -67.55.120.0/22 27257 -67.55.124.0/23 27257 -67.55.126.0/23 36057 -67.55.128.0/21 5056 -67.55.136.0/23 5056 -67.55.138.0/24 5056 -67.55.139.0/24 18883 -67.55.140.0/23 5056 -67.55.142.0/24 5056 -67.55.143.0/24 396878 -67.55.144.0/22 18883 -67.55.148.0/23 63436 -67.55.150.0/23 5056 -67.55.152.0/24 63394 -67.55.153.0/24 62886 -67.55.154.0/24 30325 -67.55.155.0/24 5056 -67.55.156.0/24 5056 -67.55.157.0/24 396878 -67.55.158.0/23 5056 -67.55.160.0/24 5056 -67.55.161.0/24 18883 -67.55.162.0/23 5056 -67.55.164.0/24 62825 -67.55.165.0/24 5056 -67.55.166.0/23 5056 -67.55.168.0/23 5056 -67.55.170.0/24 63394 -67.55.171.0/24 5056 -67.55.172.0/22 5056 -67.55.176.0/21 5056 -67.55.184.0/22 5056 -67.55.188.0/24 62886 -67.55.189.0/24 5056 -67.55.190.0/23 5056 -67.55.192.0/23 30325 -67.55.194.0/24 62825 -67.55.195.0/24 5056 -67.55.196.0/23 46627 -67.55.198.0/24 5056 -67.55.199.0/24 13356 -67.55.200.0/22 5056 -67.55.204.0/24 397475 -67.55.205.0/24 5056 -67.55.206.0/24 5056 -67.55.207.0/24 22534 -67.55.208.0/24 5056 -67.55.209.0/24 63436 -67.55.210.0/23 63394 -67.55.212.0/24 5056 -67.55.213.0/24 62886 -67.55.214.0/23 5056 -67.55.216.0/23 5056 -67.55.218.0/24 5056 -67.55.219.0/24 63394 -67.55.220.0/24 46892 -67.55.221.0/24 396461 -67.55.222.0/24 5056 -67.55.223.0/24 30325 -67.55.224.0/23 53347 -67.55.226.0/23 26725 -67.55.228.0/23 63394 -67.55.230.0/24 30325 -67.55.231.0/24 62825 -67.55.232.0/23 5056 -67.55.234.0/23 398052 -67.55.236.0/24 396878 -67.55.237.0/24 5056 -67.55.238.0/24 5056 -67.55.239.0/24 46627 -67.55.240.0/24 62825 -67.55.241.0/24 30325 -67.55.242.0/23 5056 -67.55.244.0/23 5056 -67.55.246.0/24 5056 -67.55.247.0/24 13356 -67.55.248.0/22 13356 -67.55.252.0/22 5056 -67.58.0.0/19 8047 -67.58.32.0/19 26397 -67.58.64.0/21 14793 -67.58.72.0/24 27221 -67.58.73.0/24 14793 -67.58.74.0/23 14793 -67.58.76.0/23 14793 -67.58.78.0/24 27221 -67.58.79.0/24 14793 -67.58.80.0/22 14793 -67.58.84.0/23 22504 -67.58.86.0/23 14793 -67.58.88.0/22 14793 -67.58.92.0/23 14793 -67.58.94.0/24 32040 -67.58.95.0/24 14793 -67.58.96.0/20 40824 -67.58.112.0/20 14615 -67.58.128.0/20 20001 -67.58.144.0/21 20001 -67.58.152.0/22 20001 -67.58.156.0/22 33363 -67.58.160.0/20 26801 -67.58.176.0/22 26801 -67.58.180.0/23 26801 -67.58.182.0/24 26801 -67.58.183.0/24 1246 -67.58.184.0/24 1246 -67.58.185.0/24 26801 -67.58.186.0/24 209 -67.58.187.0/24 26801 -67.58.188.0/24 1246 -67.58.189.0/24 26801 -67.58.190.0/23 26801 -67.58.192.0/19 23184 -67.58.224.0/19 5742 -67.59.0.0/20 26554 -67.59.16.0/21 26554 -67.59.24.0/22 26554 -67.59.28.0/23 26554 -67.59.30.0/24 40080 -67.59.31.0/24 26554 -67.59.32.0/22 26554 -67.59.36.0/23 26554 -67.59.38.0/24 26554 -67.59.39.0/24 395072 -67.59.40.0/21 26554 -67.59.48.0/22 26554 -67.59.52.0/24 26554 -67.59.53.0/24 22986 -67.59.54.0/23 26554 -67.59.56.0/23 26554 -67.59.58.0/24 16977 -67.59.59.0/24 26554 -67.59.60.0/23 395594 -67.59.62.0/23 26554 -67.59.64.0/23 30583 -67.59.66.0/24 25899 -67.59.67.0/24 30583 -67.59.68.0/22 30583 -67.59.72.0/22 30583 -67.59.76.0/23 30583 -67.59.78.0/24 30583 -67.59.79.0/24 21561 -67.59.80.0/23 33356 -67.59.82.0/23 30583 -67.59.84.0/24 30583 -67.59.85.0/24 25899 -67.59.86.0/23 54523 -67.59.88.0/24 30583 -67.59.89.0/24 32086 -67.59.90.0/24 62990 -67.59.91.0/24 30583 -67.59.92.0/24 25899 -67.59.93.0/24 30583 -67.59.94.0/24 31778 -67.59.95.0/24 30583 -67.59.96.0/24 40760 -67.59.97.0/24 10538 -67.59.98.0/23 10538 -67.59.100.0/22 10538 -67.59.104.0/22 10538 -67.59.108.0/22 40760 -67.59.112.0/22 26298 -67.59.128.0/18 20021 -67.59.192.0/21 22667 -67.59.200.0/24 16680 -67.59.201.0/24 22667 -67.59.202.0/23 22667 -67.59.204.0/22 22667 -67.59.208.0/20 2386 -67.60.1.0/24 11492 -67.60.2.0/23 11492 -67.60.4.0/22 11492 -67.60.8.0/23 11492 -67.60.10.0/24 11492 -67.60.12.0/22 11492 -67.60.16.0/20 11492 -67.60.32.0/19 11492 -67.60.64.0/21 11492 -67.60.72.0/23 11492 -67.60.76.0/22 11492 -67.60.80.0/20 11492 -67.60.96.0/20 11492 -67.60.112.0/21 11492 -67.60.120.0/24 11492 -67.60.122.0/23 11492 -67.60.124.0/22 11492 -67.60.128.0/23 11492 -67.60.130.0/24 11492 -67.60.132.0/22 11492 -67.60.137.0/24 11492 -67.60.138.0/23 11492 -67.60.145.0/24 11492 -67.60.146.0/23 11492 -67.60.149.0/24 11492 -67.60.150.0/23 11492 -67.60.152.0/21 11492 -67.60.160.0/21 11492 -67.60.168.0/24 11492 -67.60.170.0/23 11492 -67.60.172.0/24 11492 -67.60.174.0/23 11492 -67.60.176.0/22 11492 -67.60.180.0/23 11492 -67.60.183.0/24 11492 -67.60.184.0/22 11492 -67.60.192.0/22 11492 -67.60.197.0/24 11492 -67.60.198.0/23 11492 -67.60.200.0/24 11492 -67.60.202.0/23 11492 -67.60.204.0/22 11492 -67.60.208.0/20 11492 -67.60.224.0/21 11492 -67.60.233.0/24 11492 -67.60.234.0/23 11492 -67.60.240.0/20 11492 -67.61.0.0/22 11492 -67.61.8.0/22 11492 -67.61.16.0/20 11492 -67.61.32.0/20 11492 -67.61.48.0/22 11492 -67.61.52.0/23 18812 -67.61.54.0/23 11492 -67.61.56.0/21 11492 -67.61.64.0/20 11492 -67.61.80.0/22 11492 -67.61.84.0/24 11492 -67.61.86.0/23 11492 -67.61.88.0/21 11492 -67.61.96.0/20 11492 -67.61.128.0/21 11492 -67.61.136.0/23 11492 -67.61.138.0/24 11492 -67.61.144.0/20 11492 -67.61.168.0/21 11492 -67.61.180.0/22 11492 -67.61.184.0/21 11492 -67.61.208.0/20 11492 -67.61.224.0/19 11492 -67.62.0.0/18 7029 -67.62.64.0/23 7029 -67.62.66.0/23 19919 -67.62.68.0/22 7029 -67.62.72.0/21 7029 -67.62.80.0/20 7029 -67.62.96.0/19 7029 -67.62.128.0/17 7029 -67.63.0.0/19 3356 -67.63.32.0/20 32228 -67.63.48.0/24 22293 -67.63.50.0/24 22293 -67.63.64.0/22 26801 -67.63.68.0/23 26801 -67.63.70.0/24 26801 -67.63.71.0/24 1246 -67.63.72.0/23 1246 -67.63.74.0/24 1246 -67.63.75.0/24 26801 -67.63.76.0/22 1246 -67.63.80.0/22 1246 -67.63.84.0/24 1246 -67.63.85.0/24 26801 -67.63.86.0/23 1246 -67.63.88.0/21 1246 -67.63.96.0/22 1246 -67.63.100.0/23 26801 -67.63.102.0/23 1246 -67.63.104.0/22 1246 -67.63.108.0/23 1246 -67.63.110.0/23 26801 -67.63.112.0/23 1246 -67.63.114.0/23 26801 -67.63.116.0/22 26801 -67.63.120.0/23 26801 -67.63.122.0/24 26801 -67.63.123.0/24 1246 -67.63.124.0/23 1246 -67.63.126.0/23 26801 -67.63.128.0/22 209 -67.63.132.0/23 22561 -67.63.134.0/24 22561 -67.63.135.0/24 5006 -67.63.136.0/21 22561 -67.63.144.0/21 22561 -67.63.152.0/22 209 -67.63.156.0/22 22561 -67.63.160.0/21 22561 -67.63.168.0/24 5006 -67.63.169.0/24 209 -67.63.170.0/23 19969 -67.63.172.0/24 19969 -67.63.173.0/24 209 -67.63.174.0/24 209 -67.63.175.0/24 22561 -67.63.192.0/23 209 -67.63.194.0/24 22561 -67.63.195.0/24 209 -67.63.196.0/24 209 -67.63.197.0/24 22561 -67.63.198.0/23 22561 -67.63.200.0/24 209 -67.63.201.0/24 22561 -67.63.202.0/24 209 -67.63.203.0/24 22561 -67.63.204.0/23 209 -67.63.206.0/24 209 -67.63.207.0/24 22561 -67.63.208.0/23 22561 -67.63.210.0/24 22561 -67.63.211.0/24 209 -67.63.212.0/23 209 -67.63.214.0/24 5006 -67.63.215.0/24 209 -67.63.216.0/22 22561 -67.63.220.0/24 22561 -67.63.221.0/24 209 -67.63.222.0/24 209 -67.63.223.0/24 22561 -67.63.224.0/22 22561 -67.63.228.0/24 209 -67.63.229.0/24 22561 -67.63.230.0/24 5006 -67.63.231.0/24 22561 -67.63.232.0/24 5006 -67.63.233.0/24 22561 -67.63.234.0/24 22561 -67.63.235.0/24 5006 -67.63.236.0/22 22561 -67.63.240.0/24 209 -67.63.241.0/24 11211 -67.63.242.0/24 22561 -67.63.243.0/24 209 -67.63.244.0/24 209 -67.63.245.0/24 22561 -67.63.246.0/23 22561 -67.63.248.0/23 22561 -67.63.250.0/24 22561 -67.63.251.0/24 209 -67.63.252.0/22 209 -67.64.0.0/20 7018 -67.64.16.0/21 7018 -67.64.24.0/22 7018 -67.64.28.0/22 26909 -67.64.32.0/19 7018 -67.64.64.0/24 7018 -67.64.65.0/24 53629 -67.64.66.0/23 7018 -67.64.68.0/22 7018 -67.64.72.0/21 7018 -67.64.80.0/20 7018 -67.64.96.0/19 7018 -67.64.128.0/17 7018 -67.65.0.0/16 7018 -67.66.0.0/18 7018 -67.66.64.0/19 7018 -67.66.96.0/23 26909 -67.66.98.0/23 7018 -67.66.100.0/22 7018 -67.66.104.0/21 7018 -67.66.112.0/20 7018 -67.66.128.0/21 7018 -67.66.136.0/21 26305 -67.66.144.0/20 7018 -67.66.160.0/19 7018 -67.66.192.0/18 7018 -67.67.0.0/22 7018 -67.67.4.0/22 27582 -67.67.8.0/21 7018 -67.67.16.0/20 7018 -67.67.32.0/22 7018 -67.67.36.0/22 23302 -67.67.40.0/21 7018 -67.67.48.0/20 7018 -67.67.64.0/18 7018 -67.67.128.0/18 7018 -67.67.192.0/21 7018 -67.67.200.0/24 7018 -67.67.201.0/24 32309 -67.67.202.0/23 7018 -67.67.204.0/22 7018 -67.67.208.0/20 7018 -67.67.224.0/19 7018 -67.68.0.0/16 577 -67.69.0.0/18 577 -67.69.64.0/24 577 -67.69.65.0/24 36522 -67.69.66.0/23 36522 -67.69.68.0/24 36522 -67.69.69.0/24 577 -67.69.70.0/23 36522 -67.69.72.0/22 36522 -67.69.76.0/23 577 -67.69.78.0/23 36522 -67.69.80.0/23 36522 -67.69.82.0/23 577 -67.69.84.0/22 577 -67.69.88.0/21 577 -67.69.96.0/19 577 -67.69.128.0/18 577 -67.69.192.0/19 577 -67.69.224.0/22 603 -67.69.228.0/22 577 -67.69.232.0/21 577 -67.69.240.0/21 577 -67.69.248.0/24 577 -67.69.249.0/24 3848 -67.69.250.0/23 577 -67.69.252.0/22 577 -67.70.0.0/17 577 -67.70.128.0/18 577 -67.70.192.0/19 577 -67.70.224.0/24 577 -67.70.225.0/24 40124 -67.70.226.0/23 577 -67.70.228.0/22 577 -67.70.232.0/21 577 -67.70.240.0/22 577 -67.70.244.0/23 577 -67.70.246.0/24 12132 -67.70.247.0/24 577 -67.70.248.0/24 12132 -67.70.249.0/24 577 -67.70.250.0/23 577 -67.70.252.0/22 577 -67.71.0.0/16 577 -67.72.0.0/19 3356 -67.72.32.0/20 19229 -67.72.48.0/23 3356 -67.72.50.0/24 394453 -67.72.51.0/24 3356 -67.72.52.0/22 3356 -67.72.56.0/21 3356 -67.72.64.0/21 3356 -67.72.72.0/21 7349 -67.72.80.0/20 3356 -67.72.96.0/23 3356 -67.72.98.0/24 3356 -67.72.99.0/24 25751 -67.72.100.0/22 3356 -67.72.104.0/22 3356 -67.72.108.0/22 23089 -67.72.112.0/20 3356 -67.72.128.0/17 3356 -67.73.0.0/19 3549 -67.73.32.0/19 3356 -67.73.64.0/19 3356 -67.73.96.0/20 3356 -67.73.112.0/21 3356 -67.73.120.0/22 3356 -67.73.124.0/22 3549 -67.73.128.0/21 3356 -67.73.136.0/21 3549 -67.73.144.0/20 3549 -67.73.160.0/19 3549 -67.73.192.0/19 3356 -67.73.224.0/20 27650 -67.73.240.0/20 3549 -67.74.0.0/15 3549 -67.76.0.0/20 2379 -67.76.16.0/20 209 -67.76.32.0/21 209 -67.76.40.0/21 5778 -67.76.48.0/23 6367 -67.76.50.0/23 209 -67.76.52.0/22 6367 -67.76.56.0/24 6367 -67.76.57.0/24 209 -67.76.58.0/23 209 -67.76.60.0/24 6367 -67.76.61.0/24 209 -67.76.62.0/23 209 -67.76.64.0/24 209 -67.76.65.0/24 11398 -67.76.66.0/23 209 -67.76.68.0/23 209 -67.76.70.0/24 209 -67.76.71.0/24 11398 -67.76.72.0/21 18494 -67.76.80.0/22 2379 -67.76.84.0/23 2379 -67.76.86.0/24 209 -67.76.87.0/24 2379 -67.76.88.0/21 14905 -67.76.96.0/21 5778 -67.76.104.0/21 209 -67.76.112.0/22 2379 -67.76.116.0/24 2379 -67.76.117.0/24 209 -67.76.118.0/24 2379 -67.76.119.0/24 209 -67.76.120.0/24 209 -67.76.121.0/24 2379 -67.76.122.0/24 209 -67.76.123.0/24 2379 -67.76.124.0/24 2379 -67.76.125.0/24 209 -67.76.126.0/23 209 -67.76.128.0/23 2379 -67.76.130.0/24 209 -67.76.131.0/24 2379 -67.76.132.0/24 2379 -67.76.133.0/24 209 -67.76.134.0/24 209 -67.76.135.0/24 2379 -67.76.136.0/21 209 -67.76.144.0/21 14921 -67.76.152.0/21 209 -67.76.160.0/23 14905 -67.76.162.0/23 209 -67.76.164.0/22 209 -67.76.168.0/23 209 -67.76.170.0/23 14905 -67.76.172.0/23 14905 -67.76.174.0/23 209 -67.76.176.0/22 209 -67.76.180.0/22 6222 -67.76.184.0/23 209 -67.76.186.0/24 209 -67.76.187.0/24 11398 -67.76.188.0/22 11398 -67.76.192.0/22 16718 -67.76.196.0/24 209 -67.76.197.0/24 6367 -67.76.198.0/23 6367 -67.76.200.0/21 209 -67.76.208.0/23 2379 -67.76.210.0/24 209 -67.76.211.0/24 2379 -67.76.212.0/24 2379 -67.76.213.0/24 209 -67.76.214.0/23 2379 -67.76.216.0/23 2379 -67.76.218.0/23 209 -67.76.220.0/22 2379 -67.76.224.0/22 209 -67.76.228.0/23 209 -67.76.230.0/23 5778 -67.76.232.0/23 209 -67.76.234.0/23 16718 -67.76.236.0/22 209 -67.76.240.0/21 209 -67.76.248.0/22 209 -67.76.252.0/22 2379 -67.77.0.0/21 209 -67.77.8.0/22 209 -67.77.12.0/23 209 -67.77.14.0/23 5778 -67.77.16.0/20 209 -67.77.32.0/22 11398 -67.77.36.0/22 209 -67.77.40.0/22 209 -67.77.44.0/23 209 -67.77.46.0/24 209 -67.77.47.0/24 11398 -67.77.48.0/23 209 -67.77.50.0/23 5778 -67.77.52.0/22 209 -67.77.56.0/22 18494 -67.77.60.0/24 209 -67.77.61.0/24 18494 -67.77.62.0/23 209 -67.77.64.0/22 209 -67.77.68.0/22 16718 -67.77.72.0/21 209 -67.77.80.0/21 209 -67.77.88.0/23 209 -67.77.90.0/23 2379 -67.77.92.0/24 2379 -67.77.93.0/24 209 -67.77.94.0/23 2379 -67.77.96.0/22 209 -67.77.100.0/22 6367 -67.77.104.0/23 209 -67.77.106.0/24 11398 -67.77.107.0/24 209 -67.77.108.0/22 11398 -67.77.112.0/20 209 -67.77.128.0/20 209 -67.77.144.0/22 4283 -67.77.148.0/22 11398 -67.77.152.0/23 209 -67.77.154.0/23 11398 -67.77.156.0/22 209 -67.77.160.0/21 2379 -67.77.168.0/21 209 -67.77.176.0/20 18494 -67.77.192.0/22 209 -67.77.196.0/22 16718 -67.77.200.0/22 11398 -67.77.204.0/22 209 -67.77.208.0/21 5778 -67.77.216.0/21 209 -67.77.224.0/22 5778 -67.77.228.0/22 209 -67.77.232.0/22 209 -67.77.236.0/24 5778 -67.77.237.0/24 209 -67.77.238.0/23 209 -67.77.240.0/23 209 -67.77.242.0/24 6222 -67.77.243.0/24 209 -67.77.244.0/23 6222 -67.77.246.0/24 209 -67.77.247.0/24 6222 -67.77.248.0/21 209 -67.78.0.0/19 33363 -67.78.32.0/19 11427 -67.78.64.0/18 11427 -67.78.128.0/17 33363 -67.79.0.0/21 11427 -67.79.8.0/22 11427 -67.79.12.0/24 11427 -67.79.13.0/24 20251 -67.79.14.0/23 11427 -67.79.16.0/20 11427 -67.79.32.0/20 11427 -67.79.48.0/22 11427 -67.79.52.0/23 11427 -67.79.54.0/24 18645 -67.79.55.0/24 11427 -67.79.56.0/21 11427 -67.79.64.0/18 11427 -67.79.128.0/18 33363 -67.79.192.0/18 11427 -67.80.0.0/13 6128 -67.88.0.0/21 2828 -67.88.8.0/24 40026 -67.88.9.0/24 2828 -67.88.10.0/23 2828 -67.88.12.0/22 2828 -67.88.16.0/20 2828 -67.88.32.0/19 2828 -67.88.64.0/18 2828 -67.88.128.0/19 2828 -67.88.160.0/20 2828 -67.88.176.0/24 22343 -67.88.177.0/24 2828 -67.88.178.0/23 2828 -67.88.180.0/23 2828 -67.88.182.0/24 22343 -67.88.183.0/24 2828 -67.88.184.0/21 2828 -67.88.192.0/18 2828 -67.89.0.0/17 2828 -67.89.128.0/18 2828 -67.89.192.0/19 2828 -67.89.224.0/24 2828 -67.89.225.0/24 35943 -67.89.226.0/23 2828 -67.89.228.0/22 2828 -67.89.232.0/21 2828 -67.89.240.0/20 2828 -67.90.0.0/20 2828 -67.90.16.0/22 2828 -67.90.20.0/23 2828 -67.90.22.0/24 17359 -67.90.23.0/24 2828 -67.90.24.0/21 2828 -67.90.32.0/20 2828 -67.90.48.0/21 2828 -67.90.56.0/22 2828 -67.90.60.0/23 2828 -67.90.62.0/24 2828 -67.90.63.0/24 701 -67.90.64.0/20 2828 -67.90.80.0/23 2828 -67.90.82.0/24 2828 -67.90.83.0/24 54417 -67.90.84.0/22 2828 -67.90.88.0/21 2828 -67.90.96.0/19 2828 -67.90.128.0/21 2828 -67.90.136.0/22 2828 -67.90.140.0/23 2828 -67.90.142.0/23 7046 -67.90.144.0/21 2828 -67.90.152.0/22 2828 -67.90.156.0/24 2828 -67.90.157.0/24 31767 -67.90.158.0/23 2828 -67.90.160.0/19 2828 -67.90.192.0/21 2828 -67.90.200.0/24 701 -67.90.201.0/24 2828 -67.90.202.0/23 2828 -67.90.204.0/22 2828 -67.90.208.0/20 2828 -67.90.224.0/23 2828 -67.90.226.0/24 53462 -67.90.227.0/24 2828 -67.90.228.0/24 26036 -67.90.229.0/24 2828 -67.90.230.0/23 2828 -67.90.232.0/21 2828 -67.90.240.0/21 2828 -67.90.248.0/24 40492 -67.90.249.0/24 2828 -67.90.250.0/23 2828 -67.90.252.0/22 2828 -67.91.0.0/18 2828 -67.91.64.0/19 2828 -67.91.96.0/23 2828 -67.91.98.0/24 395800 -67.91.99.0/24 2828 -67.91.100.0/22 2828 -67.91.104.0/21 2828 -67.91.112.0/20 2828 -67.91.128.0/19 2828 -67.91.160.0/21 2828 -67.91.168.0/22 2828 -67.91.172.0/23 2828 -67.91.174.0/24 2828 -67.91.175.0/24 62900 -67.91.176.0/20 2828 -67.91.192.0/21 2828 -67.91.200.0/22 2828 -67.91.204.0/23 14203 -67.91.206.0/23 2828 -67.91.208.0/21 2828 -67.91.216.0/22 2828 -67.91.220.0/24 32688 -67.91.221.0/24 2828 -67.91.222.0/23 2828 -67.91.224.0/19 2828 -67.92.0.0/17 2828 -67.92.128.0/18 2828 -67.92.192.0/20 2828 -67.92.208.0/21 2828 -67.92.216.0/24 2828 -67.92.217.0/24 63405 -67.92.218.0/23 2828 -67.92.220.0/22 2828 -67.92.224.0/19 2828 -67.93.0.0/16 2828 -67.94.0.0/15 2828 -67.96.0.0/20 6977 -67.96.16.0/22 62 -67.96.20.0/24 62 -67.96.21.0/24 3356 -67.96.22.0/23 3356 -67.96.24.0/21 62 -67.96.32.0/19 3356 -67.96.64.0/19 3356 -67.96.96.0/20 3356 -67.96.112.0/21 3356 -67.96.120.0/23 3356 -67.96.122.0/24 15065 -67.96.123.0/24 3356 -67.96.124.0/22 3356 -67.96.128.0/23 3356 -67.96.130.0/24 3356 -67.96.131.0/24 25746 -67.96.132.0/22 3356 -67.96.136.0/21 3356 -67.96.144.0/20 3356 -67.96.160.0/19 3356 -67.96.192.0/18 3356 -67.97.0.0/18 3356 -67.97.64.0/21 3356 -67.97.72.0/24 36660 -67.97.73.0/24 3356 -67.97.74.0/23 3356 -67.97.76.0/23 3356 -67.97.78.0/24 3356 -67.97.79.0/24 32416 -67.97.80.0/20 3356 -67.97.96.0/20 3356 -67.97.112.0/24 8119 -67.97.113.0/24 3356 -67.97.114.0/23 10753 -67.97.116.0/22 3356 -67.97.120.0/21 3356 -67.97.128.0/22 3356 -67.97.132.0/24 32342 -67.97.133.0/24 3356 -67.97.134.0/23 3356 -67.97.136.0/21 3356 -67.97.144.0/20 3356 -67.97.160.0/19 3356 -67.97.192.0/21 3356 -67.97.200.0/24 3356 -67.97.201.0/24 15065 -67.97.202.0/23 3356 -67.97.204.0/22 3356 -67.97.208.0/21 3356 -67.97.216.0/23 13433 -67.97.218.0/23 393340 -67.97.220.0/23 393340 -67.97.222.0/23 13433 -67.97.224.0/20 3356 -67.97.240.0/22 3356 -67.97.244.0/24 3356 -67.97.245.0/24 16493 -67.97.246.0/24 3356 -67.97.247.0/24 46887 -67.97.248.0/21 3356 -67.98.0.0/18 3356 -67.98.64.0/20 3356 -67.98.80.0/21 3356 -67.98.88.0/24 23384 -67.98.89.0/24 3356 -67.98.90.0/23 3356 -67.98.92.0/23 3356 -67.98.94.0/24 3356 -67.98.95.0/24 13652 -67.98.96.0/19 3356 -67.98.128.0/20 3356 -67.98.144.0/21 3356 -67.98.152.0/22 3356 -67.98.156.0/24 25593 -67.98.157.0/24 3356 -67.98.158.0/23 3356 -67.98.160.0/21 9246 -67.98.168.0/22 3356 -67.98.172.0/24 3356 -67.98.173.0/24 797 -67.98.174.0/23 3356 -67.98.176.0/21 3356 -67.98.184.0/23 3356 -67.98.186.0/24 3356 -67.98.187.0/24 54174 -67.98.188.0/22 3356 -67.98.192.0/20 3356 -67.98.208.0/21 3356 -67.98.216.0/22 3356 -67.98.220.0/23 3356 -67.98.222.0/24 10753 -67.98.223.0/24 3356 -67.98.224.0/20 3356 -67.98.240.0/24 3356 -67.98.241.0/24 23081 -67.98.242.0/23 3356 -67.98.244.0/22 3356 -67.98.248.0/21 3356 -67.99.0.0/18 3356 -67.99.64.0/20 3356 -67.99.80.0/22 395800 -67.99.84.0/22 3356 -67.99.88.0/21 3356 -67.99.96.0/19 3356 -67.99.128.0/19 3356 -67.99.160.0/21 3685 -67.99.168.0/22 3685 -67.99.172.0/23 3685 -67.99.174.0/23 32831 -67.99.176.0/22 3356 -67.99.180.0/23 36471 -67.99.182.0/23 3356 -67.99.184.0/24 3356 -67.99.185.0/24 35999 -67.99.186.0/23 3356 -67.99.188.0/22 3356 -67.99.192.0/22 3356 -67.99.196.0/23 22362 -67.99.198.0/23 3356 -67.99.200.0/21 393441 -67.99.208.0/20 3356 -67.99.224.0/19 3356 -67.100.0.0/15 18566 -67.102.0.0/16 18566 -67.103.0.0/19 18566 -67.103.32.0/20 18566 -67.103.48.0/21 18566 -67.103.56.0/21 22199 -67.103.64.0/18 18566 -67.103.128.0/17 18566 -67.104.0.0/16 2828 -67.105.0.0/19 2828 -67.105.32.0/20 2828 -67.105.48.0/22 2828 -67.105.52.0/23 2828 -67.105.54.0/24 40892 -67.105.55.0/24 2828 -67.105.56.0/21 2828 -67.105.64.0/19 2828 -67.105.96.0/20 2828 -67.105.112.0/21 2828 -67.105.120.0/22 2828 -67.105.124.0/24 22199 -67.105.125.0/24 2828 -67.105.126.0/23 2828 -67.105.128.0/24 40514 -67.105.129.0/24 2828 -67.105.130.0/23 2828 -67.105.132.0/22 2828 -67.105.136.0/21 2828 -67.105.144.0/20 2828 -67.105.160.0/19 2828 -67.105.192.0/21 2828 -67.105.200.0/24 29989 -67.105.201.0/24 2828 -67.105.202.0/23 2828 -67.105.204.0/22 2828 -67.105.208.0/20 2828 -67.105.224.0/19 2828 -67.106.0.0/17 2828 -67.106.128.0/20 2828 -67.106.144.0/24 2828 -67.106.145.0/24 25878 -67.106.146.0/24 2828 -67.106.147.0/24 54417 -67.106.148.0/22 2828 -67.106.152.0/21 2828 -67.106.160.0/19 2828 -67.106.192.0/22 2828 -67.106.196.0/23 2828 -67.106.198.0/24 2828 -67.106.199.0/24 29766 -67.106.200.0/21 2828 -67.106.208.0/20 2828 -67.106.224.0/19 2828 -67.107.0.0/21 2828 -67.107.8.0/23 22759 -67.107.10.0/24 22759 -67.107.11.0/24 11404 -67.107.12.0/24 11404 -67.107.13.0/24 22759 -67.107.14.0/23 2828 -67.107.16.0/20 2828 -67.107.32.0/20 2828 -67.107.48.0/21 2828 -67.107.56.0/24 2828 -67.107.57.0/24 46746 -67.107.58.0/23 2828 -67.107.60.0/22 2828 -67.107.64.0/21 2828 -67.107.72.0/24 28959 -67.107.73.0/24 2828 -67.107.74.0/23 2828 -67.107.76.0/23 2828 -67.107.78.0/24 2828 -67.107.79.0/24 30172 -67.107.80.0/21 2828 -67.107.88.0/22 2828 -67.107.92.0/24 2828 -67.107.93.0/24 30172 -67.107.94.0/23 2828 -67.107.96.0/20 2828 -67.107.112.0/21 2828 -67.107.120.0/23 2828 -67.107.122.0/23 32091 -67.107.124.0/22 2828 -67.107.128.0/18 2828 -67.107.192.0/19 2828 -67.107.224.0/22 23492 -67.107.228.0/22 2828 -67.107.232.0/21 2828 -67.107.240.0/20 2828 -67.108.0.0/20 2828 -67.108.16.0/22 2828 -67.108.20.0/24 30384 -67.108.21.0/24 2828 -67.108.22.0/23 2828 -67.108.24.0/21 2828 -67.108.32.0/21 2828 -67.108.40.0/22 2828 -67.108.44.0/23 2828 -67.108.46.0/23 23492 -67.108.48.0/22 2828 -67.108.52.0/23 30340 -67.108.54.0/23 2828 -67.108.56.0/21 2828 -67.108.64.0/19 2828 -67.108.96.0/22 2828 -67.108.100.0/24 2828 -67.108.101.0/24 33607 -67.108.102.0/23 2828 -67.108.104.0/21 2828 -67.108.112.0/20 2828 -67.108.128.0/18 2828 -67.108.192.0/19 2828 -67.108.224.0/21 2828 -67.108.232.0/22 2828 -67.108.236.0/24 2828 -67.108.237.0/24 46601 -67.108.238.0/23 2828 -67.108.240.0/20 2828 -67.109.0.0/17 2828 -67.109.128.0/19 2828 -67.109.160.0/23 2828 -67.109.162.0/24 2828 -67.109.163.0/24 62614 -67.109.164.0/22 2828 -67.109.168.0/21 2828 -67.109.176.0/21 2828 -67.109.184.0/22 2828 -67.109.188.0/22 27237 -67.109.192.0/19 2828 -67.109.224.0/21 23492 -67.109.232.0/21 2828 -67.109.240.0/20 2828 -67.110.0.0/18 2828 -67.110.64.0/19 2828 -67.110.96.0/21 2828 -67.110.104.0/21 25655 -67.110.112.0/20 2828 -67.110.128.0/18 2828 -67.110.192.0/20 26556 -67.110.208.0/20 62511 -67.110.224.0/19 2828 -67.111.0.0/22 2828 -67.111.4.0/23 2828 -67.111.6.0/24 36837 -67.111.7.0/24 2828 -67.111.8.0/21 2828 -67.111.16.0/20 2828 -67.111.32.0/20 2828 -67.111.48.0/21 2828 -67.111.56.0/22 2828 -67.111.60.0/23 2828 -67.111.62.0/24 2828 -67.111.63.0/24 23509 -67.111.64.0/18 2828 -67.111.128.0/18 2828 -67.111.192.0/22 2828 -67.111.196.0/24 54417 -67.111.197.0/24 2828 -67.111.198.0/23 2828 -67.111.200.0/21 2828 -67.111.208.0/20 2828 -67.111.224.0/20 2828 -67.111.240.0/22 2828 -67.111.244.0/24 54417 -67.111.245.0/24 2828 -67.111.246.0/23 2828 -67.111.248.0/21 2828 -67.112.0.0/17 7018 -67.112.128.0/18 7018 -67.112.192.0/22 7018 -67.112.196.0/24 22811 -67.112.197.0/24 7018 -67.112.198.0/23 7018 -67.112.200.0/21 7018 -67.112.208.0/20 7018 -67.112.224.0/19 7018 -67.113.0.0/16 7018 -67.114.0.0/16 7018 -67.115.0.0/18 7018 -67.115.64.0/19 7018 -67.115.96.0/20 7018 -67.115.112.0/22 7018 -67.115.116.0/23 7018 -67.115.118.0/24 23472 -67.115.119.0/24 7018 -67.115.120.0/21 7018 -67.115.128.0/17 7018 -67.116.0.0/20 7018 -67.116.16.0/21 7018 -67.116.24.0/23 7018 -67.116.26.0/23 25993 -67.116.28.0/22 7018 -67.116.32.0/19 7018 -67.116.64.0/18 7018 -67.116.128.0/17 7018 -67.117.0.0/16 7018 -67.118.0.0/17 7018 -67.118.128.0/18 7018 -67.118.192.0/21 11191 -67.118.200.0/21 7018 -67.118.208.0/20 7018 -67.118.224.0/19 7018 -67.119.0.0/16 7018 -67.120.0.0/15 7018 -67.122.0.0/16 7018 -67.123.0.0/18 7018 -67.123.64.0/19 7018 -67.123.96.0/20 7018 -67.123.112.0/21 7018 -67.123.120.0/22 7018 -67.123.124.0/23 7018 -67.123.126.0/24 7018 -67.123.127.0/24 393822 -67.123.128.0/17 7018 -67.124.0.0/17 7018 -67.124.128.0/19 7018 -67.124.160.0/20 27450 -67.124.176.0/20 7018 -67.124.192.0/18 7018 -67.125.0.0/16 7018 -67.126.0.0/15 7018 -67.128.0.0/23 209 -67.128.2.0/24 209 -67.128.3.0/24 55277 -67.128.4.0/22 209 -67.128.8.0/21 209 -67.128.16.0/20 209 -67.128.32.0/22 209 -67.128.36.0/23 209 -67.128.38.0/24 209 -67.128.39.0/24 46663 -67.128.40.0/21 209 -67.128.48.0/20 32592 -67.128.64.0/22 209 -67.128.68.0/24 209 -67.128.69.0/24 14321 -67.128.70.0/23 209 -67.128.72.0/21 209 -67.128.80.0/21 209 -67.128.88.0/22 209 -67.128.92.0/23 209 -67.128.94.0/24 209 -67.128.95.0/24 54778 -67.128.96.0/19 209 -67.128.128.0/22 209 -67.128.132.0/24 19831 -67.128.133.0/24 209 -67.128.134.0/23 209 -67.128.136.0/21 209 -67.128.144.0/20 209 -67.128.160.0/19 209 -67.128.192.0/21 209 -67.128.200.0/22 209 -67.128.204.0/23 209 -67.128.206.0/24 209 -67.128.207.0/24 393980 -67.128.208.0/21 209 -67.128.216.0/24 53262 -67.128.217.0/24 209 -67.128.218.0/23 209 -67.128.220.0/23 32153 -67.128.222.0/23 209 -67.128.224.0/19 209 -67.129.0.0/18 209 -67.129.64.0/20 209 -67.129.80.0/21 209 -67.129.88.0/22 209 -67.129.92.0/24 22153 -67.129.93.0/24 209 -67.129.94.0/23 209 -67.129.96.0/21 209 -67.129.104.0/23 209 -67.129.106.0/24 209 -67.129.107.0/24 32578 -67.129.108.0/22 209 -67.129.112.0/24 209 -67.129.113.0/24 17053 -67.129.114.0/23 209 -67.129.116.0/22 209 -67.129.120.0/22 209 -67.129.124.0/24 209 -67.129.125.0/24 62495 -67.129.126.0/23 209 -67.129.128.0/23 209 -67.129.130.0/24 6594 -67.129.131.0/24 209 -67.129.132.0/24 6594 -67.129.133.0/24 209 -67.129.134.0/23 209 -67.129.136.0/21 209 -67.129.144.0/22 209 -67.129.148.0/23 209 -67.129.150.0/24 209 -67.129.151.0/24 18937 -67.129.152.0/22 209 -67.129.156.0/24 11710 -67.129.157.0/24 209 -67.129.158.0/23 209 -67.129.160.0/20 209 -67.129.176.0/21 209 -67.129.184.0/22 209 -67.129.188.0/24 22167 -67.129.189.0/24 209 -67.129.190.0/23 209 -67.129.192.0/24 209 -67.129.193.0/24 32438 -67.129.194.0/24 33581 -67.129.195.0/24 209 -67.129.196.0/22 209 -67.129.200.0/21 209 -67.129.208.0/20 209 -67.129.224.0/21 209 -67.129.232.0/22 27202 -67.129.236.0/23 27202 -67.129.238.0/23 209 -67.129.240.0/20 209 -67.130.0.0/24 3561 -67.130.1.0/24 209 -67.130.2.0/23 209 -67.130.4.0/22 209 -67.130.8.0/23 209 -67.130.10.0/24 32996 -67.130.11.0/24 209 -67.130.12.0/22 209 -67.130.16.0/20 209 -67.130.32.0/23 19216 -67.130.34.0/23 209 -67.130.36.0/22 209 -67.130.40.0/21 209 -67.130.48.0/21 209 -67.130.56.0/23 209 -67.130.58.0/24 209 -67.130.59.0/24 13747 -67.130.60.0/22 209 -67.130.64.0/22 209 -67.130.68.0/23 209 -67.130.70.0/24 209 -67.130.71.0/24 55193 -67.130.72.0/21 209 -67.130.80.0/20 209 -67.130.96.0/23 209 -67.130.98.0/24 46693 -67.130.99.0/24 209 -67.130.100.0/22 209 -67.130.104.0/21 209 -67.130.112.0/22 209 -67.130.116.0/24 209 -67.130.117.0/24 53282 -67.130.118.0/23 209 -67.130.120.0/21 209 -67.130.128.0/21 209 -67.130.136.0/23 395994 -67.130.138.0/23 209 -67.130.140.0/22 209 -67.130.144.0/20 209 -67.130.160.0/21 36207 -67.130.168.0/21 209 -67.130.176.0/20 209 -67.130.192.0/20 209 -67.130.208.0/23 209 -67.130.210.0/24 395846 -67.130.211.0/24 209 -67.130.212.0/22 209 -67.130.216.0/22 209 -67.130.220.0/24 209 -67.130.221.0/24 62495 -67.130.222.0/23 209 -67.130.224.0/19 209 -67.131.0.0/19 209 -67.131.32.0/20 209 -67.131.48.0/20 26133 -67.131.64.0/20 209 -67.131.80.0/24 14330 -67.131.81.0/24 209 -67.131.82.0/23 209 -67.131.84.0/23 209 -67.131.86.0/24 209 -67.131.87.0/24 14330 -67.131.88.0/21 209 -67.131.96.0/22 209 -67.131.100.0/24 209 -67.131.101.0/24 3577 -67.131.102.0/23 209 -67.131.104.0/21 209 -67.131.112.0/21 209 -67.131.120.0/23 10333 -67.131.122.0/23 209 -67.131.124.0/23 209 -67.131.126.0/24 209 -67.131.127.0/24 55037 -67.131.128.0/23 209 -67.131.130.0/24 29207 -67.131.131.0/24 209 -67.131.132.0/23 209 -67.131.134.0/24 22904 -67.131.135.0/24 209 -67.131.136.0/21 209 -67.131.144.0/20 209 -67.131.160.0/21 209 -67.131.168.0/22 209 -67.131.172.0/23 209 -67.131.174.0/24 209 -67.131.175.0/24 22621 -67.131.176.0/20 209 -67.131.192.0/19 209 -67.131.224.0/21 209 -67.131.232.0/24 20940 -67.131.233.0/24 209 -67.131.234.0/23 209 -67.131.236.0/22 209 -67.131.240.0/21 209 -67.131.248.0/22 11691 -67.131.252.0/22 209 -67.132.0.0/23 209 -67.132.2.0/24 1410 -67.132.3.0/24 209 -67.132.4.0/22 209 -67.132.8.0/24 27015 -67.132.9.0/24 54259 -67.132.10.0/23 209 -67.132.12.0/24 40804 -67.132.13.0/24 209 -67.132.14.0/23 209 -67.132.16.0/20 209 -67.132.32.0/19 209 -67.132.64.0/21 209 -67.132.72.0/22 209 -67.132.76.0/23 209 -67.132.78.0/24 32754 -67.132.79.0/24 209 -67.132.80.0/21 209 -67.132.88.0/22 209 -67.132.92.0/24 21509 -67.132.93.0/24 209 -67.132.94.0/23 209 -67.132.96.0/21 209 -67.132.104.0/24 209 -67.132.105.0/24 46732 -67.132.106.0/23 209 -67.132.108.0/22 209 -67.132.112.0/22 209 -67.132.116.0/23 209 -67.132.118.0/24 209 -67.132.119.0/24 32812 -67.132.120.0/22 209 -67.132.124.0/23 209 -67.132.126.0/24 30519 -67.132.127.0/24 209 -67.132.128.0/21 209 -67.132.136.0/22 209 -67.132.140.0/24 18690 -67.132.141.0/24 209 -67.132.142.0/23 209 -67.132.144.0/20 209 -67.132.160.0/23 209 -67.132.162.0/24 209 -67.132.163.0/24 30066 -67.132.164.0/23 209 -67.132.166.0/24 3910 -67.132.167.0/24 209 -67.132.168.0/21 209 -67.132.176.0/23 11255 -67.132.178.0/24 11255 -67.132.179.0/24 17313 -67.132.180.0/22 209 -67.132.184.0/21 209 -67.132.192.0/22 209 -67.132.196.0/23 209 -67.132.198.0/24 33592 -67.132.199.0/24 209 -67.132.200.0/22 209 -67.132.204.0/23 209 -67.132.206.0/24 14197 -67.132.207.0/24 32291 -67.132.208.0/20 209 -67.132.224.0/20 209 -67.132.240.0/24 14793 -67.132.241.0/24 32040 -67.132.242.0/23 14793 -67.132.244.0/22 14793 -67.132.248.0/21 209 -67.133.0.0/19 209 -67.133.32.0/22 11691 -67.133.36.0/22 209 -67.133.40.0/21 209 -67.133.48.0/21 209 -67.133.56.0/24 209 -67.133.57.0/24 394196 -67.133.58.0/23 209 -67.133.60.0/23 209 -67.133.62.0/24 18980 -67.133.63.0/24 209 -67.133.64.0/21 209 -67.133.72.0/22 209 -67.133.76.0/24 14487 -67.133.77.0/24 209 -67.133.78.0/23 209 -67.133.80.0/24 55261 -67.133.81.0/24 209 -67.133.82.0/24 22621 -67.133.83.0/24 209 -67.133.84.0/22 209 -67.133.88.0/22 209 -67.133.92.0/23 209 -67.133.94.0/24 209 -67.133.95.0/24 32362 -67.133.96.0/19 209 -67.133.128.0/21 209 -67.133.136.0/22 209 -67.133.140.0/23 36071 -67.133.142.0/24 209 -67.133.143.0/24 36071 -67.133.144.0/22 62968 -67.133.148.0/24 209 -67.133.149.0/24 17143 -67.133.150.0/23 209 -67.133.152.0/21 209 -67.133.160.0/20 209 -67.133.176.0/21 209 -67.133.184.0/22 209 -67.133.188.0/24 22310 -67.133.189.0/24 209 -67.133.190.0/23 209 -67.133.192.0/20 209 -67.133.208.0/22 209 -67.133.212.0/23 27202 -67.133.214.0/23 209 -67.133.216.0/22 209 -67.133.220.0/24 32571 -67.133.221.0/24 209 -67.133.222.0/23 209 -67.133.224.0/21 209 -67.133.232.0/23 10886 -67.133.234.0/24 395391 -67.133.235.0/24 209 -67.133.236.0/22 209 -67.133.240.0/23 209 -67.133.242.0/24 21622 -67.133.243.0/24 209 -67.133.244.0/22 209 -67.133.248.0/21 209 -67.134.0.0/21 209 -67.134.8.0/22 209 -67.134.12.0/22 11691 -67.134.16.0/20 209 -67.134.32.0/20 209 -67.134.48.0/22 10835 -67.134.52.0/22 209 -67.134.56.0/24 36819 -67.134.57.0/24 209 -67.134.58.0/23 209 -67.134.60.0/22 395846 -67.134.64.0/21 209 -67.134.72.0/22 209 -67.134.76.0/23 209 -67.134.78.0/23 27516 -67.134.80.0/21 209 -67.134.88.0/22 209 -67.134.92.0/24 6997 -67.134.93.0/24 209 -67.134.94.0/23 209 -67.134.96.0/21 209 -67.134.104.0/22 209 -67.134.108.0/23 13904 -67.134.110.0/23 209 -67.134.112.0/20 209 -67.134.128.0/19 209 -67.134.160.0/22 209 -67.134.164.0/23 209 -67.134.166.0/24 209 -67.134.167.0/24 27188 -67.134.168.0/21 209 -67.134.176.0/20 209 -67.134.192.0/21 209 -67.134.200.0/22 209 -67.134.204.0/22 1742 -67.134.208.0/24 209 -67.134.209.0/24 394575 -67.134.210.0/23 209 -67.134.212.0/22 209 -67.134.216.0/22 209 -67.134.220.0/23 209 -67.134.222.0/24 53316 -67.134.223.0/24 209 -67.134.224.0/20 209 -67.134.240.0/23 53272 -67.134.242.0/23 209 -67.134.244.0/22 209 -67.134.248.0/21 209 -67.135.0.0/19 209 -67.135.32.0/20 209 -67.135.48.0/22 209 -67.135.52.0/24 209 -67.135.53.0/24 394527 -67.135.54.0/24 209 -67.135.55.0/24 19629 -67.135.56.0/21 209 -67.135.64.0/18 209 -67.135.128.0/22 209 -67.135.132.0/24 3356 -67.135.133.0/24 23409 -67.135.134.0/23 209 -67.135.136.0/21 209 -67.135.144.0/22 209 -67.135.148.0/23 31901 -67.135.150.0/23 209 -67.135.152.0/21 209 -67.135.160.0/24 395634 -67.135.161.0/24 209 -67.135.162.0/24 395634 -67.135.163.0/24 209 -67.135.164.0/22 209 -67.135.168.0/21 209 -67.135.176.0/24 393917 -67.135.177.0/24 209 -67.135.178.0/23 209 -67.135.180.0/22 209 -67.135.184.0/21 209 -67.135.192.0/19 209 -67.135.224.0/20 209 -67.135.240.0/23 209 -67.135.242.0/24 209 -67.135.243.0/24 16996 -67.135.244.0/23 209 -67.135.246.0/24 13596 -67.135.247.0/24 209 -67.135.248.0/21 209 -67.136.0.0/22 7385 -67.136.4.0/22 6461 -67.136.8.0/21 7385 -67.136.16.0/20 7385 -67.136.32.0/19 7385 -67.136.64.0/23 7385 -67.136.66.0/24 7385 -67.136.67.0/24 394282 -67.136.68.0/22 7385 -67.136.72.0/21 7385 -67.136.80.0/21 7385 -67.136.88.0/22 7385 -67.136.92.0/24 62733 -67.136.93.0/24 7385 -67.136.94.0/23 7385 -67.136.96.0/20 7385 -67.136.112.0/21 7385 -67.136.120.0/22 7385 -67.136.124.0/24 7385 -67.136.125.0/24 29951 -67.136.126.0/23 7385 -67.136.128.0/17 7385 -67.137.0.0/19 7385 -67.137.32.0/20 7385 -67.137.48.0/22 7385 -67.137.52.0/24 32575 -67.137.53.0/24 7385 -67.137.54.0/23 7385 -67.137.56.0/24 7385 -67.137.57.0/24 18778 -67.137.58.0/23 7385 -67.137.60.0/22 7385 -67.137.64.0/20 7385 -67.137.80.0/22 7385 -67.137.84.0/24 395800 -67.137.85.0/24 7385 -67.137.86.0/23 7385 -67.137.88.0/21 7385 -67.137.96.0/19 7385 -67.137.128.0/18 7385 -67.137.192.0/20 7385 -67.137.208.0/21 7385 -67.137.216.0/22 7385 -67.137.220.0/24 7385 -67.137.221.0/24 25884 -67.137.222.0/23 7385 -67.137.224.0/19 7385 -67.138.0.0/20 7385 -67.138.16.0/23 7385 -67.138.18.0/24 7385 -67.138.19.0/24 46726 -67.138.20.0/22 7385 -67.138.24.0/21 7385 -67.138.32.0/19 7385 -67.138.64.0/19 7385 -67.138.96.0/22 7385 -67.138.100.0/24 10587 -67.138.101.0/24 7385 -67.138.102.0/23 7385 -67.138.104.0/21 29951 -67.138.112.0/20 7385 -67.138.128.0/17 7385 -67.139.0.0/20 7385 -67.139.16.0/21 7385 -67.139.24.0/22 7385 -67.139.28.0/23 7385 -67.139.30.0/24 7385 -67.139.31.0/24 53724 -67.139.32.0/19 7385 -67.139.64.0/18 7385 -67.139.128.0/20 7385 -67.139.144.0/21 7385 -67.139.152.0/23 7385 -67.139.154.0/24 7385 -67.139.155.0/24 62966 -67.139.156.0/22 7385 -67.139.160.0/19 7385 -67.139.192.0/20 7385 -67.139.208.0/21 29951 -67.139.216.0/21 7385 -67.139.224.0/19 7385 -67.140.0.0/17 7029 -67.140.128.0/19 7029 -67.140.160.0/20 7029 -67.140.176.0/21 7029 -67.140.184.0/23 7029 -67.140.186.0/24 22944 -67.140.187.0/24 7029 -67.140.188.0/24 7029 -67.140.189.0/24 22944 -67.140.190.0/23 7029 -67.140.192.0/18 7029 -67.141.0.0/18 7029 -67.141.64.0/20 7029 -67.141.80.0/23 7029 -67.141.82.0/24 7029 -67.141.83.0/24 22773 -67.141.84.0/22 7029 -67.141.88.0/21 7029 -67.141.96.0/20 7029 -67.141.112.0/21 7029 -67.141.120.0/22 7029 -67.141.124.0/23 7029 -67.141.126.0/24 22773 -67.141.127.0/24 7029 -67.141.128.0/17 7029 -67.142.0.0/19 6621 -67.142.100.0/22 6621 -67.142.104.0/21 6621 -67.142.112.0/20 6621 -67.142.128.0/20 6621 -67.142.144.0/21 6621 -67.142.152.0/22 6621 -67.142.156.0/24 63062 -67.142.157.0/24 6621 -67.142.158.0/23 6621 -67.142.160.0/20 6621 -67.142.176.0/21 6621 -67.142.184.0/23 6621 -67.142.186.0/24 6621 -67.142.187.0/24 63062 -67.142.188.0/22 6621 -67.142.192.0/24 63062 -67.142.193.0/24 6621 -67.142.194.0/23 6621 -67.142.196.0/22 6621 -67.142.200.0/23 6621 -67.142.202.0/24 6621 -67.142.203.0/24 63062 -67.142.204.0/24 63062 -67.142.205.0/24 6621 -67.142.206.0/23 6621 -67.142.208.0/20 6621 -67.142.224.0/20 6621 -67.142.240.0/23 6621 -67.142.242.0/24 6621 -67.142.243.0/24 63062 -67.142.244.0/22 6621 -67.142.248.0/23 6621 -67.142.250.0/24 6621 -67.142.251.0/24 63062 -67.142.252.0/22 6621 -67.143.0.0/18 6621 -67.143.64.0/19 6621 -67.143.96.0/23 6621 -67.143.98.0/24 6621 -67.143.99.0/24 63062 -67.143.100.0/22 6621 -67.143.104.0/21 6621 -67.143.112.0/20 6621 -67.143.128.0/17 6621 -67.144.0.0/14 209 -67.148.0.0/21 209 -67.148.8.0/22 209 -67.148.12.0/24 1818 -67.148.13.0/24 395800 -67.148.14.0/23 209 -67.148.16.0/20 209 -67.148.32.0/21 209 -67.148.40.0/23 209 -67.148.42.0/24 393672 -67.148.43.0/24 209 -67.148.44.0/22 209 -67.148.48.0/24 209 -67.148.49.0/24 3910 -67.148.50.0/23 209 -67.148.52.0/22 209 -67.148.56.0/21 209 -67.148.64.0/24 32158 -67.148.65.0/24 209 -67.148.66.0/24 3910 -67.148.67.0/24 209 -67.148.68.0/22 209 -67.148.72.0/22 209 -67.148.76.0/23 26144 -67.148.78.0/23 209 -67.148.80.0/21 209 -67.148.88.0/23 209 -67.148.90.0/24 395800 -67.148.91.0/24 209 -67.148.92.0/22 209 -67.148.96.0/20 209 -67.148.112.0/21 209 -67.148.120.0/21 10835 -67.148.128.0/23 209 -67.148.130.0/24 11710 -67.148.131.0/24 209 -67.148.132.0/22 209 -67.148.136.0/21 209 -67.148.144.0/21 209 -67.148.152.0/24 54384 -67.148.153.0/24 18570 -67.148.154.0/23 209 -67.148.156.0/22 209 -67.148.160.0/19 209 -67.148.192.0/22 209 -67.148.196.0/24 209 -67.148.197.0/24 26959 -67.148.198.0/23 209 -67.148.200.0/21 209 -67.148.208.0/20 209 -67.148.224.0/20 209 -67.148.240.0/21 209 -67.148.248.0/23 209 -67.148.250.0/24 209 -67.148.251.0/24 3910 -67.148.252.0/22 209 -67.149.0.0/16 12083 -67.151.0.0/18 7029 -67.151.64.0/20 7029 -67.151.80.0/21 7029 -67.151.88.0/23 7029 -67.151.90.0/24 40114 -67.151.91.0/24 7029 -67.151.92.0/22 7029 -67.151.96.0/19 7029 -67.151.128.0/19 7029 -67.151.160.0/23 7029 -67.151.162.0/24 7029 -67.151.163.0/24 36422 -67.151.164.0/22 7029 -67.151.168.0/21 7029 -67.151.176.0/20 7029 -67.151.192.0/18 7029 -67.152.0.0/22 2828 -67.152.4.0/23 2828 -67.152.6.0/24 2828 -67.152.7.0/24 25748 -67.152.8.0/21 2828 -67.152.16.0/20 2828 -67.152.32.0/19 2828 -67.152.64.0/18 2828 -67.152.128.0/20 2828 -67.152.144.0/21 2828 -67.152.152.0/23 2828 -67.152.154.0/24 2828 -67.152.155.0/24 46361 -67.152.156.0/24 19298 -67.152.157.0/24 2828 -67.152.158.0/23 2828 -67.152.160.0/19 2828 -67.152.192.0/19 2828 -67.152.224.0/20 2828 -67.152.240.0/21 2828 -67.152.248.0/23 22362 -67.152.250.0/23 2828 -67.152.252.0/22 2828 -67.153.0.0/21 2828 -67.153.8.0/24 26663 -67.153.9.0/24 2828 -67.153.10.0/23 2828 -67.153.12.0/22 2828 -67.153.16.0/20 2828 -67.153.32.0/19 2828 -67.153.64.0/18 2828 -67.153.128.0/17 2828 -67.154.0.0/17 2828 -67.154.128.0/19 2828 -67.154.160.0/20 2828 -67.154.176.0/21 2828 -67.154.184.0/22 2828 -67.154.188.0/22 40715 -67.154.192.0/18 2828 -67.155.0.0/23 2828 -67.155.2.0/24 27399 -67.155.3.0/24 2828 -67.155.4.0/22 2828 -67.155.8.0/21 2828 -67.155.16.0/20 2828 -67.155.32.0/19 2828 -67.155.64.0/18 2828 -67.155.128.0/21 2828 -67.155.136.0/23 2828 -67.155.138.0/24 2828 -67.155.139.0/24 394270 -67.155.140.0/22 2828 -67.155.144.0/20 2828 -67.155.160.0/19 2828 -67.155.192.0/18 2828 -67.156.0.0/15 1226 -67.158.0.0/19 20412 -67.158.32.0/20 20412 -67.158.48.0/24 209 -67.158.49.0/24 22842 -67.158.50.0/24 26968 -67.158.51.0/24 14617 -67.158.52.0/24 135247 -67.158.54.0/24 62821 -67.158.55.0/24 53843 -67.158.56.0/24 46527 -67.158.58.0/24 46311 -67.158.59.0/24 397861 -67.158.60.0/24 63047 -67.158.61.0/24 14768 -67.158.62.0/24 64089 -67.158.63.0/24 14768 -67.158.64.0/20 7794 -67.158.80.0/20 63400 -67.158.96.0/22 7029 -67.158.100.0/23 7029 -67.158.102.0/24 7029 -67.158.103.0/24 40737 -67.158.104.0/21 7029 -67.158.112.0/20 7029 -67.158.128.0/22 22647 -67.158.132.0/23 22647 -67.158.134.0/24 22647 -67.158.135.0/24 17093 -67.158.136.0/23 22647 -67.158.138.0/23 174 -67.158.140.0/22 174 -67.158.144.0/23 22647 -67.158.146.0/24 209 -67.158.147.0/24 17093 -67.158.148.0/22 22647 -67.158.152.0/21 22647 -67.158.160.0/22 22647 -67.158.164.0/23 14671 -67.158.166.0/24 14671 -67.158.167.0/24 6461 -67.158.168.0/21 32645 -67.158.176.0/23 32645 -67.158.178.0/23 14671 -67.158.180.0/24 14671 -67.158.181.0/24 22647 -67.158.182.0/23 22647 -67.158.184.0/21 5742 -67.158.192.0/22 7336 -67.158.196.0/23 14380 -67.158.198.0/24 14380 -67.158.200.0/21 33561 -67.158.210.0/23 16518 -67.158.212.0/22 46691 -67.158.216.0/23 16518 -67.158.218.0/23 6295 -67.158.220.0/22 6295 -67.158.224.0/20 23265 -67.158.240.0/20 46175 -67.159.0.0/18 174 -67.159.64.0/18 13371 -67.159.128.0/19 14051 -67.159.160.0/19 29930 -67.159.192.0/24 16509 -67.159.194.0/23 5650 -67.159.196.0/23 397625 -67.159.198.0/24 13983 -67.159.200.0/24 397933 -67.159.202.0/24 397060 -67.159.203.0/24 53340 -67.159.204.0/22 394740 -67.159.208.0/20 26753 -67.159.224.0/23 19969 -67.159.226.0/23 19853 -67.159.228.0/22 19853 -67.159.232.0/21 19853 -67.159.240.0/21 19853 -67.159.248.0/22 19853 -67.159.252.0/22 11728 -67.160.0.0/11 7922 -67.192.0.0/16 33070 -67.193.0.0/16 7992 -67.194.0.0/16 36375 -67.195.0.0/17 36647 -67.195.128.0/20 36647 -67.195.144.0/21 36647 -67.195.160.0/20 36647 -67.195.176.0/20 26101 -67.195.192.0/19 26101 -67.195.224.0/21 36647 -67.195.249.0/24 10310 -67.196.0.0/16 8001 -67.197.0.0/16 14615 -67.198.0.0/23 7459 -67.198.2.0/24 39971 -67.198.3.0/24 7459 -67.198.4.0/22 7459 -67.198.8.0/21 7459 -67.198.16.0/20 7459 -67.198.32.0/19 7459 -67.198.64.0/18 7459 -67.198.128.0/17 35908 -67.199.0.0/17 14992 -67.199.128.0/22 3257 -67.199.132.0/23 23316 -67.199.134.0/23 3257 -67.199.136.0/21 3257 -67.199.144.0/23 3257 -67.199.146.0/24 54641 -67.199.147.0/24 3257 -67.199.148.0/22 3257 -67.199.152.0/21 3257 -67.199.160.0/19 36223 -67.199.192.0/19 46293 -67.199.224.0/22 15695 -67.199.228.0/24 15695 -67.199.240.0/23 395038 -67.199.242.0/24 395038 -67.199.243.0/24 395182 -67.199.244.0/23 40907 -67.199.246.0/24 15047 -67.199.247.0/24 39950 -67.199.248.0/24 396982 -67.199.249.0/24 15047 -67.199.250.0/24 395188 -67.199.251.0/24 394781 -67.199.253.0/24 395344 -67.199.254.0/24 13428 -67.199.255.0/24 395188 -67.200.0.0/19 3257 -67.200.32.0/20 3257 -67.200.48.0/22 3257 -67.200.52.0/23 46401 -67.200.54.0/23 3257 -67.200.56.0/23 46401 -67.200.58.0/24 45217 -67.200.59.0/24 3257 -67.200.60.0/22 3257 -67.200.64.0/20 3257 -67.200.80.0/21 3257 -67.200.88.0/23 3257 -67.200.90.0/24 3257 -67.200.91.0/24 15277 -67.200.92.0/22 3257 -67.200.96.0/21 3257 -67.200.104.0/23 3257 -67.200.106.0/24 23507 -67.200.107.0/24 53560 -67.200.108.0/22 3257 -67.200.112.0/24 3257 -67.200.113.0/24 46272 -67.200.114.0/23 3257 -67.200.116.0/23 46401 -67.200.118.0/23 3257 -67.200.120.0/22 3257 -67.200.124.0/23 3257 -67.200.126.0/24 3257 -67.200.127.0/24 393333 -67.200.128.0/17 11215 -67.201.0.0/21 3257 -67.201.8.0/22 23316 -67.201.12.0/22 3257 -67.201.16.0/20 3257 -67.201.32.0/21 46562 -67.201.40.0/21 3257 -67.201.48.0/23 394380 -67.201.50.0/23 3257 -67.201.52.0/24 14332 -67.201.53.0/24 3257 -67.201.54.0/23 3257 -67.201.56.0/21 46562 -67.201.64.0/23 3356 -67.201.67.0/24 3356 -67.201.68.0/23 3356 -67.201.71.0/24 22646 -67.201.72.0/24 3356 -67.201.73.0/24 22646 -67.201.74.0/23 3356 -67.201.77.0/24 3356 -67.201.79.0/24 3356 -67.201.80.0/23 3356 -67.201.89.0/24 3356 -67.201.92.0/23 3356 -67.201.98.0/24 701 -67.201.103.0/24 6181 -67.201.104.0/24 3549 -67.201.105.0/24 3356 -67.201.107.0/24 3356 -67.201.108.0/24 3356 -67.201.116.0/24 3356 -67.201.122.0/24 701 -67.201.125.0/24 3356 -67.201.126.0/24 3356 -67.201.128.0/18 22995 -67.201.192.0/18 15199 -67.202.0.0/18 14618 -67.202.64.0/19 32748 -67.202.96.0/22 32748 -67.202.100.0/23 46440 -67.202.102.0/23 32748 -67.202.104.0/21 32748 -67.202.112.0/20 32748 -67.202.128.0/19 17306 -67.202.160.0/24 32216 -67.202.161.0/24 19554 -67.202.162.0/23 19554 -67.202.164.0/24 19554 -67.202.165.0/24 32216 -67.202.166.0/23 32216 -67.202.168.0/22 32216 -67.202.172.0/24 19554 -67.202.173.0/24 32216 -67.202.174.0/23 32216 -67.202.176.0/21 13368 -67.202.184.0/24 64225 -67.202.192.0/18 7381 -67.203.0.0/21 21769 -67.203.8.0/23 17252 -67.203.10.0/24 17252 -67.203.11.0/24 46261 -67.203.12.0/22 17252 -67.203.16.0/23 17252 -67.203.18.0/24 8038 -67.203.19.0/24 17252 -67.203.20.0/22 17252 -67.203.24.0/21 21769 -67.203.32.0/21 262287 -67.203.40.0/24 54103 -67.203.41.0/24 21769 -67.203.42.0/24 54103 -67.203.43.0/24 21769 -67.203.44.0/23 54103 -67.203.46.0/24 21769 -67.203.47.0/24 54103 -67.203.48.0/20 21769 -67.203.65.0/24 14265 -67.203.66.0/23 14265 -67.203.68.0/22 14265 -67.203.72.0/21 14265 -67.203.80.0/24 14265 -67.203.81.0/24 11915 -67.203.82.0/23 14265 -67.203.84.0/22 14265 -67.203.88.0/22 14265 -67.203.93.0/24 14265 -67.203.94.0/24 11915 -67.203.95.0/24 14265 -67.203.96.0/24 14265 -67.203.98.0/23 14265 -67.203.100.0/24 11915 -67.203.101.0/24 19864 -67.203.102.0/24 19864 -67.203.103.0/24 14265 -67.203.104.0/22 14265 -67.203.108.0/24 14265 -67.203.109.0/24 19864 -67.203.110.0/24 14265 -67.203.112.0/21 14265 -67.203.120.0/24 14265 -67.203.121.0/24 19864 -67.203.122.0/24 14265 -67.203.124.0/24 11915 -67.203.127.0/24 19864 -67.203.128.0/20 7829 -67.203.144.0/20 16467 -67.203.160.0/20 7829 -67.203.176.0/21 7829 -67.203.184.0/23 7829 -67.203.186.0/24 7829 -67.203.187.0/24 14265 -67.203.188.0/22 7829 -67.203.192.0/20 11992 -67.203.208.0/22 11992 -67.203.212.0/24 394963 -67.203.213.0/24 11992 -67.203.214.0/23 11992 -67.203.216.0/21 11992 -67.203.224.0/24 14974 -67.203.225.0/24 11992 -67.203.226.0/23 11992 -67.203.228.0/22 11992 -67.203.232.0/21 11992 -67.203.240.0/20 11992 -67.204.0.0/22 13876 -67.204.8.0/21 13876 -67.204.16.0/23 396895 -67.204.18.0/24 15255 -67.204.19.0/24 396895 -67.204.20.0/22 13876 -67.204.29.0/24 13876 -67.204.31.0/24 13876 -67.204.32.0/19 33548 -67.204.64.0/18 27564 -67.204.128.0/18 4181 -67.204.192.0/18 23184 -67.205.0.0/18 26347 -67.205.64.0/18 32613 -67.205.128.0/18 14061 -67.205.192.0/19 23089 -67.205.224.0/21 23089 -67.205.233.0/24 23089 -67.205.234.0/23 23089 -67.205.236.0/22 23089 -67.205.240.0/23 23089 -67.205.242.0/23 174 -67.205.244.0/22 174 -67.205.248.0/22 174 -67.205.252.0/23 174 -67.205.254.0/24 23089 -67.205.255.0/24 174 -67.206.0.0/18 10405 -67.206.64.0/20 16399 -67.206.80.0/23 16399 -67.206.82.0/24 46242 -67.206.83.0/24 16399 -67.206.84.0/22 16399 -67.206.88.0/21 16399 -67.206.96.0/19 8025 -67.206.128.0/19 26857 -67.206.160.0/20 13415 -67.206.177.0/24 46569 -67.206.178.0/24 7752 -67.206.180.0/23 397000 -67.206.182.0/24 33005 -67.206.183.0/24 17164 -67.206.184.0/23 14993 -67.206.188.0/22 33005 -67.206.192.0/22 11992 -67.206.196.0/23 11992 -67.206.198.0/24 11992 -67.206.199.0/24 396377 -67.206.200.0/24 21559 -67.206.201.0/24 63240 -67.206.202.0/23 21559 -67.206.204.0/23 21559 -67.206.206.0/24 21559 -67.206.207.0/24 30294 -67.206.208.0/20 11992 -67.206.224.0/21 11992 -67.206.232.0/22 11992 -67.206.236.0/23 11992 -67.206.238.0/24 27213 -67.206.239.0/24 11992 -67.206.240.0/20 11992 -67.207.0.0/22 11481 -67.207.4.0/23 11481 -67.207.6.0/24 11481 -67.207.8.0/21 11481 -67.207.16.0/20 11481 -67.207.32.0/20 36103 -67.207.48.0/20 11676 -67.207.65.0/24 14061 -67.207.66.0/24 14061 -67.207.68.0/22 14061 -67.207.72.0/21 14061 -67.207.80.0/20 14061 -67.207.96.0/19 33544 -67.207.128.0/19 19994 -67.207.160.0/22 21769 -67.207.164.0/23 21769 -67.207.166.0/24 21769 -67.207.167.0/24 46261 -67.207.168.0/24 17252 -67.207.169.0/24 46261 -67.207.170.0/23 17252 -67.207.172.0/24 46261 -67.207.173.0/24 17252 -67.207.174.0/23 17252 -67.207.176.0/22 17252 -67.207.180.0/24 17252 -67.207.181.0/24 46261 -67.207.182.0/24 9009 -67.207.183.0/24 17252 -67.207.184.0/22 17252 -67.207.188.0/23 17252 -67.207.190.0/24 9009 -67.207.191.0/24 17252 -67.207.192.0/24 36352 -67.207.193.0/24 20454 -67.207.194.0/23 46261 -67.207.196.0/22 19816 -67.207.200.0/23 9009 -67.207.202.0/24 13332 -67.207.203.0/24 9009 -67.207.204.0/24 13332 -67.207.205.0/24 19816 -67.207.206.0/24 19816 -67.207.207.0/24 9009 -67.207.208.0/20 6130 -67.207.224.0/19 8025 -67.208.0.0/19 21724 -67.208.32.0/20 20021 -67.208.64.0/20 33597 -67.208.80.0/22 33597 -67.208.84.0/24 33597 -67.208.85.0/24 396205 -67.208.86.0/23 33597 -67.208.88.0/21 33597 -67.208.96.0/21 36687 -67.208.104.0/24 36687 -67.208.105.0/24 62642 -67.208.106.0/23 36687 -67.208.108.0/22 36687 -67.208.112.0/20 20202 -67.208.128.0/20 13649 -67.208.144.0/21 62 -67.208.152.0/22 62 -67.208.156.0/23 62 -67.208.158.0/23 22334 -67.208.160.0/22 11557 -67.208.164.0/23 13592 -67.208.166.0/24 21755 -67.208.167.0/24 17144 -67.208.168.0/23 21755 -67.208.170.0/23 11557 -67.208.172.0/22 11557 -67.208.176.0/21 21755 -67.208.184.0/22 21755 -67.208.188.0/24 21755 -67.208.189.0/24 46887 -67.208.190.0/23 46887 -67.208.192.0/20 21889 -67.208.208.0/20 23148 -67.208.224.0/22 6461 -67.208.228.0/24 6461 -67.208.229.0/24 22637 -67.208.230.0/24 22637 -67.208.231.0/24 6461 -67.208.232.0/23 6461 -67.208.234.0/24 22637 -67.208.235.0/24 6461 -67.208.236.0/22 6461 -67.208.240.0/24 6461 -67.208.241.0/24 22637 -67.208.242.0/23 6461 -67.208.244.0/22 6461 -67.208.248.0/21 6461 -67.209.0.0/19 33749 -67.209.32.0/24 395800 -67.209.33.0/24 22241 -67.209.46.0/23 22241 -67.209.48.0/24 33024 -67.209.49.0/24 22241 -67.209.50.0/24 22241 -67.209.64.0/19 11796 -67.209.96.0/20 12684 -67.209.112.0/20 55293 -67.209.128.0/20 21299 -67.209.144.0/22 21299 -67.209.148.0/24 21299 -67.209.149.0/24 35566 -67.209.150.0/23 21299 -67.209.152.0/21 21299 -67.209.160.0/20 22727 -67.209.176.0/20 25820 -67.209.192.0/20 21782 -67.209.208.0/21 21782 -67.209.216.0/22 20356 -67.209.220.0/22 21782 -67.209.224.0/20 12025 -67.209.240.0/20 17143 -67.210.16.0/20 26742 -67.210.32.0/20 11606 -67.210.48.0/23 32758 -67.210.50.0/23 27258 -67.210.52.0/22 395462 -67.210.56.0/22 27258 -67.210.60.0/23 27258 -67.210.62.0/23 394541 -67.210.64.0/24 7029 -67.210.65.0/24 33596 -67.210.66.0/23 7029 -67.210.68.0/22 7029 -67.210.72.0/21 7029 -67.210.80.0/20 16618 -67.210.96.0/19 15244 -67.210.144.0/20 17306 -67.210.160.0/20 812 -67.210.176.0/22 11976 -67.210.180.0/24 5638 -67.210.181.0/24 11976 -67.210.182.0/23 11976 -67.210.184.0/21 11976 -67.210.192.0/20 30583 -67.210.208.0/24 54818 -67.210.209.0/24 36031 -67.210.210.0/23 36031 -67.210.212.0/22 27272 -67.210.216.0/22 36031 -67.210.220.0/24 27272 -67.210.221.0/24 40341 -67.210.222.0/23 40341 -67.210.224.0/20 7819 -67.210.240.0/21 7819 -67.210.248.0/22 7819 -67.210.252.0/24 33346 -67.210.253.0/24 7819 -67.210.254.0/24 46562 -67.210.255.0/24 7819 -67.211.0.0/21 35985 -67.211.8.0/24 23412 -67.211.9.0/24 35985 -67.211.10.0/23 35985 -67.211.12.0/22 35985 -67.211.16.0/21 35985 -67.211.24.0/23 35985 -67.211.26.0/24 35985 -67.211.27.0/24 19833 -67.211.28.0/22 35985 -67.211.32.0/21 13354 -67.211.40.0/22 13354 -67.211.44.0/23 13354 -67.211.46.0/24 13354 -67.211.47.0/24 393398 -67.211.48.0/24 13354 -67.211.49.0/24 26405 -67.211.50.0/23 13354 -67.211.52.0/24 13354 -67.211.53.0/24 26405 -67.211.54.0/23 13354 -67.211.56.0/23 26405 -67.211.58.0/23 13354 -67.211.60.0/22 13354 -67.211.64.0/20 59371 -67.211.80.0/20 11711 -67.211.96.0/23 14537 -67.211.98.0/24 19905 -67.211.99.0/24 14537 -67.211.100.0/22 14537 -67.211.104.0/21 14537 -67.211.112.0/20 21570 -67.211.128.0/20 7795 -67.211.144.0/24 26161 -67.211.145.0/24 7795 -67.211.146.0/23 7795 -67.211.148.0/22 7795 -67.211.152.0/21 7795 -67.211.160.0/22 16617 -67.211.164.0/23 16617 -67.211.166.0/24 16617 -67.211.167.0/24 46331 -67.211.168.0/21 16617 -67.211.176.0/20 19526 -67.211.192.0/20 30158 -67.211.208.0/20 19318 -67.211.224.0/20 32880 -67.211.240.0/20 22581 -67.212.0.0/20 17216 -67.212.16.0/21 22598 -67.212.24.0/24 22598 -67.212.25.0/24 46849 -67.212.26.0/23 22598 -67.212.28.0/22 22598 -67.212.32.0/21 21565 -67.212.40.0/22 21565 -67.212.44.0/23 21565 -67.212.46.0/24 21565 -67.212.48.0/20 21565 -67.212.64.0/20 10929 -67.212.80.0/21 10929 -67.212.88.0/22 10929 -67.212.92.0/23 10929 -67.212.94.0/24 10929 -67.212.95.0/24 40470 -67.212.96.0/19 13855 -67.212.128.0/20 11274 -67.212.144.0/20 2734 -67.212.160.0/19 32475 -67.212.192.0/20 19381 -67.212.208.0/20 46208 -67.212.224.0/24 36351 -67.212.225.0/24 29854 -67.212.226.0/23 29854 -67.212.228.0/22 29854 -67.212.232.0/21 29854 -67.212.240.0/20 19331 -67.213.0.0/20 26864 -67.213.16.0/20 26760 -67.213.32.0/19 33647 -67.213.64.0/22 40028 -67.213.68.0/23 40028 -67.213.70.0/24 40028 -67.213.71.0/24 395570 -67.213.72.0/21 40028 -67.213.80.0/23 395570 -67.213.82.0/23 40028 -67.213.84.0/23 40028 -67.213.86.0/24 40028 -67.213.87.0/24 395570 -67.213.88.0/24 40028 -67.213.89.0/24 11715 -67.213.90.0/23 40028 -67.213.92.0/24 395570 -67.213.93.0/24 40028 -67.213.94.0/23 40028 -67.213.96.0/20 23184 -67.213.112.0/23 13537 -67.213.114.0/24 13537 -67.213.115.0/24 200366 -67.213.116.0/24 13537 -67.213.117.0/24 200366 -67.213.118.0/24 58964 -67.213.119.0/24 200494 -67.213.120.0/23 200366 -67.213.122.0/24 204472 -67.213.123.0/24 200366 -67.213.124.0/24 13537 -67.213.125.0/24 200366 -67.213.126.0/24 200366 -67.213.127.0/24 58964 -67.213.128.0/21 31849 -67.213.136.0/23 394434 -67.213.140.0/22 132586 -67.213.144.0/20 35878 -67.213.160.0/24 20081 -67.213.161.0/24 22969 -67.213.162.0/23 22969 -67.213.164.0/22 22969 -67.213.168.0/22 22969 -67.213.172.0/23 31993 -67.213.174.0/23 6461 -67.213.176.0/24 26749 -67.213.184.0/22 20340 -67.213.188.0/23 20340 -67.213.190.0/24 26749 -67.213.191.0/24 20340 -67.213.192.0/23 6528 -67.213.194.0/24 6528 -67.213.196.0/22 6528 -67.213.200.0/22 6528 -67.213.205.0/24 6528 -67.213.207.0/24 6528 -67.213.208.0/23 36351 -67.213.210.0/24 32780 -67.213.211.0/24 36351 -67.213.212.0/24 32780 -67.213.214.0/23 36351 -67.213.216.0/23 36351 -67.213.219.0/24 29854 -67.213.220.0/23 13213 -67.213.222.0/24 13213 -67.213.223.0/24 36351 -67.213.224.0/19 30432 -67.214.0.0/19 7029 -67.214.32.0/20 40336 -67.214.50.0/23 13996 -67.214.64.0/24 11915 -67.214.66.0/23 11915 -67.214.68.0/22 11915 -67.214.72.0/21 11915 -67.214.80.0/20 11915 -67.214.96.0/20 22747 -67.214.112.0/23 12129 -67.214.114.0/24 55269 -67.214.115.0/24 12129 -67.214.116.0/22 12129 -67.214.120.0/22 12129 -67.214.124.0/23 12129 -67.214.126.0/24 12129 -67.214.127.0/24 55293 -67.214.128.0/20 21886 -67.214.150.0/23 4459 -67.214.152.0/21 4459 -67.214.160.0/19 12260 -67.214.192.0/20 30612 -67.214.212.0/24 36351 -67.214.223.0/24 36351 -67.214.224.0/19 29933 -67.215.0.0/20 36666 -67.215.16.0/20 4474 -67.215.32.0/20 15305 -67.215.48.0/20 15102 -67.215.64.0/23 36692 -67.215.66.0/24 36692 -67.215.67.0/24 16509 -67.215.68.0/23 36692 -67.215.70.0/24 36692 -67.215.71.0/24 16509 -67.215.73.0/24 36692 -67.215.74.0/23 36692 -67.215.76.0/24 36692 -67.215.78.0/24 36692 -67.215.80.0/24 36692 -67.215.82.0/23 36692 -67.215.84.0/22 36692 -67.215.88.0/21 36692 -67.215.96.0/23 18895 -67.215.98.0/23 46868 -67.215.100.0/22 18895 -67.215.104.0/23 18895 -67.215.106.0/24 46868 -67.215.107.0/24 18895 -67.215.108.0/22 25877 -67.215.112.0/21 45459 -67.215.128.0/19 35843 -67.215.160.0/20 27229 -67.215.176.0/23 27229 -67.215.178.0/24 27229 -67.215.179.0/24 12180 -67.215.180.0/24 12180 -67.215.181.0/24 27229 -67.215.182.0/24 12180 -67.215.183.0/24 27229 -67.215.184.0/23 27229 -67.215.186.0/24 12180 -67.215.187.0/24 27229 -67.215.188.0/23 27229 -67.215.190.0/24 12180 -67.215.191.0/24 27229 -67.215.192.0/20 13657 -67.215.208.0/20 27202 -67.215.224.0/19 8100 -67.216.0.0/20 7828 -67.216.16.0/22 32654 -67.216.20.0/24 26878 -67.216.21.0/24 53253 -67.216.22.0/23 26878 -67.216.24.0/24 40579 -67.216.25.0/24 13758 -67.216.26.0/23 40579 -67.216.28.0/22 32654 -67.216.32.0/19 395965 -67.216.64.0/21 17378 -67.216.72.0/22 17378 -67.216.76.0/23 17378 -67.216.78.0/24 40085 -67.216.79.0/24 17378 -67.216.80.0/21 40824 -67.216.88.0/23 40824 -67.216.90.0/23 35415 -67.216.96.0/20 23158 -67.216.112.0/20 14559 -67.216.128.0/19 22646 -67.216.160.0/20 19271 -67.216.176.0/20 46746 -67.216.192.0/19 25820 -67.216.224.0/21 15960 -67.216.232.0/23 15960 -67.216.234.0/24 15960 -67.216.239.0/24 15960 -67.216.240.0/20 23158 -67.217.0.0/22 33700 -67.217.4.0/22 11232 -67.217.8.0/21 4181 -67.217.16.0/23 4181 -67.217.18.0/23 11232 -67.217.20.0/22 11232 -67.217.25.0/24 15198 -67.217.26.0/24 26925 -67.217.27.0/24 36392 -67.217.28.0/22 11232 -67.217.32.0/20 22458 -67.217.48.0/20 19318 -67.217.64.0/21 16815 -67.217.72.0/22 16815 -67.217.76.0/23 16815 -67.217.80.0/23 16815 -67.217.83.0/24 16815 -67.217.84.0/22 16815 -67.217.88.0/23 16815 -67.217.92.0/22 16815 -67.217.96.0/20 27382 -67.217.112.0/21 13536 -67.217.120.0/23 13536 -67.217.122.0/24 19285 -67.217.123.0/24 26169 -67.217.124.0/22 36316 -67.217.128.0/24 27172 -67.217.129.0/24 7029 -67.217.130.0/23 7029 -67.217.132.0/22 7029 -67.217.136.0/22 7029 -67.217.140.0/24 7029 -67.217.141.0/24 22904 -67.217.142.0/23 7029 -67.217.144.0/20 19021 -67.217.160.0/21 29944 -67.217.168.0/22 29944 -67.217.172.0/23 29944 -67.217.174.0/24 17223 -67.217.175.0/24 29944 -67.217.176.0/20 29944 -67.217.192.0/20 17049 -67.217.208.0/20 32592 -67.217.224.0/19 7381 -67.218.0.0/24 10765 -67.218.1.0/24 397127 -67.218.2.0/24 10765 -67.218.3.0/24 396024 -67.218.4.0/23 64267 -67.218.6.0/24 393780 -67.218.7.0/24 396866 -67.218.8.0/23 397531 -67.218.10.0/24 10765 -67.218.11.0/24 19712 -67.218.12.0/23 10765 -67.218.14.0/24 397900 -67.218.15.0/24 3365 -67.218.16.0/22 12042 -67.218.20.0/23 12042 -67.218.23.0/24 12042 -67.218.28.0/24 23012 -67.218.32.0/20 26326 -67.218.48.0/20 23657 -67.218.64.0/20 30110 -67.218.80.0/20 22742 -67.218.96.0/20 11404 -67.218.112.0/22 11404 -67.218.116.0/24 11404 -67.218.117.0/24 33011 -67.218.118.0/23 11404 -67.218.120.0/21 11404 -67.218.128.0/19 25820 -67.218.160.0/21 14793 -67.218.168.0/22 32040 -67.218.172.0/24 32040 -67.218.173.0/24 14793 -67.218.174.0/23 14793 -67.218.176.0/21 14793 -67.218.184.0/22 14793 -67.218.188.0/24 14793 -67.218.189.0/24 22504 -67.218.190.0/24 22504 -67.218.191.0/24 27221 -67.218.192.0/20 23336 -67.218.208.0/23 396145 -67.218.210.0/24 396145 -67.218.212.0/23 15123 -67.218.214.0/23 395857 -67.218.216.0/24 26984 -67.218.217.0/24 46320 -67.218.218.0/23 23314 -67.218.220.0/23 20194 -67.218.222.0/24 395844 -67.218.223.0/24 46320 -67.219.0.0/20 32335 -67.219.16.0/21 21769 -67.219.24.0/23 54103 -67.219.26.0/24 21769 -67.219.27.0/24 54103 -67.219.28.0/24 54103 -67.219.29.0/24 21769 -67.219.30.0/23 54103 -67.219.32.0/19 26914 -67.219.64.0/19 18812 -67.219.112.0/23 26077 -67.219.114.0/24 26077 -67.219.116.0/22 26077 -67.219.120.0/21 26077 -67.219.144.0/21 54455 -67.219.152.0/21 31957 -67.219.160.0/20 11067 -67.219.176.0/22 36591 -67.219.180.0/24 16509 -67.219.181.0/24 46092 -67.219.182.0/23 395348 -67.219.189.0/24 394840 -67.219.191.0/24 394840 -67.219.192.0/21 19653 -67.219.200.0/22 19653 -67.219.204.0/24 26453 -67.219.205.0/24 19653 -67.219.206.0/23 19653 -67.219.224.0/20 20328 -67.219.240.0/21 26282 -67.219.248.0/22 26282 -67.219.252.0/23 26282 -67.220.0.0/19 10242 -67.220.32.0/20 11084 -67.220.48.0/24 17054 -67.220.50.0/23 17054 -67.220.53.0/24 16715 -67.220.56.0/24 16715 -67.220.64.0/19 33333 -67.220.96.0/19 20141 -67.220.128.0/21 3257 -67.220.136.0/22 3257 -67.220.140.0/23 3257 -67.220.142.0/23 20940 -67.220.144.0/21 3257 -67.220.152.0/22 3257 -67.220.156.0/23 3257 -67.220.158.0/24 3257 -67.220.159.0/24 3561 -67.220.160.0/20 35985 -67.220.176.0/20 55081 -67.220.192.0/19 18450 -67.221.0.0/24 22702 -67.221.1.0/24 14740 -67.221.2.0/24 7902 -67.221.3.0/24 22702 -67.221.4.0/23 7902 -67.221.6.0/24 396103 -67.221.7.0/24 7902 -67.221.8.0/22 22702 -67.221.12.0/24 22702 -67.221.13.0/24 7902 -67.221.14.0/24 22702 -67.221.15.0/24 7902 -67.221.16.0/24 46996 -67.221.24.0/24 46996 -67.221.32.0/24 395647 -67.221.35.0/24 395647 -67.221.36.0/23 395647 -67.221.40.0/21 11979 -67.221.48.0/20 1403 -67.221.64.0/19 13796 -67.221.96.0/19 7795 -67.221.128.0/20 40317 -67.221.144.0/20 46882 -67.221.160.0/21 23342 -67.221.168.0/22 23342 -67.221.172.0/23 23342 -67.221.174.0/24 36080 -67.221.175.0/24 23342 -67.221.176.0/22 11403 -67.221.180.0/24 11403 -67.221.181.0/24 57624 -67.221.182.0/23 11403 -67.221.184.0/21 11403 -67.221.192.0/24 26400 -67.221.193.0/24 62943 -67.221.194.0/23 62943 -67.221.196.0/23 395040 -67.221.198.0/24 395040 -67.221.199.0/24 62943 -67.221.200.0/24 62943 -67.221.201.0/24 10750 -67.221.202.0/23 62943 -67.221.204.0/23 62943 -67.221.206.0/24 62943 -67.221.207.0/24 26400 -67.221.208.0/22 18892 -67.221.212.0/22 62943 -67.221.216.0/21 62943 -67.221.224.0/20 27467 -67.221.240.0/22 8038 -67.221.245.0/24 15562 -67.221.248.0/23 8038 -67.221.250.0/24 8038 -67.221.251.0/24 62529 -67.221.254.0/24 8038 -67.222.0.0/19 63410 -67.222.32.0/19 46606 -67.222.64.0/19 21554 -67.222.96.0/20 33494 -67.222.112.0/20 31864 -67.222.128.0/21 393398 -67.222.136.0/22 393398 -67.222.140.0/24 30277 -67.222.141.0/24 393398 -67.222.142.0/23 393398 -67.222.144.0/20 393398 -67.222.161.0/24 46698 -67.222.164.0/24 54119 -67.222.166.0/24 46698 -67.222.170.0/23 54119 -67.222.172.0/22 46698 -67.222.180.0/23 54119 -67.222.192.0/20 16604 -67.222.208.0/20 32382 -67.222.224.0/20 23205 -67.222.240.0/24 27345 -67.222.242.0/23 18820 -67.222.244.0/22 397068 -67.222.252.0/24 62715 -67.222.255.0/24 62715 -67.223.0.0/19 22051 -67.223.32.0/19 30510 -67.223.64.0/19 18705 -67.223.96.0/21 30176 -67.223.104.0/22 30176 -67.223.108.0/24 30176 -67.223.109.0/24 26155 -67.223.110.0/23 30176 -67.223.112.0/20 15189 -67.223.128.0/19 15321 -67.223.160.0/20 21803 -67.223.192.0/22 53956 -67.223.196.0/24 6461 -67.223.197.0/24 46632 -67.223.198.0/23 46632 -67.223.200.0/24 46632 -67.223.201.0/24 19201 -67.223.202.0/23 62943 -67.223.204.0/23 62943 -67.223.206.0/24 62943 -67.223.207.0/24 53956 -67.223.208.0/21 62943 -67.223.216.0/24 62943 -67.223.217.0/24 53956 -67.223.218.0/24 46632 -67.223.219.0/24 3257 -67.223.220.0/23 53956 -67.223.222.0/24 53956 -67.223.223.0/24 3257 -67.223.224.0/19 29873 -67.224.0.0/18 7029 -67.224.64.0/20 46627 -67.224.80.0/20 812 -67.224.96.0/20 5555 -67.224.112.0/23 35894 -67.224.114.0/24 35894 -67.224.116.0/24 35894 -67.224.118.0/23 35894 -67.224.120.0/24 35894 -67.224.122.0/23 35894 -67.224.124.0/22 35894 -67.224.128.0/17 10396 -67.225.0.0/17 803 -67.225.128.0/17 32244 -67.226.0.0/24 25977 -67.226.2.0/23 25977 -67.226.4.0/22 25977 -67.226.8.0/21 25977 -67.226.16.0/20 25977 -67.226.32.0/19 25977 -67.226.64.0/18 25977 -67.226.128.0/19 20161 -67.226.160.0/20 20161 -67.226.176.0/21 20161 -67.226.184.0/22 20161 -67.226.188.0/24 20161 -67.226.189.0/24 22339 -67.226.190.0/23 20161 -67.226.192.0/20 13768 -67.226.208.0/24 394102 -67.226.209.0/24 395725 -67.226.210.0/23 395486 -67.226.212.0/22 23539 -67.226.216.0/24 6461 -67.226.217.0/24 396040 -67.226.218.0/24 396510 -67.226.219.0/24 64267 -67.226.220.0/24 7224 -67.226.221.0/24 14618 -67.226.222.0/24 7224 -67.226.223.0/24 16509 -67.226.224.0/19 40304 -67.227.0.0/23 17252 -67.227.2.0/24 17252 -67.227.3.0/24 46261 -67.227.4.0/24 46261 -67.227.5.0/24 17252 -67.227.6.0/24 42831 -67.227.7.0/24 46261 -67.227.8.0/23 46261 -67.227.10.0/23 17252 -67.227.12.0/22 17252 -67.227.16.0/24 46261 -67.227.17.0/24 17252 -67.227.18.0/24 19437 -67.227.19.0/24 17252 -67.227.20.0/23 21769 -67.227.22.0/24 21769 -67.227.23.0/24 25653 -67.227.24.0/24 19437 -67.227.25.0/24 46261 -67.227.26.0/24 21769 -67.227.27.0/24 8038 -67.227.28.0/23 23470 -67.227.30.0/24 60558 -67.227.31.0/24 9009 -67.227.32.0/21 21769 -67.227.40.0/24 21769 -67.227.41.0/24 46261 -67.227.42.0/23 21769 -67.227.44.0/22 46261 -67.227.48.0/24 54103 -67.227.49.0/24 21769 -67.227.50.0/23 54103 -67.227.52.0/24 21769 -67.227.53.0/24 54103 -67.227.54.0/23 54103 -67.227.56.0/24 21769 -67.227.57.0/24 54103 -67.227.58.0/24 54103 -67.227.59.0/24 21769 -67.227.60.0/23 54103 -67.227.62.0/24 21769 -67.227.63.0/24 54103 -67.227.64.0/24 25653 -67.227.65.0/24 21769 -67.227.66.0/23 21769 -67.227.68.0/23 21769 -67.227.70.0/24 21769 -67.227.71.0/24 8038 -67.227.72.0/22 21769 -67.227.76.0/24 46261 -67.227.77.0/24 21769 -67.227.78.0/24 9009 -67.227.79.0/24 23470 -67.227.80.0/23 21769 -67.227.82.0/24 21769 -67.227.83.0/24 46261 -67.227.84.0/22 21769 -67.227.88.0/24 21769 -67.227.89.0/24 9009 -67.227.90.0/23 21769 -67.227.92.0/22 21769 -67.227.96.0/21 46261 -67.227.104.0/23 46261 -67.227.106.0/24 21769 -67.227.107.0/24 46261 -67.227.108.0/23 9009 -67.227.110.0/23 46261 -67.227.112.0/23 21769 -67.227.114.0/24 21769 -67.227.115.0/24 8038 -67.227.116.0/22 21769 -67.227.120.0/21 21769 -67.227.128.0/17 32244 -67.228.0.0/16 36351 -67.229.0.0/16 35908 -67.230.0.0/19 23520 -67.230.32.0/19 30689 -67.230.64.0/20 30689 -67.230.80.0/24 23520 -67.230.81.0/24 36423 -67.230.82.0/23 23520 -67.230.84.0/24 12206 -67.230.85.0/24 23520 -67.230.86.0/23 62627 -67.230.88.0/24 62627 -67.230.89.0/24 23520 -67.230.90.0/24 23520 -67.230.91.0/24 62627 -67.230.92.0/24 62627 -67.230.93.0/24 23520 -67.230.94.0/24 62627 -67.230.95.0/24 23520 -67.230.96.0/20 23520 -67.230.112.0/23 23520 -67.230.114.0/24 23520 -67.230.115.0/24 393573 -67.230.116.0/24 62627 -67.230.117.0/24 23520 -67.230.118.0/24 62627 -67.230.119.0/24 23520 -67.230.120.0/22 23520 -67.230.124.0/23 23520 -67.230.126.0/24 6639 -67.230.127.0/24 23520 -67.230.128.0/19 6407 -67.230.160.0/19 25820 -67.230.192.0/21 13555 -67.230.200.0/23 6461 -67.230.202.0/23 13555 -67.230.204.0/24 395302 -67.230.205.0/24 13555 -67.230.206.0/23 13555 -67.230.213.0/24 6461 -67.230.224.0/19 36374 -67.231.0.0/20 12130 -67.231.16.0/20 54643 -67.231.32.0/20 23404 -67.231.48.0/23 30444 -67.231.50.0/24 30444 -67.231.51.0/24 209 -67.231.52.0/22 30444 -67.231.56.0/21 30444 -67.231.64.0/20 27262 -67.231.80.0/23 13498 -67.231.96.0/20 40728 -67.231.112.0/20 32634 -67.231.131.0/24 20308 -67.231.144.0/21 26211 -67.231.152.0/22 22843 -67.231.156.0/23 22843 -67.231.158.0/23 26211 -67.231.160.0/20 19212 -67.231.176.0/21 3549 -67.231.184.0/24 26556 -67.231.185.0/24 40676 -67.231.186.0/24 40676 -67.231.187.0/24 22625 -67.231.188.0/22 22625 -67.231.192.0/20 23314 -67.231.208.0/20 812 -67.231.224.0/20 16948 -67.231.240.0/20 40244 -67.232.0.0/19 209 -67.232.32.0/20 2379 -67.232.48.0/20 209 -67.232.64.0/20 14921 -67.232.80.0/20 13787 -67.232.96.0/19 209 -67.232.128.0/19 209 -67.232.160.0/21 14921 -67.232.168.0/23 13787 -67.232.170.0/24 209 -67.232.171.0/24 13787 -67.232.172.0/22 13787 -67.232.176.0/20 209 -67.232.192.0/20 209 -67.232.208.0/22 209 -67.232.212.0/22 32855 -67.232.216.0/24 39942 -67.232.217.0/24 32855 -67.232.218.0/23 32855 -67.232.220.0/22 6222 -67.232.224.0/21 209 -67.232.232.0/21 32855 -67.232.240.0/21 2379 -67.232.248.0/22 2379 -67.232.252.0/24 209 -67.232.253.0/24 2379 -67.232.254.0/23 2379 -67.233.0.0/18 209 -67.233.64.0/19 209 -67.233.96.0/23 209 -67.233.98.0/24 209 -67.233.99.0/24 14905 -67.233.100.0/22 209 -67.233.104.0/21 209 -67.233.112.0/20 209 -67.233.128.0/18 209 -67.233.192.0/19 2379 -67.233.224.0/20 17402 -67.233.240.0/21 17402 -67.233.248.0/21 209 -67.234.0.0/17 209 -67.234.128.0/18 209 -67.234.192.0/19 209 -67.234.224.0/20 32855 -67.234.240.0/20 209 -67.235.0.0/20 209 -67.235.16.0/20 11398 -67.235.32.0/20 209 -67.235.48.0/23 14921 -67.235.50.0/24 20423 -67.235.51.0/24 14921 -67.235.52.0/22 209 -67.235.56.0/22 209 -67.235.60.0/24 2379 -67.235.61.0/24 32855 -67.235.62.0/23 32855 -67.235.64.0/20 13787 -67.235.80.0/20 209 -67.235.96.0/20 13787 -67.235.112.0/20 209 -67.235.128.0/18 209 -67.235.192.0/19 209 -67.235.224.0/20 209 -67.235.240.0/22 209 -67.235.244.0/24 4284 -67.235.245.0/24 209 -67.235.246.0/23 209 -67.235.248.0/21 209 -67.236.0.0/20 13787 -67.236.16.0/20 4283 -67.236.32.0/19 209 -67.236.64.0/18 209 -67.236.128.0/17 209 -67.237.0.0/18 209 -67.237.64.0/19 209 -67.237.96.0/20 14921 -67.237.112.0/20 2379 -67.237.128.0/22 32855 -67.237.132.0/22 14921 -67.237.136.0/21 14921 -67.237.144.0/21 32855 -67.237.152.0/22 32855 -67.237.156.0/24 6103 -67.237.157.0/24 32855 -67.237.158.0/23 32855 -67.237.160.0/19 209 -67.237.192.0/20 13787 -67.237.208.0/23 13787 -67.237.210.0/24 209 -67.237.211.0/24 30089 -67.237.212.0/22 13787 -67.237.216.0/21 13787 -67.237.224.0/19 14921 -67.238.0.0/19 209 -67.238.32.0/21 32855 -67.238.40.0/23 32855 -67.238.42.0/23 209 -67.238.44.0/23 32855 -67.238.46.0/24 32855 -67.238.47.0/24 209 -67.238.48.0/22 209 -67.238.52.0/23 2379 -67.238.54.0/24 20472 -67.238.55.0/24 2379 -67.238.56.0/24 209 -67.238.57.0/24 2379 -67.238.58.0/23 2379 -67.238.60.0/24 2379 -67.238.61.0/24 209 -67.238.62.0/23 2379 -67.238.64.0/24 2379 -67.238.65.0/24 209 -67.238.66.0/23 2379 -67.238.68.0/23 2379 -67.238.70.0/24 2379 -67.238.71.0/24 25628 -67.238.72.0/21 6222 -67.238.80.0/21 5778 -67.238.88.0/22 5778 -67.238.92.0/23 5778 -67.238.94.0/24 5778 -67.238.95.0/24 22350 -67.238.96.0/21 11398 -67.238.104.0/22 209 -67.238.108.0/24 209 -67.238.109.0/24 11398 -67.238.110.0/23 11398 -67.238.112.0/20 209 -67.238.128.0/17 209 -67.239.0.0/18 209 -67.239.64.0/24 26013 -67.239.65.0/24 2379 -67.239.66.0/23 2379 -67.239.68.0/22 2379 -67.239.72.0/21 16718 -67.239.80.0/20 32855 -67.239.96.0/19 209 -67.239.128.0/21 209 -67.239.136.0/21 5778 -67.239.144.0/21 5778 -67.239.152.0/23 209 -67.239.154.0/24 209 -67.239.155.0/24 18494 -67.239.156.0/23 4282 -67.239.158.0/24 209 -67.239.159.0/24 2379 -67.239.160.0/20 209 -67.239.176.0/21 209 -67.239.184.0/21 5778 -67.239.192.0/19 11398 -67.239.224.0/20 6222 -67.239.240.0/23 2379 -67.239.242.0/24 2379 -67.239.243.0/24 209 -67.239.244.0/24 209 -67.239.245.0/24 2379 -67.239.246.0/24 2379 -67.239.247.0/24 13363 -67.239.248.0/21 2379 -67.240.0.0/15 11351 -67.242.0.0/16 11351 -67.243.0.0/16 12271 -67.244.0.0/19 12271 -67.244.32.0/19 11351 -67.244.64.0/18 12271 -67.244.128.0/17 11351 -67.245.0.0/16 12271 -67.246.0.0/16 11351 -67.247.0.0/18 12271 -67.247.64.0/19 11351 -67.247.96.0/19 12271 -67.247.128.0/17 11351 -67.248.0.0/15 11351 -67.250.0.0/16 12271 -67.251.0.0/17 11351 -67.251.128.0/19 12271 -67.251.160.0/19 11351 -67.251.192.0/18 12271 -67.252.0.0/15 11351 -67.254.0.0/16 12271 -67.255.0.0/16 11351 -68.0.0.0/12 22773 -68.16.0.0/21 6389 -68.16.8.0/21 13368 -68.16.16.0/23 6389 -68.16.18.0/24 53411 -68.16.19.0/24 6389 -68.16.20.0/22 6389 -68.16.24.0/23 6389 -68.16.26.0/24 40844 -68.16.27.0/24 6389 -68.16.28.0/24 6389 -68.16.29.0/24 30424 -68.16.30.0/23 6389 -68.16.32.0/19 6389 -68.16.64.0/20 6389 -68.16.80.0/24 6389 -68.16.81.0/24 2386 -68.16.82.0/23 6389 -68.16.84.0/22 6389 -68.16.88.0/21 6389 -68.16.96.0/19 7018 -68.16.128.0/21 7018 -68.16.136.0/22 6389 -68.16.140.0/22 7018 -68.16.144.0/20 7018 -68.16.160.0/21 7018 -68.16.168.0/21 6389 -68.16.176.0/20 7018 -68.16.192.0/21 7018 -68.16.200.0/22 7018 -68.16.204.0/22 6389 -68.16.208.0/21 6389 -68.16.216.0/22 7018 -68.16.220.0/22 6389 -68.16.224.0/21 6389 -68.16.232.0/21 7018 -68.16.240.0/20 7018 -68.17.0.0/18 6389 -68.17.64.0/21 6389 -68.17.72.0/24 11591 -68.17.73.0/24 6389 -68.17.74.0/24 11591 -68.17.75.0/24 6389 -68.17.76.0/22 6389 -68.17.80.0/20 6389 -68.17.96.0/23 7018 -68.17.98.0/23 6389 -68.17.100.0/22 7018 -68.17.104.0/22 6389 -68.17.108.0/22 7018 -68.17.112.0/20 7018 -68.17.128.0/17 6389 -68.20.0.0/16 7018 -68.21.0.0/18 7018 -68.21.64.0/19 7018 -68.21.96.0/20 7018 -68.21.112.0/22 7018 -68.21.116.0/24 20315 -68.21.117.0/24 7018 -68.21.118.0/23 7018 -68.21.120.0/21 7018 -68.21.128.0/18 7018 -68.21.192.0/21 7018 -68.21.200.0/22 7018 -68.21.204.0/23 7018 -68.21.206.0/24 46776 -68.21.207.0/24 7018 -68.21.208.0/23 7018 -68.21.210.0/23 53617 -68.21.212.0/22 7018 -68.21.216.0/22 7018 -68.21.220.0/24 7018 -68.21.221.0/24 2386 -68.21.222.0/23 7018 -68.21.224.0/19 7018 -68.22.0.0/22 7018 -68.22.4.0/24 7018 -68.22.5.0/24 26078 -68.22.6.0/23 7018 -68.22.8.0/21 7018 -68.22.16.0/20 7018 -68.22.32.0/19 7018 -68.22.64.0/18 7018 -68.22.128.0/20 7018 -68.22.144.0/21 7018 -68.22.152.0/22 7018 -68.22.156.0/24 7018 -68.22.157.0/24 26777 -68.22.158.0/23 7018 -68.22.160.0/20 7018 -68.22.176.0/21 7018 -68.22.184.0/23 7018 -68.22.186.0/24 7018 -68.22.187.0/24 23028 -68.22.188.0/22 7018 -68.22.192.0/18 7018 -68.23.0.0/20 7018 -68.23.16.0/22 7018 -68.23.20.0/24 7018 -68.23.21.0/24 35852 -68.23.22.0/23 7018 -68.23.24.0/21 7018 -68.23.32.0/20 7018 -68.23.48.0/21 7018 -68.23.56.0/23 7018 -68.23.58.0/24 7018 -68.23.59.0/24 18641 -68.23.60.0/22 7018 -68.23.64.0/18 7018 -68.23.128.0/18 7018 -68.23.192.0/21 7018 -68.23.200.0/23 7018 -68.23.202.0/23 26306 -68.23.204.0/22 7018 -68.23.208.0/20 7018 -68.23.224.0/19 7018 -68.24.0.0/18 1239 -68.24.64.0/21 10507 -68.24.72.0/24 1239 -68.24.73.0/24 10507 -68.24.74.0/23 1239 -68.24.76.0/22 1239 -68.24.80.0/21 1239 -68.24.88.0/22 1239 -68.24.92.0/24 1239 -68.24.93.0/24 10507 -68.24.94.0/23 1239 -68.24.96.0/19 1239 -68.24.128.0/23 1239 -68.24.130.0/24 1239 -68.24.131.0/24 10507 -68.24.132.0/22 1239 -68.24.136.0/21 1239 -68.24.144.0/20 1239 -68.24.160.0/19 1239 -68.24.192.0/21 3651 -68.24.200.0/22 3651 -68.24.204.0/22 10507 -68.24.208.0/24 10507 -68.24.209.0/24 1239 -68.24.210.0/23 1239 -68.24.212.0/22 1239 -68.24.216.0/21 1239 -68.24.224.0/19 1239 -68.25.0.0/21 3651 -68.25.8.0/21 10507 -68.25.16.0/21 10507 -68.25.24.0/21 3651 -68.25.32.0/22 3651 -68.25.36.0/22 10507 -68.25.40.0/21 3651 -68.25.48.0/20 3651 -68.25.64.0/18 3651 -68.25.128.0/20 10507 -68.25.144.0/20 3651 -68.25.160.0/19 3651 -68.25.192.0/20 3651 -68.25.208.0/20 10507 -68.25.224.0/20 3651 -68.25.240.0/22 3651 -68.25.244.0/22 10507 -68.25.248.0/21 10507 -68.26.0.0/15 10507 -68.28.0.0/19 10507 -68.28.32.0/24 1239 -68.28.33.0/24 10507 -68.28.34.0/24 3651 -68.28.35.0/24 1239 -68.28.36.0/24 1239 -68.28.37.0/24 3651 -68.28.38.0/24 10507 -68.28.39.0/24 1239 -68.28.40.0/24 1239 -68.28.41.0/24 10507 -68.28.42.0/24 10507 -68.28.43.0/24 1239 -68.28.44.0/23 1239 -68.28.46.0/24 1239 -68.28.47.0/24 3651 -68.28.48.0/24 1239 -68.28.49.0/24 3651 -68.28.50.0/23 10507 -68.28.52.0/23 10507 -68.28.54.0/23 1239 -68.28.56.0/24 1239 -68.28.57.0/24 3651 -68.28.58.0/23 10507 -68.28.60.0/23 10507 -68.28.62.0/23 1239 -68.28.64.0/23 1239 -68.28.66.0/24 1239 -68.28.67.0/24 3651 -68.28.68.0/24 3651 -68.28.69.0/24 1239 -68.28.70.0/23 1239 -68.28.72.0/24 1239 -68.28.73.0/24 10507 -68.28.74.0/24 10507 -68.28.75.0/24 1239 -68.28.76.0/22 1239 -68.28.80.0/24 1239 -68.28.81.0/24 3651 -68.28.82.0/23 10507 -68.28.84.0/23 10507 -68.28.86.0/23 1239 -68.28.88.0/24 1239 -68.28.89.0/24 3651 -68.28.90.0/23 10507 -68.28.92.0/23 10507 -68.28.94.0/23 1239 -68.28.96.0/22 1239 -68.28.100.0/24 10507 -68.28.101.0/24 1239 -68.28.102.0/24 1239 -68.28.103.0/24 10507 -68.28.104.0/23 3651 -68.28.106.0/23 1239 -68.28.108.0/23 1239 -68.28.110.0/24 1239 -68.28.111.0/24 3651 -68.28.112.0/24 1239 -68.28.113.0/24 3651 -68.28.114.0/23 10507 -68.28.116.0/23 10507 -68.28.118.0/23 1239 -68.28.120.0/24 1239 -68.28.121.0/24 3651 -68.28.122.0/23 10507 -68.28.124.0/23 10507 -68.28.126.0/23 1239 -68.28.128.0/24 1239 -68.28.129.0/24 10507 -68.28.130.0/23 1239 -68.28.132.0/24 1239 -68.28.133.0/24 10507 -68.28.134.0/23 1239 -68.28.136.0/21 1239 -68.28.144.0/24 1239 -68.28.145.0/24 3651 -68.28.146.0/23 10507 -68.28.148.0/24 10507 -68.28.149.0/24 1239 -68.28.150.0/23 1239 -68.28.152.0/24 1239 -68.28.153.0/24 3651 -68.28.154.0/23 10507 -68.28.156.0/24 10507 -68.28.157.0/24 1239 -68.28.158.0/23 1239 -68.28.160.0/23 1239 -68.28.162.0/24 10507 -68.28.163.0/24 1239 -68.28.164.0/24 1239 -68.28.165.0/24 10507 -68.28.166.0/23 1239 -68.28.168.0/23 3651 -68.28.170.0/23 1239 -68.28.172.0/22 1239 -68.28.176.0/24 1239 -68.28.177.0/24 3651 -68.28.178.0/23 10507 -68.28.180.0/23 10507 -68.28.182.0/23 1239 -68.28.184.0/24 1239 -68.28.185.0/24 3651 -68.28.186.0/23 10507 -68.28.188.0/23 10507 -68.28.190.0/23 1239 -68.28.192.0/24 10507 -68.28.193.0/24 1239 -68.28.194.0/23 10507 -68.28.196.0/24 10507 -68.28.197.0/24 1239 -68.28.198.0/24 10507 -68.28.199.0/24 1239 -68.28.200.0/23 10507 -68.28.202.0/24 10507 -68.28.203.0/24 1239 -68.28.204.0/22 1239 -68.28.208.0/22 10507 -68.28.212.0/24 10507 -68.28.213.0/24 1239 -68.28.214.0/24 10507 -68.28.215.0/24 1239 -68.28.216.0/23 10507 -68.28.218.0/24 1239 -68.28.219.0/24 10507 -68.28.220.0/24 1239 -68.28.221.0/24 10507 -68.28.222.0/23 1239 -68.28.224.0/21 1239 -68.28.232.0/22 1239 -68.28.236.0/24 10507 -68.28.237.0/24 1239 -68.28.238.0/24 1239 -68.28.239.0/24 10507 -68.28.240.0/24 1239 -68.28.241.0/24 3651 -68.28.242.0/23 10507 -68.28.244.0/24 10507 -68.28.245.0/24 1239 -68.28.246.0/23 1239 -68.28.248.0/24 1239 -68.28.249.0/24 3651 -68.28.250.0/23 10507 -68.28.252.0/24 10507 -68.28.253.0/24 1239 -68.28.254.0/23 1239 -68.29.0.0/19 3651 -68.29.32.0/20 3651 -68.29.48.0/20 1239 -68.29.64.0/20 3651 -68.29.80.0/20 1239 -68.29.96.0/19 10507 -68.29.128.0/21 10507 -68.29.136.0/21 1239 -68.29.144.0/21 1239 -68.29.152.0/21 10507 -68.29.160.0/20 10507 -68.29.176.0/22 10507 -68.29.180.0/22 1239 -68.29.184.0/21 1239 -68.29.192.0/20 1239 -68.29.208.0/20 10507 -68.29.224.0/19 1239 -68.30.0.0/21 10507 -68.30.8.0/24 10507 -68.30.9.0/24 1239 -68.30.10.0/23 1239 -68.30.12.0/22 1239 -68.30.16.0/20 1239 -68.30.32.0/19 1239 -68.30.64.0/18 1239 -68.30.128.0/21 1239 -68.30.136.0/22 1239 -68.30.140.0/23 1239 -68.30.142.0/24 1239 -68.30.143.0/24 10507 -68.30.144.0/20 1239 -68.30.160.0/19 1239 -68.30.192.0/18 1239 -68.31.0.0/22 10507 -68.31.4.0/23 10507 -68.31.6.0/23 1239 -68.31.8.0/21 10507 -68.31.16.0/23 10507 -68.31.18.0/23 1239 -68.31.20.0/22 10507 -68.31.24.0/22 10507 -68.31.28.0/23 1239 -68.31.30.0/23 10507 -68.31.32.0/22 10507 -68.31.36.0/22 1239 -68.31.40.0/22 10507 -68.31.44.0/23 10507 -68.31.46.0/24 10507 -68.31.47.0/24 1239 -68.31.48.0/21 10507 -68.31.56.0/23 1239 -68.31.58.0/23 10507 -68.31.60.0/23 10507 -68.31.62.0/24 10507 -68.31.63.0/24 1239 -68.31.64.0/21 10507 -68.31.72.0/23 10507 -68.31.74.0/23 1239 -68.31.76.0/22 1239 -68.31.80.0/20 1239 -68.31.96.0/20 1239 -68.31.112.0/21 1239 -68.31.120.0/23 1239 -68.31.122.0/24 10507 -68.31.123.0/24 1239 -68.31.124.0/24 10507 -68.31.125.0/24 1239 -68.31.126.0/23 1239 -68.31.128.0/24 10507 -68.31.129.0/24 1239 -68.31.130.0/23 1239 -68.31.132.0/23 10507 -68.31.134.0/23 1239 -68.31.136.0/21 1239 -68.31.144.0/20 1239 -68.31.160.0/19 1239 -68.31.192.0/18 1239 -68.32.0.0/11 7922 -68.64.1.0/24 16815 -68.64.2.0/23 16815 -68.64.4.0/24 14618 -68.64.5.0/24 16509 -68.64.6.0/23 16815 -68.64.8.0/22 16815 -68.64.13.0/24 16815 -68.64.14.0/23 16815 -68.64.16.0/21 16815 -68.64.25.0/24 16815 -68.64.26.0/23 16815 -68.64.28.0/24 16815 -68.64.30.0/24 16815 -68.64.32.0/20 19271 -68.64.48.0/20 19528 -68.64.72.0/23 46454 -68.64.74.0/24 46454 -68.64.80.0/21 46454 -68.64.88.0/22 46454 -68.64.92.0/24 46454 -68.64.97.0/24 32083 -68.64.108.0/23 21904 -68.64.112.0/20 1640 -68.64.128.0/23 64200 -68.64.130.0/23 3257 -68.64.132.0/22 3257 -68.64.136.0/23 64200 -68.64.138.0/24 3257 -68.64.139.0/24 26588 -68.64.140.0/23 3257 -68.64.142.0/24 3257 -68.64.143.0/24 36473 -68.64.144.0/20 3257 -68.64.160.0/20 17139 -68.64.176.0/21 3257 -68.64.184.0/22 3257 -68.64.188.0/23 3257 -68.64.190.0/24 19222 -68.64.191.0/24 3257 -68.64.192.0/20 32654 -68.64.208.0/20 6653 -68.64.224.0/21 32098 -68.64.232.0/23 32098 -68.64.236.0/22 32098 -68.64.240.0/21 46473 -68.64.248.0/22 46473 -68.65.0.0/21 3356 -68.65.16.0/20 22549 -68.65.32.0/19 11796 -68.65.64.0/20 14265 -68.65.80.0/21 14265 -68.65.88.0/22 14265 -68.65.92.0/24 14265 -68.65.93.0/24 5749 -68.65.94.0/24 14265 -68.65.95.0/24 21876 -68.65.96.0/20 7106 -68.65.112.0/21 42 -68.65.120.0/22 22612 -68.65.124.0/23 14877 -68.65.126.0/23 42 -68.65.128.0/20 11915 -68.65.144.0/23 11915 -68.65.148.0/22 11915 -68.65.152.0/21 11915 -68.65.160.0/20 46749 -68.65.176.0/22 14716 -68.65.180.0/24 14716 -68.65.181.0/24 46449 -68.65.182.0/24 46449 -68.65.183.0/24 14716 -68.65.184.0/22 14716 -68.65.188.0/24 14716 -68.65.189.0/24 46449 -68.65.190.0/23 46449 -68.65.192.0/21 62715 -68.65.200.0/22 32415 -68.65.204.0/23 27345 -68.65.206.0/23 32415 -68.65.208.0/21 394065 -68.65.216.0/23 396357 -68.65.218.0/23 32446 -68.65.220.0/22 64267 -68.65.224.0/22 30640 -68.65.240.0/21 46685 -68.65.248.0/23 10747 -68.65.250.0/23 33208 -68.65.253.0/24 393841 -68.65.255.0/24 393841 -68.66.0.0/20 17338 -68.66.16.0/20 13728 -68.66.32.0/22 54003 -68.66.40.0/22 54003 -68.66.64.0/24 30036 -68.66.66.0/23 30036 -68.66.68.0/24 30036 -68.66.70.0/23 30036 -68.66.72.0/22 30036 -68.66.76.0/23 30036 -68.66.80.0/22 21782 -68.66.84.0/22 20356 -68.66.88.0/21 21782 -68.66.96.0/20 17253 -68.66.128.0/20 393571 -68.66.144.0/22 11404 -68.66.148.0/23 11404 -68.66.150.0/24 11404 -68.66.151.0/24 54879 -68.66.152.0/21 11404 -68.66.160.0/20 13415 -68.66.176.0/20 31753 -68.66.192.0/20 55293 -68.66.208.0/23 55293 -68.66.210.0/24 55293 -68.66.211.0/24 32244 -68.66.212.0/22 55293 -68.66.216.0/21 55293 -68.66.224.0/19 55293 -68.67.16.0/20 14559 -68.67.32.0/24 33705 -68.67.33.0/24 22652 -68.67.34.0/23 22652 -68.67.36.0/24 22652 -68.67.37.0/24 54137 -68.67.38.0/23 22652 -68.67.40.0/22 22652 -68.67.44.0/23 22652 -68.67.46.0/23 40864 -68.67.48.0/24 40864 -68.67.49.0/24 22652 -68.67.50.0/23 22652 -68.67.52.0/23 22652 -68.67.54.0/24 22652 -68.67.55.0/24 40864 -68.67.56.0/21 22652 -68.67.64.0/24 19844 -68.67.65.0/24 13335 -68.67.66.0/23 19844 -68.67.68.0/22 19844 -68.67.72.0/21 19844 -68.67.80.0/20 11404 -68.67.96.0/20 2726 -68.67.112.0/21 16610 -68.67.120.0/22 16610 -68.67.124.0/23 16610 -68.67.126.0/24 40863 -68.67.127.0/24 16610 -68.67.128.0/19 29990 -68.67.160.0/21 29990 -68.67.168.0/22 29990 -68.67.172.0/23 29990 -68.67.174.0/24 29990 -68.67.176.0/20 29990 -68.67.208.0/20 32228 -68.67.224.0/20 7029 -68.67.240.0/20 22709 -68.68.0.0/20 11342 -68.68.16.0/20 11013 -68.68.32.0/20 22781 -68.68.64.0/20 17310 -68.68.80.0/21 11550 -68.68.88.0/24 11550 -68.68.89.0/24 40183 -68.68.90.0/23 11550 -68.68.92.0/22 11550 -68.68.96.0/20 18779 -68.68.112.0/22 32385 -68.68.116.0/24 21808 -68.68.117.0/24 32385 -68.68.118.0/23 32385 -68.68.120.0/24 21808 -68.68.122.0/23 32385 -68.68.124.0/24 21808 -68.68.126.0/23 21808 -68.68.128.0/20 33749 -68.68.144.0/20 394285 -68.68.160.0/23 55230 -68.68.162.0/24 14488 -68.68.163.0/24 55230 -68.68.164.0/24 22561 -68.68.165.0/24 393670 -68.68.166.0/23 13659 -68.68.168.0/24 13659 -68.68.169.0/24 46849 -68.68.170.0/23 14488 -68.68.172.0/23 14488 -68.68.174.0/24 20115 -68.68.175.0/24 27258 -68.68.176.0/24 4452 -68.68.177.0/24 11758 -68.68.178.0/24 11758 -68.68.179.0/24 20115 -68.68.180.0/24 40317 -68.68.181.0/24 20115 -68.68.182.0/24 40317 -68.68.183.0/24 20115 -68.68.188.0/22 209 -68.68.192.0/21 30221 -68.68.200.0/22 30221 -68.68.204.0/23 55001 -68.68.206.0/23 30221 -68.68.208.0/20 30221 -68.68.224.0/20 11847 -68.68.240.0/21 22384 -68.68.248.0/22 22384 -68.68.252.0/23 22384 -68.68.254.0/24 22384 -68.68.255.0/24 20454 -68.69.0.0/24 46696 -68.69.1.0/24 19528 -68.69.2.0/24 19528 -68.69.3.0/24 46696 -68.69.4.0/22 46696 -68.69.8.0/22 46696 -68.69.12.0/22 19528 -68.69.16.0/20 13468 -68.69.32.0/20 19058 -68.69.48.0/20 26954 -68.69.64.0/19 6580 -68.69.96.0/20 32986 -68.69.112.0/21 3900 -68.69.128.0/19 29974 -68.69.160.0/20 6315 -68.69.176.0/20 36286 -68.69.192.0/19 803 -68.69.224.0/19 15267 -68.70.0.0/19 14928 -68.70.32.0/20 30174 -68.70.48.0/21 14477 -68.70.56.0/24 29940 -68.70.57.0/24 14477 -68.70.58.0/24 14477 -68.70.59.0/24 15049 -68.70.60.0/22 14477 -68.70.64.0/19 18712 -68.70.112.0/23 54300 -68.70.114.0/24 3356 -68.70.118.0/23 54300 -68.70.120.0/23 36782 -68.70.124.0/24 11767 -68.70.125.0/24 174 -68.70.126.0/24 36782 -68.70.127.0/24 16509 -68.70.128.0/20 8134 -68.70.144.0/20 14500 -68.70.160.0/20 22458 -68.70.176.0/20 16617 -68.70.192.0/24 44239 -68.70.196.0/22 44239 -68.70.200.0/24 44239 -68.70.203.0/24 44239 -68.70.204.0/23 44239 -68.70.207.0/24 44239 -68.70.208.0/20 13904 -68.70.231.0/24 40317 -68.70.237.0/24 32505 -68.70.238.0/23 209 -68.70.240.0/23 14488 -68.70.242.0/24 20115 -68.70.243.0/24 209 -68.70.244.0/24 209 -68.70.245.0/24 20115 -68.70.246.0/24 393670 -68.70.247.0/24 21668 -68.70.248.0/22 4452 -68.70.252.0/24 393670 -68.70.255.0/24 7029 -68.71.0.0/19 53486 -68.71.32.0/24 46874 -68.71.33.0/24 10929 -68.71.34.0/23 10929 -68.71.36.0/22 10929 -68.71.40.0/21 10929 -68.71.48.0/20 10929 -68.71.64.0/20 20135 -68.71.80.0/20 14701 -68.71.96.0/20 19271 -68.71.112.0/20 25674 -68.71.128.0/19 30475 -68.71.160.0/19 27264 -68.71.192.0/21 3561 -68.71.200.0/22 16941 -68.71.205.0/24 16941 -68.71.216.0/22 8137 -68.71.220.0/23 8137 -68.71.222.0/24 8137 -68.71.223.0/24 19905 -68.71.224.0/20 21663 -68.71.240.0/20 20093 -68.72.0.0/18 7018 -68.72.64.0/22 7018 -68.72.68.0/23 7018 -68.72.70.0/23 27482 -68.72.72.0/22 27482 -68.72.76.0/22 7018 -68.72.80.0/20 7018 -68.72.96.0/19 7018 -68.72.128.0/18 7018 -68.72.192.0/21 7018 -68.72.200.0/24 7018 -68.72.201.0/24 32003 -68.72.202.0/23 7018 -68.72.204.0/22 7018 -68.72.208.0/20 7018 -68.72.224.0/19 7018 -68.73.0.0/18 7018 -68.73.64.0/21 7018 -68.73.72.0/23 7018 -68.73.74.0/24 26306 -68.73.75.0/24 2386 -68.73.76.0/22 7018 -68.73.80.0/20 7018 -68.73.96.0/19 7018 -68.73.128.0/17 7018 -68.74.0.0/17 7018 -68.74.128.0/18 7018 -68.74.192.0/19 7018 -68.74.224.0/21 7018 -68.74.232.0/24 7018 -68.74.233.0/24 13744 -68.74.234.0/23 7018 -68.74.236.0/22 7018 -68.74.240.0/24 27369 -68.74.241.0/24 7018 -68.74.242.0/23 7018 -68.74.244.0/22 7018 -68.74.248.0/21 7018 -68.75.0.0/17 7018 -68.75.128.0/18 7018 -68.75.192.0/23 7018 -68.75.194.0/24 7018 -68.75.195.0/24 17235 -68.75.196.0/22 7018 -68.75.200.0/21 7018 -68.75.208.0/20 7018 -68.75.224.0/19 7018 -68.76.0.0/17 7018 -68.76.128.0/20 7018 -68.76.144.0/21 7018 -68.76.152.0/23 27216 -68.76.154.0/23 7018 -68.76.156.0/22 7018 -68.76.160.0/19 7018 -68.76.192.0/18 7018 -68.77.0.0/17 7018 -68.77.128.0/18 7018 -68.77.192.0/20 7018 -68.77.208.0/24 7018 -68.77.209.0/24 27482 -68.77.210.0/23 7018 -68.77.212.0/22 7018 -68.77.216.0/21 7018 -68.77.224.0/23 7018 -68.77.226.0/24 7018 -68.77.227.0/24 32552 -68.77.228.0/22 7018 -68.77.232.0/21 7018 -68.77.240.0/20 7018 -68.78.0.0/16 7018 -68.79.64.0/18 7018 -68.79.128.0/17 7018 -68.80.0.0/13 7922 -68.88.0.0/16 7018 -68.89.0.0/18 7018 -68.89.64.0/20 7018 -68.89.80.0/21 7018 -68.89.88.0/22 7018 -68.89.92.0/24 23079 -68.89.93.0/24 7018 -68.89.94.0/23 7018 -68.89.96.0/19 7018 -68.89.128.0/21 7018 -68.89.136.0/23 7018 -68.89.138.0/24 40615 -68.89.139.0/24 7018 -68.89.140.0/22 7018 -68.89.144.0/20 7018 -68.89.160.0/19 7018 -68.89.192.0/18 7018 -68.90.0.0/18 7018 -68.90.64.0/22 7018 -68.90.68.0/23 13324 -68.90.70.0/23 7018 -68.90.72.0/21 7018 -68.90.80.0/20 7018 -68.90.96.0/19 7018 -68.90.128.0/20 7018 -68.90.144.0/21 7018 -68.90.152.0/24 7018 -68.90.153.0/24 35930 -68.90.154.0/23 7018 -68.90.156.0/22 7018 -68.90.160.0/19 7018 -68.90.192.0/18 7018 -68.91.0.0/19 7018 -68.91.32.0/21 7018 -68.91.40.0/24 30108 -68.91.41.0/24 7018 -68.91.42.0/23 7018 -68.91.44.0/22 7018 -68.91.48.0/20 7018 -68.91.64.0/18 7018 -68.91.128.0/18 7018 -68.91.192.0/19 7018 -68.91.224.0/22 7018 -68.91.228.0/23 7018 -68.91.230.0/24 394059 -68.91.231.0/24 7018 -68.91.232.0/21 7018 -68.91.240.0/20 7018 -68.92.0.0/16 7018 -68.93.0.0/17 7018 -68.93.128.0/18 7018 -68.93.192.0/20 7018 -68.93.208.0/21 7018 -68.93.216.0/24 7018 -68.93.217.0/24 54855 -68.93.218.0/23 7018 -68.93.220.0/22 7018 -68.93.224.0/19 7018 -68.94.0.0/16 7018 -68.95.0.0/17 7018 -68.95.128.0/18 7018 -68.95.192.0/21 7018 -68.95.200.0/21 25993 -68.95.208.0/20 7018 -68.95.224.0/19 7018 -68.96.0.0/13 22773 -68.104.0.0/15 22773 -68.106.0.0/18 22773 -68.106.64.0/24 54845 -68.106.65.0/24 22773 -68.106.66.0/23 22773 -68.106.68.0/22 22773 -68.106.72.0/21 22773 -68.106.80.0/20 22773 -68.106.96.0/19 22773 -68.106.128.0/17 22773 -68.107.0.0/17 22773 -68.107.128.0/18 22773 -68.107.192.0/24 22773 -68.107.193.0/24 6302 -68.107.194.0/23 22773 -68.107.196.0/22 22773 -68.107.200.0/21 22773 -68.107.208.0/20 22773 -68.107.224.0/19 22773 -68.108.0.0/16 22773 -68.109.0.0/17 22773 -68.109.128.0/18 22773 -68.109.192.0/19 22773 -68.109.224.0/20 22773 -68.109.240.0/24 54945 -68.109.241.0/24 22773 -68.109.242.0/23 22773 -68.109.244.0/22 27582 -68.109.248.0/21 22773 -68.110.0.0/19 22773 -68.110.32.0/24 22773 -68.110.33.0/24 394505 -68.110.34.0/23 394505 -68.110.36.0/22 394505 -68.110.40.0/21 394505 -68.110.48.0/20 394505 -68.110.64.0/18 22773 -68.110.128.0/17 22773 -68.111.0.0/16 22773 -68.112.0.0/18 20115 -68.112.64.0/20 20115 -68.112.80.0/22 20115 -68.112.84.0/23 20115 -68.112.86.0/24 20115 -68.112.88.0/21 20115 -68.112.96.0/19 20115 -68.112.128.0/17 20115 -68.113.0.0/19 20115 -68.113.32.0/20 20115 -68.113.48.0/24 20115 -68.113.49.0/24 40772 -68.113.50.0/23 20115 -68.113.52.0/22 20115 -68.113.56.0/22 20115 -68.113.60.0/24 20115 -68.113.61.0/24 26311 -68.113.62.0/23 20115 -68.113.64.0/18 20115 -68.113.128.0/17 20115 -68.114.32.0/22 20115 -68.114.43.0/24 16787 -68.114.44.0/22 20115 -68.114.48.0/20 20115 -68.114.64.0/21 20115 -68.114.72.0/23 20115 -68.114.74.0/24 20115 -68.114.75.0/24 393695 -68.114.78.0/23 20115 -68.114.80.0/20 20115 -68.114.96.0/19 20115 -68.114.128.0/19 20115 -68.114.161.0/24 54822 -68.114.162.0/23 20115 -68.114.164.0/23 20115 -68.114.166.0/24 20115 -68.114.167.0/24 16787 -68.114.178.0/23 20115 -68.114.192.0/20 20115 -68.114.212.0/22 20115 -68.114.216.0/21 20115 -68.114.224.0/19 20115 -68.115.0.0/22 20115 -68.115.4.0/24 19115 -68.115.5.0/24 20115 -68.115.6.0/23 20115 -68.115.8.0/21 20115 -68.115.16.0/20 20115 -68.115.32.0/19 20115 -68.115.64.0/18 20115 -68.115.128.0/18 20115 -68.115.192.0/19 20115 -68.115.224.0/24 32787 -68.115.225.0/24 20115 -68.115.226.0/23 20115 -68.115.228.0/22 20115 -68.115.232.0/21 20115 -68.115.240.0/20 20115 -68.116.0.0/15 20115 -68.118.0.0/20 20115 -68.118.17.0/24 20115 -68.118.20.0/22 20115 -68.118.24.0/21 20115 -68.118.32.0/19 20115 -68.118.64.0/19 20115 -68.118.96.0/20 20115 -68.118.112.0/23 20115 -68.118.114.0/24 20115 -68.118.115.0/24 40754 -68.118.116.0/22 20115 -68.118.120.0/21 20115 -68.118.132.0/22 20115 -68.118.136.0/21 20115 -68.118.144.0/20 20115 -68.118.160.0/19 20115 -68.118.192.0/18 20115 -68.119.0.0/16 20115 -68.120.0.0/13 7018 -68.128.0.0/17 23148 -68.128.128.0/18 3369 -68.128.201.0/24 1326 -68.128.204.0/24 1326 -68.128.209.0/24 1326 -68.128.212.0/23 1326 -68.128.218.0/23 1382 -68.128.234.0/24 7046 -68.129.0.0/16 701 -68.130.128.0/24 14210 -68.130.208.0/20 23148 -68.131.0.0/16 701 -68.132.0.0/15 701 -68.134.0.0/16 701 -68.135.20.0/22 5650 -68.135.24.0/22 5650 -68.135.28.0/23 5650 -68.135.60.0/22 5650 -68.135.64.0/22 5650 -68.135.70.0/23 5650 -68.135.72.0/22 5650 -68.135.80.0/21 5650 -68.135.88.0/22 5650 -68.135.92.0/23 5650 -68.135.144.0/22 5650 -68.135.148.0/23 5650 -68.135.154.0/23 5650 -68.135.156.0/23 5650 -68.135.202.0/23 5650 -68.135.204.0/23 5650 -68.135.232.0/22 5650 -68.140.0.0/17 701 -68.140.128.0/18 701 -68.140.192.0/24 1323 -68.140.193.0/24 701 -68.140.194.0/23 701 -68.140.196.0/22 701 -68.140.200.0/21 701 -68.140.208.0/20 701 -68.140.224.0/21 701 -68.140.232.0/23 701 -68.140.234.0/24 1325 -68.140.235.0/24 701 -68.140.236.0/23 701 -68.140.238.0/23 1325 -68.140.240.0/20 701 -68.141.0.0/16 701 -68.142.0.0/19 11280 -68.142.32.0/19 12282 -68.142.64.0/18 22822 -68.142.128.0/20 13649 -68.142.144.0/22 13649 -68.142.148.0/24 22065 -68.142.149.0/24 13649 -68.142.150.0/23 13649 -68.142.152.0/22 13649 -68.142.156.0/24 13649 -68.142.157.0/24 394714 -68.142.158.0/23 13649 -68.142.160.0/20 23432 -68.142.176.0/20 19271 -68.142.216.0/21 26101 -68.142.224.0/20 26101 -68.142.240.0/21 36647 -68.142.248.0/24 10310 -68.142.252.0/24 22565 -68.142.253.0/24 10310 -68.142.254.0/23 7280 -68.143.0.0/16 7029 -68.144.0.0/13 6327 -68.152.0.0/21 6389 -68.152.8.0/24 6389 -68.152.9.0/24 26849 -68.152.10.0/23 6389 -68.152.12.0/22 6389 -68.152.16.0/20 6389 -68.152.32.0/19 6389 -68.152.64.0/18 6389 -68.152.128.0/17 6389 -68.153.0.0/22 6389 -68.153.4.0/24 2386 -68.153.5.0/24 6389 -68.153.6.0/23 6389 -68.153.8.0/23 6197 -68.153.10.0/23 6389 -68.153.12.0/22 6389 -68.153.16.0/24 33527 -68.153.17.0/24 6389 -68.153.18.0/23 6389 -68.153.20.0/24 54697 -68.153.21.0/24 6389 -68.153.22.0/23 6389 -68.153.24.0/21 6389 -68.153.32.0/19 6389 -68.153.64.0/19 6389 -68.153.96.0/21 6389 -68.153.104.0/22 6389 -68.153.108.0/24 6389 -68.153.109.0/24 54774 -68.153.110.0/23 6389 -68.153.112.0/20 6389 -68.153.128.0/18 7018 -68.153.192.0/19 7018 -68.153.224.0/21 7018 -68.153.232.0/22 6389 -68.153.236.0/22 7018 -68.153.240.0/22 7018 -68.153.244.0/22 6389 -68.153.248.0/21 6389 -68.156.0.0/20 6389 -68.156.16.0/22 6389 -68.156.20.0/24 6389 -68.156.21.0/24 17123 -68.156.22.0/23 6389 -68.156.24.0/21 6389 -68.156.32.0/19 6389 -68.156.64.0/19 6389 -68.156.96.0/20 6389 -68.156.112.0/21 6389 -68.156.120.0/22 6389 -68.156.124.0/23 6389 -68.156.126.0/24 6389 -68.156.127.0/24 13342 -68.156.128.0/20 6389 -68.156.144.0/21 6389 -68.156.152.0/22 6389 -68.156.156.0/23 6389 -68.156.158.0/24 6389 -68.156.159.0/24 29766 -68.156.160.0/22 6389 -68.156.164.0/24 6389 -68.156.165.0/24 22304 -68.156.166.0/23 6389 -68.156.168.0/21 6389 -68.156.176.0/20 6389 -68.156.192.0/18 6389 -68.157.0.0/18 6389 -68.157.64.0/18 7018 -68.157.128.0/19 7018 -68.157.160.0/21 6389 -68.157.168.0/21 7018 -68.157.176.0/20 7018 -68.157.192.0/19 7018 -68.157.224.0/20 7018 -68.157.240.0/21 7018 -68.157.248.0/21 6389 -68.158.0.0/18 7018 -68.158.64.0/20 7018 -68.158.80.0/21 7018 -68.158.88.0/21 6389 -68.158.96.0/19 6389 -68.158.128.0/17 6389 -68.159.0.0/18 6389 -68.159.64.0/19 6389 -68.159.96.0/20 7018 -68.159.112.0/21 7018 -68.159.120.0/21 6389 -68.159.128.0/18 6389 -68.159.192.0/19 6389 -68.159.224.0/19 7018 -68.160.64.0/20 701 -68.160.80.0/21 701 -68.160.96.0/19 701 -68.160.128.0/17 701 -68.161.0.0/16 701 -68.162.64.0/19 701 -68.162.128.0/17 701 -68.163.0.0/18 701 -68.163.64.0/19 701 -68.163.96.0/20 701 -68.163.112.0/24 40321 -68.163.121.0/24 701 -68.163.128.0/17 701 -68.164.0.0/16 18566 -68.165.0.0/18 18566 -68.165.64.0/19 18566 -68.165.96.0/21 18566 -68.165.104.0/24 18566 -68.165.105.0/24 17184 -68.165.106.0/23 18566 -68.165.108.0/22 18566 -68.165.112.0/20 18566 -68.165.128.0/17 18566 -68.166.0.0/15 18566 -68.168.0.0/21 22438 -68.168.8.0/22 22438 -68.168.12.0/23 22438 -68.168.14.0/24 22438 -68.168.15.0/24 395310 -68.168.16.0/20 33333 -68.168.42.0/23 63320 -68.168.44.0/22 26163 -68.168.64.0/20 14065 -68.168.80.0/21 17378 -68.168.88.0/22 17378 -68.168.92.0/24 17378 -68.168.93.0/24 15178 -68.168.94.0/24 17378 -68.168.95.0/24 53291 -68.168.96.0/20 18501 -68.168.112.0/20 36666 -68.168.128.0/20 25820 -68.168.160.0/19 10242 -68.168.192.0/20 40317 -68.168.208.0/23 19318 -68.168.210.0/24 52000 -68.168.211.0/24 19318 -68.168.212.0/22 19318 -68.168.216.0/21 19318 -68.168.224.0/20 13576 -68.168.240.0/20 33561 -68.169.0.0/21 22903 -68.169.8.0/22 22903 -68.169.12.0/23 22903 -68.169.14.0/24 22903 -68.169.16.0/21 22903 -68.169.24.0/23 26994 -68.169.32.0/20 29854 -68.169.48.0/21 20141 -68.169.56.0/22 20141 -68.169.60.0/22 53907 -68.169.64.0/19 23393 -68.169.96.0/20 23393 -68.169.112.0/20 23432 -68.169.128.0/18 26827 -68.169.192.0/24 40584 -68.169.193.0/24 17223 -68.169.194.0/23 17223 -68.169.196.0/22 17223 -68.169.200.0/21 17223 -68.169.208.0/20 16904 -68.169.240.0/20 209 -68.170.0.0/24 17054 -68.170.16.0/22 19210 -68.170.20.0/24 19210 -68.170.22.0/24 3356 -68.170.26.0/24 19210 -68.170.28.0/23 19210 -68.170.32.0/19 10835 -68.170.64.0/20 23316 -68.170.80.0/20 12177 -68.170.96.0/20 40128 -68.170.112.0/20 20283 -68.170.128.0/20 21886 -68.170.144.0/20 4906 -68.170.160.0/20 23316 -68.170.176.0/20 7065 -68.170.192.0/21 32327 -68.170.200.0/24 32327 -68.170.201.0/24 22765 -68.170.202.0/24 22765 -68.170.203.0/24 32327 -68.170.204.0/22 32327 -68.170.208.0/20 17306 -68.170.224.0/20 21725 -68.170.240.0/20 26744 -68.171.0.0/23 22958 -68.171.2.0/24 22958 -68.171.3.0/24 26722 -68.171.4.0/22 22958 -68.171.8.0/24 22958 -68.171.9.0/24 26060 -68.171.10.0/23 22958 -68.171.12.0/23 22958 -68.171.14.0/24 46728 -68.171.15.0/24 22958 -68.171.16.0/20 13654 -68.171.32.0/19 17054 -68.171.64.0/20 11601 -68.171.80.0/20 46986 -68.171.96.0/20 14992 -68.171.112.0/20 395582 -68.171.128.0/22 17113 -68.171.132.0/23 17113 -68.171.134.0/24 17113 -68.171.135.0/24 7349 -68.171.136.0/21 17113 -68.171.144.0/20 17113 -68.171.160.0/20 20141 -68.171.176.0/20 19504 -68.171.208.0/20 22878 -68.171.224.0/19 18705 -68.172.0.0/17 11351 -68.172.128.0/18 11351 -68.172.192.0/20 11351 -68.172.208.0/20 12271 -68.172.224.0/19 12271 -68.173.0.0/16 12271 -68.174.0.0/16 12271 -68.175.0.0/17 12271 -68.175.128.0/17 11351 -68.176.0.0/16 209 -68.177.0.0/20 209 -68.177.16.0/21 209 -68.177.24.0/23 209 -68.177.26.0/23 26144 -68.177.28.0/22 209 -68.177.32.0/20 209 -68.177.48.0/23 209 -68.177.50.0/24 209 -68.177.51.0/24 397368 -68.177.52.0/22 209 -68.177.56.0/21 209 -68.177.64.0/24 18771 -68.177.65.0/24 396422 -68.177.66.0/23 396422 -68.177.68.0/23 396422 -68.177.70.0/23 18771 -68.177.72.0/21 209 -68.177.80.0/24 40609 -68.177.81.0/24 209 -68.177.82.0/23 209 -68.177.84.0/22 209 -68.177.88.0/24 6086 -68.177.89.0/24 209 -68.177.90.0/23 209 -68.177.92.0/22 209 -68.177.96.0/21 209 -68.177.104.0/22 209 -68.177.108.0/24 394912 -68.177.109.0/24 209 -68.177.110.0/23 209 -68.177.112.0/20 209 -68.177.128.0/22 36210 -68.177.132.0/22 209 -68.177.136.0/21 209 -68.177.144.0/24 209 -68.177.145.0/24 14038 -68.177.146.0/23 209 -68.177.148.0/22 209 -68.177.152.0/21 209 -68.177.160.0/21 209 -68.177.168.0/24 32098 -68.177.169.0/24 209 -68.177.170.0/23 209 -68.177.172.0/24 25634 -68.177.173.0/24 209 -68.177.174.0/23 209 -68.177.176.0/20 209 -68.177.192.0/21 209 -68.177.200.0/22 209 -68.177.204.0/23 209 -68.177.206.0/24 11842 -68.177.207.0/24 209 -68.177.208.0/20 209 -68.177.224.0/19 209 -68.178.0.0/17 7385 -68.178.128.0/17 26496 -68.179.0.0/18 20161 -68.179.64.0/19 20161 -68.179.96.0/24 40949 -68.179.97.0/24 20161 -68.179.98.0/23 20161 -68.179.100.0/24 32710 -68.179.101.0/24 20161 -68.179.102.0/23 20161 -68.179.104.0/21 20161 -68.179.112.0/20 20161 -68.179.128.0/18 12083 -68.179.192.0/19 10430 -68.179.224.0/20 13853 -68.179.240.0/20 54804 -68.180.0.0/20 23473 -68.180.16.0/23 23473 -68.180.20.0/24 23473 -68.180.24.0/22 23473 -68.180.28.0/23 46925 -68.180.30.0/24 23473 -68.180.32.0/22 23473 -68.180.36.0/23 23473 -68.180.40.0/22 46925 -68.180.48.0/24 23473 -68.180.56.0/23 23473 -68.180.62.0/24 23473 -68.180.68.0/22 23473 -68.180.74.0/23 23473 -68.180.76.0/23 23473 -68.180.78.0/24 46925 -68.180.79.0/24 23473 -68.180.82.0/23 23473 -68.180.84.0/24 23473 -68.180.86.0/23 23473 -68.180.88.0/24 23473 -68.180.92.0/24 46925 -68.180.94.0/23 23473 -68.180.100.0/23 23473 -68.180.102.0/23 46925 -68.180.104.0/21 23473 -68.180.112.0/23 46925 -68.180.114.0/23 23473 -68.180.116.0/24 23473 -68.180.118.0/23 23473 -68.180.120.0/24 23473 -68.180.126.0/23 23473 -68.180.129.0/24 7280 -68.180.130.0/23 10880 -68.180.134.0/23 14780 -68.180.137.0/24 22565 -68.180.160.0/24 10310 -68.180.192.0/18 36647 -68.181.0.0/16 47 -68.182.0.0/17 14663 -68.182.128.0/18 852 -68.182.192.0/18 14663 -68.183.0.0/16 14061 -68.184.0.0/15 20115 -68.186.0.0/19 20115 -68.186.32.0/23 20115 -68.186.34.0/24 40791 -68.186.35.0/24 20115 -68.186.36.0/22 20115 -68.186.40.0/21 20115 -68.186.48.0/20 20115 -68.186.64.0/18 20115 -68.186.128.0/20 20115 -68.186.144.0/21 20115 -68.186.160.0/19 20115 -68.186.192.0/18 20115 -68.187.0.0/20 20115 -68.187.16.0/22 20115 -68.187.20.0/23 20115 -68.187.22.0/24 20115 -68.187.23.0/24 14057 -68.187.24.0/21 20115 -68.187.32.0/19 20115 -68.187.64.0/18 20115 -68.187.128.0/17 20115 -68.188.0.0/19 20115 -68.188.32.0/20 20115 -68.188.48.0/21 20115 -68.188.56.0/24 20115 -68.188.57.0/24 13933 -68.188.58.0/23 20115 -68.188.60.0/22 20115 -68.188.64.0/18 20115 -68.188.128.0/17 20115 -68.189.0.0/20 20115 -68.189.16.0/21 20115 -68.189.24.0/22 20115 -68.189.28.0/24 20115 -68.189.29.0/24 40772 -68.189.30.0/23 20115 -68.189.32.0/19 20115 -68.189.64.0/19 20115 -68.189.96.0/20 20115 -68.189.112.0/23 20115 -68.189.114.0/24 20115 -68.189.115.0/24 26429 -68.189.116.0/22 20115 -68.189.120.0/21 20115 -68.189.128.0/17 20115 -68.190.0.0/16 20115 -68.191.0.0/22 20115 -68.191.4.0/24 20115 -68.191.5.0/24 33636 -68.191.6.0/23 20115 -68.191.8.0/21 20115 -68.191.16.0/20 20115 -68.191.32.0/19 20115 -68.191.64.0/18 20115 -68.191.128.0/17 20115 -68.192.0.0/13 6128 -68.200.0.0/16 33363 -68.201.0.0/16 11427 -68.202.0.0/16 33363 -68.203.0.0/16 11427 -68.204.0.0/15 33363 -68.206.0.0/16 11427 -68.207.0.0/18 11427 -68.207.64.0/20 11427 -68.207.80.0/20 33363 -68.207.96.0/19 11427 -68.207.128.0/17 33363 -68.208.0.0/19 6389 -68.208.32.0/20 6389 -68.208.48.0/23 6389 -68.208.50.0/24 54392 -68.208.51.0/24 63238 -68.208.52.0/22 18569 -68.208.56.0/21 6389 -68.208.64.0/19 6389 -68.208.96.0/20 6389 -68.208.112.0/21 6389 -68.208.120.0/22 6389 -68.208.124.0/23 6389 -68.208.126.0/24 6389 -68.208.127.0/24 46093 -68.208.128.0/19 6389 -68.208.160.0/20 6389 -68.208.176.0/22 6389 -68.208.180.0/23 6389 -68.208.182.0/24 6389 -68.208.183.0/24 32467 -68.208.184.0/21 6389 -68.208.192.0/22 6389 -68.208.196.0/24 6389 -68.208.197.0/24 2386 -68.208.198.0/23 6389 -68.208.200.0/21 6389 -68.208.208.0/20 6389 -68.208.224.0/19 6389 -68.209.0.0/18 7018 -68.209.64.0/20 6389 -68.209.80.0/20 7018 -68.209.96.0/20 7018 -68.209.112.0/21 7018 -68.209.120.0/23 7018 -68.209.122.0/23 6389 -68.209.124.0/22 6389 -68.209.128.0/21 7018 -68.209.136.0/23 7018 -68.209.138.0/23 6389 -68.209.140.0/23 7018 -68.209.142.0/23 6389 -68.209.144.0/22 7018 -68.209.148.0/23 7018 -68.209.150.0/23 6389 -68.209.152.0/22 7018 -68.209.156.0/22 6389 -68.209.160.0/21 7018 -68.209.168.0/22 6389 -68.209.172.0/22 7018 -68.209.176.0/21 6389 -68.209.184.0/22 6389 -68.209.188.0/22 7018 -68.209.192.0/22 6389 -68.209.196.0/22 7018 -68.209.200.0/23 7018 -68.209.202.0/23 6389 -68.209.204.0/22 7018 -68.209.208.0/22 6389 -68.209.212.0/22 7018 -68.209.216.0/21 7018 -68.209.224.0/22 7018 -68.209.228.0/22 6389 -68.209.232.0/21 7018 -68.209.240.0/20 7018 -68.212.0.0/18 6389 -68.212.64.0/20 6389 -68.212.80.0/20 7018 -68.212.96.0/20 6385 -68.212.112.0/21 6385 -68.212.120.0/21 6389 -68.212.128.0/19 6198 -68.212.160.0/19 6389 -68.212.192.0/18 6389 -68.213.0.0/19 7018 -68.213.32.0/21 6389 -68.213.40.0/22 6389 -68.213.44.0/22 7018 -68.213.48.0/21 6389 -68.213.56.0/21 7018 -68.213.64.0/19 7018 -68.213.96.0/20 7018 -68.213.112.0/21 6389 -68.213.120.0/21 7018 -68.213.128.0/20 6389 -68.213.144.0/21 7018 -68.213.152.0/21 6389 -68.213.160.0/21 7018 -68.213.168.0/21 6389 -68.213.176.0/21 7018 -68.213.184.0/22 7018 -68.213.188.0/22 6389 -68.213.192.0/18 7018 -68.214.0.0/18 6389 -68.214.64.0/19 7018 -68.214.96.0/19 6389 -68.214.128.0/18 6389 -68.214.192.0/21 7018 -68.214.200.0/21 6389 -68.214.208.0/20 6389 -68.214.224.0/19 6389 -68.215.0.0/16 6389 -68.216.0.0/21 6389 -68.216.8.0/23 6389 -68.216.10.0/24 6389 -68.216.11.0/24 18662 -68.216.12.0/22 6389 -68.216.16.0/20 6389 -68.216.32.0/19 6389 -68.216.64.0/20 6389 -68.216.80.0/21 6389 -68.216.88.0/23 6389 -68.216.90.0/23 46153 -68.216.92.0/22 6389 -68.216.96.0/19 6389 -68.216.128.0/19 6389 -68.216.160.0/24 6389 -68.216.161.0/24 23509 -68.216.162.0/24 23509 -68.216.163.0/24 6389 -68.216.164.0/22 6389 -68.216.168.0/21 6389 -68.216.176.0/20 23081 -68.216.192.0/18 6389 -68.217.0.0/19 7018 -68.217.32.0/19 6389 -68.217.64.0/19 6389 -68.217.96.0/20 6389 -68.217.112.0/21 6389 -68.217.120.0/21 7018 -68.217.128.0/17 6389 -68.222.0.0/17 6389 -68.222.128.0/19 6389 -68.222.160.0/19 7018 -68.222.192.0/20 6389 -68.222.208.0/21 7018 -68.222.216.0/21 6389 -68.222.224.0/20 7018 -68.222.240.0/20 6389 -68.223.0.0/16 6389 -68.224.0.0/17 22773 -68.224.128.0/19 22773 -68.224.160.0/22 22773 -68.224.164.0/22 13980 -68.224.168.0/21 22773 -68.224.176.0/20 22773 -68.224.192.0/18 22773 -68.225.0.0/20 22773 -68.225.16.0/21 22773 -68.225.24.0/24 32524 -68.225.25.0/24 22773 -68.225.26.0/23 22773 -68.225.28.0/22 22773 -68.225.32.0/19 22773 -68.225.64.0/18 22773 -68.225.128.0/17 22773 -68.226.0.0/15 22773 -68.228.0.0/18 22773 -68.228.64.0/19 22773 -68.228.96.0/21 22773 -68.228.104.0/22 22773 -68.228.108.0/24 25704 -68.228.109.0/24 22773 -68.228.110.0/23 22773 -68.228.112.0/20 22773 -68.228.128.0/17 22773 -68.229.0.0/16 22773 -68.230.0.0/15 22773 -68.232.0.0/19 1970 -68.232.34.0/23 15133 -68.232.38.0/24 15133 -68.232.40.0/24 15133 -68.232.41.0/24 14210 -68.232.42.0/24 15133 -68.232.44.0/23 15133 -68.232.48.0/20 30027 -68.232.64.0/20 21570 -68.232.80.0/20 11814 -68.232.112.0/20 7029 -68.232.128.0/22 16417 -68.232.132.0/23 30238 -68.232.134.0/23 16417 -68.232.136.0/23 16417 -68.232.138.0/23 30238 -68.232.140.0/22 16417 -68.232.144.0/22 16417 -68.232.148.0/23 16417 -68.232.150.0/23 30238 -68.232.152.0/24 30238 -68.232.153.0/24 16417 -68.232.154.0/23 16417 -68.232.156.0/24 30238 -68.232.157.0/24 16417 -68.232.158.0/24 16417 -68.232.159.0/24 30238 -68.232.160.0/19 20473 -68.232.192.0/20 22606 -68.232.208.0/20 46094 -68.232.224.0/19 12042 -68.233.0.0/19 26689 -68.233.32.0/20 46873 -68.233.48.0/23 394908 -68.233.50.0/24 394908 -68.233.51.0/24 22709 -68.233.52.0/23 209 -68.233.54.0/24 20115 -68.233.58.0/23 394908 -68.233.61.0/24 209 -68.233.62.0/23 209 -68.233.64.0/21 7160 -68.233.72.0/21 4192 -68.233.84.0/22 792 -68.233.128.0/20 12154 -68.233.144.0/20 16934 -68.233.160.0/20 27382 -68.233.176.0/20 18616 -68.233.192.0/19 14265 -68.233.224.0/19 29802 -68.234.0.0/19 40430 -68.234.32.0/24 11776 -68.234.33.0/24 397729 -68.234.36.0/24 21707 -68.234.37.0/24 16825 -68.234.38.0/24 27187 -68.234.39.0/24 394921 -68.234.40.0/22 64267 -68.234.44.0/24 397630 -68.234.45.0/24 64267 -68.234.46.0/23 64267 -68.234.48.0/22 3580 -68.234.52.0/23 3580 -68.234.54.0/24 3580 -68.234.55.0/24 396226 -68.234.56.0/22 3580 -68.234.60.0/24 3580 -68.234.61.0/24 26801 -68.234.62.0/23 26801 -68.234.64.0/20 397122 -68.234.80.0/22 46902 -68.234.90.0/24 46902 -68.234.96.0/19 25830 -68.234.128.0/23 23473 -68.234.130.0/24 46925 -68.234.131.0/24 23473 -68.234.132.0/24 23473 -68.234.134.0/23 23473 -68.234.139.0/24 23473 -68.234.140.0/24 23473 -68.234.142.0/24 23473 -68.234.144.0/23 23473 -68.234.148.0/22 23473 -68.234.152.0/24 23473 -68.234.156.0/22 23473 -68.234.160.0/24 46925 -68.234.164.0/22 23473 -68.234.168.0/23 23473 -68.234.170.0/24 23473 -68.234.172.0/24 23473 -68.234.176.0/22 23473 -68.234.181.0/24 23473 -68.234.182.0/23 23473 -68.234.185.0/24 23473 -68.234.186.0/23 23473 -68.234.188.0/23 46925 -68.234.190.0/23 23473 -68.234.193.0/24 23473 -68.234.194.0/23 23473 -68.234.196.0/22 23473 -68.234.200.0/21 23473 -68.234.208.0/23 23473 -68.234.212.0/24 23473 -68.234.216.0/24 23473 -68.234.220.0/22 23473 -68.234.224.0/24 23473 -68.234.232.0/21 23473 -68.234.240.0/24 23473 -68.234.242.0/23 23473 -68.234.244.0/23 46925 -68.234.248.0/24 23473 -68.234.252.0/22 23473 -68.235.0.0/23 19107 -68.235.2.0/24 13446 -68.235.4.0/22 19107 -68.235.8.0/21 19107 -68.235.20.0/22 13993 -68.235.32.0/20 11878 -68.235.48.0/23 11878 -68.235.50.0/24 11878 -68.235.51.0/24 19151 -68.235.52.0/22 11878 -68.235.56.0/21 11878 -68.235.64.0/18 14371 -68.235.128.0/19 11650 -68.235.160.0/20 18859 -68.235.176.0/20 5690 -68.235.210.0/24 19749 -68.235.216.0/23 19749 -68.235.220.0/23 19749 -68.235.223.0/24 19749 -68.235.224.0/19 14615 -68.236.0.0/18 701 -68.236.87.0/24 701 -68.236.96.0/19 701 -68.236.128.0/18 701 -68.236.192.0/19 701 -68.237.0.0/17 701 -68.237.128.0/21 174 -68.237.136.0/21 14671 -68.237.160.0/21 701 -68.237.168.0/21 5650 -68.237.192.0/18 701 -68.238.0.0/19 701 -68.238.48.0/20 13977 -68.238.64.0/20 701 -68.238.96.0/20 701 -68.238.112.0/21 701 -68.238.128.0/20 701 -68.238.144.0/20 5650 -68.238.160.0/21 701 -68.238.168.0/21 5650 -68.238.192.0/18 701 -68.239.64.0/18 701 -68.240.0.0/15 10507 -68.242.0.0/15 1239 -68.244.0.0/14 10507 -68.248.0.0/15 7018 -68.250.0.0/17 7018 -68.250.128.0/21 7018 -68.250.136.0/22 7018 -68.250.140.0/24 31952 -68.250.141.0/24 21900 -68.250.142.0/23 7018 -68.250.144.0/20 7018 -68.250.160.0/19 7018 -68.250.192.0/19 7018 -68.250.224.0/22 7018 -68.250.228.0/23 7018 -68.250.230.0/23 27216 -68.250.232.0/21 7018 -68.250.240.0/20 7018 -68.251.0.0/17 7018 -68.251.128.0/19 7018 -68.251.160.0/22 7018 -68.251.164.0/23 7018 -68.251.166.0/24 2386 -68.251.167.0/24 7018 -68.251.168.0/21 7018 -68.251.176.0/20 7018 -68.251.192.0/23 7018 -68.251.194.0/23 393635 -68.251.196.0/22 7018 -68.251.200.0/22 7018 -68.251.204.0/24 32625 -68.251.205.0/24 7018 -68.251.206.0/23 7018 -68.251.208.0/22 7018 -68.251.212.0/24 22197 -68.251.213.0/24 7018 -68.251.214.0/23 7018 -68.251.216.0/21 7018 -68.251.224.0/19 7018 -68.252.0.0/17 7018 -68.252.128.0/20 7018 -68.252.144.0/21 7018 -68.252.152.0/22 7018 -68.252.156.0/22 27482 -68.252.160.0/19 7018 -68.252.192.0/18 7018 -68.253.0.0/16 7018 -68.254.0.0/17 7018 -68.254.128.0/20 7018 -68.254.144.0/22 7018 -68.254.148.0/24 4466 -68.254.149.0/24 7018 -68.254.150.0/23 7018 -68.254.152.0/21 7018 -68.254.160.0/19 7018 -68.254.192.0/18 7018 -68.255.0.0/18 7018 -68.255.64.0/19 7018 -68.255.96.0/20 7018 -68.255.112.0/21 7018 -68.255.120.0/23 7018 -68.255.122.0/24 54283 -68.255.123.0/24 7018 -68.255.124.0/22 7018 -68.255.128.0/24 31759 -68.255.129.0/24 7018 -68.255.130.0/23 7018 -68.255.132.0/22 7018 -68.255.136.0/21 7018 -68.255.144.0/20 7018 -68.255.160.0/19 7018 -68.255.192.0/20 7018 -68.255.208.0/21 7018 -68.255.216.0/22 7018 -68.255.220.0/24 36528 -68.255.221.0/24 7018 -68.255.222.0/23 7018 -68.255.224.0/19 7018 -69.0.0.0/21 7018 -69.0.8.0/24 394276 -69.0.9.0/24 7018 -69.0.10.0/23 7018 -69.0.12.0/22 7018 -69.0.16.0/22 7018 -69.0.20.0/24 394276 -69.0.21.0/24 7018 -69.0.22.0/23 7018 -69.0.24.0/22 7018 -69.0.28.0/24 7018 -69.0.29.0/24 394276 -69.0.30.0/23 7018 -69.0.32.0/19 7018 -69.0.64.0/19 7018 -69.0.96.0/21 7018 -69.0.104.0/24 27309 -69.0.105.0/24 7018 -69.0.106.0/23 7018 -69.0.108.0/22 7018 -69.0.112.0/20 7018 -69.0.128.0/17 13768 -69.1.0.0/19 12083 -69.1.32.0/22 12083 -69.1.36.0/24 27482 -69.1.37.0/24 12083 -69.1.38.0/23 12083 -69.1.40.0/21 12083 -69.1.48.0/20 12083 -69.1.64.0/24 6473 -69.1.67.0/24 6473 -69.1.68.0/24 6473 -69.1.70.0/24 6473 -69.1.71.0/24 26346 -69.1.72.0/22 6473 -69.1.76.0/23 6473 -69.1.90.0/23 6473 -69.1.92.0/23 6473 -69.1.96.0/23 13692 -69.1.98.0/24 55246 -69.1.99.0/24 25899 -69.1.100.0/24 25899 -69.1.101.0/24 13692 -69.1.102.0/23 25899 -69.1.104.0/23 13692 -69.1.106.0/24 25899 -69.1.107.0/24 55246 -69.1.108.0/24 55246 -69.1.109.0/24 13692 -69.1.110.0/24 25899 -69.1.111.0/24 25961 -69.1.112.0/23 25899 -69.1.114.0/24 397422 -69.1.115.0/24 11404 -69.1.116.0/23 10488 -69.1.118.0/24 25899 -69.1.119.0/24 397422 -69.1.120.0/24 397422 -69.1.121.0/24 11404 -69.1.122.0/24 397422 -69.1.123.0/24 25899 -69.1.124.0/24 55246 -69.1.125.0/24 25961 -69.1.126.0/24 55246 -69.1.127.0/24 397422 -69.1.128.0/20 26091 -69.1.144.0/22 26091 -69.1.148.0/22 64228 -69.1.152.0/21 26091 -69.1.160.0/22 25921 -69.1.164.0/24 25921 -69.1.165.0/24 11966 -69.1.166.0/23 25921 -69.1.168.0/21 25921 -69.1.176.0/20 25921 -69.1.227.0/24 32641 -69.1.228.0/24 174 -69.1.254.0/23 174 -69.2.0.0/20 27005 -69.2.16.0/20 14103 -69.2.32.0/19 20355 -69.2.64.0/19 7029 -69.2.96.0/22 11927 -69.2.100.0/24 11927 -69.2.101.0/24 14618 -69.2.104.0/23 12025 -69.2.108.0/22 11927 -69.2.112.0/23 11927 -69.2.114.0/24 11927 -69.2.116.0/24 12025 -69.2.117.0/24 11927 -69.2.118.0/23 11927 -69.2.121.0/24 22883 -69.2.124.0/23 22883 -69.2.128.0/19 54304 -69.2.160.0/19 21981 -69.2.192.0/24 19271 -69.2.193.0/24 32880 -69.2.194.0/23 19271 -69.2.196.0/23 19271 -69.2.198.0/24 19271 -69.2.199.0/24 32880 -69.2.200.0/21 19271 -69.2.208.0/21 19271 -69.2.216.0/23 19271 -69.2.218.0/23 32880 -69.2.220.0/24 32880 -69.2.221.0/24 19271 -69.2.222.0/23 19271 -69.2.224.0/19 7385 -69.3.0.0/17 18566 -69.3.128.0/23 18566 -69.3.130.0/24 18566 -69.3.131.0/24 26669 -69.3.132.0/22 18566 -69.3.136.0/21 18566 -69.3.144.0/20 18566 -69.3.160.0/19 18566 -69.3.192.0/18 18566 -69.4.0.0/21 19229 -69.4.8.0/23 394453 -69.4.10.0/23 19229 -69.4.12.0/22 19229 -69.4.16.0/20 19229 -69.4.32.0/20 6954 -69.4.48.0/20 23481 -69.4.64.0/20 26241 -69.4.80.0/20 55286 -69.4.96.0/19 11796 -69.4.128.0/19 14051 -69.4.160.0/20 15146 -69.4.176.0/20 20340 -69.4.192.0/20 20436 -69.4.208.0/20 19515 -69.4.224.0/21 36351 -69.4.233.0/24 36351 -69.4.234.0/24 29854 -69.4.235.0/24 36351 -69.4.239.0/24 13213 -69.4.240.0/20 15055 -69.5.0.0/19 22915 -69.5.32.0/20 11069 -69.5.64.0/19 29748 -69.5.96.0/20 18516 -69.5.112.0/20 33604 -69.5.128.0/19 26793 -69.5.160.0/19 19237 -69.5.192.0/19 53423 -69.5.224.0/20 30663 -69.5.240.0/21 47030 -69.5.248.0/23 47030 -69.5.250.0/24 396181 -69.5.251.0/24 47030 -69.5.252.0/23 47030 -69.5.254.0/23 396181 -69.6.0.0/19 35432 -69.6.32.0/19 15735 -69.6.64.0/20 131926 -69.6.96.0/19 396485 -69.6.128.0/19 6620 -69.6.160.0/23 6620 -69.6.163.0/24 6620 -69.6.165.0/24 46715 -69.6.166.0/23 6620 -69.6.168.0/23 6620 -69.6.170.0/24 6620 -69.6.172.0/22 6620 -69.6.176.0/22 6620 -69.6.180.0/24 6620 -69.6.182.0/24 6620 -69.6.186.0/23 6620 -69.6.188.0/22 6620 -69.6.192.0/18 46606 -69.7.0.0/20 10271 -69.7.16.0/20 26326 -69.7.32.0/19 26792 -69.7.76.0/23 18950 -69.7.79.0/24 18950 -69.7.80.0/22 18618 -69.7.84.0/23 18618 -69.7.86.0/24 53646 -69.7.87.0/24 18618 -69.7.88.0/22 53646 -69.7.92.0/22 18618 -69.7.96.0/22 17054 -69.7.100.0/23 17054 -69.7.102.0/24 17054 -69.7.103.0/24 4871 -69.7.104.0/21 17054 -69.7.112.0/20 30043 -69.7.128.0/22 7046 -69.7.132.0/23 7046 -69.7.136.0/23 7046 -69.7.144.0/22 7046 -69.7.148.0/23 7046 -69.7.150.0/24 7046 -69.7.152.0/23 7046 -69.7.155.0/24 7046 -69.7.160.0/19 62 -69.7.192.0/19 16399 -69.7.224.0/20 17378 -69.7.240.0/20 13468 -69.8.0.0/22 8025 -69.8.4.0/23 395795 -69.8.6.0/23 8025 -69.8.8.0/21 8025 -69.8.16.0/20 8025 -69.8.32.0/20 8025 -69.8.48.0/21 8025 -69.8.56.0/22 8025 -69.8.60.0/23 8025 -69.8.62.0/24 8025 -69.8.63.0/24 27268 -69.8.112.0/20 17223 -69.8.128.0/21 7029 -69.8.136.0/22 26284 -69.8.140.0/22 7029 -69.8.144.0/20 7029 -69.8.160.0/20 21766 -69.8.176.0/20 6461 -69.8.192.0/22 209 -69.8.196.0/22 25884 -69.8.200.0/21 209 -69.8.208.0/22 209 -69.8.212.0/24 21622 -69.8.213.0/24 209 -69.8.214.0/23 209 -69.8.216.0/21 209 -69.8.224.0/22 209 -69.8.228.0/24 63121 -69.8.229.0/24 209 -69.8.230.0/23 209 -69.8.232.0/21 209 -69.8.240.0/20 209 -69.9.0.0/19 22632 -69.9.32.0/21 29838 -69.9.40.0/24 46976 -69.9.41.0/24 29838 -69.9.42.0/23 29838 -69.9.44.0/22 29838 -69.9.48.0/20 17306 -69.9.64.0/18 19397 -69.9.128.0/19 6296 -69.9.160.0/19 29791 -69.9.192.0/19 11232 -69.9.224.0/20 11232 -69.9.240.0/21 11232 -69.9.248.0/24 394790 -69.9.249.0/24 11232 -69.9.250.0/23 11232 -69.9.252.0/22 11232 -69.10.0.0/20 54326 -69.10.16.0/21 27437 -69.10.32.0/19 19318 -69.10.64.0/19 18972 -69.10.96.0/19 16495 -69.10.128.0/19 19875 -69.10.160.0/20 4986 -69.10.180.0/22 1406 -69.10.184.0/22 1406 -69.10.192.0/19 20394 -69.10.224.0/20 23136 -69.10.240.0/24 36325 -69.10.244.0/23 12211 -69.11.0.0/17 803 -69.11.128.0/17 4181 -69.12.0.0/24 4565 -69.12.1.0/24 7381 -69.12.2.0/23 393967 -69.12.4.0/22 63450 -69.12.8.0/23 11742 -69.12.10.0/24 4565 -69.12.11.0/24 393467 -69.12.12.0/22 3737 -69.12.16.0/21 3685 -69.12.25.0/24 20473 -69.12.26.0/23 46450 -69.12.28.0/22 47087 -69.12.32.0/22 30028 -69.12.36.0/24 394315 -69.12.37.0/24 4565 -69.12.38.0/24 54375 -69.12.39.0/24 4565 -69.12.40.0/24 4565 -69.12.42.0/23 10634 -69.12.44.0/22 16863 -69.12.48.0/22 54706 -69.12.52.0/23 55154 -69.12.54.0/24 4565 -69.12.55.0/24 393813 -69.12.56.0/21 63179 -69.12.64.0/19 8100 -69.12.96.0/22 7257 -69.12.101.0/24 7257 -69.12.102.0/23 7257 -69.12.104.0/24 5769 -69.12.105.0/24 4565 -69.12.107.0/24 53845 -69.12.108.0/22 40945 -69.12.112.0/20 8025 -69.12.128.0/17 7065 -69.13.0.0/16 54489 -69.14.0.0/17 12083 -69.14.128.0/19 12083 -69.14.160.0/23 12083 -69.14.162.0/24 12083 -69.14.163.0/24 25903 -69.14.164.0/22 12083 -69.14.168.0/21 12083 -69.14.176.0/20 12083 -69.14.192.0/19 12083 -69.14.224.0/20 12083 -69.14.240.0/24 47042 -69.14.241.0/24 12083 -69.14.242.0/23 12083 -69.14.244.0/22 12083 -69.14.248.0/21 12083 -69.15.0.0/16 17184 -69.16.0.0/22 1968 -69.16.4.0/22 1256 -69.16.8.0/22 1256 -69.16.12.0/22 1968 -69.16.16.0/20 1968 -69.16.32.0/21 1968 -69.16.40.0/21 1256 -69.16.48.0/20 1256 -69.16.64.0/23 1256 -69.16.66.0/24 1256 -69.16.67.0/24 1968 -69.16.68.0/22 1968 -69.16.72.0/21 1968 -69.16.80.0/20 1256 -69.16.96.0/20 1256 -69.16.112.0/21 1256 -69.16.120.0/21 1968 -69.16.128.0/23 12989 -69.16.130.0/24 12989 -69.16.131.0/24 11588 -69.16.132.0/22 12989 -69.16.136.0/22 12989 -69.16.140.0/23 12989 -69.16.142.0/24 11588 -69.16.143.0/24 12989 -69.16.144.0/24 11588 -69.16.145.0/24 12989 -69.16.146.0/24 12989 -69.16.147.0/24 11588 -69.16.148.0/22 12989 -69.16.152.0/24 12989 -69.16.153.0/24 11588 -69.16.154.0/23 12989 -69.16.156.0/24 12989 -69.16.157.0/24 11588 -69.16.158.0/23 12989 -69.16.160.0/24 34305 -69.16.161.0/24 11588 -69.16.162.0/24 11588 -69.16.163.0/24 12989 -69.16.164.0/24 20446 -69.16.165.0/24 11588 -69.16.166.0/23 11588 -69.16.168.0/24 12989 -69.16.169.0/24 34305 -69.16.170.0/23 34305 -69.16.172.0/24 12989 -69.16.174.0/23 20446 -69.16.176.0/23 12989 -69.16.178.0/23 34305 -69.16.180.0/23 12989 -69.16.184.0/24 12989 -69.16.185.0/24 34305 -69.16.186.0/23 12989 -69.16.188.0/22 12989 -69.16.192.0/18 32244 -69.17.0.0/18 18566 -69.17.64.0/21 18566 -69.17.72.0/22 18566 -69.17.76.0/23 18566 -69.17.78.0/24 11696 -69.17.79.0/24 18566 -69.17.80.0/24 11696 -69.17.81.0/24 18566 -69.17.82.0/23 18566 -69.17.84.0/22 18566 -69.17.88.0/21 18566 -69.17.96.0/19 18566 -69.17.128.0/19 812 -69.17.160.0/21 812 -69.17.168.0/24 812 -69.17.169.0/24 46872 -69.17.170.0/23 812 -69.17.172.0/22 812 -69.17.176.0/22 812 -69.17.180.0/23 812 -69.17.182.0/24 812 -69.17.183.0/24 395479 -69.17.184.0/21 812 -69.17.192.0/19 11269 -69.17.224.0/19 10996 -69.18.0.0/18 12133 -69.18.64.0/20 209 -69.18.80.0/23 22561 -69.18.82.0/23 209 -69.18.84.0/22 209 -69.18.88.0/22 22561 -69.18.92.0/22 209 -69.18.96.0/24 209 -69.18.97.0/24 40447 -69.18.98.0/23 40447 -69.18.100.0/24 22561 -69.18.101.0/24 209 -69.18.102.0/23 209 -69.18.104.0/24 209 -69.18.105.0/24 22561 -69.18.106.0/24 22561 -69.18.107.0/24 209 -69.18.108.0/22 209 -69.18.112.0/22 209 -69.18.116.0/23 209 -69.18.118.0/23 22561 -69.18.120.0/22 209 -69.18.124.0/22 22561 -69.18.128.0/18 21886 -69.18.192.0/19 21886 -69.18.224.0/19 30612 -69.19.0.0/19 6621 -69.19.128.0/22 14265 -69.19.132.0/23 14265 -69.19.135.0/24 19864 -69.19.136.0/21 14265 -69.19.144.0/20 14265 -69.19.160.0/24 14265 -69.19.161.0/24 19864 -69.19.162.0/23 19864 -69.19.164.0/22 19864 -69.19.168.0/21 8134 -69.19.176.0/21 19864 -69.19.184.0/23 19864 -69.19.186.0/23 14265 -69.19.188.0/23 14265 -69.19.190.0/24 19864 -69.19.192.0/22 14265 -69.19.196.0/24 11915 -69.19.197.0/24 14265 -69.19.198.0/23 14265 -69.19.200.0/21 14265 -69.19.208.0/21 14265 -69.19.216.0/24 14265 -69.19.218.0/23 19864 -69.19.220.0/22 19864 -69.19.224.0/22 14265 -69.19.228.0/24 14265 -69.19.229.0/24 19864 -69.19.230.0/23 14265 -69.19.232.0/23 14265 -69.19.234.0/24 14265 -69.19.236.0/23 14265 -69.19.238.0/23 19864 -69.19.240.0/24 19864 -69.19.241.0/24 14265 -69.19.242.0/23 14265 -69.19.244.0/23 11915 -69.19.246.0/23 19864 -69.19.248.0/24 19864 -69.19.249.0/24 14265 -69.19.250.0/23 14265 -69.19.252.0/24 19864 -69.19.253.0/24 14265 -69.19.254.0/23 19864 -69.20.0.0/17 27357 -69.20.128.0/18 6594 -69.20.192.0/19 32101 -69.20.224.0/19 812 -69.21.0.0/18 4181 -69.21.64.0/20 4181 -69.21.80.0/22 4181 -69.21.84.0/24 46081 -69.21.85.0/24 4181 -69.21.86.0/23 4181 -69.21.88.0/21 4181 -69.21.96.0/19 4181 -69.21.128.0/19 4181 -69.21.160.0/22 4181 -69.21.164.0/24 4181 -69.21.165.0/24 15285 -69.21.166.0/23 4181 -69.21.168.0/21 4181 -69.21.176.0/20 4181 -69.21.192.0/18 4181 -69.22.0.0/18 11427 -69.22.64.0/18 33363 -69.22.128.0/22 3257 -69.22.132.0/22 23420 -69.22.136.0/21 3257 -69.22.144.0/21 3257 -69.22.152.0/22 3257 -69.22.156.0/23 3257 -69.22.158.0/24 3257 -69.22.159.0/24 32959 -69.22.160.0/21 3257 -69.22.168.0/22 3257 -69.22.172.0/23 3257 -69.22.174.0/24 3257 -69.22.175.0/24 40475 -69.22.176.0/21 3257 -69.22.184.0/22 3257 -69.22.188.0/24 62804 -69.22.189.0/24 3257 -69.22.190.0/23 3257 -69.22.192.0/18 12271 -69.23.0.0/18 10796 -69.23.64.0/19 10796 -69.23.96.0/20 10796 -69.23.112.0/20 11427 -69.23.128.0/18 11427 -69.23.192.0/20 11955 -69.23.208.0/20 10796 -69.23.224.0/20 10796 -69.23.240.0/20 11955 -69.24.0.0/22 10809 -69.24.4.0/23 10809 -69.24.6.0/23 11524 -69.24.8.0/21 11524 -69.24.16.0/21 6181 -69.24.24.0/22 6181 -69.24.28.0/23 10796 -69.24.30.0/24 10796 -69.24.31.0/24 6181 -69.24.32.0/20 26410 -69.24.48.0/20 395761 -69.24.64.0/19 40728 -69.24.96.0/20 23497 -69.24.112.0/20 13904 -69.24.128.0/23 16526 -69.24.134.0/24 16526 -69.24.139.0/24 20448 -69.24.144.0/20 19600 -69.24.160.0/19 12042 -69.24.192.0/22 22364 -69.24.196.0/24 22364 -69.24.197.0/24 21559 -69.24.198.0/23 21559 -69.24.200.0/24 21559 -69.24.201.0/24 22364 -69.24.202.0/23 22364 -69.24.204.0/22 22364 -69.24.208.0/20 19526 -69.24.224.0/20 31841 -69.24.240.0/20 46175 -69.25.0.0/22 12180 -69.25.4.0/24 28110 -69.25.5.0/24 12180 -69.25.6.0/24 26555 -69.25.7.0/24 12180 -69.25.8.0/24 12180 -69.25.9.0/24 27229 -69.25.10.0/24 10912 -69.25.11.0/24 12180 -69.25.12.0/22 12180 -69.25.16.0/23 10913 -69.25.18.0/23 3356 -69.25.20.0/22 10913 -69.25.24.0/23 10913 -69.25.26.0/24 53780 -69.25.27.0/24 10913 -69.25.28.0/22 10913 -69.25.32.0/24 10913 -69.25.33.0/24 40651 -69.25.34.0/23 10913 -69.25.36.0/23 23078 -69.25.38.0/23 10913 -69.25.40.0/23 10913 -69.25.42.0/24 22143 -69.25.43.0/24 63142 -69.25.44.0/24 10913 -69.25.45.0/24 40150 -69.25.46.0/24 33675 -69.25.47.0/24 10913 -69.25.48.0/23 12180 -69.25.50.0/24 27229 -69.25.51.0/24 11653 -69.25.52.0/22 12180 -69.25.56.0/22 12182 -69.25.60.0/23 12182 -69.25.62.0/24 12182 -69.25.63.0/24 29791 -69.25.64.0/22 14742 -69.25.68.0/23 14742 -69.25.70.0/24 26654 -69.25.71.0/24 14742 -69.25.72.0/21 14742 -69.25.80.0/24 14745 -69.25.81.0/24 13792 -69.25.82.0/23 14745 -69.25.84.0/24 53766 -69.25.85.0/24 14745 -69.25.86.0/24 14745 -69.25.87.0/24 12179 -69.25.88.0/21 14745 -69.25.96.0/22 14743 -69.25.100.0/24 55034 -69.25.101.0/24 14743 -69.25.102.0/23 14743 -69.25.104.0/24 12182 -69.25.105.0/24 14743 -69.25.106.0/23 14743 -69.25.108.0/24 14743 -69.25.109.0/24 63388 -69.25.110.0/24 25985 -69.25.111.0/24 14743 -69.25.112.0/21 10910 -69.25.120.0/21 11855 -69.25.128.0/23 14744 -69.25.130.0/24 14744 -69.25.131.0/24 6640 -69.25.132.0/22 14744 -69.25.136.0/22 14744 -69.25.140.0/23 14744 -69.25.142.0/24 14744 -69.25.143.0/24 393517 -69.25.144.0/23 19024 -69.25.146.0/24 46852 -69.25.147.0/24 19024 -69.25.148.0/24 19024 -69.25.149.0/24 6640 -69.25.150.0/23 394647 -69.25.152.0/24 21734 -69.25.153.0/24 19024 -69.25.154.0/23 19024 -69.25.156.0/23 32385 -69.25.158.0/23 19024 -69.25.160.0/23 12180 -69.25.162.0/23 17119 -69.25.164.0/22 12180 -69.25.168.0/22 11855 -69.25.172.0/23 11855 -69.25.174.0/24 7116 -69.25.175.0/24 11855 -69.25.176.0/24 27229 -69.25.177.0/24 12180 -69.25.178.0/23 12180 -69.25.180.0/22 12180 -69.25.184.0/22 12180 -69.25.188.0/23 15570 -69.25.190.0/23 12180 -69.25.192.0/21 14742 -69.25.200.0/22 14742 -69.25.204.0/24 23053 -69.25.205.0/24 14742 -69.25.206.0/24 14742 -69.25.207.0/24 394314 -69.25.208.0/21 13790 -69.25.216.0/23 13790 -69.25.218.0/24 63188 -69.25.219.0/24 13790 -69.25.220.0/22 13790 -69.25.224.0/21 11855 -69.25.232.0/24 26858 -69.25.233.0/24 12181 -69.25.234.0/23 12181 -69.25.240.0/23 19024 -69.25.242.0/24 26897 -69.25.243.0/24 19024 -69.25.244.0/22 19024 -69.25.248.0/21 19024 -69.26.0.0/19 27539 -69.26.32.0/24 18485 -69.26.33.0/24 17307 -69.26.34.0/24 19804 -69.26.35.0/24 17307 -69.26.36.0/24 46108 -69.26.37.0/24 19803 -69.26.38.0/24 19803 -69.26.39.0/24 17307 -69.26.40.0/24 17307 -69.26.41.0/24 18486 -69.26.42.0/24 17307 -69.26.43.0/24 18488 -69.26.44.0/23 17307 -69.26.46.0/24 19806 -69.26.47.0/24 18485 -69.26.48.0/24 18491 -69.26.49.0/24 35953 -69.26.50.0/23 17307 -69.26.52.0/24 17307 -69.26.53.0/24 19806 -69.26.54.0/24 17307 -69.26.55.0/24 19809 -69.26.56.0/23 17307 -69.26.58.0/24 35953 -69.26.59.0/24 19803 -69.26.60.0/24 24118 -69.26.61.0/24 18484 -69.26.62.0/23 17307 -69.26.64.0/19 27181 -69.26.96.0/19 17113 -69.26.128.0/19 10993 -69.26.160.0/19 13445 -69.26.192.0/24 20077 -69.26.193.0/24 13963 -69.26.194.0/23 20077 -69.26.196.0/22 20077 -69.26.200.0/22 18990 -69.26.204.0/22 20077 -69.26.208.0/21 20077 -69.26.216.0/23 20077 -69.26.218.0/24 27596 -69.26.219.0/24 20077 -69.26.220.0/24 30108 -69.26.221.0/24 20077 -69.26.222.0/24 20077 -69.26.223.0/24 1440 -69.26.224.0/20 20077 -69.26.240.0/23 20077 -69.26.242.0/24 18990 -69.26.243.0/24 20077 -69.26.244.0/22 20077 -69.26.248.0/22 20077 -69.26.252.0/24 20077 -69.26.253.0/24 18990 -69.26.254.0/23 20077 -69.27.0.0/19 13415 -69.27.32.0/22 46433 -69.27.36.0/24 62897 -69.27.37.0/24 46433 -69.27.38.0/23 46433 -69.27.40.0/24 46433 -69.27.41.0/24 62897 -69.27.42.0/24 62897 -69.27.43.0/24 46433 -69.27.44.0/24 62897 -69.27.45.0/24 46433 -69.27.46.0/23 46433 -69.27.48.0/20 40389 -69.27.64.0/19 17310 -69.27.96.0/19 20218 -69.27.128.0/20 27258 -69.27.144.0/22 27258 -69.27.148.0/24 32758 -69.27.149.0/24 27258 -69.27.150.0/24 394541 -69.27.151.0/24 27258 -69.27.152.0/21 27258 -69.27.160.0/20 11798 -69.27.176.0/20 19306 -69.27.192.0/24 10750 -69.27.193.0/24 62943 -69.27.194.0/23 62943 -69.27.196.0/24 62943 -69.27.197.0/24 10750 -69.27.198.0/23 62943 -69.27.200.0/21 62943 -69.27.208.0/22 62943 -69.27.212.0/24 395040 -69.27.213.0/24 62943 -69.27.214.0/23 62943 -69.27.216.0/23 62943 -69.27.218.0/24 62943 -69.27.219.0/24 393442 -69.27.220.0/22 62943 -69.27.224.0/22 6128 -69.27.228.0/24 6128 -69.27.229.0/24 25611 -69.27.230.0/24 29949 -69.27.231.0/24 6128 -69.27.232.0/21 6128 -69.27.240.0/24 14251 -69.27.241.0/24 6128 -69.27.242.0/23 6128 -69.27.244.0/23 6128 -69.27.246.0/24 6128 -69.27.247.0/24 27478 -69.27.248.0/21 6128 -69.28.0.0/19 7268 -69.28.32.0/20 31857 -69.28.48.0/20 21859 -69.28.64.0/23 6364 -69.28.66.0/24 6364 -69.28.67.0/24 13768 -69.28.68.0/22 6364 -69.28.72.0/21 6364 -69.28.80.0/23 6364 -69.28.82.0/23 13768 -69.28.84.0/22 6364 -69.28.88.0/21 6364 -69.28.96.0/21 32035 -69.28.104.0/22 32035 -69.28.108.0/24 20419 -69.28.109.0/24 32035 -69.28.110.0/23 32035 -69.28.112.0/22 32035 -69.28.116.0/24 20419 -69.28.117.0/24 32035 -69.28.118.0/23 32035 -69.28.120.0/21 32035 -69.28.128.0/21 22822 -69.28.136.0/22 22822 -69.28.140.0/23 22822 -69.28.142.0/24 22822 -69.28.143.0/24 3303 -69.28.144.0/20 22822 -69.28.160.0/19 22822 -69.28.192.0/21 13768 -69.28.202.0/24 13768 -69.28.204.0/22 13768 -69.28.208.0/21 13768 -69.28.216.0/22 13768 -69.28.220.0/23 13768 -69.28.222.0/23 29909 -69.28.224.0/20 13768 -69.28.240.0/22 13768 -69.28.244.0/24 13768 -69.28.245.0/24 1418 -69.28.246.0/24 36605 -69.28.247.0/24 13768 -69.28.248.0/24 62731 -69.28.249.0/24 13768 -69.28.250.0/23 13768 -69.28.252.0/23 13768 -69.28.254.0/24 29909 -69.28.255.0/24 21719 -69.29.0.0/23 209 -69.29.2.0/24 22561 -69.29.3.0/24 209 -69.29.4.0/22 22561 -69.29.8.0/21 22561 -69.29.16.0/20 22561 -69.29.32.0/19 22561 -69.29.64.0/20 22561 -69.29.80.0/22 22561 -69.29.84.0/22 209 -69.29.88.0/21 22561 -69.29.96.0/19 22561 -69.29.128.0/19 22561 -69.29.160.0/22 22561 -69.29.164.0/24 22561 -69.29.165.0/24 209 -69.29.166.0/23 22561 -69.29.168.0/21 22561 -69.29.176.0/20 22561 -69.29.192.0/22 209 -69.29.196.0/22 22561 -69.29.200.0/21 22561 -69.29.208.0/22 209 -69.29.212.0/22 22561 -69.29.216.0/21 22561 -69.29.224.0/19 22561 -69.30.0.0/19 6423 -69.30.32.0/20 6423 -69.30.48.0/22 6423 -69.30.52.0/23 6423 -69.30.54.0/24 6423 -69.30.55.0/24 30478 -69.30.56.0/21 6423 -69.30.64.0/20 2044 -69.30.80.0/20 6423 -69.30.96.0/19 6423 -69.30.128.0/18 7029 -69.30.192.0/18 32097 -69.31.0.0/21 3257 -69.31.8.0/22 3257 -69.31.12.0/23 14383 -69.31.14.0/23 3257 -69.31.16.0/21 23420 -69.31.24.0/21 3257 -69.31.32.0/19 3257 -69.31.64.0/19 3257 -69.31.96.0/21 3257 -69.31.104.0/24 10625 -69.31.105.0/24 3257 -69.31.106.0/23 35994 -69.31.108.0/22 3257 -69.31.112.0/20 3257 -69.31.128.0/22 3257 -69.31.132.0/23 3257 -69.31.134.0/24 36352 -69.31.135.0/24 3257 -69.31.136.0/21 3257 -69.31.144.0/20 27294 -69.31.160.0/19 30295 -69.31.192.0/18 40473 -69.32.123.0/24 27365 -69.32.127.0/24 27365 -69.32.128.0/21 27365 -69.32.138.0/23 27365 -69.32.140.0/24 27365 -69.32.142.0/23 27365 -69.32.146.0/23 27365 -69.32.148.0/23 27365 -69.32.159.0/24 27365 -69.32.164.0/24 40124 -69.32.172.0/24 27365 -69.32.175.0/24 22488 -69.32.176.0/24 209 -69.32.178.0/23 27365 -69.32.180.0/23 3561 -69.32.182.0/23 27365 -69.32.184.0/24 27365 -69.32.188.0/24 55444 -69.32.189.0/24 40124 -69.32.192.0/22 27365 -69.32.200.0/21 27365 -69.32.208.0/22 27365 -69.32.216.0/21 27365 -69.32.224.0/24 27365 -69.32.226.0/23 27365 -69.32.228.0/23 27365 -69.32.233.0/24 20433 -69.32.246.0/23 27365 -69.32.250.0/24 209 -69.32.252.0/23 27365 -69.33.0.0/20 4565 -69.33.16.0/21 4565 -69.33.24.0/22 4565 -69.33.28.0/23 4565 -69.33.30.0/24 4565 -69.33.31.0/24 32416 -69.33.32.0/19 4565 -69.33.64.0/19 4565 -69.33.96.0/20 4565 -69.33.112.0/23 11563 -69.33.114.0/23 4565 -69.33.116.0/22 4565 -69.33.120.0/23 4565 -69.33.122.0/24 18566 -69.33.123.0/24 4565 -69.33.124.0/22 4565 -69.33.128.0/19 4565 -69.33.160.0/20 4565 -69.33.176.0/22 4565 -69.33.180.0/23 4565 -69.33.182.0/24 6267 -69.33.183.0/24 4565 -69.33.184.0/21 4565 -69.33.192.0/18 4565 -69.34.0.0/22 2379 -69.34.4.0/24 2379 -69.34.5.0/24 209 -69.34.6.0/24 209 -69.34.7.0/24 2379 -69.34.8.0/22 2379 -69.34.12.0/24 209 -69.34.13.0/24 2379 -69.34.14.0/24 209 -69.34.15.0/24 2379 -69.34.16.0/20 209 -69.34.32.0/23 209 -69.34.34.0/24 209 -69.34.35.0/24 14905 -69.34.36.0/24 209 -69.34.37.0/24 2379 -69.34.38.0/24 2379 -69.34.39.0/24 209 -69.34.40.0/23 209 -69.34.42.0/24 209 -69.34.43.0/24 5778 -69.34.44.0/22 209 -69.34.48.0/21 17402 -69.34.56.0/24 6222 -69.34.57.0/24 209 -69.34.58.0/23 6222 -69.34.60.0/22 6222 -69.34.64.0/22 17402 -69.34.68.0/23 209 -69.34.70.0/24 5778 -69.34.71.0/24 209 -69.34.72.0/22 2379 -69.34.76.0/24 2379 -69.34.77.0/24 209 -69.34.78.0/24 209 -69.34.79.0/24 2379 -69.34.80.0/23 2379 -69.34.82.0/24 209 -69.34.83.0/24 2379 -69.34.84.0/22 2379 -69.34.88.0/22 6222 -69.34.92.0/24 6222 -69.34.93.0/24 209 -69.34.94.0/24 209 -69.34.95.0/24 6222 -69.34.96.0/22 209 -69.34.100.0/24 209 -69.34.101.0/24 11398 -69.34.102.0/23 209 -69.34.104.0/21 209 -69.34.112.0/22 16718 -69.34.116.0/23 18494 -69.34.118.0/24 209 -69.34.119.0/24 18494 -69.34.120.0/23 5778 -69.34.122.0/24 209 -69.34.123.0/24 5778 -69.34.124.0/22 5778 -69.34.128.0/21 209 -69.34.136.0/23 209 -69.34.138.0/23 2379 -69.34.140.0/22 2379 -69.34.144.0/20 209 -69.34.160.0/21 6222 -69.34.168.0/22 209 -69.34.172.0/23 209 -69.34.174.0/23 11398 -69.34.176.0/21 209 -69.34.184.0/22 209 -69.34.188.0/22 16718 -69.34.192.0/22 11398 -69.34.196.0/22 209 -69.34.200.0/24 18494 -69.34.201.0/24 209 -69.34.202.0/24 18494 -69.34.203.0/24 209 -69.34.204.0/22 18494 -69.34.208.0/22 14905 -69.34.212.0/22 17402 -69.34.216.0/22 14921 -69.34.220.0/22 209 -69.34.224.0/24 2379 -69.34.225.0/24 209 -69.34.226.0/23 2379 -69.34.228.0/22 4282 -69.34.232.0/22 2379 -69.34.236.0/24 2379 -69.34.237.0/24 209 -69.34.238.0/24 2379 -69.34.239.0/24 209 -69.34.240.0/22 6367 -69.34.244.0/22 209 -69.34.248.0/22 209 -69.34.252.0/23 209 -69.34.254.0/23 14905 -69.35.0.0/19 6621 -69.35.32.0/21 6621 -69.35.40.0/22 1358 -69.35.44.0/22 6621 -69.35.48.0/20 6621 -69.35.64.0/18 6621 -69.35.128.0/17 6621 -69.36.0.0/20 393950 -69.36.16.0/24 18434 -69.36.18.0/24 18434 -69.36.20.0/23 18434 -69.36.26.0/23 18434 -69.36.32.0/20 18462 -69.36.48.0/20 19310 -69.36.64.0/19 27597 -69.36.96.0/20 15247 -69.36.112.0/22 15247 -69.36.116.0/23 15247 -69.36.118.0/24 63003 -69.36.119.0/24 15247 -69.36.120.0/21 15247 -69.36.128.0/22 13989 -69.36.132.0/24 33353 -69.36.133.0/24 13989 -69.36.134.0/24 33353 -69.36.135.0/24 13989 -69.36.136.0/21 13989 -69.36.144.0/24 26415 -69.36.145.0/24 10515 -69.36.147.0/24 30060 -69.36.148.0/24 26134 -69.36.149.0/24 7342 -69.36.150.0/24 30060 -69.36.153.0/24 20431 -69.36.155.0/24 26134 -69.36.157.0/24 10515 -69.36.159.0/24 30060 -69.36.160.0/20 29854 -69.36.176.0/22 29854 -69.36.180.0/23 29854 -69.36.182.0/23 32780 -69.36.184.0/21 29854 -69.36.192.0/20 30263 -69.36.208.0/20 23118 -69.36.224.0/19 11404 -69.37.0.0/18 7018 -69.37.64.0/19 7018 -69.37.96.0/20 7018 -69.37.112.0/22 7018 -69.37.116.0/23 7018 -69.37.118.0/23 19917 -69.37.120.0/21 7018 -69.37.128.0/17 7018 -69.38.0.0/17 7029 -69.38.128.0/21 26878 -69.38.136.0/22 26878 -69.38.140.0/24 398028 -69.38.141.0/24 26878 -69.38.142.0/23 26878 -69.38.144.0/22 19406 -69.38.148.0/24 31780 -69.38.149.0/24 19406 -69.38.150.0/23 19406 -69.38.152.0/21 19406 -69.38.160.0/20 26878 -69.38.176.0/22 19406 -69.38.180.0/22 32654 -69.38.184.0/21 32654 -69.38.192.0/20 32654 -69.38.208.0/20 21879 -69.38.224.0/22 26878 -69.38.228.0/23 26878 -69.38.230.0/24 53693 -69.38.231.0/24 26878 -69.38.232.0/24 26878 -69.38.233.0/24 394262 -69.38.234.0/23 26878 -69.38.236.0/22 26878 -69.38.240.0/21 26878 -69.38.248.0/24 11253 -69.38.249.0/24 26878 -69.38.250.0/23 26878 -69.38.252.0/22 26878 -69.39.0.0/19 21803 -69.39.32.0/19 17306 -69.39.64.0/23 12129 -69.39.66.0/24 12129 -69.39.67.0/24 55293 -69.39.68.0/22 12129 -69.39.72.0/21 12129 -69.39.80.0/22 12129 -69.39.84.0/23 12129 -69.39.86.0/24 55293 -69.39.87.0/24 12129 -69.39.88.0/23 55293 -69.39.90.0/23 12129 -69.39.92.0/22 12129 -69.39.96.0/19 10249 -69.39.128.0/19 11069 -69.39.160.0/19 10848 -69.39.192.0/19 29930 -69.39.224.0/20 32181 -69.39.240.0/20 22667 -69.40.0.0/17 7029 -69.40.128.0/18 7029 -69.40.192.0/20 7029 -69.40.208.0/20 7349 -69.40.224.0/19 7029 -69.41.0.0/21 21527 -69.41.8.0/22 21527 -69.41.12.0/23 21527 -69.41.14.0/24 47018 -69.41.15.0/24 21527 -69.41.17.0/24 19927 -69.41.31.0/24 19927 -69.41.32.0/23 19197 -69.41.35.0/24 19197 -69.41.36.0/23 19197 -69.41.38.0/24 19197 -69.41.40.0/24 19197 -69.41.43.0/24 19197 -69.41.46.0/23 19197 -69.41.50.0/24 19197 -69.41.52.0/22 19197 -69.41.56.0/22 19197 -69.41.60.0/24 19197 -69.41.80.0/20 13649 -69.41.96.0/19 29871 -69.41.128.0/21 29774 -69.41.136.0/21 10594 -69.41.144.0/20 10594 -69.41.160.0/19 40824 -69.41.192.0/20 29953 -69.41.208.0/23 8119 -69.41.210.0/24 8119 -69.41.213.0/24 8119 -69.41.214.0/23 8119 -69.41.216.0/23 8119 -69.41.218.0/24 8119 -69.41.220.0/22 8119 -69.41.224.0/19 36351 -69.42.0.0/19 11404 -69.42.32.0/20 18474 -69.42.48.0/21 13767 -69.42.56.0/21 13768 -69.42.64.0/19 27257 -69.42.96.0/24 19275 -69.42.97.0/24 23148 -69.42.98.0/23 23148 -69.42.100.0/22 23148 -69.42.104.0/24 53706 -69.42.105.0/24 23148 -69.42.106.0/23 23148 -69.42.108.0/22 23148 -69.42.112.0/23 23148 -69.42.114.0/23 27992 -69.42.116.0/22 23148 -69.42.120.0/21 23148 -69.42.128.0/19 32953 -69.42.160.0/23 27257 -69.42.162.0/24 27257 -69.42.164.0/24 27257 -69.42.166.0/24 27257 -69.42.167.0/24 46323 -69.42.169.0/24 46323 -69.42.172.0/22 46323 -69.42.176.0/20 21992 -69.42.192.0/20 26404 -69.42.208.0/20 17048 -69.42.224.0/19 36374 -69.43.0.0/21 6536 -69.43.8.0/23 6536 -69.43.10.0/24 6536 -69.43.11.0/24 32721 -69.43.12.0/22 6536 -69.43.16.0/20 6536 -69.43.32.0/19 6536 -69.43.64.0/22 32432 -69.43.72.0/23 32432 -69.43.75.0/24 32432 -69.43.80.0/21 32432 -69.43.88.0/24 32432 -69.43.98.0/23 32432 -69.43.100.0/22 32432 -69.43.105.0/24 32432 -69.43.106.0/24 32432 -69.43.111.0/24 32432 -69.43.113.0/24 32432 -69.43.114.0/24 32432 -69.43.119.0/24 46887 -69.43.120.0/24 46887 -69.43.121.0/24 32432 -69.43.128.0/19 22489 -69.43.160.0/20 22489 -69.43.176.0/22 22489 -69.43.180.0/24 20460 -69.43.181.0/24 22489 -69.43.182.0/23 22489 -69.43.184.0/21 22489 -69.43.192.0/20 22489 -69.43.208.0/20 11722 -69.43.224.0/20 30362 -69.43.240.0/23 3257 -69.43.242.0/24 3356 -69.43.243.0/24 3257 -69.43.244.0/24 3356 -69.43.245.0/24 3257 -69.43.246.0/23 3356 -69.43.248.0/22 3257 -69.43.252.0/23 3257 -69.43.254.0/24 3257 -69.43.255.0/24 3356 -69.44.0.0/22 3356 -69.44.4.0/22 32393 -69.44.8.0/21 3356 -69.44.16.0/22 30222 -69.44.20.0/22 3356 -69.44.24.0/21 3356 -69.44.32.0/21 3356 -69.44.40.0/22 3356 -69.44.44.0/23 40139 -69.44.46.0/24 40139 -69.44.47.0/24 3356 -69.44.48.0/20 3356 -69.44.64.0/20 3356 -69.44.80.0/22 3356 -69.44.84.0/23 3356 -69.44.86.0/23 14934 -69.44.88.0/21 3356 -69.44.96.0/19 3356 -69.44.128.0/22 3356 -69.44.132.0/23 3356 -69.44.134.0/24 31803 -69.44.135.0/24 3356 -69.44.136.0/23 26209 -69.44.138.0/24 26209 -69.44.139.0/24 3356 -69.44.140.0/22 3356 -69.44.144.0/20 3356 -69.44.160.0/20 3356 -69.44.176.0/22 3356 -69.44.180.0/23 19885 -69.44.182.0/24 19885 -69.44.183.0/24 63333 -69.44.184.0/21 3356 -69.44.192.0/21 3356 -69.44.200.0/23 3356 -69.44.202.0/23 7131 -69.44.204.0/22 3356 -69.44.208.0/21 3356 -69.44.216.0/22 3356 -69.44.220.0/22 13767 -69.44.224.0/19 3356 -69.45.0.0/20 3356 -69.45.16.0/23 27526 -69.45.18.0/23 3356 -69.45.20.0/22 3356 -69.45.24.0/21 3356 -69.45.32.0/22 30329 -69.45.36.0/22 3356 -69.45.40.0/21 3356 -69.45.48.0/20 3356 -69.45.64.0/24 3356 -69.45.65.0/24 30329 -69.45.66.0/23 3356 -69.45.68.0/23 30329 -69.45.70.0/23 3356 -69.45.72.0/23 30329 -69.45.74.0/24 30329 -69.45.75.0/24 3356 -69.45.76.0/22 3356 -69.45.80.0/21 3356 -69.45.88.0/23 3356 -69.45.90.0/24 30329 -69.45.91.0/24 3356 -69.45.92.0/23 30329 -69.45.94.0/23 3356 -69.45.96.0/19 3356 -69.45.128.0/18 3356 -69.45.192.0/19 3356 -69.45.224.0/22 27521 -69.45.228.0/23 27521 -69.45.230.0/24 27521 -69.45.231.0/24 3356 -69.45.232.0/23 27521 -69.45.234.0/23 3356 -69.45.236.0/22 3356 -69.45.240.0/24 27521 -69.45.241.0/24 3356 -69.45.242.0/23 3356 -69.45.244.0/22 3356 -69.45.248.0/23 3356 -69.45.250.0/24 3356 -69.45.251.0/24 27521 -69.45.252.0/22 3356 -69.46.0.0/19 29802 -69.46.32.0/20 19528 -69.46.48.0/20 40317 -69.46.64.0/21 18779 -69.46.72.0/24 26481 -69.46.73.0/24 18779 -69.46.74.0/23 18779 -69.46.76.0/22 18779 -69.46.80.0/21 18779 -69.46.88.0/23 18779 -69.46.90.0/24 60311 -69.46.91.0/24 18779 -69.46.92.0/24 18779 -69.46.93.0/24 26481 -69.46.94.0/23 18779 -69.46.96.0/22 36031 -69.46.100.0/23 36031 -69.46.102.0/23 36030 -69.46.104.0/23 36031 -69.46.106.0/24 12188 -69.46.107.0/24 27272 -69.46.108.0/24 27272 -69.46.109.0/24 12188 -69.46.110.0/23 12188 -69.46.112.0/24 40241 -69.46.113.0/24 12188 -69.46.114.0/24 40286 -69.46.115.0/24 12188 -69.46.116.0/23 12188 -69.46.118.0/23 36030 -69.46.120.0/22 12188 -69.46.124.0/22 36031 -69.46.128.0/20 7138 -69.46.145.0/24 174 -69.46.151.0/24 7138 -69.46.152.0/23 7138 -69.46.155.0/24 7138 -69.46.158.0/23 7138 -69.46.160.0/19 21724 -69.46.192.0/19 7029 -69.46.224.0/22 46887 -69.46.228.0/23 46887 -69.46.230.0/24 46887 -69.46.231.0/24 17189 -69.46.232.0/24 46887 -69.46.233.0/24 19970 -69.46.234.0/23 46887 -69.46.236.0/24 46887 -69.46.237.0/24 40903 -69.46.238.0/23 46887 -69.46.240.0/20 12214 -69.47.0.0/16 12083 -69.48.0.0/17 7029 -69.48.128.0/22 22691 -69.48.132.0/24 22633 -69.48.133.0/24 22691 -69.48.134.0/23 22691 -69.48.136.0/23 22691 -69.48.138.0/24 21781 -69.48.139.0/24 22691 -69.48.140.0/22 22691 -69.48.144.0/23 22691 -69.48.146.0/24 22691 -69.48.147.0/24 39943 -69.48.148.0/22 22691 -69.48.152.0/23 22691 -69.48.154.0/24 40362 -69.48.155.0/24 30562 -69.48.156.0/24 11243 -69.48.157.0/24 22691 -69.48.158.0/23 22691 -69.48.160.0/24 22691 -69.48.161.0/24 36304 -69.48.162.0/23 22691 -69.48.164.0/22 22691 -69.48.168.0/23 22691 -69.48.170.0/24 2914 -69.48.171.0/24 22691 -69.48.172.0/24 174 -69.48.173.0/24 22691 -69.48.174.0/23 22691 -69.48.176.0/20 22691 -69.48.192.0/18 7381 -69.49.32.0/19 22995 -69.49.64.0/19 33734 -69.49.96.0/20 14116 -69.49.112.0/23 30447 -69.49.114.0/24 33432 -69.49.115.0/24 30447 -69.49.116.0/22 30447 -69.49.121.0/24 14116 -69.49.122.0/24 33432 -69.49.123.0/24 14116 -69.49.124.0/22 14116 -69.49.128.0/21 21547 -69.49.136.0/22 21547 -69.49.140.0/22 33728 -69.49.144.0/24 21547 -69.49.145.0/24 33728 -69.49.146.0/23 21547 -69.49.148.0/22 21547 -69.49.152.0/22 21547 -69.49.156.0/23 21547 -69.49.158.0/23 46188 -69.49.160.0/20 10381 -69.49.192.0/23 26328 -69.49.197.0/24 26328 -69.49.199.0/24 26328 -69.49.200.0/21 29706 -69.49.208.0/20 32391 -69.49.224.0/19 46606 -69.50.0.0/21 22738 -69.50.12.0/22 17362 -69.50.16.0/20 46649 -69.50.32.0/21 17093 -69.50.40.0/22 17093 -69.50.44.0/24 17093 -69.50.45.0/24 13329 -69.50.46.0/23 17093 -69.50.48.0/20 32645 -69.50.64.0/20 19246 -69.50.80.0/20 26554 -69.50.96.0/22 11696 -69.50.100.0/24 11696 -69.50.102.0/23 11696 -69.50.104.0/22 11696 -69.50.108.0/23 11696 -69.50.110.0/24 11696 -69.50.128.0/20 46562 -69.50.144.0/20 19473 -69.50.160.0/19 14007 -69.50.192.0/19 14992 -69.50.224.0/22 46261 -69.50.228.0/23 9009 -69.50.230.0/23 46261 -69.50.232.0/23 46261 -69.50.234.0/23 19816 -69.50.236.0/22 19816 -69.50.240.0/22 19816 -69.50.244.0/23 19816 -69.50.246.0/24 19816 -69.50.247.0/24 9009 -69.50.248.0/23 19816 -69.50.250.0/24 46261 -69.50.251.0/24 9009 -69.51.0.0/23 6921 -69.51.2.0/24 30436 -69.51.3.0/24 20150 -69.51.4.0/23 6921 -69.51.6.0/24 20150 -69.51.7.0/24 6921 -69.51.8.0/23 30436 -69.51.10.0/24 6921 -69.51.11.0/24 20150 -69.51.12.0/24 6921 -69.51.13.0/24 20150 -69.51.14.0/23 6921 -69.51.16.0/24 20150 -69.51.17.0/24 6921 -69.51.18.0/23 6921 -69.51.20.0/23 20150 -69.51.22.0/24 6921 -69.51.23.0/24 20150 -69.51.24.0/24 6921 -69.51.25.0/24 20150 -69.51.26.0/23 6921 -69.51.28.0/23 6921 -69.51.30.0/24 6921 -69.51.31.0/24 9009 -69.51.32.0/22 2386 -69.51.38.0/23 22142 -69.51.45.0/24 22142 -69.51.64.0/18 21947 -69.51.128.0/19 26339 -69.51.160.0/19 17 -69.51.192.0/18 4540 -69.52.0.0/24 31747 -69.52.2.0/24 31747 -69.52.12.0/23 31747 -69.52.14.0/24 701 -69.52.23.0/24 31747 -69.52.32.0/24 11336 -69.52.33.0/24 31747 -69.52.34.0/24 11336 -69.52.42.0/23 11336 -69.52.66.0/24 31747 -69.52.69.0/24 31747 -69.52.72.0/23 31747 -69.52.129.0/24 31747 -69.52.134.0/23 31747 -69.52.147.0/24 31747 -69.53.0.0/17 16526 -69.53.128.0/18 16526 -69.53.192.0/20 16526 -69.53.208.0/20 39948 -69.53.224.0/23 2906 -69.53.226.0/24 2906 -69.53.227.0/24 55095 -69.53.228.0/24 2906 -69.53.229.0/24 55095 -69.53.230.0/23 55095 -69.53.232.0/24 2906 -69.53.233.0/24 55095 -69.53.234.0/24 2906 -69.53.235.0/24 55095 -69.53.236.0/22 2906 -69.53.240.0/23 55095 -69.53.242.0/24 55095 -69.53.243.0/24 2906 -69.53.244.0/24 2906 -69.53.245.0/24 55095 -69.53.246.0/24 55095 -69.53.247.0/24 2906 -69.53.248.0/22 2906 -69.53.252.0/23 2906 -69.53.254.0/24 55095 -69.53.255.0/24 2906 -69.54.0.0/19 12282 -69.54.32.0/20 21709 -69.54.48.0/22 19009 -69.54.52.0/23 19009 -69.54.54.0/24 20422 -69.54.55.0/24 19009 -69.54.56.0/21 19009 -69.54.64.0/22 20340 -69.54.68.0/23 12129 -69.54.70.0/23 20340 -69.54.72.0/21 20340 -69.54.80.0/20 20340 -69.54.96.0/19 17306 -69.54.128.0/20 19939 -69.54.144.0/20 19170 -69.54.160.0/19 26129 -69.54.192.0/19 27553 -69.54.224.0/20 23464 -69.54.240.0/21 23464 -69.54.248.0/21 64200 -69.55.0.0/20 33327 -69.55.16.0/20 33038 -69.55.32.0/20 18780 -69.55.48.0/22 14061 -69.55.52.0/24 14061 -69.55.53.0/24 46652 -69.55.54.0/23 14061 -69.55.57.0/24 46652 -69.55.58.0/23 14061 -69.55.60.0/22 14061 -69.55.64.0/21 11440 -69.55.72.0/22 11440 -69.55.76.0/23 11440 -69.55.78.0/23 40762 -69.55.80.0/21 33660 -69.55.88.0/23 32058 -69.55.93.0/24 32058 -69.55.95.0/24 32058 -69.55.96.0/20 30432 -69.55.112.0/20 19331 -69.55.128.0/19 23127 -69.55.160.0/20 10302 -69.55.176.0/20 33055 -69.55.192.0/20 30072 -69.55.208.0/23 26935 -69.55.210.0/24 393392 -69.55.211.0/24 394074 -69.55.212.0/24 26935 -69.55.213.0/24 397250 -69.55.214.0/24 26935 -69.55.215.0/24 397250 -69.55.216.0/23 26935 -69.55.218.0/23 397292 -69.55.220.0/22 26935 -69.55.224.0/22 22489 -69.55.228.0/24 22489 -69.55.229.0/24 21623 -69.55.230.0/24 22489 -69.55.231.0/24 21623 -69.55.232.0/21 22489 -69.55.240.0/20 35911 -69.56.0.0/19 30145 -69.56.32.0/22 30145 -69.56.36.0/24 30145 -69.56.38.0/23 30145 -69.56.40.0/21 30145 -69.56.48.0/20 30145 -69.56.64.0/19 10430 -69.56.96.0/20 394391 -69.56.112.0/20 10430 -69.56.128.0/19 36351 -69.56.160.0/21 36351 -69.56.168.0/22 36351 -69.56.172.0/24 36351 -69.56.173.0/24 63949 -69.56.174.0/23 36351 -69.56.176.0/20 36351 -69.56.192.0/19 36351 -69.56.224.0/20 36351 -69.56.240.0/21 36351 -69.56.248.0/23 36351 -69.56.250.0/24 36351 -69.56.251.0/24 63949 -69.56.252.0/22 36351 -69.57.0.0/21 29883 -69.57.8.0/22 29883 -69.57.12.0/23 29883 -69.57.14.0/24 21949 -69.57.15.0/24 29883 -69.57.16.0/20 15350 -69.57.32.0/20 23092 -69.57.48.0/20 26949 -69.57.64.0/20 20428 -69.57.80.0/20 26794 -69.57.96.0/20 1640 -69.57.112.0/21 53956 -69.57.120.0/22 46632 -69.57.124.0/23 46719 -69.57.126.0/24 6461 -69.57.127.0/24 19201 -69.57.128.0/19 36351 -69.57.160.0/19 25653 -69.57.192.0/20 13855 -69.57.208.0/21 33139 -69.57.216.0/22 33139 -69.57.220.0/23 33139 -69.57.222.0/24 33139 -69.57.223.0/24 394232 -69.57.224.0/22 11139 -69.57.228.0/23 11139 -69.57.230.0/24 15344 -69.57.231.0/24 11139 -69.57.232.0/24 15344 -69.57.233.0/24 11139 -69.57.234.0/23 11139 -69.57.236.0/24 15344 -69.57.237.0/24 11139 -69.57.238.0/24 11139 -69.57.239.0/24 15344 -69.57.240.0/20 11139 -69.58.0.0/21 55286 -69.58.8.0/24 55286 -69.58.9.0/24 36352 -69.58.10.0/23 55286 -69.58.12.0/23 55286 -69.58.14.0/24 55286 -69.58.15.0/24 36352 -69.58.16.0/21 19566 -69.58.24.0/24 16509 -69.58.28.0/22 40638 -69.58.32.0/19 35874 -69.58.64.0/20 21637 -69.58.80.0/21 21637 -69.58.88.0/22 21637 -69.58.92.0/23 21637 -69.58.94.0/24 21637 -69.58.95.0/24 40505 -69.58.96.0/20 812 -69.58.112.0/20 32899 -69.58.128.0/20 18516 -69.58.153.0/24 396122 -69.58.154.0/23 396122 -69.58.156.0/22 396122 -69.58.160.0/20 30268 -69.58.176.0/23 30060 -69.58.178.0/24 30060 -69.58.179.0/24 26415 -69.58.180.0/22 30060 -69.58.184.0/23 30060 -69.58.186.0/24 30060 -69.58.187.0/24 26415 -69.58.188.0/24 10515 -69.58.189.0/24 26134 -69.58.190.0/23 30060 -69.58.192.0/18 10405 -69.59.0.0/24 3601 -69.59.1.0/24 8092 -69.59.2.0/23 8092 -69.59.4.0/22 8092 -69.59.8.0/23 8092 -69.59.14.0/23 8092 -69.59.16.0/24 11402 -69.59.18.0/24 397444 -69.59.19.0/24 11402 -69.59.20.0/22 394133 -69.59.24.0/22 11402 -69.59.28.0/24 11402 -69.59.29.0/24 397959 -69.59.30.0/24 6461 -69.59.31.0/24 15305 -69.59.32.0/20 15335 -69.59.48.0/20 17310 -69.59.65.0/24 40285 -69.59.66.0/23 40285 -69.59.68.0/22 40285 -69.59.72.0/24 40285 -69.59.74.0/23 40285 -69.59.76.0/22 40285 -69.59.80.0/23 40285 -69.59.83.0/24 40285 -69.59.84.0/24 12208 -69.59.85.0/24 40285 -69.59.86.0/23 40285 -69.59.89.0/24 40285 -69.59.90.0/23 40285 -69.59.92.0/23 40285 -69.59.94.0/24 40285 -69.59.96.0/22 40285 -69.59.101.0/24 40285 -69.59.102.0/23 40285 -69.59.105.0/24 40285 -69.59.106.0/23 40285 -69.59.108.0/22 40285 -69.59.112.0/23 40285 -69.59.114.0/24 12208 -69.59.115.0/24 40285 -69.59.116.0/22 40285 -69.59.120.0/22 40285 -69.59.124.0/23 40285 -69.59.128.0/18 26228 -69.59.192.0/24 13868 -69.59.193.0/24 13512 -69.59.194.0/23 395796 -69.59.196.0/22 13868 -69.59.200.0/21 13868 -69.59.208.0/21 13868 -69.59.216.0/22 13868 -69.59.220.0/23 13868 -69.59.222.0/24 397510 -69.59.223.0/24 397819 -69.59.224.0/23 17151 -69.59.226.0/24 17151 -69.59.228.0/22 17151 -69.59.232.0/21 17151 -69.59.240.0/22 17151 -69.59.244.0/23 17151 -69.59.246.0/24 17151 -69.59.249.0/24 14618 -69.59.250.0/23 16509 -69.59.252.0/22 17151 -69.60.0.0/20 26163 -69.60.16.0/23 26163 -69.60.18.0/24 26163 -69.60.21.0/24 26163 -69.60.22.0/23 26163 -69.60.24.0/22 26163 -69.60.28.0/23 26163 -69.60.30.0/24 32475 -69.60.32.0/19 7086 -69.60.64.0/20 47027 -69.60.82.0/23 40954 -69.60.84.0/22 40954 -69.60.89.0/24 40954 -69.60.91.0/24 40954 -69.60.92.0/23 40954 -69.60.96.0/19 15083 -69.60.128.0/20 23131 -69.60.160.0/20 4452 -69.60.176.0/23 4452 -69.60.178.0/24 7029 -69.60.179.0/24 4452 -69.60.180.0/23 46849 -69.60.182.0/23 21627 -69.60.184.0/22 4452 -69.60.188.0/23 7029 -69.60.190.0/23 27258 -69.60.192.0/23 11696 -69.60.194.0/24 13913 -69.60.195.0/24 11696 -69.60.196.0/22 11696 -69.60.200.0/21 11696 -69.60.208.0/20 11696 -69.60.224.0/19 5690 -69.61.0.0/23 22653 -69.61.2.0/24 22653 -69.61.3.0/24 64250 -69.61.4.0/22 22653 -69.61.8.0/21 22653 -69.61.16.0/20 22653 -69.61.32.0/19 22653 -69.61.64.0/18 22653 -69.61.128.0/19 6181 -69.61.160.0/20 6181 -69.61.176.0/21 6181 -69.61.184.0/23 6181 -69.61.186.0/24 6181 -69.61.187.0/24 62533 -69.61.188.0/22 6181 -69.61.192.0/19 6181 -69.61.224.0/21 6181 -69.61.232.0/21 19263 -69.61.240.0/22 6181 -69.61.244.0/23 6181 -69.61.246.0/23 30059 -69.61.248.0/24 30059 -69.61.249.0/24 6181 -69.61.250.0/23 6181 -69.61.252.0/22 6181 -69.62.0.0/17 31791 -69.62.128.0/17 14051 -69.63.0.0/24 396878 -69.63.1.0/24 5056 -69.63.2.0/24 63394 -69.63.3.0/24 30325 -69.63.4.0/23 30325 -69.63.6.0/23 5056 -69.63.8.0/22 5056 -69.63.12.0/24 5056 -69.63.13.0/24 62825 -69.63.14.0/23 5056 -69.63.16.0/24 30325 -69.63.17.0/24 5056 -69.63.18.0/23 5056 -69.63.20.0/23 5056 -69.63.22.0/24 396878 -69.63.23.0/24 5056 -69.63.24.0/24 13356 -69.63.25.0/24 397475 -69.63.26.0/23 5056 -69.63.28.0/24 396878 -69.63.29.0/24 5056 -69.63.30.0/24 5056 -69.63.31.0/24 62825 -69.63.32.0/19 7794 -69.63.64.0/20 19711 -69.63.80.0/21 20001 -69.63.88.0/24 11426 -69.63.89.0/24 10796 -69.63.90.0/23 10796 -69.63.92.0/24 10796 -69.63.93.0/24 20001 -69.63.94.0/23 20001 -69.63.96.0/23 22773 -69.63.98.0/24 394294 -69.63.99.0/24 22773 -69.63.100.0/24 22773 -69.63.101.0/24 393287 -69.63.102.0/23 22773 -69.63.104.0/21 22773 -69.63.112.0/20 22773 -69.63.128.0/19 22903 -69.63.160.0/20 32505 -69.63.176.0/20 32934 -69.63.192.0/24 18990 -69.63.193.0/24 3257 -69.63.194.0/23 3257 -69.63.196.0/23 3257 -69.63.198.0/24 18990 -69.63.199.0/24 3257 -69.63.200.0/24 18990 -69.63.201.0/24 3257 -69.63.202.0/23 3257 -69.63.204.0/23 3257 -69.63.206.0/24 3257 -69.63.207.0/24 18990 -69.63.208.0/22 3257 -69.63.212.0/24 18990 -69.63.213.0/24 3257 -69.63.214.0/24 3257 -69.63.215.0/24 18990 -69.63.216.0/23 3257 -69.63.218.0/24 18990 -69.63.219.0/24 3257 -69.63.220.0/24 3257 -69.63.221.0/24 18990 -69.63.222.0/24 18990 -69.63.223.0/24 3257 -69.63.224.0/20 14103 -69.63.240.0/20 812 -69.64.0.0/20 4261 -69.64.16.0/23 10780 -69.64.20.0/24 10780 -69.64.24.0/22 396046 -69.64.28.0/22 22006 -69.64.32.0/19 30083 -69.64.64.0/19 18501 -69.64.96.0/21 22018 -69.64.104.0/22 22018 -69.64.108.0/24 22018 -69.64.109.0/24 14325 -69.64.110.0/23 22018 -69.64.132.0/23 12166 -69.64.135.0/24 12166 -69.64.139.0/24 12166 -69.64.140.0/23 12166 -69.64.143.0/24 12166 -69.64.144.0/23 22557 -69.64.146.0/24 22557 -69.64.149.0/24 22557 -69.64.150.0/24 14618 -69.64.155.0/24 22557 -69.64.156.0/24 22557 -69.64.158.0/23 22557 -69.64.160.0/20 14127 -69.64.176.0/22 14127 -69.64.180.0/24 14127 -69.64.182.0/23 14127 -69.64.184.0/23 14127 -69.64.186.0/24 14127 -69.64.188.0/23 14127 -69.64.192.0/22 27506 -69.64.196.0/23 27506 -69.64.198.0/24 27506 -69.64.199.0/24 3384 -69.64.200.0/22 27506 -69.64.204.0/23 27506 -69.64.206.0/23 21755 -69.64.208.0/21 46887 -69.64.216.0/24 21755 -69.64.217.0/24 46887 -69.64.218.0/23 46887 -69.64.220.0/24 46887 -69.64.221.0/24 62784 -69.64.222.0/24 46887 -69.64.223.0/24 54799 -69.64.224.0/20 13409 -69.64.240.0/21 1421 -69.64.248.0/22 1421 -69.64.252.0/24 1421 -69.65.0.0/18 32181 -69.65.64.0/19 30404 -69.65.96.0/19 14383 -69.65.128.0/19 27947 -69.65.160.0/19 5090 -69.65.192.0/18 10421 -69.66.0.0/16 7029 -69.67.0.0/20 19515 -69.67.16.0/20 25694 -69.67.32.0/20 25818 -69.67.48.0/20 14211 -69.67.66.0/23 13745 -69.67.68.0/22 13745 -69.67.72.0/21 13745 -69.67.80.0/20 33657 -69.67.96.0/20 26859 -69.67.112.0/20 14834 -69.67.131.0/24 174 -69.67.132.0/24 174 -69.67.136.0/21 22241 -69.67.144.0/24 33024 -69.67.150.0/24 22241 -69.67.160.0/19 30295 -69.67.192.0/20 15144 -69.67.208.0/20 14872 -69.67.244.0/23 22727 -69.67.246.0/24 22727 -69.67.248.0/21 22727 -69.68.0.0/22 4282 -69.68.4.0/24 209 -69.68.5.0/24 2379 -69.68.6.0/23 2379 -69.68.8.0/24 209 -69.68.9.0/24 2379 -69.68.10.0/23 2379 -69.68.12.0/23 209 -69.68.14.0/23 2379 -69.68.16.0/24 209 -69.68.17.0/24 2379 -69.68.18.0/24 2379 -69.68.19.0/24 209 -69.68.20.0/22 4282 -69.68.24.0/22 2379 -69.68.28.0/23 2379 -69.68.30.0/24 209 -69.68.31.0/24 2379 -69.68.32.0/19 209 -69.68.64.0/19 209 -69.68.96.0/22 11398 -69.68.100.0/23 209 -69.68.102.0/24 209 -69.68.103.0/24 11398 -69.68.104.0/21 18494 -69.68.112.0/22 16718 -69.68.116.0/22 209 -69.68.120.0/22 17402 -69.68.124.0/24 14905 -69.68.125.0/24 209 -69.68.126.0/23 14905 -69.68.128.0/22 4282 -69.68.132.0/22 2379 -69.68.136.0/23 2379 -69.68.138.0/23 209 -69.68.140.0/23 2379 -69.68.142.0/23 209 -69.68.144.0/24 2379 -69.68.145.0/24 209 -69.68.146.0/24 2379 -69.68.147.0/24 209 -69.68.148.0/24 2379 -69.68.149.0/24 209 -69.68.150.0/23 209 -69.68.152.0/24 2379 -69.68.153.0/24 209 -69.68.154.0/23 209 -69.68.156.0/22 2379 -69.68.160.0/21 6222 -69.68.168.0/22 6367 -69.68.172.0/24 6367 -69.68.173.0/24 209 -69.68.174.0/23 209 -69.68.176.0/22 209 -69.68.180.0/23 209 -69.68.182.0/24 209 -69.68.183.0/24 5778 -69.68.184.0/24 14905 -69.68.185.0/24 209 -69.68.186.0/23 14905 -69.68.188.0/22 14905 -69.68.192.0/21 17402 -69.68.200.0/21 209 -69.68.208.0/23 18494 -69.68.210.0/24 18494 -69.68.211.0/24 209 -69.68.212.0/22 18494 -69.68.216.0/22 209 -69.68.220.0/24 209 -69.68.221.0/24 5778 -69.68.222.0/23 209 -69.68.224.0/23 6367 -69.68.226.0/23 209 -69.68.228.0/22 6367 -69.68.232.0/22 209 -69.68.236.0/23 209 -69.68.238.0/23 5778 -69.68.240.0/21 209 -69.68.248.0/22 209 -69.68.252.0/22 14921 -69.69.0.0/21 2379 -69.69.8.0/22 2379 -69.69.12.0/23 209 -69.69.14.0/23 2379 -69.69.16.0/21 209 -69.69.24.0/24 209 -69.69.25.0/24 2379 -69.69.26.0/23 209 -69.69.28.0/22 2379 -69.69.32.0/20 209 -69.69.48.0/22 5778 -69.69.52.0/24 5778 -69.69.53.0/24 209 -69.69.54.0/23 209 -69.69.56.0/22 209 -69.69.60.0/22 5778 -69.69.64.0/22 6222 -69.69.68.0/24 6222 -69.69.69.0/24 209 -69.69.70.0/23 6222 -69.69.72.0/22 6222 -69.69.76.0/24 209 -69.69.77.0/24 6222 -69.69.78.0/23 6222 -69.69.80.0/21 4283 -69.69.88.0/22 209 -69.69.92.0/23 209 -69.69.94.0/23 14921 -69.69.96.0/24 209 -69.69.97.0/24 11398 -69.69.98.0/23 209 -69.69.100.0/23 11398 -69.69.102.0/24 11398 -69.69.103.0/24 25992 -69.69.104.0/21 17402 -69.69.112.0/24 18494 -69.69.113.0/24 209 -69.69.114.0/24 18494 -69.69.115.0/24 209 -69.69.116.0/22 18494 -69.69.120.0/21 6222 -69.69.128.0/24 2379 -69.69.129.0/24 209 -69.69.130.0/23 2379 -69.69.132.0/23 2379 -69.69.134.0/24 209 -69.69.135.0/24 2379 -69.69.136.0/21 2379 -69.69.144.0/21 2379 -69.69.152.0/22 2379 -69.69.156.0/24 2379 -69.69.157.0/24 209 -69.69.158.0/23 2379 -69.69.160.0/20 209 -69.69.176.0/22 209 -69.69.180.0/23 209 -69.69.182.0/23 5778 -69.69.184.0/21 209 -69.69.192.0/23 6367 -69.69.194.0/23 209 -69.69.196.0/22 16718 -69.69.200.0/23 18494 -69.69.202.0/24 209 -69.69.203.0/24 18494 -69.69.204.0/23 18494 -69.69.206.0/23 22186 -69.69.208.0/23 209 -69.69.210.0/24 5778 -69.69.211.0/24 209 -69.69.212.0/24 5778 -69.69.213.0/24 209 -69.69.214.0/24 209 -69.69.215.0/24 5778 -69.69.216.0/22 209 -69.69.220.0/23 209 -69.69.222.0/24 5778 -69.69.223.0/24 209 -69.69.224.0/23 14905 -69.69.226.0/23 209 -69.69.228.0/22 209 -69.69.232.0/24 209 -69.69.233.0/24 2379 -69.69.234.0/23 209 -69.69.236.0/23 209 -69.69.238.0/23 2379 -69.69.240.0/22 209 -69.69.244.0/23 209 -69.69.246.0/24 18494 -69.69.247.0/24 209 -69.69.248.0/22 14905 -69.69.252.0/22 11398 -69.70.0.0/16 5769 -69.71.0.0/21 55140 -69.71.8.0/23 55140 -69.71.10.0/24 55140 -69.71.11.0/24 32363 -69.71.12.0/22 55140 -69.71.16.0/20 14938 -69.71.32.0/20 23465 -69.71.48.0/20 12025 -69.71.64.0/19 26288 -69.71.96.0/20 11430 -69.71.112.0/23 26209 -69.71.114.0/24 26209 -69.71.115.0/24 32766 -69.71.116.0/23 26209 -69.71.118.0/24 62953 -69.71.119.0/24 26209 -69.71.120.0/21 26209 -69.71.128.0/21 25625 -69.71.148.0/22 25625 -69.71.152.0/21 25625 -69.71.160.0/19 10835 -69.71.192.0/20 46446 -69.71.208.0/20 40015 -69.71.224.0/19 32459 -69.72.0.0/21 14390 -69.72.9.0/24 62943 -69.72.10.0/23 62943 -69.72.12.0/22 62943 -69.72.16.0/24 20149 -69.72.18.0/24 20149 -69.72.24.0/22 14390 -69.72.28.0/23 62887 -69.72.30.0/24 32473 -69.72.31.0/24 14390 -69.72.32.0/22 27357 -69.72.36.0/22 19994 -69.72.40.0/22 14618 -69.72.44.0/22 16509 -69.72.48.0/22 395479 -69.72.52.0/23 395479 -69.72.56.0/22 63343 -69.72.60.0/22 14390 -69.72.64.0/23 14390 -69.72.67.0/24 36523 -69.72.68.0/23 14390 -69.72.70.0/23 18833 -69.72.72.0/22 14390 -69.72.78.0/23 14390 -69.72.80.0/21 45753 -69.72.88.0/22 26967 -69.72.92.0/22 14390 -69.72.96.0/19 393397 -69.72.128.0/17 25653 -69.73.0.0/18 12083 -69.73.64.0/19 12083 -69.73.96.0/23 12083 -69.73.98.0/24 16724 -69.73.99.0/24 12083 -69.73.100.0/22 12083 -69.73.104.0/21 12083 -69.73.112.0/20 12083 -69.73.128.0/18 11042 -69.73.192.0/23 14813 -69.73.194.0/23 46650 -69.73.196.0/23 11139 -69.73.198.0/24 14813 -69.73.199.0/24 46408 -69.73.200.0/23 46408 -69.73.202.0/24 46408 -69.73.203.0/24 14813 -69.73.204.0/22 14813 -69.73.208.0/24 46650 -69.73.209.0/24 14813 -69.73.210.0/23 14813 -69.73.212.0/23 14813 -69.73.215.0/24 14813 -69.73.216.0/21 14813 -69.73.224.0/22 14813 -69.73.228.0/24 14813 -69.73.230.0/23 46650 -69.73.232.0/22 14813 -69.73.236.0/24 14813 -69.73.237.0/24 46408 -69.73.238.0/23 46408 -69.73.240.0/22 46650 -69.73.244.0/23 46650 -69.73.247.0/24 11139 -69.73.248.0/24 11139 -69.73.251.0/24 14813 -69.73.252.0/23 14813 -69.73.254.0/24 14813 -69.74.0.0/20 6128 -69.74.16.0/22 6128 -69.74.20.0/24 6128 -69.74.21.0/24 19720 -69.74.22.0/24 54004 -69.74.23.0/24 6128 -69.74.24.0/24 26454 -69.74.25.0/24 39981 -69.74.26.0/23 6128 -69.74.28.0/22 6128 -69.74.32.0/22 6128 -69.74.36.0/23 6128 -69.74.38.0/24 27363 -69.74.39.0/24 6128 -69.74.40.0/24 54004 -69.74.41.0/24 6128 -69.74.42.0/23 6128 -69.74.44.0/22 6128 -69.74.48.0/20 6128 -69.74.64.0/20 6128 -69.74.80.0/21 6128 -69.74.88.0/23 6128 -69.74.90.0/24 16590 -69.74.91.0/24 19961 -69.74.92.0/24 6128 -69.74.93.0/24 13938 -69.74.94.0/24 19720 -69.74.95.0/24 6128 -69.74.96.0/22 6128 -69.74.100.0/24 6128 -69.74.101.0/24 36447 -69.74.102.0/23 6128 -69.74.104.0/24 6128 -69.74.105.0/24 29890 -69.74.106.0/23 6128 -69.74.108.0/22 6128 -69.74.112.0/24 26290 -69.74.113.0/24 6128 -69.74.114.0/23 6128 -69.74.116.0/24 393871 -69.74.117.0/24 6128 -69.74.118.0/23 6128 -69.74.120.0/22 6128 -69.74.124.0/23 46996 -69.74.126.0/24 6128 -69.74.127.0/24 54004 -69.74.128.0/22 6128 -69.74.132.0/23 6128 -69.74.134.0/23 54004 -69.74.136.0/21 6128 -69.74.144.0/24 40002 -69.74.145.0/24 6128 -69.74.146.0/24 54004 -69.74.147.0/24 6128 -69.74.148.0/24 54004 -69.74.149.0/24 6128 -69.74.150.0/23 6128 -69.74.152.0/21 6128 -69.74.160.0/23 6128 -69.74.162.0/24 6128 -69.74.163.0/24 54004 -69.74.164.0/23 6128 -69.74.166.0/24 54004 -69.74.167.0/24 6128 -69.74.168.0/22 6128 -69.74.172.0/24 6128 -69.74.173.0/24 19670 -69.74.174.0/23 6128 -69.74.176.0/23 6128 -69.74.178.0/24 6128 -69.74.179.0/24 25611 -69.74.180.0/24 25611 -69.74.181.0/24 17008 -69.74.182.0/23 6128 -69.74.184.0/23 6128 -69.74.186.0/24 18458 -69.74.187.0/24 6128 -69.74.188.0/22 6128 -69.74.192.0/21 6128 -69.74.200.0/22 6128 -69.74.204.0/24 54004 -69.74.205.0/24 6128 -69.74.206.0/23 6128 -69.74.208.0/21 6128 -69.74.216.0/24 40163 -69.74.217.0/24 6128 -69.74.218.0/23 6128 -69.74.220.0/24 6128 -69.74.221.0/24 17278 -69.74.222.0/24 40527 -69.74.223.0/24 6128 -69.74.224.0/22 6128 -69.74.228.0/24 6128 -69.74.229.0/24 54004 -69.74.230.0/23 6128 -69.74.232.0/23 6128 -69.74.234.0/24 6128 -69.74.235.0/24 54004 -69.74.236.0/22 6128 -69.74.240.0/23 6128 -69.74.242.0/24 6128 -69.74.243.0/24 396010 -69.74.244.0/22 6128 -69.74.248.0/23 6128 -69.74.250.0/24 6128 -69.74.251.0/24 18593 -69.74.252.0/23 6128 -69.74.254.0/24 30416 -69.74.255.0/24 6128 -69.75.0.0/18 20001 -69.75.64.0/19 20001 -69.75.96.0/24 20001 -69.75.97.0/24 20429 -69.75.98.0/23 20001 -69.75.100.0/22 20001 -69.75.104.0/21 20001 -69.75.112.0/20 20001 -69.75.128.0/21 20001 -69.75.136.0/23 20001 -69.75.138.0/24 20001 -69.75.139.0/24 395102 -69.75.140.0/22 20001 -69.75.144.0/20 20001 -69.75.160.0/19 20001 -69.75.192.0/18 20001 -69.76.0.0/20 10838 -69.76.16.0/21 7843 -69.76.24.0/21 7224 -69.76.32.0/20 10796 -69.76.48.0/21 10796 -69.76.56.0/22 10796 -69.76.60.0/23 10796 -69.76.62.0/23 11427 -69.76.64.0/20 7843 -69.76.80.0/23 7843 -69.76.82.0/24 8052 -69.76.83.0/24 7843 -69.76.84.0/22 7843 -69.76.88.0/21 7843 -69.76.96.0/21 7843 -69.76.104.0/24 7843 -69.76.105.0/24 8052 -69.76.106.0/24 7843 -69.76.107.0/24 8052 -69.76.108.0/22 8052 -69.76.112.0/21 8052 -69.76.120.0/22 8052 -69.76.124.0/22 7843 -69.76.128.0/17 11427 -69.77.0.0/20 2495 -69.77.16.0/24 393401 -69.77.17.0/24 2495 -69.77.18.0/23 2495 -69.77.20.0/22 2495 -69.77.24.0/21 2495 -69.77.32.0/19 2495 -69.77.64.0/18 2495 -69.77.128.0/19 23118 -69.77.160.0/19 23498 -69.77.192.0/18 6580 -69.78.0.0/17 6167 -69.78.128.0/18 6167 -69.78.192.0/19 6167 -69.78.224.0/19 22394 -69.79.0.0/22 23520 -69.79.4.0/23 23520 -69.79.6.0/24 23520 -69.79.7.0/24 54123 -69.79.8.0/23 23520 -69.79.10.0/23 15344 -69.79.12.0/23 46408 -69.79.14.0/23 23520 -69.79.16.0/21 23520 -69.79.24.0/23 23520 -69.79.26.0/24 264821 -69.79.27.0/24 23520 -69.79.28.0/24 8014 -69.79.29.0/24 23520 -69.79.30.0/23 23520 -69.79.32.0/19 23520 -69.79.64.0/22 23520 -69.79.68.0/23 23520 -69.79.70.0/23 8014 -69.79.72.0/21 23520 -69.79.80.0/23 23520 -69.79.82.0/24 27847 -69.79.83.0/24 23520 -69.79.84.0/22 23520 -69.79.88.0/21 23520 -69.79.96.0/21 23520 -69.79.104.0/22 23520 -69.79.108.0/23 23520 -69.79.110.0/24 23520 -69.79.111.0/24 62627 -69.79.112.0/23 23520 -69.79.114.0/24 62627 -69.79.115.0/24 23520 -69.79.116.0/22 23520 -69.79.120.0/22 23520 -69.79.124.0/22 15146 -69.79.128.0/19 23520 -69.79.160.0/20 23520 -69.79.176.0/21 23520 -69.79.184.0/22 23520 -69.79.188.0/24 62627 -69.79.189.0/24 23520 -69.79.190.0/24 62627 -69.79.191.0/24 23520 -69.79.192.0/20 30689 -69.79.208.0/20 23520 -69.79.224.0/23 62627 -69.79.226.0/24 23520 -69.79.227.0/24 62627 -69.79.228.0/22 23520 -69.79.232.0/21 23520 -69.79.240.0/20 23520 -69.80.0.0/24 11139 -69.80.1.0/24 14813 -69.80.2.0/23 15344 -69.80.4.0/22 15344 -69.80.8.0/21 15344 -69.80.16.0/20 15344 -69.80.32.0/22 15344 -69.80.36.0/22 11139 -69.80.40.0/22 11139 -69.80.44.0/23 11139 -69.80.46.0/23 46650 -69.80.48.0/23 46650 -69.80.50.0/24 46650 -69.80.53.0/24 14813 -69.80.54.0/24 14813 -69.80.55.0/24 46408 -69.80.56.0/23 46408 -69.80.58.0/24 46408 -69.80.59.0/24 11139 -69.80.64.0/21 33132 -69.80.72.0/24 14313 -69.80.73.0/24 33132 -69.80.74.0/24 33132 -69.80.75.0/24 14313 -69.80.76.0/22 33132 -69.80.80.0/20 20257 -69.80.96.0/23 22363 -69.80.98.0/24 22363 -69.80.100.0/22 22363 -69.80.104.0/22 22363 -69.80.109.0/24 22363 -69.80.112.0/20 26451 -69.80.128.0/24 3356 -69.80.129.0/24 33363 -69.80.130.0/24 33363 -69.80.132.0/23 30372 -69.80.134.0/23 397712 -69.80.136.0/22 397712 -69.80.144.0/20 36715 -69.80.160.0/20 46273 -69.80.176.0/21 6367 -69.80.184.0/23 209 -69.80.186.0/23 36715 -69.80.188.0/23 36715 -69.80.190.0/23 6461 -69.80.192.0/20 26914 -69.80.213.0/24 26914 -69.80.216.0/23 26914 -69.80.218.0/24 26914 -69.80.220.0/23 26914 -69.80.224.0/24 30255 -69.80.226.0/23 54726 -69.80.228.0/22 10929 -69.80.232.0/21 174 -69.80.240.0/20 11191 -69.81.0.0/19 11427 -69.81.32.0/20 10796 -69.81.48.0/20 33363 -69.81.64.0/19 10796 -69.81.96.0/20 10796 -69.81.112.0/21 10796 -69.81.120.0/23 11426 -69.81.122.0/23 11955 -69.81.124.0/23 10796 -69.81.128.0/19 10796 -69.81.176.0/20 10796 -69.81.192.0/19 10796 -69.81.248.0/21 10796 -69.82.0.0/15 6167 -69.84.0.0/20 10993 -69.84.16.0/20 14543 -69.84.32.0/20 14089 -69.84.48.0/20 27364 -69.84.64.0/20 11138 -69.84.80.0/23 46646 -69.84.84.0/22 46646 -69.84.88.0/22 46646 -69.84.94.0/24 25180 -69.84.95.0/24 15404 -69.84.96.0/19 11776 -69.84.128.0/19 27382 -69.84.160.0/20 6362 -69.84.176.0/24 30286 -69.84.184.0/21 25923 -69.84.192.0/20 14265 -69.84.208.0/23 393475 -69.84.210.0/24 393475 -69.84.211.0/24 27382 -69.84.212.0/22 27382 -69.84.216.0/21 27382 -69.84.224.0/24 14287 -69.84.226.0/23 11612 -69.84.228.0/22 11612 -69.84.232.0/21 11612 -69.84.240.0/20 18647 -69.85.0.0/18 30497 -69.85.64.0/20 27569 -69.85.80.0/22 6921 -69.85.84.0/22 20150 -69.85.88.0/23 20150 -69.85.90.0/24 6921 -69.85.91.0/24 12100 -69.85.92.0/23 20150 -69.85.94.0/24 31996 -69.85.95.0/24 20150 -69.85.96.0/19 25853 -69.85.128.0/21 14265 -69.85.136.0/24 19864 -69.85.137.0/24 14265 -69.85.138.0/23 11915 -69.85.140.0/23 11915 -69.85.143.0/24 19864 -69.85.144.0/21 19864 -69.85.152.0/23 14265 -69.85.154.0/23 19864 -69.85.156.0/23 19864 -69.85.158.0/23 14265 -69.85.160.0/19 19864 -69.85.192.0/18 13760 -69.86.0.0/16 12271 -69.87.0.0/23 13782 -69.87.2.0/24 13782 -69.87.7.0/24 13782 -69.87.8.0/22 13330 -69.87.12.0/23 13330 -69.87.16.0/22 13782 -69.87.20.0/23 13782 -69.87.48.0/24 13330 -69.87.52.0/22 13330 -69.87.56.0/21 13330 -69.87.66.0/24 13330 -69.87.68.0/23 13330 -69.87.70.0/24 13330 -69.87.82.0/24 13330 -69.87.90.0/24 13330 -69.87.96.0/23 13330 -69.87.100.0/22 13330 -69.87.104.0/21 13330 -69.87.124.0/24 13782 -69.87.128.0/20 4208 -69.87.144.0/21 4208 -69.87.152.0/24 12129 -69.87.153.0/24 4208 -69.87.154.0/24 14257 -69.87.155.0/24 4208 -69.87.156.0/23 4208 -69.87.158.0/24 14257 -69.87.159.0/24 4208 -69.87.160.0/20 26883 -69.87.176.0/22 26883 -69.87.180.0/23 26883 -69.87.184.0/21 26883 -69.87.192.0/20 22552 -69.87.208.0/24 11847 -69.87.209.0/24 395912 -69.87.210.0/23 396046 -69.87.212.0/24 21800 -69.87.213.0/24 14308 -69.87.215.0/24 62642 -69.87.216.0/22 6364 -69.87.220.0/23 6364 -69.87.222.0/23 13768 -69.87.224.0/20 21898 -69.87.241.0/24 26163 -69.87.242.0/24 26163 -69.87.246.0/23 26163 -69.87.250.0/23 26163 -69.87.252.0/24 26163 -69.88.0.0/19 30362 -69.88.32.0/20 14291 -69.88.48.0/20 20453 -69.88.64.0/18 7385 -69.88.128.0/22 10912 -69.88.132.0/23 10912 -69.88.134.0/23 29791 -69.88.136.0/22 35913 -69.88.140.0/22 10912 -69.88.148.0/22 30282 -69.88.156.0/23 29791 -69.88.158.0/24 10913 -69.88.159.0/24 13789 -69.88.160.0/19 17202 -69.88.192.0/19 26166 -69.88.231.0/24 16467 -69.88.232.0/22 27541 -69.88.236.0/23 27541 -69.88.238.0/24 2828 -69.88.239.0/24 27541 -69.88.246.0/23 27541 -69.88.249.0/24 27541 -69.88.250.0/23 27541 -69.88.252.0/24 27541 -69.89.0.0/20 20141 -69.89.16.0/20 46606 -69.89.32.0/22 11653 -69.89.36.0/24 15261 -69.89.37.0/24 11653 -69.89.38.0/23 11653 -69.89.40.0/21 11653 -69.89.48.0/21 27018 -69.89.57.0/24 27018 -69.89.64.0/19 558 -69.89.96.0/19 14103 -69.89.128.0/19 22976 -69.89.160.0/20 26873 -69.89.176.0/22 46231 -69.89.180.0/23 46231 -69.89.182.0/24 19112 -69.89.183.0/24 46231 -69.89.184.0/21 46231 -69.89.192.0/20 33362 -69.89.208.0/20 27334 -69.89.224.0/20 21627 -69.89.240.0/20 14861 -69.90.0.0/21 13768 -69.90.8.0/22 29909 -69.90.13.0/24 13768 -69.90.14.0/24 13895 -69.90.15.0/24 21719 -69.90.16.0/20 13768 -69.90.32.0/20 13768 -69.90.48.0/24 54527 -69.90.49.0/24 22964 -69.90.50.0/23 13768 -69.90.52.0/24 55220 -69.90.53.0/24 196962 -69.90.54.0/23 13768 -69.90.56.0/22 13768 -69.90.60.0/23 196962 -69.90.62.0/23 54643 -69.90.64.0/19 13768 -69.90.96.0/21 13768 -69.90.104.0/22 13768 -69.90.108.0/24 13768 -69.90.109.0/24 54643 -69.90.110.0/23 13768 -69.90.112.0/22 13768 -69.90.117.0/24 13768 -69.90.119.0/24 13768 -69.90.120.0/21 13768 -69.90.128.0/20 13768 -69.90.144.0/23 13768 -69.90.146.0/24 395754 -69.90.147.0/24 397474 -69.90.148.0/23 54643 -69.90.150.0/24 22964 -69.90.151.0/24 13768 -69.90.152.0/24 11077 -69.90.153.0/24 13768 -69.90.154.0/23 13768 -69.90.156.0/22 13768 -69.90.160.0/19 13768 -69.90.192.0/20 13768 -69.90.208.0/24 4892 -69.90.209.0/24 13768 -69.90.216.0/22 13768 -69.90.220.0/23 13768 -69.90.222.0/24 13768 -69.90.223.0/24 54643 -69.90.224.0/20 13768 -69.90.240.0/23 13768 -69.90.242.0/24 13768 -69.90.243.0/24 54643 -69.90.244.0/22 13768 -69.90.252.0/22 13768 -69.91.0.0/17 11427 -69.91.128.0/17 73 -69.92.0.0/21 11492 -69.92.8.0/23 11492 -69.92.12.0/22 11492 -69.92.16.0/20 11492 -69.92.32.0/20 11492 -69.92.48.0/21 11492 -69.92.56.0/24 11492 -69.92.58.0/23 11492 -69.92.60.0/22 11492 -69.92.65.0/24 11492 -69.92.66.0/23 11492 -69.92.68.0/22 11492 -69.92.72.0/23 11492 -69.92.80.0/23 11492 -69.92.83.0/24 11492 -69.92.85.0/24 11492 -69.92.86.0/23 11492 -69.92.88.0/22 11492 -69.92.93.0/24 11492 -69.92.94.0/23 11492 -69.92.97.0/24 11492 -69.92.98.0/23 11492 -69.92.102.0/23 11492 -69.92.104.0/23 11492 -69.92.108.0/24 11492 -69.92.110.0/23 11492 -69.92.112.0/21 11492 -69.92.120.0/24 11492 -69.92.122.0/23 11492 -69.92.124.0/22 11492 -69.92.128.0/21 11492 -69.92.137.0/24 11492 -69.92.138.0/23 11492 -69.92.140.0/22 11492 -69.92.145.0/24 11492 -69.92.146.0/23 11492 -69.92.148.0/22 11492 -69.92.153.0/24 11492 -69.92.156.0/22 11492 -69.92.160.0/19 11492 -69.92.192.0/22 11492 -69.92.196.0/23 11492 -69.92.198.0/24 11492 -69.92.200.0/21 11492 -69.92.208.0/22 11492 -69.92.213.0/24 11492 -69.92.214.0/23 11492 -69.92.216.0/23 11492 -69.92.218.0/24 11492 -69.92.220.0/22 11492 -69.92.224.0/19 11492 -69.93.0.0/18 36351 -69.93.64.0/19 36351 -69.93.96.0/20 36351 -69.93.112.0/21 36351 -69.93.120.0/22 36351 -69.93.124.0/23 36351 -69.93.126.0/24 36351 -69.93.127.0/24 63949 -69.93.128.0/17 36351 -69.94.0.0/21 19916 -69.94.8.0/22 19916 -69.94.12.0/23 19916 -69.94.14.0/24 27170 -69.94.15.0/24 397667 -69.94.16.0/20 54781 -69.94.32.0/20 7642 -69.94.48.0/21 11114 -69.94.56.0/22 5008 -69.94.60.0/23 21968 -69.94.62.0/24 21968 -69.94.63.0/24 30501 -69.94.64.0/24 198605 -69.94.68.0/23 198605 -69.94.70.0/24 198605 -69.94.72.0/22 198605 -69.94.76.0/23 198605 -69.94.78.0/24 198605 -69.94.80.0/20 7642 -69.94.96.0/22 1828 -69.94.104.0/22 1828 -69.94.112.0/20 35432 -69.94.128.0/19 16578 -69.94.160.0/19 13392 -69.94.192.0/19 31939 -69.94.224.0/21 25956 -69.94.232.0/23 25956 -69.94.234.0/23 1606 -69.94.236.0/23 25956 -69.94.238.0/24 395171 -69.94.239.0/24 25956 -69.94.240.0/20 25956 -69.95.0.0/23 7029 -69.95.2.0/24 7029 -69.95.3.0/24 32891 -69.95.4.0/22 7029 -69.95.8.0/21 7029 -69.95.16.0/20 7029 -69.95.32.0/19 7029 -69.95.64.0/18 7029 -69.95.128.0/17 7029 -69.104.0.0/15 7018 -69.106.0.0/16 7018 -69.107.64.0/18 7018 -69.107.128.0/17 7018 -69.108.0.0/14 7018 -69.112.0.0/12 6128 -69.128.0.0/22 4181 -69.128.4.0/24 21989 -69.128.5.0/24 4181 -69.128.6.0/23 4181 -69.128.8.0/21 4181 -69.128.16.0/20 4181 -69.128.32.0/19 4181 -69.128.64.0/18 4181 -69.128.128.0/20 4181 -69.128.144.0/24 20127 -69.128.145.0/24 4181 -69.128.146.0/23 4181 -69.128.148.0/22 4181 -69.128.152.0/21 4181 -69.128.160.0/19 4181 -69.128.192.0/18 4181 -69.129.0.0/16 4181 -69.130.0.0/19 4181 -69.130.32.0/22 4181 -69.130.36.0/24 4181 -69.130.37.0/24 40559 -69.130.38.0/23 4181 -69.130.40.0/21 4181 -69.130.48.0/20 4181 -69.130.64.0/18 4181 -69.130.128.0/18 4181 -69.130.192.0/19 4181 -69.130.224.0/24 27490 -69.130.225.0/24 4181 -69.130.226.0/23 4181 -69.130.228.0/22 4181 -69.130.232.0/21 4181 -69.130.240.0/20 4181 -69.131.0.0/16 4181 -69.132.0.0/16 11426 -69.133.0.0/17 10796 -69.133.128.0/18 11426 -69.133.192.0/20 10796 -69.133.224.0/19 11426 -69.134.0.0/17 7843 -69.134.128.0/22 7843 -69.134.132.0/22 8052 -69.134.136.0/21 7843 -69.134.144.0/20 7843 -69.134.160.0/19 7843 -69.134.192.0/20 7843 -69.134.208.0/21 7843 -69.134.216.0/22 7843 -69.134.220.0/23 7843 -69.134.222.0/24 8052 -69.134.223.0/24 7843 -69.134.224.0/19 7843 -69.135.0.0/17 10796 -69.135.128.0/19 10796 -69.135.160.0/20 10796 -69.135.184.0/21 10796 -69.135.192.0/18 10796 -69.136.0.0/13 7922 -69.144.0.0/16 33588 -69.145.0.0/18 33588 -69.145.64.0/20 33588 -69.145.80.0/23 33588 -69.145.82.0/24 33588 -69.145.83.0/24 32146 -69.145.84.0/22 33588 -69.145.88.0/21 33588 -69.145.96.0/19 33588 -69.145.128.0/17 33588 -69.146.0.0/16 33588 -69.147.0.0/20 6461 -69.147.16.0/20 36037 -69.147.32.0/21 36037 -69.147.40.0/22 36037 -69.147.44.0/22 6461 -69.147.48.0/22 36037 -69.147.52.0/22 6461 -69.147.56.0/21 36037 -69.147.64.0/23 14196 -69.147.66.0/24 14776 -69.147.68.0/24 14196 -69.147.69.0/24 5779 -69.147.70.0/23 5779 -69.147.72.0/21 26101 -69.147.80.0/23 393245 -69.147.82.0/23 14779 -69.147.84.0/24 393245 -69.147.85.0/24 14779 -69.147.86.0/23 14776 -69.147.88.0/22 36088 -69.147.92.0/22 14777 -69.147.96.0/20 36647 -69.147.112.0/20 26101 -69.147.128.0/22 209 -69.147.132.0/23 23126 -69.147.134.0/24 23126 -69.147.135.0/24 209 -69.147.136.0/23 209 -69.147.138.0/24 22561 -69.147.139.0/24 209 -69.147.140.0/23 22561 -69.147.142.0/24 22561 -69.147.143.0/24 209 -69.147.144.0/24 5006 -69.147.145.0/24 22561 -69.147.146.0/23 23126 -69.147.148.0/23 22561 -69.147.150.0/24 22561 -69.147.151.0/24 209 -69.147.152.0/24 22561 -69.147.153.0/24 209 -69.147.154.0/24 22561 -69.147.155.0/24 23126 -69.147.156.0/22 23126 -69.147.160.0/23 17113 -69.147.162.0/24 32572 -69.147.163.0/24 17113 -69.147.164.0/22 17113 -69.147.168.0/22 17113 -69.147.172.0/23 17113 -69.147.174.0/24 40733 -69.147.175.0/24 17113 -69.147.176.0/21 17113 -69.147.184.0/22 17113 -69.147.188.0/24 19209 -69.147.189.0/24 17113 -69.147.190.0/23 17113 -69.147.192.0/19 11796 -69.147.224.0/24 396362 -69.147.225.0/24 15003 -69.147.227.0/24 15003 -69.147.228.0/24 15003 -69.147.230.0/24 15003 -69.147.232.0/24 395954 -69.147.233.0/24 15003 -69.147.234.0/24 15003 -69.147.236.0/24 396190 -69.147.237.0/24 15003 -69.147.238.0/24 15003 -69.147.239.0/24 396362 -69.147.240.0/23 394380 -69.147.242.0/24 15003 -69.147.245.0/24 395954 -69.147.248.0/23 395954 -69.147.250.0/24 15003 -69.147.251.0/24 396362 -69.147.252.0/23 15003 -69.147.254.0/24 395954 -69.147.255.0/24 15003 -69.148.0.0/16 7018 -69.149.0.0/18 7018 -69.149.64.0/20 7018 -69.149.80.0/21 7018 -69.149.88.0/22 7018 -69.149.92.0/23 7018 -69.149.94.0/24 2386 -69.149.95.0/24 7018 -69.149.96.0/19 7018 -69.149.128.0/17 7018 -69.150.0.0/20 7018 -69.150.16.0/21 7018 -69.150.24.0/21 4917 -69.150.32.0/19 7018 -69.150.64.0/19 7018 -69.150.96.0/20 7018 -69.150.112.0/21 7018 -69.150.120.0/22 7018 -69.150.124.0/23 7018 -69.150.126.0/24 13701 -69.150.127.0/24 7018 -69.150.128.0/18 7018 -69.150.192.0/20 7018 -69.150.208.0/21 7018 -69.150.216.0/22 7018 -69.150.220.0/22 27582 -69.150.224.0/21 7018 -69.150.232.0/22 7018 -69.150.236.0/23 7018 -69.150.238.0/24 7018 -69.150.239.0/24 395169 -69.150.240.0/20 7018 -69.151.0.0/17 7018 -69.151.128.0/19 7018 -69.151.160.0/24 395169 -69.151.161.0/24 7018 -69.151.162.0/23 7018 -69.151.164.0/22 7018 -69.151.168.0/21 7018 -69.151.176.0/20 7018 -69.151.192.0/18 7018 -69.152.0.0/19 7018 -69.152.32.0/20 7018 -69.152.48.0/21 7018 -69.152.56.0/22 7018 -69.152.60.0/24 7018 -69.152.61.0/24 23228 -69.152.62.0/23 7018 -69.152.64.0/18 7018 -69.152.128.0/17 7018 -69.153.0.0/18 7018 -69.153.64.0/19 7018 -69.153.96.0/20 7018 -69.153.112.0/22 16788 -69.153.116.0/22 7018 -69.153.120.0/21 7018 -69.153.128.0/19 7018 -69.153.160.0/21 7018 -69.153.168.0/22 7018 -69.153.172.0/24 2386 -69.153.173.0/24 7018 -69.153.174.0/23 7018 -69.153.176.0/20 7018 -69.153.192.0/18 7018 -69.154.0.0/16 7018 -69.155.0.0/17 7018 -69.155.128.0/18 7018 -69.155.192.0/21 7018 -69.155.200.0/22 17306 -69.155.204.0/22 7018 -69.155.208.0/20 7018 -69.155.224.0/19 7018 -69.156.0.0/17 577 -69.156.128.0/19 577 -69.156.160.0/20 577 -69.156.176.0/21 577 -69.156.184.0/22 3848 -69.156.188.0/22 577 -69.156.192.0/19 577 -69.156.224.0/20 577 -69.156.240.0/21 14116 -69.156.248.0/21 577 -69.157.0.0/16 577 -69.158.0.0/17 577 -69.158.128.0/18 577 -69.158.192.0/21 577 -69.158.200.0/22 577 -69.158.204.0/23 36522 -69.158.206.0/24 36522 -69.158.207.0/24 577 -69.158.208.0/23 577 -69.158.210.0/24 577 -69.158.211.0/24 36522 -69.158.212.0/22 577 -69.158.216.0/21 577 -69.158.224.0/21 577 -69.158.232.0/22 577 -69.158.236.0/23 577 -69.158.238.0/24 577 -69.158.239.0/24 36522 -69.158.240.0/23 36522 -69.158.242.0/23 577 -69.158.244.0/23 36522 -69.158.246.0/24 577 -69.158.247.0/24 36522 -69.158.248.0/21 577 -69.159.0.0/16 577 -69.160.0.0/21 132167 -69.160.8.0/22 132167 -69.160.24.0/21 132167 -69.160.32.0/20 20454 -69.160.48.0/20 36444 -69.160.64.0/19 5048 -69.160.96.0/19 33576 -69.160.128.0/19 7029 -69.160.160.0/24 22772 -69.160.162.0/23 22725 -69.160.164.0/22 30257 -69.160.168.0/21 59371 -69.160.176.0/22 19256 -69.160.180.0/23 19256 -69.160.182.0/24 19256 -69.160.183.0/24 7955 -69.160.184.0/22 7955 -69.160.188.0/23 7955 -69.160.190.0/24 7955 -69.160.191.0/24 19256 -69.160.192.0/21 32703 -69.160.200.0/24 393227 -69.160.201.0/24 26312 -69.160.202.0/24 53989 -69.160.203.0/24 32703 -69.160.204.0/24 40604 -69.160.205.0/24 32703 -69.160.206.0/23 32703 -69.160.208.0/24 32703 -69.160.209.0/24 26312 -69.160.210.0/23 32703 -69.160.212.0/23 32703 -69.160.214.0/23 53989 -69.160.216.0/22 32703 -69.160.220.0/23 53989 -69.160.222.0/23 32703 -69.160.224.0/20 54004 -69.160.240.0/20 29838 -69.161.0.0/19 7782 -69.161.32.0/24 35871 -69.161.33.0/24 14363 -69.161.34.0/23 32331 -69.161.36.0/23 393892 -69.161.38.0/24 393892 -69.161.39.0/24 32331 -69.161.40.0/23 32331 -69.161.42.0/23 14363 -69.161.44.0/22 32331 -69.161.48.0/20 393892 -69.161.64.0/20 32448 -69.161.80.0/20 21688 -69.161.96.0/20 23391 -69.161.112.0/20 32448 -69.161.128.0/19 26753 -69.161.160.0/19 395172 -69.161.192.0/24 6130 -69.161.193.0/24 53889 -69.161.194.0/23 53889 -69.161.196.0/23 53889 -69.161.198.0/24 6130 -69.161.199.0/24 53889 -69.161.200.0/23 53500 -69.161.202.0/24 394948 -69.161.203.0/24 394951 -69.161.204.0/24 21777 -69.161.205.0/24 64230 -69.161.206.0/24 395159 -69.161.207.0/24 393575 -69.161.208.0/20 19871 -69.161.224.0/19 12118 -69.162.0.0/22 16667 -69.162.8.0/21 16667 -69.162.16.0/23 16667 -69.162.32.0/20 16667 -69.162.48.0/21 16667 -69.162.61.0/24 16667 -69.162.63.0/24 16667 -69.162.64.0/18 46475 -69.162.128.0/20 32748 -69.162.144.0/22 32748 -69.162.148.0/23 394949 -69.162.150.0/23 32748 -69.162.152.0/21 32748 -69.162.160.0/19 32748 -69.162.192.0/19 7782 -69.162.224.0/20 53407 -69.162.254.0/23 53407 -69.163.0.0/19 15100 -69.163.32.0/21 46816 -69.163.40.0/23 46816 -69.163.42.0/24 26388 -69.163.43.0/24 46816 -69.163.44.0/24 26388 -69.163.45.0/24 46816 -69.163.46.0/23 46816 -69.163.48.0/21 29930 -69.163.56.0/21 26878 -69.163.80.0/20 11924 -69.163.96.0/22 36678 -69.163.100.0/23 36678 -69.163.102.0/23 4809 -69.163.104.0/24 4134 -69.163.105.0/24 36678 -69.163.106.0/23 4809 -69.163.108.0/24 4809 -69.163.109.0/24 36678 -69.163.110.0/23 36678 -69.163.112.0/20 36678 -69.163.128.0/18 26347 -69.163.192.0/19 26347 -69.163.224.0/20 26347 -69.163.240.0/21 26347 -69.163.248.0/22 26347 -69.163.252.0/24 26347 -69.163.255.0/24 26347 -69.164.0.0/19 22822 -69.164.32.0/21 22822 -69.164.40.0/22 22822 -69.164.44.0/23 23059 -69.164.46.0/23 22822 -69.164.48.0/20 22822 -69.164.64.0/18 7381 -69.164.128.0/20 30666 -69.164.144.0/20 14701 -69.164.160.0/20 32016 -69.164.176.0/21 30147 -69.164.192.0/19 63949 -69.164.224.0/20 26873 -69.164.240.0/20 19318 -69.165.0.0/24 53346 -69.165.1.0/24 200366 -69.165.2.0/24 203999 -69.165.3.0/24 200366 -69.165.4.0/23 200366 -69.165.6.0/24 203999 -69.165.7.0/24 204472 -69.165.8.0/22 200366 -69.165.12.0/24 200366 -69.165.13.0/24 58964 -69.165.14.0/24 204472 -69.165.15.0/24 200366 -69.165.16.0/20 25637 -69.165.32.0/20 23158 -69.165.48.0/20 6130 -69.165.64.0/20 62468 -69.165.80.0/20 10929 -69.165.96.0/22 25875 -69.165.100.0/23 25875 -69.165.102.0/24 25875 -69.165.104.0/22 25875 -69.165.108.0/23 25875 -69.165.110.0/24 25875 -69.165.112.0/20 21947 -69.165.128.0/19 5645 -69.165.160.0/20 5645 -69.165.176.0/20 21570 -69.165.192.0/18 5645 -69.166.0.0/21 27630 -69.166.8.0/23 33083 -69.166.10.0/24 3856 -69.166.11.0/24 7377 -69.166.12.0/22 715 -69.166.16.0/20 36493 -69.166.32.0/22 395962 -69.166.36.0/22 393564 -69.166.40.0/23 33427 -69.166.42.0/24 10430 -69.166.43.0/24 11827 -69.166.44.0/22 11827 -69.166.48.0/21 11827 -69.166.56.0/22 11827 -69.166.60.0/24 10430 -69.166.61.0/24 33427 -69.166.62.0/24 395962 -69.166.63.0/24 393564 -69.166.64.0/19 16527 -69.166.96.0/21 15072 -69.166.104.0/22 20029 -69.166.108.0/22 64459 -69.166.112.0/20 54614 -69.166.128.0/19 7349 -69.166.160.0/19 40749 -69.166.192.0/20 22363 -69.166.208.0/21 22363 -69.166.216.0/22 22363 -69.166.220.0/23 22363 -69.166.225.0/24 22363 -69.166.226.0/23 22363 -69.166.228.0/22 22363 -69.166.232.0/21 22363 -69.166.240.0/20 22363 -69.167.0.0/19 40861 -69.167.32.0/22 40861 -69.167.36.0/24 22363 -69.167.37.0/24 40861 -69.167.38.0/23 40861 -69.167.40.0/22 40861 -69.167.44.0/23 40861 -69.167.46.0/24 40861 -69.167.48.0/22 30247 -69.167.52.0/24 30247 -69.167.53.0/24 395123 -69.167.54.0/23 395123 -69.167.56.0/23 395123 -69.167.58.0/23 30247 -69.167.60.0/22 30247 -69.167.64.0/19 3257 -69.167.96.0/20 3257 -69.167.112.0/21 3257 -69.167.120.0/22 3257 -69.167.124.0/24 3257 -69.167.125.0/24 25981 -69.167.126.0/23 3257 -69.167.128.0/18 32244 -69.167.192.0/19 53435 -69.167.224.0/21 53435 -69.167.232.0/23 53435 -69.167.234.0/23 33416 -69.167.236.0/22 53435 -69.167.240.0/20 53435 -69.168.0.0/20 21547 -69.168.32.0/20 46426 -69.168.48.0/20 31745 -69.168.64.0/19 5048 -69.168.96.0/22 36271 -69.168.103.0/24 36271 -69.168.104.0/22 36271 -69.168.110.0/23 36271 -69.168.112.0/20 13857 -69.168.128.0/19 22995 -69.168.160.0/21 22995 -69.168.168.0/22 22995 -69.168.172.0/22 3397 -69.168.176.0/21 30028 -69.168.184.0/21 22995 -69.168.192.0/19 32035 -69.168.226.0/24 34119 -69.168.228.0/22 36344 -69.168.233.0/24 9009 -69.168.234.0/24 49544 -69.168.237.0/24 200288 -69.168.239.0/24 200288 -69.168.240.0/20 20283 -69.169.4.0/22 29852 -69.169.16.0/23 29838 -69.169.18.0/23 33597 -69.169.20.0/22 29838 -69.169.24.0/22 29838 -69.169.28.0/22 33597 -69.169.32.0/21 33597 -69.169.40.0/23 33597 -69.169.42.0/23 53344 -69.169.44.0/22 33597 -69.169.48.0/21 33597 -69.169.56.0/23 29838 -69.169.58.0/23 33597 -69.169.60.0/22 33597 -69.169.64.0/20 33597 -69.169.80.0/21 29838 -69.169.88.0/23 33597 -69.169.90.0/23 64235 -69.169.92.0/22 33597 -69.169.128.0/18 29933 -69.169.192.0/19 35985 -69.169.224.0/20 16509 -69.169.240.0/20 17306 -69.170.0.0/18 14265 -69.170.64.0/18 17306 -69.170.128.0/20 19994 -69.170.144.0/20 46627 -69.170.160.0/19 32035 -69.170.192.0/19 39939 -69.170.224.0/24 27268 -69.170.225.0/24 8025 -69.170.226.0/23 8025 -69.170.228.0/22 8025 -69.170.232.0/21 8025 -69.170.240.0/20 8025 -69.171.0.0/18 29944 -69.171.64.0/20 25820 -69.171.80.0/20 16987 -69.171.96.0/20 5690 -69.171.112.0/20 13904 -69.171.128.0/19 11814 -69.171.192.0/20 12083 -69.171.208.0/24 36352 -69.171.209.0/24 395111 -69.171.210.0/23 395111 -69.171.212.0/23 395111 -69.171.214.0/23 63018 -69.171.216.0/22 63018 -69.171.220.0/22 395111 -69.171.224.0/19 32934 -69.172.0.0/18 7029 -69.172.64.0/22 132585 -69.172.68.0/24 135373 -69.172.69.0/24 132585 -69.172.70.0/24 132585 -69.172.71.0/24 135373 -69.172.72.0/24 135373 -69.172.73.0/24 132585 -69.172.74.0/23 135373 -69.172.76.0/22 132585 -69.172.80.0/20 132585 -69.172.96.0/19 203489 -69.172.128.0/24 26627 -69.172.129.0/24 3580 -69.172.130.0/23 3580 -69.172.132.0/22 3580 -69.172.136.0/21 3580 -69.172.144.0/20 5645 -69.172.160.0/19 5645 -69.172.192.0/22 13768 -69.172.196.0/23 13768 -69.172.198.0/23 54643 -69.172.200.0/23 19324 -69.172.203.0/24 13768 -69.172.204.0/22 13768 -69.172.208.0/21 13768 -69.172.218.0/24 54643 -69.172.219.0/24 54527 -69.172.220.0/24 13768 -69.172.221.0/24 19324 -69.172.222.0/23 13768 -69.172.224.0/20 13768 -69.172.240.0/21 13768 -69.172.250.0/24 13768 -69.172.251.0/24 53845 -69.172.252.0/23 13768 -69.172.254.0/24 13768 -69.172.255.0/24 26441 -69.173.4.0/22 12281 -69.173.32.0/19 11814 -69.173.64.0/18 46964 -69.173.128.0/20 19515 -69.173.144.0/23 26667 -69.173.148.0/22 26667 -69.173.154.0/23 26667 -69.173.159.0/24 26667 -69.174.0.0/19 3257 -69.174.32.0/20 3257 -69.174.48.0/24 54641 -69.174.49.0/24 3257 -69.174.50.0/24 3257 -69.174.51.0/24 36473 -69.174.52.0/23 54641 -69.174.54.0/23 3257 -69.174.56.0/24 3257 -69.174.57.0/24 30103 -69.174.58.0/23 3257 -69.174.60.0/22 3257 -69.174.64.0/20 3257 -69.174.80.0/23 3257 -69.174.82.0/23 53321 -69.174.84.0/23 3257 -69.174.86.0/24 3257 -69.174.87.0/24 25605 -69.174.88.0/24 3257 -69.174.89.0/24 397686 -69.174.90.0/23 3257 -69.174.92.0/22 3257 -69.174.96.0/21 8100 -69.174.104.0/23 3257 -69.174.106.0/24 3257 -69.174.107.0/24 14821 -69.174.108.0/22 30103 -69.174.112.0/23 3257 -69.174.114.0/23 54641 -69.174.116.0/22 3257 -69.174.120.0/24 36062 -69.174.121.0/24 3257 -69.174.122.0/23 3257 -69.174.124.0/22 3257 -69.174.128.0/19 30600 -69.174.160.0/20 30600 -69.174.176.0/20 54373 -69.174.192.0/22 13720 -69.174.200.0/21 13720 -69.174.216.0/23 13720 -69.174.224.0/20 30055 -69.174.240.0/20 13768 -69.175.0.0/17 32475 -69.175.128.0/17 46476 -69.176.0.0/20 3801 -69.176.16.0/23 3801 -69.176.18.0/24 36610 -69.176.19.0/24 3801 -69.176.20.0/22 3801 -69.176.24.0/22 3801 -69.176.28.0/23 3801 -69.176.30.0/24 3801 -69.176.31.0/24 36610 -69.176.32.0/21 3801 -69.176.40.0/24 3801 -69.176.41.0/24 395024 -69.176.42.0/23 3801 -69.176.44.0/22 3801 -69.176.48.0/20 3801 -69.176.64.0/20 22343 -69.176.80.0/20 64050 -69.176.96.0/21 62 -69.176.104.0/23 62 -69.176.106.0/24 62 -69.176.107.0/24 2723 -69.176.108.0/22 62 -69.176.112.0/20 33606 -69.176.128.0/19 10423 -69.176.160.0/19 18988 -69.176.192.0/18 7029 -69.177.0.0/16 7018 -69.178.0.0/17 8047 -69.178.128.0/18 14265 -69.178.192.0/22 63414 -69.178.196.0/23 63414 -69.178.198.0/23 62688 -69.178.200.0/22 63414 -69.178.204.0/22 14090 -69.178.208.0/21 14090 -69.178.216.0/21 12042 -69.178.224.0/20 14090 -69.178.240.0/21 14090 -69.178.248.0/22 14090 -69.178.252.0/22 12042 -69.179.0.0/19 209 -69.179.32.0/22 209 -69.179.36.0/22 22561 -69.179.40.0/21 22561 -69.179.48.0/20 22561 -69.179.64.0/21 22561 -69.179.72.0/21 209 -69.179.80.0/20 22561 -69.179.96.0/19 22561 -69.179.128.0/17 22561 -69.180.0.0/15 7922 -69.182.0.0/18 7018 -69.182.64.0/19 7018 -69.182.96.0/23 7018 -69.182.98.0/24 53551 -69.182.99.0/24 7018 -69.182.100.0/22 7018 -69.182.104.0/24 32813 -69.182.105.0/24 7018 -69.182.106.0/23 7018 -69.182.108.0/22 7018 -69.182.112.0/20 7018 -69.182.128.0/17 7018 -69.183.0.0/16 7018 -69.187.16.0/21 10361 -69.187.24.0/22 10361 -69.187.29.0/24 10361 -69.187.31.0/24 10361 -69.191.176.0/21 10361 -69.191.186.0/24 8188 -69.191.187.0/24 10361 -69.191.188.0/23 10361 -69.191.190.0/24 10361 -69.191.191.0/24 8188 -69.191.192.0/22 10361 -69.191.198.0/23 10361 -69.191.200.0/24 10361 -69.191.204.0/22 10361 -69.191.208.0/22 10361 -69.191.212.0/24 10361 -69.191.214.0/24 10361 -69.191.216.0/24 10361 -69.191.220.0/24 10361 -69.191.226.0/24 10361 -69.191.229.0/24 10361 -69.191.230.0/23 10361 -69.191.233.0/24 13908 -69.191.234.0/24 10361 -69.191.240.0/20 10361 -69.192.0.0/22 20940 -69.192.4.0/23 20940 -69.192.6.0/24 32787 -69.192.7.0/24 20940 -69.192.8.0/21 20940 -69.192.16.0/20 3257 -69.192.32.0/20 2914 -69.192.64.0/20 20940 -69.192.80.0/20 6327 -69.192.100.0/22 16625 -69.192.104.0/21 16625 -69.192.112.0/20 16625 -69.192.160.0/19 16625 -69.192.192.0/20 16625 -69.192.228.0/22 2514 -69.192.236.0/23 812 -69.192.238.0/23 2514 -69.192.240.0/20 16625 -69.193.0.0/17 11351 -69.193.128.0/17 12271 -69.194.0.0/23 11691 -69.194.4.0/23 174 -69.194.6.0/24 396236 -69.194.7.0/24 395647 -69.194.8.0/21 25820 -69.194.16.0/20 25853 -69.194.32.0/19 395965 -69.194.64.0/18 197207 -69.194.128.0/23 23005 -69.194.130.0/24 54414 -69.194.131.0/24 23005 -69.194.132.0/22 23005 -69.194.136.0/23 23005 -69.194.138.0/24 11235 -69.194.139.0/24 23005 -69.194.140.0/24 23005 -69.194.141.0/24 53804 -69.194.142.0/23 23005 -69.194.144.0/22 26759 -69.194.148.0/23 26759 -69.194.150.0/24 26759 -69.194.151.0/24 46559 -69.194.152.0/23 46559 -69.194.154.0/24 26759 -69.194.155.0/24 46559 -69.194.156.0/24 26759 -69.194.157.0/24 46559 -69.194.158.0/23 46559 -69.194.163.0/24 36678 -69.194.165.0/24 36678 -69.194.166.0/24 36678 -69.194.176.0/21 32505 -69.194.184.0/23 397886 -69.194.186.0/23 54354 -69.194.188.0/24 27389 -69.194.189.0/24 32505 -69.194.190.0/23 32505 -69.194.192.0/21 25653 -69.194.200.0/23 25653 -69.194.202.0/24 25653 -69.194.204.0/23 25653 -69.194.208.0/20 33003 -69.194.224.0/20 33494 -69.194.240.0/20 6336 -69.195.0.0/22 36841 -69.195.4.0/24 36841 -69.195.5.0/24 6461 -69.195.6.0/23 36841 -69.195.8.0/21 36841 -69.195.16.0/22 21725 -69.195.20.0/24 21725 -69.195.21.0/24 23404 -69.195.22.0/23 21725 -69.195.24.0/22 21725 -69.195.28.0/23 21725 -69.195.30.0/24 23404 -69.195.31.0/24 21725 -69.195.32.0/24 16657 -69.195.33.0/24 46887 -69.195.34.0/24 46887 -69.195.35.0/24 23274 -69.195.36.0/24 40725 -69.195.37.0/24 46887 -69.195.38.0/23 46887 -69.195.40.0/24 46887 -69.195.41.0/24 16657 -69.195.42.0/24 14337 -69.195.43.0/24 33239 -69.195.44.0/23 16657 -69.195.46.0/23 46887 -69.195.48.0/20 14671 -69.195.64.0/18 46606 -69.195.128.0/19 19969 -69.195.160.0/24 13414 -69.195.162.0/23 13414 -69.195.164.0/23 13414 -69.195.166.0/24 13414 -69.195.168.0/23 13414 -69.195.171.0/24 13414 -69.195.172.0/24 13414 -69.195.174.0/23 13414 -69.195.176.0/22 13414 -69.195.180.0/23 13414 -69.195.182.0/24 13414 -69.195.184.0/21 13414 -69.195.192.0/23 23148 -69.195.194.0/24 23148 -69.195.195.0/24 27345 -69.195.196.0/23 23148 -69.195.198.0/23 46945 -69.195.200.0/21 23148 -69.195.208.0/23 23148 -69.195.210.0/23 27992 -69.195.212.0/22 23148 -69.195.216.0/22 23148 -69.195.220.0/23 23148 -69.195.222.0/23 46945 -69.195.224.0/21 23148 -69.195.232.0/22 23148 -69.195.238.0/23 23148 -69.195.240.0/20 23148 -69.196.0.0/19 30336 -69.196.32.0/20 7377 -69.196.48.0/20 46985 -69.196.64.0/21 6327 -69.196.72.0/22 6327 -69.196.76.0/22 14027 -69.196.80.0/23 6327 -69.196.82.0/24 46737 -69.196.83.0/24 46772 -69.196.84.0/23 30500 -69.196.86.0/23 6327 -69.196.88.0/21 6327 -69.196.96.0/19 36503 -69.196.128.0/18 5645 -69.196.192.0/20 7029 -69.196.208.0/21 30676 -69.196.216.0/23 30676 -69.196.218.0/23 7029 -69.196.220.0/22 7029 -69.196.224.0/21 22556 -69.196.232.0/22 22556 -69.196.236.0/24 19905 -69.196.237.0/24 22556 -69.196.238.0/24 22556 -69.196.239.0/24 36030 -69.196.240.0/22 22556 -69.196.244.0/23 22556 -69.196.246.0/24 22556 -69.196.247.0/24 19905 -69.196.248.0/21 22556 -69.197.0.0/22 25761 -69.197.4.0/22 46562 -69.197.8.0/21 25761 -69.197.16.0/23 25761 -69.197.18.0/24 25761 -69.197.19.0/24 12989 -69.197.20.0/22 46562 -69.197.24.0/22 25761 -69.197.28.0/24 25761 -69.197.29.0/24 12989 -69.197.30.0/23 25761 -69.197.32.0/23 25761 -69.197.34.0/24 46562 -69.197.35.0/24 25761 -69.197.36.0/22 25761 -69.197.40.0/22 25761 -69.197.44.0/24 12989 -69.197.45.0/24 25761 -69.197.46.0/23 25761 -69.197.48.0/21 25761 -69.197.56.0/22 25761 -69.197.60.0/23 25761 -69.197.62.0/23 12989 -69.197.64.0/18 17306 -69.197.128.0/18 32097 -69.197.192.0/18 11272 -69.198.0.0/16 17184 -69.199.0.0/18 17184 -69.199.64.0/19 17184 -69.199.96.0/21 17184 -69.199.104.0/22 17184 -69.199.112.0/20 17184 -69.199.128.0/18 17184 -69.199.192.0/19 17184 -69.199.224.0/20 17184 -69.199.240.0/21 17184 -69.199.248.0/22 17184 -69.200.0.0/18 11351 -69.200.64.0/19 12271 -69.200.96.0/19 11351 -69.200.128.0/18 11351 -69.200.192.0/19 11351 -69.200.224.0/19 12271 -69.201.0.0/17 11351 -69.201.128.0/17 12271 -69.202.0.0/17 11351 -69.202.128.0/17 12271 -69.203.0.0/17 12271 -69.203.128.0/19 12271 -69.203.160.0/19 11351 -69.203.192.0/18 12271 -69.204.0.0/17 11351 -69.204.128.0/18 11351 -69.204.192.0/19 11351 -69.204.224.0/19 12271 -69.206.0.0/16 12271 -69.207.0.0/16 11351 -69.208.0.0/20 7018 -69.208.16.0/21 7018 -69.208.24.0/23 7018 -69.208.26.0/24 26306 -69.208.27.0/24 7018 -69.208.28.0/22 7018 -69.208.32.0/19 7018 -69.208.64.0/18 7018 -69.208.128.0/17 7018 -69.209.0.0/19 7018 -69.209.32.0/22 7018 -69.209.36.0/23 7018 -69.209.38.0/24 7018 -69.209.39.0/24 22197 -69.209.40.0/21 7018 -69.209.48.0/20 7018 -69.209.64.0/18 7018 -69.209.128.0/17 7018 -69.210.0.0/18 7018 -69.210.128.0/17 7018 -69.211.0.0/17 7018 -69.211.128.0/22 7018 -69.211.132.0/23 7018 -69.211.134.0/24 7018 -69.211.135.0/24 33127 -69.211.136.0/21 7018 -69.211.144.0/20 7018 -69.211.160.0/19 7018 -69.211.192.0/20 7018 -69.211.208.0/23 7018 -69.211.210.0/24 7018 -69.211.211.0/24 21956 -69.211.212.0/22 7018 -69.211.216.0/23 7018 -69.211.218.0/24 21956 -69.211.219.0/24 7018 -69.211.220.0/22 7018 -69.211.224.0/19 7018 -69.212.0.0/17 7018 -69.212.128.0/19 7018 -69.212.160.0/20 7018 -69.212.176.0/21 14230 -69.212.184.0/21 7018 -69.212.192.0/18 7018 -69.213.0.0/21 7018 -69.213.8.0/24 7018 -69.213.9.0/24 15300 -69.213.10.0/23 7018 -69.213.12.0/22 7018 -69.213.16.0/20 7018 -69.213.32.0/19 7018 -69.213.64.0/18 7018 -69.213.128.0/19 7018 -69.213.160.0/20 7018 -69.213.176.0/22 7018 -69.213.180.0/23 7018 -69.213.182.0/23 2386 -69.213.184.0/21 7018 -69.213.192.0/18 7018 -69.214.0.0/16 7018 -69.215.0.0/20 7018 -69.215.16.0/21 7018 -69.215.24.0/24 2386 -69.215.25.0/24 7018 -69.215.26.0/24 2386 -69.215.27.0/24 7018 -69.215.28.0/22 7018 -69.215.32.0/19 7018 -69.215.64.0/18 7018 -69.215.128.0/17 7018 -69.216.0.0/15 7018 -69.218.0.0/20 7018 -69.218.16.0/21 7018 -69.218.24.0/22 7018 -69.218.28.0/23 7018 -69.218.30.0/24 7018 -69.218.31.0/24 11057 -69.218.32.0/23 7018 -69.218.34.0/24 22236 -69.218.35.0/24 7018 -69.218.36.0/22 7018 -69.218.40.0/21 7018 -69.218.48.0/20 7018 -69.218.64.0/18 7018 -69.218.128.0/17 7018 -69.219.0.0/18 7018 -69.219.64.0/20 7018 -69.219.80.0/22 7018 -69.219.84.0/24 35941 -69.219.85.0/24 7018 -69.219.86.0/23 7018 -69.219.88.0/21 7018 -69.219.96.0/19 7018 -69.219.128.0/17 7018 -69.220.0.0/20 7018 -69.220.16.0/22 7018 -69.220.20.0/24 16966 -69.220.21.0/24 7018 -69.220.22.0/23 16966 -69.220.24.0/21 7018 -69.220.32.0/19 7018 -69.220.64.0/18 7018 -69.220.128.0/17 7018 -69.221.0.0/18 7018 -69.221.64.0/20 7018 -69.221.80.0/22 7018 -69.221.84.0/24 7018 -69.221.85.0/24 31890 -69.221.86.0/23 7018 -69.221.88.0/21 7018 -69.221.96.0/19 7018 -69.221.128.0/17 7018 -69.222.0.0/15 7018 -69.224.0.0/14 7018 -69.228.0.0/15 7018 -69.230.0.0/17 7018 -69.230.128.0/18 7018 -69.231.0.0/17 7018 -69.231.192.0/18 7018 -69.232.0.0/15 7018 -69.234.0.0/17 7018 -69.234.128.0/18 7018 -69.235.0.0/17 7018 -69.235.192.0/18 7018 -69.236.0.0/16 7018 -69.237.0.0/19 7018 -69.237.32.0/20 7018 -69.237.48.0/21 7018 -69.237.56.0/22 7018 -69.237.60.0/23 7018 -69.237.62.0/24 14067 -69.237.63.0/24 7018 -69.237.64.0/18 7018 -69.237.128.0/17 7018 -69.238.0.0/17 7018 -69.238.128.0/19 7018 -69.238.160.0/23 7018 -69.238.162.0/24 22916 -69.238.163.0/24 7018 -69.238.164.0/22 7018 -69.238.168.0/21 7018 -69.238.176.0/20 7018 -69.238.192.0/18 7018 -69.239.0.0/16 7018 -69.240.0.0/12 7922 -70.0.0.0/13 10507 -70.8.0.0/16 10507 -70.9.0.0/16 1239 -70.10.0.0/15 1239 -70.12.0.0/15 10507 -70.14.0.0/16 10507 -70.15.0.0/16 3737 -70.16.32.0/20 701 -70.16.65.0/24 13977 -70.16.66.0/23 13977 -70.16.68.0/22 13977 -70.16.72.0/21 13977 -70.16.80.0/20 701 -70.16.96.0/20 13977 -70.16.160.0/19 701 -70.16.192.0/20 13977 -70.16.208.0/21 13977 -70.16.216.0/24 13672 -70.16.217.0/24 13977 -70.16.218.0/23 13977 -70.16.220.0/22 13977 -70.16.224.0/19 701 -70.17.0.0/18 701 -70.17.192.0/18 701 -70.18.0.0/18 701 -70.18.80.0/20 701 -70.18.112.0/20 701 -70.18.160.0/20 701 -70.18.192.0/19 701 -70.19.0.0/16 701 -70.20.0.0/19 701 -70.20.32.0/20 13977 -70.20.48.0/24 13977 -70.20.49.0/24 53784 -70.20.50.0/23 13977 -70.20.52.0/22 13977 -70.20.56.0/21 13977 -70.20.128.0/17 701 -70.21.0.0/16 701 -70.22.0.0/15 701 -70.24.0.0/16 577 -70.25.0.0/18 577 -70.25.64.0/19 577 -70.25.96.0/22 577 -70.25.100.0/23 577 -70.25.102.0/24 577 -70.25.103.0/24 3848 -70.25.104.0/21 577 -70.25.112.0/20 577 -70.25.128.0/21 36522 -70.25.136.0/22 36522 -70.25.140.0/22 577 -70.25.144.0/21 36522 -70.25.152.0/21 577 -70.25.160.0/19 577 -70.25.192.0/20 36522 -70.25.208.0/21 577 -70.25.216.0/22 36522 -70.25.220.0/22 577 -70.25.224.0/19 577 -70.26.0.0/15 577 -70.28.0.0/18 577 -70.28.64.0/19 577 -70.28.96.0/20 577 -70.28.112.0/22 577 -70.28.116.0/23 577 -70.28.118.0/24 577 -70.28.119.0/24 3848 -70.28.120.0/21 577 -70.28.128.0/24 577 -70.28.129.0/24 36522 -70.28.130.0/23 577 -70.28.132.0/22 36522 -70.28.136.0/24 577 -70.28.137.0/24 36522 -70.28.138.0/23 36522 -70.28.140.0/22 36522 -70.28.144.0/21 36522 -70.28.152.0/22 36522 -70.28.156.0/22 577 -70.28.160.0/19 577 -70.28.192.0/20 36522 -70.28.208.0/20 577 -70.28.224.0/20 36522 -70.28.240.0/22 36522 -70.28.244.0/23 36522 -70.28.246.0/23 577 -70.28.248.0/22 36522 -70.28.252.0/23 36522 -70.28.254.0/23 577 -70.29.0.0/16 577 -70.30.0.0/15 577 -70.32.0.0/21 32181 -70.32.16.0/20 55293 -70.32.33.0/24 15003 -70.32.34.0/24 396190 -70.32.35.0/24 15003 -70.32.36.0/24 395954 -70.32.37.0/24 15003 -70.32.39.0/24 15003 -70.32.40.0/24 396362 -70.32.43.0/24 15003 -70.32.45.0/24 396362 -70.32.46.0/24 15003 -70.32.48.0/20 14877 -70.32.64.0/18 31815 -70.32.128.0/22 15169 -70.32.132.0/24 395973 -70.32.133.0/24 15169 -70.32.134.0/23 15169 -70.32.136.0/24 395973 -70.32.137.0/24 15169 -70.32.138.0/23 15169 -70.32.140.0/22 15169 -70.32.144.0/20 15169 -70.32.160.0/21 20374 -70.32.168.0/22 20374 -70.32.172.0/22 397679 -70.32.176.0/20 20374 -70.32.192.0/19 4922 -70.32.224.0/19 11979 -70.33.0.0/24 40933 -70.33.1.0/24 8057 -70.33.2.0/23 8057 -70.33.4.0/24 8057 -70.33.5.0/24 33339 -70.33.6.0/24 40933 -70.33.7.0/24 33339 -70.33.8.0/22 33339 -70.33.12.0/22 19605 -70.33.16.0/22 19605 -70.33.20.0/24 40933 -70.33.21.0/24 8057 -70.33.22.0/23 40933 -70.33.24.0/24 8057 -70.33.25.0/24 40933 -70.33.26.0/24 40933 -70.33.27.0/24 8057 -70.33.28.0/24 8057 -70.33.29.0/24 33339 -70.33.30.0/23 40933 -70.33.32.0/23 40933 -70.33.34.0/24 40933 -70.33.35.0/24 33339 -70.33.36.0/23 33339 -70.33.38.0/23 8057 -70.33.40.0/23 8057 -70.33.42.0/23 33339 -70.33.44.0/22 33339 -70.33.48.0/23 33339 -70.33.50.0/24 33339 -70.33.51.0/24 8057 -70.33.52.0/23 40933 -70.33.54.0/24 40933 -70.33.55.0/24 8057 -70.33.56.0/23 8057 -70.33.58.0/24 8057 -70.33.59.0/24 40933 -70.33.60.0/24 40933 -70.33.61.0/24 33339 -70.33.62.0/24 40933 -70.33.63.0/24 33339 -70.33.64.0/18 36441 -70.33.128.0/22 7795 -70.33.132.0/24 7795 -70.33.133.0/24 396983 -70.33.134.0/23 14605 -70.33.136.0/22 7795 -70.33.140.0/23 7795 -70.33.142.0/24 20091 -70.33.143.0/24 7795 -70.33.144.0/21 7795 -70.33.152.0/22 7795 -70.33.156.0/23 7795 -70.33.158.0/24 20091 -70.33.159.0/24 7795 -70.33.160.0/23 33597 -70.33.162.0/24 395575 -70.33.163.0/24 33597 -70.33.164.0/22 33597 -70.33.168.0/24 33597 -70.33.169.0/24 54976 -70.33.170.0/23 33597 -70.33.172.0/22 33597 -70.33.176.0/22 33597 -70.33.180.0/23 33597 -70.33.182.0/24 33597 -70.33.183.0/24 29934 -70.33.184.0/21 33597 -70.33.192.0/21 36518 -70.33.204.0/22 13768 -70.33.208.0/22 13768 -70.33.212.0/23 13768 -70.33.214.0/23 54643 -70.33.216.0/21 13768 -70.33.224.0/24 13768 -70.33.225.0/24 36483 -70.33.226.0/23 13768 -70.33.228.0/22 13768 -70.33.232.0/21 13768 -70.33.240.0/22 13768 -70.33.244.0/23 13768 -70.33.246.0/24 13768 -70.33.247.0/24 54643 -70.33.248.0/22 13768 -70.33.253.0/24 19324 -70.33.254.0/23 13768 -70.34.0.0/20 11071 -70.34.16.0/23 13750 -70.34.18.0/23 18598 -70.34.20.0/22 21875 -70.34.30.0/23 18598 -70.34.32.0/21 11989 -70.34.40.0/21 15830 -70.34.48.0/23 63112 -70.34.50.0/24 63112 -70.34.55.0/24 63112 -70.34.56.0/23 63112 -70.34.58.0/24 63112 -70.34.60.0/24 63112 -70.34.61.0/24 6453 -70.34.62.0/24 6453 -70.34.64.0/23 17361 -70.34.66.0/24 17361 -70.34.80.0/20 53399 -70.34.96.0/20 22418 -70.34.112.0/22 55134 -70.34.116.0/23 55134 -70.34.118.0/24 55134 -70.34.119.0/24 12180 -70.34.120.0/21 55134 -70.34.128.0/19 26554 -70.34.160.0/22 26554 -70.34.164.0/24 26554 -70.34.165.0/24 14471 -70.34.166.0/24 393483 -70.34.167.0/24 26554 -70.34.168.0/21 26554 -70.34.176.0/21 26554 -70.34.184.0/22 26554 -70.34.188.0/24 54276 -70.34.189.0/24 26554 -70.34.190.0/23 26554 -70.34.224.0/20 62489 -70.35.0.0/24 33690 -70.35.1.0/24 46627 -70.35.2.0/23 46627 -70.35.4.0/22 46627 -70.35.8.0/23 46627 -70.35.10.0/24 46627 -70.35.11.0/24 5056 -70.35.12.0/22 5056 -70.35.16.0/20 14265 -70.35.32.0/19 33544 -70.35.64.0/20 14615 -70.35.80.0/20 23089 -70.35.96.0/20 32264 -70.35.112.0/20 30170 -70.35.128.0/23 18895 -70.35.130.0/24 18895 -70.35.131.0/24 395471 -70.35.132.0/23 18895 -70.35.134.0/24 395471 -70.35.135.0/24 18895 -70.35.136.0/24 395471 -70.35.137.0/24 18895 -70.35.138.0/24 18895 -70.35.139.0/24 395471 -70.35.140.0/22 18895 -70.35.144.0/20 32034 -70.35.160.0/20 26198 -70.35.176.0/20 33749 -70.35.192.0/20 8560 -70.35.208.0/23 22652 -70.35.210.0/24 22652 -70.35.211.0/24 54175 -70.35.212.0/22 22652 -70.35.216.0/21 22652 -70.35.224.0/20 33038 -70.35.240.0/20 33362 -70.36.0.0/20 3695 -70.36.16.0/21 36086 -70.36.24.0/22 36086 -70.36.28.0/23 36086 -70.36.30.0/24 54305 -70.36.31.0/24 36086 -70.36.32.0/20 30059 -70.36.48.0/20 40029 -70.36.64.0/20 6594 -70.36.80.0/22 32808 -70.36.85.0/24 1409 -70.36.86.0/23 1409 -70.36.96.0/19 22439 -70.36.128.0/19 46375 -70.36.160.0/19 7065 -70.36.192.0/20 46375 -70.36.208.0/20 7065 -70.36.224.0/19 46375 -70.37.0.0/17 8075 -70.37.128.0/18 8075 -70.37.192.0/19 13742 -70.37.224.0/20 17049 -70.37.240.0/21 46238 -70.37.248.0/22 23546 -70.37.252.0/22 14106 -70.38.0.0/17 32613 -70.39.0.0/24 46892 -70.39.1.0/24 5056 -70.39.2.0/24 46892 -70.39.3.0/24 397475 -70.39.4.0/24 5056 -70.39.5.0/24 396443 -70.39.6.0/23 5056 -70.39.8.0/22 5056 -70.39.12.0/24 5056 -70.39.13.0/24 18883 -70.39.14.0/24 394911 -70.39.15.0/24 5056 -70.39.16.0/22 19628 -70.39.20.0/24 13356 -70.39.21.0/24 5056 -70.39.22.0/24 397475 -70.39.23.0/24 5056 -70.39.24.0/23 5056 -70.39.26.0/23 63394 -70.39.28.0/22 5056 -70.39.58.0/23 17035 -70.39.64.0/18 46844 -70.39.128.0/20 3257 -70.39.144.0/21 54641 -70.39.152.0/24 3367 -70.39.153.0/24 3257 -70.39.154.0/23 3257 -70.39.156.0/23 3257 -70.39.158.0/24 3257 -70.39.159.0/24 22616 -70.39.160.0/20 3257 -70.39.176.0/21 3257 -70.39.184.0/23 54994 -70.39.186.0/23 3257 -70.39.188.0/23 54994 -70.39.190.0/24 3257 -70.39.191.0/24 54994 -70.39.192.0/20 3257 -70.39.208.0/20 1828 -70.39.224.0/22 3257 -70.39.228.0/24 11403 -70.39.229.0/24 3257 -70.39.230.0/23 3257 -70.39.232.0/22 54641 -70.39.236.0/22 3257 -70.39.240.0/24 53483 -70.39.241.0/24 3257 -70.39.242.0/23 3257 -70.39.244.0/24 30366 -70.39.245.0/24 3257 -70.39.246.0/23 30366 -70.39.248.0/22 54641 -70.39.252.0/24 3257 -70.39.253.0/24 16647 -70.39.254.0/23 3257 -70.40.0.0/20 42 -70.40.16.0/20 18859 -70.40.32.0/19 16904 -70.40.64.0/18 33749 -70.40.128.0/21 19397 -70.40.136.0/24 22419 -70.40.137.0/24 19397 -70.40.138.0/23 19397 -70.40.140.0/22 19397 -70.40.144.0/20 19397 -70.40.160.0/20 19397 -70.40.176.0/21 19397 -70.40.188.0/23 19397 -70.40.190.0/24 22419 -70.40.191.0/24 19397 -70.40.192.0/19 46606 -70.40.224.0/19 3663 -70.41.0.0/20 7155 -70.41.16.0/22 7155 -70.41.20.0/23 7155 -70.41.22.0/24 7155 -70.41.23.0/24 16491 -70.41.24.0/21 7155 -70.41.32.0/19 7155 -70.41.64.0/18 7155 -70.41.128.0/17 7155 -70.42.0.0/21 13791 -70.42.8.0/21 11855 -70.42.16.0/23 14743 -70.42.18.0/24 14610 -70.42.19.0/24 14743 -70.42.20.0/24 8149 -70.42.21.0/24 14743 -70.42.22.0/23 25878 -70.42.24.0/22 11854 -70.42.28.0/23 11854 -70.42.30.0/23 393544 -70.42.32.0/24 22075 -70.42.33.0/24 13789 -70.42.34.0/23 13789 -70.42.36.0/22 13789 -70.42.40.0/24 394506 -70.42.41.0/24 13789 -70.42.42.0/24 397665 -70.42.43.0/24 13789 -70.42.44.0/23 13789 -70.42.46.0/24 394183 -70.42.47.0/24 13789 -70.42.48.0/21 14742 -70.42.56.0/22 14742 -70.42.60.0/24 14742 -70.42.61.0/24 40083 -70.42.62.0/23 14742 -70.42.64.0/24 13789 -70.42.65.0/24 13821 -70.42.66.0/23 13789 -70.42.68.0/22 13789 -70.42.72.0/22 13789 -70.42.76.0/23 13789 -70.42.78.0/24 13789 -70.42.79.0/24 53842 -70.42.80.0/22 19024 -70.42.84.0/23 19024 -70.42.86.0/24 26646 -70.42.87.0/24 19024 -70.42.88.0/21 26328 -70.42.96.0/23 13791 -70.42.98.0/24 13791 -70.42.99.0/24 18690 -70.42.100.0/22 13791 -70.42.104.0/21 13791 -70.42.112.0/20 12181 -70.42.128.0/23 12182 -70.42.130.0/24 12182 -70.42.131.0/24 54538 -70.42.132.0/24 12182 -70.42.133.0/24 40885 -70.42.134.0/23 12182 -70.42.136.0/21 12182 -70.42.144.0/21 10913 -70.42.152.0/24 10913 -70.42.153.0/24 11054 -70.42.154.0/24 40620 -70.42.155.0/24 10913 -70.42.156.0/23 10913 -70.42.158.0/24 53466 -70.42.159.0/24 10913 -70.42.160.0/24 14744 -70.42.161.0/24 6640 -70.42.162.0/23 14744 -70.42.164.0/22 14744 -70.42.168.0/24 6640 -70.42.169.0/24 14744 -70.42.170.0/23 14744 -70.42.172.0/22 14744 -70.42.176.0/22 14745 -70.42.180.0/23 14745 -70.42.182.0/24 17142 -70.42.183.0/24 30536 -70.42.184.0/24 14743 -70.42.185.0/24 13362 -70.42.186.0/23 14743 -70.42.188.0/22 14743 -70.42.192.0/22 14742 -70.42.196.0/23 14742 -70.42.198.0/23 393218 -70.42.200.0/21 12180 -70.42.208.0/22 12181 -70.42.212.0/23 12181 -70.42.214.0/24 12181 -70.42.215.0/24 46427 -70.42.216.0/24 33476 -70.42.217.0/24 10910 -70.42.218.0/23 13789 -70.42.220.0/23 13789 -70.42.222.0/24 13789 -70.42.223.0/24 29788 -70.42.224.0/21 11855 -70.42.232.0/24 14743 -70.42.233.0/24 13896 -70.42.234.0/23 14743 -70.42.236.0/24 55034 -70.42.237.0/24 14743 -70.42.238.0/23 14743 -70.42.240.0/21 12182 -70.42.248.0/23 12182 -70.42.250.0/24 20465 -70.42.251.0/24 12182 -70.42.252.0/22 12182 -70.43.0.0/16 7029 -70.44.0.0/16 3737 -70.45.0.0/20 14638 -70.45.16.0/21 36423 -70.45.24.0/21 14638 -70.45.32.0/19 36423 -70.45.64.0/19 36423 -70.45.96.0/20 36423 -70.45.112.0/22 14638 -70.45.116.0/22 36423 -70.45.120.0/21 14638 -70.45.128.0/18 36423 -70.45.192.0/19 36423 -70.45.224.0/20 36423 -70.45.240.0/22 36423 -70.45.244.0/23 36423 -70.45.246.0/23 14638 -70.45.248.0/21 36423 -70.46.0.0/16 7029 -70.47.0.0/19 8001 -70.47.32.0/20 8001 -70.47.48.0/22 8001 -70.47.52.0/23 8001 -70.47.54.0/24 8001 -70.47.55.0/24 43584 -70.47.56.0/21 8001 -70.47.64.0/21 8001 -70.47.72.0/22 8001 -70.47.76.0/22 4883 -70.47.80.0/22 8001 -70.47.84.0/22 4883 -70.47.88.0/21 8001 -70.47.96.0/19 8001 -70.47.128.0/20 8001 -70.47.144.0/21 8001 -70.47.152.0/24 27228 -70.47.153.0/24 8001 -70.47.154.0/23 8001 -70.47.156.0/22 8001 -70.47.160.0/19 8001 -70.47.192.0/18 8001 -70.48.0.0/13 577 -70.56.0.0/14 209 -70.60.0.0/19 10796 -70.60.32.0/22 10796 -70.60.36.0/24 10796 -70.60.37.0/24 14230 -70.60.38.0/23 10796 -70.60.40.0/21 10796 -70.60.48.0/21 10796 -70.60.56.0/22 10796 -70.60.60.0/24 10796 -70.60.61.0/24 63027 -70.60.62.0/23 10796 -70.60.64.0/19 10796 -70.60.96.0/19 11426 -70.60.128.0/18 10796 -70.60.192.0/19 11426 -70.60.224.0/20 11426 -70.60.240.0/21 11426 -70.60.248.0/24 394551 -70.60.249.0/24 11426 -70.60.250.0/23 11426 -70.60.252.0/22 11426 -70.61.0.0/22 10796 -70.61.4.0/23 10796 -70.61.6.0/24 33363 -70.61.7.0/24 10796 -70.61.8.0/21 10796 -70.61.16.0/21 10796 -70.61.24.0/22 10796 -70.61.28.0/24 26993 -70.61.29.0/24 10796 -70.61.30.0/23 10796 -70.61.32.0/24 23435 -70.61.33.0/24 10796 -70.61.34.0/23 10796 -70.61.36.0/22 10796 -70.61.40.0/21 10796 -70.61.48.0/22 10796 -70.61.52.0/23 10796 -70.61.54.0/23 33363 -70.61.56.0/21 10796 -70.61.64.0/18 11426 -70.61.128.0/19 10796 -70.61.160.0/20 10796 -70.61.176.0/22 10796 -70.61.180.0/23 10796 -70.61.182.0/24 10796 -70.61.183.0/24 17068 -70.61.184.0/21 10796 -70.61.192.0/19 11426 -70.61.224.0/20 10796 -70.61.240.0/22 10796 -70.61.244.0/23 10796 -70.61.246.0/24 8001 -70.61.247.0/24 10796 -70.61.248.0/21 10796 -70.62.0.0/19 10796 -70.62.32.0/20 10796 -70.62.48.0/24 33363 -70.62.49.0/24 22495 -70.62.50.0/23 33363 -70.62.52.0/23 33363 -70.62.54.0/24 33363 -70.62.55.0/24 10796 -70.62.56.0/21 33363 -70.62.64.0/18 11426 -70.62.128.0/18 10796 -70.62.192.0/21 10796 -70.62.200.0/24 10796 -70.62.201.0/24 11143 -70.62.202.0/24 40488 -70.62.203.0/24 10796 -70.62.204.0/23 10796 -70.62.206.0/23 36298 -70.62.208.0/20 10796 -70.62.224.0/19 10796 -70.63.0.0/20 10796 -70.63.16.0/21 10796 -70.63.24.0/22 10796 -70.63.28.0/23 10796 -70.63.30.0/23 31921 -70.63.32.0/20 10796 -70.63.48.0/22 33363 -70.63.52.0/23 33363 -70.63.54.0/24 33363 -70.63.55.0/24 10796 -70.63.56.0/21 10796 -70.63.64.0/20 11426 -70.63.80.0/21 11426 -70.63.88.0/22 11426 -70.63.92.0/24 53493 -70.63.93.0/24 11426 -70.63.94.0/23 11426 -70.63.96.0/19 11426 -70.63.128.0/21 11426 -70.63.136.0/22 11426 -70.63.140.0/24 11426 -70.63.141.0/24 20084 -70.63.142.0/23 11426 -70.63.144.0/20 11426 -70.63.160.0/19 11426 -70.63.192.0/18 11426 -70.64.0.0/12 6327 -70.80.0.0/14 5769 -70.84.0.0/16 36351 -70.85.0.0/20 36351 -70.85.16.0/24 63949 -70.85.17.0/24 36351 -70.85.18.0/23 36351 -70.85.20.0/22 36351 -70.85.24.0/22 36351 -70.85.28.0/23 36351 -70.85.30.0/24 36351 -70.85.31.0/24 63949 -70.85.32.0/19 36351 -70.85.64.0/18 36351 -70.85.128.0/24 36351 -70.85.129.0/24 63949 -70.85.130.0/23 36351 -70.85.132.0/22 36351 -70.85.136.0/21 36351 -70.85.144.0/20 36351 -70.85.160.0/19 36351 -70.85.192.0/18 36351 -70.86.0.0/16 36351 -70.87.0.0/17 36351 -70.87.128.0/18 36351 -70.87.192.0/20 36351 -70.87.208.0/21 36351 -70.87.216.0/22 36351 -70.87.220.0/23 36351 -70.87.222.0/24 63949 -70.87.223.0/24 36351 -70.87.224.0/19 36351 -70.88.0.0/14 7922 -70.92.0.0/19 10796 -70.92.32.0/19 11427 -70.92.64.0/18 10796 -70.92.128.0/17 10796 -70.93.0.0/16 20001 -70.94.0.0/17 11427 -70.94.128.0/18 11427 -70.94.192.0/19 11427 -70.94.224.0/20 11955 -70.94.240.0/20 10796 -70.95.0.0/18 20001 -70.95.64.0/21 20001 -70.95.72.0/23 20001 -70.95.74.0/26 20001 -70.95.74.64/27 20001 -70.95.74.96/31 20001 -70.95.74.99/32 20001 -70.95.74.100/30 20001 -70.95.74.104/29 20001 -70.95.74.112/28 20001 -70.95.74.128/25 20001 -70.95.75.0/24 20001 -70.95.76.0/22 20001 -70.95.80.0/20 20001 -70.95.96.0/19 20001 -70.95.128.0/17 20001 -70.96.0.0/18 7385 -70.96.64.0/20 7385 -70.96.80.0/22 7385 -70.96.84.0/22 29951 -70.96.88.0/21 7385 -70.96.96.0/23 29951 -70.96.98.0/23 7385 -70.96.100.0/22 7385 -70.96.104.0/21 7385 -70.96.112.0/20 7385 -70.96.128.0/19 7385 -70.96.160.0/24 7385 -70.96.161.0/24 32602 -70.96.162.0/23 7385 -70.96.164.0/22 7385 -70.96.168.0/21 7385 -70.96.176.0/20 7385 -70.96.192.0/19 7385 -70.96.224.0/20 7385 -70.96.240.0/21 7385 -70.96.248.0/22 29951 -70.96.252.0/22 7385 -70.97.0.0/18 7385 -70.97.64.0/19 7385 -70.97.96.0/20 7385 -70.97.112.0/21 7385 -70.97.120.0/23 7385 -70.97.122.0/24 393626 -70.97.123.0/24 7385 -70.97.124.0/22 7385 -70.97.128.0/20 7385 -70.97.144.0/21 7385 -70.97.152.0/22 7385 -70.97.156.0/22 10587 -70.97.160.0/19 7385 -70.97.192.0/18 7385 -70.98.0.0/19 7385 -70.98.32.0/20 7385 -70.98.48.0/22 7385 -70.98.52.0/23 26721 -70.98.54.0/23 7385 -70.98.56.0/21 7385 -70.98.64.0/21 7385 -70.98.72.0/22 7385 -70.98.76.0/23 7385 -70.98.78.0/23 16578 -70.98.80.0/21 7385 -70.98.88.0/22 7385 -70.98.92.0/24 53752 -70.98.93.0/24 7385 -70.98.94.0/23 7385 -70.98.96.0/21 7385 -70.98.104.0/23 54936 -70.98.106.0/23 7385 -70.98.108.0/22 7385 -70.98.112.0/20 7385 -70.98.128.0/19 7385 -70.98.160.0/20 7385 -70.98.176.0/22 7385 -70.98.180.0/23 7385 -70.98.182.0/24 7385 -70.98.183.0/24 26664 -70.98.184.0/21 7385 -70.98.192.0/21 7385 -70.98.200.0/22 7385 -70.98.204.0/22 29951 -70.98.208.0/20 7385 -70.98.224.0/20 7385 -70.98.240.0/22 7385 -70.98.244.0/24 7385 -70.98.245.0/24 55226 -70.98.246.0/24 55226 -70.98.247.0/24 7385 -70.98.248.0/23 10587 -70.98.250.0/23 7385 -70.98.252.0/22 7385 -70.99.0.0/17 7385 -70.99.128.0/19 7385 -70.99.160.0/20 7385 -70.99.176.0/22 7385 -70.99.180.0/23 7385 -70.99.182.0/24 7385 -70.99.183.0/24 26135 -70.99.184.0/21 7385 -70.99.192.0/22 29951 -70.99.196.0/23 7385 -70.99.198.0/24 7385 -70.99.199.0/24 393840 -70.99.200.0/22 7385 -70.99.204.0/23 29951 -70.99.206.0/23 7385 -70.99.208.0/20 7385 -70.99.224.0/20 7385 -70.99.240.0/21 29951 -70.99.248.0/21 7385 -70.100.0.0/20 5650 -70.100.16.0/21 7011 -70.100.24.0/21 5650 -70.100.32.0/23 5650 -70.100.34.0/24 5650 -70.100.35.0/24 7011 -70.100.36.0/22 5650 -70.100.40.0/21 5650 -70.100.48.0/20 5650 -70.100.64.0/23 5650 -70.100.66.0/24 7011 -70.100.67.0/24 5650 -70.100.68.0/22 7011 -70.100.72.0/21 7011 -70.100.80.0/20 7011 -70.100.96.0/19 5650 -70.100.128.0/18 5650 -70.100.192.0/21 7011 -70.100.200.0/21 5650 -70.100.208.0/20 5650 -70.100.224.0/20 5650 -70.100.240.0/22 5650 -70.100.244.0/24 7011 -70.100.245.0/24 5650 -70.100.246.0/23 5650 -70.100.248.0/22 7011 -70.100.252.0/22 5650 -70.101.0.0/17 5650 -70.101.128.0/21 7011 -70.101.136.0/23 7011 -70.101.138.0/23 5650 -70.101.140.0/23 7011 -70.101.142.0/23 5650 -70.101.144.0/22 5650 -70.101.148.0/22 7011 -70.101.152.0/22 7011 -70.101.156.0/22 5650 -70.101.160.0/19 7011 -70.101.192.0/19 5650 -70.101.224.0/23 5650 -70.101.226.0/24 5650 -70.101.227.0/24 7011 -70.101.228.0/23 5650 -70.101.230.0/24 5650 -70.101.231.0/24 7011 -70.101.232.0/24 5650 -70.101.233.0/24 7011 -70.101.234.0/24 7011 -70.101.235.0/24 5650 -70.101.236.0/22 5650 -70.101.240.0/20 5650 -70.102.0.0/19 7385 -70.102.32.0/21 7385 -70.102.40.0/22 7385 -70.102.44.0/23 7385 -70.102.46.0/24 395044 -70.102.47.0/24 7385 -70.102.48.0/20 7385 -70.102.64.0/20 7385 -70.102.80.0/22 7385 -70.102.84.0/23 7385 -70.102.86.0/24 27471 -70.102.87.0/24 7385 -70.102.88.0/21 7385 -70.102.96.0/22 7385 -70.102.100.0/23 7385 -70.102.102.0/23 16578 -70.102.104.0/23 26721 -70.102.106.0/24 26721 -70.102.107.0/24 7385 -70.102.108.0/22 7385 -70.102.112.0/20 7385 -70.102.128.0/24 393626 -70.102.129.0/24 7385 -70.102.130.0/23 7385 -70.102.132.0/22 7385 -70.102.136.0/21 7385 -70.102.144.0/20 7385 -70.102.160.0/20 7385 -70.102.176.0/21 7385 -70.102.184.0/23 7385 -70.102.186.0/24 30019 -70.102.187.0/24 7385 -70.102.188.0/22 7385 -70.102.192.0/24 7385 -70.102.193.0/24 395459 -70.102.194.0/23 7385 -70.102.196.0/22 7385 -70.102.200.0/23 7385 -70.102.202.0/24 36709 -70.102.203.0/24 7385 -70.102.204.0/22 7385 -70.102.208.0/20 7385 -70.102.224.0/22 7385 -70.102.228.0/23 7385 -70.102.230.0/23 19717 -70.102.232.0/21 7385 -70.102.240.0/20 7385 -70.103.0.0/21 7385 -70.103.8.0/24 17209 -70.103.9.0/24 7385 -70.103.10.0/23 7385 -70.103.12.0/22 7385 -70.103.16.0/20 7385 -70.103.32.0/19 7385 -70.103.64.0/21 7385 -70.103.72.0/23 7385 -70.103.74.0/24 7385 -70.103.75.0/24 13833 -70.103.76.0/22 7385 -70.103.80.0/20 7385 -70.103.96.0/21 7385 -70.103.104.0/24 13434 -70.103.105.0/24 7385 -70.103.106.0/23 7385 -70.103.108.0/22 7385 -70.103.112.0/20 7385 -70.103.128.0/21 7385 -70.103.136.0/24 395719 -70.103.137.0/24 7385 -70.103.138.0/23 7385 -70.103.140.0/22 7385 -70.103.144.0/20 7385 -70.103.160.0/21 7385 -70.103.168.0/23 7385 -70.103.170.0/23 26721 -70.103.172.0/22 7385 -70.103.176.0/20 7385 -70.103.192.0/20 7385 -70.103.208.0/24 393626 -70.103.209.0/24 7385 -70.103.210.0/23 7385 -70.103.212.0/22 7385 -70.103.216.0/21 7385 -70.103.224.0/22 7385 -70.103.228.0/23 7385 -70.103.230.0/24 13833 -70.103.231.0/24 7385 -70.103.232.0/21 7385 -70.103.240.0/20 7385 -70.104.0.0/19 5650 -70.104.32.0/19 701 -70.104.128.0/20 701 -70.104.144.0/20 5650 -70.104.160.0/19 701 -70.104.192.0/20 701 -70.105.0.0/18 701 -70.105.64.0/22 23148 -70.105.68.0/24 11303 -70.105.69.0/24 23148 -70.105.70.0/23 23148 -70.105.72.0/23 11303 -70.105.74.0/23 23148 -70.105.76.0/23 23148 -70.105.78.0/23 27992 -70.105.80.0/21 23148 -70.105.88.0/22 23148 -70.105.92.0/24 11303 -70.105.93.0/24 23148 -70.105.128.0/23 702 -70.105.132.0/23 701 -70.105.136.0/23 702 -70.105.140.0/23 703 -70.105.160.0/19 701 -70.105.192.0/19 701 -70.105.224.0/19 13977 -70.106.0.0/19 701 -70.106.64.0/18 701 -70.106.128.0/19 701 -70.106.176.0/20 701 -70.106.192.0/18 701 -70.107.0.0/16 701 -70.108.0.0/16 701 -70.109.3.0/24 11303 -70.109.5.0/24 11303 -70.109.6.0/24 11303 -70.109.8.0/24 11303 -70.109.25.0/24 11303 -70.109.30.0/24 11303 -70.109.32.0/20 5650 -70.109.48.0/20 701 -70.109.64.0/19 701 -70.109.128.0/21 13977 -70.109.136.0/23 13977 -70.109.138.0/23 13672 -70.109.140.0/22 13672 -70.109.144.0/21 13672 -70.109.152.0/23 13977 -70.109.154.0/24 13977 -70.109.155.0/24 13672 -70.109.156.0/22 13672 -70.109.161.0/24 13977 -70.109.162.0/23 13977 -70.109.164.0/23 13977 -70.109.166.0/24 13977 -70.109.167.0/24 21584 -70.109.168.0/21 13977 -70.109.176.0/20 13977 -70.109.192.0/18 701 -70.110.16.0/20 701 -70.110.64.0/20 5650 -70.110.80.0/20 701 -70.110.124.0/22 701 -70.110.128.0/17 701 -70.111.0.0/16 701 -70.112.0.0/13 11427 -70.120.0.0/14 11427 -70.124.0.0/16 11427 -70.125.0.0/18 33363 -70.125.64.0/19 33363 -70.125.96.0/19 11427 -70.125.128.0/17 11427 -70.126.0.0/15 33363 -70.128.0.0/15 7018 -70.130.0.0/17 7018 -70.130.128.0/18 7018 -70.130.192.0/20 19047 -70.130.208.0/23 19047 -70.130.226.0/23 19047 -70.131.0.0/17 7018 -70.131.128.0/18 7018 -70.132.0.0/19 16509 -70.132.32.0/21 16509 -70.132.40.0/24 16509 -70.132.42.0/23 16509 -70.132.44.0/23 16509 -70.132.46.0/24 16509 -70.132.48.0/22 16509 -70.132.52.0/23 16509 -70.132.55.0/24 16509 -70.132.57.0/24 16509 -70.132.58.0/23 16509 -70.132.60.0/22 16509 -70.132.64.0/18 7018 -70.132.128.0/17 7018 -70.133.0.0/17 7018 -70.133.128.0/18 7018 -70.133.192.0/19 7018 -70.133.224.0/23 7018 -70.133.226.0/23 18595 -70.133.228.0/22 7018 -70.133.232.0/21 7018 -70.133.240.0/20 7018 -70.134.0.0/19 7018 -70.134.32.0/21 7018 -70.134.40.0/22 7018 -70.134.44.0/23 7018 -70.134.46.0/24 36595 -70.134.47.0/24 7018 -70.134.48.0/20 7018 -70.134.64.0/18 7018 -70.134.128.0/17 7018 -70.135.0.0/17 7018 -70.135.128.0/18 7018 -70.135.192.0/22 7018 -70.135.196.0/23 7018 -70.135.198.0/24 7018 -70.135.199.0/24 27028 -70.135.200.0/21 7018 -70.135.208.0/20 7018 -70.135.224.0/19 7018 -70.136.0.0/14 7018 -70.140.0.0/17 7018 -70.140.128.0/18 7018 -70.140.192.0/24 7018 -70.140.193.0/24 2386 -70.140.194.0/23 7018 -70.140.196.0/22 7018 -70.140.200.0/21 7018 -70.140.208.0/20 7018 -70.140.224.0/19 7018 -70.141.0.0/18 7018 -70.141.64.0/20 7018 -70.141.80.0/23 7018 -70.141.82.0/24 27562 -70.141.83.0/24 7018 -70.141.84.0/22 7018 -70.141.88.0/21 7018 -70.141.96.0/23 7018 -70.141.98.0/24 7018 -70.141.99.0/24 13450 -70.141.100.0/22 7018 -70.141.104.0/21 7018 -70.141.112.0/20 7018 -70.141.128.0/17 7018 -70.142.0.0/17 7018 -70.142.128.0/20 7018 -70.142.144.0/22 7018 -70.142.148.0/23 36418 -70.142.150.0/23 7018 -70.142.152.0/21 7018 -70.142.160.0/19 7018 -70.142.192.0/18 7018 -70.143.0.0/17 7018 -70.143.128.0/19 25993 -70.143.160.0/19 7018 -70.143.192.0/18 7018 -70.144.0.0/16 6389 -70.145.0.0/20 7018 -70.145.16.0/20 6389 -70.145.32.0/19 6389 -70.145.64.0/20 6389 -70.145.80.0/21 7018 -70.145.88.0/21 6389 -70.145.96.0/20 7018 -70.145.112.0/20 6389 -70.145.128.0/20 7018 -70.145.144.0/20 6389 -70.145.160.0/19 7018 -70.145.192.0/19 7018 -70.145.224.0/20 7018 -70.145.240.0/20 6389 -70.146.0.0/16 6389 -70.147.0.0/18 7018 -70.147.64.0/20 7018 -70.147.80.0/20 6389 -70.147.96.0/20 6389 -70.147.112.0/20 7018 -70.147.128.0/19 7018 -70.147.160.0/20 6389 -70.147.176.0/20 7018 -70.147.192.0/21 7018 -70.147.200.0/22 7018 -70.147.204.0/22 6389 -70.147.208.0/20 7018 -70.147.224.0/19 7018 -70.148.0.0/18 7018 -70.148.64.0/20 7018 -70.148.80.0/21 7018 -70.148.88.0/21 6389 -70.148.96.0/20 6389 -70.148.112.0/20 7018 -70.148.128.0/18 7018 -70.148.192.0/19 6389 -70.148.224.0/19 7018 -70.149.0.0/16 6389 -70.150.0.0/20 6389 -70.150.16.0/22 6389 -70.150.20.0/24 6389 -70.150.21.0/24 19957 -70.150.22.0/23 6389 -70.150.24.0/21 6389 -70.150.32.0/19 6389 -70.150.64.0/18 6389 -70.150.128.0/18 6389 -70.150.192.0/20 6389 -70.150.208.0/24 6389 -70.150.209.0/24 62954 -70.150.210.0/23 6389 -70.150.212.0/22 6389 -70.150.216.0/21 6389 -70.150.224.0/24 6389 -70.150.225.0/24 33420 -70.150.226.0/23 6389 -70.150.228.0/22 6389 -70.150.232.0/21 6389 -70.150.240.0/22 6389 -70.150.244.0/23 6389 -70.150.246.0/24 6389 -70.150.247.0/24 19956 -70.150.248.0/21 6389 -70.151.0.0/19 6389 -70.151.32.0/24 6389 -70.151.33.0/24 13342 -70.151.34.0/23 6389 -70.151.36.0/22 6389 -70.151.40.0/21 6389 -70.151.48.0/22 6389 -70.151.52.0/23 6389 -70.151.54.0/23 40844 -70.151.56.0/21 6389 -70.151.64.0/20 6389 -70.151.80.0/22 6389 -70.151.84.0/23 6389 -70.151.86.0/24 6389 -70.151.87.0/24 2386 -70.151.88.0/21 6389 -70.151.96.0/19 6389 -70.151.128.0/19 6389 -70.151.160.0/20 6389 -70.151.176.0/23 6389 -70.151.178.0/24 10921 -70.151.179.0/24 6389 -70.151.180.0/22 6389 -70.151.184.0/21 6389 -70.151.192.0/18 6389 -70.154.0.0/19 6389 -70.154.32.0/20 7018 -70.154.48.0/20 6389 -70.154.64.0/20 7018 -70.154.80.0/20 6389 -70.154.96.0/19 7018 -70.154.128.0/19 6389 -70.154.160.0/19 7018 -70.154.192.0/20 7018 -70.154.208.0/20 6389 -70.154.224.0/21 6389 -70.154.232.0/21 7018 -70.154.240.0/20 6389 -70.155.0.0/17 7018 -70.155.128.0/19 7018 -70.155.160.0/20 7018 -70.155.176.0/20 6389 -70.155.192.0/21 7018 -70.155.200.0/21 6389 -70.155.208.0/20 6389 -70.155.224.0/19 7018 -70.158.0.0/21 6389 -70.158.8.0/23 6389 -70.158.10.0/24 29902 -70.158.11.0/24 6389 -70.158.12.0/22 6389 -70.158.16.0/20 6389 -70.158.32.0/19 6389 -70.158.64.0/19 6389 -70.158.96.0/21 2386 -70.158.104.0/21 6389 -70.158.112.0/20 6389 -70.158.128.0/17 6389 -70.159.0.0/23 6389 -70.159.2.0/24 6389 -70.159.3.0/24 53897 -70.159.4.0/24 2386 -70.159.5.0/24 6389 -70.159.6.0/23 6389 -70.159.8.0/24 6389 -70.159.9.0/24 2386 -70.159.10.0/23 6389 -70.159.12.0/23 13342 -70.159.14.0/23 6389 -70.159.16.0/20 6389 -70.159.32.0/19 6389 -70.159.64.0/18 6389 -70.159.128.0/20 6389 -70.159.144.0/22 6389 -70.159.148.0/24 6389 -70.159.149.0/24 14556 -70.159.150.0/23 6389 -70.159.152.0/21 6389 -70.159.160.0/23 7018 -70.159.162.0/23 6389 -70.159.164.0/22 6389 -70.159.168.0/21 6389 -70.159.176.0/23 7018 -70.159.178.0/23 6389 -70.159.180.0/22 6389 -70.159.184.0/23 7018 -70.159.186.0/23 6389 -70.159.188.0/23 7018 -70.159.190.0/24 6389 -70.159.191.0/24 7018 -70.159.192.0/23 7018 -70.159.194.0/23 6389 -70.159.196.0/23 6389 -70.159.198.0/23 7018 -70.159.200.0/23 7018 -70.159.202.0/23 6389 -70.159.204.0/23 7018 -70.159.206.0/24 6389 -70.159.207.0/24 7018 -70.159.208.0/22 7018 -70.159.212.0/22 6389 -70.159.216.0/23 7018 -70.159.218.0/23 6389 -70.159.220.0/23 7018 -70.159.222.0/23 6389 -70.159.224.0/23 7018 -70.159.226.0/23 6389 -70.159.228.0/23 7018 -70.159.230.0/23 6389 -70.159.232.0/23 7018 -70.159.234.0/23 6389 -70.159.236.0/22 7018 -70.159.240.0/23 7018 -70.159.242.0/23 6389 -70.159.244.0/23 7018 -70.159.246.0/23 6389 -70.159.248.0/23 7018 -70.159.250.0/23 6389 -70.159.252.0/23 7018 -70.159.254.0/23 6389 -70.160.0.0/14 22773 -70.164.0.0/18 22773 -70.164.64.0/19 22773 -70.164.96.0/24 53621 -70.164.97.0/24 22773 -70.164.98.0/23 22773 -70.164.100.0/22 22773 -70.164.104.0/21 22773 -70.164.112.0/21 22773 -70.164.120.0/22 22773 -70.164.124.0/23 22773 -70.164.126.0/24 32412 -70.164.127.0/24 19719 -70.164.128.0/17 22773 -70.165.0.0/19 22773 -70.165.32.0/22 22773 -70.165.36.0/24 22773 -70.165.37.0/24 11895 -70.165.38.0/23 22773 -70.165.40.0/21 22773 -70.165.48.0/22 22773 -70.165.52.0/24 22773 -70.165.53.0/24 62620 -70.165.54.0/23 22773 -70.165.56.0/21 22773 -70.165.64.0/18 22773 -70.165.128.0/22 62957 -70.165.132.0/22 22773 -70.165.136.0/22 62957 -70.165.140.0/24 22773 -70.165.141.0/24 62957 -70.165.142.0/24 62957 -70.165.143.0/24 22773 -70.165.144.0/20 22773 -70.165.160.0/24 62957 -70.165.161.0/24 22773 -70.165.162.0/24 62957 -70.165.163.0/24 22773 -70.165.164.0/23 62957 -70.165.166.0/23 22773 -70.165.168.0/21 22773 -70.165.176.0/20 22773 -70.165.192.0/22 22773 -70.165.196.0/22 62957 -70.165.200.0/21 22773 -70.165.208.0/22 62957 -70.165.212.0/23 62957 -70.165.214.0/23 22773 -70.165.216.0/21 22773 -70.165.224.0/19 22773 -70.166.0.0/19 22773 -70.166.32.0/20 22773 -70.166.48.0/20 36801 -70.166.64.0/18 22773 -70.166.128.0/18 22773 -70.166.192.0/23 22773 -70.166.194.0/24 62559 -70.166.195.0/24 22773 -70.166.196.0/22 22773 -70.166.200.0/21 22773 -70.166.208.0/20 22773 -70.166.224.0/19 22773 -70.167.0.0/22 22773 -70.167.4.0/24 22773 -70.167.5.0/24 394861 -70.167.6.0/23 22773 -70.167.8.0/21 22773 -70.167.16.0/20 22773 -70.167.32.0/19 22773 -70.167.64.0/20 22773 -70.167.80.0/21 22773 -70.167.88.0/22 22773 -70.167.92.0/23 22773 -70.167.94.0/24 22773 -70.167.95.0/24 14580 -70.167.96.0/19 22773 -70.167.128.0/19 22773 -70.167.160.0/21 22773 -70.167.168.0/22 22773 -70.167.172.0/24 22773 -70.167.173.0/24 19525 -70.167.174.0/23 22773 -70.167.176.0/20 22773 -70.167.192.0/18 22773 -70.168.0.0/18 22773 -70.168.64.0/21 22773 -70.168.72.0/22 22773 -70.168.76.0/24 36680 -70.168.77.0/24 22773 -70.168.78.0/23 22773 -70.168.80.0/20 22773 -70.168.96.0/19 22773 -70.168.128.0/20 22773 -70.168.144.0/22 22773 -70.168.148.0/23 22773 -70.168.150.0/24 22773 -70.168.151.0/24 36245 -70.168.152.0/21 22773 -70.168.160.0/20 22773 -70.168.176.0/22 22773 -70.168.180.0/24 396034 -70.168.181.0/24 22773 -70.168.182.0/23 22773 -70.168.184.0/21 22773 -70.168.192.0/19 22773 -70.168.224.0/23 22773 -70.168.226.0/24 22773 -70.168.227.0/24 14666 -70.168.228.0/22 22773 -70.168.232.0/21 22773 -70.168.240.0/21 22773 -70.168.248.0/23 22773 -70.168.250.0/24 22773 -70.168.251.0/24 62620 -70.168.252.0/22 22773 -70.169.0.0/19 22773 -70.169.32.0/21 22773 -70.169.40.0/22 22773 -70.169.44.0/24 22773 -70.169.45.0/24 36531 -70.169.46.0/23 22773 -70.169.48.0/20 22773 -70.169.64.0/19 22773 -70.169.96.0/19 14878 -70.169.128.0/19 22773 -70.169.160.0/20 22773 -70.169.176.0/21 22773 -70.169.184.0/22 22773 -70.169.188.0/24 394468 -70.169.189.0/24 22773 -70.169.190.0/23 22773 -70.169.192.0/21 22773 -70.169.200.0/22 22773 -70.169.204.0/23 22773 -70.169.206.0/24 36446 -70.169.207.0/24 22773 -70.169.208.0/21 22773 -70.169.216.0/22 22773 -70.169.220.0/23 22773 -70.169.222.0/23 40358 -70.169.224.0/19 22773 -70.170.0.0/16 22773 -70.171.0.0/17 22773 -70.171.128.0/20 22773 -70.171.144.0/22 22773 -70.171.148.0/24 395675 -70.171.149.0/24 22773 -70.171.150.0/23 22773 -70.171.152.0/22 22773 -70.171.156.0/23 22773 -70.171.158.0/24 395315 -70.171.159.0/24 22773 -70.171.160.0/19 22773 -70.171.192.0/18 22773 -70.172.0.0/15 22773 -70.174.0.0/17 22773 -70.174.128.0/18 22773 -70.174.192.0/19 22773 -70.174.224.0/20 22773 -70.174.240.0/21 22773 -70.174.248.0/22 22773 -70.174.252.0/23 22773 -70.174.254.0/24 22773 -70.174.255.0/24 13344 -70.175.0.0/21 22773 -70.175.8.0/24 22773 -70.175.9.0/24 46695 -70.175.10.0/23 22773 -70.175.12.0/22 22773 -70.175.16.0/20 22773 -70.175.32.0/19 22773 -70.175.64.0/18 22773 -70.175.128.0/18 22773 -70.175.192.0/19 22773 -70.175.224.0/21 22773 -70.175.232.0/22 22773 -70.175.236.0/24 22773 -70.175.237.0/24 23079 -70.175.238.0/24 46613 -70.175.239.0/24 22895 -70.175.240.0/20 22773 -70.176.0.0/14 22773 -70.180.0.0/15 22773 -70.182.0.0/19 22773 -70.182.32.0/20 22773 -70.182.48.0/22 22773 -70.182.52.0/23 22773 -70.182.54.0/24 22773 -70.182.55.0/24 54592 -70.182.56.0/21 22773 -70.182.64.0/18 22773 -70.182.128.0/18 22773 -70.182.192.0/20 22773 -70.182.208.0/22 22773 -70.182.212.0/24 54945 -70.182.213.0/24 22773 -70.182.214.0/23 22773 -70.182.216.0/21 22773 -70.182.224.0/24 33270 -70.182.225.0/24 22773 -70.182.226.0/23 22773 -70.182.228.0/22 22773 -70.182.232.0/21 22773 -70.182.240.0/20 22773 -70.183.0.0/19 22773 -70.183.32.0/21 22773 -70.183.40.0/22 22773 -70.183.44.0/23 25679 -70.183.46.0/23 22773 -70.183.48.0/20 22773 -70.183.64.0/21 22773 -70.183.72.0/22 22773 -70.183.76.0/23 22773 -70.183.78.0/23 394468 -70.183.80.0/20 22773 -70.183.96.0/19 22773 -70.183.128.0/17 22773 -70.184.0.0/15 22773 -70.186.0.0/17 22773 -70.186.128.0/23 22773 -70.186.130.0/24 22773 -70.186.131.0/24 54761 -70.186.132.0/22 22773 -70.186.136.0/21 22773 -70.186.144.0/20 22773 -70.186.160.0/19 22773 -70.186.192.0/19 22773 -70.186.224.0/20 22773 -70.186.240.0/23 22773 -70.186.242.0/24 22773 -70.186.243.0/24 62765 -70.186.244.0/22 22773 -70.186.248.0/21 22773 -70.187.0.0/16 22773 -70.188.0.0/15 22773 -70.190.0.0/16 22773 -70.191.0.0/17 22773 -70.191.128.0/20 22773 -70.191.144.0/23 22773 -70.191.146.0/24 7954 -70.191.147.0/24 22773 -70.191.148.0/22 22773 -70.191.152.0/21 22773 -70.191.160.0/19 22773 -70.191.192.0/18 22773 -70.192.0.0/13 6167 -70.200.0.0/15 22394 -70.202.0.0/16 22394 -70.203.0.0/20 22394 -70.203.16.0/20 6167 -70.203.32.0/19 22394 -70.203.64.0/20 22394 -70.203.80.0/20 6167 -70.203.96.0/19 22394 -70.203.128.0/18 22394 -70.203.192.0/19 6167 -70.203.224.0/19 22394 -70.204.0.0/18 6167 -70.204.64.0/18 22394 -70.204.128.0/20 22394 -70.204.144.0/20 6167 -70.204.160.0/19 22394 -70.204.192.0/18 22394 -70.205.0.0/16 22394 -70.206.0.0/15 22394 -70.208.0.0/13 6167 -70.216.0.0/16 22394 -70.217.0.0/18 22394 -70.217.64.0/19 22394 -70.217.96.0/20 22394 -70.217.112.0/21 22394 -70.217.120.0/21 6167 -70.217.128.0/18 22394 -70.217.192.0/20 22394 -70.217.208.0/21 22394 -70.217.216.0/22 22394 -70.217.220.0/22 6167 -70.217.224.0/21 22394 -70.217.232.0/21 6167 -70.217.240.0/20 6167 -70.218.0.0/16 22394 -70.219.0.0/19 22394 -70.219.32.0/22 22394 -70.219.36.0/22 6167 -70.219.40.0/21 6167 -70.219.48.0/20 6167 -70.219.64.0/18 6167 -70.219.128.0/17 6167 -70.220.0.0/14 6167 -70.224.0.0/17 7018 -70.224.128.0/18 7018 -70.224.192.0/18 16509 -70.225.0.0/16 7018 -70.226.0.0/16 7018 -70.227.0.0/18 7018 -70.227.64.0/19 7018 -70.227.96.0/21 7018 -70.227.104.0/24 30650 -70.227.105.0/24 7018 -70.227.106.0/23 7018 -70.227.108.0/22 7018 -70.227.112.0/22 7018 -70.227.116.0/23 7018 -70.227.118.0/24 53595 -70.227.119.0/24 7018 -70.227.120.0/21 7018 -70.227.128.0/17 7018 -70.228.0.0/14 7018 -70.232.0.0/18 7018 -70.232.128.0/18 7018 -70.232.192.0/19 7018 -70.232.224.0/20 7018 -70.232.240.0/21 36426 -70.232.248.0/21 7018 -70.233.0.0/16 7018 -70.234.0.0/22 2386 -70.234.4.0/23 7018 -70.234.6.0/24 7018 -70.234.7.0/24 36808 -70.234.8.0/21 7018 -70.234.16.0/20 7018 -70.234.32.0/19 7018 -70.234.64.0/18 7018 -70.234.128.0/17 7018 -70.235.0.0/16 7018 -70.236.64.0/18 7018 -70.236.128.0/18 7018 -70.236.192.0/19 7018 -70.236.224.0/21 7018 -70.236.232.0/24 7018 -70.236.233.0/24 35961 -70.236.234.0/23 7018 -70.236.236.0/22 7018 -70.236.240.0/20 7018 -70.237.0.0/17 7018 -70.237.128.0/18 7018 -70.238.0.0/15 7018 -70.240.0.0/18 7018 -70.240.128.0/17 7018 -70.241.0.0/16 7018 -70.242.0.0/18 7018 -70.242.64.0/22 7018 -70.242.68.0/24 7018 -70.242.69.0/24 12115 -70.242.70.0/23 7018 -70.242.72.0/21 7018 -70.242.80.0/20 7018 -70.242.96.0/19 7018 -70.242.128.0/17 7018 -70.243.0.0/18 7018 -70.243.64.0/20 7018 -70.243.80.0/22 7018 -70.243.84.0/23 7018 -70.243.86.0/23 53629 -70.243.88.0/23 7018 -70.243.90.0/24 7018 -70.243.91.0/24 21648 -70.243.92.0/22 7018 -70.243.96.0/19 7018 -70.243.128.0/17 7018 -70.244.0.0/18 7018 -70.244.64.0/22 7018 -70.244.68.0/23 7018 -70.244.70.0/24 7018 -70.244.71.0/24 26144 -70.244.72.0/21 7018 -70.244.80.0/20 7018 -70.244.96.0/19 7018 -70.244.128.0/17 7018 -70.245.0.0/19 7018 -70.245.32.0/21 7018 -70.245.40.0/23 7018 -70.245.42.0/24 7018 -70.245.43.0/24 14631 -70.245.44.0/22 7018 -70.245.48.0/20 7018 -70.245.64.0/18 7018 -70.245.128.0/17 7018 -70.246.0.0/17 7018 -70.246.128.0/19 7018 -70.246.160.0/22 16858 -70.246.164.0/22 7018 -70.246.168.0/21 7018 -70.246.176.0/20 7018 -70.246.192.0/18 7018 -70.247.0.0/18 7018 -70.247.64.0/20 7018 -70.247.80.0/22 7018 -70.247.84.0/24 7018 -70.247.85.0/24 17054 -70.247.86.0/23 7018 -70.247.88.0/21 7018 -70.247.96.0/19 7018 -70.247.128.0/17 7018 -70.248.0.0/16 7018 -70.249.0.0/18 7018 -70.249.64.0/20 7018 -70.249.80.0/21 7018 -70.249.88.0/22 7018 -70.249.92.0/23 7018 -70.249.94.0/24 7018 -70.249.95.0/24 46192 -70.249.96.0/19 7018 -70.249.128.0/17 7018 -70.250.0.0/16 7018 -70.251.0.0/18 7018 -70.251.128.0/19 7018 -70.251.160.0/20 7018 -70.251.176.0/23 7018 -70.251.178.0/24 7018 -70.251.179.0/24 36112 -70.251.180.0/22 7018 -70.251.184.0/21 7018 -70.251.192.0/18 7018 -70.252.0.0/15 7018 -70.254.0.0/19 7018 -70.254.32.0/20 7018 -70.254.48.0/22 7018 -70.254.52.0/23 7018 -70.254.54.0/24 7018 -70.254.55.0/24 14832 -70.254.56.0/21 7018 -70.254.64.0/18 7018 -70.254.128.0/17 7018 -70.255.0.0/16 7018 -71.0.0.0/19 209 -71.0.32.0/21 11398 -71.0.40.0/21 17402 -71.0.48.0/21 14921 -71.0.56.0/21 18494 -71.0.64.0/20 209 -71.0.80.0/23 209 -71.0.82.0/24 209 -71.0.83.0/24 14905 -71.0.84.0/22 14905 -71.0.88.0/22 14905 -71.0.92.0/23 209 -71.0.94.0/23 14905 -71.0.96.0/20 6222 -71.0.112.0/20 209 -71.0.128.0/23 209 -71.0.130.0/23 11398 -71.0.132.0/22 209 -71.0.136.0/23 11398 -71.0.138.0/23 209 -71.0.140.0/23 11398 -71.0.142.0/24 11398 -71.0.143.0/24 209 -71.0.144.0/21 209 -71.0.152.0/23 2379 -71.0.154.0/24 2379 -71.0.155.0/24 209 -71.0.156.0/22 2379 -71.0.160.0/21 2379 -71.0.168.0/21 209 -71.0.176.0/21 5778 -71.0.184.0/21 209 -71.0.192.0/19 209 -71.0.224.0/24 16718 -71.0.225.0/24 209 -71.0.226.0/23 209 -71.0.228.0/22 6222 -71.0.232.0/21 2379 -71.0.240.0/21 2379 -71.0.248.0/22 2379 -71.0.252.0/23 2379 -71.0.254.0/23 209 -71.1.0.0/22 2379 -71.1.4.0/23 209 -71.1.6.0/23 2379 -71.1.8.0/21 209 -71.1.16.0/20 209 -71.1.32.0/21 209 -71.1.40.0/24 209 -71.1.41.0/24 16718 -71.1.42.0/24 209 -71.1.43.0/24 16718 -71.1.44.0/22 209 -71.1.48.0/21 6367 -71.1.56.0/21 209 -71.1.64.0/21 2379 -71.1.72.0/21 209 -71.1.80.0/24 209 -71.1.81.0/24 2379 -71.1.82.0/23 2379 -71.1.84.0/22 2379 -71.1.88.0/21 17402 -71.1.96.0/19 209 -71.1.128.0/21 14921 -71.1.136.0/22 17402 -71.1.140.0/23 209 -71.1.142.0/23 14905 -71.1.144.0/20 209 -71.1.160.0/21 209 -71.1.168.0/23 6222 -71.1.170.0/23 209 -71.1.172.0/23 209 -71.1.174.0/23 6222 -71.1.176.0/22 11398 -71.1.180.0/23 11398 -71.1.182.0/23 209 -71.1.184.0/22 11398 -71.1.188.0/23 209 -71.1.190.0/23 11398 -71.1.192.0/24 209 -71.1.193.0/24 2379 -71.1.194.0/23 209 -71.1.196.0/23 209 -71.1.198.0/23 2379 -71.1.200.0/21 209 -71.1.208.0/21 209 -71.1.216.0/21 5778 -71.1.224.0/19 209 -71.2.0.0/20 209 -71.2.16.0/21 209 -71.2.24.0/22 209 -71.2.28.0/22 5778 -71.2.32.0/20 209 -71.2.48.0/23 2379 -71.2.50.0/24 2379 -71.2.51.0/24 209 -71.2.52.0/23 2379 -71.2.54.0/23 209 -71.2.56.0/24 2379 -71.2.57.0/24 209 -71.2.58.0/23 209 -71.2.60.0/22 2379 -71.2.64.0/20 209 -71.2.80.0/21 209 -71.2.88.0/21 5778 -71.2.96.0/21 4282 -71.2.104.0/21 209 -71.2.112.0/22 209 -71.2.116.0/22 16718 -71.2.120.0/21 209 -71.2.128.0/19 209 -71.2.160.0/21 209 -71.2.168.0/22 14905 -71.2.172.0/23 209 -71.2.174.0/24 14905 -71.2.175.0/24 209 -71.2.176.0/20 209 -71.2.192.0/21 6367 -71.2.200.0/21 209 -71.2.208.0/21 209 -71.2.216.0/22 14921 -71.2.220.0/22 209 -71.2.224.0/22 209 -71.2.228.0/23 209 -71.2.230.0/24 209 -71.2.231.0/24 17402 -71.2.232.0/21 5778 -71.2.240.0/21 209 -71.2.248.0/21 2379 -71.3.0.0/23 2379 -71.3.2.0/24 209 -71.3.3.0/24 2379 -71.3.4.0/22 2379 -71.3.8.0/21 2379 -71.3.16.0/20 209 -71.3.32.0/22 2379 -71.3.36.0/22 4282 -71.3.40.0/21 2379 -71.3.48.0/20 209 -71.3.64.0/18 209 -71.3.128.0/17 209 -71.4.0.0/20 2828 -71.4.16.0/22 2828 -71.4.20.0/23 2828 -71.4.22.0/24 30537 -71.4.23.0/24 2828 -71.4.24.0/21 2828 -71.4.32.0/20 2828 -71.4.48.0/21 2828 -71.4.56.0/23 46458 -71.4.58.0/23 2828 -71.4.60.0/22 2828 -71.4.64.0/23 2828 -71.4.66.0/24 21631 -71.4.67.0/24 2828 -71.4.68.0/22 2828 -71.4.72.0/21 2828 -71.4.80.0/24 2828 -71.4.81.0/24 36755 -71.4.82.0/23 2828 -71.4.84.0/22 2828 -71.4.88.0/21 2828 -71.4.96.0/24 2828 -71.4.97.0/24 393293 -71.4.98.0/23 2828 -71.4.100.0/22 2828 -71.4.104.0/23 2828 -71.4.106.0/23 27230 -71.4.108.0/22 2828 -71.4.112.0/20 2828 -71.4.128.0/18 2828 -71.4.192.0/19 2828 -71.4.224.0/24 17166 -71.4.225.0/24 2828 -71.4.226.0/23 2828 -71.4.228.0/22 2828 -71.4.232.0/21 2828 -71.4.240.0/22 2828 -71.4.244.0/23 2828 -71.4.246.0/24 395760 -71.4.247.0/24 26992 -71.4.248.0/21 2828 -71.5.0.0/23 2828 -71.5.2.0/24 2828 -71.5.3.0/24 22530 -71.5.4.0/22 2828 -71.5.8.0/21 2828 -71.5.16.0/20 2828 -71.5.32.0/23 2828 -71.5.34.0/24 40715 -71.5.35.0/24 2828 -71.5.36.0/22 2828 -71.5.40.0/21 2828 -71.5.48.0/20 2828 -71.5.64.0/19 2828 -71.5.96.0/21 2828 -71.5.104.0/21 25694 -71.5.112.0/20 2828 -71.5.128.0/17 2828 -71.6.0.0/18 14265 -71.6.64.0/21 14265 -71.6.72.0/23 14265 -71.6.74.0/24 14265 -71.6.75.0/24 30450 -71.6.76.0/22 14265 -71.6.80.0/20 14265 -71.6.96.0/19 14265 -71.6.128.0/17 10439 -71.7.0.0/17 7029 -71.7.128.0/21 11260 -71.7.136.0/22 11260 -71.7.140.0/24 11260 -71.7.141.0/24 22393 -71.7.142.0/23 11260 -71.7.144.0/20 11260 -71.7.160.0/19 11260 -71.7.192.0/18 11260 -71.8.0.0/16 20115 -71.9.0.0/20 20115 -71.9.16.0/21 20115 -71.9.24.0/22 32212 -71.9.28.0/22 20115 -71.9.32.0/19 20115 -71.9.64.0/19 20115 -71.9.96.0/21 20115 -71.9.104.0/22 20115 -71.9.108.0/22 32212 -71.9.112.0/20 20115 -71.9.128.0/17 20115 -71.10.0.0/17 20115 -71.10.128.0/18 20115 -71.10.192.0/20 20115 -71.10.208.0/24 20115 -71.10.209.0/24 25863 -71.10.210.0/23 20115 -71.10.212.0/22 20115 -71.10.219.0/24 19115 -71.10.220.0/22 20115 -71.10.224.0/19 20115 -71.11.0.0/16 20115 -71.12.0.0/16 20115 -71.13.0.0/17 20115 -71.13.128.0/19 20115 -71.13.160.0/20 20115 -71.13.176.0/24 30242 -71.13.178.0/23 20115 -71.13.180.0/24 40372 -71.13.181.0/24 20115 -71.13.182.0/24 26345 -71.13.183.0/24 11925 -71.13.184.0/24 20115 -71.13.185.0/24 16767 -71.13.186.0/24 20115 -71.13.187.0/24 46774 -71.13.188.0/23 20115 -71.13.190.0/24 14334 -71.13.192.0/20 20115 -71.13.224.0/19 20115 -71.14.0.0/16 20115 -71.15.0.0/17 20115 -71.15.128.0/20 20115 -71.15.160.0/19 20115 -71.15.192.0/19 33588 -71.15.224.0/19 20115 -71.16.0.0/19 7029 -71.16.32.0/23 7029 -71.16.34.0/24 7029 -71.16.35.0/24 209 -71.16.36.0/23 7029 -71.16.38.0/24 7029 -71.16.39.0/24 40026 -71.16.40.0/21 7029 -71.16.48.0/20 7029 -71.16.64.0/18 7029 -71.16.128.0/17 7029 -71.17.0.0/16 803 -71.18.0.0/16 46606 -71.19.0.0/17 14366 -71.19.128.0/24 8100 -71.19.130.0/23 40676 -71.19.132.0/22 40676 -71.19.136.0/21 40676 -71.19.144.0/20 47066 -71.19.160.0/19 15290 -71.19.192.0/20 174 -71.19.208.0/20 47028 -71.19.224.0/21 19133 -71.19.232.0/22 19133 -71.19.236.0/23 19133 -71.19.238.0/24 19133 -71.19.239.0/24 63442 -71.19.240.0/20 11831 -71.24.0.0/14 7922 -71.28.0.0/15 7029 -71.30.0.0/16 7029 -71.31.0.0/20 7029 -71.31.16.0/21 7029 -71.31.24.0/22 7029 -71.31.28.0/23 7029 -71.31.30.0/24 395464 -71.31.31.0/24 7029 -71.31.32.0/19 7029 -71.31.64.0/18 7029 -71.31.128.0/17 7029 -71.32.0.0/13 209 -71.40.0.0/21 11427 -71.40.8.0/22 11427 -71.40.12.0/23 11427 -71.40.14.0/24 53759 -71.40.15.0/24 11427 -71.40.16.0/20 11427 -71.40.32.0/21 11427 -71.40.40.0/22 11427 -71.40.44.0/24 14313 -71.40.45.0/24 11427 -71.40.46.0/23 11427 -71.40.48.0/20 11427 -71.40.64.0/19 11427 -71.40.96.0/21 11427 -71.40.104.0/22 11427 -71.40.108.0/23 46549 -71.40.110.0/23 11427 -71.40.112.0/20 11427 -71.40.128.0/18 33363 -71.40.192.0/21 11427 -71.40.200.0/22 11427 -71.40.204.0/24 11427 -71.40.205.0/24 4887 -71.40.206.0/23 11427 -71.40.208.0/20 11427 -71.40.224.0/19 11427 -71.41.0.0/21 11427 -71.41.8.0/22 11427 -71.41.12.0/24 11427 -71.41.13.0/24 17291 -71.41.14.0/23 11427 -71.41.16.0/20 11427 -71.41.32.0/21 33363 -71.41.40.0/22 33363 -71.41.44.0/23 33363 -71.41.46.0/24 396066 -71.41.47.0/24 33363 -71.41.48.0/20 33363 -71.41.64.0/18 33363 -71.41.128.0/18 11427 -71.41.192.0/20 11427 -71.41.208.0/20 33363 -71.41.224.0/19 11427 -71.42.0.0/18 33363 -71.42.64.0/19 11427 -71.42.96.0/21 11427 -71.42.104.0/22 11427 -71.42.108.0/24 11427 -71.42.109.0/24 27637 -71.42.110.0/23 11427 -71.42.112.0/20 11427 -71.42.128.0/19 11427 -71.42.164.0/22 33363 -71.42.168.0/21 33363 -71.42.176.0/21 11427 -71.42.184.0/22 11427 -71.42.188.0/23 11427 -71.42.190.0/24 11298 -71.42.191.0/24 11427 -71.42.192.0/18 11427 -71.43.0.0/16 33363 -71.44.0.0/21 33363 -71.44.8.0/24 33363 -71.44.10.0/23 33363 -71.44.12.0/22 33363 -71.44.16.0/24 16787 -71.44.17.0/24 33363 -71.44.20.0/24 33363 -71.44.21.0/24 16787 -71.44.22.0/24 16787 -71.44.23.0/24 33363 -71.44.32.0/21 33363 -71.44.41.0/24 33363 -71.44.42.0/23 33363 -71.44.44.0/23 33363 -71.44.46.0/24 33363 -71.44.48.0/24 33363 -71.44.51.0/24 33363 -71.44.53.0/24 33363 -71.44.54.0/23 33363 -71.44.56.0/22 33363 -71.44.60.0/24 33363 -71.44.64.0/20 33363 -71.44.80.0/24 16787 -71.44.81.0/24 33363 -71.44.82.0/23 33363 -71.44.84.0/22 33363 -71.44.88.0/21 33363 -71.44.96.0/20 33363 -71.44.114.0/23 33363 -71.44.116.0/22 33363 -71.44.120.0/21 33363 -71.44.128.0/18 33363 -71.44.192.0/20 33363 -71.44.208.0/22 33363 -71.44.212.0/24 64283 -71.44.213.0/24 33363 -71.44.214.0/23 33363 -71.44.216.0/21 33363 -71.44.224.0/19 33363 -71.45.0.0/16 33363 -71.46.0.0/19 33363 -71.46.40.0/21 33363 -71.46.48.0/21 33363 -71.46.56.0/22 33363 -71.46.60.0/23 33363 -71.46.62.0/23 16787 -71.46.64.0/18 33363 -71.46.160.0/19 33363 -71.46.192.0/18 33363 -71.47.0.0/16 33363 -71.48.0.0/19 209 -71.48.32.0/20 209 -71.48.48.0/21 4283 -71.48.56.0/21 209 -71.48.64.0/19 209 -71.48.96.0/20 209 -71.48.112.0/20 17402 -71.48.128.0/19 14905 -71.48.160.0/23 209 -71.48.162.0/24 209 -71.48.163.0/24 6367 -71.48.164.0/22 6367 -71.48.168.0/21 209 -71.48.176.0/21 14921 -71.48.184.0/21 6222 -71.48.192.0/18 209 -71.49.0.0/18 209 -71.49.64.0/20 209 -71.49.80.0/20 17402 -71.49.96.0/21 2379 -71.49.104.0/21 4282 -71.49.112.0/20 209 -71.49.128.0/17 209 -71.50.0.0/20 14921 -71.50.16.0/20 209 -71.50.32.0/19 209 -71.50.64.0/20 209 -71.50.80.0/21 4283 -71.50.88.0/21 11398 -71.50.96.0/19 209 -71.50.128.0/17 209 -71.51.0.0/18 209 -71.51.64.0/20 209 -71.51.80.0/21 2379 -71.51.88.0/21 209 -71.51.96.0/19 209 -71.51.128.0/19 17402 -71.51.160.0/19 209 -71.51.192.0/21 209 -71.51.200.0/21 18494 -71.51.208.0/21 18494 -71.51.216.0/21 209 -71.51.224.0/19 209 -71.52.0.0/19 209 -71.52.32.0/21 209 -71.52.40.0/21 4283 -71.52.48.0/20 209 -71.52.64.0/18 209 -71.52.128.0/17 209 -71.53.0.0/19 209 -71.53.32.0/20 209 -71.53.48.0/22 209 -71.53.52.0/22 32855 -71.53.56.0/21 209 -71.53.64.0/20 14921 -71.53.80.0/20 209 -71.53.96.0/19 209 -71.53.128.0/18 209 -71.53.192.0/19 14905 -71.53.224.0/20 209 -71.53.240.0/21 2379 -71.53.248.0/21 209 -71.54.0.0/17 209 -71.54.128.0/18 209 -71.54.192.0/20 14921 -71.54.208.0/22 18494 -71.54.212.0/22 209 -71.54.216.0/21 209 -71.54.224.0/19 209 -71.55.0.0/21 13787 -71.55.8.0/21 209 -71.55.16.0/20 209 -71.55.32.0/19 209 -71.55.64.0/18 209 -71.55.128.0/19 17402 -71.55.160.0/19 209 -71.55.192.0/18 209 -71.56.0.0/13 7922 -71.64.0.0/16 10796 -71.65.0.0/19 10796 -71.65.32.0/21 11351 -71.65.40.0/21 11426 -71.65.48.0/20 10796 -71.65.64.0/18 10796 -71.65.128.0/17 11426 -71.66.0.0/19 10796 -71.66.32.0/20 10796 -71.66.48.0/21 10796 -71.66.56.0/22 10796 -71.66.60.0/22 13343 -71.66.64.0/18 10796 -71.66.128.0/19 10796 -71.66.160.0/21 10796 -71.66.168.0/22 10796 -71.66.172.0/23 10796 -71.66.174.0/24 10796 -71.66.175.0/24 21801 -71.66.176.0/20 10796 -71.66.192.0/18 10796 -71.67.0.0/19 10796 -71.67.32.0/23 10796 -71.67.34.0/24 46847 -71.67.35.0/24 10796 -71.67.36.0/22 10796 -71.67.40.0/21 10796 -71.67.48.0/21 10796 -71.67.56.0/23 10796 -71.67.58.0/24 14657 -71.67.59.0/24 10796 -71.67.60.0/22 10796 -71.67.64.0/18 10796 -71.67.128.0/20 10796 -71.67.144.0/21 10796 -71.67.152.0/22 10796 -71.67.156.0/22 33363 -71.67.160.0/19 10796 -71.67.192.0/20 10796 -71.67.208.0/22 10796 -71.67.212.0/24 10796 -71.67.213.0/24 46801 -71.67.214.0/23 10796 -71.67.216.0/21 10796 -71.67.224.0/19 10796 -71.68.0.0/14 11426 -71.72.0.0/15 10796 -71.74.0.0/19 11426 -71.74.32.0/21 14065 -71.74.40.0/22 14065 -71.74.44.0/24 14135 -71.74.45.0/24 14065 -71.74.46.0/23 14065 -71.74.48.0/23 16787 -71.74.50.0/23 7843 -71.74.52.0/22 7843 -71.74.56.0/21 7843 -71.74.64.0/18 10796 -71.74.128.0/19 10796 -71.74.160.0/19 7843 -71.74.192.0/18 10796 -71.75.0.0/16 11426 -71.76.0.0/15 11426 -71.78.0.0/17 11427 -71.78.128.0/19 11427 -71.78.160.0/24 393359 -71.78.161.0/24 11427 -71.78.162.0/23 11427 -71.78.164.0/22 11427 -71.78.168.0/21 11427 -71.78.176.0/20 11427 -71.78.192.0/18 11427 -71.79.0.0/16 10796 -71.80.0.0/16 20115 -71.81.0.0/22 20115 -71.81.8.0/21 20115 -71.81.16.0/20 20115 -71.81.32.0/19 20115 -71.81.64.0/18 20115 -71.81.128.0/17 20115 -71.82.0.0/15 20115 -71.84.0.0/16 20115 -71.85.0.0/18 20115 -71.85.64.0/20 20115 -71.85.80.0/20 16787 -71.85.96.0/19 20115 -71.85.128.0/17 20115 -71.86.0.0/17 20115 -71.86.128.0/21 20115 -71.86.136.0/22 20115 -71.86.140.0/23 20115 -71.86.142.0/24 20115 -71.86.143.0/24 397019 -71.86.144.0/20 20115 -71.86.160.0/19 20115 -71.86.192.0/19 20115 -71.86.224.0/21 20115 -71.86.240.0/22 20115 -71.86.244.0/24 393696 -71.86.248.0/22 22291 -71.86.252.0/24 395227 -71.86.253.0/24 394912 -71.86.254.0/24 394795 -71.86.255.0/24 395143 -71.87.0.0/20 20115 -71.87.16.0/21 20115 -71.87.24.0/22 20115 -71.87.28.0/23 20115 -71.87.30.0/24 26135 -71.87.31.0/24 20115 -71.87.32.0/19 20115 -71.87.64.0/18 20115 -71.87.144.0/21 20115 -71.87.160.0/19 20115 -71.87.192.0/18 20115 -71.88.0.0/19 20115 -71.88.32.0/20 20115 -71.88.48.0/21 20115 -71.88.56.0/22 20115 -71.88.60.0/23 20115 -71.88.62.0/24 19643 -71.88.63.0/24 20115 -71.88.64.0/18 20115 -71.88.128.0/17 20115 -71.89.0.0/16 20115 -71.90.0.0/16 20115 -71.91.0.0/20 20115 -71.91.16.0/24 19115 -71.91.17.0/24 20115 -71.91.18.0/23 20115 -71.91.20.0/22 20115 -71.91.24.0/21 20115 -71.91.32.0/20 20115 -71.91.48.0/21 20115 -71.91.56.0/22 20115 -71.91.60.0/24 396070 -71.91.61.0/24 20115 -71.91.62.0/23 20115 -71.91.64.0/18 20115 -71.91.128.0/18 20115 -71.91.192.0/19 20115 -71.91.224.0/20 20115 -71.91.240.0/24 54855 -71.91.241.0/24 20115 -71.91.242.0/23 20115 -71.91.244.0/22 20115 -71.91.248.0/21 20115 -71.92.0.0/20 20115 -71.92.16.0/21 20115 -71.92.24.0/22 16787 -71.92.28.0/23 20115 -71.92.30.0/24 20115 -71.92.31.0/24 19115 -71.92.32.0/19 20115 -71.92.64.0/18 20115 -71.92.128.0/18 20115 -71.92.192.0/19 20115 -71.92.224.0/21 20115 -71.92.234.0/24 396193 -71.92.235.0/24 395888 -71.92.236.0/22 20115 -71.92.240.0/20 20115 -71.93.0.0/20 20115 -71.93.16.0/22 20115 -71.93.20.0/23 20115 -71.93.22.0/23 19116 -71.93.24.0/23 20115 -71.93.26.0/24 19116 -71.93.27.0/24 20115 -71.93.28.0/22 20115 -71.93.32.0/19 20115 -71.93.64.0/18 20115 -71.93.128.0/17 20115 -71.94.0.0/17 20115 -71.94.128.0/18 20115 -71.94.192.0/20 20115 -71.94.208.0/23 19116 -71.94.210.0/24 19116 -71.94.211.0/24 20115 -71.94.212.0/22 40779 -71.94.216.0/21 20115 -71.94.224.0/19 20115 -71.95.0.0/16 20115 -71.96.0.0/19 701 -71.96.32.0/19 5650 -71.96.64.0/18 5650 -71.96.128.0/17 5650 -71.97.0.0/19 701 -71.97.32.0/19 5650 -71.97.64.0/18 5650 -71.97.128.0/18 701 -71.97.192.0/20 701 -71.97.208.0/23 701 -71.97.210.0/23 5650 -71.97.212.0/22 701 -71.97.216.0/21 701 -71.97.224.0/20 5650 -71.97.240.0/20 701 -71.98.0.0/17 701 -71.98.128.0/18 701 -71.98.192.0/18 5650 -71.99.0.0/18 701 -71.99.64.0/18 5650 -71.99.128.0/17 5650 -71.100.0.0/19 701 -71.100.32.0/20 701 -71.100.48.0/22 701 -71.100.52.0/23 5650 -71.100.54.0/23 701 -71.100.56.0/21 701 -71.100.64.0/22 5650 -71.100.68.0/23 5650 -71.100.70.0/23 701 -71.100.72.0/23 5650 -71.100.74.0/23 701 -71.100.76.0/22 701 -71.100.80.0/22 701 -71.100.84.0/23 701 -71.100.86.0/23 5650 -71.100.88.0/23 701 -71.100.90.0/23 5650 -71.100.92.0/22 701 -71.100.96.0/22 701 -71.100.100.0/23 701 -71.100.102.0/23 5650 -71.100.104.0/21 701 -71.100.112.0/22 701 -71.100.116.0/23 701 -71.100.118.0/23 5650 -71.100.120.0/23 701 -71.100.122.0/23 5650 -71.100.124.0/22 701 -71.100.128.0/21 701 -71.100.136.0/23 701 -71.100.138.0/23 5650 -71.100.140.0/22 701 -71.100.144.0/21 5650 -71.100.152.0/23 701 -71.100.154.0/23 5650 -71.100.156.0/22 701 -71.100.160.0/21 701 -71.100.168.0/22 5650 -71.100.172.0/22 701 -71.100.176.0/20 701 -71.100.192.0/19 701 -71.100.224.0/22 701 -71.100.228.0/23 701 -71.100.230.0/23 5650 -71.100.232.0/22 5650 -71.100.236.0/23 5650 -71.100.238.0/23 701 -71.100.240.0/21 701 -71.100.248.0/22 701 -71.100.252.0/23 701 -71.100.254.0/23 5650 -71.101.0.0/18 701 -71.101.64.0/18 5650 -71.101.128.0/17 5650 -71.102.0.0/18 701 -71.102.64.0/19 5650 -71.102.96.0/19 701 -71.102.128.0/18 701 -71.102.192.0/18 5650 -71.103.0.0/17 701 -71.103.128.0/17 5650 -71.104.0.0/15 701 -71.106.0.0/16 701 -71.107.0.0/20 701 -71.107.16.0/21 701 -71.107.24.0/22 701 -71.107.28.0/22 5650 -71.107.32.0/22 701 -71.107.36.0/23 5650 -71.107.38.0/23 701 -71.107.40.0/21 701 -71.107.48.0/20 701 -71.107.64.0/18 701 -71.107.128.0/19 701 -71.107.160.0/20 701 -71.107.176.0/21 701 -71.107.184.0/22 701 -71.107.188.0/23 5650 -71.107.190.0/23 701 -71.107.192.0/18 701 -71.108.0.0/19 701 -71.108.32.0/22 701 -71.108.36.0/23 5650 -71.108.38.0/23 701 -71.108.40.0/21 701 -71.108.48.0/21 701 -71.108.56.0/22 701 -71.108.60.0/23 701 -71.108.62.0/23 5650 -71.108.64.0/23 5650 -71.108.66.0/23 701 -71.108.68.0/22 701 -71.108.72.0/21 701 -71.108.80.0/20 701 -71.108.96.0/19 701 -71.108.128.0/17 701 -71.109.0.0/16 701 -71.110.0.0/17 5650 -71.110.128.0/17 701 -71.111.0.0/17 701 -71.111.128.0/18 701 -71.111.192.0/18 5650 -71.112.0.0/16 701 -71.113.0.0/17 701 -71.113.128.0/18 701 -71.113.192.0/20 701 -71.113.208.0/21 701 -71.113.216.0/22 701 -71.113.220.0/22 5650 -71.113.224.0/19 701 -71.114.0.0/17 701 -71.114.128.0/18 701 -71.114.192.0/19 701 -71.114.224.0/20 701 -71.114.240.0/21 701 -71.114.248.0/24 701 -71.114.249.0/24 5650 -71.114.250.0/23 701 -71.114.252.0/23 701 -71.114.254.0/23 5650 -71.115.0.0/16 701 -71.116.0.0/21 701 -71.116.8.0/22 701 -71.116.12.0/22 5650 -71.116.16.0/20 701 -71.116.32.0/19 701 -71.116.64.0/19 701 -71.116.96.0/20 701 -71.116.112.0/21 701 -71.116.120.0/22 701 -71.116.124.0/22 5650 -71.116.128.0/23 5650 -71.116.130.0/23 701 -71.116.132.0/22 701 -71.116.136.0/21 701 -71.116.144.0/20 701 -71.116.160.0/19 701 -71.116.192.0/23 701 -71.116.194.0/23 5650 -71.116.196.0/23 5650 -71.116.198.0/23 701 -71.116.200.0/22 701 -71.116.204.0/22 5650 -71.116.208.0/20 5650 -71.116.224.0/22 5650 -71.116.228.0/23 5650 -71.116.230.0/23 701 -71.116.232.0/21 701 -71.116.240.0/22 701 -71.116.244.0/23 701 -71.116.246.0/23 5650 -71.116.248.0/21 701 -71.117.0.0/24 701 -71.117.1.0/24 13667 -71.117.2.0/23 701 -71.117.4.0/22 701 -71.117.8.0/23 13667 -71.117.10.0/24 701 -71.117.11.0/24 13667 -71.117.12.0/22 701 -71.117.16.0/20 701 -71.117.32.0/19 701 -71.117.64.0/18 5650 -71.117.128.0/17 701 -71.118.0.0/21 701 -71.118.8.0/22 5650 -71.118.12.0/23 5650 -71.118.14.0/23 701 -71.118.16.0/22 5650 -71.118.20.0/22 701 -71.118.24.0/21 701 -71.118.32.0/20 701 -71.118.48.0/21 701 -71.118.56.0/22 701 -71.118.60.0/22 5650 -71.118.64.0/23 5650 -71.118.66.0/23 701 -71.118.68.0/22 701 -71.118.72.0/21 701 -71.118.80.0/20 701 -71.118.96.0/19 701 -71.118.128.0/18 701 -71.118.192.0/20 701 -71.118.208.0/21 701 -71.118.216.0/23 701 -71.118.218.0/23 5650 -71.118.220.0/22 701 -71.118.224.0/22 701 -71.118.228.0/23 5650 -71.118.230.0/23 701 -71.118.232.0/21 701 -71.118.240.0/20 701 -71.119.0.0/22 701 -71.119.4.0/23 701 -71.119.6.0/23 5650 -71.119.8.0/22 701 -71.119.12.0/23 701 -71.119.14.0/23 5650 -71.119.16.0/21 5650 -71.119.24.0/21 701 -71.119.32.0/21 701 -71.119.40.0/22 701 -71.119.44.0/23 701 -71.119.46.0/23 5650 -71.119.48.0/20 701 -71.119.64.0/23 5650 -71.119.66.0/23 701 -71.119.68.0/23 5650 -71.119.70.0/23 701 -71.119.72.0/23 5650 -71.119.74.0/23 701 -71.119.76.0/22 701 -71.119.80.0/20 701 -71.119.96.0/20 701 -71.119.112.0/21 701 -71.119.120.0/23 701 -71.119.122.0/23 5650 -71.119.124.0/22 701 -71.119.128.0/18 5650 -71.119.192.0/19 701 -71.119.224.0/19 5650 -71.120.0.0/16 701 -71.121.0.0/21 701 -71.121.8.0/22 701 -71.121.12.0/24 5650 -71.121.13.0/24 701 -71.121.14.0/24 701 -71.121.15.0/24 5650 -71.121.16.0/21 701 -71.121.24.0/23 701 -71.121.26.0/24 5650 -71.121.27.0/24 701 -71.121.28.0/22 701 -71.121.32.0/19 5650 -71.121.64.0/19 701 -71.121.96.0/20 701 -71.121.112.0/21 701 -71.121.120.0/22 701 -71.121.124.0/23 701 -71.121.126.0/24 701 -71.121.127.0/24 5650 -71.121.128.0/17 701 -71.122.0.0/23 701 -71.122.2.0/23 5650 -71.122.4.0/22 701 -71.122.8.0/22 5650 -71.122.12.0/22 701 -71.122.16.0/22 701 -71.122.20.0/23 5650 -71.122.22.0/23 701 -71.122.24.0/21 701 -71.122.32.0/23 701 -71.122.34.0/23 5650 -71.122.36.0/22 5650 -71.122.40.0/22 5650 -71.122.44.0/22 701 -71.122.48.0/20 701 -71.122.64.0/20 701 -71.122.80.0/23 701 -71.122.82.0/23 5650 -71.122.84.0/22 701 -71.122.88.0/23 701 -71.122.90.0/23 5650 -71.122.92.0/23 5650 -71.122.94.0/23 701 -71.122.96.0/23 701 -71.122.98.0/23 5650 -71.122.100.0/22 701 -71.122.104.0/23 5650 -71.122.106.0/23 701 -71.122.108.0/23 701 -71.122.110.0/23 5650 -71.122.112.0/23 5650 -71.122.114.0/23 701 -71.122.116.0/23 5650 -71.122.118.0/23 701 -71.122.120.0/22 701 -71.122.124.0/22 5650 -71.122.128.0/22 701 -71.122.132.0/23 701 -71.122.134.0/23 5650 -71.122.136.0/21 701 -71.122.144.0/21 701 -71.122.152.0/22 701 -71.122.156.0/23 5650 -71.122.158.0/23 701 -71.122.160.0/22 701 -71.122.164.0/23 5650 -71.122.166.0/23 701 -71.122.168.0/23 5650 -71.122.170.0/23 701 -71.122.172.0/23 701 -71.122.174.0/23 5650 -71.122.176.0/22 701 -71.122.180.0/23 5650 -71.122.182.0/23 701 -71.122.184.0/23 5650 -71.122.186.0/23 701 -71.122.188.0/23 5650 -71.122.190.0/23 701 -71.122.192.0/23 701 -71.122.194.0/23 5650 -71.122.196.0/22 701 -71.122.200.0/21 701 -71.122.208.0/21 701 -71.122.216.0/22 5650 -71.122.220.0/23 701 -71.122.222.0/23 5650 -71.122.224.0/23 701 -71.122.226.0/23 5650 -71.122.228.0/23 5650 -71.122.230.0/23 701 -71.122.232.0/23 701 -71.122.234.0/23 5650 -71.122.236.0/23 701 -71.122.238.0/23 5650 -71.122.240.0/23 701 -71.122.242.0/23 5650 -71.122.244.0/22 701 -71.122.248.0/22 701 -71.122.252.0/22 5650 -71.123.0.0/24 5650 -71.123.1.0/24 701 -71.123.2.0/23 701 -71.123.4.0/22 701 -71.123.8.0/23 701 -71.123.10.0/24 701 -71.123.11.0/24 5650 -71.123.12.0/22 701 -71.123.16.0/20 701 -71.123.32.0/19 701 -71.123.64.0/18 701 -71.123.128.0/17 5650 -71.124.0.0/15 701 -71.126.0.0/17 701 -71.126.128.0/18 701 -71.126.192.0/21 701 -71.126.200.0/22 701 -71.126.204.0/24 701 -71.126.205.0/24 5650 -71.126.206.0/23 5650 -71.126.208.0/20 701 -71.126.224.0/19 701 -71.127.0.0/16 701 -71.128.0.0/15 7018 -71.130.0.0/16 7018 -71.131.0.0/17 7018 -71.131.128.0/21 7018 -71.131.136.0/24 7018 -71.131.137.0/24 40547 -71.131.138.0/23 7018 -71.131.140.0/22 7018 -71.131.144.0/20 7018 -71.131.160.0/19 7018 -71.132.64.0/18 7018 -71.132.128.0/17 7018 -71.133.0.0/16 7018 -71.134.0.0/15 7018 -71.136.0.0/18 7018 -71.136.128.0/17 7018 -71.137.64.0/18 7018 -71.137.128.0/17 7018 -71.138.0.0/16 7018 -71.139.0.0/17 7018 -71.139.128.0/20 7018 -71.139.144.0/22 7018 -71.139.148.0/23 7018 -71.139.150.0/23 6062 -71.139.152.0/21 7018 -71.139.160.0/19 7018 -71.139.192.0/18 7018 -71.140.0.0/16 7018 -71.141.64.0/18 7018 -71.141.192.0/18 7018 -71.142.0.0/16 7018 -71.143.64.0/18 7018 -71.143.128.0/17 7018 -71.144.0.0/16 7018 -71.145.0.0/17 7018 -71.145.192.0/18 7018 -71.146.0.0/17 7018 -71.146.128.0/18 7018 -71.146.192.0/19 7018 -71.146.224.0/23 46416 -71.146.226.0/23 7018 -71.146.228.0/22 7018 -71.146.232.0/21 7018 -71.146.240.0/20 7018 -71.147.0.0/16 7018 -71.148.0.0/16 7018 -71.149.0.0/17 7018 -71.149.128.0/18 7018 -71.149.192.0/22 7018 -71.149.196.0/23 7018 -71.149.198.0/23 10469 -71.149.200.0/21 7018 -71.149.208.0/20 7018 -71.149.224.0/19 7018 -71.150.0.0/15 7018 -71.152.0.0/21 16509 -71.152.8.0/22 16509 -71.152.13.0/24 16509 -71.152.14.0/23 16509 -71.152.16.0/21 16509 -71.152.24.0/22 16509 -71.152.28.0/24 16509 -71.152.30.0/23 16509 -71.152.32.0/23 16509 -71.152.35.0/24 16509 -71.152.36.0/22 16509 -71.152.40.0/23 16509 -71.152.43.0/24 16509 -71.152.45.0/24 16509 -71.152.46.0/23 16509 -71.152.48.0/22 16509 -71.152.53.0/24 16509 -71.152.54.0/23 16509 -71.152.56.0/22 16509 -71.152.61.0/24 16509 -71.152.62.0/23 16509 -71.152.64.0/22 16509 -71.152.68.0/23 16509 -71.152.70.0/24 16509 -71.152.72.0/23 16509 -71.152.75.0/24 16509 -71.152.76.0/23 16509 -71.152.79.0/24 16509 -71.152.80.0/20 16509 -71.152.96.0/22 16509 -71.152.100.0/24 16509 -71.152.102.0/23 16509 -71.152.104.0/21 16509 -71.152.112.0/21 16509 -71.152.122.0/23 16509 -71.152.124.0/24 16509 -71.152.126.0/23 16509 -71.152.128.0/17 7018 -71.153.0.0/16 7018 -71.154.0.0/20 7018 -71.154.16.0/23 7018 -71.154.18.0/24 7018 -71.154.19.0/24 26344 -71.154.20.0/22 7018 -71.154.24.0/21 7018 -71.154.32.0/19 7018 -71.154.64.0/18 7018 -71.154.128.0/17 7018 -71.155.0.0/17 7018 -71.155.128.0/18 7018 -71.155.192.0/20 7018 -71.155.208.0/21 7018 -71.155.216.0/23 7018 -71.155.218.0/24 36673 -71.155.219.0/24 7018 -71.155.220.0/22 7018 -71.155.224.0/19 7018 -71.156.0.0/16 7018 -71.157.0.0/17 7018 -71.157.128.0/19 7018 -71.157.160.0/20 7018 -71.157.176.0/21 7018 -71.157.184.0/24 7018 -71.157.185.0/24 40023 -71.157.186.0/23 7018 -71.157.188.0/22 7018 -71.157.192.0/18 7018 -71.158.0.0/18 7018 -71.158.64.0/19 7018 -71.158.96.0/22 7018 -71.158.100.0/23 7018 -71.158.102.0/23 26306 -71.158.104.0/21 7018 -71.158.112.0/20 7018 -71.158.128.0/24 7018 -71.158.129.0/24 22773 -71.158.130.0/23 7018 -71.158.132.0/22 7018 -71.158.136.0/21 7018 -71.158.144.0/20 7018 -71.158.160.0/19 7018 -71.158.192.0/18 7018 -71.159.0.0/20 7018 -71.159.16.0/22 7018 -71.159.20.0/23 7018 -71.159.22.0/23 2386 -71.159.24.0/21 7018 -71.159.32.0/19 7018 -71.159.64.0/18 7018 -71.159.128.0/17 7018 -71.160.0.0/23 5650 -71.160.6.0/23 5650 -71.160.8.0/23 5650 -71.160.22.0/23 5650 -71.160.30.0/23 5650 -71.160.38.0/23 5650 -71.160.50.0/23 5650 -71.160.56.0/23 5650 -71.160.70.0/23 5650 -71.160.72.0/23 5650 -71.160.80.0/22 5650 -71.160.90.0/23 5650 -71.160.96.0/23 5650 -71.160.100.0/23 5650 -71.160.112.0/23 5650 -71.160.116.0/23 5650 -71.160.120.0/23 5650 -71.160.124.0/22 5650 -71.160.132.0/23 5650 -71.160.138.0/23 5650 -71.160.150.0/23 5650 -71.160.156.0/23 5650 -71.160.162.0/23 5650 -71.160.164.0/22 5650 -71.160.170.0/23 5650 -71.160.174.0/23 5650 -71.160.182.0/23 5650 -71.160.186.0/23 5650 -71.160.188.0/22 5650 -71.160.192.0/23 5650 -71.160.200.0/23 5650 -71.160.206.0/23 5650 -71.160.208.0/23 5650 -71.160.218.0/23 5650 -71.160.224.0/23 5650 -71.160.232.0/23 5650 -71.160.236.0/23 5650 -71.160.242.0/23 5650 -71.160.244.0/22 5650 -71.160.248.0/21 5650 -71.161.32.0/19 701 -71.161.64.0/23 32645 -71.161.66.0/23 6461 -71.161.68.0/22 6461 -71.161.72.0/24 6461 -71.161.74.0/23 32645 -71.161.76.0/22 12175 -71.161.80.0/20 13977 -71.161.96.0/22 13977 -71.161.100.0/23 13977 -71.161.102.0/23 13672 -71.161.104.0/21 13977 -71.161.112.0/20 13977 -71.161.128.0/18 701 -71.161.192.0/19 13977 -71.161.224.0/19 701 -71.162.0.0/15 701 -71.164.64.0/18 701 -71.164.130.0/23 5650 -71.164.132.0/23 5650 -71.164.140.0/23 5650 -71.164.144.0/22 5650 -71.164.152.0/21 5650 -71.164.160.0/23 5650 -71.164.172.0/22 5650 -71.164.176.0/23 5650 -71.164.188.0/22 5650 -71.164.192.0/23 5650 -71.164.210.0/23 5650 -71.164.212.0/22 5650 -71.164.216.0/22 5650 -71.164.220.0/23 5650 -71.164.224.0/23 5650 -71.164.232.0/23 5650 -71.164.236.0/23 5650 -71.164.246.0/23 5650 -71.164.254.0/23 5650 -71.165.0.0/23 5650 -71.165.4.0/22 5650 -71.165.12.0/23 5650 -71.165.18.0/23 5650 -71.165.20.0/23 5650 -71.165.26.0/23 5650 -71.165.30.0/23 5650 -71.165.34.0/23 5650 -71.165.48.0/23 5650 -71.165.58.0/23 5650 -71.165.70.0/23 5650 -71.165.74.0/23 5650 -71.165.76.0/23 5650 -71.165.88.0/22 5650 -71.165.106.0/23 5650 -71.165.110.0/23 5650 -71.165.116.0/22 5650 -71.165.132.0/22 5650 -71.165.138.0/23 5650 -71.165.146.0/23 5650 -71.165.148.0/22 5650 -71.165.160.0/22 5650 -71.165.164.0/23 5650 -71.165.172.0/22 5650 -71.165.186.0/23 5650 -71.165.188.0/23 5650 -71.165.198.0/23 5650 -71.165.206.0/23 5650 -71.165.210.0/23 5650 -71.165.224.0/22 5650 -71.165.230.0/23 5650 -71.165.232.0/23 5650 -71.165.242.0/23 5650 -71.165.244.0/23 5650 -71.165.250.0/23 5650 -71.165.252.0/22 5650 -71.166.0.0/15 701 -71.168.0.0/19 701 -71.168.64.0/22 13672 -71.168.68.0/23 13672 -71.168.70.0/24 13672 -71.168.71.0/24 13977 -71.168.72.0/24 13672 -71.168.73.0/24 13977 -71.168.74.0/24 13977 -71.168.75.0/24 13672 -71.168.76.0/23 13672 -71.168.78.0/24 13672 -71.168.79.0/24 13977 -71.168.80.0/21 13977 -71.168.88.0/24 13977 -71.168.89.0/24 13672 -71.168.90.0/23 13672 -71.168.92.0/22 13672 -71.168.96.0/24 13672 -71.168.97.0/24 13977 -71.168.98.0/23 13977 -71.168.100.0/22 13977 -71.168.104.0/24 13977 -71.168.105.0/24 13672 -71.168.106.0/23 13672 -71.168.108.0/22 13672 -71.168.112.0/22 13672 -71.168.116.0/23 13672 -71.168.118.0/23 13977 -71.168.120.0/21 13672 -71.168.128.0/17 701 -71.169.0.0/17 701 -71.169.128.0/18 13977 -71.169.192.0/23 701 -71.169.194.0/24 701 -71.169.195.0/24 5650 -71.169.196.0/24 701 -71.169.197.0/24 5650 -71.169.198.0/23 701 -71.169.200.0/22 701 -71.169.204.0/23 701 -71.169.206.0/24 701 -71.169.207.0/24 5650 -71.169.208.0/22 701 -71.169.212.0/23 701 -71.169.214.0/24 701 -71.169.215.0/24 5650 -71.169.216.0/24 701 -71.169.217.0/24 5650 -71.169.218.0/23 701 -71.169.220.0/23 701 -71.169.222.0/24 701 -71.169.223.0/24 5650 -71.169.224.0/24 5650 -71.169.225.0/24 701 -71.169.226.0/24 5650 -71.169.227.0/24 701 -71.169.228.0/24 5650 -71.169.229.0/24 701 -71.169.230.0/23 701 -71.169.232.0/24 5650 -71.169.233.0/24 701 -71.169.234.0/23 5650 -71.169.236.0/24 5650 -71.169.237.0/24 701 -71.169.238.0/23 5650 -71.169.240.0/20 701 -71.170.4.0/23 5650 -71.170.10.0/23 5650 -71.170.16.0/22 5650 -71.170.24.0/21 5650 -71.170.32.0/22 5650 -71.170.36.0/23 5650 -71.170.46.0/23 5650 -71.170.48.0/22 5650 -71.170.54.0/23 5650 -71.170.62.0/23 5650 -71.170.64.0/23 5650 -71.170.72.0/23 5650 -71.170.82.0/23 5650 -71.170.96.0/23 5650 -71.170.102.0/23 5650 -71.170.104.0/23 5650 -71.170.116.0/22 5650 -71.170.126.0/23 5650 -71.170.128.0/23 5650 -71.170.142.0/23 5650 -71.170.146.0/23 5650 -71.170.160.0/23 5650 -71.170.170.0/23 5650 -71.170.172.0/22 5650 -71.170.190.0/23 5650 -71.170.196.0/22 5650 -71.170.200.0/23 5650 -71.170.204.0/22 5650 -71.170.208.0/22 5650 -71.170.220.0/22 5650 -71.170.236.0/23 5650 -71.170.242.0/23 5650 -71.170.244.0/22 5650 -71.171.0.0/17 701 -71.172.0.0/16 701 -71.173.0.0/18 701 -71.173.64.0/19 13977 -71.173.96.0/19 701 -71.173.128.0/17 701 -71.174.0.0/15 701 -71.176.0.0/16 701 -71.177.10.0/23 5650 -71.177.14.0/23 5650 -71.177.20.0/22 5650 -71.177.26.0/23 5650 -71.177.28.0/23 5650 -71.177.32.0/22 5650 -71.177.42.0/23 5650 -71.177.44.0/22 5650 -71.177.48.0/22 5650 -71.177.52.0/23 5650 -71.177.58.0/23 5650 -71.177.64.0/23 5650 -71.177.68.0/23 5650 -71.177.72.0/23 5650 -71.177.84.0/22 5650 -71.177.88.0/23 5650 -71.177.92.0/22 5650 -71.177.124.0/22 5650 -71.177.132.0/22 5650 -71.177.136.0/23 5650 -71.177.140.0/22 5650 -71.177.150.0/23 5650 -71.177.156.0/22 5650 -71.177.166.0/23 5650 -71.177.170.0/23 5650 -71.177.172.0/22 5650 -71.177.176.0/22 5650 -71.177.182.0/23 5650 -71.177.184.0/23 5650 -71.177.198.0/23 5650 -71.177.212.0/23 5650 -71.177.216.0/23 5650 -71.177.220.0/22 5650 -71.177.242.0/23 5650 -71.177.244.0/23 5650 -71.177.248.0/23 5650 -71.177.252.0/22 5650 -71.178.0.0/15 701 -71.180.2.0/23 5650 -71.180.6.0/23 5650 -71.180.18.0/23 5650 -71.180.20.0/23 5650 -71.180.28.0/23 5650 -71.180.42.0/23 5650 -71.180.54.0/23 5650 -71.180.62.0/23 5650 -71.180.64.0/23 5650 -71.180.68.0/23 5650 -71.180.80.0/23 5650 -71.180.92.0/22 5650 -71.180.98.0/23 5650 -71.180.102.0/23 5650 -71.180.108.0/22 5650 -71.180.114.0/23 5650 -71.180.116.0/22 5650 -71.180.120.0/23 5650 -71.180.140.0/22 5650 -71.180.144.0/22 5650 -71.180.148.0/23 5650 -71.180.162.0/23 5650 -71.180.164.0/22 5650 -71.180.170.0/23 5650 -71.180.172.0/23 5650 -71.180.178.0/23 5650 -71.180.188.0/23 5650 -71.180.194.0/23 5650 -71.180.196.0/22 5650 -71.180.200.0/22 5650 -71.180.248.0/23 5650 -71.181.0.0/21 13672 -71.181.8.0/23 13672 -71.181.10.0/24 13672 -71.181.11.0/24 22270 -71.181.12.0/22 13672 -71.181.16.0/21 13977 -71.181.24.0/23 13977 -71.181.26.0/24 13672 -71.181.27.0/24 13977 -71.181.28.0/22 13977 -71.181.32.0/20 13672 -71.181.48.0/23 14671 -71.181.50.0/23 18712 -71.181.52.0/24 5650 -71.181.56.0/24 5742 -71.181.58.0/24 22647 -71.181.59.0/24 209 -71.181.60.0/23 5650 -71.181.62.0/24 32645 -71.181.64.0/23 13672 -71.181.66.0/23 13977 -71.181.68.0/22 13977 -71.181.72.0/21 13977 -71.181.80.0/22 13977 -71.181.84.0/23 13672 -71.181.86.0/24 13672 -71.181.87.0/24 13977 -71.181.88.0/23 13672 -71.181.90.0/23 13977 -71.181.92.0/23 13977 -71.181.94.0/23 13672 -71.181.96.0/22 13672 -71.181.100.0/22 13977 -71.181.104.0/21 13977 -71.181.112.0/23 13977 -71.181.116.0/23 13977 -71.181.118.0/24 46820 -71.181.119.0/24 13977 -71.181.120.0/22 13977 -71.181.124.0/23 13977 -71.181.126.0/23 32645 -71.181.128.0/17 701 -71.182.96.0/19 701 -71.182.128.0/17 701 -71.183.0.0/16 701 -71.184.0.0/15 701 -71.186.128.0/17 701 -71.187.0.0/16 701 -71.188.0.0/17 701 -71.188.224.0/20 701 -71.189.8.0/23 5650 -71.189.14.0/23 5650 -71.189.18.0/23 5650 -71.189.24.0/22 5650 -71.189.30.0/23 5650 -71.189.40.0/22 5650 -71.189.46.0/23 5650 -71.189.48.0/23 5650 -71.189.54.0/23 5650 -71.189.56.0/23 5650 -71.189.60.0/23 5650 -71.189.66.0/23 5650 -71.189.70.0/23 5650 -71.189.72.0/23 5650 -71.189.78.0/23 5650 -71.189.82.0/23 5650 -71.189.86.0/23 5650 -71.189.90.0/23 5650 -71.189.92.0/23 5650 -71.189.96.0/23 5650 -71.189.102.0/23 5650 -71.189.116.0/22 5650 -71.189.120.0/22 5650 -71.189.124.0/23 5650 -71.189.136.0/23 5650 -71.189.140.0/23 5650 -71.189.156.0/23 5650 -71.189.160.0/23 5650 -71.189.164.0/22 5650 -71.189.180.0/22 5650 -71.189.190.0/23 5650 -71.189.196.0/22 5650 -71.189.208.0/23 5650 -71.189.234.0/23 5650 -71.189.236.0/23 5650 -71.189.242.0/23 5650 -71.189.244.0/23 5650 -71.189.252.0/23 5650 -71.190.0.0/15 701 -71.192.0.0/12 7922 -71.208.0.0/12 209 -71.224.0.0/12 7922 -71.240.0.0/17 701 -71.240.128.0/19 701 -71.240.160.0/19 5650 -71.240.192.0/19 701 -71.241.0.0/17 701 -71.241.128.0/20 13977 -71.241.144.0/20 701 -71.241.192.0/20 13977 -71.241.208.0/23 13977 -71.241.212.0/22 13977 -71.241.216.0/21 13977 -71.241.224.0/19 701 -71.242.0.0/16 701 -71.243.0.0/17 701 -71.243.128.0/18 701 -71.243.208.0/20 5650 -71.243.224.0/19 5650 -71.244.0.0/18 5650 -71.244.64.0/18 701 -71.244.128.0/17 701 -71.245.0.0/18 701 -71.245.64.0/19 701 -71.245.112.0/20 701 -71.245.128.0/18 701 -71.245.224.0/19 701 -71.246.0.0/19 701 -71.246.32.0/19 5650 -71.246.64.0/18 701 -71.246.144.0/20 701 -71.246.160.0/24 701 -71.246.174.0/23 701 -71.246.176.0/20 701 -71.246.192.0/18 701 -71.247.0.0/16 701 -71.248.0.0/17 701 -71.248.160.0/19 701 -71.249.0.0/16 701 -71.250.0.0/16 701 -71.251.0.0/18 701 -71.251.64.0/18 5650 -71.251.128.0/18 701 -71.251.192.0/19 701 -71.251.224.0/20 701 -71.252.0.0/17 701 -71.252.128.0/21 5650 -71.252.136.0/23 5650 -71.252.142.0/23 5650 -71.252.146.0/23 5650 -71.252.148.0/22 5650 -71.252.152.0/23 5650 -71.252.176.0/23 5650 -71.252.180.0/23 5650 -71.252.192.0/23 5650 -71.252.196.0/22 5650 -71.252.202.0/23 5650 -71.252.206.0/23 5650 -71.252.210.0/23 5650 -71.252.214.0/23 5650 -71.252.216.0/22 5650 -71.252.230.0/23 5650 -71.252.236.0/22 5650 -71.253.0.0/17 701 -71.253.128.0/18 701 -71.254.0.0/20 13977 -71.254.48.0/20 701 -71.254.64.0/19 701 -71.254.96.0/20 13977 -71.254.112.0/20 701 -71.254.128.0/18 5650 -71.254.192.0/19 701 -71.255.0.0/18 701 -71.255.64.0/19 701 -71.255.96.0/20 701 -71.255.112.0/24 13672 -71.255.113.0/24 13977 -71.255.114.0/24 13672 -71.255.115.0/24 13977 -71.255.116.0/22 13977 -71.255.120.0/21 13672 -71.255.128.0/19 13977 -71.255.160.0/19 701 -71.255.192.0/18 701 -72.0.0.0/20 23173 -72.0.16.0/23 23173 -72.0.19.0/24 23173 -72.0.20.0/23 23173 -72.0.22.0/24 23173 -72.0.24.0/22 23173 -72.0.30.0/23 23173 -72.0.32.0/20 11711 -72.0.48.0/20 42 -72.0.64.0/20 30528 -72.0.96.0/21 3356 -72.0.104.0/23 3356 -72.0.106.0/24 3356 -72.0.107.0/24 25612 -72.0.108.0/23 3356 -72.0.110.0/24 3356 -72.0.111.0/24 3064 -72.0.112.0/24 46908 -72.0.113.0/24 3356 -72.0.114.0/23 3356 -72.0.116.0/22 3356 -72.0.120.0/21 3356 -72.0.128.0/19 13536 -72.0.160.0/19 4181 -72.0.192.0/19 26198 -72.0.224.0/20 19940 -72.0.240.0/20 15321 -72.1.0.0/19 7268 -72.1.32.0/21 10732 -72.1.40.0/22 10732 -72.1.44.0/23 10732 -72.1.46.0/23 26503 -72.1.48.0/20 40845 -72.1.64.0/19 32880 -72.1.96.0/21 29863 -72.1.104.0/22 396037 -72.1.108.0/24 396037 -72.1.109.0/24 29863 -72.1.110.0/24 29863 -72.1.111.0/24 396037 -72.1.112.0/23 396037 -72.1.114.0/23 29863 -72.1.116.0/22 40522 -72.1.120.0/24 4565 -72.1.121.0/24 29863 -72.1.122.0/23 29863 -72.1.124.0/22 29863 -72.1.128.0/18 18566 -72.1.192.0/21 812 -72.1.200.0/22 812 -72.1.204.0/24 54633 -72.1.205.0/24 812 -72.1.206.0/23 812 -72.1.208.0/20 812 -72.1.240.0/20 33322 -72.2.0.0/22 6327 -72.2.4.0/22 53359 -72.2.8.0/21 6327 -72.2.16.0/22 6327 -72.2.20.0/23 6327 -72.2.22.0/24 16583 -72.2.23.0/24 6327 -72.2.24.0/22 6327 -72.2.28.0/22 54103 -72.2.32.0/19 6327 -72.2.64.0/19 19009 -72.2.96.0/20 32162 -72.2.112.0/20 26464 -72.2.128.0/19 13428 -72.2.160.0/20 17306 -72.2.176.0/24 27246 -72.2.177.0/24 25899 -72.2.178.0/24 14635 -72.2.179.0/24 53703 -72.2.181.0/24 394832 -72.2.182.0/23 394832 -72.2.184.0/21 46416 -72.2.224.0/20 4913 -72.2.240.0/20 26727 -72.3.0.0/17 6325 -72.3.128.0/17 33070 -72.4.0.0/20 7029 -72.4.16.0/20 53435 -72.4.32.0/20 53435 -72.4.48.0/20 7029 -72.4.64.0/19 7029 -72.4.96.0/20 22136 -72.4.112.0/20 27357 -72.4.128.0/19 3064 -72.4.160.0/20 3064 -72.4.176.0/20 20377 -72.4.192.0/18 7029 -72.5.0.0/21 14743 -72.5.8.0/23 14743 -72.5.10.0/23 16417 -72.5.12.0/22 14743 -72.5.16.0/20 14742 -72.5.32.0/22 35913 -72.5.36.0/22 26654 -72.5.48.0/22 14744 -72.5.52.0/24 14744 -72.5.53.0/24 32751 -72.5.54.0/24 32751 -72.5.55.0/24 14744 -72.5.56.0/21 14744 -72.5.64.0/24 12182 -72.5.65.0/24 6461 -72.5.66.0/23 12182 -72.5.68.0/22 12182 -72.5.72.0/23 394738 -72.5.74.0/23 12182 -72.5.76.0/23 12182 -72.5.78.0/24 23023 -72.5.79.0/24 12182 -72.5.80.0/20 14745 -72.5.96.0/23 13790 -72.5.98.0/24 21777 -72.5.99.0/24 13790 -72.5.100.0/23 13790 -72.5.102.0/24 12179 -72.5.103.0/24 13790 -72.5.104.0/21 13790 -72.5.112.0/21 14743 -72.5.120.0/21 14745 -72.5.128.0/20 10910 -72.5.144.0/22 10913 -72.5.148.0/23 10913 -72.5.150.0/23 18851 -72.5.152.0/24 10913 -72.5.153.0/24 36083 -72.5.154.0/23 10913 -72.5.156.0/22 10913 -72.5.160.0/23 14636 -72.5.162.0/23 29791 -72.5.164.0/22 14743 -72.5.168.0/23 14743 -72.5.170.0/24 14743 -72.5.171.0/24 25985 -72.5.172.0/22 14743 -72.5.176.0/24 12002 -72.5.177.0/24 10910 -72.5.178.0/23 10910 -72.5.180.0/23 10910 -72.5.182.0/23 18893 -72.5.184.0/22 12179 -72.5.188.0/24 12179 -72.5.189.0/24 29791 -72.5.190.0/24 12179 -72.5.191.0/24 46282 -72.5.192.0/23 19024 -72.5.194.0/24 6640 -72.5.195.0/24 14586 -72.5.196.0/22 19024 -72.5.200.0/23 19024 -72.5.202.0/24 19024 -72.5.203.0/24 6640 -72.5.204.0/24 19462 -72.5.205.0/24 19024 -72.5.206.0/23 19024 -72.5.208.0/22 14744 -72.5.212.0/23 14744 -72.5.214.0/24 18705 -72.5.215.0/24 14744 -72.5.216.0/21 14744 -72.5.224.0/24 12182 -72.5.225.0/24 394808 -72.5.226.0/23 12182 -72.5.228.0/23 12182 -72.5.230.0/24 12182 -72.5.231.0/24 54538 -72.5.232.0/21 14743 -72.5.240.0/21 13791 -72.5.248.0/23 12179 -72.5.250.0/24 12179 -72.5.251.0/24 13789 -72.5.252.0/22 12179 -72.6.0.0/19 10507 -72.6.32.0/20 10507 -72.6.48.0/21 10507 -72.6.56.0/22 10507 -72.8.0.0/20 7029 -72.8.16.0/22 7029 -72.8.20.0/23 7029 -72.8.22.0/24 46766 -72.8.23.0/24 7029 -72.8.24.0/21 7029 -72.8.32.0/19 7029 -72.8.64.0/22 26864 -72.8.68.0/24 26864 -72.8.69.0/24 26253 -72.8.70.0/23 26253 -72.8.72.0/21 26253 -72.8.80.0/20 26253 -72.8.96.0/20 26253 -72.8.112.0/22 26253 -72.8.116.0/23 26253 -72.8.118.0/24 26253 -72.8.119.0/24 26864 -72.8.120.0/21 26864 -72.8.128.0/20 25761 -72.8.144.0/24 25761 -72.8.145.0/24 46562 -72.8.146.0/23 25761 -72.8.148.0/23 25761 -72.8.150.0/23 46562 -72.8.152.0/21 25761 -72.8.160.0/24 46562 -72.8.161.0/24 25761 -72.8.162.0/23 25761 -72.8.164.0/22 25761 -72.8.168.0/22 25761 -72.8.172.0/24 46562 -72.8.173.0/24 25761 -72.8.174.0/23 25761 -72.8.176.0/22 46562 -72.8.180.0/23 25761 -72.8.182.0/23 46562 -72.8.184.0/24 46562 -72.8.185.0/24 25761 -72.8.186.0/23 25761 -72.8.188.0/23 46562 -72.8.190.0/23 25761 -72.8.192.0/18 13807 -72.9.0.0/21 21688 -72.9.8.0/24 26504 -72.9.9.0/24 36790 -72.9.10.0/23 21688 -72.9.12.0/22 21688 -72.9.16.0/20 36790 -72.9.32.0/19 14131 -72.9.64.0/22 395795 -72.9.68.0/22 8025 -72.9.72.0/21 8025 -72.9.80.0/21 8025 -72.9.88.0/24 27268 -72.9.89.0/24 8025 -72.9.90.0/23 395795 -72.9.92.0/22 8025 -72.9.96.0/20 15149 -72.9.112.0/20 32160 -72.9.128.0/22 46945 -72.9.132.0/23 47869 -72.9.134.0/24 46945 -72.9.135.0/24 47869 -72.9.136.0/21 46945 -72.9.144.0/20 393398 -72.9.160.0/19 14663 -72.9.192.0/19 22343 -72.9.224.0/23 11042 -72.9.226.0/24 7226 -72.9.227.0/24 11042 -72.9.228.0/24 7226 -72.9.229.0/24 11042 -72.9.230.0/23 11042 -72.9.232.0/21 11042 -72.9.240.0/24 7226 -72.9.241.0/24 11042 -72.9.242.0/24 7226 -72.9.243.0/24 11042 -72.9.244.0/22 11042 -72.9.248.0/23 11042 -72.9.250.0/24 7226 -72.9.251.0/24 11042 -72.9.252.0/22 11042 -72.10.0.0/19 23265 -72.10.32.0/19 31815 -72.10.64.0/23 19158 -72.10.66.0/23 19955 -72.10.68.0/22 19158 -72.10.72.0/22 19158 -72.10.76.0/23 19158 -72.10.78.0/23 393740 -72.10.80.0/22 19158 -72.10.84.0/23 19158 -72.10.86.0/23 19955 -72.10.88.0/23 19955 -72.10.90.0/24 19955 -72.10.91.0/24 19158 -72.10.92.0/22 19158 -72.10.96.0/21 22742 -72.10.104.0/22 22742 -72.10.108.0/24 29867 -72.10.109.0/24 22742 -72.10.110.0/23 22742 -72.10.112.0/23 22742 -72.10.114.0/24 22742 -72.10.115.0/24 54360 -72.10.116.0/22 22742 -72.10.120.0/21 22742 -72.10.128.0/19 16532 -72.10.160.0/20 36666 -72.10.176.0/21 22931 -72.10.184.0/23 22931 -72.10.186.0/23 397809 -72.10.188.0/23 22931 -72.10.190.0/24 397809 -72.10.191.0/24 22931 -72.10.192.0/24 36100 -72.10.193.0/24 22302 -72.10.194.0/23 22302 -72.10.196.0/22 36100 -72.10.200.0/23 22302 -72.10.202.0/23 36100 -72.10.204.0/23 36100 -72.10.206.0/23 22302 -72.10.208.0/22 22302 -72.10.212.0/23 22302 -72.10.214.0/24 22302 -72.10.215.0/24 21627 -72.10.216.0/21 22302 -72.10.224.0/20 33255 -72.10.240.0/21 33255 -72.10.248.0/22 209 -72.10.252.0/23 33255 -72.10.254.0/23 209 -72.11.0.0/19 13638 -72.11.32.0/19 22709 -72.11.64.0/18 7385 -72.11.128.0/19 8100 -72.11.160.0/21 30466 -72.11.168.0/22 30466 -72.11.172.0/24 30466 -72.11.174.0/24 30466 -72.11.176.0/20 30466 -72.11.192.0/19 16524 -72.11.224.0/19 14265 -72.12.0.0/18 7029 -72.12.64.0/19 21547 -72.12.96.0/20 16532 -72.12.112.0/20 23481 -72.12.192.0/19 11114 -72.12.224.0/20 23175 -72.12.240.0/20 26253 -72.13.0.0/20 11115 -72.13.16.0/20 394147 -72.13.32.0/23 26134 -72.13.34.0/24 26134 -72.13.35.0/24 26415 -72.13.36.0/24 26134 -72.13.37.0/24 30060 -72.13.38.0/23 26134 -72.13.40.0/21 26134 -72.13.48.0/21 26134 -72.13.56.0/22 26134 -72.13.60.0/24 7342 -72.13.61.0/24 26134 -72.13.62.0/24 30060 -72.13.63.0/24 26415 -72.13.64.0/21 32760 -72.13.72.0/22 32760 -72.13.76.0/23 32760 -72.13.79.0/24 14618 -72.13.80.0/20 18779 -72.13.96.0/20 23183 -72.13.112.0/21 23185 -72.13.121.0/24 16509 -72.13.122.0/24 53334 -72.13.123.0/24 14618 -72.13.124.0/24 16509 -72.13.125.0/24 23185 -72.13.128.0/23 174 -72.13.130.0/24 23089 -72.13.131.0/24 174 -72.13.132.0/23 174 -72.13.134.0/24 174 -72.13.135.0/24 23089 -72.13.136.0/21 174 -72.13.144.0/22 23089 -72.13.148.0/23 174 -72.13.150.0/24 174 -72.13.151.0/24 23089 -72.13.152.0/23 23089 -72.13.154.0/24 23089 -72.13.155.0/24 11035 -72.13.156.0/22 23089 -72.13.160.0/20 15102 -72.13.176.0/21 15102 -72.13.184.0/24 15102 -72.13.186.0/23 15102 -72.13.188.0/22 15102 -72.13.192.0/20 7832 -72.13.208.0/20 30432 -72.13.224.0/19 3257 -72.14.0.0/19 22926 -72.14.32.0/20 14954 -72.14.48.0/21 14954 -72.14.56.0/22 14954 -72.14.60.0/22 18856 -72.14.64.0/22 6939 -72.14.68.0/24 393670 -72.14.69.0/24 27258 -72.14.70.0/23 27258 -72.14.72.0/24 27258 -72.14.73.0/24 46849 -72.14.74.0/24 395236 -72.14.76.0/24 13977 -72.14.77.0/24 21627 -72.14.78.0/24 7018 -72.14.79.0/24 395236 -72.14.80.0/23 395236 -72.14.82.0/24 395236 -72.14.83.0/24 32505 -72.14.84.0/24 13977 -72.14.85.0/24 22534 -72.14.86.0/24 11272 -72.14.87.0/24 32505 -72.14.88.0/24 32505 -72.14.89.0/24 6939 -72.14.96.0/24 13977 -72.14.97.0/24 33234 -72.14.100.0/22 47095 -72.14.104.0/21 47095 -72.14.117.0/24 55178 -72.14.118.0/24 20115 -72.14.119.0/24 33234 -72.14.121.0/24 55178 -72.14.122.0/24 55178 -72.14.123.0/24 22534 -72.14.126.0/24 33234 -72.14.127.0/24 13943 -72.14.128.0/19 20460 -72.14.160.0/20 26788 -72.14.176.0/20 63949 -72.14.192.0/18 15169 -72.15.0.0/24 5738 -72.15.1.0/24 13536 -72.15.2.0/24 5738 -72.15.3.0/24 14635 -72.15.4.0/22 5738 -72.15.8.0/21 5738 -72.15.16.0/22 5738 -72.15.20.0/24 54331 -72.15.21.0/24 5738 -72.15.22.0/23 5738 -72.15.24.0/21 5738 -72.15.48.0/20 21949 -72.15.64.0/19 11693 -72.15.96.0/20 11693 -72.15.112.0/22 11693 -72.15.116.0/22 12083 -72.15.120.0/22 11693 -72.15.124.0/22 12083 -72.15.128.0/22 393636 -72.15.132.0/23 393636 -72.15.134.0/23 33441 -72.15.136.0/21 393636 -72.15.144.0/20 812 -72.15.160.0/19 11714 -72.15.192.0/20 19271 -72.15.208.0/22 19271 -72.15.212.0/24 19271 -72.15.213.0/24 395263 -72.15.214.0/23 19271 -72.15.216.0/21 19271 -72.15.224.0/20 19271 -72.15.240.0/22 19271 -72.15.244.0/23 19271 -72.15.246.0/24 19271 -72.15.247.0/24 54155 -72.15.248.0/21 19271 -72.16.0.0/17 7029 -72.16.128.0/17 17184 -72.17.0.0/17 33363 -72.17.128.0/17 7029 -72.18.0.0/19 11509 -72.18.32.0/20 22346 -72.18.48.0/20 40545 -72.18.96.0/20 25853 -72.18.112.0/20 15267 -72.18.128.0/19 30475 -72.18.160.0/19 36658 -72.18.192.0/20 26277 -72.18.208.0/24 22658 -72.18.210.0/24 22658 -72.18.212.0/23 22658 -72.18.215.0/24 22658 -72.18.216.0/22 22658 -72.18.220.0/23 22658 -72.18.223.0/24 22658 -72.18.224.0/19 14265 -72.19.2.0/24 22040 -72.19.3.0/24 35280 -72.19.8.0/24 63069 -72.19.11.0/24 54523 -72.19.12.0/22 397280 -72.19.22.0/24 33490 -72.19.23.0/24 5022 -72.19.28.0/22 395494 -72.19.32.0/21 25840 -72.19.40.0/21 33509 -72.19.48.0/22 33509 -72.19.52.0/24 53536 -72.19.53.0/24 13692 -72.19.54.0/23 33509 -72.19.56.0/21 25840 -72.19.64.0/18 1249 -72.19.128.0/18 39939 -72.19.192.0/18 17358 -72.20.0.0/23 25761 -72.20.2.0/24 25761 -72.20.3.0/24 46562 -72.20.4.0/23 25761 -72.20.6.0/24 25761 -72.20.7.0/24 46562 -72.20.8.0/21 46562 -72.20.16.0/22 46562 -72.20.20.0/24 25761 -72.20.21.0/24 46562 -72.20.22.0/23 25761 -72.20.24.0/24 25761 -72.20.25.0/24 46562 -72.20.26.0/23 46562 -72.20.28.0/22 25761 -72.20.32.0/22 25761 -72.20.36.0/23 25761 -72.20.38.0/24 46562 -72.20.39.0/24 25761 -72.20.40.0/22 46562 -72.20.44.0/24 25761 -72.20.45.0/24 46562 -72.20.46.0/24 46562 -72.20.47.0/24 25761 -72.20.48.0/24 62904 -72.20.49.0/24 25761 -72.20.50.0/23 25761 -72.20.52.0/22 46562 -72.20.56.0/21 25761 -72.20.64.0/19 26794 -72.20.96.0/19 7151 -72.20.128.0/24 22442 -72.20.129.0/24 394437 -72.20.130.0/23 22442 -72.20.132.0/22 394437 -72.20.136.0/24 22442 -72.20.137.0/24 394437 -72.20.138.0/24 394437 -72.20.139.0/24 22442 -72.20.140.0/24 394437 -72.20.141.0/24 22442 -72.20.142.0/23 22442 -72.20.144.0/24 394437 -72.20.145.0/24 22442 -72.20.146.0/23 394437 -72.20.148.0/23 22442 -72.20.150.0/24 22442 -72.20.151.0/24 394437 -72.20.152.0/23 394437 -72.20.154.0/24 22442 -72.20.155.0/24 394437 -72.20.156.0/23 394437 -72.20.158.0/24 22442 -72.20.159.0/24 394437 -72.20.160.0/20 25606 -72.20.176.0/20 32592 -72.20.192.0/22 22765 -72.20.196.0/22 32327 -72.20.200.0/22 22765 -72.20.204.0/22 32327 -72.20.208.0/24 6461 -72.20.209.0/24 32327 -72.20.210.0/23 32327 -72.20.212.0/23 22500 -72.20.214.0/23 32327 -72.20.216.0/21 32327 -72.20.224.0/19 32327 -72.21.8.0/23 16557 -72.21.12.0/22 16557 -72.21.16.0/24 394151 -72.21.19.0/24 394151 -72.21.20.0/24 16557 -72.21.21.0/24 12213 -72.21.22.0/24 16557 -72.21.23.0/24 397287 -72.21.24.0/22 21699 -72.21.29.0/24 21699 -72.21.32.0/20 24778 -72.21.64.0/20 4474 -72.21.80.0/23 15133 -72.21.82.0/24 14210 -72.21.84.0/24 15133 -72.21.87.0/24 15133 -72.21.90.0/23 15133 -72.21.92.0/24 15133 -72.21.94.0/24 15133 -72.21.96.0/19 47064 -72.21.128.0/19 20001 -72.21.160.0/22 14717 -72.21.165.0/24 14717 -72.21.166.0/24 14717 -72.21.168.0/24 14717 -72.21.172.0/24 14717 -72.21.173.0/24 29746 -72.21.175.0/24 14717 -72.21.176.0/21 14717 -72.21.185.0/24 14717 -72.21.186.0/23 14717 -72.21.188.0/23 14717 -72.21.192.0/19 16509 -72.21.224.0/20 22402 -72.21.240.0/21 22402 -72.21.248.0/22 22402 -72.21.252.0/23 22402 -72.21.254.0/23 36395 -72.22.0.0/19 13333 -72.22.64.0/23 22458 -72.22.66.0/23 29873 -72.22.68.0/24 22458 -72.22.72.0/23 29873 -72.22.74.0/24 22458 -72.22.76.0/24 29873 -72.22.77.0/24 22458 -72.22.78.0/24 29873 -72.22.80.0/22 29873 -72.22.86.0/24 22458 -72.22.88.0/22 29873 -72.22.94.0/24 29873 -72.22.100.0/24 12042 -72.22.105.0/24 12025 -72.22.106.0/24 12025 -72.22.108.0/24 12025 -72.22.112.0/20 16433 -72.22.128.0/21 14813 -72.22.136.0/23 14813 -72.22.138.0/23 46408 -72.22.140.0/22 14813 -72.22.144.0/24 14813 -72.22.146.0/23 46650 -72.22.148.0/24 11139 -72.22.150.0/23 14813 -72.22.152.0/24 14813 -72.22.154.0/23 46650 -72.22.156.0/24 14813 -72.22.158.0/23 14813 -72.22.160.0/22 46887 -72.22.164.0/23 46887 -72.22.166.0/24 15277 -72.22.167.0/24 20200 -72.22.168.0/22 46887 -72.22.172.0/24 25669 -72.22.173.0/24 46887 -72.22.174.0/23 46887 -72.22.176.0/20 46887 -72.22.192.0/21 62648 -72.22.200.0/21 15082 -72.22.208.0/20 11708 -72.22.224.0/19 17380 -72.23.0.0/16 27364 -72.24.0.0/22 11492 -72.24.4.0/24 11492 -72.24.6.0/23 11492 -72.24.8.0/23 11492 -72.24.11.0/24 11492 -72.24.12.0/22 11492 -72.24.16.0/20 11492 -72.24.32.0/20 11492 -72.24.48.0/23 11492 -72.24.53.0/24 11492 -72.24.54.0/23 11492 -72.24.56.0/21 11492 -72.24.64.0/23 11492 -72.24.67.0/24 11492 -72.24.68.0/22 11492 -72.24.72.0/21 11492 -72.24.80.0/21 11492 -72.24.88.0/22 11492 -72.24.92.0/23 11492 -72.24.94.0/24 11492 -72.24.96.0/19 11492 -72.24.129.0/24 11492 -72.24.130.0/23 11492 -72.24.132.0/22 11492 -72.24.136.0/24 11492 -72.24.138.0/23 11492 -72.24.140.0/22 11492 -72.24.144.0/21 11492 -72.24.153.0/24 11492 -72.24.154.0/23 11492 -72.24.156.0/22 11492 -72.24.160.0/20 11492 -72.24.176.0/21 11492 -72.24.184.0/22 11492 -72.24.188.0/23 11492 -72.24.191.0/24 11492 -72.24.192.0/22 11492 -72.24.196.0/23 11492 -72.24.198.0/24 11492 -72.24.200.0/21 11492 -72.24.208.0/20 11492 -72.24.224.0/22 11492 -72.24.229.0/24 11492 -72.24.230.0/23 11492 -72.24.232.0/21 11492 -72.24.240.0/20 11492 -72.25.0.0/18 7029 -72.25.128.0/18 7385 -72.25.232.0/21 14663 -72.25.240.0/21 14663 -72.26.0.0/19 6300 -72.26.32.0/19 17293 -72.26.64.0/21 209 -72.26.72.0/24 209 -72.26.73.0/24 22561 -72.26.74.0/23 22561 -72.26.76.0/22 22561 -72.26.80.0/20 22561 -72.26.96.0/19 7296 -72.26.128.0/18 17306 -72.26.192.0/19 29791 -72.26.224.0/20 32736 -72.26.240.0/20 30666 -72.27.0.0/19 30689 -72.27.32.0/20 30689 -72.27.48.0/22 30689 -72.27.52.0/24 30689 -72.27.54.0/23 30689 -72.27.56.0/21 30689 -72.27.64.0/18 30689 -72.27.128.0/24 30689 -72.27.129.0/24 10278 -72.27.130.0/23 30689 -72.27.132.0/22 30689 -72.27.136.0/21 30689 -72.27.144.0/20 30689 -72.27.160.0/19 30689 -72.27.192.0/19 30689 -72.27.224.0/22 27446 -72.27.228.0/23 395876 -72.27.230.0/23 27446 -72.27.232.0/22 27446 -72.27.236.0/23 62880 -72.27.238.0/24 62880 -72.27.239.0/24 395876 -72.27.240.0/21 27446 -72.27.248.0/22 27446 -72.27.252.0/24 53274 -72.27.253.0/24 27446 -72.27.254.0/23 27446 -72.28.0.0/18 14928 -72.28.64.0/22 6539 -72.28.68.0/23 6539 -72.28.70.0/23 603 -72.28.72.0/22 6539 -72.28.76.0/23 603 -72.28.78.0/23 6539 -72.28.80.0/23 603 -72.28.82.0/24 6539 -72.28.83.0/24 16866 -72.28.84.0/24 16866 -72.28.85.0/24 6539 -72.28.86.0/23 6539 -72.28.88.0/23 46184 -72.28.90.0/24 54296 -72.28.91.0/24 6539 -72.28.92.0/22 46959 -72.28.96.0/24 55085 -72.28.97.0/24 36086 -72.28.98.0/23 36086 -72.28.100.0/23 36086 -72.28.102.0/24 36086 -72.28.104.0/22 36086 -72.28.108.0/24 36086 -72.28.110.0/23 36086 -72.28.112.0/22 36086 -72.28.116.0/24 36086 -72.28.118.0/23 36086 -72.28.120.0/23 36086 -72.28.122.0/24 36086 -72.28.124.0/22 36086 -72.28.128.0/17 11776 -72.29.0.0/19 7393 -72.29.32.0/23 53959 -72.29.34.0/23 40020 -72.29.38.0/23 53959 -72.29.40.0/21 395107 -72.29.48.0/23 40020 -72.29.50.0/23 53959 -72.29.52.0/24 40020 -72.29.55.0/24 53959 -72.29.56.0/23 63107 -72.29.58.0/24 63107 -72.29.59.0/24 40020 -72.29.60.0/24 40020 -72.29.61.0/24 396185 -72.29.62.0/23 396185 -72.29.64.0/19 33182 -72.29.96.0/21 30496 -72.29.104.0/23 30496 -72.29.106.0/23 27582 -72.29.108.0/23 27582 -72.29.110.0/23 30496 -72.29.112.0/21 30496 -72.29.120.0/23 36024 -72.29.122.0/23 16695 -72.29.124.0/24 30496 -72.29.125.0/24 11274 -72.29.126.0/23 30496 -72.29.128.0/20 3300 -72.29.160.0/20 14589 -72.29.176.0/21 14589 -72.29.184.0/22 14589 -72.29.188.0/24 395500 -72.29.189.0/24 14589 -72.29.190.0/23 14589 -72.29.192.0/20 18990 -72.29.208.0/22 3257 -72.29.212.0/24 3257 -72.29.213.0/24 20077 -72.29.214.0/23 3257 -72.29.216.0/22 18990 -72.29.220.0/23 3257 -72.29.222.0/24 18990 -72.29.223.0/24 20077 -72.29.224.0/20 25983 -72.29.240.0/24 25983 -72.29.241.0/24 32738 -72.29.242.0/23 25983 -72.29.244.0/22 25983 -72.29.248.0/21 25983 -72.30.0.0/18 26101 -72.30.208.0/22 26101 -72.30.220.0/22 10310 -72.31.0.0/18 33363 -72.31.64.0/20 33363 -72.31.80.0/23 16787 -72.31.82.0/23 33363 -72.31.84.0/22 33363 -72.31.88.0/21 33363 -72.31.96.0/20 33363 -72.31.112.0/21 33363 -72.31.120.0/23 16787 -72.31.122.0/23 33363 -72.31.124.0/22 33363 -72.31.128.0/20 33363 -72.31.146.0/23 33363 -72.31.148.0/23 33363 -72.31.160.0/20 33363 -72.31.176.0/21 33363 -72.31.184.0/24 16787 -72.31.185.0/24 33363 -72.31.186.0/23 33363 -72.31.188.0/22 33363 -72.31.192.0/19 33363 -72.31.224.0/24 33363 -72.31.227.0/24 33363 -72.31.228.0/23 33363 -72.31.231.0/24 33363 -72.31.232.0/22 33363 -72.31.238.0/23 33363 -72.31.240.0/24 33363 -72.31.243.0/24 33363 -72.31.244.0/22 33363 -72.31.248.0/21 33363 -72.32.0.0/16 33070 -72.33.0.0/16 59 -72.34.0.0/20 11062 -72.34.16.0/20 16743 -72.34.32.0/19 33494 -72.34.64.0/19 35985 -72.34.96.0/19 30041 -72.34.128.0/24 10725 -72.34.132.0/23 10725 -72.34.160.0/20 14919 -72.34.176.0/20 13649 -72.34.192.0/21 30082 -72.34.200.0/23 30082 -72.34.202.0/24 30082 -72.34.204.0/22 30082 -72.34.208.0/21 30082 -72.34.216.0/22 30082 -72.34.220.0/23 30082 -72.34.223.0/24 30082 -72.34.224.0/19 27630 -72.35.0.0/21 3561 -72.35.8.0/21 16941 -72.35.16.0/20 3561 -72.35.32.0/20 30517 -72.35.48.0/21 30517 -72.35.56.0/23 30517 -72.35.58.0/23 63083 -72.35.60.0/22 30517 -72.35.64.0/23 19271 -72.35.66.0/24 19271 -72.35.67.0/24 394967 -72.35.68.0/22 19271 -72.35.72.0/21 19271 -72.35.80.0/20 19271 -72.35.96.0/19 11090 -72.35.128.0/19 4181 -72.35.160.0/19 395582 -72.35.192.0/20 12009 -72.35.208.0/20 40581 -72.35.224.0/20 26724 -72.35.240.0/24 53889 -72.35.241.0/24 6130 -72.35.242.0/23 53889 -72.35.244.0/22 53889 -72.35.248.0/22 133847 -72.35.252.0/23 4515 -72.35.254.0/23 31955 -72.36.0.0/22 30110 -72.36.4.0/24 14487 -72.36.5.0/24 30110 -72.36.6.0/23 30110 -72.36.8.0/21 30110 -72.36.16.0/20 30110 -72.36.32.0/19 30110 -72.36.64.0/19 38 -72.36.96.0/20 38 -72.36.112.0/21 38 -72.36.120.0/21 40387 -72.36.224.0/24 22576 -72.36.225.0/24 14492 -72.36.226.0/23 22576 -72.36.228.0/22 22576 -72.36.232.0/21 22576 -72.36.240.0/22 16805 -72.36.244.0/23 16805 -72.36.246.0/24 16805 -72.36.247.0/24 33070 -72.36.248.0/21 16805 -72.37.0.0/17 10405 -72.37.128.0/23 23316 -72.37.130.0/23 3257 -72.37.132.0/23 3257 -72.37.134.0/23 23316 -72.37.136.0/24 19257 -72.37.137.0/24 3257 -72.37.138.0/23 3257 -72.37.140.0/24 3257 -72.37.141.0/24 23316 -72.37.142.0/24 23316 -72.37.143.0/24 63058 -72.37.144.0/21 3257 -72.37.152.0/24 17139 -72.37.153.0/24 3257 -72.37.154.0/23 3257 -72.37.156.0/23 3257 -72.37.158.0/24 3257 -72.37.159.0/24 19257 -72.37.160.0/24 3257 -72.37.161.0/24 26588 -72.37.162.0/23 3257 -72.37.164.0/22 3257 -72.37.168.0/21 3257 -72.37.176.0/22 3257 -72.37.180.0/22 23316 -72.37.184.0/21 3257 -72.37.192.0/21 3257 -72.37.200.0/24 3257 -72.37.201.0/24 11403 -72.37.202.0/23 3257 -72.37.204.0/22 3257 -72.37.208.0/23 3257 -72.37.210.0/24 19854 -72.37.211.0/24 3257 -72.37.212.0/22 3257 -72.37.216.0/23 20093 -72.37.218.0/23 3257 -72.37.220.0/22 3257 -72.37.224.0/21 15003 -72.37.232.0/22 3257 -72.37.236.0/24 3257 -72.37.237.0/24 396190 -72.37.238.0/23 3257 -72.37.240.0/23 3257 -72.37.242.0/23 15003 -72.37.244.0/22 3257 -72.37.248.0/21 3257 -72.38.0.0/15 7992 -72.40.128.0/19 33363 -72.41.0.0/16 46606 -72.42.0.0/23 701 -72.42.2.0/23 5650 -72.42.4.0/24 5650 -72.42.5.0/24 701 -72.42.6.0/24 701 -72.42.7.0/24 5650 -72.42.8.0/23 5650 -72.42.10.0/24 5650 -72.42.11.0/24 701 -72.42.12.0/22 701 -72.42.16.0/20 701 -72.42.32.0/19 701 -72.42.64.0/19 39939 -72.42.96.0/20 39939 -72.42.112.0/20 187 -72.42.128.0/18 8047 -72.42.192.0/19 46231 -72.42.224.0/20 395425 -72.42.240.0/21 62642 -72.42.248.0/24 6461 -72.42.249.0/24 14289 -72.42.250.0/24 54385 -72.42.251.0/24 395869 -72.42.253.0/24 398134 -72.42.254.0/24 398066 -72.43.0.0/18 11351 -72.43.64.0/23 11351 -72.43.66.0/24 11351 -72.43.67.0/24 23525 -72.43.68.0/22 11351 -72.43.72.0/21 11351 -72.43.80.0/22 11351 -72.43.84.0/24 11351 -72.43.85.0/24 19389 -72.43.86.0/23 11351 -72.43.88.0/21 11351 -72.43.96.0/20 12271 -72.43.112.0/24 22791 -72.43.113.0/24 12271 -72.43.114.0/23 12271 -72.43.116.0/22 12271 -72.43.120.0/22 12271 -72.43.124.0/24 36100 -72.43.125.0/24 12271 -72.43.126.0/23 12271 -72.43.128.0/18 12271 -72.43.192.0/21 11351 -72.43.200.0/22 11351 -72.43.204.0/24 19328 -72.43.205.0/24 11351 -72.43.206.0/24 11351 -72.43.207.0/24 12220 -72.43.208.0/21 11351 -72.43.216.0/23 11351 -72.43.218.0/24 11351 -72.43.219.0/24 33759 -72.43.220.0/22 11351 -72.43.224.0/22 11351 -72.43.228.0/23 11351 -72.43.230.0/24 22417 -72.43.231.0/24 11351 -72.43.232.0/21 11351 -72.43.240.0/20 11351 -72.44.0.0/20 10796 -72.44.16.0/22 266165 -72.44.20.0/22 266166 -72.44.24.0/22 266173 -72.44.28.0/22 266184 -72.44.32.0/19 14618 -72.44.64.0/20 35916 -72.44.80.0/22 36444 -72.44.84.0/24 36444 -72.44.88.0/21 36444 -72.44.96.0/19 10423 -72.44.128.0/18 7029 -72.44.192.0/18 12025 -72.45.0.0/19 11776 -72.45.32.0/20 11776 -72.45.48.0/23 11776 -72.45.50.0/23 32939 -72.45.52.0/22 11776 -72.45.56.0/21 11776 -72.45.64.0/22 22995 -72.45.70.0/24 22995 -72.45.80.0/20 22995 -72.45.111.0/24 22995 -72.45.114.0/23 22995 -72.45.128.0/18 11351 -72.45.192.0/22 11351 -72.45.196.0/24 11351 -72.45.197.0/24 6645 -72.45.198.0/23 11351 -72.45.200.0/21 11351 -72.45.208.0/21 11351 -72.45.216.0/23 11351 -72.45.218.0/24 11351 -72.45.219.0/24 17388 -72.45.220.0/22 11351 -72.45.224.0/19 11351 -72.46.0.0/20 22801 -72.46.16.0/21 62833 -72.46.24.0/24 40034 -72.46.28.0/22 209 -72.46.32.0/20 398143 -72.46.48.0/20 15108 -72.46.64.0/22 22801 -72.46.72.0/22 4922 -72.46.76.0/22 393648 -72.46.80.0/22 55254 -72.46.84.0/22 395254 -72.46.88.0/22 395479 -72.46.92.0/22 393278 -72.46.96.0/22 394437 -72.46.100.0/22 55232 -72.46.104.0/24 33259 -72.46.107.0/24 7839 -72.46.108.0/23 395683 -72.46.116.0/22 22801 -72.46.120.0/21 22801 -72.46.128.0/21 36114 -72.46.136.0/22 36114 -72.46.144.0/21 393442 -72.46.152.0/22 36114 -72.46.156.0/24 46931 -72.46.157.0/24 21559 -72.46.160.0/21 19406 -72.46.168.0/22 19406 -72.46.172.0/22 32622 -72.46.176.0/22 12042 -72.46.180.0/23 53347 -72.46.182.0/24 53347 -72.46.184.0/21 53347 -72.46.192.0/19 12177 -72.46.224.0/22 23148 -72.46.228.0/23 54914 -72.46.230.0/23 27992 -72.46.232.0/21 11303 -72.46.240.0/20 23148 -72.47.0.0/22 19108 -72.47.4.0/23 19108 -72.47.6.0/24 19108 -72.47.7.0/24 21615 -72.47.8.0/21 19108 -72.47.16.0/20 19108 -72.47.32.0/22 19108 -72.47.36.0/24 19108 -72.47.37.0/24 21615 -72.47.38.0/23 19108 -72.47.40.0/21 19108 -72.47.48.0/23 19108 -72.47.50.0/24 21615 -72.47.51.0/24 19108 -72.47.52.0/22 19108 -72.47.56.0/21 19108 -72.47.64.0/19 19108 -72.47.96.0/20 19108 -72.47.112.0/22 19108 -72.47.116.0/23 19108 -72.47.118.0/23 21615 -72.47.120.0/21 19108 -72.47.128.0/21 19108 -72.47.136.0/23 19108 -72.47.138.0/24 21615 -72.47.139.0/24 19108 -72.47.140.0/22 19108 -72.47.144.0/24 19108 -72.47.145.0/24 7018 -72.47.146.0/23 19108 -72.47.148.0/22 19108 -72.47.152.0/21 19108 -72.47.160.0/21 19108 -72.47.168.0/24 19108 -72.47.169.0/24 21615 -72.47.170.0/23 19108 -72.47.172.0/22 19108 -72.47.176.0/21 19108 -72.47.184.0/22 19108 -72.47.188.0/23 19108 -72.47.190.0/24 21615 -72.47.191.0/24 19108 -72.47.192.0/18 31815 -72.48.0.0/18 7459 -72.48.64.0/19 7459 -72.48.96.0/20 7459 -72.48.112.0/21 7459 -72.48.120.0/22 7459 -72.48.124.0/23 64281 -72.48.126.0/24 14997 -72.48.127.0/24 7459 -72.48.128.0/19 7459 -72.48.160.0/20 7459 -72.48.176.0/24 396493 -72.48.177.0/24 7459 -72.48.178.0/23 7459 -72.48.180.0/22 7459 -72.48.184.0/21 7459 -72.48.192.0/19 7459 -72.48.224.0/21 7459 -72.48.232.0/22 7459 -72.48.236.0/24 54199 -72.48.237.0/24 4576 -72.48.238.0/23 7459 -72.48.240.0/20 7459 -72.49.0.0/16 6181 -72.50.0.0/17 10396 -72.50.128.0/18 12118 -72.50.192.0/19 10242 -72.50.224.0/22 30536 -72.50.228.0/24 393939 -72.50.229.0/24 14230 -72.50.230.0/23 14230 -72.50.232.0/23 14230 -72.50.234.0/23 30536 -72.50.236.0/23 30536 -72.50.238.0/23 14230 -72.50.240.0/24 393238 -72.50.241.0/24 14230 -72.50.242.0/23 14230 -72.50.244.0/22 14230 -72.50.248.0/21 14230 -72.51.0.0/21 13768 -72.51.8.0/23 13768 -72.51.10.0/24 54643 -72.51.11.0/24 13768 -72.51.12.0/22 13768 -72.51.16.0/22 13768 -72.51.24.0/22 13768 -72.51.28.0/24 19202 -72.51.29.0/24 13768 -72.51.30.0/24 13768 -72.51.31.0/24 13895 -72.51.32.0/20 13768 -72.51.48.0/22 13768 -72.51.58.0/24 23498 -72.51.59.0/24 13768 -72.51.60.0/24 13768 -72.51.63.0/24 23498 -72.51.64.0/23 14813 -72.51.66.0/24 14813 -72.51.67.0/24 11139 -72.51.68.0/23 11139 -72.51.70.0/23 46650 -72.51.72.0/24 46650 -72.51.75.0/24 8014 -72.51.76.0/22 46408 -72.51.80.0/24 14813 -72.51.81.0/24 46650 -72.51.82.0/23 46650 -72.51.84.0/23 46650 -72.51.86.0/24 46650 -72.51.87.0/24 46408 -72.51.88.0/23 46408 -72.51.91.0/24 14813 -72.51.92.0/23 14813 -72.51.94.0/24 14813 -72.51.96.0/22 14813 -72.51.100.0/23 14813 -72.51.103.0/24 14813 -72.51.104.0/21 14813 -72.51.112.0/22 14813 -72.51.116.0/24 11139 -72.51.122.0/23 46408 -72.51.124.0/24 46650 -72.51.125.0/24 11139 -72.51.126.0/23 11139 -72.51.128.0/22 18812 -72.51.132.0/23 10796 -72.51.134.0/23 18812 -72.51.140.0/22 10796 -72.51.152.0/21 10796 -72.51.160.0/19 10796 -72.51.192.0/19 10796 -72.51.224.0/21 11492 -72.51.236.0/22 10796 -72.51.240.0/22 11492 -72.51.244.0/23 11492 -72.51.248.0/23 11492 -72.51.250.0/23 10796 -72.51.252.0/23 11492 -72.52.0.0/24 32787 -72.52.2.0/24 32787 -72.52.4.0/22 32787 -72.52.8.0/21 32787 -72.52.16.0/20 32787 -72.52.32.0/20 32787 -72.52.48.0/21 32787 -72.52.56.0/22 32787 -72.52.60.0/23 32787 -72.52.62.0/24 14618 -72.52.63.0/24 16509 -72.52.64.0/21 6939 -72.52.72.0/22 6939 -72.52.76.0/24 18779 -72.52.77.0/24 6939 -72.52.78.0/23 6939 -72.52.80.0/22 6939 -72.52.84.0/24 6939 -72.52.85.0/24 63450 -72.52.86.0/23 6939 -72.52.88.0/22 6939 -72.52.92.0/23 6939 -72.52.94.0/24 6939 -72.52.95.0/24 54288 -72.52.96.0/22 6939 -72.52.100.0/24 54288 -72.52.101.0/24 6939 -72.52.102.0/23 6939 -72.52.104.0/23 6939 -72.52.106.0/24 6939 -72.52.107.0/24 394996 -72.52.108.0/23 6939 -72.52.110.0/24 6939 -72.52.111.0/24 394996 -72.52.112.0/21 6939 -72.52.120.0/23 6939 -72.52.122.0/23 36103 -72.52.124.0/22 6939 -72.52.128.0/17 32244 -72.53.0.0/17 11814 -72.53.128.0/19 11814 -72.53.160.0/21 20385 -72.53.168.0/22 20385 -72.53.172.0/24 20385 -72.53.173.0/24 32222 -72.53.174.0/23 20385 -72.53.176.0/21 30350 -72.53.184.0/22 30350 -72.53.188.0/24 30350 -72.53.189.0/24 398072 -72.53.190.0/23 30350 -72.53.192.0/18 395965 -72.54.0.0/16 17184 -72.55.0.0/21 7922 -72.55.8.0/21 33651 -72.55.16.0/20 7922 -72.55.32.0/19 7922 -72.55.64.0/19 7922 -72.55.96.0/20 7922 -72.55.112.0/20 22258 -72.55.128.0/18 32613 -72.55.192.0/19 10835 -72.55.224.0/22 21547 -72.55.228.0/23 21547 -72.55.230.0/23 46188 -72.55.232.0/24 21547 -72.55.233.0/24 46188 -72.55.234.0/23 46188 -72.55.236.0/22 46188 -72.55.240.0/22 21547 -72.55.244.0/23 46188 -72.55.246.0/24 13536 -72.55.247.0/24 21547 -72.55.248.0/22 21547 -72.55.252.0/24 21547 -72.55.253.0/24 40378 -72.55.254.0/23 21547 -72.56.0.0/13 10507 -72.64.0.0/22 13977 -72.64.4.0/22 13672 -72.64.8.0/23 13672 -72.64.10.0/23 13977 -72.64.12.0/22 13977 -72.64.32.0/19 701 -72.64.64.0/18 5650 -72.64.128.0/22 5650 -72.64.132.0/23 5650 -72.64.136.0/21 5650 -72.64.144.0/22 5650 -72.64.148.0/23 5650 -72.64.152.0/22 5650 -72.64.160.0/23 5650 -72.64.170.0/23 5650 -72.64.184.0/23 5650 -72.64.188.0/23 5650 -72.64.194.0/23 5650 -72.64.198.0/23 5650 -72.64.200.0/23 5650 -72.64.208.0/22 5650 -72.64.218.0/23 5650 -72.64.220.0/22 5650 -72.64.230.0/23 5650 -72.64.242.0/23 5650 -72.64.244.0/22 5650 -72.64.248.0/23 5650 -72.64.254.0/23 5650 -72.65.0.0/18 701 -72.65.96.0/19 13977 -72.65.160.0/19 701 -72.65.192.0/18 701 -72.66.0.0/17 701 -72.66.184.0/21 701 -72.66.192.0/19 701 -72.67.0.0/16 5650 -72.68.0.0/15 701 -72.70.0.0/16 701 -72.71.0.0/18 5650 -72.71.128.0/18 701 -72.71.192.0/23 13672 -72.71.194.0/23 13977 -72.71.196.0/24 13977 -72.71.197.0/24 13672 -72.71.198.0/23 13672 -72.71.200.0/24 13672 -72.71.201.0/24 13977 -72.71.202.0/24 13672 -72.71.203.0/24 13977 -72.71.204.0/22 13672 -72.71.208.0/21 13977 -72.71.216.0/22 13977 -72.71.220.0/24 13977 -72.71.221.0/24 13672 -72.71.222.0/23 13977 -72.71.224.0/24 13977 -72.71.225.0/24 13672 -72.71.226.0/23 13977 -72.71.228.0/22 13977 -72.71.232.0/21 13977 -72.71.240.0/22 13672 -72.71.244.0/24 13672 -72.71.245.0/24 13977 -72.71.246.0/23 13672 -72.71.248.0/24 13672 -72.71.249.0/24 13977 -72.71.250.0/23 13672 -72.71.252.0/22 13672 -72.72.0.0/16 701 -72.73.16.0/20 701 -72.73.32.0/19 701 -72.73.64.0/18 13977 -72.73.192.0/18 701 -72.74.0.0/16 701 -72.75.128.0/19 701 -72.75.192.0/18 701 -72.76.0.0/16 701 -72.77.0.0/17 701 -72.77.130.0/23 5650 -72.77.132.0/23 5650 -72.77.136.0/22 5650 -72.77.140.0/23 5650 -72.77.144.0/22 5650 -72.77.160.0/22 5650 -72.77.168.0/23 5650 -72.77.172.0/22 5650 -72.77.182.0/23 5650 -72.77.190.0/23 5650 -72.77.200.0/22 5650 -72.77.204.0/23 5650 -72.77.208.0/22 5650 -72.77.216.0/23 5650 -72.77.238.0/23 5650 -72.77.242.0/23 5650 -72.77.244.0/22 5650 -72.78.0.0/15 701 -72.80.0.0/16 701 -72.81.128.0/17 701 -72.82.0.0/18 701 -72.82.128.0/17 701 -72.83.0.0/16 701 -72.84.64.0/18 701 -72.84.128.0/17 701 -72.85.0.0/16 701 -72.86.0.0/20 701 -72.86.32.0/19 701 -72.86.128.0/17 701 -72.87.48.0/20 13977 -72.87.64.0/18 701 -72.87.138.0/23 5650 -72.87.144.0/22 5650 -72.87.148.0/23 5650 -72.87.158.0/23 5650 -72.87.164.0/23 5650 -72.87.194.0/23 5650 -72.87.200.0/22 5650 -72.87.210.0/23 5650 -72.87.212.0/23 5650 -72.87.236.0/22 5650 -72.87.240.0/23 5650 -72.87.244.0/22 5650 -72.87.248.0/22 5650 -72.87.252.0/23 5650 -72.88.0.0/15 701 -72.90.0.0/18 701 -72.90.64.0/19 701 -72.90.128.0/17 701 -72.91.2.0/23 5650 -72.91.6.0/23 5650 -72.91.14.0/23 5650 -72.91.20.0/23 5650 -72.91.24.0/23 5650 -72.91.30.0/23 5650 -72.91.36.0/23 5650 -72.91.42.0/23 5650 -72.91.46.0/23 5650 -72.91.54.0/23 5650 -72.91.60.0/23 5650 -72.91.70.0/23 5650 -72.91.76.0/23 5650 -72.91.80.0/22 5650 -72.91.84.0/23 5650 -72.91.90.0/23 5650 -72.91.100.0/23 5650 -72.91.108.0/23 5650 -72.91.112.0/23 5650 -72.91.120.0/22 5650 -72.91.142.0/23 5650 -72.91.162.0/23 5650 -72.91.166.0/23 5650 -72.91.176.0/23 5650 -72.91.182.0/23 5650 -72.91.188.0/23 5650 -72.91.194.0/23 5650 -72.91.200.0/22 5650 -72.91.214.0/23 5650 -72.91.226.0/23 5650 -72.91.228.0/23 5650 -72.91.236.0/23 5650 -72.91.248.0/23 5650 -72.91.254.0/23 5650 -72.92.0.0/17 701 -72.92.128.0/19 13977 -72.92.208.0/20 701 -72.92.224.0/19 701 -72.93.0.0/16 701 -72.94.0.0/16 701 -72.95.0.0/18 701 -72.95.80.0/23 12175 -72.95.82.0/23 32645 -72.95.84.0/23 14671 -72.95.86.0/24 18712 -72.95.87.0/24 22647 -72.95.88.0/21 13977 -72.95.96.0/19 13977 -72.95.128.0/17 701 -72.96.0.0/17 22394 -72.96.128.0/18 22394 -72.96.192.0/19 22394 -72.96.224.0/20 22394 -72.96.240.0/22 22394 -72.96.244.0/22 6167 -72.96.248.0/21 22394 -72.97.0.0/18 22394 -72.97.64.0/19 22394 -72.97.96.0/20 22394 -72.97.112.0/22 22394 -72.97.116.0/22 6167 -72.97.120.0/21 22394 -72.97.128.0/20 22394 -72.97.144.0/21 22394 -72.97.152.0/22 22394 -72.97.156.0/22 6167 -72.97.160.0/20 6167 -72.97.176.0/21 6167 -72.97.184.0/21 22394 -72.97.192.0/18 6167 -72.98.0.0/15 6167 -72.100.0.0/15 6167 -72.102.0.0/16 6167 -72.103.0.0/17 6167 -72.103.128.0/18 6167 -72.103.192.0/19 22394 -72.103.224.0/20 6167 -72.103.240.0/20 22394 -72.104.0.0/15 22394 -72.106.0.0/17 22394 -72.106.128.0/18 22394 -72.106.192.0/21 6167 -72.106.200.0/21 22394 -72.106.208.0/20 22394 -72.106.224.0/19 22394 -72.107.0.0/18 22394 -72.107.64.0/22 6167 -72.107.68.0/22 22394 -72.107.72.0/21 22394 -72.107.80.0/20 22394 -72.107.96.0/19 22394 -72.107.128.0/19 22394 -72.107.160.0/21 22394 -72.107.168.0/21 6167 -72.107.176.0/23 6167 -72.107.178.0/23 22394 -72.107.180.0/22 22394 -72.107.184.0/21 22394 -72.107.192.0/18 22394 -72.108.0.0/19 22394 -72.108.32.0/20 22394 -72.108.48.0/24 22394 -72.108.49.0/24 6167 -72.108.50.0/23 22394 -72.108.52.0/22 6167 -72.108.56.0/21 22394 -72.108.64.0/22 6167 -72.108.68.0/22 22394 -72.108.72.0/23 22394 -72.108.74.0/23 6167 -72.108.76.0/24 22394 -72.108.77.0/24 6167 -72.108.78.0/23 6167 -72.108.80.0/22 6167 -72.108.84.0/22 22394 -72.108.88.0/21 22394 -72.108.96.0/22 6167 -72.108.100.0/22 22394 -72.108.104.0/22 22394 -72.108.108.0/22 6167 -72.108.112.0/21 6167 -72.108.120.0/21 22394 -72.108.128.0/20 22394 -72.108.144.0/21 22394 -72.108.152.0/22 6167 -72.108.156.0/23 22394 -72.108.158.0/23 6167 -72.108.160.0/23 22394 -72.108.162.0/23 6167 -72.108.164.0/22 6167 -72.108.168.0/21 6167 -72.108.176.0/20 6167 -72.108.192.0/18 6167 -72.109.0.0/16 6167 -72.110.0.0/15 6167 -72.112.0.0/12 6167 -72.128.0.0/18 11427 -72.128.64.0/18 10796 -72.128.128.0/20 11427 -72.128.144.0/23 11427 -72.128.146.0/24 46847 -72.128.147.0/24 11427 -72.128.148.0/22 11427 -72.128.152.0/21 11427 -72.128.160.0/19 10796 -72.128.192.0/18 10796 -72.129.0.0/19 20001 -72.129.32.0/21 20001 -72.129.40.0/23 20001 -72.129.42.0/23 10838 -72.129.44.0/22 20001 -72.129.48.0/20 20001 -72.129.64.0/18 20001 -72.129.128.0/19 10796 -72.129.160.0/19 11427 -72.129.192.0/24 8052 -72.129.193.0/24 7843 -72.129.194.0/23 7843 -72.129.196.0/22 7843 -72.129.200.0/21 7843 -72.129.208.0/21 8052 -72.129.216.0/22 7843 -72.129.220.0/23 7843 -72.129.222.0/23 8052 -72.129.224.0/19 11427 -72.130.0.0/16 20001 -72.131.0.0/17 10796 -72.131.128.0/18 10796 -72.131.192.0/19 11427 -72.131.224.0/20 11427 -72.131.240.0/20 10796 -72.132.0.0/16 20001 -72.133.0.0/19 11427 -72.133.32.0/19 10796 -72.133.64.0/18 11427 -72.133.128.0/18 10796 -72.133.192.0/19 10796 -72.133.224.0/20 11427 -72.133.240.0/20 10796 -72.134.0.0/16 20001 -72.135.0.0/19 11427 -72.135.32.0/20 11955 -72.135.48.0/20 10796 -72.135.80.0/20 10796 -72.135.96.0/20 11427 -72.135.112.0/20 10796 -72.135.128.0/17 10796 -72.136.0.0/18 812 -72.136.64.0/19 812 -72.136.96.0/20 20453 -72.136.112.0/21 20453 -72.136.120.0/22 20453 -72.136.124.0/22 812 -72.136.128.0/19 20453 -72.136.160.0/20 812 -72.136.176.0/21 20453 -72.136.184.0/22 20453 -72.136.188.0/22 812 -72.136.192.0/18 812 -72.137.0.0/16 812 -72.138.0.0/16 812 -72.139.0.0/17 812 -72.139.128.0/18 812 -72.139.192.0/20 20453 -72.139.208.0/20 812 -72.139.224.0/19 20453 -72.140.0.0/17 812 -72.140.128.0/18 812 -72.140.192.0/19 812 -72.140.224.0/21 812 -72.140.232.0/22 54412 -72.140.236.0/22 16583 -72.140.240.0/20 812 -72.141.0.0/16 812 -72.142.0.0/18 812 -72.142.64.0/22 812 -72.142.68.0/24 395479 -72.142.69.0/24 812 -72.142.70.0/23 812 -72.142.72.0/21 812 -72.142.80.0/20 812 -72.142.96.0/19 812 -72.142.128.0/20 812 -72.142.144.0/22 54412 -72.142.148.0/22 16583 -72.142.152.0/21 20453 -72.142.160.0/19 20453 -72.142.192.0/18 812 -72.143.0.0/17 812 -72.143.128.0/18 812 -72.143.192.0/19 20453 -72.143.224.0/20 20453 -72.143.240.0/21 812 -72.143.248.0/21 40383 -72.148.0.0/21 6389 -72.148.8.0/21 7018 -72.148.16.0/21 7018 -72.148.24.0/21 6389 -72.148.32.0/20 7018 -72.148.48.0/21 7018 -72.148.56.0/21 6389 -72.148.64.0/20 6389 -72.148.80.0/20 7018 -72.148.96.0/20 7018 -72.148.112.0/21 6389 -72.148.120.0/21 7018 -72.148.128.0/17 7018 -72.149.0.0/18 7018 -72.149.64.0/19 7018 -72.149.96.0/19 6389 -72.149.128.0/18 7018 -72.149.192.0/20 6389 -72.149.208.0/20 7018 -72.149.224.0/21 6389 -72.149.232.0/21 7018 -72.149.240.0/20 7018 -72.150.0.0/16 6389 -72.151.0.0/19 7018 -72.151.32.0/20 7018 -72.151.48.0/20 6389 -72.151.64.0/18 7018 -72.151.128.0/20 6389 -72.151.144.0/20 7018 -72.151.160.0/19 7018 -72.151.192.0/18 7018 -72.156.0.0/17 7018 -72.156.128.0/19 6389 -72.156.160.0/20 6389 -72.156.176.0/20 7018 -72.156.192.0/19 7018 -72.156.224.0/19 6389 -72.157.0.0/23 7018 -72.157.2.0/23 6389 -72.157.4.0/23 7018 -72.157.6.0/23 6389 -72.157.8.0/22 7018 -72.157.12.0/23 7018 -72.157.14.0/23 6389 -72.157.16.0/23 7018 -72.157.18.0/24 7018 -72.157.19.0/24 6389 -72.157.20.0/23 7018 -72.157.22.0/23 6389 -72.157.24.0/23 7018 -72.157.26.0/23 6389 -72.157.28.0/22 6389 -72.157.32.0/23 7018 -72.157.34.0/23 6389 -72.157.36.0/23 7018 -72.157.38.0/24 7018 -72.157.39.0/24 6389 -72.157.40.0/23 7018 -72.157.42.0/23 6389 -72.157.44.0/23 7018 -72.157.46.0/23 6389 -72.157.48.0/23 7018 -72.157.50.0/23 6389 -72.157.52.0/22 6389 -72.157.56.0/21 6389 -72.157.64.0/18 6389 -72.157.128.0/19 6389 -72.157.160.0/19 6197 -72.157.192.0/20 6389 -72.157.208.0/21 6389 -72.157.216.0/22 11712 -72.157.220.0/24 11712 -72.157.221.0/24 6389 -72.157.222.0/23 6389 -72.157.224.0/20 6389 -72.157.240.0/20 11712 -72.158.0.0/18 6389 -72.158.64.0/19 6389 -72.158.96.0/21 6389 -72.158.104.0/22 6389 -72.158.108.0/24 8103 -72.158.109.0/24 6912 -72.158.110.0/23 6389 -72.158.112.0/21 6389 -72.158.120.0/22 6389 -72.158.124.0/23 6389 -72.158.126.0/23 40844 -72.158.128.0/22 6389 -72.158.132.0/23 6389 -72.158.134.0/24 25641 -72.158.135.0/24 6389 -72.158.136.0/21 6389 -72.158.144.0/20 6389 -72.158.160.0/20 6389 -72.158.176.0/21 6389 -72.158.184.0/24 19957 -72.158.185.0/24 6389 -72.158.186.0/23 6389 -72.158.188.0/22 6389 -72.158.192.0/18 6389 -72.159.0.0/19 6389 -72.159.32.0/22 6389 -72.159.36.0/23 6389 -72.159.38.0/23 13342 -72.159.40.0/21 6389 -72.159.48.0/20 6389 -72.159.64.0/21 6389 -72.159.72.0/24 6389 -72.159.73.0/24 11501 -72.159.74.0/23 6389 -72.159.76.0/24 19956 -72.159.77.0/24 6389 -72.159.78.0/23 6389 -72.159.80.0/20 6389 -72.159.96.0/19 6389 -72.159.128.0/20 6389 -72.159.144.0/22 6389 -72.159.148.0/24 6389 -72.159.149.0/24 2939 -72.159.150.0/23 6389 -72.159.152.0/21 6389 -72.159.160.0/19 6389 -72.159.192.0/22 6389 -72.159.196.0/23 6389 -72.159.198.0/24 2386 -72.159.199.0/24 6389 -72.159.200.0/24 2386 -72.159.201.0/24 6389 -72.159.202.0/23 6389 -72.159.204.0/22 6389 -72.159.208.0/20 6389 -72.159.224.0/19 6389 -72.160.0.0/18 22561 -72.160.64.0/22 22561 -72.160.68.0/22 209 -72.160.72.0/21 209 -72.160.80.0/20 209 -72.160.96.0/20 209 -72.160.112.0/21 22561 -72.160.120.0/22 209 -72.160.124.0/22 22561 -72.160.128.0/19 22561 -72.160.160.0/20 22561 -72.160.176.0/21 22561 -72.160.184.0/21 209 -72.160.192.0/22 22561 -72.160.196.0/22 209 -72.160.200.0/21 22561 -72.160.208.0/20 22561 -72.160.224.0/20 209 -72.160.240.0/20 22561 -72.161.0.0/19 22561 -72.161.32.0/20 22561 -72.161.48.0/22 209 -72.161.52.0/22 22561 -72.161.56.0/21 22561 -72.161.64.0/18 22561 -72.161.128.0/22 22561 -72.161.132.0/22 209 -72.161.136.0/22 22561 -72.161.140.0/22 209 -72.161.144.0/20 209 -72.161.160.0/21 22561 -72.161.168.0/22 209 -72.161.172.0/22 22561 -72.161.176.0/22 209 -72.161.180.0/22 22561 -72.161.184.0/21 22561 -72.161.192.0/19 22561 -72.161.224.0/20 22561 -72.161.240.0/21 22561 -72.161.248.0/22 22561 -72.161.252.0/22 209 -72.162.0.0/22 40111 -72.162.12.0/23 7725 -72.162.16.0/23 54665 -72.162.20.0/23 40111 -72.162.28.0/23 40111 -72.162.32.0/24 40111 -72.162.36.0/24 7018 -72.162.37.0/24 40111 -72.162.39.0/24 12083 -72.162.48.0/23 7725 -72.162.68.0/23 40111 -72.162.92.0/23 20115 -72.162.100.0/23 12083 -72.162.108.0/23 40111 -72.162.122.0/24 7029 -72.162.132.0/24 21830 -72.162.136.0/23 40111 -72.162.140.0/23 31877 -72.162.160.0/23 31877 -72.162.168.0/22 16700 -72.162.172.0/23 40111 -72.162.180.0/23 16700 -72.162.196.0/23 21713 -72.162.200.0/23 11240 -72.162.204.0/23 40111 -72.162.208.0/23 11240 -72.162.228.0/22 40111 -72.162.232.0/23 30036 -72.162.240.0/23 3479 -72.163.0.0/16 109 -72.164.0.0/19 209 -72.164.32.0/22 209 -72.164.36.0/23 209 -72.164.38.0/24 11641 -72.164.39.0/24 209 -72.164.40.0/21 209 -72.164.48.0/20 209 -72.164.64.0/18 209 -72.164.128.0/22 209 -72.164.132.0/23 209 -72.164.134.0/24 14487 -72.164.135.0/24 209 -72.164.136.0/21 209 -72.164.144.0/20 209 -72.164.160.0/20 209 -72.164.176.0/22 209 -72.164.180.0/24 19765 -72.164.181.0/24 209 -72.164.182.0/23 209 -72.164.184.0/21 209 -72.164.192.0/20 209 -72.164.208.0/24 209 -72.164.209.0/24 53724 -72.164.210.0/23 209 -72.164.212.0/22 209 -72.164.216.0/21 209 -72.164.224.0/21 209 -72.164.232.0/24 29995 -72.164.233.0/24 209 -72.164.234.0/23 209 -72.164.236.0/22 209 -72.164.240.0/20 209 -72.165.0.0/20 209 -72.165.16.0/21 209 -72.165.24.0/22 209 -72.165.28.0/23 10835 -72.165.30.0/23 209 -72.165.32.0/19 209 -72.165.64.0/22 209 -72.165.68.0/24 209 -72.165.69.0/24 54538 -72.165.70.0/23 209 -72.165.72.0/21 209 -72.165.80.0/20 209 -72.165.96.0/19 209 -72.165.128.0/19 209 -72.165.160.0/23 209 -72.165.162.0/24 209 -72.165.163.0/24 395391 -72.165.164.0/22 209 -72.165.168.0/21 209 -72.165.176.0/20 209 -72.165.192.0/21 209 -72.165.200.0/23 209 -72.165.202.0/24 395391 -72.165.203.0/24 209 -72.165.204.0/22 209 -72.165.208.0/20 209 -72.165.224.0/21 209 -72.165.232.0/22 209 -72.165.236.0/23 209 -72.165.238.0/24 22773 -72.165.239.0/24 20103 -72.165.240.0/20 209 -72.166.0.0/19 209 -72.166.32.0/22 209 -72.166.36.0/24 39953 -72.166.37.0/24 209 -72.166.38.0/23 209 -72.166.40.0/23 209 -72.166.42.0/24 209 -72.166.43.0/24 27015 -72.166.44.0/24 26761 -72.166.45.0/24 209 -72.166.46.0/23 209 -72.166.48.0/20 209 -72.166.64.0/21 209 -72.166.72.0/24 396012 -72.166.73.0/24 209 -72.166.74.0/23 209 -72.166.76.0/22 209 -72.166.80.0/23 209 -72.166.82.0/24 11275 -72.166.83.0/24 209 -72.166.84.0/22 209 -72.166.88.0/21 209 -72.166.96.0/20 209 -72.166.112.0/23 209 -72.166.114.0/24 209 -72.166.115.0/24 18980 -72.166.116.0/22 209 -72.166.120.0/22 209 -72.166.124.0/23 209 -72.166.126.0/24 209 -72.166.127.0/24 14478 -72.166.128.0/23 209 -72.166.130.0/24 26437 -72.166.131.0/24 209 -72.166.132.0/22 209 -72.166.136.0/21 209 -72.166.144.0/21 209 -72.166.152.0/23 1818 -72.166.154.0/23 209 -72.166.156.0/22 209 -72.166.160.0/20 209 -72.166.176.0/22 209 -72.166.180.0/24 209 -72.166.181.0/24 26885 -72.166.182.0/23 53316 -72.166.184.0/23 209 -72.166.186.0/24 209 -72.166.187.0/24 26885 -72.166.188.0/24 209 -72.166.189.0/24 54891 -72.166.190.0/23 209 -72.166.192.0/20 54536 -72.166.208.0/20 209 -72.166.224.0/20 393657 -72.166.240.0/20 209 -72.167.0.0/16 26496 -72.168.0.0/19 6621 -72.168.80.0/20 6621 -72.168.96.0/19 6621 -72.168.128.0/18 6621 -72.168.224.0/19 6621 -72.169.32.0/19 6621 -72.169.64.0/22 6621 -72.169.68.0/23 6621 -72.169.70.0/24 6621 -72.169.71.0/24 63062 -72.169.72.0/24 6621 -72.169.73.0/24 63062 -72.169.74.0/23 6621 -72.169.76.0/22 6621 -72.169.80.0/20 6621 -72.169.96.0/19 6621 -72.169.192.0/20 6621 -72.169.208.0/22 6621 -72.169.212.0/23 6621 -72.169.214.0/24 6621 -72.169.215.0/24 63062 -72.169.216.0/21 6621 -72.170.0.0/19 6621 -72.170.176.0/20 6621 -72.170.208.0/22 6621 -72.170.212.0/23 6621 -72.170.214.0/24 6621 -72.170.224.0/19 6621 -72.171.0.0/22 6621 -72.171.4.0/23 6621 -72.171.6.0/24 63062 -72.171.7.0/24 6621 -72.171.8.0/23 6621 -72.171.10.0/24 6621 -72.171.11.0/24 63062 -72.171.12.0/23 6621 -72.171.14.0/23 63062 -72.171.16.0/20 6621 -72.171.112.0/20 6621 -72.171.192.0/18 6621 -72.172.0.0/18 7029 -72.172.64.0/20 558 -72.172.81.0/24 18672 -72.172.82.0/23 18672 -72.172.84.0/24 18672 -72.172.86.0/23 18672 -72.172.88.0/23 18672 -72.172.94.0/23 558 -72.172.96.0/19 36817 -72.172.128.0/20 17054 -72.172.144.0/22 32530 -72.172.148.0/24 32530 -72.172.160.0/20 15102 -72.172.176.0/20 7151 -72.172.192.0/20 11976 -72.172.208.0/22 11976 -72.172.212.0/23 11976 -72.172.215.0/24 11976 -72.172.216.0/21 11976 -72.172.224.0/24 26914 -72.172.226.0/23 26914 -72.172.229.0/24 26914 -72.172.231.0/24 26914 -72.172.232.0/22 26914 -72.172.236.0/24 26914 -72.173.0.0/16 7155 -72.174.0.0/15 33588 -72.176.0.0/13 11427 -72.184.0.0/14 33363 -72.188.0.0/15 33363 -72.190.0.0/15 11427 -72.192.0.0/15 22773 -72.194.0.0/17 22773 -72.194.128.0/24 7954 -72.194.129.0/24 19697 -72.194.130.0/23 22773 -72.194.132.0/22 22773 -72.194.136.0/21 22773 -72.194.144.0/22 22773 -72.194.148.0/23 22773 -72.194.150.0/24 22773 -72.194.151.0/24 31803 -72.194.152.0/21 22773 -72.194.160.0/19 22773 -72.194.192.0/18 22773 -72.195.0.0/16 22773 -72.196.0.0/19 22773 -72.196.32.0/20 22773 -72.196.48.0/24 22773 -72.196.49.0/24 20417 -72.196.50.0/23 22773 -72.196.52.0/22 22773 -72.196.56.0/22 22773 -72.196.60.0/22 63182 -72.196.64.0/18 22773 -72.196.128.0/17 22773 -72.197.0.0/16 22773 -72.198.0.0/15 22773 -72.200.0.0/17 22773 -72.200.128.0/18 22773 -72.200.192.0/19 22773 -72.200.224.0/21 22773 -72.200.232.0/23 22773 -72.200.234.0/24 395883 -72.200.235.0/24 22773 -72.200.236.0/22 22773 -72.200.240.0/21 22773 -72.200.248.0/22 22773 -72.200.252.0/23 22773 -72.200.254.0/23 26008 -72.201.0.0/16 22773 -72.202.0.0/16 22773 -72.203.0.0/17 22773 -72.203.128.0/18 22773 -72.203.192.0/22 22773 -72.203.196.0/24 54318 -72.203.197.0/24 22773 -72.203.198.0/23 22773 -72.203.200.0/21 22773 -72.203.208.0/21 22773 -72.203.216.0/22 22773 -72.203.220.0/23 22773 -72.203.222.0/24 393991 -72.203.223.0/24 396911 -72.203.224.0/19 22773 -72.204.0.0/17 22773 -72.204.128.0/18 22773 -72.204.192.0/20 22773 -72.204.208.0/23 22773 -72.204.210.0/24 22773 -72.204.211.0/24 396389 -72.204.212.0/22 22773 -72.204.216.0/23 22773 -72.204.218.0/24 40658 -72.204.219.0/24 22773 -72.204.220.0/22 22773 -72.204.224.0/20 22773 -72.204.240.0/22 22773 -72.204.244.0/23 394468 -72.204.246.0/24 30229 -72.204.247.0/24 22773 -72.204.248.0/21 22773 -72.205.0.0/17 22773 -72.205.128.0/19 22773 -72.205.160.0/22 22773 -72.205.164.0/23 22773 -72.205.166.0/24 22773 -72.205.167.0/24 54573 -72.205.168.0/21 22773 -72.205.176.0/20 22773 -72.205.192.0/18 22773 -72.206.0.0/18 22773 -72.206.64.0/21 22773 -72.206.72.0/23 22773 -72.206.74.0/24 395941 -72.206.75.0/24 32122 -72.206.76.0/22 22773 -72.206.80.0/22 22773 -72.206.84.0/24 22773 -72.206.85.0/24 64019 -72.206.86.0/23 22773 -72.206.88.0/21 22773 -72.206.96.0/19 22773 -72.206.128.0/17 22773 -72.207.0.0/16 22773 -72.208.0.0/15 22773 -72.210.0.0/20 22773 -72.210.16.0/21 22773 -72.210.24.0/23 22773 -72.210.26.0/24 63340 -72.210.27.0/24 22773 -72.210.28.0/22 22773 -72.210.32.0/19 22773 -72.210.64.0/18 22773 -72.210.128.0/17 22773 -72.211.0.0/16 22773 -72.212.0.0/15 22773 -72.214.0.0/18 22773 -72.214.64.0/19 22773 -72.214.96.0/21 22898 -72.214.104.0/21 22773 -72.214.112.0/20 22773 -72.214.128.0/19 22773 -72.214.160.0/19 14878 -72.214.192.0/20 22773 -72.214.208.0/21 22773 -72.214.216.0/22 22773 -72.214.220.0/24 14590 -72.214.221.0/24 19571 -72.214.222.0/23 22773 -72.214.224.0/19 22773 -72.215.0.0/21 22773 -72.215.8.0/22 22773 -72.215.12.0/24 35986 -72.215.13.0/24 22773 -72.215.14.0/23 22773 -72.215.16.0/21 22773 -72.215.24.0/22 22773 -72.215.28.0/23 22773 -72.215.30.0/23 35986 -72.215.32.0/20 22773 -72.215.48.0/21 22773 -72.215.56.0/23 22773 -72.215.58.0/24 22773 -72.215.59.0/24 19995 -72.215.60.0/22 22773 -72.215.64.0/20 22773 -72.215.80.0/21 62957 -72.215.88.0/21 22773 -72.215.96.0/19 22773 -72.215.128.0/18 22773 -72.215.192.0/19 22773 -72.215.224.0/23 22773 -72.215.226.0/24 32830 -72.215.227.0/24 22773 -72.215.228.0/22 22773 -72.215.232.0/21 22773 -72.215.240.0/20 22773 -72.216.0.0/13 22773 -72.224.0.0/16 11351 -72.225.0.0/18 11351 -72.225.64.0/18 12271 -72.225.128.0/17 12271 -72.226.0.0/17 12271 -72.226.128.0/17 11351 -72.227.0.0/17 11351 -72.227.128.0/17 12271 -72.228.0.0/16 11351 -72.229.0.0/16 12271 -72.230.0.0/16 11351 -72.231.0.0/17 12271 -72.231.128.0/17 11351 -72.232.0.0/20 33070 -72.232.16.0/21 33070 -72.232.24.0/21 16805 -72.232.32.0/19 33070 -72.232.64.0/18 33070 -72.232.128.0/20 33070 -72.232.144.0/21 22576 -72.232.152.0/21 33070 -72.232.160.0/19 33070 -72.232.192.0/18 33070 -72.233.0.0/17 33070 -72.233.128.0/18 54032 -72.233.192.0/18 394391 -72.234.0.0/16 36149 -72.235.0.0/17 36149 -72.235.128.0/22 36149 -72.235.132.0/22 62712 -72.235.136.0/24 62712 -72.235.137.0/24 36149 -72.235.138.0/23 36149 -72.235.140.0/22 36149 -72.235.144.0/20 36149 -72.235.160.0/19 36149 -72.235.192.0/18 36149 -72.236.0.0/20 3356 -72.236.16.0/23 3356 -72.236.18.0/24 3356 -72.236.19.0/24 40152 -72.236.20.0/22 3356 -72.236.24.0/22 3356 -72.236.28.0/24 10858 -72.236.29.0/24 3356 -72.236.30.0/23 3356 -72.236.32.0/19 3356 -72.236.64.0/24 3356 -72.236.65.0/24 31885 -72.236.66.0/23 3356 -72.236.68.0/22 3356 -72.236.72.0/21 3356 -72.236.80.0/24 16412 -72.236.81.0/24 3356 -72.236.82.0/23 3356 -72.236.84.0/22 3356 -72.236.88.0/22 3356 -72.236.92.0/24 55204 -72.236.93.0/24 3356 -72.236.94.0/23 3356 -72.236.96.0/22 3356 -72.236.100.0/24 3356 -72.236.101.0/24 55204 -72.236.102.0/23 3356 -72.236.104.0/21 3356 -72.236.112.0/20 3356 -72.236.128.0/20 3356 -72.236.144.0/23 3356 -72.236.146.0/24 3356 -72.236.147.0/24 23209 -72.236.148.0/22 3356 -72.236.152.0/21 3356 -72.236.160.0/19 3356 -72.236.192.0/19 3356 -72.236.224.0/23 3356 -72.236.226.0/24 25873 -72.236.227.0/24 3356 -72.236.228.0/22 3356 -72.236.232.0/21 3356 -72.236.240.0/20 3356 -72.237.0.0/22 3356 -72.237.4.0/24 26808 -72.237.5.0/24 3356 -72.237.6.0/23 3356 -72.237.8.0/21 3356 -72.237.16.0/21 3356 -72.237.24.0/22 3356 -72.237.28.0/23 3356 -72.237.30.0/24 19674 -72.237.31.0/24 3356 -72.237.32.0/21 3356 -72.237.40.0/22 3356 -72.237.44.0/23 3356 -72.237.46.0/24 396482 -72.237.47.0/24 3356 -72.237.48.0/24 26372 -72.237.49.0/24 3356 -72.237.50.0/24 3356 -72.237.51.0/24 25750 -72.237.52.0/22 3356 -72.237.56.0/22 3356 -72.237.60.0/23 3356 -72.237.62.0/24 3356 -72.237.63.0/24 40205 -72.237.64.0/21 3356 -72.237.72.0/22 3356 -72.237.76.0/23 30354 -72.237.78.0/23 3356 -72.237.80.0/21 3356 -72.237.88.0/22 40047 -72.237.92.0/22 3356 -72.237.96.0/19 3356 -72.237.128.0/20 3356 -72.237.144.0/21 3356 -72.237.152.0/22 3356 -72.237.156.0/23 3356 -72.237.158.0/24 3356 -72.237.159.0/24 27548 -72.237.160.0/21 3356 -72.237.168.0/23 3356 -72.237.170.0/23 62841 -72.237.172.0/22 3356 -72.237.176.0/21 3356 -72.237.184.0/24 15085 -72.237.185.0/24 3356 -72.237.186.0/23 3356 -72.237.188.0/22 3356 -72.237.192.0/21 3356 -72.237.200.0/22 3356 -72.237.204.0/23 3356 -72.237.206.0/24 25930 -72.237.207.0/24 3356 -72.237.208.0/22 3356 -72.237.212.0/23 12220 -72.237.214.0/23 3356 -72.237.216.0/22 3356 -72.237.220.0/24 21969 -72.237.221.0/24 3356 -72.237.222.0/23 3356 -72.237.224.0/19 3356 -72.238.0.0/15 33363 -72.240.0.0/15 13490 -72.242.0.0/19 7029 -72.242.32.0/23 7029 -72.242.34.0/23 27338 -72.242.36.0/24 7029 -72.242.37.0/24 27338 -72.242.38.0/24 27338 -72.242.39.0/24 7029 -72.242.40.0/21 7029 -72.242.48.0/20 7029 -72.242.64.0/18 7029 -72.242.128.0/21 7029 -72.242.136.0/22 7029 -72.242.140.0/23 7029 -72.242.142.0/23 27338 -72.242.144.0/24 7029 -72.242.145.0/24 27338 -72.242.146.0/23 7029 -72.242.148.0/22 7029 -72.242.152.0/21 7029 -72.242.160.0/19 7029 -72.242.192.0/20 7029 -72.242.208.0/21 7029 -72.242.216.0/23 7029 -72.242.218.0/23 27338 -72.242.220.0/23 27338 -72.242.222.0/23 7029 -72.242.224.0/19 7029 -72.243.0.0/19 7029 -72.243.32.0/20 7029 -72.243.48.0/22 7029 -72.243.52.0/23 7029 -72.243.54.0/24 7029 -72.243.55.0/24 27338 -72.243.56.0/22 27338 -72.243.60.0/22 7029 -72.243.64.0/18 7029 -72.243.128.0/20 7029 -72.243.144.0/23 53271 -72.243.146.0/23 7029 -72.243.148.0/22 7029 -72.243.152.0/21 7029 -72.243.160.0/20 7029 -72.243.176.0/22 7029 -72.243.180.0/22 27338 -72.243.184.0/24 27338 -72.243.185.0/24 7029 -72.243.186.0/23 7029 -72.243.188.0/22 7029 -72.243.192.0/18 7029 -72.244.0.0/16 18566 -72.245.0.0/18 18566 -72.245.64.0/20 18566 -72.245.80.0/22 18566 -72.245.84.0/22 17184 -72.245.88.0/21 18566 -72.245.96.0/19 18566 -72.245.128.0/19 18566 -72.245.160.0/20 18566 -72.245.176.0/21 18566 -72.245.184.0/24 11696 -72.245.185.0/24 18566 -72.245.186.0/23 18566 -72.245.188.0/22 18566 -72.245.192.0/18 18566 -72.246.0.0/23 12222 -72.246.2.0/24 12222 -72.246.16.0/24 20940 -72.246.17.0/24 35994 -72.246.18.0/24 35994 -72.246.20.0/22 16625 -72.246.25.0/24 20940 -72.246.28.0/22 16625 -72.246.32.0/21 16625 -72.246.40.0/23 35994 -72.246.42.0/24 35994 -72.246.43.0/24 20940 -72.246.46.0/24 21342 -72.246.47.0/24 20940 -72.246.48.0/23 18678 -72.246.50.0/24 35994 -72.246.51.0/24 20940 -72.246.52.0/24 20940 -72.246.54.0/24 24319 -72.246.56.0/23 20940 -72.246.60.0/22 16625 -72.246.64.0/23 20940 -72.246.66.0/23 16625 -72.246.68.0/23 16625 -72.246.70.0/23 18717 -72.246.72.0/22 16625 -72.246.76.0/22 9829 -72.246.80.0/21 16625 -72.246.88.0/22 20940 -72.246.92.0/23 16625 -72.246.94.0/24 35204 -72.246.95.0/24 24319 -72.246.96.0/24 35994 -72.246.97.0/24 20940 -72.246.98.0/23 16625 -72.246.100.0/23 16625 -72.246.102.0/24 24319 -72.246.103.0/24 20940 -72.246.104.0/21 3257 -72.246.116.0/24 12222 -72.246.117.0/24 20940 -72.246.118.0/24 35994 -72.246.120.0/22 3292 -72.246.124.0/22 16625 -72.246.128.0/20 16625 -72.246.144.0/22 20940 -72.246.148.0/23 20940 -72.246.150.0/24 20940 -72.246.151.0/24 8551 -72.246.152.0/21 16625 -72.246.160.0/20 16625 -72.246.180.0/22 45820 -72.246.186.0/23 6762 -72.246.188.0/22 20940 -72.246.192.0/23 35994 -72.246.194.0/23 18717 -72.246.196.0/24 33659 -72.246.197.0/24 20940 -72.246.199.0/24 12222 -72.246.200.0/22 20940 -72.246.204.0/22 16625 -72.246.208.0/22 18678 -72.246.212.0/22 16625 -72.246.216.0/24 20940 -72.246.218.0/24 20940 -72.246.220.0/22 20940 -72.246.224.0/22 16625 -72.246.228.0/23 16625 -72.246.230.0/23 20940 -72.246.232.0/23 45820 -72.246.234.0/23 45629 -72.246.236.0/22 45629 -72.246.240.0/22 1299 -72.246.244.0/24 20940 -72.246.245.0/24 24319 -72.246.246.0/24 24319 -72.246.247.0/24 20940 -72.246.248.0/22 6762 -72.246.252.0/22 16625 -72.247.0.0/22 16625 -72.247.4.0/23 16625 -72.247.6.0/24 24319 -72.247.12.0/22 16625 -72.247.16.0/22 16625 -72.247.20.0/23 16625 -72.247.22.0/23 38040 -72.247.24.0/22 3257 -72.247.28.0/22 16625 -72.247.32.0/24 35993 -72.247.33.0/24 18680 -72.247.34.0/23 18680 -72.247.36.0/24 35994 -72.247.37.0/24 20940 -72.247.38.0/24 24319 -72.247.39.0/24 35994 -72.247.40.0/24 20940 -72.247.41.0/24 18680 -72.247.42.0/23 16625 -72.247.44.0/23 12222 -72.247.48.0/22 16625 -72.247.54.0/23 9498 -72.247.56.0/23 16625 -72.247.60.0/23 20940 -72.247.62.0/23 16625 -72.247.64.0/21 1299 -72.247.72.0/22 38040 -72.247.76.0/22 6453 -72.247.80.0/21 20940 -72.247.88.0/23 6453 -72.247.96.0/20 16625 -72.247.112.0/21 16625 -72.247.120.0/23 23454 -72.247.122.0/23 35994 -72.247.124.0/24 35994 -72.247.125.0/24 35204 -72.247.126.0/24 35994 -72.247.127.0/24 20940 -72.247.128.0/21 16625 -72.247.136.0/22 16625 -72.247.144.0/24 35994 -72.247.146.0/23 16625 -72.247.148.0/23 23454 -72.247.150.0/23 12222 -72.247.152.0/24 24319 -72.247.153.0/24 20940 -72.247.154.0/23 20940 -72.247.156.0/22 16625 -72.247.160.0/21 16625 -72.247.168.0/22 16625 -72.247.172.0/22 1299 -72.247.176.0/22 20940 -72.247.180.0/24 24319 -72.247.181.0/24 20940 -72.247.182.0/24 20940 -72.247.183.0/24 24319 -72.247.184.0/23 20940 -72.247.186.0/23 24319 -72.247.188.0/24 18717 -72.247.189.0/24 24319 -72.247.190.0/23 20940 -72.247.196.0/22 16625 -72.247.200.0/21 16625 -72.247.208.0/23 16625 -72.247.210.0/23 20940 -72.247.212.0/22 16625 -72.247.216.0/24 12222 -72.247.217.0/24 35204 -72.247.218.0/23 16625 -72.247.222.0/24 35994 -72.247.223.0/24 20940 -72.247.224.0/21 16625 -72.247.233.0/24 35994 -72.247.234.0/23 16625 -72.247.236.0/23 35994 -72.247.238.0/24 24319 -72.247.239.0/24 35994 -72.247.240.0/24 20940 -72.247.241.0/24 24319 -72.247.242.0/23 3257 -72.247.244.0/22 20940 -72.248.0.0/17 7029 -72.248.128.0/19 7029 -72.248.160.0/20 7029 -72.248.176.0/21 7029 -72.248.184.0/22 7029 -72.248.188.0/23 7029 -72.248.190.0/24 7029 -72.248.191.0/24 32833 -72.248.192.0/18 7029 -72.249.0.0/21 30496 -72.249.8.0/22 30496 -72.249.12.0/24 36024 -72.249.13.0/24 30496 -72.249.14.0/23 30496 -72.249.16.0/22 30496 -72.249.20.0/22 36024 -72.249.24.0/22 30496 -72.249.28.0/23 63410 -72.249.30.0/23 30496 -72.249.32.0/23 11383 -72.249.34.0/24 396085 -72.249.35.0/24 30496 -72.249.36.0/22 36024 -72.249.40.0/24 30496 -72.249.41.0/24 36024 -72.249.42.0/23 30496 -72.249.44.0/24 30496 -72.249.45.0/24 55045 -72.249.46.0/23 63410 -72.249.48.0/22 30496 -72.249.52.0/23 30496 -72.249.54.0/23 36024 -72.249.56.0/24 30496 -72.249.57.0/24 36024 -72.249.58.0/23 36024 -72.249.60.0/23 36024 -72.249.62.0/24 36024 -72.249.63.0/24 30496 -72.249.64.0/23 36024 -72.249.66.0/24 36024 -72.249.67.0/24 30496 -72.249.68.0/22 36024 -72.249.72.0/23 17378 -72.249.74.0/24 36024 -72.249.75.0/24 30496 -72.249.76.0/23 55045 -72.249.78.0/23 26094 -72.249.80.0/23 30496 -72.249.82.0/23 36024 -72.249.84.0/24 7181 -72.249.85.0/24 36024 -72.249.86.0/23 63410 -72.249.88.0/22 30496 -72.249.92.0/23 30496 -72.249.94.0/24 36352 -72.249.95.0/24 30496 -72.249.96.0/23 63410 -72.249.98.0/23 30496 -72.249.100.0/22 30496 -72.249.104.0/23 55045 -72.249.106.0/23 30496 -72.249.108.0/22 30496 -72.249.112.0/22 30496 -72.249.116.0/24 40824 -72.249.117.0/24 30496 -72.249.118.0/23 63410 -72.249.120.0/24 25674 -72.249.121.0/24 36024 -72.249.122.0/24 30496 -72.249.123.0/24 36024 -72.249.124.0/24 36352 -72.249.125.0/24 55045 -72.249.126.0/23 55045 -72.249.128.0/20 30496 -72.249.144.0/23 55045 -72.249.146.0/23 30496 -72.249.148.0/22 30496 -72.249.152.0/23 30496 -72.249.154.0/24 30496 -72.249.155.0/24 7181 -72.249.156.0/23 30496 -72.249.158.0/24 63410 -72.249.159.0/24 30496 -72.249.160.0/21 30496 -72.249.168.0/23 39988 -72.249.170.0/23 55045 -72.249.172.0/22 30496 -72.249.176.0/22 30496 -72.249.180.0/22 36024 -72.249.184.0/24 394094 -72.249.185.0/24 36024 -72.249.186.0/23 36024 -72.249.188.0/22 36024 -72.249.192.0/22 3257 -72.249.196.0/24 54092 -72.249.197.0/24 3257 -72.249.198.0/23 3257 -72.249.200.0/24 395309 -72.249.201.0/24 3257 -72.249.202.0/23 3257 -72.249.204.0/22 3257 -72.249.208.0/21 53764 -72.249.216.0/21 35985 -72.249.224.0/21 30688 -72.249.232.0/22 394568 -72.249.236.0/24 397279 -72.249.237.0/24 30688 -72.249.238.0/23 30688 -72.249.240.0/24 30688 -72.249.241.0/24 397279 -72.249.242.0/23 30688 -72.249.244.0/23 30688 -72.249.246.0/24 30688 -72.249.247.0/24 397279 -72.249.248.0/21 30688 -72.250.0.0/18 21928 -72.250.64.0/20 21928 -72.250.80.0/20 19271 -72.250.96.0/20 21928 -72.250.112.0/20 19271 -72.250.128.0/19 11961 -72.250.160.0/20 13776 -72.250.176.0/20 33501 -72.250.192.0/21 62 -72.250.200.0/23 62 -72.250.203.0/24 62 -72.250.204.0/22 62 -72.250.208.0/20 23205 -72.250.224.0/22 27446 -72.250.228.0/24 53274 -72.250.229.0/24 27446 -72.250.230.0/23 27446 -72.250.232.0/24 15123 -72.250.233.0/24 27446 -72.250.234.0/24 27446 -72.250.235.0/24 395876 -72.250.236.0/22 27446 -72.250.240.0/22 27446 -72.250.244.0/23 27446 -72.250.246.0/24 395876 -72.250.247.0/24 27446 -72.250.248.0/23 395876 -72.250.250.0/23 27446 -72.250.252.0/24 53274 -72.250.253.0/24 27446 -72.250.254.0/23 27446 -72.251.0.0/20 7459 -72.251.18.0/23 4581 -72.251.20.0/24 4581 -72.251.21.0/24 7029 -72.251.22.0/24 27553 -72.251.23.0/24 4581 -72.251.24.0/23 15227 -72.251.26.0/24 15227 -72.251.27.0/24 21808 -72.251.28.0/23 21808 -72.251.30.0/24 4581 -72.251.32.0/22 36086 -72.251.36.0/22 17054 -72.251.40.0/22 7459 -72.251.44.0/22 7029 -72.251.48.0/22 7459 -72.251.52.0/24 7459 -72.251.53.0/24 27553 -72.251.54.0/23 7029 -72.251.56.0/21 7029 -72.251.64.0/23 7029 -72.251.66.0/24 7029 -72.251.68.0/24 7459 -72.251.70.0/23 21808 -72.251.72.0/21 21808 -72.251.80.0/22 7029 -72.251.84.0/23 7029 -72.251.86.0/23 27553 -72.251.88.0/24 7029 -72.251.89.0/24 27553 -72.251.90.0/23 27553 -72.251.92.0/22 27553 -72.251.96.0/22 27553 -72.251.100.0/22 7029 -72.251.108.0/23 7029 -72.251.112.0/23 7029 -72.251.114.0/23 12042 -72.251.116.0/22 12042 -72.251.120.0/21 21808 -72.251.128.0/19 21808 -72.251.160.0/21 5742 -72.251.168.0/21 14051 -72.251.176.0/20 5742 -72.251.192.0/20 29791 -72.251.208.0/21 29791 -72.251.216.0/22 29791 -72.251.220.0/23 29791 -72.251.222.0/24 394735 -72.251.223.0/24 29791 -72.251.224.0/19 29791 -72.252.0.0/22 52468 -72.252.4.0/24 396899 -72.252.5.0/24 23520 -72.252.6.0/23 23520 -72.252.8.0/21 27781 -72.252.16.0/21 23520 -72.252.24.0/24 11580 -72.252.25.0/24 30689 -72.252.26.0/23 30689 -72.252.28.0/22 30689 -72.252.32.0/21 30689 -72.252.40.0/21 23520 -72.252.48.0/20 23520 -72.252.64.0/19 23520 -72.252.96.0/21 14754 -72.252.104.0/21 30689 -72.252.112.0/20 30689 -72.252.128.0/17 30689 -72.253.0.0/18 36149 -72.253.64.0/21 36149 -72.253.72.0/22 36149 -72.253.76.0/24 23204 -72.253.77.0/24 36149 -72.253.78.0/23 36149 -72.253.80.0/20 36149 -72.253.96.0/19 36149 -72.253.128.0/17 36149 -72.255.0.0/21 9541 -72.255.8.0/24 9541 -72.255.10.0/23 9541 -72.255.12.0/24 9541 -72.255.14.0/23 9541 -72.255.16.0/22 9541 -72.255.20.0/24 9541 -72.255.22.0/23 9541 -72.255.24.0/21 9541 -72.255.32.0/20 9541 -72.255.48.0/22 9541 -72.255.52.0/24 9541 -72.255.54.0/23 9541 -72.255.56.0/22 9541 -72.255.61.0/24 9541 -72.255.62.0/23 9541 -72.255.64.0/18 30036 -72.255.128.0/18 40933 -72.255.192.0/20 25853 -72.255.208.0/20 16908 -73.0.0.0/11 7922 -73.32.0.0/13 7922 -73.40.0.0/14 7922 -73.44.0.0/15 7922 -73.46.0.0/18 7922 -73.46.64.0/19 7922 -73.46.96.0/20 7922 -73.46.112.0/21 7922 -73.46.120.0/22 7922 -73.46.124.0/22 20214 -73.46.128.0/20 7922 -73.46.144.0/22 7922 -73.46.148.0/22 20214 -73.46.152.0/21 7922 -73.46.160.0/19 7922 -73.46.192.0/18 7922 -73.47.0.0/16 7922 -73.48.0.0/12 7922 -73.64.0.0/10 7922 -73.128.0.0/11 7922 -73.160.0.0/12 7922 -73.176.0.0/13 7922 -73.184.0.0/14 7922 -73.188.0.0/16 7922 -73.189.0.0/17 7922 -73.189.128.0/20 7922 -73.189.144.0/21 7922 -73.189.152.0/22 7922 -73.189.156.0/24 7922 -73.189.157.0/25 7922 -73.189.157.128/27 7922 -73.189.157.160/28 7922 -73.189.157.176/30 7922 -73.189.157.181/32 7922 -73.189.157.182/31 7922 -73.189.157.184/29 7922 -73.189.157.192/26 7922 -73.189.158.0/23 7922 -73.189.160.0/19 7922 -73.189.192.0/18 7922 -73.190.0.0/15 7922 -73.192.0.0/10 7922 -74.0.0.0/15 18566 -74.2.0.0/16 18566 -74.3.0.0/20 18566 -74.3.16.0/21 18566 -74.3.24.0/22 18566 -74.3.28.0/24 22199 -74.3.29.0/24 18566 -74.3.30.0/23 18566 -74.3.32.0/19 18566 -74.3.64.0/18 18566 -74.3.128.0/20 6327 -74.3.144.0/22 10980 -74.3.148.0/22 30500 -74.3.152.0/21 6327 -74.3.160.0/21 11831 -74.3.168.0/24 11831 -74.3.169.0/24 6327 -74.3.170.0/24 6327 -74.3.171.0/24 11831 -74.3.172.0/22 11831 -74.3.176.0/21 6327 -74.3.184.0/23 6327 -74.3.186.0/24 63052 -74.3.187.0/24 16583 -74.3.188.0/22 6327 -74.3.192.0/18 26228 -74.4.0.0/23 6367 -74.4.2.0/23 209 -74.4.4.0/24 18494 -74.4.5.0/24 22186 -74.4.6.0/24 209 -74.4.7.0/24 4284 -74.4.8.0/24 11398 -74.4.9.0/24 4283 -74.4.10.0/24 2379 -74.4.11.0/24 4282 -74.4.12.0/23 13787 -74.4.14.0/23 209 -74.4.16.0/22 13787 -74.4.20.0/24 394286 -74.4.21.0/24 209 -74.4.22.0/23 13787 -74.4.24.0/24 209 -74.4.25.0/24 14874 -74.4.26.0/23 209 -74.4.28.0/23 209 -74.4.30.0/24 209 -74.4.31.0/24 54274 -74.4.32.0/21 13787 -74.4.40.0/21 209 -74.4.48.0/20 209 -74.4.64.0/19 209 -74.4.96.0/21 4282 -74.4.104.0/22 209 -74.4.108.0/23 209 -74.4.110.0/24 209 -74.4.111.0/24 2379 -74.4.112.0/20 209 -74.4.128.0/20 209 -74.4.144.0/21 14905 -74.4.152.0/21 18494 -74.4.160.0/20 2379 -74.4.176.0/21 14921 -74.4.184.0/21 209 -74.4.192.0/20 2379 -74.4.208.0/20 209 -74.4.224.0/21 5778 -74.4.232.0/21 209 -74.4.240.0/20 209 -74.5.0.0/18 209 -74.5.64.0/19 17402 -74.5.96.0/20 209 -74.5.112.0/23 32855 -74.5.114.0/24 209 -74.5.115.0/24 32855 -74.5.116.0/22 32855 -74.5.120.0/22 18494 -74.5.124.0/24 209 -74.5.125.0/24 16718 -74.5.126.0/23 209 -74.5.128.0/19 209 -74.5.160.0/21 209 -74.5.168.0/22 209 -74.5.172.0/23 2379 -74.5.174.0/23 209 -74.5.176.0/20 209 -74.5.192.0/21 13787 -74.5.200.0/22 22186 -74.5.204.0/23 22186 -74.5.206.0/24 209 -74.5.207.0/24 22186 -74.5.208.0/21 17402 -74.5.216.0/21 13787 -74.5.224.0/24 209 -74.5.225.0/24 2379 -74.5.226.0/23 2379 -74.5.228.0/22 2379 -74.5.232.0/21 2379 -74.5.240.0/24 209 -74.5.241.0/24 2379 -74.5.242.0/23 2379 -74.5.244.0/23 2379 -74.5.246.0/24 2379 -74.5.247.0/24 209 -74.5.248.0/24 209 -74.5.249.0/24 2379 -74.5.250.0/23 2379 -74.5.252.0/22 2379 -74.6.0.0/19 26101 -74.6.32.0/20 36647 -74.6.48.0/22 26101 -74.6.52.0/22 36647 -74.6.56.0/21 36647 -74.6.64.0/18 26101 -74.6.128.0/20 26101 -74.6.144.0/21 26101 -74.6.160.0/19 36647 -74.6.192.0/19 36647 -74.6.224.0/22 10310 -74.6.228.0/22 36646 -74.6.232.0/24 16515 -74.6.248.0/21 26101 -74.7.0.0/16 17184 -74.8.0.0/19 7029 -74.8.32.0/22 7029 -74.8.36.0/24 30080 -74.8.37.0/24 7029 -74.8.38.0/23 7029 -74.8.40.0/21 7029 -74.8.48.0/20 7029 -74.8.64.0/18 7029 -74.8.128.0/17 7029 -74.9.0.0/19 7029 -74.9.32.0/20 7029 -74.9.48.0/21 7029 -74.9.56.0/22 7029 -74.9.60.0/24 13509 -74.9.61.0/24 7029 -74.9.62.0/24 23406 -74.9.63.0/24 7029 -74.9.64.0/18 7029 -74.9.128.0/19 7029 -74.9.160.0/21 7029 -74.9.168.0/22 7029 -74.9.172.0/23 7029 -74.9.174.0/24 395364 -74.9.175.0/24 26813 -74.9.176.0/20 7029 -74.9.192.0/18 7029 -74.10.0.0/19 7029 -74.10.32.0/20 7029 -74.10.48.0/21 7029 -74.10.56.0/23 40399 -74.10.58.0/23 7029 -74.10.60.0/22 7029 -74.10.64.0/18 7029 -74.10.128.0/20 7029 -74.10.144.0/21 7029 -74.10.152.0/22 7029 -74.10.156.0/24 7029 -74.10.157.0/24 396204 -74.10.158.0/23 7029 -74.10.160.0/23 7029 -74.10.162.0/24 17325 -74.10.163.0/24 7029 -74.10.164.0/22 7029 -74.10.168.0/22 7029 -74.10.172.0/23 7029 -74.10.174.0/24 26168 -74.10.175.0/24 7029 -74.10.176.0/20 7029 -74.10.192.0/19 7029 -74.10.224.0/21 7029 -74.10.232.0/22 7029 -74.10.236.0/24 7029 -74.10.237.0/24 40609 -74.10.238.0/23 7029 -74.10.240.0/21 7029 -74.10.248.0/24 7029 -74.10.249.0/24 23380 -74.10.250.0/23 7029 -74.10.252.0/22 7029 -74.11.0.0/18 7029 -74.11.64.0/23 7029 -74.11.66.0/24 46403 -74.11.67.0/24 7029 -74.11.68.0/22 7029 -74.11.72.0/21 7029 -74.11.80.0/20 7029 -74.11.96.0/19 7029 -74.11.128.0/18 7029 -74.11.192.0/21 7029 -74.11.200.0/23 7029 -74.11.202.0/23 394183 -74.11.204.0/22 7029 -74.11.208.0/20 7029 -74.11.224.0/20 7029 -74.11.240.0/21 7029 -74.11.248.0/22 7029 -74.11.252.0/23 397560 -74.11.254.0/23 7029 -74.12.0.0/14 577 -74.16.0.0/12 7922 -74.32.0.0/18 7011 -74.32.64.0/19 7011 -74.32.96.0/22 5650 -74.32.100.0/23 5650 -74.32.102.0/24 5650 -74.32.103.0/24 7011 -74.32.104.0/21 7011 -74.32.112.0/20 5650 -74.32.128.0/19 5650 -74.32.160.0/20 5650 -74.32.176.0/21 7011 -74.32.184.0/22 5650 -74.32.188.0/23 7011 -74.32.190.0/24 5650 -74.32.191.0/24 7011 -74.32.192.0/19 7011 -74.32.224.0/20 7011 -74.32.240.0/20 5650 -74.33.0.0/19 5650 -74.33.32.0/19 7011 -74.33.64.0/19 5650 -74.33.96.0/20 5650 -74.33.112.0/21 7011 -74.33.120.0/22 5650 -74.33.124.0/22 7011 -74.33.128.0/19 7011 -74.33.160.0/21 7011 -74.33.168.0/21 5650 -74.33.176.0/20 7011 -74.33.192.0/18 5650 -74.34.0.0/20 5650 -74.34.16.0/20 7011 -74.34.32.0/20 5650 -74.34.48.0/21 5650 -74.34.56.0/21 7011 -74.34.64.0/19 5650 -74.34.96.0/20 5650 -74.34.112.0/20 7011 -74.34.128.0/19 5650 -74.34.160.0/21 7011 -74.34.168.0/21 5650 -74.34.176.0/20 5650 -74.34.192.0/18 5650 -74.35.0.0/16 5650 -74.36.0.0/22 5650 -74.36.4.0/23 5650 -74.36.6.0/23 7011 -74.36.8.0/22 7011 -74.36.12.0/23 7011 -74.36.14.0/23 5650 -74.36.16.0/20 5650 -74.36.32.0/21 7011 -74.36.40.0/22 5650 -74.36.44.0/22 7011 -74.36.48.0/21 7011 -74.36.56.0/22 7011 -74.36.60.0/22 5650 -74.36.64.0/20 5650 -74.36.80.0/20 7011 -74.36.96.0/19 5650 -74.36.128.0/19 5650 -74.36.160.0/21 7011 -74.36.168.0/21 5650 -74.36.176.0/20 7011 -74.36.192.0/23 7011 -74.36.194.0/23 5650 -74.36.196.0/23 5650 -74.36.198.0/23 7011 -74.36.200.0/23 7011 -74.36.202.0/23 5650 -74.36.204.0/23 5650 -74.36.206.0/24 7011 -74.36.207.0/24 5650 -74.36.208.0/22 5650 -74.36.212.0/22 7011 -74.36.216.0/21 5650 -74.36.224.0/24 5650 -74.36.225.0/24 7011 -74.36.226.0/23 7011 -74.36.228.0/22 5650 -74.36.232.0/21 7011 -74.36.240.0/20 7011 -74.37.0.0/20 5650 -74.37.16.0/23 5650 -74.37.18.0/23 7011 -74.37.20.0/22 5650 -74.37.24.0/21 5650 -74.37.32.0/20 7011 -74.37.48.0/21 7011 -74.37.56.0/21 5650 -74.37.64.0/18 5650 -74.37.128.0/19 5650 -74.37.160.0/20 5650 -74.37.176.0/21 5650 -74.37.184.0/22 5650 -74.37.188.0/23 5650 -74.37.190.0/23 7011 -74.37.192.0/20 5650 -74.37.208.0/21 5650 -74.37.216.0/23 7011 -74.37.218.0/24 7011 -74.37.219.0/24 5650 -74.37.220.0/23 7011 -74.37.222.0/23 5650 -74.37.224.0/20 5650 -74.37.240.0/21 5650 -74.37.248.0/23 7011 -74.37.250.0/23 5650 -74.37.252.0/22 5650 -74.38.0.0/23 7011 -74.38.2.0/23 5650 -74.38.4.0/22 5650 -74.38.8.0/21 5650 -74.38.16.0/20 5650 -74.38.32.0/20 5650 -74.38.48.0/21 5650 -74.38.56.0/22 5650 -74.38.60.0/22 7011 -74.38.64.0/21 5650 -74.38.72.0/21 7011 -74.38.80.0/20 7011 -74.38.96.0/20 7011 -74.38.112.0/20 5650 -74.38.128.0/19 7011 -74.38.160.0/19 5650 -74.38.192.0/23 5650 -74.38.194.0/23 7011 -74.38.196.0/22 7011 -74.38.200.0/22 7011 -74.38.204.0/22 5650 -74.38.208.0/21 5650 -74.38.216.0/21 7011 -74.38.224.0/19 5650 -74.39.0.0/24 7011 -74.39.1.0/24 5650 -74.39.2.0/23 7011 -74.39.4.0/24 5650 -74.39.5.0/24 7011 -74.39.6.0/23 7011 -74.39.8.0/21 5650 -74.39.16.0/23 5650 -74.39.18.0/23 7011 -74.39.20.0/24 5650 -74.39.21.0/24 7011 -74.39.22.0/23 7011 -74.39.24.0/24 5650 -74.39.25.0/24 7011 -74.39.26.0/23 7011 -74.39.28.0/22 5650 -74.39.32.0/22 5650 -74.39.36.0/23 7011 -74.39.38.0/23 5650 -74.39.40.0/21 5650 -74.39.48.0/20 5650 -74.39.64.0/18 5650 -74.39.128.0/22 7011 -74.39.132.0/23 7011 -74.39.134.0/24 7011 -74.39.135.0/24 5650 -74.39.136.0/21 5650 -74.39.144.0/24 5650 -74.39.145.0/24 54603 -74.39.146.0/23 5650 -74.39.148.0/22 5650 -74.39.152.0/21 5650 -74.39.160.0/21 5650 -74.39.168.0/23 5650 -74.39.170.0/23 7011 -74.39.172.0/22 5650 -74.39.176.0/22 5650 -74.39.180.0/23 5650 -74.39.182.0/24 5650 -74.39.183.0/24 7011 -74.39.184.0/21 5650 -74.39.192.0/20 5650 -74.39.208.0/23 5650 -74.39.210.0/24 7011 -74.39.211.0/24 5650 -74.39.212.0/22 5650 -74.39.216.0/23 5650 -74.39.218.0/24 5650 -74.39.219.0/24 7011 -74.39.220.0/22 5650 -74.39.224.0/20 5650 -74.39.240.0/24 5650 -74.39.241.0/24 7011 -74.39.242.0/23 5650 -74.39.244.0/24 5650 -74.39.245.0/24 7011 -74.39.246.0/24 7011 -74.39.247.0/24 5650 -74.39.248.0/21 5650 -74.40.0.0/20 5650 -74.40.16.0/22 5650 -74.40.20.0/23 5650 -74.40.22.0/24 26127 -74.40.23.0/24 5650 -74.40.24.0/22 5650 -74.40.28.0/24 5650 -74.40.29.0/24 3593 -74.40.30.0/24 5650 -74.40.31.0/24 7011 -74.40.32.0/23 5650 -74.40.34.0/24 5650 -74.40.35.0/24 7011 -74.40.36.0/22 5650 -74.40.40.0/24 7011 -74.40.41.0/24 5650 -74.40.42.0/23 7011 -74.40.44.0/24 7011 -74.40.45.0/24 5650 -74.40.46.0/24 5650 -74.40.47.0/24 7011 -74.40.48.0/23 5650 -74.40.50.0/24 5650 -74.40.51.0/24 7011 -74.40.52.0/22 5650 -74.40.56.0/21 5650 -74.40.64.0/19 5650 -74.40.96.0/20 5650 -74.40.112.0/22 7011 -74.40.116.0/22 5650 -74.40.120.0/21 5650 -74.40.128.0/21 5650 -74.40.136.0/23 7011 -74.40.138.0/23 5650 -74.40.140.0/22 5650 -74.40.144.0/24 7011 -74.40.145.0/24 5650 -74.40.146.0/23 7011 -74.40.148.0/22 5650 -74.40.152.0/22 5650 -74.40.156.0/24 5650 -74.40.157.0/24 7011 -74.40.158.0/23 5650 -74.40.160.0/21 5650 -74.40.168.0/22 7011 -74.40.172.0/22 5650 -74.40.176.0/20 5650 -74.40.192.0/20 5650 -74.40.208.0/21 5650 -74.40.216.0/22 5650 -74.40.220.0/24 7011 -74.40.221.0/24 5650 -74.40.222.0/23 5650 -74.40.224.0/19 5650 -74.41.0.0/20 7011 -74.41.16.0/21 7011 -74.41.24.0/21 5650 -74.41.32.0/20 5650 -74.41.48.0/24 7011 -74.41.49.0/24 5650 -74.41.50.0/23 5650 -74.41.52.0/22 5650 -74.41.56.0/21 5650 -74.41.64.0/19 7011 -74.41.96.0/21 5650 -74.41.104.0/22 7011 -74.41.108.0/22 5650 -74.41.112.0/20 5650 -74.41.128.0/23 7011 -74.41.130.0/24 7011 -74.41.131.0/24 5650 -74.41.132.0/22 5650 -74.41.136.0/21 5650 -74.41.144.0/20 5650 -74.41.160.0/22 5650 -74.41.164.0/24 5650 -74.41.165.0/24 7011 -74.41.166.0/23 5650 -74.41.168.0/21 5650 -74.41.176.0/22 5650 -74.41.180.0/22 7011 -74.41.184.0/21 5650 -74.41.192.0/22 5650 -74.41.196.0/22 7011 -74.41.200.0/21 5650 -74.41.208.0/20 5650 -74.41.224.0/21 5650 -74.41.232.0/21 7011 -74.41.240.0/20 7011 -74.42.0.0/23 5650 -74.42.2.0/24 5650 -74.42.3.0/24 7011 -74.42.4.0/23 5650 -74.42.6.0/23 7011 -74.42.8.0/23 5650 -74.42.10.0/24 5650 -74.42.11.0/24 7011 -74.42.12.0/22 5650 -74.42.16.0/23 5650 -74.42.18.0/23 7011 -74.42.20.0/22 5650 -74.42.24.0/22 5650 -74.42.28.0/24 5650 -74.42.29.0/24 7011 -74.42.30.0/24 5650 -74.42.31.0/24 7011 -74.42.32.0/23 5650 -74.42.34.0/24 7011 -74.42.35.0/24 5650 -74.42.36.0/22 5650 -74.42.40.0/23 5650 -74.42.42.0/24 5650 -74.42.43.0/24 7011 -74.42.44.0/22 5650 -74.42.48.0/24 5650 -74.42.49.0/24 7011 -74.42.50.0/23 5650 -74.42.52.0/24 7011 -74.42.53.0/24 5650 -74.42.54.0/24 5650 -74.42.55.0/24 7011 -74.42.56.0/21 5650 -74.42.64.0/20 5650 -74.42.80.0/22 7011 -74.42.84.0/23 5650 -74.42.86.0/23 7011 -74.42.88.0/21 5650 -74.42.96.0/20 5650 -74.42.112.0/22 5650 -74.42.116.0/22 7011 -74.42.120.0/21 5650 -74.42.128.0/19 5650 -74.42.160.0/24 5650 -74.42.161.0/24 7011 -74.42.162.0/23 5650 -74.42.164.0/22 5650 -74.42.168.0/23 7011 -74.42.170.0/23 5650 -74.42.172.0/22 7011 -74.42.176.0/20 7011 -74.42.192.0/20 5650 -74.42.208.0/22 7011 -74.42.212.0/22 5650 -74.42.216.0/23 5650 -74.42.218.0/24 7011 -74.42.219.0/24 5650 -74.42.220.0/22 5650 -74.42.224.0/22 5650 -74.42.228.0/23 5650 -74.42.230.0/24 7011 -74.42.231.0/24 5650 -74.42.232.0/21 5650 -74.42.240.0/21 7011 -74.42.248.0/22 5650 -74.42.252.0/23 5650 -74.42.254.0/24 5650 -74.42.255.0/24 7011 -74.43.0.0/23 3593 -74.43.2.0/24 5650 -74.43.3.0/24 3593 -74.43.4.0/22 3593 -74.43.8.0/21 3593 -74.43.16.0/22 3593 -74.43.20.0/23 3593 -74.43.22.0/24 36139 -74.43.23.0/24 3593 -74.43.24.0/24 3593 -74.43.25.0/24 46947 -74.43.26.0/23 3593 -74.43.28.0/22 3593 -74.43.32.0/19 3593 -74.43.64.0/20 7011 -74.43.80.0/23 5650 -74.43.82.0/24 3593 -74.43.83.0/24 5650 -74.43.84.0/22 5650 -74.43.88.0/21 5650 -74.43.96.0/24 5650 -74.43.97.0/24 46688 -74.43.98.0/23 5650 -74.43.100.0/22 5650 -74.43.104.0/21 5650 -74.43.112.0/22 5650 -74.43.116.0/23 5650 -74.43.118.0/24 5650 -74.43.119.0/24 16725 -74.43.120.0/21 5650 -74.43.128.0/23 5650 -74.43.130.0/24 5650 -74.43.131.0/24 40777 -74.43.132.0/22 5650 -74.43.136.0/21 5650 -74.43.144.0/22 5650 -74.43.148.0/23 5650 -74.43.150.0/23 13470 -74.43.152.0/22 5650 -74.43.156.0/24 5650 -74.43.157.0/24 7011 -74.43.158.0/23 5650 -74.43.160.0/19 5650 -74.43.192.0/19 5650 -74.43.224.0/21 5650 -74.43.232.0/22 5650 -74.43.236.0/23 5650 -74.43.238.0/23 7011 -74.43.240.0/21 5650 -74.43.248.0/23 5650 -74.43.250.0/24 7011 -74.43.251.0/24 5650 -74.43.252.0/22 5650 -74.44.0.0/23 7011 -74.44.2.0/24 7011 -74.44.3.0/24 5650 -74.44.4.0/23 5650 -74.44.6.0/23 7011 -74.44.8.0/21 7011 -74.44.16.0/21 7011 -74.44.24.0/22 5650 -74.44.28.0/22 7011 -74.44.32.0/19 7011 -74.44.64.0/23 5650 -74.44.66.0/23 7011 -74.44.68.0/22 5650 -74.44.72.0/21 5650 -74.44.80.0/20 5650 -74.44.96.0/20 5650 -74.44.112.0/20 7011 -74.44.128.0/23 30064 -74.44.130.0/23 5650 -74.44.132.0/22 7011 -74.44.136.0/21 5650 -74.44.144.0/24 5650 -74.44.145.0/24 30064 -74.44.146.0/23 5650 -74.44.148.0/22 5650 -74.44.152.0/21 5650 -74.44.160.0/21 5650 -74.44.168.0/22 5650 -74.44.172.0/22 7011 -74.44.176.0/20 5650 -74.44.192.0/24 7011 -74.44.193.0/24 5650 -74.44.194.0/23 5650 -74.44.196.0/22 5650 -74.44.200.0/21 7011 -74.44.208.0/21 5650 -74.44.216.0/21 7011 -74.44.224.0/22 5650 -74.44.228.0/24 3593 -74.44.229.0/24 5650 -74.44.230.0/24 5650 -74.44.231.0/24 3593 -74.44.232.0/23 5650 -74.44.234.0/23 7011 -74.44.236.0/24 7011 -74.44.237.0/24 5650 -74.44.238.0/23 5650 -74.44.240.0/23 7011 -74.44.242.0/23 3593 -74.44.244.0/23 3593 -74.44.246.0/24 5650 -74.44.247.0/24 3593 -74.44.248.0/22 3593 -74.44.252.0/24 3593 -74.44.253.0/24 5650 -74.44.254.0/24 5650 -74.44.255.0/24 7011 -74.45.0.0/18 5650 -74.45.64.0/21 5650 -74.45.72.0/23 5650 -74.45.74.0/23 7011 -74.45.76.0/22 7011 -74.45.80.0/20 7011 -74.45.96.0/23 30064 -74.45.98.0/24 7011 -74.45.99.0/24 5650 -74.45.100.0/22 5650 -74.45.104.0/21 5650 -74.45.112.0/20 5650 -74.45.128.0/20 5650 -74.45.144.0/22 5650 -74.45.148.0/22 7011 -74.45.152.0/22 5650 -74.45.156.0/23 5650 -74.45.158.0/23 7011 -74.45.160.0/24 7011 -74.45.161.0/24 5650 -74.45.162.0/24 30064 -74.45.163.0/24 5650 -74.45.164.0/22 5650 -74.45.168.0/23 30064 -74.45.170.0/23 5650 -74.45.172.0/22 5650 -74.45.176.0/21 30064 -74.45.184.0/22 5650 -74.45.188.0/23 30064 -74.45.190.0/23 7011 -74.45.192.0/22 7011 -74.45.196.0/23 5650 -74.45.198.0/23 7011 -74.45.200.0/22 7011 -74.45.204.0/24 7011 -74.45.205.0/24 5650 -74.45.206.0/24 5650 -74.45.207.0/24 7011 -74.45.208.0/21 5650 -74.45.216.0/23 5650 -74.45.218.0/24 7011 -74.45.219.0/24 5650 -74.45.220.0/23 5650 -74.45.222.0/23 7011 -74.45.224.0/21 5650 -74.45.232.0/24 5650 -74.45.233.0/24 7011 -74.45.234.0/23 5650 -74.45.236.0/22 5650 -74.45.240.0/24 7011 -74.45.241.0/24 5650 -74.45.242.0/24 7011 -74.45.243.0/24 5650 -74.45.244.0/22 5650 -74.45.248.0/24 5650 -74.45.249.0/24 7011 -74.45.250.0/23 7011 -74.45.252.0/24 7011 -74.45.253.0/24 5650 -74.45.254.0/23 5650 -74.46.0.0/21 7011 -74.46.8.0/23 7011 -74.46.10.0/23 5650 -74.46.12.0/22 5650 -74.46.16.0/20 5650 -74.46.32.0/21 7011 -74.46.40.0/24 5650 -74.46.41.0/24 3593 -74.46.42.0/23 5650 -74.46.44.0/22 5650 -74.46.48.0/22 7011 -74.46.52.0/22 5650 -74.46.56.0/21 5650 -74.46.64.0/21 5650 -74.46.72.0/22 5650 -74.46.76.0/23 5650 -74.46.78.0/23 7011 -74.46.80.0/20 7011 -74.46.96.0/20 7011 -74.46.112.0/20 5650 -74.46.128.0/20 7011 -74.46.144.0/21 5650 -74.46.152.0/21 7011 -74.46.160.0/20 5650 -74.46.176.0/20 7011 -74.46.192.0/21 7011 -74.46.200.0/22 5650 -74.46.204.0/22 7011 -74.46.208.0/21 7011 -74.46.216.0/21 5650 -74.46.224.0/20 5650 -74.46.240.0/21 7011 -74.46.248.0/22 7011 -74.46.252.0/22 5650 -74.47.0.0/20 7011 -74.47.16.0/21 5650 -74.47.24.0/21 7011 -74.47.32.0/22 5650 -74.47.36.0/22 7011 -74.47.40.0/21 5650 -74.47.48.0/20 5650 -74.47.64.0/22 5650 -74.47.68.0/23 5650 -74.47.70.0/24 7011 -74.47.71.0/24 5650 -74.47.72.0/21 5650 -74.47.80.0/22 7011 -74.47.84.0/22 5650 -74.47.88.0/21 5650 -74.47.96.0/19 5650 -74.47.128.0/20 7011 -74.47.144.0/21 5650 -74.47.152.0/21 7011 -74.47.160.0/21 7011 -74.47.168.0/21 5650 -74.47.176.0/20 5650 -74.47.192.0/21 5650 -74.47.200.0/22 7011 -74.47.204.0/22 5650 -74.47.208.0/23 5650 -74.47.210.0/23 7011 -74.47.212.0/22 7011 -74.47.216.0/21 7011 -74.47.224.0/23 7011 -74.47.226.0/23 5650 -74.47.228.0/22 5650 -74.47.232.0/21 7011 -74.47.240.0/20 7011 -74.48.0.0/17 14663 -74.49.0.0/16 14663 -74.50.0.0/24 15244 -74.50.4.0/22 15244 -74.50.8.0/24 15244 -74.50.13.0/24 15244 -74.50.14.0/24 15244 -74.50.19.0/24 15244 -74.50.21.0/24 15244 -74.50.25.0/24 15244 -74.50.26.0/23 15244 -74.50.28.0/22 15244 -74.50.32.0/21 11979 -74.50.40.0/22 16433 -74.50.44.0/24 16433 -74.50.45.0/24 29894 -74.50.46.0/23 11979 -74.50.48.0/20 36024 -74.50.64.0/19 19318 -74.50.96.0/19 29802 -74.50.128.0/19 21782 -74.50.160.0/19 4540 -74.50.192.0/20 20394 -74.50.208.0/21 132167 -74.50.216.0/21 395123 -74.50.224.0/20 14007 -74.50.240.0/21 35894 -74.50.248.0/22 35894 -74.50.252.0/23 35894 -74.50.254.0/24 62943 -74.50.255.0/24 35894 -74.51.0.0/20 40237 -74.51.16.0/20 6296 -74.51.32.0/20 13773 -74.51.48.0/20 5690 -74.51.64.0/19 20436 -74.51.96.0/24 14793 -74.51.97.0/24 33067 -74.51.98.0/23 14793 -74.51.100.0/22 14793 -74.51.104.0/22 14793 -74.51.108.0/23 14793 -74.51.110.0/23 27221 -74.51.112.0/24 33067 -74.51.113.0/24 14793 -74.51.114.0/23 14793 -74.51.116.0/24 14793 -74.51.117.0/24 32221 -74.51.118.0/23 14793 -74.51.120.0/23 14793 -74.51.122.0/24 27221 -74.51.123.0/24 14793 -74.51.124.0/22 14793 -74.51.128.0/20 29900 -74.51.144.0/20 16895 -74.51.160.0/20 21555 -74.51.176.0/20 30055 -74.51.192.0/21 35847 -74.51.200.0/24 4900 -74.51.201.0/24 35847 -74.51.202.0/23 35847 -74.51.204.0/22 35847 -74.51.208.0/21 15164 -74.51.216.0/23 15164 -74.51.218.0/24 15164 -74.51.219.0/24 11593 -74.51.220.0/22 15164 -74.51.224.0/20 23089 -74.51.240.0/22 33465 -74.51.254.0/24 10753 -74.52.0.0/14 36351 -74.56.0.0/14 5769 -74.60.48.0/20 16586 -74.62.0.0/20 20001 -74.62.16.0/21 20001 -74.62.24.0/24 19719 -74.62.25.0/24 20001 -74.62.26.0/23 20001 -74.62.28.0/22 20001 -74.62.32.0/22 20001 -74.62.36.0/24 23240 -74.62.37.0/24 20001 -74.62.38.0/23 53713 -74.62.40.0/21 20001 -74.62.48.0/20 20001 -74.62.64.0/22 11427 -74.62.68.0/22 10796 -74.62.72.0/22 10796 -74.62.76.0/22 11427 -74.62.80.0/21 10796 -74.62.88.0/22 10796 -74.62.92.0/24 10796 -74.62.93.0/24 13731 -74.62.94.0/23 10796 -74.62.96.0/21 10796 -74.62.104.0/22 10796 -74.62.108.0/23 10796 -74.62.110.0/24 10796 -74.62.111.0/24 55174 -74.62.112.0/20 11427 -74.62.128.0/21 11427 -74.62.136.0/23 11427 -74.62.138.0/24 36045 -74.62.139.0/24 11427 -74.62.140.0/22 11427 -74.62.144.0/20 20001 -74.62.160.0/21 11427 -74.62.168.0/22 33363 -74.62.172.0/22 20001 -74.62.176.0/20 20001 -74.62.192.0/18 20001 -74.63.0.0/20 26689 -74.63.16.0/23 42 -74.63.18.0/23 715 -74.63.20.0/23 42 -74.63.22.0/24 715 -74.63.23.0/24 42 -74.63.24.0/21 42 -74.63.32.0/19 29791 -74.63.64.0/18 174 -74.63.128.0/20 13649 -74.63.144.0/21 13649 -74.63.152.0/23 13649 -74.63.154.0/24 13649 -74.63.155.0/24 12185 -74.63.156.0/24 19067 -74.63.157.0/24 6988 -74.63.158.0/23 13649 -74.63.160.0/21 13649 -74.63.168.0/22 13649 -74.63.172.0/23 13649 -74.63.174.0/23 30682 -74.63.176.0/20 13649 -74.63.192.0/23 46475 -74.63.194.0/24 54103 -74.63.195.0/24 46475 -74.63.196.0/22 46475 -74.63.200.0/23 46475 -74.63.202.0/24 46475 -74.63.203.0/24 54103 -74.63.204.0/22 46475 -74.63.208.0/20 46475 -74.63.224.0/22 46475 -74.63.228.0/23 46475 -74.63.230.0/24 46475 -74.63.231.0/24 54103 -74.63.232.0/22 46475 -74.63.236.0/24 54103 -74.63.237.0/24 46475 -74.63.238.0/23 46475 -74.63.240.0/20 46475 -74.64.0.0/16 12271 -74.65.0.0/17 11351 -74.65.128.0/18 11351 -74.65.192.0/18 12271 -74.66.0.0/16 12271 -74.67.0.0/16 11351 -74.68.0.0/16 12271 -74.69.0.0/16 11351 -74.70.0.0/16 11351 -74.71.0.0/16 12271 -74.72.0.0/15 12271 -74.74.0.0/18 12271 -74.74.64.0/18 11351 -74.74.128.0/17 11351 -74.75.0.0/16 11351 -74.76.0.0/14 11351 -74.80.0.0/18 25921 -74.80.64.0/23 715 -74.80.66.0/24 715 -74.80.67.0/24 42 -74.80.68.0/24 715 -74.80.69.0/24 42 -74.80.70.0/23 715 -74.80.72.0/24 715 -74.80.73.0/24 42 -74.80.74.0/23 715 -74.80.76.0/22 715 -74.80.80.0/21 715 -74.80.88.0/22 715 -74.80.92.0/24 715 -74.80.93.0/24 42 -74.80.94.0/23 715 -74.80.96.0/24 715 -74.80.97.0/24 42 -74.80.98.0/24 42 -74.80.99.0/24 715 -74.80.100.0/24 715 -74.80.101.0/24 42 -74.80.102.0/23 715 -74.80.104.0/23 715 -74.80.106.0/24 715 -74.80.107.0/24 42 -74.80.108.0/24 715 -74.80.109.0/24 42 -74.80.110.0/23 42 -74.80.112.0/23 42 -74.80.114.0/24 42 -74.80.115.0/24 715 -74.80.116.0/24 42 -74.80.117.0/24 715 -74.80.118.0/23 715 -74.80.120.0/24 42 -74.80.121.0/24 715 -74.80.122.0/24 715 -74.80.123.0/24 42 -74.80.124.0/23 715 -74.80.126.0/24 715 -74.80.127.0/24 42 -74.80.128.0/18 12260 -74.80.193.0/24 22241 -74.80.194.0/23 22241 -74.80.196.0/22 22241 -74.80.200.0/21 22241 -74.80.208.0/22 22241 -74.80.213.0/24 22241 -74.80.214.0/23 22241 -74.80.216.0/24 62714 -74.80.217.0/24 22241 -74.80.220.0/23 22241 -74.80.222.0/24 22241 -74.80.224.0/24 22241 -74.80.226.0/23 22241 -74.80.228.0/23 22241 -74.80.231.0/24 22241 -74.80.232.0/22 22241 -74.80.236.0/23 22241 -74.80.238.0/24 62714 -74.80.239.0/24 22241 -74.80.240.0/23 22241 -74.80.243.0/24 22241 -74.80.244.0/22 22241 -74.80.248.0/22 22241 -74.81.0.0/19 395846 -74.81.32.0/19 22439 -74.81.64.0/21 11042 -74.81.72.0/22 7226 -74.81.76.0/23 7226 -74.81.78.0/24 11042 -74.81.79.0/24 7226 -74.81.80.0/24 7226 -74.81.81.0/24 11042 -74.81.82.0/24 11042 -74.81.83.0/24 7226 -74.81.84.0/24 7226 -74.81.85.0/24 11042 -74.81.86.0/24 7226 -74.81.87.0/24 11042 -74.81.88.0/21 11042 -74.81.96.0/19 26801 -74.81.128.0/19 11025 -74.81.160.0/21 397016 -74.81.168.0/24 31877 -74.81.169.0/24 11402 -74.81.170.0/24 11402 -74.81.173.0/24 11402 -74.81.174.0/23 6300 -74.81.176.0/22 14487 -74.81.180.0/24 40293 -74.81.181.0/24 11402 -74.81.182.0/24 11402 -74.81.184.0/23 26994 -74.81.187.0/24 11402 -74.81.188.0/23 11402 -74.81.191.0/24 11402 -74.81.192.0/19 17184 -74.81.224.0/19 23205 -74.82.0.0/24 394740 -74.82.1.0/24 6939 -74.82.2.0/23 63949 -74.82.4.0/24 6939 -74.82.5.0/24 63949 -74.82.6.0/23 36103 -74.82.8.0/24 54288 -74.82.9.0/24 6939 -74.82.10.0/23 36103 -74.82.12.0/22 6939 -74.82.16.0/23 6939 -74.82.18.0/24 394996 -74.82.19.0/24 6939 -74.82.20.0/22 6939 -74.82.24.0/24 36103 -74.82.25.0/24 394996 -74.82.26.0/23 6939 -74.82.28.0/22 394996 -74.82.32.0/24 394996 -74.82.33.0/24 6939 -74.82.34.0/23 6939 -74.82.36.0/24 394996 -74.82.37.0/24 6939 -74.82.38.0/23 6939 -74.82.40.0/23 6939 -74.82.42.0/24 6939 -74.82.43.0/24 18779 -74.82.44.0/23 36103 -74.82.46.0/23 6939 -74.82.48.0/22 6939 -74.82.52.0/24 6939 -74.82.53.0/24 394996 -74.82.54.0/23 36103 -74.82.56.0/24 6939 -74.82.57.0/24 36103 -74.82.58.0/23 6939 -74.82.60.0/22 6939 -74.82.64.0/19 18705 -74.82.96.0/19 18566 -74.82.128.0/20 14589 -74.82.144.0/20 17306 -74.82.160.0/19 20248 -74.82.192.0/19 25820 -74.82.224.0/19 25764 -74.83.0.0/17 6181 -74.83.128.0/19 6181 -74.83.160.0/20 6181 -74.83.176.0/22 6181 -74.83.180.0/22 19263 -74.83.184.0/21 6181 -74.83.192.0/18 6181 -74.84.0.0/23 18618 -74.84.2.0/23 397361 -74.84.4.0/22 397361 -74.84.8.0/22 18618 -74.84.12.0/22 22353 -74.84.16.0/24 22353 -74.84.17.0/24 18618 -74.84.18.0/23 18618 -74.84.20.0/22 18618 -74.84.24.0/23 18618 -74.84.26.0/23 53646 -74.84.28.0/22 18618 -74.84.32.0/19 31753 -74.84.64.0/18 30036 -74.84.128.0/20 14361 -74.84.144.0/22 14361 -74.84.148.0/23 14361 -74.84.150.0/24 62943 -74.84.151.0/24 14361 -74.84.152.0/23 14361 -74.84.155.0/24 30517 -74.84.160.0/24 17307 -74.84.161.0/24 19804 -74.84.162.0/24 19810 -74.84.163.0/24 18491 -74.84.164.0/24 46108 -74.84.165.0/24 17307 -74.84.166.0/23 17307 -74.84.168.0/24 18490 -74.84.169.0/24 17307 -74.84.170.0/24 18486 -74.84.171.0/24 19808 -74.84.172.0/24 35953 -74.84.173.0/24 17307 -74.84.174.0/23 19803 -74.84.176.0/24 17307 -74.84.177.0/24 18484 -74.84.178.0/23 17307 -74.84.180.0/22 17307 -74.84.184.0/21 17307 -74.84.192.0/19 19271 -74.84.224.0/19 29968 -74.85.0.0/19 32035 -74.85.32.0/22 11404 -74.85.36.0/22 19904 -74.85.40.0/21 11404 -74.85.48.0/20 11404 -74.85.64.0/20 11404 -74.85.80.0/21 30335 -74.85.88.0/23 11404 -74.85.90.0/23 26047 -74.85.92.0/22 11404 -74.85.96.0/22 53828 -74.85.100.0/23 53828 -74.85.102.0/24 22362 -74.85.103.0/24 53828 -74.85.104.0/21 53828 -74.85.112.0/20 53828 -74.85.128.0/21 13649 -74.85.136.0/22 13649 -74.85.140.0/24 13649 -74.85.141.0/24 20284 -74.85.142.0/24 20284 -74.85.143.0/24 54524 -74.85.144.0/22 395515 -74.85.148.0/23 395515 -74.85.150.0/24 395515 -74.85.152.0/24 17018 -74.85.153.0/24 395242 -74.85.154.0/24 395544 -74.85.155.0/24 394777 -74.85.156.0/23 393573 -74.85.158.0/24 396152 -74.85.159.0/24 19704 -74.85.160.0/19 23314 -74.85.192.0/20 64242 -74.85.208.0/20 19710 -74.85.224.0/21 32869 -74.85.232.0/23 32869 -74.85.234.0/24 63069 -74.85.235.0/24 32869 -74.85.236.0/22 32869 -74.85.240.0/22 32869 -74.85.244.0/23 32869 -74.85.246.0/24 32546 -74.85.247.0/24 32869 -74.85.248.0/21 32869 -74.86.0.0/16 36351 -74.87.0.0/20 33363 -74.87.16.0/20 20001 -74.87.32.0/19 20001 -74.87.64.0/19 10796 -74.87.96.0/21 10796 -74.87.104.0/21 11427 -74.87.112.0/21 10796 -74.87.120.0/24 32497 -74.87.121.0/24 10796 -74.87.122.0/24 55208 -74.87.123.0/24 10796 -74.87.124.0/22 10796 -74.87.128.0/23 11955 -74.87.130.0/23 10796 -74.87.132.0/24 7843 -74.87.133.0/24 20001 -74.87.134.0/24 20001 -74.87.135.0/24 10838 -74.87.136.0/23 20001 -74.87.138.0/23 10796 -74.87.140.0/22 10838 -74.87.144.0/23 20001 -74.87.146.0/23 11955 -74.87.148.0/23 20001 -74.87.150.0/23 10796 -74.87.152.0/23 10796 -74.87.154.0/23 11426 -74.87.156.0/22 20001 -74.87.160.0/20 11427 -74.87.176.0/21 11427 -74.87.184.0/22 11427 -74.87.188.0/23 20001 -74.87.190.0/23 10838 -74.87.192.0/22 11427 -74.87.196.0/22 10796 -74.87.200.0/21 20001 -74.87.208.0/21 20001 -74.87.216.0/22 10796 -74.87.220.0/23 11426 -74.87.222.0/23 11955 -74.87.224.0/21 10796 -74.87.232.0/22 10838 -74.87.236.0/22 20001 -74.87.240.0/24 10796 -74.87.241.0/24 20001 -74.87.242.0/24 10838 -74.87.243.0/24 20001 -74.87.244.0/24 10796 -74.87.245.0/24 11955 -74.87.246.0/24 7843 -74.87.247.0/24 10796 -74.87.248.0/22 10796 -74.87.252.0/23 10796 -74.87.254.0/23 11955 -74.88.0.0/15 6128 -74.90.0.0/16 6128 -74.91.0.0/22 29838 -74.91.4.0/24 7415 -74.91.5.0/24 29838 -74.91.6.0/24 46579 -74.91.7.0/24 29838 -74.91.8.0/22 29838 -74.91.12.0/23 29838 -74.91.14.0/24 29838 -74.91.15.0/24 14460 -74.91.16.0/20 33387 -74.91.32.0/20 209519 -74.91.48.0/23 23470 -74.91.50.0/23 19437 -74.91.52.0/22 19437 -74.91.56.0/22 19437 -74.91.60.0/22 55286 -74.91.64.0/20 36243 -74.91.80.0/20 19005 -74.91.96.0/20 5683 -74.91.112.0/24 14745 -74.91.113.0/24 14586 -74.91.114.0/24 12179 -74.91.115.0/24 14586 -74.91.116.0/24 13789 -74.91.117.0/24 32751 -74.91.118.0/24 12182 -74.91.119.0/24 14586 -74.91.120.0/24 12179 -74.91.121.0/24 14745 -74.91.122.0/24 14586 -74.91.123.0/24 13789 -74.91.124.0/23 14586 -74.91.126.0/24 12179 -74.91.127.0/24 14745 -74.91.128.0/17 46606 -74.92.0.0/14 7922 -74.96.0.0/16 701 -74.97.0.0/17 701 -74.97.128.0/18 701 -74.98.0.0/18 701 -74.98.128.0/20 701 -74.98.160.0/19 701 -74.98.192.0/18 701 -74.99.64.0/19 701 -74.99.104.0/21 701 -74.99.128.0/18 701 -74.100.0.0/16 5650 -74.101.0.0/16 701 -74.102.0.0/15 701 -74.104.0.0/15 701 -74.106.0.0/19 701 -74.106.32.0/19 5650 -74.106.64.0/18 701 -74.106.176.0/20 701 -74.106.192.0/20 701 -74.106.208.0/20 5650 -74.106.224.0/19 701 -74.107.0.0/17 701 -74.107.160.0/20 701 -74.107.180.0/22 701 -74.107.184.0/21 701 -74.108.0.0/16 701 -74.109.0.0/17 701 -74.109.160.0/19 701 -74.109.192.0/18 701 -74.110.0.0/18 701 -74.110.64.0/20 701 -74.110.96.0/19 701 -74.110.128.0/17 701 -74.111.0.0/18 701 -74.111.96.0/19 701 -74.111.160.0/19 701 -74.111.192.0/20 5650 -74.111.224.0/19 5650 -74.112.0.0/21 14230 -74.112.8.0/21 46464 -74.112.16.0/22 6653 -74.112.20.0/22 32075 -74.112.24.0/23 21534 -74.112.27.0/24 26152 -74.112.28.0/22 53258 -74.112.32.0/22 23043 -74.112.36.0/22 40762 -74.112.40.0/21 46195 -74.112.48.0/22 22088 -74.112.52.0/22 11038 -74.112.56.0/24 23314 -74.112.57.0/24 1647 -74.112.58.0/23 23314 -74.112.60.0/22 23314 -74.112.64.0/21 19795 -74.112.72.0/23 174 -74.112.74.0/23 15042 -74.112.76.0/23 33491 -74.112.80.0/22 3257 -74.112.84.0/23 3257 -74.112.86.0/24 3257 -74.112.87.0/24 3356 -74.112.88.0/23 7029 -74.112.91.0/24 63350 -74.112.92.0/22 27582 -74.112.96.0/22 22344 -74.112.104.0/21 17253 -74.112.112.0/21 11525 -74.112.120.0/22 25842 -74.112.124.0/22 14066 -74.112.130.0/23 394950 -74.112.132.0/23 14618 -74.112.135.0/24 3728 -74.112.136.0/21 35862 -74.112.144.0/21 22591 -74.112.152.0/23 203999 -74.112.154.0/24 203999 -74.112.155.0/24 14986 -74.112.156.0/22 203999 -74.112.160.0/22 33506 -74.112.164.0/22 33627 -74.112.168.0/22 15085 -74.112.172.0/23 15085 -74.112.174.0/24 15085 -74.112.176.0/23 46877 -74.112.180.0/24 26226 -74.112.184.0/22 33011 -74.112.188.0/22 14820 -74.112.192.0/21 25649 -74.112.200.0/21 11288 -74.112.208.0/21 33725 -74.112.218.0/23 46132 -74.112.222.0/23 46132 -74.112.228.0/22 40498 -74.112.232.0/21 33392 -74.112.240.0/22 33069 -74.112.244.0/22 22111 -74.112.248.0/22 36504 -74.112.252.0/24 36504 -74.112.253.0/24 33597 -74.112.254.0/24 64262 -74.112.255.0/24 33597 -74.113.2.0/23 22766 -74.113.4.0/22 46748 -74.113.8.0/22 394905 -74.113.12.0/22 803 -74.113.16.0/24 33391 -74.113.18.0/24 33391 -74.113.20.0/22 19271 -74.113.24.0/22 22438 -74.113.28.0/22 1612 -74.113.32.0/21 22691 -74.113.40.0/21 25943 -74.113.48.0/23 46887 -74.113.50.0/24 16657 -74.113.51.0/24 46887 -74.113.52.0/22 46887 -74.113.56.0/21 31893 -74.113.65.0/24 11222 -74.113.66.0/23 11222 -74.113.72.0/22 46861 -74.113.76.0/23 46917 -74.113.78.0/24 46917 -74.113.80.0/22 22624 -74.113.84.0/22 19404 -74.113.88.0/22 17099 -74.113.92.0/23 17099 -74.113.94.0/24 18896 -74.113.95.0/24 17099 -74.113.100.0/22 46121 -74.113.104.0/22 22069 -74.113.108.0/22 30231 -74.113.112.0/21 20442 -74.113.121.0/24 15011 -74.113.122.0/23 15011 -74.113.124.0/23 15011 -74.113.128.0/21 40511 -74.113.136.0/21 46672 -74.113.149.0/24 19503 -74.113.150.0/24 23352 -74.113.151.0/24 36582 -74.113.153.0/24 11323 -74.113.154.0/23 11323 -74.113.156.0/22 46796 -74.113.160.0/21 31769 -74.113.168.0/21 17306 -74.113.176.0/21 46920 -74.113.184.0/22 46927 -74.113.188.0/22 17116 -74.113.192.0/22 26630 -74.113.196.0/24 26630 -74.113.201.0/24 64249 -74.113.202.0/24 14265 -74.113.204.0/24 46958 -74.113.206.0/24 46958 -74.113.208.0/22 6624 -74.113.212.0/23 6624 -74.113.214.0/24 6624 -74.113.215.0/24 395571 -74.113.216.0/24 17368 -74.113.217.0/24 17127 -74.113.218.0/23 17368 -74.113.220.0/22 17368 -74.113.224.0/23 14902 -74.113.228.0/22 16391 -74.113.240.0/21 13823 -74.113.248.0/22 26994 -74.113.252.0/22 27822 -74.114.0.0/24 36046 -74.114.1.0/24 46971 -74.114.2.0/23 46971 -74.114.4.0/22 40284 -74.114.8.0/24 54107 -74.114.16.0/21 577 -74.114.24.0/21 15169 -74.114.32.0/22 46891 -74.114.44.0/22 22773 -74.114.48.0/22 133847 -74.114.54.0/23 395512 -74.114.60.0/22 22009 -74.114.64.0/24 47000 -74.114.66.0/24 47000 -74.114.68.0/24 47000 -74.114.70.0/23 47000 -74.114.72.0/21 40867 -74.114.80.0/21 46932 -74.114.88.0/22 47002 -74.114.92.0/22 27297 -74.114.96.0/24 22335 -74.114.98.0/23 10764 -74.114.100.0/22 40191 -74.114.104.0/21 11966 -74.114.116.0/22 46261 -74.114.120.0/22 23225 -74.114.124.0/22 46990 -74.114.128.0/22 32695 -74.114.136.0/22 19915 -74.114.140.0/22 32757 -74.114.144.0/22 36809 -74.114.148.0/22 32987 -74.114.152.0/22 2635 -74.114.158.0/24 394180 -74.114.159.0/24 394199 -74.114.160.0/24 3549 -74.114.161.0/24 6461 -74.114.162.0/23 6461 -74.114.164.0/22 6461 -74.114.168.0/22 3361 -74.114.172.0/22 47035 -74.114.176.0/22 36730 -74.114.180.0/22 16858 -74.114.184.0/22 19888 -74.114.188.0/23 14556 -74.114.190.0/24 14556 -74.114.196.0/22 33062 -74.114.200.0/22 27593 -74.114.204.0/22 13438 -74.114.208.0/22 27232 -74.114.212.0/24 27232 -74.114.214.0/23 27232 -74.114.223.0/24 39470 -74.114.224.0/22 14753 -74.114.228.0/24 10982 -74.114.230.0/24 10982 -74.114.232.0/21 46817 -74.114.240.0/22 47060 -74.114.244.0/22 14073 -74.114.248.0/22 2711 -74.115.0.0/24 18779 -74.115.4.0/24 18779 -74.115.8.0/22 47015 -74.115.12.0/22 20251 -74.115.16.0/21 14701 -74.115.24.0/24 19905 -74.115.25.0/24 47069 -74.115.26.0/23 19905 -74.115.32.0/22 36529 -74.115.36.0/22 32694 -74.115.40.0/22 46812 -74.115.44.0/23 46812 -74.115.46.0/24 46812 -74.115.47.0/24 22625 -74.115.48.0/23 27647 -74.115.50.0/24 27647 -74.115.52.0/22 32625 -74.115.56.0/22 11536 -74.115.60.0/24 46208 -74.115.61.0/24 11536 -74.115.62.0/23 11536 -74.115.64.0/22 21885 -74.115.68.0/22 32194 -74.115.72.0/21 36100 -74.115.80.0/22 30576 -74.115.84.0/22 47084 -74.115.88.0/22 3549 -74.115.92.0/22 32413 -74.115.96.0/22 32035 -74.115.100.0/22 40837 -74.115.108.0/24 29919 -74.115.110.0/24 29919 -74.115.112.0/21 17056 -74.115.120.0/22 40221 -74.115.129.0/24 4867 -74.115.135.0/24 33404 -74.115.136.0/21 19006 -74.115.150.0/23 26083 -74.115.152.0/21 31835 -74.115.160.0/22 47100 -74.115.164.0/22 17306 -74.115.168.0/22 17185 -74.115.172.0/24 174 -74.115.173.0/24 17185 -74.115.174.0/23 17185 -74.115.176.0/22 26137 -74.115.180.0/22 15088 -74.115.184.0/22 20430 -74.115.188.0/23 19462 -74.115.190.0/23 53254 -74.115.192.0/22 36273 -74.115.196.0/22 20365 -74.115.200.0/22 53251 -74.115.204.0/22 36354 -74.115.208.0/21 29889 -74.115.216.0/23 32223 -74.115.220.0/22 47023 -74.115.224.0/24 16912 -74.115.228.0/22 16912 -74.115.232.0/22 33132 -74.115.236.0/23 237 -74.115.240.0/21 19215 -74.115.249.0/24 6309 -74.115.251.0/24 6309 -74.115.252.0/22 14701 -74.116.0.0/23 53255 -74.116.2.0/24 53255 -74.116.3.0/24 46562 -74.116.4.0/22 14135 -74.116.8.0/22 36524 -74.116.12.0/24 36524 -74.116.14.0/24 36524 -74.116.16.0/22 397347 -74.116.20.0/22 18615 -74.116.24.0/21 31845 -74.116.40.0/22 29889 -74.116.44.0/22 40772 -74.116.50.0/23 11940 -74.116.52.0/24 1277 -74.116.53.0/24 394634 -74.116.54.0/24 1277 -74.116.55.0/24 394597 -74.116.56.0/24 33576 -74.116.57.0/24 11580 -74.116.58.0/24 33576 -74.116.59.0/24 11580 -74.116.60.0/22 33657 -74.116.64.0/21 19214 -74.116.73.0/24 394563 -74.116.80.0/22 22610 -74.116.84.0/24 36351 -74.116.88.0/22 30447 -74.116.92.0/23 36511 -74.116.94.0/24 36511 -74.116.95.0/24 33392 -74.116.101.0/24 53276 -74.116.102.0/24 53276 -74.116.104.0/24 47870 -74.116.105.0/24 19210 -74.116.106.0/23 47870 -74.116.112.0/22 6939 -74.116.116.0/22 15305 -74.116.120.0/22 55053 -74.116.124.0/22 1442 -74.116.128.0/21 53266 -74.116.136.0/23 23096 -74.116.138.0/23 20398 -74.116.140.0/22 20398 -74.116.144.0/24 14618 -74.116.146.0/24 17151 -74.116.148.0/22 17151 -74.116.152.0/22 53263 -74.116.158.0/23 27489 -74.116.160.0/21 27400 -74.116.168.0/22 47031 -74.116.172.0/23 1445 -74.116.174.0/24 11486 -74.116.175.0/24 702 -74.116.176.0/24 1628 -74.116.178.0/23 1628 -74.116.180.0/22 36499 -74.116.184.0/21 1403 -74.116.192.0/21 8001 -74.116.200.0/21 11620 -74.116.208.0/22 23012 -74.116.212.0/24 1652 -74.116.216.0/21 15122 -74.116.228.0/23 53307 -74.116.230.0/24 53307 -74.116.231.0/24 7381 -74.116.232.0/22 6165 -74.116.236.0/23 6165 -74.116.238.0/24 6165 -74.116.239.0/24 16509 -74.116.240.0/24 21978 -74.116.241.0/24 46446 -74.116.242.0/24 46446 -74.116.243.0/24 53769 -74.116.244.0/24 46446 -74.116.245.0/24 53397 -74.116.246.0/23 46446 -74.116.248.0/22 40475 -74.116.252.0/22 53309 -74.117.0.0/21 1643 -74.117.8.0/21 1379 -74.117.16.0/22 1443 -74.117.20.0/24 22911 -74.117.21.0/24 12225 -74.117.23.0/24 12225 -74.117.24.0/21 32270 -74.117.32.0/22 40154 -74.117.36.0/22 20228 -74.117.40.0/21 47103 -74.117.52.0/23 36466 -74.117.54.0/24 36466 -74.117.55.0/24 15278 -74.117.56.0/21 40676 -74.117.64.0/22 53272 -74.117.68.0/22 1827 -74.117.72.0/22 1823 -74.117.76.0/23 40596 -74.117.78.0/23 23197 -74.117.84.0/22 46650 -74.117.88.0/21 17306 -74.117.96.0/21 53324 -74.117.104.0/21 46699 -74.117.112.0/23 32592 -74.117.114.0/23 53997 -74.117.116.0/22 32592 -74.117.120.0/21 10987 -74.117.128.0/22 12273 -74.117.132.0/22 53857 -74.117.136.0/22 3688 -74.117.140.0/22 20161 -74.117.144.0/22 13984 -74.117.148.0/24 40114 -74.117.149.0/24 16509 -74.117.150.0/23 40114 -74.117.152.0/21 13354 -74.117.160.0/21 32866 -74.117.168.0/22 1826 -74.117.176.0/21 40824 -74.117.184.0/22 11352 -74.117.188.0/23 46429 -74.117.191.0/24 46429 -74.117.192.0/22 31977 -74.117.200.0/23 7160 -74.117.203.0/24 7160 -74.117.206.0/23 7160 -74.117.208.0/22 53857 -74.117.212.0/22 4539 -74.117.216.0/23 3962 -74.117.218.0/23 53997 -74.117.220.0/22 53997 -74.117.224.0/21 25843 -74.117.232.0/22 2941 -74.117.236.0/22 53264 -74.117.240.0/22 30032 -74.117.244.0/23 30032 -74.117.246.0/24 47096 -74.117.247.0/24 30032 -74.117.248.0/21 4877 -74.118.0.0/22 32570 -74.118.4.0/22 26217 -74.118.8.0/21 13341 -74.118.16.0/22 46435 -74.118.22.0/23 46435 -74.118.24.0/22 46887 -74.118.28.0/22 40545 -74.118.32.0/22 4894 -74.118.36.0/22 13851 -74.118.40.0/22 27467 -74.118.44.0/22 19331 -74.118.48.0/22 12182 -74.118.54.0/23 1633 -74.118.58.0/24 4980 -74.118.60.0/22 40676 -74.118.72.0/21 3061 -74.118.80.0/22 45178 -74.118.84.0/23 40402 -74.118.88.0/22 46193 -74.118.92.0/22 4912 -74.118.96.0/22 1401 -74.118.105.0/24 16509 -74.118.106.0/23 16509 -74.118.110.0/24 10461 -74.118.111.0/24 174 -74.118.112.0/21 46437 -74.118.120.0/22 5693 -74.118.124.0/22 2763 -74.118.128.0/22 4886 -74.118.133.0/24 395551 -74.118.135.0/24 40676 -74.118.136.0/21 20326 -74.118.144.0/24 4940 -74.118.146.0/24 4940 -74.118.148.0/22 17306 -74.118.152.0/21 11170 -74.118.160.0/21 46663 -74.118.169.0/24 22787 -74.118.170.0/24 22787 -74.118.172.0/24 7018 -74.118.176.0/22 22441 -74.118.180.0/22 46309 -74.118.184.0/22 4989 -74.118.188.0/23 7143 -74.118.190.0/24 7143 -74.118.192.0/24 25820 -74.118.196.0/22 25842 -74.118.200.0/21 22926 -74.118.208.0/24 46395 -74.118.210.0/24 46395 -74.118.212.0/22 7251 -74.118.219.0/24 36464 -74.118.221.0/24 35064 -74.118.222.0/23 35064 -74.118.224.0/22 26759 -74.118.228.0/24 46559 -74.118.229.0/24 26759 -74.118.230.0/23 46559 -74.118.232.0/21 23314 -74.118.240.0/22 16863 -74.118.244.0/22 21690 -74.118.248.0/24 20132 -74.118.252.0/24 40596 -74.118.254.0/24 40596 -74.118.255.0/24 23197 -74.119.0.0/22 14268 -74.119.8.0/23 30097 -74.119.11.0/24 30097 -74.119.12.0/23 46339 -74.119.14.0/24 46339 -74.119.16.0/21 22361 -74.119.28.0/23 32164 -74.119.30.0/24 32164 -74.119.31.0/24 32161 -74.119.32.0/23 18608 -74.119.34.0/24 18608 -74.119.36.0/24 18608 -74.119.38.0/24 18608 -74.119.40.0/24 4893 -74.119.41.0/24 46878 -74.119.44.0/24 13480 -74.119.46.0/24 13480 -74.119.56.0/22 27401 -74.119.60.0/22 29906 -74.119.64.0/21 19237 -74.119.76.0/22 32934 -74.119.80.0/22 15150 -74.119.84.0/23 15150 -74.119.86.0/23 23515 -74.119.88.0/21 5690 -74.119.96.0/22 19424 -74.119.100.0/22 11477 -74.119.104.0/21 21678 -74.119.112.0/22 36610 -74.119.116.0/22 19750 -74.119.130.0/23 1999 -74.119.132.0/24 27515 -74.119.136.0/21 3549 -74.119.144.0/22 46562 -74.119.148.0/22 3549 -74.119.152.0/22 36327 -74.119.156.0/24 36327 -74.119.157.0/24 32683 -74.119.158.0/23 36327 -74.119.160.0/22 4913 -74.119.164.0/24 4913 -74.119.165.0/24 5666 -74.119.166.0/23 4913 -74.119.168.0/22 11297 -74.119.172.0/22 14739 -74.119.176.0/24 36815 -74.119.180.0/24 36815 -74.119.184.0/21 32584 -74.119.192.0/22 40015 -74.119.196.0/22 26950 -74.119.200.0/23 18938 -74.119.202.0/24 18938 -74.119.206.0/24 4878 -74.119.208.0/21 27822 -74.119.216.0/22 53264 -74.119.220.0/22 23284 -74.119.224.0/24 10661 -74.119.225.0/24 17378 -74.119.228.0/22 32560 -74.119.232.0/22 46506 -74.119.236.0/24 26032 -74.119.238.0/24 35908 -74.119.239.0/24 394695 -74.119.240.0/21 31850 -74.119.248.0/21 26479 -74.120.0.0/23 6951 -74.120.2.0/24 6951 -74.120.4.0/22 32773 -74.120.8.0/22 7366 -74.120.12.0/22 13722 -74.120.16.0/24 4905 -74.120.18.0/23 4905 -74.120.24.0/21 39963 -74.120.32.0/21 11071 -74.120.40.0/21 33132 -74.120.48.0/22 22496 -74.120.52.0/22 32315 -74.120.56.0/21 21818 -74.120.64.0/23 36758 -74.120.66.0/24 36758 -74.120.68.0/23 36758 -74.120.72.0/22 19595 -74.120.76.0/22 30028 -74.120.80.0/22 53285 -74.120.84.0/24 26697 -74.120.88.0/23 25889 -74.120.90.0/23 7018 -74.120.92.0/22 40160 -74.120.97.0/24 53294 -74.120.98.0/23 53294 -74.120.101.0/24 32671 -74.120.102.0/24 4208 -74.120.103.0/24 32671 -74.120.104.0/21 53298 -74.120.112.0/22 17348 -74.120.117.0/24 32141 -74.120.118.0/23 32141 -74.120.120.0/22 13768 -74.120.124.0/23 53466 -74.120.126.0/23 53804 -74.120.128.0/21 32391 -74.120.136.0/22 30188 -74.120.140.0/22 6336 -74.120.144.0/22 36823 -74.120.152.0/22 12102 -74.120.156.0/23 25681 -74.120.158.0/23 18594 -74.120.168.0/21 25820 -74.120.176.0/22 11066 -74.120.181.0/24 62955 -74.120.184.0/24 22300 -74.120.188.0/23 22300 -74.120.190.0/24 22300 -74.120.192.0/21 16848 -74.120.200.0/21 32845 -74.120.208.0/22 33693 -74.120.212.0/23 32326 -74.120.215.0/24 32326 -74.120.216.0/22 35914 -74.120.220.0/22 36666 -74.120.224.0/21 17054 -74.120.232.0/23 22364 -74.120.236.0/24 14992 -74.120.240.0/21 30063 -74.120.248.0/22 40790 -74.120.252.0/24 27591 -74.120.254.0/24 27591 -74.121.0.0/21 22937 -74.121.8.0/21 14633 -74.121.16.0/22 27441 -74.121.20.0/23 27441 -74.121.22.0/23 53313 -74.121.24.0/22 64233 -74.121.28.0/23 15301 -74.121.30.0/23 53708 -74.121.32.0/22 26968 -74.121.40.0/21 39939 -74.121.48.0/22 19795 -74.121.52.0/23 19795 -74.121.54.0/23 36351 -74.121.56.0/21 53361 -74.121.64.0/22 40715 -74.121.68.0/22 17184 -74.121.72.0/21 53289 -74.121.80.0/23 53345 -74.121.82.0/24 53345 -74.121.83.0/24 3257 -74.121.88.0/21 13342 -74.121.96.0/22 29897 -74.121.100.0/22 18776 -74.121.104.0/22 6939 -74.121.108.0/22 15085 -74.121.112.0/23 510 -74.121.120.0/22 53319 -74.121.124.0/22 26008 -74.121.128.0/22 53383 -74.121.132.0/22 46589 -74.121.136.0/21 30419 -74.121.144.0/22 32477 -74.121.148.0/22 25820 -74.121.152.0/21 3361 -74.121.160.0/21 603 -74.121.168.0/22 14352 -74.121.172.0/22 23314 -74.121.180.0/22 53264 -74.121.184.0/21 23033 -74.121.192.0/21 36473 -74.121.200.0/23 15189 -74.121.202.0/24 15189 -74.121.216.0/21 46576 -74.121.224.0/21 26921 -74.121.232.0/21 53370 -74.121.240.0/22 11365 -74.121.244.0/22 53414 -74.121.250.0/23 17319 -74.121.252.0/22 17319 -74.122.0.0/22 17306 -74.122.4.0/22 20193 -74.122.8.0/22 32824 -74.122.12.0/23 23205 -74.122.14.0/24 23205 -74.122.15.0/24 17306 -74.122.16.0/22 53425 -74.122.24.0/23 133766 -74.122.26.0/23 393559 -74.122.30.0/23 18898 -74.122.36.0/22 53433 -74.122.40.0/21 23051 -74.122.48.0/24 10919 -74.122.52.0/22 46525 -74.122.56.0/22 55286 -74.122.60.0/22 36352 -74.122.64.0/21 23486 -74.122.72.0/22 2941 -74.122.76.0/22 29844 -74.122.83.0/24 30047 -74.122.84.0/23 30047 -74.122.86.0/24 30047 -74.122.88.0/21 46650 -74.122.96.0/22 397347 -74.122.100.0/22 23338 -74.122.104.0/22 26569 -74.122.108.0/22 15695 -74.122.112.0/22 32367 -74.122.116.0/24 32035 -74.122.117.0/24 10940 -74.122.118.0/23 32035 -74.122.120.0/22 46785 -74.122.124.0/22 53430 -74.122.128.0/21 20161 -74.122.136.0/22 1614 -74.122.144.0/24 26224 -74.122.145.0/24 394610 -74.122.146.0/23 394609 -74.122.148.0/22 62844 -74.122.152.0/21 6939 -74.122.160.0/23 394581 -74.122.164.0/22 14982 -74.122.176.0/24 14033 -74.122.179.0/24 3549 -74.122.180.0/22 22087 -74.122.184.0/21 15211 -74.122.192.0/22 53264 -74.122.196.0/23 53264 -74.122.198.0/24 20278 -74.122.199.0/24 53264 -74.122.204.0/22 27195 -74.122.208.0/21 36698 -74.122.216.0/22 19137 -74.122.220.0/22 53450 -74.122.224.0/21 30063 -74.122.232.0/22 35975 -74.122.237.0/24 35975 -74.122.238.0/23 35975 -74.122.241.0/24 14618 -74.122.244.0/22 40727 -74.122.248.0/21 5740 -74.123.8.0/22 13851 -74.123.12.0/22 11071 -74.123.16.0/21 30676 -74.123.24.0/22 27527 -74.123.32.0/22 393713 -74.123.36.0/22 13617 -74.123.52.0/22 14292 -74.123.56.0/21 36742 -74.123.64.0/23 16856 -74.123.68.0/22 30500 -74.123.72.0/23 40641 -74.123.74.0/24 40641 -74.123.76.0/22 40641 -74.123.80.0/22 53429 -74.123.84.0/22 53830 -74.123.88.0/22 40620 -74.123.92.0/22 40191 -74.123.104.0/22 14860 -74.123.108.0/22 19759 -74.123.112.0/23 23142 -74.123.120.0/21 53373 -74.123.128.0/22 26671 -74.123.132.0/22 30009 -74.123.144.0/24 16938 -74.123.146.0/24 16938 -74.123.147.0/24 3549 -74.123.152.0/22 394901 -74.123.156.0/23 18911 -74.123.159.0/24 18911 -74.123.160.0/21 25961 -74.123.168.0/21 18948 -74.123.176.0/24 46182 -74.123.177.0/24 17144 -74.123.178.0/23 46182 -74.123.180.0/23 22742 -74.123.184.0/22 62776 -74.123.188.0/22 33544 -74.123.197.0/24 23354 -74.123.200.0/22 25885 -74.123.204.0/24 4549 -74.123.205.0/24 25885 -74.123.206.0/23 25885 -74.123.208.0/22 40496 -74.123.212.0/23 40496 -74.123.215.0/24 40496 -74.123.216.0/21 11560 -74.123.224.0/23 18865 -74.123.227.0/24 18865 -74.123.228.0/22 26328 -74.123.232.0/21 17030 -74.123.240.0/22 53469 -74.123.244.0/22 11554 -74.123.248.0/21 46826 -74.124.0.0/20 13354 -74.124.16.0/21 13354 -74.124.24.0/23 13354 -74.124.26.0/24 26405 -74.124.27.0/24 13354 -74.124.28.0/22 13354 -74.124.32.0/23 394437 -74.124.34.0/23 22442 -74.124.36.0/22 22442 -74.124.40.0/24 32340 -74.124.41.0/24 22442 -74.124.42.0/23 22442 -74.124.44.0/24 394437 -74.124.45.0/24 22442 -74.124.46.0/23 22442 -74.124.48.0/24 394437 -74.124.49.0/24 22442 -74.124.50.0/24 22442 -74.124.51.0/24 394437 -74.124.52.0/22 22442 -74.124.56.0/23 22442 -74.124.58.0/23 394437 -74.124.60.0/24 55291 -74.124.61.0/24 22442 -74.124.62.0/23 22442 -74.124.64.0/18 7782 -74.124.128.0/20 40718 -74.124.144.0/20 15313 -74.124.160.0/19 22709 -74.124.192.0/24 17139 -74.124.193.0/24 22611 -74.124.194.0/23 22611 -74.124.196.0/24 17139 -74.124.197.0/24 22611 -74.124.198.0/24 22611 -74.124.199.0/24 17139 -74.124.200.0/24 22611 -74.124.201.0/24 17139 -74.124.202.0/23 22611 -74.124.204.0/22 17139 -74.124.208.0/23 17139 -74.124.210.0/23 22611 -74.124.212.0/22 22611 -74.124.216.0/24 17139 -74.124.217.0/24 22611 -74.124.218.0/23 22611 -74.124.220.0/22 17139 -74.124.224.0/19 7029 -74.125.0.0/16 15169 -74.126.0.0/21 12129 -74.126.8.0/22 12129 -74.126.12.0/24 12129 -74.126.13.0/24 55293 -74.126.14.0/23 12129 -74.126.16.0/24 54178 -74.126.17.0/24 12129 -74.126.18.0/23 55293 -74.126.20.0/22 12129 -74.126.24.0/23 55293 -74.126.26.0/23 12129 -74.126.28.0/23 12129 -74.126.30.0/23 55293 -74.126.32.0/20 26166 -74.126.48.0/20 22773 -74.126.64.0/21 7106 -74.126.72.0/21 394708 -74.126.80.0/20 19271 -74.126.96.0/19 4540 -74.126.128.0/20 14615 -74.126.144.0/23 1421 -74.126.146.0/23 30359 -74.126.148.0/22 1421 -74.126.152.0/24 1421 -74.126.153.0/24 15083 -74.126.154.0/23 1421 -74.126.156.0/22 1421 -74.126.160.0/23 19969 -74.126.162.0/23 19853 -74.126.164.0/22 19853 -74.126.168.0/21 19853 -74.126.176.0/21 19853 -74.126.184.0/23 19853 -74.126.186.0/23 19969 -74.126.188.0/22 19853 -74.126.192.0/20 29873 -74.126.208.0/20 20308 -74.126.224.0/20 26919 -74.126.240.0/20 46231 -74.127.0.0/18 7393 -74.127.64.0/22 396185 -74.127.68.0/22 40020 -74.127.75.0/24 397893 -74.127.76.0/22 40020 -74.127.83.0/24 53959 -74.127.84.0/22 53959 -74.127.88.0/24 14064 -74.127.89.0/24 396185 -74.127.90.0/24 396185 -74.127.92.0/23 397893 -74.127.100.0/22 63107 -74.127.104.0/23 53959 -74.127.110.0/23 30119 -74.127.112.0/23 30119 -74.127.116.0/23 53959 -74.127.119.0/24 53959 -74.127.122.0/23 30119 -74.127.124.0/23 30119 -74.127.126.0/24 36788 -74.127.128.0/18 16904 -74.127.192.0/21 22995 -74.127.200.0/22 22995 -74.127.204.0/23 22995 -74.127.208.0/20 22995 -74.127.224.0/22 22995 -74.127.236.0/22 22995 -74.127.240.0/21 22995 -74.128.0.0/13 10796 -74.136.0.0/14 10796 -74.140.0.0/15 10796 -74.142.0.0/18 10796 -74.142.64.0/20 10796 -74.142.80.0/23 10796 -74.142.82.0/24 14554 -74.142.83.0/24 10796 -74.142.84.0/22 10796 -74.142.88.0/21 10796 -74.142.96.0/19 10796 -74.142.128.0/17 10796 -74.143.0.0/17 10796 -74.143.128.0/20 10796 -74.143.144.0/21 10796 -74.143.152.0/22 10796 -74.143.156.0/23 10796 -74.143.158.0/24 10796 -74.143.159.0/24 14554 -74.143.160.0/20 10796 -74.143.176.0/22 10796 -74.143.180.0/24 33629 -74.143.181.0/24 10796 -74.143.182.0/23 10796 -74.143.184.0/21 10796 -74.143.192.0/18 10796 -74.144.0.0/12 7922 -74.164.0.0/17 7018 -74.164.128.0/19 6389 -74.164.160.0/20 6389 -74.164.176.0/20 7018 -74.164.192.0/18 7018 -74.165.0.0/17 7018 -74.165.128.0/18 7018 -74.165.192.0/19 6389 -74.165.224.0/19 7018 -74.166.0.0/16 7018 -74.167.0.0/19 6389 -74.167.32.0/20 6389 -74.167.48.0/20 7018 -74.167.64.0/19 7018 -74.167.96.0/20 7018 -74.167.112.0/20 6389 -74.167.128.0/19 7018 -74.167.160.0/20 7018 -74.167.176.0/20 6389 -74.167.192.0/20 6389 -74.167.208.0/20 7018 -74.167.224.0/19 7018 -74.168.0.0/18 7018 -74.168.64.0/18 6389 -74.168.128.0/18 6389 -74.168.192.0/19 7018 -74.168.224.0/19 6389 -74.169.0.0/16 7018 -74.170.0.0/19 7018 -74.170.32.0/19 6389 -74.170.64.0/18 7018 -74.170.128.0/18 7018 -74.170.192.0/20 7018 -74.170.208.0/20 6389 -74.170.224.0/19 6389 -74.171.0.0/18 7018 -74.171.64.0/19 6389 -74.171.96.0/20 7018 -74.171.112.0/20 6389 -74.171.128.0/20 7018 -74.171.144.0/20 6389 -74.171.160.0/19 6389 -74.171.192.0/19 6389 -74.171.224.0/20 7018 -74.171.240.0/20 6389 -74.172.0.0/18 7018 -74.172.64.0/19 6389 -74.172.96.0/19 7018 -74.172.128.0/18 7018 -74.172.192.0/20 7018 -74.172.208.0/20 6389 -74.172.224.0/19 7018 -74.173.0.0/16 7018 -74.174.0.0/24 2386 -74.174.1.0/24 6389 -74.174.2.0/23 6389 -74.174.4.0/22 6389 -74.174.8.0/21 6389 -74.174.16.0/21 6389 -74.174.24.0/23 6389 -74.174.26.0/24 6389 -74.174.27.0/24 8103 -74.174.28.0/22 6389 -74.174.32.0/24 36542 -74.174.33.0/24 2386 -74.174.34.0/23 6389 -74.174.36.0/22 6389 -74.174.40.0/21 2386 -74.174.48.0/23 2386 -74.174.50.0/24 2386 -74.174.51.0/24 6389 -74.174.52.0/22 6389 -74.174.56.0/23 6389 -74.174.58.0/24 6389 -74.174.59.0/24 2386 -74.174.60.0/22 6389 -74.174.64.0/19 7018 -74.174.96.0/19 6389 -74.174.128.0/23 6389 -74.174.130.0/23 13342 -74.174.132.0/22 6389 -74.174.136.0/21 6389 -74.174.144.0/20 6389 -74.174.160.0/19 6389 -74.174.192.0/23 6389 -74.174.194.0/23 29902 -74.174.196.0/23 29902 -74.174.198.0/24 6389 -74.174.199.0/24 29902 -74.174.200.0/24 29902 -74.174.201.0/24 6389 -74.174.202.0/23 6389 -74.174.204.0/22 33218 -74.174.208.0/20 6389 -74.174.224.0/21 6389 -74.174.232.0/21 8103 -74.174.240.0/20 7018 -74.175.0.0/20 6389 -74.175.16.0/21 6389 -74.175.24.0/23 2386 -74.175.26.0/24 6389 -74.175.27.0/24 2386 -74.175.28.0/23 2386 -74.175.30.0/23 6389 -74.175.32.0/20 6389 -74.175.48.0/20 7018 -74.175.64.0/18 6389 -74.175.128.0/20 6389 -74.175.144.0/21 7018 -74.175.152.0/21 6389 -74.175.160.0/20 6389 -74.175.176.0/20 7018 -74.175.192.0/20 6389 -74.175.208.0/20 7018 -74.175.224.0/19 7018 -74.180.0.0/17 7018 -74.180.128.0/19 6389 -74.180.160.0/19 7018 -74.180.192.0/20 6389 -74.180.208.0/20 7018 -74.180.224.0/19 7018 -74.181.0.0/18 6389 -74.181.64.0/18 7018 -74.181.128.0/19 7018 -74.181.160.0/20 7018 -74.181.176.0/20 6389 -74.181.192.0/20 6389 -74.181.208.0/20 7018 -74.181.224.0/19 7018 -74.182.0.0/19 7018 -74.182.32.0/19 6389 -74.182.64.0/20 6389 -74.182.80.0/20 7018 -74.182.96.0/19 7018 -74.182.128.0/20 6389 -74.182.144.0/20 7018 -74.182.160.0/20 6389 -74.182.176.0/20 7018 -74.182.192.0/20 7018 -74.182.208.0/20 6389 -74.182.224.0/19 6389 -74.183.0.0/19 7018 -74.183.32.0/19 6389 -74.183.64.0/20 6389 -74.183.80.0/20 7018 -74.183.96.0/19 6389 -74.183.128.0/20 7018 -74.183.144.0/20 6389 -74.183.160.0/19 7018 -74.183.192.0/18 7018 -74.184.0.0/16 7018 -74.185.0.0/19 7018 -74.185.32.0/19 6389 -74.185.64.0/18 7018 -74.185.128.0/19 6389 -74.185.160.0/19 7018 -74.185.192.0/18 7018 -74.186.0.0/16 7018 -74.187.0.0/17 7018 -74.187.128.0/19 7018 -74.187.160.0/19 6389 -74.187.192.0/18 6389 -74.188.0.0/16 7018 -74.189.0.0/19 6389 -74.189.32.0/20 6389 -74.189.48.0/20 7018 -74.189.64.0/19 6389 -74.189.96.0/20 6389 -74.189.112.0/20 7018 -74.189.128.0/20 7018 -74.189.144.0/20 6389 -74.189.160.0/19 7018 -74.189.192.0/20 6389 -74.189.208.0/20 7018 -74.189.224.0/19 6389 -74.190.0.0/16 7018 -74.191.0.0/18 6389 -74.191.64.0/22 6389 -74.191.68.0/23 6389 -74.191.70.0/24 6389 -74.191.71.0/24 2386 -74.191.72.0/21 6389 -74.191.80.0/20 6389 -74.191.96.0/19 6389 -74.191.128.0/17 6389 -74.192.0.0/18 19108 -74.192.64.0/20 19108 -74.192.80.0/21 19108 -74.192.88.0/24 395183 -74.192.89.0/24 19108 -74.192.90.0/23 19108 -74.192.92.0/22 19108 -74.192.96.0/19 19108 -74.192.128.0/17 19108 -74.193.0.0/16 19108 -74.194.0.0/15 19108 -74.196.0.0/15 19108 -74.198.0.0/21 20453 -74.198.8.0/24 20453 -74.198.10.0/23 20453 -74.198.12.0/23 20453 -74.198.14.0/24 20453 -74.198.16.0/21 20453 -74.198.24.0/22 20453 -74.198.28.0/23 20453 -74.198.31.0/24 15290 -74.198.32.0/20 20453 -74.198.49.0/24 20453 -74.198.50.0/23 20453 -74.198.53.0/24 20453 -74.198.64.0/23 20453 -74.198.76.0/22 20453 -74.198.80.0/22 20453 -74.198.84.0/23 20453 -74.198.90.0/24 20453 -74.198.92.0/22 20453 -74.198.112.0/20 20453 -74.198.128.0/21 20453 -74.198.144.0/22 20453 -74.198.148.0/23 20453 -74.198.156.0/22 20453 -74.198.160.0/22 20453 -74.198.174.0/23 20453 -74.198.176.0/20 20453 -74.198.192.0/21 20453 -74.198.202.0/23 20453 -74.198.204.0/22 20453 -74.198.208.0/23 20453 -74.198.212.0/22 20453 -74.198.216.0/21 20453 -74.198.224.0/19 20453 -74.199.0.0/17 12083 -74.199.128.0/24 3257 -74.199.129.0/24 62900 -74.199.130.0/23 3257 -74.199.132.0/22 3257 -74.199.136.0/22 3257 -74.199.140.0/23 3257 -74.199.142.0/24 3257 -74.199.143.0/24 43260 -74.199.144.0/20 3257 -74.199.160.0/22 46281 -74.199.164.0/22 3257 -74.199.168.0/21 3257 -74.199.176.0/20 3257 -74.199.192.0/22 3257 -74.199.196.0/23 3257 -74.199.198.0/23 46401 -74.199.200.0/21 3257 -74.199.208.0/20 3257 -74.199.224.0/19 3257 -74.200.0.0/20 36031 -74.200.16.0/22 40341 -74.200.20.0/23 27272 -74.200.22.0/23 36030 -74.200.24.0/21 40341 -74.200.32.0/24 14010 -74.200.33.0/24 30665 -74.200.34.0/23 14010 -74.200.36.0/24 14010 -74.200.37.0/24 30665 -74.200.38.0/23 14010 -74.200.40.0/22 14010 -74.200.44.0/24 30605 -74.200.45.0/24 14010 -74.200.46.0/23 14010 -74.200.48.0/22 14010 -74.200.52.0/23 14010 -74.200.54.0/24 30652 -74.200.55.0/24 14010 -74.200.56.0/22 30605 -74.200.60.0/22 14010 -74.200.64.0/20 14383 -74.200.80.0/21 14383 -74.200.88.0/22 14383 -74.200.92.0/24 30568 -74.200.93.0/24 14383 -74.200.94.0/24 30568 -74.200.95.0/24 14383 -74.200.96.0/24 46271 -74.200.98.0/24 46250 -74.200.101.0/24 25854 -74.200.102.0/24 46271 -74.200.105.0/24 46271 -74.200.106.0/23 46250 -74.200.108.0/24 46271 -74.200.115.0/24 25854 -74.200.116.0/24 393340 -74.200.117.0/24 25854 -74.200.118.0/24 25854 -74.200.121.0/24 393340 -74.200.122.0/24 393340 -74.200.123.0/24 36031 -74.200.124.0/24 25854 -74.200.125.0/24 393803 -74.200.126.0/24 21867 -74.200.127.0/24 12188 -74.200.128.0/24 393605 -74.200.129.0/24 22645 -74.200.130.0/23 22645 -74.200.132.0/24 62912 -74.200.133.0/24 22645 -74.200.134.0/24 18791 -74.200.135.0/24 22645 -74.200.136.0/23 22645 -74.200.138.0/24 18777 -74.200.139.0/24 22645 -74.200.140.0/24 397289 -74.200.141.0/24 22645 -74.200.142.0/23 22645 -74.200.144.0/20 22645 -74.200.160.0/20 22645 -74.200.176.0/22 22645 -74.200.180.0/23 22645 -74.200.182.0/24 22645 -74.200.183.0/24 14085 -74.200.184.0/24 22645 -74.200.185.0/24 54700 -74.200.186.0/24 13359 -74.200.187.0/24 16905 -74.200.188.0/24 22645 -74.200.189.0/24 13359 -74.200.190.0/24 14085 -74.200.191.0/24 54700 -74.200.192.0/18 19994 -74.201.0.0/21 19024 -74.201.8.0/24 40695 -74.201.9.0/24 19024 -74.201.10.0/23 19024 -74.201.12.0/23 19024 -74.201.14.0/24 19024 -74.201.15.0/24 40150 -74.201.16.0/24 7046 -74.201.17.0/24 10912 -74.201.18.0/23 10912 -74.201.20.0/22 10912 -74.201.24.0/21 35913 -74.201.32.0/22 14742 -74.201.36.0/22 10493 -74.201.40.0/22 10493 -74.201.44.0/23 12184 -74.201.46.0/23 14742 -74.201.48.0/20 12179 -74.201.64.0/24 10912 -74.201.65.0/24 63142 -74.201.66.0/23 13789 -74.201.68.0/24 13789 -74.201.69.0/24 10912 -74.201.70.0/23 10912 -74.201.72.0/24 63018 -74.201.73.0/24 10912 -74.201.74.0/23 10912 -74.201.76.0/22 10912 -74.201.80.0/21 12182 -74.201.88.0/23 40885 -74.201.90.0/23 16417 -74.201.92.0/23 12182 -74.201.94.0/24 394506 -74.201.95.0/24 12182 -74.201.96.0/24 14742 -74.201.97.0/24 14136 -74.201.98.0/23 14742 -74.201.100.0/23 14742 -74.201.102.0/23 393218 -74.201.104.0/23 14742 -74.201.106.0/23 393218 -74.201.108.0/24 14742 -74.201.109.0/24 13791 -74.201.110.0/23 14742 -74.201.112.0/22 12182 -74.201.116.0/24 16417 -74.201.117.0/24 12182 -74.201.118.0/23 12182 -74.201.120.0/22 12182 -74.201.124.0/23 12182 -74.201.126.0/24 12182 -74.201.127.0/24 54538 -74.201.128.0/22 13789 -74.201.132.0/24 13789 -74.201.133.0/24 11810 -74.201.134.0/24 13789 -74.201.135.0/24 6640 -74.201.136.0/24 13789 -74.201.137.0/24 29791 -74.201.138.0/23 13789 -74.201.140.0/24 6640 -74.201.141.0/24 21734 -74.201.142.0/23 13789 -74.201.144.0/22 13789 -74.201.148.0/24 18692 -74.201.149.0/24 26945 -74.201.150.0/23 13789 -74.201.152.0/21 13789 -74.201.160.0/22 13789 -74.201.164.0/24 13789 -74.201.165.0/24 6640 -74.201.166.0/23 13789 -74.201.168.0/24 12235 -74.201.169.0/24 13789 -74.201.170.0/23 14745 -74.201.172.0/23 29791 -74.201.174.0/24 40846 -74.201.175.0/24 13789 -74.201.176.0/24 46754 -74.201.177.0/24 63018 -74.201.178.0/23 13789 -74.201.180.0/23 13789 -74.201.182.0/24 394183 -74.201.183.0/24 13789 -74.201.184.0/21 12180 -74.201.192.0/23 29791 -74.201.194.0/23 13789 -74.201.196.0/22 13789 -74.201.200.0/23 13789 -74.201.202.0/23 29791 -74.201.204.0/23 29791 -74.201.206.0/23 13789 -74.201.208.0/22 13789 -74.201.212.0/23 13789 -74.201.214.0/23 29791 -74.201.216.0/24 63018 -74.201.217.0/24 13789 -74.201.218.0/23 29791 -74.201.220.0/24 13789 -74.201.221.0/24 63018 -74.201.222.0/23 13789 -74.201.224.0/23 13789 -74.201.226.0/24 6640 -74.201.227.0/24 30651 -74.201.228.0/23 29791 -74.201.230.0/23 14745 -74.201.232.0/24 6640 -74.201.233.0/24 13789 -74.201.234.0/23 13789 -74.201.236.0/24 13789 -74.201.237.0/24 6640 -74.201.238.0/23 13789 -74.201.240.0/24 6640 -74.201.241.0/24 13789 -74.201.242.0/23 13789 -74.201.244.0/23 13789 -74.201.246.0/23 18692 -74.201.248.0/23 13789 -74.201.250.0/24 13789 -74.201.251.0/24 21734 -74.201.252.0/22 13789 -74.202.0.0/24 21817 -74.202.1.0/24 3549 -74.202.2.0/23 3549 -74.202.4.0/22 3549 -74.202.8.0/24 18597 -74.202.9.0/24 3549 -74.202.10.0/23 3549 -74.202.12.0/22 3549 -74.202.16.0/20 3549 -74.202.32.0/22 3549 -74.202.36.0/23 3549 -74.202.38.0/24 3549 -74.202.39.0/24 54711 -74.202.40.0/22 3549 -74.202.44.0/24 3549 -74.202.45.0/24 395389 -74.202.46.0/23 3549 -74.202.48.0/23 32899 -74.202.50.0/24 3549 -74.202.51.0/24 27585 -74.202.52.0/22 3549 -74.202.56.0/22 3549 -74.202.60.0/23 3549 -74.202.62.0/24 3549 -74.202.63.0/24 21742 -74.202.64.0/21 3549 -74.202.72.0/23 3549 -74.202.74.0/24 3549 -74.202.75.0/24 33599 -74.202.76.0/22 3549 -74.202.80.0/20 3549 -74.202.96.0/24 3549 -74.202.97.0/24 19552 -74.202.98.0/23 3549 -74.202.100.0/24 21829 -74.202.101.0/24 3549 -74.202.102.0/23 3549 -74.202.104.0/24 3549 -74.202.105.0/24 3356 -74.202.106.0/23 3549 -74.202.108.0/23 3549 -74.202.110.0/24 23223 -74.202.111.0/24 3549 -74.202.112.0/23 3549 -74.202.114.0/24 19233 -74.202.115.0/24 3549 -74.202.116.0/22 3549 -74.202.120.0/21 3549 -74.202.128.0/21 3549 -74.202.136.0/23 3549 -74.202.138.0/24 3549 -74.202.139.0/24 26254 -74.202.140.0/23 3549 -74.202.142.0/24 26254 -74.202.143.0/24 54592 -74.202.144.0/22 3549 -74.202.148.0/23 3549 -74.202.150.0/23 14982 -74.202.152.0/24 3549 -74.202.153.0/24 31918 -74.202.154.0/23 3549 -74.202.156.0/24 3549 -74.202.157.0/24 22778 -74.202.158.0/23 3549 -74.202.160.0/21 3549 -74.202.168.0/22 3549 -74.202.172.0/24 18669 -74.202.173.0/24 3549 -74.202.174.0/24 3549 -74.202.175.0/24 29725 -74.202.176.0/24 3549 -74.202.177.0/24 54939 -74.202.178.0/23 3549 -74.202.180.0/22 3549 -74.202.184.0/22 3549 -74.202.188.0/23 3549 -74.202.190.0/24 14637 -74.202.191.0/24 3549 -74.202.192.0/23 3549 -74.202.194.0/24 3549 -74.202.195.0/24 25649 -74.202.196.0/22 3549 -74.202.200.0/23 26421 -74.202.202.0/23 3549 -74.202.204.0/22 3549 -74.202.208.0/24 3549 -74.202.209.0/24 26038 -74.202.210.0/23 3549 -74.202.212.0/24 10057 -74.202.213.0/24 3549 -74.202.214.0/23 3549 -74.202.216.0/21 3549 -74.202.224.0/21 3549 -74.202.232.0/23 3549 -74.202.234.0/24 3549 -74.202.235.0/24 395313 -74.202.236.0/23 3549 -74.202.238.0/23 25694 -74.202.240.0/24 40551 -74.202.241.0/24 3549 -74.202.242.0/23 3549 -74.202.244.0/22 3549 -74.202.248.0/23 3549 -74.202.250.0/23 23157 -74.202.252.0/22 3549 -74.203.0.0/19 3549 -74.203.32.0/20 3549 -74.203.48.0/23 36656 -74.203.50.0/24 10988 -74.203.51.0/24 3549 -74.203.52.0/22 3549 -74.203.56.0/24 3549 -74.203.57.0/24 36656 -74.203.58.0/23 3549 -74.203.60.0/22 3549 -74.203.64.0/21 3549 -74.203.72.0/22 32899 -74.203.76.0/23 3549 -74.203.78.0/24 3549 -74.203.79.0/24 32268 -74.203.80.0/24 19233 -74.203.81.0/24 3549 -74.203.82.0/24 3549 -74.203.83.0/24 11276 -74.203.84.0/22 3549 -74.203.88.0/21 3549 -74.203.96.0/21 3549 -74.203.104.0/22 3549 -74.203.108.0/23 3549 -74.203.110.0/24 14002 -74.203.111.0/24 3549 -74.203.112.0/21 3549 -74.203.120.0/24 3549 -74.203.121.0/24 19818 -74.203.122.0/23 3549 -74.203.124.0/24 3549 -74.203.125.0/24 20197 -74.203.126.0/24 20197 -74.203.127.0/24 3549 -74.203.128.0/21 3549 -74.203.136.0/24 3549 -74.203.137.0/24 62737 -74.203.138.0/23 3549 -74.203.140.0/22 3549 -74.203.144.0/21 3549 -74.203.152.0/24 46245 -74.203.153.0/24 30305 -74.203.154.0/24 3549 -74.203.155.0/24 29720 -74.203.156.0/22 3549 -74.203.160.0/22 3549 -74.203.164.0/23 3549 -74.203.166.0/23 63483 -74.203.168.0/24 63483 -74.203.169.0/24 3549 -74.203.170.0/23 3549 -74.203.172.0/22 3549 -74.203.176.0/22 3549 -74.203.180.0/23 3549 -74.203.182.0/24 3549 -74.203.183.0/24 5777 -74.203.184.0/23 17156 -74.203.186.0/23 26144 -74.203.188.0/22 3257 -74.203.192.0/21 3549 -74.203.200.0/24 23012 -74.203.201.0/24 10969 -74.203.202.0/24 33395 -74.203.203.0/24 3549 -74.203.204.0/24 3549 -74.203.205.0/24 32332 -74.203.206.0/23 3549 -74.203.208.0/22 3549 -74.203.212.0/23 3549 -74.203.214.0/24 395554 -74.203.215.0/24 54341 -74.203.216.0/21 3549 -74.203.224.0/21 3549 -74.203.232.0/24 3549 -74.203.233.0/24 54822 -74.203.234.0/23 3549 -74.203.236.0/23 3549 -74.203.238.0/24 3549 -74.203.239.0/24 26122 -74.203.240.0/21 3549 -74.203.248.0/24 40683 -74.203.249.0/24 3549 -74.203.250.0/24 3549 -74.203.251.0/24 53873 -74.203.252.0/22 3549 -74.204.0.0/21 26554 -74.204.8.0/22 26554 -74.204.12.0/23 26554 -74.204.14.0/24 394502 -74.204.15.0/24 26554 -74.204.16.0/20 26554 -74.204.32.0/22 26554 -74.204.36.0/24 14842 -74.204.37.0/24 26554 -74.204.38.0/23 26554 -74.204.40.0/21 26554 -74.204.48.0/23 26554 -74.204.50.0/23 18675 -74.204.52.0/23 26554 -74.204.54.0/23 18675 -74.204.56.0/23 18675 -74.204.58.0/23 26554 -74.204.60.0/22 26554 -74.204.64.0/21 26554 -74.204.72.0/22 26554 -74.204.76.0/23 26554 -74.204.78.0/24 46746 -74.204.79.0/24 26554 -74.204.80.0/22 26554 -74.204.84.0/24 13457 -74.204.85.0/24 26554 -74.204.86.0/23 26554 -74.204.88.0/21 26554 -74.204.96.0/21 26554 -74.204.104.0/21 23254 -74.204.112.0/20 26554 -74.204.128.0/19 13368 -74.204.160.0/20 14383 -74.204.176.0/21 14383 -74.204.184.0/23 14383 -74.204.186.0/23 30568 -74.204.188.0/22 30568 -74.204.197.0/24 17088 -74.204.218.0/24 17088 -74.204.221.0/24 17088 -74.204.222.0/23 17088 -74.204.244.0/23 17088 -74.204.248.0/24 17088 -74.204.249.0/24 36102 -74.204.250.0/24 36102 -74.204.251.0/24 17088 -74.204.252.0/24 17088 -74.204.254.0/23 17088 -74.205.0.0/19 27357 -74.205.32.0/19 33070 -74.205.64.0/18 33070 -74.205.128.0/22 26827 -74.205.132.0/24 14209 -74.205.133.0/24 26827 -74.205.134.0/23 26827 -74.205.136.0/23 26827 -74.205.138.0/24 26520 -74.205.139.0/24 26827 -74.205.140.0/22 26827 -74.205.144.0/20 39939 -74.205.161.0/24 14214 -74.205.162.0/23 14214 -74.205.164.0/23 14214 -74.205.168.0/23 14214 -74.205.174.0/24 53618 -74.205.176.0/22 53618 -74.205.180.0/23 53618 -74.205.186.0/24 53618 -74.205.192.0/21 64242 -74.205.200.0/22 64242 -74.205.204.0/22 395341 -74.205.208.0/22 36493 -74.205.212.0/24 7271 -74.205.213.0/24 36493 -74.205.214.0/23 36493 -74.205.216.0/22 36493 -74.205.220.0/24 36493 -74.205.221.0/24 22404 -74.205.222.0/23 36493 -74.205.224.0/19 7381 -74.206.0.0/20 18687 -74.206.16.0/22 18687 -74.206.20.0/22 14265 -74.206.24.0/21 18687 -74.206.32.0/21 393892 -74.206.40.0/21 14363 -74.206.48.0/24 14363 -74.206.49.0/24 32331 -74.206.50.0/23 32331 -74.206.52.0/22 32331 -74.206.56.0/22 32331 -74.206.60.0/23 32331 -74.206.62.0/23 35871 -74.206.64.0/19 20477 -74.206.96.0/19 12025 -74.206.128.0/22 21804 -74.206.132.0/23 21804 -74.206.134.0/23 53543 -74.206.136.0/21 53543 -74.206.144.0/20 21804 -74.206.160.0/19 27589 -74.206.192.0/21 35873 -74.206.200.0/22 35873 -74.206.208.0/22 35873 -74.206.220.0/22 35873 -74.206.224.0/20 27257 -74.206.240.0/23 27257 -74.206.242.0/24 27257 -74.206.243.0/24 20264 -74.206.244.0/22 36057 -74.206.248.0/21 36057 -74.207.0.0/21 19685 -74.207.14.0/24 19685 -74.207.17.0/24 19685 -74.207.18.0/23 19685 -74.207.28.0/24 19685 -74.207.29.0/24 25712 -74.207.30.0/24 25712 -74.207.31.0/24 19685 -74.207.32.0/24 394099 -74.207.33.0/24 46115 -74.207.34.0/23 46115 -74.207.36.0/23 394099 -74.207.39.0/24 394099 -74.207.40.0/21 46115 -74.207.48.0/20 46115 -74.207.64.0/18 16489 -74.207.128.0/18 14543 -74.207.192.0/20 29877 -74.207.208.0/20 22958 -74.207.224.0/19 63949 -74.208.0.0/16 8560 -74.209.0.0/22 32645 -74.209.4.0/23 14671 -74.209.6.0/23 12175 -74.209.8.0/22 12175 -74.209.12.0/22 18712 -74.209.16.0/20 14671 -74.209.32.0/23 32645 -74.209.35.0/24 209 -74.209.36.0/23 22647 -74.209.39.0/24 174 -74.209.40.0/21 32645 -74.209.48.0/22 32645 -74.209.52.0/24 12175 -74.209.54.0/23 12175 -74.209.56.0/22 7018 -74.209.60.0/23 7018 -74.209.62.0/24 12175 -74.209.63.0/24 32645 -74.209.128.0/23 12989 -74.209.130.0/23 34305 -74.209.132.0/23 34305 -74.209.134.0/23 12989 -74.209.136.0/21 12989 -74.209.144.0/20 39948 -74.209.160.0/23 19528 -74.209.162.0/24 19528 -74.209.163.0/24 14011 -74.209.165.0/24 3361 -74.209.168.0/24 19528 -74.209.170.0/23 19528 -74.209.174.0/24 19528 -74.209.176.0/20 19528 -74.209.192.0/18 29944 -74.210.0.0/17 812 -74.210.128.0/17 11290 -74.211.0.0/18 4181 -74.211.64.0/19 4181 -74.211.96.0/19 25820 -74.211.128.0/17 18566 -74.212.0.0/20 3593 -74.212.16.0/22 3593 -74.212.20.0/23 3593 -74.212.22.0/24 31990 -74.212.23.0/24 3593 -74.212.24.0/23 3593 -74.212.26.0/24 13454 -74.212.27.0/24 3593 -74.212.28.0/22 3593 -74.212.32.0/19 3593 -74.212.64.0/21 11492 -74.212.72.0/23 11492 -74.212.76.0/24 11492 -74.212.78.0/23 11492 -74.212.80.0/23 11492 -74.212.83.0/24 11492 -74.212.84.0/22 11492 -74.212.88.0/22 11492 -74.212.92.0/23 11492 -74.212.95.0/24 11492 -74.212.96.0/20 11492 -74.212.112.0/22 11492 -74.212.120.0/21 11492 -74.212.128.0/21 21628 -74.212.136.0/22 29930 -74.212.140.0/23 21879 -74.212.142.0/24 21879 -74.212.143.0/24 10723 -74.212.144.0/21 29930 -74.212.152.0/23 29930 -74.212.154.0/24 29930 -74.212.155.0/24 16601 -74.212.156.0/22 19982 -74.212.160.0/21 19982 -74.212.168.0/23 26878 -74.212.170.0/24 11223 -74.212.171.0/24 26878 -74.212.172.0/22 26878 -74.212.176.0/22 18923 -74.212.180.0/24 27251 -74.212.181.0/24 26878 -74.212.182.0/23 26878 -74.212.184.0/21 40579 -74.212.192.0/18 14265 -74.213.0.0/18 11215 -74.213.64.0/20 14638 -74.213.80.0/21 14638 -74.213.88.0/22 14638 -74.213.92.0/23 14638 -74.213.94.0/24 14638 -74.213.95.0/24 36423 -74.213.96.0/22 14638 -74.213.100.0/24 36423 -74.213.101.0/24 14638 -74.213.102.0/23 14638 -74.213.104.0/24 14638 -74.213.105.0/24 36423 -74.213.106.0/24 14638 -74.213.107.0/24 36423 -74.213.108.0/23 14638 -74.213.110.0/24 14638 -74.213.111.0/24 36423 -74.213.112.0/22 14638 -74.213.116.0/23 14638 -74.213.118.0/24 36423 -74.213.119.0/24 14638 -74.213.120.0/21 14638 -74.213.128.0/19 7349 -74.213.160.0/23 23498 -74.213.162.0/24 53338 -74.213.163.0/24 23498 -74.213.164.0/22 23498 -74.213.168.0/21 23498 -74.213.176.0/20 23498 -74.213.192.0/20 36728 -74.213.208.0/20 3663 -74.213.224.0/21 14978 -74.213.232.0/23 14978 -74.213.234.0/23 6461 -74.213.236.0/24 209 -74.213.237.0/24 14978 -74.213.238.0/23 14978 -74.213.240.0/20 14978 -74.214.3.0/24 16526 -74.214.16.0/21 33227 -74.214.24.0/22 33227 -74.214.28.0/23 33227 -74.214.30.0/24 33227 -74.214.31.0/24 11013 -74.214.32.0/22 36790 -74.214.36.0/23 36790 -74.214.38.0/24 36790 -74.214.39.0/24 26504 -74.214.40.0/21 26504 -74.214.48.0/23 26504 -74.214.50.0/23 36790 -74.214.52.0/24 36790 -74.214.53.0/24 26504 -74.214.54.0/23 26504 -74.214.56.0/24 36790 -74.214.57.0/24 21688 -74.214.58.0/23 21688 -74.214.60.0/22 21688 -74.214.64.0/19 22739 -74.214.96.0/19 18794 -74.214.128.0/19 36817 -74.214.160.0/20 25956 -74.214.176.0/20 3801 -74.214.193.0/24 19189 -74.214.194.0/24 59940 -74.214.196.0/23 19189 -74.214.200.0/21 30145 -74.214.208.0/20 29744 -74.214.224.0/19 36728 -74.215.0.0/16 6181 -74.216.0.0/18 15290 -74.216.64.0/19 15290 -74.216.96.0/21 15290 -74.216.104.0/22 15290 -74.216.108.0/24 6401 -74.216.109.0/24 15290 -74.216.110.0/23 15290 -74.216.112.0/20 15290 -74.216.128.0/17 15290 -74.217.0.0/21 19024 -74.217.8.0/24 19024 -74.217.9.0/24 46852 -74.217.10.0/23 19024 -74.217.12.0/24 14148 -74.217.13.0/24 19024 -74.217.14.0/24 19024 -74.217.15.0/24 6640 -74.217.16.0/21 12181 -74.217.24.0/22 10912 -74.217.28.0/22 29791 -74.217.32.0/20 14745 -74.217.48.0/24 53766 -74.217.49.0/24 13789 -74.217.50.0/23 13789 -74.217.52.0/22 13789 -74.217.56.0/22 13789 -74.217.60.0/23 13789 -74.217.62.0/24 40235 -74.217.63.0/24 13789 -74.217.64.0/23 12182 -74.217.66.0/24 26558 -74.217.67.0/24 12182 -74.217.68.0/23 12182 -74.217.70.0/24 23023 -74.217.71.0/24 13607 -74.217.72.0/24 40885 -74.217.73.0/24 27385 -74.217.74.0/24 12182 -74.217.75.0/24 54993 -74.217.76.0/22 12182 -74.217.80.0/21 10913 -74.217.88.0/24 393954 -74.217.89.0/24 10913 -74.217.90.0/24 54538 -74.217.91.0/24 10913 -74.217.92.0/24 10913 -74.217.93.0/24 55256 -74.217.94.0/24 40150 -74.217.95.0/24 10913 -74.217.96.0/24 36119 -74.217.97.0/24 13607 -74.217.98.0/23 12182 -74.217.100.0/23 12182 -74.217.102.0/24 12180 -74.217.103.0/24 10912 -74.217.104.0/22 12180 -74.217.108.0/23 16893 -74.217.110.0/24 63417 -74.217.111.0/24 12182 -74.217.112.0/22 12180 -74.217.116.0/23 12180 -74.217.118.0/23 12178 -74.217.120.0/21 14745 -74.217.128.0/24 11854 -74.217.129.0/24 14744 -74.217.130.0/23 12180 -74.217.132.0/22 12180 -74.217.136.0/24 14902 -74.217.137.0/24 20186 -74.217.138.0/23 11854 -74.217.140.0/24 36180 -74.217.141.0/24 11854 -74.217.142.0/23 11854 -74.217.144.0/21 10912 -74.217.152.0/21 14745 -74.217.160.0/22 13789 -74.217.164.0/24 13789 -74.217.165.0/24 14610 -74.217.166.0/23 13789 -74.217.168.0/23 13789 -74.217.170.0/24 26200 -74.217.171.0/24 19602 -74.217.172.0/22 14745 -74.217.176.0/21 14745 -74.217.184.0/24 11855 -74.217.185.0/24 12180 -74.217.186.0/24 11855 -74.217.187.0/24 12180 -74.217.188.0/22 12180 -74.217.192.0/22 14743 -74.217.196.0/23 14743 -74.217.198.0/24 63362 -74.217.199.0/24 14743 -74.217.200.0/21 14743 -74.217.208.0/21 12182 -74.217.216.0/23 12182 -74.217.218.0/24 12182 -74.217.219.0/24 40885 -74.217.220.0/22 12182 -74.217.224.0/23 13789 -74.217.226.0/23 54739 -74.217.228.0/22 13789 -74.217.232.0/24 13789 -74.217.233.0/24 31774 -74.217.234.0/23 36544 -74.217.236.0/24 14745 -74.217.237.0/24 54155 -74.217.238.0/23 14745 -74.217.240.0/22 10913 -74.217.244.0/23 10913 -74.217.246.0/24 13791 -74.217.247.0/24 18690 -74.217.248.0/22 10913 -74.217.252.0/23 10913 -74.217.254.0/23 13789 -74.218.0.0/19 10796 -74.218.32.0/22 10796 -74.218.36.0/23 10796 -74.218.38.0/24 11781 -74.218.39.0/24 10796 -74.218.40.0/21 10796 -74.218.48.0/20 10796 -74.218.64.0/22 10796 -74.218.68.0/24 25670 -74.218.69.0/24 10796 -74.218.70.0/23 10796 -74.218.72.0/22 10796 -74.218.76.0/24 46697 -74.218.77.0/24 10796 -74.218.78.0/23 10796 -74.218.80.0/20 10796 -74.218.96.0/19 10796 -74.218.128.0/20 10796 -74.218.144.0/24 10796 -74.218.145.0/24 14352 -74.218.146.0/23 10796 -74.218.148.0/22 10796 -74.218.152.0/21 10796 -74.218.160.0/19 11426 -74.218.192.0/22 33363 -74.218.196.0/23 33363 -74.218.198.0/24 33363 -74.218.199.0/24 10796 -74.218.200.0/21 33363 -74.218.208.0/20 10796 -74.218.224.0/19 11426 -74.219.0.0/19 11426 -74.219.32.0/19 10796 -74.219.64.0/23 33363 -74.219.66.0/24 10796 -74.219.67.0/24 36199 -74.219.68.0/22 33363 -74.219.72.0/21 33363 -74.219.80.0/21 10796 -74.219.88.0/22 10796 -74.219.92.0/23 10796 -74.219.94.0/23 33363 -74.219.96.0/22 10796 -74.219.100.0/24 27175 -74.219.101.0/24 10796 -74.219.102.0/24 26500 -74.219.103.0/24 10796 -74.219.104.0/21 10796 -74.219.112.0/20 10796 -74.219.128.0/20 10796 -74.219.144.0/21 10796 -74.219.152.0/23 10796 -74.219.154.0/24 40715 -74.219.155.0/24 10796 -74.219.156.0/22 10796 -74.219.160.0/21 10796 -74.219.168.0/22 5787 -74.219.172.0/22 10796 -74.219.176.0/20 10796 -74.219.192.0/19 10796 -74.219.224.0/24 10796 -74.219.225.0/24 63129 -74.219.226.0/23 10796 -74.219.228.0/22 10796 -74.219.232.0/21 10796 -74.219.240.0/20 10796 -74.220.0.0/20 26472 -74.220.32.0/20 15175 -74.220.48.0/22 7029 -74.220.52.0/24 7029 -74.220.53.0/24 11169 -74.220.54.0/23 7029 -74.220.56.0/21 7029 -74.220.64.0/20 7065 -74.220.80.0/22 46251 -74.220.88.0/24 11383 -74.220.96.0/24 19807 -74.220.97.0/24 18488 -74.220.98.0/24 18484 -74.220.99.0/24 17307 -74.220.100.0/24 18484 -74.220.101.0/24 19808 -74.220.102.0/24 18491 -74.220.103.0/24 19804 -74.220.104.0/24 18485 -74.220.105.0/24 19809 -74.220.106.0/23 17307 -74.220.108.0/22 17307 -74.220.112.0/24 19803 -74.220.113.0/24 19804 -74.220.114.0/23 17307 -74.220.116.0/22 17307 -74.220.120.0/22 17307 -74.220.124.0/24 19803 -74.220.125.0/24 17307 -74.220.126.0/23 17307 -74.220.128.0/20 23404 -74.220.144.0/21 14127 -74.220.152.0/23 14127 -74.220.156.0/23 14127 -74.220.158.0/24 14127 -74.220.160.0/19 29974 -74.220.192.0/19 46606 -74.220.224.0/20 21547 -74.220.240.0/20 23175 -74.221.0.0/21 21725 -74.221.8.0/23 21725 -74.221.10.0/24 21725 -74.221.11.0/24 23404 -74.221.12.0/22 21725 -74.221.16.0/20 4540 -74.221.32.0/20 32867 -74.221.48.0/20 46208 -74.221.64.0/21 29979 -74.221.72.0/23 29979 -74.221.74.0/24 53742 -74.221.75.0/24 29979 -74.221.76.0/22 29979 -74.221.80.0/23 394492 -74.221.82.0/24 394492 -74.221.86.0/23 394492 -74.221.88.0/21 54324 -74.221.96.0/19 17306 -74.221.128.0/24 396982 -74.221.129.0/24 16509 -74.221.130.0/24 16509 -74.221.131.0/24 14618 -74.221.133.0/24 16509 -74.221.135.0/24 16509 -74.221.137.0/24 16509 -74.221.139.0/24 16509 -74.221.141.0/24 16509 -74.221.144.0/20 23158 -74.221.160.0/20 14955 -74.221.176.0/20 26827 -74.221.192.0/20 26760 -74.221.210.0/23 174 -74.221.212.0/22 174 -74.221.216.0/21 174 -74.221.224.0/20 19893 -74.221.240.0/20 29877 -74.222.0.0/19 22439 -74.222.32.0/19 16399 -74.222.64.0/19 36549 -74.222.96.0/19 20257 -74.222.128.0/20 35908 -74.222.144.0/21 35908 -74.222.152.0/21 18552 -74.222.160.0/19 35908 -74.222.192.0/18 18712 -74.223.0.0/16 7029 -74.228.0.0/18 7018 -74.228.64.0/19 7018 -74.228.96.0/19 6389 -74.228.128.0/19 7018 -74.228.160.0/20 6389 -74.228.176.0/21 7018 -74.228.184.0/21 6389 -74.228.192.0/18 7018 -74.229.0.0/18 7018 -74.229.64.0/19 7018 -74.229.96.0/19 6389 -74.229.128.0/20 7018 -74.229.144.0/20 6389 -74.229.160.0/21 7018 -74.229.168.0/21 6389 -74.229.176.0/20 7018 -74.229.192.0/20 6389 -74.229.208.0/20 7018 -74.229.224.0/19 7018 -74.230.0.0/18 6389 -74.230.64.0/18 7018 -74.230.128.0/18 7018 -74.230.192.0/19 7018 -74.230.224.0/19 6389 -74.231.0.0/18 6389 -74.231.64.0/19 6389 -74.231.96.0/20 6389 -74.231.112.0/21 6389 -74.231.120.0/21 13368 -74.231.128.0/20 6389 -74.231.144.0/22 6389 -74.231.148.0/24 6389 -74.231.149.0/24 18974 -74.231.150.0/23 6389 -74.231.152.0/21 6389 -74.231.160.0/23 54392 -74.231.162.0/24 6389 -74.231.163.0/24 54392 -74.231.164.0/22 6389 -74.231.168.0/21 6389 -74.231.176.0/20 6389 -74.231.192.0/22 6389 -74.231.196.0/24 30187 -74.231.197.0/24 6389 -74.231.198.0/23 6389 -74.231.200.0/21 6389 -74.231.208.0/20 6389 -74.231.224.0/21 6389 -74.231.232.0/22 6389 -74.231.236.0/24 6389 -74.231.237.0/24 20450 -74.231.238.0/24 26712 -74.231.239.0/24 6389 -74.231.240.0/20 6389 -74.232.0.0/17 7018 -74.232.128.0/18 7018 -74.232.192.0/19 6389 -74.232.224.0/19 7018 -74.233.0.0/16 7018 -74.236.0.0/17 7018 -74.236.128.0/19 7018 -74.236.160.0/20 7018 -74.236.176.0/20 6389 -74.236.192.0/20 7018 -74.236.208.0/21 7018 -74.236.216.0/21 6389 -74.236.224.0/20 7018 -74.236.240.0/20 6389 -74.237.0.0/17 7018 -74.237.128.0/19 7018 -74.237.160.0/20 7018 -74.237.176.0/20 6389 -74.237.192.0/19 7018 -74.237.224.0/20 6389 -74.237.240.0/20 7018 -74.238.0.0/17 7018 -74.238.128.0/18 7018 -74.238.192.0/19 7018 -74.238.224.0/20 7018 -74.238.240.0/20 6389 -74.239.0.0/20 6389 -74.239.16.0/20 7018 -74.239.32.0/20 7018 -74.239.48.0/20 6389 -74.239.64.0/20 6389 -74.239.80.0/20 7018 -74.239.96.0/19 7018 -74.239.128.0/20 7018 -74.239.144.0/20 6389 -74.239.160.0/19 7018 -74.239.192.0/19 7018 -74.239.224.0/20 6389 -74.239.240.0/20 7018 -74.244.0.0/17 7018 -74.244.128.0/19 6389 -74.244.160.0/21 7018 -74.244.168.0/21 6389 -74.244.176.0/20 6389 -74.244.192.0/19 6389 -74.244.224.0/19 7018 -74.245.0.0/18 7018 -74.245.64.0/19 7018 -74.245.96.0/19 6389 -74.245.128.0/19 6389 -74.245.160.0/19 7018 -74.245.192.0/18 7018 -74.246.0.0/17 7018 -74.246.128.0/18 7018 -74.246.192.0/20 7018 -74.246.208.0/20 6389 -74.246.224.0/20 7018 -74.246.240.0/20 6389 -74.247.0.0/19 6389 -74.247.32.0/20 7018 -74.247.48.0/20 6389 -74.247.64.0/19 7018 -74.247.96.0/20 7018 -74.247.112.0/20 6389 -74.247.128.0/20 6389 -74.247.144.0/20 7018 -74.247.160.0/20 7018 -74.247.176.0/20 6389 -74.247.192.0/18 7018 -74.250.0.0/18 6389 -74.250.64.0/18 7018 -74.250.128.0/18 6389 -74.250.192.0/18 7018 -74.251.0.0/17 6389 -74.251.128.0/18 7018 -74.251.192.0/19 7018 -74.251.224.0/20 7018 -74.251.240.0/20 6389 -74.252.0.0/18 6389 -74.252.64.0/19 6389 -74.252.96.0/22 6389 -74.252.100.0/22 8103 -74.252.104.0/24 8103 -74.252.105.0/24 6389 -74.252.106.0/23 6389 -74.252.108.0/22 6389 -74.252.112.0/20 6389 -74.252.128.0/17 6389 -74.253.0.0/16 6389 -74.254.0.0/18 6389 -74.254.64.0/24 6389 -74.254.65.0/24 2939 -74.254.66.0/23 6389 -74.254.68.0/22 6389 -74.254.72.0/21 6389 -74.254.80.0/20 6389 -74.254.96.0/22 6389 -74.254.100.0/23 8103 -74.254.102.0/23 6389 -74.254.104.0/21 6389 -74.254.112.0/23 6389 -74.254.114.0/24 6389 -74.254.115.0/24 13378 -74.254.116.0/22 6389 -74.254.120.0/21 6389 -74.254.128.0/21 6389 -74.254.136.0/22 6389 -74.254.140.0/23 6389 -74.254.142.0/24 6389 -74.254.143.0/24 32032 -74.254.144.0/22 6389 -74.254.148.0/23 6389 -74.254.150.0/24 27622 -74.254.151.0/24 6389 -74.254.152.0/24 6389 -74.254.153.0/24 2386 -74.254.154.0/23 6389 -74.254.156.0/22 2386 -74.254.160.0/19 6389 -74.254.192.0/22 6389 -74.254.196.0/23 13342 -74.254.198.0/23 6389 -74.254.200.0/22 6389 -74.254.204.0/22 13342 -74.254.208.0/20 6389 -74.254.224.0/19 6389 -74.255.0.0/19 6389 -74.255.32.0/21 6389 -74.255.40.0/23 6389 -74.255.42.0/24 40057 -74.255.43.0/24 6389 -74.255.44.0/22 6389 -74.255.48.0/20 6389 -74.255.64.0/18 6389 -74.255.128.0/23 6389 -74.255.130.0/24 40892 -74.255.131.0/24 6389 -74.255.132.0/22 6389 -74.255.136.0/21 6389 -74.255.144.0/20 6389 -74.255.160.0/19 6389 -74.255.192.0/18 6389 -75.0.0.0/15 7018 -75.2.0.0/17 16509 -75.2.192.0/18 7018 -75.3.64.0/18 7018 -75.3.192.0/18 7018 -75.4.0.0/16 7018 -75.5.0.0/17 7018 -75.5.128.0/18 7018 -75.5.192.0/21 7018 -75.5.200.0/24 7018 -75.5.201.0/24 20442 -75.5.202.0/23 7018 -75.5.204.0/22 7018 -75.5.208.0/20 7018 -75.5.224.0/19 7018 -75.6.0.0/16 7018 -75.7.0.0/18 7018 -75.7.64.0/21 36426 -75.7.72.0/21 7018 -75.7.80.0/20 7018 -75.7.96.0/19 7018 -75.7.128.0/17 7018 -75.8.0.0/15 7018 -75.10.0.0/18 7018 -75.10.64.0/22 7018 -75.10.68.0/24 395132 -75.10.69.0/24 7018 -75.10.70.0/23 7018 -75.10.72.0/21 7018 -75.10.80.0/20 7018 -75.10.96.0/19 7018 -75.10.128.0/18 7018 -75.10.192.0/19 7018 -75.10.224.0/20 395733 -75.10.240.0/20 7018 -75.11.0.0/17 7018 -75.11.128.0/18 7018 -75.11.192.0/19 7018 -75.11.224.0/21 7018 -75.11.232.0/23 16778 -75.11.234.0/23 7018 -75.11.236.0/22 7018 -75.11.240.0/23 7018 -75.11.242.0/24 18674 -75.11.243.0/24 7018 -75.11.244.0/22 7018 -75.11.248.0/21 7018 -75.12.0.0/15 7018 -75.14.0.0/16 7018 -75.15.0.0/18 7018 -75.15.64.0/22 16788 -75.15.68.0/22 7018 -75.15.72.0/21 7018 -75.15.80.0/20 7018 -75.15.96.0/19 7018 -75.15.128.0/17 7018 -75.16.0.0/14 7018 -75.20.0.0/15 7018 -75.22.0.0/17 7018 -75.22.128.0/18 7018 -75.23.0.0/16 7018 -75.24.0.0/15 7018 -75.26.0.0/16 7018 -75.27.0.0/17 7018 -75.27.128.0/20 7018 -75.27.144.0/21 7018 -75.27.152.0/23 40054 -75.27.154.0/23 7018 -75.27.156.0/22 7018 -75.27.160.0/19 7018 -75.27.192.0/18 7018 -75.28.0.0/15 7018 -75.30.0.0/16 7018 -75.31.0.0/18 7018 -75.31.64.0/19 7018 -75.31.96.0/20 7018 -75.31.112.0/21 7018 -75.31.120.0/23 7018 -75.31.122.0/24 23093 -75.31.123.0/24 7018 -75.31.124.0/22 7018 -75.31.128.0/17 7018 -75.32.0.0/14 7018 -75.36.0.0/16 7018 -75.37.0.0/17 7018 -75.37.128.0/18 7018 -75.37.192.0/20 7018 -75.37.208.0/24 7018 -75.37.209.0/24 22474 -75.37.210.0/23 7018 -75.37.212.0/22 7018 -75.37.216.0/21 7018 -75.37.224.0/19 7018 -75.38.0.0/15 7018 -75.40.0.0/17 7018 -75.40.128.0/20 7018 -75.40.144.0/22 7018 -75.40.148.0/23 7018 -75.40.150.0/24 7018 -75.40.151.0/24 46817 -75.40.152.0/21 7018 -75.40.160.0/19 7018 -75.40.192.0/18 7018 -75.41.0.0/19 7018 -75.41.32.0/22 7018 -75.41.36.0/23 7018 -75.41.38.0/24 7018 -75.41.39.0/24 22842 -75.41.40.0/21 7018 -75.41.48.0/20 7018 -75.41.64.0/18 7018 -75.41.128.0/20 7018 -75.41.144.0/22 36105 -75.41.148.0/22 7018 -75.41.152.0/21 7018 -75.41.160.0/19 7018 -75.41.192.0/18 7018 -75.42.0.0/17 7018 -75.42.128.0/18 7018 -75.42.192.0/21 7018 -75.42.200.0/23 7018 -75.42.202.0/24 17338 -75.42.203.0/24 18434 -75.42.204.0/22 7018 -75.42.208.0/20 7018 -75.42.224.0/19 7018 -75.43.0.0/16 7018 -75.44.0.0/16 7018 -75.45.0.0/17 7018 -75.45.192.0/18 7018 -75.46.0.0/17 7018 -75.46.128.0/18 7018 -75.46.192.0/20 7018 -75.46.208.0/22 397314 -75.46.212.0/22 7018 -75.46.216.0/21 7018 -75.46.224.0/19 7018 -75.47.64.0/18 7018 -75.47.192.0/18 7018 -75.48.0.0/14 7018 -75.52.0.0/15 7018 -75.54.0.0/19 7018 -75.54.32.0/21 2386 -75.54.40.0/21 7018 -75.54.48.0/20 7018 -75.54.64.0/18 7018 -75.54.128.0/17 7018 -75.55.0.0/16 7018 -75.56.0.0/16 7018 -75.57.0.0/22 7018 -75.57.4.0/24 7018 -75.57.5.0/26 7018 -75.57.5.64/27 7018 -75.57.5.96/28 7018 -75.57.5.113/32 7018 -75.57.5.114/31 7018 -75.57.5.116/30 7018 -75.57.5.120/29 7018 -75.57.5.128/25 7018 -75.57.6.0/23 7018 -75.57.8.0/21 7018 -75.57.16.0/20 7018 -75.57.32.0/19 7018 -75.57.64.0/18 7018 -75.57.128.0/17 7018 -75.58.0.0/15 7018 -75.60.0.0/15 7018 -75.62.0.0/16 7018 -75.63.0.0/17 7018 -75.63.128.0/18 7018 -75.63.192.0/19 7018 -75.63.224.0/20 7018 -75.63.240.0/21 7018 -75.63.248.0/23 17338 -75.63.250.0/23 7018 -75.63.252.0/22 7018 -75.64.0.0/13 7922 -75.72.0.0/15 7922 -75.74.0.0/16 7922 -75.75.0.0/17 7922 -75.75.128.0/18 7922 -75.75.192.0/19 14103 -75.75.224.0/19 62904 -75.76.0.0/19 12083 -75.76.32.0/21 12083 -75.76.40.0/22 12083 -75.76.44.0/23 12083 -75.76.46.0/24 12083 -75.76.47.0/24 20412 -75.76.48.0/20 12083 -75.76.64.0/18 12083 -75.76.128.0/23 12083 -75.76.130.0/23 20412 -75.76.132.0/22 12083 -75.76.136.0/23 20412 -75.76.138.0/23 12083 -75.76.140.0/22 12083 -75.76.144.0/20 12083 -75.76.161.0/24 20412 -75.76.162.0/24 20412 -75.76.163.0/24 12083 -75.76.164.0/22 20412 -75.76.168.0/22 20412 -75.76.172.0/24 12083 -75.76.173.0/24 20412 -75.76.174.0/24 12083 -75.76.175.0/24 20412 -75.76.176.0/24 12083 -75.76.177.0/24 20412 -75.76.178.0/23 12083 -75.76.180.0/22 12083 -75.76.184.0/21 12083 -75.76.192.0/19 12083 -75.76.224.0/21 12083 -75.76.232.0/22 12083 -75.76.236.0/24 18934 -75.76.237.0/24 12083 -75.76.238.0/23 12083 -75.76.240.0/20 12083 -75.77.0.0/20 7029 -75.77.16.0/21 7029 -75.77.24.0/22 7029 -75.77.28.0/23 7029 -75.77.30.0/24 7029 -75.77.31.0/24 46145 -75.77.32.0/22 7029 -75.77.36.0/23 7029 -75.77.38.0/23 26296 -75.77.40.0/21 7029 -75.77.48.0/20 7029 -75.77.64.0/18 7029 -75.77.128.0/18 7029 -75.77.192.0/19 7029 -75.77.224.0/20 7029 -75.77.240.0/21 7029 -75.77.248.0/22 7029 -75.77.252.0/24 7029 -75.77.253.0/24 40852 -75.77.254.0/23 7029 -75.78.0.0/22 6498 -75.78.7.0/24 6498 -75.78.8.0/24 11429 -75.78.32.0/22 21650 -75.78.36.0/24 11429 -75.78.37.0/24 6498 -75.78.60.0/22 6498 -75.78.96.0/21 6498 -75.78.104.0/23 6498 -75.78.106.0/24 6498 -75.78.109.0/24 6498 -75.78.112.0/21 6498 -75.78.124.0/22 3356 -75.78.160.0/22 21650 -75.78.164.0/22 6498 -75.78.168.0/22 3356 -75.78.176.0/22 3356 -75.78.180.0/24 11429 -75.78.182.0/24 11429 -75.78.184.0/22 3356 -75.78.192.0/22 6498 -75.78.198.0/24 6498 -75.78.200.0/22 6498 -75.78.204.0/23 6498 -75.78.208.0/24 6498 -75.78.210.0/23 6498 -75.78.212.0/22 3356 -75.78.216.0/23 6498 -75.78.218.0/24 3356 -75.78.219.0/24 6498 -75.78.220.0/22 6498 -75.78.224.0/24 6498 -75.78.227.0/24 6498 -75.78.229.0/24 6498 -75.78.234.0/24 6498 -75.78.236.0/22 6498 -75.80.0.0/16 20001 -75.81.0.0/17 11427 -75.81.128.0/19 11427 -75.81.160.0/20 11427 -75.81.176.0/20 20001 -75.81.192.0/18 10796 -75.82.0.0/15 20001 -75.84.0.0/15 20001 -75.86.0.0/16 10796 -75.87.0.0/17 11427 -75.87.128.0/18 11427 -75.87.192.0/19 10796 -75.87.224.0/20 20001 -75.87.240.0/20 10838 -75.88.0.0/14 7029 -75.94.248.0/22 12042 -75.94.254.0/23 16586 -75.95.0.0/22 16586 -75.95.52.0/23 16586 -75.95.56.0/22 16586 -75.95.144.0/20 8047 -75.96.144.0/23 19812 -75.96.146.0/24 19812 -75.96.147.0/24 15570 -75.96.160.0/22 19812 -75.96.164.0/24 19812 -75.96.165.0/24 3491 -75.96.166.0/23 19812 -75.96.182.0/24 19812 -75.97.0.0/16 3737 -75.98.0.0/22 12182 -75.98.4.0/24 394738 -75.98.5.0/24 12182 -75.98.6.0/24 55256 -75.98.7.0/24 18850 -75.98.8.0/24 12182 -75.98.9.0/24 31988 -75.98.10.0/23 12182 -75.98.12.0/22 12182 -75.98.16.0/24 13768 -75.98.17.0/24 11854 -75.98.18.0/23 11854 -75.98.20.0/22 11854 -75.98.24.0/24 13791 -75.98.25.0/24 18690 -75.98.26.0/23 13791 -75.98.28.0/23 13791 -75.98.30.0/24 13791 -75.98.31.0/24 18690 -75.98.32.0/23 14744 -75.98.34.0/23 13789 -75.98.36.0/23 29791 -75.98.38.0/23 13789 -75.98.40.0/23 13789 -75.98.42.0/24 19812 -75.98.43.0/24 13789 -75.98.44.0/23 13789 -75.98.46.0/24 35913 -75.98.47.0/24 13789 -75.98.48.0/21 12179 -75.98.56.0/24 13789 -75.98.57.0/24 22064 -75.98.58.0/24 13789 -75.98.59.0/24 32957 -75.98.60.0/23 16719 -75.98.62.0/23 13789 -75.98.64.0/24 13789 -75.98.65.0/24 33206 -75.98.66.0/23 13789 -75.98.68.0/23 13789 -75.98.70.0/24 26558 -75.98.71.0/24 13789 -75.98.72.0/23 13789 -75.98.74.0/24 40019 -75.98.75.0/24 13789 -75.98.76.0/24 13789 -75.98.77.0/24 19602 -75.98.78.0/24 13789 -75.98.79.0/24 31824 -75.98.80.0/24 394808 -75.98.81.0/24 19012 -75.98.82.0/23 12182 -75.98.84.0/22 12182 -75.98.88.0/22 12182 -75.98.92.0/24 12182 -75.98.93.0/24 18915 -75.98.94.0/24 13607 -75.98.95.0/24 12182 -75.98.96.0/20 21737 -75.98.112.0/20 11708 -75.98.128.0/20 22652 -75.98.144.0/20 32444 -75.98.160.0/20 55293 -75.98.176.0/20 12033 -75.98.192.0/22 21949 -75.98.196.0/23 21949 -75.98.198.0/24 17241 -75.98.199.0/24 21949 -75.98.200.0/22 21949 -75.98.204.0/23 21949 -75.98.206.0/24 21949 -75.98.207.0/24 7257 -75.98.208.0/20 11352 -75.98.224.0/20 3549 -75.98.240.0/20 14841 -75.99.0.0/16 6128 -75.100.0.0/17 4181 -75.100.128.0/19 4181 -75.100.160.0/21 4181 -75.100.168.0/22 4181 -75.100.172.0/23 4181 -75.100.174.0/24 4181 -75.100.175.0/24 46674 -75.100.176.0/20 4181 -75.100.192.0/18 4181 -75.101.0.0/19 7065 -75.101.32.0/19 46375 -75.101.64.0/19 7065 -75.101.96.0/20 46375 -75.101.112.0/20 7065 -75.101.128.0/17 14618 -75.102.0.0/21 23352 -75.102.8.0/23 23352 -75.102.10.0/24 36352 -75.102.11.0/24 23352 -75.102.12.0/22 23352 -75.102.16.0/21 23352 -75.102.24.0/23 23352 -75.102.26.0/24 23352 -75.102.27.0/24 36352 -75.102.28.0/23 23352 -75.102.30.0/24 22370 -75.102.31.0/24 23352 -75.102.32.0/24 23352 -75.102.33.0/24 30081 -75.102.34.0/24 36352 -75.102.35.0/24 23352 -75.102.36.0/23 23352 -75.102.38.0/23 36352 -75.102.40.0/23 23352 -75.102.42.0/24 30081 -75.102.43.0/24 23352 -75.102.44.0/23 393713 -75.102.46.0/23 23352 -75.102.48.0/20 23352 -75.102.64.0/18 3999 -75.102.128.0/23 63383 -75.102.130.0/24 11114 -75.102.131.0/24 63383 -75.102.132.0/24 63383 -75.102.133.0/24 3549 -75.102.134.0/23 63383 -75.102.136.0/22 63383 -75.102.141.0/24 63383 -75.102.142.0/23 63383 -75.102.144.0/20 23131 -75.102.160.0/19 13576 -75.102.192.0/18 20130 -75.103.0.0/23 3356 -75.103.2.0/23 14676 -75.103.4.0/22 14676 -75.103.8.0/22 3356 -75.103.12.0/23 3356 -75.103.14.0/23 14676 -75.103.16.0/23 3356 -75.103.18.0/23 14676 -75.103.20.0/22 14676 -75.103.24.0/23 14676 -75.103.26.0/23 3356 -75.103.28.0/22 3356 -75.103.32.0/22 3356 -75.103.36.0/22 14676 -75.103.40.0/21 14676 -75.103.48.0/21 3356 -75.103.56.0/22 3356 -75.103.60.0/22 14676 -75.103.64.0/18 14992 -75.103.128.0/18 19751 -75.103.192.0/19 19751 -75.103.224.0/22 22925 -75.103.228.0/23 22925 -75.103.230.0/24 26767 -75.103.231.0/24 22925 -75.103.232.0/21 22925 -75.103.240.0/20 22925 -75.104.0.0/20 7155 -75.104.16.0/23 7155 -75.104.18.0/24 7155 -75.104.19.0/24 16491 -75.104.20.0/22 7155 -75.104.24.0/21 7155 -75.104.32.0/19 7155 -75.104.64.0/18 7155 -75.104.128.0/18 7155 -75.104.192.0/19 7155 -75.104.224.0/22 7155 -75.104.228.0/22 16491 -75.104.232.0/21 16491 -75.104.240.0/20 7155 -75.105.0.0/16 7155 -75.106.0.0/16 7155 -75.107.0.0/17 7155 -75.107.128.0/19 7155 -75.107.160.0/20 7155 -75.107.176.0/22 7155 -75.107.180.0/24 16491 -75.107.181.0/24 7155 -75.107.182.0/23 7155 -75.107.184.0/21 7155 -75.107.192.0/24 40306 -75.107.193.0/24 7155 -75.107.194.0/23 7155 -75.107.196.0/22 7155 -75.107.200.0/21 7155 -75.107.208.0/20 7155 -75.107.224.0/19 7155 -75.108.0.0/14 19108 -75.112.0.0/18 33363 -75.112.64.0/22 33363 -75.112.68.0/24 53979 -75.112.69.0/24 33363 -75.112.70.0/23 33363 -75.112.72.0/21 33363 -75.112.80.0/20 33363 -75.112.96.0/19 33363 -75.112.128.0/20 33363 -75.112.144.0/23 33363 -75.112.146.0/24 30171 -75.112.147.0/24 33363 -75.112.148.0/24 393993 -75.112.149.0/24 33363 -75.112.150.0/23 33363 -75.112.152.0/21 33363 -75.112.160.0/20 33363 -75.112.176.0/23 33363 -75.112.178.0/24 33363 -75.112.179.0/24 18696 -75.112.180.0/22 33363 -75.112.184.0/22 33363 -75.112.188.0/24 393447 -75.112.189.0/24 33363 -75.112.190.0/23 33363 -75.112.192.0/18 33363 -75.113.0.0/16 33363 -75.114.0.0/17 33363 -75.114.128.0/22 33363 -75.114.140.0/22 33363 -75.114.152.0/21 33363 -75.114.192.0/18 33363 -75.115.0.0/16 33363 -75.116.0.0/18 6167 -75.116.64.0/19 6167 -75.116.96.0/20 6167 -75.116.112.0/21 6167 -75.116.120.0/22 6167 -75.116.124.0/23 6167 -75.116.126.0/23 22394 -75.116.128.0/17 6167 -75.117.0.0/16 7029 -75.118.0.0/16 12083 -75.119.0.0/17 7029 -75.119.128.0/18 13645 -75.119.192.0/20 26347 -75.119.209.0/24 26347 -75.119.210.0/23 26347 -75.119.212.0/22 26347 -75.119.216.0/21 26347 -75.119.224.0/19 5645 -75.120.0.0/19 209 -75.120.32.0/20 209 -75.120.48.0/20 22561 -75.120.64.0/19 209 -75.120.96.0/20 22561 -75.120.112.0/22 209 -75.120.116.0/22 22561 -75.120.120.0/22 209 -75.120.124.0/22 22561 -75.120.128.0/19 209 -75.120.160.0/21 22561 -75.120.168.0/22 22561 -75.120.172.0/23 22561 -75.120.174.0/24 209 -75.120.175.0/24 22561 -75.120.176.0/20 22561 -75.120.192.0/20 22561 -75.120.208.0/21 22561 -75.120.216.0/22 22561 -75.120.220.0/22 209 -75.120.224.0/20 209 -75.120.240.0/21 209 -75.120.248.0/21 22561 -75.121.0.0/21 22561 -75.121.8.0/21 209 -75.121.16.0/22 209 -75.121.20.0/22 22561 -75.121.24.0/21 209 -75.121.32.0/22 209 -75.121.36.0/22 22561 -75.121.40.0/21 22561 -75.121.48.0/22 209 -75.121.52.0/22 22561 -75.121.56.0/22 22561 -75.121.60.0/22 209 -75.121.64.0/22 209 -75.121.68.0/22 22561 -75.121.72.0/22 22561 -75.121.76.0/22 209 -75.121.80.0/20 22561 -75.121.96.0/21 22561 -75.121.104.0/22 209 -75.121.108.0/22 22561 -75.121.112.0/20 22561 -75.121.128.0/19 22561 -75.121.160.0/21 22561 -75.121.168.0/21 209 -75.121.176.0/21 209 -75.121.184.0/21 22561 -75.121.192.0/21 22561 -75.121.200.0/22 22561 -75.121.204.0/22 209 -75.121.208.0/20 22561 -75.121.224.0/22 22561 -75.121.228.0/22 209 -75.121.232.0/21 209 -75.121.240.0/20 22561 -75.124.64.0/21 19812 -75.124.72.0/22 19812 -75.124.76.0/24 13789 -75.124.77.0/24 19812 -75.124.78.0/23 19812 -75.125.0.0/16 36351 -75.126.0.0/16 36351 -75.127.0.0/20 36352 -75.127.16.0/20 11624 -75.127.32.0/21 26410 -75.127.40.0/24 26410 -75.127.41.0/24 22036 -75.127.42.0/23 26410 -75.127.44.0/22 26410 -75.127.48.0/20 21557 -75.127.64.0/24 7226 -75.127.65.0/24 11042 -75.127.66.0/23 11042 -75.127.68.0/23 11042 -75.127.70.0/24 7226 -75.127.71.0/24 11042 -75.127.72.0/24 63949 -75.127.73.0/24 11042 -75.127.74.0/23 11042 -75.127.76.0/24 11042 -75.127.77.0/24 3595 -75.127.78.0/23 11042 -75.127.80.0/21 7226 -75.127.88.0/23 11042 -75.127.90.0/24 7226 -75.127.91.0/24 11042 -75.127.92.0/24 7226 -75.127.93.0/24 11042 -75.127.94.0/23 7226 -75.127.96.0/23 63949 -75.127.98.0/23 11042 -75.127.100.0/22 11042 -75.127.104.0/22 7226 -75.127.108.0/23 11042 -75.127.110.0/24 7226 -75.127.111.0/24 11042 -75.127.112.0/24 7226 -75.127.113.0/24 11042 -75.127.114.0/23 7226 -75.127.116.0/24 7226 -75.127.117.0/24 11042 -75.127.118.0/24 7226 -75.127.119.0/24 11042 -75.127.120.0/22 11042 -75.127.124.0/22 7226 -75.127.128.0/17 6128 -75.128.0.0/17 20115 -75.128.128.0/19 20115 -75.128.160.0/21 20115 -75.128.168.0/23 20115 -75.128.170.0/24 20115 -75.128.171.0/24 26305 -75.128.172.0/22 20115 -75.128.176.0/20 20115 -75.128.192.0/19 20115 -75.128.224.0/21 20115 -75.128.232.0/22 20115 -75.128.236.0/24 19115 -75.128.237.0/24 20115 -75.128.238.0/23 20115 -75.128.240.0/20 20115 -75.129.0.0/16 20115 -75.130.0.0/20 20115 -75.130.32.0/19 20115 -75.130.64.0/19 20115 -75.130.96.0/20 20115 -75.130.112.0/21 20115 -75.130.120.0/24 20115 -75.130.121.0/24 19115 -75.130.122.0/24 20115 -75.130.123.0/24 394795 -75.130.124.0/22 20115 -75.130.128.0/17 20115 -75.131.0.0/17 20115 -75.131.128.0/19 20115 -75.131.160.0/20 20115 -75.131.176.0/21 20115 -75.131.184.0/24 20115 -75.131.185.0/24 54124 -75.131.186.0/23 20115 -75.131.188.0/22 20115 -75.131.192.0/18 20115 -75.132.0.0/14 20115 -75.136.0.0/15 20115 -75.138.0.0/17 20115 -75.138.128.0/20 20115 -75.138.160.0/19 20115 -75.138.192.0/18 20115 -75.139.0.0/16 20115 -75.140.0.0/19 20115 -75.140.32.0/21 20115 -75.140.40.0/24 20115 -75.140.41.0/24 1796 -75.140.42.0/23 20115 -75.140.44.0/22 20115 -75.140.48.0/20 20115 -75.140.64.0/18 20115 -75.140.128.0/24 13653 -75.140.129.0/24 16386 -75.140.131.0/24 19115 -75.140.132.0/22 20115 -75.140.136.0/21 20115 -75.140.144.0/20 20115 -75.140.160.0/19 20115 -75.140.192.0/18 20115 -75.141.1.0/24 14388 -75.141.2.0/24 20115 -75.141.3.0/24 23493 -75.141.4.0/24 63135 -75.141.5.0/24 20115 -75.141.6.0/24 16854 -75.141.7.0/24 14334 -75.141.8.0/24 53729 -75.141.9.0/24 20115 -75.141.11.0/24 54519 -75.141.12.0/22 20115 -75.141.16.0/20 20115 -75.141.33.0/24 20115 -75.141.35.0/24 62691 -75.141.36.0/24 20115 -75.141.37.0/24 54445 -75.141.38.0/24 54619 -75.141.39.0/24 36402 -75.141.40.0/24 27556 -75.141.42.0/24 23070 -75.141.43.0/24 33099 -75.141.44.0/24 20028 -75.141.51.0/24 54686 -75.141.52.0/22 20115 -75.141.56.0/24 395376 -75.141.57.0/24 20028 -75.141.58.0/23 20115 -75.141.60.0/24 53697 -75.141.61.0/24 55065 -75.141.62.0/24 32853 -75.141.63.0/24 55208 -75.141.64.0/24 46496 -75.141.66.0/23 20115 -75.141.68.0/24 19219 -75.141.70.0/24 32104 -75.141.71.0/24 26380 -75.141.72.0/24 63198 -75.141.73.0/24 20115 -75.141.74.0/24 394443 -75.141.75.0/24 7349 -75.141.76.0/24 394983 -75.141.78.0/24 35963 -75.141.79.0/24 32368 -75.141.80.0/24 62691 -75.141.81.0/24 20115 -75.141.83.0/24 396384 -75.141.84.0/24 62632 -75.141.85.0/24 393265 -75.141.86.0/23 20115 -75.141.88.0/24 20115 -75.141.89.0/24 395393 -75.141.90.0/24 20115 -75.141.91.0/24 394537 -75.141.92.0/24 32824 -75.141.93.0/24 55042 -75.141.94.0/24 14656 -75.141.95.0/24 62611 -75.141.96.0/19 20115 -75.141.128.0/17 20115 -75.142.0.0/16 20115 -75.143.0.0/17 20115 -75.143.128.0/18 20115 -75.143.192.0/19 33588 -75.143.224.0/19 20115 -75.144.0.0/13 7922 -75.152.0.0/16 852 -75.154.64.0/18 852 -75.154.148.0/22 852 -75.154.160.0/19 852 -75.154.224.0/19 852 -75.155.0.0/16 852 -75.156.0.0/17 852 -75.156.128.0/18 852 -75.156.243.0/24 3356 -75.157.0.0/16 852 -75.158.0.0/17 852 -75.158.128.0/19 852 -75.158.160.0/20 852 -75.158.192.0/18 852 -75.159.0.0/16 852 -75.160.0.0/12 209 -75.176.0.0/15 11426 -75.178.0.0/17 11426 -75.178.128.0/18 11426 -75.178.192.0/18 10796 -75.179.0.0/17 10796 -75.179.128.0/18 10796 -75.179.192.0/18 7843 -75.180.0.0/18 10796 -75.180.128.0/19 14065 -75.180.192.0/18 11426 -75.181.0.0/16 11426 -75.182.0.0/15 11426 -75.184.0.0/18 11426 -75.184.64.0/19 11426 -75.184.96.0/19 10796 -75.184.128.0/17 10796 -75.185.0.0/16 10796 -75.186.0.0/15 10796 -75.188.0.0/16 10796 -75.189.0.0/16 11426 -75.190.0.0/15 11426 -75.192.0.0/16 6167 -75.193.0.0/16 22394 -75.194.0.0/16 6167 -75.195.0.0/17 22394 -75.195.128.0/18 6167 -75.195.192.0/18 22394 -75.196.0.0/15 22394 -75.198.0.0/17 22394 -75.198.128.0/17 6167 -75.199.0.0/16 22394 -75.200.0.0/16 22394 -75.201.0.0/17 6167 -75.201.128.0/17 22394 -75.202.0.0/15 22394 -75.204.0.0/14 22394 -75.208.0.0/16 22394 -75.209.0.0/17 6167 -75.209.128.0/18 6167 -75.209.192.0/18 22394 -75.210.0.0/16 22394 -75.211.0.0/16 6167 -75.212.0.0/17 6167 -75.212.128.0/18 6167 -75.212.192.0/18 22394 -75.213.0.0/16 22394 -75.214.0.0/15 22394 -75.216.0.0/14 22394 -75.220.0.0/15 22394 -75.222.0.0/17 22394 -75.222.128.0/17 6167 -75.223.0.0/16 22394 -75.224.0.0/17 22394 -75.224.128.0/20 6167 -75.224.144.0/20 22394 -75.224.160.0/19 22394 -75.224.192.0/18 22394 -75.225.0.0/16 22394 -75.226.0.0/18 6167 -75.226.64.0/19 6167 -75.226.96.0/19 22394 -75.226.128.0/18 6167 -75.226.192.0/18 22394 -75.227.0.0/16 22394 -75.228.0.0/17 6167 -75.228.128.0/17 22394 -75.229.0.0/16 22394 -75.230.0.0/15 22394 -75.232.0.0/15 22394 -75.234.0.0/16 22394 -75.235.0.0/17 22394 -75.235.128.0/18 22394 -75.235.192.0/18 6167 -75.236.0.0/15 22394 -75.238.0.0/16 22394 -75.239.0.0/17 22394 -75.239.128.0/18 22394 -75.239.192.0/18 6167 -75.240.0.0/15 22394 -75.242.0.0/16 22394 -75.243.0.0/17 22394 -75.243.128.0/18 6167 -75.243.192.0/18 22394 -75.244.0.0/17 6167 -75.244.128.0/17 22394 -75.245.0.0/16 6167 -75.246.0.0/15 22394 -75.248.0.0/15 22394 -75.250.0.0/16 22394 -75.251.0.0/17 6167 -75.251.128.0/17 22394 -75.252.0.0/14 22394 -76.0.0.0/19 209 -76.0.32.0/20 209 -76.0.48.0/21 18494 -76.0.56.0/21 209 -76.0.64.0/18 209 -76.0.128.0/18 209 -76.0.192.0/19 11398 -76.0.224.0/20 11398 -76.0.240.0/21 11398 -76.0.248.0/22 209 -76.0.252.0/22 11398 -76.1.0.0/18 209 -76.1.64.0/19 209 -76.1.96.0/20 209 -76.1.112.0/20 6367 -76.1.128.0/19 14905 -76.1.160.0/19 209 -76.1.192.0/18 209 -76.2.0.0/19 14921 -76.2.32.0/19 209 -76.2.64.0/19 209 -76.2.96.0/20 2379 -76.2.112.0/22 209 -76.2.116.0/22 2379 -76.2.120.0/22 209 -76.2.124.0/23 209 -76.2.126.0/24 209 -76.2.127.0/24 2379 -76.2.128.0/20 11398 -76.2.144.0/21 11398 -76.2.152.0/22 11398 -76.2.156.0/23 209 -76.2.158.0/24 11398 -76.2.159.0/24 209 -76.2.160.0/19 209 -76.2.192.0/18 209 -76.3.0.0/21 2379 -76.3.8.0/21 209 -76.3.16.0/20 209 -76.3.32.0/20 209 -76.3.48.0/21 209 -76.3.56.0/21 18494 -76.3.64.0/18 209 -76.3.128.0/20 11398 -76.3.144.0/21 11398 -76.3.152.0/21 4283 -76.3.160.0/19 209 -76.3.192.0/19 209 -76.3.224.0/21 14905 -76.3.232.0/22 14905 -76.3.236.0/23 14905 -76.3.238.0/23 209 -76.3.240.0/21 14905 -76.3.248.0/23 14905 -76.3.250.0/24 209 -76.3.251.0/24 14905 -76.3.252.0/22 14905 -76.4.0.0/19 209 -76.4.32.0/21 209 -76.4.40.0/24 209 -76.4.41.0/24 16718 -76.4.42.0/24 16718 -76.4.43.0/24 209 -76.4.44.0/23 209 -76.4.46.0/24 16718 -76.4.47.0/24 209 -76.4.48.0/20 209 -76.4.64.0/23 209 -76.4.66.0/23 14905 -76.4.68.0/22 14905 -76.4.72.0/21 14905 -76.4.80.0/20 14905 -76.4.96.0/19 209 -76.4.128.0/17 209 -76.5.0.0/18 209 -76.5.64.0/20 14905 -76.5.80.0/21 14905 -76.5.88.0/22 209 -76.5.92.0/22 14905 -76.5.96.0/19 209 -76.5.128.0/20 13787 -76.5.144.0/21 13787 -76.5.152.0/23 13787 -76.5.154.0/24 13787 -76.5.155.0/24 209 -76.5.156.0/22 13787 -76.5.160.0/19 209 -76.5.192.0/19 209 -76.5.224.0/20 209 -76.5.240.0/21 209 -76.5.248.0/22 22561 -76.5.252.0/22 209 -76.6.0.0/19 209 -76.6.32.0/20 6222 -76.6.48.0/21 6222 -76.6.56.0/22 209 -76.6.60.0/22 6222 -76.6.64.0/18 209 -76.6.128.0/18 209 -76.6.192.0/21 2379 -76.6.200.0/24 209 -76.6.201.0/24 2379 -76.6.202.0/24 209 -76.6.203.0/24 2379 -76.6.204.0/22 2379 -76.6.208.0/20 209 -76.6.224.0/19 209 -76.7.0.0/19 22186 -76.7.32.0/24 29866 -76.7.33.0/24 2379 -76.7.34.0/23 2379 -76.7.36.0/23 395477 -76.7.38.0/23 2379 -76.7.40.0/24 2379 -76.7.41.0/24 209 -76.7.42.0/24 395477 -76.7.43.0/24 2379 -76.7.44.0/24 209 -76.7.45.0/24 2379 -76.7.46.0/24 2379 -76.7.47.0/24 26160 -76.7.48.0/22 14905 -76.7.52.0/23 14905 -76.7.54.0/23 25629 -76.7.56.0/22 14905 -76.7.60.0/23 25629 -76.7.62.0/23 14905 -76.7.64.0/20 5778 -76.7.80.0/22 13787 -76.7.84.0/22 209 -76.7.88.0/24 2379 -76.7.89.0/24 209 -76.7.90.0/23 2379 -76.7.92.0/24 2379 -76.7.93.0/24 36739 -76.7.94.0/23 2379 -76.7.96.0/19 13787 -76.7.128.0/18 13787 -76.7.192.0/18 22186 -76.8.0.0/20 32444 -76.8.16.0/23 64262 -76.8.18.0/24 396414 -76.8.19.0/24 64262 -76.8.20.0/24 395506 -76.8.21.0/24 64262 -76.8.22.0/23 64262 -76.8.24.0/23 64262 -76.8.26.0/23 395506 -76.8.28.0/22 64262 -76.8.32.0/20 16413 -76.8.48.0/22 17185 -76.8.52.0/23 17185 -76.8.54.0/24 46949 -76.8.55.0/24 17185 -76.8.56.0/22 17185 -76.8.60.0/24 397384 -76.8.61.0/24 17185 -76.8.62.0/23 17185 -76.8.64.0/24 27506 -76.8.65.0/24 25896 -76.8.66.0/23 27506 -76.8.68.0/24 27585 -76.8.69.0/24 27506 -76.8.70.0/23 27506 -76.8.72.0/22 27506 -76.8.76.0/23 27506 -76.8.78.0/24 27506 -76.8.79.0/24 21755 -76.8.80.0/22 11074 -76.8.84.0/23 11074 -76.8.86.0/24 11074 -76.8.87.0/24 40513 -76.8.88.0/24 46878 -76.8.89.0/24 11074 -76.8.90.0/24 607 -76.8.91.0/24 11074 -76.8.92.0/23 11074 -76.8.94.0/24 46887 -76.8.95.0/24 11074 -76.8.96.0/20 15153 -76.8.112.0/20 25636 -76.8.128.0/20 11766 -76.8.144.0/20 54579 -76.8.160.0/19 3801 -76.8.192.0/19 29933 -76.8.224.0/20 11272 -76.8.240.0/23 11272 -76.8.242.0/23 27250 -76.8.244.0/22 11272 -76.8.248.0/21 11272 -76.9.0.0/19 23393 -76.9.32.0/21 22573 -76.9.40.0/22 53910 -76.9.44.0/24 53910 -76.9.45.0/24 22573 -76.9.46.0/23 22573 -76.9.48.0/21 22573 -76.9.56.0/24 53910 -76.9.57.0/24 22573 -76.9.58.0/23 22573 -76.9.60.0/23 22573 -76.9.62.0/24 53910 -76.9.63.0/24 22573 -76.9.64.0/19 14750 -76.9.96.0/20 7029 -76.9.112.0/20 36394 -76.9.159.0/24 1239 -76.9.160.0/20 30264 -76.9.176.0/22 13649 -76.9.180.0/24 13649 -76.9.181.0/24 13963 -76.9.182.0/23 13649 -76.9.184.0/22 13649 -76.9.188.0/23 1616 -76.9.192.0/19 21949 -76.9.224.0/20 40091 -76.9.240.0/23 11195 -76.9.242.0/24 54736 -76.9.243.0/24 11195 -76.9.244.0/22 11195 -76.9.248.0/22 11195 -76.9.252.0/23 11195 -76.9.254.0/24 11195 -76.9.255.0/24 393628 -76.10.0.0/20 23473 -76.10.16.0/22 23473 -76.10.20.0/23 23473 -76.10.22.0/24 23473 -76.10.24.0/22 23473 -76.10.28.0/23 23473 -76.10.33.0/24 23473 -76.10.37.0/24 46925 -76.10.38.0/23 23473 -76.10.40.0/21 23473 -76.10.48.0/24 23473 -76.10.56.0/24 23473 -76.10.58.0/23 46925 -76.10.60.0/22 23473 -76.10.64.0/21 12042 -76.10.72.0/21 14090 -76.10.80.0/20 14090 -76.10.96.0/22 14090 -76.10.100.0/23 14090 -76.10.102.0/23 63414 -76.10.104.0/21 14090 -76.10.112.0/22 14090 -76.10.116.0/22 12042 -76.10.120.0/22 12042 -76.10.124.0/22 63414 -76.10.128.0/22 5645 -76.10.132.0/24 5645 -76.10.133.0/24 14659 -76.10.134.0/23 5645 -76.10.136.0/21 5645 -76.10.144.0/20 5645 -76.10.160.0/19 5645 -76.10.192.0/24 11013 -76.10.193.0/24 26278 -76.10.194.0/23 11013 -76.10.196.0/22 11013 -76.10.200.0/21 11013 -76.10.208.0/22 11013 -76.10.212.0/23 11013 -76.10.214.0/24 11013 -76.10.215.0/24 26278 -76.10.216.0/22 11013 -76.10.220.0/24 26278 -76.10.221.0/24 11013 -76.10.222.0/23 11013 -76.10.224.0/20 19223 -76.10.240.0/20 15054 -76.11.0.0/19 11260 -76.11.32.0/20 11260 -76.11.48.0/20 32233 -76.11.64.0/18 11260 -76.11.128.0/22 10796 -76.11.132.0/22 18812 -76.11.144.0/23 18812 -76.11.146.0/24 11492 -76.11.147.0/24 18812 -76.11.148.0/22 10796 -76.11.164.0/22 18812 -76.11.168.0/22 18812 -76.11.172.0/23 18812 -76.11.180.0/22 18812 -76.11.184.0/22 18812 -76.11.196.0/23 11492 -76.11.210.0/23 18812 -76.11.214.0/23 11492 -76.11.216.0/22 11492 -76.11.220.0/23 11492 -76.11.222.0/24 11492 -76.11.223.0/24 18812 -76.11.226.0/24 10796 -76.11.227.0/24 18812 -76.11.228.0/24 18812 -76.11.229.0/24 11492 -76.11.230.0/23 18812 -76.11.236.0/23 10796 -76.11.238.0/23 18812 -76.11.240.0/22 18812 -76.11.248.0/22 10796 -76.12.0.0/16 20021 -76.13.0.0/17 26101 -76.14.0.0/19 11404 -76.14.32.0/20 11404 -76.14.48.0/21 11404 -76.14.56.0/25 11404 -76.14.56.128/26 11404 -76.14.56.192/28 11404 -76.14.56.208/31 11404 -76.14.56.210/32 11404 -76.14.56.212/30 11404 -76.14.56.216/29 11404 -76.14.56.224/27 11404 -76.14.57.0/24 11404 -76.14.58.0/23 11404 -76.14.60.0/22 11404 -76.14.64.0/20 11404 -76.14.80.0/21 11404 -76.14.88.0/22 11404 -76.14.92.0/23 11404 -76.14.94.0/23 22759 -76.14.96.0/19 11404 -76.14.128.0/20 11404 -76.14.144.0/22 11397 -76.14.148.0/23 11397 -76.14.150.0/23 11404 -76.14.152.0/21 11404 -76.14.160.0/19 11404 -76.14.192.0/18 11404 -76.15.0.0/16 12271 -76.16.0.0/12 7922 -76.45.0.0/17 11955 -76.45.192.0/20 11426 -76.47.184.0/21 11426 -76.52.0.0/16 11426 -76.56.128.0/19 10796 -76.56.192.0/18 10796 -76.57.144.0/23 10796 -76.57.160.0/20 10796 -76.57.192.0/23 10796 -76.58.64.0/19 10796 -76.58.224.0/20 10796 -76.60.0.0/19 11955 -76.61.32.0/19 10796 -76.61.192.0/20 10796 -76.61.224.0/20 10796 -76.62.32.0/21 10796 -76.62.96.0/21 20001 -76.63.160.0/23 10796 -76.63.162.0/23 7843 -76.63.165.0/24 7843 -76.63.192.0/18 10796 -76.64.0.0/15 577 -76.66.0.0/16 577 -76.67.0.0/17 577 -76.67.128.0/18 577 -76.67.192.0/19 577 -76.67.224.0/19 36522 -76.68.0.0/15 577 -76.70.0.0/17 577 -76.70.128.0/19 577 -76.70.160.0/20 36522 -76.70.176.0/20 577 -76.70.192.0/20 36522 -76.70.208.0/21 577 -76.70.216.0/22 36522 -76.70.220.0/22 577 -76.70.224.0/22 577 -76.70.228.0/24 36522 -76.70.229.0/24 577 -76.70.230.0/23 36522 -76.70.232.0/21 36522 -76.70.240.0/20 36522 -76.71.0.0/16 577 -76.72.0.0/17 25921 -76.72.128.0/20 21981 -76.72.144.0/20 46826 -76.72.160.0/20 17090 -76.72.176.0/20 40237 -76.72.192.0/20 1640 -76.72.208.0/20 14909 -76.72.224.0/22 53956 -76.72.228.0/23 46632 -76.72.230.0/24 46632 -76.72.231.0/24 46719 -76.72.232.0/22 62943 -76.72.236.0/24 3257 -76.72.238.0/24 6461 -76.72.239.0/24 53956 -76.72.240.0/20 30526 -76.73.0.0/17 174 -76.73.128.0/18 12083 -76.73.192.0/23 12083 -76.73.194.0/24 20412 -76.73.195.0/24 12083 -76.73.196.0/22 12083 -76.73.200.0/24 12083 -76.73.201.0/24 20412 -76.73.202.0/23 20412 -76.73.204.0/22 12083 -76.73.208.0/20 12083 -76.73.224.0/19 12083 -76.74.0.0/24 40676 -76.74.1.0/24 3257 -76.74.2.0/23 3257 -76.74.4.0/22 3257 -76.74.8.0/21 3257 -76.74.16.0/20 3257 -76.74.32.0/22 3257 -76.74.36.0/23 40676 -76.74.38.0/23 3257 -76.74.40.0/24 40676 -76.74.41.0/24 3257 -76.74.42.0/24 40676 -76.74.43.0/24 3257 -76.74.44.0/23 3257 -76.74.46.0/24 3257 -76.74.47.0/24 40676 -76.74.48.0/24 3257 -76.74.49.0/24 19811 -76.74.50.0/23 3257 -76.74.52.0/24 40676 -76.74.53.0/24 3257 -76.74.54.0/23 3257 -76.74.56.0/22 3257 -76.74.60.0/24 40676 -76.74.61.0/24 43260 -76.74.62.0/23 3257 -76.74.64.0/21 3257 -76.74.72.0/22 3257 -76.74.76.0/23 3257 -76.74.78.0/24 40676 -76.74.79.0/24 3257 -76.74.80.0/21 3257 -76.74.88.0/22 3257 -76.74.92.0/23 46401 -76.74.94.0/23 3257 -76.74.96.0/24 23232 -76.74.97.0/24 3257 -76.74.98.0/23 3257 -76.74.100.0/22 3257 -76.74.104.0/21 3257 -76.74.112.0/23 3257 -76.74.114.0/24 3257 -76.74.115.0/24 22620 -76.74.116.0/22 3257 -76.74.120.0/22 3257 -76.74.124.0/22 23029 -76.74.128.0/19 13768 -76.74.160.0/24 23498 -76.74.161.0/24 13768 -76.74.164.0/22 13768 -76.74.168.0/21 13768 -76.74.176.0/21 13768 -76.74.184.0/23 13768 -76.74.186.0/23 54643 -76.74.188.0/22 41458 -76.74.192.0/22 13768 -76.74.196.0/23 23498 -76.74.198.0/23 13768 -76.74.200.0/21 13768 -76.74.208.0/24 15197 -76.74.210.0/24 53525 -76.74.211.0/24 23498 -76.74.216.0/21 13768 -76.74.224.0/22 13768 -76.74.228.0/23 54643 -76.74.230.0/24 13768 -76.74.231.0/24 54643 -76.74.232.0/21 13768 -76.74.240.0/22 13768 -76.74.244.0/23 13768 -76.74.246.0/23 54643 -76.74.248.0/21 13768 -76.75.0.0/23 33339 -76.75.2.0/24 33339 -76.75.3.0/24 8057 -76.75.4.0/23 40933 -76.75.6.0/24 33339 -76.75.7.0/24 8057 -76.75.8.0/21 19605 -76.75.16.0/24 33339 -76.75.17.0/24 8057 -76.75.18.0/24 8057 -76.75.19.0/24 33339 -76.75.20.0/22 33339 -76.75.24.0/23 33339 -76.75.26.0/24 8057 -76.75.27.0/24 40933 -76.75.28.0/24 40933 -76.75.29.0/24 8057 -76.75.30.0/24 33339 -76.75.31.0/24 8057 -76.75.32.0/24 33339 -76.75.33.0/24 19605 -76.75.34.0/23 19605 -76.75.36.0/23 19605 -76.75.38.0/24 8057 -76.75.39.0/24 19605 -76.75.40.0/23 8057 -76.75.42.0/24 8057 -76.75.43.0/24 33339 -76.75.44.0/24 19605 -76.75.45.0/24 8057 -76.75.46.0/23 8057 -76.75.48.0/23 33339 -76.75.50.0/23 40933 -76.75.52.0/24 33339 -76.75.53.0/24 19605 -76.75.54.0/24 8057 -76.75.55.0/24 19605 -76.75.56.0/24 8057 -76.75.57.0/24 33339 -76.75.58.0/23 19605 -76.75.60.0/23 8057 -76.75.62.0/24 8057 -76.75.63.0/24 40933 -76.75.64.0/18 18997 -76.75.128.0/20 21992 -76.75.144.0/22 21992 -76.75.148.0/24 21992 -76.75.149.0/24 32364 -76.75.150.0/24 32364 -76.75.151.0/24 21992 -76.75.152.0/21 21992 -76.75.160.0/20 21992 -76.75.176.0/23 21992 -76.75.178.0/24 21992 -76.75.179.0/24 32364 -76.75.180.0/23 32364 -76.75.182.0/24 32364 -76.75.183.0/24 21992 -76.75.184.0/21 21992 -76.75.192.0/19 7859 -76.75.224.0/19 21724 -76.76.0.0/23 205157 -76.76.3.0/24 11402 -76.76.4.0/23 11402 -76.76.8.0/24 11402 -76.76.11.0/24 11402 -76.76.12.0/24 393958 -76.76.13.0/24 11402 -76.76.14.0/24 397919 -76.76.15.0/24 11402 -76.76.16.0/24 11402 -76.76.17.0/24 14618 -76.76.18.0/23 11402 -76.76.20.0/24 62693 -76.76.21.0/24 11402 -76.76.22.0/23 62642 -76.76.24.0/23 11402 -76.76.26.0/23 395423 -76.76.28.0/24 11402 -76.76.30.0/23 394672 -76.76.32.0/20 13638 -76.76.48.0/20 46303 -76.76.64.0/19 39939 -76.76.96.0/19 21793 -76.76.128.0/20 22773 -76.76.144.0/20 13409 -76.76.160.0/20 11139 -76.76.176.0/21 11139 -76.76.184.0/22 11139 -76.76.188.0/23 15344 -76.76.190.0/23 11139 -76.76.192.0/20 11992 -76.76.208.0/20 7784 -76.76.224.0/20 12133 -76.76.240.0/20 32890 -76.77.0.0/20 46208 -76.77.16.0/23 46455 -76.77.18.0/23 46294 -76.77.20.0/24 46294 -76.77.21.0/24 46455 -76.77.22.0/24 46238 -76.77.23.0/24 23546 -76.77.24.0/23 23546 -76.77.26.0/23 397361 -76.77.28.0/22 397361 -76.77.32.0/20 4922 -76.77.48.0/20 55394 -76.77.64.0/21 20161 -76.77.72.0/22 20161 -76.77.76.0/23 20161 -76.77.78.0/24 19875 -76.77.79.0/24 20161 -76.77.80.0/20 20161 -76.77.96.0/20 18972 -76.77.112.0/22 13428 -76.77.116.0/24 13428 -76.77.117.0/24 22631 -76.77.118.0/23 13428 -76.77.120.0/22 13428 -76.77.124.0/24 22631 -76.77.125.0/24 13428 -76.77.126.0/23 13428 -76.77.128.0/20 21737 -76.77.144.0/20 62 -76.77.160.0/20 17310 -76.77.176.0/20 36734 -76.77.192.0/20 23465 -76.77.208.0/20 1423 -76.77.224.0/20 18596 -76.77.240.0/20 17306 -76.78.0.0/24 7029 -76.78.2.0/23 46273 -76.78.6.0/23 397721 -76.78.10.0/24 14351 -76.78.11.0/24 3356 -76.78.48.0/20 46273 -76.78.64.0/20 46273 -76.78.80.0/22 14325 -76.78.84.0/24 21508 -76.78.90.0/24 25899 -76.78.92.0/24 19108 -76.78.93.0/24 395461 -76.78.94.0/23 395461 -76.78.96.0/21 2152 -76.78.106.0/24 395448 -76.78.107.0/24 22980 -76.78.127.0/24 54607 -76.78.128.0/21 54607 -76.78.136.0/23 22773 -76.78.192.0/19 46273 -76.78.224.0/22 22773 -76.78.228.0/23 46273 -76.78.230.0/23 395597 -76.78.232.0/23 395597 -76.78.234.0/24 395597 -76.78.235.0/24 3356 -76.78.236.0/24 3356 -76.78.237.0/24 11492 -76.78.238.0/23 4922 -76.78.240.0/23 4922 -76.78.242.0/23 174 -76.78.244.0/23 174 -76.79.0.0/18 11427 -76.79.64.0/18 20001 -76.79.128.0/19 20001 -76.79.160.0/20 20001 -76.79.176.0/21 20001 -76.79.184.0/24 27242 -76.79.185.0/24 20001 -76.79.186.0/23 20001 -76.79.188.0/22 20001 -76.79.192.0/18 20001 -76.80.0.0/16 20001 -76.81.0.0/18 20001 -76.81.64.0/21 20001 -76.81.72.0/23 20001 -76.81.74.0/24 22153 -76.81.75.0/24 20001 -76.81.76.0/22 20001 -76.81.80.0/20 20001 -76.81.96.0/19 20001 -76.81.128.0/20 20001 -76.81.144.0/23 20001 -76.81.146.0/24 20001 -76.81.147.0/24 33753 -76.81.148.0/22 20001 -76.81.152.0/21 20001 -76.81.160.0/20 20001 -76.81.176.0/22 20001 -76.81.180.0/24 25910 -76.81.181.0/24 20001 -76.81.182.0/23 20001 -76.81.184.0/21 20001 -76.81.192.0/18 20001 -76.82.0.0/15 20001 -76.84.0.0/16 11427 -76.85.0.0/17 11427 -76.85.128.0/18 11427 -76.85.192.0/19 11427 -76.85.224.0/19 7843 -76.86.0.0/15 20001 -76.88.0.0/16 20001 -76.89.0.0/19 10796 -76.89.32.0/21 7843 -76.89.40.0/22 11955 -76.89.44.0/22 20001 -76.89.48.0/22 20001 -76.89.52.0/24 10838 -76.89.53.0/24 7843 -76.89.54.0/23 10838 -76.89.56.0/23 20001 -76.89.58.0/24 7843 -76.89.59.0/24 11955 -76.89.60.0/23 7843 -76.89.62.0/23 10838 -76.89.64.0/18 20001 -76.89.128.0/17 20001 -76.90.0.0/15 20001 -76.92.0.0/18 10796 -76.92.64.0/20 7843 -76.92.80.0/21 10796 -76.92.88.0/22 7843 -76.92.92.0/23 20001 -76.92.94.0/23 7843 -76.92.96.0/20 11426 -76.92.112.0/20 11427 -76.92.128.0/17 11427 -76.93.0.0/16 20001 -76.94.0.0/15 20001 -76.96.0.0/11 7922 -76.128.0.0/11 7922 -76.160.0.0/15 7029 -76.162.0.0/15 46606 -76.164.0.0/18 7385 -76.164.64.0/18 6300 -76.164.128.0/19 15100 -76.164.160.0/24 14793 -76.164.161.0/24 27221 -76.164.162.0/24 27221 -76.164.163.0/24 14793 -76.164.164.0/22 14793 -76.164.168.0/22 14793 -76.164.172.0/23 14793 -76.164.174.0/24 25739 -76.164.175.0/24 14793 -76.164.176.0/22 14793 -76.164.180.0/22 22504 -76.164.184.0/23 22504 -76.164.186.0/24 22504 -76.164.187.0/24 14793 -76.164.188.0/22 14793 -76.164.192.0/20 36114 -76.164.208.0/24 40417 -76.164.209.0/24 36114 -76.164.210.0/24 40417 -76.164.211.0/24 36114 -76.164.212.0/24 40417 -76.164.213.0/24 36114 -76.164.214.0/23 36114 -76.164.216.0/21 36114 -76.164.224.0/22 36114 -76.164.228.0/24 9009 -76.164.229.0/24 36114 -76.164.230.0/24 174 -76.164.231.0/24 64200 -76.164.232.0/23 36114 -76.164.234.0/23 53340 -76.164.236.0/22 36114 -76.164.240.0/20 21779 -76.165.0.0/21 32440 -76.165.8.0/23 32440 -76.165.10.0/23 10349 -76.165.12.0/23 10349 -76.165.14.0/23 32440 -76.165.16.0/23 32440 -76.165.18.0/24 23207 -76.165.19.0/24 32440 -76.165.20.0/22 32440 -76.165.24.0/22 26002 -76.165.28.0/22 32440 -76.165.32.0/20 23294 -76.165.48.0/21 32440 -76.165.56.0/22 32440 -76.165.60.0/22 23207 -76.165.64.0/20 23207 -76.165.80.0/20 32440 -76.165.96.0/19 32440 -76.165.128.0/19 26333 -76.165.160.0/20 22985 -76.165.176.0/20 32440 -76.165.192.0/21 32440 -76.165.200.0/24 32440 -76.165.201.0/24 54529 -76.165.202.0/23 32440 -76.165.204.0/24 26002 -76.165.205.0/24 32440 -76.165.206.0/23 32440 -76.165.208.0/22 32440 -76.165.212.0/24 32440 -76.165.213.0/24 30564 -76.165.214.0/24 32440 -76.165.215.0/24 26002 -76.165.216.0/22 32440 -76.165.220.0/23 26303 -76.165.222.0/24 26303 -76.165.223.0/24 32440 -76.165.224.0/19 2055 -76.166.0.0/15 20001 -76.168.0.0/13 20001 -76.176.0.0/16 20001 -76.177.0.0/16 10796 -76.178.0.0/22 7843 -76.178.4.0/23 7843 -76.178.6.0/23 20001 -76.178.8.0/22 20001 -76.178.12.0/23 20001 -76.178.14.0/24 20001 -76.178.15.0/24 7843 -76.178.16.0/20 10838 -76.178.32.0/19 20001 -76.178.64.0/20 20001 -76.178.80.0/21 20001 -76.178.88.0/21 10838 -76.178.96.0/19 20001 -76.178.128.0/18 10838 -76.178.192.0/18 11351 -76.179.0.0/16 11351 -76.180.0.0/16 11351 -76.181.0.0/16 10796 -76.182.0.0/17 11426 -76.182.128.0/19 10796 -76.182.160.0/19 11426 -76.182.192.0/18 11427 -76.183.0.0/16 11427 -76.184.0.0/14 11427 -76.188.0.0/15 10796 -76.190.0.0/16 10796 -76.191.16.0/20 33097 -76.191.32.0/21 14265 -76.191.41.0/24 33748 -76.191.42.0/24 14265 -76.191.45.0/24 394891 -76.191.47.0/24 14265 -76.191.48.0/20 40944 -76.191.64.0/21 11404 -76.191.72.0/24 11404 -76.191.73.0/24 53472 -76.191.74.0/23 62915 -76.191.76.0/22 62915 -76.191.80.0/24 395717 -76.191.81.0/24 23033 -76.191.82.0/23 23033 -76.191.84.0/23 11404 -76.191.86.0/24 11404 -76.191.87.0/24 54128 -76.191.88.0/24 30261 -76.191.89.0/24 395442 -76.191.90.0/23 11404 -76.191.92.0/22 11404 -76.191.96.0/23 19194 -76.191.98.0/24 11404 -76.191.99.0/24 19194 -76.191.100.0/24 11404 -76.191.101.0/24 19194 -76.191.102.0/23 11404 -76.191.104.0/23 19194 -76.191.106.0/23 11404 -76.191.108.0/22 11404 -76.191.112.0/22 19194 -76.191.116.0/23 11404 -76.191.118.0/23 46160 -76.191.120.0/23 11404 -76.191.122.0/23 26080 -76.191.124.0/24 11404 -76.191.125.0/24 26080 -76.191.126.0/23 11404 -76.191.128.0/17 7065 -76.192.0.0/16 7018 -76.193.0.0/17 7018 -76.193.128.0/18 7018 -76.193.192.0/19 7018 -76.193.224.0/20 7018 -76.193.240.0/22 7018 -76.193.244.0/24 7018 -76.193.245.0/24 22036 -76.193.246.0/23 7018 -76.193.248.0/21 7018 -76.194.0.0/20 7018 -76.194.16.0/22 7018 -76.194.20.0/23 7018 -76.194.22.0/24 7018 -76.194.23.0/24 29718 -76.194.24.0/21 7018 -76.194.32.0/19 7018 -76.194.64.0/18 7018 -76.194.128.0/19 7018 -76.194.160.0/20 7018 -76.194.176.0/21 7018 -76.194.184.0/22 7018 -76.194.188.0/23 7018 -76.194.190.0/23 2386 -76.194.192.0/18 7018 -76.195.0.0/16 7018 -76.196.0.0/16 7018 -76.197.0.0/17 7018 -76.197.192.0/18 7018 -76.198.0.0/15 7018 -76.200.0.0/16 7018 -76.201.0.0/18 7018 -76.201.64.0/19 7018 -76.201.96.0/21 7018 -76.201.104.0/23 7018 -76.201.106.0/24 7018 -76.201.107.0/24 2386 -76.201.108.0/22 7018 -76.201.112.0/20 7018 -76.201.128.0/17 7018 -76.202.0.0/15 7018 -76.204.0.0/16 7018 -76.205.0.0/18 7018 -76.205.128.0/17 7018 -76.206.0.0/18 7018 -76.206.64.0/19 7018 -76.206.96.0/20 7018 -76.206.112.0/20 25993 -76.206.128.0/17 7018 -76.207.0.0/16 7018 -76.208.0.0/15 7018 -76.210.0.0/16 7018 -76.211.64.0/18 7018 -76.211.128.0/17 7018 -76.212.0.0/14 7018 -76.216.0.0/14 7018 -76.220.0.0/15 7018 -76.222.0.0/16 7018 -76.223.0.0/17 16509 -76.223.160.0/22 16509 -76.223.164.0/23 16509 -76.223.166.0/24 16509 -76.223.176.0/22 16509 -76.223.180.0/23 16509 -76.223.184.0/22 16509 -76.223.188.0/23 16509 -76.223.190.0/24 16509 -76.223.191.0/24 14618 -76.223.192.0/18 7018 -76.224.0.0/15 7018 -76.226.0.0/16 7018 -76.227.0.0/17 7018 -76.227.128.0/18 7018 -76.227.192.0/20 7018 -76.227.208.0/20 27482 -76.227.224.0/19 7018 -76.228.0.0/16 7018 -76.229.0.0/19 7018 -76.229.32.0/20 25993 -76.229.48.0/20 7018 -76.229.64.0/18 7018 -76.229.128.0/17 7018 -76.230.0.0/15 7018 -76.232.0.0/16 7018 -76.233.0.0/17 7018 -76.233.128.0/18 7018 -76.233.192.0/19 7018 -76.233.224.0/22 7018 -76.233.228.0/23 7018 -76.233.230.0/24 7018 -76.233.231.0/24 27309 -76.233.232.0/21 7018 -76.233.240.0/20 7018 -76.234.0.0/15 7018 -76.236.0.0/16 7018 -76.237.0.0/22 7018 -76.237.4.0/23 7018 -76.237.6.0/23 393508 -76.237.8.0/21 7018 -76.237.16.0/20 7018 -76.237.32.0/19 7018 -76.237.64.0/18 7018 -76.237.128.0/17 7018 -76.238.64.0/18 7018 -76.238.128.0/17 7018 -76.239.0.0/17 7018 -76.239.128.0/20 7018 -76.239.144.0/21 36426 -76.239.152.0/21 7018 -76.239.160.0/19 7018 -76.239.192.0/18 7018 -76.240.0.0/16 7018 -76.241.0.0/18 7018 -76.241.128.0/17 7018 -76.242.0.0/15 7018 -76.244.0.0/14 7018 -76.248.0.0/14 7018 -76.252.64.0/18 7018 -76.252.128.0/17 7018 -76.253.0.0/17 7018 -76.253.128.0/18 7018 -76.253.192.0/20 25993 -76.253.208.0/20 7018 -76.253.224.0/19 7018 -76.254.0.0/16 7018 -76.255.0.0/18 7018 -76.255.128.0/17 7018 -77.0.0.0/12 6805 -77.16.0.0/14 2119 -77.20.0.0/14 31334 -77.24.0.0/16 3209 -77.25.0.0/17 3209 -77.25.128.0/17 33874 -77.26.0.0/15 12334 -77.28.0.0/15 6821 -77.30.0.0/15 25019 -77.32.0.0/17 35612 -77.32.128.0/18 200484 -77.32.192.0/19 200484 -77.32.225.0/24 33849 -77.32.227.0/24 35030 -77.32.240.0/24 48424 -77.32.242.0/24 48424 -77.32.244.0/23 48424 -77.32.246.0/24 48424 -77.34.0.0/23 12332 -77.34.2.0/24 12389 -77.34.3.0/24 12332 -77.34.4.0/22 12332 -77.34.8.0/23 12332 -77.34.10.0/24 12389 -77.34.11.0/24 12332 -77.34.12.0/22 12332 -77.34.16.0/20 12389 -77.34.32.0/20 12389 -77.34.48.0/24 12332 -77.34.49.0/24 12389 -77.34.50.0/23 12332 -77.34.52.0/23 12332 -77.34.54.0/23 12389 -77.34.56.0/23 12332 -77.34.58.0/23 12389 -77.34.60.0/22 12332 -77.34.64.0/21 12332 -77.34.72.0/22 12332 -77.34.76.0/24 12332 -77.34.77.0/24 12389 -77.34.78.0/23 12332 -77.34.80.0/20 12389 -77.34.96.0/19 12389 -77.34.128.0/24 12389 -77.34.129.0/24 12332 -77.34.130.0/23 12332 -77.34.132.0/22 12389 -77.34.136.0/22 12389 -77.34.140.0/22 12332 -77.34.144.0/22 12332 -77.34.148.0/23 12332 -77.34.150.0/23 12389 -77.34.152.0/23 12332 -77.34.154.0/23 12389 -77.34.156.0/23 12332 -77.34.158.0/23 12389 -77.34.160.0/19 12389 -77.34.192.0/21 12332 -77.34.200.0/23 12332 -77.34.202.0/23 12389 -77.34.204.0/22 12332 -77.34.208.0/23 12332 -77.34.210.0/23 12389 -77.34.212.0/23 12332 -77.34.214.0/23 12389 -77.34.216.0/21 12389 -77.34.224.0/19 12389 -77.35.0.0/18 12389 -77.35.64.0/20 12332 -77.35.80.0/21 12332 -77.35.88.0/22 12332 -77.35.92.0/23 12332 -77.35.94.0/23 12389 -77.35.96.0/22 12332 -77.35.100.0/22 12389 -77.35.104.0/21 12332 -77.35.112.0/20 12389 -77.35.128.0/17 12389 -77.36.0.0/20 34744 -77.36.16.0/21 34744 -77.36.24.0/22 209104 -77.36.28.0/23 209104 -77.36.30.0/24 209104 -77.36.31.0/24 202183 -77.36.32.0/20 200443 -77.36.48.0/22 34744 -77.36.52.0/23 34744 -77.36.54.0/24 208615 -77.36.55.0/24 34744 -77.36.56.0/22 34744 -77.36.60.0/24 34744 -77.36.61.0/24 5541 -77.36.62.0/24 48976 -77.36.63.0/24 34744 -77.36.64.0/23 34744 -77.36.66.0/23 209105 -77.36.68.0/22 209105 -77.36.72.0/21 209105 -77.36.80.0/22 44605 -77.36.84.0/22 209104 -77.36.88.0/21 34744 -77.36.128.0/17 42586 -77.37.0.0/22 31400 -77.37.4.0/23 62336 -77.37.6.0/23 31400 -77.37.8.0/21 31400 -77.37.16.0/20 31400 -77.37.32.0/19 31400 -77.37.64.0/19 31400 -77.37.96.0/23 31400 -77.37.98.0/23 62336 -77.37.100.0/22 62336 -77.37.104.0/23 31400 -77.37.106.0/23 8893 -77.37.108.0/22 8893 -77.37.112.0/21 202204 -77.37.120.0/21 200665 -77.37.128.0/18 42610 -77.37.192.0/19 42610 -77.37.224.0/20 42610 -77.37.240.0/21 42610 -77.37.248.0/22 42610 -77.37.252.0/24 42610 -77.37.253.0/24 47460 -77.37.254.0/23 42610 -77.38.0.0/17 3212 -77.38.128.0/17 20910 -77.39.0.0/20 12683 -77.39.16.0/21 12683 -77.39.24.0/24 12389 -77.39.25.0/24 12683 -77.39.26.0/23 12683 -77.39.28.0/22 12683 -77.39.32.0/22 12683 -77.39.36.0/24 12683 -77.39.37.0/24 12389 -77.39.38.0/23 12683 -77.39.40.0/22 12683 -77.39.44.0/24 12389 -77.39.45.0/24 12683 -77.39.46.0/23 12683 -77.39.48.0/20 12683 -77.39.64.0/23 12389 -77.39.66.0/23 12683 -77.39.68.0/22 12683 -77.39.72.0/24 12389 -77.39.73.0/24 12683 -77.39.74.0/23 12683 -77.39.76.0/24 12389 -77.39.77.0/24 12683 -77.39.78.0/23 12683 -77.39.80.0/20 12683 -77.39.96.0/22 12683 -77.39.100.0/24 12683 -77.39.101.0/24 12389 -77.39.102.0/24 12389 -77.39.103.0/24 12683 -77.39.104.0/21 12683 -77.39.112.0/23 12683 -77.39.114.0/24 12683 -77.39.115.0/24 12389 -77.39.116.0/22 12683 -77.39.120.0/21 12683 -77.39.128.0/19 199181 -77.39.160.0/19 5394 -77.39.192.0/20 20912 -77.39.208.0/21 52030 -77.39.216.0/22 20912 -77.39.220.0/22 201127 -77.39.224.0/19 5394 -77.40.0.0/17 12389 -77.40.128.0/17 2116 -77.41.0.0/17 8615 -77.41.128.0/21 34747 -77.41.136.0/22 34747 -77.41.140.0/23 34747 -77.41.142.0/23 3216 -77.41.144.0/20 3216 -77.41.160.0/20 3216 -77.41.176.0/21 3216 -77.41.184.0/22 3216 -77.41.188.0/23 3216 -77.41.190.0/24 16345 -77.41.191.0/24 3216 -77.41.224.0/21 8402 -77.41.232.0/21 34747 -77.41.240.0/21 34747 -77.42.0.0/17 56402 -77.42.128.0/18 42003 -77.42.192.0/19 42003 -77.42.224.0/20 42003 -77.42.240.0/21 42003 -77.42.248.0/21 42020 -77.43.0.0/17 5396 -77.43.128.0/17 15640 -77.44.0.0/17 5413 -77.44.128.0/17 29256 -77.45.0.0/17 35191 -77.45.128.0/17 12389 -77.46.0.0/22 41676 -77.46.4.0/22 41931 -77.46.8.0/21 41931 -77.46.16.0/20 41931 -77.46.32.0/19 41931 -77.46.64.0/18 41931 -77.46.128.0/17 8400 -77.47.0.0/17 35244 -77.47.128.0/17 25500 -77.48.0.0/16 6830 -77.49.0.0/16 1241 -77.50.0.0/16 34602 -77.51.0.0/17 12389 -77.51.128.0/19 12389 -77.51.160.0/20 12389 -77.51.176.0/20 25515 -77.51.192.0/19 25515 -77.51.224.0/20 25515 -77.51.240.0/22 25515 -77.51.244.0/23 25515 -77.51.246.0/24 25515 -77.51.247.0/24 44237 -77.51.248.0/24 25515 -77.51.249.0/24 44237 -77.51.250.0/24 44237 -77.51.251.0/24 25515 -77.51.252.0/22 44237 -77.52.0.0/16 21497 -77.53.0.0/16 45011 -77.54.0.0/16 12353 -77.55.0.0/16 15967 -77.56.0.0/14 6830 -77.60.0.0/14 1136 -77.64.0.0/21 25233 -77.64.8.0/21 201768 -77.64.16.0/20 25233 -77.64.32.0/19 25233 -77.64.64.0/18 25233 -77.64.128.0/17 16202 -77.65.0.0/17 13110 -77.65.128.0/22 202228 -77.65.132.0/23 202228 -77.65.141.0/24 205708 -77.66.0.0/17 16245 -77.66.128.0/19 60496 -77.66.160.0/20 60496 -77.66.176.0/20 29497 -77.66.192.0/21 60496 -77.66.200.0/21 29497 -77.66.208.0/20 60496 -77.66.224.0/19 60496 -77.67.0.0/19 3257 -77.67.32.0/22 3257 -77.67.36.0/24 204890 -77.67.37.0/24 3257 -77.67.38.0/24 26476 -77.67.39.0/24 3257 -77.67.40.0/21 3257 -77.67.48.0/20 3257 -77.67.64.0/20 3257 -77.67.80.0/22 3257 -77.67.84.0/24 3257 -77.67.85.0/24 20940 -77.67.86.0/23 3257 -77.67.88.0/21 3257 -77.67.96.0/22 3257 -77.67.100.0/24 3257 -77.67.101.0/24 8001 -77.67.102.0/23 3257 -77.67.104.0/23 3257 -77.67.106.0/24 53767 -77.67.107.0/24 3257 -77.67.108.0/22 3257 -77.67.112.0/21 3257 -77.67.120.0/22 3257 -77.67.124.0/23 3257 -77.67.126.0/24 20940 -77.67.127.0/24 3257 -77.68.0.0/17 8560 -77.68.128.0/17 43557 -77.69.0.0/19 6866 -77.69.32.0/22 6866 -77.69.36.0/23 6866 -77.69.38.0/24 3329 -77.69.39.0/24 6866 -77.69.40.0/21 6866 -77.69.48.0/20 6866 -77.69.64.0/18 6866 -77.69.128.0/17 5416 -77.70.0.0/24 8717 -77.70.1.0/24 35141 -77.70.2.0/23 35141 -77.70.4.0/22 35141 -77.70.8.0/22 35141 -77.70.12.0/23 35141 -77.70.14.0/24 35141 -77.70.15.0/24 8717 -77.70.16.0/22 35141 -77.70.20.0/23 35141 -77.70.22.0/24 35141 -77.70.23.0/24 8717 -77.70.24.0/21 35141 -77.70.32.0/23 35141 -77.70.34.0/24 29580 -77.70.35.0/24 35141 -77.70.36.0/22 35141 -77.70.40.0/21 35141 -77.70.48.0/20 35141 -77.70.64.0/21 35141 -77.70.72.0/22 35141 -77.70.76.0/24 35141 -77.70.77.0/24 8717 -77.70.78.0/23 35141 -77.70.80.0/21 35141 -77.70.88.0/24 8717 -77.70.89.0/24 35141 -77.70.90.0/23 35141 -77.70.92.0/22 8717 -77.70.96.0/21 35141 -77.70.104.0/22 35141 -77.70.108.0/24 35141 -77.70.109.0/24 8717 -77.70.110.0/23 8717 -77.70.112.0/24 8717 -77.70.113.0/24 35141 -77.70.114.0/23 8717 -77.70.116.0/22 35141 -77.70.120.0/22 8717 -77.70.124.0/23 35141 -77.70.126.0/24 35141 -77.70.127.0/24 8717 -77.70.128.0/19 5377 -77.70.160.0/22 5377 -77.70.164.0/22 44933 -77.70.168.0/21 5377 -77.70.176.0/20 5377 -77.70.192.0/18 5377 -77.71.0.0/18 29687 -77.71.64.0/19 29687 -77.71.96.0/20 2111 -77.71.112.0/22 57619 -77.71.116.0/22 57237 -77.71.120.0/21 57237 -77.71.128.0/17 12709 -77.72.0.0/21 12488 -77.72.8.0/21 42215 -77.72.16.0/21 42226 -77.72.24.0/21 44062 -77.72.32.0/21 34606 -77.72.40.0/21 2259 -77.72.48.0/21 42236 -77.72.56.0/21 42252 -77.72.64.0/21 6830 -77.72.72.0/21 42310 -77.72.88.0/21 30781 -77.72.96.0/21 42303 -77.72.106.0/23 42325 -77.72.108.0/22 42325 -77.72.112.0/24 42320 -77.72.115.0/24 42320 -77.72.116.0/23 42320 -77.72.119.0/24 42320 -77.72.120.0/21 42339 -77.72.128.0/21 197252 -77.72.136.0/21 42358 -77.72.144.0/21 20857 -77.72.168.0/21 42416 -77.72.176.0/21 48218 -77.72.184.0/22 42421 -77.72.188.0/23 42421 -77.72.192.0/21 12835 -77.72.200.0/21 29017 -77.72.208.0/21 42435 -77.72.216.0/22 15945 -77.72.220.0/24 209917 -77.72.221.0/24 15945 -77.72.222.0/24 15945 -77.72.223.0/24 200801 -77.72.224.0/21 8674 -77.72.236.0/23 20650 -77.72.238.0/24 20650 -77.72.239.0/24 5400 -77.72.240.0/22 12389 -77.72.244.0/23 12389 -77.72.246.0/23 16054 -77.72.248.0/21 41190 -77.73.0.0/21 50957 -77.73.8.0/21 35670 -77.73.16.0/22 56628 -77.73.20.0/22 203061 -77.73.24.0/21 42484 -77.73.32.0/24 60690 -77.73.33.0/24 202247 -77.73.34.0/23 202247 -77.73.36.0/22 61251 -77.73.40.0/21 42493 -77.73.48.0/21 42526 -77.73.56.0/21 42515 -77.73.64.0/21 43317 -77.73.80.0/21 197876 -77.73.88.0/22 43567 -77.73.92.0/23 43567 -77.73.94.0/24 43567 -77.73.95.0/24 200551 -77.73.96.0/21 34762 -77.73.104.0/22 3212 -77.73.108.0/22 57353 -77.73.112.0/24 28789 -77.73.114.0/24 28789 -77.73.115.0/24 25180 -77.73.116.0/24 25180 -77.73.117.0/24 28789 -77.73.118.0/23 28789 -77.73.120.0/21 5413 -77.73.128.0/24 206751 -77.73.130.0/24 50386 -77.73.131.0/24 206751 -77.73.134.0/24 206751 -77.73.135.0/24 50386 -77.73.136.0/21 42575 -77.73.144.0/21 42579 -77.73.152.0/22 17151 -77.73.157.0/24 30468 -77.73.158.0/24 29726 -77.73.159.0/24 30467 -77.73.160.0/21 42666 -77.73.168.0/23 50656 -77.73.170.0/23 51918 -77.73.176.0/21 41471 -77.73.184.0/21 13126 -77.73.192.0/24 42684 -77.73.197.0/24 41215 -77.73.198.0/23 42028 -77.73.200.0/22 20905 -77.73.208.0/21 47417 -77.73.216.0/24 42716 -77.73.224.0/21 41960 -77.73.232.0/21 42678 -77.73.240.0/21 43284 -77.73.248.0/21 42840 -77.74.0.0/21 42760 -77.74.8.0/21 42748 -77.74.16.0/21 12779 -77.74.24.0/21 42753 -77.74.32.0/21 42772 -77.74.40.0/21 16010 -77.74.48.0/21 8312 -77.74.56.0/21 21232 -77.74.64.0/24 42770 -77.74.67.0/24 42770 -77.74.68.0/22 42770 -77.74.72.0/22 31261 -77.74.76.0/24 206850 -77.74.77.0/24 206827 -77.74.78.0/23 31261 -77.74.80.0/21 49867 -77.74.88.0/21 42851 -77.74.96.0/21 8758 -77.74.104.0/21 43545 -77.74.112.0/21 20811 -77.74.120.0/23 50957 -77.74.122.0/24 50957 -77.74.123.0/24 31220 -77.74.124.0/22 31220 -77.74.128.0/21 44769 -77.74.136.0/21 3320 -77.74.144.0/24 21429 -77.74.158.0/24 19495 -77.74.159.0/24 17229 -77.74.160.0/21 2116 -77.74.168.0/23 43127 -77.74.170.0/23 43382 -77.74.174.0/23 43127 -77.74.176.0/22 200107 -77.74.180.0/24 41983 -77.74.181.0/24 200107 -77.74.182.0/24 41983 -77.74.183.0/24 200107 -77.74.184.0/21 42988 -77.74.192.0/21 42831 -77.74.204.0/22 202243 -77.74.208.0/21 42845 -77.74.216.0/22 56538 -77.74.223.0/24 48335 -77.74.224.0/21 43179 -77.74.232.0/21 33811 -77.74.240.0/21 34510 -77.74.248.0/21 42860 -77.75.0.0/21 12714 -77.75.8.0/21 12494 -77.75.16.0/22 42882 -77.75.20.0/23 42882 -77.75.22.0/24 42882 -77.75.23.0/24 29056 -77.75.24.0/21 12447 -77.75.32.0/22 42926 -77.75.36.0/24 42926 -77.75.37.0/24 206991 -77.75.38.0/23 42926 -77.75.40.0/21 42887 -77.75.48.0/22 42707 -77.75.52.0/22 18530 -77.75.66.0/23 43460 -77.75.72.0/22 43037 -77.75.76.0/23 43037 -77.75.78.0/23 5610 -77.75.80.0/21 42903 -77.75.88.0/21 43019 -77.75.96.0/21 29644 -77.75.104.0/21 39326 -77.75.112.0/21 42917 -77.75.120.0/21 42831 -77.75.128.0/21 42919 -77.75.136.0/22 42944 -77.75.140.0/24 42944 -77.75.144.0/22 35297 -77.75.148.0/24 201039 -77.75.149.0/24 35297 -77.75.150.0/23 35297 -77.75.152.0/21 43247 -77.75.160.0/21 15516 -77.75.168.0/21 42972 -77.75.176.0/24 16030 -77.75.178.0/23 16030 -77.75.181.0/24 16030 -77.75.183.0/24 16030 -77.75.184.0/21 42973 -77.75.192.0/21 51059 -77.75.200.0/21 198967 -77.75.208.0/21 35703 -77.75.216.0/21 43716 -77.75.224.0/23 42992 -77.75.232.0/23 6908 -77.75.234.0/23 5413 -77.75.236.0/22 5413 -77.75.241.0/24 15830 -77.75.242.0/23 15830 -77.75.248.0/21 34432 -77.76.0.0/18 8866 -77.76.64.0/18 8607 -77.76.128.0/21 31029 -77.76.136.0/24 20750 -77.76.137.0/24 31029 -77.76.138.0/23 31029 -77.76.140.0/22 31029 -77.76.144.0/22 34295 -77.76.148.0/23 34295 -77.76.150.0/23 13306 -77.76.152.0/21 31029 -77.76.160.0/20 34295 -77.76.176.0/22 13306 -77.76.180.0/22 34295 -77.76.184.0/21 31029 -77.76.192.0/18 8823 -77.77.0.0/18 39184 -77.77.64.0/18 56402 -77.77.128.0/21 49849 -77.77.136.0/21 8390 -77.77.144.0/22 8390 -77.77.148.0/22 49699 -77.77.152.0/24 34074 -77.77.153.0/24 8390 -77.77.154.0/23 8390 -77.77.156.0/22 8390 -77.77.160.0/23 8390 -77.77.162.0/24 8390 -77.77.163.0/24 47874 -77.77.164.0/22 47771 -77.77.168.0/22 3257 -77.77.172.0/24 36671 -77.77.173.0/24 3257 -77.77.174.0/23 3257 -77.77.176.0/20 3257 -77.77.192.0/18 42560 -77.78.0.0/20 34569 -77.78.16.0/21 34569 -77.78.24.0/24 34569 -77.78.25.0/24 61071 -77.78.26.0/23 34569 -77.78.28.0/22 34569 -77.78.32.0/19 34569 -77.78.64.0/22 21430 -77.78.68.0/24 21430 -77.78.69.0/24 15685 -77.78.70.0/23 15685 -77.78.72.0/23 15685 -77.78.74.0/24 15685 -77.78.75.0/24 21430 -77.78.76.0/22 15685 -77.78.80.0/21 21430 -77.78.88.0/23 21430 -77.78.90.0/24 21430 -77.78.91.0/24 15685 -77.78.92.0/23 21430 -77.78.94.0/23 15685 -77.78.96.0/20 15685 -77.78.112.0/22 15685 -77.78.116.0/24 15685 -77.78.117.0/24 21430 -77.78.118.0/23 15685 -77.78.120.0/23 15685 -77.78.122.0/24 21430 -77.78.123.0/24 15685 -77.78.124.0/22 15685 -77.78.128.0/23 39246 -77.78.131.0/24 39246 -77.78.132.0/22 39246 -77.78.136.0/22 39246 -77.78.142.0/24 39246 -77.78.144.0/24 204150 -77.78.148.0/23 62323 -77.78.151.0/24 31287 -77.78.152.0/21 31287 -77.78.160.0/19 35205 -77.78.192.0/18 42560 -77.79.0.0/19 25406 -77.79.32.0/20 25406 -77.79.48.0/20 34857 -77.79.64.0/21 39582 -77.79.72.0/23 39582 -77.79.74.0/24 39582 -77.79.76.0/22 39582 -77.79.80.0/23 39582 -77.79.83.0/24 39582 -77.79.84.0/22 39582 -77.79.88.0/24 39582 -77.79.90.0/23 39582 -77.79.92.0/22 39582 -77.79.96.0/19 39582 -77.79.128.0/18 24955 -77.79.192.0/24 24748 -77.79.193.0/24 15694 -77.79.194.0/23 15694 -77.79.196.0/23 15694 -77.79.198.0/24 24723 -77.79.199.0/24 15694 -77.79.200.0/24 209409 -77.79.201.0/24 205308 -77.79.202.0/23 15694 -77.79.204.0/24 201615 -77.79.205.0/24 41097 -77.79.206.0/24 15694 -77.79.207.0/24 202904 -77.79.208.0/21 15694 -77.79.216.0/22 15694 -77.79.220.0/23 15694 -77.79.222.0/23 24748 -77.79.224.0/23 15694 -77.79.226.0/24 28893 -77.79.227.0/24 57367 -77.79.228.0/23 15694 -77.79.230.0/23 197474 -77.79.232.0/22 15694 -77.79.236.0/24 15694 -77.79.237.0/24 47812 -77.79.238.0/23 15694 -77.79.240.0/23 15694 -77.79.242.0/24 15694 -77.79.243.0/24 207206 -77.79.244.0/22 15694 -77.79.248.0/24 57367 -77.79.249.0/24 202081 -77.79.250.0/24 57367 -77.79.251.0/24 15694 -77.79.252.0/22 200094 -77.80.0.0/17 760 -77.80.253.0/24 59835 -77.80.254.0/24 50168 -77.80.255.0/24 59835 -77.81.0.0/24 56840 -77.81.1.0/24 209706 -77.81.2.0/24 5588 -77.81.3.0/24 39855 -77.81.4.0/24 39861 -77.81.5.0/24 51722 -77.81.6.0/23 42695 -77.81.8.0/21 6910 -77.81.16.0/20 6830 -77.81.32.0/20 12880 -77.81.48.0/21 41950 -77.81.64.0/24 56430 -77.81.65.0/24 56729 -77.81.66.0/23 41496 -77.81.68.0/22 56654 -77.81.72.0/23 41496 -77.81.74.0/24 62189 -77.81.76.0/22 48592 -77.81.80.0/22 48592 -77.81.84.0/23 201117 -77.81.87.0/24 33977 -77.81.88.0/24 9050 -77.81.89.0/24 209686 -77.81.90.0/23 201117 -77.81.96.0/24 61077 -77.81.97.0/24 60403 -77.81.98.0/24 9009 -77.81.99.0/24 204157 -77.81.100.0/24 34060 -77.81.101.0/24 60408 -77.81.102.0/23 44605 -77.81.104.0/23 203523 -77.81.106.0/24 203523 -77.81.107.0/24 9009 -77.81.108.0/24 203523 -77.81.109.0/24 9009 -77.81.110.0/24 9009 -77.81.111.0/24 203523 -77.81.112.0/21 39020 -77.81.120.0/23 43350 -77.81.122.0/24 39312 -77.81.123.0/24 33977 -77.81.124.0/22 209706 -77.81.128.0/21 12880 -77.81.137.0/24 39758 -77.81.138.0/24 39758 -77.81.140.0/24 50682 -77.81.141.0/24 43578 -77.81.143.0/24 12637 -77.81.144.0/20 12880 -77.81.160.0/22 209706 -77.81.164.0/23 3223 -77.81.166.0/24 61204 -77.81.167.0/24 29119 -77.81.168.0/21 12479 -77.81.176.0/24 60073 -77.81.177.0/24 60909 -77.81.178.0/23 49774 -77.81.180.0/24 33977 -77.81.181.0/24 39345 -77.81.182.0/24 62343 -77.81.183.0/24 13209 -77.81.184.0/22 39815 -77.81.188.0/23 42695 -77.81.190.0/24 41055 -77.81.191.0/24 25369 -77.81.192.0/19 57218 -77.81.224.0/20 31034 -77.81.240.0/21 60781 -77.82.0.0/24 34974 -77.82.1.0/24 12389 -77.82.2.0/23 12389 -77.82.4.0/22 12389 -77.82.8.0/21 12389 -77.82.16.0/20 12389 -77.82.32.0/20 12389 -77.82.48.0/21 12389 -77.82.56.0/22 12389 -77.82.60.0/23 12389 -77.82.62.0/24 34974 -77.82.63.0/24 12389 -77.82.64.0/21 12389 -77.82.72.0/23 12389 -77.82.74.0/23 34974 -77.82.76.0/23 12389 -77.82.78.0/23 34974 -77.82.80.0/21 34974 -77.82.88.0/22 34974 -77.82.92.0/22 12389 -77.82.96.0/20 12389 -77.82.112.0/20 34974 -77.82.128.0/24 34974 -77.82.129.0/24 34584 -77.82.130.0/24 34974 -77.82.131.0/24 34584 -77.82.132.0/22 34584 -77.82.136.0/22 34584 -77.82.140.0/22 34974 -77.82.144.0/20 34974 -77.82.160.0/19 12389 -77.82.192.0/18 12389 -77.83.0.0/24 60549 -77.83.1.0/24 196955 -77.83.2.0/24 49505 -77.83.3.0/24 202376 -77.83.4.0/22 20655 -77.83.8.0/22 34665 -77.83.12.0/22 28716 -77.83.16.0/22 20655 -77.83.20.0/22 9009 -77.83.24.0/22 9009 -77.83.28.0/22 34702 -77.83.32.0/22 200615 -77.83.40.0/22 198537 -77.83.44.0/23 46261 -77.83.46.0/23 9009 -77.83.52.0/22 209739 -77.83.56.0/23 16003 -77.83.58.0/23 27970 -77.83.60.0/24 209726 -77.83.64.0/24 31103 -77.83.68.0/23 9009 -77.83.70.0/24 36352 -77.83.71.0/24 19437 -77.83.72.0/24 34665 -77.83.73.0/24 50809 -77.83.74.0/24 44345 -77.83.75.0/24 35119 -77.83.76.0/22 16245 -77.83.80.0/24 204941 -77.83.81.0/24 34665 -77.83.84.0/24 34665 -77.83.85.0/24 46844 -77.83.86.0/23 46844 -77.83.88.0/22 39273 -77.83.92.0/22 50340 -77.83.96.0/22 209688 -77.83.100.0/24 24723 -77.83.108.0/22 43571 -77.83.112.0/22 12679 -77.83.116.0/24 49981 -77.83.117.0/24 30860 -77.83.118.0/23 205220 -77.83.124.0/22 200738 -77.83.128.0/22 209731 -77.83.132.0/22 57844 -77.83.136.0/23 3320 -77.83.140.0/22 40509 -77.83.144.0/22 205718 -77.83.148.0/23 208475 -77.83.150.0/23 49392 -77.83.152.0/22 48430 -77.83.156.0/22 35913 -77.83.160.0/23 209561 -77.83.164.0/22 48095 -77.83.168.0/22 48095 -77.83.172.0/22 204601 -77.83.176.0/22 43341 -77.83.180.0/22 204805 -77.83.184.0/22 50673 -77.83.188.0/22 48696 -77.83.192.0/22 12695 -77.83.200.0/22 209737 -77.83.204.0/22 12695 -77.83.212.0/22 203020 -77.83.216.0/22 199837 -77.83.220.0/23 9009 -77.83.222.0/24 9009 -77.83.228.0/22 210051 -77.83.232.0/22 50495 -77.83.240.0/24 7489 -77.83.241.0/24 8100 -77.83.242.0/24 43260 -77.83.243.0/24 3280 -77.83.244.0/22 51765 -77.83.248.0/23 3164 -77.83.252.0/22 199586 -77.84.0.0/16 35632 -77.85.0.0/17 8866 -77.85.128.0/19 8866 -77.85.160.0/21 8866 -77.85.168.0/22 8866 -77.85.172.0/23 8866 -77.85.174.0/24 43202 -77.85.175.0/24 8866 -77.85.176.0/20 8866 -77.85.192.0/21 8866 -77.85.200.0/22 8866 -77.85.204.0/23 8866 -77.85.206.0/24 208579 -77.85.207.0/24 8866 -77.85.208.0/21 8866 -77.85.216.0/22 8866 -77.85.220.0/24 49233 -77.85.221.0/24 8866 -77.85.222.0/24 203390 -77.85.223.0/24 8866 -77.85.224.0/21 8866 -77.85.232.0/22 8866 -77.85.236.0/23 8866 -77.85.238.0/24 8866 -77.85.239.0/24 47410 -77.85.240.0/20 8866 -77.86.0.0/17 12390 -77.86.128.0/17 29422 -77.87.0.0/21 42763 -77.87.8.0/21 21412 -77.87.16.0/21 42838 -77.87.24.0/21 1213 -77.87.32.0/21 41911 -77.87.40.0/21 44668 -77.87.48.0/22 44194 -77.87.64.0/21 12389 -77.87.72.0/24 51373 -77.87.73.0/24 203210 -77.87.74.0/24 203210 -77.87.75.0/24 34530 -77.87.76.0/24 42154 -77.87.80.0/21 41771 -77.87.88.0/21 49719 -77.87.96.0/21 43182 -77.87.104.0/21 43424 -77.87.112.0/21 29069 -77.87.128.0/21 49071 -77.87.136.0/21 43939 -77.87.144.0/21 29107 -77.87.152.0/21 49223 -77.87.160.0/21 34427 -77.87.168.0/21 49156 -77.87.176.0/21 43338 -77.87.185.0/24 198930 -77.87.186.0/24 202355 -77.87.187.0/24 203085 -77.87.188.0/24 203829 -77.87.189.0/24 201213 -77.87.190.0/24 8881 -77.87.191.0/24 31317 -77.87.192.0/21 28907 -77.87.200.0/21 43404 -77.87.208.0/23 12616 -77.87.210.0/24 12616 -77.87.211.0/24 29076 -77.87.212.0/23 12616 -77.87.214.0/23 3175 -77.87.216.0/21 43420 -77.87.224.0/21 49234 -77.87.232.0/21 6830 -77.87.240.0/21 51400 -77.87.248.0/21 34568 -77.88.0.0/18 13238 -77.88.64.0/18 2116 -77.88.128.0/18 43939 -77.88.192.0/21 61297 -77.88.200.0/21 3326 -77.88.208.0/20 3326 -77.88.224.0/23 31445 -77.88.232.0/23 31445 -77.88.236.0/24 29534 -77.88.238.0/23 29534 -77.88.240.0/20 3326 -77.89.0.0/18 21309 -77.89.64.0/18 31423 -77.89.128.0/18 39545 -77.89.192.0/18 25454 -77.90.0.0/18 12586 -77.90.64.0/20 34120 -77.90.80.0/22 34120 -77.90.84.0/22 43627 -77.90.88.0/22 43627 -77.90.94.0/23 34120 -77.90.96.0/23 34120 -77.90.99.0/24 202725 -77.90.100.0/23 34120 -77.90.102.0/23 43627 -77.90.104.0/21 34120 -77.90.112.0/20 34120 -77.90.128.0/23 42821 -77.90.130.0/24 42821 -77.90.132.0/23 42821 -77.90.134.0/24 42821 -77.90.136.0/23 42821 -77.90.140.0/24 42821 -77.90.142.0/23 42821 -77.90.144.0/24 42821 -77.90.146.0/23 42821 -77.90.148.0/24 42821 -77.90.157.0/24 197706 -77.90.158.0/23 9009 -77.90.160.0/22 9009 -77.90.164.0/24 200019 -77.90.165.0/24 9009 -77.90.167.0/24 9009 -77.90.168.0/22 9009 -77.90.172.0/24 9009 -77.90.174.0/23 9009 -77.90.177.0/24 9009 -77.90.181.0/24 200019 -77.90.182.0/23 9009 -77.90.184.0/24 197706 -77.90.185.0/24 200019 -77.90.186.0/24 9009 -77.90.187.0/24 200019 -77.90.192.0/18 25019 -77.91.0.0/18 35378 -77.91.64.0/22 42861 -77.91.68.0/24 42861 -77.91.69.0/24 198297 -77.91.70.0/23 42861 -77.91.72.0/21 42861 -77.91.80.0/22 50260 -77.91.84.0/22 56975 -77.91.88.0/21 42861 -77.91.96.0/20 42861 -77.91.112.0/24 5577 -77.91.113.0/24 42861 -77.91.114.0/23 42861 -77.91.116.0/22 42861 -77.91.120.0/23 64419 -77.91.122.0/23 206066 -77.91.124.0/22 42861 -77.91.128.0/18 12975 -77.91.192.0/21 43667 -77.91.200.0/21 8426 -77.91.208.0/21 29422 -77.91.216.0/21 43012 -77.91.224.0/24 198354 -77.91.225.0/24 41947 -77.91.226.0/23 41947 -77.91.228.0/22 41947 -77.91.232.0/21 8972 -77.91.240.0/21 47233 -77.91.248.0/21 35825 -77.92.1.0/24 43356 -77.92.2.0/23 43356 -77.92.4.0/22 43356 -77.92.8.0/21 43356 -77.92.16.0/21 43356 -77.92.32.0/19 30975 -77.92.64.0/19 13213 -77.92.96.0/20 25145 -77.92.112.0/21 25145 -77.92.120.0/24 25145 -77.92.122.0/23 25145 -77.92.124.0/22 25145 -77.92.128.0/21 42910 -77.92.136.0/22 42910 -77.92.140.0/23 42910 -77.92.142.0/24 42910 -77.92.144.0/24 42910 -77.92.146.0/24 42910 -77.92.148.0/22 42910 -77.92.152.0/23 42910 -77.92.155.0/24 42910 -77.92.158.0/23 42910 -77.92.160.0/20 39273 -77.92.176.0/24 39273 -77.92.177.0/24 60924 -77.92.178.0/24 60924 -77.92.179.0/24 39273 -77.92.180.0/22 39273 -77.92.184.0/21 39273 -77.92.192.0/19 25424 -77.92.224.0/19 35805 -77.93.0.0/19 24651 -77.93.32.0/20 43022 -77.93.48.0/22 43022 -77.93.52.0/23 43022 -77.93.54.0/23 43633 -77.93.56.0/23 43022 -77.93.58.0/24 43022 -77.93.59.0/24 43633 -77.93.60.0/24 43022 -77.93.61.0/24 43633 -77.93.62.0/23 43022 -77.93.64.0/19 43293 -77.93.96.0/22 15640 -77.93.100.0/22 13055 -77.93.104.0/22 48322 -77.93.108.0/23 48322 -77.93.110.0/23 50071 -77.93.112.0/21 50071 -77.93.120.0/22 13055 -77.93.124.0/22 48000 -77.93.128.0/19 60648 -77.93.160.0/23 39737 -77.93.162.0/24 39737 -77.93.164.0/22 39737 -77.93.168.0/22 39737 -77.93.173.0/24 50983 -77.93.176.0/20 39737 -77.93.192.0/19 24971 -77.93.224.0/19 5602 -77.94.0.0/24 41411 -77.94.1.0/24 34665 -77.94.2.0/24 44587 -77.94.3.0/24 21299 -77.94.4.0/22 21299 -77.94.8.0/23 21299 -77.94.10.0/24 35566 -77.94.11.0/24 21299 -77.94.12.0/22 21299 -77.94.16.0/20 21299 -77.94.32.0/21 30721 -77.94.40.0/23 30721 -77.94.42.0/23 21166 -77.94.44.0/22 34421 -77.94.48.0/21 30721 -77.94.56.0/21 34421 -77.94.64.0/23 60772 -77.94.66.0/24 60772 -77.94.68.0/22 3302 -77.94.72.0/21 3302 -77.94.80.0/20 3302 -77.94.96.0/19 28812 -77.94.128.0/19 43061 -77.94.160.0/19 8641 -77.94.192.0/19 29190 -77.94.224.0/23 43390 -77.94.230.0/23 8528 -77.94.232.0/21 13243 -77.94.240.0/21 39591 -77.94.248.0/21 199835 -77.95.0.0/21 43030 -77.95.8.0/21 43020 -77.95.16.0/21 43024 -77.95.32.0/21 34119 -77.95.40.0/21 43070 -77.95.48.0/21 39039 -77.95.56.0/21 8449 -77.95.64.0/22 199422 -77.95.72.0/21 31726 -77.95.80.0/24 15961 -77.95.81.0/24 198949 -77.95.82.0/23 15961 -77.95.84.0/22 15961 -77.95.88.0/21 43087 -77.95.96.0/21 34756 -77.95.104.0/21 3246 -77.95.112.0/23 16303 -77.95.114.0/24 16303 -77.95.120.0/24 39040 -77.95.128.0/21 43226 -77.95.136.0/21 28716 -77.95.144.0/21 29282 -77.95.152.0/21 44762 -77.95.160.0/21 39449 -77.95.168.0/21 44898 -77.95.176.0/21 34555 -77.95.184.0/21 41965 -77.95.192.0/21 39235 -77.95.200.0/21 43152 -77.95.208.0/21 43185 -77.95.216.0/24 25233 -77.95.217.0/24 29684 -77.95.218.0/24 35819 -77.95.219.0/24 29684 -77.95.224.0/21 62370 -77.95.232.0/23 25332 -77.95.234.0/23 20853 -77.95.236.0/22 20853 -77.95.240.0/21 3222 -77.95.248.0/21 43190 -77.96.0.0/13 5089 -77.104.0.0/18 12670 -77.104.64.0/20 42337 -77.104.80.0/22 42337 -77.104.84.0/23 42337 -77.104.86.0/24 62362 -77.104.87.0/24 42337 -77.104.88.0/21 42337 -77.104.96.0/22 42337 -77.104.100.0/24 206675 -77.104.101.0/24 42337 -77.104.102.0/23 42337 -77.104.104.0/21 42337 -77.104.112.0/21 42337 -77.104.120.0/22 42337 -77.104.124.0/24 204812 -77.104.125.0/24 42337 -77.104.126.0/23 42337 -77.104.128.0/22 36351 -77.104.132.0/23 36351 -77.104.134.0/24 36351 -77.104.135.0/24 32475 -77.104.136.0/22 32475 -77.104.140.0/24 36351 -77.104.141.0/24 32475 -77.104.142.0/23 36351 -77.104.144.0/22 32475 -77.104.148.0/24 32475 -77.104.149.0/24 36351 -77.104.150.0/24 36351 -77.104.151.0/24 32475 -77.104.152.0/24 32475 -77.104.153.0/24 36351 -77.104.154.0/23 32475 -77.104.156.0/23 32475 -77.104.158.0/24 36351 -77.104.159.0/24 32475 -77.104.160.0/22 32475 -77.104.164.0/23 32475 -77.104.166.0/24 32475 -77.104.167.0/24 36351 -77.104.168.0/21 36351 -77.104.176.0/24 32475 -77.104.177.0/24 36351 -77.104.178.0/23 32475 -77.104.180.0/23 36351 -77.104.182.0/23 32475 -77.104.184.0/24 32475 -77.104.185.0/24 36351 -77.104.186.0/24 32475 -77.104.188.0/23 32475 -77.104.190.0/24 32475 -77.104.191.0/24 59851 -77.104.192.0/23 39906 -77.104.194.0/24 201476 -77.104.195.0/24 39906 -77.104.196.0/22 39906 -77.104.200.0/21 39906 -77.104.208.0/23 39906 -77.104.210.0/24 201476 -77.104.211.0/24 39906 -77.104.212.0/22 39906 -77.104.216.0/24 201476 -77.104.217.0/24 39906 -77.104.218.0/23 39906 -77.104.220.0/23 39906 -77.104.222.0/24 39906 -77.104.223.0/24 201476 -77.104.224.0/20 39906 -77.104.240.0/24 201476 -77.104.241.0/24 39906 -77.104.242.0/23 39906 -77.104.244.0/24 39906 -77.104.245.0/24 201476 -77.104.246.0/23 39906 -77.104.248.0/21 39906 -77.105.0.0/18 9125 -77.105.64.0/18 42621 -77.105.128.0/20 42031 -77.105.144.0/24 42031 -77.105.145.0/24 49326 -77.105.146.0/23 42031 -77.105.148.0/23 62246 -77.105.151.0/24 42031 -77.105.152.0/23 41013 -77.105.154.0/23 42031 -77.105.156.0/22 42031 -77.105.160.0/21 43176 -77.105.176.0/21 43699 -77.105.184.0/22 43699 -77.105.188.0/22 43176 -77.105.192.0/18 35706 -77.106.0.0/18 12389 -77.106.64.0/23 34145 -77.106.66.0/23 12772 -77.106.68.0/22 34145 -77.106.72.0/21 34145 -77.106.80.0/20 34145 -77.106.96.0/21 34145 -77.106.104.0/24 201495 -77.106.106.0/23 34145 -77.106.108.0/22 34145 -77.106.112.0/20 34145 -77.106.128.0/18 29492 -77.106.192.0/22 42110 -77.106.196.0/23 3216 -77.106.198.0/23 42110 -77.106.200.0/21 42110 -77.106.208.0/20 42110 -77.106.224.0/19 42110 -77.107.0.0/18 62183 -77.107.64.0/18 8851 -77.107.128.0/18 5413 -77.107.192.0/18 16171 -77.108.0.0/18 34606 -77.108.64.0/22 8732 -77.108.68.0/23 8732 -77.108.70.0/24 8732 -77.108.71.0/24 42561 -77.108.72.0/21 8732 -77.108.80.0/22 8732 -77.108.84.0/23 8732 -77.108.86.0/24 43199 -77.108.87.0/24 8732 -77.108.88.0/24 8732 -77.108.89.0/24 42561 -77.108.90.0/24 8732 -77.108.91.0/24 202673 -77.108.92.0/24 8732 -77.108.93.0/24 202071 -77.108.94.0/23 8732 -77.108.96.0/21 8732 -77.108.104.0/24 8732 -77.108.105.0/24 39252 -77.108.106.0/23 8732 -77.108.108.0/22 8732 -77.108.112.0/24 8732 -77.108.113.0/24 8595 -77.108.114.0/24 202674 -77.108.115.0/24 202673 -77.108.116.0/22 8732 -77.108.120.0/21 8732 -77.108.128.0/18 42228 -77.108.192.0/18 35728 -77.109.0.0/23 42396 -77.109.9.0/24 42396 -77.109.12.0/22 42396 -77.109.16.0/23 42396 -77.109.18.0/24 42396 -77.109.20.0/22 42396 -77.109.24.0/21 42396 -77.109.32.0/19 42396 -77.109.64.0/18 9031 -77.109.128.0/18 13030 -77.109.192.0/18 21366 -77.110.0.0/18 34610 -77.110.66.0/24 35629 -77.110.82.0/24 35629 -77.110.87.0/24 35629 -77.110.119.0/24 35629 -77.110.120.0/23 35629 -77.110.125.0/24 35629 -77.110.128.0/18 8462 -77.110.192.0/18 16175 -77.111.0.0/18 3212 -77.111.64.0/19 197248 -77.111.96.0/20 197248 -77.111.112.0/20 50261 -77.111.128.0/18 8462 -77.111.200.0/23 13893 -77.111.202.0/23 16711 -77.111.206.0/23 206625 -77.111.208.0/22 200077 -77.111.212.0/22 31727 -77.111.216.0/21 31727 -77.111.224.0/22 31727 -77.111.232.0/22 6830 -77.111.236.0/24 198736 -77.111.238.0/23 198736 -77.111.240.0/22 51468 -77.111.244.0/22 205016 -77.111.248.0/22 50889 -77.111.252.0/22 39356 -77.112.0.0/14 8374 -77.116.0.0/15 25255 -77.118.0.0/16 8437 -77.119.0.0/16 25255 -77.120.0.0/19 25229 -77.120.32.0/20 25229 -77.120.52.0/22 25229 -77.120.56.0/22 47629 -77.120.60.0/22 25229 -77.120.64.0/18 25229 -77.120.128.0/18 25229 -77.120.200.0/21 25229 -77.120.208.0/20 25229 -77.120.224.0/19 25229 -77.121.0.0/21 25229 -77.121.8.0/22 25229 -77.121.12.0/23 25229 -77.121.14.0/24 205515 -77.121.15.0/24 25229 -77.121.16.0/21 25229 -77.121.24.0/23 25229 -77.121.26.0/24 25229 -77.121.28.0/22 25229 -77.121.32.0/19 205515 -77.121.64.0/18 25229 -77.121.128.0/17 25229 -77.122.0.0/16 25229 -77.123.0.0/18 25229 -77.123.64.0/19 25229 -77.123.96.0/20 25229 -77.123.120.0/21 25229 -77.123.128.0/18 25229 -77.123.192.0/19 205515 -77.123.224.0/20 47629 -77.123.240.0/21 47629 -77.123.248.0/22 47629 -77.123.252.0/22 205515 -77.124.0.0/14 9116 -77.128.0.0/13 15557 -77.136.0.0/16 15557 -77.137.0.0/17 12849 -77.137.128.0/19 12849 -77.137.160.0/20 12849 -77.137.176.0/23 21450 -77.137.178.0/23 12849 -77.137.180.0/22 12849 -77.137.184.0/21 12849 -77.137.192.0/22 12849 -77.137.196.0/22 15557 -77.137.200.0/21 15557 -77.137.208.0/20 15557 -77.137.224.0/19 49902 -77.138.0.0/15 12849 -77.140.0.0/15 15557 -77.142.0.0/16 15557 -77.143.0.0/16 49902 -77.144.0.0/12 15557 -77.160.0.0/13 1136 -77.168.0.0/14 1136 -77.172.0.0/15 1136 -77.174.0.0/16 12871 -77.175.0.0/17 49562 -77.175.128.0/17 1136 -77.176.0.0/12 6805 -77.192.0.0/12 15557 -77.208.0.0/14 12430 -77.212.0.0/14 9158 -77.216.0.0/15 1257 -77.218.0.0/19 1257 -77.218.32.0/22 39651 -77.218.36.0/23 39651 -77.218.38.0/24 39651 -77.218.39.0/24 2119 -77.218.40.0/21 39651 -77.218.48.0/22 39651 -77.218.52.0/24 3301 -77.218.53.0/24 39651 -77.218.54.0/23 39651 -77.218.56.0/21 39651 -77.218.64.0/18 1257 -77.218.128.0/17 1257 -77.219.0.0/16 1257 -77.220.0.0/19 36871 -77.220.32.0/19 30881 -77.220.64.0/19 44160 -77.220.96.0/20 39912 -77.220.112.0/22 39912 -77.220.116.0/22 35753 -77.220.120.0/21 39912 -77.220.128.0/19 15582 -77.220.160.0/19 42632 -77.220.192.0/22 44088 -77.220.196.0/22 45007 -77.220.200.0/22 39144 -77.220.204.0/24 51898 -77.220.205.0/24 202423 -77.220.206.0/24 51162 -77.220.207.0/24 57724 -77.220.208.0/24 42135 -77.220.209.0/24 31261 -77.220.210.0/24 204827 -77.220.211.0/24 31261 -77.220.212.0/22 204601 -77.220.216.0/21 61400 -77.220.224.0/20 42699 -77.220.240.0/22 42699 -77.220.244.0/22 204235 -77.220.248.0/21 62310 -77.221.0.0/19 42560 -77.221.32.0/22 197889 -77.221.36.0/22 200964 -77.221.40.0/23 200964 -77.221.42.0/24 200964 -77.221.43.0/24 12301 -77.221.44.0/23 197889 -77.221.46.0/23 34549 -77.221.48.0/24 62214 -77.221.49.0/24 197889 -77.221.50.0/24 200964 -77.221.51.0/24 197248 -77.221.52.0/22 197889 -77.221.56.0/23 47169 -77.221.58.0/23 30836 -77.221.60.0/23 30836 -77.221.62.0/24 197889 -77.221.63.0/24 30836 -77.221.64.0/19 21412 -77.221.96.0/19 42769 -77.221.128.0/19 30968 -77.221.160.0/19 8607 -77.221.192.0/19 42676 -77.221.224.0/19 42876 -77.222.0.0/19 8585 -77.222.32.0/21 42751 -77.222.40.0/22 44112 -77.222.44.0/24 44112 -77.222.45.0/24 35295 -77.222.46.0/24 44112 -77.222.48.0/23 48287 -77.222.50.0/23 44112 -77.222.52.0/22 44112 -77.222.56.0/21 44112 -77.222.64.0/19 47886 -77.222.96.0/19 8369 -77.222.128.0/21 21219 -77.222.136.0/24 3326 -77.222.137.0/24 21219 -77.222.138.0/24 21219 -77.222.139.0/24 3326 -77.222.140.0/22 21219 -77.222.144.0/20 3326 -77.222.160.0/19 206557 -77.222.192.0/19 2116 -77.222.224.0/19 29314 -77.223.0.0/19 31034 -77.223.32.0/19 13170 -77.223.64.0/19 51604 -77.223.128.0/20 43391 -77.223.144.0/23 28753 -77.223.146.0/23 43391 -77.223.148.0/23 43391 -77.223.152.0/23 43391 -77.223.154.0/24 43391 -77.223.156.0/24 43391 -77.223.158.0/24 43391 -77.223.160.0/24 2116 -77.223.161.0/24 61275 -77.223.162.0/23 61275 -77.223.164.0/22 61275 -77.223.168.0/22 61275 -77.223.172.0/23 61275 -77.223.174.0/23 3292 -77.223.176.0/20 61275 -77.223.202.0/23 198272 -77.223.212.0/23 207694 -77.223.214.0/23 15470 -77.223.216.0/21 15470 -77.223.224.0/19 43766 -77.224.0.0/20 12430 -77.224.16.0/24 209791 -77.224.17.0/24 12430 -77.224.18.0/23 12430 -77.224.20.0/22 12430 -77.224.24.0/21 12430 -77.224.32.0/19 12430 -77.224.64.0/18 12430 -77.224.128.0/17 12430 -77.225.0.0/20 12430 -77.225.16.0/21 12430 -77.225.24.0/22 12430 -77.225.28.0/24 12430 -77.225.29.0/24 207944 -77.225.30.0/23 12430 -77.225.32.0/19 12430 -77.225.64.0/18 12430 -77.225.128.0/17 12430 -77.226.0.0/15 12430 -77.228.0.0/17 12430 -77.228.128.0/18 12430 -77.228.192.0/22 12430 -77.228.196.0/23 200555 -77.228.198.0/23 12430 -77.228.200.0/24 51487 -77.228.201.0/24 12430 -77.228.202.0/23 12430 -77.228.204.0/22 12430 -77.228.208.0/20 12430 -77.228.224.0/19 12430 -77.229.0.0/16 12430 -77.230.0.0/15 12430 -77.232.0.0/19 15582 -77.232.32.0/23 28968 -77.232.34.0/24 204337 -77.232.35.0/24 28968 -77.232.36.0/22 28968 -77.232.40.0/22 28968 -77.232.44.0/22 57334 -77.232.48.0/23 28968 -77.232.50.0/23 24739 -77.232.52.0/22 24739 -77.232.56.0/21 24739 -77.232.96.0/24 43766 -77.232.97.0/24 32787 -77.232.98.0/23 43766 -77.232.100.0/24 43766 -77.232.102.0/23 43766 -77.232.104.0/21 43766 -77.232.112.0/20 43766 -77.232.128.0/20 42145 -77.232.144.0/24 50126 -77.232.146.0/23 50126 -77.232.148.0/22 50126 -77.232.152.0/22 50126 -77.232.156.0/22 42145 -77.232.160.0/21 44391 -77.232.168.0/21 198736 -77.232.176.0/21 198406 -77.232.184.0/21 59440 -77.232.192.0/20 9009 -77.232.208.0/21 34744 -77.232.216.0/21 5541 -77.232.224.0/19 42102 -77.233.0.0/19 42478 -77.233.32.0/19 24642 -77.233.64.0/19 1257 -77.233.96.0/19 42117 -77.233.160.0/19 29648 -77.233.192.0/19 34602 -77.233.224.0/19 31027 -77.234.0.0/19 12389 -77.234.32.0/22 8899 -77.234.36.0/22 201291 -77.234.40.0/22 198605 -77.234.44.0/23 198605 -77.234.46.0/24 198605 -77.234.47.0/24 198621 -77.234.48.0/21 57963 -77.234.56.0/21 49113 -77.234.64.0/19 20845 -77.234.96.0/19 42885 -77.234.128.0/19 12778 -77.234.160.0/19 34482 -77.234.192.0/19 42289 -77.234.224.0/19 35328 -77.235.0.0/19 41750 -77.235.32.0/20 60781 -77.235.48.0/24 60781 -77.235.49.0/24 205544 -77.235.50.0/23 60781 -77.235.52.0/22 60781 -77.235.56.0/23 60781 -77.235.58.0/24 60781 -77.235.59.0/24 205544 -77.235.60.0/22 60781 -77.235.64.0/19 42539 -77.235.96.0/19 1547 -77.235.128.0/21 42334 -77.235.136.0/22 42334 -77.235.140.0/23 42334 -77.235.143.0/24 42334 -77.235.144.0/21 42334 -77.235.152.0/24 42334 -77.235.154.0/24 42334 -77.235.156.0/23 42334 -77.235.158.0/24 42334 -77.235.160.0/19 21413 -77.235.192.0/22 12418 -77.235.196.0/24 12418 -77.235.198.0/23 12418 -77.235.200.0/22 12418 -77.235.204.0/23 12418 -77.235.208.0/20 12418 -77.235.224.0/19 12384 -77.236.0.0/19 6830 -77.236.32.0/20 42317 -77.236.48.0/20 9113 -77.236.64.0/21 41034 -77.236.72.0/22 41034 -77.236.76.0/23 41034 -77.236.78.0/23 13296 -77.236.80.0/24 13296 -77.236.81.0/24 41034 -77.236.82.0/24 41034 -77.236.83.0/24 198774 -77.236.84.0/22 41034 -77.236.88.0/22 41034 -77.236.92.0/23 41034 -77.236.94.0/24 198774 -77.236.95.0/24 41034 -77.236.96.0/21 8972 -77.236.104.0/21 29037 -77.236.112.0/21 29037 -77.236.120.0/21 29339 -77.236.160.0/20 13124 -77.236.176.0/23 13124 -77.236.178.0/24 8717 -77.236.179.0/24 13124 -77.236.180.0/23 13124 -77.236.182.0/24 8717 -77.236.183.0/24 13124 -77.236.184.0/21 13124 -77.236.192.0/19 42306 -77.236.224.0/21 21353 -77.236.232.0/23 12772 -77.236.234.0/23 21353 -77.236.236.0/22 21353 -77.236.240.0/20 21353 -77.237.0.0/19 16342 -77.237.32.0/20 1764 -77.237.48.0/21 1764 -77.237.56.0/21 42715 -77.237.64.0/23 42337 -77.237.66.0/23 204650 -77.237.68.0/22 42337 -77.237.72.0/22 42337 -77.237.76.0/24 42337 -77.237.77.0/24 12660 -77.237.78.0/23 42337 -77.237.80.0/20 42337 -77.237.96.0/19 12810 -77.237.128.0/19 47493 -77.237.160.0/19 49100 -77.237.192.0/19 12387 -77.237.224.0/24 42366 -77.237.225.0/24 201341 -77.237.226.0/24 201341 -77.237.227.0/24 42366 -77.237.228.0/24 18779 -77.237.230.0/23 201341 -77.237.232.0/21 16372 -77.237.240.0/21 16372 -77.237.248.0/22 201536 -77.237.252.0/22 197558 -77.238.0.0/19 20746 -77.238.32.0/19 1653 -77.238.64.0/19 39135 -77.238.96.0/21 199599 -77.238.104.0/22 43754 -77.238.108.0/22 58224 -77.238.112.0/21 58224 -77.238.120.0/22 43754 -77.238.124.0/22 58224 -77.238.128.0/19 34550 -77.238.176.0/22 34010 -77.238.180.0/23 203070 -77.238.182.0/24 203070 -77.238.184.0/21 34010 -77.238.192.0/19 42560 -77.238.224.0/19 42429 -77.239.0.0/19 42560 -77.239.32.0/19 15600 -77.239.64.0/19 42571 -77.239.96.0/19 6908 -77.239.128.0/19 30848 -77.239.160.0/22 6703 -77.239.164.0/23 6703 -77.239.170.0/23 6703 -77.239.172.0/22 6703 -77.239.180.0/22 6703 -77.239.184.0/22 6703 -77.239.188.0/23 6703 -77.239.192.0/20 39799 -77.239.223.0/24 44257 -77.239.224.0/19 39102 -77.240.0.0/20 20860 -77.240.16.0/20 41369 -77.240.32.0/20 41371 -77.240.48.0/20 34066 -77.240.64.0/20 47234 -77.240.80.0/22 42943 -77.240.84.0/23 56865 -77.240.86.0/23 42943 -77.240.88.0/21 42943 -77.240.96.0/20 42189 -77.240.112.0/20 16371 -77.240.130.0/23 43316 -77.240.144.0/20 42245 -77.240.160.0/20 44206 -77.240.176.0/22 24641 -77.240.180.0/24 24641 -77.240.181.0/24 34049 -77.240.182.0/24 34049 -77.240.183.0/24 24641 -77.240.184.0/21 24641 -77.240.192.0/20 39473 -77.240.208.0/20 42309 -77.240.224.0/20 31263 -77.240.240.0/22 42300 -77.240.244.0/22 34326 -77.240.248.0/21 24645 -77.241.0.0/21 31263 -77.241.8.0/23 50196 -77.241.10.0/23 31263 -77.241.12.0/22 31263 -77.241.16.0/21 42277 -77.241.24.0/22 44011 -77.241.28.0/23 34033 -77.241.30.0/24 206419 -77.241.31.0/24 48673 -77.241.32.0/20 38951 -77.241.48.0/21 15704 -77.241.56.0/23 15704 -77.241.58.0/24 204004 -77.241.59.0/24 15704 -77.241.60.0/22 15704 -77.241.68.0/22 44858 -77.241.80.0/21 34762 -77.241.88.0/22 34762 -77.241.92.0/23 34762 -77.241.94.0/24 34762 -77.241.95.0/24 28747 -77.241.96.0/20 8896 -77.241.112.0/20 42386 -77.241.128.0/20 44034 -77.241.144.0/20 42364 -77.241.160.0/22 13070 -77.241.164.0/22 200030 -77.241.168.0/21 200030 -77.241.176.0/20 20799 -77.241.192.0/20 15440 -77.241.208.0/20 21176 -77.241.224.0/20 42517 -77.241.240.0/20 43727 -77.242.0.0/21 42451 -77.242.8.0/24 42451 -77.242.13.0/24 209639 -77.242.14.0/24 39266 -77.242.15.0/24 31261 -77.242.16.0/20 35047 -77.242.40.0/21 42463 -77.242.48.0/20 49129 -77.242.64.0/20 28760 -77.242.80.0/20 41046 -77.242.96.0/20 15493 -77.242.112.0/20 35332 -77.242.128.0/20 44092 -77.242.144.0/20 42864 -77.242.160.0/20 15547 -77.242.176.0/20 42669 -77.242.192.0/21 15570 -77.242.204.0/22 30282 -77.242.208.0/20 15433 -77.242.224.0/20 42739 -77.243.0.0/20 42516 -77.243.16.0/20 44143 -77.243.32.0/20 42525 -77.243.48.0/20 42697 -77.243.64.0/20 33874 -77.243.80.0/23 50566 -77.243.83.0/24 60549 -77.243.84.0/23 42366 -77.243.86.0/23 35913 -77.243.88.0/22 174 -77.243.92.0/22 35913 -77.243.96.0/20 34602 -77.243.112.0/21 44267 -77.243.120.0/22 5547 -77.243.124.0/23 5547 -77.243.126.0/24 44267 -77.243.127.0/24 196623 -77.243.128.0/20 207199 -77.243.144.0/21 3301 -77.243.152.0/22 197784 -77.243.160.0/20 20969 -77.243.176.0/20 9009 -77.243.208.0/21 12301 -77.243.216.0/22 12301 -77.243.220.0/22 50181 -77.243.224.0/20 25459 -77.243.240.0/20 12958 -77.244.0.0/20 200701 -77.244.16.0/20 25408 -77.244.32.0/20 25229 -77.244.48.0/20 24951 -77.244.64.0/20 8636 -77.244.80.0/20 42818 -77.244.96.0/20 42652 -77.244.112.0/20 42779 -77.244.128.0/20 42689 -77.244.144.0/22 42713 -77.244.160.0/20 12958 -77.244.176.0/20 47217 -77.244.192.0/20 13124 -77.244.208.0/24 49505 -77.244.209.0/24 50340 -77.244.210.0/23 50340 -77.244.212.0/24 49505 -77.244.213.0/24 50340 -77.244.214.0/23 50340 -77.244.216.0/23 49505 -77.244.218.0/24 50340 -77.244.219.0/24 49505 -77.244.220.0/22 49505 -77.244.224.0/20 1257 -77.244.240.0/20 47692 -77.245.0.0/20 48832 -77.245.16.0/20 31424 -77.245.32.0/20 42777 -77.245.48.0/21 36057 -77.245.56.0/22 36057 -77.245.60.0/23 36057 -77.245.62.0/24 27257 -77.245.63.0/24 209006 -77.245.64.0/20 20860 -77.245.80.0/20 15879 -77.245.96.0/20 35104 -77.245.112.0/20 39001 -77.245.128.0/20 39931 -77.245.144.0/20 42868 -77.245.160.0/20 31036 -77.245.176.0/20 41622 -77.245.192.0/20 13257 -77.245.208.0/20 39264 -77.245.224.0/20 42907 -77.245.240.0/20 42968 -77.246.0.0/20 3302 -77.246.16.0/20 34442 -77.246.32.0/20 24778 -77.246.48.0/21 56696 -77.246.56.0/21 30844 -77.246.64.0/22 35074 -77.246.68.0/24 9051 -77.246.69.0/24 41589 -77.246.71.0/24 9051 -77.246.72.0/21 9051 -77.246.80.0/20 30781 -77.246.96.0/20 41842 -77.246.112.0/20 42965 -77.246.128.0/22 21254 -77.246.144.0/21 29182 -77.246.152.0/22 203020 -77.246.156.0/22 29182 -77.246.160.0/20 20860 -77.246.176.0/24 43578 -77.246.178.0/24 207084 -77.246.179.0/24 43578 -77.246.180.0/22 43578 -77.246.184.0/23 201942 -77.246.186.0/23 43578 -77.246.188.0/24 208769 -77.246.189.0/24 201942 -77.246.190.0/23 43578 -77.246.192.0/20 16302 -77.246.216.0/22 60447 -77.246.222.0/23 58079 -77.246.224.0/20 21367 -77.246.248.0/21 48330 -77.247.0.0/24 42808 -77.247.1.0/24 39115 -77.247.2.0/23 24232 -77.247.4.0/23 17307 -77.247.6.0/23 24232 -77.247.8.0/24 17307 -77.247.9.0/24 19806 -77.247.10.0/23 19806 -77.247.12.0/24 24232 -77.247.13.0/24 42808 -77.247.14.0/23 39115 -77.247.16.0/20 31272 -77.247.64.0/20 31590 -77.247.80.0/21 25291 -77.247.88.0/22 199276 -77.247.92.0/23 199276 -77.247.94.0/24 42313 -77.247.95.0/24 199276 -77.247.96.0/22 31400 -77.247.100.0/24 39724 -77.247.103.0/24 39724 -77.247.104.0/22 34659 -77.247.108.0/23 209299 -77.247.110.0/24 209299 -77.247.111.0/24 208673 -77.247.112.0/22 48095 -77.247.116.0/22 12679 -77.247.120.0/22 197328 -77.247.124.0/22 62240 -77.247.128.0/20 42132 -77.247.144.0/20 43568 -77.247.160.0/20 20807 -77.247.176.0/21 43350 -77.247.184.0/21 8595 -77.247.192.0/21 29054 -77.247.200.0/21 43281 -77.247.208.0/21 43275 -77.247.216.0/21 35081 -77.247.224.0/21 43248 -77.247.232.0/22 58002 -77.247.236.0/23 58002 -77.247.238.0/24 58002 -77.247.239.0/24 61237 -77.247.240.0/22 47478 -77.247.244.0/23 47478 -77.247.246.0/24 200472 -77.247.247.0/24 47478 -77.247.249.0/24 43272 -77.247.250.0/23 43272 -77.247.255.0/24 43272 -77.248.0.0/14 6830 -77.252.0.0/14 12741 -78.0.0.0/14 5391 -78.4.0.0/14 8968 -78.8.0.0/16 12741 -78.9.0.0/18 12741 -78.9.64.0/19 12741 -78.9.96.0/22 12741 -78.9.100.0/24 197790 -78.9.101.0/24 12741 -78.9.102.0/23 12741 -78.9.104.0/21 12741 -78.9.112.0/20 12741 -78.9.128.0/17 12741 -78.10.0.0/15 12741 -78.12.0.0/14 8612 -78.16.0.0/14 2110 -78.20.0.0/14 6848 -78.24.0.0/21 43537 -78.24.8.0/21 43541 -78.24.16.0/21 49766 -78.24.24.0/21 42132 -78.24.32.0/21 35189 -78.24.40.0/21 34703 -78.24.48.0/21 43831 -78.24.64.0/21 43749 -78.24.72.0/21 43586 -78.24.80.0/21 43611 -78.24.88.0/24 61323 -78.24.89.0/24 34934 -78.24.90.0/23 61323 -78.24.96.0/22 50825 -78.24.100.0/22 47626 -78.24.104.0/21 43608 -78.24.112.0/21 44971 -78.24.120.0/21 3257 -78.24.128.0/21 21409 -78.24.136.0/21 43655 -78.24.144.0/21 2116 -78.24.152.0/21 21446 -78.24.160.0/21 34409 -78.24.168.0/21 201205 -78.24.176.0/21 35377 -78.24.184.0/21 41075 -78.24.192.0/21 43682 -78.24.200.0/21 43683 -78.24.208.0/21 14537 -78.24.216.0/21 29182 -78.24.224.0/21 21332 -78.24.232.0/21 208906 -78.24.240.0/21 43734 -78.24.248.0/21 8468 -78.25.16.0/20 6703 -78.25.32.0/21 6703 -78.25.40.0/24 6703 -78.25.41.0/24 12883 -78.25.42.0/24 12883 -78.25.43.0/24 6703 -78.25.44.0/22 6703 -78.25.48.0/20 6703 -78.25.64.0/20 31133 -78.25.80.0/21 31133 -78.25.88.0/22 31224 -78.25.92.0/22 31205 -78.25.96.0/20 31213 -78.25.112.0/21 25159 -78.25.120.0/22 31213 -78.25.124.0/22 31195 -78.25.128.0/18 39493 -78.25.192.0/18 8607 -78.26.0.0/18 202204 -78.26.64.0/19 28929 -78.26.96.0/20 28929 -78.26.112.0/21 28929 -78.26.120.0/22 28929 -78.26.124.0/23 28929 -78.26.126.0/24 202896 -78.26.127.0/24 39479 -78.26.128.0/17 34187 -78.27.0.0/18 15670 -78.27.64.0/18 16086 -78.27.128.0/18 15683 -78.27.192.0/18 28907 -78.28.0.0/24 43679 -78.28.32.0/19 44914 -78.28.64.0/18 1257 -78.28.128.0/18 43752 -78.28.192.0/23 5518 -78.28.194.0/24 57223 -78.28.195.0/24 5518 -78.28.196.0/22 5518 -78.28.200.0/21 5518 -78.28.208.0/20 5518 -78.28.224.0/24 5518 -78.28.225.0/24 204380 -78.28.226.0/23 5518 -78.28.228.0/23 5518 -78.28.230.0/24 57223 -78.28.231.0/24 5518 -78.28.232.0/24 5518 -78.28.233.0/24 57223 -78.28.234.0/23 5518 -78.28.236.0/22 5518 -78.28.240.0/21 5518 -78.28.248.0/22 5518 -78.28.252.0/23 5518 -78.28.254.0/24 5518 -78.28.255.0/24 57223 -78.29.0.0/20 8369 -78.29.16.0/21 8369 -78.29.24.0/22 8369 -78.29.28.0/23 8369 -78.29.31.0/24 207124 -78.29.32.0/19 8369 -78.29.64.0/18 12389 -78.29.128.0/18 42580 -78.29.192.0/21 44216 -78.29.200.0/21 6848 -78.29.208.0/20 44216 -78.29.224.0/22 6848 -78.29.228.0/22 44216 -78.29.232.0/21 44216 -78.29.240.0/20 44216 -78.30.0.0/18 15704 -78.30.64.0/18 15855 -78.30.128.0/18 8771 -78.30.192.0/18 35816 -78.31.0.0/21 43728 -78.31.16.0/21 43670 -78.31.24.0/21 43757 -78.31.32.0/21 42525 -78.31.40.0/21 34177 -78.31.48.0/21 15703 -78.31.56.0/21 41496 -78.31.64.0/21 24961 -78.31.72.0/21 56420 -78.31.80.0/21 2119 -78.31.88.0/21 30813 -78.31.96.0/21 44046 -78.31.104.0/21 50957 -78.31.112.0/21 12859 -78.31.120.0/21 57476 -78.31.128.0/21 8423 -78.31.136.0/21 44124 -78.31.144.0/21 44692 -78.31.152.0/21 29314 -78.31.160.0/23 199136 -78.31.162.0/23 199138 -78.31.164.0/24 59610 -78.31.166.0/23 43939 -78.31.168.0/21 35292 -78.31.176.0/24 197287 -78.31.177.0/24 62360 -78.31.178.0/23 197643 -78.31.180.0/22 197643 -78.31.184.0/21 62179 -78.31.192.0/22 202296 -78.31.196.0/22 209620 -78.31.204.0/24 64200 -78.31.205.0/24 9009 -78.31.206.0/23 13213 -78.31.208.0/24 56467 -78.31.209.0/24 29314 -78.31.210.0/24 199093 -78.31.212.0/23 43192 -78.31.214.0/23 59572 -78.31.216.0/21 12646 -78.31.224.0/21 197225 -78.31.232.0/22 9147 -78.31.236.0/22 49986 -78.31.240.0/21 12714 -78.31.248.0/22 11404 -78.31.252.0/22 15415 -78.32.0.0/15 8468 -78.34.0.0/15 8422 -78.36.0.0/15 12389 -78.38.0.0/17 58224 -78.38.128.0/18 58224 -78.38.192.0/19 12880 -78.38.224.0/23 12880 -78.38.226.0/23 58224 -78.38.228.0/22 58224 -78.38.232.0/22 58224 -78.38.236.0/24 58224 -78.38.237.0/24 60148 -78.38.238.0/24 12880 -78.38.239.0/24 60148 -78.38.240.0/20 12880 -78.39.0.0/17 58224 -78.39.128.0/22 12880 -78.39.132.0/22 58224 -78.39.136.0/23 58224 -78.39.138.0/23 12880 -78.39.140.0/23 12880 -78.39.142.0/23 58224 -78.39.144.0/22 58224 -78.39.148.0/24 58224 -78.39.149.0/24 48159 -78.39.150.0/23 58224 -78.39.152.0/24 60148 -78.39.153.0/24 58224 -78.39.154.0/23 12880 -78.39.156.0/22 58224 -78.39.160.0/19 12880 -78.39.192.0/20 58224 -78.39.208.0/21 58224 -78.39.216.0/22 58224 -78.39.220.0/24 58224 -78.39.221.0/24 60148 -78.39.222.0/23 58224 -78.39.224.0/20 58224 -78.39.240.0/24 48159 -78.39.241.0/24 12880 -78.39.242.0/23 12880 -78.39.244.0/22 58224 -78.39.248.0/21 58224 -78.40.0.0/23 12810 -78.40.2.0/23 43494 -78.40.4.0/22 43494 -78.40.8.0/22 50474 -78.40.12.0/22 29119 -78.40.16.0/21 43298 -78.40.24.0/21 43299 -78.40.32.0/21 34920 -78.40.40.0/21 13189 -78.40.48.0/21 13193 -78.40.56.0/23 49503 -78.40.59.0/24 49503 -78.40.60.0/23 49503 -78.40.62.0/24 49503 -78.40.66.0/23 25222 -78.40.68.0/22 25222 -78.40.72.0/21 34146 -78.40.80.0/21 43318 -78.40.88.0/21 51664 -78.40.104.0/22 49628 -78.40.108.0/23 48716 -78.40.110.0/24 39572 -78.40.111.0/24 15830 -78.40.112.0/22 198682 -78.40.116.0/22 48430 -78.40.120.0/21 39605 -78.40.128.0/21 20697 -78.40.136.0/23 39505 -78.40.138.0/24 39505 -78.40.139.0/24 62015 -78.40.140.0/22 39505 -78.40.144.0/21 43545 -78.40.152.0/21 24867 -78.40.160.0/21 210218 -78.40.168.0/22 35110 -78.40.176.0/21 43824 -78.40.184.0/21 12389 -78.40.192.0/21 15670 -78.40.200.0/21 4589 -78.40.208.0/22 31239 -78.40.212.0/24 31239 -78.40.213.0/24 20751 -78.40.214.0/23 47592 -78.40.221.0/24 43569 -78.40.222.0/24 43569 -78.40.223.0/24 29038 -78.40.224.0/21 43391 -78.40.232.0/21 29626 -78.40.240.0/21 33920 -78.40.248.0/21 43571 -78.41.0.0/21 8681 -78.41.8.0/21 44070 -78.41.16.0/21 43413 -78.41.24.0/21 48022 -78.41.32.0/21 24787 -78.41.40.0/22 209341 -78.41.44.0/24 208086 -78.41.45.0/24 31169 -78.41.46.0/23 31169 -78.41.48.0/22 8820 -78.41.52.0/22 209966 -78.41.56.0/21 50285 -78.41.64.0/21 8368 -78.41.72.0/21 31383 -78.41.80.0/22 202205 -78.41.84.0/22 9009 -78.41.92.0/22 42187 -78.41.96.0/22 12714 -78.41.100.0/22 35298 -78.41.106.0/23 34879 -78.41.108.0/23 34879 -78.41.112.0/21 35492 -78.41.120.0/21 44764 -78.41.128.0/22 31367 -78.41.135.0/24 31367 -78.41.144.0/23 42685 -78.41.148.0/23 47515 -78.41.150.0/24 47515 -78.41.152.0/21 6908 -78.41.160.0/21 8487 -78.41.168.0/21 43451 -78.41.176.0/21 43521 -78.41.184.0/21 8487 -78.41.192.0/23 43527 -78.41.194.0/24 43527 -78.41.196.0/24 43527 -78.41.197.0/24 209351 -78.41.199.0/24 198390 -78.41.200.0/21 62370 -78.41.208.0/21 5413 -78.41.216.0/21 50800 -78.41.224.0/21 27822 -78.41.232.0/21 35393 -78.41.240.0/21 29217 -78.41.248.0/21 13001 -78.42.0.0/15 6830 -78.44.0.0/15 6830 -78.46.0.0/15 24940 -78.48.0.0/13 6805 -78.56.0.0/13 8764 -78.64.0.0/12 3301 -78.80.0.0/18 13036 -78.80.64.0/19 13036 -78.80.96.0/19 6855 -78.80.128.0/17 13036 -78.81.0.0/17 16301 -78.81.128.0/18 12389 -78.81.192.0/18 16301 -78.82.0.0/16 2119 -78.83.0.0/22 8717 -78.83.4.0/24 8717 -78.83.5.0/24 29580 -78.83.6.0/23 8717 -78.83.8.0/22 8717 -78.83.12.0/23 8717 -78.83.14.0/23 29580 -78.83.16.0/20 8717 -78.83.32.0/19 29580 -78.83.64.0/18 29580 -78.83.128.0/21 48917 -78.83.136.0/23 29580 -78.83.138.0/24 29580 -78.83.139.0/24 8717 -78.83.140.0/24 209736 -78.83.141.0/24 29580 -78.83.142.0/23 8717 -78.83.144.0/21 8717 -78.83.152.0/22 29580 -78.83.156.0/23 60966 -78.83.158.0/24 60966 -78.83.159.0/24 8717 -78.83.160.0/24 8717 -78.83.161.0/24 29580 -78.83.162.0/23 29580 -78.83.164.0/24 8717 -78.83.165.0/24 29580 -78.83.166.0/23 29580 -78.83.168.0/24 8717 -78.83.169.0/24 29580 -78.83.170.0/23 29580 -78.83.172.0/22 8717 -78.83.176.0/22 29580 -78.83.180.0/23 8717 -78.83.182.0/23 29580 -78.83.184.0/24 29580 -78.83.185.0/24 8717 -78.83.186.0/23 29580 -78.83.188.0/23 29580 -78.83.190.0/24 29580 -78.83.191.0/24 8717 -78.83.192.0/23 8717 -78.83.194.0/24 8717 -78.83.195.0/24 29580 -78.83.196.0/23 29580 -78.83.198.0/24 29580 -78.83.199.0/24 12716 -78.83.200.0/21 29580 -78.83.208.0/24 51581 -78.83.209.0/24 198280 -78.83.210.0/24 8717 -78.83.211.0/24 203312 -78.83.212.0/23 201326 -78.83.214.0/23 8717 -78.83.216.0/21 8717 -78.83.224.0/21 8717 -78.83.232.0/23 8717 -78.83.234.0/24 202357 -78.83.235.0/24 200458 -78.83.236.0/24 56539 -78.83.237.0/24 8717 -78.83.238.0/23 49421 -78.83.240.0/21 8717 -78.83.248.0/22 8717 -78.83.252.0/24 8717 -78.83.253.0/24 29580 -78.83.254.0/23 8717 -78.84.0.0/16 12578 -78.85.0.0/16 12389 -78.86.0.0/16 5607 -78.87.0.0/19 6866 -78.87.32.0/20 6866 -78.87.48.0/20 3329 -78.87.64.0/18 6866 -78.87.128.0/18 6866 -78.87.192.0/19 3329 -78.87.224.0/20 3329 -78.87.240.0/20 6866 -78.88.0.0/16 29314 -78.89.0.0/16 29357 -78.90.0.0/19 35141 -78.90.32.0/22 35141 -78.90.36.0/23 8717 -78.90.38.0/23 35141 -78.90.40.0/21 35141 -78.90.48.0/20 35141 -78.90.64.0/22 35141 -78.90.68.0/23 35141 -78.90.70.0/24 35141 -78.90.71.0/24 8717 -78.90.72.0/21 35141 -78.90.80.0/21 35141 -78.90.88.0/22 35141 -78.90.92.0/23 35141 -78.90.94.0/23 8717 -78.90.96.0/20 35141 -78.90.112.0/22 35141 -78.90.116.0/24 8717 -78.90.117.0/24 35141 -78.90.118.0/23 35141 -78.90.120.0/21 35141 -78.90.128.0/22 35141 -78.90.132.0/23 8717 -78.90.134.0/24 8717 -78.90.135.0/24 35141 -78.90.136.0/22 35141 -78.90.140.0/24 8717 -78.90.141.0/24 35141 -78.90.142.0/23 35141 -78.90.144.0/21 35141 -78.90.152.0/23 35141 -78.90.154.0/23 8717 -78.90.156.0/22 8717 -78.90.160.0/19 35141 -78.90.192.0/22 35141 -78.90.196.0/23 35141 -78.90.198.0/23 60966 -78.90.200.0/24 60966 -78.90.201.0/24 8717 -78.90.202.0/23 35141 -78.90.204.0/23 35141 -78.90.206.0/23 8717 -78.90.208.0/23 8717 -78.90.210.0/24 8717 -78.90.211.0/24 35141 -78.90.212.0/22 35141 -78.90.216.0/21 35141 -78.90.224.0/21 35141 -78.90.232.0/21 20911 -78.90.240.0/24 8717 -78.90.241.0/24 35141 -78.90.242.0/23 8717 -78.90.244.0/23 35141 -78.90.246.0/23 8717 -78.90.248.0/21 20911 -78.91.0.0/16 224 -78.92.0.0/17 5483 -78.92.128.0/18 5483 -78.92.192.0/19 5483 -78.92.224.0/22 5483 -78.92.228.0/23 5483 -78.92.230.0/24 5483 -78.92.231.0/24 58098 -78.92.232.0/23 5483 -78.92.234.0/24 58098 -78.92.235.0/24 5483 -78.92.236.0/22 5483 -78.92.240.0/20 5483 -78.93.0.0/16 25233 -78.94.0.0/16 6830 -78.95.0.0/16 39891 -78.96.0.0/15 6830 -78.98.0.0/15 6855 -78.100.0.0/19 8781 -78.100.32.0/20 8781 -78.100.48.0/21 8781 -78.100.56.0/22 8781 -78.100.60.0/23 8781 -78.100.62.0/24 42298 -78.100.63.0/24 8781 -78.100.64.0/18 8781 -78.100.128.0/19 8781 -78.100.160.0/19 42298 -78.100.192.0/18 42298 -78.101.0.0/18 42298 -78.101.64.0/19 42298 -78.101.96.0/19 8781 -78.101.128.0/18 42298 -78.101.192.0/19 42298 -78.101.224.0/20 42298 -78.101.240.0/20 8781 -78.102.0.0/15 6830 -78.104.0.0/17 1853 -78.104.128.0/20 1853 -78.104.144.0/24 1853 -78.104.145.0/24 1120 -78.104.146.0/23 1853 -78.104.148.0/22 1853 -78.104.152.0/21 1853 -78.104.160.0/19 1853 -78.104.192.0/18 1853 -78.105.0.0/16 5607 -78.106.0.0/16 8402 -78.107.0.0/21 8402 -78.107.8.0/23 8402 -78.107.10.0/24 8402 -78.107.11.0/24 3216 -78.107.12.0/22 8402 -78.107.16.0/24 8402 -78.107.17.0/24 3216 -78.107.18.0/23 8402 -78.107.20.0/24 8402 -78.107.21.0/24 29125 -78.107.22.0/23 8402 -78.107.24.0/21 8402 -78.107.32.0/20 8402 -78.107.48.0/21 8402 -78.107.56.0/24 3216 -78.107.57.0/24 8402 -78.107.58.0/23 8402 -78.107.60.0/22 8402 -78.107.64.0/23 8402 -78.107.66.0/24 8402 -78.107.67.0/24 3216 -78.107.68.0/22 8402 -78.107.72.0/21 8402 -78.107.80.0/22 8402 -78.107.84.0/24 3216 -78.107.85.0/24 8402 -78.107.86.0/23 8402 -78.107.88.0/24 8402 -78.107.89.0/24 3216 -78.107.90.0/24 42110 -78.107.91.0/24 8402 -78.107.92.0/22 8402 -78.107.96.0/22 8402 -78.107.100.0/23 8402 -78.107.102.0/24 42110 -78.107.103.0/24 29125 -78.107.104.0/21 8402 -78.107.112.0/23 8402 -78.107.114.0/24 3216 -78.107.115.0/24 8402 -78.107.116.0/22 8402 -78.107.120.0/22 8402 -78.107.124.0/24 3216 -78.107.125.0/24 8402 -78.107.126.0/23 8402 -78.107.128.0/20 8402 -78.107.144.0/23 8402 -78.107.146.0/24 8402 -78.107.147.0/24 3216 -78.107.148.0/22 8402 -78.107.152.0/21 8402 -78.107.160.0/20 8402 -78.107.176.0/21 8402 -78.107.184.0/22 8402 -78.107.188.0/23 8402 -78.107.190.0/24 3216 -78.107.191.0/24 8402 -78.107.192.0/21 8402 -78.107.200.0/22 8402 -78.107.204.0/23 8402 -78.107.206.0/23 42110 -78.107.208.0/23 3216 -78.107.210.0/23 8402 -78.107.212.0/22 8402 -78.107.216.0/21 8402 -78.107.224.0/22 8402 -78.107.228.0/24 3216 -78.107.229.0/24 8402 -78.107.230.0/23 8402 -78.107.232.0/21 8402 -78.107.240.0/24 8402 -78.107.241.0/24 3216 -78.107.242.0/23 8402 -78.107.244.0/22 8402 -78.107.248.0/21 8402 -78.108.0.0/20 49172 -78.108.16.0/20 44945 -78.108.32.0/20 8280 -78.108.48.0/20 51815 -78.108.64.0/20 43148 -78.108.80.0/20 43362 -78.108.96.0/20 8251 -78.108.113.0/24 43204 -78.108.118.0/23 16815 -78.108.120.0/23 16815 -78.108.122.0/24 43204 -78.108.126.0/23 16815 -78.108.128.0/20 28878 -78.108.144.0/20 43203 -78.108.160.0/21 39010 -78.108.168.0/24 38999 -78.108.169.0/24 39010 -78.108.170.0/23 39010 -78.108.172.0/24 39010 -78.108.173.0/24 3176 -78.108.174.0/23 39010 -78.108.176.0/20 62160 -78.108.192.0/20 31430 -78.108.208.0/22 210300 -78.108.216.0/24 30823 -78.108.217.0/24 3280 -78.108.218.0/24 209401 -78.108.219.0/24 7489 -78.108.220.0/23 59775 -78.108.224.0/20 34306 -78.108.240.0/22 12615 -78.108.244.0/23 49040 -78.108.246.0/24 49040 -78.108.247.0/24 203917 -78.108.248.0/24 48917 -78.108.249.0/24 39251 -78.108.250.0/24 49188 -78.108.251.0/24 203917 -78.108.252.0/22 44967 -78.109.0.0/23 13205 -78.109.5.0/24 13205 -78.109.6.0/23 13205 -78.109.9.0/24 13205 -78.109.10.0/23 13205 -78.109.13.0/24 13205 -78.109.14.0/23 13205 -78.109.16.0/20 41665 -78.109.32.0/21 13155 -78.109.40.0/22 13155 -78.109.44.0/23 13155 -78.109.46.0/23 39811 -78.109.48.0/21 39232 -78.109.56.0/21 196763 -78.109.64.0/20 49800 -78.109.80.0/20 34948 -78.109.96.0/23 43277 -78.109.98.0/24 43277 -78.109.100.0/22 43277 -78.109.104.0/21 43277 -78.109.112.0/21 34552 -78.109.120.0/23 29648 -78.109.122.0/23 34552 -78.109.124.0/22 34552 -78.109.128.0/20 43314 -78.109.144.0/20 9198 -78.109.160.0/20 61323 -78.109.176.0/20 41230 -78.109.192.0/20 25184 -78.109.208.0/20 33916 -78.109.224.0/24 50710 -78.109.233.0/24 198169 -78.109.234.0/23 198169 -78.109.236.0/23 50710 -78.109.238.0/24 50710 -78.109.240.0/20 16211 -78.110.0.0/20 50880 -78.110.16.0/24 32787 -78.110.17.0/24 20521 -78.110.18.0/23 20521 -78.110.20.0/22 20521 -78.110.24.0/23 20521 -78.110.26.0/24 20521 -78.110.27.0/24 32787 -78.110.28.0/22 20521 -78.110.36.0/22 3249 -78.110.40.0/22 3249 -78.110.44.0/24 198776 -78.110.48.0/20 31240 -78.110.64.0/20 39273 -78.110.80.0/20 31507 -78.110.96.0/20 29256 -78.110.112.0/20 34513 -78.110.128.0/20 3303 -78.110.144.0/20 43530 -78.110.160.0/20 42831 -78.110.192.0/20 48517 -78.110.208.0/20 43708 -78.110.224.0/20 43566 -78.110.240.0/20 43687 -78.111.0.0/22 30902 -78.111.4.0/23 30902 -78.111.6.0/24 30902 -78.111.7.0/24 44410 -78.111.8.0/21 24631 -78.111.16.0/20 6703 -78.111.32.0/20 204170 -78.111.48.0/20 39232 -78.111.64.0/20 33984 -78.111.80.0/20 35000 -78.111.96.0/20 20649 -78.111.112.0/20 47232 -78.111.128.0/20 52036 -78.111.144.0/20 34351 -78.111.160.0/20 28717 -78.111.176.0/20 31343 -78.111.192.0/20 8680 -78.111.208.0/22 6703 -78.111.212.0/23 6703 -78.111.214.0/23 12883 -78.111.216.0/23 12883 -78.111.218.0/23 6703 -78.111.220.0/23 6703 -78.111.222.0/23 12883 -78.111.224.0/20 12586 -78.111.240.0/20 43793 -78.112.0.0/12 8228 -78.128.1.0/24 31083 -78.128.2.0/23 43205 -78.128.4.0/24 49188 -78.128.5.0/24 48917 -78.128.6.0/23 31083 -78.128.8.0/23 31083 -78.128.10.0/23 43205 -78.128.12.0/22 43205 -78.128.16.0/20 43205 -78.128.32.0/22 60656 -78.128.36.0/22 43205 -78.128.40.0/23 43205 -78.128.42.0/23 31083 -78.128.44.0/22 60656 -78.128.48.0/22 60656 -78.128.52.0/22 43205 -78.128.56.0/22 43205 -78.128.60.0/24 31083 -78.128.61.0/24 202968 -78.128.62.0/24 31083 -78.128.64.0/23 60656 -78.128.66.0/24 48917 -78.128.67.0/24 57344 -78.128.68.0/22 60656 -78.128.72.0/24 57344 -78.128.73.0/24 207172 -78.128.74.0/23 43205 -78.128.76.0/23 31083 -78.128.78.0/24 31083 -78.128.79.0/24 57344 -78.128.80.0/23 31083 -78.128.82.0/23 43205 -78.128.84.0/22 43205 -78.128.88.0/22 43205 -78.128.92.0/24 44901 -78.128.93.0/24 60168 -78.128.94.0/24 57344 -78.128.95.0/24 60168 -78.128.96.0/23 43205 -78.128.98.0/24 57344 -78.128.99.0/24 203380 -78.128.100.0/22 43205 -78.128.104.0/22 43205 -78.128.108.0/23 57344 -78.128.110.0/23 205085 -78.128.112.0/24 202325 -78.128.113.0/24 209160 -78.128.114.0/24 50360 -78.128.115.0/24 43205 -78.128.116.0/23 43205 -78.128.118.0/24 31083 -78.128.119.0/24 50500 -78.128.120.0/22 43205 -78.128.124.0/23 48584 -78.128.126.0/24 31083 -78.128.127.0/24 203380 -78.128.128.0/17 2852 -78.129.0.0/17 12392 -78.129.128.0/17 20860 -78.130.0.0/17 2860 -78.130.128.0/24 48900 -78.130.129.0/24 9070 -78.130.130.0/23 9070 -78.130.132.0/22 29667 -78.130.136.0/22 29667 -78.130.140.0/23 9070 -78.130.142.0/24 9070 -78.130.143.0/24 47647 -78.130.144.0/21 9070 -78.130.152.0/22 9070 -78.130.156.0/24 15362 -78.130.157.0/24 9070 -78.130.158.0/23 9070 -78.130.160.0/19 9070 -78.130.192.0/18 9070 -78.131.0.0/17 20845 -78.131.128.0/20 20960 -78.131.144.0/21 20960 -78.131.152.0/22 20960 -78.131.156.0/23 60528 -78.131.158.0/23 20960 -78.131.160.0/19 20960 -78.131.192.0/21 20960 -78.131.200.0/24 20960 -78.131.201.0/24 12741 -78.131.202.0/23 20960 -78.131.204.0/22 20960 -78.131.208.0/20 20960 -78.131.224.0/19 20960 -78.132.0.0/17 8412 -78.132.128.0/20 13056 -78.132.144.0/20 12389 -78.132.160.0/19 12389 -78.132.192.0/18 12389 -78.133.0.0/18 15735 -78.133.64.0/19 15735 -78.133.96.0/23 5532 -78.133.98.0/24 15735 -78.133.99.0/24 5532 -78.133.100.0/22 5532 -78.133.104.0/21 5532 -78.133.112.0/20 5532 -78.133.128.0/20 5588 -78.133.144.0/22 2590 -78.133.148.0/22 5588 -78.133.152.0/21 5588 -78.133.160.0/21 5588 -78.133.168.0/24 41464 -78.133.169.0/24 5588 -78.133.170.0/23 5588 -78.133.172.0/22 5588 -78.133.176.0/20 5588 -78.133.192.0/22 5588 -78.133.196.0/24 198289 -78.133.197.0/24 5588 -78.133.198.0/23 5588 -78.133.200.0/21 5588 -78.133.208.0/22 5588 -78.133.212.0/23 202389 -78.133.214.0/23 5588 -78.133.216.0/21 5588 -78.133.224.0/22 5588 -78.133.228.0/24 41097 -78.133.229.0/24 5588 -78.133.230.0/23 5588 -78.133.232.0/22 5588 -78.133.236.0/24 5588 -78.133.237.0/24 206957 -78.133.238.0/23 5588 -78.133.240.0/22 197848 -78.133.244.0/23 5588 -78.133.246.0/24 198591 -78.133.247.0/24 5588 -78.133.248.0/21 5588 -78.134.0.0/17 35612 -78.134.128.0/17 35549 -78.135.0.0/18 43242 -78.135.64.0/23 42910 -78.135.79.0/24 42910 -78.135.98.0/23 42910 -78.135.103.0/24 42910 -78.135.108.0/24 42910 -78.135.112.0/24 15830 -78.135.113.0/24 42910 -78.135.114.0/23 42910 -78.135.116.0/24 42910 -78.135.128.0/17 25441 -78.136.0.0/18 15395 -78.136.64.0/23 29119 -78.136.66.0/23 44717 -78.136.68.0/22 29119 -78.136.72.0/23 48990 -78.136.74.0/23 29119 -78.136.76.0/23 29119 -78.136.78.0/24 48990 -78.136.79.0/24 29119 -78.136.80.0/20 29119 -78.136.96.0/21 29119 -78.136.104.0/22 29119 -78.136.108.0/23 29119 -78.136.110.0/24 43402 -78.136.111.0/24 29119 -78.136.112.0/20 29119 -78.136.128.0/18 42908 -78.136.192.0/22 49980 -78.136.196.0/22 9009 -78.136.200.0/21 9009 -78.136.209.0/24 25446 -78.136.210.0/24 25446 -78.136.212.0/24 25446 -78.136.216.0/24 33892 -78.136.220.0/24 25446 -78.136.223.0/24 25446 -78.136.224.0/21 20730 -78.136.232.0/21 9009 -78.136.240.0/22 20730 -78.136.248.0/21 9009 -78.137.0.0/18 25133 -78.137.64.0/19 30873 -78.137.96.0/21 51862 -78.137.104.0/21 25520 -78.137.112.0/20 61323 -78.137.128.0/18 31122 -78.137.192.0/18 12353 -78.138.1.0/24 8513 -78.138.2.0/23 8513 -78.138.9.0/24 8513 -78.138.14.0/24 8513 -78.138.16.0/24 8513 -78.138.22.0/24 8513 -78.138.25.0/24 8513 -78.138.28.0/24 8513 -78.138.30.0/24 8513 -78.138.35.0/24 8513 -78.138.40.0/23 8513 -78.138.44.0/23 8513 -78.138.47.0/24 8513 -78.138.48.0/23 8513 -78.138.50.0/24 8513 -78.138.52.0/23 8513 -78.138.54.0/24 8513 -78.138.56.0/22 8513 -78.138.60.0/23 8513 -78.138.62.0/24 8513 -78.138.64.0/21 61157 -78.138.72.0/21 25074 -78.138.80.0/21 61157 -78.138.88.0/21 25074 -78.138.96.0/21 29066 -78.138.104.0/22 29066 -78.138.112.0/22 61157 -78.138.116.0/23 61157 -78.138.118.0/24 29066 -78.138.119.0/24 61157 -78.138.120.0/22 61157 -78.138.126.0/23 29066 -78.138.128.0/18 28840 -78.138.192.0/18 35819 -78.139.0.0/18 6830 -78.139.64.0/18 39812 -78.139.128.0/18 20771 -78.139.192.0/18 34145 -78.140.0.0/19 31357 -78.140.32.0/20 34573 -78.140.48.0/20 31357 -78.140.64.0/18 48951 -78.140.128.0/18 35415 -78.140.192.0/20 35000 -78.140.208.0/24 60952 -78.140.209.0/24 35000 -78.140.210.0/24 205079 -78.140.211.0/24 50258 -78.140.212.0/24 204077 -78.140.213.0/24 35000 -78.140.214.0/23 35000 -78.140.216.0/24 200643 -78.140.217.0/24 50230 -78.140.218.0/23 35000 -78.140.220.0/22 48096 -78.140.224.0/21 35000 -78.140.232.0/22 35000 -78.140.236.0/22 205717 -78.140.240.0/21 35000 -78.140.248.0/23 202976 -78.140.250.0/24 204077 -78.140.251.0/24 35000 -78.140.252.0/22 35000 -78.141.0.0/18 5413 -78.141.64.0/18 15962 -78.141.128.0/18 6661 -78.141.192.0/19 20473 -78.142.0.0/24 31863 -78.142.1.0/24 57344 -78.142.2.0/24 200459 -78.142.4.0/23 57344 -78.142.6.0/24 31083 -78.142.7.0/24 205085 -78.142.8.0/24 31863 -78.142.9.0/24 43205 -78.142.10.0/23 43205 -78.142.12.0/22 43205 -78.142.16.0/24 44476 -78.142.17.0/24 57344 -78.142.18.0/24 207083 -78.142.19.0/24 30860 -78.142.20.0/24 57344 -78.142.21.0/24 199221 -78.142.22.0/23 205352 -78.142.24.0/24 57344 -78.142.25.0/24 200628 -78.142.26.0/23 34376 -78.142.28.0/24 34376 -78.142.29.0/24 201133 -78.142.30.0/23 43205 -78.142.32.0/24 31083 -78.142.33.0/24 57344 -78.142.34.0/24 57344 -78.142.36.0/24 42956 -78.142.37.0/24 205085 -78.142.38.0/23 205085 -78.142.40.0/22 42956 -78.142.44.0/23 34754 -78.142.46.0/24 42805 -78.142.47.0/24 31083 -78.142.48.0/23 34754 -78.142.50.0/24 49699 -78.142.51.0/24 31083 -78.142.52.0/22 48584 -78.142.56.0/22 31083 -78.142.60.0/24 57344 -78.142.61.0/24 200628 -78.142.62.0/23 31083 -78.142.64.0/23 39912 -78.142.66.0/23 3330 -78.142.68.0/22 39912 -78.142.72.0/21 39912 -78.142.96.0/20 39912 -78.142.112.0/22 39912 -78.142.116.0/23 39912 -78.142.122.0/23 39912 -78.142.124.0/22 39912 -78.142.128.0/18 8437 -78.142.192.0/22 3214 -78.142.196.0/22 209887 -78.142.200.0/22 29119 -78.142.204.0/22 50181 -78.142.208.0/22 209853 -78.142.212.0/22 206276 -78.142.220.0/22 47737 -78.142.224.0/22 209892 -78.142.228.0/22 137443 -78.142.232.0/22 47895 -78.142.236.0/23 12722 -78.142.238.0/24 12722 -78.142.239.0/24 34665 -78.142.252.0/22 209963 -78.143.0.0/18 34309 -78.143.64.0/18 44869 -78.143.128.0/18 35226 -78.143.192.0/19 56329 -78.143.224.0/20 51737 -78.143.240.0/24 397065 -78.143.245.0/24 397192 -78.143.247.0/24 397192 -78.143.248.0/22 198781 -78.143.255.0/24 21472 -78.144.0.0/13 13285 -78.152.0.0/19 43118 -78.152.32.0/20 5580 -78.152.48.0/20 3257 -78.152.64.0/19 35370 -78.152.96.0/19 21056 -78.152.128.0/19 49540 -78.152.160.0/20 8779 -78.152.176.0/21 8779 -78.152.184.0/22 8779 -78.152.188.0/23 8779 -78.152.190.0/24 8779 -78.152.191.0/24 35409 -78.152.192.0/18 15502 -78.153.0.0/19 25086 -78.153.32.0/19 3212 -78.153.64.0/19 12759 -78.153.96.0/19 49944 -78.153.128.0/22 28738 -78.153.132.0/23 28738 -78.153.134.0/24 28738 -78.153.135.0/24 44116 -78.153.136.0/24 44116 -78.153.137.0/24 201776 -78.153.138.0/24 201776 -78.153.139.0/24 42574 -78.153.140.0/23 28738 -78.153.142.0/24 28738 -78.153.143.0/24 42574 -78.153.144.0/23 28738 -78.153.146.0/24 28738 -78.153.147.0/24 201776 -78.153.148.0/22 57494 -78.153.152.0/22 28738 -78.153.156.0/22 42574 -78.153.160.0/19 28717 -78.153.192.0/19 39122 -78.153.224.0/20 30781 -78.153.240.0/22 30781 -78.153.244.0/24 30781 -78.153.245.0/24 34173 -78.153.246.0/24 30781 -78.153.247.0/24 62057 -78.153.248.0/24 43814 -78.153.249.0/24 30781 -78.153.250.0/24 8352 -78.153.251.0/24 30781 -78.153.252.0/22 30781 -78.154.0.0/19 8866 -78.154.32.0/19 24631 -78.154.64.0/19 29007 -78.154.96.0/19 8190 -78.154.128.0/20 24620 -78.154.144.0/20 5518 -78.154.160.0/19 35320 -78.154.192.0/18 9155 -78.155.0.0/19 15547 -78.155.32.0/19 8585 -78.155.64.0/19 29256 -78.155.96.0/19 43435 -78.155.128.0/19 9003 -78.155.160.0/19 35239 -78.155.192.0/23 50340 -78.155.194.0/24 50340 -78.155.195.0/24 49505 -78.155.196.0/23 50340 -78.155.198.0/24 197068 -78.155.199.0/24 50340 -78.155.200.0/22 50340 -78.155.204.0/24 50340 -78.155.205.0/24 49505 -78.155.206.0/24 49505 -78.155.207.0/24 50340 -78.155.208.0/22 199860 -78.155.212.0/23 199860 -78.155.214.0/24 199860 -78.155.215.0/24 203668 -78.155.216.0/22 50340 -78.155.220.0/22 49505 -78.155.224.0/19 43599 -78.156.0.0/19 41164 -78.156.32.0/19 43507 -78.156.64.0/20 5413 -78.156.80.0/24 5413 -78.156.81.0/24 29129 -78.156.82.0/23 5413 -78.156.84.0/22 5413 -78.156.88.0/21 5413 -78.156.96.0/19 43557 -78.156.128.0/19 43542 -78.156.160.0/19 31658 -78.156.192.0/19 44034 -78.156.224.0/22 43574 -78.156.228.0/23 12389 -78.156.230.0/23 43574 -78.156.232.0/24 12389 -78.156.233.0/24 43574 -78.156.234.0/24 43574 -78.156.235.0/24 12389 -78.156.236.0/22 43574 -78.156.240.0/20 43574 -78.157.0.0/24 43612 -78.157.1.0/24 16333 -78.157.2.0/23 16333 -78.157.4.0/23 16333 -78.157.6.0/23 43612 -78.157.8.0/21 43612 -78.157.16.0/22 43612 -78.157.20.0/22 16333 -78.157.24.0/21 16333 -78.157.33.0/24 60637 -78.157.34.0/23 41881 -78.157.36.0/22 41881 -78.157.40.0/22 41881 -78.157.44.0/22 43415 -78.157.48.0/20 41881 -78.157.64.0/19 21211 -78.157.96.0/19 39642 -78.157.128.0/19 30764 -78.157.160.0/19 43709 -78.157.192.0/19 42831 -78.157.224.0/19 42742 -78.158.0.0/19 43700 -78.158.32.0/20 34555 -78.158.48.0/20 34066 -78.158.64.0/21 42579 -78.158.72.0/21 39767 -78.158.80.0/20 39767 -78.158.96.0/19 43984 -78.158.128.0/22 16229 -78.158.132.0/24 16229 -78.158.133.0/24 8544 -78.158.134.0/24 8544 -78.158.135.0/24 16229 -78.158.136.0/22 16229 -78.158.140.0/24 16229 -78.158.141.0/24 8544 -78.158.142.0/23 16229 -78.158.144.0/22 16229 -78.158.148.0/23 16229 -78.158.150.0/24 16229 -78.158.151.0/24 8544 -78.158.152.0/21 16229 -78.158.160.0/19 43343 -78.158.192.0/24 43686 -78.158.193.0/24 48330 -78.158.194.0/23 48330 -78.158.196.0/22 48330 -78.158.200.0/21 48330 -78.158.208.0/20 48330 -78.158.224.0/19 2119 -78.159.0.0/19 43698 -78.159.32.0/19 31148 -78.159.64.0/20 42739 -78.159.80.0/22 42739 -78.159.84.0/24 207033 -78.159.85.0/24 203287 -78.159.86.0/24 42739 -78.159.87.0/24 203408 -78.159.88.0/22 42739 -78.159.94.0/23 199234 -78.159.96.0/19 28753 -78.159.128.0/23 25211 -78.159.132.0/22 20900 -78.159.136.0/22 25211 -78.159.140.0/22 11179 -78.159.144.0/22 48544 -78.159.148.0/24 20900 -78.159.149.0/24 25211 -78.159.150.0/24 25211 -78.159.151.0/24 393262 -78.159.152.0/22 25211 -78.159.157.0/24 25211 -78.159.158.0/24 25211 -78.159.159.0/24 197102 -78.159.160.0/19 43852 -78.159.192.0/21 28716 -78.159.209.0/24 198471 -78.159.210.0/23 198471 -78.159.216.0/21 28716 -78.159.224.0/21 34894 -78.159.232.0/22 34894 -78.159.236.0/23 34894 -78.159.238.0/24 34894 -78.159.239.0/24 3216 -78.160.0.0/20 47331 -78.160.16.0/21 47331 -78.160.24.0/24 9121 -78.160.25.0/24 47331 -78.160.26.0/23 47331 -78.160.28.0/22 9121 -78.160.32.0/24 47331 -78.160.33.0/24 9121 -78.160.34.0/23 47331 -78.160.36.0/24 47331 -78.160.37.0/24 9121 -78.160.38.0/23 47331 -78.160.40.0/21 47331 -78.160.48.0/21 47331 -78.160.56.0/22 47331 -78.160.60.0/23 47331 -78.160.62.0/24 9121 -78.160.63.0/24 47331 -78.160.64.0/20 47331 -78.160.80.0/24 47331 -78.160.81.0/24 9121 -78.160.82.0/23 9121 -78.160.84.0/22 9121 -78.160.88.0/21 9121 -78.160.96.0/21 47331 -78.160.104.0/21 9121 -78.160.112.0/22 47331 -78.160.116.0/23 9121 -78.160.118.0/23 47331 -78.160.120.0/23 47331 -78.160.122.0/23 9121 -78.160.124.0/22 47331 -78.160.128.0/20 9121 -78.160.144.0/21 9121 -78.160.152.0/22 47331 -78.160.156.0/22 9121 -78.160.160.0/24 9121 -78.160.161.0/24 47331 -78.160.162.0/23 47331 -78.160.164.0/24 47331 -78.160.165.0/24 9121 -78.160.166.0/23 47331 -78.160.168.0/21 47331 -78.160.176.0/22 47331 -78.160.180.0/23 47331 -78.160.182.0/24 9121 -78.160.183.0/24 47331 -78.160.184.0/23 47331 -78.160.186.0/23 9121 -78.160.188.0/24 9121 -78.160.189.0/24 47331 -78.160.190.0/24 9121 -78.160.191.0/24 47331 -78.160.192.0/22 9121 -78.160.196.0/22 47331 -78.160.200.0/21 9121 -78.160.208.0/22 47331 -78.160.212.0/23 47331 -78.160.214.0/24 9121 -78.160.215.0/24 47331 -78.160.216.0/22 9121 -78.160.220.0/22 47331 -78.160.224.0/24 9121 -78.160.225.0/24 47331 -78.160.226.0/23 47331 -78.160.228.0/24 9121 -78.160.229.0/24 47331 -78.160.230.0/24 47331 -78.160.231.0/24 9121 -78.160.232.0/22 47331 -78.160.236.0/24 47331 -78.160.237.0/24 9121 -78.160.238.0/23 47331 -78.160.240.0/23 47331 -78.160.242.0/23 9121 -78.160.244.0/22 47331 -78.160.248.0/24 9121 -78.160.249.0/24 47331 -78.160.250.0/23 47331 -78.160.252.0/23 9121 -78.160.254.0/24 47331 -78.160.255.0/24 9121 -78.161.0.0/18 47331 -78.161.64.0/23 47331 -78.161.66.0/24 9121 -78.161.67.0/24 47331 -78.161.68.0/23 47331 -78.161.70.0/24 9121 -78.161.71.0/24 47331 -78.161.72.0/24 9121 -78.161.73.0/24 47331 -78.161.74.0/23 47331 -78.161.76.0/24 9121 -78.161.77.0/24 47331 -78.161.78.0/23 47331 -78.161.80.0/22 47331 -78.161.84.0/23 47331 -78.161.86.0/24 9121 -78.161.87.0/24 47331 -78.161.88.0/24 9121 -78.161.89.0/24 47331 -78.161.90.0/23 47331 -78.161.92.0/22 47331 -78.161.96.0/24 47331 -78.161.97.0/24 9121 -78.161.98.0/23 47331 -78.161.100.0/22 47331 -78.161.104.0/24 9121 -78.161.105.0/24 47331 -78.161.106.0/23 47331 -78.161.108.0/24 47331 -78.161.109.0/24 9121 -78.161.110.0/23 47331 -78.161.112.0/23 9121 -78.161.114.0/23 47331 -78.161.116.0/22 47331 -78.161.120.0/23 47331 -78.161.122.0/24 47331 -78.161.123.0/24 9121 -78.161.124.0/23 9121 -78.161.126.0/23 47331 -78.161.128.0/22 47331 -78.161.132.0/23 9121 -78.161.134.0/23 47331 -78.161.136.0/22 47331 -78.161.140.0/23 47331 -78.161.142.0/24 9121 -78.161.143.0/24 47331 -78.161.144.0/24 47331 -78.161.145.0/24 9121 -78.161.146.0/24 47331 -78.161.147.0/24 9121 -78.161.148.0/23 9121 -78.161.150.0/24 9121 -78.161.151.0/24 47331 -78.161.152.0/23 47331 -78.161.154.0/24 47331 -78.161.155.0/24 9121 -78.161.156.0/24 9121 -78.161.157.0/24 47331 -78.161.158.0/23 47331 -78.161.160.0/21 47331 -78.161.168.0/21 9121 -78.161.176.0/20 9121 -78.161.192.0/22 47331 -78.161.196.0/24 47331 -78.161.197.0/24 9121 -78.161.198.0/23 47331 -78.161.200.0/24 47331 -78.161.201.0/24 9121 -78.161.202.0/23 47331 -78.161.204.0/23 47331 -78.161.206.0/24 47331 -78.161.207.0/24 9121 -78.161.208.0/23 9121 -78.161.210.0/23 47331 -78.161.212.0/24 47331 -78.161.213.0/24 9121 -78.161.214.0/23 47331 -78.161.216.0/23 9121 -78.161.218.0/24 9121 -78.161.219.0/24 47331 -78.161.220.0/24 9121 -78.161.221.0/24 47331 -78.161.222.0/24 9121 -78.161.223.0/24 47331 -78.161.224.0/24 47331 -78.161.225.0/24 9121 -78.161.226.0/24 9121 -78.161.227.0/24 47331 -78.161.228.0/24 9121 -78.161.229.0/24 47331 -78.161.230.0/23 47331 -78.161.232.0/24 47331 -78.161.233.0/24 9121 -78.161.234.0/23 47331 -78.161.236.0/23 47331 -78.161.238.0/24 47331 -78.161.239.0/24 9121 -78.161.240.0/20 47331 -78.162.0.0/19 47331 -78.162.32.0/20 47331 -78.162.48.0/22 9121 -78.162.52.0/24 9121 -78.162.53.0/24 47331 -78.162.54.0/23 47331 -78.162.56.0/23 47331 -78.162.58.0/24 9121 -78.162.59.0/24 47331 -78.162.60.0/23 47331 -78.162.62.0/24 9121 -78.162.63.0/24 47331 -78.162.64.0/21 9121 -78.162.72.0/21 47331 -78.162.80.0/21 47331 -78.162.88.0/21 9121 -78.162.96.0/21 47331 -78.162.104.0/23 9121 -78.162.106.0/23 47331 -78.162.108.0/23 47331 -78.162.110.0/24 9121 -78.162.111.0/24 47331 -78.162.112.0/22 47331 -78.162.116.0/23 47331 -78.162.118.0/23 9121 -78.162.120.0/21 47331 -78.162.128.0/21 9121 -78.162.136.0/21 47331 -78.162.144.0/21 47331 -78.162.152.0/21 9121 -78.162.160.0/23 9121 -78.162.162.0/23 47331 -78.162.164.0/23 47331 -78.162.166.0/24 47331 -78.162.167.0/24 9121 -78.162.168.0/22 47331 -78.162.172.0/23 9121 -78.162.174.0/24 47331 -78.162.175.0/24 9121 -78.162.176.0/20 47331 -78.162.192.0/18 9121 -78.163.0.0/23 47331 -78.163.2.0/23 9121 -78.163.4.0/23 47331 -78.163.6.0/24 47331 -78.163.7.0/24 9121 -78.163.8.0/24 47331 -78.163.9.0/24 9121 -78.163.10.0/23 47331 -78.163.12.0/24 9121 -78.163.13.0/24 47331 -78.163.14.0/23 47331 -78.163.16.0/24 47331 -78.163.17.0/24 9121 -78.163.18.0/24 47331 -78.163.19.0/24 9121 -78.163.20.0/23 9121 -78.163.22.0/24 9121 -78.163.23.0/24 47331 -78.163.24.0/21 47331 -78.163.32.0/23 47331 -78.163.34.0/24 9121 -78.163.35.0/24 47331 -78.163.36.0/23 47331 -78.163.38.0/24 47331 -78.163.39.0/24 9121 -78.163.40.0/24 47331 -78.163.41.0/24 9121 -78.163.42.0/23 47331 -78.163.44.0/23 9121 -78.163.46.0/23 47331 -78.163.48.0/21 47331 -78.163.56.0/22 47331 -78.163.60.0/24 9121 -78.163.61.0/24 47331 -78.163.62.0/24 47331 -78.163.63.0/24 9121 -78.163.64.0/18 47331 -78.163.128.0/18 9121 -78.163.192.0/21 47331 -78.163.200.0/22 47331 -78.163.204.0/23 47331 -78.163.206.0/24 9121 -78.163.207.0/24 47331 -78.163.208.0/22 47331 -78.163.212.0/22 9121 -78.163.216.0/23 9121 -78.163.218.0/23 47331 -78.163.220.0/22 47331 -78.163.224.0/24 47331 -78.163.225.0/24 9121 -78.163.226.0/23 47331 -78.163.228.0/22 47331 -78.163.232.0/21 47331 -78.163.240.0/23 9121 -78.163.242.0/23 47331 -78.163.244.0/22 9121 -78.163.248.0/21 47331 -78.164.0.0/23 9121 -78.164.2.0/23 47331 -78.164.4.0/24 47331 -78.164.5.0/24 9121 -78.164.6.0/23 47331 -78.164.8.0/21 47331 -78.164.16.0/24 9121 -78.164.17.0/24 47331 -78.164.18.0/23 47331 -78.164.20.0/22 47331 -78.164.24.0/24 47331 -78.164.25.0/24 9121 -78.164.26.0/23 47331 -78.164.28.0/22 47331 -78.164.32.0/22 47331 -78.164.36.0/24 9121 -78.164.37.0/24 47331 -78.164.38.0/23 47331 -78.164.40.0/22 47331 -78.164.44.0/23 47331 -78.164.46.0/23 9121 -78.164.48.0/22 47331 -78.164.52.0/22 9121 -78.164.56.0/22 47331 -78.164.60.0/23 47331 -78.164.62.0/24 9121 -78.164.63.0/24 47331 -78.164.64.0/22 9121 -78.164.68.0/23 47331 -78.164.70.0/24 47331 -78.164.71.0/24 9121 -78.164.72.0/22 9121 -78.164.76.0/22 47331 -78.164.80.0/24 9121 -78.164.81.0/24 47331 -78.164.82.0/23 47331 -78.164.84.0/23 47331 -78.164.86.0/24 9121 -78.164.87.0/24 47331 -78.164.88.0/24 9121 -78.164.89.0/24 47331 -78.164.90.0/24 47331 -78.164.91.0/24 9121 -78.164.92.0/22 47331 -78.164.96.0/19 47331 -78.164.128.0/18 47331 -78.164.192.0/22 47331 -78.164.196.0/23 47331 -78.164.198.0/24 47331 -78.164.199.0/24 9121 -78.164.200.0/24 9121 -78.164.201.0/24 47331 -78.164.202.0/23 47331 -78.164.204.0/24 47331 -78.164.205.0/24 9121 -78.164.206.0/24 47331 -78.164.207.0/24 9121 -78.164.208.0/22 47331 -78.164.212.0/24 47331 -78.164.213.0/24 9121 -78.164.214.0/23 47331 -78.164.216.0/22 47331 -78.164.220.0/23 47331 -78.164.222.0/24 47331 -78.164.223.0/24 9121 -78.164.224.0/22 9121 -78.164.228.0/24 9121 -78.164.229.0/24 47331 -78.164.230.0/23 47331 -78.164.232.0/23 47331 -78.164.234.0/24 9121 -78.164.235.0/24 47331 -78.164.236.0/24 47331 -78.164.237.0/24 9121 -78.164.238.0/23 47331 -78.164.240.0/24 9121 -78.164.241.0/24 47331 -78.164.242.0/24 9121 -78.164.243.0/24 47331 -78.164.244.0/23 47331 -78.164.246.0/23 9121 -78.164.248.0/23 47331 -78.164.250.0/24 9121 -78.164.251.0/24 47331 -78.164.252.0/24 9121 -78.164.253.0/24 47331 -78.164.254.0/23 47331 -78.165.0.0/20 47331 -78.165.16.0/21 47331 -78.165.24.0/22 47331 -78.165.28.0/23 9121 -78.165.30.0/23 47331 -78.165.32.0/24 9121 -78.165.33.0/24 47331 -78.165.34.0/23 47331 -78.165.36.0/23 47331 -78.165.38.0/24 47331 -78.165.39.0/24 9121 -78.165.40.0/24 9121 -78.165.41.0/24 47331 -78.165.42.0/24 9121 -78.165.43.0/24 47331 -78.165.44.0/23 47331 -78.165.46.0/24 9121 -78.165.47.0/24 47331 -78.165.48.0/24 9121 -78.165.49.0/24 47331 -78.165.50.0/23 47331 -78.165.52.0/24 47331 -78.165.53.0/24 9121 -78.165.54.0/24 9121 -78.165.55.0/24 47331 -78.165.56.0/24 47331 -78.165.57.0/24 9121 -78.165.58.0/23 47331 -78.165.60.0/24 9121 -78.165.61.0/24 47331 -78.165.62.0/24 9121 -78.165.63.0/24 47331 -78.165.64.0/20 9121 -78.165.80.0/21 9121 -78.165.88.0/24 47331 -78.165.89.0/24 9121 -78.165.90.0/23 47331 -78.165.92.0/22 9121 -78.165.96.0/19 9121 -78.165.128.0/20 47331 -78.165.144.0/21 9121 -78.165.152.0/21 47331 -78.165.160.0/19 47331 -78.165.192.0/20 9121 -78.165.208.0/24 9121 -78.165.209.0/24 47331 -78.165.210.0/23 47331 -78.165.212.0/23 9121 -78.165.214.0/24 47331 -78.165.215.0/24 9121 -78.165.216.0/24 9121 -78.165.217.0/24 47331 -78.165.218.0/23 9121 -78.165.220.0/23 47331 -78.165.222.0/23 9121 -78.165.224.0/19 9121 -78.166.0.0/23 9121 -78.166.2.0/23 47331 -78.166.4.0/23 47331 -78.166.6.0/24 9121 -78.166.7.0/24 47331 -78.166.8.0/23 47331 -78.166.10.0/24 9121 -78.166.11.0/24 47331 -78.166.12.0/23 9121 -78.166.14.0/23 47331 -78.166.16.0/24 9121 -78.166.17.0/24 47331 -78.166.18.0/24 9121 -78.166.19.0/24 47331 -78.166.20.0/23 9121 -78.166.22.0/23 47331 -78.166.24.0/21 47331 -78.166.32.0/21 9121 -78.166.40.0/21 47331 -78.166.48.0/21 47331 -78.166.56.0/21 9121 -78.166.64.0/19 47331 -78.166.96.0/22 47331 -78.166.100.0/23 47331 -78.166.102.0/24 9121 -78.166.103.0/24 47331 -78.166.104.0/22 47331 -78.166.108.0/23 9121 -78.166.110.0/23 47331 -78.166.112.0/20 47331 -78.166.128.0/20 9121 -78.166.144.0/21 9121 -78.166.152.0/21 47331 -78.166.160.0/19 47331 -78.166.192.0/20 47331 -78.166.208.0/20 9121 -78.166.224.0/19 47331 -78.167.0.0/21 47331 -78.167.8.0/21 9121 -78.167.16.0/20 9121 -78.167.32.0/20 9121 -78.167.48.0/21 9121 -78.167.56.0/21 47331 -78.167.64.0/21 9121 -78.167.72.0/21 47331 -78.167.80.0/24 47331 -78.167.81.0/24 9121 -78.167.82.0/23 9121 -78.167.84.0/22 47331 -78.167.88.0/21 47331 -78.167.96.0/20 47331 -78.167.112.0/21 47331 -78.167.120.0/23 9121 -78.167.122.0/24 9121 -78.167.123.0/24 47331 -78.167.124.0/22 47331 -78.167.128.0/22 9121 -78.167.132.0/22 47331 -78.167.136.0/21 47331 -78.167.144.0/21 47331 -78.167.152.0/23 9121 -78.167.154.0/23 47331 -78.167.156.0/22 47331 -78.167.160.0/23 9121 -78.167.162.0/23 47331 -78.167.164.0/23 9121 -78.167.166.0/23 47331 -78.167.168.0/22 47331 -78.167.172.0/22 9121 -78.167.176.0/22 47331 -78.167.180.0/22 9121 -78.167.184.0/21 47331 -78.167.192.0/22 47331 -78.167.196.0/22 9121 -78.167.200.0/21 47331 -78.167.208.0/23 47331 -78.167.210.0/23 9121 -78.167.212.0/23 9121 -78.167.214.0/23 47331 -78.167.216.0/23 9121 -78.167.218.0/23 47331 -78.167.220.0/23 47331 -78.167.222.0/23 9121 -78.167.224.0/23 47331 -78.167.226.0/23 9121 -78.167.228.0/22 47331 -78.167.232.0/22 47331 -78.167.236.0/23 47331 -78.167.238.0/23 9121 -78.167.240.0/23 9121 -78.167.242.0/23 47331 -78.167.244.0/22 47331 -78.167.248.0/23 47331 -78.167.250.0/24 9121 -78.167.251.0/24 47331 -78.167.252.0/23 47331 -78.167.254.0/23 9121 -78.168.0.0/19 47331 -78.168.32.0/23 9121 -78.168.34.0/23 47331 -78.168.36.0/22 47331 -78.168.40.0/21 47331 -78.168.48.0/21 47331 -78.168.56.0/22 9121 -78.168.60.0/22 47331 -78.168.64.0/22 47331 -78.168.68.0/22 9121 -78.168.72.0/23 47331 -78.168.74.0/24 47331 -78.168.75.0/24 9121 -78.168.76.0/23 47331 -78.168.78.0/24 47331 -78.168.79.0/24 9121 -78.168.80.0/21 47331 -78.168.88.0/22 47331 -78.168.92.0/22 9121 -78.168.96.0/19 47331 -78.168.128.0/24 47331 -78.168.129.0/24 9121 -78.168.130.0/24 9121 -78.168.131.0/24 47331 -78.168.132.0/22 47331 -78.168.136.0/22 47331 -78.168.140.0/23 47331 -78.168.142.0/24 9121 -78.168.143.0/24 47331 -78.168.144.0/20 47331 -78.168.160.0/24 47331 -78.168.161.0/24 9121 -78.168.162.0/23 9121 -78.168.164.0/22 47331 -78.168.168.0/21 47331 -78.168.176.0/20 47331 -78.168.192.0/20 47331 -78.168.208.0/21 47331 -78.168.216.0/22 47331 -78.168.220.0/23 47331 -78.168.222.0/23 9121 -78.168.224.0/19 47331 -78.169.0.0/22 47331 -78.169.4.0/23 9121 -78.169.6.0/23 47331 -78.169.8.0/21 47331 -78.169.16.0/20 47331 -78.169.32.0/22 47331 -78.169.36.0/24 47331 -78.169.37.0/24 9121 -78.169.38.0/24 47331 -78.169.39.0/24 9121 -78.169.40.0/21 47331 -78.169.48.0/21 47331 -78.169.56.0/23 9121 -78.169.58.0/23 47331 -78.169.60.0/22 9121 -78.169.64.0/21 9121 -78.169.72.0/23 9121 -78.169.74.0/23 47331 -78.169.76.0/22 47331 -78.169.80.0/22 47331 -78.169.84.0/22 9121 -78.169.88.0/24 9121 -78.169.89.0/24 47331 -78.169.90.0/24 9121 -78.169.91.0/24 47331 -78.169.92.0/23 47331 -78.169.94.0/23 9121 -78.169.96.0/23 47331 -78.169.98.0/23 9121 -78.169.100.0/24 9121 -78.169.101.0/24 47331 -78.169.102.0/23 47331 -78.169.104.0/22 9121 -78.169.108.0/24 9121 -78.169.109.0/24 47331 -78.169.110.0/23 9121 -78.169.112.0/23 47331 -78.169.114.0/24 47331 -78.169.115.0/24 9121 -78.169.116.0/24 9121 -78.169.117.0/24 47331 -78.169.118.0/23 47331 -78.169.120.0/24 47331 -78.169.121.0/24 9121 -78.169.122.0/23 47331 -78.169.124.0/24 47331 -78.169.125.0/24 9121 -78.169.126.0/24 9121 -78.169.127.0/24 47331 -78.169.128.0/21 47331 -78.169.136.0/24 9121 -78.169.137.0/24 47331 -78.169.138.0/23 9121 -78.169.140.0/22 47331 -78.169.144.0/20 47331 -78.169.160.0/22 9121 -78.169.164.0/22 47331 -78.169.168.0/23 47331 -78.169.170.0/24 9121 -78.169.171.0/24 47331 -78.169.172.0/22 9121 -78.169.176.0/24 9121 -78.169.177.0/24 47331 -78.169.178.0/23 9121 -78.169.180.0/22 9121 -78.169.184.0/22 47331 -78.169.188.0/22 9121 -78.169.192.0/24 47331 -78.169.193.0/24 9121 -78.169.194.0/23 9121 -78.169.196.0/22 47331 -78.169.200.0/22 9121 -78.169.204.0/22 47331 -78.169.208.0/20 47331 -78.169.224.0/21 47331 -78.169.232.0/22 47331 -78.169.236.0/22 9121 -78.169.240.0/22 9121 -78.169.244.0/22 47331 -78.169.248.0/24 9121 -78.169.249.0/24 47331 -78.169.250.0/24 47331 -78.169.251.0/24 9121 -78.169.252.0/22 47331 -78.170.0.0/17 47331 -78.170.128.0/22 47331 -78.170.132.0/23 47331 -78.170.134.0/24 47331 -78.170.135.0/24 9121 -78.170.136.0/21 47331 -78.170.144.0/20 47331 -78.170.160.0/20 47331 -78.170.176.0/21 9121 -78.170.184.0/23 47331 -78.170.186.0/24 47331 -78.170.187.0/24 9121 -78.170.188.0/23 9121 -78.170.190.0/24 9121 -78.170.191.0/24 47331 -78.170.192.0/19 47331 -78.170.224.0/20 47331 -78.170.240.0/21 47331 -78.170.248.0/24 47331 -78.170.249.0/24 9121 -78.170.250.0/23 47331 -78.170.252.0/22 47331 -78.171.0.0/22 9121 -78.171.4.0/23 47331 -78.171.6.0/23 9121 -78.171.8.0/21 9121 -78.171.16.0/20 9121 -78.171.32.0/23 47331 -78.171.34.0/23 9121 -78.171.36.0/24 9121 -78.171.37.0/24 47331 -78.171.38.0/23 9121 -78.171.40.0/22 9121 -78.171.44.0/24 47331 -78.171.45.0/24 9121 -78.171.46.0/23 9121 -78.171.48.0/23 47331 -78.171.50.0/23 9121 -78.171.52.0/22 47331 -78.171.56.0/21 9121 -78.171.64.0/22 9121 -78.171.68.0/22 47331 -78.171.72.0/21 9121 -78.171.80.0/20 9121 -78.171.96.0/21 47331 -78.171.104.0/23 47331 -78.171.106.0/24 9121 -78.171.107.0/24 47331 -78.171.108.0/22 47331 -78.171.112.0/22 47331 -78.171.116.0/23 9121 -78.171.118.0/23 47331 -78.171.120.0/24 9121 -78.171.121.0/24 47331 -78.171.122.0/23 9121 -78.171.124.0/23 47331 -78.171.126.0/24 47331 -78.171.127.0/24 9121 -78.171.128.0/18 47331 -78.171.192.0/19 47331 -78.171.224.0/20 47331 -78.171.240.0/21 9121 -78.171.248.0/22 9121 -78.171.252.0/23 47331 -78.171.254.0/23 9121 -78.172.0.0/21 47331 -78.172.8.0/23 47331 -78.172.10.0/24 9121 -78.172.11.0/24 47331 -78.172.12.0/23 47331 -78.172.14.0/23 9121 -78.172.16.0/20 47331 -78.172.32.0/24 47331 -78.172.33.0/24 9121 -78.172.34.0/23 47331 -78.172.36.0/22 47331 -78.172.40.0/21 47331 -78.172.48.0/22 47331 -78.172.52.0/23 47331 -78.172.54.0/24 47331 -78.172.55.0/24 9121 -78.172.56.0/23 47331 -78.172.58.0/24 47331 -78.172.59.0/24 9121 -78.172.60.0/22 47331 -78.172.64.0/24 9121 -78.172.65.0/24 47331 -78.172.66.0/23 47331 -78.172.68.0/22 47331 -78.172.72.0/23 9121 -78.172.74.0/23 47331 -78.172.76.0/23 47331 -78.172.78.0/24 47331 -78.172.79.0/24 9121 -78.172.80.0/24 47331 -78.172.81.0/24 9121 -78.172.82.0/23 9121 -78.172.84.0/22 47331 -78.172.88.0/23 47331 -78.172.90.0/24 9121 -78.172.91.0/24 47331 -78.172.92.0/23 9121 -78.172.94.0/23 47331 -78.172.96.0/24 47331 -78.172.97.0/24 9121 -78.172.98.0/23 47331 -78.172.100.0/22 9121 -78.172.104.0/22 47331 -78.172.108.0/23 9121 -78.172.110.0/24 47331 -78.172.111.0/24 9121 -78.172.112.0/23 47331 -78.172.114.0/24 47331 -78.172.115.0/24 9121 -78.172.116.0/24 9121 -78.172.117.0/24 47331 -78.172.118.0/23 9121 -78.172.120.0/22 47331 -78.172.124.0/24 9121 -78.172.125.0/24 47331 -78.172.126.0/23 9121 -78.172.128.0/22 47331 -78.172.132.0/24 47331 -78.172.133.0/24 9121 -78.172.134.0/24 9121 -78.172.135.0/24 47331 -78.172.136.0/24 9121 -78.172.137.0/24 47331 -78.172.138.0/24 9121 -78.172.139.0/24 47331 -78.172.140.0/23 9121 -78.172.142.0/23 47331 -78.172.144.0/24 9121 -78.172.145.0/24 47331 -78.172.146.0/23 47331 -78.172.148.0/24 9121 -78.172.149.0/24 47331 -78.172.150.0/23 47331 -78.172.152.0/24 47331 -78.172.153.0/24 9121 -78.172.154.0/23 47331 -78.172.156.0/22 47331 -78.172.160.0/22 9121 -78.172.164.0/24 47331 -78.172.165.0/24 9121 -78.172.166.0/23 9121 -78.172.168.0/22 47331 -78.172.172.0/23 47331 -78.172.174.0/24 47331 -78.172.175.0/24 9121 -78.172.176.0/22 9121 -78.172.180.0/22 47331 -78.172.184.0/21 47331 -78.172.192.0/18 9121 -78.173.0.0/18 9121 -78.173.64.0/19 9121 -78.173.96.0/20 47331 -78.173.112.0/22 9121 -78.173.116.0/22 47331 -78.173.120.0/23 47331 -78.173.122.0/23 9121 -78.173.124.0/22 9121 -78.173.128.0/21 47331 -78.173.136.0/21 9121 -78.173.144.0/20 9121 -78.173.160.0/21 47331 -78.173.168.0/22 47331 -78.173.172.0/24 9121 -78.173.173.0/24 47331 -78.173.174.0/23 47331 -78.173.176.0/22 9121 -78.173.180.0/22 47331 -78.173.184.0/21 9121 -78.173.192.0/18 9121 -78.174.0.0/21 47331 -78.174.8.0/21 9121 -78.174.16.0/20 9121 -78.174.32.0/20 47331 -78.174.48.0/21 9121 -78.174.56.0/23 47331 -78.174.58.0/24 9121 -78.174.59.0/24 47331 -78.174.60.0/24 9121 -78.174.61.0/24 47331 -78.174.62.0/24 9121 -78.174.63.0/24 47331 -78.174.64.0/18 9121 -78.174.128.0/19 47331 -78.174.160.0/22 47331 -78.174.164.0/22 9121 -78.174.168.0/22 9121 -78.174.172.0/23 47331 -78.174.174.0/23 9121 -78.174.176.0/20 47331 -78.174.192.0/19 47331 -78.174.224.0/24 9121 -78.174.225.0/24 47331 -78.174.226.0/24 47331 -78.174.227.0/24 9121 -78.174.228.0/22 47331 -78.174.232.0/23 47331 -78.174.234.0/24 47331 -78.174.235.0/24 9121 -78.174.236.0/22 9121 -78.174.240.0/23 47331 -78.174.242.0/23 9121 -78.174.244.0/24 9121 -78.174.245.0/24 47331 -78.174.246.0/24 9121 -78.174.247.0/24 47331 -78.174.248.0/21 47331 -78.175.0.0/22 47331 -78.175.4.0/23 47331 -78.175.6.0/23 9121 -78.175.8.0/21 47331 -78.175.16.0/22 47331 -78.175.20.0/23 47331 -78.175.22.0/24 9121 -78.175.23.0/24 47331 -78.175.24.0/21 47331 -78.175.32.0/22 47331 -78.175.36.0/24 9121 -78.175.37.0/24 47331 -78.175.38.0/23 47331 -78.175.40.0/21 9121 -78.175.48.0/20 47331 -78.175.64.0/21 47331 -78.175.72.0/23 9121 -78.175.74.0/23 47331 -78.175.76.0/22 9121 -78.175.80.0/22 47331 -78.175.84.0/24 47331 -78.175.85.0/24 9121 -78.175.86.0/24 9121 -78.175.87.0/24 47331 -78.175.88.0/23 47331 -78.175.90.0/24 9121 -78.175.91.0/24 47331 -78.175.92.0/22 47331 -78.175.96.0/19 9121 -78.175.128.0/23 47331 -78.175.130.0/24 47331 -78.175.131.0/24 9121 -78.175.132.0/23 9121 -78.175.134.0/24 47331 -78.175.135.0/24 9121 -78.175.136.0/23 47331 -78.175.138.0/24 47331 -78.175.139.0/24 9121 -78.175.140.0/24 47331 -78.175.141.0/24 9121 -78.175.142.0/24 47331 -78.175.143.0/24 9121 -78.175.144.0/21 47331 -78.175.152.0/24 9121 -78.175.153.0/24 47331 -78.175.154.0/24 47331 -78.175.155.0/24 9121 -78.175.156.0/24 9121 -78.175.157.0/24 47331 -78.175.158.0/24 47331 -78.175.159.0/24 9121 -78.175.160.0/24 9121 -78.175.161.0/24 47331 -78.175.162.0/24 9121 -78.175.163.0/24 47331 -78.175.164.0/22 47331 -78.175.168.0/22 47331 -78.175.172.0/23 9121 -78.175.174.0/23 47331 -78.175.176.0/23 47331 -78.175.178.0/24 9121 -78.175.179.0/24 47331 -78.175.180.0/22 47331 -78.175.184.0/22 47331 -78.175.188.0/24 9121 -78.175.189.0/24 47331 -78.175.190.0/23 47331 -78.175.192.0/22 47331 -78.175.196.0/24 47331 -78.175.197.0/24 9121 -78.175.198.0/23 47331 -78.175.200.0/24 47331 -78.175.201.0/24 9121 -78.175.202.0/23 47331 -78.175.204.0/22 47331 -78.175.208.0/22 47331 -78.175.212.0/24 9121 -78.175.213.0/24 47331 -78.175.214.0/23 47331 -78.175.216.0/22 47331 -78.175.220.0/23 47331 -78.175.222.0/24 47331 -78.175.223.0/24 9121 -78.175.224.0/20 9121 -78.175.240.0/20 47331 -78.176.0.0/19 9121 -78.176.32.0/24 47331 -78.176.33.0/24 9121 -78.176.34.0/23 47331 -78.176.36.0/23 47331 -78.176.38.0/24 9121 -78.176.39.0/24 47331 -78.176.40.0/21 47331 -78.176.48.0/22 9121 -78.176.52.0/24 9121 -78.176.53.0/24 47331 -78.176.54.0/23 47331 -78.176.56.0/22 9121 -78.176.60.0/22 47331 -78.176.64.0/22 47331 -78.176.68.0/24 9121 -78.176.69.0/24 47331 -78.176.70.0/24 47331 -78.176.71.0/24 9121 -78.176.72.0/24 47331 -78.176.73.0/24 9121 -78.176.74.0/23 47331 -78.176.76.0/24 47331 -78.176.77.0/24 9121 -78.176.78.0/23 47331 -78.176.80.0/23 47331 -78.176.82.0/24 47331 -78.176.83.0/24 9121 -78.176.84.0/24 9121 -78.176.85.0/24 47331 -78.176.86.0/23 47331 -78.176.88.0/22 9121 -78.176.92.0/22 47331 -78.176.96.0/20 9121 -78.176.112.0/21 47331 -78.176.120.0/24 9121 -78.176.121.0/24 47331 -78.176.122.0/23 47331 -78.176.124.0/23 47331 -78.176.126.0/24 47331 -78.176.127.0/24 9121 -78.176.128.0/20 47331 -78.176.144.0/21 9121 -78.176.152.0/21 47331 -78.176.160.0/23 47331 -78.176.162.0/24 47331 -78.176.163.0/24 9121 -78.176.164.0/22 47331 -78.176.168.0/23 9121 -78.176.170.0/24 9121 -78.176.171.0/24 47331 -78.176.172.0/22 9121 -78.176.176.0/21 47331 -78.176.184.0/24 47331 -78.176.185.0/24 9121 -78.176.186.0/23 47331 -78.176.188.0/23 9121 -78.176.190.0/23 47331 -78.176.192.0/21 9121 -78.176.200.0/22 47331 -78.176.204.0/22 9121 -78.176.208.0/22 9121 -78.176.212.0/22 47331 -78.176.216.0/24 9121 -78.176.217.0/24 47331 -78.176.218.0/23 47331 -78.176.220.0/22 47331 -78.176.224.0/21 47331 -78.176.232.0/21 9121 -78.176.240.0/22 9121 -78.176.244.0/22 47331 -78.176.248.0/23 47331 -78.176.250.0/24 47331 -78.176.251.0/24 9121 -78.176.252.0/24 47331 -78.176.253.0/24 9121 -78.176.254.0/23 47331 -78.177.0.0/20 47331 -78.177.16.0/21 47331 -78.177.24.0/23 47331 -78.177.26.0/24 9121 -78.177.27.0/24 47331 -78.177.28.0/22 47331 -78.177.32.0/22 47331 -78.177.36.0/23 47331 -78.177.38.0/24 9121 -78.177.39.0/24 47331 -78.177.40.0/21 47331 -78.177.48.0/22 47331 -78.177.52.0/23 9121 -78.177.54.0/23 47331 -78.177.56.0/22 47331 -78.177.60.0/23 47331 -78.177.62.0/24 9121 -78.177.63.0/24 47331 -78.177.64.0/22 9121 -78.177.68.0/22 47331 -78.177.72.0/23 47331 -78.177.74.0/24 47331 -78.177.75.0/24 9121 -78.177.76.0/23 47331 -78.177.78.0/24 9121 -78.177.79.0/24 47331 -78.177.80.0/23 47331 -78.177.82.0/24 9121 -78.177.83.0/24 47331 -78.177.84.0/24 9121 -78.177.85.0/24 47331 -78.177.86.0/23 47331 -78.177.88.0/21 47331 -78.177.96.0/21 47331 -78.177.104.0/24 47331 -78.177.105.0/24 9121 -78.177.106.0/23 47331 -78.177.108.0/22 47331 -78.177.112.0/21 47331 -78.177.120.0/23 47331 -78.177.122.0/24 47331 -78.177.123.0/24 9121 -78.177.124.0/22 9121 -78.177.128.0/20 47331 -78.177.144.0/21 47331 -78.177.152.0/22 47331 -78.177.156.0/23 47331 -78.177.158.0/24 9121 -78.177.159.0/24 47331 -78.177.160.0/19 9121 -78.177.192.0/24 47331 -78.177.193.0/24 9121 -78.177.194.0/23 9121 -78.177.196.0/22 9121 -78.177.200.0/21 9121 -78.177.208.0/20 9121 -78.177.224.0/19 9121 -78.178.0.0/20 9121 -78.178.16.0/24 47331 -78.178.17.0/24 9121 -78.178.18.0/23 47331 -78.178.20.0/24 9121 -78.178.21.0/24 47331 -78.178.22.0/23 47331 -78.178.24.0/24 47331 -78.178.25.0/24 9121 -78.178.26.0/24 9121 -78.178.27.0/24 47331 -78.178.28.0/24 9121 -78.178.29.0/24 47331 -78.178.30.0/24 47331 -78.178.31.0/24 9121 -78.178.32.0/19 47331 -78.178.64.0/22 47331 -78.178.68.0/24 9121 -78.178.69.0/24 47331 -78.178.70.0/23 9121 -78.178.72.0/22 47331 -78.178.76.0/23 47331 -78.178.78.0/24 47331 -78.178.79.0/24 9121 -78.178.80.0/24 47331 -78.178.81.0/24 9121 -78.178.82.0/24 9121 -78.178.83.0/24 47331 -78.178.84.0/24 9121 -78.178.85.0/24 47331 -78.178.86.0/24 9121 -78.178.87.0/24 47331 -78.178.88.0/21 47331 -78.178.96.0/24 9121 -78.178.97.0/24 47331 -78.178.98.0/23 47331 -78.178.100.0/23 47331 -78.178.102.0/24 9121 -78.178.103.0/24 47331 -78.178.104.0/23 47331 -78.178.106.0/23 9121 -78.178.108.0/22 47331 -78.178.112.0/20 47331 -78.178.128.0/21 9121 -78.178.136.0/22 47331 -78.178.140.0/23 47331 -78.178.142.0/24 47331 -78.178.143.0/24 9121 -78.178.144.0/23 9121 -78.178.146.0/23 47331 -78.178.148.0/23 47331 -78.178.150.0/24 9121 -78.178.151.0/24 47331 -78.178.152.0/24 47331 -78.178.153.0/24 9121 -78.178.154.0/23 47331 -78.178.156.0/24 9121 -78.178.157.0/24 47331 -78.178.158.0/23 47331 -78.178.160.0/20 47331 -78.178.176.0/21 47331 -78.178.184.0/23 9121 -78.178.186.0/24 47331 -78.178.187.0/24 9121 -78.178.188.0/22 47331 -78.178.192.0/18 9121 -78.179.0.0/20 9121 -78.179.16.0/23 47331 -78.179.18.0/24 47331 -78.179.19.0/24 9121 -78.179.20.0/24 9121 -78.179.21.0/24 47331 -78.179.22.0/23 47331 -78.179.24.0/22 47331 -78.179.28.0/23 47331 -78.179.30.0/24 9121 -78.179.31.0/24 47331 -78.179.32.0/22 9121 -78.179.36.0/23 47331 -78.179.38.0/24 9121 -78.179.39.0/24 47331 -78.179.40.0/24 9121 -78.179.41.0/24 47331 -78.179.42.0/23 47331 -78.179.44.0/23 47331 -78.179.46.0/24 47331 -78.179.47.0/24 9121 -78.179.48.0/22 47331 -78.179.52.0/24 9121 -78.179.53.0/24 47331 -78.179.54.0/24 47331 -78.179.55.0/24 9121 -78.179.56.0/21 47331 -78.179.64.0/19 47331 -78.179.96.0/20 47331 -78.179.112.0/21 47331 -78.179.120.0/22 47331 -78.179.124.0/24 9121 -78.179.125.0/24 47331 -78.179.126.0/24 47331 -78.179.127.0/24 9121 -78.179.128.0/22 47331 -78.179.132.0/24 47331 -78.179.133.0/24 9121 -78.179.134.0/24 47331 -78.179.135.0/24 9121 -78.179.136.0/24 9121 -78.179.137.0/24 47331 -78.179.138.0/23 47331 -78.179.140.0/24 9121 -78.179.141.0/24 47331 -78.179.142.0/23 47331 -78.179.144.0/24 9121 -78.179.145.0/24 47331 -78.179.146.0/23 47331 -78.179.148.0/23 9121 -78.179.150.0/23 47331 -78.179.152.0/22 47331 -78.179.156.0/24 9121 -78.179.157.0/24 47331 -78.179.158.0/23 47331 -78.179.160.0/24 9121 -78.179.161.0/24 47331 -78.179.162.0/23 47331 -78.179.164.0/24 47331 -78.179.165.0/24 9121 -78.179.166.0/23 47331 -78.179.168.0/24 9121 -78.179.169.0/24 47331 -78.179.170.0/24 9121 -78.179.171.0/24 47331 -78.179.172.0/23 47331 -78.179.174.0/23 9121 -78.179.176.0/23 47331 -78.179.178.0/23 9121 -78.179.180.0/22 47331 -78.179.184.0/21 47331 -78.179.192.0/24 47331 -78.179.193.0/24 9121 -78.179.194.0/23 9121 -78.179.196.0/23 9121 -78.179.198.0/24 9121 -78.179.199.0/24 47331 -78.179.200.0/23 47331 -78.179.202.0/24 47331 -78.179.203.0/24 9121 -78.179.204.0/22 47331 -78.179.208.0/24 9121 -78.179.209.0/24 47331 -78.179.210.0/24 47331 -78.179.211.0/24 9121 -78.179.212.0/22 47331 -78.179.216.0/22 47331 -78.179.220.0/23 47331 -78.179.222.0/24 47331 -78.179.223.0/24 9121 -78.179.224.0/20 47331 -78.179.240.0/22 47331 -78.179.244.0/23 9121 -78.179.246.0/23 47331 -78.179.248.0/22 47331 -78.179.252.0/23 9121 -78.179.254.0/24 47331 -78.179.255.0/24 9121 -78.180.0.0/20 9121 -78.180.16.0/20 47331 -78.180.32.0/20 47331 -78.180.48.0/20 9121 -78.180.64.0/18 47331 -78.180.128.0/20 47331 -78.180.144.0/22 9121 -78.180.148.0/23 47331 -78.180.150.0/23 9121 -78.180.152.0/21 47331 -78.180.160.0/20 47331 -78.180.176.0/22 47331 -78.180.180.0/22 9121 -78.180.184.0/22 47331 -78.180.188.0/23 47331 -78.180.190.0/24 9121 -78.180.191.0/24 47331 -78.180.192.0/19 47331 -78.180.224.0/23 9121 -78.180.226.0/24 9121 -78.180.227.0/24 47331 -78.180.228.0/24 9121 -78.180.229.0/24 47331 -78.180.230.0/24 47331 -78.180.231.0/24 9121 -78.180.232.0/21 47331 -78.180.240.0/20 47331 -78.181.0.0/18 47331 -78.181.64.0/20 47331 -78.181.80.0/21 47331 -78.181.88.0/21 9121 -78.181.96.0/22 47331 -78.181.100.0/23 9121 -78.181.102.0/23 47331 -78.181.104.0/21 9121 -78.181.112.0/20 47331 -78.181.128.0/20 9121 -78.181.144.0/21 9121 -78.181.152.0/23 47331 -78.181.154.0/23 9121 -78.181.156.0/22 47331 -78.181.160.0/21 47331 -78.181.168.0/24 47331 -78.181.169.0/24 9121 -78.181.170.0/24 9121 -78.181.171.0/24 47331 -78.181.172.0/24 9121 -78.181.173.0/24 47331 -78.181.174.0/24 9121 -78.181.175.0/24 47331 -78.181.176.0/23 47331 -78.181.178.0/24 47331 -78.181.179.0/24 9121 -78.181.180.0/24 9121 -78.181.181.0/24 47331 -78.181.182.0/23 47331 -78.181.184.0/24 9121 -78.181.185.0/24 47331 -78.181.186.0/24 9121 -78.181.187.0/24 47331 -78.181.188.0/23 47331 -78.181.190.0/24 9121 -78.181.191.0/24 47331 -78.181.192.0/24 47331 -78.181.193.0/24 9121 -78.181.194.0/23 9121 -78.181.196.0/23 47331 -78.181.198.0/24 47331 -78.181.199.0/24 9121 -78.181.200.0/21 47331 -78.181.208.0/20 9121 -78.181.224.0/20 47331 -78.181.240.0/21 9121 -78.181.248.0/24 47331 -78.181.249.0/24 9121 -78.181.250.0/23 9121 -78.181.252.0/23 47331 -78.181.254.0/24 9121 -78.181.255.0/24 47331 -78.182.0.0/19 47331 -78.182.32.0/21 47331 -78.182.40.0/22 47331 -78.182.44.0/24 9121 -78.182.45.0/24 47331 -78.182.46.0/23 47331 -78.182.48.0/21 9121 -78.182.56.0/21 47331 -78.182.64.0/19 9121 -78.182.96.0/20 9121 -78.182.112.0/21 47331 -78.182.120.0/22 9121 -78.182.124.0/23 9121 -78.182.126.0/23 47331 -78.182.128.0/19 9121 -78.182.160.0/21 9121 -78.182.168.0/21 47331 -78.182.176.0/20 9121 -78.182.192.0/20 47331 -78.182.208.0/21 47331 -78.182.216.0/22 47331 -78.182.220.0/22 9121 -78.182.224.0/20 47331 -78.182.240.0/21 47331 -78.182.248.0/22 9121 -78.182.252.0/23 47331 -78.182.254.0/23 9121 -78.183.0.0/17 47331 -78.183.128.0/20 47331 -78.183.144.0/21 47331 -78.183.152.0/24 47331 -78.183.153.0/24 9121 -78.183.154.0/24 9121 -78.183.155.0/24 47331 -78.183.156.0/22 47331 -78.183.160.0/20 47331 -78.183.176.0/22 9121 -78.183.180.0/22 47331 -78.183.184.0/24 9121 -78.183.185.0/24 47331 -78.183.186.0/23 47331 -78.183.188.0/22 47331 -78.183.192.0/22 47331 -78.183.196.0/23 47331 -78.183.198.0/24 9121 -78.183.199.0/24 47331 -78.183.200.0/22 47331 -78.183.204.0/22 9121 -78.183.208.0/21 47331 -78.183.216.0/22 47331 -78.183.220.0/23 47331 -78.183.222.0/24 9121 -78.183.223.0/24 47331 -78.183.224.0/21 47331 -78.183.232.0/22 47331 -78.183.236.0/22 9121 -78.183.240.0/20 9121 -78.184.0.0/19 47331 -78.184.32.0/21 9121 -78.184.40.0/24 47331 -78.184.41.0/24 9121 -78.184.42.0/23 9121 -78.184.44.0/24 47331 -78.184.45.0/24 9121 -78.184.46.0/24 9121 -78.184.47.0/24 47331 -78.184.48.0/20 47331 -78.184.64.0/18 47331 -78.184.128.0/17 47331 -78.185.0.0/19 9121 -78.185.32.0/20 9121 -78.185.48.0/21 9121 -78.185.56.0/21 47331 -78.185.64.0/19 47331 -78.185.96.0/21 47331 -78.185.104.0/24 47331 -78.185.105.0/24 9121 -78.185.106.0/24 47331 -78.185.107.0/24 9121 -78.185.108.0/22 47331 -78.185.112.0/22 47331 -78.185.116.0/24 9121 -78.185.117.0/24 47331 -78.185.118.0/24 9121 -78.185.119.0/24 47331 -78.185.120.0/24 47331 -78.185.121.0/24 9121 -78.185.122.0/23 47331 -78.185.124.0/22 47331 -78.185.128.0/21 47331 -78.185.136.0/21 9121 -78.185.144.0/20 9121 -78.185.160.0/19 9121 -78.185.192.0/21 47331 -78.185.200.0/21 9121 -78.185.208.0/20 9121 -78.185.224.0/21 47331 -78.185.232.0/21 9121 -78.185.240.0/20 9121 -78.186.0.0/23 9121 -78.186.2.0/23 47331 -78.186.4.0/22 47331 -78.186.8.0/24 47331 -78.186.9.0/24 9121 -78.186.10.0/24 47331 -78.186.11.0/24 9121 -78.186.12.0/22 47331 -78.186.16.0/21 47331 -78.186.24.0/22 47331 -78.186.28.0/24 47331 -78.186.29.0/24 9121 -78.186.30.0/23 47331 -78.186.32.0/23 47331 -78.186.34.0/24 47331 -78.186.35.0/24 9121 -78.186.36.0/22 47331 -78.186.40.0/22 47331 -78.186.44.0/23 47331 -78.186.46.0/24 9121 -78.186.47.0/24 47331 -78.186.48.0/20 9121 -78.186.64.0/23 9121 -78.186.66.0/24 9121 -78.186.67.0/24 47331 -78.186.68.0/24 47331 -78.186.69.0/24 9121 -78.186.70.0/23 47331 -78.186.72.0/21 9121 -78.186.80.0/20 9121 -78.186.96.0/22 9121 -78.186.100.0/24 9121 -78.186.101.0/24 47331 -78.186.102.0/24 47331 -78.186.103.0/24 9121 -78.186.104.0/21 9121 -78.186.112.0/24 9121 -78.186.113.0/24 47331 -78.186.114.0/23 47331 -78.186.116.0/22 47331 -78.186.120.0/21 47331 -78.186.128.0/20 9121 -78.186.144.0/21 9121 -78.186.152.0/24 9121 -78.186.153.0/24 47331 -78.186.154.0/23 9121 -78.186.156.0/22 47331 -78.186.160.0/22 9121 -78.186.164.0/24 47331 -78.186.165.0/24 9121 -78.186.166.0/23 47331 -78.186.168.0/23 9121 -78.186.170.0/24 9121 -78.186.171.0/24 47331 -78.186.172.0/22 9121 -78.186.176.0/23 47331 -78.186.178.0/23 9121 -78.186.180.0/22 9121 -78.186.184.0/23 9121 -78.186.186.0/24 47331 -78.186.187.0/24 9121 -78.186.188.0/24 47331 -78.186.189.0/24 9121 -78.186.190.0/23 47331 -78.186.192.0/21 9121 -78.186.200.0/23 9121 -78.186.202.0/23 47331 -78.186.204.0/22 9121 -78.186.208.0/23 9121 -78.186.210.0/24 9121 -78.186.211.0/24 47331 -78.186.212.0/24 9121 -78.186.213.0/24 47331 -78.186.214.0/24 47331 -78.186.215.0/24 9121 -78.186.216.0/23 47331 -78.186.218.0/24 47331 -78.186.219.0/24 9121 -78.186.220.0/22 47331 -78.186.224.0/24 47331 -78.186.225.0/24 9121 -78.186.226.0/23 9121 -78.186.228.0/22 9121 -78.186.232.0/21 9121 -78.186.240.0/21 9121 -78.186.248.0/22 47331 -78.186.252.0/22 9121 -78.187.0.0/21 47331 -78.187.8.0/22 47331 -78.187.12.0/23 47331 -78.187.14.0/23 9121 -78.187.16.0/20 47331 -78.187.32.0/22 47331 -78.187.36.0/23 47331 -78.187.38.0/24 47331 -78.187.39.0/24 9121 -78.187.40.0/22 47331 -78.187.44.0/23 9121 -78.187.46.0/24 9121 -78.187.47.0/24 47331 -78.187.48.0/24 47331 -78.187.49.0/24 9121 -78.187.50.0/23 47331 -78.187.52.0/22 9121 -78.187.56.0/22 9121 -78.187.60.0/23 9121 -78.187.62.0/24 9121 -78.187.63.0/24 47331 -78.187.64.0/24 9121 -78.187.65.0/24 47331 -78.187.66.0/24 9121 -78.187.67.0/24 47331 -78.187.68.0/24 47331 -78.187.69.0/24 9121 -78.187.70.0/23 47331 -78.187.72.0/21 47331 -78.187.80.0/22 47331 -78.187.84.0/23 9121 -78.187.86.0/23 47331 -78.187.88.0/22 47331 -78.187.92.0/24 9121 -78.187.93.0/24 47331 -78.187.94.0/23 47331 -78.187.96.0/23 47331 -78.187.98.0/23 9121 -78.187.100.0/24 9121 -78.187.101.0/24 47331 -78.187.102.0/23 47331 -78.187.104.0/24 47331 -78.187.105.0/24 9121 -78.187.106.0/23 9121 -78.187.108.0/22 9121 -78.187.112.0/21 9121 -78.187.120.0/24 9121 -78.187.121.0/24 47331 -78.187.122.0/23 47331 -78.187.124.0/23 47331 -78.187.126.0/24 9121 -78.187.127.0/24 47331 -78.187.128.0/22 9121 -78.187.132.0/23 47331 -78.187.134.0/24 9121 -78.187.135.0/24 47331 -78.187.136.0/24 9121 -78.187.137.0/24 47331 -78.187.138.0/24 47331 -78.187.139.0/24 9121 -78.187.140.0/22 47331 -78.187.144.0/22 47331 -78.187.148.0/22 9121 -78.187.152.0/22 9121 -78.187.156.0/23 47331 -78.187.158.0/24 9121 -78.187.159.0/24 47331 -78.187.160.0/24 47331 -78.187.161.0/24 9121 -78.187.162.0/23 9121 -78.187.164.0/23 9121 -78.187.166.0/23 47331 -78.187.168.0/24 9121 -78.187.169.0/24 47331 -78.187.170.0/23 47331 -78.187.172.0/23 9121 -78.187.174.0/23 47331 -78.187.176.0/24 47331 -78.187.177.0/24 9121 -78.187.178.0/23 47331 -78.187.180.0/22 9121 -78.187.184.0/23 9121 -78.187.186.0/23 47331 -78.187.188.0/23 9121 -78.187.190.0/24 9121 -78.187.191.0/24 47331 -78.187.192.0/23 9121 -78.187.194.0/23 47331 -78.187.196.0/23 9121 -78.187.198.0/23 47331 -78.187.200.0/22 47331 -78.187.204.0/23 47331 -78.187.206.0/24 9121 -78.187.207.0/24 47331 -78.187.208.0/21 47331 -78.187.216.0/22 9121 -78.187.220.0/22 47331 -78.187.224.0/22 47331 -78.187.228.0/24 47331 -78.187.229.0/24 9121 -78.187.230.0/23 47331 -78.187.232.0/24 9121 -78.187.233.0/24 47331 -78.187.234.0/23 47331 -78.187.236.0/22 47331 -78.187.240.0/23 47331 -78.187.242.0/24 47331 -78.187.243.0/24 9121 -78.187.244.0/22 9121 -78.187.248.0/22 9121 -78.187.252.0/23 9121 -78.187.254.0/24 9121 -78.187.255.0/24 47331 -78.188.0.0/24 47331 -78.188.1.0/24 9121 -78.188.2.0/23 9121 -78.188.4.0/22 9121 -78.188.8.0/21 9121 -78.188.16.0/21 9121 -78.188.24.0/24 9121 -78.188.25.0/24 47331 -78.188.26.0/23 47331 -78.188.28.0/22 9121 -78.188.32.0/20 9121 -78.188.48.0/21 9121 -78.188.56.0/23 47331 -78.188.58.0/23 9121 -78.188.60.0/23 9121 -78.188.62.0/23 47331 -78.188.64.0/21 9121 -78.188.72.0/22 47331 -78.188.76.0/23 9121 -78.188.78.0/24 9121 -78.188.79.0/24 47331 -78.188.80.0/20 9121 -78.188.96.0/20 9121 -78.188.112.0/22 9121 -78.188.116.0/23 47331 -78.188.118.0/23 9121 -78.188.120.0/21 9121 -78.188.128.0/22 9121 -78.188.132.0/23 47331 -78.188.134.0/23 9121 -78.188.136.0/22 9121 -78.188.140.0/24 47331 -78.188.141.0/24 9121 -78.188.142.0/23 9121 -78.188.144.0/24 47331 -78.188.145.0/24 9121 -78.188.146.0/24 9121 -78.188.147.0/24 47331 -78.188.148.0/24 47331 -78.188.149.0/24 9121 -78.188.150.0/23 9121 -78.188.152.0/23 9121 -78.188.154.0/24 47331 -78.188.155.0/24 9121 -78.188.156.0/23 9121 -78.188.158.0/23 47331 -78.188.160.0/23 47331 -78.188.162.0/23 9121 -78.188.164.0/22 9121 -78.188.168.0/21 9121 -78.188.176.0/21 9121 -78.188.184.0/22 9121 -78.188.188.0/23 9121 -78.188.190.0/23 47331 -78.188.192.0/22 9121 -78.188.196.0/23 9121 -78.188.198.0/24 9121 -78.188.199.0/24 47331 -78.188.200.0/22 9121 -78.188.204.0/23 9121 -78.188.206.0/23 47331 -78.188.208.0/24 47331 -78.188.209.0/24 9121 -78.188.210.0/23 47331 -78.188.212.0/22 9121 -78.188.216.0/21 9121 -78.188.224.0/23 47331 -78.188.226.0/24 9121 -78.188.227.0/24 47331 -78.188.228.0/22 47331 -78.188.232.0/21 47331 -78.188.240.0/24 47331 -78.188.241.0/24 9121 -78.188.242.0/23 47331 -78.188.244.0/22 9121 -78.188.248.0/21 9121 -78.189.0.0/23 47331 -78.189.2.0/23 9121 -78.189.4.0/22 9121 -78.189.8.0/24 9121 -78.189.9.0/24 47331 -78.189.10.0/24 9121 -78.189.11.0/24 47331 -78.189.12.0/22 47331 -78.189.16.0/24 9121 -78.189.17.0/24 47331 -78.189.18.0/24 47331 -78.189.19.0/24 9121 -78.189.20.0/22 9121 -78.189.24.0/21 9121 -78.189.32.0/23 9121 -78.189.34.0/24 47331 -78.189.35.0/24 9121 -78.189.36.0/23 47331 -78.189.38.0/23 9121 -78.189.40.0/21 9121 -78.189.48.0/23 9121 -78.189.50.0/23 47331 -78.189.52.0/23 47331 -78.189.54.0/24 9121 -78.189.55.0/24 47331 -78.189.56.0/23 9121 -78.189.58.0/24 9121 -78.189.59.0/24 47331 -78.189.60.0/22 9121 -78.189.64.0/21 9121 -78.189.72.0/23 9121 -78.189.74.0/24 9121 -78.189.75.0/24 47331 -78.189.76.0/23 9121 -78.189.78.0/24 9121 -78.189.79.0/24 47331 -78.189.80.0/23 47331 -78.189.82.0/23 9121 -78.189.84.0/24 47331 -78.189.85.0/24 9121 -78.189.86.0/23 9121 -78.189.88.0/24 47331 -78.189.89.0/24 9121 -78.189.90.0/24 47331 -78.189.91.0/24 9121 -78.189.92.0/23 47331 -78.189.94.0/23 9121 -78.189.96.0/23 9121 -78.189.98.0/23 47331 -78.189.100.0/24 9121 -78.189.101.0/24 47331 -78.189.102.0/23 9121 -78.189.104.0/22 9121 -78.189.108.0/23 47331 -78.189.110.0/23 9121 -78.189.112.0/23 47331 -78.189.114.0/23 9121 -78.189.116.0/22 9121 -78.189.120.0/22 9121 -78.189.124.0/22 47331 -78.189.128.0/21 9121 -78.189.136.0/22 47331 -78.189.140.0/23 47331 -78.189.142.0/23 9121 -78.189.144.0/23 9121 -78.189.146.0/24 47331 -78.189.147.0/24 9121 -78.189.148.0/22 9121 -78.189.152.0/21 9121 -78.189.160.0/23 9121 -78.189.162.0/23 47331 -78.189.164.0/22 9121 -78.189.168.0/23 47331 -78.189.170.0/23 9121 -78.189.172.0/22 9121 -78.189.176.0/24 47331 -78.189.177.0/24 9121 -78.189.178.0/24 47331 -78.189.179.0/24 9121 -78.189.180.0/24 9121 -78.189.181.0/24 47331 -78.189.182.0/23 9121 -78.189.184.0/22 9121 -78.189.188.0/23 47331 -78.189.190.0/24 47331 -78.189.191.0/24 9121 -78.189.192.0/23 47331 -78.189.194.0/24 9121 -78.189.195.0/24 47331 -78.189.196.0/24 9121 -78.189.197.0/24 47331 -78.189.198.0/24 9121 -78.189.199.0/24 47331 -78.189.200.0/24 9121 -78.189.201.0/24 47331 -78.189.202.0/23 47331 -78.189.204.0/23 47331 -78.189.206.0/23 9121 -78.189.208.0/23 9121 -78.189.210.0/24 9121 -78.189.211.0/24 47331 -78.189.212.0/23 9121 -78.189.214.0/24 9121 -78.189.215.0/24 47331 -78.189.216.0/24 9121 -78.189.217.0/24 47331 -78.189.218.0/24 47331 -78.189.219.0/24 9121 -78.189.220.0/24 47331 -78.189.221.0/24 9121 -78.189.222.0/23 9121 -78.189.224.0/22 9121 -78.189.228.0/24 47331 -78.189.229.0/24 9121 -78.189.230.0/24 9121 -78.189.231.0/24 47331 -78.189.232.0/24 47331 -78.189.233.0/24 9121 -78.189.234.0/23 9121 -78.189.236.0/24 47331 -78.189.237.0/24 9121 -78.189.238.0/24 47331 -78.189.239.0/24 9121 -78.189.240.0/22 9121 -78.189.244.0/23 9121 -78.189.246.0/24 47331 -78.189.247.0/24 9121 -78.189.248.0/21 9121 -78.190.0.0/21 9121 -78.190.8.0/21 47331 -78.190.16.0/20 47331 -78.190.32.0/21 47331 -78.190.40.0/22 47331 -78.190.44.0/24 47331 -78.190.45.0/24 9121 -78.190.46.0/23 9121 -78.190.48.0/20 47331 -78.190.64.0/18 47331 -78.190.128.0/21 47331 -78.190.136.0/21 9121 -78.190.144.0/21 9121 -78.190.152.0/21 47331 -78.190.160.0/19 47331 -78.190.192.0/19 47331 -78.190.224.0/20 47331 -78.190.240.0/22 47331 -78.190.244.0/22 9121 -78.190.248.0/21 9121 -78.191.0.0/18 47331 -78.191.64.0/21 47331 -78.191.72.0/22 9121 -78.191.76.0/22 47331 -78.191.80.0/20 47331 -78.191.96.0/19 47331 -78.191.128.0/19 9121 -78.191.160.0/20 9121 -78.191.176.0/21 9121 -78.191.184.0/21 47331 -78.191.192.0/20 47331 -78.191.208.0/20 9121 -78.191.224.0/21 47331 -78.191.232.0/22 9121 -78.191.236.0/22 47331 -78.191.240.0/20 47331 -78.192.0.0/10 12322 -79.0.0.0/11 3269 -79.32.0.0/12 3269 -79.48.0.0/13 3269 -79.56.0.0/16 3269 -79.58.0.0/15 3269 -79.60.0.0/14 3269 -79.64.0.0/12 9105 -79.80.0.0/12 15557 -79.96.0.0/16 12824 -79.97.0.0/16 6830 -79.98.0.0/21 25002 -79.98.8.0/21 44020 -79.98.16.0/21 35152 -79.98.24.0/21 62282 -79.98.32.0/24 43950 -79.98.33.0/24 65543 -79.98.34.0/23 43950 -79.98.36.0/22 43950 -79.98.40.0/21 43989 -79.98.48.0/22 21305 -79.98.52.0/24 206047 -79.98.53.0/24 21305 -79.98.54.0/24 56740 -79.98.55.0/24 44288 -79.98.56.0/21 39781 -79.98.64.0/21 198153 -79.98.72.0/21 44002 -79.98.80.0/21 19178 -79.98.88.0/21 12714 -79.98.96.0/21 39600 -79.98.104.0/21 197216 -79.98.112.0/21 29238 -79.98.120.0/22 47201 -79.98.128.0/21 42926 -79.98.136.0/21 30833 -79.98.144.0/21 39310 -79.98.152.0/21 44065 -79.98.160.0/21 47474 -79.98.168.0/21 12902 -79.98.176.0/22 15703 -79.98.180.0/24 8100 -79.98.182.0/23 13213 -79.98.184.0/22 59504 -79.98.188.0/22 202240 -79.98.192.0/21 15516 -79.98.200.0/21 42408 -79.98.208.0/21 44053 -79.98.216.0/21 200064 -79.98.224.0/21 12853 -79.98.236.0/24 702 -79.98.238.0/23 197342 -79.98.240.0/22 199995 -79.98.244.0/22 207046 -79.99.0.0/21 43948 -79.99.8.0/21 44091 -79.99.16.0/21 44096 -79.99.24.0/23 48635 -79.99.26.0/24 30870 -79.99.27.0/24 48635 -79.99.28.0/22 48635 -79.99.32.0/21 8426 -79.99.40.0/21 8560 -79.99.48.0/21 39578 -79.99.56.0/21 47212 -79.99.64.0/21 31463 -79.99.72.0/21 8851 -79.99.80.0/21 44225 -79.99.92.0/23 9144 -79.99.95.0/24 9144 -79.99.96.0/24 44156 -79.99.97.0/24 44215 -79.99.98.0/23 44156 -79.99.100.0/22 44156 -79.99.104.0/21 24739 -79.99.112.0/21 44473 -79.99.120.0/21 6696 -79.99.128.0/21 48635 -79.99.136.0/23 44510 -79.99.144.0/22 39179 -79.99.148.0/24 196875 -79.99.160.0/21 57809 -79.99.168.0/21 44769 -79.99.176.0/24 44261 -79.99.184.0/21 8315 -79.99.192.0/21 44356 -79.99.200.0/24 44312 -79.99.202.0/23 44312 -79.99.208.0/21 42666 -79.99.216.0/21 44206 -79.99.224.0/22 3246 -79.99.228.0/23 3246 -79.99.230.0/23 42303 -79.99.232.0/21 44227 -79.99.240.0/21 20485 -79.99.248.0/21 35805 -79.100.0.0/16 8866 -79.101.0.0/20 8400 -79.101.16.0/22 8400 -79.101.20.0/24 8400 -79.101.21.0/24 41937 -79.101.22.0/23 8400 -79.101.24.0/21 8400 -79.101.32.0/19 8400 -79.101.64.0/18 8400 -79.101.128.0/17 8400 -79.102.0.0/16 2119 -79.103.0.0/16 1241 -79.104.0.0/17 3216 -79.104.192.0/24 3216 -79.104.193.0/24 21483 -79.104.194.0/23 21483 -79.104.196.0/22 3216 -79.104.200.0/21 3216 -79.104.208.0/21 3216 -79.104.216.0/22 21483 -79.104.220.0/24 3216 -79.104.221.0/24 21483 -79.104.222.0/23 21483 -79.105.0.0/23 12389 -79.105.2.0/23 34137 -79.105.4.0/22 12389 -79.105.8.0/21 12389 -79.105.16.0/24 34137 -79.105.17.0/24 12389 -79.105.18.0/23 12389 -79.105.20.0/22 12389 -79.105.24.0/21 12389 -79.105.32.0/19 12389 -79.105.64.0/22 12389 -79.105.68.0/24 34137 -79.105.69.0/24 12389 -79.105.70.0/23 12389 -79.105.72.0/23 12389 -79.105.74.0/24 12389 -79.105.75.0/24 34137 -79.105.76.0/24 12389 -79.105.77.0/24 34137 -79.105.78.0/24 34137 -79.105.79.0/24 12389 -79.105.80.0/20 12389 -79.105.96.0/19 12389 -79.105.128.0/19 12389 -79.105.160.0/20 12389 -79.105.176.0/22 12389 -79.105.180.0/22 34137 -79.105.184.0/24 34137 -79.105.185.0/24 12389 -79.105.186.0/23 12389 -79.105.188.0/23 12389 -79.105.190.0/23 34137 -79.105.192.0/23 12389 -79.105.194.0/24 12389 -79.105.195.0/24 34137 -79.105.196.0/24 34137 -79.105.197.0/24 12389 -79.105.198.0/23 34137 -79.105.200.0/21 34137 -79.105.208.0/24 34137 -79.105.209.0/24 12389 -79.105.210.0/23 34137 -79.105.212.0/24 34137 -79.105.213.0/24 12389 -79.105.214.0/23 12389 -79.105.216.0/21 12389 -79.105.224.0/20 12389 -79.105.240.0/21 12389 -79.105.248.0/22 12389 -79.105.252.0/23 12389 -79.105.254.0/24 34137 -79.105.255.0/24 12389 -79.106.0.0/16 42313 -79.107.0.0/16 25472 -79.108.0.0/20 12357 -79.108.16.0/21 12357 -79.108.24.0/22 12357 -79.108.28.0/22 6739 -79.108.32.0/22 12357 -79.108.36.0/22 6739 -79.108.40.0/21 6739 -79.108.48.0/20 12357 -79.108.64.0/22 6739 -79.108.68.0/24 6739 -79.108.69.0/24 12357 -79.108.70.0/23 12357 -79.108.72.0/22 12357 -79.108.76.0/22 6739 -79.108.80.0/22 12357 -79.108.84.0/22 6739 -79.108.88.0/21 12357 -79.108.96.0/22 12357 -79.108.100.0/22 6739 -79.108.104.0/21 12357 -79.108.112.0/21 12357 -79.108.120.0/22 6739 -79.108.124.0/22 12357 -79.108.128.0/20 12357 -79.108.144.0/24 6739 -79.108.145.0/24 12357 -79.108.146.0/23 12357 -79.108.148.0/22 12357 -79.108.152.0/21 12357 -79.108.160.0/20 12357 -79.108.176.0/21 12357 -79.108.184.0/22 12357 -79.108.188.0/24 12357 -79.108.189.0/24 6739 -79.108.190.0/23 6739 -79.108.192.0/21 12357 -79.108.200.0/22 6739 -79.108.204.0/22 12357 -79.108.208.0/20 12357 -79.108.224.0/21 12357 -79.108.232.0/22 6739 -79.108.236.0/22 12357 -79.108.240.0/23 12357 -79.108.242.0/23 6739 -79.108.244.0/22 12357 -79.108.248.0/21 12357 -79.109.0.0/17 6739 -79.109.128.0/21 6739 -79.109.136.0/22 6739 -79.109.140.0/22 12357 -79.109.144.0/20 12357 -79.109.160.0/21 12357 -79.109.168.0/21 6739 -79.109.176.0/20 6739 -79.109.192.0/22 12357 -79.109.196.0/22 6739 -79.109.200.0/21 12357 -79.109.208.0/20 12357 -79.109.224.0/21 12357 -79.109.232.0/22 12357 -79.109.236.0/23 6739 -79.109.238.0/24 12357 -79.109.239.0/24 6739 -79.109.240.0/20 6739 -79.110.0.0/20 29512 -79.110.17.0/24 200557 -79.110.20.0/24 203135 -79.110.24.0/24 209813 -79.110.28.0/24 8100 -79.110.29.0/24 202023 -79.110.31.0/24 8100 -79.110.32.0/20 57287 -79.110.52.0/22 60233 -79.110.56.0/22 39180 -79.110.64.0/20 50245 -79.110.80.0/20 47195 -79.110.96.0/20 47182 -79.110.112.0/21 21249 -79.110.128.0/20 41435 -79.110.144.0/20 31042 -79.110.160.0/24 200304 -79.110.164.0/23 20860 -79.110.168.0/24 57782 -79.110.169.0/24 210089 -79.110.170.0/24 208590 -79.110.176.0/21 46261 -79.110.184.0/22 203872 -79.110.188.0/22 47334 -79.110.192.0/20 35179 -79.110.208.0/20 50245 -79.110.240.0/20 47569 -79.111.0.0/16 12714 -79.112.0.0/13 8708 -79.120.0.0/17 12714 -79.120.128.0/19 12301 -79.120.160.0/21 20845 -79.120.168.0/23 12301 -79.120.170.0/23 20845 -79.120.172.0/22 20845 -79.120.176.0/20 12301 -79.120.192.0/19 12301 -79.120.224.0/20 12301 -79.120.240.0/21 12301 -79.120.248.0/23 20845 -79.120.250.0/23 12301 -79.120.252.0/22 20845 -79.121.0.0/18 43529 -79.121.64.0/21 43529 -79.121.72.0/24 47710 -79.121.73.0/24 47169 -79.121.74.0/23 5483 -79.121.76.0/22 5483 -79.121.80.0/24 47169 -79.121.82.0/23 42232 -79.121.84.0/22 5483 -79.121.88.0/21 43529 -79.121.96.0/21 5483 -79.121.104.0/21 8462 -79.121.112.0/21 8462 -79.121.120.0/21 12301 -79.121.128.0/17 8190 -79.122.0.0/17 5483 -79.122.128.0/20 12772 -79.122.144.0/21 12772 -79.122.152.0/22 12772 -79.122.156.0/23 12772 -79.122.160.0/19 12772 -79.122.192.0/23 12772 -79.122.196.0/22 12772 -79.122.200.0/21 12772 -79.122.208.0/20 12772 -79.122.224.0/20 12772 -79.122.240.0/22 24588 -79.122.244.0/22 12772 -79.122.248.0/21 12772 -79.123.0.0/17 8426 -79.123.128.0/19 8517 -79.123.160.0/20 8517 -79.123.176.0/21 8456 -79.123.184.0/21 8517 -79.123.192.0/18 8517 -79.124.0.0/24 57344 -79.124.1.0/24 62240 -79.124.2.0/23 62386 -79.124.4.0/23 31083 -79.124.6.0/24 31083 -79.124.7.0/24 203380 -79.124.8.0/24 207083 -79.124.10.0/23 25374 -79.124.12.0/24 25374 -79.124.13.0/24 31083 -79.124.14.0/24 31083 -79.124.15.0/24 57344 -79.124.16.0/23 31083 -79.124.18.0/23 25374 -79.124.20.0/23 57344 -79.124.22.0/24 31083 -79.124.23.0/24 57344 -79.124.24.0/22 57344 -79.124.28.0/24 57344 -79.124.29.0/24 31083 -79.124.30.0/24 49699 -79.124.31.0/24 31083 -79.124.32.0/21 34524 -79.124.40.0/22 49849 -79.124.44.0/24 31083 -79.124.45.0/24 50360 -79.124.46.0/24 25374 -79.124.48.0/24 199221 -79.124.49.0/24 50360 -79.124.50.0/23 29622 -79.124.52.0/23 29622 -79.124.54.0/24 50360 -79.124.55.0/24 201200 -79.124.56.0/24 50360 -79.124.57.0/24 34376 -79.124.58.0/23 50360 -79.124.60.0/23 50360 -79.124.62.0/24 207812 -79.124.63.0/24 31083 -79.124.64.0/22 31083 -79.124.71.0/24 60168 -79.124.72.0/24 205872 -79.124.73.0/24 57344 -79.124.74.0/24 57344 -79.124.75.0/24 31083 -79.124.76.0/24 31083 -79.124.77.0/24 203380 -79.124.78.0/24 201133 -79.124.79.0/24 57344 -79.124.80.0/22 49849 -79.124.84.0/24 205359 -79.124.85.0/24 60656 -79.124.86.0/24 42956 -79.124.87.0/24 205085 -79.124.88.0/23 59763 -79.124.90.0/24 31083 -79.124.91.0/24 59763 -79.124.92.0/22 59763 -79.124.96.0/19 44124 -79.124.128.0/17 34058 -79.125.0.0/17 16509 -79.125.128.0/22 6821 -79.125.160.0/20 6821 -79.125.176.0/20 41557 -79.125.192.0/18 6821 -79.126.0.0/17 12389 -79.126.128.0/17 16333 -79.127.0.0/21 49100 -79.127.8.0/21 43754 -79.127.16.0/20 43754 -79.127.32.0/21 43754 -79.127.40.0/22 43754 -79.127.44.0/23 44400 -79.127.46.0/23 43754 -79.127.48.0/21 43754 -79.127.56.0/22 43754 -79.127.60.0/23 44400 -79.127.62.0/23 43754 -79.127.64.0/20 49100 -79.127.80.0/20 43754 -79.127.96.0/20 43754 -79.127.112.0/22 43754 -79.127.116.0/23 43754 -79.127.118.0/24 44400 -79.127.119.0/24 43754 -79.127.120.0/21 43754 -79.127.128.0/17 9080 -79.128.0.0/14 6799 -79.132.0.0/19 29084 -79.132.32.0/19 43763 -79.132.64.0/19 20910 -79.132.96.0/19 43782 -79.132.128.0/19 16097 -79.132.160.0/19 24852 -79.132.192.0/21 31476 -79.132.200.0/21 24631 -79.132.208.0/20 24631 -79.132.224.0/20 9031 -79.132.240.0/21 9031 -79.132.248.0/22 9031 -79.132.252.0/23 9031 -79.132.254.0/24 9031 -79.132.255.0/24 60853 -79.133.0.0/19 3238 -79.133.32.0/23 203833 -79.133.34.0/23 44066 -79.133.36.0/22 44066 -79.133.40.0/23 44066 -79.133.42.0/24 44066 -79.133.43.0/24 203833 -79.133.44.0/22 44066 -79.133.48.0/20 44066 -79.133.64.0/20 12389 -79.133.80.0/21 12389 -79.133.88.0/23 12389 -79.133.90.0/24 12389 -79.133.91.0/24 205858 -79.133.92.0/22 12389 -79.133.98.0/23 57311 -79.133.100.0/22 8749 -79.133.104.0/24 61052 -79.133.105.0/24 60006 -79.133.106.0/24 46844 -79.133.107.0/24 200557 -79.133.108.0/22 8749 -79.133.112.0/21 59793 -79.133.120.0/21 8749 -79.133.128.0/19 12389 -79.133.160.0/19 43882 -79.133.192.0/19 20853 -79.133.224.0/19 21412 -79.134.0.0/19 8427 -79.134.32.0/20 39824 -79.134.48.0/21 25076 -79.134.56.0/21 42459 -79.134.64.0/19 42132 -79.134.96.0/19 16302 -79.134.128.0/19 44702 -79.134.160.0/21 12829 -79.134.172.0/22 41313 -79.134.176.0/22 62418 -79.134.182.0/23 41313 -79.134.184.0/22 13306 -79.134.188.0/22 41313 -79.134.192.0/19 8492 -79.134.224.0/19 6775 -79.135.0.0/19 2116 -79.135.32.0/19 21056 -79.135.64.0/20 5563 -79.135.80.0/22 5563 -79.135.84.0/23 5563 -79.135.86.0/24 200082 -79.135.87.0/24 199259 -79.135.88.0/21 5563 -79.135.96.0/19 29676 -79.135.128.0/19 39365 -79.135.160.0/19 196728 -79.135.192.0/19 44078 -79.135.224.0/19 45013 -79.136.0.0/17 8473 -79.136.128.0/18 34145 -79.136.192.0/21 34145 -79.136.200.0/21 47144 -79.136.208.0/23 34145 -79.136.212.0/22 34145 -79.136.224.0/21 44417 -79.136.232.0/23 201495 -79.136.236.0/22 34145 -79.136.244.0/22 34145 -79.136.248.0/21 34145 -79.137.0.0/17 16276 -79.137.128.0/24 56631 -79.137.129.0/24 205130 -79.137.130.0/24 61178 -79.137.131.0/24 204525 -79.137.132.0/24 207581 -79.137.134.0/24 199622 -79.137.135.0/24 199623 -79.137.137.0/24 56631 -79.137.138.0/24 61178 -79.137.140.0/24 56630 -79.137.141.0/24 57085 -79.137.142.0/24 49797 -79.137.143.0/24 61178 -79.137.144.0/22 12695 -79.137.148.0/23 12695 -79.137.150.0/24 12695 -79.137.151.0/24 61178 -79.137.152.0/22 12695 -79.137.156.0/24 205830 -79.137.157.0/24 47764 -79.137.158.0/23 64419 -79.137.160.0/22 12695 -79.137.166.0/24 199647 -79.137.168.0/23 64419 -79.137.172.0/24 29572 -79.137.173.0/24 12695 -79.137.174.0/23 47764 -79.137.181.0/24 64419 -79.137.182.0/24 64419 -79.137.183.0/24 47764 -79.137.184.0/24 56857 -79.137.185.0/24 64419 -79.137.186.0/23 56631 -79.137.188.0/22 12695 -79.137.192.0/20 42569 -79.137.208.0/20 12695 -79.137.224.0/20 12695 -79.137.240.0/21 47764 -79.137.248.0/23 12695 -79.137.250.0/24 12695 -79.137.251.0/24 21140 -79.137.252.0/22 12695 -79.138.0.0/17 45011 -79.138.128.0/17 44034 -79.139.8.0/21 15470 -79.139.16.0/20 196730 -79.139.48.0/22 47329 -79.139.56.0/21 62214 -79.139.66.0/24 60782 -79.139.68.0/22 60782 -79.139.82.0/23 56391 -79.139.96.0/20 35745 -79.139.112.0/22 47329 -79.139.116.0/22 60782 -79.139.128.0/17 25513 -79.140.0.0/20 6876 -79.140.16.0/20 41704 -79.140.32.0/20 31333 -79.140.64.0/20 43970 -79.140.80.0/20 6762 -79.140.96.0/20 15774 -79.140.112.0/20 15366 -79.140.128.0/20 15533 -79.140.144.0/20 31042 -79.140.160.0/20 43870 -79.140.176.0/20 12312 -79.140.194.0/24 4913 -79.140.196.0/22 4913 -79.140.200.0/21 4913 -79.140.208.0/20 43192 -79.140.224.0/20 43873 -79.140.240.0/20 43908 -79.141.0.0/20 25540 -79.141.16.0/20 41589 -79.141.32.0/22 6461 -79.141.36.0/24 6461 -79.141.37.0/24 62021 -79.141.38.0/23 6461 -79.141.40.0/22 6461 -79.141.44.0/24 6461 -79.141.45.0/24 17025 -79.141.46.0/23 6461 -79.141.48.0/23 31483 -79.141.50.0/23 12768 -79.141.52.0/22 12768 -79.141.56.0/21 12768 -79.141.64.0/20 61976 -79.141.80.0/20 44166 -79.141.96.0/20 29300 -79.141.112.0/20 44021 -79.141.128.0/20 8607 -79.141.144.0/20 34263 -79.141.160.0/22 202015 -79.141.164.0/23 59711 -79.141.166.0/23 201525 -79.141.168.0/23 133398 -79.141.170.0/23 61046 -79.141.172.0/23 59711 -79.141.174.0/23 42708 -79.141.176.0/20 43954 -79.141.192.0/22 8362 -79.141.197.0/24 8362 -79.141.198.0/24 8362 -79.141.200.0/21 8362 -79.141.208.0/20 20764 -79.141.224.0/20 29256 -79.141.240.0/20 28972 -79.142.0.0/20 16178 -79.142.16.0/20 43973 -79.142.32.0/20 47347 -79.142.48.0/20 43994 -79.142.64.0/20 51430 -79.142.80.0/21 8492 -79.142.88.0/22 8492 -79.142.92.0/24 8492 -79.142.93.0/24 43370 -79.142.94.0/23 43370 -79.142.96.0/23 35508 -79.142.98.0/23 25478 -79.142.100.0/23 44670 -79.142.106.0/23 47323 -79.142.112.0/20 15440 -79.142.128.0/20 21232 -79.142.144.0/20 197307 -79.142.160.0/20 5563 -79.142.176.0/23 210324 -79.142.180.0/22 198252 -79.142.184.0/22 205888 -79.142.188.0/22 47692 -79.142.192.0/20 44291 -79.142.208.0/20 16117 -79.142.224.0/20 44134 -79.142.240.0/20 50821 -79.143.0.0/24 197756 -79.143.1.0/24 25513 -79.143.2.0/23 25513 -79.143.4.0/22 25513 -79.143.8.0/21 25513 -79.143.17.0/24 209181 -79.143.19.0/24 44115 -79.143.20.0/22 200590 -79.143.24.0/21 50340 -79.143.32.0/20 24945 -79.143.48.0/24 49072 -79.143.49.0/24 9009 -79.143.50.0/24 54600 -79.143.51.0/24 202365 -79.143.52.0/24 21859 -79.143.53.0/24 134705 -79.143.54.0/24 54600 -79.143.55.0/24 134705 -79.143.56.0/24 23470 -79.143.57.0/24 54600 -79.143.58.0/24 23470 -79.143.59.0/24 393489 -79.143.61.0/24 134705 -79.143.62.0/24 134705 -79.143.63.0/24 54600 -79.143.64.0/22 39238 -79.143.68.0/23 29053 -79.143.70.0/23 39238 -79.143.72.0/23 29053 -79.143.74.0/24 39238 -79.143.75.0/24 29053 -79.143.76.0/22 39238 -79.143.80.0/22 20860 -79.143.84.0/24 209488 -79.143.85.0/24 200296 -79.143.86.0/24 60178 -79.143.87.0/24 25369 -79.143.88.0/21 29119 -79.143.96.0/20 15397 -79.143.112.0/21 48544 -79.143.120.0/22 48544 -79.143.132.0/22 207050 -79.143.144.0/21 8468 -79.143.152.0/22 8468 -79.143.156.0/24 16509 -79.143.157.0/24 8468 -79.143.158.0/23 8468 -79.143.160.0/20 198252 -79.143.176.0/20 51167 -79.143.192.0/20 207044 -79.143.208.0/20 39591 -79.143.224.0/20 31558 -79.143.240.0/20 29608 -79.144.0.0/12 3352 -79.160.0.0/15 29695 -79.162.0.0/15 5617 -79.164.0.0/15 8615 -79.166.0.0/15 3329 -79.168.0.0/15 2860 -79.170.8.0/21 43707 -79.170.16.0/21 25252 -79.170.24.0/21 43761 -79.170.32.0/24 43745 -79.170.35.0/24 38325 -79.170.40.0/22 20738 -79.170.44.0/24 20773 -79.170.45.0/24 20738 -79.170.46.0/23 20738 -79.170.50.0/23 43766 -79.170.52.0/23 43766 -79.170.54.0/24 43766 -79.170.56.0/21 25215 -79.170.64.0/21 25627 -79.170.72.0/21 204558 -79.170.80.0/21 31169 -79.170.88.0/21 35470 -79.170.96.0/21 43777 -79.170.108.0/22 57331 -79.170.118.0/24 43191 -79.170.120.0/21 43766 -79.170.128.0/21 16095 -79.170.136.0/21 21480 -79.170.144.0/22 201910 -79.170.148.0/22 60397 -79.170.152.0/22 196963 -79.170.160.0/21 43801 -79.170.168.0/24 15924 -79.170.176.0/21 44314 -79.170.184.0/21 24722 -79.170.192.0/21 12390 -79.170.200.0/24 3 -79.170.201.0/24 43845 -79.170.202.0/23 43845 -79.170.204.0/22 43845 -79.170.208.0/21 43957 -79.170.216.0/21 13193 -79.170.224.0/21 43925 -79.170.244.0/22 43829 -79.170.248.0/21 20723 -79.171.0.0/22 41004 -79.171.4.0/23 41476 -79.171.8.0/21 20632 -79.171.16.0/22 44565 -79.171.20.0/23 44565 -79.171.24.0/21 44588 -79.171.32.0/21 20860 -79.171.40.0/23 43919 -79.171.48.0/22 50973 -79.171.52.0/24 50973 -79.171.53.0/24 30722 -79.171.54.0/23 50973 -79.171.56.0/21 51906 -79.171.64.0/21 210150 -79.171.72.0/21 44212 -79.171.80.0/21 25148 -79.171.88.0/21 33808 -79.171.96.0/21 43892 -79.171.104.0/21 15919 -79.171.112.0/23 43874 -79.171.114.0/24 200926 -79.171.115.0/24 43874 -79.171.117.0/24 64494 -79.171.118.0/24 51477 -79.171.119.0/24 64429 -79.171.120.0/21 34700 -79.171.128.0/21 43876 -79.171.136.0/21 43928 -79.171.144.0/21 59701 -79.171.152.0/22 43884 -79.171.160.0/21 198471 -79.171.168.0/21 38986 -79.171.176.0/21 29037 -79.171.184.0/21 43895 -79.171.192.0/21 43437 -79.171.200.0/21 34031 -79.171.216.0/21 29119 -79.171.224.0/21 41369 -79.171.232.0/21 58003 -79.171.240.0/21 30882 -79.171.248.0/21 206387 -79.172.0.0/20 5563 -79.172.16.0/21 207103 -79.172.24.0/21 5563 -79.172.32.0/19 5563 -79.172.64.0/18 30784 -79.172.128.0/18 34397 -79.172.192.0/24 43711 -79.172.193.0/24 29278 -79.172.194.0/23 43711 -79.172.196.0/24 29278 -79.172.197.0/24 62292 -79.172.198.0/24 30723 -79.172.199.0/24 29278 -79.172.200.0/24 33947 -79.172.201.0/24 62292 -79.172.202.0/24 33947 -79.172.203.0/24 29278 -79.172.204.0/23 43711 -79.172.206.0/24 42964 -79.172.207.0/24 60071 -79.172.208.0/24 33947 -79.172.209.0/24 29278 -79.172.210.0/24 61998 -79.172.211.0/24 29278 -79.172.212.0/24 61998 -79.172.213.0/24 29278 -79.172.214.0/24 62292 -79.172.215.0/24 42964 -79.172.216.0/24 29278 -79.172.217.0/24 42964 -79.172.218.0/24 57389 -79.172.219.0/24 60071 -79.172.220.0/24 43711 -79.172.221.0/24 29278 -79.172.222.0/23 29278 -79.172.224.0/23 29278 -79.172.226.0/24 12301 -79.172.227.0/24 29278 -79.172.228.0/24 39679 -79.172.229.0/24 12301 -79.172.230.0/23 12301 -79.172.232.0/22 33947 -79.172.236.0/24 29278 -79.172.237.0/24 42964 -79.172.238.0/23 29278 -79.172.240.0/22 29278 -79.172.244.0/22 47159 -79.172.248.0/23 29278 -79.172.250.0/24 57389 -79.172.251.0/24 33937 -79.172.252.0/23 29278 -79.172.254.0/24 12301 -79.172.255.0/24 29278 -79.173.0.0/18 39834 -79.173.64.0/23 197402 -79.173.66.0/23 60484 -79.173.68.0/22 196726 -79.173.74.0/23 31277 -79.173.76.0/24 31277 -79.173.77.0/24 60484 -79.173.78.0/24 43951 -79.173.79.0/24 50741 -79.173.80.0/20 43966 -79.173.96.0/21 48234 -79.173.112.0/20 44270 -79.173.128.0/18 5631 -79.173.192.0/18 8376 -79.174.0.0/22 197328 -79.174.4.0/22 202914 -79.174.8.0/22 18530 -79.174.12.0/22 29182 -79.174.20.0/22 35913 -79.174.24.0/22 210125 -79.174.28.0/22 31463 -79.174.32.0/19 47119 -79.174.64.0/19 47385 -79.174.128.0/21 34762 -79.174.136.0/21 48173 -79.174.144.0/21 48173 -79.174.152.0/21 31027 -79.174.160.0/21 24631 -79.174.168.0/21 59565 -79.174.184.0/22 62205 -79.174.188.0/23 62205 -79.174.190.0/24 62205 -79.174.191.0/24 202650 -79.174.192.0/18 9003 -79.175.0.0/18 12418 -79.175.64.0/19 9125 -79.175.96.0/22 9125 -79.175.100.0/23 9125 -79.175.102.0/24 9125 -79.175.103.0/24 52116 -79.175.104.0/21 9125 -79.175.112.0/20 9125 -79.175.128.0/18 25184 -79.175.192.0/18 44061 -79.176.0.0/13 8551 -79.184.0.0/13 5617 -79.192.0.0/10 3320 -80.0.0.0/13 5089 -80.8.0.0/15 3215 -80.10.4.0/23 28708 -80.10.8.0/21 8376 -80.10.16.0/20 8376 -80.10.32.0/24 8376 -80.10.43.0/24 28708 -80.10.46.0/24 28708 -80.10.47.0/24 3215 -80.10.48.0/20 8376 -80.10.64.0/20 8376 -80.10.159.0/24 28708 -80.10.161.0/24 28708 -80.10.184.0/21 3215 -80.10.192.0/22 3215 -80.10.200.0/22 3215 -80.10.250.0/23 3215 -80.10.252.0/22 3215 -80.11.0.0/16 3215 -80.12.0.0/18 3215 -80.12.64.0/23 3215 -80.12.66.0/23 28708 -80.12.68.0/23 28708 -80.12.70.0/24 28708 -80.12.71.0/24 5511 -80.12.79.0/24 5511 -80.12.80.0/20 3215 -80.12.96.0/22 5511 -80.12.101.0/24 28708 -80.12.102.0/24 28708 -80.12.103.0/24 3215 -80.12.104.0/21 3215 -80.12.124.0/22 3215 -80.12.128.0/18 3215 -80.12.192.0/23 5511 -80.12.195.0/24 3215 -80.12.196.0/22 3215 -80.12.200.0/21 3215 -80.12.209.0/24 28708 -80.12.210.0/24 28708 -80.12.212.0/23 199140 -80.12.214.0/23 3215 -80.12.240.0/23 199140 -80.12.242.0/24 3215 -80.12.243.0/24 199140 -80.12.244.0/24 3215 -80.12.245.0/24 8891 -80.12.246.0/24 8891 -80.12.247.0/24 3215 -80.12.248.0/23 3215 -80.12.250.0/24 199140 -80.12.251.0/24 3215 -80.12.252.0/24 3215 -80.12.253.0/24 199140 -80.12.254.0/24 199140 -80.12.255.0/24 3215 -80.13.0.0/16 3215 -80.14.0.0/16 3215 -80.15.0.0/17 3215 -80.15.128.0/18 3215 -80.15.192.0/19 3215 -80.15.224.0/21 5511 -80.15.232.0/22 5511 -80.15.236.0/23 5511 -80.15.238.0/24 5511 -80.15.239.0/24 15667 -80.15.240.0/22 5511 -80.15.244.0/23 5511 -80.15.246.0/24 5511 -80.15.247.0/24 31126 -80.15.248.0/23 5511 -80.15.250.0/24 5511 -80.15.251.0/24 28708 -80.15.252.0/24 15829 -80.15.253.0/24 5511 -80.15.254.0/23 5511 -80.16.0.0/13 3269 -80.24.0.0/13 3352 -80.32.0.0/13 3352 -80.40.0.0/13 9105 -80.48.0.0/16 5617 -80.49.0.0/18 5617 -80.49.64.0/18 12479 -80.49.128.0/17 5617 -80.50.0.0/15 5617 -80.52.0.0/18 5617 -80.52.64.0/18 12479 -80.52.128.0/17 5617 -80.53.0.0/16 5617 -80.54.0.0/18 5617 -80.54.64.0/19 5617 -80.54.96.0/21 5617 -80.54.104.0/22 5617 -80.54.108.0/23 5617 -80.54.110.0/23 29535 -80.54.112.0/20 5617 -80.54.128.0/17 5617 -80.55.0.0/16 5617 -80.56.0.0/15 6830 -80.58.0.0/17 3352 -80.58.128.0/18 3352 -80.58.192.0/21 3352 -80.58.200.0/24 3352 -80.58.201.0/24 6813 -80.58.202.0/23 3352 -80.58.204.0/22 3352 -80.58.208.0/20 3352 -80.58.224.0/19 3352 -80.59.0.0/16 3352 -80.60.0.0/15 1136 -80.62.0.0/15 3292 -80.64.0.0/20 16086 -80.64.16.0/21 30910 -80.64.24.0/23 30910 -80.64.26.0/23 201844 -80.64.28.0/24 51020 -80.64.29.0/24 30910 -80.64.30.0/23 201844 -80.64.32.0/20 20815 -80.64.48.0/20 31672 -80.64.64.0/20 50261 -80.64.80.0/20 41165 -80.64.96.0/21 20764 -80.64.104.0/23 20764 -80.64.106.0/24 20764 -80.64.107.0/24 201601 -80.64.108.0/22 20764 -80.64.112.0/20 35006 -80.64.128.0/21 20751 -80.64.136.0/22 20751 -80.64.140.0/22 24953 -80.64.144.0/20 15965 -80.64.160.0/21 40995 -80.64.168.0/21 34757 -80.64.176.0/21 16097 -80.64.184.0/22 16097 -80.64.188.0/23 16097 -80.64.190.0/24 29423 -80.64.191.0/24 16097 -80.64.192.0/20 2116 -80.64.208.0/22 200295 -80.64.212.0/22 202803 -80.64.216.0/22 12679 -80.64.220.0/22 208549 -80.64.224.0/20 31697 -80.64.240.0/22 3320 -80.65.8.0/21 20710 -80.65.16.0/20 31257 -80.65.32.0/20 60781 -80.65.48.0/21 31283 -80.65.56.0/24 12552 -80.65.57.0/24 31283 -80.65.58.0/23 31283 -80.65.60.0/22 31283 -80.65.64.0/19 9146 -80.65.96.0/19 20847 -80.65.128.0/20 31241 -80.65.144.0/20 8911 -80.65.160.0/20 21196 -80.65.176.0/21 31461 -80.65.192.0/20 25417 -80.65.208.0/22 200282 -80.65.212.0/22 50231 -80.65.216.0/22 197706 -80.65.220.0/22 48095 -80.65.224.0/20 13193 -80.65.240.0/20 13122 -80.66.0.0/19 9145 -80.66.32.0/19 28889 -80.66.64.0/20 20803 -80.66.80.0/24 208541 -80.66.81.0/24 202984 -80.66.82.0/24 207711 -80.66.83.0/24 20803 -80.66.84.0/23 202984 -80.66.86.0/24 20803 -80.66.87.0/24 56694 -80.66.88.0/23 20803 -80.66.90.0/23 50340 -80.66.92.0/22 35237 -80.66.96.0/20 48918 -80.66.112.0/22 31479 -80.66.116.0/24 31479 -80.66.117.0/24 200845 -80.66.118.0/23 31479 -80.66.120.0/21 31479 -80.66.128.0/20 1239 -80.66.144.0/20 24699 -80.66.160.0/20 51728 -80.66.176.0/20 29068 -80.66.192.0/22 13101 -80.66.196.0/24 4785 -80.66.197.0/24 54600 -80.66.198.0/23 54600 -80.66.200.0/22 61323 -80.66.204.0/22 29551 -80.66.208.0/20 31611 -80.66.224.0/20 20634 -80.66.240.0/20 204595 -80.67.0.0/20 42708 -80.67.16.0/24 34011 -80.67.17.0/24 8972 -80.67.18.0/23 8972 -80.67.20.0/22 8972 -80.67.24.0/21 8972 -80.67.32.0/22 263824 -80.67.36.0/22 2116 -80.67.40.0/22 57629 -80.67.44.0/22 35394 -80.67.48.0/20 31695 -80.67.64.0/23 12222 -80.67.66.0/24 12874 -80.67.67.0/24 35994 -80.67.68.0/23 20940 -80.67.70.0/24 12222 -80.67.71.0/24 20940 -80.67.72.0/24 20940 -80.67.73.0/24 12222 -80.67.74.0/24 20940 -80.67.75.0/24 23454 -80.67.76.0/24 20940 -80.67.77.0/24 34164 -80.67.78.0/23 16625 -80.67.80.0/24 35994 -80.67.81.0/24 34164 -80.67.82.0/24 20940 -80.67.83.0/24 34164 -80.67.84.0/22 34164 -80.67.88.0/21 34164 -80.67.96.0/20 8426 -80.67.112.0/20 15589 -80.67.128.0/20 37455 -80.67.144.0/22 6830 -80.67.160.0/22 20766 -80.67.164.0/23 20766 -80.67.166.0/24 20766 -80.67.167.0/24 57199 -80.67.168.0/21 20766 -80.67.176.0/22 20766 -80.67.180.0/24 51083 -80.67.181.0/24 204059 -80.67.182.0/24 12629 -80.67.183.0/24 51083 -80.67.184.0/24 204708 -80.67.185.0/24 51083 -80.67.186.0/24 198985 -80.67.187.0/24 204092 -80.67.188.0/24 60197 -80.67.189.0/24 51083 -80.67.190.0/24 204092 -80.67.191.0/24 20766 -80.67.192.0/20 20861 -80.67.208.0/20 33871 -80.67.224.0/20 20791 -80.67.240.0/22 31720 -80.67.244.0/24 31720 -80.67.246.0/23 31720 -80.67.248.0/22 31720 -80.67.252.0/24 62316 -80.68.0.0/21 21479 -80.68.8.0/22 21479 -80.68.12.0/23 21479 -80.68.14.0/23 12389 -80.68.16.0/23 7243 -80.68.32.0/19 20799 -80.68.64.0/20 12714 -80.68.80.0/20 35425 -80.68.96.0/20 2119 -80.68.112.0/20 44769 -80.68.128.0/20 20784 -80.68.144.0/23 33982 -80.68.147.0/24 33982 -80.68.148.0/22 33982 -80.68.152.0/22 33982 -80.68.157.0/24 33982 -80.68.158.0/23 33982 -80.68.160.0/20 20918 -80.68.176.0/20 31263 -80.68.192.0/21 20794 -80.68.200.0/22 20794 -80.68.204.0/24 20794 -80.68.205.0/24 12533 -80.68.206.0/23 20794 -80.68.208.0/20 50173 -80.68.224.0/20 49242 -80.68.240.0/20 20848 -80.69.0.0/19 21371 -80.69.32.0/20 20755 -80.69.48.0/20 34170 -80.69.64.0/19 20857 -80.69.96.0/20 6830 -80.69.112.0/20 9145 -80.69.128.0/20 31672 -80.69.144.0/21 34287 -80.69.152.0/23 34287 -80.69.154.0/24 42437 -80.69.155.0/24 34287 -80.69.156.0/22 34287 -80.69.160.0/21 29422 -80.69.168.0/22 29422 -80.69.172.0/22 202053 -80.69.176.0/20 25549 -80.69.192.0/20 20810 -80.69.208.0/20 34306 -80.69.224.0/23 2119 -80.69.226.0/23 20888 -80.69.228.0/22 20888 -80.69.232.0/21 20888 -80.69.240.0/20 44513 -80.70.16.0/20 29600 -80.70.32.0/20 9003 -80.70.52.0/22 34350 -80.70.64.0/22 201872 -80.70.68.0/22 42512 -80.70.72.0/22 201872 -80.70.76.0/23 201872 -80.70.96.0/20 34351 -80.70.112.0/22 34613 -80.70.116.0/22 13097 -80.70.128.0/20 20800 -80.70.144.0/20 57084 -80.70.166.0/23 51720 -80.70.168.0/23 5400 -80.70.170.0/24 5400 -80.70.171.0/24 41321 -80.70.172.0/22 5400 -80.70.176.0/20 34372 -80.70.192.0/20 49854 -80.70.208.0/21 34913 -80.70.216.0/22 34913 -80.70.220.0/23 34913 -80.70.222.0/23 16080 -80.70.224.0/20 20807 -80.70.240.0/20 34404 -80.71.0.0/19 39326 -80.71.32.0/20 395965 -80.71.48.0/20 34410 -80.71.64.0/19 44869 -80.71.96.0/20 15735 -80.71.112.0/20 24631 -80.71.128.0/20 197301 -80.71.160.0/19 21365 -80.71.192.0/20 20798 -80.71.208.0/20 12389 -80.71.224.0/20 20865 -80.71.240.0/20 34456 -80.72.0.0/20 42622 -80.72.16.0/23 207490 -80.72.32.0/20 20853 -80.72.48.0/20 20634 -80.72.64.0/24 31287 -80.72.65.0/24 35654 -80.72.66.0/23 35654 -80.72.68.0/22 35654 -80.72.72.0/24 31287 -80.72.73.0/24 35654 -80.72.74.0/23 35654 -80.72.76.0/22 35654 -80.72.80.0/20 35654 -80.72.96.0/20 5713 -80.72.112.0/20 34467 -80.72.128.0/20 20849 -80.72.144.0/20 34482 -80.72.160.0/20 20819 -80.72.176.0/20 12997 -80.72.192.0/20 21068 -80.72.208.0/20 34490 -80.72.224.0/21 20870 -80.72.232.0/23 20870 -80.72.234.0/24 20870 -80.72.235.0/24 20485 -80.72.236.0/24 20485 -80.72.237.0/24 20870 -80.72.238.0/23 20870 -80.72.240.0/20 15844 -80.73.0.0/20 13188 -80.73.16.0/20 34500 -80.73.32.0/20 20899 -80.73.48.0/20 61207 -80.73.64.0/19 21487 -80.73.96.0/19 20902 -80.73.128.0/20 30830 -80.73.144.0/20 34511 -80.73.160.0/20 20985 -80.73.176.0/24 1257 -80.73.192.0/24 31376 -80.73.193.0/24 202935 -80.73.194.0/23 31376 -80.73.196.0/22 31376 -80.73.200.0/21 31376 -80.73.208.0/21 204649 -80.73.216.0/23 204649 -80.73.224.0/20 31034 -80.73.240.0/21 21213 -80.73.248.0/21 48273 -80.74.8.0/22 2914 -80.74.16.0/20 34790 -80.74.64.0/20 20926 -80.74.96.0/19 25003 -80.74.128.0/19 21069 -80.74.160.0/20 9125 -80.74.176.0/20 3302 -80.74.192.0/19 1759 -80.74.224.0/20 39477 -80.74.240.0/20 44611 -80.75.0.0/20 25184 -80.75.16.0/23 206283 -80.75.32.0/20 16305 -80.75.48.0/22 8447 -80.75.52.0/22 12810 -80.75.56.0/21 8447 -80.75.64.0/20 20860 -80.75.80.0/20 34552 -80.75.96.0/20 20904 -80.75.112.0/20 34554 -80.75.128.0/20 49476 -80.75.144.0/21 197076 -80.75.152.0/21 33930 -80.75.160.0/19 36992 -80.75.192.0/20 3303 -80.75.210.0/24 39915 -80.75.212.0/24 39915 -80.75.214.0/23 39915 -80.75.216.0/23 39915 -80.75.218.0/24 39915 -80.75.221.0/24 39915 -80.75.222.0/24 39915 -80.75.224.0/20 20882 -80.75.240.0/20 34767 -80.76.0.0/20 20914 -80.76.16.0/20 34731 -80.76.32.0/22 46475 -80.76.36.0/22 9009 -80.76.40.0/23 59504 -80.76.42.0/24 59504 -80.76.44.0/22 204941 -80.76.52.0/22 9009 -80.76.56.0/22 46261 -80.76.60.0/22 39134 -80.76.64.0/20 20924 -80.76.80.0/20 41497 -80.76.96.0/20 51547 -80.76.112.0/20 8902 -80.76.128.0/20 30960 -80.76.144.0/20 8523 -80.76.160.0/20 48728 -80.76.176.0/20 34629 -80.76.192.0/20 31641 -80.76.208.0/23 34623 -80.76.212.0/22 29527 -80.76.216.0/22 29527 -80.76.224.0/20 39156 -80.76.240.0/20 20485 -80.77.0.0/20 15412 -80.77.16.0/20 34549 -80.77.32.0/20 3326 -80.77.48.0/20 49129 -80.77.64.0/20 1239 -80.77.80.0/20 46636 -80.77.96.0/20 1239 -80.77.112.0/20 47381 -80.77.128.0/20 20963 -80.77.144.0/20 34772 -80.77.160.0/23 50045 -80.77.162.0/23 28917 -80.77.164.0/22 28917 -80.77.168.0/24 42244 -80.77.169.0/24 28917 -80.77.170.0/23 50299 -80.77.172.0/22 28917 -80.77.176.0/22 9051 -80.77.180.0/23 9051 -80.77.182.0/24 9051 -80.77.184.0/24 43905 -80.77.185.0/24 9051 -80.77.186.0/24 9051 -80.77.188.0/24 9051 -80.77.190.0/24 41589 -80.77.191.0/24 9051 -80.77.192.0/21 15735 -80.77.200.0/22 15735 -80.77.204.0/23 15735 -80.77.206.0/24 15735 -80.77.207.0/24 29387 -80.77.208.0/20 8549 -80.77.224.0/20 34536 -80.77.240.0/20 34442 -80.78.0.0/21 21000 -80.78.8.0/23 21000 -80.78.10.0/24 21000 -80.78.14.0/23 21000 -80.78.16.0/21 37560 -80.78.24.0/22 37560 -80.78.30.0/23 42732 -80.78.32.0/20 12788 -80.78.48.0/21 12788 -80.78.56.0/22 12788 -80.78.60.0/23 12788 -80.78.62.0/24 12788 -80.78.63.0/24 60359 -80.78.64.0/20 21183 -80.78.96.0/20 16285 -80.78.112.0/22 16285 -80.78.116.0/24 16285 -80.78.117.0/24 20485 -80.78.118.0/23 16285 -80.78.120.0/21 16285 -80.78.128.0/22 202913 -80.78.132.0/24 44592 -80.78.133.0/24 39083 -80.78.134.0/24 209241 -80.78.135.0/24 39083 -80.78.136.0/22 42908 -80.78.140.0/23 203850 -80.78.144.0/20 12570 -80.78.160.0/19 21032 -80.78.192.0/20 21143 -80.78.208.0/20 34686 -80.78.225.0/24 39184 -80.78.226.0/23 39184 -80.78.228.0/22 39184 -80.78.232.0/21 39184 -80.78.240.0/24 197695 -80.78.241.0/24 43146 -80.78.242.0/23 24971 -80.78.244.0/22 43146 -80.78.248.0/23 197695 -80.78.250.0/23 43146 -80.78.252.0/24 197695 -80.78.253.0/24 43146 -80.78.254.0/23 197695 -80.79.0.0/22 42908 -80.79.8.0/22 200275 -80.79.12.0/22 48146 -80.79.16.0/20 24971 -80.79.32.0/20 20969 -80.79.48.0/24 206327 -80.79.49.0/24 34695 -80.79.50.0/23 34695 -80.79.52.0/22 34695 -80.79.56.0/22 34695 -80.79.60.0/24 205729 -80.79.61.0/24 34695 -80.79.62.0/23 34695 -80.79.64.0/21 8492 -80.79.72.0/22 8492 -80.79.76.0/24 8492 -80.79.77.0/24 3276 -80.79.78.0/24 42653 -80.79.79.0/24 8492 -80.79.80.0/20 34697 -80.79.96.0/20 21286 -80.79.112.0/20 34702 -80.79.128.0/20 6908 -80.79.144.0/24 34708 -80.79.145.0/24 9051 -80.79.146.0/23 9051 -80.79.148.0/22 9051 -80.79.152.0/21 9051 -80.79.160.0/20 12552 -80.79.176.0/20 35140 -80.79.192.0/20 20953 -80.79.208.0/21 196778 -80.79.216.0/23 199262 -80.79.218.0/23 196778 -80.79.220.0/22 196778 -80.79.224.0/20 24978 -80.79.240.0/21 31376 -80.79.248.0/24 31376 -80.79.249.0/24 60413 -80.79.250.0/24 30952 -80.79.251.0/24 31376 -80.79.252.0/23 31376 -80.79.254.0/23 57631 -80.80.0.0/19 8220 -80.80.32.0/20 42560 -80.80.48.0/20 34748 -80.80.64.0/23 3301 -80.80.80.0/23 60679 -80.80.82.0/23 203751 -80.80.84.0/22 6752 -80.80.88.0/22 34760 -80.80.92.0/22 6752 -80.80.96.0/19 60496 -80.80.128.0/19 12829 -80.80.160.0/20 21246 -80.80.176.0/20 28757 -80.80.192.0/20 40993 -80.80.208.0/20 34718 -80.80.224.0/20 21217 -80.80.240.0/20 34785 -80.81.0.0/19 8767 -80.81.32.0/19 47814 -80.81.64.0/21 15412 -80.81.72.0/22 15412 -80.81.76.0/23 3257 -80.81.78.0/24 15412 -80.81.79.0/24 13517 -80.81.80.0/20 15412 -80.81.96.0/19 16206 -80.81.128.0/20 40627 -80.81.144.0/21 9051 -80.81.152.0/22 9051 -80.81.156.0/23 9051 -80.81.158.0/24 9051 -80.81.159.0/24 24634 -80.81.160.0/19 719 -80.81.208.0/20 34784 -80.81.224.0/20 21019 -80.81.240.0/21 15657 -80.81.248.0/22 15657 -80.81.252.0/24 15657 -80.81.253.0/24 57317 -80.81.254.0/23 15657 -80.82.0.0/20 25569 -80.82.16.0/22 42927 -80.82.22.0/24 42927 -80.82.23.0/24 208892 -80.82.24.0/24 51353 -80.82.26.0/23 42927 -80.82.28.0/22 42927 -80.82.32.0/19 21017 -80.82.64.0/22 202425 -80.82.68.0/23 202425 -80.82.70.0/24 202425 -80.82.71.0/24 56611 -80.82.72.0/24 56611 -80.82.75.0/24 56611 -80.82.76.0/22 202425 -80.82.80.0/20 31494 -80.82.96.0/20 21060 -80.82.112.0/20 41357 -80.82.128.0/20 50173 -80.82.144.0/20 39906 -80.82.160.0/19 20485 -80.82.198.0/23 60326 -80.82.200.0/21 48173 -80.82.208.0/20 24961 -80.82.224.0/20 47608 -80.82.240.0/20 28792 -80.83.0.0/20 29243 -80.83.16.0/20 35197 -80.83.32.0/19 44885 -80.83.64.0/20 21045 -80.83.90.0/24 43096 -80.83.96.0/20 12312 -80.83.112.0/20 29141 -80.83.128.0/20 21214 -80.83.144.0/20 24867 -80.83.160.0/21 21058 -80.83.169.0/24 21058 -80.83.170.0/23 21058 -80.83.172.0/22 21058 -80.83.176.0/20 34868 -80.83.192.0/20 29072 -80.83.208.0/20 44123 -80.83.224.0/23 21103 -80.83.226.0/23 39811 -80.83.228.0/22 39811 -80.83.232.0/22 39811 -80.83.237.0/24 39811 -80.83.238.0/23 39811 -80.83.240.0/20 51604 -80.84.16.0/20 6774 -80.84.32.0/20 28854 -80.84.48.0/20 20860 -80.84.64.0/19 43545 -80.84.96.0/20 12428 -80.84.112.0/24 199624 -80.84.114.0/23 199624 -80.84.116.0/22 199624 -80.84.122.0/23 199624 -80.84.124.0/22 199624 -80.84.128.0/21 51007 -80.84.136.0/24 198381 -80.84.137.0/24 21057 -80.84.138.0/24 51007 -80.84.139.0/24 21057 -80.84.140.0/22 21057 -80.84.144.0/24 198247 -80.84.145.0/24 198381 -80.84.146.0/24 198394 -80.84.147.0/24 198504 -80.84.148.0/24 21057 -80.84.149.0/24 198381 -80.84.150.0/23 21057 -80.84.152.0/22 21057 -80.84.156.0/23 21057 -80.84.158.0/24 21057 -80.84.159.0/24 51007 -80.84.160.0/23 50889 -80.84.162.0/24 50889 -80.84.176.0/21 15738 -80.84.184.0/22 15738 -80.84.188.0/23 15738 -80.84.190.0/24 15738 -80.84.191.0/24 56605 -80.84.192.0/19 35205 -80.84.224.0/19 21155 -80.85.0.0/20 20686 -80.85.16.0/20 41697 -80.85.32.0/20 21073 -80.85.48.0/21 202243 -80.85.56.0/21 42205 -80.85.64.0/20 15830 -80.85.82.0/23 15830 -80.85.84.0/22 63949 -80.85.88.0/21 15830 -80.85.96.0/20 33874 -80.85.112.0/20 1257 -80.85.128.0/20 13136 -80.85.144.0/24 12772 -80.85.152.0/23 44493 -80.85.154.0/24 44493 -80.85.155.0/24 49335 -80.85.156.0/22 44493 -80.85.160.0/24 30720 -80.85.176.0/20 16043 -80.85.192.0/20 16378 -80.85.208.0/20 50910 -80.85.224.0/20 21404 -80.85.240.0/20 41842 -80.86.0.0/24 24993 -80.86.1.0/24 13246 -80.86.2.0/23 24993 -80.86.4.0/22 24993 -80.86.8.0/21 24993 -80.86.16.0/20 46261 -80.86.32.0/20 21077 -80.86.48.0/20 56472 -80.86.64.0/20 28954 -80.86.80.0/24 61157 -80.86.81.0/24 8972 -80.86.82.0/23 8972 -80.86.84.0/22 8972 -80.86.88.0/23 61157 -80.86.90.0/23 8972 -80.86.92.0/22 8972 -80.86.96.0/20 12310 -80.86.112.0/21 12310 -80.86.120.0/22 12310 -80.86.124.0/24 12310 -80.86.125.0/24 20879 -80.86.126.0/23 12310 -80.86.128.0/20 21119 -80.86.144.0/20 29177 -80.86.160.0/20 13237 -80.86.176.0/22 13237 -80.86.180.0/24 198710 -80.86.181.0/24 24640 -80.86.182.0/23 24640 -80.86.184.0/24 60380 -80.86.185.0/24 13237 -80.86.186.0/23 13237 -80.86.188.0/23 60380 -80.86.190.0/23 13237 -80.86.192.0/20 1836 -80.86.208.0/20 8896 -80.86.224.0/21 21104 -80.86.232.0/22 21104 -80.86.236.0/23 21104 -80.86.238.0/24 199620 -80.86.239.0/24 21104 -80.86.240.0/20 42005 -80.87.0.0/20 6859 -80.87.16.0/20 8530 -80.87.32.0/20 13110 -80.87.48.0/20 25146 -80.87.64.0/19 29614 -80.87.112.0/20 35062 -80.87.128.0/20 21260 -80.87.144.0/20 62429 -80.87.160.0/20 8469 -80.87.176.0/20 35214 -80.87.192.0/21 29182 -80.87.200.0/22 29182 -80.87.204.0/23 49542 -80.87.206.0/24 34665 -80.87.207.0/24 49542 -80.87.208.0/20 35328 -80.87.224.0/20 20994 -80.87.240.0/20 16145 -80.88.0.0/23 328156 -80.88.2.0/24 328233 -80.88.3.0/24 328194 -80.88.4.0/24 328132 -80.88.6.0/24 11259 -80.88.7.0/24 32831 -80.88.8.0/24 328175 -80.88.9.0/24 328211 -80.88.10.0/24 328240 -80.88.11.0/24 328174 -80.88.12.0/22 33779 -80.88.16.0/20 44365 -80.88.32.0/21 21139 -80.88.40.0/22 21139 -80.88.48.0/20 12389 -80.88.64.0/20 20902 -80.88.80.0/20 31034 -80.88.96.0/19 25176 -80.88.152.0/21 48564 -80.88.160.0/20 31263 -80.88.176.0/20 719 -80.88.192.0/19 24916 -80.88.224.0/23 3257 -80.88.240.0/20 35313 -80.89.0.0/20 21105 -80.89.16.0/20 21060 -80.89.32.0/19 16175 -80.89.64.0/21 15434 -80.89.72.0/21 24921 -80.89.80.0/20 5413 -80.89.96.0/20 12793 -80.89.112.0/21 34913 -80.89.120.0/23 34913 -80.89.122.0/24 16080 -80.89.123.0/24 34913 -80.89.124.0/22 34913 -80.89.128.0/21 21127 -80.89.136.0/23 21127 -80.89.138.0/24 21127 -80.89.139.0/24 15774 -80.89.140.0/22 21127 -80.89.144.0/21 21127 -80.89.152.0/22 21127 -80.89.156.0/24 21127 -80.89.157.0/24 20485 -80.89.158.0/23 21127 -80.89.160.0/20 2119 -80.89.176.0/21 35074 -80.89.184.0/22 35074 -80.89.188.0/22 9051 -80.89.192.0/20 34757 -80.89.208.0/20 8758 -80.89.224.0/21 24875 -80.89.232.0/22 24875 -80.89.236.0/23 21159 -80.89.238.0/23 24875 -80.90.0.0/20 21156 -80.90.16.0/21 47485 -80.90.24.0/22 47485 -80.90.28.0/23 21156 -80.90.30.0/23 16062 -80.90.32.0/19 9008 -80.90.64.0/20 21266 -80.90.80.0/20 35444 -80.90.101.0/24 10991 -80.90.102.0/24 10991 -80.90.112.0/20 12714 -80.90.128.0/20 35214 -80.90.144.0/20 20886 -80.90.160.0/20 48832 -80.90.176.0/22 8915 -80.90.192.0/20 20738 -80.90.208.0/20 16294 -80.90.224.0/20 43103 -80.90.240.0/23 8331 -80.90.242.0/24 8331 -80.90.243.0/24 60944 -80.90.244.0/22 8331 -80.90.248.0/21 8331 -80.91.0.0/20 9158 -80.91.16.0/20 15493 -80.91.32.0/20 21171 -80.91.48.0/21 35130 -80.91.56.0/23 35130 -80.91.62.0/23 30848 -80.91.64.0/21 174 -80.91.72.0/23 174 -80.91.74.0/24 207923 -80.91.75.0/24 205827 -80.91.76.0/22 174 -80.91.80.0/22 174 -80.91.84.0/23 174 -80.91.86.0/24 203499 -80.91.87.0/24 174 -80.91.88.0/22 174 -80.91.92.0/24 174 -80.91.93.0/24 201746 -80.91.94.0/23 174 -80.91.96.0/20 21173 -80.91.112.0/21 35047 -80.91.120.0/22 35047 -80.91.124.0/24 21183 -80.91.125.0/24 35047 -80.91.126.0/23 35047 -80.91.128.0/20 3292 -80.91.144.0/20 50857 -80.91.160.0/22 21219 -80.91.164.0/23 21219 -80.91.166.0/23 3326 -80.91.168.0/23 3326 -80.91.170.0/24 21219 -80.91.171.0/24 3326 -80.91.172.0/22 21219 -80.91.176.0/22 21219 -80.91.180.0/23 21219 -80.91.182.0/23 3326 -80.91.184.0/21 21219 -80.91.192.0/21 21226 -80.91.200.0/22 21226 -80.91.204.0/24 21226 -80.91.205.0/24 204919 -80.91.206.0/23 21226 -80.91.208.0/20 12653 -80.91.224.0/20 21201 -80.91.240.0/20 1299 -80.92.0.0/19 21191 -80.92.32.0/22 21231 -80.92.36.0/23 21231 -80.92.39.0/24 21231 -80.92.48.0/21 35207 -80.92.56.0/23 35207 -80.92.60.0/22 35207 -80.92.64.0/19 24611 -80.92.96.0/20 15582 -80.92.112.0/20 34347 -80.92.128.0/20 35542 -80.92.144.0/20 5500 -80.92.160.0/22 21184 -80.92.164.0/22 60921 -80.92.168.0/21 21184 -80.92.176.0/20 41877 -80.92.208.0/20 29190 -80.92.224.0/22 1820 -80.92.228.0/24 199440 -80.92.229.0/24 1820 -80.92.230.0/24 21390 -80.92.231.0/24 24685 -80.92.232.0/24 1820 -80.92.233.0/24 41540 -80.92.234.0/24 41540 -80.92.235.0/24 1820 -80.92.236.0/24 1820 -80.92.237.0/24 206112 -80.92.238.0/24 1820 -80.92.239.0/24 44390 -80.92.240.0/20 197029 -80.93.0.0/20 1239 -80.93.16.0/20 31122 -80.93.32.0/20 28919 -80.93.48.0/21 35295 -80.93.56.0/21 35569 -80.93.64.0/20 8660 -80.93.80.0/20 21409 -80.93.96.0/20 15638 -80.93.112.0/20 35320 -80.93.128.0/20 21056 -80.93.144.0/20 35356 -80.93.160.0/21 45014 -80.93.168.0/23 45014 -80.93.170.0/24 33854 -80.93.171.0/24 45014 -80.93.172.0/23 45014 -80.93.176.0/23 50340 -80.93.178.0/24 49505 -80.93.179.0/24 50340 -80.93.180.0/24 49505 -80.93.181.0/24 50340 -80.93.182.0/24 50340 -80.93.183.0/24 49505 -80.93.184.0/22 49505 -80.93.188.0/24 50340 -80.93.189.0/24 49505 -80.93.190.0/23 50340 -80.93.192.0/20 5089 -80.93.208.0/20 20649 -80.93.224.0/19 31042 -80.94.0.0/20 39263 -80.94.16.0/23 13119 -80.94.18.0/24 13119 -80.94.19.0/24 199296 -80.94.20.0/23 13119 -80.94.22.0/24 13119 -80.94.23.0/24 199296 -80.94.24.0/24 199296 -80.94.25.0/24 13119 -80.94.26.0/24 13119 -80.94.27.0/24 204444 -80.94.28.0/23 204444 -80.94.30.0/23 13119 -80.94.32.0/20 21218 -80.94.48.0/20 38949 -80.94.64.0/20 3257 -80.94.80.0/23 49443 -80.94.82.0/24 200187 -80.94.85.0/24 60265 -80.94.88.0/22 3257 -80.94.92.0/24 61072 -80.94.93.0/24 35478 -80.94.94.0/24 9381 -80.94.95.0/24 35478 -80.94.96.0/20 6758 -80.94.112.0/20 28716 -80.94.128.0/20 15451 -80.94.144.0/20 3303 -80.94.160.0/20 21274 -80.94.176.0/22 12601 -80.94.180.0/23 201676 -80.94.182.0/23 12601 -80.94.184.0/23 12601 -80.94.186.0/23 201676 -80.94.188.0/23 12601 -80.94.192.0/20 199335 -80.94.208.0/20 2119 -80.94.224.0/20 21305 -80.94.240.0/20 1547 -80.95.0.0/21 327754 -80.95.8.0/21 327781 -80.95.19.0/24 41313 -80.95.20.0/24 209172 -80.95.21.0/24 8808 -80.95.22.0/24 41313 -80.95.23.0/24 204448 -80.95.24.0/24 43044 -80.95.25.0/24 16154 -80.95.26.0/23 16154 -80.95.28.0/22 16154 -80.95.32.0/20 12389 -80.95.48.0/20 35551 -80.95.64.0/19 20845 -80.95.96.0/19 16019 -80.95.128.0/20 21348 -80.95.144.0/20 34309 -80.95.160.0/20 24586 -80.95.176.0/20 31641 -80.95.192.0/20 51561 -80.95.208.0/20 35457 -80.95.224.0/20 21283 -80.95.240.0/20 12767 -80.96.1.0/24 6830 -80.96.3.0/24 31313 -80.96.10.0/24 6830 -80.96.11.0/24 2614 -80.96.12.0/24 21220 -80.96.14.0/24 6830 -80.96.16.0/24 6830 -80.96.17.0/24 6663 -80.96.21.0/24 6693 -80.96.22.0/24 6830 -80.96.24.0/24 31362 -80.96.26.0/24 25536 -80.96.28.0/24 8751 -80.96.30.0/23 6830 -80.96.32.0/23 8708 -80.96.34.0/24 8708 -80.96.35.0/24 9050 -80.96.36.0/22 8708 -80.96.40.0/21 8708 -80.96.48.0/20 8708 -80.96.64.0/21 8708 -80.96.72.0/23 8708 -80.96.74.0/24 8708 -80.96.75.0/24 59854 -80.96.76.0/22 8708 -80.96.80.0/20 8708 -80.96.98.0/24 15882 -80.96.102.0/24 34560 -80.96.103.0/24 15882 -80.96.104.0/24 6830 -80.96.105.0/24 15882 -80.96.108.0/24 62445 -80.96.109.0/24 2614 -80.96.110.0/24 9050 -80.96.111.0/24 49052 -80.96.114.0/24 15856 -80.96.115.0/24 21462 -80.96.120.0/22 2614 -80.96.125.0/24 34283 -80.96.127.0/24 9050 -80.96.129.0/24 6830 -80.96.131.0/24 6910 -80.96.133.0/24 6910 -80.96.134.0/23 6830 -80.96.136.0/24 49052 -80.96.141.0/24 15407 -80.96.148.0/24 25116 -80.96.149.0/24 12310 -80.96.150.0/23 6830 -80.96.153.0/24 28727 -80.96.156.0/22 21294 -80.96.161.0/24 205861 -80.96.163.0/24 58074 -80.96.164.0/23 6830 -80.96.166.0/24 5483 -80.96.170.0/24 2614 -80.96.175.0/24 28727 -80.96.177.0/24 6830 -80.96.181.0/24 39737 -80.96.182.0/24 29171 -80.96.183.0/24 21462 -80.96.184.0/24 6830 -80.96.185.0/24 21157 -80.96.186.0/24 31313 -80.96.190.0/24 6663 -80.96.191.0/24 16120 -80.96.193.0/24 21462 -80.96.194.0/23 21462 -80.96.196.0/24 31313 -80.96.201.0/24 6910 -80.96.202.0/23 6910 -80.96.204.0/24 31362 -80.96.205.0/24 8708 -80.96.206.0/24 6830 -80.96.207.0/24 24914 -80.96.209.0/24 24914 -80.96.210.0/24 12310 -80.96.216.0/24 41219 -80.96.217.0/24 25103 -80.96.218.0/24 21462 -80.96.219.0/24 8708 -80.96.220.0/24 6663 -80.96.221.0/24 6830 -80.96.223.0/24 20820 -80.96.224.0/23 47427 -80.96.226.0/24 31313 -80.96.228.0/24 34714 -80.96.229.0/24 6910 -80.96.230.0/23 12446 -80.96.234.0/24 25103 -80.96.238.0/24 8751 -80.96.239.0/24 24704 -80.96.244.0/24 9050 -80.96.245.0/24 59398 -80.96.246.0/24 9050 -80.96.247.0/24 25103 -80.96.248.0/24 31313 -80.96.251.0/24 9050 -80.96.255.0/24 20530 -80.97.0.0/20 21294 -80.97.16.0/21 15471 -80.97.24.0/23 15471 -80.97.26.0/24 44277 -80.97.27.0/24 15471 -80.97.28.0/22 15471 -80.97.32.0/20 12302 -80.97.48.0/24 5588 -80.97.51.0/24 34416 -80.97.53.0/24 29628 -80.97.54.0/24 56430 -80.97.55.0/24 51461 -80.97.56.0/22 39279 -80.97.61.0/24 20616 -80.97.64.0/19 6830 -80.97.96.0/20 15471 -80.97.112.0/20 12302 -80.97.128.0/19 8708 -80.97.160.0/20 8708 -80.97.176.0/23 21220 -80.97.192.0/19 9050 -80.97.224.0/20 9050 -80.97.240.0/21 9050 -80.97.248.0/23 24745 -80.97.250.0/23 9050 -80.97.252.0/22 9050 -80.98.0.0/15 6830 -80.100.0.0/15 3265 -80.102.0.0/15 12479 -80.104.0.0/15 3269 -80.106.0.0/15 6799 -80.108.0.0/14 6830 -80.112.0.0/16 33915 -80.113.0.0/16 6830 -80.114.0.0/16 33915 -80.115.0.0/17 33915 -80.115.128.0/18 33915 -80.115.192.0/19 12958 -80.115.224.0/19 33915 -80.116.0.0/15 3269 -80.118.0.0/15 15557 -80.120.0.0/21 8447 -80.120.8.0/22 8447 -80.120.12.0/24 207868 -80.120.13.0/24 202453 -80.120.14.0/23 8447 -80.120.16.0/23 8447 -80.120.18.0/24 51187 -80.120.19.0/24 8447 -80.120.20.0/22 8447 -80.120.24.0/21 8447 -80.120.32.0/20 8447 -80.120.48.0/21 8447 -80.120.56.0/23 8447 -80.120.58.0/24 34905 -80.120.59.0/24 8447 -80.120.60.0/22 8447 -80.120.64.0/18 8447 -80.120.128.0/22 8447 -80.120.132.0/24 201728 -80.120.133.0/24 8447 -80.120.134.0/23 8447 -80.120.136.0/21 8447 -80.120.144.0/24 8447 -80.120.145.0/24 202856 -80.120.146.0/23 8447 -80.120.148.0/22 8447 -80.120.152.0/21 8447 -80.120.160.0/19 8447 -80.120.192.0/18 8447 -80.121.0.0/17 8447 -80.121.128.0/20 8447 -80.121.144.0/22 8447 -80.121.148.0/23 8447 -80.121.150.0/24 29198 -80.121.151.0/24 8447 -80.121.152.0/21 8447 -80.121.160.0/19 8447 -80.121.192.0/21 8447 -80.121.200.0/23 8447 -80.121.202.0/24 61022 -80.121.203.0/24 8447 -80.121.204.0/24 8447 -80.121.205.0/24 39285 -80.121.206.0/23 8447 -80.121.208.0/20 8447 -80.121.224.0/19 8447 -80.122.0.0/16 8447 -80.123.0.0/17 8447 -80.123.128.0/20 8447 -80.123.144.0/21 8447 -80.123.152.0/24 8447 -80.123.153.0/24 49135 -80.123.154.0/23 8447 -80.123.156.0/22 8447 -80.123.160.0/19 8447 -80.123.192.0/18 8447 -80.124.0.0/15 15557 -80.126.0.0/15 3265 -80.128.0.0/12 3320 -80.144.0.0/13 3320 -80.152.0.0/14 3320 -80.156.0.0/15 3320 -80.158.0.0/21 6878 -80.158.8.0/21 34086 -80.158.16.0/20 6878 -80.158.32.0/19 6878 -80.158.64.0/18 34086 -80.158.128.0/17 3320 -80.159.0.0/17 3320 -80.159.128.0/18 3320 -80.159.192.0/19 3320 -80.159.224.0/19 2792 -80.160.0.0/13 3292 -80.168.0.0/16 8426 -80.169.0.0/20 8220 -80.169.16.0/23 8220 -80.169.18.0/24 8220 -80.169.19.0/24 394265 -80.169.20.0/22 8220 -80.169.24.0/21 8220 -80.169.32.0/19 8220 -80.169.64.0/19 8220 -80.169.96.0/20 8220 -80.169.112.0/21 8220 -80.169.120.0/23 8220 -80.169.122.0/24 31743 -80.169.123.0/24 8220 -80.169.124.0/22 8220 -80.169.128.0/17 8220 -80.170.0.0/16 1257 -80.171.0.0/16 6805 -80.172.0.0/16 8426 -80.173.0.0/17 6739 -80.173.128.0/21 6739 -80.173.136.0/24 6739 -80.173.137.0/24 12357 -80.173.138.0/23 6739 -80.173.140.0/24 6739 -80.173.141.0/24 12357 -80.173.142.0/23 12357 -80.173.144.0/20 12357 -80.173.160.0/21 6739 -80.173.168.0/21 12357 -80.173.176.0/20 12357 -80.173.192.0/20 6739 -80.173.208.0/20 12357 -80.173.224.0/19 12357 -80.174.0.0/22 6739 -80.174.4.0/24 6739 -80.174.5.0/24 12357 -80.174.6.0/24 12357 -80.174.7.0/24 6739 -80.174.8.0/21 6739 -80.174.16.0/21 6739 -80.174.24.0/22 6739 -80.174.28.0/23 6739 -80.174.30.0/24 6739 -80.174.31.0/24 12357 -80.174.32.0/21 6739 -80.174.40.0/24 12357 -80.174.41.0/24 6739 -80.174.42.0/23 6739 -80.174.44.0/22 6739 -80.174.48.0/20 6739 -80.174.64.0/20 6739 -80.174.80.0/24 6739 -80.174.81.0/24 12357 -80.174.82.0/23 6739 -80.174.84.0/24 12357 -80.174.85.0/24 6739 -80.174.86.0/23 6739 -80.174.88.0/21 6739 -80.174.96.0/22 6739 -80.174.100.0/23 6739 -80.174.102.0/24 6739 -80.174.103.0/24 12357 -80.174.104.0/24 12357 -80.174.105.0/24 6739 -80.174.106.0/24 6739 -80.174.107.0/24 12357 -80.174.108.0/24 12357 -80.174.109.0/24 6739 -80.174.110.0/23 6739 -80.174.112.0/24 6739 -80.174.113.0/24 12357 -80.174.114.0/24 6739 -80.174.115.0/24 12357 -80.174.116.0/23 6739 -80.174.118.0/23 12357 -80.174.120.0/21 6739 -80.174.128.0/22 6739 -80.174.132.0/23 6739 -80.174.134.0/24 6739 -80.174.135.0/24 12357 -80.174.136.0/22 6739 -80.174.140.0/24 6739 -80.174.141.0/24 12357 -80.174.142.0/23 6739 -80.174.144.0/24 6739 -80.174.145.0/24 12357 -80.174.146.0/23 6739 -80.174.148.0/24 12357 -80.174.149.0/24 6739 -80.174.150.0/24 12357 -80.174.151.0/24 6739 -80.174.152.0/21 6739 -80.174.160.0/24 6739 -80.174.161.0/24 12357 -80.174.162.0/23 6739 -80.174.164.0/22 6739 -80.174.168.0/21 6739 -80.174.176.0/21 6739 -80.174.184.0/23 6739 -80.174.186.0/24 6739 -80.174.187.0/24 12357 -80.174.188.0/22 6739 -80.174.192.0/24 6739 -80.174.193.0/24 12357 -80.174.194.0/24 12357 -80.174.195.0/24 6739 -80.174.196.0/22 12357 -80.174.200.0/24 12357 -80.174.201.0/24 6739 -80.174.202.0/24 12357 -80.174.203.0/24 6739 -80.174.204.0/24 6739 -80.174.205.0/24 12357 -80.174.206.0/24 6739 -80.174.207.0/24 12357 -80.174.208.0/23 12357 -80.174.210.0/24 12357 -80.174.211.0/24 6739 -80.174.212.0/24 12357 -80.174.213.0/24 6739 -80.174.214.0/23 12357 -80.174.216.0/22 12357 -80.174.220.0/23 12357 -80.174.222.0/23 6739 -80.174.224.0/20 6739 -80.174.240.0/23 6739 -80.174.242.0/24 6739 -80.174.243.0/24 12357 -80.174.244.0/24 6739 -80.174.245.0/24 12357 -80.174.246.0/23 6739 -80.174.248.0/21 6739 -80.175.0.0/16 8607 -80.176.0.0/15 2529 -80.178.0.0/16 9116 -80.179.0.0/17 9116 -80.179.128.0/20 9116 -80.179.144.0/21 9116 -80.179.152.0/22 9116 -80.179.156.0/23 12400 -80.179.158.0/23 9116 -80.179.160.0/19 9116 -80.179.192.0/18 9116 -80.180.0.0/19 3269 -80.180.32.0/20 3269 -80.180.48.0/22 3269 -80.180.52.0/24 3269 -80.180.53.0/24 6503 -80.180.54.0/23 3269 -80.180.56.0/21 3269 -80.180.64.0/18 3269 -80.180.128.0/17 3269 -80.181.0.0/16 3269 -80.182.0.0/15 3269 -80.184.0.0/20 6412 -80.184.16.0/21 6412 -80.184.24.0/22 42781 -80.184.28.0/22 6412 -80.184.32.0/21 6412 -80.184.40.0/22 6412 -80.184.44.0/22 42781 -80.184.48.0/20 6412 -80.184.64.0/20 6412 -80.184.80.0/21 6412 -80.184.88.0/22 42781 -80.184.92.0/22 6412 -80.184.96.0/20 6412 -80.184.112.0/21 6412 -80.184.120.0/22 42781 -80.184.124.0/22 6412 -80.184.128.0/23 6412 -80.184.130.0/24 42781 -80.184.131.0/24 6412 -80.184.132.0/22 6412 -80.184.136.0/21 6412 -80.184.144.0/20 6412 -80.184.160.0/23 42781 -80.184.162.0/24 201378 -80.184.163.0/24 6412 -80.184.164.0/22 6412 -80.184.168.0/21 6412 -80.184.176.0/20 6412 -80.184.192.0/22 6412 -80.184.196.0/23 6412 -80.184.198.0/24 6412 -80.184.199.0/24 201378 -80.184.200.0/21 6412 -80.184.208.0/20 6412 -80.184.224.0/19 6412 -80.185.0.0/16 41272 -80.186.0.0/16 719 -80.187.0.0/16 3320 -80.188.0.0/16 5610 -80.189.0.0/16 6871 -80.190.0.0/18 15598 -80.190.64.0/19 15598 -80.190.96.0/20 15598 -80.190.112.0/23 15598 -80.190.114.0/24 15598 -80.190.115.0/24 60845 -80.190.116.0/22 15598 -80.190.120.0/23 15598 -80.190.122.0/24 60845 -80.190.123.0/24 15598 -80.190.124.0/22 15598 -80.190.128.0/17 15598 -80.191.0.0/20 12880 -80.191.16.0/23 12880 -80.191.18.0/24 12880 -80.191.19.0/24 58224 -80.191.20.0/24 58224 -80.191.21.0/24 12880 -80.191.22.0/23 12880 -80.191.24.0/21 12880 -80.191.32.0/20 12880 -80.191.48.0/21 12880 -80.191.56.0/24 60148 -80.191.57.0/24 12880 -80.191.58.0/23 12880 -80.191.60.0/22 12880 -80.191.64.0/20 12880 -80.191.80.0/21 12880 -80.191.88.0/21 58224 -80.191.96.0/22 58224 -80.191.100.0/22 12880 -80.191.104.0/21 58224 -80.191.112.0/20 58224 -80.191.128.0/19 58224 -80.191.160.0/21 58224 -80.191.168.0/22 58224 -80.191.172.0/23 61209 -80.191.174.0/23 58224 -80.191.176.0/20 58224 -80.191.192.0/18 58224 -80.192.0.0/14 5089 -80.196.0.0/14 3292 -80.200.0.0/15 5432 -80.202.0.0/15 15659 -80.204.0.0/14 20959 -80.208.0.0/17 44869 -80.208.128.0/18 15600 -80.208.192.0/20 206815 -80.208.208.0/21 198570 -80.208.216.0/22 41107 -80.208.220.0/24 41107 -80.208.221.0/24 208536 -80.208.222.0/23 41107 -80.208.224.0/21 62282 -80.208.232.0/21 9022 -80.208.248.0/22 204923 -80.208.252.0/23 397964 -80.208.254.0/24 209820 -80.208.255.0/24 206825 -80.209.128.0/19 51561 -80.209.160.0/20 51561 -80.209.176.0/21 51561 -80.209.184.0/22 51561 -80.209.188.0/22 13213 -80.209.192.0/19 12611 -80.209.224.0/20 62282 -80.209.240.0/22 395839 -80.209.244.0/22 200062 -80.209.248.0/22 47544 -80.209.252.0/23 204196 -80.209.254.0/24 209820 -80.209.255.0/24 201153 -80.210.0.0/20 58224 -80.210.17.0/24 12880 -80.210.18.0/23 12880 -80.210.20.0/22 12880 -80.210.24.0/21 12880 -80.210.32.0/19 12880 -80.210.64.0/20 203953 -80.210.80.0/20 200611 -80.210.96.0/19 30848 -80.210.128.0/17 12880 -80.211.0.0/17 31034 -80.211.128.0/18 31034 -80.211.192.0/19 24806 -80.211.224.0/20 31034 -80.211.240.0/20 205727 -80.212.0.0/15 2119 -80.214.0.0/17 5410 -80.214.128.0/18 5410 -80.214.192.0/19 5410 -80.214.248.0/21 5410 -80.215.0.0/16 5410 -80.216.0.0/17 39651 -80.216.128.0/20 39651 -80.216.144.0/21 39651 -80.216.152.0/24 39651 -80.216.153.0/24 2119 -80.216.154.0/23 39651 -80.216.156.0/22 39651 -80.216.160.0/19 39651 -80.216.192.0/19 39651 -80.216.224.0/21 39651 -80.216.232.0/22 39651 -80.216.236.0/24 2119 -80.216.237.0/24 39651 -80.216.238.0/23 39651 -80.216.240.0/20 39651 -80.217.0.0/16 39651 -80.218.0.0/15 6830 -80.220.0.0/14 1759 -80.224.0.0/18 6739 -80.224.64.0/21 6739 -80.224.72.0/24 6739 -80.224.73.0/24 12357 -80.224.74.0/24 6739 -80.224.75.0/24 12357 -80.224.76.0/22 12357 -80.224.80.0/22 12357 -80.224.84.0/23 12357 -80.224.86.0/24 6739 -80.224.87.0/24 12357 -80.224.88.0/21 12357 -80.224.96.0/22 6739 -80.224.100.0/24 6739 -80.224.101.0/24 12357 -80.224.102.0/23 12357 -80.224.104.0/21 12357 -80.224.112.0/21 12357 -80.224.120.0/24 12357 -80.224.121.0/24 6739 -80.224.122.0/23 12357 -80.224.124.0/24 6739 -80.224.125.0/24 12357 -80.224.126.0/24 12357 -80.224.127.0/24 6739 -80.224.128.0/22 6739 -80.224.132.0/23 12357 -80.224.134.0/24 6739 -80.224.135.0/24 12357 -80.224.136.0/23 12357 -80.224.138.0/23 6739 -80.224.140.0/23 6739 -80.224.142.0/24 6739 -80.224.143.0/24 12357 -80.224.144.0/24 6739 -80.224.145.0/24 12357 -80.224.146.0/23 12357 -80.224.148.0/23 12357 -80.224.150.0/23 6739 -80.224.152.0/24 6739 -80.224.153.0/24 12357 -80.224.154.0/23 12357 -80.224.156.0/23 12357 -80.224.158.0/23 6739 -80.224.160.0/23 6739 -80.224.162.0/24 6739 -80.224.163.0/24 12357 -80.224.164.0/23 12357 -80.224.166.0/24 6739 -80.224.167.0/24 12357 -80.224.168.0/21 12357 -80.224.176.0/23 6739 -80.224.178.0/24 6739 -80.224.179.0/24 12357 -80.224.180.0/22 12357 -80.224.184.0/22 12357 -80.224.188.0/23 12357 -80.224.190.0/24 12357 -80.224.191.0/24 6739 -80.224.192.0/24 6739 -80.224.193.0/24 12357 -80.224.194.0/23 12357 -80.224.196.0/24 12357 -80.224.197.0/24 6739 -80.224.198.0/23 6739 -80.224.200.0/24 6739 -80.224.201.0/24 12357 -80.224.202.0/23 12357 -80.224.204.0/24 12357 -80.224.205.0/24 6739 -80.224.206.0/23 6739 -80.224.208.0/23 12357 -80.224.210.0/24 12357 -80.224.211.0/24 6739 -80.224.212.0/24 12357 -80.224.213.0/24 6739 -80.224.214.0/23 6739 -80.224.216.0/24 6739 -80.224.217.0/24 12357 -80.224.218.0/23 12357 -80.224.220.0/23 6739 -80.224.222.0/24 12357 -80.224.223.0/24 6739 -80.224.224.0/24 6739 -80.224.225.0/24 12357 -80.224.226.0/23 12357 -80.224.228.0/24 6739 -80.224.229.0/24 12357 -80.224.230.0/23 6739 -80.224.232.0/23 12357 -80.224.234.0/24 12357 -80.224.235.0/24 6739 -80.224.236.0/24 6739 -80.224.237.0/24 12357 -80.224.238.0/23 6739 -80.224.240.0/22 6739 -80.224.244.0/24 6739 -80.224.245.0/24 12357 -80.224.246.0/23 6739 -80.224.248.0/21 6739 -80.225.0.0/16 9105 -80.226.0.0/16 3209 -80.227.0.0/16 15802 -80.228.0.0/23 9145 -80.228.2.0/24 49086 -80.228.3.0/24 9145 -80.228.4.0/22 9145 -80.228.8.0/21 9145 -80.228.16.0/20 9145 -80.228.32.0/19 9145 -80.228.64.0/18 9145 -80.228.128.0/17 9145 -80.229.0.0/16 6871 -80.230.0.0/16 9116 -80.231.0.0/21 6453 -80.231.8.0/24 6453 -80.231.9.0/24 12670 -80.231.10.0/23 6453 -80.231.12.0/22 6453 -80.231.16.0/23 40009 -80.231.18.0/23 6453 -80.231.20.0/22 6453 -80.231.24.0/24 6453 -80.231.25.0/24 33517 -80.231.26.0/23 6453 -80.231.28.0/22 6453 -80.231.32.0/20 6453 -80.231.48.0/22 6453 -80.231.52.0/24 6453 -80.231.53.0/24 6774 -80.231.54.0/23 6453 -80.231.56.0/21 6453 -80.231.64.0/18 6453 -80.231.128.0/19 6453 -80.231.160.0/23 6453 -80.231.162.0/23 40009 -80.231.164.0/22 6453 -80.231.168.0/21 6453 -80.231.176.0/20 6453 -80.231.192.0/20 6453 -80.231.208.0/22 6453 -80.231.212.0/24 6453 -80.231.213.0/24 59605 -80.231.214.0/23 6453 -80.231.216.0/23 6453 -80.231.218.0/24 6453 -80.231.219.0/24 33517 -80.231.220.0/22 6453 -80.231.224.0/24 6453 -80.231.225.0/24 27173 -80.231.226.0/23 6453 -80.231.228.0/22 6453 -80.231.232.0/21 6453 -80.231.240.0/20 6453 -80.232.0.0/17 3292 -80.232.128.0/19 12578 -80.232.160.0/23 12578 -80.232.162.0/24 12578 -80.232.163.0/24 47570 -80.232.164.0/22 12578 -80.232.168.0/21 12578 -80.232.176.0/20 12578 -80.232.192.0/20 12578 -80.232.208.0/22 12578 -80.232.212.0/23 12578 -80.232.214.0/24 12578 -80.232.215.0/24 62436 -80.232.216.0/21 12578 -80.232.224.0/19 12578 -80.233.8.0/21 13280 -80.233.16.0/20 13280 -80.233.32.0/19 13280 -80.233.72.0/21 13280 -80.233.80.0/20 13280 -80.233.96.0/20 13280 -80.233.112.0/21 13280 -80.233.120.0/23 34218 -80.233.122.0/23 13280 -80.233.124.0/24 34218 -80.233.125.0/24 13280 -80.233.126.0/23 13280 -80.233.128.0/23 5518 -80.233.130.0/24 57318 -80.233.131.0/24 5518 -80.233.132.0/23 5518 -80.233.134.0/24 200709 -80.233.135.0/24 5518 -80.233.136.0/23 5518 -80.233.138.0/24 25107 -80.233.139.0/24 5518 -80.233.140.0/22 5518 -80.233.144.0/21 5518 -80.233.152.0/24 5518 -80.233.153.0/24 199300 -80.233.154.0/23 5518 -80.233.156.0/22 35108 -80.233.160.0/23 47499 -80.233.162.0/23 5518 -80.233.164.0/24 5518 -80.233.165.0/24 44441 -80.233.166.0/24 5518 -80.233.167.0/24 35809 -80.233.168.0/21 5518 -80.233.176.0/21 5518 -80.233.184.0/23 5518 -80.233.186.0/24 5518 -80.233.187.0/24 199577 -80.233.188.0/22 47499 -80.233.192.0/19 5518 -80.233.224.0/22 5518 -80.233.228.0/22 47499 -80.233.232.0/21 5518 -80.233.240.0/22 197616 -80.233.244.0/24 5518 -80.233.245.0/24 35182 -80.233.246.0/23 5518 -80.233.248.0/24 44441 -80.233.249.0/24 43956 -80.233.250.0/24 35182 -80.233.251.0/24 35407 -80.233.252.0/23 47499 -80.233.254.0/23 5518 -80.234.0.0/17 12389 -80.234.128.0/17 5413 -80.235.0.0/17 3249 -80.235.128.0/17 5089 -80.236.0.0/17 21502 -80.236.128.0/17 5432 -80.237.0.0/17 20485 -80.237.128.0/23 20773 -80.237.130.0/24 20773 -80.237.131.0/24 61157 -80.237.132.0/24 35329 -80.237.133.0/24 20773 -80.237.134.0/24 61157 -80.237.135.0/24 20773 -80.237.136.0/24 20773 -80.237.137.0/24 35329 -80.237.138.0/24 35329 -80.237.140.0/23 61157 -80.237.142.0/24 20773 -80.237.152.0/21 61157 -80.237.160.0/20 8972 -80.237.176.0/20 61157 -80.237.192.0/23 61157 -80.237.194.0/23 20773 -80.237.196.0/22 61157 -80.237.200.0/21 61157 -80.237.208.0/22 61157 -80.237.212.0/24 20773 -80.237.213.0/24 61157 -80.237.214.0/23 20773 -80.237.216.0/21 61157 -80.237.224.0/20 61157 -80.237.240.0/21 61157 -80.237.248.0/23 20773 -80.237.250.0/24 61157 -80.237.251.0/24 20773 -80.237.252.0/22 20773 -80.238.0.0/19 39627 -80.238.64.0/19 43939 -80.238.96.0/19 41676 -80.238.128.0/17 15517 -80.239.0.0/17 3292 -80.239.128.0/17 1299 -80.240.0.0/20 21412 -80.240.16.0/20 20473 -80.240.32.0/22 28769 -80.240.36.0/23 28769 -80.240.44.0/24 28769 -80.240.47.0/24 28769 -80.240.48.0/20 20895 -80.240.64.0/22 41810 -80.240.68.0/24 41810 -80.240.72.0/22 41810 -80.240.76.0/23 41810 -80.240.78.0/24 41810 -80.240.80.0/20 8851 -80.240.96.0/22 21287 -80.240.100.0/24 199809 -80.240.101.0/24 21287 -80.240.102.0/24 199809 -80.240.103.0/24 209519 -80.240.104.0/23 21287 -80.240.106.0/24 205362 -80.240.107.0/24 60427 -80.240.108.0/23 209519 -80.240.110.0/24 199809 -80.240.111.0/24 209519 -80.240.112.0/20 21287 -80.240.128.0/20 14061 -80.240.144.0/20 41507 -80.240.192.0/20 30844 -80.240.208.0/20 15582 -80.240.224.0/20 8447 -80.240.240.0/20 35516 -80.241.0.0/20 21282 -80.241.16.0/20 6830 -80.241.32.0/20 21299 -80.241.48.0/21 34920 -80.241.56.0/21 199118 -80.241.64.0/20 19855 -80.241.80.0/20 2116 -80.241.96.0/20 30727 -80.241.112.0/20 35535 -80.241.128.0/21 16296 -80.241.136.0/22 202132 -80.241.140.0/22 12637 -80.241.144.0/20 35546 -80.241.160.0/20 8612 -80.241.184.0/24 20771 -80.241.192.0/20 12964 -80.241.208.0/20 51167 -80.241.224.0/20 20746 -80.241.240.0/22 16010 -80.241.244.0/22 20771 -80.241.248.0/22 16010 -80.241.252.0/24 20771 -80.241.253.0/24 16010 -80.241.254.0/23 16010 -80.242.0.0/20 50810 -80.242.16.0/21 41369 -80.242.24.0/22 41369 -80.242.28.0/23 41369 -80.242.30.0/24 41369 -80.242.31.0/24 12552 -80.242.32.0/21 44234 -80.242.40.0/24 31117 -80.242.42.0/24 204365 -80.242.43.0/24 58328 -80.242.44.0/22 196900 -80.242.48.0/20 35564 -80.242.64.0/19 43478 -80.242.96.0/20 39047 -80.242.112.0/20 21107 -80.242.128.0/19 61157 -80.242.160.0/19 8881 -80.242.192.0/20 61174 -80.242.208.0/20 35104 -80.242.224.0/19 33915 -80.243.0.0/20 24680 -80.243.16.0/20 21412 -80.243.32.0/19 21413 -80.243.64.0/21 21332 -80.243.72.0/24 21332 -80.243.74.0/23 21332 -80.243.76.0/24 21332 -80.243.80.0/21 2860 -80.243.88.0/23 2860 -80.243.90.0/23 42580 -80.243.92.0/22 2860 -80.243.96.0/20 29321 -80.243.117.0/24 203686 -80.243.118.0/23 197190 -80.243.120.0/24 51482 -80.243.121.0/24 198903 -80.243.123.0/24 201455 -80.243.124.0/24 31027 -80.243.125.0/24 42708 -80.243.126.0/24 199988 -80.243.127.0/24 198631 -80.243.128.0/22 207636 -80.243.132.0/23 207636 -80.243.134.0/24 48666 -80.243.135.0/24 207636 -80.243.136.0/23 200859 -80.243.138.0/23 205224 -80.243.140.0/22 207636 -80.243.144.0/20 49332 -80.243.160.0/20 21013 -80.243.176.0/20 20860 -80.243.192.0/20 21336 -80.243.208.0/20 35635 -80.243.224.0/22 24940 -80.243.228.0/24 9009 -80.243.230.0/23 9009 -80.243.232.0/22 199493 -80.243.236.0/22 42908 -80.243.240.0/20 20776 -80.244.5.0/24 47474 -80.244.6.0/24 47474 -80.244.12.0/24 47474 -80.244.16.0/20 35432 -80.244.32.0/22 31588 -80.244.36.0/23 31588 -80.244.38.0/24 208186 -80.244.39.0/24 31588 -80.244.48.0/20 29119 -80.244.64.0/19 45011 -80.244.96.0/20 21334 -80.244.112.0/20 47217 -80.244.128.0/19 21021 -80.244.160.0/21 21350 -80.244.168.0/22 21350 -80.244.172.0/23 21350 -80.244.174.0/23 44709 -80.244.176.0/20 61323 -80.244.192.0/20 34946 -80.244.208.0/20 24637 -80.244.224.0/21 21353 -80.244.232.0/22 21353 -80.244.236.0/23 21353 -80.244.238.0/24 21353 -80.244.239.0/24 12772 -80.244.240.0/20 31333 -80.245.0.0/20 21364 -80.245.16.0/20 44494 -80.245.32.0/20 174 -80.245.48.0/21 174 -80.245.56.0/24 174 -80.245.57.0/24 29608 -80.245.58.0/24 8218 -80.245.59.0/24 31555 -80.245.60.0/24 34173 -80.245.61.0/24 174 -80.245.62.0/23 174 -80.245.64.0/20 24884 -80.245.80.0/20 43870 -80.245.96.0/22 12301 -80.245.100.0/22 210322 -80.245.104.0/22 55933 -80.245.108.0/22 201341 -80.245.112.0/20 6789 -80.245.128.0/20 30742 -80.245.144.0/20 35704 -80.245.160.0/20 25472 -80.245.176.0/20 21021 -80.245.192.0/20 21360 -80.245.208.0/20 20521 -80.245.224.0/20 28847 -80.245.240.0/20 35738 -80.246.0.0/20 21391 -80.246.16.0/24 34434 -80.246.18.0/23 34434 -80.246.20.0/22 34434 -80.246.24.0/22 34434 -80.246.28.0/24 197706 -80.246.29.0/24 204287 -80.246.30.0/24 24768 -80.246.31.0/24 43513 -80.246.32.0/20 21197 -80.246.48.0/21 8972 -80.246.56.0/23 8972 -80.246.58.0/24 8972 -80.246.59.0/24 20773 -80.246.60.0/24 20773 -80.246.61.0/24 8972 -80.246.62.0/23 20773 -80.246.64.0/22 21378 -80.246.68.0/23 21378 -80.246.70.0/24 12389 -80.246.71.0/24 21378 -80.246.72.0/24 12389 -80.246.73.0/24 21378 -80.246.74.0/24 12389 -80.246.75.0/24 21378 -80.246.76.0/23 21378 -80.246.78.0/24 21378 -80.246.79.0/24 12389 -80.246.80.0/23 12389 -80.246.82.0/23 21378 -80.246.84.0/24 12389 -80.246.85.0/24 21378 -80.246.86.0/24 12389 -80.246.87.0/24 21378 -80.246.88.0/23 21378 -80.246.90.0/24 21378 -80.246.91.0/24 12389 -80.246.92.0/23 12389 -80.246.94.0/24 12389 -80.246.95.0/24 21378 -80.246.96.0/20 201973 -80.246.128.0/21 21450 -80.246.136.0/22 21450 -80.246.140.0/23 21450 -80.246.142.0/24 21450 -80.246.144.0/20 21348 -80.246.160.0/20 16228 -80.246.176.0/20 15879 -80.246.192.0/21 28878 -80.246.200.0/22 28878 -80.246.204.0/23 28878 -80.246.206.0/24 28878 -80.246.207.0/24 49685 -80.246.208.0/20 35755 -80.246.224.0/20 24747 -80.246.240.0/20 31484 -80.247.16.0/20 39875 -80.247.32.0/20 25292 -80.247.49.0/24 202161 -80.247.50.0/23 202161 -80.247.52.0/22 202161 -80.247.56.0/24 202161 -80.247.58.0/23 202161 -80.247.60.0/22 202161 -80.247.64.0/20 12850 -80.247.80.0/21 29129 -80.247.88.0/22 29129 -80.247.92.0/23 29129 -80.247.94.0/24 29129 -80.247.95.0/24 47264 -80.247.96.0/20 21365 -80.247.112.0/20 20576 -80.247.128.0/19 12684 -80.247.160.0/20 25542 -80.247.176.0/20 20632 -80.247.192.0/19 15703 -80.247.224.0/20 15826 -80.247.240.0/20 49826 -80.248.0.0/20 25163 -80.248.16.0/20 29689 -80.248.32.0/20 8608 -80.248.48.0/20 39612 -80.248.64.0/20 30982 -80.248.80.0/20 39153 -80.248.96.0/19 21366 -80.248.144.0/20 12380 -80.248.160.0/20 24713 -80.248.176.0/20 35826 -80.248.192.0/20 20634 -80.248.208.0/20 13193 -80.248.224.0/20 51747 -80.248.240.0/20 16302 -80.249.0.0/20 132586 -80.249.32.0/20 20836 -80.249.48.0/21 35832 -80.249.56.0/22 35832 -80.249.60.0/23 35832 -80.249.64.0/20 36947 -80.249.80.0/20 12406 -80.249.96.0/20 21396 -80.249.112.0/22 209638 -80.249.116.0/22 43571 -80.249.128.0/24 21414 -80.249.129.0/24 50340 -80.249.130.0/24 21414 -80.249.131.0/24 49505 -80.249.132.0/23 21414 -80.249.134.0/24 21414 -80.249.135.0/24 57918 -80.249.137.0/24 39824 -80.249.138.0/23 39824 -80.249.140.0/22 39824 -80.249.144.0/21 49505 -80.249.152.0/21 39824 -80.249.160.0/22 15555 -80.249.164.0/24 5483 -80.249.165.0/24 15555 -80.249.166.0/24 15555 -80.249.167.0/24 5483 -80.249.168.0/24 5483 -80.249.169.0/24 15555 -80.249.170.0/23 5483 -80.249.172.0/24 5483 -80.249.173.0/24 15555 -80.249.174.0/23 15555 -80.249.176.0/21 31376 -80.249.184.0/23 31376 -80.249.186.0/24 207131 -80.249.187.0/24 31376 -80.249.188.0/24 31376 -80.249.189.0/24 209096 -80.249.190.0/23 31376 -80.249.200.0/22 30833 -80.249.204.0/22 47586 -80.249.216.0/23 49415 -80.249.218.0/24 49415 -80.249.222.0/24 49415 -80.249.224.0/20 3326 -80.249.240.0/20 44212 -80.250.0.0/19 21430 -80.250.32.0/21 204810 -80.250.40.0/24 29286 -80.250.41.0/24 204810 -80.250.42.0/23 204810 -80.250.44.0/23 29286 -80.250.46.0/24 29286 -80.250.47.0/24 204810 -80.250.48.0/20 43513 -80.250.64.0/20 21480 -80.250.81.0/24 25227 -80.250.82.0/24 25227 -80.250.84.0/23 25227 -80.250.86.0/24 25227 -80.250.87.0/24 8492 -80.250.96.0/20 25061 -80.250.112.0/20 39038 -80.250.128.0/20 16001 -80.250.144.0/20 1680 -80.250.160.0/22 3267 -80.250.164.0/24 3267 -80.250.165.0/24 59706 -80.250.166.0/24 3267 -80.250.167.0/24 60643 -80.250.168.0/22 3267 -80.250.172.0/23 3267 -80.250.174.0/24 34849 -80.250.175.0/24 3267 -80.250.176.0/21 3267 -80.250.184.0/22 3267 -80.250.188.0/24 3267 -80.250.189.0/24 198444 -80.250.190.0/23 3267 -80.250.192.0/20 58224 -80.250.208.0/21 21367 -80.250.216.0/23 21367 -80.250.218.0/24 41212 -80.250.219.0/24 21367 -80.250.220.0/22 21367 -80.250.224.0/20 24663 -80.250.240.0/20 5578 -80.251.0.0/20 42705 -80.251.16.0/21 57994 -80.251.24.0/24 57994 -80.251.26.0/23 57994 -80.251.28.0/23 57994 -80.251.30.0/24 57994 -80.251.32.0/20 8678 -80.251.48.0/20 38934 -80.251.64.0/20 12479 -80.251.80.0/20 38948 -80.251.96.0/20 35429 -80.251.112.0/20 39125 -80.251.128.0/20 21446 -80.251.144.0/20 38972 -80.251.160.0/19 8220 -80.251.192.0/20 44034 -80.251.208.0/20 25820 -80.251.224.0/20 42429 -80.251.240.0/20 39235 -80.252.0.0/20 8535 -80.252.16.0/20 39042 -80.252.32.0/20 15702 -80.252.48.0/20 12301 -80.252.64.0/20 31655 -80.252.80.0/20 15830 -80.252.96.0/20 8893 -80.252.112.0/20 8282 -80.252.128.0/19 21453 -80.252.160.0/20 21503 -80.252.176.0/22 21503 -80.252.180.0/23 21503 -80.252.182.0/24 21503 -80.252.183.0/24 12552 -80.252.184.0/24 21503 -80.252.185.0/24 12552 -80.252.186.0/23 21503 -80.252.188.0/22 21503 -80.252.192.0/20 21469 -80.252.208.0/20 197603 -80.252.224.0/20 21454 -80.252.240.0/20 31272 -80.253.0.0/22 6854 -80.253.4.0/22 8441 -80.253.8.0/21 6854 -80.253.16.0/20 39153 -80.253.32.0/20 3269 -80.253.48.0/20 13124 -80.253.64.0/20 24624 -80.253.80.0/21 1836 -80.253.88.0/21 13030 -80.253.96.0/23 3356 -80.253.98.0/24 3257 -80.253.99.0/24 30933 -80.253.100.0/22 3356 -80.253.104.0/22 3356 -80.253.108.0/23 3356 -80.253.110.0/24 3257 -80.253.111.0/24 3356 -80.253.112.0/23 25433 -80.253.114.0/23 3356 -80.253.116.0/22 3356 -80.253.120.0/21 3356 -80.253.128.0/20 24631 -80.253.144.0/21 24631 -80.253.152.0/22 24631 -80.253.156.0/24 24631 -80.253.157.0/24 59708 -80.253.158.0/23 24631 -80.253.168.0/21 28837 -80.253.176.0/20 30873 -80.253.192.0/20 49565 -80.253.212.0/23 10991 -80.253.215.0/24 24989 -80.253.224.0/20 44206 -80.253.240.0/22 34619 -80.253.244.0/23 207429 -80.253.246.0/23 397563 -80.253.248.0/22 397563 -80.253.252.0/23 397563 -80.253.254.0/23 60721 -80.254.0.0/20 15738 -80.254.16.0/20 39101 -80.254.32.0/20 2116 -80.254.48.0/20 39046 -80.254.64.0/20 24889 -80.254.80.0/20 15735 -80.254.96.0/19 21479 -80.254.128.0/20 21476 -80.254.144.0/22 25605 -80.254.150.0/24 25605 -80.254.154.0/23 25605 -80.254.158.0/23 25605 -80.254.160.0/19 1836 -80.254.192.0/20 20554 -80.254.208.0/20 20910 -80.254.224.0/22 43833 -80.254.228.0/22 42695 -80.254.232.0/21 204860 -80.254.240.0/20 42318 -80.255.0.0/20 201011 -80.255.16.0/20 25513 -80.255.32.0/19 22351 -80.255.64.0/20 21497 -80.255.80.0/20 8369 -80.255.96.0/22 24585 -80.255.104.0/21 64483 -80.255.112.0/20 203178 -80.255.128.0/20 21483 -80.255.144.0/23 21483 -80.255.146.0/24 21483 -80.255.147.0/24 3216 -80.255.148.0/22 21483 -80.255.152.0/23 21483 -80.255.154.0/24 21483 -80.255.155.0/24 3216 -80.255.156.0/22 21483 -80.255.160.0/20 5400 -80.255.176.0/20 30881 -80.255.224.0/21 57516 -80.255.232.0/22 57516 -80.255.236.0/23 57516 -80.255.238.0/23 51347 -80.255.240.0/20 28878 -81.0.0.0/18 15704 -81.0.64.0/20 12301 -81.0.80.0/23 12301 -81.0.82.0/23 20845 -81.0.84.0/22 20845 -81.0.88.0/23 12301 -81.0.90.0/23 20845 -81.0.92.0/22 20845 -81.0.96.0/23 12301 -81.0.98.0/23 20845 -81.0.100.0/22 12301 -81.0.104.0/22 12301 -81.0.108.0/23 20845 -81.0.110.0/23 12301 -81.0.112.0/21 12301 -81.0.120.0/23 12301 -81.0.122.0/23 20845 -81.0.124.0/23 12301 -81.0.126.0/23 20845 -81.0.128.0/18 2116 -81.0.192.0/22 15685 -81.0.196.0/23 21430 -81.0.198.0/24 21430 -81.0.199.0/24 15685 -81.0.200.0/23 15685 -81.0.202.0/24 21430 -81.0.203.0/24 15685 -81.0.204.0/23 21430 -81.0.206.0/23 15685 -81.0.208.0/23 15685 -81.0.210.0/23 21430 -81.0.212.0/23 15685 -81.0.214.0/24 15685 -81.0.215.0/24 21430 -81.0.216.0/24 21430 -81.0.217.0/24 15685 -81.0.218.0/23 15685 -81.0.220.0/23 15685 -81.0.222.0/23 21430 -81.0.224.0/24 21430 -81.0.225.0/24 15685 -81.0.226.0/24 15685 -81.0.227.0/24 21430 -81.0.228.0/24 15685 -81.0.229.0/24 21430 -81.0.230.0/23 15685 -81.0.232.0/21 15685 -81.0.240.0/22 15685 -81.0.244.0/24 15685 -81.0.245.0/24 21430 -81.0.246.0/23 15685 -81.0.248.0/24 21430 -81.0.249.0/24 15685 -81.0.250.0/24 15685 -81.0.251.0/24 21430 -81.0.252.0/23 21430 -81.0.254.0/23 15685 -81.1.0.0/18 15557 -81.1.64.0/18 9105 -81.1.128.0/18 25513 -81.1.192.0/18 21127 -81.2.0.0/22 12332 -81.2.4.0/23 12332 -81.2.6.0/23 12389 -81.2.8.0/21 12332 -81.2.16.0/20 12332 -81.2.32.0/21 12332 -81.2.40.0/22 12332 -81.2.44.0/23 12389 -81.2.46.0/23 12332 -81.2.48.0/23 12389 -81.2.50.0/23 12332 -81.2.52.0/22 12332 -81.2.56.0/21 12389 -81.2.64.0/18 20712 -81.2.128.0/24 19970 -81.2.129.0/24 174 -81.2.130.0/23 174 -81.2.132.0/22 203591 -81.2.136.0/21 174 -81.2.144.0/21 174 -81.2.152.0/21 48945 -81.2.160.0/20 48945 -81.2.176.0/21 48945 -81.2.184.0/23 174 -81.2.186.0/24 174 -81.2.187.0/24 209784 -81.2.188.0/23 174 -81.2.190.0/24 205520 -81.2.191.0/24 200736 -81.2.192.0/18 24806 -81.3.0.0/18 24679 -81.3.64.0/18 8607 -81.3.128.0/20 20632 -81.3.144.0/24 20632 -81.3.145.0/24 201465 -81.3.146.0/23 20632 -81.3.148.0/22 20632 -81.3.152.0/23 20632 -81.3.154.0/24 56679 -81.3.155.0/24 20632 -81.3.156.0/22 20632 -81.3.160.0/19 20632 -81.3.192.0/18 25255 -81.4.64.0/20 21155 -81.4.80.0/22 21155 -81.4.84.0/22 35470 -81.4.88.0/21 21155 -81.4.96.0/22 21155 -81.4.100.0/22 198203 -81.4.104.0/21 198203 -81.4.112.0/21 21155 -81.4.120.0/21 198203 -81.4.128.0/20 6866 -81.4.144.0/21 6866 -81.4.152.0/23 6866 -81.4.154.0/24 48623 -81.4.155.0/24 6866 -81.4.156.0/22 6866 -81.4.160.0/20 6866 -81.4.176.0/21 6866 -81.4.184.0/23 6866 -81.4.186.0/23 49338 -81.4.188.0/23 6866 -81.4.190.0/23 24655 -81.4.192.0/19 24626 -81.4.224.0/21 24626 -81.4.232.0/22 28906 -81.4.236.0/23 28906 -81.4.238.0/24 28906 -81.4.239.0/24 24626 -81.4.240.0/21 24626 -81.4.248.0/22 28906 -81.4.252.0/23 28906 -81.4.254.0/23 24626 -81.5.0.0/21 5486 -81.5.8.0/21 9116 -81.5.16.0/21 5486 -81.5.24.0/21 9116 -81.5.32.0/19 9116 -81.5.64.0/18 25100 -81.5.128.0/19 12513 -81.5.160.0/20 12513 -81.5.176.0/21 12513 -81.5.184.0/22 12513 -81.5.188.0/24 206509 -81.5.189.0/24 12513 -81.5.190.0/23 12513 -81.5.192.0/18 12793 -81.6.0.0/19 1836 -81.6.32.0/20 13030 -81.6.48.0/20 1836 -81.6.64.0/18 15897 -81.6.128.0/22 30778 -81.6.132.0/24 30778 -81.6.133.0/24 209801 -81.6.134.0/23 198777 -81.6.136.0/24 208930 -81.6.137.0/24 30778 -81.6.138.0/24 30778 -81.6.139.0/24 43386 -81.6.140.0/24 30778 -81.6.141.0/24 199378 -81.6.142.0/23 30778 -81.6.176.0/21 24848 -81.6.184.0/23 24848 -81.6.186.0/24 24848 -81.6.187.0/24 48227 -81.6.188.0/22 24848 -81.6.192.0/18 9105 -81.7.0.0/18 35366 -81.7.64.0/19 8764 -81.7.96.0/21 8764 -81.7.104.0/24 8764 -81.7.105.0/24 43811 -81.7.106.0/23 8764 -81.7.108.0/22 49602 -81.7.112.0/23 49602 -81.7.114.0/23 43811 -81.7.116.0/22 8764 -81.7.120.0/21 8764 -81.7.128.0/18 16095 -81.7.208.0/20 48951 -81.7.224.0/19 6830 -81.8.0.0/20 15924 -81.8.16.0/22 15924 -81.8.20.0/23 15924 -81.8.22.0/24 15924 -81.8.23.0/24 202444 -81.8.24.0/21 15924 -81.8.32.0/23 8386 -81.8.34.0/24 65552 -81.8.35.0/24 15924 -81.8.36.0/22 15924 -81.8.40.0/21 15924 -81.8.48.0/21 15924 -81.8.56.0/22 15924 -81.8.60.0/23 15924 -81.8.62.0/24 15924 -81.8.63.0/24 8386 -81.8.64.0/20 15924 -81.8.80.0/24 8386 -81.8.81.0/24 15924 -81.8.82.0/23 15924 -81.8.84.0/22 15924 -81.8.88.0/21 15924 -81.8.96.0/19 15924 -81.8.128.0/17 25176 -81.9.0.0/21 20597 -81.9.8.0/22 20597 -81.9.12.0/22 3216 -81.9.16.0/20 52193 -81.9.32.0/20 20597 -81.9.48.0/20 34211 -81.9.64.0/24 24873 -81.9.67.0/24 24873 -81.9.74.0/24 24873 -81.9.80.0/20 3216 -81.9.96.0/20 20597 -81.9.112.0/24 207859 -81.9.113.0/24 16345 -81.9.114.0/23 3216 -81.9.116.0/22 3216 -81.9.120.0/22 3216 -81.9.124.0/23 3216 -81.9.126.0/23 16345 -81.9.128.0/17 12946 -81.10.0.0/17 8452 -81.10.128.0/17 12605 -81.11.128.0/17 5432 -81.12.0.0/21 42337 -81.12.8.0/21 21341 -81.12.16.0/21 21341 -81.12.24.0/22 21341 -81.12.32.0/22 51469 -81.12.36.0/22 42337 -81.12.40.0/21 49100 -81.12.48.0/22 21341 -81.12.52.0/23 21341 -81.12.54.0/23 42337 -81.12.56.0/23 42337 -81.12.58.0/23 21341 -81.12.60.0/22 42337 -81.12.64.0/21 35043 -81.12.72.0/21 42337 -81.12.80.0/20 42337 -81.12.96.0/21 204650 -81.12.104.0/21 42337 -81.12.112.0/20 42337 -81.12.128.0/17 12302 -81.13.0.0/22 5523 -81.13.4.0/23 5523 -81.13.6.0/24 208314 -81.13.7.0/24 5523 -81.13.8.0/21 5523 -81.13.16.0/20 5523 -81.13.32.0/20 5523 -81.13.48.0/21 5523 -81.13.56.0/22 5523 -81.13.60.0/23 5523 -81.13.62.0/24 208314 -81.13.63.0/24 5523 -81.13.64.0/18 5523 -81.13.128.0/17 15547 -81.14.0.0/17 42811 -81.14.128.0/17 13045 -81.15.0.0/17 12969 -81.15.128.0/23 20804 -81.15.130.0/24 20804 -81.15.131.0/24 199715 -81.15.132.0/23 20804 -81.15.134.0/24 199715 -81.15.135.0/24 20804 -81.15.136.0/21 20804 -81.15.144.0/24 201519 -81.15.145.0/24 205034 -81.15.146.0/23 20804 -81.15.148.0/22 20804 -81.15.152.0/22 20804 -81.15.156.0/24 20804 -81.15.157.0/24 50551 -81.15.158.0/23 20804 -81.15.160.0/23 20804 -81.15.162.0/23 199715 -81.15.164.0/24 20804 -81.15.165.0/24 199715 -81.15.166.0/24 199715 -81.15.167.0/24 60106 -81.15.168.0/21 20804 -81.15.176.0/23 199715 -81.15.178.0/24 20804 -81.15.179.0/24 199715 -81.15.180.0/22 20804 -81.15.184.0/22 20804 -81.15.188.0/24 61256 -81.15.189.0/24 20804 -81.15.190.0/24 20804 -81.15.191.0/24 204301 -81.15.192.0/22 20804 -81.15.196.0/24 201724 -81.15.197.0/24 20804 -81.15.198.0/23 20804 -81.15.200.0/24 60378 -81.15.201.0/24 20804 -81.15.202.0/24 20804 -81.15.203.0/24 209200 -81.15.204.0/23 20804 -81.15.206.0/23 60468 -81.15.208.0/24 62258 -81.15.209.0/24 20804 -81.15.210.0/23 20804 -81.15.212.0/22 20804 -81.15.216.0/22 20804 -81.15.220.0/23 199715 -81.15.222.0/23 20804 -81.15.224.0/22 20804 -81.15.228.0/23 199715 -81.15.230.0/24 20804 -81.15.231.0/24 199715 -81.15.232.0/23 20804 -81.15.234.0/24 209073 -81.15.235.0/24 20804 -81.15.236.0/24 20804 -81.15.237.0/24 209200 -81.15.238.0/24 20804 -81.15.239.0/24 205813 -81.15.240.0/23 20804 -81.15.242.0/24 205813 -81.15.243.0/24 50830 -81.15.244.0/23 20804 -81.15.246.0/24 60844 -81.15.247.0/24 199715 -81.15.248.0/22 60468 -81.15.252.0/23 199715 -81.15.254.0/23 20804 -81.16.0.0/20 44395 -81.16.16.0/22 197540 -81.16.20.0/24 3209 -81.16.28.0/22 47583 -81.16.32.0/20 13022 -81.16.48.0/21 43503 -81.16.56.0/22 43503 -81.16.60.0/24 17223 -81.16.61.0/24 43503 -81.16.62.0/23 43503 -81.16.64.0/20 20569 -81.16.80.0/20 24789 -81.16.96.0/21 1764 -81.16.104.0/21 24992 -81.16.112.0/20 12880 -81.16.128.0/22 48095 -81.16.132.0/22 200284 -81.16.140.0/24 62240 -81.16.141.0/24 57271 -81.16.142.0/23 34665 -81.16.144.0/21 1764 -81.16.152.0/23 1764 -81.16.154.0/24 197458 -81.16.155.0/24 42829 -81.16.156.0/24 42829 -81.16.157.0/24 42378 -81.16.158.0/23 1764 -81.16.160.0/20 197623 -81.16.176.0/20 42283 -81.16.192.0/20 57389 -81.16.208.0/22 16083 -81.16.212.0/22 29119 -81.16.216.0/22 39103 -81.16.220.0/22 60501 -81.16.224.0/21 24607 -81.16.234.0/23 201201 -81.16.236.0/22 201201 -81.16.240.0/21 34666 -81.16.248.0/22 34666 -81.16.252.0/23 34666 -81.16.254.0/24 34666 -81.17.0.0/24 24588 -81.17.1.0/24 12772 -81.17.2.0/23 24588 -81.17.4.0/22 24588 -81.17.8.0/21 24588 -81.17.16.0/20 51852 -81.17.49.0/24 60781 -81.17.51.0/24 60781 -81.17.56.0/21 205544 -81.17.64.0/20 21470 -81.17.80.0/20 28787 -81.17.96.0/20 15598 -81.17.112.0/22 15598 -81.17.116.0/24 15598 -81.17.128.0/23 21437 -81.17.130.0/24 21500 -81.17.131.0/24 21437 -81.17.132.0/22 21437 -81.17.136.0/24 21437 -81.17.137.0/24 20709 -81.17.138.0/23 21437 -81.17.140.0/24 21500 -81.17.141.0/24 60918 -81.17.142.0/24 21500 -81.17.143.0/24 20709 -81.17.144.0/20 34602 -81.17.160.0/20 25534 -81.17.176.0/20 12301 -81.17.192.0/21 29422 -81.17.200.0/21 15830 -81.17.208.0/20 35833 -81.17.224.0/21 25467 -81.17.232.0/23 25467 -81.17.234.0/24 25467 -81.17.236.0/23 25467 -81.17.238.0/24 25467 -81.17.240.0/20 39122 -81.18.0.0/20 20867 -81.18.16.0/20 15600 -81.18.32.0/21 29046 -81.18.40.0/22 29046 -81.18.44.0/23 29046 -81.18.48.0/24 203879 -81.18.49.0/24 52116 -81.18.50.0/24 52116 -81.18.51.0/24 28964 -81.18.52.0/23 52116 -81.18.54.0/24 28964 -81.18.55.0/24 52116 -81.18.56.0/22 28964 -81.18.60.0/23 52116 -81.18.62.0/24 9125 -81.18.63.0/24 28964 -81.18.64.0/19 8708 -81.18.96.0/20 24657 -81.18.112.0/20 41330 -81.18.128.0/23 24626 -81.18.130.0/23 41341 -81.18.132.0/22 24626 -81.18.136.0/22 24626 -81.18.140.0/23 51813 -81.18.142.0/23 24626 -81.18.144.0/20 24626 -81.18.160.0/20 24642 -81.18.176.0/20 39180 -81.18.192.0/19 6830 -81.18.224.0/20 15389 -81.18.240.0/20 34430 -81.19.0.0/21 24641 -81.19.8.0/22 24641 -81.19.12.0/23 34049 -81.19.14.0/24 34049 -81.19.15.0/24 24641 -81.19.16.0/20 35283 -81.19.32.0/20 25512 -81.19.48.0/20 29668 -81.19.64.0/19 24638 -81.19.96.0/20 2914 -81.19.112.0/20 39242 -81.19.128.0/20 24658 -81.19.144.0/20 38955 -81.19.160.0/24 24830 -81.19.162.0/24 24830 -81.19.163.0/24 24768 -81.19.164.0/23 24830 -81.19.166.0/24 24830 -81.19.167.0/24 24768 -81.19.168.0/22 24768 -81.19.172.0/23 24768 -81.19.174.0/23 24830 -81.19.176.0/20 34282 -81.19.192.0/24 26415 -81.19.194.0/24 26415 -81.19.195.0/24 10515 -81.19.196.0/23 26415 -81.19.199.0/24 7342 -81.19.200.0/23 7342 -81.19.203.0/24 7342 -81.19.204.0/22 7342 -81.19.208.0/21 25369 -81.19.216.0/22 25369 -81.19.220.0/24 5505 -81.19.221.0/24 25369 -81.19.222.0/23 25369 -81.19.224.0/19 16095 -81.20.16.0/20 39214 -81.20.32.0/20 29033 -81.20.48.0/20 39202 -81.20.64.0/20 2914 -81.20.80.0/20 25260 -81.20.96.0/20 24699 -81.20.112.0/20 39835 -81.20.128.0/20 33984 -81.20.144.0/20 3249 -81.20.160.0/20 24665 -81.20.176.0/21 13208 -81.20.188.0/22 8681 -81.20.192.0/23 20866 -81.20.194.0/24 60833 -81.20.195.0/24 20866 -81.20.196.0/22 20866 -81.20.200.0/21 20866 -81.20.208.0/20 8362 -81.20.224.0/20 3274 -81.20.240.0/20 42580 -81.21.0.0/20 24896 -81.21.16.0/20 30848 -81.21.32.0/23 16229 -81.21.34.0/24 8544 -81.21.35.0/24 16229 -81.21.36.0/23 16229 -81.21.38.0/24 8544 -81.21.39.0/24 16229 -81.21.40.0/24 16229 -81.21.41.0/24 8544 -81.21.42.0/24 8544 -81.21.43.0/24 30916 -81.21.44.0/24 16229 -81.21.45.0/24 30916 -81.21.46.0/24 8544 -81.21.47.0/24 16229 -81.21.48.0/20 39228 -81.21.64.0/20 20738 -81.21.80.0/20 39280 -81.21.97.0/24 31065 -81.21.99.0/24 31065 -81.21.101.0/24 36885 -81.21.102.0/23 31065 -81.21.104.0/22 31065 -81.21.108.0/23 31065 -81.21.112.0/20 44462 -81.21.128.0/21 12505 -81.21.136.0/21 28878 -81.21.160.0/20 8685 -81.21.176.0/20 39244 -81.21.192.0/21 8726 -81.21.200.0/22 8726 -81.21.204.0/23 8726 -81.21.206.0/24 200094 -81.21.208.0/20 13189 -81.21.224.0/24 209041 -81.21.227.0/24 209041 -81.21.228.0/22 201942 -81.21.232.0/22 197706 -81.21.236.0/22 202511 -81.21.240.0/20 1257 -81.22.0.0/20 24787 -81.22.16.0/20 39273 -81.22.32.0/22 47959 -81.22.36.0/24 40676 -81.22.37.0/24 35913 -81.22.38.0/24 35913 -81.22.39.0/24 40676 -81.22.40.0/22 210097 -81.22.44.0/24 206766 -81.22.45.0/24 49505 -81.22.46.0/23 206485 -81.22.48.0/20 39264 -81.22.96.0/20 48737 -81.22.128.0/20 34092 -81.22.144.0/21 48161 -81.22.160.0/20 24713 -81.22.176.0/20 59869 -81.22.192.0/23 24762 -81.22.197.0/24 20842 -81.22.198.0/23 20842 -81.22.200.0/21 24810 -81.22.208.0/21 24810 -81.22.216.0/21 16347 -81.22.224.0/22 210238 -81.22.228.0/22 49818 -81.22.232.0/22 48146 -81.22.240.0/20 39324 -81.23.0.0/21 31261 -81.23.8.0/23 31261 -81.23.10.0/23 51219 -81.23.12.0/23 35522 -81.23.14.0/24 31261 -81.23.15.0/24 51472 -81.23.16.0/20 15895 -81.23.32.0/20 34863 -81.23.48.0/20 41230 -81.23.64.0/20 12350 -81.23.80.0/20 39719 -81.23.96.0/19 24739 -81.23.128.0/20 16245 -81.23.144.0/23 24810 -81.23.146.0/24 12389 -81.23.147.0/24 24810 -81.23.148.0/23 24810 -81.23.150.0/23 12389 -81.23.152.0/22 12389 -81.23.156.0/24 24810 -81.23.157.0/24 12389 -81.23.158.0/23 24810 -81.23.160.0/20 49816 -81.23.176.0/20 8416 -81.23.192.0/20 30729 -81.23.208.0/20 10003 -81.23.224.0/22 24730 -81.23.228.0/23 24730 -81.23.230.0/23 41887 -81.23.232.0/21 24730 -81.23.240.0/23 24730 -81.23.242.0/23 42433 -81.23.244.0/22 24730 -81.23.248.0/21 43009 -81.24.0.0/20 25151 -81.24.16.0/20 6663 -81.24.32.0/20 25038 -81.24.48.0/20 15879 -81.24.64.0/20 24764 -81.24.80.0/22 39434 -81.24.84.0/24 39434 -81.24.85.0/24 57227 -81.24.86.0/24 39434 -81.24.87.0/24 56634 -81.24.88.0/21 57227 -81.24.96.0/20 12414 -81.24.112.0/20 24739 -81.24.128.0/20 24767 -81.24.144.0/20 35753 -81.24.160.0/21 24799 -81.24.168.0/21 201942 -81.24.176.0/20 25592 -81.24.192.0/20 9086 -81.24.208.0/20 39512 -81.24.224.0/20 24817 -81.24.240.0/21 41897 -81.24.248.0/21 199346 -81.25.0.0/20 24789 -81.25.16.0/21 42477 -81.25.24.0/21 47913 -81.25.32.0/20 24827 -81.25.48.0/20 8905 -81.25.64.0/22 60720 -81.25.68.0/24 204941 -81.25.69.0/24 202376 -81.25.70.0/24 202104 -81.25.71.0/24 47447 -81.25.72.0/22 208496 -81.25.76.0/22 31257 -81.25.80.0/21 39078 -81.25.96.0/20 60409 -81.25.112.0/20 41541 -81.25.128.0/20 41589 -81.25.144.0/20 50168 -81.25.160.0/20 15943 -81.25.176.0/20 20963 -81.25.192.0/20 2914 -81.25.208.0/20 39478 -81.25.224.0/20 15595 -81.25.240.0/20 51504 -81.26.0.0/20 24848 -81.26.16.0/21 24848 -81.26.24.0/22 24848 -81.26.28.0/23 24848 -81.26.30.0/24 24848 -81.26.31.0/24 8308 -81.26.32.0/19 43200 -81.26.72.0/21 328366 -81.26.80.0/20 41330 -81.26.96.0/19 5587 -81.26.128.0/20 20895 -81.26.144.0/21 8641 -81.26.152.0/22 8641 -81.26.156.0/24 201482 -81.26.157.0/24 28809 -81.26.158.0/23 201482 -81.26.160.0/20 12843 -81.26.176.0/20 201786 -81.26.192.0/22 13018 -81.26.200.0/21 35444 -81.26.208.0/20 25542 -81.26.224.0/19 2119 -81.27.0.0/20 13189 -81.27.16.0/20 39509 -81.27.32.0/20 29486 -81.27.48.0/20 12389 -81.27.64.0/19 25577 -81.27.96.0/20 24851 -81.27.112.0/20 21263 -81.27.128.0/20 24880 -81.27.144.0/20 28860 -81.27.160.0/20 12611 -81.27.176.0/20 3302 -81.27.192.0/20 6830 -81.27.208.0/20 42525 -81.27.224.0/20 44700 -81.27.240.0/22 20764 -81.27.244.0/24 20764 -81.27.245.0/24 199732 -81.27.246.0/23 20764 -81.27.248.0/21 20764 -81.28.0.0/21 24832 -81.28.10.0/23 24832 -81.28.12.0/24 24832 -81.28.14.0/23 24832 -81.28.16.0/20 702 -81.28.32.0/19 25306 -81.28.80.0/20 39647 -81.28.96.0/20 41770 -81.28.112.0/20 47887 -81.28.128.0/20 41491 -81.28.160.0/19 8439 -81.28.192.0/20 24904 -81.28.208.0/20 39586 -81.28.224.0/21 29014 -81.28.232.0/22 29014 -81.28.236.0/23 29014 -81.28.240.0/22 29119 -81.28.244.0/23 50212 -81.28.246.0/24 51538 -81.28.247.0/24 50212 -81.28.248.0/23 200276 -81.28.252.0/22 18013 -81.29.0.0/20 202955 -81.29.16.0/20 21412 -81.29.32.0/20 8896 -81.29.48.0/20 39620 -81.29.64.0/19 24931 -81.29.96.0/24 25364 -81.29.98.0/24 25364 -81.29.100.0/22 25364 -81.29.104.0/24 25364 -81.29.108.0/23 25364 -81.29.111.0/24 25364 -81.29.112.0/20 39740 -81.29.128.0/22 12555 -81.29.132.0/24 12555 -81.29.133.0/24 207648 -81.29.134.0/23 12555 -81.29.136.0/21 12555 -81.29.144.0/20 39616 -81.29.160.0/23 22351 -81.29.176.0/22 197075 -81.29.180.0/22 5394 -81.29.184.0/21 5394 -81.29.192.0/19 15830 -81.29.224.0/20 34978 -81.29.240.0/20 24631 -81.30.0.0/20 16191 -81.30.16.0/20 39657 -81.30.32.0/23 28878 -81.30.34.0/24 28878 -81.30.35.0/24 49685 -81.30.36.0/22 28878 -81.30.40.0/21 28878 -81.30.48.0/22 196797 -81.30.52.0/24 196797 -81.30.54.0/23 196797 -81.30.56.0/24 196797 -81.30.59.0/24 196797 -81.30.60.0/22 196797 -81.30.64.0/20 57112 -81.30.80.0/23 44087 -81.30.82.0/24 44087 -81.30.84.0/22 44087 -81.30.88.0/21 44087 -81.30.96.0/20 3320 -81.30.112.0/23 39718 -81.30.114.0/24 48129 -81.30.115.0/24 39718 -81.30.116.0/22 39718 -81.30.124.0/22 48129 -81.30.130.0/23 34169 -81.30.132.0/22 34169 -81.30.136.0/23 50231 -81.30.138.0/23 35007 -81.30.140.0/22 50231 -81.30.144.0/20 24961 -81.30.160.0/20 24945 -81.30.176.0/20 24955 -81.30.192.0/19 24955 -81.30.224.0/19 15935 -81.31.0.0/19 3257 -81.31.32.0/20 24971 -81.31.48.0/20 41242 -81.31.64.0/20 12519 -81.31.80.0/20 3292 -81.31.96.0/19 8468 -81.31.128.0/20 29654 -81.31.144.0/20 47242 -81.31.160.0/19 12660 -81.31.196.0/22 9009 -81.31.200.0/22 44521 -81.31.204.0/22 197383 -81.31.208.0/21 48142 -81.31.216.0/24 42416 -81.31.224.0/19 57235 -81.32.0.0/13 3352 -81.40.0.0/14 3352 -81.44.0.0/16 3352 -81.45.0.0/20 3352 -81.45.16.0/21 3352 -81.45.24.0/23 3352 -81.45.26.0/23 6813 -81.45.28.0/22 3352 -81.45.32.0/19 3352 -81.45.64.0/18 3352 -81.45.128.0/20 3352 -81.45.144.0/21 3352 -81.45.152.0/22 3352 -81.45.156.0/22 6813 -81.45.160.0/19 3352 -81.45.192.0/18 3352 -81.46.0.0/17 3352 -81.46.128.0/18 3352 -81.46.192.0/19 16371 -81.46.224.0/20 16371 -81.46.240.0/21 16371 -81.46.248.0/21 3352 -81.47.0.0/16 3352 -81.48.0.0/14 3215 -81.52.128.0/22 5511 -81.52.132.0/24 5511 -81.52.134.0/23 5511 -81.52.136.0/23 5511 -81.52.140.0/23 5511 -81.52.142.0/23 8891 -81.52.144.0/20 8376 -81.52.160.0/24 5511 -81.52.161.0/24 36947 -81.52.162.0/23 36947 -81.52.164.0/22 5511 -81.52.168.0/21 5511 -81.52.176.0/24 5511 -81.52.179.0/24 5511 -81.52.183.0/24 5511 -81.52.185.0/24 2300 -81.52.186.0/23 5511 -81.52.188.0/24 5511 -81.52.190.0/24 5511 -81.52.192.0/22 5511 -81.52.196.0/23 5511 -81.52.198.0/24 5511 -81.52.199.0/24 29664 -81.52.200.0/21 5511 -81.52.208.0/22 16028 -81.52.214.0/23 16028 -81.52.224.0/21 8376 -81.52.232.0/22 3215 -81.52.236.0/22 5511 -81.52.240.0/22 10031 -81.52.244.0/22 5511 -81.52.248.0/21 5511 -81.53.0.0/16 3215 -81.56.0.0/15 12322 -81.58.0.0/15 13127 -81.60.0.0/17 6739 -81.60.128.0/22 12357 -81.60.132.0/23 6739 -81.60.134.0/23 12357 -81.60.136.0/24 12357 -81.60.137.0/24 6739 -81.60.138.0/24 6739 -81.60.139.0/24 12357 -81.60.140.0/24 6739 -81.60.141.0/24 12357 -81.60.142.0/23 12357 -81.60.144.0/24 12357 -81.60.145.0/24 6739 -81.60.146.0/24 6739 -81.60.147.0/24 12357 -81.60.148.0/24 12357 -81.60.149.0/24 6739 -81.60.150.0/23 12357 -81.60.152.0/24 6739 -81.60.153.0/24 12357 -81.60.154.0/23 6739 -81.60.156.0/23 12357 -81.60.158.0/24 6739 -81.60.159.0/24 12357 -81.60.160.0/24 12357 -81.60.161.0/24 6739 -81.60.162.0/24 12357 -81.60.163.0/24 6739 -81.60.164.0/23 12357 -81.60.166.0/24 6739 -81.60.167.0/24 12357 -81.60.168.0/24 6739 -81.60.169.0/24 12357 -81.60.170.0/24 6739 -81.60.171.0/24 12357 -81.60.172.0/22 12357 -81.60.176.0/24 12357 -81.60.177.0/24 6739 -81.60.178.0/23 12357 -81.60.180.0/22 12357 -81.60.184.0/24 12357 -81.60.185.0/24 6739 -81.60.186.0/23 12357 -81.60.188.0/22 12357 -81.60.192.0/18 6739 -81.61.0.0/22 6739 -81.61.4.0/24 6739 -81.61.5.0/24 12357 -81.61.6.0/23 12357 -81.61.8.0/22 12357 -81.61.12.0/22 6739 -81.61.16.0/22 12357 -81.61.20.0/23 12357 -81.61.22.0/23 6739 -81.61.24.0/23 12357 -81.61.26.0/23 6739 -81.61.28.0/22 12357 -81.61.32.0/23 12357 -81.61.34.0/23 6739 -81.61.36.0/23 6739 -81.61.38.0/23 12357 -81.61.40.0/22 12357 -81.61.44.0/22 6739 -81.61.48.0/23 12357 -81.61.50.0/23 6739 -81.61.52.0/22 6739 -81.61.56.0/21 6739 -81.61.64.0/18 6739 -81.61.128.0/21 12357 -81.61.136.0/21 6739 -81.61.144.0/20 12357 -81.61.160.0/21 12357 -81.61.168.0/21 6739 -81.61.176.0/23 12357 -81.61.178.0/23 6739 -81.61.180.0/22 6739 -81.61.184.0/21 6739 -81.61.192.0/23 12357 -81.61.194.0/23 6739 -81.61.196.0/23 12357 -81.61.198.0/23 6739 -81.61.200.0/22 6739 -81.61.204.0/22 12357 -81.61.208.0/22 6739 -81.61.212.0/22 12357 -81.61.216.0/23 6739 -81.61.218.0/23 12357 -81.61.220.0/23 12357 -81.61.222.0/23 6739 -81.61.224.0/22 6739 -81.61.228.0/23 12357 -81.61.230.0/23 6739 -81.61.232.0/22 6739 -81.61.236.0/22 12357 -81.61.240.0/24 12357 -81.61.241.0/24 6739 -81.61.242.0/23 6739 -81.61.244.0/22 6739 -81.61.248.0/21 6739 -81.62.0.0/15 3303 -81.64.0.0/14 21502 -81.72.0.0/15 3269 -81.74.0.0/17 3269 -81.74.128.0/18 3269 -81.74.192.0/19 3269 -81.74.224.0/21 3269 -81.74.232.0/22 3269 -81.74.236.0/23 3269 -81.74.238.0/23 20746 -81.74.240.0/21 3269 -81.74.248.0/22 3269 -81.74.252.0/24 20746 -81.74.253.0/24 3269 -81.74.254.0/23 3269 -81.75.0.0/16 3269 -81.80.0.0/17 3215 -81.80.128.0/18 3215 -81.80.192.0/19 3215 -81.80.224.0/21 3215 -81.80.232.0/22 3215 -81.80.236.0/24 3215 -81.80.237.0/24 12826 -81.80.238.0/23 3215 -81.80.240.0/20 3215 -81.82.0.0/15 6848 -81.84.0.0/16 2860 -81.85.0.0/19 24753 -81.85.32.0/20 24753 -81.85.48.0/21 24753 -81.85.56.0/22 24753 -81.85.60.0/23 24753 -81.85.62.0/24 24753 -81.85.63.0/24 38056 -81.85.64.0/18 24753 -81.85.128.0/19 24753 -81.85.160.0/21 393439 -81.85.168.0/21 24753 -81.85.176.0/20 24753 -81.85.192.0/20 24753 -81.85.208.0/21 24753 -81.85.216.0/23 24753 -81.85.218.0/24 38056 -81.85.219.0/24 24753 -81.85.220.0/22 24753 -81.85.224.0/19 24753 -81.86.0.0/16 9105 -81.87.0.0/16 786 -81.88.0.0/20 15782 -81.88.16.0/24 3356 -81.88.17.0/24 45031 -81.88.18.0/23 45031 -81.88.20.0/24 45031 -81.88.21.0/24 3356 -81.88.22.0/23 45031 -81.88.24.0/22 45031 -81.88.28.0/22 57739 -81.88.32.0/20 24973 -81.88.48.0/20 39729 -81.88.64.0/23 29300 -81.88.66.0/24 29300 -81.88.67.0/24 29286 -81.88.68.0/23 29286 -81.88.70.0/24 29286 -81.88.71.0/24 29300 -81.88.72.0/24 29300 -81.88.73.0/24 29286 -81.88.74.0/23 29286 -81.88.76.0/24 29286 -81.88.77.0/24 29300 -81.88.78.0/23 29286 -81.88.80.0/21 39684 -81.88.88.0/24 39684 -81.88.95.0/24 39684 -81.88.96.0/21 15436 -81.88.104.0/22 34002 -81.88.108.0/22 31651 -81.88.112.0/20 15582 -81.88.128.0/20 5578 -81.88.144.0/20 39824 -81.88.160.0/20 15766 -81.88.176.0/21 15547 -81.88.184.0/21 39440 -81.88.192.0/20 25035 -81.88.208.0/20 39709 -81.88.224.0/19 25002 -81.89.0.0/20 6830 -81.89.17.0/24 34279 -81.89.18.0/23 34279 -81.89.21.0/24 34279 -81.89.22.0/23 34279 -81.89.24.0/22 34279 -81.89.28.0/23 34279 -81.89.30.0/24 34279 -81.89.32.0/20 25285 -81.89.48.0/20 29405 -81.89.64.0/20 39045 -81.89.80.0/21 39789 -81.89.96.0/20 35366 -81.89.112.0/21 34205 -81.89.120.0/22 34205 -81.89.124.0/24 34205 -81.89.125.0/24 12389 -81.89.126.0/24 34205 -81.89.127.0/24 12389 -81.89.128.0/20 25022 -81.89.176.0/20 5495 -81.89.192.0/20 25081 -81.89.208.0/21 39863 -81.89.216.0/22 39863 -81.89.223.0/24 39863 -81.89.224.0/19 8879 -81.90.0.0/20 12739 -81.90.16.0/20 48407 -81.90.32.0/20 25058 -81.90.48.0/20 29003 -81.90.64.0/20 15830 -81.90.80.0/20 29646 -81.90.96.0/22 60813 -81.90.111.0/24 3352 -81.90.112.0/21 39038 -81.90.128.0/21 25048 -81.90.136.0/23 48901 -81.90.138.0/23 25048 -81.90.140.0/23 25048 -81.90.142.0/24 25048 -81.90.143.0/24 16509 -81.90.144.0/20 25184 -81.90.160.0/20 5610 -81.90.180.0/23 50340 -81.90.188.0/22 9009 -81.90.192.0/20 25054 -81.90.208.0/20 39775 -81.90.224.0/20 25071 -81.90.240.0/20 39761 -81.91.0.0/20 197308 -81.91.24.0/21 30873 -81.91.32.0/19 25086 -81.91.64.0/20 8304 -81.91.80.0/20 39790 -81.91.96.0/20 25061 -81.91.112.0/20 29060 -81.91.128.0/20 25124 -81.91.144.0/20 206065 -81.91.160.0/20 8763 -81.91.189.0/24 44705 -81.91.192.0/20 29009 -81.91.208.0/20 39817 -81.91.224.0/20 28683 -81.91.240.0/20 29668 -81.92.0.0/20 8820 -81.92.16.0/24 20676 -81.92.17.0/24 42390 -81.92.18.0/23 20676 -81.92.20.0/22 20676 -81.92.26.0/24 20830 -81.92.27.0/24 42390 -81.92.32.0/20 15589 -81.92.48.0/20 25472 -81.92.64.0/20 25146 -81.92.80.0/20 20756 -81.92.96.0/20 41872 -81.92.112.0/20 39905 -81.92.128.0/20 209190 -81.92.144.0/20 39906 -81.92.160.0/20 21385 -81.92.176.0/20 35467 -81.92.192.0/22 42831 -81.92.196.0/22 34244 -81.92.200.0/21 9009 -81.92.208.0/21 42973 -81.92.216.0/24 201999 -81.92.217.0/24 42831 -81.92.218.0/23 42831 -81.92.220.0/22 34244 -81.92.224.0/20 25273 -81.92.241.0/24 49299 -81.92.243.0/24 20704 -81.92.244.0/22 20704 -81.92.248.0/21 43451 -81.93.0.0/19 8399 -81.93.32.0/20 39657 -81.93.48.0/20 25542 -81.93.64.0/20 25144 -81.93.80.0/21 25144 -81.93.88.0/22 25144 -81.93.92.0/24 21107 -81.93.93.0/24 25144 -81.93.94.0/23 25144 -81.93.96.0/20 206557 -81.93.112.0/20 24786 -81.93.128.0/19 29468 -81.93.160.0/20 25148 -81.93.176.0/20 2914 -81.93.192.0/21 24991 -81.93.201.0/24 24991 -81.93.202.0/23 24991 -81.93.204.0/22 24991 -81.93.208.0/21 2914 -81.93.216.0/23 2914 -81.93.218.0/24 2914 -81.93.219.0/24 198461 -81.93.220.0/22 2914 -81.93.224.0/24 44371 -81.93.226.0/24 207087 -81.93.228.0/23 44371 -81.93.230.0/24 44371 -81.93.233.0/24 44371 -81.93.240.0/20 35393 -81.94.0.0/20 34943 -81.94.16.0/20 20807 -81.94.32.0/22 25251 -81.94.37.0/24 25251 -81.94.39.0/24 25251 -81.94.40.0/23 25251 -81.94.42.0/24 25251 -81.94.44.0/22 25251 -81.94.48.0/22 39912 -81.94.52.0/23 39912 -81.94.54.0/24 39912 -81.94.56.0/21 39912 -81.94.64.0/19 28847 -81.94.96.0/20 4589 -81.94.112.0/20 34288 -81.94.128.0/19 8595 -81.94.160.0/20 51929 -81.94.176.0/20 12301 -81.94.192.0/20 20860 -81.94.208.0/22 34587 -81.94.212.0/23 34587 -81.94.214.0/24 34587 -81.94.216.0/24 34587 -81.94.218.0/23 47971 -81.94.221.0/24 60507 -81.94.222.0/24 47971 -81.94.223.0/24 60507 -81.94.224.0/21 12993 -81.94.232.0/23 12993 -81.94.234.0/24 202863 -81.94.235.0/24 12993 -81.94.236.0/23 12993 -81.94.238.0/24 49036 -81.94.239.0/24 12993 -81.94.240.0/20 12301 -81.95.0.0/20 201011 -81.95.16.0/20 34042 -81.95.32.0/20 8491 -81.95.48.0/20 8553 -81.95.64.0/22 25247 -81.95.96.0/20 25234 -81.95.112.0/20 42160 -81.95.128.0/22 25227 -81.95.132.0/24 25227 -81.95.133.0/24 197673 -81.95.134.0/23 25227 -81.95.136.0/21 25227 -81.95.144.0/20 36351 -81.95.160.0/20 25249 -81.95.176.0/20 31148 -81.95.192.0/21 39816 -81.95.200.0/24 50828 -81.95.201.0/24 39816 -81.95.202.0/24 62308 -81.95.203.0/24 39816 -81.95.204.0/22 39816 -81.95.208.0/20 20631 -81.95.224.0/20 12365 -81.95.240.0/20 42418 -81.96.0.0/12 5089 -81.112.0.0/15 20959 -81.114.0.0/16 20959 -81.115.0.0/18 20959 -81.115.64.0/19 20959 -81.115.96.0/21 20959 -81.115.104.0/22 20959 -81.115.108.0/23 20959 -81.115.110.0/24 20746 -81.115.111.0/24 20959 -81.115.112.0/22 20959 -81.115.116.0/23 20959 -81.115.118.0/23 20746 -81.115.120.0/21 20959 -81.115.128.0/17 20959 -81.116.0.0/16 20959 -81.117.0.0/17 20959 -81.117.128.0/19 20959 -81.117.160.0/20 20959 -81.117.176.0/21 20959 -81.117.184.0/23 20959 -81.117.186.0/24 20959 -81.117.187.0/24 20746 -81.117.188.0/24 20746 -81.117.189.0/24 20959 -81.117.190.0/23 20959 -81.117.192.0/18 20959 -81.118.0.0/18 20959 -81.118.64.0/19 20959 -81.118.96.0/21 20959 -81.118.104.0/22 20959 -81.118.108.0/23 20959 -81.118.110.0/24 20959 -81.118.111.0/24 3269 -81.118.112.0/20 20959 -81.118.128.0/17 20959 -81.119.0.0/17 20959 -81.119.128.0/23 20746 -81.119.130.0/23 20959 -81.119.132.0/23 20959 -81.119.134.0/24 20959 -81.119.135.0/24 20746 -81.119.136.0/24 20959 -81.119.137.0/24 20746 -81.119.138.0/23 20959 -81.119.140.0/22 20959 -81.119.144.0/20 20959 -81.119.160.0/19 20959 -81.119.192.0/18 20959 -81.120.0.0/15 20959 -81.122.0.0/16 20959 -81.123.0.0/17 20959 -81.123.128.0/19 20959 -81.123.160.0/20 20959 -81.123.176.0/22 20959 -81.123.180.0/22 20746 -81.123.184.0/24 20959 -81.123.185.0/24 20746 -81.123.186.0/24 20746 -81.123.187.0/24 20959 -81.123.188.0/23 20746 -81.123.190.0/23 20959 -81.123.192.0/18 20959 -81.124.0.0/18 20959 -81.124.64.0/19 20959 -81.124.96.0/20 20959 -81.124.112.0/22 20959 -81.124.116.0/24 20959 -81.124.117.0/24 20746 -81.124.118.0/23 20746 -81.124.120.0/23 20746 -81.124.122.0/23 20959 -81.124.124.0/23 20746 -81.124.126.0/23 20959 -81.124.128.0/17 20959 -81.125.0.0/18 20959 -81.125.64.0/19 20959 -81.125.96.0/20 20959 -81.125.112.0/21 20959 -81.125.120.0/23 20746 -81.125.122.0/23 20959 -81.125.124.0/24 20746 -81.125.125.0/24 20959 -81.125.126.0/24 20746 -81.125.127.0/24 20959 -81.125.128.0/24 20746 -81.125.129.0/24 20959 -81.125.130.0/23 20959 -81.125.132.0/24 20959 -81.125.133.0/24 20746 -81.125.134.0/24 20746 -81.125.135.0/24 20959 -81.125.136.0/23 20959 -81.125.138.0/24 20959 -81.125.139.0/24 20746 -81.125.140.0/24 20959 -81.125.141.0/24 20746 -81.125.142.0/23 20959 -81.125.144.0/20 20959 -81.125.160.0/19 20959 -81.125.192.0/18 20959 -81.126.0.0/15 3269 -81.128.0.0/13 2856 -81.136.0.0/14 2856 -81.140.0.0/17 6871 -81.140.128.0/19 6871 -81.140.160.0/19 2856 -81.140.192.0/18 2856 -81.141.0.0/16 2856 -81.142.0.0/15 2856 -81.144.0.0/12 2856 -81.160.128.0/17 30904 -81.161.0.0/21 48266 -81.161.8.0/22 200443 -81.161.16.0/20 59595 -81.161.32.0/20 48226 -81.161.48.0/21 203464 -81.161.56.0/23 198288 -81.161.58.0/24 34177 -81.161.59.0/24 44418 -81.161.60.0/23 59477 -81.161.64.0/20 59479 -81.161.80.0/20 25512 -81.161.96.0/23 198944 -81.161.99.0/24 59467 -81.161.100.0/22 35760 -81.161.104.0/21 35760 -81.161.112.0/23 199028 -81.161.114.0/24 59603 -81.161.115.0/24 16172 -81.161.116.0/22 59516 -81.161.120.0/21 59475 -81.161.128.0/18 15516 -81.161.192.0/20 58321 -81.161.208.0/20 9177 -81.161.224.0/23 47492 -81.161.226.0/24 43131 -81.161.227.0/24 47492 -81.161.228.0/22 43659 -81.161.232.0/22 207146 -81.161.239.0/24 40065 -81.161.240.0/20 28949 -81.162.16.0/21 198541 -81.162.24.0/21 47530 -81.162.32.0/20 49136 -81.162.48.0/21 57614 -81.162.56.0/21 42238 -81.162.64.0/20 198293 -81.162.80.0/20 31117 -81.162.96.0/19 57093 -81.162.128.0/18 57598 -81.162.192.0/21 34955 -81.162.202.0/24 34955 -81.162.206.0/23 34955 -81.162.208.0/21 199585 -81.162.216.0/21 57612 -81.162.224.0/19 44032 -81.163.0.0/21 58303 -81.163.8.0/21 57221 -81.163.32.0/19 57227 -81.163.64.0/21 203730 -81.163.72.0/21 57223 -81.163.80.0/21 41616 -81.163.88.0/21 50649 -81.163.96.0/20 197585 -81.163.112.0/20 42530 -81.163.128.0/19 47694 -81.163.160.0/19 42589 -81.163.192.0/23 12843 -81.163.196.0/22 31662 -81.163.200.0/21 59782 -81.163.208.0/21 57242 -81.163.216.0/21 42905 -81.163.224.0/20 48320 -81.163.240.0/20 51973 -81.164.0.0/15 6848 -81.166.0.0/15 29695 -81.168.0.0/17 12513 -81.168.128.0/18 12741 -81.168.192.0/19 12741 -81.168.224.0/20 12741 -81.168.240.0/21 12741 -81.168.248.0/22 12741 -81.168.252.0/23 12741 -81.168.254.0/24 31165 -81.168.255.0/24 12741 -81.169.0.0/17 5432 -81.169.128.0/17 6724 -81.170.0.0/17 9105 -81.170.128.0/17 8473 -81.171.0.0/19 60781 -81.171.32.0/22 12989 -81.171.36.0/23 12989 -81.171.38.0/24 12989 -81.171.39.0/24 34305 -81.171.40.0/21 12989 -81.171.48.0/24 12989 -81.171.49.0/24 199156 -81.171.50.0/23 12989 -81.171.52.0/22 3257 -81.171.56.0/22 12989 -81.171.60.0/24 12989 -81.171.61.0/24 33438 -81.171.62.0/23 12989 -81.171.64.0/20 12989 -81.171.80.0/23 12989 -81.171.82.0/24 34305 -81.171.83.0/24 34343 -81.171.84.0/24 34305 -81.171.85.0/24 12989 -81.171.86.0/23 12989 -81.171.88.0/24 34305 -81.171.89.0/24 12989 -81.171.90.0/23 12989 -81.171.92.0/22 12989 -81.171.96.0/24 34305 -81.171.97.0/24 12989 -81.171.98.0/24 12989 -81.171.99.0/24 34305 -81.171.100.0/23 34305 -81.171.102.0/24 12989 -81.171.103.0/24 199156 -81.171.104.0/22 12989 -81.171.108.0/24 33438 -81.171.109.0/24 12989 -81.171.110.0/23 12989 -81.171.112.0/24 199156 -81.171.113.0/24 12989 -81.171.114.0/23 12989 -81.171.116.0/22 12989 -81.171.120.0/23 12989 -81.171.122.0/24 12989 -81.171.123.0/24 199156 -81.171.124.0/22 12989 -81.171.128.0/17 8426 -81.172.0.0/17 12430 -81.172.128.0/17 34610 -81.173.0.0/22 24730 -81.173.4.0/24 24730 -81.173.6.0/24 57353 -81.173.7.0/24 50522 -81.173.8.0/24 199843 -81.173.9.0/24 199391 -81.173.10.0/23 199391 -81.173.12.0/22 199256 -81.173.16.0/21 4134 -81.173.32.0/23 50522 -81.173.34.0/24 41887 -81.173.35.0/24 24730 -81.173.36.0/22 200583 -81.173.40.0/23 198731 -81.173.42.0/24 201822 -81.173.43.0/24 201419 -81.173.44.0/22 51942 -81.173.48.0/20 50522 -81.173.64.0/20 50522 -81.173.96.0/22 50522 -81.173.104.0/21 12956 -81.173.112.0/22 51862 -81.173.124.0/24 24730 -81.173.125.0/24 50522 -81.173.126.0/23 50522 -81.173.128.0/17 8422 -81.174.0.0/18 35612 -81.174.64.0/22 3313 -81.174.68.0/23 3313 -81.174.70.0/24 3313 -81.174.71.0/24 32787 -81.174.72.0/21 3313 -81.174.80.0/20 3313 -81.174.96.0/19 3313 -81.174.128.0/17 6871 -81.175.0.0/20 2116 -81.175.16.0/22 199791 -81.175.20.0/22 2116 -81.175.24.0/21 2116 -81.175.32.0/19 2116 -81.175.64.0/18 6830 -81.175.128.0/17 16086 -81.176.0.0/22 8342 -81.176.4.0/24 199745 -81.176.5.0/24 8342 -81.176.6.0/23 8342 -81.176.8.0/21 8342 -81.176.16.0/20 8342 -81.176.32.0/19 8342 -81.176.64.0/18 8342 -81.176.128.0/18 8342 -81.176.192.0/20 8342 -81.176.208.0/21 8342 -81.176.216.0/24 12389 -81.176.217.0/24 8342 -81.176.218.0/23 8342 -81.176.220.0/22 8342 -81.176.224.0/19 8342 -81.177.0.0/19 8342 -81.177.32.0/20 8342 -81.177.48.0/21 8342 -81.177.56.0/21 48176 -81.177.64.0/21 8342 -81.177.72.0/23 8359 -81.177.74.0/24 8359 -81.177.75.0/24 21103 -81.177.76.0/23 8359 -81.177.78.0/24 8359 -81.177.79.0/24 39294 -81.177.80.0/20 8342 -81.177.96.0/19 12389 -81.177.128.0/19 8342 -81.177.160.0/20 8342 -81.177.176.0/21 8342 -81.177.184.0/24 48176 -81.177.185.0/24 200953 -81.177.186.0/24 199833 -81.177.187.0/24 207827 -81.177.188.0/22 48176 -81.177.193.0/24 200953 -81.177.196.0/23 200982 -81.177.200.0/21 48176 -81.177.208.0/20 8439 -81.177.224.0/20 48176 -81.177.240.0/21 48176 -81.177.248.0/22 48176 -81.177.252.0/23 48176 -81.177.254.0/23 199833 -81.178.0.0/15 9105 -81.180.0.0/20 15471 -81.180.16.0/21 16220 -81.180.24.0/24 6830 -81.180.25.0/24 34283 -81.180.26.0/24 34060 -81.180.31.0/24 30890 -81.180.32.0/19 8708 -81.180.64.0/20 9199 -81.180.83.0/24 28721 -81.180.84.0/23 9199 -81.180.86.0/24 2614 -81.180.88.0/24 2614 -81.180.90.0/23 47427 -81.180.92.0/24 33875 -81.180.96.0/22 25409 -81.180.102.0/24 28721 -81.180.112.0/20 6910 -81.180.128.0/20 8708 -81.180.144.0/23 8708 -81.180.146.0/24 8708 -81.180.147.0/24 9050 -81.180.148.0/22 8708 -81.180.152.0/21 8708 -81.180.176.0/20 12302 -81.180.192.0/21 8953 -81.180.200.0/24 42203 -81.180.201.0/24 6663 -81.180.203.0/24 57136 -81.180.206.0/24 6663 -81.180.208.0/20 2614 -81.180.224.0/22 8751 -81.180.228.0/23 8751 -81.180.231.0/24 8751 -81.180.234.0/24 8751 -81.180.239.0/24 8751 -81.180.240.0/21 21300 -81.180.248.0/24 21462 -81.180.250.0/23 2614 -81.180.252.0/24 2614 -81.181.0.0/24 49052 -81.181.1.0/24 30890 -81.181.3.0/24 30890 -81.181.4.0/22 30890 -81.181.8.0/24 59590 -81.181.9.0/24 30890 -81.181.11.0/24 34732 -81.181.12.0/24 30890 -81.181.13.0/24 34353 -81.181.14.0/24 6663 -81.181.16.0/22 6830 -81.181.20.0/24 29171 -81.181.21.0/24 33875 -81.181.24.0/24 33875 -81.181.32.0/20 6830 -81.181.65.0/24 58247 -81.181.70.0/24 2614 -81.181.71.0/24 58247 -81.181.74.0/24 8708 -81.181.76.0/24 31554 -81.181.77.0/24 60104 -81.181.78.0/23 31554 -81.181.81.0/24 34060 -81.181.85.0/24 41028 -81.181.86.0/24 6663 -81.181.88.0/21 6663 -81.181.100.0/24 41984 -81.181.101.0/24 2614 -81.181.112.0/22 8708 -81.181.116.0/23 8708 -81.181.118.0/24 50336 -81.181.119.0/24 8708 -81.181.120.0/21 8708 -81.181.128.0/22 8708 -81.181.135.0/24 9050 -81.181.136.0/21 8708 -81.181.145.0/24 12439 -81.181.146.0/23 8751 -81.181.148.0/24 12310 -81.181.152.0/24 39573 -81.181.155.0/24 41984 -81.181.156.0/24 2614 -81.181.160.0/20 8708 -81.181.181.0/24 35505 -81.181.192.0/24 49052 -81.181.193.0/24 33961 -81.181.199.0/24 28721 -81.181.202.0/23 28925 -81.181.207.0/24 31313 -81.181.210.0/24 12310 -81.181.212.0/24 41219 -81.181.213.0/24 31605 -81.181.215.0/24 12310 -81.181.224.0/20 5588 -81.181.241.0/24 6663 -81.181.244.0/24 9050 -81.181.246.0/24 39108 -81.181.247.0/24 2614 -81.181.249.0/24 28721 -81.181.250.0/24 56654 -81.181.252.0/22 5588 -81.182.0.0/15 5483 -81.184.0.0/21 6739 -81.184.8.0/21 12357 -81.184.16.0/23 6739 -81.184.18.0/23 12357 -81.184.20.0/22 12357 -81.184.24.0/21 12357 -81.184.32.0/20 12357 -81.184.48.0/21 6739 -81.184.56.0/21 12357 -81.184.64.0/18 12357 -81.184.128.0/18 12357 -81.184.192.0/21 12357 -81.184.200.0/22 12357 -81.184.204.0/23 6739 -81.184.206.0/23 12357 -81.184.208.0/21 12357 -81.184.216.0/23 12357 -81.184.218.0/23 6739 -81.184.220.0/22 12357 -81.184.224.0/21 6739 -81.184.232.0/21 12357 -81.184.240.0/20 6739 -81.185.0.0/16 12626 -81.186.0.0/17 8248 -81.186.128.0/18 8248 -81.186.192.0/19 8248 -81.186.224.0/20 35174 -81.186.240.0/20 15782 -81.187.0.0/19 20712 -81.187.32.0/21 20712 -81.187.40.0/23 20712 -81.187.42.0/24 41489 -81.187.43.0/24 20712 -81.187.44.0/22 20712 -81.187.48.0/20 20712 -81.187.64.0/19 20712 -81.187.96.0/20 41489 -81.187.112.0/20 20712 -81.187.128.0/24 41489 -81.187.129.0/24 20712 -81.187.130.0/23 20712 -81.187.132.0/22 20712 -81.187.136.0/21 20712 -81.187.144.0/20 20712 -81.187.160.0/19 20712 -81.187.192.0/18 20712 -81.188.0.0/17 4589 -81.188.128.0/19 4589 -81.188.160.0/24 3257 -81.188.161.0/24 4589 -81.188.162.0/23 4589 -81.188.164.0/22 4589 -81.188.168.0/21 4589 -81.188.176.0/20 4589 -81.188.192.0/18 4589 -81.189.0.0/16 8437 -81.190.0.0/16 21021 -81.191.0.0/16 2116 -81.192.0.0/16 6713 -81.193.0.0/16 3243 -81.194.0.0/16 2200 -81.195.0.0/17 8359 -81.195.128.0/18 8359 -81.195.192.0/19 8359 -81.195.224.0/21 8359 -81.195.232.0/22 8359 -81.195.236.0/23 8359 -81.195.238.0/24 28884 -81.195.239.0/24 39811 -81.195.240.0/20 8359 -81.196.0.0/16 8708 -81.197.0.0/16 719 -81.198.0.0/18 12578 -81.198.64.0/21 12578 -81.198.72.0/24 12578 -81.198.73.0/24 34073 -81.198.74.0/23 12578 -81.198.76.0/22 12578 -81.198.80.0/20 12578 -81.198.96.0/19 12578 -81.198.128.0/19 12578 -81.198.160.0/22 12578 -81.198.164.0/23 12578 -81.198.166.0/23 12525 -81.198.168.0/22 12578 -81.198.172.0/23 12578 -81.198.174.0/24 6906 -81.198.175.0/24 12578 -81.198.176.0/20 12578 -81.198.192.0/22 34073 -81.198.196.0/22 12578 -81.198.200.0/21 12578 -81.198.208.0/20 12578 -81.198.224.0/19 12578 -81.199.0.0/24 12491 -81.199.2.0/23 12491 -81.199.4.0/22 12491 -81.199.8.0/22 12491 -81.199.14.0/24 36892 -81.199.16.0/22 12491 -81.199.21.0/24 12491 -81.199.32.0/19 12491 -81.199.64.0/20 12491 -81.199.80.0/21 12491 -81.199.88.0/24 12491 -81.199.89.0/24 36892 -81.199.90.0/23 12491 -81.199.92.0/22 12491 -81.199.101.0/24 12491 -81.199.102.0/23 12491 -81.199.104.0/23 12491 -81.199.106.0/24 12491 -81.199.108.0/22 12491 -81.199.116.0/23 29165 -81.199.118.0/23 12491 -81.199.120.0/22 29165 -81.199.124.0/24 12491 -81.199.128.0/24 12491 -81.199.130.0/23 12491 -81.199.132.0/22 57731 -81.199.136.0/22 12491 -81.199.141.0/24 12491 -81.199.142.0/23 12491 -81.199.144.0/24 12491 -81.199.146.0/23 12491 -81.199.148.0/22 12491 -81.199.152.0/21 12491 -81.199.160.0/21 12491 -81.199.169.0/24 22351 -81.199.170.0/23 22351 -81.199.172.0/22 12491 -81.199.176.0/20 12491 -81.199.192.0/24 12491 -81.199.194.0/23 12491 -81.199.196.0/24 12491 -81.199.198.0/24 12491 -81.199.200.0/21 12491 -81.199.208.0/22 12491 -81.199.212.0/24 12491 -81.199.215.0/24 12491 -81.199.216.0/24 12491 -81.199.218.0/23 12491 -81.199.220.0/22 12491 -81.199.224.0/20 12491 -81.199.240.0/21 12491 -81.199.248.0/23 12491 -81.199.250.0/23 29165 -81.199.252.0/22 29165 -81.200.0.0/19 29124 -81.200.32.0/20 28768 -81.200.48.0/20 41046 -81.200.64.0/22 26008 -81.200.68.0/23 26008 -81.200.80.0/20 41109 -81.200.96.0/20 42652 -81.200.112.0/21 198610 -81.200.120.0/22 52060 -81.200.128.0/23 202552 -81.200.130.0/23 15589 -81.200.132.0/22 15589 -81.200.136.0/22 15589 -81.200.140.0/22 202552 -81.200.144.0/20 41070 -81.200.160.0/20 49251 -81.200.176.0/20 50664 -81.200.192.0/24 34156 -81.200.193.0/24 25325 -81.200.194.0/24 25325 -81.200.195.0/24 34156 -81.200.196.0/24 25325 -81.200.197.0/24 34156 -81.200.198.0/24 25325 -81.200.199.0/24 34156 -81.200.200.0/21 34156 -81.200.208.0/20 39264 -81.200.224.0/21 25350 -81.200.240.0/20 41148 -81.201.0.0/20 25305 -81.201.16.0/20 8359 -81.201.32.0/20 3320 -81.201.48.0/20 8251 -81.201.64.0/20 203730 -81.201.80.0/20 41135 -81.201.96.0/22 15830 -81.201.100.0/23 15830 -81.201.104.0/23 15830 -81.201.108.0/22 15830 -81.201.112.0/22 15830 -81.201.118.0/23 15830 -81.201.124.0/22 15830 -81.201.128.0/20 61323 -81.201.144.0/20 16205 -81.201.176.0/20 41157 -81.201.192.0/20 25353 -81.201.208.0/20 41175 -81.201.224.0/20 12923 -81.201.240.0/20 21365 -81.202.0.0/18 12357 -81.202.64.0/20 6739 -81.202.80.0/22 12357 -81.202.84.0/22 6739 -81.202.88.0/21 12357 -81.202.96.0/19 12357 -81.202.128.0/20 12357 -81.202.144.0/24 12357 -81.202.145.0/24 6739 -81.202.146.0/23 12357 -81.202.148.0/22 12357 -81.202.152.0/21 12357 -81.202.160.0/19 12357 -81.202.192.0/19 6739 -81.202.224.0/19 12357 -81.203.0.0/19 6739 -81.203.32.0/20 6739 -81.203.48.0/21 12357 -81.203.56.0/22 6739 -81.203.60.0/23 6739 -81.203.62.0/23 12357 -81.203.64.0/19 12357 -81.203.96.0/22 6739 -81.203.100.0/22 12357 -81.203.104.0/22 12357 -81.203.108.0/22 6739 -81.203.112.0/20 6739 -81.203.128.0/18 6739 -81.203.192.0/21 6739 -81.203.200.0/21 12357 -81.203.208.0/20 12357 -81.203.224.0/21 12357 -81.203.232.0/22 12357 -81.203.236.0/22 6739 -81.203.240.0/21 12357 -81.203.248.0/21 6739 -81.204.0.0/14 1136 -81.208.0.0/17 12874 -81.208.128.0/17 25343 -81.209.0.0/17 15527 -81.209.128.0/22 13237 -81.209.132.0/24 198710 -81.209.133.0/24 13237 -81.209.134.0/23 13237 -81.209.136.0/21 13237 -81.209.144.0/22 31197 -81.209.148.0/23 13237 -81.209.150.0/24 13237 -81.209.151.0/24 198710 -81.209.152.0/23 13237 -81.209.154.0/23 198710 -81.209.156.0/23 13237 -81.209.158.0/24 13237 -81.209.159.0/24 198710 -81.209.160.0/20 13237 -81.209.176.0/23 13237 -81.209.178.0/24 13237 -81.209.179.0/24 31197 -81.209.180.0/22 24640 -81.209.184.0/24 13237 -81.209.185.0/24 31197 -81.209.186.0/23 13237 -81.209.188.0/22 13237 -81.209.192.0/22 13237 -81.209.196.0/22 24640 -81.209.200.0/23 31197 -81.209.202.0/23 13237 -81.209.204.0/22 13237 -81.209.208.0/20 13237 -81.209.224.0/20 13237 -81.209.240.0/21 13237 -81.209.248.0/21 60380 -81.210.0.0/17 12741 -81.210.128.0/17 6830 -81.211.0.0/18 3216 -81.211.64.0/20 3216 -81.211.80.0/21 3216 -81.211.88.0/23 3216 -81.211.90.0/24 3216 -81.211.91.0/24 30924 -81.211.92.0/22 3216 -81.211.96.0/19 3216 -81.211.130.0/24 48503 -81.211.133.0/24 48503 -81.211.150.0/24 48503 -81.211.172.0/24 48503 -81.211.193.0/24 48503 -81.211.194.0/23 48503 -81.211.196.0/22 48503 -81.211.201.0/24 48503 -81.211.202.0/23 48503 -81.211.204.0/24 48503 -81.211.250.0/24 48503 -81.212.0.0/16 9121 -81.213.0.0/19 9121 -81.213.32.0/20 9121 -81.213.48.0/21 9121 -81.213.56.0/23 9121 -81.213.58.0/24 9121 -81.213.59.0/24 47331 -81.213.60.0/23 9121 -81.213.62.0/24 47331 -81.213.63.0/24 9121 -81.213.64.0/21 47331 -81.213.72.0/21 9121 -81.213.80.0/20 47331 -81.213.96.0/24 9121 -81.213.97.0/24 47331 -81.213.98.0/23 47331 -81.213.100.0/23 9121 -81.213.102.0/23 47331 -81.213.104.0/24 9121 -81.213.105.0/24 47331 -81.213.106.0/24 9121 -81.213.107.0/24 47331 -81.213.108.0/22 9121 -81.213.112.0/21 47331 -81.213.120.0/21 9121 -81.213.128.0/24 47331 -81.213.129.0/24 9121 -81.213.130.0/23 47331 -81.213.132.0/24 47331 -81.213.133.0/24 9121 -81.213.134.0/24 47331 -81.213.135.0/24 9121 -81.213.136.0/23 9121 -81.213.138.0/23 47331 -81.213.140.0/22 9121 -81.213.144.0/22 47331 -81.213.148.0/24 9121 -81.213.149.0/24 47331 -81.213.150.0/23 47331 -81.213.152.0/22 9121 -81.213.156.0/22 47331 -81.213.160.0/22 9121 -81.213.164.0/24 47331 -81.213.165.0/24 9121 -81.213.166.0/23 47331 -81.213.168.0/22 9121 -81.213.172.0/22 47331 -81.213.176.0/21 9121 -81.213.184.0/21 47331 -81.213.192.0/21 47331 -81.213.200.0/24 47331 -81.213.201.0/24 9121 -81.213.202.0/23 9121 -81.213.204.0/22 47331 -81.213.208.0/22 47331 -81.213.212.0/23 47331 -81.213.214.0/23 9121 -81.213.216.0/23 9121 -81.213.218.0/23 47331 -81.213.220.0/22 47331 -81.213.224.0/20 47331 -81.213.240.0/20 9121 -81.214.0.0/21 47331 -81.214.8.0/22 47331 -81.214.12.0/24 9121 -81.214.13.0/24 47331 -81.214.14.0/23 9121 -81.214.16.0/22 47331 -81.214.20.0/22 9121 -81.214.24.0/24 47331 -81.214.25.0/24 9121 -81.214.26.0/23 47331 -81.214.28.0/23 47331 -81.214.30.0/24 47331 -81.214.31.0/24 9121 -81.214.32.0/22 47331 -81.214.36.0/24 9121 -81.214.37.0/24 47331 -81.214.38.0/23 9121 -81.214.40.0/21 9121 -81.214.48.0/23 47331 -81.214.50.0/23 9121 -81.214.52.0/24 9121 -81.214.53.0/24 47331 -81.214.54.0/23 9121 -81.214.56.0/23 9121 -81.214.58.0/24 47331 -81.214.59.0/24 9121 -81.214.60.0/24 9121 -81.214.61.0/24 47331 -81.214.62.0/23 9121 -81.214.64.0/21 47331 -81.214.72.0/23 47331 -81.214.74.0/23 9121 -81.214.76.0/22 9121 -81.214.80.0/22 47331 -81.214.84.0/22 9121 -81.214.88.0/22 47331 -81.214.92.0/23 9121 -81.214.94.0/24 9121 -81.214.95.0/24 47331 -81.214.96.0/23 9121 -81.214.98.0/24 9121 -81.214.99.0/24 47331 -81.214.100.0/22 47331 -81.214.104.0/22 47331 -81.214.108.0/22 9121 -81.214.112.0/20 9121 -81.214.128.0/21 9121 -81.214.136.0/22 9121 -81.214.140.0/22 47331 -81.214.144.0/20 47331 -81.214.160.0/20 47331 -81.214.176.0/21 47331 -81.214.184.0/22 47331 -81.214.188.0/22 9121 -81.214.192.0/24 9121 -81.214.193.0/24 47331 -81.214.194.0/24 47331 -81.214.195.0/24 9121 -81.214.196.0/23 47331 -81.214.198.0/23 9121 -81.214.200.0/22 47331 -81.214.204.0/22 9121 -81.214.208.0/21 9121 -81.214.216.0/21 47331 -81.214.224.0/20 9121 -81.214.240.0/22 47331 -81.214.244.0/23 47331 -81.214.246.0/24 9121 -81.214.247.0/24 47331 -81.214.248.0/22 47331 -81.214.252.0/22 9121 -81.215.0.0/24 9121 -81.215.1.0/24 47331 -81.215.2.0/23 47331 -81.215.4.0/22 47331 -81.215.8.0/21 47331 -81.215.16.0/21 47331 -81.215.24.0/22 47331 -81.215.28.0/22 9121 -81.215.32.0/24 9121 -81.215.33.0/24 47331 -81.215.34.0/23 47331 -81.215.36.0/24 47331 -81.215.37.0/24 9121 -81.215.38.0/24 9121 -81.215.39.0/24 47331 -81.215.40.0/24 47331 -81.215.41.0/24 9121 -81.215.42.0/24 47331 -81.215.43.0/24 9121 -81.215.44.0/23 9121 -81.215.46.0/23 47331 -81.215.48.0/21 47331 -81.215.56.0/22 47331 -81.215.60.0/24 9121 -81.215.61.0/24 47331 -81.215.62.0/23 47331 -81.215.64.0/19 47331 -81.215.96.0/23 47331 -81.215.98.0/24 47331 -81.215.99.0/24 9121 -81.215.100.0/22 47331 -81.215.104.0/24 9121 -81.215.105.0/24 47331 -81.215.106.0/23 9121 -81.215.108.0/22 9121 -81.215.112.0/20 47331 -81.215.128.0/19 47331 -81.215.160.0/20 9121 -81.215.176.0/22 9121 -81.215.180.0/22 47331 -81.215.184.0/21 47331 -81.215.192.0/20 9121 -81.215.208.0/23 47331 -81.215.210.0/24 9121 -81.215.211.0/24 47331 -81.215.212.0/22 47331 -81.215.216.0/21 9121 -81.215.224.0/23 47331 -81.215.226.0/23 9121 -81.215.228.0/22 9121 -81.215.232.0/21 47331 -81.215.240.0/23 47331 -81.215.242.0/24 9121 -81.215.243.0/24 47331 -81.215.244.0/22 47331 -81.215.248.0/21 47331 -81.216.0.0/20 3246 -81.216.16.0/23 3246 -81.216.18.0/23 3292 -81.216.20.0/23 3246 -81.216.22.0/24 3246 -81.216.23.0/24 3292 -81.216.24.0/21 3246 -81.216.32.0/19 3246 -81.216.64.0/18 3246 -81.216.128.0/17 3246 -81.217.0.0/16 8339 -81.218.0.0/18 8551 -81.218.64.0/19 8551 -81.218.96.0/22 8551 -81.218.100.0/23 8551 -81.218.102.0/24 6810 -81.218.103.0/24 8551 -81.218.104.0/21 8551 -81.218.112.0/20 8551 -81.218.128.0/17 8551 -81.219.0.0/16 12741 -81.220.0.0/16 21502 -81.221.0.0/16 1836 -81.222.0.0/18 3216 -81.222.64.0/20 8402 -81.222.80.0/22 29125 -81.222.84.0/22 8402 -81.222.88.0/21 8402 -81.222.96.0/23 31368 -81.222.100.0/23 31368 -81.222.103.0/24 31368 -81.222.105.0/24 31368 -81.222.107.0/24 31368 -81.222.111.0/24 31368 -81.222.112.0/20 3216 -81.222.128.0/20 20597 -81.222.144.0/20 3216 -81.222.160.0/20 20597 -81.222.176.0/21 3216 -81.222.184.0/22 16345 -81.222.188.0/22 3216 -81.222.192.0/18 20597 -81.223.0.0/16 6830 -81.224.0.0/12 3301 -81.240.0.0/13 5432 -81.248.0.0/14 3215 -81.252.0.0/17 3215 -81.252.128.0/19 3215 -81.252.160.0/21 3215 -81.252.168.0/22 3215 -81.252.172.0/24 3215 -81.252.173.0/24 21272 -81.252.174.0/23 3215 -81.252.176.0/21 3215 -81.252.184.0/22 3215 -81.252.188.0/24 3215 -81.252.189.0/24 24763 -81.252.190.0/23 3215 -81.252.192.0/18 3215 -81.253.0.0/19 28708 -81.254.0.0/16 3215 -81.255.0.0/17 3215 -81.255.128.0/21 3215 -81.255.136.0/24 5377 -81.255.137.0/24 3215 -81.255.138.0/23 3215 -81.255.140.0/22 3215 -81.255.144.0/21 3215 -81.255.152.0/23 3215 -81.255.154.0/23 31629 -81.255.156.0/24 31660 -81.255.157.0/24 3215 -81.255.158.0/23 3215 -81.255.160.0/20 3215 -81.255.176.0/23 3215 -81.255.178.0/24 16236 -81.255.179.0/24 3215 -81.255.180.0/22 3215 -81.255.184.0/21 3215 -81.255.192.0/18 3215 -82.0.0.0/11 5089 -82.32.0.0/12 5089 -82.48.0.0/14 3269 -82.52.0.0/16 3269 -82.53.0.0/17 3269 -82.53.128.0/19 3269 -82.53.160.0/20 3269 -82.53.176.0/21 3269 -82.53.184.0/23 3269 -82.53.186.0/24 3269 -82.53.187.0/24 20746 -82.53.188.0/22 3269 -82.53.192.0/18 3269 -82.54.0.0/15 3269 -82.56.0.0/16 3269 -82.57.0.0/17 3269 -82.57.128.0/18 3269 -82.57.192.0/21 3269 -82.57.200.0/21 20580 -82.57.208.0/21 20580 -82.57.216.0/21 3269 -82.57.224.0/19 3269 -82.58.0.0/15 3269 -82.60.0.0/14 3269 -82.64.0.0/14 12322 -82.68.0.0/14 13037 -82.72.0.0/14 33915 -82.76.0.0/15 8708 -82.78.0.0/16 8708 -82.79.0.0/18 8708 -82.79.64.0/19 8708 -82.79.96.0/20 8708 -82.79.112.0/22 8708 -82.79.116.0/23 8708 -82.79.118.0/24 8708 -82.79.119.0/24 12632 -82.79.120.0/21 8708 -82.79.128.0/17 8708 -82.80.0.0/16 8551 -82.81.0.0/18 8551 -82.81.64.0/20 8551 -82.81.80.0/21 8551 -82.81.88.0/22 8551 -82.81.92.0/24 8551 -82.81.93.0/24 22363 -82.81.94.0/23 8551 -82.81.96.0/19 8551 -82.81.128.0/17 8551 -82.82.0.0/15 3209 -82.84.0.0/16 8612 -82.85.0.0/17 8612 -82.85.128.0/19 8612 -82.85.160.0/20 8612 -82.85.176.0/24 201935 -82.85.177.0/24 8612 -82.85.178.0/23 8612 -82.85.180.0/22 8612 -82.85.184.0/21 8612 -82.85.192.0/18 8612 -82.86.0.0/15 39738 -82.88.0.0/14 3269 -82.92.0.0/14 3265 -82.96.0.0/22 16150 -82.96.4.0/24 12552 -82.96.5.0/24 16150 -82.96.6.0/24 16150 -82.96.7.0/24 12552 -82.96.8.0/23 12552 -82.96.10.0/24 16150 -82.96.11.0/24 12552 -82.96.12.0/23 16150 -82.96.14.0/24 16150 -82.96.15.0/24 12552 -82.96.16.0/23 39369 -82.96.18.0/24 39369 -82.96.19.0/24 12552 -82.96.20.0/24 12552 -82.96.21.0/24 39369 -82.96.22.0/23 39369 -82.96.24.0/21 12552 -82.96.32.0/24 12552 -82.96.33.0/24 39369 -82.96.34.0/23 39369 -82.96.36.0/23 39369 -82.96.38.0/23 12552 -82.96.40.0/23 39369 -82.96.42.0/24 39369 -82.96.43.0/24 12552 -82.96.44.0/22 39369 -82.96.48.0/21 39369 -82.96.56.0/22 39369 -82.96.60.0/24 12552 -82.96.61.0/24 39369 -82.96.62.0/23 39369 -82.96.64.0/18 29686 -82.96.128.0/18 25009 -82.96.192.0/18 8359 -82.97.0.0/18 8554 -82.97.64.0/18 30774 -82.97.128.0/18 13101 -82.97.192.0/23 209519 -82.97.194.0/23 199809 -82.97.196.0/23 209519 -82.97.198.0/24 29076 -82.97.199.0/24 209519 -82.97.200.0/24 209519 -82.97.201.0/24 29076 -82.97.202.0/24 199809 -82.97.203.0/24 21287 -82.97.204.0/22 21287 -82.97.208.0/20 29256 -82.97.241.0/24 198357 -82.97.243.0/24 60932 -82.97.246.0/24 198357 -82.98.0.0/18 30801 -82.98.64.0/20 12306 -82.98.80.0/23 12306 -82.98.82.0/24 205766 -82.98.83.0/24 12306 -82.98.84.0/23 12306 -82.98.86.0/24 12306 -82.98.87.0/24 205766 -82.98.88.0/23 12306 -82.98.90.0/24 44152 -82.98.91.0/24 12306 -82.98.92.0/22 12306 -82.98.96.0/19 12306 -82.98.128.0/18 42612 -82.98.192.0/21 6461 -82.98.200.0/21 13237 -82.98.208.0/20 13237 -82.98.224.0/22 13237 -82.98.228.0/23 13237 -82.98.230.0/24 13237 -82.98.231.0/24 60799 -82.98.232.0/21 6461 -82.98.240.0/21 6461 -82.98.248.0/24 35156 -82.98.249.0/24 6461 -82.98.250.0/23 6461 -82.98.252.0/22 6461 -82.99.0.0/18 12552 -82.99.64.0/18 31568 -82.99.128.0/18 25248 -82.99.192.0/20 16322 -82.99.208.0/22 16322 -82.99.212.0/23 16322 -82.99.214.0/24 16322 -82.99.215.0/24 60976 -82.99.216.0/22 60976 -82.99.220.0/22 16322 -82.99.224.0/24 205550 -82.99.225.0/24 16322 -82.99.226.0/23 16322 -82.99.228.0/22 16322 -82.99.232.0/22 16322 -82.99.236.0/23 16322 -82.99.238.0/24 60976 -82.99.239.0/24 16322 -82.99.240.0/23 16322 -82.99.242.0/23 60976 -82.99.244.0/24 60976 -82.99.245.0/24 16322 -82.99.246.0/23 16322 -82.99.248.0/21 16322 -82.100.0.0/18 29208 -82.100.64.0/18 13189 -82.100.128.0/19 29256 -82.100.160.0/20 29256 -82.100.176.0/21 29256 -82.100.184.0/21 139729 -82.100.192.0/18 25394 -82.101.0.0/18 12670 -82.101.64.0/18 29122 -82.101.128.0/18 37443 -82.101.192.0/18 33915 -82.102.0.0/22 200719 -82.102.4.0/24 31034 -82.102.5.0/24 200719 -82.102.6.0/24 200719 -82.102.7.0/24 24768 -82.102.8.0/21 20860 -82.102.16.0/20 9009 -82.102.32.0/19 15805 -82.102.64.0/24 30916 -82.102.65.0/24 8544 -82.102.66.0/23 30916 -82.102.68.0/22 8544 -82.102.72.0/23 30916 -82.102.74.0/24 30916 -82.102.75.0/24 8544 -82.102.76.0/23 30916 -82.102.78.0/24 30916 -82.102.79.0/24 16229 -82.102.80.0/24 16229 -82.102.81.0/24 8544 -82.102.82.0/23 8544 -82.102.84.0/22 8544 -82.102.88.0/24 30916 -82.102.89.0/24 8544 -82.102.90.0/23 8544 -82.102.92.0/24 8544 -82.102.93.0/24 35432 -82.102.94.0/24 8544 -82.102.95.0/24 35432 -82.102.96.0/23 8544 -82.102.98.0/24 16229 -82.102.99.0/24 8544 -82.102.100.0/24 8544 -82.102.101.0/24 16229 -82.102.102.0/23 16229 -82.102.104.0/22 8544 -82.102.108.0/23 16229 -82.102.110.0/23 8544 -82.102.112.0/23 16229 -82.102.114.0/24 16229 -82.102.115.0/24 8544 -82.102.116.0/24 8544 -82.102.117.0/24 16229 -82.102.118.0/24 16229 -82.102.119.0/24 8544 -82.102.120.0/23 8544 -82.102.122.0/24 8544 -82.102.123.0/24 199206 -82.102.124.0/24 16229 -82.102.125.0/24 8544 -82.102.126.0/23 8544 -82.102.128.0/19 12400 -82.102.160.0/24 12400 -82.102.161.0/24 9116 -82.102.162.0/23 12400 -82.102.164.0/22 12400 -82.102.168.0/21 12400 -82.102.176.0/20 12400 -82.102.192.0/18 15975 -82.103.0.0/18 1764 -82.103.64.0/24 44179 -82.103.65.0/24 8717 -82.103.66.0/23 8717 -82.103.68.0/22 8717 -82.103.72.0/22 8717 -82.103.76.0/23 29580 -82.103.78.0/24 29580 -82.103.79.0/24 203312 -82.103.80.0/24 35464 -82.103.81.0/24 8717 -82.103.82.0/24 8717 -82.103.83.0/24 29580 -82.103.84.0/22 8717 -82.103.88.0/21 8717 -82.103.96.0/22 8717 -82.103.100.0/24 29580 -82.103.101.0/24 8717 -82.103.102.0/23 8717 -82.103.104.0/24 35464 -82.103.105.0/24 29286 -82.103.106.0/23 8717 -82.103.108.0/22 8717 -82.103.112.0/24 42794 -82.103.113.0/24 8717 -82.103.114.0/23 8717 -82.103.116.0/22 8717 -82.103.120.0/22 8717 -82.103.124.0/24 29580 -82.103.125.0/24 198003 -82.103.126.0/23 8717 -82.103.128.0/18 30736 -82.103.192.0/18 719 -82.104.0.0/14 3269 -82.108.0.0/24 4589 -82.108.1.0/24 8190 -82.108.2.0/23 4589 -82.108.4.0/22 4589 -82.108.8.0/21 4589 -82.108.16.0/20 4589 -82.108.32.0/19 4589 -82.108.64.0/18 4589 -82.108.128.0/17 4589 -82.109.0.0/16 4589 -82.110.0.0/16 4589 -82.111.0.0/17 4589 -82.111.128.0/18 4589 -82.111.192.0/19 4589 -82.111.224.0/23 4589 -82.111.226.0/24 5607 -82.111.227.0/24 4589 -82.111.228.0/22 4589 -82.111.232.0/21 4589 -82.111.240.0/20 4589 -82.112.0.0/20 29304 -82.112.20.0/22 29304 -82.112.24.0/22 29304 -82.112.28.0/23 29304 -82.112.30.0/24 29304 -82.112.32.0/19 48642 -82.112.64.0/19 31236 -82.112.96.0/19 2914 -82.112.128.0/19 8681 -82.112.160.0/21 9051 -82.112.168.0/23 28819 -82.112.170.0/24 28819 -82.112.171.0/24 34224 -82.112.172.0/22 57551 -82.112.176.0/21 12714 -82.112.184.0/21 43267 -82.112.192.0/19 8220 -82.112.224.0/21 15773 -82.112.232.0/22 15773 -82.112.240.0/23 15773 -82.112.254.0/23 15773 -82.113.0.0/19 6758 -82.113.32.0/19 29208 -82.113.64.0/19 39477 -82.113.96.0/19 39706 -82.113.128.0/19 30827 -82.113.160.0/19 6067 -82.113.192.0/19 30848 -82.113.224.0/19 31273 -82.114.0.0/19 30835 -82.114.32.0/19 5504 -82.114.64.0/19 29170 -82.114.96.0/21 21353 -82.114.104.0/22 21353 -82.114.108.0/24 21353 -82.114.109.0/24 12772 -82.114.110.0/23 12772 -82.114.112.0/20 21353 -82.114.128.0/19 15757 -82.114.160.0/19 30873 -82.114.192.0/19 41046 -82.114.224.0/19 44552 -82.115.0.0/22 31732 -82.115.15.0/24 208273 -82.115.18.0/24 41152 -82.115.20.0/23 43395 -82.115.22.0/23 41152 -82.115.29.0/24 44349 -82.115.32.0/20 15736 -82.115.48.0/22 15736 -82.115.52.0/23 15736 -82.115.56.0/21 15736 -82.115.64.0/19 16340 -82.115.96.0/19 12360 -82.115.128.0/20 30795 -82.115.144.0/23 30795 -82.115.146.0/24 209705 -82.115.147.0/24 30795 -82.115.148.0/22 30795 -82.115.152.0/21 30795 -82.115.160.0/19 12445 -82.115.208.0/22 52055 -82.115.213.0/24 203020 -82.115.214.0/24 14618 -82.115.215.0/24 203020 -82.115.216.0/23 62075 -82.115.220.0/24 210286 -82.115.221.0/24 200449 -82.115.222.0/23 209821 -82.116.0.0/19 31425 -82.116.32.0/20 30936 -82.116.48.0/21 30936 -82.116.56.0/22 30936 -82.116.60.0/24 30936 -82.116.61.0/24 21375 -82.116.62.0/24 30936 -82.116.63.0/24 44324 -82.116.64.0/19 2119 -82.116.96.0/19 15594 -82.116.128.0/24 24627 -82.116.130.0/23 25122 -82.116.136.0/24 24627 -82.116.148.0/24 24627 -82.116.160.0/19 12319 -82.116.192.0/19 3268 -82.116.224.0/19 49826 -82.117.0.0/19 35223 -82.117.32.0/19 16186 -82.117.64.0/21 25549 -82.117.72.0/22 25549 -82.117.76.0/23 25549 -82.117.78.0/23 48758 -82.117.80.0/20 9009 -82.117.96.0/19 45011 -82.117.128.0/19 25512 -82.117.160.0/19 31036 -82.117.192.0/19 31042 -82.117.224.0/19 34248 -82.118.0.0/20 57869 -82.118.16.0/22 15626 -82.118.20.0/22 204957 -82.118.24.0/21 57238 -82.118.32.0/19 5539 -82.118.64.0/22 3561 -82.118.68.0/23 3561 -82.118.70.0/24 17389 -82.118.71.0/24 3561 -82.118.72.0/21 3561 -82.118.80.0/20 3561 -82.118.96.0/19 8607 -82.118.128.0/19 13105 -82.118.160.0/19 34426 -82.118.192.0/19 719 -82.118.224.0/24 57344 -82.118.225.0/24 200628 -82.118.226.0/24 44901 -82.118.227.0/24 203380 -82.118.228.0/24 20521 -82.118.229.0/24 31083 -82.118.230.0/24 203380 -82.118.231.0/24 34376 -82.118.232.0/24 34376 -82.118.233.0/24 53107 -82.118.234.0/23 203380 -82.118.236.0/23 44901 -82.118.238.0/24 57344 -82.118.239.0/24 49699 -82.118.240.0/24 59851 -82.118.241.0/24 49699 -82.118.242.0/24 201133 -82.118.243.0/24 31083 -82.118.244.0/24 57344 -82.118.245.0/24 203380 -82.118.246.0/23 57344 -82.118.248.0/21 45007 -82.119.0.0/19 20880 -82.119.32.0/19 31067 -82.119.64.0/22 34376 -82.119.68.0/23 8262 -82.119.70.0/24 61082 -82.119.71.0/24 205343 -82.119.72.0/22 8262 -82.119.76.0/23 8262 -82.119.78.0/24 60147 -82.119.79.0/24 8262 -82.119.80.0/24 8262 -82.119.81.0/24 197741 -82.119.82.0/24 39483 -82.119.83.0/24 8262 -82.119.84.0/22 8262 -82.119.88.0/23 197184 -82.119.90.0/23 8262 -82.119.92.0/24 8262 -82.119.93.0/24 34376 -82.119.94.0/23 8262 -82.119.96.0/19 6830 -82.119.128.0/19 12683 -82.119.160.0/19 8881 -82.119.192.0/19 4589 -82.119.224.0/22 5578 -82.119.228.0/23 34462 -82.119.230.0/23 5578 -82.119.232.0/21 5578 -82.119.240.0/20 29208 -82.120.0.0/15 3215 -82.122.0.0/16 3215 -82.123.0.0/17 3215 -82.124.0.0/14 3215 -82.128.128.0/17 16086 -82.129.0.0/22 201105 -82.129.4.0/24 174 -82.129.5.0/24 209784 -82.129.6.0/23 174 -82.129.8.0/21 174 -82.129.16.0/21 174 -82.129.24.0/22 174 -82.129.28.0/22 137443 -82.129.32.0/22 174 -82.129.36.0/23 174 -82.129.38.0/24 174 -82.129.39.0/24 48945 -82.129.40.0/22 201105 -82.129.44.0/24 174 -82.129.45.0/24 48945 -82.129.46.0/23 48945 -82.129.48.0/20 48945 -82.129.64.0/22 174 -82.129.68.0/22 48945 -82.129.72.0/21 48945 -82.129.80.0/20 48945 -82.129.96.0/19 48945 -82.129.128.0/22 24835 -82.129.132.0/24 36935 -82.129.133.0/24 24835 -82.129.134.0/23 24835 -82.129.136.0/21 24835 -82.129.144.0/23 36935 -82.129.146.0/23 24835 -82.129.148.0/22 24835 -82.129.152.0/21 24835 -82.129.160.0/19 24835 -82.129.192.0/20 24835 -82.129.208.0/21 24835 -82.129.216.0/22 24835 -82.129.220.0/23 24835 -82.129.222.0/24 24835 -82.129.223.0/24 36935 -82.129.224.0/19 24835 -82.130.0.0/18 39857 -82.130.64.0/18 559 -82.130.128.0/17 12338 -82.131.0.0/17 13272 -82.131.128.0/19 20845 -82.131.160.0/20 12301 -82.131.176.0/22 12301 -82.131.180.0/23 12301 -82.131.182.0/23 20845 -82.131.184.0/21 20845 -82.131.192.0/22 12301 -82.131.196.0/23 20845 -82.131.198.0/24 20845 -82.131.199.0/24 12301 -82.131.200.0/21 20845 -82.131.208.0/21 12301 -82.131.216.0/21 20845 -82.131.224.0/19 20845 -82.132.0.0/17 2108 -82.132.128.0/19 29180 -82.132.160.0/20 35228 -82.132.176.0/21 29180 -82.132.184.0/22 35228 -82.132.188.0/22 29180 -82.132.192.0/22 29180 -82.132.196.0/23 29180 -82.132.198.0/23 35228 -82.132.200.0/21 29180 -82.132.208.0/22 29180 -82.132.212.0/22 35228 -82.132.216.0/21 35228 -82.132.224.0/20 35228 -82.132.240.0/21 35228 -82.132.250.0/23 29180 -82.132.252.0/22 29180 -82.133.0.0/17 9105 -82.133.128.0/17 15830 -82.134.0.0/17 8542 -82.135.0.0/17 8767 -82.135.128.0/20 8764 -82.135.144.0/22 8764 -82.135.148.0/22 30944 -82.135.152.0/22 8764 -82.135.156.0/23 43463 -82.135.158.0/23 8764 -82.135.160.0/21 39007 -82.135.168.0/21 8764 -82.135.176.0/21 8764 -82.135.184.0/24 199527 -82.135.185.0/24 8764 -82.135.186.0/23 8764 -82.135.188.0/22 8764 -82.135.192.0/20 8764 -82.135.208.0/21 8764 -82.135.216.0/24 50065 -82.135.217.0/24 43811 -82.135.218.0/24 43811 -82.135.219.0/24 8764 -82.135.220.0/22 8764 -82.135.224.0/22 8764 -82.135.228.0/22 43463 -82.135.232.0/21 8764 -82.135.240.0/20 8764 -82.136.0.0/18 9153 -82.136.64.0/18 8821 -82.136.182.0/24 8523 -82.136.192.0/18 1136 -82.137.0.0/21 8708 -82.137.8.0/21 12632 -82.137.16.0/20 8708 -82.137.32.0/19 8708 -82.137.64.0/18 8866 -82.137.128.0/20 3267 -82.137.144.0/21 3267 -82.137.152.0/22 3267 -82.137.156.0/24 29147 -82.137.157.0/24 3267 -82.137.158.0/23 3267 -82.137.160.0/20 3267 -82.137.176.0/20 51751 -82.137.192.0/18 29256 -82.138.0.0/19 8732 -82.138.32.0/24 8595 -82.138.33.0/24 8732 -82.138.34.0/23 8732 -82.138.36.0/22 8732 -82.138.40.0/24 196796 -82.138.41.0/24 8732 -82.138.42.0/23 8732 -82.138.44.0/22 8732 -82.138.48.0/21 8732 -82.138.56.0/23 8732 -82.138.58.0/24 8732 -82.138.59.0/24 199862 -82.138.60.0/23 8732 -82.138.62.0/24 8732 -82.138.63.0/24 197097 -82.138.64.0/23 41765 -82.138.66.0/23 174 -82.138.68.0/22 174 -82.138.72.0/21 174 -82.138.80.0/20 174 -82.138.96.0/19 174 -82.138.160.0/19 5400 -82.138.192.0/19 8190 -82.138.224.0/21 8190 -82.138.232.0/22 34119 -82.138.236.0/22 8190 -82.138.240.0/20 8190 -82.139.0.0/18 29314 -82.139.128.0/20 8865 -82.139.144.0/23 8865 -82.139.146.0/23 29414 -82.139.148.0/22 8865 -82.139.152.0/21 8865 -82.139.160.0/21 29414 -82.139.168.0/21 8865 -82.139.176.0/21 8865 -82.139.184.0/21 29414 -82.139.192.0/18 8820 -82.140.0.0/18 8881 -82.140.64.0/21 20632 -82.140.72.0/23 20632 -82.140.74.0/24 20632 -82.140.75.0/24 44840 -82.140.76.0/23 20632 -82.140.78.0/24 33908 -82.140.79.0/24 20632 -82.140.80.0/21 20632 -82.140.88.0/22 20632 -82.140.92.0/24 20632 -82.140.93.0/24 209660 -82.140.94.0/23 20632 -82.140.96.0/19 20632 -82.140.128.0/18 15419 -82.140.192.0/18 12389 -82.141.0.0/18 8648 -82.141.64.0/18 20931 -82.141.128.0/20 12301 -82.141.144.0/21 12301 -82.141.152.0/23 12301 -82.141.154.0/24 34262 -82.141.155.0/24 12301 -82.141.156.0/22 12301 -82.141.160.0/19 12301 -82.141.192.0/18 5466 -82.142.0.0/18 12322 -82.142.64.0/18 16019 -82.142.128.0/18 3216 -82.142.192.0/18 5587 -82.143.0.0/18 29449 -82.143.64.0/18 6848 -82.143.128.0/18 28982 -82.144.0.0/19 16206 -82.144.32.0/19 8881 -82.144.64.0/19 25355 -82.144.96.0/19 16168 -82.144.128.0/19 49101 -82.144.160.0/22 12301 -82.144.164.0/22 20845 -82.144.168.0/22 12301 -82.144.172.0/22 20845 -82.144.176.0/23 20845 -82.144.178.0/23 12301 -82.144.180.0/22 12301 -82.144.184.0/24 49090 -82.144.185.0/24 12301 -82.144.186.0/24 203331 -82.144.187.0/24 61270 -82.144.188.0/23 20845 -82.144.190.0/23 12301 -82.144.192.0/19 25229 -82.144.224.0/19 29297 -82.145.0.0/19 8881 -82.145.32.0/19 20860 -82.145.64.0/19 8286 -82.145.96.0/19 12533 -82.145.128.0/20 41340 -82.145.144.0/21 41340 -82.145.152.0/21 8473 -82.145.160.0/19 203489 -82.145.192.0/20 25220 -82.145.208.0/20 39832 -82.145.224.0/24 44558 -82.145.226.0/23 44558 -82.145.228.0/22 44558 -82.145.232.0/21 44558 -82.145.240.0/20 44558 -82.146.0.0/22 8866 -82.146.4.0/23 9127 -82.146.6.0/23 8866 -82.146.8.0/23 9127 -82.146.11.0/24 8866 -82.146.12.0/23 57731 -82.146.14.0/24 9127 -82.146.15.0/24 50359 -82.146.16.0/22 57731 -82.146.20.0/23 31435 -82.146.22.0/24 31435 -82.146.23.0/24 209564 -82.146.24.0/23 8866 -82.146.26.0/23 31435 -82.146.28.0/23 8866 -82.146.30.0/24 9127 -82.146.32.0/19 29182 -82.146.64.0/19 16185 -82.146.96.0/19 8201 -82.146.128.0/19 29446 -82.146.160.0/20 9051 -82.146.176.0/22 9051 -82.146.180.0/24 43905 -82.146.182.0/24 43905 -82.146.183.0/24 9051 -82.146.184.0/22 9051 -82.146.188.0/23 9051 -82.146.192.0/19 39440 -82.146.224.0/19 8326 -82.147.0.0/19 6908 -82.147.32.0/19 29492 -82.147.64.0/22 31112 -82.147.68.0/24 13259 -82.147.69.0/24 31112 -82.147.70.0/23 13259 -82.147.73.0/24 208774 -82.147.74.0/24 31112 -82.147.75.0/24 13259 -82.147.76.0/24 204298 -82.147.77.0/24 197392 -82.147.78.0/24 197392 -82.147.79.0/24 198755 -82.147.80.0/21 31112 -82.147.88.0/23 31112 -82.147.90.0/24 198755 -82.147.91.0/24 197392 -82.147.92.0/22 206820 -82.147.96.0/22 24588 -82.147.100.0/23 24588 -82.147.102.0/24 24588 -82.147.103.0/24 21353 -82.147.104.0/24 24588 -82.147.105.0/24 12772 -82.147.106.0/23 24588 -82.147.108.0/22 12772 -82.147.112.0/22 12772 -82.147.116.0/24 12772 -82.147.117.0/24 24588 -82.147.118.0/24 12772 -82.147.119.0/24 24588 -82.147.120.0/21 24588 -82.147.128.0/23 8717 -82.147.130.0/24 8717 -82.147.131.0/24 29580 -82.147.132.0/23 8717 -82.147.134.0/24 43651 -82.147.135.0/24 43718 -82.147.136.0/23 8717 -82.147.138.0/24 8717 -82.147.139.0/24 29580 -82.147.140.0/22 8717 -82.147.144.0/24 8717 -82.147.145.0/24 29580 -82.147.146.0/23 29580 -82.147.148.0/23 8717 -82.147.150.0/24 8717 -82.147.151.0/24 29580 -82.147.152.0/22 8717 -82.147.156.0/23 29580 -82.147.158.0/24 29580 -82.147.159.0/24 8717 -82.147.160.0/19 8728 -82.147.192.0/19 29255 -82.147.224.0/19 15516 -82.148.8.0/22 39539 -82.148.12.0/22 50340 -82.148.16.0/22 50340 -82.148.20.0/22 49505 -82.148.24.0/21 49505 -82.148.32.0/19 12519 -82.148.64.0/19 29348 -82.148.96.0/21 8781 -82.148.104.0/23 8781 -82.148.106.0/24 8781 -82.148.107.0/24 42298 -82.148.108.0/22 8781 -82.148.112.0/20 8781 -82.148.128.0/19 16175 -82.148.160.0/19 29300 -82.148.192.0/19 29396 -82.148.224.0/19 25376 -82.149.0.0/19 3212 -82.149.32.0/19 198319 -82.149.64.0/19 15598 -82.149.96.0/19 8559 -82.149.128.0/19 12714 -82.149.160.0/19 9145 -82.149.192.0/19 6863 -82.149.224.0/19 29551 -82.150.0.0/20 5400 -82.150.16.0/21 5400 -82.150.24.0/23 5400 -82.150.26.0/24 57839 -82.150.27.0/24 5400 -82.150.28.0/22 5400 -82.150.32.0/20 8990 -82.150.48.0/21 8990 -82.150.56.0/22 8990 -82.150.60.0/23 8990 -82.150.62.0/24 57389 -82.150.63.0/24 29278 -82.150.64.0/22 15924 -82.150.68.0/23 15924 -82.150.70.0/24 15924 -82.150.71.0/24 31654 -82.150.72.0/21 15924 -82.150.80.0/20 15924 -82.150.96.0/21 29457 -82.150.104.0/24 29457 -82.150.106.0/23 29457 -82.150.120.0/24 29457 -82.150.123.0/24 29457 -82.150.127.0/24 29457 -82.150.128.0/22 29462 -82.150.136.0/24 43366 -82.150.137.0/24 12859 -82.150.139.0/24 31477 -82.150.140.0/22 30785 -82.150.150.0/23 20562 -82.150.152.0/24 60781 -82.150.154.0/23 20562 -82.150.156.0/22 20562 -82.150.160.0/19 16246 -82.150.192.0/19 8596 -82.150.224.0/21 12888 -82.150.248.0/23 44986 -82.151.0.0/19 43698 -82.151.32.0/19 43995 -82.151.64.0/19 29544 -82.151.96.0/20 29456 -82.151.112.0/21 29456 -82.151.120.0/23 29456 -82.151.122.0/24 29456 -82.151.123.0/24 12389 -82.151.124.0/24 29456 -82.151.125.0/24 12389 -82.151.126.0/23 29456 -82.151.128.0/19 8685 -82.151.160.0/19 33915 -82.151.192.0/19 28890 -82.151.224.0/19 8190 -82.152.0.0/15 12513 -82.154.0.0/15 3243 -82.158.0.0/22 6739 -82.158.4.0/22 12357 -82.158.8.0/21 6739 -82.158.16.0/20 6739 -82.158.32.0/20 6739 -82.158.48.0/24 12357 -82.158.49.0/24 6739 -82.158.50.0/23 12357 -82.158.52.0/22 12357 -82.158.56.0/21 6739 -82.158.64.0/21 6739 -82.158.72.0/22 6739 -82.158.76.0/22 12357 -82.158.80.0/20 6739 -82.158.96.0/21 6739 -82.158.104.0/22 6739 -82.158.108.0/22 12357 -82.158.112.0/21 12357 -82.158.120.0/21 6739 -82.158.128.0/22 6739 -82.158.132.0/22 12357 -82.158.136.0/23 6739 -82.158.138.0/23 12357 -82.158.140.0/22 6739 -82.158.144.0/21 6739 -82.158.152.0/23 6739 -82.158.154.0/23 12357 -82.158.156.0/22 6739 -82.158.160.0/22 12357 -82.158.164.0/22 6739 -82.158.168.0/21 6739 -82.158.176.0/23 12357 -82.158.178.0/24 12357 -82.158.179.0/24 6739 -82.158.180.0/22 6739 -82.158.184.0/21 6739 -82.158.192.0/20 6739 -82.158.208.0/21 12357 -82.158.216.0/22 6739 -82.158.220.0/22 12357 -82.158.224.0/21 6739 -82.158.232.0/21 12357 -82.158.240.0/21 12357 -82.158.248.0/21 6739 -82.159.0.0/19 6739 -82.159.32.0/21 12357 -82.159.40.0/21 6739 -82.159.48.0/20 6739 -82.159.64.0/21 6739 -82.159.72.0/21 12357 -82.159.80.0/20 6739 -82.159.96.0/20 12357 -82.159.112.0/20 6739 -82.159.128.0/22 6739 -82.159.132.0/23 12357 -82.159.134.0/23 6739 -82.159.136.0/22 6739 -82.159.140.0/23 6739 -82.159.142.0/24 6739 -82.159.143.0/24 202676 -82.159.144.0/24 12357 -82.159.145.0/24 6739 -82.159.146.0/23 6739 -82.159.148.0/22 6739 -82.159.152.0/24 6739 -82.159.153.0/24 206487 -82.159.154.0/23 6739 -82.159.156.0/23 6739 -82.159.158.0/24 6739 -82.159.159.0/24 12357 -82.159.160.0/23 6739 -82.159.162.0/24 12357 -82.159.163.0/24 202676 -82.159.164.0/22 6739 -82.159.168.0/21 6739 -82.159.176.0/20 6739 -82.159.192.0/20 6739 -82.159.208.0/23 6739 -82.159.210.0/24 6739 -82.159.211.0/24 12357 -82.159.212.0/23 6739 -82.159.214.0/24 62352 -82.159.215.0/24 6739 -82.159.216.0/23 6739 -82.159.218.0/24 6739 -82.159.219.0/24 12357 -82.159.220.0/22 6739 -82.159.224.0/19 6739 -82.160.0.0/20 20960 -82.160.16.0/21 20960 -82.160.24.0/22 20960 -82.160.28.0/24 20960 -82.160.29.0/24 61256 -82.160.30.0/23 20960 -82.160.32.0/20 20960 -82.160.48.0/23 20960 -82.160.50.0/24 60713 -82.160.51.0/24 20960 -82.160.52.0/22 20960 -82.160.56.0/21 20960 -82.160.64.0/20 20960 -82.160.80.0/22 20960 -82.160.84.0/23 20960 -82.160.86.0/23 204086 -82.160.88.0/21 20960 -82.160.96.0/24 20960 -82.160.97.0/24 199910 -82.160.98.0/23 20960 -82.160.100.0/22 20960 -82.160.104.0/21 20960 -82.160.112.0/24 12741 -82.160.113.0/24 20960 -82.160.114.0/23 20960 -82.160.116.0/22 20960 -82.160.120.0/21 20960 -82.160.128.0/22 20960 -82.160.132.0/23 20960 -82.160.134.0/24 2 -82.160.135.0/24 20960 -82.160.136.0/23 20960 -82.160.138.0/23 204086 -82.160.140.0/23 202141 -82.160.142.0/23 20960 -82.160.144.0/22 20960 -82.160.148.0/24 20960 -82.160.149.0/24 203261 -82.160.150.0/24 203261 -82.160.151.0/24 20960 -82.160.152.0/21 20960 -82.160.160.0/21 20960 -82.160.168.0/23 199980 -82.160.170.0/24 199980 -82.160.171.0/24 20960 -82.160.172.0/22 20960 -82.160.176.0/22 20960 -82.160.180.0/24 199980 -82.160.181.0/24 20960 -82.160.182.0/23 20960 -82.160.184.0/21 20960 -82.160.192.0/18 20960 -82.161.0.0/16 3265 -82.162.0.0/22 12389 -82.162.4.0/22 12332 -82.162.8.0/22 12332 -82.162.12.0/23 12389 -82.162.14.0/23 12332 -82.162.16.0/24 12332 -82.162.17.0/24 12389 -82.162.18.0/23 12332 -82.162.20.0/22 12332 -82.162.24.0/21 12332 -82.162.32.0/20 12332 -82.162.48.0/20 12389 -82.162.64.0/19 12332 -82.162.96.0/20 12332 -82.162.112.0/21 12332 -82.162.120.0/22 12389 -82.162.124.0/22 12332 -82.162.128.0/19 12332 -82.162.160.0/20 12332 -82.162.176.0/23 12389 -82.162.178.0/23 12332 -82.162.180.0/22 12389 -82.162.184.0/21 12389 -82.162.192.0/18 12332 -82.163.0.0/19 8851 -82.163.32.0/22 13097 -82.163.36.0/24 199792 -82.163.37.0/24 198435 -82.163.38.0/24 199568 -82.163.39.0/24 199792 -82.163.40.0/21 62105 -82.163.48.0/23 199391 -82.163.50.0/24 199843 -82.163.51.0/24 199391 -82.163.54.0/23 51737 -82.163.56.0/21 51737 -82.163.64.0/21 51737 -82.163.72.0/21 13213 -82.163.80.0/20 199944 -82.163.96.0/20 51737 -82.163.112.0/21 57276 -82.163.120.0/22 201503 -82.163.124.0/22 57276 -82.163.128.0/22 198736 -82.163.132.0/22 201503 -82.163.136.0/22 199391 -82.163.140.0/24 199391 -82.163.141.0/24 50079 -82.163.142.0/23 204078 -82.163.144.0/20 56329 -82.163.160.0/22 201078 -82.163.164.0/22 5413 -82.163.168.0/21 51737 -82.163.176.0/22 34119 -82.163.180.0/22 60194 -82.163.184.0/21 56329 -82.163.192.0/19 25160 -82.163.224.0/21 51737 -82.163.232.0/22 198736 -82.163.236.0/22 198781 -82.163.240.0/21 200876 -82.163.248.0/22 199391 -82.163.252.0/22 56329 -82.164.0.0/16 2119 -82.165.0.0/16 8560 -82.166.0.0/16 1680 -82.167.0.0/17 35753 -82.167.128.0/20 41810 -82.167.176.0/22 41810 -82.167.184.0/21 41810 -82.167.192.0/18 35753 -82.168.0.0/14 1136 -82.172.0.0/14 13127 -82.176.0.0/16 15542 -82.177.0.0/23 20804 -82.177.2.0/24 208112 -82.177.3.0/24 20804 -82.177.4.0/22 20804 -82.177.8.0/24 62025 -82.177.9.0/24 20804 -82.177.10.0/23 20804 -82.177.12.0/22 20804 -82.177.16.0/23 20804 -82.177.18.0/24 34903 -82.177.19.0/24 20804 -82.177.20.0/22 20804 -82.177.24.0/24 20804 -82.177.25.0/24 199715 -82.177.26.0/24 199715 -82.177.27.0/24 20804 -82.177.28.0/23 199715 -82.177.30.0/23 199260 -82.177.32.0/22 20804 -82.177.36.0/23 20804 -82.177.38.0/23 199715 -82.177.40.0/24 199715 -82.177.41.0/24 20804 -82.177.42.0/23 20804 -82.177.44.0/22 20804 -82.177.48.0/21 20804 -82.177.56.0/23 20804 -82.177.58.0/24 205017 -82.177.59.0/24 20804 -82.177.60.0/22 199715 -82.177.64.0/22 209073 -82.177.68.0/22 20804 -82.177.72.0/21 20804 -82.177.80.0/21 20804 -82.177.88.0/22 20804 -82.177.92.0/23 43769 -82.177.94.0/24 20804 -82.177.95.0/24 43769 -82.177.96.0/22 20804 -82.177.100.0/24 20804 -82.177.101.0/24 209388 -82.177.102.0/23 20804 -82.177.104.0/22 199715 -82.177.108.0/23 20804 -82.177.110.0/24 43769 -82.177.111.0/24 20804 -82.177.112.0/20 20804 -82.177.128.0/24 206093 -82.177.129.0/24 20804 -82.177.130.0/24 20804 -82.177.131.0/24 209388 -82.177.132.0/23 20804 -82.177.134.0/23 201893 -82.177.136.0/23 60378 -82.177.138.0/23 196928 -82.177.140.0/23 20804 -82.177.142.0/24 24577 -82.177.143.0/24 199715 -82.177.144.0/20 20804 -82.177.160.0/23 20804 -82.177.162.0/24 201044 -82.177.163.0/24 20804 -82.177.164.0/22 20804 -82.177.168.0/21 20804 -82.177.176.0/21 20804 -82.177.184.0/22 203389 -82.177.188.0/23 20804 -82.177.190.0/24 197903 -82.177.191.0/24 20804 -82.177.192.0/21 20804 -82.177.200.0/24 20804 -82.177.201.0/24 42246 -82.177.202.0/23 209073 -82.177.204.0/24 50625 -82.177.205.0/24 20804 -82.177.206.0/23 20804 -82.177.208.0/24 20804 -82.177.209.0/24 199715 -82.177.210.0/23 203389 -82.177.212.0/22 20804 -82.177.216.0/21 20804 -82.177.224.0/20 35463 -82.177.240.0/23 199715 -82.177.242.0/23 20804 -82.177.244.0/23 20804 -82.177.246.0/24 25552 -82.177.247.0/24 20804 -82.177.248.0/21 20804 -82.178.0.0/19 28885 -82.178.32.0/24 8529 -82.178.33.0/24 28885 -82.178.34.0/23 28885 -82.178.36.0/22 28885 -82.178.40.0/21 28885 -82.178.48.0/20 28885 -82.178.64.0/18 28885 -82.178.128.0/20 28885 -82.178.144.0/21 28885 -82.178.152.0/22 28885 -82.178.156.0/23 28885 -82.178.158.0/23 8529 -82.178.160.0/19 28885 -82.178.192.0/18 28885 -82.179.0.0/20 34707 -82.179.16.0/20 29581 -82.179.32.0/20 29526 -82.179.48.0/22 197467 -82.179.52.0/22 3267 -82.179.56.0/21 3267 -82.179.64.0/20 3267 -82.179.80.0/21 3267 -82.179.88.0/23 3267 -82.179.90.0/23 56434 -82.179.92.0/22 3267 -82.179.96.0/20 12724 -82.179.112.0/20 6874 -82.179.128.0/21 8398 -82.179.136.0/22 8398 -82.179.140.0/23 3267 -82.179.142.0/23 8398 -82.179.144.0/20 9162 -82.179.160.0/20 3267 -82.179.176.0/20 31575 -82.179.192.0/19 3267 -82.179.224.0/20 3267 -82.179.240.0/22 3267 -82.179.244.0/23 3267 -82.179.246.0/24 3267 -82.179.247.0/24 202689 -82.179.248.0/22 56534 -82.179.252.0/22 3267 -82.180.0.0/16 29100 -82.181.0.0/16 16086 -82.182.0.0/15 2119 -82.184.0.0/13 3269 -82.192.0.0/23 25447 -82.192.2.0/23 57794 -82.192.4.0/23 25447 -82.192.6.0/24 50920 -82.192.7.0/24 25447 -82.192.8.0/21 25447 -82.192.16.0/20 25447 -82.192.32.0/19 3212 -82.192.64.0/19 60781 -82.192.96.0/23 12576 -82.192.98.0/23 34086 -82.192.100.0/23 16509 -82.192.102.0/23 12576 -82.192.104.0/24 12576 -82.192.108.0/23 16509 -82.192.128.0/19 15516 -82.192.160.0/19 31027 -82.192.192.0/19 29510 -82.192.224.0/19 21232 -82.193.0.0/19 3302 -82.193.32.0/19 47902 -82.193.64.0/20 24651 -82.193.80.0/24 24651 -82.193.81.0/24 51338 -82.193.82.0/23 24651 -82.193.84.0/23 24651 -82.193.86.0/24 208938 -82.193.87.0/24 24651 -82.193.88.0/22 24651 -82.193.92.0/23 24651 -82.193.94.0/23 34994 -82.193.96.0/19 25521 -82.193.128.0/19 5563 -82.193.160.0/19 2119 -82.193.192.0/24 25528 -82.193.193.0/24 35549 -82.193.194.0/23 25528 -82.193.196.0/22 25528 -82.193.200.0/21 25528 -82.193.208.0/20 25528 -82.193.224.0/19 12693 -82.194.0.0/20 29584 -82.194.16.0/20 60258 -82.194.32.0/19 5416 -82.194.64.0/19 16371 -82.194.96.0/19 8881 -82.194.128.0/19 8445 -82.194.160.0/19 8920 -82.194.192.0/19 49455 -82.194.224.0/22 8491 -82.194.228.0/23 8491 -82.194.230.0/24 8491 -82.194.231.0/24 35423 -82.194.232.0/22 8491 -82.194.236.0/24 204492 -82.194.237.0/24 8491 -82.194.238.0/23 8491 -82.194.240.0/22 8491 -82.194.244.0/22 28917 -82.194.248.0/21 8491 -82.195.0.0/19 31359 -82.195.32.0/23 16177 -82.195.38.0/24 16177 -82.195.41.0/24 16177 -82.195.42.0/23 16177 -82.195.45.0/24 16177 -82.195.46.0/24 16177 -82.195.49.0/24 16177 -82.195.51.0/24 16177 -82.195.52.0/23 16177 -82.195.54.0/24 16177 -82.195.58.0/23 16177 -82.195.63.0/24 16177 -82.195.64.0/19 8365 -82.195.96.0/19 5413 -82.195.128.0/19 15533 -82.195.160.0/22 204819 -82.195.164.0/22 1239 -82.195.168.0/21 1239 -82.195.176.0/20 1239 -82.195.192.0/19 1759 -82.195.224.0/19 1836 -82.196.0.0/20 14061 -82.196.16.0/21 50818 -82.196.24.0/24 199568 -82.196.25.0/24 30781 -82.196.26.0/24 198435 -82.196.27.0/24 199485 -82.196.28.0/24 199792 -82.196.29.0/24 198435 -82.196.30.0/24 199579 -82.196.31.0/24 199792 -82.196.32.0/20 29664 -82.196.52.0/23 29664 -82.196.56.0/23 29664 -82.196.64.0/23 20632 -82.196.66.0/24 20632 -82.196.67.0/24 43673 -82.196.68.0/22 20632 -82.196.72.0/21 20632 -82.196.80.0/20 20632 -82.196.96.0/19 8473 -82.196.136.0/22 29651 -82.196.148.0/23 29651 -82.196.160.0/19 25473 -82.196.192.0/19 2116 -82.196.224.0/20 29452 -82.196.240.0/23 29452 -82.196.242.0/24 29452 -82.196.243.0/24 31727 -82.196.244.0/22 29452 -82.196.248.0/21 29452 -82.197.0.0/19 34263 -82.197.64.0/19 25577 -82.197.112.0/20 20776 -82.197.128.0/22 13237 -82.197.132.0/23 51906 -82.197.134.0/23 13237 -82.197.136.0/23 13237 -82.197.138.0/24 31197 -82.197.139.0/24 13237 -82.197.140.0/22 13237 -82.197.144.0/21 13237 -82.197.152.0/21 31197 -82.197.160.0/19 13030 -82.197.192.0/19 25596 -82.197.224.0/19 35706 -82.198.0.0/21 30721 -82.198.8.0/22 30721 -82.198.12.0/24 30721 -82.198.13.0/24 21166 -82.198.14.0/23 30721 -82.198.16.0/20 30721 -82.198.32.0/19 12430 -82.198.64.0/19 16097 -82.198.128.0/19 34912 -82.198.160.0/19 30733 -82.198.192.0/19 30742 -82.199.0.0/19 30737 -82.199.32.0/20 16039 -82.199.48.0/21 16039 -82.199.56.0/22 16039 -82.199.60.0/24 16039 -82.199.61.0/24 35699 -82.199.62.0/24 209287 -82.199.63.0/24 16039 -82.199.64.0/19 15830 -82.199.96.0/23 29124 -82.199.98.0/23 30784 -82.199.100.0/22 30784 -82.199.104.0/21 30784 -82.199.112.0/20 30784 -82.199.128.0/19 201011 -82.199.160.0/19 3238 -82.199.192.0/20 44395 -82.199.208.0/23 51684 -82.199.210.0/24 51684 -82.199.212.0/22 51684 -82.199.224.0/19 30978 -82.200.0.0/20 21127 -82.200.16.0/24 21127 -82.200.17.0/24 51190 -82.200.18.0/23 21127 -82.200.20.0/22 21127 -82.200.24.0/21 21127 -82.200.32.0/20 21127 -82.200.48.0/23 21127 -82.200.50.0/24 21127 -82.200.51.0/24 15774 -82.200.52.0/22 21127 -82.200.56.0/23 21127 -82.200.58.0/23 15774 -82.200.60.0/22 21127 -82.200.64.0/21 21127 -82.200.72.0/22 21127 -82.200.76.0/24 21127 -82.200.77.0/24 51190 -82.200.78.0/23 21127 -82.200.80.0/20 21127 -82.200.96.0/20 21127 -82.200.112.0/21 21127 -82.200.120.0/23 21127 -82.200.122.0/23 51190 -82.200.124.0/22 21127 -82.200.128.0/17 9198 -82.201.0.0/17 15879 -82.201.128.0/17 24863 -82.202.0.0/18 6740 -82.202.64.0/18 25512 -82.202.128.0/21 30745 -82.202.136.0/23 30745 -82.202.138.0/24 30745 -82.202.144.0/20 30745 -82.202.160.0/22 29182 -82.202.164.0/24 62200 -82.202.165.0/24 29182 -82.202.166.0/23 29182 -82.202.168.0/21 29182 -82.202.176.0/21 56864 -82.202.184.0/23 200107 -82.202.188.0/23 209030 -82.202.190.0/24 209030 -82.202.192.0/24 50340 -82.202.193.0/24 49505 -82.202.194.0/23 49505 -82.202.196.0/24 50340 -82.202.197.0/24 49505 -82.202.198.0/23 50340 -82.202.200.0/24 49505 -82.202.201.0/24 50340 -82.202.202.0/24 50340 -82.202.203.0/24 49505 -82.202.204.0/22 50340 -82.202.208.0/24 49505 -82.202.209.0/24 50340 -82.202.210.0/23 49505 -82.202.212.0/23 50340 -82.202.214.0/23 49505 -82.202.216.0/23 49505 -82.202.218.0/24 49505 -82.202.219.0/24 50340 -82.202.220.0/24 49505 -82.202.221.0/24 50340 -82.202.222.0/24 49505 -82.202.223.0/24 50340 -82.202.224.0/23 50340 -82.202.226.0/24 50340 -82.202.227.0/24 49505 -82.202.228.0/22 49505 -82.202.232.0/22 49505 -82.202.236.0/24 49505 -82.202.237.0/24 50340 -82.202.238.0/24 50340 -82.202.239.0/24 49505 -82.202.240.0/23 49505 -82.202.242.0/24 49505 -82.202.243.0/24 50340 -82.202.244.0/23 49505 -82.202.246.0/24 50340 -82.202.247.0/24 49505 -82.202.248.0/24 50340 -82.202.249.0/24 49505 -82.202.250.0/23 49505 -82.202.252.0/24 49505 -82.202.253.0/24 50340 -82.202.254.0/23 49505 -82.203.1.0/24 29212 -82.203.12.0/22 1273 -82.203.16.0/21 1273 -82.203.24.0/21 196744 -82.203.32.0/19 51551 -82.203.64.0/18 51551 -82.203.128.0/17 16086 -82.204.0.0/17 15670 -82.204.128.0/18 8359 -82.204.192.0/19 8359 -82.204.224.0/21 8359 -82.204.232.0/22 8359 -82.204.236.0/24 8359 -82.204.237.0/24 34508 -82.204.238.0/23 8359 -82.204.240.0/20 8359 -82.205.0.0/18 15975 -82.205.64.0/19 15975 -82.205.96.0/23 15975 -82.205.98.0/24 15975 -82.205.99.0/24 12975 -82.205.100.0/22 15975 -82.205.104.0/21 15975 -82.205.112.0/20 15975 -82.205.128.0/17 30981 -82.206.0.0/17 20640 -82.206.128.0/17 22351 -82.207.0.0/17 6849 -82.207.128.0/17 8881 -82.208.0.0/24 21430 -82.208.1.0/24 15685 -82.208.2.0/24 21430 -82.208.3.0/24 15685 -82.208.4.0/24 15685 -82.208.5.0/24 21430 -82.208.6.0/23 15685 -82.208.8.0/22 15685 -82.208.12.0/24 15685 -82.208.13.0/24 21430 -82.208.14.0/24 15685 -82.208.15.0/24 21430 -82.208.16.0/23 15685 -82.208.18.0/24 15685 -82.208.19.0/24 21430 -82.208.20.0/22 15685 -82.208.24.0/24 15685 -82.208.25.0/24 21430 -82.208.26.0/23 15685 -82.208.28.0/23 15685 -82.208.30.0/23 21430 -82.208.32.0/22 15685 -82.208.36.0/24 15685 -82.208.37.0/24 21430 -82.208.38.0/24 21430 -82.208.39.0/24 15685 -82.208.40.0/23 15685 -82.208.42.0/23 21430 -82.208.44.0/24 15685 -82.208.45.0/24 21430 -82.208.46.0/23 15685 -82.208.48.0/23 15685 -82.208.50.0/24 15685 -82.208.51.0/24 21430 -82.208.52.0/23 21430 -82.208.54.0/24 15685 -82.208.55.0/24 21430 -82.208.56.0/24 15685 -82.208.57.0/24 21430 -82.208.58.0/24 15685 -82.208.59.0/24 21430 -82.208.60.0/22 15685 -82.208.64.0/18 12389 -82.208.128.0/18 6830 -82.208.192.0/19 13091 -82.208.224.0/20 13091 -82.208.240.0/22 13091 -82.208.244.0/23 13091 -82.208.248.0/21 13091 -82.209.0.0/18 30764 -82.209.64.0/18 35728 -82.209.128.0/18 29518 -82.209.192.0/18 6697 -82.210.0.0/18 34177 -82.210.64.0/18 21221 -82.210.128.0/18 6830 -82.210.224.0/19 48951 -82.211.0.0/18 31400 -82.211.64.0/18 24867 -82.211.128.0/18 16010 -82.211.192.0/19 204141 -82.211.224.0/19 15516 -82.212.0.0/18 6830 -82.212.64.0/18 47887 -82.212.128.0/18 12392 -82.212.192.0/19 29624 -82.212.224.0/19 13289 -82.213.0.0/23 12975 -82.213.2.0/24 12975 -82.213.3.0/24 208473 -82.213.4.0/22 12975 -82.213.8.0/21 12975 -82.213.16.0/20 12975 -82.213.32.0/19 12975 -82.213.64.0/23 33942 -82.213.67.0/24 33942 -82.213.68.0/23 33942 -82.213.70.0/23 201058 -82.213.72.0/21 33942 -82.213.80.0/22 201058 -82.213.84.0/22 33942 -82.213.96.0/22 201058 -82.213.102.0/23 33942 -82.213.104.0/21 33942 -82.213.128.0/21 12357 -82.213.136.0/22 12357 -82.213.140.0/22 6739 -82.213.144.0/23 6739 -82.213.146.0/23 12357 -82.213.148.0/22 6739 -82.213.152.0/21 6739 -82.213.160.0/21 6739 -82.213.168.0/22 12357 -82.213.172.0/22 6739 -82.213.176.0/22 12357 -82.213.180.0/23 6739 -82.213.182.0/23 12357 -82.213.184.0/22 6739 -82.213.188.0/22 12357 -82.213.192.0/18 15704 -82.214.0.0/18 42708 -82.214.64.0/20 25467 -82.214.80.0/24 25467 -82.214.84.0/22 25467 -82.214.88.0/21 25467 -82.214.96.0/21 25467 -82.214.104.0/24 25467 -82.214.106.0/24 50249 -82.214.107.0/24 25467 -82.214.108.0/22 25467 -82.214.112.0/23 25467 -82.214.114.0/24 25467 -82.214.116.0/22 25467 -82.214.126.0/23 25467 -82.214.128.0/18 15997 -82.214.192.0/19 12440 -82.214.224.0/20 12440 -82.214.240.0/21 44795 -82.214.248.0/21 12440 -82.215.0.0/18 20507 -82.215.65.0/24 30728 -82.215.66.0/23 30728 -82.215.68.0/22 30728 -82.215.72.0/21 30728 -82.215.80.0/22 12365 -82.215.84.0/22 30728 -82.215.88.0/21 12365 -82.215.96.0/20 59668 -82.215.112.0/20 12365 -82.215.128.0/22 34606 -82.215.132.0/22 9137 -82.215.136.0/21 9137 -82.215.144.0/20 9137 -82.215.160.0/19 9137 -82.215.192.0/18 21366 -82.216.0.0/16 21502 -82.217.0.0/16 33915 -82.218.0.0/16 8339 -82.219.0.0/16 30740 -82.220.0.0/16 9044 -82.221.0.0/18 44515 -82.221.64.0/19 44515 -82.221.96.0/19 50613 -82.221.128.0/19 50613 -82.221.164.0/24 30818 -82.221.168.0/24 30818 -82.222.3.0/24 34984 -82.222.4.0/22 34984 -82.222.8.0/22 34984 -82.222.12.0/23 34984 -82.222.15.0/24 34984 -82.222.16.0/24 34984 -82.222.18.0/23 34984 -82.222.20.0/22 34984 -82.222.24.0/21 34984 -82.222.32.0/20 34984 -82.222.48.0/22 34984 -82.222.52.0/23 34984 -82.222.55.0/24 34984 -82.222.56.0/22 34984 -82.222.60.0/23 34984 -82.222.63.0/24 34984 -82.222.64.0/20 34984 -82.222.81.0/24 34984 -82.222.83.0/24 202924 -82.222.84.0/24 34984 -82.222.86.0/23 34984 -82.222.88.0/21 34984 -82.222.96.0/19 34984 -82.222.128.0/24 51174 -82.222.129.0/24 34984 -82.222.130.0/23 34984 -82.222.132.0/22 34984 -82.222.136.0/21 34984 -82.222.144.0/21 34984 -82.222.152.0/23 34984 -82.222.154.0/24 41324 -82.222.155.0/24 34984 -82.222.157.0/24 34984 -82.222.158.0/24 34984 -82.222.159.0/24 203634 -82.222.160.0/21 34984 -82.222.168.0/24 34984 -82.222.169.0/24 24891 -82.222.170.0/23 34984 -82.222.172.0/22 34984 -82.222.176.0/22 34984 -82.222.181.0/24 34984 -82.222.182.0/23 34984 -82.222.184.0/21 34984 -82.222.193.0/24 34984 -82.222.194.0/23 34984 -82.222.196.0/22 34984 -82.222.200.0/21 34984 -82.222.208.0/20 34984 -82.222.224.0/22 34984 -82.222.232.0/21 34984 -82.222.241.0/24 34984 -82.222.242.0/23 34984 -82.222.244.0/22 34984 -82.222.248.0/21 34984 -82.223.0.0/16 8560 -82.224.0.0/11 12322 -83.0.0.0/11 5617 -83.32.0.0/12 3352 -83.48.0.0/13 3352 -83.56.0.0/14 3352 -83.61.0.0/16 3352 -83.62.0.0/15 3352 -83.64.0.0/15 6830 -83.66.0.0/17 12978 -83.66.128.0/19 12978 -83.66.160.0/23 12978 -83.66.162.0/24 12978 -83.66.163.0/24 3 -83.66.164.0/23 3 -83.66.166.0/24 3 -83.66.167.0/24 12978 -83.66.168.0/21 12978 -83.66.176.0/20 12978 -83.66.192.0/18 12978 -83.67.0.0/16 9105 -83.68.0.0/20 3265 -83.68.16.0/21 3265 -83.68.24.0/22 3265 -83.68.28.0/23 3265 -83.68.31.0/24 3265 -83.68.32.0/20 31444 -83.68.48.0/22 31444 -83.68.62.0/24 31444 -83.68.64.0/19 21021 -83.68.96.0/19 34809 -83.68.128.0/23 1764 -83.68.130.0/24 207011 -83.68.131.0/24 1764 -83.68.132.0/23 1764 -83.68.134.0/23 203501 -83.68.136.0/23 1764 -83.68.138.0/24 28839 -83.68.139.0/24 28848 -83.68.140.0/24 206159 -83.68.141.0/24 1764 -83.68.142.0/24 206148 -83.68.143.0/24 28771 -83.68.144.0/23 1764 -83.68.146.0/24 28771 -83.68.147.0/24 1764 -83.68.148.0/22 1764 -83.68.152.0/21 1764 -83.68.160.0/21 205554 -83.68.168.0/24 205554 -83.68.185.0/24 205554 -83.68.191.0/24 205554 -83.68.192.0/19 44885 -83.68.224.0/19 51132 -83.69.0.0/19 21191 -83.69.32.0/19 5610 -83.69.64.0/21 20870 -83.69.72.0/22 20870 -83.69.76.0/24 20485 -83.69.77.0/24 20870 -83.69.78.0/23 20870 -83.69.80.0/23 20485 -83.69.82.0/23 20870 -83.69.84.0/22 20870 -83.69.88.0/24 20870 -83.69.89.0/24 20485 -83.69.90.0/23 20870 -83.69.92.0/22 20870 -83.69.96.0/21 29125 -83.69.104.0/22 29125 -83.69.108.0/22 34518 -83.69.112.0/23 34518 -83.69.114.0/23 29125 -83.69.116.0/22 29125 -83.69.120.0/21 29125 -83.69.128.0/19 31492 -83.69.160.0/20 35770 -83.69.176.0/22 42767 -83.69.180.0/22 198643 -83.69.192.0/19 29226 -83.69.224.0/24 28762 -83.69.226.0/24 28762 -83.69.230.0/24 28762 -83.69.233.0/24 28762 -83.69.236.0/23 28762 -83.69.240.0/21 3175 -83.70.0.0/15 5466 -83.72.0.0/14 9158 -83.76.0.0/14 3303 -83.80.0.0/13 33915 -83.88.0.0/13 3292 -83.96.0.0/20 21050 -83.96.16.0/21 21050 -83.96.24.0/22 21050 -83.96.28.0/24 21050 -83.96.29.0/24 60992 -83.96.30.0/23 21050 -83.96.32.0/19 21050 -83.96.64.0/18 21050 -83.96.128.0/20 21155 -83.96.144.0/21 21155 -83.96.152.0/22 21155 -83.96.156.0/24 21155 -83.96.157.0/24 49685 -83.96.158.0/23 21155 -83.96.160.0/19 21155 -83.96.192.0/21 21155 -83.96.200.0/21 35470 -83.96.208.0/22 21155 -83.96.212.0/22 35470 -83.96.216.0/22 35470 -83.96.220.0/22 21155 -83.96.224.0/21 21155 -83.96.232.0/22 21155 -83.96.236.0/22 35470 -83.96.240.0/21 35470 -83.96.248.0/22 21155 -83.96.252.0/22 35470 -83.97.0.0/21 9177 -83.97.8.0/21 30879 -83.97.16.0/22 16089 -83.97.20.0/24 9009 -83.97.22.0/23 9009 -83.97.24.0/24 8717 -83.97.25.0/24 29580 -83.97.26.0/23 29580 -83.97.28.0/24 8717 -83.97.29.0/24 29580 -83.97.30.0/23 8717 -83.97.32.0/21 16303 -83.97.40.0/21 31056 -83.97.48.0/21 31056 -83.97.56.0/23 34000 -83.97.59.0/24 34000 -83.97.61.0/24 34000 -83.97.62.0/23 34000 -83.97.64.0/21 25206 -83.97.80.0/21 15600 -83.97.88.0/22 21320 -83.97.92.0/22 20965 -83.97.96.0/21 31130 -83.97.104.0/21 44056 -83.97.112.0/22 209854 -83.97.116.0/22 204941 -83.97.120.0/22 21217 -83.97.124.0/22 41003 -83.97.128.0/17 12946 -83.98.0.0/17 30914 -83.98.128.0/21 25525 -83.98.136.0/23 30870 -83.98.138.0/23 25525 -83.98.140.0/22 25525 -83.98.144.0/23 25525 -83.98.146.0/24 25525 -83.98.147.0/24 48635 -83.98.148.0/24 30870 -83.98.149.0/24 25525 -83.98.150.0/23 25525 -83.98.152.0/23 25525 -83.98.154.0/23 30870 -83.98.156.0/24 25525 -83.98.157.0/24 49127 -83.98.158.0/23 25525 -83.98.160.0/22 25525 -83.98.164.0/23 25525 -83.98.166.0/24 25525 -83.98.167.0/24 30870 -83.98.168.0/21 25525 -83.98.176.0/24 25525 -83.98.177.0/24 48635 -83.98.178.0/23 25525 -83.98.180.0/23 25525 -83.98.182.0/24 30870 -83.98.183.0/24 25525 -83.98.184.0/23 25525 -83.98.186.0/24 25525 -83.98.187.0/24 27257 -83.98.188.0/22 25525 -83.98.192.0/22 25525 -83.98.196.0/23 25525 -83.98.198.0/24 20264 -83.98.199.0/24 25525 -83.98.200.0/22 25525 -83.98.204.0/23 36057 -83.98.206.0/23 25525 -83.98.208.0/24 25525 -83.98.209.0/24 30870 -83.98.210.0/23 25525 -83.98.212.0/22 25525 -83.98.216.0/22 30870 -83.98.220.0/23 30870 -83.98.222.0/23 25525 -83.98.224.0/19 30925 -83.99.0.0/17 6661 -83.99.128.0/17 24651 -83.100.0.0/17 16086 -83.100.128.0/17 12390 -83.101.0.0/17 50083 -83.101.128.0/19 29690 -83.102.0.0/17 16086 -83.102.128.0/22 8402 -83.102.132.0/24 3216 -83.102.133.0/24 8402 -83.102.134.0/23 8402 -83.102.136.0/22 8402 -83.102.140.0/23 8402 -83.102.142.0/24 3216 -83.102.143.0/24 8402 -83.102.144.0/22 8402 -83.102.148.0/23 8402 -83.102.150.0/23 42110 -83.102.152.0/22 8402 -83.102.156.0/23 42110 -83.102.158.0/23 8402 -83.102.160.0/24 3216 -83.102.161.0/24 8402 -83.102.162.0/24 3216 -83.102.163.0/24 8402 -83.102.164.0/22 8402 -83.102.168.0/21 8402 -83.102.176.0/22 8402 -83.102.180.0/23 8402 -83.102.182.0/24 3216 -83.102.183.0/24 8402 -83.102.184.0/24 3216 -83.102.185.0/24 8402 -83.102.186.0/23 8402 -83.102.188.0/22 8402 -83.102.192.0/22 8402 -83.102.196.0/24 8402 -83.102.197.0/24 3216 -83.102.198.0/23 8402 -83.102.200.0/21 8402 -83.102.208.0/22 8402 -83.102.212.0/23 8402 -83.102.214.0/24 8371 -83.102.215.0/24 8402 -83.102.216.0/22 8402 -83.102.220.0/24 8402 -83.102.221.0/24 8371 -83.102.222.0/24 8371 -83.102.223.0/24 8402 -83.102.224.0/21 8402 -83.102.232.0/23 8402 -83.102.234.0/24 8371 -83.102.235.0/24 8402 -83.102.236.0/23 8402 -83.102.238.0/24 8371 -83.102.239.0/24 8402 -83.102.240.0/23 8402 -83.102.242.0/24 8402 -83.102.243.0/24 8371 -83.102.244.0/22 8402 -83.102.248.0/22 8402 -83.102.252.0/24 8371 -83.102.253.0/24 8402 -83.102.254.0/23 8402 -83.103.0.0/17 12874 -83.103.128.0/17 6830 -83.104.0.0/14 2529 -83.108.0.0/15 2119 -83.110.0.0/15 5384 -83.112.0.0/14 3215 -83.118.128.0/18 56828 -83.118.192.0/19 34177 -83.118.224.0/22 49206 -83.119.0.0/18 5390 -83.120.0.0/14 197207 -83.124.0.0/16 13237 -83.125.0.0/22 13237 -83.125.4.0/24 13237 -83.125.5.0/24 208676 -83.125.6.0/23 60380 -83.125.8.0/22 40999 -83.125.12.0/22 31197 -83.125.16.0/21 13237 -83.125.24.0/24 200093 -83.125.25.0/24 13237 -83.125.26.0/23 13237 -83.125.28.0/22 13237 -83.125.32.0/22 200093 -83.125.36.0/24 40371 -83.125.37.0/24 13237 -83.125.38.0/23 13237 -83.125.40.0/21 13237 -83.125.48.0/20 13237 -83.125.64.0/19 13237 -83.125.96.0/21 13237 -83.125.104.0/23 13237 -83.125.106.0/23 198710 -83.125.108.0/22 13237 -83.125.112.0/22 13237 -83.125.116.0/23 13237 -83.125.118.0/23 200093 -83.125.120.0/21 13237 -83.125.128.0/17 13237 -83.126.0.0/21 44307 -83.126.8.0/21 13237 -83.126.16.0/20 13237 -83.126.32.0/20 13237 -83.126.48.0/23 13237 -83.126.50.0/24 21734 -83.126.51.0/24 13237 -83.126.52.0/22 13237 -83.126.56.0/21 13237 -83.126.64.0/18 13237 -83.126.128.0/17 13237 -83.127.0.0/16 13237 -83.128.0.0/16 15435 -83.129.0.0/16 12312 -83.130.0.0/16 9116 -83.131.0.0/16 5391 -83.132.0.0/16 2860 -83.133.0.0/18 13237 -83.133.64.0/22 13237 -83.133.68.0/24 13237 -83.133.69.0/24 47518 -83.133.70.0/23 13237 -83.133.72.0/21 13237 -83.133.80.0/20 13237 -83.133.96.0/19 13237 -83.133.128.0/19 13237 -83.133.160.0/20 13237 -83.133.176.0/23 13237 -83.133.178.0/23 60380 -83.133.180.0/22 13237 -83.133.184.0/21 31197 -83.133.192.0/19 13237 -83.133.224.0/20 13237 -83.133.240.0/20 60380 -83.134.0.0/16 5432 -83.135.0.0/16 8881 -83.136.0.0/21 29045 -83.136.8.0/23 31198 -83.136.10.0/24 31198 -83.136.16.0/21 28997 -83.136.24.0/21 8359 -83.136.32.0/21 30971 -83.136.40.0/21 34218 -83.136.50.0/24 393559 -83.136.56.0/21 31452 -83.136.64.0/21 8871 -83.136.72.0/21 42605 -83.136.80.0/21 24961 -83.136.88.0/21 31027 -83.136.96.0/21 20676 -83.136.106.0/23 49367 -83.136.112.0/21 12389 -83.136.120.0/21 33941 -83.136.128.0/21 42840 -83.136.136.0/21 29600 -83.136.144.0/22 202130 -83.136.148.0/22 57752 -83.136.152.0/21 702 -83.136.160.0/21 34659 -83.136.168.0/24 31411 -83.136.176.0/22 209581 -83.136.180.0/22 35913 -83.136.184.0/21 31577 -83.136.192.0/21 35467 -83.136.200.0/21 21430 -83.136.208.0/21 31591 -83.136.216.0/22 47583 -83.136.224.0/21 31306 -83.136.232.0/23 31326 -83.136.234.0/24 47156 -83.136.235.0/24 31326 -83.136.237.0/24 31326 -83.136.238.0/23 47156 -83.136.240.0/21 31484 -83.136.248.0/21 202053 -83.137.0.0/22 31404 -83.137.5.0/24 31404 -83.137.6.0/24 31404 -83.137.8.0/21 41848 -83.137.16.0/21 31383 -83.137.24.0/21 42346 -83.137.32.0/21 51401 -83.137.40.0/21 31394 -83.137.48.0/21 31415 -83.137.56.0/21 34281 -83.137.64.0/21 31438 -83.137.72.0/21 39132 -83.137.80.0/21 13237 -83.137.88.0/21 31489 -83.137.96.0/21 43503 -83.137.104.0/21 31467 -83.137.112.0/21 47692 -83.137.120.0/21 43557 -83.137.128.0/21 13768 -83.137.136.0/21 33915 -83.137.144.0/21 31477 -83.137.152.0/23 12301 -83.137.154.0/24 62214 -83.137.155.0/24 12301 -83.137.156.0/22 12301 -83.137.160.0/21 12445 -83.137.168.0/21 31521 -83.137.176.0/21 34967 -83.137.185.0/24 35117 -83.137.186.0/23 35117 -83.137.190.0/23 43186 -83.137.192.0/21 34233 -83.137.200.0/21 7642 -83.137.211.0/24 34079 -83.137.212.0/24 34079 -83.137.216.0/21 12739 -83.137.224.0/21 31742 -83.137.232.0/21 41497 -83.137.240.0/24 15681 -83.137.241.0/24 3215 -83.137.242.0/23 48702 -83.137.244.0/24 48702 -83.137.247.0/24 48702 -83.137.248.0/21 8680 -83.138.0.0/21 29063 -83.138.8.0/21 30900 -83.138.19.0/24 2856 -83.138.48.0/21 34035 -83.138.58.0/24 207642 -83.138.59.0/24 207665 -83.138.64.0/18 34895 -83.138.128.0/18 15395 -83.138.192.0/18 12430 -83.139.0.0/23 33852 -83.139.2.0/24 33852 -83.139.3.0/24 209176 -83.139.4.0/24 200332 -83.139.5.0/24 33852 -83.139.6.0/23 33852 -83.139.8.0/21 33852 -83.139.17.0/24 33852 -83.139.18.0/24 33852 -83.139.21.0/24 33852 -83.139.22.0/23 33852 -83.139.25.0/24 33852 -83.139.27.0/24 33852 -83.139.28.0/22 33852 -83.139.32.0/21 33852 -83.139.46.0/23 197497 -83.139.48.0/20 49800 -83.139.64.0/23 31012 -83.139.66.0/24 31012 -83.139.67.0/24 15994 -83.139.68.0/23 31012 -83.139.70.0/24 15994 -83.139.71.0/24 31012 -83.139.72.0/21 31012 -83.139.80.0/20 31012 -83.139.96.0/20 31012 -83.139.112.0/21 31012 -83.139.120.0/24 15994 -83.139.121.0/24 31012 -83.139.122.0/23 31012 -83.139.124.0/22 31012 -83.139.128.0/18 6856 -83.139.192.0/23 33942 -83.139.194.0/24 201877 -83.139.195.0/24 33942 -83.139.196.0/22 33942 -83.139.200.0/24 201877 -83.139.201.0/24 33942 -83.139.208.0/24 33942 -83.139.209.0/24 201877 -83.139.210.0/23 201877 -83.140.0.0/21 39369 -83.140.8.0/22 39369 -83.140.12.0/23 39369 -83.140.14.0/23 12552 -83.140.16.0/21 39369 -83.140.24.0/23 12552 -83.140.26.0/23 39369 -83.140.28.0/23 39369 -83.140.30.0/24 12552 -83.140.31.0/24 39369 -83.140.32.0/21 39369 -83.140.40.0/23 39369 -83.140.42.0/24 39369 -83.140.43.0/24 12552 -83.140.44.0/22 39369 -83.140.48.0/22 12552 -83.140.52.0/24 12552 -83.140.53.0/24 39369 -83.140.54.0/23 39369 -83.140.56.0/22 39369 -83.140.60.0/23 39369 -83.140.62.0/24 12552 -83.140.63.0/24 39369 -83.140.64.0/24 39369 -83.140.65.0/24 12552 -83.140.66.0/23 39369 -83.140.68.0/23 39369 -83.140.70.0/24 39369 -83.140.71.0/24 12552 -83.140.72.0/21 39369 -83.140.80.0/23 39369 -83.140.82.0/24 39369 -83.140.83.0/24 12552 -83.140.84.0/22 39369 -83.140.88.0/22 39369 -83.140.92.0/23 39369 -83.140.94.0/24 39369 -83.140.95.0/24 12552 -83.140.96.0/23 12552 -83.140.98.0/24 39369 -83.140.99.0/24 12552 -83.140.100.0/23 39369 -83.140.102.0/24 39369 -83.140.103.0/24 12552 -83.140.104.0/22 39369 -83.140.108.0/22 12552 -83.140.112.0/24 39369 -83.140.113.0/24 12552 -83.140.114.0/23 39369 -83.140.116.0/22 39369 -83.140.120.0/22 39369 -83.140.124.0/22 12552 -83.140.128.0/20 39369 -83.140.144.0/21 39369 -83.140.152.0/24 39369 -83.140.153.0/24 12552 -83.140.154.0/23 39369 -83.140.156.0/23 12552 -83.140.158.0/23 39369 -83.140.160.0/24 12552 -83.140.161.0/24 39369 -83.140.162.0/23 39369 -83.140.164.0/22 39369 -83.140.168.0/23 39369 -83.140.170.0/24 39369 -83.140.171.0/24 12552 -83.140.172.0/22 39369 -83.140.176.0/22 39369 -83.140.180.0/24 12552 -83.140.181.0/24 39369 -83.140.182.0/23 39369 -83.140.184.0/23 39369 -83.140.186.0/24 59586 -83.140.187.0/24 39369 -83.140.188.0/22 39369 -83.140.192.0/23 39369 -83.140.194.0/23 12552 -83.140.196.0/24 12552 -83.140.197.0/24 39369 -83.140.198.0/23 39369 -83.140.200.0/21 39369 -83.140.208.0/24 39369 -83.140.209.0/24 12552 -83.140.210.0/23 39369 -83.140.212.0/22 39369 -83.140.216.0/22 39369 -83.140.220.0/23 12552 -83.140.222.0/23 39369 -83.140.224.0/22 39369 -83.140.228.0/23 39369 -83.140.230.0/24 39369 -83.140.231.0/24 12552 -83.140.232.0/21 39369 -83.140.240.0/24 39369 -83.140.241.0/24 12552 -83.140.242.0/23 39369 -83.140.244.0/22 39369 -83.140.248.0/24 39369 -83.140.249.0/24 12552 -83.140.250.0/23 39369 -83.140.252.0/22 39369 -83.141.0.0/18 29551 -83.141.64.0/18 25441 -83.141.128.0/17 21502 -83.142.0.0/21 47234 -83.142.8.0/21 44890 -83.142.16.0/21 24950 -83.142.24.0/21 31708 -83.142.32.0/21 31712 -83.142.40.0/21 39168 -83.142.48.0/22 12679 -83.142.52.0/22 200557 -83.142.56.0/21 43939 -83.142.64.0/21 33859 -83.142.72.0/21 16302 -83.142.80.0/21 201011 -83.142.88.0/21 34310 -83.142.96.0/21 8896 -83.142.104.0/21 15713 -83.142.112.0/21 41809 -83.142.120.0/21 34169 -83.142.128.0/21 61157 -83.142.136.0/21 38923 -83.142.144.0/21 34177 -83.142.152.0/21 33838 -83.142.160.0/21 8369 -83.142.168.0/24 203227 -83.142.169.0/24 30851 -83.142.170.0/23 30851 -83.142.172.0/22 30851 -83.142.176.0/21 39816 -83.142.184.0/21 34254 -83.142.192.0/21 8819 -83.142.216.0/21 199494 -83.142.224.0/22 20860 -83.142.228.0/23 20860 -83.142.230.0/24 20860 -83.142.231.0/24 29164 -83.142.232.0/21 20516 -83.142.240.0/21 43402 -83.142.248.0/21 35356 -83.143.0.0/21 34520 -83.143.8.0/21 29465 -83.143.16.0/21 43646 -83.143.24.0/21 14988 -83.143.32.0/21 196812 -83.143.40.0/21 29314 -83.143.48.0/22 34747 -83.143.52.0/23 8350 -83.143.54.0/23 34747 -83.143.56.0/21 208281 -83.143.64.0/22 62133 -83.143.68.0/22 25455 -83.143.72.0/24 60486 -83.143.76.0/22 42707 -83.143.80.0/21 34989 -83.143.96.0/21 43939 -83.143.108.0/22 209835 -83.143.112.0/22 398083 -83.143.116.0/23 7489 -83.143.118.0/23 40676 -83.143.120.0/21 31027 -83.143.128.0/21 35174 -83.143.136.0/21 29314 -83.143.144.0/21 34917 -83.143.160.0/21 35229 -83.143.168.0/21 209820 -83.143.176.0/21 51614 -83.143.184.0/23 25151 -83.143.186.0/23 31673 -83.143.188.0/22 31673 -83.143.192.0/21 34485 -83.143.200.0/21 44387 -83.143.208.0/21 35258 -83.143.216.0/21 35382 -83.143.224.0/21 5631 -83.143.232.0/21 6703 -83.143.240.0/21 9009 -83.143.248.0/21 3264 -83.144.0.0/18 196773 -83.144.64.0/18 6830 -83.144.128.0/18 2860 -83.144.192.0/18 33965 -83.145.0.0/18 12552 -83.145.64.0/18 12670 -83.145.128.0/18 30975 -83.145.192.0/18 29422 -83.146.0.0/18 25310 -83.146.64.0/20 28745 -83.146.80.0/22 28745 -83.146.84.0/24 28745 -83.146.85.0/24 20485 -83.146.86.0/23 20485 -83.146.88.0/23 28745 -83.146.90.0/23 20485 -83.146.92.0/24 20485 -83.146.93.0/24 28745 -83.146.94.0/23 20485 -83.146.96.0/20 28745 -83.146.112.0/23 28745 -83.146.114.0/23 20485 -83.146.116.0/22 28745 -83.146.120.0/21 28745 -83.146.128.0/20 58340 -83.146.160.0/21 29132 -83.146.168.0/21 16086 -83.146.192.0/18 39194 -83.147.0.0/19 203178 -83.147.32.0/20 203178 -83.147.48.0/21 203178 -83.147.56.0/22 203178 -83.147.60.0/23 203178 -83.147.62.0/24 203178 -83.147.63.0/24 31577 -83.147.64.0/18 31222 -83.147.128.0/18 31122 -83.147.192.0/22 16200 -83.147.196.0/22 202492 -83.147.200.0/21 202492 -83.147.208.0/23 202492 -83.147.212.0/23 56466 -83.147.214.0/23 39650 -83.147.216.0/23 47285 -83.147.218.0/23 202492 -83.147.220.0/23 202492 -83.147.222.0/23 56466 -83.147.224.0/21 202492 -83.147.232.0/22 35478 -83.147.236.0/22 202492 -83.147.240.0/20 56466 -83.148.0.0/18 29208 -83.148.64.0/18 8866 -83.148.128.0/18 8190 -83.148.192.0/18 39699 -83.149.0.0/21 31213 -83.149.8.0/23 25159 -83.149.13.0/24 13075 -83.149.14.0/24 13075 -83.149.16.0/21 31133 -83.149.24.0/21 31163 -83.149.32.0/21 31224 -83.149.40.0/21 31208 -83.149.48.0/22 31205 -83.149.52.0/22 31195 -83.149.64.0/18 60781 -83.149.128.0/18 31319 -83.149.192.0/18 3058 -83.150.0.0/18 8758 -83.150.64.0/18 29422 -83.150.128.0/19 31331 -83.150.160.0/20 31331 -83.150.176.0/21 3301 -83.150.184.0/21 31331 -83.150.192.0/23 208560 -83.150.196.0/23 60920 -83.150.200.0/22 29256 -83.150.204.0/24 50494 -83.150.208.0/22 15681 -83.150.212.0/22 51559 -83.150.216.0/22 47872 -83.150.220.0/22 9009 -83.150.224.0/22 132839 -83.150.228.0/22 12722 -83.150.232.0/22 51088 -83.150.236.0/24 50599 -83.150.237.0/24 209201 -83.150.238.0/23 48095 -83.150.240.0/22 47602 -83.150.244.0/22 197205 -83.150.248.0/22 61337 -83.150.252.0/24 206576 -83.151.0.0/20 31286 -83.151.16.0/20 31333 -83.151.32.0/20 31505 -83.151.48.0/20 31498 -83.151.112.0/22 39470 -83.151.117.0/24 39470 -83.151.128.0/18 31027 -83.151.192.0/22 61369 -83.151.196.0/23 198781 -83.151.198.0/24 199391 -83.151.199.0/24 199843 -83.151.200.0/21 56329 -83.151.208.0/20 199055 -83.151.224.0/19 51918 -83.152.0.0/13 12322 -83.160.0.0/14 3265 -83.164.0.0/16 35369 -83.165.0.0/16 12334 -83.166.0.0/21 31507 -83.166.8.0/21 31634 -83.166.16.0/21 31634 -83.166.24.0/21 31507 -83.166.32.0/19 3249 -83.166.64.0/20 31562 -83.166.80.0/21 42543 -83.166.88.0/21 31562 -83.166.96.0/19 51009 -83.166.128.0/19 29222 -83.166.160.0/19 31727 -83.166.192.0/20 12310 -83.166.208.0/24 20879 -83.166.209.0/24 12310 -83.166.210.0/23 20879 -83.166.212.0/22 12310 -83.166.216.0/23 12310 -83.166.218.0/24 12310 -83.166.219.0/24 20879 -83.166.220.0/24 12310 -83.166.221.0/24 20879 -83.166.222.0/23 12310 -83.166.224.0/21 24936 -83.166.232.0/24 24936 -83.166.236.0/22 24936 -83.166.240.0/20 24936 -83.167.0.0/19 28890 -83.167.32.0/19 8218 -83.167.64.0/24 31585 -83.167.65.0/24 39435 -83.167.66.0/24 39435 -83.167.67.0/24 31585 -83.167.68.0/22 39435 -83.167.72.0/23 39435 -83.167.74.0/23 31585 -83.167.76.0/22 31585 -83.167.80.0/20 39435 -83.167.96.0/19 15582 -83.167.128.0/19 25540 -83.167.160.0/19 31595 -83.167.192.0/19 33915 -83.167.224.0/19 24971 -83.168.0.0/18 6866 -83.168.64.0/18 31304 -83.168.128.0/18 16160 -83.168.192.0/18 35041 -83.169.0.0/20 8972 -83.169.16.0/21 8972 -83.169.24.0/21 35329 -83.169.32.0/20 20773 -83.169.48.0/22 61157 -83.169.52.0/24 8972 -83.169.54.0/23 20773 -83.169.56.0/21 61157 -83.169.64.0/18 8784 -83.169.128.0/18 31334 -83.169.192.0/22 31133 -83.169.197.0/24 31133 -83.169.198.0/23 31133 -83.169.200.0/22 35298 -83.169.205.0/24 31133 -83.169.206.0/23 31133 -83.169.208.0/21 31208 -83.169.216.0/24 31224 -83.169.217.0/24 29648 -83.169.218.0/23 29648 -83.169.220.0/22 29648 -83.169.224.0/21 31195 -83.169.232.0/21 31163 -83.169.240.0/21 31163 -83.169.248.0/21 31205 -83.170.0.0/18 29259 -83.170.64.0/18 13213 -83.170.128.0/20 22351 -83.170.144.0/22 22351 -83.170.148.0/24 8966 -83.170.149.0/24 22351 -83.170.150.0/23 22351 -83.170.152.0/21 22351 -83.170.160.0/19 22351 -83.170.192.0/18 12530 -83.171.0.0/18 2847 -83.171.64.0/18 12389 -83.171.128.0/18 8767 -83.171.196.0/22 208244 -83.171.200.0/24 203061 -83.171.204.0/22 52055 -83.171.212.0/22 12722 -83.171.216.0/22 41273 -83.171.220.0/22 208910 -83.171.224.0/22 9009 -83.171.228.0/22 43809 -83.171.232.0/22 49505 -83.171.236.0/22 24940 -83.171.248.0/22 200282 -83.171.252.0/23 49453 -83.171.254.0/23 174 -83.172.0.0/23 25446 -83.172.4.0/22 25446 -83.172.8.0/22 25446 -83.172.20.0/22 35411 -83.172.24.0/21 33892 -83.172.32.0/21 33892 -83.172.40.0/22 44417 -83.172.48.0/22 25446 -83.172.52.0/23 25446 -83.172.56.0/22 25446 -83.172.60.0/24 57129 -83.172.62.0/23 9009 -83.172.64.0/18 13189 -83.172.128.0/18 25459 -83.172.192.0/18 12651 -83.173.0.0/18 31441 -83.173.64.0/19 34572 -83.173.96.0/21 34572 -83.173.113.0/24 34572 -83.173.125.0/24 34572 -83.173.126.0/24 39830 -83.173.127.0/24 42308 -83.173.128.0/22 6739 -83.173.132.0/22 12357 -83.173.136.0/21 12357 -83.173.144.0/23 12357 -83.173.146.0/23 6739 -83.173.148.0/22 12357 -83.173.152.0/22 12357 -83.173.156.0/22 6739 -83.173.160.0/21 6739 -83.173.168.0/23 6739 -83.173.170.0/24 12357 -83.173.171.0/24 6739 -83.173.172.0/22 6739 -83.173.176.0/21 12357 -83.173.184.0/21 6739 -83.173.192.0/18 3303 -83.174.0.0/18 12353 -83.174.64.0/18 29217 -83.174.128.0/20 57795 -83.174.144.0/22 48544 -83.174.148.0/22 197580 -83.174.152.0/21 197580 -83.174.160.0/19 5466 -83.174.192.0/18 28812 -83.175.64.0/18 31510 -83.175.128.0/20 35778 -83.175.144.0/20 34525 -83.175.160.0/20 12580 -83.175.176.0/20 6830 -83.175.192.0/18 16206 -83.176.0.0/16 1257 -83.177.0.0/17 1257 -83.177.128.0/19 1257 -83.177.160.0/24 39651 -83.177.161.0/24 2119 -83.177.162.0/23 2119 -83.177.164.0/24 2119 -83.177.165.0/24 39651 -83.177.166.0/23 39651 -83.177.168.0/23 39651 -83.177.170.0/24 2119 -83.177.171.0/24 39651 -83.177.172.0/23 2119 -83.177.174.0/23 39651 -83.177.176.0/21 39651 -83.177.184.0/22 39651 -83.177.188.0/23 39651 -83.177.190.0/24 39651 -83.177.191.0/24 34610 -83.177.192.0/20 39651 -83.177.208.0/21 39651 -83.177.216.0/22 39651 -83.177.220.0/24 2119 -83.177.221.0/24 39651 -83.177.222.0/23 39651 -83.177.224.0/20 39651 -83.177.240.0/21 39651 -83.177.248.0/22 39651 -83.177.252.0/24 2119 -83.177.253.0/24 39651 -83.177.254.0/23 39651 -83.178.0.0/15 1257 -83.180.0.0/17 1257 -83.180.128.0/18 1257 -83.180.192.0/19 1257 -83.180.224.0/20 34610 -83.180.240.0/22 34610 -83.180.244.0/22 39651 -83.180.248.0/21 39651 -83.181.0.0/16 1257 -83.182.0.0/15 1257 -83.184.0.0/14 1257 -83.188.0.0/18 39651 -83.188.64.0/18 1257 -83.188.128.0/17 1257 -83.189.0.0/16 1257 -83.190.0.0/18 1257 -83.190.64.0/18 39651 -83.190.128.0/17 1257 -83.191.0.0/17 1257 -83.191.128.0/19 1257 -83.191.160.0/19 39651 -83.191.192.0/18 1257 -83.192.0.0/13 3215 -83.200.0.0/14 3215 -83.204.0.0/15 3215 -83.206.0.0/18 3215 -83.206.64.0/23 3215 -83.206.66.0/24 35169 -83.206.67.0/24 3215 -83.206.68.0/22 3215 -83.206.72.0/21 3215 -83.206.80.0/20 3215 -83.206.96.0/19 3215 -83.206.128.0/21 3215 -83.206.136.0/22 3215 -83.206.140.0/24 3215 -83.206.141.0/24 39694 -83.206.142.0/23 3215 -83.206.144.0/20 3215 -83.206.160.0/19 3215 -83.206.192.0/19 3215 -83.206.224.0/20 3215 -83.206.240.0/24 39694 -83.206.241.0/24 3215 -83.206.242.0/23 3215 -83.206.244.0/22 3215 -83.206.248.0/21 3215 -83.208.0.0/16 5610 -83.209.0.0/17 45011 -83.209.128.0/20 45011 -83.209.144.0/21 45011 -83.209.152.0/24 45011 -83.209.153.0/24 208043 -83.209.154.0/23 45011 -83.209.156.0/22 45011 -83.209.160.0/19 45011 -83.209.192.0/18 45011 -83.211.0.0/16 15589 -83.212.0.0/16 5408 -83.213.0.0/16 12338 -83.214.0.0/16 12322 -83.215.0.0/16 8445 -83.216.0.0/19 51473 -83.216.32.0/19 197248 -83.216.64.0/19 29009 -83.216.96.0/19 20626 -83.216.128.0/19 6871 -83.216.160.0/19 21309 -83.216.192.0/20 24953 -83.216.208.0/20 20751 -83.216.224.0/19 12355 -83.217.0.0/21 31138 -83.217.8.0/24 60651 -83.217.9.0/24 199669 -83.217.10.0/24 12389 -83.217.11.0/24 199669 -83.217.12.0/23 51446 -83.217.14.0/23 48642 -83.217.16.0/22 30733 -83.217.20.0/22 12389 -83.217.24.0/22 200161 -83.217.28.0/22 44724 -83.217.32.0/19 12958 -83.217.64.0/19 34762 -83.217.96.0/19 24867 -83.217.128.0/19 44216 -83.217.160.0/19 29129 -83.217.192.0/19 31514 -83.217.224.0/20 2914 -83.217.240.0/21 2914 -83.217.248.0/22 2914 -83.217.252.0/22 44568 -83.218.0.0/19 15766 -83.218.32.0/19 31186 -83.218.64.0/19 29468 -83.218.96.0/19 196927 -83.218.128.0/19 16082 -83.218.160.0/19 31543 -83.218.192.0/19 31204 -83.218.224.0/22 6703 -83.218.228.0/23 49971 -83.218.230.0/23 6703 -83.218.232.0/23 6703 -83.218.234.0/24 6703 -83.218.235.0/24 204256 -83.218.236.0/22 6703 -83.218.240.0/20 6703 -83.219.0.0/19 12389 -83.219.32.0/19 5413 -83.219.64.0/19 15879 -83.219.96.0/22 398083 -83.219.100.0/22 24940 -83.219.104.0/21 8823 -83.219.112.0/20 15600 -83.219.128.0/19 31214 -83.219.160.0/19 34694 -83.219.192.0/19 29518 -83.219.224.0/19 31225 -83.220.0.0/21 49215 -83.220.9.0/24 31238 -83.220.10.0/23 49215 -83.220.12.0/22 49215 -83.220.32.0/19 31261 -83.220.64.0/19 31275 -83.220.96.0/19 12912 -83.220.128.0/21 61157 -83.220.136.0/21 25074 -83.220.144.0/22 25074 -83.220.148.0/22 61157 -83.220.152.0/21 61157 -83.220.160.0/22 31294 -83.220.164.0/23 31294 -83.220.166.0/24 61980 -83.220.168.0/21 29182 -83.220.176.0/20 34456 -83.220.192.0/19 12388 -83.220.224.0/22 16345 -83.220.232.0/21 16345 -83.220.240.0/20 16345 -83.221.0.0/19 31302 -83.221.32.0/19 31596 -83.221.64.0/19 16202 -83.221.96.0/19 20746 -83.221.128.0/19 16245 -83.221.160.0/23 31203 -83.221.162.0/24 35576 -83.221.163.0/24 31203 -83.221.164.0/24 31203 -83.221.165.0/24 35576 -83.221.166.0/23 35576 -83.221.168.0/21 31203 -83.221.176.0/22 31203 -83.221.180.0/23 31203 -83.221.184.0/21 31203 -83.221.192.0/19 21479 -83.221.224.0/19 21413 -83.222.0.0/19 25532 -83.222.32.0/19 8632 -83.222.64.0/19 16285 -83.222.96.0/20 42632 -83.222.112.0/21 42632 -83.222.124.0/22 47328 -83.222.128.0/19 31736 -83.222.160.0/24 49040 -83.222.161.0/24 12615 -83.222.162.0/23 31037 -83.222.164.0/23 31037 -83.222.166.0/24 12615 -83.222.167.0/24 49040 -83.222.168.0/23 12615 -83.222.170.0/24 49040 -83.222.171.0/24 12615 -83.222.172.0/24 49040 -83.222.173.0/24 12615 -83.222.174.0/23 12615 -83.222.176.0/22 12615 -83.222.180.0/24 205872 -83.222.181.0/24 12615 -83.222.182.0/23 12615 -83.222.184.0/21 43561 -83.222.192.0/20 6854 -83.222.208.0/22 6854 -83.222.212.0/22 25159 -83.222.216.0/21 25159 -83.222.224.0/19 13768 -83.223.0.0/19 42318 -83.223.34.0/24 60781 -83.223.36.0/24 60679 -83.223.38.0/24 60679 -83.223.39.0/24 30247 -83.223.40.0/24 60679 -83.223.43.0/24 60679 -83.223.44.0/24 199860 -83.223.45.0/24 134548 -83.223.48.0/22 48921 -83.223.52.0/24 24971 -83.223.64.0/19 8875 -83.223.96.0/19 29017 -83.223.128.0/19 47814 -83.223.160.0/19 15457 -83.223.192.0/19 61226 -83.223.224.0/19 42863 -83.224.64.0/20 30722 -83.224.80.0/23 30722 -83.224.86.0/23 30722 -83.224.128.0/17 30722 -83.225.0.0/16 30722 -83.226.0.0/15 2119 -83.228.0.0/18 8866 -83.228.64.0/20 8866 -83.228.80.0/22 8866 -83.228.84.0/23 8866 -83.228.86.0/23 44718 -83.228.88.0/24 8866 -83.228.89.0/24 44586 -83.228.90.0/23 12436 -83.228.92.0/22 12436 -83.228.96.0/22 8866 -83.228.100.0/23 8866 -83.228.102.0/24 57705 -83.228.103.0/24 8866 -83.228.104.0/22 8866 -83.228.108.0/23 8866 -83.228.110.0/23 13236 -83.228.112.0/22 8866 -83.228.116.0/23 12436 -83.228.118.0/23 8866 -83.228.120.0/21 8866 -83.228.128.0/17 12350 -83.229.1.0/24 8513 -83.229.2.0/24 8513 -83.229.4.0/24 8513 -83.229.6.0/24 8513 -83.229.10.0/24 8513 -83.229.14.0/23 8513 -83.229.16.0/22 8513 -83.229.21.0/24 8513 -83.229.22.0/23 8513 -83.229.24.0/23 8513 -83.229.26.0/24 8513 -83.229.28.0/23 8513 -83.229.31.0/24 8513 -83.229.32.0/23 8513 -83.229.34.0/24 8513 -83.229.36.0/22 8513 -83.229.43.0/24 8513 -83.229.44.0/23 8513 -83.229.46.0/24 8513 -83.229.48.0/24 8513 -83.229.56.0/23 8513 -83.229.58.0/24 8513 -83.229.61.0/24 8513 -83.229.62.0/23 8513 -83.229.64.0/23 8513 -83.229.66.0/24 8513 -83.229.69.0/24 8513 -83.229.78.0/23 8513 -83.229.83.0/24 8513 -83.229.89.0/24 8513 -83.229.90.0/24 8513 -83.229.92.0/23 8513 -83.229.95.0/24 8513 -83.229.103.0/24 8513 -83.229.106.0/23 8513 -83.229.108.0/22 8513 -83.229.113.0/24 8513 -83.229.114.0/24 8513 -83.229.116.0/23 8513 -83.229.118.0/24 8513 -83.229.126.0/24 8513 -83.229.128.0/19 6854 -83.229.160.0/20 6854 -83.229.176.0/21 6854 -83.229.184.0/24 6854 -83.229.185.0/24 25159 -83.229.186.0/23 6854 -83.229.188.0/22 6854 -83.229.192.0/20 6854 -83.229.208.0/23 6854 -83.229.210.0/24 6854 -83.229.211.0/24 25159 -83.229.212.0/22 6854 -83.229.216.0/21 6854 -83.229.224.0/20 6854 -83.229.240.0/21 6854 -83.229.248.0/22 6854 -83.229.252.0/23 6854 -83.229.254.0/24 25159 -83.229.255.0/24 6854 -83.230.0.0/19 202220 -83.230.32.0/20 199551 -83.230.48.0/22 35434 -83.230.52.0/22 15744 -83.230.56.0/21 15744 -83.230.64.0/20 8508 -83.230.80.0/21 15744 -83.230.88.0/22 15744 -83.230.92.0/23 15744 -83.230.94.0/24 199279 -83.230.95.0/24 15744 -83.230.96.0/19 8508 -83.231.0.0/19 12479 -83.231.32.0/23 20921 -83.231.34.0/23 12479 -83.231.36.0/22 12479 -83.231.40.0/21 12479 -83.231.48.0/20 12479 -83.231.64.0/18 12479 -83.231.128.0/17 2914 -83.232.0.0/16 1136 -83.233.0.0/16 29518 -83.234.0.0/18 20485 -83.234.64.0/20 20485 -83.234.80.0/21 20485 -83.234.88.0/24 39660 -83.234.89.0/24 20485 -83.234.90.0/23 20485 -83.234.92.0/22 20485 -83.234.96.0/19 20485 -83.234.128.0/21 20485 -83.234.136.0/23 15774 -83.234.138.0/23 20485 -83.234.140.0/22 20485 -83.234.144.0/20 20485 -83.234.160.0/21 20485 -83.234.168.0/22 20485 -83.234.172.0/23 20485 -83.234.174.0/24 52022 -83.234.175.0/24 20485 -83.234.176.0/20 20485 -83.234.192.0/19 20485 -83.234.224.0/20 20485 -83.234.240.0/21 15774 -83.234.248.0/21 20485 -83.235.0.0/16 6799 -83.236.0.0/16 20676 -83.237.0.0/16 8359 -83.238.0.0/16 12741 -83.239.0.0/19 25490 -83.239.32.0/21 25490 -83.239.40.0/23 25490 -83.239.42.0/23 12389 -83.239.44.0/22 44467 -83.239.48.0/20 25490 -83.239.64.0/19 25490 -83.239.96.0/20 25490 -83.239.112.0/20 42548 -83.239.128.0/21 33934 -83.239.136.0/22 33934 -83.239.140.0/23 12389 -83.239.142.0/23 33934 -83.239.144.0/22 33934 -83.239.148.0/23 12389 -83.239.150.0/24 12389 -83.239.151.0/24 33934 -83.239.152.0/22 33934 -83.239.156.0/23 33934 -83.239.158.0/24 33934 -83.239.159.0/24 12389 -83.239.160.0/22 33934 -83.239.164.0/24 33934 -83.239.165.0/24 12389 -83.239.166.0/24 12389 -83.239.167.0/24 33934 -83.239.168.0/23 33934 -83.239.170.0/23 12389 -83.239.172.0/22 33934 -83.239.176.0/24 33934 -83.239.177.0/24 12389 -83.239.178.0/24 12389 -83.239.179.0/24 33934 -83.239.180.0/22 33934 -83.239.184.0/22 33934 -83.239.188.0/23 33934 -83.239.190.0/24 12389 -83.239.191.0/24 33934 -83.239.192.0/21 42362 -83.239.200.0/21 25490 -83.239.208.0/20 42362 -83.239.224.0/20 25490 -83.239.240.0/24 25490 -83.239.241.0/24 12389 -83.239.242.0/24 12389 -83.239.243.0/24 25490 -83.239.244.0/22 25490 -83.239.248.0/21 12389 -83.240.0.0/17 31246 -83.240.128.0/17 15525 -83.241.0.0/17 43513 -83.241.128.0/17 21195 -83.242.0.0/19 2116 -83.242.32.0/22 39913 -83.242.36.0/22 41998 -83.242.40.0/21 39913 -83.242.48.0/20 41998 -83.242.64.0/19 30838 -83.242.96.0/20 197015 -83.242.112.0/20 198579 -83.242.128.0/18 8359 -83.242.192.0/19 8359 -83.242.224.0/20 8359 -83.242.240.0/22 8359 -83.242.244.0/22 41209 -83.242.248.0/21 41209 -83.243.0.0/21 39138 -83.243.8.0/21 5577 -83.243.16.0/21 31216 -83.243.24.0/21 13189 -83.243.32.0/21 39039 -83.243.40.0/21 34549 -83.243.48.0/21 8881 -83.243.56.0/21 25504 -83.243.64.0/21 42065 -83.243.72.0/21 29329 -83.243.80.0/21 12586 -83.243.88.0/21 24589 -83.243.96.0/21 29527 -83.243.104.0/21 29314 -83.243.112.0/21 35244 -83.243.120.0/22 24940 -83.243.124.0/22 24904 -83.243.128.0/18 41164 -83.243.208.0/20 41164 -83.243.224.0/19 41164 -83.244.0.0/20 12975 -83.244.16.0/21 12975 -83.244.24.0/23 12975 -83.244.26.0/24 12975 -83.244.27.0/24 51440 -83.244.28.0/22 51440 -83.244.32.0/19 12975 -83.244.64.0/20 12975 -83.244.80.0/23 51440 -83.244.82.0/24 51440 -83.244.83.0/24 12975 -83.244.84.0/22 12975 -83.244.88.0/21 12975 -83.244.96.0/19 12975 -83.244.128.0/17 25180 -83.245.0.0/23 3257 -83.245.2.0/23 3356 -83.245.4.0/23 3356 -83.245.6.0/24 31655 -83.245.7.0/24 3356 -83.245.8.0/22 3356 -83.245.12.0/24 6461 -83.245.13.0/24 3356 -83.245.14.0/23 3356 -83.245.16.0/20 3356 -83.245.32.0/20 3356 -83.245.48.0/22 3356 -83.245.52.0/24 3356 -83.245.53.0/24 6461 -83.245.54.0/23 3356 -83.245.56.0/24 3356 -83.245.57.0/24 6461 -83.245.58.0/23 3356 -83.245.60.0/22 3356 -83.245.64.0/21 3356 -83.245.72.0/22 3356 -83.245.76.0/23 3356 -83.245.78.0/24 3356 -83.245.79.0/24 35831 -83.245.80.0/20 3356 -83.245.96.0/21 3356 -83.245.104.0/22 3356 -83.245.108.0/24 3356 -83.245.109.0/24 3257 -83.245.110.0/23 3356 -83.245.112.0/20 3356 -83.245.128.0/17 719 -83.246.0.0/20 39756 -83.246.16.0/20 24679 -83.246.32.0/19 24679 -83.246.64.0/18 24679 -83.246.128.0/19 31364 -83.246.160.0/21 31364 -83.246.168.0/23 31364 -83.246.170.0/24 31364 -83.246.172.0/22 31364 -83.246.176.0/20 31364 -83.246.192.0/18 31364 -83.247.0.0/17 12414 -83.247.128.0/17 39551 -83.248.0.0/17 39651 -83.248.128.0/20 39651 -83.248.144.0/22 39651 -83.248.148.0/24 2119 -83.248.149.0/24 39651 -83.248.150.0/23 39651 -83.248.152.0/21 39651 -83.248.160.0/19 39651 -83.248.192.0/19 39651 -83.248.224.0/24 39651 -83.248.225.0/24 2119 -83.248.226.0/24 2119 -83.248.227.0/24 39651 -83.248.228.0/22 2119 -83.248.232.0/21 39651 -83.248.240.0/20 39651 -83.249.0.0/18 39651 -83.249.64.0/20 39651 -83.249.80.0/21 39651 -83.249.88.0/24 39651 -83.249.89.0/24 2119 -83.249.90.0/24 2119 -83.249.91.0/24 39651 -83.249.92.0/22 39651 -83.249.96.0/21 39651 -83.249.104.0/24 2119 -83.249.105.0/24 39651 -83.249.106.0/23 39651 -83.249.108.0/22 39651 -83.249.112.0/24 39651 -83.249.113.0/24 2119 -83.249.114.0/23 39651 -83.249.116.0/22 39651 -83.249.120.0/21 39651 -83.249.128.0/20 39651 -83.249.144.0/22 3301 -83.249.148.0/23 3301 -83.249.150.0/23 39651 -83.249.152.0/22 2119 -83.249.156.0/22 39651 -83.249.160.0/19 39651 -83.249.192.0/20 39651 -83.249.208.0/21 39651 -83.249.216.0/23 39651 -83.249.218.0/24 2119 -83.249.219.0/24 39651 -83.249.220.0/23 39651 -83.249.222.0/24 2119 -83.249.223.0/24 39651 -83.249.224.0/19 39651 -83.250.0.0/17 39651 -83.250.128.0/18 39651 -83.250.192.0/20 39651 -83.250.208.0/21 39651 -83.250.216.0/21 2119 -83.250.224.0/19 39651 -83.251.0.0/19 39651 -83.251.32.0/20 39651 -83.251.48.0/24 39651 -83.251.49.0/24 2119 -83.251.50.0/23 39651 -83.251.52.0/22 39651 -83.251.56.0/21 39651 -83.251.64.0/18 39651 -83.251.128.0/23 2119 -83.251.130.0/23 39651 -83.251.132.0/22 39651 -83.251.136.0/21 39651 -83.251.144.0/20 39651 -83.251.160.0/19 39651 -83.251.192.0/18 39651 -83.252.0.0/24 2119 -83.252.1.0/24 39651 -83.252.2.0/23 39651 -83.252.4.0/22 39651 -83.252.8.0/22 39651 -83.252.12.0/23 39651 -83.252.14.0/24 2119 -83.252.15.0/24 39651 -83.252.16.0/20 39651 -83.252.32.0/20 39651 -83.252.48.0/21 39651 -83.252.56.0/22 39651 -83.252.60.0/22 3301 -83.252.64.0/19 39651 -83.252.96.0/20 39651 -83.252.112.0/21 39651 -83.252.120.0/22 39651 -83.252.124.0/24 2119 -83.252.125.0/24 39651 -83.252.126.0/23 39651 -83.252.128.0/17 39651 -83.253.0.0/18 39651 -83.253.64.0/20 39651 -83.253.80.0/23 2119 -83.253.82.0/24 2119 -83.253.83.0/24 39651 -83.253.84.0/22 39651 -83.253.88.0/21 39651 -83.253.96.0/19 39651 -83.253.128.0/18 39651 -83.253.192.0/22 3301 -83.253.196.0/22 39651 -83.253.200.0/21 39651 -83.253.208.0/20 39651 -83.253.224.0/19 39651 -83.254.0.0/19 39651 -83.254.32.0/20 39651 -83.254.48.0/22 39651 -83.254.52.0/24 2119 -83.254.53.0/24 39651 -83.254.54.0/23 39651 -83.254.56.0/21 39651 -83.254.64.0/20 39651 -83.254.80.0/21 39651 -83.254.88.0/24 39651 -83.254.89.0/24 2119 -83.254.90.0/23 39651 -83.254.92.0/22 39651 -83.254.96.0/19 39651 -83.254.128.0/20 39651 -83.254.144.0/21 39651 -83.254.152.0/23 3301 -83.254.154.0/23 39651 -83.254.156.0/23 39651 -83.254.158.0/23 2119 -83.254.160.0/19 39651 -83.254.192.0/19 39651 -83.254.224.0/20 39651 -83.254.240.0/21 39651 -83.254.248.0/23 2119 -83.254.250.0/23 39651 -83.254.252.0/22 39651 -83.255.0.0/19 39651 -83.255.32.0/22 3301 -83.255.36.0/23 39651 -83.255.38.0/23 2119 -83.255.40.0/21 39651 -83.255.48.0/24 2119 -83.255.49.0/24 39651 -83.255.50.0/24 39651 -83.255.51.0/24 2119 -83.255.52.0/22 39651 -83.255.56.0/24 2119 -83.255.57.0/24 39651 -83.255.58.0/24 2119 -83.255.59.0/24 39651 -83.255.60.0/22 39651 -83.255.64.0/18 39651 -83.255.128.0/17 39651 -84.0.0.0/16 5483 -84.1.0.0/19 5483 -84.1.32.0/21 5483 -84.1.40.0/22 5483 -84.1.44.0/24 51660 -84.1.45.0/24 44247 -84.1.46.0/23 44247 -84.1.48.0/20 5483 -84.1.64.0/18 5483 -84.1.128.0/20 5483 -84.1.144.0/21 5483 -84.1.152.0/23 5483 -84.1.154.0/24 29582 -84.1.155.0/24 5483 -84.1.156.0/23 5483 -84.1.158.0/24 203583 -84.1.159.0/24 5483 -84.1.160.0/19 5483 -84.1.192.0/19 5483 -84.1.224.0/20 5483 -84.1.240.0/24 41313 -84.1.241.0/24 58079 -84.1.242.0/23 58079 -84.1.244.0/24 58079 -84.1.245.0/24 41313 -84.1.246.0/24 41313 -84.1.247.0/24 44247 -84.1.248.0/21 5483 -84.2.0.0/19 5483 -84.2.32.0/23 15545 -84.2.34.0/24 15545 -84.2.35.0/24 5483 -84.2.36.0/22 15545 -84.2.40.0/23 5483 -84.2.42.0/23 15545 -84.2.44.0/23 5483 -84.2.46.0/23 15545 -84.2.48.0/22 5483 -84.2.52.0/23 5483 -84.2.54.0/24 5483 -84.2.55.0/24 204494 -84.2.56.0/21 5483 -84.2.64.0/21 5483 -84.2.72.0/23 5483 -84.2.74.0/24 29582 -84.2.75.0/24 5483 -84.2.76.0/22 5483 -84.2.80.0/20 5483 -84.2.96.0/19 5483 -84.2.128.0/17 5483 -84.3.0.0/16 5483 -84.4.0.0/14 8228 -84.8.0.0/16 43383 -84.9.0.0/16 25310 -84.10.0.0/16 6830 -84.11.0.0/17 29259 -84.11.128.0/18 29259 -84.11.192.0/19 29259 -84.11.224.0/20 29259 -84.11.240.0/21 29259 -84.11.248.0/24 48137 -84.11.249.0/24 29259 -84.11.250.0/23 29259 -84.11.252.0/22 29259 -84.12.0.0/16 9105 -84.13.0.0/16 13285 -84.14.0.0/17 8220 -84.14.128.0/20 8220 -84.14.144.0/22 8220 -84.14.148.0/24 8220 -84.14.149.0/24 199397 -84.14.150.0/23 8220 -84.14.152.0/21 8220 -84.14.160.0/19 8220 -84.14.192.0/19 8220 -84.14.224.0/21 8220 -84.14.232.0/23 8220 -84.14.234.0/24 21208 -84.14.235.0/24 8220 -84.14.236.0/22 8220 -84.14.240.0/22 8220 -84.14.244.0/24 8220 -84.14.245.0/24 199397 -84.14.246.0/23 8220 -84.14.248.0/21 8220 -84.15.0.0/16 13194 -84.16.0.0/19 12956 -84.16.32.0/19 31679 -84.16.64.0/19 29222 -84.16.96.0/19 15425 -84.16.128.0/19 12714 -84.16.160.0/19 8220 -84.16.192.0/19 34087 -84.16.224.0/19 28753 -84.17.0.0/19 8359 -84.17.32.0/21 60068 -84.17.40.0/24 60068 -84.17.42.0/23 60068 -84.17.44.0/22 60068 -84.17.48.0/21 60068 -84.17.56.0/22 60068 -84.17.60.0/23 60068 -84.17.62.0/24 60068 -84.17.64.0/24 42926 -84.17.65.0/24 12444 -84.17.66.0/24 42926 -84.17.70.0/23 12444 -84.17.73.0/24 198504 -84.17.74.0/24 198394 -84.17.77.0/24 42926 -84.17.79.0/24 12444 -84.17.80.0/23 42926 -84.17.82.0/24 42926 -84.17.85.0/24 42926 -84.17.87.0/24 12444 -84.17.89.0/24 12444 -84.17.91.0/24 41933 -84.17.92.0/24 42926 -84.17.94.0/24 42926 -84.17.96.0/19 33940 -84.17.128.0/21 33864 -84.17.144.0/20 33864 -84.17.160.0/19 33873 -84.17.192.0/19 57208 -84.17.224.0/23 16256 -84.17.226.0/24 197023 -84.17.227.0/24 16256 -84.17.228.0/22 16256 -84.17.232.0/22 16256 -84.17.236.0/24 197023 -84.17.237.0/24 16256 -84.17.238.0/23 16256 -84.17.240.0/22 16256 -84.17.244.0/23 16256 -84.17.246.0/24 197023 -84.17.247.0/24 16256 -84.17.248.0/22 16256 -84.17.252.0/24 62461 -84.17.253.0/24 16256 -84.17.254.0/23 16256 -84.18.0.0/19 8239 -84.18.32.0/19 33831 -84.18.64.0/19 21088 -84.18.96.0/19 28840 -84.18.128.0/19 20811 -84.18.192.0/19 29636 -84.18.224.0/19 12305 -84.19.0.0/19 30962 -84.19.32.0/19 35575 -84.19.64.0/19 33943 -84.19.96.0/21 202206 -84.19.112.0/21 51905 -84.19.128.0/20 49419 -84.19.144.0/21 49419 -84.19.160.0/19 31103 -84.19.192.0/19 8881 -84.19.224.0/19 12703 -84.20.0.0/19 4589 -84.20.32.0/20 6830 -84.20.48.0/21 6830 -84.20.56.0/21 21040 -84.20.64.0/20 33924 -84.20.80.0/21 33924 -84.20.88.0/22 33924 -84.20.92.0/24 33924 -84.20.93.0/24 5414 -84.20.94.0/23 33924 -84.20.96.0/19 2116 -84.20.128.0/19 29422 -84.20.160.0/20 8447 -84.20.176.0/21 8447 -84.20.184.0/22 8562 -84.20.188.0/22 8447 -84.20.192.0/23 16096 -84.20.195.0/24 16096 -84.20.199.0/24 16096 -84.20.200.0/24 16096 -84.20.202.0/23 16096 -84.20.208.0/22 16096 -84.20.212.0/23 16096 -84.20.214.0/24 16096 -84.20.221.0/24 16096 -84.20.224.0/19 3212 -84.21.0.0/22 33947 -84.21.4.0/24 29278 -84.21.5.0/24 57389 -84.21.6.0/23 29278 -84.21.8.0/24 29278 -84.21.9.0/24 33947 -84.21.10.0/24 41075 -84.21.11.0/24 29278 -84.21.12.0/24 29278 -84.21.13.0/24 5483 -84.21.14.0/24 33947 -84.21.15.0/24 29278 -84.21.16.0/24 29278 -84.21.17.0/24 33947 -84.21.18.0/23 29278 -84.21.20.0/24 29278 -84.21.21.0/24 33947 -84.21.22.0/23 33947 -84.21.24.0/22 33947 -84.21.28.0/23 33947 -84.21.30.0/24 33947 -84.21.31.0/24 41091 -84.21.32.0/22 33848 -84.21.40.0/22 33848 -84.21.47.0/24 33848 -84.21.48.0/23 33848 -84.21.52.0/23 33848 -84.21.56.0/22 33848 -84.21.62.0/23 33848 -84.21.64.0/19 8905 -84.21.96.0/19 15425 -84.21.128.0/19 33941 -84.21.160.0/22 12695 -84.21.164.0/22 20655 -84.21.168.0/22 35913 -84.21.176.0/22 210122 -84.21.184.0/22 42965 -84.21.188.0/22 60781 -84.21.192.0/22 8866 -84.21.196.0/22 9070 -84.21.200.0/21 9070 -84.21.216.0/21 8866 -84.21.224.0/21 33987 -84.21.232.0/23 33987 -84.21.240.0/20 33987 -84.22.0.0/23 9070 -84.22.2.0/23 29667 -84.22.4.0/23 29667 -84.22.6.0/23 9070 -84.22.8.0/23 9070 -84.22.10.0/24 50866 -84.22.11.0/24 9070 -84.22.12.0/22 9070 -84.22.16.0/21 9070 -84.22.24.0/24 9070 -84.22.25.0/24 29667 -84.22.26.0/24 9070 -84.22.27.0/24 29667 -84.22.28.0/24 29667 -84.22.29.0/24 9070 -84.22.30.0/23 9070 -84.22.32.0/19 33983 -84.22.64.0/21 34444 -84.22.72.0/22 34444 -84.22.76.0/24 11127 -84.22.77.0/24 34444 -84.22.78.0/23 34444 -84.22.80.0/20 34444 -84.22.96.0/19 196752 -84.22.128.0/21 43035 -84.22.136.0/21 33991 -84.22.144.0/22 33991 -84.22.148.0/22 57129 -84.22.152.0/21 33991 -84.22.160.0/19 20860 -84.22.194.0/23 21353 -84.22.196.0/22 21353 -84.22.200.0/22 41403 -84.22.204.0/22 34925 -84.22.224.0/19 25233 -84.23.0.0/19 2856 -84.23.32.0/19 29319 -84.23.64.0/19 35366 -84.23.96.0/19 34400 -84.23.128.0/19 16117 -84.23.160.0/19 16290 -84.23.192.0/19 15457 -84.23.224.0/19 34171 -84.24.0.0/13 33915 -84.32.0.0/18 33922 -84.32.64.0/19 33922 -84.32.96.0/21 33922 -84.32.104.0/21 21412 -84.32.112.0/23 35441 -84.32.114.0/23 33922 -84.32.116.0/22 33922 -84.32.120.0/21 33922 -84.32.128.0/21 33922 -84.32.136.0/22 21412 -84.32.140.0/22 33922 -84.32.144.0/22 51388 -84.32.148.0/22 33922 -84.32.152.0/21 21412 -84.32.160.0/22 198345 -84.32.164.0/22 33922 -84.32.168.0/21 33922 -84.32.176.0/20 33922 -84.32.192.0/18 33922 -84.33.0.0/18 34081 -84.33.64.0/18 35612 -84.33.128.0/18 35612 -84.33.192.0/18 34081 -84.34.0.0/16 20569 -84.35.0.0/16 21221 -84.36.0.0/19 36992 -84.36.32.0/20 36992 -84.36.48.0/21 36992 -84.36.56.0/22 36992 -84.36.60.0/24 36992 -84.36.61.0/24 15475 -84.36.62.0/23 36992 -84.36.64.0/18 36992 -84.36.128.0/17 36992 -84.37.0.0/16 4589 -84.38.0.0/22 196691 -84.38.4.0/22 56447 -84.38.8.0/21 203673 -84.38.16.0/20 39816 -84.38.34.0/24 5607 -84.38.36.0/24 5607 -84.38.46.0/23 5607 -84.38.48.0/20 41325 -84.38.64.0/20 204119 -84.38.80.0/20 21021 -84.38.96.0/20 43939 -84.38.128.0/24 203339 -84.38.129.0/24 203557 -84.38.130.0/24 52048 -84.38.131.0/24 202920 -84.38.132.0/24 52048 -84.38.133.0/24 203557 -84.38.134.0/23 52048 -84.38.136.0/22 24589 -84.38.140.0/24 206902 -84.38.141.0/24 24589 -84.38.142.0/23 24589 -84.38.144.0/20 41164 -84.38.160.0/20 8834 -84.38.176.0/20 49505 -84.38.192.0/20 41167 -84.38.208.0/20 34937 -84.38.224.0/23 31673 -84.38.226.0/23 25151 -84.38.228.0/22 31673 -84.38.232.0/21 31673 -84.39.0.0/19 12871 -84.39.32.0/19 60940 -84.39.64.0/19 39090 -84.39.96.0/21 200548 -84.39.104.0/21 48200 -84.39.112.0/21 9009 -84.39.120.0/21 35383 -84.39.128.0/21 21367 -84.39.136.0/21 54058 -84.39.144.0/21 41083 -84.39.152.0/24 59657 -84.39.153.0/24 61234 -84.39.157.0/24 61234 -84.39.158.0/23 61234 -84.39.160.0/20 15855 -84.39.176.0/21 15704 -84.39.184.0/24 20473 -84.39.185.0/24 54600 -84.39.186.0/23 54600 -84.39.188.0/22 54600 -84.39.192.0/22 29256 -84.39.196.0/22 200272 -84.39.200.0/22 18530 -84.39.204.0/22 42707 -84.39.208.0/20 58046 -84.39.224.0/21 16372 -84.39.232.0/21 47720 -84.39.240.0/22 24955 -84.39.244.0/22 57128 -84.39.248.0/21 41704 -84.40.0.0/20 201471 -84.40.16.0/20 3064 -84.40.32.0/20 201471 -84.40.58.0/23 201471 -84.40.60.0/22 201471 -84.40.64.0/20 43561 -84.40.80.0/24 43561 -84.40.81.0/24 196738 -84.40.82.0/23 43561 -84.40.84.0/22 43561 -84.40.88.0/21 43561 -84.40.96.0/20 43561 -84.40.112.0/23 43561 -84.40.114.0/24 201583 -84.40.115.0/24 43561 -84.40.116.0/22 43561 -84.40.120.0/21 43561 -84.40.128.0/17 12741 -84.41.0.0/17 9119 -84.41.128.0/17 8608 -84.42.0.0/21 21378 -84.42.8.0/24 12389 -84.42.9.0/24 21378 -84.42.10.0/23 21378 -84.42.12.0/24 21378 -84.42.13.0/24 12389 -84.42.14.0/23 21378 -84.42.16.0/20 21378 -84.42.32.0/19 34267 -84.42.72.0/22 12389 -84.42.76.0/24 12389 -84.42.77.0/24 34267 -84.42.78.0/23 34267 -84.42.128.0/17 6830 -84.43.0.0/17 12708 -84.43.128.0/17 21230 -84.44.0.0/22 15924 -84.44.4.0/23 15924 -84.44.6.0/24 15924 -84.44.7.0/24 35185 -84.44.8.0/21 15924 -84.44.16.0/24 49887 -84.44.17.0/24 15924 -84.44.18.0/23 15924 -84.44.20.0/22 15924 -84.44.24.0/22 15924 -84.44.28.0/24 15924 -84.44.29.0/24 31654 -84.44.30.0/24 31654 -84.44.31.0/24 15924 -84.44.32.0/21 15924 -84.44.40.0/24 15924 -84.44.41.0/24 47294 -84.44.42.0/24 31654 -84.44.43.0/24 15924 -84.44.44.0/22 15924 -84.44.48.0/20 15924 -84.44.64.0/24 15924 -84.44.65.0/24 31654 -84.44.66.0/23 31654 -84.44.68.0/24 31654 -84.44.69.0/24 15924 -84.44.70.0/23 15924 -84.44.72.0/21 15924 -84.44.80.0/20 15924 -84.44.96.0/20 15924 -84.44.112.0/21 15924 -84.44.120.0/23 15924 -84.44.122.0/24 15924 -84.44.123.0/24 8386 -84.44.124.0/22 15924 -84.44.128.0/17 8422 -84.45.0.0/21 56990 -84.45.8.0/21 25577 -84.45.16.0/21 25577 -84.45.24.0/22 25577 -84.45.28.0/23 25577 -84.45.30.0/24 206483 -84.45.31.0/24 25577 -84.45.32.0/24 29697 -84.45.33.0/24 25577 -84.45.34.0/23 25577 -84.45.36.0/22 25577 -84.45.40.0/21 25577 -84.45.48.0/23 25577 -84.45.50.0/24 40513 -84.45.51.0/24 25577 -84.45.52.0/22 25577 -84.45.56.0/21 25577 -84.45.64.0/18 25577 -84.45.128.0/17 8468 -84.46.0.0/17 15943 -84.46.128.0/17 15419 -84.47.0.0/17 6855 -84.47.128.0/23 8641 -84.47.130.0/24 200778 -84.47.131.0/24 8641 -84.47.132.0/23 201482 -84.47.134.0/23 8641 -84.47.136.0/24 8641 -84.47.137.0/24 24739 -84.47.140.0/23 8641 -84.47.142.0/24 8641 -84.47.143.0/24 200955 -84.47.144.0/23 8641 -84.47.146.0/24 201490 -84.47.147.0/24 8641 -84.47.148.0/23 196914 -84.47.150.0/23 8641 -84.47.152.0/23 8641 -84.47.154.0/23 201388 -84.47.156.0/22 8641 -84.47.160.0/22 8641 -84.47.164.0/23 8641 -84.47.166.0/23 201382 -84.47.168.0/22 8641 -84.47.172.0/24 8641 -84.47.173.0/24 199145 -84.47.174.0/23 8641 -84.47.176.0/23 8641 -84.47.179.0/24 201482 -84.47.181.0/24 8641 -84.47.182.0/23 8641 -84.47.184.0/24 201383 -84.47.185.0/24 201486 -84.47.186.0/23 8641 -84.47.188.0/24 24739 -84.47.189.0/24 201486 -84.47.190.0/23 8641 -84.47.192.0/19 58224 -84.47.224.0/21 44285 -84.47.232.0/21 58224 -84.47.240.0/21 58224 -84.47.248.0/22 58224 -84.47.253.0/24 58224 -84.47.254.0/23 58224 -84.48.0.0/15 15659 -84.50.0.0/16 3249 -84.51.0.0/18 34984 -84.51.64.0/18 29124 -84.51.128.0/18 6871 -84.51.192.0/19 12389 -84.51.224.0/19 15533 -84.52.0.0/18 8728 -84.52.64.0/18 25408 -84.52.128.0/18 3212 -84.52.192.0/18 34087 -84.53.0.0/18 2119 -84.53.64.0/18 29396 -84.53.128.0/22 12956 -84.53.132.0/23 20940 -84.53.134.0/23 16625 -84.53.136.0/23 34164 -84.53.138.0/24 20940 -84.53.139.0/24 21342 -84.53.140.0/23 20940 -84.53.142.0/23 34164 -84.53.144.0/23 34164 -84.53.146.0/24 34164 -84.53.147.0/24 20940 -84.53.148.0/22 16625 -84.53.152.0/23 34164 -84.53.154.0/23 20940 -84.53.156.0/22 16625 -84.53.160.0/24 34164 -84.53.161.0/24 20940 -84.53.162.0/24 20940 -84.53.163.0/24 34164 -84.53.164.0/22 16625 -84.53.168.0/22 16625 -84.53.172.0/24 20940 -84.53.173.0/24 34164 -84.53.174.0/24 34164 -84.53.175.0/24 20940 -84.53.176.0/24 34164 -84.53.177.0/24 20940 -84.53.178.0/23 34164 -84.53.180.0/22 16625 -84.53.184.0/24 12874 -84.53.185.0/24 20940 -84.53.186.0/24 34164 -84.53.187.0/24 20940 -84.53.188.0/22 16625 -84.53.192.0/23 34168 -84.53.194.0/24 12389 -84.53.195.0/24 34168 -84.53.196.0/23 34168 -84.53.198.0/24 12389 -84.53.199.0/24 34168 -84.53.200.0/22 34168 -84.53.204.0/23 34168 -84.53.206.0/24 34168 -84.53.207.0/24 12389 -84.53.208.0/22 34168 -84.53.212.0/22 12389 -84.53.216.0/24 12389 -84.53.217.0/24 34168 -84.53.218.0/23 34168 -84.53.220.0/22 12389 -84.53.224.0/24 12389 -84.53.225.0/24 34168 -84.53.226.0/23 12389 -84.53.228.0/24 34168 -84.53.229.0/24 12389 -84.53.230.0/24 34168 -84.53.231.0/24 12389 -84.53.232.0/24 34168 -84.53.233.0/24 12389 -84.53.234.0/23 12389 -84.53.236.0/22 34168 -84.53.240.0/21 34168 -84.53.248.0/21 12389 -84.54.4.0/24 38969 -84.54.5.0/24 209402 -84.54.6.0/24 60666 -84.54.7.0/24 209228 -84.54.8.0/22 34665 -84.54.12.0/24 42926 -84.54.13.0/24 61084 -84.54.14.0/24 42926 -84.54.15.0/24 15129 -84.54.16.0/22 12722 -84.54.20.0/22 35913 -84.54.24.0/22 29119 -84.54.28.0/22 34665 -84.54.32.0/22 209878 -84.54.36.0/23 208861 -84.54.38.0/23 59504 -84.54.44.0/22 58024 -84.54.49.0/24 52055 -84.54.50.0/23 52055 -84.54.52.0/24 42899 -84.54.53.0/24 34665 -84.54.55.0/24 45027 -84.54.56.0/23 174 -84.54.58.0/24 174 -84.54.59.0/24 62300 -84.54.61.0/24 35280 -84.54.62.0/23 35280 -84.54.64.0/19 8193 -84.54.96.0/20 8193 -84.54.112.0/24 197917 -84.54.113.0/24 34250 -84.54.114.0/24 201767 -84.54.115.0/24 8193 -84.54.118.0/23 8193 -84.54.120.0/22 8193 -84.54.124.0/23 28910 -84.54.128.0/21 29084 -84.54.136.0/22 29084 -84.54.140.0/24 43561 -84.54.141.0/24 29084 -84.54.142.0/23 29084 -84.54.144.0/22 29084 -84.54.148.0/24 35773 -84.54.149.0/24 29084 -84.54.150.0/24 35773 -84.54.151.0/24 29084 -84.54.152.0/21 29084 -84.54.160.0/20 29084 -84.54.176.0/21 29084 -84.54.184.0/24 42855 -84.54.185.0/24 29084 -84.54.186.0/23 29084 -84.54.188.0/23 29084 -84.54.190.0/24 29084 -84.54.191.0/24 59463 -84.54.192.0/20 12683 -84.54.208.0/24 12683 -84.54.209.0/24 12389 -84.54.210.0/24 12683 -84.54.211.0/24 12389 -84.54.212.0/22 12683 -84.54.216.0/23 12683 -84.54.218.0/24 12683 -84.54.219.0/24 12389 -84.54.220.0/22 12683 -84.54.224.0/20 12683 -84.54.240.0/21 12683 -84.54.248.0/24 12389 -84.54.249.0/24 12683 -84.54.250.0/23 12683 -84.54.252.0/23 12683 -84.54.254.0/24 12683 -84.54.255.0/24 12389 -84.55.0.0/20 24877 -84.55.16.0/21 24877 -84.55.24.0/21 24852 -84.55.32.0/22 24852 -84.55.36.0/23 24852 -84.55.38.0/23 24877 -84.55.40.0/21 24877 -84.55.48.0/20 24852 -84.55.64.0/18 33885 -84.55.128.0/18 9003 -84.55.192.0/18 12620 -84.56.0.0/13 3209 -84.64.0.0/13 5378 -84.72.0.0/14 6830 -84.76.0.0/14 12479 -84.80.0.0/13 1136 -84.88.0.0/16 13041 -84.89.0.0/18 13041 -84.89.128.0/17 13041 -84.90.0.0/15 13156 -84.92.0.0/15 6871 -84.94.0.0/15 9116 -84.96.0.0/13 15557 -84.104.0.0/14 33915 -84.108.0.0/14 8551 -84.112.0.0/13 6830 -84.120.0.0/19 6739 -84.120.32.0/21 12357 -84.120.40.0/21 6739 -84.120.48.0/20 6739 -84.120.64.0/19 12357 -84.120.96.0/20 12357 -84.120.112.0/20 6739 -84.120.128.0/19 6739 -84.120.160.0/21 6739 -84.120.168.0/22 6739 -84.120.172.0/23 6739 -84.120.174.0/24 6739 -84.120.175.0/24 12357 -84.120.176.0/20 6739 -84.120.192.0/20 12357 -84.120.208.0/20 6739 -84.120.224.0/19 6739 -84.121.0.0/19 12357 -84.121.32.0/22 12357 -84.121.36.0/23 6739 -84.121.38.0/23 12357 -84.121.40.0/21 12357 -84.121.48.0/20 6739 -84.121.64.0/21 6739 -84.121.72.0/21 12357 -84.121.80.0/20 12357 -84.121.96.0/22 6739 -84.121.100.0/22 12357 -84.121.104.0/21 12357 -84.121.112.0/20 6739 -84.121.128.0/20 6739 -84.121.144.0/22 12357 -84.121.148.0/22 6739 -84.121.152.0/21 12357 -84.121.160.0/19 12357 -84.121.192.0/18 12357 -84.122.0.0/19 6739 -84.122.32.0/20 12357 -84.122.48.0/21 12357 -84.122.56.0/22 12357 -84.122.60.0/23 6739 -84.122.62.0/23 12357 -84.122.64.0/21 6739 -84.122.72.0/21 12357 -84.122.80.0/21 6739 -84.122.88.0/24 12357 -84.122.89.0/24 6739 -84.122.90.0/23 6739 -84.122.92.0/22 12357 -84.122.96.0/19 12357 -84.122.128.0/24 12357 -84.122.129.0/24 6739 -84.122.130.0/23 12357 -84.122.132.0/22 12357 -84.122.136.0/22 12357 -84.122.140.0/23 12357 -84.122.142.0/23 6739 -84.122.144.0/20 12357 -84.122.160.0/19 12357 -84.122.192.0/19 6739 -84.122.224.0/20 6739 -84.122.240.0/20 12357 -84.123.0.0/20 12357 -84.123.16.0/21 6739 -84.123.24.0/22 12357 -84.123.28.0/23 12357 -84.123.30.0/24 12357 -84.123.31.0/24 6739 -84.123.32.0/20 12357 -84.123.48.0/20 6739 -84.123.64.0/21 6739 -84.123.72.0/22 12357 -84.123.76.0/23 12357 -84.123.78.0/24 12357 -84.123.79.0/24 6739 -84.123.80.0/20 12357 -84.123.96.0/20 6739 -84.123.112.0/21 12357 -84.123.120.0/21 6739 -84.123.128.0/19 6739 -84.123.160.0/21 6739 -84.123.168.0/23 6739 -84.123.170.0/23 12357 -84.123.172.0/22 6739 -84.123.176.0/20 6739 -84.123.192.0/22 6739 -84.123.196.0/22 12357 -84.123.200.0/23 6739 -84.123.202.0/24 12357 -84.123.203.0/24 6739 -84.123.204.0/22 6739 -84.123.208.0/20 6739 -84.123.224.0/19 6739 -84.124.0.0/19 6739 -84.124.32.0/20 6739 -84.124.48.0/21 6739 -84.124.56.0/22 6739 -84.124.60.0/23 6739 -84.124.62.0/24 206487 -84.124.63.0/24 6739 -84.124.64.0/19 6739 -84.124.96.0/20 6739 -84.124.112.0/22 6739 -84.124.116.0/24 43160 -84.124.117.0/24 6739 -84.124.118.0/23 6739 -84.124.120.0/21 6739 -84.124.128.0/19 6739 -84.124.160.0/21 6739 -84.124.168.0/21 12357 -84.124.176.0/20 6739 -84.124.192.0/21 12357 -84.124.200.0/21 6739 -84.124.208.0/20 12357 -84.124.224.0/20 6739 -84.124.240.0/20 12357 -84.125.0.0/17 6739 -84.125.128.0/21 6739 -84.125.136.0/21 12357 -84.125.144.0/23 12357 -84.125.146.0/23 6739 -84.125.148.0/22 12357 -84.125.152.0/21 12357 -84.125.160.0/24 12357 -84.125.161.0/24 6739 -84.125.162.0/23 12357 -84.125.164.0/22 6739 -84.125.168.0/22 12357 -84.125.172.0/24 12357 -84.125.173.0/24 6739 -84.125.174.0/23 6739 -84.125.176.0/20 6739 -84.125.192.0/18 12357 -84.126.0.0/20 12357 -84.126.16.0/21 12357 -84.126.24.0/23 12357 -84.126.26.0/23 6739 -84.126.28.0/22 6739 -84.126.32.0/19 6739 -84.126.64.0/20 6739 -84.126.80.0/20 12357 -84.126.96.0/20 6739 -84.126.112.0/20 12357 -84.126.128.0/20 6739 -84.126.144.0/21 12357 -84.126.152.0/21 6739 -84.126.160.0/19 6739 -84.126.192.0/20 6739 -84.126.208.0/23 6739 -84.126.210.0/23 12357 -84.126.212.0/24 12357 -84.126.213.0/24 6739 -84.126.214.0/23 6739 -84.126.216.0/21 6739 -84.126.224.0/20 12357 -84.126.240.0/21 12357 -84.126.248.0/22 6739 -84.126.252.0/22 12357 -84.127.0.0/19 6739 -84.127.32.0/20 12357 -84.127.48.0/20 6739 -84.127.64.0/21 12357 -84.127.72.0/22 12357 -84.127.76.0/24 12357 -84.127.77.0/24 6739 -84.127.78.0/23 12357 -84.127.80.0/20 12357 -84.127.96.0/19 12357 -84.127.128.0/18 6739 -84.127.192.0/21 6739 -84.127.200.0/21 12357 -84.127.208.0/20 12357 -84.127.224.0/19 6739 -84.128.0.0/10 3320 -84.192.0.0/13 6848 -84.200.0.0/19 31400 -84.200.32.0/22 31400 -84.200.36.0/23 31400 -84.200.38.0/24 31400 -84.200.39.0/24 44066 -84.200.40.0/21 31400 -84.200.48.0/20 31400 -84.200.64.0/18 31400 -84.200.128.0/17 31400 -84.201.0.0/18 31400 -84.201.64.0/19 8879 -84.201.96.0/23 8879 -84.201.98.0/24 57837 -84.201.99.0/24 8879 -84.201.100.0/22 8879 -84.201.104.0/21 8879 -84.201.112.0/20 8879 -84.201.128.0/18 200350 -84.201.192.0/20 25206 -84.201.208.0/20 34390 -84.201.224.0/20 34421 -84.201.240.0/20 34590 -84.202.0.0/16 2119 -84.203.0.0/16 31122 -84.204.0.0/19 20632 -84.204.32.0/20 20632 -84.204.48.0/22 20632 -84.204.52.0/24 20632 -84.204.53.0/24 50222 -84.204.54.0/23 20632 -84.204.56.0/21 20632 -84.204.64.0/18 20632 -84.204.132.0/22 20632 -84.204.136.0/24 20632 -84.204.138.0/23 20632 -84.204.140.0/22 20632 -84.204.144.0/22 20632 -84.204.148.0/24 56679 -84.204.149.0/24 20632 -84.204.150.0/23 20632 -84.204.152.0/21 20632 -84.204.160.0/20 20632 -84.204.176.0/21 20632 -84.204.188.0/22 20632 -84.204.192.0/19 20632 -84.204.224.0/24 20632 -84.204.225.0/24 16321 -84.204.226.0/23 20632 -84.204.228.0/22 20632 -84.204.232.0/21 20632 -84.204.240.0/20 20632 -84.205.0.0/19 31608 -84.205.32.0/19 2116 -84.205.64.0/19 12654 -84.205.96.0/19 31619 -84.205.144.0/20 15557 -84.205.160.0/23 34509 -84.205.162.0/24 205395 -84.205.166.0/24 209384 -84.205.167.0/24 206417 -84.205.176.0/22 31242 -84.205.180.0/23 206417 -84.205.182.0/24 201753 -84.205.183.0/24 31242 -84.205.187.0/24 31242 -84.205.192.0/20 35506 -84.205.222.0/23 35506 -84.205.224.0/19 35506 -84.206.0.0/16 31581 -84.207.0.0/17 13237 -84.207.128.0/18 13237 -84.207.192.0/21 13237 -84.207.200.0/22 13237 -84.207.204.0/23 13237 -84.207.206.0/24 14969 -84.207.207.0/24 13237 -84.207.208.0/22 13237 -84.207.212.0/24 40371 -84.207.213.0/24 200451 -84.207.214.0/23 13237 -84.207.216.0/24 13237 -84.207.217.0/24 22005 -84.207.218.0/23 13237 -84.207.220.0/22 13237 -84.207.224.0/21 13237 -84.207.232.0/24 200946 -84.207.233.0/24 13237 -84.207.234.0/24 14969 -84.207.235.0/24 13237 -84.207.236.0/22 13237 -84.207.240.0/23 13237 -84.207.242.0/24 59769 -84.207.243.0/24 13237 -84.207.244.0/23 13237 -84.207.246.0/24 200946 -84.207.247.0/24 200682 -84.207.248.0/23 35831 -84.207.250.0/23 13237 -84.207.252.0/22 13237 -84.208.0.0/13 41164 -84.216.0.0/14 2119 -84.220.0.0/14 8612 -84.224.0.0/15 8448 -84.226.0.0/15 6730 -84.228.0.0/15 9116 -84.230.0.0/15 719 -84.232.0.0/20 29119 -84.232.16.0/23 29119 -84.232.18.0/23 199952 -84.232.20.0/22 29119 -84.232.24.0/21 29119 -84.232.32.0/22 29119 -84.232.36.0/23 29119 -84.232.38.0/24 29119 -84.232.39.0/24 199482 -84.232.40.0/21 29119 -84.232.48.0/22 29119 -84.232.52.0/23 29119 -84.232.54.0/24 29119 -84.232.55.0/24 48427 -84.232.56.0/22 29119 -84.232.60.0/23 29119 -84.232.62.0/24 199770 -84.232.63.0/24 29119 -84.232.64.0/23 29119 -84.232.66.0/23 42947 -84.232.68.0/24 42947 -84.232.69.0/24 29119 -84.232.70.0/23 29119 -84.232.72.0/21 29119 -84.232.80.0/21 29119 -84.232.88.0/22 29119 -84.232.92.0/23 29119 -84.232.94.0/24 42947 -84.232.95.0/24 29119 -84.232.96.0/21 29119 -84.232.104.0/23 29119 -84.232.106.0/23 199853 -84.232.108.0/23 199770 -84.232.110.0/23 29119 -84.232.112.0/21 29119 -84.232.120.0/22 29119 -84.232.124.0/24 198192 -84.232.125.0/24 29119 -84.232.126.0/23 29119 -84.232.128.0/17 8708 -84.233.0.0/17 36992 -84.233.128.0/17 3257 -84.234.0.0/20 43939 -84.234.16.0/20 209706 -84.234.32.0/20 43939 -84.234.48.0/20 49560 -84.234.64.0/20 58003 -84.234.80.0/20 16095 -84.234.96.0/22 51177 -84.234.100.0/22 13097 -84.234.104.0/22 54903 -84.234.108.0/22 39848 -84.234.112.0/22 34969 -84.234.116.0/23 34969 -84.234.118.0/23 208141 -84.234.120.0/21 34969 -84.234.128.0/17 29695 -84.235.0.0/24 39386 -84.235.1.0/24 25019 -84.235.2.0/23 25019 -84.235.4.0/22 25019 -84.235.8.0/22 25019 -84.235.12.0/23 25019 -84.235.14.0/24 39386 -84.235.15.0/24 25019 -84.235.16.0/20 25019 -84.235.32.0/20 25019 -84.235.48.0/21 25019 -84.235.56.0/24 39386 -84.235.57.0/24 25019 -84.235.58.0/23 25019 -84.235.60.0/22 25019 -84.235.64.0/21 25019 -84.235.72.0/22 25019 -84.235.76.0/23 25019 -84.235.78.0/24 25019 -84.235.79.0/24 39386 -84.235.80.0/21 25019 -84.235.88.0/22 25019 -84.235.92.0/23 25019 -84.235.94.0/23 39386 -84.235.96.0/22 41426 -84.235.100.0/23 41426 -84.235.102.0/24 51375 -84.235.103.0/24 41426 -84.235.104.0/23 39386 -84.235.106.0/24 25019 -84.235.107.0/24 51375 -84.235.108.0/22 39386 -84.235.112.0/21 39386 -84.235.120.0/23 39386 -84.235.122.0/23 25019 -84.235.124.0/22 25019 -84.235.128.0/21 16360 -84.235.136.0/22 16360 -84.235.140.0/24 16360 -84.235.141.0/24 12684 -84.235.142.0/23 16360 -84.235.144.0/20 16360 -84.235.160.0/19 16360 -84.235.192.0/18 16360 -84.236.0.0/17 20845 -84.236.128.0/21 29119 -84.236.136.0/24 29119 -84.236.137.0/24 201337 -84.236.138.0/23 29119 -84.236.140.0/23 29119 -84.236.142.0/24 29119 -84.236.143.0/24 50563 -84.236.144.0/21 29119 -84.236.152.0/22 29119 -84.236.156.0/24 29119 -84.236.157.0/24 199482 -84.236.158.0/24 199482 -84.236.159.0/24 29119 -84.236.160.0/20 29119 -84.236.176.0/22 29119 -84.236.180.0/24 60807 -84.236.181.0/24 60711 -84.236.182.0/24 60711 -84.236.183.0/24 29119 -84.236.184.0/24 201337 -84.236.185.0/24 29119 -84.236.186.0/23 29119 -84.236.188.0/24 29119 -84.236.189.0/24 201337 -84.236.190.0/23 29119 -84.236.192.0/23 29119 -84.236.194.0/23 48990 -84.236.196.0/22 29119 -84.236.200.0/22 203600 -84.236.204.0/22 29119 -84.236.208.0/20 29119 -84.236.224.0/20 29119 -84.236.240.0/21 29119 -84.236.248.0/23 60711 -84.236.250.0/24 60807 -84.236.251.0/24 29119 -84.236.252.0/22 29119 -84.237.0.0/20 34479 -84.237.16.0/20 8506 -84.237.32.0/23 5387 -84.237.40.0/22 5387 -84.237.48.0/21 3335 -84.237.62.0/23 5387 -84.237.64.0/24 5387 -84.237.65.0/24 25549 -84.237.66.0/23 5387 -84.237.68.0/23 5387 -84.237.70.0/24 5387 -84.237.71.0/24 30797 -84.237.72.0/21 5387 -84.237.80.0/21 5387 -84.237.88.0/23 5387 -84.237.90.0/23 25549 -84.237.92.0/22 5387 -84.237.96.0/22 30797 -84.237.100.0/24 30797 -84.237.104.0/21 5387 -84.237.112.0/21 5387 -84.237.120.0/23 30797 -84.237.122.0/23 5387 -84.237.128.0/18 12578 -84.237.192.0/19 12578 -84.237.224.0/21 12578 -84.237.232.0/23 12578 -84.237.234.0/24 12578 -84.237.235.0/24 44698 -84.237.236.0/22 12578 -84.237.240.0/20 12578 -84.238.0.0/17 33796 -84.238.128.0/22 8866 -84.238.132.0/24 57731 -84.238.133.0/24 9127 -84.238.134.0/23 9127 -84.238.136.0/21 8866 -84.238.144.0/20 8866 -84.238.160.0/22 57731 -84.238.164.0/23 9127 -84.238.166.0/24 9127 -84.238.167.0/24 205132 -84.238.168.0/21 8866 -84.238.176.0/23 57731 -84.238.180.0/22 8866 -84.238.184.0/21 47402 -84.238.192.0/22 9127 -84.238.196.0/22 47402 -84.238.200.0/22 47402 -84.238.204.0/22 8866 -84.238.208.0/21 31435 -84.238.216.0/22 47402 -84.238.220.0/23 31435 -84.238.222.0/24 31435 -84.238.223.0/24 209564 -84.238.224.0/22 31435 -84.238.228.0/22 47402 -84.238.232.0/21 47402 -84.238.240.0/20 47402 -84.239.0.0/22 5541 -84.239.4.0/24 44679 -84.239.5.0/24 5541 -84.239.6.0/23 5541 -84.239.8.0/23 44679 -84.239.10.0/24 5541 -84.239.11.0/24 44679 -84.239.12.0/23 5541 -84.239.14.0/23 44679 -84.239.16.0/23 21294 -84.239.18.0/24 60604 -84.239.19.0/24 21294 -84.239.20.0/24 21294 -84.239.21.0/24 35638 -84.239.22.0/23 21294 -84.239.24.0/23 21294 -84.239.26.0/24 21294 -84.239.27.0/24 44679 -84.239.28.0/22 21294 -84.239.32.0/21 44679 -84.239.40.0/23 44679 -84.239.42.0/23 201308 -84.239.44.0/24 44679 -84.239.46.0/24 44679 -84.239.47.0/24 5541 -84.239.48.0/24 5541 -84.239.49.0/24 44679 -84.239.50.0/23 44679 -84.239.52.0/24 201308 -84.239.53.0/24 21294 -84.239.54.0/24 201308 -84.239.55.0/24 44679 -84.239.64.0/19 20926 -84.239.96.0/22 60199 -84.239.128.0/17 29422 -84.240.0.0/18 21211 -84.240.64.0/18 20904 -84.240.128.0/18 2594 -84.240.192.0/18 9198 -84.241.0.0/18 31549 -84.241.64.0/18 15600 -84.241.128.0/18 20847 -84.241.192.0/18 31615 -84.242.0.0/22 31703 -84.242.4.0/24 24739 -84.242.5.0/24 31703 -84.242.6.0/23 31703 -84.242.8.0/21 47692 -84.242.16.0/20 15943 -84.242.32.0/20 204170 -84.242.48.0/20 51407 -84.242.64.0/18 6830 -84.242.128.0/24 8717 -84.242.129.0/24 29580 -84.242.130.0/24 198868 -84.242.131.0/24 8717 -84.242.132.0/24 198576 -84.242.133.0/24 8717 -84.242.134.0/23 8717 -84.242.136.0/23 8717 -84.242.138.0/24 8717 -84.242.139.0/24 203917 -84.242.140.0/22 8717 -84.242.144.0/21 8717 -84.242.152.0/21 29580 -84.242.160.0/24 8717 -84.242.161.0/24 29580 -84.242.162.0/23 8717 -84.242.164.0/24 29580 -84.242.165.0/24 8717 -84.242.166.0/23 8717 -84.242.168.0/21 29580 -84.242.176.0/24 8717 -84.242.177.0/24 29580 -84.242.178.0/23 29580 -84.242.180.0/22 8717 -84.242.184.0/23 8717 -84.242.186.0/23 29580 -84.242.188.0/23 8717 -84.242.190.0/24 29580 -84.242.191.0/24 48824 -84.242.192.0/18 16301 -84.243.0.0/18 62183 -84.243.64.0/18 9050 -84.243.128.0/18 60717 -84.243.192.0/18 39647 -84.244.0.0/21 51034 -84.244.8.0/21 51645 -84.244.16.0/21 51645 -84.244.24.0/21 51034 -84.244.32.0/20 51645 -84.244.48.0/20 8345 -84.244.64.0/18 25248 -84.244.128.0/20 20495 -84.244.144.0/21 20495 -84.244.152.0/24 20495 -84.244.153.0/24 30870 -84.244.154.0/23 20495 -84.244.156.0/22 20495 -84.244.160.0/21 20495 -84.244.168.0/23 20495 -84.244.170.0/23 30870 -84.244.172.0/24 199522 -84.244.173.0/24 20495 -84.244.174.0/23 20495 -84.244.176.0/20 20495 -84.244.192.0/18 25176 -84.245.0.0/20 25596 -84.245.16.0/20 395800 -84.245.32.0/19 35913 -84.245.64.0/20 16160 -84.245.80.0/21 16160 -84.245.88.0/22 16160 -84.245.92.0/23 16160 -84.245.94.0/24 16160 -84.245.95.0/24 202819 -84.245.96.0/24 57801 -84.245.97.0/24 5578 -84.245.98.0/23 16160 -84.245.100.0/22 16160 -84.245.104.0/21 16160 -84.245.112.0/20 16160 -84.245.128.0/18 20676 -84.245.192.0/18 34001 -84.246.0.0/18 28685 -84.246.64.0/21 680 -84.246.72.0/21 39504 -84.246.88.0/21 33885 -84.246.112.0/22 33921 -84.246.120.0/22 34568 -84.246.124.0/24 34568 -84.246.125.0/24 61157 -84.246.126.0/24 61157 -84.246.127.0/24 34568 -84.246.128.0/22 34236 -84.246.132.0/23 34236 -84.246.134.0/24 41943 -84.246.135.0/24 34236 -84.246.136.0/21 31402 -84.246.144.0/21 62007 -84.246.152.0/21 34026 -84.246.160.0/21 39761 -84.246.168.0/21 33953 -84.246.176.0/21 42880 -84.246.184.0/21 47113 -84.246.192.0/21 8282 -84.246.200.0/21 42455 -84.246.208.0/21 50926 -84.246.216.0/22 49137 -84.246.224.0/21 35393 -84.246.232.0/21 12511 -84.246.240.0/21 34165 -84.246.248.0/21 34308 -84.247.0.0/24 203872 -84.247.1.0/24 8680 -84.247.2.0/24 13820 -84.247.4.0/22 210176 -84.247.16.0/24 28966 -84.247.17.0/24 60819 -84.247.18.0/23 201942 -84.247.20.0/24 209706 -84.247.21.0/24 60819 -84.247.22.0/24 51970 -84.247.23.0/24 6910 -84.247.24.0/22 39855 -84.247.28.0/24 5588 -84.247.29.0/24 31362 -84.247.30.0/24 33977 -84.247.31.0/24 33839 -84.247.32.0/22 209519 -84.247.36.0/23 39737 -84.247.38.0/23 9050 -84.247.40.0/22 210176 -84.247.46.0/23 12653 -84.247.48.0/24 16247 -84.247.49.0/24 9009 -84.247.50.0/23 9009 -84.247.52.0/23 39855 -84.247.54.0/24 3164 -84.247.55.0/24 31362 -84.247.56.0/24 31362 -84.247.57.0/24 9050 -84.247.58.0/24 50369 -84.247.59.0/24 209706 -84.247.60.0/24 47602 -84.247.61.0/24 34358 -84.247.62.0/24 34993 -84.247.63.0/24 39758 -84.247.64.0/21 12310 -84.247.72.0/24 12310 -84.247.73.0/24 20879 -84.247.74.0/23 20879 -84.247.76.0/22 12310 -84.247.80.0/20 12310 -84.247.96.0/20 12310 -84.247.112.0/21 12310 -84.247.120.0/23 12310 -84.247.122.0/24 12310 -84.247.123.0/24 60509 -84.247.124.0/23 12310 -84.247.126.0/24 12310 -84.247.127.0/24 39205 -84.247.128.0/23 29300 -84.247.130.0/24 29286 -84.247.131.0/24 29300 -84.247.132.0/24 29286 -84.247.133.0/24 29300 -84.247.134.0/23 29300 -84.247.136.0/22 29300 -84.247.140.0/23 29300 -84.247.142.0/24 29286 -84.247.143.0/24 29300 -84.247.144.0/24 29300 -84.247.145.0/24 29286 -84.247.146.0/24 29286 -84.247.147.0/24 29300 -84.247.148.0/24 29286 -84.247.149.0/24 29300 -84.247.150.0/24 29300 -84.247.151.0/24 29286 -84.247.152.0/24 29286 -84.247.153.0/24 29300 -84.247.154.0/23 29300 -84.247.156.0/22 29300 -84.247.160.0/21 29300 -84.247.168.0/23 29286 -84.247.170.0/23 29300 -84.247.172.0/24 29300 -84.247.173.0/24 29286 -84.247.174.0/23 29300 -84.247.176.0/20 29300 -84.247.192.0/18 31263 -84.248.0.0/14 1759 -84.252.0.0/19 13124 -84.252.32.0/21 13124 -84.252.40.0/23 8717 -84.252.42.0/23 13124 -84.252.44.0/22 13124 -84.252.48.0/22 13124 -84.252.52.0/23 13124 -84.252.54.0/24 13124 -84.252.55.0/24 202043 -84.252.56.0/21 13124 -84.252.64.0/22 9009 -84.252.68.0/24 62300 -84.252.69.0/24 12722 -84.252.70.0/23 34665 -84.252.72.0/22 50113 -84.252.76.0/22 49010 -84.252.80.0/22 197654 -84.252.84.0/22 9009 -84.252.88.0/22 9186 -84.252.92.0/22 197328 -84.252.96.0/22 204814 -84.252.100.0/22 55933 -84.252.108.0/22 49567 -84.252.112.0/22 51269 -84.252.116.0/24 138005 -84.252.120.0/22 29551 -84.252.124.0/22 209871 -84.252.128.0/18 25532 -84.252.192.0/18 8586 -84.253.0.0/18 3303 -84.253.64.0/19 42610 -84.253.96.0/19 8629 -84.253.128.0/18 5396 -84.253.192.0/18 16086 -84.254.0.0/18 25472 -84.254.64.0/23 35548 -84.254.66.0/24 45012 -84.254.68.0/22 1299 -84.254.72.0/22 50469 -84.254.76.0/23 35548 -84.254.78.0/24 35548 -84.254.79.0/24 8767 -84.254.80.0/20 8758 -84.254.96.0/20 8758 -84.254.112.0/23 45012 -84.254.114.0/24 45012 -84.254.115.0/24 35548 -84.254.116.0/24 35548 -84.254.120.0/24 45031 -84.254.121.0/24 35548 -84.254.124.0/22 35548 -84.254.128.0/23 29286 -84.254.130.0/24 201935 -84.254.131.0/24 29286 -84.254.132.0/22 29286 -84.254.136.0/21 29286 -84.254.144.0/20 29286 -84.254.160.0/19 29286 -84.254.192.0/19 31359 -84.254.224.0/19 31425 -84.255.0.0/18 12709 -84.255.64.0/18 6834 -84.255.128.0/18 5416 -84.255.192.0/18 34779 -85.0.0.0/13 3303 -85.8.0.0/18 45011 -85.8.64.0/18 9145 -85.8.132.0/22 20676 -85.8.136.0/22 208695 -85.8.140.0/22 29119 -85.8.148.0/22 46261 -85.8.153.0/24 34984 -85.8.154.0/24 34984 -85.8.164.0/22 18013 -85.8.168.0/22 29066 -85.8.172.0/22 209868 -85.8.176.0/22 12552 -85.8.180.0/22 55933 -85.8.184.0/24 57186 -85.8.185.0/24 35644 -85.8.186.0/24 39113 -85.8.187.0/24 12722 -85.8.188.0/22 9009 -85.9.0.0/18 5588 -85.9.64.0/18 49100 -85.9.128.0/18 34557 -85.9.192.0/21 21156 -85.9.200.0/21 16062 -85.9.208.0/24 41679 -85.9.209.0/24 44624 -85.9.210.0/23 44624 -85.9.212.0/22 44624 -85.9.216.0/21 44624 -85.9.224.0/21 21156 -85.9.232.0/22 44575 -85.9.236.0/23 44575 -85.9.238.0/24 44575 -85.9.239.0/24 24601 -85.9.240.0/22 47485 -85.9.244.0/22 21156 -85.9.248.0/23 21156 -85.9.250.0/24 47485 -85.9.251.0/24 21156 -85.9.252.0/22 47485 -85.10.0.0/19 8591 -85.10.32.0/20 8591 -85.10.48.0/20 29485 -85.10.64.0/19 47377 -85.10.96.0/19 8632 -85.10.192.0/18 24940 -85.11.0.0/18 34610 -85.11.64.0/20 30851 -85.11.80.0/22 30851 -85.11.84.0/23 30851 -85.11.86.0/24 60189 -85.11.87.0/24 199965 -85.11.88.0/21 30851 -85.11.96.0/20 30851 -85.11.112.0/24 199615 -85.11.113.0/24 30851 -85.11.114.0/23 30851 -85.11.116.0/24 30851 -85.11.117.0/24 51931 -85.11.118.0/24 199965 -85.11.119.0/24 30851 -85.11.120.0/21 30851 -85.11.128.0/20 207144 -85.11.144.0/21 25147 -85.11.152.0/23 25147 -85.11.154.0/23 48747 -85.11.156.0/22 25147 -85.11.160.0/24 207144 -85.11.162.0/24 207144 -85.11.164.0/22 207144 -85.11.168.0/23 207144 -85.11.171.0/24 207144 -85.11.172.0/22 207144 -85.11.176.0/22 207144 -85.11.184.0/23 207144 -85.11.186.0/24 207144 -85.11.189.0/24 207144 -85.11.191.0/24 207144 -85.11.192.0/18 3301 -85.12.0.0/19 34305 -85.12.32.0/20 34305 -85.12.48.0/21 34305 -85.12.56.0/24 34343 -85.12.57.0/24 34305 -85.12.58.0/23 34305 -85.12.60.0/22 34305 -85.12.64.0/18 786 -85.12.128.0/18 8487 -85.12.192.0/18 28890 -85.13.0.0/19 25447 -85.13.32.0/20 25447 -85.13.48.0/21 25447 -85.13.56.0/23 25447 -85.13.58.0/24 50920 -85.13.59.0/24 25447 -85.13.60.0/22 25447 -85.13.64.0/18 25512 -85.13.128.0/18 34788 -85.13.192.0/18 31708 -85.14.0.0/22 8262 -85.14.4.0/23 8262 -85.14.6.0/24 8262 -85.14.7.0/24 200533 -85.14.8.0/22 197184 -85.14.12.0/22 8262 -85.14.16.0/23 8262 -85.14.18.0/24 51486 -85.14.19.0/24 8262 -85.14.20.0/22 8262 -85.14.24.0/22 8262 -85.14.28.0/24 8262 -85.14.29.0/24 198388 -85.14.30.0/24 8262 -85.14.31.0/24 34376 -85.14.32.0/22 34376 -85.14.36.0/24 8262 -85.14.37.0/24 206645 -85.14.38.0/23 8262 -85.14.40.0/23 8262 -85.14.42.0/23 57912 -85.14.44.0/23 8262 -85.14.46.0/24 206796 -85.14.47.0/24 8262 -85.14.48.0/22 8262 -85.14.52.0/22 197184 -85.14.56.0/21 8262 -85.14.64.0/18 31242 -85.14.128.0/21 31167 -85.14.136.0/24 16347 -85.14.137.0/24 197033 -85.14.138.0/23 31167 -85.14.140.0/22 31167 -85.14.144.0/20 31167 -85.14.160.0/22 31167 -85.14.164.0/23 31167 -85.14.166.0/23 57809 -85.14.168.0/23 31167 -85.14.170.0/24 31167 -85.14.171.0/24 202089 -85.14.172.0/23 31167 -85.14.174.0/24 57809 -85.14.175.0/24 197033 -85.14.176.0/23 31167 -85.14.178.0/23 57809 -85.14.180.0/22 31167 -85.14.184.0/23 31167 -85.14.186.0/24 31167 -85.14.187.0/24 202089 -85.14.188.0/22 31167 -85.14.192.0/18 24961 -85.15.0.0/18 31549 -85.15.64.0/18 34896 -85.15.128.0/18 12389 -85.15.192.0/18 29600 -85.16.0.0/16 9145 -85.17.0.0/16 60781 -85.18.0.0/16 12874 -85.19.0.0/16 3292 -85.20.0.0/16 8968 -85.21.0.0/19 8402 -85.21.32.0/20 8402 -85.21.48.0/22 8402 -85.21.52.0/24 8402 -85.21.53.0/24 3216 -85.21.54.0/24 3216 -85.21.55.0/24 8402 -85.21.56.0/21 8402 -85.21.64.0/19 8402 -85.21.96.0/22 8402 -85.21.100.0/23 8402 -85.21.102.0/24 29125 -85.21.103.0/24 8402 -85.21.104.0/24 29125 -85.21.105.0/24 8402 -85.21.106.0/23 8402 -85.21.108.0/22 8402 -85.21.112.0/20 8402 -85.21.128.0/20 8402 -85.21.144.0/21 8402 -85.21.152.0/22 8402 -85.21.156.0/23 8402 -85.21.158.0/24 8402 -85.21.159.0/24 51161 -85.21.160.0/19 8402 -85.21.192.0/20 8402 -85.21.208.0/21 8402 -85.21.216.0/22 8402 -85.21.220.0/23 8402 -85.21.222.0/24 8402 -85.21.223.0/24 3216 -85.21.224.0/19 8402 -85.22.0.0/16 15763 -85.23.0.0/16 16086 -85.24.0.0/17 15516 -85.24.128.0/17 8473 -85.25.0.0/20 8972 -85.25.16.0/23 8972 -85.25.18.0/23 61157 -85.25.20.0/24 8972 -85.25.22.0/23 61157 -85.25.24.0/23 61157 -85.25.26.0/23 8972 -85.25.28.0/22 61157 -85.25.32.0/19 8972 -85.25.64.0/24 8972 -85.25.65.0/24 61157 -85.25.66.0/23 8972 -85.25.68.0/24 8972 -85.25.69.0/24 61157 -85.25.70.0/24 61157 -85.25.71.0/24 8972 -85.25.72.0/21 8972 -85.25.80.0/21 61157 -85.25.88.0/22 61157 -85.25.92.0/22 8972 -85.25.96.0/23 61157 -85.25.98.0/23 8972 -85.25.100.0/24 8972 -85.25.102.0/23 8972 -85.25.104.0/22 8972 -85.25.108.0/23 8972 -85.25.110.0/24 8972 -85.25.111.0/24 61157 -85.25.112.0/21 8972 -85.25.120.0/24 8972 -85.25.121.0/24 61157 -85.25.122.0/23 8972 -85.25.124.0/22 8972 -85.25.128.0/20 8972 -85.25.144.0/21 8972 -85.25.152.0/22 8972 -85.25.156.0/23 8972 -85.25.158.0/24 61157 -85.25.159.0/24 8972 -85.25.160.0/21 8972 -85.25.168.0/22 8972 -85.25.172.0/23 8972 -85.25.174.0/24 8972 -85.25.175.0/24 61157 -85.25.176.0/20 8972 -85.25.192.0/20 8972 -85.25.208.0/22 8972 -85.25.212.0/24 61157 -85.25.213.0/24 8972 -85.25.214.0/23 8972 -85.25.216.0/22 8972 -85.25.220.0/24 8972 -85.25.221.0/24 61157 -85.25.222.0/23 8972 -85.25.224.0/21 8972 -85.25.232.0/23 8972 -85.25.234.0/24 61157 -85.25.235.0/24 8972 -85.25.236.0/22 8972 -85.25.240.0/23 61157 -85.25.242.0/23 8972 -85.25.244.0/24 8972 -85.25.245.0/24 61157 -85.25.246.0/24 8972 -85.25.247.0/24 61157 -85.25.248.0/21 8972 -85.26.0.0/17 12392 -85.26.128.0/20 31213 -85.26.144.0/20 25159 -85.26.160.0/20 31133 -85.26.176.0/20 31163 -85.26.192.0/22 31224 -85.26.196.0/22 31133 -85.26.200.0/21 31133 -85.26.208.0/20 31213 -85.26.224.0/24 31205 -85.26.226.0/23 31205 -85.26.228.0/22 31205 -85.26.232.0/21 31133 -85.26.240.0/21 31195 -85.26.248.0/21 31213 -85.27.0.0/17 12392 -85.27.128.0/17 34705 -85.28.0.0/19 31643 -85.28.64.0/19 6848 -85.28.96.0/20 6848 -85.28.112.0/22 44216 -85.28.116.0/22 6848 -85.28.120.0/22 6848 -85.28.124.0/22 44216 -85.28.128.0/18 21404 -85.28.192.0/21 34974 -85.28.200.0/22 34974 -85.28.204.0/23 34974 -85.28.206.0/23 12389 -85.28.208.0/20 12389 -85.28.224.0/20 12389 -85.28.240.0/20 34974 -85.29.0.0/18 34984 -85.29.64.0/18 13170 -85.29.128.0/23 21299 -85.29.130.0/24 21299 -85.29.131.0/24 35168 -85.29.132.0/22 21299 -85.29.136.0/21 21299 -85.29.144.0/20 21299 -85.29.160.0/19 21299 -85.29.192.0/18 3249 -85.30.0.0/18 45011 -85.30.64.0/18 16333 -85.30.128.0/18 34244 -85.30.192.0/19 42610 -85.30.224.0/20 42610 -85.30.240.0/21 42610 -85.30.248.0/22 42610 -85.30.252.0/24 42610 -85.30.253.0/24 62133 -85.30.254.0/24 62133 -85.30.255.0/24 42610 -85.31.0.0/19 21013 -85.31.33.0/24 39405 -85.31.36.0/22 42498 -85.31.40.0/23 210095 -85.31.42.0/24 210095 -85.31.48.0/22 12695 -85.31.53.0/24 393559 -85.31.54.0/23 393559 -85.31.56.0/22 29119 -85.31.60.0/22 201942 -85.31.64.0/20 42705 -85.31.80.0/21 42705 -85.31.88.0/22 42705 -85.31.92.0/23 42705 -85.31.94.0/23 36614 -85.31.96.0/21 43513 -85.31.104.0/21 35283 -85.31.112.0/21 15672 -85.31.122.0/23 39678 -85.31.124.0/24 39678 -85.31.125.0/24 41999 -85.31.126.0/24 39678 -85.31.136.0/21 35299 -85.31.144.0/21 35300 -85.31.152.0/21 42162 -85.31.160.0/21 35314 -85.31.168.0/22 34659 -85.31.172.0/22 198225 -85.31.176.0/21 12714 -85.31.184.0/21 35366 -85.31.192.0/20 30781 -85.31.208.0/23 30781 -85.31.210.0/24 35334 -85.31.211.0/24 39444 -85.31.212.0/24 39444 -85.31.213.0/24 30781 -85.31.214.0/24 30781 -85.31.215.0/24 34173 -85.31.216.0/22 30781 -85.31.220.0/24 50779 -85.31.221.0/24 30781 -85.31.222.0/24 35334 -85.31.223.0/24 30781 -85.31.224.0/20 41314 -85.31.240.0/24 202385 -85.31.241.0/24 204885 -85.31.243.0/24 200670 -85.31.245.0/24 200289 -85.31.246.0/24 208807 -85.31.248.0/23 203828 -85.31.250.0/23 197887 -85.31.252.0/24 200917 -85.31.253.0/24 202399 -85.31.254.0/24 209292 -85.32.0.0/16 3269 -85.33.0.0/23 3269 -85.33.2.0/23 20746 -85.33.4.0/22 3269 -85.33.8.0/21 3269 -85.33.16.0/20 3269 -85.33.32.0/19 3269 -85.33.64.0/18 3269 -85.33.128.0/17 3269 -85.34.0.0/15 3269 -85.36.0.0/16 3269 -85.37.0.0/20 3269 -85.37.16.0/23 20746 -85.37.18.0/23 3269 -85.37.20.0/22 3269 -85.37.24.0/21 3269 -85.37.32.0/19 3269 -85.37.64.0/18 3269 -85.37.128.0/17 3269 -85.38.0.0/15 3269 -85.40.0.0/14 3269 -85.44.0.0/16 3269 -85.45.0.0/17 3269 -85.45.128.0/18 3269 -85.45.192.0/19 3269 -85.45.224.0/20 3269 -85.45.240.0/21 3269 -85.45.248.0/23 3269 -85.45.250.0/24 32787 -85.45.251.0/24 3269 -85.45.252.0/22 3269 -85.46.0.0/15 3269 -85.48.0.0/12 12479 -85.64.0.0/15 1680 -85.66.0.0/15 20845 -85.68.0.0/15 21502 -85.70.0.0/15 5610 -85.72.0.0/14 6799 -85.76.0.0/14 790 -85.80.0.0/14 9158 -85.84.0.0/14 12338 -85.88.0.0/19 33984 -85.88.32.0/23 34144 -85.88.34.0/24 6696 -85.88.35.0/24 34144 -85.88.38.0/23 34144 -85.88.48.0/23 34144 -85.88.51.0/24 34144 -85.88.53.0/24 34144 -85.88.54.0/23 34144 -85.88.64.0/19 34100 -85.88.96.0/19 33915 -85.88.128.0/19 8220 -85.88.160.0/19 34137 -85.88.192.0/19 25002 -85.88.224.0/20 2856 -85.88.240.0/23 2856 -85.88.246.0/23 61419 -85.88.248.0/21 61419 -85.89.0.0/19 34087 -85.89.32.0/19 3249 -85.89.64.0/19 34133 -85.89.102.0/24 5429 -85.89.112.0/21 5429 -85.89.126.0/23 29233 -85.89.128.0/19 25156 -85.89.160.0/19 16342 -85.89.192.0/19 43200 -85.89.224.0/19 25384 -85.90.0.0/19 39440 -85.90.32.0/19 39116 -85.90.64.0/19 1126 -85.90.96.0/21 15672 -85.90.104.0/22 15672 -85.90.112.0/20 15672 -85.90.128.0/19 12793 -85.90.160.0/19 24822 -85.90.192.0/19 34248 -85.90.224.0/20 15830 -85.90.240.0/22 15830 -85.90.244.0/22 63949 -85.90.248.0/21 15830 -85.91.0.0/19 34245 -85.91.32.0/23 4589 -85.91.36.0/22 5413 -85.91.40.0/22 48954 -85.91.44.0/24 27381 -85.91.46.0/24 27381 -85.91.49.0/24 51553 -85.91.50.0/23 51553 -85.91.64.0/19 12334 -85.91.96.0/21 8641 -85.91.104.0/24 28809 -85.91.105.0/24 201485 -85.91.106.0/24 202361 -85.91.107.0/24 201485 -85.91.112.0/23 8641 -85.91.114.0/24 8641 -85.91.115.0/24 28809 -85.91.118.0/23 8641 -85.91.120.0/23 28809 -85.91.122.0/24 8641 -85.91.123.0/24 201381 -85.91.124.0/23 201490 -85.91.127.0/24 201490 -85.91.128.0/20 8717 -85.91.144.0/23 8717 -85.91.146.0/24 29580 -85.91.147.0/24 8717 -85.91.148.0/22 8717 -85.91.152.0/24 8717 -85.91.153.0/24 29580 -85.91.154.0/24 29580 -85.91.155.0/24 8717 -85.91.156.0/24 8717 -85.91.157.0/24 29580 -85.91.158.0/23 29580 -85.91.160.0/19 16326 -85.91.192.0/19 6789 -85.91.224.0/19 34270 -85.92.0.0/19 12958 -85.92.32.0/19 25424 -85.92.64.0/19 34282 -85.92.96.0/22 209810 -85.92.100.0/22 32708 -85.92.104.0/22 8764 -85.92.109.0/24 46573 -85.92.110.0/23 205220 -85.92.112.0/24 23338 -85.92.113.0/24 24000 -85.92.114.0/23 23338 -85.92.116.0/23 198770 -85.92.118.0/24 198770 -85.92.119.0/24 201601 -85.92.120.0/22 60757 -85.92.124.0/22 207046 -85.92.128.0/23 48635 -85.92.130.0/24 25525 -85.92.131.0/24 48635 -85.92.132.0/24 48635 -85.92.133.0/24 25525 -85.92.134.0/23 25525 -85.92.136.0/24 25525 -85.92.137.0/24 48635 -85.92.138.0/24 25525 -85.92.139.0/24 48635 -85.92.140.0/22 25525 -85.92.144.0/24 25525 -85.92.145.0/24 48635 -85.92.146.0/24 25525 -85.92.147.0/24 48635 -85.92.148.0/22 25525 -85.92.152.0/22 36057 -85.92.156.0/23 36057 -85.92.158.0/24 36057 -85.92.159.0/24 27257 -85.92.160.0/19 199335 -85.92.192.0/19 6908 -85.92.224.0/19 9146 -85.93.0.0/23 12586 -85.93.2.0/24 203913 -85.93.3.0/24 12586 -85.93.4.0/22 12586 -85.93.8.0/21 12586 -85.93.16.0/22 12586 -85.93.20.0/24 57509 -85.93.21.0/24 12586 -85.93.22.0/23 12586 -85.93.24.0/21 12586 -85.93.32.0/19 12389 -85.93.64.0/24 31100 -85.93.65.0/24 61157 -85.93.66.0/23 61157 -85.93.69.0/24 31100 -85.93.72.0/24 31100 -85.93.77.0/24 31100 -85.93.80.0/24 61157 -85.93.83.0/24 8972 -85.93.88.0/21 8972 -85.93.96.0/19 34315 -85.93.128.0/19 34300 -85.93.160.0/19 197013 -85.93.192.0/19 9008 -85.93.224.0/19 61275 -85.94.0.0/23 44237 -85.94.2.0/23 25515 -85.94.4.0/22 25515 -85.94.8.0/21 12389 -85.94.16.0/21 25515 -85.94.24.0/22 25515 -85.94.28.0/22 12389 -85.94.32.0/19 34352 -85.94.64.0/19 34362 -85.94.96.0/19 8585 -85.94.128.0/19 20875 -85.94.160.0/19 6752 -85.94.192.0/19 12637 -85.94.224.0/19 34769 -85.95.24.0/22 15412 -85.95.32.0/19 43207 -85.95.64.0/23 8390 -85.95.66.0/24 34753 -85.95.67.0/24 8390 -85.95.68.0/22 8390 -85.95.72.0/22 8390 -85.95.76.0/24 34589 -85.95.77.0/24 8390 -85.95.78.0/24 35194 -85.95.79.0/24 8390 -85.95.80.0/24 24693 -85.95.81.0/24 8390 -85.95.82.0/23 8390 -85.95.84.0/23 8390 -85.95.86.0/23 39184 -85.95.88.0/24 174 -85.95.89.0/24 8390 -85.95.90.0/23 8390 -85.95.92.0/22 8390 -85.95.96.0/19 21267 -85.95.128.0/19 34470 -85.95.160.0/19 12389 -85.95.192.0/19 42487 -85.95.224.0/23 49467 -85.95.226.0/24 49467 -85.95.228.0/22 49467 -85.95.232.0/22 49467 -85.95.236.0/24 49467 -85.95.237.0/24 206991 -85.95.238.0/23 206991 -85.95.240.0/22 206991 -85.95.244.0/24 206991 -85.95.245.0/24 49467 -85.95.248.0/21 49467 -85.96.0.0/18 47331 -85.96.64.0/19 47331 -85.96.96.0/21 47331 -85.96.104.0/24 47331 -85.96.105.0/24 9121 -85.96.106.0/23 47331 -85.96.108.0/22 47331 -85.96.112.0/20 47331 -85.96.128.0/21 9121 -85.96.136.0/21 47331 -85.96.144.0/20 47331 -85.96.160.0/21 47331 -85.96.168.0/22 9121 -85.96.172.0/24 47331 -85.96.173.0/24 9121 -85.96.174.0/23 47331 -85.96.176.0/22 9121 -85.96.180.0/22 47331 -85.96.184.0/22 9121 -85.96.188.0/22 47331 -85.96.192.0/21 9121 -85.96.200.0/22 9121 -85.96.204.0/24 47331 -85.96.205.0/24 9121 -85.96.206.0/24 9121 -85.96.207.0/24 47331 -85.96.208.0/20 47331 -85.96.224.0/21 47331 -85.96.232.0/22 47331 -85.96.236.0/23 47331 -85.96.238.0/23 9121 -85.96.240.0/22 9121 -85.96.244.0/22 47331 -85.96.248.0/21 47331 -85.97.0.0/18 47331 -85.97.64.0/19 47331 -85.97.96.0/21 9121 -85.97.104.0/22 9121 -85.97.108.0/22 47331 -85.97.112.0/22 47331 -85.97.116.0/22 9121 -85.97.120.0/21 9121 -85.97.128.0/23 9121 -85.97.130.0/23 47331 -85.97.132.0/22 47331 -85.97.136.0/21 47331 -85.97.144.0/23 47331 -85.97.146.0/24 47331 -85.97.147.0/24 9121 -85.97.148.0/23 47331 -85.97.150.0/24 47331 -85.97.151.0/24 9121 -85.97.152.0/21 9121 -85.97.160.0/20 9121 -85.97.176.0/21 47331 -85.97.184.0/24 47331 -85.97.185.0/24 9121 -85.97.186.0/23 9121 -85.97.188.0/23 9121 -85.97.190.0/24 9121 -85.97.191.0/24 47331 -85.97.192.0/23 47331 -85.97.194.0/23 9121 -85.97.196.0/22 9121 -85.97.200.0/23 47331 -85.97.202.0/23 9121 -85.97.204.0/22 9121 -85.97.208.0/23 9121 -85.97.210.0/24 47331 -85.97.211.0/24 9121 -85.97.212.0/22 47331 -85.97.216.0/23 9121 -85.97.218.0/24 47331 -85.97.219.0/24 9121 -85.97.220.0/22 47331 -85.97.224.0/21 47331 -85.97.232.0/24 47331 -85.97.233.0/24 9121 -85.97.234.0/24 9121 -85.97.235.0/24 47331 -85.97.236.0/23 9121 -85.97.238.0/24 47331 -85.97.239.0/24 9121 -85.97.240.0/22 47331 -85.97.244.0/23 47331 -85.97.246.0/24 9121 -85.97.247.0/24 47331 -85.97.248.0/22 9121 -85.97.252.0/22 47331 -85.98.0.0/22 47331 -85.98.4.0/23 47331 -85.98.6.0/23 9121 -85.98.8.0/23 47331 -85.98.10.0/24 9121 -85.98.11.0/24 47331 -85.98.12.0/22 47331 -85.98.16.0/21 9121 -85.98.24.0/22 47331 -85.98.28.0/23 47331 -85.98.30.0/24 47331 -85.98.31.0/24 9121 -85.98.32.0/23 47331 -85.98.34.0/23 9121 -85.98.36.0/22 47331 -85.98.40.0/23 47331 -85.98.42.0/23 9121 -85.98.44.0/23 47331 -85.98.46.0/23 9121 -85.98.48.0/22 47331 -85.98.52.0/23 9121 -85.98.54.0/24 9121 -85.98.55.0/24 47331 -85.98.56.0/22 9121 -85.98.60.0/22 47331 -85.98.64.0/24 9121 -85.98.65.0/24 47331 -85.98.66.0/23 47331 -85.98.68.0/22 47331 -85.98.72.0/23 47331 -85.98.74.0/24 47331 -85.98.75.0/24 9121 -85.98.76.0/22 47331 -85.98.80.0/23 47331 -85.98.82.0/24 9121 -85.98.83.0/24 47331 -85.98.84.0/24 47331 -85.98.85.0/24 9121 -85.98.86.0/23 47331 -85.98.88.0/24 9121 -85.98.89.0/24 47331 -85.98.90.0/23 9121 -85.98.92.0/22 9121 -85.98.96.0/19 47331 -85.98.128.0/21 47331 -85.98.136.0/23 47331 -85.98.138.0/24 47331 -85.98.139.0/24 9121 -85.98.140.0/22 47331 -85.98.144.0/20 47331 -85.98.160.0/21 47331 -85.98.168.0/21 9121 -85.98.176.0/20 9121 -85.98.192.0/21 47331 -85.98.200.0/22 47331 -85.98.204.0/23 9121 -85.98.206.0/24 9121 -85.98.207.0/24 47331 -85.98.208.0/22 9121 -85.98.212.0/22 47331 -85.98.216.0/23 9121 -85.98.218.0/24 9121 -85.98.219.0/24 47331 -85.98.220.0/23 47331 -85.98.222.0/24 9121 -85.98.223.0/24 47331 -85.98.224.0/24 47331 -85.98.225.0/24 9121 -85.98.226.0/23 47331 -85.98.228.0/22 47331 -85.98.232.0/21 47331 -85.98.240.0/21 47331 -85.98.248.0/22 47331 -85.98.252.0/24 47331 -85.98.253.0/24 9121 -85.98.254.0/23 47331 -85.99.0.0/21 47331 -85.99.8.0/24 47331 -85.99.9.0/24 9121 -85.99.10.0/24 47331 -85.99.11.0/24 9121 -85.99.12.0/24 9121 -85.99.13.0/24 47331 -85.99.14.0/23 47331 -85.99.16.0/20 47331 -85.99.32.0/21 9121 -85.99.40.0/21 47331 -85.99.48.0/22 47331 -85.99.52.0/23 9121 -85.99.54.0/24 9121 -85.99.55.0/24 47331 -85.99.56.0/21 9121 -85.99.64.0/20 47331 -85.99.80.0/21 47331 -85.99.88.0/23 47331 -85.99.90.0/23 9121 -85.99.92.0/24 47331 -85.99.93.0/24 9121 -85.99.94.0/23 47331 -85.99.96.0/24 9121 -85.99.97.0/24 47331 -85.99.98.0/23 47331 -85.99.100.0/24 47331 -85.99.101.0/24 9121 -85.99.102.0/23 9121 -85.99.104.0/21 9121 -85.99.112.0/22 9121 -85.99.116.0/23 47331 -85.99.118.0/23 9121 -85.99.120.0/23 47331 -85.99.122.0/24 9121 -85.99.123.0/24 47331 -85.99.124.0/23 47331 -85.99.126.0/23 9121 -85.99.128.0/19 9121 -85.99.160.0/20 9121 -85.99.176.0/21 9121 -85.99.184.0/21 47331 -85.99.192.0/21 47331 -85.99.200.0/22 9121 -85.99.204.0/24 9121 -85.99.205.0/24 47331 -85.99.206.0/23 9121 -85.99.208.0/24 47331 -85.99.209.0/24 9121 -85.99.210.0/23 47331 -85.99.212.0/22 47331 -85.99.216.0/21 47331 -85.99.224.0/22 9121 -85.99.228.0/23 47331 -85.99.230.0/23 9121 -85.99.232.0/21 9121 -85.99.240.0/22 9121 -85.99.244.0/23 9121 -85.99.246.0/23 47331 -85.99.248.0/23 47331 -85.99.250.0/23 9121 -85.99.252.0/22 9121 -85.100.0.0/19 47331 -85.100.32.0/23 47331 -85.100.34.0/24 47331 -85.100.35.0/24 9121 -85.100.36.0/23 47331 -85.100.38.0/24 9121 -85.100.39.0/24 47331 -85.100.40.0/21 9121 -85.100.48.0/20 47331 -85.100.64.0/21 9121 -85.100.72.0/22 9121 -85.100.76.0/24 47331 -85.100.77.0/24 9121 -85.100.78.0/24 47331 -85.100.79.0/24 9121 -85.100.80.0/22 9121 -85.100.84.0/22 47331 -85.100.88.0/22 9121 -85.100.92.0/22 47331 -85.100.96.0/21 47331 -85.100.104.0/22 47331 -85.100.108.0/22 9121 -85.100.112.0/21 47331 -85.100.120.0/21 9121 -85.100.128.0/24 9121 -85.100.129.0/24 47331 -85.100.130.0/23 47331 -85.100.132.0/23 9121 -85.100.134.0/23 47331 -85.100.136.0/22 47331 -85.100.140.0/23 47331 -85.100.142.0/24 47331 -85.100.143.0/24 9121 -85.100.144.0/22 47331 -85.100.148.0/23 9121 -85.100.150.0/23 47331 -85.100.152.0/23 47331 -85.100.154.0/23 9121 -85.100.156.0/24 47331 -85.100.157.0/24 9121 -85.100.158.0/23 9121 -85.100.160.0/20 9121 -85.100.176.0/23 47331 -85.100.178.0/24 47331 -85.100.179.0/24 9121 -85.100.180.0/22 9121 -85.100.184.0/23 47331 -85.100.186.0/23 9121 -85.100.188.0/23 9121 -85.100.190.0/23 47331 -85.100.192.0/21 9121 -85.100.200.0/24 47331 -85.100.201.0/24 9121 -85.100.202.0/24 47331 -85.100.203.0/24 9121 -85.100.204.0/22 9121 -85.100.208.0/20 9121 -85.100.224.0/20 47331 -85.100.240.0/20 9121 -85.101.0.0/18 47331 -85.101.64.0/23 47331 -85.101.66.0/24 47331 -85.101.67.0/24 9121 -85.101.68.0/22 9121 -85.101.72.0/21 47331 -85.101.80.0/22 9121 -85.101.84.0/24 9121 -85.101.85.0/24 47331 -85.101.86.0/23 47331 -85.101.88.0/21 47331 -85.101.96.0/21 9121 -85.101.104.0/21 47331 -85.101.112.0/24 9121 -85.101.113.0/24 47331 -85.101.114.0/24 9121 -85.101.115.0/24 47331 -85.101.116.0/22 47331 -85.101.120.0/22 47331 -85.101.124.0/24 47331 -85.101.125.0/24 9121 -85.101.126.0/24 47331 -85.101.127.0/24 9121 -85.101.128.0/19 47331 -85.101.160.0/21 9121 -85.101.168.0/21 47331 -85.101.176.0/21 47331 -85.101.184.0/21 9121 -85.101.192.0/19 47331 -85.101.224.0/20 9121 -85.101.240.0/20 47331 -85.102.0.0/21 47331 -85.102.8.0/22 9121 -85.102.12.0/22 47331 -85.102.16.0/20 9121 -85.102.32.0/20 47331 -85.102.48.0/20 9121 -85.102.64.0/21 47331 -85.102.72.0/21 9121 -85.102.80.0/23 9121 -85.102.82.0/23 47331 -85.102.84.0/23 9121 -85.102.86.0/24 9121 -85.102.87.0/24 47331 -85.102.88.0/21 47331 -85.102.96.0/19 47331 -85.102.128.0/21 47331 -85.102.136.0/21 9121 -85.102.144.0/20 9121 -85.102.160.0/21 9121 -85.102.168.0/21 47331 -85.102.176.0/20 47331 -85.102.192.0/20 47331 -85.102.208.0/21 47331 -85.102.216.0/21 9121 -85.102.224.0/19 9121 -85.103.0.0/18 47331 -85.103.64.0/22 9121 -85.103.68.0/22 47331 -85.103.72.0/21 47331 -85.103.80.0/22 47331 -85.103.84.0/23 47331 -85.103.86.0/24 47331 -85.103.87.0/24 9121 -85.103.88.0/21 47331 -85.103.96.0/22 47331 -85.103.100.0/22 9121 -85.103.104.0/21 47331 -85.103.112.0/21 9121 -85.103.120.0/21 47331 -85.103.128.0/22 9121 -85.103.132.0/22 47331 -85.103.136.0/23 47331 -85.103.138.0/24 47331 -85.103.139.0/24 9121 -85.103.140.0/23 9121 -85.103.142.0/23 47331 -85.103.144.0/20 9121 -85.103.160.0/22 9121 -85.103.164.0/24 9121 -85.103.165.0/24 47331 -85.103.166.0/24 47331 -85.103.167.0/24 9121 -85.103.168.0/24 47331 -85.103.169.0/24 9121 -85.103.170.0/23 47331 -85.103.172.0/24 47331 -85.103.173.0/24 9121 -85.103.174.0/23 47331 -85.103.176.0/21 47331 -85.103.184.0/22 47331 -85.103.188.0/23 9121 -85.103.190.0/24 9121 -85.103.191.0/24 47331 -85.103.192.0/24 47331 -85.103.193.0/24 9121 -85.103.194.0/24 9121 -85.103.195.0/24 47331 -85.103.196.0/24 47331 -85.103.197.0/24 9121 -85.103.198.0/24 9121 -85.103.199.0/24 47331 -85.103.200.0/24 9121 -85.103.201.0/24 47331 -85.103.202.0/23 47331 -85.103.204.0/22 47331 -85.103.208.0/24 47331 -85.103.209.0/24 9121 -85.103.210.0/23 9121 -85.103.212.0/24 47331 -85.103.213.0/24 9121 -85.103.214.0/23 47331 -85.103.216.0/21 47331 -85.103.224.0/21 47331 -85.103.232.0/23 47331 -85.103.234.0/24 9121 -85.103.235.0/24 47331 -85.103.236.0/23 47331 -85.103.238.0/23 9121 -85.103.240.0/23 47331 -85.103.242.0/24 9121 -85.103.243.0/24 47331 -85.103.244.0/24 47331 -85.103.245.0/24 9121 -85.103.246.0/24 9121 -85.103.247.0/24 47331 -85.103.248.0/22 47331 -85.103.252.0/23 47331 -85.103.254.0/23 9121 -85.104.0.0/23 9121 -85.104.2.0/24 9121 -85.104.3.0/24 47331 -85.104.4.0/24 9121 -85.104.5.0/24 47331 -85.104.6.0/23 47331 -85.104.8.0/24 9121 -85.104.9.0/24 47331 -85.104.10.0/23 9121 -85.104.12.0/24 9121 -85.104.13.0/24 47331 -85.104.14.0/23 47331 -85.104.16.0/23 47331 -85.104.18.0/23 9121 -85.104.20.0/22 47331 -85.104.24.0/24 9121 -85.104.25.0/24 47331 -85.104.26.0/23 47331 -85.104.28.0/24 47331 -85.104.29.0/24 9121 -85.104.30.0/23 9121 -85.104.32.0/21 47331 -85.104.40.0/24 9121 -85.104.41.0/24 47331 -85.104.42.0/23 47331 -85.104.44.0/23 47331 -85.104.46.0/24 47331 -85.104.47.0/24 9121 -85.104.48.0/21 9121 -85.104.56.0/24 47331 -85.104.57.0/24 9121 -85.104.58.0/24 9121 -85.104.59.0/24 47331 -85.104.60.0/24 9121 -85.104.61.0/24 47331 -85.104.62.0/23 47331 -85.104.64.0/19 9121 -85.104.96.0/24 9121 -85.104.97.0/24 47331 -85.104.98.0/24 9121 -85.104.99.0/24 47331 -85.104.100.0/22 9121 -85.104.104.0/21 47331 -85.104.112.0/22 47331 -85.104.116.0/23 9121 -85.104.118.0/23 47331 -85.104.120.0/23 47331 -85.104.122.0/24 9121 -85.104.123.0/24 47331 -85.104.124.0/23 47331 -85.104.126.0/24 9121 -85.104.127.0/24 47331 -85.104.128.0/19 47331 -85.104.160.0/20 47331 -85.104.176.0/23 47331 -85.104.178.0/24 9121 -85.104.179.0/24 47331 -85.104.180.0/22 9121 -85.104.184.0/23 47331 -85.104.186.0/23 9121 -85.104.188.0/22 47331 -85.104.192.0/19 9121 -85.104.224.0/19 47331 -85.105.0.0/24 47331 -85.105.1.0/24 9121 -85.105.2.0/23 9121 -85.105.4.0/22 9121 -85.105.8.0/22 47331 -85.105.12.0/22 9121 -85.105.16.0/21 9121 -85.105.24.0/22 47331 -85.105.28.0/22 9121 -85.105.32.0/22 47331 -85.105.36.0/22 9121 -85.105.40.0/22 9121 -85.105.44.0/22 47331 -85.105.48.0/21 9121 -85.105.56.0/21 47331 -85.105.64.0/22 9121 -85.105.68.0/22 47331 -85.105.72.0/22 47331 -85.105.76.0/22 9121 -85.105.80.0/21 9121 -85.105.88.0/22 47331 -85.105.92.0/22 9121 -85.105.96.0/22 47331 -85.105.100.0/22 9121 -85.105.104.0/22 9121 -85.105.108.0/22 47331 -85.105.112.0/21 47331 -85.105.120.0/22 47331 -85.105.124.0/22 9121 -85.105.128.0/23 9121 -85.105.130.0/23 47331 -85.105.132.0/22 47331 -85.105.136.0/23 9121 -85.105.138.0/23 47331 -85.105.140.0/22 9121 -85.105.144.0/20 9121 -85.105.160.0/22 9121 -85.105.164.0/22 47331 -85.105.168.0/21 9121 -85.105.176.0/22 9121 -85.105.180.0/22 47331 -85.105.184.0/21 9121 -85.105.192.0/21 9121 -85.105.200.0/22 9121 -85.105.204.0/23 47331 -85.105.206.0/24 47331 -85.105.207.0/24 9121 -85.105.208.0/21 9121 -85.105.216.0/22 47331 -85.105.220.0/24 47331 -85.105.221.0/24 9121 -85.105.222.0/24 9121 -85.105.223.0/24 47331 -85.105.224.0/21 47331 -85.105.232.0/21 9121 -85.105.240.0/20 47331 -85.106.0.0/23 47331 -85.106.2.0/23 9121 -85.106.4.0/23 9121 -85.106.6.0/24 9121 -85.106.7.0/24 47331 -85.106.8.0/23 9121 -85.106.10.0/24 9121 -85.106.11.0/24 47331 -85.106.12.0/23 9121 -85.106.14.0/24 47331 -85.106.15.0/24 9121 -85.106.16.0/22 9121 -85.106.20.0/23 9121 -85.106.22.0/23 47331 -85.106.24.0/23 9121 -85.106.26.0/23 47331 -85.106.28.0/23 47331 -85.106.30.0/24 9121 -85.106.31.0/24 47331 -85.106.32.0/23 47331 -85.106.34.0/24 47331 -85.106.35.0/24 9121 -85.106.36.0/24 47331 -85.106.37.0/24 9121 -85.106.38.0/24 47331 -85.106.39.0/24 9121 -85.106.40.0/21 9121 -85.106.48.0/23 9121 -85.106.50.0/24 9121 -85.106.51.0/24 47331 -85.106.52.0/22 47331 -85.106.56.0/21 47331 -85.106.64.0/20 47331 -85.106.80.0/21 47331 -85.106.88.0/23 47331 -85.106.90.0/23 9121 -85.106.92.0/24 47331 -85.106.93.0/24 9121 -85.106.94.0/23 9121 -85.106.96.0/19 47331 -85.106.128.0/18 47331 -85.106.192.0/18 9121 -85.107.0.0/22 47331 -85.107.4.0/23 47331 -85.107.6.0/23 9121 -85.107.8.0/22 47331 -85.107.12.0/23 47331 -85.107.14.0/23 9121 -85.107.16.0/23 9121 -85.107.18.0/23 47331 -85.107.20.0/22 47331 -85.107.24.0/21 47331 -85.107.32.0/20 47331 -85.107.48.0/21 9121 -85.107.56.0/24 47331 -85.107.57.0/24 9121 -85.107.58.0/24 47331 -85.107.59.0/24 9121 -85.107.60.0/22 47331 -85.107.64.0/19 47331 -85.107.96.0/21 9121 -85.107.104.0/21 47331 -85.107.112.0/21 47331 -85.107.120.0/22 47331 -85.107.124.0/23 47331 -85.107.126.0/24 47331 -85.107.127.0/24 9121 -85.107.128.0/21 47331 -85.107.136.0/21 9121 -85.107.144.0/21 9121 -85.107.152.0/24 47331 -85.107.153.0/24 9121 -85.107.154.0/23 9121 -85.107.156.0/23 47331 -85.107.158.0/24 47331 -85.107.159.0/24 9121 -85.107.160.0/21 47331 -85.107.168.0/23 47331 -85.107.170.0/24 9121 -85.107.171.0/24 47331 -85.107.172.0/23 47331 -85.107.174.0/23 9121 -85.107.176.0/21 9121 -85.107.184.0/22 47331 -85.107.188.0/23 47331 -85.107.190.0/23 9121 -85.107.192.0/23 47331 -85.107.194.0/24 9121 -85.107.195.0/24 47331 -85.107.196.0/22 47331 -85.107.200.0/21 47331 -85.107.208.0/24 47331 -85.107.209.0/24 9121 -85.107.210.0/23 9121 -85.107.212.0/23 47331 -85.107.214.0/24 47331 -85.107.215.0/24 9121 -85.107.216.0/24 47331 -85.107.217.0/24 9121 -85.107.218.0/23 47331 -85.107.220.0/23 47331 -85.107.222.0/24 47331 -85.107.223.0/24 9121 -85.107.224.0/23 9121 -85.107.226.0/23 47331 -85.107.228.0/23 47331 -85.107.230.0/23 9121 -85.107.232.0/24 47331 -85.107.233.0/24 9121 -85.107.234.0/23 47331 -85.107.236.0/22 47331 -85.107.240.0/21 47331 -85.107.248.0/24 47331 -85.107.249.0/24 9121 -85.107.250.0/23 47331 -85.107.252.0/22 47331 -85.108.0.0/23 47331 -85.108.2.0/24 9121 -85.108.3.0/24 47331 -85.108.4.0/22 47331 -85.108.8.0/23 47331 -85.108.10.0/24 9121 -85.108.11.0/24 47331 -85.108.12.0/24 47331 -85.108.13.0/24 9121 -85.108.14.0/24 9121 -85.108.15.0/24 47331 -85.108.16.0/22 47331 -85.108.20.0/24 9121 -85.108.21.0/24 47331 -85.108.22.0/23 47331 -85.108.24.0/21 47331 -85.108.32.0/24 47331 -85.108.33.0/24 9121 -85.108.34.0/23 9121 -85.108.36.0/24 47331 -85.108.37.0/24 9121 -85.108.38.0/23 9121 -85.108.40.0/21 9121 -85.108.48.0/21 47331 -85.108.56.0/23 47331 -85.108.58.0/24 9121 -85.108.59.0/24 47331 -85.108.60.0/23 47331 -85.108.62.0/23 9121 -85.108.64.0/20 9121 -85.108.80.0/21 9121 -85.108.88.0/23 9121 -85.108.90.0/24 9121 -85.108.91.0/24 47331 -85.108.92.0/22 9121 -85.108.96.0/23 47331 -85.108.98.0/24 47331 -85.108.99.0/24 9121 -85.108.100.0/23 47331 -85.108.102.0/24 9121 -85.108.103.0/24 47331 -85.108.104.0/24 47331 -85.108.105.0/24 9121 -85.108.106.0/24 47331 -85.108.107.0/24 9121 -85.108.108.0/24 9121 -85.108.109.0/24 47331 -85.108.110.0/23 47331 -85.108.112.0/21 47331 -85.108.120.0/23 47331 -85.108.122.0/23 9121 -85.108.124.0/24 47331 -85.108.125.0/24 9121 -85.108.126.0/24 9121 -85.108.127.0/24 47331 -85.108.128.0/19 47331 -85.108.160.0/20 47331 -85.108.176.0/22 9121 -85.108.180.0/22 47331 -85.108.184.0/21 47331 -85.108.192.0/21 47331 -85.108.200.0/21 9121 -85.108.208.0/20 9121 -85.108.224.0/19 9121 -85.109.0.0/24 47331 -85.109.1.0/24 9121 -85.109.2.0/24 9121 -85.109.3.0/24 47331 -85.109.4.0/24 47331 -85.109.5.0/24 9121 -85.109.6.0/23 47331 -85.109.8.0/22 9121 -85.109.12.0/23 9121 -85.109.14.0/23 47331 -85.109.16.0/23 47331 -85.109.18.0/23 9121 -85.109.20.0/24 47331 -85.109.21.0/24 9121 -85.109.22.0/23 9121 -85.109.24.0/24 9121 -85.109.25.0/24 47331 -85.109.26.0/23 9121 -85.109.28.0/23 47331 -85.109.30.0/23 9121 -85.109.32.0/21 9121 -85.109.40.0/23 9121 -85.109.42.0/23 47331 -85.109.44.0/23 47331 -85.109.46.0/24 47331 -85.109.47.0/24 9121 -85.109.48.0/23 47331 -85.109.50.0/24 47331 -85.109.51.0/24 9121 -85.109.52.0/24 47331 -85.109.53.0/24 9121 -85.109.54.0/23 9121 -85.109.56.0/21 9121 -85.109.64.0/21 9121 -85.109.72.0/22 9121 -85.109.76.0/24 47331 -85.109.77.0/24 9121 -85.109.78.0/24 47331 -85.109.79.0/24 9121 -85.109.80.0/23 47331 -85.109.82.0/24 47331 -85.109.83.0/24 9121 -85.109.84.0/22 47331 -85.109.88.0/22 9121 -85.109.92.0/23 47331 -85.109.94.0/24 47331 -85.109.95.0/24 9121 -85.109.96.0/22 9121 -85.109.100.0/23 47331 -85.109.102.0/23 9121 -85.109.104.0/22 9121 -85.109.108.0/24 9121 -85.109.109.0/24 47331 -85.109.110.0/23 9121 -85.109.112.0/23 9121 -85.109.114.0/24 9121 -85.109.115.0/24 47331 -85.109.116.0/22 9121 -85.109.120.0/22 9121 -85.109.124.0/24 9121 -85.109.125.0/24 47331 -85.109.126.0/23 9121 -85.109.128.0/20 9121 -85.109.144.0/23 9121 -85.109.146.0/24 47331 -85.109.147.0/24 9121 -85.109.148.0/22 9121 -85.109.152.0/21 9121 -85.109.160.0/23 9121 -85.109.162.0/24 9121 -85.109.163.0/24 47331 -85.109.164.0/22 9121 -85.109.168.0/23 9121 -85.109.170.0/23 47331 -85.109.172.0/22 9121 -85.109.176.0/21 9121 -85.109.184.0/24 9121 -85.109.185.0/24 47331 -85.109.186.0/24 47331 -85.109.187.0/24 9121 -85.109.188.0/23 47331 -85.109.190.0/23 9121 -85.109.192.0/20 9121 -85.109.208.0/24 47331 -85.109.209.0/24 9121 -85.109.210.0/24 47331 -85.109.211.0/24 9121 -85.109.212.0/22 9121 -85.109.216.0/23 47331 -85.109.218.0/24 9121 -85.109.219.0/24 47331 -85.109.220.0/23 47331 -85.109.222.0/24 9121 -85.109.223.0/24 47331 -85.109.224.0/23 47331 -85.109.226.0/24 47331 -85.109.227.0/24 9121 -85.109.228.0/23 47331 -85.109.230.0/24 9121 -85.109.231.0/24 47331 -85.109.232.0/22 9121 -85.109.236.0/22 47331 -85.109.240.0/22 47331 -85.109.244.0/24 9121 -85.109.245.0/24 47331 -85.109.246.0/24 9121 -85.109.247.0/24 47331 -85.109.248.0/24 9121 -85.109.249.0/24 47331 -85.109.250.0/24 47331 -85.109.251.0/24 9121 -85.109.252.0/24 9121 -85.109.253.0/24 47331 -85.109.254.0/24 9121 -85.109.255.0/24 47331 -85.110.0.0/18 47331 -85.110.64.0/20 47331 -85.110.80.0/21 47331 -85.110.88.0/21 9121 -85.110.96.0/24 9121 -85.110.97.0/24 47331 -85.110.98.0/24 47331 -85.110.99.0/24 9121 -85.110.100.0/24 47331 -85.110.101.0/24 9121 -85.110.102.0/24 9121 -85.110.103.0/24 47331 -85.110.104.0/22 9121 -85.110.108.0/22 47331 -85.110.112.0/22 47331 -85.110.116.0/22 9121 -85.110.120.0/22 47331 -85.110.124.0/23 47331 -85.110.126.0/24 47331 -85.110.127.0/24 9121 -85.110.128.0/19 47331 -85.110.160.0/21 47331 -85.110.168.0/22 47331 -85.110.172.0/22 9121 -85.110.176.0/20 47331 -85.110.192.0/18 47331 -85.111.0.0/16 9121 -85.112.0.0/20 23148 -85.112.16.0/21 23148 -85.112.26.0/23 11303 -85.112.28.0/24 23148 -85.112.29.0/24 202207 -85.112.32.0/19 12389 -85.112.64.0/22 39010 -85.112.68.0/24 24982 -85.112.69.0/24 39010 -85.112.70.0/23 39010 -85.112.72.0/24 39010 -85.112.73.0/24 39918 -85.112.74.0/23 39010 -85.112.76.0/23 39010 -85.112.78.0/24 39010 -85.112.79.0/24 39868 -85.112.80.0/24 38999 -85.112.81.0/24 41211 -85.112.82.0/23 39010 -85.112.84.0/22 39010 -85.112.88.0/21 39010 -85.112.96.0/23 35508 -85.112.112.0/21 25478 -85.112.120.0/23 25478 -85.112.124.0/22 25478 -85.112.128.0/19 2116 -85.112.160.0/22 34556 -85.112.164.0/24 34556 -85.112.165.0/24 12552 -85.112.166.0/23 12552 -85.112.168.0/22 34556 -85.112.172.0/24 12552 -85.112.173.0/24 34556 -85.112.174.0/23 34556 -85.112.176.0/23 34556 -85.112.178.0/24 34556 -85.112.179.0/24 12552 -85.112.180.0/22 34556 -85.112.184.0/22 12552 -85.112.188.0/22 34556 -85.112.224.0/19 12923 -85.113.0.0/19 12997 -85.113.32.0/19 34533 -85.113.64.0/20 13005 -85.113.80.0/20 21233 -85.113.96.0/19 15975 -85.113.128.0/19 34550 -85.113.160.0/19 206557 -85.113.192.0/24 13118 -85.113.193.0/24 12389 -85.113.194.0/24 12389 -85.113.195.0/24 13118 -85.113.196.0/24 12389 -85.113.197.0/24 13118 -85.113.198.0/23 12389 -85.113.200.0/24 13118 -85.113.201.0/24 12389 -85.113.202.0/24 12389 -85.113.203.0/24 13118 -85.113.204.0/24 13118 -85.113.205.0/24 12389 -85.113.206.0/24 12389 -85.113.207.0/24 13118 -85.113.208.0/20 12389 -85.113.224.0/19 12871 -85.114.0.0/19 8492 -85.114.32.0/19 34594 -85.114.64.0/20 34584 -85.114.80.0/21 34584 -85.114.88.0/24 34584 -85.114.89.0/24 12389 -85.114.90.0/23 34584 -85.114.92.0/22 34584 -85.114.96.0/19 42314 -85.114.128.0/19 24961 -85.114.160.0/19 8439 -85.114.220.0/22 6703 -85.114.224.0/19 16010 -85.115.0.0/19 12843 -85.115.32.0/22 44444 -85.115.36.0/23 44444 -85.115.38.0/24 14618 -85.115.39.0/24 44444 -85.115.41.0/24 35788 -85.115.42.0/24 35788 -85.115.44.0/22 44444 -85.115.49.0/24 44444 -85.115.52.0/23 44444 -85.115.54.0/24 44444 -85.115.56.0/24 44444 -85.115.58.0/24 44444 -85.115.60.0/22 44444 -85.115.64.0/23 44703 -85.115.66.0/24 44703 -85.115.70.0/23 44703 -85.115.72.0/21 44703 -85.115.80.0/21 44703 -85.115.96.0/19 20910 -85.115.128.0/19 34803 -85.115.160.0/19 51604 -85.115.192.0/22 201942 -85.115.196.0/22 200148 -85.115.200.0/22 12695 -85.115.204.0/24 42926 -85.115.208.0/22 13115 -85.115.212.0/22 210104 -85.115.216.0/22 59780 -85.115.220.0/22 210102 -85.115.224.0/21 34644 -85.115.232.0/23 39055 -85.115.236.0/22 16345 -85.115.243.0/24 16345 -85.115.246.0/24 16345 -85.115.248.0/23 16345 -85.115.252.0/22 16345 -85.116.9.0/24 9153 -85.116.16.0/21 9153 -85.116.24.0/22 9153 -85.116.32.0/21 34752 -85.116.40.0/24 47658 -85.116.41.0/24 34752 -85.116.42.0/23 34752 -85.116.44.0/22 34752 -85.116.48.0/20 34752 -85.116.64.0/19 34678 -85.116.96.0/19 12389 -85.116.128.0/22 30848 -85.116.136.0/22 208920 -85.116.140.0/22 58088 -85.116.144.0/22 208642 -85.116.148.0/22 174 -85.116.152.0/21 174 -85.116.160.0/19 8689 -85.116.192.0/19 42652 -85.116.224.0/20 34699 -85.116.255.0/24 42985 -85.117.0.0/19 21021 -85.117.32.0/19 20771 -85.117.64.0/19 42087 -85.117.96.0/19 29555 -85.117.128.0/19 34383 -85.117.160.0/21 43591 -85.117.168.0/23 43591 -85.117.170.0/24 202891 -85.117.171.0/24 43591 -85.117.172.0/22 43591 -85.117.176.0/22 43591 -85.117.180.0/22 202891 -85.117.184.0/21 43591 -85.117.192.0/19 43591 -85.117.224.0/22 210101 -85.117.232.0/24 56877 -85.117.233.0/24 51724 -85.117.234.0/23 51659 -85.117.236.0/22 210099 -85.117.240.0/24 20473 -85.117.241.0/24 9381 -85.117.242.0/23 57844 -85.117.244.0/22 3348 -85.117.248.0/22 210086 -85.118.0.0/19 13009 -85.118.32.0/22 29075 -85.118.36.0/24 51335 -85.118.37.0/24 29075 -85.118.38.0/24 29075 -85.118.39.0/24 51335 -85.118.40.0/23 29075 -85.118.42.0/24 44583 -85.118.43.0/24 29075 -85.118.44.0/22 29075 -85.118.48.0/23 34783 -85.118.50.0/23 29075 -85.118.52.0/22 44821 -85.118.56.0/22 29075 -85.118.60.0/22 34783 -85.118.64.0/21 8717 -85.118.72.0/23 8717 -85.118.74.0/24 8717 -85.118.76.0/22 8717 -85.118.80.0/22 8717 -85.118.84.0/24 8717 -85.118.85.0/24 202209 -85.118.86.0/24 202209 -85.118.88.0/24 12716 -85.118.90.0/24 197741 -85.118.91.0/24 197050 -85.118.92.0/23 8717 -85.118.94.0/23 47453 -85.118.96.0/19 34797 -85.118.128.0/21 24971 -85.118.136.0/21 20631 -85.118.152.0/24 1273 -85.118.153.0/24 17477 -85.118.154.0/24 3741 -85.118.156.0/22 35045 -85.118.168.0/21 204558 -85.118.176.0/22 35021 -85.118.180.0/24 35021 -85.118.181.0/24 48009 -85.118.182.0/23 35021 -85.118.184.0/21 49808 -85.118.192.0/21 29244 -85.118.200.0/21 34941 -85.118.208.0/21 6848 -85.118.216.0/21 39677 -85.118.224.0/21 34757 -85.118.232.0/21 30933 -85.118.240.0/21 35171 -85.118.248.0/21 3209 -85.119.0.0/21 15830 -85.119.8.0/21 12301 -85.119.16.0/21 35064 -85.119.25.0/24 197039 -85.119.26.0/23 197039 -85.119.28.0/24 197039 -85.119.32.0/24 35079 -85.119.40.0/21 35359 -85.119.48.0/22 15447 -85.119.52.0/24 15447 -85.119.53.0/24 21388 -85.119.54.0/24 15447 -85.119.55.0/24 21388 -85.119.56.0/21 35180 -85.119.64.0/21 15924 -85.119.72.0/21 35087 -85.119.80.0/21 8943 -85.119.88.0/21 35361 -85.119.96.0/21 2589 -85.119.104.0/21 41887 -85.119.120.0/21 200805 -85.119.128.0/21 29217 -85.119.136.0/23 35157 -85.119.138.0/24 35157 -85.119.140.0/24 35157 -85.119.142.0/24 35157 -85.119.144.0/23 50340 -85.119.146.0/24 50340 -85.119.147.0/24 49505 -85.119.148.0/24 49505 -85.119.149.0/24 50340 -85.119.150.0/23 49505 -85.119.152.0/21 8972 -85.119.160.0/23 3320 -85.119.168.0/22 12645 -85.119.176.0/21 20912 -85.119.184.0/22 35593 -85.119.188.0/22 196755 -85.119.192.0/21 43697 -85.119.200.0/21 61157 -85.119.208.0/21 35227 -85.119.216.0/21 6696 -85.119.224.0/22 49247 -85.119.228.0/23 49247 -85.119.230.0/24 8190 -85.119.231.0/24 49247 -85.119.232.0/21 35240 -85.119.240.0/21 8368 -85.119.248.0/21 35259 -85.120.0.0/19 8708 -85.120.32.0/24 6663 -85.120.33.0/24 5588 -85.120.34.0/24 31017 -85.120.35.0/24 12310 -85.120.37.0/24 6830 -85.120.38.0/24 6830 -85.120.40.0/23 34904 -85.120.42.0/24 6830 -85.120.43.0/24 52181 -85.120.46.0/24 2614 -85.120.47.0/24 3233 -85.120.48.0/24 39081 -85.120.49.0/24 3233 -85.120.50.0/24 6663 -85.120.54.0/24 3233 -85.120.57.0/24 12310 -85.120.58.0/23 6910 -85.120.60.0/24 42568 -85.120.61.0/24 5588 -85.120.64.0/24 30890 -85.120.65.0/24 9050 -85.120.66.0/23 47148 -85.120.68.0/24 41571 -85.120.69.0/24 9050 -85.120.71.0/24 51461 -85.120.72.0/24 6830 -85.120.73.0/24 6663 -85.120.75.0/24 31313 -85.120.78.0/23 51461 -85.120.80.0/24 48161 -85.120.81.0/24 9050 -85.120.82.0/24 6910 -85.120.83.0/24 35725 -85.120.84.0/24 6830 -85.120.85.0/24 9050 -85.120.87.0/24 2614 -85.120.90.0/24 6830 -85.120.92.0/23 3233 -85.120.94.0/23 41028 -85.120.96.0/19 8708 -85.120.128.0/21 35450 -85.120.136.0/24 6830 -85.120.138.0/24 6830 -85.120.139.0/24 3233 -85.120.140.0/22 3233 -85.120.144.0/24 9050 -85.120.145.0/24 48161 -85.120.146.0/24 6910 -85.120.148.0/23 41851 -85.120.150.0/24 9050 -85.120.152.0/23 12310 -85.120.155.0/24 9050 -85.120.156.0/23 25103 -85.120.158.0/24 6830 -85.120.159.0/24 31313 -85.120.160.0/24 35348 -85.120.162.0/23 6830 -85.120.166.0/24 31313 -85.120.167.0/24 34904 -85.120.169.0/24 9050 -85.120.170.0/24 49052 -85.120.174.0/24 30890 -85.120.177.0/24 3233 -85.120.178.0/24 31710 -85.120.179.0/24 41087 -85.120.181.0/24 49023 -85.120.182.0/24 3233 -85.120.184.0/23 12310 -85.120.186.0/24 6830 -85.120.187.0/24 30890 -85.120.192.0/21 9050 -85.120.202.0/23 2614 -85.120.204.0/22 199513 -85.120.208.0/21 3233 -85.120.216.0/23 41461 -85.120.218.0/24 6830 -85.120.219.0/24 49023 -85.120.220.0/24 48141 -85.120.223.0/24 9050 -85.120.224.0/21 30890 -85.120.232.0/23 60615 -85.120.234.0/24 9050 -85.120.236.0/24 3233 -85.120.237.0/24 41851 -85.120.238.0/23 6830 -85.120.240.0/23 3233 -85.120.244.0/23 62445 -85.120.246.0/24 62445 -85.120.248.0/23 30890 -85.120.250.0/24 8751 -85.120.251.0/24 43443 -85.120.252.0/22 3233 -85.121.4.0/22 6830 -85.121.8.0/22 25103 -85.121.14.0/23 12310 -85.121.16.0/24 9050 -85.121.17.0/24 49023 -85.121.20.0/24 3233 -85.121.21.0/24 57444 -85.121.22.0/23 3233 -85.121.32.0/23 2614 -85.121.34.0/24 31313 -85.121.35.0/24 35725 -85.121.36.0/23 9050 -85.121.38.0/24 49052 -85.121.48.0/21 30890 -85.121.56.0/24 44106 -85.121.57.0/24 6830 -85.121.58.0/24 9050 -85.121.59.0/24 3233 -85.121.64.0/21 3233 -85.121.88.0/21 49052 -85.121.120.0/21 30890 -85.121.128.0/21 3233 -85.121.136.0/23 30890 -85.121.138.0/24 43315 -85.121.139.0/24 35725 -85.121.141.0/24 3233 -85.121.144.0/22 6910 -85.121.148.0/23 34916 -85.121.151.0/24 9050 -85.121.152.0/23 3233 -85.121.154.0/23 34916 -85.121.156.0/22 49052 -85.121.160.0/22 50682 -85.121.164.0/23 48929 -85.121.166.0/23 3233 -85.121.172.0/24 51854 -85.121.174.0/24 6830 -85.121.176.0/24 2614 -85.121.177.0/24 52181 -85.121.178.0/23 35371 -85.121.180.0/23 42568 -85.121.182.0/24 44271 -85.121.190.0/24 44148 -85.121.191.0/24 6830 -85.121.192.0/22 44081 -85.121.196.0/23 44081 -85.121.198.0/24 47148 -85.121.199.0/24 3233 -85.121.200.0/22 44106 -85.121.204.0/23 48141 -85.121.206.0/24 41028 -85.121.207.0/24 44626 -85.121.220.0/22 34744 -85.121.240.0/21 30890 -85.121.251.0/24 2614 -85.121.252.0/22 35371 -85.122.4.0/22 6910 -85.122.8.0/22 8751 -85.122.16.0/20 12675 -85.122.44.0/23 42568 -85.122.52.0/23 48453 -85.122.54.0/24 48453 -85.122.56.0/23 41496 -85.122.80.0/24 44626 -85.122.81.0/24 60531 -85.122.82.0/24 12310 -85.122.83.0/24 48165 -85.122.84.0/23 9050 -85.122.88.0/21 41496 -85.122.100.0/23 35371 -85.122.105.0/24 31313 -85.122.110.0/24 6830 -85.122.111.0/24 6910 -85.122.114.0/24 59854 -85.122.115.0/24 49295 -85.122.136.0/21 41496 -85.122.144.0/21 50886 -85.122.180.0/24 48141 -85.122.181.0/24 12310 -85.124.0.0/14 6830 -85.128.0.0/17 12741 -85.128.128.0/17 15967 -85.129.0.0/17 3292 -85.129.128.0/17 34397 -85.130.0.0/18 13124 -85.130.64.0/21 13124 -85.130.72.0/22 39251 -85.130.76.0/22 13124 -85.130.80.0/20 13124 -85.130.96.0/22 13124 -85.130.100.0/24 13124 -85.130.101.0/24 8717 -85.130.102.0/23 13124 -85.130.104.0/22 13124 -85.130.108.0/24 8717 -85.130.109.0/24 13124 -85.130.110.0/23 13124 -85.130.112.0/21 13124 -85.130.120.0/23 13124 -85.130.122.0/24 13124 -85.130.123.0/24 8717 -85.130.124.0/22 13124 -85.130.128.0/17 8551 -85.131.0.0/17 16086 -85.131.128.0/17 34309 -85.132.1.0/24 29049 -85.132.2.0/23 29049 -85.132.4.0/23 29049 -85.132.6.0/24 29049 -85.132.7.0/24 39397 -85.132.8.0/22 201167 -85.132.12.0/23 29049 -85.132.14.0/24 48830 -85.132.15.0/24 39397 -85.132.16.0/24 199731 -85.132.17.0/24 29049 -85.132.18.0/24 29049 -85.132.20.0/22 29049 -85.132.24.0/24 29049 -85.132.26.0/23 29049 -85.132.29.0/24 29049 -85.132.30.0/23 29049 -85.132.32.0/22 207251 -85.132.36.0/23 29049 -85.132.38.0/23 39397 -85.132.40.0/24 196821 -85.132.41.0/24 210293 -85.132.42.0/24 207251 -85.132.43.0/24 29049 -85.132.44.0/24 29049 -85.132.45.0/24 207251 -85.132.47.0/24 29049 -85.132.48.0/23 29049 -85.132.52.0/23 29049 -85.132.54.0/23 199987 -85.132.56.0/24 199987 -85.132.57.0/24 29049 -85.132.58.0/24 29049 -85.132.59.0/24 199987 -85.132.60.0/23 29049 -85.132.62.0/24 199987 -85.132.63.0/24 29049 -85.132.64.0/21 29049 -85.132.72.0/23 29049 -85.132.74.0/24 29049 -85.132.76.0/22 29049 -85.132.80.0/22 29049 -85.132.84.0/23 29049 -85.132.86.0/23 199987 -85.132.89.0/24 29049 -85.132.90.0/23 29049 -85.132.94.0/23 29049 -85.132.96.0/24 29049 -85.132.97.0/24 201167 -85.132.98.0/24 201167 -85.132.99.0/24 29049 -85.132.100.0/24 29049 -85.132.102.0/23 29049 -85.132.104.0/23 48830 -85.132.106.0/23 29049 -85.132.108.0/22 29049 -85.132.115.0/24 29049 -85.132.116.0/24 29049 -85.132.117.0/24 199731 -85.132.120.0/24 196961 -85.132.121.0/24 29049 -85.132.122.0/24 29049 -85.132.127.0/24 29049 -85.132.128.0/21 203018 -85.132.136.0/21 9080 -85.132.160.0/19 9080 -85.132.192.0/18 9080 -85.133.0.0/17 24867 -85.133.128.0/18 39074 -85.133.192.0/19 39074 -85.133.224.0/20 39074 -85.133.240.0/22 39074 -85.133.244.0/23 39074 -85.133.247.0/24 39074 -85.133.248.0/21 39074 -85.134.0.0/17 24751 -85.135.0.0/17 30764 -85.135.128.0/17 8257 -85.136.0.0/19 6739 -85.136.32.0/19 12357 -85.136.64.0/18 6739 -85.136.128.0/17 6739 -85.137.0.0/19 6739 -85.137.32.0/20 6739 -85.137.48.0/21 6739 -85.137.56.0/21 12357 -85.137.64.0/18 6739 -85.137.128.0/17 6739 -85.138.0.0/15 2860 -85.140.0.0/20 8359 -85.140.16.0/21 8359 -85.140.24.0/22 8359 -85.140.28.0/23 8359 -85.140.30.0/24 39811 -85.140.31.0/24 8359 -85.140.32.0/21 39001 -85.140.40.0/22 39811 -85.140.44.0/22 35728 -85.140.48.0/21 8359 -85.140.56.0/22 48123 -85.140.60.0/22 41209 -85.140.64.0/21 39001 -85.140.72.0/22 48123 -85.140.76.0/22 8359 -85.140.80.0/21 39001 -85.140.88.0/22 60496 -85.140.92.0/23 48400 -85.140.94.0/24 29497 -85.140.95.0/24 49665 -85.140.96.0/20 28884 -85.140.112.0/22 48124 -85.140.116.0/22 8359 -85.140.120.0/22 42322 -85.140.124.0/23 49816 -85.140.126.0/24 48612 -85.140.127.0/24 39811 -85.140.128.0/17 8359 -85.141.0.0/16 8359 -85.142.0.0/21 3267 -85.142.8.0/22 3267 -85.142.12.0/23 3267 -85.142.14.0/24 3267 -85.142.15.0/24 198444 -85.142.16.0/20 3267 -85.142.32.0/21 39866 -85.142.40.0/21 3267 -85.142.48.0/20 3267 -85.142.64.0/22 3267 -85.142.68.0/22 12770 -85.142.72.0/21 3267 -85.142.80.0/24 8510 -85.142.81.0/24 3267 -85.142.82.0/23 3267 -85.142.84.0/22 3267 -85.142.88.0/21 3267 -85.142.96.0/20 3267 -85.142.112.0/22 3267 -85.142.116.0/22 198444 -85.142.120.0/23 198444 -85.142.122.0/23 3267 -85.142.124.0/24 3267 -85.142.125.0/24 199879 -85.142.126.0/23 3267 -85.142.128.0/20 3267 -85.142.144.0/22 3267 -85.142.148.0/23 198685 -85.142.150.0/24 3267 -85.142.151.0/24 51352 -85.142.152.0/23 3267 -85.142.154.0/23 51352 -85.142.156.0/22 8630 -85.142.160.0/23 28800 -85.142.162.0/23 3267 -85.142.164.0/22 56534 -85.142.168.0/21 3267 -85.142.176.0/22 56534 -85.142.180.0/22 207168 -85.142.184.0/21 3267 -85.142.192.0/20 3267 -85.142.208.0/22 56534 -85.142.212.0/22 3267 -85.142.216.0/21 3267 -85.142.224.0/20 3267 -85.142.240.0/22 3267 -85.142.244.0/23 3267 -85.142.246.0/24 3267 -85.142.247.0/24 202537 -85.142.248.0/23 3267 -85.142.250.0/24 3267 -85.142.251.0/24 207256 -85.142.252.0/22 3267 -85.143.0.0/20 8623 -85.143.16.0/23 3267 -85.143.18.0/23 198685 -85.143.20.0/22 8941 -85.143.24.0/24 3267 -85.143.25.0/24 8480 -85.143.26.0/23 3267 -85.143.28.0/22 3267 -85.143.32.0/22 59714 -85.143.36.0/22 3267 -85.143.40.0/21 3267 -85.143.48.0/20 3267 -85.143.64.0/20 5567 -85.143.80.0/21 5567 -85.143.88.0/21 51352 -85.143.96.0/22 3267 -85.143.100.0/24 200686 -85.143.101.0/24 3267 -85.143.102.0/23 3267 -85.143.104.0/22 49929 -85.143.108.0/22 3267 -85.143.112.0/20 3267 -85.143.128.0/20 31484 -85.143.144.0/22 56534 -85.143.148.0/22 3267 -85.143.152.0/23 61040 -85.143.154.0/24 61040 -85.143.155.0/24 3267 -85.143.156.0/23 56679 -85.143.158.0/23 3267 -85.143.160.0/21 56534 -85.143.168.0/22 51783 -85.143.172.0/22 201848 -85.143.176.0/22 56534 -85.143.180.0/22 3267 -85.143.184.0/22 56534 -85.143.188.0/23 51783 -85.143.190.0/24 48180 -85.143.191.0/24 3267 -85.143.192.0/22 3267 -85.143.196.0/23 3267 -85.143.198.0/23 57010 -85.143.200.0/24 51562 -85.143.201.0/24 3267 -85.143.202.0/24 203004 -85.143.203.0/24 56534 -85.143.204.0/22 56534 -85.143.208.0/20 201848 -85.143.224.0/21 9206 -85.143.232.0/22 3267 -85.143.236.0/23 3267 -85.143.238.0/24 210276 -85.143.239.0/24 3267 -85.143.240.0/22 3267 -85.143.244.0/23 3267 -85.143.246.0/24 207259 -85.143.247.0/24 202633 -85.143.248.0/24 202989 -85.143.249.0/24 202974 -85.143.250.0/24 207184 -85.143.251.0/24 57010 -85.143.252.0/22 56534 -85.144.0.0/15 50266 -85.146.0.0/17 50266 -85.146.128.0/18 50266 -85.146.192.0/18 33915 -85.147.0.0/16 33915 -85.148.0.0/15 5390 -85.150.0.0/16 5390 -85.152.0.0/16 12946 -85.153.0.0/21 31365 -85.153.8.0/23 31365 -85.153.10.0/24 31365 -85.153.11.0/24 34984 -85.153.12.0/22 31365 -85.153.16.0/20 31365 -85.153.32.0/19 31365 -85.153.64.0/24 42926 -85.153.66.0/24 42926 -85.153.68.0/22 35478 -85.153.72.0/22 35478 -85.153.76.0/22 34549 -85.153.80.0/22 35478 -85.153.84.0/22 34549 -85.153.88.0/22 34549 -85.153.92.0/22 35478 -85.153.96.0/22 34549 -85.153.104.0/21 34549 -85.153.113.0/24 35478 -85.153.114.0/23 35478 -85.153.116.0/23 35478 -85.153.119.0/24 35478 -85.153.121.0/24 35478 -85.153.122.0/23 35478 -85.153.125.0/24 35478 -85.153.126.0/24 35478 -85.153.127.0/24 57844 -85.154.0.0/16 28885 -85.155.0.0/16 6739 -85.156.0.0/16 719 -85.157.0.0/16 15527 -85.158.0.0/21 29014 -85.158.8.0/22 202139 -85.158.12.0/22 44776 -85.158.16.0/22 16071 -85.158.20.0/24 16071 -85.158.24.0/21 34288 -85.158.32.0/21 16178 -85.158.40.0/21 3213 -85.158.48.0/21 30881 -85.158.56.0/21 21321 -85.158.64.0/21 8190 -85.158.72.0/21 34354 -85.158.88.0/21 44232 -85.158.96.0/21 34403 -85.158.105.0/24 48517 -85.158.106.0/23 48517 -85.158.108.0/23 25459 -85.158.110.0/23 48517 -85.158.112.0/21 34391 -85.158.120.0/22 205681 -85.158.127.0/24 15830 -85.158.128.0/21 35019 -85.158.136.0/21 21345 -85.158.144.0/21 15723 -85.158.152.0/21 16353 -85.158.160.0/21 34762 -85.158.168.0/21 28971 -85.158.176.0/23 34432 -85.158.179.0/24 34432 -85.158.180.0/22 34432 -85.158.186.0/24 49181 -85.158.188.0/22 43060 -85.158.192.0/21 34439 -85.158.200.0/21 25151 -85.158.208.0/21 8368 -85.158.216.0/24 34469 -85.158.217.0/24 5602 -85.158.224.0/21 8692 -85.158.232.0/21 6830 -85.158.240.0/21 48235 -85.158.248.0/21 21155 -85.159.0.0/21 3326 -85.159.8.0/21 49609 -85.159.16.0/21 39122 -85.159.24.0/22 41007 -85.159.28.0/22 59583 -85.159.32.0/21 12683 -85.159.40.0/21 12714 -85.159.48.0/21 44651 -85.159.56.0/21 8553 -85.159.64.0/21 34619 -85.159.72.0/22 34684 -85.159.80.0/21 34654 -85.159.88.0/21 25577 -85.159.96.0/21 24595 -85.159.104.0/23 34820 -85.159.106.0/24 34820 -85.159.107.0/24 12917 -85.159.108.0/22 34820 -85.159.117.0/24 49006 -85.159.118.0/24 207623 -85.159.120.0/24 34810 -85.159.122.0/24 34810 -85.159.124.0/24 34810 -85.159.127.0/24 34810 -85.159.128.0/21 8851 -85.159.144.0/22 39825 -85.159.148.0/24 39825 -85.159.150.0/23 39825 -85.159.152.0/21 34746 -85.159.160.0/21 16116 -85.159.168.0/21 34737 -85.159.176.0/21 34606 -85.159.184.0/24 25286 -85.159.192.0/21 34759 -85.159.200.0/21 28977 -85.159.208.0/21 63949 -85.159.216.0/21 9038 -85.159.224.0/21 34804 -85.159.232.0/21 43350 -85.159.240.0/21 197347 -85.159.248.0/21 34931 -85.160.0.0/15 5610 -85.162.0.0/15 28725 -85.164.0.0/14 2119 -85.168.0.0/14 21502 -85.172.0.0/18 25490 -85.172.64.0/21 25490 -85.172.72.0/22 25490 -85.172.76.0/23 12389 -85.172.78.0/24 12389 -85.172.79.0/24 25490 -85.172.80.0/23 12389 -85.172.82.0/23 25490 -85.172.84.0/22 25490 -85.172.88.0/21 12389 -85.172.96.0/20 25490 -85.172.112.0/21 12389 -85.172.120.0/21 33934 -85.172.128.0/19 42362 -85.172.160.0/24 25490 -85.172.161.0/24 12389 -85.172.162.0/23 12389 -85.172.164.0/23 25490 -85.172.166.0/24 25490 -85.172.167.0/24 12389 -85.172.168.0/22 33934 -85.172.172.0/23 12389 -85.172.174.0/23 43132 -85.172.176.0/20 42548 -85.172.192.0/21 42362 -85.172.200.0/22 42362 -85.172.204.0/22 12389 -85.172.208.0/20 42362 -85.172.224.0/19 42362 -85.173.0.0/22 12389 -85.173.4.0/22 25490 -85.173.8.0/21 12389 -85.173.16.0/20 12389 -85.173.32.0/19 42362 -85.173.64.0/20 12389 -85.173.80.0/21 33934 -85.173.88.0/21 12389 -85.173.96.0/20 43132 -85.173.112.0/21 43132 -85.173.120.0/22 43132 -85.173.124.0/23 43132 -85.173.126.0/23 12389 -85.173.128.0/21 12389 -85.173.136.0/21 35177 -85.173.144.0/22 12389 -85.173.148.0/23 12389 -85.173.150.0/23 25490 -85.173.152.0/22 25490 -85.173.156.0/23 25490 -85.173.158.0/24 25490 -85.173.159.0/24 12389 -85.173.160.0/19 42548 -85.173.192.0/20 12389 -85.173.208.0/22 33934 -85.173.212.0/22 12389 -85.173.216.0/21 12389 -85.173.224.0/19 42362 -85.174.0.0/19 12389 -85.174.32.0/20 12389 -85.174.48.0/21 12389 -85.174.56.0/22 12389 -85.174.60.0/22 33934 -85.174.64.0/22 12389 -85.174.68.0/22 33934 -85.174.72.0/21 12389 -85.174.80.0/21 33934 -85.174.88.0/21 12389 -85.174.96.0/22 12389 -85.174.100.0/22 33934 -85.174.104.0/21 12389 -85.174.112.0/20 12389 -85.174.128.0/18 25490 -85.174.192.0/19 12389 -85.174.224.0/19 25490 -85.175.0.0/20 25490 -85.175.16.0/20 12389 -85.175.32.0/19 25490 -85.175.64.0/19 25490 -85.175.96.0/20 25490 -85.175.112.0/20 12389 -85.175.128.0/20 12389 -85.175.144.0/20 25490 -85.175.160.0/20 25490 -85.175.176.0/20 12389 -85.175.192.0/19 25490 -85.175.224.0/20 25490 -85.175.240.0/20 12389 -85.176.0.0/13 6805 -85.184.0.0/21 30967 -85.184.12.0/22 39855 -85.184.16.0/20 25512 -85.184.32.0/19 51407 -85.184.64.0/19 29283 -85.184.96.0/20 47171 -85.184.128.0/18 204274 -85.184.192.0/21 199909 -85.184.224.0/24 198731 -85.184.225.0/24 29119 -85.184.226.0/23 198731 -85.184.230.0/23 200596 -85.184.232.0/22 42943 -85.184.239.0/24 56865 -85.184.240.0/22 15975 -85.184.244.0/24 60486 -85.184.246.0/24 60486 -85.184.248.0/22 51862 -85.184.252.0/22 200584 -85.185.0.0/20 58224 -85.185.16.0/21 58224 -85.185.24.0/22 58224 -85.185.28.0/23 58224 -85.185.30.0/24 58224 -85.185.31.0/24 12880 -85.185.32.0/22 12880 -85.185.36.0/22 44244 -85.185.40.0/23 58224 -85.185.42.0/24 58224 -85.185.43.0/24 12880 -85.185.44.0/22 12880 -85.185.48.0/20 12880 -85.185.64.0/22 58224 -85.185.68.0/23 58224 -85.185.70.0/24 58224 -85.185.71.0/24 12880 -85.185.72.0/21 58224 -85.185.80.0/20 58224 -85.185.96.0/19 58224 -85.185.128.0/17 58224 -85.186.0.0/16 6830 -85.187.0.0/24 49147 -85.187.1.0/24 31287 -85.187.2.0/24 209518 -85.187.3.0/24 31287 -85.187.4.0/24 31287 -85.187.5.0/24 49147 -85.187.6.0/24 31287 -85.187.7.0/24 56606 -85.187.8.0/24 57634 -85.187.9.0/24 206045 -85.187.10.0/23 31287 -85.187.12.0/24 49147 -85.187.13.0/24 202160 -85.187.14.0/24 29694 -85.187.15.0/24 31287 -85.187.16.0/24 31287 -85.187.17.0/24 57705 -85.187.18.0/24 31287 -85.187.19.0/24 34577 -85.187.20.0/24 31287 -85.187.21.0/24 35499 -85.187.22.0/23 8866 -85.187.24.0/21 8866 -85.187.32.0/21 8866 -85.187.40.0/24 56606 -85.187.41.0/24 42049 -85.187.42.0/24 31287 -85.187.43.0/24 57705 -85.187.44.0/24 208322 -85.187.45.0/24 207879 -85.187.46.0/23 8866 -85.187.48.0/23 205129 -85.187.50.0/24 31287 -85.187.51.0/24 207691 -85.187.56.0/22 16371 -85.187.60.0/23 205465 -85.187.62.0/23 31287 -85.187.64.0/18 47771 -85.187.128.0/19 55293 -85.187.160.0/20 49740 -85.187.176.0/22 49740 -85.187.180.0/22 59466 -85.187.184.0/23 31287 -85.187.186.0/24 31287 -85.187.187.0/24 59466 -85.187.188.0/23 59466 -85.187.190.0/24 59466 -85.187.191.0/24 61370 -85.187.192.0/21 31287 -85.187.200.0/22 49387 -85.187.204.0/22 31287 -85.187.208.0/22 199048 -85.187.212.0/24 199048 -85.187.213.0/24 31287 -85.187.214.0/24 210212 -85.187.215.0/24 204554 -85.187.216.0/23 35654 -85.187.218.0/23 199173 -85.187.220.0/23 35621 -85.187.222.0/24 31287 -85.187.223.0/24 199048 -85.187.224.0/21 199173 -85.187.232.0/24 31287 -85.187.233.0/24 60182 -85.187.234.0/23 31287 -85.187.236.0/22 20750 -85.187.240.0/23 20750 -85.187.242.0/24 60182 -85.187.243.0/24 29694 -85.187.244.0/22 41280 -85.187.248.0/24 31287 -85.187.249.0/24 29694 -85.187.250.0/24 31287 -85.187.252.0/22 197769 -85.188.0.0/18 34387 -85.188.64.0/18 35445 -85.188.128.0/18 35445 -85.189.0.0/16 8190 -85.190.0.0/18 29686 -85.190.64.0/19 64476 -85.190.128.0/20 199610 -85.190.144.0/22 199610 -85.190.148.0/23 199610 -85.190.150.0/24 199610 -85.190.151.0/24 49544 -85.190.152.0/21 199610 -85.190.160.0/20 199610 -85.190.176.0/21 21413 -85.190.184.0/21 208988 -85.190.192.0/19 39702 -85.190.224.0/22 201341 -85.190.228.0/24 31863 -85.190.229.0/24 3257 -85.190.230.0/24 18450 -85.190.231.0/24 3257 -85.190.232.0/23 47252 -85.190.234.0/24 197848 -85.190.235.0/24 206183 -85.190.236.0/24 205447 -85.190.237.0/24 3169 -85.190.238.0/24 199410 -85.190.239.0/24 206184 -85.190.240.0/24 197615 -85.190.241.0/24 60875 -85.190.242.0/24 3169 -85.190.243.0/24 200889 -85.190.244.0/24 61154 -85.190.245.0/24 41455 -85.190.246.0/24 204747 -85.190.247.0/24 206373 -85.190.248.0/22 196954 -85.190.252.0/23 201341 -85.190.254.0/24 23470 -85.190.255.0/24 3257 -85.191.0.0/17 204274 -85.191.128.0/17 43557 -85.192.0.0/21 12695 -85.192.8.0/22 12695 -85.192.12.0/24 12695 -85.192.13.0/24 204217 -85.192.14.0/23 64419 -85.192.16.0/21 12695 -85.192.24.0/21 47711 -85.192.32.0/22 47764 -85.192.36.0/22 12695 -85.192.40.0/21 12695 -85.192.48.0/21 12695 -85.192.56.0/23 12695 -85.192.58.0/23 47711 -85.192.60.0/23 47711 -85.192.64.0/18 21193 -85.192.128.0/18 12389 -85.192.192.0/18 34383 -85.193.0.0/18 5610 -85.193.68.0/23 34411 -85.193.70.0/23 48399 -85.193.128.0/20 28889 -85.193.144.0/20 61124 -85.193.160.0/20 49808 -85.193.192.0/18 34337 -85.194.0.0/18 39651 -85.194.64.0/19 29255 -85.194.96.0/20 29255 -85.194.112.0/21 29255 -85.194.120.0/22 29255 -85.194.124.0/24 29255 -85.194.125.0/24 35819 -85.194.126.0/23 29255 -85.194.128.0/18 25176 -85.194.192.0/23 34384 -85.194.194.0/23 47605 -85.194.196.0/22 50597 -85.194.200.0/22 61189 -85.194.204.0/22 201057 -85.194.208.0/21 35175 -85.194.216.0/22 35175 -85.194.220.0/22 47605 -85.194.224.0/21 201587 -85.194.232.0/24 34384 -85.194.233.0/24 201078 -85.194.234.0/23 47605 -85.194.236.0/23 199508 -85.194.238.0/23 60414 -85.194.240.0/21 57367 -85.194.248.0/22 50597 -85.194.252.0/23 6830 -85.194.254.0/23 2116 -85.195.0.0/18 35706 -85.195.64.0/18 29066 -85.195.192.0/18 13030 -85.196.64.0/18 2116 -85.196.128.0/22 201642 -85.196.132.0/22 8717 -85.196.136.0/24 200024 -85.196.137.0/24 8717 -85.196.138.0/23 8717 -85.196.140.0/22 29580 -85.196.144.0/22 8717 -85.196.148.0/24 29580 -85.196.149.0/24 8717 -85.196.150.0/23 8717 -85.196.152.0/21 29580 -85.196.160.0/21 8717 -85.196.168.0/23 41782 -85.196.170.0/23 8717 -85.196.172.0/22 8717 -85.196.176.0/22 29580 -85.196.180.0/22 8717 -85.196.184.0/21 29580 -85.196.192.0/18 61307 -85.197.0.0/18 8422 -85.197.64.0/19 25220 -85.197.96.0/21 25220 -85.197.112.0/20 29471 -85.197.128.0/18 34622 -85.197.192.0/18 12969 -85.198.0.0/18 34513 -85.198.64.0/21 34580 -85.198.72.0/22 43903 -85.198.76.0/22 34580 -85.198.80.0/22 41515 -85.198.84.0/22 41861 -85.198.88.0/22 41862 -85.198.92.0/22 42940 -85.198.96.0/22 43429 -85.198.100.0/22 43901 -85.198.104.0/22 43903 -85.198.108.0/22 44844 -85.198.112.0/22 41861 -85.198.116.0/22 43901 -85.198.120.0/21 43429 -85.198.128.0/23 6702 -85.198.130.0/24 39772 -85.198.131.0/24 6702 -85.198.132.0/24 209818 -85.198.133.0/24 6702 -85.198.134.0/23 6702 -85.198.136.0/23 6702 -85.198.138.0/24 6702 -85.198.139.0/24 44333 -85.198.140.0/24 6702 -85.198.141.0/24 56639 -85.198.142.0/23 6702 -85.198.144.0/24 6702 -85.198.145.0/24 209501 -85.198.146.0/23 6702 -85.198.148.0/22 6702 -85.198.152.0/21 6702 -85.198.160.0/19 6702 -85.198.192.0/19 30851 -85.198.224.0/20 30851 -85.198.240.0/21 30851 -85.198.248.0/22 208556 -85.198.252.0/23 30851 -85.198.254.0/23 201451 -85.199.0.0/18 34502 -85.199.64.0/18 12693 -85.199.128.0/18 25560 -85.199.192.0/20 48570 -85.199.210.0/23 48570 -85.199.212.0/22 61337 -85.199.216.0/21 20952 -85.199.224.0/19 42973 -85.200.0.0/16 8542 -85.201.0.0/16 12392 -85.202.0.0/20 43031 -85.202.16.0/20 31027 -85.202.32.0/20 43420 -85.202.48.0/23 210265 -85.202.50.0/24 206632 -85.202.51.0/24 199910 -85.202.52.0/24 57321 -85.202.53.0/24 209563 -85.202.54.0/24 12741 -85.202.55.0/24 208384 -85.202.56.0/23 5588 -85.202.58.0/24 209579 -85.202.59.0/24 12741 -85.202.60.0/22 208817 -85.202.64.0/20 42525 -85.202.80.0/24 206264 -85.202.82.0/24 23470 -85.202.84.0/24 57541 -85.202.87.0/24 57271 -85.202.88.0/22 198930 -85.202.92.0/22 208669 -85.202.96.0/20 44692 -85.202.112.0/22 203877 -85.202.116.0/23 203877 -85.202.118.0/24 203877 -85.202.128.0/20 30877 -85.202.144.0/20 44454 -85.202.160.0/24 209401 -85.202.161.0/24 12389 -85.202.162.0/24 7489 -85.202.163.0/24 30823 -85.202.164.0/24 57186 -85.202.165.0/24 43526 -85.202.166.0/23 206283 -85.202.172.0/22 46261 -85.202.176.0/20 43909 -85.202.192.0/24 58073 -85.202.193.0/24 49569 -85.202.194.0/24 62282 -85.202.195.0/24 206485 -85.202.196.0/22 43545 -85.202.204.0/22 203061 -85.202.208.0/20 43939 -85.202.224.0/20 44622 -85.202.240.0/20 44696 -85.203.0.0/21 31251 -85.203.8.0/24 64200 -85.203.9.0/24 31251 -85.203.10.0/23 31251 -85.203.12.0/24 31251 -85.203.13.0/24 49544 -85.203.14.0/24 31251 -85.203.15.0/24 201011 -85.203.16.0/23 31251 -85.203.18.0/24 31251 -85.203.19.0/24 53889 -85.203.20.0/24 36351 -85.203.21.0/24 20473 -85.203.22.0/24 13213 -85.203.23.0/24 36351 -85.203.24.0/23 64200 -85.203.26.0/24 64200 -85.203.27.0/24 395111 -85.203.28.0/22 39855 -85.203.32.0/24 9009 -85.203.33.0/24 31251 -85.203.34.0/24 13213 -85.203.35.0/24 31251 -85.203.36.0/24 9009 -85.203.37.0/24 36351 -85.203.38.0/23 31251 -85.203.40.0/22 15830 -85.203.44.0/24 43350 -85.203.45.0/24 3223 -85.203.46.0/24 13213 -85.203.47.0/24 133752 -85.203.48.0/22 54103 -85.203.52.0/23 31251 -85.203.54.0/24 54103 -85.203.55.0/24 31251 -85.203.56.0/22 54103 -85.203.60.0/23 54103 -85.203.62.0/24 31251 -85.203.63.0/24 54103 -85.203.64.0/18 30801 -85.203.128.0/17 43557 -85.204.0.0/20 6830 -85.204.16.0/24 44682 -85.204.17.0/24 39205 -85.204.18.0/24 62302 -85.204.19.0/24 205275 -85.204.20.0/23 34863 -85.204.22.0/24 50515 -85.204.23.0/24 44277 -85.204.24.0/23 34863 -85.204.27.0/24 50840 -85.204.28.0/23 203872 -85.204.32.0/22 6663 -85.204.36.0/22 42635 -85.204.40.0/24 49252 -85.204.41.0/24 39425 -85.204.42.0/24 35617 -85.204.43.0/24 62162 -85.204.44.0/24 20722 -85.204.46.0/24 56795 -85.204.47.0/24 57316 -85.204.48.0/22 203523 -85.204.52.0/23 33977 -85.204.54.0/23 201213 -85.204.56.0/21 20722 -85.204.64.0/22 3329 -85.204.69.0/24 47602 -85.204.70.0/24 203872 -85.204.71.0/24 8680 -85.204.72.0/24 203872 -85.204.73.0/24 62162 -85.204.74.0/24 16125 -85.204.75.0/24 5588 -85.204.76.0/23 39501 -85.204.78.0/24 34450 -85.204.79.0/24 9050 -85.204.80.0/20 58224 -85.204.96.0/23 201213 -85.204.98.0/24 35348 -85.204.99.0/24 5483 -85.204.100.0/22 6663 -85.204.104.0/23 39501 -85.204.106.0/24 34621 -85.204.107.0/24 3164 -85.204.108.0/24 5588 -85.204.110.0/23 33977 -85.204.112.0/22 197589 -85.204.116.0/24 48874 -85.204.117.0/24 39855 -85.204.118.0/24 47915 -85.204.119.0/24 56550 -85.204.120.0/23 60876 -85.204.122.0/24 44682 -85.204.123.0/24 41537 -85.204.124.0/24 9009 -85.204.125.0/24 34450 -85.204.126.0/24 44120 -85.204.127.0/24 34450 -85.204.128.0/22 58224 -85.204.132.0/23 60876 -85.204.134.0/24 35268 -85.204.135.0/24 8680 -85.204.136.0/23 60876 -85.204.138.0/24 49774 -85.204.139.0/24 39346 -85.204.140.0/22 29119 -85.204.144.0/24 8680 -85.204.145.0/24 39543 -85.204.146.0/24 29119 -85.204.147.0/24 56550 -85.204.148.0/22 209706 -85.204.152.0/21 12479 -85.204.160.0/22 209706 -85.204.164.0/22 56654 -85.204.168.0/22 198193 -85.204.172.0/22 59862 -85.204.176.0/21 8926 -85.204.184.0/21 6830 -85.204.192.0/24 8680 -85.204.193.0/24 34916 -85.204.194.0/23 60876 -85.204.196.0/23 56871 -85.204.198.0/24 20616 -85.204.199.0/24 34951 -85.204.200.0/21 62235 -85.204.208.0/20 58224 -85.204.224.0/21 8751 -85.204.232.0/24 8751 -85.204.233.0/24 12442 -85.204.234.0/23 8751 -85.204.236.0/22 8751 -85.204.240.0/24 49678 -85.204.241.0/24 8708 -85.204.242.0/24 8708 -85.204.245.0/24 201341 -85.204.246.0/24 44220 -85.204.247.0/24 33925 -85.204.249.0/24 60078 -85.204.251.0/24 201341 -85.204.252.0/24 44682 -85.204.254.0/24 44682 -85.204.255.0/24 6890 -85.205.0.0/18 12663 -85.205.64.0/19 12663 -85.205.96.0/24 12663 -85.205.97.0/24 1273 -85.205.98.0/23 12663 -85.205.100.0/23 1273 -85.205.102.0/23 12663 -85.205.104.0/21 12663 -85.205.112.0/20 12663 -85.205.128.0/19 12663 -85.205.160.0/23 12663 -85.205.162.0/24 1273 -85.205.163.0/24 12663 -85.205.164.0/22 12663 -85.205.168.0/21 12663 -85.205.176.0/20 12663 -85.205.192.0/18 12663 -85.206.0.0/20 8764 -85.206.16.0/24 8764 -85.206.17.0/24 204390 -85.206.18.0/23 8764 -85.206.20.0/22 8764 -85.206.24.0/21 8764 -85.206.32.0/21 8764 -85.206.40.0/22 5522 -85.206.44.0/22 8764 -85.206.48.0/21 8764 -85.206.56.0/22 204390 -85.206.60.0/22 8764 -85.206.64.0/19 8764 -85.206.96.0/20 8764 -85.206.112.0/21 8764 -85.206.120.0/22 204390 -85.206.124.0/23 204390 -85.206.126.0/24 204390 -85.206.127.0/24 8764 -85.206.128.0/21 8764 -85.206.136.0/22 8764 -85.206.140.0/22 43811 -85.206.144.0/22 201096 -85.206.148.0/22 43811 -85.206.152.0/21 8764 -85.206.160.0/20 61272 -85.206.176.0/20 8764 -85.206.192.0/19 8764 -85.206.224.0/20 8764 -85.206.240.0/22 61272 -85.206.244.0/22 8764 -85.206.248.0/21 8764 -85.207.0.0/16 25248 -85.208.0.0/22 209378 -85.208.8.0/22 207046 -85.208.12.0/22 35433 -85.208.16.0/22 205512 -85.208.20.0/22 49635 -85.208.24.0/22 209335 -85.208.28.0/24 209252 -85.208.32.0/23 21859 -85.208.34.0/23 18530 -85.208.36.0/22 60233 -85.208.40.0/22 209375 -85.208.48.0/22 42366 -85.208.52.0/22 35427 -85.208.56.0/22 132839 -85.208.60.0/24 57866 -85.208.64.0/23 56650 -85.208.68.0/23 42275 -85.208.70.0/24 42275 -85.208.72.0/24 61317 -85.208.74.0/23 61317 -85.208.76.0/22 209368 -85.208.80.0/22 57773 -85.208.84.0/24 34665 -85.208.85.0/24 46844 -85.208.86.0/23 46844 -85.208.92.0/22 8145 -85.208.96.0/22 209366 -85.208.100.0/23 209365 -85.208.102.0/24 208769 -85.208.103.0/24 201942 -85.208.104.0/22 61317 -85.208.108.0/22 18978 -85.208.112.0/22 61317 -85.208.116.0/22 18978 -85.208.120.0/22 48095 -85.208.124.0/22 15395 -85.208.128.0/22 198225 -85.208.132.0/22 205911 -85.208.136.0/22 43659 -85.208.140.0/22 202047 -85.208.144.0/22 35426 -85.208.148.0/22 15701 -85.208.154.0/24 396006 -85.208.156.0/22 9009 -85.208.160.0/22 50673 -85.208.164.0/24 39351 -85.208.168.0/22 49808 -85.208.180.0/22 197690 -85.208.184.0/22 204601 -85.208.188.0/22 204287 -85.208.192.0/24 31367 -85.208.193.0/24 15404 -85.208.200.0/22 44092 -85.208.208.0/24 9002 -85.208.209.0/24 46844 -85.208.210.0/23 46844 -85.208.212.0/22 209341 -85.208.216.0/22 209349 -85.208.220.0/22 51012 -85.208.224.0/22 199527 -85.208.228.0/22 209348 -85.208.232.0/22 28716 -85.208.236.0/23 200735 -85.208.240.0/24 209345 -85.208.241.0/24 59699 -85.208.242.0/23 59699 -85.208.244.0/22 209400 -85.208.252.0/24 43754 -85.208.253.0/24 42337 -85.208.254.0/24 58222 -85.208.255.0/24 61173 -85.209.0.0/24 202984 -85.209.1.0/24 209019 -85.209.2.0/24 208992 -85.209.3.0/24 209299 -85.209.4.0/22 209723 -85.209.8.0/22 58305 -85.209.12.0/23 41336 -85.209.15.0/24 41336 -85.209.20.0/22 39560 -85.209.24.0/22 35388 -85.209.28.0/22 207167 -85.209.32.0/22 209226 -85.209.36.0/22 51426 -85.209.40.0/22 23338 -85.209.44.0/23 209825 -85.209.48.0/22 197540 -85.209.52.0/22 209824 -85.209.56.0/22 209337 -85.209.68.0/22 35364 -85.209.72.0/22 207046 -85.209.80.0/22 209332 -85.209.84.0/22 64236 -85.209.88.0/22 204601 -85.209.92.0/22 204287 -85.209.96.0/22 209098 -85.209.104.0/22 58305 -85.209.108.0/22 20559 -85.209.112.0/22 198721 -85.209.120.0/22 34549 -85.209.124.0/23 21430 -85.209.126.0/24 21430 -85.209.128.0/24 29066 -85.209.129.0/24 60781 -85.209.130.0/24 60781 -85.209.132.0/22 43659 -85.209.136.0/22 48095 -85.209.140.0/24 41960 -85.209.148.0/24 205820 -85.209.149.0/24 46844 -85.209.150.0/23 46844 -85.209.152.0/22 18978 -85.209.160.0/22 61317 -85.209.164.0/22 35185 -85.209.168.0/22 57732 -85.209.172.0/22 62900 -85.209.176.0/22 61317 -85.209.180.0/22 50563 -85.209.184.0/22 209148 -85.209.192.0/22 18978 -85.209.200.0/22 8495 -85.209.204.0/24 3356 -85.209.205.0/24 1239 -85.209.206.0/23 6939 -85.209.208.0/22 209318 -85.209.212.0/22 49377 -85.209.216.0/24 9009 -85.209.217.0/24 35758 -85.209.218.0/23 9009 -85.209.220.0/22 34549 -85.209.224.0/22 48072 -85.209.228.0/22 395800 -85.209.236.0/22 1241 -85.209.240.0/22 205581 -85.209.244.0/22 34935 -85.209.248.0/22 209302 -85.209.252.0/22 35913 -85.210.0.0/15 9105 -85.212.0.0/15 12312 -85.214.0.0/15 6724 -85.216.0.0/16 6830 -85.217.0.0/17 20931 -85.217.128.0/24 58271 -85.217.129.0/24 200845 -85.217.130.0/23 8717 -85.217.132.0/23 200845 -85.217.134.0/24 200845 -85.217.135.0/24 43160 -85.217.136.0/22 43160 -85.217.141.0/24 43160 -85.217.142.0/23 43160 -85.217.146.0/24 43160 -85.217.147.0/24 200845 -85.217.148.0/24 58271 -85.217.149.0/24 52055 -85.217.150.0/23 43160 -85.217.152.0/22 43160 -85.217.156.0/24 200845 -85.217.157.0/24 43160 -85.217.158.0/23 43160 -85.217.160.0/22 61098 -85.217.164.0/22 43548 -85.217.168.0/23 57634 -85.217.170.0/23 44901 -85.217.176.0/21 43548 -85.217.188.0/24 31490 -85.217.189.0/24 204844 -85.217.192.0/20 34368 -85.217.216.0/22 138611 -85.217.222.0/23 201133 -85.217.224.0/21 39401 -85.217.232.0/22 39401 -85.217.236.0/23 39401 -85.217.238.0/23 49040 -85.217.240.0/20 39251 -85.218.0.0/17 34781 -85.218.128.0/17 197288 -85.219.0.0/22 12357 -85.219.4.0/22 6739 -85.219.8.0/22 6739 -85.219.12.0/22 12357 -85.219.16.0/22 6739 -85.219.20.0/22 12357 -85.219.24.0/21 12357 -85.219.32.0/21 12357 -85.219.40.0/22 6739 -85.219.44.0/22 12357 -85.219.48.0/21 12357 -85.219.56.0/22 6739 -85.219.60.0/23 12357 -85.219.62.0/23 6739 -85.219.64.0/22 12357 -85.219.68.0/23 12357 -85.219.70.0/24 6739 -85.219.71.0/24 12357 -85.219.72.0/21 12357 -85.219.80.0/20 12357 -85.219.96.0/20 12357 -85.219.112.0/22 6739 -85.219.116.0/22 12357 -85.219.120.0/21 6739 -85.219.128.0/20 5588 -85.219.144.0/22 5588 -85.219.148.0/24 201549 -85.219.149.0/24 5588 -85.219.150.0/23 5588 -85.219.152.0/21 5588 -85.219.160.0/21 5588 -85.219.168.0/22 5588 -85.219.172.0/24 5588 -85.219.173.0/24 200115 -85.219.174.0/23 5588 -85.219.176.0/20 59958 -85.219.192.0/24 60448 -85.219.193.0/24 5588 -85.219.194.0/23 5588 -85.219.196.0/24 35199 -85.219.197.0/24 5588 -85.219.198.0/24 24756 -85.219.199.0/24 5588 -85.219.200.0/21 5588 -85.219.208.0/21 5588 -85.219.216.0/24 205738 -85.219.217.0/24 5588 -85.219.218.0/23 5588 -85.219.220.0/22 5588 -85.219.224.0/22 5588 -85.219.228.0/24 5588 -85.219.229.0/24 204009 -85.219.230.0/23 5588 -85.219.232.0/21 5588 -85.219.240.0/22 5588 -85.219.244.0/22 2590 -85.219.248.0/21 5588 -85.220.0.0/17 6677 -85.220.128.0/17 25394 -85.221.0.0/17 2116 -85.221.128.0/17 13110 -85.222.0.0/17 6830 -85.222.128.0/19 14340 -85.222.160.0/20 6700 -85.222.176.0/20 41897 -85.222.192.0/21 8315 -85.222.200.0/21 203585 -85.222.208.0/20 208988 -85.222.224.0/21 35470 -85.222.232.0/22 49604 -85.222.236.0/22 8455 -85.222.240.0/20 198089 -85.223.0.0/17 20507 -85.223.128.0/21 12530 -85.223.136.0/24 35050 -85.223.137.0/24 12530 -85.223.138.0/23 12530 -85.223.140.0/23 12530 -85.223.142.0/24 12530 -85.223.143.0/24 41350 -85.223.144.0/20 12530 -85.223.160.0/19 12530 -85.223.192.0/18 12530 -85.224.0.0/13 2119 -85.232.0.0/19 16097 -85.232.32.0/19 20860 -85.232.64.0/19 31125 -85.232.96.0/19 15552 -85.232.128.0/19 34857 -85.232.160.0/19 1257 -85.232.192.0/19 15735 -85.232.224.0/24 15694 -85.232.225.0/24 197431 -85.232.226.0/24 15694 -85.232.227.0/24 198262 -85.232.228.0/23 15694 -85.232.230.0/24 15694 -85.232.231.0/24 201845 -85.232.232.0/22 15694 -85.232.236.0/24 202162 -85.232.237.0/24 15694 -85.232.238.0/23 15694 -85.232.240.0/24 24723 -85.232.241.0/24 57367 -85.232.242.0/24 15694 -85.232.243.0/24 24723 -85.232.244.0/24 30725 -85.232.245.0/24 15694 -85.232.246.0/24 197431 -85.232.247.0/24 15694 -85.232.248.0/21 15694 -85.233.0.0/19 29505 -85.233.32.0/19 35244 -85.233.64.0/20 34887 -85.233.96.0/19 39560 -85.233.128.0/19 12389 -85.233.160.0/19 8622 -85.233.192.0/21 15830 -85.233.200.0/22 15830 -85.233.204.0/23 15830 -85.233.206.0/24 15830 -85.233.207.0/24 51149 -85.233.208.0/20 15830 -85.233.224.0/19 35158 -85.234.0.0/20 34892 -85.234.16.0/22 34892 -85.234.20.0/23 34892 -85.234.24.0/21 34892 -85.234.32.0/19 35728 -85.234.64.0/19 34790 -85.234.96.0/21 47397 -85.234.104.0/23 44267 -85.234.106.0/23 209862 -85.234.108.0/23 209862 -85.234.112.0/23 25381 -85.234.114.0/23 202806 -85.234.116.0/23 202011 -85.234.118.0/23 25381 -85.234.120.0/21 25381 -85.234.128.0/19 29550 -85.234.160.0/19 20910 -85.234.192.0/19 9031 -85.234.224.0/20 60781 -85.234.240.0/23 21315 -85.234.246.0/23 49604 -85.234.248.0/21 197227 -85.235.0.0/20 34965 -85.235.16.0/24 15782 -85.235.17.0/24 45011 -85.235.18.0/23 45011 -85.235.20.0/22 45011 -85.235.24.0/24 45011 -85.235.25.0/24 15782 -85.235.26.0/23 15782 -85.235.28.0/22 15782 -85.235.32.0/19 25086 -85.235.64.0/22 197540 -85.235.68.0/22 15701 -85.235.76.0/22 210096 -85.235.80.0/24 57186 -85.235.81.0/24 39469 -85.235.82.0/24 12722 -85.235.83.0/24 34923 -85.235.84.0/22 197328 -85.235.92.0/22 25274 -85.235.107.0/24 2856 -85.235.123.0/24 2856 -85.235.128.0/19 31034 -85.235.160.0/19 8359 -85.235.192.0/19 35000 -85.235.224.0/19 9167 -85.236.0.0/19 25227 -85.236.32.0/19 15456 -85.236.64.0/19 35033 -85.236.96.0/21 35028 -85.236.110.0/23 35028 -85.236.128.0/21 199909 -85.236.136.0/21 44568 -85.236.144.0/21 16353 -85.236.152.0/21 53589 -85.236.160.0/19 35032 -85.236.192.0/19 33843 -85.236.224.0/19 34318 -85.237.0.0/19 29056 -85.237.32.0/19 12389 -85.237.64.0/22 35053 -85.237.68.0/23 35053 -85.237.70.0/24 35053 -85.237.84.0/22 35053 -85.237.88.0/24 35053 -85.237.96.0/19 1239 -85.237.128.0/19 41132 -85.237.160.0/19 35063 -85.237.192.0/19 21321 -85.237.224.0/19 15962 -85.238.0.0/20 41721 -85.238.16.0/21 41721 -85.238.24.0/24 41721 -85.238.25.0/24 50926 -85.238.26.0/24 50926 -85.238.27.0/24 41721 -85.238.28.0/22 41721 -85.238.32.0/19 35076 -85.238.64.0/19 20845 -85.238.96.0/19 6876 -85.238.132.0/22 13167 -85.238.136.0/22 13167 -85.238.140.0/22 9911 -85.238.144.0/22 4597 -85.238.160.0/19 41491 -85.238.192.0/19 45011 -85.238.224.0/19 3209 -85.239.0.0/24 35181 -85.239.4.0/22 35181 -85.239.8.0/22 35181 -85.239.16.0/24 35181 -85.239.20.0/24 35181 -85.239.24.0/24 35181 -85.239.31.0/24 35181 -85.239.32.0/24 35178 -85.239.33.0/24 134121 -85.239.34.0/24 134121 -85.239.35.0/24 35178 -85.239.36.0/22 134121 -85.239.40.0/23 134121 -85.239.42.0/24 60558 -85.239.43.0/24 202984 -85.239.44.0/22 134121 -85.239.48.0/20 134121 -85.239.64.0/24 208329 -85.239.66.0/24 208329 -85.239.68.0/23 208329 -85.239.80.0/20 5588 -85.239.96.0/19 16097 -85.239.144.0/21 24750 -85.239.152.0/22 41989 -85.239.156.0/22 24750 -85.239.160.0/19 35193 -85.239.192.0/19 197207 -85.239.224.0/24 21430 -85.239.225.0/24 15685 -85.239.226.0/24 21430 -85.239.227.0/24 15685 -85.239.228.0/23 21430 -85.239.230.0/23 15685 -85.239.232.0/21 15685 -85.239.240.0/21 15685 -85.239.248.0/23 15685 -85.239.250.0/24 15685 -85.239.251.0/24 21430 -85.239.252.0/23 15685 -85.239.254.0/24 21430 -85.239.255.0/24 15685 -85.240.0.0/13 3243 -85.248.0.0/20 5578 -85.248.16.0/21 5578 -85.248.24.0/23 5578 -85.248.26.0/24 5578 -85.248.27.0/24 206198 -85.248.28.0/23 5578 -85.248.30.0/24 5578 -85.248.31.0/24 6855 -85.248.32.0/19 5578 -85.248.64.0/21 5578 -85.248.72.0/23 5578 -85.248.74.0/24 6855 -85.248.75.0/24 5578 -85.248.76.0/22 5578 -85.248.80.0/20 5578 -85.248.96.0/20 5578 -85.248.112.0/21 5578 -85.248.120.0/22 5578 -85.248.124.0/24 50242 -85.248.125.0/24 5578 -85.248.126.0/23 5578 -85.248.128.0/20 5578 -85.248.144.0/21 5578 -85.248.152.0/22 48473 -85.248.156.0/22 5578 -85.248.160.0/19 5578 -85.248.192.0/19 5578 -85.248.224.0/21 5578 -85.248.232.0/23 5578 -85.248.234.0/24 5578 -85.248.235.0/24 34443 -85.248.236.0/22 5578 -85.248.240.0/21 5578 -85.248.248.0/24 5578 -85.248.249.0/24 24980 -85.248.250.0/23 5578 -85.248.252.0/22 5578 -85.249.0.0/21 8595 -85.249.8.0/21 20597 -85.249.16.0/20 3216 -85.249.32.0/20 8402 -85.249.48.0/22 29125 -85.249.52.0/22 8402 -85.249.56.0/22 3216 -85.249.60.0/22 8402 -85.249.64.0/20 8402 -85.249.80.0/22 8402 -85.249.84.0/22 3216 -85.249.88.0/22 8402 -85.249.92.0/22 3216 -85.249.96.0/22 8402 -85.249.100.0/22 3216 -85.249.104.0/22 8402 -85.249.108.0/22 34038 -85.249.112.0/20 8371 -85.249.128.0/19 3216 -85.249.160.0/20 3216 -85.249.192.0/19 8402 -85.249.224.0/19 20597 -85.250.0.0/16 1680 -85.251.0.0/20 6739 -85.251.16.0/23 12357 -85.251.18.0/23 6739 -85.251.20.0/22 6739 -85.251.24.0/21 6739 -85.251.32.0/20 6739 -85.251.48.0/20 12357 -85.251.64.0/21 12357 -85.251.72.0/21 6739 -85.251.80.0/22 12357 -85.251.84.0/22 6739 -85.251.88.0/21 6739 -85.251.96.0/19 6739 -85.251.128.0/22 12357 -85.251.132.0/22 6739 -85.251.136.0/21 6739 -85.251.144.0/20 6739 -85.251.160.0/20 6739 -85.251.176.0/21 12357 -85.251.184.0/22 6739 -85.251.188.0/23 12357 -85.251.190.0/23 6739 -85.251.192.0/20 6739 -85.251.208.0/22 6739 -85.251.212.0/23 12357 -85.251.214.0/23 6739 -85.251.216.0/22 6739 -85.251.220.0/23 12357 -85.251.222.0/23 6739 -85.251.224.0/20 6739 -85.251.240.0/21 6739 -85.251.248.0/23 6739 -85.251.250.0/23 12357 -85.251.252.0/23 12357 -85.251.254.0/23 6739 -85.252.0.0/16 2116 -85.253.0.0/16 13272 -85.254.0.0/24 2588 -85.254.1.0/24 42979 -85.254.2.0/24 2588 -85.254.3.0/24 42979 -85.254.4.0/24 2588 -85.254.5.0/24 43513 -85.254.6.0/23 2588 -85.254.8.0/21 15899 -85.254.16.0/22 43513 -85.254.20.0/22 2588 -85.254.24.0/22 43513 -85.254.28.0/23 2588 -85.254.30.0/24 2588 -85.254.31.0/24 205472 -85.254.32.0/21 43513 -85.254.40.0/22 2588 -85.254.44.0/24 43615 -85.254.45.0/24 2588 -85.254.46.0/23 2588 -85.254.48.0/24 201315 -85.254.49.0/24 2588 -85.254.50.0/23 2588 -85.254.52.0/22 2588 -85.254.56.0/21 2588 -85.254.64.0/21 2588 -85.254.72.0/24 200709 -85.254.73.0/24 2588 -85.254.74.0/23 13194 -85.254.76.0/22 2588 -85.254.80.0/22 2588 -85.254.84.0/23 2588 -85.254.86.0/23 43615 -85.254.88.0/22 34073 -85.254.92.0/23 13194 -85.254.94.0/24 2588 -85.254.95.0/24 13194 -85.254.96.0/22 13194 -85.254.100.0/23 13194 -85.254.102.0/23 2588 -85.254.104.0/21 2588 -85.254.112.0/20 2588 -85.254.128.0/22 2588 -85.254.132.0/23 2588 -85.254.134.0/24 43340 -85.254.135.0/24 2588 -85.254.136.0/24 197616 -85.254.137.0/24 2588 -85.254.138.0/23 2588 -85.254.140.0/24 15899 -85.254.141.0/24 2588 -85.254.142.0/23 43513 -85.254.144.0/24 199558 -85.254.145.0/24 43513 -85.254.146.0/24 202221 -85.254.147.0/24 2588 -85.254.148.0/24 201673 -85.254.149.0/24 2588 -85.254.150.0/24 35484 -85.254.151.0/24 2588 -85.254.152.0/22 2588 -85.254.156.0/23 43188 -85.254.158.0/24 56938 -85.254.159.0/24 2588 -85.254.160.0/20 2588 -85.254.176.0/22 2588 -85.254.180.0/23 2588 -85.254.182.0/23 48798 -85.254.184.0/21 2588 -85.254.192.0/24 5538 -85.254.193.0/24 29345 -85.254.194.0/23 5538 -85.254.196.0/22 5538 -85.254.200.0/22 13242 -85.254.204.0/23 13242 -85.254.206.0/23 5538 -85.254.208.0/22 5538 -85.254.212.0/23 5538 -85.254.214.0/23 24620 -85.254.216.0/21 24620 -85.254.224.0/22 24620 -85.254.228.0/24 24620 -85.254.229.0/24 5538 -85.254.230.0/23 5538 -85.254.232.0/22 5538 -85.254.236.0/23 5538 -85.254.238.0/23 13242 -85.254.240.0/21 13242 -85.254.248.0/21 5538 -85.255.0.0/20 24806 -85.255.32.0/20 62225 -85.255.48.0/20 25190 -85.255.64.0/20 34620 -85.255.80.0/22 18530 -85.255.88.0/22 198668 -85.255.92.0/22 205836 -85.255.96.0/20 24645 -85.255.112.0/20 199797 -85.255.144.0/21 43848 -85.255.152.0/24 208350 -85.255.153.0/24 43848 -85.255.154.0/23 43848 -85.255.156.0/22 43848 -85.255.160.0/20 35122 -85.255.176.0/21 43554 -85.255.184.0/21 57272 -85.255.192.0/20 42018 -85.255.208.0/20 25542 -85.255.232.0/22 25135 -85.255.236.0/23 25135 -85.255.240.0/20 50333 -86.0.0.0/11 5089 -86.34.0.0/15 9050 -86.36.0.0/20 29384 -86.36.16.0/22 29384 -86.36.20.0/22 34945 -86.36.24.0/21 29384 -86.36.32.0/19 29384 -86.36.64.0/19 198499 -86.36.96.0/19 29384 -86.36.128.0/24 47901 -86.36.129.0/24 29384 -86.36.130.0/23 29384 -86.36.132.0/22 29384 -86.36.136.0/21 29384 -86.36.144.0/20 29384 -86.36.160.0/19 29384 -86.36.192.0/18 29384 -86.37.0.0/16 29384 -86.38.0.0/16 15419 -86.39.0.0/18 50083 -86.39.64.0/20 56837 -86.39.128.0/17 28747 -86.40.0.0/13 5466 -86.48.0.0/16 16095 -86.49.0.0/16 6830 -86.50.0.0/16 1741 -86.51.0.0/16 35819 -86.52.0.0/16 197288 -86.53.0.0/17 8190 -86.53.128.0/18 8190 -86.53.192.0/19 8190 -86.53.224.0/20 8190 -86.53.240.0/21 8190 -86.53.248.0/22 8190 -86.53.252.0/24 3257 -86.53.253.0/24 8190 -86.53.254.0/23 8190 -86.54.0.0/16 8897 -86.55.0.0/16 197207 -86.56.0.0/17 20880 -86.56.128.0/17 12605 -86.57.0.0/17 43754 -86.57.128.0/18 6697 -86.57.192.0/19 6697 -86.57.224.0/20 6697 -86.57.240.0/24 6697 -86.57.241.0/24 49243 -86.57.242.0/23 6697 -86.57.244.0/22 6697 -86.57.248.0/21 6697 -86.58.0.0/17 3212 -86.58.128.0/17 16095 -86.59.0.0/17 8437 -86.59.128.0/17 5483 -86.60.32.0/19 58250 -86.60.64.0/19 25233 -86.60.96.0/24 43987 -86.60.97.0/24 25233 -86.60.98.0/23 25233 -86.60.100.0/22 25233 -86.60.104.0/21 25233 -86.60.112.0/21 25233 -86.60.120.0/22 43987 -86.60.124.0/23 43987 -86.60.126.0/24 25233 -86.60.127.0/24 43987 -86.60.128.0/17 39699 -86.61.0.0/17 5603 -86.61.128.0/17 15425 -86.62.4.0/23 50427 -86.62.6.0/24 31257 -86.62.7.0/24 209867 -86.62.12.0/22 60764 -86.62.16.0/22 49505 -86.62.20.0/23 202766 -86.62.24.0/22 49010 -86.62.28.0/22 39144 -86.62.40.0/22 206863 -86.62.44.0/22 31556 -86.62.48.0/24 42385 -86.62.49.0/24 3316 -86.62.56.0/22 48095 -86.62.60.0/22 9009 -86.62.64.0/18 8331 -86.62.128.0/18 2116 -86.62.192.0/20 42298 -86.62.208.0/24 8781 -86.62.209.0/24 42298 -86.62.210.0/24 8781 -86.62.211.0/24 42298 -86.62.212.0/22 8781 -86.62.216.0/24 42298 -86.62.217.0/24 8781 -86.62.218.0/24 42298 -86.62.219.0/24 8781 -86.62.220.0/24 8781 -86.62.221.0/24 42298 -86.62.222.0/24 8781 -86.62.223.0/24 42298 -86.62.224.0/20 42298 -86.62.240.0/23 8781 -86.62.242.0/23 42298 -86.62.244.0/23 42298 -86.62.246.0/24 42298 -86.62.247.0/24 8781 -86.62.248.0/23 42298 -86.62.250.0/24 8781 -86.62.251.0/24 42298 -86.62.252.0/24 42298 -86.62.253.0/24 8781 -86.62.254.0/24 8781 -86.62.255.0/24 42298 -86.63.0.0/18 60426 -86.63.64.0/18 35191 -86.63.128.0/19 35274 -86.63.160.0/19 43513 -86.63.192.0/19 16246 -86.63.224.0/19 35238 -86.64.0.0/16 15557 -86.65.0.0/19 15557 -86.65.32.0/22 15557 -86.65.36.0/24 15557 -86.65.37.0/24 12626 -86.65.38.0/23 15557 -86.65.40.0/21 15557 -86.65.48.0/22 15557 -86.65.52.0/24 15557 -86.65.53.0/24 12626 -86.65.54.0/23 15557 -86.65.56.0/21 15557 -86.65.64.0/18 15557 -86.65.128.0/17 15557 -86.66.0.0/15 15557 -86.68.0.0/14 15557 -86.72.0.0/13 15557 -86.80.0.0/12 1136 -86.96.0.0/18 5384 -86.96.64.0/19 5384 -86.96.96.0/20 5384 -86.96.112.0/21 5384 -86.96.120.0/22 5384 -86.96.124.0/23 5384 -86.96.126.0/24 5384 -86.96.127.0/24 8966 -86.96.128.0/17 5384 -86.97.0.0/16 5384 -86.98.0.0/15 5384 -86.100.0.0/17 39007 -86.100.128.0/18 39007 -86.100.200.0/21 39007 -86.100.208.0/20 39007 -86.100.224.0/21 39007 -86.100.232.0/23 39007 -86.100.236.0/22 39007 -86.100.240.0/20 39007 -86.101.0.0/16 6830 -86.102.0.0/19 12389 -86.102.32.0/20 12389 -86.102.48.0/20 12332 -86.102.64.0/18 12332 -86.102.128.0/21 12332 -86.102.136.0/22 12332 -86.102.140.0/23 12389 -86.102.142.0/23 12332 -86.102.144.0/20 12332 -86.102.160.0/20 12332 -86.102.176.0/21 12332 -86.102.184.0/22 12332 -86.102.188.0/23 12389 -86.102.190.0/23 12332 -86.102.192.0/21 12332 -86.102.200.0/22 12332 -86.102.204.0/23 12389 -86.102.206.0/23 12332 -86.102.208.0/22 12332 -86.102.212.0/23 12332 -86.102.214.0/24 12332 -86.102.215.0/24 12389 -86.102.216.0/21 12332 -86.102.224.0/23 12332 -86.102.226.0/24 12389 -86.102.227.0/24 12332 -86.102.228.0/22 12332 -86.102.232.0/23 12332 -86.102.234.0/23 12389 -86.102.236.0/22 12332 -86.102.240.0/20 12332 -86.103.0.0/22 13101 -86.103.4.0/24 57667 -86.103.5.0/24 13101 -86.103.6.0/23 13101 -86.103.8.0/21 13101 -86.103.16.0/20 13101 -86.103.32.0/19 13101 -86.103.64.0/18 13101 -86.103.128.0/17 13101 -86.104.0.0/23 209686 -86.104.2.0/24 209559 -86.104.3.0/24 5588 -86.104.4.0/24 8953 -86.104.5.0/24 60819 -86.104.7.0/24 33977 -86.104.9.0/24 5483 -86.104.11.0/24 60819 -86.104.12.0/24 8680 -86.104.13.0/24 205275 -86.104.14.0/24 202505 -86.104.15.0/24 44901 -86.104.16.0/24 33977 -86.104.17.0/24 5588 -86.104.18.0/24 39758 -86.104.20.0/22 210176 -86.104.24.0/22 29119 -86.104.28.0/23 25369 -86.104.30.0/23 34916 -86.104.32.0/20 25184 -86.104.48.0/20 1653 -86.104.64.0/24 8680 -86.104.65.0/24 6830 -86.104.66.0/23 9050 -86.104.68.0/22 3329 -86.104.72.0/22 50636 -86.104.80.0/20 12880 -86.104.96.0/20 12880 -86.104.112.0/21 12479 -86.104.120.0/22 3329 -86.104.124.0/24 41571 -86.104.126.0/24 60194 -86.104.127.0/24 39572 -86.104.128.0/22 31017 -86.104.132.0/23 56871 -86.104.134.0/24 39855 -86.104.135.0/24 35617 -86.104.136.0/21 6830 -86.104.144.0/21 34560 -86.104.152.0/21 1653 -86.104.160.0/21 51737 -86.104.168.0/21 12479 -86.104.176.0/22 43376 -86.104.180.0/24 43376 -86.104.181.0/24 209706 -86.104.182.0/23 43376 -86.104.184.0/21 31554 -86.104.193.0/24 6830 -86.104.196.0/22 8926 -86.104.200.0/21 1653 -86.104.208.0/24 60194 -86.104.209.0/24 209706 -86.104.210.0/24 25116 -86.104.211.0/24 47915 -86.104.213.0/24 51490 -86.104.214.0/24 20616 -86.104.215.0/24 41571 -86.104.220.0/24 49468 -86.104.221.0/24 44626 -86.104.222.0/23 209574 -86.104.224.0/23 209574 -86.104.226.0/24 203872 -86.104.227.0/24 41571 -86.104.228.0/24 203872 -86.104.230.0/24 49948 -86.104.231.0/24 34916 -86.104.240.0/21 58224 -86.104.248.0/22 210176 -86.104.252.0/23 197922 -86.104.254.0/23 40975 -86.105.1.0/24 49367 -86.105.3.0/24 60819 -86.105.4.0/24 41043 -86.105.5.0/24 47447 -86.105.7.0/24 201341 -86.105.8.0/24 31638 -86.105.9.0/24 9009 -86.105.10.0/23 8680 -86.105.12.0/24 60194 -86.105.13.0/24 201341 -86.105.15.0/24 34416 -86.105.16.0/24 6796 -86.105.17.0/24 33977 -86.105.18.0/24 49981 -86.105.19.0/24 59398 -86.105.20.0/22 205639 -86.105.25.0/24 9009 -86.105.26.0/24 49302 -86.105.27.0/24 8708 -86.105.28.0/22 201337 -86.105.32.0/21 47427 -86.105.40.0/21 12880 -86.105.48.0/21 200185 -86.105.56.0/21 8926 -86.105.64.0/20 6830 -86.105.80.0/21 8926 -86.105.88.0/21 34630 -86.105.104.0/22 209706 -86.105.108.0/22 31313 -86.105.112.0/21 1653 -86.105.120.0/21 6910 -86.105.128.0/20 12880 -86.105.144.0/22 39668 -86.105.148.0/23 39855 -86.105.150.0/24 39855 -86.105.151.0/24 9050 -86.105.152.0/23 56430 -86.105.154.0/24 49169 -86.105.155.0/24 56430 -86.105.156.0/22 29119 -86.105.160.0/22 209519 -86.105.164.0/22 35653 -86.105.168.0/24 39855 -86.105.170.0/24 31362 -86.105.171.0/24 42225 -86.105.172.0/22 8926 -86.105.177.0/24 56550 -86.105.178.0/24 209686 -86.105.180.0/24 33977 -86.105.181.0/24 39737 -86.105.182.0/24 59878 -86.105.183.0/24 47602 -86.105.184.0/23 201117 -86.105.186.0/24 203320 -86.105.187.0/24 3223 -86.105.188.0/22 3329 -86.105.192.0/24 20616 -86.105.193.0/24 6910 -86.105.194.0/24 5588 -86.105.195.0/24 3164 -86.105.196.0/24 31708 -86.105.197.0/24 9050 -86.105.198.0/24 43459 -86.105.199.0/24 62352 -86.105.200.0/22 3329 -86.105.204.0/23 34916 -86.105.208.0/22 8926 -86.105.212.0/23 197922 -86.105.214.0/24 205275 -86.105.215.0/24 3223 -86.105.216.0/22 31313 -86.105.220.0/24 59852 -86.105.221.0/24 39855 -86.105.223.0/24 41412 -86.105.224.0/24 9050 -86.105.225.0/24 15692 -86.105.226.0/24 34916 -86.105.227.0/24 49335 -86.105.228.0/24 5588 -86.105.231.0/24 50094 -86.105.233.0/24 8708 -86.105.234.0/24 47507 -86.105.235.0/24 20860 -86.105.236.0/22 198102 -86.105.241.0/24 51370 -86.105.242.0/23 51490 -86.105.244.0/22 20857 -86.105.248.0/22 3329 -86.105.253.0/24 35267 -86.105.254.0/23 197922 -86.106.0.0/22 34977 -86.106.4.0/22 48427 -86.106.8.0/23 41496 -86.106.11.0/24 60819 -86.106.12.0/24 60819 -86.106.13.0/24 51490 -86.106.14.0/23 209559 -86.106.16.0/24 198934 -86.106.17.0/24 48427 -86.106.18.0/23 206124 -86.106.20.0/24 9009 -86.106.22.0/24 31207 -86.106.23.0/24 201665 -86.106.24.0/23 50530 -86.106.26.0/24 39797 -86.106.27.0/24 34916 -86.106.28.0/23 203872 -86.106.30.0/24 205275 -86.106.31.0/24 9009 -86.106.32.0/19 6830 -86.106.64.0/21 48427 -86.106.72.0/23 35664 -86.106.75.0/24 15830 -86.106.76.0/24 12637 -86.106.77.0/24 35664 -86.106.78.0/24 59784 -86.106.79.0/24 33977 -86.106.80.0/24 34450 -86.106.81.0/24 39569 -86.106.82.0/24 49674 -86.106.84.0/23 35505 -86.106.86.0/24 33977 -86.106.87.0/24 9009 -86.106.88.0/24 29119 -86.106.89.0/24 203872 -86.106.90.0/24 9009 -86.106.91.0/24 50840 -86.106.92.0/24 39855 -86.106.93.0/24 44901 -86.106.94.0/23 201117 -86.106.96.0/24 59469 -86.106.97.0/24 34450 -86.106.98.0/24 39737 -86.106.99.0/24 44277 -86.106.100.0/23 41496 -86.106.102.0/24 49335 -86.106.103.0/24 9009 -86.106.104.0/24 34450 -86.106.105.0/24 51490 -86.106.106.0/23 209559 -86.106.109.0/24 209559 -86.106.110.0/23 51490 -86.106.113.0/24 8708 -86.106.114.0/23 201117 -86.106.116.0/23 201117 -86.106.118.0/24 209686 -86.106.119.0/24 9050 -86.106.120.0/24 209519 -86.106.124.0/22 6910 -86.106.128.0/24 6910 -86.106.129.0/24 61139 -86.106.130.0/24 61139 -86.106.131.0/24 47447 -86.106.132.0/24 9009 -86.106.133.0/24 42637 -86.106.134.0/24 41749 -86.106.135.0/24 203872 -86.106.136.0/23 9009 -86.106.138.0/23 209574 -86.106.140.0/23 209574 -86.106.142.0/24 204213 -86.106.144.0/21 8926 -86.106.152.0/22 210176 -86.106.156.0/24 31362 -86.106.159.0/24 61225 -86.106.160.0/21 1653 -86.106.168.0/24 31609 -86.106.170.0/24 49774 -86.106.171.0/24 57446 -86.106.172.0/24 60819 -86.106.173.0/24 42997 -86.106.174.0/23 398217 -86.106.179.0/24 48336 -86.106.180.0/24 48336 -86.106.184.0/22 201337 -86.106.188.0/22 48063 -86.106.192.0/21 12880 -86.106.200.0/21 34723 -86.106.208.0/20 8926 -86.106.224.0/19 8926 -86.107.0.0/20 197207 -86.107.16.0/22 29256 -86.107.20.0/24 31102 -86.107.23.0/24 205275 -86.107.24.0/23 33977 -86.107.26.0/23 41496 -86.107.28.0/23 41496 -86.107.30.0/24 31102 -86.107.31.0/24 31362 -86.107.32.0/21 6910 -86.107.42.0/24 20860 -86.107.43.0/24 5588 -86.107.46.0/24 41496 -86.107.47.0/24 50887 -86.107.48.0/23 42695 -86.107.50.0/23 58022 -86.107.52.0/24 31102 -86.107.54.0/24 31102 -86.107.55.0/24 9009 -86.107.56.0/24 62235 -86.107.57.0/24 34304 -86.107.58.0/23 34304 -86.107.60.0/23 34304 -86.107.62.0/24 23470 -86.107.63.0/24 34304 -86.107.64.0/22 8926 -86.107.68.0/23 44682 -86.107.70.0/23 41496 -86.107.73.0/24 60149 -86.107.74.0/23 41496 -86.107.76.0/24 6663 -86.107.77.0/24 9050 -86.107.78.0/23 5588 -86.107.80.0/20 12880 -86.107.96.0/22 60087 -86.107.100.0/23 38995 -86.107.102.0/24 201341 -86.107.103.0/24 6910 -86.107.104.0/24 9009 -86.107.105.0/24 59923 -86.107.106.0/24 61115 -86.107.107.0/24 39855 -86.107.108.0/23 209706 -86.107.110.0/24 12874 -86.107.111.0/24 59910 -86.107.120.0/21 6696 -86.107.128.0/20 21299 -86.107.144.0/20 12880 -86.107.160.0/21 8926 -86.107.169.0/24 205275 -86.107.172.0/22 12880 -86.107.176.0/24 39105 -86.107.177.0/24 52057 -86.107.178.0/23 47148 -86.107.180.0/24 44277 -86.107.181.0/24 31102 -86.107.182.0/24 31102 -86.107.183.0/24 39737 -86.107.184.0/24 9050 -86.107.185.0/24 57646 -86.107.188.0/24 48162 -86.107.189.0/24 197922 -86.107.190.0/24 197922 -86.107.192.0/24 40975 -86.107.193.0/24 51490 -86.107.194.0/23 209686 -86.107.196.0/24 39855 -86.107.199.0/24 39108 -86.107.200.0/21 39647 -86.107.208.0/20 197207 -86.107.224.0/20 8751 -86.107.240.0/24 35397 -86.107.241.0/24 203872 -86.107.242.0/23 42695 -86.107.244.0/23 39737 -86.107.246.0/23 8751 -86.107.248.0/21 34630 -86.108.0.0/17 8376 -86.108.140.0/24 16135 -86.108.152.0/24 16135 -86.108.160.0/24 16135 -86.108.165.0/24 16135 -86.108.183.0/24 16135 -86.108.184.0/21 16135 -86.108.192.0/19 16135 -86.108.232.0/21 16135 -86.108.240.0/23 16135 -86.108.243.0/24 16135 -86.108.244.0/24 16135 -86.108.246.0/23 16135 -86.108.248.0/24 16135 -86.108.254.0/23 16135 -86.109.0.0/24 54825 -86.109.2.0/23 54825 -86.109.4.0/23 54825 -86.109.8.0/24 54825 -86.109.12.0/22 54825 -86.109.16.0/21 12859 -86.109.24.0/21 49808 -86.109.32.0/19 24631 -86.109.64.0/19 35263 -86.109.96.0/19 16371 -86.109.128.0/19 6882 -86.109.160.0/20 196713 -86.109.192.0/19 29648 -86.109.224.0/20 12348 -86.109.240.0/21 12348 -86.109.248.0/23 12655 -86.109.250.0/23 12348 -86.109.252.0/22 12348 -86.110.0.0/19 8905 -86.110.32.0/21 201321 -86.110.40.0/22 201321 -86.110.44.0/24 201321 -86.110.45.0/24 202635 -86.110.46.0/23 201321 -86.110.48.0/21 201321 -86.110.64.0/19 21385 -86.110.96.0/20 3267 -86.110.112.0/22 3267 -86.110.116.0/24 3267 -86.110.117.0/24 3343 -86.110.118.0/23 3343 -86.110.120.0/21 3267 -86.110.128.0/19 21309 -86.110.161.0/24 47313 -86.110.162.0/23 21438 -86.110.164.0/22 21438 -86.110.168.0/22 15774 -86.110.172.0/24 21438 -86.110.173.0/24 15774 -86.110.174.0/23 15774 -86.110.176.0/23 47313 -86.110.178.0/24 15774 -86.110.179.0/24 47313 -86.110.180.0/22 15774 -86.110.184.0/21 15774 -86.110.192.0/23 35374 -86.110.195.0/24 35374 -86.110.196.0/22 35374 -86.110.200.0/23 35374 -86.110.204.0/22 204941 -86.110.208.0/23 35374 -86.110.212.0/24 204941 -86.110.215.0/24 204941 -86.110.220.0/24 204941 -86.110.221.0/24 204952 -86.110.222.0/23 35374 -86.110.224.0/19 29405 -86.111.0.0/19 6863 -86.111.32.0/19 29545 -86.111.64.0/20 202103 -86.111.80.0/20 39608 -86.111.96.0/19 30923 -86.111.128.0/20 15547 -86.111.144.0/21 57324 -86.111.152.0/21 60522 -86.111.160.0/20 57356 -86.111.176.0/20 33182 -86.111.192.0/21 30857 -86.111.200.0/22 42877 -86.111.204.0/24 42877 -86.111.206.0/23 42877 -86.111.208.0/22 57112 -86.111.216.0/24 42465 -86.111.218.0/23 13448 -86.111.220.0/23 13448 -86.111.222.0/23 44444 -86.111.224.0/22 58244 -86.111.228.0/23 48198 -86.111.230.0/23 58244 -86.111.232.0/21 35679 -86.111.240.0/21 47544 -86.111.248.0/21 3320 -86.112.0.0/15 9142 -86.114.0.0/16 20569 -86.115.0.0/16 1759 -86.117.18.0/23 49043 -86.117.140.0/23 47444 -86.118.0.0/16 15585 -86.119.0.0/16 559 -86.120.0.0/14 8708 -86.124.0.0/15 8708 -86.126.0.0/16 8708 -86.127.0.0/17 8708 -86.127.128.0/18 8708 -86.127.192.0/19 8708 -86.127.224.0/19 57269 -86.128.0.0/11 2856 -86.160.0.0/12 2856 -86.176.0.0/13 2856 -86.184.0.0/14 2856 -86.188.0.0/17 2856 -86.188.128.0/18 2856 -86.188.192.0/19 2856 -86.188.224.0/20 2856 -86.188.240.0/21 2856 -86.188.248.0/24 51318 -86.188.249.0/24 2856 -86.188.250.0/23 2856 -86.188.252.0/22 2856 -86.189.0.0/16 2856 -86.190.0.0/15 2856 -86.192.0.0/11 3215 -86.225.0.0/16 3215 -86.227.0.0/16 3215 -86.228.0.0/15 3215 -86.233.0.0/16 3215 -86.234.0.0/15 3215 -86.236.0.0/14 3215 -86.241.0.0/16 3215 -86.242.0.0/15 3215 -86.244.0.0/14 3215 -86.248.0.0/15 3215 -86.250.0.0/16 3215 -86.252.0.0/15 3215 -86.254.0.0/16 3215 -87.0.0.0/12 3269 -87.16.0.0/13 3269 -87.24.0.0/14 3269 -87.28.0.0/15 3269 -87.30.0.0/16 3269 -87.32.0.0/12 1213 -87.48.0.0/12 3292 -87.64.0.0/14 5432 -87.68.0.0/14 9116 -87.72.0.0/15 15516 -87.74.0.0/15 25310 -87.76.0.0/20 50716 -87.76.16.0/24 63956 -87.76.17.0/24 202521 -87.76.18.0/23 31463 -87.76.20.0/24 31463 -87.76.21.0/24 202521 -87.76.22.0/23 31463 -87.76.24.0/21 31463 -87.76.32.0/19 57013 -87.76.128.0/17 9205 -87.77.0.0/16 680 -87.78.0.0/15 8422 -87.80.0.0/15 5607 -87.82.0.0/19 4589 -87.82.32.0/20 4589 -87.82.48.0/21 4589 -87.82.56.0/23 4589 -87.82.58.0/24 4589 -87.82.59.0/24 5607 -87.82.60.0/22 4589 -87.82.64.0/18 4589 -87.82.128.0/17 4589 -87.83.0.0/18 4589 -87.83.64.0/20 4589 -87.83.80.0/21 4589 -87.83.88.0/23 4589 -87.83.90.0/24 8190 -87.83.91.0/24 4589 -87.83.92.0/22 4589 -87.83.96.0/19 4589 -87.83.128.0/17 4589 -87.84.0.0/18 4589 -87.84.64.0/19 4589 -87.84.96.0/23 4589 -87.84.98.0/24 4589 -87.84.99.0/24 8190 -87.84.100.0/22 4589 -87.84.104.0/21 4589 -87.84.112.0/20 4589 -87.84.128.0/18 4589 -87.84.192.0/20 4589 -87.84.208.0/22 4589 -87.84.212.0/23 4589 -87.84.214.0/24 8190 -87.84.215.0/24 4589 -87.84.216.0/21 4589 -87.84.224.0/19 4589 -87.85.0.0/16 4589 -87.86.0.0/18 4589 -87.86.64.0/20 4589 -87.86.80.0/21 4589 -87.86.88.0/22 4589 -87.86.92.0/24 4589 -87.86.93.0/24 5607 -87.86.94.0/23 4589 -87.86.96.0/19 4589 -87.86.128.0/19 4589 -87.86.160.0/20 4589 -87.86.176.0/21 4589 -87.86.184.0/22 4589 -87.86.188.0/23 4589 -87.86.190.0/24 3257 -87.86.191.0/24 4589 -87.86.192.0/19 4589 -87.86.224.0/21 4589 -87.86.232.0/22 4589 -87.86.236.0/24 5607 -87.86.237.0/24 4589 -87.86.238.0/23 4589 -87.86.240.0/20 4589 -87.87.0.0/16 4589 -87.88.0.0/14 5410 -87.92.0.0/14 16086 -87.96.0.0/17 5617 -87.96.128.0/17 45011 -87.97.0.0/18 20845 -87.97.64.0/20 12301 -87.97.80.0/20 20845 -87.97.96.0/19 20845 -87.97.128.0/19 13124 -87.97.160.0/23 29580 -87.97.162.0/23 8717 -87.97.164.0/22 13124 -87.97.168.0/21 13124 -87.97.176.0/20 13124 -87.97.192.0/18 13124 -87.98.0.0/18 3327 -87.98.64.0/19 3327 -87.98.124.0/22 3327 -87.98.128.0/17 16276 -87.99.0.0/18 43939 -87.99.64.0/22 24589 -87.99.68.0/23 24589 -87.99.70.0/24 24589 -87.99.71.0/24 51249 -87.99.72.0/24 24589 -87.99.73.0/24 206902 -87.99.74.0/23 24589 -87.99.76.0/24 24589 -87.99.77.0/24 43877 -87.99.78.0/23 24589 -87.99.80.0/20 24589 -87.99.96.0/19 30838 -87.99.128.0/17 12501 -87.100.0.0/17 35632 -87.100.128.0/17 16086 -87.101.0.0/20 30870 -87.101.16.0/20 35760 -87.101.32.0/20 42266 -87.101.48.0/20 395965 -87.101.64.0/20 13000 -87.101.80.0/22 48095 -87.101.84.0/22 210161 -87.101.88.0/22 34977 -87.101.92.0/22 9009 -87.101.112.0/20 5483 -87.101.128.0/17 35753 -87.102.0.0/17 12390 -87.102.128.0/17 6772 -87.103.0.0/17 12353 -87.103.128.0/19 12389 -87.103.160.0/21 12389 -87.103.168.0/24 38985 -87.103.169.0/24 12389 -87.103.170.0/23 12389 -87.103.172.0/22 12389 -87.103.176.0/20 12389 -87.103.192.0/20 12389 -87.103.208.0/21 12389 -87.103.216.0/21 16287 -87.103.224.0/21 12389 -87.103.232.0/24 39407 -87.103.233.0/24 12389 -87.103.234.0/24 39407 -87.103.235.0/24 12389 -87.103.236.0/22 12389 -87.103.240.0/20 12389 -87.104.0.0/18 44869 -87.104.64.0/18 204274 -87.104.128.0/17 3292 -87.105.0.0/16 12741 -87.106.0.0/16 8560 -87.107.0.0/20 59962 -87.107.16.0/22 42337 -87.107.20.0/22 209079 -87.107.24.0/22 21341 -87.107.28.0/22 42337 -87.107.32.0/23 42337 -87.107.34.0/23 21341 -87.107.36.0/22 42337 -87.107.40.0/22 21341 -87.107.44.0/22 42337 -87.107.48.0/23 42337 -87.107.50.0/23 21341 -87.107.52.0/22 21341 -87.107.56.0/21 42337 -87.107.64.0/22 42337 -87.107.68.0/22 21341 -87.107.72.0/21 42337 -87.107.80.0/22 43415 -87.107.84.0/22 42337 -87.107.88.0/22 21341 -87.107.92.0/24 42337 -87.107.96.0/22 21341 -87.107.100.0/22 42337 -87.107.104.0/21 49100 -87.107.112.0/22 34865 -87.107.116.0/22 21341 -87.107.120.0/21 21341 -87.107.128.0/22 21341 -87.107.132.0/23 21341 -87.107.134.0/23 62367 -87.107.136.0/21 42337 -87.107.144.0/22 41881 -87.107.154.0/23 201689 -87.107.156.0/22 201689 -87.107.160.0/19 41881 -87.107.192.0/18 41881 -87.108.0.0/16 15830 -87.109.0.0/16 25019 -87.110.0.0/17 12578 -87.110.128.0/18 12578 -87.110.192.0/21 12578 -87.110.200.0/22 12578 -87.110.204.0/24 198116 -87.110.205.0/24 12578 -87.110.206.0/23 12578 -87.110.208.0/23 12578 -87.110.210.0/24 12578 -87.110.211.0/24 48546 -87.110.212.0/22 12578 -87.110.216.0/21 12578 -87.110.224.0/21 12578 -87.110.232.0/24 12578 -87.110.233.0/24 43482 -87.110.234.0/23 12578 -87.110.236.0/22 12578 -87.110.240.0/21 12578 -87.110.248.0/24 34417 -87.110.249.0/24 12578 -87.110.250.0/23 12578 -87.110.252.0/22 12578 -87.112.0.0/14 6871 -87.116.0.0/18 31027 -87.116.64.0/20 8866 -87.116.80.0/23 9070 -87.116.82.0/24 9070 -87.116.84.0/22 8866 -87.116.88.0/22 9070 -87.116.96.0/22 29667 -87.116.100.0/22 9070 -87.116.104.0/21 9070 -87.116.112.0/20 9070 -87.116.128.0/18 31042 -87.116.192.0/18 21021 -87.117.0.0/19 21479 -87.117.36.0/22 21479 -87.117.40.0/21 21479 -87.117.48.0/20 12389 -87.117.64.0/22 35650 -87.117.68.0/24 9009 -87.117.70.0/24 201134 -87.117.72.0/21 16082 -87.117.80.0/20 57356 -87.117.96.0/20 57910 -87.117.112.0/21 16082 -87.117.120.0/21 198433 -87.117.128.0/20 41691 -87.117.146.0/23 41691 -87.117.148.0/23 41691 -87.117.150.0/24 41691 -87.117.151.0/24 50740 -87.117.152.0/21 43521 -87.117.160.0/23 24810 -87.117.162.0/24 24810 -87.117.163.0/24 12389 -87.117.164.0/22 24810 -87.117.168.0/24 24810 -87.117.169.0/24 12389 -87.117.170.0/23 24810 -87.117.172.0/22 12389 -87.117.176.0/24 12389 -87.117.177.0/24 24810 -87.117.178.0/23 12389 -87.117.180.0/23 12389 -87.117.182.0/24 12389 -87.117.183.0/24 24810 -87.117.184.0/24 24810 -87.117.185.0/24 12389 -87.117.186.0/23 12389 -87.117.188.0/24 24810 -87.117.189.0/24 12389 -87.117.190.0/24 24810 -87.117.191.0/24 12389 -87.117.192.0/18 20860 -87.118.0.0/18 2116 -87.118.64.0/18 31103 -87.118.128.0/22 9070 -87.118.132.0/23 9070 -87.118.134.0/24 42815 -87.118.135.0/24 59851 -87.118.136.0/22 9070 -87.118.140.0/24 31083 -87.118.141.0/24 47697 -87.118.142.0/24 29667 -87.118.143.0/24 9070 -87.118.144.0/23 8866 -87.118.146.0/24 207772 -87.118.147.0/24 8866 -87.118.148.0/22 9070 -87.118.152.0/22 9070 -87.118.156.0/22 29667 -87.118.160.0/22 9070 -87.118.164.0/22 8866 -87.118.168.0/21 9070 -87.118.176.0/20 9070 -87.118.192.0/18 8470 -87.119.64.0/21 47771 -87.119.72.0/21 8390 -87.119.80.0/21 3257 -87.119.88.0/22 49233 -87.119.92.0/22 3257 -87.119.96.0/22 3257 -87.119.100.0/22 47771 -87.119.104.0/23 47771 -87.119.106.0/23 8390 -87.119.108.0/22 49849 -87.119.112.0/21 49849 -87.119.120.0/22 3257 -87.119.124.0/23 8390 -87.119.126.0/24 8390 -87.119.127.0/24 47771 -87.119.128.0/19 3212 -87.119.160.0/19 2586 -87.119.192.0/23 25074 -87.119.194.0/24 25074 -87.119.195.0/24 29066 -87.119.196.0/22 25074 -87.119.200.0/21 61157 -87.119.208.0/22 61157 -87.119.216.0/22 25074 -87.119.220.0/22 29066 -87.119.224.0/19 12389 -87.120.0.0/22 34577 -87.120.5.0/24 200009 -87.120.6.0/23 34224 -87.120.8.0/24 34224 -87.120.9.0/24 47748 -87.120.10.0/24 33802 -87.120.11.0/24 51925 -87.120.12.0/24 34577 -87.120.13.0/24 34224 -87.120.14.0/23 34577 -87.120.16.0/21 43548 -87.120.24.0/21 58271 -87.120.32.0/22 43561 -87.120.36.0/24 30860 -87.120.37.0/24 34224 -87.120.39.0/24 34224 -87.120.40.0/24 201200 -87.120.41.0/24 31083 -87.120.42.0/24 25224 -87.120.43.0/24 34224 -87.120.44.0/23 34577 -87.120.46.0/23 43561 -87.120.48.0/21 34577 -87.120.56.0/24 34224 -87.120.61.0/24 34224 -87.120.62.0/24 34224 -87.120.64.0/23 43561 -87.120.66.0/24 31490 -87.120.67.0/24 57634 -87.120.68.0/23 43561 -87.120.72.0/21 43561 -87.120.80.0/23 34224 -87.120.84.0/22 51189 -87.120.88.0/23 43561 -87.120.90.0/24 47748 -87.120.91.0/24 44017 -87.120.92.0/24 209274 -87.120.93.0/24 34224 -87.120.94.0/23 34224 -87.120.96.0/23 43561 -87.120.98.0/24 34224 -87.120.99.0/24 43548 -87.120.100.0/22 43561 -87.120.104.0/24 34224 -87.120.105.0/24 209524 -87.120.106.0/24 34224 -87.120.107.0/24 57634 -87.120.108.0/24 43548 -87.120.109.0/24 34224 -87.120.112.0/20 25206 -87.120.128.0/23 34224 -87.120.130.0/24 34224 -87.120.131.0/24 39396 -87.120.132.0/24 34224 -87.120.134.0/23 34224 -87.120.136.0/22 39396 -87.120.140.0/24 34224 -87.120.141.0/24 49882 -87.120.142.0/24 202160 -87.120.143.0/24 199759 -87.120.144.0/21 34577 -87.120.152.0/22 41624 -87.120.156.0/23 57634 -87.120.158.0/23 34577 -87.120.162.0/23 15941 -87.120.166.0/24 15941 -87.120.176.0/23 34224 -87.120.178.0/23 34577 -87.120.180.0/22 34577 -87.120.184.0/22 34577 -87.120.190.0/23 34577 -87.120.192.0/23 43561 -87.120.195.0/24 34224 -87.120.196.0/24 43548 -87.120.197.0/24 42446 -87.120.199.0/24 34224 -87.120.200.0/23 34224 -87.120.202.0/24 34224 -87.120.205.0/24 43548 -87.120.206.0/23 34224 -87.120.208.0/21 29030 -87.120.216.0/24 43548 -87.120.217.0/24 34224 -87.120.218.0/23 43561 -87.120.220.0/23 43561 -87.120.222.0/24 43548 -87.120.223.0/24 34224 -87.120.224.0/22 35448 -87.120.228.0/23 42942 -87.120.230.0/23 60202 -87.120.232.0/22 34577 -87.120.236.0/24 60230 -87.120.237.0/24 34224 -87.120.238.0/23 34224 -87.120.240.0/22 207044 -87.120.244.0/23 25374 -87.120.246.0/24 43548 -87.120.247.0/24 34224 -87.120.248.0/22 207044 -87.120.253.0/24 34224 -87.120.254.0/23 34224 -87.121.0.0/23 34224 -87.121.2.0/24 34224 -87.121.3.0/24 29030 -87.121.4.0/23 29030 -87.121.6.0/23 34224 -87.121.8.0/21 29030 -87.121.16.0/21 34569 -87.121.24.0/21 29030 -87.121.32.0/24 57634 -87.121.33.0/24 34224 -87.121.34.0/23 198228 -87.121.36.0/23 43561 -87.121.38.0/24 43561 -87.121.40.0/23 210211 -87.121.42.0/24 34224 -87.121.43.0/24 199818 -87.121.44.0/22 43561 -87.121.48.0/22 34577 -87.121.52.0/24 34224 -87.121.54.0/24 34224 -87.121.56.0/23 43561 -87.121.58.0/24 200068 -87.121.59.0/24 34224 -87.121.60.0/22 43561 -87.121.64.0/24 34224 -87.121.65.0/24 29030 -87.121.66.0/23 29030 -87.121.68.0/24 48057 -87.121.69.0/24 43561 -87.121.70.0/23 57634 -87.121.72.0/22 134697 -87.121.76.0/23 60784 -87.121.78.0/24 60784 -87.121.79.0/24 34224 -87.121.80.0/22 34224 -87.121.84.0/22 34577 -87.121.88.0/23 34577 -87.121.90.0/23 34224 -87.121.92.0/22 134697 -87.121.98.0/23 50360 -87.121.100.0/23 43561 -87.121.102.0/24 34224 -87.121.103.0/24 43561 -87.121.104.0/23 43561 -87.121.106.0/24 60590 -87.121.107.0/24 15504 -87.121.108.0/23 43548 -87.121.110.0/24 201133 -87.121.111.0/24 34224 -87.121.112.0/23 34224 -87.121.114.0/23 43561 -87.121.117.0/24 34224 -87.121.118.0/24 34224 -87.121.119.0/24 48917 -87.121.120.0/24 47748 -87.121.121.0/24 31490 -87.121.126.0/24 51925 -87.121.128.0/21 50368 -87.121.136.0/21 203872 -87.121.144.0/23 57634 -87.121.146.0/23 43561 -87.121.148.0/23 29030 -87.121.150.0/23 34224 -87.121.152.0/21 29030 -87.121.160.0/24 44564 -87.121.161.0/24 34224 -87.121.162.0/23 43561 -87.121.164.0/24 203864 -87.121.165.0/24 49815 -87.121.166.0/23 49815 -87.121.168.0/21 31420 -87.121.192.0/20 21413 -87.121.208.0/21 203872 -87.121.216.0/22 398083 -87.121.222.0/24 58271 -87.121.223.0/24 8717 -87.121.224.0/20 21413 -87.121.248.0/22 134697 -87.121.252.0/23 34224 -87.121.254.0/24 34224 -87.122.0.0/15 8881 -87.124.0.0/17 35456 -87.124.128.0/18 15704 -87.124.192.0/18 12430 -87.125.0.0/16 12430 -87.126.0.0/16 8866 -87.127.0.0/16 8468 -87.128.0.0/10 3320 -87.192.0.0/18 25441 -87.192.64.0/20 25441 -87.192.80.0/24 34245 -87.192.82.0/23 25441 -87.192.84.0/22 25441 -87.192.88.0/21 25441 -87.192.96.0/19 25441 -87.192.128.0/18 25441 -87.192.192.0/20 25441 -87.192.208.0/21 25441 -87.192.216.0/22 25441 -87.192.220.0/23 34245 -87.192.222.0/23 25441 -87.192.224.0/19 25441 -87.193.0.0/16 20676 -87.194.0.0/16 35228 -87.195.0.0/16 12414 -87.196.0.0/16 2860 -87.197.0.0/16 6855 -87.198.0.0/16 34245 -87.199.0.0/16 41201 -87.200.0.0/15 15802 -87.202.0.0/15 6799 -87.204.0.0/15 12741 -87.206.0.0/15 6830 -87.208.0.0/13 13127 -87.216.0.0/13 12479 -87.224.0.0/17 16082 -87.224.128.0/19 35154 -87.224.160.0/21 35154 -87.224.168.0/22 35154 -87.224.172.0/23 35154 -87.224.174.0/24 12389 -87.224.175.0/24 35154 -87.224.176.0/20 35154 -87.224.192.0/21 35154 -87.224.200.0/22 35154 -87.224.204.0/24 35154 -87.224.205.0/24 12389 -87.224.206.0/23 35154 -87.224.208.0/20 35154 -87.224.224.0/20 35154 -87.224.240.0/22 35154 -87.224.244.0/24 12389 -87.224.245.0/24 35154 -87.224.246.0/23 35154 -87.224.248.0/21 35154 -87.225.0.0/20 12389 -87.225.16.0/23 34584 -87.225.18.0/23 12389 -87.225.20.0/22 12389 -87.225.24.0/22 12389 -87.225.28.0/22 34584 -87.225.32.0/21 12389 -87.225.40.0/22 12389 -87.225.44.0/23 34584 -87.225.46.0/23 12389 -87.225.48.0/21 34584 -87.225.56.0/23 34584 -87.225.58.0/23 12389 -87.225.60.0/22 12389 -87.225.64.0/21 12389 -87.225.72.0/23 12389 -87.225.74.0/24 12389 -87.225.75.0/24 34584 -87.225.76.0/23 34584 -87.225.78.0/23 12389 -87.225.80.0/20 12389 -87.225.96.0/23 34584 -87.225.98.0/23 12389 -87.225.100.0/23 12389 -87.225.102.0/23 34584 -87.225.104.0/23 34584 -87.225.106.0/24 34584 -87.225.107.0/24 12389 -87.225.108.0/22 12389 -87.225.112.0/21 12389 -87.225.120.0/22 34584 -87.225.124.0/23 12389 -87.225.126.0/24 34584 -87.225.127.0/24 12389 -87.225.128.0/17 44716 -87.226.0.0/17 20910 -87.226.128.0/18 12389 -87.226.192.0/21 12389 -87.226.200.0/23 12389 -87.226.202.0/24 12389 -87.226.203.0/24 12958 -87.226.204.0/23 15378 -87.226.206.0/24 48092 -87.226.207.0/24 12389 -87.226.208.0/24 12389 -87.226.209.0/24 12958 -87.226.210.0/24 42437 -87.226.211.0/24 48190 -87.226.212.0/24 41330 -87.226.213.0/24 12389 -87.226.214.0/23 12389 -87.226.216.0/21 12389 -87.226.224.0/19 12389 -87.227.0.0/17 3246 -87.227.128.0/24 8717 -87.227.129.0/24 29580 -87.227.130.0/23 29580 -87.227.132.0/23 29580 -87.227.134.0/23 8717 -87.227.136.0/22 8717 -87.227.140.0/24 59484 -87.227.141.0/24 8717 -87.227.142.0/23 8717 -87.227.144.0/20 8717 -87.227.160.0/20 29580 -87.227.176.0/23 8717 -87.227.178.0/23 29580 -87.227.180.0/22 29580 -87.227.184.0/21 29580 -87.227.192.0/23 8717 -87.227.194.0/23 29580 -87.227.196.0/22 29580 -87.227.200.0/22 29580 -87.227.204.0/23 8717 -87.227.206.0/24 12962 -87.227.207.0/24 8717 -87.227.208.0/21 29580 -87.227.216.0/23 8717 -87.227.218.0/23 29580 -87.227.220.0/22 8717 -87.227.224.0/19 29580 -87.228.0.0/17 31514 -87.228.128.0/18 6866 -87.228.192.0/21 6866 -87.228.200.0/23 6866 -87.228.202.0/24 6866 -87.228.203.0/24 203598 -87.228.204.0/22 6866 -87.228.208.0/20 6866 -87.228.224.0/19 6866 -87.229.0.0/24 57389 -87.229.1.0/24 33947 -87.229.2.0/23 33947 -87.229.4.0/23 33947 -87.229.6.0/24 12301 -87.229.7.0/24 43711 -87.229.8.0/24 29278 -87.229.9.0/24 57389 -87.229.10.0/24 57389 -87.229.11.0/24 29278 -87.229.12.0/24 47169 -87.229.13.0/24 33947 -87.229.14.0/24 41075 -87.229.15.0/24 29278 -87.229.16.0/22 47169 -87.229.20.0/23 47159 -87.229.22.0/24 39679 -87.229.23.0/24 62292 -87.229.24.0/24 43711 -87.229.25.0/24 33947 -87.229.26.0/24 29278 -87.229.27.0/24 33947 -87.229.28.0/22 33947 -87.229.32.0/22 29278 -87.229.36.0/23 197889 -87.229.38.0/23 47169 -87.229.40.0/23 29278 -87.229.42.0/23 47169 -87.229.44.0/23 29278 -87.229.46.0/23 33947 -87.229.48.0/24 41075 -87.229.49.0/24 33947 -87.229.50.0/24 47169 -87.229.51.0/24 29278 -87.229.52.0/22 29278 -87.229.56.0/24 39679 -87.229.57.0/24 29278 -87.229.58.0/23 29278 -87.229.60.0/23 47169 -87.229.62.0/23 62292 -87.229.64.0/22 29278 -87.229.68.0/23 29278 -87.229.70.0/24 62292 -87.229.71.0/24 39679 -87.229.72.0/24 60071 -87.229.73.0/24 29278 -87.229.74.0/23 29278 -87.229.76.0/24 29278 -87.229.77.0/24 61998 -87.229.78.0/24 29278 -87.229.79.0/24 39679 -87.229.80.0/21 29278 -87.229.88.0/22 29278 -87.229.92.0/23 29278 -87.229.94.0/24 29278 -87.229.95.0/24 62292 -87.229.96.0/23 29278 -87.229.98.0/23 42964 -87.229.100.0/24 41091 -87.229.101.0/24 49857 -87.229.102.0/24 42964 -87.229.103.0/24 60071 -87.229.104.0/24 60071 -87.229.105.0/24 29278 -87.229.106.0/23 47169 -87.229.108.0/24 62292 -87.229.109.0/24 33947 -87.229.110.0/24 29278 -87.229.111.0/24 43711 -87.229.112.0/22 29278 -87.229.116.0/23 29278 -87.229.118.0/24 29278 -87.229.119.0/24 49857 -87.229.120.0/24 60071 -87.229.121.0/24 29278 -87.229.122.0/23 29278 -87.229.124.0/22 29278 -87.229.128.0/23 31359 -87.229.130.0/24 42862 -87.229.131.0/24 31359 -87.229.132.0/22 31359 -87.229.136.0/24 31359 -87.229.137.0/24 42862 -87.229.138.0/23 31359 -87.229.140.0/23 31359 -87.229.142.0/23 3216 -87.229.144.0/23 3216 -87.229.146.0/23 31359 -87.229.148.0/22 31359 -87.229.152.0/21 31359 -87.229.160.0/20 31359 -87.229.176.0/21 3216 -87.229.184.0/23 31359 -87.229.186.0/23 3216 -87.229.188.0/22 31359 -87.229.192.0/21 3216 -87.229.200.0/22 31359 -87.229.204.0/22 3216 -87.229.208.0/20 3216 -87.229.224.0/19 3216 -87.230.0.0/19 8972 -87.230.32.0/22 8972 -87.230.36.0/22 61157 -87.230.40.0/21 35329 -87.230.48.0/23 8972 -87.230.50.0/23 61157 -87.230.52.0/22 61157 -87.230.56.0/22 61157 -87.230.60.0/22 35329 -87.230.65.0/24 61157 -87.230.72.0/22 61157 -87.230.76.0/22 8972 -87.230.80.0/23 8972 -87.230.82.0/23 61157 -87.230.84.0/22 8972 -87.230.88.0/21 8972 -87.230.96.0/21 61157 -87.230.104.0/22 35329 -87.230.108.0/23 61157 -87.230.110.0/23 20773 -87.230.112.0/21 20773 -87.230.120.0/22 61157 -87.230.124.0/23 61157 -87.230.127.0/24 61157 -87.230.128.0/17 42428 -87.231.0.0/16 21502 -87.232.0.0/19 25441 -87.232.32.0/19 34245 -87.232.64.0/18 34245 -87.232.128.0/21 34245 -87.232.144.0/20 25441 -87.232.160.0/19 25441 -87.232.192.0/24 25441 -87.232.193.0/24 34245 -87.232.194.0/23 25441 -87.232.196.0/22 25441 -87.232.200.0/21 25441 -87.232.208.0/20 25441 -87.232.224.0/24 34245 -87.232.225.0/24 25441 -87.232.226.0/23 25441 -87.232.228.0/22 25441 -87.232.232.0/21 25441 -87.232.240.0/20 25441 -87.233.0.0/16 15703 -87.234.0.0/16 20676 -87.235.0.0/16 12430 -87.236.0.0/21 35332 -87.236.8.0/21 24599 -87.236.16.0/21 198610 -87.236.24.0/21 12714 -87.236.32.0/22 35358 -87.236.36.0/24 35358 -87.236.38.0/23 35358 -87.236.40.0/21 35389 -87.236.48.0/21 39273 -87.236.56.0/21 35399 -87.236.64.0/23 35405 -87.236.68.0/24 35405 -87.236.70.0/23 35405 -87.236.72.0/24 3215 -87.236.80.0/21 35571 -87.236.88.0/21 45011 -87.236.96.0/21 60781 -87.236.104.0/21 35501 -87.236.112.0/21 5385 -87.236.120.0/23 41576 -87.236.128.0/21 8530 -87.236.136.0/21 35568 -87.236.147.0/24 35544 -87.236.152.0/21 47605 -87.236.168.0/21 49059 -87.236.176.0/21 29529 -87.236.184.0/21 15886 -87.236.192.0/21 35592 -87.236.200.0/21 6830 -87.236.208.0/24 201295 -87.236.209.0/24 209782 -87.236.210.0/24 57230 -87.236.211.0/24 200296 -87.236.212.0/24 50673 -87.236.213.0/24 60178 -87.236.214.0/24 60178 -87.236.215.0/24 208161 -87.236.216.0/21 15699 -87.236.224.0/21 49826 -87.236.232.0/21 35656 -87.236.245.0/24 8426 -87.236.246.0/24 8426 -87.236.248.0/21 35670 -87.237.0.0/21 42804 -87.237.8.0/21 8368 -87.237.16.0/21 12576 -87.237.24.0/21 44187 -87.237.32.0/23 2914 -87.237.34.0/23 35834 -87.237.36.0/24 35834 -87.237.38.0/23 2914 -87.237.40.0/21 35768 -87.237.56.0/21 20860 -87.237.64.0/21 39537 -87.237.74.0/24 38936 -87.237.80.0/21 25627 -87.237.88.0/22 8549 -87.237.96.0/23 25542 -87.237.99.0/24 25525 -87.237.100.0/23 25542 -87.237.103.0/24 25525 -87.237.104.0/22 5588 -87.237.108.0/23 38981 -87.237.110.0/23 5588 -87.237.112.0/21 38951 -87.237.120.0/21 38927 -87.237.136.0/21 39045 -87.237.144.0/21 16212 -87.237.152.0/22 8464 -87.237.156.0/23 8464 -87.237.160.0/22 206141 -87.237.168.0/22 42810 -87.237.172.0/22 15576 -87.237.176.0/21 38988 -87.237.184.0/21 15830 -87.237.199.0/24 51375 -87.237.200.0/24 39311 -87.237.201.0/24 51859 -87.237.202.0/23 51859 -87.237.204.0/22 51859 -87.237.208.0/21 1257 -87.237.216.0/23 12337 -87.237.218.0/24 12337 -87.237.219.0/24 14380 -87.237.221.0/24 4637 -87.237.222.0/23 12337 -87.237.224.0/24 41589 -87.237.230.0/24 41589 -87.237.232.0/21 39032 -87.237.240.0/21 3320 -87.237.248.0/21 39051 -87.238.0.0/20 15589 -87.238.16.0/20 20836 -87.238.32.0/19 39029 -87.238.64.0/21 2116 -87.238.72.0/21 31084 -87.238.80.0/21 16509 -87.238.89.0/24 39140 -87.238.90.0/23 39140 -87.238.92.0/24 39140 -87.238.96.0/22 39143 -87.238.100.0/24 39143 -87.238.101.0/24 8491 -87.238.102.0/23 39143 -87.238.104.0/21 3215 -87.238.112.0/21 39151 -87.238.120.0/21 41412 -87.238.128.0/21 48832 -87.238.137.0/24 51776 -87.238.138.0/24 51776 -87.238.144.0/21 39271 -87.238.152.0/23 15742 -87.238.160.0/21 34762 -87.238.168.0/21 31477 -87.238.176.0/21 39241 -87.238.184.0/21 39257 -87.238.192.0/21 42730 -87.238.200.0/21 43408 -87.238.208.0/21 206262 -87.238.216.0/21 39295 -87.238.224.0/21 61023 -87.238.232.0/21 30936 -87.238.242.0/23 22364 -87.238.244.0/23 22364 -87.238.248.0/21 198614 -87.239.0.0/21 48711 -87.239.8.0/23 207647 -87.239.10.0/24 207647 -87.239.11.0/24 35470 -87.239.12.0/22 207647 -87.239.16.0/21 205072 -87.239.24.0/21 35598 -87.239.32.0/21 49828 -87.239.40.0/21 38942 -87.239.48.0/21 61367 -87.239.56.0/21 29148 -87.239.64.0/21 203646 -87.239.72.0/21 43939 -87.239.80.0/21 25190 -87.239.88.0/21 29596 -87.239.96.0/21 31172 -87.239.104.0/21 12722 -87.239.112.0/21 21412 -87.239.120.0/24 43558 -87.239.121.0/24 39662 -87.239.122.0/23 39662 -87.239.124.0/22 39662 -87.239.128.0/21 12586 -87.239.136.0/22 35292 -87.239.140.0/23 35292 -87.239.142.0/24 35292 -87.239.143.0/24 3209 -87.239.144.0/21 12722 -87.239.152.0/21 31298 -87.239.160.0/22 21299 -87.239.164.0/23 21299 -87.239.166.0/23 35566 -87.239.168.0/21 50994 -87.239.176.0/21 39489 -87.239.184.0/21 41095 -87.239.192.0/21 13000 -87.239.200.0/21 8758 -87.239.208.0/21 13030 -87.239.216.0/21 30793 -87.239.232.0/21 8643 -87.239.240.0/21 56391 -87.239.248.0/24 201924 -87.239.249.0/24 58305 -87.239.250.0/23 58305 -87.239.254.0/24 24768 -87.239.255.0/24 42994 -87.240.0.0/19 8615 -87.240.32.0/21 8615 -87.240.40.0/21 42610 -87.240.48.0/20 42610 -87.240.64.0/19 35184 -87.240.96.0/20 35184 -87.240.115.0/24 35184 -87.240.120.0/23 35184 -87.240.128.0/18 47541 -87.240.192.0/18 6661 -87.241.0.0/18 8220 -87.241.64.0/18 45011 -87.241.128.0/20 12297 -87.241.160.0/19 12297 -87.241.192.0/20 12772 -87.241.208.0/21 12772 -87.241.216.0/22 12772 -87.241.220.0/23 12772 -87.241.222.0/24 12772 -87.241.223.0/24 21353 -87.241.224.0/20 12772 -87.241.240.0/22 12772 -87.241.245.0/24 12772 -87.241.246.0/23 12772 -87.241.248.0/21 12772 -87.242.0.0/18 35311 -87.242.64.0/18 25532 -87.242.128.0/17 12708 -87.243.0.0/21 39737 -87.243.8.0/21 21299 -87.243.16.0/20 21299 -87.243.32.0/20 35566 -87.243.48.0/21 35566 -87.243.56.0/22 35566 -87.243.60.0/23 35566 -87.243.62.0/23 21299 -87.243.65.0/24 197214 -87.243.66.0/23 197214 -87.243.69.0/24 202463 -87.243.71.0/24 202463 -87.243.72.0/24 202463 -87.243.73.0/24 197214 -87.243.77.0/24 202463 -87.243.79.0/24 202463 -87.243.80.0/20 8866 -87.243.96.0/19 8866 -87.243.128.0/18 35370 -87.243.192.0/18 8419 -87.244.0.0/21 35401 -87.244.8.0/21 8905 -87.244.16.0/21 35401 -87.244.24.0/21 8905 -87.244.32.0/20 35401 -87.244.48.0/21 35401 -87.244.63.0/24 201620 -87.244.64.0/18 8681 -87.244.128.0/18 21310 -87.244.192.0/18 31117 -87.245.0.0/18 35776 -87.245.64.0/18 35518 -87.245.128.0/21 8732 -87.245.136.0/22 8732 -87.245.140.0/23 8732 -87.245.142.0/24 200743 -87.245.143.0/24 8732 -87.245.144.0/22 8732 -87.245.148.0/23 8732 -87.245.150.0/24 43001 -87.245.151.0/24 8732 -87.245.152.0/21 8732 -87.245.160.0/22 8732 -87.245.164.0/24 8732 -87.245.165.0/24 8595 -87.245.166.0/23 8732 -87.245.168.0/23 8732 -87.245.170.0/24 8732 -87.245.171.0/24 50853 -87.245.172.0/22 8732 -87.245.176.0/23 8732 -87.245.178.0/24 202150 -87.245.179.0/24 8732 -87.245.180.0/22 8732 -87.245.184.0/21 8732 -87.245.192.0/20 9002 -87.245.208.0/21 9002 -87.245.216.0/21 25462 -87.245.224.0/19 9002 -87.246.0.0/23 12615 -87.246.2.0/24 57344 -87.246.3.0/24 49699 -87.246.4.0/23 43561 -87.246.6.0/24 50360 -87.246.7.0/24 208410 -87.246.8.0/21 43561 -87.246.16.0/21 43561 -87.246.24.0/24 49699 -87.246.25.0/24 12615 -87.246.26.0/23 43561 -87.246.28.0/22 43561 -87.246.32.0/24 12615 -87.246.33.0/24 60182 -87.246.34.0/24 60182 -87.246.35.0/24 12615 -87.246.36.0/22 29622 -87.246.40.0/24 34984 -87.246.41.0/24 201613 -87.246.42.0/23 201613 -87.246.44.0/24 12615 -87.246.45.0/24 51855 -87.246.46.0/23 43561 -87.246.48.0/24 48917 -87.246.49.0/24 57344 -87.246.50.0/23 43561 -87.246.52.0/23 48917 -87.246.54.0/23 205352 -87.246.56.0/23 48917 -87.246.58.0/23 43561 -87.246.60.0/24 60182 -87.246.61.0/24 57344 -87.246.62.0/24 57344 -87.246.63.0/24 12615 -87.246.64.0/18 12703 -87.246.128.0/20 43513 -87.246.144.0/20 12578 -87.246.160.0/24 12578 -87.246.161.0/24 41376 -87.246.162.0/24 12578 -87.246.163.0/24 59967 -87.246.164.0/22 12578 -87.246.168.0/22 12578 -87.246.172.0/24 34073 -87.246.173.0/24 12578 -87.246.174.0/23 12578 -87.246.176.0/22 12578 -87.246.180.0/23 12578 -87.246.182.0/24 25004 -87.246.183.0/24 58269 -87.246.184.0/23 21325 -87.246.186.0/23 12578 -87.246.188.0/22 12578 -87.246.192.0/19 12324 -87.246.224.0/20 12346 -87.246.240.0/20 12324 -87.247.0.0/23 35566 -87.247.2.0/23 21299 -87.247.4.0/22 21299 -87.247.8.0/24 35566 -87.247.9.0/24 21299 -87.247.10.0/24 21299 -87.247.11.0/24 35566 -87.247.12.0/24 35566 -87.247.13.0/24 21299 -87.247.14.0/24 35566 -87.247.15.0/24 21299 -87.247.16.0/24 35566 -87.247.17.0/24 21299 -87.247.18.0/23 35566 -87.247.20.0/22 21299 -87.247.24.0/21 21299 -87.247.32.0/21 21299 -87.247.40.0/24 21299 -87.247.41.0/24 35566 -87.247.42.0/23 21299 -87.247.44.0/22 21299 -87.247.48.0/20 21299 -87.247.64.0/18 21412 -87.247.128.0/22 62235 -87.247.132.0/22 210093 -87.247.136.0/22 35107 -87.247.140.0/24 12722 -87.247.141.0/24 49505 -87.247.142.0/24 56630 -87.247.143.0/24 51167 -87.247.144.0/22 49505 -87.247.152.0/22 42331 -87.247.156.0/24 59935 -87.247.157.0/24 9002 -87.247.158.0/23 49505 -87.247.160.0/21 137989 -87.247.168.0/21 30902 -87.247.176.0/23 30902 -87.247.178.0/24 30902 -87.247.180.0/22 24631 -87.247.192.0/19 35765 -87.247.224.0/21 57173 -87.247.232.0/21 21056 -87.247.240.0/21 198047 -87.247.248.0/23 39505 -87.247.250.0/24 39505 -87.247.251.0/24 62015 -87.247.252.0/22 39505 -87.248.0.0/19 29492 -87.248.32.0/19 12850 -87.248.64.0/19 31423 -87.248.96.0/21 34010 -87.248.104.0/24 10310 -87.248.105.0/24 203220 -87.248.106.0/23 10310 -87.248.108.0/23 34010 -87.248.110.0/24 34010 -87.248.112.0/24 43428 -87.248.113.0/24 203219 -87.248.114.0/23 43428 -87.248.116.0/23 203219 -87.248.118.0/23 203220 -87.248.128.0/21 47843 -87.248.136.0/22 59962 -87.248.140.0/23 47843 -87.248.142.0/24 47843 -87.248.144.0/23 59962 -87.248.146.0/24 59962 -87.248.147.0/24 47843 -87.248.148.0/24 59962 -87.248.149.0/24 47843 -87.248.150.0/23 34078 -87.248.152.0/24 34078 -87.248.153.0/24 47843 -87.248.154.0/23 47843 -87.248.156.0/24 47843 -87.248.157.0/24 44400 -87.248.158.0/24 47843 -87.248.160.0/19 31252 -87.248.192.0/19 22822 -87.248.224.0/19 35511 -87.249.0.0/19 31430 -87.249.32.0/20 31323 -87.249.48.0/21 31323 -87.249.64.0/20 15641 -87.249.80.0/23 15641 -87.249.82.0/24 17025 -87.249.84.0/22 15641 -87.249.88.0/21 15641 -87.249.96.0/19 47886 -87.249.128.0/19 34040 -87.249.160.0/19 25417 -87.249.192.0/19 41925 -87.249.224.0/19 35558 -87.250.0.0/19 3226 -87.250.32.0/22 35573 -87.250.36.0/23 35573 -87.250.39.0/24 35573 -87.250.40.0/21 35573 -87.250.48.0/24 35573 -87.250.50.0/23 35573 -87.250.52.0/22 35573 -87.250.56.0/22 35573 -87.250.60.0/23 35573 -87.250.63.0/24 35573 -87.250.64.0/19 25488 -87.250.97.0/24 35567 -87.250.98.0/23 35567 -87.250.100.0/22 35567 -87.250.104.0/21 35567 -87.250.112.0/20 35567 -87.250.128.0/19 15879 -87.250.160.0/19 2635 -87.250.212.0/24 208573 -87.250.213.0/24 200838 -87.250.214.0/23 200838 -87.250.216.0/24 200838 -87.250.218.0/23 200838 -87.250.221.0/24 201970 -87.250.223.0/24 209460 -87.250.224.0/19 13238 -87.251.0.0/22 15755 -87.251.32.0/19 12859 -87.251.64.0/22 56694 -87.251.68.0/22 20803 -87.251.72.0/22 20803 -87.251.76.0/23 60558 -87.251.78.0/23 20803 -87.251.80.0/22 49505 -87.251.84.0/22 206873 -87.251.88.0/24 206873 -87.251.89.0/24 20803 -87.251.90.0/23 49063 -87.251.92.0/23 41187 -87.251.96.0/19 8443 -87.251.128.0/19 58224 -87.251.160.0/19 5563 -87.251.192.0/19 29518 -87.251.224.0/19 8374 -87.252.0.0/19 8304 -87.252.32.0/19 12519 -87.252.64.0/19 2119 -87.252.96.0/21 35729 -87.252.104.0/23 35729 -87.252.106.0/23 48544 -87.252.108.0/22 15975 -87.252.127.0/24 8697 -87.252.128.0/19 5391 -87.252.160.0/19 12829 -87.252.192.0/19 15830 -87.252.224.0/24 48340 -87.252.225.0/24 31143 -87.252.226.0/24 56740 -87.252.227.0/24 31143 -87.252.228.0/24 35668 -87.252.229.0/24 44272 -87.252.230.0/24 21062 -87.252.231.0/24 21236 -87.252.232.0/24 62170 -87.252.234.0/24 50334 -87.252.235.0/24 31143 -87.252.236.0/24 21305 -87.252.238.0/24 21062 -87.252.239.0/24 21236 -87.252.241.0/24 56740 -87.252.242.0/23 25106 -87.252.244.0/24 44272 -87.252.245.0/24 50334 -87.252.246.0/24 42772 -87.252.247.0/24 21236 -87.252.248.0/24 21236 -87.252.249.0/24 33973 -87.252.250.0/24 60611 -87.252.251.0/24 202324 -87.252.252.0/24 42772 -87.252.253.0/24 50155 -87.252.254.0/23 42772 -87.253.0.0/21 12389 -87.253.8.0/22 12389 -87.253.12.0/23 13118 -87.253.14.0/24 13118 -87.253.15.0/24 12389 -87.253.16.0/20 12389 -87.253.32.0/19 35805 -87.253.64.0/19 45011 -87.253.96.0/19 35719 -87.253.128.0/19 20857 -87.253.160.0/23 9211 -87.253.162.0/24 45012 -87.253.163.0/24 9211 -87.253.164.0/22 9211 -87.253.168.0/21 9211 -87.253.184.0/22 35258 -87.253.189.0/24 50629 -87.253.192.0/19 30749 -87.253.224.0/21 48846 -87.253.232.0/21 200069 -87.253.240.0/20 15925 -87.254.0.0/19 20915 -87.254.32.0/19 35754 -87.254.64.0/19 13122 -87.254.96.0/19 34683 -87.254.128.0/22 34038 -87.254.132.0/23 3216 -87.254.134.0/23 34038 -87.254.136.0/21 34038 -87.254.144.0/20 34038 -87.254.160.0/19 34754 -87.254.192.0/21 200656 -87.254.200.0/22 18666 -87.254.204.0/23 28723 -87.254.206.0/24 28723 -87.254.207.0/24 4847 -87.254.208.0/20 200656 -87.254.224.0/19 6758 -87.255.0.0/19 35810 -87.255.32.0/19 38930 -87.255.64.0/19 15836 -87.255.96.0/19 5713 -87.255.128.0/19 12566 -87.255.160.0/19 206114 -87.255.192.0/23 39188 -87.255.194.0/23 200590 -87.255.196.0/22 200590 -87.255.200.0/23 200590 -87.255.202.0/23 41798 -87.255.204.0/22 41798 -87.255.208.0/21 41798 -87.255.216.0/23 41798 -87.255.218.0/24 41798 -87.255.220.0/22 41798 -87.255.224.0/19 38917 -88.0.0.0/12 3352 -88.16.0.0/13 3352 -88.24.0.0/14 3352 -88.28.0.0/15 3352 -88.31.0.0/16 3352 -88.32.0.0/16 3269 -88.33.0.0/20 3269 -88.33.16.0/21 3269 -88.33.24.0/23 3269 -88.33.26.0/24 3269 -88.33.27.0/24 20746 -88.33.28.0/22 3269 -88.33.32.0/19 3269 -88.33.64.0/18 3269 -88.33.128.0/17 3269 -88.34.0.0/15 3269 -88.36.0.0/14 3269 -88.40.0.0/14 3269 -88.44.0.0/19 3269 -88.44.32.0/20 3269 -88.44.48.0/21 3269 -88.44.56.0/22 3269 -88.44.60.0/24 20746 -88.44.61.0/24 3269 -88.44.62.0/24 3269 -88.44.63.0/24 20746 -88.44.64.0/18 3269 -88.44.128.0/17 3269 -88.45.0.0/16 3269 -88.46.0.0/15 3269 -88.48.0.0/12 3269 -88.64.0.0/12 3209 -88.80.0.0/19 33837 -88.80.32.0/19 39001 -88.80.64.0/19 34731 -88.80.96.0/19 39184 -88.80.128.0/24 47226 -88.80.129.0/24 35011 -88.80.130.0/24 43063 -88.80.131.0/24 20657 -88.80.132.0/22 20657 -88.80.136.0/21 20657 -88.80.144.0/24 204641 -88.80.147.0/24 44901 -88.80.148.0/23 44901 -88.80.150.0/24 41870 -88.80.151.0/24 44901 -88.80.152.0/21 60168 -88.80.160.0/20 15830 -88.80.176.0/21 15830 -88.80.184.0/21 63949 -88.80.192.0/22 8972 -88.80.196.0/24 8972 -88.80.197.0/24 20773 -88.80.198.0/23 8972 -88.80.200.0/21 8972 -88.80.208.0/22 8972 -88.80.212.0/23 8972 -88.80.214.0/24 20773 -88.80.215.0/24 8972 -88.80.216.0/22 8972 -88.80.220.0/24 20773 -88.80.221.0/24 8972 -88.80.222.0/24 20773 -88.80.223.0/24 8972 -88.80.224.0/19 31127 -88.81.32.0/19 8371 -88.81.64.0/19 34093 -88.81.96.0/19 39093 -88.81.128.0/19 8680 -88.81.160.0/19 4589 -88.81.192.0/20 28947 -88.81.208.0/23 28947 -88.81.210.0/23 41556 -88.81.212.0/22 42071 -88.81.216.0/21 28947 -88.81.224.0/19 3326 -88.82.0.0/19 25135 -88.82.32.0/19 48517 -88.82.64.0/23 29125 -88.82.68.0/23 29125 -88.82.70.0/24 42062 -88.82.72.0/23 42062 -88.82.74.0/23 29125 -88.82.76.0/23 29125 -88.82.78.0/24 29125 -88.82.80.0/22 29125 -88.82.84.0/23 42062 -88.82.86.0/23 34518 -88.82.88.0/22 29125 -88.82.92.0/22 34518 -88.82.96.0/19 39145 -88.82.160.0/19 39178 -88.82.192.0/19 39155 -88.82.224.0/19 16097 -88.83.0.0/19 8818 -88.83.32.0/19 45011 -88.83.64.0/19 35637 -88.83.96.0/24 8468 -88.83.100.0/22 200994 -88.83.104.0/24 8468 -88.83.105.0/24 200994 -88.83.106.0/24 8468 -88.83.107.0/24 200994 -88.83.108.0/24 200994 -88.83.109.0/24 8468 -88.83.110.0/24 200994 -88.83.111.0/24 8468 -88.83.112.0/23 200994 -88.83.116.0/24 8468 -88.83.117.0/24 200994 -88.83.118.0/23 8468 -88.83.124.0/23 8468 -88.83.126.0/24 8468 -88.83.128.0/19 2119 -88.83.160.0/19 5610 -88.83.192.0/19 21017 -88.83.224.0/19 12570 -88.84.0.0/19 41549 -88.84.32.0/19 61275 -88.84.64.0/19 15734 -88.84.96.0/19 42428 -88.84.128.0/21 21371 -88.84.136.0/21 24989 -88.84.144.0/21 24990 -88.84.152.0/21 47886 -88.84.160.0/19 2116 -88.84.192.0/24 21453 -88.84.193.0/24 50289 -88.84.194.0/23 21453 -88.84.196.0/22 21453 -88.84.200.0/21 21453 -88.84.208.0/24 50289 -88.84.209.0/24 21453 -88.84.210.0/23 21453 -88.84.212.0/22 21453 -88.84.216.0/21 21453 -88.84.224.0/20 3246 -88.84.240.0/21 3246 -88.84.248.0/22 3246 -88.84.252.0/23 3246 -88.84.254.0/24 1257 -88.84.255.0/24 3246 -88.85.0.0/19 44885 -88.85.32.0/19 15389 -88.85.64.0/19 35415 -88.85.96.0/19 34772 -88.85.128.0/19 34263 -88.85.160.0/20 24699 -88.85.176.0/21 12389 -88.85.184.0/21 24699 -88.85.192.0/19 30868 -88.85.224.0/19 29684 -88.86.0.0/19 29256 -88.86.32.0/20 45011 -88.86.50.0/24 1257 -88.86.64.0/19 12418 -88.86.96.0/19 39392 -88.86.128.0/19 1759 -88.86.160.0/19 3302 -88.86.192.0/19 28890 -88.86.224.0/20 48432 -88.86.240.0/22 48432 -88.86.244.0/22 49594 -88.86.248.0/21 48432 -88.87.0.0/19 34754 -88.87.32.0/21 31283 -88.87.40.0/22 31283 -88.87.44.0/24 31283 -88.87.45.0/24 12552 -88.87.46.0/23 31283 -88.87.48.0/20 31283 -88.87.64.0/19 39435 -88.87.96.0/19 34606 -88.87.128.0/19 39447 -88.87.160.0/19 47680 -88.87.192.0/19 12386 -88.87.224.0/21 200076 -88.87.232.0/21 12301 -88.87.240.0/21 6830 -88.87.248.0/21 42232 -88.88.0.0/13 2119 -88.96.0.0/15 13037 -88.98.0.0/20 13037 -88.98.16.0/23 13037 -88.98.18.0/24 13037 -88.98.19.0/24 198781 -88.98.20.0/24 198781 -88.98.21.0/24 13037 -88.98.22.0/23 13037 -88.98.24.0/21 13037 -88.98.32.0/19 13037 -88.98.64.0/19 13037 -88.98.96.0/20 43160 -88.98.112.0/20 202147 -88.98.128.0/19 13037 -88.98.160.0/21 13037 -88.98.168.0/23 198781 -88.98.170.0/23 13037 -88.98.172.0/22 13037 -88.98.176.0/20 13037 -88.98.192.0/18 56478 -88.99.0.0/16 24940 -88.100.0.0/14 5610 -88.104.0.0/13 9105 -88.112.0.0/14 719 -88.116.0.0/15 8447 -88.118.0.0/16 8764 -88.119.0.0/17 8764 -88.119.128.0/19 8764 -88.119.160.0/21 61272 -88.119.168.0/22 61272 -88.119.174.0/23 61272 -88.119.176.0/22 198651 -88.119.180.0/24 43811 -88.119.181.0/24 206224 -88.119.182.0/24 204967 -88.119.184.0/21 8764 -88.119.192.0/20 8764 -88.119.208.0/22 8764 -88.119.212.0/22 204390 -88.119.216.0/22 8764 -88.119.220.0/23 43811 -88.119.222.0/24 43811 -88.119.223.0/24 8764 -88.119.224.0/20 8764 -88.119.240.0/22 8764 -88.119.244.0/23 8764 -88.119.246.0/24 43811 -88.119.247.0/24 8764 -88.119.248.0/21 8764 -88.120.0.0/13 12322 -88.128.0.0/16 3320 -88.129.0.0/16 45011 -88.130.0.0/16 8881 -88.131.0.0/16 3246 -88.132.0.0/17 35311 -88.132.128.0/18 35311 -88.132.192.0/19 35311 -88.132.224.0/20 35311 -88.132.240.0/21 35311 -88.132.248.0/22 35311 -88.132.252.0/22 44789 -88.133.0.0/17 197524 -88.133.128.0/20 197524 -88.133.144.0/21 56833 -88.133.152.0/22 56833 -88.133.156.0/22 197524 -88.133.160.0/20 29413 -88.133.176.0/20 12611 -88.133.192.0/19 41307 -88.133.224.0/21 29413 -88.133.232.0/21 12611 -88.133.240.0/21 48284 -88.133.248.0/21 57154 -88.134.0.0/16 31334 -88.135.0.0/20 35129 -88.135.16.0/22 62179 -88.135.20.0/23 62179 -88.135.22.0/24 62179 -88.135.30.0/23 62179 -88.135.32.0/22 50177 -88.135.36.0/22 44285 -88.135.40.0/21 57240 -88.135.48.0/20 47118 -88.135.64.0/22 201942 -88.135.72.0/22 16245 -88.135.76.0/22 210319 -88.135.80.0/20 42975 -88.135.96.0/20 210176 -88.135.112.0/20 42239 -88.135.128.0/19 24589 -88.135.160.0/19 50188 -88.135.192.0/19 49125 -88.135.224.0/19 30779 -88.136.0.0/14 8228 -88.140.0.0/15 8228 -88.142.0.0/16 8228 -88.144.0.0/15 12708 -88.146.0.0/17 29208 -88.146.128.0/17 6830 -88.147.0.0/17 35612 -88.147.128.0/17 12389 -88.148.0.0/21 29119 -88.148.8.0/23 42947 -88.148.10.0/23 29119 -88.148.12.0/23 29119 -88.148.14.0/24 199770 -88.148.15.0/24 29119 -88.148.16.0/24 199770 -88.148.17.0/24 29119 -88.148.18.0/23 29119 -88.148.20.0/22 29119 -88.148.24.0/22 29119 -88.148.28.0/24 29119 -88.148.29.0/24 199770 -88.148.30.0/23 29119 -88.148.32.0/20 29119 -88.148.48.0/22 29119 -88.148.52.0/23 50563 -88.148.54.0/23 29119 -88.148.56.0/23 29119 -88.148.58.0/23 199853 -88.148.60.0/22 29119 -88.148.64.0/24 29119 -88.148.65.0/24 48990 -88.148.66.0/23 29119 -88.148.68.0/22 29119 -88.148.72.0/23 29119 -88.148.74.0/24 198192 -88.148.75.0/24 29119 -88.148.76.0/22 29119 -88.148.80.0/21 29119 -88.148.88.0/24 203068 -88.148.89.0/24 29119 -88.148.90.0/23 29119 -88.148.92.0/22 29119 -88.148.96.0/23 60807 -88.148.98.0/23 60711 -88.148.100.0/22 29119 -88.148.104.0/21 29119 -88.148.112.0/20 29119 -88.148.128.0/17 16086 -88.149.0.0/17 12969 -88.149.128.0/17 35612 -88.150.0.0/17 43341 -88.150.128.0/18 20860 -88.150.192.0/20 20860 -88.150.208.0/21 20860 -88.150.216.0/22 60423 -88.150.220.0/22 20860 -88.150.224.0/20 20860 -88.150.240.0/21 20860 -88.150.248.0/22 3356 -88.150.252.0/23 20860 -88.150.254.0/23 3356 -88.151.0.0/21 16171 -88.151.8.0/21 34035 -88.151.16.0/22 39353 -88.151.24.0/21 48142 -88.151.32.0/22 49750 -88.151.36.0/22 15879 -88.151.40.0/21 59410 -88.151.48.0/21 39472 -88.151.56.0/24 12301 -88.151.59.0/24 12301 -88.151.63.0/24 51438 -88.151.64.0/21 44700 -88.151.72.0/21 1764 -88.151.80.0/21 39449 -88.151.88.0/21 39578 -88.151.96.0/21 41075 -88.151.112.0/22 39596 -88.151.116.0/23 39596 -88.151.120.0/21 198352 -88.151.128.0/21 49751 -88.151.136.0/21 13110 -88.151.144.0/21 35518 -88.151.152.0/21 8530 -88.151.160.0/21 41729 -88.151.172.0/22 8473 -88.151.176.0/21 41371 -88.151.184.0/21 39578 -88.151.192.0/21 15723 -88.151.200.0/21 41118 -88.151.208.0/21 15699 -88.151.216.0/23 41811 -88.151.218.0/24 197107 -88.151.219.0/24 41811 -88.151.220.0/22 41811 -88.151.224.0/24 64294 -88.151.225.0/24 22351 -88.151.226.0/23 22351 -88.151.228.0/24 32806 -88.151.229.0/24 64294 -88.151.231.0/24 210314 -88.151.232.0/21 34391 -88.151.240.0/21 34762 -88.151.248.0/21 44300 -88.152.0.0/15 6830 -88.154.0.0/15 34058 -88.156.0.0/16 29314 -88.157.0.0/16 2860 -88.158.0.0/16 15471 -88.159.0.0/16 1136 -88.160.0.0/11 12322 -88.192.0.0/14 1759 -88.196.0.0/16 3249 -88.197.0.0/17 8643 -88.197.128.0/17 5432 -88.198.0.0/16 24940 -88.199.0.0/19 20960 -88.199.32.0/22 20960 -88.199.36.0/24 20960 -88.199.37.0/24 203685 -88.199.38.0/23 20960 -88.199.40.0/22 20960 -88.199.44.0/24 200176 -88.199.45.0/24 20960 -88.199.46.0/23 20960 -88.199.48.0/22 20960 -88.199.52.0/24 20960 -88.199.53.0/24 200176 -88.199.54.0/23 200176 -88.199.56.0/21 20960 -88.199.64.0/20 20960 -88.199.80.0/23 20960 -88.199.82.0/24 20960 -88.199.83.0/24 60528 -88.199.84.0/22 20960 -88.199.88.0/22 20960 -88.199.92.0/23 20960 -88.199.94.0/23 202141 -88.199.96.0/24 20960 -88.199.97.0/24 201549 -88.199.98.0/23 20960 -88.199.100.0/24 20960 -88.199.101.0/24 200574 -88.199.102.0/23 200574 -88.199.104.0/21 20960 -88.199.112.0/22 20960 -88.199.116.0/22 199980 -88.199.120.0/21 20960 -88.199.128.0/23 200176 -88.199.130.0/24 200176 -88.199.131.0/24 20960 -88.199.132.0/22 20960 -88.199.136.0/21 20960 -88.199.144.0/22 199296 -88.199.148.0/22 20960 -88.199.152.0/21 20960 -88.199.160.0/23 20960 -88.199.162.0/24 42923 -88.199.163.0/24 20960 -88.199.164.0/22 20960 -88.199.168.0/22 20960 -88.199.172.0/23 201122 -88.199.174.0/23 20960 -88.199.176.0/20 20960 -88.199.192.0/18 20960 -88.200.0.0/17 2107 -88.200.128.0/17 12389 -88.201.0.0/17 5416 -88.201.128.0/19 35511 -88.201.160.0/20 39087 -88.201.176.0/22 35511 -88.201.180.0/23 35511 -88.201.182.0/24 35511 -88.201.183.0/24 42866 -88.201.184.0/21 35511 -88.201.192.0/20 35511 -88.201.208.0/21 35511 -88.201.216.0/22 35511 -88.201.220.0/23 35511 -88.201.222.0/24 35511 -88.201.223.0/24 39087 -88.201.224.0/19 35511 -88.202.0.0/19 29286 -88.202.32.0/24 29286 -88.202.33.0/24 9229 -88.202.34.0/23 29286 -88.202.36.0/22 29286 -88.202.40.0/21 29286 -88.202.48.0/20 29286 -88.202.64.0/18 29286 -88.202.128.0/19 56329 -88.202.160.0/21 207176 -88.202.168.0/21 41811 -88.202.176.0/23 13213 -88.202.178.0/24 32780 -88.202.179.0/24 13213 -88.202.180.0/22 13213 -88.202.184.0/21 13213 -88.202.192.0/20 56329 -88.202.208.0/22 61369 -88.202.212.0/22 60194 -88.202.216.0/24 204078 -88.202.217.0/24 199391 -88.202.218.0/23 199391 -88.202.220.0/24 50079 -88.202.221.0/24 199391 -88.202.222.0/23 199391 -88.202.224.0/21 13213 -88.202.232.0/22 56329 -88.202.236.0/24 198435 -88.202.237.0/24 199792 -88.202.238.0/23 199792 -88.202.240.0/20 56329 -88.203.0.0/17 12709 -88.203.128.0/22 8717 -88.203.132.0/24 8717 -88.203.133.0/24 29580 -88.203.134.0/23 8717 -88.203.136.0/23 8717 -88.203.138.0/23 29580 -88.203.140.0/22 8717 -88.203.144.0/21 8717 -88.203.152.0/23 8717 -88.203.154.0/24 8717 -88.203.155.0/24 41782 -88.203.156.0/24 48917 -88.203.157.0/24 8717 -88.203.158.0/23 8717 -88.203.160.0/20 29580 -88.203.176.0/24 29580 -88.203.177.0/24 8717 -88.203.178.0/23 29580 -88.203.180.0/22 29580 -88.203.184.0/24 8717 -88.203.185.0/24 29580 -88.203.186.0/24 8717 -88.203.187.0/24 51374 -88.203.188.0/23 51374 -88.203.190.0/24 51374 -88.203.191.0/24 29580 -88.203.192.0/21 44100 -88.203.200.0/22 8717 -88.203.204.0/24 8717 -88.203.205.0/24 208318 -88.203.206.0/23 8717 -88.203.208.0/21 42794 -88.203.216.0/22 29580 -88.203.220.0/23 29580 -88.203.222.0/23 8717 -88.203.224.0/21 29580 -88.203.232.0/23 42794 -88.203.234.0/23 8717 -88.203.236.0/24 29580 -88.203.237.0/24 8717 -88.203.238.0/24 33825 -88.203.239.0/24 41889 -88.203.240.0/22 8717 -88.203.244.0/22 29580 -88.203.248.0/22 47453 -88.203.252.0/22 29580 -88.204.0.0/21 49980 -88.204.16.0/20 25446 -88.204.36.0/22 25446 -88.204.40.0/21 9009 -88.204.59.0/24 34573 -88.204.72.0/21 41566 -88.204.80.0/20 25446 -88.204.96.0/22 25446 -88.204.100.0/22 33892 -88.204.108.0/23 49980 -88.204.112.0/22 35411 -88.204.116.0/22 33892 -88.204.128.0/17 9198 -88.205.0.0/20 12676 -88.205.28.0/22 29014 -88.205.96.0/19 12676 -88.205.128.0/17 12389 -88.206.0.0/17 8369 -88.206.128.0/18 28854 -88.206.192.0/19 28854 -88.206.224.0/23 28854 -88.206.232.0/21 28854 -88.206.240.0/20 28854 -88.207.0.0/17 31012 -88.207.128.0/17 6661 -88.208.0.0/18 39572 -88.208.64.0/18 29208 -88.208.128.0/18 12355 -88.208.192.0/18 8560 -88.209.0.0/18 16316 -88.209.64.0/18 6758 -88.209.128.0/24 30815 -88.209.191.0/24 30815 -88.209.192.0/19 42864 -88.209.224.0/20 42864 -88.209.240.0/21 42864 -88.209.248.0/23 42864 -88.209.250.0/23 47169 -88.209.252.0/22 42864 -88.210.0.0/20 25308 -88.210.16.0/21 25308 -88.210.24.0/22 34139 -88.210.28.0/24 25308 -88.210.29.0/24 205784 -88.210.30.0/23 25308 -88.210.32.0/23 34139 -88.210.34.0/24 25308 -88.210.35.0/24 60716 -88.210.36.0/22 25308 -88.210.40.0/23 25308 -88.210.42.0/24 56806 -88.210.43.0/24 25308 -88.210.44.0/22 25308 -88.210.48.0/22 25308 -88.210.52.0/22 48371 -88.210.56.0/24 25308 -88.210.57.0/24 56806 -88.210.58.0/23 34139 -88.210.60.0/22 25308 -88.210.64.0/18 2860 -88.210.128.0/18 39356 -88.210.192.0/18 20771 -88.211.0.0/18 39633 -88.211.64.0/18 35575 -88.211.128.0/18 8608 -88.211.192.0/18 24867 -88.212.0.0/18 42841 -88.212.64.0/18 28717 -88.212.128.0/20 200876 -88.212.144.0/24 199485 -88.212.145.0/24 198435 -88.212.146.0/23 199792 -88.212.152.0/23 198435 -88.212.154.0/23 199792 -88.212.156.0/22 61369 -88.212.160.0/22 200876 -88.212.164.0/22 56329 -88.212.168.0/21 56329 -88.212.176.0/21 56329 -88.212.184.0/22 56329 -88.212.188.0/24 34977 -88.212.190.0/24 34977 -88.212.192.0/19 39134 -88.212.224.0/22 39134 -88.212.228.0/24 203153 -88.212.230.0/23 39134 -88.212.232.0/21 7979 -88.212.240.0/20 7979 -88.213.0.0/17 34397 -88.213.128.0/18 35518 -88.213.192.0/19 16154 -88.213.224.0/19 8399 -88.214.0.0/22 51765 -88.214.4.0/22 15576 -88.214.8.0/22 6876 -88.214.16.0/23 209277 -88.214.19.0/24 209277 -88.214.20.0/22 8100 -88.214.24.0/23 12586 -88.214.26.0/24 201912 -88.214.27.0/24 209272 -88.214.28.0/22 38913 -88.214.32.0/22 209805 -88.214.40.0/24 209275 -88.214.41.0/24 34984 -88.214.43.0/24 51559 -88.214.44.0/22 31263 -88.214.48.0/22 49392 -88.214.52.0/22 40676 -88.214.56.0/23 197071 -88.214.58.0/24 197071 -88.214.59.0/24 40676 -88.214.60.0/22 47959 -88.214.64.0/18 21497 -88.214.128.0/18 42863 -88.214.192.0/20 46636 -88.214.224.0/22 46636 -88.214.228.0/23 46636 -88.214.230.0/23 12695 -88.214.232.0/22 46636 -88.214.236.0/22 12695 -88.214.240.0/20 46636 -88.215.0.0/18 31655 -88.215.64.0/18 35244 -88.215.128.0/19 12683 -88.215.160.0/20 12683 -88.215.176.0/22 12683 -88.215.180.0/23 12683 -88.215.182.0/24 12389 -88.215.183.0/24 12683 -88.215.184.0/23 12683 -88.215.186.0/24 12389 -88.215.187.0/24 12683 -88.215.188.0/22 12683 -88.215.192.0/18 8520 -88.216.0.0/19 33922 -88.216.32.0/20 33922 -88.216.48.0/21 51388 -88.216.56.0/21 21412 -88.216.64.0/22 21412 -88.216.68.0/22 33922 -88.216.72.0/21 33922 -88.216.80.0/21 33922 -88.216.88.0/23 35441 -88.216.90.0/23 33922 -88.216.92.0/22 33922 -88.216.96.0/19 33922 -88.216.128.0/21 33922 -88.216.136.0/23 33922 -88.216.138.0/23 8764 -88.216.140.0/22 8764 -88.216.144.0/24 200344 -88.216.145.0/24 33922 -88.216.146.0/24 47341 -88.216.147.0/24 33922 -88.216.148.0/22 33922 -88.216.152.0/21 33922 -88.216.160.0/19 33922 -88.216.192.0/18 33922 -88.217.0.0/16 8767 -88.218.0.0/22 35505 -88.218.4.0/22 200023 -88.218.8.0/22 209521 -88.218.12.0/22 57809 -88.218.16.0/24 50673 -88.218.20.0/22 51546 -88.218.28.0/24 50673 -88.218.32.0/22 39144 -88.218.36.0/24 206704 -88.218.37.0/24 133850 -88.218.48.0/22 43333 -88.218.52.0/22 201814 -88.218.56.0/22 20655 -88.218.64.0/24 34665 -88.218.65.0/24 46844 -88.218.66.0/23 46844 -88.218.68.0/22 20655 -88.218.72.0/22 34665 -88.218.76.0/22 43659 -88.218.80.0/24 33657 -88.218.81.0/24 393559 -88.218.82.0/23 393559 -88.218.84.0/22 42184 -88.218.96.0/22 198545 -88.218.100.0/22 9009 -88.218.104.0/22 9009 -88.218.108.0/22 60235 -88.218.113.0/24 58001 -88.218.114.0/23 58001 -88.218.116.0/22 209622 -88.218.120.0/22 39391 -88.218.124.0/23 209725 -88.218.128.0/23 42807 -88.218.132.0/22 50673 -88.218.136.0/22 60733 -88.218.140.0/22 209685 -88.218.144.0/22 133115 -88.218.148.0/22 209723 -88.218.152.0/22 20559 -88.218.156.0/22 199312 -88.218.160.0/22 34953 -88.218.164.0/22 8764 -88.218.172.0/22 59682 -88.218.180.0/22 204197 -88.218.184.0/22 20655 -88.218.188.0/22 56485 -88.218.192.0/22 209484 -88.218.196.0/22 9009 -88.218.200.0/22 35913 -88.218.204.0/22 210025 -88.218.208.0/22 207253 -88.218.212.0/22 48642 -88.218.216.0/22 208861 -88.218.220.0/24 209472 -88.218.224.0/22 31400 -88.218.232.0/22 6866 -88.218.236.0/23 57129 -88.218.238.0/24 57129 -88.218.239.0/24 9009 -88.218.240.0/22 56630 -88.218.248.0/22 58269 -88.218.252.0/22 205679 -88.219.0.0/16 39005 -88.220.0.0/19 20804 -88.220.32.0/21 20804 -88.220.40.0/22 20804 -88.220.44.0/24 20804 -88.220.45.0/24 207156 -88.220.46.0/23 20804 -88.220.48.0/21 20804 -88.220.56.0/24 199715 -88.220.57.0/24 20804 -88.220.58.0/23 20804 -88.220.60.0/23 20804 -88.220.62.0/23 203389 -88.220.64.0/22 20804 -88.220.68.0/23 20804 -88.220.70.0/24 20804 -88.220.71.0/24 206880 -88.220.72.0/22 20804 -88.220.76.0/24 20804 -88.220.77.0/24 197136 -88.220.78.0/23 20804 -88.220.80.0/23 20804 -88.220.82.0/23 201904 -88.220.84.0/24 204301 -88.220.85.0/24 197136 -88.220.86.0/23 60468 -88.220.88.0/22 20804 -88.220.92.0/24 34635 -88.220.93.0/24 20804 -88.220.94.0/24 205355 -88.220.95.0/24 20804 -88.220.96.0/23 203389 -88.220.98.0/23 196928 -88.220.100.0/22 203389 -88.220.104.0/22 20804 -88.220.108.0/22 199715 -88.220.112.0/24 43372 -88.220.113.0/24 20804 -88.220.114.0/23 20804 -88.220.116.0/23 20804 -88.220.118.0/23 207735 -88.220.120.0/22 20804 -88.220.124.0/24 20804 -88.220.125.0/24 198408 -88.220.126.0/23 20804 -88.220.128.0/23 20804 -88.220.130.0/23 43372 -88.220.132.0/23 20804 -88.220.134.0/23 43372 -88.220.136.0/23 199715 -88.220.138.0/23 20804 -88.220.140.0/22 20804 -88.220.144.0/22 60468 -88.220.148.0/22 20804 -88.220.152.0/23 20804 -88.220.154.0/24 201113 -88.220.155.0/24 20804 -88.220.156.0/22 20804 -88.220.160.0/24 20804 -88.220.161.0/24 43372 -88.220.162.0/23 199715 -88.220.164.0/22 20804 -88.220.168.0/23 43073 -88.220.170.0/23 20804 -88.220.172.0/22 20804 -88.220.176.0/22 20804 -88.220.180.0/23 20804 -88.220.182.0/23 196928 -88.220.184.0/21 20804 -88.220.192.0/18 20804 -88.221.0.0/21 16625 -88.221.8.0/22 16625 -88.221.12.0/22 20940 -88.221.16.0/22 16625 -88.221.20.0/22 20940 -88.221.24.0/23 20940 -88.221.26.0/24 34164 -88.221.27.0/24 20940 -88.221.28.0/22 16625 -88.221.32.0/22 34164 -88.221.36.0/22 20940 -88.221.40.0/21 16625 -88.221.48.0/22 20940 -88.221.52.0/23 20940 -88.221.54.0/23 34164 -88.221.56.0/22 34164 -88.221.60.0/22 16625 -88.221.64.0/22 8657 -88.221.68.0/22 16625 -88.221.72.0/21 16625 -88.221.80.0/24 34164 -88.221.81.0/24 21342 -88.221.82.0/24 31108 -88.221.83.0/24 20940 -88.221.84.0/24 20940 -88.221.85.0/24 34164 -88.221.86.0/24 31108 -88.221.87.0/24 20940 -88.221.88.0/24 20940 -88.221.89.0/24 34164 -88.221.90.0/24 20940 -88.221.91.0/24 34164 -88.221.92.0/24 9329 -88.221.93.0/24 34164 -88.221.94.0/23 20940 -88.221.96.0/22 20940 -88.221.100.0/22 16625 -88.221.104.0/22 12956 -88.221.108.0/23 34164 -88.221.110.0/23 20940 -88.221.112.0/21 20940 -88.221.120.0/21 16625 -88.221.128.0/22 5511 -88.221.132.0/22 20940 -88.221.136.0/21 16625 -88.221.144.0/24 20940 -88.221.145.0/24 34164 -88.221.146.0/23 34164 -88.221.148.0/22 34164 -88.221.152.0/21 1680 -88.221.160.0/24 34164 -88.221.161.0/24 20940 -88.221.162.0/23 21342 -88.221.164.0/22 20940 -88.221.168.0/21 16625 -88.221.176.0/21 16625 -88.221.184.0/21 20940 -88.221.192.0/22 20940 -88.221.196.0/23 20940 -88.221.198.0/23 34164 -88.221.200.0/21 16625 -88.221.208.0/23 12222 -88.221.210.0/23 20940 -88.221.212.0/24 34164 -88.221.213.0/24 20940 -88.221.214.0/24 20940 -88.221.215.0/24 34164 -88.221.216.0/24 20940 -88.221.217.0/24 8966 -88.221.218.0/24 20940 -88.221.219.0/24 34164 -88.221.220.0/22 20940 -88.221.224.0/21 16625 -88.221.232.0/23 16625 -88.221.234.0/24 34164 -88.221.235.0/24 20940 -88.221.236.0/22 16625 -88.221.240.0/21 20940 -88.221.248.0/22 20940 -88.221.252.0/24 34164 -88.221.253.0/24 20940 -88.221.254.0/23 20940 -88.222.0.0/17 39354 -88.222.128.0/18 39354 -88.222.192.0/20 39354 -88.222.208.0/20 24852 -88.222.224.0/20 39354 -88.222.240.0/21 24852 -88.222.248.0/22 24877 -88.222.252.0/22 24852 -88.223.0.0/18 24852 -88.223.64.0/20 39354 -88.223.80.0/20 24852 -88.223.96.0/22 24852 -88.223.100.0/22 24877 -88.223.104.0/21 24852 -88.223.112.0/20 24852 -88.223.128.0/22 24852 -88.223.132.0/22 24877 -88.223.136.0/23 24877 -88.223.138.0/24 24852 -88.223.139.0/24 24877 -88.223.140.0/22 24877 -88.223.144.0/20 24852 -88.223.160.0/19 24852 -88.223.192.0/18 24852 -88.224.0.0/19 47331 -88.224.32.0/24 9121 -88.224.33.0/24 47331 -88.224.34.0/23 9121 -88.224.36.0/24 47331 -88.224.37.0/24 9121 -88.224.38.0/23 47331 -88.224.40.0/22 9121 -88.224.44.0/23 9121 -88.224.46.0/24 47331 -88.224.47.0/24 9121 -88.224.48.0/21 47331 -88.224.56.0/21 9121 -88.224.64.0/23 47331 -88.224.66.0/24 9121 -88.224.67.0/24 47331 -88.224.68.0/22 9121 -88.224.72.0/24 47331 -88.224.73.0/24 9121 -88.224.74.0/24 9121 -88.224.75.0/24 47331 -88.224.76.0/22 47331 -88.224.80.0/23 9121 -88.224.82.0/24 9121 -88.224.83.0/24 47331 -88.224.84.0/24 9121 -88.224.85.0/24 47331 -88.224.86.0/23 47331 -88.224.88.0/22 9121 -88.224.92.0/24 47331 -88.224.93.0/24 9121 -88.224.94.0/23 47331 -88.224.96.0/21 47331 -88.224.104.0/23 47331 -88.224.106.0/24 47331 -88.224.107.0/24 9121 -88.224.108.0/22 47331 -88.224.112.0/24 9121 -88.224.113.0/24 47331 -88.224.114.0/23 47331 -88.224.116.0/24 9121 -88.224.117.0/24 47331 -88.224.118.0/23 47331 -88.224.120.0/22 47331 -88.224.124.0/22 9121 -88.224.128.0/22 47331 -88.224.132.0/22 9121 -88.224.136.0/21 9121 -88.224.144.0/20 47331 -88.224.160.0/20 47331 -88.224.176.0/23 9121 -88.224.178.0/23 47331 -88.224.180.0/22 9121 -88.224.184.0/23 47331 -88.224.186.0/24 47331 -88.224.187.0/24 9121 -88.224.188.0/23 9121 -88.224.190.0/24 9121 -88.224.191.0/24 47331 -88.224.192.0/21 47331 -88.224.200.0/23 47331 -88.224.202.0/24 47331 -88.224.203.0/24 9121 -88.224.204.0/22 47331 -88.224.208.0/21 47331 -88.224.216.0/24 47331 -88.224.217.0/24 9121 -88.224.218.0/24 9121 -88.224.219.0/24 47331 -88.224.220.0/22 9121 -88.224.224.0/22 9121 -88.224.228.0/22 47331 -88.224.232.0/21 47331 -88.224.240.0/21 47331 -88.224.248.0/21 9121 -88.225.0.0/23 47331 -88.225.2.0/23 9121 -88.225.4.0/22 9121 -88.225.8.0/23 9121 -88.225.10.0/24 47331 -88.225.11.0/24 9121 -88.225.12.0/22 9121 -88.225.16.0/21 9121 -88.225.24.0/24 9121 -88.225.25.0/24 47331 -88.225.26.0/23 9121 -88.225.28.0/22 9121 -88.225.32.0/24 9121 -88.225.33.0/24 47331 -88.225.34.0/23 47331 -88.225.36.0/22 9121 -88.225.40.0/22 9121 -88.225.44.0/23 9121 -88.225.46.0/24 9121 -88.225.47.0/24 47331 -88.225.48.0/20 9121 -88.225.64.0/24 47331 -88.225.65.0/24 9121 -88.225.66.0/23 9121 -88.225.68.0/22 9121 -88.225.72.0/21 9121 -88.225.80.0/21 9121 -88.225.88.0/24 9121 -88.225.89.0/24 47331 -88.225.90.0/23 9121 -88.225.92.0/22 9121 -88.225.96.0/20 9121 -88.225.112.0/21 9121 -88.225.120.0/22 9121 -88.225.124.0/24 9121 -88.225.125.0/24 47331 -88.225.126.0/23 47331 -88.225.128.0/21 9121 -88.225.136.0/24 9121 -88.225.137.0/24 47331 -88.225.138.0/23 9121 -88.225.140.0/22 9121 -88.225.144.0/22 47331 -88.225.148.0/22 9121 -88.225.152.0/24 9121 -88.225.153.0/24 47331 -88.225.154.0/23 9121 -88.225.156.0/22 9121 -88.225.160.0/22 9121 -88.225.164.0/23 9121 -88.225.166.0/24 9121 -88.225.167.0/24 47331 -88.225.168.0/23 47331 -88.225.170.0/23 9121 -88.225.172.0/22 9121 -88.225.176.0/20 9121 -88.225.192.0/20 9121 -88.225.208.0/22 9121 -88.225.212.0/22 47331 -88.225.216.0/21 47331 -88.225.224.0/21 47331 -88.225.232.0/22 47331 -88.225.236.0/24 47331 -88.225.237.0/24 9121 -88.225.238.0/23 47331 -88.225.240.0/21 47331 -88.225.248.0/24 9121 -88.225.249.0/24 47331 -88.225.250.0/23 47331 -88.225.252.0/22 47331 -88.226.0.0/23 47331 -88.226.2.0/24 47331 -88.226.3.0/24 9121 -88.226.4.0/23 9121 -88.226.6.0/23 47331 -88.226.8.0/22 47331 -88.226.12.0/23 47331 -88.226.14.0/23 9121 -88.226.16.0/24 9121 -88.226.17.0/24 47331 -88.226.18.0/23 47331 -88.226.20.0/22 47331 -88.226.24.0/21 47331 -88.226.32.0/22 9121 -88.226.36.0/22 47331 -88.226.40.0/21 47331 -88.226.48.0/22 9121 -88.226.52.0/22 47331 -88.226.56.0/21 47331 -88.226.64.0/20 47331 -88.226.80.0/23 9121 -88.226.82.0/23 47331 -88.226.84.0/24 47331 -88.226.85.0/24 9121 -88.226.86.0/23 47331 -88.226.88.0/21 9121 -88.226.96.0/23 47331 -88.226.98.0/24 47331 -88.226.99.0/24 9121 -88.226.100.0/24 9121 -88.226.101.0/24 47331 -88.226.102.0/24 47331 -88.226.103.0/24 9121 -88.226.104.0/21 47331 -88.226.112.0/24 47331 -88.226.113.0/24 9121 -88.226.114.0/23 47331 -88.226.116.0/22 47331 -88.226.120.0/22 47331 -88.226.124.0/24 47331 -88.226.125.0/24 9121 -88.226.126.0/24 47331 -88.226.127.0/24 9121 -88.226.128.0/19 9121 -88.226.160.0/24 47331 -88.226.161.0/24 9121 -88.226.162.0/23 47331 -88.226.164.0/23 9121 -88.226.166.0/23 47331 -88.226.168.0/21 47331 -88.226.176.0/24 9121 -88.226.177.0/24 47331 -88.226.178.0/23 47331 -88.226.180.0/23 47331 -88.226.182.0/23 9121 -88.226.184.0/23 9121 -88.226.186.0/23 47331 -88.226.188.0/23 47331 -88.226.190.0/24 47331 -88.226.191.0/24 9121 -88.226.192.0/19 47331 -88.226.224.0/21 9121 -88.226.232.0/22 47331 -88.226.236.0/24 9121 -88.226.237.0/24 47331 -88.226.238.0/23 9121 -88.226.240.0/23 47331 -88.226.242.0/23 9121 -88.226.244.0/23 9121 -88.226.246.0/23 47331 -88.226.248.0/21 47331 -88.227.0.0/22 9121 -88.227.4.0/23 47331 -88.227.6.0/24 9121 -88.227.7.0/24 47331 -88.227.8.0/21 9121 -88.227.16.0/20 9121 -88.227.32.0/22 47331 -88.227.36.0/23 47331 -88.227.38.0/24 9121 -88.227.39.0/24 47331 -88.227.40.0/21 47331 -88.227.48.0/22 47331 -88.227.52.0/22 9121 -88.227.56.0/21 47331 -88.227.64.0/19 47331 -88.227.96.0/20 47331 -88.227.112.0/22 47331 -88.227.116.0/24 9121 -88.227.117.0/24 47331 -88.227.118.0/23 47331 -88.227.120.0/21 47331 -88.227.128.0/19 47331 -88.227.160.0/21 47331 -88.227.168.0/23 9121 -88.227.170.0/24 9121 -88.227.171.0/24 47331 -88.227.172.0/22 9121 -88.227.176.0/22 47331 -88.227.180.0/24 9121 -88.227.181.0/24 47331 -88.227.182.0/24 9121 -88.227.183.0/24 47331 -88.227.184.0/22 47331 -88.227.188.0/23 9121 -88.227.190.0/23 47331 -88.227.192.0/19 9121 -88.227.224.0/20 9121 -88.227.240.0/21 9121 -88.227.248.0/21 47331 -88.228.0.0/20 47331 -88.228.16.0/22 47331 -88.228.20.0/24 9121 -88.228.21.0/24 47331 -88.228.22.0/24 47331 -88.228.23.0/24 9121 -88.228.24.0/21 47331 -88.228.32.0/21 9121 -88.228.40.0/21 47331 -88.228.48.0/20 9121 -88.228.64.0/19 9121 -88.228.96.0/20 9121 -88.228.112.0/21 47331 -88.228.120.0/22 9121 -88.228.124.0/22 47331 -88.228.128.0/24 47331 -88.228.129.0/24 9121 -88.228.130.0/23 47331 -88.228.132.0/24 9121 -88.228.133.0/24 47331 -88.228.134.0/23 47331 -88.228.136.0/21 47331 -88.228.144.0/24 9121 -88.228.145.0/24 47331 -88.228.146.0/23 47331 -88.228.148.0/23 9121 -88.228.150.0/23 47331 -88.228.152.0/21 9121 -88.228.160.0/23 9121 -88.228.162.0/24 9121 -88.228.163.0/24 47331 -88.228.164.0/23 47331 -88.228.166.0/24 9121 -88.228.167.0/24 47331 -88.228.168.0/23 47331 -88.228.170.0/24 9121 -88.228.171.0/24 47331 -88.228.172.0/23 47331 -88.228.174.0/24 9121 -88.228.175.0/24 47331 -88.228.176.0/24 47331 -88.228.177.0/24 9121 -88.228.178.0/23 47331 -88.228.180.0/23 47331 -88.228.182.0/24 9121 -88.228.183.0/24 47331 -88.228.184.0/24 9121 -88.228.185.0/24 47331 -88.228.186.0/24 47331 -88.228.187.0/24 9121 -88.228.188.0/24 47331 -88.228.189.0/24 9121 -88.228.190.0/24 47331 -88.228.191.0/24 9121 -88.228.192.0/24 47331 -88.228.193.0/24 9121 -88.228.194.0/24 9121 -88.228.195.0/24 47331 -88.228.196.0/22 9121 -88.228.200.0/22 47331 -88.228.204.0/23 9121 -88.228.206.0/24 47331 -88.228.207.0/24 9121 -88.228.208.0/21 9121 -88.228.216.0/23 9121 -88.228.218.0/23 47331 -88.228.220.0/24 9121 -88.228.221.0/24 47331 -88.228.222.0/23 9121 -88.228.224.0/21 47331 -88.228.232.0/22 47331 -88.228.236.0/22 9121 -88.228.240.0/24 9121 -88.228.241.0/24 47331 -88.228.242.0/23 47331 -88.228.244.0/24 47331 -88.228.245.0/24 9121 -88.228.246.0/23 47331 -88.228.248.0/22 47331 -88.228.252.0/22 9121 -88.229.0.0/19 47331 -88.229.32.0/22 47331 -88.229.36.0/24 9121 -88.229.37.0/24 47331 -88.229.38.0/24 9121 -88.229.39.0/24 47331 -88.229.40.0/21 47331 -88.229.48.0/20 47331 -88.229.64.0/24 9121 -88.229.65.0/24 47331 -88.229.66.0/23 47331 -88.229.68.0/22 47331 -88.229.72.0/22 9121 -88.229.76.0/22 47331 -88.229.80.0/24 47331 -88.229.81.0/24 9121 -88.229.82.0/24 47331 -88.229.83.0/24 9121 -88.229.84.0/24 47331 -88.229.85.0/24 9121 -88.229.86.0/24 47331 -88.229.87.0/24 9121 -88.229.88.0/24 9121 -88.229.89.0/24 47331 -88.229.90.0/24 47331 -88.229.91.0/24 9121 -88.229.92.0/22 47331 -88.229.96.0/20 9121 -88.229.112.0/21 9121 -88.229.120.0/21 47331 -88.229.128.0/19 47331 -88.229.160.0/22 47331 -88.229.164.0/23 47331 -88.229.166.0/23 9121 -88.229.168.0/21 47331 -88.229.176.0/21 47331 -88.229.184.0/21 9121 -88.229.192.0/19 47331 -88.229.224.0/21 47331 -88.229.232.0/22 47331 -88.229.236.0/24 9121 -88.229.237.0/24 47331 -88.229.238.0/23 47331 -88.229.240.0/22 47331 -88.229.244.0/23 9121 -88.229.246.0/23 47331 -88.229.248.0/21 47331 -88.230.0.0/19 9121 -88.230.32.0/20 9121 -88.230.48.0/21 47331 -88.230.56.0/21 9121 -88.230.64.0/18 47331 -88.230.128.0/18 47331 -88.230.192.0/19 9121 -88.230.224.0/19 47331 -88.231.0.0/20 9121 -88.231.16.0/23 47331 -88.231.18.0/24 47331 -88.231.19.0/24 9121 -88.231.20.0/23 9121 -88.231.22.0/24 9121 -88.231.23.0/24 47331 -88.231.24.0/23 47331 -88.231.26.0/24 47331 -88.231.27.0/24 9121 -88.231.28.0/22 47331 -88.231.32.0/21 47331 -88.231.40.0/24 9121 -88.231.41.0/24 47331 -88.231.42.0/23 47331 -88.231.44.0/24 9121 -88.231.45.0/24 47331 -88.231.46.0/23 47331 -88.231.48.0/21 47331 -88.231.56.0/21 9121 -88.231.64.0/18 47331 -88.231.128.0/21 47331 -88.231.136.0/22 47331 -88.231.140.0/24 9121 -88.231.141.0/24 47331 -88.231.142.0/23 47331 -88.231.144.0/23 47331 -88.231.146.0/24 47331 -88.231.147.0/24 9121 -88.231.148.0/22 47331 -88.231.152.0/23 9121 -88.231.154.0/24 47331 -88.231.155.0/24 9121 -88.231.156.0/24 47331 -88.231.157.0/24 9121 -88.231.158.0/23 47331 -88.231.160.0/19 47331 -88.231.192.0/21 9121 -88.231.200.0/22 47331 -88.231.204.0/23 9121 -88.231.206.0/24 47331 -88.231.207.0/24 9121 -88.231.208.0/20 9121 -88.231.224.0/20 9121 -88.231.240.0/24 47331 -88.231.241.0/24 9121 -88.231.242.0/24 47331 -88.231.243.0/24 9121 -88.231.244.0/24 47331 -88.231.245.0/24 9121 -88.231.246.0/24 47331 -88.231.247.0/24 9121 -88.231.248.0/21 47331 -88.232.0.0/18 47331 -88.232.64.0/19 47331 -88.232.96.0/21 47331 -88.232.104.0/22 47331 -88.232.108.0/23 47331 -88.232.110.0/23 9121 -88.232.112.0/21 47331 -88.232.120.0/22 9121 -88.232.124.0/24 47331 -88.232.125.0/24 9121 -88.232.126.0/23 47331 -88.232.128.0/20 9121 -88.232.144.0/20 47331 -88.232.160.0/22 47331 -88.232.164.0/22 9121 -88.232.168.0/21 47331 -88.232.176.0/24 9121 -88.232.177.0/24 47331 -88.232.178.0/23 47331 -88.232.180.0/22 9121 -88.232.184.0/23 9121 -88.232.186.0/23 47331 -88.232.188.0/23 47331 -88.232.190.0/23 9121 -88.232.192.0/20 47331 -88.232.208.0/21 47331 -88.232.216.0/23 9121 -88.232.218.0/23 47331 -88.232.220.0/22 47331 -88.232.224.0/20 47331 -88.232.240.0/21 47331 -88.232.248.0/22 47331 -88.232.252.0/22 9121 -88.233.0.0/18 47331 -88.233.64.0/19 47331 -88.233.96.0/21 47331 -88.233.104.0/21 9121 -88.233.112.0/23 9121 -88.233.114.0/24 47331 -88.233.115.0/24 9121 -88.233.116.0/24 47331 -88.233.117.0/24 9121 -88.233.118.0/23 47331 -88.233.120.0/22 9121 -88.233.124.0/22 47331 -88.233.128.0/18 47331 -88.233.192.0/24 47331 -88.233.193.0/24 9121 -88.233.194.0/23 47331 -88.233.196.0/22 47331 -88.233.200.0/23 47331 -88.233.202.0/24 9121 -88.233.203.0/24 47331 -88.233.204.0/24 47331 -88.233.205.0/24 9121 -88.233.206.0/23 47331 -88.233.208.0/22 47331 -88.233.212.0/23 9121 -88.233.214.0/24 9121 -88.233.215.0/24 47331 -88.233.216.0/22 47331 -88.233.220.0/23 47331 -88.233.222.0/24 47331 -88.233.223.0/24 9121 -88.233.224.0/24 9121 -88.233.225.0/24 47331 -88.233.226.0/24 47331 -88.233.227.0/24 9121 -88.233.228.0/24 47331 -88.233.229.0/24 9121 -88.233.230.0/23 47331 -88.233.232.0/23 47331 -88.233.234.0/24 47331 -88.233.235.0/24 9121 -88.233.236.0/22 47331 -88.233.240.0/21 47331 -88.233.248.0/24 47331 -88.233.249.0/24 9121 -88.233.250.0/24 9121 -88.233.251.0/24 47331 -88.233.252.0/24 9121 -88.233.253.0/24 47331 -88.233.254.0/24 9121 -88.233.255.0/24 47331 -88.234.0.0/18 47331 -88.234.64.0/22 47331 -88.234.68.0/24 47331 -88.234.69.0/24 9121 -88.234.70.0/23 47331 -88.234.72.0/24 9121 -88.234.73.0/24 47331 -88.234.74.0/23 47331 -88.234.76.0/23 47331 -88.234.78.0/24 47331 -88.234.79.0/24 9121 -88.234.80.0/20 9121 -88.234.96.0/20 47331 -88.234.112.0/22 47331 -88.234.116.0/23 47331 -88.234.118.0/23 9121 -88.234.120.0/21 47331 -88.234.128.0/22 47331 -88.234.132.0/24 47331 -88.234.133.0/24 9121 -88.234.134.0/23 47331 -88.234.136.0/24 9121 -88.234.137.0/24 47331 -88.234.138.0/23 47331 -88.234.140.0/23 47331 -88.234.142.0/24 9121 -88.234.143.0/24 47331 -88.234.144.0/24 9121 -88.234.145.0/24 47331 -88.234.146.0/23 47331 -88.234.148.0/24 47331 -88.234.149.0/24 9121 -88.234.150.0/23 47331 -88.234.152.0/24 47331 -88.234.153.0/24 9121 -88.234.154.0/23 47331 -88.234.156.0/24 47331 -88.234.157.0/24 9121 -88.234.158.0/23 47331 -88.234.160.0/22 47331 -88.234.164.0/23 47331 -88.234.166.0/23 9121 -88.234.168.0/22 47331 -88.234.172.0/24 47331 -88.234.173.0/24 9121 -88.234.174.0/23 47331 -88.234.176.0/23 47331 -88.234.178.0/24 9121 -88.234.179.0/24 47331 -88.234.180.0/23 47331 -88.234.182.0/24 47331 -88.234.183.0/24 9121 -88.234.184.0/23 47331 -88.234.186.0/24 9121 -88.234.187.0/24 47331 -88.234.188.0/23 47331 -88.234.190.0/23 9121 -88.234.192.0/19 47331 -88.234.224.0/19 9121 -88.235.0.0/19 47331 -88.235.32.0/20 9121 -88.235.48.0/20 47331 -88.235.64.0/18 47331 -88.235.128.0/23 47331 -88.235.130.0/23 9121 -88.235.132.0/23 47331 -88.235.134.0/24 9121 -88.235.135.0/24 47331 -88.235.136.0/21 47331 -88.235.144.0/24 9121 -88.235.145.0/24 47331 -88.235.146.0/24 9121 -88.235.147.0/24 47331 -88.235.148.0/22 47331 -88.235.152.0/23 47331 -88.235.154.0/24 9121 -88.235.155.0/24 47331 -88.235.156.0/24 9121 -88.235.157.0/24 47331 -88.235.158.0/23 9121 -88.235.160.0/19 47331 -88.235.192.0/19 47331 -88.235.224.0/20 47331 -88.235.240.0/21 47331 -88.235.248.0/21 9121 -88.236.0.0/21 47331 -88.236.8.0/23 9121 -88.236.10.0/24 47331 -88.236.11.0/24 9121 -88.236.12.0/23 47331 -88.236.14.0/24 9121 -88.236.15.0/24 47331 -88.236.16.0/21 47331 -88.236.24.0/24 9121 -88.236.25.0/24 47331 -88.236.26.0/24 47331 -88.236.27.0/24 9121 -88.236.28.0/24 47331 -88.236.29.0/24 9121 -88.236.30.0/24 47331 -88.236.31.0/24 9121 -88.236.32.0/22 47331 -88.236.36.0/24 47331 -88.236.37.0/24 9121 -88.236.38.0/23 47331 -88.236.40.0/23 9121 -88.236.42.0/23 47331 -88.236.44.0/23 47331 -88.236.46.0/24 9121 -88.236.47.0/24 47331 -88.236.48.0/23 47331 -88.236.50.0/24 47331 -88.236.51.0/24 9121 -88.236.52.0/22 47331 -88.236.56.0/24 47331 -88.236.57.0/24 9121 -88.236.58.0/23 47331 -88.236.60.0/24 9121 -88.236.61.0/24 47331 -88.236.62.0/23 47331 -88.236.64.0/21 47331 -88.236.72.0/21 9121 -88.236.80.0/20 9121 -88.236.96.0/19 9121 -88.236.128.0/21 47331 -88.236.136.0/22 47331 -88.236.140.0/22 9121 -88.236.144.0/24 9121 -88.236.145.0/24 47331 -88.236.146.0/23 47331 -88.236.148.0/24 47331 -88.236.149.0/24 9121 -88.236.150.0/23 47331 -88.236.152.0/24 47331 -88.236.153.0/24 9121 -88.236.154.0/24 9121 -88.236.155.0/24 47331 -88.236.156.0/23 47331 -88.236.158.0/24 47331 -88.236.159.0/24 9121 -88.236.160.0/19 47331 -88.236.192.0/21 47331 -88.236.200.0/23 47331 -88.236.202.0/24 9121 -88.236.203.0/24 47331 -88.236.204.0/22 47331 -88.236.208.0/23 47331 -88.236.210.0/24 9121 -88.236.211.0/24 47331 -88.236.212.0/22 9121 -88.236.216.0/21 9121 -88.236.224.0/20 47331 -88.236.240.0/21 47331 -88.236.248.0/23 9121 -88.236.250.0/24 47331 -88.236.251.0/24 9121 -88.236.252.0/22 47331 -88.237.0.0/22 47331 -88.237.4.0/24 9121 -88.237.5.0/24 47331 -88.237.6.0/23 47331 -88.237.8.0/24 47331 -88.237.9.0/24 9121 -88.237.10.0/23 47331 -88.237.12.0/23 47331 -88.237.14.0/24 9121 -88.237.15.0/24 47331 -88.237.16.0/23 47331 -88.237.18.0/24 47331 -88.237.19.0/24 9121 -88.237.20.0/23 47331 -88.237.22.0/24 47331 -88.237.23.0/24 9121 -88.237.24.0/22 47331 -88.237.28.0/23 47331 -88.237.30.0/24 47331 -88.237.31.0/24 9121 -88.237.32.0/24 47331 -88.237.33.0/24 9121 -88.237.34.0/24 9121 -88.237.35.0/24 47331 -88.237.36.0/24 9121 -88.237.37.0/24 47331 -88.237.38.0/23 47331 -88.237.40.0/23 47331 -88.237.42.0/24 9121 -88.237.43.0/24 47331 -88.237.44.0/22 47331 -88.237.48.0/23 9121 -88.237.50.0/23 47331 -88.237.52.0/23 9121 -88.237.54.0/23 47331 -88.237.56.0/23 47331 -88.237.58.0/24 47331 -88.237.59.0/24 9121 -88.237.60.0/24 47331 -88.237.61.0/24 9121 -88.237.62.0/24 47331 -88.237.63.0/24 9121 -88.237.64.0/24 9121 -88.237.65.0/24 47331 -88.237.66.0/24 9121 -88.237.67.0/24 47331 -88.237.68.0/23 47331 -88.237.70.0/24 47331 -88.237.71.0/24 9121 -88.237.72.0/24 47331 -88.237.73.0/24 9121 -88.237.74.0/23 47331 -88.237.76.0/24 47331 -88.237.77.0/24 9121 -88.237.78.0/24 9121 -88.237.79.0/24 47331 -88.237.80.0/21 47331 -88.237.88.0/23 47331 -88.237.90.0/24 9121 -88.237.91.0/24 47331 -88.237.92.0/23 9121 -88.237.94.0/24 47331 -88.237.95.0/24 9121 -88.237.96.0/24 9121 -88.237.97.0/24 47331 -88.237.98.0/24 9121 -88.237.99.0/24 47331 -88.237.100.0/24 9121 -88.237.101.0/24 47331 -88.237.102.0/24 9121 -88.237.103.0/24 47331 -88.237.104.0/24 9121 -88.237.105.0/24 47331 -88.237.106.0/23 9121 -88.237.108.0/23 47331 -88.237.110.0/24 9121 -88.237.111.0/24 47331 -88.237.112.0/24 47331 -88.237.113.0/24 9121 -88.237.114.0/24 47331 -88.237.115.0/24 9121 -88.237.116.0/22 47331 -88.237.120.0/23 47331 -88.237.122.0/24 9121 -88.237.123.0/24 47331 -88.237.124.0/24 47331 -88.237.125.0/24 9121 -88.237.126.0/23 47331 -88.237.128.0/24 9121 -88.237.129.0/24 47331 -88.237.130.0/24 47331 -88.237.131.0/24 9121 -88.237.132.0/22 47331 -88.237.136.0/24 9121 -88.237.137.0/24 47331 -88.237.138.0/24 47331 -88.237.139.0/24 9121 -88.237.140.0/22 47331 -88.237.144.0/24 47331 -88.237.145.0/24 9121 -88.237.146.0/24 47331 -88.237.147.0/24 9121 -88.237.148.0/22 47331 -88.237.152.0/23 47331 -88.237.154.0/24 47331 -88.237.155.0/24 9121 -88.237.156.0/23 47331 -88.237.158.0/24 47331 -88.237.159.0/24 9121 -88.237.160.0/21 47331 -88.237.168.0/22 47331 -88.237.172.0/23 47331 -88.237.174.0/24 47331 -88.237.175.0/24 9121 -88.237.176.0/23 47331 -88.237.178.0/24 47331 -88.237.179.0/24 9121 -88.237.180.0/23 47331 -88.237.182.0/24 47331 -88.237.183.0/24 9121 -88.237.184.0/22 47331 -88.237.188.0/23 47331 -88.237.190.0/24 47331 -88.237.191.0/24 9121 -88.237.192.0/24 9121 -88.237.193.0/24 47331 -88.237.194.0/23 47331 -88.237.196.0/22 47331 -88.237.200.0/22 47331 -88.237.204.0/24 9121 -88.237.205.0/24 47331 -88.237.206.0/23 47331 -88.237.208.0/24 47331 -88.237.209.0/24 9121 -88.237.210.0/23 47331 -88.237.212.0/23 47331 -88.237.214.0/23 9121 -88.237.216.0/24 9121 -88.237.217.0/24 47331 -88.237.218.0/24 47331 -88.237.219.0/24 9121 -88.237.220.0/24 47331 -88.237.221.0/24 9121 -88.237.222.0/23 47331 -88.237.224.0/24 47331 -88.237.225.0/24 9121 -88.237.226.0/24 47331 -88.237.227.0/24 9121 -88.237.228.0/23 47331 -88.237.230.0/24 9121 -88.237.231.0/24 47331 -88.237.232.0/24 47331 -88.237.233.0/24 9121 -88.237.234.0/23 9121 -88.237.236.0/24 9121 -88.237.237.0/24 47331 -88.237.238.0/23 47331 -88.237.240.0/22 47331 -88.237.244.0/23 47331 -88.237.246.0/24 47331 -88.237.247.0/24 9121 -88.237.248.0/22 47331 -88.237.252.0/23 9121 -88.237.254.0/23 47331 -88.238.0.0/21 47331 -88.238.8.0/21 9121 -88.238.16.0/21 47331 -88.238.24.0/24 47331 -88.238.25.0/24 9121 -88.238.26.0/24 47331 -88.238.27.0/24 9121 -88.238.28.0/24 9121 -88.238.29.0/24 47331 -88.238.30.0/23 47331 -88.238.32.0/19 9121 -88.238.64.0/19 47331 -88.238.96.0/21 47331 -88.238.104.0/21 9121 -88.238.112.0/20 47331 -88.238.128.0/20 47331 -88.238.144.0/21 47331 -88.238.152.0/21 9121 -88.238.160.0/19 9121 -88.238.192.0/18 47331 -88.239.0.0/16 9121 -88.240.0.0/23 47331 -88.240.2.0/24 47331 -88.240.3.0/24 9121 -88.240.4.0/24 47331 -88.240.5.0/24 9121 -88.240.6.0/24 47331 -88.240.7.0/24 9121 -88.240.8.0/22 47331 -88.240.12.0/24 47331 -88.240.13.0/24 9121 -88.240.14.0/23 47331 -88.240.16.0/23 47331 -88.240.18.0/24 47331 -88.240.19.0/24 9121 -88.240.20.0/24 47331 -88.240.21.0/24 9121 -88.240.22.0/24 9121 -88.240.23.0/24 47331 -88.240.24.0/22 47331 -88.240.28.0/24 47331 -88.240.29.0/24 9121 -88.240.30.0/23 47331 -88.240.32.0/23 47331 -88.240.34.0/24 9121 -88.240.35.0/24 47331 -88.240.36.0/24 9121 -88.240.37.0/24 47331 -88.240.38.0/24 9121 -88.240.39.0/24 47331 -88.240.40.0/24 47331 -88.240.41.0/24 9121 -88.240.42.0/24 47331 -88.240.43.0/24 9121 -88.240.44.0/23 47331 -88.240.46.0/23 9121 -88.240.48.0/24 47331 -88.240.49.0/24 9121 -88.240.50.0/23 9121 -88.240.52.0/23 47331 -88.240.54.0/24 47331 -88.240.55.0/24 9121 -88.240.56.0/22 47331 -88.240.60.0/23 9121 -88.240.62.0/24 47331 -88.240.63.0/24 9121 -88.240.64.0/20 47331 -88.240.80.0/21 9121 -88.240.88.0/21 47331 -88.240.96.0/20 9121 -88.240.112.0/21 9121 -88.240.120.0/21 47331 -88.240.128.0/18 9121 -88.240.192.0/19 47331 -88.240.224.0/22 9121 -88.240.228.0/24 47331 -88.240.229.0/24 9121 -88.240.230.0/23 9121 -88.240.232.0/24 9121 -88.240.233.0/24 47331 -88.240.234.0/23 47331 -88.240.236.0/24 9121 -88.240.237.0/24 47331 -88.240.238.0/24 9121 -88.240.239.0/24 47331 -88.240.240.0/21 9121 -88.240.248.0/22 9121 -88.240.252.0/23 47331 -88.240.254.0/24 47331 -88.240.255.0/24 9121 -88.241.0.0/22 47331 -88.241.4.0/23 47331 -88.241.6.0/23 9121 -88.241.8.0/23 47331 -88.241.10.0/24 9121 -88.241.11.0/24 47331 -88.241.12.0/23 47331 -88.241.14.0/24 47331 -88.241.15.0/24 9121 -88.241.16.0/23 47331 -88.241.18.0/24 47331 -88.241.19.0/24 9121 -88.241.20.0/22 47331 -88.241.24.0/24 47331 -88.241.25.0/24 9121 -88.241.26.0/23 47331 -88.241.28.0/23 47331 -88.241.30.0/24 47331 -88.241.31.0/24 9121 -88.241.32.0/20 47331 -88.241.48.0/21 47331 -88.241.56.0/22 9121 -88.241.60.0/22 47331 -88.241.64.0/20 47331 -88.241.80.0/21 47331 -88.241.88.0/21 9121 -88.241.96.0/20 47331 -88.241.112.0/22 47331 -88.241.116.0/24 47331 -88.241.117.0/24 9121 -88.241.118.0/23 9121 -88.241.120.0/21 47331 -88.241.128.0/21 47331 -88.241.136.0/23 9121 -88.241.138.0/24 47331 -88.241.139.0/24 9121 -88.241.140.0/22 9121 -88.241.144.0/20 9121 -88.241.160.0/19 9121 -88.241.192.0/18 9121 -88.242.0.0/20 47331 -88.242.16.0/23 47331 -88.242.18.0/24 47331 -88.242.19.0/24 9121 -88.242.20.0/23 47331 -88.242.22.0/24 9121 -88.242.23.0/24 47331 -88.242.24.0/24 9121 -88.242.25.0/24 47331 -88.242.26.0/24 47331 -88.242.27.0/24 9121 -88.242.28.0/24 47331 -88.242.29.0/24 9121 -88.242.30.0/23 47331 -88.242.32.0/21 47331 -88.242.40.0/21 9121 -88.242.48.0/22 9121 -88.242.52.0/23 9121 -88.242.54.0/24 9121 -88.242.55.0/24 47331 -88.242.56.0/21 47331 -88.242.64.0/19 9121 -88.242.96.0/21 47331 -88.242.104.0/24 9121 -88.242.105.0/24 47331 -88.242.106.0/23 47331 -88.242.108.0/22 47331 -88.242.112.0/20 47331 -88.242.128.0/20 47331 -88.242.144.0/22 47331 -88.242.148.0/22 9121 -88.242.152.0/21 9121 -88.242.160.0/19 9121 -88.242.192.0/19 47331 -88.242.224.0/19 9121 -88.243.0.0/24 47331 -88.243.1.0/24 9121 -88.243.2.0/24 47331 -88.243.3.0/24 9121 -88.243.4.0/24 9121 -88.243.5.0/24 47331 -88.243.6.0/23 47331 -88.243.8.0/24 47331 -88.243.9.0/24 9121 -88.243.10.0/24 47331 -88.243.11.0/24 9121 -88.243.12.0/24 9121 -88.243.13.0/24 47331 -88.243.14.0/23 47331 -88.243.16.0/21 47331 -88.243.24.0/24 47331 -88.243.25.0/24 9121 -88.243.26.0/23 47331 -88.243.28.0/22 47331 -88.243.32.0/20 47331 -88.243.48.0/24 9121 -88.243.49.0/24 47331 -88.243.50.0/24 9121 -88.243.51.0/24 47331 -88.243.52.0/24 47331 -88.243.53.0/24 9121 -88.243.54.0/23 9121 -88.243.56.0/22 47331 -88.243.60.0/24 9121 -88.243.61.0/24 47331 -88.243.62.0/23 47331 -88.243.64.0/18 9121 -88.243.128.0/19 47331 -88.243.160.0/23 47331 -88.243.162.0/24 9121 -88.243.163.0/24 47331 -88.243.164.0/24 47331 -88.243.165.0/24 9121 -88.243.166.0/23 47331 -88.243.168.0/24 9121 -88.243.169.0/24 47331 -88.243.170.0/23 9121 -88.243.172.0/22 47331 -88.243.176.0/22 9121 -88.243.180.0/22 47331 -88.243.184.0/21 47331 -88.243.192.0/19 9121 -88.243.224.0/23 9121 -88.243.226.0/23 47331 -88.243.228.0/23 9121 -88.243.230.0/23 47331 -88.243.232.0/21 47331 -88.243.240.0/22 9121 -88.243.244.0/23 47331 -88.243.246.0/24 9121 -88.243.247.0/24 47331 -88.243.248.0/22 9121 -88.243.252.0/22 47331 -88.244.0.0/19 47331 -88.244.32.0/20 47331 -88.244.48.0/20 9121 -88.244.64.0/22 47331 -88.244.68.0/22 9121 -88.244.72.0/22 9121 -88.244.76.0/22 47331 -88.244.80.0/20 47331 -88.244.96.0/20 47331 -88.244.112.0/23 9121 -88.244.114.0/23 47331 -88.244.116.0/22 47331 -88.244.120.0/22 47331 -88.244.124.0/24 47331 -88.244.125.0/24 9121 -88.244.126.0/23 47331 -88.244.128.0/22 47331 -88.244.132.0/24 47331 -88.244.133.0/24 9121 -88.244.134.0/24 47331 -88.244.135.0/24 9121 -88.244.136.0/23 47331 -88.244.138.0/24 47331 -88.244.139.0/24 9121 -88.244.140.0/24 9121 -88.244.141.0/24 47331 -88.244.142.0/23 47331 -88.244.144.0/21 47331 -88.244.152.0/24 47331 -88.244.153.0/24 9121 -88.244.154.0/23 9121 -88.244.156.0/22 47331 -88.244.160.0/23 47331 -88.244.162.0/24 9121 -88.244.163.0/24 47331 -88.244.164.0/22 47331 -88.244.168.0/22 47331 -88.244.172.0/24 9121 -88.244.173.0/24 47331 -88.244.174.0/24 47331 -88.244.175.0/24 9121 -88.244.176.0/24 47331 -88.244.177.0/24 9121 -88.244.178.0/23 47331 -88.244.180.0/22 9121 -88.244.184.0/21 47331 -88.244.192.0/21 47331 -88.244.200.0/21 9121 -88.244.208.0/23 9121 -88.244.210.0/23 47331 -88.244.212.0/24 47331 -88.244.213.0/24 9121 -88.244.214.0/23 47331 -88.244.216.0/21 47331 -88.244.224.0/20 9121 -88.244.240.0/23 47331 -88.244.242.0/23 9121 -88.244.244.0/22 9121 -88.244.248.0/21 47331 -88.245.0.0/23 47331 -88.245.2.0/24 9121 -88.245.3.0/24 47331 -88.245.4.0/22 47331 -88.245.8.0/24 47331 -88.245.9.0/24 9121 -88.245.10.0/24 9121 -88.245.11.0/24 47331 -88.245.12.0/24 9121 -88.245.13.0/24 47331 -88.245.14.0/23 47331 -88.245.16.0/20 9121 -88.245.32.0/20 9121 -88.245.48.0/23 47331 -88.245.50.0/23 9121 -88.245.52.0/24 9121 -88.245.53.0/24 47331 -88.245.54.0/24 9121 -88.245.55.0/24 47331 -88.245.56.0/23 47331 -88.245.58.0/23 9121 -88.245.60.0/23 9121 -88.245.62.0/23 47331 -88.245.64.0/22 47331 -88.245.68.0/24 9121 -88.245.69.0/24 47331 -88.245.70.0/23 47331 -88.245.72.0/22 47331 -88.245.76.0/24 9121 -88.245.77.0/24 47331 -88.245.78.0/23 9121 -88.245.80.0/21 47331 -88.245.88.0/22 47331 -88.245.92.0/22 9121 -88.245.96.0/20 47331 -88.245.112.0/24 9121 -88.245.113.0/24 47331 -88.245.114.0/24 9121 -88.245.115.0/24 47331 -88.245.116.0/22 47331 -88.245.120.0/22 9121 -88.245.124.0/23 47331 -88.245.126.0/24 47331 -88.245.127.0/24 9121 -88.245.128.0/22 47331 -88.245.132.0/23 47331 -88.245.134.0/24 47331 -88.245.135.0/24 9121 -88.245.136.0/23 47331 -88.245.138.0/23 9121 -88.245.140.0/23 47331 -88.245.142.0/24 9121 -88.245.143.0/24 47331 -88.245.144.0/21 47331 -88.245.152.0/22 47331 -88.245.156.0/24 9121 -88.245.157.0/24 47331 -88.245.158.0/23 47331 -88.245.160.0/19 47331 -88.245.192.0/19 9121 -88.245.224.0/20 47331 -88.245.240.0/22 9121 -88.245.244.0/22 47331 -88.245.248.0/21 47331 -88.246.0.0/22 9121 -88.246.4.0/22 47331 -88.246.8.0/21 47331 -88.246.16.0/23 47331 -88.246.18.0/24 9121 -88.246.19.0/24 47331 -88.246.20.0/22 47331 -88.246.24.0/24 47331 -88.246.25.0/24 9121 -88.246.26.0/24 9121 -88.246.27.0/24 47331 -88.246.28.0/23 47331 -88.246.30.0/24 9121 -88.246.31.0/24 47331 -88.246.32.0/20 9121 -88.246.48.0/22 47331 -88.246.52.0/22 9121 -88.246.56.0/21 9121 -88.246.64.0/24 9121 -88.246.65.0/24 47331 -88.246.66.0/23 47331 -88.246.68.0/22 9121 -88.246.72.0/21 47331 -88.246.80.0/20 9121 -88.246.96.0/19 9121 -88.246.128.0/22 47331 -88.246.132.0/24 9121 -88.246.133.0/24 47331 -88.246.134.0/24 47331 -88.246.135.0/24 9121 -88.246.136.0/24 9121 -88.246.137.0/24 47331 -88.246.138.0/24 47331 -88.246.139.0/24 9121 -88.246.140.0/22 47331 -88.246.144.0/20 47331 -88.246.160.0/19 9121 -88.246.192.0/18 9121 -88.247.0.0/19 47331 -88.247.32.0/21 47331 -88.247.40.0/22 47331 -88.247.44.0/23 47331 -88.247.46.0/24 47331 -88.247.47.0/24 9121 -88.247.48.0/21 47331 -88.247.56.0/22 47331 -88.247.60.0/22 9121 -88.247.64.0/20 47331 -88.247.80.0/20 9121 -88.247.96.0/19 9121 -88.247.128.0/23 9121 -88.247.130.0/24 9121 -88.247.131.0/24 47331 -88.247.132.0/22 9121 -88.247.136.0/21 9121 -88.247.144.0/23 47331 -88.247.146.0/24 47331 -88.247.147.0/24 9121 -88.247.148.0/22 9121 -88.247.152.0/24 47331 -88.247.153.0/24 9121 -88.247.154.0/23 47331 -88.247.156.0/23 9121 -88.247.158.0/24 9121 -88.247.159.0/24 47331 -88.247.160.0/20 9121 -88.247.176.0/22 47331 -88.247.180.0/22 9121 -88.247.184.0/22 47331 -88.247.188.0/22 9121 -88.247.192.0/22 47331 -88.247.196.0/22 9121 -88.247.200.0/24 9121 -88.247.201.0/24 47331 -88.247.202.0/24 47331 -88.247.203.0/24 9121 -88.247.204.0/22 9121 -88.247.208.0/20 9121 -88.247.224.0/22 47331 -88.247.228.0/22 9121 -88.247.232.0/21 9121 -88.247.240.0/24 47331 -88.247.241.0/24 9121 -88.247.242.0/23 9121 -88.247.244.0/22 9121 -88.247.248.0/23 9121 -88.247.250.0/24 47331 -88.247.251.0/24 9121 -88.247.252.0/22 9121 -88.248.0.0/23 9121 -88.248.2.0/23 47331 -88.248.4.0/24 47331 -88.248.5.0/24 9121 -88.248.6.0/23 47331 -88.248.8.0/21 47331 -88.248.16.0/20 47331 -88.248.32.0/23 47331 -88.248.34.0/24 9121 -88.248.35.0/24 47331 -88.248.36.0/22 47331 -88.248.40.0/24 9121 -88.248.41.0/24 47331 -88.248.42.0/23 9121 -88.248.44.0/24 47331 -88.248.45.0/24 9121 -88.248.46.0/23 47331 -88.248.48.0/22 47331 -88.248.52.0/22 9121 -88.248.56.0/22 9121 -88.248.60.0/24 47331 -88.248.61.0/24 9121 -88.248.62.0/23 47331 -88.248.64.0/20 9121 -88.248.80.0/22 9121 -88.248.84.0/23 9121 -88.248.86.0/23 47331 -88.248.88.0/21 9121 -88.248.96.0/23 9121 -88.248.98.0/24 47331 -88.248.99.0/24 9121 -88.248.100.0/22 9121 -88.248.104.0/23 47331 -88.248.106.0/24 47331 -88.248.107.0/24 9121 -88.248.108.0/22 9121 -88.248.112.0/20 9121 -88.248.128.0/23 9121 -88.248.130.0/23 47331 -88.248.132.0/23 47331 -88.248.134.0/23 9121 -88.248.136.0/21 9121 -88.248.144.0/24 47331 -88.248.145.0/24 9121 -88.248.146.0/24 9121 -88.248.147.0/24 47331 -88.248.148.0/24 9121 -88.248.149.0/24 47331 -88.248.150.0/23 9121 -88.248.152.0/21 9121 -88.248.160.0/22 47331 -88.248.164.0/23 9121 -88.248.166.0/23 47331 -88.248.168.0/23 47331 -88.248.170.0/24 9121 -88.248.171.0/24 47331 -88.248.172.0/22 9121 -88.248.176.0/21 9121 -88.248.184.0/24 47331 -88.248.185.0/24 9121 -88.248.186.0/24 47331 -88.248.187.0/24 9121 -88.248.188.0/22 47331 -88.248.192.0/22 47331 -88.248.196.0/23 9121 -88.248.198.0/23 47331 -88.248.200.0/23 47331 -88.248.202.0/24 47331 -88.248.203.0/24 9121 -88.248.204.0/23 9121 -88.248.206.0/24 47331 -88.248.207.0/24 9121 -88.248.208.0/24 9121 -88.248.209.0/24 47331 -88.248.210.0/24 9121 -88.248.211.0/24 47331 -88.248.212.0/22 47331 -88.248.216.0/22 47331 -88.248.220.0/24 9121 -88.248.221.0/24 47331 -88.248.222.0/23 47331 -88.248.224.0/20 9121 -88.248.240.0/22 9121 -88.248.244.0/24 9121 -88.248.245.0/24 47331 -88.248.246.0/23 47331 -88.248.248.0/21 47331 -88.249.0.0/20 47331 -88.249.16.0/21 47331 -88.249.24.0/23 47331 -88.249.26.0/24 9121 -88.249.27.0/24 47331 -88.249.28.0/22 47331 -88.249.32.0/21 47331 -88.249.40.0/24 9121 -88.249.41.0/24 47331 -88.249.42.0/23 47331 -88.249.44.0/22 47331 -88.249.48.0/21 47331 -88.249.56.0/22 9121 -88.249.60.0/22 47331 -88.249.64.0/21 47331 -88.249.72.0/24 47331 -88.249.73.0/24 9121 -88.249.74.0/23 9121 -88.249.76.0/22 9121 -88.249.80.0/20 9121 -88.249.96.0/20 9121 -88.249.112.0/22 47331 -88.249.116.0/24 9121 -88.249.117.0/24 47331 -88.249.118.0/23 9121 -88.249.120.0/24 47331 -88.249.121.0/24 9121 -88.249.122.0/23 9121 -88.249.124.0/23 9121 -88.249.126.0/23 47331 -88.249.128.0/24 9121 -88.249.129.0/24 47331 -88.249.130.0/23 9121 -88.249.132.0/22 47331 -88.249.136.0/23 47331 -88.249.138.0/23 9121 -88.249.140.0/22 47331 -88.249.144.0/24 9121 -88.249.145.0/24 47331 -88.249.146.0/23 47331 -88.249.148.0/22 9121 -88.249.152.0/23 9121 -88.249.154.0/23 47331 -88.249.156.0/24 47331 -88.249.157.0/24 9121 -88.249.158.0/23 9121 -88.249.160.0/22 9121 -88.249.164.0/22 47331 -88.249.168.0/21 9121 -88.249.176.0/20 9121 -88.249.192.0/22 9121 -88.249.196.0/24 47331 -88.249.197.0/24 9121 -88.249.198.0/23 9121 -88.249.200.0/23 47331 -88.249.202.0/24 9121 -88.249.203.0/24 47331 -88.249.204.0/23 47331 -88.249.206.0/24 47331 -88.249.207.0/24 9121 -88.249.208.0/20 9121 -88.249.224.0/20 9121 -88.249.240.0/24 9121 -88.249.241.0/24 47331 -88.249.242.0/23 9121 -88.249.244.0/22 9121 -88.249.248.0/22 9121 -88.249.252.0/22 47331 -88.250.0.0/19 47331 -88.250.32.0/20 47331 -88.250.48.0/21 9121 -88.250.56.0/21 47331 -88.250.64.0/21 47331 -88.250.72.0/22 47331 -88.250.76.0/23 47331 -88.250.78.0/24 47331 -88.250.79.0/24 9121 -88.250.80.0/20 9121 -88.250.96.0/19 9121 -88.250.128.0/21 9121 -88.250.136.0/22 9121 -88.250.140.0/24 47331 -88.250.141.0/24 9121 -88.250.142.0/23 47331 -88.250.144.0/21 9121 -88.250.152.0/23 9121 -88.250.154.0/24 47331 -88.250.155.0/24 9121 -88.250.156.0/23 9121 -88.250.158.0/24 47331 -88.250.159.0/24 9121 -88.250.160.0/22 47331 -88.250.164.0/22 9121 -88.250.168.0/21 9121 -88.250.176.0/21 9121 -88.250.184.0/22 9121 -88.250.188.0/22 47331 -88.250.192.0/21 9121 -88.250.200.0/22 47331 -88.250.204.0/22 9121 -88.250.208.0/22 47331 -88.250.212.0/22 9121 -88.250.216.0/21 9121 -88.250.224.0/22 47331 -88.250.228.0/22 9121 -88.250.232.0/21 9121 -88.250.240.0/21 9121 -88.250.248.0/22 47331 -88.250.252.0/24 9121 -88.250.253.0/24 47331 -88.250.254.0/24 47331 -88.250.255.0/24 9121 -88.251.0.0/20 47331 -88.251.16.0/22 47331 -88.251.20.0/22 9121 -88.251.24.0/21 47331 -88.251.32.0/19 47331 -88.251.64.0/20 9121 -88.251.80.0/23 47331 -88.251.82.0/24 9121 -88.251.83.0/24 47331 -88.251.84.0/24 47331 -88.251.85.0/24 9121 -88.251.86.0/23 47331 -88.251.88.0/21 9121 -88.251.96.0/19 9121 -88.251.128.0/23 9121 -88.251.130.0/23 47331 -88.251.132.0/24 9121 -88.251.133.0/24 47331 -88.251.134.0/23 47331 -88.251.136.0/21 47331 -88.251.144.0/20 47331 -88.251.160.0/23 47331 -88.251.162.0/23 9121 -88.251.164.0/23 9121 -88.251.166.0/24 9121 -88.251.167.0/24 47331 -88.251.168.0/24 47331 -88.251.169.0/24 9121 -88.251.170.0/24 47331 -88.251.171.0/24 9121 -88.251.172.0/23 47331 -88.251.174.0/24 47331 -88.251.175.0/24 9121 -88.251.176.0/24 47331 -88.251.177.0/24 9121 -88.251.178.0/24 9121 -88.251.179.0/24 47331 -88.251.180.0/22 47331 -88.251.184.0/24 47331 -88.251.185.0/24 9121 -88.251.186.0/24 47331 -88.251.187.0/24 9121 -88.251.188.0/24 47331 -88.251.189.0/24 9121 -88.251.190.0/23 9121 -88.251.192.0/24 9121 -88.251.193.0/24 47331 -88.251.194.0/23 47331 -88.251.196.0/23 47331 -88.251.198.0/23 9121 -88.251.200.0/24 9121 -88.251.201.0/24 47331 -88.251.202.0/23 47331 -88.251.204.0/22 47331 -88.251.208.0/20 47331 -88.251.224.0/23 47331 -88.251.226.0/24 47331 -88.251.227.0/24 9121 -88.251.228.0/24 9121 -88.251.229.0/24 47331 -88.251.230.0/23 47331 -88.251.232.0/22 47331 -88.251.236.0/23 47331 -88.251.238.0/24 9121 -88.251.239.0/24 47331 -88.251.240.0/22 47331 -88.251.244.0/23 47331 -88.251.246.0/24 47331 -88.251.247.0/24 9121 -88.251.248.0/24 47331 -88.251.249.0/24 9121 -88.251.250.0/24 47331 -88.251.251.0/24 9121 -88.251.252.0/22 47331 -88.252.0.0/19 47331 -88.252.32.0/20 47331 -88.252.48.0/24 9121 -88.252.49.0/24 47331 -88.252.50.0/24 9121 -88.252.51.0/24 47331 -88.252.52.0/24 9121 -88.252.53.0/24 47331 -88.252.54.0/23 47331 -88.252.56.0/21 47331 -88.252.64.0/24 9121 -88.252.65.0/24 47331 -88.252.66.0/24 47331 -88.252.67.0/24 9121 -88.252.68.0/22 47331 -88.252.72.0/23 47331 -88.252.74.0/24 9121 -88.252.75.0/24 47331 -88.252.76.0/22 47331 -88.252.80.0/24 9121 -88.252.81.0/24 47331 -88.252.82.0/23 47331 -88.252.84.0/24 9121 -88.252.85.0/24 47331 -88.252.86.0/23 47331 -88.252.88.0/22 47331 -88.252.92.0/24 47331 -88.252.93.0/24 9121 -88.252.94.0/23 47331 -88.252.96.0/22 47331 -88.252.100.0/24 47331 -88.252.101.0/24 9121 -88.252.102.0/23 47331 -88.252.104.0/24 9121 -88.252.105.0/24 47331 -88.252.106.0/23 9121 -88.252.108.0/22 47331 -88.252.112.0/24 47331 -88.252.113.0/24 9121 -88.252.114.0/24 9121 -88.252.115.0/24 47331 -88.252.116.0/24 9121 -88.252.117.0/24 47331 -88.252.118.0/23 47331 -88.252.120.0/22 47331 -88.252.124.0/23 47331 -88.252.126.0/24 9121 -88.252.127.0/24 47331 -88.252.128.0/22 47331 -88.252.132.0/24 47331 -88.252.133.0/24 9121 -88.252.134.0/24 9121 -88.252.135.0/24 47331 -88.252.136.0/22 47331 -88.252.140.0/23 47331 -88.252.142.0/24 9121 -88.252.143.0/24 47331 -88.252.144.0/20 47331 -88.252.160.0/19 47331 -88.252.192.0/24 9121 -88.252.193.0/24 47331 -88.252.194.0/23 47331 -88.252.196.0/23 47331 -88.252.198.0/23 9121 -88.252.200.0/22 47331 -88.252.204.0/23 47331 -88.252.206.0/24 47331 -88.252.207.0/24 9121 -88.252.208.0/21 47331 -88.252.216.0/24 47331 -88.252.217.0/24 9121 -88.252.218.0/24 47331 -88.252.219.0/24 9121 -88.252.220.0/23 47331 -88.252.222.0/23 9121 -88.252.224.0/24 9121 -88.252.225.0/24 47331 -88.252.226.0/23 47331 -88.252.228.0/24 47331 -88.252.229.0/24 9121 -88.252.230.0/24 9121 -88.252.231.0/24 47331 -88.252.232.0/23 47331 -88.252.234.0/24 47331 -88.252.235.0/24 9121 -88.252.236.0/24 47331 -88.252.237.0/24 9121 -88.252.238.0/24 9121 -88.252.239.0/24 47331 -88.252.240.0/24 9121 -88.252.241.0/24 47331 -88.252.242.0/24 47331 -88.252.243.0/24 9121 -88.252.244.0/22 47331 -88.252.248.0/24 9121 -88.252.249.0/24 47331 -88.252.250.0/23 47331 -88.252.252.0/24 47331 -88.252.253.0/24 9121 -88.252.254.0/23 47331 -88.253.0.0/18 9121 -88.253.64.0/20 47331 -88.253.80.0/23 47331 -88.253.82.0/23 9121 -88.253.84.0/23 9121 -88.253.86.0/23 47331 -88.253.88.0/21 47331 -88.253.96.0/21 47331 -88.253.104.0/21 9121 -88.253.112.0/22 9121 -88.253.116.0/23 47331 -88.253.118.0/23 9121 -88.253.120.0/23 47331 -88.253.122.0/23 9121 -88.253.124.0/23 9121 -88.253.126.0/23 47331 -88.253.128.0/18 9121 -88.253.192.0/22 47331 -88.253.196.0/22 9121 -88.253.200.0/21 47331 -88.253.208.0/23 9121 -88.253.210.0/23 47331 -88.253.212.0/22 47331 -88.253.216.0/21 47331 -88.253.224.0/23 9121 -88.253.226.0/23 47331 -88.253.228.0/22 47331 -88.253.232.0/23 47331 -88.253.234.0/24 47331 -88.253.235.0/24 9121 -88.253.236.0/23 9121 -88.253.238.0/24 9121 -88.253.239.0/24 47331 -88.253.240.0/23 9121 -88.253.242.0/24 9121 -88.253.243.0/24 47331 -88.253.244.0/24 9121 -88.253.245.0/24 47331 -88.253.246.0/23 9121 -88.253.248.0/21 47331 -88.254.0.0/18 9121 -88.254.64.0/18 47331 -88.254.128.0/23 9121 -88.254.130.0/23 47331 -88.254.132.0/23 47331 -88.254.134.0/24 47331 -88.254.135.0/24 9121 -88.254.136.0/24 9121 -88.254.137.0/24 47331 -88.254.138.0/23 47331 -88.254.140.0/23 9121 -88.254.142.0/23 47331 -88.254.144.0/24 47331 -88.254.145.0/24 9121 -88.254.146.0/24 9121 -88.254.147.0/24 47331 -88.254.148.0/22 47331 -88.254.152.0/22 47331 -88.254.156.0/23 47331 -88.254.158.0/24 47331 -88.254.159.0/24 9121 -88.254.160.0/24 47331 -88.254.161.0/24 9121 -88.254.162.0/24 9121 -88.254.163.0/24 47331 -88.254.164.0/22 47331 -88.254.168.0/24 9121 -88.254.169.0/24 47331 -88.254.170.0/23 9121 -88.254.172.0/22 47331 -88.254.176.0/23 47331 -88.254.178.0/24 9121 -88.254.179.0/24 47331 -88.254.180.0/22 47331 -88.254.184.0/22 47331 -88.254.188.0/23 47331 -88.254.190.0/24 47331 -88.254.191.0/24 9121 -88.254.192.0/20 47331 -88.254.208.0/24 9121 -88.254.209.0/24 47331 -88.254.210.0/23 47331 -88.254.212.0/23 9121 -88.254.214.0/23 47331 -88.254.216.0/21 47331 -88.254.224.0/19 47331 -88.255.0.0/16 9121 -89.0.0.0/15 8422 -89.2.0.0/16 21502 -89.3.0.0/17 21502 -89.3.128.0/18 21502 -89.3.192.0/19 21502 -89.3.224.0/20 21502 -89.3.240.0/20 20776 -89.4.0.0/15 34397 -89.6.0.0/15 12430 -89.8.0.0/15 12929 -89.10.0.0/15 15659 -89.12.0.0/14 6805 -89.16.0.0/19 20776 -89.16.32.0/19 34485 -89.16.64.0/19 35226 -89.16.96.0/22 20870 -89.16.100.0/23 20870 -89.16.102.0/23 20485 -89.16.104.0/24 20485 -89.16.105.0/24 20870 -89.16.106.0/23 20870 -89.16.108.0/22 20870 -89.16.112.0/24 20870 -89.16.113.0/24 20485 -89.16.114.0/24 20485 -89.16.115.0/24 20870 -89.16.116.0/22 20870 -89.16.120.0/22 20870 -89.16.124.0/24 20870 -89.16.125.0/24 20485 -89.16.126.0/23 20485 -89.16.128.0/19 20880 -89.16.160.0/19 35425 -89.16.192.0/19 50226 -89.16.224.0/19 5555 -89.17.32.0/24 25531 -89.17.33.0/24 201825 -89.17.34.0/24 25531 -89.17.35.0/24 201825 -89.17.36.0/22 25531 -89.17.40.0/22 25531 -89.17.44.0/24 25531 -89.17.45.0/24 201825 -89.17.46.0/24 207473 -89.17.47.0/24 25531 -89.17.48.0/24 25531 -89.17.49.0/24 201825 -89.17.50.0/24 25531 -89.17.51.0/24 201825 -89.17.52.0/22 201825 -89.17.56.0/21 201825 -89.17.64.0/19 41808 -89.17.96.0/19 42003 -89.17.128.0/19 51896 -89.17.160.0/23 41651 -89.17.192.0/19 16371 -89.17.224.0/19 21021 -89.18.0.0/20 39737 -89.18.16.0/21 47602 -89.18.24.0/24 34450 -89.18.26.0/23 39306 -89.18.28.0/23 39306 -89.18.30.0/23 39543 -89.18.32.0/19 41454 -89.18.64.0/19 49406 -89.18.96.0/21 41401 -89.18.104.0/23 41401 -89.18.106.0/24 41401 -89.18.107.0/24 29286 -89.18.108.0/22 41401 -89.18.112.0/22 41401 -89.18.116.0/23 41401 -89.18.118.0/24 29286 -89.18.119.0/24 41401 -89.18.120.0/22 41401 -89.18.124.0/24 41401 -89.18.125.0/24 29286 -89.18.126.0/23 41401 -89.18.128.0/19 15930 -89.18.160.0/24 36057 -89.18.161.0/24 48635 -89.18.162.0/23 25525 -89.18.164.0/22 48635 -89.18.168.0/23 48635 -89.18.170.0/24 25525 -89.18.171.0/24 48635 -89.18.172.0/23 48635 -89.18.174.0/24 48635 -89.18.175.0/24 60893 -89.18.176.0/22 25525 -89.18.180.0/24 25525 -89.18.181.0/24 48635 -89.18.182.0/24 25525 -89.18.183.0/24 205839 -89.18.184.0/23 36057 -89.18.186.0/23 25525 -89.18.188.0/24 25525 -89.18.189.0/24 48635 -89.18.190.0/24 48635 -89.18.191.0/24 25525 -89.18.192.0/19 20910 -89.18.224.0/19 49283 -89.19.0.0/19 34619 -89.19.32.0/23 9009 -89.19.36.0/22 9002 -89.19.40.0/23 208058 -89.19.43.0/24 29182 -89.19.44.0/22 61317 -89.19.48.0/22 61317 -89.19.52.0/24 56496 -89.19.56.0/22 9009 -89.19.60.0/22 210091 -89.19.64.0/19 15502 -89.19.96.0/20 25505 -89.19.112.0/21 25505 -89.19.120.0/21 21312 -89.19.128.0/19 15516 -89.19.160.0/19 15582 -89.19.192.0/19 41465 -89.19.224.0/19 61157 -89.20.0.0/19 12380 -89.20.32.0/21 41475 -89.20.40.0/22 41475 -89.20.44.0/23 41475 -89.20.46.0/23 62314 -89.20.48.0/24 204804 -89.20.49.0/24 203872 -89.20.50.0/23 203872 -89.20.52.0/22 56864 -89.20.56.0/22 56864 -89.20.60.0/22 208058 -89.20.64.0/19 41480 -89.20.96.0/19 12389 -89.20.128.0/19 12714 -89.20.160.0/19 39686 -89.20.192.0/19 30803 -89.20.224.0/19 35132 -89.21.0.0/21 15830 -89.21.8.0/24 12600 -89.21.9.0/24 15830 -89.21.10.0/23 15830 -89.21.12.0/22 15830 -89.21.16.0/20 15830 -89.21.32.0/19 20886 -89.21.64.0/22 203872 -89.21.68.0/22 198760 -89.21.72.0/22 56347 -89.21.76.0/22 208494 -89.21.80.0/21 15738 -89.21.88.0/22 15738 -89.21.92.0/24 202969 -89.21.93.0/24 15738 -89.21.94.0/24 15738 -89.21.95.0/24 208494 -89.21.128.0/20 15672 -89.21.144.0/22 15672 -89.21.148.0/23 15672 -89.21.152.0/21 15672 -89.21.160.0/19 24753 -89.21.192.0/19 39120 -89.21.224.0/19 41695 -89.22.1.0/24 57031 -89.22.2.0/23 57031 -89.22.4.0/24 57031 -89.22.6.0/23 57031 -89.22.8.0/21 57074 -89.22.16.0/20 48166 -89.22.32.0/21 57055 -89.22.40.0/21 29382 -89.22.48.0/24 199220 -89.22.49.0/24 199189 -89.22.50.0/24 59660 -89.22.52.0/22 59693 -89.22.56.0/21 44362 -89.22.64.0/19 57069 -89.22.96.0/20 45031 -89.22.112.0/21 45031 -89.22.120.0/22 45031 -89.22.124.0/22 45012 -89.22.128.0/21 49893 -89.22.136.0/22 61405 -89.22.140.0/22 49893 -89.22.144.0/20 49893 -89.22.160.0/22 209024 -89.22.166.0/23 33991 -89.22.174.0/23 33991 -89.22.176.0/22 33991 -89.22.180.0/22 60490 -89.22.184.0/22 60490 -89.22.188.0/23 8359 -89.22.190.0/23 39811 -89.22.200.0/21 57076 -89.22.208.0/21 57101 -89.22.216.0/21 51041 -89.22.224.0/20 9009 -89.22.240.0/20 57093 -89.23.0.0/19 47438 -89.23.32.0/19 43404 -89.23.64.0/24 28964 -89.23.65.0/24 50781 -89.23.68.0/23 9125 -89.23.70.0/24 50781 -89.23.74.0/24 50781 -89.23.75.0/24 9125 -89.23.96.0/19 48687 -89.23.128.0/18 51032 -89.23.192.0/19 51042 -89.23.224.0/19 42541 -89.24.0.0/19 13036 -89.24.32.0/20 13036 -89.24.48.0/20 6855 -89.24.64.0/19 13036 -89.24.96.0/19 5588 -89.24.128.0/17 13036 -89.25.0.0/20 9070 -89.25.16.0/22 29667 -89.25.20.0/22 41313 -89.25.24.0/21 29667 -89.25.32.0/24 49737 -89.25.33.0/24 9070 -89.25.34.0/24 204448 -89.25.35.0/24 9070 -89.25.36.0/22 9070 -89.25.40.0/21 8866 -89.25.48.0/24 49737 -89.25.49.0/24 9070 -89.25.50.0/23 9070 -89.25.52.0/22 8866 -89.25.56.0/21 8866 -89.25.64.0/21 8866 -89.25.72.0/22 8866 -89.25.76.0/22 9070 -89.25.80.0/21 9070 -89.25.88.0/22 9070 -89.25.92.0/23 9070 -89.25.94.0/24 9070 -89.25.95.0/24 49226 -89.25.100.0/22 8866 -89.25.104.0/21 9070 -89.25.112.0/21 29667 -89.25.120.0/22 9070 -89.25.124.0/22 8866 -89.25.128.0/17 31242 -89.26.0.0/17 8445 -89.26.128.0/19 5626 -89.26.160.0/20 5626 -89.26.176.0/21 13156 -89.26.184.0/22 13156 -89.26.188.0/22 5626 -89.26.192.0/18 5626 -89.27.0.0/17 16086 -89.27.128.0/17 8881 -89.28.0.0/17 31252 -89.28.128.0/21 41284 -89.28.136.0/21 41307 -89.28.144.0/21 42487 -89.28.152.0/21 60384 -89.28.160.0/21 41302 -89.28.168.0/21 34931 -89.28.176.0/21 43610 -89.28.184.0/24 41596 -89.28.185.0/24 2856 -89.28.186.0/23 2856 -89.28.188.0/22 199675 -89.28.192.0/21 41341 -89.28.200.0/21 31475 -89.28.208.0/21 61081 -89.28.216.0/21 38968 -89.28.224.0/21 13065 -89.28.232.0/21 39179 -89.28.240.0/24 206240 -89.28.241.0/24 16097 -89.28.242.0/23 206240 -89.28.244.0/22 206240 -89.28.248.0/21 15454 -89.29.0.0/17 30764 -89.29.128.0/19 41368 -89.29.160.0/20 35394 -89.29.176.0/21 35394 -89.29.184.0/23 44293 -89.29.186.0/23 3339 -89.29.188.0/23 3339 -89.29.190.0/23 49000 -89.29.192.0/21 41343 -89.29.200.0/23 41343 -89.29.202.0/24 41343 -89.29.203.0/24 43833 -89.29.204.0/23 41343 -89.29.206.0/23 49000 -89.29.208.0/20 3339 -89.29.224.0/24 60267 -89.29.225.0/24 49000 -89.29.226.0/23 41343 -89.29.228.0/24 41343 -89.29.229.0/24 60267 -89.29.230.0/24 3339 -89.29.231.0/24 60267 -89.29.232.0/21 41368 -89.29.240.0/22 3339 -89.29.244.0/23 44293 -89.29.246.0/24 60267 -89.29.247.0/24 49000 -89.29.248.0/23 44293 -89.29.250.0/23 43833 -89.29.252.0/24 197740 -89.29.253.0/24 49000 -89.29.254.0/24 43833 -89.29.255.0/24 49000 -89.30.0.0/18 31216 -89.30.64.0/20 31216 -89.30.80.0/22 31216 -89.30.84.0/23 31216 -89.30.86.0/24 60737 -89.30.87.0/24 31216 -89.30.88.0/22 31216 -89.30.92.0/23 31216 -89.30.94.0/24 31216 -89.30.95.0/24 60737 -89.30.96.0/21 31216 -89.30.104.0/23 31216 -89.30.106.0/24 60331 -89.30.107.0/24 31216 -89.30.108.0/24 202187 -89.30.109.0/24 31216 -89.30.110.0/23 31216 -89.30.112.0/24 31216 -89.30.113.0/24 29646 -89.30.114.0/23 31216 -89.30.116.0/22 31216 -89.30.120.0/21 31216 -89.30.128.0/21 25525 -89.30.136.0/22 25525 -89.30.140.0/24 25525 -89.30.141.0/24 27257 -89.30.142.0/23 25525 -89.30.144.0/23 48635 -89.30.146.0/23 25525 -89.30.148.0/23 25525 -89.30.150.0/23 30870 -89.30.152.0/23 25525 -89.30.154.0/23 30870 -89.30.156.0/23 199522 -89.30.158.0/23 25525 -89.30.160.0/22 48635 -89.30.164.0/22 25525 -89.30.168.0/21 25525 -89.30.176.0/20 25525 -89.30.192.0/18 25525 -89.31.0.0/21 33808 -89.31.8.0/21 44070 -89.31.16.0/21 41443 -89.31.24.0/22 202203 -89.31.28.0/22 44332 -89.31.32.0/21 43148 -89.31.40.0/21 44489 -89.31.48.0/21 20746 -89.31.56.0/21 201401 -89.31.64.0/24 205677 -89.31.65.0/24 204987 -89.31.66.0/24 208404 -89.31.72.0/21 24994 -89.31.80.0/21 41639 -89.31.88.0/21 15582 -89.31.96.0/21 35470 -89.31.104.0/22 51416 -89.31.108.0/22 41516 -89.31.112.0/21 34757 -89.31.120.0/22 47987 -89.31.124.0/22 9009 -89.31.128.0/21 31239 -89.31.136.0/22 15598 -89.31.140.0/24 15598 -89.31.141.0/24 202108 -89.31.143.0/24 15598 -89.31.144.0/21 41628 -89.31.152.0/21 16333 -89.31.160.0/21 196861 -89.31.168.0/21 47720 -89.31.176.0/21 41579 -89.31.184.0/21 3216 -89.31.192.0/22 48109 -89.31.196.0/24 48109 -89.31.200.0/21 12779 -89.31.208.0/21 29668 -89.31.220.0/22 39927 -89.31.224.0/21 47202 -89.31.232.0/21 8851 -89.31.240.0/21 41625 -89.31.248.0/24 41819 -89.32.0.0/19 57218 -89.32.32.0/21 1653 -89.32.40.0/24 29141 -89.32.41.0/24 48874 -89.32.42.0/24 39572 -89.32.44.0/22 34358 -89.32.56.0/21 8926 -89.32.72.0/21 1653 -89.32.80.0/21 51223 -89.32.96.0/20 57218 -89.32.112.0/24 48427 -89.32.113.0/24 34977 -89.32.114.0/23 34977 -89.32.116.0/23 48427 -89.32.118.0/24 34977 -89.32.119.0/24 207030 -89.32.120.0/22 56478 -89.32.125.0/24 208913 -89.32.127.0/24 203872 -89.32.129.0/24 9050 -89.32.130.0/23 3223 -89.32.136.0/21 8926 -89.32.144.0/21 43927 -89.32.152.0/23 3269 -89.32.154.0/23 34416 -89.32.156.0/22 48544 -89.32.160.0/21 29119 -89.32.168.0/23 56550 -89.32.170.0/24 51490 -89.32.172.0/22 8926 -89.32.184.0/24 209519 -89.32.185.0/24 31102 -89.32.186.0/23 56550 -89.32.188.0/24 39855 -89.32.191.0/24 31102 -89.32.192.0/23 205639 -89.32.194.0/23 199380 -89.32.196.0/23 39501 -89.32.198.0/23 34416 -89.32.200.0/24 9050 -89.32.202.0/24 203320 -89.32.203.0/24 209519 -89.32.204.0/24 41571 -89.32.206.0/24 6910 -89.32.207.0/24 8680 -89.32.208.0/21 3329 -89.32.216.0/21 39277 -89.32.224.0/20 39279 -89.32.248.0/22 204213 -89.32.252.0/22 8926 -89.33.0.0/22 39855 -89.33.4.0/24 34538 -89.33.5.0/24 39629 -89.33.6.0/23 58305 -89.33.8.0/24 9009 -89.33.9.0/24 9050 -89.33.10.0/23 42568 -89.33.12.0/23 39543 -89.33.14.0/24 6910 -89.33.15.0/24 8680 -89.33.20.0/22 57136 -89.33.24.0/22 205275 -89.33.28.0/23 61102 -89.33.31.0/24 44154 -89.33.32.0/21 35725 -89.33.40.0/24 206089 -89.33.42.0/23 206089 -89.33.44.0/24 205275 -89.33.45.0/24 31362 -89.33.46.0/23 201117 -89.33.48.0/21 35725 -89.33.56.0/21 29256 -89.33.64.0/24 42831 -89.33.66.0/23 44217 -89.33.68.0/22 52148 -89.33.72.0/21 6830 -89.33.80.0/24 12310 -89.33.81.0/24 39737 -89.33.82.0/24 60819 -89.33.83.0/24 39226 -89.33.84.0/23 6910 -89.33.86.0/24 57446 -89.33.87.0/24 39737 -89.33.88.0/21 39347 -89.33.96.0/22 35584 -89.33.100.0/22 12880 -89.33.105.0/24 42616 -89.33.106.0/24 61096 -89.33.107.0/24 60453 -89.33.108.0/22 29119 -89.33.112.0/22 206026 -89.33.116.0/24 51490 -89.33.117.0/24 201341 -89.33.118.0/24 201341 -89.33.119.0/24 6663 -89.33.120.0/21 57136 -89.33.130.0/23 33977 -89.33.132.0/24 62322 -89.33.133.0/24 56550 -89.33.134.0/24 51490 -89.33.136.0/21 1653 -89.33.144.0/21 6910 -89.33.152.0/24 21220 -89.33.153.0/24 35725 -89.33.154.0/23 35725 -89.33.156.0/22 35725 -89.33.160.0/23 29119 -89.33.162.0/24 60194 -89.33.163.0/24 34450 -89.33.164.0/23 41496 -89.33.166.0/23 39411 -89.33.168.0/21 35725 -89.33.176.0/22 39391 -89.33.180.0/22 206451 -89.33.184.0/21 25589 -89.33.192.0/23 9009 -89.33.194.0/23 203523 -89.33.196.0/24 41571 -89.33.197.0/24 43927 -89.33.198.0/23 209686 -89.33.200.0/23 209686 -89.33.202.0/23 42568 -89.33.206.0/24 51490 -89.33.207.0/24 39756 -89.33.208.0/20 21299 -89.33.224.0/21 29256 -89.33.233.0/24 59999 -89.33.236.0/23 5588 -89.33.238.0/23 31362 -89.33.240.0/23 39501 -89.33.242.0/24 44682 -89.33.243.0/24 31609 -89.33.244.0/24 31609 -89.33.245.0/24 47602 -89.33.246.0/24 9009 -89.33.247.0/24 39756 -89.33.248.0/23 39629 -89.33.250.0/23 209559 -89.33.252.0/24 34450 -89.33.253.0/24 39205 -89.33.254.0/23 201117 -89.34.0.0/24 203320 -89.34.1.0/24 41571 -89.34.2.0/24 44252 -89.34.4.0/24 203320 -89.34.5.0/24 41571 -89.34.7.0/24 60077 -89.34.8.0/21 34450 -89.34.16.0/22 201682 -89.34.20.0/23 39501 -89.34.22.0/23 39758 -89.34.24.0/23 39345 -89.34.26.0/24 57673 -89.34.28.0/22 42947 -89.34.32.0/19 57218 -89.34.64.0/21 8926 -89.34.72.0/23 39737 -89.34.74.0/23 56871 -89.34.76.0/24 31554 -89.34.77.0/24 39855 -89.34.78.0/23 62107 -89.34.80.0/21 35725 -89.34.90.0/24 39737 -89.34.91.0/24 60676 -89.34.92.0/24 205275 -89.34.93.0/24 41571 -89.34.96.0/22 25369 -89.34.100.0/24 8708 -89.34.101.0/24 9050 -89.34.103.0/24 23470 -89.34.104.0/23 51490 -89.34.106.0/24 61112 -89.34.107.0/24 20616 -89.34.108.0/24 60194 -89.34.110.0/24 39511 -89.34.111.0/24 47447 -89.34.112.0/21 8926 -89.34.120.0/22 29119 -89.34.124.0/23 209706 -89.34.126.0/23 6910 -89.34.128.0/19 57218 -89.34.160.0/24 61353 -89.34.161.0/24 56550 -89.34.162.0/23 29256 -89.34.164.0/22 56478 -89.34.170.0/24 8708 -89.34.171.0/24 209706 -89.34.172.0/24 201341 -89.34.173.0/24 57446 -89.34.174.0/24 39737 -89.34.178.0/24 8708 -89.34.179.0/24 39855 -89.34.180.0/22 6910 -89.34.184.0/21 1653 -89.34.192.0/21 8926 -89.34.200.0/23 39501 -89.34.202.0/24 9050 -89.34.203.0/24 5588 -89.34.204.0/22 8926 -89.34.208.0/21 6910 -89.34.216.0/23 39855 -89.34.219.0/24 50232 -89.34.222.0/23 44912 -89.34.224.0/21 39543 -89.34.232.0/22 8926 -89.34.238.0/23 9050 -89.34.240.0/21 1653 -89.34.248.0/21 58224 -89.35.2.0/23 34624 -89.35.6.0/23 40975 -89.35.8.0/21 8926 -89.35.17.0/24 49405 -89.35.18.0/23 49405 -89.35.20.0/22 49405 -89.35.24.0/24 29119 -89.35.25.0/24 203872 -89.35.26.0/24 9050 -89.35.27.0/24 50884 -89.35.28.0/22 25369 -89.35.33.0/24 44682 -89.35.35.0/24 59934 -89.35.36.0/23 6910 -89.35.38.0/24 35267 -89.35.39.0/24 44220 -89.35.40.0/21 8926 -89.35.48.0/23 44912 -89.35.50.0/24 44682 -89.35.51.0/24 9050 -89.35.52.0/24 61135 -89.35.53.0/24 12842 -89.35.54.0/24 51490 -89.35.55.0/24 41571 -89.35.57.0/24 9009 -89.35.58.0/23 47553 -89.35.60.0/23 39411 -89.35.64.0/21 58224 -89.35.72.0/24 31207 -89.35.73.0/24 48161 -89.35.74.0/23 39737 -89.35.77.0/24 49302 -89.35.80.0/23 42280 -89.35.82.0/23 8680 -89.35.84.0/22 8926 -89.35.89.0/24 51490 -89.35.90.0/24 209574 -89.35.92.0/22 6910 -89.35.112.0/24 62388 -89.35.113.0/24 60125 -89.35.114.0/24 39855 -89.35.115.0/24 44277 -89.35.116.0/24 41571 -89.35.117.0/24 31362 -89.35.118.0/23 61954 -89.35.120.0/22 12880 -89.35.124.0/23 57495 -89.35.126.0/24 201341 -89.35.127.0/24 31207 -89.35.128.0/22 39668 -89.35.132.0/23 39501 -89.35.134.0/24 29119 -89.35.135.0/24 203872 -89.35.136.0/21 34977 -89.35.144.0/22 49242 -89.35.148.0/22 29119 -89.35.152.0/24 49674 -89.35.153.0/24 60194 -89.35.154.0/23 6910 -89.35.156.0/23 47553 -89.35.158.0/24 39543 -89.35.159.0/24 6910 -89.35.160.0/23 39629 -89.35.164.0/22 209519 -89.35.168.0/22 198102 -89.35.172.0/24 9050 -89.35.173.0/24 59854 -89.35.174.0/23 5539 -89.35.176.0/23 47553 -89.35.178.0/24 16125 -89.35.179.0/24 204145 -89.35.180.0/22 12880 -89.35.184.0/21 35725 -89.35.192.0/24 31313 -89.35.193.0/24 59784 -89.35.194.0/23 39501 -89.35.196.0/22 56478 -89.35.200.0/22 8926 -89.35.204.0/24 47602 -89.35.205.0/24 29119 -89.35.208.0/21 34630 -89.35.218.0/23 33875 -89.35.220.0/24 33875 -89.35.224.0/24 34304 -89.35.225.0/24 35450 -89.35.226.0/24 34304 -89.35.227.0/24 62235 -89.35.228.0/23 34304 -89.35.230.0/24 35450 -89.35.231.0/24 62235 -89.35.232.0/21 34304 -89.35.240.0/21 35725 -89.35.249.0/24 47602 -89.35.250.0/23 34916 -89.35.252.0/22 206026 -89.36.0.0/21 34977 -89.36.8.0/21 47505 -89.36.16.0/23 39501 -89.36.18.0/24 56430 -89.36.19.0/24 41571 -89.36.20.0/24 35348 -89.36.21.0/24 39758 -89.36.22.0/23 6910 -89.36.24.0/21 39756 -89.36.32.0/22 209706 -89.36.36.0/24 39855 -89.36.37.0/24 50884 -89.36.38.0/23 201117 -89.36.40.0/22 199380 -89.36.44.0/22 51223 -89.36.48.0/20 58224 -89.36.64.0/21 56478 -89.36.72.0/24 50884 -89.36.73.0/24 31207 -89.36.74.0/23 34762 -89.36.76.0/24 9050 -89.36.77.0/24 35664 -89.36.79.0/24 56570 -89.36.80.0/21 200810 -89.36.89.0/24 43938 -89.36.90.0/23 42695 -89.36.92.0/24 41571 -89.36.93.0/24 56430 -89.36.94.0/23 39573 -89.36.96.0/20 58224 -89.36.112.0/20 201838 -89.36.128.0/23 34358 -89.36.130.0/24 34358 -89.36.131.0/24 57034 -89.36.132.0/22 34358 -89.36.137.0/24 8708 -89.36.138.0/23 201117 -89.36.140.0/24 50939 -89.36.142.0/24 201341 -89.36.143.0/24 31017 -89.36.144.0/22 39861 -89.36.148.0/23 31362 -89.36.150.0/23 35267 -89.36.152.0/23 42568 -89.36.154.0/24 21022 -89.36.156.0/22 8926 -89.36.160.0/22 51656 -89.36.164.0/22 206026 -89.36.168.0/24 206451 -89.36.169.0/24 62235 -89.36.170.0/23 41913 -89.36.172.0/24 39855 -89.36.173.0/24 49164 -89.36.174.0/24 60907 -89.36.175.0/24 206451 -89.36.176.0/20 58224 -89.36.192.0/24 206382 -89.36.193.0/24 43938 -89.36.194.0/23 39501 -89.36.196.0/24 31362 -89.36.197.0/24 40975 -89.36.198.0/24 35348 -89.36.200.0/22 206026 -89.36.204.0/22 48544 -89.36.208.0/22 31034 -89.36.212.0/22 199653 -89.36.216.0/22 200185 -89.36.220.0/22 199883 -89.36.224.0/24 9009 -89.36.225.0/24 201341 -89.36.226.0/23 39501 -89.36.228.0/24 56550 -89.36.229.0/24 41055 -89.36.230.0/24 62388 -89.36.232.0/22 209519 -89.36.236.0/22 209706 -89.36.240.0/21 35725 -89.36.248.0/22 206382 -89.36.252.0/23 39501 -89.36.254.0/24 34304 -89.37.0.0/21 50810 -89.37.8.0/22 61209 -89.37.12.0/22 50810 -89.37.24.0/22 206026 -89.37.28.0/24 209519 -89.37.29.0/24 47602 -89.37.30.0/23 47553 -89.37.41.0/24 31362 -89.37.44.0/22 8926 -89.37.48.0/21 35725 -89.37.56.0/24 203929 -89.37.57.0/24 39226 -89.37.59.0/24 8680 -89.37.60.0/23 203872 -89.37.62.0/23 6910 -89.37.64.0/22 25369 -89.37.68.0/23 15692 -89.37.70.0/23 41199 -89.37.72.0/22 34977 -89.37.76.0/22 48427 -89.37.80.0/22 199380 -89.37.84.0/22 48517 -89.37.88.0/22 203501 -89.37.92.0/23 51490 -89.37.94.0/24 209559 -89.37.95.0/24 47602 -89.37.100.0/24 62388 -89.37.102.0/23 39501 -89.37.104.0/24 8926 -89.37.105.0/24 39855 -89.37.107.0/24 39797 -89.37.108.0/22 31609 -89.37.112.0/21 47148 -89.37.120.0/21 39737 -89.37.128.0/24 209706 -89.37.129.0/24 51490 -89.37.132.0/23 201117 -89.37.134.0/24 201117 -89.37.135.0/24 8708 -89.37.136.0/24 34450 -89.37.137.0/24 39855 -89.37.138.0/24 39855 -89.37.139.0/24 58074 -89.37.141.0/24 58074 -89.37.142.0/24 6830 -89.37.143.0/24 5588 -89.37.144.0/23 48159 -89.37.146.0/23 58224 -89.37.152.0/22 12880 -89.37.156.0/23 39629 -89.37.158.0/24 57446 -89.37.159.0/24 31362 -89.37.160.0/21 35725 -89.37.168.0/22 12880 -89.37.172.0/22 25369 -89.37.176.0/21 1653 -89.37.184.0/24 58078 -89.37.185.0/24 39527 -89.37.186.0/23 39425 -89.37.188.0/22 209706 -89.37.192.0/22 39531 -89.37.196.0/23 39543 -89.37.198.0/23 39501 -89.37.200.0/21 24611 -89.37.208.0/22 12880 -89.37.212.0/22 205275 -89.37.216.0/23 209706 -89.37.218.0/23 39501 -89.37.220.0/22 206026 -89.37.224.0/23 62388 -89.37.226.0/24 60068 -89.37.227.0/24 29119 -89.37.228.0/22 209706 -89.37.232.0/23 62388 -89.37.234.0/24 201341 -89.37.235.0/24 48336 -89.37.236.0/22 209706 -89.37.240.0/20 58224 -89.38.0.0/21 35725 -89.38.8.0/21 41496 -89.38.16.0/21 34977 -89.38.24.0/23 39501 -89.38.26.0/24 60194 -89.38.27.0/24 41055 -89.38.28.0/22 8551 -89.38.32.0/22 8926 -89.38.36.0/23 9050 -89.38.38.0/23 39855 -89.38.40.0/21 62055 -89.38.48.0/22 34740 -89.38.52.0/22 36351 -89.38.57.0/24 41414 -89.38.58.0/24 43474 -89.38.59.0/24 5588 -89.38.64.0/22 8926 -89.38.68.0/23 9050 -89.38.70.0/24 6910 -89.38.71.0/24 42637 -89.38.72.0/22 6830 -89.38.76.0/22 8926 -89.38.80.0/20 58224 -89.38.96.0/22 49981 -89.38.100.0/24 41055 -89.38.101.0/24 6910 -89.38.102.0/23 39501 -89.38.104.0/24 48669 -89.38.106.0/23 209519 -89.38.112.0/23 44974 -89.38.114.0/23 51402 -89.38.116.0/23 51402 -89.38.120.0/21 8530 -89.38.128.0/21 31244 -89.38.136.0/24 9050 -89.38.137.0/24 57446 -89.38.138.0/23 31362 -89.38.140.0/22 39737 -89.38.144.0/22 199883 -89.38.148.0/22 199653 -89.38.152.0/23 39737 -89.38.154.0/24 39737 -89.38.155.0/24 41463 -89.38.156.0/22 16220 -89.38.164.0/22 35168 -89.38.168.0/21 6910 -89.38.176.0/21 200773 -89.38.184.0/21 58224 -89.38.192.0/21 58224 -89.38.208.0/22 41635 -89.38.216.0/21 29119 -89.38.228.0/23 41672 -89.38.230.0/24 2614 -89.38.231.0/24 5588 -89.38.232.0/24 48671 -89.38.233.0/24 31244 -89.38.236.0/24 8708 -89.38.238.0/23 197922 -89.38.241.0/24 5588 -89.38.244.0/22 12880 -89.38.248.0/21 34358 -89.39.0.0/22 9050 -89.39.4.0/23 9050 -89.39.6.0/23 60909 -89.39.8.0/22 12880 -89.39.12.0/22 39345 -89.39.16.0/23 34977 -89.39.18.0/23 202491 -89.39.20.0/23 202491 -89.39.22.0/23 34977 -89.39.24.0/21 34977 -89.39.32.0/19 15704 -89.39.64.0/23 35291 -89.39.66.0/24 6910 -89.39.67.0/24 9050 -89.39.68.0/24 5588 -89.39.69.0/24 209574 -89.39.70.0/24 41055 -89.39.71.0/24 8953 -89.39.72.0/22 41852 -89.39.76.0/22 8926 -89.39.80.0/24 39737 -89.39.81.0/24 8953 -89.39.82.0/24 41055 -89.39.83.0/24 5541 -89.39.84.0/22 8926 -89.39.89.0/24 47915 -89.39.90.0/24 39737 -89.39.91.0/24 60076 -89.39.94.0/23 48161 -89.39.96.0/21 8926 -89.39.104.0/22 49981 -89.39.108.0/24 204373 -89.39.109.0/24 44807 -89.39.110.0/24 39629 -89.39.111.0/24 39543 -89.39.112.0/21 8926 -89.39.120.0/23 48161 -89.39.122.0/24 201341 -89.39.123.0/24 48161 -89.39.125.0/24 50886 -89.39.126.0/23 61139 -89.39.128.0/21 50324 -89.39.136.0/21 56478 -89.39.144.0/23 44252 -89.39.146.0/24 60194 -89.39.147.0/24 201665 -89.39.148.0/24 57446 -89.39.149.0/24 19624 -89.39.150.0/24 209519 -89.39.152.0/23 202491 -89.39.154.0/24 205624 -89.39.155.0/24 34977 -89.39.156.0/22 34977 -89.39.160.0/24 206451 -89.39.161.0/24 56951 -89.39.162.0/23 39855 -89.39.164.0/23 39855 -89.39.166.0/24 49229 -89.39.167.0/24 62235 -89.39.168.0/22 200125 -89.39.172.0/23 209706 -89.39.174.0/23 48563 -89.39.176.0/22 56654 -89.39.180.0/22 12479 -89.39.184.0/23 203872 -89.39.189.0/24 34358 -89.39.190.0/24 59892 -89.39.191.0/24 41055 -89.39.192.0/21 35371 -89.39.200.0/23 12874 -89.39.203.0/24 33823 -89.39.204.0/22 206089 -89.39.208.0/24 204213 -89.39.209.0/24 5588 -89.39.210.0/23 210176 -89.39.212.0/24 209559 -89.39.214.0/24 39737 -89.39.216.0/21 205457 -89.39.224.0/20 31638 -89.39.240.0/24 204373 -89.39.241.0/24 209559 -89.39.242.0/24 41055 -89.39.243.0/24 41496 -89.39.244.0/24 41496 -89.39.245.0/24 39737 -89.39.246.0/24 205275 -89.39.247.0/24 60194 -89.39.248.0/22 41850 -89.39.252.0/24 34450 -89.39.253.0/24 33977 -89.39.254.0/24 41950 -89.39.255.0/24 23470 -89.40.0.0/20 62282 -89.40.16.0/22 5588 -89.40.20.0/24 61279 -89.40.21.0/24 3223 -89.40.22.0/23 58022 -89.40.24.0/21 35512 -89.40.32.0/23 5588 -89.40.34.0/24 34714 -89.40.35.0/24 41055 -89.40.36.0/24 50939 -89.40.37.0/24 203872 -89.40.38.0/23 39501 -89.40.40.0/24 9009 -89.40.41.0/24 9050 -89.40.43.0/24 209706 -89.40.44.0/23 15692 -89.40.46.0/23 39861 -89.40.48.0/20 21299 -89.40.64.0/24 8680 -89.40.65.0/24 8708 -89.40.66.0/24 203872 -89.40.67.0/24 39543 -89.40.69.0/24 39737 -89.40.70.0/24 3280 -89.40.71.0/24 9009 -89.40.72.0/24 205275 -89.40.74.0/24 205262 -89.40.76.0/24 6910 -89.40.77.0/24 31362 -89.40.78.0/23 39501 -89.40.80.0/24 29119 -89.40.81.0/24 39081 -89.40.82.0/23 39569 -89.40.84.0/22 34471 -89.40.88.0/23 43443 -89.40.90.0/23 39501 -89.40.92.0/24 42831 -89.40.93.0/24 41496 -89.40.94.0/23 41496 -89.40.96.0/22 56729 -89.40.100.0/22 51626 -89.40.104.0/23 3223 -89.40.106.0/23 39501 -89.40.108.0/23 209519 -89.40.112.0/22 199653 -89.40.116.0/22 200185 -89.40.120.0/22 199883 -89.40.124.0/22 200185 -89.40.132.0/24 5588 -89.40.133.0/24 39425 -89.40.136.0/23 31362 -89.40.138.0/24 203320 -89.40.139.0/24 204373 -89.40.140.0/23 201117 -89.40.142.0/23 12874 -89.40.144.0/22 50599 -89.40.148.0/22 41858 -89.40.152.0/21 58224 -89.40.160.0/24 6910 -89.40.161.0/24 41055 -89.40.162.0/23 34416 -89.40.164.0/23 208913 -89.40.166.0/24 209706 -89.40.167.0/24 60694 -89.40.168.0/22 40975 -89.40.172.0/22 60087 -89.40.176.0/22 209706 -89.40.180.0/24 39855 -89.40.181.0/24 9009 -89.40.184.0/21 48537 -89.40.192.0/22 206026 -89.40.196.0/22 41953 -89.40.201.0/24 41496 -89.40.202.0/24 41496 -89.40.203.0/24 29119 -89.40.204.0/24 39737 -89.40.207.0/24 209574 -89.40.208.0/23 201117 -89.40.211.0/24 39572 -89.40.212.0/24 29098 -89.40.213.0/24 204373 -89.40.214.0/24 56430 -89.40.215.0/24 49383 -89.40.216.0/23 42695 -89.40.218.0/24 50940 -89.40.219.0/24 9009 -89.40.220.0/23 210176 -89.40.222.0/23 38995 -89.40.224.0/24 56458 -89.40.225.0/24 41573 -89.40.226.0/24 9050 -89.40.227.0/24 39668 -89.40.228.0/22 8926 -89.40.232.0/24 34450 -89.40.233.0/24 3223 -89.40.234.0/23 3269 -89.40.236.0/23 203872 -89.40.239.0/24 49252 -89.40.240.0/20 58224 -89.41.8.0/21 39501 -89.41.16.0/21 39501 -89.41.24.0/24 60194 -89.41.25.0/24 35664 -89.41.27.0/24 209686 -89.41.28.0/23 209686 -89.41.31.0/24 5588 -89.41.34.0/24 41110 -89.41.35.0/24 59790 -89.41.36.0/22 205275 -89.41.40.0/22 43754 -89.41.44.0/22 48517 -89.41.48.0/24 199508 -89.41.49.0/24 51490 -89.41.50.0/23 209559 -89.41.52.0/22 48517 -89.41.56.0/23 35261 -89.41.60.0/23 39756 -89.41.62.0/24 12310 -89.41.63.0/24 41571 -89.41.64.0/18 8926 -89.41.128.0/21 28919 -89.41.136.0/23 42123 -89.41.138.0/23 29256 -89.41.140.0/23 29256 -89.41.144.0/21 35725 -89.41.152.0/21 6910 -89.41.160.0/21 1653 -89.41.168.0/22 20857 -89.41.172.0/23 41011 -89.41.174.0/23 42568 -89.41.188.0/24 203872 -89.41.189.0/24 209559 -89.41.192.0/19 57218 -89.41.224.0/20 206819 -89.41.240.0/21 39501 -89.41.248.0/21 24611 -89.42.0.0/21 197589 -89.42.8.0/24 203098 -89.42.9.0/24 31102 -89.42.10.0/24 209559 -89.42.11.0/24 48881 -89.42.12.0/24 44252 -89.42.13.0/24 5588 -89.42.14.0/24 41571 -89.42.15.0/24 61389 -89.42.16.0/21 12310 -89.42.24.0/24 40975 -89.42.25.0/24 56550 -89.42.26.0/24 60118 -89.42.28.0/24 44682 -89.42.31.0/24 9009 -89.42.35.0/24 41571 -89.42.36.0/23 24695 -89.42.38.0/23 48931 -89.42.40.0/24 209706 -89.42.41.0/24 48459 -89.42.42.0/24 56430 -89.42.43.0/24 199508 -89.42.48.0/23 209519 -89.42.50.0/23 34304 -89.42.52.0/23 62388 -89.42.54.0/23 34762 -89.42.56.0/23 39501 -89.42.59.0/24 44682 -89.42.60.0/22 206026 -89.42.64.0/22 8926 -89.42.68.0/23 39501 -89.42.70.0/23 6910 -89.42.72.0/21 8926 -89.42.80.0/20 47148 -89.42.96.0/21 58224 -89.42.104.0/22 8926 -89.42.108.0/23 60453 -89.42.110.0/23 39758 -89.42.112.0/23 6910 -89.42.114.0/24 60194 -89.42.115.0/24 8680 -89.42.116.0/23 35261 -89.42.118.0/23 34916 -89.42.120.0/21 205457 -89.42.128.0/22 8926 -89.42.132.0/24 8751 -89.42.133.0/24 41732 -89.42.134.0/24 41732 -89.42.135.0/24 200651 -89.42.136.0/22 202391 -89.42.140.0/23 42695 -89.42.142.0/23 39569 -89.42.148.0/23 41852 -89.42.150.0/23 39501 -89.42.152.0/23 209686 -89.42.154.0/24 209559 -89.42.156.0/23 31609 -89.42.158.0/23 39737 -89.42.160.0/23 203230 -89.42.163.0/24 204930 -89.42.164.0/22 201704 -89.42.168.0/24 3257 -89.42.169.0/24 260 -89.42.170.0/24 3257 -89.42.171.0/24 62001 -89.42.176.0/23 42568 -89.42.178.0/24 50757 -89.42.180.0/22 8926 -89.42.184.0/21 58224 -89.42.192.0/22 41763 -89.42.196.0/22 202391 -89.42.200.0/22 42405 -89.42.204.0/22 206026 -89.42.208.0/22 204213 -89.42.212.0/24 49981 -89.42.213.0/24 209706 -89.42.214.0/24 41571 -89.42.215.0/24 209706 -89.42.216.0/21 205275 -89.42.224.0/22 8926 -89.42.228.0/23 39501 -89.42.230.0/24 31638 -89.42.231.0/24 48459 -89.42.232.0/23 56871 -89.42.234.0/23 42568 -89.42.236.0/23 199380 -89.42.238.0/23 59607 -89.42.240.0/21 35725 -89.42.248.0/21 6830 -89.43.0.0/21 50810 -89.43.8.0/22 50810 -89.43.12.0/23 50810 -89.43.14.0/23 61250 -89.43.16.0/22 41151 -89.43.20.0/22 206026 -89.43.24.0/22 34560 -89.43.28.0/22 51559 -89.43.32.0/24 203098 -89.43.33.0/24 8708 -89.43.34.0/23 8708 -89.43.38.0/24 31102 -89.43.40.0/21 34450 -89.43.48.0/24 203872 -89.43.50.0/24 34450 -89.43.51.0/24 209519 -89.43.52.0/23 8708 -89.43.54.0/24 41749 -89.43.55.0/24 8708 -89.43.56.0/22 3329 -89.43.60.0/24 42831 -89.43.61.0/24 44277 -89.43.62.0/24 41732 -89.43.63.0/24 8708 -89.43.64.0/22 51559 -89.43.68.0/23 209519 -89.43.70.0/23 39501 -89.43.73.0/24 34450 -89.43.74.0/23 29119 -89.43.76.0/23 29119 -89.43.78.0/24 42926 -89.43.79.0/24 60453 -89.43.84.0/24 29119 -89.43.85.0/24 202813 -89.43.86.0/23 29119 -89.43.88.0/21 39501 -89.43.104.0/21 6910 -89.43.112.0/22 49981 -89.43.116.0/22 199417 -89.43.120.0/21 41110 -89.43.128.0/22 8926 -89.43.136.0/22 31017 -89.43.140.0/22 39543 -89.43.144.0/21 58224 -89.43.152.0/21 34630 -89.43.160.0/23 39770 -89.43.164.0/22 206026 -89.43.168.0/22 8926 -89.43.174.0/24 56430 -89.43.175.0/24 42786 -89.43.176.0/22 6910 -89.43.180.0/23 6910 -89.43.182.0/23 39501 -89.43.184.0/22 3329 -89.43.188.0/23 39501 -89.43.190.0/23 35261 -89.43.192.0/24 12874 -89.43.193.0/24 39737 -89.43.194.0/23 44682 -89.43.196.0/23 50129 -89.43.199.0/24 57080 -89.43.200.0/23 42614 -89.43.202.0/23 25369 -89.43.206.0/23 34916 -89.43.208.0/21 6910 -89.43.216.0/21 58224 -89.43.224.0/21 58224 -89.43.232.0/21 1653 -89.43.240.0/21 39425 -89.43.248.0/21 35725 -89.44.0.0/21 1653 -89.44.8.0/24 48324 -89.44.11.0/24 41496 -89.44.12.0/22 21299 -89.44.16.0/20 12479 -89.44.32.0/24 203178 -89.44.33.0/24 13287 -89.44.34.0/24 198934 -89.44.35.0/24 198193 -89.44.36.0/22 198193 -89.44.40.0/22 56478 -89.44.44.0/23 41852 -89.44.46.0/24 41852 -89.44.47.0/24 5588 -89.44.48.0/20 12479 -89.44.64.0/21 29119 -89.44.72.0/22 3329 -89.44.76.0/24 16157 -89.44.77.0/24 203872 -89.44.78.0/23 6830 -89.44.80.0/24 57792 -89.44.81.0/24 202723 -89.44.82.0/24 62235 -89.44.83.0/24 64471 -89.44.84.0/23 39737 -89.44.86.0/24 39737 -89.44.87.0/24 64452 -89.44.88.0/22 61059 -89.44.92.0/22 3329 -89.44.96.0/22 3329 -89.44.100.0/23 56871 -89.44.102.0/24 44040 -89.44.103.0/24 42831 -89.44.104.0/24 41571 -89.44.105.0/24 62120 -89.44.108.0/24 31102 -89.44.109.0/24 3164 -89.44.110.0/23 35393 -89.44.114.0/24 39855 -89.44.115.0/24 9050 -89.44.120.0/23 5588 -89.44.122.0/24 61050 -89.44.123.0/24 31102 -89.44.124.0/24 8708 -89.44.125.0/24 41749 -89.44.126.0/23 39855 -89.44.128.0/21 58224 -89.44.136.0/24 6910 -89.44.137.0/24 205275 -89.44.138.0/23 5588 -89.44.140.0/23 207752 -89.44.142.0/23 48836 -89.44.144.0/24 42756 -89.44.150.0/23 9050 -89.44.152.0/22 8926 -89.44.156.0/22 3329 -89.44.160.0/22 12842 -89.44.164.0/23 12842 -89.44.166.0/23 34762 -89.44.168.0/23 203055 -89.44.176.0/21 58224 -89.44.184.0/22 12479 -89.44.188.0/24 20616 -89.44.190.0/23 39501 -89.44.192.0/21 6910 -89.44.200.0/24 5588 -89.44.204.0/24 59590 -89.44.205.0/24 47602 -89.44.206.0/24 31638 -89.44.207.0/24 6910 -89.44.209.0/24 34450 -89.44.210.0/24 209706 -89.44.211.0/24 60414 -89.44.213.0/24 209519 -89.44.214.0/23 39629 -89.44.216.0/21 3329 -89.44.224.0/22 39669 -89.44.228.0/24 35348 -89.44.229.0/24 39669 -89.44.230.0/23 39669 -89.44.232.0/22 39737 -89.44.236.0/24 31102 -89.44.237.0/24 9050 -89.44.238.0/23 34916 -89.44.245.0/24 56654 -89.44.246.0/24 48401 -89.44.247.0/24 47602 -89.44.248.0/21 1653 -89.45.0.0/22 43925 -89.45.8.0/24 39855 -89.45.10.0/24 9009 -89.45.11.0/24 62185 -89.45.12.0/23 39573 -89.45.14.0/24 39855 -89.45.15.0/24 205275 -89.45.16.0/21 34723 -89.45.24.0/21 31638 -89.45.32.0/23 34416 -89.45.34.0/24 34450 -89.45.35.0/24 3280 -89.45.36.0/22 24592 -89.45.40.0/22 8926 -89.45.44.0/23 6830 -89.45.46.0/23 31362 -89.45.48.0/20 197207 -89.45.64.0/23 42568 -89.45.67.0/24 44901 -89.45.70.0/23 23470 -89.45.72.0/21 35725 -89.45.82.0/24 51490 -89.45.83.0/24 205275 -89.45.88.0/24 61958 -89.45.91.0/24 204157 -89.45.92.0/23 56871 -89.45.94.0/24 43260 -89.45.95.0/24 31638 -89.45.96.0/20 6910 -89.45.112.0/21 58224 -89.45.120.0/22 3329 -89.45.124.0/23 47559 -89.45.128.0/20 29256 -89.45.144.0/21 35725 -89.45.152.0/21 58224 -89.45.160.0/23 42568 -89.45.162.0/24 9050 -89.45.163.0/24 44682 -89.45.164.0/24 39543 -89.45.165.0/24 39758 -89.45.166.0/23 41807 -89.45.168.0/21 48881 -89.45.176.0/20 201838 -89.45.192.0/21 34358 -89.45.200.0/21 43443 -89.45.208.0/23 6910 -89.45.210.0/23 34416 -89.45.212.0/22 198102 -89.45.216.0/22 205139 -89.45.220.0/22 62235 -89.45.226.0/23 42695 -89.45.228.0/24 6830 -89.45.232.0/21 1653 -89.45.240.0/21 29119 -89.45.248.0/21 43927 -89.46.0.0/22 39543 -89.46.4.0/24 39543 -89.46.5.0/24 59735 -89.46.6.0/23 5588 -89.46.8.0/22 42635 -89.46.12.0/22 41852 -89.46.16.0/21 1653 -89.46.24.0/21 39425 -89.46.32.0/24 62235 -89.46.33.0/24 58022 -89.46.35.0/24 62235 -89.46.36.0/24 206089 -89.46.37.0/24 62235 -89.46.38.0/24 41646 -89.46.39.0/24 62235 -89.46.42.0/24 6830 -89.46.43.0/24 62388 -89.46.46.0/24 39855 -89.46.48.0/21 6910 -89.46.56.0/22 6910 -89.46.60.0/23 39501 -89.46.64.0/20 31034 -89.46.80.0/21 42695 -89.46.88.0/23 201446 -89.46.90.0/24 201446 -89.46.91.0/24 2914 -89.46.92.0/24 6910 -89.46.93.0/24 8708 -89.46.94.0/23 39501 -89.46.100.0/22 9009 -89.46.104.0/21 31034 -89.46.112.0/23 56871 -89.46.115.0/24 39855 -89.46.116.0/22 42336 -89.46.120.0/24 61033 -89.46.122.0/24 47458 -89.46.123.0/24 6718 -89.46.124.0/24 41200 -89.46.126.0/23 44252 -89.46.128.0/22 39668 -89.46.132.0/22 209519 -89.46.136.0/22 201343 -89.46.140.0/23 50563 -89.46.142.0/23 201343 -89.46.152.0/21 44681 -89.46.160.0/22 39737 -89.46.164.0/22 8926 -89.46.168.0/21 50369 -89.46.176.0/21 51737 -89.46.184.0/21 12880 -89.46.192.0/21 31034 -89.46.200.0/22 57324 -89.46.204.0/23 57324 -89.46.207.0/24 57324 -89.46.208.0/21 44826 -89.46.216.0/24 198357 -89.46.218.0/23 198357 -89.46.220.0/23 44682 -89.46.222.0/23 25369 -89.46.224.0/21 6910 -89.46.232.0/21 39531 -89.46.240.0/24 49734 -89.46.241.0/24 50704 -89.46.242.0/24 51024 -89.46.243.0/24 47225 -89.46.244.0/24 51441 -89.46.245.0/24 44740 -89.46.246.0/24 9009 -89.46.247.0/24 62235 -89.46.248.0/22 210176 -89.46.252.0/22 3329 -89.47.0.0/24 34304 -89.47.1.0/24 50673 -89.47.2.0/24 14701 -89.47.3.0/24 31102 -89.47.4.0/22 201337 -89.47.8.0/23 34304 -89.47.10.0/24 31102 -89.47.11.0/24 34304 -89.47.12.0/24 34304 -89.47.13.0/24 14701 -89.47.14.0/24 34304 -89.47.16.0/20 12479 -89.47.32.0/23 31638 -89.47.34.0/24 41571 -89.47.35.0/24 48161 -89.47.36.0/24 6830 -89.47.37.0/24 62388 -89.47.38.0/23 49052 -89.47.40.0/23 44252 -89.47.42.0/24 41749 -89.47.43.0/24 59854 -89.47.44.0/22 3329 -89.47.48.0/22 44605 -89.47.52.0/24 9050 -89.47.53.0/24 205275 -89.47.54.0/24 62388 -89.47.55.0/24 58022 -89.47.56.0/23 209242 -89.47.58.0/24 34549 -89.47.60.0/23 34416 -89.47.63.0/24 209519 -89.47.64.0/20 57218 -89.47.80.0/21 29256 -89.47.88.0/24 41749 -89.47.89.0/24 6910 -89.47.90.0/24 39855 -89.47.91.0/24 39391 -89.47.92.0/23 50369 -89.47.94.0/24 47326 -89.47.95.0/24 39855 -89.47.96.0/20 39543 -89.47.112.0/22 39543 -89.47.116.0/23 39569 -89.47.118.0/23 39543 -89.47.120.0/24 39543 -89.47.121.0/24 21294 -89.47.122.0/23 39543 -89.47.124.0/22 39543 -89.47.128.0/19 57218 -89.47.160.0/21 62282 -89.47.171.0/24 199451 -89.47.172.0/22 62282 -89.47.179.0/24 62279 -89.47.183.0/24 15830 -89.47.184.0/21 1653 -89.47.192.0/22 47496 -89.47.196.0/22 202391 -89.47.200.0/22 202391 -89.47.204.0/22 6910 -89.47.208.0/23 6910 -89.47.210.0/24 6910 -89.47.211.0/24 56406 -89.47.212.0/22 6910 -89.47.216.0/21 6910 -89.47.224.0/21 39737 -89.47.232.0/23 47148 -89.47.235.0/24 60819 -89.47.236.0/22 203600 -89.47.240.0/22 205275 -89.47.244.0/23 35664 -89.47.246.0/24 39758 -89.47.247.0/24 39756 -89.47.249.0/24 209706 -89.47.250.0/23 9050 -89.47.252.0/24 58023 -89.47.254.0/24 51099 -89.47.255.0/24 31102 -89.48.0.0/13 5430 -89.64.0.0/12 6830 -89.80.0.0/13 5410 -89.88.0.0/14 5410 -89.92.0.0/17 5410 -89.92.128.0/20 5410 -89.92.144.0/22 5410 -89.92.148.0/24 21502 -89.92.149.0/24 5410 -89.92.150.0/23 5410 -89.92.152.0/21 5410 -89.92.160.0/20 5410 -89.92.176.0/22 5410 -89.92.180.0/23 5410 -89.92.182.0/24 21502 -89.92.183.0/24 5410 -89.92.184.0/21 5410 -89.92.192.0/20 5410 -89.92.208.0/21 5410 -89.92.216.0/23 5410 -89.92.218.0/23 21502 -89.92.220.0/22 5410 -89.92.224.0/20 5410 -89.92.240.0/21 5410 -89.92.248.0/23 5410 -89.92.250.0/23 21502 -89.92.252.0/22 5410 -89.93.0.0/21 5410 -89.93.8.0/23 5410 -89.93.10.0/24 21502 -89.93.11.0/24 5410 -89.93.12.0/22 5410 -89.93.16.0/20 5410 -89.93.32.0/19 5410 -89.93.64.0/18 5410 -89.93.128.0/19 5410 -89.93.160.0/23 5410 -89.93.162.0/23 21502 -89.93.164.0/22 5410 -89.93.168.0/21 5410 -89.93.176.0/20 5410 -89.93.192.0/19 5410 -89.93.224.0/22 5410 -89.93.228.0/23 5410 -89.93.230.0/24 21502 -89.93.231.0/24 5410 -89.93.232.0/22 5410 -89.93.236.0/24 21502 -89.93.237.0/24 5410 -89.93.238.0/23 5410 -89.93.240.0/20 5410 -89.94.0.0/15 5410 -89.96.0.0/15 12874 -89.98.0.0/15 6830 -89.100.0.0/14 6830 -89.104.0.0/19 8559 -89.104.32.0/19 29009 -89.104.64.0/19 39494 -89.104.96.0/20 31323 -89.104.116.0/22 31323 -89.104.120.0/22 31323 -89.104.124.0/23 31323 -89.104.126.0/24 206670 -89.104.127.0/24 43267 -89.104.128.0/19 39532 -89.104.160.0/19 49544 -89.104.192.0/20 34848 -89.104.208.0/21 34848 -89.104.216.0/22 34848 -89.104.220.0/24 34848 -89.104.221.0/24 31027 -89.104.222.0/23 34848 -89.104.224.0/19 39522 -89.105.0.0/19 29297 -89.105.32.0/19 16186 -89.105.64.0/19 41381 -89.105.96.0/19 39545 -89.105.136.0/21 42304 -89.105.144.0/23 39785 -89.105.146.0/24 39785 -89.105.149.0/24 39785 -89.105.150.0/23 39785 -89.105.152.0/23 39785 -89.105.155.0/24 39785 -89.105.156.0/23 39785 -89.105.158.0/24 39785 -89.105.160.0/19 39555 -89.105.192.0/20 24875 -89.105.208.0/21 24875 -89.105.216.0/23 21159 -89.105.218.0/23 24875 -89.105.220.0/22 24875 -89.105.224.0/22 6703 -89.105.230.0/23 6703 -89.105.234.0/23 6703 -89.105.236.0/22 6703 -89.105.244.0/23 6703 -89.105.252.0/24 6703 -89.106.0.0/21 39582 -89.106.8.0/22 39582 -89.106.12.0/24 39582 -89.106.15.0/24 39582 -89.106.16.0/20 39582 -89.106.32.0/19 1741 -89.106.64.0/19 12586 -89.106.96.0/22 42248 -89.106.100.0/24 42248 -89.106.101.0/24 13306 -89.106.102.0/23 13306 -89.106.104.0/23 13306 -89.106.106.0/24 42248 -89.106.107.0/24 13306 -89.106.108.0/23 13306 -89.106.110.0/23 42248 -89.106.112.0/21 42248 -89.106.120.0/22 42248 -89.106.124.0/23 42248 -89.106.126.0/24 42248 -89.106.127.0/24 13306 -89.106.128.0/21 39846 -89.106.136.0/21 51173 -89.106.152.0/21 41213 -89.106.160.0/21 50554 -89.106.168.0/21 29226 -89.106.176.0/21 14127 -89.106.184.0/21 5630 -89.106.192.0/21 44895 -89.106.200.0/21 39773 -89.106.208.0/21 39837 -89.106.216.0/21 39702 -89.106.224.0/21 199448 -89.106.232.0/21 9198 -89.106.240.0/21 31669 -89.106.248.0/21 5563 -89.107.0.0/21 42455 -89.107.16.0/21 15830 -89.107.24.0/22 51561 -89.107.28.0/22 62167 -89.107.32.0/21 12494 -89.107.44.0/24 41021 -89.107.46.0/23 41021 -89.107.48.0/21 39780 -89.107.56.0/21 59764 -89.107.64.0/21 30962 -89.107.72.0/21 44226 -89.107.80.0/21 21332 -89.107.88.0/21 39808 -89.107.96.0/21 41124 -89.107.104.0/21 44512 -89.107.112.0/21 39812 -89.107.120.0/21 39821 -89.107.128.0/21 40964 -89.107.136.0/22 201776 -89.107.140.0/24 201018 -89.107.141.0/24 31261 -89.107.142.0/23 31261 -89.107.144.0/21 39854 -89.107.152.0/21 39869 -89.107.160.0/21 16097 -89.107.168.0/21 25593 -89.107.176.0/21 15810 -89.107.184.0/21 12843 -89.107.192.0/21 40993 -89.107.200.0/21 49342 -89.107.208.0/20 49079 -89.107.224.0/21 43260 -89.107.232.0/21 29045 -89.107.240.0/21 40973 -89.107.248.0/24 20845 -89.107.249.0/24 51275 -89.107.250.0/23 29657 -89.107.252.0/24 29657 -89.107.253.0/24 12301 -89.108.0.0/18 41176 -89.108.64.0/23 197695 -89.108.66.0/24 197695 -89.108.68.0/23 197695 -89.108.70.0/23 43146 -89.108.72.0/21 43146 -89.108.80.0/21 43146 -89.108.88.0/24 43146 -89.108.89.0/24 197695 -89.108.90.0/23 43146 -89.108.92.0/23 43146 -89.108.96.0/24 43146 -89.108.97.0/24 197695 -89.108.98.0/24 43146 -89.108.99.0/24 197695 -89.108.100.0/23 43146 -89.108.102.0/24 43146 -89.108.103.0/24 197695 -89.108.104.0/21 43146 -89.108.112.0/24 43146 -89.108.114.0/23 43146 -89.108.116.0/22 43146 -89.108.120.0/21 43146 -89.108.128.0/22 31126 -89.108.132.0/24 202772 -89.108.133.0/24 31126 -89.108.134.0/24 201544 -89.108.135.0/24 31126 -89.108.136.0/24 62144 -89.108.137.0/24 31126 -89.108.138.0/23 31126 -89.108.140.0/22 31126 -89.108.144.0/20 31126 -89.108.160.0/19 31126 -89.108.192.0/18 39603 -89.109.0.0/18 12389 -89.109.64.0/18 15457 -89.109.128.0/19 34137 -89.109.160.0/22 34137 -89.109.164.0/24 34137 -89.109.165.0/24 12389 -89.109.166.0/23 34137 -89.109.168.0/21 34137 -89.109.176.0/20 34137 -89.109.192.0/19 12389 -89.109.224.0/21 12389 -89.109.232.0/21 25515 -89.109.240.0/20 25515 -89.110.0.0/18 12389 -89.110.64.0/18 12722 -89.110.128.0/18 24989 -89.110.192.0/18 13091 -89.111.0.0/18 12993 -89.111.64.0/18 39791 -89.111.128.0/24 48287 -89.111.129.0/24 5537 -89.111.130.0/24 48287 -89.111.131.0/24 5537 -89.111.132.0/23 48287 -89.111.134.0/24 5537 -89.111.135.0/24 43489 -89.111.136.0/21 5537 -89.111.144.0/20 5537 -89.111.160.0/20 5537 -89.111.176.0/20 41126 -89.111.192.0/19 25144 -89.111.224.0/20 25144 -89.111.240.0/24 21107 -89.111.241.0/24 25144 -89.111.242.0/23 25144 -89.111.244.0/22 25144 -89.111.248.0/21 25144 -89.112.0.0/17 20597 -89.112.128.0/17 3216 -89.113.0.0/20 16345 -89.113.16.0/21 39749 -89.113.24.0/21 3216 -89.113.32.0/19 3216 -89.113.64.0/21 8402 -89.113.72.0/22 3216 -89.113.76.0/22 8402 -89.113.80.0/22 3216 -89.113.84.0/22 8402 -89.113.88.0/22 8402 -89.113.92.0/22 3216 -89.113.96.0/23 3216 -89.113.98.0/24 16345 -89.113.99.0/24 3216 -89.113.100.0/24 3216 -89.113.101.0/24 16345 -89.113.102.0/24 16345 -89.113.103.0/24 3216 -89.113.104.0/21 42144 -89.113.112.0/21 44699 -89.113.120.0/22 3216 -89.113.124.0/23 3216 -89.113.126.0/24 3216 -89.113.127.0/24 16345 -89.113.128.0/21 42527 -89.113.136.0/21 16345 -89.113.144.0/20 3216 -89.113.160.0/20 8402 -89.113.176.0/21 3216 -89.113.184.0/22 8402 -89.113.188.0/23 3216 -89.113.190.0/23 8402 -89.113.192.0/18 8402 -89.114.0.0/15 12353 -89.116.0.0/15 15419 -89.118.0.0/15 8968 -89.120.0.0/14 9050 -89.124.0.0/17 25441 -89.124.128.0/18 25441 -89.124.192.0/19 25441 -89.124.224.0/20 25441 -89.124.240.0/23 25441 -89.124.242.0/23 34245 -89.124.244.0/24 34245 -89.124.245.0/24 25441 -89.124.246.0/23 25441 -89.124.248.0/21 25441 -89.125.0.0/16 25441 -89.126.0.0/16 25441 -89.127.0.0/17 25441 -89.127.128.0/18 25441 -89.127.192.0/19 25441 -89.127.224.0/20 25441 -89.127.240.0/21 25441 -89.127.248.0/22 25441 -89.127.252.0/23 34245 -89.127.254.0/23 25441 -89.128.0.0/14 12479 -89.132.0.0/14 6830 -89.136.0.0/15 6830 -89.138.0.0/15 1680 -89.140.0.0/22 6739 -89.140.4.0/23 6739 -89.140.6.0/24 6739 -89.140.7.0/24 12357 -89.140.8.0/21 6739 -89.140.16.0/23 206487 -89.140.18.0/23 6739 -89.140.20.0/23 6739 -89.140.22.0/24 6739 -89.140.23.0/24 12357 -89.140.24.0/21 6739 -89.140.32.0/21 6739 -89.140.40.0/23 43160 -89.140.42.0/23 6739 -89.140.44.0/22 6739 -89.140.48.0/20 6739 -89.140.64.0/19 6739 -89.140.96.0/20 6739 -89.140.112.0/24 43160 -89.140.113.0/24 6739 -89.140.114.0/23 6739 -89.140.116.0/22 6739 -89.140.120.0/24 43160 -89.140.121.0/24 6739 -89.140.122.0/24 43160 -89.140.123.0/24 6739 -89.140.124.0/22 6739 -89.140.128.0/19 6739 -89.140.160.0/20 6739 -89.140.176.0/21 6739 -89.140.184.0/23 6739 -89.140.186.0/24 6739 -89.140.187.0/24 12357 -89.140.188.0/22 6739 -89.140.192.0/22 6739 -89.140.196.0/24 6739 -89.140.197.0/24 43160 -89.140.198.0/23 6739 -89.140.200.0/21 6739 -89.140.208.0/20 6739 -89.140.224.0/19 6739 -89.141.0.0/16 12430 -89.142.0.0/15 5603 -89.144.0.0/19 12586 -89.144.32.0/21 12586 -89.144.40.0/22 12586 -89.144.44.0/23 12586 -89.144.46.0/24 12586 -89.144.47.0/24 35042 -89.144.48.0/20 12586 -89.144.64.0/18 34426 -89.144.128.0/18 39308 -89.144.192.0/18 8447 -89.145.0.0/18 21032 -89.145.64.0/18 29017 -89.145.128.0/19 25880 -89.145.160.0/21 61098 -89.145.172.0/23 43259 -89.145.174.0/23 5089 -89.145.176.0/21 198331 -89.145.184.0/21 198325 -89.145.192.0/19 5413 -89.145.224.0/20 5413 -89.145.240.0/21 5413 -89.145.248.0/22 5413 -89.145.252.0/23 5413 -89.145.254.0/24 3257 -89.145.255.0/24 5413 -89.146.0.0/18 28685 -89.146.64.0/18 12365 -89.146.128.0/18 9146 -89.146.192.0/18 8495 -89.147.0.0/21 39370 -89.147.64.0/20 20845 -89.147.80.0/20 34226 -89.147.99.0/24 20845 -89.147.100.0/22 201237 -89.147.104.0/21 41015 -89.147.112.0/21 20845 -89.147.120.0/22 41015 -89.147.124.0/22 199235 -89.147.128.0/18 204170 -89.147.192.0/18 39397 -89.148.0.0/18 5416 -89.148.64.0/20 12301 -89.148.80.0/22 12301 -89.148.84.0/23 12301 -89.148.86.0/23 44419 -89.148.88.0/23 44419 -89.148.90.0/23 12301 -89.148.92.0/23 44419 -89.148.94.0/23 12301 -89.148.96.0/19 12301 -89.148.128.0/18 59766 -89.148.192.0/18 15640 -89.149.0.0/21 12310 -89.149.8.0/22 12310 -89.149.12.0/23 12310 -89.149.14.0/24 20879 -89.149.15.0/24 12310 -89.149.16.0/23 12310 -89.149.18.0/24 20879 -89.149.19.0/24 12310 -89.149.20.0/23 12310 -89.149.22.0/23 20879 -89.149.24.0/23 20879 -89.149.26.0/23 12310 -89.149.28.0/22 12310 -89.149.32.0/20 12310 -89.149.48.0/22 12310 -89.149.52.0/23 20879 -89.149.54.0/23 12310 -89.149.56.0/24 20879 -89.149.57.0/24 12310 -89.149.58.0/23 12310 -89.149.60.0/23 12310 -89.149.62.0/23 20879 -89.149.64.0/18 31204 -89.149.128.0/18 3257 -89.149.192.0/18 60781 -89.150.0.0/23 39452 -89.150.16.0/20 50746 -89.150.32.0/20 28716 -89.150.48.0/24 39356 -89.150.49.0/24 28716 -89.150.50.0/23 28716 -89.150.52.0/22 28716 -89.150.56.0/21 28716 -89.150.128.0/18 39554 -89.150.192.0/18 39597 -89.151.0.0/18 29314 -89.151.64.0/18 24931 -89.151.128.0/18 12389 -89.151.192.0/18 34087 -89.152.0.0/14 2860 -89.156.0.0/14 21502 -89.160.0.0/17 29518 -89.160.128.0/17 12969 -89.161.0.0/18 39375 -89.161.64.0/19 39375 -89.161.96.0/21 39375 -89.161.104.0/22 39375 -89.161.108.0/23 39375 -89.161.128.0/17 12824 -89.162.0.0/18 29695 -89.162.64.0/21 29695 -89.162.72.0/24 16175 -89.162.73.0/24 29695 -89.162.74.0/23 29695 -89.162.76.0/22 29695 -89.162.80.0/20 29695 -89.162.96.0/19 29695 -89.162.128.0/19 12530 -89.162.160.0/20 12530 -89.162.176.0/21 12530 -89.162.184.0/22 12530 -89.162.188.0/23 12530 -89.162.190.0/24 12530 -89.162.191.0/24 44456 -89.162.192.0/18 12530 -89.163.0.0/17 12714 -89.163.128.0/17 24961 -89.164.0.0/18 13046 -89.164.64.0/20 13046 -89.164.80.0/21 13046 -89.164.88.0/23 13046 -89.164.90.0/24 41452 -89.164.91.0/24 13046 -89.164.92.0/24 5620 -89.164.93.0/24 13046 -89.164.94.0/23 13046 -89.164.96.0/24 42679 -89.164.97.0/24 13046 -89.164.98.0/24 43009 -89.164.99.0/24 13046 -89.164.100.0/22 13046 -89.164.104.0/21 13046 -89.164.112.0/20 13046 -89.164.128.0/17 13046 -89.165.0.0/17 39501 -89.165.128.0/20 48161 -89.165.144.0/24 48161 -89.165.146.0/23 48161 -89.165.148.0/22 48161 -89.165.152.0/21 48161 -89.165.160.0/19 48161 -89.165.192.0/18 48161 -89.166.0.0/17 16086 -89.166.128.0/17 9145 -89.167.0.0/17 35274 -89.167.128.0/24 3257 -89.167.129.0/24 53813 -89.167.130.0/24 3257 -89.167.131.0/24 62044 -89.167.132.0/23 3257 -89.167.134.0/24 20473 -89.167.135.0/24 21509 -89.167.136.0/21 3356 -89.167.144.0/20 3356 -89.167.160.0/21 3356 -89.167.168.0/22 3356 -89.167.172.0/24 3356 -89.167.173.0/24 42875 -89.167.174.0/23 3356 -89.167.176.0/22 3356 -89.167.180.0/24 3356 -89.167.181.0/24 35831 -89.167.182.0/23 3356 -89.167.184.0/21 3356 -89.167.192.0/20 3356 -89.167.208.0/22 3356 -89.167.212.0/24 3356 -89.167.213.0/24 3257 -89.167.214.0/23 3356 -89.167.216.0/24 3257 -89.167.217.0/24 3356 -89.167.218.0/23 3356 -89.167.220.0/24 44815 -89.167.221.0/24 3356 -89.167.222.0/23 3356 -89.167.224.0/22 3356 -89.167.228.0/24 35831 -89.167.229.0/24 3356 -89.167.230.0/23 3356 -89.167.232.0/23 3356 -89.167.234.0/23 3257 -89.167.236.0/23 3356 -89.167.238.0/24 3356 -89.167.239.0/24 47480 -89.167.240.0/21 3356 -89.167.248.0/21 3257 -89.168.0.0/16 9105 -89.169.0.0/16 31514 -89.170.0.0/16 34383 -89.171.0.0/16 12741 -89.172.0.0/16 5391 -89.173.0.0/16 6830 -89.174.0.0/20 5588 -89.174.16.0/22 5588 -89.174.20.0/24 62308 -89.174.21.0/24 5588 -89.174.22.0/24 35199 -89.174.23.0/24 5588 -89.174.24.0/24 5588 -89.174.25.0/24 60448 -89.174.26.0/23 60448 -89.174.28.0/22 5588 -89.174.32.0/23 2590 -89.174.34.0/23 5588 -89.174.36.0/22 5588 -89.174.40.0/21 5588 -89.174.48.0/20 5588 -89.174.64.0/19 5588 -89.174.96.0/20 5588 -89.174.112.0/22 5588 -89.174.116.0/24 206957 -89.174.117.0/24 5588 -89.174.118.0/23 5588 -89.174.120.0/21 5588 -89.174.128.0/19 59958 -89.174.160.0/23 59958 -89.174.162.0/24 59958 -89.174.163.0/24 61338 -89.174.164.0/22 5588 -89.174.168.0/23 5588 -89.174.170.0/24 35199 -89.174.171.0/24 5588 -89.174.172.0/22 5588 -89.174.176.0/22 5588 -89.174.180.0/24 5588 -89.174.181.0/24 201472 -89.174.182.0/23 5588 -89.174.184.0/24 60448 -89.174.185.0/24 5588 -89.174.186.0/23 5588 -89.174.188.0/22 5588 -89.174.192.0/20 59958 -89.174.208.0/22 59958 -89.174.212.0/22 5588 -89.174.216.0/21 5588 -89.174.224.0/22 5588 -89.174.228.0/24 206957 -89.174.229.0/24 2590 -89.174.230.0/23 5588 -89.174.232.0/21 5588 -89.174.240.0/20 5588 -89.175.0.0/19 8359 -89.175.32.0/21 8359 -89.175.40.0/22 8359 -89.175.44.0/23 34508 -89.175.46.0/23 8359 -89.175.48.0/21 8359 -89.175.56.0/23 8359 -89.175.58.0/23 34508 -89.175.60.0/22 8359 -89.175.64.0/20 8359 -89.175.80.0/21 8359 -89.175.88.0/23 34508 -89.175.90.0/23 8359 -89.175.92.0/22 8359 -89.175.96.0/19 8359 -89.175.128.0/17 8359 -89.176.0.0/15 6830 -89.178.0.0/17 8402 -89.178.128.0/20 8402 -89.178.144.0/22 8402 -89.178.148.0/22 3216 -89.178.152.0/21 3216 -89.178.160.0/19 8402 -89.178.192.0/18 8402 -89.179.0.0/17 8402 -89.179.128.0/21 8402 -89.179.136.0/23 8402 -89.179.138.0/24 8402 -89.179.139.0/24 3216 -89.179.140.0/22 8402 -89.179.144.0/20 8402 -89.179.160.0/19 8402 -89.179.192.0/18 8402 -89.180.0.0/15 2860 -89.182.0.0/15 13045 -89.184.0.0/19 39613 -89.184.32.0/19 35226 -89.184.64.0/19 28907 -89.184.96.0/21 39636 -89.184.104.0/23 39636 -89.184.106.0/24 39636 -89.184.107.0/24 57817 -89.184.108.0/22 39636 -89.184.112.0/20 39636 -89.184.128.0/19 39642 -89.184.160.0/19 39647 -89.184.192.0/20 206819 -89.184.208.0/21 206819 -89.184.216.0/22 206819 -89.184.220.0/23 206819 -89.184.222.0/24 206819 -89.185.0.0/24 60860 -89.185.1.0/24 57033 -89.185.2.0/23 57033 -89.185.4.0/22 57033 -89.185.8.0/21 57033 -89.185.16.0/21 57033 -89.185.24.0/21 34092 -89.185.32.0/19 8426 -89.185.64.0/24 39735 -89.185.65.0/24 57842 -89.185.66.0/23 200613 -89.185.68.0/23 39735 -89.185.70.0/24 200613 -89.185.71.0/24 39735 -89.185.72.0/22 39735 -89.185.76.0/23 9009 -89.185.78.0/24 9009 -89.185.80.0/22 41757 -89.185.84.0/22 39735 -89.185.88.0/21 39735 -89.185.96.0/19 24953 -89.185.128.0/19 41678 -89.185.160.0/19 39847 -89.185.192.0/19 39766 -89.185.224.0/19 24971 -89.186.0.0/23 39716 -89.186.2.0/23 42667 -89.186.4.0/22 39716 -89.186.8.0/22 39716 -89.186.12.0/23 39716 -89.186.14.0/24 42667 -89.186.15.0/24 39716 -89.186.16.0/22 42667 -89.186.20.0/24 42667 -89.186.21.0/24 39716 -89.186.22.0/24 39716 -89.186.23.0/24 42667 -89.186.24.0/22 39716 -89.186.28.0/23 42667 -89.186.30.0/23 39716 -89.186.32.0/19 39759 -89.186.64.0/19 5602 -89.186.96.0/23 20845 -89.186.98.0/23 12301 -89.186.100.0/23 12301 -89.186.102.0/23 20845 -89.186.104.0/23 12301 -89.186.106.0/23 20845 -89.186.108.0/22 20845 -89.186.112.0/22 20845 -89.186.116.0/23 12301 -89.186.118.0/23 20845 -89.186.120.0/21 20845 -89.186.128.0/19 16202 -89.186.160.0/19 16245 -89.186.192.0/21 59647 -89.186.200.0/21 13124 -89.186.208.0/21 41549 -89.186.216.0/21 39441 -89.186.224.0/21 20485 -89.186.232.0/23 20485 -89.186.234.0/24 15774 -89.186.235.0/24 20485 -89.186.236.0/22 20485 -89.186.240.0/20 20485 -89.187.0.0/22 39810 -89.187.32.0/20 25129 -89.187.48.0/21 25129 -89.187.56.0/22 25129 -89.187.60.0/23 25129 -89.187.62.0/23 48691 -89.187.64.0/19 31708 -89.187.96.0/19 21371 -89.187.128.0/19 35592 -89.187.160.0/19 60068 -89.187.192.0/22 43070 -89.187.196.0/23 43070 -89.187.200.0/21 21413 -89.187.208.0/21 57353 -89.187.216.0/21 57256 -89.187.224.0/19 43939 -89.188.0.0/19 31477 -89.188.32.0/21 40981 -89.188.40.0/22 40981 -89.188.44.0/24 12041 -89.188.45.0/24 40981 -89.188.46.0/23 40981 -89.188.48.0/20 40981 -89.188.64.0/21 24864 -89.188.72.0/21 48854 -89.188.80.0/20 199213 -89.188.96.0/23 29076 -89.188.98.0/24 3175 -89.188.99.0/24 29076 -89.188.100.0/22 29076 -89.188.104.0/23 29076 -89.188.106.0/23 3175 -89.188.108.0/23 3175 -89.188.110.0/23 29076 -89.188.112.0/24 29076 -89.188.113.0/24 3175 -89.188.114.0/24 29076 -89.188.115.0/24 3175 -89.188.116.0/24 3175 -89.188.117.0/24 29076 -89.188.118.0/23 29076 -89.188.120.0/24 29076 -89.188.121.0/24 12616 -89.188.122.0/24 3175 -89.188.123.0/24 29076 -89.188.124.0/23 29076 -89.188.126.0/24 29076 -89.188.127.0/24 3175 -89.188.128.0/19 39887 -89.188.160.0/24 47860 -89.188.161.0/24 39143 -89.188.162.0/24 8491 -89.188.163.0/24 39143 -89.188.164.0/23 28917 -89.188.166.0/24 58238 -89.188.167.0/24 28917 -89.188.168.0/21 39143 -89.188.176.0/20 39143 -89.188.192.0/22 39873 -89.188.196.0/22 25468 -89.188.200.0/21 25468 -89.188.208.0/22 25468 -89.188.221.0/24 206006 -89.188.222.0/23 199319 -89.188.224.0/19 20533 -89.189.0.0/19 8371 -89.189.32.0/20 13097 -89.189.48.0/22 48544 -89.189.52.0/23 39120 -89.189.54.0/24 39120 -89.189.55.0/24 13097 -89.189.56.0/21 13097 -89.189.64.0/19 30873 -89.189.96.0/19 41349 -89.189.128.0/19 24955 -89.189.160.0/20 40995 -89.189.176.0/20 34757 -89.189.192.0/20 29468 -89.189.208.0/22 25223 -89.189.212.0/22 29468 -89.189.216.0/22 29468 -89.189.220.0/22 29602 -89.189.224.0/19 28938 -89.190.0.0/19 199087 -89.190.32.0/19 12570 -89.190.64.0/19 41088 -89.190.96.0/19 41228 -89.190.128.0/22 209810 -89.190.132.0/22 210087 -89.190.136.0/22 35065 -89.190.140.0/22 38919 -89.190.144.0/22 49489 -89.190.148.0/22 17941 -89.190.152.0/22 203704 -89.190.156.0/24 51942 -89.190.157.0/24 3280 -89.190.158.0/24 22439 -89.190.159.0/24 62068 -89.190.160.0/19 20811 -89.190.192.0/21 8717 -89.190.200.0/23 8717 -89.190.202.0/24 35141 -89.190.203.0/24 8717 -89.190.204.0/24 8717 -89.190.205.0/24 35141 -89.190.206.0/24 29580 -89.190.207.0/24 8717 -89.190.208.0/24 29580 -89.190.209.0/24 8717 -89.190.210.0/24 8717 -89.190.211.0/24 35141 -89.190.212.0/23 8717 -89.190.214.0/24 35141 -89.190.215.0/24 8717 -89.190.216.0/23 35141 -89.190.218.0/23 8717 -89.190.220.0/23 8717 -89.190.222.0/23 35141 -89.190.224.0/19 20519 -89.191.0.0/19 2116 -89.191.32.0/19 34912 -89.191.64.0/19 34624 -89.191.96.0/19 20910 -89.191.128.0/20 8326 -89.191.144.0/20 12618 -89.191.160.0/20 41207 -89.191.192.0/21 1239 -89.191.200.0/22 1239 -89.191.204.0/24 1790 -89.191.205.0/24 1239 -89.191.206.0/23 1239 -89.191.208.0/20 1239 -89.191.224.0/24 205220 -89.191.225.0/24 202423 -89.191.226.0/24 35624 -89.191.227.0/24 202423 -89.191.228.0/23 46844 -89.191.230.0/23 202423 -89.191.232.0/24 24961 -89.191.233.0/24 202423 -89.191.234.0/24 40824 -89.191.235.0/24 202423 -89.191.236.0/22 200617 -89.191.240.0/20 28840 -89.196.0.0/16 197207 -89.197.0.0/16 47474 -89.198.0.0/15 197207 -89.200.0.0/17 1136 -89.200.128.0/24 5607 -89.200.136.0/21 50957 -89.200.144.0/21 30753 -89.200.152.0/21 43939 -89.200.160.0/21 50231 -89.200.168.0/21 25504 -89.200.176.0/21 41106 -89.200.184.0/21 12479 -89.200.192.0/21 6839 -89.200.200.0/21 31477 -89.200.208.0/21 34937 -89.200.216.0/24 34984 -89.200.217.0/24 201713 -89.200.218.0/23 34984 -89.200.220.0/23 198433 -89.200.224.0/21 13000 -89.200.232.0/21 43633 -89.200.240.0/23 208913 -89.200.242.0/24 57879 -89.200.243.0/24 60090 -89.200.244.0/24 43224 -89.200.246.0/24 208096 -89.200.247.0/24 31313 -89.200.248.0/21 34312 -89.201.0.0/17 20910 -89.201.128.0/17 34594 -89.202.0.0/17 24989 -89.202.128.0/18 3257 -89.202.192.0/20 3257 -89.202.208.0/22 3257 -89.202.212.0/23 3257 -89.202.214.0/24 3257 -89.202.215.0/24 3291 -89.202.216.0/21 3257 -89.202.224.0/19 3257 -89.203.0.0/17 21050 -89.203.128.0/17 25512 -89.204.0.0/17 12389 -89.204.128.0/21 39706 -89.204.136.0/21 6805 -89.204.144.0/21 39706 -89.204.152.0/21 6805 -89.204.176.0/20 13280 -89.204.192.0/20 13280 -89.204.208.0/20 5466 -89.204.224.0/19 13280 -89.205.0.0/17 41557 -89.205.128.0/17 31615 -89.206.0.0/18 29649 -89.206.64.0/18 559 -89.206.128.0/17 8426 -89.207.1.0/24 393226 -89.207.8.0/22 31662 -89.207.12.0/22 201863 -89.207.16.0/21 25751 -89.207.24.0/21 34968 -89.207.32.0/21 41330 -89.207.40.0/24 57844 -89.207.42.0/23 34549 -89.207.44.0/22 34549 -89.207.48.0/21 41203 -89.207.56.0/21 41073 -89.207.64.0/21 31724 -89.207.72.0/21 41123 -89.207.80.0/21 41094 -89.207.88.0/21 28891 -89.207.96.0/21 12958 -89.207.104.0/21 41160 -89.207.115.0/24 25222 -89.207.118.0/24 25222 -89.207.120.0/21 41437 -89.207.128.0/21 62370 -89.207.136.0/23 35670 -89.207.138.0/24 35670 -89.207.144.0/21 44286 -89.207.152.0/21 49162 -89.207.160.0/22 41383 -89.207.165.0/24 22334 -89.207.166.0/24 22334 -89.207.168.0/23 29164 -89.207.170.0/23 20860 -89.207.172.0/22 20860 -89.207.176.0/22 61317 -89.207.180.0/22 209715 -89.207.184.0/21 51796 -89.207.192.0/21 31042 -89.207.200.0/21 12964 -89.207.208.0/21 786 -89.207.216.0/21 41275 -89.207.224.0/24 36384 -89.207.228.0/24 45566 -89.207.229.0/24 36384 -89.207.231.0/24 45566 -89.207.232.0/21 196810 -89.207.240.0/21 41424 -89.207.248.0/21 6753 -89.208.0.0/21 202940 -89.208.8.0/21 12695 -89.208.16.0/21 12695 -89.208.24.0/22 12695 -89.208.28.0/23 12695 -89.208.30.0/24 44555 -89.208.31.0/24 61178 -89.208.32.0/20 12695 -89.208.48.0/22 12695 -89.208.52.0/22 21769 -89.208.56.0/21 202940 -89.208.64.0/24 201564 -89.208.65.0/24 12695 -89.208.66.0/23 12695 -89.208.68.0/22 12695 -89.208.72.0/21 12695 -89.208.80.0/22 12695 -89.208.84.0/22 47764 -89.208.88.0/21 12695 -89.208.96.0/23 47711 -89.208.98.0/23 48552 -89.208.100.0/24 48946 -89.208.101.0/24 12695 -89.208.102.0/24 12695 -89.208.103.0/24 42569 -89.208.104.0/22 42569 -89.208.108.0/22 12695 -89.208.112.0/23 42569 -89.208.114.0/24 198615 -89.208.115.0/24 56630 -89.208.116.0/23 44429 -89.208.118.0/24 209230 -89.208.119.0/24 204217 -89.208.120.0/23 42569 -89.208.122.0/24 44555 -89.208.124.0/22 201591 -89.208.128.0/21 202940 -89.208.136.0/21 12695 -89.208.144.0/20 12695 -89.208.160.0/20 12695 -89.208.176.0/22 12695 -89.208.180.0/22 21769 -89.208.184.0/22 12695 -89.208.188.0/23 12695 -89.208.190.0/23 24684 -89.208.192.0/22 12695 -89.208.196.0/22 47764 -89.208.200.0/21 12695 -89.208.208.0/22 47764 -89.208.212.0/22 12695 -89.208.216.0/21 47764 -89.208.224.0/22 12695 -89.208.228.0/22 47764 -89.208.232.0/21 12695 -89.208.240.0/20 25820 -89.209.0.0/16 8359 -89.210.0.0/16 3329 -89.211.0.0/18 8781 -89.211.64.0/19 8781 -89.211.96.0/19 42298 -89.211.128.0/17 42298 -89.212.0.0/16 34779 -89.213.0.0/21 8851 -89.213.8.0/21 31655 -89.213.16.0/20 31655 -89.213.32.0/21 31655 -89.213.40.0/21 8851 -89.213.48.0/20 8851 -89.213.64.0/18 8851 -89.213.128.0/17 8851 -89.214.0.0/16 42863 -89.215.0.0/21 13124 -89.215.8.0/23 29580 -89.215.10.0/24 8717 -89.215.11.0/24 29580 -89.215.12.0/22 13124 -89.215.16.0/20 13124 -89.215.32.0/21 13124 -89.215.40.0/22 8717 -89.215.44.0/22 13124 -89.215.48.0/24 8717 -89.215.49.0/24 29580 -89.215.50.0/23 29580 -89.215.52.0/22 13124 -89.215.56.0/21 13124 -89.215.64.0/18 13124 -89.215.128.0/18 13124 -89.215.192.0/20 13124 -89.215.208.0/22 13124 -89.215.212.0/24 13124 -89.215.213.0/24 16045 -89.215.214.0/23 13124 -89.215.216.0/21 13124 -89.215.224.0/21 13124 -89.215.232.0/23 13124 -89.215.234.0/24 13124 -89.215.235.0/24 8717 -89.215.236.0/22 8717 -89.215.240.0/20 13124 -89.216.0.0/16 31042 -89.217.0.0/16 6730 -89.218.0.0/16 9198 -89.219.0.0/22 45102 -89.219.8.0/21 43994 -89.219.19.0/24 43994 -89.219.20.0/23 41007 -89.219.22.0/23 59583 -89.219.24.0/22 35104 -89.219.28.0/24 51192 -89.219.29.0/24 59583 -89.219.30.0/24 59583 -89.219.32.0/22 48716 -89.219.36.0/22 39280 -89.219.40.0/21 39280 -89.219.48.0/20 39280 -89.219.64.0/18 12880 -89.219.128.0/22 3327 -89.219.134.0/23 3327 -89.219.136.0/21 3327 -89.219.144.0/21 3327 -89.219.152.0/23 3327 -89.219.154.0/24 3327 -89.219.156.0/22 39280 -89.219.161.0/24 3327 -89.219.162.0/24 3327 -89.219.164.0/22 39280 -89.219.168.0/24 3327 -89.219.172.0/22 39280 -89.219.176.0/20 39280 -89.219.192.0/18 12880 -89.220.0.0/17 8608 -89.220.128.0/17 33915 -89.221.0.0/20 42596 -89.221.16.0/20 12714 -89.221.32.0/20 6762 -89.221.48.0/20 43045 -89.221.64.0/21 3249 -89.221.80.0/20 41881 -89.221.96.0/20 8896 -89.221.112.0/20 34354 -89.221.128.0/22 41734 -89.221.160.0/20 31027 -89.221.176.0/20 41696 -89.221.192.0/20 41691 -89.221.208.0/20 197019 -89.221.226.0/23 202852 -89.221.228.0/22 43209 -89.221.232.0/22 43209 -89.221.239.0/24 196691 -89.221.240.0/23 1257 -89.221.242.0/24 50304 -89.221.243.0/24 61207 -89.221.244.0/23 50304 -89.221.246.0/24 3292 -89.221.247.0/24 1257 -89.221.248.0/21 1257 -89.222.0.0/17 34914 -89.222.128.0/20 34123 -89.222.144.0/21 34123 -89.222.152.0/22 34139 -89.222.156.0/24 34139 -89.222.157.0/24 34123 -89.222.158.0/23 34123 -89.222.160.0/22 34123 -89.222.164.0/22 42148 -89.222.168.0/21 34123 -89.222.176.0/22 34123 -89.222.180.0/22 50668 -89.222.184.0/21 34123 -89.222.192.0/20 34123 -89.222.208.0/23 34123 -89.222.210.0/23 42998 -89.222.212.0/22 34123 -89.222.216.0/21 50668 -89.222.224.0/21 34123 -89.222.232.0/22 42148 -89.222.236.0/22 34123 -89.222.240.0/22 34123 -89.222.244.0/22 50668 -89.222.248.0/21 34123 -89.223.0.0/20 31323 -89.223.16.0/24 206403 -89.223.17.0/24 206647 -89.223.18.0/23 206392 -89.223.20.0/24 198070 -89.223.21.0/24 200362 -89.223.22.0/23 21314 -89.223.24.0/21 201848 -89.223.32.0/19 42668 -89.223.64.0/21 49345 -89.223.72.0/21 56534 -89.223.80.0/21 56534 -89.223.88.0/21 201848 -89.223.96.0/24 209667 -89.223.97.0/24 56534 -89.223.98.0/24 208371 -89.223.99.0/24 208325 -89.223.100.0/24 203004 -89.223.101.0/24 56534 -89.223.102.0/23 56534 -89.223.104.0/21 59504 -89.223.112.0/20 31323 -89.223.128.0/17 21334 -89.224.0.0/14 12670 -89.228.0.0/14 21021 -89.232.0.0/19 20771 -89.232.32.0/19 16010 -89.232.64.0/18 28840 -89.232.128.0/19 30745 -89.232.183.0/24 35287 -89.232.187.0/24 30745 -89.232.188.0/22 30745 -89.232.192.0/18 12389 -89.233.0.0/24 3308 -89.233.1.0/24 9167 -89.233.2.0/23 9167 -89.233.4.0/22 9167 -89.233.8.0/21 9167 -89.233.16.0/20 9167 -89.233.32.0/19 9167 -89.233.64.0/19 9145 -89.233.96.0/21 3292 -89.233.104.0/22 29802 -89.233.112.0/20 34779 -89.233.128.0/18 12767 -89.233.192.0/18 29518 -89.234.0.0/18 15395 -89.234.64.0/18 31122 -89.234.129.0/24 31576 -89.234.131.0/24 198978 -89.234.132.0/24 199881 -89.234.136.0/23 199396 -89.234.140.0/24 51083 -89.234.141.0/24 60630 -89.234.142.0/23 197922 -89.234.146.0/23 209090 -89.234.148.0/23 197922 -89.234.151.0/24 61198 -89.234.152.0/24 200162 -89.234.156.0/23 197422 -89.234.174.0/23 204355 -89.234.176.0/23 203432 -89.234.178.0/24 203253 -89.234.180.0/22 62000 -89.234.186.0/24 204092 -89.234.188.0/24 206059 -89.234.190.0/24 39421 -89.234.192.0/20 41006 -89.234.208.0/20 206412 -89.234.224.0/21 206412 -89.234.232.0/21 41006 -89.234.240.0/21 41006 -89.234.248.0/21 206412 -89.235.0.0/18 29208 -89.235.64.0/22 39571 -89.235.68.0/22 24631 -89.235.72.0/21 24631 -89.235.80.0/20 58224 -89.235.96.0/22 43754 -89.235.100.0/22 58224 -89.235.104.0/21 58224 -89.235.112.0/20 58224 -89.235.128.0/18 34352 -89.235.192.0/18 8728 -89.236.0.0/21 45011 -89.236.8.0/23 45011 -89.236.10.0/24 15782 -89.236.11.0/24 45011 -89.236.12.0/23 15782 -89.236.14.0/24 15782 -89.236.15.0/24 45011 -89.236.16.0/24 15782 -89.236.17.0/24 45011 -89.236.18.0/23 45011 -89.236.20.0/22 45011 -89.236.24.0/23 45011 -89.236.26.0/24 45011 -89.236.27.0/24 15782 -89.236.28.0/22 15782 -89.236.32.0/23 15782 -89.236.34.0/24 15782 -89.236.35.0/24 45011 -89.236.36.0/23 45011 -89.236.38.0/24 45011 -89.236.39.0/24 15782 -89.236.40.0/22 15782 -89.236.44.0/23 15782 -89.236.46.0/24 15782 -89.236.47.0/24 45011 -89.236.48.0/24 45011 -89.236.49.0/24 15782 -89.236.50.0/23 15782 -89.236.52.0/24 15782 -89.236.53.0/24 45011 -89.236.54.0/23 45011 -89.236.56.0/22 45011 -89.236.60.0/22 15782 -89.236.64.0/18 30798 -89.236.128.0/18 15600 -89.236.192.0/18 34718 -89.237.0.0/21 28745 -89.237.8.0/22 28745 -89.237.12.0/22 20485 -89.237.16.0/20 28745 -89.237.32.0/22 20485 -89.237.36.0/23 20485 -89.237.38.0/24 20485 -89.237.39.0/24 28745 -89.237.40.0/24 28745 -89.237.41.0/24 20485 -89.237.43.0/24 20485 -89.237.44.0/23 20485 -89.237.46.0/24 20485 -89.237.47.0/24 28745 -89.237.48.0/22 28745 -89.237.52.0/23 28745 -89.237.54.0/24 28745 -89.237.55.0/24 20485 -89.237.56.0/22 28745 -89.237.60.0/24 20485 -89.237.61.0/24 28745 -89.237.62.0/23 28745 -89.237.64.0/18 12849 -89.237.128.0/19 29255 -89.237.160.0/23 29255 -89.237.162.0/24 35819 -89.237.163.0/24 29255 -89.237.164.0/23 29255 -89.237.166.0/24 29255 -89.237.167.0/24 35819 -89.237.168.0/21 29255 -89.237.176.0/20 29255 -89.237.192.0/18 12997 -89.238.0.0/18 41356 -89.238.64.0/18 34240 -89.238.128.0/18 9009 -89.238.192.0/18 6663 -89.239.0.0/20 35361 -89.239.16.0/21 35361 -89.239.24.0/21 56821 -89.239.32.0/20 15975 -89.239.48.0/20 25853 -89.239.64.0/18 31608 -89.239.128.0/18 12389 -89.239.192.0/18 44869 -89.240.0.0/14 13285 -89.244.0.0/14 8881 -89.248.0.0/20 41729 -89.248.16.0/20 39326 -89.248.32.0/20 42346 -89.248.48.0/20 31727 -89.248.64.0/24 8468 -89.248.72.0/21 50087 -89.248.80.0/20 43513 -89.248.96.0/20 48348 -89.248.112.0/24 24810 -89.248.113.0/24 12389 -89.248.114.0/23 12389 -89.248.116.0/22 12389 -89.248.120.0/21 12389 -89.248.128.0/20 42517 -89.248.144.0/20 20634 -89.248.160.0/21 202425 -89.248.168.0/22 202425 -89.248.172.0/23 202425 -89.248.174.0/24 202425 -89.248.176.0/20 34687 -89.248.208.0/20 34993 -89.248.224.0/22 31430 -89.248.228.0/23 31430 -89.248.230.0/24 61400 -89.248.231.0/24 208300 -89.248.232.0/23 31430 -89.248.234.0/24 31430 -89.248.235.0/24 61400 -89.248.238.0/23 31430 -89.248.240.0/20 41670 -89.249.0.0/20 43557 -89.249.16.0/20 200044 -89.249.40.0/23 198385 -89.249.44.0/23 15623 -89.249.48.0/21 41310 -89.249.56.0/21 50164 -89.249.64.0/20 9009 -89.249.80.0/20 15440 -89.249.96.0/20 41336 -89.249.112.0/21 41460 -89.249.128.0/20 41311 -89.249.144.0/20 12958 -89.249.160.0/20 2848 -89.249.176.0/21 20836 -89.249.184.0/21 49808 -89.249.192.0/20 49800 -89.249.208.0/20 41833 -89.249.224.0/23 39442 -89.249.226.0/24 41344 -89.249.227.0/24 39442 -89.249.228.0/22 39442 -89.249.232.0/21 39442 -89.249.240.0/20 31370 -89.250.0.0/20 41349 -89.250.16.0/20 44206 -89.250.32.0/23 41362 -89.250.34.0/24 41362 -89.250.36.0/24 41362 -89.250.39.0/24 41362 -89.250.40.0/24 41362 -89.250.42.0/24 41362 -89.250.44.0/23 41362 -89.250.46.0/24 41362 -89.250.48.0/20 41369 -89.250.65.0/24 41420 -89.250.66.0/23 41420 -89.250.80.0/20 41419 -89.250.96.0/21 5588 -89.250.104.0/21 29208 -89.250.112.0/20 25148 -89.250.128.0/20 12337 -89.250.144.0/20 41682 -89.250.160.0/21 12389 -89.250.168.0/23 12389 -89.250.171.0/24 12389 -89.250.174.0/23 12389 -89.250.176.0/20 29462 -89.250.192.0/20 41421 -89.250.208.0/21 29303 -89.250.216.0/23 29303 -89.250.218.0/24 29303 -89.250.219.0/24 47597 -89.250.220.0/23 29303 -89.250.222.0/24 42042 -89.250.223.0/24 29303 -89.250.224.0/20 41469 -89.250.240.0/20 41453 -89.251.0.0/22 397796 -89.251.8.0/22 9009 -89.251.12.0/24 14618 -89.251.16.0/20 31475 -89.251.32.0/20 41627 -89.251.48.0/20 29513 -89.251.64.0/20 41560 -89.251.88.0/24 41669 -89.251.91.0/24 41669 -89.251.92.0/24 41669 -89.251.96.0/20 30922 -89.251.112.0/21 42332 -89.251.128.0/20 42184 -89.251.144.0/21 29194 -89.251.152.0/22 29194 -89.251.156.0/23 29194 -89.251.158.0/24 29194 -89.251.159.0/24 51027 -89.251.160.0/20 48317 -89.251.176.0/20 41606 -89.251.192.0/20 8190 -89.251.208.0/20 64401 -89.251.224.0/20 30892 -89.251.240.0/20 198172 -89.252.0.0/24 31148 -89.252.3.0/24 31148 -89.252.4.0/22 31148 -89.252.8.0/23 31148 -89.252.11.0/24 31148 -89.252.12.0/23 31148 -89.252.16.0/23 31148 -89.252.19.0/24 31148 -89.252.20.0/22 31148 -89.252.24.0/23 31148 -89.252.27.0/24 31148 -89.252.30.0/23 31148 -89.252.33.0/24 31148 -89.252.34.0/23 31148 -89.252.36.0/22 31148 -89.252.40.0/22 31148 -89.252.46.0/23 31148 -89.252.48.0/24 31148 -89.252.50.0/23 31148 -89.252.53.0/24 31148 -89.252.55.0/24 31148 -89.252.56.0/21 31148 -89.252.64.0/18 16301 -89.252.128.0/21 51559 -89.252.136.0/23 51559 -89.252.138.0/24 207429 -89.252.139.0/24 51559 -89.252.140.0/22 51559 -89.252.144.0/24 207429 -89.252.145.0/24 51559 -89.252.146.0/23 51559 -89.252.148.0/23 51559 -89.252.150.0/24 51559 -89.252.151.0/24 207429 -89.252.152.0/24 51559 -89.252.154.0/24 207429 -89.252.155.0/24 51559 -89.252.156.0/22 51559 -89.252.160.0/20 51559 -89.252.176.0/22 51559 -89.252.180.0/23 51559 -89.252.182.0/23 42926 -89.252.184.0/22 42926 -89.252.188.0/22 51559 -89.252.192.0/22 8262 -89.252.196.0/24 35503 -89.252.197.0/24 35014 -89.252.198.0/23 8262 -89.252.200.0/24 8262 -89.252.201.0/24 61301 -89.252.202.0/24 201215 -89.252.203.0/24 8262 -89.252.204.0/22 205343 -89.252.208.0/21 8262 -89.252.216.0/22 25206 -89.252.220.0/23 34376 -89.252.222.0/24 197184 -89.252.223.0/24 8262 -89.252.224.0/23 49849 -89.252.226.0/24 49849 -89.252.227.0/24 41703 -89.252.228.0/22 8262 -89.252.232.0/21 25206 -89.252.240.0/22 8262 -89.252.244.0/23 44718 -89.252.246.0/24 8262 -89.252.247.0/24 197216 -89.252.248.0/22 25206 -89.252.252.0/22 51189 -89.253.0.0/18 12958 -89.253.64.0/18 33885 -89.253.128.0/18 13124 -89.253.192.0/18 41535 -89.254.64.0/18 41483 -89.254.128.0/18 41563 -89.254.192.0/18 12389 -89.255.0.0/18 39647 -89.255.64.0/19 41601 -89.255.96.0/24 13215 -89.255.97.0/24 41601 -89.255.98.0/23 13215 -89.255.101.0/24 41601 -89.255.103.0/24 13215 -89.255.105.0/24 204048 -89.255.117.0/24 202642 -89.255.118.0/23 13215 -89.255.120.0/24 206536 -89.255.128.0/18 44981 -89.255.192.0/22 47936 -89.255.196.0/22 210307 -89.255.200.0/21 8455 -89.255.208.0/22 39520 -89.255.212.0/22 54238 -89.255.216.0/21 59865 -89.255.224.0/20 50821 -89.255.240.0/21 41216 -89.255.248.0/23 60626 -89.255.250.0/24 60626 -89.255.251.0/24 28753 -89.255.252.0/24 60626 -89.255.253.0/24 16265 -89.255.254.0/23 59253 -90.0.0.0/10 3215 -90.64.0.0/16 15962 -90.65.0.0/16 3215 -90.66.0.0/16 3215 -90.68.0.0/15 12479 -90.70.0.0/16 3215 -90.71.0.0/16 12479 -90.73.0.0/16 3215 -90.74.0.0/15 12479 -90.76.0.0/16 3215 -90.77.0.0/16 12479 -90.78.0.0/15 3215 -90.80.0.0/16 3215 -90.82.48.0/21 3215 -90.82.56.0/22 3215 -90.82.60.0/23 3215 -90.82.192.0/18 3215 -90.83.0.0/16 3215 -90.84.12.0/23 47150 -90.84.39.0/24 2280 -90.84.40.0/21 2280 -90.84.48.0/20 5511 -90.84.64.0/20 8376 -90.84.128.0/20 5511 -90.84.144.0/22 28708 -90.84.151.0/24 5511 -90.84.184.0/21 2280 -90.84.192.0/21 2280 -90.84.224.0/20 8953 -90.84.240.0/21 2280 -90.84.255.0/24 5511 -90.85.0.0/23 3215 -90.85.2.0/24 198952 -90.85.3.0/24 3215 -90.85.4.0/22 3215 -90.85.8.0/21 3215 -90.85.16.0/20 3215 -90.85.32.0/22 3215 -90.85.36.0/24 206015 -90.85.37.0/24 3215 -90.85.38.0/24 3215 -90.85.39.0/24 199233 -90.85.40.0/21 3215 -90.85.48.0/20 3215 -90.85.64.0/18 3215 -90.85.128.0/17 3215 -90.86.0.0/15 3215 -90.88.0.0/14 3215 -90.92.0.0/15 3215 -90.94.0.0/16 12479 -90.95.0.0/16 8953 -90.96.0.0/17 28708 -90.96.128.0/18 28708 -90.96.192.0/21 28708 -90.99.0.0/16 3215 -90.100.0.0/14 3215 -90.104.0.0/15 3215 -90.106.0.0/16 12479 -90.107.0.0/16 3215 -90.108.0.0/15 3215 -90.110.0.0/16 3215 -90.112.0.0/15 3215 -90.114.0.0/16 3215 -90.115.0.0/17 3215 -90.115.128.0/18 3215 -90.115.192.0/20 3215 -90.115.208.0/23 16236 -90.115.210.0/23 3215 -90.115.212.0/22 3215 -90.115.216.0/21 3215 -90.115.224.0/19 3215 -90.116.0.0/14 3215 -90.120.0.0/16 3215 -90.125.0.0/16 3215 -90.126.0.0/15 3215 -90.128.0.0/16 1257 -90.129.0.0/17 1257 -90.129.128.0/18 1257 -90.129.192.0/19 1257 -90.129.224.0/19 39651 -90.130.0.0/15 1257 -90.132.0.0/16 1257 -90.133.0.0/17 1257 -90.133.128.0/20 39651 -90.133.144.0/21 39651 -90.133.152.0/22 39651 -90.133.156.0/22 34610 -90.133.160.0/20 34610 -90.133.176.0/24 34610 -90.133.177.0/24 39651 -90.133.178.0/23 39651 -90.133.180.0/22 39651 -90.133.184.0/21 39651 -90.133.192.0/18 1257 -90.134.0.0/15 1257 -90.136.0.0/14 1257 -90.140.0.0/16 1257 -90.141.0.0/24 39651 -90.141.1.0/24 2119 -90.141.2.0/23 2119 -90.141.4.0/24 2119 -90.141.5.0/24 39651 -90.141.6.0/23 39651 -90.141.8.0/23 39651 -90.141.10.0/24 2119 -90.141.11.0/24 39651 -90.141.12.0/23 2119 -90.141.14.0/23 39651 -90.141.16.0/20 39651 -90.141.32.0/21 1257 -90.141.40.0/24 39651 -90.141.41.0/24 34610 -90.141.42.0/23 34610 -90.141.44.0/22 34610 -90.141.48.0/21 34610 -90.141.56.0/22 34610 -90.141.60.0/23 34610 -90.141.62.0/23 39651 -90.141.64.0/18 1257 -90.141.128.0/17 1257 -90.142.0.0/19 1257 -90.142.32.0/19 39651 -90.142.64.0/18 1257 -90.142.128.0/17 1257 -90.143.0.0/18 48503 -90.143.64.0/18 1257 -90.143.128.0/18 48503 -90.143.192.0/23 48503 -90.143.194.0/23 1257 -90.143.196.0/22 48503 -90.143.200.0/21 48503 -90.143.208.0/20 1257 -90.143.224.0/19 1257 -90.144.0.0/18 1257 -90.144.64.0/19 39651 -90.144.96.0/19 1257 -90.144.128.0/17 1257 -90.145.0.0/19 29396 -90.145.32.0/20 29396 -90.145.48.0/21 29396 -90.145.56.0/24 41887 -90.145.57.0/24 29396 -90.145.58.0/23 29396 -90.145.60.0/22 29396 -90.145.64.0/18 29396 -90.145.128.0/17 29396 -90.146.0.0/16 12605 -90.147.0.0/16 137 -90.148.0.0/16 25019 -90.149.0.0/16 15659 -90.150.0.0/18 12389 -90.150.64.0/20 48190 -90.150.80.0/20 12389 -90.150.96.0/19 12389 -90.150.128.0/20 12389 -90.150.144.0/24 45000 -90.150.145.0/24 12389 -90.150.146.0/23 12389 -90.150.148.0/22 12389 -90.150.152.0/21 12389 -90.150.160.0/19 12389 -90.150.192.0/18 12389 -90.151.0.0/16 12389 -90.152.0.0/17 8220 -90.152.128.0/17 8562 -90.153.0.0/17 35776 -90.153.128.0/17 29256 -90.154.0.0/18 12389 -90.154.64.0/19 42610 -90.154.96.0/21 42610 -90.154.104.0/21 12389 -90.154.112.0/21 42610 -90.154.120.0/21 25515 -90.154.128.0/18 8866 -90.154.192.0/19 8866 -90.154.224.0/24 59620 -90.154.225.0/24 25374 -90.154.226.0/23 8866 -90.154.228.0/22 8866 -90.154.232.0/24 60560 -90.154.233.0/24 8866 -90.154.234.0/23 8866 -90.154.236.0/23 60560 -90.154.238.0/23 8866 -90.154.240.0/20 8866 -90.155.0.0/18 20712 -90.155.64.0/19 20712 -90.155.96.0/20 20712 -90.155.112.0/20 8789 -90.155.128.0/17 29124 -90.156.0.0/17 43939 -90.156.128.0/17 25532 -90.157.0.0/21 35154 -90.157.8.0/24 35154 -90.157.9.0/24 12389 -90.157.10.0/23 35154 -90.157.12.0/22 35154 -90.157.16.0/22 35154 -90.157.20.0/24 35154 -90.157.21.0/24 12389 -90.157.22.0/23 12389 -90.157.24.0/21 35154 -90.157.32.0/24 12389 -90.157.33.0/24 35154 -90.157.34.0/23 35154 -90.157.36.0/24 35154 -90.157.37.0/24 12389 -90.157.38.0/23 35154 -90.157.40.0/22 35154 -90.157.44.0/23 35154 -90.157.46.0/24 35154 -90.157.47.0/24 12389 -90.157.48.0/21 35154 -90.157.56.0/24 12389 -90.157.57.0/24 35154 -90.157.58.0/23 35154 -90.157.60.0/22 35154 -90.157.64.0/21 12389 -90.157.72.0/22 35154 -90.157.76.0/23 12389 -90.157.78.0/23 35154 -90.157.80.0/20 35154 -90.157.96.0/21 35154 -90.157.104.0/22 35154 -90.157.108.0/23 35154 -90.157.110.0/24 12389 -90.157.111.0/24 35154 -90.157.112.0/23 35154 -90.157.114.0/24 35154 -90.157.115.0/24 12389 -90.157.116.0/23 35154 -90.157.118.0/24 35154 -90.157.119.0/24 12389 -90.157.120.0/21 35154 -90.157.128.0/17 8591 -90.158.0.0/20 9021 -90.158.16.0/24 9021 -90.158.17.0/24 206409 -90.158.18.0/23 9021 -90.158.20.0/22 9021 -90.158.24.0/21 9021 -90.158.32.0/19 9021 -90.158.64.0/20 9021 -90.158.80.0/24 43716 -90.158.81.0/24 9021 -90.158.82.0/23 9021 -90.158.84.0/22 9021 -90.158.88.0/21 9021 -90.158.96.0/19 9021 -90.158.128.0/17 9021 -90.159.0.0/20 9021 -90.159.16.0/21 9021 -90.159.24.0/22 9021 -90.159.28.0/24 29286 -90.159.29.0/24 9021 -90.159.30.0/24 9021 -90.159.31.0/24 29286 -90.159.32.0/19 9021 -90.159.64.0/18 9021 -90.159.128.0/18 9021 -90.159.192.0/20 9021 -90.159.208.0/20 29286 -90.159.224.0/20 29286 -90.159.240.0/20 9021 -90.160.0.0/17 12479 -90.160.128.0/18 12479 -90.160.192.0/23 12479 -90.160.194.0/24 12479 -90.160.195.0/24 20921 -90.160.196.0/22 12479 -90.160.200.0/21 12479 -90.160.208.0/20 12479 -90.160.224.0/19 12479 -90.161.0.0/16 12479 -90.162.0.0/15 12479 -90.164.0.0/14 12479 -90.168.0.0/13 12479 -90.176.0.0/19 28952 -90.176.32.0/19 5610 -90.176.64.0/18 5610 -90.176.128.0/17 5610 -90.177.0.0/16 5610 -90.178.0.0/15 5610 -90.180.0.0/14 5610 -90.184.0.0/15 39554 -90.186.0.0/16 3209 -90.187.0.0/16 31334 -90.188.0.0/19 12846 -90.188.32.0/19 12389 -90.188.64.0/18 12389 -90.188.128.0/17 12389 -90.189.0.0/17 12389 -90.189.128.0/23 12389 -90.189.130.0/24 12389 -90.189.131.0/24 16054 -90.189.132.0/22 12389 -90.189.136.0/21 12389 -90.189.144.0/20 12389 -90.189.160.0/19 12389 -90.189.192.0/18 12389 -90.190.0.0/15 3249 -90.192.0.0/11 5607 -90.224.0.0/12 3301 -90.240.0.0/12 5378 -91.0.0.0/10 3320 -91.64.0.0/14 31334 -91.68.0.0/14 15557 -91.72.0.0/14 15802 -91.76.0.0/14 8359 -91.80.0.0/19 30722 -91.80.32.0/21 30722 -91.80.46.0/24 30722 -91.80.128.0/17 30722 -91.81.0.0/16 30722 -91.82.0.0/21 20845 -91.82.8.0/21 12301 -91.82.16.0/21 12301 -91.82.24.0/21 20845 -91.82.32.0/21 20845 -91.82.40.0/21 12301 -91.82.48.0/21 12301 -91.82.56.0/23 20845 -91.82.58.0/23 12301 -91.82.60.0/23 20845 -91.82.62.0/23 12301 -91.82.64.0/21 20845 -91.82.72.0/21 12301 -91.82.80.0/23 12301 -91.82.82.0/23 20845 -91.82.84.0/22 12301 -91.82.88.0/21 12301 -91.82.96.0/19 12301 -91.82.128.0/23 12301 -91.82.130.0/23 20845 -91.82.132.0/22 20845 -91.82.144.0/22 20845 -91.82.148.0/22 12301 -91.82.152.0/21 12301 -91.82.168.0/22 20845 -91.82.172.0/23 20845 -91.82.174.0/23 12301 -91.82.176.0/21 20845 -91.82.184.0/22 12301 -91.82.188.0/22 20845 -91.82.192.0/20 12301 -91.82.208.0/23 12301 -91.82.210.0/23 20845 -91.82.212.0/22 20845 -91.82.216.0/21 12301 -91.82.224.0/22 12301 -91.82.228.0/22 20845 -91.82.232.0/22 20845 -91.82.236.0/22 12301 -91.82.240.0/22 20845 -91.82.244.0/22 12301 -91.82.248.0/23 12301 -91.82.250.0/23 20845 -91.82.252.0/22 12301 -91.83.0.0/19 20845 -91.83.32.0/21 20845 -91.83.40.0/21 12301 -91.83.48.0/22 12301 -91.83.52.0/22 20845 -91.83.56.0/21 12301 -91.83.64.0/20 12301 -91.83.80.0/21 12301 -91.83.88.0/22 12301 -91.83.92.0/23 12301 -91.83.94.0/23 20845 -91.83.96.0/22 12301 -91.83.100.0/23 12301 -91.83.102.0/23 20845 -91.83.104.0/22 12301 -91.83.108.0/23 12301 -91.83.110.0/23 20845 -91.83.112.0/21 42232 -91.83.120.0/23 20845 -91.83.122.0/23 12301 -91.83.124.0/22 12301 -91.83.128.0/21 12301 -91.83.136.0/21 20845 -91.83.144.0/23 20845 -91.83.146.0/23 12301 -91.83.148.0/22 12301 -91.83.152.0/23 12301 -91.83.154.0/23 20845 -91.83.156.0/22 12301 -91.83.160.0/20 12301 -91.83.176.0/22 12301 -91.83.180.0/22 20845 -91.83.184.0/21 20845 -91.83.192.0/20 20845 -91.83.208.0/20 12301 -91.83.224.0/20 12301 -91.83.240.0/21 12301 -91.83.248.0/22 12301 -91.83.252.0/23 20845 -91.83.254.0/23 12301 -91.84.0.0/15 12513 -91.86.0.0/15 47377 -91.88.0.0/16 41334 -91.89.0.0/16 6830 -91.90.0.0/21 41558 -91.90.8.0/21 41631 -91.90.16.0/21 13307 -91.90.24.0/21 35100 -91.90.32.0/21 41771 -91.90.40.0/21 50304 -91.90.48.0/21 42122 -91.90.56.0/21 42039 -91.90.64.0/21 2119 -91.90.72.0/21 31242 -91.90.80.0/22 18530 -91.90.88.0/21 16276 -91.90.96.0/21 34177 -91.90.104.0/21 49788 -91.90.112.0/21 49787 -91.90.120.0/21 42568 -91.90.128.0/20 25046 -91.90.144.0/20 41412 -91.90.160.0/20 33901 -91.90.176.0/20 50481 -91.90.192.0/24 21100 -91.90.193.0/24 204957 -91.90.194.0/24 50979 -91.90.195.0/24 204957 -91.90.196.0/24 64481 -91.90.198.0/23 206066 -91.90.200.0/21 25455 -91.90.208.0/24 209416 -91.90.209.0/24 35658 -91.90.210.0/24 209885 -91.90.211.0/24 209904 -91.90.212.0/22 57487 -91.90.216.0/22 21001 -91.90.220.0/24 209890 -91.90.221.0/24 44401 -91.90.222.0/23 202387 -91.90.224.0/22 24589 -91.90.228.0/23 15899 -91.90.230.0/23 24589 -91.90.232.0/24 24589 -91.90.233.0/24 206541 -91.90.234.0/23 24589 -91.90.236.0/22 24589 -91.90.240.0/23 15899 -91.90.242.0/24 15899 -91.90.243.0/24 24589 -91.90.244.0/24 24589 -91.90.245.0/24 15899 -91.90.246.0/23 24589 -91.90.248.0/21 24589 -91.91.0.0/16 35238 -91.92.0.0/23 34224 -91.92.2.0/24 34224 -91.92.6.0/24 43561 -91.92.8.0/22 43561 -91.92.13.0/24 43561 -91.92.14.0/23 43561 -91.92.16.0/24 43561 -91.92.18.0/23 206296 -91.92.21.0/24 43561 -91.92.24.0/21 43561 -91.92.32.0/24 25211 -91.92.36.0/22 25211 -91.92.40.0/21 25211 -91.92.54.0/24 208737 -91.92.55.0/24 62106 -91.92.56.0/21 62106 -91.92.65.0/24 34224 -91.92.66.0/24 34224 -91.92.67.0/24 43561 -91.92.68.0/23 34224 -91.92.70.0/24 34224 -91.92.71.0/24 50837 -91.92.72.0/21 39251 -91.92.80.0/20 39251 -91.92.96.0/21 39251 -91.92.104.0/24 58224 -91.92.105.0/24 34224 -91.92.106.0/23 48917 -91.92.108.0/24 44901 -91.92.109.0/24 34224 -91.92.110.0/24 203095 -91.92.111.0/24 44901 -91.92.112.0/23 197328 -91.92.114.0/24 58224 -91.92.115.0/24 50360 -91.92.120.0/24 201133 -91.92.121.0/24 12880 -91.92.122.0/23 12880 -91.92.124.0/22 12880 -91.92.128.0/24 44901 -91.92.129.0/24 12880 -91.92.130.0/23 12880 -91.92.132.0/23 12880 -91.92.134.0/23 58224 -91.92.136.0/24 44901 -91.92.139.0/24 34224 -91.92.144.0/24 44901 -91.92.145.0/24 58224 -91.92.146.0/23 58224 -91.92.148.0/22 58224 -91.92.156.0/22 58224 -91.92.162.0/23 204281 -91.92.164.0/22 58224 -91.92.168.0/22 43548 -91.92.172.0/22 58224 -91.92.176.0/23 50837 -91.92.180.0/22 12880 -91.92.184.0/21 12880 -91.92.192.0/23 58224 -91.92.194.0/24 198228 -91.92.196.0/24 49882 -91.92.197.0/24 34224 -91.92.198.0/23 34224 -91.92.204.0/22 12880 -91.92.208.0/21 12880 -91.92.219.0/24 34224 -91.92.220.0/22 58224 -91.92.228.0/23 58224 -91.92.230.0/24 34224 -91.92.231.0/24 58224 -91.92.232.0/24 44796 -91.92.233.0/24 44017 -91.92.234.0/23 44017 -91.92.236.0/22 58224 -91.92.240.0/23 34368 -91.92.244.0/22 34368 -91.92.248.0/23 34368 -91.92.251.0/24 34368 -91.93.0.0/19 34984 -91.93.32.0/20 34984 -91.93.48.0/23 34984 -91.93.50.0/24 60027 -91.93.51.0/24 34984 -91.93.52.0/22 34984 -91.93.56.0/21 34984 -91.93.64.0/18 34984 -91.93.128.0/19 34984 -91.93.160.0/20 34984 -91.93.176.0/21 34984 -91.93.184.0/23 34984 -91.93.186.0/24 34984 -91.93.187.0/24 35547 -91.93.188.0/22 34984 -91.93.192.0/18 34984 -91.94.0.0/16 5617 -91.95.0.0/16 3246 -91.96.0.0/15 9145 -91.98.0.0/20 16322 -91.98.16.0/21 16322 -91.98.24.0/22 16322 -91.98.28.0/22 60976 -91.98.32.0/19 16322 -91.98.64.0/19 16322 -91.98.96.0/21 60976 -91.98.104.0/21 16322 -91.98.112.0/20 16322 -91.98.128.0/17 16322 -91.99.0.0/18 16322 -91.99.64.0/21 16322 -91.99.72.0/22 60976 -91.99.76.0/22 16322 -91.99.80.0/20 16322 -91.99.96.0/21 60976 -91.99.104.0/21 16322 -91.99.112.0/20 16322 -91.99.128.0/18 16322 -91.99.192.0/20 16322 -91.99.208.0/21 16322 -91.99.216.0/22 60976 -91.99.220.0/22 16322 -91.99.224.0/19 16322 -91.100.0.0/15 15516 -91.102.0.0/21 21470 -91.102.8.0/21 20647 -91.102.16.0/21 44995 -91.102.24.0/21 41741 -91.102.32.0/24 42642 -91.102.34.0/24 42642 -91.102.35.0/24 198095 -91.102.40.0/24 2686 -91.102.41.0/24 49744 -91.102.42.0/24 49744 -91.102.48.0/21 13284 -91.102.64.0/21 9009 -91.102.72.0/21 39045 -91.102.80.0/21 43406 -91.102.88.0/21 12617 -91.102.96.0/21 8518 -91.102.104.0/21 29286 -91.102.112.0/21 31229 -91.102.120.0/23 5613 -91.102.128.0/21 41849 -91.102.136.0/21 34928 -91.102.144.0/22 203308 -91.102.148.0/24 41890 -91.102.149.0/24 203308 -91.102.150.0/23 203308 -91.102.152.0/21 41853 -91.102.160.0/21 41801 -91.102.176.0/22 196824 -91.102.184.0/23 41963 -91.102.189.0/24 2856 -91.102.190.0/23 2856 -91.102.192.0/21 35518 -91.102.200.0/23 51764 -91.102.202.0/24 51764 -91.102.203.0/24 41942 -91.102.204.0/22 51764 -91.102.208.0/21 41880 -91.102.216.0/21 41904 -91.102.224.0/21 41897 -91.102.233.0/24 196659 -91.102.234.0/23 196659 -91.102.236.0/22 196659 -91.102.240.0/21 42241 -91.102.248.0/21 34752 -91.103.0.0/21 47720 -91.103.8.0/24 28693 -91.103.9.0/24 9911 -91.103.10.0/24 33661 -91.103.12.0/22 200062 -91.103.16.0/22 15695 -91.103.21.0/24 15695 -91.103.23.0/24 15695 -91.103.24.0/21 42109 -91.103.32.0/23 41012 -91.103.34.0/24 5607 -91.103.35.0/24 42390 -91.103.36.0/24 42390 -91.103.38.0/24 42390 -91.103.40.0/22 41935 -91.103.45.0/24 41935 -91.103.47.0/24 41935 -91.103.48.0/24 31262 -91.103.56.0/23 41965 -91.103.58.0/24 199062 -91.103.59.0/24 41965 -91.103.60.0/22 41965 -91.103.64.0/21 41983 -91.103.72.0/21 24689 -91.103.81.0/24 202013 -91.103.82.0/24 174 -91.103.83.0/24 47973 -91.103.88.0/22 42108 -91.103.92.0/23 42108 -91.103.94.0/24 42108 -91.103.95.0/24 34410 -91.103.96.0/21 15440 -91.103.104.0/23 47151 -91.103.106.0/23 51162 -91.103.108.0/24 209461 -91.103.110.0/23 201776 -91.103.112.0/21 41998 -91.103.120.0/21 41972 -91.103.128.0/21 3213 -91.103.136.0/21 39894 -91.103.144.0/22 51399 -91.103.148.0/23 204062 -91.103.150.0/24 204062 -91.103.151.0/24 206276 -91.103.160.0/21 42000 -91.103.168.0/21 43620 -91.103.176.0/21 42009 -91.103.184.0/21 42010 -91.103.192.0/22 12500 -91.103.196.0/22 25511 -91.103.204.0/22 21106 -91.103.208.0/21 8595 -91.103.216.0/21 198047 -91.103.224.0/21 21023 -91.103.232.0/21 16347 -91.103.240.0/21 3320 -91.103.248.0/22 201884 -91.103.252.0/24 202306 -91.103.253.0/24 200401 -91.103.254.0/24 201231 -91.103.255.0/24 15440 -91.104.0.0/16 8448 -91.105.0.0/17 12578 -91.105.128.0/24 21127 -91.105.129.0/24 15774 -91.105.130.0/23 21127 -91.105.132.0/22 21127 -91.105.136.0/22 21127 -91.105.140.0/23 21127 -91.105.142.0/24 15774 -91.105.143.0/24 21127 -91.105.144.0/22 21127 -91.105.148.0/23 21127 -91.105.150.0/24 21127 -91.105.151.0/24 15774 -91.105.152.0/21 21127 -91.105.160.0/21 21127 -91.105.168.0/22 21127 -91.105.172.0/23 21127 -91.105.174.0/24 21127 -91.105.175.0/24 15774 -91.105.176.0/22 21127 -91.105.180.0/22 15774 -91.105.184.0/21 21127 -91.105.192.0/21 197349 -91.105.200.0/22 199103 -91.105.204.0/23 199168 -91.105.208.0/21 3238 -91.105.216.0/21 33915 -91.105.224.0/24 47219 -91.105.232.0/21 6870 -91.105.240.0/21 33873 -91.105.248.0/21 198936 -91.106.0.0/20 51906 -91.106.16.0/21 15704 -91.106.24.0/23 47223 -91.106.27.0/24 197177 -91.106.30.0/23 47223 -91.106.32.0/20 58322 -91.106.48.0/22 58322 -91.106.52.0/24 50710 -91.106.53.0/24 58322 -91.106.54.0/23 58322 -91.106.56.0/22 58322 -91.106.60.0/24 50710 -91.106.61.0/24 58322 -91.106.62.0/23 58322 -91.106.64.0/19 56503 -91.106.96.0/20 9038 -91.106.112.0/21 16083 -91.106.120.0/21 12611 -91.106.128.0/18 198930 -91.106.192.0/21 42695 -91.106.200.0/21 198610 -91.106.208.0/21 58326 -91.106.224.0/21 35467 -91.106.232.0/21 12389 -91.106.240.0/20 30764 -91.107.0.0/18 48781 -91.107.64.0/21 49063 -91.107.72.0/21 25455 -91.107.80.0/22 203410 -91.107.84.0/24 202532 -91.107.86.0/23 61400 -91.107.88.0/21 25455 -91.107.96.0/21 28840 -91.107.112.0/24 203097 -91.107.114.0/24 202880 -91.107.115.0/24 202768 -91.107.116.0/24 13213 -91.107.117.0/24 207235 -91.107.118.0/24 206760 -91.107.119.0/24 202423 -91.107.120.0/22 205220 -91.107.124.0/23 58286 -91.107.126.0/24 202423 -91.107.127.0/24 13213 -91.107.128.0/17 24940 -91.108.4.0/22 62041 -91.108.8.0/22 62041 -91.108.12.0/22 59930 -91.108.16.0/22 62014 -91.108.20.0/22 44907 -91.108.24.0/21 42065 -91.108.33.0/24 42065 -91.108.34.0/24 204941 -91.108.35.0/24 47133 -91.108.41.0/24 57246 -91.108.42.0/24 202432 -91.108.43.0/24 203703 -91.108.44.0/22 43106 -91.108.56.0/23 62014 -91.108.58.0/23 62041 -91.108.60.0/22 29613 -91.108.64.0/19 62255 -91.108.96.0/20 201596 -91.108.112.0/20 31400 -91.108.128.0/19 58256 -91.108.160.0/21 41107 -91.108.168.0/21 48642 -91.108.176.0/22 57858 -91.108.180.0/23 57858 -91.108.182.0/24 57858 -91.108.183.0/24 60485 -91.108.192.0/19 207710 -91.108.224.0/19 207795 -91.109.0.0/23 20738 -91.109.2.0/23 8972 -91.109.4.0/22 20738 -91.109.8.0/21 8972 -91.109.16.0/20 28753 -91.109.32.0/21 25424 -91.109.40.0/21 59402 -91.109.48.0/21 31319 -91.109.56.0/21 21176 -91.109.64.0/19 49779 -91.109.96.0/21 39141 -91.109.104.0/21 58224 -91.109.112.0/21 42831 -91.109.120.0/21 58308 -91.109.128.0/19 31214 -91.109.160.0/24 16206 -91.109.161.0/24 56989 -91.109.162.0/23 56989 -91.109.164.0/22 56989 -91.109.168.0/21 57300 -91.109.176.0/20 29075 -91.109.192.0/21 49924 -91.109.200.0/21 199669 -91.109.208.0/24 198208 -91.109.210.0/23 198208 -91.109.212.0/24 198208 -91.109.216.0/23 30981 -91.109.218.0/24 30981 -91.109.224.0/21 58310 -91.109.232.0/21 59953 -91.109.240.0/21 13213 -91.109.248.0/21 198849 -91.110.0.0/15 12576 -91.112.0.0/14 8447 -91.116.0.0/15 12334 -91.118.0.0/15 6830 -91.120.0.0/20 5588 -91.120.16.0/21 5588 -91.120.24.0/22 5588 -91.120.28.0/24 5588 -91.120.29.0/24 44768 -91.120.30.0/23 5588 -91.120.32.0/24 5588 -91.120.33.0/24 47324 -91.120.34.0/23 5588 -91.120.36.0/22 5588 -91.120.40.0/23 5588 -91.120.42.0/24 5588 -91.120.43.0/24 33973 -91.120.44.0/24 47979 -91.120.45.0/24 5588 -91.120.46.0/23 5588 -91.120.48.0/24 5588 -91.120.49.0/24 42759 -91.120.50.0/23 5588 -91.120.52.0/22 5588 -91.120.56.0/23 5588 -91.120.58.0/24 24690 -91.120.59.0/24 5588 -91.120.60.0/22 5588 -91.120.64.0/18 5588 -91.120.128.0/18 5588 -91.120.192.0/19 5588 -91.120.224.0/20 5588 -91.120.240.0/21 5588 -91.120.248.0/24 12303 -91.120.249.0/24 5588 -91.120.250.0/23 51843 -91.120.252.0/22 5588 -91.121.0.0/16 16276 -91.122.0.0/16 12389 -91.123.0.0/20 39543 -91.123.16.0/20 29124 -91.123.32.0/19 2116 -91.123.64.0/20 20910 -91.123.80.0/20 51032 -91.123.96.0/20 8302 -91.123.128.0/20 42540 -91.123.144.0/20 34743 -91.123.160.0/20 56391 -91.123.176.0/20 51792 -91.123.192.0/20 42695 -91.123.208.0/20 50231 -91.123.224.0/20 1213 -91.124.0.0/16 6849 -91.125.0.0/16 6871 -91.126.0.0/20 31169 -91.126.16.0/20 35699 -91.126.32.0/19 35699 -91.126.64.0/21 35699 -91.126.72.0/22 35699 -91.126.76.0/24 35699 -91.126.77.0/24 205241 -91.126.78.0/24 9192 -91.126.79.0/24 206926 -91.126.80.0/20 35699 -91.126.96.0/22 35699 -91.126.100.0/22 206926 -91.126.104.0/21 35699 -91.126.112.0/20 35699 -91.126.128.0/19 35699 -91.126.160.0/20 35699 -91.126.176.0/24 198432 -91.126.177.0/24 35699 -91.126.178.0/23 35699 -91.126.180.0/22 35699 -91.126.184.0/23 35699 -91.126.186.0/24 206926 -91.126.187.0/24 35699 -91.126.188.0/22 35699 -91.126.192.0/18 35699 -91.127.0.0/16 6855 -91.128.0.0/14 1257 -91.132.0.0/22 35913 -91.132.4.0/23 43443 -91.132.6.0/23 49674 -91.132.8.0/22 205678 -91.132.12.0/22 15395 -91.132.16.0/22 209515 -91.132.20.0/22 33991 -91.132.24.0/22 209670 -91.132.28.0/22 43419 -91.132.36.0/22 9009 -91.132.40.0/22 39647 -91.132.44.0/22 39305 -91.132.48.0/22 55933 -91.132.52.0/22 209702 -91.132.59.0/24 209956 -91.132.60.0/24 44901 -91.132.62.0/24 44901 -91.132.65.0/24 50010 -91.132.68.0/22 12213 -91.132.74.0/23 9119 -91.132.76.0/22 209707 -91.132.80.0/22 39144 -91.132.84.0/22 47987 -91.132.88.0/22 24679 -91.132.92.0/24 206698 -91.132.93.0/24 34929 -91.132.94.0/23 34929 -91.132.96.0/22 34887 -91.132.100.0/22 35196 -91.132.104.0/22 51904 -91.132.108.0/23 3215 -91.132.110.0/24 3215 -91.132.112.0/24 204245 -91.132.113.0/24 202962 -91.132.114.0/23 15537 -91.132.116.0/22 57910 -91.132.123.0/24 7381 -91.132.124.0/23 33657 -91.132.126.0/23 393559 -91.132.136.0/22 9009 -91.132.140.0/22 200736 -91.132.144.0/22 197540 -91.132.148.0/23 205268 -91.132.156.0/23 21413 -91.132.158.0/23 196714 -91.132.160.0/22 3214 -91.132.164.0/22 205692 -91.132.168.0/22 209705 -91.132.172.0/22 21183 -91.132.176.0/23 41105 -91.132.179.0/24 41105 -91.132.180.0/22 35712 -91.132.184.0/22 205266 -91.132.188.0/22 48430 -91.132.197.0/24 51765 -91.132.200.0/22 35710 -91.132.204.0/24 209680 -91.132.208.0/22 3212 -91.132.212.0/24 209331 -91.132.216.0/23 6789 -91.132.218.0/24 48330 -91.132.219.0/24 6789 -91.132.220.0/22 30766 -91.132.228.0/22 199860 -91.132.236.0/22 209615 -91.132.240.0/22 60893 -91.132.244.0/22 203068 -91.132.248.0/22 48095 -91.132.252.0/24 199758 -91.133.0.0/19 48166 -91.133.32.0/19 196976 -91.133.64.0/18 8445 -91.133.128.0/17 197207 -91.134.0.0/16 16276 -91.135.0.0/20 12496 -91.135.16.0/20 41898 -91.135.32.0/20 2116 -91.135.48.0/20 61275 -91.135.64.0/20 41913 -91.135.80.0/20 43513 -91.135.96.0/20 16116 -91.135.112.0/20 20845 -91.135.128.0/20 3292 -91.135.144.0/20 8595 -91.135.160.0/20 39878 -91.135.176.0/20 43342 -91.135.192.0/20 29046 -91.135.208.0/22 16256 -91.135.212.0/22 43720 -91.135.216.0/21 43720 -91.135.224.0/20 6908 -91.135.240.0/23 34170 -91.135.242.0/24 34170 -91.135.244.0/22 34170 -91.135.248.0/21 34170 -91.136.0.0/17 9115 -91.136.128.0/17 41585 -91.137.0.0/20 196714 -91.137.16.0/20 199284 -91.137.32.0/20 196714 -91.137.48.0/21 196714 -91.137.56.0/21 199284 -91.137.64.0/20 198726 -91.137.80.0/22 204672 -91.137.88.0/21 198726 -91.137.96.0/20 198726 -91.137.112.0/22 198726 -91.137.116.0/23 198726 -91.137.118.0/23 204672 -91.137.120.0/22 198726 -91.137.124.0/22 201729 -91.137.128.0/17 24822 -91.138.0.0/17 15600 -91.138.128.0/17 3329 -91.139.0.0/20 5588 -91.139.16.0/20 13036 -91.139.32.0/19 13036 -91.139.64.0/18 13036 -91.139.128.0/17 43205 -91.140.0.0/17 25472 -91.140.128.0/17 3225 -91.141.0.0/17 25255 -91.141.128.0/17 31615 -91.142.0.0/20 20910 -91.142.16.0/20 21013 -91.142.32.0/20 42344 -91.142.48.0/20 41589 -91.142.64.0/21 43843 -91.142.72.0/21 48720 -91.142.80.0/21 41722 -91.142.88.0/24 41722 -91.142.90.0/23 41722 -91.142.92.0/22 41722 -91.142.96.0/20 41736 -91.142.112.0/20 204896 -91.142.128.0/24 2856 -91.142.131.0/24 50874 -91.142.132.0/24 15703 -91.142.134.0/24 51159 -91.142.135.0/24 41706 -91.142.136.0/24 62319 -91.142.137.0/24 50900 -91.142.138.0/24 34665 -91.142.139.0/24 2108 -91.142.141.0/24 56836 -91.142.142.0/24 202900 -91.142.143.0/24 9026 -91.142.144.0/20 41789 -91.142.160.0/20 28994 -91.142.192.0/20 43939 -91.142.208.0/20 50926 -91.142.224.0/20 42090 -91.142.240.0/20 21155 -91.143.0.0/20 34287 -91.143.16.0/20 41816 -91.143.32.0/20 42132 -91.143.48.0/21 41822 -91.143.56.0/22 41822 -91.143.60.0/23 44579 -91.143.62.0/24 41822 -91.143.63.0/24 44257 -91.143.64.0/20 199766 -91.143.80.0/20 35366 -91.143.96.0/20 29056 -91.143.112.0/20 28717 -91.143.128.0/20 41829 -91.143.144.0/20 2 -91.143.160.0/20 28890 -91.143.176.0/20 8844 -91.143.192.0/20 21056 -91.143.208.0/20 31042 -91.143.224.0/20 25003 -91.143.240.0/22 41893 -91.143.244.0/23 41893 -91.144.0.0/18 29256 -91.144.64.0/19 8990 -91.144.96.0/22 8990 -91.144.100.0/24 20568 -91.144.101.0/24 8990 -91.144.102.0/23 8990 -91.144.104.0/21 8990 -91.144.112.0/20 8990 -91.144.128.0/22 41682 -91.144.132.0/22 41661 -91.144.136.0/22 42683 -91.144.140.0/22 41668 -91.144.144.0/22 41754 -91.144.148.0/22 41727 -91.144.152.0/21 42116 -91.144.160.0/22 41786 -91.144.164.0/22 34590 -91.144.168.0/22 41843 -91.144.172.0/22 41727 -91.144.176.0/22 41754 -91.144.180.0/22 43478 -91.144.184.0/22 42682 -91.144.188.0/24 41668 -91.144.189.0/24 41843 -91.144.190.0/23 41661 -91.144.192.0/18 8273 -91.145.0.0/20 20625 -91.145.16.0/20 51132 -91.145.32.0/19 60213 -91.145.64.0/18 16086 -91.145.128.0/18 43939 -91.145.192.0/18 34058 -91.146.0.0/18 3226 -91.146.64.0/19 198966 -91.146.96.0/21 198066 -91.146.104.0/21 198047 -91.146.112.0/24 199164 -91.146.114.0/24 203056 -91.146.120.0/21 198031 -91.146.128.0/18 8462 -91.146.192.0/18 43939 -91.147.0.0/19 12389 -91.147.32.0/21 8443 -91.147.40.0/22 8443 -91.147.44.0/23 8443 -91.147.46.0/23 12389 -91.147.48.0/22 8443 -91.147.52.0/22 12389 -91.147.56.0/23 8443 -91.147.58.0/23 12389 -91.147.60.0/24 12389 -91.147.61.0/24 8443 -91.147.62.0/24 12389 -91.147.63.0/24 8443 -91.147.64.0/20 58224 -91.147.80.0/20 15736 -91.147.96.0/21 15736 -91.147.112.0/20 15736 -91.147.128.0/22 43766 -91.147.132.0/22 43775 -91.147.136.0/21 43775 -91.147.144.0/20 43775 -91.147.160.0/20 43775 -91.147.180.0/23 43775 -91.147.182.0/24 43775 -91.147.184.0/21 43775 -91.147.192.0/21 5483 -91.147.200.0/21 42232 -91.147.208.0/22 47421 -91.147.212.0/23 47421 -91.147.214.0/23 5483 -91.147.216.0/21 47159 -91.147.224.0/21 42232 -91.147.232.0/22 5483 -91.147.236.0/22 41627 -91.147.244.0/22 41897 -91.147.248.0/21 42232 -91.148.0.0/18 31117 -91.148.64.0/18 6700 -91.148.128.0/22 49849 -91.148.132.0/23 40065 -91.148.134.0/24 40065 -91.148.136.0/22 61996 -91.148.140.0/24 57344 -91.148.141.0/24 203380 -91.148.142.0/23 45007 -91.148.144.0/22 45007 -91.148.148.0/24 31083 -91.148.149.0/24 43205 -91.148.150.0/23 43205 -91.148.152.0/21 43205 -91.148.160.0/24 57344 -91.148.161.0/24 61996 -91.148.162.0/23 43205 -91.148.164.0/23 43205 -91.148.166.0/24 43205 -91.148.167.0/24 31083 -91.148.168.0/24 31083 -91.148.169.0/24 43205 -91.148.170.0/23 43205 -91.148.172.0/22 43205 -91.148.176.0/21 43205 -91.148.184.0/24 44901 -91.148.185.0/24 202543 -91.148.186.0/23 43205 -91.148.188.0/23 205085 -91.148.192.0/24 34343 -91.148.193.0/24 34305 -91.148.194.0/23 34305 -91.148.196.0/22 34305 -91.148.200.0/21 34305 -91.148.208.0/20 34305 -91.148.224.0/22 34305 -91.148.228.0/22 34343 -91.148.232.0/24 12989 -91.148.233.0/24 34305 -91.148.234.0/23 34305 -91.148.236.0/22 34305 -91.148.240.0/20 34305 -91.149.0.0/19 2116 -91.149.32.0/20 1299 -91.149.48.0/20 2116 -91.149.64.0/18 12958 -91.149.128.0/23 42772 -91.149.130.0/24 42772 -91.149.131.0/24 20852 -91.149.132.0/24 42772 -91.149.133.0/24 20852 -91.149.134.0/24 42772 -91.149.135.0/24 20852 -91.149.136.0/21 31143 -91.149.144.0/23 21236 -91.149.150.0/23 21236 -91.149.152.0/24 42772 -91.149.153.0/24 20852 -91.149.154.0/24 20852 -91.149.155.0/24 50334 -91.149.156.0/24 42036 -91.149.157.0/24 6697 -91.149.159.0/24 50334 -91.149.160.0/23 50334 -91.149.162.0/23 42036 -91.149.164.0/24 12406 -91.149.165.0/24 42772 -91.149.166.0/24 6697 -91.149.167.0/24 56740 -91.149.168.0/23 20852 -91.149.170.0/24 50176 -91.149.171.0/24 49711 -91.149.172.0/24 56497 -91.149.173.0/24 44397 -91.149.175.0/24 56497 -91.149.176.0/24 60769 -91.149.178.0/23 50334 -91.149.180.0/24 21062 -91.149.181.0/24 50590 -91.149.182.0/24 21062 -91.149.184.0/24 20852 -91.149.185.0/24 42772 -91.149.186.0/24 20852 -91.149.187.0/24 42772 -91.149.188.0/24 20852 -91.149.189.0/24 6697 -91.149.190.0/23 42772 -91.149.192.0/22 34962 -91.149.196.0/23 198401 -91.149.198.0/23 43260 -91.149.200.0/22 41952 -91.149.204.0/22 198401 -91.149.208.0/22 198401 -91.149.212.0/24 198401 -91.149.213.0/24 43260 -91.149.214.0/24 198401 -91.149.215.0/24 43260 -91.149.216.0/23 198401 -91.149.218.0/24 43260 -91.149.219.0/24 41952 -91.149.220.0/23 41952 -91.149.222.0/24 43260 -91.149.223.0/24 24961 -91.149.224.0/23 34962 -91.149.228.0/24 43260 -91.149.229.0/24 41952 -91.149.230.0/23 43260 -91.149.232.0/23 43260 -91.149.234.0/24 198401 -91.149.235.0/24 43260 -91.149.236.0/22 41952 -91.149.240.0/24 43260 -91.149.242.0/23 43260 -91.149.244.0/22 41952 -91.149.248.0/21 41952 -91.150.0.0/18 42343 -91.150.64.0/18 8400 -91.150.128.0/19 43939 -91.150.160.0/20 42673 -91.150.176.0/21 42673 -91.150.184.0/23 42673 -91.150.186.0/23 206953 -91.150.188.0/23 42673 -91.150.190.0/24 203086 -91.150.191.0/24 42673 -91.150.192.0/19 6830 -91.150.224.0/19 39642 -91.151.0.0/20 42004 -91.151.23.0/24 34432 -91.151.24.0/21 50061 -91.151.32.0/20 12958 -91.151.48.0/20 34006 -91.151.64.0/20 12826 -91.151.80.0/24 397563 -91.151.81.0/24 207429 -91.151.82.0/23 397563 -91.151.84.0/22 397563 -91.151.88.0/23 34549 -91.151.90.0/23 397563 -91.151.92.0/23 397563 -91.151.94.0/23 34549 -91.151.96.0/22 34977 -91.151.100.0/24 34977 -91.151.101.0/24 205624 -91.151.102.0/23 34977 -91.151.104.0/21 34977 -91.151.112.0/20 9003 -91.151.128.0/20 42082 -91.151.144.0/22 39151 -91.151.148.0/23 39151 -91.151.150.0/24 39151 -91.151.151.0/24 48137 -91.151.152.0/21 39151 -91.151.160.0/23 39919 -91.151.162.0/24 39919 -91.151.176.0/20 5433 -91.151.192.0/22 29329 -91.151.196.0/24 42507 -91.151.197.0/24 29329 -91.151.198.0/23 29329 -91.151.200.0/21 29329 -91.151.208.0/20 6908 -91.151.224.0/20 42852 -91.152.0.0/13 719 -91.160.0.0/12 12322 -91.176.0.0/13 5432 -91.184.0.0/19 197902 -91.184.32.0/21 34225 -91.184.40.0/22 34225 -91.184.44.0/23 34225 -91.184.46.0/23 60781 -91.184.48.0/20 60781 -91.184.64.0/20 206065 -91.184.80.0/20 25124 -91.184.96.0/19 41738 -91.184.128.0/19 41729 -91.184.160.0/19 9063 -91.184.192.0/19 35432 -91.185.0.0/19 41798 -91.185.32.0/21 8345 -91.185.40.0/23 51034 -91.185.42.0/23 8345 -91.185.44.0/22 8345 -91.185.48.0/20 8345 -91.185.64.0/21 39001 -91.185.72.0/21 49816 -91.185.80.0/20 49816 -91.185.96.0/19 41937 -91.185.128.0/19 12880 -91.185.160.0/20 15533 -91.185.176.0/21 57356 -91.185.184.0/21 57367 -91.185.192.0/19 41828 -91.185.224.0/19 21487 -91.186.0.0/19 29550 -91.186.32.0/19 9136 -91.186.64.0/22 56828 -91.186.68.0/22 201322 -91.186.72.0/21 56828 -91.186.80.0/20 56828 -91.186.96.0/19 42087 -91.186.128.0/19 8437 -91.186.160.0/19 2914 -91.186.192.0/24 16200 -91.186.193.0/24 47285 -91.186.194.0/23 42337 -91.186.196.0/22 42337 -91.186.200.0/22 39650 -91.186.204.0/22 16200 -91.186.208.0/21 204834 -91.186.216.0/22 56466 -91.186.220.0/22 34549 -91.186.224.0/19 9038 -91.187.0.0/19 60273 -91.187.32.0/19 34093 -91.187.64.0/19 6752 -91.187.96.0/19 21246 -91.187.128.0/19 13092 -91.187.160.0/19 21412 -91.187.192.0/19 31115 -91.187.224.0/19 35323 -91.188.0.0/19 43279 -91.188.32.0/19 20910 -91.188.64.0/19 8304 -91.188.96.0/20 39869 -91.188.112.0/21 39869 -91.188.120.0/22 39869 -91.188.124.0/24 39869 -91.188.125.0/24 59491 -91.188.126.0/23 39869 -91.188.128.0/19 42017 -91.188.160.0/19 8905 -91.188.196.0/22 204895 -91.188.200.0/24 52423 -91.188.201.0/24 209956 -91.188.202.0/24 53850 -91.188.203.0/24 395800 -91.188.204.0/22 197328 -91.188.208.0/23 35732 -91.188.211.0/24 13044 -91.188.212.0/22 34665 -91.188.218.0/24 57844 -91.188.220.0/24 12722 -91.188.221.0/24 34665 -91.188.222.0/24 56630 -91.188.223.0/24 49392 -91.188.224.0/23 43927 -91.188.228.0/22 49505 -91.188.232.0/22 8896 -91.188.236.0/22 34665 -91.188.240.0/22 49505 -91.188.244.0/23 34665 -91.188.246.0/23 46844 -91.188.248.0/22 58271 -91.188.252.0/22 202634 -91.189.0.0/21 42084 -91.189.9.0/24 34310 -91.189.12.0/22 15802 -91.189.16.0/21 42131 -91.189.24.0/21 8819 -91.189.40.0/21 29024 -91.189.48.0/21 12958 -91.189.56.0/21 42402 -91.189.64.0/21 42227 -91.189.72.0/21 29665 -91.189.80.0/23 42244 -91.189.82.0/24 42244 -91.189.84.0/22 42244 -91.189.88.0/21 41231 -91.189.96.0/21 35224 -91.189.104.0/21 174 -91.189.112.0/23 42399 -91.189.114.0/23 48287 -91.189.116.0/22 48287 -91.189.120.0/21 49788 -91.189.128.0/22 35602 -91.189.132.0/23 35602 -91.189.136.0/21 202228 -91.189.144.0/21 42466 -91.189.152.0/21 43258 -91.189.160.0/21 42574 -91.189.168.0/21 39783 -91.189.176.0/21 34989 -91.189.184.0/22 35913 -91.189.188.0/23 201998 -91.189.192.0/21 3320 -91.189.200.0/21 42638 -91.189.208.0/22 5524 -91.189.212.0/22 202074 -91.189.216.0/21 42673 -91.189.224.0/21 42707 -91.189.232.0/21 42742 -91.189.240.0/21 29124 -91.189.248.0/21 42927 -91.190.0.0/19 41872 -91.190.32.0/19 47814 -91.190.64.0/20 20866 -91.190.80.0/21 31376 -91.190.88.0/21 58224 -91.190.96.0/22 42161 -91.190.101.0/24 54103 -91.190.103.0/24 54103 -91.190.104.0/23 42161 -91.190.106.0/24 42161 -91.190.107.0/24 46261 -91.190.108.0/22 39855 -91.190.112.0/20 34102 -91.190.128.0/22 42078 -91.190.132.0/23 42078 -91.190.134.0/24 42078 -91.190.136.0/21 51815 -91.190.144.0/21 30962 -91.190.152.0/22 8223 -91.190.160.0/21 8680 -91.190.168.0/21 31688 -91.190.176.0/21 12494 -91.190.184.0/21 50261 -91.190.192.0/21 51728 -91.190.200.0/21 15451 -91.190.208.0/24 28704 -91.190.216.0/23 198015 -91.190.224.0/21 42184 -91.190.232.0/22 42187 -91.190.236.0/22 43208 -91.190.240.0/21 42311 -91.191.0.0/21 35567 -91.191.8.0/23 35567 -91.191.11.0/24 35567 -91.191.12.0/22 35567 -91.191.16.0/24 35567 -91.191.18.0/23 35567 -91.191.20.0/22 35567 -91.191.24.0/22 35567 -91.191.28.0/24 35567 -91.191.30.0/23 35567 -91.191.32.0/19 35567 -91.191.64.0/22 5610 -91.191.68.0/24 5610 -91.191.69.0/24 28952 -91.191.70.0/23 5610 -91.191.72.0/21 5610 -91.191.80.0/22 28952 -91.191.84.0/22 5610 -91.191.88.0/21 5610 -91.191.96.0/19 5610 -91.191.128.0/20 50989 -91.191.144.0/20 35393 -91.191.160.0/20 43391 -91.191.176.0/22 8893 -91.191.180.0/24 57186 -91.191.181.0/24 39303 -91.191.183.0/24 64432 -91.191.184.0/24 49505 -91.191.185.0/24 49121 -91.191.186.0/24 48228 -91.191.187.0/24 21030 -91.191.188.0/24 49392 -91.191.189.0/24 44162 -91.191.190.0/24 44149 -91.191.192.0/20 41997 -91.191.208.0/24 42735 -91.191.210.0/23 42735 -91.191.212.0/23 42735 -91.191.214.0/24 42735 -91.191.215.0/24 200628 -91.191.218.0/24 42735 -91.191.219.0/24 205085 -91.191.220.0/23 50360 -91.191.223.0/24 50360 -91.191.224.0/19 12668 -91.192.0.0/22 42261 -91.192.4.0/22 203735 -91.192.12.0/22 42274 -91.192.20.0/22 42291 -91.192.24.0/22 200100 -91.192.28.0/22 42307 -91.192.32.0/22 57158 -91.192.36.0/22 39704 -91.192.40.0/22 15960 -91.192.44.0/22 41360 -91.192.48.0/22 208245 -91.192.52.0/22 196727 -91.192.56.0/22 31242 -91.192.60.0/22 50498 -91.192.64.0/22 41329 -91.192.68.0/22 42377 -91.192.72.0/23 35824 -91.192.75.0/24 35824 -91.192.76.0/22 29314 -91.192.80.0/23 56630 -91.192.82.0/24 49287 -91.192.83.0/24 56630 -91.192.87.0/24 395800 -91.192.88.0/22 42401 -91.192.92.0/22 42413 -91.192.96.0/22 206012 -91.192.100.0/22 51395 -91.192.104.0/24 41568 -91.192.105.0/24 28907 -91.192.106.0/23 59117 -91.192.108.0/22 39020 -91.192.112.0/24 39078 -91.192.114.0/24 39078 -91.192.116.0/22 47143 -91.192.120.0/22 35491 -91.192.124.0/22 42538 -91.192.128.0/22 31633 -91.192.132.0/22 34579 -91.192.136.0/22 15713 -91.192.140.0/22 35322 -91.192.144.0/22 57478 -91.192.148.0/22 42481 -91.192.152.0/22 42504 -91.192.156.0/22 24881 -91.192.164.0/22 42490 -91.192.168.0/22 42498 -91.192.172.0/22 25549 -91.192.176.0/22 39918 -91.192.180.0/22 42501 -91.192.184.0/22 31077 -91.192.188.0/22 42518 -91.192.192.0/22 15510 -91.192.196.0/22 43153 -91.192.200.0/23 50165 -91.192.204.0/22 42552 -91.192.208.0/22 35327 -91.192.216.0/22 42556 -91.192.220.0/22 39783 -91.192.224.0/24 42576 -91.192.225.0/24 206417 -91.192.226.0/24 58186 -91.192.228.0/22 48157 -91.192.236.0/24 49040 -91.192.237.0/24 39401 -91.192.238.0/23 39401 -91.192.243.0/24 210029 -91.192.244.0/22 42636 -91.192.250.0/23 44514 -91.192.252.0/22 42595 -91.193.0.0/22 49788 -91.193.4.0/22 60233 -91.193.8.0/22 35433 -91.193.12.0/22 42619 -91.193.16.0/22 202511 -91.193.20.0/22 48983 -91.193.28.0/22 199429 -91.193.32.0/22 41435 -91.193.40.0/23 48694 -91.193.44.0/22 42650 -91.193.48.0/22 43842 -91.193.60.0/22 199081 -91.193.64.0/22 42936 -91.193.68.0/22 3326 -91.193.72.0/24 199086 -91.193.73.0/24 198884 -91.193.75.0/24 209623 -91.193.76.0/22 42702 -91.193.80.0/22 42723 -91.193.84.0/22 12741 -91.193.88.0/23 34671 -91.193.92.0/22 42749 -91.193.96.0/22 33951 -91.193.100.0/22 133115 -91.193.104.0/23 50807 -91.193.106.0/23 50812 -91.193.110.0/23 34665 -91.193.116.0/22 201933 -91.193.120.0/22 42763 -91.193.124.0/22 42798 -91.193.128.0/22 44894 -91.193.132.0/22 5588 -91.193.136.0/22 199213 -91.193.140.0/23 58136 -91.193.142.0/24 209779 -91.193.143.0/24 42776 -91.193.144.0/22 42797 -91.193.148.0/22 48642 -91.193.152.0/22 199478 -91.193.156.0/22 42555 -91.193.160.0/22 42830 -91.193.164.0/22 29491 -91.193.172.0/22 13188 -91.193.176.0/22 16345 -91.193.184.0/23 31242 -91.193.186.0/24 31242 -91.193.187.0/24 50231 -91.193.192.0/24 202504 -91.193.193.0/24 202483 -91.193.194.0/24 202483 -91.193.200.0/23 25211 -91.193.202.0/24 25211 -91.193.204.0/22 42883 -91.193.208.0/22 42914 -91.193.212.0/22 42891 -91.193.216.0/23 196768 -91.193.218.0/23 49339 -91.193.220.0/22 42892 -91.193.224.0/22 42895 -91.193.228.0/22 42911 -91.193.236.0/22 42916 -91.193.240.0/22 42930 -91.193.244.0/22 58188 -91.193.248.0/22 9009 -91.193.252.0/22 45025 -91.194.0.0/23 199408 -91.194.2.0/23 51520 -91.194.4.0/23 42976 -91.194.8.0/23 29396 -91.194.10.0/23 42993 -91.194.12.0/23 42995 -91.194.14.0/23 199408 -91.194.16.0/23 42996 -91.194.18.0/23 197496 -91.194.20.0/23 1759 -91.194.22.0/23 43071 -91.194.24.0/24 208098 -91.194.26.0/23 8473 -91.194.28.0/23 43007 -91.194.30.0/24 43008 -91.194.31.0/24 51835 -91.194.34.0/23 43017 -91.194.36.0/23 62319 -91.194.38.0/23 43101 -91.194.40.0/23 44820 -91.194.42.0/23 50412 -91.194.46.0/23 48294 -91.194.48.0/23 6830 -91.194.50.0/23 43050 -91.194.52.0/23 203377 -91.194.54.0/24 203377 -91.194.55.0/24 209737 -91.194.56.0/23 43110 -91.194.58.0/23 43085 -91.194.60.0/23 28855 -91.194.64.0/23 43095 -91.194.66.0/23 43099 -91.194.68.0/24 44504 -91.194.69.0/24 59617 -91.194.70.0/23 39621 -91.194.72.0/24 43103 -91.194.74.0/23 43219 -91.194.76.0/23 43108 -91.194.78.0/23 6876 -91.194.80.0/24 47475 -91.194.82.0/23 43125 -91.194.84.0/23 24961 -91.194.86.0/23 48638 -91.194.88.0/23 43137 -91.194.90.0/23 51167 -91.194.92.0/23 28763 -91.194.94.0/23 31027 -91.194.96.0/22 43142 -91.194.100.0/23 43142 -91.194.102.0/23 43158 -91.194.106.0/23 43144 -91.194.108.0/23 43155 -91.194.112.0/23 44893 -91.194.114.0/23 43165 -91.194.116.0/23 41095 -91.194.120.0/23 43235 -91.194.122.0/23 43172 -91.194.126.0/24 43178 -91.194.127.0/24 9153 -91.194.128.0/24 42096 -91.194.129.0/24 30914 -91.194.130.0/23 43184 -91.194.132.0/23 196954 -91.194.134.0/23 47926 -91.194.136.0/23 34756 -91.194.138.0/23 14037 -91.194.142.0/23 44473 -91.194.144.0/23 56819 -91.194.146.0/23 43183 -91.194.148.0/23 32917 -91.194.151.0/24 34922 -91.194.152.0/23 33967 -91.194.156.0/23 61078 -91.194.158.0/23 43251 -91.194.160.0/23 43209 -91.194.163.0/24 28761 -91.194.164.0/23 203730 -91.194.168.0/23 50879 -91.194.170.0/23 13156 -91.194.174.0/23 43246 -91.194.176.0/24 12509 -91.194.177.0/24 197226 -91.194.178.0/23 39405 -91.194.180.0/23 8881 -91.194.184.0/23 8853 -91.194.188.0/23 31621 -91.194.190.0/23 43274 -91.194.192.0/22 201626 -91.194.196.0/23 43291 -91.194.198.0/23 44284 -91.194.200.0/23 49342 -91.194.202.0/23 5400 -91.194.204.0/23 36408 -91.194.206.0/23 43302 -91.194.208.0/23 8218 -91.194.210.0/23 8308 -91.194.212.0/24 44095 -91.194.214.0/23 42252 -91.194.216.0/23 43335 -91.194.220.0/23 56670 -91.194.222.0/23 3209 -91.194.224.0/23 43366 -91.194.226.0/23 43399 -91.194.228.0/23 29593 -91.194.230.0/23 43397 -91.194.232.0/23 3320 -91.194.234.0/24 43376 -91.194.235.0/24 5588 -91.194.236.0/23 6696 -91.194.238.0/23 43400 -91.194.240.0/23 42252 -91.194.242.0/23 43394 -91.194.244.0/23 43403 -91.194.246.0/23 48293 -91.194.248.0/23 43511 -91.194.250.0/23 42352 -91.194.252.0/23 43434 -91.194.254.0/23 41585 -91.195.0.0/23 199408 -91.195.2.0/23 49817 -91.195.4.0/23 43464 -91.195.6.0/23 43466 -91.195.10.0/23 52191 -91.195.12.0/23 61251 -91.195.14.0/23 43473 -91.195.16.0/23 62429 -91.195.18.0/23 203793 -91.195.22.0/23 43518 -91.195.24.0/23 60092 -91.195.26.0/23 43493 -91.195.28.0/23 5588 -91.195.30.0/23 43502 -91.195.34.0/23 206837 -91.195.36.0/23 8487 -91.195.38.0/23 43547 -91.195.40.0/23 1764 -91.195.44.0/23 24660 -91.195.46.0/23 203741 -91.195.48.0/23 41552 -91.195.50.0/23 41585 -91.195.52.0/23 43580 -91.195.54.0/23 3209 -91.195.56.0/23 200031 -91.195.58.0/23 21060 -91.195.60.0/23 43595 -91.195.62.0/23 43587 -91.195.64.0/22 42707 -91.195.68.0/23 48589 -91.195.70.0/23 43669 -91.195.74.0/23 33817 -91.195.76.0/23 12552 -91.195.78.0/23 43623 -91.195.80.0/23 50673 -91.195.82.0/23 1273 -91.195.85.0/24 43626 -91.195.86.0/23 198669 -91.195.88.0/23 19905 -91.195.90.0/23 43633 -91.195.92.0/23 49290 -91.195.94.0/23 42557 -91.195.96.0/23 35442 -91.195.98.0/23 9009 -91.195.100.0/23 34858 -91.195.104.0/23 15404 -91.195.106.0/23 5588 -91.195.108.0/23 43681 -91.195.110.0/23 9009 -91.195.112.0/23 51100 -91.195.114.0/23 44174 -91.195.116.0/23 48362 -91.195.118.0/23 60781 -91.195.120.0/23 34259 -91.195.122.0/23 6461 -91.195.124.0/23 49352 -91.195.126.0/23 43727 -91.195.128.0/23 43712 -91.195.130.0/23 44056 -91.195.132.0/23 43721 -91.195.134.0/23 13000 -91.195.136.0/23 43720 -91.195.138.0/23 8685 -91.195.140.0/23 206293 -91.195.142.0/23 43735 -91.195.144.0/23 43736 -91.195.146.0/23 5603 -91.195.148.0/23 44195 -91.195.150.0/23 29686 -91.195.152.0/23 15439 -91.195.154.0/23 43770 -91.195.156.0/23 43764 -91.195.158.0/23 13000 -91.195.162.0/23 43842 -91.195.164.0/23 35012 -91.195.168.0/23 25180 -91.195.170.0/23 43798 -91.195.172.0/23 41820 -91.195.176.0/23 43784 -91.195.178.0/23 41024 -91.195.180.0/23 35413 -91.195.182.0/23 43838 -91.195.184.0/23 47359 -91.195.187.0/24 203129 -91.195.188.0/23 43828 -91.195.190.0/23 13000 -91.195.192.0/23 62136 -91.195.194.0/23 43839 -91.195.196.0/23 43840 -91.195.198.0/23 199216 -91.195.200.0/23 42755 -91.195.202.0/23 43866 -91.195.204.0/23 42916 -91.195.206.0/23 34970 -91.195.210.0/23 39811 -91.195.214.0/24 204283 -91.195.215.0/24 43896 -91.195.218.0/23 24868 -91.195.220.0/23 43911 -91.195.224.0/23 210317 -91.195.226.0/23 43934 -91.195.228.0/23 43935 -91.195.230.0/23 43936 -91.195.232.0/23 43939 -91.195.234.0/23 49544 -91.195.238.0/23 44238 -91.195.240.0/23 47846 -91.195.242.0/24 205426 -91.195.244.0/23 62181 -91.195.246.0/23 43958 -91.195.248.0/23 41588 -91.195.250.0/23 20804 -91.195.252.0/23 43993 -91.195.254.0/23 16190 -91.196.0.0/22 41550 -91.196.4.0/23 42955 -91.196.6.0/24 42955 -91.196.8.0/22 42981 -91.196.12.0/22 31242 -91.196.20.0/22 207201 -91.196.24.0/23 210151 -91.196.28.0/22 8190 -91.196.32.0/22 31480 -91.196.36.0/22 42991 -91.196.40.0/22 24641 -91.196.44.0/22 39464 -91.196.52.0/22 30886 -91.196.56.0/22 198909 -91.196.60.0/22 50204 -91.196.64.0/24 201483 -91.196.68.0/24 203380 -91.196.69.0/24 35913 -91.196.70.0/24 206804 -91.196.71.0/24 40065 -91.196.72.0/22 43267 -91.196.76.0/23 43060 -91.196.78.0/23 50729 -91.196.80.0/22 43067 -91.196.84.0/22 51525 -91.196.88.0/22 43124 -91.196.92.0/22 43103 -91.196.96.0/22 43109 -91.196.100.0/22 12998 -91.196.104.0/22 31477 -91.196.108.0/22 201637 -91.196.112.0/22 12301 -91.196.120.0/22 35795 -91.196.124.0/22 201200 -91.196.132.0/23 43133 -91.196.135.0/24 43133 -91.196.136.0/22 39150 -91.196.140.0/22 25394 -91.196.144.0/22 13237 -91.196.148.0/22 43139 -91.196.156.0/22 43145 -91.196.160.0/24 24857 -91.196.168.0/22 42755 -91.196.172.0/22 31027 -91.196.176.0/22 43175 -91.196.180.0/22 204856 -91.196.184.0/22 43531 -91.196.192.0/22 15683 -91.196.200.0/22 6718 -91.196.204.0/22 42965 -91.196.208.0/22 205295 -91.196.212.0/22 43244 -91.196.216.0/24 201792 -91.196.219.0/24 201792 -91.196.220.0/24 35913 -91.196.221.0/24 40676 -91.196.222.0/23 35913 -91.196.224.0/22 42844 -91.196.228.0/22 43261 -91.196.232.0/22 203553 -91.196.236.0/22 12714 -91.196.240.0/22 44368 -91.196.244.0/22 29407 -91.196.248.0/22 43273 -91.196.252.0/22 16321 -91.197.0.0/22 44676 -91.197.4.0/22 43310 -91.197.8.0/22 43319 -91.197.12.0/22 15694 -91.197.16.0/22 43320 -91.197.20.0/22 57251 -91.197.24.0/22 43348 -91.197.28.0/22 43354 -91.197.32.0/24 16509 -91.197.36.0/22 48095 -91.197.44.0/23 58209 -91.197.46.0/23 57513 -91.197.48.0/22 43418 -91.197.52.0/23 203533 -91.197.54.0/24 49356 -91.197.55.0/24 207142 -91.197.56.0/24 42563 -91.197.57.0/24 62446 -91.197.58.0/23 43496 -91.197.61.0/24 43438 -91.197.62.0/24 43438 -91.197.64.0/22 35025 -91.197.68.0/23 208369 -91.197.70.0/24 208347 -91.197.71.0/24 208232 -91.197.72.0/22 12859 -91.197.76.0/22 43465 -91.197.80.0/22 31437 -91.197.84.0/22 43499 -91.197.88.0/22 43495 -91.197.92.0/23 43534 -91.197.94.0/24 43534 -91.197.100.0/22 43514 -91.197.104.0/22 57753 -91.197.108.0/22 8368 -91.197.112.0/22 43523 -91.197.116.0/22 6830 -91.197.120.0/22 49835 -91.197.124.0/22 43552 -91.197.128.0/22 8870 -91.197.132.0/22 204144 -91.197.136.0/22 197133 -91.197.140.0/22 43584 -91.197.144.0/22 43576 -91.197.152.0/22 43638 -91.197.156.0/22 61396 -91.197.160.0/22 62429 -91.197.164.0/22 43646 -91.197.168.0/22 43658 -91.197.172.0/22 43660 -91.197.176.0/22 41673 -91.197.180.0/22 43666 -91.197.184.0/22 43668 -91.197.188.0/22 197535 -91.197.192.0/22 43675 -91.197.200.0/22 9009 -91.197.204.0/22 48642 -91.197.208.0/22 43692 -91.197.212.0/22 198295 -91.197.216.0/22 43753 -91.197.220.0/22 3326 -91.197.224.0/22 199201 -91.197.228.0/22 29017 -91.197.233.0/24 39122 -91.197.234.0/23 39122 -91.197.240.0/22 203679 -91.197.244.0/22 40975 -91.197.248.0/22 207199 -91.197.252.0/22 47920 -91.198.0.0/24 43164 -91.198.1.0/24 43163 -91.198.2.0/24 61303 -91.198.3.0/24 12703 -91.198.4.0/24 197172 -91.198.5.0/24 43194 -91.198.6.0/24 48983 -91.198.7.0/24 43187 -91.198.8.0/24 13030 -91.198.9.0/24 44611 -91.198.10.0/24 43206 -91.198.11.0/24 43195 -91.198.12.0/24 6830 -91.198.14.0/24 48916 -91.198.15.0/24 44044 -91.198.16.0/24 31604 -91.198.17.0/24 24825 -91.198.18.0/24 199114 -91.198.19.0/24 47862 -91.198.20.0/24 51064 -91.198.21.0/24 25504 -91.198.22.0/24 33517 -91.198.23.0/24 208913 -91.198.24.0/24 133142 -91.198.25.0/24 209021 -91.198.26.0/24 174 -91.198.27.0/24 42755 -91.198.28.0/24 48981 -91.198.29.0/24 24867 -91.198.30.0/24 43271 -91.198.31.0/24 43258 -91.198.32.0/24 8893 -91.198.33.0/24 42758 -91.198.35.0/24 43305 -91.198.36.0/24 43405 -91.198.37.0/24 29119 -91.198.39.0/24 58063 -91.198.41.0/24 29119 -91.198.42.0/24 48726 -91.198.43.0/24 48152 -91.198.44.0/24 44141 -91.198.45.0/24 43522 -91.198.46.0/24 206012 -91.198.47.0/24 33876 -91.198.48.0/24 29119 -91.198.49.0/24 43488 -91.198.50.0/24 43497 -91.198.51.0/24 43518 -91.198.52.0/24 39497 -91.198.53.0/24 43570 -91.198.54.0/24 35083 -91.198.55.0/24 50434 -91.198.56.0/24 201754 -91.198.57.0/24 49854 -91.198.58.0/24 3303 -91.198.59.0/24 44537 -91.198.60.0/24 57224 -91.198.61.0/24 43582 -91.198.62.0/24 47327 -91.198.63.0/24 43601 -91.198.65.0/24 29119 -91.198.66.0/24 26556 -91.198.67.0/24 12316 -91.198.68.0/24 43592 -91.198.69.0/24 43600 -91.198.70.0/24 44709 -91.198.71.0/24 28899 -91.198.72.0/24 3303 -91.198.73.0/24 3257 -91.198.75.0/24 49156 -91.198.76.0/24 31105 -91.198.77.0/24 26556 -91.198.78.0/24 204053 -91.198.79.0/24 15576 -91.198.80.0/24 43616 -91.198.81.0/24 8330 -91.198.82.0/24 3320 -91.198.83.0/24 43656 -91.198.84.0/24 43625 -91.198.85.0/24 43820 -91.198.86.0/24 204188 -91.198.87.0/24 21155 -91.198.88.0/24 43654 -91.198.89.0/24 49290 -91.198.90.0/24 43643 -91.198.92.0/24 56700 -91.198.93.0/24 201951 -91.198.94.0/24 201661 -91.198.96.0/24 43663 -91.198.97.0/24 50607 -91.198.98.0/24 43673 -91.198.99.0/24 24867 -91.198.103.0/24 35383 -91.198.104.0/24 42001 -91.198.105.0/24 35393 -91.198.106.0/24 48635 -91.198.107.0/24 61247 -91.198.108.0/23 16190 -91.198.110.0/24 43695 -91.198.111.0/24 5588 -91.198.112.0/24 44073 -91.198.113.0/24 3320 -91.198.114.0/24 8489 -91.198.115.0/24 26556 -91.198.116.0/24 39471 -91.198.118.0/24 43705 -91.198.119.0/24 43713 -91.198.120.0/24 24929 -91.198.121.0/24 43914 -91.198.122.0/24 43717 -91.198.123.0/24 26556 -91.198.124.0/24 42926 -91.198.125.0/24 199006 -91.198.126.0/24 43719 -91.198.129.0/24 12400 -91.198.130.0/24 43726 -91.198.131.0/24 197248 -91.198.132.0/24 43732 -91.198.133.0/24 29390 -91.198.134.0/24 21050 -91.198.135.0/24 57773 -91.198.136.0/24 208913 -91.198.137.0/24 42927 -91.198.138.0/24 51167 -91.198.139.0/24 205505 -91.198.140.0/24 43742 -91.198.141.0/24 200553 -91.198.142.0/24 6830 -91.198.143.0/24 43774 -91.198.144.0/24 42525 -91.198.145.0/24 43762 -91.198.146.0/24 43758 -91.198.148.0/24 43771 -91.198.149.0/24 43785 -91.198.150.0/24 41618 -91.198.152.0/24 49544 -91.198.153.0/24 43781 -91.198.154.0/24 13030 -91.198.155.0/24 43787 -91.198.156.0/24 51955 -91.198.157.0/24 15830 -91.198.159.0/24 35012 -91.198.160.0/24 43807 -91.198.161.0/24 43492 -91.198.162.0/24 8953 -91.198.163.0/24 206293 -91.198.164.0/24 1257 -91.198.165.0/24 198047 -91.198.166.0/24 41578 -91.198.168.0/24 43806 -91.198.169.0/24 51468 -91.198.170.0/23 43414 -91.198.173.0/24 43477 -91.198.174.0/24 14907 -91.198.175.0/24 43822 -91.198.177.0/24 35174 -91.198.178.0/24 31477 -91.198.179.0/24 43932 -91.198.180.0/24 42987 -91.198.182.0/24 43887 -91.198.183.0/24 43834 -91.198.184.0/24 43907 -91.198.186.0/24 43941 -91.198.187.0/24 9022 -91.198.189.0/24 47692 -91.198.190.0/24 43854 -91.198.193.0/24 43850 -91.198.194.0/24 43867 -91.198.195.0/24 8245 -91.198.196.0/24 207840 -91.198.197.0/24 3320 -91.198.198.0/24 43860 -91.198.199.0/24 43858 -91.198.201.0/24 206897 -91.198.202.0/24 1257 -91.198.203.0/24 5488 -91.198.204.0/24 43869 -91.198.205.0/24 43871 -91.198.206.0/24 43881 -91.198.207.0/24 6758 -91.198.211.0/24 39923 -91.198.212.0/24 31261 -91.198.213.0/24 199080 -91.198.214.0/24 20892 -91.198.216.0/24 43953 -91.198.217.0/24 198216 -91.198.219.0/24 43947 -91.198.220.0/24 49392 -91.198.221.0/24 43946 -91.198.222.0/24 43961 -91.198.223.0/24 8473 -91.198.224.0/24 3257 -91.198.225.0/24 43952 -91.198.228.0/24 44017 -91.198.229.0/24 15576 -91.198.230.0/24 49392 -91.198.231.0/24 44048 -91.198.232.0/24 43982 -91.198.233.0/24 48648 -91.198.234.0/24 39591 -91.198.235.0/24 44005 -91.198.236.0/24 25527 -91.198.237.0/24 43986 -91.198.238.0/24 206825 -91.198.239.0/24 43990 -91.198.240.0/24 35369 -91.198.241.0/24 43979 -91.198.243.0/24 34762 -91.198.244.0/24 15405 -91.198.245.0/24 44004 -91.198.246.0/24 43535 -91.198.247.0/24 197978 -91.198.248.0/24 43985 -91.198.249.0/24 47898 -91.198.250.0/24 199118 -91.198.251.0/24 57968 -91.198.252.0/24 3292 -91.198.253.0/24 44023 -91.198.254.0/24 49392 -91.198.255.0/24 5089 -91.199.0.0/24 41653 -91.199.1.0/24 39957 -91.199.2.0/24 44059 -91.199.3.0/24 49392 -91.199.4.0/24 198842 -91.199.5.0/24 8437 -91.199.7.0/24 44036 -91.199.8.0/24 12586 -91.199.9.0/24 203684 -91.199.10.0/24 44039 -91.199.11.0/24 3215 -91.199.12.0/24 198984 -91.199.13.0/24 44049 -91.199.14.0/24 44064 -91.199.16.0/24 44161 -91.199.17.0/24 47267 -91.199.18.0/24 203684 -91.199.21.0/24 3320 -91.199.22.0/24 41079 -91.199.23.0/24 44085 -91.199.24.0/24 6908 -91.199.25.0/24 44535 -91.199.26.0/24 44547 -91.199.27.0/24 203684 -91.199.28.0/24 44122 -91.199.29.0/24 199391 -91.199.30.0/24 203684 -91.199.31.0/24 25373 -91.199.32.0/24 207895 -91.199.33.0/24 44119 -91.199.34.0/24 44121 -91.199.35.0/24 44132 -91.199.36.0/24 208081 -91.199.37.0/24 44137 -91.199.38.0/24 44153 -91.199.39.0/24 44189 -91.199.41.0/24 44144 -91.199.42.0/24 207895 -91.199.46.0/24 44151 -91.199.47.0/24 207895 -91.199.49.0/24 44154 -91.199.50.0/24 47869 -91.199.51.0/24 47544 -91.199.52.0/24 209052 -91.199.53.0/24 20645 -91.199.55.0/24 44198 -91.199.57.0/24 44190 -91.199.58.0/24 30870 -91.199.59.0/24 48869 -91.199.60.0/24 42442 -91.199.61.0/24 51644 -91.199.62.0/24 44223 -91.199.63.0/24 2116 -91.199.64.0/24 44236 -91.199.65.0/24 44231 -91.199.66.0/24 198635 -91.199.67.0/24 44240 -91.199.69.0/24 44282 -91.199.70.0/24 6798 -91.199.71.0/24 15830 -91.199.72.0/24 44264 -91.199.73.0/24 44274 -91.199.74.0/24 1273 -91.199.75.0/24 3257 -91.199.76.0/24 8758 -91.199.77.0/24 44306 -91.199.78.0/24 44574 -91.199.79.0/24 44325 -91.199.80.0/24 29554 -91.199.81.0/24 197793 -91.199.82.0/24 197793 -91.199.83.0/24 43566 -91.199.84.0/24 197793 -91.199.85.0/24 44690 -91.199.86.0/24 207066 -91.199.87.0/24 197793 -91.199.88.0/24 8489 -91.199.89.0/24 42573 -91.199.90.0/24 60458 -91.199.91.0/24 42112 -91.199.92.0/24 44351 -91.199.93.0/24 44352 -91.199.94.0/24 1680 -91.199.95.0/24 31229 -91.199.98.0/24 198249 -91.199.99.0/24 44367 -91.199.100.0/24 20645 -91.199.101.0/24 44370 -91.199.102.0/24 60458 -91.199.104.0/24 44418 -91.199.105.0/24 44382 -91.199.106.0/24 44379 -91.199.107.0/24 44623 -91.199.108.0/24 60458 -91.199.109.0/24 6758 -91.199.110.0/24 34632 -91.199.111.0/24 44389 -91.199.112.0/24 49392 -91.199.113.0/24 3308 -91.199.114.0/24 3175 -91.199.115.0/24 44387 -91.199.117.0/24 42445 -91.199.118.0/24 62240 -91.199.119.0/24 44427 -91.199.120.0/24 15699 -91.199.121.0/24 31709 -91.199.122.0/24 15404 -91.199.123.0/24 60458 -91.199.124.0/24 44455 -91.199.125.0/24 2830 -91.199.126.0/24 44929 -91.199.127.0/24 44440 -91.199.128.0/24 34376 -91.199.129.0/24 44480 -91.199.132.0/24 44490 -91.199.134.0/24 47828 -91.199.136.0/24 14717 -91.199.137.0/24 56694 -91.199.138.0/24 44482 -91.199.139.0/24 44495 -91.199.140.0/24 44518 -91.199.141.0/24 44501 -91.199.142.0/24 44524 -91.199.143.0/24 20916 -91.199.144.0/24 44538 -91.199.145.0/24 8437 -91.199.146.0/24 25563 -91.199.147.0/24 56694 -91.199.148.0/24 719 -91.199.149.0/24 57494 -91.199.151.0/24 20860 -91.199.154.0/24 56694 -91.199.155.0/24 24794 -91.199.156.0/24 31462 -91.199.157.0/24 3206 -91.199.158.0/24 3209 -91.199.159.0/24 44521 -91.199.160.0/24 56694 -91.199.161.0/24 44549 -91.199.162.0/24 42652 -91.199.163.0/24 200088 -91.199.164.0/24 21942 -91.199.165.0/24 42366 -91.199.166.0/24 200088 -91.199.167.0/24 48635 -91.199.168.0/24 200088 -91.199.169.0/24 9175 -91.199.170.0/24 198090 -91.199.172.0/24 200088 -91.199.173.0/24 44591 -91.199.174.0/24 197366 -91.199.175.0/24 51776 -91.199.176.0/24 44603 -91.199.177.0/24 44608 -91.199.178.0/24 44595 -91.199.180.0/24 44307 -91.199.181.0/24 41107 -91.199.183.0/24 44697 -91.199.184.0/23 43414 -91.199.186.0/24 209913 -91.199.187.0/24 61268 -91.199.188.0/24 44630 -91.199.189.0/24 29546 -91.199.190.0/24 3292 -91.199.191.0/24 44713 -91.199.192.0/24 3320 -91.199.194.0/24 39399 -91.199.195.0/24 16234 -91.199.196.0/24 35723 -91.199.197.0/24 44734 -91.199.198.0/24 15576 -91.199.200.0/24 8437 -91.199.201.0/24 39727 -91.199.203.0/24 44959 -91.199.204.0/24 44662 -91.199.205.0/24 34147 -91.199.206.0/24 44687 -91.199.207.0/24 44672 -91.199.208.0/24 44398 -91.199.210.0/24 44675 -91.199.211.0/24 12874 -91.199.212.0/24 48447 -91.199.213.0/24 702 -91.199.214.0/24 12732 -91.199.215.0/24 20645 -91.199.216.0/24 5588 -91.199.217.0/24 3246 -91.199.218.0/24 57118 -91.199.219.0/24 57685 -91.199.221.0/24 51369 -91.199.222.0/24 44737 -91.199.223.0/24 12874 -91.199.224.0/24 44751 -91.199.225.0/24 31400 -91.199.226.0/24 42688 -91.199.227.0/24 43861 -91.199.228.0/24 9044 -91.199.229.0/24 52096 -91.199.230.0/24 12386 -91.199.231.0/24 44777 -91.199.232.0/24 49547 -91.199.233.0/24 12670 -91.199.234.0/24 44842 -91.199.235.0/24 34024 -91.199.236.0/24 61349 -91.199.237.0/24 44781 -91.199.238.0/24 47467 -91.199.239.0/24 49275 -91.199.240.0/24 44783 -91.199.241.0/24 8422 -91.199.242.0/24 19750 -91.199.244.0/24 44797 -91.199.246.0/24 197472 -91.199.247.0/24 44796 -91.199.248.0/24 49367 -91.199.249.0/24 25180 -91.199.250.0/24 202600 -91.199.251.0/24 44799 -91.199.252.0/24 44801 -91.199.254.0/24 29152 -91.199.255.0/24 21217 -91.200.0.0/22 43744 -91.200.4.0/22 43748 -91.200.8.0/22 25385 -91.200.16.0/22 1200 -91.200.20.0/22 15439 -91.200.24.0/22 13000 -91.200.28.0/22 43776 -91.200.32.0/22 197155 -91.200.36.0/22 43769 -91.200.40.0/22 43773 -91.200.44.0/22 35816 -91.200.48.0/22 8315 -91.200.52.0/22 43786 -91.200.56.0/22 43789 -91.200.60.0/24 59500 -91.200.61.0/24 20712 -91.200.62.0/24 44401 -91.200.63.0/24 59496 -91.200.64.0/22 43813 -91.200.68.0/23 199250 -91.200.70.0/23 204864 -91.200.72.0/24 205013 -91.200.73.0/24 41656 -91.200.74.0/24 210049 -91.200.75.0/24 209607 -91.200.76.0/23 43803 -91.200.78.0/23 197217 -91.200.84.0/24 34665 -91.200.88.0/22 202312 -91.200.92.0/22 43968 -91.200.100.0/22 30823 -91.200.104.0/22 198317 -91.200.108.0/22 8893 -91.200.112.0/24 43864 -91.200.113.0/24 48957 -91.200.114.0/23 48957 -91.200.116.0/22 43885 -91.200.120.0/22 34358 -91.200.124.0/22 43312 -91.200.128.0/22 43942 -91.200.133.0/24 199429 -91.200.136.0/22 39248 -91.200.140.0/22 50926 -91.200.148.0/23 205220 -91.200.150.0/24 202423 -91.200.151.0/24 205220 -91.200.156.0/22 202165 -91.200.160.0/22 30822 -91.200.164.0/22 200557 -91.200.168.0/22 39155 -91.200.172.0/22 43929 -91.200.180.0/22 43967 -91.200.184.0/22 43962 -91.200.188.0/22 64459 -91.200.196.0/22 20521 -91.200.200.0/22 34715 -91.200.204.0/22 44000 -91.200.208.0/22 205195 -91.200.212.0/22 43554 -91.200.216.0/22 44027 -91.200.220.0/22 35365 -91.200.224.0/22 44041 -91.200.228.0/22 12958 -91.200.232.0/22 39027 -91.200.236.0/22 197672 -91.200.240.0/24 24013 -91.200.241.0/24 32727 -91.200.242.0/23 4785 -91.200.244.0/22 3339 -91.200.248.0/22 15683 -91.200.252.0/22 43700 -91.201.0.0/22 12714 -91.201.4.0/22 208800 -91.201.8.0/22 44135 -91.201.12.0/22 44105 -91.201.16.0/22 57476 -91.201.20.0/22 44546 -91.201.24.0/24 57930 -91.201.25.0/24 204601 -91.201.26.0/24 47618 -91.201.27.0/24 206572 -91.201.28.0/24 203480 -91.201.32.0/22 205234 -91.201.36.0/22 41600 -91.201.40.0/22 49189 -91.201.44.0/22 199201 -91.201.52.0/22 44128 -91.201.56.0/22 51395 -91.201.60.0/22 44136 -91.201.64.0/22 56630 -91.201.68.0/22 44171 -91.201.72.0/22 25549 -91.201.76.0/22 34714 -91.201.80.0/23 44157 -91.201.82.0/23 9050 -91.201.84.0/23 34944 -91.201.87.0/24 210146 -91.201.88.0/22 199494 -91.201.92.0/22 3301 -91.201.96.0/22 201141 -91.201.100.0/22 44177 -91.201.108.0/23 29031 -91.201.112.0/22 44269 -91.201.116.0/22 15673 -91.201.120.0/22 35007 -91.201.124.0/22 50673 -91.201.128.0/22 8881 -91.201.132.0/22 44278 -91.201.136.0/22 44287 -91.201.140.0/22 42831 -91.201.144.0/22 44318 -91.201.148.0/22 49113 -91.201.152.0/22 48446 -91.201.156.0/22 44304 -91.201.160.0/22 24916 -91.201.164.0/22 39637 -91.201.168.0/22 35325 -91.201.172.0/22 44309 -91.201.176.0/22 196638 -91.201.180.0/22 44383 -91.201.184.0/22 34121 -91.201.188.0/22 44411 -91.201.202.0/23 197684 -91.201.204.0/22 42574 -91.201.208.0/22 44425 -91.201.212.0/23 51776 -91.201.214.0/23 48716 -91.201.216.0/22 21299 -91.201.224.0/22 20539 -91.201.228.0/22 44484 -91.201.232.0/22 39247 -91.201.236.0/24 43328 -91.201.237.0/24 43634 -91.201.238.0/24 34329 -91.201.239.0/24 200622 -91.201.240.0/21 31725 -91.201.248.0/22 34802 -91.201.252.0/22 42916 -91.202.0.0/22 29443 -91.202.4.0/23 43130 -91.202.8.0/22 44487 -91.202.12.0/22 44493 -91.202.16.0/22 44528 -91.202.20.0/22 13056 -91.202.24.0/22 44604 -91.202.36.0/23 44532 -91.202.39.0/24 44532 -91.202.40.0/22 49855 -91.202.44.0/22 44640 -91.202.48.0/22 44545 -91.202.52.0/22 20609 -91.202.56.0/22 39248 -91.202.60.0/22 44571 -91.202.64.0/22 44615 -91.202.68.0/22 44634 -91.202.72.0/22 44600 -91.202.76.0/22 44584 -91.202.84.0/22 25513 -91.202.88.0/22 44605 -91.202.92.0/22 44619 -91.202.96.0/22 44621 -91.202.100.0/22 200909 -91.202.104.0/22 44668 -91.202.108.0/22 1820 -91.202.112.0/22 719 -91.202.116.0/22 44638 -91.202.120.0/22 31424 -91.202.124.0/22 44655 -91.202.128.0/22 13032 -91.202.132.0/22 44686 -91.202.136.0/22 44671 -91.202.140.0/22 42323 -91.202.144.0/22 44664 -91.202.148.0/22 44674 -91.202.152.0/22 197966 -91.202.156.0/22 44746 -91.202.160.0/22 41737 -91.202.164.0/22 9122 -91.202.168.0/22 44709 -91.202.172.0/22 43939 -91.202.176.0/24 61311 -91.202.177.0/24 199034 -91.202.178.0/23 61311 -91.202.180.0/22 44759 -91.202.184.0/22 44715 -91.202.188.0/22 29119 -91.202.192.0/22 202228 -91.202.196.0/22 49821 -91.202.201.0/24 36408 -91.202.203.0/24 36408 -91.202.204.0/22 51032 -91.202.208.0/22 197385 -91.202.212.0/22 35804 -91.202.216.0/22 44773 -91.202.220.0/22 25408 -91.202.224.0/22 44824 -91.202.228.0/22 35787 -91.202.232.0/23 9009 -91.202.236.0/22 44745 -91.202.240.0/22 12700 -91.202.244.0/24 48666 -91.202.245.0/24 199524 -91.202.246.0/23 199524 -91.202.248.0/22 47344 -91.202.252.0/22 44941 -91.203.0.0/22 42574 -91.203.4.0/22 25229 -91.203.8.0/22 44811 -91.203.12.0/22 34814 -91.203.16.0/22 12741 -91.203.20.0/24 8393 -91.203.22.0/23 8393 -91.203.24.0/22 44827 -91.203.28.0/22 44929 -91.203.32.0/22 44850 -91.203.36.0/24 15493 -91.203.37.0/24 44847 -91.203.38.0/24 8998 -91.203.39.0/24 15493 -91.203.40.0/22 44838 -91.203.44.0/22 44878 -91.203.48.0/22 15683 -91.203.52.0/22 34402 -91.203.56.0/22 44934 -91.203.60.0/22 44894 -91.203.64.0/22 44895 -91.203.68.0/22 43513 -91.203.72.0/22 34555 -91.203.80.0/22 44927 -91.203.84.0/22 51781 -91.203.88.0/22 13307 -91.203.92.0/22 205801 -91.203.97.0/24 39832 -91.203.100.0/22 203347 -91.203.105.0/24 51418 -91.203.108.0/22 45012 -91.203.112.0/22 25183 -91.203.116.0/22 2116 -91.203.121.0/24 12491 -91.203.122.0/23 12491 -91.203.124.0/22 45005 -91.203.128.0/22 3163 -91.203.132.0/22 43333 -91.203.136.0/22 45044 -91.203.140.0/22 56823 -91.203.144.0/22 45045 -91.203.152.0/22 45054 -91.203.156.0/22 51146 -91.203.160.0/22 47467 -91.203.164.0/22 47283 -91.203.168.0/22 45051 -91.203.172.0/22 47141 -91.203.176.0/22 47118 -91.203.180.0/22 47124 -91.203.184.0/22 41064 -91.203.188.0/22 47133 -91.203.192.0/22 47196 -91.203.196.0/22 47156 -91.203.200.0/22 43503 -91.203.204.0/22 12693 -91.203.208.0/22 47193 -91.203.212.0/22 57739 -91.203.216.0/22 47189 -91.203.220.0/24 49367 -91.203.221.0/24 202994 -91.203.222.0/24 59607 -91.203.223.0/24 57239 -91.203.224.0/24 47210 -91.203.225.0/24 205161 -91.203.226.0/24 204991 -91.203.227.0/24 49089 -91.203.228.0/23 62204 -91.203.232.0/23 34665 -91.203.235.0/24 34665 -91.203.236.0/22 13296 -91.203.240.0/22 47335 -91.203.244.0/22 43118 -91.203.248.0/22 47250 -91.204.0.0/22 47287 -91.204.4.0/22 31371 -91.204.8.0/22 8881 -91.204.12.0/24 44750 -91.204.13.0/24 203135 -91.204.14.0/23 8100 -91.204.16.0/22 47271 -91.204.20.0/23 13178 -91.204.22.0/23 15552 -91.204.24.0/22 47280 -91.204.28.0/22 31400 -91.204.32.0/22 47261 -91.204.36.0/22 47266 -91.204.40.0/22 202176 -91.204.44.0/22 197540 -91.204.48.0/24 22923 -91.204.51.0/24 9009 -91.204.52.0/23 41937 -91.204.56.0/22 47363 -91.204.60.0/22 47359 -91.204.64.0/22 47371 -91.204.68.0/22 47333 -91.204.72.0/22 197695 -91.204.76.0/22 12679 -91.204.80.0/24 139853 -91.204.81.0/24 207946 -91.204.82.0/24 208116 -91.204.84.0/22 47361 -91.204.88.0/22 41930 -91.204.92.0/22 3326 -91.204.96.0/22 24626 -91.204.100.0/22 47378 -91.204.104.0/22 43712 -91.204.108.0/22 47379 -91.204.112.0/24 205048 -91.204.113.0/24 208194 -91.204.114.0/23 205048 -91.204.116.0/22 44976 -91.204.120.0/23 48964 -91.204.122.0/24 48964 -91.204.124.0/22 203545 -91.204.128.0/22 34602 -91.204.132.0/22 47513 -91.204.136.0/22 47438 -91.204.140.0/22 60327 -91.204.144.0/22 47465 -91.204.148.0/22 42765 -91.204.152.0/22 206314 -91.204.156.0/22 34395 -91.204.160.0/23 50599 -91.204.162.0/24 50599 -91.204.163.0/24 59607 -91.204.164.0/22 41554 -91.204.168.0/22 209480 -91.204.172.0/22 47535 -91.204.176.0/22 47531 -91.204.180.0/22 13121 -91.204.184.0/22 47530 -91.204.188.0/22 42991 -91.204.192.0/22 48151 -91.204.196.0/22 6712 -91.204.200.0/22 47564 -91.204.204.0/22 47830 -91.204.208.0/22 52148 -91.204.212.0/22 35297 -91.204.216.0/22 1764 -91.204.222.0/24 31083 -91.204.224.0/22 136038 -91.204.228.0/22 43235 -91.204.232.0/22 42136 -91.204.236.0/22 47752 -91.204.240.0/22 47654 -91.204.244.0/22 41614 -91.204.248.0/22 203540 -91.204.252.0/22 47635 -91.205.0.0/22 15774 -91.205.4.0/22 47678 -91.205.8.0/22 47682 -91.205.12.0/22 201962 -91.205.16.0/22 8788 -91.205.20.0/22 60809 -91.205.24.0/22 47733 -91.205.28.0/22 6833 -91.205.32.0/22 21155 -91.205.36.0/22 50824 -91.205.41.0/24 207582 -91.205.44.0/22 39676 -91.205.48.0/22 47782 -91.205.52.0/22 47789 -91.205.56.0/22 35721 -91.205.60.0/22 35100 -91.205.64.0/22 35213 -91.205.68.0/22 57888 -91.205.72.0/22 41508 -91.205.76.0/22 50964 -91.205.80.0/23 205051 -91.205.82.0/24 12874 -91.205.83.0/24 205051 -91.205.84.0/22 47839 -91.205.88.0/22 47850 -91.205.96.0/22 47143 -91.205.100.0/22 47892 -91.205.106.0/23 35913 -91.205.108.0/22 210310 -91.205.112.0/23 394540 -91.205.116.0/22 47820 -91.205.120.0/22 47873 -91.205.128.0/22 47895 -91.205.132.0/22 48008 -91.205.136.0/21 48008 -91.205.144.0/22 47923 -91.205.148.0/22 31052 -91.205.152.0/22 47956 -91.205.160.0/22 51880 -91.205.164.0/22 47939 -91.205.168.0/24 25159 -91.205.169.0/24 31208 -91.205.170.0/24 31208 -91.205.172.0/22 51167 -91.205.176.0/23 5563 -91.205.180.0/22 51811 -91.205.184.0/22 50304 -91.205.188.0/23 57562 -91.205.192.0/23 50673 -91.205.194.0/24 198759 -91.205.195.0/24 199059 -91.205.196.0/23 39344 -91.205.198.0/24 39355 -91.205.199.0/24 208339 -91.205.200.0/22 51730 -91.205.204.0/22 48006 -91.205.208.0/22 47996 -91.205.212.0/22 61349 -91.205.216.0/22 48004 -91.205.224.0/23 28734 -91.205.232.0/24 47869 -91.205.233.0/24 395880 -91.205.234.0/23 47869 -91.205.236.0/22 48043 -91.205.240.0/22 48044 -91.205.244.0/22 50231 -91.205.248.0/22 50743 -91.205.252.0/22 12958 -91.206.0.0/23 41751 -91.206.2.0/24 26556 -91.206.4.0/23 29074 -91.206.6.0/23 47695 -91.206.8.0/23 51184 -91.206.12.0/23 47375 -91.206.14.0/23 49505 -91.206.16.0/23 13259 -91.206.18.0/23 47397 -91.206.20.0/24 47557 -91.206.21.0/24 59872 -91.206.22.0/24 47399 -91.206.24.0/23 47302 -91.206.26.0/23 51290 -91.206.30.0/23 42331 -91.206.32.0/23 43320 -91.206.34.0/24 47405 -91.206.35.0/24 60052 -91.206.36.0/23 47388 -91.206.38.0/23 20889 -91.206.40.0/23 47390 -91.206.44.0/23 47412 -91.206.46.0/23 33843 -91.206.50.0/23 197138 -91.206.54.0/23 47439 -91.206.56.0/23 47470 -91.206.59.0/24 47437 -91.206.60.0/23 12306 -91.206.62.0/23 47456 -91.206.66.0/23 34241 -91.206.68.0/24 204957 -91.206.69.0/24 61272 -91.206.72.0/23 47495 -91.206.74.0/23 12637 -91.206.76.0/23 41108 -91.206.78.0/23 47505 -91.206.80.0/23 15879 -91.206.82.0/23 47511 -91.206.84.0/23 42160 -91.206.86.0/23 203584 -91.206.90.0/24 198163 -91.206.91.0/24 196849 -91.206.92.0/23 49392 -91.206.94.0/23 60788 -91.206.96.0/23 41959 -91.206.98.0/23 25068 -91.206.100.0/23 44704 -91.206.102.0/23 44825 -91.206.104.0/23 15532 -91.206.108.0/23 35745 -91.206.110.0/23 47598 -91.206.112.0/23 42829 -91.206.114.0/23 47329 -91.206.116.0/23 41223 -91.206.118.0/23 25577 -91.206.120.0/23 42056 -91.206.124.0/24 58099 -91.206.126.0/23 47759 -91.206.128.0/23 20746 -91.206.130.0/23 44621 -91.206.132.0/23 47609 -91.206.134.0/23 30857 -91.206.136.0/23 31477 -91.206.138.0/23 47624 -91.206.142.0/23 45031 -91.206.144.0/24 59268 -91.206.145.0/24 14537 -91.206.146.0/23 47652 -91.206.148.0/23 47656 -91.206.150.0/23 47657 -91.206.152.0/23 15598 -91.206.154.0/23 50767 -91.206.156.0/23 47891 -91.206.158.0/23 47662 -91.206.160.0/23 6910 -91.206.164.0/23 6834 -91.206.166.0/24 202497 -91.206.167.0/24 202404 -91.206.170.0/23 47776 -91.206.174.0/23 47698 -91.206.176.0/23 3549 -91.206.178.0/23 43333 -91.206.180.0/23 60809 -91.206.182.0/23 47625 -91.206.184.0/23 49957 -91.206.186.0/23 47722 -91.206.188.0/23 3320 -91.206.190.0/23 39867 -91.206.192.0/23 8447 -91.206.194.0/23 47734 -91.206.196.0/23 47773 -91.206.198.0/23 47835 -91.206.200.0/23 200000 -91.206.206.0/23 47792 -91.206.210.0/23 47790 -91.206.212.0/23 47801 -91.206.214.0/23 12843 -91.206.216.0/24 47808 -91.206.217.0/24 206027 -91.206.218.0/23 59478 -91.206.220.0/23 47804 -91.206.222.0/23 47827 -91.206.224.0/23 39912 -91.206.226.0/23 44633 -91.206.231.0/24 207606 -91.206.232.0/23 43996 -91.206.234.0/23 30967 -91.206.236.0/23 28889 -91.206.238.0/23 8437 -91.206.240.0/24 47851 -91.206.242.0/23 47854 -91.206.244.0/23 47884 -91.206.246.0/23 28788 -91.206.248.0/23 47955 -91.206.250.0/23 47861 -91.206.252.0/24 47898 -91.206.254.0/23 47916 -91.207.2.0/23 49010 -91.207.5.0/24 200496 -91.207.6.0/24 43634 -91.207.8.0/24 198834 -91.207.9.0/24 208790 -91.207.10.0/23 48047 -91.207.12.0/23 16509 -91.207.14.0/23 42656 -91.207.16.0/23 48344 -91.207.18.0/23 8218 -91.207.20.0/23 24711 -91.207.22.0/23 47948 -91.207.24.0/23 47934 -91.207.26.0/23 47984 -91.207.28.0/23 39819 -91.207.30.0/24 29041 -91.207.31.0/24 200875 -91.207.32.0/23 203644 -91.207.34.0/24 42475 -91.207.35.0/24 47961 -91.207.36.0/23 50845 -91.207.38.0/23 47999 -91.207.40.0/23 47974 -91.207.42.0/23 12714 -91.207.44.0/23 41550 -91.207.46.0/23 15577 -91.207.48.0/23 24578 -91.207.50.0/23 39537 -91.207.52.0/23 48956 -91.207.54.0/24 48010 -91.207.56.0/23 9009 -91.207.58.0/23 48061 -91.207.60.0/23 48031 -91.207.62.0/23 48015 -91.207.64.0/23 13000 -91.207.66.0/23 43139 -91.207.68.0/23 48742 -91.207.74.0/23 48073 -91.207.76.0/23 48041 -91.207.78.0/24 202801 -91.207.79.0/24 51791 -91.207.80.0/23 8473 -91.207.82.0/23 48058 -91.207.86.0/23 56798 -91.207.88.0/23 48081 -91.207.90.0/23 48068 -91.207.92.0/24 3320 -91.207.93.0/24 20570 -91.207.96.0/24 208090 -91.207.97.0/24 204161 -91.207.98.0/23 6789 -91.207.100.0/23 48079 -91.207.102.0/23 9009 -91.207.104.0/23 43139 -91.207.106.0/24 48086 -91.207.107.0/24 28761 -91.207.108.0/23 204161 -91.207.110.0/23 35670 -91.207.112.0/23 48093 -91.207.114.0/23 48098 -91.207.118.0/24 3320 -91.207.120.0/23 48112 -91.207.122.0/23 48127 -91.207.124.0/23 8423 -91.207.126.0/23 48119 -91.207.128.0/23 48132 -91.207.130.0/23 25581 -91.207.132.0/23 48143 -91.207.134.0/23 20634 -91.207.136.0/23 48176 -91.207.138.0/23 51241 -91.207.140.0/23 48312 -91.207.142.0/23 48160 -91.207.146.0/23 35816 -91.207.148.0/23 48311 -91.207.150.0/23 60432 -91.207.152.0/23 3356 -91.207.156.0/23 48208 -91.207.158.0/23 2116 -91.207.160.0/23 48242 -91.207.162.0/23 21150 -91.207.166.0/23 57643 -91.207.170.0/23 29124 -91.207.172.0/22 9009 -91.207.176.0/24 3215 -91.207.177.0/24 48072 -91.207.180.0/23 48275 -91.207.184.0/23 203821 -91.207.186.0/23 33868 -91.207.188.0/23 60592 -91.207.190.0/23 39251 -91.207.194.0/23 47567 -91.207.198.0/23 24865 -91.207.200.0/23 48523 -91.207.202.0/23 50625 -91.207.204.0/23 3326 -91.207.208.0/23 41156 -91.207.210.0/23 48323 -91.207.212.0/23 52129 -91.207.214.0/23 205206 -91.207.216.0/23 49266 -91.207.218.0/23 196629 -91.207.220.0/23 20860 -91.207.224.0/23 196638 -91.207.226.0/23 31283 -91.207.228.0/23 43337 -91.207.230.0/23 6881 -91.207.232.0/23 34141 -91.207.234.0/23 6881 -91.207.236.0/23 3329 -91.207.238.0/23 48409 -91.207.240.0/23 20645 -91.207.242.0/23 43290 -91.207.244.0/23 48411 -91.207.246.0/23 48429 -91.207.248.0/24 64450 -91.207.249.0/24 207114 -91.207.250.0/23 49957 -91.207.252.0/23 48442 -91.207.254.0/23 35393 -91.208.0.0/24 29802 -91.208.2.0/24 12552 -91.208.3.0/24 33879 -91.208.4.0/24 29684 -91.208.5.0/24 12843 -91.208.7.0/24 1764 -91.208.8.0/24 5381 -91.208.9.0/24 3215 -91.208.10.0/24 47520 -91.208.11.0/24 47534 -91.208.13.0/24 42652 -91.208.14.0/24 20487 -91.208.15.0/24 47525 -91.208.16.0/24 29802 -91.208.17.0/24 208988 -91.208.18.0/24 3320 -91.208.20.0/24 47579 -91.208.21.0/24 16509 -91.208.22.0/24 47545 -91.208.23.0/24 47819 -91.208.24.0/24 29695 -91.208.25.0/24 47664 -91.208.26.0/24 39632 -91.208.27.0/24 39187 -91.208.28.0/24 49882 -91.208.29.0/24 44315 -91.208.30.0/24 44468 -91.208.32.0/24 29649 -91.208.33.0/24 41975 -91.208.34.0/24 8283 -91.208.35.0/24 31421 -91.208.36.0/24 5588 -91.208.37.0/24 13205 -91.208.38.0/24 3320 -91.208.39.0/24 47668 -91.208.40.0/24 29075 -91.208.41.0/24 42826 -91.208.42.0/24 47577 -91.208.43.0/24 50340 -91.208.44.0/24 50101 -91.208.45.0/24 3209 -91.208.47.0/24 12843 -91.208.49.0/24 8455 -91.208.50.0/24 35745 -91.208.51.0/24 6716 -91.208.52.0/24 54903 -91.208.53.0/24 25180 -91.208.54.0/24 43401 -91.208.55.0/24 48248 -91.208.56.0/24 48339 -91.208.57.0/24 48380 -91.208.58.0/24 34372 -91.208.59.0/24 197175 -91.208.60.0/24 39704 -91.208.62.0/24 197395 -91.208.65.0/24 47604 -91.208.66.0/24 20712 -91.208.68.0/24 15404 -91.208.69.0/24 209484 -91.208.70.0/24 8685 -91.208.71.0/24 62324 -91.208.72.0/24 47633 -91.208.73.0/24 209484 -91.208.74.0/24 12676 -91.208.75.0/24 47621 -91.208.78.0/24 12741 -91.208.79.0/24 47639 -91.208.80.0/24 3330 -91.208.81.0/24 51815 -91.208.82.0/24 47649 -91.208.83.0/24 197729 -91.208.84.0/24 47418 -91.208.86.0/24 47665 -91.208.87.0/24 20769 -91.208.88.0/24 47676 -91.208.89.0/24 47666 -91.208.90.0/24 47667 -91.208.91.0/24 8437 -91.208.92.0/24 49500 -91.208.93.0/24 47672 -91.208.94.0/24 47743 -91.208.95.0/24 19318 -91.208.96.0/24 47760 -91.208.97.0/24 47705 -91.208.98.0/24 62156 -91.208.99.0/24 198047 -91.208.101.0/24 41505 -91.208.102.0/24 50087 -91.208.103.0/24 47698 -91.208.104.0/24 209484 -91.208.105.0/24 174 -91.208.107.0/24 47700 -91.208.108.0/24 16347 -91.208.110.0/24 35735 -91.208.111.0/24 47744 -91.208.112.0/24 47714 -91.208.114.0/24 31742 -91.208.115.0/24 30860 -91.208.116.0/24 47800 -91.208.117.0/24 25180 -91.208.120.0/24 47731 -91.208.121.0/24 47740 -91.208.122.0/24 47738 -91.208.123.0/24 35626 -91.208.124.0/24 15404 -91.208.125.0/24 15889 -91.208.126.0/24 47763 -91.208.127.0/24 47753 -91.208.129.0/24 47770 -91.208.130.0/24 48350 -91.208.132.0/24 49505 -91.208.133.0/24 8588 -91.208.134.0/24 47758 -91.208.135.0/24 44666 -91.208.136.0/24 39477 -91.208.138.0/24 47799 -91.208.139.0/24 47766 -91.208.141.0/24 47762 -91.208.142.0/24 20616 -91.208.143.0/24 47765 -91.208.144.0/24 47810 -91.208.145.0/24 47772 -91.208.147.0/24 43194 -91.208.148.0/24 49310 -91.208.150.0/24 47876 -91.208.153.0/24 47788 -91.208.154.0/24 47811 -91.208.155.0/24 2861 -91.208.156.0/24 47805 -91.208.157.0/24 58282 -91.208.158.0/24 34788 -91.208.159.0/24 12843 -91.208.160.0/24 42442 -91.208.161.0/24 50652 -91.208.162.0/24 200019 -91.208.163.0/24 48771 -91.208.164.0/24 47869 -91.208.165.0/24 47817 -91.208.166.0/24 28829 -91.208.167.0/24 28878 -91.208.168.0/24 47993 -91.208.169.0/24 8437 -91.208.170.0/24 174 -91.208.171.0/24 47857 -91.208.172.0/24 47858 -91.208.173.0/24 6730 -91.208.174.0/24 199215 -91.208.175.0/24 47836 -91.208.178.0/24 47848 -91.208.179.0/24 39002 -91.208.180.0/24 6730 -91.208.181.0/24 47841 -91.208.182.0/24 31242 -91.208.183.0/24 47842 -91.208.184.0/24 200019 -91.208.185.0/24 47852 -91.208.186.0/24 47888 -91.208.187.0/24 47955 -91.208.188.0/24 12552 -91.208.189.0/24 31242 -91.208.190.0/24 31229 -91.208.191.0/24 8881 -91.208.192.0/24 47877 -91.208.193.0/24 3209 -91.208.194.0/24 47900 -91.208.195.0/24 47912 -91.208.197.0/24 200019 -91.208.198.0/24 47919 -91.208.199.0/24 35185 -91.208.200.0/24 47903 -91.208.201.0/24 6830 -91.208.202.0/24 42652 -91.208.204.0/24 15830 -91.208.205.0/24 47925 -91.208.206.0/24 200019 -91.208.208.0/24 138398 -91.208.209.0/24 48069 -91.208.210.0/24 47972 -91.208.211.0/24 59943 -91.208.212.0/24 15404 -91.208.213.0/24 49500 -91.208.214.0/24 47957 -91.208.215.0/24 47958 -91.208.216.0/24 47976 -91.208.217.0/24 12971 -91.208.218.0/24 25237 -91.208.219.0/24 5552 -91.208.221.0/24 29468 -91.208.222.0/24 47494 -91.208.223.0/24 31734 -91.208.224.0/24 47980 -91.208.225.0/24 197441 -91.208.226.0/24 47977 -91.208.227.0/24 41913 -91.208.229.0/24 48729 -91.208.231.0/24 51387 -91.208.232.0/24 48009 -91.208.234.0/24 48012 -91.208.235.0/24 47991 -91.208.237.0/24 48017 -91.208.238.0/24 42375 -91.208.239.0/24 48003 -91.208.240.0/24 139659 -91.208.243.0/24 200660 -91.208.244.0/24 35258 -91.208.245.0/24 21859 -91.208.246.0/24 21859 -91.208.247.0/24 13000 -91.208.248.0/24 48033 -91.208.249.0/24 43592 -91.208.250.0/24 48023 -91.208.251.0/24 8587 -91.208.252.0/24 30417 -91.208.253.0/24 48032 -91.208.255.0/24 48059 -91.209.0.0/24 60396 -91.209.1.0/24 50843 -91.209.2.0/24 8339 -91.209.3.0/24 3262 -91.209.5.0/24 51709 -91.209.6.0/24 48077 -91.209.7.0/24 31477 -91.209.8.0/24 48115 -91.209.9.0/24 58107 -91.209.10.0/24 47941 -91.209.11.0/24 48094 -91.209.13.0/24 39637 -91.209.14.0/24 8587 -91.209.15.0/24 43646 -91.209.17.0/24 48104 -91.209.18.0/24 8558 -91.209.19.0/24 48134 -91.209.20.0/24 48183 -91.209.21.0/24 8587 -91.209.22.0/24 8587 -91.209.23.0/24 48114 -91.209.24.0/24 48117 -91.209.25.0/24 48140 -91.209.26.0/24 3209 -91.209.27.0/24 48189 -91.209.28.0/24 48138 -91.209.29.0/24 48618 -91.209.30.0/24 48144 -91.209.32.0/24 48353 -91.209.33.0/24 3330 -91.209.34.0/24 13009 -91.209.35.0/24 43311 -91.209.36.0/24 48217 -91.209.37.0/24 52148 -91.209.38.0/24 48244 -91.209.39.0/24 62121 -91.209.42.0/24 48153 -91.209.45.0/24 48167 -91.209.46.0/24 48261 -91.209.49.0/24 48653 -91.209.50.0/24 39673 -91.209.51.0/24 48239 -91.209.52.0/24 61157 -91.209.53.0/24 48258 -91.209.54.0/24 48195 -91.209.55.0/24 48229 -91.209.56.0/24 21344 -91.209.59.0/24 48225 -91.209.60.0/24 57850 -91.209.61.0/24 48865 -91.209.64.0/24 48230 -91.209.65.0/24 39264 -91.209.67.0/24 29476 -91.209.69.0/24 48247 -91.209.70.0/24 43317 -91.209.71.0/24 6461 -91.209.72.0/24 47677 -91.209.74.0/24 48255 -91.209.75.0/24 8447 -91.209.76.0/24 34336 -91.209.77.0/24 51248 -91.209.78.0/24 60572 -91.209.79.0/24 34437 -91.209.80.0/24 42972 -91.209.82.0/24 30827 -91.209.83.0/24 10753 -91.209.84.0/24 48307 -91.209.85.0/24 48770 -91.209.88.0/24 51815 -91.209.89.0/24 42473 -91.209.91.0/24 48488 -91.209.92.0/24 33873 -91.209.93.0/24 48523 -91.209.94.0/24 48297 -91.209.95.0/24 38921 -91.209.96.0/24 3326 -91.209.97.0/24 5602 -91.209.98.0/24 13030 -91.209.101.0/24 48405 -91.209.102.0/24 39756 -91.209.103.0/24 199483 -91.209.104.0/24 52129 -91.209.105.0/24 198537 -91.209.106.0/24 48342 -91.209.107.0/24 30781 -91.209.108.0/24 48341 -91.209.109.0/24 48332 -91.209.110.0/24 57744 -91.209.111.0/24 48350 -91.209.112.0/24 48339 -91.209.113.0/24 20645 -91.209.114.0/24 12301 -91.209.115.0/24 198537 -91.209.116.0/24 12831 -91.209.117.0/24 52018 -91.209.119.0/24 51464 -91.209.120.0/24 33933 -91.209.121.0/24 48572 -91.209.122.0/24 48349 -91.209.123.0/24 13011 -91.209.124.0/24 48366 -91.209.125.0/24 8897 -91.209.126.0/24 48377 -91.209.127.0/24 28917 -91.209.128.0/23 48370 -91.209.130.0/24 48370 -91.209.131.0/24 48393 -91.209.132.0/24 48388 -91.209.133.0/24 48408 -91.209.134.0/24 48468 -91.209.136.0/24 48372 -91.209.137.0/24 5524 -91.209.139.0/24 48385 -91.209.141.0/24 48395 -91.209.142.0/24 5089 -91.209.145.0/24 48398 -91.209.146.0/24 44201 -91.209.147.0/24 48396 -91.209.148.0/24 202802 -91.209.149.0/24 198537 -91.209.150.0/24 48419 -91.209.151.0/24 198537 -91.209.152.0/24 48428 -91.209.153.0/24 41253 -91.209.154.0/24 48426 -91.209.155.0/24 47876 -91.209.156.0/24 198141 -91.209.157.0/24 48420 -91.209.158.0/24 3303 -91.209.159.0/24 3320 -91.209.160.0/24 20570 -91.209.161.0/24 48449 -91.209.162.0/23 9009 -91.209.164.0/24 48056 -91.209.165.0/24 199098 -91.209.166.0/24 16095 -91.209.167.0/24 48510 -91.209.168.0/24 31477 -91.209.169.0/24 48482 -91.209.170.0/24 3303 -91.209.171.0/24 34714 -91.209.172.0/24 3225 -91.209.173.0/24 48489 -91.209.174.0/24 48490 -91.209.176.0/24 48509 -91.209.178.0/24 12703 -91.209.180.0/24 48516 -91.209.181.0/24 197209 -91.209.185.0/24 3209 -91.209.187.0/24 6908 -91.209.188.0/24 20691 -91.209.189.0/24 48571 -91.209.190.0/24 198452 -91.209.191.0/24 47127 -91.209.192.0/24 31477 -91.209.194.0/24 48617 -91.209.195.0/24 48593 -91.209.196.0/24 48447 -91.209.197.0/24 48591 -91.209.198.0/24 48616 -91.209.199.0/24 34284 -91.209.201.0/24 50362 -91.209.202.0/23 50362 -91.209.206.0/24 31445 -91.209.207.0/24 48609 -91.209.210.0/24 48656 -91.209.211.0/24 44592 -91.209.213.0/24 50399 -91.209.214.0/24 48637 -91.209.216.0/24 48621 -91.209.217.0/24 48632 -91.209.218.0/24 44622 -91.209.219.0/24 8447 -91.209.220.0/24 48639 -91.209.221.0/24 48636 -91.209.222.0/24 48633 -91.209.223.0/24 197122 -91.209.228.0/24 28717 -91.209.229.0/24 202568 -91.209.230.0/23 9009 -91.209.232.0/24 48657 -91.209.233.0/24 51780 -91.209.234.0/24 34241 -91.209.235.0/24 48665 -91.209.237.0/24 31687 -91.209.238.0/24 198189 -91.209.239.0/24 48672 -91.209.240.0/24 62313 -91.209.241.0/24 48736 -91.209.242.0/24 49100 -91.209.243.0/24 48868 -91.209.244.0/24 48686 -91.209.245.0/24 35393 -91.209.246.0/24 48706 -91.209.247.0/24 48473 -91.209.248.0/24 48701 -91.209.249.0/24 196632 -91.209.250.0/24 39380 -91.209.255.0/24 20668 -91.210.0.0/22 48013 -91.210.4.0/22 48102 -91.210.8.0/22 47245 -91.210.12.0/22 57213 -91.210.20.0/22 48082 -91.210.24.0/22 48078 -91.210.32.0/22 35714 -91.210.36.0/23 1 -91.210.38.0/24 1 -91.210.39.0/24 48085 -91.210.40.0/22 44395 -91.210.44.0/22 48129 -91.210.48.0/22 48183 -91.210.52.0/22 15673 -91.210.56.0/22 202914 -91.210.64.0/22 43350 -91.210.72.0/22 25538 -91.210.76.0/22 20670 -91.210.80.0/22 48250 -91.210.84.0/22 48166 -91.210.88.0/22 48155 -91.210.92.0/22 57209 -91.210.96.0/22 50712 -91.210.100.0/23 60800 -91.210.102.0/23 51713 -91.210.104.0/22 49335 -91.210.108.0/22 41084 -91.210.112.0/22 49012 -91.210.116.0/22 48243 -91.210.120.0/22 48004 -91.210.125.0/24 58075 -91.210.128.0/23 52142 -91.210.130.0/23 44279 -91.210.132.0/23 48241 -91.210.136.0/22 48265 -91.210.140.0/22 21013 -91.210.144.0/22 48272 -91.210.148.0/22 34990 -91.210.156.0/22 48317 -91.210.160.0/22 21087 -91.210.164.0/23 15626 -91.210.166.0/23 59729 -91.210.168.0/23 9123 -91.210.172.0/22 50673 -91.210.176.0/22 48330 -91.210.180.0/22 48304 -91.210.184.0/22 48316 -91.210.188.0/22 48440 -91.210.192.0/22 48485 -91.210.196.0/22 42608 -91.210.200.0/22 48369 -91.210.204.0/22 48354 -91.210.208.0/23 31229 -91.210.210.0/24 31229 -91.210.212.0/22 208788 -91.210.216.0/22 47530 -91.210.220.0/22 25447 -91.210.224.0/22 31400 -91.210.228.0/22 48371 -91.210.232.0/22 39122 -91.210.236.0/22 42153 -91.210.240.0/22 48424 -91.210.244.0/22 41835 -91.210.248.0/22 48438 -91.210.252.0/22 48421 -91.211.4.0/22 59584 -91.211.8.0/22 8893 -91.211.12.0/22 48471 -91.211.16.0/22 47694 -91.211.20.0/22 48642 -91.211.24.0/22 48476 -91.211.28.0/22 48000 -91.211.32.0/22 8437 -91.211.36.0/22 48498 -91.211.40.0/22 3209 -91.211.44.0/22 48481 -91.211.48.0/22 48480 -91.211.52.0/22 48494 -91.211.56.0/22 48507 -91.211.60.0/22 48515 -91.211.64.0/22 39305 -91.211.68.0/22 39043 -91.211.72.0/23 41552 -91.211.74.0/24 41552 -91.211.75.0/24 3356 -91.211.80.0/22 35598 -91.211.88.0/22 206638 -91.211.92.0/24 199020 -91.211.93.0/24 41599 -91.211.94.0/23 41599 -91.211.96.0/22 48536 -91.211.100.0/22 34494 -91.211.104.0/22 48654 -91.211.108.0/22 42844 -91.211.112.0/22 8820 -91.211.116.0/22 48587 -91.211.120.0/24 48648 -91.211.121.0/24 56835 -91.211.122.0/24 48648 -91.211.123.0/24 48748 -91.211.124.0/22 48612 -91.211.128.0/22 41341 -91.211.132.0/22 48589 -91.211.136.0/22 25133 -91.211.140.0/22 44941 -91.211.144.0/22 49340 -91.211.148.0/22 15774 -91.211.152.0/22 50056 -91.211.156.0/22 48634 -91.211.160.0/22 41960 -91.211.164.0/22 12565 -91.211.168.0/22 50572 -91.211.172.0/22 34047 -91.211.176.0/22 44628 -91.211.180.0/22 48676 -91.211.184.0/22 48679 -91.211.188.0/22 48698 -91.211.192.0/22 15493 -91.211.200.0/23 48691 -91.211.204.0/22 48696 -91.211.208.0/22 48719 -91.211.212.0/22 48730 -91.211.216.0/22 48720 -91.211.220.0/22 39566 -91.211.224.0/22 42927 -91.211.228.0/22 42269 -91.211.232.0/22 13172 -91.211.236.0/22 48758 -91.211.240.0/22 199236 -91.211.244.0/22 61053 -91.211.248.0/22 204601 -91.211.252.0/22 31129 -91.212.1.0/24 48740 -91.212.2.0/24 41218 -91.212.3.0/24 60522 -91.212.4.0/24 39689 -91.212.5.0/24 196649 -91.212.7.0/24 196642 -91.212.12.0/24 48447 -91.212.13.0/24 42100 -91.212.15.0/24 43084 -91.212.16.0/24 48762 -91.212.17.0/24 48745 -91.212.18.0/24 5089 -91.212.20.0/24 35913 -91.212.21.0/24 48750 -91.212.22.0/24 48756 -91.212.23.0/24 48754 -91.212.24.0/24 60215 -91.212.25.0/24 201953 -91.212.26.0/24 47891 -91.212.27.0/24 35913 -91.212.28.0/24 31027 -91.212.29.0/24 48766 -91.212.30.0/24 48782 -91.212.31.0/24 35225 -91.212.33.0/24 31229 -91.212.34.0/24 48783 -91.212.35.0/24 48786 -91.212.36.0/24 48805 -91.212.37.0/24 48746 -91.212.38.0/24 35913 -91.212.39.0/24 48836 -91.212.40.0/23 8893 -91.212.42.0/24 200596 -91.212.43.0/24 8220 -91.212.44.0/24 48794 -91.212.45.0/24 35913 -91.212.46.0/24 48906 -91.212.47.0/24 48802 -91.212.48.0/24 25352 -91.212.49.0/24 49392 -91.212.50.0/24 48816 -91.212.51.0/24 49392 -91.212.52.0/24 20668 -91.212.53.0/24 33847 -91.212.54.0/23 8893 -91.212.56.0/24 48845 -91.212.57.0/24 48827 -91.212.59.0/24 48855 -91.212.60.0/24 48842 -91.212.61.0/24 29195 -91.212.63.0/24 48867 -91.212.64.0/24 196664 -91.212.65.0/24 49392 -91.212.66.0/24 48837 -91.212.67.0/24 29684 -91.212.68.0/24 39406 -91.212.69.0/24 49167 -91.212.70.0/24 48843 -91.212.71.0/24 48860 -91.212.72.0/23 49088 -91.212.74.0/24 48852 -91.212.75.0/24 48849 -91.212.76.0/24 43739 -91.212.77.0/24 48885 -91.212.79.0/24 49343 -91.212.80.0/24 48964 -91.212.81.0/24 51004 -91.212.82.0/24 49392 -91.212.83.0/24 60175 -91.212.84.0/24 35115 -91.212.85.0/24 31010 -91.212.86.0/24 48963 -91.212.87.0/24 196731 -91.212.89.0/24 48979 -91.212.90.0/24 44574 -91.212.91.0/24 3303 -91.212.92.0/24 2119 -91.212.94.0/24 57784 -91.212.95.0/24 48991 -91.212.98.0/24 44788 -91.212.99.0/24 50673 -91.212.100.0/24 64249 -91.212.101.0/24 49023 -91.212.104.0/24 12327 -91.212.105.0/24 49049 -91.212.107.0/24 64249 -91.212.108.0/24 25577 -91.212.109.0/24 33965 -91.212.110.0/24 30885 -91.212.111.0/24 49042 -91.212.112.0/24 57801 -91.212.113.0/24 15404 -91.212.114.0/24 49076 -91.212.115.0/24 49793 -91.212.116.0/24 49068 -91.212.117.0/24 3303 -91.212.118.0/24 49208 -91.212.119.0/24 49230 -91.212.120.0/24 64249 -91.212.121.0/24 6830 -91.212.123.0/24 64249 -91.212.124.0/24 59668 -91.212.125.0/24 49511 -91.212.126.0/24 196627 -91.212.128.0/24 35665 -91.212.129.0/24 49187 -91.212.130.0/24 3320 -91.212.131.0/24 6067 -91.212.132.0/24 56180 -91.212.133.0/24 49108 -91.212.134.0/24 49853 -91.212.136.0/24 199217 -91.212.137.0/24 49347 -91.212.138.0/24 10753 -91.212.139.0/24 20495 -91.212.140.0/24 24961 -91.212.143.0/24 49123 -91.212.144.0/24 41163 -91.212.145.0/24 25425 -91.212.146.0/24 49128 -91.212.148.0/24 52023 -91.212.150.0/24 43350 -91.212.151.0/24 49207 -91.212.153.0/24 24961 -91.212.154.0/24 49139 -91.212.155.0/24 49141 -91.212.157.0/24 49152 -91.212.158.0/24 3200 -91.212.160.0/23 49088 -91.212.162.0/24 49169 -91.212.164.0/24 25233 -91.212.165.0/24 49197 -91.212.166.0/24 4589 -91.212.167.0/24 47353 -91.212.168.0/24 49200 -91.212.170.0/24 49616 -91.212.171.0/24 49288 -91.212.173.0/24 49213 -91.212.174.0/24 49224 -91.212.175.0/24 49212 -91.212.176.0/24 12945 -91.212.177.0/24 49306 -91.212.178.0/24 49672 -91.212.179.0/24 49246 -91.212.181.0/24 42596 -91.212.182.0/24 62217 -91.212.183.0/24 49250 -91.212.184.0/24 12414 -91.212.185.0/24 49333 -91.212.187.0/24 203717 -91.212.188.0/24 49303 -91.212.189.0/24 49308 -91.212.190.0/24 57783 -91.212.191.0/24 49270 -91.212.192.0/24 49259 -91.212.194.0/24 42057 -91.212.196.0/24 49983 -91.212.197.0/24 49279 -91.212.199.0/24 196772 -91.212.202.0/24 21094 -91.212.203.0/24 49332 -91.212.205.0/24 49328 -91.212.206.0/24 49294 -91.212.207.0/24 49329 -91.212.208.0/24 49407 -91.212.209.0/24 35706 -91.212.211.0/24 196765 -91.212.212.0/24 31659 -91.212.213.0/24 49364 -91.212.214.0/24 49359 -91.212.215.0/24 49405 -91.212.217.0/24 48293 -91.212.218.0/24 49390 -91.212.219.0/24 49355 -91.212.221.0/24 56948 -91.212.223.0/24 49370 -91.212.225.0/24 58227 -91.212.227.0/24 49379 -91.212.228.0/24 43071 -91.212.229.0/24 49981 -91.212.231.0/24 5588 -91.212.233.0/24 42734 -91.212.234.0/24 49525 -91.212.235.0/24 35761 -91.212.236.0/24 35625 -91.212.237.0/24 5524 -91.212.238.0/24 49555 -91.212.239.0/24 203730 -91.212.240.0/24 5588 -91.212.241.0/24 47217 -91.212.242.0/24 49420 -91.212.243.0/24 3320 -91.212.244.0/24 196785 -91.212.245.0/24 15404 -91.212.246.0/24 5588 -91.212.247.0/24 49428 -91.212.248.0/24 49444 -91.212.249.0/24 49431 -91.212.250.0/24 197248 -91.212.251.0/24 3212 -91.212.252.0/24 49433 -91.212.253.0/24 196790 -91.212.254.0/24 49437 -91.212.255.0/24 5588 -91.213.0.0/24 196793 -91.213.1.0/24 34984 -91.213.2.0/24 49446 -91.213.3.0/24 30367 -91.213.4.0/24 6830 -91.213.5.0/24 49452 -91.213.6.0/24 196817 -91.213.7.0/24 41986 -91.213.8.0/24 48031 -91.213.10.0/24 5588 -91.213.11.0/24 49468 -91.213.13.0/24 51088 -91.213.15.0/24 49566 -91.213.16.0/24 49423 -91.213.18.0/24 57689 -91.213.19.0/24 49496 -91.213.20.0/24 12348 -91.213.21.0/24 198710 -91.213.22.0/24 49523 -91.213.23.0/24 49506 -91.213.24.0/24 43284 -91.213.25.0/24 42970 -91.213.27.0/24 49499 -91.213.28.0/24 15830 -91.213.30.0/24 49638 -91.213.31.0/24 49529 -91.213.32.0/24 49520 -91.213.33.0/24 197481 -91.213.34.0/24 34714 -91.213.36.0/24 49552 -91.213.37.0/24 13127 -91.213.38.0/24 49564 -91.213.39.0/24 49558 -91.213.40.0/24 6830 -91.213.41.0/24 48436 -91.213.43.0/24 35407 -91.213.44.0/24 51028 -91.213.46.0/24 50926 -91.213.47.0/24 61188 -91.213.49.0/24 49392 -91.213.50.0/24 49392 -91.213.51.0/24 49644 -91.213.52.0/24 49582 -91.213.54.0/24 51890 -91.213.55.0/24 49591 -91.213.56.0/24 196819 -91.213.57.0/24 49595 -91.213.58.0/24 49611 -91.213.59.0/24 49620 -91.213.60.0/24 31103 -91.213.61.0/24 49639 -91.213.62.0/24 49622 -91.213.63.0/24 12703 -91.213.64.0/24 28893 -91.213.65.0/24 15404 -91.213.67.0/24 41748 -91.213.68.0/24 15404 -91.213.69.0/24 50673 -91.213.70.0/24 21060 -91.213.71.0/24 49047 -91.213.74.0/23 42947 -91.213.76.0/24 49645 -91.213.77.0/24 49660 -91.213.78.0/24 35705 -91.213.79.0/24 39634 -91.213.80.0/24 49636 -91.213.81.0/24 14618 -91.213.82.0/24 196633 -91.213.84.0/24 198565 -91.213.85.0/24 47886 -91.213.86.0/24 20668 -91.213.87.0/24 12341 -91.213.88.0/24 8380 -91.213.89.0/24 15664 -91.213.90.0/24 30839 -91.213.91.0/24 47992 -91.213.92.0/24 49662 -91.213.95.0/24 31477 -91.213.96.0/24 5588 -91.213.97.0/24 49802 -91.213.98.0/24 8454 -91.213.100.0/24 12342 -91.213.101.0/24 21317 -91.213.102.0/24 196658 -91.213.103.0/24 48152 -91.213.104.0/24 13075 -91.213.105.0/24 35407 -91.213.106.0/24 49667 -91.213.107.0/24 49998 -91.213.108.0/24 48559 -91.213.109.0/24 20611 -91.213.110.0/24 15404 -91.213.112.0/24 42755 -91.213.113.0/24 41060 -91.213.115.0/24 8315 -91.213.116.0/24 3320 -91.213.119.0/24 21228 -91.213.120.0/23 42947 -91.213.122.0/24 44104 -91.213.123.0/24 196677 -91.213.125.0/24 196716 -91.213.127.0/24 44511 -91.213.129.0/24 50552 -91.213.130.0/24 34085 -91.213.131.0/24 42791 -91.213.132.0/24 8447 -91.213.133.0/24 31424 -91.213.135.0/24 42405 -91.213.136.0/24 33998 -91.213.137.0/24 35060 -91.213.139.0/24 15741 -91.213.140.0/24 39545 -91.213.141.0/24 39317 -91.213.142.0/24 49799 -91.213.143.0/24 198605 -91.213.144.0/24 39864 -91.213.145.0/24 35330 -91.213.146.0/24 16509 -91.213.149.0/24 39928 -91.213.150.0/24 40989 -91.213.151.0/24 48359 -91.213.152.0/24 15504 -91.213.153.0/24 47224 -91.213.154.0/24 41758 -91.213.156.0/24 196702 -91.213.157.0/24 48359 -91.213.158.0/24 49684 -91.213.160.0/24 24971 -91.213.161.0/24 49670 -91.213.163.0/24 43559 -91.213.164.0/24 8621 -91.213.165.0/24 21155 -91.213.166.0/24 49905 -91.213.167.0/24 48359 -91.213.168.0/24 43209 -91.213.169.0/24 49730 -91.213.170.0/24 8962 -91.213.171.0/24 31736 -91.213.172.0/24 48359 -91.213.173.0/24 49707 -91.213.174.0/24 209484 -91.213.175.0/24 30860 -91.213.177.0/24 12581 -91.213.178.0/24 38970 -91.213.179.0/24 44746 -91.213.180.0/24 29104 -91.213.181.0/24 49691 -91.213.182.0/24 49710 -91.213.184.0/24 49712 -91.213.185.0/24 49703 -91.213.186.0/24 209484 -91.213.187.0/24 29186 -91.213.189.0/24 209484 -91.213.190.0/24 8426 -91.213.191.0/24 51684 -91.213.193.0/24 49731 -91.213.194.0/24 33965 -91.213.195.0/24 196752 -91.213.196.0/24 61400 -91.213.197.0/24 5602 -91.213.198.0/24 49739 -91.213.199.0/24 206939 -91.213.201.0/24 15404 -91.213.203.0/24 50213 -91.213.204.0/24 1764 -91.213.205.0/24 29684 -91.213.206.0/24 43758 -91.213.207.0/24 204061 -91.213.208.0/24 31463 -91.213.209.0/24 59594 -91.213.212.0/24 49958 -91.213.213.0/24 49805 -91.213.215.0/24 31463 -91.213.216.0/24 5413 -91.213.217.0/24 31463 -91.213.218.0/24 49812 -91.213.219.0/24 35027 -91.213.220.0/24 31463 -91.213.221.0/24 15495 -91.213.222.0/24 196668 -91.213.224.0/24 49952 -91.213.225.0/24 60382 -91.213.226.0/24 197680 -91.213.227.0/24 6730 -91.213.228.0/24 198477 -91.213.229.0/24 198706 -91.213.231.0/24 13281 -91.213.232.0/24 38927 -91.213.233.0/24 39819 -91.213.234.0/23 62156 -91.213.237.0/24 49822 -91.213.238.0/24 196707 -91.213.239.0/24 5588 -91.213.240.0/24 196780 -91.213.241.0/24 44730 -91.213.242.0/24 39542 -91.213.243.0/24 196667 -91.213.244.0/24 29363 -91.213.245.0/24 49843 -91.213.246.0/24 42708 -91.213.247.0/24 209120 -91.213.249.0/24 50119 -91.213.250.0/24 12552 -91.213.252.0/24 61430 -91.213.253.0/24 49861 -91.213.254.0/24 49861 -91.214.0.0/22 50349 -91.214.4.0/22 20705 -91.214.8.0/22 29624 -91.214.12.0/23 49256 -91.214.14.0/24 49256 -91.214.15.0/24 6830 -91.214.16.0/23 196758 -91.214.20.0/22 50783 -91.214.24.0/22 13000 -91.214.28.0/22 49327 -91.214.32.0/22 203222 -91.214.36.0/22 57478 -91.214.40.0/23 60684 -91.214.42.0/23 207966 -91.214.44.0/24 51430 -91.214.47.0/24 51430 -91.214.48.0/22 196767 -91.214.52.0/22 57478 -91.214.56.0/22 48711 -91.214.60.0/22 200752 -91.214.64.0/23 35913 -91.214.66.0/24 40676 -91.214.67.0/24 35913 -91.214.68.0/22 49542 -91.214.72.0/22 49360 -91.214.76.0/22 49373 -91.214.80.0/22 39529 -91.214.84.0/22 196777 -91.214.88.0/22 44746 -91.214.96.0/22 49380 -91.214.100.0/22 49391 -91.214.104.0/22 49498 -91.214.108.0/24 60781 -91.214.111.0/24 49427 -91.214.112.0/23 49445 -91.214.114.0/23 24703 -91.214.116.0/24 49392 -91.214.117.0/24 61223 -91.214.118.0/24 49513 -91.214.119.0/24 49080 -91.214.120.0/22 49411 -91.214.124.0/24 210119 -91.214.125.0/24 210327 -91.214.126.0/24 205216 -91.214.127.0/24 39257 -91.214.128.0/22 196705 -91.214.132.0/22 48748 -91.214.136.0/22 47898 -91.214.140.0/22 199820 -91.214.144.0/22 49481 -91.214.148.0/22 44557 -91.214.152.0/22 21050 -91.214.156.0/23 12767 -91.214.158.0/23 15935 -91.214.160.0/22 205172 -91.214.164.0/22 1759 -91.214.168.0/22 6830 -91.214.172.0/24 43634 -91.214.173.0/24 41238 -91.214.174.0/24 205667 -91.214.175.0/24 205682 -91.214.176.0/22 49465 -91.214.180.0/22 28724 -91.214.184.0/22 49502 -91.214.188.0/22 208913 -91.214.192.0/22 24971 -91.214.196.0/22 48320 -91.214.200.0/22 49527 -91.214.204.0/22 49531 -91.214.208.0/22 196808 -91.214.214.0/23 203730 -91.214.216.0/22 204591 -91.214.220.0/22 49551 -91.214.224.0/22 49557 -91.214.228.0/22 43207 -91.214.232.0/22 39056 -91.214.236.0/22 15694 -91.214.244.0/22 49589 -91.214.248.0/22 48915 -91.214.252.0/24 205530 -91.214.253.0/24 196610 -91.215.0.0/22 48947 -91.215.4.0/22 41153 -91.215.8.0/22 29074 -91.215.12.0/22 39904 -91.215.16.0/22 49577 -91.215.20.0/22 50761 -91.215.24.0/22 39399 -91.215.28.0/22 49578 -91.215.32.0/22 43153 -91.215.36.0/22 49002 -91.215.44.0/22 196826 -91.215.48.0/22 202169 -91.215.52.0/22 42590 -91.215.56.0/22 57981 -91.215.60.0/22 49617 -91.215.64.0/22 49650 -91.215.68.0/22 45043 -91.215.72.0/22 49609 -91.215.76.0/22 201224 -91.215.80.0/22 31412 -91.215.84.0/22 34665 -91.215.88.0/22 48078 -91.215.92.0/24 3246 -91.215.93.0/24 57208 -91.215.94.0/23 57208 -91.215.96.0/22 21299 -91.215.100.0/24 43407 -91.215.102.0/23 43407 -91.215.104.0/22 60705 -91.215.108.0/22 43270 -91.215.112.0/22 196685 -91.215.116.0/22 3320 -91.215.120.0/22 42518 -91.215.124.0/22 43050 -91.215.128.0/22 34561 -91.215.136.0/22 48716 -91.215.140.0/22 48470 -91.215.144.0/22 20796 -91.215.148.0/22 34612 -91.215.152.0/22 59729 -91.215.156.0/22 60144 -91.215.160.0/22 199213 -91.215.164.0/22 41477 -91.215.168.0/22 49693 -91.215.172.0/22 48757 -91.215.176.0/22 49711 -91.215.180.0/22 20860 -91.215.184.0/22 15510 -91.215.188.0/22 49701 -91.215.192.0/22 196698 -91.215.196.0/22 49070 -91.215.200.0/23 196719 -91.215.202.0/23 203473 -91.215.204.0/22 196688 -91.215.208.0/22 48320 -91.215.212.0/22 48044 -91.215.216.0/22 49699 -91.215.220.0/22 49724 -91.215.224.0/22 49722 -91.215.228.0/22 43939 -91.215.232.0/22 49759 -91.215.236.0/22 196776 -91.215.240.0/22 56833 -91.215.244.0/22 49741 -91.215.248.0/22 35816 -91.215.252.0/22 31376 -91.216.0.0/24 50171 -91.216.1.0/24 50893 -91.216.2.0/24 47922 -91.216.3.0/24 200557 -91.216.4.0/24 42337 -91.216.5.0/24 197020 -91.216.6.0/24 50883 -91.216.7.0/24 24819 -91.216.8.0/24 6718 -91.216.9.0/24 50888 -91.216.10.0/24 34762 -91.216.12.0/24 200521 -91.216.13.0/24 8469 -91.216.14.0/24 16095 -91.216.16.0/24 197027 -91.216.17.0/24 197022 -91.216.18.0/24 51047 -91.216.19.0/24 12670 -91.216.20.0/24 50906 -91.216.21.0/24 50976 -91.216.22.0/24 50927 -91.216.23.0/24 50905 -91.216.24.0/24 50904 -91.216.25.0/24 196899 -91.216.26.0/24 199397 -91.216.27.0/24 50912 -91.216.28.0/24 41081 -91.216.30.0/24 20552 -91.216.31.0/24 42976 -91.216.32.0/24 34686 -91.216.33.0/24 8375 -91.216.34.0/24 50673 -91.216.35.0/24 197071 -91.216.37.0/24 52221 -91.216.38.0/24 206267 -91.216.41.0/24 57265 -91.216.42.0/24 196933 -91.216.43.0/24 197033 -91.216.44.0/24 41075 -91.216.45.0/24 3320 -91.216.46.0/24 15870 -91.216.47.0/24 43588 -91.216.48.0/24 199040 -91.216.49.0/24 196893 -91.216.50.0/24 50951 -91.216.51.0/24 197136 -91.216.52.0/24 50945 -91.216.53.0/24 197044 -91.216.54.0/24 47904 -91.216.55.0/24 5089 -91.216.57.0/24 12583 -91.216.58.0/24 50954 -91.216.59.0/24 45027 -91.216.60.0/24 51232 -91.216.61.0/24 50981 -91.216.62.0/24 51821 -91.216.63.0/24 50974 -91.216.64.0/24 50988 -91.216.65.0/24 51594 -91.216.66.0/24 197052 -91.216.68.0/24 206707 -91.216.69.0/24 49288 -91.216.70.0/24 34563 -91.216.71.0/24 197053 -91.216.72.0/24 48667 -91.216.73.0/24 198193 -91.216.74.0/24 58213 -91.216.75.0/24 50984 -91.216.76.0/24 201827 -91.216.77.0/24 198193 -91.216.78.0/24 50991 -91.216.79.0/24 41666 -91.216.80.0/24 48571 -91.216.81.0/24 50502 -91.216.82.0/24 27455 -91.216.84.0/23 198331 -91.216.86.0/24 197060 -91.216.87.0/24 196912 -91.216.88.0/24 51005 -91.216.90.0/24 12731 -91.216.91.0/24 25594 -91.216.92.0/24 31702 -91.216.93.0/24 62217 -91.216.94.0/24 197067 -91.216.95.0/24 197069 -91.216.96.0/24 34518 -91.216.99.0/24 56544 -91.216.100.0/24 198193 -91.216.101.0/24 51482 -91.216.102.0/24 4589 -91.216.103.0/24 16095 -91.216.104.0/24 25525 -91.216.105.0/24 47099 -91.216.106.0/24 25229 -91.216.107.0/24 16347 -91.216.108.0/24 39077 -91.216.109.0/24 28985 -91.216.110.0/24 51083 -91.216.111.0/24 196967 -91.216.112.0/24 51055 -91.216.113.0/24 8315 -91.216.114.0/24 197084 -91.216.115.0/24 202185 -91.216.116.0/24 20577 -91.216.117.0/24 12353 -91.216.118.0/24 205662 -91.216.119.0/24 42926 -91.216.120.0/24 51087 -91.216.121.0/24 51067 -91.216.122.0/24 198193 -91.216.123.0/24 51117 -91.216.125.0/24 51064 -91.216.126.0/24 51081 -91.216.127.0/24 51065 -91.216.129.0/24 51071 -91.216.130.0/24 62344 -91.216.133.0/24 51121 -91.216.135.0/24 61117 -91.216.136.0/24 1759 -91.216.137.0/24 6908 -91.216.138.0/24 208913 -91.216.140.0/24 51085 -91.216.141.0/24 8315 -91.216.142.0/24 51091 -91.216.143.0/24 197104 -91.216.144.0/24 51094 -91.216.145.0/24 6696 -91.216.147.0/24 8359 -91.216.148.0/24 197042 -91.216.149.0/24 197099 -91.216.150.0/24 51096 -91.216.151.0/24 51099 -91.216.152.0/24 12672 -91.216.153.0/24 51166 -91.216.155.0/24 197109 -91.216.156.0/24 31244 -91.216.157.0/24 51108 -91.216.158.0/24 201785 -91.216.159.0/24 197101 -91.216.160.0/24 197111 -91.216.161.0/24 51122 -91.216.162.0/24 21155 -91.216.163.0/24 61272 -91.216.164.0/24 51181 -91.216.165.0/24 39608 -91.216.166.0/24 51141 -91.216.167.0/24 13174 -91.216.168.0/24 51134 -91.216.169.0/24 209484 -91.216.170.0/24 31704 -91.216.172.0/24 51143 -91.216.173.0/24 51157 -91.216.174.0/24 197055 -91.216.175.0/24 51165 -91.216.176.0/24 51160 -91.216.177.0/24 51179 -91.216.178.0/24 51162 -91.216.179.0/24 24971 -91.216.180.0/24 56910 -91.216.181.0/24 42987 -91.216.184.0/24 197132 -91.216.187.0/24 51183 -91.216.188.0/24 21050 -91.216.189.0/24 51192 -91.216.190.0/24 209484 -91.216.191.0/24 51290 -91.216.192.0/24 198014 -91.216.193.0/24 51318 -91.216.194.0/24 59415 -91.216.195.0/24 12516 -91.216.197.0/24 51198 -91.216.198.0/24 51193 -91.216.199.0/24 51195 -91.216.200.0/24 38975 -91.216.201.0/24 197130 -91.216.202.0/24 197135 -91.216.203.0/24 202568 -91.216.204.0/24 51208 -91.216.206.0/24 1241 -91.216.208.0/24 43559 -91.216.209.0/24 13273 -91.216.210.0/24 199391 -91.216.211.0/24 51256 -91.216.212.0/24 197163 -91.216.213.0/24 197181 -91.216.214.0/24 197224 -91.216.215.0/24 209484 -91.216.218.0/24 50335 -91.216.220.0/24 51236 -91.216.221.0/24 51231 -91.216.222.0/24 199391 -91.216.224.0/24 51237 -91.216.225.0/24 51240 -91.216.227.0/24 51244 -91.216.228.0/24 39506 -91.216.229.0/24 3303 -91.216.230.0/24 197198 -91.216.231.0/24 51253 -91.216.232.0/24 198108 -91.216.233.0/24 43283 -91.216.234.0/24 50446 -91.216.235.0/24 47491 -91.216.236.0/24 199256 -91.216.237.0/24 199450 -91.216.238.0/24 21474 -91.216.239.0/24 197005 -91.216.240.0/24 197159 -91.216.241.0/24 199256 -91.216.242.0/24 3320 -91.216.243.0/24 15960 -91.216.244.0/24 31447 -91.216.245.0/24 31400 -91.216.246.0/24 5089 -91.216.247.0/24 1764 -91.216.248.0/24 47447 -91.216.249.0/24 51413 -91.216.250.0/24 208810 -91.216.251.0/24 31378 -91.216.252.0/24 51385 -91.216.253.0/24 199209 -91.216.255.0/24 51296 -91.217.0.0/23 51399 -91.217.2.0/23 51477 -91.217.4.0/23 39728 -91.217.6.0/23 197706 -91.217.8.0/24 51680 -91.217.9.0/24 50340 -91.217.10.0/23 203730 -91.217.12.0/23 197218 -91.217.14.0/23 51404 -91.217.16.0/23 51419 -91.217.18.0/23 51426 -91.217.20.0/23 48287 -91.217.24.0/23 197250 -91.217.27.0/24 43868 -91.217.28.0/24 197134 -91.217.30.0/24 8608 -91.217.31.0/24 8737 -91.217.32.0/23 201603 -91.217.34.0/23 197153 -91.217.36.0/23 51483 -91.217.38.0/23 31543 -91.217.40.0/23 197217 -91.217.42.0/23 51448 -91.217.44.0/23 30781 -91.217.46.0/23 51442 -91.217.48.0/23 196730 -91.217.50.0/23 49352 -91.217.52.0/23 197444 -91.217.54.0/23 199015 -91.217.57.0/24 43190 -91.217.58.0/23 197251 -91.217.60.0/23 197255 -91.217.62.0/23 41024 -91.217.64.0/23 51460 -91.217.66.0/23 41360 -91.217.68.0/23 197681 -91.217.70.0/24 51599 -91.217.72.0/23 197706 -91.217.74.0/23 12695 -91.217.76.0/23 200740 -91.217.78.0/23 51518 -91.217.80.0/24 50113 -91.217.82.0/23 13209 -91.217.84.0/23 49313 -91.217.86.0/23 197269 -91.217.88.0/23 51516 -91.217.90.0/23 48031 -91.217.92.0/23 51509 -91.217.94.0/23 16347 -91.217.96.0/23 6830 -91.217.98.0/23 196792 -91.217.100.0/23 50204 -91.217.102.0/23 49241 -91.217.104.0/23 51589 -91.217.106.0/23 203872 -91.217.108.0/23 51592 -91.217.110.0/23 50860 -91.217.112.0/23 47517 -91.217.114.0/23 60555 -91.217.116.0/23 1759 -91.217.120.0/23 9009 -91.217.122.0/23 51565 -91.217.126.0/23 5603 -91.217.128.0/24 21449 -91.217.130.0/24 51398 -91.217.131.0/24 197365 -91.217.132.0/24 51414 -91.217.133.0/24 16095 -91.217.136.0/24 39818 -91.217.137.0/24 51410 -91.217.138.0/24 51434 -91.217.139.0/24 209484 -91.217.140.0/24 197230 -91.217.141.0/24 198333 -91.217.142.0/24 50561 -91.217.143.0/24 51471 -91.217.144.0/24 43633 -91.217.145.0/24 8881 -91.217.147.0/24 51435 -91.217.148.0/24 197232 -91.217.149.0/24 51421 -91.217.150.0/24 196898 -91.217.152.0/24 197702 -91.217.153.0/24 199577 -91.217.154.0/24 49504 -91.217.155.0/24 196945 -91.217.156.0/24 197306 -91.217.157.0/24 51493 -91.217.158.0/24 197238 -91.217.159.0/24 51443 -91.217.160.0/24 209484 -91.217.161.0/24 197217 -91.217.162.0/24 209484 -91.217.163.0/24 48842 -91.217.164.0/24 51455 -91.217.165.0/24 3209 -91.217.166.0/24 197488 -91.217.168.0/24 51458 -91.217.169.0/24 51564 -91.217.170.0/24 51450 -91.217.171.0/24 15694 -91.217.172.0/24 51459 -91.217.173.0/24 51454 -91.217.174.0/23 198710 -91.217.176.0/24 198710 -91.217.177.0/24 24634 -91.217.178.0/24 62378 -91.217.179.0/24 197254 -91.217.180.0/24 197258 -91.217.181.0/24 41175 -91.217.182.0/24 42927 -91.217.183.0/24 51475 -91.217.184.0/24 197257 -91.217.185.0/24 51684 -91.217.186.0/24 48803 -91.217.187.0/24 51480 -91.217.188.0/24 3209 -91.217.189.0/24 42708 -91.217.190.0/24 197276 -91.217.191.0/24 50673 -91.217.193.0/24 51476 -91.217.194.0/24 35237 -91.217.196.0/24 51494 -91.217.197.0/24 197278 -91.217.198.0/24 49785 -91.217.199.0/24 51496 -91.217.201.0/24 207199 -91.217.202.0/24 51506 -91.217.203.0/24 25378 -91.217.204.0/24 197265 -91.217.205.0/24 197086 -91.217.206.0/24 51467 -91.217.209.0/24 205834 -91.217.210.0/24 199743 -91.217.211.0/24 51508 -91.217.214.0/24 3320 -91.217.216.0/24 209997 -91.217.217.0/24 39255 -91.217.218.0/24 51513 -91.217.220.0/24 197273 -91.217.221.0/24 197270 -91.217.222.0/24 197266 -91.217.224.0/24 197274 -91.217.225.0/24 197082 -91.217.226.0/24 35369 -91.217.227.0/24 197379 -91.217.228.0/24 24732 -91.217.229.0/24 57693 -91.217.230.0/24 51527 -91.217.233.0/24 51536 -91.217.234.0/24 29075 -91.217.235.0/24 34562 -91.217.236.0/24 396164 -91.217.237.0/24 51553 -91.217.238.0/24 51533 -91.217.239.0/24 396164 -91.217.242.0/24 197279 -91.217.243.0/24 51537 -91.217.244.0/24 44710 -91.217.245.0/24 51545 -91.217.246.0/24 197648 -91.217.247.0/24 44990 -91.217.248.0/24 1759 -91.217.249.0/24 396164 -91.217.250.0/24 396164 -91.217.251.0/24 197071 -91.217.252.0/24 1759 -91.217.253.0/24 49127 -91.217.254.0/24 51743 -91.217.255.0/24 51573 -91.218.0.0/22 51202 -91.218.4.0/22 51225 -91.218.12.0/22 43139 -91.218.16.0/22 48882 -91.218.24.0/22 196986 -91.218.28.0/22 35816 -91.218.32.0/22 9131 -91.218.40.0/22 12714 -91.218.44.0/22 48323 -91.218.48.0/22 51250 -91.218.52.0/22 51249 -91.218.60.0/22 197162 -91.218.64.0/22 44066 -91.218.68.0/22 198001 -91.218.72.0/22 43658 -91.218.76.0/22 51272 -91.218.80.0/22 49773 -91.218.84.0/22 51341 -91.218.88.0/22 39199 -91.218.92.0/22 57661 -91.218.96.0/22 51279 -91.218.100.0/22 59533 -91.218.104.0/22 48082 -91.218.108.0/22 34277 -91.218.112.0/22 49335 -91.218.116.0/22 48604 -91.218.124.0/22 50673 -91.218.128.0/22 51291 -91.218.136.0/22 51308 -91.218.140.0/22 49055 -91.218.144.0/22 48143 -91.218.148.0/22 20559 -91.218.152.0/23 204626 -91.218.154.0/23 204229 -91.218.156.0/22 51373 -91.218.160.0/22 51346 -91.218.164.0/22 197552 -91.218.168.0/22 44027 -91.218.172.0/24 6700 -91.218.173.0/24 199398 -91.218.174.0/23 6700 -91.218.176.0/22 51756 -91.218.180.0/22 51371 -91.218.184.0/22 49788 -91.218.188.0/22 51382 -91.218.192.0/22 51380 -91.218.196.0/22 51393 -91.218.200.0/22 51399 -91.218.204.0/22 41216 -91.218.208.0/22 51399 -91.218.212.0/22 42352 -91.218.216.0/22 51436 -91.218.220.0/22 34223 -91.218.224.0/22 15831 -91.218.228.0/22 203226 -91.218.232.0/22 51424 -91.218.236.0/22 209574 -91.218.240.0/22 34393 -91.218.244.0/22 49335 -91.218.248.0/22 51444 -91.218.252.0/22 48266 -91.219.1.0/24 196730 -91.219.2.0/23 196730 -91.219.4.0/22 48366 -91.219.12.0/22 51478 -91.219.18.0/23 51474 -91.219.20.0/22 47844 -91.219.24.0/22 50448 -91.219.28.0/24 62088 -91.219.29.0/24 196682 -91.219.30.0/24 196682 -91.219.31.0/24 50340 -91.219.32.0/22 51511 -91.219.40.0/22 49546 -91.219.44.0/22 50398 -91.219.48.0/22 51525 -91.219.52.0/22 51528 -91.219.56.0/22 197275 -91.219.60.0/22 205172 -91.219.64.0/22 51178 -91.219.68.0/22 8339 -91.219.72.0/22 198541 -91.219.76.0/22 51571 -91.219.80.0/22 51597 -91.219.84.0/22 197112 -91.219.88.0/22 51583 -91.219.92.0/22 25019 -91.219.96.0/22 51612 -91.219.100.0/22 41929 -91.219.104.0/22 51948 -91.219.108.0/22 39647 -91.219.112.0/22 51792 -91.219.116.0/22 12386 -91.219.120.0/22 35787 -91.219.128.0/22 197318 -91.219.132.0/22 49798 -91.219.136.0/22 51655 -91.219.140.0/22 196629 -91.219.144.0/22 51652 -91.219.148.0/22 197309 -91.219.152.0/22 197317 -91.219.156.0/22 48485 -91.219.160.0/22 16323 -91.219.164.0/22 51685 -91.219.168.0/22 52191 -91.219.172.0/22 51726 -91.219.176.0/22 42895 -91.219.180.0/22 49345 -91.219.184.0/22 50599 -91.219.188.0/22 208894 -91.219.192.0/22 49693 -91.219.196.0/22 51725 -91.219.200.0/22 59533 -91.219.204.0/22 51715 -91.219.208.0/22 51717 -91.219.220.0/22 15461 -91.219.224.0/22 49342 -91.219.228.0/22 15673 -91.219.232.0/24 41161 -91.219.233.0/24 62206 -91.219.234.0/23 41161 -91.219.236.0/22 56322 -91.219.240.0/22 6830 -91.219.244.0/22 51744 -91.219.248.0/22 50671 -91.219.252.0/22 48230 -91.220.1.0/24 51613 -91.220.2.0/24 6830 -91.220.3.0/24 51672 -91.220.4.0/24 51853 -91.220.5.0/24 197559 -91.220.7.0/24 51608 -91.220.8.0/24 15404 -91.220.9.0/24 42976 -91.220.11.0/24 197303 -91.220.12.0/24 51633 -91.220.13.0/24 51626 -91.220.14.0/24 51627 -91.220.16.0/24 51639 -91.220.17.0/24 61983 -91.220.18.0/24 51750 -91.220.19.0/24 8473 -91.220.20.0/24 8764 -91.220.21.0/24 47886 -91.220.22.0/24 51651 -91.220.23.0/24 31141 -91.220.24.0/24 31463 -91.220.25.0/24 39097 -91.220.26.0/24 51654 -91.220.27.0/24 206379 -91.220.28.0/24 49127 -91.220.29.0/24 28924 -91.220.30.0/24 51661 -91.220.31.0/24 51667 -91.220.33.0/24 51690 -91.220.34.0/24 49435 -91.220.35.0/24 49127 -91.220.36.0/24 51673 -91.220.37.0/24 50673 -91.220.38.0/24 51893 -91.220.39.0/24 197321 -91.220.40.0/24 51688 -91.220.41.0/24 197374 -91.220.42.0/24 42427 -91.220.43.0/24 58269 -91.220.44.0/24 197368 -91.220.45.0/24 51677 -91.220.46.0/24 197340 -91.220.47.0/24 197323 -91.220.48.0/24 51689 -91.220.49.0/24 45031 -91.220.50.0/24 197386 -91.220.52.0/24 51766 -91.220.53.0/24 50673 -91.220.54.0/24 197215 -91.220.55.0/24 197326 -91.220.57.0/24 51700 -91.220.58.0/24 42303 -91.220.59.0/24 51719 -91.220.60.0/24 51694 -91.220.61.0/24 197327 -91.220.62.0/24 61322 -91.220.63.0/24 197357 -91.220.65.0/24 51729 -91.220.66.0/24 51753 -91.220.67.0/24 197346 -91.220.68.0/24 9208 -91.220.70.0/24 197077 -91.220.71.0/24 49127 -91.220.72.0/24 51712 -91.220.73.0/24 51772 -91.220.74.0/24 52158 -91.220.75.0/24 51722 -91.220.76.0/24 51723 -91.220.77.0/24 59905 -91.220.78.0/24 51735 -91.220.79.0/24 51732 -91.220.80.0/24 197385 -91.220.81.0/24 49505 -91.220.82.0/24 31477 -91.220.84.0/24 49505 -91.220.85.0/24 48813 -91.220.86.0/24 51746 -91.220.87.0/24 51756 -91.220.88.0/24 51752 -91.220.89.0/24 51767 -91.220.90.0/24 49505 -91.220.91.0/24 197358 -91.220.93.0/24 197489 -91.220.94.0/24 51770 -91.220.96.0/24 51755 -91.220.98.0/24 43948 -91.220.99.0/24 51768 -91.220.100.0/24 51817 -91.220.101.0/24 34259 -91.220.102.0/24 6696 -91.220.103.0/24 8508 -91.220.104.0/24 51794 -91.220.105.0/24 51774 -91.220.106.0/24 51875 -91.220.107.0/24 51816 -91.220.108.0/24 51810 -91.220.109.0/24 51789 -91.220.110.0/24 57508 -91.220.111.0/24 6696 -91.220.112.0/24 51809 -91.220.114.0/24 51802 -91.220.116.0/24 25540 -91.220.117.0/24 12552 -91.220.118.0/24 51845 -91.220.120.0/24 202173 -91.220.121.0/24 51808 -91.220.122.0/24 196687 -91.220.123.0/24 21155 -91.220.124.0/24 198669 -91.220.125.0/24 8881 -91.220.126.0/24 49505 -91.220.127.0/24 62217 -91.220.128.0/24 197380 -91.220.129.0/24 48918 -91.220.130.0/24 197226 -91.220.131.0/24 56910 -91.220.132.0/24 51823 -91.220.133.0/24 24638 -91.220.134.0/24 8792 -91.220.135.0/24 197392 -91.220.136.0/24 197429 -91.220.137.0/24 51882 -91.220.138.0/24 44735 -91.220.139.0/24 51840 -91.220.140.0/24 51851 -91.220.141.0/24 5413 -91.220.143.0/24 51850 -91.220.144.0/24 51846 -91.220.145.0/24 51838 -91.220.146.0/24 205998 -91.220.147.0/24 51857 -91.220.148.0/24 25220 -91.220.149.0/24 51854 -91.220.150.0/24 3301 -91.220.151.0/24 51858 -91.220.152.0/24 51912 -91.220.154.0/24 6848 -91.220.155.0/24 51869 -91.220.156.0/24 197416 -91.220.158.0/24 21009 -91.220.159.0/24 12480 -91.220.160.0/24 51926 -91.220.162.0/24 51877 -91.220.163.0/24 197424 -91.220.164.0/24 51879 -91.220.166.0/24 51884 -91.220.167.0/24 51881 -91.220.168.0/24 15830 -91.220.169.0/24 51883 -91.220.170.0/24 41082 -91.220.171.0/24 56910 -91.220.172.0/24 41694 -91.220.173.0/24 34702 -91.220.174.0/24 44897 -91.220.175.0/24 174 -91.220.176.0/24 56910 -91.220.177.0/24 197427 -91.220.178.0/24 48620 -91.220.179.0/24 21013 -91.220.181.0/24 52047 -91.220.182.0/24 51915 -91.220.183.0/24 51911 -91.220.184.0/24 56910 -91.220.185.0/24 8422 -91.220.186.0/24 49392 -91.220.187.0/24 51924 -91.220.188.0/24 197461 -91.220.189.0/24 51925 -91.220.192.0/24 197436 -91.220.194.0/24 51988 -91.220.196.0/24 50304 -91.220.197.0/24 61047 -91.220.199.0/24 44548 -91.220.200.0/24 12670 -91.220.201.0/24 198725 -91.220.202.0/23 9009 -91.220.204.0/24 51959 -91.220.205.0/24 197447 -91.220.206.0/24 49392 -91.220.207.0/24 51954 -91.220.208.0/24 49582 -91.220.209.0/24 47247 -91.220.210.0/24 25069 -91.220.211.0/24 56678 -91.220.212.0/24 5032 -91.220.213.0/24 43854 -91.220.214.0/24 52024 -91.220.215.0/24 51998 -91.220.216.0/24 51965 -91.220.217.0/24 2119 -91.220.218.0/24 51981 -91.220.219.0/24 51971 -91.220.220.0/24 52022 -91.220.221.0/24 197470 -91.220.222.0/24 29665 -91.220.225.0/24 43939 -91.220.226.0/24 12386 -91.220.227.0/24 1257 -91.220.228.0/24 197473 -91.220.229.0/24 49392 -91.220.230.0/24 51995 -91.220.232.0/24 6718 -91.220.233.0/24 52090 -91.220.234.0/24 197463 -91.220.235.0/24 50864 -91.220.237.0/24 6855 -91.220.238.0/24 197472 -91.220.239.0/24 56332 -91.220.240.0/24 197514 -91.220.241.0/24 52004 -91.220.243.0/24 2119 -91.220.244.0/24 61967 -91.220.245.0/24 59842 -91.220.246.0/24 52034 -91.220.247.0/24 12301 -91.220.248.0/24 197492 -91.220.249.0/24 57146 -91.220.250.0/24 49711 -91.220.251.0/24 201355 -91.220.252.0/24 197477 -91.220.253.0/24 52032 -91.220.254.0/24 8674 -91.220.255.0/24 41375 -91.221.0.0/23 51635 -91.221.2.0/23 43708 -91.221.4.0/24 49798 -91.221.6.0/23 196629 -91.221.8.0/23 39209 -91.221.12.0/23 3257 -91.221.16.0/23 51668 -91.221.18.0/23 51663 -91.221.20.0/23 197325 -91.221.22.0/23 51670 -91.221.24.0/23 42787 -91.221.26.0/23 51683 -91.221.28.0/23 51686 -91.221.30.0/23 48320 -91.221.32.0/23 47224 -91.221.35.0/24 51831 -91.221.36.0/23 51724 -91.221.39.0/24 49505 -91.221.40.0/23 197331 -91.221.42.0/24 51716 -91.221.44.0/23 51310 -91.221.46.0/23 51727 -91.221.48.0/23 50916 -91.221.50.0/23 199718 -91.221.52.0/23 41161 -91.221.54.0/23 24916 -91.221.56.0/23 49502 -91.221.58.0/23 51733 -91.221.60.0/23 51740 -91.221.62.0/23 51763 -91.221.64.0/23 197364 -91.221.66.0/23 51765 -91.221.68.0/24 59541 -91.221.69.0/24 50673 -91.221.70.0/23 51783 -91.221.72.0/23 21205 -91.221.74.0/23 42906 -91.221.76.0/23 204463 -91.221.78.0/23 51793 -91.221.80.0/23 197385 -91.221.82.0/23 35030 -91.221.84.0/23 51824 -91.221.86.0/23 204463 -91.221.88.0/23 50467 -91.221.90.0/23 34901 -91.221.92.0/23 35600 -91.221.94.0/23 36791 -91.221.96.0/23 33915 -91.221.98.0/24 58108 -91.221.99.0/24 50968 -91.221.100.0/23 47692 -91.221.102.0/23 205998 -91.221.104.0/23 51839 -91.221.106.0/23 35600 -91.221.108.0/23 59557 -91.221.110.0/23 29148 -91.221.112.0/23 29405 -91.221.114.0/24 197410 -91.221.116.0/23 201702 -91.221.118.0/23 35206 -91.221.120.0/23 12480 -91.221.122.0/23 51931 -91.221.124.0/23 51903 -91.221.126.0/23 197431 -91.221.128.0/23 51914 -91.221.130.0/23 49788 -91.221.132.0/23 197433 -91.221.134.0/23 51927 -91.221.136.0/23 51937 -91.221.138.0/23 21013 -91.221.140.0/24 51932 -91.221.142.0/23 59700 -91.221.144.0/23 197459 -91.221.146.0/23 60350 -91.221.148.0/23 197444 -91.221.150.0/23 51942 -91.221.152.0/23 51945 -91.221.154.0/23 51963 -91.221.156.0/23 51957 -91.221.158.0/23 39507 -91.221.160.0/24 34756 -91.221.161.0/24 28685 -91.221.162.0/23 197449 -91.221.164.0/23 51990 -91.221.166.0/23 39223 -91.221.170.0/23 197470 -91.221.172.0/23 202086 -91.221.174.0/23 51991 -91.221.176.0/23 52008 -91.221.178.0/23 52003 -91.221.180.0/23 13094 -91.221.182.0/23 25415 -91.221.184.0/23 43378 -91.221.188.0/23 52010 -91.221.190.0/23 50643 -91.221.192.0/23 48885 -91.221.194.0/23 52028 -91.221.196.0/23 197495 -91.221.198.0/23 197482 -91.221.200.0/23 52040 -91.221.202.0/23 35753 -91.221.204.0/23 8925 -91.221.206.0/23 12617 -91.221.208.0/23 27970 -91.221.210.0/23 197490 -91.221.212.0/23 52058 -91.221.214.0/23 39816 -91.221.216.0/23 52072 -91.221.218.0/23 52074 -91.221.220.0/23 52081 -91.221.222.0/23 20645 -91.221.228.0/23 197497 -91.221.230.0/23 52102 -91.221.232.0/23 34702 -91.221.234.0/23 29074 -91.221.236.0/23 199309 -91.221.238.0/23 29293 -91.221.240.0/23 208072 -91.221.242.0/23 56699 -91.221.244.0/23 52120 -91.221.246.0/23 208838 -91.221.248.0/23 34995 -91.221.252.0/23 52131 -91.221.254.0/23 52127 -91.222.0.0/22 51866 -91.222.4.0/22 51859 -91.222.8.0/22 198047 -91.222.12.0/22 56415 -91.222.16.0/22 51874 -91.222.20.0/22 41352 -91.222.24.0/22 51960 -91.222.28.0/22 196797 -91.222.32.0/22 43258 -91.222.36.0/22 48964 -91.222.40.0/22 61299 -91.222.44.0/22 201530 -91.222.48.0/22 51917 -91.222.52.0/22 198346 -91.222.56.0/22 43113 -91.222.60.0/22 51972 -91.222.64.0/23 52125 -91.222.66.0/23 8870 -91.222.68.0/22 51976 -91.222.72.0/22 39507 -91.222.76.0/22 56812 -91.222.80.0/22 197454 -91.222.84.0/22 47176 -91.222.88.0/22 51979 -91.222.92.0/22 13026 -91.222.96.0/22 15960 -91.222.100.0/22 202086 -91.222.104.0/22 52139 -91.222.108.0/22 51986 -91.222.112.0/22 50401 -91.222.116.0/22 52101 -91.222.124.0/22 52078 -91.222.128.0/22 197467 -91.222.132.0/22 139853 -91.222.136.0/22 200000 -91.222.140.0/22 206957 -91.222.144.0/22 197479 -91.222.148.0/22 52124 -91.222.152.0/22 49561 -91.222.156.0/22 52062 -91.222.160.0/22 197502 -91.222.164.0/22 49828 -91.222.168.0/22 50161 -91.222.172.0/22 39249 -91.222.180.0/22 49359 -91.222.184.0/23 41247 -91.222.186.0/24 42503 -91.222.187.0/24 41247 -91.222.188.0/22 1759 -91.222.192.0/22 52153 -91.222.196.0/22 57474 -91.222.200.0/22 47805 -91.222.204.0/22 58224 -91.222.208.0/22 44622 -91.222.212.0/22 35434 -91.222.216.0/22 51756 -91.222.220.0/22 9164 -91.222.224.0/22 197300 -91.222.228.0/22 41554 -91.222.232.0/22 3320 -91.222.236.0/24 206485 -91.222.237.0/24 202423 -91.222.238.0/24 203728 -91.222.239.0/24 206485 -91.222.240.0/22 52208 -91.222.244.0/22 52180 -91.222.248.0/22 52182 -91.222.252.0/22 52190 -91.223.0.0/24 51739 -91.223.1.0/24 44622 -91.223.2.0/24 8881 -91.223.3.0/24 201814 -91.223.4.0/24 59670 -91.223.5.0/24 3215 -91.223.6.0/24 197300 -91.223.8.0/24 50913 -91.223.9.0/24 47720 -91.223.10.0/24 5089 -91.223.11.0/24 197538 -91.223.12.0/24 199084 -91.223.13.0/24 197527 -91.223.14.0/24 197507 -91.223.15.0/24 52168 -91.223.16.0/24 198047 -91.223.17.0/24 48482 -91.223.19.0/24 21343 -91.223.20.0/24 199118 -91.223.21.0/24 1837 -91.223.22.0/24 8554 -91.223.23.0/24 5588 -91.223.24.0/24 52172 -91.223.25.0/24 197526 -91.223.26.0/24 43061 -91.223.28.0/24 29329 -91.223.29.0/24 48256 -91.223.31.0/24 60191 -91.223.32.0/24 198137 -91.223.33.0/24 197544 -91.223.34.0/24 52198 -91.223.35.0/24 30781 -91.223.36.0/24 56334 -91.223.37.0/24 52197 -91.223.38.0/24 48856 -91.223.39.0/24 197536 -91.223.40.0/24 197551 -91.223.41.0/24 56863 -91.223.42.0/24 197534 -91.223.43.0/24 199612 -91.223.44.0/24 52217 -91.223.45.0/24 8423 -91.223.46.0/24 52215 -91.223.48.0/24 34990 -91.223.49.0/24 48772 -91.223.50.0/24 52211 -91.223.51.0/24 42595 -91.223.52.0/24 197177 -91.223.54.0/24 197012 -91.223.55.0/24 197093 -91.223.56.0/24 33915 -91.223.57.0/24 199381 -91.223.58.0/24 35425 -91.223.59.0/24 35737 -91.223.62.0/24 197548 -91.223.63.0/24 42231 -91.223.64.0/24 197766 -91.223.65.0/24 12810 -91.223.66.0/24 39251 -91.223.68.0/24 2115 -91.223.69.0/24 41591 -91.223.70.0/24 29329 -91.223.71.0/24 197337 -91.223.72.0/24 197048 -91.223.73.0/24 197500 -91.223.74.0/24 196762 -91.223.75.0/24 29329 -91.223.76.0/24 197562 -91.223.77.0/24 30860 -91.223.78.0/24 41312 -91.223.79.0/24 197202 -91.223.80.0/24 196837 -91.223.81.0/24 197656 -91.223.82.0/24 199968 -91.223.83.0/24 197187 -91.223.84.0/24 34752 -91.223.85.0/24 8896 -91.223.86.0/24 197241 -91.223.87.0/24 200565 -91.223.88.0/24 196863 -91.223.89.0/24 29329 -91.223.91.0/24 50931 -91.223.92.0/24 56531 -91.223.93.0/24 44386 -91.223.96.0/24 20686 -91.223.97.0/24 50861 -91.223.98.0/24 56358 -91.223.100.0/24 49788 -91.223.101.0/24 57057 -91.223.103.0/24 43146 -91.223.104.0/24 1241 -91.223.105.0/24 197577 -91.223.106.0/24 44709 -91.223.107.0/24 719 -91.223.108.0/24 197574 -91.223.109.0/24 197700 -91.223.110.0/24 56362 -91.223.111.0/24 25180 -91.223.112.0/24 197578 -91.223.113.0/24 197579 -91.223.114.0/24 198264 -91.223.115.0/24 47904 -91.223.117.0/24 200443 -91.223.118.0/24 29128 -91.223.120.0/24 9078 -91.223.121.0/24 3303 -91.223.122.0/24 47898 -91.223.123.0/24 21100 -91.223.124.0/24 197302 -91.223.125.0/24 15557 -91.223.127.0/24 13307 -91.223.128.0/24 56409 -91.223.129.0/24 197593 -91.223.130.0/24 56408 -91.223.132.0/24 3329 -91.223.133.0/24 269871 -91.223.135.0/24 198241 -91.223.136.0/24 56428 -91.223.137.0/24 56545 -91.223.138.0/24 56425 -91.223.140.0/24 8608 -91.223.141.0/24 25504 -91.223.142.0/24 201663 -91.223.143.0/24 60551 -91.223.145.0/24 25504 -91.223.146.0/24 57453 -91.223.147.0/24 200098 -91.223.148.0/24 56432 -91.223.149.0/24 197610 -91.223.150.0/24 56455 -91.223.151.0/24 199753 -91.223.152.0/24 56439 -91.223.153.0/24 56445 -91.223.154.0/24 3303 -91.223.155.0/24 43942 -91.223.156.0/24 51885 -91.223.157.0/24 197597 -91.223.159.0/24 41405 -91.223.160.0/24 197600 -91.223.161.0/24 59268 -91.223.162.0/24 56452 -91.223.165.0/24 56454 -91.223.166.0/24 34717 -91.223.167.0/24 197615 -91.223.168.0/24 56470 -91.223.169.0/24 47959 -91.223.173.0/24 57414 -91.223.174.0/24 56481 -91.223.175.0/24 56475 -91.223.176.0/24 56483 -91.223.177.0/24 56492 -91.223.178.0/24 56533 -91.223.179.0/24 56743 -91.223.180.0/24 56485 -91.223.181.0/24 197627 -91.223.182.0/24 48894 -91.223.183.0/24 208913 -91.223.184.0/24 47466 -91.223.185.0/24 56499 -91.223.186.0/24 30935 -91.223.188.0/24 56506 -91.223.189.0/24 198011 -91.223.190.0/24 56502 -91.223.192.0/24 12617 -91.223.193.0/24 197655 -91.223.194.0/24 56508 -91.223.195.0/24 59943 -91.223.197.0/24 197635 -91.223.198.0/24 56505 -91.223.199.0/24 35591 -91.223.200.0/24 34358 -91.223.201.0/24 56833 -91.223.203.0/24 30931 -91.223.204.0/24 197639 -91.223.205.0/24 56527 -91.223.206.0/24 8220 -91.223.208.0/24 197648 -91.223.209.0/24 197642 -91.223.210.0/24 35819 -91.223.211.0/24 201785 -91.223.212.0/24 197645 -91.223.213.0/24 2116 -91.223.214.0/24 56524 -91.223.215.0/24 56530 -91.223.216.0/24 46636 -91.223.217.0/24 56557 -91.223.218.0/24 30931 -91.223.219.0/24 57955 -91.223.220.0/24 48345 -91.223.221.0/24 197599 -91.223.222.0/24 5588 -91.223.223.0/24 196645 -91.223.224.0/24 197733 -91.223.225.0/24 35275 -91.223.226.0/24 29497 -91.223.227.0/24 49883 -91.223.228.0/24 197659 -91.223.230.0/24 12785 -91.223.231.0/24 51815 -91.223.232.0/24 199318 -91.223.233.0/24 49250 -91.223.234.0/24 56558 -91.223.235.0/24 197660 -91.223.236.0/24 47959 -91.223.237.0/24 56556 -91.223.238.0/24 9001 -91.223.239.0/24 43000 -91.223.240.0/24 197662 -91.223.241.0/24 41385 -91.223.242.0/24 9130 -91.223.244.0/24 197668 -91.223.245.0/24 48415 -91.223.246.0/24 23242 -91.223.247.0/24 25220 -91.223.248.0/24 12453 -91.223.250.0/24 198857 -91.223.253.0/24 34235 -91.223.254.0/24 197673 -91.223.255.0/24 3561 -91.224.0.0/23 24589 -91.224.2.0/23 5531 -91.224.4.0/23 52170 -91.224.6.0/23 50812 -91.224.8.0/23 52171 -91.224.10.0/24 30860 -91.224.11.0/24 52178 -91.224.12.0/23 43513 -91.224.14.0/23 51288 -91.224.16.0/23 52213 -91.224.18.0/23 56331 -91.224.22.0/23 197695 -91.224.24.0/23 42126 -91.224.26.0/23 52215 -91.224.28.0/23 41297 -91.224.30.0/23 34990 -91.224.32.0/23 39264 -91.224.34.0/23 50895 -91.224.36.0/23 42595 -91.224.38.0/23 43758 -91.224.40.0/23 60912 -91.224.44.0/23 35737 -91.224.46.0/23 59945 -91.224.48.0/23 24641 -91.224.50.0/23 197065 -91.224.52.0/23 197169 -91.224.54.0/23 47628 -91.224.56.0/23 197105 -91.224.58.0/24 60592 -91.224.59.0/24 50833 -91.224.60.0/23 50599 -91.224.62.0/23 44621 -91.224.66.0/23 57763 -91.224.68.0/23 197253 -91.224.70.0/23 13026 -91.224.72.0/23 41836 -91.224.74.0/23 197576 -91.224.76.0/23 44927 -91.224.80.0/23 52205 -91.224.82.0/23 56351 -91.224.84.0/23 50005 -91.224.86.0/23 56352 -91.224.88.0/23 29154 -91.224.90.0/24 197566 -91.224.91.0/24 51463 -91.224.92.0/23 43463 -91.224.94.0/23 25581 -91.224.96.0/23 56354 -91.224.98.0/23 197567 -91.224.102.0/23 20730 -91.224.104.0/23 197345 -91.224.106.0/23 50859 -91.224.108.0/23 42831 -91.224.110.0/23 56375 -91.224.112.0/23 48882 -91.224.116.0/24 56373 -91.224.117.0/24 20853 -91.224.118.0/23 56441 -91.224.120.0/23 34525 -91.224.122.0/24 38930 -91.224.123.0/24 61999 -91.224.124.0/23 197632 -91.224.126.0/23 12722 -91.224.128.0/23 50767 -91.224.130.0/23 56405 -91.224.132.0/23 50473 -91.224.134.0/23 56413 -91.224.136.0/23 56392 -91.224.138.0/23 47733 -91.224.140.0/23 52000 -91.224.142.0/23 34393 -91.224.144.0/23 56752 -91.224.146.0/23 57478 -91.224.148.0/23 197422 -91.224.150.0/23 60551 -91.224.152.0/23 197594 -91.224.154.0/23 56436 -91.224.156.0/23 51124 -91.224.158.0/23 56440 -91.224.162.0/23 30781 -91.224.164.0/23 24642 -91.224.166.0/23 56451 -91.224.168.0/23 197628 -91.224.170.0/24 207620 -91.224.172.0/23 56513 -91.224.174.0/23 42525 -91.224.176.0/23 56461 -91.224.178.0/23 197602 -91.224.180.0/23 197615 -91.224.182.0/23 56477 -91.224.184.0/23 51310 -91.224.186.0/23 56467 -91.224.188.0/23 197611 -91.224.190.0/23 198046 -91.224.192.0/23 56475 -91.224.194.0/23 52166 -91.224.196.0/23 39507 -91.224.198.0/23 56511 -91.224.200.0/23 56522 -91.224.202.0/23 56525 -91.224.204.0/23 197204 -91.224.206.0/23 56493 -91.224.208.0/23 49665 -91.224.210.0/23 56496 -91.224.212.0/24 48266 -91.224.213.0/24 203320 -91.224.214.0/23 48559 -91.224.216.0/23 51863 -91.224.218.0/23 12695 -91.224.220.0/23 51290 -91.224.222.0/23 56527 -91.224.224.0/23 56523 -91.224.226.0/23 56532 -91.224.230.0/23 197033 -91.224.232.0/24 47560 -91.224.233.0/24 42537 -91.224.234.0/23 56542 -91.224.236.0/23 197833 -91.224.238.0/23 197679 -91.224.240.0/23 29397 -91.224.242.0/23 42093 -91.224.244.0/23 198450 -91.224.248.0/23 20559 -91.224.250.0/23 56576 -91.224.252.0/23 51622 -91.224.254.0/23 8753 -91.225.0.0/22 20860 -91.225.4.0/22 52206 -91.225.8.0/22 60534 -91.225.12.0/22 60741 -91.225.16.0/22 52215 -91.225.20.0/22 52222 -91.225.24.0/24 210038 -91.225.25.0/24 48477 -91.225.26.0/24 200349 -91.225.27.0/24 200637 -91.225.28.0/22 43758 -91.225.33.0/24 3549 -91.225.34.0/23 209767 -91.225.36.0/22 197035 -91.225.40.0/22 52218 -91.225.44.0/22 35737 -91.225.48.0/22 56932 -91.225.52.0/24 42586 -91.225.53.0/24 43135 -91.225.54.0/23 43135 -91.225.56.0/22 44664 -91.225.60.0/22 49788 -91.225.64.0/22 31683 -91.225.68.0/22 197115 -91.225.72.0/22 197175 -91.225.76.0/22 31566 -91.225.80.0/22 197263 -91.225.84.0/22 56344 -91.225.88.0/22 49444 -91.225.92.0/22 44482 -91.225.96.0/22 197663 -91.225.100.0/22 47342 -91.225.104.0/22 61053 -91.225.108.0/22 56354 -91.225.112.0/22 49554 -91.225.116.0/22 56359 -91.225.120.0/22 197575 -91.225.124.0/24 202800 -91.225.125.0/24 12567 -91.225.128.0/22 56353 -91.225.132.0/22 197572 -91.225.136.0/22 43773 -91.225.140.0/22 56423 -91.225.144.0/22 51194 -91.225.148.0/22 48320 -91.225.152.0/22 197335 -91.225.156.0/22 56449 -91.225.160.0/22 56400 -91.225.164.0/22 56399 -91.225.168.0/22 56401 -91.225.172.0/22 47266 -91.225.176.0/22 56544 -91.225.180.0/22 12850 -91.225.184.0/22 42039 -91.225.188.0/22 197592 -91.225.192.0/23 56437 -91.225.194.0/23 206973 -91.225.196.0/22 56435 -91.225.200.0/22 49824 -91.225.204.0/22 25019 -91.225.208.0/22 56451 -91.225.212.0/22 49880 -91.225.218.0/23 205702 -91.225.220.0/22 51725 -91.225.224.0/22 43310 -91.225.228.0/22 197628 -91.225.232.0/22 56459 -91.225.236.0/22 56462 -91.225.240.0/22 56597 -91.225.244.0/22 12874 -91.225.250.0/24 197613 -91.225.253.0/24 44622 -91.225.255.0/24 44622 -91.226.2.0/23 3289 -91.226.4.0/24 50662 -91.226.5.0/24 59577 -91.226.6.0/23 29314 -91.226.8.0/23 197716 -91.226.10.0/23 52201 -91.226.12.0/23 51740 -91.226.14.0/23 56649 -91.226.16.0/23 197734 -91.226.18.0/23 25540 -91.226.20.0/23 56620 -91.226.22.0/23 197747 -91.226.24.0/23 56644 -91.226.26.0/23 197735 -91.226.28.0/23 197732 -91.226.30.0/24 56601 -91.226.31.0/24 49981 -91.226.34.0/23 56622 -91.226.36.0/23 197564 -91.226.38.0/23 31242 -91.226.42.0/23 51121 -91.226.44.0/23 48964 -91.226.48.0/23 197987 -91.226.50.0/23 49785 -91.226.52.0/22 48976 -91.226.56.0/22 44686 -91.226.60.0/22 42676 -91.226.64.0/23 56741 -91.226.68.0/22 41508 -91.226.72.0/24 47959 -91.226.73.0/24 39701 -91.226.74.0/23 56641 -91.226.76.0/24 47959 -91.226.77.0/24 198307 -91.226.79.0/24 12301 -91.226.80.0/22 44128 -91.226.84.0/22 203397 -91.226.88.0/22 45031 -91.226.92.0/22 12389 -91.226.98.0/24 29075 -91.226.99.0/24 31673 -91.226.100.0/22 197839 -91.226.104.0/22 49156 -91.226.108.0/23 34405 -91.226.110.0/23 56658 -91.226.112.0/22 57248 -91.226.116.0/24 20772 -91.226.117.0/24 197124 -91.226.118.0/24 29468 -91.226.119.0/24 3301 -91.226.120.0/22 43274 -91.226.124.0/22 35415 -91.226.128.0/22 1 -91.226.132.0/22 56663 -91.226.136.0/24 61971 -91.226.137.0/24 39577 -91.226.138.0/24 57160 -91.226.139.0/24 196851 -91.226.140.0/22 56667 -91.226.144.0/23 48871 -91.226.146.0/24 197813 -91.226.147.0/24 196880 -91.226.148.0/23 56674 -91.226.150.0/24 56674 -91.226.152.0/22 56677 -91.226.161.0/24 51054 -91.226.162.0/23 197777 -91.226.164.0/22 44678 -91.226.168.0/23 56698 -91.226.170.0/24 16163 -91.226.171.0/24 56692 -91.226.172.0/22 56690 -91.226.176.0/24 197772 -91.226.177.0/24 51815 -91.226.178.0/24 44257 -91.226.179.0/24 56855 -91.226.180.0/24 51815 -91.226.181.0/24 49229 -91.226.182.0/23 56693 -91.226.185.0/24 197773 -91.226.186.0/24 56685 -91.226.187.0/24 48845 -91.226.188.0/23 56691 -91.226.190.0/23 50981 -91.226.192.0/24 50981 -91.226.193.0/24 197737 -91.226.194.0/23 201743 -91.226.196.0/22 205299 -91.226.200.0/24 197783 -91.226.201.0/24 56716 -91.226.202.0/24 3303 -91.226.204.0/23 56763 -91.226.206.0/24 6908 -91.226.207.0/24 56756 -91.226.208.0/22 56705 -91.226.212.0/23 48031 -91.226.214.0/24 45039 -91.226.215.0/24 197778 -91.226.216.0/22 24971 -91.226.220.0/24 58166 -91.226.221.0/24 57844 -91.226.222.0/23 56702 -91.226.224.0/23 56703 -91.226.228.0/22 56712 -91.226.232.0/23 204766 -91.226.234.0/24 197780 -91.226.235.0/24 57162 -91.226.236.0/22 206314 -91.226.240.0/22 203877 -91.226.245.0/24 56839 -91.226.246.0/24 197791 -91.226.248.0/23 12298 -91.226.250.0/24 57145 -91.226.251.0/24 56713 -91.226.252.0/22 16044 -91.227.0.0/22 50767 -91.227.4.0/23 51559 -91.227.6.0/24 51559 -91.227.7.0/24 56717 -91.227.8.0/22 57125 -91.227.12.0/23 38917 -91.227.16.0/22 207027 -91.227.20.0/24 56719 -91.227.21.0/24 197801 -91.227.23.0/24 56721 -91.227.24.0/23 56714 -91.227.26.0/24 56730 -91.227.27.0/24 20844 -91.227.28.0/22 56720 -91.227.32.0/24 56725 -91.227.33.0/24 208913 -91.227.34.0/23 61400 -91.227.37.0/24 50599 -91.227.40.0/24 50599 -91.227.41.0/24 57367 -91.227.42.0/24 57498 -91.227.43.0/24 197796 -91.227.44.0/22 43966 -91.227.48.0/24 56728 -91.227.49.0/24 51815 -91.227.50.0/23 48642 -91.227.52.0/23 56806 -91.227.54.0/24 60553 -91.227.56.0/22 34402 -91.227.61.0/24 58307 -91.227.63.0/24 200750 -91.227.64.0/22 200750 -91.227.68.0/24 50928 -91.227.69.0/24 56751 -91.227.70.0/23 197797 -91.227.72.0/23 36791 -91.227.75.0/24 56738 -91.227.76.0/24 197935 -91.227.78.0/24 2856 -91.227.80.0/22 41235 -91.227.84.0/22 58224 -91.227.88.0/23 197154 -91.227.90.0/24 56750 -91.227.91.0/24 35022 -91.227.92.0/22 56760 -91.227.96.0/23 198103 -91.227.98.0/23 200978 -91.227.100.0/24 197802 -91.227.102.0/24 199943 -91.227.103.0/24 51944 -91.227.104.0/22 51944 -91.227.108.0/24 5408 -91.227.110.0/23 197881 -91.227.112.0/23 31430 -91.227.114.0/24 24642 -91.227.116.0/22 197809 -91.227.120.0/24 31242 -91.227.121.0/24 56772 -91.227.122.0/23 198921 -91.227.124.0/22 29527 -91.227.128.0/23 8447 -91.227.130.0/24 197836 -91.227.131.0/24 56770 -91.227.132.0/23 208039 -91.227.134.0/23 52092 -91.227.136.0/24 56785 -91.227.137.0/24 57844 -91.227.138.0/23 20845 -91.227.140.0/22 56776 -91.227.144.0/22 50245 -91.227.148.0/24 56829 -91.227.149.0/24 30953 -91.227.150.0/23 48964 -91.227.152.0/23 51698 -91.227.154.0/24 49981 -91.227.155.0/24 44812 -91.227.156.0/22 56783 -91.227.160.0/22 42132 -91.227.164.0/23 197819 -91.227.166.0/24 57177 -91.227.167.0/24 197828 -91.227.168.0/24 57844 -91.227.169.0/24 56793 -91.227.170.0/23 208039 -91.227.172.0/22 56542 -91.227.176.0/24 197824 -91.227.177.0/24 56849 -91.227.178.0/24 56929 -91.227.179.0/24 48056 -91.227.180.0/22 56835 -91.227.185.0/24 56792 -91.227.186.0/24 3301 -91.227.187.0/24 39324 -91.227.188.0/22 197826 -91.227.192.0/23 39324 -91.227.195.0/24 48297 -91.227.196.0/23 197844 -91.227.198.0/24 56794 -91.227.199.0/24 31242 -91.227.200.0/22 31242 -91.227.204.0/23 57169 -91.227.206.0/23 196863 -91.227.208.0/24 15395 -91.227.209.0/24 6848 -91.227.210.0/23 59595 -91.227.212.0/22 57305 -91.227.216.0/22 197840 -91.227.220.0/22 62217 -91.227.224.0/22 57248 -91.227.228.0/24 59595 -91.227.230.0/24 60587 -91.227.231.0/24 50719 -91.227.232.0/22 56827 -91.227.236.0/22 50718 -91.227.240.0/23 210176 -91.227.242.0/23 56807 -91.227.244.0/24 197857 -91.227.245.0/24 5413 -91.227.246.0/23 41152 -91.227.248.0/22 50304 -91.227.252.0/24 15575 -91.227.253.0/24 57844 -91.227.254.0/24 56818 -91.227.255.0/24 56811 -91.228.4.0/22 43108 -91.228.8.0/23 197838 -91.228.10.0/24 25513 -91.228.11.0/24 56826 -91.228.12.0/22 204895 -91.228.16.0/22 56816 -91.228.20.0/23 56816 -91.228.22.0/23 41152 -91.228.24.0/23 197957 -91.228.26.0/23 56542 -91.228.28.0/24 197776 -91.228.29.0/24 41496 -91.228.30.0/23 197831 -91.228.32.0/22 56838 -91.228.36.0/23 41496 -91.228.38.0/24 48452 -91.228.39.0/24 60708 -91.228.40.0/23 56845 -91.228.42.0/23 203313 -91.228.44.0/22 197895 -91.228.48.0/22 12389 -91.228.52.0/23 41108 -91.228.54.0/23 56846 -91.228.57.0/24 56894 -91.228.58.0/23 48243 -91.228.60.0/23 13030 -91.228.62.0/23 47618 -91.228.64.0/22 49558 -91.228.68.0/22 48031 -91.228.72.0/24 16509 -91.228.74.0/24 27281 -91.228.76.0/23 56864 -91.228.78.0/23 197852 -91.228.80.0/22 61289 -91.228.84.0/22 56847 -91.228.88.0/24 197854 -91.228.89.0/24 197849 -91.228.90.0/24 56848 -91.228.91.0/24 56882 -91.228.92.0/22 197849 -91.228.96.0/22 57181 -91.228.100.0/24 197920 -91.228.101.0/24 12586 -91.228.102.0/24 56853 -91.228.103.0/24 197873 -91.228.104.0/22 41108 -91.228.108.0/22 43588 -91.228.112.0/24 9016 -91.228.113.0/24 61216 -91.228.114.0/24 59701 -91.228.115.0/24 51159 -91.228.116.0/23 56879 -91.228.118.0/24 56874 -91.228.120.0/24 56866 -91.228.121.0/24 57215 -91.228.122.0/23 197218 -91.228.124.0/24 197856 -91.228.125.0/24 39856 -91.228.126.0/23 12400 -91.228.128.0/22 25019 -91.228.136.0/22 56869 -91.228.140.0/22 49074 -91.228.144.0/24 21159 -91.228.145.0/24 50437 -91.228.146.0/23 28907 -91.228.148.0/24 6694 -91.228.150.0/24 12329 -91.228.151.0/24 31019 -91.228.152.0/22 44066 -91.228.156.0/22 206314 -91.228.161.0/24 56880 -91.228.162.0/23 56804 -91.228.164.0/22 50881 -91.228.169.0/24 197916 -91.228.170.0/23 48344 -91.228.172.0/22 34127 -91.228.177.0/24 197888 -91.228.178.0/23 49320 -91.228.180.0/23 56888 -91.228.182.0/23 24811 -91.228.185.0/24 41508 -91.228.188.0/24 21208 -91.228.190.0/23 61430 -91.228.193.0/24 43948 -91.228.194.0/23 43948 -91.228.196.0/22 198414 -91.228.200.0/22 56916 -91.228.204.0/24 56904 -91.228.205.0/24 197878 -91.228.207.0/24 197877 -91.228.208.0/22 56930 -91.228.212.0/23 197886 -91.228.214.0/24 196788 -91.228.216.0/24 24768 -91.228.217.0/24 209907 -91.228.218.0/24 25229 -91.228.219.0/24 56907 -91.228.220.0/22 56915 -91.228.224.0/23 39763 -91.228.226.0/24 205391 -91.228.227.0/24 205444 -91.228.228.0/24 197880 -91.228.229.0/24 197341 -91.228.230.0/24 57018 -91.228.231.0/24 35913 -91.228.232.0/23 48101 -91.228.234.0/24 48101 -91.228.235.0/24 56896 -91.228.236.0/24 198030 -91.228.237.0/24 197887 -91.228.238.0/23 57487 -91.228.240.0/23 56909 -91.228.242.0/24 197669 -91.228.243.0/24 8804 -91.228.244.0/23 56955 -91.228.246.0/23 51583 -91.228.248.0/24 56914 -91.228.250.0/24 15707 -91.228.251.0/24 35913 -91.228.252.0/23 44301 -91.228.254.0/24 44301 -91.228.255.0/24 62433 -91.229.0.0/23 43046 -91.229.2.0/24 57149 -91.229.3.0/24 48918 -91.229.5.0/24 35913 -91.229.7.0/24 30948 -91.229.8.0/22 56936 -91.229.12.0/22 56940 -91.229.20.0/24 197922 -91.229.21.0/24 2119 -91.229.22.0/24 198704 -91.229.23.0/24 49981 -91.229.24.0/24 51134 -91.229.25.0/24 35913 -91.229.26.0/23 12328 -91.229.28.0/23 56926 -91.229.30.0/24 203320 -91.229.32.0/23 32787 -91.229.34.0/24 197894 -91.229.35.0/24 51559 -91.229.36.0/22 44001 -91.229.44.0/23 51559 -91.229.48.0/24 56954 -91.229.50.0/23 31430 -91.229.52.0/22 57234 -91.229.57.0/24 34883 -91.229.58.0/24 174 -91.229.59.0/24 56935 -91.229.60.0/22 47869 -91.229.64.0/23 39031 -91.229.66.0/23 48385 -91.229.68.0/22 35174 -91.229.72.0/24 51790 -91.229.74.0/23 5473 -91.229.76.0/22 42331 -91.229.80.0/22 21232 -91.229.84.0/22 56949 -91.229.88.0/23 56949 -91.229.90.0/23 49392 -91.229.92.0/24 17088 -91.229.93.0/24 197750 -91.229.94.0/24 50245 -91.229.95.0/24 57694 -91.229.96.0/22 56957 -91.229.100.0/24 50174 -91.229.101.0/24 35213 -91.229.102.0/23 8758 -91.229.104.0/23 49392 -91.229.106.0/23 197910 -91.229.108.0/22 56947 -91.229.114.0/24 41175 -91.229.115.0/24 56944 -91.229.116.0/22 51396 -91.229.120.0/22 196953 -91.229.124.0/24 203897 -91.229.128.0/23 197643 -91.229.130.0/23 57591 -91.229.136.0/24 35625 -91.229.137.0/24 57066 -91.229.138.0/23 57066 -91.229.140.0/24 31424 -91.229.141.0/24 1257 -91.229.142.0/23 50304 -91.229.144.0/23 39647 -91.229.146.0/24 197905 -91.229.152.0/23 56953 -91.229.154.0/24 56959 -91.229.155.0/24 197906 -91.229.156.0/23 203785 -91.229.159.0/24 203785 -91.229.160.0/22 50025 -91.229.164.0/23 50025 -91.229.168.0/22 197915 -91.229.172.0/24 57103 -91.229.173.0/24 56990 -91.229.174.0/23 47638 -91.229.176.0/24 56975 -91.229.177.0/24 48366 -91.229.178.0/23 48173 -91.229.180.0/24 174 -91.229.181.0/24 197666 -91.229.183.0/24 15730 -91.229.186.0/24 20668 -91.229.187.0/24 199766 -91.229.188.0/24 8681 -91.229.190.0/23 56977 -91.229.192.0/24 2830 -91.229.193.0/24 197918 -91.229.194.0/23 51058 -91.229.196.0/22 49381 -91.229.200.0/24 56982 -91.229.201.0/24 48591 -91.229.202.0/23 50717 -91.229.204.0/22 56972 -91.229.208.0/23 48667 -91.229.213.0/24 28978 -91.229.214.0/23 57218 -91.229.216.0/22 57005 -91.229.220.0/24 25233 -91.229.221.0/24 56991 -91.229.222.0/23 57099 -91.229.224.0/23 56988 -91.229.226.0/24 56978 -91.229.227.0/24 60112 -91.229.228.0/24 208913 -91.229.229.0/24 30962 -91.229.230.0/23 47891 -91.229.232.0/24 198203 -91.229.233.0/24 56886 -91.229.234.0/23 57003 -91.229.237.0/24 56996 -91.229.238.0/24 197928 -91.229.240.0/22 57001 -91.229.244.0/23 42366 -91.229.248.0/24 30962 -91.229.249.0/24 198094 -91.229.250.0/23 196776 -91.229.252.0/22 57007 -91.230.0.0/23 57284 -91.230.2.0/24 56963 -91.230.3.0/24 44760 -91.230.4.0/23 197930 -91.230.6.0/23 197929 -91.230.8.0/23 47790 -91.230.10.0/23 52163 -91.230.12.0/22 51388 -91.230.16.0/24 2856 -91.230.17.0/24 197933 -91.230.18.0/23 57006 -91.230.20.0/23 44079 -91.230.22.0/24 200548 -91.230.23.0/24 57440 -91.230.24.0/24 197678 -91.230.25.0/24 57049 -91.230.26.0/24 51292 -91.230.27.0/24 30962 -91.230.28.0/22 57025 -91.230.33.0/24 15542 -91.230.34.0/23 15542 -91.230.36.0/23 29205 -91.230.38.0/23 49505 -91.230.41.0/24 50811 -91.230.42.0/23 48956 -91.230.44.0/23 57051 -91.230.46.0/24 44608 -91.230.47.0/24 30962 -91.230.50.0/24 197934 -91.230.51.0/24 57029 -91.230.52.0/23 8595 -91.230.54.0/24 25490 -91.230.55.0/24 44278 -91.230.56.0/23 44278 -91.230.58.0/23 197936 -91.230.60.0/23 59627 -91.230.62.0/23 57064 -91.230.64.0/24 42160 -91.230.65.0/24 57045 -91.230.66.0/23 3215 -91.230.68.0/22 42525 -91.230.72.0/24 197725 -91.230.73.0/24 204079 -91.230.74.0/24 198051 -91.230.75.0/24 196666 -91.230.76.0/23 50625 -91.230.78.0/24 3301 -91.230.79.0/24 57035 -91.230.83.0/24 57115 -91.230.84.0/24 57047 -91.230.85.0/24 197941 -91.230.86.0/23 60624 -91.230.88.0/23 197939 -91.230.90.0/24 197944 -91.230.91.0/24 57046 -91.230.92.0/23 48229 -91.230.96.0/24 197947 -91.230.100.0/23 51397 -91.230.102.0/23 197948 -91.230.104.0/23 57074 -91.230.106.0/24 57058 -91.230.107.0/24 57073 -91.230.112.0/22 57055 -91.230.116.0/22 197294 -91.230.121.0/24 30860 -91.230.122.0/24 13110 -91.230.123.0/24 57071 -91.230.124.0/23 44577 -91.230.133.0/24 197952 -91.230.135.0/24 197955 -91.230.136.0/22 51200 -91.230.140.0/23 31004 -91.230.142.0/24 8447 -91.230.144.0/24 51134 -91.230.145.0/24 198049 -91.230.146.0/24 44056 -91.230.148.0/24 57556 -91.230.150.0/24 51604 -91.230.151.0/24 57085 -91.230.152.0/22 51604 -91.230.156.0/24 57255 -91.230.157.0/24 57101 -91.230.158.0/24 57092 -91.230.160.0/23 57089 -91.230.164.0/22 29314 -91.230.169.0/24 198034 -91.230.170.0/23 34762 -91.230.172.0/23 41412 -91.230.174.0/24 41412 -91.230.176.0/23 34762 -91.230.178.0/24 34762 -91.230.179.0/24 19994 -91.230.180.0/24 35434 -91.230.181.0/24 44574 -91.230.182.0/24 208075 -91.230.184.0/22 57109 -91.230.189.0/24 197958 -91.230.191.0/24 57108 -91.230.192.0/22 49699 -91.230.196.0/23 200463 -91.230.198.0/23 57102 -91.230.200.0/22 48707 -91.230.204.0/23 48707 -91.230.206.0/23 57105 -91.230.208.0/24 48347 -91.230.209.0/24 2118 -91.230.210.0/23 8496 -91.230.213.0/24 198019 -91.230.214.0/24 8917 -91.230.215.0/24 61410 -91.230.216.0/23 50245 -91.230.218.0/24 56685 -91.230.219.0/24 57116 -91.230.220.0/24 197967 -91.230.221.0/24 57121 -91.230.222.0/23 197982 -91.230.224.0/24 197756 -91.230.226.0/23 57120 -91.230.230.0/24 197604 -91.230.231.0/24 57122 -91.230.232.0/24 48338 -91.230.233.0/24 52142 -91.230.234.0/24 57126 -91.230.235.0/24 47835 -91.230.236.0/24 15643 -91.230.238.0/24 51790 -91.230.239.0/24 47527 -91.230.240.0/23 57130 -91.230.242.0/24 57159 -91.230.243.0/24 61337 -91.230.244.0/23 12859 -91.230.246.0/24 197976 -91.230.247.0/24 57142 -91.230.248.0/24 57136 -91.230.249.0/24 3303 -91.230.250.0/24 41140 -91.230.251.0/24 6849 -91.230.252.0/23 57153 -91.230.254.0/23 60471 -91.231.0.0/24 57495 -91.231.1.0/24 198224 -91.231.2.0/24 198278 -91.231.4.0/23 57146 -91.231.6.0/24 57146 -91.231.7.0/24 200826 -91.231.8.0/24 34665 -91.231.9.0/24 198393 -91.231.11.0/24 5384 -91.231.12.0/22 198393 -91.231.16.0/23 48321 -91.231.18.0/24 197977 -91.231.19.0/24 57890 -91.231.20.0/23 57890 -91.231.23.0/24 198187 -91.231.24.0/22 197979 -91.231.28.0/22 10 -91.231.32.0/23 39507 -91.231.36.0/22 197474 -91.231.40.0/22 198820 -91.231.44.0/23 60336 -91.231.49.0/24 25019 -91.231.51.0/24 25019 -91.231.52.0/23 198038 -91.231.54.0/23 48641 -91.231.56.0/22 43533 -91.231.60.0/23 198158 -91.231.62.0/24 198102 -91.231.63.0/24 12597 -91.231.66.0/23 9009 -91.231.68.0/24 5518 -91.231.69.0/24 57285 -91.231.70.0/23 198050 -91.231.72.0/22 198048 -91.231.80.0/22 198050 -91.231.84.0/22 197726 -91.231.90.0/23 8190 -91.231.92.0/23 47672 -91.231.94.0/23 198052 -91.231.96.0/24 198069 -91.231.97.0/24 57533 -91.231.98.0/24 57311 -91.231.99.0/24 12639 -91.231.100.0/22 15624 -91.231.104.0/22 198106 -91.231.108.0/23 25428 -91.231.110.0/23 198067 -91.231.113.0/24 57312 -91.231.114.0/23 50340 -91.231.118.0/23 198098 -91.231.120.0/22 198072 -91.231.124.0/24 57321 -91.231.125.0/24 56441 -91.231.127.0/24 41540 -91.231.128.0/22 57323 -91.231.132.0/22 57314 -91.231.136.0/23 34665 -91.231.138.0/24 57322 -91.231.139.0/24 12670 -91.231.140.0/24 61154 -91.231.141.0/24 198074 -91.231.142.0/23 49392 -91.231.144.0/24 28920 -91.231.146.0/24 197865 -91.231.147.0/24 31027 -91.231.148.0/22 8811 -91.231.152.0/24 198081 -91.231.153.0/24 21485 -91.231.157.0/24 199212 -91.231.158.0/23 15832 -91.231.160.0/24 49561 -91.231.161.0/24 34664 -91.231.162.0/23 8279 -91.231.164.0/22 198090 -91.231.168.0/23 197295 -91.231.170.0/24 57341 -91.231.171.0/24 197875 -91.231.175.0/24 20900 -91.231.176.0/23 57339 -91.231.179.0/24 57343 -91.231.184.0/24 44439 -91.231.185.0/24 198109 -91.231.186.0/24 34221 -91.231.187.0/24 44779 -91.231.188.0/22 12289 -91.231.192.0/22 198114 -91.231.196.0/22 198130 -91.231.200.0/22 210315 -91.231.204.0/24 12329 -91.231.205.0/24 198611 -91.231.206.0/24 57349 -91.231.207.0/24 41496 -91.231.208.0/22 41496 -91.231.212.0/24 41474 -91.231.213.0/24 198117 -91.231.214.0/23 57372 -91.231.216.0/23 57350 -91.231.218.0/23 57354 -91.231.220.0/24 3209 -91.231.221.0/24 49420 -91.231.227.0/24 203464 -91.231.228.0/24 198126 -91.231.229.0/24 57361 -91.231.230.0/23 57360 -91.231.232.0/24 57358 -91.231.233.0/24 198137 -91.231.235.0/24 57363 -91.231.236.0/22 57363 -91.231.240.0/24 198124 -91.231.241.0/24 12741 -91.231.242.0/24 198131 -91.231.244.0/22 201725 -91.231.248.0/22 200893 -91.231.252.0/22 44027 -91.232.4.0/23 57480 -91.232.6.0/23 60343 -91.232.8.0/22 51756 -91.232.12.0/22 57452 -91.232.18.0/24 199429 -91.232.19.0/24 57217 -91.232.21.0/24 57442 -91.232.22.0/23 50629 -91.232.24.0/23 39637 -91.232.26.0/24 57445 -91.232.27.0/24 198176 -91.232.28.0/22 41018 -91.232.32.0/23 57451 -91.232.34.0/24 57451 -91.232.35.0/24 3257 -91.232.36.0/24 12058 -91.232.37.0/24 34288 -91.232.38.0/24 47755 -91.232.39.0/24 198195 -91.232.40.0/22 198184 -91.232.44.0/23 58321 -91.232.46.0/23 199413 -91.232.48.0/22 199413 -91.232.52.0/24 199413 -91.232.53.0/24 198190 -91.232.54.0/24 3320 -91.232.55.0/24 60912 -91.232.56.0/23 48266 -91.232.58.0/24 198197 -91.232.59.0/24 45011 -91.232.60.0/23 45011 -91.232.62.0/23 198187 -91.232.64.0/22 57457 -91.232.68.0/23 57457 -91.232.70.0/24 50396 -91.232.71.0/24 30937 -91.232.72.0/24 57461 -91.232.73.0/24 58224 -91.232.74.0/23 57461 -91.232.76.0/22 198192 -91.232.80.0/24 57482 -91.232.81.0/24 57269 -91.232.82.0/24 5610 -91.232.83.0/24 2116 -91.232.84.0/22 57560 -91.232.88.0/23 198191 -91.232.90.0/23 198896 -91.232.92.0/22 39864 -91.232.96.0/23 51191 -91.232.98.0/24 24858 -91.232.100.0/23 57513 -91.232.102.0/24 57488 -91.232.104.0/24 31463 -91.232.105.0/24 49981 -91.232.106.0/23 57486 -91.232.108.0/22 50466 -91.232.112.0/24 49149 -91.232.113.0/24 57530 -91.232.114.0/23 57504 -91.232.116.0/22 196665 -91.232.120.0/22 198212 -91.232.124.0/23 9009 -91.232.126.0/24 57274 -91.232.127.0/24 61251 -91.232.128.0/24 57519 -91.232.130.0/24 49627 -91.232.131.0/24 198207 -91.232.132.0/22 57487 -91.232.136.0/22 209706 -91.232.140.0/22 198214 -91.232.144.0/22 50466 -91.232.148.0/23 57168 -91.232.150.0/23 9009 -91.232.152.0/24 57514 -91.232.153.0/24 41373 -91.232.154.0/23 57692 -91.232.156.0/24 57692 -91.232.157.0/24 39413 -91.232.158.0/23 198227 -91.232.160.0/23 57524 -91.232.162.0/24 57526 -91.232.163.0/24 6830 -91.232.164.0/22 198263 -91.232.168.0/22 57526 -91.232.172.0/23 34230 -91.232.174.0/24 34984 -91.232.175.0/24 198232 -91.232.176.0/24 202541 -91.232.177.0/24 198238 -91.232.178.0/23 57544 -91.232.180.0/24 57525 -91.232.181.0/24 60036 -91.232.182.0/24 199797 -91.232.183.0/24 29596 -91.232.184.0/23 199797 -91.232.186.0/24 47424 -91.232.187.0/24 61026 -91.232.188.0/24 57531 -91.232.189.0/24 198261 -91.232.190.0/23 57536 -91.232.192.0/22 50625 -91.232.196.0/24 198258 -91.232.197.0/24 29043 -91.232.199.0/24 48323 -91.232.200.0/24 198237 -91.232.202.0/23 49325 -91.232.204.0/22 49325 -91.232.209.0/24 57538 -91.232.210.0/23 57535 -91.232.212.0/22 198284 -91.232.216.0/23 57562 -91.232.218.0/23 57547 -91.232.220.0/22 57547 -91.232.224.0/24 198239 -91.232.225.0/24 198324 -91.232.226.0/24 60912 -91.232.228.0/24 16100 -91.232.230.0/23 57570 -91.232.232.0/23 198244 -91.232.234.0/24 198245 -91.232.236.0/23 57550 -91.232.238.0/24 198253 -91.232.239.0/24 57554 -91.232.240.0/23 198251 -91.232.242.0/24 3215 -91.232.243.0/24 57553 -91.232.244.0/23 57557 -91.232.246.0/24 198255 -91.232.247.0/24 34911 -91.232.248.0/22 31229 -91.232.252.0/23 57552 -91.232.254.0/24 60912 -91.232.255.0/24 64249 -91.233.4.0/24 57561 -91.233.5.0/24 42353 -91.233.6.0/24 198334 -91.233.7.0/24 49808 -91.233.8.0/22 24940 -91.233.12.0/23 49808 -91.233.15.0/24 42223 -91.233.18.0/24 57569 -91.233.19.0/24 198272 -91.233.20.0/24 64249 -91.233.21.0/24 198281 -91.233.22.0/23 41038 -91.233.24.0/24 198273 -91.233.25.0/24 197848 -91.233.26.0/23 25504 -91.233.28.0/22 198541 -91.233.32.0/24 62053 -91.233.33.0/24 5089 -91.233.34.0/24 196898 -91.233.35.0/24 3320 -91.233.36.0/23 44306 -91.233.40.0/23 198639 -91.233.42.0/23 57587 -91.233.44.0/22 57583 -91.233.48.0/23 57582 -91.233.50.0/24 12552 -91.233.52.0/23 15830 -91.233.54.0/24 64249 -91.233.55.0/24 57572 -91.233.56.0/22 57577 -91.233.60.0/24 57593 -91.233.61.0/24 34665 -91.233.62.0/24 57586 -91.233.63.0/24 57589 -91.233.64.0/24 198358 -91.233.65.0/24 57885 -91.233.68.0/24 57584 -91.233.69.0/24 57592 -91.233.70.0/23 57592 -91.233.72.0/22 57592 -91.233.76.0/22 57594 -91.233.80.0/24 57600 -91.233.81.0/24 198300 -91.233.82.0/24 198303 -91.233.83.0/24 61283 -91.233.84.0/22 20647 -91.233.88.0/24 50265 -91.233.89.0/24 64249 -91.233.90.0/23 57599 -91.233.92.0/22 15880 -91.233.96.0/22 42906 -91.233.100.0/24 57601 -91.233.102.0/24 57601 -91.233.104.0/24 197950 -91.233.105.0/24 12859 -91.233.106.0/24 48955 -91.233.107.0/24 60335 -91.233.108.0/22 57605 -91.233.112.0/22 57608 -91.233.116.0/23 51765 -91.233.118.0/24 31154 -91.233.119.0/24 198184 -91.233.122.0/24 42349 -91.233.123.0/24 50073 -91.233.124.0/24 6067 -91.233.125.0/24 41369 -91.233.127.0/24 198314 -91.233.128.0/23 199909 -91.233.132.0/22 48160 -91.233.136.0/22 43073 -91.233.140.0/24 49087 -91.233.142.0/23 31027 -91.233.144.0/22 44492 -91.233.148.0/23 44492 -91.233.151.0/24 48217 -91.233.152.0/23 55002 -91.233.154.0/23 198328 -91.233.156.0/22 198004 -91.233.160.0/23 198004 -91.233.162.0/24 198329 -91.233.163.0/24 57623 -91.233.164.0/22 16323 -91.233.168.0/22 42765 -91.233.172.0/23 198338 -91.233.174.0/24 8895 -91.233.175.0/24 57876 -91.233.176.0/22 198345 -91.233.180.0/24 12637 -91.233.181.0/24 15830 -91.233.182.0/24 21124 -91.233.183.0/24 3549 -91.233.184.0/22 35318 -91.233.188.0/23 57627 -91.233.190.0/24 41496 -91.233.191.0/24 203768 -91.233.192.0/24 199797 -91.233.193.0/24 51474 -91.233.194.0/23 51474 -91.233.200.0/24 203785 -91.233.201.0/24 200443 -91.233.204.0/23 198040 -91.233.206.0/24 28747 -91.233.207.0/24 39591 -91.233.208.0/22 31559 -91.233.213.0/24 39585 -91.233.214.0/23 24589 -91.233.216.0/22 57629 -91.233.220.0/22 57753 -91.233.224.0/23 51088 -91.233.226.0/24 198376 -91.233.227.0/24 197964 -91.233.228.0/23 57723 -91.233.230.0/23 198348 -91.233.232.0/22 198112 -91.233.236.0/23 198112 -91.233.238.0/23 49848 -91.233.240.0/22 49848 -91.233.246.0/24 49848 -91.233.247.0/24 57637 -91.233.248.0/24 56937 -91.233.250.0/23 198374 -91.233.252.0/22 198349 -91.234.0.0/22 196863 -91.234.4.0/22 49389 -91.234.8.0/24 198374 -91.234.9.0/24 12670 -91.234.11.0/24 34665 -91.234.12.0/22 198401 -91.234.16.0/24 57645 -91.234.17.0/24 57638 -91.234.18.0/24 51526 -91.234.19.0/24 42831 -91.234.21.0/24 34491 -91.234.22.0/24 34568 -91.234.23.0/24 16353 -91.234.24.0/22 198356 -91.234.28.0/23 35731 -91.234.30.0/24 34788 -91.234.31.0/24 198359 -91.234.32.0/22 56485 -91.234.36.0/24 61190 -91.234.37.0/24 198337 -91.234.38.0/23 57939 -91.234.40.0/22 196957 -91.234.44.0/23 199212 -91.234.46.0/24 198785 -91.234.48.0/24 198362 -91.234.49.0/24 59415 -91.234.50.0/24 13127 -91.234.51.0/24 28685 -91.234.54.0/24 51501 -91.234.56.0/22 49074 -91.234.60.0/22 198367 -91.234.64.0/23 57725 -91.234.66.0/23 42374 -91.234.68.0/22 57725 -91.234.72.0/22 43067 -91.234.76.0/22 47245 -91.234.80.0/22 197831 -91.234.88.0/22 56972 -91.234.96.0/23 198083 -91.234.98.0/24 50340 -91.234.99.0/24 48666 -91.234.100.0/22 39507 -91.234.104.0/22 198375 -91.234.108.0/22 39294 -91.234.112.0/22 197496 -91.234.116.0/22 207984 -91.234.120.0/22 199429 -91.234.124.0/22 198397 -91.234.128.0/22 198424 -91.234.132.0/22 52026 -91.234.136.0/22 197218 -91.234.140.0/23 57726 -91.234.142.0/23 43862 -91.234.144.0/24 43862 -91.234.145.0/24 198480 -91.234.146.0/24 198414 -91.234.147.0/24 57820 -91.234.148.0/24 35027 -91.234.149.0/24 57720 -91.234.152.0/22 2585 -91.234.156.0/22 60912 -91.234.160.0/24 198249 -91.234.161.0/24 33974 -91.234.162.0/23 21430 -91.234.164.0/22 49478 -91.234.168.0/23 50819 -91.234.170.0/24 198445 -91.234.171.0/24 34788 -91.234.172.0/22 57737 -91.234.176.0/24 49258 -91.234.177.0/24 57749 -91.234.179.0/24 42473 -91.234.180.0/22 198438 -91.234.184.0/23 20860 -91.234.186.0/23 197087 -91.234.188.0/24 198437 -91.234.189.0/24 15716 -91.234.190.0/23 39377 -91.234.193.0/24 20559 -91.234.194.0/23 16347 -91.234.196.0/22 51252 -91.234.200.0/24 8764 -91.234.201.0/24 57750 -91.234.202.0/24 38917 -91.234.203.0/24 42160 -91.234.204.0/23 198443 -91.234.206.0/24 28685 -91.234.207.0/24 198442 -91.234.212.0/24 198447 -91.234.213.0/24 34788 -91.234.214.0/24 55002 -91.234.215.0/24 48345 -91.234.216.0/24 34788 -91.234.217.0/24 197226 -91.234.218.0/23 57764 -91.234.224.0/23 57762 -91.234.226.0/23 42174 -91.234.228.0/24 198874 -91.234.229.0/24 56833 -91.234.232.0/24 198457 -91.234.240.0/24 12552 -91.234.241.0/24 200826 -91.234.242.0/23 200826 -91.234.245.0/24 204360 -91.234.246.0/24 209801 -91.234.247.0/24 209430 -91.234.248.0/22 57779 -91.234.252.0/23 198430 -91.234.254.0/24 49981 -91.234.255.0/24 34882 -91.235.0.0/23 12741 -91.235.3.0/24 41496 -91.235.4.0/24 31829 -91.235.7.0/24 57766 -91.235.8.0/22 56833 -91.235.12.0/22 51211 -91.235.16.0/22 204295 -91.235.20.0/22 57643 -91.235.24.0/23 57643 -91.235.26.0/24 57797 -91.235.28.0/22 51015 -91.235.33.0/24 57857 -91.235.34.0/23 198521 -91.235.36.0/22 44027 -91.235.40.0/23 201942 -91.235.42.0/24 199833 -91.235.43.0/24 5588 -91.235.44.0/24 198466 -91.235.45.0/24 34788 -91.235.46.0/24 57787 -91.235.47.0/24 34788 -91.235.48.0/22 198479 -91.235.52.0/22 57788 -91.235.56.0/22 5089 -91.235.60.0/22 50272 -91.235.64.0/24 201160 -91.235.65.0/24 198472 -91.235.66.0/24 198481 -91.235.67.0/24 16005 -91.235.68.0/22 33817 -91.235.72.0/22 34241 -91.235.80.0/23 57812 -91.235.82.0/24 198470 -91.235.83.0/24 59393 -91.235.84.0/22 197335 -91.235.88.0/22 48366 -91.235.92.0/22 48858 -91.235.96.0/22 57791 -91.235.100.0/24 198473 -91.235.101.0/24 57803 -91.235.102.0/24 57830 -91.235.103.0/24 57805 -91.235.104.0/23 28865 -91.235.106.0/24 35835 -91.235.108.0/22 198479 -91.235.112.0/24 57806 -91.235.113.0/24 20787 -91.235.114.0/23 31007 -91.235.116.0/24 51177 -91.235.118.0/24 1273 -91.235.119.0/24 205772 -91.235.120.0/23 3356 -91.235.123.0/24 199552 -91.235.124.0/23 198493 -91.235.126.0/24 198493 -91.235.127.0/24 39922 -91.235.128.0/24 15626 -91.235.129.0/24 21100 -91.235.130.0/23 201117 -91.235.132.0/22 30286 -91.235.136.0/23 50673 -91.235.138.0/24 199383 -91.235.139.0/24 42525 -91.235.140.0/24 44521 -91.235.141.0/24 16347 -91.235.142.0/23 30860 -91.235.144.0/22 57808 -91.235.148.0/24 51501 -91.235.149.0/24 12741 -91.235.152.0/22 12741 -91.235.159.0/24 198503 -91.235.164.0/24 57813 -91.235.165.0/24 57815 -91.235.168.0/24 47869 -91.235.169.0/24 61039 -91.235.170.0/23 198492 -91.235.172.0/23 6908 -91.235.174.0/24 56510 -91.235.175.0/24 57842 -91.235.176.0/22 56568 -91.235.180.0/23 59533 -91.235.182.0/24 57825 -91.235.183.0/24 198494 -91.235.184.0/22 49821 -91.235.188.0/22 48642 -91.235.192.0/22 198498 -91.235.196.0/22 35273 -91.235.200.0/23 44489 -91.235.202.0/24 198495 -91.235.203.0/24 57828 -91.235.208.0/22 3163 -91.235.212.0/24 24889 -91.235.213.0/24 198515 -91.235.214.0/24 8897 -91.235.216.0/22 50561 -91.235.220.0/24 200513 -91.235.221.0/24 39442 -91.235.222.0/23 197734 -91.235.224.0/22 49561 -91.235.228.0/23 15694 -91.235.230.0/24 56475 -91.235.231.0/24 198613 -91.235.232.0/24 12617 -91.235.233.0/24 57518 -91.235.235.0/24 205781 -91.235.236.0/24 206149 -91.235.237.0/24 12414 -91.235.238.0/23 3165 -91.235.240.0/24 57838 -91.235.241.0/24 51501 -91.235.242.0/24 57854 -91.235.243.0/24 198512 -91.235.244.0/22 57843 -91.235.248.0/22 20682 -91.235.252.0/22 198509 -91.236.0.0/24 57875 -91.236.1.0/24 198524 -91.236.2.0/23 57919 -91.236.4.0/22 198525 -91.236.8.0/23 57213 -91.236.10.0/23 31208 -91.236.12.0/24 51501 -91.236.13.0/24 25552 -91.236.14.0/23 198546 -91.236.16.0/24 198530 -91.236.17.0/24 31672 -91.236.18.0/24 6908 -91.236.19.0/24 199139 -91.236.20.0/23 198529 -91.236.22.0/23 58279 -91.236.24.0/24 57918 -91.236.25.0/24 2200 -91.236.26.0/23 31727 -91.236.28.0/24 198531 -91.236.29.0/24 19133 -91.236.30.0/23 52022 -91.236.32.0/22 198537 -91.236.36.0/24 198532 -91.236.38.0/23 198379 -91.236.40.0/22 57904 -91.236.44.0/24 198379 -91.236.45.0/24 198534 -91.236.46.0/23 41496 -91.236.48.0/22 197482 -91.236.52.0/24 50599 -91.236.53.0/24 57239 -91.236.54.0/23 50599 -91.236.56.0/24 42987 -91.236.57.0/24 198595 -91.236.58.0/24 48837 -91.236.59.0/24 3257 -91.236.60.0/22 198541 -91.236.64.0/22 6855 -91.236.68.0/22 8778 -91.236.72.0/23 198269 -91.236.74.0/23 198540 -91.236.76.0/24 203785 -91.236.77.0/24 199429 -91.236.78.0/24 6730 -91.236.79.0/24 57884 -91.236.80.0/23 57874 -91.236.82.0/24 198543 -91.236.84.0/22 6830 -91.236.88.0/22 51474 -91.236.92.0/22 57882 -91.236.96.0/22 44171 -91.236.100.0/22 57901 -91.236.105.0/24 47357 -91.236.106.0/23 57892 -91.236.108.0/22 29076 -91.236.112.0/23 29076 -91.236.114.0/24 57903 -91.236.116.0/24 42237 -91.236.117.0/24 198554 -91.236.118.0/23 197726 -91.236.120.0/24 57271 -91.236.121.0/24 49505 -91.236.122.0/24 20546 -91.236.123.0/24 31027 -91.236.124.0/24 57923 -91.236.125.0/24 57897 -91.236.126.0/23 57887 -91.236.128.0/24 198560 -91.236.129.0/24 42830 -91.236.131.0/24 50599 -91.236.132.0/23 198518 -91.236.134.0/23 57899 -91.236.136.0/24 44094 -91.236.137.0/24 198891 -91.236.138.0/24 198566 -91.236.140.0/22 51341 -91.236.144.0/22 57912 -91.236.148.0/22 57803 -91.236.152.0/24 60788 -91.236.153.0/24 202140 -91.236.154.0/23 57975 -91.236.156.0/22 205318 -91.236.160.0/24 16172 -91.236.161.0/24 57752 -91.236.163.0/24 60831 -91.236.164.0/23 57941 -91.236.166.0/23 57940 -91.236.168.0/23 44285 -91.236.170.0/24 198574 -91.236.171.0/24 57924 -91.236.172.0/22 60831 -91.236.176.0/22 23242 -91.236.180.0/23 48096 -91.236.182.0/24 14987 -91.236.183.0/24 198618 -91.236.184.0/24 59768 -91.236.185.0/24 44695 -91.236.186.0/24 3308 -91.236.187.0/24 200660 -91.236.188.0/24 57946 -91.236.190.0/23 39173 -91.236.192.0/24 49405 -91.236.193.0/24 25070 -91.236.194.0/24 41887 -91.236.195.0/24 198578 -91.236.196.0/24 51520 -91.236.197.0/24 59508 -91.236.198.0/23 59508 -91.236.200.0/24 57947 -91.236.202.0/23 49784 -91.236.204.0/23 50676 -91.236.207.0/24 196793 -91.236.208.0/23 16150 -91.236.210.0/23 49010 -91.236.212.0/24 198581 -91.236.214.0/23 59685 -91.236.216.0/22 47967 -91.236.221.0/24 198633 -91.236.222.0/24 3249 -91.236.223.0/24 35490 -91.236.224.0/22 50574 -91.236.228.0/24 47703 -91.236.230.0/23 57934 -91.236.232.0/24 198591 -91.236.233.0/24 57945 -91.236.234.0/24 198817 -91.236.235.0/24 198716 -91.236.236.0/24 57937 -91.236.237.0/24 60912 -91.236.238.0/24 199732 -91.236.239.0/24 197922 -91.236.240.0/22 209767 -91.236.244.0/23 57948 -91.236.246.0/23 57250 -91.236.248.0/22 57944 -91.236.252.0/23 198592 -91.236.254.0/23 197922 -91.237.0.0/22 196767 -91.237.4.0/24 198665 -91.237.5.0/24 198593 -91.237.6.0/23 25229 -91.237.12.0/22 25229 -91.237.16.0/23 198090 -91.237.18.0/23 15694 -91.237.24.0/22 57949 -91.237.32.0/24 57953 -91.237.33.0/24 60973 -91.237.34.0/23 60717 -91.237.36.0/24 198627 -91.237.37.0/24 198615 -91.237.38.0/23 197732 -91.237.40.0/23 57962 -91.237.42.0/24 57956 -91.237.43.0/24 58064 -91.237.44.0/22 48266 -91.237.48.0/24 209104 -91.237.49.0/24 200443 -91.237.51.0/24 34293 -91.237.52.0/24 198414 -91.237.54.0/23 57988 -91.237.56.0/22 44309 -91.237.60.0/22 42717 -91.237.64.0/24 198600 -91.237.65.0/24 39394 -91.237.66.0/24 43948 -91.237.67.0/24 1921 -91.237.68.0/22 198611 -91.237.72.0/23 51101 -91.237.76.0/24 57973 -91.237.77.0/24 198646 -91.237.78.0/24 29479 -91.237.79.0/24 60219 -91.237.80.0/23 57966 -91.237.82.0/23 50466 -91.237.84.0/23 198604 -91.237.86.0/24 198604 -91.237.88.0/23 56813 -91.237.90.0/24 57967 -91.237.91.0/24 203785 -91.237.93.0/24 199429 -91.237.94.0/24 49107 -91.237.95.0/24 12552 -91.237.96.0/24 198606 -91.237.98.0/23 43513 -91.237.100.0/23 5464 -91.237.102.0/23 15669 -91.237.104.0/23 49392 -91.237.106.0/24 44581 -91.237.107.0/24 60386 -91.237.108.0/22 57982 -91.237.112.0/23 198713 -91.237.114.0/23 57981 -91.237.116.0/24 57995 -91.237.117.0/24 48918 -91.237.118.0/24 57983 -91.237.119.0/24 42419 -91.237.120.0/22 57993 -91.237.124.0/22 48243 -91.237.128.0/24 57441 -91.237.130.0/23 58034 -91.237.132.0/22 3212 -91.237.136.0/23 198984 -91.237.138.0/23 34891 -91.237.140.0/24 43948 -91.237.142.0/24 57985 -91.237.143.0/24 198798 -91.237.144.0/24 58006 -91.237.148.0/24 47438 -91.237.149.0/24 58017 -91.237.150.0/24 58007 -91.237.151.0/24 206381 -91.237.154.0/23 57998 -91.237.156.0/22 57998 -91.237.160.0/23 198327 -91.237.162.0/23 44135 -91.237.168.0/23 35493 -91.237.170.0/24 35493 -91.237.171.0/24 58035 -91.237.172.0/23 198430 -91.237.175.0/24 134390 -91.237.176.0/24 198628 -91.237.178.0/24 58008 -91.237.179.0/24 61436 -91.237.180.0/23 34665 -91.237.182.0/23 58000 -91.237.184.0/24 58004 -91.237.185.0/24 16353 -91.237.186.0/23 58086 -91.237.188.0/23 59687 -91.237.190.0/24 198637 -91.237.191.0/24 29468 -91.237.192.0/24 197607 -91.237.193.0/24 203464 -91.237.196.0/24 29251 -91.237.197.0/24 47638 -91.237.199.0/24 198645 -91.237.200.0/22 52040 -91.237.204.0/22 9213 -91.237.208.0/24 207881 -91.237.209.0/24 56676 -91.237.210.0/23 199379 -91.237.212.0/24 197744 -91.237.213.0/24 58009 -91.237.214.0/24 198956 -91.237.215.0/24 207881 -91.237.216.0/23 12861 -91.237.219.0/24 39507 -91.237.220.0/22 51655 -91.237.224.0/22 39507 -91.237.228.0/23 39507 -91.237.230.0/24 44755 -91.237.231.0/24 44008 -91.237.232.0/22 44628 -91.237.236.0/22 198657 -91.237.240.0/23 3255 -91.237.242.0/24 3255 -91.237.243.0/24 58021 -91.237.244.0/22 50392 -91.237.248.0/24 58023 -91.237.249.0/24 49335 -91.237.250.0/24 30860 -91.237.252.0/23 198670 -91.237.254.0/23 202391 -91.238.0.0/24 202391 -91.238.1.0/24 207881 -91.238.2.0/23 58031 -91.238.5.0/24 58032 -91.238.6.0/23 198649 -91.238.8.0/24 198648 -91.238.9.0/24 31158 -91.238.10.0/23 58072 -91.238.12.0/22 49560 -91.238.16.0/23 31158 -91.238.18.0/24 207881 -91.238.19.0/24 198650 -91.238.20.0/23 209672 -91.238.22.0/24 198701 -91.238.23.0/24 44921 -91.238.24.0/22 58048 -91.238.28.0/23 52008 -91.238.30.0/23 199777 -91.238.32.0/24 199777 -91.238.33.0/24 49367 -91.238.34.0/23 60510 -91.238.37.0/24 43224 -91.238.38.0/23 60912 -91.238.40.0/22 199429 -91.238.44.0/22 39264 -91.238.48.0/23 198675 -91.238.51.0/24 50572 -91.238.52.0/22 3169 -91.238.56.0/22 52106 -91.238.60.0/24 6830 -91.238.61.0/24 31042 -91.238.64.0/22 57803 -91.238.68.0/23 57803 -91.238.70.0/24 13213 -91.238.72.0/23 61236 -91.238.74.0/23 198669 -91.238.76.0/23 198695 -91.238.78.0/24 58077 -91.238.79.0/24 206766 -91.238.80.0/23 44014 -91.238.82.0/24 62240 -91.238.83.0/24 49367 -91.238.84.0/24 49367 -91.238.85.0/24 203422 -91.238.86.0/23 56829 -91.238.88.0/22 56621 -91.238.94.0/23 57776 -91.238.96.0/22 34665 -91.238.100.0/24 20860 -91.238.101.0/24 8870 -91.238.103.0/24 58066 -91.238.104.0/23 50321 -91.238.106.0/24 34909 -91.238.108.0/23 57363 -91.238.110.0/24 57363 -91.238.112.0/24 49367 -91.238.115.0/24 198693 -91.238.116.0/22 198721 -91.238.120.0/23 198712 -91.238.122.0/24 198677 -91.238.125.0/24 198674 -91.238.126.0/24 57337 -91.238.127.0/24 58094 -91.238.128.0/23 198683 -91.238.130.0/24 50468 -91.238.132.0/24 198684 -91.238.133.0/24 50245 -91.238.134.0/23 59491 -91.238.136.0/22 21127 -91.238.140.0/24 198688 -91.238.141.0/24 58083 -91.238.142.0/23 51619 -91.238.144.0/24 13030 -91.238.145.0/24 198704 -91.238.148.0/23 208913 -91.238.150.0/23 20900 -91.238.152.0/23 198676 -91.238.154.0/23 198692 -91.238.156.0/22 50060 -91.238.160.0/22 12703 -91.238.164.0/23 12703 -91.238.166.0/23 60195 -91.238.168.0/22 43273 -91.238.172.0/22 206314 -91.238.176.0/23 31477 -91.238.178.0/23 199857 -91.238.180.0/23 12586 -91.238.182.0/23 58090 -91.238.186.0/23 200826 -91.238.188.0/22 50707 -91.238.192.0/22 3202 -91.238.196.0/23 24916 -91.238.198.0/24 24916 -91.238.199.0/24 198765 -91.238.200.0/23 198052 -91.238.202.0/24 198449 -91.238.203.0/24 42960 -91.238.204.0/23 56593 -91.238.206.0/24 31027 -91.238.208.0/23 58102 -91.238.210.0/23 49880 -91.238.212.0/24 49930 -91.238.214.0/23 62217 -91.238.216.0/24 3165 -91.238.218.0/24 56744 -91.238.221.0/24 25160 -91.238.222.0/23 50916 -91.238.224.0/24 34665 -91.238.225.0/24 3201 -91.238.226.0/24 3173 -91.238.227.0/24 48219 -91.238.228.0/22 58042 -91.238.236.0/24 58010 -91.238.238.0/23 29383 -91.238.240.0/22 206314 -91.238.244.0/23 47379 -91.238.246.0/23 35323 -91.238.248.0/24 47486 -91.238.249.0/24 34665 -91.238.251.0/24 199898 -91.238.252.0/23 3179 -91.238.254.0/24 198746 -91.238.255.0/24 198744 -91.239.4.0/24 58178 -91.239.5.0/24 58135 -91.239.6.0/23 43142 -91.239.8.0/22 58118 -91.239.12.0/24 59563 -91.239.13.0/24 198771 -91.239.14.0/24 58125 -91.239.16.0/22 50716 -91.239.20.0/24 199090 -91.239.21.0/24 41074 -91.239.22.0/24 34665 -91.239.23.0/24 198980 -91.239.25.0/24 13069 -91.239.26.0/23 199274 -91.239.28.0/22 198430 -91.239.32.0/23 58138 -91.239.34.0/23 58129 -91.239.36.0/24 50584 -91.239.38.0/23 206082 -91.239.40.0/23 58136 -91.239.42.0/24 51028 -91.239.43.0/24 51167 -91.239.44.0/23 56977 -91.239.46.0/24 58148 -91.239.47.0/24 198790 -91.239.48.0/22 25143 -91.239.52.0/24 198808 -91.239.53.0/24 205216 -91.239.60.0/24 58147 -91.239.61.0/24 198782 -91.239.63.0/24 12714 -91.239.66.0/23 198414 -91.239.68.0/22 41929 -91.239.72.0/24 59717 -91.239.73.0/24 12703 -91.239.74.0/24 59585 -91.239.76.0/22 58164 -91.239.80.0/22 58221 -91.239.84.0/24 58149 -91.239.87.0/24 58226 -91.239.88.0/23 58225 -91.239.90.0/24 198788 -91.239.91.0/24 198801 -91.239.92.0/23 196954 -91.239.94.0/24 58163 -91.239.95.0/24 58162 -91.239.96.0/23 198644 -91.239.98.0/23 198806 -91.239.100.0/24 198794 -91.239.101.0/24 58172 -91.239.102.0/23 58190 -91.239.104.0/22 50161 -91.239.112.0/24 198826 -91.239.113.0/24 60466 -91.239.114.0/23 60466 -91.239.121.0/24 198809 -91.239.122.0/24 31027 -91.239.123.0/24 58174 -91.239.124.0/23 51159 -91.239.126.0/24 58284 -91.239.128.0/24 58170 -91.239.129.0/24 60418 -91.239.131.0/24 58228 -91.239.132.0/22 28917 -91.239.136.0/22 35213 -91.239.140.0/22 58219 -91.239.144.0/24 198811 -91.239.147.0/24 198812 -91.239.150.0/24 58184 -91.239.151.0/24 58179 -91.239.152.0/22 198984 -91.239.156.0/24 201226 -91.239.158.0/23 58187 -91.239.160.0/22 58196 -91.239.164.0/22 51474 -91.239.168.0/22 59556 -91.239.172.0/24 197728 -91.239.173.0/24 58195 -91.239.174.0/23 49784 -91.239.176.0/24 58194 -91.239.177.0/24 208868 -91.239.179.0/24 203320 -91.239.180.0/22 198927 -91.239.184.0/24 198832 -91.239.185.0/24 198881 -91.239.186.0/24 15830 -91.239.188.0/23 48871 -91.239.191.0/24 58241 -91.239.193.0/24 198827 -91.239.194.0/24 58204 -91.239.195.0/24 198858 -91.239.196.0/22 198317 -91.239.200.0/22 43541 -91.239.204.0/24 15924 -91.239.205.0/24 198835 -91.239.206.0/23 47810 -91.239.212.0/23 58209 -91.239.215.0/24 60472 -91.239.216.0/23 198840 -91.239.220.0/22 203464 -91.239.224.0/23 203320 -91.239.226.0/24 200443 -91.239.227.0/24 14576 -91.239.228.0/23 58258 -91.239.230.0/24 6718 -91.239.231.0/24 197458 -91.239.232.0/22 196645 -91.239.236.0/23 58239 -91.239.238.0/24 62088 -91.239.239.0/24 58240 -91.239.240.0/24 34224 -91.239.241.0/24 198845 -91.239.242.0/24 199038 -91.239.243.0/24 198841 -91.239.244.0/22 51394 -91.239.248.0/22 198948 -91.239.252.0/23 58298 -91.239.254.0/24 198851 -91.239.255.0/24 199544 -91.240.1.0/24 50659 -91.240.2.0/23 198863 -91.240.4.0/24 60509 -91.240.5.0/24 57176 -91.240.6.0/23 58266 -91.240.8.0/24 21299 -91.240.9.0/24 35566 -91.240.10.0/23 21299 -91.240.12.0/22 58254 -91.240.16.0/24 198873 -91.240.17.0/24 201126 -91.240.18.0/23 198925 -91.240.20.0/23 59939 -91.240.24.0/24 57377 -91.240.25.0/24 198877 -91.240.27.0/24 198876 -91.240.28.0/22 198880 -91.240.33.0/24 49392 -91.240.34.0/24 199012 -91.240.36.0/24 58278 -91.240.37.0/24 8363 -91.240.38.0/23 58292 -91.240.40.0/22 31716 -91.240.44.0/24 198888 -91.240.45.0/24 58290 -91.240.48.0/22 51950 -91.240.52.0/22 197663 -91.240.56.0/22 3352 -91.240.60.0/22 57474 -91.240.64.0/22 197595 -91.240.68.0/24 42832 -91.240.69.0/24 58281 -91.240.70.0/24 198915 -91.240.71.0/24 49392 -91.240.72.0/24 2830 -91.240.73.0/24 58283 -91.240.74.0/23 199214 -91.240.76.0/24 198897 -91.240.77.0/24 15945 -91.240.78.0/23 20900 -91.240.80.0/22 39402 -91.240.84.0/22 29182 -91.240.88.0/24 198901 -91.240.89.0/24 12679 -91.240.90.0/23 198899 -91.240.93.0/24 198900 -91.240.94.0/24 198914 -91.240.95.0/24 198907 -91.240.96.0/22 58297 -91.240.100.0/23 198910 -91.240.102.0/23 203997 -91.240.104.0/24 198905 -91.240.106.0/23 43073 -91.240.108.0/24 58295 -91.240.109.0/24 30781 -91.240.110.0/23 58301 -91.240.112.0/23 59533 -91.240.114.0/23 198918 -91.240.120.0/22 59424 -91.240.124.0/22 200442 -91.240.128.0/24 12679 -91.240.129.0/24 58234 -91.240.130.0/24 198975 -91.240.131.0/24 198611 -91.240.132.0/22 198518 -91.240.136.0/22 198975 -91.240.140.0/22 59461 -91.240.144.0/24 58341 -91.240.145.0/24 59468 -91.240.146.0/23 198949 -91.240.148.0/24 59394 -91.240.149.0/24 200826 -91.240.150.0/23 200826 -91.240.152.0/23 12741 -91.240.154.0/24 203464 -91.240.155.0/24 198955 -91.240.156.0/22 200443 -91.240.160.0/23 58346 -91.240.162.0/24 59420 -91.240.163.0/24 12679 -91.240.164.0/24 38938 -91.240.166.0/23 198949 -91.240.168.0/23 57363 -91.240.170.0/24 57363 -91.240.172.0/24 198705 -91.240.173.0/24 15450 -91.240.174.0/24 56595 -91.240.175.0/24 12679 -91.240.176.0/24 20712 -91.240.177.0/24 29171 -91.240.178.0/24 59439 -91.240.179.0/24 199014 -91.240.180.0/22 43487 -91.240.184.0/24 59400 -91.240.185.0/24 42525 -91.240.186.0/23 42525 -91.240.188.0/24 59401 -91.240.189.0/24 42525 -91.240.190.0/23 51937 -91.240.192.0/24 8220 -91.240.193.0/24 198995 -91.240.194.0/24 43948 -91.240.195.0/24 44654 -91.240.196.0/22 198995 -91.240.200.0/23 25418 -91.240.204.0/23 44654 -91.240.206.0/24 44654 -91.240.208.0/22 199020 -91.240.214.0/23 44567 -91.240.216.0/24 48894 -91.240.217.0/24 198996 -91.240.218.0/24 198981 -91.240.220.0/24 59416 -91.240.221.0/24 31727 -91.240.222.0/24 59465 -91.240.223.0/24 198982 -91.240.224.0/24 16089 -91.240.226.0/23 59619 -91.240.228.0/24 59417 -91.240.229.0/24 20712 -91.240.234.0/23 198986 -91.240.236.0/23 59421 -91.240.238.0/23 197790 -91.240.240.0/24 60805 -91.240.241.0/24 199117 -91.240.242.0/24 34665 -91.240.244.0/24 198987 -91.240.246.0/23 29345 -91.240.248.0/22 50349 -91.240.252.0/23 59586 -91.240.254.0/24 198998 -91.241.0.0/23 2856 -91.241.2.0/24 198992 -91.241.3.0/24 199016 -91.241.5.0/24 2115 -91.241.6.0/23 8315 -91.241.8.0/22 35236 -91.241.12.0/23 59459 -91.241.14.0/23 44567 -91.241.19.0/24 57678 -91.241.20.0/23 59442 -91.241.22.0/24 199010 -91.241.23.0/24 34911 -91.241.24.0/22 206314 -91.241.28.0/24 198664 -91.241.29.0/24 33915 -91.241.31.0/24 199005 -91.241.32.0/22 59460 -91.241.36.0/22 199005 -91.241.40.0/23 199005 -91.241.42.0/24 2830 -91.241.43.0/24 199007 -91.241.44.0/24 12586 -91.241.45.0/24 59452 -91.241.46.0/23 34665 -91.241.48.0/22 56582 -91.241.53.0/24 207004 -91.241.56.0/24 199165 -91.241.57.0/24 15557 -91.241.58.0/24 199022 -91.241.59.0/24 59454 -91.241.60.0/22 48505 -91.241.64.0/22 199029 -91.241.68.0/23 48226 -91.241.70.0/24 39545 -91.241.71.0/24 199013 -91.241.72.0/22 48173 -91.241.76.0/23 199649 -91.241.78.0/24 31742 -91.241.79.0/24 4589 -91.241.80.0/22 42702 -91.241.84.0/23 59495 -91.241.86.0/23 31617 -91.241.88.0/24 50358 -91.241.91.0/24 50358 -91.241.92.0/24 16320 -91.241.94.0/23 49582 -91.241.96.0/19 47800 -91.241.128.0/19 43400 -91.241.160.0/22 51511 -91.241.164.0/24 9009 -91.241.165.0/24 51511 -91.241.166.0/24 203781 -91.241.167.0/24 51511 -91.241.168.0/21 51248 -91.241.176.0/22 44352 -91.241.184.0/21 51511 -91.241.192.0/23 59478 -91.241.194.0/24 50780 -91.241.195.0/24 59478 -91.241.196.0/22 59478 -91.241.200.0/21 59478 -91.241.208.0/20 59478 -91.241.224.0/19 59478 -91.242.0.0/19 59523 -91.242.32.0/21 56864 -91.242.40.0/22 12714 -91.242.44.0/23 59526 -91.242.46.0/23 41496 -91.242.48.0/22 51474 -91.242.52.0/22 50751 -91.242.56.0/21 199113 -91.242.64.0/22 57916 -91.242.68.0/23 207238 -91.242.70.0/23 202960 -91.242.72.0/23 202965 -91.242.74.0/24 51246 -91.242.75.0/24 202960 -91.242.76.0/23 207246 -91.242.78.0/23 43094 -91.242.80.0/24 202722 -91.242.81.0/24 207177 -91.242.82.0/23 202943 -91.242.84.0/23 43094 -91.242.86.0/23 62281 -91.242.88.0/21 62281 -91.242.96.0/24 62281 -91.242.97.0/24 57916 -91.242.98.0/24 207246 -91.242.99.0/24 202722 -91.242.100.0/23 57916 -91.242.102.0/24 207238 -91.242.103.0/24 51246 -91.242.104.0/24 207246 -91.242.105.0/24 57916 -91.242.106.0/23 202722 -91.242.108.0/22 43094 -91.242.112.0/20 35346 -91.242.128.0/21 48305 -91.242.136.0/21 48427 -91.242.144.0/22 47380 -91.242.148.0/22 34471 -91.242.152.0/21 15704 -91.242.160.0/24 59524 -91.242.161.0/24 51288 -91.242.162.0/24 199064 -91.242.163.0/24 61335 -91.242.164.0/22 57781 -91.242.168.0/23 199119 -91.242.170.0/23 199070 -91.242.172.0/24 20712 -91.242.173.0/24 62359 -91.242.174.0/23 199069 -91.242.176.0/20 56969 -91.242.192.0/23 50401 -91.242.194.0/24 50401 -91.242.196.0/22 50401 -91.242.200.0/21 49788 -91.242.208.0/22 59531 -91.242.213.0/24 42322 -91.242.214.0/23 201011 -91.242.216.0/24 58126 -91.242.218.0/24 199147 -91.242.220.0/23 199076 -91.242.222.0/24 198179 -91.242.223.0/24 198761 -91.243.0.0/19 47800 -91.243.32.0/22 34665 -91.243.36.0/22 39047 -91.243.40.0/24 35277 -91.243.41.0/24 209813 -91.243.42.0/24 209813 -91.243.43.0/24 35277 -91.243.44.0/22 50673 -91.243.48.0/20 34665 -91.243.64.0/23 198761 -91.243.66.0/23 198091 -91.243.68.0/24 59571 -91.243.69.0/24 29695 -91.243.70.0/24 8365 -91.243.72.0/23 17012 -91.243.74.0/23 15463 -91.243.76.0/23 199074 -91.243.78.0/23 1764 -91.243.80.0/23 62088 -91.243.82.0/24 62088 -91.243.83.0/24 200019 -91.243.84.0/22 34665 -91.243.88.0/24 31133 -91.243.89.0/24 46844 -91.243.90.0/23 200557 -91.243.92.0/24 46844 -91.243.93.0/24 200557 -91.243.94.0/24 46844 -91.243.95.0/24 31133 -91.243.96.0/20 61360 -91.243.112.0/23 50466 -91.243.114.0/24 3549 -91.243.116.0/23 39134 -91.243.122.0/24 59548 -91.243.124.0/23 197998 -91.243.126.0/23 59553 -91.243.128.0/19 12479 -91.243.160.0/20 59573 -91.243.176.0/22 207046 -91.243.180.0/22 49223 -91.243.188.0/24 206766 -91.243.189.0/24 12722 -91.243.190.0/24 35913 -91.243.191.0/24 206485 -91.243.192.0/19 59567 -91.243.224.0/19 47531 -91.244.0.0/18 25133 -91.244.64.0/22 50092 -91.244.68.0/24 47480 -91.244.69.0/24 59593 -91.244.70.0/23 43962 -91.244.72.0/21 49749 -91.244.80.0/20 197831 -91.244.96.0/20 21299 -91.244.112.0/22 21365 -91.244.116.0/24 15924 -91.244.117.0/24 3549 -91.244.118.0/23 44798 -91.244.120.0/22 58224 -91.244.124.0/24 59636 -91.244.125.0/24 15404 -91.244.126.0/24 12703 -91.244.127.0/24 199127 -91.244.128.0/20 44798 -91.244.152.0/21 44798 -91.244.160.0/21 31503 -91.244.168.0/21 59600 -91.244.176.0/22 59600 -91.244.180.0/24 199121 -91.244.181.0/24 42831 -91.244.183.0/24 59604 -91.244.184.0/21 59607 -91.244.192.0/22 203416 -91.244.196.0/22 18013 -91.244.200.0/22 203058 -91.244.204.0/22 12679 -91.244.208.0/20 59607 -91.244.225.0/24 50599 -91.244.227.0/24 60847 -91.244.229.0/24 199131 -91.244.230.0/23 197375 -91.244.232.0/22 197175 -91.244.236.0/23 25160 -91.244.238.0/24 199125 -91.244.239.0/24 20712 -91.244.248.0/22 51683 -91.244.252.0/22 31566 -91.245.0.0/22 50398 -91.245.4.0/23 50398 -91.245.7.0/24 197284 -91.245.8.0/21 6830 -91.245.24.0/21 59479 -91.245.32.0/24 28825 -91.245.33.0/24 197394 -91.245.34.0/23 197394 -91.245.36.0/22 197394 -91.245.40.0/21 197394 -91.245.48.0/21 197394 -91.245.56.0/22 197394 -91.245.60.0/22 198122 -91.245.64.0/21 197315 -91.245.72.0/21 49824 -91.245.80.0/21 59611 -91.245.88.0/22 199429 -91.245.92.0/22 200443 -91.245.96.0/19 43258 -91.245.128.0/19 47914 -91.245.176.0/20 203464 -91.245.192.0/24 39251 -91.245.193.0/24 199638 -91.245.194.0/24 199663 -91.245.195.0/24 199141 -91.245.196.0/22 21299 -91.245.200.0/21 202147 -91.245.208.0/24 41131 -91.245.209.0/24 204699 -91.245.210.0/23 59614 -91.245.213.0/24 59618 -91.245.214.0/24 13004 -91.245.215.0/24 199144 -91.245.216.0/23 210176 -91.245.218.0/24 20860 -91.245.219.0/24 199149 -91.245.222.0/24 198686 -91.245.223.0/24 30891 -91.245.224.0/23 9002 -91.245.226.0/24 9002 -91.245.227.0/24 48347 -91.245.228.0/22 209596 -91.245.232.0/24 39342 -91.245.233.0/24 52223 -91.245.234.0/24 34060 -91.245.236.0/24 393559 -91.245.238.0/24 393559 -91.245.240.0/22 44858 -91.245.244.0/22 201000 -91.245.248.0/22 9051 -91.245.252.0/22 60233 -91.246.0.0/22 59616 -91.246.4.0/22 197035 -91.246.8.0/23 20860 -91.246.12.0/24 51196 -91.246.14.0/24 199526 -91.246.15.0/24 199151 -91.246.16.0/21 43670 -91.246.24.0/24 198778 -91.246.25.0/24 199153 -91.246.26.0/23 47622 -91.246.28.0/23 42214 -91.246.30.0/23 199582 -91.246.32.0/19 39906 -91.246.64.0/21 42673 -91.246.72.0/22 42673 -91.246.76.0/22 59990 -91.246.80.0/20 50473 -91.246.104.0/21 48956 -91.246.112.0/20 50498 -91.246.128.0/19 6712 -91.246.168.0/22 198430 -91.246.172.0/22 208615 -91.246.176.0/21 48976 -91.246.184.0/21 208615 -91.246.192.0/21 200443 -91.246.200.0/24 48976 -91.246.202.0/24 60272 -91.246.203.0/24 200443 -91.246.204.0/22 209767 -91.246.208.0/21 198133 -91.246.216.0/23 60912 -91.246.218.0/24 59648 -91.246.219.0/24 199049 -91.246.220.0/22 197726 -91.246.224.0/19 34779 -91.247.0.0/19 47914 -91.247.32.0/22 61396 -91.247.36.0/23 59729 -91.247.39.0/24 209221 -91.247.40.0/21 209709 -91.247.48.0/22 209709 -91.247.52.0/22 25019 -91.247.56.0/21 41329 -91.247.66.0/23 51235 -91.247.68.0/22 48470 -91.247.72.0/24 51347 -91.247.74.0/24 29695 -91.247.75.0/24 199167 -91.247.78.0/24 26646 -91.247.80.0/20 49389 -91.247.96.0/20 6789 -91.247.112.0/21 51522 -91.247.120.0/23 210078 -91.247.122.0/24 210078 -91.247.123.0/24 6789 -91.247.124.0/22 6789 -91.247.128.0/20 47342 -91.247.144.0/23 25504 -91.247.147.0/24 6830 -91.247.148.0/22 57583 -91.247.152.0/21 41616 -91.247.192.0/20 200066 -91.247.208.0/21 49701 -91.247.216.0/22 49701 -91.247.220.0/24 60472 -91.247.221.0/24 196741 -91.247.222.0/23 59641 -91.247.224.0/22 44664 -91.247.228.0/22 50304 -91.247.232.0/21 59637 -91.247.240.0/21 200826 -91.247.248.0/22 29588 -91.247.252.0/24 198865 -91.247.253.0/24 206123 -91.247.254.0/24 199179 -91.247.255.0/24 59663 -91.248.0.0/15 9145 -91.250.0.0/18 6712 -91.250.64.0/21 20773 -91.250.72.0/21 61157 -91.250.80.0/21 8972 -91.250.88.0/22 8972 -91.250.92.0/22 61157 -91.250.96.0/21 8972 -91.250.104.0/22 61157 -91.250.112.0/21 8972 -91.250.128.0/18 12479 -91.250.192.0/19 1653 -91.250.224.0/20 58224 -91.250.240.0/24 6718 -91.250.241.0/24 201748 -91.250.242.0/24 6718 -91.250.243.0/24 20853 -91.250.244.0/24 209706 -91.250.245.0/24 62232 -91.250.246.0/24 62315 -91.250.247.0/24 48881 -91.250.248.0/23 64417 -91.250.250.0/23 61179 -91.250.252.0/24 61243 -91.250.253.0/24 59694 -91.250.254.0/23 39737 -91.251.0.0/16 197207 -91.252.0.0/14 24608 -92.0.0.0/11 13285 -92.32.0.0/14 2119 -92.36.0.0/17 12958 -92.36.128.0/17 9146 -92.37.0.0/17 8591 -92.37.128.0/17 12389 -92.38.0.0/23 59475 -92.38.2.0/24 62065 -92.38.3.0/24 62069 -92.38.4.0/24 209926 -92.38.5.0/24 209369 -92.38.6.0/23 62083 -92.38.8.0/21 24758 -92.38.16.0/22 41712 -92.38.20.0/23 43724 -92.38.22.0/23 197520 -92.38.24.0/22 43533 -92.38.28.0/22 56580 -92.38.32.0/24 62314 -92.38.33.0/24 61390 -92.38.34.0/24 61312 -92.38.35.0/24 62036 -92.38.36.0/23 56580 -92.38.38.0/23 50245 -92.38.40.0/24 62028 -92.38.41.0/24 44546 -92.38.42.0/24 31133 -92.38.43.0/24 62006 -92.38.44.0/22 61979 -92.38.48.0/22 8854 -92.38.52.0/22 43533 -92.38.56.0/21 49711 -92.38.64.0/20 42772 -92.38.80.0/22 31133 -92.38.84.0/23 44546 -92.38.86.0/23 59734 -92.38.88.0/23 61406 -92.38.90.0/23 198056 -92.38.92.0/24 209954 -92.38.93.0/24 209922 -92.38.94.0/24 44546 -92.38.95.0/24 62314 -92.38.96.0/19 200702 -92.38.128.0/20 199524 -92.38.144.0/22 199524 -92.38.148.0/23 202422 -92.38.150.0/23 199524 -92.38.152.0/23 199524 -92.38.154.0/23 202422 -92.38.156.0/23 199524 -92.38.158.0/24 205455 -92.38.159.0/24 199524 -92.38.160.0/21 199524 -92.38.168.0/23 199524 -92.38.170.0/24 199524 -92.38.171.0/24 202422 -92.38.172.0/24 199524 -92.38.173.0/24 202422 -92.38.174.0/24 199524 -92.38.176.0/23 202422 -92.38.178.0/24 199524 -92.38.179.0/24 202422 -92.38.180.0/24 202422 -92.38.182.0/23 199524 -92.38.184.0/23 199524 -92.38.186.0/23 202422 -92.38.188.0/22 199524 -92.38.192.0/20 12695 -92.38.208.0/22 21769 -92.38.212.0/22 12695 -92.38.216.0/21 12695 -92.38.224.0/19 12695 -92.39.0.0/20 25176 -92.39.16.0/20 198967 -92.39.32.0/20 34244 -92.39.48.0/20 204467 -92.39.64.0/20 44677 -92.39.80.0/21 44725 -92.39.88.0/22 34170 -92.39.92.0/22 44725 -92.39.96.0/21 39707 -92.39.104.0/21 39442 -92.39.112.0/20 27822 -92.39.128.0/21 8595 -92.39.136.0/21 56420 -92.39.144.0/22 44741 -92.39.148.0/24 44741 -92.39.149.0/24 199348 -92.39.150.0/24 199348 -92.39.151.0/24 44741 -92.39.152.0/21 44741 -92.39.160.0/20 50920 -92.39.176.0/20 31122 -92.39.192.0/20 13122 -92.39.208.0/20 39001 -92.39.224.0/20 20807 -92.39.240.0/20 35393 -92.40.0.0/18 60339 -92.40.64.0/18 206067 -92.40.128.0/19 206067 -92.40.160.0/21 60339 -92.40.168.0/21 206067 -92.40.176.0/20 206067 -92.40.192.0/19 206067 -92.40.224.0/19 60339 -92.41.0.0/18 206067 -92.41.64.0/18 60339 -92.41.128.0/20 60339 -92.41.144.0/21 206067 -92.41.152.0/21 60339 -92.41.160.0/20 60339 -92.41.176.0/20 206067 -92.41.192.0/20 60339 -92.41.208.0/20 206067 -92.41.224.0/20 206067 -92.41.240.0/20 60339 -92.42.8.0/22 44963 -92.42.12.0/23 44963 -92.42.14.0/23 49505 -92.42.16.0/22 39912 -92.42.24.0/21 5495 -92.42.32.0/21 49467 -92.42.40.0/22 196638 -92.42.44.0/22 197071 -92.42.48.0/21 44244 -92.42.56.0/21 44442 -92.42.64.0/21 44764 -92.42.72.0/21 34946 -92.42.80.0/22 42176 -92.42.84.0/23 42176 -92.42.86.0/24 42176 -92.42.88.0/21 12714 -92.42.96.0/21 5396 -92.42.104.0/21 29066 -92.42.112.0/21 21021 -92.42.120.0/21 44611 -92.42.128.0/21 44276 -92.42.136.0/21 47692 -92.42.144.0/21 42973 -92.42.152.0/21 31644 -92.42.160.0/21 35527 -92.42.168.0/21 44292 -92.42.176.0/21 44295 -92.42.184.0/21 29691 -92.42.192.0/21 44298 -92.42.200.0/21 49533 -92.42.208.0/21 8595 -92.42.216.0/21 33835 -92.42.224.0/21 44355 -92.42.232.0/21 51062 -92.42.240.0/23 48052 -92.42.248.0/21 9125 -92.43.0.0/21 39256 -92.43.14.0/23 35542 -92.43.16.0/21 198047 -92.43.24.0/21 47949 -92.43.32.0/21 1257 -92.43.40.0/22 44366 -92.43.48.0/23 42699 -92.43.50.0/23 60664 -92.43.52.0/22 42699 -92.43.56.0/21 44424 -92.43.64.0/21 44369 -92.43.72.0/21 42789 -92.43.80.0/22 25133 -92.43.84.0/22 34230 -92.43.92.0/23 9120 -92.43.94.0/24 9120 -92.43.96.0/21 49322 -92.43.104.0/21 201011 -92.43.112.0/21 31229 -92.43.120.0/21 44398 -92.43.128.0/21 8487 -92.43.136.0/21 44395 -92.43.144.0/21 47128 -92.43.152.0/23 199945 -92.43.154.0/24 199945 -92.43.155.0/24 44913 -92.43.156.0/22 199945 -92.43.160.0/22 58224 -92.43.164.0/23 25455 -92.43.166.0/23 62340 -92.43.170.0/23 29684 -92.43.172.0/24 29684 -92.43.176.0/21 3292 -92.43.184.0/21 28832 -92.43.192.0/21 44644 -92.43.200.0/21 5588 -92.43.208.0/21 8681 -92.43.216.0/21 25563 -92.43.224.0/21 44431 -92.43.232.0/21 44433 -92.43.240.0/21 44513 -92.43.248.0/21 16128 -92.44.0.0/19 34984 -92.44.32.0/21 34984 -92.44.40.0/22 34984 -92.44.44.0/23 34984 -92.44.46.0/24 34984 -92.44.48.0/21 34984 -92.44.57.0/24 34984 -92.44.59.0/24 34984 -92.44.60.0/22 34984 -92.44.64.0/22 34984 -92.44.68.0/23 34984 -92.44.71.0/24 34984 -92.44.72.0/21 34984 -92.44.80.0/20 34984 -92.44.97.0/24 34984 -92.44.99.0/24 34984 -92.44.100.0/22 34984 -92.44.104.0/21 34984 -92.44.112.0/20 34984 -92.44.128.0/17 34984 -92.45.1.0/24 44766 -92.45.3.0/24 51206 -92.45.4.0/22 34984 -92.45.8.0/21 34984 -92.45.16.0/20 34984 -92.45.32.0/22 34984 -92.45.36.0/23 34984 -92.45.39.0/24 34984 -92.45.40.0/21 34984 -92.45.48.0/21 34984 -92.45.56.0/23 34984 -92.45.59.0/24 34984 -92.45.60.0/22 34984 -92.45.64.0/23 34984 -92.45.66.0/24 51575 -92.45.67.0/24 34984 -92.45.69.0/24 34984 -92.45.71.0/24 34984 -92.45.72.0/24 43391 -92.45.73.0/24 34984 -92.45.75.0/24 34984 -92.45.78.0/23 34984 -92.45.80.0/23 34984 -92.45.82.0/24 34984 -92.45.84.0/22 34984 -92.45.88.0/23 34984 -92.45.90.0/24 34984 -92.45.93.0/24 34984 -92.45.94.0/23 34984 -92.45.96.0/23 34984 -92.45.99.0/24 34984 -92.45.100.0/24 44558 -92.45.103.0/24 34984 -92.45.104.0/22 34984 -92.45.108.0/23 34984 -92.45.110.0/24 34984 -92.45.112.0/22 34984 -92.45.116.0/23 34984 -92.45.120.0/23 34984 -92.45.123.0/24 34984 -92.45.124.0/22 34984 -92.45.128.0/18 34984 -92.45.192.0/19 34984 -92.45.224.0/20 34984 -92.45.240.0/21 34984 -92.45.248.0/24 34984 -92.45.250.0/23 34984 -92.45.252.0/23 34984 -92.45.255.0/24 34984 -92.46.0.0/15 9198 -92.48.0.0/18 35819 -92.48.64.0/18 29550 -92.48.128.0/18 5432 -92.48.192.0/18 20495 -92.49.0.0/18 44483 -92.49.64.0/18 20776 -92.49.128.0/18 12389 -92.49.192.0/18 21299 -92.50.0.0/21 44285 -92.50.16.0/20 44285 -92.50.32.0/21 44285 -92.50.40.0/22 44285 -92.50.44.0/23 44285 -92.50.46.0/24 44285 -92.50.47.0/24 59754 -92.50.48.0/21 44285 -92.50.56.0/22 44285 -92.50.60.0/23 58053 -92.50.62.0/23 44285 -92.50.64.0/18 6830 -92.50.128.0/18 24955 -92.50.192.0/19 12389 -92.50.224.0/20 12389 -92.50.240.0/22 12389 -92.50.244.0/23 12389 -92.50.246.0/24 204304 -92.50.247.0/24 12389 -92.50.248.0/21 12389 -92.51.0.0/22 198816 -92.51.4.0/22 6789 -92.51.20.0/22 6789 -92.51.24.0/24 200613 -92.51.25.0/24 57842 -92.51.26.0/23 60856 -92.51.28.0/22 6789 -92.51.32.0/20 6789 -92.51.48.0/21 9009 -92.51.56.0/21 49560 -92.51.64.0/18 44327 -92.51.128.0/20 8972 -92.51.144.0/21 8972 -92.51.152.0/21 61157 -92.51.160.0/21 8972 -92.51.168.0/23 61157 -92.51.170.0/24 20773 -92.51.171.0/24 61157 -92.51.172.0/22 61157 -92.51.176.0/22 61157 -92.51.180.0/22 20773 -92.51.184.0/21 61157 -92.51.192.0/18 31122 -92.52.0.0/18 15962 -92.52.64.0/18 15395 -92.52.128.0/18 202103 -92.52.192.0/21 47169 -92.52.200.0/22 47169 -92.52.204.0/22 204168 -92.52.208.0/24 47169 -92.52.209.0/24 42864 -92.52.210.0/23 42864 -92.52.212.0/22 42864 -92.52.216.0/22 42864 -92.52.220.0/24 202243 -92.52.221.0/24 29657 -92.52.222.0/24 207107 -92.52.223.0/24 197248 -92.52.224.0/19 20845 -92.53.8.0/21 43612 -92.53.16.0/20 43612 -92.53.32.0/21 43612 -92.53.44.0/22 43612 -92.53.48.0/20 43612 -92.53.64.0/23 49505 -92.53.66.0/24 49505 -92.53.67.0/24 50340 -92.53.68.0/24 49505 -92.53.69.0/24 50340 -92.53.70.0/24 50340 -92.53.71.0/24 49505 -92.53.72.0/24 49505 -92.53.73.0/24 50340 -92.53.74.0/23 49505 -92.53.76.0/23 49505 -92.53.78.0/24 50340 -92.53.79.0/24 49505 -92.53.80.0/23 50340 -92.53.82.0/23 49505 -92.53.84.0/23 50340 -92.53.86.0/24 49505 -92.53.87.0/24 50340 -92.53.88.0/24 50340 -92.53.89.0/24 49505 -92.53.90.0/24 49505 -92.53.91.0/24 50340 -92.53.92.0/22 49505 -92.53.96.0/22 9123 -92.53.100.0/22 49505 -92.53.104.0/22 9123 -92.53.108.0/23 50340 -92.53.110.0/24 50340 -92.53.111.0/24 49505 -92.53.112.0/20 9123 -92.53.128.0/18 44647 -92.53.192.0/19 12334 -92.53.224.0/21 44053 -92.53.232.0/21 198549 -92.53.240.0/22 203315 -92.53.244.0/24 203315 -92.54.0.0/18 8426 -92.54.64.0/20 35154 -92.54.80.0/23 35154 -92.54.82.0/24 35154 -92.54.83.0/24 12389 -92.54.84.0/22 35154 -92.54.88.0/23 35154 -92.54.90.0/24 12389 -92.54.91.0/24 35154 -92.54.92.0/22 35154 -92.54.96.0/21 35154 -92.54.104.0/22 35154 -92.54.108.0/24 35154 -92.54.109.0/24 12389 -92.54.110.0/24 35154 -92.54.111.0/24 12389 -92.54.112.0/22 35154 -92.54.116.0/24 35154 -92.54.117.0/24 12389 -92.54.118.0/23 35154 -92.54.120.0/21 35154 -92.54.128.0/18 8190 -92.54.192.0/18 35805 -92.55.0.0/18 3226 -92.55.64.0/20 34772 -92.55.80.0/23 34772 -92.55.82.0/23 41557 -92.55.84.0/22 41557 -92.55.88.0/21 34772 -92.55.96.0/22 34772 -92.55.100.0/22 41557 -92.55.104.0/23 41557 -92.55.106.0/24 41557 -92.55.107.0/24 34772 -92.55.108.0/22 34772 -92.55.112.0/22 34772 -92.55.116.0/22 41557 -92.55.120.0/23 41557 -92.55.122.0/23 34772 -92.55.124.0/22 34772 -92.55.131.0/24 39737 -92.55.132.0/24 39737 -92.55.134.0/23 39737 -92.55.144.0/24 50515 -92.55.145.0/24 39737 -92.55.146.0/24 39737 -92.55.147.0/24 50515 -92.55.148.0/23 39737 -92.55.150.0/24 61389 -92.55.151.0/24 39737 -92.55.152.0/23 39737 -92.55.154.0/24 39737 -92.55.160.0/19 21299 -92.55.192.0/18 42739 -92.56.0.0/14 12479 -92.60.4.0/22 1764 -92.60.8.0/21 1764 -92.60.16.0/20 35047 -92.60.36.0/22 197540 -92.60.40.0/23 3214 -92.60.42.0/24 3214 -92.60.44.0/22 60945 -92.60.48.0/22 44185 -92.60.52.0/22 64488 -92.60.56.0/21 16160 -92.60.64.0/20 5602 -92.60.80.0/20 25227 -92.60.96.0/24 45014 -92.60.97.0/24 33854 -92.60.98.0/24 45014 -92.60.99.0/24 33854 -92.60.100.0/22 33854 -92.60.104.0/21 45014 -92.60.112.0/20 20738 -92.60.128.0/20 8374 -92.60.144.0/22 25384 -92.60.148.0/24 25384 -92.60.149.0/24 199769 -92.60.150.0/23 25384 -92.60.152.0/23 25384 -92.60.154.0/24 25384 -92.60.155.0/24 199773 -92.60.156.0/23 25384 -92.60.158.0/24 25384 -92.60.159.0/24 199773 -92.60.160.0/20 8903 -92.60.176.0/23 1820 -92.60.178.0/23 24685 -92.60.180.0/22 1820 -92.60.184.0/21 1820 -92.60.192.0/20 42090 -92.60.208.0/20 44229 -92.60.224.0/20 44252 -92.60.240.0/20 3257 -92.61.0.0/20 8678 -92.61.16.0/20 35558 -92.61.32.0/20 47205 -92.61.48.0/21 43957 -92.61.56.0/22 43957 -92.61.60.0/22 44765 -92.61.64.0/21 41691 -92.61.80.0/20 34093 -92.61.96.0/20 50261 -92.61.112.0/20 44302 -92.61.128.0/20 30801 -92.61.160.0/20 44334 -92.61.176.0/20 15696 -92.61.192.0/20 44384 -92.61.208.0/20 8387 -92.61.224.0/23 202122 -92.61.226.0/23 25003 -92.61.228.0/24 198949 -92.61.229.0/24 25003 -92.61.230.0/23 198949 -92.61.232.0/24 198949 -92.61.233.0/24 25003 -92.61.234.0/23 25003 -92.61.236.0/23 25003 -92.61.238.0/24 48851 -92.61.239.0/24 25003 -92.61.240.0/20 23393 -92.62.0.0/20 16353 -92.62.16.0/20 8559 -92.62.32.0/21 44381 -92.62.40.0/23 44381 -92.62.42.0/23 50213 -92.62.44.0/22 44381 -92.62.48.0/20 39102 -92.62.64.0/20 29061 -92.62.80.0/20 31263 -92.62.96.0/20 39823 -92.62.112.0/22 57487 -92.62.124.0/22 47110 -92.62.128.0/20 15440 -92.62.144.0/20 47684 -92.62.160.0/20 24634 -92.62.176.0/20 15547 -92.62.192.0/21 31027 -92.62.200.0/22 31027 -92.62.204.0/23 31027 -92.62.206.0/24 31027 -92.62.207.0/24 51595 -92.62.208.0/20 13126 -92.62.224.0/20 44489 -92.62.240.0/20 24750 -92.63.0.0/20 44558 -92.63.16.0/20 3212 -92.63.32.0/20 49633 -92.63.48.0/21 43413 -92.63.56.0/22 24971 -92.63.60.0/22 43413 -92.63.64.0/20 8510 -92.63.80.0/22 44575 -92.63.84.0/23 44575 -92.63.86.0/24 44575 -92.63.87.0/24 15615 -92.63.88.0/24 44575 -92.63.91.0/24 3281 -92.63.92.0/23 44575 -92.63.94.0/24 51268 -92.63.96.0/20 29182 -92.63.112.0/20 200030 -92.63.128.0/20 20860 -92.63.144.0/20 43957 -92.63.160.0/21 59545 -92.63.168.0/21 48635 -92.63.184.0/24 44627 -92.63.192.0/24 47981 -92.63.193.0/24 44636 -92.63.194.0/24 48817 -92.63.195.0/24 202423 -92.63.196.0/24 35582 -92.63.197.0/24 60307 -92.63.198.0/24 206766 -92.63.199.0/24 202984 -92.63.200.0/23 201341 -92.63.202.0/24 44636 -92.63.203.0/24 202984 -92.63.204.0/22 56648 -92.63.208.0/22 39912 -92.63.212.0/24 39912 -92.63.214.0/23 39912 -92.63.216.0/21 39912 -92.63.224.0/20 44942 -92.63.240.0/20 44789 -92.64.0.0/14 1136 -92.68.0.0/15 1136 -92.70.0.0/16 1136 -92.71.0.0/21 286 -92.71.8.0/23 286 -92.71.10.0/23 61429 -92.71.12.0/23 286 -92.71.14.0/24 286 -92.71.15.0/24 61429 -92.71.16.0/24 61429 -92.71.17.0/24 286 -92.71.18.0/24 286 -92.71.19.0/24 61429 -92.71.20.0/24 61429 -92.71.21.0/24 286 -92.71.22.0/24 61429 -92.71.23.0/24 286 -92.71.24.0/21 286 -92.71.32.0/19 286 -92.71.64.0/18 286 -92.71.128.0/17 1136 -92.72.0.0/13 3209 -92.80.0.0/14 9050 -92.84.0.0/15 9050 -92.86.0.0/16 9050 -92.87.0.0/18 9050 -92.87.64.0/19 9050 -92.87.96.0/21 9050 -92.87.104.0/24 9050 -92.87.105.0/24 39668 -92.87.106.0/23 9050 -92.87.108.0/22 9050 -92.87.112.0/20 9050 -92.87.128.0/17 9050 -92.88.0.0/13 15557 -92.96.0.0/14 5384 -92.100.0.0/15 12389 -92.102.0.0/15 12670 -92.104.0.0/14 3303 -92.108.0.0/14 6830 -92.112.0.0/15 6849 -92.114.0.0/24 39855 -92.114.1.0/24 39629 -92.114.2.0/23 6910 -92.114.4.0/24 60609 -92.114.16.0/22 47330 -92.114.20.0/22 61209 -92.114.24.0/21 50810 -92.114.32.0/24 203145 -92.114.33.0/24 35270 -92.114.35.0/24 42831 -92.114.36.0/24 29119 -92.114.37.0/24 34601 -92.114.38.0/24 8953 -92.114.39.0/24 31102 -92.114.40.0/21 51737 -92.114.48.0/22 202391 -92.114.52.0/24 31102 -92.114.53.0/24 29119 -92.114.54.0/24 48141 -92.114.56.0/22 200738 -92.114.64.0/20 57218 -92.114.81.0/24 6663 -92.114.82.0/24 8953 -92.114.83.0/24 29119 -92.114.84.0/23 6910 -92.114.86.0/23 60781 -92.114.88.0/22 39425 -92.114.92.0/24 49367 -92.114.93.0/24 61204 -92.114.94.0/23 5588 -92.114.96.0/23 39758 -92.114.98.0/24 43927 -92.114.104.0/23 39737 -92.114.106.0/24 56684 -92.114.107.0/24 6910 -92.114.108.0/24 49302 -92.114.111.0/24 41953 -92.114.112.0/20 6910 -92.114.128.0/17 8926 -92.115.0.0/16 8926 -92.116.0.0/15 8881 -92.118.0.0/22 35224 -92.118.8.0/22 35372 -92.118.12.0/24 201011 -92.118.13.0/24 29066 -92.118.14.0/24 13213 -92.118.15.0/24 46562 -92.118.16.0/24 40676 -92.118.19.0/24 40676 -92.118.20.0/22 209211 -92.118.24.0/22 62292 -92.118.28.0/22 205479 -92.118.36.0/24 209132 -92.118.37.0/24 204655 -92.118.38.0/24 50360 -92.118.39.0/24 51852 -92.118.40.0/22 48095 -92.118.44.0/22 9009 -92.118.48.0/22 203061 -92.118.52.0/22 35913 -92.118.56.0/22 9009 -92.118.60.0/22 35913 -92.118.66.0/23 49031 -92.118.68.0/22 197706 -92.118.76.0/23 57049 -92.118.78.0/24 57049 -92.118.79.0/24 44866 -92.118.80.0/22 207046 -92.118.84.0/22 204490 -92.118.88.0/22 44676 -92.118.92.0/22 202486 -92.118.96.0/22 24904 -92.118.100.0/22 209287 -92.118.104.0/22 198424 -92.118.110.0/24 42433 -92.118.112.0/22 43260 -92.118.116.0/22 209284 -92.118.120.0/22 203536 -92.118.124.0/22 48430 -92.118.128.0/22 48585 -92.118.132.0/22 51765 -92.118.136.0/22 21500 -92.118.140.0/22 42742 -92.118.144.0/22 132839 -92.118.148.0/24 50979 -92.118.149.0/24 204957 -92.118.150.0/23 204957 -92.118.152.0/22 56642 -92.118.156.0/22 5588 -92.118.160.0/23 36351 -92.118.162.0/24 3257 -92.118.163.0/24 60781 -92.118.164.0/22 205679 -92.118.168.0/22 51765 -92.118.172.0/22 200064 -92.118.176.0/22 209196 -92.118.180.0/22 50129 -92.118.184.0/22 9009 -92.118.188.0/24 209484 -92.118.189.0/24 40065 -92.118.190.0/24 47447 -92.118.191.0/24 40065 -92.118.192.0/22 9136 -92.118.200.0/22 39047 -92.118.204.0/22 46573 -92.118.208.0/22 204287 -92.118.212.0/22 3257 -92.118.216.0/24 28771 -92.118.220.0/22 25133 -92.118.224.0/22 21500 -92.118.228.0/22 35913 -92.118.232.0/21 35913 -92.118.244.0/22 209166 -92.118.248.0/22 48146 -92.118.252.0/22 200064 -92.119.0.0/22 62235 -92.119.8.0/22 12897 -92.119.12.0/22 207461 -92.119.16.0/22 62240 -92.119.20.0/22 207050 -92.119.24.0/22 11325 -92.119.28.0/22 202591 -92.119.32.0/22 61317 -92.119.40.0/22 35913 -92.119.44.0/24 204890 -92.119.47.0/24 33058 -92.119.57.0/24 58262 -92.119.58.0/23 58262 -92.119.60.0/24 200697 -92.119.61.0/24 203735 -92.119.62.0/24 209438 -92.119.63.0/24 209253 -92.119.64.0/22 202682 -92.119.68.0/22 44285 -92.119.76.0/22 42807 -92.119.80.0/22 35913 -92.119.84.0/22 13135 -92.119.88.0/22 56630 -92.119.92.0/22 49808 -92.119.96.0/22 16030 -92.119.100.0/22 206610 -92.119.104.0/22 9063 -92.119.108.0/22 199952 -92.119.112.0/22 204601 -92.119.116.0/22 198161 -92.119.120.0/22 62214 -92.119.124.0/22 43659 -92.119.128.0/24 206766 -92.119.129.0/24 203843 -92.119.130.0/24 12722 -92.119.131.0/24 50809 -92.119.132.0/22 35357 -92.119.136.0/22 20799 -92.119.144.0/24 48273 -92.119.148.0/24 398129 -92.119.150.0/23 395800 -92.119.152.0/22 209889 -92.119.156.0/24 207704 -92.119.157.0/24 55286 -92.119.158.0/24 207704 -92.119.159.0/24 44812 -92.119.160.0/24 49505 -92.119.161.0/24 395092 -92.119.162.0/24 34665 -92.119.163.0/24 395092 -92.119.164.0/22 200615 -92.119.168.0/22 24768 -92.119.172.0/23 19437 -92.119.176.0/22 9009 -92.119.180.0/23 9009 -92.119.182.0/24 36352 -92.119.183.0/24 46261 -92.119.184.0/22 57093 -92.119.188.0/24 35351 -92.119.193.0/24 35048 -92.119.194.0/23 12722 -92.119.200.0/22 48430 -92.119.208.0/22 3320 -92.119.219.0/24 209217 -92.119.220.0/22 1820 -92.119.228.0/24 35279 -92.119.229.0/24 49392 -92.119.230.0/24 56630 -92.119.231.0/24 35247 -92.119.232.0/22 57809 -92.119.236.0/22 209240 -92.119.240.0/22 49223 -92.119.248.0/24 209951 -92.119.252.0/24 35241 -92.120.0.0/23 60142 -92.121.0.0/18 60142 -92.121.64.0/21 60142 -92.121.72.0/24 60142 -92.121.80.0/21 60142 -92.122.0.0/21 16625 -92.122.8.0/22 16625 -92.122.12.0/22 1680 -92.122.16.0/20 16625 -92.122.32.0/21 16625 -92.122.40.0/22 20940 -92.122.44.0/22 16625 -92.122.48.0/23 20940 -92.122.50.0/23 34164 -92.122.52.0/23 20940 -92.122.54.0/24 20940 -92.122.55.0/24 34164 -92.122.56.0/22 20940 -92.122.60.0/22 16625 -92.122.64.0/22 20940 -92.122.68.0/22 16625 -92.122.72.0/22 12956 -92.122.76.0/22 16625 -92.122.80.0/22 16625 -92.122.84.0/22 20940 -92.122.88.0/22 16625 -92.122.92.0/22 20940 -92.122.96.0/22 16625 -92.122.100.0/23 1273 -92.122.102.0/23 20940 -92.122.104.0/21 16625 -92.122.112.0/23 34164 -92.122.114.0/23 20940 -92.122.116.0/22 20940 -92.122.120.0/23 34164 -92.122.122.0/24 20940 -92.122.123.0/24 21342 -92.122.124.0/24 34164 -92.122.125.0/24 20940 -92.122.126.0/24 34164 -92.122.127.0/24 20940 -92.122.128.0/20 8551 -92.122.144.0/22 16625 -92.122.148.0/22 20940 -92.122.152.0/24 34164 -92.122.153.0/24 20940 -92.122.154.0/23 20940 -92.122.156.0/23 16625 -92.122.158.0/23 20940 -92.122.160.0/21 16625 -92.122.168.0/22 20940 -92.122.172.0/22 34164 -92.122.176.0/22 20940 -92.122.180.0/23 34164 -92.122.182.0/23 20940 -92.122.184.0/23 32787 -92.122.186.0/23 20940 -92.122.188.0/23 34164 -92.122.190.0/24 20940 -92.122.191.0/24 34164 -92.122.192.0/23 20940 -92.122.194.0/24 34164 -92.122.195.0/24 20940 -92.122.196.0/22 16625 -92.122.200.0/22 16625 -92.122.204.0/23 34164 -92.122.206.0/24 20940 -92.122.207.0/24 32787 -92.122.208.0/23 34164 -92.122.210.0/23 13489 -92.122.212.0/22 20940 -92.122.216.0/23 34164 -92.122.218.0/23 20940 -92.122.220.0/23 20940 -92.122.222.0/23 16625 -92.122.224.0/24 20940 -92.122.225.0/24 6762 -92.122.226.0/23 20940 -92.122.228.0/22 8966 -92.122.232.0/21 16625 -92.122.240.0/24 8966 -92.122.241.0/24 20940 -92.122.242.0/24 20940 -92.122.243.0/24 34164 -92.122.244.0/23 20940 -92.122.246.0/23 16625 -92.122.248.0/22 6762 -92.122.252.0/22 16625 -92.123.0.0/19 16625 -92.123.32.0/20 16625 -92.123.48.0/20 34164 -92.123.64.0/22 20940 -92.123.68.0/23 34164 -92.123.70.0/23 1273 -92.123.72.0/23 20940 -92.123.74.0/24 20940 -92.123.75.0/24 34164 -92.123.76.0/24 34164 -92.123.77.0/24 20940 -92.123.78.0/24 20940 -92.123.79.0/24 34164 -92.123.80.0/21 16625 -92.123.88.0/22 20940 -92.123.92.0/23 16625 -92.123.94.0/23 21342 -92.123.96.0/21 20940 -92.123.104.0/24 34164 -92.123.105.0/24 20940 -92.123.106.0/24 6762 -92.123.107.0/24 20940 -92.123.108.0/22 16625 -92.123.112.0/21 16625 -92.123.120.0/21 34164 -92.123.128.0/22 16625 -92.123.132.0/22 20940 -92.123.136.0/21 20940 -92.123.144.0/24 20940 -92.123.145.0/24 34164 -92.123.146.0/24 20940 -92.123.147.0/24 34164 -92.123.148.0/22 16625 -92.123.152.0/24 34164 -92.123.153.0/24 8966 -92.123.154.0/24 34164 -92.123.155.0/24 20940 -92.123.156.0/22 16625 -92.123.160.0/22 34164 -92.123.164.0/22 16625 -92.123.168.0/21 20940 -92.123.176.0/22 16625 -92.123.180.0/23 20940 -92.123.182.0/24 20940 -92.123.183.0/24 34164 -92.123.184.0/22 16625 -92.123.188.0/23 34164 -92.123.190.0/23 20940 -92.123.192.0/24 20940 -92.123.193.0/24 34164 -92.123.194.0/23 20940 -92.123.196.0/22 16625 -92.123.200.0/22 1680 -92.123.204.0/22 20940 -92.123.208.0/22 16625 -92.123.212.0/23 20940 -92.123.214.0/23 16625 -92.123.216.0/22 12956 -92.123.220.0/22 20940 -92.123.224.0/22 20940 -92.123.228.0/22 16625 -92.123.232.0/21 20940 -92.123.240.0/22 13489 -92.123.244.0/22 20940 -92.123.248.0/23 34164 -92.123.250.0/23 20940 -92.123.252.0/22 16625 -92.124.0.0/15 12389 -92.126.0.0/16 12389 -92.127.0.0/17 12389 -92.127.128.0/20 12389 -92.127.144.0/21 12389 -92.127.152.0/24 16054 -92.127.153.0/24 12389 -92.127.154.0/23 12389 -92.127.156.0/22 12389 -92.127.160.0/19 12389 -92.127.192.0/18 12389 -92.128.0.0/13 3215 -92.136.0.0/14 3215 -92.140.0.0/15 3215 -92.142.0.0/17 3215 -92.142.128.0/18 3215 -92.143.0.0/16 3215 -92.144.0.0/12 3215 -92.160.0.0/15 3215 -92.162.0.0/16 3215 -92.163.0.0/17 3215 -92.167.0.0/16 3215 -92.169.0.0/16 3215 -92.170.0.0/15 3215 -92.173.0.0/17 3215 -92.173.128.0/18 3215 -92.173.192.0/19 3215 -92.173.224.0/20 3215 -92.173.240.0/22 3215 -92.174.0.0/15 3215 -92.176.0.0/15 12479 -92.180.128.0/18 3215 -92.181.0.0/17 31204 -92.181.128.0/19 31204 -92.182.2.0/24 3215 -92.182.4.0/24 3215 -92.182.6.0/23 3215 -92.182.8.0/24 3215 -92.182.10.0/24 3215 -92.182.12.0/24 3215 -92.182.14.0/24 3215 -92.182.16.0/24 3215 -92.182.18.0/24 3215 -92.182.20.0/24 3215 -92.182.22.0/24 3215 -92.182.24.0/24 3215 -92.182.26.0/24 3215 -92.182.28.0/24 3215 -92.182.30.0/24 3215 -92.182.32.0/24 3215 -92.182.34.0/24 3215 -92.182.36.0/24 3215 -92.182.38.0/24 3215 -92.182.40.0/24 3215 -92.182.42.0/24 3215 -92.182.44.0/24 3215 -92.182.46.0/24 3215 -92.182.48.0/24 3215 -92.182.50.0/24 3215 -92.182.52.0/24 3215 -92.182.54.0/24 3215 -92.182.56.0/24 3215 -92.182.58.0/24 3215 -92.182.60.0/24 3215 -92.182.62.0/24 3215 -92.182.64.0/24 3215 -92.182.66.0/24 3215 -92.182.68.0/24 3215 -92.182.70.0/24 3215 -92.182.72.0/24 3215 -92.182.74.0/24 3215 -92.182.76.0/24 3215 -92.182.78.0/24 3215 -92.182.80.0/24 3215 -92.182.82.0/24 3215 -92.182.84.0/24 3215 -92.182.86.0/24 3215 -92.182.90.0/24 3215 -92.182.92.0/24 3215 -92.182.94.0/24 3215 -92.182.96.0/24 3215 -92.182.98.0/24 3215 -92.184.96.0/19 3215 -92.185.0.0/16 12479 -92.186.0.0/15 12479 -92.188.0.0/16 8362 -92.189.0.0/16 12479 -92.190.0.0/15 12479 -92.192.0.0/13 20676 -92.200.0.0/15 20676 -92.202.0.0/15 2527 -92.204.0.0/20 8972 -92.204.16.0/20 198047 -92.204.32.0/21 34011 -92.204.48.0/20 8972 -92.204.64.0/21 21499 -92.204.80.0/22 21499 -92.204.84.0/24 21499 -92.206.0.0/16 16202 -92.207.0.0/16 31655 -92.208.0.0/13 3209 -92.216.0.0/14 3209 -92.220.0.0/15 29695 -92.222.0.0/16 16276 -92.223.0.0/21 199524 -92.223.8.0/22 199524 -92.223.12.0/24 199524 -92.223.13.0/24 3356 -92.223.14.0/24 199524 -92.223.16.0/20 199524 -92.223.32.0/23 199524 -92.223.34.0/24 199524 -92.223.36.0/23 199524 -92.223.38.0/24 199524 -92.223.40.0/21 199524 -92.223.48.0/24 199524 -92.223.50.0/23 199524 -92.223.52.0/24 199524 -92.223.54.0/24 199524 -92.223.56.0/22 199524 -92.223.60.0/23 199524 -92.223.63.0/24 199524 -92.223.64.0/22 199524 -92.223.68.0/23 199524 -92.223.70.0/24 199524 -92.223.72.0/22 199524 -92.223.76.0/24 199524 -92.223.78.0/23 199524 -92.223.80.0/24 199524 -92.223.82.0/23 199524 -92.223.84.0/22 199524 -92.223.88.0/23 199524 -92.223.90.0/24 1 -92.223.91.0/24 199524 -92.223.92.0/22 199524 -92.223.96.0/19 199524 -92.223.128.0/17 12874 -92.224.0.0/13 6805 -92.232.0.0/15 5089 -92.234.0.0/16 5089 -92.235.0.0/18 6830 -92.235.64.0/19 6830 -92.236.0.0/14 5089 -92.240.0.0/23 11856 -92.240.2.0/24 37105 -92.240.4.0/24 62112 -92.240.5.0/24 174 -92.240.15.0/24 11856 -92.240.32.0/19 20875 -92.240.64.0/19 5538 -92.240.96.0/19 15547 -92.240.128.0/20 8439 -92.240.144.0/22 39855 -92.240.152.0/21 59650 -92.240.160.0/19 16246 -92.240.194.0/23 39735 -92.240.200.0/24 9009 -92.240.202.0/24 57842 -92.240.204.0/22 9009 -92.240.208.0/22 39735 -92.240.212.0/23 39735 -92.240.215.0/24 204895 -92.240.218.0/23 39735 -92.240.222.0/23 39735 -92.240.224.0/19 42005 -92.241.0.0/21 58002 -92.241.8.0/22 58002 -92.241.12.0/23 58002 -92.241.14.0/24 58002 -92.241.15.0/24 51200 -92.241.16.0/24 58002 -92.241.17.0/24 51200 -92.241.18.0/24 58002 -92.241.19.0/24 51200 -92.241.20.0/24 51200 -92.241.21.0/24 58002 -92.241.22.0/23 58002 -92.241.24.0/21 58002 -92.241.32.0/23 9038 -92.241.36.0/22 9038 -92.241.40.0/21 9038 -92.241.48.0/20 9038 -92.241.64.0/19 15491 -92.241.96.0/19 44265 -92.241.128.0/19 21107 -92.241.160.0/19 41947 -92.241.192.0/19 1299 -92.241.224.0/19 3226 -92.242.0.0/19 12668 -92.242.32.0/21 49063 -92.242.40.0/24 205840 -92.242.41.0/24 49063 -92.242.42.0/23 49063 -92.242.44.0/23 205840 -92.242.46.0/23 49063 -92.242.48.0/22 197078 -92.242.52.0/22 25227 -92.242.56.0/22 24936 -92.242.60.0/23 24936 -92.242.62.0/23 201192 -92.242.64.0/19 8371 -92.242.96.0/23 41039 -92.242.98.0/23 3261 -92.242.100.0/22 3261 -92.242.104.0/22 3261 -92.242.108.0/23 3261 -92.242.110.0/23 41039 -92.242.112.0/22 41039 -92.242.116.0/22 3261 -92.242.120.0/21 41039 -92.242.128.0/22 45028 -92.242.132.0/24 45028 -92.242.134.0/24 45028 -92.242.137.0/24 45028 -92.242.139.0/24 45028 -92.242.140.0/22 45028 -92.242.144.0/24 45028 -92.242.160.0/22 209600 -92.242.168.0/22 9051 -92.242.172.0/22 12874 -92.242.176.0/24 210082 -92.242.180.0/22 210081 -92.242.184.0/22 61317 -92.242.188.0/22 35913 -92.242.192.0/19 42337 -92.242.224.0/19 44377 -92.243.0.0/19 203476 -92.243.32.0/19 44385 -92.243.64.0/19 30968 -92.243.96.0/19 31036 -92.243.128.0/19 44512 -92.243.160.0/19 15582 -92.243.192.0/19 5610 -92.243.224.0/19 35158 -92.244.0.0/19 33885 -92.244.32.0/19 6830 -92.244.64.0/19 2107 -92.244.96.0/19 34056 -92.244.128.0/19 41937 -92.244.160.0/19 8844 -92.244.192.0/19 31642 -92.244.224.0/19 6856 -92.245.0.0/20 44631 -92.245.32.0/19 28812 -92.245.64.0/23 44419 -92.245.66.0/23 12301 -92.245.68.0/22 12301 -92.245.72.0/21 12301 -92.245.80.0/20 12301 -92.245.96.0/19 41750 -92.245.128.0/24 65623 -92.245.129.0/24 31167 -92.245.130.0/23 48072 -92.245.132.0/23 48072 -92.245.134.0/23 31167 -92.245.136.0/22 48072 -92.245.140.0/24 48072 -92.245.141.0/24 31167 -92.245.142.0/23 48072 -92.245.144.0/23 48072 -92.245.146.0/24 65623 -92.245.147.0/24 48072 -92.245.148.0/24 65623 -92.245.149.0/24 48072 -92.245.150.0/23 48072 -92.245.152.0/24 48072 -92.245.153.0/24 31167 -92.245.154.0/23 31167 -92.245.156.0/22 48072 -92.245.160.0/22 21086 -92.245.164.0/22 43364 -92.245.170.0/23 48544 -92.245.172.0/22 48544 -92.245.176.0/22 43364 -92.245.181.0/24 200616 -92.245.184.0/22 50316 -92.245.188.0/24 21086 -92.245.189.0/24 43364 -92.245.190.0/23 21086 -92.245.192.0/19 31127 -92.245.224.0/19 786 -92.246.0.0/19 43557 -92.246.32.0/19 47136 -92.246.68.0/22 18530 -92.246.76.0/22 204718 -92.246.80.0/22 12357 -92.246.84.0/22 44592 -92.246.88.0/22 49558 -92.246.96.0/21 34758 -92.246.104.0/21 44942 -92.246.112.0/20 34758 -92.246.128.0/20 8744 -92.246.144.0/22 58224 -92.246.148.0/22 47723 -92.246.152.0/22 31724 -92.246.156.0/22 58224 -92.246.160.0/19 35728 -92.246.192.0/21 41822 -92.246.200.0/22 41822 -92.246.204.0/22 48612 -92.246.208.0/22 41822 -92.246.212.0/23 41822 -92.246.216.0/22 44579 -92.246.220.0/23 48612 -92.246.224.0/19 16276 -92.247.0.0/18 8717 -92.247.64.0/21 8717 -92.247.72.0/22 48917 -92.247.76.0/24 48917 -92.247.77.0/24 196807 -92.247.78.0/23 210024 -92.247.80.0/20 8717 -92.247.96.0/22 29580 -92.247.100.0/23 56661 -92.247.102.0/23 29580 -92.247.104.0/22 44525 -92.247.108.0/24 56371 -92.247.109.0/24 61321 -92.247.110.0/23 43943 -92.247.112.0/22 201406 -92.247.116.0/22 29580 -92.247.120.0/21 42794 -92.247.128.0/23 42794 -92.247.130.0/23 29580 -92.247.132.0/23 29580 -92.247.134.0/23 8717 -92.247.136.0/22 43548 -92.247.140.0/22 8717 -92.247.144.0/23 29580 -92.247.146.0/23 8717 -92.247.148.0/22 8717 -92.247.152.0/21 29580 -92.247.160.0/22 48917 -92.247.164.0/22 199898 -92.247.168.0/23 59463 -92.247.170.0/24 59463 -92.247.171.0/24 29084 -92.247.172.0/22 59463 -92.247.176.0/21 8717 -92.247.184.0/24 3187 -92.247.185.0/24 8717 -92.247.186.0/23 8717 -92.247.188.0/24 62411 -92.247.189.0/24 8717 -92.247.190.0/23 29580 -92.247.192.0/18 8717 -92.248.0.0/17 8447 -92.248.128.0/17 30868 -92.249.0.0/22 39488 -92.249.8.0/22 29119 -92.249.12.0/22 49505 -92.249.16.0/22 24768 -92.249.20.0/22 48362 -92.249.32.0/22 9009 -92.249.36.0/23 209854 -92.249.39.0/24 209854 -92.249.40.0/22 209852 -92.249.44.0/22 47583 -92.249.52.0/22 51859 -92.249.64.0/18 29107 -92.249.128.0/17 20845 -92.250.0.0/17 42863 -92.250.128.0/17 12684 -92.251.0.0/17 12709 -92.251.128.0/17 34218 -92.252.0.0/17 9145 -92.252.128.0/17 12389 -92.253.0.0/17 8376 -92.253.128.0/18 50923 -92.253.192.0/22 57764 -92.253.196.0/22 43533 -92.253.200.0/24 209067 -92.253.201.0/24 209074 -92.253.202.0/24 201069 -92.253.203.0/24 209179 -92.253.204.0/24 204889 -92.253.205.0/24 209213 -92.253.206.0/23 209248 -92.253.208.0/21 56580 -92.253.216.0/23 51812 -92.253.218.0/23 59734 -92.253.220.0/22 44546 -92.253.224.0/21 29256 -92.253.232.0/24 209668 -92.253.233.0/24 209229 -92.253.234.0/24 207677 -92.253.235.0/24 207676 -92.253.236.0/22 59577 -92.253.240.0/20 59577 -92.254.0.0/17 20507 -92.254.128.0/17 34610 -92.255.0.0/19 31323 -92.255.32.0/21 59504 -92.255.40.0/23 31323 -92.255.42.0/24 205282 -92.255.44.0/22 50797 -92.255.48.0/24 204311 -92.255.49.0/24 208511 -92.255.50.0/24 31323 -92.255.51.0/24 56534 -92.255.52.0/24 202317 -92.255.53.0/24 200679 -92.255.54.0/24 48601 -92.255.56.0/24 42253 -92.255.57.0/24 56534 -92.255.58.0/23 56534 -92.255.60.0/24 202990 -92.255.61.0/24 47168 -92.255.62.0/24 200362 -92.255.63.0/24 208461 -92.255.65.0/24 60722 -92.255.66.0/24 31323 -92.255.67.0/24 47968 -92.255.68.0/22 42253 -92.255.72.0/22 47168 -92.255.76.0/22 49345 -92.255.80.0/22 49345 -92.255.84.0/24 42097 -92.255.85.0/24 56534 -92.255.86.0/23 56534 -92.255.88.0/21 56534 -92.255.96.0/23 56534 -92.255.98.0/24 56534 -92.255.99.0/24 203004 -92.255.100.0/22 56534 -92.255.104.0/21 49345 -92.255.112.0/20 42668 -92.255.128.0/19 12768 -92.255.160.0/21 41682 -92.255.168.0/24 209099 -92.255.169.0/24 41682 -92.255.170.0/23 41682 -92.255.172.0/22 41682 -92.255.176.0/20 41843 -92.255.192.0/20 41668 -92.255.208.0/21 52207 -92.255.216.0/21 41727 -92.255.224.0/20 41727 -92.255.240.0/24 42683 -92.255.241.0/24 42682 -92.255.242.0/23 41786 -92.255.244.0/23 42682 -92.255.246.0/23 41661 -92.255.248.0/21 42116 -93.0.0.0/12 15557 -93.16.0.0/16 15557 -93.17.0.0/17 15557 -93.17.128.0/18 15557 -93.17.192.0/19 15557 -93.17.224.0/20 15557 -93.17.240.0/23 15557 -93.17.242.0/24 15557 -93.17.243.0/24 12626 -93.17.244.0/22 15557 -93.17.248.0/21 15557 -93.18.0.0/15 15557 -93.20.0.0/14 15557 -93.24.0.0/13 15557 -93.32.0.0/11 12874 -93.64.0.0/13 30722 -93.72.0.0/15 25229 -93.74.0.0/16 25229 -93.75.0.0/18 25229 -93.75.64.0/19 25229 -93.75.125.0/24 200872 -93.75.128.0/17 25229 -93.76.0.0/18 25229 -93.76.64.0/19 25229 -93.76.96.0/21 25229 -93.76.112.0/20 25229 -93.76.128.0/17 25229 -93.77.0.0/17 25229 -93.77.128.0/19 25229 -93.77.160.0/19 205515 -93.77.192.0/18 25229 -93.78.0.0/19 25229 -93.78.32.0/20 25229 -93.78.48.0/21 25229 -93.78.96.0/19 25229 -93.78.128.0/17 25229 -93.79.0.0/16 25229 -93.80.0.0/19 3216 -93.80.32.0/19 8402 -93.80.64.0/21 8402 -93.80.72.0/21 3216 -93.80.80.0/20 8402 -93.80.96.0/19 8402 -93.80.128.0/19 8402 -93.80.160.0/20 8402 -93.80.176.0/22 3216 -93.80.180.0/22 8402 -93.80.184.0/21 8402 -93.80.192.0/20 8402 -93.80.208.0/22 8402 -93.80.212.0/22 3216 -93.80.216.0/21 8402 -93.80.224.0/19 8402 -93.81.0.0/18 8402 -93.81.64.0/20 8402 -93.81.80.0/22 8402 -93.81.84.0/22 3216 -93.81.88.0/22 3216 -93.81.92.0/23 3216 -93.81.94.0/23 8402 -93.81.96.0/19 8402 -93.81.128.0/18 8402 -93.81.192.0/20 8402 -93.81.208.0/20 3216 -93.81.224.0/21 42110 -93.81.232.0/21 8402 -93.81.240.0/20 8402 -93.82.0.0/15 8447 -93.84.0.0/15 6697 -93.86.0.0/15 8400 -93.88.0.0/21 21332 -93.88.8.0/24 21332 -93.88.10.0/23 21332 -93.88.12.0/22 21332 -93.88.16.0/22 8767 -93.88.20.0/22 48146 -93.88.26.0/23 203730 -93.88.32.0/20 39657 -93.88.74.0/24 207728 -93.88.75.0/24 21100 -93.88.76.0/22 57487 -93.88.80.0/20 48830 -93.88.96.0/20 39120 -93.88.112.0/21 35719 -93.88.120.0/21 13113 -93.88.128.0/20 13178 -93.88.152.0/21 34968 -93.88.160.0/24 16300 -93.88.163.0/24 16300 -93.88.164.0/24 16300 -93.88.165.0/24 200838 -93.88.166.0/24 199534 -93.88.169.0/24 199281 -93.88.170.0/24 200838 -93.88.176.0/20 44868 -93.88.192.0/20 197248 -93.88.208.0/21 15638 -93.88.216.0/22 15638 -93.88.220.0/24 15638 -93.88.224.0/22 44973 -93.88.228.0/22 203986 -93.88.232.0/21 203986 -93.88.240.0/20 29222 -93.89.0.0/24 21461 -93.89.2.0/24 21461 -93.89.5.0/24 21461 -93.89.6.0/23 21461 -93.89.8.0/22 21461 -93.89.16.0/22 44922 -93.89.20.0/23 44922 -93.89.22.0/24 44922 -93.89.23.0/24 205406 -93.89.24.0/24 29141 -93.89.25.0/24 44922 -93.89.26.0/23 44922 -93.89.28.0/22 44922 -93.89.32.0/20 35132 -93.89.48.0/20 20811 -93.89.64.0/20 196733 -93.89.80.0/20 39326 -93.89.96.0/20 198813 -93.89.112.0/20 52157 -93.89.128.0/20 12496 -93.89.144.0/20 42306 -93.89.160.0/20 5483 -93.89.176.0/20 8905 -93.89.192.0/20 201328 -93.89.208.0/20 45025 -93.89.224.0/20 51557 -93.89.240.0/20 42227 -93.90.0.0/20 31027 -93.90.16.0/20 16371 -93.90.32.0/20 12714 -93.90.48.0/20 45010 -93.90.72.0/23 134121 -93.90.74.0/23 55933 -93.90.76.0/22 60508 -93.90.80.0/20 45055 -93.90.96.0/20 48642 -93.90.112.0/20 28717 -93.90.128.0/20 47295 -93.90.144.0/20 35041 -93.90.160.0/20 16019 -93.90.176.0/22 45031 -93.90.180.0/23 45031 -93.90.182.0/24 45031 -93.90.183.0/24 57739 -93.90.184.0/21 45031 -93.90.192.0/20 8560 -93.90.208.0/21 44963 -93.90.216.0/22 49505 -93.90.220.0/22 47723 -93.90.224.0/20 25086 -93.91.0.0/20 31430 -93.91.16.0/20 24958 -93.91.32.0/20 6461 -93.91.48.0/20 44489 -93.91.64.0/20 47134 -93.91.80.0/22 62023 -93.91.84.0/23 62023 -93.91.86.0/24 197711 -93.91.87.0/24 62023 -93.91.88.0/21 62023 -93.91.96.0/21 43905 -93.91.112.0/20 47562 -93.91.128.0/20 31263 -93.91.144.0/20 47232 -93.91.160.0/22 25549 -93.91.164.0/24 48107 -93.91.165.0/24 25549 -93.91.166.0/23 25549 -93.91.168.0/22 25549 -93.91.172.0/23 8711 -93.91.174.0/23 25549 -93.91.176.0/20 1759 -93.91.192.0/20 21277 -93.91.208.0/20 42968 -93.91.224.0/20 47218 -93.91.240.0/20 47269 -93.92.0.0/21 44447 -93.92.8.0/21 44451 -93.92.24.0/21 57795 -93.92.32.0/21 49531 -93.92.40.0/21 44066 -93.92.48.0/21 35214 -93.92.56.0/21 44651 -93.92.64.0/24 43097 -93.92.65.0/24 59696 -93.92.66.0/24 43097 -93.92.68.0/22 43097 -93.92.72.0/21 44793 -93.92.80.0/21 34467 -93.92.88.0/22 35140 -93.92.92.0/22 34709 -93.92.96.0/21 24586 -93.92.104.0/21 44527 -93.92.112.0/21 43035 -93.92.120.0/21 5413 -93.92.128.0/21 29014 -93.92.136.0/21 44542 -93.92.144.0/22 8972 -93.92.148.0/23 20773 -93.92.150.0/23 8972 -93.92.152.0/21 44567 -93.92.160.0/21 41363 -93.92.168.0/21 44561 -93.92.176.0/21 21480 -93.92.184.0/21 44767 -93.92.192.0/21 31376 -93.92.200.0/21 44923 -93.92.210.0/24 44568 -93.92.213.0/24 44568 -93.92.216.0/21 34757 -93.92.224.0/22 3348 -93.92.228.0/22 201942 -93.92.232.0/21 44585 -93.92.240.0/21 56366 -93.92.248.0/21 8400 -93.93.0.0/24 47446 -93.93.12.0/23 39505 -93.93.14.0/23 62015 -93.93.16.0/23 28742 -93.93.24.0/23 44637 -93.93.32.0/21 199101 -93.93.40.0/21 39405 -93.93.49.0/24 47381 -93.93.50.0/23 34655 -93.93.52.0/24 47381 -93.93.53.0/24 34655 -93.93.54.0/24 34655 -93.93.56.0/21 44613 -93.93.64.0/21 39020 -93.93.72.0/21 44763 -93.93.80.0/21 44646 -93.93.88.0/22 34879 -93.93.92.0/23 34879 -93.93.94.0/24 34879 -93.93.96.0/21 44654 -93.93.104.0/22 201707 -93.93.108.0/22 201189 -93.93.112.0/21 8560 -93.93.120.0/21 51088 -93.93.128.0/21 44684 -93.93.136.0/21 44711 -93.93.145.0/24 8934 -93.93.150.0/24 8934 -93.93.152.0/21 3215 -93.93.160.0/21 44701 -93.93.168.0/22 35444 -93.93.172.0/22 205773 -93.93.176.0/21 44707 -93.93.184.0/21 34235 -93.93.192.0/21 9125 -93.93.208.0/21 44791 -93.93.216.0/21 44369 -93.93.224.0/24 8426 -93.93.226.0/23 8426 -93.93.228.0/24 8426 -93.93.232.0/21 6461 -93.93.240.0/22 134548 -93.93.244.0/23 9009 -93.93.246.0/24 49466 -93.93.247.0/24 21859 -93.93.248.0/21 25394 -93.94.0.0/23 203865 -93.94.2.0/24 203865 -93.94.4.0/23 34219 -93.94.6.0/23 196714 -93.94.8.0/21 6829 -93.94.24.0/21 43843 -93.94.32.0/21 60227 -93.94.40.0/22 6907 -93.94.48.0/21 48407 -93.94.56.0/21 44785 -93.94.64.0/21 44776 -93.94.72.0/21 6067 -93.94.80.0/21 15960 -93.94.88.0/21 41327 -93.94.104.0/21 44806 -93.94.112.0/21 34912 -93.94.120.0/21 44891 -93.94.128.0/21 44946 -93.94.136.0/23 44814 -93.94.138.0/24 44814 -93.94.139.0/24 205937 -93.94.140.0/24 205465 -93.94.141.0/24 44814 -93.94.142.0/24 62052 -93.94.143.0/24 200617 -93.94.144.0/21 44020 -93.94.152.0/22 44816 -93.94.156.0/23 44816 -93.94.158.0/24 44816 -93.94.160.0/21 34749 -93.94.168.0/21 34610 -93.94.176.0/21 51645 -93.94.184.0/21 21021 -93.94.192.0/23 29434 -93.94.194.0/24 29434 -93.94.199.0/24 29434 -93.94.208.0/21 1257 -93.94.216.0/21 42109 -93.94.224.0/21 25151 -93.94.232.0/21 44881 -93.94.240.0/21 24889 -93.94.248.0/21 47123 -93.95.0.0/21 44858 -93.95.8.0/21 203425 -93.95.16.0/21 209820 -93.95.24.0/22 44876 -93.95.32.0/21 34080 -93.95.40.0/21 20842 -93.95.56.0/21 44902 -93.95.64.0/21 48057 -93.95.72.0/21 44275 -93.95.80.0/21 196737 -93.95.88.0/21 35434 -93.95.97.0/24 48347 -93.95.98.0/23 48347 -93.95.100.0/22 48347 -93.95.104.0/21 5413 -93.95.112.0/22 35705 -93.95.120.0/21 24594 -93.95.128.0/21 28676 -93.95.136.0/21 39045 -93.95.144.0/21 35467 -93.95.152.0/21 24811 -93.95.160.0/21 35539 -93.95.168.0/22 31499 -93.95.172.0/24 31499 -93.95.173.0/24 202058 -93.95.174.0/23 31499 -93.95.176.0/24 15924 -93.95.184.0/21 13188 -93.95.192.0/21 44913 -93.95.200.0/21 28730 -93.95.208.0/21 203073 -93.95.216.0/21 52030 -93.95.224.0/21 44925 -93.95.232.0/21 41090 -93.95.240.0/21 9198 -93.95.248.0/21 44953 -93.96.0.0/16 5607 -93.97.0.0/16 35228 -93.98.0.0/16 34397 -93.99.0.0/16 6830 -93.100.0.0/17 35807 -93.100.128.0/18 35807 -93.100.192.0/23 35807 -93.100.194.0/24 35807 -93.100.195.0/24 3285 -93.100.196.0/22 35807 -93.100.200.0/21 35807 -93.100.208.0/20 35807 -93.100.224.0/20 35807 -93.100.240.0/21 35807 -93.100.248.0/22 35807 -93.100.252.0/23 35807 -93.100.254.0/23 62415 -93.101.0.0/20 35574 -93.101.32.0/21 61315 -93.101.72.0/21 61315 -93.101.80.0/20 61315 -93.101.96.0/19 61315 -93.101.128.0/17 61315 -93.102.0.0/16 2860 -93.103.0.0/16 34779 -93.104.0.0/16 8767 -93.105.0.0/18 29314 -93.105.64.0/21 29314 -93.105.72.0/23 20552 -93.105.74.0/24 35007 -93.105.75.0/24 20552 -93.105.76.0/22 29314 -93.105.80.0/21 29314 -93.105.88.0/22 50606 -93.105.92.0/22 29314 -93.105.96.0/19 29314 -93.105.128.0/17 29314 -93.106.0.0/16 1759 -93.107.0.0/16 15502 -93.108.0.0/16 12353 -93.109.0.0/17 6866 -93.109.128.0/18 6866 -93.109.192.0/20 6866 -93.109.208.0/21 6866 -93.109.216.0/24 6866 -93.109.217.0/24 206717 -93.109.218.0/23 6866 -93.109.220.0/22 6866 -93.109.224.0/23 203598 -93.109.226.0/23 6866 -93.109.228.0/22 6866 -93.109.232.0/21 6866 -93.109.240.0/20 6866 -93.110.0.0/19 55933 -93.110.32.0/19 197207 -93.110.64.0/18 197207 -93.110.128.0/17 197207 -93.111.0.0/16 8447 -93.112.0.0/16 25019 -93.113.0.0/20 8751 -93.113.16.0/21 12430 -93.113.24.0/24 57392 -93.113.25.0/24 39758 -93.113.26.0/23 201838 -93.113.28.0/24 48881 -93.113.29.0/24 31313 -93.113.30.0/24 5588 -93.113.31.0/24 203872 -93.113.32.0/23 6830 -93.113.34.0/24 61139 -93.113.35.0/24 47619 -93.113.36.0/23 41011 -93.113.38.0/23 39855 -93.113.40.0/22 41852 -93.113.44.0/24 33387 -93.113.45.0/24 201630 -93.113.47.0/24 39081 -93.113.48.0/22 29119 -93.113.54.0/23 5588 -93.113.56.0/24 8953 -93.113.57.0/24 56615 -93.113.58.0/23 5588 -93.113.60.0/22 51559 -93.113.64.0/21 8926 -93.113.80.0/21 8926 -93.113.89.0/24 31638 -93.113.90.0/23 6910 -93.113.92.0/22 8926 -93.113.96.0/24 43260 -93.113.97.0/24 204373 -93.113.98.0/23 39737 -93.113.100.0/24 31207 -93.113.101.0/24 204373 -93.113.102.0/24 198144 -93.113.103.0/24 31207 -93.113.104.0/24 6663 -93.113.109.0/24 31207 -93.113.110.0/23 21396 -93.113.112.0/21 43925 -93.113.120.0/22 3329 -93.113.124.0/23 43443 -93.113.126.0/24 60149 -93.113.127.0/24 60194 -93.113.129.0/24 40975 -93.113.130.0/24 33387 -93.113.131.0/24 34989 -93.113.132.0/23 41852 -93.113.134.0/23 6910 -93.113.136.0/21 12430 -93.113.144.0/21 6910 -93.113.152.0/23 56852 -93.113.154.0/24 35450 -93.113.155.0/24 12310 -93.113.156.0/24 44682 -93.113.157.0/24 33977 -93.113.158.0/24 34450 -93.113.159.0/24 61334 -93.113.160.0/22 34847 -93.113.164.0/22 29256 -93.113.170.0/24 41055 -93.113.171.0/24 39527 -93.113.172.0/23 6910 -93.113.174.0/24 43927 -93.113.175.0/24 203872 -93.113.176.0/21 39543 -93.113.184.0/21 209706 -93.113.192.0/21 48067 -93.113.202.0/23 34450 -93.113.204.0/24 47148 -93.113.206.0/23 197922 -93.113.208.0/22 39441 -93.113.212.0/24 39758 -93.113.213.0/24 31207 -93.113.214.0/23 9050 -93.113.216.0/22 3329 -93.113.220.0/23 39855 -93.113.224.0/22 25184 -93.113.240.0/24 8953 -93.113.241.0/24 6830 -93.113.242.0/23 6830 -93.113.244.0/22 8926 -93.113.248.0/23 6910 -93.113.250.0/23 44252 -93.113.252.0/23 12356 -93.113.255.0/24 52044 -93.114.0.0/20 206819 -93.114.16.0/20 57218 -93.114.40.0/21 3223 -93.114.50.0/24 57392 -93.114.51.0/24 209574 -93.114.52.0/23 209574 -93.114.54.0/24 209574 -93.114.55.0/24 34450 -93.114.57.0/24 8708 -93.114.58.0/23 209559 -93.114.60.0/22 42635 -93.114.64.0/23 209242 -93.114.66.0/24 56570 -93.114.67.0/24 39855 -93.114.69.0/24 209706 -93.114.70.0/23 35664 -93.114.72.0/21 51461 -93.114.80.0/23 49023 -93.114.82.0/24 39383 -93.114.83.0/24 203872 -93.114.84.0/24 56997 -93.114.85.0/24 39855 -93.114.86.0/23 21396 -93.114.88.0/22 51461 -93.114.92.0/22 209519 -93.114.96.0/24 49774 -93.114.97.0/24 5483 -93.114.99.0/24 34450 -93.114.104.0/21 12880 -93.114.112.0/20 6910 -93.114.129.0/24 203872 -93.114.130.0/24 42926 -93.114.131.0/24 50129 -93.114.132.0/24 39855 -93.114.134.0/23 39572 -93.114.140.0/24 42568 -93.114.143.0/24 200492 -93.114.144.0/20 34977 -93.114.160.0/21 48948 -93.114.169.0/24 209706 -93.114.170.0/24 3269 -93.114.171.0/24 34450 -93.114.172.0/22 44682 -93.114.176.0/22 51102 -93.114.180.0/23 51102 -93.114.182.0/24 208913 -93.114.183.0/24 51102 -93.114.184.0/23 21396 -93.114.186.0/24 48808 -93.114.187.0/24 34450 -93.114.192.0/23 6910 -93.114.194.0/24 39573 -93.114.195.0/24 6910 -93.114.196.0/22 3329 -93.114.200.0/21 29119 -93.114.208.0/21 29256 -93.114.216.0/22 60909 -93.114.224.0/21 29119 -93.114.232.0/23 35267 -93.114.234.0/23 21396 -93.114.240.0/22 200738 -93.114.245.0/24 3269 -93.114.246.0/24 6910 -93.114.247.0/24 41055 -93.114.248.0/24 5588 -93.114.249.0/24 41055 -93.114.251.0/24 33977 -93.114.252.0/23 48427 -93.114.254.0/23 29119 -93.115.0.0/24 47602 -93.115.1.0/24 50094 -93.115.2.0/23 50094 -93.115.6.0/24 5588 -93.115.7.0/24 9009 -93.115.8.0/24 15692 -93.115.9.0/24 6830 -93.115.10.0/24 61135 -93.115.11.0/24 61053 -93.115.14.0/23 50094 -93.115.16.0/23 59878 -93.115.20.0/22 202448 -93.115.24.0/21 16125 -93.115.32.0/24 48669 -93.115.33.0/24 34624 -93.115.34.0/24 41953 -93.115.38.0/24 44901 -93.115.39.0/24 31207 -93.115.48.0/22 209519 -93.115.52.0/24 61278 -93.115.53.0/24 205275 -93.115.54.0/23 6910 -93.115.56.0/23 39737 -93.115.58.0/24 41537 -93.115.59.0/24 201117 -93.115.60.0/23 208273 -93.115.62.0/23 56550 -93.115.64.0/21 6910 -93.115.76.0/22 51559 -93.115.80.0/20 3223 -93.115.96.0/23 197922 -93.115.100.0/23 47148 -93.115.102.0/23 209519 -93.115.104.0/22 48999 -93.115.108.0/24 40975 -93.115.109.0/24 6910 -93.115.110.0/24 49021 -93.115.111.0/24 209706 -93.115.112.0/21 48881 -93.115.120.0/21 12880 -93.115.136.0/21 8926 -93.115.144.0/21 43754 -93.115.153.0/24 50660 -93.115.155.0/24 209706 -93.115.156.0/22 29119 -93.115.160.0/21 1653 -93.115.168.0/23 34762 -93.115.170.0/23 31638 -93.115.172.0/22 39531 -93.115.176.0/20 8530 -93.115.192.0/22 56478 -93.115.196.0/22 204166 -93.115.200.0/24 47602 -93.115.201.0/24 42831 -93.115.203.0/24 50939 -93.115.204.0/22 29119 -93.115.208.0/23 62343 -93.115.210.0/24 3269 -93.115.212.0/22 39263 -93.115.216.0/21 58224 -93.115.224.0/20 58224 -93.115.240.0/23 41011 -93.115.243.0/24 43376 -93.115.244.0/23 8953 -93.115.248.0/22 39758 -93.115.252.0/24 59854 -93.115.254.0/23 6910 -93.116.0.0/16 8926 -93.117.0.0/19 58224 -93.117.32.0/20 58224 -93.117.48.0/20 8926 -93.117.65.0/24 198144 -93.117.66.0/23 6830 -93.117.68.0/22 8926 -93.117.72.0/21 8926 -93.117.80.0/20 12479 -93.117.96.0/19 58224 -93.117.128.0/21 8926 -93.117.136.0/24 39855 -93.117.137.0/24 42831 -93.117.138.0/23 6830 -93.117.140.0/22 8926 -93.117.144.0/21 8926 -93.117.152.0/23 56550 -93.117.154.0/23 6830 -93.117.156.0/22 8926 -93.117.160.0/21 8926 -93.117.168.0/22 8926 -93.117.172.0/23 56550 -93.117.174.0/24 62352 -93.117.175.0/24 39737 -93.117.176.0/20 50810 -93.117.192.0/18 33915 -93.118.0.0/19 29252 -93.118.32.0/22 197922 -93.118.36.0/24 48881 -93.118.37.0/24 31638 -93.118.38.0/24 203098 -93.118.39.0/24 44277 -93.118.40.0/22 209519 -93.118.44.0/24 6663 -93.118.45.0/24 33977 -93.118.46.0/23 6830 -93.118.48.0/20 29256 -93.118.64.0/20 12479 -93.118.80.0/20 6910 -93.118.96.0/21 12880 -93.118.104.0/22 12880 -93.118.108.0/23 12880 -93.118.110.0/23 58224 -93.118.112.0/20 12880 -93.118.128.0/19 12880 -93.118.160.0/20 12880 -93.118.176.0/22 8926 -93.118.180.0/22 43754 -93.118.184.0/22 58224 -93.118.188.0/22 8926 -93.118.192.0/18 6910 -93.119.16.0/23 50563 -93.119.18.0/24 29119 -93.119.19.0/24 50563 -93.119.20.0/23 59862 -93.119.22.0/24 59862 -93.119.28.0/23 29119 -93.119.30.0/23 44717 -93.119.32.0/19 12880 -93.119.64.0/19 12880 -93.119.96.0/21 8926 -93.119.104.0/23 203523 -93.119.106.0/24 396073 -93.119.107.0/24 9009 -93.119.108.0/22 8926 -93.119.112.0/23 41496 -93.119.114.0/23 31609 -93.119.116.0/23 31609 -93.119.118.0/23 209559 -93.119.120.0/23 209559 -93.119.122.0/24 5588 -93.119.123.0/24 49981 -93.119.124.0/23 201117 -93.119.126.0/23 6830 -93.119.128.0/21 8926 -93.119.136.0/24 9050 -93.119.137.0/24 6830 -93.119.138.0/23 6830 -93.119.140.0/22 8926 -93.119.144.0/21 8926 -93.119.152.0/23 40975 -93.119.154.0/24 57180 -93.119.155.0/24 39572 -93.119.156.0/22 29119 -93.119.160.0/21 8926 -93.119.168.0/23 51832 -93.119.171.0/24 51832 -93.119.172.0/22 49298 -93.119.176.0/23 203523 -93.119.178.0/23 9009 -93.119.181.0/24 203523 -93.119.182.0/23 203523 -93.119.184.0/21 49266 -93.119.192.0/24 58337 -93.119.193.0/24 38998 -93.119.195.0/24 16157 -93.119.196.0/22 8926 -93.119.200.0/21 8926 -93.119.208.0/20 50810 -93.119.224.0/23 6830 -93.119.226.0/24 6830 -93.119.227.0/24 59854 -93.119.228.0/22 8926 -93.119.232.0/21 8926 -93.119.240.0/20 12360 -93.120.0.0/21 209104 -93.120.10.0/23 5541 -93.120.12.0/22 209105 -93.120.16.0/21 209105 -93.120.24.0/23 209105 -93.120.26.0/24 209105 -93.120.27.0/24 9009 -93.120.31.0/24 60509 -93.120.33.0/24 9009 -93.120.34.0/24 48976 -93.120.35.0/24 209104 -93.120.36.0/22 209104 -93.120.40.0/23 209104 -93.120.42.0/24 60100 -93.120.43.0/24 48266 -93.120.44.0/23 34744 -93.120.46.0/24 48976 -93.120.47.0/24 34744 -93.120.48.0/20 9009 -93.120.68.0/23 9009 -93.120.70.0/24 9009 -93.120.74.0/24 50816 -93.120.84.0/24 9009 -93.120.91.0/24 202203 -93.120.94.0/24 50835 -93.120.95.0/24 48266 -93.120.128.0/17 12389 -93.121.0.0/17 44574 -93.121.128.0/17 21351 -93.122.0.0/20 48951 -93.122.16.0/20 20570 -93.122.32.0/20 20570 -93.122.48.0/21 20570 -93.122.56.0/21 48951 -93.122.64.0/18 48951 -93.122.128.0/17 8953 -93.123.0.0/22 208389 -93.123.4.0/24 208389 -93.123.8.0/24 34224 -93.123.10.0/24 201133 -93.123.12.0/24 34224 -93.123.13.0/24 198860 -93.123.16.0/23 34224 -93.123.18.0/24 34224 -93.123.19.0/24 15504 -93.123.20.0/24 34224 -93.123.21.0/24 47748 -93.123.22.0/24 43561 -93.123.23.0/24 31490 -93.123.24.0/24 43561 -93.123.26.0/23 43561 -93.123.28.0/23 34224 -93.123.30.0/23 43561 -93.123.32.0/22 34224 -93.123.36.0/23 34224 -93.123.38.0/24 34224 -93.123.39.0/24 43561 -93.123.40.0/21 34577 -93.123.48.0/20 43068 -93.123.64.0/24 34224 -93.123.65.0/24 43548 -93.123.66.0/23 34577 -93.123.68.0/22 43561 -93.123.73.0/24 201133 -93.123.74.0/23 48057 -93.123.76.0/22 43561 -93.123.80.0/22 43561 -93.123.85.0/24 43561 -93.123.86.0/23 43561 -93.123.88.0/21 43561 -93.123.96.0/22 34577 -93.123.100.0/23 34577 -93.123.102.0/24 34224 -93.123.103.0/24 47748 -93.123.104.0/22 202129 -93.123.108.0/24 34224 -93.123.109.0/24 48584 -93.123.110.0/24 199871 -93.123.112.0/22 43561 -93.123.116.0/23 43561 -93.123.119.0/24 43561 -93.123.120.0/21 44851 -93.123.128.0/17 35539 -93.124.0.0/17 12389 -93.124.128.0/17 3292 -93.125.0.0/24 42772 -93.125.1.0/24 50590 -93.125.2.0/23 42772 -93.125.4.0/24 20852 -93.125.5.0/24 42772 -93.125.6.0/24 42772 -93.125.7.0/24 20852 -93.125.8.0/23 42772 -93.125.10.0/24 42772 -93.125.11.0/24 20852 -93.125.12.0/22 42772 -93.125.16.0/23 42772 -93.125.18.0/24 56740 -93.125.19.0/24 60337 -93.125.20.0/22 60330 -93.125.24.0/24 60330 -93.125.26.0/24 21305 -93.125.27.0/24 42036 -93.125.29.0/24 50929 -93.125.30.0/23 6697 -93.125.33.0/24 56920 -93.125.34.0/24 60367 -93.125.35.0/24 50686 -93.125.36.0/23 48743 -93.125.38.0/24 6697 -93.125.39.0/24 21062 -93.125.41.0/24 50492 -93.125.42.0/24 50685 -93.125.43.0/24 49711 -93.125.44.0/23 42036 -93.125.48.0/24 6697 -93.125.49.0/24 50685 -93.125.50.0/24 50593 -93.125.51.0/24 48743 -93.125.52.0/24 50334 -93.125.53.0/24 6697 -93.125.54.0/24 50334 -93.125.58.0/24 56497 -93.125.59.0/24 202324 -93.125.62.0/23 42772 -93.125.64.0/22 42772 -93.125.68.0/23 42772 -93.125.70.0/24 51276 -93.125.71.0/24 6697 -93.125.72.0/24 42036 -93.125.73.0/24 61235 -93.125.74.0/24 42772 -93.125.75.0/24 21305 -93.125.76.0/22 42036 -93.125.80.0/23 56498 -93.125.82.0/24 60330 -93.125.83.0/24 42772 -93.125.84.0/24 42772 -93.125.85.0/24 20852 -93.125.86.0/24 20852 -93.125.87.0/24 44397 -93.125.88.0/22 42036 -93.125.92.0/24 42036 -93.125.93.0/24 56497 -93.125.94.0/23 56497 -93.125.96.0/24 50176 -93.125.97.0/24 210153 -93.125.98.0/24 49526 -93.125.99.0/24 6697 -93.125.100.0/24 42772 -93.125.101.0/24 20852 -93.125.102.0/24 20852 -93.125.103.0/24 42772 -93.125.104.0/22 31143 -93.125.108.0/24 50345 -93.125.109.0/24 49243 -93.125.110.0/23 49243 -93.125.112.0/24 42772 -93.125.113.0/24 35587 -93.125.114.0/24 56740 -93.125.115.0/24 50492 -93.125.116.0/23 42772 -93.125.118.0/24 50176 -93.125.120.0/24 50934 -93.125.121.0/24 50294 -93.125.122.0/24 56742 -93.125.123.0/24 25106 -93.125.124.0/24 25106 -93.125.125.0/24 56498 -93.125.126.0/24 42036 -93.125.127.0/24 48743 -93.125.128.0/17 15670 -93.126.0.0/18 44375 -93.126.64.0/18 35530 -93.126.128.0/17 31126 -93.127.1.0/24 6703 -93.127.2.0/23 6703 -93.127.4.0/22 6703 -93.127.8.0/22 6703 -93.127.16.0/20 6703 -93.127.32.0/19 6703 -93.127.64.0/20 6703 -93.127.95.0/24 6703 -93.127.96.0/19 6703 -93.127.128.0/19 62255 -93.127.160.0/19 31400 -93.127.192.0/19 31400 -93.127.224.0/19 8893 -93.128.0.0/13 6805 -93.136.0.0/14 5391 -93.140.0.0/15 5391 -93.142.0.0/18 5391 -93.142.64.0/19 5391 -93.142.96.0/20 5391 -93.142.112.0/21 5391 -93.142.120.0/22 5391 -93.142.124.0/24 5391 -93.142.125.0/24 6453 -93.142.126.0/23 5391 -93.142.128.0/17 5391 -93.143.0.0/16 5391 -93.144.0.0/14 30722 -93.148.0.0/15 30722 -93.150.0.0/16 30722 -93.151.0.0/17 44957 -93.151.128.0/17 30722 -93.152.0.0/17 8190 -93.152.128.0/20 31250 -93.152.144.0/22 31250 -93.152.152.0/21 31250 -93.152.160.0/19 31250 -93.152.192.0/21 31250 -93.152.200.0/22 31250 -93.152.204.0/24 31250 -93.152.234.0/23 8808 -93.153.0.0/18 13036 -93.153.64.0/19 13036 -93.153.96.0/22 13036 -93.153.100.0/23 5588 -93.153.102.0/23 13036 -93.153.104.0/21 13036 -93.153.112.0/21 13036 -93.153.120.0/22 13036 -93.153.124.0/22 5588 -93.153.128.0/17 20632 -93.154.0.0/17 1136 -93.154.128.0/17 15855 -93.155.98.0/23 47331 -93.155.100.0/23 47331 -93.155.102.0/24 47331 -93.155.104.0/22 47331 -93.155.108.0/23 47331 -93.155.128.0/23 12615 -93.155.130.0/23 47453 -93.155.132.0/22 12615 -93.155.136.0/22 12615 -93.155.140.0/23 44525 -93.155.142.0/24 12615 -93.155.143.0/24 41019 -93.155.144.0/21 44313 -93.155.152.0/21 12615 -93.155.160.0/23 41019 -93.155.162.0/24 47453 -93.155.163.0/24 12615 -93.155.164.0/22 44313 -93.155.168.0/24 39251 -93.155.169.0/24 47453 -93.155.170.0/23 12615 -93.155.172.0/22 12615 -93.155.176.0/23 44247 -93.155.178.0/23 12615 -93.155.180.0/23 41019 -93.155.182.0/23 12615 -93.155.184.0/21 12615 -93.155.192.0/21 44247 -93.155.200.0/24 56906 -93.155.201.0/24 12615 -93.155.202.0/23 12615 -93.155.204.0/22 12615 -93.155.208.0/21 12615 -93.155.216.0/21 205352 -93.155.224.0/22 41019 -93.155.228.0/22 12615 -93.155.232.0/21 12615 -93.155.240.0/22 12615 -93.155.244.0/22 41019 -93.155.248.0/23 41019 -93.155.250.0/23 12615 -93.155.252.0/22 12615 -93.156.0.0/16 12946 -93.157.0.0/21 47207 -93.157.8.0/23 25141 -93.157.10.0/24 25141 -93.157.11.0/24 31113 -93.157.12.0/22 25141 -93.157.16.0/21 24758 -93.157.24.0/21 29576 -93.157.32.0/21 31004 -93.157.40.0/21 47370 -93.157.48.0/21 12586 -93.157.56.0/23 47454 -93.157.58.0/24 59668 -93.157.59.0/24 204822 -93.157.60.0/24 12389 -93.157.61.0/24 204477 -93.157.62.0/23 43350 -93.157.64.0/21 29665 -93.157.72.0/21 40961 -93.157.80.0/22 41714 -93.157.84.0/23 41714 -93.157.87.0/24 41714 -93.157.88.0/21 50153 -93.157.96.0/21 34360 -93.157.112.0/21 35007 -93.157.120.0/21 29329 -93.157.128.0/21 197879 -93.157.136.0/21 9150 -93.157.144.0/21 43727 -93.157.152.0/21 201819 -93.157.160.0/21 47844 -93.157.168.0/21 49403 -93.157.188.0/24 206375 -93.157.189.0/24 34984 -93.157.190.0/24 206375 -93.157.191.0/24 34984 -93.157.192.0/21 57888 -93.157.201.0/24 3320 -93.157.202.0/24 44139 -93.157.203.0/24 41029 -93.157.204.0/24 48834 -93.157.206.0/24 60956 -93.157.207.0/24 204506 -93.157.208.0/21 15974 -93.157.216.0/21 8190 -93.157.232.0/21 47914 -93.157.240.0/21 47963 -93.157.248.0/22 57128 -93.157.252.0/22 60095 -93.158.0.0/18 47866 -93.158.64.0/22 39369 -93.158.68.0/22 12552 -93.158.72.0/23 12552 -93.158.74.0/23 39369 -93.158.76.0/24 12552 -93.158.77.0/24 39369 -93.158.78.0/24 12552 -93.158.79.0/24 39369 -93.158.80.0/23 39369 -93.158.82.0/23 12552 -93.158.84.0/23 12552 -93.158.86.0/24 12552 -93.158.87.0/24 39369 -93.158.88.0/22 12552 -93.158.92.0/23 12552 -93.158.94.0/24 39369 -93.158.95.0/24 12552 -93.158.96.0/23 39369 -93.158.98.0/23 12552 -93.158.100.0/24 12552 -93.158.101.0/24 39369 -93.158.102.0/23 12552 -93.158.104.0/23 12552 -93.158.106.0/24 39369 -93.158.107.0/24 12552 -93.158.108.0/23 12552 -93.158.110.0/23 39369 -93.158.112.0/24 12552 -93.158.113.0/24 39369 -93.158.114.0/23 39369 -93.158.116.0/22 39369 -93.158.120.0/21 39369 -93.158.128.0/18 13238 -93.158.192.0/21 200044 -93.158.200.0/21 50673 -93.158.208.0/20 50673 -93.158.224.0/21 197078 -93.158.232.0/22 49242 -93.158.236.0/22 60503 -93.158.240.0/20 60569 -93.159.0.0/18 12741 -93.159.64.0/19 5391 -93.159.96.0/20 21413 -93.159.112.0/23 21413 -93.159.114.0/24 21413 -93.159.115.0/24 201600 -93.159.116.0/22 21413 -93.159.120.0/21 21413 -93.159.128.0/19 49102 -93.159.160.0/20 49102 -93.159.176.0/22 49102 -93.159.180.0/23 49102 -93.159.182.0/24 49102 -93.159.183.0/24 62201 -93.159.184.0/24 199774 -93.159.185.0/24 202061 -93.159.186.0/24 198187 -93.159.187.0/24 205148 -93.159.188.0/23 62201 -93.159.190.0/23 49785 -93.159.192.0/21 196838 -93.159.200.0/21 47549 -93.159.208.0/21 201011 -93.159.216.0/21 50164 -93.159.224.0/23 41983 -93.159.226.0/24 200107 -93.159.227.0/24 41983 -93.159.228.0/22 200107 -93.159.232.0/21 62423 -93.159.242.0/23 39785 -93.159.244.0/22 39785 -93.159.248.0/21 34953 -93.160.0.0/13 3292 -93.168.0.0/15 39891 -93.170.0.0/24 60612 -93.170.1.0/24 60754 -93.170.2.0/24 60573 -93.170.3.0/24 49184 -93.170.4.0/24 29035 -93.170.5.0/24 58347 -93.170.6.0/24 59552 -93.170.7.0/24 60612 -93.170.8.0/24 59430 -93.170.9.0/24 200123 -93.170.10.0/24 44546 -93.170.11.0/24 62447 -93.170.12.0/24 31133 -93.170.13.0/24 207896 -93.170.14.0/24 3180 -93.170.15.0/24 59888 -93.170.16.0/21 47551 -93.170.24.0/24 44546 -93.170.25.0/24 60777 -93.170.26.0/24 35273 -93.170.27.0/24 25229 -93.170.28.0/22 50438 -93.170.32.0/23 51930 -93.170.34.0/24 49682 -93.170.35.0/24 25015 -93.170.36.0/22 25548 -93.170.40.0/22 35325 -93.170.44.0/22 197335 -93.170.48.0/22 61344 -93.170.52.0/24 62150 -93.170.53.0/24 35297 -93.170.54.0/24 6849 -93.170.55.0/24 61312 -93.170.56.0/21 57888 -93.170.64.0/21 43656 -93.170.72.0/23 61964 -93.170.74.0/24 44546 -93.170.75.0/24 61965 -93.170.76.0/24 12722 -93.170.77.0/24 197520 -93.170.78.0/24 209863 -93.170.79.0/24 50245 -93.170.80.0/24 56527 -93.170.81.0/24 16066 -93.170.82.0/24 62247 -93.170.83.0/24 1 -93.170.84.0/22 39906 -93.170.88.0/24 44546 -93.170.89.0/24 42350 -93.170.90.0/23 57197 -93.170.92.0/23 2591 -93.170.94.0/23 60135 -93.170.96.0/24 48611 -93.170.97.0/24 59762 -93.170.98.0/23 62257 -93.170.100.0/24 210188 -93.170.101.0/24 61398 -93.170.102.0/24 44546 -93.170.103.0/24 34503 -93.170.104.0/23 51812 -93.170.106.0/23 198056 -93.170.108.0/22 49963 -93.170.112.0/23 206011 -93.170.114.0/23 197520 -93.170.116.0/22 35004 -93.170.120.0/23 51812 -93.170.122.0/24 208038 -93.170.123.0/24 35196 -93.170.124.0/22 50916 -93.170.128.0/22 57494 -93.170.132.0/23 61384 -93.170.134.0/24 35415 -93.170.135.0/24 61988 -93.170.136.0/23 50043 -93.170.138.0/23 51812 -93.170.140.0/24 61240 -93.170.141.0/24 201069 -93.170.142.0/24 41301 -93.170.143.0/24 41245 -93.170.144.0/20 51121 -93.170.160.0/22 50025 -93.170.164.0/22 44546 -93.170.168.0/23 21100 -93.170.170.0/23 42066 -93.170.172.0/23 51812 -93.170.174.0/24 35783 -93.170.175.0/24 61312 -93.170.176.0/23 43724 -93.170.178.0/23 41271 -93.170.180.0/22 61390 -93.170.184.0/24 42772 -93.170.185.0/24 44546 -93.170.186.0/24 6849 -93.170.187.0/24 201069 -93.170.188.0/23 62327 -93.170.190.0/24 62314 -93.170.191.0/24 62309 -93.170.192.0/21 29363 -93.170.200.0/21 61308 -93.170.208.0/22 43533 -93.170.212.0/22 62256 -93.170.216.0/24 40983 -93.170.217.0/24 39667 -93.170.218.0/24 41102 -93.170.219.0/24 41119 -93.170.220.0/22 41106 -93.170.224.0/21 201746 -93.170.232.0/22 51685 -93.170.236.0/24 50685 -93.170.237.0/24 44546 -93.170.238.0/23 50685 -93.170.240.0/23 62430 -93.170.242.0/23 44546 -93.170.244.0/24 39631 -93.170.245.0/24 9058 -93.170.246.0/23 50182 -93.170.248.0/22 60573 -93.170.252.0/24 60337 -93.170.253.0/24 21100 -93.170.254.0/23 8850 -93.171.0.0/22 21127 -93.171.4.0/24 208876 -93.171.5.0/24 20536 -93.171.6.0/24 41245 -93.171.7.0/24 56387 -93.171.8.0/23 56387 -93.171.10.0/23 60603 -93.171.12.0/24 31552 -93.171.13.0/24 201069 -93.171.14.0/23 201069 -93.171.16.0/20 201069 -93.171.32.0/23 59734 -93.171.34.0/23 50334 -93.171.36.0/22 50334 -93.171.40.0/22 61390 -93.171.44.0/24 50676 -93.171.45.0/24 44546 -93.171.46.0/24 50676 -93.171.47.0/24 44546 -93.171.48.0/20 42772 -93.171.64.0/21 41124 -93.171.72.0/22 43060 -93.171.76.0/23 44359 -93.171.78.0/23 197520 -93.171.80.0/20 60072 -93.171.96.0/23 49184 -93.171.98.0/23 61406 -93.171.100.0/22 61406 -93.171.104.0/21 42772 -93.171.112.0/20 42772 -93.171.128.0/22 51874 -93.171.132.0/23 198056 -93.171.134.0/24 62330 -93.171.135.0/24 62366 -93.171.136.0/24 208796 -93.171.137.0/24 44546 -93.171.138.0/24 6849 -93.171.139.0/24 59718 -93.171.140.0/23 44429 -93.171.142.0/24 21140 -93.171.143.0/24 20688 -93.171.144.0/21 57016 -93.171.152.0/24 61312 -93.171.153.0/24 49393 -93.171.154.0/24 51500 -93.171.155.0/24 41173 -93.171.156.0/23 51214 -93.171.158.0/23 201094 -93.171.160.0/23 50685 -93.171.162.0/24 62379 -93.171.163.0/24 57830 -93.171.164.0/23 61433 -93.171.166.0/23 57562 -93.171.168.0/24 58047 -93.171.169.0/24 61407 -93.171.170.0/23 61384 -93.171.172.0/24 59826 -93.171.173.0/24 59825 -93.171.174.0/24 44546 -93.171.175.0/24 201069 -93.171.176.0/24 61424 -93.171.177.0/24 42704 -93.171.178.0/23 204722 -93.171.180.0/24 61403 -93.171.181.0/24 48949 -93.171.182.0/23 61390 -93.171.184.0/24 61376 -93.171.185.0/24 61371 -93.171.186.0/24 208798 -93.171.187.0/24 57369 -93.171.188.0/22 50025 -93.171.192.0/24 61308 -93.171.193.0/24 44546 -93.171.194.0/24 44546 -93.171.195.0/24 61308 -93.171.196.0/22 61308 -93.171.200.0/24 262254 -93.171.201.0/24 50245 -93.171.202.0/23 50245 -93.171.204.0/24 61249 -93.171.205.0/24 42704 -93.171.206.0/24 61276 -93.171.207.0/24 61277 -93.171.208.0/24 49502 -93.171.209.0/24 44200 -93.171.210.0/23 37560 -93.171.212.0/24 62257 -93.171.213.0/24 61193 -93.171.214.0/24 204584 -93.171.215.0/24 61196 -93.171.216.0/23 49367 -93.171.218.0/24 201069 -93.171.219.0/24 61123 -93.171.220.0/22 49189 -93.171.224.0/24 61118 -93.171.225.0/24 61116 -93.171.226.0/24 204336 -93.171.227.0/24 208605 -93.171.228.0/23 57764 -93.171.230.0/24 43350 -93.171.231.0/24 201069 -93.171.232.0/22 62360 -93.171.236.0/22 50400 -93.171.240.0/22 8870 -93.171.244.0/24 16227 -93.171.245.0/24 21308 -93.171.246.0/23 8870 -93.171.248.0/22 58015 -93.171.252.0/22 208067 -93.172.0.0/15 1680 -93.174.0.0/21 48348 -93.174.8.0/23 47871 -93.174.10.0/24 20860 -93.174.16.0/21 9044 -93.174.24.0/21 41676 -93.174.32.0/22 34704 -93.174.36.0/23 34704 -93.174.39.0/24 34704 -93.174.40.0/21 57205 -93.174.48.0/21 47440 -93.174.64.0/21 35485 -93.174.72.0/21 47441 -93.174.80.0/21 47443 -93.174.88.0/21 202425 -93.174.96.0/23 47712 -93.174.98.0/23 35269 -93.174.100.0/23 35269 -93.174.104.0/22 25459 -93.174.108.0/23 25459 -93.174.114.0/23 42132 -93.174.116.0/22 42132 -93.174.120.0/21 47521 -93.174.128.0/21 47478 -93.174.136.0/21 31727 -93.174.144.0/21 48703 -93.174.152.0/21 34816 -93.174.160.0/24 5588 -93.174.161.0/24 49150 -93.174.162.0/24 57691 -93.174.163.0/24 41181 -93.174.164.0/24 57034 -93.174.165.0/24 51656 -93.174.166.0/24 50939 -93.174.167.0/24 5588 -93.174.173.0/24 47870 -93.174.176.0/21 43451 -93.174.184.0/21 47506 -93.174.192.0/21 20904 -93.174.200.0/21 197219 -93.174.208.0/24 48375 -93.174.216.0/21 47563 -93.174.224.0/21 8595 -93.174.232.0/24 44782 -93.174.239.0/24 32782 -93.174.240.0/21 24739 -93.174.248.0/21 47523 -93.175.0.0/19 5467 -93.175.32.0/19 47997 -93.175.64.0/19 30838 -93.175.96.0/19 29596 -93.175.128.0/20 35745 -93.175.146.0/23 12654 -93.175.148.0/22 12654 -93.175.159.0/24 201965 -93.175.160.0/20 35463 -93.175.176.0/20 25525 -93.175.192.0/20 47702 -93.175.208.0/20 47359 -93.175.224.0/20 47889 -93.175.240.0/22 209791 -93.175.244.0/23 8808 -93.175.246.0/24 210305 -93.175.247.0/24 210058 -93.175.248.0/23 203848 -93.175.250.0/24 203848 -93.176.0.0/19 20776 -93.176.64.0/18 31027 -93.176.128.0/18 15704 -93.176.192.0/18 30851 -93.177.0.0/19 12389 -93.177.32.0/21 12389 -93.177.40.0/22 12389 -93.177.44.0/23 12389 -93.177.46.0/23 8443 -93.177.48.0/20 12389 -93.177.64.0/22 197540 -93.177.69.0/24 200780 -93.177.70.0/23 200780 -93.177.72.0/22 9009 -93.177.76.0/22 55933 -93.177.84.0/22 20473 -93.177.88.0/22 210104 -93.177.92.0/22 207967 -93.177.96.0/22 200282 -93.177.100.0/24 42724 -93.177.101.0/24 61135 -93.177.102.0/23 43260 -93.177.104.0/22 35811 -93.177.108.0/22 33657 -93.177.112.0/22 203178 -93.177.116.0/22 202723 -93.177.120.0/22 15701 -93.177.128.0/18 16010 -93.177.192.0/18 20910 -93.178.0.0/18 43766 -93.178.64.0/19 12389 -93.178.96.0/22 21479 -93.178.100.0/22 12389 -93.178.104.0/22 21479 -93.178.108.0/22 12389 -93.178.112.0/21 12389 -93.178.120.0/22 12389 -93.178.124.0/23 12389 -93.178.126.0/23 21479 -93.178.128.0/18 3292 -93.178.192.0/22 6703 -93.178.196.0/22 12883 -93.178.200.0/23 6703 -93.178.202.0/23 12883 -93.178.204.0/22 12883 -93.178.208.0/21 6703 -93.178.216.0/21 12883 -93.178.224.0/22 12883 -93.178.228.0/23 6703 -93.178.230.0/23 12883 -93.178.232.0/22 12883 -93.178.236.0/23 6703 -93.178.238.0/23 12883 -93.178.240.0/20 6703 -93.179.0.0/19 2116 -93.179.66.0/24 199560 -93.179.67.0/24 39150 -93.179.68.0/23 57311 -93.179.70.0/23 61263 -93.179.72.0/21 59793 -93.179.80.0/21 59793 -93.179.92.0/24 200687 -93.179.93.0/24 59975 -93.179.94.0/24 59975 -93.179.96.0/21 25820 -93.179.104.0/21 50596 -93.179.112.0/21 25820 -93.179.120.0/24 60980 -93.179.121.0/24 49352 -93.179.122.0/23 61263 -93.179.124.0/22 25820 -93.179.185.0/24 44957 -93.179.192.0/18 31242 -93.180.0.0/18 2848 -93.180.64.0/21 48635 -93.180.72.0/21 197965 -93.180.80.0/21 199213 -93.180.88.0/24 57559 -93.180.94.0/24 48218 -93.180.96.0/19 42560 -93.180.132.0/22 61135 -93.180.136.0/21 199320 -93.180.144.0/21 198252 -93.180.152.0/24 34011 -93.180.153.0/24 8972 -93.180.154.0/23 34011 -93.180.156.0/23 34011 -93.180.158.0/23 8972 -93.180.160.0/19 30793 -93.180.192.0/18 31343 -93.181.0.0/18 42965 -93.181.64.0/18 15425 -93.181.128.0/18 43939 -93.181.192.0/19 12389 -93.181.224.0/23 13118 -93.181.226.0/23 12389 -93.181.228.0/22 12389 -93.181.232.0/21 12389 -93.181.240.0/20 12389 -93.182.0.0/18 41802 -93.182.64.0/19 44558 -93.182.96.0/20 44558 -93.182.112.0/22 44558 -93.182.117.0/24 44558 -93.182.118.0/23 44558 -93.182.120.0/21 44558 -93.182.128.0/18 47155 -93.182.192.0/18 47206 -93.183.0.0/21 200656 -93.183.8.0/23 18666 -93.183.10.0/23 10455 -93.183.12.0/23 200656 -93.183.14.0/24 4847 -93.183.15.0/24 200656 -93.183.16.0/23 28723 -93.183.18.0/24 4847 -93.183.19.0/24 39784 -93.183.20.0/23 200656 -93.183.24.0/23 200656 -93.183.26.0/24 200656 -93.183.28.0/23 4755 -93.183.30.0/24 18105 -93.183.31.0/24 200656 -93.183.64.0/23 47240 -93.183.66.0/24 209376 -93.183.68.0/22 39289 -93.183.72.0/21 39289 -93.183.80.0/21 47240 -93.183.88.0/22 49342 -93.183.92.0/22 34580 -93.183.96.0/22 47240 -93.183.124.0/22 39289 -93.183.128.0/18 25374 -93.183.192.0/24 21219 -93.183.193.0/24 3326 -93.183.194.0/23 21219 -93.183.196.0/24 21219 -93.183.197.0/24 3326 -93.183.198.0/23 21219 -93.183.200.0/21 21219 -93.183.208.0/22 21219 -93.183.212.0/23 21219 -93.183.214.0/23 3326 -93.183.216.0/21 3326 -93.183.224.0/21 3326 -93.183.232.0/22 3326 -93.183.236.0/24 21075 -93.183.237.0/24 21219 -93.183.238.0/24 21075 -93.183.239.0/24 21219 -93.183.240.0/20 3326 -93.184.0.0/20 47253 -93.184.16.0/20 21232 -93.184.32.0/20 13193 -93.184.48.0/20 25394 -93.184.64.0/20 29405 -93.184.80.0/20 197423 -93.184.96.0/23 31477 -93.184.98.0/24 31477 -93.184.99.0/24 51923 -93.184.100.0/23 31477 -93.184.102.0/24 51923 -93.184.103.0/24 31477 -93.184.104.0/21 31477 -93.184.112.0/20 29300 -93.184.128.0/20 43066 -93.184.144.0/20 47288 -93.184.160.0/22 47522 -93.184.164.0/23 34527 -93.184.166.0/23 47522 -93.184.168.0/21 47522 -93.184.176.0/20 47297 -93.184.192.0/20 47304 -93.184.208.0/23 15133 -93.184.211.0/24 15133 -93.184.215.0/24 15133 -93.184.216.0/22 15133 -93.184.220.0/23 15133 -93.184.224.0/20 39280 -93.184.240.0/20 47351 -93.185.0.0/20 56456 -93.185.16.0/20 12389 -93.185.32.0/20 49800 -93.185.48.0/20 15935 -93.185.64.0/20 35104 -93.185.80.0/20 9051 -93.185.96.0/20 43541 -93.185.112.0/20 49289 -93.185.128.0/20 39912 -93.185.160.0/22 60781 -93.185.164.0/22 48430 -93.185.168.0/22 203061 -93.185.172.0/22 204895 -93.185.176.0/20 38951 -93.185.192.0/20 35271 -93.185.208.0/22 34092 -93.185.212.0/23 34092 -93.185.214.0/24 60860 -93.185.215.0/24 34092 -93.185.216.0/21 57033 -93.185.224.0/20 41833 -93.185.240.0/20 61307 -93.186.0.0/20 9063 -93.186.16.0/20 18705 -93.186.32.0/20 3213 -93.186.48.0/20 49531 -93.186.64.0/24 52116 -93.186.65.0/24 28964 -93.186.66.0/24 9125 -93.186.67.0/24 52116 -93.186.68.0/24 52116 -93.186.69.0/24 9125 -93.186.70.0/24 9125 -93.186.71.0/24 52116 -93.186.72.0/24 52116 -93.186.73.0/24 9125 -93.186.74.0/23 200923 -93.186.76.0/24 200923 -93.186.77.0/24 28964 -93.186.78.0/24 200923 -93.186.79.0/24 9125 -93.186.88.0/22 47473 -93.186.92.0/24 47473 -93.186.95.0/24 47473 -93.186.96.0/20 41268 -93.186.112.0/21 44565 -93.186.120.0/22 44565 -93.186.124.0/24 44565 -93.186.127.0/24 44565 -93.186.128.0/21 6762 -93.186.136.0/22 6762 -93.186.144.0/20 48945 -93.186.160.0/22 12586 -93.186.164.0/22 31147 -93.186.168.0/22 31147 -93.186.172.0/22 12586 -93.186.176.0/20 20559 -93.186.192.0/20 24961 -93.186.208.0/20 34797 -93.186.224.0/20 47541 -93.186.240.0/20 31034 -93.187.0.0/21 8681 -93.187.8.0/21 50295 -93.187.16.0/21 19855 -93.187.24.0/21 43960 -93.187.32.0/21 56484 -93.187.40.0/21 33930 -93.187.48.0/21 3257 -93.187.56.0/21 48097 -93.187.64.0/22 39427 -93.187.72.0/21 57573 -93.187.80.0/21 41222 -93.187.88.0/21 42933 -93.187.98.0/23 60771 -93.187.100.0/24 60771 -93.187.102.0/23 60771 -93.187.104.0/21 47727 -93.187.112.0/21 20621 -93.187.120.0/21 50792 -93.187.128.0/22 55933 -93.187.132.0/22 3348 -93.187.144.0/21 8680 -93.187.152.0/21 47620 -93.187.160.0/21 47623 -93.187.168.0/21 20860 -93.187.176.0/22 48123 -93.187.180.0/22 48124 -93.187.184.0/21 48223 -93.187.192.0/21 48027 -93.187.200.0/21 43391 -93.187.208.0/21 47617 -93.187.216.0/22 54825 -93.187.220.0/22 62370 -93.187.224.0/22 47631 -93.187.228.0/24 47631 -93.187.230.0/23 47631 -93.187.232.0/21 8972 -93.187.240.0/22 47663 -93.187.247.0/24 47663 -93.187.248.0/21 25560 -93.188.0.0/21 39570 -93.188.8.0/21 44327 -93.188.16.0/21 12836 -93.188.24.0/21 44974 -93.188.32.0/21 25521 -93.188.40.0/21 44964 -93.188.48.0/21 200521 -93.188.56.0/22 35684 -93.188.64.0/22 41960 -93.188.68.0/22 39855 -93.188.72.0/22 29655 -93.188.76.0/23 60384 -93.188.78.0/24 60016 -93.188.79.0/24 29655 -93.188.80.0/21 43746 -93.188.88.0/22 2116 -93.188.96.0/21 43989 -93.188.104.0/21 33811 -93.188.112.0/21 47178 -93.188.120.0/21 44999 -93.188.129.0/24 36408 -93.188.132.0/24 36408 -93.188.136.0/23 44998 -93.188.138.0/24 44998 -93.188.140.0/22 44998 -93.188.144.0/21 25540 -93.188.152.0/23 47151 -93.188.154.0/24 47151 -93.188.155.0/24 59729 -93.188.156.0/22 47151 -93.188.160.0/21 47583 -93.188.168.0/21 25593 -93.188.176.0/21 8282 -93.188.184.0/21 47181 -93.188.192.0/21 51375 -93.188.200.0/22 207258 -93.188.204.0/24 47156 -93.188.205.0/24 208058 -93.188.206.0/23 44676 -93.188.208.0/23 28769 -93.188.210.0/24 28769 -93.188.215.0/24 28769 -93.188.216.0/21 45047 -93.188.224.0/21 45041 -93.188.232.0/23 16245 -93.188.234.0/24 2116 -93.188.235.0/24 36351 -93.188.236.0/24 16245 -93.188.240.0/23 34086 -93.188.242.0/24 6878 -93.188.243.0/24 34086 -93.188.244.0/22 34086 -93.188.248.0/21 15879 -93.189.0.0/21 39458 -93.189.8.0/22 47313 -93.189.12.0/22 15774 -93.189.16.0/21 41829 -93.189.24.0/21 44133 -93.189.32.0/21 45037 -93.189.40.0/21 41853 -93.189.48.0/21 15378 -93.189.56.0/23 56630 -93.189.58.0/24 56630 -93.189.59.0/24 49287 -93.189.60.0/22 56630 -93.189.64.0/21 12347 -93.189.80.0/21 29000 -93.189.88.0/21 49635 -93.189.96.0/21 30815 -93.189.112.0/21 47116 -93.189.120.0/22 201942 -93.189.124.0/23 209938 -93.189.126.0/23 43443 -93.189.128.0/22 24586 -93.189.136.0/21 47187 -93.189.144.0/22 12555 -93.189.148.0/24 61037 -93.189.149.0/24 12555 -93.189.150.0/24 12555 -93.189.151.0/24 50058 -93.189.152.0/21 12843 -93.189.160.0/21 8681 -93.189.168.0/22 47138 -93.189.172.0/23 47138 -93.189.174.0/23 43140 -93.189.176.0/23 47209 -93.189.179.0/24 47209 -93.189.184.0/21 47902 -93.189.192.0/22 47146 -93.189.200.0/21 41786 -93.189.208.0/21 28937 -93.189.216.0/21 43314 -93.189.224.0/21 199102 -93.189.232.0/21 29430 -93.189.240.0/21 21503 -93.189.248.0/22 13016 -93.190.0.0/23 47169 -93.190.2.0/24 42232 -93.190.3.0/24 47169 -93.190.4.0/22 47169 -93.190.8.0/23 209737 -93.190.10.0/24 209737 -93.190.11.0/24 60721 -93.190.12.0/24 43260 -93.190.13.0/24 209737 -93.190.14.0/24 43260 -93.190.15.0/24 209737 -93.190.16.0/21 47586 -93.190.24.0/23 47188 -93.190.36.0/22 50349 -93.190.40.0/21 6849 -93.190.48.0/21 47317 -93.190.56.0/21 5588 -93.190.64.0/21 47215 -93.190.72.0/21 47176 -93.190.80.0/21 200163 -93.190.88.0/21 30962 -93.190.96.0/21 39662 -93.190.104.0/21 47433 -93.190.112.0/21 196881 -93.190.120.0/24 47865 -93.190.128.0/21 6881 -93.190.136.0/21 49981 -93.190.144.0/21 25409 -93.190.152.0/24 8318 -93.190.160.0/21 47222 -93.190.168.0/21 47227 -93.190.176.0/21 39047 -93.190.184.0/22 47339 -93.190.188.0/23 47339 -93.190.190.0/24 47339 -93.190.191.0/24 47973 -93.190.192.0/22 28726 -93.190.198.0/23 28726 -93.190.200.0/21 47236 -93.190.208.0/21 47293 -93.190.216.0/24 43260 -93.190.217.0/24 209737 -93.190.218.0/23 43260 -93.190.220.0/22 60781 -93.190.224.0/21 31376 -93.190.232.0/21 42652 -93.190.240.0/23 200590 -93.190.244.0/24 64249 -93.190.245.0/24 60781 -93.190.246.0/23 64249 -93.190.248.0/21 21473 -93.191.0.0/21 47863 -93.191.8.0/21 28917 -93.191.16.0/21 31261 -93.191.24.0/21 31742 -93.191.32.0/21 47264 -93.191.40.0/21 47332 -93.191.48.0/21 38927 -93.191.56.0/23 34139 -93.191.58.0/24 8492 -93.191.59.0/24 31430 -93.191.60.0/24 8492 -93.191.61.0/24 25227 -93.191.62.0/24 25227 -93.191.63.0/24 8492 -93.191.64.0/21 9155 -93.191.72.0/21 12714 -93.191.80.0/21 47355 -93.191.88.0/21 51760 -93.191.96.0/21 42772 -93.191.104.0/21 35753 -93.191.112.0/22 201749 -93.191.116.0/24 35461 -93.191.120.0/21 41369 -93.191.128.0/21 35470 -93.191.136.0/21 48846 -93.191.144.0/22 19137 -93.191.152.0/21 48854 -93.191.160.0/21 47372 -93.191.168.0/23 32787 -93.191.171.0/24 49036 -93.191.174.0/24 49882 -93.191.175.0/24 49846 -93.191.176.0/21 42912 -93.191.184.0/21 34510 -93.191.192.0/23 47448 -93.191.194.0/23 209924 -93.191.196.0/24 47448 -93.191.197.0/24 209924 -93.191.198.0/24 201461 -93.191.199.0/24 47448 -93.191.200.0/21 8680 -93.191.208.0/22 47409 -93.191.213.0/24 47409 -93.191.214.0/23 47409 -93.191.216.0/23 43751 -93.191.218.0/24 43751 -93.191.219.0/24 16509 -93.191.220.0/22 43751 -93.191.224.0/24 48007 -93.191.231.0/24 48007 -93.191.232.0/21 198568 -93.191.240.0/21 12779 -93.191.248.0/21 47419 -93.192.0.0/10 3320 -94.0.0.0/12 5607 -94.16.0.0/24 42360 -94.16.2.0/23 42360 -94.16.4.0/24 42360 -94.16.5.0/24 42473 -94.16.6.0/23 42360 -94.16.8.0/24 42473 -94.16.9.0/24 42360 -94.16.11.0/24 42360 -94.16.12.0/24 47147 -94.16.13.0/24 42360 -94.16.14.0/23 42473 -94.16.16.0/24 42388 -94.16.17.0/24 42473 -94.16.18.0/23 8412 -94.16.20.0/24 42360 -94.16.21.0/24 42473 -94.16.22.0/24 42473 -94.16.32.0/19 8339 -94.16.64.0/19 12897 -94.16.96.0/24 42360 -94.16.98.0/23 42473 -94.16.100.0/22 42473 -94.16.112.0/21 197540 -94.16.120.0/22 197540 -94.16.127.0/24 42473 -94.16.128.0/17 15600 -94.17.0.0/16 12709 -94.18.0.0/17 28717 -94.18.128.0/18 28717 -94.18.192.0/20 28717 -94.18.208.0/23 28717 -94.18.210.0/24 28717 -94.18.211.0/24 31027 -94.18.212.0/22 28717 -94.18.216.0/21 28717 -94.18.224.0/19 28717 -94.19.0.0/16 35807 -94.20.10.0/24 29049 -94.20.16.0/24 29049 -94.20.18.0/23 196821 -94.20.20.0/23 29049 -94.20.25.0/24 29049 -94.20.26.0/23 48830 -94.20.30.0/24 29049 -94.20.32.0/24 48830 -94.20.37.0/24 199987 -94.20.38.0/23 29049 -94.20.40.0/24 29049 -94.20.41.0/24 34170 -94.20.42.0/24 201167 -94.20.43.0/24 199731 -94.20.44.0/23 29049 -94.20.46.0/24 29049 -94.20.48.0/22 29049 -94.20.54.0/23 29049 -94.20.56.0/23 29049 -94.20.58.0/24 29049 -94.20.60.0/22 29049 -94.20.64.0/22 29049 -94.20.69.0/24 199987 -94.20.70.0/24 199987 -94.20.71.0/24 29049 -94.20.74.0/24 29049 -94.20.75.0/24 34170 -94.20.77.0/24 29049 -94.20.81.0/24 29049 -94.20.85.0/24 29049 -94.20.86.0/24 200729 -94.20.87.0/24 29049 -94.20.90.0/24 199987 -94.20.94.0/23 29049 -94.20.96.0/23 201167 -94.20.99.0/24 201167 -94.20.120.0/24 44725 -94.20.121.0/24 29049 -94.20.122.0/23 29049 -94.20.139.0/24 29049 -94.20.141.0/24 29049 -94.20.142.0/24 29049 -94.20.152.0/24 29049 -94.20.157.0/24 29049 -94.20.158.0/23 199987 -94.20.160.0/23 199987 -94.20.162.0/24 29049 -94.20.168.0/22 29049 -94.20.172.0/24 29049 -94.20.191.0/24 29049 -94.20.192.0/23 199987 -94.20.200.0/24 29049 -94.20.217.0/24 34170 -94.20.223.0/24 34170 -94.20.224.0/23 34170 -94.20.226.0/24 34170 -94.20.233.0/24 199731 -94.20.234.0/24 199731 -94.20.239.0/24 201167 -94.20.241.0/24 199987 -94.20.242.0/23 199987 -94.20.244.0/23 199987 -94.20.246.0/23 29049 -94.20.248.0/24 29049 -94.20.252.0/24 29049 -94.20.255.0/24 29049 -94.21.0.0/16 20845 -94.22.0.0/16 15527 -94.23.0.0/16 16276 -94.24.0.0/20 57218 -94.24.16.0/21 57218 -94.24.24.0/22 210176 -94.24.28.0/24 51373 -94.24.29.0/24 34358 -94.24.30.0/23 210176 -94.24.32.0/22 29119 -94.24.36.0/23 205809 -94.24.38.0/23 198454 -94.24.40.0/21 29119 -94.24.48.0/21 34358 -94.24.56.0/21 28919 -94.24.64.0/21 210176 -94.24.72.0/22 34358 -94.24.76.0/23 34358 -94.24.78.0/24 34358 -94.24.79.0/24 51373 -94.24.80.0/20 57218 -94.24.96.0/21 57218 -94.24.104.0/22 29119 -94.24.108.0/23 210176 -94.24.111.0/24 56654 -94.24.112.0/20 15699 -94.24.128.0/24 204713 -94.24.129.0/24 8369 -94.24.130.0/23 8369 -94.24.136.0/21 8369 -94.24.144.0/20 8369 -94.24.160.0/19 8369 -94.24.192.0/18 8369 -94.25.0.0/20 12389 -94.25.16.0/21 12389 -94.25.24.0/22 12389 -94.25.28.0/23 12389 -94.25.30.0/24 209313 -94.25.31.0/24 12389 -94.25.32.0/19 12389 -94.25.64.0/18 12389 -94.25.128.0/20 47395 -94.25.144.0/20 25159 -94.25.160.0/19 25159 -94.25.208.0/20 31213 -94.25.224.0/20 31213 -94.25.248.0/21 20632 -94.26.0.0/22 48452 -94.26.4.0/22 204281 -94.26.8.0/21 204281 -94.26.16.0/21 204281 -94.26.24.0/23 210176 -94.26.26.0/24 204281 -94.26.27.0/24 40244 -94.26.28.0/23 25211 -94.26.30.0/24 204281 -94.26.31.0/24 40244 -94.26.32.0/22 48452 -94.26.36.0/23 48452 -94.26.38.0/24 197705 -94.26.39.0/24 48452 -94.26.40.0/24 41844 -94.26.41.0/24 48452 -94.26.42.0/23 48452 -94.26.44.0/24 40244 -94.26.45.0/24 204281 -94.26.46.0/23 40244 -94.26.48.0/20 48452 -94.26.64.0/23 210176 -94.26.66.0/24 204281 -94.26.67.0/24 40244 -94.26.68.0/22 48452 -94.26.72.0/24 204281 -94.26.73.0/24 40244 -94.26.74.0/23 204281 -94.26.76.0/22 25211 -94.26.80.0/22 48452 -94.26.84.0/23 40244 -94.26.86.0/23 204281 -94.26.88.0/22 48452 -94.26.92.0/24 48452 -94.26.93.0/24 202087 -94.26.94.0/24 204281 -94.26.95.0/24 202087 -94.26.96.0/24 204281 -94.26.97.0/24 202087 -94.26.98.0/23 202087 -94.26.100.0/24 204281 -94.26.102.0/24 204281 -94.26.103.0/24 202087 -94.26.104.0/22 48452 -94.26.108.0/24 204281 -94.26.109.0/24 202087 -94.26.110.0/23 210176 -94.26.112.0/20 15975 -94.26.128.0/18 44068 -94.26.192.0/19 30873 -94.27.0.0/17 12530 -94.27.128.0/17 5483 -94.28.0.0/21 12772 -94.28.8.0/23 24588 -94.28.10.0/24 24588 -94.28.11.0/24 12772 -94.28.12.0/22 12772 -94.28.16.0/20 12772 -94.28.32.0/22 12772 -94.28.36.0/23 12772 -94.28.38.0/24 24588 -94.28.39.0/24 12772 -94.28.40.0/22 12772 -94.28.44.0/24 12772 -94.28.46.0/23 12772 -94.28.48.0/22 12772 -94.28.52.0/23 12772 -94.28.54.0/24 12772 -94.28.56.0/21 12772 -94.28.64.0/19 12772 -94.28.96.0/20 12772 -94.28.112.0/22 21353 -94.28.116.0/22 12772 -94.28.120.0/21 12772 -94.28.128.0/17 12389 -94.29.0.0/17 25513 -94.29.128.0/17 9155 -94.30.0.0/18 5413 -94.30.64.0/19 5413 -94.30.96.0/20 5413 -94.30.112.0/21 5413 -94.30.120.0/22 5413 -94.30.124.0/23 5413 -94.30.126.0/24 5413 -94.30.127.0/24 3257 -94.30.128.0/19 20910 -94.30.160.0/20 20910 -94.30.176.0/22 20910 -94.30.180.0/24 20910 -94.30.181.0/24 58269 -94.30.182.0/23 20910 -94.30.184.0/21 20910 -94.30.192.0/18 20910 -94.31.0.0/24 6461 -94.31.1.0/24 3257 -94.31.2.0/24 6461 -94.31.3.0/24 197106 -94.31.4.0/22 6461 -94.31.8.0/24 12184 -94.31.9.0/24 6461 -94.31.10.0/23 17025 -94.31.12.0/24 17025 -94.31.13.0/24 6461 -94.31.14.0/24 6461 -94.31.15.0/24 35156 -94.31.16.0/21 6461 -94.31.24.0/22 6461 -94.31.28.0/24 62021 -94.31.29.0/24 33438 -94.31.30.0/23 6461 -94.31.32.0/21 6461 -94.31.40.0/22 6461 -94.31.44.0/24 1 -94.31.45.0/24 6461 -94.31.46.0/23 6461 -94.31.48.0/23 6461 -94.31.50.0/24 6461 -94.31.51.0/24 201542 -94.31.52.0/23 6461 -94.31.54.0/24 35831 -94.31.55.0/24 6461 -94.31.56.0/22 6461 -94.31.60.0/24 41612 -94.31.61.0/24 6461 -94.31.62.0/23 6461 -94.31.64.0/18 60294 -94.31.128.0/21 35154 -94.31.136.0/24 12389 -94.31.137.0/24 35154 -94.31.138.0/23 12389 -94.31.140.0/23 35154 -94.31.142.0/24 12389 -94.31.143.0/24 35154 -94.31.144.0/21 35154 -94.31.152.0/23 35154 -94.31.154.0/24 35154 -94.31.155.0/24 12389 -94.31.156.0/24 12389 -94.31.157.0/24 35154 -94.31.158.0/23 35154 -94.31.160.0/21 35154 -94.31.168.0/22 35154 -94.31.172.0/23 35154 -94.31.174.0/24 35154 -94.31.175.0/24 12389 -94.31.176.0/21 35154 -94.31.184.0/23 35154 -94.31.186.0/24 12389 -94.31.187.0/24 35154 -94.31.188.0/22 35154 -94.31.192.0/23 35154 -94.31.194.0/24 35154 -94.31.195.0/24 12389 -94.31.196.0/22 35154 -94.31.200.0/23 35154 -94.31.202.0/24 12389 -94.31.203.0/24 35154 -94.31.204.0/22 35154 -94.31.208.0/22 35154 -94.31.212.0/23 35154 -94.31.214.0/23 12389 -94.31.216.0/21 35154 -94.31.224.0/23 35154 -94.31.226.0/24 35154 -94.31.227.0/24 12389 -94.31.228.0/23 35154 -94.31.230.0/24 12389 -94.31.231.0/24 35154 -94.31.232.0/22 35154 -94.31.236.0/23 35154 -94.31.238.0/24 12389 -94.31.239.0/24 35154 -94.31.240.0/23 35154 -94.31.242.0/24 12389 -94.31.243.0/24 35154 -94.31.244.0/24 12389 -94.31.245.0/24 35154 -94.31.246.0/23 35154 -94.31.248.0/23 35154 -94.31.250.0/24 12389 -94.31.251.0/24 35154 -94.31.252.0/23 35154 -94.31.254.0/24 35154 -94.31.255.0/24 12389 -94.32.0.0/13 8612 -94.40.0.0/22 20960 -94.40.4.0/23 20960 -94.40.6.0/24 20960 -94.40.7.0/24 204192 -94.40.8.0/24 204192 -94.40.9.0/24 20960 -94.40.10.0/23 20960 -94.40.12.0/22 20960 -94.40.16.0/20 20960 -94.40.32.0/20 20960 -94.40.48.0/21 20960 -94.40.56.0/22 20960 -94.40.60.0/24 20960 -94.40.61.0/24 200574 -94.40.62.0/23 20960 -94.40.64.0/20 20960 -94.40.80.0/22 20960 -94.40.84.0/23 20960 -94.40.86.0/24 20960 -94.40.87.0/24 2 -94.40.88.0/21 20960 -94.40.96.0/19 20960 -94.40.128.0/17 20960 -94.41.0.0/17 24955 -94.41.128.0/20 41704 -94.41.144.0/20 24955 -94.41.160.0/19 41704 -94.41.192.0/18 24955 -94.42.0.0/18 5588 -94.42.64.0/20 5588 -94.42.80.0/21 5588 -94.42.88.0/24 5588 -94.42.89.0/24 201488 -94.42.90.0/23 5588 -94.42.92.0/22 5588 -94.42.96.0/22 5588 -94.42.100.0/24 5588 -94.42.101.0/24 204098 -94.42.102.0/24 201036 -94.42.103.0/24 5588 -94.42.104.0/21 5588 -94.42.112.0/20 5588 -94.42.128.0/22 5588 -94.42.132.0/24 51277 -94.42.133.0/24 5588 -94.42.134.0/23 5588 -94.42.136.0/21 5588 -94.42.144.0/20 5588 -94.42.160.0/20 5588 -94.42.176.0/22 201036 -94.42.180.0/22 5588 -94.42.184.0/21 5588 -94.42.192.0/23 5588 -94.42.194.0/24 5588 -94.42.195.0/24 201893 -94.42.196.0/24 201893 -94.42.197.0/24 5588 -94.42.198.0/23 5588 -94.42.200.0/21 5588 -94.42.208.0/20 5588 -94.42.224.0/19 5588 -94.43.0.0/16 35805 -94.44.0.0/16 21334 -94.45.0.0/19 25513 -94.45.32.0/19 15683 -94.45.64.0/19 47678 -94.45.96.0/20 41305 -94.45.112.0/21 44010 -94.45.120.0/21 62181 -94.45.128.0/20 29491 -94.45.144.0/22 29491 -94.45.148.0/23 29491 -94.45.150.0/24 201104 -94.45.151.0/24 203666 -94.45.152.0/22 29491 -94.45.156.0/23 29491 -94.45.158.0/23 210056 -94.45.160.0/19 49060 -94.45.192.0/19 42892 -94.45.224.0/19 50472 -94.46.0.0/24 203271 -94.46.1.0/24 205951 -94.46.2.0/24 205951 -94.46.8.0/22 200719 -94.46.12.0/22 24768 -94.46.16.0/21 24768 -94.46.24.0/24 24768 -94.46.28.0/22 24768 -94.46.32.0/21 205951 -94.46.40.0/21 200719 -94.46.48.0/20 200719 -94.46.64.0/19 12897 -94.46.98.0/24 29575 -94.46.112.0/20 200719 -94.46.128.0/21 24768 -94.46.136.0/22 34244 -94.46.140.0/24 200719 -94.46.141.0/24 41962 -94.46.142.0/24 41962 -94.46.143.0/24 200719 -94.46.144.0/23 12989 -94.46.148.0/23 33438 -94.46.150.0/24 33438 -94.46.151.0/24 12989 -94.46.152.0/22 12989 -94.46.160.0/20 24768 -94.46.176.0/21 24768 -94.46.184.0/22 42831 -94.46.189.0/24 203822 -94.46.190.0/24 203822 -94.46.192.0/22 42831 -94.46.196.0/22 15805 -94.46.200.0/22 15805 -94.46.206.0/24 62240 -94.46.207.0/24 42831 -94.46.208.0/21 15805 -94.46.220.0/22 42831 -94.46.224.0/20 15805 -94.46.240.0/22 34244 -94.46.244.0/22 42831 -94.46.248.0/23 200719 -94.46.250.0/24 200719 -94.46.251.0/24 41962 -94.46.252.0/22 200719 -94.47.0.0/16 29256 -94.48.0.0/16 25019 -94.49.0.0/18 25019 -94.49.64.0/19 25019 -94.49.128.0/17 25019 -94.50.0.0/19 12389 -94.50.32.0/20 12389 -94.50.48.0/22 12389 -94.50.52.0/23 12389 -94.50.54.0/24 12389 -94.50.55.0/24 34875 -94.50.56.0/21 12389 -94.50.64.0/18 12389 -94.50.128.0/17 12389 -94.51.0.0/18 12389 -94.51.64.0/20 12389 -94.51.80.0/22 12389 -94.51.84.0/23 12389 -94.51.86.0/24 12389 -94.51.87.0/24 48826 -94.51.88.0/21 12389 -94.51.96.0/19 12389 -94.51.128.0/17 12389 -94.52.0.0/20 48161 -94.52.16.0/21 48161 -94.52.24.0/23 48161 -94.52.28.0/22 48161 -94.52.32.0/19 48161 -94.52.64.0/18 48161 -94.52.128.0/18 48161 -94.52.192.0/21 48161 -94.52.200.0/22 48161 -94.52.206.0/23 48161 -94.52.208.0/20 48161 -94.52.224.0/19 48161 -94.53.0.0/17 48161 -94.53.128.0/20 48161 -94.53.144.0/24 48161 -94.53.146.0/23 48161 -94.53.148.0/22 48161 -94.53.152.0/21 48161 -94.53.160.0/23 48161 -94.53.162.0/24 48161 -94.53.176.0/23 48161 -94.53.184.0/21 48161 -94.53.192.0/19 48161 -94.53.224.0/23 48161 -94.53.227.0/24 48161 -94.53.228.0/22 48161 -94.53.232.0/21 48161 -94.53.240.0/20 48161 -94.54.0.0/18 47524 -94.54.64.0/19 47524 -94.54.96.0/20 47524 -94.54.114.0/23 47524 -94.54.116.0/22 47524 -94.54.120.0/21 47524 -94.54.128.0/17 47524 -94.55.0.0/21 47524 -94.55.8.0/22 47524 -94.55.12.0/23 47524 -94.55.16.0/20 47524 -94.55.32.0/20 47524 -94.55.48.0/21 47524 -94.55.56.0/23 47524 -94.55.59.0/24 47524 -94.55.62.0/23 47524 -94.55.64.0/19 47524 -94.55.96.0/20 47524 -94.55.112.0/21 47524 -94.55.120.0/23 47524 -94.55.122.0/23 9121 -94.55.126.0/24 47524 -94.55.127.0/24 9121 -94.55.128.0/17 47524 -94.56.0.0/14 5384 -94.60.0.0/14 12353 -94.64.0.0/13 6799 -94.72.0.0/19 8359 -94.72.32.0/20 8359 -94.72.48.0/21 8359 -94.72.56.0/22 8359 -94.72.60.0/23 8359 -94.72.62.0/24 49211 -94.72.63.0/24 60891 -94.72.64.0/18 41314 -94.72.128.0/21 29030 -94.72.136.0/22 29030 -94.72.140.0/23 29030 -94.72.142.0/24 29030 -94.72.143.0/24 203380 -94.72.144.0/23 57344 -94.72.146.0/23 199048 -94.72.149.0/24 57344 -94.72.152.0/22 59989 -94.72.156.0/23 39135 -94.72.158.0/23 57344 -94.72.160.0/19 42735 -94.72.192.0/19 12390 -94.72.224.0/20 12390 -94.72.240.0/21 12390 -94.72.248.0/21 2856 -94.73.0.0/19 51407 -94.73.32.0/19 15704 -94.73.64.0/18 28929 -94.73.128.0/20 34619 -94.73.144.0/21 34619 -94.73.153.0/24 34619 -94.73.154.0/23 34619 -94.73.156.0/22 34619 -94.73.160.0/19 34619 -94.73.192.0/18 31257 -94.74.0.0/18 39636 -94.74.64.0/22 35221 -94.74.68.0/24 50935 -94.74.69.0/24 207123 -94.74.70.0/24 50935 -94.74.71.0/24 35221 -94.74.72.0/23 50935 -94.74.74.0/23 34661 -94.74.76.0/22 48031 -94.74.80.0/22 34661 -94.74.84.0/24 34661 -94.74.85.0/24 50935 -94.74.86.0/23 50935 -94.74.88.0/21 34661 -94.74.96.0/21 34661 -94.74.104.0/22 34661 -94.74.108.0/23 34661 -94.74.110.0/23 50935 -94.74.112.0/21 50935 -94.74.120.0/21 34661 -94.74.128.0/18 44208 -94.74.192.0/18 16246 -94.75.0.0/18 28812 -94.75.64.0/20 6830 -94.75.80.0/24 6830 -94.75.81.0/24 200878 -94.75.82.0/23 201990 -94.75.84.0/22 6830 -94.75.88.0/23 198537 -94.75.90.0/23 56373 -94.75.92.0/22 6830 -94.75.96.0/21 6830 -94.75.104.0/24 6830 -94.75.105.0/24 205160 -94.75.106.0/24 205133 -94.75.107.0/24 6830 -94.75.108.0/23 6830 -94.75.110.0/24 6830 -94.75.111.0/24 205325 -94.75.112.0/22 197336 -94.75.116.0/24 6830 -94.75.117.0/24 203539 -94.75.118.0/23 6830 -94.75.120.0/21 6830 -94.75.128.0/18 12389 -94.75.192.0/22 60781 -94.75.196.0/24 38930 -94.75.197.0/24 60781 -94.75.198.0/23 60781 -94.75.200.0/21 60781 -94.75.208.0/20 60781 -94.75.224.0/19 60781 -94.76.0.0/20 51375 -94.76.16.0/21 51375 -94.76.24.0/22 51375 -94.76.28.0/23 51375 -94.76.30.0/24 51375 -94.76.32.0/24 51375 -94.76.35.0/24 51375 -94.76.36.0/22 51375 -94.76.40.0/21 51375 -94.76.48.0/20 51375 -94.76.66.0/23 31148 -94.76.68.0/24 31148 -94.76.72.0/22 31148 -94.76.76.0/23 31148 -94.76.78.0/24 31148 -94.76.81.0/24 31148 -94.76.82.0/23 31148 -94.76.89.0/24 31148 -94.76.90.0/24 31148 -94.76.92.0/24 31148 -94.76.95.0/24 31148 -94.76.96.0/23 31148 -94.76.104.0/22 31148 -94.76.108.0/23 31148 -94.76.111.0/24 31148 -94.76.113.0/24 31148 -94.76.115.0/24 31148 -94.76.117.0/24 31148 -94.76.118.0/24 31148 -94.76.121.0/24 31148 -94.76.122.0/24 31148 -94.76.124.0/23 31148 -94.76.127.0/24 31148 -94.76.128.0/21 29119 -94.76.136.0/22 29119 -94.76.140.0/24 29119 -94.76.141.0/24 50563 -94.76.142.0/23 29119 -94.76.144.0/21 29119 -94.76.152.0/23 29119 -94.76.154.0/24 199952 -94.76.155.0/24 29119 -94.76.156.0/22 29119 -94.76.160.0/20 29119 -94.76.176.0/24 199853 -94.76.177.0/24 29119 -94.76.178.0/23 29119 -94.76.180.0/22 29119 -94.76.184.0/24 29119 -94.76.185.0/24 48990 -94.76.186.0/23 29119 -94.76.188.0/24 29119 -94.76.189.0/24 43402 -94.76.190.0/23 29119 -94.76.192.0/18 29550 -94.77.64.0/18 6761 -94.77.128.0/18 60496 -94.77.192.0/20 47794 -94.77.208.0/21 47794 -94.77.216.0/24 47794 -94.77.217.0/24 48695 -94.77.218.0/23 48695 -94.77.220.0/23 48695 -94.77.222.0/24 48695 -94.77.223.0/24 47794 -94.77.224.0/20 47794 -94.77.240.0/21 48695 -94.77.248.0/21 47794 -94.78.0.0/18 15517 -94.78.64.0/18 44558 -94.78.128.0/18 21021 -94.78.192.0/18 12389 -94.79.0.0/22 8732 -94.79.4.0/24 8732 -94.79.5.0/24 8901 -94.79.6.0/24 8901 -94.79.7.0/24 8732 -94.79.8.0/22 8732 -94.79.12.0/24 8732 -94.79.13.0/24 200489 -94.79.14.0/23 8732 -94.79.16.0/23 8732 -94.79.18.0/24 8732 -94.79.19.0/24 48614 -94.79.20.0/22 8732 -94.79.24.0/21 8732 -94.79.32.0/21 8732 -94.79.40.0/23 8732 -94.79.42.0/24 206845 -94.79.43.0/24 60151 -94.79.44.0/22 8732 -94.79.48.0/22 8732 -94.79.52.0/23 8732 -94.79.54.0/23 48614 -94.79.56.0/21 8732 -94.79.64.0/18 47883 -94.79.128.0/18 6830 -94.79.192.0/18 31452 -94.80.0.0/13 3269 -94.88.0.0/14 3269 -94.92.0.0/18 3269 -94.92.64.0/20 3269 -94.92.80.0/22 3269 -94.92.84.0/23 3269 -94.92.86.0/24 20746 -94.92.87.0/24 3269 -94.92.88.0/21 3269 -94.92.96.0/19 3269 -94.92.128.0/17 3269 -94.93.0.0/16 3269 -94.94.0.0/15 3269 -94.96.0.0/14 25019 -94.100.0.0/24 47570 -94.100.1.0/24 202428 -94.100.2.0/24 48496 -94.100.3.0/24 48680 -94.100.4.0/23 48062 -94.100.6.0/24 48496 -94.100.7.0/24 47570 -94.100.8.0/24 47570 -94.100.9.0/24 60629 -94.100.10.0/24 48062 -94.100.11.0/24 47570 -94.100.12.0/24 47570 -94.100.13.0/24 48496 -94.100.14.0/24 47570 -94.100.15.0/24 48496 -94.100.16.0/22 29802 -94.100.20.0/24 35017 -94.100.21.0/24 29802 -94.100.22.0/24 29802 -94.100.23.0/24 35017 -94.100.24.0/23 29802 -94.100.28.0/22 29802 -94.100.32.0/20 47568 -94.100.48.0/20 47588 -94.100.64.0/20 21413 -94.100.80.0/20 39289 -94.100.96.0/20 43612 -94.100.112.0/21 34106 -94.100.120.0/22 34106 -94.100.124.0/22 199796 -94.100.132.0/23 25394 -94.100.134.0/24 12676 -94.100.135.0/24 15743 -94.100.136.0/21 24679 -94.100.144.0/20 41872 -94.100.160.0/20 30781 -94.100.176.0/20 47764 -94.100.192.0/20 203994 -94.100.208.0/20 41165 -94.100.224.0/20 25249 -94.100.240.0/20 34086 -94.101.0.0/20 29422 -94.101.16.0/20 12618 -94.101.32.0/20 16097 -94.101.48.0/20 39120 -94.101.64.0/20 35140 -94.101.80.0/21 42926 -94.101.88.0/24 42926 -94.101.91.0/24 42926 -94.101.92.0/22 42926 -94.101.96.0/21 44836 -94.101.112.0/24 35913 -94.101.113.0/24 40676 -94.101.114.0/23 35913 -94.101.120.0/22 49666 -94.101.124.0/22 12357 -94.101.128.0/20 50810 -94.101.144.0/20 24916 -94.101.160.0/21 47797 -94.101.168.0/23 47797 -94.101.176.0/20 47796 -94.101.204.0/23 39505 -94.101.206.0/24 39505 -94.101.208.0/20 42525 -94.101.224.0/20 47814 -94.101.240.0/21 197207 -94.101.248.0/21 50810 -94.102.0.0/20 51559 -94.102.16.0/20 42514 -94.102.32.0/20 29492 -94.102.48.0/20 202425 -94.102.64.0/20 8685 -94.102.80.0/21 29256 -94.102.88.0/23 33902 -94.102.90.0/23 49126 -94.102.92.0/22 29256 -94.102.96.0/20 43957 -94.102.112.0/20 29124 -94.102.128.0/20 47217 -94.102.144.0/20 34920 -94.102.160.0/20 6774 -94.102.192.0/20 47942 -94.102.208.0/20 25504 -94.102.224.0/20 47881 -94.102.240.0/20 25562 -94.103.0.0/22 49560 -94.103.4.0/22 25820 -94.103.8.0/22 200904 -94.103.12.0/24 202696 -94.103.16.0/21 47886 -94.103.24.0/24 47886 -94.103.25.0/24 36180 -94.103.26.0/23 47886 -94.103.28.0/22 47886 -94.103.32.0/20 47894 -94.103.48.0/20 62453 -94.103.64.0/20 47917 -94.103.80.0/20 48282 -94.103.96.0/20 49457 -94.103.112.0/22 202074 -94.103.116.0/22 209674 -94.103.120.0/22 24904 -94.103.128.0/20 8218 -94.103.144.0/20 25459 -94.103.160.0/20 48039 -94.103.176.0/20 197390 -94.103.192.0/20 48803 -94.103.208.0/20 8632 -94.103.224.0/20 47954 -94.103.240.0/22 204853 -94.103.248.0/22 3257 -94.103.252.0/22 50411 -94.104.0.0/16 47377 -94.105.0.0/18 47377 -94.105.64.0/19 47377 -94.105.96.0/19 9031 -94.105.128.0/17 47377 -94.106.0.0/15 47377 -94.108.0.0/14 47377 -94.112.0.0/14 6830 -94.116.0.0/15 41012 -94.118.0.0/16 41012 -94.119.0.0/22 42390 -94.119.8.0/21 5607 -94.119.64.0/18 41012 -94.119.128.0/18 41012 -94.119.255.0/24 41012 -94.120.0.0/16 12978 -94.121.0.0/17 12978 -94.121.128.0/19 12978 -94.121.160.0/20 3 -94.121.176.0/22 12978 -94.121.180.0/24 3 -94.121.181.0/24 12978 -94.121.182.0/23 12978 -94.121.184.0/21 12978 -94.121.192.0/18 12978 -94.122.0.0/16 12978 -94.123.0.0/17 12978 -94.123.128.0/18 12978 -94.123.192.0/21 12978 -94.123.200.0/21 3 -94.123.208.0/20 12978 -94.123.224.0/19 12978 -94.124.0.0/20 42927 -94.124.16.0/22 47640 -94.124.20.0/23 47640 -94.124.22.0/24 47640 -94.124.24.0/21 47683 -94.124.32.0/21 47875 -94.124.40.0/21 48451 -94.124.48.0/21 47986 -94.124.56.0/21 201372 -94.124.64.0/21 51185 -94.124.80.0/21 48594 -94.124.88.0/21 39704 -94.124.96.0/22 28022 -94.124.104.0/21 42000 -94.124.116.0/24 35537 -94.124.117.0/24 54600 -94.124.118.0/23 54600 -94.124.120.0/21 25459 -94.124.128.0/21 12807 -94.124.136.0/21 39637 -94.124.144.0/21 5578 -94.124.152.0/21 51110 -94.124.160.0/22 47725 -94.124.164.0/24 199263 -94.124.165.0/24 199908 -94.124.166.0/23 47725 -94.124.168.0/21 47737 -94.124.178.0/23 42065 -94.124.180.0/22 31500 -94.124.184.0/21 47767 -94.124.192.0/21 31261 -94.124.200.0/22 47724 -94.124.204.0/23 59601 -94.124.206.0/23 47724 -94.124.208.0/21 41998 -94.124.216.0/21 47798 -94.124.224.0/21 15757 -94.124.232.0/21 8723 -94.124.240.0/21 12494 -94.124.248.0/22 47749 -94.125.0.0/21 47746 -94.125.8.0/21 47807 -94.125.18.0/23 2830 -94.125.20.0/22 2830 -94.125.24.0/21 47777 -94.125.35.0/24 2529 -94.125.40.0/21 12714 -94.125.48.0/21 8749 -94.125.56.0/21 14537 -94.125.64.0/21 47815 -94.125.72.0/21 48284 -94.125.80.0/21 44831 -94.125.88.0/24 196797 -94.125.90.0/23 196797 -94.125.92.0/22 196797 -94.125.96.0/22 61367 -94.125.100.0/22 398083 -94.125.104.0/21 47833 -94.125.112.0/21 12783 -94.125.120.0/21 12593 -94.125.128.0/21 48961 -94.125.136.0/21 48710 -94.125.144.0/24 35432 -94.125.152.0/21 48154 -94.125.160.0/21 21409 -94.125.168.0/24 41524 -94.125.169.0/24 206700 -94.125.176.0/21 41075 -94.125.184.0/24 12772 -94.125.185.0/24 12389 -94.125.186.0/24 12772 -94.125.187.0/24 25227 -94.125.188.0/23 47441 -94.125.190.0/24 201555 -94.125.191.0/24 16094 -94.125.193.0/24 14717 -94.125.194.0/24 14717 -94.125.196.0/22 14717 -94.125.200.0/21 47944 -94.125.208.0/21 34722 -94.125.216.0/21 47868 -94.125.224.0/21 47901 -94.125.232.0/21 42425 -94.125.240.0/21 41822 -94.125.248.0/21 12301 -94.126.0.0/21 206920 -94.126.8.0/21 47927 -94.126.16.0/21 21069 -94.126.24.0/21 42226 -94.126.32.0/24 48635 -94.126.33.0/24 39855 -94.126.34.0/24 39855 -94.126.35.0/24 48635 -94.126.36.0/22 208988 -94.126.40.0/21 50056 -94.126.48.0/23 48137 -94.126.50.0/23 200884 -94.126.56.0/21 31115 -94.126.64.0/21 25542 -94.126.72.0/21 48543 -94.126.80.0/22 34946 -94.126.84.0/23 34946 -94.126.86.0/24 34946 -94.126.87.0/24 203949 -94.126.88.0/21 48050 -94.126.96.0/23 202887 -94.126.98.0/24 3320 -94.126.99.0/24 202887 -94.126.100.0/22 202887 -94.126.104.0/22 47906 -94.126.108.0/23 47906 -94.126.110.0/24 198949 -94.126.111.0/24 47906 -94.126.112.0/22 29152 -94.126.116.0/23 29152 -94.126.119.0/24 29152 -94.126.120.0/23 12703 -94.126.128.0/21 48977 -94.126.136.0/21 48423 -94.126.144.0/21 47202 -94.126.152.0/21 47989 -94.126.160.0/21 48299 -94.126.168.0/21 33876 -94.126.176.0/21 59469 -94.126.184.0/21 199202 -94.126.192.0/21 3213 -94.126.200.0/24 35377 -94.126.202.0/23 201825 -94.126.204.0/24 57129 -94.126.208.0/21 48294 -94.126.216.0/21 48042 -94.126.224.0/23 3246 -94.126.226.0/24 3246 -94.126.228.0/22 3246 -94.126.232.0/21 48070 -94.126.240.0/22 48048 -94.126.247.0/24 48048 -94.126.248.0/21 15576 -94.127.0.0/21 31042 -94.127.8.0/21 16347 -94.127.24.0/21 21283 -94.127.32.0/21 42303 -94.127.40.0/21 3257 -94.127.48.0/21 48564 -94.127.56.0/22 48469 -94.127.60.0/22 60848 -94.127.64.0/21 48235 -94.127.80.0/21 48135 -94.127.88.0/22 42187 -94.127.92.0/24 42187 -94.127.93.0/24 205063 -94.127.94.0/24 42187 -94.127.95.0/24 59831 -94.127.96.0/21 48083 -94.127.104.0/21 13110 -94.127.112.0/21 35799 -94.127.120.0/22 58264 -94.127.128.0/21 202895 -94.127.136.0/21 42478 -94.127.144.0/21 21372 -94.127.152.0/21 48197 -94.127.160.0/21 48187 -94.127.168.0/21 8334 -94.127.176.0/21 44053 -94.127.184.0/22 50926 -94.127.188.0/24 50926 -94.127.189.0/24 29119 -94.127.190.0/23 50926 -94.127.192.0/21 48202 -94.127.200.0/21 39264 -94.127.208.0/21 9038 -94.127.216.0/21 24663 -94.127.224.0/21 48139 -94.127.236.0/24 51569 -94.127.238.0/23 43279 -94.127.240.0/21 12958 -94.127.248.0/21 44206 -94.128.0.0/15 47589 -94.130.0.0/16 24940 -94.131.0.0/20 53856 -94.131.16.0/20 266865 -94.131.32.0/20 265770 -94.131.48.0/20 397044 -94.131.64.0/19 29632 -94.131.96.0/20 29632 -94.131.112.0/20 53856 -94.131.128.0/18 53856 -94.131.196.0/22 48964 -94.131.200.0/22 48964 -94.131.204.0/22 49804 -94.131.209.0/24 205178 -94.131.210.0/23 43743 -94.131.214.0/23 48964 -94.131.216.0/23 48964 -94.131.218.0/24 43668 -94.131.219.0/24 204289 -94.131.220.0/23 43668 -94.131.222.0/24 43668 -94.131.223.0/24 49804 -94.131.224.0/20 53856 -94.131.240.0/21 49720 -94.131.248.0/24 44600 -94.131.249.0/24 49720 -94.131.250.0/23 49720 -94.131.252.0/23 49720 -94.131.254.0/24 49720 -94.131.255.0/24 44600 -94.132.0.0/15 2860 -94.134.0.0/15 8881 -94.136.0.0/19 48943 -94.136.32.0/21 20738 -94.136.40.0/24 20773 -94.136.41.0/24 20738 -94.136.42.0/23 20738 -94.136.44.0/22 20738 -94.136.48.0/20 20738 -94.136.64.0/22 21503 -94.136.68.0/23 21503 -94.136.70.0/24 21503 -94.136.71.0/24 12552 -94.136.72.0/23 21503 -94.136.74.0/24 21503 -94.136.75.0/24 59586 -94.136.76.0/22 21503 -94.136.80.0/21 21503 -94.136.88.0/22 21503 -94.136.92.0/24 21503 -94.136.93.0/24 12552 -94.136.94.0/24 12552 -94.136.95.0/24 21503 -94.136.96.0/20 6798 -94.136.112.0/22 60368 -94.136.116.0/24 60368 -94.136.128.0/21 39574 -94.136.136.0/22 39574 -94.136.140.0/24 39574 -94.136.141.0/24 56356 -94.136.142.0/23 39574 -94.136.144.0/20 39574 -94.136.160.0/19 41391 -94.136.192.0/19 30881 -94.137.0.0/18 47165 -94.137.64.0/20 47645 -94.137.80.0/21 47645 -94.137.88.0/24 47645 -94.137.90.0/24 208894 -94.137.92.0/22 204197 -94.137.96.0/19 33885 -94.137.128.0/20 208310 -94.137.144.0/20 8804 -94.137.160.0/19 16010 -94.137.192.0/19 51034 -94.137.224.0/19 41560 -94.138.0.0/19 12543 -94.138.32.0/19 3302 -94.138.64.0/19 39642 -94.138.96.0/20 39906 -94.138.112.0/22 39906 -94.138.116.0/22 201476 -94.138.120.0/22 201476 -94.138.124.0/22 39906 -94.138.128.0/21 41034 -94.138.139.0/24 41034 -94.138.140.0/23 41034 -94.138.142.0/23 13296 -94.138.144.0/23 41034 -94.138.146.0/24 41034 -94.138.147.0/24 199317 -94.138.148.0/24 60856 -94.138.149.0/24 60290 -94.138.150.0/24 204255 -94.138.151.0/24 41034 -94.138.152.0/21 41034 -94.138.160.0/19 21056 -94.138.192.0/19 49126 -94.138.224.0/19 12046 -94.139.0.0/19 20880 -94.139.32.0/22 48813 -94.139.36.0/22 6696 -94.139.40.0/21 6696 -94.139.48.0/20 6696 -94.139.64.0/19 31726 -94.139.96.0/20 25513 -94.139.112.0/21 25513 -94.139.120.0/24 199395 -94.139.121.0/24 25513 -94.139.122.0/23 25513 -94.139.124.0/22 25513 -94.139.128.0/19 43925 -94.139.160.0/20 206065 -94.139.176.0/20 44400 -94.139.192.0/21 34295 -94.139.200.0/22 34295 -94.139.204.0/22 48747 -94.139.208.0/21 31029 -94.139.216.0/21 42248 -94.139.224.0/19 38972 -94.140.16.0/22 12684 -94.140.26.0/23 54600 -94.140.32.0/19 21195 -94.140.64.0/19 3212 -94.140.102.0/24 9029 -94.140.104.0/23 43028 -94.140.110.0/24 206542 -94.140.111.0/24 43513 -94.140.114.0/23 43513 -94.140.116.0/22 43513 -94.140.120.0/22 43513 -94.140.124.0/22 52173 -94.140.128.0/19 25086 -94.140.160.0/19 48517 -94.140.192.0/23 35000 -94.140.194.0/24 39710 -94.140.195.0/24 39749 -94.140.196.0/22 35000 -94.140.200.0/22 201008 -94.140.204.0/22 49304 -94.140.208.0/21 35000 -94.140.216.0/22 50258 -94.140.220.0/22 35000 -94.140.224.0/19 47236 -94.141.0.0/19 5602 -94.141.32.0/19 6856 -94.141.64.0/19 47452 -94.141.96.0/22 42940 -94.141.100.0/22 43901 -94.141.104.0/21 43903 -94.141.116.0/22 60292 -94.141.120.0/22 43429 -94.141.124.0/24 209676 -94.141.126.0/23 49342 -94.141.128.0/19 12618 -94.141.160.0/19 34602 -94.141.192.0/19 29256 -94.141.239.0/24 41798 -94.141.240.0/22 41798 -94.141.244.0/22 42429 -94.141.248.0/22 41798 -94.141.252.0/23 48597 -94.141.254.0/23 42429 -94.142.0.0/19 12380 -94.142.32.0/19 48832 -94.142.64.0/19 48620 -94.142.96.0/19 12956 -94.142.132.0/22 50309 -94.142.136.0/21 35196 -94.142.144.0/21 12481 -94.142.152.0/21 48685 -94.142.160.0/21 61155 -94.142.168.0/21 199766 -94.142.176.0/22 201616 -94.142.180.0/23 209715 -94.142.182.0/24 209715 -94.142.183.0/24 29239 -94.142.184.0/22 48463 -94.142.188.0/23 48463 -94.142.200.0/21 48697 -94.142.208.0/21 5524 -94.142.216.0/22 13247 -94.142.220.0/23 13247 -94.142.222.0/23 8820 -94.142.224.0/21 48994 -94.142.232.0/21 48926 -94.142.240.0/21 8283 -94.142.248.0/23 43683 -94.142.252.0/22 43683 -94.143.0.0/21 12333 -94.143.8.0/21 48854 -94.143.16.0/24 200484 -94.143.18.0/23 200484 -94.143.20.0/22 200484 -94.143.24.0/23 48569 -94.143.26.0/23 196816 -94.143.28.0/22 196816 -94.143.32.0/21 6863 -94.143.40.0/23 48573 -94.143.42.0/23 50549 -94.143.44.0/22 48573 -94.143.48.0/21 47258 -94.143.56.0/21 12714 -94.143.64.0/21 58264 -94.143.72.0/21 12430 -94.143.80.0/21 48504 -94.143.88.0/21 15600 -94.143.96.0/23 21101 -94.143.98.0/24 21101 -94.143.99.0/24 57039 -94.143.100.0/22 21101 -94.143.105.0/24 30762 -94.143.106.0/23 30762 -94.143.108.0/24 30762 -94.143.120.0/22 29256 -94.143.128.0/23 49892 -94.143.130.0/24 49892 -94.143.135.0/24 49892 -94.143.136.0/21 8560 -94.143.144.0/21 39586 -94.143.152.0/22 49073 -94.143.156.0/24 49073 -94.143.158.0/24 49073 -94.143.160.0/23 200390 -94.143.162.0/24 200390 -94.143.164.0/22 201477 -94.143.168.0/21 29321 -94.143.176.0/23 29247 -94.143.178.0/24 29247 -94.143.180.0/24 29247 -94.143.183.0/24 29247 -94.143.184.0/21 48638 -94.143.192.0/21 8449 -94.143.200.0/21 48640 -94.143.208.0/21 48645 -94.143.216.0/21 35667 -94.143.232.0/21 35046 -94.143.240.0/21 42387 -94.143.248.0/21 16164 -94.144.0.0/13 9158 -94.152.0.0/16 29522 -94.153.0.0/16 15895 -94.154.3.0/24 42947 -94.154.8.0/24 34465 -94.154.10.0/24 47966 -94.154.14.0/24 197161 -94.154.16.0/21 197838 -94.154.24.0/21 197833 -94.154.32.0/22 49505 -94.154.36.0/24 12679 -94.154.37.0/24 34549 -94.154.38.0/24 12679 -94.154.39.0/24 57100 -94.154.40.0/22 204895 -94.154.44.0/23 204895 -94.154.46.0/24 204895 -94.154.47.0/24 204455 -94.154.48.0/21 57433 -94.154.56.0/21 197837 -94.154.64.0/20 12714 -94.154.80.0/21 47909 -94.154.88.0/21 49577 -94.154.96.0/21 197892 -94.154.104.0/21 56843 -94.154.128.0/22 48430 -94.154.136.0/22 200615 -94.154.140.0/22 9009 -94.154.144.0/22 209842 -94.154.148.0/22 197540 -94.154.156.0/22 62240 -94.154.160.0/22 43659 -94.154.172.0/22 52055 -94.154.180.0/22 31715 -94.154.184.0/22 39144 -94.154.188.0/22 49505 -94.154.192.0/18 48279 -94.155.0.0/21 9070 -94.155.8.0/23 9070 -94.155.10.0/24 9070 -94.155.11.0/24 48458 -94.155.12.0/23 9070 -94.155.14.0/24 9070 -94.155.15.0/24 49226 -94.155.16.0/20 9070 -94.155.32.0/22 9070 -94.155.36.0/24 9070 -94.155.37.0/24 8739 -94.155.38.0/23 9070 -94.155.40.0/22 9070 -94.155.44.0/23 9070 -94.155.46.0/24 9070 -94.155.47.0/24 47748 -94.155.48.0/23 47748 -94.155.50.0/23 9070 -94.155.52.0/24 9070 -94.155.53.0/24 48698 -94.155.54.0/24 9070 -94.155.55.0/24 47748 -94.155.56.0/21 9070 -94.155.64.0/20 8866 -94.155.80.0/22 8866 -94.155.88.0/22 9070 -94.155.92.0/24 9070 -94.155.93.0/24 47748 -94.155.94.0/23 9070 -94.155.96.0/22 9070 -94.155.100.0/24 9070 -94.155.101.0/24 196781 -94.155.102.0/23 9070 -94.155.112.0/21 8866 -94.155.120.0/22 8866 -94.155.124.0/22 9070 -94.155.128.0/20 9070 -94.155.144.0/22 9070 -94.155.148.0/24 200361 -94.155.149.0/24 9070 -94.155.150.0/23 9070 -94.155.152.0/21 9070 -94.155.160.0/21 9070 -94.155.168.0/22 9070 -94.155.172.0/23 9070 -94.155.174.0/24 9070 -94.155.175.0/24 41313 -94.155.176.0/20 9070 -94.155.192.0/21 9070 -94.155.204.0/22 8866 -94.155.208.0/20 9070 -94.155.224.0/19 9070 -94.156.0.0/23 57634 -94.156.2.0/24 43561 -94.156.4.0/23 43548 -94.156.6.0/24 43561 -94.156.7.0/24 57634 -94.156.8.0/24 43561 -94.156.9.0/24 47748 -94.156.10.0/23 34224 -94.156.12.0/24 34224 -94.156.13.0/24 47748 -94.156.15.0/24 34224 -94.156.16.0/21 29030 -94.156.24.0/22 34224 -94.156.28.0/22 207044 -94.156.32.0/23 48115 -94.156.34.0/24 60859 -94.156.35.0/24 44901 -94.156.36.0/24 48115 -94.156.40.0/24 34224 -94.156.42.0/23 34224 -94.156.44.0/23 34224 -94.156.46.0/23 47748 -94.156.48.0/21 31420 -94.156.56.0/22 60202 -94.156.60.0/24 60202 -94.156.61.0/24 57634 -94.156.62.0/23 34224 -94.156.64.0/21 31420 -94.156.72.0/22 31420 -94.156.76.0/24 57634 -94.156.77.0/24 34224 -94.156.78.0/23 43561 -94.156.80.0/21 43548 -94.156.88.0/22 15941 -94.156.92.0/24 57634 -94.156.93.0/24 34224 -94.156.94.0/23 34224 -94.156.96.0/24 60784 -94.156.97.0/24 43548 -94.156.98.0/23 34224 -94.156.100.0/24 34224 -94.156.101.0/24 48115 -94.156.102.0/24 34224 -94.156.103.0/24 60701 -94.156.104.0/23 48584 -94.156.106.0/24 34224 -94.156.108.0/22 49849 -94.156.112.0/20 34577 -94.156.128.0/24 44901 -94.156.129.0/24 34224 -94.156.130.0/24 34224 -94.156.131.0/24 43561 -94.156.132.0/23 34224 -94.156.134.0/23 200033 -94.156.136.0/21 43561 -94.156.144.0/24 44901 -94.156.145.0/24 34224 -94.156.146.0/23 44017 -94.156.152.0/24 43561 -94.156.153.0/24 34224 -94.156.154.0/23 43561 -94.156.156.0/23 43561 -94.156.158.0/23 34224 -94.156.160.0/23 43561 -94.156.162.0/23 57634 -94.156.164.0/23 57634 -94.156.166.0/23 48584 -94.156.168.0/23 43561 -94.156.170.0/23 57634 -94.156.172.0/23 34224 -94.156.174.0/24 44901 -94.156.175.0/24 201133 -94.156.176.0/21 43561 -94.156.184.0/22 34224 -94.156.188.0/24 34224 -94.156.189.0/24 44901 -94.156.190.0/24 34224 -94.156.191.0/24 60230 -94.156.192.0/21 29030 -94.156.204.0/22 207044 -94.156.208.0/21 29030 -94.156.216.0/21 34224 -94.156.225.0/24 34224 -94.156.226.0/24 34224 -94.156.227.0/24 57463 -94.156.232.0/21 43561 -94.156.240.0/21 29030 -94.156.248.0/23 34224 -94.156.251.0/24 34224 -94.156.252.0/24 34224 -94.156.253.0/24 201159 -94.156.255.0/24 34224 -94.157.0.0/16 50266 -94.158.0.0/20 51645 -94.158.18.0/23 197303 -94.158.20.0/24 44812 -94.158.21.0/24 40676 -94.158.22.0/24 62282 -94.158.23.0/24 206485 -94.158.24.0/22 197929 -94.158.32.0/20 41709 -94.158.48.0/20 43060 -94.158.64.0/20 25019 -94.158.80.0/20 43139 -94.158.96.0/20 48036 -94.158.112.0/20 48320 -94.158.128.0/20 41865 -94.158.144.0/20 41631 -94.158.160.0/20 48368 -94.158.176.0/22 61163 -94.158.180.0/22 35625 -94.158.188.0/24 12722 -94.158.189.0/24 34665 -94.158.190.0/24 35048 -94.158.191.0/24 12722 -94.158.192.0/20 12714 -94.158.208.0/20 48687 -94.158.224.0/20 5527 -94.158.240.0/22 9002 -94.158.244.0/22 39798 -94.158.252.0/22 50564 -94.159.0.0/18 49531 -94.159.64.0/19 49531 -94.159.120.0/21 49531 -94.159.128.0/17 12400 -94.160.0.0/13 24608 -94.168.0.0/17 6830 -94.170.0.0/15 6830 -94.172.0.0/16 6830 -94.173.0.0/16 5089 -94.174.0.0/15 5089 -94.176.0.0/23 50604 -94.176.2.0/24 3164 -94.176.3.0/24 9050 -94.176.4.0/24 39855 -94.176.5.0/24 35664 -94.176.6.0/23 58247 -94.176.8.0/21 58224 -94.176.16.0/20 204170 -94.176.32.0/21 39501 -94.176.40.0/24 60073 -94.176.41.0/24 39855 -94.176.42.0/23 47388 -94.176.44.0/22 197589 -94.176.48.0/20 206819 -94.176.64.0/20 8926 -94.176.80.0/20 206819 -94.176.96.0/24 203872 -94.176.97.0/24 6830 -94.176.98.0/23 34762 -94.176.100.0/22 44605 -94.176.104.0/23 40975 -94.176.106.0/24 203098 -94.176.107.0/24 48427 -94.176.108.0/24 9050 -94.176.109.0/24 33387 -94.176.110.0/23 6910 -94.176.112.0/20 206819 -94.176.128.0/24 31362 -94.176.134.0/24 35775 -94.176.135.0/24 2614 -94.176.136.0/21 29119 -94.176.146.0/23 50604 -94.176.148.0/24 9009 -94.176.149.0/24 34560 -94.176.152.0/21 6910 -94.176.162.0/24 49471 -94.176.163.0/24 9009 -94.176.164.0/23 9050 -94.176.166.0/23 31609 -94.176.168.0/22 15945 -94.176.176.0/22 199292 -94.176.180.0/23 50990 -94.176.183.0/24 50757 -94.176.186.0/23 39425 -94.176.188.0/23 61053 -94.176.190.0/24 49592 -94.176.191.0/24 60194 -94.176.194.0/23 29119 -94.176.196.0/22 12593 -94.176.200.0/21 6910 -94.176.208.0/23 201838 -94.176.210.0/23 39572 -94.176.212.0/24 8708 -94.176.213.0/24 38995 -94.176.214.0/23 41055 -94.176.220.0/22 6910 -94.176.224.0/21 1653 -94.176.232.0/21 62282 -94.176.240.0/20 29252 -94.177.4.0/24 58305 -94.177.5.0/24 43350 -94.177.6.0/23 39312 -94.177.8.0/23 12310 -94.177.10.0/23 50887 -94.177.12.0/24 49981 -94.177.13.0/24 64417 -94.177.14.0/23 44605 -94.177.16.0/24 39492 -94.177.17.0/24 203872 -94.177.18.0/23 31638 -94.177.20.0/24 201603 -94.177.21.0/24 12874 -94.177.22.0/24 201341 -94.177.23.0/24 208913 -94.177.24.0/24 48427 -94.177.25.0/24 201601 -94.177.26.0/24 6910 -94.177.27.0/24 209706 -94.177.28.0/24 49383 -94.177.29.0/24 2614 -94.177.30.0/23 43443 -94.177.32.0/20 39737 -94.177.48.0/23 51024 -94.177.50.0/24 49023 -94.177.51.0/24 62343 -94.177.52.0/22 50604 -94.177.56.0/23 50604 -94.177.58.0/24 50887 -94.177.59.0/24 34415 -94.177.60.0/22 39855 -94.177.65.0/24 209706 -94.177.66.0/24 39081 -94.177.67.0/24 33387 -94.177.68.0/22 197589 -94.177.72.0/21 39501 -94.177.80.0/21 44081 -94.177.88.0/21 24611 -94.177.96.0/23 50887 -94.177.98.0/23 60781 -94.177.104.0/24 48427 -94.177.105.0/24 200023 -94.177.106.0/24 58022 -94.177.107.0/24 9050 -94.177.112.0/24 34989 -94.177.113.0/24 209706 -94.177.114.0/23 201198 -94.177.118.0/24 209706 -94.177.119.0/24 8708 -94.177.120.0/23 34416 -94.177.122.0/24 58057 -94.177.123.0/24 49335 -94.177.124.0/23 41496 -94.177.126.0/24 51490 -94.177.127.0/24 56550 -94.177.128.0/24 47252 -94.177.129.0/24 202744 -94.177.131.0/24 198529 -94.177.132.0/24 206162 -94.177.133.0/24 206825 -94.177.136.0/23 52189 -94.177.138.0/23 201838 -94.177.140.0/22 42336 -94.177.144.0/24 48881 -94.177.145.0/24 52202 -94.177.146.0/24 60781 -94.177.147.0/24 64417 -94.177.150.0/24 62343 -94.177.151.0/24 31638 -94.177.152.0/21 29119 -94.177.160.0/19 31034 -94.177.192.0/19 31034 -94.177.224.0/21 200185 -94.177.232.0/21 199653 -94.177.240.0/22 199653 -94.177.244.0/22 200185 -94.177.248.0/21 199883 -94.178.0.0/15 6849 -94.180.0.0/20 43478 -94.180.16.0/21 43478 -94.180.24.0/21 57044 -94.180.32.0/21 50543 -94.180.40.0/21 43478 -94.180.48.0/21 43478 -94.180.56.0/21 57378 -94.180.64.0/21 56330 -94.180.72.0/21 43478 -94.180.80.0/20 43478 -94.180.96.0/19 43478 -94.180.128.0/17 41668 -94.181.0.0/21 52207 -94.181.8.0/21 51035 -94.181.16.0/21 39028 -94.181.24.0/21 50498 -94.181.32.0/20 41661 -94.181.48.0/21 21353 -94.181.56.0/24 21353 -94.181.57.0/24 49048 -94.181.58.0/23 12772 -94.181.60.0/23 57378 -94.181.62.0/24 57378 -94.181.63.0/24 49048 -94.181.64.0/18 34590 -94.181.128.0/18 41754 -94.181.192.0/18 41727 -94.182.0.0/15 31549 -94.184.0.0/18 6736 -94.184.64.0/19 6736 -94.184.96.0/20 6736 -94.184.112.0/21 56765 -94.184.120.0/21 6736 -94.184.128.0/21 12660 -94.184.136.0/22 6736 -94.184.140.0/22 60638 -94.184.144.0/20 6736 -94.184.160.0/20 29068 -94.184.176.0/21 47558 -94.184.184.0/21 6736 -94.184.192.0/18 6736 -94.185.0.0/18 50010 -94.185.64.0/21 197653 -94.185.72.0/21 47217 -94.185.80.0/21 47869 -94.185.88.0/21 33824 -94.185.97.0/24 198013 -94.185.98.0/23 198013 -94.185.100.0/24 198013 -94.185.103.0/24 198013 -94.185.104.0/22 198013 -94.185.108.0/23 198013 -94.185.124.0/22 30848 -94.185.128.0/17 8190 -94.186.0.0/17 1257 -94.186.128.0/17 48918 -94.187.0.0/17 42003 -94.187.128.0/17 196921 -94.188.0.0/17 12714 -94.188.128.0/21 25003 -94.188.136.0/22 25003 -94.188.140.0/23 25003 -94.188.142.0/24 35392 -94.188.143.0/24 25003 -94.188.144.0/20 25003 -94.188.160.0/19 25003 -94.188.192.0/22 25003 -94.188.196.0/24 206531 -94.188.197.0/24 25003 -94.188.198.0/23 25003 -94.188.200.0/24 25003 -94.188.201.0/24 198949 -94.188.202.0/24 198949 -94.188.203.0/24 25003 -94.188.204.0/24 25003 -94.188.205.0/24 48851 -94.188.206.0/23 48851 -94.188.208.0/23 48851 -94.188.210.0/24 48851 -94.188.211.0/24 198949 -94.188.212.0/24 198949 -94.188.213.0/24 204395 -94.188.214.0/23 198949 -94.188.216.0/22 25003 -94.188.220.0/23 25003 -94.188.222.0/23 48851 -94.188.224.0/22 198949 -94.188.228.0/24 25003 -94.188.229.0/24 198949 -94.188.230.0/24 25003 -94.188.231.0/24 198949 -94.188.232.0/24 48851 -94.188.233.0/24 25003 -94.188.234.0/24 25003 -94.188.235.0/24 48851 -94.188.236.0/24 48851 -94.188.237.0/24 25003 -94.188.238.0/23 25003 -94.188.240.0/20 25003 -94.189.0.0/17 3292 -94.189.128.0/17 31042 -94.190.0.0/17 48524 -94.190.128.0/20 12796 -94.190.144.0/24 43937 -94.190.146.0/23 43937 -94.190.148.0/22 43937 -94.190.154.0/23 43937 -94.190.158.0/23 43937 -94.190.160.0/19 12796 -94.190.192.0/23 12796 -94.190.196.0/22 202087 -94.190.200.0/21 28685 -94.190.240.0/21 39537 -94.190.248.0/22 209706 -94.190.252.0/22 29084 -94.191.0.0/17 45090 -94.191.128.0/17 44034 -94.192.0.0/14 5607 -94.196.0.0/17 206067 -94.196.128.0/17 60339 -94.197.0.0/18 60339 -94.197.64.0/19 60339 -94.197.96.0/21 206067 -94.197.104.0/21 60339 -94.197.112.0/21 206067 -94.197.120.0/21 60339 -94.197.128.0/18 60339 -94.197.192.0/18 206067 -94.198.0.0/21 48148 -94.198.16.0/21 15913 -94.198.24.0/21 34762 -94.198.32.0/21 47562 -94.198.40.0/22 60233 -94.198.44.0/22 29119 -94.198.48.0/23 31236 -94.198.50.0/23 56694 -94.198.52.0/22 56694 -94.198.56.0/21 48173 -94.198.64.0/21 45011 -94.198.72.0/21 48191 -94.198.80.0/21 12658 -94.198.88.0/21 48221 -94.198.96.0/22 49367 -94.198.100.0/24 49367 -94.198.103.0/24 49367 -94.198.104.0/21 8905 -94.198.112.0/21 8518 -94.198.120.0/21 49567 -94.198.128.0/21 43667 -94.198.136.0/21 31543 -94.198.152.0/21 1140 -94.198.160.0/21 28747 -94.198.168.0/21 57315 -94.198.176.0/21 48252 -94.198.184.0/21 48273 -94.198.192.0/21 28775 -94.198.200.0/21 61205 -94.198.208.0/21 49979 -94.198.216.0/21 41070 -94.198.224.0/21 62160 -94.198.232.0/21 31724 -94.198.240.0/21 62160 -94.198.248.0/21 48288 -94.199.0.0/21 35823 -94.199.8.0/21 48291 -94.199.16.0/21 24722 -94.199.24.0/21 34660 -94.199.32.0/21 48319 -94.199.40.0/21 48298 -94.199.48.0/21 30836 -94.199.56.0/21 48403 -94.199.64.0/21 48302 -94.199.72.0/23 48322 -94.199.74.0/23 50071 -94.199.76.0/22 48541 -94.199.80.0/21 48382 -94.199.88.0/22 48328 -94.199.92.0/23 48328 -94.199.94.0/24 48328 -94.199.96.0/23 200985 -94.199.98.0/24 29208 -94.199.99.0/24 200985 -94.199.100.0/24 54600 -94.199.101.0/24 40676 -94.199.102.0/23 35913 -94.199.104.0/21 8595 -94.199.112.0/21 41369 -94.199.120.0/21 29283 -94.199.128.0/21 19855 -94.199.136.0/22 57563 -94.199.142.0/24 198328 -94.199.143.0/24 55002 -94.199.144.0/21 13009 -94.199.152.0/21 8723 -94.199.164.0/22 57844 -94.199.168.0/21 48362 -94.199.176.0/24 43711 -94.199.177.0/24 39679 -94.199.178.0/24 62292 -94.199.179.0/24 43711 -94.199.180.0/24 62292 -94.199.181.0/24 43711 -94.199.182.0/24 39679 -94.199.183.0/24 43711 -94.199.184.0/21 16376 -94.199.192.0/21 48364 -94.199.200.0/21 42807 -94.199.208.0/22 209400 -94.199.212.0/22 31400 -94.199.216.0/21 42748 -94.199.224.0/21 39319 -94.199.232.0/23 49413 -94.199.234.0/23 202038 -94.199.236.0/23 49413 -94.199.238.0/24 202020 -94.199.239.0/24 202038 -94.199.240.0/24 8972 -94.199.241.0/24 20773 -94.199.242.0/24 20773 -94.199.243.0/24 8972 -94.199.244.0/22 8972 -94.199.248.0/24 30361 -94.199.249.0/24 48684 -94.199.250.0/23 48684 -94.199.252.0/23 48684 -94.199.254.0/24 30361 -94.199.255.0/24 48684 -94.200.0.0/14 15802 -94.204.0.0/15 15802 -94.206.0.0/16 15802 -94.207.0.0/19 15802 -94.207.32.0/21 57187 -94.207.40.0/24 46071 -94.207.41.0/24 25465 -94.207.42.0/23 57187 -94.207.44.0/22 57187 -94.207.48.0/20 15802 -94.207.64.0/18 15802 -94.207.128.0/17 15802 -94.208.0.0/13 33915 -94.216.0.0/13 3209 -94.224.0.0/14 6848 -94.228.0.0/20 42666 -94.228.16.0/20 47975 -94.228.32.0/20 31463 -94.228.48.0/21 44346 -94.228.56.0/24 44346 -94.228.57.0/24 31141 -94.228.59.0/24 31141 -94.228.64.0/20 47998 -94.228.80.0/20 48133 -94.228.96.0/20 61333 -94.228.128.0/20 41887 -94.228.144.0/20 31662 -94.228.160.0/21 48467 -94.228.168.0/23 49245 -94.228.170.0/23 48467 -94.228.172.0/22 48467 -94.228.176.0/20 34177 -94.228.192.0/20 48293 -94.228.208.0/20 47869 -94.228.224.0/20 44252 -94.228.240.0/21 15672 -94.228.250.0/23 15672 -94.228.252.0/22 15672 -94.229.0.0/20 41458 -94.229.20.0/23 41938 -94.229.22.0/24 41938 -94.229.32.0/20 48326 -94.229.48.0/20 12871 -94.229.64.0/20 42831 -94.229.80.0/23 62178 -94.229.82.0/24 62178 -94.229.83.0/24 201966 -94.229.84.0/23 201966 -94.229.86.0/23 62178 -94.229.88.0/21 62178 -94.229.96.0/20 39102 -94.229.112.0/22 49122 -94.229.124.0/22 49122 -94.229.128.0/20 35826 -94.229.144.0/20 198967 -94.229.160.0/20 61323 -94.229.176.0/20 49312 -94.229.192.0/20 12386 -94.229.208.0/20 31304 -94.229.224.0/22 48796 -94.229.228.0/22 49154 -94.229.236.0/22 29190 -94.229.240.0/20 48462 -94.230.0.0/20 25227 -94.230.16.0/20 48464 -94.230.32.0/20 48475 -94.230.48.0/20 48484 -94.230.64.0/21 48500 -94.230.72.0/22 48191 -94.230.76.0/22 49265 -94.230.80.0/20 47956 -94.230.96.0/20 43406 -94.230.112.0/20 43314 -94.230.128.0/20 48642 -94.230.144.0/20 48661 -94.230.160.0/21 48670 -94.230.176.0/20 31042 -94.230.192.0/20 8779 -94.230.208.0/20 29691 -94.230.224.0/20 29385 -94.230.240.0/20 49732 -94.231.0.0/20 41841 -94.231.16.0/20 196648 -94.231.32.0/20 39049 -94.231.48.0/20 29314 -94.231.64.0/20 30886 -94.231.80.0/20 48971 -94.231.96.0/20 48854 -94.231.112.0/23 56420 -94.231.114.0/24 41854 -94.231.115.0/24 56420 -94.231.116.0/22 56420 -94.231.120.0/22 56420 -94.231.124.0/23 56420 -94.231.126.0/24 41854 -94.231.127.0/24 56420 -94.231.128.0/20 49136 -94.231.144.0/20 48481 -94.231.160.0/20 48940 -94.231.176.0/20 49183 -94.231.194.0/24 207492 -94.231.199.0/24 203735 -94.231.204.0/24 201602 -94.231.216.0/22 35913 -94.231.224.0/20 29512 -94.231.240.0/20 35224 -94.232.0.0/21 43434 -94.232.8.0/21 12714 -94.232.16.0/21 48034 -94.232.24.0/22 21001 -94.232.28.0/23 16255 -94.232.30.0/24 25455 -94.232.31.0/24 200515 -94.232.32.0/21 50231 -94.232.48.0/21 48100 -94.232.56.0/21 48089 -94.232.64.0/21 48128 -94.232.72.0/21 3326 -94.232.80.0/21 6799 -94.232.88.0/21 48365 -94.232.96.0/21 60912 -94.232.104.0/21 48327 -94.232.112.0/21 48345 -94.232.120.0/21 197225 -94.232.136.0/21 48379 -94.232.144.0/21 39893 -94.232.152.0/21 39288 -94.232.160.0/21 25433 -94.232.168.0/21 48434 -94.232.176.0/21 48437 -94.232.184.0/21 48470 -94.232.192.0/21 15866 -94.232.200.0/21 12389 -94.232.208.0/21 43658 -94.232.216.0/21 50625 -94.232.224.0/21 39067 -94.232.232.0/21 42574 -94.232.240.0/22 210284 -94.232.244.0/22 34549 -94.232.248.0/22 29256 -94.232.252.0/22 207596 -94.233.0.0/20 12389 -94.233.16.0/22 12389 -94.233.20.0/22 33934 -94.233.24.0/21 33934 -94.233.32.0/21 33934 -94.233.40.0/22 12389 -94.233.44.0/23 33934 -94.233.46.0/24 12389 -94.233.47.0/24 33934 -94.233.48.0/21 33934 -94.233.56.0/21 12389 -94.233.64.0/22 33934 -94.233.68.0/23 12389 -94.233.70.0/24 33934 -94.233.71.0/24 12389 -94.233.72.0/23 12389 -94.233.74.0/23 33934 -94.233.76.0/22 33934 -94.233.80.0/22 12389 -94.233.84.0/22 33934 -94.233.88.0/21 12389 -94.233.96.0/21 12389 -94.233.104.0/22 33934 -94.233.108.0/22 12389 -94.233.112.0/21 12389 -94.233.120.0/22 12389 -94.233.124.0/22 33934 -94.233.128.0/21 35177 -94.233.144.0/23 12389 -94.233.146.0/24 12389 -94.233.147.0/24 25490 -94.233.148.0/22 25490 -94.233.160.0/20 25490 -94.233.192.0/18 12389 -94.234.0.0/16 25169 -94.235.0.0/17 20978 -94.235.128.0/18 20978 -94.235.192.0/19 20978 -94.236.0.0/17 15395 -94.236.128.0/20 42555 -94.236.144.0/24 8866 -94.236.145.0/24 202209 -94.236.146.0/24 8866 -94.236.147.0/24 42555 -94.236.148.0/23 42555 -94.236.150.0/24 42555 -94.236.151.0/24 8866 -94.236.152.0/23 8866 -94.236.154.0/24 8866 -94.236.155.0/24 42555 -94.236.156.0/23 42555 -94.236.158.0/24 42555 -94.236.159.0/24 202209 -94.236.160.0/23 8866 -94.236.162.0/24 49330 -94.236.163.0/24 8866 -94.236.164.0/22 44309 -94.236.168.0/24 39401 -94.236.169.0/24 207826 -94.236.170.0/23 8866 -94.236.172.0/22 8866 -94.236.176.0/20 8866 -94.236.192.0/22 42555 -94.236.196.0/24 42555 -94.236.197.0/24 205224 -94.236.198.0/23 42555 -94.236.200.0/22 42555 -94.236.204.0/23 8866 -94.236.206.0/23 42555 -94.236.208.0/24 42555 -94.236.210.0/23 42555 -94.236.212.0/22 42555 -94.236.216.0/22 41946 -94.236.220.0/23 41946 -94.236.224.0/24 42555 -94.236.225.0/24 197929 -94.236.226.0/23 42555 -94.236.228.0/23 8866 -94.236.230.0/24 42555 -94.236.232.0/24 42555 -94.236.233.0/24 197304 -94.236.234.0/23 8866 -94.236.236.0/24 57765 -94.236.237.0/24 42555 -94.236.238.0/24 8866 -94.236.239.0/24 197304 -94.236.240.0/20 8866 -94.237.0.0/23 202053 -94.237.4.0/22 202053 -94.237.8.0/21 202053 -94.237.16.0/20 202053 -94.237.32.0/19 202053 -94.237.64.0/19 202053 -94.237.112.0/21 202053 -94.237.120.0/22 202053 -94.237.124.0/23 202053 -94.237.126.0/24 202053 -94.237.128.0/17 12958 -94.238.0.0/15 5410 -94.240.0.0/19 47223 -94.240.32.0/22 47223 -94.240.36.0/23 47223 -94.240.38.0/23 199363 -94.240.40.0/24 47223 -94.240.41.0/24 205430 -94.240.42.0/24 47223 -94.240.43.0/24 205430 -94.240.44.0/23 47223 -94.240.46.0/24 200094 -94.240.47.0/24 47223 -94.240.48.0/20 47223 -94.240.64.0/18 48092 -94.240.128.0/19 48045 -94.240.160.0/19 15377 -94.240.192.0/18 16010 -94.241.0.0/18 12389 -94.241.64.0/18 42908 -94.241.128.0/22 56466 -94.241.132.0/22 201936 -94.241.136.0/21 39650 -94.241.160.0/21 39650 -94.241.168.0/21 207141 -94.241.176.0/21 207141 -94.241.184.0/22 42337 -94.241.192.0/18 12389 -94.242.0.0/18 43317 -94.242.64.0/18 30764 -94.242.128.0/20 12389 -94.242.144.0/21 15468 -94.242.152.0/21 12389 -94.242.160.0/24 15468 -94.242.161.0/24 12389 -94.242.162.0/23 12389 -94.242.164.0/22 12389 -94.242.168.0/23 15468 -94.242.170.0/24 15468 -94.242.171.0/24 12389 -94.242.172.0/22 12389 -94.242.176.0/21 12389 -94.242.184.0/22 12389 -94.242.188.0/24 12389 -94.242.189.0/24 15468 -94.242.190.0/23 12389 -94.242.192.0/18 5577 -94.243.0.0/18 48212 -94.243.64.0/18 25454 -94.243.128.0/18 48249 -94.243.192.0/20 39898 -94.243.208.0/21 50870 -94.243.216.0/22 196726 -94.243.220.0/22 31277 -94.243.224.0/20 39898 -94.243.240.0/20 44270 -94.244.0.0/18 48278 -94.244.64.0/18 25190 -94.244.128.0/18 34743 -94.245.0.0/19 45011 -94.245.32.0/22 15782 -94.245.36.0/24 15782 -94.245.37.0/24 45011 -94.245.38.0/23 15782 -94.245.40.0/24 45011 -94.245.41.0/24 15782 -94.245.42.0/23 15782 -94.245.44.0/22 15782 -94.245.48.0/20 45011 -94.245.64.0/20 8075 -94.245.80.0/22 8075 -94.245.84.0/24 8068 -94.245.85.0/24 8075 -94.245.86.0/23 8075 -94.245.88.0/21 8075 -94.245.96.0/19 8075 -94.245.128.0/21 12389 -94.245.136.0/21 21487 -94.245.144.0/20 21487 -94.245.160.0/19 12389 -94.245.192.0/18 25255 -94.246.0.0/18 34087 -94.246.64.0/19 12552 -94.246.96.0/20 12552 -94.246.112.0/21 12552 -94.246.120.0/22 12552 -94.246.124.0/23 12552 -94.246.126.0/24 12552 -94.246.127.0/24 206320 -94.246.128.0/19 33923 -94.246.160.0/21 33923 -94.246.168.0/21 201925 -94.246.176.0/23 33923 -94.246.178.0/24 33923 -94.246.179.0/24 201925 -94.246.180.0/23 201925 -94.246.182.0/24 201925 -94.246.183.0/24 48850 -94.246.185.0/24 201054 -94.246.186.0/23 33923 -94.246.188.0/22 33923 -94.246.192.0/20 3249 -94.246.208.0/21 3249 -94.246.224.0/19 13272 -94.247.0.0/21 39647 -94.247.8.0/21 48394 -94.247.16.0/21 49255 -94.247.24.0/21 35393 -94.247.32.0/21 48417 -94.247.40.0/23 34549 -94.247.42.0/24 34549 -94.247.43.0/24 200462 -94.247.44.0/22 34549 -94.247.48.0/21 44451 -94.247.56.0/21 48441 -94.247.64.0/21 48450 -94.247.72.0/21 8587 -94.247.80.0/22 198781 -94.247.84.0/23 34738 -94.247.86.0/23 201838 -94.247.88.0/21 20845 -94.247.96.0/21 6908 -94.247.104.0/23 48472 -94.247.106.0/24 48472 -94.247.107.0/24 57822 -94.247.108.0/23 57822 -94.247.110.0/24 57822 -94.247.111.0/24 49673 -94.247.112.0/21 48483 -94.247.120.0/21 47181 -94.247.128.0/21 48716 -94.247.144.0/21 42572 -94.247.152.0/21 49694 -94.247.160.0/21 48504 -94.247.168.0/21 43948 -94.247.176.0/21 35393 -94.247.184.0/21 44219 -94.247.192.0/21 15879 -94.247.200.0/21 48580 -94.247.208.0/21 43168 -94.247.216.0/21 61174 -94.247.224.0/22 12963 -94.247.228.0/24 209115 -94.247.229.0/24 199431 -94.247.230.0/23 12963 -94.247.232.0/21 43646 -94.247.240.0/21 48532 -94.247.248.0/22 57988 -94.247.252.0/22 42277 -94.248.0.0/20 42396 -94.248.64.0/18 12430 -94.248.128.0/19 43529 -94.248.160.0/21 42232 -94.248.168.0/23 47421 -94.248.170.0/23 50181 -94.248.172.0/23 50181 -94.248.174.0/24 50181 -94.248.176.0/21 47159 -94.248.184.0/21 41897 -94.248.192.0/19 43529 -94.248.224.0/20 5483 -94.248.240.0/21 43529 -94.248.248.0/21 5483 -94.249.0.0/17 8376 -94.249.128.0/17 12586 -94.250.0.0/19 25144 -94.250.32.0/22 25144 -94.250.36.0/23 25144 -94.250.38.0/24 25144 -94.250.39.0/24 198252 -94.250.40.0/22 198252 -94.250.44.0/22 25144 -94.250.48.0/21 21107 -94.250.56.0/22 21107 -94.250.60.0/22 25144 -94.250.64.0/22 42571 -94.250.68.0/22 25144 -94.250.72.0/21 25144 -94.250.80.0/23 25144 -94.250.82.0/23 42571 -94.250.84.0/22 25144 -94.250.88.0/21 25144 -94.250.96.0/19 25144 -94.250.128.0/18 12810 -94.250.192.0/19 56876 -94.250.224.0/20 8586 -94.250.240.0/22 209629 -94.250.244.0/22 48685 -94.250.248.0/21 29182 -94.251.0.0/22 15774 -94.251.4.0/22 21127 -94.251.8.0/21 21127 -94.251.16.0/23 15774 -94.251.18.0/23 21127 -94.251.20.0/22 21127 -94.251.24.0/21 21127 -94.251.32.0/22 21127 -94.251.36.0/24 21127 -94.251.37.0/24 15774 -94.251.38.0/23 15774 -94.251.40.0/21 21127 -94.251.48.0/21 21127 -94.251.56.0/23 15774 -94.251.58.0/24 15774 -94.251.59.0/24 21127 -94.251.60.0/22 21127 -94.251.64.0/21 21127 -94.251.72.0/22 21127 -94.251.76.0/24 21127 -94.251.77.0/24 15774 -94.251.78.0/23 21127 -94.251.80.0/21 21127 -94.251.88.0/23 15774 -94.251.90.0/23 21127 -94.251.92.0/22 21127 -94.251.96.0/21 21127 -94.251.104.0/24 21127 -94.251.105.0/24 15774 -94.251.106.0/24 15774 -94.251.107.0/24 21127 -94.251.108.0/22 21127 -94.251.112.0/21 21127 -94.251.120.0/24 15774 -94.251.121.0/24 21127 -94.251.122.0/24 21127 -94.251.123.0/24 15774 -94.251.124.0/24 21127 -94.251.125.0/24 15774 -94.251.126.0/23 21127 -94.251.128.0/17 21021 -94.252.0.0/17 56665 -94.252.128.0/17 29256 -94.253.0.0/18 21453 -94.253.64.0/20 21453 -94.253.80.0/20 48149 -94.253.96.0/19 21453 -94.253.128.0/17 31012 -94.254.0.0/17 8473 -94.254.128.0/17 39603 -94.255.0.0/24 12683 -94.255.1.0/24 12389 -94.255.2.0/23 12683 -94.255.4.0/24 12389 -94.255.5.0/24 12683 -94.255.6.0/23 12683 -94.255.8.0/24 12389 -94.255.9.0/24 12683 -94.255.10.0/23 12389 -94.255.12.0/22 12683 -94.255.16.0/22 12683 -94.255.20.0/24 12683 -94.255.21.0/24 12389 -94.255.22.0/24 12389 -94.255.23.0/24 12683 -94.255.24.0/23 12683 -94.255.26.0/24 12389 -94.255.27.0/24 12683 -94.255.28.0/22 12683 -94.255.32.0/23 12683 -94.255.34.0/24 12683 -94.255.35.0/24 12389 -94.255.36.0/22 12683 -94.255.40.0/21 12683 -94.255.48.0/20 12683 -94.255.64.0/24 12389 -94.255.65.0/24 12683 -94.255.66.0/24 12683 -94.255.67.0/24 12389 -94.255.68.0/23 12683 -94.255.70.0/24 12683 -94.255.71.0/24 12389 -94.255.72.0/22 12683 -94.255.76.0/22 12389 -94.255.80.0/23 12683 -94.255.82.0/24 12389 -94.255.83.0/24 12683 -94.255.84.0/22 12683 -94.255.88.0/22 12683 -94.255.92.0/23 12683 -94.255.94.0/24 12389 -94.255.95.0/24 12683 -94.255.96.0/21 12683 -94.255.104.0/23 12683 -94.255.106.0/24 12389 -94.255.107.0/24 12683 -94.255.108.0/22 12683 -94.255.112.0/20 12683 -94.255.128.0/17 29518 -95.0.0.0/17 9121 -95.0.128.0/18 9121 -95.0.192.0/19 9121 -95.0.224.0/20 9121 -95.0.240.0/21 9121 -95.0.248.0/23 47331 -95.0.250.0/24 47331 -95.0.251.0/24 9121 -95.0.252.0/22 9121 -95.1.0.0/16 9121 -95.2.0.0/15 9121 -95.4.0.0/16 9121 -95.5.0.0/22 47331 -95.5.4.0/24 9121 -95.5.5.0/24 47331 -95.5.6.0/23 47331 -95.5.8.0/21 47331 -95.5.16.0/23 9121 -95.5.18.0/23 47331 -95.5.20.0/22 9121 -95.5.24.0/22 47331 -95.5.28.0/22 9121 -95.5.32.0/19 47331 -95.5.64.0/18 9121 -95.5.128.0/23 9121 -95.5.130.0/23 47331 -95.5.132.0/22 47331 -95.5.136.0/24 9121 -95.5.137.0/24 47331 -95.5.138.0/23 47331 -95.5.140.0/24 47331 -95.5.141.0/24 9121 -95.5.142.0/24 9121 -95.5.143.0/24 47331 -95.5.144.0/24 9121 -95.5.145.0/24 47331 -95.5.146.0/23 9121 -95.5.148.0/22 47331 -95.5.152.0/23 47331 -95.5.154.0/23 9121 -95.5.156.0/24 9121 -95.5.157.0/24 47331 -95.5.158.0/23 47331 -95.5.160.0/20 47331 -95.5.176.0/22 47331 -95.5.180.0/24 47331 -95.5.181.0/24 9121 -95.5.182.0/23 47331 -95.5.184.0/21 9121 -95.5.192.0/22 47331 -95.5.196.0/24 47331 -95.5.197.0/24 9121 -95.5.198.0/23 47331 -95.5.200.0/22 9121 -95.5.204.0/22 47331 -95.5.208.0/20 47331 -95.5.224.0/22 9121 -95.5.228.0/22 47331 -95.5.232.0/22 47331 -95.5.236.0/22 9121 -95.5.240.0/23 47331 -95.5.242.0/24 9121 -95.5.243.0/24 47331 -95.5.244.0/22 9121 -95.5.248.0/23 47331 -95.5.250.0/23 9121 -95.5.252.0/23 9121 -95.5.254.0/23 47331 -95.6.0.0/21 9121 -95.6.8.0/23 47331 -95.6.10.0/23 9121 -95.6.12.0/22 9121 -95.6.16.0/22 9121 -95.6.20.0/24 47331 -95.6.21.0/24 9121 -95.6.22.0/23 9121 -95.6.24.0/21 9121 -95.6.32.0/23 9121 -95.6.34.0/24 9121 -95.6.35.0/24 47331 -95.6.36.0/23 9121 -95.6.38.0/24 9121 -95.6.39.0/24 47331 -95.6.40.0/24 9121 -95.6.41.0/24 47331 -95.6.42.0/23 9121 -95.6.44.0/24 9121 -95.6.45.0/24 47331 -95.6.46.0/24 47331 -95.6.47.0/24 9121 -95.6.48.0/24 47331 -95.6.49.0/24 9121 -95.6.50.0/24 9121 -95.6.51.0/24 47331 -95.6.52.0/24 47331 -95.6.53.0/24 9121 -95.6.54.0/24 47331 -95.6.55.0/24 9121 -95.6.56.0/23 9121 -95.6.58.0/23 47331 -95.6.60.0/24 9121 -95.6.61.0/24 47331 -95.6.62.0/23 9121 -95.6.64.0/20 9121 -95.6.80.0/22 9121 -95.6.84.0/24 47331 -95.6.85.0/24 9121 -95.6.86.0/23 47331 -95.6.88.0/23 9121 -95.6.90.0/24 47331 -95.6.91.0/24 9121 -95.6.92.0/22 9121 -95.6.96.0/22 9121 -95.6.100.0/23 9121 -95.6.102.0/23 47331 -95.6.104.0/23 9121 -95.6.106.0/23 47331 -95.6.108.0/22 47331 -95.6.112.0/23 47331 -95.6.114.0/24 47331 -95.6.115.0/24 9121 -95.6.116.0/22 47331 -95.6.120.0/23 47331 -95.6.122.0/24 47331 -95.6.123.0/24 9121 -95.6.124.0/24 9121 -95.6.125.0/24 47331 -95.6.126.0/24 47331 -95.6.127.0/24 9121 -95.6.128.0/17 9121 -95.7.0.0/19 9121 -95.7.32.0/24 9121 -95.7.33.0/24 47331 -95.7.34.0/24 47331 -95.7.35.0/24 9121 -95.7.36.0/22 47331 -95.7.40.0/21 47331 -95.7.48.0/21 47331 -95.7.56.0/23 47331 -95.7.58.0/23 9121 -95.7.60.0/22 47331 -95.7.64.0/24 9121 -95.7.65.0/24 47331 -95.7.66.0/23 47331 -95.7.68.0/23 9121 -95.7.70.0/23 47331 -95.7.72.0/21 47331 -95.7.80.0/22 47331 -95.7.84.0/24 9121 -95.7.85.0/24 47331 -95.7.86.0/23 47331 -95.7.88.0/24 9121 -95.7.89.0/24 47331 -95.7.90.0/23 9121 -95.7.92.0/24 9121 -95.7.93.0/24 47331 -95.7.94.0/23 47331 -95.7.96.0/24 47331 -95.7.97.0/24 9121 -95.7.98.0/24 47331 -95.7.99.0/24 9121 -95.7.100.0/22 47331 -95.7.104.0/22 47331 -95.7.108.0/23 47331 -95.7.110.0/24 9121 -95.7.111.0/24 47331 -95.7.112.0/20 47331 -95.7.128.0/19 47331 -95.7.160.0/22 9121 -95.7.164.0/22 47331 -95.7.168.0/22 47331 -95.7.172.0/22 9121 -95.7.176.0/22 47331 -95.7.180.0/22 9121 -95.7.184.0/24 47331 -95.7.185.0/24 9121 -95.7.186.0/23 47331 -95.7.188.0/22 47331 -95.7.192.0/22 47331 -95.7.196.0/23 9121 -95.7.198.0/23 47331 -95.7.200.0/21 47331 -95.7.208.0/22 47331 -95.7.212.0/23 47331 -95.7.214.0/24 47331 -95.7.215.0/24 9121 -95.7.216.0/24 9121 -95.7.217.0/24 47331 -95.7.218.0/23 47331 -95.7.220.0/22 47331 -95.7.224.0/20 47331 -95.7.240.0/20 9121 -95.8.0.0/24 9121 -95.8.1.0/24 47331 -95.8.2.0/24 47331 -95.8.3.0/24 9121 -95.8.4.0/22 47331 -95.8.8.0/23 47331 -95.8.10.0/24 9121 -95.8.11.0/24 47331 -95.8.12.0/24 47331 -95.8.13.0/24 9121 -95.8.14.0/24 9121 -95.8.15.0/24 47331 -95.8.16.0/24 47331 -95.8.17.0/24 9121 -95.8.18.0/23 9121 -95.8.20.0/24 47331 -95.8.21.0/24 9121 -95.8.22.0/23 9121 -95.8.24.0/23 47331 -95.8.26.0/23 9121 -95.8.28.0/22 47331 -95.8.32.0/23 47331 -95.8.34.0/24 9121 -95.8.35.0/24 47331 -95.8.36.0/24 47331 -95.8.37.0/24 9121 -95.8.38.0/23 47331 -95.8.40.0/23 47331 -95.8.42.0/24 47331 -95.8.43.0/24 9121 -95.8.44.0/23 47331 -95.8.46.0/23 9121 -95.8.48.0/24 47331 -95.8.49.0/24 9121 -95.8.50.0/24 9121 -95.8.51.0/24 47331 -95.8.52.0/24 47331 -95.8.53.0/24 9121 -95.8.54.0/23 47331 -95.8.56.0/23 9121 -95.8.58.0/24 9121 -95.8.59.0/24 47331 -95.8.60.0/23 9121 -95.8.62.0/24 9121 -95.8.63.0/24 47331 -95.8.64.0/22 47331 -95.8.68.0/23 47331 -95.8.70.0/23 9121 -95.8.72.0/23 47331 -95.8.74.0/24 9121 -95.8.75.0/24 47331 -95.8.76.0/22 47331 -95.8.80.0/23 47331 -95.8.82.0/24 9121 -95.8.83.0/24 47331 -95.8.84.0/22 47331 -95.8.88.0/21 47331 -95.8.96.0/19 47331 -95.8.128.0/20 47331 -95.8.144.0/21 47331 -95.8.152.0/22 47331 -95.8.156.0/24 9121 -95.8.157.0/24 47331 -95.8.158.0/24 9121 -95.8.159.0/24 47331 -95.8.160.0/20 47331 -95.8.176.0/21 47331 -95.8.184.0/21 9121 -95.8.192.0/19 47331 -95.8.224.0/21 47331 -95.8.232.0/22 47331 -95.8.236.0/24 47331 -95.8.237.0/24 9121 -95.8.238.0/23 47331 -95.8.240.0/21 47331 -95.8.248.0/21 9121 -95.9.0.0/23 9121 -95.9.2.0/24 47331 -95.9.3.0/24 9121 -95.9.4.0/23 47331 -95.9.6.0/23 9121 -95.9.8.0/23 9121 -95.9.10.0/24 47331 -95.9.11.0/24 9121 -95.9.12.0/24 47331 -95.9.13.0/24 9121 -95.9.14.0/23 9121 -95.9.16.0/21 9121 -95.9.24.0/23 9121 -95.9.26.0/23 47331 -95.9.28.0/24 9121 -95.9.29.0/24 47331 -95.9.30.0/24 9121 -95.9.31.0/24 47331 -95.9.32.0/21 47331 -95.9.40.0/22 47331 -95.9.44.0/23 47331 -95.9.46.0/24 47331 -95.9.47.0/24 9121 -95.9.48.0/21 47331 -95.9.56.0/24 9121 -95.9.57.0/24 47331 -95.9.58.0/23 47331 -95.9.60.0/24 47331 -95.9.61.0/24 9121 -95.9.62.0/23 47331 -95.9.64.0/21 47331 -95.9.72.0/23 47331 -95.9.74.0/24 47331 -95.9.75.0/24 9121 -95.9.76.0/22 47331 -95.9.80.0/24 47331 -95.9.81.0/24 9121 -95.9.82.0/23 47331 -95.9.84.0/22 47331 -95.9.88.0/21 47331 -95.9.96.0/23 47331 -95.9.98.0/23 9121 -95.9.100.0/24 9121 -95.9.101.0/24 47331 -95.9.102.0/23 47331 -95.9.104.0/21 47331 -95.9.112.0/20 47331 -95.9.128.0/22 47331 -95.9.132.0/24 47331 -95.9.133.0/24 9121 -95.9.134.0/23 47331 -95.9.136.0/22 47331 -95.9.140.0/23 47331 -95.9.142.0/24 47331 -95.9.143.0/24 9121 -95.9.144.0/23 47331 -95.9.146.0/24 47331 -95.9.147.0/24 9121 -95.9.148.0/24 47331 -95.9.149.0/24 9121 -95.9.150.0/23 47331 -95.9.152.0/22 47331 -95.9.156.0/23 47331 -95.9.158.0/24 9121 -95.9.159.0/24 47331 -95.9.160.0/22 47331 -95.9.164.0/24 9121 -95.9.165.0/24 47331 -95.9.166.0/23 47331 -95.9.168.0/21 47331 -95.9.176.0/22 47331 -95.9.180.0/24 9121 -95.9.181.0/24 47331 -95.9.182.0/23 47331 -95.9.184.0/22 47331 -95.9.188.0/24 9121 -95.9.189.0/24 47331 -95.9.190.0/23 47331 -95.9.192.0/24 9121 -95.9.193.0/24 47331 -95.9.194.0/23 47331 -95.9.196.0/23 47331 -95.9.198.0/24 47331 -95.9.199.0/24 9121 -95.9.200.0/21 47331 -95.9.208.0/21 47331 -95.9.216.0/24 9121 -95.9.217.0/24 47331 -95.9.218.0/23 47331 -95.9.220.0/22 47331 -95.9.224.0/23 47331 -95.9.226.0/24 47331 -95.9.227.0/24 9121 -95.9.228.0/22 47331 -95.9.232.0/24 47331 -95.9.233.0/24 9121 -95.9.234.0/23 47331 -95.9.236.0/22 47331 -95.9.240.0/23 47331 -95.9.242.0/24 9121 -95.9.243.0/24 47331 -95.9.244.0/24 47331 -95.9.245.0/24 9121 -95.9.246.0/23 47331 -95.9.248.0/24 47331 -95.9.249.0/24 9121 -95.9.250.0/23 47331 -95.9.252.0/22 47331 -95.10.0.0/21 47331 -95.10.8.0/22 47331 -95.10.12.0/23 47331 -95.10.14.0/23 9121 -95.10.16.0/20 47331 -95.10.32.0/19 47331 -95.10.64.0/18 9121 -95.10.128.0/23 9121 -95.10.130.0/23 47331 -95.10.132.0/24 47331 -95.10.133.0/24 9121 -95.10.134.0/24 9121 -95.10.135.0/24 47331 -95.10.136.0/21 47331 -95.10.144.0/23 47331 -95.10.146.0/24 47331 -95.10.147.0/24 9121 -95.10.148.0/23 47331 -95.10.150.0/24 9121 -95.10.151.0/24 47331 -95.10.152.0/24 9121 -95.10.153.0/24 47331 -95.10.154.0/23 47331 -95.10.156.0/24 9121 -95.10.157.0/24 47331 -95.10.158.0/23 47331 -95.10.160.0/24 47331 -95.10.161.0/24 9121 -95.10.162.0/23 9121 -95.10.164.0/22 47331 -95.10.168.0/24 9121 -95.10.169.0/24 47331 -95.10.170.0/24 47331 -95.10.171.0/24 9121 -95.10.172.0/24 9121 -95.10.173.0/24 47331 -95.10.174.0/23 47331 -95.10.176.0/20 47331 -95.10.192.0/20 47331 -95.10.208.0/21 9121 -95.10.216.0/22 47331 -95.10.220.0/24 9121 -95.10.221.0/24 47331 -95.10.222.0/23 47331 -95.10.224.0/20 47331 -95.10.240.0/23 47331 -95.10.242.0/24 47331 -95.10.243.0/24 9121 -95.10.244.0/22 47331 -95.10.248.0/22 47331 -95.10.252.0/23 9121 -95.10.254.0/23 47331 -95.11.0.0/16 9121 -95.12.0.0/20 47331 -95.12.16.0/22 47331 -95.12.20.0/22 9121 -95.12.24.0/22 47331 -95.12.28.0/24 9121 -95.12.29.0/24 47331 -95.12.30.0/23 47331 -95.12.32.0/22 47331 -95.12.36.0/23 9121 -95.12.38.0/23 47331 -95.12.40.0/22 9121 -95.12.44.0/23 47331 -95.12.46.0/23 9121 -95.12.48.0/23 9121 -95.12.50.0/23 47331 -95.12.52.0/23 47331 -95.12.54.0/24 9121 -95.12.55.0/24 47331 -95.12.56.0/22 47331 -95.12.60.0/23 47331 -95.12.62.0/23 9121 -95.12.64.0/20 47331 -95.12.80.0/21 47331 -95.12.88.0/22 47331 -95.12.92.0/22 9121 -95.12.96.0/21 47331 -95.12.104.0/22 47331 -95.12.108.0/23 47331 -95.12.110.0/23 9121 -95.12.112.0/20 47331 -95.12.128.0/22 47331 -95.12.132.0/23 47331 -95.12.134.0/23 9121 -95.12.136.0/23 9121 -95.12.138.0/23 47331 -95.12.140.0/24 47331 -95.12.141.0/24 9121 -95.12.142.0/24 9121 -95.12.143.0/24 47331 -95.12.144.0/23 47331 -95.12.146.0/24 9121 -95.12.147.0/24 47331 -95.12.148.0/23 9121 -95.12.150.0/23 47331 -95.12.152.0/23 9121 -95.12.154.0/23 47331 -95.12.156.0/22 47331 -95.12.160.0/22 47331 -95.12.164.0/23 47331 -95.12.166.0/24 47331 -95.12.167.0/24 9121 -95.12.168.0/24 47331 -95.12.169.0/24 9121 -95.12.170.0/23 9121 -95.12.172.0/24 9121 -95.12.173.0/24 47331 -95.12.174.0/23 9121 -95.12.176.0/20 9121 -95.12.192.0/22 47331 -95.12.196.0/24 9121 -95.12.197.0/24 47331 -95.12.198.0/23 47331 -95.12.200.0/23 47331 -95.12.202.0/23 9121 -95.12.204.0/24 47331 -95.12.205.0/24 9121 -95.12.206.0/24 47331 -95.12.207.0/24 9121 -95.12.208.0/24 47331 -95.12.209.0/24 9121 -95.12.210.0/24 9121 -95.12.211.0/24 47331 -95.12.212.0/24 9121 -95.12.213.0/24 47331 -95.12.214.0/24 9121 -95.12.215.0/24 47331 -95.12.216.0/23 9121 -95.12.218.0/24 47331 -95.12.219.0/24 9121 -95.12.220.0/22 9121 -95.12.224.0/23 47331 -95.12.226.0/24 47331 -95.12.227.0/24 9121 -95.12.228.0/23 47331 -95.12.230.0/24 9121 -95.12.231.0/24 47331 -95.12.232.0/21 47331 -95.12.240.0/23 47331 -95.12.242.0/24 9121 -95.12.243.0/24 47331 -95.12.244.0/24 9121 -95.12.245.0/24 47331 -95.12.246.0/23 47331 -95.12.248.0/24 9121 -95.12.249.0/24 47331 -95.12.250.0/23 47331 -95.12.252.0/23 47331 -95.12.254.0/24 47331 -95.12.255.0/24 9121 -95.13.0.0/22 47331 -95.13.4.0/22 9121 -95.13.8.0/21 47331 -95.13.16.0/24 47331 -95.13.17.0/24 9121 -95.13.18.0/23 47331 -95.13.20.0/23 47331 -95.13.22.0/24 47331 -95.13.23.0/24 9121 -95.13.24.0/21 47331 -95.13.32.0/21 9121 -95.13.40.0/21 47331 -95.13.48.0/22 47331 -95.13.52.0/23 47331 -95.13.54.0/24 47331 -95.13.55.0/24 9121 -95.13.56.0/24 47331 -95.13.57.0/24 9121 -95.13.58.0/23 47331 -95.13.60.0/22 47331 -95.13.64.0/19 47331 -95.13.96.0/23 47331 -95.13.98.0/24 9121 -95.13.99.0/24 47331 -95.13.100.0/24 47331 -95.13.101.0/24 9121 -95.13.102.0/23 47331 -95.13.104.0/22 47331 -95.13.108.0/23 47331 -95.13.110.0/24 9121 -95.13.111.0/24 47331 -95.13.112.0/24 9121 -95.13.113.0/24 47331 -95.13.114.0/24 47331 -95.13.115.0/24 9121 -95.13.116.0/23 9121 -95.13.118.0/23 47331 -95.13.120.0/23 47331 -95.13.122.0/24 9121 -95.13.123.0/24 47331 -95.13.124.0/24 47331 -95.13.125.0/24 9121 -95.13.126.0/24 9121 -95.13.127.0/24 47331 -95.13.128.0/24 9121 -95.13.129.0/24 47331 -95.13.130.0/23 47331 -95.13.132.0/23 47331 -95.13.134.0/24 47331 -95.13.135.0/24 9121 -95.13.136.0/22 47331 -95.13.140.0/23 47331 -95.13.142.0/24 47331 -95.13.143.0/24 9121 -95.13.144.0/23 9121 -95.13.146.0/23 47331 -95.13.148.0/23 47331 -95.13.150.0/24 9121 -95.13.151.0/24 47331 -95.13.152.0/22 47331 -95.13.156.0/23 47331 -95.13.158.0/23 9121 -95.13.160.0/23 9121 -95.13.162.0/23 47331 -95.13.164.0/23 9121 -95.13.166.0/23 47331 -95.13.168.0/22 47331 -95.13.172.0/23 47331 -95.13.174.0/23 9121 -95.13.176.0/23 9121 -95.13.178.0/23 47331 -95.13.180.0/22 47331 -95.13.184.0/22 47331 -95.13.188.0/22 9121 -95.13.192.0/19 9121 -95.13.224.0/20 9121 -95.13.240.0/24 47331 -95.13.241.0/24 9121 -95.13.242.0/23 47331 -95.13.244.0/22 47331 -95.13.248.0/21 47331 -95.14.0.0/23 47331 -95.14.2.0/23 9121 -95.14.4.0/22 9121 -95.14.8.0/21 9121 -95.14.16.0/20 9121 -95.14.32.0/19 9121 -95.14.64.0/19 47331 -95.14.96.0/22 9121 -95.14.100.0/23 47331 -95.14.102.0/24 47331 -95.14.103.0/24 9121 -95.14.104.0/22 47331 -95.14.108.0/24 9121 -95.14.109.0/24 47331 -95.14.110.0/23 47331 -95.14.112.0/24 9121 -95.14.113.0/24 47331 -95.14.114.0/24 47331 -95.14.115.0/24 9121 -95.14.116.0/23 47331 -95.14.118.0/24 9121 -95.14.119.0/24 47331 -95.14.120.0/22 47331 -95.14.124.0/23 47331 -95.14.126.0/24 9121 -95.14.127.0/24 47331 -95.14.128.0/17 9121 -95.15.0.0/18 47331 -95.15.64.0/22 47331 -95.15.68.0/23 9121 -95.15.70.0/24 47331 -95.15.71.0/24 9121 -95.15.72.0/22 47331 -95.15.76.0/24 47331 -95.15.77.0/24 9121 -95.15.78.0/23 47331 -95.15.80.0/24 47331 -95.15.81.0/24 9121 -95.15.82.0/23 9121 -95.15.84.0/23 47331 -95.15.86.0/24 47331 -95.15.87.0/24 9121 -95.15.88.0/24 47331 -95.15.89.0/24 9121 -95.15.90.0/23 47331 -95.15.92.0/23 9121 -95.15.94.0/23 47331 -95.15.96.0/24 47331 -95.15.97.0/24 9121 -95.15.98.0/23 9121 -95.15.100.0/23 47331 -95.15.102.0/24 9121 -95.15.103.0/24 47331 -95.15.104.0/23 47331 -95.15.106.0/24 9121 -95.15.107.0/24 47331 -95.15.108.0/24 9121 -95.15.109.0/24 47331 -95.15.110.0/24 9121 -95.15.111.0/24 47331 -95.15.112.0/24 9121 -95.15.113.0/24 47331 -95.15.114.0/24 9121 -95.15.115.0/24 47331 -95.15.116.0/24 47331 -95.15.117.0/24 9121 -95.15.118.0/23 47331 -95.15.120.0/21 47331 -95.15.128.0/22 47331 -95.15.132.0/23 9121 -95.15.134.0/24 47331 -95.15.135.0/24 9121 -95.15.136.0/24 47331 -95.15.137.0/24 9121 -95.15.138.0/23 47331 -95.15.140.0/23 47331 -95.15.142.0/24 9121 -95.15.143.0/24 47331 -95.15.144.0/24 47331 -95.15.145.0/24 9121 -95.15.146.0/23 47331 -95.15.148.0/24 9121 -95.15.149.0/24 47331 -95.15.150.0/24 47331 -95.15.151.0/24 9121 -95.15.152.0/24 9121 -95.15.153.0/24 47331 -95.15.154.0/23 9121 -95.15.156.0/23 9121 -95.15.158.0/24 9121 -95.15.159.0/24 47331 -95.15.160.0/21 47331 -95.15.168.0/22 9121 -95.15.172.0/22 47331 -95.15.176.0/23 47331 -95.15.178.0/24 9121 -95.15.179.0/24 47331 -95.15.180.0/22 47331 -95.15.184.0/21 47331 -95.15.192.0/24 47331 -95.15.193.0/24 9121 -95.15.194.0/23 47331 -95.15.196.0/23 47331 -95.15.198.0/23 9121 -95.15.200.0/24 47331 -95.15.201.0/24 9121 -95.15.202.0/23 47331 -95.15.204.0/24 9121 -95.15.205.0/24 47331 -95.15.206.0/24 9121 -95.15.207.0/24 47331 -95.15.208.0/22 47331 -95.15.212.0/24 9121 -95.15.213.0/24 47331 -95.15.214.0/24 9121 -95.15.215.0/24 47331 -95.15.216.0/24 47331 -95.15.217.0/24 9121 -95.15.218.0/23 9121 -95.15.220.0/23 47331 -95.15.222.0/24 9121 -95.15.223.0/24 47331 -95.15.224.0/23 47331 -95.15.226.0/24 47331 -95.15.227.0/24 9121 -95.15.228.0/22 9121 -95.15.232.0/23 47331 -95.15.234.0/24 9121 -95.15.235.0/24 47331 -95.15.236.0/23 47331 -95.15.238.0/24 47331 -95.15.239.0/24 9121 -95.15.240.0/23 47331 -95.15.242.0/23 9121 -95.15.244.0/24 47331 -95.15.245.0/24 9121 -95.15.246.0/24 9121 -95.15.247.0/24 47331 -95.15.248.0/22 47331 -95.15.252.0/23 9121 -95.15.254.0/24 9121 -95.15.255.0/24 47331 -95.16.0.0/13 12479 -95.24.0.0/19 3216 -95.24.32.0/21 8402 -95.24.40.0/21 8371 -95.24.48.0/20 8402 -95.24.64.0/18 8402 -95.24.128.0/19 8402 -95.24.160.0/21 8402 -95.24.168.0/21 42110 -95.24.176.0/20 8402 -95.24.192.0/18 8402 -95.25.0.0/16 8402 -95.26.0.0/16 8402 -95.27.0.0/20 29125 -95.27.16.0/22 34038 -95.27.20.0/22 8402 -95.27.24.0/21 8402 -95.27.32.0/20 8402 -95.27.48.0/20 42110 -95.27.64.0/20 3216 -95.27.80.0/24 8402 -95.27.81.0/24 3216 -95.27.82.0/24 3216 -95.27.83.0/24 8402 -95.27.84.0/23 8402 -95.27.86.0/23 3216 -95.27.88.0/23 3216 -95.27.90.0/23 8402 -95.27.92.0/23 3216 -95.27.94.0/24 8402 -95.27.95.0/24 3216 -95.27.96.0/19 8402 -95.27.128.0/17 8402 -95.28.0.0/17 8402 -95.28.128.0/18 8402 -95.28.192.0/20 3216 -95.28.208.0/20 8402 -95.28.224.0/20 8402 -95.28.240.0/22 42110 -95.28.244.0/22 8402 -95.28.248.0/21 8402 -95.29.0.0/17 8402 -95.29.128.0/18 8402 -95.29.192.0/19 8402 -95.29.224.0/22 3216 -95.29.228.0/22 8402 -95.29.232.0/21 8402 -95.29.240.0/20 8402 -95.30.0.0/16 3216 -95.31.0.0/19 8402 -95.31.32.0/23 8402 -95.31.34.0/24 8402 -95.31.35.0/24 3216 -95.31.36.0/22 8402 -95.31.40.0/21 8402 -95.31.48.0/24 8402 -95.31.49.0/24 8371 -95.31.50.0/24 3216 -95.31.51.0/24 8402 -95.31.52.0/22 8402 -95.31.56.0/21 42110 -95.31.64.0/21 8402 -95.31.72.0/24 8402 -95.31.73.0/24 42110 -95.31.74.0/23 8402 -95.31.76.0/22 20533 -95.31.80.0/20 8402 -95.31.96.0/21 8402 -95.31.104.0/24 3216 -95.31.105.0/24 8402 -95.31.106.0/23 8402 -95.31.108.0/22 8402 -95.31.112.0/22 8402 -95.31.116.0/23 8402 -95.31.118.0/23 3216 -95.31.120.0/21 8402 -95.31.128.0/18 8402 -95.31.192.0/22 8402 -95.31.196.0/24 8402 -95.31.197.0/24 42110 -95.31.198.0/23 3216 -95.31.200.0/21 8402 -95.31.208.0/20 8402 -95.31.224.0/19 8402 -95.32.0.0/17 12389 -95.32.128.0/19 12389 -95.32.160.0/22 12389 -95.32.164.0/22 21017 -95.32.168.0/21 12389 -95.32.176.0/20 12389 -95.32.192.0/19 12389 -95.32.224.0/22 21017 -95.32.228.0/22 12389 -95.32.232.0/21 12389 -95.32.240.0/20 12389 -95.33.0.0/16 9145 -95.34.0.0/16 2119 -95.35.0.0/16 1680 -95.36.0.0/16 15670 -95.37.0.0/16 12389 -95.38.0.0/19 41881 -95.38.32.0/23 41881 -95.38.34.0/24 41881 -95.38.36.0/22 41881 -95.38.40.0/24 41881 -95.38.42.0/24 41881 -95.38.44.0/22 41881 -95.38.48.0/21 41881 -95.38.56.0/22 41881 -95.38.60.0/23 41881 -95.38.64.0/21 41881 -95.38.73.0/24 41881 -95.38.74.0/23 41881 -95.38.76.0/22 41881 -95.38.80.0/23 41881 -95.38.82.0/24 41881 -95.38.85.0/24 41881 -95.38.86.0/23 41881 -95.38.88.0/22 41881 -95.38.94.0/23 41881 -95.38.96.0/21 41881 -95.38.104.0/22 41881 -95.38.118.0/23 41881 -95.38.120.0/21 41881 -95.38.128.0/20 41881 -95.38.160.0/19 41881 -95.38.192.0/21 41881 -95.38.200.0/22 41881 -95.38.204.0/23 41881 -95.38.206.0/24 41881 -95.38.208.0/20 41881 -95.38.224.0/20 41881 -95.38.240.0/21 41881 -95.38.252.0/24 41881 -95.38.254.0/23 41881 -95.39.0.0/22 6739 -95.39.4.0/23 6739 -95.39.6.0/24 6739 -95.39.7.0/24 12357 -95.39.8.0/21 6739 -95.39.16.0/24 6739 -95.39.17.0/24 201748 -95.39.18.0/23 6739 -95.39.20.0/22 6739 -95.39.24.0/21 6739 -95.39.32.0/20 6739 -95.39.48.0/21 6739 -95.39.56.0/22 6739 -95.39.60.0/24 6739 -95.39.61.0/24 206487 -95.39.62.0/23 6739 -95.39.64.0/18 6739 -95.39.128.0/22 12357 -95.39.132.0/22 6739 -95.39.136.0/22 12357 -95.39.140.0/22 6739 -95.39.144.0/23 6739 -95.39.146.0/23 12357 -95.39.148.0/24 12357 -95.39.149.0/24 6739 -95.39.150.0/23 6739 -95.39.152.0/22 12357 -95.39.156.0/22 6739 -95.39.160.0/19 6739 -95.39.192.0/18 6739 -95.40.0.0/15 8374 -95.42.0.0/16 8866 -95.43.0.0/17 8866 -95.43.128.0/18 8866 -95.43.192.0/22 8866 -95.43.196.0/23 8866 -95.43.198.0/24 29286 -95.43.199.0/24 8866 -95.43.200.0/24 8866 -95.43.201.0/24 39163 -95.43.202.0/24 205808 -95.43.203.0/24 8866 -95.43.204.0/23 8866 -95.43.206.0/24 8734 -95.43.207.0/24 8866 -95.43.208.0/22 8866 -95.43.212.0/24 8866 -95.43.213.0/24 50431 -95.43.214.0/23 8866 -95.43.216.0/21 8866 -95.43.224.0/22 8866 -95.43.228.0/24 8866 -95.43.229.0/24 197236 -95.43.230.0/23 8866 -95.43.232.0/22 197050 -95.43.236.0/24 202439 -95.43.237.0/24 8866 -95.43.238.0/24 8866 -95.43.239.0/24 202439 -95.43.240.0/21 8866 -95.43.248.0/23 8866 -95.43.250.0/24 8866 -95.43.251.0/24 39163 -95.43.252.0/22 8866 -95.44.0.0/15 5466 -95.46.0.0/24 201476 -95.46.1.0/24 62366 -95.46.2.0/23 8381 -95.46.4.0/24 201469 -95.46.5.0/24 5545 -95.46.6.0/24 3279 -95.46.7.0/24 57448 -95.46.8.0/24 35196 -95.46.9.0/24 48277 -95.46.10.0/24 48118 -95.46.11.0/24 49393 -95.46.12.0/23 51812 -95.46.14.0/23 61406 -95.46.16.0/20 42772 -95.46.32.0/23 39906 -95.46.34.0/23 41575 -95.46.36.0/23 39906 -95.46.38.0/23 198052 -95.46.40.0/22 64423 -95.46.44.0/23 61196 -95.46.46.0/24 42772 -95.46.47.0/24 50727 -95.46.48.0/20 44546 -95.46.64.0/21 57764 -95.46.72.0/24 201069 -95.46.73.0/24 208941 -95.46.74.0/23 197901 -95.46.76.0/24 42146 -95.46.77.0/24 60612 -95.46.78.0/23 58060 -95.46.80.0/20 57016 -95.46.96.0/24 44546 -95.46.97.0/24 44956 -95.46.98.0/23 60245 -95.46.100.0/22 49442 -95.46.104.0/24 43049 -95.46.105.0/24 62006 -95.46.106.0/24 12405 -95.46.107.0/24 6876 -95.46.108.0/24 60777 -95.46.109.0/24 44546 -95.46.110.0/23 198056 -95.46.112.0/23 59475 -95.46.114.0/24 35196 -95.46.115.0/24 209458 -95.46.116.0/22 61390 -95.46.120.0/23 59734 -95.46.122.0/23 8381 -95.46.124.0/24 47463 -95.46.125.0/24 60612 -95.46.126.0/24 60286 -95.46.127.0/24 57302 -95.46.128.0/21 44056 -95.46.136.0/22 44056 -95.46.140.0/23 2864 -95.46.142.0/24 49430 -95.46.143.0/24 48763 -95.46.144.0/24 41575 -95.46.145.0/24 209398 -95.46.146.0/23 34990 -95.46.148.0/22 56580 -95.46.152.0/23 51812 -95.46.154.0/24 45001 -95.46.155.0/24 61116 -95.46.156.0/24 48184 -95.46.157.0/24 44019 -95.46.158.0/24 62165 -95.46.159.0/24 58347 -95.46.160.0/22 50927 -95.46.164.0/22 60612 -95.46.168.0/21 39623 -95.46.176.0/21 201147 -95.46.184.0/21 201746 -95.46.192.0/22 198056 -95.46.196.0/24 48511 -95.46.197.0/24 201593 -95.46.198.0/23 49544 -95.46.200.0/21 42772 -95.46.208.0/20 42772 -95.46.224.0/21 51077 -95.46.232.0/21 41124 -95.46.240.0/23 50155 -95.46.242.0/24 50155 -95.46.243.0/24 44546 -95.46.244.0/22 60072 -95.46.248.0/21 51077 -95.47.0.0/19 50923 -95.47.32.0/22 201746 -95.47.36.0/22 58347 -95.47.40.0/21 41161 -95.47.48.0/24 44546 -95.47.49.0/24 61979 -95.47.50.0/23 61979 -95.47.52.0/24 44546 -95.47.53.0/24 61979 -95.47.54.0/23 34990 -95.47.56.0/24 51500 -95.47.57.0/24 51495 -95.47.58.0/24 51340 -95.47.59.0/24 51131 -95.47.60.0/23 50685 -95.47.62.0/24 50765 -95.47.63.0/24 201069 -95.47.64.0/19 50923 -95.47.96.0/24 208771 -95.47.97.0/24 62108 -95.47.98.0/24 62091 -95.47.99.0/24 56740 -95.47.100.0/23 44546 -95.47.102.0/24 43047 -95.47.103.0/24 201069 -95.47.104.0/21 206326 -95.47.112.0/22 51734 -95.47.116.0/24 35614 -95.47.117.0/24 44546 -95.47.118.0/24 204752 -95.47.119.0/24 44546 -95.47.120.0/23 49442 -95.47.122.0/23 57197 -95.47.124.0/22 60839 -95.47.128.0/21 60770 -95.47.136.0/24 60777 -95.47.137.0/24 6849 -95.47.138.0/24 50245 -95.47.139.0/24 201069 -95.47.140.0/24 60108 -95.47.141.0/24 202337 -95.47.142.0/23 39199 -95.47.144.0/24 41932 -95.47.145.0/24 44546 -95.47.146.0/24 60510 -95.47.147.0/24 12427 -95.47.148.0/22 41967 -95.47.152.0/24 12389 -95.47.153.0/24 44546 -95.47.154.0/24 204674 -95.47.155.0/24 60510 -95.47.156.0/24 57494 -95.47.157.0/24 60464 -95.47.158.0/24 49118 -95.47.159.0/24 60442 -95.47.160.0/24 200514 -95.47.161.0/24 12722 -95.47.162.0/24 209863 -95.47.163.0/24 60313 -95.47.164.0/24 197520 -95.47.165.0/24 200400 -95.47.166.0/24 50688 -95.47.167.0/24 2864 -95.47.168.0/23 204532 -95.47.170.0/23 44834 -95.47.172.0/24 204485 -95.47.173.0/24 204671 -95.47.174.0/24 60135 -95.47.175.0/24 60612 -95.47.176.0/24 48949 -95.47.177.0/24 206684 -95.47.178.0/23 60296 -95.47.180.0/22 61372 -95.47.184.0/23 51812 -95.47.186.0/23 60275 -95.47.188.0/24 60286 -95.47.189.0/24 57448 -95.47.190.0/24 56592 -95.47.191.0/24 49558 -95.47.192.0/22 49558 -95.47.196.0/23 50727 -95.47.198.0/23 51812 -95.47.200.0/24 59788 -95.47.201.0/24 62443 -95.47.202.0/23 62430 -95.47.204.0/22 59392 -95.47.208.0/20 57888 -95.47.224.0/21 50334 -95.47.232.0/24 209918 -95.47.233.0/24 8451 -95.47.234.0/23 58347 -95.47.236.0/24 204671 -95.47.237.0/24 47966 -95.47.238.0/23 43724 -95.47.240.0/23 59734 -95.47.242.0/24 50516 -95.47.243.0/24 44834 -95.47.244.0/24 62331 -95.47.245.0/24 62339 -95.47.246.0/24 47845 -95.47.247.0/24 44956 -95.47.248.0/23 204929 -95.47.250.0/23 41773 -95.47.252.0/24 3229 -95.47.253.0/24 49168 -95.47.254.0/24 47552 -95.47.255.0/24 61240 -95.48.0.0/14 5617 -95.52.0.0/14 12389 -95.56.0.0/14 9198 -95.60.0.0/14 12430 -95.64.0.0/17 197207 -95.64.128.0/17 49170 -95.65.0.0/17 31252 -95.65.128.0/20 8386 -95.65.144.0/21 8386 -95.65.152.0/24 8386 -95.65.154.0/23 8386 -95.65.156.0/22 8386 -95.65.160.0/19 8386 -95.65.192.0/19 8386 -95.65.224.0/20 8386 -95.65.240.0/23 8386 -95.65.245.0/24 8386 -95.65.246.0/23 8386 -95.65.248.0/21 8386 -95.66.0.0/17 42961 -95.66.128.0/19 35645 -95.66.160.0/21 35645 -95.66.168.0/22 35645 -95.66.172.0/23 35645 -95.66.174.0/24 35645 -95.66.175.0/24 50556 -95.66.176.0/23 35645 -95.66.178.0/23 50556 -95.66.180.0/22 35645 -95.66.184.0/21 35645 -95.66.192.0/22 35645 -95.66.196.0/23 35645 -95.66.198.0/23 57328 -95.66.200.0/21 35645 -95.66.208.0/20 35645 -95.66.224.0/23 35645 -95.66.226.0/24 60635 -95.66.227.0/24 35645 -95.66.228.0/23 56676 -95.66.230.0/23 35645 -95.66.232.0/22 50556 -95.66.236.0/24 50556 -95.66.238.0/23 35645 -95.66.240.0/22 35645 -95.66.244.0/24 35645 -95.66.248.0/21 35645 -95.67.0.0/17 34867 -95.67.128.0/17 12389 -95.68.0.0/17 12578 -95.68.128.0/17 12389 -95.69.0.0/17 42863 -95.69.128.0/19 25229 -95.69.160.0/21 25229 -95.69.232.0/24 25229 -95.69.240.0/21 25229 -95.69.248.0/22 20850 -95.69.252.0/22 25229 -95.70.0.0/17 12389 -95.70.128.0/23 12735 -95.70.130.0/24 12735 -95.70.132.0/23 12735 -95.70.134.0/24 12735 -95.70.136.0/21 12735 -95.70.145.0/24 12735 -95.70.146.0/23 12735 -95.70.148.0/22 12735 -95.70.152.0/21 12735 -95.70.168.0/21 12735 -95.70.176.0/20 12735 -95.70.192.0/23 12735 -95.70.194.0/24 12735 -95.70.196.0/22 12735 -95.70.200.0/21 12735 -95.70.208.0/21 12735 -95.70.216.0/22 12735 -95.70.220.0/23 12735 -95.70.223.0/24 12735 -95.70.224.0/20 12735 -95.70.240.0/21 12735 -95.70.248.0/22 12735 -95.70.252.0/23 12735 -95.70.254.0/24 12735 -95.71.0.0/18 12389 -95.71.64.0/19 12389 -95.71.96.0/21 12389 -95.71.104.0/21 29456 -95.71.112.0/21 12389 -95.71.120.0/21 29456 -95.71.128.0/17 12389 -95.72.0.0/16 12389 -95.73.0.0/19 12389 -95.73.32.0/20 12389 -95.73.48.0/21 12389 -95.73.56.0/21 25515 -95.73.64.0/18 12389 -95.73.128.0/17 12389 -95.74.0.0/15 16232 -95.76.0.0/15 6830 -95.78.0.0/17 42116 -95.78.128.0/18 41661 -95.78.192.0/20 56420 -95.78.208.0/21 42683 -95.78.216.0/21 51819 -95.78.224.0/19 42683 -95.79.0.0/16 42682 -95.80.0.0/18 48514 -95.80.64.0/20 12418 -95.80.80.0/22 12418 -95.80.84.0/24 12418 -95.80.86.0/23 12418 -95.80.88.0/21 12418 -95.80.96.0/19 12418 -95.80.128.0/18 48431 -95.80.192.0/18 29208 -95.81.0.0/19 15943 -95.81.64.0/23 47262 -95.81.68.0/23 47262 -95.81.72.0/21 39308 -95.81.80.0/23 34636 -95.81.84.0/22 64413 -95.81.88.0/22 34636 -95.81.92.0/22 64413 -95.81.96.0/19 39308 -95.81.128.0/19 43646 -95.81.160.0/21 43646 -95.81.168.0/22 43646 -95.81.172.0/23 43646 -95.81.174.0/24 21203 -95.81.175.0/24 43646 -95.81.176.0/20 43646 -95.81.192.0/18 12389 -95.82.0.0/18 43754 -95.82.64.0/24 21299 -95.82.71.0/24 21299 -95.82.112.0/20 206026 -95.82.128.0/18 31246 -95.82.192.0/18 12668 -95.83.0.0/18 12389 -95.83.64.0/18 35728 -95.83.128.0/20 15774 -95.83.144.0/20 47313 -95.83.160.0/21 47313 -95.83.168.0/22 47313 -95.83.172.0/23 47313 -95.83.174.0/24 15774 -95.83.175.0/24 47313 -95.83.176.0/20 47313 -95.83.192.0/19 13280 -95.83.224.0/20 13280 -95.83.240.0/21 5466 -95.83.248.0/21 13280 -95.84.0.0/18 12389 -95.84.72.0/22 51375 -95.84.80.0/20 51375 -95.84.96.0/19 51375 -95.84.128.0/17 42610 -95.85.0.0/18 14061 -95.85.64.0/22 20730 -95.85.68.0/22 57172 -95.85.72.0/21 8749 -95.85.80.0/23 200557 -95.85.82.0/24 25436 -95.85.83.0/24 206424 -95.85.84.0/24 205754 -95.85.85.0/24 201302 -95.85.86.0/24 43297 -95.85.88.0/21 8749 -95.85.96.0/19 20661 -95.85.128.0/18 41897 -95.85.192.0/18 43708 -95.86.0.0/19 49056 -95.86.32.0/20 49056 -95.86.48.0/21 49056 -95.86.56.0/24 49056 -95.86.57.0/24 25467 -95.86.58.0/23 49056 -95.86.60.0/22 49056 -95.86.64.0/18 42925 -95.86.128.0/18 34876 -95.86.192.0/21 12389 -95.86.200.0/22 12389 -95.86.204.0/22 13118 -95.86.208.0/23 13118 -95.86.210.0/23 12389 -95.86.212.0/22 12389 -95.86.216.0/21 12389 -95.86.224.0/19 12389 -95.87.0.0/24 38924 -95.87.1.0/24 62372 -95.87.2.0/23 38924 -95.87.4.0/22 38924 -95.87.8.0/21 38924 -95.87.16.0/20 38924 -95.87.32.0/19 38924 -95.87.64.0/19 29061 -95.87.96.0/21 43323 -95.87.104.0/21 199283 -95.87.112.0/21 139729 -95.87.120.0/21 57300 -95.87.128.0/18 2107 -95.87.192.0/19 43561 -95.87.224.0/20 43561 -95.87.240.0/21 43561 -95.87.248.0/23 43561 -95.87.250.0/24 43561 -95.87.251.0/24 196801 -95.87.252.0/24 43561 -95.87.253.0/24 196738 -95.87.254.0/23 43561 -95.88.0.0/14 31334 -95.92.0.0/14 2860 -95.96.0.0/15 6830 -95.98.0.0/15 31615 -95.100.0.0/20 16625 -95.100.16.0/20 8452 -95.100.32.0/22 20940 -95.100.36.0/23 20940 -95.100.38.0/24 34164 -95.100.39.0/24 20940 -95.100.40.0/22 20940 -95.100.44.0/22 16625 -95.100.48.0/20 16625 -95.100.64.0/20 16625 -95.100.80.0/20 6762 -95.100.96.0/23 20940 -95.100.98.0/23 16625 -95.100.100.0/23 3257 -95.100.102.0/23 34164 -95.100.104.0/21 3257 -95.100.112.0/20 16625 -95.100.128.0/20 16625 -95.100.144.0/22 16625 -95.100.148.0/22 2860 -95.100.152.0/22 20940 -95.100.156.0/24 20940 -95.100.157.0/24 32787 -95.100.158.0/23 20940 -95.100.160.0/22 16625 -95.100.164.0/23 16625 -95.100.166.0/23 20940 -95.100.168.0/24 21342 -95.100.169.0/24 20940 -95.100.170.0/23 20940 -95.100.172.0/24 34164 -95.100.173.0/24 21342 -95.100.174.0/23 21342 -95.100.176.0/22 16625 -95.100.180.0/24 32787 -95.100.181.0/24 20940 -95.100.182.0/23 16625 -95.100.184.0/22 20940 -95.100.188.0/22 16625 -95.100.192.0/23 20940 -95.100.194.0/23 34164 -95.100.196.0/22 16625 -95.100.200.0/22 20940 -95.100.204.0/22 8551 -95.100.208.0/22 16625 -95.100.212.0/22 32787 -95.100.216.0/22 16625 -95.100.220.0/22 9050 -95.100.224.0/20 6762 -95.100.240.0/22 20940 -95.100.244.0/22 16625 -95.100.248.0/24 34164 -95.100.249.0/24 20940 -95.100.250.0/23 6762 -95.100.252.0/24 20940 -95.100.253.0/24 32787 -95.100.254.0/23 34164 -95.101.0.0/22 20940 -95.101.4.0/22 8551 -95.101.8.0/22 16625 -95.101.12.0/24 34164 -95.101.13.0/24 20940 -95.101.14.0/23 16625 -95.101.16.0/22 16625 -95.101.20.0/22 20940 -95.101.24.0/23 16625 -95.101.26.0/24 34164 -95.101.27.0/24 20940 -95.101.28.0/23 16625 -95.101.30.0/23 34164 -95.101.32.0/24 5511 -95.101.33.0/24 20940 -95.101.34.0/24 20940 -95.101.35.0/24 5511 -95.101.36.0/24 21342 -95.101.37.0/24 34164 -95.101.38.0/24 34164 -95.101.39.0/24 20940 -95.101.40.0/22 27986 -95.101.44.0/22 16625 -95.101.48.0/22 16625 -95.101.52.0/23 34164 -95.101.54.0/23 6762 -95.101.56.0/22 16625 -95.101.60.0/23 27986 -95.101.62.0/24 34164 -95.101.63.0/24 20940 -95.101.64.0/22 16625 -95.101.68.0/22 6762 -95.101.72.0/23 20940 -95.101.74.0/23 34164 -95.101.76.0/24 21342 -95.101.77.0/24 20940 -95.101.78.0/23 20940 -95.101.80.0/22 20940 -95.101.84.0/22 16625 -95.101.88.0/22 20940 -95.101.92.0/22 16625 -95.101.96.0/22 20940 -95.101.100.0/22 8452 -95.101.104.0/22 16625 -95.101.108.0/22 12956 -95.101.112.0/24 34164 -95.101.113.0/24 20940 -95.101.114.0/24 6762 -95.101.115.0/24 34164 -95.101.116.0/24 34164 -95.101.117.0/24 32787 -95.101.118.0/24 32787 -95.101.119.0/24 20940 -95.101.120.0/24 20940 -95.101.121.0/24 34164 -95.101.122.0/23 20940 -95.101.124.0/22 20940 -95.101.128.0/22 20940 -95.101.132.0/24 20940 -95.101.133.0/24 1299 -95.101.134.0/23 20940 -95.101.136.0/23 20940 -95.101.138.0/23 34164 -95.101.140.0/23 34164 -95.101.142.0/23 20940 -95.101.144.0/22 16625 -95.101.148.0/22 20940 -95.101.152.0/21 16625 -95.101.160.0/22 1680 -95.101.164.0/22 20940 -95.101.168.0/23 20940 -95.101.170.0/24 34164 -95.101.171.0/24 20940 -95.101.172.0/22 16625 -95.101.176.0/22 16625 -95.101.180.0/22 20940 -95.101.184.0/22 20940 -95.101.188.0/22 16625 -95.101.192.0/19 16625 -95.101.224.0/22 16625 -95.101.228.0/22 20940 -95.101.232.0/24 20940 -95.101.233.0/24 34164 -95.101.234.0/23 5432 -95.101.236.0/22 34164 -95.101.240.0/20 16625 -95.102.0.0/15 6855 -95.104.0.0/17 16010 -95.104.128.0/19 29190 -95.104.160.0/20 29190 -95.104.176.0/21 29190 -95.104.184.0/21 49816 -95.104.192.0/18 49816 -95.105.0.0/18 24955 -95.105.64.0/20 57128 -95.105.80.0/20 24955 -95.105.96.0/19 41704 -95.105.128.0/17 15962 -95.106.0.0/16 12389 -95.107.0.0/21 41134 -95.107.8.0/22 41134 -95.107.12.0/22 12389 -95.107.16.0/20 12389 -95.107.32.0/22 41134 -95.107.36.0/23 41134 -95.107.38.0/23 12389 -95.107.40.0/23 41134 -95.107.42.0/24 41134 -95.107.43.0/24 12389 -95.107.44.0/23 12389 -95.107.46.0/24 12389 -95.107.47.0/24 41134 -95.107.48.0/23 41134 -95.107.50.0/23 12389 -95.107.52.0/24 12389 -95.107.53.0/24 41134 -95.107.54.0/23 41134 -95.107.56.0/21 41134 -95.107.64.0/18 12389 -95.107.128.0/20 47394 -95.107.144.0/22 47394 -95.107.150.0/24 47394 -95.107.156.0/23 47394 -95.107.159.0/24 47394 -95.107.160.0/21 47394 -95.107.168.0/22 47394 -95.107.172.0/23 47394 -95.107.175.0/24 56782 -95.107.176.0/20 47394 -95.107.192.0/18 47394 -95.108.0.0/17 43118 -95.108.128.0/17 13238 -95.109.0.0/17 34610 -95.110.0.0/17 28812 -95.110.128.0/17 31034 -95.111.0.0/24 8717 -95.111.1.0/24 35141 -95.111.2.0/23 35141 -95.111.4.0/22 35141 -95.111.8.0/21 35141 -95.111.16.0/24 8717 -95.111.17.0/24 35141 -95.111.18.0/24 35141 -95.111.19.0/24 8717 -95.111.20.0/24 8717 -95.111.21.0/24 35141 -95.111.22.0/23 35141 -95.111.24.0/24 35141 -95.111.25.0/24 8717 -95.111.26.0/23 35141 -95.111.28.0/22 35141 -95.111.32.0/22 35141 -95.111.36.0/24 8717 -95.111.37.0/24 35141 -95.111.38.0/24 8717 -95.111.39.0/24 60966 -95.111.40.0/24 60966 -95.111.41.0/24 8717 -95.111.42.0/23 35141 -95.111.44.0/24 35141 -95.111.45.0/24 8717 -95.111.46.0/23 35141 -95.111.48.0/22 35141 -95.111.52.0/24 8717 -95.111.53.0/24 35141 -95.111.54.0/24 35141 -95.111.55.0/24 8717 -95.111.56.0/24 8717 -95.111.57.0/24 35141 -95.111.58.0/23 35141 -95.111.60.0/23 8717 -95.111.62.0/24 8717 -95.111.63.0/24 35141 -95.111.64.0/24 8717 -95.111.65.0/24 35141 -95.111.66.0/23 35141 -95.111.68.0/24 8717 -95.111.69.0/24 35141 -95.111.70.0/23 35141 -95.111.72.0/23 35141 -95.111.74.0/23 8717 -95.111.76.0/24 8717 -95.111.77.0/24 35141 -95.111.78.0/24 35141 -95.111.79.0/24 8717 -95.111.80.0/23 8717 -95.111.82.0/23 35141 -95.111.84.0/24 35141 -95.111.85.0/24 8717 -95.111.86.0/23 35141 -95.111.88.0/24 35141 -95.111.89.0/24 8717 -95.111.90.0/24 35141 -95.111.91.0/24 8717 -95.111.92.0/24 60966 -95.111.93.0/24 8717 -95.111.94.0/23 35141 -95.111.96.0/23 35141 -95.111.98.0/24 8717 -95.111.99.0/24 35141 -95.111.100.0/22 35141 -95.111.104.0/22 35141 -95.111.108.0/24 8717 -95.111.109.0/24 35141 -95.111.110.0/24 8717 -95.111.111.0/24 35141 -95.111.112.0/24 35141 -95.111.113.0/24 8717 -95.111.114.0/23 8717 -95.111.116.0/22 8717 -95.111.120.0/21 20911 -95.111.128.0/17 31343 -95.112.0.0/13 6805 -95.120.0.0/13 3352 -95.128.0.0/21 15966 -95.128.8.0/21 31712 -95.128.16.0/21 39151 -95.128.24.0/21 198455 -95.128.32.0/21 15716 -95.128.40.0/21 41653 -95.128.48.0/21 29527 -95.128.56.0/21 48737 -95.128.64.0/21 21305 -95.128.72.0/21 31178 -95.128.80.0/21 205678 -95.128.88.0/21 34108 -95.128.96.0/22 25459 -95.128.104.0/21 31264 -95.128.112.0/21 43809 -95.128.120.0/22 34655 -95.128.124.0/23 34655 -95.128.126.0/24 34655 -95.128.128.0/21 48825 -95.128.136.0/21 44572 -95.128.144.0/21 42845 -95.128.152.0/21 50926 -95.128.160.0/21 8439 -95.128.168.0/24 3280 -95.128.170.0/23 25409 -95.128.172.0/24 57326 -95.128.174.0/24 202842 -95.128.176.0/21 48757 -95.128.184.0/23 34547 -95.128.186.0/24 16333 -95.128.187.0/24 34547 -95.128.188.0/23 34547 -95.128.190.0/24 57134 -95.128.191.0/24 34547 -95.128.195.0/24 39915 -95.128.196.0/23 39915 -95.128.200.0/21 33828 -95.128.208.0/21 41698 -95.128.216.0/21 47480 -95.128.224.0/21 48848 -95.128.232.0/21 48797 -95.128.240.0/21 48781 -95.128.248.0/21 13247 -95.129.0.0/21 197674 -95.129.8.0/21 48840 -95.129.16.0/21 51320 -95.129.24.0/23 48812 -95.129.26.0/23 57795 -95.129.32.0/24 49069 -95.129.34.0/23 20521 -95.129.36.0/23 49069 -95.129.38.0/23 20521 -95.129.40.0/21 47521 -95.129.48.0/21 48823 -95.129.56.0/21 34975 -95.129.64.0/24 21267 -95.129.65.0/24 44611 -95.129.66.0/23 44611 -95.129.68.0/22 44611 -95.129.72.0/21 8920 -95.129.80.0/21 25042 -95.129.88.0/23 47218 -95.129.92.0/22 47218 -95.129.96.0/21 24641 -95.129.104.0/21 20860 -95.129.112.0/21 31577 -95.129.120.0/21 3265 -95.129.128.0/21 42416 -95.129.136.0/22 5572 -95.129.140.0/23 5572 -95.129.144.0/21 42087 -95.129.152.0/21 48864 -95.129.160.0/21 43148 -95.129.168.0/21 21480 -95.129.176.0/21 48873 -95.129.184.0/21 49182 -95.129.192.0/21 2586 -95.129.200.0/21 35339 -95.129.208.0/21 44700 -95.129.216.0/22 48884 -95.129.224.0/21 21021 -95.129.232.0/21 44556 -95.129.240.0/21 47834 -95.129.248.0/21 199496 -95.130.4.0/22 201514 -95.130.8.0/21 196689 -95.130.16.0/21 13246 -95.130.24.0/21 34263 -95.130.32.0/22 41898 -95.130.36.0/23 41898 -95.130.38.0/24 41898 -95.130.39.0/24 15 -95.130.40.0/21 49046 -95.130.48.0/23 49493 -95.130.50.0/23 57286 -95.130.52.0/23 49493 -95.130.54.0/23 57286 -95.130.56.0/21 48944 -95.130.64.0/21 61207 -95.130.72.0/21 13768 -95.130.80.0/22 21274 -95.130.84.0/23 21274 -95.130.86.0/24 21274 -95.130.87.0/24 199561 -95.130.88.0/23 48966 -95.130.91.0/24 48966 -95.130.92.0/23 48966 -95.130.94.0/24 48966 -95.130.96.0/21 39179 -95.130.110.0/24 48967 -95.130.112.0/22 199597 -95.130.116.0/23 199597 -95.130.120.0/21 42557 -95.130.128.0/22 43035 -95.130.136.0/21 44473 -95.130.144.0/21 31256 -95.130.152.0/21 34970 -95.130.160.0/21 12611 -95.130.168.0/22 43260 -95.130.172.0/23 43260 -95.130.174.0/24 199366 -95.130.175.0/24 43260 -95.130.176.0/22 12739 -95.130.180.0/24 12739 -95.130.181.0/24 60642 -95.130.182.0/23 12739 -95.130.184.0/22 48968 -95.130.188.0/24 48968 -95.130.192.0/21 49209 -95.130.200.0/21 49854 -95.130.208.0/21 39839 -95.130.216.0/24 49082 -95.130.217.0/24 3292 -95.130.218.0/23 49082 -95.130.220.0/22 49082 -95.130.232.0/21 48972 -95.130.240.0/21 49148 -95.130.248.0/21 47215 -95.131.8.0/21 30922 -95.131.16.0/22 197081 -95.131.24.0/21 49063 -95.131.32.0/24 48136 -95.131.35.0/24 49001 -95.131.48.0/21 12301 -95.131.56.0/21 34618 -95.131.64.0/21 20738 -95.131.72.0/21 41148 -95.131.80.0/24 49026 -95.131.81.0/24 56730 -95.131.82.0/23 56730 -95.131.88.0/21 43678 -95.131.96.0/21 12897 -95.131.104.0/22 21345 -95.131.108.0/23 21345 -95.131.110.0/24 21345 -95.131.112.0/21 29600 -95.131.120.0/21 49024 -95.131.128.0/21 49044 -95.131.136.0/21 47841 -95.131.144.0/21 41275 -95.131.152.0/21 6894 -95.131.160.0/21 43402 -95.131.168.0/22 49054 -95.131.176.0/21 49058 -95.131.184.0/22 57002 -95.131.188.0/23 397401 -95.131.190.0/23 57002 -95.131.192.0/21 8692 -95.131.200.0/22 34950 -95.131.204.0/24 34950 -95.131.208.0/21 33993 -95.131.216.0/21 6908 -95.131.224.0/21 20533 -95.131.232.0/21 20521 -95.131.240.0/21 49083 -95.131.248.0/21 43219 -95.132.0.0/14 6849 -95.136.0.0/17 12353 -95.136.128.0/17 34383 -95.137.0.0/17 20632 -95.137.128.0/17 34797 -95.138.0.0/17 21351 -95.138.128.0/18 15395 -95.138.192.0/23 29278 -95.138.194.0/23 39679 -95.138.196.0/24 60071 -95.138.197.0/24 12301 -95.138.198.0/23 47159 -95.138.200.0/21 47474 -95.138.208.0/20 43557 -95.138.224.0/19 29520 -95.139.0.0/19 60496 -95.139.32.0/21 60496 -95.139.40.0/21 29497 -95.139.64.0/19 48400 -95.139.96.0/19 29497 -95.139.128.0/17 12389 -95.140.0.0/20 25540 -95.140.16.0/20 48739 -95.140.32.0/24 39679 -95.140.33.0/24 62292 -95.140.34.0/24 43711 -95.140.35.0/24 62292 -95.140.36.0/23 43711 -95.140.38.0/24 62292 -95.140.39.0/24 39679 -95.140.40.0/23 43711 -95.140.42.0/24 60071 -95.140.43.0/24 43711 -95.140.44.0/23 43711 -95.140.46.0/24 62292 -95.140.47.0/24 43711 -95.140.48.0/24 11323 -95.140.55.0/24 11323 -95.140.58.0/24 11323 -95.140.62.0/23 11323 -95.140.64.0/20 25176 -95.140.80.0/22 31500 -95.140.84.0/22 57246 -95.140.88.0/22 31500 -95.140.92.0/23 31500 -95.140.94.0/24 42065 -95.140.95.0/24 31500 -95.140.96.0/20 29256 -95.140.112.0/21 9125 -95.140.120.0/23 9125 -95.140.122.0/24 57207 -95.140.123.0/24 200923 -95.140.124.0/22 9125 -95.140.128.0/21 2593 -95.140.144.0/21 8915 -95.140.176.0/20 13189 -95.140.192.0/20 42109 -95.140.208.0/20 13124 -95.140.224.0/20 22822 -95.140.240.0/20 49890 -95.141.0.0/20 24665 -95.141.16.0/23 34773 -95.141.18.0/23 43260 -95.141.20.0/24 43260 -95.141.21.0/24 62370 -95.141.22.0/24 62370 -95.141.23.0/24 43260 -95.141.24.0/23 43260 -95.141.26.0/24 43260 -95.141.28.0/22 43260 -95.141.32.0/20 49367 -95.141.48.0/20 41833 -95.141.64.0/20 44381 -95.141.80.0/20 49409 -95.141.96.0/20 16211 -95.141.112.0/20 202089 -95.141.128.0/20 35104 -95.141.152.0/22 8468 -95.141.160.0/20 198736 -95.141.176.0/20 42514 -95.141.192.0/20 44158 -95.141.208.0/20 42912 -95.141.224.0/20 12714 -95.141.240.0/20 196635 -95.142.0.0/20 15734 -95.142.16.0/20 20645 -95.142.32.0/24 210079 -95.142.33.0/24 48282 -95.142.34.0/24 48282 -95.142.35.0/24 210079 -95.142.36.0/22 210079 -95.142.40.0/22 210079 -95.142.44.0/24 210079 -95.142.45.0/24 48282 -95.142.46.0/23 48282 -95.142.48.0/21 34215 -95.142.64.0/20 51483 -95.142.80.0/20 8847 -95.142.96.0/21 8455 -95.142.104.0/24 47543 -95.142.105.0/24 8455 -95.142.106.0/23 8455 -95.142.108.0/22 8455 -95.142.112.0/24 198605 -95.142.113.0/24 61317 -95.142.114.0/24 36351 -95.142.115.0/24 198605 -95.142.116.0/24 61317 -95.142.117.0/24 36351 -95.142.118.0/24 198605 -95.142.119.0/24 61317 -95.142.120.0/24 36351 -95.142.121.0/24 198605 -95.142.122.0/23 61317 -95.142.124.0/24 198605 -95.142.126.0/24 36351 -95.142.127.0/24 198605 -95.142.128.0/21 49840 -95.142.136.0/21 39615 -95.142.144.0/24 25180 -95.142.152.0/21 198047 -95.142.160.0/20 203476 -95.142.176.0/20 30848 -95.142.192.0/21 47541 -95.142.200.0/24 47541 -95.142.201.0/24 28709 -95.142.202.0/23 28709 -95.142.204.0/23 47542 -95.142.206.0/24 47541 -95.142.207.0/24 47542 -95.142.216.0/21 204622 -95.142.224.0/20 49680 -95.142.240.0/23 39816 -95.142.242.0/24 39816 -95.142.243.0/24 61434 -95.142.244.0/22 39816 -95.142.248.0/21 39816 -95.143.0.0/20 31059 -95.143.16.0/20 34975 -95.143.32.0/20 31147 -95.143.48.0/20 8758 -95.143.64.0/21 30781 -95.143.72.0/23 30781 -95.143.74.0/24 30781 -95.143.75.0/24 8352 -95.143.76.0/22 30781 -95.143.80.0/20 39912 -95.143.96.0/20 8968 -95.143.112.0/22 21367 -95.143.116.0/24 21367 -95.143.117.0/24 38922 -95.143.118.0/23 21367 -95.143.120.0/22 21367 -95.143.124.0/24 21367 -95.143.128.0/20 196782 -95.143.144.0/20 49725 -95.143.160.0/20 25560 -95.143.192.0/20 49770 -95.143.208.0/20 29124 -95.143.224.0/20 8559 -95.143.240.0/21 49888 -95.143.248.0/22 49888 -95.143.252.0/23 49888 -95.143.254.0/24 49888 -95.143.255.0/24 201450 -95.144.0.0/13 12576 -95.152.0.0/18 12389 -95.152.64.0/18 3303 -95.152.192.0/20 8844 -95.152.208.0/21 8190 -95.152.216.0/22 8844 -95.152.220.0/23 8190 -95.152.222.0/23 8844 -95.152.224.0/23 8844 -95.152.226.0/24 8844 -95.152.227.0/24 8190 -95.152.228.0/22 8190 -95.152.232.0/21 8844 -95.152.240.0/20 8190 -95.153.0.0/18 1257 -95.153.64.0/18 1547 -95.153.128.0/21 29497 -95.153.136.0/22 29497 -95.153.144.0/24 29497 -95.153.222.0/23 29497 -95.153.224.0/21 29497 -95.153.232.0/22 29497 -95.153.236.0/23 29497 -95.153.239.0/24 29497 -95.153.240.0/20 29497 -95.154.0.0/18 39642 -95.154.64.0/19 44724 -95.154.96.0/20 44724 -95.154.112.0/22 44724 -95.154.116.0/23 44724 -95.154.120.0/21 44724 -95.154.128.0/18 43714 -95.154.192.0/18 20860 -95.155.0.0/18 8585 -95.155.64.0/18 43939 -95.155.128.0/18 34968 -95.155.192.0/18 45011 -95.156.0.0/18 6821 -95.156.64.0/18 12389 -95.156.128.0/18 20875 -95.156.192.0/24 44592 -95.156.195.0/24 44592 -95.156.196.0/24 197071 -95.156.197.0/24 9063 -95.156.198.0/24 199610 -95.156.199.0/24 44592 -95.156.200.0/23 9063 -95.156.202.0/24 9063 -95.156.203.0/24 198193 -95.156.204.0/22 50129 -95.156.208.0/22 44592 -95.156.212.0/24 44592 -95.156.213.0/24 199610 -95.156.214.0/23 9063 -95.156.216.0/22 198398 -95.156.222.0/23 16322 -95.156.225.0/24 197071 -95.156.226.0/23 197071 -95.156.228.0/22 197071 -95.156.232.0/24 197071 -95.156.233.0/24 16322 -95.156.234.0/23 16322 -95.156.236.0/23 60976 -95.156.238.0/23 199610 -95.156.240.0/21 197697 -95.156.248.0/23 16322 -95.156.250.0/24 199610 -95.156.252.0/22 60976 -95.157.0.0/18 35244 -95.157.64.0/19 20836 -95.157.96.0/24 34971 -95.157.97.0/24 20836 -95.157.98.0/23 20836 -95.157.100.0/22 20836 -95.157.104.0/21 20836 -95.157.112.0/20 20836 -95.157.128.0/18 49112 -95.157.192.0/18 39005 -95.158.0.0/18 35362 -95.158.64.0/18 6830 -95.158.128.0/22 41313 -95.158.132.0/24 51660 -95.158.133.0/24 41313 -95.158.134.0/23 41313 -95.158.136.0/22 62386 -95.158.140.0/23 62386 -95.158.142.0/23 197168 -95.158.144.0/24 61071 -95.158.145.0/24 29582 -95.158.146.0/24 41313 -95.158.147.0/24 51614 -95.158.148.0/24 197897 -95.158.149.0/24 41313 -95.158.150.0/24 51660 -95.158.151.0/24 197897 -95.158.152.0/24 41313 -95.158.153.0/24 58079 -95.158.154.0/23 41313 -95.158.156.0/22 8967 -95.158.160.0/22 44247 -95.158.164.0/22 47771 -95.158.168.0/24 41313 -95.158.169.0/24 61975 -95.158.170.0/24 41313 -95.158.171.0/24 59620 -95.158.172.0/22 8967 -95.158.176.0/21 44247 -95.158.184.0/22 58079 -95.158.188.0/22 41313 -95.158.192.0/18 12389 -95.159.0.0/18 29256 -95.159.64.0/18 51018 -95.159.128.0/19 12389 -95.159.160.0/21 12389 -95.159.168.0/22 12389 -95.159.172.0/23 12389 -95.159.174.0/23 8443 -95.159.176.0/22 12389 -95.159.180.0/23 12389 -95.159.182.0/23 8443 -95.159.184.0/21 12389 -95.159.192.0/24 29276 -95.159.193.0/24 5603 -95.159.194.0/23 5603 -95.159.196.0/22 5603 -95.159.200.0/21 5603 -95.159.208.0/20 5603 -95.159.224.0/19 5603 -95.160.0.0/16 29314 -95.161.0.0/18 39598 -95.161.64.0/20 62041 -95.161.80.0/20 39598 -95.161.96.0/24 42065 -95.161.97.0/24 39598 -95.161.98.0/23 39598 -95.161.100.0/22 39598 -95.161.104.0/21 39598 -95.161.112.0/20 39598 -95.161.128.0/22 39598 -95.161.140.0/22 62432 -95.161.144.0/20 8492 -95.161.160.0/20 8492 -95.161.176.0/21 8492 -95.161.184.0/22 43370 -95.161.188.0/22 8492 -95.161.192.0/22 8492 -95.161.196.0/22 43370 -95.161.200.0/21 8492 -95.161.208.0/20 8492 -95.161.224.0/22 43370 -95.161.228.0/22 8492 -95.161.232.0/21 8492 -95.161.240.0/20 39598 -95.162.0.0/16 57218 -95.163.0.0/19 12695 -95.163.32.0/23 21051 -95.163.34.0/23 47764 -95.163.36.0/22 47764 -95.163.40.0/21 47764 -95.163.48.0/20 47764 -95.163.64.0/22 12695 -95.163.68.0/24 12695 -95.163.69.0/24 197695 -95.163.70.0/23 12695 -95.163.72.0/21 12695 -95.163.80.0/21 12695 -95.163.88.0/22 12695 -95.163.92.0/23 12695 -95.163.94.0/23 198226 -95.163.96.0/19 12695 -95.163.128.0/20 12695 -95.163.144.0/24 205830 -95.163.148.0/22 21769 -95.163.152.0/21 12695 -95.163.160.0/20 15943 -95.163.176.0/24 48946 -95.163.180.0/22 47764 -95.163.184.0/21 12695 -95.163.192.0/20 25820 -95.163.208.0/21 47764 -95.163.216.0/22 47764 -95.163.248.0/21 47764 -95.164.0.0/19 29632 -95.164.32.0/20 29632 -95.164.48.0/24 35583 -95.164.49.0/24 29632 -95.164.50.0/23 29632 -95.164.52.0/22 29632 -95.164.56.0/21 29632 -95.164.64.0/22 39762 -95.164.68.0/23 29632 -95.164.70.0/24 29632 -95.164.71.0/24 39249 -95.164.72.0/21 29632 -95.164.80.0/20 29632 -95.164.96.0/19 29632 -95.164.128.0/20 266820 -95.164.144.0/20 29632 -95.164.160.0/20 29632 -95.164.176.0/20 266820 -95.164.192.0/19 397044 -95.164.224.0/20 397044 -95.164.240.0/20 29632 -95.165.0.0/16 25513 -95.166.0.0/16 3292 -95.167.0.0/18 12389 -95.167.64.0/19 12389 -95.167.96.0/21 12389 -95.167.104.0/24 12958 -95.167.105.0/24 12389 -95.167.106.0/23 12389 -95.167.108.0/22 12389 -95.167.112.0/20 12389 -95.167.128.0/17 12389 -95.168.0.0/19 43698 -95.168.32.0/19 8462 -95.168.64.0/19 8462 -95.168.96.0/19 12810 -95.168.128.0/19 20880 -95.168.160.0/20 60781 -95.168.176.0/20 205544 -95.168.192.0/19 39392 -95.168.224.0/19 12829 -95.169.0.0/19 25820 -95.169.32.0/19 29492 -95.169.64.0/20 206539 -95.169.88.0/21 206539 -95.169.96.0/19 49476 -95.169.128.0/19 25086 -95.169.160.0/19 31103 -95.169.192.0/24 41017 -95.169.193.0/24 198938 -95.169.194.0/24 44118 -95.169.195.0/24 60974 -95.169.196.0/24 200872 -95.169.197.0/24 205224 -95.169.198.0/24 49188 -95.169.199.0/24 39251 -95.169.200.0/24 39251 -95.169.201.0/24 41017 -95.169.202.0/23 42459 -95.169.204.0/23 200872 -95.169.206.0/23 44814 -95.169.208.0/23 44814 -95.169.210.0/23 34909 -95.169.212.0/24 34909 -95.169.213.0/24 44814 -95.169.214.0/23 61996 -95.169.216.0/23 61996 -95.169.218.0/23 44814 -95.169.220.0/24 61996 -95.169.221.0/24 44814 -95.169.222.0/24 44814 -95.169.223.0/24 61996 -95.169.224.0/20 15704 -95.169.240.0/23 16299 -95.169.246.0/24 16299 -95.169.251.0/24 16299 -95.170.4.0/24 198682 -95.170.8.0/21 25540 -95.170.16.0/20 25540 -95.170.32.0/19 12684 -95.170.64.0/19 20857 -95.170.96.0/20 31357 -95.170.112.0/21 49293 -95.170.120.0/21 31357 -95.170.128.0/21 25549 -95.170.136.0/23 48784 -95.170.138.0/24 25549 -95.170.139.0/24 203599 -95.170.140.0/23 25549 -95.170.142.0/24 25549 -95.170.143.0/24 199778 -95.170.144.0/23 25549 -95.170.146.0/24 49987 -95.170.147.0/24 51213 -95.170.148.0/22 25549 -95.170.152.0/21 25549 -95.170.160.0/20 42304 -95.170.176.0/22 39785 -95.170.184.0/21 39785 -95.170.192.0/19 21277 -95.170.224.0/19 16006 -95.171.0.0/19 48822 -95.171.32.0/19 20811 -95.171.64.0/21 8990 -95.171.72.0/22 8990 -95.171.76.0/24 16015 -95.171.77.0/24 8990 -95.171.78.0/23 8990 -95.171.80.0/20 8990 -95.171.96.0/19 35378 -95.171.128.0/19 43763 -95.171.160.0/19 8368 -95.171.192.0/19 39507 -95.171.224.0/19 13105 -95.172.0.0/19 34920 -95.172.32.0/20 39289 -95.172.48.0/21 201826 -95.172.56.0/24 47614 -95.172.58.0/23 201826 -95.172.60.0/22 201826 -95.172.64.0/24 15570 -95.172.65.0/24 393954 -95.172.66.0/23 48910 -95.172.68.0/22 48910 -95.172.72.0/23 15570 -95.172.74.0/24 44617 -95.172.75.0/24 48910 -95.172.76.0/24 21734 -95.172.77.0/24 15570 -95.172.78.0/23 30282 -95.172.80.0/23 48910 -95.172.82.0/24 15570 -95.172.83.0/24 29791 -95.172.84.0/24 29791 -95.172.85.0/24 15570 -95.172.86.0/23 29791 -95.172.88.0/23 30282 -95.172.90.0/24 14148 -95.172.91.0/24 32787 -95.172.92.0/23 48910 -95.172.94.0/23 15570 -95.172.96.0/19 12714 -95.172.128.0/21 60879 -95.172.140.0/22 60879 -95.172.144.0/22 41066 -95.172.148.0/23 41066 -95.172.150.0/24 41066 -95.172.151.0/24 12389 -95.172.152.0/22 41066 -95.172.157.0/24 8342 -95.172.158.0/23 41066 -95.172.160.0/19 15457 -95.172.192.0/19 9038 -95.172.224.0/21 5413 -95.172.232.0/22 5413 -95.172.236.0/23 5413 -95.172.238.0/23 44574 -95.172.240.0/20 44574 -95.173.0.0/19 20978 -95.173.32.0/19 24852 -95.173.64.0/19 15935 -95.173.96.0/19 15657 -95.173.128.0/21 8291 -95.173.136.0/23 8291 -95.173.138.0/24 8291 -95.173.144.0/20 43797 -95.173.160.0/20 51559 -95.173.176.0/22 51559 -95.173.180.0/23 51559 -95.173.182.0/24 207429 -95.173.183.0/24 51559 -95.173.184.0/21 51559 -95.173.192.0/21 48960 -95.173.200.0/24 48960 -95.173.201.0/24 49025 -95.173.202.0/23 49025 -95.173.204.0/22 49025 -95.173.208.0/21 49025 -95.173.224.0/21 34296 -95.173.232.0/22 34296 -95.173.236.0/23 34296 -95.173.244.0/22 34296 -95.173.248.0/21 34296 -95.174.0.0/19 12637 -95.174.32.0/19 16340 -95.174.64.0/22 9009 -95.174.68.0/22 43350 -95.174.72.0/21 49594 -95.174.80.0/21 25074 -95.174.88.0/21 44053 -95.174.96.0/19 49037 -95.174.128.0/19 15594 -95.174.160.0/19 49011 -95.174.192.0/19 31036 -95.174.224.0/19 15600 -95.175.0.0/19 33951 -95.175.32.0/19 21350 -95.175.64.0/19 3225 -95.175.96.0/19 49282 -95.175.128.0/19 42689 -95.175.160.0/19 42117 -95.175.192.0/19 8220 -95.175.224.0/19 30881 -95.176.0.0/17 42811 -95.176.128.0/17 5603 -95.177.0.0/17 8190 -95.177.128.0/20 43987 -95.177.144.0/23 43987 -95.177.149.0/24 43987 -95.177.150.0/24 201771 -95.177.160.0/19 201771 -95.177.192.0/18 43987 -95.178.0.0/21 35745 -95.178.16.0/20 43766 -95.178.40.0/21 35745 -95.178.48.0/20 43766 -95.178.64.0/20 43766 -95.178.104.0/23 35745 -95.178.128.0/17 34594 -95.179.0.0/22 8570 -95.179.4.0/22 12389 -95.179.8.0/21 12389 -95.179.16.0/20 12389 -95.179.32.0/19 12389 -95.179.80.0/20 12389 -95.179.96.0/20 12389 -95.179.112.0/21 12389 -95.179.120.0/22 8570 -95.179.124.0/23 8570 -95.179.126.0/24 8570 -95.179.127.0/24 12389 -95.179.128.0/17 20473 -95.180.0.0/17 31042 -95.180.128.0/19 34772 -95.180.160.0/21 34772 -95.180.168.0/22 34772 -95.180.172.0/22 41557 -95.180.176.0/20 41557 -95.180.192.0/22 41557 -95.180.196.0/22 34772 -95.180.200.0/21 34772 -95.180.208.0/20 34772 -95.180.224.0/23 34772 -95.180.226.0/23 41557 -95.180.228.0/24 41557 -95.180.229.0/24 34772 -95.180.230.0/23 34772 -95.180.232.0/21 34772 -95.180.240.0/20 34772 -95.181.0.0/17 39927 -95.181.128.0/22 8711 -95.181.132.0/22 44811 -95.181.136.0/21 59793 -95.181.144.0/24 61264 -95.181.145.0/24 59975 -95.181.146.0/23 49637 -95.181.148.0/22 43444 -95.181.152.0/21 59504 -95.181.160.0/21 59504 -95.181.168.0/21 50214 -95.181.176.0/23 200557 -95.181.178.0/23 57311 -95.181.180.0/23 61120 -95.181.182.0/23 200557 -95.181.184.0/22 197078 -95.181.188.0/22 25820 -95.181.192.0/22 49063 -95.181.196.0/23 205305 -95.181.198.0/23 49063 -95.181.200.0/21 49063 -95.181.208.0/22 59917 -95.181.214.0/24 61431 -95.181.216.0/24 200557 -95.181.217.0/24 50896 -95.181.218.0/24 8100 -95.181.219.0/24 200557 -95.181.220.0/22 202019 -95.181.224.0/21 203226 -95.181.232.0/21 8749 -95.181.240.0/21 59793 -95.181.248.0/21 48940 -95.182.0.0/20 59443 -95.182.16.0/21 59443 -95.182.24.0/24 42672 -95.182.25.0/24 48424 -95.182.27.0/24 48424 -95.182.28.0/23 48424 -95.182.31.0/24 48424 -95.182.32.0/19 8752 -95.182.64.0/21 34518 -95.182.72.0/22 61372 -95.182.77.0/24 198619 -95.182.78.0/24 61229 -95.182.79.0/24 204490 -95.182.80.0/20 50671 -95.182.96.0/20 3217 -95.182.112.0/21 48780 -95.182.120.0/22 202984 -95.182.124.0/22 35048 -95.182.128.0/17 12392 -95.183.0.0/21 199391 -95.183.8.0/21 203226 -95.183.16.0/20 47684 -95.183.32.0/22 197078 -95.183.36.0/22 50214 -95.183.42.0/23 209307 -95.183.44.0/23 209788 -95.183.46.0/24 209788 -95.183.47.0/24 201496 -95.183.48.0/20 197988 -95.183.64.0/18 21453 -95.183.128.0/18 8517 -95.183.192.0/20 8517 -95.183.208.0/21 8517 -95.183.216.0/22 8517 -95.183.220.0/22 206887 -95.183.224.0/19 8517 -95.184.0.0/17 39891 -95.184.128.0/17 25019 -95.185.0.0/16 39891 -95.186.0.0/15 39891 -95.188.0.0/16 12389 -95.189.0.0/18 12389 -95.189.64.0/21 12389 -95.189.72.0/22 12389 -95.189.76.0/23 12389 -95.189.78.0/24 39407 -95.189.79.0/24 12389 -95.189.80.0/20 12389 -95.189.96.0/20 12389 -95.189.112.0/24 12389 -95.189.113.0/24 39407 -95.189.114.0/23 12389 -95.189.116.0/22 12389 -95.189.120.0/21 12389 -95.189.128.0/17 12389 -95.190.0.0/16 12389 -95.191.0.0/17 12389 -95.191.128.0/24 12389 -95.191.129.0/24 16054 -95.191.130.0/23 12389 -95.191.132.0/22 12389 -95.191.136.0/21 12389 -95.191.144.0/20 12389 -95.191.160.0/19 12389 -95.191.192.0/18 12389 -95.192.0.0/12 3301 -95.208.0.0/16 6830 -95.209.0.0/16 44034 -95.210.0.0/21 29286 -95.210.8.0/24 29286 -95.210.9.0/24 174 -95.210.10.0/23 29286 -95.210.12.0/22 29286 -95.210.16.0/20 29286 -95.210.32.0/19 29286 -95.210.64.0/18 29286 -95.210.128.0/17 29286 -95.211.0.0/16 60781 -95.212.0.0/18 29256 -95.212.64.0/18 51167 -95.212.128.0/18 29256 -95.212.192.0/19 29256 -95.212.224.0/20 29256 -95.212.240.0/20 51167 -95.213.0.0/18 47541 -95.213.128.0/23 49505 -95.213.130.0/24 50340 -95.213.131.0/24 49505 -95.213.132.0/23 49505 -95.213.134.0/24 49505 -95.213.135.0/24 50340 -95.213.136.0/23 49505 -95.213.138.0/24 50340 -95.213.139.0/24 49505 -95.213.140.0/24 49505 -95.213.141.0/24 50340 -95.213.142.0/23 49505 -95.213.144.0/22 49505 -95.213.148.0/24 49505 -95.213.149.0/24 50340 -95.213.150.0/23 49505 -95.213.152.0/24 50340 -95.213.153.0/24 49505 -95.213.154.0/23 49505 -95.213.156.0/24 49505 -95.213.157.0/24 50340 -95.213.158.0/23 49505 -95.213.160.0/23 49505 -95.213.162.0/24 49505 -95.213.163.0/24 50340 -95.213.164.0/24 50340 -95.213.165.0/24 49505 -95.213.166.0/24 49505 -95.213.167.0/24 50340 -95.213.168.0/23 50340 -95.213.170.0/23 49505 -95.213.172.0/22 49505 -95.213.176.0/23 50340 -95.213.178.0/23 49505 -95.213.180.0/22 49505 -95.213.184.0/22 49505 -95.213.188.0/23 50340 -95.213.190.0/23 49505 -95.213.192.0/24 49505 -95.213.193.0/24 50340 -95.213.194.0/23 49505 -95.213.196.0/23 50340 -95.213.198.0/23 49505 -95.213.200.0/22 49505 -95.213.204.0/24 49505 -95.213.205.0/24 50340 -95.213.206.0/24 50340 -95.213.207.0/24 49505 -95.213.208.0/22 49505 -95.213.212.0/24 50340 -95.213.213.0/24 49505 -95.213.214.0/24 49505 -95.213.215.0/24 50340 -95.213.216.0/23 49505 -95.213.218.0/24 49505 -95.213.219.0/24 50340 -95.213.220.0/23 49505 -95.213.222.0/23 50340 -95.213.224.0/23 49505 -95.213.226.0/24 50340 -95.213.227.0/24 49505 -95.213.228.0/23 49505 -95.213.230.0/24 49505 -95.213.231.0/24 50340 -95.213.232.0/24 50340 -95.213.233.0/24 49505 -95.213.234.0/23 49505 -95.213.236.0/22 49505 -95.213.240.0/24 50340 -95.213.241.0/24 49505 -95.213.242.0/23 49505 -95.213.244.0/23 49505 -95.213.246.0/23 50340 -95.213.248.0/23 50340 -95.213.250.0/23 49505 -95.213.252.0/23 49505 -95.213.254.0/24 49505 -95.213.255.0/24 50340 -95.214.0.0/22 57910 -95.214.4.0/22 197697 -95.214.8.0/24 207569 -95.214.12.0/22 48915 -95.214.16.0/22 35709 -95.214.20.0/23 49981 -95.214.24.0/22 43659 -95.214.28.0/22 39923 -95.214.32.0/22 3215 -95.214.36.0/22 33823 -95.214.40.0/22 6876 -95.214.44.0/22 60032 -95.214.48.0/24 20473 -95.214.50.0/24 20473 -95.214.52.0/22 201814 -95.214.56.0/24 209684 -95.214.58.0/23 209684 -95.214.60.0/22 198610 -95.214.64.0/22 20904 -95.214.68.0/22 209681 -95.214.72.0/22 15830 -95.214.76.0/22 393262 -95.214.80.0/24 393559 -95.214.81.0/24 33657 -95.214.82.0/24 393559 -95.214.83.0/24 33657 -95.214.84.0/22 23338 -95.214.88.0/22 62009 -95.214.92.0/22 9009 -95.214.96.0/22 15830 -95.214.100.0/22 9009 -95.214.104.0/22 60447 -95.214.108.0/22 201153 -95.214.112.0/24 40676 -95.214.113.0/24 35913 -95.214.114.0/23 40676 -95.214.116.0/23 41864 -95.214.118.0/24 41864 -95.214.119.0/24 203395 -95.214.120.0/22 209001 -95.214.132.0/22 5588 -95.214.136.0/22 44459 -95.214.140.0/22 209649 -95.214.144.0/22 201942 -95.214.156.0/22 203950 -95.214.160.0/23 395800 -95.214.162.0/24 395800 -95.214.164.0/22 8100 -95.214.172.0/22 18013 -95.214.176.0/21 18013 -95.214.188.0/22 209883 -95.214.192.0/22 209610 -95.214.204.0/22 12301 -95.214.208.0/22 41202 -95.214.212.0/23 43019 -95.214.215.0/24 43019 -95.214.216.0/24 40676 -95.214.217.0/24 35913 -95.214.218.0/24 35913 -95.214.219.0/24 200282 -95.214.220.0/22 35258 -95.214.224.0/22 42965 -95.214.228.0/22 202470 -95.214.232.0/22 209941 -95.214.240.0/24 59885 -95.214.241.0/24 42947 -95.214.242.0/23 42947 -95.214.244.0/22 9009 -95.214.248.0/23 40676 -95.214.250.0/24 35913 -95.214.251.0/24 40676 -95.215.0.0/22 34665 -95.215.4.0/22 199098 -95.215.8.0/24 29119 -95.215.16.0/22 39287 -95.215.20.0/22 34393 -95.215.24.0/21 34393 -95.215.32.0/22 12586 -95.215.36.0/22 47920 -95.215.40.0/22 8811 -95.215.44.0/22 52173 -95.215.48.0/22 48882 -95.215.52.0/22 31628 -95.215.56.0/22 25408 -95.215.60.0/22 29424 -95.215.64.0/22 203287 -95.215.68.0/22 48909 -95.215.72.0/22 51849 -95.215.76.0/22 49761 -95.215.80.0/22 50415 -95.215.84.0/22 51156 -95.215.88.0/24 33920 -95.215.92.0/22 48919 -95.215.96.0/21 29069 -95.215.104.0/22 28858 -95.215.108.0/22 59504 -95.215.112.0/21 41161 -95.215.120.0/22 49940 -95.215.124.0/22 43594 -95.215.128.0/22 51440 -95.215.132.0/22 197289 -95.215.136.0/22 49066 -95.215.140.0/22 43700 -95.215.144.0/22 203872 -95.215.148.0/24 49064 -95.215.149.0/24 8305 -95.215.150.0/23 49064 -95.215.152.0/22 39805 -95.215.156.0/22 48957 -95.215.160.0/22 39364 -95.215.164.0/22 197002 -95.215.168.0/22 51747 -95.215.173.0/24 34078 -95.215.174.0/23 44574 -95.215.176.0/21 57174 -95.215.184.0/21 51758 -95.215.192.0/21 196681 -95.215.200.0/22 209811 -95.215.204.0/22 204601 -95.215.208.0/22 49055 -95.215.212.0/22 48918 -95.215.216.0/22 43120 -95.215.220.0/23 59480 -95.215.222.0/24 50819 -95.215.223.0/24 44742 -95.215.224.0/22 9009 -95.215.228.0/23 59482 -95.215.230.0/24 59574 -95.215.232.0/22 199846 -95.215.236.0/23 199190 -95.215.238.0/23 35723 -95.215.240.0/22 59537 -95.215.244.0/22 47782 -95.215.248.0/22 35728 -95.215.252.0/22 196739 -95.216.0.0/15 24940 -95.218.0.0/15 25019 -95.220.0.0/15 12714 -95.222.0.0/15 6830 -95.224.0.0/11 3269 -96.0.0.0/16 46606 -96.1.0.0/17 852 -96.1.240.0/22 852 -96.2.0.0/17 11232 -96.2.128.0/18 11232 -96.2.192.0/22 11232 -96.2.196.0/24 11232 -96.2.197.0/24 46900 -96.2.198.0/23 11232 -96.2.200.0/22 11232 -96.2.204.0/23 11232 -96.2.206.0/24 62959 -96.2.207.0/24 11232 -96.2.208.0/21 11232 -96.2.216.0/22 11232 -96.2.220.0/24 11232 -96.2.221.0/24 394487 -96.2.222.0/23 394487 -96.2.224.0/20 11232 -96.2.240.0/21 11232 -96.2.248.0/23 11232 -96.2.250.0/24 46623 -96.2.251.0/24 11232 -96.2.252.0/22 11232 -96.3.0.0/17 11232 -96.3.128.0/18 11232 -96.3.192.0/21 11232 -96.3.200.0/22 11232 -96.3.204.0/23 11232 -96.3.206.0/24 40434 -96.3.207.0/24 11232 -96.3.208.0/20 11232 -96.3.224.0/19 11232 -96.4.0.0/15 11686 -96.6.4.0/22 16625 -96.6.8.0/21 16625 -96.6.16.0/20 16625 -96.6.32.0/21 18101 -96.6.40.0/24 20940 -96.6.41.0/24 45629 -96.6.43.0/24 18717 -96.6.44.0/24 24319 -96.6.45.0/24 20940 -96.6.46.0/24 35994 -96.6.47.0/24 24319 -96.6.48.0/20 16625 -96.6.64.0/19 16625 -96.6.114.0/24 12222 -96.6.115.0/24 24319 -96.6.116.0/23 35994 -96.6.118.0/24 20940 -96.6.120.0/23 16625 -96.6.123.0/24 20940 -96.6.124.0/24 20940 -96.6.125.0/24 24319 -96.6.126.0/24 35994 -96.6.127.0/24 20940 -96.6.128.0/20 16625 -96.6.144.0/20 41164 -96.6.176.0/20 20940 -96.6.192.0/20 6147 -96.6.208.0/20 16625 -96.6.224.0/19 16625 -96.7.0.0/20 18678 -96.7.16.0/20 16625 -96.7.33.0/24 4775 -96.7.34.0/23 18680 -96.7.36.0/23 23454 -96.7.38.0/23 23700 -96.7.40.0/24 20940 -96.7.41.0/24 35994 -96.7.42.0/23 18680 -96.7.46.0/23 20940 -96.7.49.0/24 21342 -96.7.50.0/24 21342 -96.7.51.0/24 20940 -96.7.52.0/23 16625 -96.7.54.0/23 20940 -96.7.58.0/23 16625 -96.7.60.0/22 23700 -96.7.64.0/21 16625 -96.7.72.0/23 16625 -96.7.74.0/23 20940 -96.7.76.0/22 16625 -96.7.80.0/20 16625 -96.7.96.0/20 16625 -96.7.112.0/20 4609 -96.7.130.0/23 24319 -96.7.132.0/22 16625 -96.7.136.0/22 21342 -96.7.144.0/20 16625 -96.7.176.0/22 16625 -96.7.182.0/23 16625 -96.7.184.0/21 16625 -96.7.192.0/20 16625 -96.7.208.0/22 20940 -96.7.220.0/23 16625 -96.7.222.0/24 20940 -96.7.223.0/24 35994 -96.7.236.0/22 16625 -96.7.240.0/24 35994 -96.7.241.0/24 24319 -96.7.242.0/23 24319 -96.7.244.0/23 7843 -96.7.246.0/23 20940 -96.7.248.0/23 20940 -96.7.250.0/24 35994 -96.7.251.0/24 20940 -96.7.252.0/22 16625 -96.8.0.0/20 23089 -96.8.16.0/21 23089 -96.8.24.0/22 23089 -96.8.28.0/24 23089 -96.8.29.0/24 31793 -96.8.30.0/23 23089 -96.8.32.0/23 32686 -96.8.35.0/24 32775 -96.8.36.0/22 18444 -96.8.44.0/23 21882 -96.8.46.0/23 18601 -96.8.48.0/20 23277 -96.8.64.0/20 53503 -96.8.80.0/23 7045 -96.8.82.0/24 7045 -96.8.87.0/24 7045 -96.8.88.0/22 395473 -96.8.93.0/24 395473 -96.8.94.0/23 395473 -96.8.96.0/20 3361 -96.8.112.0/20 36352 -96.8.128.0/17 16527 -96.9.0.0/22 19871 -96.9.4.0/24 19871 -96.9.5.0/24 55002 -96.9.6.0/23 19871 -96.9.8.0/21 19871 -96.9.16.0/20 19871 -96.9.32.0/19 19871 -96.9.64.0/20 131207 -96.9.80.0/21 131207 -96.9.88.0/22 131207 -96.9.92.0/23 131207 -96.9.95.0/24 131207 -96.9.96.0/20 30295 -96.9.112.0/21 30295 -96.9.120.0/22 30295 -96.9.124.0/23 30295 -96.9.127.0/24 10913 -96.9.128.0/19 204170 -96.9.160.0/20 134809 -96.9.176.0/23 15695 -96.9.178.0/24 15695 -96.9.180.0/24 15695 -96.9.182.0/24 15695 -96.9.184.0/23 15695 -96.9.187.0/24 15695 -96.9.188.0/24 15695 -96.9.190.0/23 15695 -96.9.192.0/20 20278 -96.9.208.0/23 46844 -96.9.210.0/23 38001 -96.9.212.0/22 20278 -96.9.216.0/22 20278 -96.9.220.0/24 20278 -96.9.221.0/24 54825 -96.9.222.0/23 20278 -96.9.224.0/24 12183 -96.9.225.0/24 8100 -96.9.226.0/24 32489 -96.9.227.0/24 20278 -96.9.228.0/22 20278 -96.9.232.0/21 20278 -96.9.240.0/20 20278 -96.10.0.0/19 11426 -96.10.32.0/21 11426 -96.10.40.0/22 11426 -96.10.44.0/23 11426 -96.10.46.0/24 63373 -96.10.47.0/24 11426 -96.10.48.0/20 11426 -96.10.64.0/18 11426 -96.10.128.0/19 11426 -96.10.160.0/22 11426 -96.10.164.0/23 11426 -96.10.166.0/24 26117 -96.10.167.0/24 11426 -96.10.168.0/21 11426 -96.10.176.0/20 11426 -96.10.192.0/18 11426 -96.11.0.0/18 10796 -96.11.64.0/22 10796 -96.11.68.0/23 10796 -96.11.70.0/24 10796 -96.11.71.0/24 397426 -96.11.72.0/21 10796 -96.11.80.0/20 33363 -96.11.96.0/20 10796 -96.11.112.0/21 10796 -96.11.120.0/23 10796 -96.11.122.0/23 36298 -96.11.124.0/22 10796 -96.11.128.0/19 10796 -96.11.160.0/20 10796 -96.11.176.0/21 10796 -96.11.184.0/22 10796 -96.11.188.0/24 40715 -96.11.189.0/24 10796 -96.11.190.0/23 10796 -96.11.192.0/19 10796 -96.11.224.0/21 10796 -96.11.232.0/22 10796 -96.11.236.0/23 10796 -96.11.238.0/24 10796 -96.11.239.0/24 46771 -96.11.240.0/20 10796 -96.12.0.0/17 22394 -96.12.128.0/17 6167 -96.13.0.0/18 22394 -96.13.64.0/19 6167 -96.13.96.0/19 22394 -96.13.128.0/19 22394 -96.13.160.0/19 6167 -96.13.192.0/18 6167 -96.14.0.0/18 22394 -96.14.64.0/19 22394 -96.14.96.0/19 6167 -96.14.128.0/17 6167 -96.15.0.0/16 6167 -96.16.0.0/22 16625 -96.16.4.0/23 31108 -96.16.6.0/23 20940 -96.16.8.0/22 20940 -96.16.12.0/23 20940 -96.16.14.0/23 16625 -96.16.16.0/21 20940 -96.16.24.0/21 16625 -96.16.32.0/22 16625 -96.16.36.0/22 20940 -96.16.40.0/21 16625 -96.16.48.0/20 16625 -96.16.64.0/20 16625 -96.16.96.0/24 35994 -96.16.98.0/23 20940 -96.16.100.0/22 45430 -96.16.104.0/21 16625 -96.16.112.0/21 16625 -96.16.120.0/23 20940 -96.16.122.0/23 34164 -96.16.126.0/23 16625 -96.16.128.0/19 16625 -96.16.160.0/20 16625 -96.16.176.0/20 3257 -96.16.192.0/21 1299 -96.16.200.0/22 16625 -96.16.204.0/22 33668 -96.16.208.0/22 16625 -96.16.212.0/22 4230 -96.16.216.0/22 16625 -96.16.240.0/20 16625 -96.17.0.0/21 16625 -96.17.8.0/22 20940 -96.17.12.0/24 20940 -96.17.14.0/23 20940 -96.17.16.0/20 16625 -96.17.32.0/19 16625 -96.17.64.0/22 16625 -96.17.68.0/23 20940 -96.17.71.0/24 20940 -96.17.72.0/24 20940 -96.17.73.0/24 35994 -96.17.74.0/23 20940 -96.17.76.0/22 22773 -96.17.96.0/24 9498 -96.17.98.0/24 35994 -96.17.101.0/24 20940 -96.17.102.0/24 20940 -96.17.104.0/23 16625 -96.17.106.0/23 20940 -96.17.108.0/23 20940 -96.17.110.0/24 21342 -96.17.111.0/24 20940 -96.17.112.0/20 16625 -96.17.128.0/20 16625 -96.17.144.0/24 20940 -96.17.146.0/23 20940 -96.17.148.0/22 20940 -96.17.152.0/23 20940 -96.17.154.0/24 20940 -96.17.155.0/24 2914 -96.17.156.0/22 20940 -96.17.160.0/24 9329 -96.17.162.0/23 20940 -96.17.167.0/24 20940 -96.17.168.0/23 9498 -96.17.170.0/23 20940 -96.17.172.0/23 35994 -96.17.174.0/23 20940 -96.17.177.0/24 20940 -96.17.180.0/23 20940 -96.17.182.0/24 9498 -96.17.184.0/21 16625 -96.17.192.0/23 16625 -96.17.194.0/24 20940 -96.17.195.0/24 35994 -96.17.196.0/24 20940 -96.17.198.0/24 35994 -96.17.199.0/24 24319 -96.17.200.0/23 16625 -96.17.204.0/24 35994 -96.17.205.0/24 20940 -96.17.206.0/23 16625 -96.17.208.0/20 16625 -96.17.224.0/20 16625 -96.17.240.0/20 45629 -96.18.0.0/20 11492 -96.18.24.0/21 11492 -96.18.32.0/22 11492 -96.18.38.0/23 11492 -96.18.44.0/24 11492 -96.18.56.0/21 11492 -96.18.64.0/21 11492 -96.18.76.0/24 11492 -96.18.78.0/23 11492 -96.18.88.0/21 11492 -96.18.128.0/21 11492 -96.18.136.0/22 11492 -96.18.140.0/23 11492 -96.18.156.0/23 11492 -96.18.158.0/24 11492 -96.18.160.0/19 11492 -96.18.192.0/20 11492 -96.18.208.0/22 11492 -96.18.224.0/20 11492 -96.18.240.0/22 11492 -96.18.244.0/23 11492 -96.18.246.0/24 18812 -96.18.247.0/24 11492 -96.18.248.0/21 11492 -96.19.0.0/20 11492 -96.19.16.0/23 11492 -96.19.18.0/24 11492 -96.19.80.0/20 11492 -96.19.96.0/21 11492 -96.19.104.0/22 11492 -96.19.108.0/24 11492 -96.19.111.0/24 11492 -96.19.120.0/21 11492 -96.19.128.0/20 11492 -96.19.192.0/21 11492 -96.19.200.0/23 11492 -96.19.203.0/24 11492 -96.19.204.0/24 11492 -96.19.208.0/20 11492 -96.19.224.0/20 11492 -96.19.248.0/21 11492 -96.20.0.0/14 5769 -96.26.29.0/24 16586 -96.27.0.0/16 12083 -96.28.0.0/15 10796 -96.30.0.0/18 32244 -96.30.64.0/21 136393 -96.30.72.0/23 136393 -96.30.74.0/23 132280 -96.30.76.0/23 132280 -96.30.78.0/24 132280 -96.30.79.0/24 136393 -96.30.80.0/22 132280 -96.30.84.0/22 136393 -96.30.88.0/24 132280 -96.30.89.0/24 45806 -96.30.90.0/23 132280 -96.30.92.0/24 24097 -96.30.93.0/24 132280 -96.30.94.0/23 132280 -96.30.96.0/22 132280 -96.30.100.0/22 136393 -96.30.104.0/23 132280 -96.30.106.0/24 132280 -96.30.107.0/24 136393 -96.30.108.0/23 136393 -96.30.110.0/24 132280 -96.30.111.0/24 136393 -96.30.112.0/24 132876 -96.30.115.0/24 132280 -96.30.116.0/22 132280 -96.30.120.0/23 132280 -96.30.122.0/24 132876 -96.30.123.0/24 132280 -96.30.124.0/22 132280 -96.30.128.0/19 11260 -96.30.160.0/20 11260 -96.30.176.0/21 11260 -96.30.184.0/23 11260 -96.30.186.0/24 11260 -96.30.187.0/24 54658 -96.30.188.0/22 54658 -96.30.192.0/19 20473 -96.30.224.0/20 13904 -96.30.240.0/20 18719 -96.31.0.0/19 53347 -96.31.32.0/20 14415 -96.31.48.0/20 29894 -96.31.64.0/19 29802 -96.31.96.0/19 4474 -96.31.128.0/19 11979 -96.31.160.0/23 11274 -96.31.162.0/24 394416 -96.31.163.0/24 11274 -96.31.164.0/22 11274 -96.31.168.0/21 11274 -96.31.176.0/20 13765 -96.31.192.0/20 19008 -96.31.208.0/20 12231 -96.31.224.0/19 14265 -96.32.0.0/18 20115 -96.32.64.0/19 20115 -96.32.104.0/21 20115 -96.32.112.0/20 20115 -96.32.128.0/17 20115 -96.33.0.0/16 20115 -96.34.67.0/24 20115 -96.34.184.0/22 16787 -96.35.0.0/16 20115 -96.36.0.0/19 20115 -96.36.32.0/20 20115 -96.36.48.0/21 20115 -96.36.56.0/22 22829 -96.36.60.0/24 20115 -96.36.61.0/24 47086 -96.36.62.0/23 20115 -96.36.64.0/18 20115 -96.36.128.0/18 20115 -96.36.224.0/19 20115 -96.37.0.0/19 20115 -96.37.32.0/21 20115 -96.37.48.0/20 20115 -96.37.64.0/18 20115 -96.37.128.0/19 20115 -96.37.160.0/19 16787 -96.37.192.0/18 20115 -96.38.0.0/15 20115 -96.40.0.0/15 20115 -96.42.0.0/16 20115 -96.43.0.0/20 11215 -96.43.16.0/22 11215 -96.43.20.0/23 11215 -96.43.22.0/24 25956 -96.43.23.0/24 11215 -96.43.24.0/21 11215 -96.43.32.0/21 23404 -96.43.40.0/23 23404 -96.43.42.0/24 23404 -96.43.43.0/24 21725 -96.43.44.0/22 23404 -96.43.48.0/20 23404 -96.43.64.0/24 22302 -96.43.65.0/24 21627 -96.43.66.0/23 22302 -96.43.68.0/22 22302 -96.43.72.0/21 22302 -96.43.80.0/20 35916 -96.43.96.0/21 64050 -96.43.104.0/23 64050 -96.43.106.0/24 64050 -96.43.107.0/24 22769 -96.43.108.0/24 64050 -96.43.109.0/24 22769 -96.43.110.0/23 64050 -96.43.112.0/20 14543 -96.43.128.0/20 19969 -96.43.144.0/20 14340 -96.43.160.0/19 30689 -96.43.192.0/19 17184 -96.43.224.0/20 14102 -96.43.240.0/20 13614 -96.44.0.0/24 5650 -96.44.1.0/24 22773 -96.44.2.0/24 209 -96.44.3.0/24 7018 -96.44.4.0/24 16657 -96.44.5.0/24 395461 -96.44.6.0/24 15305 -96.44.7.0/24 46887 -96.44.8.0/23 54119 -96.44.10.0/24 11426 -96.44.12.0/22 11426 -96.44.17.0/24 11427 -96.44.18.0/24 2711 -96.44.19.0/24 209 -96.44.24.0/24 63242 -96.44.25.0/24 11427 -96.44.26.0/24 12042 -96.44.27.0/24 7018 -96.44.28.0/23 54119 -96.44.30.0/24 209 -96.44.31.0/24 11426 -96.44.32.0/19 11084 -96.44.64.0/18 22995 -96.44.128.0/18 8100 -96.44.192.0/18 21724 -96.45.0.0/20 2735 -96.45.16.0/20 33616 -96.45.32.0/20 40934 -96.45.64.0/20 15149 -96.45.80.0/22 16552 -96.45.85.0/24 16552 -96.45.86.0/23 16552 -96.45.88.0/22 16552 -96.45.92.0/23 16552 -96.45.94.0/24 16552 -96.45.96.0/20 19635 -96.45.112.0/20 19271 -96.45.128.0/20 26251 -96.45.160.0/20 35916 -96.45.176.0/20 25820 -96.45.192.0/21 21949 -96.45.200.0/22 21949 -96.45.204.0/24 21949 -96.45.205.0/24 20425 -96.45.206.0/23 21949 -96.45.208.0/21 4977 -96.45.216.0/23 4977 -96.45.218.0/24 4977 -96.45.219.0/24 54735 -96.45.220.0/22 4977 -96.45.224.0/20 46632 -96.45.240.0/20 7106 -96.46.0.0/24 19969 -96.46.1.0/24 13768 -96.46.2.0/24 11728 -96.46.3.0/24 13768 -96.46.4.0/22 11728 -96.46.8.0/22 11728 -96.46.12.0/24 19853 -96.46.13.0/24 11728 -96.46.14.0/23 19853 -96.46.16.0/20 13370 -96.46.32.0/20 22684 -96.46.48.0/20 36689 -96.46.64.0/24 18990 -96.46.65.0/24 35985 -96.46.66.0/24 30329 -96.46.67.0/24 18990 -96.46.68.0/22 18990 -96.46.72.0/21 18990 -96.46.80.0/20 18435 -96.46.96.0/20 7253 -96.46.112.0/20 46238 -96.46.128.0/20 18499 -96.46.144.0/21 19893 -96.46.152.0/23 19893 -96.46.154.0/24 15334 -96.46.155.0/24 19893 -96.46.156.0/22 19893 -96.46.160.0/20 397549 -96.46.176.0/20 7979 -96.46.192.0/20 40788 -96.46.208.0/20 14368 -96.46.224.0/20 14805 -96.46.240.0/20 19271 -96.47.0.0/21 33302 -96.47.8.0/22 33302 -96.47.12.0/24 395391 -96.47.13.0/24 33302 -96.47.14.0/23 33302 -96.47.16.0/23 46263 -96.47.19.0/24 46263 -96.47.20.0/22 46263 -96.47.24.0/22 46263 -96.47.30.0/23 46263 -96.47.32.0/23 393398 -96.47.34.0/24 393398 -96.47.35.0/24 13354 -96.47.36.0/23 13354 -96.47.38.0/24 13354 -96.47.40.0/22 13354 -96.47.44.0/24 13354 -96.47.45.0/24 393398 -96.47.46.0/23 393398 -96.47.48.0/22 36306 -96.47.52.0/23 36306 -96.47.56.0/23 36306 -96.47.64.0/20 11403 -96.47.80.0/20 13825 -96.47.96.0/20 11949 -96.47.112.0/20 397122 -96.47.128.0/20 36498 -96.47.144.0/20 23314 -96.47.160.0/20 4185 -96.47.176.0/20 40788 -96.47.192.0/20 55140 -96.47.208.0/22 27325 -96.47.212.0/23 53629 -96.47.214.0/23 27325 -96.47.216.0/21 27325 -96.47.224.0/21 8100 -96.47.232.0/23 53974 -96.47.234.0/23 8100 -96.47.236.0/22 8100 -96.47.240.0/23 40828 -96.47.242.0/23 394268 -96.47.244.0/22 393558 -96.47.248.0/21 40828 -96.48.0.0/13 6327 -96.56.0.0/15 6128 -96.58.0.0/15 33363 -96.60.0.0/16 4181 -96.61.0.0/19 4181 -96.61.32.0/21 4181 -96.61.40.0/23 4181 -96.61.42.0/24 396247 -96.61.43.0/24 4181 -96.61.44.0/22 4181 -96.61.48.0/20 4181 -96.61.64.0/18 4181 -96.61.128.0/18 4181 -96.61.192.0/19 4181 -96.61.224.0/23 4181 -96.61.226.0/24 4181 -96.61.227.0/24 47039 -96.61.228.0/22 4181 -96.61.232.0/21 4181 -96.61.240.0/20 4181 -96.62.0.0/16 35908 -96.63.0.0/20 22995 -96.63.16.0/21 22995 -96.63.24.0/23 22995 -96.63.28.0/23 22995 -96.63.31.0/24 22995 -96.63.32.0/19 22995 -96.63.64.0/20 32110 -96.63.96.0/24 32110 -96.63.98.0/24 32110 -96.63.106.0/24 32110 -96.63.128.0/19 21804 -96.63.160.0/21 21804 -96.63.168.0/22 21804 -96.63.172.0/23 21804 -96.63.174.0/24 21804 -96.63.175.0/24 53543 -96.63.176.0/23 54578 -96.63.178.0/24 54578 -96.63.179.0/24 18883 -96.63.180.0/22 54578 -96.63.184.0/21 54578 -96.63.192.0/20 23473 -96.63.208.0/22 23473 -96.63.212.0/23 23473 -96.63.216.0/24 23473 -96.63.224.0/24 23473 -96.63.228.0/22 23473 -96.63.232.0/24 46925 -96.63.236.0/22 23473 -96.63.240.0/24 46925 -96.63.248.0/22 23473 -96.63.252.0/24 23473 -96.64.0.0/11 7922 -96.96.0.0/12 7922 -96.112.0.0/15 7922 -96.114.0.0/17 7922 -96.114.128.0/23 7922 -96.114.130.0/24 7922 -96.114.131.0/24 20214 -96.114.132.0/24 7725 -96.114.133.0/24 7922 -96.114.134.0/24 7725 -96.114.135.0/24 7922 -96.114.136.0/22 7922 -96.114.140.0/23 7922 -96.114.142.0/24 33660 -96.114.143.0/24 7922 -96.114.144.0/20 7922 -96.114.160.0/19 7922 -96.114.192.0/18 7922 -96.115.0.0/16 7922 -96.116.0.0/19 7922 -96.116.32.0/23 7725 -96.116.34.0/23 7922 -96.116.36.0/22 7922 -96.116.40.0/21 7922 -96.116.48.0/20 7922 -96.116.64.0/18 7922 -96.116.128.0/17 7922 -96.117.0.0/16 7922 -96.118.0.0/16 7922 -96.119.0.0/21 7922 -96.119.8.0/21 7725 -96.119.16.0/21 7922 -96.119.24.0/21 33660 -96.119.32.0/21 33650 -96.119.40.0/21 33491 -96.119.48.0/21 7922 -96.119.56.0/22 20214 -96.119.60.0/22 7922 -96.119.64.0/18 7922 -96.119.128.0/19 7922 -96.119.160.0/21 7922 -96.119.168.0/22 20214 -96.119.172.0/22 7922 -96.119.176.0/20 7922 -96.119.192.0/20 7922 -96.119.208.0/22 7922 -96.119.212.0/22 33489 -96.119.216.0/21 7922 -96.119.224.0/19 7922 -96.120.0.0/14 7922 -96.124.0.0/16 7922 -96.125.0.0/17 2055 -96.125.128.0/20 7311 -96.125.144.0/20 44307 -96.125.160.0/20 46606 -96.125.176.0/22 13767 -96.125.180.0/23 13767 -96.125.182.0/23 13768 -96.125.184.0/22 13768 -96.125.188.0/22 13767 -96.125.192.0/20 40864 -96.125.208.0/20 21724 -96.125.224.0/20 27221 -96.125.240.0/20 803 -96.126.0.0/18 3663 -96.126.64.0/24 64200 -96.126.66.0/23 64200 -96.126.68.0/24 46562 -96.126.69.0/24 20016 -96.126.70.0/24 21659 -96.126.71.0/24 32780 -96.126.81.0/24 6364 -96.126.83.0/24 6364 -96.126.84.0/24 6364 -96.126.96.0/19 63949 -96.126.128.0/18 46339 -96.126.192.0/20 2386 -96.126.224.0/20 2386 -96.127.0.0/17 8987 -96.127.128.0/18 32475 -96.127.192.0/18 1403 -96.128.0.0/10 7922 -96.192.0.0/11 7922 -96.224.0.0/16 701 -96.225.0.0/17 701 -96.225.128.0/18 701 -96.226.0.0/23 5650 -96.226.4.0/23 5650 -96.226.8.0/23 5650 -96.226.14.0/23 5650 -96.226.18.0/23 5650 -96.226.24.0/23 5650 -96.226.30.0/23 5650 -96.226.34.0/23 5650 -96.226.38.0/23 5650 -96.226.42.0/23 5650 -96.226.44.0/23 5650 -96.226.48.0/22 5650 -96.226.52.0/23 5650 -96.226.58.0/23 5650 -96.226.62.0/23 5650 -96.226.70.0/23 5650 -96.226.86.0/23 5650 -96.226.88.0/22 5650 -96.226.106.0/23 5650 -96.226.110.0/23 5650 -96.226.112.0/21 5650 -96.226.122.0/23 5650 -96.226.128.0/23 5650 -96.226.136.0/22 5650 -96.226.140.0/23 5650 -96.226.146.0/23 5650 -96.226.148.0/23 5650 -96.226.154.0/23 5650 -96.226.156.0/23 5650 -96.226.164.0/23 5650 -96.226.186.0/23 5650 -96.226.188.0/23 5650 -96.226.206.0/23 5650 -96.226.210.0/23 5650 -96.226.222.0/23 5650 -96.226.224.0/23 5650 -96.226.228.0/23 5650 -96.226.236.0/22 5650 -96.226.240.0/23 5650 -96.226.244.0/23 5650 -96.227.0.0/16 701 -96.228.0.0/18 701 -96.228.64.0/20 5650 -96.228.80.0/20 701 -96.228.96.0/19 701 -96.228.128.0/23 5650 -96.228.142.0/23 5650 -96.228.152.0/23 5650 -96.228.158.0/23 5650 -96.228.160.0/22 5650 -96.228.176.0/23 5650 -96.228.182.0/23 5650 -96.228.184.0/23 5650 -96.228.194.0/23 5650 -96.228.200.0/23 5650 -96.228.204.0/23 5650 -96.228.218.0/23 5650 -96.228.220.0/22 5650 -96.228.240.0/22 5650 -96.228.244.0/23 5650 -96.228.250.0/23 5650 -96.229.2.0/23 5650 -96.229.22.0/23 5650 -96.229.24.0/23 5650 -96.229.36.0/23 5650 -96.229.40.0/23 5650 -96.229.48.0/23 5650 -96.229.60.0/22 5650 -96.229.64.0/22 5650 -96.229.84.0/23 5650 -96.229.88.0/22 5650 -96.229.94.0/23 5650 -96.229.98.0/23 5650 -96.229.102.0/23 5650 -96.229.110.0/23 5650 -96.229.114.0/23 5650 -96.229.118.0/23 5650 -96.229.120.0/23 5650 -96.229.124.0/22 5650 -96.229.134.0/23 5650 -96.229.142.0/23 5650 -96.229.144.0/23 5650 -96.229.148.0/23 5650 -96.229.152.0/23 5650 -96.229.156.0/22 5650 -96.229.172.0/23 5650 -96.229.176.0/22 5650 -96.229.184.0/22 5650 -96.229.196.0/23 5650 -96.229.210.0/23 5650 -96.229.222.0/23 5650 -96.229.228.0/23 5650 -96.229.238.0/23 5650 -96.229.244.0/22 5650 -96.229.248.0/22 5650 -96.230.0.0/15 701 -96.232.0.0/16 701 -96.233.0.0/17 701 -96.233.128.0/18 701 -96.233.192.0/19 701 -96.234.0.0/16 701 -96.235.0.0/18 701 -96.235.96.0/20 5650 -96.235.128.0/17 701 -96.236.0.0/18 701 -96.236.65.0/24 5650 -96.236.66.0/24 5650 -96.236.80.0/20 701 -96.236.112.0/20 701 -96.236.128.0/17 701 -96.237.0.0/16 701 -96.238.0.0/17 701 -96.238.128.0/18 701 -96.238.209.0/24 5650 -96.238.210.0/23 5650 -96.238.212.0/23 5650 -96.238.221.0/24 5650 -96.239.0.0/17 701 -96.239.128.0/19 701 -96.239.160.0/20 701 -96.239.176.0/21 701 -96.239.197.0/24 13663 -96.239.206.0/23 7046 -96.239.224.0/20 701 -96.239.249.0/24 7046 -96.239.252.0/23 7046 -96.240.0.0/19 701 -96.240.32.0/19 5650 -96.240.80.0/20 701 -96.240.96.0/20 701 -96.240.128.0/17 701 -96.241.0.0/16 701 -96.242.0.0/16 701 -96.243.0.0/17 701 -96.243.130.0/23 5650 -96.243.132.0/23 5650 -96.243.136.0/23 5650 -96.243.144.0/23 5650 -96.243.148.0/23 5650 -96.243.158.0/23 5650 -96.243.162.0/23 5650 -96.243.168.0/22 5650 -96.243.174.0/23 5650 -96.243.176.0/23 5650 -96.243.188.0/22 5650 -96.243.198.0/23 5650 -96.243.202.0/23 5650 -96.243.204.0/23 5650 -96.243.210.0/23 5650 -96.243.212.0/23 5650 -96.243.218.0/23 5650 -96.243.222.0/23 5650 -96.243.226.0/23 5650 -96.243.230.0/23 5650 -96.243.232.0/23 5650 -96.243.238.0/23 5650 -96.243.240.0/23 5650 -96.243.244.0/23 5650 -96.243.252.0/22 5650 -96.244.0.0/15 701 -96.246.0.0/16 701 -96.247.0.0/17 5650 -96.247.128.0/18 701 -96.247.192.0/19 701 -96.247.240.0/20 701 -96.248.0.0/17 701 -96.248.192.0/19 701 -96.248.224.0/19 5650 -96.249.0.0/18 701 -96.249.128.0/19 701 -96.249.160.0/20 5650 -96.249.208.0/20 701 -96.249.224.0/19 701 -96.250.0.0/16 701 -96.251.4.0/23 5650 -96.251.20.0/22 5650 -96.251.38.0/23 5650 -96.251.40.0/23 5650 -96.251.44.0/23 5650 -96.251.56.0/23 5650 -96.251.64.0/23 5650 -96.251.70.0/23 5650 -96.251.72.0/23 5650 -96.251.76.0/23 5650 -96.251.96.0/23 5650 -96.251.134.0/23 5650 -96.251.140.0/23 5650 -96.251.148.0/23 5650 -96.251.158.0/23 5650 -96.251.168.0/23 5650 -96.251.178.0/23 5650 -96.251.190.0/23 5650 -96.251.202.0/23 5650 -96.252.0.0/17 701 -96.252.128.0/22 5650 -96.252.132.0/23 5650 -96.252.160.0/22 5650 -96.252.168.0/23 5650 -96.252.172.0/23 5650 -96.252.180.0/23 5650 -96.252.190.0/23 5650 -96.252.200.0/23 5650 -96.252.234.0/23 5650 -96.252.240.0/23 5650 -96.252.254.0/24 701 -96.252.255.0/24 5650 -96.253.0.0/17 701 -96.253.192.0/19 701 -96.253.224.0/20 701 -96.254.8.0/22 5650 -96.254.18.0/23 5650 -96.254.22.0/23 5650 -96.254.28.0/22 5650 -96.254.46.0/23 5650 -96.254.50.0/23 5650 -96.254.54.0/23 5650 -96.254.56.0/23 5650 -96.254.66.0/23 5650 -96.254.68.0/22 5650 -96.254.72.0/22 5650 -96.254.78.0/23 5650 -96.254.80.0/23 5650 -96.254.88.0/23 5650 -96.254.98.0/23 5650 -96.254.100.0/23 5650 -96.254.114.0/23 5650 -96.254.116.0/23 5650 -96.254.122.0/23 5650 -96.254.126.0/23 5650 -96.254.140.0/22 5650 -96.254.144.0/23 5650 -96.254.148.0/22 5650 -96.254.154.0/23 5650 -96.254.156.0/23 5650 -96.254.162.0/23 5650 -96.254.164.0/23 5650 -96.254.170.0/23 5650 -96.254.182.0/23 5650 -96.254.184.0/23 5650 -96.254.198.0/23 5650 -96.254.202.0/23 5650 -96.254.206.0/23 5650 -96.254.210.0/23 5650 -96.254.212.0/23 5650 -96.254.220.0/22 5650 -96.254.224.0/22 5650 -96.254.228.0/23 5650 -96.255.0.0/16 701 -97.0.0.0/20 22394 -97.0.16.0/20 6167 -97.0.32.0/20 6167 -97.0.48.0/20 22394 -97.0.64.0/18 22394 -97.0.128.0/17 22394 -97.1.0.0/16 22394 -97.2.0.0/16 22394 -97.3.0.0/17 22394 -97.3.128.0/18 22394 -97.3.192.0/18 6167 -97.4.0.0/18 6167 -97.4.64.0/18 22394 -97.4.128.0/17 22394 -97.5.0.0/16 22394 -97.6.0.0/15 22394 -97.8.0.0/17 22394 -97.8.128.0/17 6167 -97.9.0.0/16 6167 -97.10.0.0/17 6167 -97.10.128.0/17 22394 -97.11.0.0/16 6167 -97.12.0.0/15 6167 -97.14.0.0/16 22394 -97.15.0.0/18 22394 -97.15.64.0/20 6167 -97.15.80.0/20 22394 -97.15.96.0/20 6167 -97.15.112.0/20 22394 -97.15.128.0/17 22394 -97.16.0.0/18 22394 -97.16.64.0/20 22394 -97.16.80.0/20 6167 -97.16.96.0/20 22394 -97.16.112.0/20 6167 -97.16.128.0/17 22394 -97.17.0.0/17 22394 -97.17.128.0/17 6167 -97.18.0.0/15 22394 -97.20.0.0/17 22394 -97.20.128.0/18 22394 -97.20.192.0/18 6167 -97.21.0.0/16 22394 -97.22.0.0/18 22394 -97.22.64.0/19 6167 -97.22.96.0/19 22394 -97.22.128.0/18 6167 -97.22.192.0/18 22394 -97.23.0.0/16 22394 -97.24.0.0/15 22394 -97.26.0.0/16 22394 -97.27.0.0/16 6167 -97.28.0.0/18 22394 -97.28.64.0/18 6167 -97.28.128.0/17 6167 -97.29.0.0/16 6167 -97.30.0.0/18 22394 -97.30.64.0/18 6167 -97.30.128.0/17 6167 -97.31.0.0/16 6167 -97.32.0.0/18 6167 -97.32.64.0/18 22394 -97.32.128.0/18 6167 -97.32.192.0/18 22394 -97.33.0.0/19 22394 -97.33.32.0/19 6167 -97.33.64.0/18 22394 -97.33.128.0/17 22394 -97.34.0.0/15 22394 -97.36.0.0/18 6167 -97.36.64.0/18 22394 -97.36.128.0/19 22394 -97.36.160.0/19 6167 -97.36.192.0/19 22394 -97.36.224.0/22 6167 -97.36.228.0/22 22394 -97.36.232.0/21 22394 -97.36.240.0/22 22394 -97.36.244.0/22 6167 -97.36.248.0/21 22394 -97.37.0.0/19 6167 -97.37.32.0/19 22394 -97.37.64.0/18 6167 -97.37.128.0/17 6167 -97.38.0.0/15 6167 -97.40.0.0/15 22394 -97.42.0.0/18 6167 -97.42.64.0/18 22394 -97.42.128.0/17 22394 -97.43.0.0/16 22394 -97.44.0.0/18 22394 -97.44.64.0/18 6167 -97.44.128.0/18 6167 -97.44.192.0/18 22394 -97.45.0.0/16 22394 -97.46.0.0/16 22394 -97.47.0.0/18 6167 -97.47.64.0/18 22394 -97.47.128.0/17 6167 -97.48.0.0/19 22394 -97.48.32.0/21 22394 -97.48.40.0/21 6167 -97.48.48.0/20 22394 -97.48.64.0/18 22394 -97.48.128.0/21 6167 -97.48.136.0/21 22394 -97.48.144.0/20 6167 -97.48.160.0/21 6167 -97.48.168.0/21 22394 -97.48.176.0/20 22394 -97.48.192.0/19 22394 -97.48.224.0/21 22394 -97.48.232.0/21 6167 -97.48.240.0/21 6167 -97.48.248.0/21 22394 -97.49.0.0/18 22394 -97.49.64.0/20 22394 -97.49.80.0/21 22394 -97.49.88.0/21 6167 -97.49.96.0/21 6167 -97.49.104.0/21 22394 -97.49.112.0/20 22394 -97.49.128.0/20 6167 -97.49.144.0/21 22394 -97.49.152.0/21 6167 -97.49.160.0/19 6167 -97.49.192.0/18 6167 -97.50.0.0/15 6167 -97.52.0.0/14 6167 -97.56.0.0/13 6167 -97.64.1.0/24 26891 -97.64.2.0/24 26891 -97.64.4.0/24 26891 -97.64.16.0/20 25820 -97.64.32.0/20 25820 -97.64.48.0/24 209 -97.64.49.0/24 6461 -97.64.50.0/23 396253 -97.64.52.0/22 6461 -97.64.56.0/21 396253 -97.64.64.0/21 22006 -97.64.72.0/22 53435 -97.64.76.0/24 395647 -97.64.77.0/24 53828 -97.64.78.0/23 396320 -97.64.80.0/22 25820 -97.64.84.0/23 395647 -97.64.86.0/23 396538 -97.64.92.0/24 13887 -97.64.93.0/24 395647 -97.64.96.0/24 18672 -97.64.100.0/22 395647 -97.64.104.0/21 25820 -97.64.112.0/21 53435 -97.64.120.0/21 25820 -97.64.128.0/18 30036 -97.64.192.0/19 30036 -97.64.224.0/24 15309 -97.64.225.0/24 30036 -97.64.226.0/23 30036 -97.64.228.0/22 30036 -97.64.232.0/21 30036 -97.64.240.0/20 30036 -97.65.0.0/23 3549 -97.65.2.0/24 3549 -97.65.3.0/24 62802 -97.65.4.0/23 3549 -97.65.6.0/24 3549 -97.65.7.0/24 395955 -97.65.8.0/23 3549 -97.65.10.0/24 395572 -97.65.11.0/24 3549 -97.65.12.0/23 4598 -97.65.14.0/24 23509 -97.65.15.0/24 53626 -97.65.16.0/23 14652 -97.65.18.0/23 3549 -97.65.20.0/23 3549 -97.65.22.0/24 46672 -97.65.23.0/24 3549 -97.65.24.0/21 3549 -97.65.32.0/21 3549 -97.65.40.0/23 3549 -97.65.42.0/24 27414 -97.65.43.0/24 3549 -97.65.44.0/22 3549 -97.65.48.0/24 395533 -97.65.49.0/24 3549 -97.65.50.0/23 3549 -97.65.52.0/23 3549 -97.65.54.0/24 3549 -97.65.55.0/24 26489 -97.65.56.0/21 3549 -97.65.64.0/23 3549 -97.65.66.0/24 3549 -97.65.67.0/24 32899 -97.65.68.0/24 32899 -97.65.69.0/24 3549 -97.65.70.0/23 3549 -97.65.72.0/21 3549 -97.65.80.0/22 3549 -97.65.84.0/23 3549 -97.65.86.0/24 3549 -97.65.87.0/24 62802 -97.65.88.0/21 3549 -97.65.96.0/21 3549 -97.65.104.0/24 3549 -97.65.105.0/24 21928 -97.65.106.0/23 3549 -97.65.108.0/22 3549 -97.65.112.0/20 3549 -97.65.128.0/22 3549 -97.65.132.0/24 13378 -97.65.133.0/24 3549 -97.65.134.0/23 3549 -97.65.136.0/21 3549 -97.65.144.0/24 36736 -97.65.145.0/24 3549 -97.65.146.0/23 3549 -97.65.148.0/22 3549 -97.65.152.0/22 3549 -97.65.156.0/23 3549 -97.65.158.0/24 3549 -97.65.159.0/24 6318 -97.65.160.0/20 3549 -97.65.176.0/21 3549 -97.65.184.0/22 3549 -97.65.188.0/23 3549 -97.65.190.0/24 3549 -97.65.191.0/24 14279 -97.65.192.0/22 3549 -97.65.196.0/23 3549 -97.65.198.0/24 13915 -97.65.199.0/24 32670 -97.65.200.0/24 19233 -97.65.201.0/24 3549 -97.65.202.0/23 3549 -97.65.204.0/24 3549 -97.65.205.0/24 19233 -97.65.206.0/24 3549 -97.65.207.0/24 47089 -97.65.208.0/24 32411 -97.65.209.0/24 3549 -97.65.210.0/24 26219 -97.65.211.0/24 3549 -97.65.212.0/22 3549 -97.65.216.0/23 30305 -97.65.218.0/23 3549 -97.65.220.0/23 3549 -97.65.222.0/24 395176 -97.65.223.0/24 3549 -97.65.224.0/24 5777 -97.65.225.0/24 40638 -97.65.226.0/24 3549 -97.65.227.0/24 46283 -97.65.228.0/22 3549 -97.65.232.0/23 3549 -97.65.234.0/24 11962 -97.65.235.0/24 3549 -97.65.236.0/22 3549 -97.65.240.0/21 3549 -97.65.248.0/24 3549 -97.65.249.0/24 54321 -97.65.250.0/24 3549 -97.65.251.0/24 16511 -97.65.252.0/23 3549 -97.65.254.0/24 396155 -97.65.255.0/24 3549 -97.66.0.0/17 7029 -97.66.128.0/21 7029 -97.66.136.0/23 7029 -97.66.138.0/24 10843 -97.66.139.0/24 7029 -97.66.140.0/22 7029 -97.66.144.0/20 7029 -97.66.160.0/20 7029 -97.66.176.0/21 7029 -97.66.184.0/22 7029 -97.66.188.0/24 7029 -97.66.189.0/24 10843 -97.66.190.0/23 7029 -97.66.192.0/22 7029 -97.66.196.0/23 7029 -97.66.198.0/24 10843 -97.66.199.0/24 7029 -97.66.200.0/21 7029 -97.66.208.0/21 27338 -97.66.216.0/24 55142 -97.66.217.0/24 7029 -97.66.218.0/23 7029 -97.66.220.0/22 7029 -97.66.224.0/19 7029 -97.67.0.0/18 7029 -97.67.64.0/20 7029 -97.67.80.0/21 27338 -97.67.88.0/21 7029 -97.67.96.0/19 7029 -97.67.128.0/18 7029 -97.67.192.0/19 7029 -97.67.224.0/20 7029 -97.67.240.0/21 27338 -97.67.248.0/21 7029 -97.68.0.0/16 33363 -97.69.160.0/20 33363 -97.69.178.0/24 33363 -97.69.180.0/24 33363 -97.69.182.0/23 33363 -97.69.184.0/21 33363 -97.69.192.0/22 33363 -97.69.196.0/24 33363 -97.69.198.0/23 33363 -97.69.208.0/20 33363 -97.69.224.0/19 33363 -97.70.0.0/16 33363 -97.71.16.0/20 33363 -97.71.64.0/19 33363 -97.71.96.0/20 33363 -97.71.120.0/21 33363 -97.71.128.0/22 33363 -97.71.132.0/23 33363 -97.71.134.0/24 64284 -97.71.135.0/24 33363 -97.71.136.0/21 33363 -97.71.144.0/22 33363 -97.71.148.0/23 33363 -97.71.150.0/24 33363 -97.71.151.0/24 11505 -97.71.152.0/21 33363 -97.71.160.0/19 33363 -97.71.192.0/18 33363 -97.72.0.0/16 6621 -97.73.0.0/19 6621 -97.73.48.0/21 6621 -97.73.64.0/19 6621 -97.73.96.0/20 6621 -97.73.160.0/19 6621 -97.73.240.0/20 6621 -97.74.0.0/17 26496 -97.74.128.0/18 26496 -97.74.192.0/19 26496 -97.74.224.0/20 26496 -97.74.240.0/23 20773 -97.74.242.0/23 26496 -97.74.244.0/22 26496 -97.74.248.0/21 26496 -97.75.0.0/18 812 -97.75.64.0/19 11915 -97.75.96.0/20 11915 -97.75.112.0/21 11915 -97.75.121.0/24 11915 -97.75.122.0/23 11915 -97.75.124.0/22 11915 -97.75.128.0/19 22709 -97.75.160.0/20 29933 -97.75.176.0/21 29933 -97.75.184.0/23 29933 -97.75.186.0/24 29933 -97.75.187.0/24 40505 -97.75.188.0/22 29933 -97.75.192.0/19 15247 -97.75.225.0/24 11758 -97.75.226.0/23 209 -97.75.228.0/24 22773 -97.75.229.0/24 209 -97.75.230.0/23 20115 -97.75.232.0/24 4452 -97.75.233.0/24 209 -97.75.234.0/24 209 -97.75.235.0/24 7018 -97.75.236.0/23 4452 -97.75.238.0/24 14488 -97.75.239.0/24 11272 -97.75.241.0/24 55230 -97.75.242.0/24 55230 -97.75.243.0/24 13943 -97.75.244.0/24 55178 -97.75.245.0/24 27258 -97.75.248.0/24 27258 -97.75.250.0/24 14488 -97.75.252.0/24 14488 -97.75.254.0/24 14488 -97.75.255.0/24 33234 -97.76.0.0/17 33363 -97.76.128.0/18 33363 -97.76.192.0/20 33363 -97.76.208.0/24 32912 -97.76.209.0/24 33363 -97.76.210.0/23 33363 -97.76.212.0/22 33363 -97.76.216.0/21 33363 -97.76.224.0/20 33363 -97.76.240.0/21 33363 -97.76.248.0/22 33363 -97.76.252.0/24 33363 -97.76.253.0/24 13887 -97.76.254.0/23 33363 -97.77.0.0/19 11427 -97.77.32.0/20 11427 -97.77.48.0/21 11427 -97.77.56.0/23 11427 -97.77.58.0/24 46639 -97.77.59.0/24 11427 -97.77.60.0/22 11427 -97.77.64.0/20 11427 -97.77.80.0/22 11427 -97.77.84.0/23 11427 -97.77.86.0/24 11427 -97.77.87.0/24 53873 -97.77.88.0/24 26265 -97.77.89.0/24 11427 -97.77.90.0/23 11427 -97.77.92.0/22 11427 -97.77.96.0/19 11427 -97.77.128.0/19 11427 -97.77.160.0/20 11427 -97.77.176.0/22 11427 -97.77.180.0/23 11427 -97.77.182.0/24 14313 -97.77.183.0/24 11427 -97.77.184.0/21 11427 -97.77.192.0/20 11427 -97.77.208.0/21 11427 -97.77.216.0/22 11427 -97.77.220.0/24 11427 -97.77.221.0/24 23302 -97.77.222.0/23 11427 -97.77.224.0/19 11427 -97.78.0.0/16 33363 -97.79.0.0/17 33363 -97.79.128.0/20 11427 -97.79.144.0/21 11427 -97.79.152.0/24 54006 -97.79.153.0/24 11427 -97.79.154.0/24 11427 -97.79.155.0/24 53396 -97.79.156.0/23 11427 -97.79.158.0/23 53759 -97.79.160.0/19 11427 -97.79.192.0/20 11427 -97.79.208.0/21 11427 -97.79.216.0/22 11427 -97.79.220.0/24 393443 -97.79.221.0/24 11427 -97.79.222.0/23 11427 -97.79.224.0/21 11427 -97.79.232.0/22 11427 -97.79.236.0/22 46549 -97.79.240.0/20 11427 -97.80.0.0/15 20115 -97.82.0.0/20 20115 -97.82.16.0/23 20115 -97.82.18.0/24 62798 -97.82.19.0/24 20115 -97.82.20.0/22 20115 -97.82.24.0/21 20115 -97.82.32.0/19 20115 -97.82.64.0/20 20115 -97.82.82.0/23 20115 -97.82.84.0/22 20115 -97.82.88.0/21 20115 -97.82.96.0/19 20115 -97.82.128.0/17 20115 -97.83.0.0/16 20115 -97.84.0.0/15 20115 -97.86.0.0/17 20115 -97.86.128.0/19 20115 -97.86.160.0/21 20115 -97.86.168.0/24 396406 -97.86.169.0/24 20115 -97.86.170.0/24 396406 -97.86.171.0/24 20115 -97.86.172.0/22 20115 -97.86.176.0/20 20115 -97.86.192.0/18 20115 -97.87.0.0/20 20115 -97.87.16.0/24 20115 -97.87.17.0/24 393389 -97.87.18.0/23 20115 -97.87.20.0/22 20115 -97.87.24.0/21 20115 -97.87.32.0/19 20115 -97.87.64.0/18 20115 -97.87.128.0/17 20115 -97.88.0.0/15 20115 -97.90.0.0/18 20115 -97.90.64.0/19 20115 -97.90.96.0/21 20115 -97.90.104.0/22 20115 -97.90.108.0/23 20115 -97.90.110.0/24 20115 -97.90.111.0/24 19115 -97.90.112.0/20 20115 -97.90.128.0/17 20115 -97.91.0.0/16 20115 -97.92.0.0/18 20115 -97.92.64.0/19 20115 -97.92.96.0/20 20115 -97.92.128.0/17 20115 -97.93.0.0/16 20115 -97.94.0.0/17 20115 -97.94.128.0/18 20115 -97.94.192.0/19 20115 -97.94.224.0/20 20115 -97.94.240.0/21 20115 -97.95.0.0/16 20115 -97.96.0.0/15 33363 -97.98.0.0/15 11427 -97.100.0.0/14 33363 -97.104.0.0/16 33363 -97.105.0.0/17 11427 -97.105.128.0/24 18961 -97.105.129.0/24 11427 -97.105.130.0/23 11427 -97.105.132.0/22 11427 -97.105.136.0/21 11427 -97.105.144.0/22 11427 -97.105.148.0/24 395066 -97.105.149.0/24 11427 -97.105.150.0/23 11427 -97.105.152.0/21 11427 -97.105.160.0/19 11427 -97.105.192.0/18 11427 -97.106.0.0/16 33363 -97.107.0.0/20 19366 -97.107.16.0/20 12154 -97.107.32.0/20 30269 -97.107.48.0/20 29953 -97.107.64.0/23 13555 -97.107.66.0/23 393436 -97.107.68.0/23 393436 -97.107.70.0/24 39990 -97.107.71.0/24 13555 -97.107.72.0/23 36513 -97.107.74.0/23 13555 -97.107.76.0/22 13555 -97.107.80.0/20 13728 -97.107.96.0/20 12208 -97.107.112.0/21 13649 -97.107.120.0/22 13649 -97.107.124.0/23 22065 -97.107.126.0/23 13649 -97.107.128.0/20 63949 -97.107.144.0/20 11847 -97.107.160.0/22 46887 -97.107.164.0/24 395252 -97.107.165.0/24 46887 -97.107.166.0/24 16657 -97.107.167.0/24 32213 -97.107.168.0/24 53326 -97.107.169.0/24 46887 -97.107.170.0/23 46887 -97.107.172.0/22 46887 -97.107.176.0/20 6391 -97.107.192.0/22 27005 -97.107.196.0/22 13807 -97.107.200.0/21 54936 -97.107.208.0/20 30236 -97.107.224.0/22 62593 -97.107.229.0/24 395347 -97.107.230.0/24 209 -97.107.231.0/24 46881 -97.107.232.0/24 40322 -97.107.236.0/22 46657 -97.107.241.0/24 31844 -97.112.0.0/12 209 -97.128.0.0/9 6167 -98.0.0.0/17 11351 -98.0.128.0/20 12271 -98.0.144.0/21 12271 -98.0.152.0/23 12271 -98.0.154.0/24 395060 -98.0.155.0/24 12271 -98.0.156.0/22 12271 -98.0.160.0/19 12271 -98.0.192.0/19 12271 -98.0.224.0/21 12271 -98.0.232.0/22 12271 -98.0.236.0/24 397352 -98.0.237.0/24 12271 -98.0.238.0/23 12271 -98.0.240.0/20 12271 -98.1.0.0/16 11351 -98.2.0.0/15 11351 -98.4.0.0/15 11351 -98.6.0.0/18 11427 -98.6.64.0/19 11427 -98.6.96.0/21 11427 -98.6.104.0/24 17297 -98.6.105.0/24 11427 -98.6.106.0/23 11427 -98.6.108.0/22 11427 -98.6.112.0/20 11427 -98.6.128.0/17 11427 -98.7.0.0/17 12271 -98.7.128.0/18 40294 -98.7.192.0/18 12271 -98.8.28.0/23 19115 -98.8.32.0/21 19115 -98.8.40.0/21 40294 -98.8.54.0/23 19115 -98.8.56.0/21 40294 -98.8.192.0/19 19115 -98.8.240.0/20 19115 -98.9.0.0/20 19115 -98.10.0.0/15 11351 -98.12.0.0/16 12271 -98.13.0.0/17 11351 -98.13.128.0/17 12271 -98.14.0.0/15 12271 -98.16.0.0/18 7029 -98.16.64.0/19 7029 -98.16.96.0/20 7029 -98.16.112.0/21 7029 -98.16.120.0/22 54142 -98.16.124.0/22 7029 -98.16.128.0/19 7029 -98.16.160.0/22 7029 -98.16.164.0/24 393652 -98.16.165.0/24 7029 -98.16.166.0/23 7029 -98.16.168.0/21 7029 -98.16.176.0/20 7029 -98.16.192.0/18 7029 -98.17.0.0/17 7029 -98.17.128.0/18 7029 -98.17.192.0/21 7029 -98.17.200.0/23 7029 -98.17.202.0/23 11349 -98.17.204.0/22 7029 -98.17.208.0/20 7029 -98.17.224.0/19 7029 -98.18.0.0/15 7029 -98.20.0.0/15 7029 -98.22.0.0/16 7029 -98.23.0.0/18 7029 -98.23.64.0/19 7029 -98.23.96.0/20 7029 -98.23.112.0/22 7029 -98.23.116.0/24 7354 -98.23.117.0/24 7029 -98.23.118.0/23 7029 -98.23.120.0/21 7029 -98.23.128.0/17 7029 -98.24.0.0/15 11426 -98.26.0.0/16 11426 -98.27.0.0/18 11426 -98.27.64.0/18 10796 -98.27.128.0/17 10796 -98.28.0.0/14 10796 -98.32.0.0/11 7922 -98.68.0.0/17 7018 -98.68.128.0/17 6389 -98.69.0.0/19 6389 -98.69.32.0/19 7018 -98.69.64.0/18 6389 -98.69.128.0/17 7018 -98.72.0.0/15 7018 -98.74.0.0/16 6389 -98.75.0.0/19 6389 -98.75.32.0/19 7018 -98.75.64.0/20 7018 -98.75.80.0/20 6389 -98.75.96.0/20 7018 -98.75.112.0/20 6389 -98.75.128.0/19 7018 -98.75.160.0/20 7018 -98.75.176.0/20 6389 -98.75.192.0/18 7018 -98.76.0.0/20 7018 -98.76.16.0/20 6389 -98.76.32.0/19 6389 -98.76.64.0/18 6389 -98.76.128.0/18 6389 -98.76.192.0/19 7018 -98.76.224.0/19 6389 -98.77.0.0/16 7018 -98.78.0.0/18 6389 -98.78.64.0/20 6389 -98.78.80.0/21 36329 -98.78.88.0/23 6389 -98.78.90.0/24 6389 -98.78.91.0/24 36329 -98.78.92.0/22 6389 -98.78.96.0/19 6389 -98.78.128.0/17 6389 -98.79.0.0/18 6389 -98.79.64.0/20 6389 -98.79.80.0/24 10774 -98.79.81.0/24 6389 -98.79.82.0/24 6389 -98.79.83.0/24 8103 -98.79.84.0/22 10774 -98.79.88.0/21 6389 -98.79.96.0/19 6389 -98.79.128.0/17 6389 -98.96.0.0/15 7018 -98.98.0.0/16 7018 -98.99.0.0/23 62566 -98.99.2.0/23 7018 -98.99.4.0/22 7018 -98.99.8.0/21 7018 -98.99.16.0/20 7018 -98.99.32.0/19 7018 -98.99.64.0/18 7018 -98.99.128.0/18 7018 -98.99.192.0/19 7018 -98.99.224.0/21 7018 -98.99.232.0/22 7018 -98.99.236.0/22 62566 -98.99.240.0/20 62566 -98.100.0.0/20 10796 -98.100.16.0/22 33363 -98.100.20.0/22 10796 -98.100.24.0/21 10796 -98.100.32.0/19 10796 -98.100.64.0/20 10796 -98.100.80.0/24 14945 -98.100.81.0/24 16617 -98.100.82.0/23 10796 -98.100.84.0/22 10796 -98.100.88.0/21 10796 -98.100.96.0/21 11427 -98.100.104.0/23 11427 -98.100.106.0/24 11427 -98.100.107.0/24 46607 -98.100.108.0/22 11427 -98.100.112.0/23 11427 -98.100.114.0/24 16428 -98.100.115.0/24 11427 -98.100.116.0/22 11427 -98.100.120.0/22 11427 -98.100.124.0/23 26324 -98.100.126.0/23 11427 -98.100.128.0/20 10796 -98.100.144.0/24 10796 -98.100.145.0/24 46778 -98.100.146.0/23 10796 -98.100.148.0/24 10796 -98.100.149.0/24 1437 -98.100.150.0/23 10796 -98.100.152.0/21 10796 -98.100.160.0/24 395063 -98.100.161.0/24 10796 -98.100.162.0/23 10796 -98.100.164.0/22 10796 -98.100.168.0/21 10796 -98.100.176.0/21 10796 -98.100.184.0/22 10796 -98.100.188.0/23 10796 -98.100.190.0/24 10969 -98.100.191.0/24 10796 -98.100.192.0/20 10796 -98.100.208.0/24 46810 -98.100.209.0/24 10796 -98.100.210.0/24 10796 -98.100.211.0/24 10634 -98.100.212.0/22 10796 -98.100.216.0/21 10796 -98.100.224.0/22 10796 -98.100.228.0/24 396383 -98.100.229.0/24 10796 -98.100.230.0/23 10796 -98.100.232.0/21 10796 -98.100.240.0/20 10796 -98.101.0.0/18 11426 -98.101.64.0/19 11426 -98.101.96.0/20 11426 -98.101.112.0/23 11426 -98.101.114.0/24 27394 -98.101.115.0/24 11426 -98.101.116.0/22 11426 -98.101.120.0/21 11426 -98.101.128.0/18 11426 -98.101.192.0/21 11426 -98.101.200.0/23 11426 -98.101.202.0/24 11426 -98.101.203.0/24 20261 -98.101.204.0/22 11426 -98.101.208.0/20 11426 -98.101.224.0/19 11426 -98.102.0.0/17 10796 -98.102.128.0/20 10796 -98.102.144.0/21 10796 -98.102.152.0/24 30334 -98.102.153.0/24 10796 -98.102.154.0/23 10796 -98.102.156.0/22 10796 -98.102.160.0/21 10796 -98.102.168.0/22 10796 -98.102.172.0/23 10796 -98.102.174.0/24 33486 -98.102.175.0/24 10796 -98.102.176.0/20 10796 -98.102.192.0/19 10796 -98.102.224.0/20 10796 -98.102.240.0/23 10796 -98.102.242.0/24 10796 -98.102.243.0/24 25918 -98.102.244.0/22 10796 -98.102.248.0/21 10796 -98.103.0.0/19 10796 -98.103.32.0/20 10796 -98.103.48.0/23 10796 -98.103.50.0/24 15285 -98.103.51.0/24 10796 -98.103.52.0/22 10796 -98.103.56.0/21 10796 -98.103.64.0/18 10796 -98.103.128.0/19 10796 -98.103.160.0/23 10796 -98.103.162.0/24 10796 -98.103.163.0/24 54974 -98.103.164.0/22 10796 -98.103.168.0/21 10796 -98.103.176.0/20 10796 -98.103.192.0/18 10796 -98.104.0.0/14 6167 -98.108.192.0/18 5650 -98.109.0.0/16 701 -98.110.0.0/16 701 -98.111.0.0/18 701 -98.111.96.0/19 701 -98.111.128.0/17 701 -98.112.22.0/23 5650 -98.112.34.0/23 5650 -98.112.44.0/23 5650 -98.112.48.0/23 5650 -98.112.58.0/23 5650 -98.112.70.0/23 5650 -98.112.72.0/23 5650 -98.112.80.0/23 5650 -98.112.84.0/22 5650 -98.112.90.0/23 5650 -98.112.92.0/23 5650 -98.112.108.0/23 5650 -98.112.112.0/23 5650 -98.112.116.0/23 5650 -98.112.120.0/23 5650 -98.112.124.0/23 5650 -98.112.134.0/23 5650 -98.112.136.0/23 5650 -98.112.140.0/23 5650 -98.112.144.0/23 5650 -98.112.148.0/23 5650 -98.112.154.0/23 5650 -98.112.162.0/23 5650 -98.112.166.0/23 5650 -98.112.184.0/23 5650 -98.112.188.0/23 5650 -98.112.194.0/23 5650 -98.112.196.0/22 5650 -98.112.204.0/23 5650 -98.112.210.0/23 5650 -98.113.0.0/16 701 -98.114.0.0/15 701 -98.116.0.0/16 701 -98.117.0.0/18 701 -98.117.64.0/19 701 -98.117.160.0/19 701 -98.117.192.0/18 701 -98.118.0.0/17 701 -98.118.128.0/18 701 -98.118.192.0/19 701 -98.118.240.0/20 701 -98.119.12.0/22 5650 -98.119.18.0/23 5650 -98.119.30.0/23 5650 -98.119.44.0/23 5650 -98.119.58.0/23 5650 -98.119.60.0/23 5650 -98.119.68.0/23 5650 -98.119.104.0/23 5650 -98.119.110.0/23 5650 -98.119.120.0/23 5650 -98.119.126.0/23 5650 -98.119.130.0/23 5650 -98.119.134.0/23 5650 -98.119.140.0/23 5650 -98.119.144.0/23 5650 -98.119.176.0/23 5650 -98.119.212.0/23 5650 -98.119.218.0/23 5650 -98.119.222.0/23 5650 -98.119.226.0/23 5650 -98.120.0.0/18 16787 -98.120.100.0/24 7843 -98.120.101.0/24 16787 -98.120.104.0/22 16787 -98.120.108.0/24 11427 -98.120.109.0/24 10796 -98.120.110.0/24 7843 -98.120.111.0/24 11427 -98.120.112.0/20 10796 -98.120.128.0/17 10796 -98.121.0.0/16 11426 -98.122.0.0/16 11426 -98.123.0.0/16 10796 -98.124.0.0/18 32881 -98.124.64.0/18 16863 -98.124.128.0/21 3257 -98.124.136.0/24 3257 -98.124.137.0/24 13524 -98.124.138.0/23 3257 -98.124.140.0/22 3257 -98.124.144.0/23 3257 -98.124.146.0/24 3257 -98.124.147.0/24 46944 -98.124.148.0/23 3257 -98.124.150.0/24 3257 -98.124.151.0/24 46944 -98.124.152.0/23 3257 -98.124.154.0/23 19222 -98.124.156.0/22 3257 -98.124.160.0/21 3257 -98.124.168.0/23 3257 -98.124.170.0/24 3561 -98.124.171.0/24 29784 -98.124.172.0/22 3257 -98.124.176.0/22 3257 -98.124.180.0/24 3257 -98.124.181.0/24 18590 -98.124.182.0/23 3257 -98.124.184.0/23 3257 -98.124.186.0/24 53428 -98.124.187.0/24 3257 -98.124.188.0/24 30006 -98.124.189.0/24 3257 -98.124.190.0/23 3257 -98.124.192.0/19 21740 -98.124.224.0/21 21740 -98.124.232.0/24 394497 -98.124.233.0/24 21740 -98.124.234.0/23 21740 -98.124.236.0/22 21740 -98.124.240.0/20 21740 -98.125.0.0/19 22561 -98.125.32.0/22 209 -98.125.36.0/23 209 -98.125.38.0/24 209 -98.125.39.0/24 22561 -98.125.40.0/21 209 -98.125.48.0/20 22561 -98.125.64.0/22 22561 -98.125.68.0/22 209 -98.125.72.0/21 209 -98.125.80.0/20 22561 -98.125.96.0/20 209 -98.125.112.0/21 22561 -98.125.120.0/22 209 -98.125.124.0/22 22561 -98.125.128.0/21 22561 -98.125.136.0/22 22561 -98.125.140.0/23 209 -98.125.142.0/23 22561 -98.125.144.0/22 22561 -98.125.148.0/22 209 -98.125.152.0/21 209 -98.125.160.0/22 209 -98.125.164.0/22 22561 -98.125.168.0/21 209 -98.125.176.0/20 209 -98.125.192.0/22 209 -98.125.196.0/22 22561 -98.125.200.0/22 22561 -98.125.204.0/22 209 -98.125.208.0/21 22561 -98.125.216.0/22 209 -98.125.220.0/24 209 -98.125.221.0/24 22561 -98.125.222.0/23 22561 -98.125.224.0/20 209 -98.125.240.0/21 209 -98.125.248.0/22 209 -98.125.252.0/22 22561 -98.126.0.0/16 35908 -98.127.0.0/16 33588 -98.128.0.0/16 8473 -98.129.0.0/17 33070 -98.129.128.0/18 33070 -98.129.192.0/19 33070 -98.129.224.0/22 33070 -98.129.228.0/24 33070 -98.129.229.0/24 53824 -98.129.230.0/23 33070 -98.129.232.0/21 33070 -98.129.240.0/20 33070 -98.130.0.0/15 46606 -98.136.96.0/22 36646 -98.136.100.0/22 36647 -98.136.104.0/22 36646 -98.136.108.0/22 26101 -98.136.112.0/22 36647 -98.136.116.0/22 36646 -98.136.120.0/21 36646 -98.136.128.0/17 36647 -98.137.0.0/18 36647 -98.137.64.0/20 36647 -98.137.80.0/21 36646 -98.137.96.0/19 36647 -98.137.138.0/23 7233 -98.137.154.0/23 36646 -98.137.156.0/22 36646 -98.137.160.0/19 36647 -98.137.192.0/21 26101 -98.137.212.0/22 36647 -98.137.216.0/21 36646 -98.137.224.0/19 36647 -98.138.0.0/16 36646 -98.139.8.0/21 26101 -98.139.16.0/20 26101 -98.139.32.0/20 26101 -98.139.108.0/22 36646 -98.139.112.0/21 36647 -98.139.120.0/22 36647 -98.139.124.0/22 26101 -98.139.128.0/17 26101 -98.140.0.0/16 7029 -98.141.0.0/17 7029 -98.141.128.0/18 7029 -98.141.192.0/21 7029 -98.141.200.0/22 7029 -98.141.204.0/23 7029 -98.141.206.0/24 7029 -98.141.207.0/24 55104 -98.141.208.0/20 7029 -98.141.224.0/19 7029 -98.142.0.0/20 40824 -98.142.16.0/20 22402 -98.142.32.0/24 53607 -98.142.33.0/24 25899 -98.142.34.0/24 63386 -98.142.35.0/24 25899 -98.142.36.0/22 25899 -98.142.40.0/24 25899 -98.142.41.0/24 55246 -98.142.42.0/23 25899 -98.142.44.0/23 55246 -98.142.46.0/24 25899 -98.142.47.0/24 25961 -98.142.48.0/21 11492 -98.142.56.0/22 11492 -98.142.60.0/23 18812 -98.142.64.0/20 30029 -98.142.80.0/20 19019 -98.142.96.0/20 33182 -98.142.112.0/23 25816 -98.142.115.0/24 25816 -98.142.124.0/23 46329 -98.142.126.0/23 6461 -98.142.128.0/20 25820 -98.142.144.0/20 29863 -98.142.160.0/21 10883 -98.142.176.0/24 14618 -98.142.182.0/23 396970 -98.142.184.0/24 398138 -98.142.185.0/24 395009 -98.142.186.0/23 397081 -98.142.189.0/24 394688 -98.142.192.0/20 16609 -98.142.208.0/20 46562 -98.142.224.0/20 40260 -98.142.240.0/20 30407 -98.143.0.0/20 36545 -98.143.16.0/22 54207 -98.143.24.0/23 63152 -98.143.32.0/24 12189 -98.143.33.0/24 11425 -98.143.34.0/23 11425 -98.143.36.0/22 11425 -98.143.40.0/21 11425 -98.143.48.0/20 26166 -98.143.64.0/20 7057 -98.143.80.0/20 19171 -98.143.96.0/24 55053 -98.143.97.0/24 36493 -98.143.98.0/23 36493 -98.143.100.0/22 36493 -98.143.104.0/21 36493 -98.143.112.0/21 209 -98.143.120.0/22 209 -98.143.124.0/23 209 -98.143.126.0/24 209 -98.143.127.0/24 10835 -98.143.128.0/23 53455 -98.143.142.0/23 53455 -98.143.144.0/22 8100 -98.143.148.0/24 8100 -98.143.149.0/24 46446 -98.143.150.0/23 46446 -98.143.152.0/23 46446 -98.143.154.0/24 46446 -98.143.155.0/24 8100 -98.143.156.0/23 46446 -98.143.158.0/23 8100 -98.143.160.0/20 17184 -98.143.176.0/21 23481 -98.143.208.0/20 22639 -98.143.224.0/20 11796 -98.143.240.0/20 3367 -98.144.0.0/16 10796 -98.145.0.0/19 20001 -98.145.32.0/21 19115 -98.145.40.0/21 20001 -98.145.48.0/20 20001 -98.145.64.0/19 10838 -98.145.96.0/20 10838 -98.145.112.0/21 20001 -98.145.120.0/21 10838 -98.145.128.0/18 10838 -98.145.192.0/18 20001 -98.146.0.0/16 10838 -98.147.0.0/16 20001 -98.148.0.0/14 20001 -98.152.0.0/16 20001 -98.153.0.0/17 20001 -98.153.128.0/18 20001 -98.153.192.0/24 33134 -98.153.193.0/24 20001 -98.153.194.0/23 20001 -98.153.196.0/22 20001 -98.153.200.0/21 20001 -98.153.208.0/20 20001 -98.153.224.0/19 20001 -98.154.0.0/15 20001 -98.156.0.0/16 11427 -98.157.0.0/21 11426 -98.157.8.0/23 11426 -98.157.10.0/24 11426 -98.157.12.0/22 11426 -98.157.16.0/22 11426 -98.157.20.0/23 11426 -98.157.23.0/24 11955 -98.157.24.0/21 11426 -98.157.32.0/19 10796 -98.157.64.0/18 10796 -98.157.128.0/20 20001 -98.157.144.0/20 10796 -98.157.160.0/20 11427 -98.157.176.0/21 10838 -98.157.184.0/21 10796 -98.157.192.0/18 10796 -98.158.0.0/23 11404 -98.158.2.0/23 54858 -98.158.4.0/23 11404 -98.158.6.0/23 54858 -98.158.8.0/21 11404 -98.158.32.0/20 17306 -98.158.48.0/23 53412 -98.158.50.0/23 23149 -98.158.52.0/22 53412 -98.158.56.0/23 54369 -98.158.58.0/23 394162 -98.158.60.0/22 54369 -98.158.64.0/21 46231 -98.158.72.0/24 46231 -98.158.73.0/24 26166 -98.158.74.0/23 46231 -98.158.76.0/22 46231 -98.158.80.0/22 27272 -98.158.84.0/23 30715 -98.158.86.0/23 27272 -98.158.88.0/23 36031 -98.158.90.0/24 30715 -98.158.91.0/24 12188 -98.158.92.0/23 27272 -98.158.94.0/23 36031 -98.158.96.0/20 41095 -98.158.112.0/20 12989 -98.158.128.0/20 19842 -98.158.144.0/20 32743 -98.158.160.0/20 29819 -98.158.176.0/20 32780 -98.158.192.0/21 13897 -98.158.201.0/24 46617 -98.158.206.0/23 13897 -98.158.208.0/20 7871 -98.158.224.0/20 15083 -98.158.240.0/20 27471 -98.159.4.0/23 19555 -98.159.7.0/24 19555 -98.159.8.0/23 19555 -98.159.12.0/24 19555 -98.159.14.0/24 19555 -98.159.16.0/20 21725 -98.159.32.0/23 23498 -98.159.34.0/23 12025 -98.159.36.0/23 12025 -98.159.38.0/24 12025 -98.159.39.0/24 53559 -98.159.40.0/22 12025 -98.159.44.0/23 12025 -98.159.46.0/24 395766 -98.159.47.0/24 12025 -98.159.48.0/20 1970 -98.159.64.0/20 36146 -98.159.80.0/20 23316 -98.159.96.0/23 55720 -98.159.98.0/24 54288 -98.159.99.0/24 53850 -98.159.100.0/23 26484 -98.159.102.0/24 40065 -98.159.103.0/24 55720 -98.159.104.0/24 55720 -98.159.106.0/24 55720 -98.159.107.0/24 53850 -98.159.108.0/24 40065 -98.159.109.0/24 55720 -98.159.110.0/24 53850 -98.159.120.0/21 393238 -98.159.128.0/20 4922 -98.159.144.0/21 14127 -98.159.160.0/23 27648 -98.159.162.0/24 267923 -98.159.163.0/24 27648 -98.159.164.0/22 27648 -98.159.168.0/21 27648 -98.159.176.0/20 13576 -98.159.192.0/20 26809 -98.159.208.0/20 14477 -98.159.224.0/21 12025 -98.159.232.0/24 6327 -98.159.234.0/24 397072 -98.159.235.0/24 12025 -98.159.236.0/23 12025 -98.159.238.0/24 12025 -98.159.239.0/24 53559 -98.159.240.0/20 11647 -98.160.0.0/15 22773 -98.162.0.0/16 22773 -98.163.0.0/19 22773 -98.163.32.0/20 22773 -98.163.48.0/21 22773 -98.163.56.0/22 22773 -98.163.60.0/23 22773 -98.163.62.0/24 394865 -98.163.63.0/24 394693 -98.163.64.0/18 22773 -98.163.128.0/17 22773 -98.164.0.0/19 22773 -98.164.32.0/20 22773 -98.164.48.0/21 22773 -98.164.56.0/22 22773 -98.164.60.0/24 33347 -98.164.61.0/24 22773 -98.164.62.0/23 22773 -98.164.64.0/18 22773 -98.164.128.0/17 22773 -98.165.0.0/16 22773 -98.166.0.0/15 22773 -98.168.0.0/15 22773 -98.170.0.0/16 22773 -98.171.0.0/17 22773 -98.171.128.0/18 22773 -98.171.192.0/19 22773 -98.171.224.0/22 22773 -98.171.228.0/23 22773 -98.171.230.0/23 394468 -98.171.232.0/21 22773 -98.171.240.0/22 22773 -98.171.244.0/24 22773 -98.171.245.0/24 32969 -98.171.246.0/23 22773 -98.171.248.0/21 22773 -98.172.0.0/16 22773 -98.173.0.0/18 22773 -98.173.64.0/20 22773 -98.173.80.0/20 62957 -98.173.96.0/21 62957 -98.173.104.0/24 394219 -98.173.105.0/24 22773 -98.173.106.0/23 22773 -98.173.108.0/23 22773 -98.173.110.0/24 62957 -98.173.111.0/24 22773 -98.173.112.0/20 22773 -98.173.128.0/20 22773 -98.173.144.0/21 22773 -98.173.152.0/22 22773 -98.173.156.0/24 393547 -98.173.157.0/24 22773 -98.173.158.0/23 22773 -98.173.160.0/19 22773 -98.173.192.0/18 22773 -98.174.0.0/20 22773 -98.174.16.0/22 22773 -98.174.20.0/24 22773 -98.174.21.0/24 40651 -98.174.22.0/23 22773 -98.174.24.0/23 40905 -98.174.26.0/23 22773 -98.174.28.0/22 22773 -98.174.32.0/19 22773 -98.174.64.0/18 22773 -98.174.128.0/17 22773 -98.175.0.0/18 22773 -98.175.64.0/21 22773 -98.175.72.0/22 22773 -98.175.76.0/24 22773 -98.175.77.0/24 11021 -98.175.78.0/24 393764 -98.175.79.0/24 22773 -98.175.80.0/20 22773 -98.175.96.0/19 22773 -98.175.128.0/18 22773 -98.175.192.0/19 22773 -98.175.224.0/23 22773 -98.175.226.0/24 22773 -98.175.227.0/24 30604 -98.175.228.0/23 22773 -98.175.230.0/24 46249 -98.175.231.0/24 22773 -98.175.232.0/21 22773 -98.175.240.0/20 22773 -98.176.0.0/15 22773 -98.178.0.0/16 22773 -98.179.0.0/17 22773 -98.179.128.0/24 22773 -98.179.129.0/24 53372 -98.179.130.0/23 22773 -98.179.132.0/22 22773 -98.179.136.0/21 22773 -98.179.144.0/21 22773 -98.179.152.0/22 22773 -98.179.156.0/23 22773 -98.179.158.0/23 53760 -98.179.160.0/19 22773 -98.179.192.0/18 22773 -98.180.0.0/15 22773 -98.182.0.0/18 22773 -98.182.64.0/19 22773 -98.182.96.0/21 22773 -98.182.104.0/24 22773 -98.182.105.0/24 23172 -98.182.106.0/23 22773 -98.182.108.0/22 22773 -98.182.112.0/20 22773 -98.182.128.0/17 22773 -98.183.0.0/16 22773 -98.184.0.0/16 22773 -98.185.0.0/21 22773 -98.185.8.0/23 22773 -98.185.10.0/24 22773 -98.185.11.0/24 396179 -98.185.12.0/22 22773 -98.185.16.0/20 22773 -98.185.32.0/19 22773 -98.185.64.0/18 22773 -98.185.128.0/17 22773 -98.186.0.0/17 22773 -98.186.128.0/20 22773 -98.186.144.0/21 22773 -98.186.152.0/22 22773 -98.186.156.0/23 22773 -98.186.158.0/23 394865 -98.186.160.0/19 22773 -98.186.192.0/18 22773 -98.187.0.0/23 22773 -98.187.2.0/24 22773 -98.187.3.0/24 1605 -98.187.4.0/22 22773 -98.187.8.0/21 22773 -98.187.16.0/20 22773 -98.187.32.0/19 22773 -98.187.64.0/18 22773 -98.187.128.0/17 22773 -98.188.0.0/18 22773 -98.188.64.0/19 22773 -98.188.96.0/20 22773 -98.188.112.0/23 53703 -98.188.114.0/24 22773 -98.188.115.0/24 18700 -98.188.116.0/22 22773 -98.188.120.0/23 54945 -98.188.122.0/24 54945 -98.188.123.0/24 22898 -98.188.124.0/22 22898 -98.188.128.0/18 22773 -98.188.192.0/23 22773 -98.188.194.0/24 22773 -98.188.195.0/24 47025 -98.188.196.0/22 22773 -98.188.200.0/21 22773 -98.188.208.0/20 22773 -98.188.224.0/20 22773 -98.188.240.0/21 22773 -98.188.248.0/22 22773 -98.188.252.0/24 22773 -98.188.253.0/24 12219 -98.188.254.0/23 22773 -98.189.0.0/16 22773 -98.190.0.0/19 22773 -98.190.32.0/21 22773 -98.190.40.0/22 22773 -98.190.44.0/23 22773 -98.190.46.0/24 22773 -98.190.47.0/24 397155 -98.190.48.0/20 22773 -98.190.64.0/18 22773 -98.190.128.0/18 22773 -98.190.192.0/22 22773 -98.190.196.0/23 393895 -98.190.198.0/23 22773 -98.190.200.0/21 22773 -98.190.208.0/20 22773 -98.190.224.0/24 46603 -98.190.225.0/24 22773 -98.190.226.0/23 22773 -98.190.228.0/22 22773 -98.190.232.0/22 22773 -98.190.236.0/24 22773 -98.190.237.0/24 53703 -98.190.238.0/23 22773 -98.190.240.0/20 22773 -98.191.0.0/20 22773 -98.191.16.0/21 22773 -98.191.24.0/24 22773 -98.191.25.0/24 35869 -98.191.26.0/23 22773 -98.191.28.0/22 22773 -98.191.32.0/19 22773 -98.191.64.0/18 22773 -98.191.128.0/18 22773 -98.191.192.0/19 22773 -98.191.224.0/20 22773 -98.191.240.0/21 22773 -98.191.248.0/22 22898 -98.191.252.0/22 22773 -98.192.0.0/13 7922 -98.200.0.0/14 7922 -98.204.0.0/15 7922 -98.206.0.0/16 7922 -98.207.0.0/17 7922 -98.207.128.0/19 7922 -98.207.160.0/20 7922 -98.207.176.0/22 7922 -98.207.180.0/23 7922 -98.207.182.0/24 7922 -98.207.183.0/25 7922 -98.207.183.128/27 7922 -98.207.183.160/29 7922 -98.207.183.168/30 7922 -98.207.183.172/31 7922 -98.207.183.175/32 7922 -98.207.183.176/28 7922 -98.207.183.192/26 7922 -98.207.184.0/21 7922 -98.207.192.0/18 7922 -98.208.0.0/12 7922 -98.224.0.0/11 7922 -99.0.0.0/18 7018 -99.0.64.0/19 7018 -99.0.96.0/23 7018 -99.0.98.0/24 5105 -99.0.99.0/24 7018 -99.0.100.0/22 7018 -99.0.104.0/21 7018 -99.0.112.0/20 7018 -99.0.128.0/17 7018 -99.1.0.0/18 7018 -99.1.64.0/21 7018 -99.1.72.0/24 7018 -99.1.73.0/24 5105 -99.1.74.0/23 7018 -99.1.76.0/22 7018 -99.1.80.0/20 7018 -99.1.96.0/19 7018 -99.1.128.0/17 7018 -99.2.0.0/15 7018 -99.4.0.0/14 7018 -99.8.0.0/15 7018 -99.10.64.0/18 7018 -99.10.128.0/17 7018 -99.11.0.0/16 7018 -99.12.0.0/14 7018 -99.16.0.0/19 7018 -99.16.32.0/21 26306 -99.16.40.0/21 7018 -99.16.48.0/20 7018 -99.16.64.0/18 7018 -99.16.128.0/17 7018 -99.17.0.0/16 7018 -99.18.0.0/15 7018 -99.20.0.0/15 7018 -99.22.0.0/17 7018 -99.22.128.0/18 7018 -99.22.192.0/19 7018 -99.22.224.0/23 393508 -99.22.226.0/23 7018 -99.22.228.0/22 7018 -99.22.232.0/21 7018 -99.22.240.0/20 7018 -99.23.0.0/16 7018 -99.24.0.0/13 7018 -99.32.0.0/12 7018 -99.48.0.0/16 7018 -99.49.0.0/19 7018 -99.49.32.0/20 7018 -99.49.48.0/22 26306 -99.49.52.0/22 7018 -99.49.56.0/21 7018 -99.49.64.0/18 7018 -99.49.128.0/17 7018 -99.50.0.0/16 7018 -99.51.0.0/18 7018 -99.51.64.0/20 7018 -99.51.80.0/21 26306 -99.51.88.0/21 7018 -99.51.96.0/19 7018 -99.51.128.0/17 7018 -99.52.0.0/14 7018 -99.56.0.0/13 7018 -99.64.0.0/13 7018 -99.72.0.0/15 7018 -99.74.0.0/16 7018 -99.75.0.0/17 7018 -99.75.128.0/18 7018 -99.76.0.0/18 7018 -99.76.128.0/17 7018 -99.77.64.0/18 7018 -99.77.128.0/23 14618 -99.77.130.0/23 16509 -99.77.132.0/22 16509 -99.77.136.0/21 16509 -99.77.144.0/23 16509 -99.77.147.0/24 16509 -99.77.148.0/23 16509 -99.77.150.0/24 16509 -99.77.191.0/24 14618 -99.77.247.0/24 16509 -99.77.250.0/24 16509 -99.77.253.0/24 16509 -99.77.254.0/24 14618 -99.78.64.0/18 7018 -99.78.128.0/19 16509 -99.78.160.0/21 16509 -99.78.168.0/22 16509 -99.78.172.0/24 16509 -99.78.176.0/21 16509 -99.78.192.0/21 16509 -99.78.208.0/20 16509 -99.79.0.0/16 16509 -99.80.0.0/15 16509 -99.82.128.0/19 16509 -99.82.160.0/20 16509 -99.82.184.0/21 16509 -99.82.192.0/18 7018 -99.83.0.0/18 7018 -99.83.128.0/17 16509 -99.84.0.0/24 16509 -99.84.2.0/23 16509 -99.84.4.0/22 16509 -99.84.8.0/21 16509 -99.84.16.0/24 16509 -99.84.18.0/23 16509 -99.84.20.0/22 16509 -99.84.24.0/21 16509 -99.84.32.0/24 16509 -99.84.34.0/23 16509 -99.84.36.0/22 16509 -99.84.40.0/21 16509 -99.84.48.0/24 16509 -99.84.50.0/23 16509 -99.84.52.0/22 16509 -99.84.56.0/21 16509 -99.84.64.0/24 16509 -99.84.66.0/23 16509 -99.84.68.0/22 16509 -99.84.72.0/21 16509 -99.84.80.0/24 16509 -99.84.82.0/23 16509 -99.84.84.0/22 16509 -99.84.88.0/21 16509 -99.84.96.0/24 16509 -99.84.98.0/23 16509 -99.84.100.0/22 16509 -99.84.104.0/21 16509 -99.84.112.0/24 16509 -99.84.114.0/23 16509 -99.84.116.0/22 16509 -99.84.120.0/21 16509 -99.84.128.0/24 16509 -99.84.130.0/23 16509 -99.84.132.0/22 16509 -99.84.136.0/21 16509 -99.84.144.0/24 16509 -99.84.146.0/23 16509 -99.84.148.0/22 16509 -99.84.152.0/21 16509 -99.84.160.0/24 16509 -99.84.162.0/23 16509 -99.84.164.0/22 16509 -99.84.168.0/21 16509 -99.84.176.0/24 16509 -99.84.178.0/23 16509 -99.84.180.0/22 16509 -99.84.184.0/21 16509 -99.84.192.0/24 16509 -99.84.194.0/23 16509 -99.84.196.0/22 16509 -99.84.200.0/21 16509 -99.84.208.0/24 16509 -99.84.210.0/23 16509 -99.84.212.0/22 16509 -99.84.216.0/21 16509 -99.84.224.0/24 16509 -99.84.226.0/23 16509 -99.84.228.0/22 16509 -99.84.232.0/21 16509 -99.84.240.0/24 16509 -99.84.242.0/23 16509 -99.84.244.0/22 16509 -99.84.248.0/21 16509 -99.85.0.0/17 7018 -99.86.0.0/20 16509 -99.86.16.0/21 16509 -99.86.25.0/24 16509 -99.86.26.0/23 16509 -99.86.28.0/22 16509 -99.86.32.0/21 16509 -99.86.41.0/24 16509 -99.86.42.0/23 16509 -99.86.44.0/22 16509 -99.86.48.0/21 16509 -99.86.57.0/24 16509 -99.86.58.0/23 16509 -99.86.60.0/22 16509 -99.86.65.0/24 16509 -99.86.66.0/23 16509 -99.86.68.0/22 16509 -99.86.72.0/24 16509 -99.86.74.0/23 16509 -99.86.76.0/22 16509 -99.86.80.0/20 16509 -99.86.96.0/21 16509 -99.86.105.0/24 16509 -99.86.106.0/23 16509 -99.86.108.0/22 16509 -99.86.112.0/21 16509 -99.86.121.0/24 16509 -99.86.122.0/23 16509 -99.86.124.0/22 16509 -99.86.128.0/21 16509 -99.86.137.0/24 16509 -99.86.138.0/23 16509 -99.86.140.0/22 16509 -99.86.144.0/21 16509 -99.86.153.0/24 16509 -99.86.154.0/23 16509 -99.86.156.0/22 16509 -99.86.160.0/21 16509 -99.86.169.0/24 16509 -99.86.170.0/23 16509 -99.86.172.0/22 16509 -99.86.176.0/21 16509 -99.86.185.0/24 16509 -99.86.186.0/23 16509 -99.86.188.0/22 16509 -99.86.192.0/21 16509 -99.86.201.0/24 16509 -99.86.202.0/23 16509 -99.86.204.0/22 16509 -99.86.208.0/21 16509 -99.86.217.0/24 16509 -99.86.218.0/23 16509 -99.86.220.0/22 16509 -99.86.224.0/21 16509 -99.86.233.0/24 16509 -99.86.234.0/23 16509 -99.86.236.0/22 16509 -99.86.240.0/21 16509 -99.86.249.0/24 16509 -99.86.250.0/23 16509 -99.86.252.0/22 16509 -99.87.192.0/18 7018 -99.88.0.0/13 7018 -99.96.0.0/13 7018 -99.104.0.0/16 7018 -99.105.0.0/17 7018 -99.105.192.0/18 7018 -99.106.0.0/15 7018 -99.108.0.0/14 7018 -99.112.0.0/12 7018 -99.128.0.0/16 7018 -99.129.0.0/17 7018 -99.129.128.0/18 7018 -99.129.192.0/23 7018 -99.129.194.0/24 395753 -99.129.195.0/24 7018 -99.129.196.0/22 7018 -99.129.200.0/21 7018 -99.129.208.0/20 7018 -99.129.224.0/19 7018 -99.130.0.0/15 7018 -99.132.0.0/15 7018 -99.134.0.0/17 7018 -99.134.128.0/18 7018 -99.134.192.0/20 7018 -99.134.208.0/21 7018 -99.134.216.0/23 7018 -99.134.218.0/24 4466 -99.134.219.0/24 7018 -99.134.220.0/22 7018 -99.134.224.0/19 7018 -99.135.0.0/16 7018 -99.136.0.0/17 7018 -99.136.128.0/19 7018 -99.136.160.0/20 25993 -99.136.176.0/20 7018 -99.136.192.0/18 7018 -99.137.0.0/16 7018 -99.138.0.0/15 7018 -99.140.0.0/16 7018 -99.141.128.0/17 7018 -99.142.0.0/15 7018 -99.144.0.0/17 7018 -99.144.128.0/18 7018 -99.145.0.0/17 7018 -99.145.128.0/18 7018 -99.145.192.0/19 7018 -99.145.224.0/21 7018 -99.145.232.0/24 7018 -99.145.233.0/29 7018 -99.145.233.8/30 7018 -99.145.233.12/32 7018 -99.145.233.14/31 7018 -99.145.233.16/28 7018 -99.145.233.32/27 7018 -99.145.233.64/26 7018 -99.145.233.128/25 7018 -99.145.234.0/23 7018 -99.145.236.0/22 7018 -99.145.240.0/20 7018 -99.146.0.0/15 7018 -99.148.0.0/15 7018 -99.150.128.0/17 7018 -99.151.0.0/18 7018 -99.151.192.0/18 7018 -99.152.0.0/15 7018 -99.154.0.0/16 7018 -99.155.0.0/17 7018 -99.155.128.0/18 7018 -99.155.192.0/20 7018 -99.155.208.0/23 26306 -99.155.210.0/23 7018 -99.155.212.0/22 7018 -99.155.216.0/21 7018 -99.155.224.0/19 7018 -99.156.0.0/17 7018 -99.156.128.0/18 7018 -99.157.0.0/16 7018 -99.158.0.0/16 7018 -99.159.0.0/17 7018 -99.159.128.0/19 7018 -99.159.160.0/20 7018 -99.159.176.0/20 25993 -99.159.192.0/18 7018 -99.160.0.0/13 7018 -99.168.0.0/15 7018 -99.170.0.0/17 7018 -99.170.128.0/18 7018 -99.170.192.0/22 7018 -99.170.196.0/23 7018 -99.170.198.0/23 26306 -99.170.200.0/21 7018 -99.170.208.0/20 7018 -99.170.224.0/19 7018 -99.171.0.0/16 7018 -99.172.0.0/14 7018 -99.176.0.0/16 7018 -99.177.0.0/18 7018 -99.177.64.0/20 7018 -99.177.80.0/22 7018 -99.177.84.0/23 7018 -99.177.86.0/23 26306 -99.177.88.0/21 7018 -99.177.96.0/19 7018 -99.177.128.0/17 7018 -99.178.0.0/15 7018 -99.180.0.0/16 7018 -99.181.0.0/18 7018 -99.181.64.0/18 46489 -99.181.128.0/17 7018 -99.182.0.0/15 7018 -99.184.0.0/16 7018 -99.185.0.0/17 7018 -99.185.128.0/20 7018 -99.185.144.0/21 36426 -99.185.152.0/21 7018 -99.185.160.0/19 7018 -99.185.192.0/18 7018 -99.186.0.0/15 7018 -99.188.0.0/19 7018 -99.188.32.0/20 7018 -99.188.48.0/21 7018 -99.188.56.0/22 46254 -99.188.60.0/22 7018 -99.188.64.0/18 7018 -99.188.128.0/17 7018 -99.189.0.0/16 7018 -99.190.0.0/15 7018 -99.192.0.0/17 855 -99.192.128.0/17 27589 -99.193.12.0/23 12050 -99.193.28.0/23 12050 -99.193.36.0/24 12050 -99.193.40.0/22 12050 -99.193.44.0/23 12050 -99.193.64.0/19 12050 -99.193.192.0/19 12050 -99.193.226.0/23 12050 -99.193.228.0/23 12050 -99.193.230.0/24 12050 -99.193.232.0/24 12050 -99.193.233.0/24 23148 -99.193.234.0/23 12050 -99.193.236.0/23 22846 -99.193.238.0/24 23148 -99.193.239.0/24 12050 -99.193.244.0/23 12050 -99.193.251.0/24 3356 -99.194.0.0/19 209 -99.194.32.0/19 22561 -99.194.64.0/18 22561 -99.194.128.0/18 209 -99.194.192.0/22 209 -99.194.196.0/22 22561 -99.194.200.0/21 22561 -99.194.208.0/20 22561 -99.194.224.0/20 22561 -99.194.240.0/22 209 -99.194.244.0/22 22561 -99.194.248.0/21 209 -99.195.0.0/18 22561 -99.195.64.0/20 22561 -99.195.80.0/20 209 -99.195.96.0/20 22561 -99.195.112.0/20 209 -99.195.128.0/20 22561 -99.195.144.0/22 22561 -99.195.148.0/22 209 -99.195.152.0/22 209 -99.195.156.0/22 22561 -99.195.160.0/19 22561 -99.195.192.0/21 22561 -99.195.200.0/22 209 -99.195.204.0/22 22561 -99.195.208.0/21 22561 -99.195.216.0/21 209 -99.195.224.0/21 209 -99.195.232.0/21 22561 -99.195.240.0/21 209 -99.195.248.0/22 22561 -99.195.252.0/22 209 -99.196.0.0/15 7155 -99.198.0.0/18 7155 -99.198.64.0/19 7155 -99.198.96.0/19 32475 -99.198.128.0/17 16591 -99.199.0.0/17 852 -99.199.128.0/18 852 -99.199.192.0/20 852 -99.199.224.0/20 852 -99.200.0.0/16 10507 -99.201.0.0/16 1239 -99.202.0.0/16 10507 -99.203.0.0/19 10507 -99.203.32.0/20 10507 -99.203.48.0/21 10507 -99.203.56.0/23 10507 -99.203.58.0/23 1239 -99.203.60.0/22 1239 -99.203.64.0/19 10507 -99.203.96.0/20 10507 -99.203.112.0/21 10507 -99.203.120.0/23 10507 -99.203.122.0/23 1239 -99.203.124.0/22 1239 -99.203.128.0/23 10507 -99.203.130.0/23 1239 -99.203.132.0/22 1239 -99.203.136.0/22 1239 -99.203.140.0/23 1239 -99.203.142.0/23 10507 -99.203.144.0/23 10507 -99.203.146.0/23 1239 -99.203.148.0/22 1239 -99.203.152.0/23 1239 -99.203.154.0/23 10507 -99.203.156.0/22 1239 -99.203.160.0/20 1239 -99.203.176.0/21 1239 -99.203.184.0/23 1239 -99.203.186.0/23 10507 -99.203.188.0/22 1239 -99.203.192.0/21 1239 -99.203.200.0/22 10507 -99.203.204.0/22 1239 -99.203.208.0/22 1239 -99.203.212.0/23 10507 -99.203.214.0/23 1239 -99.203.216.0/21 1239 -99.203.224.0/19 1239 -99.204.0.0/15 1239 -99.206.0.0/16 1239 -99.207.0.0/17 1239 -99.207.128.0/18 1239 -99.207.192.0/19 1239 -99.207.224.0/20 1239 -99.207.240.0/21 1239 -99.207.248.0/22 1239 -99.207.252.0/24 10507 -99.207.253.0/24 1239 -99.207.254.0/23 1239 -99.224.0.0/11 812 -100.0.0.0/15 701 -100.2.0.0/16 701 -100.3.10.0/23 5650 -100.3.24.0/23 5650 -100.3.28.0/23 5650 -100.3.42.0/23 5650 -100.3.46.0/23 5650 -100.3.50.0/23 5650 -100.3.60.0/22 5650 -100.3.68.0/22 5650 -100.3.72.0/23 5650 -100.3.80.0/23 5650 -100.3.84.0/23 5650 -100.3.88.0/23 5650 -100.3.92.0/23 5650 -100.3.100.0/22 5650 -100.3.108.0/23 5650 -100.3.114.0/23 5650 -100.3.128.0/22 5650 -100.3.138.0/23 5650 -100.3.210.0/23 5650 -100.3.212.0/22 5650 -100.3.250.0/23 5650 -100.4.0.0/16 701 -100.6.0.0/15 701 -100.8.0.0/16 701 -100.9.10.0/23 5650 -100.9.12.0/23 5650 -100.9.18.0/23 5650 -100.9.30.0/23 5650 -100.9.36.0/22 5650 -100.9.52.0/23 5650 -100.9.56.0/23 5650 -100.9.62.0/23 5650 -100.9.64.0/23 5650 -100.9.68.0/23 5650 -100.9.74.0/23 5650 -100.9.84.0/23 5650 -100.9.90.0/23 5650 -100.9.98.0/23 5650 -100.9.102.0/23 5650 -100.9.162.0/23 5650 -100.9.164.0/22 5650 -100.9.168.0/22 5650 -100.9.232.0/21 5650 -100.9.240.0/21 5650 -100.9.248.0/23 5650 -100.10.0.0/15 701 -100.12.0.0/16 701 -100.13.72.0/22 5650 -100.13.102.0/23 5650 -100.13.130.0/23 5650 -100.13.132.0/22 5650 -100.13.136.0/22 5650 -100.13.160.0/23 5650 -100.13.176.0/23 5650 -100.13.254.0/23 5650 -100.14.0.0/15 701 -100.16.0.0/14 701 -100.20.0.0/14 16509 -100.24.0.0/13 14618 -100.32.2.0/23 5650 -100.32.12.0/23 5650 -100.32.18.0/23 5650 -100.32.24.0/21 5650 -100.32.42.0/23 5650 -100.32.46.0/23 5650 -100.32.48.0/23 5650 -100.32.54.0/23 5650 -100.32.62.0/23 5650 -100.32.88.0/23 5650 -100.32.92.0/23 5650 -100.32.100.0/23 5650 -100.32.118.0/23 5650 -100.32.134.0/23 5650 -100.32.136.0/23 5650 -100.32.160.0/23 5650 -100.32.166.0/23 5650 -100.32.170.0/23 5650 -100.32.176.0/23 5650 -100.32.184.0/22 5650 -100.32.190.0/23 5650 -100.32.192.0/23 5650 -100.32.200.0/22 5650 -100.32.208.0/23 5650 -100.32.218.0/23 5650 -100.32.242.0/23 5650 -100.32.246.0/23 5650 -100.32.248.0/23 5650 -100.32.254.0/23 5650 -100.33.0.0/16 701 -100.34.0.0/15 701 -100.36.0.0/15 701 -100.38.0.0/16 701 -100.39.0.0/22 5650 -100.39.12.0/23 5650 -100.39.18.0/23 5650 -100.39.34.0/23 5650 -100.39.36.0/23 5650 -100.39.44.0/23 5650 -100.39.48.0/23 5650 -100.39.254.0/23 5650 -100.40.0.0/15 701 -100.42.0.0/20 36426 -100.42.16.0/24 46841 -100.42.18.0/24 31834 -100.42.19.0/24 397317 -100.42.20.0/22 395570 -100.42.24.0/23 46841 -100.42.26.0/24 17676 -100.42.27.0/24 46841 -100.42.28.0/22 46841 -100.42.32.0/20 17004 -100.42.48.0/21 46606 -100.42.56.0/23 36351 -100.42.58.0/23 46606 -100.42.60.0/22 46606 -100.42.64.0/20 35916 -100.42.80.0/20 62643 -100.42.96.0/23 33353 -100.42.98.0/24 33353 -100.42.100.0/23 33353 -100.42.102.0/24 33353 -100.42.104.0/22 33353 -100.42.108.0/23 33353 -100.42.110.0/24 33353 -100.42.120.0/24 23005 -100.42.124.0/23 22147 -100.42.128.0/20 26732 -100.42.144.0/20 20030 -100.42.160.0/20 13692 -100.42.176.0/20 64242 -100.42.192.0/20 32524 -100.42.208.0/20 18450 -100.42.224.0/20 54288 -100.42.240.0/20 11260 -100.43.0.0/23 33662 -100.43.2.0/24 40082 -100.43.3.0/24 395597 -100.43.4.0/24 63357 -100.43.5.0/24 395597 -100.43.6.0/23 395597 -100.43.8.0/24 395597 -100.43.16.0/23 13760 -100.43.18.0/23 395597 -100.43.20.0/23 395597 -100.43.22.0/23 701 -100.43.24.0/23 40082 -100.43.26.0/23 395597 -100.43.28.0/23 395597 -100.43.30.0/24 395597 -100.43.31.0/24 395461 -100.43.32.0/19 53809 -100.43.64.0/19 13238 -100.43.96.0/21 22995 -100.43.112.0/20 22995 -100.43.128.0/18 35908 -100.43.192.0/18 14265 -100.44.0.0/14 14654 -100.48.0.0/12 10507 -100.128.0.0/9 21928 -101.0.4.0/22 55670 -101.0.8.0/22 132827 -101.0.20.0/22 132827 -101.0.24.0/22 132827 -101.0.32.0/22 133661 -101.0.37.0/24 133696 -101.0.38.0/24 133661 -101.0.39.0/24 23682 -101.0.41.0/24 133661 -101.0.42.0/24 133661 -101.0.43.0/24 23682 -101.0.44.0/24 23682 -101.0.49.0/24 23682 -101.0.50.0/23 23682 -101.0.53.0/24 23682 -101.0.54.0/23 23682 -101.0.57.0/24 23682 -101.0.59.0/24 23682 -101.0.61.0/24 23682 -101.0.64.0/18 55803 -101.0.128.0/18 9676 -101.0.192.0/19 9676 -101.0.224.0/19 18046 -101.1.0.0/22 58519 -101.1.4.0/23 37965 -101.1.6.0/23 137260 -101.1.8.0/21 7624 -101.1.16.0/23 133405 -101.1.18.0/24 63888 -101.1.19.0/24 133405 -101.1.20.0/23 133405 -101.1.25.0/24 133405 -101.1.27.0/24 133405 -101.1.29.0/24 133405 -101.1.30.0/23 133405 -101.1.32.0/19 9524 -101.1.64.0/18 18260 -101.1.128.0/17 7522 -101.2.128.0/19 18260 -101.2.160.0/21 38592 -101.2.168.0/22 55931 -101.2.172.0/22 58519 -101.2.176.0/20 132045 -101.2.192.0/19 7496 -101.3.0.0/23 131584 -101.3.9.0/24 131584 -101.3.10.0/23 131584 -101.3.12.0/24 131584 -101.3.14.0/23 131584 -101.3.253.0/24 131584 -101.3.254.0/23 131584 -101.4.0.0/14 4538 -101.8.192.0/18 24158 -101.9.128.0/17 24158 -101.10.0.0/18 24158 -101.10.64.0/20 24158 -101.10.80.0/21 24158 -101.11.0.0/16 24158 -101.12.0.0/19 24158 -101.12.40.0/21 24158 -101.12.48.0/20 24158 -101.12.64.0/18 24158 -101.12.128.0/17 24158 -101.13.0.0/23 24158 -101.13.128.0/17 24158 -101.14.128.0/17 24158 -101.15.128.0/18 24158 -101.15.192.0/19 24158 -101.16.0.0/12 4837 -101.36.0.0/18 23724 -101.36.64.0/20 23724 -101.36.80.0/24 134700 -101.36.81.0/24 4058 -101.36.83.0/24 17408 -101.36.84.0/24 24155 -101.36.128.0/17 23724 -101.37.0.0/16 37963 -101.38.0.0/16 4808 -101.39.0.0/16 4847 -101.40.0.0/16 4847 -101.41.0.0/16 4808 -101.44.0.0/15 17964 -101.46.0.0/18 17964 -101.46.64.0/19 17964 -101.46.96.0/20 9395 -101.46.112.0/20 17964 -101.46.128.0/17 17964 -101.47.0.0/16 17964 -101.49.128.0/22 134764 -101.49.132.0/22 136958 -101.49.136.0/21 136958 -101.49.144.0/22 136958 -101.50.0.0/22 55688 -101.50.4.0/22 7524 -101.50.16.0/20 4787 -101.50.32.0/20 18283 -101.50.48.0/21 18283 -101.50.56.0/22 58519 -101.50.60.0/22 4713 -101.50.64.0/18 23674 -101.50.128.0/17 2519 -101.51.0.0/16 23969 -101.52.0.0/20 45079 -101.52.124.0/22 45079 -101.52.128.0/18 45079 -101.52.192.0/19 45079 -101.52.224.0/20 45079 -101.52.240.0/21 45079 -101.52.248.0/22 45079 -101.52.252.0/22 4812 -101.53.0.0/18 24173 -101.53.64.0/19 38676 -101.53.96.0/22 4711 -101.53.100.0/22 58519 -101.53.104.0/21 4713 -101.53.112.0/20 4711 -101.53.128.0/19 17439 -101.53.160.0/19 14340 -101.53.192.0/19 55850 -101.53.224.0/21 9541 -101.53.232.0/22 9541 -101.53.238.0/24 9541 -101.53.241.0/24 9541 -101.53.242.0/24 9541 -101.53.244.0/22 9541 -101.53.248.0/23 9541 -101.53.251.0/24 9541 -101.53.252.0/22 9541 -101.54.0.0/18 4847 -101.55.0.0/24 3786 -101.55.1.0/24 55592 -101.55.2.0/23 3786 -101.55.4.0/23 3786 -101.55.6.0/24 55592 -101.55.7.0/24 3786 -101.55.8.0/22 55592 -101.55.12.0/24 55592 -101.55.13.0/24 3786 -101.55.14.0/23 3786 -101.55.16.0/22 55592 -101.55.20.0/23 55592 -101.55.22.0/24 3786 -101.55.23.0/24 55592 -101.55.24.0/23 55592 -101.55.26.0/24 3786 -101.55.27.0/24 55592 -101.55.28.0/22 55592 -101.55.32.0/24 3786 -101.55.33.0/24 55592 -101.55.34.0/24 3786 -101.55.35.0/24 55592 -101.55.36.0/23 55592 -101.55.38.0/24 55592 -101.55.39.0/24 3786 -101.55.40.0/22 55592 -101.55.44.0/22 3786 -101.55.48.0/24 55592 -101.55.49.0/24 3786 -101.55.50.0/23 55592 -101.55.52.0/24 55592 -101.55.53.0/24 3786 -101.55.54.0/23 55592 -101.55.56.0/24 3786 -101.55.57.0/24 55592 -101.55.58.0/24 55592 -101.55.59.0/24 3786 -101.55.60.0/24 3786 -101.55.61.0/24 55592 -101.55.62.0/23 55592 -101.55.64.0/20 55592 -101.55.80.0/22 55592 -101.55.85.0/24 55592 -101.55.86.0/23 55592 -101.55.88.0/21 55592 -101.55.96.0/23 55592 -101.55.116.0/23 55592 -101.55.118.0/24 55592 -101.55.120.0/21 55592 -101.55.128.0/18 24276 -101.55.192.0/19 2519 -101.55.232.0/21 18260 -101.55.240.0/20 9614 -101.56.0.0/13 210278 -101.64.0.0/13 4837 -101.72.0.0/14 4837 -101.76.0.0/15 4538 -101.78.0.0/22 58519 -101.78.4.0/23 45680 -101.78.6.0/24 45680 -101.78.8.0/21 10226 -101.78.16.0/20 133421 -101.78.64.0/18 9506 -101.78.128.0/17 9381 -101.79.0.0/21 38661 -101.79.40.0/21 38661 -101.79.48.0/20 38661 -101.79.68.0/22 38661 -101.79.72.0/21 38661 -101.79.80.0/21 38661 -101.79.92.0/22 38661 -101.79.96.0/19 38661 -101.79.128.0/20 38661 -101.79.148.0/23 36408 -101.79.150.0/24 36408 -101.79.152.0/24 36408 -101.79.157.0/24 38107 -101.79.158.0/24 36408 -101.79.163.0/24 38107 -101.79.164.0/24 38107 -101.79.165.0/24 54994 -101.79.166.0/23 54994 -101.79.188.0/22 38661 -101.79.192.0/20 38661 -101.79.208.0/21 38107 -101.79.224.0/21 38107 -101.79.233.0/24 38107 -101.79.234.0/23 38107 -101.79.236.0/24 38107 -101.79.239.0/24 38107 -101.79.240.0/20 38661 -101.80.0.0/12 4812 -101.96.10.0/23 4812 -101.96.12.0/22 38738 -101.96.32.0/19 7672 -101.96.64.0/18 24173 -101.96.128.0/20 4847 -101.97.0.0/19 17941 -101.97.32.0/22 17819 -101.97.36.0/24 139006 -101.97.44.0/22 137840 -101.97.48.0/22 23686 -101.97.52.0/22 17819 -101.97.56.0/22 17819 -101.97.60.0/22 23686 -101.98.0.0/16 9790 -101.99.0.0/23 45903 -101.99.2.0/24 45903 -101.99.3.0/24 38732 -101.99.4.0/22 45903 -101.99.8.0/21 45903 -101.99.16.0/20 45903 -101.99.32.0/19 45903 -101.99.64.0/21 45839 -101.99.72.0/22 45839 -101.99.77.0/24 45839 -101.99.78.0/23 45839 -101.99.80.0/23 45839 -101.99.82.0/24 45839 -101.99.84.0/22 45839 -101.99.90.0/24 45839 -101.99.101.0/24 133955 -101.99.102.0/23 133955 -101.99.109.0/24 133955 -101.99.128.0/17 3605 -101.100.0.0/17 17492 -101.100.128.0/20 133579 -101.100.144.0/21 133579 -101.100.152.0/22 133579 -101.100.156.0/24 133579 -101.100.158.0/23 133579 -101.100.160.0/20 56300 -101.100.176.0/21 56300 -101.100.184.0/23 56300 -101.100.186.0/24 56300 -101.100.187.0/24 132132 -101.100.188.0/23 56300 -101.100.190.0/24 56300 -101.100.191.0/24 132132 -101.100.192.0/24 58621 -101.100.195.0/24 58621 -101.100.196.0/22 58621 -101.100.201.0/24 58621 -101.100.202.0/23 58621 -101.100.204.0/22 58621 -101.100.208.0/21 58621 -101.100.216.0/22 58621 -101.100.221.0/24 58621 -101.100.222.0/23 58621 -101.100.224.0/20 58621 -101.100.240.0/22 58621 -101.100.250.0/24 58621 -101.100.252.0/24 58621 -101.100.254.0/24 58621 -101.101.0.0/18 18200 -101.101.101.0/24 131621 -101.101.128.0/19 4766 -101.101.160.0/20 135354 -101.101.192.0/20 4766 -101.101.224.0/19 4766 -101.102.0.0/18 4704 -101.102.71.0/24 133955 -101.102.75.0/24 133955 -101.102.79.0/24 133955 -101.102.96.0/22 4713 -101.102.103.0/24 131621 -101.102.106.0/24 133948 -101.102.128.0/17 17676 -101.103.0.0/16 1221 -101.104.0.0/17 17964 -101.104.128.0/18 4847 -101.104.224.0/19 4847 -101.105.64.0/18 4847 -101.105.224.0/19 4847 -101.106.0.0/18 4847 -101.106.128.0/18 4847 -101.106.192.0/19 17964 -101.106.224.0/20 17964 -101.106.240.0/21 17964 -101.107.64.0/18 17964 -101.107.128.0/18 4847 -101.108.0.0/15 23969 -101.110.0.0/18 17676 -101.110.112.0/22 45177 -101.111.0.0/16 9365 -101.112.0.0/14 133612 -101.116.0.0/15 133612 -101.118.0.0/16 133612 -101.119.0.0/17 133612 -101.119.128.0/18 133612 -101.119.192.0/19 133612 -101.119.224.0/21 133612 -101.119.232.0/22 18291 -101.119.236.0/22 133612 -101.119.240.0/20 133612 -101.124.0.0/16 131486 -101.125.0.0/22 4837 -101.125.4.0/23 4837 -101.125.252.0/22 137702 -101.126.60.0/22 17964 -101.126.64.0/18 4847 -101.126.128.0/17 9395 -101.127.0.0/17 55430 -101.127.128.0/18 55430 -101.127.192.0/21 4657 -101.127.200.0/22 9874 -101.127.204.0/23 9874 -101.127.206.0/23 4657 -101.127.208.0/20 4657 -101.127.224.0/20 4657 -101.127.240.0/21 55430 -101.127.248.0/21 4657 -101.128.0.0/22 58519 -101.128.4.0/24 133538 -101.128.5.0/24 55795 -101.128.6.0/23 55795 -101.128.31.0/24 133955 -101.128.37.0/24 133955 -101.128.64.0/18 135478 -101.128.128.0/17 2497 -101.129.0.0/16 45075 -101.130.0.0/17 9395 -101.131.0.0/17 9395 -101.132.0.0/15 37963 -101.135.33.0/24 138449 -101.136.0.0/14 131591 -101.140.0.0/14 17511 -101.144.0.0/12 9394 -101.160.0.0/14 1221 -101.164.0.0/15 1221 -101.166.0.0/16 1221 -101.167.0.0/17 1221 -101.167.128.0/19 1221 -101.167.160.0/20 1221 -101.167.176.0/20 4637 -101.167.192.0/19 4637 -101.167.224.0/19 1221 -101.168.0.0/13 1221 -101.176.0.0/12 1221 -101.197.0.0/16 55992 -101.198.0.0/17 55992 -101.198.128.0/18 55992 -101.198.192.0/22 55992 -101.198.196.0/24 55992 -101.198.197.0/24 4837 -101.198.198.0/23 55992 -101.198.200.0/21 55992 -101.198.208.0/20 55992 -101.199.32.0/20 55992 -101.199.48.0/20 4837 -101.199.96.0/21 23724 -101.199.112.0/23 23724 -101.199.114.0/24 23724 -101.199.125.0/24 23724 -101.199.196.0/22 4837 -101.200.0.0/15 37963 -101.202.0.0/16 17878 -101.203.0.0/18 17676 -101.203.168.0/22 55674 -101.203.172.0/22 58519 -101.204.0.0/14 4837 -101.224.0.0/13 4812 -101.232.0.0/15 17816 -101.234.30.0/23 7473 -101.234.32.0/23 7473 -101.234.34.0/24 7473 -101.234.40.0/24 7473 -101.234.72.0/22 56135 -101.234.76.0/22 58519 -101.234.101.0/24 133955 -101.234.103.0/24 133955 -101.234.105.0/24 133955 -101.234.109.0/24 133955 -101.234.128.0/22 10207 -101.234.132.0/23 45577 -101.234.138.0/23 10207 -101.234.140.0/23 45577 -101.234.142.0/23 132064 -101.234.144.0/21 45577 -101.234.152.0/24 45577 -101.234.154.0/24 45577 -101.234.156.0/23 45577 -101.234.200.0/23 45577 -101.234.202.0/24 45577 -101.235.0.0/17 10036 -101.235.128.0/19 10036 -101.235.160.0/20 10036 -101.235.176.0/20 18334 -101.235.192.0/22 10036 -101.235.196.0/22 7562 -101.235.200.0/21 10036 -101.235.208.0/22 7562 -101.235.212.0/22 10036 -101.235.216.0/21 10036 -101.235.224.0/19 10036 -101.236.0.0/18 4808 -101.236.64.0/18 23724 -101.236.128.0/17 23724 -101.240.0.0/14 24138 -101.244.0.0/15 4847 -101.246.0.0/18 17964 -101.246.64.0/18 4847 -101.246.128.0/18 4847 -101.246.192.0/18 17964 -101.247.0.0/17 4847 -101.247.160.0/20 4847 -101.248.0.0/15 4134 -101.250.0.0/16 38701 -101.251.0.0/22 58519 -101.251.4.0/23 45170 -101.251.6.0/24 132856 -101.251.7.0/24 45170 -101.251.53.0/24 133955 -101.251.64.0/21 56001 -101.251.72.0/22 56001 -101.251.80.0/20 23650 -101.251.96.0/20 56001 -101.251.112.0/24 56001 -101.251.120.0/24 56001 -101.251.128.0/22 45093 -101.251.132.0/23 45093 -101.251.136.0/21 45093 -101.251.144.0/20 4837 -101.251.160.0/21 4837 -101.251.192.0/18 4808 -101.254.0.0/18 23724 -101.254.64.0/19 23724 -101.254.96.0/23 23724 -101.254.98.0/24 23724 -101.254.99.0/24 4808 -101.254.100.0/22 4808 -101.254.104.0/21 23724 -101.254.112.0/20 23724 -101.254.128.0/17 23724 -101.255.0.0/17 38511 -101.255.128.0/20 38511 -101.255.170.0/23 56242 -102.0.0.0/13 36926 -102.8.0.0/13 37069 -102.16.0.0/14 37054 -102.20.0.0/15 37054 -102.22.32.0/19 327892 -102.22.80.0/22 328170 -102.22.84.0/22 328588 -102.22.104.0/22 37723 -102.22.112.0/21 37417 -102.22.120.0/23 327991 -102.22.124.0/22 328575 -102.22.128.0/18 36924 -102.22.193.0/24 328317 -102.22.200.0/23 328317 -102.22.202.0/24 328317 -102.22.206.0/23 328317 -102.22.216.0/23 37347 -102.22.232.0/24 328586 -102.22.235.0/24 328586 -102.22.236.0/22 328589 -102.22.240.0/21 328576 -102.22.248.0/21 37172 -102.23.0.0/18 36924 -102.23.88.0/22 328568 -102.23.96.0/24 328580 -102.23.98.0/24 328580 -102.23.104.0/21 328582 -102.23.124.0/22 328572 -102.23.128.0/23 328564 -102.23.140.0/22 328581 -102.23.144.0/20 328562 -102.23.160.0/22 37358 -102.23.168.0/21 328242 -102.23.176.0/21 328057 -102.23.184.0/21 327751 -102.23.192.0/20 328548 -102.23.216.0/23 328560 -102.23.218.0/23 328557 -102.23.220.0/24 21003 -102.23.224.0/19 327750 -102.24.0.0/13 5438 -102.32.0.0/15 327782 -102.34.0.0/16 327687 -102.35.16.0/20 37002 -102.35.32.0/19 37002 -102.35.64.0/20 37002 -102.36.0.0/17 327794 -102.36.134.0/23 328556 -102.36.136.0/22 8346 -102.36.147.0/24 328558 -102.36.148.0/22 37682 -102.36.152.0/22 328538 -102.36.156.0/22 328544 -102.36.160.0/22 328528 -102.36.164.0/22 328534 -102.36.168.0/22 328542 -102.36.172.0/22 328537 -102.36.176.0/23 328527 -102.36.182.0/24 328524 -102.36.183.0/24 328574 -102.36.194.0/23 2018 -102.36.196.0/22 328521 -102.36.200.0/21 328526 -102.36.208.0/22 328533 -102.36.212.0/23 328535 -102.36.214.0/24 328535 -102.36.216.0/21 37027 -102.36.224.0/24 327932 -102.36.228.0/22 328555 -102.36.248.0/22 328164 -102.36.252.0/22 328519 -102.37.0.0/16 8075 -102.38.32.0/20 37482 -102.38.48.0/23 328590 -102.38.50.0/24 328590 -102.38.51.0/24 328271 -102.38.52.0/22 328529 -102.38.56.0/22 37004 -102.38.60.0/22 5713 -102.38.64.0/19 328510 -102.38.96.0/20 328510 -102.38.126.0/23 328510 -102.38.128.0/19 37090 -102.38.192.0/18 62900 -102.39.0.0/16 11845 -102.40.0.0/13 8452 -102.48.0.0/15 6713 -102.50.0.0/16 6713 -102.51.0.0/18 36903 -102.51.64.0/18 6713 -102.51.128.0/17 6713 -102.52.0.0/17 6713 -102.52.128.0/18 36903 -102.52.192.0/18 6713 -102.53.0.0/16 6713 -102.54.0.0/15 6713 -102.56.0.0/13 36992 -102.64.0.0/22 328546 -102.64.6.0/24 328522 -102.64.7.0/24 328516 -102.64.8.0/21 328530 -102.64.16.0/20 328512 -102.64.32.0/20 327991 -102.64.48.0/24 328497 -102.64.56.0/23 328536 -102.64.60.0/22 328509 -102.64.64.0/21 328514 -102.64.72.0/22 37594 -102.64.76.0/22 328551 -102.64.80.0/21 328495 -102.64.88.0/22 62900 -102.64.92.0/23 328498 -102.64.96.0/20 25818 -102.64.112.0/23 328501 -102.64.114.0/24 328505 -102.64.116.0/22 328500 -102.64.124.0/23 328491 -102.64.128.0/17 36924 -102.65.0.0/16 328453 -102.66.0.0/16 328471 -102.67.0.0/21 36920 -102.67.8.0/22 36920 -102.67.12.0/24 36920 -102.67.14.0/23 36920 -102.67.16.0/22 36920 -102.67.20.0/23 36920 -102.67.22.0/24 36920 -102.67.30.0/24 36920 -102.67.32.0/20 328503 -102.67.48.0/22 37333 -102.67.52.0/24 37333 -102.67.56.0/22 328474 -102.67.96.0/19 37721 -102.67.128.0/21 328467 -102.67.136.0/21 328170 -102.67.148.0/22 328493 -102.67.152.0/22 328482 -102.67.156.0/22 328473 -102.67.164.0/22 36236 -102.67.168.0/22 29286 -102.67.176.0/21 327693 -102.67.184.0/22 328483 -102.67.188.0/22 328460 -102.67.192.0/18 36924 -102.68.0.0/22 328461 -102.68.4.0/22 328450 -102.68.12.0/22 328449 -102.68.17.0/24 328469 -102.68.21.0/24 328477 -102.68.22.0/24 37003 -102.68.24.0/21 328441 -102.68.32.0/23 328432 -102.68.39.0/24 328432 -102.68.40.0/21 328434 -102.68.48.0/22 206283 -102.68.52.0/22 328455 -102.68.56.0/21 328442 -102.68.64.0/22 328478 -102.68.70.0/24 328496 -102.68.71.0/24 328504 -102.68.72.0/22 5713 -102.68.76.0/22 328490 -102.68.80.0/23 327813 -102.68.82.0/24 327813 -102.68.84.0/22 327813 -102.68.88.0/21 328433 -102.68.96.0/23 327813 -102.68.99.0/24 327813 -102.68.102.0/23 37008 -102.68.108.0/22 37682 -102.68.112.0/21 37662 -102.68.120.0/22 328480 -102.68.124.0/24 21491 -102.68.125.0/24 328448 -102.68.126.0/24 328447 -102.68.128.0/21 327752 -102.68.136.0/22 328427 -102.68.141.0/24 328578 -102.68.142.0/24 328466 -102.68.144.0/21 328435 -102.68.152.0/22 328443 -102.68.156.0/23 328523 -102.68.158.0/24 36937 -102.68.159.0/24 328523 -102.68.160.0/21 328487 -102.68.172.0/22 328015 -102.68.176.0/22 328253 -102.68.180.0/22 328423 -102.68.184.0/22 328425 -102.68.192.0/19 37037 -102.68.224.0/21 37037 -102.68.232.0/23 37037 -102.69.0.0/19 37284 -102.69.32.0/20 37284 -102.69.48.0/22 37284 -102.69.56.0/21 37284 -102.69.64.0/18 37284 -102.69.128.0/20 328431 -102.69.144.0/22 328451 -102.69.148.0/24 328476 -102.69.150.0/24 328484 -102.69.152.0/22 60171 -102.69.156.0/23 328418 -102.69.160.0/22 328488 -102.69.164.0/22 328436 -102.69.168.0/21 37254 -102.69.176.0/22 37254 -102.69.184.0/21 327791 -102.69.192.0/20 37549 -102.69.208.0/22 328517 -102.69.216.0/22 328507 -102.69.220.0/22 328494 -102.69.224.0/21 328475 -102.69.232.0/22 328479 -102.69.236.0/23 37314 -102.69.238.0/24 328513 -102.69.239.0/24 328465 -102.69.240.0/22 328457 -102.69.244.0/23 328456 -102.69.246.0/23 328454 -102.70.0.0/15 37294 -102.72.0.0/14 6713 -102.76.0.0/15 6713 -102.78.0.0/18 6713 -102.78.64.0/18 36903 -102.78.128.0/17 36903 -102.79.0.0/16 6713 -102.80.0.0/13 37075 -102.96.0.0/13 36925 -102.104.0.0/13 37693 -102.112.0.0/13 23889 -102.120.0.0/13 36972 -102.128.72.0/23 328402 -102.128.74.0/24 20598 -102.128.76.0/22 328088 -102.128.88.0/22 328562 -102.128.92.0/23 328320 -102.128.96.0/19 37317 -102.128.128.0/22 37563 -102.128.136.0/21 37157 -102.128.144.0/24 328210 -102.128.160.0/22 328222 -102.128.164.0/23 9009 -102.128.166.0/24 35758 -102.128.167.0/24 9009 -102.128.168.0/22 327893 -102.128.172.0/22 328176 -102.128.176.0/23 328405 -102.128.184.0/22 328444 -102.128.192.0/18 328419 -102.129.0.0/19 327999 -102.129.32.0/22 328429 -102.129.36.0/22 328413 -102.129.40.0/21 328397 -102.129.48.0/20 327991 -102.129.64.0/24 37451 -102.129.66.0/23 37451 -102.129.68.0/23 37451 -102.129.70.0/24 37451 -102.129.72.0/21 37451 -102.129.80.0/24 37451 -102.129.96.0/21 37150 -102.129.120.0/21 37150 -102.129.128.0/22 61317 -102.129.132.0/22 205224 -102.129.136.0/22 36217 -102.129.140.0/22 61317 -102.129.144.0/23 61317 -102.129.146.0/23 134121 -102.129.148.0/22 134121 -102.129.152.0/23 61317 -102.129.154.0/23 134121 -102.129.156.0/22 134121 -102.129.160.0/19 55933 -102.129.192.0/23 134121 -102.129.194.0/23 61317 -102.129.196.0/23 134121 -102.129.198.0/23 61317 -102.129.200.0/22 61317 -102.129.204.0/23 61317 -102.129.206.0/23 134121 -102.129.208.0/23 134121 -102.129.210.0/23 61317 -102.129.212.0/22 61317 -102.129.216.0/21 61317 -102.129.224.0/20 61317 -102.129.240.0/23 61317 -102.129.242.0/23 134121 -102.129.244.0/22 36217 -102.129.248.0/21 61317 -102.130.12.0/22 328417 -102.130.16.0/20 328388 -102.130.32.0/21 328385 -102.130.40.0/21 37302 -102.130.48.0/24 328383 -102.130.49.0/24 57695 -102.130.50.0/23 328383 -102.130.52.0/23 328387 -102.130.64.0/21 37468 -102.130.72.0/21 328386 -102.130.80.0/22 328375 -102.130.98.0/24 328428 -102.130.100.0/24 328420 -102.130.102.0/24 328380 -102.130.103.0/24 328401 -102.130.104.0/21 328068 -102.130.112.0/20 37153 -102.130.128.0/18 37634 -102.130.192.0/19 37645 -102.130.224.0/23 37282 -102.130.232.0/22 21271 -102.130.236.0/22 328391 -102.130.240.0/21 328426 -102.131.0.0/20 328229 -102.131.16.0/24 328367 -102.131.18.0/23 328371 -102.131.20.0/23 328361 -102.131.22.0/24 328361 -102.131.28.0/22 328356 -102.131.32.0/22 37726 -102.131.36.0/22 328357 -102.131.48.0/21 37622 -102.131.56.0/22 327975 -102.131.60.0/22 328373 -102.131.64.0/18 328362 -102.131.128.0/17 37420 -102.132.0.0/20 328350 -102.132.16.0/21 327820 -102.132.24.0/23 327820 -102.132.26.0/24 327820 -102.132.28.0/22 327820 -102.132.32.0/20 327996 -102.132.48.0/21 327996 -102.132.56.0/22 327996 -102.132.64.0/20 328320 -102.132.80.0/20 328347 -102.132.96.0/20 32934 -102.132.112.0/22 63293 -102.132.116.0/23 63293 -102.132.118.0/24 63293 -102.132.125.0/24 63293 -102.132.128.0/17 37680 -102.133.0.0/16 8075 -102.134.0.0/20 328349 -102.134.16.0/21 37662 -102.134.24.0/22 328346 -102.134.28.0/22 328502 -102.134.32.0/21 328543 -102.134.40.0/23 328342 -102.134.42.0/23 328543 -102.134.44.0/22 328342 -102.134.48.0/22 328543 -102.134.52.0/22 328342 -102.134.56.0/21 328342 -102.134.64.0/21 328337 -102.134.72.0/22 328339 -102.134.80.0/22 328384 -102.134.84.0/22 328348 -102.134.88.0/22 328334 -102.134.92.0/22 36874 -102.134.96.0/20 37545 -102.134.112.0/22 37682 -102.134.116.0/22 328437 -102.134.120.0/21 328333 -102.134.129.0/24 328392 -102.134.130.0/23 328353 -102.134.132.0/22 328336 -102.134.136.0/22 328343 -102.134.140.0/22 328408 -102.134.144.0/21 327687 -102.134.152.0/21 328399 -102.134.160.0/20 327776 -102.134.176.0/20 328232 -102.134.192.0/18 328114 -102.135.0.0/20 37349 -102.135.16.0/20 327813 -102.135.48.0/20 327813 -102.135.64.0/21 327813 -102.135.80.0/20 37684 -102.135.108.0/22 61317 -102.135.128.0/19 327907 -102.135.160.0/22 328364 -102.135.164.0/22 328485 -102.135.168.0/23 328331 -102.135.176.0/22 328344 -102.135.181.0/24 328344 -102.135.182.0/23 328344 -102.135.189.0/24 328352 -102.135.190.0/24 328335 -102.135.191.0/24 29571 -102.135.192.0/19 37088 -102.135.224.0/22 51110 -102.135.228.0/23 51110 -102.135.240.0/21 328266 -102.135.248.0/24 15695 -102.135.252.0/22 328359 -102.136.0.0/14 36974 -102.140.0.0/18 328306 -102.140.64.0/20 328327 -102.140.80.0/20 32708 -102.140.108.0/22 328369 -102.140.112.0/21 328351 -102.140.120.0/21 328328 -102.140.128.0/19 25250 -102.140.160.0/20 37720 -102.140.192.0/18 15399 -102.141.0.0/18 36924 -102.141.64.0/19 36874 -102.141.96.0/20 328216 -102.141.112.0/21 327830 -102.141.120.0/22 328323 -102.141.128.0/18 327901 -102.141.192.0/22 328320 -102.141.196.0/22 328319 -102.141.200.0/22 328543 -102.141.204.0/22 328394 -102.141.208.0/22 37314 -102.141.212.0/23 328376 -102.141.216.0/22 37529 -102.141.224.0/22 328317 -102.141.232.0/24 328122 -102.141.233.0/24 328332 -102.141.234.0/24 328324 -102.141.235.0/24 328313 -102.141.236.0/22 327861 -102.141.240.0/20 327962 -102.142.0.0/16 36924 -102.143.0.0/17 328297 -102.143.255.0/24 33788 -102.144.0.0/13 37287 -102.152.0.0/14 5438 -102.156.0.0/14 37705 -102.160.0.0/14 30999 -102.164.0.0/19 328341 -102.164.32.0/24 37125 -102.164.34.0/24 37125 -102.164.37.0/24 37125 -102.164.38.0/23 37125 -102.164.40.0/22 328416 -102.164.44.0/22 328305 -102.164.48.0/22 136800 -102.164.52.0/22 328302 -102.164.61.0/24 328296 -102.164.64.0/20 328285 -102.164.80.0/20 328315 -102.164.96.0/23 328286 -102.164.98.0/23 21003 -102.164.104.0/21 328287 -102.164.112.0/23 328307 -102.164.114.0/23 36978 -102.164.116.0/22 37179 -102.164.120.0/24 328292 -102.164.121.0/24 37394 -102.164.122.0/24 328308 -102.164.124.0/22 328304 -102.164.128.0/22 37649 -102.164.132.0/23 37649 -102.164.140.0/23 37649 -102.164.150.0/23 37649 -102.164.160.0/22 37649 -102.164.181.0/24 37649 -102.164.192.0/19 327750 -102.164.224.0/22 37292 -102.164.228.0/22 328282 -102.164.232.0/21 328282 -102.164.240.0/22 328312 -102.164.244.0/22 328310 -102.164.248.0/21 37529 -102.165.0.0/22 61317 -102.165.4.0/24 3257 -102.165.5.0/24 61317 -102.165.6.0/23 61317 -102.165.8.0/22 61317 -102.165.12.0/23 61317 -102.165.14.0/24 61317 -102.165.15.0/24 3257 -102.165.16.0/23 61317 -102.165.18.0/24 3257 -102.165.19.0/24 61317 -102.165.20.0/22 61317 -102.165.24.0/23 61317 -102.165.26.0/24 61317 -102.165.27.0/24 327991 -102.165.28.0/23 61317 -102.165.30.0/24 61317 -102.165.31.0/24 327991 -102.165.32.0/22 134121 -102.165.36.0/22 61317 -102.165.40.0/22 134121 -102.165.44.0/23 134121 -102.165.47.0/24 61317 -102.165.49.0/24 61317 -102.165.50.0/23 134121 -102.165.56.0/22 61317 -102.165.60.0/24 61317 -102.165.61.0/24 35074 -102.165.62.0/23 61317 -102.165.64.0/19 328278 -102.165.96.0/23 328284 -102.165.98.0/24 328284 -102.165.120.0/22 328275 -102.165.124.0/22 37521 -102.165.128.0/19 37395 -102.165.160.0/21 327897 -102.165.168.0/21 328270 -102.165.180.0/24 10310 -102.165.184.0/22 328276 -102.165.188.0/24 328174 -102.165.189.0/24 328280 -102.165.190.0/24 328295 -102.165.192.0/18 37315 -102.166.0.0/15 12455 -102.168.0.0/13 37693 -102.176.0.0/17 29614 -102.176.129.0/24 6774 -102.176.130.0/24 6774 -102.176.160.0/20 37612 -102.176.176.0/22 328316 -102.176.180.0/22 328271 -102.176.184.0/22 328306 -102.176.188.0/23 328289 -102.176.192.0/19 327984 -102.176.224.0/21 32437 -102.176.232.0/22 32437 -102.176.236.0/23 32437 -102.176.238.0/24 32437 -102.176.239.0/24 328365 -102.176.240.0/22 328256 -102.176.244.0/22 37682 -102.176.248.0/23 328274 -102.176.250.0/24 328300 -102.176.251.0/24 328260 -102.176.252.0/22 328293 -102.177.0.0/18 37356 -102.177.64.0/21 328262 -102.177.72.0/22 328269 -102.177.80.0/21 327900 -102.177.88.0/23 328515 -102.177.90.0/24 328515 -102.177.96.0/23 39356 -102.177.100.0/22 328261 -102.177.104.0/21 328251 -102.177.112.0/20 25818 -102.177.128.0/21 328239 -102.177.136.0/23 328239 -102.177.138.0/24 328239 -102.177.141.0/24 328239 -102.177.142.0/24 328239 -102.177.145.0/24 328239 -102.177.146.0/23 328239 -102.177.148.0/23 328239 -102.177.151.0/24 328239 -102.177.152.0/24 328239 -102.177.158.0/24 328239 -102.177.160.0/22 328239 -102.177.170.0/24 328239 -102.177.192.0/18 328230 -102.178.0.0/15 37577 -102.180.0.0/16 37577 -102.181.0.0/17 36972 -102.181.128.0/18 36972 -102.181.192.0/19 36972 -102.182.0.0/16 37611 -102.183.0.0/16 37410 -102.184.0.0/13 24835 -102.244.0.0/14 36912 -102.248.0.0/18 37457 -102.248.64.0/19 37457 -102.248.96.0/19 37251 -102.248.128.0/17 37457 -102.249.0.0/20 37457 -102.249.16.0/20 5713 -102.249.32.0/19 5713 -102.249.64.0/18 5713 -102.249.128.0/18 5713 -102.249.192.0/18 37457 -102.250.0.0/16 37457 -102.251.0.0/17 37251 -102.251.128.0/17 37457 -102.252.0.0/18 37251 -102.252.64.0/20 37457 -102.252.80.0/20 37251 -102.252.96.0/19 37251 -102.252.128.0/18 37251 -102.252.192.0/18 37457 -102.253.0.0/18 37457 -102.253.64.0/18 5713 -102.253.128.0/18 5713 -102.253.192.0/18 37457 -102.254.0.0/16 37457 -102.255.0.0/16 5713 -103.0.0.0/16 7575 -103.1.5.0/24 56172 -103.1.7.0/24 55567 -103.1.8.0/23 4847 -103.1.12.0/22 131188 -103.1.16.0/22 17924 -103.1.28.0/22 131267 -103.1.32.0/22 45750 -103.1.40.0/22 38197 -103.1.44.0/24 45816 -103.1.46.0/24 45816 -103.1.47.0/24 55480 -103.1.48.0/22 45932 -103.1.52.0/22 24233 -103.1.56.0/22 7545 -103.1.60.0/22 17978 -103.1.64.0/22 10099 -103.1.68.0/22 45960 -103.1.72.0/22 57110 -103.1.80.0/22 38571 -103.1.92.0/22 55915 -103.1.96.0/22 7131 -103.1.100.0/22 45916 -103.1.104.0/22 4788 -103.1.108.0/22 7490 -103.1.112.0/22 18229 -103.1.116.0/22 7629 -103.1.120.0/22 7514 -103.1.128.0/24 38306 -103.1.130.0/23 38306 -103.1.136.0/22 4773 -103.1.140.0/22 23720 -103.1.144.0/22 38466 -103.1.148.0/22 45945 -103.1.152.0/23 134520 -103.1.154.0/24 134520 -103.1.155.0/24 55799 -103.1.160.0/22 4621 -103.1.164.0/22 24378 -103.1.168.0/22 63590 -103.1.172.0/22 26496 -103.1.176.0/22 5087 -103.1.180.0/22 45355 -103.1.184.0/22 133159 -103.1.188.0/23 45654 -103.1.190.0/24 45654 -103.1.191.0/24 58507 -103.1.192.0/22 55532 -103.1.204.0/23 45570 -103.1.206.0/24 45570 -103.1.208.0/22 38731 -103.1.212.0/22 137409 -103.1.216.0/22 9268 -103.1.220.0/22 131149 -103.1.224.0/22 45753 -103.1.228.0/22 17766 -103.1.232.0/22 55508 -103.1.236.0/22 45544 -103.1.240.0/23 24338 -103.1.244.0/22 17698 -103.1.248.0/22 55383 -103.2.0.0/22 55385 -103.2.4.0/22 7679 -103.2.8.0/23 24257 -103.2.20.0/22 18126 -103.2.24.0/22 17693 -103.2.28.0/24 38631 -103.2.29.0/24 17661 -103.2.30.0/23 38631 -103.2.32.0/22 24259 -103.2.36.0/22 9997 -103.2.44.0/22 4686 -103.2.48.0/22 2527 -103.2.56.0/22 2497 -103.2.60.0/22 7505 -103.2.64.0/22 18260 -103.2.68.0/24 10015 -103.2.72.0/22 24572 -103.2.80.0/22 45661 -103.2.88.0/24 134525 -103.2.92.0/22 4766 -103.2.96.0/22 17958 -103.2.104.0/23 9911 -103.2.106.0/24 132804 -103.2.107.0/24 132805 -103.2.108.0/22 4808 -103.2.116.0/22 10084 -103.2.120.0/22 18015 -103.2.128.0/22 38639 -103.2.132.0/22 23860 -103.2.136.0/22 9365 -103.2.140.0/22 23352 -103.2.145.0/24 38896 -103.2.146.0/23 38896 -103.2.148.0/22 18001 -103.2.152.0/22 45356 -103.2.168.0/22 9268 -103.2.176.0/22 56203 -103.2.180.0/22 4628 -103.2.184.0/22 45345 -103.2.192.0/22 58634 -103.2.196.0/23 45671 -103.2.204.0/22 4812 -103.2.208.0/22 7497 -103.2.220.0/23 55313 -103.2.232.0/22 131210 -103.2.236.0/22 45194 -103.2.244.0/22 55898 -103.2.248.0/22 55391 -103.2.252.0/22 55392 -103.3.0.0/22 17941 -103.3.4.0/22 9378 -103.3.12.0/22 7522 -103.3.16.0/23 132827 -103.3.18.0/24 17819 -103.3.19.0/24 132827 -103.3.20.0/22 10030 -103.3.24.0/24 45474 -103.3.26.0/23 45474 -103.3.28.0/22 2519 -103.3.32.0/22 17917 -103.3.40.0/23 17762 -103.3.42.0/24 58608 -103.3.43.0/24 17762 -103.3.44.0/23 56235 -103.3.46.0/24 56237 -103.3.47.0/24 56238 -103.3.48.0/22 24282 -103.3.52.0/22 9614 -103.3.56.0/23 16625 -103.3.58.0/23 45289 -103.3.60.0/22 63949 -103.3.64.0/24 45430 -103.3.65.0/24 45458 -103.3.66.0/23 45458 -103.3.68.0/23 59149 -103.3.70.0/24 56236 -103.3.71.0/24 56240 -103.3.72.0/22 56229 -103.3.76.0/22 9341 -103.3.80.0/22 56262 -103.3.96.0/22 4837 -103.3.112.0/22 4837 -103.3.120.0/22 4808 -103.3.124.0/22 4837 -103.3.128.0/22 9394 -103.3.136.0/22 4837 -103.3.140.0/23 4837 -103.3.142.0/24 139007 -103.3.143.0/24 4837 -103.3.144.0/22 9519 -103.3.152.0/22 4837 -103.3.156.0/22 9929 -103.3.164.0/24 7595 -103.3.165.0/24 9930 -103.3.166.0/24 46475 -103.3.168.0/22 55792 -103.3.172.0/22 45352 -103.3.176.0/22 7470 -103.3.180.0/22 37903 -103.3.184.0/22 17534 -103.3.188.0/22 7506 -103.3.192.0/22 38851 -103.3.196.0/24 17755 -103.3.197.0/24 132016 -103.3.198.0/24 9466 -103.3.199.0/24 132016 -103.3.200.0/22 10024 -103.3.208.0/22 18004 -103.3.212.0/22 38149 -103.3.216.0/22 56263 -103.3.220.0/22 17885 -103.3.224.0/22 56264 -103.3.228.0/22 56272 -103.3.232.0/24 9790 -103.3.234.0/23 9790 -103.3.236.0/22 56265 -103.3.240.0/22 7131 -103.3.244.0/22 135905 -103.3.248.0/22 56147 -103.3.252.0/22 56149 -103.4.0.0/22 18059 -103.4.6.0/24 45144 -103.4.7.0/24 45352 -103.4.8.0/21 16509 -103.4.16.0/22 58940 -103.4.20.0/22 26658 -103.4.24.0/22 26658 -103.4.28.0/22 55720 -103.4.32.0/22 17676 -103.4.36.0/23 56289 -103.4.38.0/23 136169 -103.4.40.0/22 7677 -103.4.48.0/22 55604 -103.4.52.0/23 46062 -103.4.54.0/24 46062 -103.4.56.0/22 56003 -103.4.60.0/24 56294 -103.4.61.0/24 38172 -103.4.62.0/23 56294 -103.4.64.0/22 24323 -103.4.68.0/22 10010 -103.4.72.0/22 56017 -103.4.84.0/23 58528 -103.4.86.0/24 56074 -103.4.87.0/24 58528 -103.4.88.0/22 45331 -103.4.92.0/22 45773 -103.4.96.0/22 32934 -103.4.100.0/24 56303 -103.4.104.0/23 9304 -103.4.106.0/24 9919 -103.4.108.0/22 10102 -103.4.112.0/23 24043 -103.4.114.0/23 55497 -103.4.116.0/22 38203 -103.4.120.0/24 131315 -103.4.121.0/24 131318 -103.4.122.0/23 131316 -103.4.124.0/22 133466 -103.4.128.0/22 131342 -103.4.132.0/23 131455 -103.4.136.0/22 56030 -103.4.140.0/22 4788 -103.4.144.0/22 9441 -103.4.152.0/22 23655 -103.4.156.0/22 131460 -103.4.160.0/22 9472 -103.4.164.0/22 58369 -103.4.172.0/23 58505 -103.4.174.0/23 56251 -103.4.176.0/21 4766 -103.4.188.0/22 131467 -103.4.194.0/23 36351 -103.4.196.0/22 18106 -103.4.200.0/24 36408 -103.4.201.0/24 54994 -103.4.203.0/24 54994 -103.4.205.0/24 131474 -103.4.206.0/23 55698 -103.4.208.0/22 55832 -103.4.212.0/22 9268 -103.4.216.0/22 63940 -103.4.221.0/24 131473 -103.4.222.0/24 131473 -103.4.228.0/22 38794 -103.4.233.0/24 136639 -103.4.234.0/23 133159 -103.4.236.0/22 131476 -103.4.243.0/24 56252 -103.4.244.0/22 55350 -103.4.248.0/22 133660 -103.4.254.0/23 9752 -103.5.0.0/22 132021 -103.5.4.0/22 55821 -103.5.8.0/23 45452 -103.5.12.0/22 16276 -103.5.16.0/22 17483 -103.5.23.0/24 2497 -103.5.24.0/23 132032 -103.5.28.0/24 58631 -103.5.29.0/24 58422 -103.5.30.0/23 131345 -103.5.32.0/22 24157 -103.5.40.0/22 10010 -103.5.44.0/24 45634 -103.5.45.0/24 135387 -103.5.46.0/24 135387 -103.5.47.0/24 45634 -103.5.50.0/23 58381 -103.5.52.0/24 134763 -103.5.54.0/23 131477 -103.5.56.0/22 17816 -103.5.60.0/22 45499 -103.5.64.0/23 131904 -103.5.66.0/23 17819 -103.5.68.0/23 58440 -103.5.70.0/24 56290 -103.5.71.0/24 132027 -103.5.72.0/23 58423 -103.5.75.0/24 58423 -103.5.76.0/24 55575 -103.5.78.0/24 132028 -103.5.80.0/22 24189 -103.5.84.0/24 23682 -103.5.85.0/24 18101 -103.5.86.0/24 23682 -103.5.88.0/24 7490 -103.5.90.0/23 56081 -103.5.92.0/22 58979 -103.5.100.0/22 38851 -103.5.105.0/24 132033 -103.5.106.0/24 134778 -103.5.107.0/24 38320 -103.5.108.0/22 132031 -103.5.112.0/22 131459 -103.5.116.0/22 17408 -103.5.120.0/22 45142 -103.5.124.0/22 58424 -103.5.128.0/22 17573 -103.5.132.0/22 55947 -103.5.136.0/22 4686 -103.5.140.0/22 131160 -103.5.144.0/22 55592 -103.5.148.0/24 58387 -103.5.150.0/24 58456 -103.5.151.0/24 58436 -103.5.156.0/22 18119 -103.5.164.0/22 24220 -103.5.168.0/22 4837 -103.5.172.0/22 58427 -103.5.176.0/22 55894 -103.5.180.0/22 132035 -103.5.184.0/22 55879 -103.5.188.0/22 38207 -103.5.192.0/22 4812 -103.5.196.0/23 132467 -103.5.198.0/24 58426 -103.5.200.0/22 18002 -103.5.204.0/23 131347 -103.5.208.0/22 24088 -103.5.212.0/23 135516 -103.5.214.0/24 133121 -103.5.215.0/24 16625 -103.5.220.0/22 9304 -103.5.224.0/23 4768 -103.5.227.0/24 4768 -103.5.228.0/23 58433 -103.5.230.0/23 24441 -103.5.232.0/22 38592 -103.5.236.0/22 9930 -103.5.240.0/24 23864 -103.5.241.0/24 136968 -103.5.242.0/23 23855 -103.5.249.0/24 132827 -103.5.251.0/24 17819 -103.6.0.0/23 58497 -103.6.2.0/24 132144 -103.6.3.0/24 134754 -103.6.4.0/24 55361 -103.6.5.0/24 32242 -103.6.6.0/23 55361 -103.6.8.0/22 17726 -103.6.12.0/22 132145 -103.6.16.0/22 9354 -103.6.20.0/22 17408 -103.6.24.0/23 58533 -103.6.26.0/24 132150 -103.6.27.0/24 132151 -103.6.28.0/23 24466 -103.6.30.0/24 24466 -103.6.32.0/23 132152 -103.6.36.0/24 24212 -103.6.40.0/22 18059 -103.6.44.0/22 2516 -103.6.48.0/22 9381 -103.6.52.0/22 45731 -103.6.56.0/22 18097 -103.6.60.0/24 10021 -103.6.61.0/24 132827 -103.6.62.0/24 17819 -103.6.63.0/24 132827 -103.6.72.0/23 55592 -103.6.75.0/24 55592 -103.6.76.0/22 23724 -103.6.80.0/22 9318 -103.6.84.0/22 36236 -103.6.88.0/24 58872 -103.6.89.0/24 38833 -103.6.90.0/23 134278 -103.6.96.0/22 38909 -103.6.100.0/22 9286 -103.6.104.0/24 134966 -103.6.105.0/24 45657 -103.6.106.0/23 132265 -103.6.116.0/24 132162 -103.6.117.0/24 132164 -103.6.128.0/22 41095 -103.6.132.0/22 132166 -103.6.136.0/21 9381 -103.6.144.0/22 24466 -103.6.148.0/24 132132 -103.6.149.0/24 133136 -103.6.150.0/23 56300 -103.6.152.0/22 9381 -103.6.156.0/22 132556 -103.6.162.0/24 132201 -103.6.163.0/24 132170 -103.6.164.0/24 58537 -103.6.165.0/24 132172 -103.6.167.0/24 4755 -103.6.172.0/24 23576 -103.6.174.0/23 23576 -103.6.176.0/22 9381 -103.6.180.0/24 16625 -103.6.181.0/24 132193 -103.6.182.0/23 45530 -103.6.184.0/22 133720 -103.6.188.0/23 38333 -103.6.190.0/23 17734 -103.6.192.0/22 58451 -103.6.196.0/22 46015 -103.6.204.0/22 58503 -103.6.208.0/22 38595 -103.6.212.0/23 24466 -103.6.214.0/24 131112 -103.6.215.0/24 132682 -103.6.216.0/22 6939 -103.6.220.0/23 4812 -103.6.222.0/23 17621 -103.6.224.0/22 4686 -103.6.236.0/22 132197 -103.6.240.0/22 132827 -103.6.244.0/23 132198 -103.6.246.0/24 45352 -103.6.247.0/24 132198 -103.6.248.0/22 132204 -103.6.252.0/22 10148 -103.7.0.0/23 38788 -103.7.4.0/24 55355 -103.7.8.0/22 38532 -103.7.12.0/22 131693 -103.7.16.0/22 56050 -103.7.20.0/22 17514 -103.7.24.0/22 38566 -103.7.28.0/22 132203 -103.7.32.0/24 55592 -103.7.33.0/24 4766 -103.7.34.0/23 4766 -103.7.36.0/22 38247 -103.7.40.0/22 45544 -103.7.44.0/23 131270 -103.7.46.0/24 58559 -103.7.47.0/24 131270 -103.7.48.0/22 38195 -103.7.52.0/23 58488 -103.7.54.0/24 9293 -103.7.55.0/24 58579 -103.7.56.0/22 131447 -103.7.60.0/22 9541 -103.7.64.0/22 132208 -103.7.68.0/22 38199 -103.7.72.0/23 55931 -103.7.74.0/24 55931 -103.7.75.0/24 7490 -103.7.76.0/22 24499 -103.7.80.0/22 45954 -103.7.88.0/22 38289 -103.7.96.0/24 4768 -103.7.98.0/24 9482 -103.7.100.0/22 9246 -103.7.104.0/22 55330 -103.7.112.0/22 17471 -103.7.116.0/22 2519 -103.7.124.0/23 58562 -103.7.128.0/22 132215 -103.7.132.0/22 18097 -103.7.147.0/24 12740 -103.7.148.0/22 132220 -103.7.152.0/22 17676 -103.7.156.0/22 58578 -103.7.160.0/22 209 -103.7.164.0/22 17477 -103.7.168.0/22 24192 -103.7.172.0/24 131369 -103.7.177.0/24 131357 -103.7.181.0/24 133296 -103.7.183.0/24 133296 -103.7.184.0/23 134366 -103.7.186.0/24 45713 -103.7.187.0/24 18059 -103.7.188.0/23 58707 -103.7.190.0/23 45972 -103.7.196.0/24 131354 -103.7.197.0/24 132228 -103.7.198.0/23 17941 -103.7.200.0/23 56300 -103.7.202.0/24 133136 -103.7.203.0/24 56300 -103.7.204.0/22 133320 -103.7.208.0/22 17819 -103.7.212.0/22 4837 -103.7.224.0/24 132229 -103.7.225.0/24 131697 -103.7.226.0/23 59135 -103.7.228.0/22 131699 -103.7.232.0/24 132230 -103.7.236.0/24 38638 -103.7.237.0/24 136782 -103.7.238.0/24 136782 -103.7.239.0/24 38638 -103.7.244.0/22 38120 -103.7.248.0/22 10075 -103.7.252.0/22 132232 -103.8.8.0/22 55973 -103.8.12.0/24 131703 -103.8.13.0/24 131355 -103.8.14.0/23 56126 -103.8.16.0/22 45230 -103.8.20.0/22 2519 -103.8.24.0/22 132241 -103.8.28.0/23 58580 -103.8.30.0/23 132236 -103.8.32.0/24 4134 -103.8.34.0/23 4837 -103.8.40.0/22 45235 -103.8.44.0/23 131317 -103.8.46.0/24 55740 -103.8.48.0/22 2554 -103.8.52.0/22 56013 -103.8.58.0/23 45707 -103.8.61.0/24 58582 -103.8.62.0/24 132239 -103.8.72.0/23 132240 -103.8.76.0/23 45320 -103.8.78.0/23 58551 -103.8.82.0/24 45950 -103.8.84.0/24 15412 -103.8.85.0/24 9311 -103.8.86.0/24 15412 -103.8.87.0/24 9311 -103.8.88.0/22 17941 -103.8.92.0/22 17676 -103.8.100.0/22 55615 -103.8.112.0/22 133495 -103.8.116.0/22 135225 -103.8.120.0/24 132242 -103.8.121.0/24 64059 -103.8.122.0/24 131708 -103.8.124.0/22 18229 -103.8.128.0/22 56134 -103.8.132.0/22 132245 -103.8.138.0/24 703 -103.8.140.0/22 9876 -103.8.144.0/22 17564 -103.8.148.0/22 17762 -103.8.152.0/22 45794 -103.8.156.0/22 23724 -103.8.160.0/22 17564 -103.8.164.0/22 55352 -103.8.168.0/22 45762 -103.8.172.0/22 16509 -103.8.176.0/21 24121 -103.8.188.0/23 132043 -103.8.190.0/24 131337 -103.8.191.0/24 132252 -103.8.194.0/23 135754 -103.8.196.0/22 131899 -103.8.204.0/22 7641 -103.8.208.0/24 56134 -103.8.212.0/23 132253 -103.8.214.0/24 58602 -103.8.216.0/23 58597 -103.8.220.0/22 4808 -103.8.228.0/24 131715 -103.8.229.0/24 58589 -103.8.230.0/24 9275 -103.8.231.0/24 58876 -103.8.232.0/22 132255 -103.8.236.0/23 132257 -103.8.238.0/24 132634 -103.8.239.0/24 58591 -103.8.240.0/22 2519 -103.8.248.0/22 58590 -103.8.252.0/22 23838 -103.9.0.0/22 131358 -103.9.4.0/22 131360 -103.9.8.0/22 58593 -103.9.12.0/22 58594 -103.9.20.0/23 134787 -103.9.22.0/24 131709 -103.9.23.0/24 58617 -103.9.28.0/22 4686 -103.9.32.0/22 9951 -103.9.36.0/22 131710 -103.9.40.0/22 58600 -103.9.44.0/24 18059 -103.9.50.0/24 132468 -103.9.51.0/24 55720 -103.9.52.0/22 135513 -103.9.56.0/22 45152 -103.9.60.0/22 38084 -103.9.64.0/22 7604 -103.9.68.0/22 58927 -103.9.72.0/22 55644 -103.9.76.0/22 45899 -103.9.84.0/22 131365 -103.9.88.0/22 45204 -103.9.92.0/22 17819 -103.9.96.0/23 7583 -103.9.99.0/24 27471 -103.9.100.0/22 58621 -103.9.104.0/23 58599 -103.9.106.0/24 132268 -103.9.107.0/24 134636 -103.9.112.0/22 58601 -103.9.116.0/24 55789 -103.9.119.0/24 55789 -103.9.124.0/22 131711 -103.9.128.0/22 38676 -103.9.132.0/22 9832 -103.9.136.0/24 132267 -103.9.138.0/23 132267 -103.9.144.0/22 131713 -103.9.148.0/22 55720 -103.9.156.0/22 63730 -103.9.160.0/22 38716 -103.9.164.0/23 17819 -103.9.166.0/24 4686 -103.9.168.0/22 45638 -103.9.172.0/23 55905 -103.9.174.0/24 55905 -103.9.176.0/22 132233 -103.9.180.0/24 55908 -103.9.181.0/24 58615 -103.9.182.0/24 55541 -103.9.183.0/24 134627 -103.9.184.0/24 58616 -103.9.185.0/24 63967 -103.9.186.0/24 58616 -103.9.187.0/24 63967 -103.9.188.0/22 38901 -103.9.192.0/22 135386 -103.9.196.0/22 45903 -103.9.200.0/22 131363 -103.9.204.0/23 131361 -103.9.206.0/23 135905 -103.9.208.0/22 24088 -103.9.212.0/23 131362 -103.9.214.0/24 131362 -103.9.216.0/22 9245 -103.9.220.0/24 132305 -103.9.222.0/23 55711 -103.9.224.0/24 132306 -103.9.225.0/24 45150 -103.9.226.0/24 60725 -103.9.227.0/24 131724 -103.9.228.0/22 133747 -103.9.232.0/22 132308 -103.9.236.0/23 133401 -103.9.238.0/23 45177 -103.9.240.0/22 132309 -103.9.244.0/22 58627 -103.9.248.0/22 4837 -103.9.252.0/22 23650 -103.10.0.0/22 59083 -103.10.4.0/22 131144 -103.10.8.0/24 38830 -103.10.9.0/24 56285 -103.10.11.0/24 56271 -103.10.12.0/22 9304 -103.10.20.0/22 56293 -103.10.24.0/22 58703 -103.10.28.0/22 45650 -103.10.32.0/22 9797 -103.10.36.0/24 17819 -103.10.37.0/24 9919 -103.10.38.0/24 132827 -103.10.39.0/24 10021 -103.10.40.0/22 56092 -103.10.44.0/22 45899 -103.10.48.0/24 131446 -103.10.49.0/24 1221 -103.10.50.0/24 7545 -103.10.51.0/24 131294 -103.10.52.0/22 55828 -103.10.56.0/24 56241 -103.10.57.0/24 132038 -103.10.58.0/23 56242 -103.10.60.0/22 38758 -103.10.64.0/22 45727 -103.10.72.0/22 134688 -103.10.80.0/23 56245 -103.10.82.0/24 17473 -103.10.84.0/22 4808 -103.10.88.0/22 56148 -103.10.92.0/22 10054 -103.10.96.0/22 18103 -103.10.100.0/22 17547 -103.10.104.0/22 17553 -103.10.109.0/24 11911 -103.10.110.0/24 56248 -103.10.116.0/22 55814 -103.10.120.0/22 56246 -103.10.124.0/23 32590 -103.10.126.0/24 58409 -103.10.128.0/22 58449 -103.10.132.0/22 45582 -103.10.137.0/24 133808 -103.10.144.0/24 46057 -103.10.145.0/24 56241 -103.10.146.0/23 56253 -103.10.152.0/22 23930 -103.10.156.0/22 45352 -103.10.160.0/23 9930 -103.10.164.0/22 37908 -103.10.168.0/24 131787 -103.10.169.0/24 56254 -103.10.170.0/23 56255 -103.10.172.0/22 26658 -103.10.176.0/23 4775 -103.10.188.0/22 55470 -103.10.196.0/24 134520 -103.10.197.0/24 55536 -103.10.198.0/24 134520 -103.10.199.0/24 55536 -103.10.200.0/22 45559 -103.10.204.0/23 45599 -103.10.206.0/24 45599 -103.10.208.0/24 45804 -103.10.210.0/23 45804 -103.10.212.0/22 131343 -103.10.216.0/22 10054 -103.10.220.0/23 131790 -103.10.222.0/24 38275 -103.10.223.0/24 38750 -103.10.224.0/22 17665 -103.10.228.0/22 131090 -103.10.233.0/24 132003 -103.10.234.0/23 56110 -103.10.236.0/22 132827 -103.10.240.0/22 55891 -103.10.249.0/24 131993 -103.10.252.0/24 58419 -103.10.253.0/24 56259 -103.10.254.0/23 9235 -103.11.0.0/22 136525 -103.11.4.0/23 17819 -103.11.6.0/23 17408 -103.11.8.0/24 45838 -103.11.10.0/24 45838 -103.11.12.0/24 58430 -103.11.13.0/24 17887 -103.11.14.0/23 17887 -103.11.21.0/24 58396 -103.11.22.0/23 58390 -103.11.24.0/22 38690 -103.11.28.0/24 58552 -103.11.29.0/24 56246 -103.11.30.0/24 58552 -103.11.31.0/24 56246 -103.11.32.0/22 132124 -103.11.36.0/24 55480 -103.11.38.0/23 55480 -103.11.40.0/22 132046 -103.11.44.0/22 9976 -103.11.48.0/24 56300 -103.11.49.0/24 132047 -103.11.52.0/22 45671 -103.11.56.0/22 4766 -103.11.60.0/24 9387 -103.11.62.0/24 9387 -103.11.64.0/23 7489 -103.11.66.0/24 397651 -103.11.67.0/24 18450 -103.11.68.0/22 38547 -103.11.72.0/23 45561 -103.11.74.0/23 55660 -103.11.80.0/22 135817 -103.11.84.0/23 132052 -103.11.86.0/24 132052 -103.11.88.0/22 24334 -103.11.92.0/24 132084 -103.11.94.0/23 10032 -103.11.96.0/22 55653 -103.11.100.0/24 58779 -103.11.101.0/24 132056 -103.11.102.0/23 132056 -103.11.104.0/23 19993 -103.11.106.0/23 58482 -103.11.109.0/24 58453 -103.11.112.0/24 132059 -103.11.114.0/23 132059 -103.11.116.0/22 45117 -103.11.120.0/22 132827 -103.11.124.0/22 38477 -103.11.128.0/22 3786 -103.11.132.0/23 58391 -103.11.134.0/23 58392 -103.11.136.0/22 58445 -103.11.140.0/23 9234 -103.11.142.0/24 58446 -103.11.143.0/24 58436 -103.11.144.0/22 9290 -103.11.150.0/23 58436 -103.11.152.0/22 133296 -103.11.156.0/22 55394 -103.11.160.0/23 132160 -103.11.162.0/23 38456 -103.11.164.0/23 10780 -103.11.172.0/22 131348 -103.11.178.0/24 132066 -103.11.179.0/24 58394 -103.11.186.0/23 38505 -103.11.188.0/22 58621 -103.11.192.0/22 17882 -103.11.200.0/22 33517 -103.11.206.0/23 45638 -103.11.208.0/22 23822 -103.11.212.0/23 58431 -103.11.215.0/24 58431 -103.11.216.0/22 132080 -103.11.220.0/24 58893 -103.11.222.0/24 58396 -103.11.223.0/24 16625 -103.11.228.0/23 45910 -103.11.236.0/23 132827 -103.11.238.0/24 132827 -103.11.240.0/22 132870 -103.11.244.0/22 58451 -103.11.248.0/22 45361 -103.11.252.0/22 58395 -103.12.1.0/24 132272 -103.12.2.0/24 132277 -103.12.3.0/24 58589 -103.12.4.0/22 55803 -103.12.8.0/24 45671 -103.12.10.0/24 45671 -103.12.11.0/24 58613 -103.12.16.0/22 18121 -103.12.20.0/23 131716 -103.12.22.0/24 135611 -103.12.23.0/24 16625 -103.12.24.0/22 24471 -103.12.28.0/22 55670 -103.12.36.0/22 38220 -103.12.40.0/23 17557 -103.12.42.0/24 17557 -103.12.44.0/22 58623 -103.12.48.0/22 26658 -103.12.52.0/24 15412 -103.12.53.0/24 9311 -103.12.54.0/24 15412 -103.12.55.0/24 9311 -103.12.58.0/24 58893 -103.12.59.0/24 1221 -103.12.60.0/22 133847 -103.12.64.0/22 23678 -103.12.68.0/22 38197 -103.12.72.0/24 58629 -103.12.74.0/23 58629 -103.12.76.0/22 55933 -103.12.80.0/24 131723 -103.12.81.0/24 45732 -103.12.83.0/24 58615 -103.12.84.0/24 131722 -103.12.86.0/23 132315 -103.12.88.0/22 131303 -103.12.100.0/22 38333 -103.12.104.0/22 131364 -103.12.108.0/22 10148 -103.12.112.0/23 131728 -103.12.114.0/24 131728 -103.12.116.0/23 58725 -103.12.118.0/24 58766 -103.12.119.0/24 58725 -103.12.120.0/22 132165 -103.12.124.0/22 18101 -103.12.128.0/22 9268 -103.12.132.0/22 132323 -103.12.140.0/22 132882 -103.12.144.0/22 132326 -103.12.148.0/22 38197 -103.12.152.0/23 45352 -103.12.155.0/24 45352 -103.12.156.0/23 24574 -103.12.158.0/24 55909 -103.12.159.0/24 134791 -103.12.160.0/22 131178 -103.12.164.0/24 131726 -103.12.165.0/24 132330 -103.12.168.0/22 132329 -103.12.172.0/22 58655 -103.12.176.0/22 58656 -103.12.192.0/22 58659 -103.12.196.0/22 136969 -103.12.200.0/22 38611 -103.12.208.0/23 58663 -103.12.210.0/24 132334 -103.12.211.0/24 132335 -103.12.212.0/23 394381 -103.12.216.0/22 9919 -103.12.220.0/22 58552 -103.12.228.0/22 58665 -103.12.232.0/22 56002 -103.12.236.0/22 58668 -103.12.241.0/24 7718 -103.12.242.0/23 9341 -103.12.245.0/24 132338 -103.12.246.0/24 134941 -103.12.247.0/24 132339 -103.12.248.0/22 4766 -103.12.252.0/22 9457 -103.13.0.0/24 134799 -103.13.1.0/24 58609 -103.13.2.0/24 132278 -103.13.8.0/22 56186 -103.13.12.0/23 38057 -103.13.16.0/24 15412 -103.13.17.0/24 9311 -103.13.18.0/24 15412 -103.13.19.0/24 9311 -103.13.20.0/22 29834 -103.13.28.0/22 56309 -103.13.32.0/22 132344 -103.13.36.0/24 131721 -103.13.37.0/24 16625 -103.13.39.0/24 58624 -103.13.45.0/24 9919 -103.13.46.0/24 9919 -103.13.47.0/24 17819 -103.13.50.0/23 131224 -103.13.52.0/24 9532 -103.13.53.0/24 9318 -103.13.54.0/23 9532 -103.13.56.0/22 38880 -103.13.60.0/22 10011 -103.13.64.0/22 131284 -103.13.68.0/24 17819 -103.13.69.0/24 136792 -103.13.70.0/23 17819 -103.13.74.0/24 134809 -103.13.75.0/24 132111 -103.13.76.0/22 131373 -103.13.80.0/22 2914 -103.13.84.0/23 58505 -103.13.86.0/23 132405 -103.13.88.0/22 10226 -103.13.92.0/22 4686 -103.13.96.0/22 18229 -103.13.100.0/22 45671 -103.13.104.0/22 133275 -103.13.108.0/23 133295 -103.13.110.0/24 133295 -103.13.111.0/24 133296 -103.13.112.0/22 133296 -103.13.116.0/23 45177 -103.13.118.0/24 45177 -103.13.119.0/24 56171 -103.13.120.0/23 4769 -103.13.122.0/23 55405 -103.13.128.0/22 55843 -103.13.132.0/23 134804 -103.13.134.0/24 55437 -103.13.135.0/24 51830 -103.13.140.0/22 2516 -103.13.148.0/23 132340 -103.13.152.0/22 59092 -103.13.156.0/23 58670 -103.13.158.0/24 58670 -103.13.168.0/22 58645 -103.13.172.0/22 56197 -103.13.176.0/23 132342 -103.13.178.0/23 132343 -103.13.181.0/24 131741 -103.13.183.0/24 132346 -103.13.184.0/23 134802 -103.13.186.0/23 45671 -103.13.188.0/23 9229 -103.13.190.0/24 9229 -103.13.191.0/24 39356 -103.13.208.0/22 2519 -103.13.212.0/22 17408 -103.13.218.0/24 45671 -103.13.219.0/24 132349 -103.13.220.0/22 138195 -103.13.224.0/23 58672 -103.13.228.0/22 23884 -103.13.236.0/23 58685 -103.13.240.0/22 33182 -103.13.244.0/22 45061 -103.13.248.0/22 55900 -103.13.252.0/22 24279 -103.14.1.0/24 45828 -103.14.2.0/24 132282 -103.14.3.0/24 132284 -103.14.8.0/24 132280 -103.14.10.0/24 136393 -103.14.11.0/24 132876 -103.14.12.0/22 58788 -103.14.16.0/22 55699 -103.14.20.0/23 131717 -103.14.24.0/24 9891 -103.14.26.0/24 134813 -103.14.27.0/24 139629 -103.14.28.0/22 58622 -103.14.33.0/24 135377 -103.14.34.0/23 135377 -103.14.36.0/22 58625 -103.14.40.0/22 45459 -103.14.44.0/23 45312 -103.14.46.0/24 132303 -103.14.47.0/24 56072 -103.14.52.0/22 24130 -103.14.60.0/22 6648 -103.14.64.0/22 55803 -103.14.68.0/22 58666 -103.14.72.0/24 137967 -103.14.73.0/24 132341 -103.14.74.0/23 134632 -103.14.76.0/23 38001 -103.14.78.0/24 133219 -103.14.79.0/24 38001 -103.14.80.0/22 131907 -103.14.88.0/22 58460 -103.14.92.0/24 58637 -103.14.94.0/23 132397 -103.14.96.0/23 58641 -103.14.98.0/24 27257 -103.14.99.0/24 58641 -103.14.100.0/22 38197 -103.14.104.0/22 133296 -103.14.109.0/24 58642 -103.14.110.0/23 56233 -103.14.112.0/22 134548 -103.14.116.0/22 17819 -103.14.120.0/22 132322 -103.14.124.0/22 58640 -103.14.128.0/22 38067 -103.14.132.0/23 4837 -103.14.136.0/22 56013 -103.14.140.0/22 132347 -103.14.144.0/22 58451 -103.14.149.0/24 23818 -103.14.152.0/23 23818 -103.14.160.0/23 132351 -103.14.162.0/24 132351 -103.14.164.0/22 17408 -103.14.172.0/24 45654 -103.14.173.0/24 132382 -103.14.174.0/24 132382 -103.14.175.0/24 45654 -103.14.176.0/22 17408 -103.14.181.0/24 55832 -103.14.182.0/23 55832 -103.14.184.0/24 132354 -103.14.185.0/24 132356 -103.14.186.0/23 132355 -103.14.188.0/22 38874 -103.14.192.0/24 46039 -103.14.193.0/24 58642 -103.14.194.0/24 58677 -103.14.195.0/24 56233 -103.14.196.0/22 134289 -103.14.200.0/23 138611 -103.14.204.0/22 58684 -103.14.208.0/22 133320 -103.14.212.0/22 132425 -103.14.216.0/22 132161 -103.14.220.0/22 16552 -103.14.228.0/24 132360 -103.14.229.0/24 45316 -103.14.230.0/24 7468 -103.14.232.0/22 58678 -103.14.236.0/22 17547 -103.14.244.0/22 24482 -103.14.248.0/22 131207 -103.14.252.0/23 132361 -103.15.0.0/22 9371 -103.15.4.0/22 4859 -103.15.20.0/22 45910 -103.15.24.0/22 132364 -103.15.28.0/22 55639 -103.15.32.0/24 9311 -103.15.33.0/24 17408 -103.15.34.0/24 9311 -103.15.35.0/24 17408 -103.15.36.0/23 58499 -103.15.39.0/24 55912 -103.15.40.0/24 58682 -103.15.41.0/24 54994 -103.15.42.0/24 58682 -103.15.43.0/24 9441 -103.15.48.0/22 45538 -103.15.52.0/22 55832 -103.15.56.0/22 131215 -103.15.60.0/22 59164 -103.15.64.0/22 55353 -103.15.73.0/24 132370 -103.15.74.0/24 4755 -103.15.75.0/24 58742 -103.15.76.0/24 17408 -103.15.77.0/24 9311 -103.15.78.0/24 17408 -103.15.79.0/24 9311 -103.15.80.0/22 45232 -103.15.84.0/24 9231 -103.15.85.0/24 137872 -103.15.86.0/24 137872 -103.15.87.0/24 9231 -103.15.96.0/22 23724 -103.15.100.0/22 4628 -103.15.104.0/22 55720 -103.15.108.0/22 2519 -103.15.114.0/23 38009 -103.15.116.0/22 132827 -103.15.120.0/24 38478 -103.15.122.0/23 38478 -103.15.124.0/24 38573 -103.15.128.0/22 58687 -103.15.132.0/24 133380 -103.15.135.0/24 133380 -103.15.136.0/22 132376 -103.15.140.0/23 58689 -103.15.142.0/24 132306 -103.15.143.0/24 16625 -103.15.144.0/22 58690 -103.15.148.0/22 17551 -103.15.152.0/22 56304 -103.15.159.0/24 132378 -103.15.164.0/22 58691 -103.15.168.0/23 132379 -103.15.170.0/23 201755 -103.15.176.0/24 132346 -103.15.177.0/24 136469 -103.15.179.0/24 58700 -103.15.180.0/23 23881 -103.15.182.0/24 46844 -103.15.183.0/24 23881 -103.15.184.0/22 2519 -103.15.188.0/22 17939 -103.15.192.0/24 23881 -103.15.193.0/24 60068 -103.15.194.0/23 23881 -103.15.196.0/22 23881 -103.15.200.0/22 4134 -103.15.204.0/22 24130 -103.15.208.0/22 132484 -103.15.216.0/23 133380 -103.15.218.0/24 133380 -103.15.224.0/23 58695 -103.15.226.0/24 136052 -103.15.232.0/22 58621 -103.15.236.0/23 45671 -103.15.238.0/23 58697 -103.15.240.0/22 131735 -103.15.244.0/22 58717 -103.15.248.0/23 132387 -103.15.250.0/24 132388 -103.15.251.0/24 131737 -103.16.0.0/22 131375 -103.16.6.0/23 131235 -103.16.8.0/22 23818 -103.16.12.0/23 132556 -103.16.14.0/24 132556 -103.16.15.0/24 9249 -103.16.16.0/22 58436 -103.16.20.0/22 4049 -103.16.24.0/23 134812 -103.16.26.0/23 132597 -103.16.28.0/22 132116 -103.16.32.0/22 55832 -103.16.36.0/22 132827 -103.16.40.0/24 133437 -103.16.41.0/24 45352 -103.16.42.0/24 45352 -103.16.45.0/24 132556 -103.16.46.0/24 132556 -103.16.47.0/24 17439 -103.16.50.0/24 38573 -103.16.51.0/24 132594 -103.16.57.0/24 135794 -103.16.59.0/24 135794 -103.16.60.0/22 132599 -103.16.64.0/23 38809 -103.16.68.0/22 132559 -103.16.72.0/22 24122 -103.16.77.0/24 16625 -103.16.78.0/24 131772 -103.16.79.0/24 131785 -103.16.92.0/22 38333 -103.16.96.0/22 45437 -103.16.100.0/24 132563 -103.16.101.0/24 4755 -103.16.104.0/22 132562 -103.16.112.0/22 38753 -103.16.120.0/22 55303 -103.16.124.0/22 23724 -103.16.128.0/22 133159 -103.16.132.0/23 131769 -103.16.134.0/23 38716 -103.16.136.0/24 4761 -103.16.137.0/24 138077 -103.16.138.0/24 63631 -103.16.140.0/22 132564 -103.16.144.0/23 132768 -103.16.146.0/24 58438 -103.16.147.0/24 132768 -103.16.148.0/22 17766 -103.16.152.0/22 132602 -103.16.156.0/23 58460 -103.16.159.0/24 58460 -103.16.160.0/22 4686 -103.16.165.0/24 133311 -103.16.168.0/22 55821 -103.16.172.0/23 132240 -103.16.174.0/24 136436 -103.16.180.0/23 24466 -103.16.182.0/23 58812 -103.16.184.0/22 2514 -103.16.192.0/22 132603 -103.16.196.0/24 58438 -103.16.197.0/24 16625 -103.16.198.0/23 131775 -103.16.200.0/22 24309 -103.16.204.0/22 45758 -103.16.210.0/23 132611 -103.16.216.0/22 132610 -103.16.220.0/24 131779 -103.16.221.0/24 132613 -103.16.222.0/24 17439 -103.16.223.0/24 131776 -103.16.224.0/22 4686 -103.16.228.0/22 133398 -103.16.236.0/22 38628 -103.16.252.0/22 6421 -103.17.0.0/22 133320 -103.17.8.0/22 131149 -103.17.12.0/22 134785 -103.17.16.0/23 9268 -103.17.18.0/24 55779 -103.17.19.0/24 132354 -103.17.20.0/22 132615 -103.17.24.0/22 55303 -103.17.28.0/22 3491 -103.17.36.0/22 58813 -103.17.40.0/22 4808 -103.17.44.0/22 56055 -103.17.48.0/22 59162 -103.17.52.0/22 38769 -103.17.56.0/24 133159 -103.17.58.0/24 131783 -103.17.59.0/24 132620 -103.17.60.0/22 55424 -103.17.68.0/22 58814 -103.17.72.0/22 9381 -103.17.76.0/24 131781 -103.17.79.0/24 131782 -103.17.80.0/22 56209 -103.17.84.0/22 45775 -103.17.88.0/22 45557 -103.17.92.0/24 134548 -103.17.93.0/24 135026 -103.17.94.0/24 135026 -103.17.96.0/24 58438 -103.17.97.0/24 132768 -103.17.98.0/24 132768 -103.17.99.0/24 58438 -103.17.100.0/24 17665 -103.17.101.0/24 132573 -103.17.102.0/24 17665 -103.17.103.0/24 132573 -103.17.104.0/23 45415 -103.17.106.0/24 45415 -103.17.107.0/24 132573 -103.17.108.0/23 56301 -103.17.111.0/24 133301 -103.17.116.0/22 135357 -103.17.120.0/24 56001 -103.17.124.0/23 56109 -103.17.126.0/24 30524 -103.17.127.0/24 9891 -103.17.128.0/24 17665 -103.17.129.0/24 132573 -103.17.130.0/23 17665 -103.17.132.0/22 132616 -103.17.144.0/23 4657 -103.17.146.0/24 55430 -103.17.147.0/24 4657 -103.17.152.0/22 132627 -103.17.156.0/22 17665 -103.17.164.0/24 131784 -103.17.165.0/24 55330 -103.17.176.0/22 4686 -103.17.180.0/23 58826 -103.17.184.0/22 58654 -103.17.188.0/22 7671 -103.17.193.0/24 38172 -103.17.194.0/24 58872 -103.17.195.0/24 58875 -103.17.196.0/22 22363 -103.17.200.0/22 55714 -103.17.208.0/22 45352 -103.17.212.0/22 133378 -103.17.220.0/23 58511 -103.17.222.0/24 132791 -103.17.223.0/24 58511 -103.17.224.0/22 17477 -103.17.232.0/22 135895 -103.17.236.0/22 131421 -103.17.240.0/22 9304 -103.17.244.0/22 55666 -103.17.248.0/24 17433 -103.17.249.0/24 45581 -103.17.250.0/23 58868 -103.17.252.0/23 58868 -103.17.254.0/23 9268 -103.18.0.0/22 132688 -103.18.4.0/22 131392 -103.18.8.0/24 9541 -103.18.11.0/24 9541 -103.18.12.0/22 9541 -103.18.20.0/22 9541 -103.18.24.0/22 23778 -103.18.28.0/22 45706 -103.18.32.0/23 45312 -103.18.34.0/23 45298 -103.18.36.0/24 132733 -103.18.38.0/23 132733 -103.18.40.0/22 58940 -103.18.48.0/22 132693 -103.18.52.0/23 132798 -103.18.54.0/23 56072 -103.18.56.0/24 132692 -103.18.58.0/23 132692 -103.18.60.0/22 24289 -103.18.68.0/22 132768 -103.18.72.0/22 58762 -103.18.76.0/22 55701 -103.18.80.0/22 134128 -103.18.84.0/22 58580 -103.18.88.0/22 58910 -103.18.92.0/22 132694 -103.18.100.0/22 7514 -103.18.106.0/23 58764 -103.18.108.0/22 132680 -103.18.116.0/24 55541 -103.18.117.0/24 132634 -103.18.118.0/23 45267 -103.18.120.0/23 58438 -103.18.122.0/24 58438 -103.18.123.0/24 132768 -103.18.124.0/22 38790 -103.18.128.0/22 7532 -103.18.132.0/22 55693 -103.18.136.0/22 132744 -103.18.140.0/22 55705 -103.18.148.0/23 9268 -103.18.150.0/24 58915 -103.18.151.0/24 9268 -103.18.152.0/24 132518 -103.18.154.0/24 132713 -103.18.155.0/24 132217 -103.18.156.0/22 133296 -103.18.160.0/22 133076 -103.18.164.0/22 132768 -103.18.168.0/22 23860 -103.18.172.0/22 55303 -103.18.176.0/22 131377 -103.18.180.0/24 135055 -103.18.181.0/24 131779 -103.18.189.0/24 132703 -103.18.190.0/23 16625 -103.18.200.0/22 23655 -103.18.208.0/22 23724 -103.18.224.0/22 4837 -103.18.228.0/24 17408 -103.18.229.0/24 9311 -103.18.230.0/24 17408 -103.18.231.0/24 9311 -103.18.236.0/22 45711 -103.18.241.0/24 132706 -103.18.242.0/24 132768 -103.18.243.0/24 58893 -103.18.244.0/22 46015 -103.18.248.0/22 135602 -103.18.252.0/22 38835 -103.19.0.0/22 4785 -103.19.4.0/22 56028 -103.19.8.0/23 132824 -103.19.10.0/23 55561 -103.19.16.0/24 23930 -103.19.17.0/24 136639 -103.19.18.0/23 136639 -103.19.20.0/22 58885 -103.19.24.0/22 23881 -103.19.32.0/23 132826 -103.19.36.0/24 64065 -103.19.37.0/24 132638 -103.19.38.0/24 132702 -103.19.39.0/24 134801 -103.19.46.0/23 4808 -103.19.52.0/22 17439 -103.19.56.0/22 132637 -103.19.60.0/22 17819 -103.19.64.0/22 63691 -103.19.80.0/23 132639 -103.19.82.0/23 136271 -103.19.84.0/23 40511 -103.19.86.0/23 394427 -103.19.88.0/22 132717 -103.19.92.0/22 132718 -103.19.96.0/22 38247 -103.19.100.0/23 132722 -103.19.103.0/24 132722 -103.19.104.0/23 55407 -103.19.106.0/24 55407 -103.19.107.0/24 7693 -103.19.108.0/22 132641 -103.19.112.0/22 132245 -103.19.116.0/22 24295 -103.19.124.0/22 38129 -103.19.128.0/23 132566 -103.19.130.0/23 58890 -103.19.132.0/22 17625 -103.19.136.0/22 55832 -103.19.140.0/22 38625 -103.19.144.0/23 7474 -103.19.148.0/22 38625 -103.19.160.0/22 4686 -103.19.164.0/22 45896 -103.19.168.0/24 132711 -103.19.170.0/23 38809 -103.19.172.0/23 45654 -103.19.174.0/24 58507 -103.19.175.0/24 45654 -103.19.176.0/22 132647 -103.19.180.0/22 132642 -103.19.188.0/22 38197 -103.19.192.0/23 17477 -103.19.194.0/23 9790 -103.19.196.0/22 17625 -103.19.200.0/22 132768 -103.19.208.0/24 45294 -103.19.211.0/24 45294 -103.19.212.0/23 132567 -103.19.214.0/24 133306 -103.19.215.0/24 135304 -103.19.216.0/24 64006 -103.19.217.0/24 132571 -103.19.218.0/24 24039 -103.19.219.0/24 64050 -103.19.220.0/22 24088 -103.19.224.0/22 55832 -103.19.228.0/22 132668 -103.19.232.0/22 4808 -103.19.236.0/22 9381 -103.19.240.0/22 132726 -103.19.244.0/22 132724 -103.19.248.0/22 58659 -103.19.252.0/22 58889 -103.20.0.0/22 55453 -103.20.4.0/22 4686 -103.20.8.0/22 4686 -103.20.18.0/23 2914 -103.20.20.0/24 132394 -103.20.22.0/23 24510 -103.20.24.0/22 132395 -103.20.28.0/22 131215 -103.20.32.0/22 55996 -103.20.36.0/22 4686 -103.20.40.0/22 38843 -103.20.44.0/22 134700 -103.20.48.0/24 24510 -103.20.49.0/24 59346 -103.20.51.0/24 58557 -103.20.52.0/22 55406 -103.20.57.0/24 56107 -103.20.59.0/24 132402 -103.20.60.0/23 133380 -103.20.63.0/24 133380 -103.20.64.0/22 45415 -103.20.72.0/22 24295 -103.20.80.0/22 131331 -103.20.84.0/22 23818 -103.20.89.0/24 58701 -103.20.90.0/23 58381 -103.20.95.0/24 14413 -103.20.104.0/23 58702 -103.20.112.0/22 9808 -103.20.116.0/22 17583 -103.20.120.0/24 136566 -103.20.122.0/23 136565 -103.20.124.0/24 55723 -103.20.125.0/24 132417 -103.20.126.0/23 132415 -103.20.128.0/22 4808 -103.20.132.0/22 45814 -103.20.136.0/22 10022 -103.20.140.0/22 58704 -103.20.144.0/22 45552 -103.20.148.0/22 131367 -103.20.152.0/22 58726 -103.20.156.0/22 2519 -103.20.160.0/22 55986 -103.20.166.0/23 58551 -103.20.168.0/22 56300 -103.20.172.0/22 132418 -103.20.180.0/22 38067 -103.20.184.0/22 58553 -103.20.188.0/23 55685 -103.20.190.0/24 45731 -103.20.191.0/24 55685 -103.20.192.0/22 135357 -103.20.196.0/23 58556 -103.20.200.0/22 38719 -103.20.204.0/22 134240 -103.20.208.0/22 56163 -103.20.212.0/22 17439 -103.20.216.0/24 7474 -103.20.217.0/24 58718 -103.20.218.0/24 131218 -103.20.220.0/23 55720 -103.20.222.0/24 137443 -103.20.223.0/24 55720 -103.20.224.0/22 132426 -103.20.232.0/23 132429 -103.20.234.0/23 9268 -103.20.236.0/22 58708 -103.20.245.0/24 58980 -103.20.246.0/23 58712 -103.20.248.0/23 4812 -103.20.250.0/23 55994 -103.20.252.0/23 58710 -103.21.0.0/22 2764 -103.21.8.0/22 26658 -103.21.12.0/22 9927 -103.21.17.0/24 132448 -103.21.18.0/23 58714 -103.21.20.0/22 58713 -103.21.24.0/22 38040 -103.21.28.0/24 54187 -103.21.30.0/24 54187 -103.21.32.0/22 132434 -103.21.36.0/22 2554 -103.21.40.0/22 58715 -103.21.44.0/22 132435 -103.21.48.0/22 58750 -103.21.52.0/22 132445 -103.21.58.0/24 19905 -103.21.59.0/24 394695 -103.21.60.0/22 131148 -103.21.64.0/23 132437 -103.21.66.0/24 132440 -103.21.67.0/24 132441 -103.21.76.0/22 45536 -103.21.80.0/24 6453 -103.21.81.0/24 53767 -103.21.82.0/23 58405 -103.21.84.0/22 55677 -103.21.88.0/22 55720 -103.21.92.0/23 131738 -103.21.94.0/23 45295 -103.21.104.0/24 15412 -103.21.105.0/24 9311 -103.21.106.0/24 15412 -103.21.107.0/24 9311 -103.21.111.0/24 9412 -103.21.116.0/22 138950 -103.21.120.0/22 131368 -103.21.124.0/22 132423 -103.21.128.0/22 58927 -103.21.132.0/22 38835 -103.21.136.0/22 55933 -103.21.140.0/22 4812 -103.21.148.0/22 38732 -103.21.152.0/22 24028 -103.21.160.0/22 45916 -103.21.164.0/22 132447 -103.21.168.0/22 132454 -103.21.172.0/22 132449 -103.21.176.0/22 9808 -103.21.180.0/22 45352 -103.21.184.0/22 132453 -103.21.193.0/24 132450 -103.21.194.0/24 56030 -103.21.196.0/24 24155 -103.21.198.0/24 24155 -103.21.200.0/22 38091 -103.21.204.0/22 131746 -103.21.208.0/22 8100 -103.21.216.0/22 9905 -103.21.224.0/22 131740 -103.21.228.0/24 132643 -103.21.229.0/24 131743 -103.21.230.0/23 132468 -103.21.232.0/22 131210 -103.21.236.0/22 134312 -103.21.246.0/23 132892 -103.21.248.0/22 132462 -103.21.252.0/24 131310 -103.21.254.0/23 131310 -103.22.132.0/22 131740 -103.22.144.0/22 45447 -103.22.152.0/22 9600 -103.22.156.0/22 45504 -103.22.160.0/22 132882 -103.22.166.0/24 56240 -103.22.167.0/24 17088 -103.22.168.0/22 56308 -103.22.172.0/23 45582 -103.22.174.0/24 45582 -103.22.175.0/24 45769 -103.22.180.0/22 56309 -103.22.184.0/22 55766 -103.22.188.0/22 56005 -103.22.196.0/22 56079 -103.22.200.0/23 13335 -103.22.203.0/24 13335 -103.22.204.0/22 134640 -103.22.209.0/24 2764 -103.22.210.0/23 58576 -103.22.220.0/22 9270 -103.22.224.0/23 56298 -103.22.227.0/24 56298 -103.22.228.0/22 4812 -103.22.234.0/23 38900 -103.22.236.0/23 58428 -103.22.238.0/23 58429 -103.22.240.0/22 24523 -103.22.244.0/22 134967 -103.22.248.0/24 23947 -103.22.249.0/24 131111 -103.22.250.0/23 23947 -103.22.252.0/22 55966 -103.23.0.0/22 45780 -103.23.4.0/23 38636 -103.23.6.0/24 38636 -103.23.8.0/22 134765 -103.23.12.0/22 10021 -103.23.16.0/22 132040 -103.23.20.0/22 58397 -103.23.24.0/22 132075 -103.23.29.0/24 58457 -103.23.30.0/24 9341 -103.23.31.0/24 63914 -103.23.32.0/22 55699 -103.23.36.0/22 132173 -103.23.40.0/22 58923 -103.23.44.0/23 38182 -103.23.46.0/23 55720 -103.23.48.0/22 10219 -103.23.52.0/23 17480 -103.23.54.0/24 17480 -103.23.55.0/24 18200 -103.23.56.0/22 17964 -103.23.64.0/22 16839 -103.23.70.0/24 38216 -103.23.71.0/24 133420 -103.23.72.0/24 17408 -103.23.73.0/24 9311 -103.23.74.0/24 17408 -103.23.75.0/24 9311 -103.23.76.0/22 131259 -103.23.80.0/22 10036 -103.23.84.0/22 18334 -103.23.96.0/22 132204 -103.23.100.0/22 58400 -103.23.104.0/22 7490 -103.23.108.0/22 9924 -103.23.112.0/22 27435 -103.23.116.0/23 58385 -103.23.118.0/23 55507 -103.23.120.0/23 45796 -103.23.124.0/22 133320 -103.23.128.0/22 17408 -103.23.132.0/22 45429 -103.23.136.0/22 9902 -103.23.140.0/24 18166 -103.23.141.0/24 58396 -103.23.142.0/23 132815 -103.23.144.0/22 131349 -103.23.150.0/24 132043 -103.23.152.0/22 139337 -103.23.160.0/22 45110 -103.23.168.0/23 41095 -103.23.170.0/24 41095 -103.23.171.0/24 8449 -103.23.174.0/24 134555 -103.23.175.0/24 58403 -103.23.183.0/24 58463 -103.23.184.0/22 132094 -103.23.188.0/22 58464 -103.23.192.0/22 1273 -103.23.200.0/22 45287 -103.23.204.0/22 134968 -103.23.208.0/22 7979 -103.23.212.0/24 9790 -103.23.213.0/24 58465 -103.23.214.0/24 58419 -103.23.215.0/24 64050 -103.23.216.0/22 55478 -103.23.220.0/24 9919 -103.23.221.0/24 17819 -103.23.222.0/24 10021 -103.23.223.0/24 132827 -103.23.224.0/22 55684 -103.23.232.0/23 58475 -103.23.234.0/23 56251 -103.23.236.0/22 45433 -103.23.242.0/23 18103 -103.23.244.0/24 18394 -103.23.245.0/24 58545 -103.23.246.0/24 45530 -103.23.248.0/22 2519 -103.24.0.0/22 55933 -103.24.4.0/24 58621 -103.24.5.0/24 17547 -103.24.6.0/24 17547 -103.24.7.0/24 58621 -103.24.8.0/22 9952 -103.24.12.0/23 132644 -103.24.14.0/24 45671 -103.24.15.0/24 56467 -103.24.20.0/22 58766 -103.24.28.0/23 132712 -103.24.30.0/24 132712 -103.24.32.0/22 132730 -103.24.40.0/22 132697 -103.24.44.0/23 56467 -103.24.47.0/24 38835 -103.24.48.0/22 132645 -103.24.56.0/23 46052 -103.24.58.0/24 46052 -103.24.60.0/22 55862 -103.24.64.0/22 58914 -103.24.72.0/22 46061 -103.24.77.0/24 55919 -103.24.80.0/22 55303 -103.24.84.0/22 23860 -103.24.92.0/22 135357 -103.24.96.0/22 58895 -103.24.104.0/22 46023 -103.24.108.0/22 132568 -103.24.112.0/22 56089 -103.24.116.0/24 4812 -103.24.117.0/24 59083 -103.24.118.0/23 4812 -103.24.120.0/22 55651 -103.24.124.0/22 18229 -103.24.132.0/23 38220 -103.24.134.0/24 131332 -103.24.135.0/24 133680 -103.24.136.0/22 133756 -103.24.140.0/22 132745 -103.24.148.0/22 23949 -103.24.152.0/24 22552 -103.24.153.0/24 26658 -103.24.154.0/23 26658 -103.24.156.0/23 132739 -103.24.164.0/22 137253 -103.24.168.0/22 23791 -103.24.172.0/22 132787 -103.24.176.0/22 55933 -103.24.180.0/22 58597 -103.24.188.0/22 17747 -103.24.194.0/23 23818 -103.24.200.0/22 58909 -103.24.204.0/23 55933 -103.24.206.0/24 134196 -103.24.207.0/24 55933 -103.24.208.0/23 9517 -103.24.210.0/23 55752 -103.24.212.0/23 132649 -103.24.215.0/24 132649 -103.24.216.0/22 58985 -103.24.223.0/24 132304 -103.24.227.0/24 38186 -103.24.228.0/22 4837 -103.24.232.0/22 133320 -103.24.236.0/23 51151 -103.24.239.0/24 51151 -103.24.240.0/22 133739 -103.24.244.0/22 131388 -103.24.248.0/22 139021 -103.25.0.0/22 135754 -103.25.4.0/22 138763 -103.25.8.0/23 63888 -103.25.12.0/22 9988 -103.25.16.0/22 9765 -103.25.20.0/22 4808 -103.25.24.0/22 4808 -103.25.36.0/22 4808 -103.25.44.0/22 58898 -103.25.52.0/24 38001 -103.25.53.0/24 58922 -103.25.54.0/23 55695 -103.25.56.0/23 9297 -103.25.58.0/23 136557 -103.25.60.0/24 38478 -103.25.61.0/24 393398 -103.25.62.0/24 38001 -103.25.64.0/23 4812 -103.25.72.0/22 9381 -103.25.76.0/22 131322 -103.25.80.0/22 58912 -103.25.84.0/22 58438 -103.25.88.0/22 17941 -103.25.92.0/24 9902 -103.25.94.0/23 9902 -103.25.96.0/22 58913 -103.25.100.0/22 132827 -103.25.104.0/22 55558 -103.25.108.0/22 38527 -103.25.112.0/23 7604 -103.25.114.0/24 58916 -103.25.115.0/24 4851 -103.25.116.0/22 132810 -103.25.120.0/22 64072 -103.25.124.0/24 58986 -103.25.125.0/24 59216 -103.25.126.0/23 59216 -103.25.128.0/22 17439 -103.25.132.0/24 132768 -103.25.133.0/24 58438 -103.25.134.0/24 132768 -103.25.135.0/24 58438 -103.25.136.0/22 38713 -103.25.140.0/22 134783 -103.25.144.0/22 135604 -103.25.148.0/23 63690 -103.25.152.0/24 45804 -103.25.153.0/24 132751 -103.25.154.0/23 132751 -103.25.156.0/24 59067 -103.25.160.0/22 55359 -103.25.166.0/23 131717 -103.25.168.0/22 133720 -103.25.172.0/22 132760 -103.25.176.0/22 59325 -103.25.180.0/22 17907 -103.25.188.0/22 45641 -103.25.192.0/22 132652 -103.25.196.0/23 59143 -103.25.198.0/23 132819 -103.25.200.0/22 132816 -103.25.204.0/22 132753 -103.25.208.0/22 132653 -103.25.221.0/24 58920 -103.25.222.0/23 55660 -103.25.229.0/24 132797 -103.25.230.0/24 55077 -103.25.231.0/24 55824 -103.25.240.0/23 133384 -103.25.243.0/24 133384 -103.25.244.0/22 132815 -103.25.248.0/22 24432 -103.25.252.0/24 132818 -103.25.253.0/24 58779 -103.25.254.0/23 58779 -103.26.0.0/22 4808 -103.26.8.0/24 58954 -103.26.9.0/24 59216 -103.26.10.0/23 58954 -103.26.12.0/22 132660 -103.26.16.0/23 132857 -103.26.18.0/24 132255 -103.26.19.0/24 132857 -103.26.20.0/23 24378 -103.26.22.0/23 9587 -103.26.32.0/22 17941 -103.26.36.0/24 132862 -103.26.37.0/24 132246 -103.26.39.0/24 133611 -103.26.40.0/22 38532 -103.26.44.0/23 132170 -103.26.46.0/24 132170 -103.26.47.0/24 24514 -103.26.48.0/24 132933 -103.26.52.0/22 58678 -103.26.56.0/22 58678 -103.26.60.0/22 38803 -103.26.64.0/23 133119 -103.26.66.0/23 59019 -103.26.72.0/23 132867 -103.26.74.0/23 24514 -103.26.76.0/22 23650 -103.26.80.0/21 9541 -103.26.88.0/22 38894 -103.26.92.0/24 7713 -103.26.94.0/24 7713 -103.26.95.0/24 58731 -103.26.96.0/22 18229 -103.26.100.0/24 132662 -103.26.101.0/24 132664 -103.26.102.0/24 132667 -103.26.103.0/24 17804 -103.26.108.0/24 132773 -103.26.109.0/24 132774 -103.26.110.0/23 132774 -103.26.112.0/22 58945 -103.26.120.0/22 9381 -103.26.124.0/22 38197 -103.26.128.0/22 132663 -103.26.136.0/23 58946 -103.26.138.0/23 58947 -103.26.140.0/22 13768 -103.26.144.0/22 132865 -103.26.148.0/22 56229 -103.26.152.0/22 10019 -103.26.156.0/22 4134 -103.26.164.0/22 2519 -103.26.168.0/24 132871 -103.26.169.0/24 45194 -103.26.170.0/23 132111 -103.26.172.0/22 9268 -103.26.180.0/22 55303 -103.26.185.0/24 132891 -103.26.192.0/22 17882 -103.26.196.0/22 132874 -103.26.200.0/24 132772 -103.26.201.0/24 132878 -103.26.204.0/24 132335 -103.26.207.0/24 132335 -103.26.208.0/22 18103 -103.26.212.0/22 132677 -103.26.216.0/22 17747 -103.26.220.0/22 18106 -103.26.224.0/22 17665 -103.26.232.0/24 45769 -103.26.244.0/24 132884 -103.26.245.0/24 58717 -103.26.246.0/23 58717 -103.26.248.0/22 132882 -103.26.252.0/22 131383 -103.27.0.0/24 58958 -103.27.1.0/24 59383 -103.27.2.0/24 45804 -103.27.4.0/22 58854 -103.27.8.0/22 132780 -103.27.16.0/22 132983 -103.27.20.0/24 24435 -103.27.21.0/24 198247 -103.27.22.0/24 24435 -103.27.23.0/24 198381 -103.27.24.0/23 17816 -103.27.26.0/23 58834 -103.27.28.0/22 133333 -103.27.32.0/22 45638 -103.27.36.0/24 132670 -103.27.37.0/24 132887 -103.27.38.0/23 58989 -103.27.40.0/22 2519 -103.27.48.0/22 58678 -103.27.52.0/22 132881 -103.27.60.0/22 56150 -103.27.64.0/22 131385 -103.27.68.0/22 2519 -103.27.72.0/23 132111 -103.27.74.0/24 55720 -103.27.76.0/22 36351 -103.27.80.0/22 132827 -103.27.84.0/24 18229 -103.27.86.0/23 18229 -103.27.104.0/22 132890 -103.27.108.0/22 132883 -103.27.112.0/22 132885 -103.27.116.0/22 58952 -103.27.120.0/24 132911 -103.27.121.0/24 139306 -103.27.122.0/23 132843 -103.27.124.0/22 38478 -103.27.128.0/22 38661 -103.27.132.0/22 132894 -103.27.137.0/24 131454 -103.27.138.0/23 131454 -103.27.140.0/22 45804 -103.27.144.0/22 7690 -103.27.148.0/23 9764 -103.27.150.0/23 10158 -103.27.156.0/22 2519 -103.27.160.0/23 4913 -103.27.162.0/24 4913 -103.27.164.0/22 132785 -103.27.172.0/23 132895 -103.27.174.0/24 7600 -103.27.175.0/24 133030 -103.27.176.0/22 135357 -103.27.180.0/22 134684 -103.27.184.0/22 134835 -103.27.188.0/22 9749 -103.27.196.0/22 132902 -103.27.200.0/22 58955 -103.27.204.0/23 132901 -103.27.206.0/23 55688 -103.27.208.0/22 58962 -103.27.212.0/22 134548 -103.27.216.0/22 132898 -103.27.220.0/22 22363 -103.27.224.0/21 22363 -103.27.232.0/22 132779 -103.27.236.0/22 131386 -103.27.244.0/22 2519 -103.27.248.0/23 38148 -103.27.250.0/24 38148 -103.27.252.0/23 45733 -103.27.254.0/24 134827 -103.28.0.0/22 132098 -103.28.8.0/22 23724 -103.28.12.0/22 58404 -103.28.20.0/24 132102 -103.28.21.0/24 56256 -103.28.22.0/23 137341 -103.28.24.0/23 24295 -103.28.26.0/23 24247 -103.28.28.0/22 132827 -103.28.32.0/22 135918 -103.28.36.0/22 131353 -103.28.40.0/22 55819 -103.28.44.0/22 38277 -103.28.48.0/22 38719 -103.28.52.0/23 136052 -103.28.54.0/23 32590 -103.28.56.0/22 58474 -103.28.60.0/22 18033 -103.28.64.0/22 18168 -103.28.68.0/24 40676 -103.28.69.0/24 397651 -103.28.70.0/24 29802 -103.28.71.0/24 19531 -103.28.72.0/24 58473 -103.28.73.0/24 17088 -103.28.76.0/22 9381 -103.28.80.0/24 45723 -103.28.81.0/24 4800 -103.28.82.0/24 4800 -103.28.84.0/22 58504 -103.28.88.0/23 206264 -103.28.90.0/23 132372 -103.28.92.0/24 4826 -103.28.93.0/24 56258 -103.28.94.0/24 56258 -103.28.96.0/22 9354 -103.28.100.0/22 132117 -103.28.104.0/24 56258 -103.28.105.0/24 45357 -103.28.106.0/23 58476 -103.28.112.0/22 45305 -103.28.120.0/22 63961 -103.28.124.0/23 132107 -103.28.126.0/24 45455 -103.28.127.0/24 132107 -103.28.128.0/22 45763 -103.28.132.0/22 45178 -103.28.136.0/22 131351 -103.28.140.0/22 132108 -103.28.144.0/22 45587 -103.28.148.0/23 58477 -103.28.150.0/23 58506 -103.28.153.0/24 4661 -103.28.156.0/22 45942 -103.28.160.0/24 17907 -103.28.161.0/24 58479 -103.28.162.0/24 132111 -103.28.163.0/24 56259 -103.28.164.0/22 17676 -103.28.168.0/23 132827 -103.28.170.0/24 132827 -103.28.171.0/24 17819 -103.28.172.0/22 131352 -103.28.176.0/22 58480 -103.28.181.0/24 45528 -103.28.182.0/23 45528 -103.28.188.0/22 58481 -103.28.196.0/22 9738 -103.28.200.0/24 3491 -103.28.202.0/23 132046 -103.28.204.0/22 4837 -103.28.208.0/22 132142 -103.28.212.0/22 4812 -103.28.216.0/23 134791 -103.28.218.0/24 58385 -103.28.219.0/24 58484 -103.28.220.0/22 58492 -103.28.224.0/22 58482 -103.28.228.0/22 18097 -103.28.232.0/22 131899 -103.28.236.0/22 7671 -103.28.240.0/23 58438 -103.28.242.0/23 24441 -103.28.248.0/22 19551 -103.28.252.0/22 132116 -103.29.4.0/22 38753 -103.29.16.0/22 4808 -103.29.20.0/24 131303 -103.29.21.0/24 23930 -103.29.22.0/23 131303 -103.29.28.0/24 58976 -103.29.30.0/23 55561 -103.29.32.0/22 11179 -103.29.40.0/24 134178 -103.29.41.0/24 56271 -103.29.43.0/24 56281 -103.29.44.0/22 55410 -103.29.48.0/22 10000 -103.29.52.0/22 56284 -103.29.56.0/22 56286 -103.29.64.0/22 55884 -103.29.68.0/22 63949 -103.29.76.0/22 38803 -103.29.84.0/23 133525 -103.29.86.0/23 38195 -103.29.88.0/23 45931 -103.29.90.0/23 133524 -103.29.92.0/22 131337 -103.29.96.0/22 55862 -103.29.100.0/23 17477 -103.29.103.0/24 7718 -103.29.104.0/23 9651 -103.29.106.0/23 9234 -103.29.108.0/23 55843 -103.29.112.0/24 7575 -103.29.115.0/24 7604 -103.29.116.0/22 131442 -103.29.124.0/22 38067 -103.29.136.0/22 9811 -103.29.140.0/22 63981 -103.29.144.0/22 55805 -103.29.148.0/22 58376 -103.29.152.0/24 45345 -103.29.153.0/24 131995 -103.29.154.0/23 131995 -103.29.156.0/22 55352 -103.29.162.0/24 131998 -103.29.163.0/24 58893 -103.29.168.0/23 131999 -103.29.170.0/23 56257 -103.29.172.0/23 132858 -103.29.174.0/23 58511 -103.29.176.0/22 4686 -103.29.184.0/23 56260 -103.29.187.0/24 45286 -103.29.188.0/24 45328 -103.29.189.0/24 133065 -103.29.190.0/23 45328 -103.29.192.0/22 56135 -103.29.196.0/24 58375 -103.29.197.0/24 58371 -103.29.198.0/24 55420 -103.29.199.0/24 58406 -103.29.200.0/24 38883 -103.29.204.0/22 58372 -103.29.208.0/22 24554 -103.29.212.0/22 58377 -103.29.216.0/22 45671 -103.29.220.0/22 132004 -103.29.224.0/22 23955 -103.29.233.0/24 132005 -103.29.235.0/24 132005 -103.29.244.0/23 24347 -103.29.246.0/23 18119 -103.29.248.0/24 58442 -103.29.249.0/24 58405 -103.29.250.0/23 58437 -103.29.252.0/22 56212 -103.30.0.0/22 131778 -103.30.4.0/22 135357 -103.30.12.0/22 133320 -103.30.16.0/22 135152 -103.30.24.0/22 45753 -103.30.28.0/23 45326 -103.30.30.0/24 45326 -103.30.32.0/22 7700 -103.30.36.0/22 131371 -103.30.40.0/22 55933 -103.30.44.0/22 24168 -103.30.48.0/22 45587 -103.30.52.0/22 132827 -103.30.64.0/22 9829 -103.30.68.0/22 10032 -103.30.76.0/22 58985 -103.30.80.0/22 132768 -103.30.84.0/22 18103 -103.30.88.0/21 18103 -103.30.100.0/22 9381 -103.30.112.0/22 58731 -103.30.120.0/24 132419 -103.30.121.0/24 132472 -103.30.123.0/24 63498 -103.30.124.0/22 56067 -103.30.136.0/22 132471 -103.30.140.0/22 58640 -103.30.144.0/23 46050 -103.30.146.0/23 45324 -103.30.148.0/23 4808 -103.30.150.0/24 4808 -103.30.151.0/24 4847 -103.30.152.0/22 17439 -103.30.156.0/22 45980 -103.30.160.0/23 9688 -103.30.162.0/24 9688 -103.30.164.0/22 58648 -103.30.168.0/24 58739 -103.30.169.0/24 58737 -103.30.170.0/23 131760 -103.30.175.0/24 24532 -103.30.180.0/22 45302 -103.30.184.0/22 17916 -103.30.188.0/22 58736 -103.30.196.0/22 38901 -103.30.200.0/23 2042 -103.30.204.0/22 10034 -103.30.208.0/23 57731 -103.30.213.0/24 64050 -103.30.214.0/24 132473 -103.30.216.0/22 58511 -103.30.220.0/22 38148 -103.30.224.0/22 134293 -103.30.228.0/22 4134 -103.30.232.0/23 138007 -103.30.234.0/23 138005 -103.30.240.0/22 2519 -103.30.244.0/22 131745 -103.30.248.0/22 58932 -103.30.255.0/24 58640 -103.31.12.0/22 55902 -103.31.18.0/23 9381 -103.31.20.0/23 17819 -103.31.22.0/24 4058 -103.31.24.0/23 131475 -103.31.26.0/24 132145 -103.31.28.0/22 38880 -103.31.34.0/23 132494 -103.31.44.0/23 23679 -103.31.46.0/24 23679 -103.31.47.0/24 138841 -103.31.48.0/22 17621 -103.31.52.0/22 23724 -103.31.72.0/24 4812 -103.31.73.0/24 135391 -103.31.74.0/23 135391 -103.31.80.0/22 9260 -103.31.84.0/22 7642 -103.31.88.0/22 133407 -103.31.92.0/22 9541 -103.31.96.0/23 58744 -103.31.100.0/22 9541 -103.31.104.0/22 9541 -103.31.109.0/24 131757 -103.31.110.0/23 45298 -103.31.112.0/22 45269 -103.31.120.0/22 131379 -103.31.124.0/22 131372 -103.31.128.0/22 135286 -103.31.132.0/22 131749 -103.31.136.0/23 132499 -103.31.138.0/24 132499 -103.31.139.0/24 23749 -103.31.140.0/22 4686 -103.31.144.0/22 132497 -103.31.148.0/22 23724 -103.31.152.0/22 132698 -103.31.156.0/22 38496 -103.31.176.0/23 58691 -103.31.178.0/24 58691 -103.31.179.0/24 58752 -103.31.180.0/22 18328 -103.31.190.0/24 56124 -103.31.192.0/22 4686 -103.31.196.0/22 131584 -103.31.200.0/22 55990 -103.31.206.0/24 45718 -103.31.207.0/24 131754 -103.31.208.0/24 132502 -103.31.212.0/23 132507 -103.31.214.0/24 132507 -103.31.215.0/24 132787 -103.31.216.0/22 15211 -103.31.220.0/22 132506 -103.31.224.0/22 131755 -103.31.228.0/22 56308 -103.31.232.0/23 55701 -103.31.234.0/24 55701 -103.31.235.0/24 139457 -103.31.236.0/22 63554 -103.31.240.0/22 56001 -103.31.244.0/22 131911 -103.31.248.0/23 139427 -103.31.250.0/23 58477 -103.35.52.0/22 58640 -103.35.56.0/22 59253 -103.35.60.0/22 17676 -103.35.64.0/22 18403 -103.35.68.0/22 134252 -103.35.72.0/22 134520 -103.35.76.0/22 26658 -103.35.80.0/22 134503 -103.35.84.0/22 132742 -103.35.88.0/24 18400 -103.35.89.0/24 45641 -103.35.90.0/24 134513 -103.35.92.0/22 131268 -103.35.96.0/22 134509 -103.35.108.0/22 23991 -103.35.112.0/24 17766 -103.35.113.0/24 58696 -103.35.116.0/22 55720 -103.35.120.0/23 9430 -103.35.122.0/24 133948 -103.35.123.0/24 134286 -103.35.124.0/23 134521 -103.35.126.0/24 63399 -103.35.127.0/24 134521 -103.35.128.0/23 134735 -103.35.132.0/22 134254 -103.35.140.0/24 63884 -103.35.142.0/24 134869 -103.35.143.0/24 56109 -103.35.144.0/22 134524 -103.35.148.0/22 55720 -103.35.156.0/23 134529 -103.35.160.0/22 58964 -103.35.164.0/23 17439 -103.35.168.0/22 64018 -103.35.172.0/22 38478 -103.35.182.0/23 59253 -103.35.184.0/22 26658 -103.35.188.0/22 2519 -103.35.196.0/22 9829 -103.35.200.0/22 24000 -103.35.204.0/23 135387 -103.35.206.0/24 135387 -103.35.207.0/24 45634 -103.35.208.0/21 58895 -103.35.217.0/24 125 -103.35.218.0/24 64020 -103.35.220.0/23 4837 -103.35.224.0/22 17819 -103.35.228.0/22 56132 -103.35.232.0/22 9829 -103.35.248.0/23 62597 -103.35.250.0/24 62597 -103.35.251.0/24 136468 -103.36.0.0/22 133624 -103.36.4.0/22 133930 -103.36.8.0/22 133360 -103.36.12.0/24 7575 -103.36.14.0/23 133364 -103.36.16.0/22 133623 -103.36.20.0/22 132839 -103.36.28.0/22 4837 -103.36.32.0/24 131111 -103.36.34.0/23 131111 -103.36.44.0/24 133271 -103.36.48.0/22 45433 -103.36.52.0/22 135357 -103.36.68.0/24 133361 -103.36.69.0/24 133627 -103.36.71.0/24 133274 -103.36.76.0/22 133590 -103.36.80.0/23 45916 -103.36.82.0/24 45916 -103.36.84.0/22 133273 -103.36.88.0/22 133617 -103.36.92.0/22 38532 -103.36.96.0/22 59067 -103.36.100.0/22 38026 -103.36.104.0/22 134327 -103.36.108.0/22 23352 -103.36.112.0/22 131091 -103.36.116.0/22 17709 -103.36.120.0/22 45117 -103.36.124.0/22 133275 -103.36.129.0/24 132581 -103.36.130.0/23 38084 -103.36.132.0/22 4812 -103.36.136.0/22 55994 -103.36.140.0/22 7514 -103.36.144.0/23 131166 -103.36.146.0/24 132831 -103.36.148.0/24 38084 -103.36.149.0/24 131170 -103.36.150.0/23 131171 -103.36.152.0/22 9266 -103.36.156.0/22 55679 -103.36.168.0/22 55994 -103.36.172.0/23 55994 -103.36.174.0/23 17621 -103.36.192.0/20 23650 -103.36.208.0/22 4837 -103.36.220.0/23 4808 -103.36.248.0/23 131182 -103.36.251.0/24 132968 -103.37.0.0/22 136800 -103.37.8.0/23 135543 -103.37.10.0/23 10010 -103.37.12.0/22 58540 -103.37.20.0/23 132968 -103.37.28.0/22 45896 -103.37.32.0/22 45896 -103.37.36.0/22 133747 -103.37.40.0/23 132839 -103.37.42.0/23 136800 -103.37.44.0/22 23650 -103.37.48.0/22 132905 -103.37.60.0/22 56001 -103.37.64.0/22 18097 -103.37.68.0/22 133389 -103.37.72.0/22 4808 -103.37.76.0/22 133276 -103.37.80.0/22 133278 -103.37.84.0/22 24000 -103.37.92.0/22 2519 -103.37.99.0/24 131204 -103.37.100.0/22 58541 -103.37.108.0/22 59094 -103.37.112.0/22 59094 -103.37.116.0/22 2519 -103.37.120.0/22 4826 -103.37.124.0/24 137443 -103.37.128.0/24 1851 -103.37.129.0/24 4826 -103.37.130.0/23 1851 -103.37.132.0/24 17819 -103.37.134.0/24 4686 -103.37.136.0/21 4808 -103.37.144.0/20 4808 -103.37.160.0/21 4808 -103.37.168.0/22 63494 -103.37.180.0/22 56209 -103.37.192.0/22 4642 -103.37.196.0/22 23767 -103.37.200.0/23 131226 -103.37.204.0/22 56068 -103.37.224.0/22 63495 -103.37.229.0/24 133361 -103.37.232.0/22 134705 -103.37.240.0/22 2516 -103.37.248.0/22 132742 -103.37.252.0/22 23724 -103.38.4.0/22 133597 -103.38.9.0/24 134217 -103.38.10.0/23 9723 -103.38.12.0/22 133301 -103.38.16.0/22 133633 -103.38.20.0/22 133847 -103.38.24.0/22 9712 -103.38.28.0/22 55649 -103.38.36.0/22 133001 -103.38.40.0/22 4837 -103.38.48.0/23 131458 -103.38.64.0/24 38478 -103.38.66.0/24 38478 -103.38.68.0/23 18002 -103.38.70.0/24 133647 -103.38.71.0/24 18002 -103.38.72.0/22 131236 -103.38.76.0/22 4847 -103.38.80.0/23 40065 -103.38.82.0/24 40065 -103.38.83.0/24 139640 -103.38.88.0/24 133006 -103.38.89.0/24 133716 -103.38.90.0/23 9468 -103.38.100.0/22 38524 -103.38.112.0/22 7529 -103.38.116.0/22 45090 -103.38.120.0/22 133326 -103.38.124.0/24 17665 -103.38.125.0/24 137591 -103.38.126.0/24 137591 -103.38.127.0/24 17665 -103.38.129.0/24 58966 -103.38.131.0/24 17665 -103.38.136.0/22 45896 -103.38.144.0/24 131189 -103.38.145.0/24 133324 -103.38.146.0/24 198949 -103.38.147.0/24 133158 -103.38.148.0/23 133324 -103.38.150.0/24 36351 -103.38.151.0/24 38609 -103.38.152.0/22 1828 -103.38.156.0/22 132742 -103.38.160.0/23 55558 -103.38.162.0/23 139606 -103.38.168.0/22 132742 -103.38.172.0/23 133198 -103.38.175.0/24 133198 -103.38.176.0/22 59167 -103.38.184.0/22 63930 -103.38.188.0/24 63846 -103.38.189.0/24 133591 -103.38.190.0/23 55741 -103.38.192.0/22 132890 -103.38.196.0/22 38565 -103.38.200.0/23 59162 -103.38.203.0/24 138315 -103.38.204.0/22 45916 -103.38.215.0/24 23930 -103.38.218.0/23 9249 -103.38.224.0/22 4808 -103.38.232.0/22 17621 -103.38.240.0/22 132556 -103.38.252.0/23 4812 -103.38.254.0/24 55933 -103.38.255.0/24 134548 -103.39.0.0/24 133698 -103.39.4.0/23 56290 -103.39.9.0/24 45433 -103.39.10.0/23 45433 -103.39.12.0/22 63827 -103.39.16.0/22 136800 -103.39.20.0/22 133636 -103.39.24.0/22 132742 -103.39.28.0/22 134866 -103.39.36.0/22 7561 -103.39.44.0/22 56304 -103.39.48.0/22 63501 -103.39.52.0/24 63503 -103.39.53.0/24 133864 -103.39.54.0/24 133591 -103.39.55.0/24 38790 -103.39.56.0/22 132742 -103.39.60.0/22 133739 -103.39.76.0/22 134705 -103.39.80.0/22 58895 -103.39.84.0/23 38790 -103.39.86.0/23 133773 -103.39.88.0/22 4837 -103.39.92.0/22 18403 -103.39.104.0/22 17799 -103.39.108.0/22 55933 -103.39.112.0/24 133773 -103.39.114.0/24 133729 -103.39.116.0/22 134858 -103.39.122.0/23 198723 -103.39.128.0/24 45916 -103.39.130.0/23 45916 -103.39.132.0/22 133694 -103.39.136.0/23 133737 -103.39.138.0/24 59267 -103.39.139.0/24 133255 -103.39.142.0/23 133755 -103.39.148.0/22 132742 -103.39.152.0/22 132742 -103.39.156.0/23 135792 -103.39.158.0/24 135792 -103.39.192.0/22 7670 -103.39.204.0/22 55468 -103.39.208.0/20 4816 -103.39.224.0/21 4816 -103.39.232.0/22 4816 -103.39.236.0/23 133255 -103.39.238.0/23 59256 -103.39.240.0/22 133695 -103.39.244.0/22 133720 -103.39.248.0/24 59256 -103.39.249.0/24 17559 -103.39.250.0/24 7575 -103.39.251.0/24 58678 -103.39.252.0/22 45193 -103.40.0.0/22 38719 -103.40.4.0/22 133747 -103.40.8.0/23 137443 -103.40.10.0/23 136800 -103.40.12.0/22 23650 -103.40.16.0/20 63612 -103.40.32.0/21 63612 -103.40.40.0/22 63612 -103.40.44.0/23 63612 -103.40.48.0/22 133593 -103.40.54.0/23 58392 -103.40.60.0/22 133700 -103.40.64.0/23 59162 -103.40.66.0/24 59162 -103.40.70.0/23 132895 -103.40.72.0/22 133638 -103.40.76.0/22 17941 -103.40.80.0/24 133552 -103.40.81.0/24 132840 -103.40.82.0/23 63826 -103.40.84.0/23 132057 -103.40.92.0/23 63883 -103.40.94.0/24 63506 -103.40.95.0/24 63517 -103.40.96.0/22 18068 -103.40.100.0/24 62468 -103.40.102.0/23 62468 -103.40.104.0/22 9354 -103.40.108.0/24 59149 -103.40.109.0/24 133120 -103.40.112.0/22 132839 -103.40.116.0/23 133751 -103.40.120.0/22 63508 -103.40.124.0/22 4686 -103.40.128.0/22 23808 -103.40.132.0/22 38794 -103.40.136.0/21 38794 -103.40.144.0/24 135617 -103.40.145.0/24 38794 -103.40.146.0/23 38794 -103.40.148.0/22 38794 -103.40.152.0/22 132742 -103.40.160.0/22 137443 -103.40.164.0/23 133858 -103.40.172.0/22 131274 -103.40.176.0/22 133747 -103.40.180.0/24 136780 -103.40.181.0/24 38794 -103.40.182.0/23 38794 -103.40.184.0/22 38794 -103.40.188.0/23 38794 -103.40.190.0/24 38794 -103.40.191.0/24 138911 -103.40.192.0/22 137697 -103.40.196.0/22 133661 -103.40.200.0/22 133699 -103.40.204.0/22 45194 -103.40.208.0/22 63834 -103.40.216.0/24 17819 -103.40.224.0/24 1221 -103.40.226.0/23 45766 -103.40.232.0/23 138950 -103.40.234.0/24 9808 -103.40.235.0/24 138950 -103.40.240.0/20 4816 -103.41.4.0/22 136800 -103.41.8.0/23 133586 -103.41.10.0/24 133703 -103.41.11.0/24 133657 -103.41.16.0/22 135357 -103.41.20.0/22 133661 -103.41.24.0/23 133661 -103.41.26.0/24 133696 -103.41.27.0/24 133661 -103.41.28.0/22 135214 -103.41.32.0/22 138296 -103.41.36.0/22 133661 -103.41.40.0/22 133713 -103.41.44.0/22 132768 -103.41.48.0/22 17941 -103.41.56.0/24 137117 -103.41.57.0/24 133657 -103.41.58.0/23 133760 -103.41.60.0/24 10010 -103.41.61.0/24 59103 -103.41.62.0/23 59103 -103.41.65.0/24 38197 -103.41.66.0/23 38197 -103.41.80.0/22 132742 -103.41.84.0/23 38794 -103.41.86.0/23 7470 -103.41.89.0/24 18229 -103.41.90.0/23 18229 -103.41.96.0/22 18229 -103.41.104.0/22 63888 -103.41.108.0/24 25222 -103.41.109.0/24 56256 -103.41.110.0/24 63511 -103.41.120.0/22 63509 -103.41.124.0/22 134705 -103.41.128.0/22 133748 -103.41.132.0/22 38478 -103.41.136.0/22 18126 -103.41.144.0/22 134884 -103.41.148.0/22 7497 -103.41.152.0/22 7497 -103.41.156.0/22 9266 -103.41.164.0/24 45093 -103.41.165.0/24 4837 -103.41.166.0/23 45093 -103.41.169.0/24 63510 -103.41.170.0/24 133644 -103.41.172.0/22 393559 -103.41.176.0/23 60781 -103.41.184.0/24 26484 -103.41.188.0/22 58397 -103.41.192.0/22 58397 -103.41.196.0/23 134269 -103.41.200.0/22 63512 -103.41.204.0/22 58397 -103.41.208.0/22 63513 -103.41.212.0/23 58689 -103.41.214.0/23 133768 -103.41.216.0/22 132405 -103.41.220.0/22 7497 -103.41.224.0/22 7497 -103.41.232.0/22 58519 -103.41.240.0/22 4686 -103.41.244.0/23 63844 -103.41.246.0/24 63941 -103.41.247.0/24 133802 -103.41.252.0/22 59102 -103.42.0.0/22 38742 -103.42.8.0/22 138950 -103.42.16.0/23 135244 -103.42.19.0/24 4826 -103.42.20.0/23 7545 -103.42.22.0/24 24093 -103.42.23.0/24 7545 -103.42.28.0/22 62468 -103.42.36.0/22 132742 -103.42.40.0/22 63514 -103.42.44.0/22 7514 -103.42.48.0/23 134229 -103.42.56.0/22 45899 -103.42.72.0/22 133664 -103.42.76.0/22 59029 -103.42.80.0/22 4686 -103.42.84.0/22 133660 -103.42.88.0/23 133715 -103.42.91.0/24 133715 -103.42.92.0/22 133778 -103.42.97.0/24 134416 -103.42.98.0/24 63848 -103.42.99.0/24 134414 -103.42.100.0/22 132827 -103.42.104.0/22 45753 -103.42.108.0/22 45638 -103.42.112.0/24 9919 -103.42.113.0/24 132819 -103.42.114.0/24 133856 -103.42.115.0/24 133668 -103.42.124.0/22 45775 -103.42.132.0/22 11054 -103.42.136.0/22 134672 -103.42.140.0/22 38835 -103.42.144.0/23 131603 -103.42.147.0/24 131603 -103.42.152.0/23 63851 -103.42.154.0/24 63851 -103.42.156.0/22 45775 -103.42.161.0/24 58678 -103.42.162.0/23 58678 -103.42.168.0/22 23805 -103.42.172.0/22 45775 -103.42.176.0/24 132839 -103.42.177.0/24 136800 -103.42.178.0/24 136800 -103.42.179.0/24 132839 -103.42.180.0/22 62468 -103.42.184.0/22 17598 -103.42.188.0/24 133659 -103.42.189.0/24 133403 -103.42.190.0/24 133785 -103.42.191.0/24 133789 -103.42.192.0/22 134307 -103.42.205.0/24 133796 -103.42.208.0/22 133788 -103.42.212.0/23 134520 -103.42.214.0/24 55799 -103.42.215.0/24 63916 -103.42.216.0/22 63852 -103.42.224.0/23 133525 -103.42.226.0/23 38195 -103.42.236.0/22 9268 -103.42.248.0/22 133726 -103.42.252.0/22 133799 -103.43.0.0/23 59133 -103.43.2.0/24 17439 -103.43.4.0/22 133647 -103.43.8.0/24 139640 -103.43.9.0/24 40065 -103.43.10.0/23 40065 -103.43.12.0/22 136800 -103.43.16.0/22 132883 -103.43.20.0/22 133793 -103.43.28.0/22 137207 -103.43.32.0/22 132116 -103.43.36.0/24 133309 -103.43.37.0/24 133713 -103.43.40.0/22 133651 -103.43.44.0/22 58397 -103.43.53.0/24 63890 -103.43.54.0/23 63890 -103.43.64.0/24 9275 -103.43.65.0/24 134021 -103.43.68.0/24 9701 -103.43.69.0/24 4766 -103.43.70.0/23 136209 -103.43.72.0/22 20473 -103.43.76.0/22 9873 -103.43.80.0/22 133589 -103.43.84.0/22 135391 -103.43.88.0/24 29990 -103.43.90.0/23 29990 -103.43.93.0/24 133610 -103.43.108.0/22 133847 -103.43.112.0/23 58664 -103.43.114.0/24 58664 -103.43.116.0/22 56038 -103.43.120.0/22 45365 -103.43.128.0/22 133797 -103.43.136.0/24 45530 -103.43.138.0/24 7545 -103.43.139.0/24 24130 -103.43.140.0/22 4686 -103.43.144.0/22 63945 -103.43.148.0/22 133854 -103.43.152.0/22 38546 -103.43.156.0/22 18200 -103.43.168.0/22 134504 -103.43.172.0/23 132422 -103.43.176.0/24 133859 -103.43.177.0/24 133863 -103.43.178.0/23 133548 -103.43.180.0/22 133851 -103.43.184.0/22 4808 -103.43.188.0/22 139021 -103.43.200.0/24 132556 -103.43.202.0/23 132556 -103.43.206.0/23 56030 -103.43.208.0/22 7497 -103.43.212.0/22 63927 -103.43.216.0/22 134196 -103.43.228.0/24 133686 -103.43.229.0/24 133581 -103.43.230.0/24 63914 -103.43.231.0/24 133686 -103.43.232.0/22 24000 -103.43.244.0/22 63915 -103.43.248.0/22 45528 -103.43.252.0/24 133669 -103.43.253.0/24 64006 -103.43.254.0/23 64006 -103.44.0.0/22 18229 -103.44.12.0/22 133685 -103.44.16.0/23 63917 -103.44.18.0/24 133648 -103.44.20.0/22 40065 -103.44.24.0/23 63919 -103.44.26.0/23 133800 -103.44.28.0/22 133199 -103.44.32.0/22 63920 -103.44.36.0/22 133798 -103.44.40.0/22 63922 -103.44.44.0/24 7470 -103.44.45.0/24 133870 -103.44.46.0/23 133864 -103.44.48.0/22 134022 -103.44.52.0/22 133676 -103.44.56.0/22 133865 -103.44.60.0/22 4594 -103.44.66.0/24 38478 -103.44.68.0/22 40627 -103.44.72.0/22 56264 -103.44.76.0/22 63923 -103.44.84.0/22 18126 -103.44.88.0/22 136800 -103.44.96.0/22 59179 -103.44.100.0/24 45289 -103.44.101.0/24 135148 -103.44.102.0/24 46186 -103.44.103.0/24 133900 -103.44.104.0/22 17665 -103.44.108.0/24 133874 -103.44.109.0/24 58579 -103.44.110.0/24 131291 -103.44.116.0/22 133724 -103.44.128.0/22 132827 -103.44.132.0/22 131324 -103.44.136.0/23 133275 -103.44.138.0/23 133673 -103.44.140.0/24 133650 -103.44.141.0/24 133713 -103.44.142.0/23 133713 -103.44.144.0/22 59037 -103.44.148.0/24 133876 -103.44.149.0/24 133803 -103.44.150.0/23 58599 -103.44.156.0/22 59196 -103.44.160.0/22 45753 -103.44.164.0/22 133878 -103.44.168.0/22 4847 -103.44.172.0/22 45775 -103.44.176.0/22 4847 -103.44.208.0/22 24295 -103.44.212.0/22 7690 -103.44.216.0/22 133880 -103.44.220.0/24 133882 -103.44.221.0/24 17439 -103.44.222.0/24 133884 -103.44.223.0/24 133932 -103.44.228.0/22 133881 -103.44.232.0/22 63927 -103.44.236.0/22 4816 -103.44.240.0/20 4816 -103.45.64.0/21 38197 -103.45.72.0/21 4837 -103.45.97.0/24 63612 -103.45.98.0/23 63612 -103.45.100.0/22 63612 -103.45.104.0/21 63612 -103.45.112.0/22 63612 -103.45.116.0/23 63612 -103.45.120.0/24 63612 -103.45.123.0/24 63612 -103.45.124.0/22 63612 -103.45.128.0/22 63612 -103.45.132.0/23 63612 -103.45.144.0/20 63612 -103.45.160.0/22 23650 -103.45.172.0/22 134762 -103.45.176.0/20 134762 -103.45.229.0/24 24085 -103.45.230.0/24 24085 -103.45.232.0/21 131388 -103.45.240.0/22 133887 -103.45.244.0/22 7690 -103.45.248.0/22 134762 -103.45.252.0/23 133886 -103.45.254.0/23 18055 -103.46.12.0/22 59037 -103.46.16.0/20 59037 -103.46.32.0/19 59037 -103.46.64.0/18 59037 -103.46.128.0/21 59037 -103.46.136.0/22 59037 -103.46.140.0/24 38001 -103.46.141.0/24 36351 -103.46.142.0/24 38001 -103.46.143.0/24 36351 -103.46.144.0/22 38851 -103.46.148.0/22 133890 -103.46.188.0/22 38851 -103.46.192.0/24 133670 -103.46.193.0/24 133275 -103.46.194.0/24 133670 -103.46.195.0/24 133275 -103.46.196.0/23 133671 -103.46.198.0/24 134122 -103.46.200.0/22 133982 -103.46.208.0/22 133894 -103.46.212.0/23 10214 -103.46.214.0/24 10214 -103.46.215.0/24 133895 -103.46.216.0/22 9471 -103.46.224.0/23 136209 -103.46.226.0/23 55592 -103.46.228.0/23 45838 -103.46.230.0/24 24305 -103.46.231.0/24 58511 -103.46.232.0/22 136716 -103.46.236.0/22 134316 -103.46.240.0/22 133684 -103.47.0.0/24 133736 -103.47.1.0/24 133901 -103.47.2.0/24 18149 -103.47.3.0/24 4049 -103.47.12.0/23 133676 -103.47.14.0/24 58906 -103.47.15.0/24 133676 -103.47.16.0/22 133711 -103.47.24.0/22 63928 -103.47.28.0/22 56308 -103.47.32.0/22 45942 -103.47.44.0/22 133653 -103.47.48.0/22 4808 -103.47.52.0/22 134015 -103.47.56.0/22 133676 -103.47.60.0/24 131724 -103.47.61.0/24 133789 -103.47.62.0/23 396388 -103.47.64.0/22 133652 -103.47.68.0/22 24554 -103.47.72.0/23 133715 -103.47.76.0/23 5580 -103.47.78.0/24 133240 -103.47.80.0/22 134765 -103.47.84.0/22 133909 -103.47.88.0/23 133904 -103.47.90.0/24 133663 -103.47.91.0/24 59195 -103.47.92.0/23 134058 -103.47.94.0/24 9830 -103.47.95.0/24 134058 -103.47.104.0/22 134855 -103.47.114.0/24 133380 -103.47.124.0/23 133707 -103.47.126.0/24 133707 -103.47.132.0/22 63859 -103.47.136.0/22 4812 -103.47.144.0/24 9009 -103.47.145.0/24 59253 -103.47.146.0/24 45671 -103.47.147.0/24 38001 -103.47.148.0/24 133712 -103.47.150.0/24 133712 -103.47.152.0/24 133591 -103.47.153.0/24 134006 -103.47.154.0/24 132198 -103.47.155.0/24 59253 -103.47.157.0/24 133590 -103.47.158.0/23 133590 -103.47.164.0/22 18002 -103.47.168.0/22 133275 -103.47.172.0/22 133715 -103.47.176.0/24 9919 -103.47.177.0/24 9311 -103.47.178.0/24 9919 -103.47.179.0/24 9311 -103.47.184.0/24 9988 -103.47.185.0/24 135149 -103.47.186.0/24 132772 -103.47.188.0/22 7529 -103.47.192.0/23 18403 -103.47.194.0/23 45538 -103.47.196.0/22 133708 -103.47.200.0/22 64096 -103.47.204.0/22 1299 -103.47.208.0/22 63930 -103.47.216.0/22 133692 -103.47.228.0/23 133804 -103.47.232.0/24 133912 -103.47.233.0/24 10143 -103.47.234.0/23 133914 -103.47.238.0/23 134872 -103.47.240.0/22 63888 -103.47.244.0/24 55256 -103.47.245.0/24 58409 -103.47.246.0/23 63931 -103.47.252.0/22 133918 -103.48.4.0/22 59371 -103.48.8.0/23 133920 -103.48.12.0/24 45458 -103.48.13.0/24 63860 -103.48.15.0/24 133925 -103.48.16.0/22 63932 -103.48.20.0/22 136800 -103.48.24.0/23 133933 -103.48.27.0/24 133805 -103.48.30.0/24 133158 -103.48.31.0/24 59105 -103.48.32.0/22 56209 -103.48.36.0/22 24295 -103.48.44.0/22 132783 -103.48.50.0/23 17439 -103.48.56.0/22 58678 -103.48.64.0/22 45235 -103.48.68.0/22 17754 -103.48.72.0/22 133999 -103.48.76.0/22 131425 -103.48.80.0/22 135905 -103.48.88.0/24 133372 -103.48.89.0/24 58713 -103.48.91.0/24 63935 -103.48.96.0/24 18207 -103.48.100.0/22 58678 -103.48.104.0/22 132761 -103.48.108.0/22 136696 -103.48.116.0/24 56301 -103.48.118.0/24 9503 -103.48.119.0/24 133938 -103.48.128.0/22 63861 -103.48.132.0/22 136800 -103.48.136.0/22 18068 -103.48.140.0/22 133929 -103.48.144.0/22 24000 -103.48.152.0/23 4515 -103.48.154.0/24 4515 -103.48.164.0/22 17676 -103.48.168.0/22 64021 -103.48.172.0/24 21660 -103.48.180.0/22 132774 -103.48.184.0/22 135232 -103.48.189.0/24 135905 -103.48.190.0/24 135905 -103.48.191.0/24 45899 -103.48.192.0/22 131423 -103.48.196.0/22 133982 -103.48.201.0/24 133935 -103.48.204.0/22 134100 -103.48.208.0/22 133934 -103.48.212.0/23 134060 -103.48.214.0/23 56294 -103.48.232.0/23 4808 -103.48.248.0/22 17941 -103.48.253.0/24 53766 -103.49.0.0/22 3786 -103.49.4.0/23 45654 -103.49.6.0/24 45654 -103.49.7.0/24 58507 -103.49.8.0/22 132839 -103.49.12.0/22 59049 -103.49.16.0/23 63950 -103.49.18.0/24 38858 -103.49.19.0/24 133940 -103.49.24.0/22 133936 -103.49.28.0/22 63862 -103.49.32.0/22 133942 -103.49.36.0/24 63938 -103.49.37.0/24 133807 -103.49.38.0/23 133943 -103.49.40.0/22 61317 -103.49.44.0/22 9318 -103.49.52.0/22 136716 -103.49.56.0/22 2 -103.49.60.0/23 64021 -103.49.62.0/24 132422 -103.49.63.0/24 64021 -103.49.64.0/22 131899 -103.49.69.0/24 136610 -103.49.80.0/22 43519 -103.49.84.0/22 203098 -103.49.88.0/22 59107 -103.49.92.0/22 135386 -103.49.96.0/22 4808 -103.49.106.0/23 131455 -103.49.108.0/22 59037 -103.49.116.0/22 134341 -103.49.121.0/24 17483 -103.49.126.0/24 133948 -103.49.127.0/24 135611 -103.49.132.0/22 135391 -103.49.136.0/22 132165 -103.49.140.0/22 59110 -103.49.144.0/23 135611 -103.49.147.0/24 133723 -103.49.148.0/23 133947 -103.49.151.0/24 7545 -103.49.152.0/23 58906 -103.49.154.0/24 133676 -103.49.155.0/24 58906 -103.49.156.0/22 63888 -103.49.160.0/22 3661 -103.49.168.0/22 133954 -103.49.172.0/24 9303 -103.49.173.0/24 55723 -103.49.174.0/23 55723 -103.49.188.0/22 63867 -103.49.196.0/23 133952 -103.49.198.0/24 133952 -103.49.200.0/24 133957 -103.49.201.0/24 135353 -103.49.202.0/23 133957 -103.49.204.0/24 133951 -103.49.205.0/24 53340 -103.49.206.0/24 133309 -103.49.207.0/24 17828 -103.49.208.0/22 26484 -103.49.212.0/23 26484 -103.49.214.0/23 134705 -103.49.216.0/22 2514 -103.49.220.0/22 24211 -103.49.224.0/22 45235 -103.49.228.0/22 63868 -103.49.232.0/22 133676 -103.49.240.0/22 133720 -103.49.244.0/23 133722 -103.49.246.0/23 133953 -103.49.248.0/22 132839 -103.49.252.0/22 58640 -103.50.4.0/22 133647 -103.50.8.0/23 9535 -103.50.10.0/24 9535 -103.50.11.0/24 135356 -103.50.13.0/24 7604 -103.50.14.0/23 133959 -103.50.16.0/22 135386 -103.50.24.0/23 63869 -103.50.28.0/22 17941 -103.50.32.0/23 133668 -103.50.34.0/23 134061 -103.50.36.0/22 23848 -103.50.40.0/22 9756 -103.50.76.0/22 134913 -103.50.80.0/22 23860 -103.50.84.0/22 4686 -103.50.88.0/23 55592 -103.50.90.0/24 10010 -103.50.96.0/22 63888 -103.50.100.0/22 134063 -103.50.104.0/22 55944 -103.50.128.0/22 133809 -103.50.144.0/22 45235 -103.50.148.0/24 133648 -103.50.150.0/23 133648 -103.50.152.0/22 134001 -103.50.156.0/22 58895 -103.50.160.0/22 394695 -103.50.164.0/22 134066 -103.50.168.0/23 63963 -103.50.170.0/23 3 -103.50.204.0/22 63962 -103.50.212.0/23 56110 -103.50.214.0/23 133680 -103.50.216.0/23 132164 -103.50.218.0/24 133839 -103.50.219.0/24 133971 -103.50.252.0/23 137443 -103.50.254.0/24 137443 -103.50.255.0/24 58879 -103.51.0.0/23 45649 -103.51.2.0/23 45766 -103.51.4.0/22 131899 -103.51.8.0/24 133992 -103.51.9.0/24 132135 -103.51.12.0/22 63888 -103.51.16.0/22 55915 -103.51.20.0/22 134004 -103.51.24.0/23 134937 -103.51.26.0/24 134937 -103.51.27.0/24 45194 -103.51.28.0/22 133964 -103.51.32.0/22 133972 -103.51.36.0/22 17676 -103.51.40.0/24 134070 -103.51.41.0/24 133936 -103.51.42.0/24 134075 -103.51.43.0/24 133936 -103.51.44.0/22 133819 -103.51.48.0/22 134069 -103.51.56.0/22 45775 -103.51.60.0/24 134074 -103.51.61.0/24 38809 -103.51.64.0/22 134073 -103.51.68.0/22 134076 -103.51.72.0/22 134000 -103.51.76.0/23 45661 -103.51.78.0/24 45661 -103.51.80.0/22 24295 -103.51.92.0/22 134000 -103.51.100.0/23 133607 -103.51.102.0/24 15084 -103.51.103.0/24 139432 -103.51.108.0/22 63888 -103.51.112.0/22 134090 -103.51.116.0/22 17426 -103.51.124.0/23 132726 -103.51.126.0/23 131454 -103.51.128.0/24 15084 -103.51.130.0/24 56079 -103.51.131.0/24 131776 -103.51.132.0/22 133001 -103.51.136.0/24 135846 -103.51.137.0/24 17665 -103.51.138.0/24 17665 -103.51.139.0/24 135846 -103.51.140.0/22 134094 -103.51.144.0/23 55933 -103.51.146.0/24 134176 -103.51.147.0/24 55933 -103.51.148.0/22 23860 -103.51.152.0/24 16625 -103.51.153.0/24 45194 -103.51.154.0/23 45194 -103.51.156.0/23 55850 -103.51.158.0/24 58394 -103.51.159.0/24 7474 -103.51.160.0/22 134078 -103.51.164.0/22 20546 -103.51.168.0/22 10164 -103.51.172.0/22 17857 -103.51.176.0/22 23578 -103.51.180.0/22 9607 -103.51.184.0/22 17871 -103.51.188.0/22 9971 -103.51.192.0/22 17597 -103.51.196.0/22 18310 -103.51.208.0/22 24554 -103.51.212.0/22 2516 -103.51.216.0/22 134059 -103.51.220.0/24 63954 -103.51.221.0/24 134081 -103.51.222.0/23 135852 -103.51.224.0/22 45455 -103.51.228.0/22 134084 -103.51.232.0/22 45769 -103.51.236.0/23 45769 -103.51.239.0/24 45769 -103.51.240.0/22 17854 -103.51.244.0/22 17573 -103.51.248.0/22 17849 -103.51.252.0/22 38095 -103.52.0.0/24 135852 -103.52.1.0/24 56307 -103.52.2.0/23 133812 -103.52.8.0/22 134789 -103.52.12.0/22 9988 -103.52.16.0/23 133811 -103.52.20.0/22 17676 -103.52.28.0/22 63968 -103.52.32.0/22 134087 -103.52.36.0/22 45582 -103.52.44.0/22 133815 -103.52.52.0/22 132931 -103.52.56.0/22 134088 -103.52.60.0/23 139427 -103.52.69.0/24 133814 -103.52.70.0/23 133814 -103.52.88.0/22 4638 -103.52.92.0/22 18403 -103.52.116.0/22 63956 -103.52.124.0/24 45194 -103.52.126.0/24 45194 -103.52.127.0/24 136334 -103.52.128.0/22 131901 -103.52.132.0/24 59111 -103.52.134.0/23 134113 -103.52.136.0/22 59183 -103.52.140.0/22 63957 -103.52.144.0/22 59147 -103.52.148.0/22 131899 -103.52.152.0/22 40065 -103.52.156.0/22 45179 -103.52.160.0/22 17622 -103.52.168.0/24 135543 -103.52.169.0/24 38880 -103.52.170.0/23 63872 -103.52.176.0/22 131325 -103.52.180.0/22 33480 -103.52.188.0/22 63959 -103.52.192.0/24 132890 -103.52.193.0/24 134101 -103.52.194.0/23 131235 -103.52.196.0/22 37963 -103.52.200.0/22 9972 -103.52.204.0/22 134102 -103.52.208.0/22 134177 -103.52.212.0/24 4851 -103.52.213.0/24 133816 -103.52.216.0/22 132203 -103.52.220.0/22 133961 -103.52.224.0/22 59170 -103.52.228.0/22 134105 -103.52.232.0/22 7514 -103.52.236.0/22 18046 -103.52.240.0/22 17676 -103.52.244.0/22 58765 -103.52.248.0/23 133234 -103.52.250.0/24 133234 -103.52.252.0/22 45775 -103.53.0.0/22 63873 -103.53.4.0/23 24000 -103.53.6.0/24 24000 -103.53.7.0/24 26484 -103.53.8.0/22 63888 -103.53.12.0/22 55429 -103.53.16.0/22 134112 -103.53.20.0/24 46034 -103.53.21.0/24 133995 -103.53.22.0/23 134224 -103.53.24.0/22 134134 -103.53.32.0/22 134107 -103.53.36.0/23 56264 -103.53.38.0/24 56264 -103.53.39.0/24 134108 -103.53.40.0/22 394695 -103.53.44.0/22 58895 -103.53.48.0/23 46489 -103.53.52.0/23 134054 -103.53.55.0/24 36351 -103.53.58.0/23 23862 -103.53.60.0/22 24554 -103.53.72.0/23 45117 -103.53.74.0/24 45117 -103.53.75.0/24 56315 -103.53.76.0/22 133817 -103.53.80.0/22 133994 -103.53.84.0/24 63964 -103.53.86.0/23 133969 -103.53.88.0/22 131426 -103.53.96.0/22 18097 -103.53.104.0/22 9829 -103.53.108.0/24 133275 -103.53.109.0/24 133970 -103.53.110.0/24 133970 -103.53.111.0/24 133275 -103.53.112.0/23 2 -103.53.114.0/24 9633 -103.53.115.0/24 17473 -103.53.116.0/22 55811 -103.53.120.0/22 7511 -103.53.124.0/22 137697 -103.53.148.0/22 134110 -103.53.152.0/23 5580 -103.53.154.0/23 63966 -103.53.164.0/22 133977 -103.53.168.0/23 45899 -103.53.170.0/23 18403 -103.53.172.0/22 38532 -103.53.176.0/22 134151 -103.53.184.0/23 63874 -103.53.186.0/24 134082 -103.53.187.0/24 134115 -103.53.188.0/22 38320 -103.53.192.0/23 55669 -103.53.194.0/24 55669 -103.53.196.0/24 36351 -103.53.197.0/24 38001 -103.53.198.0/23 38001 -103.53.200.0/22 9336 -103.53.204.0/22 4837 -103.53.208.0/22 4808 -103.53.216.0/23 22769 -103.53.218.0/24 22769 -103.53.219.0/24 24000 -103.53.228.0/22 131427 -103.53.232.0/22 24554 -103.53.244.0/22 133963 -103.53.252.0/22 131429 -103.54.0.0/24 55697 -103.54.4.0/24 63888 -103.54.12.0/22 17625 -103.54.16.0/22 134000 -103.54.24.0/22 136331 -103.54.28.0/22 135821 -103.54.32.0/22 9829 -103.54.36.0/24 63969 -103.54.37.0/24 58715 -103.54.38.0/23 58715 -103.54.40.0/24 59332 -103.54.41.0/24 134116 -103.54.42.0/23 134116 -103.54.44.0/23 55592 -103.54.46.0/24 55592 -103.54.47.0/24 10010 -103.54.48.0/22 56282 -103.54.52.0/23 9535 -103.54.54.0/23 56082 -103.54.56.0/22 2516 -103.54.60.0/23 136800 -103.54.62.0/24 136800 -103.54.63.0/24 132839 -103.54.64.0/24 133975 -103.54.68.0/22 134119 -103.54.72.0/22 45382 -103.54.84.0/22 55821 -103.54.88.0/22 4686 -103.54.92.0/24 38516 -103.54.93.0/24 133823 -103.54.94.0/23 133823 -103.54.96.0/22 45194 -103.54.100.0/22 2 -103.54.104.0/22 24554 -103.54.110.0/24 136978 -103.54.111.0/24 58507 -103.54.112.0/24 45656 -103.54.114.0/24 45656 -103.54.116.0/22 63888 -103.54.124.0/22 132839 -103.54.128.0/22 63888 -103.54.132.0/23 17819 -103.54.134.0/24 63876 -103.54.136.0/22 133983 -103.54.140.0/23 134019 -103.54.142.0/24 134129 -103.54.144.0/22 133965 -103.54.148.0/22 134128 -103.54.156.0/22 10021 -103.54.172.0/24 58824 -103.54.173.0/24 133990 -103.54.174.0/23 133303 -103.54.180.0/22 133966 -103.54.184.0/22 131899 -103.54.192.0/23 134127 -103.54.200.0/22 134018 -103.54.204.0/22 23783 -103.54.216.0/22 131111 -103.54.220.0/22 134021 -103.54.224.0/24 134131 -103.54.225.0/24 133822 -103.54.226.0/23 63877 -103.54.232.0/22 133736 -103.54.236.0/24 134332 -103.54.238.0/23 132162 -103.54.248.0/22 135905 -103.55.0.0/24 134137 -103.55.1.0/24 9287 -103.55.2.0/24 9287 -103.55.3.0/24 134137 -103.55.8.0/24 59253 -103.55.9.0/24 134451 -103.55.10.0/24 55720 -103.55.12.0/22 59094 -103.55.24.0/22 55933 -103.55.28.0/22 132839 -103.55.32.0/24 132162 -103.55.33.0/24 63879 -103.55.34.0/24 134145 -103.55.40.0/22 133980 -103.55.44.0/22 134139 -103.55.48.0/22 58731 -103.55.52.0/24 139352 -103.55.53.0/24 137268 -103.55.54.0/23 133760 -103.55.58.0/24 58528 -103.55.59.0/24 63972 -103.55.60.0/22 132116 -103.55.64.0/22 134020 -103.55.68.0/22 23674 -103.55.72.0/22 24186 -103.55.76.0/22 134141 -103.55.88.0/22 134026 -103.55.92.0/23 134143 -103.55.94.0/24 134143 -103.55.96.0/22 23860 -103.55.100.0/22 134287 -103.55.104.0/22 133989 -103.55.108.0/22 134023 -103.55.112.0/23 27381 -103.55.114.0/23 9517 -103.55.116.0/22 63971 -103.55.124.0/22 4637 -103.55.128.0/22 132839 -103.55.132.0/24 133736 -103.55.134.0/23 133736 -103.55.136.0/23 55816 -103.55.138.0/24 136606 -103.55.139.0/24 133827 -103.55.140.0/22 134086 -103.55.144.0/22 134146 -103.55.148.0/22 26380 -103.55.156.0/22 4713 -103.55.160.0/24 136073 -103.55.161.0/24 134154 -103.55.162.0/23 134147 -103.55.164.0/23 133976 -103.55.167.0/24 133976 -103.55.168.0/22 58640 -103.55.172.0/22 4812 -103.55.176.0/23 63974 -103.55.179.0/24 133950 -103.55.184.0/24 134024 -103.55.188.0/22 3786 -103.55.192.0/22 59094 -103.55.196.0/22 18134 -103.55.200.0/22 10098 -103.55.212.0/24 10143 -103.55.213.0/24 17754 -103.55.214.0/23 133981 -103.55.216.0/24 133824 -103.55.217.0/24 134155 -103.55.219.0/24 134163 -103.55.220.0/22 133829 -103.55.232.0/22 132894 -103.55.244.0/23 135776 -103.55.247.0/24 58678 -103.56.4.0/22 137498 -103.56.8.0/22 31972 -103.56.12.0/22 134160 -103.56.16.0/22 132883 -103.56.20.0/22 59022 -103.56.24.0/22 132742 -103.56.28.0/24 134161 -103.56.30.0/24 138239 -103.56.31.0/24 134164 -103.56.32.0/22 4837 -103.56.36.0/23 133712 -103.56.38.0/24 133712 -103.56.39.0/24 132717 -103.56.40.0/22 134053 -103.56.44.0/22 135386 -103.56.48.0/22 17676 -103.56.52.0/24 137443 -103.56.53.0/24 134835 -103.56.55.0/24 134130 -103.56.60.0/22 4837 -103.56.68.0/23 133279 -103.56.70.0/24 133825 -103.56.71.0/24 134133 -103.56.76.0/22 58466 -103.56.84.0/22 134030 -103.56.96.0/22 3786 -103.56.108.0/22 17676 -103.56.112.0/22 55933 -103.56.116.0/22 54994 -103.56.124.0/22 134171 -103.56.128.0/22 17941 -103.56.132.0/22 17676 -103.56.136.0/22 135357 -103.56.148.0/23 55688 -103.56.150.0/24 24069 -103.56.151.0/24 132896 -103.56.152.0/22 23650 -103.56.156.0/22 45899 -103.56.160.0/22 131431 -103.56.164.0/22 135915 -103.56.168.0/22 131430 -103.56.172.0/24 133668 -103.56.173.0/24 134173 -103.56.174.0/24 38901 -103.56.175.0/24 132962 -103.56.180.0/22 131215 -103.56.184.0/24 137969 -103.56.185.0/24 58466 -103.56.186.0/23 58466 -103.56.188.0/22 133826 -103.56.192.0/22 134548 -103.56.196.0/22 55341 -103.56.205.0/24 58477 -103.56.206.0/23 58477 -103.56.208.0/23 58826 -103.56.216.0/24 36351 -103.56.217.0/24 134835 -103.56.218.0/23 36351 -103.56.224.0/22 134008 -103.56.228.0/22 133982 -103.56.232.0/24 23947 -103.56.233.0/24 131111 -103.56.234.0/24 23947 -103.56.235.0/24 131111 -103.56.236.0/22 45804 -103.56.252.0/22 134052 -103.57.0.0/23 134179 -103.57.2.0/24 134179 -103.57.3.0/24 45437 -103.57.4.0/22 9370 -103.57.8.0/22 46028 -103.57.12.0/22 63701 -103.57.16.0/24 17439 -103.57.17.0/24 133883 -103.57.18.0/24 133883 -103.57.20.0/22 63980 -103.57.24.0/22 138415 -103.57.28.0/22 17676 -103.57.32.0/22 134369 -103.57.36.0/22 55699 -103.57.40.0/22 134180 -103.57.44.0/22 17676 -103.57.60.0/22 4766 -103.57.68.0/24 134183 -103.57.69.0/24 133985 -103.57.70.0/23 134006 -103.57.74.0/23 42695 -103.57.80.0/22 135724 -103.57.84.0/23 133982 -103.57.87.0/24 133982 -103.57.88.0/24 59171 -103.57.89.0/24 58528 -103.57.90.0/24 132899 -103.57.91.0/24 134188 -103.57.92.0/22 17882 -103.57.100.0/22 2519 -103.57.108.0/22 24000 -103.57.120.0/22 134186 -103.57.124.0/24 4755 -103.57.125.0/24 134050 -103.57.132.0/22 134033 -103.57.140.0/22 17665 -103.57.144.0/22 131909 -103.57.150.0/24 134032 -103.57.151.0/24 63984 -103.57.156.0/22 197981 -103.57.164.0/24 23858 -103.57.165.0/24 36351 -103.57.166.0/23 23858 -103.57.168.0/22 132165 -103.57.172.0/22 24554 -103.57.176.0/22 59162 -103.57.184.0/22 134264 -103.57.188.0/22 45352 -103.57.192.0/24 63882 -103.57.194.0/23 63882 -103.57.200.0/24 55592 -103.57.201.0/24 136209 -103.57.202.0/24 136209 -103.57.203.0/24 55592 -103.57.208.0/22 131353 -103.57.216.0/22 133984 -103.57.220.0/22 45899 -103.57.226.0/24 134029 -103.57.227.0/24 58809 -103.57.228.0/22 132839 -103.57.232.0/22 7131 -103.57.236.0/22 17747 -103.57.240.0/21 17747 -103.57.248.0/22 133320 -103.57.252.0/22 132296 -103.58.4.0/23 133001 -103.58.6.0/23 45194 -103.58.8.0/22 133001 -103.58.16.0/22 134202 -103.58.20.0/22 45355 -103.58.32.0/24 134203 -103.58.33.0/24 17451 -103.58.34.0/23 1221 -103.58.40.0/24 134028 -103.58.41.0/24 132116 -103.58.42.0/24 134028 -103.58.43.0/24 133994 -103.58.52.0/22 9829 -103.58.60.0/22 9829 -103.58.64.0/22 134032 -103.58.68.0/22 24295 -103.58.72.0/22 134204 -103.58.76.0/22 9829 -103.58.92.0/22 134201 -103.58.96.0/22 134012 -103.58.100.0/22 133800 -103.58.104.0/23 133834 -103.58.108.0/23 63987 -103.58.110.0/24 54092 -103.58.111.0/24 133832 -103.58.112.0/24 134214 -103.58.114.0/24 134029 -103.58.115.0/24 134032 -103.58.116.0/23 134032 -103.58.118.0/24 134036 -103.58.144.0/23 63991 -103.58.146.0/24 133835 -103.58.148.0/22 63989 -103.58.160.0/22 59278 -103.58.164.0/22 135739 -103.58.176.0/22 8100 -103.58.182.0/23 11031 -103.58.192.0/22 134218 -103.58.204.0/22 9829 -103.58.212.0/24 17819 -103.58.216.0/22 38803 -103.58.224.0/22 132726 -103.58.228.0/22 134220 -103.58.232.0/24 59267 -103.58.233.0/24 134027 -103.58.234.0/23 134225 -103.58.236.0/22 9829 -103.58.240.0/21 9829 -103.58.248.0/22 45433 -103.59.4.0/22 134899 -103.59.32.0/22 132726 -103.59.36.0/22 45905 -103.59.40.0/22 134705 -103.59.44.0/22 137443 -103.59.48.0/22 134221 -103.59.52.0/22 136486 -103.59.56.0/22 45117 -103.59.60.0/22 9829 -103.59.64.0/22 9829 -103.59.72.0/22 135739 -103.59.88.0/24 139538 -103.59.89.0/24 131903 -103.59.90.0/24 38574 -103.59.92.0/22 39782 -103.59.96.0/22 9829 -103.59.100.0/22 55933 -103.59.104.0/24 132770 -103.59.105.0/24 135241 -103.59.106.0/23 135241 -103.59.108.0/22 40676 -103.59.112.0/22 133774 -103.59.121.0/24 59065 -103.59.122.0/24 59065 -103.59.124.0/22 4837 -103.59.132.0/22 132924 -103.59.136.0/22 18046 -103.59.140.0/22 132215 -103.59.144.0/22 133199 -103.59.152.0/22 59185 -103.59.156.0/24 45971 -103.59.159.0/24 38687 -103.59.164.0/22 132422 -103.59.172.0/22 7529 -103.59.176.0/22 134226 -103.59.180.0/23 17439 -103.59.182.0/24 133930 -103.59.183.0/24 55302 -103.59.184.0/22 132931 -103.59.188.0/22 58678 -103.59.192.0/22 134049 -103.59.196.0/24 133275 -103.59.198.0/23 133275 -103.59.200.0/22 134014 -103.59.204.0/22 45194 -103.59.208.0/23 45117 -103.59.210.0/24 45117 -103.59.212.0/22 58678 -103.59.220.0/22 131595 -103.59.233.0/24 132341 -103.59.234.0/23 58398 -103.60.8.0/24 38001 -103.60.9.0/24 134451 -103.60.10.0/24 63930 -103.60.11.0/24 38001 -103.60.12.0/22 27176 -103.60.16.0/22 131435 -103.60.20.0/24 136900 -103.60.21.0/24 134235 -103.60.22.0/24 17890 -103.60.23.0/24 133493 -103.60.24.0/22 134232 -103.60.32.0/22 109 -103.60.40.0/22 9829 -103.60.52.0/22 9829 -103.60.56.0/23 55592 -103.60.58.0/24 136209 -103.60.59.0/24 55592 -103.60.60.0/22 18106 -103.60.64.0/22 8100 -103.60.76.0/22 9829 -103.60.84.0/22 9829 -103.60.96.0/24 133493 -103.60.98.0/24 133030 -103.60.99.0/24 64095 -103.60.100.0/22 134040 -103.60.104.0/24 134306 -103.60.105.0/24 132852 -103.60.107.0/24 17766 -103.60.108.0/22 55720 -103.60.112.0/22 58640 -103.60.120.0/23 17873 -103.60.122.0/23 9532 -103.60.124.0/22 3786 -103.60.128.0/22 9829 -103.60.132.0/23 58473 -103.60.134.0/24 18119 -103.60.135.0/24 55741 -103.60.136.0/22 134016 -103.60.144.0/23 136209 -103.60.148.0/22 132839 -103.60.152.0/22 4764 -103.60.156.0/24 9430 -103.60.160.0/22 134236 -103.60.164.0/22 137697 -103.60.168.0/22 4775 -103.60.172.0/22 63996 -103.60.176.0/22 132933 -103.60.180.0/23 55685 -103.60.182.0/24 55685 -103.60.184.0/24 134239 -103.60.185.0/24 18356 -103.60.186.0/23 135729 -103.60.192.0/22 133772 -103.60.196.0/23 136712 -103.60.198.0/23 134043 -103.60.200.0/22 7546 -103.60.208.0/22 56209 -103.60.212.0/23 134305 -103.60.214.0/24 134305 -103.60.215.0/24 133982 -103.60.216.0/24 134245 -103.60.217.0/24 134407 -103.60.218.0/24 135644 -103.60.219.0/24 139538 -103.60.220.0/22 133115 -103.60.224.0/23 136507 -103.60.226.0/24 131899 -103.60.228.0/23 4812 -103.60.232.0/22 17941 -103.60.244.0/24 24109 -103.60.248.0/24 134157 -103.60.252.0/22 134346 -103.61.0.0/22 138415 -103.61.8.0/22 63998 -103.61.12.0/22 134352 -103.61.20.0/22 26658 -103.61.24.0/22 7529 -103.61.28.0/22 40065 -103.61.32.0/22 9829 -103.61.36.0/22 134366 -103.61.42.0/23 11031 -103.61.44.0/22 131434 -103.61.48.0/22 56159 -103.61.52.0/22 9829 -103.61.56.0/22 9829 -103.61.60.0/22 63582 -103.61.69.0/24 134691 -103.61.70.0/24 134357 -103.61.71.0/24 45734 -103.61.72.0/22 9829 -103.61.84.0/22 9829 -103.61.92.0/22 132726 -103.61.96.0/22 55884 -103.61.100.0/24 136637 -103.61.101.0/24 133647 -103.61.102.0/23 133647 -103.61.104.0/23 63580 -103.61.108.0/24 133720 -103.61.109.0/24 135229 -103.61.110.0/24 135229 -103.61.111.0/24 17665 -103.61.112.0/22 45184 -103.61.116.0/23 45734 -103.61.124.0/22 45960 -103.61.132.0/22 9829 -103.61.136.0/22 31972 -103.61.143.0/24 4847 -103.61.144.0/22 132742 -103.61.148.0/23 132990 -103.61.150.0/24 132990 -103.61.151.0/24 59115 -103.61.153.0/24 4808 -103.61.154.0/23 4808 -103.61.168.0/22 132742 -103.61.180.0/22 9829 -103.61.184.0/22 54600 -103.61.192.0/23 134363 -103.61.194.0/24 133305 -103.61.195.0/24 133994 -103.61.196.0/23 134042 -103.61.198.0/24 16 -103.61.199.0/24 134042 -103.61.200.0/22 9829 -103.61.208.0/22 9829 -103.61.220.0/22 58451 -103.61.228.0/23 134367 -103.61.230.0/24 133256 -103.61.231.0/24 134303 -103.61.236.0/22 22552 -103.61.244.0/22 17676 -103.61.248.0/22 135478 -103.61.252.0/22 134259 -103.62.0.0/22 18126 -103.62.4.0/24 4657 -103.62.7.0/24 38532 -103.62.16.0/22 134329 -103.62.28.0/23 2764 -103.62.30.0/23 134431 -103.62.32.0/22 2635 -103.62.36.0/22 134680 -103.62.40.0/22 58640 -103.62.48.0/22 137409 -103.62.53.0/24 132422 -103.62.55.0/24 132422 -103.62.64.0/22 134426 -103.62.88.0/22 63535 -103.62.92.0/22 138774 -103.62.140.0/22 134371 -103.62.144.0/23 58890 -103.62.146.0/24 134054 -103.62.147.0/24 134301 -103.62.152.0/22 134788 -103.62.196.0/23 58381 -103.62.198.0/24 134310 -103.62.199.0/24 18207 -103.62.200.0/23 64002 -103.62.202.0/23 63883 -103.62.228.0/23 18307 -103.62.232.0/22 135661 -103.62.236.0/22 134375 -103.62.240.0/22 64003 -103.62.244.0/22 17676 -103.63.0.0/21 132742 -103.63.22.0/23 9829 -103.63.26.0/24 133544 -103.63.27.0/24 134376 -103.63.28.0/22 134888 -103.63.92.0/24 134378 -103.63.93.0/24 24107 -103.63.94.0/23 134378 -103.63.96.0/22 133843 -103.63.100.0/24 133403 -103.63.102.0/24 134381 -103.63.104.0/22 45903 -103.63.108.0/23 38732 -103.63.110.0/23 45903 -103.63.112.0/21 45903 -103.63.120.0/22 45903 -103.63.128.0/22 55836 -103.63.132.0/22 134379 -103.63.148.0/23 134411 -103.63.158.0/23 134382 -103.63.190.0/24 135375 -103.63.212.0/22 135920 -103.63.216.0/21 131899 -103.63.224.0/22 18126 -103.63.228.0/22 38835 -103.63.233.0/24 133842 -103.63.234.0/24 134403 -103.63.236.0/22 38478 -103.64.8.0/22 135531 -103.64.12.0/24 137877 -103.64.13.0/24 135542 -103.64.14.0/24 135448 -103.64.15.0/24 135456 -103.64.16.0/24 136988 -103.64.18.0/24 59253 -103.64.20.0/22 135529 -103.64.24.0/21 58541 -103.64.132.0/22 18126 -103.64.136.0/23 18126 -103.64.140.0/22 58541 -103.64.144.0/22 58541 -103.64.148.0/22 38220 -103.64.152.0/22 58541 -103.64.156.0/22 133115 -103.64.208.0/22 58541 -103.64.212.0/22 133774 -103.65.8.0/22 63636 -103.65.20.0/23 17439 -103.65.22.0/24 135548 -103.65.23.0/24 138239 -103.65.24.0/23 135218 -103.65.26.0/24 135218 -103.65.28.0/22 132934 -103.65.36.0/22 135391 -103.65.40.0/22 135391 -103.65.44.0/22 2516 -103.65.96.0/23 56259 -103.65.98.0/23 135552 -103.65.180.0/23 38197 -103.65.183.0/24 38197 -103.65.184.0/22 135549 -103.65.188.0/22 135553 -103.65.192.0/22 135700 -103.65.196.0/22 58405 -103.65.200.0/23 133092 -103.65.202.0/23 138239 -103.65.208.0/22 24295 -103.65.212.0/22 135449 -103.65.216.0/22 9266 -103.65.232.0/24 135558 -103.65.233.0/24 135512 -103.65.234.0/23 135563 -103.65.236.0/23 135450 -103.65.238.0/24 135451 -103.65.239.0/24 132822 -103.65.244.0/22 135559 -103.66.4.0/22 135688 -103.66.8.0/23 23860 -103.66.10.0/24 134034 -103.66.11.0/24 23860 -103.66.12.0/22 134021 -103.66.16.0/22 135219 -103.66.20.0/22 135215 -103.66.24.0/23 135564 -103.66.26.0/23 45240 -103.66.28.0/22 33438 -103.66.32.0/22 4611 -103.66.39.0/24 59267 -103.66.44.0/22 23694 -103.66.48.0/22 135234 -103.66.54.0/24 45804 -103.66.56.0/22 40065 -103.66.64.0/22 203098 -103.66.68.0/23 55685 -103.66.70.0/24 133840 -103.66.72.0/21 24186 -103.66.80.0/22 135771 -103.66.84.0/23 131232 -103.66.86.0/24 135452 -103.66.87.0/24 133258 -103.66.92.0/22 55933 -103.66.96.0/22 58763 -103.66.100.0/22 135572 -103.66.104.0/23 33480 -103.66.106.0/24 33480 -103.66.112.0/24 135718 -103.66.113.0/24 45117 -103.66.114.0/23 135718 -103.66.128.0/23 38566 -103.66.130.0/24 27435 -103.66.131.0/24 38566 -103.66.132.0/22 9507 -103.66.152.0/22 63749 -103.66.171.0/24 2687 -103.66.176.0/22 135578 -103.66.180.0/22 29066 -103.66.184.0/22 7529 -103.66.188.0/22 38680 -103.66.192.0/22 38667 -103.66.196.0/23 131111 -103.66.198.0/24 131111 -103.66.199.0/24 23947 -103.66.204.0/22 133661 -103.66.208.0/22 133661 -103.66.212.0/22 134022 -103.66.216.0/22 55933 -103.66.220.0/24 135583 -103.66.221.0/24 132028 -103.66.222.0/23 135582 -103.66.224.0/22 135773 -103.66.232.0/22 134014 -103.67.12.0/22 58659 -103.67.16.0/22 135723 -103.67.26.0/24 24082 -103.67.27.0/24 135595 -103.67.28.0/22 7524 -103.67.32.0/23 135592 -103.67.34.0/23 133657 -103.67.152.0/23 135202 -103.67.154.0/24 135202 -103.67.155.0/24 135585 -103.67.156.0/22 45245 -103.67.165.0/24 135594 -103.67.166.0/24 9255 -103.67.167.0/24 18371 -103.67.168.0/23 9506 -103.67.170.0/23 135600 -103.67.176.0/24 135454 -103.67.177.0/24 63919 -103.67.178.0/23 55352 -103.67.188.0/22 135735 -103.67.204.0/22 17213 -103.67.208.0/22 132726 -103.67.217.0/24 135191 -103.67.218.0/24 59274 -103.67.220.0/22 131910 -103.67.224.0/22 18046 -103.67.228.0/22 45754 -103.67.232.0/23 136712 -103.67.234.0/23 38719 -103.67.236.0/22 135779 -103.67.240.0/22 24225 -103.67.244.0/22 135602 -103.67.248.0/24 38719 -103.67.250.0/24 135601 -103.67.251.0/24 135603 -103.67.252.0/22 55933 -103.68.0.0/22 135459 -103.68.4.0/22 135604 -103.68.8.0/22 135722 -103.68.12.0/22 3786 -103.68.16.0/22 135733 -103.68.20.0/22 132116 -103.68.25.0/24 135730 -103.68.27.0/24 135681 -103.68.28.0/23 132116 -103.68.31.0/24 134026 -103.68.33.0/24 134042 -103.68.34.0/23 134042 -103.68.36.0/22 135775 -103.68.40.0/22 135774 -103.68.44.0/22 45661 -103.68.52.0/22 135777 -103.68.58.0/23 135606 -103.68.64.0/22 134548 -103.68.68.0/23 38733 -103.68.70.0/24 38733 -103.68.71.0/24 63761 -103.68.77.0/24 63753 -103.68.78.0/24 63753 -103.68.80.0/22 45538 -103.68.92.0/24 7575 -103.68.94.0/24 131219 -103.68.104.0/24 63984 -103.68.105.0/24 131242 -103.68.106.0/24 131220 -103.68.107.0/24 131240 -103.68.108.0/23 133448 -103.68.110.0/24 133448 -103.68.111.0/24 138995 -103.68.112.0/22 131299 -103.68.116.0/22 131247 -103.68.120.0/24 38437 -103.68.121.0/24 45887 -103.68.122.0/23 45887 -103.68.124.0/24 131230 -103.68.125.0/24 51318 -103.68.128.0/22 138421 -103.68.132.0/23 131244 -103.68.134.0/24 131244 -103.68.136.0/23 135455 -103.68.138.0/24 131273 -103.68.144.0/22 24270 -103.68.156.0/22 131276 -103.68.160.0/22 131270 -103.68.164.0/22 38719 -103.68.168.0/22 45587 -103.68.172.0/22 59371 -103.68.176.0/24 135685 -103.68.177.0/24 55824 -103.68.178.0/24 131282 -103.68.179.0/24 131286 -103.68.180.0/23 133115 -103.68.182.0/24 133115 -103.68.183.0/24 133073 -103.68.184.0/22 9830 -103.68.188.0/22 17907 -103.68.192.0/22 62468 -103.68.196.0/24 132417 -103.68.197.0/24 131287 -103.68.198.0/24 131220 -103.68.199.0/24 24558 -103.68.204.0/24 131290 -103.68.205.0/24 4801 -103.68.206.0/23 132754 -103.68.208.0/22 131292 -103.68.216.0/22 135772 -103.68.220.0/24 45644 -103.68.221.0/24 9583 -103.68.222.0/24 131295 -103.68.224.0/23 136137 -103.68.226.0/24 136137 -103.68.228.0/22 131296 -103.68.236.0/22 7529 -103.68.240.0/22 63754 -103.68.244.0/22 63755 -103.68.248.0/22 135905 -103.68.252.0/22 45899 -103.69.0.0/23 56307 -103.69.8.0/22 58898 -103.69.12.0/22 58762 -103.69.16.0/22 23650 -103.69.20.0/22 135724 -103.69.24.0/22 132116 -103.69.28.0/23 18229 -103.69.30.0/24 135681 -103.69.31.0/24 131312 -103.69.36.0/22 135679 -103.69.40.0/24 33480 -103.69.44.0/22 135686 -103.69.64.0/24 18351 -103.69.68.0/22 55769 -103.69.72.0/22 7490 -103.69.88.0/22 136373 -103.69.108.0/24 131306 -103.69.109.0/24 135727 -103.69.110.0/23 23966 -103.69.112.0/22 132996 -103.69.116.0/22 136493 -103.69.120.0/22 26658 -103.69.124.0/22 131341 -103.69.128.0/24 131465 -103.69.130.0/23 131582 -103.69.132.0/22 136993 -103.69.136.0/22 131448 -103.69.140.0/23 131444 -103.69.144.0/22 132335 -103.69.148.0/22 131464 -103.69.152.0/22 136993 -103.69.156.0/22 203098 -103.69.164.0/22 131466 -103.69.168.0/22 134006 -103.69.172.0/23 131684 -103.69.174.0/24 132111 -103.69.176.0/24 58816 -103.69.177.0/24 135445 -103.69.178.0/24 135445 -103.69.179.0/24 58816 -103.69.184.0/22 135717 -103.69.192.0/23 45899 -103.69.194.0/23 135905 -103.69.196.0/24 135682 -103.69.197.0/24 58375 -103.69.198.0/24 23913 -103.69.199.0/24 131891 -103.69.204.0/22 132006 -103.69.208.0/24 131996 -103.69.210.0/24 131996 -103.69.212.0/22 20473 -103.69.216.0/22 133647 -103.69.220.0/22 17665 -103.69.224.0/24 16 -103.69.225.0/24 134042 -103.69.226.0/23 134042 -103.69.228.0/23 132023 -103.69.231.0/24 132023 -103.69.234.0/24 132023 -103.69.235.0/24 56030 -103.69.240.0/22 135762 -103.69.244.0/22 132116 -103.69.248.0/22 132037 -103.69.252.0/24 132030 -103.69.253.0/24 132044 -103.69.254.0/24 135607 -103.70.0.0/22 7979 -103.70.4.0/22 59374 -103.70.16.0/22 135462 -103.70.20.0/22 16509 -103.70.24.0/22 38064 -103.70.28.0/22 63761 -103.70.32.0/22 133234 -103.70.38.0/23 137653 -103.70.40.0/24 58965 -103.70.41.0/24 134026 -103.70.42.0/23 58965 -103.70.46.0/24 23860 -103.70.48.0/24 36351 -103.70.51.0/24 3356 -103.70.52.0/22 7532 -103.70.56.0/24 133859 -103.70.57.0/24 24516 -103.70.58.0/24 134324 -103.70.59.0/24 134520 -103.70.60.0/22 132215 -103.70.64.0/22 135409 -103.70.68.0/24 135464 -103.70.69.0/24 132557 -103.70.70.0/23 7545 -103.70.72.0/22 58511 -103.70.76.0/23 45753 -103.70.78.0/24 132089 -103.70.79.0/24 135463 -103.70.80.0/22 132116 -103.70.84.0/22 58895 -103.70.88.0/23 132083 -103.70.90.0/23 135767 -103.70.124.0/22 133279 -103.70.128.0/24 134262 -103.70.129.0/24 18229 -103.70.130.0/23 18229 -103.70.132.0/24 133296 -103.70.134.0/23 133296 -103.70.136.0/23 10112 -103.70.138.0/24 132219 -103.70.139.0/24 135764 -103.70.140.0/22 132092 -103.70.144.0/22 133647 -103.70.152.0/22 135763 -103.70.156.0/24 133720 -103.70.157.0/24 138738 -103.70.158.0/23 133720 -103.70.160.0/23 132778 -103.70.162.0/23 58965 -103.70.164.0/22 135761 -103.70.174.0/24 132097 -103.70.180.0/24 9919 -103.70.181.0/24 9311 -103.70.182.0/23 9311 -103.70.184.0/22 46573 -103.70.188.0/22 137620 -103.70.192.0/22 132113 -103.70.196.0/22 135711 -103.70.200.0/22 134026 -103.70.204.0/24 135712 -103.70.205.0/24 136698 -103.70.206.0/24 135712 -103.70.208.0/22 17747 -103.70.212.0/22 17676 -103.70.216.0/22 132100 -103.70.220.0/22 63620 -103.70.224.0/24 136933 -103.70.225.0/24 132325 -103.70.226.0/23 132325 -103.70.228.0/22 132123 -103.70.234.0/23 134149 -103.70.240.0/22 59123 -103.70.244.0/22 132133 -103.70.248.0/24 55780 -103.70.249.0/24 132148 -103.70.250.0/23 132386 -103.71.4.0/22 132138 -103.71.8.0/22 55662 -103.71.12.0/22 132146 -103.71.16.0/22 45194 -103.71.20.0/22 134004 -103.71.24.0/24 132168 -103.71.26.0/24 132134 -103.71.27.0/24 132205 -103.71.28.0/22 55558 -103.71.32.0/22 134548 -103.71.36.0/22 17676 -103.71.40.0/22 132210 -103.71.44.0/23 46022 -103.71.46.0/23 134113 -103.71.48.0/22 38197 -103.71.52.0/22 135699 -103.71.57.0/24 132218 -103.71.58.0/24 134698 -103.71.59.0/24 132222 -103.71.60.0/23 9830 -103.71.62.0/24 9830 -103.71.63.0/24 58903 -103.71.64.0/22 135705 -103.71.68.0/22 23650 -103.71.76.0/22 135692 -103.71.92.0/22 17941 -103.71.98.0/24 36351 -103.71.99.0/24 135682 -103.71.120.0/21 45062 -103.71.128.0/22 45062 -103.71.137.0/24 132233 -103.71.138.0/23 132233 -103.71.140.0/24 9919 -103.71.144.0/23 45753 -103.71.146.0/23 137443 -103.71.148.0/22 133115 -103.71.152.0/24 21859 -103.71.153.0/24 136950 -103.71.154.0/23 136933 -103.71.156.0/23 133203 -103.71.158.0/24 133203 -103.71.164.0/23 59179 -103.71.168.0/24 135690 -103.71.169.0/24 133997 -103.71.170.0/24 135690 -103.71.171.0/24 133997 -103.71.174.0/24 136175 -103.71.175.0/24 134512 -103.71.176.0/22 55720 -103.71.180.0/24 131402 -103.71.189.0/24 131302 -103.71.190.0/23 135472 -103.71.192.0/22 134899 -103.71.196.0/22 45062 -103.71.200.0/22 45062 -103.71.204.0/24 132248 -103.71.205.0/24 4755 -103.71.206.0/23 132256 -103.71.224.0/22 9875 -103.71.228.0/22 133054 -103.71.236.0/22 135386 -103.71.242.0/23 132270 -103.71.248.0/22 132344 -103.71.252.0/23 45753 -103.71.255.0/24 135471 -103.72.0.0/22 45814 -103.72.4.0/23 134520 -103.72.6.0/23 132974 -103.72.8.0/22 135706 -103.72.12.0/22 45062 -103.72.16.0/20 45062 -103.72.32.0/20 45062 -103.72.48.0/21 45062 -103.72.72.0/22 132296 -103.72.76.0/22 56264 -103.72.80.0/23 40065 -103.72.82.0/23 45753 -103.72.84.0/22 58895 -103.72.88.0/24 55922 -103.72.90.0/23 132254 -103.72.92.0/23 64050 -103.72.96.0/22 63757 -103.72.100.0/22 17483 -103.72.109.0/24 132365 -103.72.110.0/23 58476 -103.72.112.0/24 63615 -103.72.113.0/24 9929 -103.72.120.0/22 131482 -103.72.128.0/21 45062 -103.72.140.0/22 136302 -103.72.144.0/22 135377 -103.72.148.0/24 134835 -103.72.152.0/22 26658 -103.72.156.0/22 133713 -103.72.160.0/24 132327 -103.72.162.0/23 132372 -103.72.164.0/22 135386 -103.72.168.0/22 133661 -103.72.172.0/24 4808 -103.72.176.0/22 132976 -103.72.188.0/22 132400 -103.72.192.0/24 132398 -103.72.193.0/24 132401 -103.72.194.0/23 36351 -103.72.201.0/24 132416 -103.72.202.0/23 9723 -103.72.204.0/22 18196 -103.72.208.0/23 133075 -103.72.210.0/24 132424 -103.72.211.0/24 136008 -103.72.216.0/22 133300 -103.72.220.0/22 133661 -103.73.32.0/23 132778 -103.73.34.0/23 134928 -103.73.36.0/23 132436 -103.73.40.0/24 132433 -103.73.44.0/22 132438 -103.73.48.0/22 63646 -103.73.52.0/22 203098 -103.73.56.0/24 132443 -103.73.57.0/24 132476 -103.73.58.0/24 132464 -103.73.59.0/24 132484 -103.73.60.0/22 55699 -103.73.64.0/22 36351 -103.73.68.0/22 18187 -103.73.72.0/22 135468 -103.73.76.0/23 135474 -103.73.78.0/24 135474 -103.73.80.0/23 132486 -103.73.82.0/24 132498 -103.73.83.0/24 7566 -103.73.84.0/23 132491 -103.73.88.0/22 134548 -103.73.92.0/22 133275 -103.73.96.0/22 135386 -103.73.100.0/22 136969 -103.73.104.0/22 132298 -103.73.108.0/22 132528 -103.73.112.0/23 38809 -103.73.115.0/24 133523 -103.73.116.0/22 23650 -103.73.124.0/24 134145 -103.73.125.0/24 59134 -103.73.126.0/24 132544 -103.73.136.0/21 133774 -103.73.144.0/22 18013 -103.73.148.0/22 132764 -103.73.152.0/22 135031 -103.73.156.0/23 46573 -103.73.160.0/22 137443 -103.73.164.0/22 55636 -103.73.172.0/22 58964 -103.73.180.0/22 133469 -103.73.188.0/22 135752 -103.73.194.0/23 132685 -103.73.196.0/22 132622 -103.73.200.0/22 132626 -103.73.204.0/22 134764 -103.73.212.0/22 55341 -103.73.221.0/24 17483 -103.73.222.0/24 17483 -103.73.224.0/23 132735 -103.73.226.0/24 132530 -103.73.227.0/24 132735 -103.73.228.0/22 132727 -103.73.232.0/23 132708 -103.73.234.0/24 132741 -103.73.235.0/24 135473 -103.73.236.0/22 132686 -103.73.242.0/23 135391 -103.73.252.0/22 46261 -103.74.0.0/22 38090 -103.74.4.0/24 17439 -103.74.6.0/23 16625 -103.74.12.0/23 16625 -103.74.14.0/23 132799 -103.74.16.0/22 133720 -103.74.20.0/22 45814 -103.74.24.0/21 23724 -103.74.32.0/20 45062 -103.74.52.0/24 18046 -103.74.53.0/24 134729 -103.74.54.0/23 135682 -103.74.64.0/24 135695 -103.74.66.0/23 132808 -103.74.68.0/22 135699 -103.74.72.0/22 133977 -103.74.76.0/22 41609 -103.74.84.0/22 132806 -103.74.88.0/22 135716 -103.74.92.0/22 135703 -103.74.97.0/24 134001 -103.74.108.0/22 24186 -103.74.112.0/22 63758 -103.74.116.0/22 63759 -103.74.120.0/22 18403 -103.74.124.0/22 4515 -103.74.128.0/23 4642 -103.74.130.0/24 4642 -103.74.136.0/22 24186 -103.74.140.0/23 135702 -103.74.142.0/24 132812 -103.74.143.0/24 46034 -103.74.144.0/22 135753 -103.74.160.0/22 59101 -103.74.166.0/23 135460 -103.74.168.0/24 4826 -103.74.169.0/24 135756 -103.74.170.0/24 135487 -103.74.171.0/24 132847 -103.74.172.0/22 132813 -103.74.176.0/22 203098 -103.74.180.0/22 135751 -103.74.184.0/22 134141 -103.74.188.0/22 9297 -103.74.192.0/24 139659 -103.74.193.0/24 133199 -103.74.194.0/23 133199 -103.74.196.0/22 132137 -103.74.200.0/24 203061 -103.74.201.0/24 138995 -103.74.202.0/23 138995 -103.74.208.0/22 45230 -103.74.212.0/23 134626 -103.74.214.0/23 135757 -103.74.216.0/22 4851 -103.74.220.0/22 135873 -103.74.226.0/24 132852 -103.74.227.0/24 135697 -103.74.228.0/22 134180 -103.74.237.0/24 58678 -103.74.239.0/24 58678 -103.74.240.0/22 132908 -103.74.244.0/22 135693 -103.74.248.0/22 133012 -103.74.252.0/22 45328 -103.75.0.0/22 133041 -103.75.4.0/22 133045 -103.75.8.0/22 136557 -103.75.12.0/22 132839 -103.75.16.0/22 134548 -103.75.20.0/24 132429 -103.75.21.0/24 45355 -103.75.22.0/24 133068 -103.75.23.0/24 133156 -103.75.24.0/23 23947 -103.75.26.0/23 131111 -103.75.28.0/22 132137 -103.75.32.0/24 134319 -103.75.33.0/24 4 -103.75.34.0/23 4 -103.75.36.0/22 58964 -103.75.40.0/23 134325 -103.75.42.0/24 23860 -103.75.43.0/24 134325 -103.75.44.0/22 132839 -103.75.48.0/24 133149 -103.75.49.0/24 45650 -103.75.50.0/24 135476 -103.75.51.0/24 56253 -103.75.52.0/22 46023 -103.75.56.0/22 134006 -103.75.68.0/22 133296 -103.75.100.0/24 131111 -103.75.101.0/24 23947 -103.75.102.0/23 23947 -103.75.104.0/22 59057 -103.75.116.0/24 133480 -103.75.117.0/24 133752 -103.75.118.0/24 136258 -103.75.119.0/24 133480 -103.75.125.0/24 135817 -103.75.126.0/24 135718 -103.75.132.0/23 17434 -103.75.134.0/23 133206 -103.75.136.0/22 136511 -103.75.140.0/23 133386 -103.75.148.0/23 133557 -103.75.150.0/24 135475 -103.75.151.0/24 394434 -103.75.152.0/22 63629 -103.75.156.0/22 135216 -103.75.160.0/22 135760 -103.75.164.0/22 137139 -103.75.168.0/23 138841 -103.75.170.0/24 138841 -103.75.171.0/24 23679 -103.75.172.0/23 27385 -103.75.174.0/24 27385 -103.75.175.0/24 38166 -103.75.176.0/22 63762 -103.75.180.0/22 38733 -103.75.188.0/22 55720 -103.75.192.0/22 17747 -103.75.196.0/22 133227 -103.75.200.0/24 45455 -103.75.201.0/24 133496 -103.75.202.0/24 133483 -103.75.203.0/24 133872 -103.75.204.0/22 134067 -103.75.208.0/24 23947 -103.75.209.0/24 131111 -103.75.210.0/23 23947 -103.75.212.0/22 133476 -103.75.216.0/24 7700 -103.75.217.0/24 174 -103.75.218.0/23 174 -103.75.224.0/22 135239 -103.75.230.0/24 31972 -103.75.232.0/22 135479 -103.75.237.0/24 64310 -103.75.238.0/23 135000 -103.75.240.0/22 26658 -103.75.244.0/22 58893 -103.75.248.0/23 133580 -103.75.250.0/24 133580 -103.75.251.0/24 55410 -103.75.252.0/22 17676 -103.76.2.0/24 133742 -103.76.3.0/24 133932 -103.76.4.0/22 132955 -103.76.8.0/23 135748 -103.76.10.0/23 135735 -103.76.12.0/22 131111 -103.76.16.0/21 23947 -103.76.24.0/23 23947 -103.76.26.0/24 23947 -103.76.28.0/23 133932 -103.76.30.0/24 133622 -103.76.32.0/22 133583 -103.76.36.0/23 58621 -103.76.40.0/22 138466 -103.76.44.0/22 133866 -103.76.48.0/23 36351 -103.76.50.0/24 135481 -103.76.51.0/24 136136 -103.76.52.0/22 133973 -103.76.60.0/22 4808 -103.76.76.0/23 45194 -103.76.78.0/23 17625 -103.76.80.0/22 45804 -103.76.84.0/23 55933 -103.76.86.0/23 137443 -103.76.88.0/23 133889 -103.76.90.0/24 133958 -103.76.92.0/22 4812 -103.76.96.0/22 58964 -103.76.100.0/22 135739 -103.76.104.0/24 133926 -103.76.112.0/22 133617 -103.76.124.0/24 134663 -103.76.125.0/24 133040 -103.76.128.0/22 58964 -103.76.136.0/22 135746 -103.76.140.0/22 45117 -103.76.144.0/22 132347 -103.76.148.0/22 135477 -103.76.152.0/22 134425 -103.76.156.0/24 4826 -103.76.157.0/24 4638 -103.76.158.0/23 24322 -103.76.160.0/23 135607 -103.76.164.0/23 24322 -103.76.166.0/23 132927 -103.76.168.0/21 9341 -103.76.176.0/23 135612 -103.76.179.0/24 135307 -103.76.180.0/22 23884 -103.76.184.0/23 135307 -103.76.186.0/23 132927 -103.76.188.0/22 135758 -103.76.196.0/22 135615 -103.76.200.0/22 135480 -103.76.204.0/24 135483 -103.76.205.0/24 58610 -103.76.206.0/23 64088 -103.76.208.0/22 24186 -103.76.212.0/22 18229 -103.76.220.0/22 4847 -103.76.224.0/22 4847 -103.76.228.0/22 394695 -103.76.232.0/22 132384 -103.76.240.0/22 131686 -103.76.247.0/24 58610 -103.76.248.0/22 135868 -103.76.252.0/22 132445 -103.77.0.0/22 134375 -103.77.4.0/23 58610 -103.77.7.0/24 135625 -103.77.8.0/24 17539 -103.77.10.0/23 135632 -103.77.12.0/24 135626 -103.77.13.0/24 135627 -103.77.15.0/24 133988 -103.77.16.0/22 135628 -103.77.20.0/22 132752 -103.77.24.0/23 17828 -103.77.26.0/23 18229 -103.77.28.0/22 4847 -103.77.32.0/22 58964 -103.77.36.0/22 24186 -103.77.40.0/22 58965 -103.77.44.0/22 23860 -103.77.48.0/22 55699 -103.77.60.0/22 134437 -103.77.64.0/22 38229 -103.77.68.0/23 24322 -103.77.70.0/23 134832 -103.77.72.0/22 63631 -103.77.77.0/24 135636 -103.77.78.0/24 135636 -103.77.79.0/24 63930 -103.77.82.0/23 135635 -103.77.84.0/23 38089 -103.77.92.0/22 63631 -103.77.100.0/22 135637 -103.77.104.0/23 133800 -103.77.106.0/23 135450 -103.77.111.0/24 135814 -103.77.114.0/24 135644 -103.77.115.0/24 135639 -103.77.120.0/22 132071 -103.77.124.0/22 132933 -103.77.128.0/24 7474 -103.77.129.0/24 135643 -103.77.130.0/23 132708 -103.77.132.0/23 63634 -103.77.134.0/24 63634 -103.77.136.0/22 23860 -103.77.140.0/23 137468 -103.77.142.0/24 19551 -103.77.143.0/24 137468 -103.77.144.0/22 4851 -103.77.152.0/24 58678 -103.77.156.0/22 135484 -103.77.160.0/21 45544 -103.77.168.0/22 63764 -103.77.184.0/24 41868 -103.77.185.0/24 131765 -103.77.186.0/23 132974 -103.77.188.0/22 134702 -103.77.192.0/23 10222 -103.77.196.0/23 135813 -103.77.198.0/24 137837 -103.77.199.0/24 7575 -103.77.200.0/24 7545 -103.77.201.0/24 9988 -103.77.202.0/23 133736 -103.77.204.0/22 64297 -103.77.224.0/24 136165 -103.77.225.0/24 135647 -103.77.226.0/23 64298 -103.77.228.0/22 132778 -103.77.232.0/22 133480 -103.77.252.0/23 63844 -103.77.254.0/23 135820 -103.78.8.0/24 23947 -103.78.9.0/24 131111 -103.78.10.0/24 23947 -103.78.11.0/24 131111 -103.78.12.0/22 135818 -103.78.16.0/22 23860 -103.78.20.0/23 135811 -103.78.22.0/23 135815 -103.78.24.0/24 23947 -103.78.25.0/24 131111 -103.78.26.0/24 131111 -103.78.27.0/24 23947 -103.78.28.0/23 132958 -103.78.31.0/24 132958 -103.78.32.0/22 55482 -103.78.36.0/24 131111 -103.78.37.0/24 23947 -103.78.38.0/24 23947 -103.78.39.0/24 131111 -103.78.40.0/22 135652 -103.78.44.0/23 136056 -103.78.46.0/24 135817 -103.78.47.0/24 45144 -103.78.48.0/23 45144 -103.78.50.0/24 135655 -103.78.52.0/22 135654 -103.78.64.0/22 4837 -103.78.68.0/22 137969 -103.78.72.0/22 9341 -103.78.76.0/22 63768 -103.78.80.0/23 131111 -103.78.83.0/24 131111 -103.78.84.0/22 63767 -103.78.88.0/22 131414 -103.78.92.0/24 135905 -103.78.93.0/24 18403 -103.78.96.0/23 131111 -103.78.98.0/24 131111 -103.78.100.0/22 64301 -103.78.104.0/23 64314 -103.78.106.0/24 135485 -103.78.107.0/24 134784 -103.78.108.0/23 135662 -103.78.111.0/24 135666 -103.78.112.0/22 131111 -103.78.116.0/23 135666 -103.78.118.0/23 58650 -103.78.120.0/22 40676 -103.78.126.0/23 24143 -103.78.128.0/23 135664 -103.78.130.0/24 9902 -103.78.131.0/24 135664 -103.78.133.0/24 45996 -103.78.134.0/23 136610 -103.78.136.0/24 135668 -103.78.137.0/24 135810 -103.78.138.0/23 64309 -103.78.140.0/22 9341 -103.78.144.0/22 64304 -103.78.148.0/22 16 -103.78.152.0/24 132571 -103.78.153.0/24 135672 -103.78.154.0/23 135812 -103.78.159.0/24 135876 -103.78.160.0/22 135673 -103.78.164.0/22 135801 -103.78.168.0/23 133315 -103.78.170.0/23 135809 -103.78.180.0/22 133469 -103.78.184.0/24 135857 -103.78.185.0/24 135675 -103.78.188.0/23 135676 -103.78.190.0/24 135676 -103.78.191.0/24 138482 -103.78.193.0/24 137002 -103.78.194.0/24 135878 -103.78.195.0/24 64303 -103.78.200.0/24 133260 -103.78.201.0/24 135697 -103.78.202.0/23 132303 -103.78.204.0/22 135802 -103.78.208.0/24 131111 -103.78.209.0/24 23947 -103.78.210.0/23 23947 -103.78.212.0/23 23947 -103.78.214.0/23 131111 -103.78.216.0/22 55699 -103.78.220.0/24 45949 -103.78.221.0/24 135808 -103.78.222.0/23 133858 -103.78.224.0/22 135881 -103.78.228.0/22 137697 -103.78.232.0/24 64302 -103.78.233.0/24 138826 -103.78.234.0/23 64302 -103.78.236.0/23 135804 -103.78.238.0/24 135804 -103.78.239.0/24 18101 -103.78.241.0/24 1221 -103.78.242.0/24 135542 -103.78.243.0/24 137877 -103.78.244.0/22 135853 -103.78.248.0/22 136007 -103.78.252.0/22 135882 -103.79.0.0/24 133296 -103.79.1.0/24 135884 -103.79.2.0/23 135884 -103.79.4.0/24 64098 -103.79.7.0/24 64098 -103.79.12.0/22 131912 -103.79.20.0/24 135890 -103.79.21.0/24 137085 -103.79.22.0/24 135892 -103.79.23.0/24 135889 -103.79.24.0/22 4808 -103.79.32.0/22 134331 -103.79.52.0/22 138415 -103.79.72.0/24 10084 -103.79.73.0/24 135805 -103.79.74.0/24 135875 -103.79.75.0/24 135897 -103.79.76.0/22 8100 -103.79.88.0/24 135898 -103.79.89.0/24 4049 -103.79.90.0/24 64306 -103.79.91.0/24 64305 -103.79.92.0/22 7540 -103.79.96.0/24 64308 -103.79.97.0/24 135789 -103.79.98.0/23 64307 -103.79.100.0/22 135855 -103.79.104.0/22 136000 -103.79.108.0/23 133382 -103.79.110.0/23 135645 -103.79.112.0/24 133647 -103.79.114.0/23 133647 -103.79.116.0/24 135858 -103.79.117.0/24 136004 -103.79.119.0/24 136005 -103.79.120.0/22 137443 -103.79.124.0/22 136001 -103.79.133.0/24 38690 -103.79.134.0/24 45974 -103.79.135.0/24 38690 -103.79.140.0/22 45899 -103.79.152.0/24 131111 -103.79.153.0/24 23947 -103.79.154.0/23 131111 -103.79.159.0/24 134090 -103.79.160.0/22 135874 -103.79.164.0/22 135866 -103.79.168.0/22 133648 -103.79.172.0/22 133736 -103.79.176.0/22 137443 -103.79.180.0/24 9519 -103.79.181.0/24 136232 -103.79.182.0/23 136009 -103.79.184.0/22 38197 -103.79.216.0/23 134552 -103.79.218.0/24 134552 -103.79.220.0/22 131262 -103.79.224.0/22 136145 -103.79.230.0/24 136015 -103.79.231.0/24 136016 -103.79.232.0/23 135862 -103.79.235.0/24 135862 -103.79.242.0/24 55355 -103.79.244.0/22 17747 -103.79.248.0/22 133648 -103.79.252.0/22 134053 -103.80.0.0/22 136014 -103.80.5.0/24 395363 -103.80.12.0/22 136716 -103.80.16.0/22 132839 -103.80.20.0/23 133120 -103.80.22.0/23 138249 -103.80.24.0/22 133115 -103.80.28.0/22 137443 -103.80.32.0/23 136033 -103.80.34.0/24 134301 -103.80.36.0/23 136783 -103.80.38.0/24 136783 -103.80.39.0/24 136952 -103.80.40.0/22 136019 -103.80.48.0/22 136023 -103.80.52.0/24 134173 -103.80.53.0/24 136026 -103.80.54.0/24 137085 -103.80.55.0/24 135797 -103.80.56.0/22 135721 -103.80.60.0/22 133676 -103.80.64.0/22 58640 -103.80.68.0/24 135863 -103.80.69.0/24 135526 -103.80.70.0/23 136027 -103.80.76.0/24 136024 -103.80.77.0/24 64312 -103.80.80.0/22 64300 -103.80.84.0/22 201942 -103.80.88.0/23 55685 -103.80.92.0/23 64313 -103.80.94.0/24 64313 -103.80.100.0/23 136035 -103.80.102.0/24 136036 -103.80.103.0/24 55803 -103.80.104.0/22 59092 -103.80.108.0/22 136039 -103.80.112.0/22 132988 -103.80.116.0/23 135834 -103.80.118.0/24 135834 -103.80.120.0/22 135060 -103.80.124.0/22 138415 -103.80.128.0/24 7575 -103.80.129.0/24 136040 -103.80.130.0/24 59197 -103.80.132.0/24 136038 -103.80.133.0/24 3786 -103.80.134.0/23 3786 -103.80.136.0/22 135543 -103.80.140.0/24 136028 -103.80.141.0/24 9821 -103.80.142.0/23 9821 -103.80.144.0/22 132742 -103.80.148.0/23 135871 -103.80.152.0/22 133250 -103.80.156.0/24 18229 -103.80.157.0/24 136352 -103.80.158.0/23 136352 -103.80.160.0/22 38207 -103.80.164.0/24 136044 -103.80.165.0/24 136053 -103.80.166.0/23 135865 -103.80.172.0/22 45804 -103.80.189.0/24 23953 -103.80.196.0/22 135861 -103.80.208.0/24 132409 -103.80.209.0/24 134725 -103.80.210.0/23 17882 -103.80.216.0/22 23884 -103.80.220.0/23 136049 -103.80.222.0/23 136178 -103.80.224.0/23 136050 -103.80.227.0/24 136050 -103.80.236.0/22 64315 -103.80.240.0/22 136054 -103.80.244.0/22 134844 -103.80.248.0/23 135422 -103.80.250.0/24 134285 -103.80.251.0/24 132430 -103.80.254.0/23 133080 -103.81.0.0/22 58898 -103.81.4.0/22 4847 -103.81.8.0/22 18013 -103.81.12.0/23 135792 -103.81.15.0/24 135792 -103.81.16.0/21 18013 -103.81.24.0/22 137163 -103.81.32.0/22 134326 -103.81.36.0/22 132770 -103.81.40.0/22 64006 -103.81.48.0/22 4837 -103.81.53.0/24 136152 -103.81.54.0/24 136135 -103.81.56.0/23 132485 -103.81.60.0/22 136060 -103.81.64.0/22 136055 -103.81.68.0/22 136134 -103.81.72.0/22 10003 -103.81.76.0/24 9268 -103.81.77.0/24 138797 -103.81.78.0/23 136138 -103.81.84.0/22 18403 -103.81.88.0/22 134277 -103.81.92.0/22 45916 -103.81.96.0/22 131538 -103.81.100.0/23 58475 -103.81.102.0/24 136140 -103.81.104.0/23 136141 -103.81.106.0/23 134027 -103.81.112.0/24 134027 -103.81.113.0/24 132148 -103.81.114.0/23 132148 -103.81.116.0/22 135851 -103.81.123.0/24 63722 -103.81.124.0/22 58507 -103.81.128.0/24 14537 -103.81.129.0/24 59268 -103.81.130.0/23 14537 -103.81.132.0/23 131111 -103.81.134.0/24 23947 -103.81.135.0/24 131111 -103.81.136.0/24 132407 -103.81.137.0/24 135644 -103.81.138.0/24 136118 -103.81.139.0/24 136372 -103.81.140.0/22 42695 -103.81.144.0/22 59126 -103.81.152.0/22 139541 -103.81.156.0/22 135848 -103.81.161.0/24 136144 -103.81.162.0/24 55720 -103.81.163.0/24 136149 -103.81.168.0/22 137443 -103.81.172.0/22 38203 -103.81.180.0/24 41281 -103.81.182.0/24 45184 -103.81.184.0/24 42962 -103.81.186.0/23 42962 -103.81.188.0/24 135849 -103.81.189.0/24 134916 -103.81.190.0/23 135849 -103.81.192.0/23 135810 -103.81.194.0/23 59150 -103.81.196.0/22 55492 -103.81.200.0/22 133111 -103.81.204.0/24 139764 -103.81.205.0/24 133854 -103.81.206.0/24 135068 -103.81.207.0/24 136151 -103.81.208.0/22 133246 -103.81.212.0/22 133270 -103.81.216.0/24 136241 -103.81.217.0/24 136242 -103.81.218.0/24 136071 -103.81.219.0/24 135406 -103.81.220.0/22 55699 -103.81.224.0/22 45475 -103.81.228.0/24 198949 -103.81.229.0/24 136153 -103.81.230.0/23 136330 -103.81.236.0/22 135845 -103.81.240.0/23 135844 -103.81.242.0/24 134289 -103.81.243.0/24 135844 -103.81.244.0/24 7545 -103.81.246.0/24 59272 -103.81.247.0/24 55799 -103.81.248.0/23 59272 -103.81.250.0/23 133315 -103.82.0.0/22 60800 -103.82.4.0/23 55799 -103.82.6.0/24 135473 -103.82.8.0/22 136156 -103.82.12.0/22 131111 -103.82.16.0/22 136800 -103.82.28.0/22 135906 -103.82.32.0/22 38733 -103.82.36.0/22 45899 -103.82.40.0/22 135795 -103.82.44.0/23 135793 -103.82.46.0/23 134431 -103.82.48.0/22 13886 -103.82.52.0/22 137443 -103.82.56.0/22 17804 -103.82.66.0/23 134265 -103.82.72.0/22 133647 -103.82.76.0/24 135798 -103.82.77.0/24 45184 -103.82.78.0/23 45184 -103.82.80.0/22 24186 -103.82.88.0/22 18274 -103.82.96.0/22 135782 -103.82.100.0/22 135778 -103.82.108.0/23 7551 -103.82.112.0/22 18046 -103.82.116.0/22 134996 -103.82.120.0/22 45814 -103.82.124.0/24 136161 -103.82.125.0/24 134026 -103.82.126.0/23 136057 -103.82.128.0/22 206819 -103.82.140.0/24 132721 -103.82.141.0/24 136209 -103.82.142.0/23 136209 -103.82.144.0/22 24186 -103.82.148.0/22 135031 -103.82.155.0/24 20473 -103.82.156.0/22 135852 -103.82.160.0/22 133645 -103.82.164.0/24 136058 -103.82.165.0/24 45581 -103.82.167.0/24 136059 -103.82.168.0/22 38197 -103.82.172.0/22 136164 -103.82.176.0/22 136166 -103.82.180.0/22 136061 -103.82.184.0/22 132976 -103.82.188.0/23 134946 -103.82.190.0/24 134946 -103.82.191.0/24 133676 -103.82.192.0/22 18403 -103.82.196.0/22 135908 -103.82.208.0/22 135780 -103.82.212.0/22 59371 -103.82.216.0/22 135010 -103.82.220.0/22 135031 -103.82.224.0/22 4808 -103.82.228.0/23 55720 -103.82.232.0/24 136168 -103.82.233.0/24 136062 -103.82.234.0/23 46573 -103.82.240.0/22 136170 -103.82.247.0/24 136587 -103.82.248.0/22 63989 -103.82.252.0/22 45814 -103.83.1.0/24 136172 -103.83.2.0/23 137099 -103.83.4.0/23 131111 -103.83.7.0/24 131111 -103.83.8.0/22 136698 -103.83.12.0/23 135181 -103.83.14.0/24 133792 -103.83.15.0/24 136176 -103.83.16.0/23 138963 -103.83.18.0/23 133457 -103.83.20.0/22 58895 -103.83.24.0/22 17941 -103.83.32.0/23 136239 -103.83.34.0/23 136177 -103.83.36.0/22 136171 -103.83.40.0/22 18126 -103.83.44.0/22 4847 -103.83.56.0/24 136206 -103.83.57.0/24 135810 -103.83.58.0/24 134021 -103.83.59.0/24 136179 -103.83.64.0/22 37969 -103.83.68.0/22 132323 -103.83.72.0/22 4837 -103.83.76.0/22 133231 -103.83.80.0/24 135826 -103.83.81.0/24 138251 -103.83.85.0/24 136183 -103.83.86.0/24 135824 -103.83.87.0/24 1000 -103.83.88.0/24 395734 -103.83.89.0/24 136184 -103.83.90.0/24 395734 -103.83.91.0/24 136184 -103.83.92.0/23 131111 -103.83.94.0/24 131111 -103.83.95.0/24 23947 -103.83.96.0/23 136078 -103.83.98.0/24 45305 -103.83.99.0/24 136078 -103.83.100.0/24 136063 -103.83.102.0/24 136201 -103.83.103.0/24 136202 -103.83.104.0/22 134290 -103.83.108.0/22 45117 -103.83.116.0/24 136064 -103.83.117.0/24 131735 -103.83.118.0/24 136064 -103.83.120.0/22 136189 -103.83.124.0/24 137071 -103.83.125.0/24 136203 -103.83.126.0/24 135275 -103.83.127.0/24 134026 -103.83.128.0/22 136724 -103.83.136.0/22 135839 -103.83.140.0/22 138847 -103.83.144.0/22 58965 -103.83.148.0/23 134026 -103.83.150.0/24 135840 -103.83.152.0/22 58659 -103.83.156.0/23 17831 -103.83.158.0/24 17831 -103.83.159.0/24 4 -103.83.160.0/24 136261 -103.83.161.0/24 135835 -103.83.164.0/22 136207 -103.83.168.0/23 134190 -103.83.170.0/24 45352 -103.83.171.0/24 134190 -103.83.172.0/22 132641 -103.83.176.0/23 136067 -103.83.178.0/23 136065 -103.83.184.0/22 135214 -103.83.188.0/24 136210 -103.83.190.0/23 136210 -103.83.192.0/24 132335 -103.83.193.0/24 36352 -103.83.194.0/23 36352 -103.83.196.0/24 136211 -103.83.198.0/24 136091 -103.83.199.0/24 17330 -103.83.200.0/23 56134 -103.83.204.0/22 136214 -103.83.208.0/23 38859 -103.83.210.0/24 135828 -103.83.211.0/24 135833 -103.83.212.0/22 135795 -103.83.220.0/22 135825 -103.83.224.0/23 63927 -103.83.226.0/24 136216 -103.83.227.0/24 63927 -103.83.228.0/23 136219 -103.83.230.0/24 55920 -103.83.231.0/24 136223 -103.83.232.0/22 136215 -103.83.240.0/22 136217 -103.83.244.0/22 58971 -103.83.248.0/22 135183 -103.83.252.0/22 59165 -103.84.4.0/22 132641 -103.84.8.0/23 136870 -103.84.19.0/24 55933 -103.84.36.0/22 136224 -103.84.40.0/22 136218 -103.84.44.0/22 136251 -103.84.52.0/22 17557 -103.84.60.0/23 59162 -103.84.62.0/23 137593 -103.84.68.0/22 132566 -103.84.76.0/24 7552 -103.84.77.0/24 24086 -103.84.78.0/24 7552 -103.84.79.0/24 24086 -103.84.80.0/24 45194 -103.84.81.0/24 138520 -103.84.82.0/23 45194 -103.84.84.0/22 45753 -103.84.88.0/22 132813 -103.84.92.0/22 135386 -103.84.96.0/24 136230 -103.84.97.0/24 135376 -103.84.98.0/24 136226 -103.84.99.0/24 55752 -103.84.108.0/22 132721 -103.84.112.0/22 50292 -103.84.116.0/24 136070 -103.84.117.0/24 134635 -103.84.119.0/24 64316 -103.84.124.0/22 17511 -103.84.128.0/22 133255 -103.84.132.0/24 136234 -103.84.133.0/24 136176 -103.84.134.0/24 136238 -103.84.135.0/24 45158 -103.84.136.0/22 136237 -103.84.140.0/22 55699 -103.84.144.0/22 55699 -103.84.148.0/22 17539 -103.84.152.0/22 36236 -103.84.156.0/22 133168 -103.84.160.0/22 4755 -103.84.164.0/23 134884 -103.84.166.0/24 134884 -103.84.167.0/24 131913 -103.84.172.0/22 136246 -103.84.176.0/23 136244 -103.84.178.0/24 136279 -103.84.179.0/24 132557 -103.84.180.0/22 136245 -103.84.184.0/22 135842 -103.84.190.0/23 135786 -103.84.192.0/22 59147 -103.84.200.0/23 136095 -103.84.202.0/23 133989 -103.84.208.0/22 136075 -103.84.212.0/22 136317 -103.84.216.0/22 18019 -103.84.220.0/22 9253 -103.84.224.0/24 7575 -103.84.228.0/22 55699 -103.84.232.0/22 38320 -103.84.236.0/22 134945 -103.84.240.0/22 135783 -103.84.244.0/22 132489 -103.84.249.0/24 136084 -103.84.250.0/24 135831 -103.84.251.0/24 135832 -103.84.252.0/22 136248 -103.85.0.0/22 56030 -103.85.4.0/23 136074 -103.85.7.0/24 136074 -103.85.8.0/22 45916 -103.85.12.0/22 136076 -103.85.16.0/22 58762 -103.85.20.0/22 55933 -103.85.24.0/22 134835 -103.85.28.0/24 45475 -103.85.29.0/24 133192 -103.85.32.0/23 18022 -103.85.34.0/24 139319 -103.85.35.0/24 18022 -103.85.36.0/22 134090 -103.85.40.0/23 136252 -103.85.42.0/23 64089 -103.85.60.0/23 23947 -103.85.62.0/24 131111 -103.85.63.0/24 23947 -103.85.64.0/22 23947 -103.85.68.0/22 136399 -103.85.72.0/22 38197 -103.85.76.0/23 135787 -103.85.78.0/23 136283 -103.85.80.0/22 9524 -103.85.84.0/22 23650 -103.85.88.0/22 132923 -103.85.92.0/23 132964 -103.85.94.0/24 56233 -103.85.95.0/24 136077 -103.85.96.0/22 58765 -103.85.100.0/24 135788 -103.85.101.0/24 17665 -103.85.102.0/24 137098 -103.85.103.0/24 135788 -103.85.104.0/22 136255 -103.85.108.0/22 55720 -103.85.112.0/23 136257 -103.85.114.0/24 135339 -103.85.116.0/23 63874 -103.85.118.0/23 137138 -103.85.120.0/22 55699 -103.85.124.0/22 136286 -103.85.128.0/24 136030 -103.85.129.0/24 198247 -103.85.130.0/24 198504 -103.85.131.0/24 136030 -103.85.134.0/24 136260 -103.85.135.0/24 136264 -103.85.140.0/23 136642 -103.85.142.0/24 136642 -103.85.144.0/22 4847 -103.85.148.0/22 17995 -103.85.152.0/23 136259 -103.85.154.0/24 136313 -103.85.155.0/24 136269 -103.85.156.0/22 137584 -103.85.160.0/22 136262 -103.85.164.0/22 58860 -103.85.168.0/23 9801 -103.85.170.0/23 58860 -103.85.172.0/23 4847 -103.85.174.0/23 4808 -103.85.176.0/22 4808 -103.85.188.0/22 132839 -103.85.192.0/22 136266 -103.85.196.0/23 136267 -103.85.198.0/24 136267 -103.85.204.0/22 133301 -103.85.208.0/22 136311 -103.85.212.0/24 131189 -103.85.213.0/24 16509 -103.85.214.0/23 136277 -103.85.216.0/23 136268 -103.85.219.0/24 136268 -103.85.220.0/24 10137 -103.85.221.0/24 56241 -103.85.222.0/23 56241 -103.85.224.0/22 137443 -103.85.228.0/22 136634 -103.85.232.0/24 58701 -103.85.233.0/24 136272 -103.85.234.0/23 136272 -103.85.240.0/23 136276 -103.85.248.0/22 134141 -103.85.252.0/22 59371 -103.86.0.0/22 136371 -103.86.4.0/22 136312 -103.86.13.0/24 58640 -103.86.14.0/23 58640 -103.86.19.0/24 45916 -103.86.20.0/22 45804 -103.86.24.0/23 134612 -103.86.26.0/24 136291 -103.86.27.0/24 136386 -103.86.36.0/22 55714 -103.86.41.0/24 133275 -103.86.42.0/23 133275 -103.86.44.0/22 138195 -103.86.48.0/22 58955 -103.86.52.0/22 136384 -103.86.56.0/23 136380 -103.86.58.0/23 136385 -103.86.64.0/24 395776 -103.86.65.0/24 132721 -103.86.66.0/23 132721 -103.86.68.0/23 131477 -103.86.70.0/24 131477 -103.86.71.0/24 21859 -103.86.72.0/23 135572 -103.86.77.0/24 134705 -103.86.78.0/23 134705 -103.86.84.0/24 4766 -103.86.85.0/24 133448 -103.86.86.0/24 133441 -103.86.87.0/24 133448 -103.86.89.0/24 136390 -103.86.92.0/24 136388 -103.86.93.0/24 135105 -103.86.95.0/24 136282 -103.86.96.0/24 136787 -103.86.97.0/24 36351 -103.86.98.0/24 36351 -103.86.99.0/24 136787 -103.86.100.0/23 136079 -103.86.102.0/24 136398 -103.86.103.0/24 136081 -103.86.104.0/22 137087 -103.86.108.0/22 136395 -103.86.120.0/22 17941 -103.86.124.0/24 136400 -103.86.126.0/23 136400 -103.86.130.0/23 133169 -103.86.132.0/22 135003 -103.86.136.0/24 135634 -103.86.137.0/24 135826 -103.86.138.0/23 136083 -103.86.140.0/23 136082 -103.86.142.0/24 136082 -103.86.144.0/23 56241 -103.86.146.0/23 10137 -103.86.148.0/24 36492 -103.86.149.0/24 4787 -103.86.150.0/23 4787 -103.86.152.0/21 4787 -103.86.160.0/22 4787 -103.86.168.0/23 136405 -103.86.170.0/23 136407 -103.86.172.0/22 134341 -103.86.176.0/23 133296 -103.86.178.0/24 136412 -103.86.180.0/22 136284 -103.86.184.0/22 136404 -103.86.188.0/23 135107 -103.86.190.0/24 7545 -103.86.191.0/24 136414 -103.86.193.0/24 136406 -103.86.194.0/23 136406 -103.86.196.0/22 18109 -103.86.200.0/22 136416 -103.87.8.0/22 132883 -103.87.16.0/22 136085 -103.87.24.0/22 136287 -103.87.28.0/22 136288 -103.87.38.0/23 134555 -103.87.40.0/22 17436 -103.87.44.0/24 134316 -103.87.45.0/24 138299 -103.87.46.0/23 134316 -103.87.48.0/23 133647 -103.87.50.0/24 133647 -103.87.51.0/24 134341 -103.87.52.0/22 133720 -103.87.56.0/22 133982 -103.87.60.0/23 136092 -103.87.64.0/23 135811 -103.87.66.0/23 136086 -103.87.68.0/24 136478 -103.87.69.0/24 56301 -103.87.70.0/23 133812 -103.87.72.0/22 132146 -103.87.76.0/22 4787 -103.87.80.0/21 4787 -103.87.88.0/24 45178 -103.87.89.0/24 136339 -103.87.90.0/24 136370 -103.87.91.0/24 136424 -103.87.92.0/22 55947 -103.87.104.0/22 132556 -103.87.108.0/22 7342 -103.87.112.0/22 59340 -103.87.116.0/22 45405 -103.87.120.0/24 136339 -103.87.121.0/24 63956 -103.87.122.0/23 136339 -103.87.128.0/22 55947 -103.87.132.0/22 40526 -103.87.136.0/22 136425 -103.87.140.0/22 23860 -103.87.152.0/22 4787 -103.87.160.0/23 38765 -103.87.162.0/24 136427 -103.87.163.0/24 136539 -103.87.164.0/22 137166 -103.87.168.0/22 55507 -103.87.173.0/24 133296 -103.87.174.0/23 133296 -103.87.178.0/23 131914 -103.87.184.0/22 136106 -103.87.188.0/24 7642 -103.87.189.0/24 133882 -103.87.192.0/22 58895 -103.87.196.0/24 136087 -103.87.198.0/24 136087 -103.87.200.0/24 135798 -103.87.201.0/24 58369 -103.87.204.0/22 136292 -103.87.208.0/23 136431 -103.87.210.0/23 17907 -103.87.212.0/22 136429 -103.87.216.0/24 133501 -103.87.217.0/24 134826 -103.87.218.0/23 133189 -103.87.228.0/22 136088 -103.87.232.0/22 133410 -103.87.236.0/23 136419 -103.87.238.0/24 136419 -103.87.239.0/24 136436 -103.87.240.0/22 135581 -103.87.244.0/22 136434 -103.87.248.0/24 136435 -103.87.249.0/24 138912 -103.87.250.0/23 136435 -103.87.252.0/23 136309 -103.87.254.0/24 17473 -103.87.255.0/24 18172 -103.88.0.0/22 136338 -103.88.20.0/22 4847 -103.88.24.0/22 136438 -103.88.28.0/22 136440 -103.88.32.0/22 136188 -103.88.36.0/22 58541 -103.88.40.0/23 133663 -103.88.42.0/24 136441 -103.88.43.0/24 40513 -103.88.44.0/22 4785 -103.88.48.0/22 136442 -103.88.53.0/24 136313 -103.88.54.0/23 134917 -103.88.56.0/22 58762 -103.88.64.0/22 131497 -103.88.68.0/23 132505 -103.88.76.0/23 136336 -103.88.78.0/24 136616 -103.88.80.0/22 133001 -103.88.84.0/22 138280 -103.88.104.0/22 9834 -103.88.108.0/22 135913 -103.88.112.0/21 24088 -103.88.120.0/22 135909 -103.88.124.0/22 134006 -103.88.128.0/22 136335 -103.88.132.0/22 134942 -103.88.136.0/23 64065 -103.88.138.0/24 136447 -103.88.140.0/22 136450 -103.88.144.0/22 45267 -103.88.154.0/24 4826 -103.88.156.0/22 136449 -103.88.160.0/24 131232 -103.88.162.0/24 38209 -103.88.168.0/23 136093 -103.88.170.0/24 136093 -103.88.172.0/23 136271 -103.88.174.0/24 136271 -103.88.176.0/22 133201 -103.88.180.0/23 132370 -103.88.183.0/24 136456 -103.88.184.0/22 134548 -103.88.188.0/22 394695 -103.88.196.0/22 55665 -103.88.200.0/21 55665 -103.88.208.0/22 55665 -103.88.216.0/22 23860 -103.88.220.0/22 136334 -103.88.225.0/24 136298 -103.88.226.0/24 136298 -103.88.229.0/24 136090 -103.88.230.0/23 10022 -103.88.232.0/23 134382 -103.88.234.0/24 138454 -103.88.235.0/24 134382 -103.88.236.0/22 59164 -103.88.240.0/22 136333 -103.88.245.0/24 55665 -103.88.246.0/23 55665 -103.88.248.0/24 55665 -103.88.251.0/24 55665 -103.88.252.0/23 55665 -103.88.254.0/24 55665 -103.88.255.0/24 45714 -103.89.0.0/21 133800 -103.89.10.0/24 2764 -103.89.12.0/22 7690 -103.89.16.0/23 135817 -103.89.18.0/23 136463 -103.89.20.0/22 136462 -103.89.24.0/22 133547 -103.89.37.0/24 135187 -103.89.38.0/23 136757 -103.89.40.0/22 58678 -103.89.48.0/22 136465 -103.89.52.0/23 17754 -103.89.54.0/24 17754 -103.89.55.0/24 134033 -103.89.56.0/22 136332 -103.89.60.0/22 58972 -103.89.64.0/22 136368 -103.89.68.0/22 14821 -103.89.72.0/24 45753 -103.89.73.0/24 136471 -103.89.74.0/23 56201 -103.89.76.0/22 45701 -103.89.80.0/22 10214 -103.89.84.0/22 63731 -103.89.88.0/22 135905 -103.89.116.0/24 56134 -103.89.118.0/23 56134 -103.89.120.0/22 135911 -103.89.124.0/23 136094 -103.89.127.0/24 136094 -103.89.132.0/22 207046 -103.89.136.0/24 136475 -103.89.137.0/24 132813 -103.89.138.0/23 136097 -103.89.140.0/24 56378 -103.89.143.0/24 43181 -103.89.144.0/22 61327 -103.89.152.0/23 136479 -103.89.154.0/24 133800 -103.89.155.0/24 136096 -103.89.156.0/22 136477 -103.89.160.0/22 136100 -103.89.164.0/23 133800 -103.89.166.0/24 136115 -103.89.167.0/24 10143 -103.89.168.0/22 136481 -103.89.176.0/22 136480 -103.89.180.0/22 136474 -103.89.184.0/21 63590 -103.89.192.0/19 63590 -103.89.224.0/21 63590 -103.89.232.0/22 136308 -103.89.244.0/23 136482 -103.89.247.0/24 136482 -103.89.248.0/24 136099 -103.89.249.0/24 17439 -103.89.250.0/23 136098 -103.89.252.0/22 136366 -103.90.0.0/23 132365 -103.90.2.0/24 132365 -103.90.3.0/24 134999 -103.90.4.0/23 133005 -103.90.6.0/24 133005 -103.90.7.0/24 18359 -103.90.12.0/23 136176 -103.90.14.0/24 136488 -103.90.16.0/22 59129 -103.90.20.0/22 45780 -103.90.24.0/23 63497 -103.90.28.0/22 2516 -103.90.32.0/23 136365 -103.90.34.0/24 136365 -103.90.35.0/24 133720 -103.90.44.0/22 136297 -103.90.48.0/23 136487 -103.90.50.0/24 136490 -103.90.51.0/24 132168 -103.90.56.0/23 132168 -103.90.58.0/23 135425 -103.90.64.0/24 136101 -103.90.66.0/23 133736 -103.90.68.0/22 45117 -103.90.72.0/22 134004 -103.90.76.0/24 136493 -103.90.77.0/24 136496 -103.90.78.0/24 136499 -103.90.79.0/24 136304 -103.90.80.0/22 133952 -103.90.84.0/24 18222 -103.90.85.0/24 23647 -103.90.86.0/23 23647 -103.90.88.0/22 18231 -103.90.92.0/22 4837 -103.90.96.0/22 45117 -103.90.100.0/22 131503 -103.90.136.0/22 134705 -103.90.140.0/22 136497 -103.90.144.0/22 136530 -103.90.152.0/22 58519 -103.90.156.0/22 136364 -103.90.160.0/24 135739 -103.90.162.0/23 135739 -103.90.164.0/22 131915 -103.90.172.0/24 38197 -103.90.173.0/24 38238 -103.90.174.0/23 136500 -103.90.176.0/22 4808 -103.90.180.0/22 136362 -103.90.184.0/23 134429 -103.90.186.0/23 134306 -103.90.188.0/22 4847 -103.90.196.0/23 131767 -103.90.200.0/23 136300 -103.90.202.0/24 136503 -103.90.203.0/24 55933 -103.90.204.0/22 134316 -103.90.208.0/24 7575 -103.90.210.0/24 136103 -103.90.211.0/24 7545 -103.90.212.0/22 9288 -103.90.216.0/22 59865 -103.90.220.0/24 135905 -103.90.221.0/24 135912 -103.90.222.0/24 135905 -103.90.223.0/24 135912 -103.90.224.0/23 135905 -103.90.226.0/24 135905 -103.90.227.0/24 18403 -103.90.228.0/22 135932 -103.90.232.0/22 135917 -103.90.236.0/22 136301 -103.90.240.0/22 17439 -103.90.244.0/23 23572 -103.90.248.0/23 137286 -103.90.250.0/23 136102 -103.90.252.0/23 38496 -103.90.254.0/24 38496 -103.90.255.0/24 138086 -103.91.0.0/22 38496 -103.91.4.0/22 131916 -103.91.8.0/22 45753 -103.91.16.0/22 134911 -103.91.20.0/22 4787 -103.91.24.0/24 136825 -103.91.28.0/22 38496 -103.91.32.0/22 38496 -103.91.44.0/22 136105 -103.91.48.0/22 136680 -103.91.52.0/23 133945 -103.91.54.0/24 136935 -103.91.57.0/24 32708 -103.91.59.0/24 32708 -103.91.62.0/24 136356 -103.91.64.0/22 55720 -103.91.68.0/22 136359 -103.91.72.0/23 136294 -103.91.74.0/24 136294 -103.91.75.0/24 134316 -103.91.76.0/22 137653 -103.91.80.0/22 136318 -103.91.84.0/23 136349 -103.91.86.0/24 135834 -103.91.87.0/24 136104 -103.91.88.0/22 17426 -103.91.92.0/22 136361 -103.91.96.0/22 136360 -103.91.100.0/22 136302 -103.91.104.0/23 136512 -103.91.106.0/23 46573 -103.91.114.0/23 136587 -103.91.117.0/24 2856 -103.91.118.0/24 38000 -103.91.120.0/24 135834 -103.91.121.0/24 132932 -103.91.122.0/24 132932 -103.91.123.0/24 135834 -103.91.124.0/24 136299 -103.91.125.0/24 131899 -103.91.126.0/24 136251 -103.91.127.0/24 136320 -103.91.128.0/22 136514 -103.91.136.0/24 134311 -103.91.140.0/22 136515 -103.91.144.0/22 136516 -103.91.148.0/22 38595 -103.91.156.0/22 133929 -103.91.160.0/22 136319 -103.91.164.0/23 23686 -103.91.166.0/24 139006 -103.91.168.0/22 136519 -103.91.172.0/22 45637 -103.91.176.0/24 4808 -103.91.177.0/24 4847 -103.91.178.0/24 4847 -103.91.179.0/24 4808 -103.91.180.0/22 55947 -103.91.184.0/24 131917 -103.91.186.0/23 132322 -103.91.188.0/22 136523 -103.91.192.0/24 136521 -103.91.193.0/24 136522 -103.91.194.0/24 136520 -103.91.196.0/22 136524 -103.91.200.0/22 136959 -103.91.204.0/23 136527 -103.91.206.0/23 138156 -103.91.208.0/22 4837 -103.91.216.0/24 9268 -103.91.217.0/24 136038 -103.91.218.0/24 133971 -103.91.219.0/24 136600 -103.91.220.0/23 136303 -103.91.228.0/22 136531 -103.91.232.0/22 136534 -103.91.240.0/22 136533 -103.91.244.0/23 135834 -103.91.247.0/24 58762 -103.91.248.0/24 55507 -103.91.249.0/24 134297 -103.91.250.0/24 134297 -103.91.251.0/24 55507 -103.91.252.0/22 134548 -103.92.0.0/20 134548 -103.92.17.0/24 132582 -103.92.18.0/24 136536 -103.92.19.0/24 136326 -103.92.20.0/22 132165 -103.92.24.0/22 135915 -103.92.28.0/22 56150 -103.92.32.0/22 135905 -103.92.36.0/22 10137 -103.92.40.0/22 133982 -103.92.44.0/22 133695 -103.92.84.0/23 135038 -103.92.86.0/24 23881 -103.92.87.0/24 136913 -103.92.88.0/22 131134 -103.92.92.0/23 132544 -103.92.94.0/24 136161 -103.92.95.0/24 136549 -103.92.96.0/24 136537 -103.92.100.0/22 55947 -103.92.104.0/24 136109 -103.92.105.0/24 136551 -103.92.112.0/24 137085 -103.92.113.0/24 136305 -103.92.114.0/23 136305 -103.92.116.0/22 135266 -103.92.120.0/22 135718 -103.92.128.0/24 133115 -103.92.129.0/24 38339 -103.92.131.0/24 4826 -103.92.132.0/22 4837 -103.92.136.0/24 136548 -103.92.137.0/24 134829 -103.92.139.0/24 134829 -103.92.140.0/23 7600 -103.92.142.0/24 7600 -103.92.144.0/22 133136 -103.92.148.0/22 136552 -103.92.160.0/23 136556 -103.92.162.0/24 136306 -103.92.163.0/24 136679 -103.92.196.0/24 136553 -103.92.200.0/22 136344 -103.92.204.0/22 136573 -103.92.208.0/24 136558 -103.92.209.0/24 136110 -103.92.210.0/23 46573 -103.92.212.0/22 136562 -103.92.216.0/22 136561 -103.92.224.0/22 136823 -103.92.228.0/22 18278 -103.92.232.0/23 136112 -103.92.234.0/24 136563 -103.92.235.0/24 138251 -103.93.8.0/22 136343 -103.93.12.0/22 58895 -103.93.16.0/23 138251 -103.93.19.0/24 133951 -103.93.24.0/23 59339 -103.93.26.0/24 136571 -103.93.36.0/22 136323 -103.93.40.0/22 136346 -103.93.44.0/23 136324 -103.93.46.0/24 132721 -103.93.47.0/24 136575 -103.93.48.0/23 136322 -103.93.50.0/24 136322 -103.93.51.0/24 133676 -103.93.52.0/22 133800 -103.93.56.0/22 133800 -103.93.60.0/22 131918 -103.93.64.0/22 133800 -103.93.68.0/22 136577 -103.93.72.0/22 45352 -103.93.76.0/23 136574 -103.93.78.0/24 136574 -103.93.79.0/24 49466 -103.93.80.0/23 136584 -103.93.82.0/24 59204 -103.93.83.0/24 136324 -103.93.88.0/23 134265 -103.93.90.0/24 136598 -103.93.92.0/24 64081 -103.93.94.0/24 17439 -103.93.95.0/24 58893 -103.93.96.0/23 135837 -103.93.98.0/24 135837 -103.93.99.0/24 138715 -103.93.100.0/22 45804 -103.93.104.0/22 58898 -103.93.108.0/22 136585 -103.93.112.0/22 133278 -103.93.116.0/23 136325 -103.93.120.0/24 136592 -103.93.121.0/24 137443 -103.93.122.0/23 133557 -103.93.124.0/22 59371 -103.93.129.0/24 133800 -103.93.130.0/24 133800 -103.93.132.0/22 133800 -103.93.136.0/23 135826 -103.93.138.0/24 136606 -103.93.139.0/24 136596 -103.93.144.0/22 136595 -103.93.149.0/24 35913 -103.93.152.0/22 9394 -103.93.156.0/23 32787 -103.93.158.0/23 136116 -103.93.160.0/22 133800 -103.93.166.0/24 18256 -103.93.168.0/22 134067 -103.93.172.0/22 137598 -103.93.176.0/22 133647 -103.93.180.0/23 4808 -103.93.184.0/22 10137 -103.93.188.0/23 45732 -103.93.190.0/23 58488 -103.93.192.0/23 45194 -103.93.194.0/24 45194 -103.93.196.0/22 136355 -103.93.200.0/22 136357 -103.93.208.0/24 136602 -103.93.209.0/24 136353 -103.93.216.0/22 58895 -103.93.220.0/22 17639 -103.93.224.0/21 9875 -103.93.232.0/24 133429 -103.93.233.0/24 136608 -103.93.234.0/23 136608 -103.93.236.0/23 63490 -103.93.239.0/24 136609 -103.93.240.0/22 132770 -103.93.244.0/23 136117 -103.93.252.0/24 18254 -103.93.253.0/24 136743 -103.93.254.0/24 59317 -103.93.255.0/24 136202 -103.94.0.0/21 9341 -103.94.8.0/22 45722 -103.94.16.0/22 135916 -103.94.20.0/24 131577 -103.94.21.0/24 9394 -103.94.24.0/23 59317 -103.94.26.0/24 24516 -103.94.27.0/24 136375 -103.94.28.0/24 133948 -103.94.40.0/22 45093 -103.94.48.0/22 4764 -103.94.52.0/24 136613 -103.94.54.0/24 136613 -103.94.56.0/22 132770 -103.94.60.0/23 136614 -103.94.62.0/24 10143 -103.94.63.0/24 24033 -103.94.64.0/22 134013 -103.94.68.0/22 136617 -103.94.76.0/23 132325 -103.94.78.0/24 136933 -103.94.79.0/24 132325 -103.94.80.0/24 137085 -103.94.81.0/24 137635 -103.94.82.0/24 137635 -103.94.83.0/24 137085 -103.94.84.0/23 136374 -103.94.86.0/24 136374 -103.94.87.0/24 139538 -103.94.92.0/24 132723 -103.94.94.0/24 10084 -103.94.96.0/22 9875 -103.94.102.0/24 63954 -103.94.103.0/24 135026 -103.94.105.0/24 45775 -103.94.108.0/23 45117 -103.94.112.0/23 133278 -103.94.120.0/21 9341 -103.94.128.0/22 133450 -103.94.132.0/23 136128 -103.94.135.0/24 136618 -103.94.136.0/22 23860 -103.94.144.0/24 133440 -103.94.147.0/24 133440 -103.94.148.0/22 17941 -103.94.152.0/22 136623 -103.94.156.0/24 38084 -103.94.157.0/24 136621 -103.94.158.0/24 135337 -103.94.164.0/24 136120 -103.94.165.0/24 132691 -103.94.166.0/24 16392 -103.94.167.0/24 136622 -103.94.168.0/22 136119 -103.94.172.0/23 133291 -103.94.180.0/23 137443 -103.94.183.0/24 139330 -103.94.184.0/24 136726 -103.94.185.0/24 40065 -103.94.186.0/24 136730 -103.94.187.0/24 135805 -103.94.188.0/22 38331 -103.94.192.0/22 133226 -103.94.196.0/23 136745 -103.94.200.0/22 131519 -103.94.204.0/23 136291 -103.94.206.0/24 136291 -103.94.207.0/24 136735 -103.94.208.0/22 136731 -103.94.212.0/23 136111 -103.94.214.0/24 30967 -103.94.216.0/22 136732 -103.94.220.0/22 136734 -103.94.224.0/24 136733 -103.94.226.0/23 136733 -103.94.228.0/22 7514 -103.94.232.0/23 136736 -103.94.234.0/24 137233 -103.94.235.0/24 136933 -103.94.236.0/23 135815 -103.94.240.0/22 32475 -103.94.244.0/24 58895 -103.94.246.0/23 136738 -103.94.248.0/23 1221 -103.94.252.0/22 24550 -103.95.0.0/22 136741 -103.95.6.0/23 133827 -103.95.8.0/22 135488 -103.95.12.0/24 136711 -103.95.13.0/24 133296 -103.95.14.0/23 133296 -103.95.16.0/22 23752 -103.95.24.0/22 136748 -103.95.32.0/22 136749 -103.95.36.0/24 11911 -103.95.38.0/24 133477 -103.95.39.0/24 136753 -103.95.40.0/22 58495 -103.95.44.0/22 136756 -103.95.48.0/24 135422 -103.95.49.0/24 136125 -103.95.50.0/23 137191 -103.95.56.0/22 133054 -103.95.62.0/23 132857 -103.95.64.0/22 136758 -103.95.68.0/24 138542 -103.95.72.0/22 136760 -103.95.76.0/24 134349 -103.95.77.0/24 9723 -103.95.78.0/23 17985 -103.95.80.0/22 133982 -103.95.84.0/22 16625 -103.95.96.0/22 136759 -103.95.100.0/24 136662 -103.95.104.0/22 131923 -103.95.110.0/23 136580 -103.95.112.0/22 134090 -103.95.116.0/22 24000 -103.95.120.0/22 133275 -103.95.124.0/22 136765 -103.95.128.0/22 137969 -103.95.132.0/24 136764 -103.95.148.0/22 136803 -103.95.156.0/24 38733 -103.95.160.0/23 136126 -103.95.162.0/24 136123 -103.95.164.0/22 133648 -103.95.168.0/22 135919 -103.95.172.0/23 133679 -103.95.180.0/22 24295 -103.95.184.0/22 63770 -103.95.192.0/24 136666 -103.95.193.0/24 58419 -103.95.194.0/24 136770 -103.95.195.0/24 17559 -103.95.196.0/22 135918 -103.95.204.0/24 136772 -103.95.205.0/24 136774 -103.95.206.0/24 17511 -103.95.207.0/24 136600 -103.95.208.0/22 135590 -103.95.212.0/23 136773 -103.95.214.0/24 38790 -103.95.215.0/24 136785 -103.95.220.0/23 4837 -103.95.222.0/24 4837 -103.95.228.0/22 136781 -103.95.232.0/24 136777 -103.95.234.0/24 136372 -103.95.252.0/22 17623 -103.96.0.0/22 136782 -103.96.4.0/22 136784 -103.96.12.0/22 136654 -103.96.16.0/22 134033 -103.96.20.0/22 136792 -103.96.24.0/22 136788 -103.96.28.0/23 135425 -103.96.30.0/23 38029 -103.96.32.0/22 136794 -103.96.36.0/22 45905 -103.96.40.0/23 138311 -103.96.42.0/24 138311 -103.96.43.0/24 135744 -103.96.48.0/22 132960 -103.96.56.0/24 32880 -103.96.58.0/24 32880 -103.96.60.0/24 136793 -103.96.61.0/24 133613 -103.96.62.0/23 133613 -103.96.64.0/22 63771 -103.96.68.0/24 133468 -103.96.72.0/22 55933 -103.96.76.0/22 132238 -103.96.80.0/22 136800 -103.96.84.0/22 136795 -103.96.89.0/24 136563 -103.96.90.0/23 136563 -103.96.92.0/22 136685 -103.96.96.0/22 136684 -103.96.100.0/22 32475 -103.96.104.0/22 134153 -103.96.110.0/24 136797 -103.96.112.0/22 7514 -103.96.116.0/24 135451 -103.96.117.0/24 133950 -103.96.119.0/24 135451 -103.96.120.0/22 137386 -103.96.128.0/22 137443 -103.96.132.0/24 136804 -103.96.140.0/24 136933 -103.96.141.0/24 136805 -103.96.142.0/24 133299 -103.96.143.0/24 133253 -103.96.148.0/23 139021 -103.96.150.0/24 139021 -103.96.214.0/24 6939 -103.96.215.0/24 23650 -103.96.216.0/22 9394 -103.96.220.0/22 134331 -103.96.228.0/24 136683 -103.96.229.0/24 63773 -103.96.230.0/23 136168 -103.96.232.0/24 136168 -103.96.233.0/24 133894 -103.96.234.0/23 136598 -103.96.236.0/23 137597 -103.96.238.0/24 137597 -103.96.239.0/24 135253 -103.96.240.0/23 136648 -103.96.242.0/23 135277 -103.96.244.0/22 136908 -103.96.248.0/24 135277 -103.96.249.0/24 7545 -103.96.250.0/24 136622 -103.96.251.0/24 17439 -103.96.252.0/22 37916 -103.97.0.0/24 133073 -103.97.1.0/24 133115 -103.97.2.0/23 133115 -103.97.4.0/22 136127 -103.97.8.0/21 134548 -103.97.16.0/20 134548 -103.97.32.0/22 134705 -103.97.36.0/22 134548 -103.97.44.0/23 136808 -103.97.46.0/23 135817 -103.97.48.0/22 38090 -103.97.52.0/23 63956 -103.97.54.0/24 63956 -103.97.56.0/22 139330 -103.97.60.0/24 23650 -103.97.62.0/23 131524 -103.97.64.0/21 134548 -103.97.72.0/22 134548 -103.97.76.0/23 136131 -103.97.80.0/22 135391 -103.97.84.0/24 135817 -103.97.85.0/24 135850 -103.97.86.0/24 135850 -103.97.88.0/22 136657 -103.97.92.0/22 134053 -103.97.96.0/22 134937 -103.97.100.0/24 136833 -103.97.101.0/24 136829 -103.97.102.0/24 133343 -103.97.103.0/24 136655 -103.97.104.0/22 135795 -103.97.108.0/23 136656 -103.97.110.0/24 136786 -103.97.111.0/24 58820 -103.97.120.0/22 136813 -103.97.124.0/24 135905 -103.97.125.0/24 56153 -103.97.126.0/23 56153 -103.97.128.0/22 55933 -103.97.136.0/22 135031 -103.97.140.0/23 136845 -103.97.142.0/23 133408 -103.97.152.0/24 133408 -103.97.154.0/24 58893 -103.97.155.0/24 135555 -103.97.156.0/22 136756 -103.97.160.0/24 136815 -103.97.161.0/24 58889 -103.97.162.0/23 58889 -103.97.164.0/22 136284 -103.97.168.0/23 58893 -103.97.170.0/23 135555 -103.97.172.0/24 136818 -103.97.173.0/24 136819 -103.97.174.0/24 56305 -103.97.175.0/24 64021 -103.97.176.0/24 137443 -103.97.177.0/24 26484 -103.97.178.0/23 26484 -103.97.180.0/24 45194 -103.97.182.0/24 45194 -103.97.184.0/22 136642 -103.97.200.0/23 64021 -103.97.202.0/24 136831 -103.97.203.0/24 136643 -103.97.204.0/22 132869 -103.97.208.0/23 10010 -103.97.210.0/23 135697 -103.97.212.0/22 136646 -103.97.216.0/24 136890 -103.97.218.0/23 133196 -103.97.220.0/22 134093 -103.97.224.0/24 134548 -103.97.228.0/23 136950 -103.97.232.0/21 17511 -103.97.240.0/22 134000 -103.97.244.0/22 133255 -103.97.248.0/24 136894 -103.97.249.0/24 18196 -103.97.251.0/24 135448 -103.97.254.0/24 134555 -103.97.255.0/24 132405 -103.98.4.0/22 131899 -103.98.8.0/22 135391 -103.98.12.0/24 136895 -103.98.14.0/24 137969 -103.98.15.0/24 135391 -103.98.16.0/23 135377 -103.98.18.0/23 136897 -103.98.20.0/22 136645 -103.98.24.0/22 131899 -103.98.28.0/23 136955 -103.98.30.0/24 136130 -103.98.31.0/24 136129 -103.98.32.0/22 136688 -103.98.36.0/22 45235 -103.98.44.0/23 4837 -103.98.53.0/24 134301 -103.98.54.0/24 134285 -103.98.55.0/24 24546 -103.98.60.0/24 136702 -103.98.61.0/24 136123 -103.98.62.0/23 136336 -103.98.64.0/23 136901 -103.98.68.0/24 55805 -103.98.72.0/22 134522 -103.98.77.0/24 2042 -103.98.78.0/24 138225 -103.98.79.0/24 133311 -103.98.84.0/24 132855 -103.98.85.0/24 136902 -103.98.86.0/23 132836 -103.98.92.0/24 37969 -103.98.96.0/24 37969 -103.98.104.0/23 136821 -103.98.106.0/23 136903 -103.98.108.0/22 134331 -103.98.112.0/24 132721 -103.98.113.0/24 136904 -103.98.114.0/23 132721 -103.98.116.0/22 136820 -103.98.120.0/24 136828 -103.98.123.0/24 136822 -103.98.125.0/24 133865 -103.98.127.0/24 133865 -103.98.128.0/22 58504 -103.98.132.0/24 38055 -103.98.133.0/24 133728 -103.98.134.0/24 56172 -103.98.135.0/24 136911 -103.98.148.0/22 135921 -103.98.156.0/22 136625 -103.98.160.0/22 135922 -103.98.164.0/22 131530 -103.98.168.0/22 4837 -103.98.176.0/23 136827 -103.98.188.0/22 137587 -103.98.200.0/22 136909 -103.98.204.0/22 136910 -103.98.210.0/23 135227 -103.98.220.0/22 4812 -103.98.236.0/24 136912 -103.98.237.0/24 132111 -103.98.238.0/24 136397 -103.98.239.0/24 136839 -103.98.248.0/23 133865 -103.98.251.0/24 133865 -103.98.252.0/22 133865 -103.99.0.0/22 135905 -103.99.5.0/24 21734 -103.99.8.0/23 138797 -103.99.10.0/24 138797 -103.99.11.0/24 136917 -103.99.12.0/22 136377 -103.99.16.0/22 136376 -103.99.23.0/24 132304 -103.99.24.0/23 55664 -103.99.26.0/24 136920 -103.99.28.0/22 136919 -103.99.32.0/22 136626 -103.99.36.0/23 136354 -103.99.38.0/24 136354 -103.99.40.0/23 138538 -103.99.42.0/24 136926 -103.99.43.0/24 136921 -103.99.50.0/23 137962 -103.99.53.0/24 62900 -103.99.54.0/23 62900 -103.99.60.0/24 136950 -103.99.61.0/24 136933 -103.99.62.0/23 136950 -103.99.64.0/24 136924 -103.99.65.0/24 136925 -103.99.68.0/24 45194 -103.99.72.0/22 133929 -103.99.76.0/23 41717 -103.99.78.0/24 21859 -103.99.79.0/24 9312 -103.99.80.0/22 63772 -103.99.84.0/23 136830 -103.99.86.0/23 9009 -103.99.88.0/22 131609 -103.99.92.0/23 136932 -103.99.96.0/22 137272 -103.99.100.0/24 136934 -103.99.102.0/24 136690 -103.99.103.0/24 136936 -103.99.108.0/22 18229 -103.99.112.0/23 136832 -103.99.114.0/24 38880 -103.99.115.0/24 40065 -103.99.124.0/22 17511 -103.99.128.0/22 136937 -103.99.148.0/22 135139 -103.99.152.0/22 24143 -103.99.156.0/22 136692 -103.99.160.0/22 135366 -103.99.164.0/22 136942 -103.99.168.0/22 54415 -103.99.172.0/23 17439 -103.99.174.0/23 136940 -103.99.176.0/23 136004 -103.99.178.0/23 40065 -103.99.180.0/22 136941 -103.99.184.0/24 133716 -103.99.185.0/24 136649 -103.99.186.0/24 136946 -103.99.188.0/22 136706 -103.99.192.0/22 136667 -103.99.196.0/22 133676 -103.99.200.0/22 136629 -103.99.208.0/24 3786 -103.99.209.0/24 136038 -103.99.210.0/24 3786 -103.99.212.0/23 136857 -103.99.214.0/23 136837 -103.99.216.0/22 132976 -103.99.227.0/24 132852 -103.99.228.0/22 131428 -103.99.240.0/24 38716 -103.99.241.0/24 132847 -103.99.242.0/23 132847 -103.99.244.0/22 135923 -103.99.248.0/24 58689 -103.99.249.0/24 136948 -103.99.250.0/23 58689 -103.99.252.0/22 135924 -103.100.5.0/24 132116 -103.100.6.0/23 132116 -103.100.8.0/23 136630 -103.100.10.0/24 9249 -103.100.11.0/24 136954 -103.100.12.0/22 134269 -103.100.16.0/23 135257 -103.100.20.0/23 135777 -103.100.22.0/24 135777 -103.100.24.0/23 136951 -103.100.26.0/24 136953 -103.100.27.0/24 136835 -103.100.28.0/22 132586 -103.100.36.0/22 136956 -103.100.44.0/23 134155 -103.100.46.0/24 56286 -103.100.52.0/22 137969 -103.100.60.0/24 136950 -103.100.61.0/24 136933 -103.100.62.0/24 136950 -103.100.63.0/24 136933 -103.100.64.0/22 4808 -103.100.68.0/22 18013 -103.100.72.0/24 206689 -103.100.73.0/24 206733 -103.100.74.0/24 137819 -103.100.77.0/24 136651 -103.100.78.0/23 136651 -103.100.80.0/22 133311 -103.100.84.0/24 136834 -103.100.85.0/24 136836 -103.100.86.0/23 136960 -103.100.92.0/22 23729 -103.100.96.0/22 136838 -103.100.100.0/23 135607 -103.100.102.0/24 135393 -103.100.103.0/24 137014 -103.100.104.0/23 135393 -103.100.106.0/24 132371 -103.100.107.0/24 136165 -103.100.112.0/22 133527 -103.100.120.0/22 45873 -103.100.124.0/24 206819 -103.100.125.0/24 131610 -103.100.126.0/24 131610 -103.100.127.0/24 136162 -103.100.128.0/21 55699 -103.100.136.0/23 135582 -103.100.138.0/24 6939 -103.100.139.0/24 63018 -103.100.140.0/22 45753 -103.100.148.0/24 45671 -103.100.149.0/24 45780 -103.100.150.0/23 134901 -103.100.152.0/22 136962 -103.100.156.0/22 55933 -103.100.160.0/22 135925 -103.100.164.0/22 131611 -103.100.168.0/22 133320 -103.100.172.0/22 136841 -103.100.180.0/22 136840 -103.100.184.0/22 136965 -103.100.188.0/24 17911 -103.100.189.0/24 136769 -103.100.190.0/23 136769 -103.100.192.0/24 136964 -103.100.193.0/24 136844 -103.100.194.0/24 17477 -103.100.196.0/22 136966 -103.100.200.0/24 136983 -103.100.201.0/24 136715 -103.100.202.0/23 136974 -103.100.204.0/22 137050 -103.100.208.0/22 133115 -103.100.212.0/22 136639 -103.100.216.0/24 136664 -103.100.220.0/22 136665 -103.100.224.0/22 136972 -103.100.228.0/22 135926 -103.100.232.0/22 139013 -103.100.244.0/24 137077 -103.100.246.0/23 136842 -103.101.0.0/22 23734 -103.101.16.0/22 136975 -103.101.24.0/22 136632 -103.101.28.0/22 134176 -103.101.32.0/22 135927 -103.101.36.0/22 136979 -103.101.42.0/24 136980 -103.101.43.0/24 132028 -103.101.44.0/22 136982 -103.101.48.0/24 136978 -103.101.49.0/24 56111 -103.101.50.0/23 56111 -103.101.52.0/24 136843 -103.101.53.0/24 136558 -103.101.54.0/23 136558 -103.101.56.0/23 135718 -103.101.58.0/23 45117 -103.101.64.0/24 134182 -103.101.65.0/24 136981 -103.101.66.0/23 17451 -103.101.68.0/22 136358 -103.101.76.0/22 56141 -103.101.80.0/22 137236 -103.101.84.0/23 30938 -103.101.86.0/23 9441 -103.101.88.0/23 136723 -103.101.90.0/24 136723 -103.101.92.0/24 135860 -103.101.100.0/22 133989 -103.101.104.0/22 55699 -103.101.108.0/22 136636 -103.101.112.0/22 133248 -103.101.116.0/24 133676 -103.101.117.0/24 58906 -103.101.118.0/23 133676 -103.101.120.0/24 133199 -103.101.124.0/23 4812 -103.101.128.0/22 136988 -103.101.132.0/24 136669 -103.101.133.0/24 137006 -103.101.134.0/24 136722 -103.101.135.0/24 133859 -103.101.136.0/22 23951 -103.101.152.0/24 136991 -103.101.153.0/24 136600 -103.101.155.0/24 135466 -103.101.156.0/22 17726 -103.101.160.0/22 131353 -103.101.168.0/22 136994 -103.101.172.0/24 136230 -103.101.174.0/23 136230 -103.101.176.0/22 136743 -103.101.180.0/22 137697 -103.101.188.0/24 133448 -103.101.189.0/24 133441 -103.101.190.0/24 133441 -103.101.191.0/24 133448 -103.101.192.0/24 136996 -103.101.193.0/24 55803 -103.101.194.0/23 136847 -103.101.196.0/24 136999 -103.101.197.0/24 63526 -103.101.198.0/24 136999 -103.101.199.0/24 63526 -103.101.200.0/22 133136 -103.101.204.0/22 136743 -103.101.208.0/22 136998 -103.101.212.0/23 23860 -103.101.214.0/24 135675 -103.101.215.0/24 133142 -103.101.220.0/23 43092 -103.101.222.0/24 137001 -103.101.223.0/24 43092 -103.101.224.0/22 134612 -103.101.232.0/24 132165 -103.101.233.0/24 137004 -103.101.234.0/23 137199 -103.101.236.0/24 58459 -103.101.237.0/24 17501 -103.101.238.0/24 137003 -103.101.239.0/24 136849 -103.101.240.0/22 45355 -103.101.244.0/23 137005 -103.101.247.0/24 137005 -103.101.248.0/24 38719 -103.101.250.0/23 133477 -103.101.252.0/24 137011 -103.101.253.0/24 137013 -103.101.255.0/24 135496 -103.102.0.0/23 136851 -103.102.3.0/24 131924 -103.102.4.0/23 131477 -103.102.6.0/24 64271 -103.102.7.0/24 131477 -103.102.12.0/23 136865 -103.102.14.0/24 138089 -103.102.15.0/24 137331 -103.102.16.0/24 137015 -103.102.20.0/22 63769 -103.102.24.0/24 137016 -103.102.25.0/24 136710 -103.102.27.0/24 137023 -103.102.28.0/24 137110 -103.102.29.0/24 133720 -103.102.30.0/23 137110 -103.102.32.0/23 137887 -103.102.34.0/23 9381 -103.102.38.0/24 58895 -103.102.39.0/24 136026 -103.102.40.0/23 58895 -103.102.42.0/23 137020 -103.102.44.0/23 23734 -103.102.46.0/24 38001 -103.102.47.0/24 23734 -103.102.50.0/23 135889 -103.102.52.0/24 135889 -103.102.53.0/24 45692 -103.102.56.0/22 136634 -103.102.60.0/22 136850 -103.102.64.0/23 136673 -103.102.66.0/24 136673 -103.102.67.0/24 18002 -103.102.68.0/22 137152 -103.102.72.0/22 136672 -103.102.84.0/24 136701 -103.102.85.0/24 17439 -103.102.86.0/23 135685 -103.102.88.0/22 136724 -103.102.92.0/24 55352 -103.102.96.0/22 136700 -103.102.100.0/22 136719 -103.102.104.0/24 136707 -103.102.105.0/24 137025 -103.102.106.0/24 55712 -103.102.108.0/22 137028 -103.102.112.0/22 136856 -103.102.116.0/23 23860 -103.102.118.0/24 45158 -103.102.120.0/22 136633 -103.102.128.0/22 18403 -103.102.132.0/23 137030 -103.102.136.0/22 137029 -103.102.140.0/22 136854 -103.102.144.0/23 135834 -103.102.146.0/24 136852 -103.102.147.0/24 134341 -103.102.148.0/22 136853 -103.102.152.0/22 58404 -103.102.156.0/22 58895 -103.102.160.0/22 40676 -103.102.164.0/23 4826 -103.102.166.0/24 14907 -103.102.167.0/24 135464 -103.102.176.0/23 135464 -103.102.178.0/23 134141 -103.102.192.0/22 4808 -103.102.196.0/24 63603 -103.102.200.0/22 4808 -103.102.204.0/22 137034 -103.102.216.0/22 137038 -103.102.220.0/24 137039 -103.102.221.0/24 137040 -103.102.222.0/23 137042 -103.102.225.0/24 137036 -103.102.226.0/24 137036 -103.102.227.0/24 4826 -103.102.228.0/22 45654 -103.102.232.0/23 7545 -103.102.234.0/24 133296 -103.102.235.0/24 137253 -103.102.236.0/22 137041 -103.102.244.0/24 136153 -103.102.245.0/24 137044 -103.102.246.0/23 137045 -103.102.248.0/23 131769 -103.102.250.0/24 136862 -103.102.251.0/24 138176 -103.102.254.0/24 137048 -103.103.0.0/24 23930 -103.103.1.0/24 7545 -103.103.2.0/23 136699 -103.103.6.0/23 137049 -103.103.8.0/22 136708 -103.103.12.0/24 4808 -103.103.20.0/22 38320 -103.103.28.0/24 136704 -103.103.29.0/24 137084 -103.103.30.0/23 136858 -103.103.32.0/22 137048 -103.103.36.0/24 131541 -103.103.40.0/23 137052 -103.103.42.0/24 136969 -103.103.43.0/24 17557 -103.103.44.0/22 137051 -103.103.48.0/22 40065 -103.103.52.0/23 135863 -103.103.54.0/24 135863 -103.103.55.0/24 134341 -103.103.56.0/22 136696 -103.103.60.0/23 6453 -103.103.62.0/23 135409 -103.103.64.0/23 55720 -103.103.66.0/24 137056 -103.103.68.0/23 135026 -103.103.71.0/24 135026 -103.103.76.0/22 137057 -103.103.80.0/22 131618 -103.103.84.0/22 45828 -103.103.88.0/23 137059 -103.103.91.0/24 133981 -103.103.92.0/22 136713 -103.103.96.0/23 134372 -103.103.98.0/23 132381 -103.103.100.0/22 133738 -103.103.104.0/22 134743 -103.103.108.0/22 45654 -103.103.112.0/24 137258 -103.103.113.0/24 40526 -103.103.115.0/24 137065 -103.103.116.0/22 135905 -103.103.120.0/22 136671 -103.103.124.0/22 139335 -103.103.128.0/22 134094 -103.103.132.0/23 136721 -103.103.136.0/23 23679 -103.103.138.0/24 38773 -103.103.139.0/24 23679 -103.103.140.0/23 17819 -103.103.142.0/23 136635 -103.103.144.0/22 136861 -103.103.148.0/22 23747 -103.103.152.0/22 15412 -103.103.156.0/22 132111 -103.103.160.0/22 136712 -103.103.164.0/22 17941 -103.103.168.0/22 45382 -103.103.172.0/24 138716 -103.103.174.0/24 135808 -103.103.175.0/24 135636 -103.103.176.0/22 64096 -103.103.181.0/24 136847 -103.103.182.0/23 63945 -103.103.192.0/23 135636 -103.103.194.0/24 9654 -103.103.196.0/22 56201 -103.103.200.0/22 22769 -103.103.208.0/23 58457 -103.103.210.0/24 137070 -103.103.212.0/22 132768 -103.103.218.0/24 131202 -103.103.219.0/24 134869 -103.103.220.0/22 22769 -103.103.224.0/23 54600 -103.103.226.0/24 24000 -103.103.228.0/22 24000 -103.103.232.0/24 137443 -103.103.233.0/24 24000 -103.103.234.0/23 24000 -103.103.236.0/23 134869 -103.103.238.0/24 137073 -103.103.239.0/24 131183 -103.103.240.0/22 23738 -103.103.244.0/23 135369 -103.103.246.0/24 135369 -103.103.247.0/24 64021 -103.103.248.0/21 24000 -103.104.0.0/24 22769 -103.104.1.0/24 24000 -103.104.2.0/23 22769 -103.104.4.0/24 24000 -103.104.5.0/24 54600 -103.104.6.0/24 24000 -103.104.7.0/24 54600 -103.104.10.0/24 136129 -103.104.11.0/24 135391 -103.104.12.0/22 55699 -103.104.16.0/23 137074 -103.104.18.0/24 137074 -103.104.20.0/22 18126 -103.104.24.0/22 135929 -103.104.28.0/22 137080 -103.104.32.0/23 137079 -103.104.34.0/23 136872 -103.104.44.0/22 136714 -103.104.48.0/23 135876 -103.104.50.0/23 27381 -103.104.52.0/22 136697 -103.104.57.0/24 136864 -103.104.58.0/23 137084 -103.104.60.0/23 137081 -103.104.62.0/24 137081 -103.104.63.0/24 139779 -103.104.68.0/24 137084 -103.104.69.0/24 132354 -103.104.70.0/23 10215 -103.104.72.0/22 133296 -103.104.80.0/23 38813 -103.104.82.0/24 38813 -103.104.84.0/23 133933 -103.104.87.0/24 58895 -103.104.88.0/22 131926 -103.104.92.0/22 134937 -103.104.96.0/23 58895 -103.104.98.0/24 137182 -103.104.99.0/24 136889 -103.104.100.0/22 137184 -103.104.104.0/23 139330 -103.104.106.0/24 139330 -103.104.107.0/24 137443 -103.104.108.0/22 132978 -103.104.112.0/22 136705 -103.104.116.0/22 63765 -103.104.120.0/22 135932 -103.104.124.0/22 135225 -103.104.128.0/24 135820 -103.104.130.0/24 136871 -103.104.131.0/24 137194 -103.104.132.0/22 133823 -103.104.136.0/24 136867 -103.104.138.0/24 136867 -103.104.140.0/22 137189 -103.104.144.0/23 137305 -103.104.148.0/24 135293 -103.104.149.0/24 41095 -103.104.150.0/24 41095 -103.104.151.0/24 131618 -103.104.156.0/24 137192 -103.104.157.0/24 9738 -103.104.158.0/23 9738 -103.104.160.0/23 137195 -103.104.162.0/24 24499 -103.104.163.0/24 137195 -103.104.164.0/23 135137 -103.104.168.0/22 136897 -103.104.172.0/22 138402 -103.104.177.0/24 136866 -103.104.178.0/24 137196 -103.104.179.0/24 137198 -103.104.180.0/22 9830 -103.104.184.0/22 137197 -103.104.192.0/23 136030 -103.104.194.0/24 38713 -103.104.195.0/24 136030 -103.104.196.0/24 58621 -103.104.198.0/24 55933 -103.104.199.0/24 132422 -103.104.200.0/24 134735 -103.104.202.0/23 136372 -103.104.204.0/22 136869 -103.104.208.0/22 136720 -103.104.212.0/22 132480 -103.104.216.0/22 137584 -103.104.220.0/24 14969 -103.104.221.0/24 135220 -103.104.222.0/23 137096 -103.104.224.0/22 17625 -103.104.228.0/24 137206 -103.104.230.0/24 137204 -103.104.231.0/24 135262 -103.104.232.0/22 137209 -103.104.236.0/22 55581 -103.104.240.0/23 137204 -103.104.242.0/23 137208 -103.104.244.0/23 133752 -103.104.248.0/22 137210 -103.105.8.0/22 137215 -103.105.12.0/22 136190 -103.105.20.0/23 137495 -103.105.23.0/24 55933 -103.105.24.0/21 45727 -103.105.32.0/22 45727 -103.105.36.0/24 137211 -103.105.37.0/24 138439 -103.105.40.0/22 137143 -103.105.44.0/22 137165 -103.105.48.0/22 136620 -103.105.52.0/22 136873 -103.105.56.0/22 137218 -103.105.60.0/22 58541 -103.105.64.0/21 17995 -103.105.72.0/24 59194 -103.105.73.0/24 136147 -103.105.74.0/24 137221 -103.105.77.0/24 136874 -103.105.80.0/22 17451 -103.105.84.0/22 58715 -103.105.88.0/22 17639 -103.105.96.0/23 134858 -103.105.98.0/23 58820 -103.105.100.0/23 133304 -103.105.104.0/22 55699 -103.105.108.0/22 137100 -103.105.114.0/23 136875 -103.105.124.0/22 137098 -103.105.128.0/22 17727 -103.105.133.0/24 63959 -103.105.134.0/23 63959 -103.105.136.0/23 137225 -103.105.138.0/24 137240 -103.105.139.0/24 137232 -103.105.140.0/23 136463 -103.105.142.0/24 136882 -103.105.143.0/24 136606 -103.105.144.0/23 38858 -103.105.146.0/24 38858 -103.105.148.0/22 137231 -103.105.152.0/22 135692 -103.105.156.0/22 9639 -103.105.160.0/22 38683 -103.105.164.0/24 9009 -103.105.165.0/24 41095 -103.105.167.0/24 64200 -103.105.168.0/23 137234 -103.105.172.0/22 136780 -103.105.176.0/23 17754 -103.105.178.0/24 17754 -103.105.179.0/24 18229 -103.105.188.0/24 132557 -103.105.190.0/24 136876 -103.105.191.0/24 137243 -103.105.192.0/24 136878 -103.105.195.0/24 136878 -103.105.196.0/23 137287 -103.105.198.0/24 137244 -103.105.200.0/22 137764 -103.105.209.0/24 55501 -103.105.210.0/23 55501 -103.105.212.0/22 137239 -103.105.216.0/24 136881 -103.105.217.0/24 136879 -103.105.219.0/24 7474 -103.105.224.0/22 133664 -103.105.232.0/22 137154 -103.105.239.0/24 135719 -103.105.244.0/22 17439 -103.105.248.0/22 133296 -103.105.252.0/22 136885 -103.106.0.0/23 135019 -103.106.2.0/24 135019 -103.106.3.0/24 134552 -103.106.5.0/24 17828 -103.106.8.0/22 137248 -103.106.12.0/23 17766 -103.106.14.0/23 137250 -103.106.20.0/22 137085 -103.106.24.0/22 137254 -103.106.28.0/22 137085 -103.106.32.0/22 137252 -103.106.48.0/22 131927 -103.106.52.0/24 131613 -103.106.53.0/24 138145 -103.106.54.0/23 138145 -103.106.56.0/22 136276 -103.106.64.0/23 137257 -103.106.66.0/23 137259 -103.106.72.0/24 136883 -103.106.74.0/24 136884 -103.106.76.0/22 46023 -103.106.80.0/22 136877 -103.106.84.0/24 137261 -103.106.85.0/24 132557 -103.106.86.0/24 137265 -103.106.87.0/24 139615 -103.106.88.0/22 134090 -103.106.92.0/22 137262 -103.106.100.0/23 137144 -103.106.108.0/23 131476 -103.106.110.0/23 137267 -103.106.112.0/24 136880 -103.106.114.0/23 136880 -103.106.116.0/24 136886 -103.106.117.0/24 137269 -103.106.119.0/24 137270 -103.106.124.0/22 131928 -103.106.136.0/22 133001 -103.106.140.0/22 9973 -103.106.144.0/24 135583 -103.106.145.0/24 58369 -103.106.146.0/23 137275 -103.106.148.0/24 9498 -103.106.149.0/24 137085 -103.106.150.0/23 137085 -103.106.152.0/22 137088 -103.106.156.0/22 63859 -103.106.160.0/22 55933 -103.106.165.0/24 137274 -103.106.166.0/24 137274 -103.106.168.0/22 137273 -103.106.174.0/23 136888 -103.106.176.0/23 137586 -103.106.179.0/24 137586 -103.106.180.0/23 17754 -103.106.183.0/24 135769 -103.106.184.0/22 137278 -103.106.188.0/23 64021 -103.106.192.0/23 134319 -103.106.194.0/24 4 -103.106.195.0/24 134319 -103.106.200.0/24 137282 -103.106.201.0/24 134750 -103.106.202.0/23 136950 -103.106.208.0/22 137280 -103.106.220.0/22 135946 -103.106.232.0/22 133711 -103.106.236.0/22 63526 -103.106.240.0/22 137385 -103.106.244.0/22 55720 -103.106.249.0/24 55720 -103.106.250.0/23 55720 -103.107.4.0/22 4796 -103.107.8.0/24 136600 -103.107.10.0/23 135026 -103.107.12.0/22 136800 -103.107.16.0/24 135406 -103.107.17.0/24 135728 -103.107.18.0/24 137288 -103.107.20.0/22 137156 -103.107.24.0/22 137085 -103.107.36.0/24 137389 -103.107.37.0/24 135422 -103.107.38.0/24 135055 -103.107.39.0/24 137388 -103.107.40.0/23 135055 -103.107.42.0/24 137437 -103.107.43.0/24 137390 -103.107.48.0/22 137391 -103.107.52.0/22 137146 -103.107.56.0/24 56308 -103.107.57.0/24 137092 -103.107.60.0/22 137151 -103.107.64.0/22 17439 -103.107.68.0/23 137292 -103.107.71.0/24 136879 -103.107.76.0/22 38067 -103.107.80.0/22 137404 -103.107.84.0/23 136879 -103.107.86.0/24 56239 -103.107.87.0/24 137397 -103.107.88.0/22 132470 -103.107.92.0/22 135683 -103.107.96.0/22 132768 -103.107.100.0/22 137289 -103.107.104.0/22 135330 -103.107.110.0/24 133731 -103.107.112.0/23 137093 -103.107.114.0/24 137093 -103.107.115.0/24 136634 -103.107.116.0/22 137291 -103.107.120.0/24 133243 -103.107.121.0/24 135447 -103.107.123.0/24 136027 -103.107.124.0/22 137142 -103.107.128.0/22 137399 -103.107.132.0/22 137416 -103.107.140.0/24 137297 -103.107.142.0/24 59188 -103.107.143.0/24 21788 -103.107.144.0/22 137298 -103.107.149.0/24 63956 -103.107.150.0/24 133674 -103.107.151.0/24 137294 -103.107.152.0/22 45572 -103.107.156.0/22 137406 -103.107.160.0/22 137403 -103.107.172.0/24 137160 -103.107.175.0/24 17665 -103.107.177.0/24 135877 -103.107.178.0/23 135877 -103.107.180.0/22 45899 -103.107.184.0/24 137415 -103.107.186.0/24 137299 -103.107.187.0/24 137300 -103.107.188.0/22 4837 -103.107.192.0/22 4837 -103.107.196.0/22 137409 -103.107.200.0/22 135934 -103.107.204.0/23 137292 -103.107.207.0/24 137421 -103.107.212.0/22 4837 -103.107.216.0/22 4808 -103.107.224.0/23 137898 -103.107.226.0/23 136133 -103.107.228.0/22 137419 -103.107.232.0/22 17941 -103.107.236.0/24 136970 -103.107.237.0/24 136933 -103.107.238.0/23 136933 -103.107.244.0/23 131724 -103.107.246.0/23 137079 -103.107.248.0/22 38515 -103.107.252.0/22 137102 -103.108.0.0/23 134293 -103.108.2.0/23 132304 -103.108.4.0/22 45184 -103.108.8.0/24 132304 -103.108.9.0/24 137302 -103.108.10.0/23 135220 -103.108.12.0/22 137159 -103.108.16.0/22 134341 -103.108.20.0/22 45727 -103.108.24.0/21 45727 -103.108.32.0/21 45727 -103.108.40.0/24 136251 -103.108.41.0/24 135581 -103.108.42.0/24 136251 -103.108.43.0/24 135581 -103.108.44.0/22 137424 -103.108.48.0/24 135220 -103.108.49.0/24 137422 -103.108.50.0/24 1221 -103.108.51.0/24 137158 -103.108.56.0/22 137153 -103.108.60.0/23 137425 -103.108.62.0/24 8100 -103.108.63.0/24 137425 -103.108.64.0/22 135386 -103.108.68.0/22 137426 -103.108.72.0/22 133311 -103.108.76.0/22 134856 -103.108.83.0/24 135240 -103.108.84.0/23 137428 -103.108.86.0/24 137429 -103.108.87.0/24 137301 -103.108.88.0/22 137432 -103.108.92.0/22 133480 -103.108.96.0/23 137147 -103.108.98.0/23 137150 -103.108.100.0/23 135935 -103.108.104.0/22 137431 -103.108.108.0/24 18333 -103.108.112.0/22 137435 -103.108.116.0/24 137433 -103.108.117.0/24 136375 -103.108.118.0/24 137104 -103.108.119.0/24 131776 -103.108.120.0/22 138730 -103.108.124.0/24 137242 -103.108.125.0/24 137506 -103.108.126.0/24 59134 -103.108.127.0/24 137309 -103.108.128.0/22 55685 -103.108.132.0/24 45903 -103.108.133.0/24 63731 -103.108.134.0/24 63731 -103.108.135.0/24 45903 -103.108.136.0/22 56155 -103.108.140.0/24 133938 -103.108.141.0/24 137304 -103.108.142.0/24 133115 -103.108.143.0/24 137149 -103.108.144.0/23 135654 -103.108.146.0/24 135654 -103.108.147.0/24 132082 -103.108.148.0/22 133662 -103.108.156.0/22 137306 -103.108.160.0/24 4812 -103.108.168.0/24 38084 -103.108.170.0/24 38084 -103.108.173.0/24 137307 -103.108.176.0/24 133132 -103.108.180.0/22 131091 -103.108.184.0/23 133448 -103.108.186.0/24 138477 -103.108.187.0/24 137308 -103.108.188.0/24 59117 -103.108.189.0/24 32708 -103.108.191.0/24 137312 -103.108.192.0/23 139021 -103.108.195.0/24 139021 -103.108.200.0/23 136101 -103.108.204.0/22 137106 -103.108.218.0/23 137440 -103.108.220.0/24 133295 -103.108.222.0/23 136201 -103.108.228.0/24 136557 -103.108.232.0/22 131929 -103.108.236.0/22 137445 -103.108.240.0/22 136855 -103.108.244.0/24 4812 -103.108.248.0/23 134753 -103.108.250.0/24 134753 -103.108.252.0/24 137456 -103.108.253.0/24 137457 -103.108.254.0/23 46024 -103.109.0.0/22 137310 -103.109.4.0/23 137446 -103.109.6.0/23 134286 -103.109.12.0/22 137109 -103.109.17.0/24 9466 -103.109.20.0/22 58541 -103.109.24.0/22 137311 -103.109.28.0/22 135936 -103.109.32.0/22 135937 -103.109.36.0/22 135942 -103.109.40.0/22 135905 -103.109.44.0/22 137167 -103.109.52.0/23 134790 -103.109.54.0/24 134790 -103.109.56.0/22 137449 -103.109.60.0/22 24187 -103.109.70.0/24 138979 -103.109.72.0/22 135725 -103.109.76.0/24 133261 -103.109.77.0/24 136557 -103.109.78.0/23 135827 -103.109.80.0/24 138769 -103.109.81.0/24 137085 -103.109.82.0/24 137085 -103.109.83.0/24 132116 -103.109.84.0/22 134249 -103.109.92.0/22 137453 -103.109.96.0/22 137454 -103.109.100.0/22 206264 -103.109.104.0/24 4515 -103.109.108.0/22 132556 -103.109.112.0/22 137455 -103.109.120.0/24 137313 -103.109.121.0/24 137461 -103.109.123.0/24 136805 -103.109.124.0/22 137316 -103.109.128.0/23 17158 -103.109.130.0/24 17158 -103.109.131.0/24 136396 -103.109.132.0/23 136805 -103.109.134.0/23 137108 -103.109.136.0/22 137181 -103.109.140.0/22 137460 -103.109.144.0/24 45491 -103.109.148.0/24 132572 -103.109.150.0/24 137111 -103.109.152.0/21 4787 -103.109.160.0/20 4787 -103.109.176.0/22 137135 -103.109.180.0/22 137134 -103.109.184.0/22 138298 -103.109.188.0/22 4787 -103.109.192.0/21 4787 -103.109.200.0/22 4787 -103.109.208.0/24 137463 -103.109.209.0/24 137314 -103.109.210.0/24 137315 -103.109.211.0/24 133995 -103.109.212.0/22 135346 -103.109.216.0/22 45942 -103.109.220.0/22 137129 -103.109.224.0/23 137130 -103.109.227.0/24 137130 -103.109.228.0/23 136047 -103.109.230.0/23 133372 -103.109.232.0/24 17763 -103.109.234.0/24 17763 -103.109.236.0/23 137464 -103.109.238.0/23 58689 -103.109.240.0/22 38651 -103.109.244.0/24 137112 -103.109.245.0/24 137465 -103.109.246.0/24 137469 -103.109.247.0/24 136883 -103.109.252.0/22 17941 -103.110.4.0/24 137335 -103.110.6.0/23 133989 -103.110.8.0/22 131717 -103.110.12.0/24 133237 -103.110.14.0/24 9498 -103.110.15.0/24 136642 -103.110.16.0/22 137131 -103.110.20.0/23 133275 -103.110.22.0/23 134872 -103.110.24.0/22 137445 -103.110.28.0/24 137473 -103.110.30.0/23 136239 -103.110.36.0/22 136652 -103.110.40.0/24 137477 -103.110.43.0/24 137318 -103.110.47.0/24 55402 -103.110.48.0/24 45184 -103.110.52.0/24 137481 -103.110.53.0/24 137276 -103.110.54.0/24 137276 -103.110.56.0/22 38026 -103.110.60.0/22 55799 -103.110.64.0/22 137480 -103.110.72.0/23 135793 -103.110.74.0/24 137307 -103.110.75.0/24 137487 -103.110.77.0/24 137307 -103.110.78.0/23 137485 -103.110.80.0/24 54600 -103.110.81.0/24 137443 -103.110.83.0/24 137488 -103.110.84.0/22 63760 -103.110.88.0/22 9341 -103.110.92.0/22 59003 -103.110.96.0/22 137491 -103.110.100.0/22 135386 -103.110.104.0/22 45382 -103.110.108.0/24 7545 -103.110.109.0/24 136238 -103.110.110.0/23 136238 -103.110.112.0/23 137492 -103.110.114.0/24 138197 -103.110.115.0/24 137492 -103.110.120.0/22 137320 -103.110.124.0/23 136917 -103.110.126.0/24 136917 -103.110.130.0/24 134605 -103.110.132.0/22 58542 -103.110.136.0/22 59012 -103.110.140.0/23 137494 -103.110.142.0/23 137562 -103.110.144.0/22 133982 -103.110.148.0/22 137113 -103.110.152.0/22 133115 -103.110.156.0/22 4837 -103.110.160.0/22 137496 -103.110.164.0/23 135817 -103.110.166.0/24 139542 -103.110.167.0/24 137178 -103.110.168.0/22 137132 -103.110.172.0/23 137180 -103.110.174.0/24 137180 -103.110.176.0/22 9268 -103.110.184.0/23 137374 -103.110.186.0/23 137115 -103.110.192.0/24 131278 -103.110.193.0/24 139842 -103.110.194.0/24 137881 -103.110.195.0/24 134036 -103.110.196.0/23 135111 -103.110.208.0/22 13830 -103.110.215.0/24 56032 -103.110.216.0/22 137498 -103.110.222.0/24 137176 -103.110.224.0/22 137501 -103.110.228.0/22 137499 -103.110.232.0/22 45194 -103.110.236.0/22 134877 -103.110.240.0/22 132770 -103.110.244.0/23 137116 -103.110.248.0/22 133296 -103.110.252.0/22 132770 -103.111.0.0/22 135747 -103.111.8.0/22 137505 -103.111.12.0/22 135438 -103.111.16.0/22 134242 -103.111.20.0/22 133673 -103.111.28.0/22 9341 -103.111.32.0/23 395111 -103.111.34.0/23 131183 -103.111.36.0/24 131183 -103.111.37.0/24 137136 -103.111.38.0/23 137509 -103.111.40.0/22 133987 -103.111.44.0/22 136354 -103.111.48.0/23 134266 -103.111.50.0/24 134266 -103.111.52.0/22 9341 -103.111.56.0/22 9341 -103.111.60.0/24 64200 -103.111.61.0/24 13213 -103.111.62.0/24 13213 -103.111.63.0/24 64200 -103.111.64.0/24 17621 -103.111.68.0/24 137511 -103.111.69.0/24 139542 -103.111.70.0/23 139542 -103.111.72.0/22 137510 -103.111.76.0/23 24183 -103.111.78.0/24 131264 -103.111.79.0/24 137521 -103.111.80.0/22 9341 -103.111.84.0/23 137513 -103.111.86.0/24 131769 -103.111.88.0/22 137514 -103.111.92.0/22 136093 -103.111.96.0/23 136093 -103.111.98.0/24 136093 -103.111.100.0/22 136093 -103.111.108.0/22 137118 -103.111.112.0/22 136295 -103.111.116.0/23 136426 -103.111.120.0/22 137515 -103.111.124.0/24 137518 -103.111.125.0/24 137319 -103.111.126.0/24 137519 -103.111.127.0/24 38559 -103.111.132.0/22 58678 -103.111.136.0/22 136093 -103.111.140.0/22 17670 -103.111.148.0/22 137322 -103.111.152.0/22 137321 -103.111.156.0/22 58895 -103.111.160.0/23 59323 -103.111.162.0/24 137324 -103.111.163.0/24 63956 -103.111.164.0/23 135030 -103.111.166.0/24 135030 -103.111.167.0/24 135310 -103.111.168.0/22 137525 -103.111.176.0/22 137522 -103.111.180.0/22 137922 -103.111.184.0/21 4787 -103.111.196.0/22 133823 -103.111.200.0/21 4787 -103.111.208.0/21 4787 -103.111.217.0/24 137325 -103.111.218.0/23 137323 -103.111.220.0/22 46061 -103.111.224.0/22 137526 -103.111.228.0/22 138423 -103.111.236.0/22 135939 -103.111.244.0/22 135938 -103.111.248.0/22 59149 -103.112.0.0/22 46475 -103.112.4.0/24 135722 -103.112.5.0/24 132669 -103.112.6.0/23 137162 -103.112.8.0/22 137169 -103.112.12.0/22 137124 -103.112.16.0/22 137121 -103.112.20.0/22 137126 -103.112.24.0/22 137125 -103.112.28.0/22 135026 -103.112.32.0/24 133311 -103.112.33.0/24 58678 -103.112.34.0/24 138740 -103.112.35.0/24 133311 -103.112.36.0/22 38077 -103.112.40.0/22 64096 -103.112.44.0/23 132669 -103.112.46.0/24 133951 -103.112.47.0/24 135422 -103.112.52.0/22 63526 -103.112.56.0/24 137530 -103.112.57.0/24 138534 -103.112.58.0/23 138534 -103.112.60.0/23 137531 -103.112.62.0/24 137531 -103.112.63.0/24 134371 -103.112.64.0/23 137532 -103.112.66.0/24 38559 -103.112.67.0/24 136493 -103.112.68.0/22 55933 -103.112.76.0/23 137534 -103.112.78.0/23 136493 -103.112.80.0/24 133210 -103.112.81.0/24 4787 -103.112.82.0/24 137173 -103.112.83.0/24 135756 -103.112.84.0/23 137174 -103.112.86.0/24 137174 -103.112.96.0/23 134705 -103.112.98.0/24 26484 -103.112.99.0/24 134705 -103.112.100.0/24 7474 -103.112.101.0/24 38456 -103.112.102.0/23 137544 -103.112.104.0/23 136161 -103.112.106.0/24 137128 -103.112.107.0/24 137537 -103.112.120.0/24 137538 -103.112.121.0/24 137110 -103.112.122.0/23 137327 -103.112.124.0/22 135940 -103.112.128.0/24 29066 -103.112.129.0/24 137542 -103.112.130.0/23 137542 -103.112.136.0/23 137330 -103.112.138.0/24 55701 -103.112.144.0/23 137334 -103.112.146.0/24 135299 -103.112.147.0/24 137540 -103.112.148.0/22 137541 -103.112.152.0/22 55356 -103.112.156.0/22 137543 -103.112.160.0/23 136437 -103.112.162.0/23 137331 -103.112.164.0/23 135413 -103.112.166.0/24 135045 -103.112.168.0/23 136445 -103.112.170.0/24 3 -103.112.171.0/24 136445 -103.112.172.0/22 55933 -103.112.176.0/24 7545 -103.112.177.0/24 132222 -103.112.178.0/23 132222 -103.112.180.0/22 17511 -103.112.184.0/23 328543 -103.112.186.0/24 328543 -103.112.187.0/24 40065 -103.112.188.0/24 18117 -103.112.189.0/24 137332 -103.112.190.0/24 38526 -103.112.191.0/24 135059 -103.112.192.0/23 38526 -103.112.196.0/22 137336 -103.112.200.0/22 135425 -103.112.204.0/23 137548 -103.112.206.0/24 134382 -103.112.208.0/22 137547 -103.112.212.0/22 137172 -103.112.216.0/22 137164 -103.112.220.0/23 134077 -103.112.223.0/24 56236 -103.112.226.0/24 135718 -103.112.227.0/24 45117 -103.112.228.0/23 136116 -103.112.230.0/23 132946 -103.112.232.0/24 139439 -103.112.234.0/24 135185 -103.112.236.0/22 137550 -103.112.240.0/22 137551 -103.112.244.0/24 64315 -103.112.248.0/23 134338 -103.112.252.0/22 137139 -103.113.0.0/24 137171 -103.113.1.0/24 138165 -103.113.2.0/24 137004 -103.113.3.0/24 137342 -103.113.4.0/24 59074 -103.113.6.0/23 59074 -103.113.8.0/22 55720 -103.113.12.0/22 137554 -103.113.16.0/22 137553 -103.113.20.0/22 137552 -103.113.24.0/23 134077 -103.113.26.0/24 137339 -103.113.27.0/24 135696 -103.113.28.0/24 58820 -103.113.30.0/23 137340 -103.113.32.0/23 135755 -103.113.34.0/23 135718 -103.113.40.0/24 20473 -103.113.44.0/22 137557 -103.113.48.0/21 4787 -103.113.56.0/22 63774 -103.113.60.0/22 139340 -103.113.64.0/23 137095 -103.113.66.0/24 134259 -103.113.67.0/24 137095 -103.113.68.0/22 133973 -103.113.72.0/21 4787 -103.113.80.0/22 135943 -103.113.84.0/22 135307 -103.113.88.0/22 135905 -103.113.92.0/22 138538 -103.113.96.0/22 132771 -103.113.100.0/22 137561 -103.113.104.0/22 138718 -103.113.108.0/24 135190 -103.113.110.0/23 134273 -103.113.112.0/22 137604 -103.113.116.0/22 4787 -103.113.120.0/22 4787 -103.113.128.0/21 4787 -103.113.136.0/22 132770 -103.113.140.0/22 136337 -103.113.148.0/23 137967 -103.113.150.0/23 137176 -103.113.152.0/22 45766 -103.113.156.0/24 55799 -103.113.157.0/24 134520 -103.113.158.0/23 134520 -103.113.160.0/22 29802 -103.113.168.0/24 137462 -103.113.169.0/24 4826 -103.113.170.0/23 137352 -103.113.172.0/23 137568 -103.113.174.0/24 137568 -103.113.175.0/24 137453 -103.113.176.0/22 137566 -103.113.180.0/24 132359 -103.113.182.0/24 132844 -103.113.183.0/24 132554 -103.113.184.0/24 137567 -103.113.186.0/23 137567 -103.113.188.0/22 135859 -103.113.192.0/22 137703 -103.113.196.0/22 24556 -103.113.200.0/22 137706 -103.113.204.0/22 136494 -103.113.208.0/23 137570 -103.113.213.0/24 137608 -103.113.214.0/24 137347 -103.113.215.0/24 137573 -103.113.216.0/22 137628 -103.113.224.0/22 137572 -103.113.228.0/22 136342 -103.113.240.0/22 132146 -103.113.244.0/23 137575 -103.113.246.0/24 24263 -103.113.247.0/24 18002 -103.113.252.0/22 134343 -103.114.0.0/22 133001 -103.114.8.0/24 137577 -103.114.10.0/23 137578 -103.114.12.0/22 137576 -103.114.16.0/24 137607 -103.114.17.0/24 7545 -103.114.18.0/24 137369 -103.114.20.0/23 137579 -103.114.23.0/24 137579 -103.114.24.0/22 137580 -103.114.28.0/22 59056 -103.114.33.0/24 17439 -103.114.34.0/24 135408 -103.114.35.0/24 137360 -103.114.36.0/23 137584 -103.114.38.0/23 137585 -103.114.40.0/22 137707 -103.114.44.0/22 59217 -103.114.48.0/22 137344 -103.114.52.0/23 137349 -103.114.54.0/24 135022 -103.114.55.0/24 134688 -103.114.56.0/23 137630 -103.114.58.0/24 137630 -103.114.60.0/24 136276 -103.114.61.0/24 63526 -103.114.62.0/24 17842 -103.114.64.0/22 137588 -103.114.72.0/24 134121 -103.114.73.0/24 55933 -103.114.74.0/23 55933 -103.114.76.0/23 23679 -103.114.78.0/24 23679 -103.114.80.0/21 4787 -103.114.88.0/22 137811 -103.114.92.0/22 137809 -103.114.97.0/24 137449 -103.114.98.0/24 137449 -103.114.99.0/24 137810 -103.114.100.0/22 134768 -103.114.104.0/22 135905 -103.114.108.0/22 4787 -103.114.112.0/21 4787 -103.114.120.0/22 4787 -103.114.124.0/22 18321 -103.114.128.0/24 45178 -103.114.129.0/24 132707 -103.114.130.0/23 1221 -103.114.132.0/22 135026 -103.114.136.0/21 4787 -103.114.144.0/24 137351 -103.114.145.0/24 135336 -103.114.146.0/23 137905 -103.114.152.0/22 137631 -103.114.156.0/22 137710 -103.114.160.0/22 35913 -103.114.164.0/23 4787 -103.114.166.0/23 135131 -103.114.168.0/22 137815 -103.114.172.0/24 137814 -103.114.173.0/24 4787 -103.114.174.0/24 38303 -103.114.177.0/24 137813 -103.114.178.0/23 137813 -103.114.180.0/22 24251 -103.114.184.0/22 23618 -103.114.188.0/23 137817 -103.114.191.0/24 397702 -103.114.192.0/24 137816 -103.114.194.0/23 137816 -103.114.196.0/24 137353 -103.114.198.0/23 137818 -103.114.200.0/23 137606 -103.114.204.0/24 137605 -103.114.205.0/24 137638 -103.114.206.0/24 137433 -103.114.207.0/24 132593 -103.114.208.0/22 135139 -103.114.212.0/22 137762 -103.114.216.0/24 135136 -103.114.217.0/24 31863 -103.114.218.0/23 31863 -103.114.220.0/23 132770 -103.114.224.0/24 135754 -103.114.227.0/24 138789 -103.114.231.0/24 133951 -103.114.232.0/22 131933 -103.114.236.0/23 137806 -103.114.244.0/24 137354 -103.114.245.0/24 137632 -103.114.246.0/23 137650 -103.114.248.0/22 134326 -103.115.0.0/23 137099 -103.115.2.0/23 133433 -103.115.4.0/23 136786 -103.115.6.0/24 136786 -103.115.7.0/24 137822 -103.115.8.0/22 2635 -103.115.12.0/23 137199 -103.115.14.0/23 137824 -103.115.16.0/22 46261 -103.115.20.0/24 137821 -103.115.21.0/24 18196 -103.115.22.0/24 137575 -103.115.23.0/24 137826 -103.115.24.0/22 137823 -103.115.32.0/24 137357 -103.115.33.0/24 137827 -103.115.34.0/24 137825 -103.115.36.0/22 137359 -103.115.40.0/21 55933 -103.115.48.0/22 55933 -103.115.56.0/21 55933 -103.115.64.0/22 55933 -103.115.72.0/22 137828 -103.115.76.0/23 138341 -103.115.78.0/24 138341 -103.115.79.0/24 137831 -103.115.80.0/23 132468 -103.115.82.0/23 134106 -103.115.84.0/22 137829 -103.115.97.0/24 137836 -103.115.98.0/24 9890 -103.115.99.0/24 137356 -103.115.100.0/22 136262 -103.115.104.0/24 137361 -103.115.105.0/24 137602 -103.115.106.0/23 23920 -103.115.112.0/24 137841 -103.115.113.0/24 7545 -103.115.116.0/22 137834 -103.115.120.0/22 9405 -103.115.126.0/24 139525 -103.115.127.0/24 135223 -103.115.128.0/22 137633 -103.115.132.0/22 137843 -103.115.136.0/22 137847 -103.115.141.0/24 132088 -103.115.142.0/23 132088 -103.115.144.0/24 134705 -103.115.145.0/24 137915 -103.115.146.0/24 137915 -103.115.156.0/22 137842 -103.115.160.0/24 137852 -103.115.163.0/24 137852 -103.115.164.0/24 58477 -103.115.165.0/24 137844 -103.115.167.0/24 137854 -103.115.172.0/22 137853 -103.115.176.0/22 136055 -103.115.180.0/22 134884 -103.115.184.0/24 133480 -103.115.185.0/24 9009 -103.115.187.0/24 394844 -103.115.188.0/22 45654 -103.115.192.0/24 23676 -103.115.194.0/24 17439 -103.115.195.0/24 136946 -103.115.196.0/23 131471 -103.115.198.0/24 131471 -103.115.199.0/24 139043 -103.115.200.0/22 132770 -103.115.204.0/23 32708 -103.115.206.0/23 136946 -103.115.213.0/24 137863 -103.115.214.0/24 137861 -103.115.217.0/24 131944 -103.115.218.0/23 131944 -103.115.224.0/23 132896 -103.115.227.0/24 137362 -103.115.232.0/24 137634 -103.115.234.0/23 133884 -103.115.240.0/22 137862 -103.115.244.0/22 63440 -103.115.252.0/22 137868 -103.116.0.0/22 24516 -103.116.4.0/24 33011 -103.116.8.0/22 131622 -103.116.12.0/24 135300 -103.116.16.0/23 137870 -103.116.18.0/23 135253 -103.116.20.0/22 138402 -103.116.24.0/24 136320 -103.116.25.0/24 137895 -103.116.26.0/23 137590 -103.116.28.0/22 132116 -103.116.32.0/24 135791 -103.116.34.0/24 135791 -103.116.40.0/23 134705 -103.116.42.0/24 136743 -103.116.43.0/24 134705 -103.116.44.0/24 40065 -103.116.45.0/24 137877 -103.116.46.0/24 22769 -103.116.47.0/24 131477 -103.116.48.0/24 137880 -103.116.49.0/24 137538 -103.116.50.0/23 137876 -103.116.52.0/23 137873 -103.116.56.0/22 137878 -103.116.64.0/24 134705 -103.116.65.0/24 26484 -103.116.66.0/24 26484 -103.116.67.0/24 134705 -103.116.69.0/24 131620 -103.116.70.0/23 131620 -103.116.72.0/24 36351 -103.116.73.0/24 131477 -103.116.74.0/23 131477 -103.116.76.0/23 4812 -103.116.78.0/24 4812 -103.116.79.0/24 17621 -103.116.84.0/22 134316 -103.116.88.0/22 137883 -103.116.96.0/22 131619 -103.116.100.0/24 135945 -103.116.102.0/23 135945 -103.116.104.0/22 63731 -103.116.109.0/24 131785 -103.116.110.0/24 137364 -103.116.111.0/24 34768 -103.116.112.0/22 24532 -103.116.116.0/22 137884 -103.116.120.0/22 24143 -103.116.124.0/22 23947 -103.116.132.0/23 133448 -103.116.135.0/24 17451 -103.116.136.0/22 136603 -103.116.140.0/22 138787 -103.116.144.0/23 137672 -103.116.147.0/24 135229 -103.116.148.0/23 21859 -103.116.152.0/22 17511 -103.116.156.0/24 137890 -103.116.157.0/24 135840 -103.116.159.0/24 137888 -103.116.160.0/22 38799 -103.116.164.0/22 137889 -103.116.168.0/24 137371 -103.116.169.0/24 137978 -103.116.172.0/22 137363 -103.116.176.0/22 133977 -103.116.180.0/22 58890 -103.116.188.0/23 4770 -103.116.190.0/23 137891 -103.116.192.0/23 9654 -103.116.195.0/24 38195 -103.116.196.0/22 137682 -103.116.200.0/24 137365 -103.116.201.0/24 58495 -103.116.202.0/23 58495 -103.116.204.0/23 58387 -103.116.206.0/23 136955 -103.116.208.0/24 4826 -103.116.209.0/24 133455 -103.116.210.0/24 137368 -103.116.211.0/24 137903 -103.116.212.0/22 136800 -103.116.232.0/23 136349 -103.116.234.0/23 131783 -103.116.236.0/22 137893 -103.116.240.0/24 137900 -103.116.242.0/23 137900 -103.116.244.0/23 64021 -103.116.246.0/24 137899 -103.116.248.0/22 131471 -103.117.4.0/22 131623 -103.117.8.0/24 58557 -103.117.9.0/24 136370 -103.117.11.0/24 137911 -103.117.12.0/22 136696 -103.117.20.0/24 132372 -103.117.21.0/24 137912 -103.117.22.0/23 132004 -103.117.24.0/22 137913 -103.117.28.0/24 137916 -103.117.29.0/24 137673 -103.117.32.0/22 137609 -103.117.36.0/23 18229 -103.117.38.0/23 137612 -103.117.48.0/22 134872 -103.117.60.0/23 137681 -103.117.62.0/24 137836 -103.117.63.0/24 136201 -103.117.64.0/22 137610 -103.117.68.0/22 137611 -103.117.72.0/22 137443 -103.117.76.0/24 45671 -103.117.80.0/24 137925 -103.117.81.0/24 55855 -103.117.82.0/23 135448 -103.117.84.0/22 134564 -103.117.92.0/22 136763 -103.117.99.0/24 134406 -103.117.100.0/22 54574 -103.117.104.0/23 17766 -103.117.106.0/24 131273 -103.117.107.0/24 38220 -103.117.108.0/22 137935 -103.117.112.0/22 18046 -103.117.116.0/24 137930 -103.117.117.0/24 17439 -103.117.118.0/23 63986 -103.117.120.0/22 134705 -103.117.124.0/22 137619 -103.117.128.0/23 137932 -103.117.132.0/23 137218 -103.117.136.0/22 137443 -103.117.140.0/24 63986 -103.117.141.0/24 55720 -103.117.142.0/23 137934 -103.117.144.0/22 45753 -103.117.148.0/22 137939 -103.117.152.0/23 136674 -103.117.154.0/24 135201 -103.117.156.0/24 17439 -103.117.157.0/24 38750 -103.117.158.0/23 56201 -103.117.160.0/22 58895 -103.117.164.0/24 23838 -103.117.168.0/22 9751 -103.117.172.0/24 135232 -103.117.173.0/24 46071 -103.117.174.0/24 18229 -103.117.175.0/24 135232 -103.117.178.0/23 137665 -103.117.180.0/24 18229 -103.117.181.0/24 4755 -103.117.192.0/22 137967 -103.117.196.0/22 137941 -103.117.200.0/23 55566 -103.117.202.0/23 137678 -103.117.204.0/23 38320 -103.117.206.0/24 38320 -103.117.207.0/24 138085 -103.117.208.0/22 135705 -103.117.212.0/24 133295 -103.117.213.0/24 137666 -103.117.214.0/24 136339 -103.117.216.0/23 133244 -103.117.218.0/24 133244 -103.117.220.0/22 134768 -103.117.224.0/22 131627 -103.117.228.0/22 133410 -103.117.232.0/22 137667 -103.117.236.0/22 137677 -103.117.240.0/24 135947 -103.117.248.0/22 63631 -103.117.252.0/24 137948 -103.117.253.0/24 139349 -103.117.254.0/24 138588 -103.117.255.0/24 138593 -103.118.0.0/23 137947 -103.118.2.0/24 137675 -103.118.3.0/24 137372 -103.118.4.0/22 45194 -103.118.8.0/22 133296 -103.118.16.0/23 137950 -103.118.18.0/24 137519 -103.118.20.0/22 134152 -103.118.24.0/22 131626 -103.118.32.0/23 58868 -103.118.34.0/23 136696 -103.118.36.0/23 137946 -103.118.38.0/24 137946 -103.118.40.0/22 136600 -103.118.44.0/22 137952 -103.118.48.0/23 135386 -103.118.50.0/24 137956 -103.118.51.0/24 137957 -103.118.52.0/22 4808 -103.118.60.0/22 137715 -103.118.76.0/22 137959 -103.118.80.0/24 3223 -103.118.81.0/24 137962 -103.118.82.0/24 135482 -103.118.83.0/24 134285 -103.118.84.0/22 137961 -103.118.92.0/22 131937 -103.118.96.0/20 4787 -103.118.112.0/22 137135 -103.118.116.0/22 138730 -103.118.120.0/24 137965 -103.118.122.0/24 137529 -103.118.123.0/24 137912 -103.118.124.0/22 137376 -103.118.128.0/20 4787 -103.118.144.0/22 137100 -103.118.148.0/22 138145 -103.118.152.0/23 137964 -103.118.154.0/23 137912 -103.118.157.0/24 17439 -103.118.158.0/23 137621 -103.118.160.0/24 137646 -103.118.161.0/24 137971 -103.118.162.0/23 135662 -103.118.164.0/22 134326 -103.118.168.0/22 137622 -103.118.172.0/24 137972 -103.118.173.0/24 135577 -103.118.176.0/24 137370 -103.118.180.0/22 137623 -103.118.184.0/22 137375 -103.118.188.0/22 137624 -103.118.192.0/19 55933 -103.118.224.0/20 4787 -103.118.240.0/20 55933 -103.119.0.0/22 55933 -103.119.4.0/22 4787 -103.119.8.0/22 4787 -103.119.12.0/22 55933 -103.119.16.0/22 55933 -103.119.20.0/22 137976 -103.119.24.0/22 137975 -103.119.28.0/23 43092 -103.119.30.0/24 43092 -103.119.31.0/24 136782 -103.119.32.0/24 137980 -103.119.33.0/24 138326 -103.119.34.0/24 55855 -103.119.35.0/24 138231 -103.119.36.0/22 4787 -103.119.40.0/22 4787 -103.119.44.0/22 24000 -103.119.48.0/21 63859 -103.119.56.0/24 135389 -103.119.57.0/24 23860 -103.119.58.0/23 23860 -103.119.60.0/22 63859 -103.119.64.0/22 63859 -103.119.68.0/22 137974 -103.119.72.0/23 15580 -103.119.74.0/24 134513 -103.119.75.0/24 137981 -103.119.76.0/22 133279 -103.119.84.0/22 135905 -103.119.88.0/22 10010 -103.119.92.0/24 137982 -103.119.94.0/23 137987 -103.119.100.0/22 137985 -103.119.104.0/22 138029 -103.119.112.0/24 174 -103.119.113.0/24 137641 -103.119.116.0/22 137378 -103.119.120.0/22 133278 -103.119.125.0/24 138019 -103.119.126.0/24 137994 -103.119.127.0/24 131936 -103.119.128.0/22 137990 -103.119.132.0/23 137969 -103.119.134.0/23 137487 -103.119.136.0/24 137487 -103.119.137.0/24 137993 -103.119.138.0/24 137379 -103.119.139.0/24 137381 -103.119.140.0/22 136119 -103.119.144.0/22 136119 -103.119.148.0/22 137991 -103.119.152.0/22 137989 -103.119.160.0/22 137642 -103.119.168.0/23 24318 -103.119.176.0/22 138011 -103.119.188.0/22 55352 -103.119.192.0/22 134866 -103.119.196.0/24 133648 -103.119.197.0/24 137095 -103.119.198.0/23 137095 -103.119.200.0/22 134768 -103.119.208.0/23 136902 -103.119.210.0/24 135841 -103.119.211.0/24 138012 -103.119.212.0/23 133747 -103.119.214.0/24 136782 -103.119.215.0/24 133747 -103.119.216.0/23 134297 -103.119.223.0/24 135179 -103.119.224.0/23 137784 -103.119.228.0/23 64315 -103.119.230.0/24 64315 -103.119.231.0/24 137380 -103.119.236.0/24 55745 -103.119.237.0/24 45178 -103.119.239.0/24 133296 -103.119.240.0/22 132215 -103.119.244.0/24 136634 -103.119.245.0/24 135718 -103.119.246.0/24 135718 -103.119.248.0/22 137648 -103.119.252.0/24 137625 -103.119.253.0/24 138017 -103.119.254.0/23 135808 -103.120.0.0/24 137649 -103.120.2.0/23 137649 -103.120.4.0/23 137996 -103.120.6.0/24 138014 -103.120.7.0/24 138034 -103.120.8.0/22 135126 -103.120.12.0/22 17941 -103.120.16.0/22 131939 -103.120.24.0/22 136800 -103.120.28.0/23 132215 -103.120.30.0/24 132215 -103.120.32.0/22 138022 -103.120.41.0/24 138035 -103.120.42.0/23 138028 -103.120.44.0/22 138031 -103.120.48.0/24 138023 -103.120.50.0/23 133982 -103.120.56.0/22 137639 -103.120.64.0/22 137373 -103.120.68.0/24 4787 -103.120.69.0/24 138025 -103.120.70.0/23 136969 -103.120.72.0/24 4837 -103.120.73.0/24 58461 -103.120.74.0/23 58461 -103.120.77.0/24 138447 -103.120.78.0/24 9749 -103.120.80.0/22 139021 -103.120.84.0/22 138033 -103.120.92.0/22 135854 -103.120.100.0/24 134705 -103.120.101.0/24 26484 -103.120.102.0/24 26484 -103.120.103.0/24 134705 -103.120.106.0/23 131283 -103.120.109.0/24 64020 -103.120.110.0/24 136004 -103.120.111.0/24 134003 -103.120.112.0/22 135419 -103.120.116.0/22 58893 -103.120.120.0/22 55559 -103.120.124.0/23 138117 -103.120.126.0/23 137652 -103.120.129.0/24 393960 -103.120.130.0/24 136306 -103.120.131.0/24 22744 -103.120.132.0/22 38235 -103.120.136.0/24 138040 -103.120.137.0/24 7415 -103.120.138.0/24 58369 -103.120.139.0/24 137324 -103.120.144.0/22 138042 -103.120.152.0/23 137653 -103.120.154.0/23 137324 -103.120.160.0/22 134572 -103.120.164.0/22 134562 -103.120.168.0/21 63859 -103.120.176.0/22 17439 -103.120.184.0/22 38633 -103.120.188.0/23 137654 -103.120.190.0/23 135827 -103.120.192.0/22 134585 -103.120.196.0/22 137782 -103.120.200.0/22 63526 -103.120.204.0/23 63023 -103.120.206.0/24 63930 -103.120.207.0/24 137373 -103.120.208.0/22 134883 -103.120.212.0/22 59371 -103.120.216.0/24 139047 -103.120.217.0/24 17477 -103.120.218.0/24 138082 -103.120.220.0/22 134601 -103.120.224.0/22 4837 -103.120.228.0/23 137969 -103.120.230.0/23 134573 -103.120.232.0/24 137384 -103.120.233.0/24 18059 -103.120.234.0/23 132515 -103.120.236.0/23 135737 -103.120.238.0/24 135737 -103.120.239.0/24 135735 -103.120.240.0/24 135048 -103.120.244.0/24 137383 -103.120.245.0/24 134594 -103.120.246.0/24 134592 -103.120.247.0/24 24429 -103.120.248.0/22 17665 -103.120.252.0/23 58678 -103.120.254.0/24 137166 -103.120.255.0/24 58678 -103.121.0.0/22 137668 -103.121.7.0/24 7545 -103.121.8.0/22 45766 -103.121.12.0/22 134595 -103.121.16.0/21 63859 -103.121.24.0/23 134597 -103.121.26.0/23 21788 -103.121.34.0/23 138398 -103.121.36.0/22 134599 -103.121.40.0/22 38713 -103.121.44.0/24 59056 -103.121.45.0/24 131941 -103.121.46.0/23 131941 -103.121.48.0/23 138043 -103.121.50.0/23 138049 -103.121.52.0/24 4808 -103.121.56.0/24 45671 -103.121.57.0/24 137660 -103.121.58.0/24 138046 -103.121.59.0/24 1221 -103.121.60.0/23 138146 -103.121.62.0/24 138146 -103.121.64.0/22 134603 -103.121.68.0/22 133257 -103.121.72.0/22 134886 -103.121.76.0/22 138149 -103.121.84.0/22 138047 -103.121.88.0/22 18403 -103.121.92.0/22 137443 -103.121.96.0/21 4787 -103.121.104.0/23 138150 -103.121.106.0/24 138150 -103.121.108.0/22 4787 -103.121.112.0/23 132779 -103.121.114.0/23 135697 -103.121.116.0/22 134302 -103.121.120.0/23 131275 -103.121.122.0/24 138131 -103.121.123.0/24 138059 -103.121.124.0/24 9749 -103.121.125.0/24 23943 -103.121.126.0/23 23943 -103.121.128.0/22 131478 -103.121.132.0/22 4787 -103.121.136.0/22 4787 -103.121.140.0/22 134383 -103.121.144.0/22 4787 -103.121.148.0/23 58369 -103.121.150.0/23 135226 -103.121.152.0/23 136284 -103.121.156.0/23 137654 -103.121.158.0/24 138158 -103.121.159.0/24 132676 -103.121.164.0/23 4808 -103.121.166.0/24 4808 -103.121.168.0/22 4787 -103.121.172.0/23 133149 -103.121.174.0/24 137655 -103.121.175.0/24 136027 -103.121.176.0/22 131630 -103.121.180.0/22 4787 -103.121.184.0/22 135795 -103.121.188.0/22 137551 -103.121.192.0/24 138161 -103.121.194.0/23 138163 -103.121.196.0/22 58495 -103.121.200.0/23 138054 -103.121.204.0/23 134922 -103.121.206.0/24 138169 -103.121.207.0/24 138173 -103.121.208.0/22 4785 -103.121.212.0/22 58495 -103.121.216.0/22 138170 -103.121.220.0/22 138171 -103.121.224.0/22 138167 -103.121.228.0/24 138168 -103.121.230.0/23 138168 -103.121.234.0/23 137659 -103.121.236.0/24 134891 -103.121.238.0/23 138056 -103.121.240.0/23 137657 -103.121.242.0/23 136334 -103.121.244.0/22 4787 -103.121.251.0/24 138048 -103.121.252.0/22 23650 -103.122.4.0/24 1221 -103.122.5.0/24 138050 -103.122.6.0/24 18196 -103.122.7.0/24 138063 -103.122.12.0/23 18196 -103.122.14.0/23 135780 -103.122.20.0/24 40065 -103.122.21.0/24 137443 -103.122.22.0/24 137443 -103.122.23.0/24 138576 -103.122.24.0/22 45854 -103.122.28.0/23 138198 -103.122.32.0/24 131111 -103.122.33.0/24 23947 -103.122.34.0/24 131111 -103.122.35.0/24 23947 -103.122.40.0/22 138189 -103.122.44.0/24 136598 -103.122.45.0/24 138204 -103.122.46.0/23 138208 -103.122.48.0/22 134768 -103.122.52.0/24 138199 -103.122.53.0/24 137670 -103.122.54.0/24 138207 -103.122.55.0/24 138101 -103.122.59.0/24 137662 -103.122.60.0/23 133678 -103.122.62.0/24 133678 -103.122.64.0/22 138064 -103.122.68.0/22 138055 -103.122.72.0/24 136587 -103.122.74.0/23 136141 -103.122.78.0/24 56201 -103.122.84.0/23 136315 -103.122.87.0/24 135816 -103.122.88.0/23 138214 -103.122.90.0/23 136009 -103.122.92.0/23 133115 -103.122.94.0/24 133115 -103.122.95.0/24 133073 -103.122.96.0/22 131111 -103.122.100.0/23 138213 -103.122.102.0/24 138216 -103.122.103.0/24 136976 -103.122.104.0/21 131111 -103.122.112.0/23 138215 -103.122.114.0/23 132280 -103.122.116.0/22 134098 -103.122.120.0/24 7545 -103.122.121.0/24 138086 -103.122.123.0/24 38903 -103.122.128.0/22 136659 -103.122.132.0/22 136670 -103.122.136.0/22 138212 -103.122.155.0/24 138068 -103.122.156.0/23 135732 -103.122.158.0/23 136174 -103.122.164.0/24 132372 -103.122.166.0/23 30103 -103.122.168.0/23 138293 -103.122.172.0/22 138291 -103.122.176.0/24 4785 -103.122.177.0/24 62468 -103.122.180.0/23 138218 -103.122.182.0/24 135205 -103.122.183.0/24 138327 -103.122.184.0/22 45370 -103.122.188.0/22 131657 -103.122.192.0/24 4847 -103.122.200.0/23 136373 -103.122.202.0/23 138073 -103.122.224.0/24 9311 -103.122.225.0/24 131618 -103.122.226.0/23 131618 -103.122.228.0/24 138292 -103.122.229.0/24 136342 -103.122.232.0/22 133001 -103.122.243.0/24 9392 -103.122.244.0/24 18013 -103.122.245.0/24 4765 -103.122.246.0/23 137443 -103.122.248.0/22 138325 -103.122.252.0/22 138320 -103.123.0.0/23 131632 -103.123.2.0/24 131632 -103.123.3.0/24 9676 -103.123.8.0/22 38493 -103.123.13.0/24 133807 -103.123.14.0/23 45286 -103.123.16.0/22 138069 -103.123.20.0/22 138060 -103.123.24.0/23 138071 -103.123.26.0/24 138323 -103.123.27.0/24 18196 -103.123.28.0/23 132829 -103.123.30.0/23 135562 -103.123.32.0/22 135554 -103.123.36.0/23 18196 -103.123.38.0/24 135227 -103.123.39.0/24 138076 -103.123.40.0/22 38553 -103.123.44.0/22 138290 -103.123.48.0/23 135207 -103.123.50.0/23 134053 -103.123.52.0/22 138289 -103.123.64.0/21 131111 -103.123.72.0/23 138221 -103.123.74.0/24 138223 -103.123.75.0/24 138324 -103.123.76.0/22 55352 -103.123.84.0/24 137521 -103.123.86.0/23 136366 -103.123.96.0/22 138074 -103.123.100.0/22 138145 -103.123.104.0/23 138070 -103.123.107.0/24 138070 -103.123.108.0/24 138066 -103.123.109.0/24 139200 -103.123.110.0/24 18117 -103.123.111.0/24 136326 -103.123.112.0/22 135567 -103.123.120.0/22 138072 -103.123.128.0/22 131662 -103.123.132.0/22 134823 -103.123.136.0/22 55901 -103.123.148.0/22 131111 -103.123.157.0/24 137004 -103.123.158.0/24 132643 -103.123.159.0/24 136024 -103.123.160.0/22 138415 -103.123.164.0/22 134359 -103.123.168.0/22 138346 -103.123.180.0/22 63776 -103.123.188.0/24 18042 -103.123.189.0/24 9924 -103.123.190.0/23 9924 -103.123.196.0/22 131149 -103.123.212.0/22 139007 -103.123.216.0/22 131631 -103.123.220.0/22 138329 -103.123.224.0/22 138296 -103.123.228.0/22 131111 -103.123.232.0/23 134405 -103.123.234.0/23 135817 -103.123.236.0/24 138078 -103.123.237.0/24 45668 -103.123.238.0/23 136520 -103.123.240.0/22 131149 -103.123.245.0/24 23947 -103.123.246.0/23 131111 -103.123.248.0/24 131111 -103.123.250.0/24 131111 -103.124.0.0/22 138384 -103.124.4.0/22 138099 -103.124.8.0/24 138095 -103.124.9.0/24 138389 -103.124.12.0/24 134872 -103.124.13.0/24 133275 -103.124.14.0/24 133275 -103.124.16.0/22 17941 -103.124.32.0/22 138382 -103.124.36.0/24 7545 -103.124.37.0/24 138386 -103.124.38.0/23 133973 -103.124.44.0/23 9341 -103.124.46.0/24 9341 -103.124.52.0/22 138385 -103.124.56.0/22 135955 -103.124.60.0/22 135956 -103.124.68.0/24 58819 -103.124.71.0/24 58819 -103.124.72.0/22 7539 -103.124.80.0/22 1 -103.124.84.0/22 138227 -103.124.88.0/22 9341 -103.124.92.0/22 131353 -103.124.96.0/22 138388 -103.124.100.0/23 4766 -103.124.102.0/24 45382 -103.124.104.0/22 35913 -103.124.108.0/24 137636 -103.124.109.0/24 137110 -103.124.110.0/24 138197 -103.124.111.0/24 134371 -103.124.124.0/24 40927 -103.124.125.0/24 138394 -103.124.132.0/22 138399 -103.124.136.0/22 138089 -103.124.140.0/23 138232 -103.124.142.0/24 136355 -103.124.143.0/24 138232 -103.124.144.0/22 9341 -103.124.152.0/23 134877 -103.124.154.0/24 138237 -103.124.155.0/24 138400 -103.124.158.0/23 138401 -103.124.164.0/23 56268 -103.124.168.0/22 138259 -103.124.172.0/24 133680 -103.124.173.0/24 138260 -103.124.174.0/24 138260 -103.124.175.0/24 135817 -103.124.180.0/23 138403 -103.124.182.0/24 138403 -103.124.186.0/24 44521 -103.124.187.0/24 132831 -103.124.188.0/22 17995 -103.124.192.0/22 138402 -103.124.196.0/24 138096 -103.124.198.0/24 138096 -103.124.204.0/22 138411 -103.124.220.0/22 17995 -103.124.224.0/22 30938 -103.124.228.0/22 17995 -103.124.232.0/24 394381 -103.124.236.0/23 134781 -103.124.238.0/24 134781 -103.124.244.0/22 138090 -103.124.248.0/23 138412 -103.124.250.0/23 58715 -103.124.254.0/24 131659 -103.125.4.0/22 17995 -103.125.8.0/22 17995 -103.125.12.0/23 135636 -103.125.14.0/24 135636 -103.125.16.0/22 138087 -103.125.25.0/24 137854 -103.125.26.0/23 137854 -103.125.28.0/22 138418 -103.125.32.0/23 138419 -103.125.35.0/24 138419 -103.125.52.0/24 138098 -103.125.53.0/24 138301 -103.125.60.0/24 9541 -103.125.61.0/24 138425 -103.125.62.0/24 133720 -103.125.70.0/23 136030 -103.125.72.0/22 135768 -103.125.76.0/22 138302 -103.125.80.0/23 137621 -103.125.82.0/24 138427 -103.125.84.0/22 132825 -103.125.88.0/23 138432 -103.125.90.0/24 138432 -103.125.91.0/24 138454 -103.125.92.0/22 4618 -103.125.96.0/22 138431 -103.125.104.0/22 138100 -103.125.108.0/22 10187 -103.125.112.0/23 138270 -103.125.114.0/24 138285 -103.125.115.0/24 137962 -103.125.116.0/22 138102 -103.125.120.0/22 138437 -103.125.124.0/22 55381 -103.125.128.0/23 58965 -103.125.130.0/24 58965 -103.125.136.0/24 138443 -103.125.140.0/22 138444 -103.125.144.0/22 46475 -103.125.148.0/22 135345 -103.125.154.0/23 138746 -103.125.160.0/23 18229 -103.125.163.0/24 18229 -103.125.168.0/24 131386 -103.125.172.0/23 63882 -103.125.174.0/24 63882 -103.125.175.0/24 138839 -103.125.176.0/23 17557 -103.125.179.0/24 9557 -103.125.184.0/23 138114 -103.125.186.0/24 133533 -103.125.188.0/22 135905 -103.125.192.0/22 45899 -103.125.200.0/23 18229 -103.125.202.0/23 138105 -103.125.205.0/24 55486 -103.125.208.0/24 4800 -103.125.216.0/23 38001 -103.125.218.0/24 23858 -103.125.220.0/23 55561 -103.125.222.0/24 138455 -103.125.223.0/24 138104 -103.125.232.0/23 9312 -103.125.234.0/23 4785 -103.125.240.0/22 138453 -103.125.244.0/23 138460 -103.125.246.0/24 138460 -103.125.248.0/24 137001 -103.125.249.0/24 43092 -103.125.250.0/23 136782 -103.125.252.0/23 38200 -103.125.254.0/24 38026 -103.126.4.0/23 136479 -103.126.6.0/23 133296 -103.126.8.0/22 138106 -103.126.12.0/23 138454 -103.126.15.0/24 138454 -103.126.18.0/23 63583 -103.126.20.0/22 138464 -103.126.24.0/24 138456 -103.126.25.0/24 132581 -103.126.27.0/24 138468 -103.126.28.0/22 138119 -103.126.32.0/22 133973 -103.126.36.0/22 138462 -103.126.48.0/22 138465 -103.126.52.0/22 138466 -103.126.56.0/22 138107 -103.126.60.0/23 137020 -103.126.62.0/24 138287 -103.126.64.0/22 18322 -103.126.68.0/24 132770 -103.126.72.0/22 138242 -103.126.78.0/23 138470 -103.126.82.0/24 138626 -103.126.83.0/24 55687 -103.126.84.0/22 138109 -103.126.88.0/22 18049 -103.126.92.0/22 137263 -103.126.96.0/22 138472 -103.126.100.0/22 54600 -103.126.104.0/22 24559 -103.126.108.0/22 138489 -103.126.112.0/22 138473 -103.126.116.0/24 138116 -103.126.118.0/24 138116 -103.126.120.0/24 138110 -103.126.121.0/24 138475 -103.126.123.0/24 134224 -103.126.124.0/22 137735 -103.126.132.0/22 18013 -103.126.136.0/22 40676 -103.126.142.0/23 131653 -103.126.144.0/22 135060 -103.126.148.0/23 134371 -103.126.150.0/24 138474 -103.126.151.0/24 134371 -103.126.152.0/23 135957 -103.126.154.0/24 135957 -103.126.156.0/22 135958 -103.126.160.0/22 135959 -103.126.169.0/24 132934 -103.126.170.0/24 138282 -103.126.171.0/24 139578 -103.126.172.0/22 138112 -103.126.176.0/22 131943 -103.126.184.0/23 138476 -103.126.187.0/24 1221 -103.126.189.0/24 63959 -103.126.191.0/24 63959 -103.126.192.0/23 133120 -103.126.194.0/24 138484 -103.126.200.0/22 138113 -103.126.204.0/23 138239 -103.126.206.0/24 4826 -103.126.207.0/24 138490 -103.126.208.0/24 134196 -103.126.209.0/24 136897 -103.126.210.0/23 55933 -103.126.212.0/23 138487 -103.126.214.0/24 134204 -103.126.215.0/24 138487 -103.126.217.0/24 138482 -103.126.218.0/24 138482 -103.126.220.0/22 132130 -103.126.224.0/23 138488 -103.126.226.0/24 138115 -103.126.227.0/24 138485 -103.126.228.0/22 134944 -103.126.236.0/23 138491 -103.126.238.0/24 24309 -103.126.239.0/24 137638 -103.126.240.0/24 134298 -103.126.241.0/24 137443 -103.126.243.0/24 132685 -103.126.244.0/22 138495 -103.126.248.0/23 138494 -103.126.252.0/22 18046 -103.127.0.0/23 138492 -103.127.2.0/23 137453 -103.127.4.0/22 45766 -103.127.8.0/21 17995 -103.127.16.0/23 134645 -103.127.18.0/24 138498 -103.127.19.0/24 138496 -103.127.20.0/22 58678 -103.127.24.0/22 9744 -103.127.28.0/22 134926 -103.127.32.0/23 134316 -103.127.34.0/24 138240 -103.127.35.0/24 138241 -103.127.36.0/22 136030 -103.127.40.0/22 63956 -103.127.44.0/22 138497 -103.127.48.0/23 138500 -103.127.50.0/24 138504 -103.127.51.0/24 24514 -103.127.52.0/22 17995 -103.127.56.0/22 138501 -103.127.60.0/23 133311 -103.127.62.0/23 63991 -103.127.64.0/22 9341 -103.127.68.0/22 138505 -103.127.72.0/23 134341 -103.127.74.0/24 133712 -103.127.76.0/23 133311 -103.127.78.0/23 138236 -103.127.80.0/24 132325 -103.127.81.0/24 136933 -103.127.82.0/23 136950 -103.127.84.0/22 131216 -103.127.90.0/24 138506 -103.127.92.0/23 138509 -103.127.94.0/23 137453 -103.127.100.0/22 135766 -103.127.104.0/23 136704 -103.127.106.0/23 138515 -103.127.108.0/22 133255 -103.127.112.0/22 138511 -103.127.116.0/23 132404 -103.127.120.0/23 133217 -103.127.122.0/24 133217 -103.127.123.0/24 58534 -103.127.124.0/22 138195 -103.127.128.0/24 138516 -103.127.130.0/23 138245 -103.127.140.0/22 135750 -103.127.144.0/23 63872 -103.127.146.0/24 138246 -103.127.147.0/24 138248 -103.127.152.0/23 138459 -103.127.154.0/24 138517 -103.127.156.0/22 134926 -103.127.160.0/23 138247 -103.127.162.0/23 132680 -103.127.164.0/23 138520 -103.127.167.0/24 138520 -103.127.168.0/23 45287 -103.127.170.0/24 58898 -103.127.171.0/24 138122 -103.127.172.0/22 138519 -103.127.176.0/23 138522 -103.127.179.0/24 138522 -103.127.180.0/22 138523 -103.127.184.0/22 136342 -103.127.188.0/22 138279 -103.127.192.0/22 131427 -103.127.196.0/22 135932 -103.127.204.0/22 135961 -103.127.212.0/22 10186 -103.127.224.0/23 134858 -103.127.226.0/24 138249 -103.127.227.0/24 134858 -103.127.232.0/22 131635 -103.127.238.0/24 209956 -103.127.239.0/24 35913 -103.127.240.0/23 136743 -103.127.243.0/24 136743 -103.127.244.0/24 139699 -103.127.245.0/24 138525 -103.127.246.0/24 139699 -103.127.247.0/24 138525 -103.127.248.0/24 24373 -103.127.249.0/24 136897 -103.127.250.0/23 138527 -103.127.252.0/24 136345 -103.127.254.0/24 138529 -103.127.255.0/24 138250 -103.129.0.0/23 23872 -103.129.2.0/24 23860 -103.129.3.0/24 134287 -103.129.4.0/22 4787 -103.129.8.0/23 133225 -103.129.12.0/24 134934 -103.129.13.0/24 135556 -103.129.14.0/23 135556 -103.129.16.0/24 138196 -103.129.20.0/22 4787 -103.129.24.0/22 4787 -103.129.28.0/22 131942 -103.129.32.0/22 132295 -103.129.36.0/22 138178 -103.129.40.0/22 4787 -103.129.45.0/24 134353 -103.129.46.0/23 134353 -103.129.48.0/22 4787 -103.129.52.0/24 59214 -103.129.56.0/22 4787 -103.129.60.0/24 138058 -103.129.61.0/24 137658 -103.129.63.0/24 7615 -103.129.64.0/22 135796 -103.129.68.0/22 4787 -103.129.72.0/23 137671 -103.129.75.0/24 137671 -103.129.76.0/22 135589 -103.129.80.0/22 45557 -103.129.84.0/22 45544 -103.129.88.0/22 135949 -103.129.92.0/22 63859 -103.129.97.0/24 17439 -103.129.98.0/24 138251 -103.129.99.0/24 133296 -103.129.104.0/22 63859 -103.129.108.0/23 137594 -103.129.110.0/24 137594 -103.129.112.0/24 137592 -103.129.113.0/24 135232 -103.129.114.0/23 138183 -103.129.116.0/22 9009 -103.129.120.0/22 138179 -103.129.128.0/22 138187 -103.129.132.0/22 138185 -103.129.136.0/22 131618 -103.129.140.0/22 58895 -103.129.147.0/24 20473 -103.129.152.0/24 138065 -103.129.154.0/24 3949 -103.129.156.0/22 138184 -103.129.168.0/22 131149 -103.129.176.0/22 9924 -103.129.184.0/22 17613 -103.129.188.0/22 38247 -103.129.192.0/23 137596 -103.129.194.0/23 137085 -103.129.197.0/24 138576 -103.129.198.0/23 138576 -103.129.200.0/22 59249 -103.129.204.0/24 137670 -103.129.205.0/24 138061 -103.129.206.0/24 132996 -103.129.207.0/24 138203 -103.129.208.0/22 138197 -103.129.212.0/22 138192 -103.129.217.0/24 23947 -103.129.220.0/22 138062 -103.129.224.0/23 138209 -103.129.226.0/24 138209 -103.129.227.0/24 1221 -103.129.228.0/23 133973 -103.129.230.0/23 132639 -103.129.232.0/22 137627 -103.129.236.0/23 138205 -103.129.238.0/24 138205 -103.129.239.0/24 63996 -103.129.244.0/22 9230 -103.129.251.0/24 23947 -103.129.252.0/22 137263 -103.130.4.0/23 138093 -103.130.8.0/23 138332 -103.130.10.0/24 138253 -103.130.11.0/24 137023 -103.130.12.0/22 132890 -103.130.20.0/22 18046 -103.130.24.0/22 18046 -103.130.31.0/24 55789 -103.130.32.0/20 18046 -103.130.48.0/22 9922 -103.130.56.0/22 135905 -103.130.60.0/22 138079 -103.130.64.0/23 138297 -103.130.68.0/23 138398 -103.130.70.0/23 134250 -103.130.72.0/22 138383 -103.130.76.0/23 132212 -103.130.88.0/22 135139 -103.130.100.0/22 131663 -103.130.104.0/22 138300 -103.130.108.0/23 138225 -103.130.110.0/24 45804 -103.130.112.0/23 138336 -103.130.114.0/24 136461 -103.130.115.0/24 134382 -103.130.124.0/22 131636 -103.130.128.0/22 63859 -103.130.136.0/22 133815 -103.130.140.0/22 138340 -103.130.148.0/22 138339 -103.130.152.0/24 132146 -103.130.153.0/24 138359 -103.130.154.0/23 18030 -103.130.156.0/24 23750 -103.130.157.0/24 55501 -103.130.158.0/23 23750 -103.130.164.0/22 63859 -103.130.168.0/22 138338 -103.130.172.0/22 138343 -103.130.176.0/22 21859 -103.130.180.0/23 38566 -103.130.182.0/23 138083 -103.130.184.0/23 131111 -103.130.188.0/22 133660 -103.130.192.0/23 131111 -103.130.196.0/23 138043 -103.130.198.0/23 138077 -103.130.201.0/24 138304 -103.130.202.0/24 134078 -103.130.203.0/24 139028 -103.130.204.0/23 138294 -103.130.206.0/24 138097 -103.130.207.0/24 138350 -103.130.208.0/22 24088 -103.130.212.0/22 135953 -103.130.216.0/22 135951 -103.130.221.0/24 135954 -103.130.222.0/23 135954 -103.130.232.0/22 7513 -103.130.240.0/22 38320 -103.130.244.0/23 134555 -103.130.252.0/22 9264 -103.131.8.0/22 132165 -103.131.12.0/24 45780 -103.131.14.0/23 45780 -103.131.16.0/22 138080 -103.131.24.0/23 136643 -103.131.26.0/24 136643 -103.131.27.0/24 134026 -103.131.29.0/24 138084 -103.131.30.0/23 138352 -103.131.32.0/23 138458 -103.131.35.0/24 138353 -103.131.40.0/23 138354 -103.131.42.0/23 138502 -103.131.44.0/22 133054 -103.131.48.0/23 9540 -103.131.50.0/23 136851 -103.131.52.0/23 138355 -103.131.60.0/24 135208 -103.131.61.0/24 138126 -103.131.62.0/23 38800 -103.131.64.0/24 63989 -103.131.68.0/22 45899 -103.131.72.0/22 45544 -103.131.76.0/23 135952 -103.131.80.0/23 138357 -103.131.83.0/24 38903 -103.131.88.0/22 133528 -103.131.92.0/24 55352 -103.131.93.0/24 134022 -103.131.94.0/24 138092 -103.131.95.0/24 17448 -103.131.104.0/23 59151 -103.131.106.0/24 138360 -103.131.107.0/24 138094 -103.131.120.0/22 9354 -103.131.140.0/22 138361 -103.131.144.0/22 138362 -103.131.152.0/23 4808 -103.131.156.0/23 10075 -103.131.159.0/24 10075 -103.131.160.0/23 138363 -103.131.162.0/24 9714 -103.131.163.0/24 134594 -103.131.164.0/24 9286 -103.131.168.0/22 4808 -103.131.172.0/22 38851 -103.131.176.0/23 137995 -103.131.178.0/24 137995 -103.131.179.0/24 136237 -103.131.180.0/23 137023 -103.131.183.0/24 54470 -103.131.184.0/22 138364 -103.131.188.0/24 135134 -103.131.189.0/24 200615 -103.131.190.0/23 200615 -103.131.192.0/24 138916 -103.131.193.0/24 133218 -103.131.194.0/23 2515 -103.131.200.0/24 138156 -103.131.201.0/24 136527 -103.131.202.0/23 136527 -103.131.204.0/22 135607 -103.131.208.0/22 138367 -103.131.212.0/23 138368 -103.131.215.0/24 138368 -103.131.216.0/22 63488 -103.131.220.0/24 138372 -103.131.221.0/24 138379 -103.131.222.0/24 134724 -103.131.223.0/24 18064 -103.131.232.0/22 9910 -103.131.236.0/24 134655 -103.131.244.0/23 134655 -103.131.246.0/24 134655 -103.131.247.0/24 131746 -103.131.252.0/22 131659 -103.132.0.0/22 138276 -103.132.4.0/22 138526 -103.132.8.0/22 138528 -103.132.16.0/23 55947 -103.132.18.0/23 138125 -103.132.24.0/22 138252 -103.132.28.0/23 138311 -103.132.30.0/23 138264 -103.132.32.0/22 10157 -103.132.36.0/22 17602 -103.132.44.0/22 131675 -103.132.48.0/22 138532 -103.132.52.0/22 138123 -103.132.56.0/22 135726 -103.132.84.0/23 133868 -103.132.88.0/22 138534 -103.132.92.0/22 138536 -103.132.96.0/24 140078 -103.132.98.0/23 58469 -103.132.124.0/24 138124 -103.132.125.0/24 138540 -103.132.126.0/23 138332 -103.132.128.0/22 133296 -103.132.136.0/22 138539 -103.132.144.0/22 17917 -103.132.148.0/22 138798 -103.132.152.0/24 138316 -103.132.154.0/23 137485 -103.132.160.0/23 134121 -103.132.163.0/24 134823 -103.132.164.0/22 55933 -103.132.168.0/24 138543 -103.132.170.0/24 45804 -103.132.171.0/24 135735 -103.132.172.0/22 138272 -103.132.176.0/22 138541 -103.132.180.0/22 138544 -103.132.184.0/24 138550 -103.132.185.0/24 137059 -103.132.186.0/24 58714 -103.132.187.0/24 138551 -103.132.188.0/22 137761 -103.132.192.0/24 138552 -103.132.196.0/22 138317 -103.132.203.0/24 138263 -103.132.204.0/23 137144 -103.132.207.0/24 138274 -103.132.212.0/23 137759 -103.132.216.0/22 138557 -103.132.220.0/22 138549 -103.132.224.0/23 138556 -103.132.226.0/24 138556 -103.132.228.0/24 138262 -103.132.230.0/23 138127 -103.132.232.0/24 133451 -103.132.233.0/24 138318 -103.132.234.0/23 138538 -103.132.236.0/24 138129 -103.132.240.0/23 136327 -103.132.242.0/24 45117 -103.132.244.0/23 138311 -103.132.246.0/23 134392 -103.132.248.0/22 135413 -103.132.252.0/22 138559 -103.133.0.0/24 136645 -103.133.1.0/24 138562 -103.133.2.0/24 138563 -103.133.4.0/23 138561 -103.133.6.0/24 138561 -103.133.8.0/22 134937 -103.133.17.0/24 38145 -103.133.20.0/23 136868 -103.133.22.0/24 138565 -103.133.23.0/24 45527 -103.133.24.0/22 138130 -103.133.28.0/23 138267 -103.133.30.0/23 58678 -103.133.32.0/22 138566 -103.133.36.0/24 45325 -103.133.37.0/24 135851 -103.133.38.0/24 133296 -103.133.39.0/24 7545 -103.133.44.0/22 131637 -103.133.48.0/22 134937 -103.133.52.0/22 138568 -103.133.56.0/24 138131 -103.133.57.0/24 138275 -103.133.58.0/23 134294 -103.133.60.0/24 138134 -103.133.62.0/23 138134 -103.133.64.0/23 138520 -103.133.66.0/24 138520 -103.133.67.0/24 17665 -103.133.72.0/23 45753 -103.133.74.0/24 45753 -103.133.75.0/24 137040 -103.133.76.0/22 138567 -103.133.80.0/23 138569 -103.133.82.0/23 59381 -103.133.84.0/24 35330 -103.133.88.0/22 138570 -103.133.92.0/24 138571 -103.133.93.0/24 21859 -103.133.94.0/23 138571 -103.133.96.0/22 138572 -103.133.100.0/22 55305 -103.133.104.0/21 135905 -103.133.112.0/24 134036 -103.133.113.0/24 138310 -103.133.114.0/23 138135 -103.133.118.0/23 7474 -103.133.120.0/22 138277 -103.133.124.0/22 138278 -103.133.132.0/23 136412 -103.133.134.0/23 138574 -103.133.136.0/23 64021 -103.133.138.0/23 134548 -103.133.140.0/23 133866 -103.133.142.0/23 138575 -103.133.144.0/22 138139 -103.133.148.0/22 38776 -103.133.152.0/24 131622 -103.133.153.0/24 138145 -103.133.155.0/24 138145 -103.133.160.0/24 138136 -103.133.162.0/23 59188 -103.133.164.0/22 138578 -103.133.172.0/22 138582 -103.133.176.0/22 138538 -103.133.180.0/24 133037 -103.133.181.0/24 4826 -103.133.188.0/23 138323 -103.133.201.0/24 59382 -103.133.202.0/24 59382 -103.133.204.0/23 134371 -103.133.206.0/24 134371 -103.133.208.0/24 138585 -103.133.210.0/23 138585 -103.133.212.0/24 138583 -103.133.213.0/24 133191 -103.133.214.0/23 133643 -103.133.216.0/22 134715 -103.133.222.0/23 137331 -103.133.224.0/22 63731 -103.133.228.0/22 138520 -103.133.236.0/23 133191 -103.133.238.0/23 132808 -103.133.240.0/23 45996 -103.133.242.0/24 135300 -103.133.248.0/24 45194 -103.133.252.0/23 138587 -103.133.254.0/24 138587 -103.134.0.0/22 138590 -103.134.4.0/22 138309 -103.134.8.0/22 137151 -103.134.12.0/24 132146 -103.134.13.0/24 18188 -103.134.14.0/23 138592 -103.134.16.0/24 138142 -103.134.17.0/24 138144 -103.134.18.0/23 138141 -103.134.20.0/22 136000 -103.134.24.0/22 63526 -103.134.28.0/23 138596 -103.134.30.0/24 135000 -103.134.31.0/24 65553 -103.134.32.0/22 134274 -103.134.36.0/23 136003 -103.134.40.0/22 136022 -103.134.44.0/22 138315 -103.134.48.0/23 132829 -103.134.52.0/24 138613 -103.134.55.0/24 138051 -103.134.56.0/22 138600 -103.134.60.0/22 138701 -103.134.64.0/24 38447 -103.134.66.0/23 45312 -103.134.68.0/22 138594 -103.134.72.0/24 138605 -103.134.73.0/24 131720 -103.134.77.0/24 138143 -103.134.78.0/24 58401 -103.134.79.0/24 138143 -103.134.84.0/24 138602 -103.134.85.0/24 139943 -103.134.86.0/24 45485 -103.134.87.0/24 58369 -103.134.88.0/22 138601 -103.134.92.0/22 138606 -103.134.96.0/22 138235 -103.134.100.0/22 134308 -103.134.104.0/23 63497 -103.134.108.0/23 135715 -103.134.110.0/24 134009 -103.134.111.0/24 17665 -103.134.112.0/23 138313 -103.134.116.0/23 133973 -103.134.118.0/23 132831 -103.134.120.0/22 131645 -103.134.124.0/23 138612 -103.134.126.0/23 137453 -103.134.130.0/23 45194 -103.134.132.0/23 138778 -103.134.134.0/23 58971 -103.134.136.0/22 8100 -103.134.140.0/23 138607 -103.134.142.0/23 135391 -103.134.144.0/23 18013 -103.134.148.0/22 138611 -103.134.152.0/23 138608 -103.134.154.0/24 138608 -103.134.156.0/22 138710 -103.134.160.0/23 136284 -103.134.163.0/24 136284 -103.134.167.0/24 45194 -103.134.168.0/22 138614 -103.134.172.0/22 138615 -103.134.176.0/22 138629 -103.134.180.0/23 135758 -103.134.182.0/23 133627 -103.134.184.0/24 138840 -103.134.192.0/22 132129 -103.134.200.0/22 138619 -103.134.204.0/22 136480 -103.134.208.0/22 132216 -103.134.212.0/24 136103 -103.134.213.0/24 138807 -103.134.214.0/23 136103 -103.134.216.0/22 138620 -103.134.220.0/22 138810 -103.134.224.0/24 138952 -103.134.225.0/24 138624 -103.134.226.0/23 138622 -103.134.236.0/22 138625 -103.134.240.0/23 138623 -103.134.242.0/24 138623 -103.134.244.0/22 131773 -103.134.248.0/23 132964 -103.134.250.0/23 137650 -103.134.252.0/23 138786 -103.134.254.0/23 138621 -103.135.0.0/21 38320 -103.135.8.0/22 138781 -103.135.12.0/24 138922 -103.135.13.0/24 38001 -103.135.14.0/23 138805 -103.135.16.0/22 138145 -103.135.20.0/24 10103 -103.135.21.0/24 131633 -103.135.22.0/24 131633 -103.135.24.0/22 38320 -103.135.28.0/24 135962 -103.135.32.0/22 40065 -103.135.36.0/24 17439 -103.135.37.0/24 138634 -103.135.38.0/23 133469 -103.135.40.0/24 132111 -103.135.43.0/24 139291 -103.135.44.0/23 138640 -103.135.46.0/23 134032 -103.135.48.0/22 38320 -103.135.56.0/22 35280 -103.135.60.0/22 138787 -103.135.69.0/24 138812 -103.135.70.0/24 138788 -103.135.71.0/24 136398 -103.135.72.0/22 46026 -103.135.76.0/22 138636 -103.135.80.0/23 4837 -103.135.84.0/22 138637 -103.135.88.0/23 138638 -103.135.90.0/24 58717 -103.135.94.0/24 45658 -103.135.95.0/24 21788 -103.135.96.0/23 45658 -103.135.100.0/23 4842 -103.135.102.0/24 21859 -103.135.103.0/24 40065 -103.135.104.0/23 134829 -103.135.106.0/24 138642 -103.135.107.0/24 138639 -103.135.108.0/22 59238 -103.135.112.0/22 138643 -103.135.116.0/22 131618 -103.135.128.0/23 55720 -103.135.130.0/23 133037 -103.135.132.0/23 138649 -103.135.134.0/23 58689 -103.135.136.0/23 138651 -103.135.138.0/23 137453 -103.135.140.0/22 138645 -103.135.144.0/24 18013 -103.135.160.0/24 4808 -103.135.161.0/24 4837 -103.135.168.0/22 137132 -103.135.172.0/24 135124 -103.135.175.0/24 135124 -103.135.180.0/22 138806 -103.135.188.0/24 138661 -103.135.189.0/24 138782 -103.135.190.0/23 137139 -103.135.192.0/24 137746 -103.135.196.0/22 137745 -103.135.200.0/22 138789 -103.135.204.0/24 64050 -103.135.207.0/24 64050 -103.135.208.0/22 138658 -103.135.216.0/24 135405 -103.135.224.0/22 138871 -103.135.230.0/24 138708 -103.135.231.0/24 138653 -103.135.232.0/22 138659 -103.135.236.0/24 139201 -103.135.240.0/22 137263 -103.135.244.0/24 138652 -103.135.245.0/24 132531 -103.135.246.0/23 138662 -103.135.248.0/22 54574 -103.135.252.0/22 59382 -103.136.0.0/22 138665 -103.136.4.0/22 38320 -103.136.8.0/24 138098 -103.136.9.0/24 138859 -103.136.10.0/24 17477 -103.136.12.0/24 138821 -103.136.16.0/22 58820 -103.136.20.0/23 132080 -103.136.22.0/23 138666 -103.136.24.0/22 38750 -103.136.31.0/24 131765 -103.136.32.0/24 132824 -103.136.34.0/24 132824 -103.136.36.0/22 138800 -103.136.40.0/23 139884 -103.136.42.0/24 139884 -103.136.43.0/24 44812 -103.136.44.0/23 138783 -103.136.46.0/24 138783 -103.136.48.0/22 138670 -103.136.52.0/23 56172 -103.136.54.0/23 132840 -103.136.60.0/23 24168 -103.136.62.0/23 138697 -103.136.64.0/24 132770 -103.136.68.0/24 30938 -103.136.69.0/24 9441 -103.136.70.0/23 9441 -103.136.72.0/22 138671 -103.136.76.0/23 138808 -103.136.80.0/24 138813 -103.136.82.0/23 137678 -103.136.84.0/24 138705 -103.136.86.0/24 138680 -103.136.87.0/24 138696 -103.136.88.0/22 138706 -103.136.96.0/23 138676 -103.136.98.0/23 9441 -103.136.108.0/22 134687 -103.136.112.0/23 138677 -103.136.114.0/23 135964 -103.136.116.0/24 138682 -103.136.118.0/23 138682 -103.136.120.0/24 4826 -103.136.121.0/24 138683 -103.136.122.0/23 135168 -103.136.124.0/23 136743 -103.136.126.0/24 136743 -103.136.132.0/22 138684 -103.136.136.0/23 136336 -103.136.138.0/23 55376 -103.136.141.0/24 138908 -103.136.144.0/23 23858 -103.136.147.0/24 23858 -103.136.150.0/23 46261 -103.136.152.0/22 23820 -103.136.156.0/23 138688 -103.136.158.0/23 55492 -103.136.162.0/24 3 -103.136.163.0/24 138814 -103.136.164.0/23 138689 -103.136.168.0/24 138616 -103.136.169.0/24 138496 -103.136.170.0/23 58369 -103.136.172.0/22 134006 -103.136.176.0/22 138690 -103.136.180.0/23 138496 -103.136.182.0/24 138816 -103.136.184.0/24 137001 -103.136.185.0/24 138576 -103.136.186.0/23 138576 -103.136.188.0/24 133311 -103.136.189.0/24 138693 -103.136.192.0/22 59371 -103.136.200.0/22 138692 -103.136.204.0/22 138694 -103.136.208.0/24 45801 -103.136.210.0/23 134823 -103.136.212.0/24 209484 -103.136.214.0/23 1221 -103.136.216.0/23 133409 -103.136.218.0/24 138784 -103.136.219.0/24 138817 -103.136.220.0/23 138699 -103.136.226.0/23 138902 -103.136.228.0/23 135965 -103.136.240.0/24 138777 -103.136.241.0/24 138825 -103.136.246.0/23 137584 -103.136.248.0/22 138915 -103.136.252.0/23 24190 -103.136.254.0/24 138907 -103.136.255.0/24 139583 -103.137.2.0/24 138717 -103.137.3.0/24 138775 -103.137.4.0/24 18403 -103.137.6.0/23 138912 -103.137.8.0/23 138824 -103.137.10.0/24 137880 -103.137.11.0/24 138776 -103.137.12.0/22 137409 -103.137.16.0/23 138711 -103.137.18.0/24 138906 -103.137.19.0/24 138788 -103.137.20.0/23 38710 -103.137.22.0/23 134823 -103.137.24.0/22 18053 -103.137.28.0/23 135239 -103.137.32.0/23 138811 -103.137.34.0/23 136038 -103.137.36.0/24 138743 -103.137.37.0/24 135471 -103.137.38.0/23 138822 -103.137.40.0/24 138917 -103.137.41.0/24 138921 -103.137.48.0/23 138779 -103.137.50.0/24 137109 -103.137.52.0/24 24323 -103.137.54.0/24 138924 -103.137.56.0/24 133480 -103.137.60.0/24 4538 -103.137.61.0/24 138747 -103.137.62.0/23 131642 -103.137.64.0/23 133115 -103.137.66.0/24 138927 -103.137.68.0/22 137561 -103.137.74.0/24 137453 -103.137.75.0/24 134599 -103.137.76.0/22 18013 -103.137.80.0/24 137403 -103.137.81.0/24 134812 -103.137.82.0/23 138828 -103.137.84.0/23 138734 -103.137.86.0/24 138933 -103.137.87.0/24 138745 -103.137.88.0/22 138934 -103.137.92.0/22 136334 -103.137.98.0/23 10103 -103.137.106.0/23 45687 -103.137.108.0/23 138023 -103.137.110.0/23 138829 -103.137.112.0/23 138712 -103.137.116.0/24 138940 -103.137.117.0/24 138941 -103.137.119.0/24 133480 -103.137.126.0/23 138830 -103.137.128.0/24 138945 -103.137.129.0/24 135647 -103.137.132.0/22 138943 -103.137.138.0/24 138714 -103.137.139.0/24 138853 -103.137.140.0/23 138837 -103.137.142.0/23 138944 -103.137.146.0/23 9875 -103.137.148.0/24 58898 -103.137.150.0/24 138994 -103.137.152.0/22 138715 -103.137.156.0/24 23999 -103.137.160.0/23 138953 -103.137.162.0/23 138954 -103.137.165.0/24 17439 -103.137.169.0/24 135719 -103.137.170.0/23 135719 -103.137.172.0/24 138749 -103.137.173.0/24 138957 -103.137.174.0/23 133255 -103.137.176.0/24 138836 -103.137.178.0/23 138961 -103.137.184.0/23 18403 -103.137.186.0/23 135969 -103.137.190.0/23 138962 -103.137.192.0/24 138716 -103.137.194.0/23 134006 -103.137.198.0/23 59164 -103.137.200.0/22 138964 -103.137.204.0/22 138965 -103.137.210.0/24 132356 -103.137.211.0/24 134966 -103.137.212.0/22 134121 -103.137.218.0/24 132972 -103.137.219.0/24 138719 -103.137.232.0/22 131949 -103.137.240.0/22 131945 -103.137.245.0/24 138973 -103.137.246.0/23 131642 -103.137.248.0/22 134283 -103.137.252.0/24 138977 -103.137.253.0/24 138976 -103.137.254.0/23 138833 -103.138.0.0/23 138752 -103.138.4.0/23 133692 -103.138.6.0/23 132518 -103.138.8.0/23 58762 -103.138.10.0/24 139946 -103.138.12.0/24 134176 -103.138.13.0/24 134705 -103.138.14.0/23 138839 -103.138.22.0/24 135700 -103.138.23.0/24 138241 -103.138.24.0/22 138981 -103.138.28.0/24 135239 -103.138.30.0/23 138983 -103.138.34.0/23 138988 -103.138.36.0/22 139084 -103.138.40.0/22 136119 -103.138.44.0/24 138720 -103.138.46.0/23 136119 -103.138.48.0/23 136119 -103.138.50.0/24 138985 -103.138.51.0/24 38264 -103.138.52.0/24 137206 -103.138.53.0/24 41378 -103.138.54.0/23 9875 -103.138.56.0/23 9875 -103.138.58.0/23 136111 -103.138.60.0/23 138733 -103.138.62.0/23 138843 -103.138.64.0/22 138996 -103.138.68.0/23 138842 -103.138.70.0/23 138884 -103.138.72.0/23 138997 -103.138.74.0/24 41378 -103.138.76.0/24 138845 -103.138.77.0/24 136439 -103.138.78.0/24 133249 -103.138.79.0/24 134042 -103.138.80.0/22 133441 -103.138.84.0/23 138999 -103.138.86.0/24 136557 -103.138.87.0/24 139000 -103.138.88.0/23 45538 -103.138.90.0/23 135905 -103.138.92.0/23 131655 -103.138.94.0/24 139002 -103.138.96.0/24 138246 -103.138.100.0/22 10021 -103.138.104.0/24 138726 -103.138.105.0/24 45117 -103.138.106.0/24 17408 -103.138.108.0/23 135905 -103.138.110.0/23 135970 -103.138.112.0/22 135942 -103.138.116.0/23 139417 -103.138.118.0/23 132690 -103.138.120.0/23 139004 -103.138.123.0/24 55550 -103.138.124.0/23 139012 -103.138.127.0/24 138851 -103.138.128.0/23 139006 -103.138.130.0/24 24511 -103.138.131.0/24 139005 -103.138.132.0/23 138785 -103.138.136.0/22 138735 -103.138.142.0/24 139011 -103.138.143.0/24 138850 -103.138.144.0/23 139008 -103.138.146.0/23 139042 -103.138.148.0/24 38197 -103.138.149.0/24 9957 -103.138.150.0/23 139016 -103.138.152.0/23 139020 -103.138.154.0/24 136323 -103.138.155.0/24 139025 -103.138.156.0/23 135363 -103.138.158.0/24 139924 -103.138.162.0/23 139024 -103.138.164.0/23 139026 -103.138.168.0/22 139027 -103.138.172.0/24 139029 -103.138.173.0/24 135882 -103.138.174.0/23 139030 -103.138.176.0/23 4618 -103.138.178.0/24 4618 -103.138.180.0/24 139032 -103.138.181.0/24 28959 -103.138.182.0/23 139033 -103.138.184.0/24 135428 -103.138.185.0/24 138772 -103.138.186.0/23 139034 -103.138.188.0/24 139035 -103.138.190.0/23 139036 -103.138.192.0/23 136379 -103.138.194.0/23 131618 -103.138.196.0/22 138727 -103.138.201.0/24 139037 -103.138.202.0/23 132169 -103.138.204.0/23 138838 -103.138.206.0/23 138852 -103.138.211.0/24 133241 -103.138.212.0/23 139039 -103.138.214.0/24 139039 -103.138.215.0/24 137532 -103.138.216.0/23 138856 -103.138.218.0/23 138854 -103.138.222.0/23 139043 -103.138.224.0/24 139607 -103.138.225.0/24 139044 -103.138.228.0/24 9871 -103.138.230.0/24 46039 -103.138.231.0/24 139045 -103.138.232.0/23 138729 -103.138.234.0/23 133242 -103.138.236.0/23 135217 -103.138.238.0/24 138728 -103.138.239.0/24 137155 -103.138.240.0/23 45177 -103.138.244.0/23 139049 -103.138.246.0/23 139057 -103.138.250.0/24 139053 -103.138.252.0/23 139051 -103.138.254.0/23 131644 -103.139.0.0/22 139021 -103.139.6.0/24 10123 -103.139.7.0/24 133295 -103.139.8.0/23 135413 -103.139.10.0/23 55699 -103.139.12.0/23 135971 -103.139.14.0/23 135972 -103.139.16.0/23 139056 -103.139.18.0/23 139052 -103.139.20.0/23 139060 -103.139.24.0/24 132655 -103.139.25.0/24 138878 -103.139.26.0/23 138860 -103.139.30.0/23 55699 -103.139.32.0/23 55699 -103.139.34.0/23 138731 -103.139.36.0/23 55699 -103.139.38.0/24 136804 -103.139.39.0/24 139062 -103.139.42.0/23 18403 -103.139.44.0/23 135905 -103.139.48.0/22 45671 -103.139.56.0/24 45184 -103.139.58.0/24 134286 -103.139.60.0/23 135772 -103.139.62.0/24 139067 -103.139.63.0/24 139069 -103.139.66.0/23 138760 -103.139.68.0/23 135722 -103.139.70.0/23 138764 -103.139.72.0/23 10122 -103.139.74.0/23 17439 -103.139.76.0/23 138848 -103.139.78.0/24 136557 -103.139.80.0/24 137827 -103.139.81.0/24 138767 -103.139.82.0/23 23954 -103.139.84.0/24 17844 -103.139.85.0/24 17580 -103.139.88.0/23 137145 -103.139.91.0/24 55555 -103.139.92.0/23 131652 -103.139.94.0/23 138858 -103.139.98.0/23 138862 -103.139.100.0/23 139071 -103.139.102.0/23 18403 -103.139.104.0/23 45177 -103.139.106.0/24 63780 -103.139.107.0/24 56030 -103.139.108.0/24 139082 -103.139.109.0/24 45259 -103.139.110.0/24 139076 -103.139.111.0/24 136897 -103.139.112.0/24 138893 -103.139.113.0/24 134548 -103.139.116.0/24 138736 -103.139.118.0/23 17878 -103.139.120.0/24 135636 -103.139.122.0/24 45773 -103.139.128.0/23 137098 -103.139.130.0/23 6461 -103.139.132.0/24 134841 -103.139.138.0/23 139191 -103.139.140.0/23 139087 -103.139.142.0/24 138400 -103.139.144.0/23 139192 -103.139.146.0/23 139089 -103.139.152.0/24 133372 -103.139.154.0/23 135976 -103.139.156.0/22 139195 -103.139.160.0/23 135974 -103.139.163.0/24 58495 -103.139.164.0/23 139197 -103.139.166.0/23 138863 -103.139.170.0/23 138737 -103.139.172.0/23 139090 -103.139.175.0/24 139218 -103.139.178.0/23 137871 -103.139.180.0/24 132934 -103.139.181.0/24 138844 -103.139.182.0/24 45352 -103.139.184.0/23 64073 -103.139.186.0/24 138864 -103.139.187.0/24 138739 -103.139.188.0/23 138901 -103.139.190.0/23 138768 -103.139.194.0/24 137826 -103.139.195.0/24 134894 -103.139.196.0/23 134371 -103.139.198.0/23 135293 -103.139.200.0/24 45187 -103.139.201.0/24 55720 -103.139.202.0/23 135905 -103.139.206.0/24 139206 -103.139.208.0/23 136480 -103.139.210.0/23 24222 -103.139.212.0/23 4847 -103.139.214.0/23 17616 -103.139.216.0/23 38681 -103.139.218.0/24 137549 -103.139.219.0/24 137653 -103.139.220.0/23 138741 -103.139.223.0/24 134868 -103.139.224.0/23 134326 -103.139.228.0/23 7496 -103.139.230.0/23 139214 -103.139.232.0/24 132972 -103.139.234.0/23 139215 -103.139.236.0/24 139217 -103.139.238.0/23 63779 -103.139.242.0/23 138798 -103.139.244.0/23 138865 -103.139.246.0/23 135781 -103.139.248.0/24 139213 -103.139.249.0/24 139221 -103.139.252.0/24 139222 -103.139.253.0/24 139223 -103.140.0.0/23 139256 -103.140.2.0/24 137655 -103.140.3.0/24 139225 -103.140.4.0/23 135977 -103.140.9.0/24 138570 -103.140.10.0/23 134356 -103.140.12.0/23 17605 -103.140.18.0/23 138755 -103.140.22.0/24 138897 -103.140.23.0/24 134290 -103.140.24.0/23 139227 -103.140.26.0/23 133001 -103.140.28.0/23 22697 -103.140.30.0/23 138655 -103.140.32.0/24 131476 -103.140.34.0/23 58369 -103.140.37.0/24 139234 -103.140.38.0/23 135978 -103.140.42.0/23 135980 -103.140.44.0/23 45382 -103.140.50.0/23 138756 -103.140.53.0/24 139237 -103.140.54.0/23 138868 -103.140.56.0/23 137839 -103.140.60.0/24 132143 -103.140.61.0/24 139241 -103.140.62.0/23 139239 -103.140.64.0/23 139236 -103.140.66.0/23 9875 -103.140.68.0/23 133041 -103.140.70.0/23 138645 -103.140.72.0/24 137098 -103.140.73.0/24 138740 -103.140.74.0/23 138891 -103.140.76.0/23 138874 -103.140.78.0/23 138873 -103.140.80.0/23 9875 -103.140.82.0/23 132290 -103.140.85.0/24 139246 -103.140.86.0/23 139245 -103.140.88.0/23 9875 -103.140.90.0/23 138876 -103.140.94.0/23 139230 -103.140.97.0/24 136436 -103.140.98.0/23 139251 -103.140.102.0/24 139253 -103.140.104.0/23 138875 -103.140.106.0/23 135239 -103.140.108.0/23 58369 -103.140.112.0/23 139255 -103.140.114.0/23 139254 -103.140.116.0/23 58768 -103.140.118.0/23 17676 -103.140.122.0/24 139257 -103.140.124.0/23 134964 -103.140.126.0/23 55933 -103.140.128.0/23 138758 -103.140.132.0/23 139261 -103.140.134.0/24 133480 -103.140.135.0/24 138261 -103.140.136.0/23 64271 -103.140.138.0/23 133936 -103.140.142.0/24 4 -103.140.143.0/24 135642 -103.140.148.0/24 136391 -103.140.149.0/24 139262 -103.140.150.0/23 139265 -103.140.152.0/23 139266 -103.140.155.0/24 17483 -103.140.156.0/23 136744 -103.140.158.0/23 139276 -103.140.160.0/24 139269 -103.140.161.0/24 139271 -103.140.162.0/24 139273 -103.140.163.0/24 24558 -103.140.164.0/23 62707 -103.140.166.0/23 139270 -103.140.169.0/24 135383 -103.140.174.0/23 138763 -103.140.176.0/23 139280 -103.140.180.0/23 139278 -103.140.182.0/23 133702 -103.140.184.0/24 138880 -103.140.186.0/23 206804 -103.140.188.0/23 138881 -103.140.190.0/23 138761 -103.140.194.0/23 23338 -103.140.196.0/24 139695 -103.140.197.0/24 139694 -103.140.198.0/24 138945 -103.140.199.0/24 134656 -103.140.202.0/23 139284 -103.140.204.0/23 139282 -103.140.206.0/23 9341 -103.140.211.0/24 139281 -103.140.212.0/23 139283 -103.140.214.0/24 139290 -103.140.215.0/24 139288 -103.140.216.0/23 139292 -103.140.218.0/24 139289 -103.140.219.0/24 134026 -103.140.220.0/24 133441 -103.140.222.0/24 139287 -103.140.224.0/23 4800 -103.140.226.0/23 23930 -103.140.228.0/23 138538 -103.140.230.0/24 59185 -103.140.231.0/24 133309 -103.140.234.0/23 134371 -103.140.236.0/23 139285 -103.140.238.0/23 139293 -103.140.240.0/23 131950 -103.140.242.0/23 40065 -103.140.244.0/23 17483 -103.140.246.0/24 139297 -103.140.247.0/24 132513 -103.140.248.0/23 135932 -103.140.250.0/23 135905 -103.140.252.0/24 138759 -103.140.253.0/24 139304 -103.140.254.0/23 138801 -103.141.0.0/23 139330 -103.141.2.0/23 139300 -103.141.4.0/24 139302 -103.141.5.0/24 136969 -103.141.6.0/23 139301 -103.141.8.0/24 136262 -103.141.9.0/24 45326 -103.141.10.0/23 4808 -103.141.12.0/23 139303 -103.141.16.0/23 139307 -103.141.18.0/23 9693 -103.141.20.0/23 138887 -103.141.24.0/23 16089 -103.141.26.0/23 139313 -103.141.29.0/24 139311 -103.141.36.0/24 207615 -103.141.37.0/24 209218 -103.141.38.0/23 4800 -103.141.40.0/23 138894 -103.141.42.0/24 139320 -103.141.43.0/24 132872 -103.141.44.0/23 134359 -103.141.46.0/23 9341 -103.141.50.0/24 133693 -103.141.60.0/24 138014 -103.141.61.0/24 133802 -103.141.62.0/23 138895 -103.141.64.0/23 139325 -103.141.66.0/24 24382 -103.141.70.0/23 139326 -103.141.72.0/23 139327 -103.141.74.0/23 138892 -103.141.76.0/24 135383 -103.141.78.0/23 139331 -103.141.80.0/22 131645 -103.141.84.0/23 132111 -103.141.88.0/23 132999 -103.141.92.0/23 132757 -103.141.98.0/24 24082 -103.141.99.0/24 135693 -103.141.102.0/23 45177 -103.141.104.0/23 9341 -103.141.108.0/23 138886 -103.141.114.0/24 135287 -103.141.115.0/24 134943 -103.141.116.0/23 138798 -103.141.118.0/23 139340 -103.141.120.0/23 139339 -103.141.122.0/24 139333 -103.141.123.0/24 139338 -103.141.124.0/23 137510 -103.141.126.0/23 137617 -103.141.130.0/23 136933 -103.141.132.0/24 139338 -103.141.133.0/24 137655 -103.141.135.0/24 139343 -103.141.136.0/22 135905 -103.141.140.0/23 18403 -103.141.142.0/23 135981 -103.141.144.0/23 18403 -103.141.146.0/23 139345 -103.141.148.0/24 59276 -103.141.149.0/24 138890 -103.141.154.0/24 136835 -103.141.155.0/24 7545 -103.141.156.0/23 138877 -103.141.158.0/23 139351 -103.141.160.0/23 135477 -103.141.162.0/23 138896 -103.141.164.0/23 131178 -103.141.166.0/23 134924 -103.141.168.0/23 135714 -103.141.172.0/24 139682 -103.141.174.0/23 58689 -103.141.176.0/23 63731 -103.141.179.0/24 139357 -103.141.180.0/23 9341 -103.141.182.0/23 139358 -103.141.184.0/24 132347 -103.141.185.0/24 133424 -103.141.188.0/23 9341 -103.141.190.0/23 55720 -103.141.192.0/23 136644 -103.141.194.0/24 139362 -103.141.196.0/23 139361 -103.141.198.0/24 139463 -103.141.199.0/24 4764 -103.141.200.0/23 139461 -103.141.202.0/23 139464 -103.141.204.0/23 139467 -103.141.208.0/24 139473 -103.141.209.0/24 138693 -103.141.212.0/24 136529 -103.141.214.0/23 139470 -103.141.218.0/23 136302 -103.141.220.0/23 23338 -103.141.222.0/23 139363 -103.141.224.0/23 26484 -103.141.226.0/24 64073 -103.141.227.0/24 138749 -103.141.228.0/24 137383 -103.141.229.0/24 24435 -103.141.230.0/23 139366 -103.141.232.0/24 138204 -103.141.233.0/24 138455 -103.141.234.0/24 139364 -103.141.235.0/24 136347 -103.141.238.0/23 139367 -103.141.240.0/23 134914 -103.141.244.0/23 139365 -103.141.246.0/24 23860 -103.141.248.0/24 139581 -103.141.249.0/24 55803 -103.141.250.0/23 139579 -103.141.252.0/24 17439 -103.141.253.0/24 138845 -103.141.254.0/23 131769 -103.142.2.0/24 139582 -103.142.3.0/24 1221 -103.142.4.0/24 137354 -103.142.5.0/24 139588 -103.142.6.0/23 18268 -103.142.10.0/23 136285 -103.142.12.0/23 131952 -103.142.14.0/23 45709 -103.142.16.0/23 133725 -103.142.18.0/24 23872 -103.142.21.0/24 139956 -103.142.22.0/23 135982 -103.142.24.0/22 135951 -103.142.30.0/23 21788 -103.142.32.0/24 139592 -103.142.33.0/24 139371 -103.142.34.0/23 139590 -103.142.36.0/23 23338 -103.142.39.0/24 139595 -103.142.40.0/23 139597 -103.142.42.0/23 131645 -103.142.44.0/23 131645 -103.142.48.0/24 135584 -103.142.49.0/24 139599 -103.142.50.0/24 139032 -103.142.52.0/24 7474 -103.142.53.0/24 137085 -103.142.54.0/23 139605 -103.142.56.0/23 4800 -103.142.60.0/23 139369 -103.142.62.0/24 139372 -103.142.66.0/23 139601 -103.142.68.0/23 139600 -103.142.70.0/23 139602 -103.142.72.0/23 45536 -103.142.74.0/23 137549 -103.142.76.0/24 138907 -103.142.77.0/24 139480 -103.142.78.0/23 135985 -103.142.80.0/23 139604 -103.142.84.0/23 23338 -103.142.92.0/23 139373 -103.142.94.0/23 139370 -103.142.96.0/23 56006 -103.142.98.0/23 139609 -103.142.102.0/23 55933 -103.142.104.0/23 38608 -103.142.107.0/24 45194 -103.142.108.0/24 18002 -103.142.109.0/24 133400 -103.142.110.0/23 38758 -103.142.112.0/23 139477 -103.142.114.0/23 139524 -103.142.116.0/23 139522 -103.142.119.0/24 139614 -103.142.120.0/23 136902 -103.142.124.0/23 131957 -103.142.126.0/24 139611 -103.142.130.0/23 134705 -103.142.132.0/23 17511 -103.142.134.0/23 137172 -103.142.136.0/23 135986 -103.142.138.0/23 63731 -103.142.140.0/24 23470 -103.142.142.0/23 45532 -103.142.144.0/23 139620 -103.142.148.0/24 64073 -103.142.149.0/24 139478 -103.142.158.0/23 139623 -103.142.160.0/24 138360 -103.142.161.0/24 139479 -103.142.162.0/23 139521 -103.142.164.0/23 139523 -103.142.166.0/24 59195 -103.142.168.0/24 137814 -103.142.169.0/24 139631 -103.142.170.0/23 139622 -103.142.172.0/23 137969 -103.142.178.0/23 4800 -103.142.182.0/23 139401 -103.142.184.0/24 139632 -103.142.188.0/23 139627 -103.142.190.0/23 139635 -103.142.192.0/24 134813 -103.142.193.0/24 139629 -103.142.194.0/23 139377 -103.142.196.0/23 136739 -103.142.198.0/23 138296 -103.142.200.0/23 139379 -103.142.202.0/23 139378 -103.142.204.0/23 136746 -103.142.208.0/23 139628 -103.142.210.0/23 139387 -103.142.212.0/23 139651 -103.142.214.0/23 45312 -103.142.218.0/23 135932 -103.142.223.0/24 393262 -103.142.224.0/24 139384 -103.142.226.0/23 139633 -103.142.231.0/24 136785 -103.142.240.0/23 139382 -103.142.242.0/24 139380 -103.142.244.0/23 138995 -103.142.246.0/23 23338 -103.142.252.0/23 56308 -103.142.254.0/23 45305 -103.143.0.0/23 139643 -103.143.2.0/24 139385 -103.143.3.0/24 139483 -103.143.6.0/23 139484 -103.143.8.0/23 138296 -103.143.12.0/23 136933 -103.143.14.0/24 139646 -103.143.20.0/24 139405 -103.143.26.0/23 23338 -103.143.30.0/24 136265 -103.143.32.0/23 139648 -103.143.34.0/23 139647 -103.143.36.0/24 139486 -103.143.38.0/23 136373 -103.143.40.0/23 139650 -103.143.42.0/24 139652 -103.143.45.0/24 16509 -103.143.46.0/24 17439 -103.143.47.0/24 139669 -103.143.52.0/22 9875 -103.143.58.0/23 9875 -103.143.62.0/23 139390 -103.143.64.0/22 9875 -103.143.70.0/23 139389 -103.143.76.0/23 23470 -103.143.80.0/23 139659 -103.143.84.0/24 139488 -103.143.85.0/24 139666 -103.143.86.0/23 32708 -103.143.88.0/23 134806 -103.143.91.0/24 139668 -103.143.92.0/23 136167 -103.143.95.0/24 139392 -103.143.96.0/23 133838 -103.143.98.0/23 133798 -103.143.100.0/23 133798 -103.143.102.0/23 9875 -103.143.104.0/22 4800 -103.143.108.0/24 134877 -103.143.109.0/24 139517 -103.143.110.0/23 9875 -103.143.114.0/23 9875 -103.143.116.0/23 9875 -103.143.118.0/23 139670 -103.143.126.0/23 139675 -103.143.128.0/23 139393 -103.143.130.0/23 139394 -103.143.138.0/24 134371 -103.143.139.0/24 138197 -103.143.140.0/24 135988 -103.143.146.0/23 138296 -103.143.148.0/24 138917 -103.143.150.0/23 139680 -103.143.152.0/23 139402 -103.143.154.0/24 139403 -103.143.155.0/24 139684 -103.143.156.0/23 139683 -103.143.158.0/23 136933 -103.143.160.0/23 134705 -103.143.162.0/24 139681 -103.143.164.0/24 139688 -103.143.166.0/23 135761 -103.143.168.0/23 139490 -103.143.170.0/24 139400 -103.143.172.0/24 137182 -103.143.173.0/24 135728 -103.143.176.0/23 9628 -103.143.182.0/23 139689 -103.143.184.0/24 55494 -103.143.185.0/24 137549 -103.143.186.0/23 139692 -103.143.190.0/23 9875 -103.143.192.0/23 9341 -103.143.194.0/23 139415 -103.143.196.0/23 139409 -103.143.198.0/23 139406 -103.143.205.0/24 136479 -103.143.206.0/24 18403 -103.143.208.0/23 56150 -103.143.211.0/24 139701 -103.143.212.0/23 132935 -103.143.214.0/24 58898 -103.143.218.0/24 139371 -103.143.219.0/24 138359 -103.143.220.0/23 135636 -103.143.222.0/23 58552 -103.143.224.0/23 139412 -103.143.226.0/24 139703 -103.143.228.0/23 4808 -103.143.232.0/23 139408 -103.143.234.0/23 139708 -103.143.240.0/23 139709 -103.143.242.0/23 139707 -103.143.244.0/23 132637 -103.143.246.0/23 139711 -103.143.252.0/24 137981 -103.143.253.0/24 139715 -103.143.254.0/23 139716 -103.144.0.0/24 134687 -103.144.1.0/24 138678 -103.144.4.0/24 139414 -103.144.5.0/24 64306 -103.144.6.0/23 139729 -103.144.8.0/23 139719 -103.144.10.0/23 139718 -103.144.15.0/24 38757 -103.144.18.0/24 139418 -103.144.20.0/24 58369 -103.144.22.0/24 133839 -103.144.27.0/24 56272 -103.144.32.0/24 131626 -103.144.36.0/23 132778 -103.144.38.0/23 139424 -103.144.42.0/23 139722 -103.144.44.0/24 139724 -103.144.48.0/23 139728 -103.144.51.0/24 135684 -103.144.52.0/23 139726 -103.144.56.0/24 55333 -103.144.60.0/24 139731 -103.144.66.0/23 139179 -103.144.69.0/24 139669 -103.144.74.0/23 9341 -103.144.77.0/24 9341 -103.144.82.0/24 139422 -103.144.83.0/24 56294 -103.144.84.0/23 131396 -103.144.86.0/23 135932 -103.144.89.0/24 139735 -103.144.90.0/23 139425 -103.144.94.0/24 138788 -103.144.95.0/24 139737 -103.144.98.0/23 139736 -103.144.100.0/24 138034 -103.144.101.0/24 139740 -103.144.102.0/23 139421 -103.144.106.0/23 139741 -103.144.108.0/23 139742 -103.144.112.0/23 139571 -103.144.114.0/23 139572 -103.144.116.0/24 135858 -103.144.117.0/24 139739 -103.144.118.0/23 136377 -103.144.124.0/24 139747 -103.144.125.0/24 139748 -103.144.128.0/23 139433 -103.144.134.0/23 139427 -103.144.138.0/24 137313 -103.144.140.0/23 139750 -103.144.142.0/24 394434 -103.144.143.0/24 139429 -103.144.144.0/23 139426 -103.144.146.0/23 139428 -103.144.148.0/23 54600 -103.144.156.0/24 135582 -103.144.157.0/24 139752 -103.144.160.0/24 139755 -103.144.161.0/24 139904 -103.144.164.0/23 139758 -103.144.166.0/24 9341 -103.144.172.0/23 135760 -103.144.176.0/23 53356 -103.144.183.0/24 9341 -103.144.184.0/23 139605 -103.144.188.0/23 139537 -103.144.190.0/23 139430 -103.144.192.0/24 134287 -103.144.193.0/24 139504 -103.144.194.0/24 134634 -103.144.195.0/24 139701 -103.144.196.0/24 136933 -103.144.197.0/24 136970 -103.144.198.0/23 139757 -103.144.200.0/23 139762 -103.144.212.0/24 58369 -103.144.216.0/23 139539 -103.144.218.0/23 136933 -103.144.224.0/23 139766 -103.144.232.0/23 134326 -103.144.234.0/23 139497 -103.144.236.0/24 139217 -103.144.237.0/24 139770 -103.144.240.0/24 137443 -103.144.241.0/24 38478 -103.144.250.0/23 139435 -103.145.4.0/23 135999 -103.145.6.0/24 139540 -103.145.8.0/23 135718 -103.145.10.0/23 139769 -103.145.12.0/23 139789 -103.145.16.0/24 4195 -103.145.17.0/24 9534 -103.145.18.0/23 139498 -103.145.20.0/23 139773 -103.145.24.0/23 139777 -103.145.27.0/24 139441 -103.145.28.0/23 139771 -103.145.34.0/23 139449 -103.145.38.0/23 138538 -103.145.44.0/23 139780 -103.145.46.0/23 139957 -103.145.48.0/24 135059 -103.145.50.0/23 17439 -103.145.52.0/23 139455 -103.145.54.0/23 139514 -103.145.57.0/24 139786 -103.145.58.0/23 18254 -103.145.60.0/23 139787 -103.145.62.0/23 135994 -103.145.66.0/23 139440 -103.145.70.0/23 139792 -103.145.72.0/24 45102 -103.145.74.0/24 139806 -103.145.76.0/23 139793 -103.145.82.0/24 138065 -103.145.83.0/24 139445 -103.145.86.0/23 137443 -103.145.88.0/24 139794 -103.145.89.0/24 55824 -103.145.96.0/24 139442 -103.145.97.0/24 139443 -103.145.100.0/24 139478 -103.145.104.0/23 54600 -103.145.106.0/24 133441 -103.145.108.0/23 139446 -103.145.112.0/23 139808 -103.145.118.0/23 139807 -103.145.122.0/23 137443 -103.145.125.0/24 139447 -103.145.132.0/24 137432 -103.145.133.0/24 139809 -103.145.134.0/23 139813 -103.145.144.0/23 21859 -103.145.156.0/24 58910 -103.145.158.0/24 137265 -103.145.159.0/24 138379 -103.145.164.0/23 139814 -103.145.166.0/24 64081 -103.145.168.0/23 139501 -103.145.172.0/24 139535 -103.145.174.0/24 139513 -103.145.175.0/24 139448 -103.145.182.0/24 16509 -103.145.184.0/23 132480 -103.145.187.0/24 132464 -103.145.190.0/24 137443 -103.145.191.0/24 38478 -103.145.192.0/24 16509 -103.145.194.0/23 136102 -103.145.196.0/23 137286 -103.145.198.0/23 136102 -103.145.200.0/23 139450 -103.145.202.0/23 4800 -103.145.208.0/24 139872 -103.145.210.0/23 139825 -103.145.212.0/23 4800 -103.145.214.0/23 9683 -103.145.222.0/23 139453 -103.145.226.0/23 139456 -103.145.230.0/23 136610 -103.145.232.0/23 139834 -103.145.234.0/23 139837 -103.145.236.0/23 139838 -103.145.242.0/23 139454 -103.145.246.0/23 139835 -103.145.248.0/24 131124 -103.145.249.0/24 139536 -103.145.252.0/22 135905 -103.146.0.0/23 139526 -103.146.2.0/23 139832 -103.146.10.0/23 139854 -103.146.16.0/23 139841 -103.146.20.0/24 135998 -103.146.22.0/23 131366 -103.146.24.0/24 137972 -103.146.25.0/24 139845 -103.146.30.0/23 64315 -103.146.32.0/23 134872 -103.146.34.0/23 139459 -103.146.36.0/23 139826 -103.146.38.0/24 139846 -103.146.42.0/23 139870 -103.146.47.0/24 139848 -103.146.48.0/23 136480 -103.146.54.0/23 139850 -103.146.58.0/24 38320 -103.146.62.0/23 139457 -103.146.64.0/23 131960 -103.146.66.0/23 139849 -103.146.68.0/23 139857 -103.146.70.0/23 139934 -103.146.74.0/24 139932 -103.146.75.0/24 138025 -103.146.78.0/23 134705 -103.146.80.0/23 51747 -103.146.84.0/23 139858 -103.146.86.0/24 139864 -103.146.87.0/24 7575 -103.146.92.0/23 139863 -103.146.94.0/23 139865 -103.146.96.0/24 139773 -103.146.97.0/24 12722 -103.146.100.0/24 63889 -103.146.101.0/24 135375 -103.146.104.0/24 133894 -103.146.105.0/24 139948 -103.146.106.0/24 139869 -103.146.108.0/23 139528 -103.146.110.0/23 139549 -103.146.112.0/23 136557 -103.146.114.0/23 131959 -103.146.116.0/24 139871 -103.146.118.0/23 135723 -103.146.122.0/23 139355 -103.146.124.0/23 26484 -103.146.130.0/23 17754 -103.146.132.0/23 139940 -103.146.135.0/24 138076 -103.146.146.0/24 139885 -103.146.147.0/24 137443 -103.146.148.0/23 139902 -103.146.150.0/23 139881 -103.146.156.0/23 135763 -103.146.161.0/24 139889 -103.146.169.0/24 139939 -103.146.170.0/23 17754 -103.146.182.0/24 137342 -103.146.184.0/23 139967 -103.146.186.0/23 55664 -103.146.190.0/23 139937 -103.146.194.0/23 139897 -103.146.196.0/23 139941 -103.146.198.0/24 137039 -103.146.199.0/24 139942 -103.146.202.0/23 139933 -103.146.204.0/23 9286 -103.146.206.0/23 139900 -103.146.210.0/23 131667 -103.146.214.0/24 394434 -103.146.215.0/24 139507 -103.146.216.0/23 133289 -103.146.220.0/23 139904 -103.146.222.0/23 137678 -103.146.232.0/24 139508 -103.146.235.0/24 139554 -103.146.243.0/24 135769 -103.146.244.0/24 137289 -103.146.248.0/24 139909 -103.146.250.0/23 139903 -103.147.0.0/23 58762 -103.147.7.0/24 139911 -103.147.10.0/23 139945 -103.147.22.0/23 131668 -103.147.24.0/24 139919 -103.147.30.0/24 133803 -103.147.31.0/24 135777 -103.147.34.0/23 135905 -103.147.40.0/23 139915 -103.147.42.0/23 133495 -103.147.45.0/24 133115 -103.147.46.0/23 139946 -103.147.50.0/23 139947 -103.147.52.0/23 139949 -103.147.56.0/23 139674 -103.147.62.0/23 139922 -103.147.64.0/22 10137 -103.147.68.0/24 58495 -103.147.71.0/24 16509 -103.147.74.0/23 17769 -103.147.76.0/23 139952 -103.147.78.0/23 59210 -103.147.88.0/24 139551 -103.147.91.0/24 139960 -103.147.92.0/24 58495 -103.147.93.0/24 135831 -103.147.98.0/23 135234 -103.147.109.0/24 136479 -103.147.112.0/23 18229 -103.147.116.0/23 17769 -103.147.120.0/23 139550 -103.147.122.0/23 18403 -103.147.129.0/24 10146 -103.147.132.0/23 136704 -103.147.140.0/22 17769 -103.147.144.0/22 17769 -103.147.154.0/24 138115 -103.147.162.0/23 63526 -103.147.164.0/23 17769 -103.147.170.0/23 139773 -103.147.172.0/24 137962 -103.147.173.0/24 138745 -103.147.174.0/24 132296 -103.147.184.0/23 135905 -103.147.190.0/23 140040 -103.147.192.0/24 132523 -103.147.200.0/23 140042 -103.147.212.0/23 140049 -103.147.218.0/24 136081 -103.147.222.0/24 138050 -103.147.226.0/24 140050 -103.147.234.0/23 140058 -103.147.240.0/24 140055 -103.147.245.0/24 139973 -103.147.246.0/23 139972 -103.147.248.0/23 135777 -103.147.252.0/24 139929 -103.148.1.0/24 137651 -103.148.12.0/24 140069 -103.148.32.0/24 55764 -103.148.33.0/24 134877 -103.148.41.0/24 140076 -103.148.43.0/24 137655 -103.148.50.0/23 140077 -103.192.4.0/23 4837 -103.192.32.0/22 24126 -103.192.36.0/22 134401 -103.192.40.0/22 132742 -103.192.44.0/22 133613 -103.192.60.0/22 45804 -103.192.64.0/22 132116 -103.192.68.0/22 23788 -103.192.72.0/22 55879 -103.192.76.0/22 55915 -103.192.80.0/24 136557 -103.192.82.0/23 133615 -103.192.116.0/22 45775 -103.192.120.0/22 17676 -103.192.124.0/22 21650 -103.192.132.0/22 9394 -103.192.148.0/23 131899 -103.192.150.0/24 131899 -103.192.156.0/22 134404 -103.192.160.0/22 17941 -103.192.168.0/22 134246 -103.192.172.0/24 45232 -103.192.173.0/24 24322 -103.192.175.0/24 135516 -103.192.176.0/23 36351 -103.192.178.0/24 36351 -103.192.179.0/24 18013 -103.192.180.0/22 132726 -103.192.184.0/22 64008 -103.192.188.0/22 23650 -103.192.192.0/22 17907 -103.192.196.0/24 134406 -103.192.197.0/24 58631 -103.192.200.0/22 55720 -103.192.204.0/22 137093 -103.192.212.0/22 4812 -103.192.225.0/24 9312 -103.192.226.0/24 137443 -103.192.227.0/24 9312 -103.192.228.0/22 18126 -103.192.232.0/22 131899 -103.192.236.0/22 63748 -103.192.240.0/22 64015 -103.192.252.0/22 4812 -103.193.4.0/22 36351 -103.193.8.0/23 58631 -103.193.10.0/23 134424 -103.193.16.0/24 134436 -103.193.17.0/24 134427 -103.193.18.0/24 58895 -103.193.19.0/24 133844 -103.193.36.0/24 59171 -103.193.37.0/24 134430 -103.193.38.0/23 134429 -103.193.68.0/22 134608 -103.193.76.0/24 134145 -103.193.77.0/24 17754 -103.193.78.0/24 136753 -103.193.80.0/22 56106 -103.193.88.0/22 45804 -103.193.116.0/22 55699 -103.193.124.0/24 21859 -103.193.126.0/23 21859 -103.193.128.0/24 137443 -103.193.129.0/24 4785 -103.193.130.0/24 4785 -103.193.131.0/24 9312 -103.193.132.0/22 24000 -103.193.136.0/23 64073 -103.193.138.0/24 64073 -103.193.139.0/24 135157 -103.193.144.0/22 54600 -103.193.148.0/22 134196 -103.193.165.0/24 134434 -103.193.166.0/24 136577 -103.193.168.0/22 64012 -103.193.172.0/22 132325 -103.193.180.0/22 18126 -103.193.184.0/23 45382 -103.193.186.0/23 6939 -103.193.188.0/22 139007 -103.193.196.0/22 133275 -103.193.201.0/24 138254 -103.193.202.0/23 59162 -103.193.204.0/24 17976 -103.193.208.0/22 24039 -103.193.240.0/22 24000 -103.193.244.0/22 26658 -103.193.248.0/22 64047 -103.193.252.0/22 134256 -103.194.0.0/22 55581 -103.194.32.0/22 45469 -103.194.40.0/24 36351 -103.194.41.0/24 134835 -103.194.42.0/23 134835 -103.194.44.0/24 134556 -103.194.45.0/24 134251 -103.194.48.0/23 55884 -103.194.50.0/24 62685 -103.194.68.0/24 45162 -103.194.69.0/24 133997 -103.194.70.0/23 134257 -103.194.72.0/22 18260 -103.194.76.0/22 58436 -103.194.84.0/22 7529 -103.194.88.0/23 4 -103.194.90.0/23 134319 -103.194.92.0/22 45814 -103.194.100.0/23 134449 -103.194.102.0/23 38478 -103.194.104.0/22 132721 -103.194.108.0/22 45974 -103.194.112.0/24 204287 -103.194.113.0/24 136557 -103.194.114.0/24 56202 -103.194.115.0/24 136557 -103.194.116.0/22 133296 -103.194.120.0/24 134324 -103.194.121.0/24 17477 -103.194.124.0/22 17766 -103.194.131.0/24 131255 -103.194.148.0/22 63888 -103.194.152.0/23 134452 -103.194.164.0/22 49544 -103.194.168.0/22 134512 -103.194.172.0/22 63885 -103.194.176.0/22 58439 -103.194.184.0/22 45753 -103.194.188.0/22 135963 -103.194.192.0/22 58967 -103.194.212.0/23 133948 -103.194.220.0/22 9829 -103.194.229.0/24 4851 -103.194.232.0/22 134325 -103.194.236.0/22 134518 -103.194.240.0/22 134326 -103.194.244.0/22 134523 -103.194.248.0/22 134294 -103.194.253.0/24 9701 -103.194.254.0/23 9701 -103.195.0.0/22 134552 -103.195.4.0/22 64022 -103.195.8.0/22 18400 -103.195.12.0/23 133122 -103.195.14.0/23 135168 -103.195.16.0/24 134280 -103.195.18.0/23 55683 -103.195.20.0/22 134554 -103.195.24.0/22 134270 -103.195.29.0/24 134613 -103.195.30.0/23 134612 -103.195.32.0/22 41690 -103.195.36.0/22 134271 -103.195.48.0/22 59371 -103.195.52.0/23 134688 -103.195.54.0/23 64058 -103.195.56.0/22 17451 -103.195.60.0/22 2687 -103.195.64.0/24 1221 -103.195.65.0/24 134662 -103.195.66.0/23 137968 -103.195.68.0/22 134281 -103.195.72.0/22 134340 -103.195.76.0/22 24554 -103.195.80.0/24 138296 -103.195.83.0/24 138311 -103.195.90.0/23 58404 -103.195.100.0/22 23470 -103.195.104.0/22 58985 -103.195.108.0/22 4646 -103.195.116.0/22 26658 -103.195.128.0/24 17819 -103.195.136.0/22 134981 -103.195.140.0/23 64037 -103.195.142.0/24 134614 -103.195.143.0/24 56109 -103.195.144.0/22 2519 -103.195.148.0/22 55933 -103.195.168.0/23 46047 -103.195.170.0/23 7545 -103.195.176.0/22 9829 -103.195.184.0/24 394695 -103.195.185.0/24 53732 -103.195.186.0/23 394695 -103.195.188.0/22 134677 -103.195.196.0/22 58640 -103.195.200.0/22 134674 -103.195.204.0/23 134676 -103.195.206.0/24 134678 -103.195.207.0/24 38880 -103.195.228.0/22 9829 -103.195.236.0/22 38733 -103.195.240.0/22 63740 -103.195.244.0/22 10225 -103.195.248.0/22 132497 -103.195.252.0/24 133597 -103.195.253.0/24 137678 -103.195.254.0/23 133597 -103.196.4.0/23 59164 -103.196.6.0/23 45582 -103.196.8.0/22 58903 -103.196.12.0/23 134686 -103.196.16.0/22 131438 -103.196.20.0/23 18013 -103.196.22.0/24 40065 -103.196.23.0/24 38001 -103.196.24.0/23 45267 -103.196.29.0/24 45284 -103.196.30.0/23 45284 -103.196.32.0/24 17439 -103.196.34.0/24 134261 -103.196.35.0/24 132717 -103.196.36.0/22 40138 -103.196.40.0/24 134721 -103.196.42.0/24 56248 -103.196.43.0/24 58558 -103.196.44.0/23 56248 -103.196.46.0/23 58558 -103.196.52.0/24 134872 -103.196.53.0/24 133275 -103.196.54.0/24 133275 -103.196.56.0/22 135607 -103.196.60.0/22 132839 -103.196.64.0/22 45062 -103.196.68.0/22 58606 -103.196.76.0/22 133001 -103.196.84.0/24 135497 -103.196.86.0/23 134684 -103.196.88.0/21 4847 -103.196.100.0/22 26658 -103.196.104.0/22 23944 -103.196.108.0/23 132003 -103.196.110.0/24 134284 -103.196.111.0/24 17766 -103.196.112.0/22 56094 -103.196.116.0/24 23679 -103.196.117.0/24 134285 -103.196.120.0/22 24000 -103.196.124.0/23 17213 -103.196.127.0/24 134687 -103.196.128.0/22 134672 -103.196.132.0/22 24554 -103.196.136.0/22 134707 -103.196.140.0/22 21734 -103.196.148.0/22 4851 -103.196.157.0/24 59171 -103.196.158.0/23 134695 -103.196.160.0/22 132165 -103.196.172.0/22 131597 -103.196.180.0/22 64056 -103.196.192.0/24 134344 -103.196.195.0/24 134698 -103.196.200.0/22 55879 -103.196.204.0/22 31972 -103.196.208.0/24 45433 -103.196.210.0/23 45433 -103.196.212.0/22 59163 -103.196.220.0/22 135772 -103.196.232.0/22 55492 -103.196.236.0/22 38244 -103.196.240.0/22 50673 -103.196.244.0/22 131439 -103.196.248.0/22 131437 -103.196.252.0/22 48328 -103.197.4.0/24 134700 -103.197.6.0/23 134700 -103.197.8.0/22 58964 -103.197.12.0/22 9597 -103.197.16.0/22 19318 -103.197.24.0/22 55933 -103.197.28.0/22 133296 -103.197.32.0/22 134260 -103.197.44.0/22 17539 -103.197.48.0/23 59249 -103.197.51.0/24 134006 -103.197.52.0/22 45179 -103.197.56.0/22 45352 -103.197.60.0/22 24226 -103.197.64.0/22 134709 -103.197.68.0/22 134705 -103.197.72.0/22 134343 -103.197.84.0/22 134710 -103.197.88.0/24 134747 -103.197.89.0/24 58369 -103.197.92.0/23 134623 -103.197.94.0/24 134623 -103.197.96.0/22 13896 -103.197.104.0/22 134708 -103.197.116.0/23 133275 -103.197.118.0/24 133275 -103.197.120.0/24 133712 -103.197.121.0/24 134279 -103.197.122.0/24 134279 -103.197.123.0/24 132717 -103.197.132.0/22 134331 -103.197.144.0/24 134711 -103.197.145.0/24 133898 -103.197.146.0/23 133898 -103.197.148.0/22 43289 -103.197.152.0/22 134712 -103.197.160.0/22 36351 -103.197.164.0/22 24016 -103.197.168.0/22 26658 -103.197.172.0/23 18046 -103.197.174.0/23 38851 -103.197.176.0/22 134715 -103.197.186.0/23 59339 -103.197.192.0/22 26658 -103.197.196.0/22 134714 -103.197.200.0/24 134716 -103.197.201.0/24 137418 -103.197.202.0/23 137420 -103.197.204.0/23 134723 -103.197.206.0/23 136759 -103.197.208.0/22 2519 -103.197.212.0/23 134743 -103.197.214.0/23 38195 -103.197.216.0/22 26658 -103.197.220.0/22 134258 -103.197.225.0/24 55352 -103.197.226.0/23 55352 -103.197.228.0/22 23771 -103.197.232.0/22 64098 -103.197.236.0/22 64044 -103.197.240.0/22 133320 -103.197.244.0/22 134718 -103.197.248.0/22 64043 -103.198.0.0/24 32780 -103.198.1.0/24 134670 -103.198.2.0/23 64046 -103.198.4.0/22 9370 -103.198.8.0/23 135337 -103.198.10.0/23 58438 -103.198.12.0/22 17682 -103.198.16.0/23 132901 -103.198.18.0/23 131189 -103.198.24.0/23 38809 -103.198.28.0/24 58640 -103.198.32.0/23 57976 -103.198.34.0/23 134019 -103.198.36.0/22 17676 -103.198.40.0/23 38880 -103.198.44.0/22 26658 -103.198.52.0/23 134722 -103.198.54.0/23 38541 -103.198.56.0/22 133771 -103.198.64.0/22 4837 -103.198.68.0/22 138148 -103.198.72.0/22 63549 -103.198.77.0/24 59253 -103.198.80.0/23 132768 -103.198.83.0/24 134267 -103.198.84.0/23 38182 -103.198.86.0/23 9655 -103.198.88.0/22 134728 -103.198.92.0/24 1221 -103.198.93.0/24 45718 -103.198.96.0/22 137166 -103.198.100.0/22 132296 -103.198.104.0/23 134730 -103.198.106.0/24 24516 -103.198.107.0/24 134832 -103.198.108.0/22 131899 -103.198.112.0/24 56294 -103.198.113.0/24 134733 -103.198.114.0/23 134624 -103.198.120.0/22 46055 -103.198.124.0/22 4812 -103.198.130.0/24 37933 -103.198.131.0/24 134628 -103.198.132.0/22 131464 -103.198.136.0/22 134732 -103.198.140.0/23 64049 -103.198.142.0/24 64049 -103.198.144.0/22 64050 -103.198.148.0/22 134736 -103.198.160.0/22 4713 -103.198.164.0/22 55352 -103.198.168.0/22 64053 -103.198.172.0/22 132116 -103.198.184.0/23 9790 -103.198.186.0/24 9790 -103.198.187.0/24 134298 -103.198.188.0/22 26658 -103.198.192.0/22 55720 -103.198.196.0/22 4515 -103.198.204.0/22 26658 -103.198.208.0/23 131905 -103.198.210.0/24 131905 -103.198.212.0/22 24255 -103.198.252.0/22 134740 -103.199.0.0/24 9790 -103.199.2.0/23 134626 -103.199.4.0/22 56155 -103.199.8.0/23 45899 -103.199.12.0/23 63756 -103.199.14.0/24 63756 -103.199.16.0/22 63734 -103.199.20.0/22 131429 -103.199.24.0/21 131429 -103.199.32.0/19 131429 -103.199.64.0/20 131429 -103.199.80.0/24 132015 -103.199.82.0/23 24516 -103.199.84.0/22 58717 -103.199.88.0/22 133320 -103.199.92.0/22 24554 -103.199.96.0/24 45226 -103.199.97.0/24 45804 -103.199.98.0/23 133311 -103.199.100.0/22 136800 -103.199.104.0/22 45753 -103.199.108.0/22 24556 -103.199.112.0/22 134316 -103.199.116.0/24 133311 -103.199.118.0/24 131782 -103.199.119.0/24 17473 -103.199.120.0/22 132934 -103.199.124.0/22 45235 -103.199.128.0/23 138741 -103.199.131.0/24 45194 -103.199.132.0/22 9353 -103.199.136.0/23 45194 -103.199.138.0/24 45194 -103.199.144.0/22 132556 -103.199.148.0/22 133847 -103.199.152.0/22 134749 -103.199.156.0/22 133278 -103.199.160.0/22 58969 -103.199.168.0/23 134750 -103.199.172.0/22 138790 -103.199.176.0/22 134269 -103.199.184.0/24 133296 -103.199.185.0/24 132925 -103.199.186.0/23 133296 -103.199.216.0/22 134797 -103.199.220.0/22 17676 -103.199.232.0/22 134180 -103.199.240.0/22 134803 -103.199.244.0/22 26658 -103.200.0.0/22 131599 -103.200.4.0/23 38001 -103.200.6.0/24 38001 -103.200.7.0/24 134451 -103.200.8.0/22 9268 -103.200.13.0/24 38195 -103.200.14.0/24 38195 -103.200.16.0/23 134630 -103.200.19.0/24 134630 -103.200.20.0/23 45538 -103.200.22.0/24 18403 -103.200.23.0/24 135905 -103.200.28.0/22 55933 -103.200.32.0/24 24000 -103.200.33.0/24 22769 -103.200.34.0/24 24000 -103.200.36.0/22 134806 -103.200.40.0/22 59164 -103.200.44.0/22 55879 -103.200.48.0/24 10225 -103.200.56.0/24 45582 -103.200.58.0/23 134334 -103.200.60.0/22 7602 -103.200.72.0/22 133001 -103.200.84.0/22 9829 -103.200.92.0/22 64063 -103.200.96.0/23 134835 -103.200.98.0/23 36351 -103.200.100.0/22 24554 -103.200.104.0/22 55352 -103.200.112.0/23 131477 -103.200.114.0/24 132839 -103.200.115.0/24 64271 -103.200.123.0/24 56157 -103.200.124.0/22 132839 -103.200.128.0/22 134633 -103.200.132.0/22 134739 -103.200.196.0/22 58895 -103.200.200.0/22 64050 -103.200.208.0/22 63930 -103.200.212.0/22 24554 -103.200.216.0/22 38001 -103.201.24.0/22 133115 -103.201.68.0/22 26658 -103.201.124.0/22 134295 -103.201.128.0/22 4785 -103.201.132.0/22 134335 -103.201.136.0/22 136717 -103.201.140.0/22 134316 -103.201.144.0/22 58659 -103.201.148.0/22 58678 -103.202.48.0/22 26658 -103.202.52.0/22 134824 -103.202.92.0/22 4812 -103.202.96.0/20 4812 -103.202.112.0/22 4812 -103.202.120.0/21 4812 -103.202.128.0/20 4812 -103.202.144.0/22 4812 -103.202.148.0/22 24439 -103.202.210.0/23 25896 -103.202.216.0/23 59105 -103.202.218.0/24 133158 -103.202.219.0/24 23539 -103.202.220.0/22 134180 -103.202.224.0/24 133158 -103.202.227.0/24 134635 -103.202.232.0/22 395033 -103.203.36.0/22 58966 -103.203.40.0/22 46261 -103.203.44.0/22 132165 -103.203.48.0/22 45753 -103.203.52.0/22 54600 -103.203.60.0/22 24554 -103.203.64.0/22 132770 -103.203.76.0/23 134620 -103.203.84.0/22 134269 -103.203.91.0/24 134636 -103.203.92.0/22 134841 -103.203.96.0/22 58541 -103.203.132.0/22 134840 -103.203.136.0/22 59189 -103.203.140.0/23 134765 -103.203.144.0/22 45194 -103.203.148.0/22 24000 -103.203.152.0/23 134842 -103.203.154.0/24 134842 -103.203.155.0/24 38750 -103.203.160.0/23 134636 -103.203.162.0/24 138870 -103.203.163.0/24 134754 -103.203.172.0/22 59164 -103.203.176.0/22 64074 -103.203.184.0/23 58640 -103.203.188.0/24 134845 -103.203.196.0/22 9749 -103.203.208.0/22 134333 -103.203.216.0/22 63561 -103.203.220.0/23 13150 -103.203.222.0/24 13150 -103.203.224.0/22 134337 -103.203.228.0/22 133968 -103.203.252.0/23 135706 -103.203.254.0/24 135706 -103.204.4.0/22 55720 -103.204.8.0/22 134847 -103.204.13.0/24 59117 -103.204.14.0/24 7575 -103.204.15.0/24 134949 -103.204.20.0/22 17483 -103.204.36.0/22 132770 -103.204.52.0/22 59165 -103.204.56.0/22 17676 -103.204.60.0/22 135025 -103.204.64.0/23 131904 -103.204.66.0/24 131904 -103.204.67.0/24 17819 -103.204.70.0/24 137653 -103.204.72.0/22 132168 -103.204.76.0/22 132839 -103.204.80.0/23 58691 -103.204.82.0/24 58953 -103.204.83.0/24 58691 -103.204.84.0/22 133854 -103.204.96.0/24 134969 -103.204.97.0/24 136590 -103.204.98.0/24 17439 -103.204.99.0/24 137507 -103.204.100.0/22 134976 -103.204.104.0/23 63931 -103.204.106.0/23 38880 -103.204.108.0/22 26658 -103.204.117.0/24 134980 -103.204.118.0/24 133842 -103.204.119.0/24 58678 -103.204.120.0/22 45194 -103.204.124.0/23 45661 -103.204.127.0/24 45661 -103.204.132.0/22 24554 -103.204.156.0/22 134878 -103.204.160.0/22 55352 -103.204.164.0/23 134873 -103.204.166.0/23 45194 -103.204.168.0/22 133676 -103.204.172.0/23 134835 -103.204.174.0/24 36351 -103.204.175.0/24 134835 -103.204.178.0/24 18013 -103.204.184.0/22 134943 -103.204.188.0/24 135718 -103.204.189.0/24 45117 -103.204.190.0/23 135718 -103.204.192.0/22 134887 -103.204.200.0/22 134983 -103.204.204.0/22 58970 -103.204.208.0/22 64075 -103.204.212.0/22 133542 -103.204.218.0/24 134986 -103.204.219.0/24 63919 -103.204.220.0/22 134995 -103.204.224.0/23 134987 -103.204.226.0/23 134988 -103.204.228.0/24 17766 -103.204.229.0/24 58922 -103.204.231.0/24 133680 -103.204.240.0/22 23704 -103.204.244.0/24 134990 -103.204.252.0/22 26658 -103.205.0.0/22 26658 -103.205.4.0/22 23650 -103.205.8.0/23 134835 -103.205.10.0/24 17676 -103.205.11.0/24 134835 -103.205.12.0/24 17754 -103.205.13.0/24 18229 -103.205.14.0/23 134859 -103.205.16.0/22 132335 -103.205.20.0/22 63888 -103.205.24.0/22 135005 -103.205.28.0/23 134697 -103.205.30.0/23 135015 -103.205.32.0/22 24516 -103.205.38.0/24 64076 -103.205.48.0/22 18135 -103.205.52.0/22 18243 -103.205.56.0/23 134639 -103.205.58.0/23 135000 -103.205.64.0/22 17439 -103.205.68.0/22 63996 -103.205.72.0/22 18046 -103.205.76.0/22 135002 -103.205.80.0/24 134999 -103.205.81.0/24 134998 -103.205.82.0/24 134641 -103.205.83.0/24 135557 -103.205.84.0/22 46261 -103.205.88.0/22 17941 -103.205.92.0/22 18002 -103.205.96.0/22 63731 -103.205.100.0/22 135900 -103.205.104.0/23 18403 -103.205.106.0/24 18403 -103.205.107.0/24 63732 -103.205.112.0/22 134861 -103.205.120.0/24 133731 -103.205.121.0/24 134196 -103.205.122.0/23 134196 -103.205.124.0/22 17625 -103.205.128.0/22 134850 -103.205.132.0/24 58689 -103.205.133.0/24 64077 -103.205.134.0/23 58689 -103.205.136.0/24 63565 -103.205.139.0/24 4847 -103.205.140.0/22 132335 -103.205.144.0/23 134852 -103.205.146.0/24 133982 -103.205.147.0/24 134852 -103.205.148.0/22 134853 -103.205.152.0/22 134854 -103.205.156.0/22 64078 -103.205.160.0/23 135012 -103.205.163.0/24 139538 -103.205.164.0/22 26658 -103.205.168.0/22 18144 -103.205.172.0/22 55352 -103.205.176.0/22 38713 -103.205.180.0/22 38026 -103.205.184.0/24 131906 -103.205.186.0/23 135014 -103.205.192.0/22 4837 -103.205.208.0/22 55720 -103.205.228.0/23 133930 -103.205.230.0/24 135018 -103.205.231.0/24 7575 -103.205.232.0/22 135019 -103.205.240.0/22 38197 -103.205.244.0/23 135208 -103.205.246.0/23 38835 -103.205.252.0/22 4837 -103.206.8.0/24 17665 -103.206.9.0/24 58966 -103.206.10.0/23 58966 -103.206.20.0/22 21859 -103.206.28.0/24 38835 -103.206.30.0/23 45887 -103.206.32.0/22 133043 -103.206.36.0/22 24000 -103.206.40.0/22 134963 -103.206.48.0/23 135208 -103.206.50.0/24 134938 -103.206.51.0/24 137653 -103.206.52.0/22 134929 -103.206.56.0/23 17625 -103.206.58.0/24 17625 -103.206.60.0/22 134881 -103.206.64.0/22 133296 -103.206.68.0/22 133320 -103.206.74.0/24 45990 -103.206.80.0/22 135025 -103.206.84.0/22 54578 -103.206.88.0/22 131899 -103.206.92.0/22 64033 -103.206.96.0/23 137653 -103.206.100.0/22 134316 -103.206.104.0/22 18229 -103.206.108.0/22 24000 -103.206.112.0/22 18229 -103.206.116.0/22 134930 -103.206.121.0/24 135026 -103.206.122.0/23 135026 -103.206.124.0/22 26658 -103.206.128.0/22 4 -103.206.132.0/22 17665 -103.206.137.0/24 45916 -103.206.138.0/23 45916 -103.206.152.0/23 17882 -103.206.156.0/23 134684 -103.206.159.0/24 137027 -103.206.160.0/22 135031 -103.206.164.0/22 134931 -103.206.168.0/22 133838 -103.206.172.0/24 134884 -103.206.173.0/24 9988 -103.206.174.0/23 138744 -103.206.176.0/22 134936 -103.206.180.0/22 137098 -103.206.184.0/23 135032 -103.206.186.0/24 135035 -103.206.187.0/24 4851 -103.206.188.0/22 136993 -103.206.192.0/22 135033 -103.206.196.0/22 131899 -103.206.200.0/22 58424 -103.206.204.0/22 135034 -103.206.208.0/22 135036 -103.206.212.0/22 63733 -103.206.216.0/22 63735 -103.206.220.0/22 136363 -103.206.224.0/22 134874 -103.206.228.0/23 135037 -103.206.231.0/24 135037 -103.206.232.0/22 43350 -103.206.236.0/22 7477 -103.206.240.0/22 9251 -103.206.244.0/22 131111 -103.206.248.0/22 133275 -103.206.252.0/22 9422 -103.207.0.0/22 134877 -103.207.4.0/22 134863 -103.207.8.0/24 135744 -103.207.9.0/24 45194 -103.207.10.0/24 45194 -103.207.11.0/24 135744 -103.207.12.0/23 134862 -103.207.14.0/24 134862 -103.207.16.0/24 135040 -103.207.18.0/24 135046 -103.207.24.0/22 26658 -103.207.32.0/24 63736 -103.207.36.0/22 45899 -103.207.40.0/22 40676 -103.207.44.0/22 56209 -103.207.48.0/22 31972 -103.207.56.0/22 18196 -103.207.64.0/22 138220 -103.207.68.0/23 36351 -103.207.70.0/24 36351 -103.207.71.0/24 63930 -103.207.72.0/22 133847 -103.207.76.0/22 45177 -103.207.80.0/22 135043 -103.207.84.0/22 23750 -103.207.93.0/24 135067 -103.207.94.0/23 135044 -103.207.96.0/22 134643 -103.207.102.0/24 135050 -103.207.108.0/23 135048 -103.207.111.0/24 135048 -103.207.112.0/22 132726 -103.207.116.0/22 26658 -103.207.120.0/22 9829 -103.207.128.0/22 9829 -103.207.144.0/22 134875 -103.207.148.0/24 134897 -103.207.149.0/24 132770 -103.207.151.0/24 134897 -103.207.152.0/23 135054 -103.207.154.0/23 134688 -103.207.156.0/23 5580 -103.207.158.0/24 134381 -103.207.159.0/24 135057 -103.207.160.0/22 46261 -103.207.164.0/23 55720 -103.207.166.0/24 55720 -103.207.168.0/22 134928 -103.207.172.0/22 133275 -103.207.184.0/23 63530 -103.207.186.0/24 63530 -103.207.228.0/22 4837 -103.207.236.0/23 134644 -103.207.238.0/24 134644 -103.208.0.0/24 133953 -103.208.1.0/24 135067 -103.208.3.0/24 135066 -103.208.4.0/22 135060 -103.208.8.0/22 26658 -103.208.12.0/22 4847 -103.208.20.0/23 134257 -103.208.23.0/24 134645 -103.208.24.0/23 135063 -103.208.26.0/24 135063 -103.208.27.0/24 136523 -103.208.32.0/22 138415 -103.208.36.0/22 135065 -103.208.40.0/21 63679 -103.208.48.0/22 63679 -103.208.52.0/23 132932 -103.208.54.0/24 135834 -103.208.55.0/24 132932 -103.208.68.0/22 13886 -103.208.72.0/22 133311 -103.208.76.0/22 134867 -103.208.80.0/22 134871 -103.208.84.0/24 206804 -103.208.86.0/24 61138 -103.208.87.0/24 138995 -103.208.92.0/23 7786 -103.208.94.0/23 46059 -103.208.96.0/22 4713 -103.208.100.0/22 134648 -103.208.116.0/22 9829 -103.208.126.0/23 9829 -103.208.130.0/23 9829 -103.208.132.0/22 135071 -103.208.136.0/24 17451 -103.208.137.0/24 132676 -103.208.138.0/23 38034 -103.208.140.0/22 135069 -103.208.152.0/23 134341 -103.208.154.0/24 24080 -103.208.155.0/24 38790 -103.208.160.0/22 134649 -103.208.164.0/24 63920 -103.208.176.0/22 18106 -103.208.180.0/22 135076 -103.208.184.0/22 45780 -103.208.188.0/23 135359 -103.208.192.0/22 135081 -103.208.196.0/23 134823 -103.208.198.0/24 135082 -103.208.199.0/24 135088 -103.208.200.0/22 133275 -103.208.204.0/24 134651 -103.208.205.0/24 58495 -103.208.206.0/24 134651 -103.208.207.0/24 58495 -103.208.210.0/23 23664 -103.208.212.0/22 45806 -103.208.216.0/22 45454 -103.208.220.0/22 46562 -103.208.224.0/22 17625 -103.208.236.0/22 9829 -103.208.240.0/22 9829 -103.208.244.0/23 40676 -103.208.246.0/24 27630 -103.208.247.0/24 40676 -103.208.248.0/22 135086 -103.208.252.0/22 36131 -103.209.1.0/24 134650 -103.209.2.0/23 135326 -103.209.4.0/23 45671 -103.209.6.0/24 134656 -103.209.7.0/24 134659 -103.209.8.0/24 134652 -103.209.9.0/24 134653 -103.209.11.0/24 135090 -103.209.12.0/22 174 -103.209.16.0/23 134868 -103.209.18.0/23 58678 -103.209.20.0/22 135092 -103.209.24.0/23 58915 -103.209.26.0/24 59194 -103.209.27.0/24 132938 -103.209.36.0/23 45194 -103.209.38.0/24 45194 -103.209.44.0/22 13768 -103.209.48.0/23 24060 -103.209.50.0/24 24060 -103.209.52.0/23 136174 -103.209.54.0/24 60725 -103.209.55.0/24 2764 -103.209.56.0/24 8100 -103.209.59.0/24 36496 -103.209.64.0/22 45916 -103.209.68.0/22 58966 -103.209.76.0/23 9009 -103.209.79.0/24 3223 -103.209.81.0/24 135100 -103.209.82.0/23 135100 -103.209.84.0/22 58895 -103.209.88.0/23 134892 -103.209.91.0/24 134892 -103.209.96.0/24 9498 -103.209.97.0/24 45644 -103.209.98.0/24 55654 -103.209.99.0/24 17439 -103.209.100.0/23 134520 -103.209.102.0/24 134520 -103.209.103.0/24 63916 -103.209.104.0/24 135101 -103.209.110.0/23 64088 -103.209.116.0/22 23624 -103.209.120.0/22 131259 -103.209.124.0/22 135106 -103.209.130.0/24 131715 -103.209.131.0/24 133355 -103.209.136.0/22 63570 -103.209.140.0/22 138730 -103.209.144.0/22 134926 -103.209.148.0/22 17676 -103.209.152.0/23 135107 -103.209.160.0/23 135108 -103.209.162.0/23 7474 -103.209.168.0/22 136915 -103.209.176.0/23 45433 -103.209.178.0/24 45433 -103.209.180.0/22 9558 -103.209.184.0/22 134655 -103.209.188.0/23 134061 -103.209.190.0/24 134407 -103.209.191.0/24 135118 -103.209.192.0/24 135112 -103.209.194.0/24 14636 -103.209.196.0/22 134180 -103.209.204.0/22 133647 -103.209.220.0/22 134895 -103.209.228.0/22 135115 -103.209.232.0/22 132839 -103.209.241.0/24 134896 -103.209.242.0/24 4826 -103.209.243.0/24 135121 -103.209.244.0/22 45665 -103.209.248.0/22 17440 -103.209.252.0/22 33438 -103.210.4.0/22 135123 -103.210.8.0/23 135122 -103.210.10.0/24 134832 -103.210.11.0/24 135127 -103.210.13.0/24 9009 -103.210.14.0/23 9009 -103.210.16.0/22 135125 -103.210.20.0/22 135377 -103.210.24.0/22 135126 -103.210.28.0/22 134922 -103.210.32.0/23 134900 -103.210.34.0/24 135469 -103.210.35.0/24 59151 -103.210.36.0/22 56209 -103.210.40.0/22 132976 -103.210.44.0/22 132547 -103.210.48.0/22 134053 -103.210.56.0/22 135130 -103.210.60.0/22 64092 -103.210.64.0/22 134899 -103.210.72.0/22 135133 -103.210.76.0/22 55765 -103.210.84.0/22 17698 -103.210.92.0/22 9829 -103.210.104.0/24 59188 -103.210.105.0/24 24524 -103.210.106.0/23 134021 -103.210.108.0/22 2522 -103.210.112.0/23 59165 -103.210.116.0/22 64024 -103.210.120.0/23 134658 -103.210.122.0/24 133824 -103.210.124.0/23 135137 -103.210.132.0/22 136956 -103.210.139.0/24 55354 -103.210.140.0/22 134903 -103.210.144.0/22 136334 -103.210.148.0/22 45152 -103.210.152.0/23 9891 -103.210.154.0/23 134980 -103.210.160.0/23 63199 -103.210.162.0/23 136958 -103.210.168.0/22 23848 -103.210.192.0/24 134980 -103.210.193.0/24 38526 -103.210.194.0/23 134920 -103.210.196.0/22 133724 -103.210.200.0/23 45194 -103.210.202.0/24 136334 -103.210.204.0/22 134918 -103.210.208.0/24 135142 -103.210.212.0/22 27630 -103.210.221.0/24 18002 -103.210.222.0/24 135270 -103.210.232.0/22 58411 -103.210.236.0/22 133115 -103.210.240.0/22 58411 -103.211.0.0/24 32708 -103.211.2.0/24 32708 -103.211.3.0/24 46573 -103.211.6.0/23 135153 -103.211.8.0/22 18229 -103.211.12.0/22 133982 -103.211.16.0/22 133982 -103.211.20.0/22 135872 -103.211.24.0/23 135154 -103.211.28.0/22 135155 -103.211.36.0/22 134907 -103.211.40.0/23 138290 -103.211.42.0/23 58678 -103.211.44.0/22 4812 -103.211.48.0/24 135148 -103.211.49.0/24 63505 -103.211.50.0/23 131722 -103.211.52.0/22 133982 -103.211.56.0/22 135201 -103.211.64.0/22 135278 -103.211.68.0/22 38197 -103.211.72.0/22 18282 -103.211.76.0/22 134905 -103.211.80.0/24 134906 -103.211.81.0/24 135320 -103.211.82.0/24 45312 -103.211.83.0/24 135467 -103.211.84.0/22 9829 -103.211.92.0/22 135158 -103.211.96.0/23 4837 -103.211.98.0/24 4837 -103.211.99.0/24 133115 -103.211.108.0/22 133287 -103.211.112.0/22 134913 -103.211.116.0/23 4713 -103.211.118.0/23 203554 -103.211.120.0/22 9245 -103.211.124.0/22 132839 -103.211.140.0/23 135160 -103.211.142.0/24 135165 -103.211.143.0/24 45318 -103.211.144.0/22 203098 -103.211.148.0/23 17501 -103.211.150.0/24 137187 -103.211.151.0/24 17501 -103.211.152.0/22 134916 -103.211.164.0/24 21859 -103.211.166.0/24 21859 -103.211.167.0/24 138011 -103.211.172.0/24 135280 -103.211.173.0/24 135166 -103.211.176.0/22 58659 -103.211.180.0/22 33452 -103.211.184.0/23 135054 -103.211.186.0/23 134975 -103.211.188.0/23 135255 -103.211.190.0/23 58906 -103.211.192.0/22 135391 -103.211.197.0/24 135299 -103.211.198.0/24 135140 -103.211.199.0/24 7474 -103.211.208.0/22 9268 -103.211.212.0/22 63752 -103.211.216.0/22 394695 -103.211.220.0/22 4837 -103.211.226.0/23 137443 -103.211.228.0/22 135391 -103.211.232.0/23 133823 -103.211.234.0/24 133823 -103.211.238.0/24 135275 -103.211.239.0/24 45144 -103.211.240.0/23 45852 -103.211.244.0/23 9902 -103.211.246.0/24 135273 -103.211.247.0/24 9902 -103.211.252.0/23 23352 -103.212.1.0/24 63548 -103.212.2.0/24 63548 -103.212.16.0/24 132956 -103.212.17.0/24 45194 -103.212.18.0/24 45194 -103.212.19.0/24 132956 -103.212.20.0/24 134910 -103.212.23.0/24 134910 -103.212.24.0/22 17456 -103.212.28.0/22 134909 -103.212.32.0/22 55933 -103.212.36.0/22 45328 -103.212.40.0/24 38456 -103.212.41.0/24 135277 -103.212.42.0/24 4826 -103.212.43.0/24 63500 -103.212.52.0/22 64095 -103.212.56.0/22 64096 -103.212.60.0/23 135283 -103.212.64.0/23 133923 -103.212.67.0/24 135292 -103.212.68.0/22 55720 -103.212.72.0/22 26658 -103.212.76.0/22 131954 -103.212.88.0/24 135223 -103.212.90.0/23 135223 -103.212.92.0/23 138312 -103.212.94.0/24 138312 -103.212.95.0/24 132556 -103.212.96.0/22 45753 -103.212.104.0/22 24000 -103.212.109.0/24 135386 -103.212.112.0/24 61429 -103.212.113.0/24 394492 -103.212.116.0/22 17882 -103.212.120.0/24 133295 -103.212.121.0/24 133296 -103.212.122.0/24 135289 -103.212.123.0/24 135288 -103.212.124.0/24 4766 -103.212.126.0/23 4766 -103.212.128.0/23 135224 -103.212.130.0/23 134316 -103.212.132.0/22 133296 -103.212.136.0/22 135228 -103.212.140.0/22 136334 -103.212.144.0/22 133982 -103.212.156.0/22 133982 -103.212.168.0/24 135291 -103.212.180.0/22 135290 -103.212.188.0/22 17676 -103.212.192.0/23 133451 -103.212.194.0/23 135294 -103.212.204.0/24 134021 -103.212.205.0/24 135170 -103.212.208.0/23 134341 -103.212.211.0/24 64026 -103.212.212.0/22 137101 -103.212.217.0/24 7628 -103.212.218.0/23 7628 -103.212.220.0/22 45382 -103.212.224.0/22 137409 -103.212.228.0/22 135357 -103.212.232.0/24 59157 -103.212.234.0/24 134661 -103.212.235.0/24 135227 -103.212.236.0/23 38756 -103.212.238.0/24 38756 -103.212.239.0/24 138889 -103.212.240.0/23 55564 -103.212.247.0/24 9952 -103.213.0.0/24 135209 -103.213.2.0/24 135209 -103.213.8.0/21 9829 -103.213.16.0/22 9829 -103.213.28.0/23 59321 -103.213.30.0/24 135300 -103.213.31.0/24 135303 -103.213.96.0/22 23650 -103.213.100.0/23 38880 -103.213.103.0/24 38880 -103.213.104.0/22 135298 -103.213.109.0/24 9541 -103.213.110.0/23 9541 -103.213.112.0/22 9541 -103.213.116.0/22 38750 -103.213.120.0/23 135297 -103.213.122.0/23 131357 -103.213.128.0/22 17670 -103.213.132.0/22 23650 -103.213.192.0/22 135225 -103.213.200.0/24 135301 -103.213.201.0/24 135202 -103.213.202.0/23 18229 -103.213.204.0/22 17887 -103.213.208.0/22 135242 -103.213.212.0/24 45194 -103.213.213.0/24 138798 -103.213.214.0/24 138798 -103.213.215.0/24 45194 -103.213.228.0/24 135307 -103.213.236.0/22 135310 -103.213.240.0/22 135311 -103.213.244.0/24 136574 -103.213.245.0/24 18254 -103.213.246.0/23 18254 -103.213.248.0/22 55933 -103.214.0.0/22 38001 -103.214.4.0/22 207083 -103.214.12.0/24 135345 -103.214.13.0/24 136032 -103.214.14.0/24 136032 -103.214.15.0/24 135345 -103.214.16.0/24 134823 -103.214.18.0/23 134823 -103.214.20.0/24 9297 -103.214.21.0/24 136557 -103.214.22.0/23 136557 -103.214.28.0/24 135317 -103.214.30.0/23 135321 -103.214.32.0/22 134548 -103.214.36.0/22 131899 -103.214.41.0/24 9304 -103.214.42.0/24 135322 -103.214.43.0/24 133080 -103.214.44.0/22 24669 -103.214.48.0/22 4837 -103.214.52.0/22 38517 -103.214.56.0/22 135319 -103.214.60.0/22 133982 -103.214.64.0/22 58640 -103.214.68.0/24 138195 -103.214.69.0/24 133448 -103.214.70.0/24 138995 -103.214.71.0/24 8100 -103.214.72.0/22 18126 -103.214.76.0/22 135327 -103.214.80.0/22 4864 -103.214.88.0/22 9946 -103.214.92.0/22 203098 -103.214.98.0/24 135332 -103.214.99.0/24 135461 -103.214.100.0/23 64027 -103.214.102.0/24 64027 -103.214.104.0/22 135328 -103.214.108.0/22 63018 -103.214.114.0/23 17439 -103.214.116.0/22 135678 -103.214.120.0/23 138841 -103.214.122.0/23 17439 -103.214.128.0/22 45117 -103.214.132.0/22 135220 -103.214.136.0/22 45775 -103.214.140.0/22 132813 -103.214.144.0/22 135330 -103.214.148.0/22 135333 -103.214.156.0/22 135339 -103.214.164.0/22 132839 -103.214.168.0/22 137443 -103.214.172.0/22 134705 -103.214.177.0/24 133258 -103.214.180.0/22 15404 -103.214.184.0/22 64029 -103.214.188.0/22 134908 -103.214.192.0/22 135343 -103.214.200.0/24 64037 -103.214.201.0/24 137453 -103.214.202.0/23 137453 -103.214.204.0/23 135344 -103.214.206.0/24 135347 -103.214.207.0/24 135516 -103.214.208.0/22 135351 -103.214.216.0/22 135353 -103.214.220.0/22 135352 -103.214.228.0/24 200077 -103.214.229.0/24 64030 -103.214.232.0/22 135217 -103.214.238.0/23 135439 -103.214.252.0/22 135354 -103.215.2.0/24 135356 -103.215.3.0/24 136907 -103.215.4.0/22 24000 -103.215.8.0/22 24000 -103.215.12.0/24 9479 -103.215.14.0/24 135372 -103.215.15.0/24 24322 -103.215.16.0/22 64031 -103.215.20.0/23 132015 -103.215.22.0/24 135313 -103.215.24.0/22 9341 -103.215.32.0/22 63598 -103.215.36.0/22 23650 -103.215.40.0/22 55649 -103.215.44.0/22 58466 -103.215.48.0/22 135357 -103.215.52.0/22 23860 -103.215.64.0/23 137222 -103.215.66.0/24 137222 -103.215.67.0/24 136187 -103.215.72.0/24 58477 -103.215.76.0/22 24000 -103.215.80.0/22 55933 -103.215.84.0/22 18070 -103.215.93.0/24 132933 -103.215.94.0/23 132933 -103.215.98.0/23 132754 -103.215.102.0/23 135363 -103.215.104.0/22 135365 -103.215.124.0/22 135369 -103.215.128.0/22 135323 -103.215.133.0/24 135368 -103.215.134.0/24 135172 -103.215.135.0/24 135264 -103.215.136.0/22 132111 -103.215.140.0/22 58519 -103.215.144.0/22 17837 -103.215.148.0/22 135207 -103.215.152.0/22 38086 -103.215.156.0/23 135171 -103.215.158.0/23 132923 -103.215.160.0/22 56294 -103.215.164.0/22 135267 -103.215.168.0/22 135206 -103.215.172.0/22 17941 -103.215.176.0/22 135370 -103.215.185.0/24 137443 -103.215.186.0/24 137443 -103.215.188.0/22 135373 -103.215.192.0/22 135371 -103.215.196.0/22 135193 -103.215.200.0/23 134316 -103.215.202.0/24 135195 -103.215.203.0/24 134316 -103.215.204.0/22 134004 -103.215.208.0/23 135173 -103.215.210.0/23 135376 -103.215.212.0/22 132839 -103.215.216.0/22 207083 -103.215.220.0/22 3177 -103.215.224.0/22 23860 -103.215.228.0/22 134548 -103.215.234.0/24 135263 -103.215.235.0/24 10121 -103.215.236.0/24 135266 -103.215.238.0/23 135266 -103.215.240.0/23 24186 -103.215.242.0/23 136314 -103.215.244.0/22 134341 -103.215.248.0/24 133275 -103.215.250.0/23 133706 -103.215.252.0/22 17676 -103.216.0.0/22 56209 -103.216.48.0/22 135375 -103.216.52.0/22 132220 -103.216.56.0/22 45766 -103.216.60.0/22 48551 -103.216.68.0/23 135269 -103.216.71.0/24 137166 -103.216.72.0/22 63741 -103.216.76.0/24 135197 -103.216.79.0/24 135197 -103.216.80.0/22 45916 -103.216.87.0/24 63499 -103.216.88.0/24 133275 -103.216.90.0/24 134872 -103.216.91.0/24 133275 -103.216.92.0/22 45232 -103.216.96.0/23 18256 -103.216.98.0/24 27385 -103.216.100.0/22 135391 -103.216.112.0/22 63765 -103.216.116.0/22 131388 -103.216.120.0/22 18403 -103.216.124.0/22 135944 -103.216.128.0/22 63744 -103.216.132.0/24 135393 -103.216.135.0/24 135384 -103.216.140.0/22 132116 -103.216.144.0/22 58678 -103.216.148.0/22 9829 -103.216.152.0/22 137697 -103.216.156.0/24 135031 -103.216.160.0/24 135376 -103.216.161.0/24 17439 -103.216.162.0/23 132772 -103.216.164.0/22 132220 -103.216.168.0/23 135198 -103.216.170.0/24 135198 -103.216.171.0/24 133720 -103.216.172.0/22 9830 -103.216.176.0/22 45235 -103.216.184.0/22 134884 -103.216.188.0/24 59290 -103.216.189.0/24 135385 -103.216.190.0/23 134697 -103.216.192.0/22 26464 -103.216.196.0/24 9009 -103.216.197.0/24 133480 -103.216.198.0/24 36131 -103.216.200.0/24 133994 -103.216.201.0/24 134036 -103.216.202.0/23 38682 -103.216.204.0/22 45804 -103.216.212.0/22 136334 -103.216.216.0/22 135386 -103.216.220.0/23 136557 -103.216.222.0/24 9297 -103.216.223.0/24 136557 -103.216.232.0/22 135180 -103.216.236.0/22 45117 -103.217.68.0/22 9829 -103.217.72.0/23 135181 -103.217.74.0/23 135396 -103.217.77.0/24 135191 -103.217.78.0/23 135182 -103.217.80.0/22 133296 -103.217.84.0/22 135257 -103.217.88.0/22 135183 -103.217.92.0/22 132111 -103.217.96.0/23 133393 -103.217.100.0/23 16491 -103.217.103.0/24 16491 -103.217.104.0/24 139629 -103.217.105.0/24 134813 -103.217.106.0/24 135406 -103.217.108.0/22 134732 -103.217.112.0/22 38067 -103.217.116.0/22 133661 -103.217.120.0/24 133661 -103.217.121.0/24 133696 -103.217.122.0/24 133661 -103.217.123.0/24 133696 -103.217.124.0/22 135186 -103.217.128.0/22 135184 -103.217.132.0/22 132116 -103.217.150.0/23 136342 -103.217.152.0/22 45184 -103.217.156.0/22 135405 -103.217.160.0/24 41095 -103.217.165.0/24 9310 -103.217.166.0/23 9310 -103.217.172.0/23 133354 -103.217.174.0/23 17477 -103.217.176.0/22 135407 -103.217.208.0/22 38760 -103.217.212.0/22 45582 -103.217.216.0/23 24529 -103.217.218.0/24 9009 -103.217.219.0/24 24529 -103.217.220.0/22 132335 -103.217.226.0/24 18013 -103.217.228.0/22 23860 -103.217.232.0/22 23860 -103.217.237.0/24 18229 -103.217.238.0/23 18229 -103.217.240.0/22 23860 -103.217.244.0/22 17747 -103.217.248.0/24 135408 -103.217.249.0/24 135185 -103.217.250.0/24 36351 -103.217.252.0/24 24000 -103.217.253.0/24 18013 -103.217.254.0/24 136557 -103.217.255.0/24 7489 -103.218.0.0/22 133115 -103.218.24.0/22 63526 -103.218.96.0/22 17941 -103.218.100.0/23 58678 -103.218.102.0/24 58678 -103.218.108.0/22 135261 -103.218.112.0/22 134326 -103.218.132.0/22 135192 -103.218.156.0/22 45976 -103.218.160.0/22 9459 -103.218.164.0/24 135416 -103.218.165.0/24 138091 -103.218.166.0/23 23679 -103.218.168.0/22 23860 -103.218.172.0/22 9829 -103.218.176.0/22 9829 -103.218.187.0/24 137443 -103.218.188.0/23 135420 -103.218.190.0/24 135420 -103.218.216.0/22 63655 -103.218.220.0/22 135418 -103.218.228.0/22 132215 -103.218.236.0/22 23860 -103.218.240.0/22 135377 -103.218.252.0/22 58640 -103.219.0.0/24 135189 -103.219.4.0/23 135194 -103.219.6.0/24 38157 -103.219.7.0/24 135421 -103.219.12.0/22 9829 -103.219.16.0/22 135260 -103.219.20.0/23 63930 -103.219.22.0/23 24669 -103.219.28.0/22 4134 -103.219.32.0/21 4134 -103.219.40.0/22 136334 -103.219.44.0/22 45775 -103.219.52.0/22 9829 -103.219.58.0/23 54054 -103.219.60.0/24 135262 -103.219.61.0/24 135422 -103.219.62.0/24 7490 -103.219.63.0/24 133023 -103.219.64.0/23 4808 -103.219.68.0/22 135423 -103.219.72.0/22 135465 -103.219.76.0/24 135440 -103.219.77.0/24 55256 -103.219.78.0/23 55256 -103.219.80.0/22 26658 -103.219.104.0/22 132839 -103.219.112.0/24 137342 -103.219.113.0/24 4648 -103.219.114.0/23 38303 -103.219.116.0/22 132111 -103.219.120.0/22 135425 -103.219.124.0/23 38389 -103.219.128.0/22 6507 -103.219.132.0/22 45235 -103.219.136.0/22 135193 -103.219.140.0/22 134316 -103.219.144.0/23 135425 -103.219.146.0/24 131789 -103.219.147.0/24 135490 -103.219.148.0/22 132220 -103.219.152.0/22 207083 -103.219.156.0/22 135433 -103.219.160.0/22 38203 -103.219.164.0/22 58678 -103.219.168.0/22 135437 -103.219.172.0/24 9554 -103.219.175.0/24 9554 -103.219.176.0/22 133775 -103.219.180.0/22 63742 -103.219.184.0/22 9801 -103.219.192.0/24 38478 -103.219.193.0/24 46261 -103.219.194.0/24 21859 -103.219.195.0/24 58879 -103.219.196.0/24 18256 -103.219.197.0/24 135442 -103.219.198.0/23 135441 -103.219.204.0/22 135247 -103.219.208.0/22 134325 -103.219.212.0/23 134278 -103.219.214.0/24 24130 -103.219.215.0/24 135500 -103.219.216.0/22 59162 -103.219.220.0/22 63182 -103.219.228.0/22 134375 -103.219.232.0/22 135494 -103.219.236.0/23 135496 -103.219.240.0/23 38859 -103.219.242.0/23 135397 -103.219.244.0/22 55806 -103.219.248.0/22 135444 -103.219.252.0/24 4800 -103.219.253.0/24 135243 -103.220.4.0/22 137510 -103.220.8.0/22 63981 -103.220.12.0/22 135245 -103.220.16.0/22 135250 -103.220.20.0/23 136370 -103.220.24.0/22 135244 -103.220.28.0/22 133647 -103.220.32.0/24 58678 -103.220.33.0/24 135776 -103.220.34.0/24 58678 -103.220.35.0/24 135776 -103.220.36.0/22 134021 -103.220.40.0/22 55352 -103.220.46.0/24 135512 -103.220.47.0/24 59290 -103.220.52.0/22 136958 -103.220.56.0/22 58519 -103.220.64.0/22 58519 -103.220.68.0/22 63746 -103.220.72.0/23 135356 -103.220.74.0/24 135356 -103.220.76.0/22 135356 -103.220.80.0/22 58678 -103.220.87.0/24 63743 -103.220.88.0/22 135253 -103.220.101.0/24 45816 -103.220.113.0/24 133827 -103.220.114.0/23 135446 -103.220.124.0/22 23650 -103.220.128.0/20 23650 -103.220.144.0/21 23650 -103.220.152.0/22 23650 -103.220.156.0/22 135251 -103.220.160.0/22 23650 -103.220.164.0/22 17621 -103.220.204.0/23 59362 -103.220.206.0/23 136498 -103.220.208.0/22 132757 -103.220.212.0/22 58678 -103.220.220.0/22 58640 -103.220.224.0/24 9830 -103.220.226.0/24 135545 -103.220.227.0/24 135238 -103.220.236.0/22 9829 -103.221.28.0/22 63576 -103.221.32.0/22 63576 -103.221.36.0/22 138527 -103.221.40.0/21 138527 -103.221.48.0/22 139076 -103.221.52.0/22 135517 -103.221.56.0/22 203098 -103.221.68.0/22 132137 -103.221.72.0/22 132770 -103.221.76.0/22 135212 -103.221.80.0/22 135235 -103.221.84.0/23 9268 -103.221.86.0/24 55311 -103.221.87.0/24 55920 -103.221.88.0/22 24143 -103.221.140.0/23 4837 -103.221.142.0/23 137702 -103.221.208.0/22 135232 -103.221.212.0/22 63751 -103.221.220.0/22 18403 -103.221.224.0/21 63747 -103.221.232.0/24 136557 -103.221.233.0/24 134450 -103.221.234.0/23 136557 -103.221.240.0/22 135521 -103.221.244.0/24 56056 -103.221.245.0/24 135526 -103.221.246.0/24 131471 -103.221.247.0/24 132480 -103.221.248.0/22 55352 -103.221.252.0/22 135524 -103.222.20.0/22 135527 -103.222.32.0/24 59048 -103.222.40.0/22 4812 -103.222.144.0/24 137702 -103.222.145.0/24 131525 -103.222.176.0/21 58466 -103.222.184.0/22 63621 -103.222.188.0/22 23650 -103.222.216.0/22 58541 -103.222.236.0/24 135551 -103.222.239.0/24 135447 -103.222.248.0/22 131605 -103.223.0.0/22 135445 -103.223.4.0/22 45899 -103.223.8.0/21 133661 -103.223.120.0/24 26484 -103.223.121.0/24 40676 -103.223.122.0/24 10103 -103.223.123.0/24 137571 -103.223.132.0/22 133774 -103.223.136.0/23 134743 -103.223.138.0/23 134061 -103.223.184.0/24 23686 -103.223.185.0/24 45671 -103.223.186.0/23 23686 -103.224.4.0/22 45415 -103.224.8.0/22 25687 -103.224.12.0/22 17911 -103.224.20.0/24 133204 -103.224.21.0/24 9723 -103.224.22.0/23 394695 -103.224.24.0/22 55303 -103.224.28.0/22 132730 -103.224.32.0/23 45536 -103.224.34.0/24 45536 -103.224.36.0/22 132961 -103.224.48.0/24 134922 -103.224.49.0/24 17907 -103.224.52.0/23 17907 -103.224.54.0/24 134922 -103.224.56.0/24 9311 -103.224.57.0/24 9919 -103.224.58.0/24 9919 -103.224.59.0/24 9311 -103.224.64.0/22 59158 -103.224.68.0/22 55303 -103.224.72.0/22 58451 -103.224.80.0/22 55933 -103.224.84.0/22 45437 -103.224.88.0/22 63956 -103.224.96.0/22 55303 -103.224.100.0/22 59155 -103.224.104.0/24 133212 -103.224.105.0/24 132968 -103.224.107.0/24 10022 -103.224.108.0/23 17813 -103.224.110.0/23 132994 -103.224.112.0/22 17559 -103.224.116.0/22 56300 -103.224.120.0/22 15695 -103.224.127.0/24 59317 -103.224.128.0/22 58600 -103.224.132.0/22 9924 -103.224.136.0/22 59159 -103.224.140.0/23 16625 -103.224.142.0/24 133216 -103.224.144.0/22 132116 -103.224.148.0/22 55303 -103.224.152.0/21 134033 -103.224.160.0/24 56307 -103.224.161.0/24 133218 -103.224.162.0/24 133324 -103.224.163.0/24 132245 -103.224.164.0/22 56300 -103.224.168.0/22 45903 -103.224.176.0/22 45300 -103.224.180.0/24 45696 -103.224.181.0/24 17439 -103.224.182.0/23 133618 -103.224.184.0/22 132960 -103.224.188.0/23 132516 -103.224.191.0/24 55410 -103.224.192.0/22 9924 -103.224.200.0/22 18429 -103.224.208.0/22 133739 -103.224.212.0/23 133618 -103.224.214.0/23 133457 -103.224.216.0/22 135226 -103.224.220.0/22 131486 -103.224.228.0/23 4837 -103.224.232.0/24 133118 -103.224.234.0/23 133118 -103.224.240.0/23 133296 -103.224.242.0/24 133296 -103.224.243.0/24 133295 -103.224.244.0/24 133295 -103.224.245.0/24 133296 -103.224.246.0/23 133295 -103.224.248.0/22 63889 -103.224.252.0/22 9311 -103.225.0.0/22 24164 -103.225.4.0/22 132255 -103.225.8.0/22 133380 -103.225.12.0/22 9829 -103.225.20.0/22 9381 -103.225.29.0/24 132556 -103.225.30.0/24 132556 -103.225.32.0/22 55303 -103.225.36.0/22 59322 -103.225.40.0/22 58640 -103.225.47.0/24 132516 -103.225.48.0/22 23674 -103.225.52.0/22 4686 -103.225.56.0/22 58762 -103.225.60.0/22 133296 -103.225.64.0/23 59253 -103.225.66.0/24 45734 -103.225.67.0/24 136518 -103.225.68.0/22 133328 -103.225.72.0/22 133320 -103.225.76.0/24 133974 -103.225.77.0/24 36351 -103.225.78.0/23 131454 -103.225.80.0/22 4686 -103.225.84.0/23 62468 -103.225.86.0/24 62468 -103.225.88.0/23 58498 -103.225.92.0/22 133331 -103.225.96.0/24 133332 -103.225.98.0/24 59160 -103.225.99.0/24 17439 -103.225.100.0/22 58405 -103.225.104.0/23 131265 -103.225.106.0/24 133088 -103.225.107.0/24 133087 -103.225.108.0/22 9266 -103.225.112.0/23 133860 -103.225.114.0/24 17439 -103.225.115.0/24 133860 -103.225.120.0/22 7672 -103.225.124.0/22 58898 -103.225.128.0/22 133320 -103.225.132.0/23 132497 -103.225.134.0/23 131442 -103.225.136.0/22 133334 -103.225.140.0/22 55752 -103.225.144.0/22 18068 -103.225.148.0/22 45701 -103.225.152.0/22 58789 -103.225.156.0/23 58530 -103.225.158.0/24 58530 -103.225.160.0/22 59356 -103.225.164.0/22 58940 -103.225.168.0/23 9891 -103.225.170.0/24 46047 -103.225.172.0/24 58396 -103.225.174.0/24 133311 -103.225.175.0/24 59272 -103.225.176.0/22 17747 -103.225.180.0/22 133296 -103.225.186.0/23 45577 -103.225.188.0/22 132116 -103.225.192.0/22 132827 -103.225.196.0/23 55720 -103.225.198.0/24 55720 -103.225.199.0/24 64021 -103.225.200.0/23 12506 -103.225.202.0/24 12506 -103.225.203.0/24 36874 -103.225.204.0/23 133676 -103.225.206.0/24 133676 -103.225.207.0/24 58906 -103.225.208.0/24 59274 -103.225.209.0/24 133337 -103.225.210.0/23 133370 -103.225.212.0/22 133372 -103.225.220.0/22 55501 -103.225.224.0/22 131463 -103.225.228.0/23 133374 -103.225.230.0/24 133374 -103.225.232.0/23 19905 -103.225.235.0/24 56065 -103.225.236.0/22 131398 -103.225.240.0/23 10223 -103.225.242.0/24 20940 -103.225.244.0/22 24550 -103.225.248.0/22 26178 -103.226.0.0/21 58678 -103.226.8.0/23 133189 -103.226.10.0/24 133371 -103.226.12.0/22 133377 -103.226.22.0/24 133383 -103.226.23.0/24 132228 -103.226.28.0/22 58678 -103.226.32.0/22 24183 -103.226.44.0/22 58792 -103.226.48.0/22 59273 -103.226.52.0/24 135852 -103.226.53.0/24 133394 -103.226.54.0/24 131895 -103.226.55.0/24 131785 -103.226.64.0/22 45620 -103.226.70.0/24 62660 -103.226.72.0/22 17586 -103.226.76.0/22 38673 -103.226.84.0/22 132497 -103.226.88.0/22 132116 -103.226.92.0/22 9381 -103.226.96.0/22 3786 -103.226.100.0/22 133747 -103.226.104.0/22 132586 -103.226.108.0/23 131405 -103.226.110.0/24 131405 -103.226.112.0/22 133399 -103.226.120.0/23 133134 -103.226.122.0/24 59321 -103.226.123.0/24 4648 -103.226.124.0/22 55933 -103.226.129.0/24 17559 -103.226.130.0/24 17559 -103.226.132.0/22 4837 -103.226.140.0/22 55352 -103.226.144.0/24 135239 -103.226.145.0/24 55352 -103.226.146.0/23 55352 -103.226.148.0/22 55303 -103.226.152.0/22 135357 -103.226.160.0/22 45780 -103.226.164.0/22 133389 -103.226.168.0/22 134254 -103.226.172.0/23 133390 -103.226.174.0/24 59275 -103.226.175.0/24 133299 -103.226.176.0/22 63956 -103.226.180.0/24 63531 -103.226.184.0/22 133226 -103.226.188.0/22 55352 -103.226.200.0/22 133283 -103.226.204.0/22 55352 -103.226.208.0/22 59327 -103.226.212.0/22 131584 -103.226.216.0/23 59323 -103.226.218.0/24 133345 -103.226.219.0/24 59324 -103.226.220.0/22 38719 -103.226.224.0/22 134026 -103.226.228.0/23 36351 -103.226.230.0/23 29802 -103.226.232.0/22 59276 -103.226.237.0/24 55352 -103.226.238.0/23 55352 -103.226.240.0/22 55352 -103.226.244.0/23 1221 -103.226.246.0/24 58722 -103.226.247.0/24 133397 -103.226.248.0/22 135905 -103.226.252.0/24 133396 -103.226.255.0/24 133396 -103.227.1.0/24 132335 -103.227.2.0/24 38722 -103.227.3.0/24 55343 -103.227.8.0/22 4686 -103.227.12.0/23 133391 -103.227.15.0/24 133404 -103.227.16.0/22 133202 -103.227.20.0/22 56307 -103.227.24.0/24 10143 -103.227.25.0/24 4826 -103.227.28.0/23 45671 -103.227.32.0/22 131589 -103.227.36.0/22 17439 -103.227.42.0/23 32110 -103.227.44.0/22 45858 -103.227.52.0/23 45184 -103.227.54.0/24 45184 -103.227.56.0/22 133427 -103.227.60.0/23 133403 -103.227.62.0/24 132937 -103.227.64.0/23 133556 -103.227.66.0/24 58511 -103.227.67.0/24 132791 -103.227.68.0/22 132453 -103.227.76.0/22 4808 -103.227.80.0/22 4808 -103.227.84.0/24 133405 -103.227.86.0/23 133405 -103.227.88.0/22 134078 -103.227.96.0/22 24309 -103.227.104.0/22 10021 -103.227.111.0/24 1221 -103.227.112.0/22 38726 -103.227.116.0/22 133285 -103.227.120.0/23 4837 -103.227.122.0/23 23724 -103.227.128.0/22 59214 -103.227.136.0/22 4837 -103.227.140.0/24 133408 -103.227.141.0/24 131743 -103.227.142.0/23 131743 -103.227.144.0/22 59155 -103.227.149.0/24 131769 -103.227.150.0/24 132239 -103.227.151.0/24 58880 -103.227.156.0/22 29802 -103.227.160.0/22 17676 -103.227.164.0/23 133411 -103.227.168.0/23 133409 -103.227.170.0/23 9790 -103.227.172.0/22 58424 -103.227.176.0/22 55293 -103.227.181.0/24 9652 -103.227.183.0/24 9652 -103.227.188.0/22 7514 -103.227.192.0/22 9381 -103.227.200.0/22 24516 -103.227.208.0/22 36351 -103.227.216.0/22 131402 -103.227.222.0/24 55685 -103.227.224.0/22 131590 -103.227.228.0/22 131526 -103.227.232.0/24 133413 -103.227.233.0/24 133195 -103.227.234.0/23 133415 -103.227.236.0/22 59216 -103.227.240.0/22 59278 -103.227.244.0/22 132045 -103.227.252.0/22 59279 -103.228.0.0/22 59332 -103.228.4.0/22 56050 -103.228.17.0/24 133343 -103.228.19.0/24 133282 -103.228.20.0/22 131401 -103.228.24.0/22 59280 -103.228.28.0/22 38277 -103.228.32.0/23 58963 -103.228.34.0/23 18229 -103.228.40.0/22 45415 -103.228.44.0/22 58659 -103.228.49.0/24 59242 -103.228.50.0/24 133288 -103.228.51.0/24 18229 -103.228.52.0/22 55720 -103.228.56.0/22 133421 -103.228.60.0/22 24295 -103.228.64.0/22 55720 -103.228.68.0/22 134548 -103.228.76.0/22 45117 -103.228.80.0/23 16625 -103.228.82.0/24 133424 -103.228.83.0/24 59261 -103.228.92.0/22 131324 -103.228.96.0/24 4766 -103.228.98.0/24 3356 -103.228.99.0/24 4766 -103.228.100.0/24 133422 -103.228.101.0/24 17804 -103.228.102.0/24 38823 -103.228.104.0/23 33438 -103.228.108.0/23 134705 -103.228.110.0/23 136743 -103.228.112.0/22 58640 -103.228.116.0/22 56242 -103.228.120.0/22 133430 -103.228.124.0/22 7175 -103.228.128.0/22 62468 -103.228.132.0/24 203098 -103.228.134.0/23 63914 -103.228.136.0/22 4611 -103.228.140.0/22 133237 -103.228.144.0/22 45916 -103.228.148.0/22 133296 -103.228.152.0/22 133296 -103.228.156.0/22 56167 -103.228.160.0/22 134764 -103.228.164.0/22 38220 -103.228.168.0/22 40065 -103.228.180.0/22 9381 -103.228.188.0/22 133431 -103.228.192.0/23 133279 -103.228.194.0/23 133602 -103.228.196.0/22 24295 -103.228.200.0/23 64005 -103.228.202.0/23 137997 -103.228.204.0/23 4808 -103.228.208.0/22 63581 -103.228.212.0/22 133435 -103.228.216.0/22 131587 -103.228.220.0/22 45648 -103.228.224.0/22 203098 -103.228.228.0/22 17621 -103.228.236.0/23 38778 -103.228.240.0/24 24201 -103.228.244.0/22 59282 -103.228.248.0/24 133344 -103.228.249.0/24 133281 -103.228.250.0/23 45804 -103.228.252.0/22 24337 -103.229.1.0/24 45671 -103.229.2.0/23 36351 -103.229.4.0/24 58916 -103.229.5.0/24 133238 -103.229.6.0/23 133438 -103.229.8.0/22 27281 -103.229.16.0/24 133089 -103.229.18.0/23 132053 -103.229.24.0/22 55341 -103.229.28.0/22 62468 -103.229.32.0/22 10204 -103.229.36.0/22 133296 -103.229.40.0/22 45903 -103.229.44.0/22 59340 -103.229.48.0/23 59346 -103.229.50.0/24 131603 -103.229.56.0/24 45960 -103.229.58.0/23 45960 -103.229.60.0/22 55933 -103.229.64.0/22 55720 -103.229.68.0/22 135572 -103.229.72.0/22 55660 -103.229.76.0/23 133346 -103.229.80.0/23 59341 -103.229.82.0/23 10075 -103.229.84.0/22 133443 -103.229.92.0/22 56050 -103.229.98.0/23 132240 -103.229.100.0/22 38851 -103.229.104.0/22 59342 -103.229.108.0/22 56050 -103.229.112.0/22 133444 -103.229.116.0/22 55933 -103.229.120.0/22 17882 -103.229.124.0/22 55933 -103.229.128.0/24 133449 -103.229.129.0/24 133309 -103.229.130.0/24 9790 -103.229.132.0/24 131588 -103.229.134.0/23 131588 -103.229.144.0/22 55720 -103.229.148.0/22 4837 -103.229.156.0/22 9454 -103.229.160.0/22 59288 -103.229.165.0/24 131759 -103.229.176.0/22 133453 -103.229.180.0/22 138415 -103.229.187.0/24 131999 -103.229.192.0/22 131404 -103.229.198.0/23 9542 -103.229.200.0/23 59285 -103.229.202.0/23 131734 -103.229.204.0/22 30419 -103.229.208.0/22 133296 -103.229.212.0/22 138950 -103.229.216.0/21 45110 -103.229.224.0/22 55720 -103.229.236.0/22 45110 -103.229.244.0/22 132770 -103.229.248.0/24 133451 -103.229.249.0/24 18378 -103.229.250.0/23 17439 -103.230.4.0/22 59347 -103.230.8.0/22 18126 -103.230.13.0/24 55953 -103.230.14.0/23 55953 -103.230.16.0/24 55953 -103.230.17.0/24 58682 -103.230.20.0/22 45235 -103.230.24.0/22 24295 -103.230.32.0/24 133054 -103.230.33.0/24 132415 -103.230.34.0/23 133054 -103.230.36.0/22 132717 -103.230.48.0/23 23679 -103.230.50.0/23 133456 -103.230.52.0/23 133296 -103.230.55.0/24 133296 -103.230.56.0/24 45352 -103.230.59.0/24 9286 -103.230.60.0/22 9441 -103.230.64.0/22 55303 -103.230.71.0/24 45887 -103.230.76.0/22 45177 -103.230.80.0/24 9795 -103.230.84.0/22 132717 -103.230.88.0/22 55303 -103.230.100.0/24 134634 -103.230.101.0/24 133240 -103.230.102.0/23 133240 -103.230.104.0/22 45925 -103.230.108.0/22 135357 -103.230.120.0/22 62468 -103.230.124.0/22 132111 -103.230.132.0/24 56134 -103.230.135.0/24 56134 -103.230.136.0/22 133405 -103.230.140.0/24 8100 -103.230.141.0/24 204136 -103.230.142.0/24 206804 -103.230.143.0/24 203098 -103.230.144.0/22 55720 -103.230.148.0/22 133720 -103.230.152.0/22 133278 -103.230.156.0/22 133159 -103.230.164.0/24 134819 -103.230.165.0/24 134822 -103.230.166.0/24 133233 -103.230.167.0/24 133281 -103.230.168.0/22 59093 -103.230.172.0/23 38716 -103.230.180.0/22 59353 -103.230.184.0/22 135039 -103.230.188.0/23 133349 -103.230.192.0/23 137941 -103.230.194.0/24 137941 -103.230.200.0/22 59010 -103.230.208.0/22 131247 -103.230.212.0/22 4847 -103.230.216.0/22 133115 -103.230.220.0/22 17665 -103.230.224.0/23 133281 -103.230.226.0/23 132566 -103.230.232.0/23 133470 -103.230.234.0/23 133471 -103.230.236.0/22 133775 -103.230.240.0/22 38197 -103.230.248.0/22 5580 -103.230.252.0/22 59355 -103.231.0.0/24 45194 -103.231.1.0/24 17625 -103.231.2.0/23 45194 -103.231.4.0/22 133234 -103.231.8.0/22 18229 -103.231.12.0/22 55933 -103.231.16.0/24 17621 -103.231.27.0/24 133479 -103.231.28.0/22 38197 -103.231.32.0/22 133235 -103.231.36.0/24 17408 -103.231.37.0/24 9311 -103.231.38.0/24 17408 -103.231.39.0/24 9311 -103.231.40.0/22 18229 -103.231.44.0/24 132779 -103.231.45.0/24 59165 -103.231.46.0/24 59165 -103.231.47.0/24 132779 -103.231.48.0/23 131591 -103.231.56.0/22 58985 -103.231.60.0/22 136967 -103.231.64.0/21 4808 -103.231.72.0/22 2519 -103.231.76.0/22 18229 -103.231.80.0/23 131735 -103.231.82.0/23 59287 -103.231.84.0/23 134176 -103.231.88.0/22 133480 -103.231.92.0/22 133384 -103.231.96.0/23 7473 -103.231.98.0/23 62713 -103.231.100.0/22 18229 -103.231.104.0/24 24000 -103.231.105.0/24 26484 -103.231.106.0/23 24000 -103.231.112.0/22 45724 -103.231.116.0/22 58640 -103.231.121.0/24 7713 -103.231.123.0/24 58731 -103.231.124.0/22 18229 -103.231.134.0/24 59366 -103.231.135.0/24 59361 -103.231.136.0/23 49596 -103.231.138.0/24 49596 -103.231.139.0/24 43233 -103.231.140.0/22 7479 -103.231.144.0/22 4837 -103.231.148.0/22 131407 -103.231.156.0/23 37999 -103.231.158.0/24 56294 -103.231.159.0/24 55567 -103.231.160.0/22 59362 -103.231.164.0/22 38197 -103.231.168.0/23 55567 -103.231.176.0/24 24323 -103.231.178.0/24 24323 -103.231.184.0/24 40676 -103.231.187.0/24 24000 -103.231.188.0/22 17831 -103.231.192.0/22 59094 -103.231.196.0/23 38758 -103.231.198.0/23 16625 -103.231.200.0/22 133352 -103.231.204.0/22 133494 -103.231.208.0/21 18229 -103.231.216.0/22 132556 -103.231.222.0/23 133236 -103.231.224.0/24 133461 -103.231.228.0/22 59365 -103.231.232.0/24 133491 -103.231.237.0/24 23818 -103.231.240.0/22 133498 -103.231.250.0/24 54229 -103.231.251.0/24 133164 -103.231.252.0/22 133380 -103.232.0.0/22 133485 -103.232.8.0/22 133315 -103.232.12.0/22 17676 -103.232.16.0/22 3257 -103.232.24.0/22 58678 -103.232.28.0/23 133164 -103.232.31.0/24 55845 -103.232.32.0/23 133354 -103.232.34.0/23 5580 -103.232.36.0/22 133488 -103.232.40.0/22 38794 -103.232.44.0/22 59367 -103.232.48.0/22 45668 -103.232.56.0/22 131408 -103.232.64.0/22 137311 -103.232.72.0/22 4686 -103.232.76.0/22 131270 -103.232.80.0/22 133500 -103.232.84.0/22 55720 -103.232.88.0/22 9381 -103.232.96.0/22 59368 -103.232.100.0/22 23688 -103.232.104.0/22 23655 -103.232.108.0/24 4648 -103.232.112.0/22 38571 -103.232.116.0/22 17477 -103.232.120.0/22 56150 -103.232.124.0/22 133246 -103.232.128.0/22 59164 -103.232.136.0/22 55720 -103.232.140.0/23 133501 -103.232.142.0/23 58796 -103.232.144.0/22 4837 -103.232.148.0/22 133247 -103.232.152.0/22 4007 -103.232.156.0/23 58666 -103.232.158.0/24 58666 -103.232.159.0/24 132394 -103.232.160.0/22 58507 -103.232.168.0/23 58589 -103.232.172.0/22 133296 -103.232.180.0/22 58666 -103.232.184.0/22 55734 -103.232.188.0/22 137443 -103.232.192.0/22 55329 -103.232.196.0/22 38835 -103.232.200.0/22 24295 -103.232.204.0/23 131168 -103.232.206.0/24 135352 -103.232.207.0/24 396388 -103.232.208.0/22 134067 -103.232.212.0/24 133492 -103.232.213.0/24 40065 -103.232.214.0/24 4842 -103.232.215.0/24 138570 -103.232.216.0/23 132394 -103.232.218.0/24 133523 -103.232.220.0/22 59371 -103.232.224.0/24 125 -103.232.225.0/24 55816 -103.232.226.0/23 133607 -103.232.228.0/22 55427 -103.232.232.0/22 133248 -103.232.236.0/22 17665 -103.232.240.0/24 63497 -103.232.241.0/24 59193 -103.232.242.0/23 63497 -103.232.244.0/23 133674 -103.232.246.0/24 9830 -103.232.247.0/24 133674 -103.232.248.0/22 9507 -103.232.252.0/22 38330 -103.233.0.0/22 46015 -103.233.4.0/22 17638 -103.233.8.0/22 133201 -103.233.12.0/22 14127 -103.233.16.0/22 45270 -103.233.20.0/22 18159 -103.233.24.0/23 133296 -103.233.26.0/23 23033 -103.233.28.0/23 133509 -103.233.30.0/23 56038 -103.233.32.0/22 7629 -103.233.36.0/22 9299 -103.233.40.0/22 2516 -103.233.48.0/22 131410 -103.233.52.0/22 4847 -103.233.56.0/22 59370 -103.233.60.0/22 23735 -103.233.64.0/22 17465 -103.233.68.0/22 18046 -103.233.74.0/23 133332 -103.233.76.0/22 18229 -103.233.80.0/22 45652 -103.233.84.0/22 59161 -103.233.88.0/23 56233 -103.233.92.0/24 137166 -103.233.93.0/24 17665 -103.233.94.0/24 17665 -103.233.95.0/24 137166 -103.233.96.0/22 59371 -103.233.100.0/24 133357 -103.233.101.0/24 133230 -103.233.102.0/23 64315 -103.233.104.0/22 18243 -103.233.108.0/22 63488 -103.233.112.0/22 45415 -103.233.116.0/22 58965 -103.233.120.0/24 36351 -103.233.121.0/24 63840 -103.233.122.0/23 133469 -103.233.124.0/22 18229 -103.233.128.0/22 63691 -103.233.132.0/22 134359 -103.233.136.0/24 63696 -103.233.138.0/24 63697 -103.233.140.0/23 132296 -103.233.142.0/23 38505 -103.233.144.0/23 23947 -103.233.146.0/24 23947 -103.233.147.0/24 131111 -103.233.148.0/22 9822 -103.233.152.0/22 17451 -103.233.156.0/24 23947 -103.233.157.0/24 131111 -103.233.158.0/23 23947 -103.233.168.0/22 45117 -103.233.172.0/22 15580 -103.233.180.0/24 133084 -103.233.182.0/24 133092 -103.233.183.0/24 133533 -103.233.184.0/22 138415 -103.233.188.0/22 4609 -103.233.192.0/22 59374 -103.233.196.0/22 58793 -103.233.200.0/22 38566 -103.233.204.0/22 133524 -103.233.208.0/22 9913 -103.233.216.0/23 133249 -103.233.218.0/24 133249 -103.233.220.0/22 45177 -103.233.224.0/22 38790 -103.233.232.0/22 4760 -103.233.236.0/22 9650 -103.233.240.0/23 133535 -103.233.242.0/24 133530 -103.233.243.0/24 133520 -103.233.244.0/24 133003 -103.233.248.0/22 132839 -103.233.252.0/24 134705 -103.233.254.0/23 136743 -103.234.4.0/22 38684 -103.234.8.0/22 133115 -103.234.13.0/24 131194 -103.234.14.0/23 135099 -103.234.16.0/22 8304 -103.234.20.0/22 4808 -103.234.24.0/22 38200 -103.234.36.0/22 45538 -103.234.40.0/22 9919 -103.234.44.0/22 9311 -103.234.52.0/22 132839 -103.234.56.0/22 4837 -103.234.60.0/23 59376 -103.234.64.0/22 138730 -103.234.68.0/23 46071 -103.234.70.0/24 18229 -103.234.72.0/23 136933 -103.234.76.0/22 38851 -103.234.80.0/22 17710 -103.234.84.0/23 134078 -103.234.86.0/24 4628 -103.234.92.0/24 133546 -103.234.93.0/24 139538 -103.234.94.0/24 133255 -103.234.96.0/22 135357 -103.234.100.0/22 132435 -103.234.104.0/22 10091 -103.234.108.0/22 133534 -103.234.112.0/23 133538 -103.234.114.0/24 133230 -103.234.116.0/23 132937 -103.234.118.0/23 45671 -103.234.120.0/22 18004 -103.234.128.0/23 4812 -103.234.130.0/23 9929 -103.234.132.0/22 17705 -103.234.136.0/22 133317 -103.234.140.0/22 9381 -103.234.144.0/23 133540 -103.234.147.0/24 133540 -103.234.148.0/24 133541 -103.234.149.0/24 133256 -103.234.156.0/23 55839 -103.234.162.0/24 133260 -103.234.163.0/24 1221 -103.234.164.0/24 38200 -103.234.167.0/24 38200 -103.234.168.0/22 59349 -103.234.176.0/22 59097 -103.234.184.0/22 17439 -103.234.194.0/24 131581 -103.234.195.0/24 45286 -103.234.196.0/22 2516 -103.234.200.0/22 59378 -103.234.208.0/22 38767 -103.234.212.0/23 24554 -103.234.214.0/24 136800 -103.234.215.0/24 24554 -103.234.216.0/22 38496 -103.234.220.0/24 9381 -103.234.224.0/24 24169 -103.234.225.0/24 18046 -103.234.226.0/23 18046 -103.234.232.0/22 133542 -103.234.236.0/22 59379 -103.234.240.0/22 24554 -103.234.248.0/22 133389 -103.234.252.0/22 38320 -103.235.0.0/24 17665 -103.235.1.0/24 137166 -103.235.2.0/23 137166 -103.235.4.0/24 8100 -103.235.6.0/24 24155 -103.235.12.0/22 2516 -103.235.16.0/24 64021 -103.235.17.0/24 132422 -103.235.18.0/24 132422 -103.235.19.0/24 64021 -103.235.20.0/24 7575 -103.235.22.0/24 133548 -103.235.23.0/24 135244 -103.235.30.0/24 23659 -103.235.32.0/22 38320 -103.235.40.0/22 45680 -103.235.44.0/22 55967 -103.235.52.0/22 45671 -103.235.64.0/24 36351 -103.235.66.0/23 63490 -103.235.72.0/22 135444 -103.235.76.0/22 45814 -103.235.84.0/24 134366 -103.235.96.0/23 133553 -103.235.104.0/22 17439 -103.235.108.0/24 56210 -103.235.109.0/24 38320 -103.235.110.0/23 45879 -103.235.112.0/22 9354 -103.235.116.0/22 9268 -103.235.120.0/22 133315 -103.235.124.0/22 9622 -103.235.136.0/22 59009 -103.235.152.0/23 38320 -103.235.155.0/24 132518 -103.235.156.0/24 133314 -103.235.164.0/22 135031 -103.235.168.0/22 63888 -103.235.172.0/22 133549 -103.235.176.0/23 59381 -103.235.179.0/24 59381 -103.235.180.0/22 24295 -103.235.184.0/22 58519 -103.235.188.0/22 134555 -103.235.196.0/22 4007 -103.235.200.0/22 4847 -103.235.206.0/23 58678 -103.235.208.0/22 55309 -103.235.212.0/22 45538 -103.235.220.0/22 4808 -103.235.224.0/19 4808 -103.236.100.0/22 63888 -103.236.108.0/22 23033 -103.236.112.0/23 45194 -103.236.114.0/24 45194 -103.236.115.0/24 136334 -103.236.116.0/24 134253 -103.236.118.0/24 134463 -103.236.119.0/24 134515 -103.236.120.0/22 4837 -103.236.132.0/22 38193 -103.236.136.0/23 4646 -103.236.144.0/22 59094 -103.236.148.0/24 55664 -103.236.149.0/24 25369 -103.236.150.0/23 55664 -103.236.152.0/22 58659 -103.236.160.0/23 45720 -103.236.162.0/23 133159 -103.236.176.0/22 135607 -103.236.180.0/22 3786 -103.236.188.0/22 63878 -103.236.192.0/24 63886 -103.236.193.0/24 18229 -103.236.196.0/22 17617 -103.236.200.0/24 134280 -103.236.201.0/24 136052 -103.236.202.0/24 23686 -103.236.203.0/24 134555 -103.236.216.0/22 26658 -103.236.220.0/22 137445 -103.236.228.0/22 134553 -103.236.240.0/22 4837 -103.236.244.0/22 4847 -103.236.248.0/21 133774 -103.237.0.0/20 4808 -103.237.20.0/22 38387 -103.237.32.0/23 58558 -103.237.35.0/24 58558 -103.237.36.0/22 59382 -103.237.40.0/22 133579 -103.237.44.0/22 133296 -103.237.53.0/24 133588 -103.237.54.0/23 27568 -103.237.56.0/22 134863 -103.237.60.0/22 131412 -103.237.64.0/24 45896 -103.237.72.0/23 38186 -103.237.75.0/24 38186 -103.237.76.0/22 132622 -103.237.80.0/24 133587 -103.237.81.0/24 133582 -103.237.82.0/24 133584 -103.237.83.0/24 197711 -103.237.96.0/22 45899 -103.237.100.0/24 64021 -103.237.101.0/24 132422 -103.237.102.0/24 64021 -103.237.103.0/24 132422 -103.237.104.0/23 53580 -103.237.108.0/22 45454 -103.237.112.0/22 133320 -103.237.116.0/22 45942 -103.237.120.0/22 38661 -103.237.124.0/22 133613 -103.237.128.0/22 24637 -103.237.132.0/23 55854 -103.237.135.0/24 133312 -103.237.136.0/23 7474 -103.237.140.0/23 38320 -103.237.142.0/24 133600 -103.237.143.0/24 133449 -103.237.144.0/22 131414 -103.237.148.0/22 45538 -103.237.156.0/22 132934 -103.237.160.0/22 7600 -103.237.164.0/22 45177 -103.237.168.0/23 133449 -103.237.170.0/24 133258 -103.237.171.0/24 133603 -103.237.172.0/22 133647 -103.237.248.0/21 4808 -103.238.0.0/21 4808 -103.238.11.0/24 133259 -103.238.12.0/22 45117 -103.238.16.0/23 132203 -103.238.18.0/23 45090 -103.238.60.0/24 133604 -103.238.61.0/24 133258 -103.238.62.0/24 133493 -103.238.63.0/24 133610 -103.238.68.0/22 24088 -103.238.72.0/22 24088 -103.238.76.0/22 45538 -103.238.80.0/22 23470 -103.238.84.0/22 10200 -103.238.96.0/23 59073 -103.238.98.0/24 59073 -103.238.100.0/22 133296 -103.238.104.0/21 45916 -103.238.116.0/22 133606 -103.238.124.0/23 132196 -103.238.126.0/24 132196 -103.238.132.0/22 4847 -103.238.136.0/24 138841 -103.238.137.0/24 23679 -103.238.138.0/23 133359 -103.238.144.0/22 4808 -103.238.148.0/24 45595 -103.238.149.0/24 24319 -103.238.150.0/23 16625 -103.238.158.0/23 131232 -103.238.160.0/23 4837 -103.238.162.0/23 4808 -103.238.164.0/24 139297 -103.238.180.0/23 55994 -103.238.182.0/23 137443 -103.238.184.0/23 55994 -103.238.188.0/22 59072 -103.238.192.0/24 133313 -103.238.193.0/24 133262 -103.238.194.0/24 133393 -103.238.195.0/24 133616 -103.238.200.0/24 23679 -103.238.201.0/24 138818 -103.238.202.0/23 23679 -103.238.204.0/22 4847 -103.238.208.0/22 131413 -103.238.212.0/23 131428 -103.238.214.0/23 45899 -103.238.220.0/22 132952 -103.238.224.0/22 55933 -103.238.228.0/23 133000 -103.238.231.0/24 133000 -103.238.236.0/22 17931 -103.238.240.0/22 17747 -103.238.252.0/22 24137 -103.239.4.0/23 133605 -103.239.6.0/24 133605 -103.239.8.0/22 18119 -103.239.16.0/22 131896 -103.239.24.0/22 59346 -103.239.28.0/24 64021 -103.239.29.0/24 132422 -103.239.30.0/23 64021 -103.239.32.0/22 131417 -103.239.48.0/23 134985 -103.239.50.0/24 133296 -103.239.51.0/24 133615 -103.239.52.0/22 23673 -103.239.56.0/22 133320 -103.239.60.0/22 24157 -103.239.72.0/22 62468 -103.239.76.0/23 133394 -103.239.79.0/24 45780 -103.239.84.0/22 132770 -103.239.92.0/22 2516 -103.239.96.0/22 134548 -103.239.100.0/23 132422 -103.239.102.0/24 64021 -103.239.103.0/24 132422 -103.239.104.0/24 63519 -103.239.106.0/23 136757 -103.239.108.0/22 37922 -103.239.112.0/22 9974 -103.239.116.0/22 131419 -103.239.120.0/23 131418 -103.239.122.0/24 131418 -103.239.124.0/24 133266 -103.239.125.0/24 133262 -103.239.127.0/24 133609 -103.239.132.0/22 132007 -103.239.138.0/23 17439 -103.239.140.0/23 138220 -103.239.142.0/23 59162 -103.239.144.0/22 133269 -103.239.152.0/22 58540 -103.239.160.0/24 38201 -103.239.164.0/24 133144 -103.239.165.0/24 131719 -103.239.166.0/23 58414 -103.239.168.0/22 133001 -103.239.176.0/22 58962 -103.239.188.0/22 23693 -103.239.200.0/22 17970 -103.239.204.0/22 59043 -103.239.212.0/24 7575 -103.239.213.0/24 203098 -103.239.216.0/22 24295 -103.239.220.0/22 64010 -103.239.224.0/22 58541 -103.239.228.0/22 55715 -103.239.232.0/22 133272 -103.239.240.0/22 38676 -103.239.244.0/23 4837 -103.239.246.0/23 23650 -103.239.252.0/22 63526 -103.240.8.0/22 133720 -103.240.12.0/22 139468 -103.240.16.0/22 4808 -103.240.28.0/22 7563 -103.240.32.0/22 132923 -103.240.36.0/22 4837 -103.240.44.0/22 38067 -103.240.48.0/22 17589 -103.240.52.0/22 38319 -103.240.60.0/23 38794 -103.240.62.0/24 135670 -103.240.63.0/24 38794 -103.240.64.0/22 9381 -103.240.76.0/22 45916 -103.240.80.0/24 9919 -103.240.81.0/24 9311 -103.240.82.0/24 9919 -103.240.83.0/24 9311 -103.240.84.0/22 4837 -103.240.88.0/24 38880 -103.240.89.0/24 17439 -103.240.90.0/23 17439 -103.240.96.0/22 23860 -103.240.100.0/22 55839 -103.240.104.0/22 132986 -103.240.108.0/22 58819 -103.240.112.0/22 38209 -103.240.116.0/22 24295 -103.240.120.0/22 17639 -103.240.124.0/22 4837 -103.240.128.0/22 38258 -103.240.132.0/24 58473 -103.240.133.0/24 133399 -103.240.134.0/23 59346 -103.240.136.0/23 133028 -103.240.140.0/22 53587 -103.240.144.0/22 58986 -103.240.148.0/22 135391 -103.240.152.0/22 131227 -103.240.156.0/22 62468 -103.240.160.0/22 45916 -103.240.164.0/22 136557 -103.240.168.0/24 45916 -103.240.170.0/23 45916 -103.240.176.0/22 58983 -103.240.180.0/22 55933 -103.240.184.0/22 133043 -103.240.192.0/22 132453 -103.240.196.0/22 58985 -103.240.200.0/22 55933 -103.240.204.0/24 45916 -103.240.206.0/23 45916 -103.240.210.0/23 45916 -103.240.212.0/22 133296 -103.240.216.0/22 55303 -103.240.220.0/24 136610 -103.240.221.0/24 133052 -103.240.222.0/24 133048 -103.240.224.0/22 6507 -103.240.232.0/21 132453 -103.240.240.0/22 55511 -103.240.244.0/22 4808 -103.240.248.0/22 38192 -103.240.252.0/22 24295 -103.241.4.0/23 132676 -103.241.6.0/23 133382 -103.241.8.0/22 55303 -103.241.16.0/23 58779 -103.241.19.0/24 58779 -103.241.20.0/24 45954 -103.241.22.0/23 45954 -103.241.24.0/24 58820 -103.241.25.0/24 133055 -103.241.26.0/24 133057 -103.241.27.0/24 133051 -103.241.28.0/22 55303 -103.241.32.0/22 55303 -103.241.44.0/22 45916 -103.241.48.0/22 55933 -103.241.52.0/22 132335 -103.241.56.0/22 55850 -103.241.61.0/24 56300 -103.241.62.0/23 56300 -103.241.64.0/22 2519 -103.241.72.0/22 38197 -103.241.76.0/22 55303 -103.241.80.0/23 132770 -103.241.82.0/24 132770 -103.241.83.0/24 132956 -103.241.84.0/24 36351 -103.241.85.0/24 134433 -103.241.86.0/24 134433 -103.241.87.0/24 36351 -103.241.88.0/23 45215 -103.241.90.0/23 23838 -103.241.100.0/22 133062 -103.241.104.0/24 17088 -103.241.105.0/24 55854 -103.241.106.0/23 56300 -103.241.108.0/22 21299 -103.241.112.0/21 55303 -103.241.128.0/22 4694 -103.241.132.0/22 133296 -103.241.136.0/22 18229 -103.241.140.0/23 55839 -103.241.143.0/24 55839 -103.241.144.0/22 18229 -103.241.148.0/24 58868 -103.241.150.0/24 132198 -103.241.151.0/24 133114 -103.241.156.0/23 38742 -103.241.158.0/24 38742 -103.241.159.0/24 133066 -103.241.164.0/22 9381 -103.241.168.0/22 23033 -103.241.176.0/23 132583 -103.241.178.0/23 45289 -103.241.180.0/22 18229 -103.241.196.0/22 9822 -103.241.200.0/22 7604 -103.241.204.0/22 132678 -103.241.208.0/23 18121 -103.241.210.0/23 18282 -103.241.212.0/22 30456 -103.241.216.0/22 133046 -103.241.225.0/24 45916 -103.241.226.0/23 45916 -103.241.228.0/22 63199 -103.241.232.0/24 132977 -103.241.234.0/24 45916 -103.241.236.0/22 55303 -103.241.240.0/23 133030 -103.241.242.0/23 132768 -103.241.244.0/22 132984 -103.241.248.0/22 131389 -103.241.252.0/23 133094 -103.242.0.0/22 55933 -103.242.4.0/22 24295 -103.242.12.0/22 133070 -103.242.16.0/22 38891 -103.242.20.0/22 24432 -103.242.24.0/22 55561 -103.242.28.0/22 37907 -103.242.33.0/24 45481 -103.242.34.0/23 45481 -103.242.36.0/23 131291 -103.242.38.0/23 132268 -103.242.40.0/22 131454 -103.242.44.0/22 9934 -103.242.48.0/24 132268 -103.242.49.0/24 133044 -103.242.50.0/23 58697 -103.242.52.0/22 131390 -103.242.56.0/22 55769 -103.242.60.0/22 58640 -103.242.64.0/23 4847 -103.242.66.0/24 56308 -103.242.67.0/24 138011 -103.242.68.0/22 133075 -103.242.72.0/22 41095 -103.242.84.0/23 134642 -103.242.92.0/22 63956 -103.242.97.0/24 132167 -103.242.98.0/23 132167 -103.242.101.0/24 133126 -103.242.102.0/23 133126 -103.242.104.0/22 58821 -103.242.108.0/22 131324 -103.242.112.0/22 4686 -103.242.116.0/22 133296 -103.242.120.0/22 55862 -103.242.124.0/23 58822 -103.242.127.0/24 38201 -103.242.130.0/24 133475 -103.242.132.0/22 55933 -103.242.136.0/22 131459 -103.242.141.0/24 58411 -103.242.142.0/24 58411 -103.242.144.0/22 55303 -103.242.148.0/23 132310 -103.242.152.0/22 45884 -103.242.156.0/22 55862 -103.242.164.0/22 133137 -103.242.168.0/23 4812 -103.242.170.0/24 4812 -103.242.172.0/22 4808 -103.242.180.0/23 38788 -103.242.182.0/24 59204 -103.242.184.0/22 132957 -103.242.188.0/22 23860 -103.242.192.0/22 10971 -103.242.196.0/22 23860 -103.242.200.0/22 4808 -103.242.204.0/22 23756 -103.242.210.0/23 133057 -103.242.212.0/22 58852 -103.242.217.0/24 59203 -103.242.224.0/22 23872 -103.242.228.0/24 23838 -103.242.232.0/24 132990 -103.242.233.0/24 58824 -103.242.235.0/24 133102 -103.242.236.0/22 132556 -103.242.244.0/22 133096 -103.242.248.0/22 55359 -103.242.252.0/22 2519 -103.243.0.0/22 10103 -103.243.4.0/24 135817 -103.243.5.0/24 134026 -103.243.6.0/24 134026 -103.243.7.0/24 136724 -103.243.12.0/23 33047 -103.243.14.0/24 33047 -103.243.16.0/24 58739 -103.243.17.0/24 133093 -103.243.18.0/24 59207 -103.243.20.0/22 55303 -103.243.24.0/22 55933 -103.243.28.0/24 55757 -103.243.29.0/24 132991 -103.243.34.0/23 9752 -103.243.36.0/22 55303 -103.243.40.0/22 134331 -103.243.44.0/22 132976 -103.243.51.0/24 56258 -103.243.52.0/23 132116 -103.243.54.0/23 132974 -103.243.56.0/24 17439 -103.243.60.0/23 132754 -103.243.62.0/23 134872 -103.243.64.0/22 60725 -103.243.68.0/22 59216 -103.243.72.0/23 29802 -103.243.74.0/24 29802 -103.243.75.0/24 36351 -103.243.80.0/24 58601 -103.243.81.0/24 24323 -103.243.82.0/24 24323 -103.243.83.0/24 58601 -103.243.84.0/22 38826 -103.243.88.0/23 55507 -103.243.90.0/24 133108 -103.243.91.0/24 133143 -103.243.92.0/22 59214 -103.243.96.0/22 133187 -103.243.100.0/22 58451 -103.243.107.0/24 131394 -103.243.110.0/24 133120 -103.243.112.0/22 132770 -103.243.116.0/22 59215 -103.243.120.0/22 2519 -103.243.124.0/22 133320 -103.243.128.0/22 55933 -103.243.132.0/22 59161 -103.243.136.0/22 133118 -103.243.140.0/22 59209 -103.243.144.0/24 59221 -103.243.145.0/24 36351 -103.243.146.0/24 36351 -103.243.147.0/24 59221 -103.243.148.0/23 133122 -103.243.150.0/23 132257 -103.243.152.0/22 24295 -103.243.156.0/22 9930 -103.243.160.0/23 56304 -103.243.162.0/23 57844 -103.243.164.0/22 59217 -103.243.172.0/22 59210 -103.243.177.0/24 59131 -103.243.178.0/24 59132 -103.243.180.0/22 133115 -103.243.184.0/22 58659 -103.243.188.0/22 131199 -103.243.192.0/24 23678 -103.243.196.0/22 2514 -103.243.200.0/24 10038 -103.243.201.0/24 45974 -103.243.202.0/23 45974 -103.243.204.0/22 36351 -103.243.208.0/22 2519 -103.243.212.0/22 55720 -103.243.216.0/22 131391 -103.243.224.0/22 132948 -103.243.236.0/24 132981 -103.243.237.0/24 132995 -103.243.239.0/24 59256 -103.243.240.0/22 24295 -103.243.246.0/23 59133 -103.243.252.0/22 17621 -103.244.0.0/22 55720 -103.244.4.0/22 17747 -103.244.8.0/22 56308 -103.244.12.0/22 58691 -103.244.28.0/22 58757 -103.244.32.0/22 134855 -103.244.36.0/22 38500 -103.244.44.0/22 2514 -103.244.48.0/24 132151 -103.244.52.0/22 58779 -103.244.56.0/23 3320 -103.244.59.0/24 4808 -103.244.64.0/22 23724 -103.244.80.0/22 4808 -103.244.88.0/22 55933 -103.244.92.0/22 4686 -103.244.96.0/22 55669 -103.244.100.0/22 132526 -103.244.104.0/22 4686 -103.244.108.0/22 9526 -103.244.120.0/22 45117 -103.244.124.0/22 132527 -103.244.128.0/22 132529 -103.244.132.0/23 198381 -103.244.134.0/23 198247 -103.244.136.0/22 24088 -103.244.140.0/23 132530 -103.244.142.0/24 139870 -103.244.143.0/24 132530 -103.244.144.0/23 132404 -103.244.146.0/23 198504 -103.244.148.0/22 135357 -103.244.154.0/23 45625 -103.244.156.0/22 9381 -103.244.162.0/24 63967 -103.244.164.0/23 4837 -103.244.166.0/23 17638 -103.244.168.0/22 55839 -103.244.172.0/22 9541 -103.244.176.0/22 9541 -103.244.180.0/22 132509 -103.244.184.0/22 137467 -103.244.190.0/24 55764 -103.244.191.0/24 132512 -103.244.192.0/24 131251 -103.244.193.0/24 131253 -103.244.194.0/24 131258 -103.244.196.0/22 132532 -103.244.200.0/22 132533 -103.244.204.0/22 131759 -103.244.212.0/22 132534 -103.244.220.0/24 17408 -103.244.221.0/24 9311 -103.244.222.0/24 17408 -103.244.223.0/24 9311 -103.244.228.0/22 38442 -103.244.232.0/22 4808 -103.244.240.0/22 45804 -103.244.245.0/24 131761 -103.244.246.0/23 58795 -103.244.248.0/22 9902 -103.244.252.0/22 23724 -103.245.0.0/24 132539 -103.245.1.0/24 132518 -103.245.2.0/24 45804 -103.245.4.0/23 17819 -103.245.6.0/24 17819 -103.245.8.0/22 132540 -103.245.12.0/22 132453 -103.245.16.0/22 46023 -103.245.20.0/24 132516 -103.245.21.0/24 4755 -103.245.22.0/24 132520 -103.245.24.0/23 58796 -103.245.26.0/24 58796 -103.245.32.0/22 132519 -103.245.44.0/22 7754 -103.245.48.0/22 132535 -103.245.64.0/22 45415 -103.245.68.0/24 131442 -103.245.69.0/24 132497 -103.245.70.0/23 131442 -103.245.72.0/23 131763 -103.245.74.0/24 132587 -103.245.75.0/24 7474 -103.245.76.0/22 132590 -103.245.80.0/22 4812 -103.245.84.0/22 9268 -103.245.88.0/22 38044 -103.245.92.0/22 58621 -103.245.96.0/22 38031 -103.245.100.0/22 38457 -103.245.104.0/22 55832 -103.245.108.0/24 58800 -103.245.112.0/22 38794 -103.245.116.0/22 58640 -103.245.121.0/24 132546 -103.245.122.0/23 46056 -103.245.128.0/22 55982 -103.245.132.0/22 9541 -103.245.136.0/24 45725 -103.245.143.0/24 132575 -103.245.144.0/24 58405 -103.245.145.0/24 132583 -103.245.146.0/24 132578 -103.245.147.0/24 58759 -103.245.148.0/22 55313 -103.245.152.0/22 55884 -103.245.160.0/23 132579 -103.245.162.0/24 132579 -103.245.164.0/22 56309 -103.245.172.0/22 134244 -103.245.176.0/24 134839 -103.245.180.0/22 24532 -103.245.184.0/23 38058 -103.245.188.0/23 132556 -103.245.190.0/23 132549 -103.245.192.0/23 9541 -103.245.195.0/24 9541 -103.245.196.0/22 59164 -103.245.200.0/22 132542 -103.245.204.0/22 9441 -103.245.208.0/23 133405 -103.245.211.0/24 133405 -103.245.212.0/22 45926 -103.245.216.0/22 24516 -103.245.220.0/23 58580 -103.245.223.0/24 54113 -103.245.225.0/24 131765 -103.245.226.0/24 23679 -103.245.227.0/24 45949 -103.245.228.0/22 2519 -103.245.232.0/23 17408 -103.245.234.0/23 9311 -103.245.240.0/23 18024 -103.245.242.0/23 17660 -103.245.244.0/22 63741 -103.245.252.0/24 131440 -103.246.0.0/22 9422 -103.246.4.0/22 45654 -103.246.8.0/22 4837 -103.246.16.0/22 131447 -103.246.21.0/24 59243 -103.246.22.0/23 59243 -103.246.24.0/22 38566 -103.246.28.0/22 4647 -103.246.36.0/22 27471 -103.246.44.0/22 17771 -103.246.48.0/24 1873 -103.246.49.0/24 45150 -103.246.50.0/24 45581 -103.246.51.0/24 9479 -103.246.52.0/22 134220 -103.246.56.0/24 45991 -103.246.57.0/24 38099 -103.246.58.0/23 38678 -103.246.68.0/22 24259 -103.246.77.0/24 56302 -103.246.79.0/24 56276 -103.246.80.0/22 59125 -103.246.86.0/24 45916 -103.246.88.0/22 131310 -103.246.92.0/22 4628 -103.246.96.0/22 55555 -103.246.100.0/22 45594 -103.246.104.0/24 56144 -103.246.106.0/24 55479 -103.246.107.0/24 131778 -103.246.108.0/22 132165 -103.246.112.0/22 55720 -103.246.128.0/24 9479 -103.246.130.0/23 58408 -103.246.144.0/22 58447 -103.246.148.0/22 16509 -103.246.152.0/22 4837 -103.246.156.0/22 134401 -103.246.160.0/22 9381 -103.246.164.0/22 4686 -103.246.169.0/24 58385 -103.246.170.0/23 58438 -103.246.172.0/22 38680 -103.246.176.0/24 17408 -103.246.177.0/24 9919 -103.246.178.0/23 132827 -103.246.180.0/22 23937 -103.246.184.0/24 58383 -103.246.185.0/24 24538 -103.246.186.0/24 132015 -103.246.187.0/24 134849 -103.246.188.0/22 23884 -103.246.196.0/22 17929 -103.246.200.0/22 18705 -103.246.204.0/22 132022 -103.246.208.0/22 38851 -103.246.217.0/24 131310 -103.246.218.0/23 134823 -103.246.220.0/22 45903 -103.246.224.0/22 45243 -103.246.228.0/22 45348 -103.246.233.0/24 56270 -103.246.234.0/24 132020 -103.246.235.0/24 9482 -103.246.236.0/22 38701 -103.246.240.0/22 132137 -103.246.244.0/22 55933 -103.246.248.0/24 54046 -103.246.249.0/24 56030 -103.246.250.0/24 45671 -103.246.252.0/23 9311 -103.246.254.0/23 132827 -103.247.0.0/22 58511 -103.247.8.0/22 58487 -103.247.12.0/22 131706 -103.247.18.0/24 58489 -103.247.19.0/24 203098 -103.247.20.0/22 58485 -103.247.24.0/23 58491 -103.247.26.0/24 58491 -103.247.27.0/24 24225 -103.247.36.0/23 64089 -103.247.38.0/23 58604 -103.247.40.0/24 58486 -103.247.42.0/23 58486 -103.247.44.0/22 58688 -103.247.48.0/22 17470 -103.247.56.0/22 133101 -103.247.60.0/22 55423 -103.247.64.0/24 11086 -103.247.65.0/24 132710 -103.247.66.0/24 58515 -103.247.68.0/22 17408 -103.247.76.0/22 23907 -103.247.84.0/22 9353 -103.247.88.0/22 55902 -103.247.92.0/24 17794 -103.247.94.0/24 17794 -103.247.96.0/22 58529 -103.247.104.0/22 131181 -103.247.108.0/22 18106 -103.247.112.0/24 9924 -103.247.113.0/24 7532 -103.247.116.0/24 132136 -103.247.117.0/24 58561 -103.247.120.0/22 55666 -103.247.124.0/23 56126 -103.247.128.0/22 135126 -103.247.133.0/24 56300 -103.247.134.0/23 56300 -103.247.136.0/23 138331 -103.247.138.0/23 58516 -103.247.140.0/22 9381 -103.247.144.0/22 58441 -103.247.148.0/22 56202 -103.247.152.0/22 55785 -103.247.156.0/22 9381 -103.247.160.0/21 9381 -103.247.168.0/22 23724 -103.247.176.0/22 55971 -103.247.181.0/24 59105 -103.247.182.0/23 38498 -103.247.184.0/23 133050 -103.247.189.0/24 23818 -103.247.190.0/24 23818 -103.247.191.0/24 24282 -103.247.192.0/22 45475 -103.247.196.0/23 55699 -103.247.199.0/24 45755 -103.247.204.0/24 133151 -103.247.205.0/24 58521 -103.247.206.0/23 58521 -103.247.208.0/24 132135 -103.247.209.0/24 58522 -103.247.210.0/24 5629 -103.247.211.0/24 134655 -103.247.212.0/24 4847 -103.247.216.0/22 58495 -103.247.220.0/22 55629 -103.247.224.0/23 132405 -103.247.226.0/23 38750 -103.247.228.0/23 137996 -103.247.230.0/23 9304 -103.247.232.0/23 4766 -103.247.236.0/23 132299 -103.247.238.0/23 58527 -103.247.244.0/23 45298 -103.247.246.0/24 17665 -103.247.247.0/24 132143 -103.247.248.0/22 58530 -103.247.252.0/22 132141 -103.248.0.0/23 63888 -103.248.2.0/23 58408 -103.248.4.0/22 58921 -103.248.12.0/22 58923 -103.248.16.0/22 17907 -103.248.20.0/22 55720 -103.248.24.0/24 137117 -103.248.25.0/24 132658 -103.248.26.0/24 58928 -103.248.28.0/22 133720 -103.248.32.0/23 132754 -103.248.34.0/24 133982 -103.248.35.0/24 132754 -103.248.36.0/22 24000 -103.248.40.0/22 17726 -103.248.44.0/22 133417 -103.248.56.0/22 58816 -103.248.60.0/23 133296 -103.248.63.0/24 133296 -103.248.68.0/22 4686 -103.248.72.0/24 55352 -103.248.77.0/24 137999 -103.248.78.0/23 137999 -103.248.80.0/22 18229 -103.248.84.0/22 132453 -103.248.88.0/22 63888 -103.248.92.0/24 137085 -103.248.93.0/24 132116 -103.248.94.0/23 132116 -103.248.96.0/24 58928 -103.248.97.0/24 7545 -103.248.98.0/24 132734 -103.248.99.0/24 38862 -103.248.102.0/23 4837 -103.248.104.0/23 36408 -103.248.107.0/24 38107 -103.248.108.0/22 132837 -103.248.112.0/22 55832 -103.248.116.0/22 133275 -103.248.120.0/24 58906 -103.248.121.0/24 133676 -103.248.122.0/23 58906 -103.248.124.0/22 18243 -103.248.128.0/22 58869 -103.248.132.0/22 132829 -103.248.136.0/22 59371 -103.248.144.0/23 38862 -103.248.146.0/24 132655 -103.248.147.0/24 7545 -103.248.148.0/24 9311 -103.248.149.0/24 17408 -103.248.150.0/24 9311 -103.248.151.0/24 17408 -103.248.152.0/22 4837 -103.248.156.0/22 38625 -103.248.160.0/22 131381 -103.248.164.0/22 131380 -103.248.172.0/22 132116 -103.248.176.0/22 24459 -103.248.184.0/22 24000 -103.248.188.0/24 132834 -103.248.189.0/24 45671 -103.248.190.0/24 45671 -103.248.191.0/24 45177 -103.248.196.0/22 131746 -103.248.200.0/24 132840 -103.248.202.0/23 132296 -103.248.208.0/22 18229 -103.248.216.0/22 63493 -103.248.222.0/24 137443 -103.248.232.0/22 45117 -103.248.236.0/22 58926 -103.248.244.0/22 58640 -103.248.248.0/24 132669 -103.248.249.0/24 1221 -103.248.252.0/22 58451 -103.249.4.0/22 23860 -103.249.12.0/22 136958 -103.249.17.0/24 132763 -103.249.20.0/22 38247 -103.249.24.0/22 132761 -103.249.28.0/23 45382 -103.249.31.0/24 45382 -103.249.32.0/22 9381 -103.249.36.0/22 23860 -103.249.40.0/22 58594 -103.249.44.0/22 132893 -103.249.48.0/22 38456 -103.249.52.0/22 4808 -103.249.56.0/24 58935 -103.249.57.0/24 132852 -103.249.58.0/23 16625 -103.249.60.0/22 58936 -103.249.65.0/24 55666 -103.249.66.0/23 9268 -103.249.68.0/24 63956 -103.249.70.0/24 136165 -103.249.71.0/24 40676 -103.249.72.0/22 132827 -103.249.76.0/22 133278 -103.249.80.0/22 56272 -103.249.84.0/22 55720 -103.249.88.0/22 134055 -103.249.92.0/22 132850 -103.249.96.0/22 45815 -103.249.100.0/22 45538 -103.249.104.0/24 137443 -103.249.105.0/24 21859 -103.249.106.0/23 137443 -103.249.108.0/22 133199 -103.249.120.0/22 58659 -103.249.127.0/24 38583 -103.249.132.0/22 55352 -103.249.136.0/24 56013 -103.249.140.0/22 58907 -103.249.148.0/22 9268 -103.249.152.0/22 17539 -103.249.160.0/23 45634 -103.249.162.0/24 135387 -103.249.163.0/24 45634 -103.249.180.0/23 133469 -103.249.182.0/23 58894 -103.249.184.0/24 9311 -103.249.186.0/24 9311 -103.249.192.0/23 134764 -103.249.194.0/24 136958 -103.249.195.0/24 134764 -103.249.196.0/22 24000 -103.249.204.0/22 56272 -103.249.208.0/23 132354 -103.249.211.0/24 132518 -103.249.212.0/22 24295 -103.249.216.0/22 131899 -103.249.220.0/22 132863 -103.249.224.0/23 134355 -103.249.226.0/24 45154 -103.249.227.0/24 132661 -103.249.228.0/22 132165 -103.249.232.0/22 45916 -103.249.236.0/22 132778 -103.249.240.0/22 132770 -103.249.244.0/22 4847 -103.249.248.0/22 133720 -103.249.252.0/22 4808 -103.250.0.0/24 134783 -103.250.1.0/24 38456 -103.250.2.0/23 134783 -103.250.4.0/22 132825 -103.250.9.0/24 132914 -103.250.12.0/22 58451 -103.250.16.0/22 55862 -103.250.20.0/22 55803 -103.250.24.0/24 45899 -103.250.25.0/24 131387 -103.250.26.0/24 45899 -103.250.27.0/24 131387 -103.250.30.0/24 132781 -103.250.31.0/24 58976 -103.250.32.0/22 4837 -103.250.36.0/22 134312 -103.250.41.0/24 133054 -103.250.43.0/24 9651 -103.250.44.0/22 55862 -103.250.48.0/24 132917 -103.250.50.0/24 55785 -103.250.51.0/24 132917 -103.250.52.0/22 9381 -103.250.56.0/22 134078 -103.250.60.0/23 132835 -103.250.63.0/24 9479 -103.250.64.0/22 131259 -103.250.68.0/23 9441 -103.250.70.0/24 139854 -103.250.71.0/24 9441 -103.250.72.0/23 17819 -103.250.74.0/24 17819 -103.250.80.0/23 134450 -103.250.82.0/24 201341 -103.250.83.0/24 134450 -103.250.84.0/22 58765 -103.250.88.0/22 64073 -103.250.92.0/22 4686 -103.250.112.0/22 55832 -103.250.116.0/23 131198 -103.250.118.0/24 135069 -103.250.119.0/24 131198 -103.250.136.0/24 45916 -103.250.138.0/23 45916 -103.250.140.0/22 22363 -103.250.144.0/20 45916 -103.250.160.0/21 45916 -103.250.168.0/22 58902 -103.250.172.0/22 24295 -103.250.176.0/22 134795 -103.250.184.0/23 132335 -103.250.186.0/24 132335 -103.250.188.0/22 45916 -103.250.192.0/22 17621 -103.250.198.0/24 4648 -103.250.199.0/24 63497 -103.250.204.0/24 55729 -103.250.205.0/24 174 -103.250.206.0/24 5713 -103.250.207.0/24 55729 -103.250.212.0/22 38719 -103.250.216.0/22 4837 -103.250.222.0/23 58974 -103.250.228.0/22 38437 -103.250.232.0/22 45179 -103.250.244.0/22 58713 -103.250.248.0/22 4837 -103.251.0.0/22 38278 -103.251.12.0/23 133047 -103.251.14.0/24 18059 -103.251.15.0/24 133019 -103.251.16.0/22 45916 -103.251.20.0/23 56202 -103.251.24.0/22 133296 -103.251.28.0/22 58984 -103.251.32.0/22 17816 -103.251.36.0/22 38339 -103.251.42.0/24 58582 -103.251.43.0/24 133037 -103.251.44.0/23 131775 -103.251.46.0/24 35916 -103.251.47.0/24 133080 -103.251.48.0/22 137166 -103.251.52.0/24 58966 -103.251.53.0/24 17665 -103.251.54.0/24 58966 -103.251.55.0/24 17665 -103.251.56.0/22 45916 -103.251.60.0/23 133003 -103.251.64.0/22 22363 -103.251.72.0/22 2514 -103.251.76.0/22 4686 -103.251.80.0/22 45804 -103.251.84.0/22 45061 -103.251.88.0/24 133199 -103.251.89.0/24 139659 -103.251.90.0/23 133199 -103.251.93.0/24 133296 -103.251.94.0/24 133296 -103.251.95.0/24 33480 -103.251.96.0/22 4837 -103.251.100.0/22 132943 -103.251.104.0/22 4766 -103.251.108.0/24 133025 -103.251.110.0/23 55884 -103.251.112.0/24 133380 -103.251.116.0/22 45677 -103.251.120.0/22 38203 -103.251.124.0/22 4837 -103.251.128.0/24 135391 -103.251.130.0/24 135391 -103.251.132.0/23 133897 -103.251.134.0/23 133023 -103.251.136.0/22 133739 -103.251.140.0/22 134375 -103.251.144.0/22 9749 -103.251.148.0/23 133296 -103.251.150.0/23 33480 -103.251.156.0/22 24295 -103.251.160.0/22 4837 -103.251.164.0/22 60404 -103.251.168.0/24 9245 -103.251.169.0/24 17477 -103.251.171.0/24 133053 -103.251.172.0/22 45158 -103.251.176.0/22 55330 -103.251.180.0/22 58818 -103.251.184.0/24 133002 -103.251.186.0/24 133002 -103.251.188.0/22 55862 -103.251.196.0/23 58982 -103.251.198.0/23 45561 -103.251.200.0/24 24068 -103.251.201.0/24 24028 -103.251.202.0/23 24028 -103.251.204.0/24 58850 -103.251.205.0/24 8188 -103.251.206.0/23 58850 -103.251.208.0/22 132770 -103.251.212.0/22 45916 -103.251.216.0/22 45916 -103.251.220.0/22 58972 -103.251.224.0/22 45916 -103.251.228.0/22 132944 -103.251.234.0/24 133034 -103.251.236.0/22 38277 -103.251.240.0/23 10206 -103.251.242.0/23 4837 -103.251.244.0/22 134970 -103.251.248.0/22 45469 -103.252.0.0/22 38732 -103.252.4.0/22 132996 -103.252.8.0/23 135016 -103.252.10.0/24 1221 -103.252.11.0/24 45828 -103.252.12.0/23 133838 -103.252.14.0/23 133129 -103.252.16.0/22 62468 -103.252.20.0/24 9794 -103.252.21.0/24 59137 -103.252.22.0/24 9794 -103.252.24.0/22 56268 -103.252.32.0/22 133623 -103.252.36.0/22 4808 -103.252.40.0/22 133296 -103.252.44.0/23 132563 -103.252.46.0/24 132563 -103.252.49.0/24 133134 -103.252.50.0/23 59134 -103.252.52.0/23 138798 -103.252.54.0/23 134885 -103.252.56.0/22 133130 -103.252.76.0/22 9381 -103.252.80.0/22 38710 -103.252.85.0/24 16625 -103.252.88.0/22 59592 -103.252.100.0/23 59147 -103.252.102.0/23 133138 -103.252.108.0/22 132933 -103.252.112.0/22 13414 -103.252.116.0/22 134032 -103.252.128.0/22 10085 -103.252.132.0/22 55303 -103.252.142.0/23 45596 -103.252.144.0/24 18229 -103.252.148.0/22 55353 -103.252.152.0/22 45638 -103.252.156.0/22 55303 -103.252.161.0/24 11174 -103.252.162.0/24 133144 -103.252.163.0/24 55698 -103.252.164.0/22 23860 -103.252.168.0/22 133007 -103.252.172.0/22 133465 -103.252.176.0/22 59342 -103.252.184.0/23 17483 -103.252.187.0/24 17483 -103.252.188.0/24 59138 -103.252.189.0/24 133335 -103.252.190.0/24 133146 -103.252.191.0/24 4786 -103.252.196.0/22 131601 -103.252.200.0/22 56300 -103.252.204.0/22 17638 -103.252.208.0/22 17638 -103.252.212.0/22 55303 -103.252.216.0/22 132453 -103.252.220.0/24 134512 -103.252.222.0/24 134512 -103.252.224.0/22 134971 -103.252.228.0/22 55303 -103.252.232.0/22 17638 -103.252.236.0/22 133296 -103.252.240.0/22 58451 -103.252.244.0/24 133158 -103.252.245.0/24 132950 -103.252.246.0/24 59330 -103.252.247.0/24 9790 -103.252.248.0/22 17638 -103.252.252.0/22 45544 -103.253.0.0/22 59139 -103.253.8.0/22 9381 -103.253.12.0/22 55720 -103.253.24.0/23 38001 -103.253.26.0/23 63930 -103.253.28.0/22 55303 -103.253.36.0/23 17439 -103.253.38.0/23 133155 -103.253.40.0/22 133398 -103.253.44.0/23 58691 -103.253.46.0/24 133180 -103.253.47.0/24 58691 -103.253.48.0/24 18353 -103.253.50.0/23 18353 -103.253.52.0/22 19318 -103.253.56.0/22 55303 -103.253.60.0/22 4837 -103.253.64.0/22 38611 -103.253.68.0/23 132644 -103.253.70.0/24 17439 -103.253.72.0/22 56309 -103.253.76.0/22 4686 -103.253.80.0/22 22071 -103.253.84.0/23 132504 -103.253.86.0/23 46062 -103.253.88.0/22 131396 -103.253.92.0/22 132405 -103.253.96.0/22 174 -103.253.104.0/24 133006 -103.253.105.0/24 133164 -103.253.106.0/23 45298 -103.253.108.0/22 55720 -103.253.112.0/22 138841 -103.253.116.0/24 133393 -103.253.117.0/24 133163 -103.253.118.0/23 133161 -103.253.120.0/22 55303 -103.253.124.0/24 59142 -103.253.125.0/24 132937 -103.253.126.0/24 133133 -103.253.132.0/23 59238 -103.253.134.0/23 131447 -103.253.140.0/22 38197 -103.253.144.0/22 14061 -103.253.148.0/22 132768 -103.253.152.0/22 132540 -103.253.156.0/22 23888 -103.253.160.0/22 59239 -103.253.166.0/23 132944 -103.253.168.0/24 133011 -103.253.169.0/24 139195 -103.253.170.0/23 133011 -103.253.172.0/22 132453 -103.253.180.0/22 38623 -103.253.184.0/22 45504 -103.253.188.0/22 2514 -103.253.192.0/22 24192 -103.253.196.0/22 133171 -103.253.204.0/22 17428 -103.253.208.0/22 59162 -103.253.212.0/22 58487 -103.253.216.0/22 24295 -103.253.224.0/22 4837 -103.253.236.0/22 9381 -103.253.240.0/22 23582 -103.253.248.0/22 9381 -103.253.252.0/22 132726 -103.254.0.0/22 132588 -103.254.4.0/24 63992 -103.254.5.0/24 133548 -103.254.7.0/24 58507 -103.254.12.0/22 56151 -103.254.16.0/22 131397 -103.254.24.0/24 17819 -103.254.26.0/24 59242 -103.254.27.0/24 135244 -103.254.28.0/22 55303 -103.254.36.0/22 59243 -103.254.44.0/22 35914 -103.254.48.0/23 59146 -103.254.50.0/24 133173 -103.254.52.0/22 132770 -103.254.56.0/22 59169 -103.254.60.0/22 24295 -103.254.64.0/21 4847 -103.254.72.0/24 133115 -103.254.73.0/24 136038 -103.254.74.0/24 136038 -103.254.75.0/24 133115 -103.254.76.0/22 59009 -103.254.80.0/22 132938 -103.254.84.0/22 55406 -103.254.88.0/23 7575 -103.254.90.0/24 7575 -103.254.92.0/23 7575 -103.254.94.0/24 59249 -103.254.95.0/24 46017 -103.254.96.0/22 132941 -103.254.101.0/24 133228 -103.254.102.0/23 133228 -103.254.104.0/22 59148 -103.254.112.0/22 23724 -103.254.116.0/22 9381 -103.254.120.0/24 133177 -103.254.121.0/24 18126 -103.254.126.0/23 59150 -103.254.128.0/22 133297 -103.254.132.0/22 45267 -103.254.136.0/22 38719 -103.254.140.0/22 58530 -103.254.144.0/22 23620 -103.254.148.0/22 133199 -103.254.152.0/22 59253 -103.254.156.0/22 24226 -103.254.160.0/22 36236 -103.254.164.0/24 133178 -103.254.165.0/24 38809 -103.254.166.0/24 132707 -103.254.167.0/24 59249 -103.254.169.0/24 59149 -103.254.170.0/23 59149 -103.254.172.0/22 45117 -103.254.180.0/22 133179 -103.254.184.0/22 17501 -103.254.188.0/22 23724 -103.254.192.0/23 133669 -103.254.194.0/23 23838 -103.254.196.0/24 133194 -103.254.198.0/23 137443 -103.254.200.0/22 23682 -103.254.204.0/23 58965 -103.254.206.0/24 59162 -103.254.207.0/24 135201 -103.254.208.0/22 133380 -103.254.216.0/22 131403 -103.254.220.0/22 58962 -103.254.224.0/22 55943 -103.254.228.0/24 133186 -103.254.230.0/24 132962 -103.254.231.0/24 59357 -103.254.232.0/22 55943 -103.254.236.0/22 132965 -103.254.244.0/22 17625 -103.254.248.0/23 38667 -103.254.252.0/23 132526 -103.254.254.0/24 132526 -103.254.255.0/24 38532 -103.255.0.0/22 24295 -103.255.4.0/22 59257 -103.255.8.0/22 45433 -103.255.12.0/24 38320 -103.255.13.0/24 133163 -103.255.15.0/24 59151 -103.255.20.0/22 2514 -103.255.24.0/22 133192 -103.255.29.0/24 46055 -103.255.30.0/24 133191 -103.255.31.0/24 45671 -103.255.32.0/22 59258 -103.255.36.0/22 132296 -103.255.44.0/22 133201 -103.255.52.0/23 56241 -103.255.54.0/24 133095 -103.255.55.0/24 58582 -103.255.56.0/22 55933 -103.255.60.0/24 62468 -103.255.62.0/23 62468 -103.255.68.0/22 23724 -103.255.72.0/22 59162 -103.255.76.0/22 58640 -103.255.80.0/22 133082 -103.255.88.0/22 138950 -103.255.92.0/22 4837 -103.255.100.0/22 132952 -103.255.104.0/22 132971 -103.255.112.0/23 18196 -103.255.114.0/24 18196 -103.255.115.0/24 132296 -103.255.116.0/24 133416 -103.255.118.0/23 55720 -103.255.120.0/22 59156 -103.255.124.0/23 131709 -103.255.126.0/24 133092 -103.255.128.0/23 198381 -103.255.130.0/24 198381 -103.255.131.0/24 198504 -103.255.140.0/22 59067 -103.255.144.0/22 18229 -103.255.148.0/22 9937 -103.255.152.0/22 24456 -103.255.156.0/23 55699 -103.255.158.0/24 132970 -103.255.168.0/23 59335 -103.255.170.0/23 59263 -103.255.172.0/22 133385 -103.255.176.0/22 132883 -103.255.180.0/23 132497 -103.255.182.0/24 132497 -103.255.183.0/24 131442 -103.255.188.0/22 132005 -103.255.200.0/22 138950 -103.255.216.0/22 132954 -103.255.224.0/24 132116 -103.255.232.0/24 135223 -103.255.234.0/23 135223 -103.255.236.0/22 45899 -103.255.240.0/22 55666 -103.255.244.0/22 133203 -103.255.248.0/24 45177 -103.255.250.0/24 133210 -103.255.251.0/24 59267 -103.255.252.0/24 59352 -103.255.254.0/24 59352 -104.0.0.0/12 7018 -104.16.0.0/12 13335 -104.32.0.0/14 20001 -104.36.0.0/22 31769 -104.36.4.0/22 55077 -104.36.8.0/21 15290 -104.36.16.0/22 50837 -104.36.20.0/22 53767 -104.36.24.0/21 54706 -104.36.32.0/24 19592 -104.36.36.0/22 13843 -104.36.40.0/22 4474 -104.36.44.0/22 21743 -104.36.48.0/21 393441 -104.36.56.0/21 32748 -104.36.64.0/21 25820 -104.36.72.0/22 395945 -104.36.76.0/22 14140 -104.36.80.0/21 20150 -104.36.88.0/22 14775 -104.36.92.0/22 8008 -104.36.96.0/22 40761 -104.36.100.0/22 62969 -104.36.104.0/22 40772 -104.36.108.0/22 53914 -104.36.112.0/22 62713 -104.36.116.0/22 54509 -104.36.120.0/22 6939 -104.36.124.0/22 3737 -104.36.128.0/21 33616 -104.36.136.0/22 64261 -104.36.140.0/22 17310 -104.36.144.0/22 19365 -104.36.148.0/22 54643 -104.36.152.0/22 30090 -104.36.160.0/24 20333 -104.36.162.0/24 397329 -104.36.163.0/24 18961 -104.36.164.0/22 27640 -104.36.168.0/21 397545 -104.36.176.0/21 12989 -104.36.184.0/22 25820 -104.36.188.0/22 25853 -104.36.192.0/24 63086 -104.36.194.0/23 63086 -104.36.196.0/22 63086 -104.36.200.0/22 40749 -104.36.204.0/22 1640 -104.36.208.0/23 22857 -104.36.210.0/24 22857 -104.36.212.0/23 22857 -104.36.216.0/22 3257 -104.36.220.0/23 395540 -104.36.222.0/24 395540 -104.36.224.0/24 36131 -104.36.225.0/24 396873 -104.36.226.0/24 395648 -104.36.227.0/24 33662 -104.36.228.0/22 395092 -104.36.232.0/21 54755 -104.36.240.0/21 23175 -104.36.248.0/22 30548 -104.36.252.0/22 46886 -104.37.0.0/24 3223 -104.37.1.0/24 36351 -104.37.2.0/24 3223 -104.37.3.0/24 36351 -104.37.5.0/24 36351 -104.37.6.0/24 9009 -104.37.7.0/24 33182 -104.37.8.0/23 22180 -104.37.10.0/24 22180 -104.37.12.0/22 22180 -104.37.16.0/22 25909 -104.37.20.0/22 11260 -104.37.24.0/22 22400 -104.37.28.0/24 22400 -104.37.29.0/24 201106 -104.37.30.0/24 22400 -104.37.31.0/24 35913 -104.37.32.0/21 51468 -104.37.40.0/23 46241 -104.37.42.0/23 394288 -104.37.47.0/24 16628 -104.37.52.0/22 20205 -104.37.56.0/23 174 -104.37.58.0/24 174 -104.37.60.0/22 40029 -104.37.64.0/22 32100 -104.37.68.0/22 36019 -104.37.72.0/24 54527 -104.37.73.0/24 63213 -104.37.75.0/24 54527 -104.37.76.0/23 46595 -104.37.78.0/24 46595 -104.37.79.0/24 23546 -104.37.80.0/22 10996 -104.37.84.0/24 54456 -104.37.86.0/23 54456 -104.37.88.0/21 6209 -104.37.96.0/21 63060 -104.37.104.0/22 14244 -104.37.108.0/22 17378 -104.37.112.0/22 55254 -104.37.116.0/23 30493 -104.37.118.0/24 30493 -104.37.120.0/21 14742 -104.37.128.0/22 12177 -104.37.132.0/22 20093 -104.37.136.0/21 53282 -104.37.144.0/22 17177 -104.37.148.0/22 33549 -104.37.152.0/22 14480 -104.37.156.0/22 25898 -104.37.160.0/21 393442 -104.37.168.0/22 62838 -104.37.172.0/22 396073 -104.37.176.0/21 23393 -104.37.184.0/21 19318 -104.37.192.0/22 36077 -104.37.196.0/23 36077 -104.37.200.0/21 11290 -104.37.208.0/22 22324 -104.37.212.0/22 54600 -104.37.216.0/23 393499 -104.37.218.0/24 393640 -104.37.219.0/24 393499 -104.37.220.0/22 393640 -104.37.224.0/22 13807 -104.37.229.0/24 11428 -104.37.230.0/23 11428 -104.37.232.0/21 21748 -104.37.242.0/24 7311 -104.37.244.0/22 46844 -104.37.248.0/22 19045 -104.37.252.0/22 54300 -104.38.0.0/15 3999 -104.40.0.0/14 8075 -104.44.0.0/18 8075 -104.44.64.0/24 8075 -104.44.65.0/24 8068 -104.44.66.0/23 8068 -104.44.68.0/22 8075 -104.44.72.0/24 8075 -104.44.73.0/24 8068 -104.44.74.0/24 8075 -104.44.75.0/24 8068 -104.44.76.0/24 8075 -104.44.77.0/24 8068 -104.44.78.0/23 8075 -104.44.80.0/20 8075 -104.44.96.0/19 8075 -104.44.128.0/17 8075 -104.45.0.0/16 8075 -104.46.0.0/15 8075 -104.48.0.0/12 7018 -104.64.16.0/20 16625 -104.64.32.0/20 20940 -104.64.80.0/20 9605 -104.64.96.0/20 9605 -104.64.128.0/19 16625 -104.64.176.0/20 7843 -104.64.192.0/20 42961 -104.64.208.0/20 16625 -104.64.224.0/20 16625 -104.64.240.0/20 37457 -104.65.0.0/20 16625 -104.65.32.0/20 16625 -104.65.64.0/19 55836 -104.65.96.0/19 7470 -104.65.128.0/19 55644 -104.65.192.0/19 38040 -104.65.224.0/20 18101 -104.65.240.0/20 16625 -104.66.0.0/19 4788 -104.66.32.0/19 3257 -104.66.64.0/19 16625 -104.66.96.0/22 20940 -104.66.100.0/23 20940 -104.66.104.0/21 16625 -104.66.112.0/20 16625 -104.66.128.0/19 9924 -104.66.160.0/19 3303 -104.67.0.0/20 16625 -104.67.16.0/20 20940 -104.67.32.0/19 45899 -104.67.64.0/19 16625 -104.67.96.0/19 22773 -104.67.128.0/19 3257 -104.67.160.0/19 4775 -104.67.192.0/19 33662 -104.67.224.0/19 16625 -104.68.0.0/19 16625 -104.68.32.0/19 18004 -104.68.96.0/19 16625 -104.68.128.0/19 45899 -104.68.160.0/19 16625 -104.68.192.0/20 16625 -104.68.224.0/21 16625 -104.68.232.0/21 20940 -104.68.240.0/20 16625 -104.69.0.0/19 3257 -104.69.32.0/20 55410 -104.69.48.0/20 16625 -104.69.64.0/20 16625 -104.69.80.0/20 20940 -104.69.96.0/19 20940 -104.69.128.0/18 16625 -104.69.192.0/20 1273 -104.69.208.0/22 16625 -104.69.212.0/22 9605 -104.69.216.0/22 16625 -104.69.220.0/23 16625 -104.69.223.0/24 3257 -104.69.240.0/20 20940 -104.70.0.0/20 20940 -104.70.16.0/20 9605 -104.70.32.0/20 9605 -104.70.48.0/20 16625 -104.70.64.0/19 16625 -104.70.96.0/20 20940 -104.70.112.0/21 20940 -104.70.120.0/23 20940 -104.70.122.0/24 20940 -104.70.123.0/24 2914 -104.70.124.0/23 16625 -104.70.126.0/24 20940 -104.70.127.0/24 8551 -104.70.128.0/19 16625 -104.70.160.0/23 20940 -104.70.162.0/24 18101 -104.70.163.0/24 20940 -104.70.166.0/24 24560 -104.70.167.0/24 20940 -104.70.168.0/23 20940 -104.70.170.0/24 18101 -104.70.172.0/23 9829 -104.70.174.0/24 9829 -104.70.175.0/24 9498 -104.70.176.0/23 8551 -104.70.178.0/24 7922 -104.70.179.0/24 20940 -104.70.181.0/24 20940 -104.70.182.0/23 20940 -104.70.184.0/23 16625 -104.70.186.0/23 8551 -104.70.188.0/22 16625 -104.70.192.0/19 16625 -104.70.224.0/22 16625 -104.70.228.0/23 16625 -104.70.231.0/24 3257 -104.70.232.0/23 20940 -104.70.234.0/24 35994 -104.70.235.0/24 20940 -104.70.236.0/22 16625 -104.71.0.0/19 16625 -104.71.32.0/20 16625 -104.71.48.0/22 16625 -104.71.62.0/23 20940 -104.71.64.0/18 16625 -104.71.128.0/22 20940 -104.71.132.0/22 16625 -104.71.136.0/22 20940 -104.71.140.0/23 20940 -104.71.142.0/24 3257 -104.71.143.0/24 209 -104.71.144.0/20 20940 -104.71.160.0/20 20940 -104.71.176.0/20 16625 -104.71.192.0/20 16625 -104.71.212.0/22 1299 -104.71.216.0/23 1299 -104.71.218.0/24 1299 -104.71.219.0/24 20940 -104.71.224.0/20 16625 -104.71.248.0/21 16625 -104.72.0.0/19 22773 -104.72.32.0/19 16625 -104.72.64.0/22 22773 -104.72.68.0/23 22773 -104.72.70.0/24 20940 -104.72.71.0/24 24319 -104.72.72.0/22 16625 -104.72.76.0/23 20940 -104.72.80.0/20 16625 -104.72.96.0/20 16625 -104.72.112.0/20 3257 -104.72.128.0/20 16625 -104.72.148.0/22 16625 -104.72.152.0/23 16625 -104.72.154.0/23 3257 -104.72.156.0/22 3257 -104.72.160.0/19 16625 -104.72.192.0/19 3257 -104.72.224.0/19 7303 -104.73.0.0/22 16625 -104.73.4.0/24 2914 -104.73.5.0/24 209 -104.73.6.0/23 21342 -104.73.14.0/23 1299 -104.73.32.0/19 16625 -104.73.80.0/22 1299 -104.73.84.0/22 20940 -104.73.96.0/19 16625 -104.73.128.0/19 16625 -104.73.160.0/24 209 -104.73.162.0/24 2914 -104.73.163.0/24 209 -104.73.164.0/22 16625 -104.73.173.0/24 12956 -104.73.174.0/23 5511 -104.73.176.0/20 20940 -104.73.224.0/20 16625 -104.73.240.0/20 5511 -104.74.20.0/22 20940 -104.74.24.0/24 20940 -104.74.25.0/24 34164 -104.74.26.0/23 16625 -104.74.28.0/22 16625 -104.74.32.0/19 16625 -104.74.64.0/24 34164 -104.74.65.0/24 20940 -104.74.66.0/23 16625 -104.74.68.0/23 16625 -104.74.70.0/24 20940 -104.74.71.0/24 8551 -104.74.72.0/21 16625 -104.74.80.0/20 16625 -104.74.96.0/19 16625 -104.74.128.0/20 16625 -104.74.144.0/22 16625 -104.74.148.0/22 20940 -104.74.152.0/21 20940 -104.74.160.0/19 20940 -104.74.192.0/18 20940 -104.75.0.0/21 20940 -104.75.8.0/22 20940 -104.75.12.0/24 20189 -104.75.13.0/24 20940 -104.75.14.0/23 1299 -104.75.16.0/20 20940 -104.75.32.0/20 20940 -104.75.48.0/20 1299 -104.75.64.0/20 1299 -104.75.80.0/22 1299 -104.75.84.0/23 9329 -104.75.92.0/22 22773 -104.75.96.0/19 16625 -104.75.128.0/19 22773 -104.75.160.0/23 22773 -104.75.162.0/24 2914 -104.75.164.0/22 20940 -104.75.169.0/24 20940 -104.75.170.0/23 20940 -104.75.172.0/22 16625 -104.75.176.0/20 16625 -104.75.192.0/19 16625 -104.75.224.0/20 20940 -104.75.240.0/20 16625 -104.76.0.0/20 16625 -104.76.16.0/21 16625 -104.76.24.0/22 16625 -104.76.28.0/22 20940 -104.76.32.0/19 16625 -104.76.64.0/19 20940 -104.76.96.0/23 20940 -104.76.100.0/22 16625 -104.76.104.0/22 16625 -104.76.108.0/22 2914 -104.76.128.0/20 16625 -104.76.144.0/20 5511 -104.76.160.0/20 16625 -104.76.176.0/23 9498 -104.76.178.0/24 9498 -104.76.180.0/24 23700 -104.76.182.0/24 20940 -104.76.183.0/24 12400 -104.76.184.0/21 20940 -104.76.192.0/24 3462 -104.76.193.0/24 7470 -104.76.194.0/24 4651 -104.76.195.0/24 38040 -104.76.196.0/24 45629 -104.76.197.0/24 20940 -104.76.198.0/24 20940 -104.76.202.0/24 3257 -104.76.204.0/24 20940 -104.76.205.0/24 6799 -104.76.206.0/24 6762 -104.76.207.0/24 3257 -104.76.208.0/23 6762 -104.76.210.0/24 1299 -104.76.211.0/24 20940 -104.76.213.0/24 20940 -104.76.215.0/24 20940 -104.76.216.0/24 35994 -104.76.219.0/24 20940 -104.76.221.0/24 1273 -104.76.222.0/24 20940 -104.76.223.0/24 35994 -104.76.224.0/19 16625 -104.77.0.0/24 3257 -104.77.2.0/23 16625 -104.77.4.0/22 16625 -104.77.8.0/22 16625 -104.77.12.0/23 24319 -104.77.14.0/23 16625 -104.77.16.0/20 16625 -104.77.32.0/19 16625 -104.77.64.0/20 16625 -104.77.80.0/24 4609 -104.77.82.0/24 4788 -104.77.83.0/24 20940 -104.77.84.0/24 9299 -104.77.85.0/24 4775 -104.77.86.0/24 20940 -104.77.87.0/24 4657 -104.77.88.0/24 3786 -104.77.89.0/24 20940 -104.77.91.0/24 3786 -104.77.92.0/24 9329 -104.77.93.0/24 9924 -104.77.94.0/24 4780 -104.77.95.0/24 20940 -104.77.96.0/24 1273 -104.77.98.0/24 20940 -104.77.99.0/24 35204 -104.77.100.0/23 20940 -104.77.102.0/24 20940 -104.77.103.0/24 209 -104.77.104.0/24 2914 -104.77.105.0/24 209 -104.77.106.0/23 20940 -104.77.108.0/23 3257 -104.77.110.0/24 209 -104.77.113.0/24 20940 -104.77.114.0/23 20940 -104.77.116.0/23 20940 -104.77.118.0/24 209 -104.77.120.0/24 20940 -104.77.123.0/24 20940 -104.77.124.0/24 20940 -104.77.127.0/24 26769 -104.77.128.0/23 20940 -104.77.130.0/24 2914 -104.77.131.0/24 3257 -104.77.132.0/24 26769 -104.77.133.0/24 20940 -104.77.135.0/24 20940 -104.77.136.0/22 20940 -104.77.140.0/23 20940 -104.77.142.0/24 3257 -104.77.143.0/24 209 -104.77.144.0/24 5511 -104.77.145.0/24 20940 -104.77.147.0/24 20940 -104.77.148.0/23 20940 -104.77.152.0/24 2914 -104.77.153.0/24 2828 -104.77.154.0/23 20940 -104.77.156.0/24 20940 -104.77.158.0/24 20940 -104.77.163.0/24 2914 -104.77.164.0/23 20940 -104.77.167.0/24 20940 -104.77.168.0/23 20940 -104.77.170.0/24 7545 -104.77.172.0/24 24319 -104.77.173.0/24 9498 -104.77.174.0/23 20940 -104.77.176.0/23 20940 -104.77.179.0/24 6762 -104.77.181.0/24 20940 -104.77.182.0/24 20940 -104.77.184.0/24 20940 -104.77.185.0/24 6762 -104.77.186.0/24 20940 -104.77.189.0/24 20940 -104.77.190.0/23 20940 -104.77.192.0/24 28573 -104.77.195.0/24 12956 -104.77.197.0/24 20940 -104.77.198.0/24 13489 -104.77.199.0/24 20940 -104.77.200.0/24 18678 -104.77.201.0/24 27814 -104.77.202.0/24 8551 -104.77.203.0/24 24319 -104.77.204.0/22 20940 -104.77.208.0/23 20940 -104.77.210.0/23 34164 -104.77.216.0/21 16625 -104.77.224.0/19 16625 -104.78.0.0/18 16625 -104.78.64.0/24 35994 -104.78.65.0/24 20940 -104.78.66.0/24 20940 -104.78.67.0/24 209 -104.78.68.0/22 20940 -104.78.72.0/22 16625 -104.78.76.0/23 16625 -104.78.78.0/24 2828 -104.78.79.0/24 26769 -104.78.80.0/20 16625 -104.78.96.0/19 16625 -104.78.128.0/19 16625 -104.78.160.0/20 16625 -104.78.176.0/21 16625 -104.78.184.0/23 16625 -104.78.186.0/23 20940 -104.78.188.0/22 16625 -104.78.192.0/19 16625 -104.78.224.0/19 33668 -104.79.0.0/24 26769 -104.79.1.0/24 20940 -104.79.2.0/23 20940 -104.79.4.0/22 16625 -104.79.8.0/23 16625 -104.79.10.0/24 20940 -104.79.11.0/24 3257 -104.79.12.0/22 16625 -104.79.16.0/20 16625 -104.79.32.0/19 16625 -104.79.64.0/20 16625 -104.79.80.0/23 16625 -104.79.82.0/23 20940 -104.79.84.0/22 16625 -104.79.94.0/23 16625 -104.79.96.0/19 16625 -104.79.128.0/18 16625 -104.79.192.0/22 16625 -104.79.197.0/24 24319 -104.79.198.0/23 8551 -104.79.200.0/22 8551 -104.79.204.0/24 35994 -104.79.205.0/24 24319 -104.79.206.0/23 16625 -104.79.208.0/20 8551 -104.79.224.0/20 8551 -104.79.240.0/20 20940 -104.80.0.0/20 20940 -104.80.16.0/22 20940 -104.80.20.0/22 16625 -104.80.24.0/23 35994 -104.80.26.0/23 34164 -104.80.28.0/22 16625 -104.80.32.0/20 16625 -104.80.48.0/20 20940 -104.80.64.0/20 16625 -104.80.80.0/21 16625 -104.80.88.0/23 20940 -104.80.96.0/19 16625 -104.80.128.0/19 16625 -104.80.160.0/19 20940 -104.80.192.0/23 20940 -104.80.200.0/22 20940 -104.80.204.0/23 20940 -104.80.206.0/23 16625 -104.80.240.0/20 20940 -104.81.0.0/19 20940 -104.81.32.0/20 16625 -104.81.48.0/21 16625 -104.81.56.0/23 16625 -104.81.58.0/24 209 -104.81.59.0/24 35994 -104.81.60.0/23 20940 -104.81.62.0/23 16625 -104.81.64.0/20 16625 -104.81.80.0/20 6453 -104.81.96.0/19 16625 -104.81.128.0/21 16625 -104.81.136.0/23 16625 -104.81.138.0/24 20940 -104.81.139.0/24 35994 -104.81.140.0/22 16625 -104.81.144.0/20 16625 -104.81.160.0/19 16625 -104.81.192.0/19 16625 -104.81.224.0/20 16625 -104.81.244.0/23 16625 -104.81.246.0/23 20940 -104.81.248.0/24 24319 -104.81.249.0/24 20940 -104.81.250.0/23 16625 -104.81.252.0/22 45727 -104.82.0.0/18 20940 -104.82.64.0/24 35994 -104.82.66.0/23 16625 -104.82.68.0/22 16625 -104.82.72.0/22 16625 -104.82.76.0/23 16625 -104.82.78.0/23 35993 -104.82.80.0/20 16625 -104.82.96.0/19 16625 -104.82.128.0/19 16625 -104.82.160.0/20 16625 -104.82.176.0/21 16625 -104.82.184.0/22 16625 -104.82.188.0/23 34164 -104.82.190.0/23 20940 -104.82.192.0/19 16625 -104.82.224.0/19 20940 -104.83.0.0/22 20940 -104.83.4.0/23 20940 -104.83.6.0/23 16625 -104.83.8.0/21 16625 -104.83.16.0/20 16625 -104.83.32.0/19 16625 -104.83.64.0/20 16625 -104.83.80.0/21 16625 -104.83.88.0/22 16625 -104.83.92.0/23 16625 -104.83.94.0/23 20940 -104.83.96.0/19 16625 -104.83.128.0/17 16625 -104.84.0.0/20 16625 -104.84.16.0/20 9500 -104.84.32.0/20 9500 -104.84.48.0/22 9500 -104.84.52.0/23 9500 -104.84.60.0/22 16625 -104.84.96.0/19 16625 -104.84.128.0/20 16625 -104.84.144.0/22 16625 -104.84.148.0/23 2914 -104.84.150.0/24 20940 -104.84.151.0/24 35994 -104.84.152.0/23 20940 -104.84.154.0/23 35994 -104.84.156.0/22 16625 -104.84.160.0/19 16625 -104.84.192.0/19 16625 -104.84.224.0/22 16625 -104.84.228.0/23 35994 -104.84.230.0/23 16625 -104.84.232.0/21 16625 -104.84.240.0/20 20940 -104.85.16.0/20 20940 -104.85.32.0/20 20940 -104.85.48.0/23 35994 -104.85.50.0/23 20940 -104.85.52.0/22 20940 -104.85.56.0/22 20940 -104.85.60.0/22 16625 -104.85.64.0/19 16625 -104.85.96.0/19 55836 -104.85.128.0/19 55836 -104.85.160.0/22 16625 -104.85.164.0/23 20940 -104.85.168.0/22 16625 -104.85.172.0/23 16625 -104.85.174.0/23 35994 -104.85.176.0/20 16625 -104.85.192.0/19 16625 -104.85.224.0/20 20940 -104.85.240.0/21 16625 -104.85.248.0/24 6762 -104.85.249.0/24 20940 -104.85.250.0/23 16625 -104.85.252.0/22 16625 -104.86.32.0/19 16625 -104.86.64.0/19 16625 -104.86.96.0/22 33652 -104.86.102.0/23 20940 -104.86.104.0/22 16625 -104.86.108.0/23 35994 -104.86.110.0/23 20940 -104.86.112.0/20 16625 -104.86.128.0/20 20940 -104.86.144.0/20 16625 -104.86.160.0/20 16625 -104.86.176.0/22 16625 -104.86.180.0/23 16625 -104.86.182.0/23 20940 -104.86.184.0/22 16625 -104.86.188.0/24 20940 -104.86.189.0/24 9498 -104.86.192.0/19 33651 -104.86.224.0/19 16625 -104.87.4.0/22 16625 -104.87.10.0/23 20940 -104.87.12.0/22 16625 -104.87.32.0/19 16625 -104.87.64.0/20 16625 -104.87.96.0/19 16625 -104.87.128.0/18 16625 -104.87.192.0/19 16625 -104.87.224.0/20 16625 -104.87.240.0/20 20940 -104.88.0.0/18 2914 -104.88.64.0/22 2914 -104.88.68.0/23 2914 -104.88.146.0/23 20940 -104.88.148.0/22 16625 -104.88.152.0/22 16625 -104.88.156.0/22 577 -104.88.160.0/19 16625 -104.88.208.0/20 16625 -104.88.224.0/19 55818 -104.89.0.0/21 16625 -104.89.8.0/23 16625 -104.89.10.0/23 20940 -104.89.12.0/22 16625 -104.89.16.0/20 16625 -104.89.32.0/19 16625 -104.89.64.0/19 16625 -104.89.96.0/20 16625 -104.89.112.0/22 16625 -104.89.118.0/23 16625 -104.89.120.0/22 16625 -104.89.124.0/22 20940 -104.89.128.0/19 20940 -104.89.160.0/22 20940 -104.89.164.0/22 8657 -104.89.168.0/23 8657 -104.89.170.0/24 209 -104.89.172.0/22 16625 -104.89.176.0/20 8657 -104.89.192.0/20 8657 -104.89.208.0/20 16625 -104.89.224.0/20 16625 -104.90.24.0/22 3257 -104.90.32.0/19 16625 -104.90.102.0/23 16625 -104.90.104.0/21 16625 -104.90.112.0/20 16625 -104.90.128.0/18 16625 -104.90.192.0/21 16625 -104.90.200.0/22 16625 -104.90.204.0/23 20940 -104.90.206.0/23 34164 -104.90.208.0/20 16625 -104.90.224.0/19 16625 -104.91.0.0/19 16625 -104.91.32.0/20 16625 -104.91.48.0/21 16625 -104.91.56.0/23 34164 -104.91.64.0/19 16625 -104.91.128.0/19 20940 -104.91.160.0/21 20940 -104.91.168.0/22 16625 -104.91.172.0/23 16625 -104.91.174.0/24 20940 -104.91.175.0/24 5511 -104.91.176.0/20 16625 -104.91.192.0/19 16625 -104.91.224.0/20 16625 -104.91.244.0/22 16625 -104.91.248.0/23 20940 -104.91.250.0/23 16625 -104.91.252.0/22 16625 -104.92.0.0/19 16625 -104.92.32.0/19 9354 -104.92.64.0/22 9354 -104.92.68.0/23 9354 -104.92.70.0/23 16625 -104.92.72.0/22 16625 -104.92.76.0/22 4230 -104.92.80.0/20 16625 -104.92.96.0/19 16625 -104.92.128.0/20 16625 -104.92.144.0/21 16625 -104.92.152.0/23 16625 -104.92.154.0/23 14080 -104.92.156.0/22 14080 -104.92.160.0/19 16625 -104.92.192.0/19 14080 -104.92.224.0/19 16625 -104.93.0.0/22 16625 -104.93.4.0/22 20940 -104.93.16.0/20 16625 -104.93.32.0/20 16625 -104.93.84.0/22 7713 -104.93.88.0/23 7713 -104.93.90.0/23 34164 -104.93.92.0/22 16625 -104.93.96.0/19 7713 -104.93.160.0/19 16625 -104.93.192.0/22 16625 -104.93.196.0/23 16625 -104.93.198.0/23 7713 -104.93.200.0/22 7713 -104.93.204.0/22 16625 -104.93.208.0/20 7713 -104.93.224.0/20 7713 -104.93.240.0/20 16625 -104.94.0.0/20 16625 -104.94.16.0/23 16625 -104.94.18.0/24 55410 -104.94.19.0/24 38266 -104.94.20.0/22 16625 -104.94.24.0/22 16625 -104.94.28.0/22 20940 -104.94.32.0/19 16625 -104.94.64.0/19 16625 -104.94.96.0/22 20940 -104.94.100.0/24 20940 -104.94.101.0/24 209 -104.94.102.0/24 55644 -104.94.103.0/24 35994 -104.94.104.0/22 16625 -104.94.112.0/20 16625 -104.94.128.0/20 2914 -104.94.144.0/20 133612 -104.94.160.0/19 16625 -104.94.200.0/22 6461 -104.94.204.0/23 6461 -104.94.206.0/23 18734 -104.94.240.0/20 6461 -104.95.0.0/20 6461 -104.95.16.0/22 18734 -104.95.97.0/24 9829 -104.95.98.0/23 7545 -104.95.100.0/22 7545 -104.95.104.0/22 4771 -104.95.108.0/23 4771 -104.95.112.0/20 7545 -104.95.128.0/20 7545 -104.95.144.0/20 4771 -104.95.160.0/20 4771 -104.95.176.0/22 16625 -104.95.184.0/22 16625 -104.95.188.0/23 20940 -104.95.190.0/24 9829 -104.95.191.0/24 31110 -104.95.224.0/20 16625 -104.95.240.0/21 16625 -104.96.0.0/23 20940 -104.96.4.0/22 16625 -104.96.8.0/23 16625 -104.96.11.0/24 35994 -104.96.12.0/23 35994 -104.96.14.0/23 20940 -104.96.32.0/20 16625 -104.96.84.0/22 7843 -104.96.88.0/22 20940 -104.96.92.0/22 16625 -104.96.96.0/19 33651 -104.96.128.0/19 16625 -104.96.160.0/23 16625 -104.96.162.0/24 20940 -104.96.163.0/24 577 -104.96.164.0/22 577 -104.96.168.0/24 577 -104.96.169.0/24 20940 -104.96.208.0/24 35994 -104.96.209.0/24 20940 -104.96.212.0/23 35994 -104.96.214.0/23 16625 -104.96.216.0/22 16625 -104.96.220.0/23 20940 -104.96.222.0/23 35994 -104.96.224.0/19 16625 -104.97.0.0/23 35994 -104.97.8.0/22 16625 -104.97.12.0/23 20940 -104.97.48.0/20 8781 -104.97.64.0/24 35994 -104.97.65.0/24 20940 -104.97.66.0/23 7843 -104.97.68.0/22 7843 -104.97.72.0/22 7843 -104.97.76.0/23 7843 -104.97.78.0/23 20940 -104.97.80.0/20 7843 -104.97.96.0/19 7843 -104.97.128.0/20 7843 -104.97.144.0/20 20940 -104.97.160.0/20 16625 -104.97.176.0/22 16625 -104.97.180.0/22 52228 -104.97.184.0/21 20940 -104.97.192.0/19 16625 -104.97.224.0/19 20940 -104.98.0.0/22 20940 -104.98.4.0/22 16625 -104.98.8.0/23 16625 -104.98.10.0/23 20940 -104.98.12.0/22 16625 -104.98.16.0/20 16625 -104.98.32.0/19 16625 -104.98.64.0/19 33491 -104.98.96.0/20 16625 -104.98.112.0/22 20940 -104.98.116.0/23 20940 -104.98.118.0/24 20940 -104.98.119.0/24 35994 -104.98.120.0/22 16625 -104.98.128.0/20 16625 -104.98.160.0/20 16625 -104.98.195.0/24 20940 -104.98.196.0/22 577 -104.98.200.0/22 20940 -104.98.204.0/23 20940 -104.98.206.0/23 3257 -104.98.208.0/20 16625 -104.98.224.0/19 20940 -104.99.0.0/20 20940 -104.99.16.0/20 3257 -104.99.32.0/20 3257 -104.99.48.0/22 3257 -104.99.58.0/24 35994 -104.99.59.0/24 20940 -104.99.60.0/22 3491 -104.99.96.0/19 3491 -104.99.128.0/23 3491 -104.99.130.0/23 45595 -104.99.132.0/22 45595 -104.99.136.0/22 20940 -104.99.140.0/24 20940 -104.99.141.0/24 35994 -104.99.142.0/23 20940 -104.99.176.0/21 7713 -104.99.184.0/22 7713 -104.99.188.0/22 9443 -104.99.192.0/19 9443 -104.99.224.0/21 9443 -104.99.232.0/22 16625 -104.99.237.0/24 20940 -104.99.238.0/23 20940 -104.99.240.0/20 9443 -104.100.0.0/20 9443 -104.100.16.0/20 16625 -104.100.32.0/19 16625 -104.100.64.0/20 16625 -104.100.80.0/21 16625 -104.100.88.0/22 16625 -104.100.92.0/24 24319 -104.100.93.0/24 20940 -104.100.96.0/19 16625 -104.100.164.0/22 35994 -104.100.170.0/24 20940 -104.100.171.0/24 209 -104.100.192.0/18 16625 -104.101.0.0/20 16625 -104.101.16.0/22 55836 -104.101.20.0/24 26769 -104.101.21.0/24 22773 -104.101.22.0/23 4775 -104.101.24.0/22 4775 -104.101.28.0/22 4818 -104.101.32.0/19 4775 -104.101.64.0/19 4818 -104.101.96.0/23 4818 -104.101.98.0/23 20940 -104.101.100.0/22 16625 -104.101.104.0/21 20940 -104.101.128.0/19 16625 -104.101.192.0/21 20940 -104.101.204.0/22 20940 -104.101.208.0/24 20940 -104.101.209.0/24 35994 -104.101.210.0/23 20940 -104.101.212.0/22 20940 -104.101.216.0/22 20940 -104.101.221.0/24 12222 -104.101.222.0/23 35994 -104.101.224.0/22 20940 -104.101.228.0/23 20940 -104.101.230.0/23 35994 -104.101.232.0/22 20940 -104.101.236.0/22 16625 -104.101.240.0/20 16625 -104.102.0.0/20 16625 -104.102.16.0/21 16625 -104.102.24.0/24 20940 -104.102.25.0/24 35994 -104.102.26.0/24 20940 -104.102.27.0/24 33662 -104.102.28.0/22 20940 -104.102.32.0/19 16625 -104.102.64.0/19 16625 -104.102.144.0/20 16625 -104.102.160.0/19 16625 -104.102.192.0/19 16625 -104.102.224.0/20 16625 -104.102.241.0/24 20940 -104.102.242.0/23 35994 -104.102.244.0/24 20940 -104.102.245.0/24 21342 -104.102.247.0/24 20940 -104.102.248.0/22 20940 -104.102.252.0/22 16625 -104.103.0.0/18 16625 -104.103.64.0/22 16625 -104.103.68.0/23 16625 -104.103.70.0/24 4788 -104.103.71.0/24 20940 -104.103.72.0/23 20940 -104.103.74.0/23 16625 -104.103.76.0/22 16625 -104.103.80.0/20 16625 -104.103.96.0/20 16625 -104.103.112.0/20 20940 -104.103.128.0/20 20940 -104.103.144.0/21 20940 -104.103.152.0/22 20940 -104.103.156.0/22 16625 -104.103.160.0/20 16625 -104.103.176.0/20 20940 -104.103.192.0/19 16625 -104.103.224.0/21 16625 -104.103.232.0/24 20940 -104.103.233.0/24 35994 -104.103.234.0/24 21342 -104.103.235.0/24 35994 -104.103.236.0/23 20940 -104.103.238.0/23 12956 -104.103.240.0/20 16625 -104.104.0.0/20 16625 -104.104.16.0/20 12956 -104.104.32.0/20 12956 -104.104.48.0/22 12956 -104.104.52.0/22 20940 -104.104.56.0/23 20940 -104.104.58.0/24 21342 -104.104.59.0/24 35994 -104.104.60.0/22 16625 -104.104.64.0/19 16625 -104.104.130.0/23 16625 -104.104.132.0/22 16625 -104.104.136.0/23 20940 -104.104.138.0/24 9498 -104.104.139.0/24 20940 -104.104.140.0/22 20940 -104.104.144.0/20 16625 -104.104.160.0/20 16625 -104.104.176.0/20 20940 -104.104.208.0/20 6147 -104.104.224.0/20 6147 -104.104.240.0/22 6147 -104.104.244.0/23 20940 -104.104.246.0/23 16625 -104.104.252.0/22 20940 -104.105.0.0/19 9299 -104.105.32.0/19 16625 -104.105.80.0/20 16625 -104.105.96.0/19 16625 -104.105.128.0/19 16625 -104.105.192.0/19 20940 -104.105.224.0/19 6453 -104.106.0.0/22 6453 -104.106.4.0/22 16625 -104.106.8.0/22 16625 -104.106.12.0/22 20940 -104.106.16.0/20 16625 -104.106.32.0/19 16625 -104.106.64.0/20 20940 -104.106.80.0/23 20940 -104.106.82.0/23 16625 -104.106.84.0/22 16625 -104.106.88.0/23 34164 -104.106.90.0/23 12956 -104.106.92.0/22 12956 -104.106.96.0/21 16625 -104.106.104.0/22 16625 -104.106.108.0/23 16625 -104.106.110.0/23 6762 -104.106.112.0/20 16625 -104.106.128.0/19 12956 -104.106.160.0/19 16625 -104.106.192.0/22 20940 -104.106.196.0/23 20940 -104.106.198.0/23 35994 -104.106.200.0/23 16625 -104.106.202.0/23 4761 -104.106.204.0/22 4761 -104.106.208.0/20 16625 -104.106.240.0/20 16625 -104.107.0.0/19 16625 -104.107.32.0/20 16625 -104.107.48.0/22 16625 -104.107.52.0/23 16625 -104.107.54.0/23 3462 -104.107.56.0/22 3462 -104.107.60.0/23 20940 -104.107.62.0/23 17511 -104.107.64.0/19 3462 -104.107.96.0/22 17511 -104.107.100.0/22 16625 -104.107.104.0/22 20940 -104.107.108.0/23 20940 -104.107.110.0/23 16625 -104.107.112.0/22 16625 -104.107.116.0/24 35994 -104.107.117.0/24 20940 -104.107.118.0/23 20940 -104.107.120.0/23 16625 -104.107.122.0/23 6147 -104.107.124.0/22 20940 -104.107.128.0/20 16625 -104.107.144.0/20 20940 -104.107.166.0/23 34164 -104.107.168.0/23 16625 -104.107.170.0/24 6762 -104.107.171.0/24 12956 -104.107.172.0/22 16625 -104.107.176.0/20 20940 -104.107.192.0/20 16625 -104.107.208.0/23 20940 -104.107.210.0/24 20940 -104.107.211.0/24 33905 -104.107.212.0/22 16625 -104.107.216.0/23 20940 -104.107.218.0/23 16625 -104.107.220.0/22 16625 -104.107.224.0/19 16625 -104.108.0.0/18 16625 -104.108.64.0/22 16625 -104.108.68.0/23 16625 -104.108.70.0/23 20940 -104.108.72.0/21 16625 -104.108.80.0/20 16625 -104.108.96.0/19 16625 -104.108.128.0/20 16625 -104.108.148.0/22 16625 -104.108.152.0/21 9498 -104.108.160.0/19 16625 -104.108.192.0/18 9498 -104.109.0.0/21 9498 -104.109.8.0/23 9498 -104.109.10.0/23 33905 -104.109.12.0/24 33905 -104.109.13.0/24 20940 -104.109.14.0/23 28573 -104.109.16.0/20 28573 -104.109.32.0/20 28573 -104.109.48.0/22 28573 -104.109.52.0/24 20940 -104.109.54.0/23 20940 -104.109.56.0/22 20940 -104.109.60.0/22 16625 -104.109.64.0/19 20940 -104.109.96.0/19 16625 -104.109.128.0/23 20940 -104.109.136.0/22 20940 -104.109.140.0/23 20940 -104.109.176.0/20 20940 -104.109.192.0/20 20940 -104.109.250.0/24 20940 -104.109.251.0/24 15802 -104.110.32.0/19 28573 -104.110.66.0/23 7545 -104.110.68.0/22 7545 -104.110.72.0/21 16625 -104.110.80.0/20 7545 -104.110.96.0/20 7545 -104.110.112.0/20 16625 -104.110.128.0/19 16625 -104.110.160.0/20 13367 -104.110.180.0/22 34164 -104.110.184.0/23 20940 -104.110.189.0/24 20940 -104.110.192.0/19 16625 -104.110.224.0/20 16625 -104.110.242.0/24 20940 -104.110.244.0/22 16625 -104.110.248.0/21 16625 -104.111.0.0/19 7713 -104.111.128.0/18 16625 -104.111.192.0/20 16625 -104.111.208.0/22 16625 -104.111.214.0/23 16625 -104.111.216.0/21 16625 -104.111.224.0/19 16625 -104.112.0.0/23 16625 -104.112.2.0/23 20940 -104.112.4.0/22 20940 -104.112.8.0/21 16625 -104.112.16.0/20 16625 -104.112.32.0/19 16625 -104.112.64.0/19 16625 -104.112.96.0/20 16625 -104.112.112.0/20 28573 -104.112.128.0/20 28573 -104.112.144.0/22 28573 -104.112.148.0/23 28573 -104.112.150.0/23 16625 -104.112.152.0/22 16625 -104.112.156.0/22 4230 -104.112.160.0/19 16625 -104.112.192.0/20 16625 -104.112.208.0/20 4230 -104.112.224.0/23 4230 -104.112.226.0/24 35994 -104.112.227.0/24 9829 -104.112.228.0/22 20940 -104.112.232.0/22 20940 -104.112.236.0/22 16625 -104.112.240.0/20 16625 -104.113.0.0/19 16625 -104.113.32.0/20 4230 -104.113.48.0/20 20940 -104.113.64.0/20 20940 -104.113.80.0/20 16625 -104.113.96.0/19 16625 -104.113.128.0/23 16625 -104.113.130.0/23 17072 -104.113.132.0/22 17072 -104.113.136.0/22 16625 -104.113.140.0/23 16625 -104.113.142.0/23 55410 -104.113.144.0/20 17072 -104.113.160.0/20 17072 -104.113.176.0/20 16625 -104.113.192.0/20 16625 -104.113.240.0/22 55410 -104.113.244.0/22 6762 -104.113.250.0/24 20940 -104.113.251.0/24 8966 -104.113.252.0/22 20940 -104.114.0.0/18 16625 -104.114.64.0/24 24319 -104.114.65.0/24 20940 -104.114.66.0/23 9829 -104.114.68.0/22 9829 -104.114.72.0/21 20940 -104.114.80.0/20 9829 -104.114.96.0/20 9829 -104.114.112.0/20 16625 -104.114.128.0/19 16625 -104.114.160.0/21 16625 -104.114.168.0/24 20940 -104.114.169.0/24 1273 -104.114.170.0/23 22047 -104.114.172.0/22 22047 -104.114.176.0/20 16625 -104.114.192.0/19 25019 -104.114.224.0/19 22047 -104.115.0.0/19 35819 -104.115.32.0/21 20940 -104.115.40.0/22 16625 -104.115.44.0/24 35994 -104.115.45.0/24 20940 -104.115.46.0/23 35994 -104.115.64.0/20 16625 -104.115.80.0/24 1680 -104.115.81.0/24 20940 -104.115.82.0/23 20940 -104.115.84.0/22 35994 -104.115.88.0/22 16625 -104.115.92.0/22 9498 -104.115.96.0/19 16625 -104.115.128.0/19 16625 -104.115.160.0/23 16625 -104.115.162.0/23 2519 -104.115.164.0/22 2519 -104.115.168.0/21 16625 -104.115.176.0/20 2519 -104.115.192.0/20 2519 -104.115.208.0/20 16625 -104.115.224.0/19 16625 -104.116.0.0/20 16625 -104.116.16.0/22 16625 -104.116.20.0/22 4657 -104.116.24.0/23 4657 -104.116.26.0/23 16625 -104.116.28.0/22 16625 -104.116.32.0/20 4657 -104.116.48.0/20 16625 -104.116.64.0/19 16625 -104.116.96.0/22 16625 -104.116.101.0/24 20940 -104.116.102.0/23 16625 -104.116.104.0/21 16625 -104.116.112.0/20 16625 -104.116.128.0/19 16625 -104.116.160.0/23 16625 -104.116.162.0/24 35994 -104.116.163.0/24 20940 -104.116.164.0/22 16625 -104.116.168.0/21 16625 -104.116.176.0/20 16625 -104.116.192.0/19 16625 -104.116.224.0/20 16625 -104.116.240.0/23 24319 -104.116.242.0/23 20940 -104.116.244.0/22 20940 -104.116.248.0/21 20940 -104.117.0.0/18 20940 -104.117.64.0/23 20940 -104.117.79.0/24 20940 -104.117.112.0/20 16625 -104.117.144.0/20 16625 -104.117.160.0/20 16625 -104.117.176.0/22 16625 -104.117.180.0/24 21342 -104.117.181.0/24 20940 -104.117.182.0/23 20940 -104.117.184.0/21 16625 -104.117.192.0/19 7545 -104.117.224.0/21 2914 -104.117.232.0/21 16625 -104.117.240.0/20 16625 -104.118.2.0/23 35994 -104.118.4.0/24 35994 -104.118.5.0/24 24319 -104.118.6.0/24 20940 -104.118.7.0/24 9829 -104.118.8.0/22 16625 -104.118.13.0/24 20940 -104.118.14.0/23 20940 -104.118.16.0/21 20940 -104.118.24.0/24 13489 -104.118.25.0/24 20940 -104.118.26.0/24 20940 -104.118.27.0/24 24319 -104.118.28.0/22 16625 -104.118.32.0/19 16625 -104.118.64.0/19 16625 -104.118.96.0/21 16625 -104.118.104.0/23 20940 -104.118.106.0/23 24203 -104.118.108.0/22 24203 -104.118.112.0/20 16625 -104.118.128.0/20 16625 -104.118.144.0/20 24203 -104.118.160.0/20 24203 -104.118.176.0/20 16625 -104.118.192.0/20 16625 -104.118.208.0/22 16625 -104.118.212.0/23 16625 -104.118.214.0/23 20940 -104.118.216.0/24 35994 -104.118.217.0/24 20940 -104.118.218.0/23 18101 -104.118.220.0/22 174 -104.118.224.0/19 2828 -104.119.0.0/19 16625 -104.119.32.0/24 18678 -104.119.33.0/24 27814 -104.119.34.0/23 20940 -104.119.36.0/22 18101 -104.119.40.0/21 2828 -104.119.48.0/20 18101 -104.119.64.0/19 2828 -104.119.96.0/22 2828 -104.119.108.0/22 16625 -104.119.144.0/20 16625 -104.119.160.0/20 20940 -104.119.176.0/22 8966 -104.119.180.0/23 8966 -104.119.184.0/22 16625 -104.119.188.0/22 20940 -104.119.192.0/18 16625 -104.120.0.0/21 20940 -104.120.8.0/21 16625 -104.120.54.0/23 20940 -104.120.56.0/22 16625 -104.120.64.0/19 16625 -104.120.130.0/23 18209 -104.120.132.0/22 18209 -104.120.136.0/23 24319 -104.120.139.0/24 20940 -104.120.144.0/20 18209 -104.120.160.0/20 18209 -104.120.210.0/24 20940 -104.120.211.0/24 35994 -104.120.212.0/22 16625 -104.120.216.0/21 16625 -104.120.224.0/21 20940 -104.120.240.0/20 1299 -104.121.0.0/19 16625 -104.121.32.0/19 28573 -104.121.64.0/22 9002 -104.121.68.0/23 9002 -104.121.70.0/23 16625 -104.121.72.0/23 35994 -104.121.74.0/23 20940 -104.121.76.0/23 20940 -104.121.78.0/23 16625 -104.121.80.0/20 16625 -104.121.96.0/19 16625 -104.121.128.0/20 16625 -104.121.144.0/22 16625 -104.121.148.0/23 20940 -104.121.152.0/22 16625 -104.121.160.0/19 16625 -104.121.224.0/22 20940 -104.121.228.0/22 16625 -104.121.232.0/23 16625 -104.121.234.0/23 20940 -104.121.236.0/22 16625 -104.121.240.0/20 16625 -104.122.0.0/20 16625 -104.122.16.0/21 16625 -104.122.32.0/19 16625 -104.122.64.0/20 16625 -104.122.80.0/22 59605 -104.122.84.0/22 16625 -104.122.88.0/22 16625 -104.122.92.0/23 16625 -104.122.94.0/24 20940 -104.122.95.0/24 35994 -104.122.96.0/19 16625 -104.122.128.0/20 8781 -104.122.144.0/20 16625 -104.122.160.0/19 16625 -104.122.192.0/20 20940 -104.122.208.0/22 16625 -104.122.212.0/22 20940 -104.122.216.0/22 16625 -104.122.220.0/23 1299 -104.122.222.0/23 16625 -104.122.224.0/19 1299 -104.123.16.0/21 16625 -104.123.24.0/21 20940 -104.123.32.0/21 1273 -104.123.49.0/24 24319 -104.123.50.0/24 20940 -104.123.52.0/22 3786 -104.123.57.0/24 24319 -104.123.58.0/24 24319 -104.123.61.0/24 20940 -104.123.62.0/23 6128 -104.123.64.0/23 6128 -104.123.68.0/22 20940 -104.123.72.0/21 16625 -104.123.80.0/20 16625 -104.123.96.0/21 20940 -104.123.104.0/21 16625 -104.123.112.0/20 1299 -104.123.128.0/20 1299 -104.123.144.0/22 1299 -104.123.148.0/22 55836 -104.123.152.0/23 20940 -104.123.154.0/24 20940 -104.123.155.0/24 35994 -104.123.156.0/23 35994 -104.123.158.0/24 35994 -104.123.159.0/24 20940 -104.123.160.0/19 20940 -104.123.192.0/22 16625 -104.123.196.0/22 20940 -104.123.200.0/21 16625 -104.123.208.0/23 20940 -104.123.210.0/23 16625 -104.123.212.0/23 20940 -104.123.216.0/21 16625 -104.123.224.0/19 16625 -104.124.0.0/23 20940 -104.124.2.0/24 20940 -104.124.3.0/24 35994 -104.124.4.0/22 16625 -104.124.8.0/23 16625 -104.124.10.0/23 20940 -104.124.12.0/22 16625 -104.124.16.0/20 16625 -104.124.32.0/20 16625 -104.124.48.0/23 16625 -104.124.50.0/24 18680 -104.124.51.0/24 24319 -104.124.52.0/23 20940 -104.124.54.0/24 20940 -104.124.56.0/21 20940 -104.124.64.0/19 16625 -104.124.97.0/24 20940 -104.124.98.0/23 35994 -104.124.100.0/22 16625 -104.124.104.0/24 35994 -104.124.105.0/24 20940 -104.124.106.0/23 16625 -104.124.108.0/22 16625 -104.124.112.0/20 16625 -104.124.128.0/19 16625 -104.124.160.0/20 16625 -104.124.176.0/22 16625 -104.124.180.0/23 16625 -104.124.182.0/23 20940 -104.124.184.0/22 20940 -104.124.188.0/22 16625 -104.124.192.0/19 20940 -104.124.224.0/19 16625 -104.125.0.0/23 16625 -104.125.4.0/22 16625 -104.125.12.0/23 16625 -104.125.14.0/24 35994 -104.125.15.0/24 24319 -104.125.16.0/20 16625 -104.125.64.0/20 16625 -104.125.80.0/23 35994 -104.125.82.0/24 20940 -104.125.83.0/24 35994 -104.125.84.0/22 20940 -104.125.88.0/22 33662 -104.125.93.0/24 7843 -104.125.94.0/23 28573 -104.125.96.0/19 28573 -104.125.128.0/19 28573 -104.125.160.0/20 28573 -104.125.215.0/24 20940 -104.125.216.0/23 33662 -104.126.38.0/23 16625 -104.126.44.0/22 16625 -104.126.48.0/20 16625 -104.126.64.0/19 16625 -104.126.96.0/20 16625 -104.126.112.0/22 16625 -104.126.116.0/22 20940 -104.126.128.0/19 16625 -104.126.160.0/20 1299 -104.126.176.0/20 16625 -104.127.0.0/18 16625 -104.127.96.0/19 16625 -104.127.144.0/20 16625 -104.127.192.0/19 16625 -104.128.0.0/20 31758 -104.128.16.0/22 53889 -104.128.20.0/23 53889 -104.128.22.0/24 53889 -104.128.23.0/24 53559 -104.128.24.0/24 53889 -104.128.25.0/24 201665 -104.128.26.0/23 53889 -104.128.28.0/23 53889 -104.128.30.0/24 53889 -104.128.31.0/24 63008 -104.128.32.0/20 393796 -104.128.48.0/22 30455 -104.128.52.0/23 30455 -104.128.54.0/24 29838 -104.128.55.0/24 30455 -104.128.56.0/22 30455 -104.128.60.0/23 30455 -104.128.62.0/24 30455 -104.128.63.0/24 29838 -104.128.64.0/23 36007 -104.128.68.0/22 53340 -104.128.72.0/22 23470 -104.128.76.0/23 395737 -104.128.78.0/23 62710 -104.128.80.0/20 25820 -104.128.96.0/20 19233 -104.128.112.0/20 26658 -104.128.128.0/21 53889 -104.128.136.0/24 63008 -104.128.137.0/24 53889 -104.128.138.0/23 53889 -104.128.140.0/22 53889 -104.128.144.0/22 393653 -104.128.152.0/21 393653 -104.128.160.0/22 26827 -104.128.164.0/24 10916 -104.128.165.0/24 26827 -104.128.166.0/23 26827 -104.128.168.0/21 26827 -104.128.192.0/23 40720 -104.128.194.0/23 53375 -104.128.196.0/22 53375 -104.128.200.0/21 22829 -104.128.208.0/20 5050 -104.128.224.0/22 7489 -104.128.228.0/23 7489 -104.128.230.0/24 62217 -104.128.231.0/24 46261 -104.128.232.0/24 46261 -104.128.233.0/24 7489 -104.128.234.0/24 62217 -104.128.235.0/24 7489 -104.128.236.0/22 7489 -104.128.240.0/20 271 -104.129.0.0/18 8100 -104.129.64.0/22 46887 -104.129.68.0/24 25938 -104.129.69.0/24 46887 -104.129.70.0/23 46887 -104.129.72.0/21 46887 -104.129.80.0/22 46887 -104.129.84.0/23 46887 -104.129.86.0/24 46887 -104.129.87.0/24 393583 -104.129.88.0/23 46887 -104.129.90.0/24 46887 -104.129.91.0/24 394492 -104.129.92.0/23 46887 -104.129.94.0/24 46887 -104.129.95.0/24 394198 -104.129.96.0/20 22995 -104.129.112.0/21 22995 -104.129.124.0/22 22995 -104.129.128.0/23 54913 -104.129.130.0/23 396949 -104.129.132.0/22 53340 -104.129.136.0/22 46450 -104.129.140.0/23 46450 -104.129.142.0/24 46450 -104.129.143.0/24 54210 -104.129.144.0/23 12125 -104.129.146.0/24 12125 -104.129.148.0/23 30385 -104.129.150.0/23 54271 -104.129.152.0/22 62642 -104.129.156.0/24 395458 -104.129.157.0/24 396386 -104.129.158.0/23 395677 -104.129.160.0/21 11554 -104.129.168.0/22 40244 -104.129.172.0/22 64249 -104.129.176.0/22 33247 -104.129.180.0/22 25820 -104.129.184.0/22 25820 -104.129.188.0/22 33544 -104.129.192.0/20 22616 -104.129.208.0/20 395846 -104.129.240.0/20 395111 -104.130.0.0/18 27357 -104.130.64.0/19 19994 -104.130.96.0/20 19994 -104.130.112.0/21 19994 -104.130.120.0/22 27357 -104.130.124.0/22 33070 -104.130.128.0/19 33070 -104.130.160.0/19 27357 -104.130.192.0/19 19994 -104.130.224.0/20 27357 -104.130.240.0/20 33070 -104.131.0.0/16 14061 -104.132.0.0/22 36384 -104.132.4.0/23 36384 -104.132.6.0/24 41264 -104.132.7.0/24 36384 -104.132.8.0/21 36384 -104.132.16.0/24 36384 -104.132.17.0/24 41264 -104.132.18.0/23 36384 -104.132.20.0/22 36384 -104.132.24.0/24 36384 -104.132.25.0/24 41264 -104.132.26.0/24 41264 -104.132.27.0/24 36384 -104.132.28.0/23 36384 -104.132.30.0/24 36384 -104.132.31.0/24 41264 -104.132.32.0/22 36384 -104.132.36.0/23 41264 -104.132.38.0/24 41264 -104.132.39.0/24 36384 -104.132.40.0/24 41264 -104.132.41.0/24 36384 -104.132.42.0/23 41264 -104.132.44.0/22 36384 -104.132.48.0/22 36384 -104.132.52.0/24 41264 -104.132.53.0/24 36384 -104.132.54.0/23 36384 -104.132.56.0/24 36384 -104.132.57.0/24 41264 -104.132.58.0/24 36384 -104.132.59.0/24 41264 -104.132.60.0/23 41264 -104.132.62.0/24 41264 -104.132.63.0/24 36384 -104.132.64.0/22 36384 -104.132.68.0/24 36384 -104.132.69.0/24 41264 -104.132.70.0/23 36384 -104.132.72.0/24 41264 -104.132.73.0/24 36384 -104.132.74.0/23 36384 -104.132.76.0/22 36384 -104.132.80.0/24 36384 -104.132.81.0/24 41264 -104.132.82.0/23 36384 -104.132.84.0/24 36384 -104.132.85.0/24 41264 -104.132.86.0/23 41264 -104.132.88.0/22 36384 -104.132.92.0/24 41264 -104.132.93.0/24 36384 -104.132.94.0/23 36384 -104.132.96.0/22 36384 -104.132.100.0/23 36384 -104.132.102.0/24 41264 -104.132.103.0/24 36384 -104.132.104.0/23 36384 -104.132.106.0/24 36384 -104.132.107.0/24 41264 -104.132.108.0/24 41264 -104.132.109.0/24 36384 -104.132.110.0/23 36384 -104.132.112.0/24 36384 -104.132.113.0/24 41264 -104.132.114.0/24 41264 -104.132.115.0/24 36384 -104.132.116.0/24 36384 -104.132.117.0/24 41264 -104.132.118.0/23 41264 -104.132.120.0/22 36384 -104.132.124.0/24 41264 -104.132.125.0/24 36384 -104.132.126.0/23 36384 -104.132.128.0/23 36384 -104.132.130.0/23 41264 -104.132.132.0/23 41264 -104.132.134.0/24 36384 -104.132.135.0/24 41264 -104.132.136.0/24 41264 -104.132.137.0/24 36384 -104.132.138.0/23 36384 -104.132.140.0/24 41264 -104.132.141.0/24 36384 -104.132.142.0/24 41264 -104.132.143.0/24 36384 -104.132.144.0/23 36384 -104.132.146.0/24 41264 -104.132.147.0/24 36384 -104.132.148.0/22 36384 -104.132.152.0/22 41264 -104.132.156.0/23 36384 -104.132.158.0/24 36384 -104.132.159.0/24 41264 -104.132.160.0/24 41264 -104.132.161.0/24 36384 -104.132.162.0/24 41264 -104.132.163.0/24 36384 -104.132.164.0/22 36384 -104.132.168.0/23 41264 -104.132.170.0/23 36384 -104.132.172.0/22 36384 -104.132.176.0/23 36384 -104.132.178.0/24 36384 -104.132.179.0/24 41264 -104.132.180.0/24 41264 -104.132.181.0/24 36384 -104.132.182.0/23 36384 -104.132.184.0/23 41264 -104.132.186.0/24 41264 -104.132.187.0/24 36384 -104.132.188.0/23 36384 -104.132.190.0/24 36384 -104.132.191.0/24 41264 -104.132.192.0/22 36384 -104.132.196.0/23 36384 -104.132.198.0/24 41264 -104.132.199.0/24 36384 -104.132.200.0/22 36384 -104.132.204.0/24 36384 -104.132.205.0/24 41264 -104.132.206.0/24 36384 -104.132.207.0/24 41264 -104.132.208.0/22 36384 -104.132.212.0/24 36384 -104.132.213.0/24 41264 -104.132.214.0/23 41264 -104.132.216.0/22 36384 -104.132.220.0/23 36384 -104.132.222.0/24 41264 -104.132.223.0/24 36384 -104.132.224.0/20 36384 -104.132.240.0/22 36384 -104.132.244.0/24 41264 -104.132.245.0/24 36384 -104.132.246.0/23 36384 -104.132.248.0/21 36384 -104.133.0.0/22 36384 -104.133.4.0/24 36384 -104.133.5.0/24 41264 -104.133.6.0/23 41264 -104.133.8.0/21 36384 -104.133.16.0/24 36384 -104.133.17.0/24 41264 -104.133.18.0/24 41264 -104.133.19.0/24 36384 -104.133.20.0/22 36384 -104.133.24.0/24 41264 -104.133.25.0/24 36384 -104.133.26.0/23 36384 -104.133.28.0/24 36384 -104.133.29.0/24 41264 -104.133.30.0/23 36384 -104.133.32.0/23 36384 -104.133.34.0/24 41264 -104.133.35.0/24 36384 -104.133.36.0/22 36384 -104.133.40.0/21 36384 -104.133.48.0/20 36384 -104.133.64.0/18 36384 -104.133.128.0/17 36384 -104.134.0.0/18 36384 -104.134.64.0/20 36384 -104.134.80.0/21 36384 -104.134.88.0/22 36384 -104.134.92.0/24 15169 -104.134.93.0/24 36384 -104.134.94.0/23 36384 -104.134.96.0/19 36384 -104.134.128.0/23 36384 -104.134.130.0/24 36384 -104.134.131.0/24 395973 -104.134.132.0/22 36384 -104.134.136.0/21 36384 -104.134.144.0/20 36384 -104.134.160.0/19 36384 -104.134.192.0/24 395973 -104.134.193.0/24 36384 -104.134.194.0/24 395973 -104.134.195.0/24 36384 -104.134.196.0/22 36384 -104.134.200.0/21 36384 -104.134.208.0/20 36384 -104.134.224.0/20 36384 -104.134.240.0/23 41264 -104.134.242.0/24 41264 -104.134.243.0/24 36384 -104.134.244.0/22 36384 -104.134.248.0/21 36384 -104.135.0.0/17 36384 -104.135.128.0/18 36384 -104.135.192.0/19 36384 -104.135.224.0/20 36384 -104.135.240.0/21 36384 -104.135.248.0/22 36384 -104.135.252.0/23 36384 -104.135.254.0/24 45566 -104.135.255.0/24 36384 -104.136.0.0/15 33363 -104.138.0.0/18 11426 -104.138.64.0/20 19115 -104.138.80.0/20 11426 -104.138.96.0/19 11426 -104.138.128.0/17 11426 -104.139.0.0/16 11426 -104.140.0.0/18 62904 -104.140.64.0/19 62904 -104.140.96.0/22 62904 -104.140.100.0/22 49532 -104.140.104.0/21 62904 -104.140.112.0/20 62904 -104.140.128.0/19 62904 -104.140.160.0/20 62904 -104.140.176.0/21 62904 -104.140.184.0/22 62904 -104.140.188.0/22 49532 -104.140.192.0/21 62904 -104.140.200.0/22 62904 -104.140.208.0/20 62904 -104.140.224.0/19 62904 -104.141.0.0/16 32440 -104.142.0.0/17 6561 -104.142.128.0/18 33353 -104.142.192.0/19 33353 -104.142.224.0/24 33353 -104.142.225.0/24 26580 -104.142.226.0/23 33353 -104.142.228.0/22 33353 -104.142.232.0/21 33353 -104.142.240.0/20 33353 -104.143.0.0/22 36114 -104.143.4.0/22 62664 -104.143.8.0/24 64249 -104.143.9.0/24 64200 -104.143.10.0/23 36114 -104.143.12.0/24 395520 -104.143.16.0/21 53889 -104.143.24.0/22 53889 -104.143.28.0/23 53889 -104.143.30.0/24 6130 -104.143.31.0/24 53889 -104.143.32.0/24 21859 -104.143.34.0/23 21859 -104.143.36.0/23 135330 -104.143.38.0/23 26484 -104.143.40.0/24 21859 -104.143.41.0/24 135330 -104.143.42.0/24 21859 -104.143.43.0/24 49466 -104.143.44.0/23 21859 -104.143.46.0/24 21859 -104.143.47.0/24 135330 -104.143.48.0/20 40230 -104.143.64.0/22 396536 -104.143.68.0/24 14569 -104.143.69.0/24 13739 -104.143.70.0/23 13739 -104.143.72.0/22 13739 -104.143.76.0/24 13739 -104.143.77.0/24 396536 -104.143.78.0/24 13739 -104.143.79.0/24 396191 -104.143.80.0/23 22400 -104.143.82.0/24 22400 -104.143.83.0/24 62874 -104.143.84.0/24 29854 -104.143.85.0/24 27330 -104.143.86.0/24 32181 -104.143.87.0/24 133752 -104.143.88.0/22 22400 -104.143.92.0/24 36351 -104.143.93.0/24 22400 -104.143.94.0/24 201106 -104.143.95.0/24 36351 -104.143.96.0/21 21769 -104.143.104.0/24 21769 -104.143.105.0/24 54103 -104.143.106.0/24 54103 -104.143.107.0/24 21769 -104.143.108.0/23 54103 -104.143.110.0/24 21769 -104.143.111.0/24 54103 -104.143.112.0/24 46746 -104.143.128.0/19 40676 -104.143.160.0/22 7015 -104.143.164.0/22 13341 -104.143.168.0/22 33132 -104.143.176.0/23 174 -104.143.178.0/23 20115 -104.143.180.0/24 54119 -104.143.184.0/21 10835 -104.143.192.0/24 53559 -104.143.193.0/24 53889 -104.143.194.0/24 6130 -104.143.195.0/24 53889 -104.143.196.0/24 53559 -104.143.197.0/24 53889 -104.143.198.0/23 53889 -104.143.200.0/23 53889 -104.143.202.0/24 201665 -104.143.203.0/24 53889 -104.143.204.0/24 53889 -104.143.205.0/24 6130 -104.143.206.0/23 53889 -104.143.208.0/23 53889 -104.143.210.0/24 53889 -104.143.211.0/24 53559 -104.143.212.0/23 53889 -104.143.214.0/24 53889 -104.143.215.0/24 53559 -104.143.216.0/24 53889 -104.143.217.0/24 6130 -104.143.218.0/23 53889 -104.143.220.0/22 53889 -104.143.224.0/19 1273 -104.144.0.0/21 55286 -104.144.8.0/24 55286 -104.144.9.0/24 25369 -104.144.10.0/23 55286 -104.144.12.0/22 55286 -104.144.16.0/21 55286 -104.144.24.0/23 55286 -104.144.26.0/24 36352 -104.144.27.0/24 55286 -104.144.28.0/22 55286 -104.144.32.0/23 55286 -104.144.34.0/24 36352 -104.144.35.0/24 55286 -104.144.36.0/22 55286 -104.144.40.0/23 55286 -104.144.42.0/23 36352 -104.144.44.0/23 55286 -104.144.46.0/24 55081 -104.144.47.0/24 55286 -104.144.48.0/21 55286 -104.144.56.0/23 55081 -104.144.58.0/23 55286 -104.144.60.0/22 55286 -104.144.64.0/23 55081 -104.144.66.0/23 55286 -104.144.68.0/22 55286 -104.144.72.0/21 55286 -104.144.80.0/20 55286 -104.144.96.0/21 55286 -104.144.104.0/22 55286 -104.144.108.0/24 55286 -104.144.109.0/24 36352 -104.144.110.0/23 55286 -104.144.112.0/23 55286 -104.144.114.0/23 36352 -104.144.116.0/22 55286 -104.144.120.0/24 55286 -104.144.121.0/24 36352 -104.144.122.0/24 55286 -104.144.123.0/24 36352 -104.144.124.0/22 55286 -104.144.128.0/21 55286 -104.144.136.0/22 55286 -104.144.140.0/23 55286 -104.144.142.0/24 36352 -104.144.143.0/24 55286 -104.144.144.0/20 55286 -104.144.160.0/19 55286 -104.144.192.0/21 55286 -104.144.200.0/24 36352 -104.144.201.0/24 55286 -104.144.202.0/23 55286 -104.144.204.0/22 55286 -104.144.208.0/23 55286 -104.144.210.0/24 55286 -104.144.211.0/24 36352 -104.144.212.0/23 55286 -104.144.214.0/24 36352 -104.144.215.0/24 55286 -104.144.216.0/24 36352 -104.144.217.0/24 55286 -104.144.218.0/23 55286 -104.144.220.0/22 55286 -104.144.224.0/19 55286 -104.145.0.0/20 15290 -104.145.16.0/20 18140 -104.145.48.0/20 33490 -104.145.64.0/22 46925 -104.145.68.0/23 46925 -104.145.72.0/23 46925 -104.145.76.0/24 23473 -104.145.80.0/23 46925 -104.145.84.0/23 46925 -104.145.88.0/23 23473 -104.145.92.0/22 23473 -104.145.96.0/23 46925 -104.145.100.0/24 23473 -104.145.104.0/24 23473 -104.145.108.0/23 23473 -104.145.112.0/22 23473 -104.145.116.0/24 46925 -104.145.118.0/23 46925 -104.145.120.0/22 12175 -104.145.124.0/24 23473 -104.145.126.0/24 46925 -104.145.127.0/24 23473 -104.145.128.0/18 63092 -104.145.200.0/21 46892 -104.145.220.0/22 32829 -104.145.224.0/22 64245 -104.145.228.0/24 64245 -104.145.229.0/24 397469 -104.145.231.0/24 36352 -104.145.232.0/23 36352 -104.145.234.0/24 36352 -104.145.235.0/24 64245 -104.145.236.0/24 64245 -104.145.237.0/24 36352 -104.145.238.0/24 36352 -104.145.239.0/24 53999 -104.145.240.0/20 23254 -104.146.0.0/19 8075 -104.146.128.0/17 8075 -104.148.0.0/20 46573 -104.148.16.0/21 46573 -104.148.24.0/22 46573 -104.148.28.0/23 46573 -104.148.30.0/24 397086 -104.148.31.0/24 46573 -104.148.32.0/20 46573 -104.148.48.0/21 46573 -104.148.56.0/24 397086 -104.148.57.0/24 46573 -104.148.58.0/23 46573 -104.148.60.0/22 46573 -104.148.64.0/18 46573 -104.148.128.0/17 6128 -104.149.0.0/16 40676 -104.150.0.0/16 1832 -104.151.0.0/16 18978 -104.152.0.0/22 36468 -104.152.4.0/23 7029 -104.152.8.0/21 27531 -104.152.16.0/22 32682 -104.152.20.0/22 393494 -104.152.24.0/22 27216 -104.152.28.0/22 803 -104.152.33.0/24 20100 -104.152.34.0/24 20100 -104.152.39.0/24 20100 -104.152.40.0/22 10302 -104.152.44.0/22 3223 -104.152.48.0/24 3356 -104.152.52.0/22 14987 -104.152.56.0/22 33132 -104.152.60.0/22 36143 -104.152.64.0/21 46606 -104.152.72.0/23 16738 -104.152.75.0/24 16738 -104.152.76.0/22 11138 -104.152.88.0/22 11527 -104.152.92.0/23 13767 -104.152.94.0/24 393351 -104.152.95.0/24 13767 -104.152.96.0/22 22322 -104.152.100.0/22 21817 -104.152.104.0/22 19975 -104.152.108.0/22 22611 -104.152.112.0/21 11019 -104.152.120.0/22 54359 -104.152.124.0/22 18712 -104.152.128.0/22 20018 -104.152.132.0/22 20042 -104.152.136.0/22 62809 -104.152.144.0/21 2914 -104.152.152.0/22 55220 -104.152.156.0/22 10392 -104.152.160.0/21 54614 -104.152.168.0/22 63068 -104.152.172.0/24 393586 -104.152.174.0/23 393586 -104.152.176.0/22 18590 -104.152.180.0/22 62738 -104.152.184.0/21 31863 -104.152.192.0/22 40400 -104.152.196.0/24 40948 -104.152.197.0/24 20127 -104.152.198.0/24 40948 -104.152.199.0/24 33477 -104.152.200.0/23 40731 -104.152.202.0/24 40731 -104.152.204.0/22 22466 -104.152.208.0/22 26832 -104.152.216.0/22 395378 -104.152.220.0/23 395378 -104.152.222.0/23 397373 -104.152.224.0/24 11854 -104.152.227.0/24 395771 -104.152.228.0/22 14265 -104.152.232.0/22 54483 -104.152.236.0/22 30689 -104.152.240.0/22 16851 -104.152.244.0/24 13404 -104.152.245.0/24 33313 -104.152.246.0/23 13404 -104.152.248.0/22 54180 -104.152.252.0/22 25961 -104.153.0.0/21 63100 -104.153.8.0/24 23187 -104.153.10.0/24 23187 -104.153.12.0/24 63285 -104.153.14.0/24 63285 -104.153.16.0/22 23188 -104.153.20.0/22 19874 -104.153.24.0/22 40788 -104.153.28.0/24 31775 -104.153.30.0/24 31775 -104.153.32.0/22 32444 -104.153.36.0/22 36394 -104.153.40.0/22 27262 -104.153.44.0/22 29757 -104.153.48.0/22 30028 -104.153.52.0/24 393518 -104.153.53.0/24 27195 -104.153.54.0/24 27195 -104.153.56.0/23 30406 -104.153.58.0/24 30406 -104.153.59.0/24 394085 -104.153.60.0/22 63123 -104.153.64.0/22 29889 -104.153.68.0/22 46399 -104.153.72.0/22 46562 -104.153.76.0/22 14561 -104.153.80.0/22 46261 -104.153.84.0/22 49544 -104.153.88.0/24 393565 -104.153.90.0/24 393565 -104.153.96.0/21 25820 -104.153.104.0/24 14745 -104.153.105.0/24 14586 -104.153.106.0/24 12179 -104.153.107.0/24 13789 -104.153.108.0/24 14586 -104.153.109.0/24 32374 -104.153.110.0/24 14745 -104.153.111.0/24 12179 -104.153.120.0/22 26709 -104.153.124.0/22 13415 -104.153.128.0/21 14813 -104.153.136.0/21 21724 -104.153.144.0/22 11668 -104.153.150.0/24 46841 -104.153.151.0/24 394752 -104.153.152.0/24 27580 -104.153.153.0/24 46954 -104.153.154.0/23 27580 -104.153.156.0/22 53983 -104.153.160.0/22 36203 -104.153.164.0/23 63017 -104.153.166.0/24 25899 -104.153.167.0/24 54842 -104.153.168.0/23 64257 -104.153.171.0/24 64257 -104.153.172.0/22 17378 -104.153.180.0/23 26021 -104.153.182.0/23 26414 -104.153.184.0/22 33339 -104.153.188.0/24 62947 -104.153.189.0/24 33504 -104.153.190.0/23 62947 -104.153.192.0/22 11734 -104.153.196.0/24 36167 -104.153.197.0/24 53334 -104.153.198.0/23 53334 -104.153.200.0/22 54154 -104.153.204.0/23 393624 -104.153.206.0/23 25649 -104.153.208.0/22 32875 -104.153.212.0/22 29974 -104.153.216.0/21 33616 -104.153.224.0/24 3257 -104.153.225.0/24 62833 -104.153.226.0/24 3257 -104.153.227.0/24 19001 -104.153.228.0/22 17210 -104.153.232.0/23 32354 -104.153.240.0/22 14382 -104.153.248.0/22 40945 -104.153.252.0/22 11324 -104.154.0.0/15 15169 -104.156.0.0/20 32391 -104.156.16.0/20 63089 -104.156.48.0/20 29802 -104.156.64.0/22 22652 -104.156.68.0/23 22652 -104.156.70.0/24 22652 -104.156.71.0/24 33256 -104.156.72.0/21 22652 -104.156.80.0/23 54113 -104.156.82.0/24 54113 -104.156.84.0/23 54113 -104.156.86.0/24 54113 -104.156.88.0/22 54113 -104.156.92.0/24 54113 -104.156.94.0/23 54113 -104.156.96.0/20 54858 -104.156.112.0/20 3801 -104.156.161.0/24 16789 -104.156.162.0/24 16789 -104.156.164.0/23 16789 -104.156.166.0/24 16789 -104.156.184.0/23 16789 -104.156.188.0/23 16789 -104.156.191.0/24 16789 -104.156.192.0/24 53889 -104.156.193.0/24 63008 -104.156.194.0/23 53889 -104.156.196.0/24 53889 -104.156.197.0/24 6130 -104.156.198.0/23 53889 -104.156.200.0/21 53889 -104.156.208.0/21 53889 -104.156.216.0/22 53889 -104.156.220.0/23 53889 -104.156.222.0/24 53889 -104.156.223.0/24 6130 -104.156.224.0/19 20473 -104.157.0.0/17 852 -104.157.128.0/17 36493 -104.158.0.0/16 54198 -104.159.4.0/22 22423 -104.159.16.0/20 22423 -104.159.32.0/19 22423 -104.159.64.0/18 22423 -104.159.128.0/17 20115 -104.160.0.0/24 52219 -104.160.1.0/24 46805 -104.160.2.0/24 48950 -104.160.3.0/24 46805 -104.160.4.0/24 52219 -104.160.5.0/24 46805 -104.160.6.0/24 48950 -104.160.7.0/24 46805 -104.160.8.0/24 52219 -104.160.9.0/24 46805 -104.160.10.0/23 46805 -104.160.13.0/24 46805 -104.160.14.0/23 46805 -104.160.16.0/22 206146 -104.160.21.0/24 46805 -104.160.22.0/23 46805 -104.160.24.0/21 46805 -104.160.32.0/20 25820 -104.160.48.0/20 21713 -104.160.64.0/20 46469 -104.160.82.0/23 17121 -104.160.84.0/23 17121 -104.160.96.0/21 393844 -104.160.104.0/22 393844 -104.160.110.0/24 393844 -104.160.112.0/21 393844 -104.160.120.0/22 393844 -104.160.126.0/24 393844 -104.160.128.0/19 6507 -104.160.160.0/19 46844 -104.160.192.0/20 22995 -104.160.220.0/22 22995 -104.160.224.0/22 394233 -104.160.231.0/24 40676 -104.160.232.0/22 396125 -104.160.236.0/22 1819 -104.160.240.0/24 36236 -104.160.244.0/23 397911 -104.160.252.0/22 397168 -104.161.0.0/17 53755 -104.161.128.0/18 14340 -104.161.246.0/23 396417 -104.161.248.0/22 394808 -104.162.0.0/16 12271 -104.163.0.0/17 6561 -104.163.128.0/17 1403 -104.164.0.0/15 18779 -104.166.0.0/22 7352 -104.166.4.0/24 7352 -104.166.5.0/24 46190 -104.166.6.0/23 7352 -104.166.8.0/21 7352 -104.166.24.0/22 14566 -104.166.28.0/23 14566 -104.166.32.0/20 8014 -104.166.48.0/21 13977 -104.166.56.0/22 13977 -104.166.60.0/23 13977 -104.166.64.0/19 46261 -104.166.192.0/18 30036 -104.167.0.0/21 13886 -104.167.8.0/23 13886 -104.167.11.0/24 13886 -104.167.12.0/22 13886 -104.167.16.0/23 133766 -104.167.18.0/23 393559 -104.167.23.0/24 133766 -104.167.24.0/23 393559 -104.167.29.0/24 393559 -104.167.30.0/24 133766 -104.167.32.0/20 393950 -104.167.48.0/20 393620 -104.167.64.0/19 22552 -104.167.96.0/20 31798 -104.167.112.0/21 31798 -104.167.120.0/23 394146 -104.167.122.0/23 31798 -104.167.124.0/23 31798 -104.167.126.0/24 31798 -104.167.127.0/24 394146 -104.167.130.0/23 54119 -104.167.133.0/24 54119 -104.167.134.0/24 33287 -104.167.135.0/24 46887 -104.167.144.0/24 11426 -104.167.145.0/24 54119 -104.167.146.0/24 54119 -104.167.147.0/24 33313 -104.167.148.0/24 13760 -104.167.149.0/24 54119 -104.167.151.0/24 54119 -104.167.152.0/24 7018 -104.167.154.0/24 2711 -104.167.155.0/24 54119 -104.167.160.0/24 16657 -104.167.162.0/23 10835 -104.167.164.0/24 10835 -104.167.165.0/24 54119 -104.167.166.0/23 54119 -104.167.168.0/22 54119 -104.167.172.0/22 209 -104.167.176.0/22 209 -104.167.180.0/24 54119 -104.167.181.0/24 6461 -104.167.182.0/24 46887 -104.167.183.0/24 35985 -104.167.188.0/24 46887 -104.167.191.0/24 8025 -104.167.221.0/24 29278 -104.167.236.0/24 29278 -104.167.244.0/24 29278 -104.167.254.0/24 29278 -104.168.0.0/17 36352 -104.168.128.0/17 54290 -104.169.0.0/22 5650 -104.169.4.0/24 5650 -104.169.5.0/24 63172 -104.169.6.0/23 5650 -104.169.8.0/23 5650 -104.169.10.0/23 22379 -104.169.12.0/23 5650 -104.169.14.0/24 5650 -104.169.15.0/24 14790 -104.169.16.0/20 5650 -104.169.32.0/19 5650 -104.169.64.0/18 5650 -104.169.128.0/17 5650 -104.171.0.0/21 46606 -104.171.8.0/24 46606 -104.171.9.0/24 36351 -104.171.10.0/23 46606 -104.171.13.0/24 36351 -104.171.14.0/24 36351 -104.171.15.0/24 46606 -104.171.20.0/23 3962 -104.171.22.0/23 53997 -104.171.28.0/24 3962 -104.171.29.0/24 53997 -104.171.30.0/23 53997 -104.171.32.0/20 54911 -104.171.48.0/20 54614 -104.171.64.0/20 13534 -104.171.80.0/20 23089 -104.171.96.0/21 15035 -104.171.104.0/22 15035 -104.171.108.0/23 15035 -104.171.110.0/24 15035 -104.171.112.0/22 31863 -104.171.116.0/23 31863 -104.171.118.0/24 64235 -104.171.119.0/24 31863 -104.171.120.0/24 64235 -104.171.121.0/24 31863 -104.171.122.0/23 31863 -104.171.124.0/22 31863 -104.171.128.0/21 32748 -104.171.144.0/20 16628 -104.171.160.0/24 136743 -104.171.161.0/24 62900 -104.171.162.0/23 62900 -104.171.164.0/24 26484 -104.171.165.0/24 62900 -104.171.166.0/24 62900 -104.171.167.0/24 26484 -104.171.168.0/24 62900 -104.171.169.0/24 26484 -104.171.170.0/24 62900 -104.171.171.0/24 26484 -104.171.172.0/23 26484 -104.171.174.0/24 26484 -104.171.175.0/24 136743 -104.171.176.0/20 22552 -104.171.193.0/24 54412 -104.171.195.0/24 54412 -104.171.198.0/24 16509 -104.171.199.0/24 14618 -104.171.204.0/22 174 -104.171.208.0/20 63267 -104.171.224.0/24 22552 -104.171.225.0/24 135356 -104.171.226.0/23 22552 -104.171.228.0/22 22552 -104.171.232.0/22 22552 -104.171.236.0/23 22552 -104.171.238.0/23 135356 -104.171.240.0/20 26827 -104.172.0.0/14 20001 -104.176.0.0/12 7018 -104.192.0.0/22 27176 -104.192.4.0/22 8560 -104.192.8.0/23 31764 -104.192.11.0/24 31764 -104.192.12.0/23 31764 -104.192.15.0/24 31764 -104.192.16.0/21 2568 -104.192.24.0/22 26794 -104.192.28.0/22 8100 -104.192.32.0/21 33512 -104.192.41.0/24 63090 -104.192.43.0/24 63090 -104.192.44.0/22 21949 -104.192.48.0/22 18851 -104.192.52.0/22 19842 -104.192.56.0/22 53347 -104.192.60.0/22 63186 -104.192.67.0/24 14137 -104.192.68.0/22 14137 -104.192.72.0/24 13649 -104.192.75.0/24 396039 -104.192.76.0/22 54841 -104.192.80.0/21 54600 -104.192.88.0/22 606 -104.192.92.0/22 20115 -104.192.96.0/22 393524 -104.192.100.0/24 29838 -104.192.101.0/24 136175 -104.192.102.0/24 16584 -104.192.103.0/24 31863 -104.192.104.0/22 15108 -104.192.108.0/23 55992 -104.192.110.0/24 55992 -104.192.111.0/24 36678 -104.192.112.0/22 40511 -104.192.116.0/22 30466 -104.192.120.0/21 174 -104.192.128.0/23 23391 -104.192.130.0/23 32448 -104.192.132.0/22 63122 -104.192.136.0/21 133530 -104.192.148.0/22 11904 -104.192.152.0/22 22457 -104.192.156.0/23 62943 -104.192.158.0/24 393916 -104.192.159.0/24 62943 -104.192.160.0/22 11796 -104.192.166.0/23 6462 -104.192.168.0/22 19969 -104.192.172.0/22 54133 -104.192.176.0/22 20009 -104.192.180.0/22 53484 -104.192.184.0/21 14434 -104.192.192.0/22 21527 -104.192.196.0/23 11862 -104.192.198.0/24 397330 -104.192.199.0/24 393778 -104.192.200.0/22 393299 -104.192.204.0/22 21743 -104.192.208.0/21 174 -104.192.216.0/22 46450 -104.192.220.0/22 3257 -104.192.224.0/22 63018 -104.192.228.0/23 63430 -104.192.230.0/24 63430 -104.192.231.0/24 397907 -104.192.232.0/22 13319 -104.192.236.0/22 40749 -104.192.240.0/22 22898 -104.192.244.0/22 30269 -104.192.248.0/23 32951 -104.192.251.0/24 23190 -104.192.252.0/24 14244 -104.192.254.0/24 14244 -104.192.255.0/24 14744 -104.193.0.0/21 11668 -104.193.8.0/22 25820 -104.193.12.0/23 18656 -104.193.14.0/24 18656 -104.193.16.0/21 19222 -104.193.24.0/22 33695 -104.193.28.0/22 53766 -104.193.32.0/22 11342 -104.193.36.0/22 393595 -104.193.44.0/22 22625 -104.193.48.0/22 40028 -104.193.52.0/22 395570 -104.193.56.0/21 40788 -104.193.64.0/21 40788 -104.193.72.0/22 22903 -104.193.76.0/22 25660 -104.193.80.0/22 63124 -104.193.84.0/24 63124 -104.193.88.0/23 55967 -104.193.90.0/24 55967 -104.193.96.0/22 395204 -104.193.100.0/22 23546 -104.193.104.0/23 396472 -104.193.106.0/24 396472 -104.193.107.0/24 53349 -104.193.108.0/22 63410 -104.193.112.0/23 55264 -104.193.116.0/24 17223 -104.193.118.0/23 63201 -104.193.120.0/22 27589 -104.193.124.0/23 393725 -104.193.128.0/22 46886 -104.193.132.0/22 54133 -104.193.136.0/23 17225 -104.193.138.0/24 7381 -104.193.140.0/22 54641 -104.193.145.0/24 46841 -104.193.146.0/24 396298 -104.193.147.0/24 31834 -104.193.148.0/22 17941 -104.193.152.0/22 25754 -104.193.156.0/22 14265 -104.193.160.0/21 393582 -104.193.168.0/22 32329 -104.193.172.0/22 54643 -104.193.176.0/24 20454 -104.193.177.0/24 13886 -104.193.178.0/24 59210 -104.193.179.0/24 133480 -104.193.180.0/24 36352 -104.193.181.0/24 60558 -104.193.183.0/24 36352 -104.193.185.0/24 395291 -104.193.186.0/24 16509 -104.193.187.0/24 14618 -104.193.188.0/23 393608 -104.193.192.0/22 19620 -104.193.196.0/22 33576 -104.193.200.0/24 63177 -104.193.201.0/24 395710 -104.193.206.0/23 63196 -104.193.212.0/22 203098 -104.193.216.0/21 11756 -104.193.224.0/22 54540 -104.193.228.0/22 40193 -104.193.232.0/24 393587 -104.193.234.0/24 393587 -104.193.236.0/22 36499 -104.193.240.0/21 36529 -104.193.248.0/22 15083 -104.193.252.0/22 14576 -104.194.0.0/22 36114 -104.194.4.0/24 6939 -104.194.5.0/24 5009 -104.194.6.0/24 33529 -104.194.8.0/22 23470 -104.194.14.0/24 393447 -104.194.16.0/22 396367 -104.194.20.0/22 7828 -104.194.24.0/23 32780 -104.194.26.0/24 397768 -104.194.27.0/24 15248 -104.194.28.0/22 396367 -104.194.32.0/19 7794 -104.194.64.0/19 25820 -104.194.96.0/19 29825 -104.194.128.0/22 46261 -104.194.132.0/22 53667 -104.194.136.0/21 53667 -104.194.144.0/21 53667 -104.194.152.0/22 53667 -104.194.156.0/22 46261 -104.194.160.0/19 36315 -104.194.192.0/21 22400 -104.194.202.0/24 32181 -104.194.203.0/24 36351 -104.194.204.0/23 22400 -104.194.206.0/23 201106 -104.194.208.0/22 22400 -104.194.212.0/24 40065 -104.194.213.0/24 133752 -104.194.214.0/23 8100 -104.194.216.0/23 6939 -104.194.218.0/24 36351 -104.194.219.0/24 201106 -104.194.220.0/24 35913 -104.194.221.0/24 29838 -104.194.222.0/23 22400 -104.194.224.0/19 35916 -104.195.0.0/19 22552 -104.195.32.0/20 22552 -104.195.48.0/21 22552 -104.195.56.0/22 22552 -104.195.60.0/23 22552 -104.195.62.0/24 22552 -104.195.63.0/24 36086 -104.195.64.0/19 36351 -104.195.96.0/20 36351 -104.195.112.0/21 36351 -104.195.128.0/17 5645 -104.196.0.0/14 15169 -104.200.0.0/20 53791 -104.200.16.0/20 63949 -104.200.32.0/20 395111 -104.200.48.0/20 20278 -104.200.64.0/24 31863 -104.200.65.0/24 23033 -104.200.66.0/24 13213 -104.200.67.0/24 8100 -104.200.68.0/22 62874 -104.200.72.0/23 8100 -104.200.74.0/24 32181 -104.200.75.0/24 133752 -104.200.76.0/22 62874 -104.200.80.0/20 46618 -104.200.96.0/20 14813 -104.200.112.0/20 131911 -104.200.128.0/24 204957 -104.200.129.0/24 46562 -104.200.130.0/23 46562 -104.200.132.0/22 46562 -104.200.136.0/22 46562 -104.200.140.0/23 46562 -104.200.142.0/24 46562 -104.200.143.0/24 17025 -104.200.144.0/21 46562 -104.200.152.0/22 46562 -104.200.156.0/24 46562 -104.200.157.0/24 13213 -104.200.158.0/23 46562 -104.200.160.0/20 8100 -104.200.176.0/20 22552 -104.200.192.0/19 35908 -104.201.0.0/18 22552 -104.201.64.0/18 30036 -104.201.128.0/17 29848 -104.202.0.0/15 18978 -104.204.0.0/17 19397 -104.204.128.0/18 19397 -104.204.192.0/20 19397 -104.204.208.0/21 19397 -104.204.238.0/23 19397 -104.204.240.0/20 19397 -104.205.0.0/16 852 -104.206.0.0/17 62904 -104.206.128.0/22 62904 -104.206.132.0/23 62904 -104.206.134.0/24 20473 -104.206.135.0/24 62904 -104.206.136.0/21 62904 -104.206.144.0/20 62904 -104.206.160.0/20 62904 -104.206.176.0/21 62904 -104.206.184.0/22 62904 -104.206.188.0/22 49532 -104.206.192.0/19 62904 -104.206.224.0/20 62904 -104.206.240.0/22 49532 -104.206.244.0/22 62904 -104.206.248.0/22 49532 -104.206.252.0/22 62904 -104.207.0.0/23 46892 -104.207.4.0/23 46892 -104.207.8.0/23 46892 -104.207.12.0/22 46892 -104.207.22.0/23 46892 -104.207.24.0/21 46892 -104.207.32.0/22 393559 -104.207.38.0/24 393559 -104.207.40.0/23 393559 -104.207.42.0/24 393559 -104.207.43.0/24 17139 -104.207.47.0/24 393559 -104.207.48.0/22 393559 -104.207.52.0/23 393559 -104.207.54.0/24 393559 -104.207.55.0/24 17139 -104.207.59.0/24 393559 -104.207.60.0/22 393559 -104.207.64.0/22 53889 -104.207.68.0/24 6130 -104.207.69.0/24 53889 -104.207.70.0/23 53889 -104.207.72.0/24 53559 -104.207.73.0/24 53889 -104.207.74.0/23 53889 -104.207.76.0/24 36351 -104.207.77.0/24 53889 -104.207.78.0/24 6130 -104.207.79.0/24 53889 -104.207.80.0/22 53889 -104.207.84.0/24 46562 -104.207.85.0/24 53889 -104.207.86.0/24 6130 -104.207.87.0/24 53889 -104.207.88.0/23 53889 -104.207.90.0/24 53889 -104.207.91.0/24 53559 -104.207.92.0/24 53559 -104.207.93.0/24 53889 -104.207.94.0/24 6130 -104.207.95.0/24 53889 -104.207.96.0/20 14329 -104.207.112.0/20 25967 -104.207.128.0/19 20473 -104.207.168.0/24 19701 -104.207.184.0/23 19701 -104.207.188.0/24 36351 -104.207.189.0/24 19701 -104.207.190.0/23 19701 -104.207.192.0/21 46887 -104.207.200.0/23 46887 -104.207.202.0/24 397098 -104.207.203.0/24 46887 -104.207.204.0/24 46887 -104.207.205.0/24 20327 -104.207.206.0/24 46887 -104.207.207.0/24 15277 -104.207.208.0/22 46887 -104.207.212.0/23 46887 -104.207.214.0/24 46887 -104.207.215.0/24 63406 -104.207.216.0/22 46887 -104.207.220.0/24 63259 -104.207.221.0/24 31980 -104.207.222.0/23 46887 -104.207.224.0/21 36444 -104.207.232.0/22 36444 -104.207.236.0/22 40819 -104.207.240.0/22 6188 -104.207.244.0/22 36444 -104.207.248.0/22 36444 -104.207.252.0/24 36444 -104.207.253.0/24 40819 -104.207.254.0/23 36444 -104.208.0.0/13 8075 -104.216.0.0/15 40676 -104.218.0.0/21 32703 -104.218.8.0/21 55293 -104.218.16.0/21 19969 -104.218.24.0/21 26490 -104.218.32.0/22 393571 -104.218.36.0/22 21580 -104.218.40.0/22 63154 -104.218.44.0/22 30028 -104.218.48.0/21 19318 -104.218.56.0/22 54133 -104.218.60.0/23 174 -104.218.63.0/24 53356 -104.218.64.0/22 15108 -104.218.68.0/24 394883 -104.218.69.0/24 15108 -104.218.70.0/23 15108 -104.218.72.0/22 63190 -104.218.76.0/22 16843 -104.218.80.0/24 393761 -104.218.81.0/24 16851 -104.218.82.0/24 16851 -104.218.83.0/24 395194 -104.218.84.0/22 16995 -104.218.88.0/22 11597 -104.218.92.0/22 19842 -104.218.96.0/21 26548 -104.218.104.0/22 53828 -104.218.108.0/22 26241 -104.218.112.0/23 13690 -104.218.114.0/23 33615 -104.218.116.0/23 33615 -104.218.118.0/24 33615 -104.218.119.0/24 20141 -104.218.120.0/22 62731 -104.218.124.0/22 30466 -104.218.128.0/21 22921 -104.218.136.0/21 62833 -104.218.144.0/21 30600 -104.218.152.0/22 25851 -104.218.156.0/22 23423 -104.218.160.0/23 21859 -104.218.162.0/24 135377 -104.218.163.0/24 21859 -104.218.164.0/23 135377 -104.218.166.0/24 135377 -104.218.167.0/24 21859 -104.218.168.0/21 3855 -104.218.176.0/22 11139 -104.218.180.0/22 16504 -104.218.184.0/23 4922 -104.218.186.0/24 4922 -104.218.187.0/24 14291 -104.218.188.0/22 21557 -104.218.192.0/22 9009 -104.218.196.0/24 9009 -104.218.197.0/24 36444 -104.218.198.0/23 20454 -104.218.208.0/22 46598 -104.218.212.0/22 393227 -104.218.216.0/22 15344 -104.218.220.0/22 14828 -104.218.224.0/22 33029 -104.218.228.0/22 55232 -104.218.232.0/22 201106 -104.218.236.0/23 39618 -104.218.240.0/22 21559 -104.218.244.0/22 33213 -104.218.248.0/21 36498 -104.219.0.0/23 20454 -104.219.2.0/24 20454 -104.219.3.0/24 8100 -104.219.4.0/23 19437 -104.219.6.0/24 20454 -104.219.7.0/24 8100 -104.219.8.0/22 803 -104.219.12.0/22 33007 -104.219.16.0/22 62838 -104.219.20.0/22 31849 -104.219.24.0/22 46408 -104.219.28.0/22 62913 -104.219.32.0/21 53610 -104.219.40.0/22 8560 -104.219.44.0/24 13921 -104.219.45.0/24 46353 -104.219.46.0/23 46353 -104.219.48.0/22 53893 -104.219.52.0/22 6364 -104.219.56.0/22 46945 -104.219.68.0/24 62533 -104.219.70.0/23 62533 -104.219.72.0/22 32475 -104.219.76.0/22 22065 -104.219.80.0/21 26327 -104.219.88.0/24 395324 -104.219.96.0/22 55145 -104.219.104.0/22 22317 -104.219.108.0/24 22317 -104.219.110.0/23 22317 -104.219.112.0/22 12177 -104.219.116.0/22 14588 -104.219.120.0/21 393632 -104.219.128.0/21 393686 -104.219.136.0/21 14143 -104.219.144.0/22 18907 -104.219.148.0/22 5056 -104.219.152.0/22 16863 -104.219.156.0/22 6327 -104.219.160.0/22 46847 -104.219.164.0/22 11272 -104.219.168.0/22 32931 -104.219.172.0/22 54555 -104.219.176.0/21 33132 -104.219.184.0/22 63457 -104.219.188.0/22 31851 -104.219.192.0/22 54182 -104.219.196.0/22 14371 -104.219.200.0/21 54614 -104.219.208.0/21 54600 -104.219.216.0/22 27364 -104.219.220.0/22 55017 -104.219.232.0/21 27176 -104.219.240.0/24 26541 -104.219.248.0/22 22612 -104.219.253.0/24 63214 -104.219.254.0/24 63214 -104.220.0.0/17 11404 -104.220.128.0/19 11404 -104.220.160.0/20 11404 -104.220.176.0/28 11404 -104.220.176.16/30 11404 -104.220.176.20/31 11404 -104.220.176.22/32 11404 -104.220.176.24/29 11404 -104.220.176.32/27 11404 -104.220.176.64/26 11404 -104.220.176.128/25 11404 -104.220.177.0/24 11404 -104.220.178.0/23 11404 -104.220.180.0/22 11404 -104.220.184.0/21 11404 -104.220.192.0/18 11404 -104.221.0.0/17 5769 -104.221.128.0/17 22552 -104.222.0.0/20 14410 -104.222.16.0/21 62887 -104.222.24.0/22 62887 -104.222.30.0/23 62887 -104.222.32.0/20 19084 -104.222.48.0/20 64225 -104.222.64.0/20 63330 -104.222.81.0/24 396443 -104.222.82.0/23 396443 -104.222.90.0/23 396443 -104.222.92.0/24 396443 -104.222.93.0/24 5056 -104.222.95.0/24 396443 -104.222.96.0/21 33724 -104.222.104.0/21 33132 -104.222.112.0/20 5645 -104.222.128.0/24 53889 -104.222.129.0/24 6130 -104.222.130.0/23 53889 -104.222.132.0/24 6130 -104.222.133.0/24 53889 -104.222.134.0/24 53889 -104.222.135.0/24 6130 -104.222.136.0/23 53889 -104.222.138.0/24 6130 -104.222.139.0/24 53889 -104.222.140.0/23 53889 -104.222.142.0/24 53559 -104.222.143.0/24 53889 -104.222.144.0/21 53889 -104.222.152.0/24 6130 -104.222.153.0/24 53889 -104.222.154.0/23 53889 -104.222.156.0/22 53889 -104.222.160.0/20 13886 -104.222.176.0/20 6762 -104.222.192.0/19 53889 -104.222.224.0/19 22552 -104.223.0.0/17 8100 -104.223.128.0/17 46573 -104.224.64.0/21 21769 -104.224.72.0/24 54103 -104.224.73.0/24 3257 -104.224.74.0/24 54103 -104.224.75.0/24 21769 -104.224.76.0/23 21769 -104.224.78.0/24 54103 -104.224.79.0/24 3257 -104.224.80.0/23 46261 -104.224.82.0/24 8038 -104.224.83.0/24 21769 -104.224.84.0/22 9009 -104.224.88.0/24 21769 -104.224.89.0/24 42831 -104.224.90.0/24 9009 -104.224.91.0/24 21769 -104.224.92.0/24 9009 -104.224.93.0/24 42831 -104.224.94.0/23 21769 -104.224.96.0/20 22995 -104.224.124.0/23 22995 -104.224.126.0/24 22995 -104.224.128.0/18 25820 -104.224.192.0/18 22552 -104.225.0.0/20 36236 -104.225.16.0/24 13647 -104.225.18.0/23 36236 -104.225.32.0/23 63911 -104.225.35.0/24 36236 -104.225.36.0/22 63911 -104.225.40.0/23 63911 -104.225.42.0/24 63911 -104.225.95.0/24 36236 -104.225.96.0/22 36236 -104.225.102.0/23 36236 -104.225.104.0/24 36236 -104.225.106.0/23 36236 -104.225.112.0/24 36236 -104.225.128.0/22 53340 -104.225.132.0/23 397731 -104.225.134.0/23 53340 -104.225.136.0/22 393676 -104.225.140.0/23 396949 -104.225.144.0/20 25820 -104.225.160.0/19 396253 -104.225.192.0/20 32158 -104.225.208.0/24 40676 -104.225.209.0/24 19054 -104.225.211.0/24 395828 -104.225.212.0/24 174 -104.225.213.0/24 46562 -104.225.214.0/24 16664 -104.225.215.0/24 396333 -104.225.216.0/24 29802 -104.225.217.0/24 54540 -104.225.218.0/23 54540 -104.225.220.0/22 54540 -104.225.224.0/21 30676 -104.225.232.0/21 25820 -104.225.240.0/23 46450 -104.225.242.0/24 30541 -104.225.243.0/24 46450 -104.225.244.0/22 46450 -104.225.248.0/23 36358 -104.225.250.0/23 53340 -104.225.252.0/22 53340 -104.226.0.0/22 5650 -104.226.4.0/23 19917 -104.226.6.0/23 5650 -104.226.8.0/23 5650 -104.226.10.0/24 22046 -104.226.11.0/24 5650 -104.226.12.0/22 5650 -104.226.16.0/23 5650 -104.226.18.0/24 395749 -104.226.19.0/24 5650 -104.226.20.0/22 5650 -104.226.24.0/21 5650 -104.226.32.0/19 5650 -104.226.64.0/18 5650 -104.226.128.0/17 5650 -104.227.0.0/21 55286 -104.227.8.0/23 55286 -104.227.10.0/24 55081 -104.227.11.0/24 55286 -104.227.12.0/22 55286 -104.227.16.0/22 55286 -104.227.20.0/23 55286 -104.227.22.0/24 55286 -104.227.23.0/24 55081 -104.227.24.0/21 55286 -104.227.32.0/19 55286 -104.227.64.0/21 55286 -104.227.72.0/23 55286 -104.227.74.0/24 55286 -104.227.75.0/24 36352 -104.227.76.0/23 55286 -104.227.78.0/24 55081 -104.227.79.0/24 55286 -104.227.80.0/23 55286 -104.227.82.0/24 55081 -104.227.83.0/24 55286 -104.227.84.0/22 55286 -104.227.88.0/21 55286 -104.227.96.0/21 55286 -104.227.104.0/22 55286 -104.227.108.0/23 55286 -104.227.110.0/23 36352 -104.227.112.0/21 55286 -104.227.120.0/23 36352 -104.227.122.0/23 55286 -104.227.124.0/22 55286 -104.227.128.0/22 55286 -104.227.132.0/23 36352 -104.227.134.0/23 55286 -104.227.136.0/21 55286 -104.227.144.0/23 55286 -104.227.146.0/24 55286 -104.227.147.0/24 36352 -104.227.148.0/24 55286 -104.227.149.0/24 36352 -104.227.150.0/23 55286 -104.227.152.0/21 55286 -104.227.160.0/21 55286 -104.227.168.0/22 55286 -104.227.172.0/22 36352 -104.227.176.0/20 55286 -104.227.192.0/19 36352 -104.227.224.0/20 55286 -104.227.240.0/21 55286 -104.227.248.0/21 48635 -104.228.0.0/15 11351 -104.230.0.0/15 10796 -104.232.0.0/24 14371 -104.232.9.0/24 62695 -104.232.16.0/20 46749 -104.232.32.0/22 15072 -104.232.36.0/24 46562 -104.232.37.0/24 396356 -104.232.38.0/24 21769 -104.232.39.0/24 36352 -104.232.41.0/24 393891 -104.232.42.0/24 3356 -104.232.43.0/24 13820 -104.232.46.0/24 397664 -104.232.47.0/24 394064 -104.232.48.0/20 14735 -104.232.64.0/20 26658 -104.232.80.0/20 30119 -104.232.96.0/20 26658 -104.232.112.0/20 54858 -104.232.128.0/19 22552 -104.232.160.0/19 11272 -104.232.192.0/24 32181 -104.232.193.0/24 26646 -104.232.194.0/24 32181 -104.232.195.0/24 30517 -104.232.196.0/22 62874 -104.232.200.0/21 395570 -104.232.208.0/21 62874 -104.232.216.0/24 46562 -104.232.217.0/24 23033 -104.232.218.0/23 46562 -104.232.220.0/23 20473 -104.232.222.0/24 13213 -104.232.223.0/24 32181 -104.232.224.0/23 22244 -104.232.227.0/24 138005 -104.232.232.0/23 138005 -104.232.234.0/24 138005 -104.232.236.0/24 138005 -104.232.238.0/24 138005 -104.232.253.0/24 138007 -104.232.254.0/23 138007 -104.233.0.0/21 13886 -104.233.8.0/22 13886 -104.233.12.0/22 6762 -104.233.16.0/21 6762 -104.233.24.0/23 6762 -104.233.26.0/24 6762 -104.233.27.0/24 13886 -104.233.28.0/22 13886 -104.233.32.0/20 13886 -104.233.48.0/21 13886 -104.233.56.0/23 13886 -104.233.58.0/24 13886 -104.233.59.0/24 6762 -104.233.60.0/22 13886 -104.233.128.0/18 54600 -104.233.192.0/19 54600 -104.233.224.0/20 54600 -104.233.240.0/21 54600 -104.233.248.0/22 54600 -104.233.252.0/22 137443 -104.234.0.0/16 30407 -104.235.0.0/23 5650 -104.235.2.0/23 22379 -104.235.4.0/22 5650 -104.235.8.0/21 5650 -104.235.16.0/23 5650 -104.235.18.0/23 22379 -104.235.20.0/22 22379 -104.235.24.0/23 22379 -104.235.26.0/23 5650 -104.235.28.0/22 5650 -104.235.32.0/19 5650 -104.235.64.0/18 5650 -104.235.128.0/17 5650 -104.236.0.0/16 14061 -104.237.0.0/23 54540 -104.237.2.0/23 394727 -104.237.4.0/22 394727 -104.237.8.0/24 20473 -104.237.9.0/24 394727 -104.237.10.0/24 394727 -104.237.11.0/24 8100 -104.237.12.0/22 394727 -104.237.16.0/21 7819 -104.237.24.0/21 2828 -104.237.32.0/22 14603 -104.237.36.0/24 396018 -104.237.37.0/24 14603 -104.237.38.0/23 14603 -104.237.40.0/21 14603 -104.237.48.0/20 18450 -104.237.64.0/20 22552 -104.237.80.0/24 8100 -104.237.81.0/24 53889 -104.237.82.0/23 53889 -104.237.84.0/23 53889 -104.237.86.0/24 32181 -104.237.87.0/24 53889 -104.237.88.0/24 6130 -104.237.89.0/24 53889 -104.237.90.0/24 53889 -104.237.91.0/24 36351 -104.237.92.0/24 53889 -104.237.93.0/24 62240 -104.237.94.0/23 53889 -104.237.96.0/20 63275 -104.237.112.0/20 63394 -104.237.128.0/19 63949 -104.237.160.0/24 43515 -104.237.161.0/24 36040 -104.237.162.0/23 36040 -104.237.164.0/24 36040 -104.237.165.0/24 43515 -104.237.166.0/24 43515 -104.237.167.0/24 36040 -104.237.168.0/23 36040 -104.237.170.0/24 36040 -104.237.171.0/24 43515 -104.237.172.0/23 43515 -104.237.174.0/24 43515 -104.237.175.0/24 36040 -104.237.176.0/21 43515 -104.237.184.0/22 43515 -104.237.188.0/22 36040 -104.237.192.0/19 20278 -104.237.224.0/20 16628 -104.237.240.0/24 16628 -104.237.241.0/24 20860 -104.237.242.0/23 16628 -104.237.244.0/22 16628 -104.237.248.0/23 16628 -104.237.250.0/24 16628 -104.237.251.0/24 3177 -104.237.252.0/22 16628 -104.238.0.0/22 13886 -104.238.4.0/22 6762 -104.238.8.0/22 6762 -104.238.12.0/23 6762 -104.238.14.0/24 6762 -104.238.15.0/24 13886 -104.238.16.0/23 13886 -104.238.18.0/24 13886 -104.238.19.0/24 6762 -104.238.20.0/24 6762 -104.238.21.0/24 13886 -104.238.22.0/23 13886 -104.238.24.0/21 13886 -104.238.32.0/24 36351 -104.238.33.0/24 62874 -104.238.34.0/23 62874 -104.238.36.0/24 60068 -104.238.37.0/24 62874 -104.238.38.0/24 62651 -104.238.39.0/24 60068 -104.238.40.0/24 397978 -104.238.43.0/24 32181 -104.238.44.0/24 60068 -104.238.45.0/24 36351 -104.238.46.0/23 8100 -104.238.48.0/24 46516 -104.238.49.0/24 133752 -104.238.51.0/24 36351 -104.238.52.0/22 62874 -104.238.56.0/23 8100 -104.238.58.0/24 29802 -104.238.59.0/24 27589 -104.238.60.0/23 8100 -104.238.62.0/24 36351 -104.238.63.0/24 46562 -104.238.64.0/18 26496 -104.238.128.0/18 20473 -104.238.192.0/22 36114 -104.238.196.0/24 396932 -104.238.197.0/24 21811 -104.238.198.0/24 36114 -104.238.199.0/24 397476 -104.238.200.0/22 394065 -104.238.204.0/22 23470 -104.238.208.0/23 22820 -104.238.210.0/23 36114 -104.238.212.0/23 396948 -104.238.214.0/23 36007 -104.238.216.0/23 36114 -104.238.218.0/23 13760 -104.238.220.0/22 23470 -104.238.224.0/23 13760 -104.238.227.0/24 397669 -104.238.228.0/24 397731 -104.238.229.0/24 26863 -104.238.230.0/24 3356 -104.238.231.0/24 46887 -104.238.232.0/23 21559 -104.238.234.0/24 397731 -104.238.235.0/24 36114 -104.238.236.0/24 32061 -104.238.237.0/24 63125 -104.238.238.0/24 11622 -104.238.239.0/24 396525 -104.238.248.0/22 36114 -104.238.252.0/22 20303 -104.239.0.0/21 13886 -104.239.8.0/22 6762 -104.239.12.0/23 6762 -104.239.14.0/24 6762 -104.239.15.0/24 13886 -104.239.16.0/20 6762 -104.239.32.0/21 6762 -104.239.40.0/22 6762 -104.239.44.0/24 6762 -104.239.45.0/24 13886 -104.239.46.0/23 13886 -104.239.48.0/22 13886 -104.239.52.0/23 13886 -104.239.54.0/23 6762 -104.239.56.0/21 6762 -104.239.64.0/20 6762 -104.239.80.0/21 6762 -104.239.88.0/22 6762 -104.239.92.0/23 6762 -104.239.94.0/24 6762 -104.239.95.0/24 13886 -104.239.96.0/20 6762 -104.239.112.0/21 13886 -104.239.120.0/21 6762 -104.239.128.0/19 33070 -104.239.160.0/19 27357 -104.239.192.0/19 19994 -104.239.224.0/20 27357 -104.239.240.0/21 33070 -104.239.248.0/21 27357 -104.240.0.0/16 5650 -104.241.4.0/22 54119 -104.241.8.0/22 54119 -104.241.14.0/24 7029 -104.241.15.0/24 5650 -104.241.16.0/22 5650 -104.241.20.0/22 13760 -104.241.24.0/24 13760 -104.241.25.0/24 54119 -104.241.32.0/22 7029 -104.241.36.0/24 3257 -104.241.42.0/24 7029 -104.241.43.0/24 13760 -104.241.44.0/22 6461 -104.241.48.0/21 54119 -104.241.56.0/22 33491 -104.241.60.0/22 54119 -104.241.64.0/18 36315 -104.241.128.0/18 30236 -104.241.192.0/20 54058 -104.241.208.0/20 11796 -104.241.224.0/20 394472 -104.241.240.0/20 33378 -104.242.0.0/16 13657 -104.243.0.0/20 17064 -104.243.16.0/20 25820 -104.243.32.0/20 23470 -104.243.48.0/20 36223 -104.243.64.0/20 15149 -104.243.80.0/20 40788 -104.243.96.0/20 54614 -104.243.112.0/20 23316 -104.243.128.0/20 26658 -104.243.144.0/20 32003 -104.243.160.0/20 63353 -104.243.176.0/20 63089 -104.243.192.0/20 13886 -104.243.208.0/24 36131 -104.243.209.0/24 36601 -104.243.212.0/23 9009 -104.243.214.0/24 9009 -104.243.220.0/24 16676 -104.243.221.0/24 64200 -104.243.222.0/24 63052 -104.243.223.0/24 396472 -104.243.224.0/20 16616 -104.243.240.0/24 9009 -104.243.241.0/24 61317 -104.243.242.0/23 3223 -104.243.244.0/24 3223 -104.243.245.0/24 36351 -104.243.246.0/24 3223 -104.243.248.0/23 3223 -104.243.250.0/23 9009 -104.243.252.0/24 9009 -104.243.253.0/24 36351 -104.243.254.0/23 36351 -104.244.0.0/22 54483 -104.244.4.0/22 25899 -104.244.8.0/22 201170 -104.244.12.0/23 393667 -104.244.14.0/24 393667 -104.244.16.0/22 26512 -104.244.20.0/22 62809 -104.244.24.0/22 32329 -104.244.28.0/22 3900 -104.244.32.0/22 10796 -104.244.36.0/22 7415 -104.244.40.0/23 13414 -104.244.42.0/24 13414 -104.244.43.0/24 54113 -104.244.44.0/22 13414 -104.244.48.0/22 63299 -104.244.52.0/24 11572 -104.244.53.0/24 19437 -104.244.54.0/23 19437 -104.244.56.0/21 40193 -104.244.64.0/22 22423 -104.244.68.0/22 30466 -104.244.72.0/21 53667 -104.244.80.0/24 33532 -104.244.81.0/24 200494 -104.244.82.0/24 200494 -104.244.83.0/24 203999 -104.244.84.0/22 13415 -104.244.88.0/21 25820 -104.244.96.0/22 63210 -104.244.104.0/21 4922 -104.244.112.0/21 16803 -104.244.120.0/21 22611 -104.244.128.0/21 13977 -104.244.136.0/22 25774 -104.244.140.0/22 16700 -104.244.144.0/21 14869 -104.244.152.0/22 40676 -104.244.156.0/24 26548 -104.244.157.0/24 40676 -104.244.158.0/24 31863 -104.244.159.0/24 26548 -104.244.160.0/22 393706 -104.244.168.0/21 29066 -104.244.176.0/22 53301 -104.244.180.0/23 36423 -104.244.182.0/23 14638 -104.244.184.0/24 22557 -104.244.188.0/22 21570 -104.244.192.0/22 31775 -104.244.196.0/22 174 -104.244.208.0/22 13737 -104.244.212.0/22 63287 -104.244.216.0/22 15011 -104.244.220.0/22 19975 -104.244.224.0/21 33576 -104.244.232.0/21 29898 -104.244.240.0/22 17210 -104.244.244.0/22 20291 -104.244.248.0/21 14265 -104.245.0.0/22 393735 -104.245.4.0/22 33561 -104.245.8.0/24 36351 -104.245.9.0/24 4785 -104.245.10.0/24 36351 -104.245.12.0/24 57695 -104.245.13.0/24 41378 -104.245.14.0/24 6233 -104.245.16.0/24 13649 -104.245.17.0/24 393780 -104.245.18.0/23 393780 -104.245.20.0/22 15305 -104.245.24.0/21 53828 -104.245.32.0/22 6364 -104.245.36.0/24 6364 -104.245.37.0/24 13768 -104.245.38.0/23 6364 -104.245.40.0/21 25820 -104.245.48.0/22 393682 -104.245.52.0/22 63251 -104.245.56.0/21 40627 -104.245.64.0/22 21925 -104.245.68.0/23 20354 -104.245.70.0/24 7955 -104.245.71.0/24 20354 -104.245.72.0/21 63296 -104.245.80.0/24 4269 -104.245.81.0/24 16967 -104.245.84.0/22 22438 -104.245.88.0/23 20454 -104.245.92.0/22 46650 -104.245.96.0/21 25820 -104.245.104.0/22 27176 -104.245.108.0/22 63298 -104.245.112.0/21 48252 -104.245.120.0/22 63313 -104.245.124.0/22 47869 -104.245.128.0/21 19116 -104.245.136.0/22 393524 -104.245.140.0/22 1640 -104.245.144.0/22 32489 -104.245.148.0/22 7029 -104.245.152.0/21 11290 -104.245.160.0/21 22457 -104.245.168.0/21 33084 -104.245.180.0/22 13767 -104.245.184.0/22 393684 -104.245.188.0/22 25820 -104.245.192.0/22 33606 -104.245.196.0/22 22687 -104.245.200.0/22 63447 -104.245.204.0/22 40945 -104.245.208.0/21 23352 -104.245.216.0/23 33616 -104.245.218.0/24 33616 -104.245.219.0/24 396287 -104.245.220.0/22 33616 -104.245.224.0/22 40029 -104.245.228.0/22 63434 -104.245.232.0/21 46261 -104.245.240.0/21 8100 -104.245.248.0/21 46906 -104.246.0.0/17 6128 -104.246.128.0/17 5645 -104.247.0.0/19 53889 -104.247.32.0/22 46887 -104.247.36.0/24 14688 -104.247.37.0/24 46887 -104.247.38.0/23 46887 -104.247.40.0/21 46887 -104.247.48.0/21 46887 -104.247.56.0/22 46887 -104.247.60.0/23 46887 -104.247.62.0/24 29868 -104.247.63.0/24 63397 -104.247.64.0/22 63052 -104.247.68.0/24 20063 -104.247.69.0/24 7018 -104.247.70.0/24 396082 -104.247.71.0/24 396369 -104.247.72.0/22 22611 -104.247.76.0/22 54641 -104.247.80.0/22 206834 -104.247.86.0/23 395558 -104.247.88.0/22 11554 -104.247.92.0/24 64200 -104.247.128.0/22 6939 -104.247.132.0/23 6939 -104.247.134.0/23 395111 -104.247.136.0/22 395111 -104.247.140.0/23 395111 -104.247.142.0/23 63018 -104.247.144.0/20 395111 -104.247.160.0/19 393807 -104.247.192.0/19 46261 -104.247.224.0/19 5645 -104.248.0.0/16 14061 -104.249.0.0/21 13886 -104.249.8.0/21 6762 -104.249.16.0/20 6762 -104.249.32.0/22 6762 -104.249.36.0/24 6762 -104.249.37.0/24 13886 -104.249.38.0/23 13886 -104.249.40.0/23 13886 -104.249.42.0/23 6762 -104.249.44.0/22 6762 -104.249.48.0/20 6762 -104.249.64.0/24 23024 -104.249.65.0/24 394607 -104.249.66.0/23 23024 -104.249.68.0/24 26826 -104.249.69.0/24 23024 -104.249.70.0/23 23024 -104.249.72.0/21 23024 -104.249.80.0/21 23024 -104.249.88.0/22 23024 -104.249.92.0/23 23024 -104.249.94.0/24 2152 -104.249.95.0/24 23024 -104.249.96.0/20 23024 -104.249.112.0/21 23024 -104.249.120.0/22 23024 -104.249.124.0/23 23024 -104.249.126.0/24 393881 -104.249.127.0/24 23024 -104.249.192.0/19 22995 -104.249.224.0/20 22995 -104.249.240.0/22 22995 -104.249.245.0/24 22995 -104.249.246.0/23 22995 -104.249.252.0/22 22995 -104.250.0.0/19 21351 -104.250.32.0/22 137280 -104.250.40.0/22 137280 -104.250.44.0/23 137280 -104.250.48.0/21 137280 -104.250.64.0/19 15128 -104.250.96.0/24 64245 -104.250.97.0/24 20473 -104.250.98.0/24 64245 -104.250.99.0/24 54726 -104.250.100.0/22 64245 -104.250.104.0/24 64245 -104.250.105.0/24 134451 -104.250.106.0/23 38001 -104.250.108.0/24 63956 -104.250.109.0/24 60610 -104.250.110.0/24 60610 -104.250.116.0/24 40676 -104.250.117.0/24 36352 -104.250.118.0/23 64245 -104.250.121.0/24 64245 -104.250.122.0/23 20473 -104.250.124.0/23 36352 -104.250.126.0/24 36352 -104.250.127.0/24 40676 -104.250.128.0/19 53850 -104.250.160.0/24 36351 -104.250.161.0/24 46562 -104.250.162.0/24 21859 -104.250.163.0/24 3223 -104.250.164.0/23 9009 -104.250.166.0/24 198371 -104.250.167.0/24 36351 -104.250.168.0/24 3223 -104.250.169.0/24 9009 -104.250.170.0/24 9009 -104.250.171.0/24 3223 -104.250.172.0/24 36351 -104.250.173.0/24 29854 -104.250.174.0/23 9009 -104.250.176.0/23 9009 -104.250.178.0/24 3223 -104.250.179.0/24 36351 -104.250.180.0/24 9009 -104.250.181.0/24 3223 -104.250.182.0/24 9009 -104.250.183.0/24 36351 -104.250.184.0/24 3223 -104.250.185.0/24 9009 -104.250.186.0/24 9009 -104.250.187.0/24 3223 -104.250.189.0/24 3223 -104.250.190.0/24 9009 -104.250.191.0/24 46562 -104.250.192.0/21 13886 -104.250.200.0/21 6762 -104.250.208.0/20 6762 -104.251.0.0/20 32567 -104.251.16.0/21 12228 -104.251.24.0/22 12228 -104.251.28.0/22 13891 -104.251.32.0/20 26932 -104.251.48.0/21 22552 -104.251.64.0/20 4922 -104.251.80.0/24 33182 -104.251.81.0/24 18779 -104.251.82.0/23 46261 -104.251.84.0/24 20454 -104.251.85.0/24 23470 -104.251.86.0/24 9009 -104.251.87.0/24 36444 -104.251.88.0/24 9009 -104.251.89.0/24 33182 -104.251.90.0/24 46261 -104.251.91.0/24 23470 -104.251.92.0/24 20454 -104.251.93.0/24 9009 -104.251.94.0/24 9009 -104.251.95.0/24 21743 -104.251.96.0/20 15290 -104.251.112.0/24 63425 -104.251.113.0/24 10835 -104.251.114.0/23 14397 -104.251.116.0/24 14649 -104.251.117.0/24 14397 -104.251.118.0/23 14397 -104.251.120.0/23 14397 -104.251.122.0/23 14315 -104.251.124.0/22 14397 -104.251.128.0/20 23089 -104.251.144.0/20 131926 -104.251.160.0/20 393950 -104.251.178.0/24 394094 -104.251.208.0/23 8100 -104.251.210.0/23 394727 -104.251.212.0/23 394727 -104.251.214.0/24 54540 -104.251.215.0/24 394727 -104.251.216.0/22 394727 -104.251.222.0/23 394727 -104.251.224.0/24 18254 -104.251.225.0/24 58879 -104.251.226.0/24 58879 -104.251.227.0/24 135330 -104.251.228.0/24 135330 -104.251.229.0/24 58879 -104.251.230.0/24 21859 -104.251.231.0/24 58879 -104.251.232.0/23 21859 -104.251.234.0/24 26484 -104.251.235.0/24 135330 -104.251.236.0/23 21859 -104.251.238.0/24 21859 -104.251.239.0/24 36260 -104.251.240.0/20 26827 -104.252.0.0/15 18779 -104.254.0.0/21 54483 -104.254.8.0/22 7057 -104.254.12.0/22 33339 -104.254.16.0/21 33287 -104.254.24.0/21 64236 -104.254.32.0/22 30028 -104.254.36.0/22 174 -104.254.40.0/22 53848 -104.254.44.0/24 46887 -104.254.47.0/24 46329 -104.254.48.0/22 32100 -104.254.52.0/22 7954 -104.254.56.0/24 40676 -104.254.57.0/24 26548 -104.254.58.0/23 26548 -104.254.61.0/24 8100 -104.254.62.0/23 40676 -104.254.64.0/22 13499 -104.254.68.0/22 10249 -104.254.72.0/22 20061 -104.254.80.0/21 63113 -104.254.90.0/24 32489 -104.254.92.0/22 32489 -104.254.96.0/23 40034 -104.254.98.0/23 394695 -104.254.100.0/22 33548 -104.254.104.0/21 15011 -104.254.120.0/22 3257 -104.254.124.0/22 41095 -104.254.129.0/24 29802 -104.254.132.0/22 22023 -104.254.144.0/22 63324 -104.254.148.0/22 29990 -104.254.152.0/21 6939 -104.254.160.0/21 14265 -104.254.169.0/24 62627 -104.254.170.0/23 62627 -104.254.172.0/22 14979 -104.254.177.0/24 25896 -104.254.178.0/23 25896 -104.254.180.0/22 394277 -104.254.184.0/22 46293 -104.254.192.0/22 63389 -104.254.196.0/22 174 -104.254.200.0/22 396191 -104.254.204.0/22 63362 -104.254.208.0/22 46887 -104.254.212.0/22 27630 -104.254.216.0/21 30600 -104.254.224.0/21 396006 -104.254.232.0/24 20454 -104.254.233.0/24 19437 -104.254.234.0/23 19437 -104.254.236.0/22 19437 -104.254.240.0/22 63366 -104.254.244.0/22 8560 -104.254.248.0/22 21660 -104.254.252.0/23 21660 -104.255.0.0/22 21743 -104.255.4.0/22 23158 -104.255.8.0/22 63213 -104.255.12.0/22 36445 -104.255.16.0/22 393460 -104.255.20.0/23 393496 -104.255.23.0/24 393496 -104.255.24.0/24 395059 -104.255.25.0/24 54868 -104.255.26.0/24 54868 -104.255.27.0/24 395059 -104.255.28.0/23 54868 -104.255.30.0/23 395059 -104.255.32.0/24 53810 -104.255.33.0/24 13583 -104.255.35.0/24 62695 -104.255.40.0/21 23465 -104.255.48.0/22 803 -104.255.52.0/22 22773 -104.255.58.0/24 16509 -104.255.64.0/21 25820 -104.255.72.0/21 46294 -104.255.80.0/22 396990 -104.255.84.0/22 40545 -104.255.88.0/22 393706 -104.255.92.0/23 54790 -104.255.95.0/24 54790 -104.255.96.0/21 13830 -104.255.104.0/22 46555 -104.255.108.0/24 18892 -104.255.109.0/24 62943 -104.255.110.0/23 62943 -104.255.112.0/21 33055 -104.255.120.0/24 209 -104.255.121.0/24 46960 -104.255.122.0/24 209 -104.255.123.0/24 46960 -104.255.124.0/22 46867 -104.255.140.0/23 15190 -104.255.142.0/23 209 -104.255.144.0/22 40749 -104.255.148.0/22 19257 -104.255.152.0/21 7040 -104.255.160.0/21 53848 -104.255.168.0/23 397373 -104.255.170.0/24 397373 -104.255.171.0/24 13768 -104.255.172.0/24 13768 -104.255.173.0/24 397423 -104.255.174.0/23 397373 -104.255.176.0/24 33576 -104.255.177.0/24 396304 -104.255.178.0/23 33576 -104.255.180.0/22 46962 -104.255.184.0/22 21960 -104.255.188.0/23 393464 -104.255.192.0/21 55293 -104.255.200.0/22 63428 -104.255.204.0/22 26779 -104.255.208.0/22 54980 -104.255.212.0/23 26197 -104.255.215.0/24 13649 -104.255.216.0/23 36121 -104.255.224.0/24 209519 -104.255.225.0/24 8100 -104.255.226.0/24 209519 -104.255.227.0/24 397651 -104.255.228.0/24 209519 -104.255.229.0/24 40065 -104.255.230.0/24 209519 -104.255.231.0/24 397651 -104.255.232.0/22 46408 -104.255.236.0/22 11597 -104.255.240.0/21 6939 -104.255.248.0/23 63486 -104.255.250.0/24 63486 -104.255.252.0/22 15344 -105.0.0.0/12 37168 -105.16.0.0/12 37100 -105.32.0.0/12 37069 -105.48.0.0/12 33771 -105.64.0.0/13 36884 -105.72.0.0/16 36884 -105.73.0.0/19 36884 -105.73.32.0/24 29286 -105.73.33.0/24 36884 -105.73.34.0/23 36884 -105.73.36.0/22 36884 -105.73.40.0/21 36884 -105.73.48.0/20 36884 -105.73.64.0/18 36884 -105.73.128.0/17 36884 -105.74.0.0/15 36884 -105.76.0.0/14 36884 -105.80.0.0/12 36992 -105.96.0.0/12 36947 -105.112.0.0/21 36873 -105.112.8.0/22 36873 -105.112.12.0/23 36873 -105.112.16.0/20 36873 -105.112.32.0/19 36873 -105.112.64.0/18 36873 -105.112.129.0/24 36873 -105.112.130.0/23 36873 -105.112.144.0/20 36873 -105.112.176.0/20 36873 -105.128.0.0/12 6713 -105.144.0.0/13 6713 -105.152.0.0/15 6713 -105.154.0.0/16 36903 -105.155.0.0/17 36903 -105.155.128.0/18 36903 -105.155.192.0/19 36903 -105.155.224.0/20 36903 -105.155.240.0/21 36903 -105.155.248.0/21 6713 -105.156.0.0/15 36903 -105.158.0.0/16 36903 -105.159.0.0/21 36903 -105.159.8.0/21 6713 -105.159.16.0/20 36903 -105.159.32.0/19 36903 -105.159.64.0/18 36903 -105.159.128.0/18 36903 -105.159.192.0/19 36903 -105.159.224.0/20 36903 -105.159.240.0/21 36903 -105.159.248.0/21 6713 -105.160.0.0/13 33771 -105.168.0.0/13 37119 -105.176.0.0/16 37410 -105.177.0.0/22 16637 -105.178.0.0/17 37228 -105.179.0.0/19 37228 -105.180.0.0/14 37069 -105.184.0.0/16 37457 -105.185.0.0/18 37251 -105.185.64.0/18 37457 -105.185.128.0/17 37457 -105.186.0.0/19 37457 -105.186.32.0/22 37251 -105.186.36.0/22 37457 -105.186.40.0/21 37457 -105.186.48.0/20 37457 -105.186.64.0/18 37457 -105.186.128.0/17 37457 -105.187.0.0/22 37457 -105.187.4.0/23 37251 -105.187.6.0/24 37457 -105.187.7.0/24 37251 -105.187.8.0/21 37457 -105.187.16.0/20 37457 -105.187.32.0/19 37457 -105.187.64.0/18 37457 -105.187.128.0/17 37457 -105.188.0.0/14 36925 -105.192.0.0/14 37069 -105.196.0.0/15 24835 -105.198.0.0/17 24835 -105.198.128.0/18 24835 -105.198.192.0/19 24835 -105.198.224.0/20 36935 -105.198.240.0/22 24835 -105.198.244.0/23 24835 -105.198.246.0/23 36935 -105.198.248.0/23 36935 -105.198.250.0/24 24835 -105.198.251.0/24 36935 -105.198.252.0/22 36935 -105.199.0.0/23 36935 -105.199.2.0/23 24835 -105.199.4.0/22 24835 -105.199.8.0/21 36935 -105.199.16.0/21 36935 -105.199.24.0/22 24835 -105.199.28.0/22 36935 -105.199.32.0/21 36935 -105.199.40.0/23 36935 -105.199.42.0/23 24835 -105.199.44.0/23 36935 -105.199.46.0/23 24835 -105.199.48.0/22 36935 -105.199.52.0/24 24835 -105.199.53.0/24 36935 -105.199.54.0/24 24835 -105.199.55.0/24 36935 -105.199.56.0/23 24835 -105.199.58.0/23 36935 -105.199.60.0/22 36935 -105.199.64.0/18 24835 -105.199.128.0/18 24835 -105.199.192.0/19 24835 -105.199.224.0/20 36935 -105.199.240.0/22 24835 -105.199.244.0/22 36935 -105.199.248.0/21 36935 -105.200.0.0/13 36992 -105.208.0.0/19 2905 -105.208.32.0/21 2905 -105.208.40.0/21 12091 -105.208.48.0/20 2905 -105.208.64.0/18 2905 -105.208.128.0/18 2905 -105.208.192.0/20 16637 -105.208.208.0/24 16637 -105.208.209.0/24 2905 -105.208.210.0/23 2905 -105.208.212.0/22 2905 -105.208.216.0/21 2905 -105.208.224.0/20 2905 -105.208.240.0/20 12091 -105.209.0.0/18 2905 -105.209.64.0/19 12091 -105.209.96.0/19 2905 -105.209.128.0/18 2905 -105.209.192.0/19 12091 -105.209.224.0/20 2905 -105.209.240.0/21 2905 -105.209.248.0/22 2905 -105.209.252.0/23 2905 -105.209.254.0/24 2905 -105.209.255.0/24 12091 -105.210.0.0/15 2905 -105.212.0.0/20 16637 -105.212.16.0/20 2905 -105.212.32.0/19 2905 -105.212.64.0/19 2905 -105.212.96.0/22 2905 -105.212.100.0/22 16637 -105.212.104.0/21 2905 -105.212.112.0/23 2905 -105.212.114.0/23 16637 -105.212.116.0/22 16637 -105.212.120.0/24 16637 -105.212.121.0/24 2905 -105.212.122.0/23 2905 -105.212.124.0/22 2905 -105.212.128.0/17 2905 -105.213.0.0/16 2905 -105.214.0.0/15 2905 -105.216.0.0/18 12091 -105.216.64.0/18 2905 -105.216.128.0/17 2905 -105.217.0.0/16 2905 -105.218.0.0/15 2905 -105.220.0.0/14 2905 -105.224.0.0/14 37457 -105.228.0.0/15 37457 -105.230.0.0/15 36926 -105.232.0.0/16 37009 -105.233.0.0/16 36874 -105.234.142.0/23 37440 -105.234.144.0/20 37440 -105.234.160.0/21 37440 -105.234.168.0/23 37440 -105.235.0.0/17 36974 -105.235.128.0/20 33779 -105.235.144.0/20 30999 -105.235.160.0/20 37525 -105.235.176.0/21 37526 -105.235.184.0/24 37526 -105.235.188.0/22 37526 -105.235.192.0/20 37269 -105.235.208.0/23 37406 -105.235.210.0/24 37019 -105.235.211.0/24 37406 -105.235.214.0/23 198381 -105.235.216.0/21 37489 -105.235.224.0/20 37487 -105.235.240.0/20 36963 -105.236.0.0/15 2905 -105.238.0.0/15 36998 -105.242.0.0/16 36994 -105.245.0.0/18 29975 -105.245.192.0/18 29975 -105.246.0.0/17 36994 -105.247.0.0/16 36994 -105.248.0.0/14 29975 -105.252.0.0/15 29975 -105.255.0.0/16 36994 -106.0.4.0/22 4134 -106.0.36.0/22 18229 -106.0.48.0/22 9422 -106.0.54.0/23 58945 -106.0.56.0/22 135031 -106.0.60.0/22 56264 -106.0.71.0/24 133955 -106.0.73.0/24 133955 -106.0.75.0/24 133955 -106.0.77.0/24 133955 -106.0.128.0/17 4621 -106.1.0.0/21 38841 -106.1.8.0/22 38841 -106.1.12.0/23 38841 -106.1.14.0/24 38841 -106.1.15.0/24 9924 -106.1.16.0/20 38841 -106.1.32.0/20 38841 -106.1.48.0/20 9924 -106.1.64.0/22 9924 -106.1.68.0/23 38841 -106.1.70.0/23 9924 -106.1.72.0/21 38841 -106.1.80.0/21 38841 -106.1.88.0/21 9924 -106.1.96.0/23 9924 -106.1.98.0/23 38841 -106.1.100.0/22 38841 -106.1.104.0/21 9924 -106.1.112.0/20 9924 -106.1.128.0/18 9924 -106.1.192.0/19 9924 -106.1.224.0/21 38841 -106.1.232.0/21 9924 -106.1.240.0/20 9924 -106.2.0.0/21 4847 -106.2.8.0/24 4847 -106.2.9.0/24 24143 -106.2.10.0/23 4847 -106.2.12.0/22 4847 -106.2.16.0/20 4847 -106.2.32.0/19 45062 -106.2.64.0/18 45062 -106.2.128.0/20 4808 -106.2.144.0/21 4808 -106.2.152.0/22 4808 -106.2.156.0/23 4808 -106.2.158.0/23 63199 -106.2.160.0/21 4808 -106.2.168.0/22 4808 -106.2.172.0/22 23724 -106.2.176.0/20 23724 -106.2.192.0/19 23724 -106.2.224.0/23 23724 -106.2.226.0/24 23724 -106.2.227.0/24 24143 -106.2.228.0/22 23724 -106.2.232.0/22 23724 -106.2.236.0/24 23724 -106.2.237.0/24 24143 -106.2.238.0/23 23724 -106.2.240.0/20 4847 -106.3.16.0/20 23724 -106.3.32.0/20 24138 -106.3.60.0/22 23724 -106.3.84.0/24 2042 -106.3.86.0/24 45753 -106.3.87.0/24 2042 -106.3.128.0/19 4808 -106.3.160.0/22 58730 -106.3.170.0/23 133948 -106.3.173.0/24 133948 -106.3.192.0/20 23724 -106.3.208.0/21 4837 -106.3.224.0/21 17623 -106.3.232.0/21 59050 -106.3.240.0/21 59050 -106.3.248.0/21 4808 -106.4.0.0/14 4134 -106.8.0.0/16 4134 -106.9.0.0/18 4809 -106.9.64.0/18 4134 -106.9.128.0/17 4134 -106.10.0.0/19 38690 -106.10.32.0/19 135354 -106.10.64.0/18 38661 -106.10.128.0/17 56173 -106.11.0.0/16 37963 -106.12.0.0/17 38365 -106.12.128.0/18 38365 -106.12.192.0/19 38365 -106.12.224.0/20 38365 -106.12.240.0/21 38365 -106.12.248.0/22 38365 -106.12.252.0/24 134768 -106.13.0.0/17 38365 -106.13.128.0/18 38365 -106.13.192.0/19 38365 -106.13.224.0/20 38365 -106.13.240.0/22 38365 -106.13.248.0/23 23724 -106.14.0.0/15 37963 -106.16.0.0/14 4134 -106.32.0.0/14 4134 -106.36.0.0/16 4134 -106.37.0.0/18 4847 -106.37.64.0/21 4847 -106.37.72.0/22 23724 -106.37.76.0/22 4847 -106.37.80.0/20 4847 -106.37.96.0/19 4847 -106.37.128.0/17 4847 -106.38.0.0/17 4847 -106.38.128.0/21 4847 -106.38.136.0/23 4847 -106.38.138.0/23 23724 -106.38.140.0/22 4847 -106.38.144.0/20 4847 -106.38.160.0/20 4847 -106.38.176.0/20 23724 -106.38.192.0/18 23724 -106.39.0.0/17 4847 -106.39.128.0/19 4847 -106.39.160.0/19 23724 -106.39.192.0/18 23724 -106.40.0.0/14 4134 -106.44.0.0/15 4134 -106.46.0.0/16 4134 -106.47.0.0/16 17638 -106.48.0.0/21 23724 -106.48.12.0/23 63541 -106.48.15.0/24 63541 -106.48.16.0/21 137697 -106.48.48.0/21 63541 -106.48.58.0/23 63541 -106.48.61.0/24 63541 -106.48.62.0/24 63541 -106.49.0.0/24 9506 -106.49.80.0/21 23724 -106.50.0.0/20 9298 -106.50.16.0/24 59050 -106.50.17.0/24 9298 -106.50.18.0/23 9298 -106.50.20.0/22 9298 -106.50.24.0/21 9298 -106.50.32.0/19 9298 -106.50.64.0/18 9298 -106.50.128.0/18 9298 -106.50.192.0/23 59050 -106.50.194.0/23 9298 -106.50.196.0/22 9298 -106.50.200.0/21 9298 -106.50.208.0/20 9298 -106.50.224.0/19 9298 -106.51.0.0/22 24309 -106.51.4.0/24 131269 -106.51.5.0/24 24309 -106.51.6.0/24 131269 -106.51.7.0/24 24309 -106.51.8.0/21 24309 -106.51.16.0/20 24309 -106.51.32.0/20 24309 -106.51.48.0/22 131269 -106.51.52.0/22 24309 -106.51.56.0/22 24309 -106.51.64.0/19 24309 -106.51.96.0/20 24309 -106.51.112.0/24 24309 -106.51.113.0/24 131269 -106.51.114.0/24 131269 -106.51.115.0/24 24309 -106.51.116.0/22 24309 -106.51.120.0/21 24309 -106.51.128.0/20 24309 -106.51.144.0/21 24309 -106.51.152.0/22 24309 -106.51.156.0/24 131269 -106.51.158.0/23 24309 -106.51.160.0/19 131269 -106.51.192.0/19 24309 -106.51.224.0/20 24309 -106.51.240.0/21 24309 -106.51.248.0/22 24309 -106.51.252.0/23 24309 -106.51.254.0/24 24309 -106.51.255.0/24 131269 -106.52.0.0/14 45090 -106.56.0.0/17 4134 -106.56.128.0/18 4134 -106.56.192.0/20 4134 -106.56.208.0/21 4134 -106.56.216.0/24 4134 -106.56.217.0/24 134766 -106.56.218.0/23 134766 -106.56.220.0/22 4134 -106.56.224.0/19 4134 -106.57.0.0/16 4134 -106.58.0.0/15 4134 -106.60.0.0/19 4134 -106.60.32.0/20 4134 -106.60.48.0/21 4134 -106.60.56.0/21 134766 -106.60.64.0/19 134766 -106.60.96.0/19 4134 -106.60.128.0/17 4134 -106.61.0.0/16 4134 -106.62.0.0/16 4134 -106.66.0.0/24 55644 -106.66.4.0/22 45271 -106.66.10.0/24 45271 -106.66.14.0/23 45271 -106.66.16.0/23 45271 -106.66.19.0/24 45271 -106.66.20.0/22 45271 -106.66.28.0/23 45271 -106.66.31.0/24 45271 -106.66.36.0/22 45271 -106.66.40.0/21 45271 -106.66.48.0/20 45271 -106.66.64.0/19 55644 -106.66.96.0/19 45271 -106.66.128.0/19 45271 -106.66.160.0/20 45271 -106.66.176.0/22 45271 -106.66.180.0/23 45271 -106.66.186.0/24 45271 -106.66.191.0/24 45271 -106.66.192.0/20 45271 -106.66.210.0/23 45271 -106.66.212.0/22 45271 -106.66.216.0/21 45271 -106.66.224.0/19 45271 -106.67.0.0/17 45271 -106.67.128.0/19 45271 -106.67.160.0/20 45271 -106.67.192.0/18 45271 -106.68.0.0/18 7545 -106.68.64.0/19 4739 -106.68.96.0/19 7545 -106.68.128.0/19 7545 -106.68.160.0/19 4739 -106.68.192.0/18 4739 -106.69.0.0/17 7545 -106.69.128.0/18 7545 -106.69.192.0/19 4739 -106.69.224.0/19 7545 -106.70.0.0/15 4804 -106.72.0.0/15 2516 -106.74.0.0/16 133118 -106.75.0.0/17 4808 -106.75.128.0/18 58466 -106.75.192.0/21 135377 -106.75.200.0/24 135377 -106.75.202.0/23 135377 -106.75.208.0/20 4812 -106.75.224.0/19 4812 -106.76.0.0/23 45271 -106.76.2.0/24 45271 -106.76.10.0/23 45271 -106.76.12.0/22 45271 -106.76.16.0/20 45271 -106.76.32.0/19 45271 -106.76.68.0/24 45271 -106.76.70.0/23 45271 -106.76.72.0/22 45271 -106.76.76.0/24 45271 -106.76.78.0/23 45271 -106.76.80.0/20 45271 -106.76.96.0/19 45271 -106.76.144.0/20 45271 -106.76.192.0/18 45271 -106.77.0.0/17 45271 -106.77.128.0/18 45271 -106.77.192.0/19 45271 -106.77.224.0/19 55644 -106.78.0.0/20 45271 -106.78.32.0/19 45271 -106.78.64.0/19 45271 -106.78.160.0/19 45271 -106.78.192.0/18 45271 -106.79.48.0/20 45271 -106.79.64.0/18 45271 -106.79.128.0/18 45271 -106.79.192.0/19 45271 -106.79.224.0/20 45271 -106.80.0.0/13 4134 -106.88.0.0/14 4134 -106.92.0.0/16 4134 -106.96.0.0/16 17853 -106.101.0.0/22 17853 -106.101.62.0/23 17853 -106.101.64.0/22 17853 -106.101.128.0/22 17853 -106.101.192.0/22 17853 -106.102.0.0/16 17853 -106.103.1.0/24 17853 -106.103.2.0/24 17853 -106.103.189.0/24 3786 -106.103.191.0/24 3786 -106.103.192.0/18 3786 -106.104.0.0/16 4780 -106.105.16.0/21 4780 -106.105.24.0/21 18419 -106.105.32.0/24 4780 -106.105.33.0/24 9919 -106.105.34.0/23 4780 -106.105.36.0/22 4780 -106.105.40.0/24 4780 -106.105.41.0/24 9919 -106.105.42.0/23 9919 -106.105.44.0/22 9919 -106.105.48.0/20 9919 -106.105.64.0/24 4780 -106.105.65.0/24 18049 -106.105.66.0/23 18049 -106.105.68.0/22 18049 -106.105.72.0/21 18049 -106.105.80.0/20 18049 -106.105.96.0/21 131627 -106.105.104.0/22 131627 -106.105.108.0/23 131627 -106.105.128.0/19 4780 -106.105.160.0/22 4780 -106.105.168.0/21 4780 -106.105.176.0/21 131584 -106.105.184.0/23 18419 -106.105.186.0/24 4780 -106.105.187.0/24 18419 -106.105.188.0/22 18419 -106.105.192.0/19 4780 -106.106.0.0/17 131586 -106.106.161.0/24 131586 -106.106.168.0/23 131586 -106.106.180.0/23 131586 -106.106.192.0/23 4780 -106.106.194.0/24 4780 -106.106.197.0/24 4780 -106.106.198.0/23 4780 -106.106.200.0/23 4780 -106.106.202.0/24 4780 -106.106.220.0/23 4780 -106.106.222.0/24 4780 -106.106.223.0/24 9919 -106.106.229.0/24 4780 -106.106.230.0/24 4780 -106.106.236.0/23 4780 -106.106.238.0/24 4780 -106.106.244.0/23 4780 -106.106.246.0/24 4780 -106.106.252.0/23 4780 -106.106.254.0/24 4780 -106.107.128.0/17 18049 -106.108.0.0/14 4134 -106.112.0.0/13 4134 -106.120.0.0/18 4847 -106.120.64.0/19 4847 -106.120.96.0/21 4847 -106.120.104.0/24 9401 -106.120.105.0/24 4847 -106.120.106.0/23 4847 -106.120.108.0/22 4847 -106.120.112.0/20 4847 -106.120.128.0/20 4847 -106.120.144.0/20 23724 -106.120.160.0/19 23724 -106.120.192.0/18 4847 -106.121.0.0/16 4847 -106.122.0.0/17 4134 -106.122.128.0/18 4134 -106.122.192.0/19 4134 -106.122.224.0/20 4134 -106.122.240.0/22 4134 -106.122.244.0/22 133775 -106.122.248.0/21 133774 -106.123.0.0/16 4134 -106.124.0.0/19 4134 -106.124.32.0/21 4134 -106.124.40.0/22 137694 -106.124.44.0/22 4134 -106.124.48.0/20 4134 -106.124.64.0/18 4134 -106.124.128.0/18 4134 -106.124.192.0/19 4134 -106.124.224.0/20 4134 -106.124.240.0/21 4134 -106.124.248.0/22 4134 -106.124.252.0/23 137694 -106.124.254.0/23 4134 -106.125.0.0/16 4134 -106.126.0.0/16 4134 -106.127.0.0/17 4134 -106.127.128.0/19 4134 -106.127.160.0/20 4134 -106.127.176.0/21 4134 -106.127.184.0/21 134419 -106.127.192.0/18 4134 -106.128.0.0/10 2516 -106.192.0.0/16 45609 -106.193.0.0/17 45609 -106.193.128.0/22 45609 -106.193.136.0/22 45609 -106.193.144.0/22 45609 -106.193.152.0/22 45609 -106.193.160.0/22 45609 -106.193.168.0/22 45609 -106.193.176.0/22 45609 -106.193.184.0/22 45609 -106.193.192.0/22 45609 -106.193.200.0/22 45609 -106.193.208.0/22 45609 -106.193.216.0/22 45609 -106.193.224.0/22 45609 -106.193.232.0/22 45609 -106.193.240.0/22 45609 -106.193.248.0/22 45609 -106.193.252.0/24 45609 -106.195.128.0/17 45609 -106.196.128.0/17 45609 -106.197.0.0/19 45609 -106.197.32.0/20 45609 -106.197.128.0/17 45609 -106.198.0.0/16 45609 -106.199.128.0/17 45609 -106.200.0.0/18 45609 -106.200.64.0/24 45609 -106.200.67.0/24 45609 -106.200.68.0/24 45609 -106.200.72.0/21 45609 -106.200.80.0/20 45609 -106.200.96.0/19 45609 -106.200.140.0/22 45609 -106.200.144.0/20 45609 -106.200.160.0/19 45609 -106.200.192.0/18 24560 -106.201.0.0/17 24560 -106.201.128.0/18 24560 -106.201.192.0/20 24560 -106.201.208.0/22 24560 -106.201.212.0/22 45609 -106.201.216.0/21 45609 -106.201.224.0/20 24560 -106.201.240.0/20 45609 -106.202.0.0/17 45609 -106.203.0.0/17 45609 -106.203.128.0/18 45609 -106.204.0.0/16 45609 -106.205.0.0/17 45609 -106.205.128.0/18 45609 -106.206.0.0/17 45609 -106.207.0.0/16 45609 -106.208.0.0/17 45609 -106.208.128.0/20 45609 -106.208.168.0/21 45609 -106.208.176.0/21 45609 -106.208.184.0/22 45609 -106.208.192.0/18 45609 -106.209.0.0/17 45609 -106.209.128.0/22 45609 -106.209.136.0/22 45609 -106.209.144.0/22 45609 -106.209.152.0/22 45609 -106.209.160.0/22 45609 -106.209.168.0/22 45609 -106.209.176.0/22 45609 -106.209.184.0/22 45609 -106.209.192.0/22 45609 -106.209.200.0/22 45609 -106.209.208.0/22 45609 -106.209.216.0/22 45609 -106.209.224.0/22 45609 -106.209.232.0/22 45609 -106.209.240.0/22 45609 -106.209.248.0/22 45609 -106.210.0.0/17 45609 -106.210.128.0/18 45609 -106.210.192.0/22 45609 -106.210.196.0/23 45609 -106.210.198.0/24 45609 -106.210.199.0/24 9498 -106.210.200.0/21 45609 -106.210.208.0/20 45609 -106.210.224.0/19 45609 -106.211.128.0/19 45609 -106.211.192.0/18 45609 -106.212.128.0/18 24560 -106.212.192.0/19 45609 -106.212.224.0/19 24560 -106.213.128.0/18 45609 -106.213.192.0/19 45609 -106.213.225.0/24 45609 -106.213.232.0/21 45609 -106.213.240.0/20 45609 -106.215.0.0/17 24560 -106.215.128.0/17 45609 -106.216.0.0/18 45609 -106.216.176.0/21 45609 -106.216.184.0/22 45609 -106.217.0.0/17 45609 -106.217.128.0/19 45609 -106.217.192.0/18 45609 -106.218.0.0/15 45609 -106.220.0.0/19 45609 -106.220.32.0/20 45609 -106.220.48.0/21 45609 -106.220.64.0/19 45609 -106.220.112.0/20 45609 -106.220.128.0/18 45609 -106.220.192.0/19 45609 -106.220.224.0/20 45609 -106.222.0.0/18 45609 -106.222.64.0/19 45609 -106.222.128.0/17 45609 -106.223.0.0/17 45609 -106.223.128.0/18 45609 -106.223.192.0/19 45609 -106.223.224.0/20 45609 -106.224.0.0/16 4134 -106.225.0.0/17 4134 -106.225.128.0/19 134238 -106.225.160.0/21 139201 -106.225.168.0/21 4134 -106.225.176.0/20 4134 -106.225.192.0/18 134238 -106.226.0.0/15 4134 -106.228.0.0/15 4134 -106.230.0.0/16 4134 -106.240.0.0/16 3786 -106.241.0.0/19 3786 -106.241.32.0/23 3786 -106.241.34.0/24 3786 -106.241.35.0/24 38668 -106.241.36.0/23 38668 -106.241.38.0/24 10167 -106.241.39.0/24 3786 -106.241.40.0/22 3786 -106.241.44.0/24 3786 -106.241.45.0/24 23555 -106.241.46.0/24 3786 -106.241.47.0/24 9703 -106.241.48.0/23 3786 -106.241.50.0/24 3786 -106.241.51.0/24 45980 -106.241.52.0/24 45980 -106.241.53.0/24 3786 -106.241.54.0/23 3786 -106.241.56.0/21 3786 -106.241.64.0/21 3786 -106.241.72.0/22 3786 -106.241.76.0/23 3786 -106.241.78.0/24 3786 -106.241.79.0/24 9647 -106.241.80.0/20 3786 -106.241.96.0/19 3786 -106.241.128.0/20 3786 -106.241.144.0/24 3786 -106.241.145.0/24 17583 -106.241.146.0/23 17583 -106.241.148.0/22 17583 -106.241.152.0/22 17583 -106.241.156.0/24 17583 -106.241.157.0/24 17834 -106.241.158.0/23 3786 -106.241.160.0/19 3786 -106.241.192.0/18 3786 -106.242.0.0/15 3786 -106.244.0.0/14 3786 -106.248.0.0/16 3786 -106.249.0.0/20 3786 -106.249.16.0/23 3786 -106.249.18.0/23 45974 -106.249.20.0/22 45974 -106.249.24.0/21 45974 -106.249.32.0/23 45974 -106.249.34.0/24 3786 -106.249.35.0/24 9972 -106.249.36.0/22 3786 -106.249.40.0/22 3786 -106.249.44.0/24 3786 -106.249.45.0/24 9959 -106.249.46.0/23 3786 -106.249.48.0/22 3786 -106.249.52.0/23 3786 -106.249.54.0/24 3786 -106.249.55.0/24 18317 -106.249.56.0/21 3786 -106.249.64.0/18 3786 -106.249.128.0/17 3786 -106.250.0.0/15 3786 -106.252.0.0/14 3786 -107.0.0.0/22 16567 -107.0.4.0/22 7922 -107.0.8.0/23 7922 -107.0.10.0/24 46762 -107.0.11.0/24 7922 -107.0.12.0/22 7922 -107.0.16.0/23 7922 -107.0.18.0/24 33378 -107.0.19.0/24 7922 -107.0.20.0/24 14473 -107.0.21.0/24 7922 -107.0.22.0/23 7922 -107.0.24.0/21 7922 -107.0.32.0/21 7922 -107.0.40.0/23 7922 -107.0.42.0/24 7922 -107.0.43.0/24 27562 -107.0.44.0/23 7922 -107.0.46.0/23 10309 -107.0.48.0/20 7922 -107.0.64.0/22 7922 -107.0.68.0/23 7922 -107.0.70.0/24 33491 -107.0.71.0/24 7922 -107.0.72.0/24 30457 -107.0.73.0/24 7922 -107.0.74.0/23 7922 -107.0.76.0/23 7922 -107.0.78.0/24 7922 -107.0.79.0/24 33491 -107.0.80.0/23 7922 -107.0.82.0/24 19417 -107.0.83.0/24 7922 -107.0.84.0/22 7922 -107.0.88.0/21 7922 -107.0.96.0/23 33491 -107.0.98.0/24 16593 -107.0.99.0/24 7922 -107.0.100.0/23 7922 -107.0.102.0/24 7922 -107.0.103.0/24 53733 -107.0.104.0/21 7922 -107.0.112.0/22 7922 -107.0.116.0/24 7016 -107.0.117.0/24 7922 -107.0.118.0/23 7922 -107.0.120.0/22 7922 -107.0.124.0/24 7922 -107.0.125.0/24 33491 -107.0.126.0/24 33491 -107.0.127.0/24 7922 -107.0.128.0/23 7922 -107.0.130.0/24 7922 -107.0.131.0/24 29865 -107.0.132.0/24 27178 -107.0.133.0/24 7922 -107.0.134.0/24 7922 -107.0.135.0/24 53851 -107.0.136.0/24 53803 -107.0.137.0/24 7922 -107.0.138.0/24 33491 -107.0.139.0/24 7922 -107.0.140.0/22 7922 -107.0.144.0/22 7922 -107.0.148.0/24 33491 -107.0.149.0/24 7922 -107.0.150.0/23 7922 -107.0.152.0/24 7922 -107.0.153.0/24 13510 -107.0.154.0/23 7922 -107.0.156.0/22 7922 -107.0.160.0/24 7922 -107.0.161.0/24 54268 -107.0.162.0/23 7922 -107.0.164.0/23 7922 -107.0.166.0/24 7922 -107.0.167.0/24 40857 -107.0.168.0/24 32801 -107.0.169.0/24 7922 -107.0.170.0/24 54118 -107.0.171.0/24 7922 -107.0.172.0/22 7922 -107.0.176.0/23 7922 -107.0.178.0/24 12244 -107.0.179.0/24 7922 -107.0.180.0/23 7922 -107.0.182.0/23 33491 -107.0.184.0/21 7922 -107.0.192.0/22 7922 -107.0.196.0/24 7922 -107.0.197.0/24 19572 -107.0.198.0/23 7922 -107.0.200.0/24 7922 -107.0.201.0/24 21792 -107.0.202.0/24 19944 -107.0.203.0/24 7922 -107.0.204.0/24 7922 -107.0.205.0/24 54515 -107.0.206.0/23 7922 -107.0.208.0/22 7922 -107.0.212.0/24 33491 -107.0.213.0/24 7922 -107.0.214.0/23 7922 -107.0.216.0/24 33491 -107.0.217.0/24 7922 -107.0.218.0/23 7922 -107.0.220.0/24 4443 -107.0.221.0/24 7922 -107.0.222.0/23 7922 -107.0.224.0/21 7922 -107.0.232.0/23 7922 -107.0.234.0/24 395824 -107.0.235.0/24 7922 -107.0.236.0/23 7922 -107.0.238.0/24 54322 -107.0.239.0/24 7922 -107.0.240.0/20 7922 -107.1.0.0/21 7922 -107.1.8.0/24 54051 -107.1.9.0/24 7922 -107.1.10.0/24 14787 -107.1.11.0/24 7922 -107.1.12.0/22 7922 -107.1.16.0/24 7922 -107.1.17.0/24 54542 -107.1.18.0/24 54542 -107.1.19.0/24 7922 -107.1.20.0/23 7922 -107.1.22.0/24 46864 -107.1.23.0/24 7922 -107.1.24.0/21 7922 -107.1.32.0/20 7922 -107.1.48.0/24 7922 -107.1.49.0/24 25724 -107.1.50.0/23 7922 -107.1.52.0/22 7922 -107.1.56.0/24 7922 -107.1.57.0/24 54286 -107.1.58.0/23 7922 -107.1.60.0/24 33491 -107.1.61.0/24 7922 -107.1.62.0/23 7922 -107.1.64.0/24 7922 -107.1.65.0/24 53885 -107.1.66.0/23 7922 -107.1.68.0/24 53626 -107.1.69.0/24 7922 -107.1.70.0/23 7922 -107.1.72.0/21 7922 -107.1.80.0/20 7922 -107.1.96.0/22 7922 -107.1.100.0/23 7922 -107.1.102.0/23 33491 -107.1.104.0/21 7922 -107.1.112.0/20 7922 -107.1.128.0/20 7922 -107.1.144.0/22 7922 -107.1.148.0/23 7922 -107.1.150.0/24 395911 -107.1.151.0/24 7922 -107.1.152.0/21 7922 -107.1.160.0/21 7922 -107.1.168.0/24 7922 -107.1.169.0/24 27291 -107.1.170.0/23 7922 -107.1.172.0/22 7922 -107.1.176.0/23 7922 -107.1.178.0/24 7922 -107.1.179.0/24 54493 -107.1.180.0/22 22448 -107.1.184.0/24 7922 -107.1.185.0/24 33491 -107.1.186.0/23 7922 -107.1.188.0/22 7922 -107.1.192.0/21 7922 -107.1.200.0/24 7922 -107.1.201.0/24 54737 -107.1.202.0/23 7922 -107.1.204.0/22 7922 -107.1.208.0/23 7922 -107.1.210.0/24 7922 -107.1.211.0/24 33491 -107.1.212.0/22 7922 -107.1.216.0/23 7922 -107.1.218.0/24 7922 -107.1.219.0/24 33491 -107.1.220.0/22 7922 -107.1.224.0/24 7922 -107.1.225.0/24 7016 -107.1.226.0/23 7922 -107.1.228.0/22 7922 -107.1.232.0/21 7922 -107.1.240.0/21 7922 -107.1.248.0/22 7922 -107.1.252.0/24 7922 -107.1.253.0/24 33491 -107.1.254.0/23 7922 -107.2.0.0/15 7922 -107.4.0.0/15 7922 -107.6.0.0/20 13768 -107.6.16.0/22 13768 -107.6.20.0/23 54643 -107.6.22.0/23 13768 -107.6.24.0/23 13768 -107.6.26.0/24 13768 -107.6.27.0/24 54643 -107.6.28.0/22 13768 -107.6.32.0/23 41458 -107.6.36.0/22 13768 -107.6.40.0/23 13768 -107.6.42.0/24 13768 -107.6.43.0/24 6640 -107.6.44.0/22 13768 -107.6.48.0/20 13768 -107.6.64.0/19 29791 -107.6.96.0/20 29791 -107.6.112.0/21 14636 -107.6.120.0/22 14636 -107.6.124.0/22 29791 -107.6.128.0/18 32475 -107.6.192.0/18 35908 -107.7.0.0/18 7029 -107.7.64.0/19 7029 -107.7.96.0/23 7029 -107.7.98.0/24 7029 -107.7.99.0/24 55142 -107.7.100.0/22 7029 -107.7.104.0/21 7029 -107.7.112.0/20 7029 -107.7.128.0/20 7029 -107.7.144.0/21 7029 -107.7.152.0/22 7029 -107.7.156.0/24 7029 -107.7.157.0/24 55142 -107.7.158.0/23 7029 -107.7.160.0/19 7029 -107.7.192.0/20 7029 -107.7.208.0/21 7029 -107.7.216.0/22 7029 -107.7.220.0/23 36124 -107.7.222.0/23 7029 -107.7.224.0/20 7029 -107.7.240.0/21 7029 -107.7.248.0/22 7029 -107.7.252.0/23 7029 -107.7.254.0/24 7029 -107.7.255.0/24 62796 -107.8.0.0/22 7843 -107.8.4.0/23 10796 -107.8.6.0/24 7843 -107.8.7.0/24 10796 -107.8.8.0/22 10796 -107.8.12.0/22 7843 -107.8.16.0/20 7843 -107.8.32.0/19 7843 -107.8.64.0/18 7843 -107.8.128.0/17 7843 -107.9.0.0/18 10796 -107.9.64.0/18 7843 -107.9.128.0/17 10796 -107.10.0.0/15 10796 -107.12.0.0/15 11426 -107.14.0.0/21 16787 -107.14.8.0/21 7843 -107.14.16.0/20 7843 -107.14.32.0/19 7843 -107.14.64.0/21 7843 -107.14.72.0/22 7843 -107.14.76.0/23 8052 -107.14.78.0/23 7843 -107.14.80.0/20 8052 -107.14.96.0/21 7843 -107.14.104.0/21 16787 -107.14.112.0/22 16787 -107.14.116.0/22 7843 -107.14.120.0/22 7843 -107.14.124.0/23 2386 -107.14.126.0/24 2386 -107.14.127.0/24 7843 -107.14.128.0/19 10796 -107.14.160.0/20 14065 -107.14.176.0/20 16787 -107.14.192.0/18 7843 -107.15.0.0/16 11426 -107.16.0.0/14 14654 -107.20.0.0/14 14618 -107.26.0.0/16 10507 -107.51.0.0/16 10507 -107.52.0.0/15 10507 -107.60.0.0/16 10507 -107.62.0.0/16 10507 -107.64.0.0/13 7018 -107.72.0.0/18 7018 -107.72.64.0/19 7018 -107.72.96.0/22 20057 -107.72.100.0/22 7018 -107.72.104.0/21 7018 -107.72.112.0/20 7018 -107.72.128.0/19 7018 -107.72.160.0/23 7018 -107.72.162.0/23 20057 -107.72.164.0/23 20057 -107.72.166.0/23 7018 -107.72.168.0/22 7018 -107.72.172.0/23 7018 -107.72.174.0/24 20057 -107.72.175.0/24 7018 -107.72.176.0/23 20057 -107.72.178.0/24 20057 -107.72.179.0/24 7018 -107.72.180.0/22 7018 -107.72.184.0/21 7018 -107.72.192.0/19 7018 -107.72.224.0/24 7018 -107.72.225.0/24 20057 -107.72.226.0/23 7018 -107.72.228.0/22 7018 -107.72.232.0/21 7018 -107.72.240.0/20 7018 -107.73.0.0/16 7018 -107.74.0.0/15 7018 -107.76.0.0/16 7018 -107.77.0.0/18 7018 -107.77.64.0/19 20057 -107.77.96.0/23 20057 -107.77.98.0/23 7018 -107.77.100.0/22 20057 -107.77.104.0/21 20057 -107.77.112.0/20 25993 -107.77.128.0/19 7018 -107.77.160.0/23 20057 -107.77.162.0/23 7018 -107.77.164.0/23 20057 -107.77.166.0/23 7018 -107.77.168.0/23 20057 -107.77.170.0/23 7018 -107.77.172.0/23 20057 -107.77.174.0/23 7018 -107.77.176.0/21 7018 -107.77.184.0/22 7018 -107.77.188.0/23 20057 -107.77.190.0/23 7018 -107.77.192.0/19 20057 -107.77.224.0/21 20057 -107.77.232.0/22 20057 -107.77.236.0/23 20057 -107.77.238.0/23 7018 -107.77.240.0/23 20057 -107.77.242.0/23 7018 -107.77.244.0/23 20057 -107.77.246.0/23 7018 -107.77.248.0/23 20057 -107.77.250.0/23 7018 -107.77.252.0/23 20057 -107.77.254.0/23 7018 -107.78.0.0/15 7018 -107.80.0.0/15 20057 -107.82.0.0/15 7018 -107.84.0.0/15 20057 -107.86.0.0/16 7018 -107.87.0.0/17 20057 -107.87.128.0/21 7018 -107.87.136.0/22 20057 -107.87.140.0/22 7018 -107.87.144.0/21 20057 -107.87.152.0/23 20057 -107.87.154.0/24 20057 -107.87.155.0/24 7018 -107.87.156.0/22 7018 -107.87.160.0/19 7018 -107.87.192.0/18 20057 -107.88.0.0/16 7018 -107.89.0.0/16 20057 -107.90.0.0/15 20057 -107.92.0.0/16 20057 -107.93.0.0/17 20057 -107.93.128.0/18 20057 -107.93.192.0/18 7018 -107.94.0.0/17 7018 -107.94.128.0/24 20057 -107.94.129.0/24 7018 -107.94.130.0/23 7018 -107.94.132.0/22 7018 -107.94.136.0/21 7018 -107.94.144.0/20 7018 -107.94.160.0/19 7018 -107.94.192.0/18 20057 -107.95.0.0/19 20057 -107.95.32.0/19 7018 -107.95.64.0/19 20057 -107.95.96.0/20 20057 -107.95.112.0/21 20057 -107.95.120.0/21 7018 -107.95.128.0/17 20057 -107.96.0.0/14 7018 -107.100.0.0/15 7018 -107.102.0.0/16 7018 -107.103.0.0/18 7018 -107.103.64.0/19 7018 -107.103.96.0/21 7018 -107.103.104.0/22 7287 -107.103.108.0/23 7287 -107.103.110.0/24 7018 -107.103.111.0/24 7287 -107.103.112.0/23 7018 -107.103.114.0/24 7287 -107.103.115.0/24 7018 -107.103.116.0/22 7018 -107.103.120.0/24 7018 -107.103.121.0/24 7287 -107.103.122.0/23 7287 -107.103.124.0/23 7287 -107.103.126.0/24 7018 -107.103.127.0/24 7287 -107.103.128.0/17 7018 -107.104.0.0/15 7018 -107.106.0.0/15 20057 -107.108.0.0/14 7018 -107.112.0.0/17 7018 -107.112.128.0/18 46164 -107.112.192.0/20 7018 -107.112.208.0/21 7018 -107.112.216.0/22 20057 -107.112.220.0/22 7018 -107.112.224.0/19 7018 -107.113.0.0/16 7018 -107.114.0.0/15 7018 -107.116.0.0/16 7018 -107.117.0.0/19 7018 -107.117.32.0/20 7018 -107.117.48.0/21 7018 -107.117.56.0/22 7287 -107.117.60.0/22 7018 -107.117.64.0/19 46164 -107.117.96.0/22 7018 -107.117.100.0/23 7287 -107.117.102.0/24 7287 -107.117.103.0/24 7018 -107.117.104.0/22 7018 -107.117.108.0/23 7287 -107.117.110.0/24 7287 -107.117.111.0/24 7018 -107.117.112.0/21 7287 -107.117.120.0/21 7018 -107.117.128.0/17 7018 -107.118.0.0/16 20057 -107.119.0.0/22 7018 -107.119.4.0/22 7287 -107.119.8.0/22 7287 -107.119.12.0/23 7287 -107.119.14.0/24 7287 -107.119.15.0/24 7018 -107.119.16.0/22 7018 -107.119.20.0/22 7287 -107.119.24.0/21 7287 -107.119.32.0/19 7018 -107.119.64.0/18 7018 -107.119.128.0/18 7018 -107.119.192.0/22 7018 -107.119.196.0/22 7287 -107.119.200.0/23 7287 -107.119.202.0/23 7018 -107.119.204.0/22 7018 -107.119.208.0/20 7018 -107.119.224.0/19 7018 -107.120.0.0/16 7018 -107.121.0.0/18 7018 -107.121.64.0/21 7018 -107.121.72.0/22 7018 -107.121.76.0/24 7287 -107.121.77.0/24 7018 -107.121.78.0/23 7018 -107.121.80.0/20 7018 -107.121.96.0/19 7018 -107.121.128.0/17 7018 -107.122.0.0/15 7018 -107.124.0.0/16 7018 -107.125.0.0/20 7018 -107.125.16.0/21 7018 -107.125.24.0/24 20057 -107.125.25.0/24 7018 -107.125.26.0/23 7018 -107.125.28.0/22 7018 -107.125.32.0/19 7018 -107.125.64.0/18 7018 -107.125.128.0/17 20057 -107.126.0.0/15 7018 -107.128.0.0/12 7018 -107.144.0.0/14 33363 -107.148.0.0/15 54600 -107.150.0.0/20 8100 -107.150.16.0/22 8100 -107.150.20.0/23 46562 -107.150.22.0/23 8100 -107.150.24.0/21 8100 -107.150.32.0/19 33387 -107.150.64.0/23 206146 -107.150.66.0/24 46805 -107.150.67.0/24 206146 -107.150.68.0/23 46805 -107.150.70.0/23 206146 -107.150.72.0/21 46805 -107.150.80.0/24 52219 -107.150.81.0/24 46805 -107.150.82.0/23 46805 -107.150.84.0/22 46805 -107.150.88.0/24 58065 -107.150.89.0/24 206146 -107.150.90.0/23 58065 -107.150.92.0/24 46805 -107.150.93.0/24 206146 -107.150.95.0/24 197328 -107.150.96.0/20 135377 -107.150.112.0/24 135377 -107.150.117.0/24 135377 -107.150.118.0/23 135377 -107.150.120.0/21 135377 -107.150.128.0/23 14745 -107.150.130.0/23 32787 -107.150.132.0/22 14745 -107.150.136.0/21 12179 -107.150.144.0/23 12182 -107.150.146.0/23 29791 -107.150.148.0/22 12182 -107.150.152.0/22 14745 -107.150.156.0/22 12179 -107.150.160.0/24 19257 -107.150.161.0/24 54103 -107.150.162.0/23 59447 -107.150.164.0/22 59447 -107.150.168.0/21 59447 -107.150.176.0/24 59447 -107.150.177.0/24 197328 -107.150.178.0/23 59447 -107.150.180.0/24 3257 -107.150.181.0/24 19257 -107.150.182.0/23 19257 -107.150.184.0/21 19257 -107.150.224.0/19 36493 -107.151.0.0/18 55081 -107.151.64.0/18 132839 -107.151.128.0/18 21859 -107.151.192.0/21 62468 -107.151.200.0/24 40676 -107.151.201.0/24 62468 -107.151.202.0/24 40676 -107.151.203.0/24 62468 -107.151.204.0/22 62468 -107.151.208.0/21 62468 -107.151.216.0/24 40676 -107.151.217.0/24 62468 -107.151.218.0/23 62468 -107.151.220.0/22 62468 -107.151.224.0/19 62468 -107.152.0.0/22 62523 -107.152.4.0/23 40642 -107.152.6.0/23 62523 -107.152.8.0/21 62523 -107.152.16.0/20 33011 -107.152.32.0/21 11878 -107.152.40.0/22 11878 -107.152.44.0/23 11878 -107.152.46.0/24 11878 -107.152.47.0/24 46844 -107.152.48.0/20 2732 -107.152.64.0/20 1830 -107.152.80.0/20 30500 -107.152.96.0/20 46562 -107.152.112.0/20 7782 -107.152.128.0/22 55286 -107.152.132.0/23 55286 -107.152.134.0/24 55286 -107.152.135.0/24 55081 -107.152.136.0/21 55286 -107.152.144.0/21 55286 -107.152.152.0/23 55286 -107.152.154.0/24 55081 -107.152.155.0/24 55286 -107.152.156.0/24 55286 -107.152.157.0/24 36352 -107.152.158.0/23 55286 -107.152.160.0/20 55286 -107.152.176.0/22 55286 -107.152.180.0/24 55081 -107.152.181.0/24 55286 -107.152.182.0/23 55286 -107.152.184.0/23 36352 -107.152.186.0/23 55286 -107.152.188.0/23 55286 -107.152.190.0/24 36352 -107.152.191.0/24 55286 -107.152.192.0/20 55286 -107.152.208.0/24 55286 -107.152.209.0/24 36352 -107.152.210.0/23 55286 -107.152.212.0/23 55286 -107.152.214.0/24 36352 -107.152.215.0/24 55286 -107.152.216.0/24 55286 -107.152.217.0/24 55081 -107.152.218.0/24 36352 -107.152.219.0/24 55286 -107.152.220.0/22 55286 -107.152.224.0/22 55286 -107.152.228.0/23 55286 -107.152.230.0/24 36352 -107.152.231.0/24 55286 -107.152.232.0/23 55286 -107.152.234.0/24 55081 -107.152.235.0/24 55286 -107.152.236.0/22 55286 -107.152.240.0/20 55286 -107.153.0.0/16 2514 -107.154.1.0/24 19551 -107.154.2.0/23 19551 -107.154.4.0/22 19551 -107.154.8.0/21 19551 -107.154.16.0/20 19551 -107.154.32.0/21 19551 -107.154.40.0/22 19551 -107.154.44.0/24 19551 -107.154.50.0/23 19551 -107.154.52.0/24 19551 -107.154.60.0/22 19551 -107.154.65.0/24 19551 -107.154.66.0/24 19551 -107.154.70.0/24 19551 -107.154.72.0/22 19551 -107.154.76.0/23 19551 -107.154.79.0/24 19551 -107.154.80.0/23 19551 -107.154.84.0/22 19551 -107.154.88.0/23 19551 -107.154.90.0/24 19551 -107.154.94.0/24 19551 -107.154.97.0/24 19551 -107.154.98.0/23 19551 -107.154.100.0/22 19551 -107.154.104.0/21 19551 -107.154.112.0/20 19551 -107.154.128.0/19 19551 -107.154.160.0/20 19551 -107.154.176.0/21 19551 -107.154.184.0/23 19551 -107.154.189.0/24 19551 -107.154.192.0/21 19551 -107.154.200.0/22 19551 -107.154.205.0/24 19551 -107.154.206.0/23 19551 -107.154.208.0/23 19551 -107.154.210.0/24 19551 -107.154.212.0/22 19551 -107.154.216.0/22 19551 -107.154.220.0/23 19551 -107.154.224.0/20 19551 -107.154.240.0/21 19551 -107.154.248.0/23 19551 -107.154.251.0/24 19551 -107.154.252.0/24 19551 -107.155.0.0/21 21859 -107.155.8.0/22 21859 -107.155.12.0/23 21859 -107.155.14.0/24 21859 -107.155.15.0/24 135377 -107.155.16.0/21 21859 -107.155.24.0/23 21859 -107.155.26.0/24 4788 -107.155.27.0/24 21859 -107.155.28.0/24 4766 -107.155.29.0/24 21859 -107.155.30.0/24 3462 -107.155.31.0/24 21859 -107.155.32.0/21 21859 -107.155.40.0/23 21859 -107.155.42.0/24 21859 -107.155.43.0/24 135377 -107.155.44.0/24 21859 -107.155.45.0/24 135377 -107.155.46.0/23 21859 -107.155.48.0/24 135377 -107.155.49.0/24 21859 -107.155.50.0/24 135377 -107.155.51.0/24 137280 -107.155.52.0/23 137280 -107.155.54.0/24 21859 -107.155.55.0/24 135377 -107.155.56.0/24 135377 -107.155.57.0/24 3462 -107.155.58.0/23 21859 -107.155.60.0/24 135377 -107.155.61.0/24 21859 -107.155.62.0/23 21859 -107.155.64.0/21 54540 -107.155.72.0/23 54540 -107.155.74.0/24 29802 -107.155.75.0/24 54540 -107.155.76.0/24 29802 -107.155.77.0/24 54540 -107.155.78.0/23 54540 -107.155.80.0/24 54540 -107.155.81.0/24 29802 -107.155.82.0/24 29802 -107.155.83.0/24 54540 -107.155.84.0/23 54540 -107.155.86.0/24 54540 -107.155.87.0/24 394727 -107.155.88.0/23 29802 -107.155.91.0/24 29802 -107.155.92.0/24 29802 -107.155.93.0/24 54540 -107.155.94.0/24 54540 -107.155.95.0/24 29802 -107.155.96.0/23 54540 -107.155.98.0/23 29802 -107.155.100.0/24 29802 -107.155.108.0/24 394727 -107.155.110.0/24 29802 -107.155.111.0/24 54540 -107.155.112.0/23 54540 -107.155.115.0/24 54540 -107.155.116.0/24 394727 -107.155.117.0/24 54540 -107.155.118.0/24 54540 -107.155.119.0/24 29802 -107.155.120.0/23 54540 -107.155.122.0/23 29802 -107.155.124.0/24 29802 -107.155.126.0/23 29802 -107.155.128.0/18 19531 -107.155.192.0/21 19194 -107.155.200.0/21 46636 -107.155.208.0/21 4686 -107.155.216.0/22 29802 -107.155.220.0/22 4686 -107.155.224.0/22 45382 -107.155.228.0/22 29802 -107.155.232.0/21 29802 -107.155.240.0/22 17941 -107.155.245.0/24 19194 -107.155.246.0/24 19194 -107.155.247.0/24 29802 -107.155.248.0/22 17941 -107.155.252.0/22 29802 -107.156.0.0/15 7065 -107.158.0.0/18 62904 -107.158.64.0/20 62904 -107.158.80.0/21 62904 -107.158.88.0/22 62904 -107.158.92.0/22 49532 -107.158.96.0/19 62904 -107.158.128.0/18 62904 -107.158.192.0/20 62904 -107.158.208.0/21 62904 -107.158.216.0/21 49532 -107.158.224.0/19 62904 -107.159.0.0/16 1403 -107.160.0.0/16 40676 -107.161.0.0/24 22652 -107.161.1.0/24 23471 -107.161.2.0/24 23471 -107.161.3.0/24 22652 -107.161.4.0/22 22652 -107.161.8.0/21 22652 -107.161.16.0/20 3842 -107.161.35.0/24 39962 -107.161.36.0/22 39962 -107.161.40.0/23 16509 -107.161.48.0/23 25780 -107.161.50.0/24 395092 -107.161.51.0/24 136175 -107.161.56.0/21 1403 -107.161.64.0/20 32613 -107.161.80.0/20 8100 -107.161.96.0/20 63003 -107.161.112.0/20 46261 -107.161.128.0/20 26271 -107.161.148.0/24 36352 -107.161.150.0/24 396934 -107.161.151.0/24 64200 -107.161.153.0/24 64200 -107.161.154.0/24 27164 -107.161.155.0/24 13820 -107.161.156.0/22 33247 -107.161.160.0/23 58305 -107.161.162.0/24 58305 -107.161.163.0/24 29802 -107.161.164.0/22 58305 -107.161.168.0/21 58305 -107.161.176.0/20 33182 -107.161.192.0/20 54057 -107.161.208.0/20 6140 -107.161.224.0/20 22765 -107.161.240.0/20 27202 -107.162.0.0/19 55002 -107.162.32.0/21 55002 -107.162.40.0/24 50813 -107.162.41.0/24 55002 -107.162.42.0/23 55002 -107.162.44.0/22 55002 -107.162.48.0/20 55002 -107.162.64.0/18 55002 -107.162.128.0/17 55002 -107.163.0.0/16 20248 -107.164.0.0/15 18779 -107.166.0.0/16 393398 -107.167.0.0/20 46844 -107.167.16.0/21 46844 -107.167.24.0/22 46844 -107.167.28.0/24 46844 -107.167.32.0/19 8100 -107.167.64.0/19 53755 -107.167.104.0/21 21837 -107.167.116.0/22 21837 -107.167.122.0/23 21837 -107.167.124.0/24 21837 -107.167.126.0/23 21837 -107.167.128.0/19 36315 -107.167.160.0/19 15169 -107.167.192.0/19 30036 -107.167.224.0/21 393442 -107.167.232.0/21 22987 -107.167.242.0/23 25780 -107.167.244.0/22 25780 -107.167.248.0/21 1403 -107.170.0.0/16 14061 -107.171.0.0/17 63014 -107.171.128.0/17 5769 -107.172.0.0/16 36352 -107.173.0.0/19 36352 -107.173.32.0/20 36352 -107.173.48.0/21 36352 -107.173.56.0/24 20278 -107.173.57.0/24 36352 -107.173.58.0/23 20278 -107.173.60.0/23 36352 -107.173.62.0/23 20278 -107.173.64.0/23 20278 -107.173.66.0/24 20278 -107.173.67.0/24 36352 -107.173.68.0/23 20278 -107.173.70.0/23 36352 -107.173.72.0/22 20278 -107.173.76.0/24 20278 -107.173.77.0/24 36352 -107.173.78.0/24 20278 -107.173.79.0/24 36352 -107.173.80.0/20 36352 -107.173.96.0/19 36352 -107.173.128.0/21 36352 -107.173.136.0/23 36352 -107.173.138.0/23 20278 -107.173.140.0/22 36352 -107.173.144.0/20 36352 -107.173.160.0/19 36352 -107.173.192.0/18 36352 -107.174.0.0/20 36352 -107.174.16.0/21 20278 -107.174.24.0/22 36352 -107.174.28.0/24 36352 -107.174.29.0/24 20278 -107.174.30.0/24 36352 -107.174.31.0/24 20278 -107.174.32.0/19 36352 -107.174.64.0/21 36352 -107.174.72.0/22 20278 -107.174.76.0/24 36352 -107.174.77.0/24 20278 -107.174.78.0/23 36352 -107.174.80.0/20 36352 -107.174.96.0/23 36352 -107.174.98.0/23 20278 -107.174.100.0/22 36352 -107.174.104.0/21 36352 -107.174.112.0/20 36352 -107.174.128.0/22 36352 -107.174.132.0/23 36352 -107.174.134.0/23 20278 -107.174.136.0/21 36352 -107.174.144.0/20 36352 -107.174.160.0/21 36352 -107.174.168.0/23 20278 -107.174.170.0/23 36352 -107.174.172.0/22 36352 -107.174.176.0/20 36352 -107.174.192.0/18 36352 -107.175.0.0/22 36352 -107.175.4.0/23 20278 -107.175.6.0/23 36352 -107.175.8.0/24 36352 -107.175.9.0/24 20278 -107.175.10.0/23 20278 -107.175.12.0/22 36352 -107.175.16.0/20 36352 -107.175.32.0/21 36352 -107.175.40.0/22 20278 -107.175.44.0/22 36352 -107.175.48.0/20 36352 -107.175.64.0/19 36352 -107.175.96.0/21 20278 -107.175.104.0/22 20278 -107.175.108.0/22 36352 -107.175.112.0/21 36352 -107.175.120.0/23 20278 -107.175.122.0/23 36352 -107.175.124.0/22 36352 -107.175.128.0/21 36352 -107.175.136.0/23 36352 -107.175.138.0/23 20278 -107.175.140.0/22 36352 -107.175.144.0/20 36352 -107.175.160.0/21 20278 -107.175.168.0/22 20278 -107.175.172.0/24 36352 -107.175.173.0/24 20278 -107.175.174.0/23 20278 -107.175.176.0/23 20278 -107.175.178.0/24 36352 -107.175.179.0/24 20278 -107.175.180.0/22 36352 -107.175.184.0/21 36352 -107.175.192.0/24 20278 -107.175.193.0/24 36352 -107.175.194.0/23 36352 -107.175.196.0/22 36352 -107.175.200.0/24 20278 -107.175.201.0/24 36352 -107.175.202.0/23 36352 -107.175.204.0/22 36352 -107.175.208.0/20 36352 -107.175.224.0/20 36352 -107.175.240.0/21 36352 -107.175.248.0/22 36352 -107.175.252.0/24 20278 -107.175.253.0/24 36352 -107.175.254.0/23 36352 -107.178.0.0/21 26077 -107.178.8.0/23 26077 -107.178.11.0/24 26077 -107.178.12.0/22 26077 -107.178.16.0/22 19903 -107.178.20.0/24 63296 -107.178.21.0/24 19903 -107.178.22.0/23 19903 -107.178.24.0/22 19903 -107.178.28.0/24 63296 -107.178.30.0/24 7018 -107.178.31.0/24 63296 -107.178.32.0/20 6939 -107.178.48.0/22 394648 -107.178.52.0/23 394648 -107.178.54.0/24 26804 -107.178.55.0/24 47869 -107.178.56.0/21 47869 -107.178.64.0/18 53755 -107.178.128.0/21 26658 -107.178.136.0/22 22552 -107.178.140.0/22 8100 -107.178.144.0/20 26658 -107.178.160.0/19 26658 -107.178.192.0/18 15169 -107.179.0.0/18 46573 -107.179.64.0/19 46573 -107.179.96.0/21 46573 -107.179.104.0/24 46573 -107.179.105.0/24 397086 -107.179.106.0/23 46573 -107.179.108.0/22 46573 -107.179.112.0/20 46573 -107.179.128.0/17 5645 -107.180.0.0/17 26496 -107.180.128.0/21 29802 -107.180.136.0/21 12180 -107.180.144.0/23 21769 -107.180.146.0/23 11849 -107.180.148.0/22 29802 -107.180.160.0/19 29854 -107.180.192.0/20 29854 -107.180.224.0/19 26347 -107.181.0.0/20 53271 -107.181.16.0/21 46887 -107.181.24.0/23 46887 -107.181.26.0/24 20118 -107.181.27.0/24 46887 -107.181.28.0/24 46887 -107.181.29.0/24 30438 -107.181.30.0/24 13844 -107.181.31.0/24 46887 -107.181.32.0/20 393950 -107.181.48.0/20 23089 -107.181.64.0/20 53889 -107.181.80.0/23 55106 -107.181.86.0/23 55106 -107.181.94.0/24 55106 -107.181.96.0/21 22925 -107.181.104.0/24 22925 -107.181.105.0/24 63071 -107.181.106.0/23 22925 -107.181.108.0/22 22925 -107.181.112.0/24 39655 -107.181.113.0/24 16628 -107.181.114.0/23 16628 -107.181.116.0/22 16628 -107.181.120.0/21 16628 -107.181.133.0/24 40676 -107.181.134.0/23 40676 -107.181.136.0/24 58305 -107.181.137.0/24 43350 -107.181.138.0/24 23033 -107.181.144.0/22 58305 -107.181.150.0/24 812 -107.181.152.0/21 43350 -107.181.160.0/24 204957 -107.181.161.0/24 46562 -107.181.162.0/23 46562 -107.181.164.0/22 46562 -107.181.168.0/23 46562 -107.181.170.0/24 46562 -107.181.172.0/23 46562 -107.181.174.0/24 204957 -107.181.175.0/24 46562 -107.181.176.0/21 46562 -107.181.184.0/23 46562 -107.181.186.0/24 46562 -107.181.187.0/24 204957 -107.181.188.0/22 46562 -107.181.192.0/19 26271 -107.181.224.0/19 53850 -107.182.0.0/20 11070 -107.182.16.0/20 25820 -107.182.32.0/20 18632 -107.182.64.0/20 19799 -107.182.80.0/20 62943 -107.182.96.0/20 54979 -107.182.112.0/23 53889 -107.182.114.0/24 63008 -107.182.115.0/24 53559 -107.182.116.0/22 53889 -107.182.120.0/21 53889 -107.182.160.0/20 18450 -107.182.176.0/20 25820 -107.182.192.0/20 22534 -107.182.208.0/20 395846 -107.182.224.0/24 29854 -107.182.225.0/24 32780 -107.182.226.0/24 32780 -107.182.227.0/24 29854 -107.182.228.0/23 29854 -107.182.230.0/23 32780 -107.182.232.0/24 32780 -107.182.233.0/24 29854 -107.182.234.0/23 29854 -107.182.236.0/23 32780 -107.182.238.0/23 29854 -107.182.240.0/20 3257 -107.183.0.0/16 18978 -107.184.0.0/15 20001 -107.186.0.0/15 18779 -107.188.0.0/17 6128 -107.188.128.0/17 16591 -107.189.0.0/20 53667 -107.189.16.0/21 53667 -107.189.24.0/22 53667 -107.189.64.0/18 16276 -107.189.128.0/18 53755 -107.189.192.0/18 36493 -107.190.0.0/17 5645 -107.190.128.0/20 33182 -107.190.144.0/20 21565 -107.190.160.0/23 53889 -107.190.162.0/23 63008 -107.190.164.0/22 53889 -107.190.168.0/23 53889 -107.190.170.0/24 63008 -107.190.171.0/24 53889 -107.190.172.0/22 53889 -107.190.176.0/20 6364 -107.190.192.0/20 21921 -107.190.208.0/20 11404 -107.190.226.0/23 26658 -107.190.228.0/22 26658 -107.190.232.0/21 22552 -107.191.0.0/19 32808 -107.191.32.0/19 20473 -107.191.66.0/24 27170 -107.191.67.0/24 396348 -107.191.68.0/24 206695 -107.191.72.0/24 62642 -107.191.73.0/24 40655 -107.191.74.0/24 397850 -107.191.76.0/24 14724 -107.191.77.0/24 17378 -107.191.78.0/23 16904 -107.191.80.0/20 5050 -107.191.96.0/20 3842 -107.191.112.0/24 201106 -107.191.114.0/23 3842 -107.191.116.0/22 3842 -107.191.120.0/21 3842 -107.191.128.0/23 26127 -107.191.130.0/23 5650 -107.191.132.0/22 5650 -107.191.136.0/23 46690 -107.191.138.0/23 5650 -107.191.140.0/22 5650 -107.191.144.0/20 5650 -107.191.160.0/20 18897 -107.191.176.0/23 23005 -107.191.178.0/23 13791 -107.191.180.0/23 23352 -107.191.182.0/24 23352 -107.191.183.0/24 23005 -107.191.184.0/23 23352 -107.191.186.0/23 12179 -107.191.188.0/23 12179 -107.191.190.0/23 13791 -107.191.192.0/20 13534 -107.191.208.0/20 21351 -107.191.224.0/21 23317 -107.191.232.0/22 23317 -107.191.236.0/24 20055 -107.191.237.0/24 16713 -107.191.238.0/23 20055 -107.192.0.0/11 7018 -107.225.8.0/22 7018 -107.225.42.0/24 7018 -107.225.44.0/22 7018 -107.225.48.0/22 7018 -107.225.52.0/24 7018 -107.225.56.0/21 7018 -107.225.64.0/22 7018 -107.225.72.0/21 7018 -107.225.80.0/22 7018 -107.225.88.0/21 7018 -107.225.96.0/20 7018 -107.225.116.0/24 7018 -107.225.128.0/22 7018 -107.225.136.0/21 7018 -107.225.152.0/21 7018 -107.225.160.0/22 7018 -107.225.168.0/21 7018 -107.225.176.0/20 7018 -107.225.204.0/23 7018 -107.225.224.0/21 7018 -107.225.248.0/23 7018 -107.225.251.0/24 7018 -107.225.252.0/22 7018 -107.227.64.0/23 7018 -107.227.80.0/24 7018 -107.228.0.0/14 20057 -107.232.0.0/14 20057 -107.239.12.0/22 7287 -107.239.16.0/24 7287 -107.239.23.0/24 7287 -107.239.36.0/22 7287 -107.239.48.0/24 7287 -107.239.52.0/22 7287 -107.239.56.0/22 7287 -107.239.64.0/19 46164 -107.241.0.0/16 20057 -107.242.12.0/22 7287 -107.242.28.0/23 7287 -107.242.36.0/24 7287 -107.242.100.0/22 7287 -107.242.104.0/22 7287 -107.242.108.0/23 7287 -107.242.110.0/24 7287 -107.242.112.0/23 20057 -107.242.116.0/23 20057 -107.242.120.0/23 20057 -107.242.124.0/23 20057 -107.250.0.0/19 20057 -107.250.56.0/21 7018 -107.250.128.0/17 46164 -108.0.2.0/23 5650 -108.0.14.0/23 5650 -108.0.54.0/23 5650 -108.0.128.0/23 5650 -108.0.132.0/23 5650 -108.0.136.0/23 5650 -108.0.144.0/22 5650 -108.0.160.0/23 5650 -108.0.170.0/23 5650 -108.0.180.0/23 5650 -108.0.184.0/22 5650 -108.0.188.0/23 5650 -108.0.194.0/23 5650 -108.0.196.0/23 5650 -108.0.216.0/23 5650 -108.0.236.0/23 5650 -108.0.240.0/23 5650 -108.0.246.0/23 5650 -108.0.252.0/23 5650 -108.1.64.0/18 701 -108.1.128.0/19 701 -108.1.192.0/22 701 -108.1.196.0/23 701 -108.1.198.0/24 701 -108.1.199.0/24 5650 -108.1.200.0/21 701 -108.1.208.0/23 701 -108.1.210.0/24 701 -108.1.211.0/24 5650 -108.1.212.0/23 701 -108.1.214.0/24 5650 -108.1.215.0/24 701 -108.1.216.0/22 701 -108.1.220.0/24 701 -108.1.221.0/24 5650 -108.1.222.0/23 701 -108.1.224.0/19 701 -108.2.0.0/16 701 -108.3.64.0/18 701 -108.3.128.0/17 701 -108.4.0.0/14 701 -108.8.0.0/17 701 -108.8.192.0/18 701 -108.9.4.0/23 5650 -108.9.24.0/22 5650 -108.9.28.0/23 5650 -108.9.64.0/23 5650 -108.9.68.0/23 5650 -108.9.80.0/23 5650 -108.9.84.0/23 5650 -108.9.90.0/23 5650 -108.9.92.0/23 5650 -108.9.108.0/22 5650 -108.9.118.0/23 5650 -108.9.124.0/22 5650 -108.9.128.0/22 5650 -108.9.140.0/22 5650 -108.9.144.0/22 5650 -108.9.150.0/23 5650 -108.9.158.0/23 5650 -108.9.162.0/23 5650 -108.9.164.0/22 5650 -108.9.170.0/23 5650 -108.9.180.0/22 5650 -108.9.186.0/23 5650 -108.9.188.0/23 5650 -108.9.194.0/23 5650 -108.9.226.0/23 5650 -108.9.240.0/23 5650 -108.10.128.0/19 701 -108.11.0.0/18 701 -108.11.128.0/17 701 -108.12.0.0/18 701 -108.12.64.0/19 701 -108.12.96.0/20 701 -108.12.112.0/24 701 -108.12.113.0/24 5650 -108.12.114.0/23 701 -108.12.116.0/22 701 -108.12.120.0/21 701 -108.12.128.0/17 701 -108.13.22.0/23 5650 -108.13.42.0/23 5650 -108.13.44.0/23 5650 -108.13.64.0/22 5650 -108.13.80.0/23 5650 -108.13.84.0/23 5650 -108.13.98.0/23 5650 -108.13.100.0/23 5650 -108.13.120.0/23 5650 -108.13.124.0/23 5650 -108.13.136.0/23 5650 -108.13.144.0/23 5650 -108.13.164.0/23 5650 -108.13.170.0/23 5650 -108.13.188.0/22 5650 -108.13.196.0/23 5650 -108.13.228.0/22 5650 -108.13.240.0/23 5650 -108.13.246.0/23 5650 -108.14.0.0/16 701 -108.15.0.0/17 701 -108.15.160.0/19 701 -108.15.192.0/18 701 -108.16.0.0/16 701 -108.17.0.0/17 701 -108.17.128.0/19 701 -108.18.0.0/16 701 -108.19.0.0/16 5650 -108.20.0.0/15 701 -108.22.32.0/19 701 -108.22.64.0/19 701 -108.22.128.0/19 5650 -108.22.192.0/18 701 -108.23.0.0/23 5650 -108.23.6.0/23 5650 -108.23.8.0/23 5650 -108.23.22.0/23 5650 -108.23.30.0/23 5650 -108.23.38.0/23 5650 -108.23.48.0/22 5650 -108.23.52.0/23 5650 -108.23.58.0/23 5650 -108.23.60.0/22 5650 -108.23.68.0/22 5650 -108.23.76.0/22 5650 -108.23.82.0/23 5650 -108.23.86.0/23 5650 -108.23.94.0/23 5650 -108.23.102.0/23 5650 -108.23.104.0/22 5650 -108.23.120.0/23 5650 -108.23.128.0/22 5650 -108.23.142.0/23 5650 -108.23.146.0/23 5650 -108.23.150.0/23 5650 -108.23.154.0/23 5650 -108.23.160.0/22 5650 -108.23.168.0/23 5650 -108.23.174.0/23 5650 -108.23.186.0/23 5650 -108.23.200.0/23 5650 -108.23.208.0/23 5650 -108.23.214.0/23 5650 -108.23.240.0/23 5650 -108.23.246.0/23 5650 -108.23.248.0/23 5650 -108.23.254.0/23 5650 -108.24.0.0/13 701 -108.32.0.0/17 701 -108.32.128.0/22 5650 -108.32.132.0/23 5650 -108.32.134.0/23 701 -108.32.136.0/23 5650 -108.32.138.0/23 701 -108.32.140.0/22 701 -108.32.144.0/23 5650 -108.32.146.0/23 701 -108.32.148.0/22 701 -108.32.152.0/21 701 -108.32.160.0/22 701 -108.32.164.0/24 701 -108.32.165.0/24 5650 -108.32.166.0/23 701 -108.32.168.0/23 701 -108.32.170.0/24 701 -108.32.171.0/24 5650 -108.32.172.0/22 701 -108.32.176.0/20 701 -108.32.192.0/18 701 -108.33.8.0/23 5650 -108.33.18.0/23 5650 -108.33.22.0/23 5650 -108.33.26.0/23 5650 -108.33.30.0/23 5650 -108.33.32.0/23 5650 -108.33.50.0/23 5650 -108.33.66.0/23 5650 -108.33.72.0/23 5650 -108.33.90.0/23 5650 -108.33.94.0/23 5650 -108.33.102.0/23 5650 -108.33.150.0/23 5650 -108.33.152.0/23 5650 -108.33.164.0/23 5650 -108.33.180.0/23 5650 -108.33.192.0/22 5650 -108.33.198.0/23 5650 -108.33.204.0/23 5650 -108.33.212.0/22 5650 -108.33.222.0/23 5650 -108.33.224.0/23 5650 -108.33.228.0/23 5650 -108.33.232.0/22 5650 -108.33.238.0/23 5650 -108.33.254.0/23 701 -108.34.16.0/20 701 -108.34.32.0/19 701 -108.34.64.0/18 701 -108.34.128.0/17 701 -108.35.0.0/16 701 -108.36.0.0/16 701 -108.37.0.0/18 701 -108.37.64.0/21 701 -108.37.72.0/22 701 -108.37.76.0/24 701 -108.37.77.0/24 5650 -108.37.78.0/24 5650 -108.37.79.0/24 701 -108.37.80.0/20 701 -108.37.96.0/19 701 -108.37.128.0/17 701 -108.38.8.0/22 5650 -108.38.32.0/22 5650 -108.38.38.0/23 5650 -108.38.42.0/23 5650 -108.38.44.0/22 5650 -108.38.58.0/23 5650 -108.38.60.0/22 5650 -108.38.68.0/23 5650 -108.38.76.0/22 5650 -108.38.86.0/23 5650 -108.38.88.0/23 5650 -108.38.92.0/23 5650 -108.38.104.0/23 5650 -108.38.108.0/23 5650 -108.38.116.0/23 5650 -108.38.122.0/23 5650 -108.38.126.0/23 5650 -108.38.134.0/23 5650 -108.38.136.0/23 5650 -108.38.140.0/22 5650 -108.38.150.0/23 5650 -108.38.154.0/23 5650 -108.38.168.0/23 5650 -108.38.172.0/23 5650 -108.38.196.0/23 5650 -108.38.212.0/22 5650 -108.38.216.0/21 5650 -108.38.232.0/23 5650 -108.38.236.0/22 5650 -108.38.242.0/23 5650 -108.38.248.0/23 5650 -108.38.252.0/22 5650 -108.39.0.0/16 701 -108.40.0.0/17 701 -108.40.128.0/17 5650 -108.41.0.0/16 701 -108.42.0.0/19 701 -108.42.32.0/20 701 -108.42.48.0/24 5650 -108.42.49.0/24 701 -108.42.50.0/23 5650 -108.42.52.0/22 5650 -108.42.56.0/21 5650 -108.42.64.0/20 5650 -108.42.80.0/23 5650 -108.42.82.0/24 701 -108.42.83.0/24 5650 -108.42.84.0/22 701 -108.42.88.0/22 701 -108.42.92.0/23 5650 -108.42.94.0/24 701 -108.42.95.0/24 5650 -108.42.96.0/24 701 -108.42.97.0/24 5650 -108.42.98.0/23 701 -108.42.100.0/22 701 -108.42.104.0/21 701 -108.42.112.0/20 701 -108.42.128.0/22 701 -108.42.132.0/23 701 -108.42.134.0/24 701 -108.42.135.0/24 5650 -108.42.136.0/21 701 -108.42.144.0/22 701 -108.42.148.0/24 5650 -108.42.149.0/24 701 -108.42.150.0/23 701 -108.42.152.0/21 701 -108.42.160.0/19 701 -108.42.192.0/18 701 -108.43.128.0/17 5650 -108.44.0.0/15 701 -108.46.0.0/16 701 -108.47.0.0/20 5650 -108.47.34.0/23 5650 -108.47.52.0/23 5650 -108.47.56.0/23 5650 -108.47.62.0/23 5650 -108.47.76.0/22 5650 -108.47.80.0/22 5650 -108.47.94.0/23 5650 -108.47.106.0/23 5650 -108.47.108.0/23 5650 -108.47.112.0/23 5650 -108.47.122.0/23 5650 -108.47.132.0/23 5650 -108.47.136.0/23 5650 -108.47.142.0/23 5650 -108.47.144.0/22 5650 -108.47.150.0/23 5650 -108.47.154.0/23 5650 -108.47.156.0/23 5650 -108.47.170.0/23 5650 -108.47.172.0/23 5650 -108.47.178.0/23 5650 -108.47.182.0/23 5650 -108.47.186.0/23 5650 -108.47.200.0/23 5650 -108.47.208.0/21 5650 -108.47.216.0/23 5650 -108.47.220.0/23 5650 -108.47.230.0/23 5650 -108.47.232.0/22 5650 -108.47.238.0/23 5650 -108.48.0.0/14 701 -108.52.0.0/15 701 -108.54.0.0/16 701 -108.55.0.0/17 701 -108.55.128.0/19 701 -108.55.160.0/24 701 -108.55.161.0/24 8114 -108.55.162.0/24 701 -108.55.163.0/24 8114 -108.55.164.0/22 701 -108.55.168.0/21 701 -108.55.176.0/20 701 -108.55.192.0/18 701 -108.56.0.0/16 701 -108.57.0.0/17 701 -108.57.187.0/24 8115 -108.57.189.0/24 701 -108.57.190.0/23 8115 -108.57.192.0/18 701 -108.58.0.0/16 6128 -108.59.0.0/20 30633 -108.59.16.0/24 53940 -108.59.17.0/24 11096 -108.59.18.0/23 11096 -108.59.22.0/24 12060 -108.59.24.0/21 11096 -108.59.32.0/23 174 -108.59.34.0/23 32413 -108.59.36.0/22 32413 -108.59.40.0/21 32413 -108.59.48.0/20 46701 -108.59.64.0/20 19515 -108.59.80.0/20 15169 -108.59.96.0/20 40328 -108.59.112.0/20 11961 -108.59.128.0/20 36315 -108.59.144.0/20 13953 -108.59.161.0/24 15135 -108.59.162.0/23 15135 -108.59.164.0/23 15135 -108.59.174.0/23 33517 -108.59.176.0/20 53608 -108.59.192.0/21 19969 -108.59.204.0/23 395129 -108.59.206.0/23 19969 -108.59.208.0/20 33515 -108.59.224.0/24 3462 -108.59.225.0/24 15007 -108.59.240.0/20 26914 -108.60.0.0/19 26753 -108.60.32.0/19 23316 -108.60.64.0/19 13909 -108.60.96.0/19 33544 -108.60.128.0/20 29838 -108.60.144.0/21 29838 -108.60.152.0/22 29838 -108.60.156.0/23 29838 -108.60.158.0/24 29838 -108.60.159.0/24 394905 -108.60.160.0/19 803 -108.60.192.0/19 13354 -108.60.224.0/19 8014 -108.61.0.0/18 20473 -108.61.64.0/19 20473 -108.61.96.0/22 20473 -108.61.100.0/23 20473 -108.61.102.0/24 49367 -108.61.103.0/24 20473 -108.61.104.0/21 20473 -108.61.112.0/20 20473 -108.61.128.0/18 20473 -108.61.192.0/19 20473 -108.61.224.0/20 20473 -108.61.240.0/22 20473 -108.61.245.0/24 20473 -108.61.246.0/23 20473 -108.61.249.0/24 20473 -108.61.250.0/23 20473 -108.61.252.0/22 20473 -108.62.0.0/22 30633 -108.62.5.0/24 396190 -108.62.8.0/21 395954 -108.62.24.0/21 15003 -108.62.32.0/21 395954 -108.62.48.0/22 396362 -108.62.52.0/23 396362 -108.62.54.0/24 396362 -108.62.55.0/24 395954 -108.62.56.0/21 396190 -108.62.64.0/22 15003 -108.62.68.0/23 15003 -108.62.70.0/24 395954 -108.62.71.0/24 15003 -108.62.72.0/21 395954 -108.62.80.0/20 15003 -108.62.96.0/22 396362 -108.62.100.0/23 15003 -108.62.102.0/24 395954 -108.62.103.0/24 15003 -108.62.104.0/22 15003 -108.62.108.0/22 395954 -108.62.116.0/22 30633 -108.62.120.0/22 30633 -108.62.124.0/24 395954 -108.62.128.0/22 15003 -108.62.132.0/24 396362 -108.62.136.0/21 396362 -108.62.152.0/21 396190 -108.62.160.0/22 7203 -108.62.168.0/22 395954 -108.62.177.0/24 395954 -108.62.178.0/23 395954 -108.62.184.0/21 395954 -108.62.192.0/22 396190 -108.62.197.0/24 396190 -108.62.199.0/24 396190 -108.62.200.0/22 15003 -108.62.204.0/22 395954 -108.62.208.0/22 396362 -108.62.216.0/22 395954 -108.62.220.0/22 396190 -108.62.232.0/22 396362 -108.62.240.0/22 395954 -108.62.244.0/23 7203 -108.62.246.0/24 396362 -108.62.251.0/24 395954 -108.63.0.0/21 6407 -108.63.8.0/22 6407 -108.63.12.0/23 6407 -108.63.14.0/23 812 -108.63.16.0/23 812 -108.63.18.0/23 6407 -108.63.20.0/23 6407 -108.63.22.0/23 812 -108.63.24.0/22 812 -108.63.28.0/23 812 -108.63.30.0/23 6407 -108.63.32.0/19 6407 -108.63.64.0/18 6407 -108.63.128.0/17 6407 -108.64.0.0/13 7018 -108.72.0.0/14 7018 -108.76.0.0/15 7018 -108.78.0.0/16 7018 -108.79.0.0/18 7018 -108.79.64.0/18 25993 -108.79.128.0/20 25993 -108.79.144.0/21 7018 -108.79.152.0/23 25993 -108.79.154.0/23 7018 -108.79.156.0/22 7018 -108.79.160.0/19 7018 -108.79.192.0/18 7018 -108.80.0.0/12 7018 -108.96.0.0/15 10507 -108.102.0.0/15 10507 -108.104.0.0/15 10507 -108.110.0.0/15 10507 -108.112.0.0/15 10507 -108.114.0.0/16 10507 -108.116.128.0/17 10507 -108.117.0.0/16 10507 -108.119.0.0/16 10507 -108.121.0.0/16 10507 -108.122.0.0/16 10507 -108.123.128.0/17 10507 -108.124.0.0/17 10507 -108.125.0.0/16 10507 -108.127.0.0/16 10507 -108.128.0.0/13 16509 -108.147.64.0/18 20057 -108.147.128.0/18 20057 -108.153.0.0/17 20057 -108.160.0.0/20 53782 -108.160.16.0/20 803 -108.160.32.0/20 209 -108.160.48.0/20 17306 -108.160.64.0/20 46867 -108.160.80.0/24 25914 -108.160.81.0/24 11287 -108.160.82.0/24 25914 -108.160.83.0/24 11287 -108.160.84.0/22 25914 -108.160.88.0/24 25914 -108.160.89.0/24 11287 -108.160.90.0/23 11287 -108.160.92.0/22 11287 -108.160.96.0/22 54044 -108.160.100.0/24 54044 -108.160.102.0/23 54044 -108.160.112.0/20 32798 -108.160.128.0/20 20473 -108.160.144.0/20 63410 -108.160.160.0/20 19679 -108.160.176.0/21 22598 -108.160.184.0/22 22598 -108.160.188.0/22 46849 -108.160.192.0/21 46811 -108.160.200.0/23 46811 -108.160.202.0/24 396447 -108.160.203.0/24 46811 -108.160.204.0/22 46811 -108.160.208.0/20 36699 -108.160.224.0/20 30325 -108.160.240.0/20 812 -108.161.0.0/20 20058 -108.161.16.0/20 54154 -108.161.32.0/20 21724 -108.161.48.0/20 62643 -108.161.72.0/21 63368 -108.161.80.0/20 30036 -108.161.97.0/24 26427 -108.161.101.0/24 26427 -108.161.104.0/23 26427 -108.161.108.0/22 26427 -108.161.112.0/20 5645 -108.161.128.0/21 55045 -108.161.136.0/22 55045 -108.161.140.0/23 55045 -108.161.142.0/23 396839 -108.161.144.0/24 21581 -108.161.146.0/24 21581 -108.161.147.0/24 395831 -108.161.151.0/24 21581 -108.161.158.0/23 21581 -108.161.160.0/20 30236 -108.161.176.0/23 12989 -108.161.178.0/24 64259 -108.161.187.0/24 12989 -108.161.188.0/23 12989 -108.161.192.0/20 7385 -108.161.208.0/20 40805 -108.161.224.0/20 14244 -108.161.240.0/23 15133 -108.161.245.0/24 15133 -108.161.247.0/24 15133 -108.161.253.0/24 15133 -108.161.254.0/24 15133 -108.162.0.0/18 6128 -108.162.64.0/18 7992 -108.162.128.0/18 5645 -108.162.208.0/24 13335 -108.162.210.0/23 13335 -108.162.212.0/22 13335 -108.162.216.0/22 13335 -108.162.220.0/23 13335 -108.162.223.0/24 13335 -108.162.228.0/23 13335 -108.162.235.0/24 13335 -108.162.236.0/22 13335 -108.162.240.0/21 13335 -108.162.248.0/23 13335 -108.162.250.0/24 13335 -108.162.255.0/24 13335 -108.163.0.0/22 394855 -108.163.5.0/24 394855 -108.163.64.0/19 54084 -108.163.128.0/18 32613 -108.163.192.0/18 32475 -108.164.0.0/19 22282 -108.164.128.0/17 22282 -108.165.0.0/23 11798 -108.165.2.0/24 11798 -108.165.18.0/24 14978 -108.165.20.0/22 11798 -108.165.24.0/23 11798 -108.165.27.0/24 11798 -108.165.28.0/22 394752 -108.165.32.0/22 11798 -108.165.36.0/22 394752 -108.165.40.0/23 11798 -108.165.43.0/24 11798 -108.165.52.0/24 11798 -108.165.55.0/24 11798 -108.165.64.0/19 11798 -108.165.128.0/19 11798 -108.165.170.0/24 11798 -108.166.0.0/18 19994 -108.166.64.0/19 33070 -108.166.96.0/19 19994 -108.166.128.0/20 30036 -108.166.144.0/22 30036 -108.166.148.0/24 30036 -108.166.150.0/23 30036 -108.166.152.0/21 30036 -108.166.160.0/20 13354 -108.166.176.0/22 13354 -108.166.180.0/23 13354 -108.166.182.0/24 26405 -108.166.183.0/24 13354 -108.166.184.0/23 13354 -108.166.186.0/24 13354 -108.166.187.0/24 395434 -108.166.188.0/22 13354 -108.166.192.0/19 35916 -108.167.0.0/18 11427 -108.167.64.0/20 11427 -108.167.96.0/19 11955 -108.167.128.0/19 46606 -108.167.160.0/23 46606 -108.167.162.0/24 36351 -108.167.163.0/24 46606 -108.167.164.0/22 46606 -108.167.168.0/21 46606 -108.167.176.0/20 46606 -108.167.192.0/18 3663 -108.168.0.0/17 40788 -108.168.128.0/17 36351 -108.169.0.0/18 46375 -108.169.64.0/18 7065 -108.169.128.0/19 11426 -108.169.160.0/19 10796 -108.169.192.0/23 30036 -108.169.194.0/23 46887 -108.169.196.0/24 209 -108.169.197.0/24 54119 -108.169.198.0/24 6079 -108.169.199.0/24 54119 -108.169.200.0/23 54119 -108.169.202.0/24 7018 -108.169.203.0/24 54119 -108.169.208.0/23 62943 -108.169.210.0/23 30036 -108.169.212.0/24 6461 -108.169.214.0/24 6461 -108.169.215.0/24 7795 -108.169.219.0/24 30036 -108.169.220.0/22 54119 -108.169.224.0/24 54119 -108.169.227.0/24 27006 -108.169.228.0/23 62646 -108.169.230.0/24 54119 -108.169.232.0/22 3549 -108.169.236.0/22 209 -108.169.248.0/22 174 -108.170.0.0/18 20454 -108.170.64.0/18 6128 -108.170.128.0/18 40788 -108.170.192.0/18 15169 -108.171.0.0/19 33668 -108.171.32.0/24 18779 -108.171.33.0/24 396362 -108.171.34.0/24 396190 -108.171.35.0/24 394380 -108.171.36.0/24 395954 -108.171.37.0/24 396362 -108.171.38.0/24 396362 -108.171.39.0/24 30475 -108.171.40.0/23 19318 -108.171.42.0/24 18779 -108.171.43.0/24 396362 -108.171.44.0/24 396190 -108.171.45.0/24 394380 -108.171.46.0/24 395954 -108.171.47.0/24 396362 -108.171.48.0/23 19318 -108.171.50.0/23 30475 -108.171.52.0/24 18779 -108.171.53.0/24 396362 -108.171.54.0/24 396190 -108.171.55.0/24 394380 -108.171.56.0/24 395954 -108.171.59.0/24 395954 -108.171.60.0/24 394380 -108.171.61.0/24 396190 -108.171.62.0/24 18779 -108.171.63.0/24 396362 -108.171.64.0/19 11290 -108.171.96.0/21 22781 -108.171.104.0/21 12989 -108.171.112.0/20 12989 -108.171.128.0/21 25605 -108.171.136.0/22 25605 -108.171.140.0/24 603 -108.171.141.0/24 25605 -108.171.142.0/23 25605 -108.171.144.0/23 25605 -108.171.159.0/24 25605 -108.171.160.0/20 19994 -108.171.176.0/20 33070 -108.171.192.0/19 18450 -108.171.240.0/20 40676 -108.172.0.0/15 852 -108.174.0.0/23 14413 -108.174.2.0/23 55163 -108.174.4.0/24 55163 -108.174.5.0/24 40793 -108.174.6.0/23 40793 -108.174.8.0/24 14413 -108.174.10.0/23 14413 -108.174.12.0/23 14413 -108.174.16.0/20 812 -108.174.32.0/20 36315 -108.174.48.0/23 36352 -108.174.50.0/24 36352 -108.174.51.0/24 20278 -108.174.52.0/24 36352 -108.174.53.0/24 20278 -108.174.54.0/24 36352 -108.174.55.0/24 20278 -108.174.56.0/21 36352 -108.174.64.0/20 21719 -108.174.80.0/21 396122 -108.174.88.0/23 55182 -108.174.90.0/24 55182 -108.174.96.0/20 26827 -108.174.112.0/20 21632 -108.174.128.0/23 11851 -108.174.144.0/21 36351 -108.174.153.0/24 13768 -108.174.154.0/23 36351 -108.174.156.0/22 36351 -108.174.160.0/20 803 -108.174.176.0/20 13692 -108.174.192.0/20 54290 -108.174.208.0/24 54448 -108.174.224.0/21 15297 -108.174.237.0/24 15297 -108.174.238.0/23 15297 -108.174.240.0/20 18577 -108.175.0.0/20 8560 -108.175.16.0/23 33662 -108.175.18.0/23 174 -108.175.20.0/23 33662 -108.175.22.0/24 11492 -108.175.23.0/24 33258 -108.175.24.0/23 33258 -108.175.26.0/24 33258 -108.175.32.0/20 2906 -108.175.48.0/23 8987 -108.175.50.0/24 8987 -108.175.52.0/23 16509 -108.175.54.0/24 16509 -108.175.64.0/20 395172 -108.175.80.0/21 855 -108.175.88.0/22 855 -108.175.93.0/24 855 -108.175.96.0/23 174 -108.175.99.0/24 174 -108.175.106.0/23 263249 -108.175.108.0/23 263249 -108.175.110.0/24 174 -108.175.111.0/24 263249 -108.175.112.0/20 40773 -108.175.128.0/20 19397 -108.175.144.0/23 46606 -108.175.146.0/24 46606 -108.175.147.0/24 36351 -108.175.148.0/23 46606 -108.175.150.0/24 36351 -108.175.151.0/24 46606 -108.175.152.0/24 36351 -108.175.153.0/24 46606 -108.175.154.0/23 46606 -108.175.156.0/24 46606 -108.175.157.0/24 36351 -108.175.158.0/23 46606 -108.175.160.0/20 55081 -108.175.176.0/20 21565 -108.175.192.0/20 22646 -108.175.208.0/20 54706 -108.175.224.0/20 5645 -108.175.240.0/20 18812 -108.176.0.0/18 12271 -108.176.64.0/19 11351 -108.176.96.0/23 11351 -108.176.98.0/24 53623 -108.176.99.0/24 11351 -108.176.100.0/22 11351 -108.176.104.0/21 11351 -108.176.112.0/20 11351 -108.176.128.0/18 12271 -108.176.192.0/18 11351 -108.177.0.0/17 15169 -108.177.128.0/22 396190 -108.177.136.0/21 15003 -108.177.148.0/22 395954 -108.177.156.0/22 395954 -108.177.160.0/21 7203 -108.177.168.0/21 395954 -108.177.176.0/22 396190 -108.177.180.0/22 395954 -108.177.184.0/22 395954 -108.177.200.0/21 395954 -108.177.208.0/22 395954 -108.177.212.0/22 15003 -108.177.216.0/22 396190 -108.177.220.0/22 395954 -108.177.224.0/22 396362 -108.177.232.0/22 395954 -108.177.236.0/22 15003 -108.177.244.0/22 396190 -108.177.248.0/21 395954 -108.178.0.0/18 32475 -108.178.64.0/18 11427 -108.178.128.0/20 20001 -108.178.144.0/21 20001 -108.178.152.0/24 20001 -108.178.153.0/24 53502 -108.178.154.0/23 20001 -108.178.156.0/22 20001 -108.178.160.0/19 20001 -108.178.192.0/18 30036 -108.179.0.0/24 6128 -108.179.1.0/24 32431 -108.179.2.0/23 6128 -108.179.4.0/24 54498 -108.179.5.0/24 6128 -108.179.6.0/23 6128 -108.179.8.0/24 6128 -108.179.9.0/24 13652 -108.179.10.0/23 6128 -108.179.12.0/24 6128 -108.179.13.0/24 54004 -108.179.14.0/23 6128 -108.179.16.0/24 54004 -108.179.17.0/24 6128 -108.179.18.0/23 6128 -108.179.20.0/22 6128 -108.179.24.0/24 27371 -108.179.25.0/24 6128 -108.179.26.0/23 6128 -108.179.28.0/24 6128 -108.179.29.0/24 36800 -108.179.30.0/23 6128 -108.179.32.0/22 6128 -108.179.36.0/24 6128 -108.179.37.0/24 26897 -108.179.38.0/23 6128 -108.179.40.0/24 6128 -108.179.41.0/24 54004 -108.179.42.0/24 6128 -108.179.43.0/24 13458 -108.179.44.0/22 6128 -108.179.48.0/21 6128 -108.179.56.0/23 6128 -108.179.58.0/24 40513 -108.179.59.0/24 6128 -108.179.60.0/23 54004 -108.179.62.0/23 6128 -108.179.64.0/18 174 -108.179.128.0/18 73 -108.179.192.0/18 46606 -108.180.0.0/15 852 -108.182.0.0/16 12271 -108.183.0.0/16 11351 -108.184.0.0/15 20001 -108.186.0.0/16 54600 -108.187.0.0/17 395954 -108.187.128.0/18 395954 -108.187.192.0/20 395954 -108.187.208.0/22 395954 -108.187.212.0/24 395954 -108.187.213.0/24 396190 -108.187.214.0/23 395954 -108.187.216.0/21 395954 -108.187.224.0/19 395954 -108.188.0.0/14 33363 -108.192.0.0/16 7018 -108.193.0.0/20 7018 -108.193.16.0/22 7018 -108.193.20.0/24 7018 -108.193.21.0/24 4466 -108.193.22.0/23 7018 -108.193.24.0/21 7018 -108.193.32.0/19 7018 -108.193.64.0/18 7018 -108.193.128.0/17 7018 -108.194.0.0/15 7018 -108.196.0.0/14 7018 -108.200.0.0/13 7018 -108.208.0.0/20 7018 -108.208.16.0/21 7018 -108.208.24.0/23 7018 -108.208.26.0/25 7018 -108.208.26.128/27 7018 -108.208.26.160/30 7018 -108.208.26.164/31 7018 -108.208.26.167/32 7018 -108.208.26.168/29 7018 -108.208.26.176/28 7018 -108.208.26.192/26 7018 -108.208.27.0/24 7018 -108.208.28.0/22 7018 -108.208.32.0/19 7018 -108.208.64.0/18 7018 -108.208.128.0/17 7018 -108.209.0.0/16 7018 -108.210.0.0/15 7018 -108.212.0.0/14 7018 -108.216.0.0/13 7018 -108.224.0.0/14 7018 -108.228.0.0/16 7018 -108.229.0.0/17 36351 -108.229.128.0/17 7018 -108.230.0.0/15 7018 -108.232.0.0/13 7018 -108.240.0.0/12 7018 -109.0.0.0/11 15557 -109.32.0.0/13 15480 -109.40.0.0/13 3209 -109.48.0.0/14 2860 -109.52.0.0/14 16232 -109.56.0.0/14 44034 -109.60.0.0/17 31012 -109.60.128.0/17 47241 -109.61.0.0/17 197248 -109.61.128.0/17 12389 -109.62.0.0/17 20776 -109.62.128.0/19 12389 -109.62.160.0/21 12389 -109.62.168.0/22 29456 -109.62.172.0/22 12389 -109.62.176.0/20 12389 -109.62.192.0/19 12389 -109.62.224.0/20 12389 -109.62.240.0/21 12389 -109.62.248.0/22 29456 -109.62.252.0/23 29456 -109.62.254.0/24 29456 -109.62.255.0/24 199377 -109.63.0.0/21 51375 -109.63.32.0/21 51375 -109.63.48.0/20 51375 -109.63.128.0/17 12714 -109.64.0.0/14 8551 -109.68.12.0/22 50023 -109.68.16.0/22 35087 -109.68.20.0/24 35087 -109.68.21.0/24 62345 -109.68.22.0/23 35087 -109.68.24.0/21 49733 -109.68.32.0/21 20738 -109.68.40.0/21 25372 -109.68.48.0/21 8767 -109.68.57.0/24 27471 -109.68.58.0/23 27471 -109.68.60.0/23 27471 -109.68.63.0/24 27471 -109.68.64.0/22 29017 -109.68.68.0/23 29017 -109.68.70.0/24 29066 -109.68.71.0/24 29017 -109.68.72.0/21 49830 -109.68.80.0/21 50926 -109.68.88.0/21 25148 -109.68.96.0/21 8878 -109.68.104.0/21 49808 -109.68.112.0/21 44895 -109.68.120.0/21 8226 -109.68.128.0/21 196655 -109.68.136.0/21 20807 -109.68.144.0/21 199081 -109.68.152.0/21 39250 -109.68.160.0/21 39923 -109.68.168.0/21 42575 -109.68.176.0/21 197519 -109.68.184.0/22 31430 -109.68.188.0/23 31430 -109.68.190.0/23 52201 -109.68.192.0/21 41107 -109.68.200.0/23 34246 -109.68.202.0/24 49845 -109.68.203.0/24 34246 -109.68.204.0/24 34246 -109.68.208.0/22 44881 -109.68.216.0/21 24961 -109.68.224.0/21 25291 -109.68.232.0/21 43197 -109.68.240.0/21 34243 -109.68.248.0/21 49283 -109.69.0.0/21 21183 -109.69.8.0/21 49835 -109.69.16.0/21 38912 -109.69.24.0/21 34139 -109.69.32.0/21 50290 -109.69.48.0/21 57910 -109.69.56.0/21 209929 -109.69.64.0/21 49855 -109.69.72.0/21 57214 -109.69.80.0/21 39537 -109.69.88.0/21 8286 -109.69.96.0/21 41307 -109.69.112.0/21 50031 -109.69.120.0/21 56900 -109.69.128.0/21 43843 -109.69.136.0/21 1267 -109.69.144.0/21 198017 -109.69.160.0/21 196838 -109.69.168.0/21 8832 -109.69.176.0/22 39221 -109.69.180.0/24 39221 -109.69.183.0/24 39221 -109.69.184.0/21 50446 -109.69.192.0/21 49961 -109.69.200.0/23 20746 -109.69.205.0/24 20746 -109.69.208.0/21 196815 -109.69.216.0/21 6696 -109.69.224.0/21 42517 -109.69.232.0/21 57653 -109.69.240.0/21 9008 -109.69.248.0/21 20811 -109.70.0.0/21 60781 -109.70.9.0/24 60781 -109.70.10.0/23 60781 -109.70.12.0/22 60781 -109.70.16.0/21 60032 -109.70.24.0/21 48287 -109.70.32.0/21 16371 -109.70.40.0/21 42455 -109.70.48.0/21 48564 -109.70.58.0/24 198554 -109.70.64.0/22 9009 -109.70.68.0/22 209611 -109.70.72.0/21 44898 -109.70.80.0/21 50217 -109.70.96.0/22 1764 -109.70.100.0/24 208323 -109.70.101.0/24 1764 -109.70.102.0/23 1764 -109.70.104.0/24 24725 -109.70.106.0/23 24725 -109.70.111.0/24 29067 -109.70.112.0/23 44361 -109.70.114.0/24 44361 -109.70.115.0/24 8758 -109.70.116.0/22 8758 -109.70.120.0/21 15887 -109.70.128.0/21 45037 -109.70.136.0/21 31708 -109.70.144.0/21 25369 -109.70.152.0/22 50170 -109.70.160.0/21 39242 -109.70.168.0/21 25358 -109.70.176.0/21 198514 -109.70.184.0/21 44391 -109.70.192.0/21 48284 -109.70.200.0/21 49979 -109.70.208.0/21 34912 -109.70.216.0/21 41412 -109.70.224.0/21 6461 -109.70.232.0/22 200359 -109.70.240.0/21 31034 -109.70.248.0/21 196847 -109.71.8.0/23 50340 -109.71.10.0/23 49505 -109.71.12.0/22 49505 -109.71.16.0/22 16097 -109.71.20.0/22 21413 -109.71.24.0/24 19905 -109.71.25.0/24 29551 -109.71.26.0/23 35684 -109.71.28.0/22 29551 -109.71.32.0/21 197079 -109.71.40.0/21 24768 -109.71.48.0/22 8455 -109.71.52.0/23 8455 -109.71.54.0/23 202053 -109.71.64.0/23 50128 -109.71.66.0/24 57801 -109.71.67.0/24 50128 -109.71.68.0/22 50128 -109.71.80.0/22 50202 -109.71.84.0/23 50202 -109.71.87.0/24 50202 -109.71.88.0/21 25375 -109.71.96.0/21 49983 -109.71.104.0/21 31209 -109.71.112.0/21 50307 -109.71.120.0/21 6908 -109.71.128.0/22 50133 -109.71.132.0/23 50133 -109.71.134.0/24 50133 -109.71.136.0/21 198682 -109.71.144.0/21 64401 -109.71.152.0/22 208855 -109.71.156.0/22 47260 -109.71.160.0/21 34655 -109.71.168.0/22 50173 -109.71.172.0/23 50173 -109.71.174.0/24 50173 -109.71.175.0/24 3257 -109.71.176.0/21 31376 -109.71.184.0/21 47339 -109.71.192.0/21 39153 -109.71.200.0/22 3216 -109.71.204.0/22 8371 -109.71.208.0/21 50163 -109.71.216.0/21 31572 -109.71.224.0/21 50223 -109.71.232.0/21 196956 -109.71.240.0/21 43152 -109.71.248.0/22 201336 -109.71.252.0/22 134176 -109.72.0.0/20 49767 -109.72.16.0/20 49765 -109.72.32.0/20 12871 -109.72.48.0/21 35573 -109.72.56.0/22 35573 -109.72.64.0/20 49779 -109.72.80.0/20 48635 -109.72.96.0/20 43940 -109.72.112.0/20 34092 -109.72.128.0/23 15850 -109.72.130.0/24 15850 -109.72.132.0/24 15850 -109.72.134.0/23 15850 -109.72.136.0/23 15850 -109.72.138.0/24 15850 -109.72.143.0/24 15850 -109.72.144.0/21 198972 -109.72.152.0/22 199098 -109.72.160.0/20 207464 -109.72.176.0/22 8328 -109.72.180.0/23 8328 -109.72.182.0/24 8328 -109.72.184.0/21 8328 -109.72.192.0/20 48944 -109.72.208.0/20 49823 -109.72.224.0/20 31370 -109.72.240.0/20 49863 -109.73.0.0/21 31261 -109.73.8.0/22 31261 -109.73.12.0/23 31261 -109.73.14.0/24 51219 -109.73.15.0/24 50040 -109.73.16.0/20 196714 -109.73.32.0/20 29226 -109.73.48.0/21 204119 -109.73.56.0/21 9022 -109.73.64.0/20 20860 -109.73.80.0/20 15605 -109.73.96.0/20 24651 -109.73.112.0/20 24958 -109.73.128.0/22 49674 -109.73.132.0/22 210298 -109.73.136.0/22 210309 -109.73.140.0/22 47706 -109.73.144.0/20 29056 -109.73.160.0/20 33182 -109.73.176.0/20 49924 -109.73.200.0/24 203883 -109.73.208.0/20 196843 -109.73.224.0/22 32475 -109.73.228.0/24 36351 -109.73.229.0/24 32475 -109.73.230.0/23 32475 -109.73.232.0/23 32475 -109.73.234.0/24 36351 -109.73.235.0/24 32475 -109.73.236.0/22 32475 -109.73.240.0/20 51336 -109.74.0.0/20 43948 -109.74.16.0/22 5432 -109.74.20.0/22 31463 -109.74.24.0/23 204179 -109.74.28.0/22 197706 -109.74.32.0/20 30873 -109.74.48.0/20 50261 -109.74.64.0/20 24722 -109.74.80.0/23 31167 -109.74.82.0/23 206874 -109.74.84.0/23 57809 -109.74.86.0/24 60718 -109.74.87.0/24 31167 -109.74.88.0/23 31167 -109.74.90.0/24 31167 -109.74.91.0/24 57809 -109.74.92.0/22 31167 -109.74.96.0/21 44061 -109.74.104.0/22 44061 -109.74.108.0/24 204444 -109.74.109.0/24 44061 -109.74.110.0/23 44061 -109.74.112.0/20 41976 -109.74.128.0/20 8595 -109.74.144.0/20 29405 -109.74.160.0/20 48642 -109.74.176.0/20 8478 -109.74.192.0/20 63949 -109.74.208.0/20 43782 -109.74.224.0/20 58224 -109.74.240.0/21 50300 -109.74.248.0/22 50300 -109.74.252.0/24 50300 -109.74.254.0/23 50300 -109.75.0.0/21 50975 -109.75.16.0/20 25394 -109.75.32.0/23 197834 -109.75.34.0/23 44395 -109.75.36.0/22 44395 -109.75.40.0/21 44395 -109.75.48.0/21 47139 -109.75.56.0/22 47139 -109.75.60.0/24 47139 -109.75.61.0/24 48887 -109.75.62.0/24 48887 -109.75.63.0/24 47139 -109.75.64.0/20 59931 -109.75.80.0/20 9063 -109.75.96.0/22 197637 -109.75.100.0/22 8220 -109.75.104.0/24 6830 -109.75.105.0/24 8220 -109.75.106.0/23 197637 -109.75.112.0/22 13113 -109.75.116.0/22 35719 -109.75.120.0/21 35719 -109.75.128.0/20 39578 -109.75.144.0/20 12767 -109.75.160.0/21 20860 -109.75.168.0/22 29550 -109.75.172.0/24 31727 -109.75.173.0/24 29550 -109.75.174.0/24 29550 -109.75.175.0/24 31727 -109.75.176.0/20 47215 -109.75.192.0/20 59815 -109.75.208.0/20 42652 -109.75.224.0/21 29422 -109.75.232.0/21 15830 -109.75.240.0/20 12714 -109.76.0.0/14 15502 -109.80.0.0/15 5610 -109.82.0.0/15 35819 -109.84.0.0/15 3209 -109.86.0.0/15 13188 -109.88.0.0/15 12392 -109.90.0.0/15 6830 -109.92.0.0/15 8400 -109.94.0.0/19 50009 -109.94.32.0/19 39886 -109.94.64.0/19 50060 -109.94.96.0/22 31716 -109.94.100.0/23 39377 -109.94.102.0/23 203487 -109.94.108.0/24 206580 -109.94.109.0/24 206034 -109.94.110.0/24 44901 -109.94.111.0/24 204753 -109.94.112.0/21 203877 -109.94.120.0/22 203877 -109.94.124.0/23 203877 -109.94.126.0/24 206580 -109.94.127.0/24 39377 -109.94.128.0/21 50063 -109.94.136.0/21 39060 -109.94.144.0/20 210176 -109.94.160.0/24 30103 -109.94.166.0/23 49099 -109.94.168.0/23 136782 -109.94.170.0/24 136782 -109.94.171.0/24 43092 -109.94.172.0/22 35913 -109.94.176.0/20 44895 -109.94.192.0/20 12958 -109.94.208.0/24 9002 -109.94.209.0/24 202376 -109.94.210.0/24 49505 -109.94.211.0/24 34665 -109.94.212.0/22 59447 -109.94.216.0/22 20655 -109.94.220.0/22 35913 -109.94.224.0/22 203877 -109.94.232.0/21 51052 -109.94.240.0/20 50086 -109.95.0.0/21 198984 -109.95.8.0/22 34358 -109.95.12.0/23 34358 -109.95.14.0/24 34358 -109.95.15.0/24 56514 -109.95.16.0/21 49325 -109.95.24.0/21 196730 -109.95.32.0/21 31725 -109.95.40.0/21 44827 -109.95.48.0/21 35352 -109.95.64.0/21 50269 -109.95.72.0/21 42511 -109.95.80.0/21 50241 -109.95.88.0/21 50247 -109.95.96.0/21 49120 -109.95.104.0/21 50342 -109.95.112.0/21 50467 -109.95.120.0/24 43661 -109.95.124.0/22 204928 -109.95.129.0/24 50365 -109.95.130.0/23 50365 -109.95.132.0/22 50365 -109.95.136.0/21 50366 -109.95.144.0/21 50467 -109.95.152.0/21 48896 -109.95.160.0/21 50406 -109.95.168.0/21 43420 -109.95.176.0/21 196891 -109.95.184.0/22 50419 -109.95.188.0/23 50419 -109.95.190.0/24 50419 -109.95.191.0/24 16509 -109.95.192.0/21 50442 -109.95.200.0/21 50584 -109.95.208.0/21 50448 -109.95.216.0/21 50471 -109.95.224.0/21 12714 -109.95.232.0/21 50231 -109.95.240.0/21 5464 -109.95.248.0/21 48320 -109.96.0.0/13 9050 -109.104.0.0/19 33885 -109.104.32.0/19 16097 -109.104.64.0/19 20738 -109.104.96.0/19 25577 -109.104.128.0/19 48265 -109.104.160.0/19 31272 -109.104.192.0/19 12436 -109.104.224.0/21 48500 -109.104.240.0/22 49265 -109.104.252.0/22 60706 -109.105.0.0/19 25274 -109.105.32.0/19 12570 -109.105.64.0/19 33894 -109.105.96.0/20 2603 -109.105.112.0/21 2603 -109.105.120.0/22 2603 -109.105.124.0/22 39590 -109.105.128.0/20 49813 -109.105.144.0/21 49813 -109.105.152.0/22 51497 -109.105.156.0/23 51497 -109.105.159.0/24 57231 -109.105.160.0/19 34038 -109.105.192.0/19 43179 -109.105.224.0/24 8544 -109.105.225.0/24 16229 -109.105.226.0/23 16229 -109.105.228.0/22 16229 -109.105.232.0/22 16229 -109.105.236.0/24 16229 -109.105.237.0/24 8544 -109.105.238.0/24 8544 -109.105.239.0/24 16229 -109.105.240.0/22 16229 -109.105.244.0/23 16229 -109.105.246.0/24 16229 -109.105.247.0/24 8544 -109.105.248.0/24 8544 -109.105.249.0/24 16229 -109.105.250.0/23 16229 -109.105.252.0/23 16229 -109.105.254.0/24 16229 -109.105.255.0/24 8544 -109.106.0.0/24 20771 -109.106.1.0/24 61317 -109.106.2.0/23 61317 -109.106.4.0/22 197177 -109.106.12.0/22 5432 -109.106.16.0/22 206123 -109.106.20.0/22 48430 -109.106.24.0/22 210051 -109.106.28.0/22 201877 -109.106.32.0/20 42346 -109.106.48.0/20 15600 -109.106.64.0/19 12684 -109.106.96.0/19 35226 -109.106.128.0/21 43727 -109.106.136.0/21 44604 -109.106.144.0/20 44604 -109.106.160.0/20 48635 -109.106.176.0/20 12859 -109.106.192.0/21 31163 -109.106.200.0/22 47218 -109.106.207.0/24 47218 -109.106.209.0/24 47218 -109.106.213.0/24 47218 -109.106.214.0/23 47218 -109.106.216.0/23 47218 -109.106.218.0/24 47218 -109.106.224.0/24 199493 -109.106.225.0/24 15958 -109.106.226.0/23 15958 -109.106.228.0/24 15958 -109.106.229.0/24 197423 -109.106.230.0/24 197423 -109.106.231.0/24 15958 -109.106.232.0/24 15958 -109.106.233.0/24 197423 -109.106.234.0/23 197423 -109.106.236.0/23 197423 -109.106.238.0/23 15958 -109.106.240.0/20 6700 -109.107.0.0/19 29314 -109.107.32.0/19 51059 -109.107.64.0/22 34295 -109.107.68.0/23 34295 -109.107.70.0/23 13306 -109.107.72.0/21 31029 -109.107.80.0/21 34295 -109.107.88.0/21 31029 -109.107.96.0/19 50977 -109.107.160.0/19 49973 -109.107.192.0/19 16019 -109.107.224.0/19 9038 -109.108.0.0/19 16086 -109.108.32.0/21 12389 -109.108.40.0/24 207548 -109.108.41.0/24 12389 -109.108.42.0/23 12389 -109.108.44.0/22 12389 -109.108.48.0/20 12389 -109.108.64.0/19 34056 -109.108.96.0/19 196845 -109.108.128.0/19 61323 -109.108.160.0/19 50810 -109.108.192.0/20 49455 -109.108.208.0/23 49455 -109.108.210.0/23 41164 -109.108.212.0/22 49455 -109.108.216.0/21 49455 -109.108.224.0/19 49223 -109.109.0.0/19 50050 -109.109.32.0/19 39308 -109.109.64.0/19 31726 -109.109.96.0/19 30925 -109.109.128.0/20 205072 -109.109.144.0/20 8553 -109.109.160.0/21 29129 -109.109.168.0/22 29129 -109.109.172.0/24 29129 -109.109.173.0/24 24916 -109.109.174.0/23 24916 -109.109.176.0/21 24916 -109.109.184.0/21 29129 -109.109.199.0/24 50091 -109.109.200.0/21 12843 -109.109.208.0/21 21332 -109.109.216.0/23 21332 -109.109.218.0/24 21332 -109.109.224.0/19 34920 -109.110.0.0/19 20910 -109.110.32.0/19 196949 -109.110.64.0/19 35816 -109.110.99.0/24 35197 -109.110.100.0/23 35197 -109.110.128.0/19 50181 -109.110.160.0/19 50530 -109.110.192.0/19 6830 -109.110.224.0/19 35432 -109.111.0.0/19 40993 -109.111.64.0/19 38917 -109.111.96.0/19 6752 -109.111.128.0/19 31214 -109.111.160.0/20 40995 -109.111.176.0/20 34757 -109.111.192.0/19 42973 -109.111.224.0/20 9125 -109.111.240.0/23 9125 -109.111.242.0/24 28964 -109.111.243.0/24 9125 -109.111.244.0/23 9125 -109.111.246.0/24 9125 -109.111.247.0/24 28964 -109.111.248.0/21 9125 -109.112.0.0/13 30722 -109.120.0.0/20 47165 -109.120.16.0/22 47165 -109.120.20.0/24 47165 -109.120.21.0/24 15870 -109.120.22.0/23 47165 -109.120.24.0/21 47165 -109.120.32.0/19 47165 -109.120.64.0/18 12684 -109.120.128.0/19 30968 -109.120.160.0/21 30968 -109.120.168.0/22 30968 -109.120.172.0/23 30968 -109.120.174.0/24 202155 -109.120.175.0/24 30968 -109.120.176.0/21 30968 -109.120.184.0/22 30968 -109.120.188.0/22 202155 -109.120.192.0/18 34569 -109.121.0.0/18 9125 -109.121.64.0/18 8771 -109.121.128.0/24 209362 -109.121.132.0/24 39246 -109.121.133.0/24 8628 -109.121.135.0/24 209156 -109.121.136.0/21 39396 -109.121.144.0/23 39396 -109.121.146.0/24 41313 -109.121.152.0/24 47872 -109.121.153.0/24 31287 -109.121.154.0/24 39396 -109.121.159.0/24 41292 -109.121.160.0/21 41313 -109.121.175.0/24 206129 -109.121.176.0/20 61975 -109.121.192.0/24 21415 -109.121.193.0/24 43205 -109.121.194.0/23 43205 -109.121.196.0/22 43205 -109.121.200.0/23 43205 -109.121.202.0/23 21415 -109.121.204.0/22 43205 -109.121.208.0/20 43205 -109.121.224.0/20 43205 -109.121.240.0/21 43205 -109.121.248.0/22 43205 -109.121.252.0/23 43205 -109.121.254.0/23 21415 -109.122.0.0/18 12872 -109.122.64.0/18 41937 -109.122.128.0/18 49902 -109.122.192.0/21 49872 -109.122.201.0/24 49872 -109.122.202.0/23 49872 -109.122.204.0/22 49872 -109.122.208.0/20 49872 -109.122.240.0/21 44400 -109.122.248.0/23 44400 -109.122.250.0/23 56503 -109.122.252.0/22 61248 -109.123.0.0/18 58056 -109.123.64.0/18 13213 -109.123.128.0/18 5567 -109.123.192.0/21 15685 -109.123.200.0/23 21430 -109.123.202.0/23 15685 -109.123.204.0/24 21430 -109.123.205.0/24 15685 -109.123.206.0/23 15685 -109.123.208.0/22 15685 -109.123.212.0/23 21430 -109.123.214.0/23 15685 -109.123.216.0/21 15685 -109.123.224.0/23 15685 -109.123.226.0/24 21430 -109.123.227.0/24 15685 -109.123.228.0/22 15685 -109.123.232.0/21 15685 -109.123.240.0/20 15685 -109.124.0.0/18 34145 -109.124.64.0/18 20632 -109.124.128.0/18 45011 -109.124.192.0/19 35032 -109.124.224.0/20 35032 -109.124.240.0/21 35032 -109.124.248.0/22 35032 -109.124.252.0/23 35032 -109.125.0.0/18 15751 -109.125.64.0/18 35244 -109.125.128.0/19 49100 -109.125.160.0/20 49100 -109.125.176.0/22 49100 -109.125.180.0/23 50530 -109.125.182.0/23 49100 -109.125.184.0/21 49100 -109.125.192.0/19 44692 -109.125.224.0/20 44692 -109.125.240.0/21 44692 -109.125.248.0/22 44692 -109.125.252.0/24 203567 -109.126.0.0/18 42038 -109.126.64.0/18 25255 -109.126.128.0/18 44087 -109.126.192.0/18 12389 -109.127.0.0/18 50274 -109.127.64.0/18 21277 -109.127.128.0/18 12389 -109.127.192.0/18 2107 -109.128.0.0/12 5432 -109.144.0.0/12 2856 -109.160.0.0/21 12615 -109.160.8.0/23 12615 -109.160.10.0/24 201254 -109.160.11.0/24 12615 -109.160.12.0/22 12615 -109.160.16.0/20 41019 -109.160.32.0/21 41019 -109.160.40.0/22 41019 -109.160.44.0/22 12615 -109.160.48.0/22 50013 -109.160.52.0/22 39251 -109.160.56.0/24 49040 -109.160.57.0/24 12615 -109.160.58.0/24 12615 -109.160.59.0/24 49040 -109.160.60.0/23 44525 -109.160.62.0/24 59463 -109.160.63.0/24 12615 -109.160.64.0/24 12615 -109.160.65.0/24 57344 -109.160.66.0/23 12615 -109.160.68.0/24 49188 -109.160.69.0/24 12615 -109.160.70.0/24 50360 -109.160.71.0/24 200628 -109.160.72.0/23 44967 -109.160.74.0/24 44967 -109.160.75.0/24 12615 -109.160.76.0/23 47849 -109.160.78.0/23 49188 -109.160.80.0/24 49188 -109.160.81.0/24 12615 -109.160.82.0/23 12615 -109.160.84.0/23 12615 -109.160.86.0/24 44525 -109.160.87.0/24 39251 -109.160.88.0/22 39251 -109.160.96.0/23 205352 -109.160.98.0/23 12615 -109.160.100.0/22 48917 -109.160.104.0/21 39251 -109.160.112.0/24 35773 -109.160.113.0/24 12615 -109.160.114.0/23 12615 -109.160.116.0/23 43561 -109.160.118.0/24 42878 -109.160.119.0/24 12615 -109.160.120.0/21 12615 -109.160.128.0/17 12400 -109.161.0.0/19 12389 -109.161.32.0/20 12389 -109.161.48.0/24 13118 -109.161.49.0/24 12389 -109.161.50.0/23 12389 -109.161.52.0/24 13118 -109.161.53.0/24 12389 -109.161.54.0/23 12389 -109.161.56.0/24 12958 -109.161.57.0/24 13118 -109.161.58.0/24 12389 -109.161.59.0/24 13118 -109.161.60.0/22 12389 -109.161.64.0/18 12389 -109.161.128.0/17 31452 -109.162.0.0/17 15895 -109.162.128.0/17 25124 -109.163.0.0/17 3292 -109.163.128.0/18 9146 -109.163.192.0/22 43994 -109.163.196.0/24 43994 -109.163.198.0/23 43994 -109.163.200.0/21 57280 -109.163.208.0/21 29243 -109.163.216.0/21 51645 -109.163.224.0/20 3223 -109.163.240.0/21 56377 -109.164.0.0/18 49931 -109.164.64.0/19 51420 -109.164.96.0/20 44489 -109.164.112.0/22 44489 -109.164.116.0/22 49931 -109.164.120.0/24 49931 -109.164.121.0/24 44489 -109.164.122.0/23 44489 -109.164.124.0/22 44489 -109.164.128.0/17 3303 -109.165.0.0/17 12389 -109.165.128.0/17 25144 -109.166.0.0/19 25019 -109.166.32.0/22 49074 -109.166.36.0/22 9009 -109.166.40.0/21 50200 -109.166.48.0/21 60614 -109.166.56.0/22 21299 -109.166.60.0/23 21299 -109.166.62.0/24 21299 -109.166.63.0/24 35566 -109.166.64.0/21 21299 -109.166.72.0/22 21299 -109.166.76.0/24 21299 -109.166.77.0/24 35566 -109.166.78.0/23 21299 -109.166.80.0/22 21299 -109.166.84.0/24 35566 -109.166.85.0/24 21299 -109.166.86.0/23 21299 -109.166.88.0/22 25019 -109.166.96.0/19 25019 -109.166.128.0/18 8953 -109.166.192.0/19 8953 -109.166.224.0/20 8953 -109.166.240.0/22 8953 -109.166.244.0/24 201387 -109.166.245.0/24 8953 -109.166.246.0/23 8953 -109.166.248.0/21 8953 -109.167.0.0/21 29119 -109.167.8.0/22 29119 -109.167.12.0/24 209835 -109.167.13.0/24 29119 -109.167.14.0/23 29119 -109.167.16.0/20 29119 -109.167.32.0/20 29119 -109.167.48.0/21 29119 -109.167.56.0/23 29119 -109.167.58.0/23 48427 -109.167.60.0/22 29119 -109.167.64.0/23 48427 -109.167.66.0/23 29119 -109.167.68.0/22 29119 -109.167.72.0/21 29119 -109.167.80.0/21 29119 -109.167.88.0/22 29119 -109.167.92.0/23 48427 -109.167.94.0/23 29119 -109.167.96.0/19 29119 -109.167.128.0/18 25408 -109.167.192.0/20 25408 -109.167.208.0/21 25408 -109.167.216.0/22 25408 -109.167.220.0/23 25408 -109.167.222.0/23 48201 -109.167.224.0/20 25408 -109.167.240.0/21 25408 -109.167.248.0/23 25408 -109.167.250.0/24 25408 -109.167.251.0/24 201515 -109.167.252.0/24 60913 -109.167.253.0/24 25408 -109.167.254.0/24 199658 -109.167.255.0/24 25408 -109.168.0.0/17 5602 -109.168.128.0/22 12683 -109.168.132.0/22 12389 -109.168.136.0/23 12389 -109.168.138.0/23 12683 -109.168.140.0/24 12683 -109.168.141.0/24 12389 -109.168.142.0/24 12389 -109.168.143.0/24 12683 -109.168.144.0/21 12683 -109.168.152.0/22 12683 -109.168.156.0/23 12389 -109.168.158.0/24 12389 -109.168.159.0/24 12683 -109.168.160.0/24 12683 -109.168.161.0/24 12389 -109.168.162.0/24 12683 -109.168.163.0/24 12389 -109.168.164.0/24 12389 -109.168.165.0/24 12683 -109.168.166.0/24 12683 -109.168.167.0/24 12389 -109.168.168.0/24 12389 -109.168.169.0/24 12683 -109.168.170.0/23 12389 -109.168.172.0/22 12683 -109.168.176.0/24 12683 -109.168.177.0/24 12389 -109.168.178.0/23 12683 -109.168.180.0/23 12683 -109.168.182.0/24 12389 -109.168.183.0/24 12683 -109.168.184.0/24 12389 -109.168.185.0/24 12683 -109.168.186.0/23 12389 -109.168.188.0/22 12389 -109.168.192.0/22 12683 -109.168.196.0/22 12389 -109.168.200.0/24 12389 -109.168.201.0/24 12683 -109.168.202.0/23 12683 -109.168.204.0/24 12389 -109.168.205.0/24 12683 -109.168.206.0/24 12389 -109.168.207.0/24 12683 -109.168.208.0/22 12389 -109.168.212.0/24 12683 -109.168.213.0/24 12389 -109.168.214.0/24 12683 -109.168.215.0/24 12389 -109.168.216.0/23 12389 -109.168.218.0/24 12683 -109.168.219.0/24 12389 -109.168.220.0/22 12389 -109.168.224.0/19 12389 -109.169.0.0/19 20860 -109.169.32.0/20 20860 -109.169.48.0/21 20860 -109.169.56.0/22 20860 -109.169.60.0/23 20860 -109.169.62.0/24 20860 -109.169.63.0/24 25108 -109.169.64.0/21 20860 -109.169.72.0/24 25108 -109.169.73.0/24 30496 -109.169.74.0/23 20860 -109.169.76.0/22 20860 -109.169.80.0/24 203833 -109.169.81.0/24 20860 -109.169.82.0/23 20860 -109.169.84.0/22 20860 -109.169.88.0/21 20860 -109.169.96.0/19 29300 -109.169.128.0/17 12389 -109.170.0.0/17 12714 -109.170.128.0/17 5413 -109.171.0.0/23 15774 -109.171.2.0/23 21127 -109.171.4.0/23 21127 -109.171.6.0/24 21127 -109.171.7.0/24 15774 -109.171.8.0/21 21127 -109.171.16.0/21 21127 -109.171.24.0/22 21127 -109.171.28.0/24 21127 -109.171.29.0/24 15774 -109.171.30.0/23 21127 -109.171.32.0/20 21127 -109.171.48.0/23 15774 -109.171.50.0/23 21127 -109.171.52.0/24 15774 -109.171.53.0/24 21127 -109.171.54.0/23 21127 -109.171.56.0/23 21127 -109.171.58.0/24 15774 -109.171.59.0/24 21127 -109.171.60.0/22 21127 -109.171.64.0/24 21127 -109.171.65.0/24 15774 -109.171.66.0/23 21127 -109.171.68.0/23 21127 -109.171.70.0/24 15774 -109.171.71.0/24 21127 -109.171.72.0/22 21127 -109.171.76.0/24 15774 -109.171.77.0/24 21127 -109.171.78.0/23 21127 -109.171.80.0/20 21127 -109.171.96.0/22 21127 -109.171.100.0/23 21127 -109.171.102.0/24 21127 -109.171.103.0/24 15774 -109.171.104.0/24 21127 -109.171.105.0/24 15774 -109.171.106.0/24 21127 -109.171.107.0/24 15774 -109.171.108.0/22 21127 -109.171.112.0/20 21127 -109.171.128.0/17 50999 -109.172.0.0/18 41691 -109.172.64.0/20 41691 -109.172.96.0/19 41691 -109.172.128.0/17 16010 -109.173.0.0/17 42610 -109.173.128.0/17 13110 -109.174.0.0/17 30922 -109.174.128.0/17 4589 -109.175.0.0/17 9146 -109.175.128.0/17 42689 -109.176.0.0/16 12513 -109.177.0.0/16 5384 -109.178.0.0/16 29247 -109.179.0.0/16 2119 -109.180.0.0/15 12576 -109.182.0.0/16 5603 -109.183.0.0/17 12767 -109.183.128.0/17 13036 -109.184.0.0/16 12389 -109.185.0.0/16 8926 -109.186.0.0/16 1680 -109.187.0.0/16 28812 -109.188.0.0/18 47395 -109.188.64.0/19 25159 -109.188.96.0/21 25159 -109.188.104.0/21 47395 -109.188.112.0/23 25159 -109.188.114.0/24 25159 -109.188.115.0/24 47395 -109.188.116.0/22 47395 -109.188.120.0/21 47395 -109.188.128.0/17 31213 -109.189.0.0/16 2119 -109.190.0.0/16 35540 -109.191.0.0/16 8369 -109.192.0.0/15 6830 -109.194.0.0/20 57044 -109.194.16.0/20 51645 -109.194.32.0/20 56981 -109.194.48.0/20 59713 -109.194.64.0/20 49048 -109.194.80.0/20 43478 -109.194.96.0/20 41786 -109.194.112.0/20 41843 -109.194.128.0/20 41754 -109.194.144.0/23 12768 -109.194.146.0/24 12768 -109.194.147.0/24 9049 -109.194.148.0/22 12768 -109.194.152.0/23 31483 -109.194.154.0/23 12768 -109.194.156.0/23 12768 -109.194.158.0/24 31483 -109.194.159.0/24 42682 -109.194.160.0/20 41682 -109.194.176.0/20 41668 -109.194.192.0/20 41727 -109.194.208.0/21 42116 -109.194.216.0/21 50542 -109.194.224.0/20 42682 -109.194.240.0/20 41754 -109.195.0.0/20 50498 -109.195.16.0/20 50543 -109.195.32.0/20 50512 -109.195.48.0/20 50542 -109.195.64.0/20 50544 -109.195.80.0/20 51570 -109.195.96.0/20 51604 -109.195.112.0/20 51819 -109.195.128.0/20 56330 -109.195.144.0/20 51035 -109.195.160.0/20 56420 -109.195.176.0/20 52207 -109.195.192.0/20 39028 -109.195.208.0/20 56377 -109.195.224.0/20 57378 -109.195.240.0/20 57026 -109.196.0.0/20 50239 -109.196.16.0/20 50240 -109.196.32.0/20 50606 -109.196.48.0/20 50231 -109.196.64.0/20 44056 -109.196.80.0/20 50247 -109.196.96.0/24 50383 -109.196.112.0/20 196883 -109.196.128.0/24 35913 -109.196.129.0/24 35624 -109.196.130.0/23 61431 -109.196.132.0/23 39150 -109.196.134.0/23 61431 -109.196.136.0/21 61431 -109.196.144.0/20 50411 -109.196.160.0/22 197706 -109.196.164.0/24 48347 -109.196.165.0/24 34665 -109.196.166.0/23 49505 -109.196.168.0/22 48095 -109.196.172.0/24 49505 -109.196.173.0/24 64429 -109.196.174.0/24 51477 -109.196.175.0/24 61317 -109.196.176.0/20 50362 -109.196.192.0/20 29497 -109.196.208.0/20 50439 -109.196.224.0/20 43420 -109.196.240.0/20 50450 -109.197.8.0/21 29329 -109.197.16.0/21 42740 -109.197.24.0/21 50672 -109.197.32.0/22 34393 -109.197.36.0/23 50247 -109.197.38.0/24 207998 -109.197.39.0/24 49761 -109.197.40.0/21 196928 -109.197.48.0/21 47211 -109.197.56.0/21 29314 -109.197.64.0/21 29314 -109.197.72.0/21 50600 -109.197.80.0/21 50604 -109.197.88.0/21 12714 -109.197.96.0/21 50661 -109.197.104.0/21 50620 -109.197.112.0/21 50760 -109.197.120.0/21 35411 -109.197.128.0/21 42323 -109.197.136.0/21 49120 -109.197.144.0/21 50639 -109.197.152.0/21 50732 -109.197.160.0/23 199543 -109.197.162.0/23 59475 -109.197.164.0/24 199105 -109.197.166.0/23 47705 -109.197.168.0/21 50705 -109.197.184.0/21 198277 -109.197.192.0/21 50716 -109.197.200.0/22 16345 -109.197.204.0/24 16345 -109.197.208.0/21 24589 -109.197.216.0/21 25526 -109.197.224.0/21 48642 -109.197.232.0/21 34744 -109.197.240.0/21 35625 -109.197.248.0/21 50761 -109.198.0.0/19 41937 -109.198.32.0/19 43831 -109.198.72.0/21 39799 -109.198.80.0/20 39799 -109.198.96.0/19 35815 -109.198.128.0/19 35158 -109.198.160.0/19 30881 -109.198.192.0/22 34267 -109.198.196.0/22 12389 -109.198.200.0/21 12389 -109.198.208.0/20 12389 -109.198.224.0/19 25086 -109.199.0.0/19 58321 -109.199.32.0/19 8990 -109.199.64.0/19 35191 -109.199.96.0/20 32475 -109.199.112.0/22 32475 -109.199.116.0/24 32475 -109.199.117.0/24 36351 -109.199.118.0/24 32475 -109.199.119.0/24 36351 -109.199.120.0/23 32475 -109.199.122.0/24 36351 -109.199.123.0/24 32475 -109.199.124.0/23 32475 -109.199.126.0/24 36351 -109.199.127.0/24 32475 -109.199.128.0/19 34754 -109.199.160.0/19 197524 -109.199.192.0/19 2116 -109.199.224.0/19 25374 -109.200.0.0/19 20860 -109.200.32.0/19 33874 -109.200.64.0/20 34465 -109.200.80.0/20 48464 -109.200.96.0/19 41560 -109.200.128.0/21 6789 -109.200.136.0/22 210078 -109.200.140.0/23 210078 -109.200.142.0/23 6789 -109.200.144.0/21 6789 -109.200.152.0/22 6789 -109.200.156.0/24 204144 -109.200.157.0/24 6789 -109.200.158.0/23 6789 -109.200.160.0/19 30873 -109.200.192.0/19 49544 -109.200.224.0/19 34661 -109.201.0.0/19 24631 -109.201.32.0/24 35566 -109.201.33.0/24 21299 -109.201.34.0/23 21299 -109.201.36.0/22 21299 -109.201.40.0/21 21299 -109.201.48.0/20 21299 -109.201.64.0/19 42322 -109.201.96.0/19 50596 -109.201.128.0/19 43350 -109.201.160.0/19 41750 -109.201.192.0/19 8427 -109.201.224.0/19 20891 -109.202.0.0/21 25549 -109.202.8.0/22 8711 -109.202.12.0/22 25549 -109.202.16.0/20 25549 -109.202.32.0/19 39812 -109.202.64.0/19 50698 -109.202.96.0/23 57172 -109.202.98.0/23 49453 -109.202.100.0/22 49453 -109.202.106.0/23 49453 -109.202.108.0/22 49453 -109.202.112.0/21 14537 -109.202.120.0/21 198213 -109.202.128.0/19 28717 -109.202.160.0/19 25096 -109.202.192.0/19 13030 -109.202.224.0/19 42689 -109.203.0.0/19 29492 -109.203.32.0/19 39544 -109.203.64.0/19 202236 -109.203.96.0/24 31727 -109.203.97.0/24 29550 -109.203.98.0/24 31727 -109.203.99.0/24 29550 -109.203.100.0/23 31727 -109.203.102.0/24 31727 -109.203.103.0/24 20860 -109.203.104.0/23 29550 -109.203.106.0/24 20860 -109.203.107.0/24 31727 -109.203.108.0/24 20860 -109.203.109.0/24 31727 -109.203.110.0/24 20860 -109.203.111.0/24 29550 -109.203.112.0/24 20860 -109.203.113.0/24 29550 -109.203.114.0/24 31727 -109.203.115.0/24 20860 -109.203.116.0/24 31727 -109.203.117.0/24 20860 -109.203.118.0/23 31727 -109.203.120.0/24 31727 -109.203.121.0/24 29550 -109.203.122.0/24 29550 -109.203.123.0/24 31727 -109.203.124.0/23 31727 -109.203.126.0/24 31727 -109.203.127.0/24 20860 -109.203.160.0/20 12679 -109.203.176.0/21 12679 -109.203.184.0/22 44208 -109.203.188.0/22 12679 -109.203.192.0/22 12389 -109.203.196.0/23 12389 -109.203.198.0/23 56341 -109.203.200.0/21 12389 -109.203.208.0/20 12389 -109.203.224.0/19 20776 -109.204.0.0/17 8190 -109.204.128.0/17 50503 -109.205.0.0/21 198682 -109.205.8.0/21 44654 -109.205.16.0/22 206460 -109.205.20.0/23 206460 -109.205.24.0/22 47862 -109.205.28.0/23 61137 -109.205.31.0/24 50602 -109.205.32.0/21 50537 -109.205.40.0/22 20545 -109.205.44.0/24 47575 -109.205.45.0/24 20545 -109.205.46.0/23 29289 -109.205.48.0/21 31229 -109.205.64.0/21 57752 -109.205.72.0/21 35236 -109.205.80.0/21 50568 -109.205.88.0/22 5588 -109.205.92.0/23 21317 -109.205.94.0/24 21317 -109.205.96.0/24 12582 -109.205.97.0/24 29422 -109.205.98.0/23 29422 -109.205.100.0/22 29422 -109.205.104.0/21 12835 -109.205.112.0/21 50597 -109.205.120.0/21 28699 -109.205.128.0/21 49854 -109.205.136.0/22 196929 -109.205.140.0/22 62352 -109.205.144.0/21 43793 -109.205.152.0/22 3356 -109.205.156.0/24 3356 -109.205.157.0/24 13768 -109.205.158.0/24 2856 -109.205.159.0/24 13768 -109.205.160.0/21 196961 -109.205.168.0/21 24889 -109.205.176.0/21 12586 -109.205.192.0/23 59545 -109.205.196.0/22 12859 -109.205.200.0/21 21040 -109.205.208.0/21 15723 -109.205.216.0/21 50572 -109.205.224.0/21 41951 -109.205.232.0/21 50610 -109.205.240.0/24 200678 -109.205.241.0/24 199665 -109.205.242.0/24 203353 -109.205.243.0/24 56656 -109.205.244.0/23 196943 -109.205.246.0/24 196943 -109.205.247.0/24 205715 -109.205.248.0/21 38951 -109.206.0.0/19 21299 -109.206.32.0/19 3326 -109.206.64.0/19 25019 -109.206.96.0/19 52026 -109.206.128.0/19 47914 -109.206.160.0/19 50245 -109.206.192.0/19 41966 -109.206.224.0/22 209929 -109.206.228.0/22 39305 -109.206.232.0/22 64426 -109.206.236.0/22 52055 -109.206.240.0/22 398083 -109.206.244.0/22 55933 -109.206.248.0/22 30823 -109.206.252.0/22 25264 -109.207.0.0/20 196747 -109.207.16.0/21 51043 -109.207.24.0/21 5413 -109.207.32.0/20 52026 -109.207.48.0/20 196903 -109.207.64.0/22 210295 -109.207.68.0/23 200680 -109.207.71.0/24 210301 -109.207.72.0/22 42707 -109.207.76.0/24 44709 -109.207.77.0/24 1680 -109.207.78.0/24 1680 -109.207.79.0/24 12400 -109.207.80.0/20 48149 -109.207.96.0/21 50550 -109.207.104.0/22 50550 -109.207.108.0/23 50550 -109.207.111.0/24 50550 -109.207.112.0/20 196740 -109.207.128.0/24 207805 -109.207.131.0/24 60912 -109.207.132.0/24 208140 -109.207.133.0/24 60912 -109.207.134.0/23 60912 -109.207.136.0/22 60912 -109.207.140.0/23 60912 -109.207.142.0/24 209767 -109.207.143.0/24 203320 -109.207.144.0/20 50661 -109.207.160.0/20 48036 -109.207.176.0/20 47438 -109.207.192.0/20 43139 -109.207.208.0/20 41496 -109.207.224.0/20 196786 -109.207.240.0/20 43060 -109.208.0.0/12 3215 -109.224.0.0/18 50710 -109.224.64.0/18 197197 -109.224.128.0/18 8607 -109.224.192.0/18 29676 -109.225.0.0/19 12389 -109.225.32.0/23 15468 -109.225.34.0/24 15468 -109.225.35.0/24 12389 -109.225.36.0/22 12389 -109.225.40.0/23 15468 -109.225.42.0/24 15468 -109.225.43.0/24 12389 -109.225.44.0/22 12389 -109.225.48.0/20 12389 -109.225.64.0/18 45011 -109.225.192.0/18 29124 -109.226.0.0/18 50463 -109.226.64.0/18 8439 -109.226.128.0/18 21032 -109.226.192.0/19 31257 -109.226.224.0/20 31257 -109.226.240.0/21 31257 -109.226.248.0/24 50427 -109.226.249.0/24 31257 -109.226.250.0/23 31257 -109.226.252.0/22 31257 -109.227.0.0/18 12810 -109.227.64.0/18 25133 -109.227.128.0/19 15704 -109.227.178.0/24 16299 -109.227.192.0/18 31036 -109.228.0.0/18 8560 -109.228.64.0/18 8585 -109.228.128.0/18 8473 -109.228.192.0/20 34296 -109.228.210.0/23 34296 -109.228.213.0/24 34296 -109.228.214.0/24 34296 -109.228.216.0/21 34296 -109.228.224.0/19 34296 -109.229.0.0/19 48006 -109.229.32.0/21 50174 -109.229.40.0/24 50174 -109.229.43.0/24 50174 -109.229.44.0/22 50174 -109.229.48.0/23 50174 -109.229.50.0/24 50174 -109.229.52.0/22 50174 -109.229.56.0/21 50174 -109.229.64.0/19 15673 -109.229.96.0/19 49136 -109.229.128.0/19 29124 -109.229.160.0/19 51997 -109.229.192.0/19 24589 -109.229.224.0/19 34771 -109.230.0.0/18 15962 -109.230.64.0/18 50591 -109.230.128.0/19 44882 -109.230.160.0/21 44882 -109.230.176.0/20 44882 -109.230.192.0/23 16322 -109.230.194.0/24 201942 -109.230.195.0/24 197071 -109.230.196.0/24 43260 -109.230.197.0/24 199610 -109.230.198.0/24 197071 -109.230.199.0/24 42708 -109.230.200.0/24 16322 -109.230.201.0/24 9063 -109.230.202.0/24 9063 -109.230.203.0/24 25369 -109.230.204.0/22 16322 -109.230.209.0/24 25369 -109.230.210.0/24 39259 -109.230.211.0/24 199610 -109.230.212.0/24 56550 -109.230.213.0/24 44592 -109.230.214.0/24 199610 -109.230.215.0/24 25369 -109.230.216.0/23 200738 -109.230.218.0/24 25369 -109.230.219.0/24 31400 -109.230.220.0/24 25369 -109.230.221.0/24 16322 -109.230.222.0/24 200738 -109.230.223.0/24 16322 -109.230.224.0/20 197071 -109.230.240.0/23 199610 -109.230.242.0/24 16322 -109.230.243.0/24 199610 -109.230.244.0/23 5539 -109.230.248.0/23 199610 -109.230.250.0/24 201942 -109.230.251.0/24 16322 -109.230.252.0/22 197071 -109.231.0.0/18 34525 -109.231.64.0/22 29676 -109.231.115.0/24 61226 -109.231.128.0/18 61296 -109.231.192.0/18 25180 -109.232.0.0/22 203684 -109.232.4.0/24 203684 -109.232.5.0/24 49100 -109.232.6.0/23 49100 -109.232.8.0/22 31753 -109.232.12.0/23 25222 -109.232.16.0/23 51457 -109.232.20.0/24 51457 -109.232.23.0/24 51457 -109.232.24.0/21 8477 -109.232.32.0/21 21176 -109.232.40.0/21 50399 -109.232.48.0/21 43625 -109.232.56.0/21 41811 -109.232.64.0/21 199930 -109.232.72.0/21 49010 -109.232.80.0/21 21366 -109.232.88.0/21 50201 -109.232.96.0/21 35283 -109.232.104.0/21 50299 -109.232.112.0/21 60273 -109.232.120.0/21 197095 -109.232.128.0/21 15945 -109.232.136.0/21 196865 -109.232.144.0/21 196684 -109.232.152.0/21 50910 -109.232.160.0/24 197216 -109.232.161.0/24 201225 -109.232.168.0/21 44225 -109.232.176.0/22 50287 -109.232.180.0/23 50287 -109.232.183.0/24 50287 -109.232.184.0/21 12714 -109.232.192.0/21 50234 -109.232.200.0/23 51275 -109.232.202.0/24 51275 -109.232.206.0/23 29657 -109.232.208.0/24 50235 -109.232.212.0/23 50235 -109.232.215.0/24 50235 -109.232.216.0/21 42807 -109.232.224.0/23 49453 -109.232.226.0/24 57172 -109.232.227.0/24 49453 -109.232.228.0/22 49453 -109.232.232.0/21 50624 -109.232.240.0/24 209807 -109.232.241.0/24 62457 -109.232.242.0/24 60968 -109.232.243.0/24 57810 -109.232.246.0/24 15478 -109.232.248.0/21 51464 -109.233.0.0/21 50270 -109.233.8.0/21 56474 -109.233.16.0/21 48847 -109.233.32.0/22 50286 -109.233.40.0/21 15570 -109.233.48.0/21 50292 -109.233.56.0/23 29479 -109.233.59.0/24 48708 -109.233.60.0/23 29479 -109.233.62.0/24 29479 -109.233.64.0/21 50301 -109.233.72.0/21 196873 -109.233.80.0/21 196874 -109.233.88.0/21 41676 -109.233.96.0/21 196892 -109.233.104.0/22 48408 -109.233.108.0/22 48716 -109.233.112.0/21 30827 -109.233.120.0/21 48815 -109.233.128.0/21 5602 -109.233.136.0/21 50332 -109.233.144.0/21 21473 -109.233.152.0/22 50343 -109.233.156.0/24 8220 -109.233.157.0/24 50343 -109.233.158.0/23 50343 -109.233.160.0/21 50348 -109.233.168.0/22 196797 -109.233.172.0/22 15774 -109.233.176.0/21 34288 -109.233.184.0/23 52116 -109.233.186.0/24 9125 -109.233.187.0/24 52116 -109.233.188.0/24 28964 -109.233.189.0/24 52116 -109.233.190.0/24 28964 -109.233.191.0/24 9125 -109.233.192.0/21 51056 -109.233.200.0/21 45055 -109.233.208.0/21 50367 -109.233.216.0/21 47217 -109.233.224.0/21 196894 -109.233.232.0/21 50512 -109.233.240.0/21 39821 -109.233.248.0/21 50768 -109.234.8.0/23 39045 -109.234.11.0/24 39045 -109.234.12.0/22 39045 -109.234.16.0/21 13035 -109.234.24.0/21 42526 -109.234.32.0/21 48282 -109.234.40.0/21 42477 -109.234.48.0/21 50417 -109.234.56.0/21 43989 -109.234.64.0/22 15450 -109.234.68.0/23 15450 -109.234.70.0/24 15450 -109.234.71.0/24 204884 -109.234.80.0/22 13287 -109.234.84.0/24 13287 -109.234.85.0/24 200064 -109.234.86.0/23 13287 -109.234.88.0/24 56551 -109.234.96.0/21 44212 -109.234.104.0/21 196763 -109.234.112.0/21 44327 -109.234.120.0/21 43503 -109.234.128.0/24 16300 -109.234.129.0/24 207978 -109.234.130.0/23 16300 -109.234.136.0/21 34758 -109.234.144.0/21 196897 -109.234.152.0/21 49505 -109.234.160.0/21 50474 -109.234.168.0/21 28863 -109.234.176.0/21 60426 -109.234.184.0/21 50458 -109.234.192.0/20 31727 -109.234.208.0/21 50478 -109.234.216.0/23 44335 -109.234.218.0/24 44335 -109.234.223.0/24 34568 -109.234.224.0/23 50456 -109.234.226.0/23 49413 -109.234.228.0/23 202038 -109.234.232.0/21 50616 -109.234.240.0/22 719 -109.234.244.0/24 50377 -109.234.245.0/24 719 -109.234.246.0/23 719 -109.234.248.0/21 61157 -109.235.0.0/21 200059 -109.235.8.0/21 9202 -109.235.16.0/21 34471 -109.235.24.0/21 43761 -109.235.32.0/21 50522 -109.235.40.0/21 50469 -109.235.48.0/21 47869 -109.235.56.0/21 25504 -109.235.64.0/21 62282 -109.235.72.0/21 25151 -109.235.80.0/21 43734 -109.235.88.0/21 48190 -109.235.96.0/24 394201 -109.235.100.0/22 35132 -109.235.104.0/21 15433 -109.235.112.0/21 50484 -109.235.120.0/21 29297 -109.235.128.0/21 15699 -109.235.136.0/21 33873 -109.235.144.0/24 57168 -109.235.146.0/23 57168 -109.235.148.0/22 57168 -109.235.152.0/21 196708 -109.235.160.0/21 43247 -109.235.168.0/21 35041 -109.235.176.0/22 29208 -109.235.184.0/22 47586 -109.235.188.0/23 47586 -109.235.190.0/24 47586 -109.235.191.0/24 51607 -109.235.192.0/23 196925 -109.235.194.0/23 207251 -109.235.196.0/24 207251 -109.235.197.0/24 196925 -109.235.198.0/23 196925 -109.235.200.0/24 197206 -109.235.204.0/24 197206 -109.235.205.0/24 62023 -109.235.206.0/23 197711 -109.235.208.0/24 31183 -109.235.209.0/24 198819 -109.235.210.0/23 39156 -109.235.212.0/22 39156 -109.235.216.0/21 50538 -109.235.224.0/21 48284 -109.235.232.0/21 51057 -109.235.240.0/22 8728 -109.235.244.0/23 8728 -109.235.246.0/23 205950 -109.235.248.0/21 43260 -109.236.0.0/20 55900 -109.236.16.0/20 198471 -109.236.32.0/20 35047 -109.236.48.0/24 43260 -109.236.49.0/24 209737 -109.236.50.0/23 209737 -109.236.52.0/22 35913 -109.236.56.0/22 41789 -109.236.60.0/24 35913 -109.236.62.0/23 35913 -109.236.64.0/20 39604 -109.236.80.0/20 49981 -109.236.96.0/20 8359 -109.236.112.0/20 50242 -109.236.128.0/20 9031 -109.236.144.0/22 62023 -109.236.148.0/23 62023 -109.236.150.0/23 197711 -109.236.152.0/21 62023 -109.236.161.0/24 29676 -109.236.162.0/23 29676 -109.236.164.0/22 29676 -109.236.168.0/22 29676 -109.236.172.0/23 29676 -109.236.174.0/24 29676 -109.236.176.0/20 25384 -109.236.192.0/24 50314 -109.236.193.0/24 3356 -109.236.194.0/24 3356 -109.236.196.0/24 46354 -109.236.197.0/24 50314 -109.236.198.0/23 50314 -109.236.202.0/24 50314 -109.236.204.0/24 50314 -109.236.205.0/24 46354 -109.236.206.0/24 3257 -109.236.208.0/23 50477 -109.236.210.0/24 50477 -109.236.211.0/24 201294 -109.236.212.0/22 50477 -109.236.216.0/21 50477 -109.236.224.0/21 34205 -109.236.232.0/23 34205 -109.236.234.0/24 34205 -109.236.235.0/24 12389 -109.236.236.0/23 12389 -109.236.238.0/23 34205 -109.236.240.0/23 50374 -109.236.244.0/24 198973 -109.236.245.0/24 198974 -109.236.246.0/24 198960 -109.236.247.0/24 198350 -109.236.249.0/24 50691 -109.236.250.0/24 51238 -109.236.252.0/24 50753 -109.236.253.0/24 60513 -109.236.254.0/23 50443 -109.237.0.0/20 8774 -109.237.16.0/21 15830 -109.237.24.0/22 63949 -109.237.28.0/24 15830 -109.237.32.0/20 42560 -109.237.48.0/20 44885 -109.237.78.0/23 41420 -109.237.80.0/20 16066 -109.237.100.0/22 42574 -109.237.104.0/24 201776 -109.237.105.0/24 28738 -109.237.106.0/23 42574 -109.237.108.0/22 57494 -109.237.112.0/20 41997 -109.237.128.0/20 45012 -109.237.144.0/20 43314 -109.237.160.0/20 49524 -109.237.176.0/20 3320 -109.237.193.0/24 50670 -109.237.194.0/24 50670 -109.237.208.0/20 200831 -109.237.224.0/20 50449 -109.237.240.0/20 16347 -109.238.0.0/20 21409 -109.238.32.0/20 15935 -109.238.48.0/20 12617 -109.238.64.0/20 16082 -109.238.80.0/20 47323 -109.238.96.0/20 41302 -109.238.112.0/21 5602 -109.238.120.0/22 5602 -109.238.124.0/22 200043 -109.238.128.0/20 50821 -109.238.144.0/20 29256 -109.238.160.0/20 25534 -109.238.176.0/20 48944 -109.238.192.0/22 9009 -109.238.196.0/22 57129 -109.238.200.0/21 57129 -109.238.208.0/20 48574 -109.238.224.0/20 15491 -109.238.240.0/20 200044 -109.239.0.0/20 43510 -109.239.16.0/20 39232 -109.239.32.0/20 39824 -109.239.48.0/23 34011 -109.239.50.0/24 34011 -109.239.51.0/24 8972 -109.239.52.0/22 8972 -109.239.56.0/24 8972 -109.239.57.0/24 34011 -109.239.58.0/24 34011 -109.239.59.0/24 8972 -109.239.60.0/24 34011 -109.239.61.0/24 8972 -109.239.62.0/23 8972 -109.239.64.0/20 29321 -109.239.80.0/20 6908 -109.239.96.0/20 33920 -109.239.112.0/23 34949 -109.239.114.0/23 25540 -109.239.116.0/22 34949 -109.239.122.0/23 34949 -109.239.124.0/24 25540 -109.239.125.0/24 34949 -109.239.128.0/22 31500 -109.239.133.0/24 31500 -109.239.134.0/23 31500 -109.239.138.0/23 31500 -109.239.140.0/24 31500 -109.239.141.0/24 42065 -109.239.142.0/23 31500 -109.239.144.0/20 39286 -109.239.160.0/20 20902 -109.239.176.0/20 21283 -109.239.192.0/20 50621 -109.239.208.0/21 196742 -109.239.216.0/22 196742 -109.239.220.0/23 196742 -109.239.224.0/22 50608 -109.239.228.0/24 50608 -109.239.229.0/24 12552 -109.239.230.0/23 50608 -109.239.232.0/21 50608 -109.239.240.0/20 35617 -109.240.0.0/16 1759 -109.241.0.0/16 29314 -109.242.0.0/16 25472 -109.243.0.0/16 39603 -109.244.0.0/16 45090 -109.245.0.0/20 15958 -109.245.16.0/21 15958 -109.245.24.0/23 15958 -109.245.26.0/24 15958 -109.245.27.0/24 51052 -109.245.28.0/22 51052 -109.245.32.0/20 15958 -109.245.48.0/22 15958 -109.245.52.0/23 15958 -109.245.54.0/24 15958 -109.245.55.0/24 51052 -109.245.56.0/23 51052 -109.245.58.0/24 51052 -109.245.59.0/24 15958 -109.245.60.0/22 15958 -109.245.64.0/18 15958 -109.245.128.0/18 15958 -109.245.192.0/20 15958 -109.245.208.0/21 15958 -109.245.216.0/24 197423 -109.245.217.0/24 15958 -109.245.218.0/24 51052 -109.245.219.0/24 15958 -109.245.220.0/22 15958 -109.245.224.0/19 15958 -109.246.0.0/16 25178 -109.247.0.0/16 29695 -109.248.0.0/21 62416 -109.248.8.0/24 210195 -109.248.9.0/24 209078 -109.248.10.0/23 204490 -109.248.12.0/22 35048 -109.248.16.0/20 196768 -109.248.32.0/23 21100 -109.248.35.0/24 56690 -109.248.36.0/23 39087 -109.248.38.0/23 61228 -109.248.40.0/24 209932 -109.248.41.0/24 197577 -109.248.43.0/24 202297 -109.248.44.0/24 202873 -109.248.45.0/24 207152 -109.248.46.0/24 202963 -109.248.47.0/24 203002 -109.248.48.0/23 35048 -109.248.50.0/24 201497 -109.248.51.0/24 44676 -109.248.52.0/23 44676 -109.248.54.0/23 35048 -109.248.56.0/24 52022 -109.248.58.0/24 57803 -109.248.59.0/24 202984 -109.248.60.0/24 205569 -109.248.61.0/24 206386 -109.248.62.0/24 57803 -109.248.63.0/24 41500 -109.248.64.0/19 47193 -109.248.96.0/20 28917 -109.248.112.0/20 47193 -109.248.128.0/23 35048 -109.248.130.0/24 209343 -109.248.131.0/24 59498 -109.248.132.0/24 209546 -109.248.137.0/24 61228 -109.248.138.0/23 35048 -109.248.140.0/24 204128 -109.248.141.0/24 209751 -109.248.142.0/23 35048 -109.248.144.0/23 60567 -109.248.146.0/24 60567 -109.248.147.0/24 52048 -109.248.148.0/23 52048 -109.248.152.0/21 8200 -109.248.160.0/22 50671 -109.248.164.0/23 44676 -109.248.166.0/23 35048 -109.248.168.0/23 203493 -109.248.170.0/23 39853 -109.248.172.0/24 198619 -109.248.173.0/24 57803 -109.248.174.0/24 204199 -109.248.176.0/20 15868 -109.248.192.0/22 15868 -109.248.196.0/22 48276 -109.248.200.0/22 204490 -109.248.204.0/23 35048 -109.248.206.0/23 203493 -109.248.208.0/22 8200 -109.248.212.0/24 200466 -109.248.213.0/24 202362 -109.248.216.0/24 200634 -109.248.217.0/24 205791 -109.248.218.0/24 200722 -109.248.219.0/24 208763 -109.248.220.0/23 50025 -109.248.222.0/24 57494 -109.248.223.0/24 34665 -109.248.224.0/24 202764 -109.248.225.0/24 205646 -109.248.226.0/24 200803 -109.248.228.0/24 197163 -109.248.229.0/24 28917 -109.248.230.0/23 61228 -109.248.232.0/23 61228 -109.248.234.0/24 25227 -109.248.235.0/24 43330 -109.248.236.0/24 8200 -109.248.237.0/24 201009 -109.248.238.0/23 56542 -109.248.240.0/22 197577 -109.248.244.0/24 61228 -109.248.245.0/24 201131 -109.248.246.0/24 200734 -109.248.247.0/24 51084 -109.248.248.0/24 201297 -109.248.249.0/24 201296 -109.248.250.0/24 57494 -109.248.251.0/24 61228 -109.248.252.0/24 49478 -109.248.254.0/24 201390 -109.248.255.0/24 204318 -109.249.0.0/16 12576 -109.250.0.0/16 8881 -109.251.0.0/19 31148 -109.251.33.0/24 31148 -109.251.34.0/23 31148 -109.251.36.0/22 31148 -109.251.40.0/23 31148 -109.251.42.0/24 31148 -109.251.44.0/22 31148 -109.251.48.0/20 31148 -109.251.64.0/19 31148 -109.251.96.0/20 31148 -109.251.112.0/24 31148 -109.251.114.0/23 31148 -109.251.116.0/23 31148 -109.251.118.0/24 31148 -109.251.120.0/22 31148 -109.251.124.0/24 31148 -109.251.126.0/24 31148 -109.251.128.0/23 31148 -109.251.131.0/24 31148 -109.251.132.0/22 31148 -109.251.136.0/23 31148 -109.251.138.0/24 31148 -109.251.140.0/22 31148 -109.251.144.0/24 31148 -109.251.146.0/23 31148 -109.251.148.0/24 31148 -109.251.150.0/23 31148 -109.251.152.0/21 31148 -109.251.160.0/23 31148 -109.251.162.0/24 31148 -109.251.164.0/23 31148 -109.251.168.0/24 31148 -109.251.170.0/24 31148 -109.251.173.0/24 31148 -109.251.174.0/23 31148 -109.251.179.0/24 31148 -109.251.180.0/22 31148 -109.251.184.0/22 31148 -109.251.188.0/24 31148 -109.251.190.0/23 31148 -109.251.192.0/20 31148 -109.251.209.0/24 31148 -109.251.210.0/23 31148 -109.251.212.0/22 31148 -109.251.216.0/21 31148 -109.251.224.0/20 31148 -109.251.240.0/21 31148 -109.251.248.0/22 31148 -109.251.252.0/23 31148 -109.251.255.0/24 31148 -109.252.0.0/16 25513 -109.253.0.0/16 1680 -109.254.0.0/16 20590 -109.255.0.0/16 6830 -110.0.0.0/15 10013 -110.2.0.0/17 10013 -110.2.128.0/18 10013 -110.2.192.0/19 7522 -110.2.224.0/19 10013 -110.3.0.0/17 10013 -110.3.160.0/20 10013 -110.3.176.0/21 4686 -110.3.184.0/21 10013 -110.3.192.0/18 10013 -110.4.0.0/19 38819 -110.4.32.0/21 131931 -110.4.40.0/21 46015 -110.4.48.0/20 4721 -110.4.64.0/20 38661 -110.4.80.0/21 38661 -110.4.88.0/23 38661 -110.4.90.0/24 38661 -110.4.91.0/24 9457 -110.4.92.0/22 38661 -110.4.96.0/20 38661 -110.4.112.0/24 9457 -110.4.113.0/24 38661 -110.4.114.0/23 38661 -110.4.116.0/22 38661 -110.4.120.0/21 38661 -110.4.128.0/17 4685 -110.5.0.0/18 4685 -110.5.64.0/21 45499 -110.5.72.0/21 45194 -110.5.80.0/22 9426 -110.5.84.0/23 9426 -110.5.92.0/22 9426 -110.5.96.0/20 24523 -110.5.112.0/22 17993 -110.5.116.0/22 9822 -110.5.120.0/21 23791 -110.5.128.0/17 17864 -110.6.0.0/15 4837 -110.8.0.0/15 9318 -110.10.0.0/16 9318 -110.11.0.0/17 9318 -110.11.128.0/22 9318 -110.11.132.0/24 9318 -110.11.133.0/24 10072 -110.11.134.0/23 9318 -110.11.136.0/21 9318 -110.11.144.0/20 9318 -110.11.160.0/19 9318 -110.11.192.0/18 9318 -110.12.0.0/15 9318 -110.14.0.0/16 9318 -110.15.0.0/18 9318 -110.15.64.0/21 9318 -110.15.72.0/21 38114 -110.15.80.0/20 9318 -110.15.96.0/19 9318 -110.15.128.0/18 9318 -110.15.192.0/19 9318 -110.15.224.0/20 9318 -110.15.240.0/22 9318 -110.15.244.0/23 9318 -110.15.246.0/24 9318 -110.15.247.0/24 45399 -110.15.248.0/21 9318 -110.16.0.0/16 4837 -110.17.0.0/17 4837 -110.17.128.0/19 4837 -110.17.160.0/21 4837 -110.17.168.0/23 4837 -110.17.170.0/24 4837 -110.17.171.0/24 139007 -110.17.172.0/22 4837 -110.17.176.0/20 4837 -110.17.192.0/18 4837 -110.18.0.0/19 4837 -110.18.32.0/20 139007 -110.18.48.0/21 4837 -110.18.56.0/22 139007 -110.18.60.0/22 4837 -110.18.64.0/20 4837 -110.18.80.0/21 139007 -110.18.88.0/21 4837 -110.18.96.0/19 4837 -110.18.128.0/18 4837 -110.18.192.0/22 4837 -110.18.196.0/23 4837 -110.18.198.0/23 139007 -110.18.200.0/21 4837 -110.18.208.0/20 4837 -110.18.224.0/21 4837 -110.18.232.0/22 4837 -110.18.236.0/22 139007 -110.18.240.0/21 4837 -110.18.248.0/21 139007 -110.19.0.0/22 4837 -110.19.4.0/24 139007 -110.19.5.0/24 4837 -110.19.6.0/23 4837 -110.19.8.0/21 4837 -110.19.16.0/20 4837 -110.19.32.0/19 4837 -110.19.64.0/20 4837 -110.19.80.0/21 4837 -110.19.88.0/22 4837 -110.19.92.0/24 139007 -110.19.93.0/24 4837 -110.19.94.0/23 4837 -110.19.96.0/22 4837 -110.19.100.0/22 139007 -110.19.104.0/21 4837 -110.19.112.0/20 139007 -110.19.128.0/17 4837 -110.20.0.0/14 4804 -110.24.0.0/13 9674 -110.32.0.0/15 4804 -110.34.0.0/19 4007 -110.34.32.0/21 55714 -110.34.48.0/22 17994 -110.34.52.0/22 9290 -110.34.56.0/21 55303 -110.34.64.0/18 9757 -110.34.128.0/21 35908 -110.34.136.0/23 35908 -110.34.138.0/24 35908 -110.34.139.0/24 45652 -110.34.140.0/22 35908 -110.34.144.0/21 35908 -110.34.152.0/22 35908 -110.34.156.0/23 35908 -110.34.158.0/24 45652 -110.34.159.0/24 35908 -110.34.160.0/22 35908 -110.34.164.0/23 35908 -110.34.166.0/24 45652 -110.34.167.0/24 35908 -110.34.168.0/21 35908 -110.34.176.0/22 35908 -110.34.180.0/24 45652 -110.34.181.0/24 35908 -110.34.182.0/24 35908 -110.34.183.0/24 45652 -110.34.184.0/21 45652 -110.34.192.0/20 35908 -110.34.208.0/21 35908 -110.34.216.0/22 35908 -110.34.220.0/22 45652 -110.34.224.0/19 35908 -110.35.0.0/18 38684 -110.35.64.0/21 24175 -110.35.72.0/21 45546 -110.35.80.0/22 17727 -110.35.84.0/23 17727 -110.35.88.0/21 9241 -110.35.96.0/19 10164 -110.35.128.0/21 9569 -110.35.136.0/22 9569 -110.35.140.0/23 9569 -110.35.142.0/24 9569 -110.35.143.0/24 9848 -110.35.144.0/22 9569 -110.35.148.0/22 7562 -110.35.152.0/21 7562 -110.35.160.0/22 7562 -110.35.164.0/22 45996 -110.35.168.0/22 7562 -110.35.172.0/22 9762 -110.35.176.0/20 9762 -110.35.192.0/19 10175 -110.35.224.0/19 7623 -110.36.0.0/14 38264 -110.40.0.0/24 59011 -110.40.1.0/24 4808 -110.40.2.0/23 4808 -110.40.4.0/22 4808 -110.40.8.0/23 59011 -110.40.12.0/23 4808 -110.40.14.0/24 59011 -110.40.15.0/24 4808 -110.40.16.0/22 59011 -110.42.0.0/17 136188 -110.43.0.0/22 59019 -110.43.4.0/24 59019 -110.43.32.0/19 58466 -110.43.64.0/21 4812 -110.43.72.0/22 4812 -110.43.76.0/23 4812 -110.43.78.0/23 137280 -110.43.80.0/20 23724 -110.43.104.0/21 23724 -110.43.112.0/21 133119 -110.43.128.0/19 4812 -110.43.192.0/19 23724 -110.43.240.0/20 58466 -110.44.5.0/24 64067 -110.44.7.0/24 396158 -110.44.8.0/22 132764 -110.44.12.0/22 4837 -110.44.16.0/24 131174 -110.44.20.0/22 9999 -110.44.24.0/21 9268 -110.44.32.0/19 38661 -110.44.64.0/19 9351 -110.44.96.0/22 45117 -110.44.100.0/22 132137 -110.44.112.0/20 45650 -110.44.128.0/20 9370 -110.44.168.0/21 24206 -110.44.176.0/21 38651 -110.44.184.0/22 45547 -110.44.189.0/24 45547 -110.44.192.0/21 17577 -110.44.208.0/20 17577 -110.44.224.0/19 9845 -110.45.0.0/17 10066 -110.45.128.0/19 3786 -110.45.160.0/20 3786 -110.45.176.0/21 3786 -110.45.184.0/22 3786 -110.45.188.0/23 3786 -110.45.190.0/24 3786 -110.45.191.0/24 6507 -110.45.192.0/18 3786 -110.46.0.0/17 9845 -110.46.128.0/19 9697 -110.46.160.0/22 17586 -110.46.164.0/24 9698 -110.46.165.0/24 38091 -110.46.166.0/23 38091 -110.46.168.0/22 9698 -110.46.172.0/22 38091 -110.46.176.0/20 38091 -110.46.192.0/18 9697 -110.47.0.0/17 17839 -110.47.128.0/19 17839 -110.47.160.0/20 17839 -110.47.176.0/20 18313 -110.47.192.0/18 18313 -110.49.0.0/24 134162 -110.49.1.0/24 38444 -110.49.2.0/24 133848 -110.49.3.0/24 38444 -110.49.4.0/22 45458 -110.49.8.0/24 45458 -110.49.9.0/24 38444 -110.49.10.0/23 45458 -110.49.12.0/24 137885 -110.49.13.0/24 45458 -110.49.14.0/23 45458 -110.49.16.0/20 45458 -110.49.32.0/24 38444 -110.49.33.0/24 45458 -110.49.34.0/23 45458 -110.49.36.0/23 45458 -110.49.38.0/24 137919 -110.49.39.0/24 45458 -110.49.40.0/21 45458 -110.49.48.0/24 38444 -110.49.49.0/24 45458 -110.49.50.0/23 45458 -110.49.52.0/22 45458 -110.49.56.0/22 45458 -110.49.60.0/24 45458 -110.49.61.0/24 38444 -110.49.62.0/24 45458 -110.49.63.0/24 38444 -110.49.64.0/20 45458 -110.49.80.0/22 38444 -110.49.84.0/24 45458 -110.49.85.0/24 38444 -110.49.86.0/23 45458 -110.49.88.0/23 38444 -110.49.90.0/23 45458 -110.49.92.0/22 45458 -110.49.96.0/24 38444 -110.49.97.0/24 45254 -110.49.98.0/24 45458 -110.49.99.0/24 38444 -110.49.100.0/22 45458 -110.49.104.0/23 45458 -110.49.106.0/24 45458 -110.49.107.0/24 17427 -110.49.108.0/23 45458 -110.49.110.0/24 45458 -110.49.111.0/24 45254 -110.49.112.0/23 133848 -110.49.114.0/23 133481 -110.49.116.0/22 133481 -110.49.120.0/22 133481 -110.49.124.0/24 133481 -110.49.125.0/24 45458 -110.49.126.0/23 45458 -110.49.128.0/21 38444 -110.49.136.0/22 38444 -110.49.140.0/23 38444 -110.49.142.0/23 134240 -110.49.144.0/20 38444 -110.49.160.0/19 38444 -110.49.192.0/21 38444 -110.49.200.0/24 38444 -110.49.201.0/24 45781 -110.49.202.0/23 38444 -110.49.204.0/22 38444 -110.49.208.0/20 38444 -110.49.224.0/19 38444 -110.50.0.0/20 23786 -110.50.24.0/21 17680 -110.50.32.0/19 17648 -110.50.64.0/20 10021 -110.50.80.0/23 17670 -110.50.83.0/24 17670 -110.50.84.0/22 17670 -110.50.88.0/21 7682 -110.50.96.0/19 2519 -110.50.128.0/18 24157 -110.50.192.0/19 9597 -110.50.224.0/21 18018 -110.50.232.0/23 18018 -110.50.234.0/24 18018 -110.50.236.0/22 18018 -110.50.240.0/20 23661 -110.51.0.0/16 45113 -110.52.0.0/15 4837 -110.54.0.0/17 7679 -110.54.128.0/20 132199 -110.54.144.0/21 132199 -110.54.152.0/21 4775 -110.54.160.0/21 132199 -110.54.168.0/21 4775 -110.54.176.0/21 132199 -110.54.184.0/21 4775 -110.54.192.0/19 132199 -110.54.224.0/20 132199 -110.54.240.0/21 132199 -110.54.248.0/22 132199 -110.54.252.0/22 4775 -110.55.0.0/16 6648 -110.56.0.0/13 9394 -110.64.0.0/18 4538 -110.64.64.0/19 24357 -110.64.96.0/19 4538 -110.64.128.0/17 4538 -110.65.0.0/18 24357 -110.65.64.0/18 4538 -110.65.128.0/17 4538 -110.66.0.0/15 2527 -110.68.0.0/14 4766 -110.72.0.0/15 4837 -110.74.0.0/19 17941 -110.74.32.0/20 9371 -110.74.48.0/20 10013 -110.74.64.0/20 9371 -110.74.112.0/22 10013 -110.74.121.0/24 10013 -110.74.122.0/23 10013 -110.74.126.0/23 10013 -110.74.128.0/19 45668 -110.74.161.0/24 45668 -110.74.162.0/23 45668 -110.74.164.0/22 45668 -110.74.168.0/21 45668 -110.74.176.0/21 45668 -110.74.186.0/23 45668 -110.74.189.0/24 45668 -110.74.190.0/23 45668 -110.74.192.0/19 38901 -110.74.224.0/21 18144 -110.74.232.0/21 10013 -110.74.240.0/20 10013 -110.75.0.0/16 37963 -110.76.0.0/18 37963 -110.76.64.0/18 7622 -110.76.128.0/22 59362 -110.76.140.0/22 45991 -110.76.144.0/21 38506 -110.76.152.0/22 45752 -110.76.156.0/22 58519 -110.76.160.0/20 45742 -110.76.176.0/22 37978 -110.76.184.0/22 58519 -110.76.188.0/22 135398 -110.76.192.0/18 24137 -110.77.0.0/17 24137 -110.77.128.0/19 131090 -110.77.161.0/24 131090 -110.77.162.0/23 131090 -110.77.164.0/23 131090 -110.77.166.0/24 131090 -110.77.170.0/23 131090 -110.77.176.0/24 131090 -110.77.178.0/24 131090 -110.77.180.0/23 131090 -110.77.182.0/24 131090 -110.77.184.0/23 131090 -110.77.186.0/24 131090 -110.77.191.0/24 131090 -110.77.195.0/24 131090 -110.77.196.0/23 131090 -110.77.200.0/23 131090 -110.77.202.0/24 131090 -110.77.207.0/24 131090 -110.77.209.0/24 131090 -110.77.210.0/23 131090 -110.77.212.0/24 131090 -110.77.214.0/24 131090 -110.77.217.0/24 131090 -110.77.220.0/23 131090 -110.77.223.0/24 131090 -110.77.224.0/22 131090 -110.77.228.0/24 131090 -110.77.231.0/24 131090 -110.77.232.0/23 131090 -110.77.235.0/24 131090 -110.77.236.0/23 131090 -110.77.238.0/24 131090 -110.77.240.0/22 131090 -110.77.244.0/24 131090 -110.77.246.0/23 131090 -110.77.248.0/24 131090 -110.77.252.0/22 131090 -110.78.0.0/18 9931 -110.78.64.0/19 9931 -110.78.96.0/20 9931 -110.78.112.0/21 9931 -110.78.120.0/22 9931 -110.78.124.0/23 9931 -110.78.126.0/23 135589 -110.78.128.0/21 131090 -110.78.136.0/23 131090 -110.78.138.0/24 131090 -110.78.141.0/24 131090 -110.78.142.0/23 131090 -110.78.145.0/24 131090 -110.78.146.0/23 131090 -110.78.148.0/23 131090 -110.78.151.0/24 131090 -110.78.152.0/22 131090 -110.78.157.0/24 131090 -110.78.159.0/24 131090 -110.78.160.0/21 131090 -110.78.168.0/24 131090 -110.78.170.0/23 131090 -110.78.172.0/22 131090 -110.78.178.0/23 131090 -110.78.180.0/22 131090 -110.78.184.0/24 131090 -110.78.186.0/24 131090 -110.78.188.0/22 131090 -110.78.192.0/19 9335 -110.79.0.0/21 9293 -110.79.8.0/24 9293 -110.79.9.0/24 133142 -110.79.10.0/23 9293 -110.79.12.0/22 9293 -110.79.16.0/20 9293 -110.79.32.0/19 9293 -110.79.64.0/18 9293 -110.79.128.0/17 9293 -110.80.0.0/17 4134 -110.80.128.0/20 133775 -110.80.144.0/20 4134 -110.80.160.0/19 4134 -110.80.192.0/18 4134 -110.81.0.0/16 4134 -110.82.0.0/15 4134 -110.84.0.0/17 4134 -110.84.128.0/24 4134 -110.84.129.0/24 133774 -110.84.130.0/23 133774 -110.84.132.0/22 4134 -110.84.136.0/21 4134 -110.84.144.0/20 4134 -110.84.160.0/19 4134 -110.84.192.0/18 4134 -110.85.0.0/16 4134 -110.86.0.0/15 4134 -110.88.0.0/17 4134 -110.88.128.0/19 133775 -110.88.160.0/21 133775 -110.88.168.0/21 4134 -110.88.176.0/20 4134 -110.88.192.0/18 4134 -110.89.0.0/16 4134 -110.90.0.0/15 4134 -110.92.0.0/20 38652 -110.92.16.0/22 18159 -110.92.20.0/23 4766 -110.92.23.0/24 9858 -110.92.24.0/23 134974 -110.92.26.0/24 134974 -110.92.27.0/24 198949 -110.92.28.0/23 134974 -110.92.30.0/24 132826 -110.92.31.0/24 134974 -110.92.32.0/19 7511 -110.92.64.0/22 133115 -110.92.76.0/22 45750 -110.92.80.0/20 4721 -110.92.96.0/19 17547 -110.92.128.0/18 9943 -110.92.192.0/19 9943 -110.92.224.0/20 9943 -110.92.240.0/21 9943 -110.92.248.0/22 9943 -110.92.252.0/24 9943 -110.92.253.0/24 45996 -110.92.254.0/24 45996 -110.92.255.0/24 9943 -110.93.0.0/21 4721 -110.93.8.0/22 9268 -110.93.12.0/22 45707 -110.93.16.0/23 45594 -110.93.18.0/23 45763 -110.93.20.0/23 45763 -110.93.22.0/23 38835 -110.93.24.0/21 17845 -110.93.64.0/19 45754 -110.93.96.0/20 9378 -110.93.112.0/20 4766 -110.93.128.0/20 38690 -110.93.144.0/20 23576 -110.93.160.0/19 38690 -110.93.192.0/24 38193 -110.93.194.0/23 38193 -110.93.196.0/22 38193 -110.93.200.0/23 38193 -110.93.203.0/24 38193 -110.93.204.0/22 38193 -110.93.208.0/21 38193 -110.93.216.0/22 38193 -110.93.220.0/24 38193 -110.93.222.0/24 38193 -110.93.223.0/24 135407 -110.93.224.0/23 38193 -110.93.226.0/23 138655 -110.93.228.0/24 135407 -110.93.229.0/24 38193 -110.93.230.0/24 135407 -110.93.231.0/24 38193 -110.93.232.0/22 38193 -110.93.236.0/23 135407 -110.93.238.0/23 38193 -110.93.240.0/24 135407 -110.93.241.0/24 38193 -110.93.242.0/23 38193 -110.93.244.0/22 135407 -110.93.248.0/23 38193 -110.93.250.0/24 38193 -110.96.0.0/20 24138 -110.96.16.0/24 24138 -110.96.17.0/24 9394 -110.96.18.0/23 9394 -110.96.20.0/23 9394 -110.96.22.0/23 24138 -110.96.24.0/21 24138 -110.96.32.0/19 24138 -110.96.64.0/18 24138 -110.96.128.0/17 24138 -110.97.0.0/16 37981 -110.98.0.0/16 37981 -110.99.0.0/16 9394 -110.100.0.0/14 9394 -110.104.0.0/14 9394 -110.108.0.0/16 9394 -110.109.0.0/16 134810 -110.110.0.0/15 38341 -110.112.0.0/16 38341 -110.113.0.0/16 24138 -110.114.0.0/16 24138 -110.115.0.0/17 9394 -110.115.128.0/17 56046 -110.116.0.0/14 9394 -110.120.0.0/16 38370 -110.121.0.0/16 9394 -110.122.0.0/15 9394 -110.124.0.0/18 9808 -110.124.64.0/20 9808 -110.124.80.0/20 9394 -110.124.96.0/19 9394 -110.124.128.0/19 9808 -110.124.160.0/19 9394 -110.124.192.0/19 9808 -110.124.224.0/22 9808 -110.124.228.0/22 9394 -110.124.232.0/21 9394 -110.124.240.0/20 9394 -110.125.0.0/17 9808 -110.125.128.0/19 9808 -110.125.160.0/21 9394 -110.125.168.0/21 9808 -110.125.176.0/20 9394 -110.125.192.0/19 9394 -110.125.224.0/20 9808 -110.125.240.0/21 9808 -110.125.248.0/21 9394 -110.126.0.0/16 9394 -110.127.0.0/16 134810 -110.128.0.0/13 9824 -110.136.0.0/20 7713 -110.136.16.0/23 17974 -110.136.18.0/23 7713 -110.136.20.0/22 7713 -110.136.24.0/21 7713 -110.136.32.0/23 7713 -110.136.34.0/24 7713 -110.136.35.0/24 17974 -110.136.36.0/22 7713 -110.136.40.0/21 7713 -110.136.48.0/20 7713 -110.136.64.0/24 17974 -110.136.65.0/24 7713 -110.136.66.0/23 7713 -110.136.68.0/22 7713 -110.136.72.0/21 7713 -110.136.80.0/24 17974 -110.136.81.0/24 7713 -110.136.82.0/23 7713 -110.136.84.0/23 17974 -110.136.86.0/23 7713 -110.136.88.0/22 7713 -110.136.92.0/23 7713 -110.136.94.0/24 17974 -110.136.95.0/24 7713 -110.136.96.0/19 7713 -110.136.128.0/18 7713 -110.136.192.0/20 7713 -110.136.208.0/21 7713 -110.136.216.0/22 17974 -110.136.220.0/22 7713 -110.136.224.0/19 7713 -110.137.0.0/16 7713 -110.138.0.0/16 7713 -110.139.0.0/17 7713 -110.139.128.0/21 7713 -110.139.136.0/21 17974 -110.139.144.0/20 7713 -110.139.160.0/19 7713 -110.139.192.0/20 7713 -110.139.208.0/21 7713 -110.139.216.0/23 17974 -110.139.218.0/24 7713 -110.139.219.0/24 17974 -110.139.220.0/22 17974 -110.139.224.0/19 7713 -110.140.0.0/14 1221 -110.144.0.0/13 1221 -110.152.0.0/15 4134 -110.154.0.0/17 4134 -110.154.128.0/20 4134 -110.154.144.0/21 137694 -110.154.152.0/21 4134 -110.154.160.0/19 4134 -110.154.192.0/18 4134 -110.155.0.0/16 4134 -110.156.0.0/18 4134 -110.156.64.0/20 4134 -110.156.80.0/22 4134 -110.156.84.0/22 137694 -110.156.88.0/21 4134 -110.156.96.0/19 4134 -110.156.128.0/17 4134 -110.157.0.0/19 4134 -110.157.32.0/21 4134 -110.157.40.0/22 4134 -110.157.44.0/22 137694 -110.157.48.0/20 4134 -110.157.64.0/18 4134 -110.157.128.0/17 4134 -110.158.0.0/17 9605 -110.158.128.0/23 9605 -110.158.131.0/24 9605 -110.158.132.0/22 9605 -110.158.136.0/21 9605 -110.158.144.0/20 9605 -110.158.160.0/20 9605 -110.158.188.0/22 9605 -110.158.192.0/18 9605 -110.159.0.0/16 4788 -110.160.0.0/16 9605 -110.161.0.0/17 9605 -110.161.128.0/18 9605 -110.161.192.0/22 9605 -110.161.204.0/22 9605 -110.161.208.0/20 9605 -110.161.224.0/19 9605 -110.162.96.0/19 9605 -110.162.128.0/17 9605 -110.163.6.0/23 9605 -110.163.8.0/22 9605 -110.163.12.0/23 9605 -110.163.18.0/23 9605 -110.163.20.0/23 9605 -110.163.24.0/21 9605 -110.163.39.0/24 9605 -110.163.40.0/23 9605 -110.163.42.0/24 9605 -110.163.44.0/22 9605 -110.163.48.0/21 9605 -110.163.56.0/23 9605 -110.163.58.0/24 9605 -110.163.64.0/18 9605 -110.163.128.0/19 9605 -110.163.160.0/22 9605 -110.163.216.0/21 9605 -110.163.224.0/22 9605 -110.163.251.0/24 9605 -110.164.0.0/22 45629 -110.164.4.0/23 45629 -110.164.6.0/24 45629 -110.164.7.0/24 45758 -110.164.8.0/23 45629 -110.164.10.0/24 45629 -110.164.11.0/24 45758 -110.164.12.0/22 45629 -110.164.16.0/24 45629 -110.164.17.0/24 45758 -110.164.18.0/23 45629 -110.164.20.0/22 45629 -110.164.24.0/21 45629 -110.164.32.0/23 45629 -110.164.34.0/24 45629 -110.164.35.0/24 45758 -110.164.36.0/22 45629 -110.164.40.0/21 45629 -110.164.48.0/24 45629 -110.164.49.0/24 45758 -110.164.50.0/24 45758 -110.164.51.0/24 45629 -110.164.52.0/22 45629 -110.164.56.0/22 45629 -110.164.60.0/24 45806 -110.164.61.0/24 37992 -110.164.62.0/24 37992 -110.164.63.0/24 45629 -110.164.64.0/21 45629 -110.164.72.0/22 45629 -110.164.76.0/23 45629 -110.164.78.0/24 45629 -110.164.79.0/24 45758 -110.164.80.0/24 45758 -110.164.81.0/24 45629 -110.164.82.0/24 45629 -110.164.83.0/24 37992 -110.164.84.0/24 37992 -110.164.85.0/24 45758 -110.164.86.0/24 135074 -110.164.87.0/24 45629 -110.164.88.0/24 45629 -110.164.89.0/24 45758 -110.164.90.0/24 45758 -110.164.91.0/24 45629 -110.164.92.0/24 56277 -110.164.93.0/24 45629 -110.164.94.0/23 45629 -110.164.96.0/19 45629 -110.164.128.0/22 45629 -110.164.132.0/23 45629 -110.164.134.0/24 45629 -110.164.135.0/24 45758 -110.164.136.0/24 45629 -110.164.137.0/24 132493 -110.164.138.0/23 45629 -110.164.140.0/24 45758 -110.164.141.0/24 45629 -110.164.142.0/24 45629 -110.164.143.0/24 45807 -110.164.144.0/24 45758 -110.164.145.0/24 55808 -110.164.146.0/23 45629 -110.164.148.0/22 45629 -110.164.152.0/24 45629 -110.164.153.0/24 45758 -110.164.154.0/24 45629 -110.164.155.0/24 45758 -110.164.156.0/22 45629 -110.164.160.0/24 45758 -110.164.161.0/24 45629 -110.164.162.0/23 45629 -110.164.164.0/24 45629 -110.164.165.0/24 45758 -110.164.166.0/23 45629 -110.164.168.0/24 45629 -110.164.169.0/24 45758 -110.164.170.0/23 45629 -110.164.172.0/23 45758 -110.164.174.0/24 45758 -110.164.175.0/24 45629 -110.164.176.0/23 45629 -110.164.178.0/23 37992 -110.164.180.0/22 45629 -110.164.184.0/22 45758 -110.164.188.0/22 45629 -110.164.192.0/22 45629 -110.164.196.0/24 55514 -110.164.197.0/24 45629 -110.164.198.0/23 45629 -110.164.200.0/24 45455 -110.164.201.0/24 45629 -110.164.202.0/23 45629 -110.164.204.0/22 45629 -110.164.208.0/20 45629 -110.164.224.0/19 45629 -110.165.32.0/22 9535 -110.165.36.0/23 9535 -110.165.38.0/23 56082 -110.165.40.0/24 56082 -110.165.41.0/24 9535 -110.165.42.0/23 9535 -110.165.44.0/24 56082 -110.165.45.0/24 134117 -110.165.46.0/23 56082 -110.165.48.0/23 9535 -110.165.51.0/24 9535 -110.165.52.0/22 9535 -110.165.56.0/21 9535 -110.165.64.0/18 38701 -110.165.128.0/17 4704 -110.166.0.0/15 4134 -110.168.0.0/16 17552 -110.169.0.0/21 7470 -110.169.8.0/21 17552 -110.169.16.0/20 17552 -110.169.32.0/19 17552 -110.169.64.0/19 17552 -110.169.96.0/20 17552 -110.169.112.0/22 7470 -110.169.116.0/22 17552 -110.169.120.0/21 17552 -110.169.128.0/21 7470 -110.169.136.0/23 7470 -110.169.138.0/24 17552 -110.169.139.0/24 7470 -110.169.140.0/22 7470 -110.169.144.0/20 7470 -110.169.160.0/19 7470 -110.169.192.0/18 7470 -110.170.0.0/20 7470 -110.170.16.0/24 7470 -110.170.17.0/24 134438 -110.170.18.0/23 7470 -110.170.20.0/22 7470 -110.170.24.0/21 7470 -110.170.32.0/19 7470 -110.170.64.0/19 7470 -110.170.96.0/20 7470 -110.170.112.0/21 7470 -110.170.120.0/22 7470 -110.170.124.0/24 24344 -110.170.125.0/24 7470 -110.170.126.0/24 7470 -110.170.127.0/24 133063 -110.170.128.0/22 7470 -110.170.132.0/24 7470 -110.170.133.0/24 133907 -110.170.134.0/24 7470 -110.170.135.0/24 132605 -110.170.136.0/24 7470 -110.170.137.0/24 134095 -110.170.138.0/24 24344 -110.170.139.0/24 7470 -110.170.140.0/22 7470 -110.170.144.0/23 7470 -110.170.146.0/24 132821 -110.170.147.0/24 7470 -110.170.148.0/24 133761 -110.170.149.0/24 133764 -110.170.150.0/24 7470 -110.170.151.0/24 133167 -110.170.152.0/24 7470 -110.170.153.0/24 133956 -110.170.154.0/23 7470 -110.170.156.0/24 7470 -110.170.157.0/24 133113 -110.170.158.0/24 134817 -110.170.159.0/24 7470 -110.170.160.0/19 7470 -110.170.192.0/20 7470 -110.170.208.0/21 7470 -110.170.216.0/24 7470 -110.170.217.0/24 132545 -110.170.218.0/24 132545 -110.170.219.0/24 7470 -110.170.220.0/23 7470 -110.170.222.0/24 7470 -110.170.223.0/24 7630 -110.170.224.0/23 7470 -110.170.226.0/24 7470 -110.170.227.0/24 9339 -110.170.228.0/24 134682 -110.170.229.0/24 7470 -110.170.230.0/23 7470 -110.170.232.0/21 7470 -110.170.240.0/23 7470 -110.170.242.0/24 56112 -110.170.243.0/24 7470 -110.170.244.0/24 133376 -110.170.245.0/24 7470 -110.170.246.0/24 55476 -110.170.247.0/24 7470 -110.170.248.0/24 7470 -110.170.249.0/24 133529 -110.170.250.0/23 7470 -110.170.252.0/22 7470 -110.171.0.0/16 17552 -110.172.0.0/20 23788 -110.172.16.0/21 38207 -110.172.32.0/20 18092 -110.172.48.0/22 7664 -110.172.52.0/22 45775 -110.172.56.0/21 10010 -110.172.64.0/19 3786 -110.172.100.0/22 45996 -110.172.104.0/21 45996 -110.172.112.0/20 45996 -110.172.128.0/23 133275 -110.172.130.0/23 18002 -110.172.132.0/24 18002 -110.172.134.0/23 18002 -110.172.136.0/24 18002 -110.172.137.0/24 133647 -110.172.138.0/23 18002 -110.172.140.0/24 18002 -110.172.141.0/24 133647 -110.172.142.0/24 133647 -110.172.143.0/24 18002 -110.172.144.0/24 133647 -110.172.145.0/24 18002 -110.172.146.0/23 18002 -110.172.148.0/24 133676 -110.172.149.0/24 18002 -110.172.150.0/23 18002 -110.172.152.0/21 18002 -110.172.160.0/23 18002 -110.172.162.0/24 18002 -110.172.163.0/24 133647 -110.172.165.0/24 18002 -110.172.166.0/23 18002 -110.172.168.0/22 18002 -110.172.172.0/24 133647 -110.172.173.0/24 18002 -110.172.174.0/23 18002 -110.172.176.0/24 18002 -110.172.179.0/24 18002 -110.172.180.0/23 18002 -110.172.182.0/24 18002 -110.172.184.0/24 18002 -110.172.186.0/23 18002 -110.172.188.0/24 133647 -110.172.189.0/24 18002 -110.172.191.0/24 18002 -110.172.192.0/20 23724 -110.172.211.0/24 23724 -110.172.213.0/24 23724 -110.172.214.0/23 23724 -110.172.216.0/24 4808 -110.172.217.0/24 23724 -110.172.221.0/24 23724 -110.172.224.0/19 4808 -110.173.0.0/22 4808 -110.173.32.0/20 23724 -110.173.48.0/20 45753 -110.173.96.0/19 63889 -110.173.128.0/19 55803 -110.173.160.0/20 132040 -110.173.176.0/20 17426 -110.173.192.0/19 37963 -110.173.224.0/22 45926 -110.173.228.0/22 56035 -110.173.232.0/21 45780 -110.173.240.0/20 4721 -110.174.0.0/15 7545 -110.176.0.0/13 4134 -110.184.0.0/16 4134 -110.185.0.0/18 4134 -110.185.64.0/19 4134 -110.185.96.0/22 4134 -110.185.100.0/22 38283 -110.185.104.0/21 38283 -110.185.112.0/20 38283 -110.185.128.0/19 4134 -110.185.160.0/20 4134 -110.185.176.0/21 4134 -110.185.184.0/22 38283 -110.185.188.0/22 4134 -110.185.192.0/18 4134 -110.186.0.0/15 4134 -110.188.0.0/24 38283 -110.188.1.0/24 4134 -110.188.2.0/23 38283 -110.188.4.0/22 4134 -110.188.8.0/21 4134 -110.188.16.0/22 4134 -110.188.20.0/22 38283 -110.188.24.0/21 4134 -110.188.32.0/19 4134 -110.188.64.0/18 4134 -110.188.128.0/17 4134 -110.189.0.0/16 4134 -110.190.0.0/16 4134 -110.191.0.0/17 4134 -110.191.128.0/23 4134 -110.191.130.0/24 4134 -110.191.131.0/24 38283 -110.191.132.0/22 4134 -110.191.136.0/21 4134 -110.191.144.0/20 4134 -110.191.160.0/19 4134 -110.191.192.0/18 4134 -110.192.0.0/15 9394 -110.194.0.0/15 45069 -110.196.0.0/18 45069 -110.196.64.0/19 45069 -110.196.96.0/21 45069 -110.196.104.0/21 9394 -110.196.112.0/22 45069 -110.196.116.0/22 9394 -110.196.120.0/21 9394 -110.196.128.0/19 45069 -110.196.160.0/22 45069 -110.196.164.0/22 9394 -110.196.168.0/21 45069 -110.196.176.0/20 9394 -110.196.192.0/18 45069 -110.197.0.0/16 63711 -110.198.0.0/16 63711 -110.199.0.0/16 9394 -110.200.0.0/13 9394 -110.208.0.0/16 9394 -110.209.0.0/17 9394 -110.209.128.0/18 9394 -110.209.192.0/19 9394 -110.209.224.0/20 9394 -110.209.240.0/21 9394 -110.209.248.0/22 9394 -110.209.252.0/24 38370 -110.209.253.0/24 9394 -110.209.254.0/23 9394 -110.210.0.0/16 9394 -110.211.0.0/16 38370 -110.212.0.0/14 9394 -110.216.0.0/16 9394 -110.217.0.0/16 9808 -110.218.0.0/15 9394 -110.220.0.0/15 9394 -110.222.0.0/16 9394 -110.223.0.0/16 45069 -110.224.0.0/19 45609 -110.224.32.0/22 45609 -110.224.40.0/22 45609 -110.224.48.0/22 45609 -110.224.56.0/22 45609 -110.224.128.0/20 24560 -110.224.144.0/20 45609 -110.224.192.0/19 24560 -110.225.0.0/19 24560 -110.225.32.0/19 45609 -110.225.64.0/19 45609 -110.225.192.0/18 24560 -110.227.64.0/18 24560 -110.227.128.0/17 24560 -110.228.0.0/14 4837 -110.232.0.0/19 4721 -110.232.32.0/19 4847 -110.232.64.0/21 23679 -110.232.72.0/24 23679 -110.232.73.0/24 138841 -110.232.74.0/23 138841 -110.232.76.0/23 138841 -110.232.78.0/24 23679 -110.232.79.0/24 138841 -110.232.80.0/21 23679 -110.232.88.0/23 138841 -110.232.90.0/23 23679 -110.232.92.0/22 23679 -110.232.96.0/22 3786 -110.232.112.0/22 133159 -110.232.116.0/22 56038 -110.232.120.0/21 10015 -110.232.128.0/21 4721 -110.232.136.0/22 24279 -110.232.140.0/22 45638 -110.232.144.0/22 58444 -110.232.148.0/24 38456 -110.232.150.0/23 38456 -110.232.152.0/21 2527 -110.232.160.0/20 9370 -110.232.176.0/23 15133 -110.232.178.0/24 15133 -110.232.180.0/22 18120 -110.232.184.0/22 45744 -110.232.188.0/22 64093 -110.232.192.0/19 17941 -110.232.224.0/21 7672 -110.232.232.0/22 7672 -110.232.236.0/22 17957 -110.232.240.0/21 17551 -110.232.248.0/22 45232 -110.232.252.0/23 45232 -110.232.254.0/24 45232 -110.232.255.0/24 4 -110.233.0.0/16 2518 -110.234.0.0/19 135354 -110.234.32.0/22 135354 -110.234.64.0/18 23576 -110.234.128.0/18 135354 -110.234.240.0/22 23576 -110.234.244.0/24 23576 -110.234.248.0/21 23576 -110.235.0.0/17 9269 -110.235.194.0/24 135777 -110.235.200.0/24 135777 -110.235.202.0/24 135777 -110.235.208.0/22 135777 -110.235.212.0/23 135777 -110.235.215.0/24 135777 -110.235.220.0/22 9902 -110.235.236.0/22 55507 -110.235.240.0/20 23673 -110.236.0.0/15 9808 -110.238.0.0/23 17667 -110.238.2.0/23 9723 -110.238.4.0/22 9723 -110.238.8.0/21 9723 -110.238.16.0/20 9723 -110.238.32.0/19 17899 -110.238.64.0/18 17899 -110.238.128.0/19 9723 -110.238.160.0/21 9723 -110.238.168.0/24 17899 -110.238.169.0/24 9723 -110.238.170.0/23 9723 -110.238.172.0/22 9723 -110.238.176.0/20 9723 -110.238.192.0/18 9723 -110.239.0.0/16 9723 -110.240.0.0/12 4837 -111.0.0.0/14 56041 -111.4.0.0/16 9808 -111.5.0.0/16 24445 -111.6.0.0/15 24445 -111.8.0.0/16 56047 -111.9.0.0/16 9808 -111.10.0.0/16 9808 -111.11.0.0/17 24547 -111.11.128.0/17 9808 -111.12.0.0/15 9808 -111.14.0.0/15 24444 -111.16.0.0/15 24444 -111.18.0.0/15 9808 -111.20.0.0/15 9808 -111.22.0.0/15 56047 -111.24.0.0/16 9808 -111.25.0.0/16 134810 -111.26.0.0/15 134810 -111.28.0.0/15 9808 -111.30.0.0/17 38019 -111.30.128.0/19 9808 -111.30.160.0/21 9808 -111.30.168.0/23 38019 -111.30.170.0/24 38019 -111.30.171.0/24 9808 -111.30.172.0/22 9808 -111.30.176.0/21 9808 -111.30.184.0/23 9808 -111.30.186.0/24 9808 -111.30.187.0/24 38019 -111.30.188.0/22 38019 -111.30.192.0/18 38019 -111.31.0.0/17 38019 -111.31.128.0/18 38019 -111.31.192.0/19 38019 -111.31.224.0/20 38019 -111.31.240.0/21 38019 -111.31.248.0/22 38019 -111.31.252.0/23 38019 -111.31.254.0/24 38019 -111.31.255.0/24 9808 -111.32.0.0/15 38019 -111.34.0.0/15 24444 -111.36.0.0/15 24444 -111.38.0.0/15 9808 -111.40.0.0/14 132525 -111.44.0.0/16 9808 -111.45.0.0/17 56040 -111.45.128.0/17 56044 -111.46.0.0/15 9808 -111.48.0.0/14 9808 -111.52.0.0/15 56042 -111.54.0.0/15 9808 -111.56.0.0/14 9808 -111.60.0.0/16 9808 -111.61.0.0/16 24547 -111.62.0.0/15 24547 -111.64.0.0/16 2510 -111.65.31.0/24 45143 -111.65.32.0/19 45143 -111.65.64.0/20 45143 -111.65.101.0/24 9506 -111.65.102.0/23 3758 -111.65.104.0/21 3758 -111.65.112.0/20 3758 -111.65.128.0/18 17573 -111.65.192.0/19 9614 -111.65.224.0/20 56030 -111.65.240.0/21 45894 -111.65.248.0/22 45894 -111.65.252.0/23 45894 -111.65.255.0/24 45894 -111.66.20.0/24 133948 -111.66.101.0/24 138449 -111.66.179.0/24 24155 -111.67.0.0/19 45454 -111.67.32.0/21 17666 -111.67.42.0/23 17666 -111.67.44.0/22 17666 -111.67.48.0/20 17809 -111.67.64.0/21 45786 -111.67.72.0/24 45786 -111.67.73.0/24 56233 -111.67.74.0/23 45786 -111.67.76.0/24 56233 -111.67.77.0/24 45786 -111.67.78.0/23 45786 -111.67.80.0/20 45786 -111.67.96.0/20 45348 -111.67.112.0/20 10010 -111.67.128.0/18 7524 -111.67.192.0/20 4808 -111.67.208.0/20 38676 -111.68.0.0/20 45753 -111.68.16.0/21 63997 -111.68.24.0/21 55666 -111.68.32.0/19 23944 -111.68.96.0/20 45773 -111.68.112.0/20 45287 -111.69.0.0/16 23655 -111.70.0.0/18 17421 -111.71.0.0/17 17421 -111.71.128.0/18 17421 -111.71.193.0/24 17421 -111.71.194.0/23 17421 -111.71.196.0/23 17421 -111.71.200.0/21 17421 -111.71.208.0/23 17421 -111.71.212.0/22 17421 -111.71.216.0/21 17421 -111.71.224.0/22 17421 -111.71.228.0/23 17421 -111.71.230.0/24 17421 -111.71.240.0/24 17421 -111.71.242.0/23 17421 -111.71.248.0/23 17421 -111.71.254.0/24 17421 -111.72.0.0/15 4134 -111.74.0.0/18 4134 -111.74.64.0/19 4134 -111.74.96.0/20 4134 -111.74.112.0/21 4134 -111.74.120.0/22 139201 -111.74.124.0/22 4134 -111.74.128.0/17 4134 -111.75.0.0/16 4134 -111.76.0.0/14 4134 -111.82.0.0/15 17421 -111.84.0.0/19 9587 -111.84.32.0/20 9587 -111.84.48.0/22 24378 -111.84.52.0/22 17724 -111.84.56.0/21 9587 -111.84.64.0/19 9587 -111.84.96.0/20 9587 -111.84.112.0/24 24378 -111.84.113.0/24 9587 -111.84.114.0/23 9587 -111.84.116.0/22 9587 -111.84.120.0/21 9587 -111.84.128.0/19 9587 -111.84.160.0/20 9587 -111.84.176.0/24 24378 -111.84.177.0/24 9587 -111.84.178.0/23 17724 -111.84.180.0/23 17724 -111.84.182.0/23 9587 -111.84.184.0/21 9587 -111.84.192.0/19 9587 -111.84.224.0/20 9587 -111.84.240.0/24 24378 -111.84.241.0/24 9587 -111.84.242.0/23 9587 -111.84.244.0/22 9587 -111.84.248.0/21 9587 -111.85.0.0/16 4837 -111.86.0.0/15 2516 -111.88.0.0/18 132165 -111.88.64.0/21 132165 -111.88.72.0/22 132165 -111.88.76.0/23 38616 -111.88.78.0/24 132165 -111.88.79.0/24 38710 -111.88.80.0/20 132165 -111.88.96.0/19 132165 -111.88.128.0/21 132165 -111.88.136.0/23 132165 -111.88.140.0/22 132165 -111.88.160.0/22 132165 -111.88.172.0/22 132165 -111.88.176.0/21 132165 -111.88.192.0/19 132165 -111.88.224.0/21 132165 -111.88.232.0/21 38710 -111.88.240.0/20 38710 -111.89.0.0/16 2514 -111.90.0.0/17 4721 -111.90.128.0/20 45839 -111.90.144.0/21 45839 -111.90.152.0/22 45839 -111.90.156.0/24 201133 -111.90.157.0/24 55639 -111.90.158.0/23 45839 -111.90.160.0/21 23639 -111.90.168.0/21 45117 -111.90.176.0/20 38235 -111.90.192.0/18 23939 -111.91.0.0/17 38457 -111.91.128.0/20 23576 -111.91.144.0/20 38673 -111.91.160.0/19 38673 -111.91.224.0/21 38571 -111.91.232.0/22 45896 -111.91.236.0/22 131188 -111.91.240.0/20 10000 -111.92.0.0/17 17465 -111.92.128.0/19 45814 -111.92.162.0/23 38506 -111.92.164.0/24 23671 -111.92.166.0/24 23671 -111.92.168.0/24 23671 -111.92.169.0/24 55655 -111.92.170.0/24 55655 -111.92.173.0/24 23671 -111.92.175.0/24 23671 -111.92.176.0/23 38456 -111.92.178.0/24 4913 -111.92.179.0/24 38456 -111.92.180.0/22 56050 -111.92.184.0/22 26658 -111.92.188.0/22 9952 -111.92.225.0/24 45816 -111.92.226.0/24 45816 -111.92.227.0/24 55480 -111.92.228.0/22 45816 -111.92.232.0/21 45816 -111.92.240.0/22 45429 -111.92.244.0/22 38638 -111.93.0.0/18 45820 -111.93.64.0/19 45820 -111.93.96.0/21 45820 -111.93.105.0/24 45820 -111.93.106.0/23 45820 -111.93.108.0/22 45820 -111.93.113.0/24 45820 -111.93.114.0/23 45820 -111.93.116.0/22 45820 -111.93.120.0/21 45820 -111.93.128.0/18 45820 -111.93.192.0/20 45820 -111.93.210.0/23 45820 -111.93.213.0/24 45820 -111.93.214.0/23 45820 -111.93.216.0/21 45820 -111.93.224.0/20 45820 -111.93.240.0/21 45820 -111.93.249.0/24 45820 -111.93.250.0/23 45820 -111.93.252.0/23 45820 -111.94.0.0/16 23700 -111.95.0.0/17 23700 -111.95.128.0/18 23700 -111.95.192.0/19 23700 -111.95.224.0/20 23700 -111.95.240.0/22 23700 -111.95.244.0/22 7632 -111.95.248.0/23 55673 -111.95.250.0/23 23700 -111.95.252.0/22 23700 -111.96.0.0/12 2516 -111.112.0.0/15 4134 -111.114.0.0/15 4538 -111.116.0.0/15 4538 -111.118.0.0/23 7562 -111.118.2.0/23 9569 -111.118.4.0/22 9569 -111.118.8.0/21 9569 -111.118.16.0/22 9569 -111.118.20.0/22 7562 -111.118.24.0/21 7562 -111.118.32.0/22 7562 -111.118.36.0/22 9762 -111.118.40.0/22 7562 -111.118.44.0/23 9762 -111.118.46.0/23 9569 -111.118.48.0/22 7562 -111.118.52.0/23 9569 -111.118.54.0/23 9762 -111.118.56.0/23 7562 -111.118.58.0/23 9762 -111.118.60.0/22 9762 -111.118.64.0/20 23584 -111.118.80.0/20 9319 -111.118.96.0/20 10175 -111.118.112.0/20 7623 -111.118.128.0/19 38623 -111.118.160.0/20 55803 -111.118.176.0/20 55470 -111.118.192.0/22 17498 -111.118.196.0/22 38195 -111.118.200.0/21 45110 -111.118.208.0/22 38813 -111.118.212.0/22 394695 -111.118.217.0/24 45780 -111.118.218.0/23 45780 -111.118.220.0/22 56057 -111.118.224.0/20 24507 -111.118.240.0/20 55353 -111.119.0.0/21 22822 -111.119.8.0/22 38622 -111.119.12.0/22 55429 -111.119.16.0/23 22822 -111.119.19.0/24 38621 -111.119.20.0/22 22822 -111.119.24.0/21 22822 -111.119.32.0/19 24550 -111.119.144.0/21 38342 -111.119.160.0/21 132165 -111.119.168.0/21 59257 -111.119.176.0/20 59257 -111.119.192.0/20 45194 -111.119.208.0/24 136334 -111.119.209.0/24 45194 -111.119.210.0/23 45194 -111.119.212.0/24 45194 -111.119.213.0/24 136334 -111.119.214.0/23 45194 -111.119.216.0/21 45194 -111.119.224.0/19 45194 -111.120.0.0/15 4134 -111.122.0.0/16 4134 -111.123.0.0/19 4134 -111.123.32.0/20 4134 -111.123.48.0/22 4134 -111.123.52.0/24 4134 -111.123.53.0/24 139203 -111.123.54.0/23 139203 -111.123.56.0/21 139203 -111.123.64.0/18 4134 -111.123.128.0/17 4134 -111.124.0.0/16 4134 -111.125.0.0/18 24276 -111.125.64.0/20 17639 -111.125.80.0/22 17639 -111.125.84.0/24 18190 -111.125.85.0/24 17639 -111.125.86.0/23 17639 -111.125.88.0/21 17639 -111.125.96.0/19 17639 -111.125.128.0/21 131584 -111.125.136.0/21 45232 -111.125.144.0/21 18134 -111.125.152.0/23 45178 -111.125.159.0/24 45178 -111.125.160.0/23 45577 -111.125.162.0/23 132071 -111.125.164.0/23 132071 -111.125.168.0/21 45577 -111.125.177.0/24 7551 -111.125.178.0/24 7551 -111.125.181.0/24 7551 -111.125.184.0/23 7551 -111.125.192.0/23 45648 -111.125.194.0/23 45117 -111.125.196.0/22 137098 -111.125.200.0/21 45648 -111.125.208.0/22 45769 -111.125.212.0/24 45648 -111.125.213.0/24 45769 -111.125.216.0/24 45769 -111.125.217.0/24 55352 -111.125.218.0/23 55352 -111.125.220.0/23 45769 -111.125.224.0/24 55352 -111.125.225.0/24 133001 -111.125.226.0/24 55352 -111.125.227.0/24 45769 -111.125.228.0/24 55352 -111.125.229.0/24 45769 -111.125.230.0/24 45769 -111.125.232.0/24 45769 -111.125.233.0/24 55352 -111.125.234.0/23 45769 -111.125.236.0/24 24554 -111.125.237.0/24 45769 -111.125.240.0/24 45769 -111.125.241.0/24 24554 -111.125.242.0/24 24554 -111.125.243.0/24 45769 -111.125.244.0/24 132137 -111.125.245.0/24 45769 -111.125.247.0/24 58678 -111.125.248.0/24 45769 -111.125.249.0/24 24554 -111.125.250.0/23 45117 -111.125.252.0/22 55352 -111.126.0.0/15 4134 -111.128.0.0/19 9808 -111.128.32.0/21 9808 -111.128.40.0/21 9394 -111.128.48.0/20 9808 -111.128.64.0/19 9394 -111.128.96.0/20 9808 -111.128.112.0/20 9394 -111.128.128.0/19 9394 -111.128.160.0/20 9394 -111.128.176.0/21 9394 -111.128.184.0/21 9808 -111.128.192.0/18 9394 -111.129.0.0/16 9394 -111.130.0.0/15 9394 -111.132.0.0/16 24138 -111.133.0.0/16 9394 -111.134.0.0/15 9394 -111.136.0.0/16 134810 -111.137.0.0/16 38341 -111.138.0.0/15 9394 -111.140.0.0/15 9394 -111.142.0.0/20 9808 -111.142.16.0/22 9394 -111.142.20.0/23 9808 -111.142.22.0/23 9394 -111.142.24.0/22 9808 -111.142.28.0/23 9808 -111.142.30.0/23 9394 -111.142.32.0/21 9808 -111.142.40.0/21 9394 -111.142.48.0/20 9394 -111.142.64.0/20 9394 -111.142.80.0/20 9808 -111.142.96.0/20 9808 -111.142.112.0/22 9394 -111.142.116.0/22 9808 -111.142.120.0/21 9808 -111.142.128.0/21 9808 -111.142.136.0/22 9808 -111.142.140.0/22 9394 -111.142.144.0/20 9394 -111.142.160.0/19 9394 -111.142.192.0/18 9808 -111.143.0.0/19 9808 -111.143.32.0/21 9394 -111.143.40.0/21 9808 -111.143.48.0/22 9808 -111.143.52.0/22 9394 -111.143.56.0/21 9808 -111.143.64.0/21 9808 -111.143.72.0/22 9808 -111.143.76.0/22 9394 -111.143.80.0/20 9394 -111.143.96.0/21 9394 -111.143.104.0/21 9808 -111.143.112.0/20 9394 -111.143.128.0/19 9394 -111.143.160.0/22 9394 -111.143.164.0/22 9808 -111.143.168.0/21 9808 -111.143.176.0/20 9808 -111.143.192.0/21 9394 -111.143.200.0/21 9808 -111.143.208.0/20 9808 -111.143.224.0/20 9394 -111.143.240.0/20 9808 -111.144.0.0/20 9808 -111.144.16.0/21 9808 -111.144.24.0/22 9808 -111.144.28.0/22 9394 -111.144.32.0/19 9394 -111.144.64.0/19 9808 -111.144.96.0/20 9808 -111.144.112.0/21 9808 -111.144.120.0/21 9394 -111.144.128.0/18 9808 -111.144.192.0/21 9808 -111.144.200.0/21 9394 -111.144.208.0/21 9394 -111.144.216.0/22 9394 -111.144.220.0/22 9808 -111.144.224.0/20 9808 -111.144.240.0/20 9394 -111.145.0.0/20 9808 -111.145.16.0/20 9394 -111.145.32.0/20 9808 -111.145.48.0/20 9394 -111.145.64.0/20 9808 -111.145.80.0/20 9394 -111.145.96.0/19 9808 -111.145.128.0/20 9394 -111.145.144.0/21 9394 -111.145.152.0/21 9808 -111.145.160.0/21 9394 -111.145.168.0/21 9808 -111.145.176.0/21 9394 -111.145.184.0/21 9808 -111.145.192.0/22 9394 -111.145.196.0/22 9808 -111.145.200.0/21 9808 -111.145.208.0/20 9808 -111.145.224.0/21 9394 -111.145.232.0/22 9394 -111.145.236.0/22 9808 -111.145.240.0/21 9394 -111.145.248.0/21 9808 -111.146.0.0/20 9808 -111.146.16.0/21 9808 -111.146.24.0/21 9394 -111.146.32.0/19 9808 -111.146.64.0/19 9394 -111.146.96.0/20 9808 -111.146.112.0/20 9394 -111.146.128.0/18 9394 -111.146.192.0/18 9808 -111.147.0.0/18 9394 -111.147.64.0/18 9808 -111.147.128.0/19 9394 -111.147.160.0/19 9808 -111.147.192.0/19 9808 -111.147.224.0/21 9808 -111.147.232.0/21 9394 -111.147.240.0/20 9394 -111.148.0.0/16 38370 -111.149.0.0/16 9394 -111.151.0.0/17 9394 -111.151.128.0/19 9394 -111.151.160.0/20 9394 -111.151.176.0/21 9394 -111.151.184.0/22 9394 -111.151.188.0/22 38370 -111.151.192.0/18 9394 -111.152.0.0/15 9394 -111.154.0.0/16 9394 -111.155.0.0/16 9808 -111.156.0.0/14 9394 -111.160.0.0/13 4837 -111.168.0.0/15 2518 -111.170.0.0/16 4134 -111.171.0.0/18 38109 -111.171.64.0/19 38109 -111.171.96.0/21 38109 -111.171.104.0/22 38109 -111.171.108.0/23 17573 -111.171.110.0/23 38109 -111.171.112.0/20 38109 -111.171.128.0/17 2510 -111.172.0.0/15 4134 -111.174.0.0/20 136194 -111.174.16.0/20 4134 -111.174.32.0/20 4134 -111.174.48.0/21 4134 -111.174.56.0/22 4134 -111.174.60.0/22 136194 -111.174.64.0/18 4134 -111.174.128.0/17 4134 -111.175.0.0/16 4134 -111.176.0.0/16 4134 -111.177.0.0/19 136192 -111.177.32.0/20 136192 -111.177.48.0/20 4134 -111.177.64.0/18 4134 -111.177.128.0/17 4134 -111.178.0.0/17 4134 -111.178.128.0/18 4134 -111.178.192.0/19 4134 -111.178.224.0/21 4134 -111.178.232.0/24 4134 -111.178.233.0/24 136194 -111.178.234.0/24 136194 -111.178.235.0/24 4134 -111.178.236.0/22 4134 -111.178.240.0/20 4134 -111.179.0.0/16 4134 -111.180.0.0/14 4134 -111.184.0.0/15 9416 -111.186.0.0/15 4538 -111.188.0.0/14 37903 -111.192.0.0/13 4808 -111.200.0.0/15 4808 -111.202.0.0/17 4808 -111.202.128.0/18 4808 -111.202.192.0/19 4808 -111.202.224.0/20 4808 -111.202.240.0/23 4808 -111.202.242.0/23 4837 -111.202.244.0/24 4837 -111.202.245.0/24 4808 -111.202.246.0/24 4837 -111.202.247.0/24 4808 -111.202.248.0/21 4808 -111.203.0.0/20 4808 -111.203.16.0/21 4808 -111.203.24.0/23 4808 -111.203.26.0/24 4808 -111.203.27.0/24 4837 -111.203.28.0/22 4808 -111.203.32.0/19 4808 -111.203.64.0/18 4808 -111.203.128.0/17 4808 -111.204.0.0/16 4808 -111.205.0.0/19 4808 -111.205.32.0/22 4808 -111.205.36.0/23 4808 -111.205.38.0/24 4837 -111.205.39.0/24 4808 -111.205.40.0/21 4808 -111.205.48.0/20 4808 -111.205.64.0/18 4808 -111.205.128.0/18 4808 -111.205.192.0/19 4808 -111.205.224.0/20 4808 -111.205.240.0/23 4808 -111.205.242.0/24 4837 -111.205.243.0/24 4808 -111.205.244.0/22 4808 -111.205.248.0/21 4808 -111.206.0.0/15 4808 -111.212.0.0/14 9812 -111.216.0.0/15 2527 -111.218.0.0/15 18302 -111.220.0.0/19 9443 -111.220.32.0/20 9443 -111.220.48.0/20 38285 -111.220.64.0/18 9443 -111.220.128.0/17 9443 -111.221.0.0/21 38031 -111.221.16.0/21 8075 -111.221.24.0/22 8075 -111.221.28.0/24 59067 -111.221.29.0/24 8075 -111.221.30.0/23 8075 -111.221.32.0/21 45396 -111.221.40.0/22 45713 -111.221.44.0/23 63930 -111.221.46.0/24 63930 -111.221.47.0/24 38001 -111.221.48.0/21 38278 -111.221.56.0/24 21734 -111.221.57.0/24 24245 -111.221.58.0/23 24245 -111.221.64.0/18 8075 -111.221.128.0/17 17962 -111.222.0.0/16 17962 -111.223.0.0/22 133989 -111.223.8.0/22 109 -111.223.12.0/22 4837 -111.223.24.0/22 17665 -111.223.32.0/19 23884 -111.223.64.0/18 4657 -111.223.128.0/18 18001 -111.223.192.0/19 56291 -111.223.224.0/20 38880 -111.223.240.0/22 45087 -111.223.244.0/22 38197 -111.223.248.0/24 64050 -111.223.252.0/22 46044 -111.224.0.0/14 4134 -111.229.0.0/16 45090 -111.230.0.0/15 45090 -111.232.0.0/15 10013 -111.234.0.0/19 10013 -111.234.32.0/20 10013 -111.234.52.0/22 10013 -111.234.56.0/21 10013 -111.234.64.0/19 10013 -111.234.112.0/21 10013 -111.234.218.0/23 10013 -111.234.220.0/22 10013 -111.234.224.0/20 10013 -111.234.240.0/22 10013 -111.234.244.0/23 10013 -111.235.0.0/19 10013 -111.235.32.0/22 10013 -111.235.40.0/22 10013 -111.235.44.0/23 10013 -111.235.48.0/20 10013 -111.235.64.0/24 133676 -111.235.65.0/24 133003 -111.235.66.0/23 18002 -111.235.72.0/24 131215 -111.235.74.0/23 131215 -111.235.76.0/22 45676 -111.235.80.0/20 45499 -111.235.128.0/22 134181 -111.235.132.0/22 55303 -111.235.136.0/22 58621 -111.235.140.0/22 135060 -111.235.148.0/22 131463 -111.235.152.0/22 38580 -111.235.156.0/22 58519 -111.235.160.0/23 58448 -111.235.162.0/23 58536 -111.235.164.0/23 58536 -111.235.168.0/23 58536 -111.235.170.0/23 58811 -111.235.172.0/23 58536 -111.235.174.0/24 58536 -111.235.178.0/24 58448 -111.235.180.0/23 58811 -111.235.182.0/24 58811 -111.235.192.0/19 131584 -111.235.224.0/20 131584 -111.235.240.0/23 131584 -111.235.242.0/24 131584 -111.235.244.0/22 131584 -111.235.248.0/21 131584 -111.236.0.0/14 2516 -111.240.0.0/12 3462 -112.0.0.0/14 56046 -112.4.0.0/16 56046 -112.5.0.0/16 9808 -112.6.0.0/15 24444 -112.8.0.0/15 24444 -112.10.0.0/15 56041 -112.12.0.0/14 56041 -112.16.0.0/15 56041 -112.18.0.0/15 9808 -112.20.0.0/14 56046 -112.24.0.0/15 56046 -112.26.0.0/15 9808 -112.28.0.0/14 9808 -112.32.0.0/16 9808 -112.33.0.0/17 9808 -112.33.128.0/18 9808 -112.33.192.0/19 9808 -112.33.224.0/20 9808 -112.33.240.0/21 9808 -112.33.248.0/23 9808 -112.33.250.0/23 56047 -112.33.252.0/22 56047 -112.34.0.0/15 9808 -112.36.0.0/15 24444 -112.38.0.0/16 24444 -112.39.0.0/16 56044 -112.40.0.0/15 56044 -112.42.0.0/16 56044 -112.43.0.0/16 9808 -112.44.0.0/14 9808 -112.48.0.0/14 9808 -112.52.0.0/16 9808 -112.53.0.0/18 56040 -112.53.64.0/19 24444 -112.53.96.0/19 24445 -112.53.128.0/19 56046 -112.53.160.0/20 9808 -112.53.176.0/20 56041 -112.53.192.0/20 24547 -112.53.208.0/20 9808 -112.53.224.0/19 9808 -112.54.0.0/20 56044 -112.54.16.0/20 9808 -112.54.32.0/19 9808 -112.54.64.0/20 9808 -112.54.80.0/21 24444 -112.54.88.0/21 9808 -112.54.96.0/21 56041 -112.54.104.0/21 24547 -112.54.112.0/20 9808 -112.54.128.0/21 56048 -112.54.136.0/21 9808 -112.54.144.0/20 9808 -112.54.160.0/19 9808 -112.54.192.0/21 9808 -112.54.200.0/22 9808 -112.54.204.0/22 56041 -112.54.208.0/21 9808 -112.54.216.0/22 56048 -112.54.220.0/22 9808 -112.54.224.0/19 9808 -112.55.0.0/16 9808 -112.56.0.0/14 9808 -112.60.0.0/18 56040 -112.60.64.0/19 56040 -112.60.96.0/19 9808 -112.60.128.0/17 9808 -112.61.0.0/16 9808 -112.62.0.0/15 9808 -112.64.0.0/19 17621 -112.64.32.0/22 138421 -112.64.36.0/22 17621 -112.64.40.0/21 17621 -112.64.48.0/20 17621 -112.64.64.0/19 17621 -112.64.96.0/20 17621 -112.64.112.0/23 138421 -112.64.114.0/24 17621 -112.64.115.0/24 138421 -112.64.116.0/22 17621 -112.64.120.0/21 17621 -112.64.128.0/18 17621 -112.64.192.0/20 17621 -112.64.208.0/22 17621 -112.64.212.0/24 17621 -112.64.213.0/24 138421 -112.64.214.0/24 17621 -112.64.215.0/24 138421 -112.64.216.0/21 17621 -112.64.224.0/19 17621 -112.65.0.0/18 17621 -112.65.64.0/23 17621 -112.65.66.0/24 138421 -112.65.67.0/24 17621 -112.65.68.0/22 17621 -112.65.72.0/24 17621 -112.65.73.0/24 138421 -112.65.74.0/24 138421 -112.65.75.0/24 17621 -112.65.76.0/22 17621 -112.65.80.0/20 17621 -112.65.96.0/19 17621 -112.65.128.0/17 17621 -112.66.0.0/15 4134 -112.68.0.0/14 17511 -112.72.0.0/20 10219 -112.72.32.0/19 3786 -112.72.64.0/19 45539 -112.72.96.0/21 45539 -112.72.128.0/17 9319 -112.73.0.0/19 135373 -112.73.64.0/18 23650 -112.74.0.0/16 37963 -112.76.0.0/24 9316 -112.76.1.0/24 3786 -112.76.2.0/24 3786 -112.76.3.0/24 9316 -112.76.4.0/23 9316 -112.76.6.0/24 9316 -112.76.7.0/24 3786 -112.76.8.0/21 9316 -112.76.16.0/21 9316 -112.76.24.0/22 9316 -112.76.28.0/24 9316 -112.76.29.0/24 3786 -112.76.30.0/23 9316 -112.76.32.0/20 9316 -112.76.48.0/22 9316 -112.76.52.0/22 3786 -112.76.56.0/22 3786 -112.76.60.0/24 3786 -112.76.61.0/24 9316 -112.76.62.0/24 9316 -112.76.63.0/24 3786 -112.76.64.0/21 9316 -112.76.72.0/24 3786 -112.76.73.0/24 9316 -112.76.74.0/24 9316 -112.76.75.0/24 3786 -112.76.76.0/22 9316 -112.76.80.0/24 3786 -112.76.81.0/24 9316 -112.76.82.0/23 9316 -112.76.84.0/24 9316 -112.76.85.0/24 3786 -112.76.86.0/23 9316 -112.76.88.0/24 3786 -112.76.89.0/24 9316 -112.76.90.0/23 9316 -112.76.92.0/22 9316 -112.76.96.0/22 9316 -112.76.100.0/24 9316 -112.76.101.0/24 3786 -112.76.102.0/23 9316 -112.76.104.0/23 9316 -112.76.106.0/24 9316 -112.76.107.0/24 3786 -112.76.108.0/22 3786 -112.76.112.0/24 3786 -112.76.113.0/24 9316 -112.76.114.0/24 3786 -112.76.115.0/24 9316 -112.76.116.0/22 9316 -112.76.120.0/21 9316 -112.76.128.0/20 9316 -112.76.144.0/21 9316 -112.76.152.0/23 9316 -112.76.154.0/24 9316 -112.76.155.0/24 3786 -112.76.156.0/23 9316 -112.76.158.0/23 3786 -112.76.160.0/22 3786 -112.76.164.0/23 3786 -112.76.166.0/24 9316 -112.76.167.0/24 3786 -112.76.168.0/23 3786 -112.76.170.0/24 3786 -112.76.171.0/24 9316 -112.76.172.0/22 9316 -112.76.176.0/20 9316 -112.76.192.0/22 9316 -112.76.196.0/24 9316 -112.76.197.0/24 3786 -112.76.198.0/24 3786 -112.76.199.0/24 9316 -112.76.200.0/21 3786 -112.76.208.0/24 3786 -112.76.209.0/24 9316 -112.76.210.0/24 9316 -112.76.211.0/24 3786 -112.76.212.0/22 3786 -112.76.216.0/22 3786 -112.76.220.0/23 3786 -112.76.222.0/23 9316 -112.76.224.0/19 9316 -112.77.0.0/20 9316 -112.77.16.0/21 9316 -112.77.24.0/23 9316 -112.77.26.0/24 9316 -112.77.27.0/24 38415 -112.77.28.0/22 9316 -112.77.32.0/19 9316 -112.77.64.0/18 9316 -112.77.128.0/17 9316 -112.78.0.0/20 45538 -112.78.26.0/23 45560 -112.78.32.0/21 55666 -112.78.40.0/21 45302 -112.78.49.0/24 3491 -112.78.52.0/22 131164 -112.78.56.0/21 38325 -112.78.64.0/19 24157 -112.78.104.0/22 45560 -112.78.111.0/24 45593 -112.78.112.0/20 9371 -112.78.128.0/18 17451 -112.78.192.0/21 9371 -112.78.200.0/23 9371 -112.78.202.0/23 7684 -112.78.204.0/22 9371 -112.78.208.0/23 9371 -112.78.210.0/24 9371 -112.78.211.0/24 7684 -112.78.212.0/24 7684 -112.78.213.0/24 9371 -112.78.214.0/23 9371 -112.78.216.0/22 9371 -112.78.220.0/24 10013 -112.78.221.0/24 9371 -112.78.222.0/23 9371 -112.79.32.0/21 38266 -112.79.40.0/22 38266 -112.79.45.0/24 38266 -112.79.47.0/24 38266 -112.79.48.0/20 38266 -112.79.64.0/19 38266 -112.79.96.0/21 38266 -112.79.112.0/20 38266 -112.79.128.0/17 38266 -112.80.0.0/13 4837 -112.88.0.0/16 17816 -112.89.0.0/19 17816 -112.89.32.0/23 17622 -112.89.34.0/24 17622 -112.89.35.0/24 17816 -112.89.36.0/22 17816 -112.89.40.0/24 17623 -112.89.41.0/24 17816 -112.89.42.0/24 17623 -112.89.43.0/24 17816 -112.89.44.0/23 17622 -112.89.46.0/24 17622 -112.89.47.0/24 17816 -112.89.48.0/20 17816 -112.89.64.0/22 17816 -112.89.68.0/23 17623 -112.89.70.0/24 17623 -112.89.71.0/24 17816 -112.89.72.0/21 17816 -112.89.80.0/20 17816 -112.89.96.0/19 17816 -112.89.128.0/17 17816 -112.90.0.0/23 17816 -112.90.2.0/23 136958 -112.90.4.0/22 136958 -112.90.8.0/21 136958 -112.90.16.0/20 17816 -112.90.32.0/22 136958 -112.90.36.0/24 17816 -112.90.37.0/24 136958 -112.90.38.0/24 136958 -112.90.39.0/24 17816 -112.90.40.0/21 17816 -112.90.48.0/20 17816 -112.90.64.0/21 17816 -112.90.72.0/22 17623 -112.90.76.0/23 135061 -112.90.78.0/23 17623 -112.90.80.0/24 17623 -112.90.81.0/24 135061 -112.90.82.0/23 17623 -112.90.84.0/22 135061 -112.90.88.0/21 134543 -112.90.96.0/19 17816 -112.90.128.0/20 17816 -112.90.144.0/21 17816 -112.90.152.0/23 136959 -112.90.154.0/24 136959 -112.90.155.0/24 17816 -112.90.156.0/22 136959 -112.90.160.0/19 17816 -112.90.192.0/20 17816 -112.90.208.0/21 17816 -112.90.216.0/22 134543 -112.90.220.0/23 134543 -112.90.222.0/24 17816 -112.90.223.0/24 134543 -112.90.224.0/19 17816 -112.91.0.0/24 17816 -112.91.1.0/24 17622 -112.91.2.0/24 17622 -112.91.3.0/24 17623 -112.91.4.0/24 17623 -112.91.5.0/24 17816 -112.91.6.0/23 17816 -112.91.8.0/21 17816 -112.91.16.0/20 17816 -112.91.32.0/19 17816 -112.91.64.0/20 17816 -112.91.80.0/21 17816 -112.91.88.0/22 17816 -112.91.92.0/24 134543 -112.91.93.0/24 17816 -112.91.94.0/24 134543 -112.91.95.0/24 17816 -112.91.96.0/19 17816 -112.91.128.0/21 17816 -112.91.136.0/21 17623 -112.91.144.0/20 17816 -112.91.160.0/19 17816 -112.91.192.0/19 17816 -112.91.224.0/23 17623 -112.91.226.0/23 17816 -112.91.228.0/24 17623 -112.91.229.0/24 17816 -112.91.230.0/23 17816 -112.91.232.0/21 17816 -112.91.240.0/20 17816 -112.92.0.0/22 17816 -112.92.4.0/23 17816 -112.92.6.0/23 17622 -112.92.8.0/23 17623 -112.92.10.0/23 17816 -112.92.12.0/24 17816 -112.92.13.0/24 136959 -112.92.14.0/23 17816 -112.92.16.0/20 17816 -112.92.32.0/19 17816 -112.92.64.0/18 17816 -112.92.128.0/17 17816 -112.93.0.0/18 17816 -112.93.64.0/19 17816 -112.93.96.0/20 17816 -112.93.112.0/21 136959 -112.93.120.0/21 17816 -112.93.128.0/17 17816 -112.94.0.0/16 17622 -112.95.0.0/17 17623 -112.95.128.0/21 17623 -112.95.136.0/23 17623 -112.95.138.0/24 17623 -112.95.139.0/24 135061 -112.95.140.0/22 17623 -112.95.144.0/20 17623 -112.95.160.0/19 17623 -112.95.192.0/19 17623 -112.95.224.0/21 17623 -112.95.232.0/23 17623 -112.95.234.0/24 135061 -112.95.235.0/24 17623 -112.95.236.0/22 17623 -112.95.240.0/23 135061 -112.95.242.0/24 17623 -112.95.243.0/24 135061 -112.95.244.0/22 17623 -112.95.248.0/21 17623 -112.96.0.0/21 17816 -112.96.8.0/24 134543 -112.96.9.0/24 17816 -112.96.10.0/23 17816 -112.96.12.0/22 17816 -112.96.16.0/21 17816 -112.96.24.0/23 17622 -112.96.26.0/23 17816 -112.96.28.0/22 17622 -112.96.32.0/19 17622 -112.96.64.0/19 17816 -112.96.96.0/19 17622 -112.96.128.0/18 17622 -112.96.192.0/19 17816 -112.96.224.0/20 17816 -112.96.240.0/20 17622 -112.97.0.0/20 17816 -112.97.16.0/21 17816 -112.97.24.0/22 17816 -112.97.28.0/23 17816 -112.97.30.0/24 17623 -112.97.31.0/24 17816 -112.97.32.0/22 17816 -112.97.36.0/22 17623 -112.97.40.0/22 17623 -112.97.44.0/22 17816 -112.97.48.0/20 17623 -112.97.64.0/20 17623 -112.97.80.0/21 17623 -112.97.88.0/21 17816 -112.97.96.0/19 17816 -112.97.128.0/18 17816 -112.97.192.0/20 17816 -112.97.208.0/20 134543 -112.97.224.0/20 17816 -112.97.240.0/20 134543 -112.98.0.0/15 4134 -112.100.0.0/15 17897 -112.102.0.0/15 4134 -112.104.0.0/16 4780 -112.105.0.0/18 18049 -112.105.64.0/18 4780 -112.105.128.0/17 4780 -112.106.0.0/15 6619 -112.108.0.0/22 6619 -112.108.4.0/23 6619 -112.108.6.0/24 6619 -112.108.7.0/24 9318 -112.108.8.0/23 6619 -112.108.10.0/24 6619 -112.108.11.0/24 38130 -112.108.12.0/23 38130 -112.108.14.0/24 38130 -112.108.15.0/24 6619 -112.108.16.0/20 6619 -112.108.32.0/19 6619 -112.108.64.0/18 6619 -112.108.128.0/17 6619 -112.109.0.0/20 9370 -112.109.16.0/22 24521 -112.109.20.0/23 24521 -112.109.22.0/24 24521 -112.109.24.0/21 2519 -112.109.32.0/19 45361 -112.109.64.0/20 45459 -112.109.80.0/21 45459 -112.109.88.0/21 55309 -112.109.96.0/19 38224 -112.109.128.0/17 4837 -112.110.0.0/19 45271 -112.110.32.0/23 45271 -112.110.37.0/24 45271 -112.110.48.0/23 45271 -112.110.51.0/24 45271 -112.110.64.0/20 45271 -112.110.85.0/24 45271 -112.110.86.0/23 45271 -112.110.88.0/24 45271 -112.110.90.0/24 45271 -112.110.92.0/23 45271 -112.110.94.0/24 45271 -112.110.96.0/19 45271 -112.110.144.0/24 45271 -112.110.160.0/24 45271 -112.110.176.0/20 45271 -112.110.192.0/24 45271 -112.110.208.0/20 45271 -112.110.224.0/20 45271 -112.110.240.0/23 45271 -112.110.242.0/24 45271 -112.110.245.0/24 45271 -112.110.246.0/23 45271 -112.110.249.0/24 45271 -112.110.250.0/24 45271 -112.110.252.0/23 45271 -112.111.0.0/16 4837 -112.112.0.0/16 4134 -112.113.0.0/17 4134 -112.113.128.0/18 4134 -112.113.192.0/19 4134 -112.113.224.0/20 4134 -112.113.240.0/21 4134 -112.113.248.0/22 134766 -112.113.252.0/22 4134 -112.114.0.0/15 4134 -112.116.0.0/16 4134 -112.117.0.0/17 4134 -112.117.128.0/18 4134 -112.117.192.0/20 4134 -112.117.208.0/20 134765 -112.117.224.0/19 4134 -112.118.0.0/15 4760 -112.120.0.0/16 4760 -112.121.0.0/19 18310 -112.121.36.0/23 45560 -112.121.42.0/24 3491 -112.121.48.0/20 45625 -112.121.64.0/19 7532 -112.121.96.0/21 7532 -112.121.104.0/22 7532 -112.121.108.0/23 7532 -112.121.110.0/23 45761 -112.121.112.0/22 7532 -112.121.116.0/23 7532 -112.121.118.0/23 45761 -112.121.120.0/22 7532 -112.121.124.0/22 45761 -112.121.128.0/19 23884 -112.121.160.0/19 45753 -112.121.192.0/18 10054 -112.122.0.0/15 4837 -112.124.0.0/14 37963 -112.128.0.0/14 7641 -112.132.0.0/16 4837 -112.133.0.0/17 9946 -112.133.128.0/18 10054 -112.133.192.0/23 24186 -112.133.194.0/24 45851 -112.133.195.0/24 24186 -112.133.196.0/22 24186 -112.133.200.0/21 24186 -112.133.208.0/21 24186 -112.133.216.0/24 24186 -112.133.217.0/24 135750 -112.133.218.0/23 24186 -112.133.220.0/22 24186 -112.133.224.0/22 24186 -112.133.228.0/23 24186 -112.133.230.0/24 135750 -112.133.231.0/24 24186 -112.133.232.0/23 24186 -112.133.234.0/24 135750 -112.133.235.0/24 24186 -112.133.236.0/22 24186 -112.133.240.0/24 24186 -112.133.241.0/24 45851 -112.133.242.0/23 24186 -112.133.244.0/22 24186 -112.133.248.0/22 24186 -112.133.252.0/23 24186 -112.133.254.0/24 24186 -112.133.255.0/24 135750 -112.134.0.0/15 9329 -112.136.0.0/17 17676 -112.136.128.0/17 17877 -112.137.16.0/20 45590 -112.137.32.0/20 4721 -112.137.56.0/21 18126 -112.137.64.0/18 4721 -112.137.128.0/20 45542 -112.137.144.0/20 18092 -112.137.160.0/20 17971 -112.137.176.0/21 18401 -112.137.184.0/21 23637 -112.137.192.0/18 10010 -112.138.0.0/15 10010 -112.140.0.0/19 10010 -112.140.32.0/19 23637 -112.140.64.0/18 38109 -112.140.128.0/20 24121 -112.140.144.0/21 38424 -112.140.152.0/21 7624 -112.140.160.0/21 45708 -112.140.168.0/21 7676 -112.140.176.0/23 45638 -112.140.180.0/22 45638 -112.140.184.0/22 45634 -112.140.188.0/23 131215 -112.140.191.0/24 131215 -112.140.192.0/18 18318 -112.141.0.0/16 9443 -112.144.0.0/12 17858 -112.160.0.0/16 4766 -112.161.0.0/19 4766 -112.161.32.0/20 4766 -112.161.48.0/21 4766 -112.161.56.0/22 4766 -112.161.60.0/23 4766 -112.161.62.0/24 4766 -112.161.63.0/24 9972 -112.161.64.0/18 4766 -112.161.128.0/19 4766 -112.161.160.0/20 4766 -112.161.176.0/21 4766 -112.161.184.0/22 4766 -112.161.188.0/23 4766 -112.161.190.0/24 4766 -112.161.191.0/24 46000 -112.161.192.0/18 4766 -112.162.0.0/22 4766 -112.162.4.0/22 9708 -112.162.8.0/21 4766 -112.162.16.0/20 4766 -112.162.32.0/19 4766 -112.162.64.0/18 4766 -112.162.128.0/17 4766 -112.163.0.0/16 4766 -112.164.0.0/14 4766 -112.168.0.0/15 4766 -112.170.0.0/20 4766 -112.170.16.0/22 4766 -112.170.20.0/24 10167 -112.170.21.0/24 4766 -112.170.22.0/23 4766 -112.170.24.0/21 4766 -112.170.32.0/20 4766 -112.170.48.0/23 4766 -112.170.50.0/24 4766 -112.170.51.0/24 45993 -112.170.52.0/22 4766 -112.170.56.0/21 4766 -112.170.64.0/18 4766 -112.170.128.0/17 4766 -112.171.0.0/21 4766 -112.171.8.0/22 4766 -112.171.12.0/22 9530 -112.171.16.0/24 45391 -112.171.17.0/24 4766 -112.171.18.0/23 4766 -112.171.20.0/22 4766 -112.171.24.0/21 4766 -112.171.32.0/19 4766 -112.171.64.0/19 4766 -112.171.96.0/20 4766 -112.171.112.0/22 4766 -112.171.116.0/24 4766 -112.171.117.0/24 9530 -112.171.118.0/23 4766 -112.171.120.0/21 4766 -112.171.128.0/20 4766 -112.171.144.0/20 45403 -112.171.160.0/20 45403 -112.171.176.0/20 4766 -112.171.192.0/18 4766 -112.172.0.0/15 4766 -112.174.0.0/16 4766 -112.175.0.0/19 4766 -112.175.32.0/20 4766 -112.175.48.0/21 4766 -112.175.56.0/22 4766 -112.175.60.0/23 4766 -112.175.62.0/24 38688 -112.175.63.0/24 4766 -112.175.64.0/18 4766 -112.175.128.0/18 4766 -112.175.192.0/19 4766 -112.175.224.0/20 4766 -112.175.240.0/21 4766 -112.175.248.0/24 38688 -112.175.249.0/24 4766 -112.175.250.0/23 4766 -112.175.252.0/22 4766 -112.176.0.0/13 4766 -112.184.0.0/17 4766 -112.184.128.0/19 4766 -112.184.160.0/20 4766 -112.184.176.0/23 4766 -112.184.178.0/24 55615 -112.184.179.0/24 4766 -112.184.180.0/22 4766 -112.184.184.0/21 4766 -112.184.192.0/18 4766 -112.185.0.0/16 4766 -112.186.0.0/15 4766 -112.188.0.0/14 4766 -112.192.0.0/14 4837 -112.196.0.0/17 17917 -112.196.128.0/18 45184 -112.196.193.0/24 55592 -112.196.195.0/24 55592 -112.196.201.0/24 136209 -112.196.202.0/24 55592 -112.196.204.0/24 55592 -112.196.206.0/23 55592 -112.196.208.0/23 4766 -112.196.210.0/23 55592 -112.196.212.0/24 55592 -112.196.217.0/24 55592 -112.196.224.0/19 9658 -112.197.0.0/16 45543 -112.198.0.0/20 4775 -112.198.16.0/21 4775 -112.198.24.0/23 32399 -112.198.26.0/23 4775 -112.198.28.0/23 4775 -112.198.30.0/24 4797 -112.198.31.0/24 4775 -112.198.32.0/20 4775 -112.198.48.0/24 18115 -112.198.49.0/24 4775 -112.198.50.0/23 4775 -112.198.52.0/22 4775 -112.198.56.0/21 4775 -112.198.64.0/23 4775 -112.198.66.0/24 4775 -112.198.67.0/24 132199 -112.198.68.0/22 4775 -112.198.72.0/21 4775 -112.198.80.0/24 4775 -112.198.81.0/24 132199 -112.198.82.0/23 4775 -112.198.84.0/22 132199 -112.198.88.0/23 4775 -112.198.90.0/24 4775 -112.198.91.0/24 132199 -112.198.92.0/22 4775 -112.198.96.0/20 132199 -112.198.112.0/21 132199 -112.198.120.0/23 132199 -112.198.122.0/24 4775 -112.198.123.0/24 132199 -112.198.124.0/22 132199 -112.198.128.0/19 132199 -112.198.160.0/20 4775 -112.198.176.0/21 132199 -112.198.184.0/22 132199 -112.198.188.0/24 4775 -112.198.189.0/24 132199 -112.198.190.0/23 132199 -112.198.192.0/19 132199 -112.198.224.0/20 132199 -112.198.240.0/21 132199 -112.198.248.0/22 132199 -112.198.252.0/22 4775 -112.199.0.0/18 9658 -112.199.64.0/21 9658 -112.199.72.0/24 9658 -112.199.73.0/24 18190 -112.199.74.0/23 9658 -112.199.76.0/22 9658 -112.199.80.0/20 9658 -112.199.96.0/24 24081 -112.199.97.0/24 9658 -112.199.98.0/23 9658 -112.199.100.0/22 9658 -112.199.104.0/21 9658 -112.199.112.0/20 9658 -112.199.128.0/17 4773 -112.200.0.0/14 9299 -112.204.0.0/15 9299 -112.206.0.0/17 9299 -112.206.160.0/19 9299 -112.206.192.0/19 9299 -112.206.224.0/20 132206 -112.206.240.0/20 9299 -112.207.0.0/16 9299 -112.208.0.0/15 9299 -112.210.0.0/17 9299 -112.210.128.0/18 9299 -112.211.0.0/16 9299 -112.212.0.0/17 9689 -112.212.128.0/18 38103 -112.212.192.0/19 38097 -112.212.224.0/19 38095 -112.213.0.0/19 38701 -112.213.32.0/21 133159 -112.213.40.0/21 18159 -112.213.48.0/20 17416 -112.213.64.0/24 23749 -112.213.67.0/24 23749 -112.213.69.0/24 23749 -112.213.70.0/24 132499 -112.213.80.0/20 45544 -112.213.96.0/19 38197 -112.213.128.0/18 9443 -112.213.192.0/19 136994 -112.214.0.0/20 10036 -112.214.16.0/24 9569 -112.214.17.0/24 7562 -112.214.18.0/23 7562 -112.214.20.0/22 10036 -112.214.24.0/22 10036 -112.214.28.0/23 10036 -112.214.30.0/23 9569 -112.214.32.0/19 10036 -112.214.64.0/19 10036 -112.214.96.0/21 10036 -112.214.104.0/22 7562 -112.214.108.0/22 10036 -112.214.112.0/20 10036 -112.214.128.0/18 10036 -112.214.192.0/19 10036 -112.214.232.0/21 10036 -112.214.240.0/21 10036 -112.214.250.0/23 10036 -112.214.252.0/22 10036 -112.215.6.0/23 17885 -112.215.10.0/23 17885 -112.215.16.0/24 24203 -112.215.18.0/24 17885 -112.215.19.0/24 24203 -112.215.21.0/24 17885 -112.215.22.0/24 17885 -112.215.26.0/24 17885 -112.215.30.0/24 17885 -112.215.33.0/24 17885 -112.215.34.0/24 17885 -112.215.36.0/24 24203 -112.215.37.0/24 17885 -112.215.40.0/23 17885 -112.215.42.0/24 17885 -112.215.44.0/23 24203 -112.215.46.0/23 17885 -112.215.49.0/24 17885 -112.215.50.0/24 24203 -112.215.52.0/24 24203 -112.215.62.0/24 17885 -112.215.63.0/24 24203 -112.215.64.0/23 24203 -112.215.66.0/24 24203 -112.215.68.0/23 17885 -112.215.71.0/24 17885 -112.215.77.0/24 17885 -112.215.78.0/24 17885 -112.215.79.0/24 24203 -112.215.81.0/24 17885 -112.215.84.0/24 24203 -112.215.87.0/24 17885 -112.215.88.0/24 24203 -112.215.89.0/24 17885 -112.215.94.0/24 17885 -112.215.96.0/23 17885 -112.215.98.0/24 17885 -112.215.100.0/24 17885 -112.215.101.0/24 24203 -112.215.102.0/24 24203 -112.215.103.0/24 17885 -112.215.104.0/24 24203 -112.215.105.0/24 17885 -112.215.106.0/23 17885 -112.215.108.0/24 17885 -112.215.112.0/23 17885 -112.215.114.0/24 17885 -112.215.116.0/24 17885 -112.215.118.0/23 17885 -112.215.121.0/24 17885 -112.215.123.0/24 24203 -112.215.124.0/24 24203 -112.215.125.0/24 17885 -112.215.126.0/24 24203 -112.215.127.0/24 17885 -112.215.129.0/24 17885 -112.215.131.0/24 17885 -112.215.132.0/24 17885 -112.215.137.0/24 17885 -112.215.141.0/24 17885 -112.215.143.0/24 17885 -112.215.147.0/24 24203 -112.215.148.0/23 24203 -112.215.151.0/24 24203 -112.215.152.0/23 24203 -112.215.154.0/24 24203 -112.215.156.0/23 24203 -112.215.158.0/24 24203 -112.215.159.0/24 17885 -112.215.161.0/24 24203 -112.215.170.0/23 24203 -112.215.172.0/22 24203 -112.215.176.0/23 17885 -112.215.178.0/24 17885 -112.215.179.0/24 24203 -112.215.183.0/24 24203 -112.215.184.0/23 24203 -112.215.190.0/23 17885 -112.215.192.0/22 17885 -112.215.197.0/24 17885 -112.215.198.0/24 24203 -112.215.200.0/23 24203 -112.215.205.0/24 17885 -112.215.207.0/24 24203 -112.215.208.0/22 24203 -112.215.212.0/24 24203 -112.215.219.0/24 24203 -112.215.220.0/24 24203 -112.215.222.0/24 24203 -112.215.229.0/24 24203 -112.215.230.0/24 24203 -112.215.232.0/24 24203 -112.215.234.0/23 24203 -112.215.236.0/22 24203 -112.215.240.0/22 24203 -112.215.244.0/23 24203 -112.215.248.0/24 17885 -112.215.253.0/24 24203 -112.216.0.0/16 3786 -112.217.0.0/17 3786 -112.217.128.0/24 20347 -112.217.129.0/24 3786 -112.217.130.0/23 3786 -112.217.132.0/22 3786 -112.217.136.0/22 3786 -112.217.140.0/23 9946 -112.217.142.0/23 3786 -112.217.144.0/21 3786 -112.217.152.0/23 3786 -112.217.154.0/23 9946 -112.217.156.0/23 9946 -112.217.158.0/23 3786 -112.217.160.0/19 3786 -112.217.192.0/18 3786 -112.218.0.0/15 3786 -112.220.0.0/15 3786 -112.222.0.0/16 3786 -112.223.0.0/19 3786 -112.223.32.0/20 3786 -112.223.48.0/23 9946 -112.223.50.0/24 3786 -112.223.51.0/24 9946 -112.223.52.0/22 3786 -112.223.56.0/24 9946 -112.223.57.0/24 3786 -112.223.58.0/23 3786 -112.223.60.0/22 3786 -112.223.64.0/18 3786 -112.223.128.0/17 3786 -112.224.0.0/11 4837 -113.0.0.0/13 4837 -113.8.0.0/15 4837 -113.10.0.0/22 9943 -113.10.4.0/23 9943 -113.10.6.0/24 9943 -113.10.7.0/24 45996 -113.10.8.0/24 45996 -113.10.9.0/24 9943 -113.10.10.0/23 9943 -113.10.12.0/22 9943 -113.10.16.0/20 9943 -113.10.32.0/20 9943 -113.10.48.0/21 9943 -113.10.56.0/23 9943 -113.10.58.0/24 9943 -113.10.59.0/24 45996 -113.10.60.0/24 45996 -113.10.61.0/24 9943 -113.10.62.0/23 9943 -113.10.64.0/21 9874 -113.10.72.0/21 4657 -113.10.80.0/20 4657 -113.10.96.0/19 9874 -113.10.128.0/17 17444 -113.11.0.0/17 7565 -113.11.128.0/22 17658 -113.11.132.0/24 9326 -113.11.133.0/24 17658 -113.11.134.0/23 17658 -113.11.136.0/23 17658 -113.11.138.0/24 17658 -113.11.139.0/24 9326 -113.11.140.0/22 17658 -113.11.144.0/21 17658 -113.11.152.0/23 17658 -113.11.154.0/24 17658 -113.11.155.0/24 9326 -113.11.156.0/24 9326 -113.11.157.0/24 17658 -113.11.158.0/23 17658 -113.11.160.0/20 18228 -113.11.184.0/22 38611 -113.11.224.0/21 17754 -113.11.232.0/22 45457 -113.11.236.0/22 55951 -113.11.240.0/21 9249 -113.11.248.0/21 38532 -113.12.0.0/18 4134 -113.12.64.0/20 4134 -113.12.80.0/22 137693 -113.12.84.0/24 137693 -113.12.85.0/24 4134 -113.12.86.0/23 4134 -113.12.88.0/21 4134 -113.12.96.0/19 4134 -113.12.128.0/17 4134 -113.13.0.0/20 4134 -113.13.16.0/22 137693 -113.13.20.0/22 4134 -113.13.24.0/21 4134 -113.13.32.0/19 4134 -113.13.64.0/18 4134 -113.13.128.0/17 4134 -113.14.0.0/18 4134 -113.14.64.0/19 4134 -113.14.96.0/22 4134 -113.14.100.0/22 134419 -113.14.104.0/21 134419 -113.14.112.0/20 134419 -113.14.128.0/18 4134 -113.14.192.0/20 4134 -113.14.208.0/21 134419 -113.14.216.0/21 4134 -113.14.224.0/19 4134 -113.15.0.0/17 4134 -113.15.128.0/19 4134 -113.15.160.0/19 134419 -113.15.192.0/18 4134 -113.16.0.0/17 4134 -113.16.128.0/18 4134 -113.16.192.0/21 137693 -113.16.200.0/22 4134 -113.16.204.0/22 137693 -113.16.208.0/21 137693 -113.16.216.0/21 4134 -113.16.224.0/19 4134 -113.17.0.0/19 134419 -113.17.32.0/19 4134 -113.17.64.0/18 4134 -113.17.128.0/21 4134 -113.17.136.0/22 4134 -113.17.140.0/23 137693 -113.17.142.0/23 4134 -113.17.144.0/20 4134 -113.17.160.0/21 4134 -113.17.168.0/21 137693 -113.17.176.0/21 4134 -113.17.184.0/23 137693 -113.17.186.0/23 4134 -113.17.188.0/22 4134 -113.17.192.0/18 4134 -113.18.0.0/20 9808 -113.18.32.0/19 9808 -113.18.64.0/18 9808 -113.18.128.0/17 9808 -113.19.0.0/16 23772 -113.20.16.0/22 45916 -113.20.21.0/24 55361 -113.20.22.0/23 32242 -113.20.24.0/22 23913 -113.20.28.0/22 45731 -113.20.32.0/19 45461 -113.20.64.0/19 9241 -113.20.96.0/20 45903 -113.20.112.0/21 45903 -113.20.120.0/22 45903 -113.20.124.0/23 45903 -113.20.126.0/24 45903 -113.20.127.0/24 4766 -113.20.132.0/22 55952 -113.20.136.0/21 45716 -113.20.144.0/21 38325 -113.20.152.0/22 17534 -113.20.156.0/22 20473 -113.20.160.0/19 9370 -113.20.192.0/18 9351 -113.21.0.0/19 9765 -113.21.32.0/20 38835 -113.21.48.0/20 17534 -113.21.64.0/20 45775 -113.21.94.0/24 131600 -113.21.95.0/24 17408 -113.21.96.0/19 17480 -113.21.128.0/19 703 -113.21.160.0/20 9244 -113.21.176.0/21 9244 -113.21.194.0/24 45474 -113.21.199.0/24 45474 -113.21.200.0/23 45474 -113.21.202.0/24 45474 -113.21.204.0/23 45474 -113.21.206.0/24 45474 -113.21.208.0/24 45474 -113.21.213.0/24 45474 -113.21.214.0/23 45474 -113.21.218.0/23 45474 -113.21.220.0/23 45474 -113.21.223.0/24 45474 -113.21.224.0/22 24466 -113.21.228.0/22 45766 -113.21.240.0/21 38082 -113.21.248.0/21 23627 -113.22.0.0/16 18403 -113.23.0.0/17 18403 -113.23.128.0/17 38182 -113.24.0.0/14 4134 -113.28.0.0/22 4515 -113.28.4.0/23 4515 -113.28.6.0/24 4760 -113.28.7.0/24 4515 -113.28.8.0/21 4515 -113.28.16.0/20 4515 -113.28.32.0/19 4515 -113.28.64.0/18 4515 -113.28.128.0/19 4515 -113.28.160.0/21 4515 -113.28.168.0/22 4515 -113.28.172.0/24 4515 -113.28.173.0/24 9263 -113.28.174.0/23 4515 -113.28.176.0/20 4515 -113.28.192.0/19 4515 -113.28.224.0/20 4515 -113.28.240.0/21 4515 -113.28.248.0/22 4515 -113.28.252.0/24 4515 -113.28.253.0/24 4760 -113.28.254.0/24 4760 -113.28.255.0/24 4515 -113.29.0.0/21 3549 -113.29.8.0/22 3549 -113.29.12.0/23 3549 -113.29.14.0/24 3549 -113.29.15.0/24 21636 -113.29.16.0/22 3549 -113.29.20.0/24 3549 -113.29.21.0/24 63168 -113.29.22.0/24 3549 -113.29.23.0/24 4373 -113.29.24.0/22 3549 -113.29.28.0/24 3356 -113.29.29.0/24 3549 -113.29.30.0/23 3549 -113.29.32.0/19 3549 -113.29.64.0/23 3549 -113.29.66.0/24 3549 -113.29.67.0/24 18994 -113.29.68.0/23 3549 -113.29.70.0/24 16789 -113.29.71.0/24 3549 -113.29.72.0/23 3549 -113.29.74.0/24 3549 -113.29.75.0/24 11428 -113.29.76.0/23 3549 -113.29.78.0/24 3356 -113.29.79.0/24 3549 -113.29.80.0/21 3549 -113.29.88.0/23 3549 -113.29.90.0/24 3549 -113.29.91.0/24 3356 -113.29.92.0/22 3549 -113.29.96.0/19 3549 -113.29.128.0/18 9764 -113.29.192.0/20 45996 -113.29.208.0/21 45768 -113.29.216.0/21 38642 -113.29.224.0/23 45477 -113.29.226.0/24 38001 -113.29.227.0/24 45477 -113.29.228.0/23 38001 -113.29.230.0/24 38001 -113.29.232.0/23 38001 -113.29.234.0/23 45477 -113.29.236.0/22 45477 -113.29.240.0/22 4826 -113.29.244.0/22 38583 -113.29.248.0/22 18014 -113.29.252.0/22 45496 -113.30.0.0/18 9971 -113.30.64.0/18 38661 -113.30.132.0/22 17447 -113.30.136.0/21 17447 -113.30.151.0/24 17447 -113.30.152.0/23 17447 -113.30.154.0/24 17447 -113.30.156.0/24 17447 -113.30.160.0/24 17447 -113.30.162.0/23 17447 -113.30.164.0/23 17447 -113.30.184.0/24 17447 -113.30.240.0/21 17447 -113.30.248.0/23 17447 -113.30.251.0/24 17447 -113.31.0.0/19 23724 -113.31.32.0/20 4837 -113.31.64.0/22 23724 -113.31.72.0/21 23724 -113.31.80.0/21 23724 -113.31.88.0/22 23724 -113.31.92.0/23 23724 -113.31.96.0/19 4812 -113.31.128.0/21 23724 -113.31.136.0/22 23724 -113.31.144.0/20 4812 -113.32.0.0/13 17506 -113.40.0.0/14 17506 -113.44.0.0/14 4808 -113.52.0.0/20 45481 -113.52.16.0/20 4721 -113.52.32.0/19 38735 -113.52.64.0/18 4609 -113.52.128.0/22 45486 -113.52.132.0/22 133380 -113.52.136.0/21 38676 -113.52.144.0/22 58940 -113.52.152.0/24 45505 -113.52.154.0/23 45505 -113.52.156.0/22 10006 -113.52.192.0/19 9770 -113.52.224.0/22 2516 -113.52.232.0/24 2764 -113.52.233.0/24 45654 -113.52.234.0/24 45654 -113.52.235.0/24 2764 -113.52.236.0/22 2764 -113.52.240.0/20 2519 -113.53.0.0/17 23969 -113.53.128.0/18 23969 -113.53.192.0/19 23969 -113.53.224.0/22 23969 -113.53.228.0/24 134166 -113.53.229.0/24 23969 -113.53.230.0/23 131293 -113.53.232.0/21 131293 -113.53.240.0/20 131293 -113.54.0.0/17 4538 -113.54.128.0/17 24355 -113.55.0.0/16 4538 -113.56.0.0/15 4837 -113.58.0.0/16 4837 -113.59.0.0/17 4837 -113.59.128.0/18 9981 -113.59.192.0/19 45224 -113.59.224.0/22 4134 -113.59.228.0/22 131954 -113.59.232.0/24 4761 -113.59.234.0/23 134618 -113.59.236.0/24 134618 -113.59.237.0/24 45296 -113.59.240.0/23 17819 -113.59.243.0/24 17819 -113.59.250.0/24 17819 -113.60.0.0/16 17849 -113.61.0.0/19 45365 -113.61.32.0/22 18190 -113.61.36.0/24 18190 -113.61.37.0/24 9658 -113.61.38.0/24 18190 -113.61.39.0/24 9658 -113.61.40.0/23 9658 -113.61.42.0/23 18190 -113.61.44.0/22 18190 -113.61.48.0/20 18190 -113.61.64.0/19 45510 -113.61.96.0/21 38835 -113.61.106.0/23 10158 -113.61.108.0/24 38738 -113.61.109.0/24 7552 -113.61.110.0/23 38738 -113.61.112.0/20 4721 -113.61.128.0/17 17809 -113.62.0.0/15 4134 -113.64.0.0/11 4134 -113.96.0.0/19 58466 -113.96.32.0/19 4816 -113.96.64.0/19 134764 -113.96.96.0/19 58543 -113.96.128.0/19 58543 -113.96.160.0/20 58543 -113.96.176.0/21 58543 -113.96.184.0/22 58543 -113.96.188.0/24 4134 -113.96.189.0/24 58543 -113.96.190.0/23 58543 -113.96.192.0/19 4816 -113.96.224.0/20 4816 -113.96.240.0/21 4816 -113.96.248.0/22 4134 -113.96.252.0/23 4134 -113.96.254.0/24 134763 -113.96.255.0/24 134764 -113.97.0.0/16 4134 -113.98.0.0/17 4134 -113.98.128.0/20 4134 -113.98.144.0/21 4134 -113.98.152.0/22 4134 -113.98.156.0/23 4134 -113.98.158.0/24 4134 -113.98.159.0/24 134764 -113.98.160.0/22 4134 -113.98.164.0/23 4134 -113.98.166.0/24 4134 -113.98.167.0/24 134764 -113.98.168.0/21 4134 -113.98.176.0/20 4134 -113.98.192.0/18 4134 -113.99.0.0/17 4134 -113.99.128.0/21 4134 -113.99.136.0/21 58466 -113.99.144.0/20 4134 -113.99.160.0/19 4134 -113.99.192.0/18 4134 -113.100.0.0/15 4134 -113.102.0.0/16 4134 -113.103.0.0/19 4134 -113.103.32.0/21 4134 -113.103.40.0/22 4134 -113.103.44.0/22 58543 -113.103.48.0/20 4134 -113.103.64.0/18 4134 -113.103.128.0/17 4134 -113.104.0.0/16 4134 -113.105.0.0/18 4134 -113.105.64.0/21 4134 -113.105.72.0/21 4816 -113.105.80.0/22 4816 -113.105.84.0/22 4134 -113.105.88.0/22 4134 -113.105.92.0/22 4816 -113.105.96.0/19 4134 -113.105.128.0/21 4134 -113.105.136.0/21 134763 -113.105.144.0/20 134763 -113.105.160.0/20 134763 -113.105.176.0/20 4134 -113.105.192.0/20 4134 -113.105.208.0/21 4134 -113.105.216.0/22 4134 -113.105.220.0/23 4134 -113.105.222.0/23 134764 -113.105.224.0/22 134764 -113.105.228.0/24 134764 -113.105.229.0/24 4134 -113.105.230.0/23 134764 -113.105.232.0/21 4134 -113.105.240.0/22 4134 -113.105.244.0/22 134764 -113.105.248.0/22 134764 -113.105.252.0/22 4134 -113.106.0.0/20 4134 -113.106.16.0/22 58543 -113.106.20.0/22 4134 -113.106.24.0/22 58543 -113.106.28.0/22 4134 -113.106.32.0/20 4134 -113.106.48.0/21 4816 -113.106.56.0/21 4134 -113.106.64.0/19 4134 -113.106.96.0/22 58543 -113.106.100.0/23 58543 -113.106.102.0/24 58543 -113.106.103.0/24 4134 -113.106.104.0/21 4134 -113.106.112.0/20 4134 -113.106.128.0/19 4134 -113.106.160.0/20 4134 -113.106.176.0/21 58543 -113.106.184.0/21 4134 -113.106.192.0/21 4134 -113.106.200.0/21 58543 -113.106.208.0/20 4134 -113.106.224.0/19 4134 -113.107.0.0/19 4134 -113.107.32.0/22 4134 -113.107.36.0/22 58543 -113.107.40.0/22 4134 -113.107.44.0/22 58543 -113.107.48.0/21 4134 -113.107.56.0/21 58543 -113.107.64.0/20 4134 -113.107.80.0/21 4134 -113.107.88.0/22 4134 -113.107.92.0/22 58543 -113.107.96.0/20 58543 -113.107.112.0/21 58543 -113.107.120.0/21 4134 -113.107.128.0/20 4134 -113.107.144.0/22 4134 -113.107.148.0/22 58543 -113.107.152.0/21 4134 -113.107.160.0/23 58543 -113.107.162.0/23 4134 -113.107.164.0/23 4134 -113.107.166.0/23 58543 -113.107.168.0/22 4134 -113.107.172.0/23 4134 -113.107.174.0/23 58543 -113.107.176.0/20 58543 -113.107.192.0/21 4134 -113.107.200.0/21 58543 -113.107.208.0/22 58543 -113.107.212.0/22 4134 -113.107.216.0/21 58543 -113.107.224.0/21 4134 -113.107.232.0/21 58543 -113.107.240.0/21 4134 -113.107.248.0/22 58543 -113.107.252.0/22 4134 -113.108.0.0/19 4816 -113.108.32.0/19 4134 -113.108.64.0/19 4816 -113.108.96.0/19 4134 -113.108.128.0/18 4134 -113.108.192.0/20 4134 -113.108.208.0/20 58466 -113.108.224.0/20 58466 -113.108.240.0/20 4134 -113.109.0.0/16 4134 -113.110.0.0/15 4134 -113.112.0.0/16 4134 -113.113.0.0/18 4134 -113.113.64.0/20 58543 -113.113.80.0/20 134764 -113.113.96.0/20 58543 -113.113.112.0/21 134763 -113.113.120.0/21 134764 -113.113.128.0/17 4134 -113.114.0.0/15 4134 -113.116.0.0/14 4134 -113.120.0.0/14 4134 -113.124.0.0/16 4134 -113.125.0.0/16 58519 -113.126.0.0/15 4134 -113.128.0.0/15 4134 -113.130.0.0/18 38462 -113.130.64.0/19 4670 -113.130.96.0/20 7497 -113.130.112.0/21 7497 -113.130.120.0/23 38294 -113.130.122.0/24 38294 -113.130.123.0/24 24183 -113.130.124.0/22 38901 -113.130.128.0/17 9845 -113.131.0.0/20 9697 -113.131.16.0/21 10037 -113.131.24.0/22 45365 -113.131.28.0/22 9698 -113.131.32.0/20 10037 -113.131.48.0/22 10037 -113.131.52.0/22 9698 -113.131.56.0/22 38091 -113.131.60.0/22 10037 -113.131.64.0/21 10037 -113.131.72.0/21 9697 -113.131.80.0/20 9697 -113.131.96.0/21 10037 -113.131.104.0/21 38669 -113.131.112.0/20 10037 -113.131.128.0/18 9697 -113.131.192.0/19 9697 -113.131.224.0/20 9697 -113.131.240.0/21 9770 -113.131.248.0/21 9697 -113.132.0.0/16 4134 -113.133.0.0/17 4134 -113.133.128.0/19 4134 -113.133.160.0/19 134768 -113.133.192.0/18 4134 -113.134.0.0/17 4134 -113.134.128.0/18 4134 -113.134.192.0/20 4134 -113.134.208.0/21 134768 -113.134.216.0/21 4134 -113.134.224.0/19 4134 -113.135.0.0/16 4134 -113.136.0.0/16 4134 -113.137.0.0/19 4134 -113.137.32.0/19 134768 -113.137.64.0/18 4134 -113.137.128.0/17 4134 -113.138.0.0/15 4134 -113.140.0.0/16 4134 -113.141.0.0/18 4134 -113.141.64.0/19 134418 -113.141.96.0/19 4134 -113.141.128.0/19 4134 -113.141.160.0/19 134768 -113.141.192.0/18 4134 -113.142.0.0/19 4835 -113.142.32.0/20 4835 -113.142.48.0/22 4835 -113.142.52.0/23 4835 -113.142.54.0/23 134768 -113.142.56.0/21 134768 -113.142.64.0/19 134768 -113.142.96.0/19 4835 -113.142.128.0/17 134768 -113.143.0.0/16 4134 -113.144.0.0/12 2516 -113.160.0.0/12 45899 -113.176.0.0/16 45899 -113.177.0.0/17 45899 -113.177.128.0/18 45899 -113.178.0.0/15 45899 -113.180.0.0/17 45899 -113.180.128.0/18 45899 -113.181.0.0/16 45899 -113.182.0.0/15 45899 -113.184.0.0/16 45899 -113.185.0.0/17 45899 -113.185.128.0/20 45899 -113.186.0.0/15 45899 -113.188.0.0/15 45899 -113.190.0.0/16 45899 -113.191.0.0/18 45899 -113.191.192.0/18 45899 -113.192.64.0/18 45361 -113.192.128.0/17 7514 -113.193.0.0/21 45528 -113.193.8.0/24 45528 -113.193.10.0/23 45528 -113.193.12.0/22 45528 -113.193.16.0/20 45528 -113.193.32.0/21 45528 -113.193.40.0/22 45528 -113.193.44.0/23 45528 -113.193.46.0/24 45528 -113.193.48.0/21 45528 -113.193.57.0/24 45528 -113.193.58.0/23 45528 -113.193.60.0/22 45528 -113.193.64.0/23 45528 -113.193.66.0/24 45528 -113.193.77.0/24 45528 -113.193.78.0/23 45528 -113.193.92.0/22 45528 -113.193.96.0/20 45528 -113.193.122.0/23 45528 -113.193.124.0/23 45528 -113.193.127.0/24 45528 -113.193.128.0/20 45528 -113.193.144.0/22 45528 -113.193.148.0/23 45528 -113.193.151.0/24 45528 -113.193.156.0/23 45528 -113.193.159.0/24 45528 -113.193.168.0/23 45528 -113.193.171.0/24 45528 -113.193.172.0/22 45528 -113.193.176.0/20 45528 -113.193.196.0/22 45528 -113.193.200.0/21 45528 -113.193.208.0/21 45528 -113.193.216.0/22 45528 -113.193.220.0/24 45528 -113.193.222.0/23 45528 -113.193.224.0/22 45528 -113.193.228.0/24 45528 -113.193.231.0/24 45528 -113.193.232.0/21 45528 -113.193.240.0/20 45528 -113.194.0.0/15 4837 -113.196.0.0/18 9919 -113.196.64.0/19 9919 -113.196.96.0/20 9919 -113.196.112.0/23 9919 -113.196.114.0/24 9919 -113.196.115.0/24 4780 -113.196.116.0/22 9919 -113.196.120.0/21 9919 -113.196.128.0/20 9919 -113.196.144.0/21 38851 -113.196.152.0/21 9919 -113.196.160.0/19 9919 -113.196.192.0/18 9919 -113.197.0.0/20 7575 -113.197.16.0/20 18134 -113.197.32.0/21 38532 -113.197.40.0/21 59127 -113.197.48.0/21 23888 -113.197.56.0/21 7672 -113.197.64.0/23 38451 -113.197.66.0/24 18037 -113.197.67.0/24 38451 -113.197.68.0/22 56017 -113.197.74.0/23 45580 -113.197.76.0/23 45560 -113.197.78.0/23 45592 -113.197.80.0/23 45372 -113.197.82.0/24 45372 -113.197.83.0/24 4766 -113.197.84.0/22 4766 -113.197.88.0/21 45372 -113.197.96.0/22 45177 -113.197.101.0/24 55956 -113.197.103.0/24 55956 -113.197.104.0/23 24424 -113.197.108.0/23 55699 -113.197.112.0/20 38260 -113.197.128.0/17 2497 -113.198.0.0/20 4766 -113.198.16.0/21 4766 -113.198.24.0/22 4766 -113.198.28.0/23 4766 -113.198.32.0/19 7560 -113.198.64.0/21 7560 -113.198.74.0/23 3786 -113.198.76.0/22 3786 -113.198.80.0/21 3786 -113.198.88.0/22 3786 -113.198.94.0/23 55622 -113.198.96.0/22 55622 -113.198.100.0/22 9459 -113.198.104.0/24 9459 -113.198.134.0/23 18158 -113.198.136.0/21 18158 -113.198.144.0/22 18158 -113.198.148.0/23 18158 -113.198.151.0/24 4766 -113.198.152.0/22 4766 -113.198.156.0/23 4766 -113.198.160.0/21 18026 -113.198.168.0/22 18026 -113.198.175.0/24 3786 -113.198.176.0/22 18158 -113.198.180.0/24 3786 -113.198.181.0/24 4766 -113.198.182.0/23 4766 -113.198.184.0/21 18176 -113.198.192.0/23 18337 -113.198.194.0/24 18337 -113.198.195.0/24 4766 -113.198.196.0/23 18337 -113.198.198.0/24 18337 -113.198.201.0/24 18337 -113.198.202.0/24 18337 -113.198.203.0/24 55626 -113.198.204.0/22 55626 -113.198.208.0/21 18176 -113.198.216.0/22 18176 -113.198.221.0/24 9870 -113.198.222.0/23 9870 -113.198.224.0/19 9870 -113.199.0.0/17 17608 -113.199.128.0/17 23752 -113.200.0.0/15 4837 -113.203.0.0/17 197207 -113.203.192.0/22 132165 -113.203.200.0/21 132165 -113.203.208.0/20 139879 -113.203.224.0/21 139879 -113.203.233.0/24 38713 -113.203.234.0/23 9387 -113.203.236.0/22 9387 -113.203.240.0/23 9387 -113.203.248.0/22 38713 -113.203.253.0/24 38713 -113.203.254.0/23 9387 -113.204.0.0/15 4837 -113.206.0.0/16 4837 -113.207.0.0/17 4837 -113.207.128.0/17 9929 -113.208.0.0/18 17950 -113.208.64.0/23 58491 -113.208.66.0/23 38176 -113.208.68.0/22 38176 -113.208.72.0/23 131271 -113.208.80.0/21 38176 -113.208.88.0/21 45572 -113.208.96.0/20 24147 -113.208.112.0/21 4808 -113.208.128.0/23 4847 -113.208.130.0/23 24147 -113.208.136.0/21 4847 -113.209.0.0/16 4808 -113.210.0.0/15 9534 -113.212.0.0/18 24147 -113.212.64.0/22 24000 -113.212.76.0/24 133858 -113.212.84.0/22 45117 -113.212.88.0/24 136782 -113.212.89.0/24 43092 -113.212.90.0/23 43092 -113.212.96.0/22 45570 -113.212.104.0/24 23818 -113.212.105.0/24 2519 -113.212.106.0/23 23818 -113.212.108.0/22 136224 -113.212.112.0/20 45294 -113.212.128.0/19 56291 -113.212.160.0/22 45295 -113.212.164.0/23 45295 -113.212.166.0/24 45295 -113.212.168.0/24 45654 -113.212.169.0/24 58507 -113.212.170.0/23 58507 -113.212.172.0/24 58507 -113.212.173.0/24 45654 -113.212.174.0/23 45654 -113.212.176.0/23 45578 -113.212.179.0/24 59268 -113.212.181.0/24 59243 -113.212.182.0/24 59243 -113.212.192.0/18 10132 -113.213.0.0/18 4837 -113.213.64.0/19 4837 -113.213.96.0/20 4837 -113.213.192.0/19 59127 -113.213.224.0/20 59127 -113.213.240.0/22 10013 -113.214.0.0/16 4134 -113.215.0.0/16 24139 -113.216.0.0/15 9644 -113.218.0.0/16 4134 -113.219.0.0/17 4134 -113.219.128.0/18 63838 -113.219.192.0/18 4134 -113.220.0.0/14 4134 -113.224.0.0/12 4837 -113.240.0.0/13 4134 -113.248.0.0/15 4134 -113.250.0.0/20 134420 -113.250.16.0/21 134420 -113.250.24.0/23 134420 -113.250.26.0/23 4134 -113.250.28.0/22 4134 -113.250.32.0/19 4134 -113.250.64.0/18 4134 -113.250.128.0/17 4134 -113.251.0.0/16 4134 -113.252.0.0/14 9304 -114.0.10.0/24 4761 -114.1.0.0/24 4761 -114.2.49.0/24 4761 -114.4.0.0/14 4761 -114.8.13.0/24 4761 -114.8.128.0/20 4761 -114.8.144.0/22 4761 -114.16.0.0/14 2516 -114.20.0.0/15 2516 -114.22.0.0/16 2516 -114.23.0.0/19 56030 -114.23.32.0/21 56030 -114.23.40.0/24 56030 -114.23.41.0/24 132692 -114.23.42.0/23 56030 -114.23.44.0/22 56030 -114.23.48.0/20 56030 -114.23.64.0/18 56030 -114.23.128.0/17 56030 -114.24.0.0/16 3462 -114.25.0.0/17 3462 -114.25.128.0/18 3462 -114.25.192.0/19 3462 -114.25.224.0/20 3462 -114.25.240.0/21 3462 -114.25.248.0/23 3462 -114.25.250.0/24 131660 -114.25.251.0/24 3462 -114.25.252.0/22 3462 -114.26.0.0/15 3462 -114.28.68.0/22 4812 -114.28.72.0/21 4812 -114.28.128.0/19 4812 -114.28.160.0/19 45061 -114.28.248.0/24 17621 -114.28.249.0/24 4837 -114.28.250.0/23 4837 -114.28.252.0/22 4837 -114.29.0.0/17 38669 -114.29.128.0/19 23563 -114.29.192.0/19 13445 -114.29.224.0/22 45804 -114.29.228.0/24 45916 -114.29.229.0/24 134855 -114.29.230.0/24 134855 -114.29.231.0/24 45117 -114.29.232.0/22 134885 -114.29.236.0/22 134032 -114.29.240.0/22 10085 -114.29.244.0/22 131601 -114.29.252.0/22 55720 -114.30.0.0/19 10036 -114.30.32.0/21 10126 -114.30.40.0/22 10126 -114.30.44.0/24 3462 -114.30.45.0/24 10126 -114.30.46.0/23 10126 -114.30.48.0/20 7623 -114.30.64.0/21 132158 -114.30.72.0/21 45232 -114.30.80.0/22 38766 -114.30.84.0/24 38766 -114.30.86.0/23 38766 -114.30.96.0/19 4739 -114.30.128.0/17 38121 -114.31.0.0/20 7565 -114.31.17.0/24 7565 -114.31.18.0/23 7565 -114.31.20.0/22 7565 -114.31.24.0/23 7565 -114.31.27.0/24 7565 -114.31.28.0/22 7565 -114.31.32.0/19 38690 -114.31.72.0/21 24446 -114.31.80.0/20 10021 -114.31.96.0/21 17741 -114.31.104.0/21 38651 -114.31.112.0/20 9526 -114.31.128.0/19 38266 -114.31.160.0/20 38266 -114.31.176.0/21 38266 -114.31.192.0/20 4826 -114.31.208.0/24 9009 -114.31.209.0/24 35017 -114.31.210.0/24 29802 -114.31.211.0/24 35017 -114.31.212.0/22 56028 -114.31.216.0/21 24279 -114.31.224.0/20 38224 -114.31.240.0/22 38496 -114.31.244.0/23 38496 -114.31.247.0/24 38768 -114.31.249.0/24 45219 -114.31.250.0/23 45219 -114.31.252.0/23 45219 -114.32.0.0/12 3462 -114.48.0.0/14 37903 -114.52.0.0/19 18302 -114.52.32.0/21 18302 -114.52.40.0/23 18302 -114.52.42.0/24 45388 -114.52.43.0/24 18302 -114.52.44.0/22 18302 -114.52.48.0/20 18302 -114.52.64.0/21 18302 -114.52.72.0/22 18302 -114.52.76.0/23 18302 -114.52.78.0/24 17592 -114.52.79.0/24 18302 -114.52.80.0/20 18302 -114.52.96.0/19 18302 -114.52.128.0/18 18302 -114.52.192.0/19 18302 -114.52.224.0/21 18302 -114.52.232.0/22 18302 -114.52.236.0/23 18302 -114.52.238.0/24 18302 -114.52.239.0/24 23990 -114.52.240.0/23 23990 -114.52.242.0/24 18302 -114.52.243.0/24 23990 -114.52.244.0/22 18302 -114.52.248.0/21 18302 -114.53.0.0/18 18302 -114.53.64.0/21 18302 -114.53.72.0/22 18302 -114.53.76.0/24 9318 -114.53.77.0/24 18302 -114.53.78.0/23 18302 -114.53.80.0/20 18302 -114.53.96.0/19 18302 -114.53.128.0/18 18302 -114.53.192.0/19 18302 -114.53.224.0/20 18302 -114.53.240.0/21 17583 -114.53.248.0/21 18302 -114.54.72.0/21 24138 -114.54.80.0/20 24138 -114.54.96.0/19 24138 -114.55.0.0/16 37963 -114.56.0.0/16 4795 -114.57.0.0/19 4795 -114.57.32.0/22 38490 -114.57.36.0/23 4795 -114.57.38.0/24 55673 -114.57.39.0/24 4795 -114.57.40.0/21 4795 -114.57.48.0/20 4795 -114.57.64.0/18 4795 -114.57.128.0/17 4795 -114.58.0.0/15 4795 -114.60.0.0/14 9812 -114.64.0.0/15 23724 -114.66.0.0/18 136188 -114.66.64.0/23 56282 -114.66.66.0/24 56282 -114.66.80.0/23 7497 -114.66.83.0/24 38364 -114.67.0.0/18 58466 -114.67.64.0/18 4812 -114.67.128.0/19 131486 -114.67.160.0/19 58466 -114.67.192.0/19 58466 -114.67.224.0/19 4808 -114.69.0.0/17 2519 -114.69.128.0/19 24276 -114.69.160.0/20 24276 -114.69.176.0/20 56089 -114.69.192.0/20 18200 -114.69.208.0/21 18200 -114.69.216.0/22 18200 -114.69.220.0/23 18200 -114.69.222.0/24 42 -114.69.223.0/24 18200 -114.69.224.0/24 5 -114.69.227.0/24 134852 -114.69.228.0/23 18002 -114.69.231.0/24 18002 -114.69.232.0/24 18002 -114.69.233.0/24 134852 -114.69.234.0/23 18002 -114.69.236.0/24 18002 -114.69.238.0/23 18002 -114.69.240.0/24 18002 -114.69.242.0/23 18002 -114.69.244.0/22 18002 -114.69.248.0/23 18002 -114.69.252.0/22 18002 -114.70.0.0/20 45379 -114.70.16.0/22 45379 -114.70.20.0/22 9459 -114.70.25.0/24 10053 -114.70.26.0/24 10053 -114.70.27.0/24 4766 -114.70.28.0/22 4766 -114.70.32.0/21 4766 -114.70.41.0/24 4766 -114.70.42.0/24 10053 -114.70.43.0/24 9962 -114.70.44.0/22 9962 -114.70.48.0/24 9962 -114.70.49.0/24 4766 -114.70.50.0/23 3786 -114.70.52.0/22 3786 -114.70.56.0/22 3786 -114.70.60.0/24 9318 -114.70.61.0/24 10088 -114.70.62.0/23 10088 -114.70.64.0/23 10088 -114.70.66.0/24 10053 -114.70.67.0/24 4766 -114.70.68.0/23 4766 -114.70.74.0/23 17862 -114.70.76.0/24 3786 -114.70.77.0/24 10053 -114.70.78.0/23 4766 -114.70.80.0/23 4766 -114.70.82.0/23 9982 -114.70.84.0/22 9982 -114.70.88.0/22 9982 -114.70.92.0/22 18164 -114.70.96.0/23 45408 -114.70.98.0/23 17862 -114.70.100.0/22 17862 -114.70.104.0/21 17862 -114.70.112.0/21 17862 -114.70.120.0/22 17862 -114.70.124.0/23 17862 -114.70.126.0/23 9318 -114.70.128.0/24 9318 -114.70.129.0/24 4766 -114.70.130.0/23 4766 -114.70.132.0/22 4766 -114.70.137.0/24 4766 -114.70.138.0/23 4766 -114.70.140.0/23 9523 -114.70.142.0/24 9523 -114.70.144.0/22 4766 -114.70.148.0/24 4766 -114.70.149.0/24 38695 -114.70.150.0/24 4766 -114.70.151.0/24 10053 -114.70.152.0/24 3786 -114.70.154.0/23 38695 -114.70.156.0/23 2563 -114.70.158.0/24 2563 -114.70.159.0/24 10053 -114.70.160.0/23 4766 -114.70.162.0/24 4766 -114.70.163.0/24 10053 -114.70.164.0/24 3786 -114.70.165.0/24 9949 -114.70.166.0/23 9949 -114.70.169.0/24 10053 -114.70.170.0/23 18034 -114.70.172.0/23 18034 -114.70.174.0/23 4766 -114.70.176.0/23 4766 -114.70.178.0/24 4766 -114.70.179.0/24 10053 -114.70.180.0/22 9870 -114.70.184.0/22 9870 -114.70.188.0/23 9870 -114.70.190.0/23 7560 -114.70.192.0/21 7560 -114.70.200.0/24 10053 -114.70.201.0/24 23569 -114.70.202.0/23 23569 -114.70.204.0/23 23569 -114.70.207.0/24 4766 -114.70.208.0/23 3786 -114.70.210.0/23 4766 -114.70.212.0/22 4766 -114.70.216.0/23 4766 -114.70.218.0/23 17862 -114.70.220.0/22 3786 -114.70.224.0/20 17862 -114.70.240.0/23 23569 -114.70.242.0/24 23569 -114.70.244.0/22 4766 -114.70.248.0/21 4766 -114.71.0.0/21 23714 -114.71.8.0/22 23714 -114.71.12.0/22 3786 -114.71.16.0/22 3786 -114.71.20.0/22 9868 -114.71.24.0/21 9868 -114.71.32.0/22 9868 -114.71.36.0/22 9318 -114.71.40.0/21 9318 -114.71.48.0/23 9318 -114.71.50.0/24 9318 -114.71.51.0/24 3786 -114.71.52.0/22 4766 -114.71.56.0/23 4766 -114.71.58.0/23 18029 -114.71.60.0/23 18029 -114.71.62.0/23 18026 -114.71.64.0/20 3786 -114.71.80.0/23 3786 -114.71.82.0/24 3786 -114.71.83.0/24 4766 -114.71.84.0/22 4766 -114.71.88.0/23 3786 -114.71.90.0/23 4766 -114.71.92.0/22 4766 -114.71.96.0/21 55616 -114.71.104.0/22 55616 -114.71.108.0/23 55616 -114.71.110.0/24 55616 -114.71.111.0/24 3786 -114.71.112.0/20 18158 -114.71.128.0/24 4766 -114.71.130.0/23 4766 -114.71.132.0/22 4766 -114.71.136.0/22 4766 -114.71.140.0/24 4766 -114.71.142.0/23 4766 -114.71.144.0/22 4766 -114.71.148.0/24 4766 -114.71.150.0/24 4766 -114.71.152.0/24 4766 -114.71.153.0/24 3786 -114.71.154.0/24 4766 -114.71.155.0/24 3786 -114.71.156.0/22 4766 -114.71.160.0/21 3786 -114.71.168.0/22 3786 -114.71.172.0/24 3786 -114.71.173.0/24 10190 -114.71.174.0/24 10190 -114.71.176.0/20 9868 -114.71.192.0/24 9868 -114.71.193.0/24 3786 -114.71.194.0/24 3786 -114.71.195.0/24 10190 -114.71.196.0/24 10190 -114.71.198.0/23 38105 -114.71.200.0/21 38105 -114.71.208.0/20 38105 -114.71.234.0/24 4766 -114.71.236.0/23 4766 -114.71.238.0/24 4766 -114.71.240.0/22 10190 -114.71.244.0/23 10190 -114.71.246.0/23 4766 -114.71.248.0/24 4766 -114.71.250.0/23 3786 -114.71.252.0/22 3786 -114.72.0.0/14 4804 -114.76.0.0/15 4804 -114.78.0.0/16 4804 -114.79.0.0/21 18004 -114.79.8.0/24 18004 -114.79.12.0/22 18004 -114.79.16.0/20 18004 -114.79.34.0/23 18004 -114.79.38.0/23 18004 -114.79.40.0/21 18004 -114.79.48.0/20 18004 -114.79.97.0/24 133955 -114.79.128.0/18 45769 -114.80.0.0/12 4812 -114.96.0.0/13 4134 -114.104.0.0/14 4134 -114.108.0.0/20 23563 -114.108.16.0/21 23563 -114.108.24.0/22 23563 -114.108.28.0/22 23566 -114.108.32.0/19 23563 -114.108.64.0/18 23563 -114.108.128.0/19 3786 -114.108.160.0/20 3786 -114.108.176.0/21 3786 -114.108.184.0/23 3786 -114.108.186.0/24 9643 -114.108.187.0/24 3786 -114.108.188.0/22 3786 -114.108.192.0/21 23944 -114.108.200.0/22 23944 -114.108.204.0/24 23944 -114.108.205.0/24 45622 -114.108.206.0/23 23944 -114.108.208.0/21 23944 -114.108.216.0/24 45622 -114.108.217.0/24 23944 -114.108.218.0/23 23944 -114.108.220.0/22 23944 -114.108.224.0/21 23944 -114.108.232.0/22 23944 -114.108.236.0/24 45622 -114.108.237.0/24 23944 -114.108.238.0/23 23944 -114.108.240.0/20 23944 -114.109.0.0/17 17552 -114.109.128.0/18 17552 -114.109.192.0/19 17552 -114.109.224.0/20 17552 -114.109.240.0/21 17552 -114.109.248.0/24 17552 -114.109.249.0/24 7470 -114.109.250.0/23 17552 -114.109.252.0/22 17552 -114.110.0.0/20 4808 -114.110.16.0/21 38769 -114.110.32.0/21 18119 -114.110.48.0/20 24572 -114.110.128.0/17 9765 -114.111.0.0/19 4837 -114.111.48.0/21 38107 -114.111.59.0/24 38107 -114.111.60.0/24 38107 -114.111.62.0/23 38107 -114.111.64.0/18 24572 -114.111.128.0/23 132071 -114.111.130.0/23 45577 -114.111.132.0/22 45577 -114.111.136.0/21 45577 -114.111.144.0/21 45577 -114.111.152.0/22 10207 -114.111.156.0/22 45577 -114.111.192.0/18 17871 -114.112.0.0/22 134700 -114.112.14.0/24 4058 -114.112.15.0/24 134700 -114.112.16.0/23 56082 -114.112.18.0/24 134117 -114.112.19.0/24 24155 -114.112.20.0/23 58779 -114.112.22.0/24 134117 -114.112.23.0/24 9535 -114.112.32.0/20 23724 -114.112.48.0/20 4808 -114.112.64.0/21 4808 -114.112.72.0/21 23724 -114.112.80.0/20 4808 -114.112.96.0/21 4808 -114.112.104.0/22 4808 -114.112.109.0/24 23724 -114.112.112.0/22 134548 -114.112.124.0/22 4808 -114.112.128.0/24 9535 -114.112.130.0/24 58779 -114.112.131.0/24 9535 -114.112.132.0/23 9535 -114.112.134.0/24 56082 -114.112.135.0/24 9535 -114.112.136.0/21 23724 -114.112.144.0/21 23724 -114.112.152.0/21 4837 -114.112.160.0/20 4808 -114.112.180.0/24 24143 -114.112.192.0/21 59050 -114.112.224.0/24 58779 -114.112.225.0/24 4134 -114.112.226.0/23 58779 -114.112.228.0/22 58779 -114.112.232.0/23 133107 -114.112.234.0/23 9535 -114.112.236.0/24 133107 -114.112.237.0/24 133929 -114.112.238.0/24 133929 -114.112.239.0/24 133107 -114.112.240.0/23 58779 -114.112.243.0/24 58779 -114.112.245.0/24 58779 -114.112.246.0/24 58779 -114.112.248.0/23 58779 -114.112.250.0/24 58779 -114.112.252.0/23 58779 -114.112.254.0/24 58779 -114.112.255.0/24 133398 -114.113.16.0/20 4808 -114.113.32.0/19 4808 -114.113.64.0/22 4808 -114.113.68.0/23 45058 -114.113.70.0/23 4808 -114.113.72.0/21 4808 -114.113.80.0/21 45058 -114.113.88.0/23 45058 -114.113.90.0/23 4808 -114.113.92.0/22 4808 -114.113.96.0/20 4808 -114.113.112.0/22 45058 -114.113.116.0/23 4847 -114.113.118.0/23 45058 -114.113.120.0/22 4808 -114.113.124.0/23 45058 -114.113.126.0/24 4847 -114.113.127.0/24 45058 -114.113.136.0/24 134700 -114.113.137.0/24 4058 -114.113.138.0/23 134700 -114.113.144.0/20 4808 -114.113.160.0/19 37943 -114.113.196.0/22 45062 -114.113.200.0/22 45062 -114.113.204.0/22 7497 -114.113.216.0/22 18243 -114.113.220.0/22 4808 -114.113.224.0/20 4808 -114.113.240.0/23 133107 -114.113.243.0/24 133107 -114.113.244.0/23 133107 -114.113.246.0/24 56082 -114.113.247.0/24 9535 -114.113.248.0/23 9535 -114.113.250.0/24 4134 -114.113.254.0/24 58779 -114.114.112.0/21 174 -114.115.0.0/17 23724 -114.115.128.0/17 4808 -114.116.0.0/17 4808 -114.116.128.0/18 4808 -114.116.192.0/19 4808 -114.116.224.0/19 55990 -114.118.0.0/18 4808 -114.118.64.0/19 4808 -114.118.96.0/21 4808 -114.118.104.0/21 23724 -114.118.112.0/20 23724 -114.118.128.0/19 136958 -114.118.160.0/20 136958 -114.118.176.0/20 4837 -114.118.192.0/18 4837 -114.119.0.0/22 136958 -114.119.4.0/22 58466 -114.119.8.0/22 58466 -114.119.12.0/22 136958 -114.119.16.0/20 136958 -114.119.32.0/20 58466 -114.119.48.0/20 136958 -114.119.64.0/18 136958 -114.119.128.0/19 136907 -114.119.160.0/21 136907 -114.119.176.0/20 136907 -114.119.204.0/22 59089 -114.120.0.0/13 23693 -114.129.0.0/21 7671 -114.129.8.0/21 38138 -114.129.16.0/21 38758 -114.129.24.0/21 10226 -114.129.32.0/21 9892 -114.129.40.0/23 9892 -114.129.45.0/24 9892 -114.129.46.0/23 9892 -114.129.48.0/20 7671 -114.129.64.0/18 17839 -114.129.128.0/19 7477 -114.129.160.0/20 7477 -114.129.176.0/21 7477 -114.129.192.0/18 9981 -114.130.0.0/19 17806 -114.130.32.0/21 17806 -114.130.40.0/23 17806 -114.130.42.0/23 45532 -114.130.44.0/22 17806 -114.130.48.0/22 17806 -114.130.52.0/23 17806 -114.130.54.0/23 63932 -114.130.56.0/21 17806 -114.130.64.0/19 17806 -114.130.96.0/20 17806 -114.130.112.0/22 17806 -114.130.116.0/22 63932 -114.130.120.0/21 17806 -114.130.128.0/18 17806 -114.130.192.0/19 17806 -114.130.224.0/20 17806 -114.130.240.0/21 17806 -114.130.248.0/22 58732 -114.130.252.0/23 17806 -114.130.254.0/24 58732 -114.130.255.0/24 17806 -114.134.0.0/20 45267 -114.134.21.0/24 59162 -114.134.22.0/24 59162 -114.134.24.0/22 133661 -114.134.28.0/22 24295 -114.134.32.0/19 9601 -114.134.64.0/23 38770 -114.134.69.0/24 38770 -114.134.70.0/24 38770 -114.134.71.0/24 134638 -114.134.80.0/21 9304 -114.134.88.0/21 38031 -114.134.96.0/20 10000 -114.134.112.0/20 4721 -114.134.128.0/19 10000 -114.134.160.0/20 45280 -114.134.176.0/21 45280 -114.134.184.0/21 45429 -114.134.192.0/18 4721 -114.135.0.0/16 4134 -114.136.0.0/15 17421 -114.138.0.0/15 4134 -114.140.0.0/16 9674 -114.141.0.0/19 38661 -114.141.32.0/21 18092 -114.141.48.0/21 38771 -114.141.57.0/24 38772 -114.141.58.0/24 38772 -114.141.60.0/22 38772 -114.141.72.0/23 32787 -114.141.75.0/24 32787 -114.141.76.0/24 32787 -114.141.88.0/21 38773 -114.141.96.0/20 45437 -114.141.112.0/23 29802 -114.141.114.0/24 29802 -114.141.115.0/24 35017 -114.141.116.0/22 35017 -114.141.128.0/18 45061 -114.141.192.0/23 45671 -114.141.195.0/24 45671 -114.141.196.0/22 45671 -114.141.200.0/22 45671 -114.141.204.0/22 24446 -114.141.208.0/21 10102 -114.141.216.0/23 18018 -114.141.218.0/24 18018 -114.141.220.0/22 18018 -114.141.224.0/19 38701 -114.142.0.0/17 7679 -114.142.128.0/21 4721 -114.142.136.0/22 45335 -114.142.140.0/23 45335 -114.142.143.0/24 45335 -114.142.144.0/20 9584 -114.142.160.0/24 133525 -114.142.164.0/22 136712 -114.142.168.0/21 45727 -114.142.176.0/20 17534 -114.142.192.0/18 9246 -114.143.0.0/23 17762 -114.143.2.0/24 134540 -114.143.3.0/24 17762 -114.143.4.0/23 134540 -114.143.6.0/23 17762 -114.143.8.0/24 134540 -114.143.9.0/24 17762 -114.143.10.0/24 17762 -114.143.11.0/24 134540 -114.143.12.0/24 134540 -114.143.13.0/24 17762 -114.143.14.0/24 17762 -114.143.15.0/24 134540 -114.143.16.0/23 17762 -114.143.18.0/24 17762 -114.143.19.0/24 134540 -114.143.20.0/23 134540 -114.143.22.0/24 134540 -114.143.23.0/24 17762 -114.143.24.0/24 134540 -114.143.25.0/24 17762 -114.143.26.0/23 17762 -114.143.28.0/23 134540 -114.143.30.0/23 17762 -114.143.32.0/20 134540 -114.143.48.0/20 17762 -114.143.64.0/20 17762 -114.143.80.0/20 134540 -114.143.96.0/23 134540 -114.143.98.0/23 17762 -114.143.100.0/22 17762 -114.143.104.0/21 17762 -114.143.112.0/20 17762 -114.143.128.0/18 17762 -114.143.192.0/22 17762 -114.143.196.0/24 134540 -114.143.197.0/24 17762 -114.143.198.0/23 17762 -114.143.200.0/21 17762 -114.143.208.0/20 17762 -114.143.224.0/20 17762 -114.143.240.0/21 17762 -114.143.248.0/22 17762 -114.143.252.0/22 134540 -114.144.0.0/12 4713 -114.160.0.0/11 4713 -114.192.0.0/14 9595 -114.196.0.0/15 17968 -114.198.0.0/18 7545 -114.198.64.0/19 7545 -114.198.96.0/20 7545 -114.198.116.0/22 4739 -114.198.122.0/23 7545 -114.198.124.0/22 7545 -114.198.128.0/19 17895 -114.198.160.0/19 24164 -114.198.192.0/19 4721 -114.198.224.0/21 4721 -114.198.234.0/23 45246 -114.198.236.0/22 45246 -114.198.240.0/21 38511 -114.199.0.0/18 9781 -114.199.64.0/20 45250 -114.199.80.0/20 17671 -114.199.96.0/19 24525 -114.199.128.0/23 9569 -114.199.130.0/23 9762 -114.199.132.0/22 9762 -114.199.136.0/22 9569 -114.199.140.0/24 7562 -114.199.141.0/24 9569 -114.199.142.0/23 9569 -114.199.144.0/22 9762 -114.199.148.0/22 7562 -114.199.152.0/23 7562 -114.199.154.0/23 9762 -114.199.156.0/23 9569 -114.199.158.0/24 9569 -114.199.159.0/24 7562 -114.199.160.0/19 45374 -114.199.192.0/19 10175 -114.199.224.0/19 7623 -114.200.0.0/17 9318 -114.200.128.0/18 9318 -114.200.192.0/19 9318 -114.200.224.0/21 9318 -114.200.232.0/22 9318 -114.200.236.0/23 9318 -114.200.238.0/24 9318 -114.200.239.0/24 9945 -114.200.240.0/20 9318 -114.201.0.0/16 9318 -114.202.0.0/17 9318 -114.202.128.0/22 9318 -114.202.132.0/23 9318 -114.202.134.0/24 55632 -114.202.135.0/24 9318 -114.202.136.0/21 9318 -114.202.144.0/20 9318 -114.202.160.0/19 9318 -114.202.192.0/20 9318 -114.202.208.0/21 9318 -114.202.216.0/22 9318 -114.202.220.0/23 9318 -114.202.222.0/24 45399 -114.202.223.0/24 9318 -114.202.224.0/19 9318 -114.203.0.0/16 9318 -114.204.0.0/19 9318 -114.204.32.0/21 9318 -114.204.40.0/22 9318 -114.204.44.0/23 9318 -114.204.46.0/24 9318 -114.204.47.0/24 9647 -114.204.48.0/20 9318 -114.204.64.0/19 9318 -114.204.96.0/20 9318 -114.204.112.0/21 9318 -114.204.120.0/23 9318 -114.204.122.0/24 9318 -114.204.123.0/24 45399 -114.204.124.0/22 9318 -114.204.128.0/17 9318 -114.205.0.0/16 9318 -114.206.0.0/15 9318 -114.212.0.0/15 4538 -114.214.0.0/16 4538 -114.215.0.0/16 37963 -114.216.0.0/17 4134 -114.216.128.0/18 4134 -114.216.192.0/21 4134 -114.216.200.0/24 4134 -114.216.201.0/24 23650 -114.216.202.0/24 23650 -114.216.203.0/24 4134 -114.216.204.0/22 4134 -114.216.208.0/20 4134 -114.216.224.0/19 4134 -114.217.0.0/18 4134 -114.217.64.0/20 4134 -114.217.80.0/21 4134 -114.217.88.0/23 4134 -114.217.90.0/24 23650 -114.217.91.0/24 4134 -114.217.92.0/22 4134 -114.217.96.0/19 4134 -114.217.128.0/20 4134 -114.217.144.0/22 4134 -114.217.148.0/22 23650 -114.217.152.0/21 4134 -114.217.160.0/19 4134 -114.217.192.0/18 4134 -114.218.0.0/19 4134 -114.218.32.0/20 4134 -114.218.48.0/21 4134 -114.218.56.0/24 4134 -114.218.57.0/24 23650 -114.218.58.0/23 4134 -114.218.60.0/22 4134 -114.218.64.0/18 4134 -114.218.128.0/20 4134 -114.218.144.0/21 4134 -114.218.152.0/22 4134 -114.218.156.0/23 4134 -114.218.158.0/24 23650 -114.218.159.0/24 4134 -114.218.160.0/19 4134 -114.218.192.0/18 4134 -114.219.0.0/19 4134 -114.219.32.0/20 4134 -114.219.48.0/21 4134 -114.219.56.0/24 23650 -114.219.57.0/24 4134 -114.219.58.0/23 4134 -114.219.60.0/22 4134 -114.219.64.0/18 4134 -114.219.128.0/20 4134 -114.219.144.0/21 4134 -114.219.152.0/22 4134 -114.219.156.0/24 4134 -114.219.157.0/24 23650 -114.219.158.0/23 4134 -114.219.160.0/19 4134 -114.219.192.0/18 4134 -114.220.0.0/18 4134 -114.220.64.0/21 4134 -114.220.72.0/24 4134 -114.220.73.0/24 23650 -114.220.74.0/23 23650 -114.220.76.0/24 23650 -114.220.77.0/24 4134 -114.220.78.0/23 4134 -114.220.80.0/20 4134 -114.220.96.0/19 4134 -114.220.128.0/19 4134 -114.220.160.0/20 4134 -114.220.176.0/24 23650 -114.220.177.0/24 4134 -114.220.178.0/24 4134 -114.220.179.0/24 23650 -114.220.180.0/22 4134 -114.220.184.0/21 4134 -114.220.192.0/19 4134 -114.220.224.0/21 4134 -114.220.232.0/22 4134 -114.220.236.0/23 4134 -114.220.238.0/24 23650 -114.220.239.0/24 4134 -114.220.240.0/20 4134 -114.221.0.0/17 4134 -114.221.128.0/20 4134 -114.221.144.0/21 134756 -114.221.152.0/21 4134 -114.221.160.0/19 4134 -114.221.192.0/18 4134 -114.222.0.0/18 4134 -114.222.64.0/19 4134 -114.222.96.0/20 4134 -114.222.112.0/22 134756 -114.222.116.0/22 4134 -114.222.120.0/21 4134 -114.222.128.0/17 4134 -114.223.0.0/16 4134 -114.224.0.0/14 4134 -114.228.0.0/15 4134 -114.230.0.0/18 4134 -114.230.64.0/20 4134 -114.230.80.0/21 4134 -114.230.88.0/22 4134 -114.230.92.0/22 137697 -114.230.96.0/19 4134 -114.230.128.0/18 4134 -114.230.192.0/22 4134 -114.230.196.0/22 137697 -114.230.200.0/22 4134 -114.230.204.0/22 137697 -114.230.208.0/22 4134 -114.230.212.0/22 137697 -114.230.216.0/22 4134 -114.230.220.0/22 137697 -114.230.224.0/19 4134 -114.231.0.0/16 4134 -114.232.0.0/13 4134 -114.240.0.0/14 4808 -114.244.0.0/15 4808 -114.246.0.0/16 4808 -114.247.0.0/19 4808 -114.247.32.0/21 4808 -114.247.40.0/22 4808 -114.247.44.0/24 4837 -114.247.45.0/24 4808 -114.247.46.0/23 4808 -114.247.48.0/20 4808 -114.247.64.0/18 4808 -114.247.128.0/17 4808 -114.248.0.0/14 4808 -114.252.0.0/15 4808 -114.254.0.0/16 4808 -114.255.0.0/18 4808 -114.255.64.0/19 4808 -114.255.96.0/21 4808 -114.255.104.0/23 4808 -114.255.106.0/24 4837 -114.255.107.0/24 4808 -114.255.108.0/22 4808 -114.255.112.0/20 4808 -114.255.128.0/17 4808 -115.0.0.0/12 4766 -115.16.0.0/14 4766 -115.20.0.0/16 4766 -115.21.0.0/21 4766 -115.21.8.0/24 10056 -115.21.9.0/24 4766 -115.21.10.0/23 4766 -115.21.12.0/22 4766 -115.21.16.0/22 4766 -115.21.20.0/23 4766 -115.21.22.0/24 10196 -115.21.23.0/24 4766 -115.21.24.0/21 4766 -115.21.32.0/19 4766 -115.21.64.0/18 4766 -115.21.128.0/17 4766 -115.22.0.0/19 4766 -115.22.32.0/23 9959 -115.22.34.0/23 4766 -115.22.36.0/22 4766 -115.22.40.0/21 4766 -115.22.48.0/20 4766 -115.22.64.0/18 4766 -115.22.128.0/17 4766 -115.23.0.0/17 4766 -115.23.128.0/18 4766 -115.23.192.0/19 4766 -115.23.224.0/21 4766 -115.23.232.0/23 4766 -115.23.234.0/24 4766 -115.23.235.0/24 38402 -115.23.236.0/22 4766 -115.23.240.0/20 4766 -115.24.0.0/14 4538 -115.28.0.0/15 37963 -115.30.0.0/19 17941 -115.30.32.0/19 10113 -115.30.64.0/21 133747 -115.30.72.0/22 55303 -115.30.128.0/17 7522 -115.31.0.0/18 7522 -115.31.64.0/22 58541 -115.31.80.0/21 23827 -115.31.88.0/24 56079 -115.31.89.0/24 139664 -115.31.90.0/23 56079 -115.31.92.0/22 56079 -115.31.96.0/19 38120 -115.31.128.0/23 38794 -115.31.130.0/24 55325 -115.31.131.0/24 38794 -115.31.132.0/22 38794 -115.31.136.0/21 38794 -115.31.144.0/21 38794 -115.31.152.0/22 38794 -115.31.156.0/23 38794 -115.31.158.0/24 45796 -115.31.159.0/24 38794 -115.31.160.0/22 38794 -115.31.164.0/24 45796 -115.31.165.0/24 38794 -115.31.166.0/23 38794 -115.31.168.0/21 38794 -115.31.176.0/21 38794 -115.31.184.0/22 38794 -115.31.188.0/24 38794 -115.31.189.0/24 46013 -115.31.190.0/24 38794 -115.31.191.0/24 55927 -115.31.192.0/20 37897 -115.32.0.0/17 4847 -115.33.0.0/16 4808 -115.34.0.0/15 4808 -115.36.0.0/14 18126 -115.40.0.0/16 9845 -115.41.0.0/17 10066 -115.41.128.0/18 18313 -115.41.192.0/20 17839 -115.41.208.0/21 38091 -115.41.216.0/23 38091 -115.41.218.0/23 45996 -115.41.220.0/23 45996 -115.41.222.0/24 45996 -115.41.223.0/24 38091 -115.41.224.0/19 38091 -115.42.0.0/19 7600 -115.42.32.0/22 134325 -115.42.44.0/22 134933 -115.42.52.0/22 135019 -115.42.60.0/22 38197 -115.42.64.0/21 132165 -115.42.72.0/22 138423 -115.42.76.0/23 138423 -115.42.96.0/20 4721 -115.42.120.0/22 135345 -115.42.124.0/24 137406 -115.42.125.0/24 135345 -115.42.126.0/23 135345 -115.42.128.0/17 3758 -115.43.0.0/16 9416 -115.44.0.0/15 17962 -115.46.0.0/16 4837 -115.47.0.0/16 4847 -115.48.0.0/12 4837 -115.64.0.0/16 7545 -115.65.0.0/16 9595 -115.66.0.0/16 9506 -115.67.0.0/21 10089 -115.67.8.0/21 133543 -115.67.16.0/20 24378 -115.67.32.0/19 24378 -115.67.64.0/24 9587 -115.67.65.0/24 24378 -115.67.66.0/23 24378 -115.67.68.0/22 24378 -115.67.72.0/21 24378 -115.67.80.0/20 24378 -115.67.96.0/19 24378 -115.67.128.0/18 24378 -115.67.192.0/19 24378 -115.67.224.0/20 24378 -115.67.240.0/21 24378 -115.67.248.0/22 24378 -115.67.252.0/24 24378 -115.67.253.0/24 9587 -115.67.254.0/24 9587 -115.67.255.0/24 24378 -115.68.0.0/16 38700 -115.69.0.0/18 18390 -115.69.80.0/22 45272 -115.69.84.0/24 45272 -115.69.88.0/22 45272 -115.69.92.0/23 45272 -115.69.95.0/24 45272 -115.69.96.0/19 7623 -115.69.157.0/24 45271 -115.69.158.0/23 45271 -115.69.160.0/19 55850 -115.69.192.0/20 17941 -115.69.208.0/21 45276 -115.69.216.0/21 38778 -115.69.224.0/21 38639 -115.69.232.0/22 55391 -115.69.236.0/22 55392 -115.69.240.0/21 45415 -115.69.248.0/22 45415 -115.69.252.0/24 45415 -115.69.253.0/24 132573 -115.69.254.0/23 45415 -115.70.0.0/16 10143 -115.71.0.0/16 45996 -115.72.0.0/13 7552 -115.81.0.0/16 24158 -115.82.0.0/19 24158 -115.82.128.0/17 24158 -115.84.0.0/18 18239 -115.84.64.0/18 9873 -115.84.128.0/19 24016 -115.84.160.0/21 17574 -115.84.176.0/21 38731 -115.84.184.0/21 38628 -115.84.224.0/19 9658 -115.85.0.0/23 9658 -115.85.2.0/24 18190 -115.85.3.0/24 9658 -115.85.4.0/22 9658 -115.85.8.0/21 9658 -115.85.16.0/20 9658 -115.85.32.0/19 9658 -115.85.64.0/20 23953 -115.85.80.0/21 23953 -115.85.88.0/22 23953 -115.85.92.0/23 23953 -115.85.94.0/24 23953 -115.85.95.0/24 56060 -115.85.96.0/22 23629 -115.85.104.0/21 23629 -115.85.112.0/21 23629 -115.85.120.0/22 23629 -115.85.124.0/23 23629 -115.85.128.0/24 45331 -115.85.129.0/24 17978 -115.85.130.0/23 17978 -115.85.132.0/22 17978 -115.85.136.0/21 9354 -115.85.144.0/20 10135 -115.85.160.0/20 4766 -115.85.192.0/18 4837 -115.86.0.0/16 17598 -115.87.0.0/18 17552 -115.87.64.0/22 17552 -115.87.68.0/23 17552 -115.87.70.0/23 7470 -115.87.72.0/23 7470 -115.87.74.0/23 17552 -115.87.76.0/22 17552 -115.87.80.0/20 17552 -115.87.96.0/19 17552 -115.87.128.0/17 17552 -115.88.0.0/22 3786 -115.88.4.0/24 3786 -115.88.5.0/24 9946 -115.88.6.0/23 3786 -115.88.8.0/21 3786 -115.88.16.0/23 3786 -115.88.18.0/24 3786 -115.88.19.0/24 9946 -115.88.20.0/22 3786 -115.88.24.0/23 3786 -115.88.26.0/24 9946 -115.88.27.0/24 3786 -115.88.28.0/22 3786 -115.88.32.0/20 3786 -115.88.48.0/22 3786 -115.88.52.0/24 9946 -115.88.53.0/24 3786 -115.88.54.0/23 3786 -115.88.56.0/21 3786 -115.88.64.0/23 3786 -115.88.66.0/24 17578 -115.88.67.0/24 3786 -115.88.68.0/22 3786 -115.88.72.0/22 3786 -115.88.76.0/24 3786 -115.88.77.0/24 4665 -115.88.78.0/23 3786 -115.88.80.0/23 3786 -115.88.82.0/24 3786 -115.88.83.0/24 38127 -115.88.84.0/22 3786 -115.88.88.0/21 3786 -115.88.96.0/20 3786 -115.88.112.0/21 3786 -115.88.120.0/23 3786 -115.88.122.0/24 3786 -115.88.123.0/24 45974 -115.88.124.0/22 3786 -115.88.128.0/22 3786 -115.88.132.0/24 45974 -115.88.133.0/24 3786 -115.88.134.0/23 3786 -115.88.136.0/21 3786 -115.88.144.0/20 3786 -115.88.160.0/19 3786 -115.88.192.0/19 3786 -115.88.224.0/20 3786 -115.88.240.0/21 3786 -115.88.248.0/23 3786 -115.88.250.0/24 9946 -115.88.251.0/24 3786 -115.88.252.0/22 3786 -115.89.0.0/21 3786 -115.89.8.0/22 3786 -115.89.12.0/24 3786 -115.89.13.0/24 55605 -115.89.14.0/23 3786 -115.89.16.0/23 3786 -115.89.18.0/24 9946 -115.89.19.0/24 3786 -115.89.20.0/22 3786 -115.89.24.0/24 3786 -115.89.25.0/24 9946 -115.89.26.0/24 3786 -115.89.27.0/24 9946 -115.89.28.0/22 3786 -115.89.32.0/19 3786 -115.89.64.0/21 3786 -115.89.72.0/23 3786 -115.89.74.0/24 45974 -115.89.75.0/24 3786 -115.89.76.0/22 3786 -115.89.80.0/20 3786 -115.89.96.0/19 3786 -115.89.128.0/18 3786 -115.89.192.0/21 3786 -115.89.200.0/23 3786 -115.89.202.0/24 3786 -115.89.203.0/24 45974 -115.89.204.0/22 3786 -115.89.208.0/20 3786 -115.89.224.0/19 3786 -115.90.0.0/16 3786 -115.91.0.0/20 3786 -115.91.16.0/21 3786 -115.91.24.0/23 3786 -115.91.26.0/24 138195 -115.91.27.0/24 3786 -115.91.28.0/22 3786 -115.91.32.0/19 3786 -115.91.64.0/18 3786 -115.91.128.0/18 3786 -115.91.192.0/23 3786 -115.91.194.0/24 9529 -115.91.195.0/24 3786 -115.91.196.0/22 3786 -115.91.200.0/21 3786 -115.91.208.0/20 3786 -115.91.224.0/19 3786 -115.92.0.0/18 3786 -115.92.64.0/24 45974 -115.92.65.0/24 3786 -115.92.66.0/23 3786 -115.92.68.0/22 3786 -115.92.72.0/21 3786 -115.92.80.0/20 3786 -115.92.96.0/23 3786 -115.92.98.0/24 3786 -115.92.99.0/24 38661 -115.92.100.0/22 38661 -115.92.104.0/22 38661 -115.92.108.0/24 38661 -115.92.109.0/24 3786 -115.92.110.0/23 3786 -115.92.112.0/21 3786 -115.92.120.0/22 3786 -115.92.124.0/24 38661 -115.92.125.0/24 3786 -115.92.126.0/23 3786 -115.92.128.0/20 38661 -115.92.144.0/20 3786 -115.92.160.0/22 3786 -115.92.164.0/24 3786 -115.92.165.0/24 9946 -115.92.166.0/23 3786 -115.92.168.0/23 3786 -115.92.170.0/24 3786 -115.92.171.0/24 23972 -115.92.172.0/24 9946 -115.92.173.0/24 3786 -115.92.174.0/23 3786 -115.92.176.0/22 3786 -115.92.180.0/24 9946 -115.92.181.0/24 3786 -115.92.182.0/24 3786 -115.92.183.0/24 9843 -115.92.184.0/21 3786 -115.92.192.0/19 3786 -115.92.224.0/21 3786 -115.92.232.0/22 3786 -115.92.236.0/24 3786 -115.92.237.0/24 9946 -115.92.238.0/23 3786 -115.92.240.0/20 3786 -115.93.0.0/16 3786 -115.94.0.0/15 3786 -115.96.0.0/19 17488 -115.96.32.0/21 17488 -115.96.44.0/22 17488 -115.96.48.0/21 17488 -115.96.56.0/22 17488 -115.96.64.0/23 17488 -115.96.68.0/22 17488 -115.96.72.0/21 17488 -115.96.80.0/20 17488 -115.96.96.0/19 17488 -115.96.128.0/17 17488 -115.97.0.0/16 17488 -115.98.0.0/22 17488 -115.98.8.0/21 17488 -115.98.16.0/20 17488 -115.98.32.0/19 17488 -115.98.64.0/18 17488 -115.98.128.0/18 17488 -115.98.192.0/19 17488 -115.98.224.0/21 17488 -115.98.236.0/22 17488 -115.98.240.0/20 17488 -115.99.0.0/18 17488 -115.99.68.0/22 17488 -115.99.72.0/21 17488 -115.99.80.0/20 17488 -115.99.96.0/19 17488 -115.99.128.0/20 17488 -115.99.144.0/24 17488 -115.99.148.0/22 17488 -115.99.156.0/22 17488 -115.99.168.0/21 17488 -115.99.176.0/20 17488 -115.99.196.0/22 17488 -115.99.200.0/23 17488 -115.99.208.0/20 17488 -115.99.232.0/21 17488 -115.99.240.0/20 17488 -115.100.0.0/17 4837 -115.100.128.0/18 4837 -115.100.192.0/19 4837 -115.100.224.0/20 4837 -115.100.240.0/21 4837 -115.100.248.0/22 23724 -115.100.252.0/22 4837 -115.101.0.0/16 4837 -115.106.0.0/15 38370 -115.108.0.0/17 17908 -115.108.192.0/18 17908 -115.109.0.0/17 17908 -115.109.128.0/21 17908 -115.109.136.0/22 17908 -115.109.140.0/23 17908 -115.109.142.0/23 4755 -115.109.144.0/20 17908 -115.109.160.0/22 4755 -115.109.164.0/23 4755 -115.109.166.0/23 17908 -115.109.168.0/21 4755 -115.109.176.0/20 17908 -115.109.192.0/19 17908 -115.109.224.0/20 17908 -115.109.240.0/21 4755 -115.109.248.0/21 17908 -115.110.0.0/18 17908 -115.110.64.0/19 4755 -115.110.96.0/20 4755 -115.110.112.0/21 4755 -115.110.120.0/24 4755 -115.110.122.0/23 4755 -115.110.124.0/22 4755 -115.110.128.0/17 4755 -115.111.0.0/19 4755 -115.111.32.0/20 4755 -115.111.48.0/22 4755 -115.111.53.0/24 4755 -115.111.56.0/21 4755 -115.111.64.0/18 4755 -115.111.128.0/19 4755 -115.111.168.0/21 4755 -115.111.176.0/20 4755 -115.111.192.0/20 4755 -115.111.208.0/21 4755 -115.111.216.0/22 4755 -115.111.220.0/23 4755 -115.111.222.0/24 4755 -115.111.223.0/24 25605 -115.111.224.0/19 4755 -115.112.0.0/17 4755 -115.112.128.0/19 4755 -115.112.160.0/21 4755 -115.112.168.0/23 6453 -115.112.170.0/23 4755 -115.112.172.0/22 4755 -115.112.176.0/20 4755 -115.112.192.0/20 4755 -115.112.208.0/22 4755 -115.112.212.0/24 9238 -115.112.213.0/24 4755 -115.112.214.0/23 4755 -115.112.216.0/21 4755 -115.112.224.0/19 4755 -115.113.0.0/16 4755 -115.114.0.0/20 4755 -115.114.16.0/22 4755 -115.114.26.0/23 4755 -115.114.28.0/22 4755 -115.114.36.0/22 4755 -115.114.40.0/23 4755 -115.114.44.0/22 4755 -115.114.48.0/20 4755 -115.114.69.0/24 4755 -115.114.70.0/23 4755 -115.114.72.0/23 4755 -115.114.77.0/24 4755 -115.114.78.0/24 4755 -115.114.81.0/24 4755 -115.114.88.0/23 4755 -115.114.90.0/24 4755 -115.114.92.0/22 4755 -115.114.96.0/22 4755 -115.114.102.0/23 4755 -115.114.106.0/23 4755 -115.114.108.0/22 4755 -115.114.112.0/20 4755 -115.114.128.0/20 4755 -115.114.148.0/24 4755 -115.114.165.0/24 4755 -115.114.191.0/24 4755 -115.114.222.0/23 4755 -115.114.244.0/24 4755 -115.115.0.0/16 4755 -115.116.0.0/16 4755 -115.117.0.0/19 10199 -115.117.32.0/21 10199 -115.117.40.0/22 10199 -115.117.44.0/24 4755 -115.117.45.0/24 10199 -115.117.46.0/23 10199 -115.117.48.0/20 10199 -115.117.64.0/18 10199 -115.117.128.0/19 4755 -115.117.160.0/20 10199 -115.117.176.0/22 4755 -115.117.180.0/22 10199 -115.117.184.0/22 10199 -115.117.188.0/23 10199 -115.117.190.0/24 10199 -115.117.191.0/24 45820 -115.117.192.0/20 4755 -115.117.208.0/20 10199 -115.117.224.0/19 4755 -115.118.0.0/21 45820 -115.118.8.0/23 45820 -115.118.10.0/23 10199 -115.118.12.0/22 10199 -115.118.16.0/22 4755 -115.118.20.0/22 10199 -115.118.24.0/21 10199 -115.118.32.0/23 45820 -115.118.34.0/24 45820 -115.118.35.0/24 10199 -115.118.36.0/24 10199 -115.118.37.0/24 45820 -115.118.38.0/24 45820 -115.118.39.0/24 10199 -115.118.40.0/22 10199 -115.118.44.0/22 4755 -115.118.48.0/20 10199 -115.118.64.0/24 45820 -115.118.65.0/24 4755 -115.118.66.0/24 45820 -115.118.67.0/24 10199 -115.118.68.0/22 10199 -115.118.72.0/24 17762 -115.118.73.0/24 10199 -115.118.74.0/23 10199 -115.118.76.0/23 45820 -115.118.78.0/24 45820 -115.118.79.0/24 10199 -115.118.80.0/20 10199 -115.118.96.0/23 45820 -115.118.98.0/24 45820 -115.118.101.0/24 10199 -115.118.102.0/23 10199 -115.118.104.0/22 10199 -115.118.108.0/22 45820 -115.118.112.0/20 10199 -115.118.128.0/22 45820 -115.118.132.0/24 10199 -115.118.133.0/24 45820 -115.118.134.0/23 45820 -115.118.136.0/24 10199 -115.118.137.0/24 45820 -115.118.138.0/24 45820 -115.118.139.0/24 10199 -115.118.140.0/22 10199 -115.118.144.0/20 10199 -115.118.160.0/23 45820 -115.118.162.0/24 10199 -115.118.163.0/24 45820 -115.118.164.0/23 10199 -115.118.166.0/24 45820 -115.118.167.0/24 10199 -115.118.168.0/21 10199 -115.118.180.0/22 4755 -115.118.184.0/21 4755 -115.118.192.0/21 45820 -115.118.200.0/22 10199 -115.118.204.0/22 4755 -115.118.208.0/20 10199 -115.118.240.0/20 10199 -115.119.0.0/16 4755 -115.120.0.0/17 4847 -115.120.128.0/17 17964 -115.124.0.0/21 38858 -115.124.8.0/21 56123 -115.124.16.0/20 37963 -115.124.32.0/22 36351 -115.124.36.0/22 201942 -115.124.40.0/24 56124 -115.124.41.0/24 58765 -115.124.42.0/23 58765 -115.124.46.0/23 56124 -115.124.48.0/20 38628 -115.124.64.0/22 38511 -115.124.68.0/23 38511 -115.124.70.0/23 56242 -115.124.72.0/21 38511 -115.124.85.0/24 38511 -115.124.86.0/23 38511 -115.124.88.0/22 38511 -115.124.92.0/24 38511 -115.124.93.0/24 58552 -115.124.94.0/23 38511 -115.124.96.0/20 45815 -115.124.112.0/22 45815 -115.124.120.0/21 45815 -115.124.128.0/17 7679 -115.125.0.0/16 17506 -115.126.0.0/23 38186 -115.126.3.0/24 38186 -115.126.4.0/24 38186 -115.126.6.0/23 38186 -115.126.8.0/24 38186 -115.126.10.0/23 38186 -115.126.12.0/24 38186 -115.126.14.0/23 38186 -115.126.16.0/21 38186 -115.126.24.0/23 38186 -115.126.26.0/24 38186 -115.126.28.0/22 38186 -115.126.32.0/24 38186 -115.126.35.0/24 38186 -115.126.36.0/23 38186 -115.126.40.0/24 38186 -115.126.42.0/23 38186 -115.126.44.0/24 38186 -115.126.46.0/23 38186 -115.126.48.0/22 38186 -115.126.52.0/23 38186 -115.126.54.0/24 38186 -115.126.56.0/22 38186 -115.126.61.0/24 38186 -115.126.62.0/23 38186 -115.126.64.0/20 38186 -115.126.80.0/22 38186 -115.126.84.0/23 38186 -115.126.87.0/24 38186 -115.126.88.0/21 38186 -115.126.96.0/22 38186 -115.126.100.0/23 38186 -115.126.104.0/24 38186 -115.126.106.0/23 38186 -115.126.108.0/24 38186 -115.126.110.0/23 38186 -115.126.113.0/24 38186 -115.126.114.0/23 38186 -115.126.116.0/24 38186 -115.126.118.0/23 38186 -115.126.120.0/22 38186 -115.126.126.0/23 38186 -115.126.128.0/21 23934 -115.126.136.0/21 38628 -115.126.144.0/20 7687 -115.126.160.0/19 45345 -115.126.192.0/18 9976 -115.127.0.0/17 24342 -115.127.128.0/18 24342 -115.127.192.0/20 24342 -115.127.224.0/23 36408 -115.127.226.0/24 36408 -115.127.227.0/24 54994 -115.127.228.0/22 36408 -115.127.232.0/24 54994 -115.127.233.0/24 36408 -115.127.234.0/23 36408 -115.127.237.0/24 36408 -115.127.238.0/23 36408 -115.127.240.0/22 54994 -115.127.244.0/23 54994 -115.127.246.0/23 36408 -115.127.248.0/23 36408 -115.127.250.0/24 36408 -115.127.254.0/23 36408 -115.128.0.0/14 133612 -115.132.0.0/14 4788 -115.136.0.0/13 17858 -115.144.0.0/19 4766 -115.144.32.0/23 4766 -115.144.34.0/24 4766 -115.144.35.0/24 10195 -115.144.36.0/23 4766 -115.144.38.0/24 4766 -115.144.39.0/24 10195 -115.144.40.0/21 4766 -115.144.48.0/21 4766 -115.144.56.0/24 10195 -115.144.57.0/24 4766 -115.144.58.0/23 4766 -115.144.60.0/22 4766 -115.144.64.0/22 4766 -115.144.68.0/24 4766 -115.144.69.0/24 3786 -115.144.70.0/23 4766 -115.144.72.0/21 4766 -115.144.80.0/20 4766 -115.144.96.0/20 4766 -115.144.112.0/21 4766 -115.144.120.0/23 4766 -115.144.122.0/24 3786 -115.144.123.0/24 4766 -115.144.124.0/22 4766 -115.144.128.0/19 4766 -115.144.160.0/22 4766 -115.144.164.0/23 4766 -115.144.166.0/24 3786 -115.144.167.0/24 4766 -115.144.168.0/21 4766 -115.144.176.0/23 4766 -115.144.178.0/24 3786 -115.144.179.0/24 4766 -115.144.180.0/22 4766 -115.144.184.0/21 4766 -115.144.192.0/19 4766 -115.144.224.0/21 4766 -115.144.232.0/22 4766 -115.144.236.0/23 4766 -115.144.238.0/24 3786 -115.144.239.0/24 4766 -115.144.240.0/20 4766 -115.145.0.0/16 9686 -115.146.0.0/18 9597 -115.146.64.0/20 38883 -115.146.80.0/20 10148 -115.146.112.0/22 17886 -115.146.116.0/22 55818 -115.146.120.0/21 38732 -115.146.128.0/23 18115 -115.146.132.0/23 18115 -115.146.135.0/24 18115 -115.146.146.0/24 55413 -115.148.0.0/14 4134 -115.152.0.0/15 4134 -115.154.0.0/15 4538 -115.156.0.0/15 4538 -115.158.0.0/16 4538 -115.159.0.0/16 45090 -115.160.0.0/17 9694 -115.160.128.0/18 9381 -115.160.192.0/20 17820 -115.160.217.0/24 45820 -115.160.224.0/21 17820 -115.160.240.0/20 45820 -115.161.0.0/18 9689 -115.161.64.0/19 9689 -115.161.96.0/19 38095 -115.161.128.0/18 38103 -115.161.192.0/18 38097 -115.162.0.0/15 2527 -115.164.0.0/16 4818 -115.165.0.0/17 9365 -115.165.128.0/19 9365 -115.165.160.0/24 45903 -115.165.161.0/24 38733 -115.165.162.0/23 38733 -115.165.164.0/23 38733 -115.165.166.0/24 45903 -115.165.167.0/24 38733 -115.165.169.0/24 45418 -115.165.170.0/24 136557 -115.165.171.0/24 45418 -115.165.172.0/22 45418 -115.165.176.0/21 38676 -115.165.184.0/21 17957 -115.165.192.0/18 24165 -115.166.0.0/18 4739 -115.166.90.0/24 133955 -115.166.96.0/19 24535 -115.166.128.0/22 45194 -115.166.132.0/22 17665 -115.166.140.0/22 132445 -115.166.144.0/20 38043 -115.166.160.0/19 24277 -115.166.192.0/20 24277 -115.166.208.0/20 9600 -115.166.224.0/19 23785 -115.167.0.0/19 38547 -115.167.48.0/20 38547 -115.167.64.0/20 38547 -115.167.96.0/19 38547 -115.167.128.0/17 23785 -115.168.0.0/19 4134 -115.168.32.0/22 4134 -115.168.36.0/24 4134 -115.168.37.0/24 17799 -115.168.38.0/23 4134 -115.168.40.0/24 4134 -115.168.41.0/24 4812 -115.168.42.0/23 4134 -115.168.44.0/22 4134 -115.168.48.0/20 4134 -115.168.64.0/24 4847 -115.168.65.0/24 4134 -115.168.66.0/23 4134 -115.168.68.0/24 4134 -115.168.69.0/24 17799 -115.168.70.0/23 4134 -115.168.72.0/24 4134 -115.168.73.0/24 4812 -115.168.74.0/23 4134 -115.168.76.0/22 4134 -115.168.80.0/20 4134 -115.168.96.0/19 4134 -115.168.128.0/17 4134 -115.169.0.0/23 4134 -115.169.2.0/24 58518 -115.169.3.0/24 4134 -115.169.4.0/23 58518 -115.169.6.0/24 4134 -115.169.7.0/24 58517 -115.169.8.0/24 58517 -115.169.9.0/24 4134 -115.169.10.0/23 58517 -115.169.12.0/23 58517 -115.169.14.0/23 4134 -115.169.16.0/20 4134 -115.169.32.0/24 4809 -115.169.33.0/24 58518 -115.169.34.0/23 58518 -115.169.36.0/23 58518 -115.169.38.0/24 58518 -115.169.39.0/24 4809 -115.169.40.0/24 4809 -115.169.41.0/24 58518 -115.169.42.0/23 4134 -115.169.44.0/22 4134 -115.169.48.0/20 4134 -115.169.64.0/18 4134 -115.169.128.0/18 4134 -115.169.192.0/19 4134 -115.169.224.0/20 4134 -115.169.240.0/21 4134 -115.169.248.0/22 4134 -115.169.252.0/24 4134 -115.169.253.0/24 58520 -115.169.254.0/23 4134 -115.170.0.0/18 4134 -115.170.64.0/19 4134 -115.170.96.0/20 4134 -115.170.112.0/22 4134 -115.170.116.0/24 4134 -115.170.117.0/24 137689 -115.170.118.0/24 137689 -115.170.119.0/24 4134 -115.170.120.0/21 4134 -115.170.128.0/22 4847 -115.170.132.0/23 137689 -115.170.134.0/23 4847 -115.170.136.0/21 4847 -115.170.144.0/20 4847 -115.170.160.0/22 4847 -115.170.164.0/24 4847 -115.170.165.0/24 137692 -115.170.166.0/24 137692 -115.170.167.0/24 4847 -115.170.168.0/21 4847 -115.170.176.0/20 4847 -115.170.192.0/18 4847 -115.171.0.0/16 4847 -115.172.0.0/19 7497 -115.172.96.0/19 7497 -115.172.128.0/19 17430 -115.173.0.0/19 4837 -115.173.64.0/18 17964 -115.174.0.0/18 17623 -115.174.64.0/19 24143 -115.175.0.0/16 7497 -115.176.0.0/15 2510 -115.178.0.0/23 24506 -115.178.2.0/24 55517 -115.178.6.0/23 17457 -115.178.8.0/23 17457 -115.178.16.0/21 55359 -115.178.24.0/22 45429 -115.178.28.0/22 4739 -115.178.32.0/20 38705 -115.178.48.0/22 38783 -115.178.52.0/24 38783 -115.178.53.0/24 131717 -115.178.54.0/24 131717 -115.178.55.0/24 38783 -115.178.56.0/24 45458 -115.178.57.0/24 45430 -115.178.58.0/24 45458 -115.178.59.0/24 45430 -115.178.60.0/22 45441 -115.178.64.0/19 9318 -115.178.96.0/21 45433 -115.178.104.0/21 132029 -115.178.112.0/24 10013 -115.178.114.0/23 10013 -115.178.116.0/22 10013 -115.178.128.0/23 9794 -115.178.130.0/24 9794 -115.178.160.0/22 18004 -115.178.165.0/24 18004 -115.178.166.0/23 18004 -115.178.172.0/22 18004 -115.178.176.0/20 18004 -115.178.192.0/18 18004 -115.179.0.0/19 2519 -115.179.32.0/20 2519 -115.179.48.0/21 2519 -115.179.56.0/24 2519 -115.179.57.0/24 10004 -115.179.58.0/23 2519 -115.179.60.0/22 2519 -115.179.64.0/18 2519 -115.179.128.0/18 2519 -115.179.192.0/21 2519 -115.179.200.0/24 10004 -115.179.201.0/24 2519 -115.179.202.0/23 2519 -115.179.204.0/22 2519 -115.179.208.0/20 2519 -115.179.224.0/19 2519 -115.181.16.0/23 4847 -115.181.34.0/23 4847 -115.181.36.0/22 4847 -115.181.64.0/20 9395 -115.182.0.0/20 17964 -115.182.16.0/20 4847 -115.182.32.0/20 4847 -115.182.48.0/20 4808 -115.182.64.0/21 17964 -115.182.72.0/22 17964 -115.182.76.0/22 4808 -115.182.80.0/20 17964 -115.182.96.0/19 17964 -115.182.128.0/18 4847 -115.182.192.0/18 17964 -115.183.0.0/16 4808 -115.186.0.0/23 38616 -115.186.2.0/23 132165 -115.186.4.0/22 132165 -115.186.8.0/23 132165 -115.186.10.0/23 38616 -115.186.12.0/23 38710 -115.186.14.0/24 38710 -115.186.15.0/24 55414 -115.186.16.0/23 38710 -115.186.19.0/24 38616 -115.186.20.0/23 55414 -115.186.23.0/24 38616 -115.186.24.0/23 38710 -115.186.26.0/23 55414 -115.186.28.0/23 55414 -115.186.30.0/23 38710 -115.186.32.0/20 38710 -115.186.56.0/22 38710 -115.186.60.0/23 38710 -115.186.62.0/24 131271 -115.186.63.0/24 38710 -115.186.76.0/22 132165 -115.186.80.0/21 132165 -115.186.89.0/24 38616 -115.186.92.0/24 38616 -115.186.95.0/24 38616 -115.186.96.0/21 38616 -115.186.105.0/24 38616 -115.186.106.0/24 38616 -115.186.108.0/22 38616 -115.186.112.0/21 38616 -115.186.120.0/24 38616 -115.186.122.0/23 38616 -115.186.125.0/24 38616 -115.186.126.0/23 38616 -115.186.128.0/18 23674 -115.186.192.0/18 10223 -115.187.32.0/19 23860 -115.187.64.0/23 2514 -115.187.66.0/23 2519 -115.187.68.0/22 2519 -115.187.72.0/21 2519 -115.187.82.0/24 38661 -115.187.88.0/22 45509 -115.187.92.0/22 17937 -115.187.96.0/19 55872 -115.187.128.0/17 17734 -115.188.0.0/19 4771 -115.188.32.0/20 4771 -115.188.56.0/21 4771 -115.188.64.0/19 4771 -115.188.120.0/21 4771 -115.188.128.0/17 4771 -115.189.0.0/18 4771 -115.189.80.0/20 4771 -115.189.96.0/20 4771 -115.189.128.0/20 4771 -115.189.160.0/19 4771 -115.189.224.0/19 4771 -115.190.0.0/15 7497 -115.192.0.0/12 4134 -115.208.0.0/13 4134 -115.216.0.0/14 4134 -115.220.0.0/20 58461 -115.220.16.0/20 4134 -115.220.32.0/19 4134 -115.220.64.0/18 4134 -115.220.128.0/17 4134 -115.221.0.0/16 4134 -115.222.0.0/16 4134 -115.223.0.0/20 134771 -115.223.16.0/22 4134 -115.223.20.0/23 4134 -115.223.22.0/24 134771 -115.223.23.0/24 4134 -115.223.24.0/21 4134 -115.223.32.0/22 134771 -115.223.36.0/22 4134 -115.223.40.0/21 4134 -115.223.48.0/20 4134 -115.223.64.0/18 4134 -115.223.128.0/17 4134 -115.224.0.0/23 4134 -115.224.2.0/24 4809 -115.224.3.0/24 4134 -115.224.4.0/22 4134 -115.224.8.0/21 4134 -115.224.16.0/20 4134 -115.224.32.0/19 4134 -115.224.64.0/18 4134 -115.224.128.0/17 4134 -115.225.0.0/16 4134 -115.226.0.0/16 4134 -115.227.0.0/19 58461 -115.227.32.0/20 58461 -115.227.48.0/21 58461 -115.227.56.0/21 4134 -115.227.64.0/18 4134 -115.227.128.0/17 4134 -115.228.0.0/15 4134 -115.230.0.0/18 4134 -115.230.64.0/19 4134 -115.230.96.0/20 4134 -115.230.112.0/21 4134 -115.230.120.0/22 4134 -115.230.124.0/22 58461 -115.230.128.0/17 4134 -115.231.0.0/21 4134 -115.231.8.0/21 58461 -115.231.16.0/21 4134 -115.231.24.0/23 4134 -115.231.26.0/24 4134 -115.231.27.0/24 58461 -115.231.28.0/23 58461 -115.231.30.0/23 4134 -115.231.32.0/20 136188 -115.231.48.0/20 4134 -115.231.64.0/22 4134 -115.231.68.0/23 4134 -115.231.70.0/23 58461 -115.231.72.0/24 4134 -115.231.73.0/24 58461 -115.231.74.0/23 58461 -115.231.76.0/24 4134 -115.231.77.0/24 58461 -115.231.78.0/23 58461 -115.231.80.0/22 136190 -115.231.84.0/23 136190 -115.231.86.0/24 136190 -115.231.87.0/24 4134 -115.231.88.0/24 4134 -115.231.89.0/24 136190 -115.231.90.0/23 136190 -115.231.92.0/22 136190 -115.231.96.0/24 4134 -115.231.97.0/24 58461 -115.231.98.0/24 4134 -115.231.99.0/24 58461 -115.231.100.0/23 58461 -115.231.102.0/23 4134 -115.231.104.0/24 4134 -115.231.105.0/24 58461 -115.231.106.0/23 4134 -115.231.108.0/23 4134 -115.231.110.0/24 58461 -115.231.111.0/24 4134 -115.231.112.0/20 4134 -115.231.128.0/19 136190 -115.231.160.0/21 58461 -115.231.168.0/24 58461 -115.231.169.0/24 4134 -115.231.170.0/23 58461 -115.231.172.0/24 58461 -115.231.173.0/24 4134 -115.231.174.0/23 58461 -115.231.176.0/20 136188 -115.231.192.0/20 4134 -115.231.208.0/21 4134 -115.231.216.0/21 58461 -115.231.224.0/21 58461 -115.231.232.0/22 58461 -115.231.236.0/24 58461 -115.231.237.0/24 4134 -115.231.238.0/24 4134 -115.231.239.0/24 58461 -115.231.240.0/20 4134 -115.232.0.0/16 4134 -115.233.0.0/20 4134 -115.233.16.0/22 4134 -115.233.20.0/23 4134 -115.233.22.0/24 4134 -115.233.23.0/24 58461 -115.233.24.0/21 4134 -115.233.32.0/19 4134 -115.233.64.0/20 4134 -115.233.80.0/21 4134 -115.233.88.0/23 4134 -115.233.90.0/24 4134 -115.233.91.0/24 136188 -115.233.92.0/22 4134 -115.233.96.0/19 4134 -115.233.128.0/18 4134 -115.233.192.0/19 4809 -115.233.224.0/20 4134 -115.233.240.0/22 4134 -115.233.244.0/23 4134 -115.233.246.0/24 58461 -115.233.247.0/24 4134 -115.233.248.0/21 4134 -115.234.0.0/15 4134 -115.236.0.0/20 4134 -115.236.16.0/24 58461 -115.236.17.0/24 4134 -115.236.18.0/23 58461 -115.236.20.0/24 58461 -115.236.21.0/24 4134 -115.236.22.0/24 4134 -115.236.23.0/24 58461 -115.236.24.0/21 4134 -115.236.32.0/20 4134 -115.236.48.0/21 4134 -115.236.56.0/23 4134 -115.236.58.0/24 4134 -115.236.59.0/24 58461 -115.236.60.0/22 4134 -115.236.64.0/21 4134 -115.236.72.0/22 4134 -115.236.76.0/23 58461 -115.236.78.0/23 4134 -115.236.80.0/20 4134 -115.236.96.0/19 58461 -115.236.128.0/19 58461 -115.236.160.0/20 4134 -115.236.176.0/21 4134 -115.236.184.0/24 4134 -115.236.185.0/24 58461 -115.236.186.0/23 4134 -115.236.188.0/22 4134 -115.236.192.0/18 4134 -115.237.0.0/16 4134 -115.238.0.0/19 58461 -115.238.32.0/20 4134 -115.238.48.0/22 4134 -115.238.52.0/23 4134 -115.238.54.0/23 58461 -115.238.56.0/21 4134 -115.238.64.0/21 4134 -115.238.72.0/23 58461 -115.238.74.0/23 4134 -115.238.76.0/22 58461 -115.238.80.0/20 4134 -115.238.96.0/22 4134 -115.238.100.0/23 58461 -115.238.102.0/23 4134 -115.238.104.0/21 4134 -115.238.112.0/20 58461 -115.238.128.0/24 4134 -115.238.129.0/24 136188 -115.238.130.0/23 4134 -115.238.132.0/22 4134 -115.238.136.0/23 4134 -115.238.138.0/24 136188 -115.238.139.0/24 4134 -115.238.140.0/22 4134 -115.238.144.0/22 136188 -115.238.148.0/24 136188 -115.238.149.0/24 4134 -115.238.150.0/23 4134 -115.238.152.0/23 4134 -115.238.154.0/23 136188 -115.238.156.0/24 4134 -115.238.157.0/24 136188 -115.238.158.0/23 4134 -115.238.160.0/22 4134 -115.238.164.0/24 136188 -115.238.165.0/24 4134 -115.238.166.0/23 4134 -115.238.168.0/24 136188 -115.238.169.0/24 4134 -115.238.170.0/23 136188 -115.238.172.0/22 4134 -115.238.176.0/24 4134 -115.238.177.0/24 136188 -115.238.178.0/23 4134 -115.238.180.0/22 4134 -115.238.184.0/22 136188 -115.238.188.0/24 4134 -115.238.189.0/24 136188 -115.238.190.0/24 136188 -115.238.191.0/24 4134 -115.238.192.0/22 136190 -115.238.196.0/24 4134 -115.238.197.0/24 136190 -115.238.198.0/24 4134 -115.238.199.0/24 136190 -115.238.200.0/24 4134 -115.238.201.0/24 136190 -115.238.202.0/23 136190 -115.238.204.0/24 4134 -115.238.205.0/24 136190 -115.238.206.0/23 136190 -115.238.208.0/20 4134 -115.238.224.0/19 4134 -115.239.0.0/17 4134 -115.239.128.0/18 4134 -115.239.192.0/23 4134 -115.239.194.0/24 4134 -115.239.195.0/24 136190 -115.239.196.0/24 136190 -115.239.197.0/24 4134 -115.239.198.0/23 4134 -115.239.200.0/22 4134 -115.239.204.0/24 136190 -115.239.205.0/24 4134 -115.239.206.0/23 4134 -115.239.208.0/20 58461 -115.239.224.0/21 58461 -115.239.232.0/21 4134 -115.239.240.0/21 4134 -115.239.248.0/21 58461 -115.240.0.0/15 55836 -115.242.0.0/17 55836 -115.248.0.0/17 18101 -115.248.128.0/18 18101 -115.248.192.0/19 18101 -115.248.224.0/21 18101 -115.248.232.0/22 18101 -115.248.236.0/23 18101 -115.248.238.0/24 20940 -115.248.239.0/24 18101 -115.248.240.0/20 18101 -115.249.0.0/16 18101 -115.252.64.0/22 18101 -115.252.69.0/24 18101 -115.252.70.0/23 18101 -115.252.72.0/23 18101 -115.252.76.0/22 18101 -115.252.80.0/20 18101 -115.252.96.0/21 18101 -115.252.104.0/23 18101 -115.252.107.0/24 18101 -115.252.108.0/22 18101 -115.252.128.0/20 18101 -115.252.154.0/23 18101 -115.252.156.0/22 18101 -115.252.176.0/22 18101 -115.252.180.0/24 18101 -115.252.182.0/23 18101 -115.252.184.0/21 18101 -115.252.192.0/22 18101 -115.252.197.0/24 18101 -115.252.198.0/23 18101 -115.252.200.0/23 18101 -115.252.215.0/24 18101 -115.254.0.0/16 18101 -116.0.0.0/21 59139 -116.0.16.0/21 38719 -116.0.36.0/22 24435 -116.0.40.0/23 55340 -116.0.42.0/24 38488 -116.0.43.0/24 55340 -116.0.44.0/24 55340 -116.0.45.0/24 24435 -116.0.46.0/24 55340 -116.0.48.0/22 24435 -116.0.52.0/23 24435 -116.0.54.0/24 24435 -116.0.55.0/24 55340 -116.0.56.0/22 55340 -116.0.60.0/24 9387 -116.0.64.0/23 6453 -116.0.66.0/24 6421 -116.0.67.0/24 6453 -116.0.68.0/22 6453 -116.0.72.0/21 6453 -116.0.80.0/20 6453 -116.0.96.0/19 24218 -116.0.128.0/17 9365 -116.1.0.0/17 4134 -116.1.128.0/18 4134 -116.1.192.0/19 4134 -116.1.224.0/21 4134 -116.1.232.0/22 4134 -116.1.236.0/22 137693 -116.1.240.0/20 4134 -116.2.0.0/15 4837 -116.4.0.0/15 4134 -116.6.0.0/20 4809 -116.6.16.0/23 4809 -116.6.18.0/23 134774 -116.6.20.0/22 134774 -116.6.24.0/23 134774 -116.6.26.0/23 4809 -116.6.28.0/22 4809 -116.6.32.0/20 4809 -116.6.48.0/23 134774 -116.6.50.0/23 4809 -116.6.52.0/22 136200 -116.6.56.0/21 4809 -116.6.64.0/22 134774 -116.6.68.0/22 4809 -116.6.72.0/21 4809 -116.6.80.0/21 4809 -116.6.88.0/22 134774 -116.6.92.0/22 4809 -116.6.96.0/20 134774 -116.6.112.0/20 4809 -116.6.128.0/18 4809 -116.6.192.0/21 4809 -116.6.200.0/23 58466 -116.6.202.0/23 4809 -116.6.204.0/22 4809 -116.6.208.0/22 4809 -116.6.212.0/22 136200 -116.6.216.0/21 4809 -116.6.224.0/20 134774 -116.6.240.0/20 4809 -116.7.0.0/16 4134 -116.8.0.0/22 4809 -116.8.4.0/24 4809 -116.8.5.0/24 134419 -116.8.6.0/23 4809 -116.8.8.0/21 4809 -116.8.16.0/20 4809 -116.8.32.0/19 4134 -116.8.64.0/19 4134 -116.8.96.0/20 4134 -116.8.112.0/22 4134 -116.8.116.0/22 137693 -116.8.120.0/21 4134 -116.8.128.0/17 4134 -116.9.0.0/16 4134 -116.10.0.0/19 4134 -116.10.32.0/20 4134 -116.10.48.0/20 134419 -116.10.64.0/20 134419 -116.10.80.0/20 4134 -116.10.96.0/19 4134 -116.10.128.0/19 4134 -116.10.160.0/20 4134 -116.10.176.0/21 4134 -116.10.184.0/21 137693 -116.10.192.0/18 4134 -116.11.0.0/19 134419 -116.11.32.0/22 134419 -116.11.36.0/22 4134 -116.11.40.0/21 4134 -116.11.48.0/20 4134 -116.11.64.0/18 4134 -116.11.128.0/18 4134 -116.11.192.0/19 4134 -116.11.224.0/20 4134 -116.11.240.0/21 4134 -116.11.248.0/22 4134 -116.11.252.0/22 137693 -116.12.0.0/19 17698 -116.12.32.0/21 38067 -116.12.40.0/21 38165 -116.12.48.0/21 38532 -116.12.56.0/21 58610 -116.12.64.0/18 5087 -116.12.128.0/17 3758 -116.13.0.0/16 4538 -116.14.0.0/15 9506 -116.16.0.0/13 4134 -116.24.0.0/14 4134 -116.28.0.0/19 4134 -116.28.32.0/20 4134 -116.28.48.0/21 4134 -116.28.56.0/22 4134 -116.28.60.0/23 4134 -116.28.62.0/24 4134 -116.28.63.0/24 58543 -116.28.64.0/23 58543 -116.28.66.0/23 4134 -116.28.68.0/22 4134 -116.28.72.0/21 4134 -116.28.80.0/20 4134 -116.28.96.0/19 4134 -116.28.128.0/17 4134 -116.29.0.0/16 4134 -116.30.0.0/16 4134 -116.31.0.0/18 4134 -116.31.64.0/21 58466 -116.31.72.0/22 58466 -116.31.76.0/22 4134 -116.31.80.0/20 4134 -116.31.96.0/19 134764 -116.31.128.0/17 4134 -116.32.0.0/12 17858 -116.48.0.0/17 4760 -116.48.128.0/18 4760 -116.48.192.0/20 4760 -116.48.208.0/22 4760 -116.48.212.0/24 4760 -116.48.213.0/24 9444 -116.48.214.0/23 9444 -116.48.216.0/21 4760 -116.48.224.0/19 4760 -116.49.0.0/16 4760 -116.50.16.0/21 208308 -116.50.24.0/21 38162 -116.50.32.0/20 18046 -116.50.48.0/21 23778 -116.50.57.0/24 44444 -116.50.58.0/23 44444 -116.50.60.0/24 7598 -116.50.61.0/24 44444 -116.50.62.0/24 44444 -116.50.64.0/19 38529 -116.50.96.0/23 38529 -116.50.121.0/24 38529 -116.50.126.0/24 38529 -116.50.128.0/21 9658 -116.50.136.0/24 9658 -116.50.137.0/24 18190 -116.50.138.0/23 18190 -116.50.140.0/22 18190 -116.50.144.0/23 18190 -116.50.146.0/24 18190 -116.50.147.0/24 18115 -116.50.148.0/24 18115 -116.50.149.0/24 18190 -116.50.150.0/23 9658 -116.50.152.0/22 9658 -116.50.156.0/24 9658 -116.50.157.0/24 14454 -116.50.158.0/23 9658 -116.50.160.0/22 9658 -116.50.164.0/23 17445 -116.50.166.0/23 9658 -116.50.168.0/21 9658 -116.50.176.0/22 9658 -116.50.180.0/23 9658 -116.50.182.0/24 9658 -116.50.183.0/24 18190 -116.50.184.0/21 9658 -116.50.192.0/19 9658 -116.50.224.0/22 9658 -116.50.228.0/24 9658 -116.50.229.0/24 18190 -116.50.230.0/23 9658 -116.50.232.0/24 18190 -116.50.233.0/24 9658 -116.50.234.0/24 18190 -116.50.235.0/24 9658 -116.50.236.0/23 9658 -116.50.238.0/24 18190 -116.50.239.0/24 9658 -116.50.240.0/23 18190 -116.50.242.0/23 9658 -116.50.244.0/22 9658 -116.50.248.0/22 9658 -116.50.252.0/24 18190 -116.50.253.0/24 9658 -116.50.254.0/23 9658 -116.51.0.0/20 17645 -116.51.16.0/20 2914 -116.51.32.0/24 45794 -116.51.33.0/24 17645 -116.51.34.0/23 17645 -116.51.36.0/22 17645 -116.51.40.0/21 2914 -116.51.48.0/20 17645 -116.51.64.0/18 17645 -116.51.128.0/17 17645 -116.52.0.0/16 4134 -116.53.0.0/19 4134 -116.53.32.0/22 4134 -116.53.36.0/22 134766 -116.53.40.0/21 4134 -116.53.48.0/20 4134 -116.53.64.0/18 4134 -116.53.128.0/17 4134 -116.54.0.0/16 4134 -116.55.0.0/17 4134 -116.55.128.0/18 4134 -116.55.192.0/19 4134 -116.55.224.0/20 134765 -116.55.240.0/22 134765 -116.55.244.0/24 4134 -116.55.245.0/24 134765 -116.55.246.0/23 134765 -116.55.248.0/21 134765 -116.56.0.0/17 4538 -116.56.128.0/19 24357 -116.56.160.0/19 4538 -116.56.192.0/18 4538 -116.57.0.0/18 4538 -116.57.64.0/18 24357 -116.57.128.0/17 4538 -116.58.0.0/23 17563 -116.58.3.0/24 17563 -116.58.4.0/24 17563 -116.58.5.0/24 198381 -116.58.6.0/24 198381 -116.58.7.0/24 198247 -116.58.8.0/21 17563 -116.58.16.0/24 17563 -116.58.20.0/22 17563 -116.58.24.0/22 17563 -116.58.28.0/23 17563 -116.58.30.0/24 17563 -116.58.32.0/23 17563 -116.58.35.0/24 17563 -116.58.36.0/22 17563 -116.58.40.0/21 17563 -116.58.48.0/21 17563 -116.58.56.0/23 17563 -116.58.59.0/24 17563 -116.58.60.0/22 17563 -116.58.64.0/21 17563 -116.58.72.0/24 17563 -116.58.74.0/23 17563 -116.58.76.0/22 17563 -116.58.81.0/24 17563 -116.58.82.0/23 17563 -116.58.84.0/22 17563 -116.58.88.0/21 17563 -116.58.96.0/19 17563 -116.58.144.0/20 17698 -116.58.160.0/19 2514 -116.58.193.0/24 38154 -116.58.194.0/23 38154 -116.58.200.0/21 45245 -116.58.208.0/20 9298 -116.58.226.0/23 131090 -116.58.228.0/23 131090 -116.58.230.0/24 131090 -116.58.232.0/23 131090 -116.58.235.0/24 131090 -116.58.236.0/23 131090 -116.58.239.0/24 131090 -116.58.241.0/24 131090 -116.58.244.0/24 131090 -116.58.246.0/23 131090 -116.58.248.0/23 131090 -116.58.251.0/24 131090 -116.58.252.0/24 131090 -116.58.254.0/23 131090 -116.59.0.0/23 17421 -116.59.2.0/24 17421 -116.59.4.0/22 17421 -116.59.8.0/21 17421 -116.59.64.0/18 17421 -116.59.128.0/17 17421 -116.62.0.0/16 37963 -116.63.0.0/19 4808 -116.63.32.0/19 4812 -116.63.64.0/19 58466 -116.63.128.0/18 58519 -116.64.0.0/15 9824 -116.66.32.0/21 38363 -116.66.40.0/22 38363 -116.66.44.0/23 38363 -116.66.48.0/21 17621 -116.66.96.0/22 38363 -116.66.120.0/22 38379 -116.66.129.0/24 17903 -116.66.130.0/24 17903 -116.66.132.0/23 17903 -116.66.136.0/22 17903 -116.66.140.0/23 17903 -116.66.142.0/23 2856 -116.66.144.0/20 17903 -116.66.160.0/20 24220 -116.66.176.0/22 136993 -116.66.184.0/22 131444 -116.66.188.0/24 135724 -116.66.189.0/24 139195 -116.66.190.0/23 135724 -116.66.192.0/21 4007 -116.66.200.0/21 38496 -116.66.208.0/22 9237 -116.66.212.0/22 3491 -116.66.216.0/23 3491 -116.66.218.0/24 134963 -116.66.219.0/24 3491 -116.66.220.0/22 3491 -116.66.224.0/21 45212 -116.66.232.0/21 45932 -116.66.249.0/24 38577 -116.66.250.0/23 38577 -116.66.252.0/22 132046 -116.67.0.0/17 17841 -116.67.128.0/17 2527 -116.68.0.0/19 21996 -116.68.32.0/19 23552 -116.68.64.0/19 17465 -116.68.96.0/22 17465 -116.68.100.0/24 17465 -116.68.102.0/23 17465 -116.68.104.0/21 17465 -116.68.112.0/20 17465 -116.68.144.0/21 38566 -116.68.152.0/22 38566 -116.68.156.0/23 38566 -116.68.158.0/24 38566 -116.68.159.0/24 18197 -116.68.160.0/23 58552 -116.68.162.0/24 58552 -116.68.164.0/24 58552 -116.68.166.0/24 56246 -116.68.167.0/24 58552 -116.68.168.0/22 58552 -116.68.172.0/23 58552 -116.68.174.0/23 56246 -116.68.192.0/20 23923 -116.68.208.0/21 38565 -116.68.217.0/24 10010 -116.68.218.0/23 10010 -116.68.220.0/22 10010 -116.68.224.0/23 7632 -116.68.227.0/24 7632 -116.68.228.0/22 7632 -116.68.240.0/21 38571 -116.68.248.0/21 38500 -116.69.0.0/16 4134 -116.70.0.0/18 4808 -116.70.128.0/18 4721 -116.70.192.0/18 4685 -116.71.0.0/23 45595 -116.71.2.0/23 58895 -116.71.4.0/22 56167 -116.71.8.0/21 45595 -116.71.16.0/20 45595 -116.71.32.0/19 45595 -116.71.64.0/18 45595 -116.71.128.0/21 17557 -116.71.136.0/22 17557 -116.71.140.0/24 45595 -116.71.141.0/24 17557 -116.71.142.0/24 17557 -116.71.143.0/24 45595 -116.71.144.0/20 45595 -116.71.160.0/19 45595 -116.71.192.0/18 45595 -116.72.1.0/24 17488 -116.72.2.0/23 17488 -116.72.4.0/22 17488 -116.72.8.0/21 17488 -116.72.16.0/20 17488 -116.72.32.0/19 17488 -116.72.64.0/18 17488 -116.72.128.0/17 17488 -116.73.0.0/18 17488 -116.73.64.0/19 17488 -116.73.96.0/22 17488 -116.73.100.0/23 17488 -116.73.103.0/24 17488 -116.73.104.0/21 17488 -116.73.112.0/20 17488 -116.73.128.0/18 17488 -116.73.192.0/20 17488 -116.73.208.0/21 17488 -116.73.216.0/23 17488 -116.73.224.0/20 17488 -116.73.240.0/22 17488 -116.73.244.0/23 17488 -116.73.248.0/22 17488 -116.73.252.0/24 17488 -116.74.0.0/17 17488 -116.74.128.0/21 17488 -116.74.136.0/23 17488 -116.74.138.0/24 17488 -116.74.144.0/20 17488 -116.74.160.0/19 17488 -116.74.192.0/19 17488 -116.74.228.0/22 17488 -116.74.232.0/21 17488 -116.74.240.0/21 17488 -116.74.248.0/22 17488 -116.74.255.0/24 17488 -116.75.0.0/16 17488 -116.76.0.0/15 17962 -116.78.0.0/16 4837 -116.80.0.0/16 2514 -116.81.0.0/16 18144 -116.82.0.0/15 2510 -116.84.0.0/16 23908 -116.85.0.0/16 63646 -116.86.0.0/15 55430 -116.88.0.0/19 10091 -116.88.32.0/20 10091 -116.88.48.0/20 55430 -116.88.64.0/18 55430 -116.88.128.0/17 10091 -116.89.0.0/17 55430 -116.89.128.0/20 24157 -116.89.160.0/19 9270 -116.89.192.0/19 9374 -116.89.224.0/20 17649 -116.89.240.0/22 137443 -116.89.244.0/22 7175 -116.89.248.0/22 132813 -116.89.252.0/22 56067 -116.90.0.0/18 55803 -116.90.64.0/22 45327 -116.90.70.0/23 45327 -116.90.72.0/22 137409 -116.90.76.0/22 45267 -116.90.80.0/21 4808 -116.90.88.0/21 4847 -116.90.96.0/21 23750 -116.90.104.0/23 23750 -116.90.106.0/24 23750 -116.90.116.0/22 23750 -116.90.120.0/21 23750 -116.90.128.0/22 38477 -116.90.132.0/23 38477 -116.90.134.0/24 38477 -116.90.135.0/24 23838 -116.90.136.0/21 38477 -116.90.144.0/20 9354 -116.90.160.0/20 18059 -116.90.178.0/23 64297 -116.90.180.0/22 137316 -116.90.192.0/20 10003 -116.90.208.0/22 38502 -116.90.212.0/23 38502 -116.90.214.0/24 4787 -116.90.215.0/24 38502 -116.90.216.0/21 9868 -116.90.224.0/20 24550 -116.90.240.0/24 17817 -116.90.241.0/24 9498 -116.90.245.0/24 17817 -116.90.246.0/23 17817 -116.90.250.0/23 17817 -116.90.252.0/22 17817 -116.91.0.0/16 2519 -116.92.0.0/24 2706 -116.92.2.0/24 2706 -116.92.4.0/24 4637 -116.92.8.0/23 4637 -116.92.10.0/23 2706 -116.92.14.0/24 2706 -116.92.128.0/23 9381 -116.92.130.0/24 9381 -116.92.133.0/24 9381 -116.92.184.0/21 9381 -116.92.192.0/19 9381 -116.92.224.0/20 9381 -116.92.240.0/22 136501 -116.92.244.0/22 9381 -116.93.0.0/23 23930 -116.93.4.0/22 23930 -116.93.8.0/22 23930 -116.93.12.0/23 23930 -116.93.14.0/24 132209 -116.93.15.0/24 23930 -116.93.16.0/22 23930 -116.93.21.0/24 23930 -116.93.22.0/24 132301 -116.93.23.0/24 23930 -116.93.24.0/21 23930 -116.93.32.0/20 23930 -116.93.48.0/22 23930 -116.93.52.0/24 23930 -116.93.54.0/24 23930 -116.93.57.0/24 23930 -116.93.61.0/24 23930 -116.93.62.0/23 23930 -116.93.64.0/23 23930 -116.93.67.0/24 23930 -116.93.68.0/23 23930 -116.93.71.0/24 23930 -116.93.74.0/23 23930 -116.93.78.0/23 23930 -116.93.80.0/23 23930 -116.93.85.0/24 23930 -116.93.87.0/24 23930 -116.93.89.0/24 133140 -116.93.90.0/23 23930 -116.93.92.0/24 23930 -116.93.94.0/24 132209 -116.93.96.0/23 23930 -116.93.98.0/24 132209 -116.93.102.0/24 23930 -116.93.105.0/24 23930 -116.93.106.0/23 23930 -116.93.108.0/22 23930 -116.93.112.0/24 23930 -116.93.114.0/23 23930 -116.93.116.0/24 132209 -116.93.117.0/24 23930 -116.93.118.0/23 23930 -116.93.120.0/23 23930 -116.93.122.0/24 23930 -116.93.124.0/24 23930 -116.93.126.0/23 23930 -116.93.128.0/20 45177 -116.93.144.0/20 55394 -116.93.160.0/19 38705 -116.93.192.0/18 17857 -116.94.0.0/16 7679 -116.95.0.0/16 4837 -116.96.0.0/21 7552 -116.96.8.0/21 24086 -116.96.16.0/20 24086 -116.96.32.0/19 7552 -116.96.64.0/18 7552 -116.96.128.0/20 7552 -116.96.144.0/20 24086 -116.96.160.0/19 7552 -116.96.192.0/19 7552 -116.96.224.0/21 7552 -116.96.232.0/21 24086 -116.96.240.0/20 7552 -116.97.0.0/19 7552 -116.97.32.0/21 24086 -116.97.40.0/21 7552 -116.97.48.0/20 7552 -116.97.64.0/19 7552 -116.97.96.0/20 7552 -116.97.112.0/21 7552 -116.97.120.0/22 24086 -116.97.124.0/22 7552 -116.97.128.0/19 7552 -116.97.160.0/20 7552 -116.97.176.0/21 7552 -116.97.184.0/21 24086 -116.97.192.0/21 24086 -116.97.200.0/21 7552 -116.97.208.0/20 24086 -116.97.224.0/20 24086 -116.97.240.0/20 7552 -116.98.0.0/18 24086 -116.98.64.0/19 24086 -116.98.96.0/20 24086 -116.98.112.0/22 7552 -116.98.116.0/22 24086 -116.98.120.0/21 7552 -116.98.128.0/17 24086 -116.99.0.0/21 7552 -116.99.8.0/21 24086 -116.99.16.0/20 24086 -116.99.32.0/19 7552 -116.99.64.0/20 7552 -116.99.80.0/20 24086 -116.99.96.0/19 24086 -116.99.128.0/17 24086 -116.100.0.0/19 24086 -116.100.32.0/20 24086 -116.100.48.0/20 7552 -116.100.64.0/18 24086 -116.100.128.0/17 24086 -116.101.0.0/20 24086 -116.101.16.0/20 7552 -116.101.32.0/21 7552 -116.101.40.0/21 24086 -116.101.48.0/21 7552 -116.101.56.0/22 7552 -116.101.60.0/22 24086 -116.101.64.0/20 24086 -116.101.80.0/20 7552 -116.101.96.0/19 7552 -116.101.128.0/19 7552 -116.101.160.0/20 7552 -116.101.176.0/21 7552 -116.101.184.0/22 24086 -116.101.188.0/22 7552 -116.101.192.0/20 24086 -116.101.208.0/20 7552 -116.101.224.0/20 7552 -116.101.240.0/21 7552 -116.101.248.0/21 24086 -116.102.0.0/18 24086 -116.102.64.0/19 24086 -116.102.96.0/20 24086 -116.102.112.0/20 7552 -116.102.128.0/18 24086 -116.102.192.0/19 24086 -116.102.224.0/20 24086 -116.102.240.0/20 7552 -116.103.0.0/21 24086 -116.103.8.0/22 24086 -116.103.12.0/22 7552 -116.103.16.0/20 24086 -116.103.32.0/19 24086 -116.103.64.0/18 24086 -116.103.128.0/17 24086 -116.104.0.0/21 24086 -116.104.8.0/21 7552 -116.104.16.0/20 7552 -116.104.32.0/21 7552 -116.104.40.0/21 24086 -116.104.48.0/20 7552 -116.104.64.0/19 7552 -116.104.96.0/20 24086 -116.104.112.0/20 7552 -116.104.128.0/20 7552 -116.104.144.0/21 24086 -116.104.152.0/21 7552 -116.104.160.0/21 7552 -116.104.168.0/21 24086 -116.104.176.0/21 24086 -116.104.184.0/21 7552 -116.104.192.0/19 7552 -116.104.224.0/21 7552 -116.104.232.0/21 24086 -116.104.240.0/20 7552 -116.105.0.0/16 24086 -116.106.0.0/20 24086 -116.106.16.0/21 24086 -116.106.24.0/22 7552 -116.106.28.0/22 24086 -116.106.32.0/20 24086 -116.106.48.0/22 24086 -116.106.52.0/22 7552 -116.106.56.0/21 24086 -116.106.64.0/19 24086 -116.106.96.0/20 7552 -116.106.112.0/20 24086 -116.106.128.0/19 24086 -116.106.160.0/21 7552 -116.106.168.0/21 24086 -116.106.176.0/20 24086 -116.106.192.0/19 24086 -116.106.224.0/20 7552 -116.106.240.0/20 24086 -116.107.0.0/19 7552 -116.107.32.0/21 7552 -116.107.40.0/22 24086 -116.107.44.0/22 7552 -116.107.48.0/20 7552 -116.107.64.0/18 7552 -116.107.128.0/20 24086 -116.107.144.0/21 24086 -116.107.152.0/21 7552 -116.107.160.0/20 7552 -116.107.176.0/20 24086 -116.107.192.0/20 24086 -116.107.208.0/21 24086 -116.107.216.0/21 7552 -116.107.224.0/19 7552 -116.108.0.0/17 24086 -116.108.128.0/18 24086 -116.108.192.0/19 24086 -116.108.224.0/20 24086 -116.108.240.0/21 7552 -116.108.248.0/21 24086 -116.109.0.0/19 24086 -116.109.32.0/21 24086 -116.109.40.0/21 7552 -116.109.48.0/20 24086 -116.109.64.0/18 24086 -116.109.128.0/17 24086 -116.110.0.0/19 24086 -116.110.32.0/20 7552 -116.110.48.0/20 24086 -116.110.64.0/18 24086 -116.110.128.0/18 24086 -116.110.192.0/19 24086 -116.110.224.0/21 7552 -116.110.232.0/22 24086 -116.110.236.0/22 7552 -116.110.240.0/20 24086 -116.111.0.0/20 24086 -116.111.16.0/20 7552 -116.111.32.0/19 7552 -116.111.64.0/18 7552 -116.111.128.0/18 24086 -116.111.192.0/19 24086 -116.111.224.0/20 24086 -116.111.240.0/21 24086 -116.111.248.0/21 7552 -116.112.0.0/18 4837 -116.112.64.0/20 4837 -116.112.80.0/20 139007 -116.112.96.0/19 4837 -116.112.128.0/17 4837 -116.113.0.0/17 4837 -116.113.128.0/19 139007 -116.113.160.0/21 139007 -116.113.168.0/21 4837 -116.113.176.0/20 4837 -116.113.192.0/18 4837 -116.114.0.0/16 4837 -116.115.0.0/19 4837 -116.115.32.0/21 4837 -116.115.40.0/21 139007 -116.115.48.0/20 139007 -116.115.64.0/19 139007 -116.115.96.0/19 4837 -116.115.128.0/17 4837 -116.116.0.0/15 4837 -116.118.0.0/17 7602 -116.118.128.0/18 18049 -116.118.192.0/20 2497 -116.118.208.0/20 18274 -116.118.224.0/20 58793 -116.118.240.0/20 23943 -116.119.0.0/16 9498 -116.120.0.0/19 9318 -116.120.32.0/20 9318 -116.120.48.0/21 9318 -116.120.56.0/22 9318 -116.120.60.0/24 9318 -116.120.61.0/24 23582 -116.120.62.0/23 23582 -116.120.64.0/19 9318 -116.120.96.0/20 9318 -116.120.112.0/21 9318 -116.120.120.0/22 9318 -116.120.124.0/24 9845 -116.120.125.0/24 9318 -116.120.126.0/23 9318 -116.120.128.0/17 9318 -116.121.0.0/21 9318 -116.121.8.0/23 9318 -116.121.10.0/24 10035 -116.121.11.0/24 9318 -116.121.12.0/22 9318 -116.121.16.0/22 9318 -116.121.20.0/23 9578 -116.121.22.0/24 9578 -116.121.23.0/24 9318 -116.121.24.0/24 9578 -116.121.25.0/24 9318 -116.121.26.0/23 9578 -116.121.28.0/22 9578 -116.121.32.0/22 9578 -116.121.36.0/22 9318 -116.121.40.0/21 9318 -116.121.48.0/20 9318 -116.121.64.0/18 9318 -116.121.128.0/18 9318 -116.121.192.0/19 9318 -116.121.224.0/22 9318 -116.121.228.0/22 38661 -116.121.232.0/21 9318 -116.121.240.0/20 9318 -116.122.0.0/17 9318 -116.122.128.0/22 9318 -116.122.132.0/22 38661 -116.122.136.0/21 9318 -116.122.144.0/22 9318 -116.122.148.0/23 9318 -116.122.150.0/23 9647 -116.122.152.0/21 9318 -116.122.160.0/19 9318 -116.122.192.0/18 9318 -116.123.0.0/17 9318 -116.123.128.0/18 9318 -116.123.192.0/20 9318 -116.123.208.0/21 9318 -116.123.216.0/24 18305 -116.123.217.0/24 9318 -116.123.218.0/23 9318 -116.123.220.0/22 9318 -116.123.224.0/19 9318 -116.124.0.0/17 9318 -116.124.128.0/21 9318 -116.124.136.0/22 9318 -116.124.140.0/23 9318 -116.124.142.0/24 9318 -116.124.143.0/24 9776 -116.124.144.0/21 9318 -116.124.152.0/24 38403 -116.124.153.0/24 9318 -116.124.154.0/23 9318 -116.124.156.0/22 9318 -116.124.160.0/19 9318 -116.124.192.0/18 9318 -116.125.0.0/19 9318 -116.125.32.0/23 38661 -116.125.34.0/23 9318 -116.125.36.0/22 38661 -116.125.40.0/21 9318 -116.125.48.0/21 9318 -116.125.56.0/23 38661 -116.125.58.0/23 9318 -116.125.60.0/22 9318 -116.125.64.0/18 9318 -116.125.128.0/20 9318 -116.125.144.0/22 9318 -116.125.148.0/23 9318 -116.125.150.0/24 38433 -116.125.151.0/24 9318 -116.125.152.0/21 9318 -116.125.160.0/20 9318 -116.125.176.0/21 9318 -116.125.184.0/24 9318 -116.125.185.0/24 45389 -116.125.186.0/23 9318 -116.125.188.0/22 9318 -116.125.192.0/20 9318 -116.125.208.0/22 9318 -116.125.212.0/23 38671 -116.125.214.0/24 38671 -116.125.215.0/24 9318 -116.125.216.0/21 9318 -116.125.224.0/19 9318 -116.126.0.0/21 9318 -116.126.8.0/22 9318 -116.126.12.0/24 9318 -116.126.13.0/24 9948 -116.126.14.0/23 9318 -116.126.16.0/20 9318 -116.126.32.0/19 9318 -116.126.64.0/18 9318 -116.126.128.0/17 9318 -116.127.0.0/19 9318 -116.127.32.0/20 9318 -116.127.48.0/21 9318 -116.127.56.0/22 9318 -116.127.60.0/23 23582 -116.127.62.0/23 9318 -116.127.64.0/18 9318 -116.127.128.0/18 9318 -116.127.192.0/20 9318 -116.127.208.0/21 9318 -116.127.216.0/22 9318 -116.127.220.0/23 9318 -116.127.222.0/24 9318 -116.127.223.0/24 45366 -116.127.224.0/22 45366 -116.127.228.0/22 9318 -116.127.232.0/21 9318 -116.127.240.0/20 9318 -116.128.0.0/17 4847 -116.128.128.0/18 17621 -116.128.200.0/21 17621 -116.128.208.0/20 17621 -116.128.224.0/19 4837 -116.129.0.0/17 4837 -116.129.128.0/18 4837 -116.129.192.0/19 4837 -116.129.224.0/24 10206 -116.129.226.0/24 10206 -116.129.242.0/23 10206 -116.129.244.0/22 4837 -116.129.248.0/21 4837 -116.130.0.0/15 4837 -116.132.0.0/15 4837 -116.135.0.0/17 4837 -116.135.128.0/18 4837 -116.135.192.0/19 4837 -116.135.224.0/19 139007 -116.136.0.0/17 4837 -116.136.128.0/18 4837 -116.136.192.0/19 4837 -116.136.224.0/20 4837 -116.136.240.0/21 4837 -116.136.248.0/24 4837 -116.136.249.0/24 139007 -116.136.250.0/23 139007 -116.136.252.0/23 139007 -116.136.254.0/23 4837 -116.137.0.0/16 4837 -116.138.0.0/15 4837 -116.140.0.0/17 4837 -116.140.128.0/18 4837 -116.147.0.0/16 4837 -116.148.0.0/15 4837 -116.153.0.0/16 4837 -116.154.0.0/15 4837 -116.161.0.0/16 4837 -116.162.0.0/16 4837 -116.163.0.0/18 4837 -116.167.0.0/16 4837 -116.168.0.0/16 4837 -116.171.0.0/16 4837 -116.174.0.0/15 4837 -116.177.0.0/16 4837 -116.178.0.0/15 4837 -116.181.0.0/16 133119 -116.182.0.0/16 137539 -116.192.0.0/16 4812 -116.193.10.0/23 45918 -116.193.12.0/22 45918 -116.193.16.0/23 4808 -116.193.18.0/24 4808 -116.193.32.0/19 38342 -116.193.64.0/20 24085 -116.193.80.0/24 38107 -116.193.83.0/24 38107 -116.193.84.0/24 38107 -116.193.88.0/21 38107 -116.193.96.0/19 38628 -116.193.128.0/20 23860 -116.193.144.0/21 37974 -116.193.152.0/22 138195 -116.193.156.0/24 56111 -116.193.159.0/24 55536 -116.193.160.0/22 38546 -116.193.164.0/22 38197 -116.193.168.0/22 132839 -116.193.172.0/22 55699 -116.193.184.0/22 4819 -116.193.192.0/23 9627 -116.193.208.0/23 9627 -116.193.216.0/21 38026 -116.193.224.0/19 55381 -116.196.14.0/23 134700 -116.196.16.0/20 37943 -116.196.32.0/19 37943 -116.196.64.0/18 4808 -116.196.202.0/24 138449 -116.197.0.0/17 10081 -116.197.128.0/21 58369 -116.197.136.0/21 23661 -116.197.144.0/21 2914 -116.197.152.0/24 9830 -116.197.154.0/23 9830 -116.197.168.0/21 38633 -116.197.184.0/21 24023 -116.197.192.0/18 4773 -116.198.0.0/18 4808 -116.198.192.0/18 137699 -116.199.0.0/17 17622 -116.199.160.0/21 10164 -116.199.168.0/21 45661 -116.199.176.0/20 23627 -116.199.208.0/20 55454 -116.199.224.0/20 10023 -116.199.240.0/20 59127 -116.200.0.0/15 4766 -116.202.0.0/15 24940 -116.204.128.0/22 132644 -116.204.132.0/23 137443 -116.204.134.0/24 136160 -116.204.135.0/24 137443 -116.204.140.0/23 136272 -116.204.142.0/24 136272 -116.204.143.0/24 58701 -116.204.144.0/22 134141 -116.204.152.0/23 136276 -116.204.154.0/24 136276 -116.204.156.0/22 59371 -116.204.160.0/23 133076 -116.204.162.0/24 133076 -116.204.163.0/24 55330 -116.204.164.0/22 23607 -116.204.168.0/22 138195 -116.204.172.0/22 135327 -116.204.176.0/22 395776 -116.204.180.0/23 58955 -116.204.184.0/22 134705 -116.204.188.0/24 133275 -116.204.192.0/24 136787 -116.204.196.0/22 133296 -116.204.200.0/22 132434 -116.204.208.0/22 132883 -116.204.216.0/22 132146 -116.204.220.0/22 59340 -116.204.236.0/22 394695 -116.204.240.0/23 136454 -116.204.244.0/22 134548 -116.204.252.0/23 134382 -116.204.254.0/24 134382 -116.204.255.0/24 138346 -116.206.0.0/22 64096 -116.206.4.0/22 135636 -116.206.8.0/23 45727 -116.206.10.0/24 133214 -116.206.12.0/22 45727 -116.206.16.0/22 133378 -116.206.20.0/22 5087 -116.206.24.0/24 38891 -116.206.25.0/24 7700 -116.206.28.0/22 45727 -116.206.32.0/23 45727 -116.206.34.0/24 133214 -116.206.35.0/24 45727 -116.206.36.0/22 45727 -116.206.40.0/24 45727 -116.206.42.0/23 45727 -116.206.44.0/24 24323 -116.206.47.0/24 138320 -116.206.48.0/22 203061 -116.206.52.0/22 26658 -116.206.58.0/23 24323 -116.206.60.0/24 58601 -116.206.61.0/24 24323 -116.206.62.0/23 24323 -116.206.64.0/22 58893 -116.206.68.0/22 2516 -116.206.72.0/22 40676 -116.206.80.0/22 56038 -116.206.84.0/22 133932 -116.206.88.0/22 133866 -116.206.92.0/24 137443 -116.206.93.0/24 55933 -116.206.94.0/23 55933 -116.206.96.0/22 133973 -116.206.100.0/22 134705 -116.206.104.0/22 394695 -116.206.108.0/22 45559 -116.206.116.0/22 133617 -116.206.124.0/22 58955 -116.206.128.0/23 24322 -116.206.130.0/23 134832 -116.206.136.0/22 58952 -116.206.148.0/23 132445 -116.206.152.0/22 45117 -116.206.156.0/22 134375 -116.206.164.0/22 135632 -116.206.168.0/22 42695 -116.206.172.0/22 23735 -116.206.176.0/22 132325 -116.206.184.0/22 132586 -116.206.188.0/22 134437 -116.206.192.0/22 135637 -116.206.196.0/22 133800 -116.206.200.0/22 23860 -116.206.204.0/22 137468 -116.206.208.0/22 10222 -116.206.212.0/22 59282 -116.206.216.0/22 135895 -116.206.220.0/22 23860 -116.206.224.0/22 45499 -116.206.228.0/22 133480 -116.206.232.0/21 4787 -116.206.240.0/22 4787 -116.206.244.0/22 18001 -116.206.248.0/22 132111 -116.206.252.0/22 63844 -116.207.0.0/18 4134 -116.207.64.0/19 4134 -116.207.96.0/20 136193 -116.207.112.0/22 136193 -116.207.116.0/23 4134 -116.207.118.0/24 136193 -116.207.119.0/24 4134 -116.207.120.0/21 4134 -116.207.128.0/18 136191 -116.207.192.0/18 4134 -116.208.0.0/15 4134 -116.210.0.0/16 4134 -116.211.0.0/18 4809 -116.211.64.0/22 4134 -116.211.68.0/22 58563 -116.211.72.0/21 58563 -116.211.80.0/20 58563 -116.211.96.0/19 58563 -116.211.128.0/17 58563 -116.212.0.0/19 45361 -116.212.32.0/19 55322 -116.212.64.0/21 17889 -116.212.72.0/21 46030 -116.212.96.0/23 18059 -116.212.98.0/24 38501 -116.212.100.0/23 38501 -116.212.104.0/21 38712 -116.212.112.0/23 38186 -116.212.115.0/24 38186 -116.212.116.0/22 38186 -116.212.120.0/21 38186 -116.212.128.0/19 38235 -116.212.176.0/22 55839 -116.212.180.0/24 55839 -116.212.182.0/23 55839 -116.212.184.0/21 38556 -116.212.192.0/18 9822 -116.213.0.0/23 9797 -116.213.2.0/24 139337 -116.213.3.0/24 9797 -116.213.4.0/24 9797 -116.213.5.0/24 139337 -116.213.6.0/23 9797 -116.213.8.0/22 45201 -116.213.12.0/22 9797 -116.213.16.0/22 9797 -116.213.20.0/22 55569 -116.213.24.0/24 38896 -116.213.32.0/22 132165 -116.213.36.0/22 45753 -116.213.40.0/22 63889 -116.213.48.0/20 9785 -116.213.64.0/21 4808 -116.213.72.0/21 38346 -116.213.80.0/22 4808 -116.213.84.0/22 38346 -116.213.88.0/21 4808 -116.213.96.0/20 4847 -116.213.112.0/23 4847 -116.213.114.0/24 4847 -116.213.115.0/24 4808 -116.213.116.0/22 4847 -116.213.120.0/21 4847 -116.213.128.0/24 24134 -116.213.129.0/24 4808 -116.213.130.0/23 4808 -116.213.132.0/24 4808 -116.213.133.0/24 38346 -116.213.134.0/23 4808 -116.213.136.0/21 4808 -116.213.144.0/20 4808 -116.213.160.0/21 4847 -116.213.168.0/24 4808 -116.213.169.0/24 24134 -116.213.170.0/24 4808 -116.213.171.0/24 38346 -116.213.172.0/22 4808 -116.213.176.0/20 38346 -116.213.192.0/22 4808 -116.213.196.0/22 38346 -116.213.200.0/21 38346 -116.213.208.0/22 4808 -116.213.212.0/22 38346 -116.213.216.0/22 38346 -116.213.220.0/22 4808 -116.213.224.0/20 4808 -116.213.240.0/21 38370 -116.213.248.0/22 17622 -116.213.252.0/22 38370 -116.214.0.0/20 24506 -116.214.16.0/21 9824 -116.214.24.0/21 58424 -116.214.32.0/19 9809 -116.214.80.0/20 38462 -116.214.96.0/22 38321 -116.214.103.0/24 38321 -116.214.104.0/22 45941 -116.214.110.0/23 7468 -116.214.112.0/24 45199 -116.214.116.0/23 10223 -116.214.122.0/23 38860 -116.214.128.0/24 9809 -116.216.0.0/16 4808 -116.218.0.0/17 4808 -116.218.128.0/18 17964 -116.218.192.0/18 4808 -116.220.0.0/14 9824 -116.224.0.0/12 4812 -116.240.0.0/20 9443 -116.240.16.0/22 9714 -116.240.20.0/22 9443 -116.240.24.0/21 9443 -116.240.32.0/19 9443 -116.240.64.0/18 9443 -116.240.128.0/18 9443 -116.240.192.0/20 9714 -116.240.208.0/20 9443 -116.240.224.0/19 9443 -116.241.0.0/17 131596 -116.241.128.0/18 131596 -116.241.192.0/19 131596 -116.241.224.0/20 131596 -116.241.240.0/22 131596 -116.242.0.0/15 4808 -116.246.0.0/15 4812 -116.248.0.0/17 4134 -116.248.128.0/18 4134 -116.248.192.0/19 4809 -116.248.224.0/19 4134 -116.249.0.0/16 4134 -116.250.0.0/16 24033 -116.251.0.0/18 24033 -116.251.64.0/18 45102 -116.251.128.0/18 55850 -116.251.192.0/21 55850 -116.251.200.0/22 55850 -116.251.204.0/22 8739 -116.251.208.0/20 24482 -116.251.224.0/19 133771 -116.252.0.0/17 4134 -116.252.128.0/19 4134 -116.252.160.0/20 4134 -116.252.176.0/23 4134 -116.252.178.0/23 137693 -116.252.180.0/23 137693 -116.252.182.0/24 4134 -116.252.183.0/24 137693 -116.252.184.0/24 137693 -116.252.185.0/24 4134 -116.252.186.0/24 4134 -116.252.187.0/24 137693 -116.252.188.0/22 4134 -116.252.192.0/18 4134 -116.253.0.0/20 4134 -116.253.16.0/21 4134 -116.253.24.0/21 137693 -116.253.32.0/20 4134 -116.253.48.0/21 4134 -116.253.56.0/21 137693 -116.253.64.0/18 4134 -116.253.128.0/19 4134 -116.253.160.0/20 4134 -116.253.176.0/21 134419 -116.253.184.0/22 4134 -116.253.188.0/24 4134 -116.253.189.0/24 137693 -116.253.190.0/23 137693 -116.253.192.0/20 4134 -116.253.208.0/21 137693 -116.253.216.0/21 4134 -116.253.224.0/19 4134 -116.254.0.0/18 10010 -116.254.64.0/19 10010 -116.254.100.0/22 55693 -116.254.112.0/21 55666 -116.254.120.0/23 38496 -116.254.124.0/23 38496 -116.254.126.0/24 38496 -116.254.128.0/24 54994 -116.255.0.0/23 18201 -116.255.2.0/24 38195 -116.255.3.0/24 18201 -116.255.4.0/22 18201 -116.255.8.0/23 18201 -116.255.10.0/23 38195 -116.255.12.0/22 38195 -116.255.16.0/22 38195 -116.255.20.0/23 38195 -116.255.22.0/23 18201 -116.255.24.0/23 18201 -116.255.26.0/24 38195 -116.255.27.0/24 18201 -116.255.28.0/22 18201 -116.255.32.0/23 38195 -116.255.34.0/23 24129 -116.255.36.0/24 24129 -116.255.37.0/24 38195 -116.255.38.0/24 38195 -116.255.39.0/24 24129 -116.255.40.0/23 24129 -116.255.42.0/24 24233 -116.255.43.0/24 24129 -116.255.44.0/23 24129 -116.255.46.0/24 38195 -116.255.47.0/24 24129 -116.255.48.0/23 24129 -116.255.50.0/24 24129 -116.255.51.0/24 38195 -116.255.52.0/23 24129 -116.255.54.0/23 38195 -116.255.56.0/22 38195 -116.255.60.0/24 38195 -116.255.61.0/24 18201 -116.255.62.0/23 38195 -116.255.64.0/18 38680 -116.255.128.0/17 4837 -117.0.0.0/13 7552 -117.8.0.0/13 4837 -117.16.0.0/19 9754 -117.16.32.0/23 4766 -117.16.34.0/24 4766 -117.16.38.0/23 4766 -117.16.40.0/21 18031 -117.16.48.0/24 18031 -117.16.49.0/24 9949 -117.16.52.0/22 4766 -117.16.56.0/24 4766 -117.16.60.0/22 4766 -117.16.64.0/23 4766 -117.16.66.0/24 4766 -117.16.67.0/24 9840 -117.16.68.0/23 9840 -117.16.70.0/23 3786 -117.16.72.0/24 4766 -117.16.73.0/24 3786 -117.16.75.0/24 4766 -117.16.76.0/24 4766 -117.16.80.0/22 9840 -117.16.84.0/23 9840 -117.16.90.0/24 4766 -117.16.92.0/22 9318 -117.16.96.0/21 9318 -117.16.104.0/22 9318 -117.16.108.0/22 18031 -117.16.112.0/22 9318 -117.16.116.0/23 9318 -117.16.120.0/23 3786 -117.16.122.0/23 18031 -117.16.124.0/22 9318 -117.16.136.0/21 9459 -117.16.144.0/22 9459 -117.16.148.0/23 9459 -117.16.150.0/23 18028 -117.16.152.0/21 18028 -117.16.160.0/22 18028 -117.16.164.0/23 18028 -117.16.166.0/23 9782 -117.16.168.0/23 9782 -117.16.170.0/23 18329 -117.16.172.0/22 18329 -117.16.176.0/21 4766 -117.16.184.0/23 4766 -117.16.186.0/23 9949 -117.16.188.0/24 3786 -117.16.191.0/24 23570 -117.16.192.0/19 23570 -117.16.224.0/21 23570 -117.16.232.0/23 23570 -117.16.234.0/24 23570 -117.16.235.0/24 4766 -117.16.236.0/22 4766 -117.16.240.0/23 4766 -117.16.242.0/23 23570 -117.16.244.0/22 23570 -117.16.248.0/22 23570 -117.16.252.0/23 23570 -117.16.255.0/24 4766 -117.17.0.0/19 3786 -117.17.32.0/22 55624 -117.17.36.0/23 55624 -117.17.39.0/24 9318 -117.17.40.0/21 3786 -117.17.48.0/20 3786 -117.17.64.0/23 3786 -117.17.66.0/23 4766 -117.17.70.0/23 10071 -117.17.72.0/22 10071 -117.17.76.0/23 10071 -117.17.78.0/23 4766 -117.17.80.0/21 18164 -117.17.88.0/22 18164 -117.17.92.0/23 4766 -117.17.94.0/24 4766 -117.17.95.0/24 18026 -117.17.96.0/21 18026 -117.17.104.0/23 18026 -117.17.106.0/23 9318 -117.17.108.0/22 9954 -117.17.112.0/23 9954 -117.17.114.0/23 17862 -117.17.116.0/24 18026 -117.17.117.0/24 3786 -117.17.118.0/23 23569 -117.17.120.0/21 4766 -117.17.128.0/23 9318 -117.17.130.0/23 18320 -117.17.132.0/24 18320 -117.17.133.0/24 4766 -117.17.134.0/23 4766 -117.17.136.0/22 4766 -117.17.140.0/22 45983 -117.17.144.0/22 45983 -117.17.148.0/24 45983 -117.17.149.0/24 3786 -117.17.150.0/23 4766 -117.17.152.0/21 4766 -117.17.160.0/22 4766 -117.17.164.0/23 3786 -117.17.166.0/24 3786 -117.17.170.0/23 3786 -117.17.172.0/23 3786 -117.17.174.0/24 4766 -117.17.176.0/22 4766 -117.17.180.0/22 3786 -117.17.184.0/21 3786 -117.17.192.0/21 3786 -117.17.200.0/21 18038 -117.17.208.0/23 18038 -117.17.210.0/23 4766 -117.17.212.0/22 4766 -117.17.216.0/22 4766 -117.17.220.0/22 23570 -117.17.224.0/20 23570 -117.17.240.0/21 9868 -117.17.248.0/23 9868 -117.17.250.0/23 7621 -117.17.252.0/24 7621 -117.17.253.0/24 4766 -117.17.254.0/24 4766 -117.18.0.0/22 38197 -117.18.6.0/23 38197 -117.18.8.0/22 38197 -117.18.12.0/24 38197 -117.18.14.0/23 38197 -117.18.16.0/22 38504 -117.18.20.0/24 38504 -117.18.24.0/21 23618 -117.18.32.0/19 7473 -117.18.64.0/23 38478 -117.18.66.0/23 4646 -117.18.70.0/23 38478 -117.18.72.0/24 4646 -117.18.73.0/24 38478 -117.18.74.0/24 4646 -117.18.78.0/24 4646 -117.18.80.0/21 132863 -117.18.88.0/21 9374 -117.18.96.0/24 7540 -117.18.98.0/24 7540 -117.18.99.0/24 23881 -117.18.100.0/24 23881 -117.18.101.0/24 7540 -117.18.102.0/23 7540 -117.18.104.0/22 7540 -117.18.108.0/24 7540 -117.18.109.0/24 136897 -117.18.110.0/24 7540 -117.18.111.0/24 136897 -117.18.112.0/21 7540 -117.18.120.0/22 7540 -117.18.124.0/23 7540 -117.18.126.0/24 7540 -117.18.127.0/24 136897 -117.18.128.0/18 9351 -117.18.192.0/20 24251 -117.18.208.0/20 17698 -117.18.228.0/22 136255 -117.18.232.0/23 15133 -117.18.237.0/24 15133 -117.19.128.0/17 24158 -117.20.0.0/20 45671 -117.20.16.0/21 38193 -117.20.24.0/22 38193 -117.20.28.0/24 38193 -117.20.29.0/24 135407 -117.20.30.0/23 38193 -117.20.32.0/21 45879 -117.20.40.0/23 14636 -117.20.42.0/24 14148 -117.20.43.0/24 24247 -117.20.44.0/23 24247 -117.20.46.0/24 24247 -117.20.47.0/24 393954 -117.20.48.0/20 23951 -117.20.64.0/21 4764 -117.20.72.0/21 23639 -117.20.80.0/20 18310 -117.20.96.0/20 9597 -117.20.112.0/21 45498 -117.20.120.0/21 9246 -117.20.128.0/22 9874 -117.20.132.0/22 4657 -117.20.136.0/22 4657 -117.20.140.0/22 9874 -117.20.144.0/22 9874 -117.20.148.0/23 4657 -117.20.150.0/23 9874 -117.20.152.0/23 9874 -117.20.154.0/23 4657 -117.20.156.0/23 4657 -117.20.158.0/23 9874 -117.20.160.0/19 9874 -117.20.192.0/18 9981 -117.21.0.0/17 4134 -117.21.128.0/19 4134 -117.21.160.0/20 4134 -117.21.176.0/23 4134 -117.21.178.0/23 139201 -117.21.180.0/22 139201 -117.21.184.0/22 139201 -117.21.188.0/23 139201 -117.21.190.0/23 4134 -117.21.192.0/20 4134 -117.21.208.0/21 4134 -117.21.216.0/22 139201 -117.21.220.0/22 4134 -117.21.224.0/21 4134 -117.21.232.0/22 139201 -117.21.236.0/23 4134 -117.21.238.0/23 134238 -117.21.240.0/23 4134 -117.21.242.0/24 4134 -117.21.243.0/24 134238 -117.21.244.0/23 4134 -117.21.246.0/23 134238 -117.21.248.0/22 134238 -117.21.252.0/23 134238 -117.21.254.0/23 4134 -117.22.0.0/16 4134 -117.23.0.0/21 134418 -117.23.8.0/21 4134 -117.23.16.0/20 4134 -117.23.32.0/20 4134 -117.23.48.0/21 134418 -117.23.56.0/23 134418 -117.23.58.0/24 134768 -117.23.59.0/24 134418 -117.23.60.0/22 134418 -117.23.64.0/18 4134 -117.23.128.0/17 4134 -117.24.0.0/20 133776 -117.24.16.0/20 4134 -117.24.32.0/19 4134 -117.24.64.0/18 4134 -117.24.128.0/17 4134 -117.25.0.0/17 4134 -117.25.128.0/19 133775 -117.25.160.0/19 4134 -117.25.192.0/18 4134 -117.26.0.0/16 4134 -117.27.0.0/17 4134 -117.27.128.0/22 4134 -117.27.132.0/23 133774 -117.27.134.0/24 4134 -117.27.135.0/24 133774 -117.27.136.0/21 133774 -117.27.144.0/20 133774 -117.27.160.0/19 4134 -117.27.192.0/19 4134 -117.27.224.0/20 133774 -117.27.240.0/21 133774 -117.27.248.0/22 133774 -117.27.252.0/24 4134 -117.27.253.0/24 133774 -117.27.254.0/23 133774 -117.28.0.0/17 4134 -117.28.128.0/18 4134 -117.28.192.0/19 4134 -117.28.224.0/20 4809 -117.28.240.0/21 4809 -117.28.248.0/22 4809 -117.28.252.0/23 4809 -117.28.254.0/23 133775 -117.29.0.0/16 4134 -117.30.0.0/15 4134 -117.32.0.0/17 4134 -117.32.128.0/18 4134 -117.32.192.0/19 4134 -117.32.224.0/21 4134 -117.32.232.0/24 4134 -117.32.233.0/24 4835 -117.32.234.0/23 4134 -117.32.236.0/22 4134 -117.32.240.0/20 4134 -117.33.0.0/17 4134 -117.33.128.0/18 134768 -117.33.192.0/19 4134 -117.33.224.0/19 134768 -117.34.0.0/18 4835 -117.34.64.0/20 4835 -117.34.80.0/23 4835 -117.34.82.0/23 134768 -117.34.84.0/23 134768 -117.34.86.0/23 4835 -117.34.88.0/21 4835 -117.34.96.0/23 4835 -117.34.98.0/23 134768 -117.34.100.0/22 134768 -117.34.104.0/23 4835 -117.34.106.0/23 134768 -117.34.108.0/22 4835 -117.34.112.0/21 4835 -117.34.120.0/22 134768 -117.34.124.0/23 134768 -117.34.126.0/23 4835 -117.34.128.0/18 4134 -117.34.192.0/20 4134 -117.34.208.0/21 134768 -117.34.216.0/21 4134 -117.34.224.0/19 4134 -117.35.0.0/16 4134 -117.36.0.0/15 4134 -117.38.0.0/16 4809 -117.39.0.0/16 4134 -117.40.0.0/16 4134 -117.41.0.0/17 4809 -117.41.128.0/19 4134 -117.41.160.0/19 134238 -117.41.192.0/19 4134 -117.41.224.0/19 134238 -117.42.0.0/15 4134 -117.44.0.0/15 4134 -117.46.4.0/22 17505 -117.46.8.0/21 17505 -117.46.16.0/22 17505 -117.46.81.0/24 133948 -117.48.0.0/18 23724 -117.48.64.0/20 23724 -117.48.80.0/21 23724 -117.48.88.0/22 23724 -117.48.96.0/19 23724 -117.48.128.0/19 23650 -117.48.160.0/20 23650 -117.48.192.0/19 58466 -117.48.224.0/20 58466 -117.50.0.0/17 4808 -117.50.128.0/19 4808 -117.50.160.0/19 23724 -117.50.192.0/18 23724 -117.51.0.0/17 63648 -117.51.128.0/19 63646 -117.52.0.0/18 3786 -117.52.64.0/21 3786 -117.52.72.0/23 3786 -117.52.74.0/24 3786 -117.52.75.0/24 6507 -117.52.76.0/22 6507 -117.52.80.0/20 3786 -117.52.96.0/22 3786 -117.52.100.0/24 3786 -117.52.101.0/24 6507 -117.52.102.0/23 3786 -117.52.104.0/21 3786 -117.52.112.0/21 3786 -117.52.120.0/23 3786 -117.52.122.0/23 45974 -117.52.124.0/22 3786 -117.52.128.0/20 23576 -117.52.144.0/20 3786 -117.52.160.0/19 3786 -117.52.192.0/18 3786 -117.53.0.0/19 18136 -117.53.32.0/21 18136 -117.53.40.0/22 58895 -117.53.44.0/22 58397 -117.53.64.0/19 9943 -117.53.96.0/19 4792 -117.53.128.0/20 17551 -117.53.144.0/21 58397 -117.53.152.0/22 46015 -117.53.160.0/20 17732 -117.53.192.0/18 9770 -117.54.0.0/24 9340 -117.54.1.0/24 38525 -117.54.2.0/23 9340 -117.54.4.0/24 9340 -117.54.5.0/24 38525 -117.54.6.0/23 9340 -117.54.8.0/22 38525 -117.54.12.0/24 38525 -117.54.13.0/24 9340 -117.54.14.0/23 9340 -117.54.16.0/20 9340 -117.54.32.0/19 9340 -117.54.64.0/19 9340 -117.54.96.0/22 9340 -117.54.100.0/24 38525 -117.54.101.0/24 9340 -117.54.102.0/23 9340 -117.54.104.0/22 9340 -117.54.108.0/23 38525 -117.54.110.0/23 9340 -117.54.112.0/22 9340 -117.54.116.0/24 38525 -117.54.117.0/24 9340 -117.54.118.0/23 9340 -117.54.120.0/21 9340 -117.54.128.0/23 9340 -117.54.130.0/24 38525 -117.54.131.0/24 9340 -117.54.132.0/22 9340 -117.54.136.0/21 9340 -117.54.144.0/22 9340 -117.54.148.0/24 38525 -117.54.149.0/24 9340 -117.54.150.0/23 9340 -117.54.152.0/21 9340 -117.54.160.0/20 9340 -117.54.176.0/21 9340 -117.54.184.0/22 9340 -117.54.188.0/24 38525 -117.54.189.0/24 9340 -117.54.190.0/23 9340 -117.54.192.0/21 9340 -117.54.200.0/24 38525 -117.54.201.0/24 9340 -117.54.202.0/23 9340 -117.54.204.0/22 9340 -117.54.208.0/20 9340 -117.54.224.0/20 9340 -117.54.240.0/24 38525 -117.54.241.0/24 9340 -117.54.242.0/24 38525 -117.54.243.0/24 9340 -117.54.244.0/24 9340 -117.54.245.0/24 38525 -117.54.246.0/23 9340 -117.54.248.0/21 9340 -117.55.0.0/17 37903 -117.55.128.0/18 9770 -117.55.192.0/23 55745 -117.55.194.0/23 133174 -117.55.196.0/24 198247 -117.55.197.0/24 198504 -117.55.198.0/23 55745 -117.55.200.0/24 55745 -117.55.202.0/23 55745 -117.55.204.0/23 132404 -117.55.206.0/23 55745 -117.55.208.0/20 10021 -117.55.240.0/21 38625 -117.55.253.0/24 135300 -117.55.254.0/23 38608 -117.56.0.0/16 4782 -117.57.0.0/16 4134 -117.58.128.0/20 38109 -117.58.144.0/20 59108 -117.58.175.0/24 3758 -117.58.222.0/24 23930 -117.58.224.0/20 7671 -117.58.240.0/21 38744 -117.58.248.0/21 24446 -117.59.0.0/18 9394 -117.59.64.0/19 9394 -117.59.96.0/20 9394 -117.59.112.0/23 9394 -117.59.114.0/24 9394 -117.59.115.0/24 17969 -117.59.116.0/22 9394 -117.59.120.0/21 9394 -117.59.128.0/17 9394 -117.60.0.0/17 4134 -117.60.128.0/20 4134 -117.60.144.0/21 4134 -117.60.152.0/22 4134 -117.60.156.0/24 4134 -117.60.157.0/24 137689 -117.60.158.0/24 137689 -117.60.159.0/24 4134 -117.60.160.0/19 4134 -117.60.192.0/18 4134 -117.61.0.0/17 4134 -117.61.128.0/18 4134 -117.61.192.0/20 4134 -117.61.208.0/21 4134 -117.61.216.0/22 4134 -117.61.220.0/23 4134 -117.61.222.0/23 137689 -117.61.224.0/20 4134 -117.61.240.0/21 4134 -117.61.248.0/22 4134 -117.61.252.0/23 4134 -117.61.254.0/24 137689 -117.61.255.0/24 4134 -117.62.0.0/20 4134 -117.62.16.0/22 4134 -117.62.20.0/23 4134 -117.62.22.0/24 23650 -117.62.23.0/24 4134 -117.62.24.0/21 4134 -117.62.32.0/20 4134 -117.62.48.0/22 4134 -117.62.52.0/23 4134 -117.62.54.0/24 23650 -117.62.55.0/24 4134 -117.62.56.0/21 4134 -117.62.64.0/18 4134 -117.62.128.0/18 4134 -117.62.192.0/21 4134 -117.62.200.0/21 134756 -117.62.208.0/21 4134 -117.62.216.0/21 134756 -117.62.224.0/21 4134 -117.62.232.0/21 134756 -117.62.240.0/22 134756 -117.62.244.0/22 4134 -117.62.248.0/21 4134 -117.63.0.0/16 4134 -117.64.0.0/13 4134 -117.72.248.0/22 131486 -117.72.255.0/24 58563 -117.73.0.0/20 4808 -117.73.16.0/21 4808 -117.73.252.0/22 58540 -117.74.0.0/18 59108 -117.74.64.0/20 4837 -117.74.96.0/22 3064 -117.74.100.0/23 3064 -117.74.102.0/24 3064 -117.74.103.0/24 20473 -117.74.104.0/21 3064 -117.74.112.0/22 38523 -117.74.117.0/24 38523 -117.74.118.0/23 38523 -117.74.120.0/22 38515 -117.74.124.0/23 38515 -117.74.126.0/24 38515 -117.74.127.0/24 137326 -117.74.128.0/20 4812 -117.75.0.0/16 9395 -117.78.0.0/18 55990 -117.79.80.0/23 4808 -117.79.82.0/23 23724 -117.79.84.0/22 23724 -117.79.88.0/23 23724 -117.79.90.0/23 4808 -117.79.92.0/22 4808 -117.79.128.0/23 23724 -117.79.130.0/23 4808 -117.79.132.0/23 4808 -117.79.134.0/23 23724 -117.79.136.0/21 4808 -117.79.144.0/21 4808 -117.79.152.0/23 23724 -117.79.154.0/23 4808 -117.79.156.0/23 4808 -117.79.158.0/23 23724 -117.79.160.0/21 45058 -117.79.224.0/21 56019 -117.79.232.0/23 23724 -117.79.234.0/23 56019 -117.79.236.0/22 56019 -117.79.241.0/24 4808 -117.79.242.0/24 4808 -117.80.0.0/23 4134 -117.80.2.0/24 4134 -117.80.3.0/24 23650 -117.80.4.0/22 4134 -117.80.8.0/21 4134 -117.80.16.0/20 4134 -117.80.32.0/20 4134 -117.80.48.0/22 4134 -117.80.52.0/23 4134 -117.80.54.0/24 23650 -117.80.55.0/24 4134 -117.80.56.0/21 4134 -117.80.64.0/20 4134 -117.80.80.0/22 4134 -117.80.84.0/23 4134 -117.80.86.0/23 23650 -117.80.88.0/21 4134 -117.80.96.0/19 4134 -117.80.128.0/19 4134 -117.80.160.0/21 4134 -117.80.168.0/23 4134 -117.80.170.0/24 4134 -117.80.171.0/24 23650 -117.80.172.0/22 4134 -117.80.176.0/21 4134 -117.80.184.0/23 4134 -117.80.186.0/24 23650 -117.80.187.0/24 4134 -117.80.188.0/22 4134 -117.80.192.0/20 4134 -117.80.208.0/22 4134 -117.80.212.0/24 23650 -117.80.213.0/24 4134 -117.80.214.0/23 4134 -117.80.216.0/21 4134 -117.80.224.0/21 4134 -117.80.232.0/22 4134 -117.80.236.0/24 4134 -117.80.237.0/24 23650 -117.80.238.0/23 4134 -117.80.240.0/20 4134 -117.81.0.0/17 4134 -117.81.128.0/18 4134 -117.81.192.0/20 4134 -117.81.208.0/22 4134 -117.81.212.0/24 23650 -117.81.213.0/24 4134 -117.81.214.0/23 4134 -117.81.216.0/21 4134 -117.81.224.0/21 4134 -117.81.232.0/23 23650 -117.81.234.0/23 4134 -117.81.236.0/22 4134 -117.81.240.0/20 4134 -117.82.0.0/17 4134 -117.82.128.0/21 4134 -117.82.136.0/23 4134 -117.82.138.0/24 23650 -117.82.139.0/24 4134 -117.82.140.0/22 4134 -117.82.144.0/20 4134 -117.82.160.0/19 4134 -117.82.192.0/18 4134 -117.83.0.0/18 4134 -117.83.64.0/20 4134 -117.83.80.0/23 4134 -117.83.82.0/24 4134 -117.83.83.0/24 23650 -117.83.84.0/22 4134 -117.83.88.0/21 4134 -117.83.96.0/19 4134 -117.83.128.0/20 4134 -117.83.144.0/21 4134 -117.83.152.0/24 23650 -117.83.153.0/24 4134 -117.83.154.0/23 4134 -117.83.156.0/22 4134 -117.83.160.0/20 4134 -117.83.176.0/23 4134 -117.83.178.0/24 23650 -117.83.179.0/24 4134 -117.83.180.0/22 4134 -117.83.184.0/21 4134 -117.83.192.0/23 4134 -117.83.194.0/24 23650 -117.83.195.0/24 4134 -117.83.196.0/22 4134 -117.83.200.0/21 4134 -117.83.208.0/20 4134 -117.83.224.0/19 4134 -117.84.0.0/17 4134 -117.84.128.0/19 4134 -117.84.160.0/21 4134 -117.84.168.0/22 4134 -117.84.172.0/24 23650 -117.84.173.0/24 4134 -117.84.174.0/23 4134 -117.84.176.0/20 4134 -117.84.192.0/18 4134 -117.85.0.0/16 4134 -117.86.0.0/15 4134 -117.88.0.0/19 4134 -117.88.32.0/21 4134 -117.88.40.0/21 134756 -117.88.48.0/21 4134 -117.88.56.0/21 134756 -117.88.64.0/18 4134 -117.88.128.0/17 4134 -117.89.0.0/16 4134 -117.90.0.0/16 4134 -117.91.0.0/17 4134 -117.91.128.0/19 4134 -117.91.160.0/20 4134 -117.91.176.0/20 137697 -117.91.192.0/21 137697 -117.91.200.0/21 4134 -117.91.208.0/20 4134 -117.91.224.0/19 4134 -117.92.0.0/14 4134 -117.96.0.0/20 24560 -117.96.28.0/23 45609 -117.96.30.0/24 45609 -117.96.32.0/19 45609 -117.96.64.0/20 45609 -117.96.80.0/22 45609 -117.96.88.0/23 45609 -117.96.90.0/24 45609 -117.96.93.0/24 45609 -117.96.94.0/23 45609 -117.96.104.0/22 45609 -117.96.120.0/23 45609 -117.96.123.0/24 9498 -117.96.152.0/24 45609 -117.96.192.0/18 24560 -117.97.0.0/18 45609 -117.97.80.0/21 45609 -117.97.93.0/24 45609 -117.97.94.0/24 45609 -117.97.96.0/19 45609 -117.97.128.0/18 24560 -117.97.221.0/24 45609 -117.97.222.0/24 45609 -117.97.224.0/19 45609 -117.98.128.0/18 24560 -117.98.192.0/19 24560 -117.98.254.0/24 9498 -117.99.34.0/24 45609 -117.99.36.0/23 45609 -117.99.64.0/20 45609 -117.99.80.0/20 24560 -117.99.96.0/20 24560 -117.99.112.0/20 45609 -117.99.128.0/24 45609 -117.99.160.0/19 24560 -117.100.0.0/15 4808 -117.102.0.0/21 38710 -117.102.8.0/22 38710 -117.102.12.0/23 38616 -117.102.14.0/23 38710 -117.102.16.0/21 38710 -117.102.24.0/22 38710 -117.102.28.0/24 38710 -117.102.29.0/24 38616 -117.102.30.0/23 38616 -117.102.32.0/20 38710 -117.102.48.0/20 132165 -117.102.64.0/18 17451 -117.102.128.0/19 133612 -117.102.165.0/24 46028 -117.102.167.0/24 38507 -117.102.168.0/21 18070 -117.102.176.0/20 2514 -117.102.192.0/19 2514 -117.102.224.0/20 23756 -117.102.240.0/22 23756 -117.102.244.0/23 23756 -117.102.246.0/23 58397 -117.102.248.0/22 58397 -117.102.252.0/22 23756 -117.103.1.0/24 45699 -117.103.2.0/24 45699 -117.103.3.0/24 45300 -117.103.4.0/22 45699 -117.103.32.0/22 23861 -117.103.36.0/23 23861 -117.103.64.0/23 45718 -117.103.66.0/24 45718 -117.103.68.0/22 56234 -117.103.80.0/21 38614 -117.103.88.0/21 24439 -117.103.96.0/20 24167 -117.103.116.0/24 138077 -117.103.144.0/21 10118 -117.103.152.0/22 10118 -117.103.156.0/24 10116 -117.103.157.0/24 10118 -117.103.158.0/23 10118 -117.103.160.0/21 2514 -117.103.168.0/21 38506 -117.103.176.0/20 2914 -117.103.192.0/19 38248 -117.103.224.0/20 38248 -117.103.240.0/21 38248 -117.104.0.0/18 10010 -117.104.64.0/18 2914 -117.104.128.0/20 2914 -117.104.144.0/24 2914 -117.104.145.0/24 394265 -117.104.146.0/23 2914 -117.104.148.0/22 2914 -117.104.152.0/21 2914 -117.104.176.0/21 9245 -117.104.184.0/23 45273 -117.104.186.0/23 63967 -117.104.188.0/24 58525 -117.104.189.0/24 45501 -117.104.190.0/24 23879 -117.104.191.0/24 10229 -117.104.192.0/19 23666 -117.104.224.0/21 55424 -117.104.232.0/24 38720 -117.104.239.0/24 38720 -117.104.240.0/21 18190 -117.104.248.0/22 18190 -117.104.252.0/23 18190 -117.104.254.0/24 18190 -117.104.255.0/24 9658 -117.106.0.0/15 4847 -117.108.0.0/15 18081 -117.110.0.0/20 17858 -117.110.16.0/20 9316 -117.110.32.0/20 9316 -117.110.48.0/21 9316 -117.110.56.0/22 9316 -117.110.60.0/24 9316 -117.110.61.0/24 38391 -117.110.62.0/23 38396 -117.110.64.0/23 38396 -117.110.66.0/23 9316 -117.110.68.0/23 9316 -117.110.70.0/24 38406 -117.110.71.0/24 9316 -117.110.72.0/24 38406 -117.110.73.0/24 9316 -117.110.74.0/23 9316 -117.110.76.0/22 9316 -117.110.80.0/23 38390 -117.110.82.0/24 38390 -117.110.83.0/24 38406 -117.110.84.0/22 38411 -117.110.88.0/24 38400 -117.110.89.0/24 38411 -117.110.90.0/24 38411 -117.110.91.0/24 9316 -117.110.92.0/22 9316 -117.110.96.0/20 9316 -117.110.112.0/22 9871 -117.110.116.0/22 9316 -117.110.120.0/23 9316 -117.110.122.0/24 9316 -117.110.123.0/24 9871 -117.110.124.0/24 9871 -117.110.125.0/24 9316 -117.110.126.0/23 9316 -117.110.128.0/17 9316 -117.111.0.0/19 17853 -117.111.32.0/19 9316 -117.111.64.0/19 9316 -117.111.96.0/21 9316 -117.111.104.0/24 38395 -117.111.105.0/24 9316 -117.111.106.0/23 9316 -117.111.108.0/24 9316 -117.111.109.0/24 38391 -117.111.110.0/24 38391 -117.111.111.0/24 9316 -117.111.112.0/20 9316 -117.111.128.0/20 9871 -117.111.144.0/22 9871 -117.111.148.0/22 9316 -117.111.152.0/21 9316 -117.111.160.0/19 9316 -117.111.192.0/21 9316 -117.111.200.0/22 9316 -117.111.204.0/23 9316 -117.111.206.0/24 9316 -117.111.207.0/24 38415 -117.111.208.0/23 9316 -117.111.210.0/24 9316 -117.111.211.0/24 38415 -117.111.212.0/22 9316 -117.111.216.0/24 9316 -117.111.217.0/24 38410 -117.111.218.0/24 9316 -117.111.219.0/24 38415 -117.111.220.0/24 38415 -117.111.221.0/24 9316 -117.111.222.0/23 9316 -117.111.224.0/21 9316 -117.111.232.0/22 9316 -117.111.236.0/22 38391 -117.111.240.0/24 38391 -117.111.241.0/24 9316 -117.111.242.0/23 9316 -117.111.244.0/22 9316 -117.111.248.0/21 9316 -117.112.0.0/15 4847 -117.114.0.0/17 4847 -117.114.128.0/18 4847 -117.114.192.0/19 4847 -117.114.224.0/20 4847 -117.114.240.0/21 4847 -117.114.248.0/22 4847 -117.114.252.0/23 4847 -117.114.254.0/24 4847 -117.114.255.0/24 23724 -117.115.0.0/16 4847 -117.116.0.0/14 4847 -117.120.0.0/21 7595 -117.120.16.0/23 7583 -117.120.18.0/24 7583 -117.120.19.0/24 27471 -117.120.20.0/24 7583 -117.120.21.0/24 27471 -117.120.23.0/24 7583 -117.120.24.0/21 38623 -117.120.32.0/22 38624 -117.120.36.0/23 4768 -117.120.40.0/21 4851 -117.120.48.0/21 37916 -117.120.56.0/22 134863 -117.120.60.0/22 132839 -117.121.0.0/21 56048 -117.121.8.0/22 56048 -117.121.12.0/22 38346 -117.121.16.0/20 56048 -117.121.32.0/24 4808 -117.121.33.0/24 24134 -117.121.34.0/24 4808 -117.121.35.0/24 24134 -117.121.36.0/22 4808 -117.121.40.0/22 38346 -117.121.44.0/23 4808 -117.121.46.0/24 4808 -117.121.47.0/24 7540 -117.121.48.0/21 56048 -117.121.56.0/22 4808 -117.121.60.0/22 23724 -117.121.64.0/19 23724 -117.121.96.0/20 4808 -117.121.112.0/20 24134 -117.121.128.0/22 55998 -117.121.132.0/22 4837 -117.121.136.0/21 55998 -117.121.144.0/22 7540 -117.121.148.0/22 4808 -117.121.152.0/21 23724 -117.121.160.0/19 23724 -117.121.200.0/24 46029 -117.121.203.0/24 46029 -117.121.204.0/22 46029 -117.121.208.0/24 38794 -117.121.209.0/24 45455 -117.121.210.0/23 38794 -117.121.212.0/22 38794 -117.121.216.0/21 38794 -117.121.224.0/20 4613 -117.121.240.0/24 55405 -117.121.241.0/24 45887 -117.121.242.0/24 38220 -117.121.244.0/23 45887 -117.121.246.0/24 206782 -117.121.248.0/22 22822 -117.121.252.0/23 38622 -117.121.254.0/23 22822 -117.122.116.0/22 23962 -117.122.120.0/22 23899 -117.122.124.0/22 24066 -117.122.128.0/17 4808 -117.123.0.0/16 17849 -117.124.0.0/14 7641 -117.128.0.0/21 9808 -117.128.8.0/21 56048 -117.128.16.0/20 56048 -117.128.32.0/19 56048 -117.128.64.0/18 56048 -117.128.128.0/17 56048 -117.129.0.0/16 56048 -117.130.0.0/16 56048 -117.131.0.0/17 24400 -117.131.128.0/17 38019 -117.132.0.0/18 24444 -117.132.64.0/19 24444 -117.132.96.0/19 56044 -117.132.128.0/20 56044 -117.132.144.0/20 24547 -117.132.160.0/20 24547 -117.132.176.0/20 9808 -117.132.192.0/18 9808 -117.133.0.0/16 56048 -117.134.0.0/19 56048 -117.134.32.0/24 56048 -117.134.33.0/24 9808 -117.134.34.0/23 9808 -117.134.36.0/22 9808 -117.134.40.0/21 9808 -117.134.48.0/20 9808 -117.134.64.0/18 9808 -117.134.128.0/17 9808 -117.135.0.0/17 24400 -117.135.128.0/21 9808 -117.135.136.0/22 9808 -117.135.140.0/23 9808 -117.135.142.0/24 9808 -117.135.143.0/24 24400 -117.135.144.0/20 9808 -117.135.160.0/23 9808 -117.135.162.0/23 24400 -117.135.164.0/23 9808 -117.135.166.0/24 24400 -117.135.167.0/24 9808 -117.135.168.0/21 9808 -117.135.176.0/20 24400 -117.135.192.0/18 9808 -117.136.0.0/24 56048 -117.136.1.0/24 38019 -117.136.2.0/24 24547 -117.136.3.0/24 9808 -117.136.4.0/24 56042 -117.136.5.0/24 56044 -117.136.6.0/24 134810 -117.136.7.0/24 132525 -117.136.8.0/24 24400 -117.136.9.0/24 24444 -117.136.10.0/24 56041 -117.136.11.0/24 9808 -117.136.12.0/24 56040 -117.136.13.0/24 9808 -117.136.14.0/23 9808 -117.136.16.0/23 9808 -117.136.18.0/24 9808 -117.136.19.0/24 56046 -117.136.20.0/23 9808 -117.136.22.0/24 24445 -117.136.23.0/24 9808 -117.136.24.0/24 56047 -117.136.25.0/24 9808 -117.136.26.0/23 9808 -117.136.28.0/23 9808 -117.136.30.0/24 9808 -117.136.31.0/24 56040 -117.136.32.0/23 56040 -117.136.34.0/24 56040 -117.136.35.0/24 56046 -117.136.36.0/24 24445 -117.136.37.0/24 24444 -117.136.38.0/24 56048 -117.136.39.0/24 56040 -117.136.40.0/23 56040 -117.136.42.0/23 9808 -117.136.44.0/24 24445 -117.136.45.0/24 56046 -117.136.46.0/24 56046 -117.136.47.0/24 24547 -117.136.48.0/22 9808 -117.136.52.0/23 9808 -117.136.54.0/23 38019 -117.136.56.0/23 132525 -117.136.58.0/23 9808 -117.136.60.0/22 9808 -117.136.64.0/23 9808 -117.136.66.0/23 56046 -117.136.68.0/24 56046 -117.136.69.0/24 9808 -117.136.70.0/23 9808 -117.136.72.0/22 9808 -117.136.76.0/24 9808 -117.136.77.0/24 24444 -117.136.78.0/24 24444 -117.136.79.0/24 56040 -117.136.80.0/21 9808 -117.136.88.0/23 56047 -117.136.90.0/23 56042 -117.136.92.0/22 24444 -117.136.96.0/21 9808 -117.136.104.0/22 24445 -117.136.108.0/23 9808 -117.136.110.0/24 9808 -117.136.111.0/24 56041 -117.136.112.0/22 56041 -117.136.116.0/23 9808 -117.136.118.0/24 9808 -117.136.119.0/24 24400 -117.136.120.0/24 24400 -117.136.121.0/24 9808 -117.136.122.0/23 9808 -117.136.124.0/22 9808 -117.136.128.0/17 9808 -117.137.0.0/16 9808 -117.138.0.0/15 9808 -117.140.0.0/15 9808 -117.142.0.0/22 56040 -117.142.4.0/24 9808 -117.142.5.0/24 24445 -117.142.6.0/24 24445 -117.142.7.0/24 9808 -117.142.8.0/23 9808 -117.142.10.0/23 56046 -117.142.12.0/22 56046 -117.142.16.0/23 56041 -117.142.18.0/23 56040 -117.142.20.0/22 9808 -117.142.24.0/23 9808 -117.142.26.0/23 56040 -117.142.28.0/23 56040 -117.142.30.0/24 56040 -117.142.31.0/24 9808 -117.142.32.0/22 9808 -117.142.36.0/24 9808 -117.142.37.0/24 24444 -117.142.38.0/24 24444 -117.142.39.0/24 56046 -117.142.40.0/23 9808 -117.142.42.0/24 9808 -117.142.43.0/24 56042 -117.142.44.0/24 56042 -117.142.45.0/24 9808 -117.142.46.0/23 9808 -117.142.48.0/20 9808 -117.142.64.0/22 9808 -117.142.68.0/24 9808 -117.142.69.0/24 56040 -117.142.70.0/23 56040 -117.142.72.0/22 56040 -117.142.76.0/23 56040 -117.142.78.0/24 56040 -117.142.79.0/24 9808 -117.142.80.0/20 9808 -117.142.96.0/21 9808 -117.142.104.0/22 9808 -117.142.108.0/23 9808 -117.142.110.0/24 9808 -117.142.111.0/24 24547 -117.142.112.0/22 24547 -117.142.116.0/24 24547 -117.142.117.0/24 9808 -117.142.118.0/24 9808 -117.142.119.0/24 24445 -117.142.120.0/21 24445 -117.142.128.0/24 24445 -117.142.129.0/24 9808 -117.142.130.0/23 9808 -117.142.132.0/22 9808 -117.142.136.0/21 9808 -117.142.144.0/21 9808 -117.142.152.0/23 9808 -117.142.154.0/23 56046 -117.142.156.0/22 56046 -117.142.160.0/23 56046 -117.142.162.0/24 56046 -117.142.163.0/24 9808 -117.142.164.0/23 9808 -117.142.166.0/24 9808 -117.142.167.0/24 56041 -117.142.168.0/22 56041 -117.142.172.0/24 56041 -117.142.173.0/24 9808 -117.142.174.0/23 9808 -117.142.176.0/21 9808 -117.142.184.0/22 9808 -117.142.188.0/23 9808 -117.142.190.0/23 24444 -117.142.192.0/21 24444 -117.142.200.0/24 24444 -117.142.201.0/24 9808 -117.142.202.0/23 56042 -117.142.204.0/22 9808 -117.142.208.0/20 9808 -117.142.224.0/21 9808 -117.142.232.0/22 9808 -117.142.236.0/23 9808 -117.142.238.0/23 56041 -117.142.240.0/23 56041 -117.142.242.0/23 9808 -117.142.244.0/22 9808 -117.142.248.0/21 9808 -117.143.0.0/16 24400 -117.144.0.0/17 24400 -117.144.128.0/18 24400 -117.144.192.0/19 24400 -117.144.224.0/20 9808 -117.144.240.0/21 9808 -117.144.248.0/21 24400 -117.145.0.0/16 9808 -117.146.0.0/16 9808 -117.147.0.0/16 56041 -117.148.0.0/15 56041 -117.150.0.0/15 9808 -117.152.0.0/14 9808 -117.156.0.0/15 9808 -117.158.0.0/15 24445 -117.160.0.0/16 24445 -117.161.0.0/16 9808 -117.162.0.0/15 9808 -117.164.0.0/14 9808 -117.168.0.0/13 9808 -117.176.0.0/15 9808 -117.178.0.0/16 9808 -117.179.0.0/16 132525 -117.180.0.0/14 9808 -117.184.0.0/19 24400 -117.184.32.0/20 9808 -117.184.48.0/20 24400 -117.184.64.0/18 24400 -117.184.128.0/17 24400 -117.185.0.0/21 24400 -117.185.8.0/23 24400 -117.185.10.0/24 9808 -117.185.11.0/24 24400 -117.185.12.0/22 24400 -117.185.16.0/20 9808 -117.185.32.0/19 24400 -117.185.64.0/19 24400 -117.185.96.0/20 24400 -117.185.112.0/20 9808 -117.185.128.0/17 9808 -117.186.0.0/16 24400 -117.187.0.0/19 9808 -117.187.32.0/22 9808 -117.187.36.0/23 9808 -117.187.38.0/23 138407 -117.187.40.0/23 138407 -117.187.42.0/23 9808 -117.187.44.0/22 9808 -117.187.48.0/20 9808 -117.187.64.0/18 9808 -117.187.128.0/17 9808 -117.188.0.0/14 9808 -117.192.0.0/11 9829 -117.224.0.0/13 9829 -117.232.0.0/14 9829 -117.236.0.0/15 9829 -117.238.0.0/16 9829 -117.239.0.0/17 9829 -117.239.128.0/19 9829 -117.239.160.0/20 9829 -117.239.176.0/21 132717 -117.239.184.0/21 9829 -117.239.192.0/18 9829 -117.240.0.0/12 9829 -118.0.0.0/12 4713 -118.16.0.0/13 4713 -118.24.0.0/15 45090 -118.26.0.0/19 59050 -118.26.32.0/22 133865 -118.26.40.0/22 23724 -118.26.44.0/23 23724 -118.26.64.0/21 45093 -118.26.72.0/22 4847 -118.26.96.0/21 133865 -118.26.112.0/22 9394 -118.26.116.0/22 4837 -118.26.128.0/20 23724 -118.26.160.0/20 4808 -118.26.192.0/22 23724 -118.26.196.0/24 23724 -118.26.200.0/21 23724 -118.26.208.0/20 23724 -118.26.224.0/19 23724 -118.27.0.0/18 7506 -118.27.64.0/20 7506 -118.27.80.0/21 7506 -118.27.88.0/22 7506 -118.27.92.0/23 7506 -118.27.94.0/24 58649 -118.27.95.0/24 7506 -118.27.96.0/19 7506 -118.27.128.0/19 135161 -118.27.192.0/19 131392 -118.27.240.0/20 23805 -118.28.0.0/15 4847 -118.30.28.0/23 134176 -118.30.30.0/24 134176 -118.31.0.0/16 37963 -118.32.0.0/15 4766 -118.34.0.0/16 4766 -118.35.0.0/17 4766 -118.35.128.0/19 4766 -118.35.160.0/20 4766 -118.35.176.0/21 4766 -118.35.184.0/23 4766 -118.35.186.0/24 38671 -118.35.187.0/24 4766 -118.35.188.0/22 4766 -118.35.192.0/18 4766 -118.36.0.0/16 4766 -118.37.0.0/19 4766 -118.37.32.0/20 4766 -118.37.48.0/21 4766 -118.37.56.0/24 10182 -118.37.57.0/24 4766 -118.37.58.0/23 4766 -118.37.60.0/22 4766 -118.37.64.0/18 4766 -118.37.128.0/17 4766 -118.38.0.0/15 4766 -118.40.0.0/14 4766 -118.44.0.0/16 4766 -118.45.0.0/20 4766 -118.45.16.0/22 4766 -118.45.20.0/23 4766 -118.45.22.0/24 18305 -118.45.23.0/24 4766 -118.45.24.0/21 4766 -118.45.32.0/19 4766 -118.45.64.0/18 4766 -118.45.128.0/17 4766 -118.46.0.0/16 4766 -118.47.0.0/18 4766 -118.47.64.0/21 4766 -118.47.72.0/23 4766 -118.47.74.0/24 4793 -118.47.75.0/24 4766 -118.47.76.0/22 4766 -118.47.80.0/20 4766 -118.47.96.0/19 4766 -118.47.128.0/17 4766 -118.48.0.0/12 4766 -118.67.0.0/18 24395 -118.67.64.0/19 17941 -118.67.96.0/20 17941 -118.67.160.0/19 4766 -118.67.192.0/21 132031 -118.67.200.0/21 7712 -118.67.208.0/23 58923 -118.67.210.0/24 58923 -118.67.212.0/22 58923 -118.67.216.0/21 58923 -118.67.224.0/23 17447 -118.67.228.0/23 17447 -118.67.236.0/22 17447 -118.67.240.0/22 17447 -118.67.244.0/23 17447 -118.67.246.0/24 17447 -118.67.248.0/21 17447 -118.68.0.0/14 18403 -118.72.0.0/13 4837 -118.80.0.0/15 4837 -118.82.0.0/21 38146 -118.82.9.0/24 38146 -118.82.10.0/23 38146 -118.82.13.0/24 38146 -118.82.14.0/23 38146 -118.82.19.0/24 38146 -118.82.20.0/22 38146 -118.82.24.0/23 38146 -118.82.26.0/24 38146 -118.82.27.0/24 24538 -118.82.32.0/20 38714 -118.82.48.0/20 18278 -118.82.64.0/18 9597 -118.82.128.0/17 55872 -118.83.0.0/16 4721 -118.84.0.0/16 4134 -118.85.0.0/18 4134 -118.85.64.0/19 4134 -118.85.96.0/20 4134 -118.85.112.0/22 4134 -118.85.116.0/22 4809 -118.85.120.0/21 4134 -118.85.128.0/21 4809 -118.85.136.0/21 4134 -118.85.144.0/20 4134 -118.85.160.0/19 4134 -118.85.192.0/21 4134 -118.85.200.0/22 4134 -118.85.204.0/23 4134 -118.85.206.0/23 4809 -118.85.208.0/22 4134 -118.85.212.0/23 4134 -118.85.214.0/24 17799 -118.85.215.0/24 4134 -118.85.216.0/21 4134 -118.85.224.0/19 4134 -118.86.0.0/15 4721 -118.88.0.0/23 18008 -118.88.4.0/23 18008 -118.88.8.0/21 38909 -118.88.16.0/21 38716 -118.88.24.0/21 55359 -118.88.32.0/19 4837 -118.88.64.0/18 4837 -118.88.128.0/17 4837 -118.89.0.0/16 45090 -118.90.0.0/16 17435 -118.91.0.0/21 7562 -118.91.8.0/21 45374 -118.91.16.0/21 45374 -118.91.24.0/21 10175 -118.91.32.0/20 10175 -118.91.48.0/20 7623 -118.91.64.0/19 17573 -118.91.96.0/19 10164 -118.91.128.0/22 24195 -118.91.132.0/23 24195 -118.91.134.0/24 24195 -118.91.141.0/24 63502 -118.91.144.0/20 38661 -118.91.160.0/20 24550 -118.91.177.0/24 18002 -118.91.178.0/24 18002 -118.91.180.0/23 18002 -118.91.182.0/24 18002 -118.91.184.0/24 133647 -118.91.186.0/23 18002 -118.91.189.0/24 18002 -118.91.190.0/24 133647 -118.91.192.0/19 37922 -118.91.224.0/21 38525 -118.91.232.0/22 38743 -118.91.236.0/24 38743 -118.91.240.0/20 45753 -118.92.0.0/15 9500 -118.95.102.0/23 9583 -118.95.104.0/24 9583 -118.95.185.0/24 9583 -118.96.0.0/16 7713 -118.97.0.0/19 17974 -118.97.32.0/20 17974 -118.97.48.0/24 17974 -118.97.49.0/24 7713 -118.97.50.0/23 17974 -118.97.52.0/24 7713 -118.97.53.0/24 17974 -118.97.54.0/23 17974 -118.97.56.0/21 17974 -118.97.64.0/18 17974 -118.97.128.0/18 17974 -118.97.192.0/24 7713 -118.97.193.0/24 17974 -118.97.194.0/23 17974 -118.97.196.0/22 17974 -118.97.200.0/21 17974 -118.97.208.0/20 17974 -118.97.224.0/21 17974 -118.97.232.0/24 17974 -118.97.233.0/24 7713 -118.97.234.0/23 17974 -118.97.236.0/22 17974 -118.97.240.0/23 17974 -118.97.242.0/23 7713 -118.97.244.0/23 7713 -118.97.246.0/24 7713 -118.97.247.0/24 17974 -118.97.248.0/22 17974 -118.97.252.0/23 17974 -118.97.254.0/24 7713 -118.97.255.0/24 17974 -118.98.0.0/20 17974 -118.98.16.0/21 17974 -118.98.24.0/23 17974 -118.98.26.0/24 7713 -118.98.27.0/24 17974 -118.98.28.0/22 17974 -118.98.32.0/24 7713 -118.98.33.0/24 17974 -118.98.34.0/24 7713 -118.98.35.0/24 17974 -118.98.36.0/24 7713 -118.98.37.0/24 17974 -118.98.38.0/23 17974 -118.98.40.0/22 17974 -118.98.44.0/23 17974 -118.98.46.0/24 7713 -118.98.47.0/24 17974 -118.98.48.0/20 17974 -118.98.64.0/22 7713 -118.98.68.0/22 17974 -118.98.72.0/21 7713 -118.98.80.0/21 17974 -118.98.88.0/23 17974 -118.98.90.0/24 17974 -118.98.91.0/24 7713 -118.98.92.0/22 7713 -118.98.96.0/22 7713 -118.98.100.0/22 17974 -118.98.104.0/21 7713 -118.98.112.0/20 17974 -118.98.166.0/24 18051 -118.98.177.0/24 18051 -118.98.214.0/24 18051 -118.98.216.0/24 18051 -118.98.221.0/24 18051 -118.98.222.0/23 18051 -118.98.224.0/24 18051 -118.98.226.0/23 18051 -118.98.228.0/22 18051 -118.98.232.0/22 18051 -118.98.236.0/24 18051 -118.99.1.0/24 38186 -118.99.3.0/24 38186 -118.99.7.0/24 38186 -118.99.8.0/23 38186 -118.99.10.0/24 38186 -118.99.12.0/23 38186 -118.99.15.0/24 38186 -118.99.16.0/21 38186 -118.99.25.0/24 38186 -118.99.26.0/23 38186 -118.99.28.0/22 38186 -118.99.32.0/21 38186 -118.99.40.0/23 38186 -118.99.45.0/24 38186 -118.99.46.0/23 38186 -118.99.48.0/24 38186 -118.99.50.0/23 38186 -118.99.52.0/23 38186 -118.99.55.0/24 38186 -118.99.56.0/24 38186 -118.99.58.0/24 38186 -118.99.60.0/22 38186 -118.99.64.0/18 17451 -118.99.128.0/17 9676 -118.100.0.0/15 4788 -118.102.0.0/21 38244 -118.102.8.0/22 38186 -118.102.12.0/23 38186 -118.102.15.0/24 38186 -118.102.16.0/21 4847 -118.102.24.0/22 4847 -118.102.28.0/24 23844 -118.102.29.0/24 4847 -118.102.30.0/23 4847 -118.102.40.0/21 23791 -118.102.48.0/20 23791 -118.102.64.0/21 7545 -118.102.72.0/24 7545 -118.102.73.0/24 9476 -118.102.74.0/23 7545 -118.102.76.0/22 7545 -118.102.80.0/20 7545 -118.102.96.0/19 7545 -118.103.0.0/17 17676 -118.103.128.0/21 37908 -118.103.136.0/21 23955 -118.103.144.0/23 10032 -118.103.146.0/24 10032 -118.103.149.0/24 10032 -118.103.150.0/23 10032 -118.103.152.0/23 10032 -118.103.154.0/23 132084 -118.103.156.0/23 10032 -118.103.158.0/23 132084 -118.103.180.0/24 9989 -118.103.188.0/22 131199 -118.103.192.0/19 9976 -118.103.224.0/20 132165 -118.103.241.0/24 17990 -118.103.244.0/24 55649 -118.103.245.0/24 4134 -118.103.246.0/23 4134 -118.103.248.0/21 10094 -118.104.0.0/15 18126 -118.106.0.0/16 18126 -118.107.0.0/18 64050 -118.107.64.0/18 38726 -118.107.128.0/20 18053 -118.107.144.0/24 2764 -118.107.145.0/24 18000 -118.107.146.0/23 18000 -118.107.148.0/23 18000 -118.107.150.0/24 18000 -118.107.151.0/24 2764 -118.107.160.0/21 38107 -118.107.170.0/23 54994 -118.107.172.0/23 54994 -118.107.174.0/23 38107 -118.107.176.0/22 64050 -118.107.180.0/23 55933 -118.107.182.0/24 55933 -118.107.183.0/24 134196 -118.107.184.0/21 38803 -118.107.192.0/21 24321 -118.107.208.0/20 24321 -118.107.240.0/22 24321 -118.108.0.0/14 2518 -118.112.0.0/19 38283 -118.112.32.0/19 4134 -118.112.64.0/18 4134 -118.112.128.0/18 4134 -118.112.192.0/19 4134 -118.112.224.0/22 4134 -118.112.228.0/24 4134 -118.112.229.0/24 38283 -118.112.230.0/23 38283 -118.112.232.0/24 38283 -118.112.233.0/24 4134 -118.112.234.0/23 4134 -118.112.236.0/23 4134 -118.112.238.0/23 38283 -118.112.240.0/23 38283 -118.112.242.0/23 4134 -118.112.244.0/22 4134 -118.112.248.0/23 38283 -118.112.250.0/24 38283 -118.112.251.0/24 4134 -118.112.252.0/22 4134 -118.113.0.0/16 4134 -118.114.0.0/15 4134 -118.116.0.0/22 38283 -118.116.4.0/24 4134 -118.116.5.0/24 38283 -118.116.6.0/23 38283 -118.116.8.0/21 4134 -118.116.16.0/20 4134 -118.116.32.0/19 4134 -118.116.64.0/18 4134 -118.116.128.0/17 4134 -118.117.0.0/16 4134 -118.118.0.0/17 4134 -118.118.128.0/19 4134 -118.118.160.0/21 4134 -118.118.168.0/23 4134 -118.118.170.0/24 4134 -118.118.171.0/24 38283 -118.118.172.0/22 4134 -118.118.176.0/20 4134 -118.118.192.0/18 4134 -118.119.0.0/16 4134 -118.120.0.0/16 4134 -118.121.0.0/17 4134 -118.121.128.0/18 4134 -118.121.192.0/20 38283 -118.121.208.0/20 4134 -118.121.224.0/19 4134 -118.122.0.0/21 4134 -118.122.8.0/22 4134 -118.122.12.0/22 139220 -118.122.16.0/20 4134 -118.122.32.0/22 4134 -118.122.36.0/24 38283 -118.122.37.0/24 4134 -118.122.38.0/23 4134 -118.122.40.0/21 4134 -118.122.48.0/20 4134 -118.122.64.0/21 4134 -118.122.72.0/22 38283 -118.122.76.0/23 38283 -118.122.78.0/24 38283 -118.122.79.0/24 4134 -118.122.80.0/20 4134 -118.122.96.0/19 4134 -118.122.128.0/20 4134 -118.122.144.0/23 4134 -118.122.146.0/24 4134 -118.122.147.0/24 38283 -118.122.148.0/24 38283 -118.122.149.0/24 4134 -118.122.150.0/23 4134 -118.122.152.0/21 4134 -118.122.160.0/19 4134 -118.122.192.0/18 4134 -118.123.0.0/20 4134 -118.123.16.0/22 4134 -118.123.20.0/23 4134 -118.123.22.0/24 38283 -118.123.23.0/24 4134 -118.123.24.0/21 4134 -118.123.32.0/19 4134 -118.123.64.0/19 4134 -118.123.96.0/21 38283 -118.123.104.0/22 38283 -118.123.108.0/22 4134 -118.123.112.0/23 38283 -118.123.114.0/24 38283 -118.123.115.0/24 4134 -118.123.116.0/23 38283 -118.123.118.0/24 38283 -118.123.119.0/24 4134 -118.123.120.0/21 4134 -118.123.128.0/19 4134 -118.123.160.0/22 4134 -118.123.164.0/23 38283 -118.123.166.0/23 58519 -118.123.168.0/22 58519 -118.123.172.0/22 4134 -118.123.176.0/24 4134 -118.123.177.0/24 38283 -118.123.178.0/23 4134 -118.123.180.0/22 4134 -118.123.184.0/21 4134 -118.123.192.0/22 4134 -118.123.196.0/22 38283 -118.123.200.0/21 38283 -118.123.208.0/20 38283 -118.123.224.0/23 4134 -118.123.226.0/23 38283 -118.123.228.0/24 4134 -118.123.229.0/24 38283 -118.123.230.0/23 38283 -118.123.232.0/21 38283 -118.123.240.0/20 38283 -118.124.0.0/16 4134 -118.125.0.0/17 4134 -118.125.128.0/18 4134 -118.125.192.0/19 4134 -118.125.224.0/20 4134 -118.125.240.0/23 4134 -118.125.242.0/24 4134 -118.125.243.0/24 38283 -118.125.244.0/22 4134 -118.125.248.0/21 4134 -118.126.0.0/24 56001 -118.126.1.0/24 4812 -118.126.2.0/23 4812 -118.126.4.0/23 4812 -118.126.6.0/23 56001 -118.126.8.0/23 4812 -118.126.10.0/24 4812 -118.126.12.0/22 4812 -118.126.16.0/23 4812 -118.126.18.0/24 4812 -118.126.32.0/19 45061 -118.126.64.0/18 45090 -118.126.128.0/17 23724 -118.127.0.0/22 45671 -118.127.4.0/23 45671 -118.127.7.0/24 45671 -118.127.8.0/21 45671 -118.127.16.0/20 45671 -118.127.32.0/21 45671 -118.127.40.0/22 45671 -118.127.44.0/24 45671 -118.127.48.0/21 45671 -118.127.57.0/24 45671 -118.127.59.0/24 45671 -118.127.60.0/22 45671 -118.127.64.0/19 18117 -118.127.96.0/19 38790 -118.127.160.0/19 38829 -118.127.192.0/18 17839 -118.128.0.0/22 3786 -118.128.4.0/24 9946 -118.128.5.0/24 3786 -118.128.6.0/23 3786 -118.128.8.0/21 3786 -118.128.16.0/20 3786 -118.128.32.0/19 3786 -118.128.64.0/18 3786 -118.128.128.0/18 3786 -118.128.192.0/19 3786 -118.128.224.0/20 3786 -118.128.240.0/24 3786 -118.128.241.0/24 10159 -118.128.242.0/23 10159 -118.128.244.0/22 3786 -118.128.248.0/21 3786 -118.129.0.0/17 3786 -118.129.128.0/24 63199 -118.129.129.0/24 3786 -118.129.130.0/23 3786 -118.129.132.0/22 3786 -118.129.136.0/24 3786 -118.129.137.0/24 10179 -118.129.138.0/23 3786 -118.129.140.0/22 3786 -118.129.144.0/24 3786 -118.129.145.0/24 38661 -118.129.146.0/24 3786 -118.129.147.0/24 38661 -118.129.148.0/22 38661 -118.129.152.0/21 38661 -118.129.160.0/24 38661 -118.129.161.0/24 3786 -118.129.162.0/23 3786 -118.129.164.0/24 38661 -118.129.165.0/24 3786 -118.129.166.0/23 3786 -118.129.168.0/21 3786 -118.129.176.0/20 3786 -118.129.192.0/24 63199 -118.129.193.0/24 3786 -118.129.194.0/23 3786 -118.129.196.0/22 3786 -118.129.200.0/21 3786 -118.129.208.0/24 9982 -118.129.209.0/24 3786 -118.129.210.0/24 9571 -118.129.211.0/24 3786 -118.129.212.0/22 3786 -118.129.216.0/21 3786 -118.129.224.0/24 63199 -118.129.225.0/24 3786 -118.129.226.0/23 3786 -118.129.228.0/22 3786 -118.129.232.0/21 3786 -118.129.240.0/20 3786 -118.130.0.0/17 3786 -118.130.128.0/23 63199 -118.130.130.0/23 3786 -118.130.132.0/22 3786 -118.130.136.0/21 3786 -118.130.144.0/24 3786 -118.130.145.0/24 45966 -118.130.146.0/23 3786 -118.130.148.0/22 3786 -118.130.152.0/21 3786 -118.130.160.0/19 3786 -118.130.192.0/18 3786 -118.131.0.0/16 3786 -118.132.0.0/14 9812 -118.136.0.0/15 23700 -118.138.0.0/16 56132 -118.139.0.0/17 56132 -118.139.128.0/19 38280 -118.139.160.0/19 26496 -118.139.192.0/18 9770 -118.140.0.0/15 9304 -118.142.0.0/16 9304 -118.143.0.0/24 9304 -118.143.1.0/24 38802 -118.143.2.0/23 9304 -118.143.4.0/22 9304 -118.143.8.0/21 9304 -118.143.16.0/21 9304 -118.143.24.0/24 132084 -118.143.25.0/24 9304 -118.143.26.0/23 9304 -118.143.28.0/22 9304 -118.143.32.0/22 9304 -118.143.36.0/24 133929 -118.143.37.0/24 9304 -118.143.38.0/23 9304 -118.143.40.0/21 9304 -118.143.48.0/21 9304 -118.143.56.0/22 9304 -118.143.60.0/24 24462 -118.143.61.0/24 9304 -118.143.62.0/23 9304 -118.143.64.0/18 9304 -118.143.128.0/21 9304 -118.143.136.0/24 9304 -118.143.137.0/24 24462 -118.143.138.0/24 24462 -118.143.139.0/24 9304 -118.143.140.0/22 9304 -118.143.144.0/20 9304 -118.143.160.0/19 9304 -118.143.192.0/22 9304 -118.143.196.0/23 9304 -118.143.198.0/23 63673 -118.143.200.0/22 9304 -118.143.204.0/23 137941 -118.143.206.0/24 9304 -118.143.207.0/24 55355 -118.143.208.0/24 9304 -118.143.209.0/24 55355 -118.143.210.0/23 9304 -118.143.212.0/23 9304 -118.143.214.0/24 9304 -118.143.215.0/24 63673 -118.143.216.0/21 9304 -118.143.224.0/19 9304 -118.144.0.0/18 24138 -118.144.64.0/19 17964 -118.144.96.0/19 4808 -118.144.128.0/20 4808 -118.144.144.0/21 4808 -118.144.152.0/23 4808 -118.144.154.0/24 4808 -118.144.155.0/24 24138 -118.144.156.0/22 4808 -118.144.160.0/19 24138 -118.144.192.0/18 4808 -118.145.0.0/16 17964 -118.148.0.0/20 38793 -118.148.16.0/20 23655 -118.148.32.0/19 38793 -118.148.64.0/18 23655 -118.148.128.0/17 38793 -118.149.0.0/20 38793 -118.149.16.0/20 23655 -118.149.32.0/19 38793 -118.149.64.0/18 23655 -118.149.128.0/17 38793 -118.150.0.0/17 18419 -118.150.128.0/18 18419 -118.150.192.0/19 18419 -118.150.224.0/21 9922 -118.150.232.0/21 18419 -118.150.240.0/20 9922 -118.151.0.0/17 2497 -118.151.128.0/18 2497 -118.151.192.0/20 10010 -118.151.208.0/22 131210 -118.151.212.0/22 46031 -118.151.216.0/24 55419 -118.151.218.0/24 55527 -118.151.220.0/23 46032 -118.151.222.0/24 46032 -118.151.223.0/24 138132 -118.151.224.0/19 23816 -118.152.0.0/13 2516 -118.160.0.0/13 3462 -118.168.0.0/14 3462 -118.172.0.0/20 23969 -118.172.16.0/22 23969 -118.172.20.0/23 23969 -118.172.22.0/24 24429 -118.172.23.0/24 23969 -118.172.24.0/21 23969 -118.172.32.0/19 23969 -118.172.64.0/18 23969 -118.172.128.0/17 23969 -118.173.0.0/16 23969 -118.174.0.0/21 131293 -118.174.8.0/24 134166 -118.174.9.0/24 23969 -118.174.10.0/23 134166 -118.174.12.0/22 131293 -118.174.16.0/21 131293 -118.174.24.0/22 23969 -118.174.28.0/22 131293 -118.174.32.0/20 131293 -118.174.48.0/20 23969 -118.174.64.0/18 23969 -118.174.128.0/20 131293 -118.174.144.0/21 131293 -118.174.152.0/21 23969 -118.174.160.0/19 23969 -118.174.192.0/20 23969 -118.174.208.0/21 23969 -118.174.216.0/22 23969 -118.174.220.0/23 23969 -118.174.222.0/23 131293 -118.174.224.0/20 23969 -118.174.240.0/21 23969 -118.174.248.0/23 23969 -118.174.250.0/24 23969 -118.174.251.0/24 131293 -118.174.252.0/22 23969 -118.175.0.0/24 131293 -118.175.1.0/24 134166 -118.175.2.0/23 131293 -118.175.4.0/22 131293 -118.175.8.0/21 131293 -118.175.16.0/21 131293 -118.175.24.0/22 131293 -118.175.28.0/24 134166 -118.175.29.0/24 131293 -118.175.30.0/23 131293 -118.175.32.0/21 23969 -118.175.40.0/22 23969 -118.175.44.0/23 131293 -118.175.46.0/24 131293 -118.175.47.0/24 23969 -118.175.48.0/20 23969 -118.175.64.0/19 23969 -118.175.96.0/22 131293 -118.175.100.0/24 131293 -118.175.101.0/24 23969 -118.175.102.0/23 131293 -118.175.104.0/21 131293 -118.175.112.0/21 131293 -118.175.120.0/22 131293 -118.175.124.0/23 131293 -118.175.126.0/24 23969 -118.175.127.0/24 131293 -118.175.128.0/23 131293 -118.175.130.0/23 23969 -118.175.132.0/23 23969 -118.175.134.0/24 23969 -118.175.135.0/24 131293 -118.175.136.0/23 131293 -118.175.138.0/24 23969 -118.175.139.0/24 131293 -118.175.140.0/22 131293 -118.175.144.0/22 131293 -118.175.148.0/24 131293 -118.175.149.0/24 23969 -118.175.150.0/23 23969 -118.175.152.0/21 23969 -118.175.160.0/20 23969 -118.175.176.0/24 23969 -118.175.177.0/24 131293 -118.175.178.0/23 131293 -118.175.180.0/22 131293 -118.175.184.0/21 131293 -118.175.192.0/21 131293 -118.175.200.0/24 131293 -118.175.201.0/24 23969 -118.175.202.0/23 23969 -118.175.204.0/22 23969 -118.175.208.0/23 23969 -118.175.210.0/23 131293 -118.175.212.0/24 23969 -118.175.213.0/24 131293 -118.175.214.0/24 23969 -118.175.215.0/24 131293 -118.175.216.0/21 23969 -118.175.224.0/19 23969 -118.176.0.0/17 10036 -118.176.128.0/19 10036 -118.176.160.0/23 7562 -118.176.162.0/23 10036 -118.176.164.0/22 10036 -118.176.168.0/21 10036 -118.176.176.0/22 10036 -118.176.184.0/21 10036 -118.176.192.0/18 10036 -118.177.0.0/16 9595 -118.178.0.0/16 37963 -118.179.0.0/21 58656 -118.179.9.0/24 58656 -118.179.10.0/23 58656 -118.179.12.0/24 58656 -118.179.13.0/24 63965 -118.179.14.0/24 58656 -118.179.18.0/24 58656 -118.179.25.0/24 58656 -118.179.27.0/24 58656 -118.179.28.0/24 58656 -118.179.32.0/19 23956 -118.179.64.0/18 23956 -118.179.128.0/23 23956 -118.179.130.0/23 58581 -118.179.132.0/22 23956 -118.179.136.0/23 23956 -118.179.138.0/23 132604 -118.179.140.0/24 23956 -118.179.141.0/24 132801 -118.179.142.0/24 133083 -118.179.143.0/24 23956 -118.179.144.0/22 23956 -118.179.148.0/23 23956 -118.179.150.0/24 55531 -118.179.151.0/24 23956 -118.179.152.0/21 23956 -118.179.160.0/19 23956 -118.179.192.0/20 23956 -118.179.208.0/21 23956 -118.179.216.0/24 23956 -118.179.217.0/24 55531 -118.179.218.0/24 55531 -118.179.219.0/24 23956 -118.179.220.0/22 23956 -118.179.224.0/19 56055 -118.180.0.0/14 4134 -118.184.5.0/24 137443 -118.184.6.0/24 58879 -118.184.7.0/24 137443 -118.184.12.0/24 137443 -118.184.14.0/23 137443 -118.184.17.0/24 137443 -118.184.18.0/24 137443 -118.184.20.0/24 55994 -118.184.23.0/24 137443 -118.184.25.0/24 137443 -118.184.26.0/23 137443 -118.184.28.0/23 137443 -118.184.32.0/24 137443 -118.184.37.0/24 137443 -118.184.38.0/24 137443 -118.184.41.0/24 137443 -118.184.44.0/24 137443 -118.184.46.0/23 137443 -118.184.53.0/24 137443 -118.184.54.0/23 137443 -118.184.57.0/24 137443 -118.184.58.0/24 137443 -118.184.60.0/22 137443 -118.184.68.0/22 137443 -118.184.72.0/23 58879 -118.184.75.0/24 58879 -118.184.79.0/24 137443 -118.184.80.0/24 137443 -118.184.88.0/23 58879 -118.184.90.0/24 58879 -118.184.91.0/24 137443 -118.184.95.0/24 137443 -118.184.97.0/24 137443 -118.184.104.0/24 137443 -118.184.112.0/24 58879 -118.184.128.0/21 137702 -118.184.136.0/21 138950 -118.184.144.0/21 134769 -118.184.152.0/21 23650 -118.184.160.0/20 23650 -118.184.176.0/21 23650 -118.184.184.0/21 138950 -118.184.192.0/21 134769 -118.184.200.0/21 4837 -118.184.208.0/20 23650 -118.184.224.0/20 18257 -118.184.240.0/20 23650 -118.185.0.0/19 55410 -118.185.32.0/20 55410 -118.185.48.0/21 55410 -118.185.56.0/22 55410 -118.185.60.0/24 38266 -118.185.61.0/24 55410 -118.185.62.0/23 55410 -118.185.64.0/18 55410 -118.185.128.0/21 55410 -118.185.136.0/23 24558 -118.185.138.0/23 55410 -118.185.140.0/23 24558 -118.185.142.0/24 24558 -118.185.143.0/24 55410 -118.185.144.0/20 55410 -118.185.160.0/23 55410 -118.185.162.0/23 24558 -118.185.164.0/24 55410 -118.185.165.0/24 24558 -118.185.166.0/23 55410 -118.185.168.0/21 55410 -118.185.176.0/20 55410 -118.185.192.0/18 55410 -118.186.0.0/19 4847 -118.186.32.0/24 23724 -118.186.33.0/24 4134 -118.186.34.0/23 23724 -118.186.36.0/22 23724 -118.186.40.0/21 4134 -118.186.48.0/21 4134 -118.186.56.0/21 23724 -118.186.64.0/21 4808 -118.186.72.0/21 4134 -118.186.80.0/21 23724 -118.186.88.0/21 4847 -118.186.96.0/20 4847 -118.186.112.0/21 4847 -118.186.120.0/21 4134 -118.186.128.0/19 45058 -118.186.160.0/19 4134 -118.186.192.0/19 4808 -118.186.224.0/21 4808 -118.186.232.0/21 4134 -118.186.240.0/21 4808 -118.186.248.0/21 4134 -118.187.0.0/19 4847 -118.187.32.0/21 4847 -118.187.40.0/21 56048 -118.187.48.0/20 4847 -118.187.64.0/19 4847 -118.187.96.0/19 4837 -118.187.128.0/18 4837 -118.187.192.0/19 4837 -118.187.224.0/20 4837 -118.187.240.0/21 4837 -118.187.248.0/22 4837 -118.187.252.0/23 4837 -118.187.254.0/23 45058 -118.188.18.0/23 4847 -118.188.20.0/22 4847 -118.188.24.0/23 4847 -118.189.0.0/19 17547 -118.189.32.0/23 17547 -118.189.34.0/24 4773 -118.189.35.0/24 17547 -118.189.36.0/22 17547 -118.189.40.0/22 17547 -118.189.44.0/22 4773 -118.189.48.0/20 17547 -118.189.64.0/21 17547 -118.189.72.0/22 17547 -118.189.76.0/23 17547 -118.189.78.0/24 4773 -118.189.79.0/24 17547 -118.189.80.0/23 17547 -118.189.82.0/24 4773 -118.189.83.0/24 17547 -118.189.84.0/22 17547 -118.189.88.0/21 17547 -118.189.96.0/19 17547 -118.189.128.0/19 17547 -118.189.160.0/20 17547 -118.189.176.0/20 4773 -118.189.192.0/20 4773 -118.189.208.0/21 4773 -118.189.216.0/21 17547 -118.189.224.0/19 17547 -118.190.0.0/16 37963 -118.191.0.0/22 138950 -118.191.4.0/22 4837 -118.191.8.0/22 4837 -118.191.12.0/24 4837 -118.191.24.0/21 138950 -118.191.48.0/20 138950 -118.191.128.0/22 59045 -118.191.135.0/24 59045 -118.191.152.0/24 59045 -118.191.192.0/23 23724 -118.191.208.0/24 59045 -118.191.216.0/24 59045 -118.191.223.0/24 59045 -118.191.224.0/24 59045 -118.191.240.0/24 59045 -118.191.248.0/21 56048 -118.192.0.0/17 4847 -118.192.128.0/23 63691 -118.192.130.0/23 56292 -118.192.132.0/22 63691 -118.192.136.0/21 56292 -118.192.144.0/20 56292 -118.192.160.0/22 56292 -118.192.164.0/23 56292 -118.192.166.0/23 63691 -118.192.168.0/22 63691 -118.192.172.0/22 56292 -118.192.176.0/20 56292 -118.192.192.0/21 56292 -118.192.200.0/22 56292 -118.192.204.0/22 63691 -118.192.208.0/20 56292 -118.192.224.0/19 56292 -118.193.4.0/22 133012 -118.193.16.0/20 63199 -118.193.48.0/21 133115 -118.193.78.0/23 45753 -118.193.80.0/20 63199 -118.193.96.0/19 23724 -118.193.128.0/23 137443 -118.193.135.0/24 137443 -118.193.138.0/23 137443 -118.193.140.0/24 137443 -118.193.144.0/23 137443 -118.193.149.0/24 137443 -118.193.150.0/23 137443 -118.193.159.0/24 137443 -118.193.161.0/24 137443 -118.193.162.0/23 137443 -118.193.169.0/24 137443 -118.193.170.0/24 137443 -118.193.173.0/24 137443 -118.193.175.0/24 137443 -118.193.180.0/24 137443 -118.193.182.0/23 137443 -118.193.189.0/24 137443 -118.193.193.0/24 137443 -118.193.201.0/24 137443 -118.193.204.0/24 137443 -118.193.210.0/24 137443 -118.193.212.0/24 137443 -118.193.216.0/24 137443 -118.193.218.0/23 137443 -118.193.226.0/23 137443 -118.193.228.0/24 137443 -118.193.234.0/23 137443 -118.193.236.0/24 137443 -118.193.238.0/23 137443 -118.193.245.0/24 137443 -118.193.246.0/24 137443 -118.193.249.0/24 137443 -118.193.250.0/24 137443 -118.193.254.0/24 137443 -118.194.32.0/19 4808 -118.194.128.0/22 23724 -118.194.132.0/23 23724 -118.194.134.0/23 4808 -118.194.160.0/21 56282 -118.194.168.0/22 56282 -118.194.172.0/24 56282 -118.194.174.0/23 56282 -118.194.192.0/19 59011 -118.194.224.0/24 134700 -118.194.225.0/24 4058 -118.194.226.0/24 134700 -118.194.227.0/24 45932 -118.194.240.0/21 4808 -118.196.0.0/15 17964 -118.198.0.0/15 4808 -118.200.0.0/16 9506 -118.201.0.0/20 3758 -118.201.16.0/20 7700 -118.201.32.0/19 3758 -118.201.64.0/18 3758 -118.201.128.0/18 3758 -118.201.192.0/19 3758 -118.201.224.0/19 9506 -118.202.0.0/15 4538 -118.205.0.0/16 17964 -118.206.0.0/20 4837 -118.206.16.0/22 4837 -118.206.20.0/22 4847 -118.206.24.0/21 4847 -118.206.32.0/19 4847 -118.206.64.0/18 4847 -118.206.128.0/20 4847 -118.206.144.0/22 4847 -118.206.148.0/22 4837 -118.206.152.0/21 4837 -118.206.160.0/19 4837 -118.206.192.0/18 9395 -118.207.0.0/16 4808 -118.208.0.0/19 7545 -118.208.32.0/19 4739 -118.208.64.0/18 7545 -118.208.128.0/19 7545 -118.208.160.0/19 4739 -118.208.192.0/18 4739 -118.209.0.0/19 7545 -118.209.32.0/20 4739 -118.209.48.0/20 7545 -118.209.64.0/18 4739 -118.209.128.0/19 7545 -118.209.160.0/19 4739 -118.209.192.0/18 4739 -118.210.0.0/18 7545 -118.210.64.0/19 7545 -118.210.96.0/19 4739 -118.210.128.0/18 7545 -118.210.192.0/19 7545 -118.210.224.0/19 4739 -118.211.0.0/19 4739 -118.211.32.0/19 7545 -118.211.64.0/19 7545 -118.211.96.0/19 4739 -118.211.128.0/18 7545 -118.211.192.0/18 4739 -118.212.0.0/16 4837 -118.213.0.0/16 4134 -118.214.0.0/24 3786 -118.214.1.0/24 20940 -118.214.2.0/24 7470 -118.214.3.0/24 4651 -118.214.4.0/24 38040 -118.214.5.0/24 45629 -118.214.6.0/24 9299 -118.214.7.0/24 4775 -118.214.8.0/21 24319 -118.214.16.0/20 4651 -118.214.32.0/20 18101 -118.214.48.0/20 9329 -118.214.64.0/20 16625 -118.214.80.0/20 24319 -118.214.96.0/20 20940 -118.214.112.0/20 24319 -118.214.128.0/20 18101 -118.214.144.0/20 24319 -118.214.160.0/24 20940 -118.214.161.0/24 17511 -118.214.162.0/23 20940 -118.214.164.0/24 7545 -118.214.165.0/24 20940 -118.214.166.0/24 24319 -118.214.167.0/24 20940 -118.214.168.0/23 24319 -118.214.170.0/23 20940 -118.214.172.0/22 20940 -118.214.176.0/22 20940 -118.214.180.0/24 4657 -118.214.181.0/24 20940 -118.214.182.0/23 20940 -118.214.184.0/21 20940 -118.214.192.0/20 20940 -118.214.208.0/20 24319 -118.214.224.0/20 24319 -118.214.240.0/20 16625 -118.215.0.0/21 24319 -118.215.8.0/21 16625 -118.215.16.0/20 24319 -118.215.32.0/21 20940 -118.215.40.0/21 24319 -118.215.48.0/21 24319 -118.215.56.0/21 16625 -118.215.64.0/21 16625 -118.215.72.0/21 9299 -118.215.80.0/21 4657 -118.215.88.0/21 16625 -118.215.96.0/21 4788 -118.215.104.0/21 24319 -118.215.112.0/21 16625 -118.215.120.0/21 7470 -118.215.128.0/20 24319 -118.215.144.0/21 24560 -118.215.152.0/21 9498 -118.215.160.0/20 24319 -118.215.176.0/20 16625 -118.215.192.0/22 4134 -118.215.196.0/24 4134 -118.215.197.0/24 134771 -118.215.198.0/23 134771 -118.215.200.0/23 134771 -118.215.202.0/23 58466 -118.215.204.0/23 58466 -118.215.206.0/24 58466 -118.215.207.0/24 4134 -118.215.208.0/22 4134 -118.215.212.0/22 4816 -118.215.216.0/24 4816 -118.215.217.0/24 4134 -118.215.218.0/23 4134 -118.215.220.0/22 4134 -118.216.0.0/16 9318 -118.217.0.0/20 9318 -118.217.16.0/23 55632 -118.217.18.0/23 9318 -118.217.20.0/22 9318 -118.217.24.0/21 9318 -118.217.32.0/19 9318 -118.217.64.0/18 9318 -118.217.128.0/17 9318 -118.218.0.0/17 9318 -118.218.128.0/18 9318 -118.218.192.0/23 9318 -118.218.194.0/24 10167 -118.218.195.0/24 9318 -118.218.196.0/22 9318 -118.218.200.0/21 9318 -118.218.208.0/20 9318 -118.218.224.0/19 9318 -118.219.0.0/16 9318 -118.220.0.0/19 9318 -118.220.32.0/21 9318 -118.220.40.0/23 9318 -118.220.42.0/24 9647 -118.220.43.0/24 9318 -118.220.44.0/22 9318 -118.220.48.0/20 9318 -118.220.64.0/22 9318 -118.220.68.0/23 9318 -118.220.70.0/24 45368 -118.220.71.0/24 9318 -118.220.72.0/21 9318 -118.220.80.0/20 9318 -118.220.96.0/19 9318 -118.220.128.0/17 9318 -118.221.0.0/17 9318 -118.221.128.0/18 9318 -118.221.192.0/22 9318 -118.221.196.0/23 9318 -118.221.198.0/23 23579 -118.221.200.0/21 9318 -118.221.208.0/20 9318 -118.221.224.0/19 9318 -118.222.0.0/15 9318 -118.228.0.0/17 4538 -118.228.128.0/20 4538 -118.228.144.0/21 4538 -118.228.152.0/22 45587 -118.228.156.0/22 4538 -118.228.160.0/19 4538 -118.228.192.0/18 4538 -118.229.0.0/16 4538 -118.230.0.0/16 4538 -118.231.0.0/16 9674 -118.232.0.0/18 9924 -118.232.64.0/21 9924 -118.232.72.0/22 9924 -118.232.76.0/23 38841 -118.232.78.0/24 38841 -118.232.79.0/24 9924 -118.232.80.0/21 9924 -118.232.88.0/21 38841 -118.232.96.0/19 38841 -118.232.128.0/17 38841 -118.233.0.0/18 38841 -118.233.64.0/19 38841 -118.233.96.0/22 38841 -118.233.100.0/24 38841 -118.233.101.0/24 9924 -118.233.102.0/23 38841 -118.233.104.0/21 38841 -118.233.112.0/20 38841 -118.233.128.0/18 9924 -118.233.192.0/19 9924 -118.233.224.0/20 9924 -118.233.240.0/23 9924 -118.233.242.0/23 38841 -118.233.244.0/24 38841 -118.233.245.0/24 9924 -118.233.246.0/23 9924 -118.233.248.0/21 9924 -118.234.0.0/15 4766 -118.236.0.0/15 2527 -118.238.0.0/17 2527 -118.238.128.0/18 24278 -118.238.192.0/18 2527 -118.239.0.0/16 4134 -118.240.0.0/15 2527 -118.242.0.0/22 4812 -118.242.16.0/22 4812 -118.242.24.0/23 38363 -118.242.26.0/23 4812 -118.242.32.0/21 38363 -118.242.40.0/22 38363 -118.242.96.0/23 38363 -118.242.208.0/24 38363 -118.242.236.0/22 38379 -118.242.240.0/23 38363 -118.243.0.0/16 4685 -118.244.0.0/17 4808 -118.244.128.0/18 4847 -118.244.192.0/20 4847 -118.244.208.0/21 17964 -118.244.216.0/21 4847 -118.244.224.0/19 4847 -118.246.0.0/16 9395 -118.247.0.0/16 4808 -118.248.0.0/13 4134 -119.0.0.0/15 4134 -119.2.0.0/19 23724 -119.2.32.0/24 38823 -119.2.33.0/24 45474 -119.2.34.0/23 38823 -119.2.36.0/24 38823 -119.2.37.0/24 38325 -119.2.39.0/24 38325 -119.2.40.0/21 38524 -119.2.48.0/21 55666 -119.2.56.0/21 56284 -119.2.64.0/19 24201 -119.2.96.0/19 18024 -119.2.128.0/22 58834 -119.2.132.0/24 58834 -119.3.0.0/16 55990 -119.4.0.0/14 4837 -119.8.0.0/21 136907 -119.8.32.0/19 136907 -119.9.0.0/18 58683 -119.9.64.0/18 45187 -119.9.128.0/18 58683 -119.10.112.0/21 4847 -119.10.128.0/21 1221 -119.10.136.0/21 9268 -119.10.148.0/23 45816 -119.10.150.0/24 56103 -119.10.151.0/24 45816 -119.10.152.0/22 45816 -119.10.156.0/23 45816 -119.10.158.0/24 45816 -119.10.159.0/24 55480 -119.10.160.0/21 17940 -119.10.168.0/21 38592 -119.10.176.0/21 24530 -119.10.184.0/21 17698 -119.10.192.0/18 2497 -119.11.0.0/17 133612 -119.11.128.0/19 10217 -119.11.160.0/21 10217 -119.11.168.0/21 27435 -119.11.176.0/23 10217 -119.11.178.0/23 3949 -119.11.180.0/22 10217 -119.11.184.0/21 10217 -119.11.192.0/18 10217 -119.12.0.0/15 9723 -119.14.0.0/16 9416 -119.15.2.0/23 4768 -119.15.4.0/22 4768 -119.15.12.0/23 4768 -119.15.32.0/19 7687 -119.15.64.0/24 23854 -119.15.65.0/24 132912 -119.15.67.0/24 133599 -119.15.68.0/23 38831 -119.15.70.0/23 23854 -119.15.72.0/21 17829 -119.15.80.0/24 24492 -119.15.81.0/24 133378 -119.15.82.0/23 133378 -119.15.84.0/22 133378 -119.15.88.0/21 133378 -119.15.96.0/20 38826 -119.15.112.0/21 55393 -119.15.135.0/24 45306 -119.15.136.0/21 4812 -119.15.144.0/21 18097 -119.15.152.0/21 45176 -119.15.160.0/19 24173 -119.15.192.0/21 18046 -119.15.208.0/21 18046 -119.15.224.0/19 18046 -119.17.0.0/19 9781 -119.17.32.0/19 45780 -119.17.64.0/18 23563 -119.17.128.0/19 4764 -119.17.160.0/19 9268 -119.17.192.0/18 24173 -119.18.0.0/19 4764 -119.18.32.0/21 4764 -119.18.40.0/21 9268 -119.18.48.0/20 394695 -119.18.64.0/18 9770 -119.18.128.0/20 24175 -119.18.144.0/21 45326 -119.18.152.0/21 55685 -119.18.160.0/20 17534 -119.18.176.0/21 17534 -119.18.184.0/21 38726 -119.18.192.0/20 23724 -119.18.208.0/21 38380 -119.18.216.0/21 23661 -119.18.224.0/22 38379 -119.18.229.0/24 4515 -119.18.230.0/24 4515 -119.18.231.0/24 38379 -119.18.232.0/24 38379 -119.18.234.0/24 38379 -119.18.235.0/24 4515 -119.18.236.0/23 38379 -119.18.239.0/24 38379 -119.19.224.0/24 38370 -119.20.0.0/15 4134 -119.23.0.0/16 37963 -119.24.0.0/15 9617 -119.26.0.0/16 9617 -119.27.0.0/19 17819 -119.27.32.0/20 17819 -119.27.50.0/23 17819 -119.27.52.0/22 17819 -119.27.56.0/22 17819 -119.27.60.0/23 17819 -119.27.64.0/18 4837 -119.27.149.0/24 133955 -119.27.160.0/19 45090 -119.28.0.0/17 132203 -119.28.128.0/19 132203 -119.28.160.0/21 132203 -119.28.168.0/22 132203 -119.28.172.0/24 132203 -119.28.173.0/24 198949 -119.28.174.0/24 198949 -119.28.175.0/24 132203 -119.28.176.0/20 132203 -119.28.192.0/18 132203 -119.29.0.0/20 45090 -119.29.16.0/21 45090 -119.29.24.0/22 45090 -119.29.28.0/24 45090 -119.29.29.0/24 132203 -119.29.30.0/23 45090 -119.29.32.0/19 45090 -119.29.64.0/18 45090 -119.29.128.0/17 45090 -119.30.0.0/21 45177 -119.30.8.0/22 18260 -119.30.16.0/20 18411 -119.30.32.0/20 24389 -119.30.80.0/22 132788 -119.30.84.0/23 132788 -119.30.86.0/23 23966 -119.30.88.0/21 132788 -119.30.100.0/24 23966 -119.30.105.0/24 58470 -119.30.106.0/23 23966 -119.30.112.0/22 23966 -119.30.124.0/22 23966 -119.30.128.0/18 38086 -119.30.192.0/18 4704 -119.31.0.0/18 38444 -119.31.64.0/19 38444 -119.31.96.0/21 38444 -119.31.104.0/24 45781 -119.31.105.0/24 38444 -119.31.106.0/24 45781 -119.31.107.0/24 38444 -119.31.108.0/24 134162 -119.31.109.0/24 38444 -119.31.110.0/23 38444 -119.31.112.0/22 38444 -119.31.116.0/23 38444 -119.31.118.0/24 38444 -119.31.119.0/24 45781 -119.31.120.0/21 38444 -119.31.128.0/19 4704 -119.31.160.0/24 17307 -119.31.161.0/24 19807 -119.31.162.0/23 17307 -119.31.164.0/24 17307 -119.31.165.0/24 19809 -119.31.166.0/24 18488 -119.31.167.0/24 19807 -119.31.168.0/24 19807 -119.31.169.0/24 24118 -119.31.170.0/24 17307 -119.31.171.0/24 24216 -119.31.172.0/24 17307 -119.31.173.0/24 38304 -119.31.174.0/24 19809 -119.31.175.0/24 17307 -119.31.176.0/20 17408 -119.31.192.0/19 24137 -119.31.224.0/21 38880 -119.31.232.0/21 58621 -119.31.240.0/21 23553 -119.31.252.0/23 36408 -119.32.0.0/14 17622 -119.36.0.0/16 4837 -119.37.0.0/23 4812 -119.37.2.0/24 4812 -119.37.12.0/24 4812 -119.37.192.0/21 4134 -119.38.0.0/21 4837 -119.38.128.0/24 135373 -119.38.129.0/24 38372 -119.38.130.0/23 38372 -119.38.132.0/22 38372 -119.38.136.0/21 38372 -119.38.144.0/20 38372 -119.38.160.0/19 38372 -119.38.192.0/20 38367 -119.38.208.0/20 37963 -119.39.0.0/16 4837 -119.40.0.0/19 4837 -119.40.32.0/21 4847 -119.40.48.0/21 4847 -119.40.64.0/20 38378 -119.40.80.0/20 24122 -119.40.96.0/22 10109 -119.40.100.0/24 10109 -119.40.102.0/23 10109 -119.40.104.0/21 17907 -119.40.112.0/20 38868 -119.40.128.0/17 17816 -119.41.0.0/16 4134 -119.42.0.0/19 17816 -119.42.32.0/22 132825 -119.42.36.0/22 203098 -119.42.44.0/22 132006 -119.42.51.0/24 132829 -119.42.56.0/22 132116 -119.42.60.0/22 7979 -119.42.64.0/24 131090 -119.42.67.0/24 131090 -119.42.68.0/22 131090 -119.42.72.0/23 131090 -119.42.74.0/24 131090 -119.42.78.0/23 131090 -119.42.80.0/22 131090 -119.42.84.0/24 131090 -119.42.86.0/24 131090 -119.42.88.0/22 131090 -119.42.92.0/24 131090 -119.42.94.0/24 131090 -119.42.96.0/23 131090 -119.42.99.0/24 131090 -119.42.100.0/22 131090 -119.42.104.0/22 131090 -119.42.108.0/23 131090 -119.42.110.0/24 131090 -119.42.112.0/21 131090 -119.42.120.0/22 131090 -119.42.124.0/23 131090 -119.42.126.0/24 131090 -119.42.136.0/21 38375 -119.42.144.0/21 45753 -119.42.152.0/21 45235 -119.42.160.0/19 9712 -119.42.224.0/19 37963 -119.43.200.0/22 17466 -119.44.0.0/18 131562 -119.44.192.0/18 131562 -119.45.0.0/16 45090 -119.46.0.0/18 7470 -119.46.64.0/22 7470 -119.46.68.0/24 7470 -119.46.69.0/24 9287 -119.46.70.0/23 7470 -119.46.72.0/23 7470 -119.46.74.0/24 24042 -119.46.75.0/24 131162 -119.46.76.0/22 7470 -119.46.80.0/24 7470 -119.46.81.0/24 55451 -119.46.82.0/24 55451 -119.46.83.0/24 7470 -119.46.84.0/23 7470 -119.46.86.0/24 7470 -119.46.87.0/24 45806 -119.46.88.0/24 7470 -119.46.89.0/24 45806 -119.46.90.0/23 7470 -119.46.92.0/22 7470 -119.46.96.0/23 9287 -119.46.98.0/23 7470 -119.46.100.0/22 7470 -119.46.104.0/21 7470 -119.46.112.0/24 7470 -119.46.113.0/24 9287 -119.46.114.0/23 7470 -119.46.116.0/22 7470 -119.46.120.0/23 7470 -119.46.122.0/24 7470 -119.46.123.0/24 135670 -119.46.124.0/22 7470 -119.46.128.0/23 131460 -119.46.130.0/23 7470 -119.46.132.0/22 7470 -119.46.136.0/21 7470 -119.46.144.0/22 7470 -119.46.148.0/23 7470 -119.46.150.0/24 7470 -119.46.151.0/24 55498 -119.46.152.0/21 7470 -119.46.160.0/20 7470 -119.46.176.0/22 7470 -119.46.180.0/23 7470 -119.46.182.0/24 55932 -119.46.183.0/24 7470 -119.46.184.0/22 7470 -119.46.188.0/22 37992 -119.46.192.0/23 7470 -119.46.194.0/24 9287 -119.46.195.0/24 7470 -119.46.196.0/23 7470 -119.46.198.0/24 7470 -119.46.199.0/24 131460 -119.46.200.0/21 7470 -119.46.208.0/20 7470 -119.46.224.0/23 7470 -119.46.226.0/24 9287 -119.46.227.0/24 7470 -119.46.228.0/22 7470 -119.46.232.0/23 7470 -119.46.234.0/24 7470 -119.46.235.0/24 37992 -119.46.236.0/23 37992 -119.46.238.0/24 37992 -119.46.239.0/24 7470 -119.46.240.0/23 7470 -119.46.242.0/24 7470 -119.46.243.0/24 55844 -119.46.244.0/24 7470 -119.46.245.0/24 55868 -119.46.246.0/23 7470 -119.46.248.0/24 7470 -119.46.249.0/24 131460 -119.46.250.0/23 7470 -119.46.252.0/22 7470 -119.47.0.0/20 55385 -119.47.16.0/20 17682 -119.47.32.0/19 7679 -119.47.64.0/20 23629 -119.47.80.0/24 38186 -119.47.82.0/23 38186 -119.47.84.0/22 38186 -119.47.88.0/22 38527 -119.47.92.0/24 38527 -119.47.93.0/24 134655 -119.47.94.0/24 134655 -119.47.95.0/24 45305 -119.47.96.0/20 18129 -119.47.112.0/20 45459 -119.47.128.0/17 7679 -119.48.0.0/13 4837 -119.56.0.0/22 4773 -119.56.4.0/24 4773 -119.56.16.0/23 4773 -119.56.64.0/18 4773 -119.56.128.0/17 9981 -119.57.0.0/23 59050 -119.57.2.0/24 59050 -119.57.3.0/24 4837 -119.57.4.0/22 4837 -119.57.8.0/24 55461 -119.57.9.0/24 4837 -119.57.10.0/23 4837 -119.57.12.0/24 55461 -119.57.13.0/24 4837 -119.57.14.0/24 59050 -119.57.15.0/24 4837 -119.57.16.0/23 4837 -119.57.18.0/24 59050 -119.57.19.0/24 55461 -119.57.20.0/24 59050 -119.57.21.0/24 55461 -119.57.22.0/24 4837 -119.57.23.0/24 55461 -119.57.24.0/21 63691 -119.57.32.0/23 59050 -119.57.34.0/24 55461 -119.57.35.0/24 59050 -119.57.36.0/22 59050 -119.57.40.0/23 59050 -119.57.42.0/23 4837 -119.57.44.0/23 55461 -119.57.46.0/24 4837 -119.57.47.0/24 55461 -119.57.48.0/22 55461 -119.57.52.0/24 4837 -119.57.53.0/24 55461 -119.57.54.0/23 55461 -119.57.56.0/21 55461 -119.57.64.0/23 55461 -119.57.66.0/23 63691 -119.57.68.0/23 63691 -119.57.70.0/24 55461 -119.57.71.0/24 63691 -119.57.72.0/24 55461 -119.57.73.0/24 63691 -119.57.74.0/24 63691 -119.57.75.0/24 55461 -119.57.76.0/22 55461 -119.57.80.0/21 23724 -119.57.88.0/23 55461 -119.57.90.0/24 55461 -119.57.91.0/24 63691 -119.57.92.0/22 63691 -119.57.96.0/22 23724 -119.57.100.0/23 23724 -119.57.102.0/24 23724 -119.57.103.0/24 63691 -119.57.104.0/22 63691 -119.57.108.0/24 59050 -119.57.109.0/24 63691 -119.57.110.0/24 63691 -119.57.111.0/24 59050 -119.57.112.0/20 63691 -119.57.128.0/22 63691 -119.57.132.0/24 63691 -119.57.133.0/24 55461 -119.57.134.0/24 55461 -119.57.135.0/24 63691 -119.57.136.0/22 59050 -119.57.140.0/24 59050 -119.57.141.0/24 55461 -119.57.142.0/24 55461 -119.57.143.0/24 59050 -119.57.144.0/20 59050 -119.57.160.0/23 55461 -119.57.162.0/24 55461 -119.57.163.0/24 63691 -119.57.164.0/23 55461 -119.57.166.0/24 59050 -119.57.167.0/24 55461 -119.57.168.0/23 63691 -119.57.170.0/23 55461 -119.57.172.0/22 55461 -119.57.176.0/22 23724 -119.57.180.0/22 63691 -119.57.184.0/22 63691 -119.57.188.0/23 23724 -119.57.190.0/23 63691 -119.57.192.0/19 23724 -119.57.224.0/20 23724 -119.57.240.0/23 23724 -119.57.242.0/23 55461 -119.57.244.0/23 55461 -119.57.246.0/24 23724 -119.57.247.0/24 59050 -119.57.248.0/22 59050 -119.57.252.0/24 23724 -119.57.253.0/24 59050 -119.57.254.0/24 55461 -119.57.255.0/24 23724 -119.59.64.0/21 9999 -119.59.72.0/21 24246 -119.59.80.0/23 138322 -119.59.82.0/23 38742 -119.59.84.0/22 38742 -119.59.88.0/21 9621 -119.59.96.0/19 56067 -119.59.128.0/18 17816 -119.60.0.0/16 4134 -119.61.0.0/16 23724 -119.62.0.0/16 4837 -119.63.0.0/20 23887 -119.63.16.0/20 7672 -119.63.32.0/20 136959 -119.63.64.0/24 38794 -119.63.65.0/24 45455 -119.63.66.0/24 45455 -119.63.67.0/24 38794 -119.63.68.0/24 45455 -119.63.69.0/24 38794 -119.63.70.0/23 38794 -119.63.72.0/23 38794 -119.63.74.0/24 45455 -119.63.75.0/24 38794 -119.63.76.0/22 38794 -119.63.80.0/20 38794 -119.63.96.0/20 18218 -119.63.112.0/20 9615 -119.63.128.0/21 38193 -119.63.138.0/23 138655 -119.63.141.0/24 38193 -119.63.142.0/23 38193 -119.63.144.0/20 4704 -119.63.160.0/19 7524 -119.63.192.0/21 38627 -119.63.200.0/21 7490 -119.63.209.0/24 7551 -119.63.216.0/21 38883 -119.63.224.0/19 17577 -119.64.0.0/13 17858 -119.72.0.0/16 37903 -119.73.0.0/18 23966 -119.73.65.0/24 45669 -119.73.90.0/23 38713 -119.73.95.0/24 38713 -119.73.96.0/20 38193 -119.73.112.0/21 38193 -119.73.120.0/22 38193 -119.73.124.0/24 38193 -119.73.125.0/24 15347 -119.73.126.0/23 38193 -119.73.128.0/17 3758 -119.74.0.0/16 9506 -119.75.0.0/18 3758 -119.75.64.0/18 17854 -119.75.128.0/18 18318 -119.75.192.0/20 10024 -119.75.208.0/20 38365 -119.75.224.0/20 17941 -119.76.0.0/17 17552 -119.76.128.0/19 17552 -119.76.160.0/20 17552 -119.76.176.0/22 7470 -119.76.180.0/24 7470 -119.76.181.0/24 17552 -119.76.182.0/23 17552 -119.76.184.0/21 7470 -119.76.192.0/18 17552 -119.77.0.0/19 17918 -119.77.64.0/19 24033 -119.77.96.0/19 38673 -119.77.128.0/19 24164 -119.77.160.0/20 24164 -119.77.176.0/21 24164 -119.77.184.0/22 24164 -119.77.188.0/22 9924 -119.77.192.0/18 24164 -119.78.0.0/15 7497 -119.80.32.0/20 4808 -119.80.48.0/21 4847 -119.80.160.0/19 4808 -119.80.192.0/21 4808 -119.80.200.0/23 4808 -119.80.202.0/24 4808 -119.80.203.0/24 23724 -119.80.240.0/22 23724 -119.81.0.0/16 36351 -119.82.0.0/21 38894 -119.82.12.0/22 18068 -119.82.16.0/21 38462 -119.82.24.0/21 63997 -119.82.32.0/19 10164 -119.82.64.0/18 10029 -119.82.128.0/20 45903 -119.82.144.0/23 38220 -119.82.146.0/24 56106 -119.82.147.0/24 38220 -119.82.148.0/23 38220 -119.82.150.0/23 45152 -119.82.152.0/21 2516 -119.82.160.0/19 17698 -119.82.192.0/20 23788 -119.82.224.0/20 24213 -119.82.240.0/21 24521 -119.82.248.0/21 38901 -119.83.0.0/16 10010 -119.84.0.0/21 134420 -119.84.8.0/24 134420 -119.84.9.0/24 4134 -119.84.10.0/23 134420 -119.84.12.0/22 134420 -119.84.16.0/20 134420 -119.84.32.0/21 134420 -119.84.40.0/22 134420 -119.84.44.0/23 134420 -119.84.46.0/24 134420 -119.84.47.0/24 4134 -119.84.48.0/20 134420 -119.84.64.0/23 4134 -119.84.66.0/23 134420 -119.84.68.0/24 134420 -119.84.69.0/24 4134 -119.84.70.0/23 134420 -119.84.72.0/22 134420 -119.84.76.0/24 4134 -119.84.77.0/24 134420 -119.84.78.0/23 134420 -119.84.80.0/21 134420 -119.84.88.0/23 4134 -119.84.90.0/23 134420 -119.84.92.0/22 134420 -119.84.96.0/24 4134 -119.84.97.0/24 134420 -119.84.98.0/23 134420 -119.84.100.0/24 4134 -119.84.101.0/24 134420 -119.84.102.0/23 134420 -119.84.104.0/23 134420 -119.84.106.0/24 4134 -119.84.107.0/24 134420 -119.84.108.0/23 134420 -119.84.110.0/23 4134 -119.84.112.0/23 134420 -119.84.114.0/23 4134 -119.84.116.0/24 4134 -119.84.117.0/24 134420 -119.84.118.0/23 134420 -119.84.120.0/24 4134 -119.84.121.0/24 134420 -119.84.122.0/23 134420 -119.84.124.0/23 134420 -119.84.126.0/24 134420 -119.84.127.0/24 4134 -119.84.128.0/19 134420 -119.84.160.0/19 4134 -119.84.192.0/18 4134 -119.85.0.0/16 4134 -119.86.0.0/15 4134 -119.88.128.0/17 4837 -119.90.0.0/19 23724 -119.90.32.0/21 24138 -119.90.40.0/22 4808 -119.90.44.0/23 4808 -119.90.46.0/24 4808 -119.90.47.0/24 24138 -119.90.48.0/21 24138 -119.90.56.0/21 4808 -119.90.64.0/18 23724 -119.90.128.0/17 23724 -119.92.0.0/17 9299 -119.92.128.0/18 9299 -119.92.192.0/20 9299 -119.92.208.0/22 9299 -119.92.212.0/23 9299 -119.92.214.0/24 9299 -119.92.215.0/24 132716 -119.92.216.0/24 9299 -119.92.217.0/24 139040 -119.92.218.0/23 9299 -119.92.220.0/22 9299 -119.92.224.0/19 9299 -119.93.0.0/16 9299 -119.94.0.0/15 9299 -119.96.0.0/18 4134 -119.96.64.0/19 4134 -119.96.96.0/21 4134 -119.96.104.0/21 58563 -119.96.112.0/20 58563 -119.96.128.0/17 58563 -119.97.0.0/17 4134 -119.97.128.0/19 4134 -119.97.160.0/22 4134 -119.97.164.0/22 138982 -119.97.168.0/21 138982 -119.97.176.0/20 138982 -119.97.192.0/18 4134 -119.98.0.0/15 4134 -119.100.0.0/19 4134 -119.100.32.0/20 4134 -119.100.48.0/23 4134 -119.100.50.0/23 136194 -119.100.52.0/22 4134 -119.100.56.0/21 4134 -119.100.64.0/18 4134 -119.100.128.0/17 4134 -119.101.0.0/16 4134 -119.102.0.0/15 4134 -119.104.0.0/14 2516 -119.108.0.0/15 4837 -119.110.0.0/18 24218 -119.110.64.0/21 38320 -119.110.72.0/22 38320 -119.110.76.0/24 38320 -119.110.78.0/24 38320 -119.110.79.0/24 55669 -119.110.80.0/21 38753 -119.110.88.0/21 38634 -119.110.96.0/20 17971 -119.110.112.0/23 45147 -119.110.114.0/24 45147 -119.110.115.0/24 55818 -119.110.116.0/23 55818 -119.110.118.0/24 55818 -119.110.119.0/24 45147 -119.110.120.0/22 45147 -119.110.125.0/24 45147 -119.110.126.0/23 45147 -119.110.128.0/18 24218 -119.110.192.0/21 132280 -119.110.200.0/24 137977 -119.110.201.0/24 132280 -119.110.202.0/23 132280 -119.110.204.0/22 132280 -119.110.208.0/22 132280 -119.110.212.0/23 132280 -119.110.214.0/24 132280 -119.110.215.0/24 138422 -119.110.216.0/21 132280 -119.110.224.0/22 132280 -119.110.228.0/23 132280 -119.110.230.0/24 132280 -119.110.231.0/24 138691 -119.110.232.0/22 132280 -119.110.236.0/23 132280 -119.110.238.0/24 138911 -119.110.239.0/24 132280 -119.110.240.0/20 132280 -119.111.0.0/16 9299 -119.112.0.0/13 4837 -119.120.0.0/18 4134 -119.120.64.0/20 4134 -119.120.80.0/21 4134 -119.120.88.0/22 4134 -119.120.92.0/24 58543 -119.120.93.0/24 4134 -119.120.94.0/24 58543 -119.120.95.0/24 4134 -119.120.96.0/19 4134 -119.120.128.0/17 4134 -119.121.0.0/20 4809 -119.121.16.0/23 4809 -119.121.18.0/23 134774 -119.121.20.0/22 134774 -119.121.24.0/21 134774 -119.121.32.0/24 134774 -119.121.33.0/24 4809 -119.121.34.0/23 4809 -119.121.36.0/22 4809 -119.121.40.0/22 4809 -119.121.44.0/22 136200 -119.121.48.0/21 136200 -119.121.56.0/21 4809 -119.121.64.0/18 4809 -119.121.128.0/17 4134 -119.122.0.0/15 4134 -119.124.0.0/14 4134 -119.128.0.0/14 4134 -119.132.0.0/15 4134 -119.134.0.0/17 4134 -119.134.128.0/18 4134 -119.134.192.0/19 4134 -119.134.224.0/20 4134 -119.134.240.0/22 4134 -119.134.244.0/22 58543 -119.134.248.0/21 58543 -119.135.0.0/16 4134 -119.136.0.0/13 4134 -119.144.0.0/16 4134 -119.145.0.0/17 4134 -119.145.128.0/23 4134 -119.145.130.0/23 134764 -119.145.132.0/22 4134 -119.145.136.0/23 4134 -119.145.138.0/23 134764 -119.145.140.0/22 4134 -119.145.144.0/22 134764 -119.145.148.0/23 134764 -119.145.150.0/24 4134 -119.145.151.0/24 134764 -119.145.152.0/21 4134 -119.145.160.0/19 4134 -119.145.192.0/19 4134 -119.145.224.0/20 4134 -119.145.240.0/21 4134 -119.145.248.0/22 4134 -119.145.252.0/22 58543 -119.146.0.0/18 4134 -119.146.64.0/21 4134 -119.146.72.0/23 4134 -119.146.74.0/23 58543 -119.146.76.0/22 4134 -119.146.80.0/20 4134 -119.146.96.0/19 4134 -119.146.128.0/19 4134 -119.146.160.0/20 4134 -119.146.176.0/21 4134 -119.146.184.0/23 58543 -119.146.186.0/23 4134 -119.146.188.0/22 4134 -119.146.192.0/20 58543 -119.146.208.0/21 4134 -119.146.216.0/22 4134 -119.146.220.0/22 58543 -119.146.224.0/19 4134 -119.147.0.0/18 4816 -119.147.64.0/19 4816 -119.147.96.0/19 134763 -119.147.128.0/21 134763 -119.147.136.0/21 134764 -119.147.144.0/20 134763 -119.147.160.0/19 58466 -119.147.192.0/19 4816 -119.147.224.0/19 58543 -119.148.0.0/18 23923 -119.148.64.0/23 4851 -119.148.66.0/24 56057 -119.148.67.0/24 4851 -119.148.68.0/22 4851 -119.148.72.0/21 4851 -119.148.80.0/20 4851 -119.148.96.0/22 134067 -119.148.100.0/22 18109 -119.148.104.0/21 7524 -119.148.112.0/20 18310 -119.148.128.0/19 18313 -119.148.160.0/23 17621 -119.148.162.0/24 17621 -119.148.164.0/22 23724 -119.148.168.0/21 23724 -119.148.192.0/18 9374 -119.149.0.0/18 38091 -119.149.64.0/20 38091 -119.149.80.0/20 17839 -119.149.104.0/21 38091 -119.149.112.0/20 38091 -119.149.128.0/19 38091 -119.149.160.0/20 38091 -119.149.176.0/21 38091 -119.149.184.0/22 38091 -119.149.188.0/24 38091 -119.149.189.0/24 10066 -119.149.190.0/23 38091 -119.149.192.0/19 38091 -119.149.224.0/19 10066 -119.150.0.0/19 7522 -119.150.96.0/21 10013 -119.150.104.0/23 10013 -119.150.106.0/24 10013 -119.150.112.0/20 10013 -119.150.128.0/18 10013 -119.150.192.0/21 10013 -119.150.200.0/22 10013 -119.150.204.0/23 10013 -119.150.215.0/24 10013 -119.150.216.0/21 10013 -119.150.224.0/22 10013 -119.150.239.0/24 10013 -119.150.240.0/20 7522 -119.151.0.0/19 45432 -119.151.32.0/20 45432 -119.151.48.0/24 45432 -119.151.64.0/20 45432 -119.151.96.0/23 45432 -119.151.101.0/24 45432 -119.151.102.0/23 45432 -119.151.109.0/24 45432 -119.151.128.0/24 4637 -119.151.136.0/24 45432 -119.151.138.0/24 45432 -119.151.144.0/24 45432 -119.151.163.0/24 45432 -119.151.180.0/24 45432 -119.151.182.0/24 9498 -119.151.184.0/24 53603 -119.152.0.0/22 45595 -119.152.4.0/24 17557 -119.152.5.0/24 45595 -119.152.6.0/23 45595 -119.152.8.0/21 45595 -119.152.16.0/20 45595 -119.152.32.0/20 45595 -119.152.48.0/22 45595 -119.152.52.0/23 45595 -119.152.54.0/23 17557 -119.152.56.0/21 17557 -119.152.64.0/19 45595 -119.152.96.0/20 17557 -119.152.112.0/21 45595 -119.152.120.0/22 45595 -119.152.124.0/23 58895 -119.152.126.0/23 45595 -119.152.128.0/17 45595 -119.153.0.0/16 45595 -119.154.0.0/16 45595 -119.155.0.0/17 45595 -119.155.128.0/21 45595 -119.155.136.0/22 17557 -119.155.140.0/22 45595 -119.155.144.0/20 45595 -119.155.160.0/19 45595 -119.155.192.0/18 45595 -119.156.0.0/20 45595 -119.156.16.0/21 45595 -119.156.24.0/21 17557 -119.156.32.0/19 45595 -119.156.64.0/18 45595 -119.156.128.0/18 45595 -119.156.192.0/21 45595 -119.156.200.0/22 45595 -119.156.204.0/24 17557 -119.156.205.0/24 45595 -119.156.206.0/23 45595 -119.156.208.0/20 45595 -119.156.224.0/19 45595 -119.157.0.0/16 45595 -119.158.0.0/16 45595 -119.159.0.0/17 45595 -119.159.128.0/18 45595 -119.159.192.0/19 45595 -119.159.224.0/23 9557 -119.159.226.0/24 9557 -119.159.227.0/24 17557 -119.159.228.0/22 17557 -119.159.232.0/22 17557 -119.159.236.0/23 45595 -119.159.238.0/24 17557 -119.159.239.0/24 45595 -119.159.240.0/21 17557 -119.159.248.0/24 17557 -119.159.249.0/24 45595 -119.159.250.0/23 45595 -119.159.252.0/22 45595 -119.160.0.0/17 45669 -119.160.128.0/18 10094 -119.160.192.0/21 45117 -119.160.208.0/24 45142 -119.160.209.0/24 18215 -119.160.210.0/23 45142 -119.160.212.0/22 45142 -119.160.216.0/22 45142 -119.160.220.0/24 24217 -119.160.221.0/24 45142 -119.160.222.0/23 45142 -119.160.224.0/21 56028 -119.160.232.0/22 55720 -119.160.236.0/23 198247 -119.160.238.0/24 198247 -119.160.239.0/24 206283 -119.160.240.0/20 10229 -119.161.0.0/24 10230 -119.161.2.0/24 18293 -119.161.3.0/24 38032 -119.161.4.0/23 10230 -119.161.8.0/23 18293 -119.161.10.0/23 38032 -119.161.12.0/24 24376 -119.161.13.0/24 38033 -119.161.14.0/23 24376 -119.161.16.0/23 38033 -119.161.32.0/20 55455 -119.161.48.0/24 58620 -119.161.52.0/24 134389 -119.161.54.0/24 134388 -119.161.55.0/24 134396 -119.161.56.0/24 134395 -119.161.57.0/24 134394 -119.161.58.0/24 134393 -119.161.60.0/24 18210 -119.161.62.0/24 134385 -119.161.63.0/24 134384 -119.161.64.0/20 24129 -119.161.80.0/23 24129 -119.161.83.0/24 4826 -119.161.84.0/24 4826 -119.161.85.0/24 45772 -119.161.86.0/23 4826 -119.161.90.0/23 4826 -119.161.92.0/23 4826 -119.161.94.0/24 4826 -119.161.96.0/22 133664 -119.161.100.0/24 63930 -119.161.101.0/24 38001 -119.161.102.0/23 38001 -119.161.104.0/21 4713 -119.161.112.0/21 23790 -119.161.128.0/22 23724 -119.161.136.0/21 63631 -119.161.144.0/22 63631 -119.161.148.0/23 63631 -119.161.151.0/24 63631 -119.161.152.0/21 63631 -119.161.168.0/22 23724 -119.161.180.0/22 23724 -119.162.0.0/15 4837 -119.164.0.0/14 4837 -119.168.0.0/13 9824 -119.176.0.0/12 4837 -119.192.0.0/17 4766 -119.192.128.0/19 4766 -119.192.160.0/20 4766 -119.192.176.0/22 4766 -119.192.180.0/24 4766 -119.192.181.0/24 18373 -119.192.182.0/24 18373 -119.192.183.0/24 4766 -119.192.184.0/21 4766 -119.192.192.0/22 4766 -119.192.196.0/24 4766 -119.192.197.0/24 38703 -119.192.198.0/23 38703 -119.192.200.0/21 4766 -119.192.208.0/20 4766 -119.192.224.0/22 4766 -119.192.228.0/23 4766 -119.192.230.0/24 4766 -119.192.231.0/24 17859 -119.192.232.0/21 4766 -119.192.240.0/20 4766 -119.193.0.0/20 4766 -119.193.16.0/23 4766 -119.193.18.0/24 38390 -119.193.19.0/24 4766 -119.193.20.0/22 4766 -119.193.24.0/21 4766 -119.193.32.0/19 4766 -119.193.64.0/18 4766 -119.193.128.0/18 4766 -119.193.192.0/20 4766 -119.193.208.0/23 4766 -119.193.210.0/24 4766 -119.193.211.0/24 38417 -119.193.212.0/22 4766 -119.193.216.0/21 4766 -119.193.224.0/19 4766 -119.194.0.0/16 4766 -119.195.0.0/18 4766 -119.195.64.0/19 4766 -119.195.96.0/20 4766 -119.195.112.0/22 4766 -119.195.116.0/24 10193 -119.195.117.0/24 4766 -119.195.118.0/23 4766 -119.195.120.0/21 4766 -119.195.128.0/17 4766 -119.196.0.0/16 4766 -119.197.0.0/18 4766 -119.197.64.0/19 4766 -119.197.96.0/20 4766 -119.197.112.0/21 4766 -119.197.120.0/23 4766 -119.197.122.0/24 45968 -119.197.123.0/24 4766 -119.197.124.0/22 4766 -119.197.128.0/17 4766 -119.198.0.0/15 4766 -119.200.0.0/15 4766 -119.202.0.0/18 4766 -119.202.64.0/19 4766 -119.202.96.0/20 4766 -119.202.112.0/22 4766 -119.202.116.0/24 4766 -119.202.117.0/24 18305 -119.202.118.0/23 4766 -119.202.120.0/21 4766 -119.202.128.0/17 4766 -119.203.0.0/16 4766 -119.204.0.0/16 4766 -119.205.0.0/18 4766 -119.205.64.0/20 4766 -119.205.80.0/21 4766 -119.205.88.0/24 4766 -119.205.89.0/24 55615 -119.205.90.0/23 4766 -119.205.92.0/22 4766 -119.205.96.0/19 4766 -119.205.128.0/19 4766 -119.205.160.0/20 4766 -119.205.176.0/24 4766 -119.205.177.0/24 55615 -119.205.178.0/24 55615 -119.205.179.0/24 4766 -119.205.180.0/24 55615 -119.205.181.0/24 4766 -119.205.182.0/24 55615 -119.205.183.0/24 4766 -119.205.184.0/24 55615 -119.205.185.0/24 4766 -119.205.186.0/23 4766 -119.205.188.0/22 4766 -119.205.192.0/18 4766 -119.206.0.0/15 4766 -119.208.0.0/12 4766 -119.224.0.0/17 9790 -119.224.128.0/20 9790 -119.224.144.0/20 9749 -119.224.160.0/19 9374 -119.224.192.0/18 9365 -119.225.0.0/17 7474 -119.225.128.0/24 7474 -119.225.129.0/24 132581 -119.225.130.0/23 7474 -119.225.132.0/22 7474 -119.225.136.0/21 7474 -119.225.144.0/23 7474 -119.225.146.0/23 56307 -119.225.148.0/22 7474 -119.225.152.0/22 7474 -119.225.156.0/23 7474 -119.225.158.0/24 134982 -119.225.159.0/24 7474 -119.225.160.0/19 7474 -119.225.192.0/20 7474 -119.225.208.0/21 7474 -119.225.216.0/24 7474 -119.225.217.0/24 56080 -119.225.218.0/23 7474 -119.225.220.0/22 7474 -119.225.224.0/20 7474 -119.225.240.0/20 4804 -119.226.0.0/18 9583 -119.226.64.0/20 9583 -119.226.80.0/21 9583 -119.226.90.0/23 9583 -119.226.92.0/22 9583 -119.226.96.0/19 9583 -119.226.128.0/18 9583 -119.226.192.0/20 9583 -119.226.208.0/23 9583 -119.226.211.0/24 9583 -119.226.212.0/23 9583 -119.226.214.0/24 9583 -119.226.216.0/21 9583 -119.226.224.0/19 9583 -119.227.149.0/24 9583 -119.227.161.0/24 9583 -119.227.190.0/23 9583 -119.227.192.0/24 9583 -119.228.0.0/14 17511 -119.233.128.0/17 4837 -119.234.0.0/16 45143 -119.235.0.0/20 45224 -119.235.16.0/20 24532 -119.235.32.0/21 55872 -119.235.40.0/21 45136 -119.235.48.0/21 45582 -119.235.56.0/21 38476 -119.235.64.0/19 4638 -119.235.96.0/21 4638 -119.235.112.0/20 24512 -119.235.128.0/22 24427 -119.235.136.0/23 24427 -119.235.138.0/24 24427 -119.235.143.0/24 24427 -119.235.144.0/21 24427 -119.235.160.0/22 24427 -119.235.164.0/23 24427 -119.235.166.0/24 24427 -119.235.176.0/22 63928 -119.235.180.0/23 63928 -119.235.182.0/24 63928 -119.235.184.0/22 24427 -119.235.208.0/23 38211 -119.235.212.0/24 38211 -119.235.224.0/24 38631 -119.235.225.0/24 17661 -119.235.226.0/23 17661 -119.235.228.0/22 17661 -119.235.232.0/24 38631 -119.235.233.0/24 17661 -119.235.234.0/24 17661 -119.235.235.0/24 38631 -119.235.236.0/23 38631 -119.235.238.0/23 17661 -119.235.240.0/21 18033 -119.235.248.0/21 45146 -119.236.0.0/15 4760 -119.238.0.0/15 2518 -119.240.0.0/14 2518 -119.244.0.0/16 2518 -119.245.0.0/16 2514 -119.246.0.0/15 9269 -119.248.0.0/14 4837 -119.252.0.0/19 9297 -119.252.32.0/19 23784 -119.252.64.0/19 7604 -119.252.112.0/21 139759 -119.252.120.0/23 38875 -119.252.122.0/24 139759 -119.252.123.0/24 45193 -119.252.124.0/23 45193 -119.252.126.0/23 58524 -119.252.136.0/21 10099 -119.252.144.0/20 38224 -119.252.160.0/20 9341 -119.252.176.0/24 38880 -119.252.177.0/24 133104 -119.252.178.0/24 133104 -119.252.179.0/24 38880 -119.252.180.0/24 1221 -119.252.181.0/24 206925 -119.252.182.0/24 38883 -119.252.183.0/24 1221 -119.252.184.0/22 45152 -119.252.188.0/24 45152 -119.252.189.0/24 56106 -119.252.190.0/23 56106 -119.252.192.0/23 45148 -119.252.208.0/20 45148 -119.252.224.0/24 136587 -119.252.225.0/24 9731 -119.252.226.0/23 9731 -119.252.228.0/22 9731 -119.252.232.0/21 9731 -119.252.248.0/24 137443 -119.252.251.0/24 2042 -119.252.254.0/24 2042 -119.253.0.0/20 23844 -119.253.16.0/20 59050 -119.253.32.0/19 4808 -119.253.64.0/19 4808 -119.253.96.0/19 23844 -119.253.128.0/17 23844 -119.254.0.0/20 59050 -119.254.16.0/20 23844 -119.254.32.0/21 23844 -119.254.40.0/21 4515 -119.254.48.0/21 4515 -119.254.56.0/21 23844 -119.254.64.0/18 23844 -119.254.128.0/20 23844 -119.254.144.0/20 59050 -119.254.160.0/19 4847 -119.254.192.0/21 4847 -119.254.200.0/24 4847 -119.254.201.0/24 23844 -119.254.202.0/23 4847 -119.254.204.0/22 4847 -119.254.208.0/22 59050 -119.254.212.0/22 4847 -119.254.216.0/21 4847 -119.254.224.0/21 4847 -119.254.232.0/22 4847 -119.254.236.0/24 4847 -119.254.237.0/24 23844 -119.254.238.0/23 4847 -119.254.240.0/20 23844 -119.255.0.0/18 23844 -119.255.128.0/18 4847 -119.255.192.0/19 4847 -119.255.224.0/20 4847 -119.255.240.0/23 23844 -119.255.242.0/23 4847 -119.255.244.0/22 4847 -119.255.248.0/21 4847 -120.0.0.0/12 4837 -120.16.0.0/14 133612 -120.20.0.0/15 133612 -120.22.0.0/16 133612 -120.23.0.0/17 133612 -120.23.128.0/17 18291 -120.24.0.0/14 37963 -120.28.0.0/21 4775 -120.28.8.0/24 132199 -120.28.9.0/24 4775 -120.28.10.0/23 4775 -120.28.12.0/23 4775 -120.28.14.0/24 4775 -120.28.15.0/24 18190 -120.28.16.0/24 56095 -120.28.17.0/24 4775 -120.28.18.0/23 4775 -120.28.20.0/24 4775 -120.28.21.0/24 38445 -120.28.22.0/23 4775 -120.28.24.0/22 4775 -120.28.28.0/23 23689 -120.28.30.0/23 4775 -120.28.32.0/22 4775 -120.28.36.0/22 17894 -120.28.40.0/21 4775 -120.28.48.0/21 4775 -120.28.56.0/22 4775 -120.28.60.0/24 4775 -120.28.61.0/24 45832 -120.28.62.0/23 4775 -120.28.64.0/18 132199 -120.28.128.0/19 132199 -120.28.160.0/20 132199 -120.28.176.0/22 4775 -120.28.180.0/24 4775 -120.28.181.0/24 132199 -120.28.182.0/23 132199 -120.28.184.0/22 132199 -120.28.188.0/23 4775 -120.28.190.0/24 4775 -120.28.191.0/24 132199 -120.28.192.0/18 132199 -120.29.0.0/18 9313 -120.29.64.0/23 17639 -120.29.68.0/22 17639 -120.29.72.0/21 17639 -120.29.80.0/21 17639 -120.29.88.0/22 17639 -120.29.92.0/23 17639 -120.29.94.0/24 17639 -120.29.97.0/24 17639 -120.29.98.0/24 17639 -120.29.100.0/22 17639 -120.29.104.0/21 17639 -120.29.112.0/20 17639 -120.29.128.0/20 10054 -120.29.144.0/22 2914 -120.29.148.0/24 30103 -120.29.149.0/24 2914 -120.29.150.0/23 2914 -120.29.152.0/23 38758 -120.29.155.0/24 38758 -120.29.156.0/22 38758 -120.29.192.0/23 40009 -120.29.194.0/23 6453 -120.29.196.0/22 40009 -120.29.200.0/21 9246 -120.29.208.0/20 6453 -120.29.224.0/24 58369 -120.29.225.0/24 38764 -120.29.226.0/23 38764 -120.29.228.0/22 38764 -120.29.232.0/23 38015 -120.29.240.0/22 45158 -120.29.244.0/23 45158 -120.29.246.0/24 45158 -120.29.248.0/22 38796 -120.29.252.0/24 397215 -120.29.253.0/24 134389 -120.29.254.0/24 397213 -120.29.255.0/24 38796 -120.31.0.0/18 38372 -120.31.64.0/23 38372 -120.31.66.0/23 134764 -120.31.68.0/22 134764 -120.31.72.0/21 38372 -120.31.80.0/20 38372 -120.31.96.0/19 38372 -120.31.128.0/20 134764 -120.31.144.0/24 4515 -120.31.145.0/24 38372 -120.31.146.0/23 38372 -120.31.148.0/22 38372 -120.31.152.0/21 38372 -120.31.160.0/22 134764 -120.31.164.0/22 135373 -120.31.168.0/21 38372 -120.31.176.0/20 38372 -120.31.192.0/18 38372 -120.32.0.0/14 4134 -120.36.0.0/15 4134 -120.38.0.0/16 4134 -120.39.0.0/17 4134 -120.39.128.0/18 4134 -120.39.192.0/19 133774 -120.39.224.0/20 4134 -120.39.240.0/23 4134 -120.39.242.0/24 4134 -120.39.243.0/24 133774 -120.39.244.0/24 133774 -120.39.245.0/24 4134 -120.39.246.0/23 4134 -120.39.248.0/24 133774 -120.39.249.0/24 4134 -120.39.250.0/24 4134 -120.39.251.0/24 133774 -120.39.252.0/24 133774 -120.39.253.0/24 4134 -120.39.254.0/23 4134 -120.40.0.0/16 4134 -120.41.0.0/19 4134 -120.41.32.0/20 133775 -120.41.48.0/20 4134 -120.41.64.0/19 4134 -120.41.96.0/21 4134 -120.41.104.0/22 4134 -120.41.108.0/24 4809 -120.41.109.0/24 4134 -120.41.110.0/23 4134 -120.41.112.0/22 4134 -120.41.116.0/24 4134 -120.41.117.0/24 4809 -120.41.118.0/23 4134 -120.41.120.0/21 4134 -120.41.128.0/18 4134 -120.41.192.0/19 4134 -120.41.224.0/20 4134 -120.41.240.0/21 4134 -120.41.248.0/23 4134 -120.41.250.0/23 133775 -120.41.252.0/23 133775 -120.41.254.0/23 4134 -120.42.0.0/15 4134 -120.44.0.0/16 4847 -120.45.0.0/16 18118 -120.46.0.0/15 18118 -120.48.0.0/15 18118 -120.50.0.0/19 38712 -120.50.32.0/23 17547 -120.50.34.0/23 45634 -120.50.36.0/22 17547 -120.50.40.0/22 17547 -120.50.44.0/23 17547 -120.50.46.0/24 17547 -120.50.47.0/24 45634 -120.50.48.0/20 132196 -120.50.65.0/24 9762 -120.50.66.0/23 9762 -120.50.68.0/22 9762 -120.50.72.0/22 9762 -120.50.76.0/24 9762 -120.50.77.0/24 9569 -120.50.78.0/23 9762 -120.50.80.0/23 7562 -120.50.82.0/23 9569 -120.50.84.0/22 9569 -120.50.88.0/22 7562 -120.50.92.0/22 9762 -120.50.96.0/21 10175 -120.50.104.0/21 7623 -120.50.112.0/20 45374 -120.50.128.0/19 4792 -120.50.160.0/21 38628 -120.50.172.0/22 18092 -120.50.176.0/21 38067 -120.50.192.0/20 131923 -120.50.208.0/20 38462 -120.50.224.0/19 10002 -120.51.0.0/16 2519 -120.52.0.0/16 133119 -120.53.0.0/16 45090 -120.55.0.0/16 37963 -120.56.0.0/15 17813 -120.58.0.0/21 9829 -120.58.64.0/18 17813 -120.58.128.0/17 17813 -120.59.0.0/16 17813 -120.60.0.0/14 17813 -120.65.0.0/16 4837 -120.68.0.0/19 4134 -120.68.32.0/22 4134 -120.68.36.0/23 137694 -120.68.38.0/23 4134 -120.68.40.0/21 4134 -120.68.48.0/20 4134 -120.68.64.0/18 4134 -120.68.128.0/18 4134 -120.68.192.0/21 137694 -120.68.200.0/21 4134 -120.68.208.0/20 4134 -120.68.224.0/19 4134 -120.69.0.0/16 4134 -120.70.0.0/17 4134 -120.70.128.0/20 4134 -120.70.144.0/22 137694 -120.70.148.0/22 4134 -120.70.152.0/21 4134 -120.70.160.0/19 4134 -120.70.192.0/18 4134 -120.71.0.0/18 4134 -120.71.64.0/22 4134 -120.71.68.0/22 137694 -120.71.72.0/21 4134 -120.71.80.0/20 4134 -120.71.96.0/19 4134 -120.71.128.0/22 137694 -120.71.132.0/22 4134 -120.71.136.0/21 4134 -120.71.144.0/20 4134 -120.71.160.0/19 4134 -120.71.192.0/18 4134 -120.72.0.0/20 10002 -120.72.16.0/20 38553 -120.72.81.0/24 24085 -120.72.82.0/23 24085 -120.72.84.0/22 24085 -120.72.88.0/21 17625 -120.72.96.0/24 24085 -120.72.98.0/23 24085 -120.72.100.0/24 24085 -120.72.102.0/23 24085 -120.72.105.0/24 24085 -120.72.106.0/23 24085 -120.72.108.0/22 24085 -120.72.112.0/23 24085 -120.72.114.0/24 24085 -120.72.116.0/22 24085 -120.72.120.0/22 24085 -120.72.124.0/24 24085 -120.72.160.0/24 24430 -120.72.162.0/23 24430 -120.72.166.0/23 24430 -120.72.168.0/24 24430 -120.72.170.0/23 24430 -120.72.172.0/23 24430 -120.72.177.0/24 24430 -120.72.178.0/24 24430 -120.72.180.0/24 24430 -120.72.182.0/24 24430 -120.72.184.0/23 24430 -120.72.186.0/24 24430 -120.72.188.0/23 24430 -120.72.190.0/24 24430 -120.73.0.0/16 9761 -120.74.0.0/15 2527 -120.76.0.0/14 37963 -120.80.0.0/20 17816 -120.80.16.0/22 17816 -120.80.20.0/23 17816 -120.80.22.0/24 17816 -120.80.23.0/24 136958 -120.80.24.0/21 17816 -120.80.32.0/20 17816 -120.80.48.0/24 17622 -120.80.49.0/24 17816 -120.80.50.0/23 17816 -120.80.52.0/23 17622 -120.80.54.0/23 17816 -120.80.56.0/24 17816 -120.80.57.0/24 17623 -120.80.58.0/23 17623 -120.80.60.0/22 17623 -120.80.64.0/21 17816 -120.80.72.0/22 134543 -120.80.76.0/22 17622 -120.80.80.0/22 17816 -120.80.84.0/23 136959 -120.80.86.0/23 17816 -120.80.88.0/21 17816 -120.80.96.0/24 135061 -120.80.97.0/24 17623 -120.80.98.0/23 135061 -120.80.100.0/22 17816 -120.80.104.0/21 17816 -120.80.112.0/21 17816 -120.80.120.0/21 17622 -120.80.128.0/21 17816 -120.80.136.0/24 136958 -120.80.137.0/24 17816 -120.80.138.0/23 17816 -120.80.140.0/22 17816 -120.80.144.0/22 17623 -120.80.148.0/22 17816 -120.80.152.0/22 17816 -120.80.156.0/22 17623 -120.80.160.0/21 17623 -120.80.168.0/21 17622 -120.80.176.0/20 17816 -120.80.192.0/22 17816 -120.80.196.0/22 17623 -120.80.200.0/21 17816 -120.80.208.0/20 17816 -120.80.224.0/19 17816 -120.81.0.0/17 17816 -120.81.128.0/21 17816 -120.81.136.0/21 17623 -120.81.144.0/20 17816 -120.81.160.0/19 17816 -120.81.192.0/18 17816 -120.82.0.0/22 17816 -120.82.4.0/23 17816 -120.82.6.0/24 136958 -120.82.7.0/24 17622 -120.82.8.0/21 17816 -120.82.16.0/21 17816 -120.82.24.0/22 17622 -120.82.28.0/22 17816 -120.82.32.0/19 17816 -120.82.64.0/18 17816 -120.82.128.0/17 17816 -120.83.0.0/23 17816 -120.83.2.0/24 136958 -120.83.3.0/24 17816 -120.83.4.0/24 136958 -120.83.5.0/24 17816 -120.83.6.0/24 17622 -120.83.7.0/24 17816 -120.83.8.0/24 17623 -120.83.9.0/24 17816 -120.83.10.0/23 17816 -120.83.12.0/24 17816 -120.83.13.0/24 136959 -120.83.14.0/23 17816 -120.83.16.0/20 17816 -120.83.32.0/19 17816 -120.83.64.0/18 17816 -120.83.128.0/20 17816 -120.83.144.0/22 136959 -120.83.148.0/22 17816 -120.83.152.0/21 17816 -120.83.160.0/20 17816 -120.83.176.0/22 17816 -120.83.180.0/22 136959 -120.83.184.0/21 17816 -120.83.192.0/18 17816 -120.84.0.0/19 17816 -120.84.32.0/23 17622 -120.84.34.0/23 17816 -120.84.36.0/22 17816 -120.84.40.0/22 17816 -120.84.44.0/23 17623 -120.84.46.0/23 17816 -120.84.48.0/20 17816 -120.84.64.0/21 17816 -120.84.72.0/23 17816 -120.84.74.0/23 17622 -120.84.76.0/23 17623 -120.84.78.0/23 17816 -120.84.80.0/20 17816 -120.84.96.0/19 17816 -120.84.128.0/17 17816 -120.85.0.0/16 17622 -120.86.0.0/20 17816 -120.86.16.0/21 17816 -120.86.24.0/22 17816 -120.86.28.0/23 17816 -120.86.30.0/24 17622 -120.86.31.0/24 17623 -120.86.32.0/19 17816 -120.86.64.0/18 17816 -120.86.128.0/17 17816 -120.87.0.0/24 17623 -120.87.1.0/24 17622 -120.87.2.0/23 17622 -120.87.4.0/23 17622 -120.87.6.0/23 17623 -120.87.8.0/23 17623 -120.87.10.0/23 17816 -120.87.12.0/23 17622 -120.87.14.0/23 17816 -120.87.16.0/20 17816 -120.87.32.0/19 17816 -120.87.64.0/18 17816 -120.87.128.0/17 17816 -120.88.0.0/23 56035 -120.88.4.0/24 56035 -120.88.7.0/24 56035 -120.88.8.0/21 4134 -120.88.16.0/20 17955 -120.88.32.0/20 38457 -120.88.48.0/21 2914 -120.88.56.0/23 132203 -120.88.58.0/23 2914 -120.88.60.0/22 2914 -120.88.64.0/19 7594 -120.88.96.0/19 4764 -120.88.128.0/19 7545 -120.88.160.0/20 7545 -120.88.176.0/20 55832 -120.88.192.0/18 9444 -120.89.0.0/19 9658 -120.89.32.0/20 9658 -120.89.48.0/21 9658 -120.89.56.0/22 9658 -120.89.60.0/23 9658 -120.89.62.0/24 17550 -120.89.63.0/24 9658 -120.89.64.0/22 136262 -120.89.68.0/22 132839 -120.89.72.0/21 45184 -120.89.80.0/22 132255 -120.89.84.0/22 38437 -120.89.88.0/22 45289 -120.89.92.0/23 24207 -120.89.94.0/23 56233 -120.89.96.0/19 23752 -120.89.128.0/17 7514 -120.90.0.0/15 45057 -120.92.0.0/21 59019 -120.92.8.0/23 23724 -120.92.10.0/23 59019 -120.92.12.0/22 59019 -120.92.16.0/20 59019 -120.92.32.0/19 59019 -120.92.64.0/18 59019 -120.92.128.0/19 4812 -120.92.160.0/20 4812 -120.92.176.0/21 4812 -120.92.184.0/23 4812 -120.92.186.0/23 17621 -120.92.188.0/22 4812 -120.92.192.0/22 23724 -120.92.196.0/23 137280 -120.92.198.0/23 23724 -120.92.200.0/21 23724 -120.92.208.0/21 23724 -120.92.216.0/22 4812 -120.92.220.0/22 23724 -120.92.224.0/20 4812 -120.92.240.0/20 4837 -120.93.0.0/16 7514 -120.94.0.0/15 4538 -120.96.0.0/19 17716 -120.96.32.0/19 1659 -120.96.64.0/18 1659 -120.96.128.0/18 1659 -120.96.192.0/19 1659 -120.96.224.0/20 1659 -120.96.240.0/21 17716 -120.96.248.0/22 17716 -120.96.252.0/22 1659 -120.97.0.0/16 1659 -120.98.0.0/15 1659 -120.100.0.0/14 1659 -120.104.0.0/13 1659 -120.112.0.0/14 1659 -120.116.0.0/16 1659 -120.117.0.0/24 1659 -120.117.1.0/24 18185 -120.117.2.0/23 1659 -120.117.4.0/22 1659 -120.117.8.0/21 1659 -120.117.16.0/20 1659 -120.117.32.0/19 1659 -120.117.64.0/18 1659 -120.117.128.0/17 1659 -120.118.0.0/16 1659 -120.119.0.0/17 1659 -120.119.128.0/18 1659 -120.119.192.0/19 1659 -120.119.224.0/20 1659 -120.119.240.0/21 1659 -120.119.248.0/22 1659 -120.119.252.0/23 1659 -120.119.254.0/23 131150 -120.120.0.0/14 1659 -120.124.0.0/15 1659 -120.126.0.0/19 1659 -120.126.32.0/19 9264 -120.126.64.0/19 9264 -120.126.96.0/20 9264 -120.126.112.0/20 1659 -120.126.128.0/17 1659 -120.127.0.0/17 1659 -120.127.128.0/19 1659 -120.127.160.0/19 18047 -120.127.192.0/18 1659 -120.128.0.0/21 4837 -120.131.0.0/20 59019 -120.132.0.0/19 23650 -120.132.32.0/19 4808 -120.132.64.0/19 4808 -120.132.96.0/20 23650 -120.132.112.0/20 58466 -120.132.128.0/22 4835 -120.132.132.0/23 17428 -120.132.134.0/24 4835 -120.132.135.0/24 17428 -120.132.136.0/22 4812 -120.132.140.0/22 4835 -120.132.144.0/22 17428 -120.132.148.0/24 17428 -120.132.149.0/24 4835 -120.132.150.0/23 4835 -120.132.152.0/21 4835 -120.132.160.0/20 4835 -120.132.176.0/23 17428 -120.132.178.0/24 17428 -120.132.179.0/24 4835 -120.132.180.0/24 4835 -120.132.181.0/24 17428 -120.132.182.0/23 4835 -120.132.184.0/24 4835 -120.132.185.0/24 17428 -120.132.186.0/23 4835 -120.132.188.0/23 4835 -120.132.190.0/24 17428 -120.132.191.0/24 4835 -120.132.192.0/23 4812 -120.132.194.0/23 4835 -120.132.196.0/22 4835 -120.132.200.0/21 4835 -120.132.208.0/20 4835 -120.132.224.0/21 17428 -120.132.232.0/21 4835 -120.132.240.0/23 17428 -120.132.242.0/23 4835 -120.132.244.0/22 4835 -120.132.248.0/21 4835 -120.133.0.0/21 4847 -120.133.8.0/22 4847 -120.133.12.0/24 4847 -120.133.13.0/24 4835 -120.133.14.0/23 4847 -120.133.16.0/22 9308 -120.133.20.0/23 4835 -120.133.22.0/23 9308 -120.133.24.0/21 4835 -120.133.32.0/20 4847 -120.133.48.0/20 4835 -120.133.64.0/18 4835 -120.133.128.0/20 58466 -120.133.144.0/20 4835 -120.133.160.0/19 4835 -120.133.192.0/19 4835 -120.133.224.0/22 4812 -120.133.228.0/22 4835 -120.133.232.0/22 4835 -120.133.236.0/22 4812 -120.133.240.0/20 17428 -120.134.0.0/17 4835 -120.134.128.0/18 4835 -120.134.192.0/19 4835 -120.134.224.0/20 4835 -120.134.240.0/21 4835 -120.134.248.0/22 4835 -120.134.252.0/23 4835 -120.134.254.0/24 4835 -120.134.255.0/24 24143 -120.135.0.0/16 4835 -120.136.0.0/22 45177 -120.136.4.0/23 45177 -120.136.6.0/24 133878 -120.136.7.0/24 45177 -120.136.8.0/21 9371 -120.136.24.0/21 38209 -120.136.32.0/20 45187 -120.136.48.0/21 23838 -120.136.56.0/22 23838 -120.136.60.0/23 23838 -120.136.62.0/24 38477 -120.136.63.0/24 23838 -120.136.64.0/18 9698 -120.136.128.0/21 23853 -120.136.140.0/22 23853 -120.136.144.0/21 23853 -120.136.152.0/22 23853 -120.136.156.0/22 4812 -120.136.160.0/21 4812 -120.136.168.0/21 17621 -120.136.176.0/22 17621 -120.136.180.0/22 23853 -120.136.184.0/21 23853 -120.136.192.0/18 10010 -120.137.128.0/17 10010 -120.138.0.0/23 24554 -120.138.4.0/22 133662 -120.138.8.0/22 18229 -120.138.16.0/20 45179 -120.138.32.0/22 1239 -120.138.36.0/24 1239 -120.138.37.0/24 4755 -120.138.38.0/24 4755 -120.138.39.0/24 1239 -120.138.40.0/21 1239 -120.138.48.0/20 1239 -120.138.64.0/20 38244 -120.138.80.0/20 38199 -120.138.96.0/21 45194 -120.138.104.0/23 45194 -120.138.106.0/24 16625 -120.138.108.0/22 45194 -120.138.112.0/21 45194 -120.138.120.0/22 45194 -120.138.124.0/24 45194 -120.138.125.0/24 138798 -120.138.126.0/24 45194 -120.138.127.0/24 16625 -120.138.128.0/18 17529 -120.138.192.0/18 4637 -120.139.0.0/23 38322 -120.140.2.0/23 38322 -120.140.4.0/22 38322 -120.140.8.0/21 38322 -120.140.16.0/20 38322 -120.140.32.0/20 38322 -120.140.48.0/22 38322 -120.140.52.0/23 38322 -120.140.56.0/22 38322 -120.140.62.0/23 38322 -120.140.64.0/22 38322 -120.140.68.0/23 38322 -120.140.72.0/22 38322 -120.142.0.0/20 10036 -120.142.16.0/22 10036 -120.142.20.0/23 10036 -120.142.22.0/23 7562 -120.142.24.0/21 10036 -120.142.32.0/20 10036 -120.142.48.0/22 10036 -120.142.52.0/22 7562 -120.142.56.0/21 10036 -120.142.64.0/18 10036 -120.142.128.0/19 10036 -120.142.160.0/20 10036 -120.142.176.0/21 10036 -120.142.184.0/22 10036 -120.142.188.0/22 7562 -120.142.192.0/19 10036 -120.142.224.0/20 10036 -120.142.240.0/21 10036 -120.142.248.0/23 7562 -120.142.250.0/23 10036 -120.142.252.0/23 7562 -120.142.254.0/23 10036 -120.143.0.0/18 2514 -120.143.64.0/19 38462 -120.143.96.0/19 2519 -120.143.138.0/24 133955 -120.143.160.0/19 38109 -120.144.0.0/13 1221 -120.152.0.0/14 1221 -120.156.0.0/15 1221 -120.158.0.0/16 1221 -120.159.0.0/16 135887 -120.160.0.0/11 4761 -120.192.0.0/17 24444 -120.192.128.0/18 24444 -120.192.192.0/18 9808 -120.193.0.0/18 56041 -120.193.64.0/18 9808 -120.193.128.0/17 9808 -120.194.0.0/16 24445 -120.195.0.0/16 56046 -120.196.0.0/15 56040 -120.198.0.0/20 56040 -120.198.16.0/24 9808 -120.198.17.0/24 56040 -120.198.18.0/23 56040 -120.198.20.0/22 56040 -120.198.24.0/21 56040 -120.198.32.0/19 56040 -120.198.64.0/18 56040 -120.198.128.0/17 56040 -120.199.0.0/16 56041 -120.200.0.0/15 56044 -120.202.0.0/15 9808 -120.204.0.0/21 9808 -120.204.8.0/21 24400 -120.204.16.0/22 24400 -120.204.20.0/23 9808 -120.204.22.0/23 24400 -120.204.24.0/22 9808 -120.204.28.0/23 9808 -120.204.30.0/24 9808 -120.204.31.0/24 24400 -120.204.32.0/19 24400 -120.204.64.0/18 24400 -120.204.128.0/18 24400 -120.204.192.0/20 9808 -120.204.208.0/20 24400 -120.204.224.0/19 24400 -120.205.0.0/16 9808 -120.206.0.0/16 9808 -120.207.0.0/16 56042 -120.208.0.0/16 56042 -120.209.0.0/16 9808 -120.210.0.0/16 9808 -120.211.0.0/16 24547 -120.212.0.0/14 24445 -120.216.0.0/14 24445 -120.220.0.0/16 24444 -120.221.0.0/18 24444 -120.221.64.0/21 24444 -120.221.72.0/23 24444 -120.221.74.0/24 9808 -120.221.75.0/24 24444 -120.221.76.0/22 24444 -120.221.80.0/22 24444 -120.221.84.0/23 24444 -120.221.86.0/24 9808 -120.221.87.0/24 24444 -120.221.88.0/21 24444 -120.221.96.0/19 24444 -120.221.128.0/18 24444 -120.221.192.0/18 9808 -120.222.0.0/15 24444 -120.224.0.0/17 24444 -120.224.128.0/18 24444 -120.224.192.0/19 24444 -120.224.224.0/20 24444 -120.224.240.0/22 24444 -120.224.244.0/23 24444 -120.224.246.0/23 9808 -120.224.248.0/21 9808 -120.225.0.0/16 24444 -120.226.0.0/15 56047 -120.228.0.0/16 56047 -120.229.0.0/16 56040 -120.230.0.0/15 56040 -120.232.0.0/13 56040 -120.240.0.0/15 56040 -120.242.0.0/15 9808 -120.244.0.0/15 56048 -120.246.0.0/17 56048 -120.246.128.0/17 9808 -120.247.0.0/16 9808 -120.248.0.0/14 9808 -120.252.0.0/16 9808 -120.253.0.0/17 9808 -120.253.128.0/17 24400 -120.254.0.0/15 9808 -121.0.0.0/21 7594 -121.0.16.0/20 37963 -121.0.32.0/20 9595 -121.0.48.0/21 9595 -121.0.64.0/18 18328 -121.0.128.0/17 38661 -121.1.0.0/18 10139 -121.1.64.0/18 9694 -121.1.128.0/17 4685 -121.2.0.0/15 2527 -121.6.0.0/15 9506 -121.8.0.0/16 4134 -121.9.0.0/21 4134 -121.9.8.0/22 4134 -121.9.12.0/24 4134 -121.9.13.0/24 134764 -121.9.14.0/23 4134 -121.9.16.0/20 4134 -121.9.32.0/19 4134 -121.9.64.0/19 4134 -121.9.96.0/22 4134 -121.9.100.0/24 134764 -121.9.101.0/24 4134 -121.9.102.0/23 4134 -121.9.104.0/21 4134 -121.9.112.0/20 4134 -121.9.128.0/18 4134 -121.9.192.0/21 4134 -121.9.200.0/24 4134 -121.9.201.0/24 134764 -121.9.202.0/23 134764 -121.9.204.0/22 134764 -121.9.208.0/22 134764 -121.9.212.0/23 134764 -121.9.214.0/24 134764 -121.9.215.0/24 4134 -121.9.216.0/23 4134 -121.9.218.0/24 4134 -121.9.219.0/24 134764 -121.9.220.0/22 134764 -121.9.224.0/23 4134 -121.9.226.0/24 4134 -121.9.227.0/24 134764 -121.9.228.0/23 134764 -121.9.230.0/23 4134 -121.9.232.0/24 134764 -121.9.233.0/24 4134 -121.9.234.0/23 134764 -121.9.236.0/23 4134 -121.9.238.0/23 134764 -121.9.240.0/21 134764 -121.9.248.0/21 4134 -121.10.0.0/20 4134 -121.10.16.0/21 4134 -121.10.24.0/22 58543 -121.10.28.0/22 4134 -121.10.32.0/21 4134 -121.10.40.0/24 4813 -121.10.41.0/24 4134 -121.10.42.0/23 4134 -121.10.44.0/22 4134 -121.10.48.0/20 4134 -121.10.64.0/19 4134 -121.10.96.0/21 4134 -121.10.104.0/21 58543 -121.10.112.0/20 58543 -121.10.128.0/22 4134 -121.10.132.0/22 58543 -121.10.136.0/21 58543 -121.10.144.0/20 4134 -121.10.160.0/21 4134 -121.10.168.0/22 4134 -121.10.172.0/23 58543 -121.10.174.0/23 4134 -121.10.176.0/20 4134 -121.10.192.0/19 4134 -121.10.224.0/20 4134 -121.10.240.0/21 58543 -121.10.248.0/21 4134 -121.11.0.0/21 58543 -121.11.8.0/23 58543 -121.11.10.0/23 4134 -121.11.12.0/22 4134 -121.11.16.0/20 4134 -121.11.32.0/19 134764 -121.11.64.0/19 58543 -121.11.96.0/20 4816 -121.11.112.0/21 4816 -121.11.120.0/21 4134 -121.11.128.0/20 4134 -121.11.144.0/22 4134 -121.11.148.0/23 58543 -121.11.150.0/24 58543 -121.11.151.0/24 4134 -121.11.152.0/22 4134 -121.11.156.0/23 4134 -121.11.158.0/23 58543 -121.11.160.0/21 4134 -121.11.168.0/23 4134 -121.11.170.0/24 4134 -121.11.171.0/24 58543 -121.11.172.0/22 4134 -121.11.176.0/20 4134 -121.11.192.0/19 4134 -121.11.224.0/20 4134 -121.11.240.0/21 4134 -121.11.248.0/22 4134 -121.11.252.0/22 58543 -121.12.0.0/18 58543 -121.12.64.0/21 58543 -121.12.72.0/21 134764 -121.12.80.0/21 4816 -121.12.88.0/22 58543 -121.12.92.0/24 58543 -121.12.93.0/24 4134 -121.12.94.0/24 4134 -121.12.95.0/24 58543 -121.12.96.0/22 58543 -121.12.100.0/22 4134 -121.12.104.0/21 134763 -121.12.112.0/20 134763 -121.12.128.0/19 4134 -121.12.160.0/21 4134 -121.12.168.0/21 134763 -121.12.176.0/20 4134 -121.12.192.0/19 4134 -121.12.224.0/20 4134 -121.12.240.0/21 4134 -121.12.248.0/22 4134 -121.12.252.0/23 4134 -121.12.254.0/24 4134 -121.12.255.0/24 58543 -121.13.0.0/16 4134 -121.14.0.0/18 58466 -121.14.64.0/21 58466 -121.14.72.0/21 4816 -121.14.80.0/20 4816 -121.14.96.0/19 4816 -121.14.128.0/19 134763 -121.14.160.0/19 58543 -121.14.192.0/20 58466 -121.14.208.0/20 58543 -121.14.224.0/19 58543 -121.15.0.0/17 4134 -121.15.128.0/18 4134 -121.15.192.0/20 4134 -121.15.208.0/21 4134 -121.15.216.0/22 4134 -121.15.220.0/23 58543 -121.15.222.0/24 58543 -121.15.223.0/24 4134 -121.15.224.0/20 4134 -121.15.240.0/22 4134 -121.15.244.0/24 4134 -121.15.245.0/24 58543 -121.15.246.0/23 58543 -121.15.248.0/22 4134 -121.15.252.0/24 4134 -121.15.253.0/24 58543 -121.15.254.0/23 4134 -121.16.0.0/12 4837 -121.32.0.0/17 4134 -121.32.128.0/18 4134 -121.32.192.0/19 4134 -121.32.224.0/20 58543 -121.32.240.0/20 134764 -121.33.0.0/16 4134 -121.34.0.0/16 4134 -121.35.0.0/17 4134 -121.35.128.0/18 4134 -121.35.192.0/19 4134 -121.35.224.0/20 4134 -121.35.240.0/21 4134 -121.35.248.0/22 4134 -121.35.252.0/23 4134 -121.35.254.0/24 4816 -121.35.255.0/24 4134 -121.36.0.0/17 55990 -121.36.128.0/18 55990 -121.36.208.0/20 55990 -121.36.224.0/19 55990 -121.37.0.0/16 55990 -121.40.0.0/14 37963 -121.44.0.0/19 7545 -121.44.32.0/19 4739 -121.44.64.0/18 4739 -121.44.128.0/19 7545 -121.44.160.0/19 4739 -121.44.192.0/18 4739 -121.45.0.0/18 4739 -121.45.64.0/19 4739 -121.45.96.0/19 7545 -121.45.128.0/19 7545 -121.45.160.0/19 4739 -121.45.192.0/19 4739 -121.45.224.0/20 4739 -121.45.240.0/20 7545 -121.46.0.0/20 134764 -121.46.16.0/20 135391 -121.46.66.0/23 23750 -121.46.68.0/22 134084 -121.46.80.0/22 26658 -121.46.84.0/22 136696 -121.46.92.0/22 9829 -121.46.110.0/23 9829 -121.46.112.0/22 134875 -121.46.117.0/24 132770 -121.46.118.0/23 132770 -121.46.120.0/22 134688 -121.46.124.0/22 46261 -121.46.128.0/21 58466 -121.46.140.0/22 136958 -121.46.144.0/20 136958 -121.46.192.0/21 23650 -121.46.200.0/22 23650 -121.46.224.0/20 4812 -121.46.244.0/22 4812 -121.46.248.0/22 4812 -121.46.252.0/23 4812 -121.46.254.0/24 4812 -121.47.0.0/16 9811 -121.48.0.0/17 4538 -121.48.128.0/20 4538 -121.48.144.0/21 4538 -121.48.152.0/21 24355 -121.48.160.0/20 24355 -121.48.176.0/20 4538 -121.48.192.0/18 4538 -121.49.0.0/18 4538 -121.49.64.0/18 24355 -121.49.128.0/17 4538 -121.50.0.0/23 24109 -121.50.2.0/24 24109 -121.50.4.0/22 24109 -121.50.16.0/20 4668 -121.50.40.0/21 63997 -121.50.48.0/23 45846 -121.50.50.0/24 45846 -121.50.51.0/24 38715 -121.50.52.0/22 45846 -121.50.56.0/21 10006 -121.50.64.0/18 38086 -121.50.144.0/21 24168 -121.50.152.0/21 10013 -121.50.160.0/21 2497 -121.50.169.0/24 20454 -121.50.176.0/20 18046 -121.50.192.0/19 9313 -121.50.224.0/19 17857 -121.51.0.0/16 45090 -121.52.25.0/24 17885 -121.52.29.0/24 17885 -121.52.35.0/24 17885 -121.52.40.0/23 17885 -121.52.42.0/24 17885 -121.52.45.0/24 17885 -121.52.48.0/21 17885 -121.52.59.0/24 17885 -121.52.60.0/23 17885 -121.52.64.0/22 17885 -121.52.68.0/24 17885 -121.52.70.0/23 17885 -121.52.72.0/21 17885 -121.52.80.0/21 17885 -121.52.88.0/23 17885 -121.52.91.0/24 17885 -121.52.92.0/22 17885 -121.52.128.0/21 56246 -121.52.136.0/21 55699 -121.52.144.0/20 45773 -121.52.160.0/19 4538 -121.52.192.0/21 9723 -121.52.200.0/21 55855 -121.52.208.0/20 4808 -121.52.224.0/19 4837 -121.53.0.0/20 9457 -121.53.16.0/22 9457 -121.53.20.0/23 9457 -121.53.22.0/24 9845 -121.53.23.0/24 9457 -121.53.24.0/21 9457 -121.53.32.0/20 9457 -121.53.48.0/23 9457 -121.53.50.0/23 9770 -121.53.52.0/22 9770 -121.53.56.0/23 9770 -121.53.58.0/23 9457 -121.53.60.0/22 9457 -121.53.64.0/21 9457 -121.53.72.0/22 9770 -121.53.76.0/22 9457 -121.53.80.0/21 7625 -121.53.88.0/21 9457 -121.53.96.0/23 9457 -121.53.98.0/23 9770 -121.53.100.0/22 9457 -121.53.104.0/21 9457 -121.53.112.0/20 9457 -121.53.128.0/22 9457 -121.53.132.0/23 9457 -121.53.134.0/23 9770 -121.53.136.0/21 9457 -121.53.144.0/20 9457 -121.53.160.0/19 9457 -121.53.192.0/21 9457 -121.53.200.0/21 38099 -121.53.208.0/22 9457 -121.53.212.0/22 45991 -121.53.216.0/22 7625 -121.53.220.0/22 9457 -121.53.224.0/20 9457 -121.53.240.0/22 7625 -121.53.244.0/22 38099 -121.53.248.0/22 9457 -121.53.252.0/23 9457 -121.53.254.0/24 9457 -121.53.255.0/24 38101 -121.54.0.0/17 10139 -121.54.128.0/24 4826 -121.54.129.0/24 23877 -121.54.130.0/23 4826 -121.54.132.0/22 4826 -121.54.136.0/22 4826 -121.54.140.0/24 132433 -121.54.141.0/24 4826 -121.54.142.0/23 4826 -121.54.144.0/24 131109 -121.54.145.0/24 4826 -121.54.146.0/23 131109 -121.54.148.0/22 131109 -121.54.152.0/21 131109 -121.54.160.0/22 132839 -121.54.164.0/22 134739 -121.54.168.0/21 38197 -121.54.184.0/22 17907 -121.54.188.0/22 62468 -121.54.200.0/21 17577 -121.54.208.0/20 17577 -121.54.224.0/19 17577 -121.55.0.0/18 45061 -121.55.64.0/18 9781 -121.55.128.0/18 9781 -121.55.192.0/18 3605 -121.56.0.0/15 4134 -121.58.0.0/18 4134 -121.58.64.0/19 4134 -121.58.96.0/19 4809 -121.58.128.0/21 131954 -121.58.144.0/23 7497 -121.58.146.0/24 7497 -121.58.147.0/24 38364 -121.58.148.0/22 7497 -121.58.152.0/22 7497 -121.58.156.0/22 4847 -121.58.169.0/24 18223 -121.58.172.0/23 18223 -121.58.176.0/21 7670 -121.58.186.0/24 38896 -121.58.188.0/22 38896 -121.58.192.0/22 17639 -121.58.196.0/23 17639 -121.58.198.0/24 18190 -121.58.199.0/24 17639 -121.58.200.0/21 17639 -121.58.208.0/20 17639 -121.58.224.0/21 17639 -121.58.232.0/24 18188 -121.58.233.0/24 17639 -121.58.234.0/23 17639 -121.58.236.0/22 17639 -121.58.240.0/20 17639 -121.59.0.0/23 4134 -121.59.2.0/23 4809 -121.59.4.0/22 4809 -121.59.8.0/21 4809 -121.59.17.0/24 4809 -121.60.0.0/14 4134 -121.64.0.0/16 3786 -121.65.0.0/17 3786 -121.65.128.0/18 3786 -121.65.192.0/19 3786 -121.65.224.0/21 3786 -121.65.232.0/22 3786 -121.65.236.0/24 38707 -121.65.237.0/24 3786 -121.65.238.0/23 3786 -121.65.240.0/22 3786 -121.65.244.0/24 3786 -121.65.245.0/24 45983 -121.65.246.0/24 3786 -121.65.247.0/24 9856 -121.65.248.0/21 3786 -121.66.0.0/16 3786 -121.67.0.0/17 3786 -121.67.128.0/21 3786 -121.67.136.0/24 3786 -121.67.137.0/24 9631 -121.67.138.0/23 3786 -121.67.140.0/22 3786 -121.67.144.0/20 3786 -121.67.160.0/19 3786 -121.67.192.0/18 3786 -121.68.0.0/16 17964 -121.69.0.0/16 4808 -121.71.0.0/17 17964 -121.71.128.0/17 4808 -121.72.0.0/15 4768 -121.74.0.0/15 9500 -121.76.0.0/15 9812 -121.78.0.0/22 9957 -121.78.4.0/23 9957 -121.78.6.0/23 9286 -121.78.8.0/21 9286 -121.78.16.0/20 9286 -121.78.32.0/21 9286 -121.78.40.0/22 9286 -121.78.44.0/23 9286 -121.78.46.0/24 20940 -121.78.47.0/24 9286 -121.78.48.0/24 46003 -121.78.49.0/24 9286 -121.78.50.0/23 9286 -121.78.52.0/22 9286 -121.78.56.0/21 9286 -121.78.64.0/23 38107 -121.78.66.0/23 9286 -121.78.68.0/23 9286 -121.78.70.0/24 9957 -121.78.71.0/24 9286 -121.78.72.0/22 9286 -121.78.76.0/23 9286 -121.78.78.0/24 9286 -121.78.79.0/24 17589 -121.78.80.0/22 9286 -121.78.84.0/23 9286 -121.78.86.0/24 9286 -121.78.87.0/24 17589 -121.78.88.0/22 9286 -121.78.92.0/24 9286 -121.78.93.0/24 17589 -121.78.94.0/24 9286 -121.78.95.0/24 17589 -121.78.96.0/20 9286 -121.78.112.0/21 17589 -121.78.120.0/24 9286 -121.78.121.0/24 17589 -121.78.122.0/23 17589 -121.78.124.0/22 17589 -121.78.128.0/22 17589 -121.78.132.0/23 17589 -121.78.134.0/24 17589 -121.78.135.0/24 9286 -121.78.136.0/21 9286 -121.78.144.0/22 17589 -121.78.148.0/22 9286 -121.78.152.0/24 9286 -121.78.153.0/24 38118 -121.78.154.0/23 9286 -121.78.156.0/23 9286 -121.78.158.0/24 45382 -121.78.159.0/24 63199 -121.78.160.0/20 9286 -121.78.176.0/24 9286 -121.78.177.0/24 17589 -121.78.178.0/23 17589 -121.78.180.0/23 9286 -121.78.182.0/23 17589 -121.78.184.0/21 9286 -121.78.192.0/22 17589 -121.78.196.0/23 17589 -121.78.198.0/23 9286 -121.78.200.0/21 9286 -121.78.208.0/20 9286 -121.78.224.0/19 9286 -121.79.0.0/18 4826 -121.79.64.0/19 4826 -121.79.96.0/20 4826 -121.79.112.0/21 4826 -121.79.120.0/22 4826 -121.79.124.0/23 4826 -121.79.126.0/23 9443 -121.79.128.0/20 38364 -121.79.144.0/22 38364 -121.79.192.0/18 17705 -121.80.0.0/13 17511 -121.88.0.0/17 10036 -121.88.128.0/18 10036 -121.88.192.0/19 10036 -121.88.224.0/20 7562 -121.88.240.0/20 10036 -121.90.0.0/16 9500 -121.91.0.0/16 9723 -121.92.0.0/14 2510 -121.96.0.0/16 6648 -121.97.0.0/21 6648 -121.97.8.0/24 9771 -121.97.9.0/24 6648 -121.97.10.0/23 6648 -121.97.12.0/22 6648 -121.97.16.0/20 6648 -121.97.32.0/24 24081 -121.97.33.0/24 6648 -121.97.34.0/23 6648 -121.97.36.0/24 10141 -121.97.37.0/24 6648 -121.97.38.0/23 6648 -121.97.40.0/21 6648 -121.97.48.0/22 6648 -121.97.52.0/23 6648 -121.97.54.0/23 45622 -121.97.56.0/24 45622 -121.97.57.0/24 6648 -121.97.58.0/23 6648 -121.97.60.0/22 6648 -121.97.64.0/18 6648 -121.97.128.0/17 6648 -121.98.0.0/15 9790 -121.100.0.0/21 38158 -121.100.8.0/21 23776 -121.100.16.0/22 9341 -121.100.22.0/23 9341 -121.100.24.0/21 38761 -121.100.32.0/20 38258 -121.100.48.0/21 38742 -121.100.56.0/21 18097 -121.100.64.0/18 18334 -121.101.64.0/18 2527 -121.101.128.0/21 131706 -121.101.136.0/21 24130 -121.101.160.0/22 133419 -121.101.164.0/23 133419 -121.101.166.0/24 133419 -121.101.168.0/22 4515 -121.101.172.0/24 9304 -121.101.176.0/21 38869 -121.101.184.0/21 38785 -121.101.192.0/20 4766 -121.101.208.0/24 23724 -121.101.209.0/24 63691 -121.101.210.0/23 23724 -121.101.212.0/22 23724 -121.101.216.0/22 23724 -121.101.220.0/23 23724 -121.101.222.0/24 63691 -121.101.223.0/24 23724 -121.101.224.0/19 10036 -121.102.0.0/16 2497 -121.103.0.0/16 2527 -121.104.0.0/13 2516 -121.112.0.0/13 4713 -121.120.0.0/14 9534 -121.124.0.0/18 9318 -121.124.64.0/19 9318 -121.124.96.0/21 9318 -121.124.104.0/22 9318 -121.124.108.0/23 9318 -121.124.110.0/24 9318 -121.124.111.0/24 10188 -121.124.112.0/20 9318 -121.124.128.0/17 9318 -121.125.0.0/16 9318 -121.126.0.0/17 4766 -121.126.128.0/18 4766 -121.126.192.0/20 4766 -121.126.208.0/23 4766 -121.126.210.0/24 4766 -121.126.211.0/24 3786 -121.126.212.0/22 4766 -121.126.216.0/21 4766 -121.126.224.0/19 4766 -121.127.4.0/23 38491 -121.127.6.0/23 23930 -121.127.8.0/21 23930 -121.127.16.0/23 23930 -121.127.18.0/24 23930 -121.127.20.0/24 38539 -121.127.21.0/24 23930 -121.127.22.0/23 23930 -121.127.26.0/23 23930 -121.127.28.0/22 23930 -121.127.32.0/21 55732 -121.127.64.0/18 9756 -121.127.128.0/18 9756 -121.127.192.0/19 7718 -121.127.224.0/19 38197 -121.128.0.0/20 4766 -121.128.16.0/21 4766 -121.128.24.0/22 4766 -121.128.28.0/23 4790 -121.128.30.0/23 4766 -121.128.32.0/20 4766 -121.128.48.0/22 4766 -121.128.52.0/23 4766 -121.128.54.0/24 4766 -121.128.55.0/24 9647 -121.128.56.0/21 4766 -121.128.64.0/18 4766 -121.128.128.0/19 4766 -121.128.160.0/22 4766 -121.128.164.0/23 4766 -121.128.166.0/24 4790 -121.128.167.0/24 4766 -121.128.168.0/21 4766 -121.128.176.0/20 4766 -121.128.192.0/20 4766 -121.128.208.0/21 4766 -121.128.216.0/23 4766 -121.128.218.0/24 4766 -121.128.219.0/24 9647 -121.128.220.0/22 4766 -121.128.224.0/19 4766 -121.129.0.0/19 4766 -121.129.32.0/20 4766 -121.129.48.0/24 4766 -121.129.49.0/24 9776 -121.129.50.0/23 4766 -121.129.52.0/22 4766 -121.129.56.0/21 4766 -121.129.64.0/18 4766 -121.129.128.0/17 4766 -121.130.0.0/19 4766 -121.130.32.0/21 4766 -121.130.40.0/22 4766 -121.130.44.0/23 4766 -121.130.46.0/23 9684 -121.130.48.0/20 4766 -121.130.64.0/18 4766 -121.130.128.0/17 4766 -121.131.0.0/22 4766 -121.131.4.0/23 4766 -121.131.6.0/24 4766 -121.131.7.0/24 10040 -121.131.8.0/21 4766 -121.131.16.0/20 4766 -121.131.32.0/19 4766 -121.131.64.0/18 4766 -121.131.128.0/20 4766 -121.131.144.0/24 4766 -121.131.145.0/24 38126 -121.131.146.0/23 4766 -121.131.148.0/22 4766 -121.131.152.0/21 4766 -121.131.160.0/19 4766 -121.131.192.0/20 4766 -121.131.208.0/21 4766 -121.131.216.0/24 4766 -121.131.217.0/24 9856 -121.131.218.0/23 4766 -121.131.220.0/22 4766 -121.131.224.0/19 4766 -121.132.0.0/16 4766 -121.133.0.0/19 4766 -121.133.32.0/21 4766 -121.133.40.0/24 4766 -121.133.41.0/24 9640 -121.133.42.0/23 4766 -121.133.44.0/22 4766 -121.133.48.0/20 4766 -121.133.64.0/19 4766 -121.133.96.0/20 4766 -121.133.112.0/21 4766 -121.133.120.0/22 4766 -121.133.124.0/23 4766 -121.133.126.0/24 45401 -121.133.127.0/24 4766 -121.133.128.0/18 4766 -121.133.192.0/22 4766 -121.133.196.0/23 4766 -121.133.198.0/24 38394 -121.133.199.0/24 38395 -121.133.200.0/23 4766 -121.133.202.0/24 4766 -121.133.203.0/24 38399 -121.133.204.0/22 4766 -121.133.208.0/24 4766 -121.133.209.0/24 38412 -121.133.210.0/23 4766 -121.133.212.0/22 4766 -121.133.216.0/21 4766 -121.133.224.0/19 4766 -121.134.0.0/19 4766 -121.134.32.0/20 4766 -121.134.48.0/22 4766 -121.134.52.0/23 4766 -121.134.54.0/24 9696 -121.134.55.0/24 4766 -121.134.56.0/21 4766 -121.134.64.0/18 4766 -121.134.128.0/18 4766 -121.134.192.0/19 4766 -121.134.224.0/21 4766 -121.134.232.0/23 4766 -121.134.234.0/24 18333 -121.134.235.0/24 4766 -121.134.236.0/22 4766 -121.134.240.0/20 4766 -121.135.0.0/19 4766 -121.135.32.0/20 4766 -121.135.48.0/22 4766 -121.135.52.0/24 4766 -121.135.53.0/24 38697 -121.135.54.0/23 38697 -121.135.56.0/24 38697 -121.135.57.0/24 4766 -121.135.58.0/23 4766 -121.135.60.0/22 4766 -121.135.64.0/18 4766 -121.135.128.0/20 4766 -121.135.144.0/23 4766 -121.135.146.0/24 4766 -121.135.147.0/24 46002 -121.135.148.0/24 46002 -121.135.149.0/24 4766 -121.135.150.0/23 4766 -121.135.152.0/21 4766 -121.135.160.0/19 4766 -121.135.192.0/18 4766 -121.136.0.0/18 4766 -121.136.64.0/20 4766 -121.136.80.0/21 4766 -121.136.88.0/22 4766 -121.136.92.0/24 45404 -121.136.93.0/24 4766 -121.136.94.0/23 4766 -121.136.96.0/19 4766 -121.136.128.0/17 4766 -121.137.0.0/18 4766 -121.137.64.0/20 4766 -121.137.80.0/22 4766 -121.137.84.0/23 4766 -121.137.86.0/24 4766 -121.137.87.0/24 46009 -121.137.88.0/23 46009 -121.137.90.0/24 46009 -121.137.91.0/24 4766 -121.137.92.0/23 4766 -121.137.94.0/23 46009 -121.137.96.0/24 46009 -121.137.97.0/24 4766 -121.137.98.0/23 4766 -121.137.100.0/22 4766 -121.137.104.0/24 4766 -121.137.105.0/24 46009 -121.137.106.0/23 46009 -121.137.108.0/22 4766 -121.137.112.0/20 4766 -121.137.128.0/17 4766 -121.138.0.0/20 4766 -121.138.16.0/21 4766 -121.138.24.0/22 4766 -121.138.28.0/24 4766 -121.138.29.0/24 55630 -121.138.30.0/24 55630 -121.138.31.0/24 4766 -121.138.32.0/19 4766 -121.138.64.0/18 4766 -121.138.128.0/21 4766 -121.138.136.0/22 4766 -121.138.140.0/23 4766 -121.138.142.0/24 4766 -121.138.143.0/24 9696 -121.138.144.0/20 4766 -121.138.160.0/19 4766 -121.138.192.0/18 4766 -121.139.0.0/17 4766 -121.139.128.0/21 4766 -121.139.136.0/24 4766 -121.139.137.0/24 3786 -121.139.138.0/23 4766 -121.139.140.0/22 4766 -121.139.144.0/20 4766 -121.139.160.0/19 4766 -121.139.192.0/18 4766 -121.140.0.0/19 4766 -121.140.32.0/20 4766 -121.140.48.0/23 4766 -121.140.50.0/24 55592 -121.140.51.0/24 4766 -121.140.52.0/22 4766 -121.140.56.0/21 4766 -121.140.64.0/19 4766 -121.140.96.0/24 4766 -121.140.97.0/24 9530 -121.140.98.0/23 4766 -121.140.100.0/22 4766 -121.140.104.0/24 55592 -121.140.105.0/24 4766 -121.140.106.0/23 4766 -121.140.108.0/22 4766 -121.140.112.0/22 4766 -121.140.116.0/23 4766 -121.140.118.0/24 55592 -121.140.119.0/24 4766 -121.140.120.0/21 4766 -121.140.128.0/21 4766 -121.140.136.0/24 4766 -121.140.137.0/24 55592 -121.140.138.0/23 4766 -121.140.140.0/22 4766 -121.140.144.0/20 4766 -121.140.160.0/19 4766 -121.140.192.0/18 4766 -121.141.0.0/18 4766 -121.141.64.0/19 4766 -121.141.96.0/22 4766 -121.141.100.0/24 4766 -121.141.101.0/24 9776 -121.141.102.0/23 4766 -121.141.104.0/21 4766 -121.141.112.0/20 4766 -121.141.128.0/17 4766 -121.142.0.0/16 4766 -121.143.0.0/17 4766 -121.143.128.0/18 4766 -121.143.192.0/19 4766 -121.143.224.0/20 4766 -121.143.240.0/23 4766 -121.143.242.0/24 9968 -121.143.243.0/24 4766 -121.143.244.0/22 4766 -121.143.248.0/21 4766 -121.144.0.0/17 4766 -121.144.128.0/21 4766 -121.144.136.0/22 4766 -121.144.140.0/22 9870 -121.144.144.0/22 9870 -121.144.148.0/23 9870 -121.144.150.0/23 4766 -121.144.152.0/21 4766 -121.144.160.0/19 4766 -121.144.192.0/18 4766 -121.145.0.0/16 4766 -121.146.0.0/15 4766 -121.148.0.0/14 4766 -121.152.0.0/14 4766 -121.156.0.0/18 4766 -121.156.64.0/22 4766 -121.156.68.0/24 4766 -121.156.69.0/24 17834 -121.156.70.0/23 4766 -121.156.72.0/21 4766 -121.156.80.0/20 4766 -121.156.96.0/19 4766 -121.156.128.0/17 4766 -121.157.0.0/22 9862 -121.157.4.0/24 9862 -121.157.5.0/24 4766 -121.157.6.0/23 4766 -121.157.8.0/21 4766 -121.157.16.0/20 4766 -121.157.32.0/19 4766 -121.157.64.0/19 4766 -121.157.96.0/21 4766 -121.157.104.0/22 4766 -121.157.108.0/24 9638 -121.157.109.0/24 4766 -121.157.110.0/23 9638 -121.157.112.0/20 4766 -121.157.128.0/17 4766 -121.158.0.0/16 4766 -121.159.0.0/18 4766 -121.159.64.0/19 4766 -121.159.96.0/20 4766 -121.159.112.0/21 4766 -121.159.120.0/24 4766 -121.159.121.0/24 9782 -121.159.122.0/23 4766 -121.159.124.0/22 4766 -121.159.128.0/17 4766 -121.160.0.0/19 4766 -121.160.32.0/20 4766 -121.160.48.0/21 4766 -121.160.56.0/23 4766 -121.160.58.0/24 4766 -121.160.59.0/24 9968 -121.160.60.0/22 4766 -121.160.64.0/22 4766 -121.160.68.0/23 4766 -121.160.70.0/24 4766 -121.160.71.0/24 9647 -121.160.72.0/21 4766 -121.160.80.0/20 4766 -121.160.96.0/19 4766 -121.160.128.0/17 4766 -121.161.0.0/16 4766 -121.162.0.0/18 4766 -121.162.64.0/19 4766 -121.162.96.0/21 4766 -121.162.104.0/22 4766 -121.162.108.0/24 9843 -121.162.109.0/24 4766 -121.162.110.0/23 4766 -121.162.112.0/21 4766 -121.162.120.0/23 4766 -121.162.122.0/24 4766 -121.162.123.0/24 3786 -121.162.124.0/22 4766 -121.162.128.0/20 4766 -121.162.144.0/21 4766 -121.162.152.0/23 4766 -121.162.154.0/23 17859 -121.162.156.0/22 4766 -121.162.160.0/21 4766 -121.162.168.0/22 4766 -121.162.172.0/23 4766 -121.162.174.0/24 4766 -121.162.175.0/24 16477 -121.162.176.0/20 4766 -121.162.192.0/18 4766 -121.163.0.0/17 4766 -121.163.128.0/19 4766 -121.163.160.0/21 4766 -121.163.168.0/22 4766 -121.163.172.0/24 4766 -121.163.173.0/24 38431 -121.163.174.0/24 4766 -121.163.175.0/24 38431 -121.163.176.0/20 4766 -121.163.192.0/21 4766 -121.163.200.0/22 4766 -121.163.204.0/24 38415 -121.163.205.0/24 4766 -121.163.206.0/23 4766 -121.163.208.0/20 4766 -121.163.224.0/20 4766 -121.163.240.0/21 4766 -121.163.248.0/22 4766 -121.163.252.0/23 4766 -121.163.254.0/24 4766 -121.163.255.0/24 38392 -121.164.0.0/18 4766 -121.164.64.0/19 4766 -121.164.96.0/20 4766 -121.164.112.0/22 4766 -121.164.116.0/24 9778 -121.164.117.0/24 4766 -121.164.118.0/23 4766 -121.164.120.0/21 4766 -121.164.128.0/17 4766 -121.165.0.0/17 4766 -121.165.128.0/19 4766 -121.165.160.0/21 4766 -121.165.168.0/22 4766 -121.165.172.0/24 9696 -121.165.173.0/24 4766 -121.165.174.0/23 4766 -121.165.176.0/20 4766 -121.165.192.0/18 4766 -121.166.0.0/18 4766 -121.166.64.0/21 4766 -121.166.72.0/22 4766 -121.166.76.0/24 4766 -121.166.77.0/24 9696 -121.166.78.0/23 4766 -121.166.80.0/20 4766 -121.166.96.0/19 4766 -121.166.128.0/17 4766 -121.167.0.0/16 4766 -121.168.0.0/21 4766 -121.168.8.0/24 4766 -121.168.9.0/24 9684 -121.168.10.0/23 4766 -121.168.12.0/22 4766 -121.168.16.0/20 4766 -121.168.32.0/19 4766 -121.168.64.0/18 4766 -121.168.128.0/18 4766 -121.168.192.0/19 4766 -121.168.224.0/20 4766 -121.168.240.0/21 4766 -121.168.248.0/23 4766 -121.168.250.0/24 4766 -121.168.251.0/24 23582 -121.168.252.0/22 23582 -121.169.0.0/16 4766 -121.170.0.0/17 4766 -121.170.128.0/21 4766 -121.170.136.0/22 4766 -121.170.140.0/23 4766 -121.170.142.0/24 9530 -121.170.143.0/24 4766 -121.170.144.0/23 4766 -121.170.146.0/24 4766 -121.170.147.0/24 55592 -121.170.148.0/22 4766 -121.170.152.0/21 4766 -121.170.160.0/20 4766 -121.170.176.0/22 9530 -121.170.180.0/22 4766 -121.170.184.0/21 4766 -121.170.192.0/21 4766 -121.170.200.0/22 4766 -121.170.204.0/24 45382 -121.170.205.0/24 4766 -121.170.206.0/23 4766 -121.170.208.0/20 4766 -121.170.224.0/19 4766 -121.171.0.0/17 4766 -121.171.128.0/20 4766 -121.171.144.0/22 4766 -121.171.148.0/23 4766 -121.171.150.0/24 9530 -121.171.151.0/24 4766 -121.171.152.0/21 4766 -121.171.160.0/19 4766 -121.171.192.0/18 4766 -121.172.0.0/17 4766 -121.172.128.0/20 4766 -121.172.144.0/23 4766 -121.172.146.0/24 38093 -121.172.147.0/24 4766 -121.172.148.0/22 4766 -121.172.152.0/21 4766 -121.172.160.0/19 4766 -121.172.192.0/18 4766 -121.173.0.0/16 4766 -121.174.0.0/17 4766 -121.174.128.0/20 4766 -121.174.144.0/21 4766 -121.174.152.0/22 4766 -121.174.156.0/24 4766 -121.174.157.0/24 38112 -121.174.158.0/23 4766 -121.174.160.0/19 4766 -121.174.192.0/18 4766 -121.175.0.0/20 4766 -121.175.16.0/21 4766 -121.175.24.0/22 4766 -121.175.28.0/24 38087 -121.175.29.0/24 4766 -121.175.30.0/23 4766 -121.175.32.0/19 4766 -121.175.64.0/18 4766 -121.175.128.0/17 4766 -121.176.0.0/16 4766 -121.177.0.0/20 4766 -121.177.16.0/21 4766 -121.177.24.0/22 4766 -121.177.28.0/23 4766 -121.177.30.0/24 4766 -121.177.31.0/24 38427 -121.177.32.0/19 4766 -121.177.64.0/18 4766 -121.177.128.0/17 4766 -121.178.0.0/15 4766 -121.180.0.0/16 4766 -121.181.0.0/17 4766 -121.181.128.0/18 4766 -121.181.192.0/22 4766 -121.181.196.0/24 38696 -121.181.197.0/24 4766 -121.181.198.0/23 4766 -121.181.200.0/21 4766 -121.181.208.0/20 4766 -121.181.224.0/19 4766 -121.182.0.0/15 4766 -121.184.0.0/17 4766 -121.184.128.0/19 4766 -121.184.160.0/20 4766 -121.184.176.0/21 4766 -121.184.184.0/22 38105 -121.184.188.0/23 38105 -121.184.190.0/23 4766 -121.184.192.0/21 38105 -121.184.200.0/23 38105 -121.184.202.0/23 4766 -121.184.204.0/22 4766 -121.184.208.0/20 4766 -121.184.224.0/19 4766 -121.185.0.0/21 4766 -121.185.8.0/22 4766 -121.185.12.0/24 4766 -121.185.13.0/24 18169 -121.185.14.0/23 4766 -121.185.16.0/20 4766 -121.185.32.0/19 4766 -121.185.64.0/18 4766 -121.185.128.0/17 4766 -121.186.0.0/16 4766 -121.187.0.0/20 4766 -121.187.16.0/22 4766 -121.187.20.0/23 4766 -121.187.22.0/24 4766 -121.187.23.0/24 55615 -121.187.24.0/21 4766 -121.187.32.0/19 4766 -121.187.64.0/20 17862 -121.187.80.0/22 17862 -121.187.84.0/23 17862 -121.187.86.0/23 4766 -121.187.88.0/21 4766 -121.187.96.0/19 4766 -121.187.128.0/17 4766 -121.188.0.0/16 4766 -121.189.0.0/19 4766 -121.189.32.0/21 4766 -121.189.40.0/22 4766 -121.189.44.0/23 4766 -121.189.46.0/23 15133 -121.189.48.0/20 4766 -121.189.64.0/18 4766 -121.189.128.0/19 4766 -121.189.160.0/22 4766 -121.189.164.0/23 4766 -121.189.166.0/24 4766 -121.189.167.0/24 55622 -121.189.168.0/22 55622 -121.189.172.0/22 4766 -121.189.176.0/20 4766 -121.189.192.0/18 4766 -121.190.0.0/17 4766 -121.190.128.0/19 4766 -121.190.160.0/21 4766 -121.190.168.0/22 4766 -121.190.172.0/23 4766 -121.190.174.0/24 3786 -121.190.175.0/24 4766 -121.190.176.0/20 4766 -121.190.192.0/20 4766 -121.190.208.0/23 45399 -121.190.210.0/23 4766 -121.190.212.0/22 4766 -121.190.216.0/21 4766 -121.190.224.0/20 4766 -121.190.240.0/21 4766 -121.190.248.0/23 4766 -121.190.250.0/24 38391 -121.190.251.0/24 38404 -121.190.252.0/22 4766 -121.191.0.0/16 4766 -121.192.0.0/14 4538 -121.196.0.0/14 37963 -121.200.0.0/19 4764 -121.200.32.0/23 10214 -121.200.34.0/24 10214 -121.200.47.0/24 10214 -121.200.48.0/21 45284 -121.200.57.0/24 136987 -121.200.58.0/24 136987 -121.200.60.0/22 55828 -121.200.64.0/18 17849 -121.200.128.0/18 18144 -121.200.200.0/21 2497 -121.200.208.0/21 9336 -121.200.224.0/20 38809 -121.200.240.0/20 4628 -121.201.0.0/17 58543 -121.201.128.0/17 17623 -121.202.0.0/15 17924 -121.204.0.0/17 4134 -121.204.128.0/18 133774 -121.204.192.0/20 133774 -121.204.208.0/21 133774 -121.204.216.0/22 133774 -121.204.220.0/23 133774 -121.204.222.0/23 4134 -121.204.224.0/21 133774 -121.204.232.0/23 133774 -121.204.234.0/23 133775 -121.204.236.0/22 133775 -121.204.240.0/22 133775 -121.204.244.0/22 133776 -121.204.248.0/22 133776 -121.204.252.0/23 133776 -121.204.254.0/23 4134 -121.205.0.0/16 4134 -121.206.0.0/16 4134 -121.207.0.0/17 4134 -121.207.128.0/18 4134 -121.207.192.0/19 4134 -121.207.224.0/19 133774 -121.208.0.0/12 1221 -121.224.0.0/19 4134 -121.224.32.0/20 4134 -121.224.48.0/21 4134 -121.224.56.0/23 4134 -121.224.58.0/24 4134 -121.224.59.0/24 23650 -121.224.60.0/22 4134 -121.224.64.0/19 4134 -121.224.96.0/24 23650 -121.224.97.0/24 4134 -121.224.98.0/23 4134 -121.224.100.0/22 4134 -121.224.104.0/21 4134 -121.224.112.0/23 4134 -121.224.114.0/24 4134 -121.224.115.0/24 23650 -121.224.116.0/22 4134 -121.224.120.0/21 4134 -121.224.128.0/19 4134 -121.224.160.0/22 4134 -121.224.164.0/24 23650 -121.224.165.0/24 4134 -121.224.166.0/23 4134 -121.224.168.0/21 4134 -121.224.176.0/20 4134 -121.224.192.0/18 4134 -121.225.0.0/16 4134 -121.226.0.0/17 4134 -121.226.128.0/18 4134 -121.226.192.0/24 4134 -121.226.193.0/24 137699 -121.226.194.0/23 4134 -121.226.196.0/22 4134 -121.226.200.0/21 4134 -121.226.208.0/20 4134 -121.226.224.0/20 4134 -121.226.240.0/22 4134 -121.226.244.0/23 4134 -121.226.246.0/24 4134 -121.226.247.0/24 137699 -121.226.248.0/21 4134 -121.227.0.0/24 23650 -121.227.1.0/24 4134 -121.227.2.0/23 4134 -121.227.4.0/23 4134 -121.227.6.0/24 4134 -121.227.7.0/24 23650 -121.227.8.0/21 4134 -121.227.16.0/21 4134 -121.227.24.0/22 4134 -121.227.28.0/23 4134 -121.227.30.0/23 23650 -121.227.32.0/19 4134 -121.227.64.0/19 4134 -121.227.96.0/21 4134 -121.227.104.0/23 4134 -121.227.106.0/24 4134 -121.227.107.0/24 23650 -121.227.108.0/22 4134 -121.227.112.0/20 4134 -121.227.128.0/20 4134 -121.227.144.0/21 4134 -121.227.152.0/23 23650 -121.227.154.0/23 4134 -121.227.156.0/22 4134 -121.227.160.0/21 4134 -121.227.168.0/24 23650 -121.227.169.0/24 4134 -121.227.170.0/23 4134 -121.227.172.0/22 4134 -121.227.176.0/20 4134 -121.227.192.0/22 4134 -121.227.196.0/24 23650 -121.227.197.0/24 4134 -121.227.198.0/23 4134 -121.227.200.0/21 4134 -121.227.208.0/20 4134 -121.227.224.0/19 4134 -121.228.0.0/20 4134 -121.228.16.0/21 4134 -121.228.24.0/22 4134 -121.228.28.0/23 4134 -121.228.30.0/24 4134 -121.228.31.0/24 23650 -121.228.32.0/19 4134 -121.228.64.0/19 4134 -121.228.96.0/21 4134 -121.228.104.0/24 4134 -121.228.105.0/24 23650 -121.228.106.0/23 4134 -121.228.108.0/22 4134 -121.228.112.0/20 4134 -121.228.128.0/23 4134 -121.228.130.0/24 23650 -121.228.131.0/24 4134 -121.228.132.0/22 4134 -121.228.136.0/21 4134 -121.228.144.0/20 4134 -121.228.160.0/22 4134 -121.228.164.0/23 4134 -121.228.166.0/24 23650 -121.228.167.0/24 4134 -121.228.168.0/21 4134 -121.228.176.0/20 4134 -121.228.192.0/19 4134 -121.228.224.0/20 4134 -121.228.240.0/21 4134 -121.228.248.0/23 4134 -121.228.250.0/24 23650 -121.228.251.0/24 4134 -121.228.252.0/22 4134 -121.229.0.0/18 23650 -121.229.64.0/18 4134 -121.229.128.0/20 4134 -121.229.144.0/24 139584 -121.229.145.0/24 4134 -121.229.146.0/23 4134 -121.229.148.0/22 4134 -121.229.152.0/21 4134 -121.229.160.0/19 4134 -121.229.192.0/18 4134 -121.230.0.0/15 4134 -121.232.0.0/14 4134 -121.236.0.0/17 4134 -121.236.128.0/19 4134 -121.236.160.0/21 4134 -121.236.168.0/22 4134 -121.236.172.0/23 4134 -121.236.174.0/24 4134 -121.236.175.0/24 23650 -121.236.176.0/20 4134 -121.236.192.0/18 4134 -121.237.0.0/19 4134 -121.237.32.0/23 137702 -121.237.34.0/23 4134 -121.237.36.0/22 4134 -121.237.40.0/21 4134 -121.237.48.0/20 4134 -121.237.64.0/18 4134 -121.237.128.0/19 4134 -121.237.160.0/20 4134 -121.237.176.0/21 137702 -121.237.184.0/21 4134 -121.237.192.0/18 4134 -121.238.0.0/15 4134 -121.240.0.0/16 4755 -121.241.0.0/17 4755 -121.241.128.0/18 4755 -121.241.192.0/19 4755 -121.241.224.0/22 4755 -121.241.228.0/23 4755 -121.241.230.0/24 9238 -121.241.231.0/24 4755 -121.241.232.0/21 4755 -121.241.240.0/20 4755 -121.242.0.0/20 4755 -121.242.16.0/22 4755 -121.242.20.0/24 4755 -121.242.21.0/24 45820 -121.242.22.0/23 4755 -121.242.24.0/21 4755 -121.242.32.0/19 4755 -121.242.64.0/18 4755 -121.242.128.0/17 4755 -121.243.0.0/18 4755 -121.243.64.0/20 4755 -121.243.80.0/22 4755 -121.243.84.0/23 4755 -121.243.86.0/24 4755 -121.243.87.0/24 138785 -121.243.88.0/21 4755 -121.243.96.0/19 4755 -121.243.128.0/17 17908 -121.244.0.0/21 10199 -121.244.8.0/23 4755 -121.244.10.0/23 10199 -121.244.12.0/22 10199 -121.244.16.0/22 10199 -121.244.20.0/23 10199 -121.244.22.0/23 4755 -121.244.24.0/21 4755 -121.244.32.0/19 4755 -121.244.64.0/21 4755 -121.244.72.0/23 4755 -121.244.74.0/23 40009 -121.244.76.0/22 4755 -121.244.80.0/20 4755 -121.244.96.0/19 4755 -121.244.128.0/21 4755 -121.244.136.0/23 40009 -121.244.138.0/23 4755 -121.244.140.0/22 4755 -121.244.144.0/20 4755 -121.244.160.0/21 4755 -121.244.168.0/22 4755 -121.244.172.0/23 40009 -121.244.174.0/23 4755 -121.244.176.0/21 4755 -121.244.184.0/22 4755 -121.244.188.0/23 4755 -121.244.190.0/23 40009 -121.244.192.0/21 4755 -121.244.200.0/22 4755 -121.244.204.0/23 40009 -121.244.206.0/23 4755 -121.244.208.0/20 4755 -121.244.224.0/20 4755 -121.244.240.0/21 4755 -121.245.0.0/19 10199 -121.245.32.0/20 4755 -121.245.64.0/19 10199 -121.245.96.0/20 10199 -121.245.112.0/20 4755 -121.245.144.0/20 10199 -121.245.160.0/19 10199 -121.245.192.0/19 17908 -121.245.224.0/22 17908 -121.245.232.0/21 17908 -121.246.0.0/18 17908 -121.246.64.0/19 17908 -121.246.96.0/20 17908 -121.246.112.0/22 17908 -121.246.116.0/24 4755 -121.246.117.0/24 17908 -121.246.118.0/23 17908 -121.246.120.0/21 17908 -121.246.128.0/22 17908 -121.246.132.0/24 17908 -121.246.133.0/24 4755 -121.246.134.0/24 4755 -121.246.135.0/24 17908 -121.246.136.0/22 4755 -121.246.140.0/22 17908 -121.246.144.0/20 17908 -121.246.160.0/19 17908 -121.246.192.0/18 17908 -121.247.0.0/18 17908 -121.247.64.0/19 17908 -121.247.96.0/22 4755 -121.247.100.0/24 4755 -121.247.101.0/24 17908 -121.247.102.0/23 17908 -121.247.104.0/22 17908 -121.247.108.0/24 4755 -121.247.109.0/24 17908 -121.247.110.0/23 17908 -121.247.112.0/20 17908 -121.247.128.0/20 17908 -121.247.144.0/23 17908 -121.247.146.0/24 17908 -121.247.147.0/24 4755 -121.247.148.0/22 17908 -121.247.152.0/21 17908 -121.247.160.0/19 17908 -121.247.192.0/18 17908 -121.248.0.0/16 4538 -121.249.0.0/20 24361 -121.249.16.0/20 4538 -121.249.32.0/19 4538 -121.249.64.0/18 4538 -121.249.128.0/20 4538 -121.249.144.0/20 132553 -121.249.160.0/19 4538 -121.249.192.0/18 4538 -121.250.0.0/20 4538 -121.250.16.0/23 4538 -121.250.18.0/24 24363 -121.250.19.0/24 4538 -121.250.20.0/22 4538 -121.250.24.0/21 4538 -121.250.32.0/19 4538 -121.250.64.0/18 4538 -121.250.128.0/17 4538 -121.251.0.0/24 24362 -121.251.1.0/24 4538 -121.251.2.0/23 4538 -121.251.4.0/22 4538 -121.251.8.0/21 4538 -121.251.16.0/20 4538 -121.251.32.0/19 4538 -121.251.64.0/18 4538 -121.251.128.0/18 4538 -121.251.192.0/19 4538 -121.251.224.0/21 4538 -121.251.232.0/23 138371 -121.251.234.0/24 138371 -121.251.235.0/24 4538 -121.251.236.0/22 4538 -121.251.240.0/20 132553 -121.253.0.0/19 6619 -121.253.32.0/20 6619 -121.253.48.0/21 6619 -121.253.56.0/23 6619 -121.253.58.0/24 9318 -121.253.59.0/24 6619 -121.253.60.0/22 6619 -121.253.64.0/18 6619 -121.253.128.0/17 6619 -121.254.0.0/18 23563 -121.254.64.0/18 17809 -121.254.128.0/18 3786 -121.254.192.0/19 3786 -121.254.224.0/20 3786 -121.254.240.0/22 3786 -121.254.244.0/24 3786 -121.254.245.0/24 45989 -121.254.246.0/23 3786 -121.254.248.0/21 3786 -121.255.0.0/16 9808 -122.0.0.0/21 38293 -122.0.16.0/21 23678 -122.0.24.0/22 23678 -122.0.28.0/23 23678 -122.0.30.0/24 23678 -122.0.31.0/24 45121 -122.0.32.0/19 17583 -122.0.64.0/18 24422 -122.1.0.0/16 4713 -122.2.0.0/15 9299 -122.4.0.0/14 4134 -122.8.0.0/24 55361 -122.8.1.0/24 132165 -122.8.2.0/23 55361 -122.8.4.0/23 55361 -122.8.6.0/23 132165 -122.8.8.0/24 55361 -122.8.9.0/24 55355 -122.8.10.0/23 132165 -122.8.12.0/22 132165 -122.8.16.0/20 132165 -122.8.32.0/19 132165 -122.8.64.0/20 132165 -122.8.80.0/22 132165 -122.8.84.0/23 55361 -122.8.86.0/23 132165 -122.8.88.0/24 132165 -122.8.89.0/24 55361 -122.8.90.0/24 55361 -122.8.91.0/24 132165 -122.8.92.0/22 132165 -122.8.96.0/19 132165 -122.8.128.0/17 132165 -122.10.0.0/20 134548 -122.10.16.0/21 134548 -122.10.24.0/23 134548 -122.10.26.0/23 139817 -122.10.28.0/22 134548 -122.10.32.0/19 134548 -122.10.64.0/20 134548 -122.10.80.0/20 55933 -122.10.96.0/24 9304 -122.10.97.0/24 4134 -122.10.98.0/24 134548 -122.10.99.0/24 9304 -122.10.100.0/24 9584 -122.10.101.0/24 134196 -122.10.102.0/24 134548 -122.10.103.0/24 136897 -122.10.104.0/22 134548 -122.10.108.0/24 134548 -122.10.109.0/24 9584 -122.10.110.0/24 134548 -122.10.111.0/24 134196 -122.10.112.0/21 55933 -122.10.120.0/23 134548 -122.10.122.0/24 134548 -122.10.123.0/24 134196 -122.10.124.0/22 136897 -122.10.128.0/24 4058 -122.10.130.0/23 134700 -122.10.133.0/24 55468 -122.10.134.0/23 21859 -122.10.136.0/23 55468 -122.10.138.0/23 21859 -122.10.140.0/22 21859 -122.10.144.0/22 21859 -122.10.152.0/21 21859 -122.10.161.0/24 135377 -122.10.166.0/23 58779 -122.10.168.0/23 56082 -122.10.170.0/24 56082 -122.10.171.0/24 9535 -122.10.172.0/23 56082 -122.10.174.0/23 9535 -122.10.176.0/22 9535 -122.10.180.0/23 9535 -122.10.182.0/24 134117 -122.10.183.0/24 9535 -122.10.184.0/22 9535 -122.10.188.0/23 134117 -122.10.190.0/23 9535 -122.10.192.0/24 24155 -122.10.193.0/24 134117 -122.10.194.0/24 56082 -122.10.195.0/24 9535 -122.10.204.0/24 7656 -122.10.211.0/24 24155 -122.10.228.0/22 4808 -122.10.232.0/21 4808 -122.10.240.0/22 4808 -122.11.32.0/19 4808 -122.11.128.0/20 4657 -122.11.144.0/22 4657 -122.11.148.0/23 4657 -122.11.150.0/23 9874 -122.11.152.0/21 9874 -122.11.160.0/21 4657 -122.11.168.0/24 4657 -122.11.169.0/24 9874 -122.11.170.0/23 9874 -122.11.172.0/24 9874 -122.11.173.0/24 4657 -122.11.174.0/23 4657 -122.11.176.0/22 4657 -122.11.180.0/24 4657 -122.11.181.0/24 45474 -122.11.182.0/23 45474 -122.11.184.0/23 45474 -122.11.186.0/24 45474 -122.11.187.0/24 4657 -122.11.188.0/22 4657 -122.11.192.0/22 4657 -122.11.196.0/24 19551 -122.11.197.0/24 4657 -122.11.198.0/23 4657 -122.11.200.0/21 4657 -122.11.208.0/21 4657 -122.11.216.0/22 9874 -122.11.220.0/22 4657 -122.11.224.0/19 4657 -122.13.0.0/21 136958 -122.13.8.0/23 136958 -122.13.10.0/23 17816 -122.13.12.0/23 17816 -122.13.14.0/23 136958 -122.13.16.0/24 136958 -122.13.17.0/24 17816 -122.13.18.0/24 136958 -122.13.19.0/24 17816 -122.13.20.0/24 136958 -122.13.21.0/24 17622 -122.13.22.0/23 17816 -122.13.24.0/22 136958 -122.13.28.0/22 17816 -122.13.32.0/24 17623 -122.13.33.0/24 17816 -122.13.34.0/23 17816 -122.13.36.0/23 17816 -122.13.38.0/24 136958 -122.13.39.0/24 17816 -122.13.40.0/21 17816 -122.13.48.0/20 17816 -122.13.64.0/22 136958 -122.13.68.0/24 17816 -122.13.69.0/24 136958 -122.13.70.0/23 136958 -122.13.72.0/21 136958 -122.13.80.0/21 136958 -122.13.88.0/24 136958 -122.13.89.0/24 17816 -122.13.90.0/23 17816 -122.13.92.0/22 17816 -122.13.96.0/19 17816 -122.13.128.0/23 17816 -122.13.130.0/24 136958 -122.13.131.0/24 17816 -122.13.132.0/23 136958 -122.13.134.0/24 136958 -122.13.135.0/24 17816 -122.13.136.0/23 17816 -122.13.138.0/24 136958 -122.13.139.0/24 17816 -122.13.140.0/22 17816 -122.13.144.0/22 17816 -122.13.148.0/23 17622 -122.13.150.0/23 17816 -122.13.152.0/23 136958 -122.13.154.0/23 17816 -122.13.156.0/22 17816 -122.13.160.0/24 134543 -122.13.161.0/24 17816 -122.13.162.0/23 134543 -122.13.164.0/22 17816 -122.13.168.0/21 136959 -122.13.176.0/20 17816 -122.13.192.0/20 17816 -122.13.208.0/23 17816 -122.13.210.0/24 136958 -122.13.211.0/24 17816 -122.13.212.0/24 17622 -122.13.213.0/24 136958 -122.13.214.0/23 17622 -122.13.216.0/23 17622 -122.13.218.0/24 17622 -122.13.219.0/24 17816 -122.13.220.0/22 17816 -122.13.224.0/20 17816 -122.13.240.0/21 17816 -122.13.248.0/22 17816 -122.13.252.0/23 17816 -122.13.254.0/24 136959 -122.13.255.0/24 17816 -122.14.0.0/18 4808 -122.14.128.0/24 134117 -122.14.129.0/24 58779 -122.14.130.0/23 58779 -122.14.132.0/22 58779 -122.14.136.0/23 58779 -122.14.138.0/24 58779 -122.14.141.0/24 135356 -122.14.151.0/24 134117 -122.14.152.0/23 134117 -122.14.154.0/24 134117 -122.14.155.0/24 9535 -122.14.156.0/22 9535 -122.14.160.0/24 56082 -122.14.162.0/23 9535 -122.14.164.0/23 9535 -122.14.166.0/24 9535 -122.14.168.0/22 9535 -122.14.172.0/23 9535 -122.14.174.0/23 134117 -122.14.176.0/21 134117 -122.14.184.0/22 134117 -122.14.188.0/23 134117 -122.14.190.0/24 134117 -122.14.191.0/24 9535 -122.14.192.0/18 23724 -122.15.0.0/18 55410 -122.15.64.0/20 55410 -122.15.80.0/21 55410 -122.15.88.0/24 38266 -122.15.89.0/24 55410 -122.15.90.0/23 38266 -122.15.92.0/22 38266 -122.15.96.0/19 55410 -122.15.128.0/19 55410 -122.15.160.0/20 55410 -122.15.176.0/22 55410 -122.15.180.0/23 55410 -122.15.182.0/24 55410 -122.15.183.0/24 45625 -122.15.184.0/21 55410 -122.15.192.0/21 55410 -122.15.200.0/24 55410 -122.15.201.0/24 132417 -122.15.202.0/24 55410 -122.15.203.0/24 132417 -122.15.204.0/24 55410 -122.15.205.0/24 132417 -122.15.206.0/23 55410 -122.15.208.0/21 55410 -122.15.216.0/24 55410 -122.15.217.0/24 26685 -122.15.218.0/23 26685 -122.15.220.0/23 26685 -122.15.222.0/24 55410 -122.15.223.0/24 26685 -122.15.224.0/19 55410 -122.16.0.0/12 4713 -122.32.0.0/12 17858 -122.48.0.0/16 4847 -122.49.0.0/19 17964 -122.49.32.0/19 4847 -122.49.64.0/19 9286 -122.49.96.0/20 9286 -122.49.112.0/20 38701 -122.49.128.0/18 4739 -122.49.192.0/21 10001 -122.49.200.0/21 18111 -122.49.208.0/20 18187 -122.49.224.0/21 38522 -122.49.232.0/21 17698 -122.49.240.0/20 17698 -122.50.0.0/22 9387 -122.50.4.0/23 131111 -122.50.6.0/24 131111 -122.50.16.0/20 7671 -122.50.32.0/19 18134 -122.50.64.0/19 17819 -122.50.104.0/21 17819 -122.50.112.0/22 17819 -122.50.120.0/22 17819 -122.50.124.0/23 17819 -122.50.126.0/24 17819 -122.50.127.0/24 25605 -122.50.128.0/17 23772 -122.51.0.0/16 45090 -122.52.0.0/15 9299 -122.54.0.0/18 9299 -122.54.64.0/23 9299 -122.54.66.0/24 9299 -122.54.67.0/24 18115 -122.54.68.0/22 9299 -122.54.72.0/21 9299 -122.54.80.0/20 9299 -122.54.96.0/19 9299 -122.54.128.0/17 9299 -122.55.0.0/22 9299 -122.55.4.0/23 9299 -122.55.6.0/24 55413 -122.55.7.0/24 9299 -122.55.8.0/21 9299 -122.55.16.0/20 9299 -122.55.32.0/19 9299 -122.55.64.0/20 9299 -122.55.80.0/21 9299 -122.55.88.0/22 9299 -122.55.92.0/24 132508 -122.55.93.0/24 9299 -122.55.94.0/23 9299 -122.55.96.0/21 9299 -122.55.104.0/24 134996 -122.55.105.0/24 9299 -122.55.106.0/23 9299 -122.55.108.0/22 9299 -122.55.112.0/20 9299 -122.55.128.0/19 9299 -122.55.160.0/20 9299 -122.55.176.0/22 9299 -122.55.180.0/24 139040 -122.55.181.0/24 9299 -122.55.182.0/23 9299 -122.55.184.0/21 9299 -122.55.192.0/18 9299 -122.56.0.0/22 4648 -122.56.4.0/23 4648 -122.56.6.0/24 4648 -122.56.7.0/24 4049 -122.56.8.0/21 4648 -122.56.16.0/20 4648 -122.56.32.0/22 4648 -122.56.36.0/24 20940 -122.56.37.0/24 4648 -122.56.38.0/23 4648 -122.56.40.0/22 4648 -122.56.44.0/23 55936 -122.56.46.0/23 4648 -122.56.48.0/21 4648 -122.56.56.0/22 4648 -122.56.60.0/23 133124 -122.56.63.0/24 133420 -122.56.64.0/22 4648 -122.56.68.0/22 55936 -122.56.73.0/24 4648 -122.56.74.0/23 133420 -122.56.76.0/22 133420 -122.56.80.0/22 4648 -122.56.84.0/24 4648 -122.56.85.0/24 133420 -122.56.88.0/22 133420 -122.56.100.0/24 4648 -122.56.102.0/23 4648 -122.56.104.0/22 4648 -122.56.108.0/24 4648 -122.56.112.0/23 4648 -122.56.115.0/24 4648 -122.56.117.0/24 4648 -122.56.120.0/22 4648 -122.56.124.0/23 4648 -122.56.126.0/24 4648 -122.56.168.0/22 133420 -122.56.176.0/22 4771 -122.56.184.0/22 133420 -122.56.190.0/23 4771 -122.56.192.0/20 4771 -122.56.208.0/21 4771 -122.56.232.0/22 4771 -122.56.252.0/22 4771 -122.57.0.0/16 4771 -122.58.0.0/17 4771 -122.58.128.0/18 4771 -122.58.192.0/23 4771 -122.58.194.0/24 4771 -122.58.196.0/24 4771 -122.58.198.0/23 4771 -122.58.200.0/21 4771 -122.58.208.0/20 4771 -122.58.224.0/21 4771 -122.58.240.0/21 4771 -122.58.248.0/24 4771 -122.58.251.0/24 4771 -122.58.252.0/23 4771 -122.58.254.0/24 4771 -122.59.24.0/21 4771 -122.59.40.0/21 4771 -122.59.48.0/20 4771 -122.59.64.0/18 4771 -122.59.128.0/19 4771 -122.59.160.0/21 4771 -122.59.176.0/20 4771 -122.59.208.0/20 4771 -122.59.224.0/19 4771 -122.60.0.0/18 4771 -122.60.64.0/19 4771 -122.60.96.0/21 4771 -122.60.112.0/20 4771 -122.60.128.0/18 4771 -122.60.192.0/20 4771 -122.60.208.0/21 4771 -122.60.224.0/19 4771 -122.61.0.0/18 4771 -122.61.64.0/20 4771 -122.61.80.0/21 4771 -122.61.96.0/19 4771 -122.61.128.0/18 4771 -122.61.192.0/19 4771 -122.61.232.0/21 4771 -122.61.240.0/20 4771 -122.62.8.0/21 4771 -122.62.16.0/20 4771 -122.62.32.0/19 4771 -122.62.64.0/19 4771 -122.62.104.0/21 4771 -122.62.112.0/20 4771 -122.62.128.0/19 4771 -122.62.160.0/21 4771 -122.62.192.0/19 4771 -122.62.224.0/20 4771 -122.62.241.0/24 4771 -122.62.242.0/24 4771 -122.62.244.0/23 4771 -122.62.247.0/24 4771 -122.62.248.0/22 4771 -122.63.0.0/18 4771 -122.64.0.0/15 38341 -122.66.0.0/15 9394 -122.68.0.0/16 9394 -122.69.0.0/16 134810 -122.70.0.0/15 24138 -122.72.0.0/23 9394 -122.72.2.0/24 9394 -122.72.3.0/24 24138 -122.72.4.0/23 9394 -122.72.6.0/23 45057 -122.72.8.0/23 9394 -122.72.10.0/23 9808 -122.72.12.0/22 9394 -122.72.16.0/24 24138 -122.72.17.0/24 9394 -122.72.18.0/23 9394 -122.72.20.0/24 134810 -122.72.21.0/24 9394 -122.72.22.0/23 9394 -122.72.24.0/24 9808 -122.72.25.0/24 9394 -122.72.26.0/23 9394 -122.72.28.0/23 9394 -122.72.30.0/24 9808 -122.72.31.0/24 9394 -122.72.32.0/22 9394 -122.72.36.0/24 9808 -122.72.37.0/24 9394 -122.72.38.0/24 24138 -122.72.39.0/24 9394 -122.72.40.0/21 9394 -122.72.48.0/22 9394 -122.72.52.0/23 134810 -122.72.54.0/24 134810 -122.72.55.0/24 9394 -122.72.56.0/24 9394 -122.72.57.0/24 38341 -122.72.58.0/23 9394 -122.72.60.0/23 45057 -122.72.62.0/23 9394 -122.72.64.0/21 9394 -122.72.72.0/23 9808 -122.72.74.0/24 9808 -122.72.75.0/24 9394 -122.72.76.0/23 45069 -122.72.78.0/23 9394 -122.72.80.0/23 9394 -122.72.82.0/24 63711 -122.72.83.0/24 9394 -122.72.84.0/22 9808 -122.72.88.0/21 9394 -122.72.96.0/20 9394 -122.72.112.0/24 24138 -122.72.113.0/24 9394 -122.72.114.0/23 9394 -122.72.116.0/22 9394 -122.72.120.0/23 45057 -122.72.122.0/23 9394 -122.72.124.0/22 9394 -122.72.128.0/17 9394 -122.73.0.0/16 9394 -122.74.0.0/15 37981 -122.76.0.0/16 9394 -122.77.0.0/16 9808 -122.78.0.0/15 63711 -122.80.0.0/17 45069 -122.80.128.0/18 45069 -122.80.192.0/19 45069 -122.80.224.0/20 45069 -122.80.240.0/22 45069 -122.80.244.0/24 45069 -122.80.245.0/24 9394 -122.80.246.0/23 45069 -122.80.248.0/21 45069 -122.81.0.0/17 45069 -122.81.128.0/18 45069 -122.81.192.0/19 45069 -122.81.224.0/20 45069 -122.81.240.0/22 45069 -122.81.244.0/24 9394 -122.81.245.0/24 45069 -122.81.246.0/23 45069 -122.81.248.0/21 45069 -122.82.0.0/15 9394 -122.84.0.0/16 45057 -122.85.0.0/16 9394 -122.86.0.0/15 9394 -122.88.0.0/15 9394 -122.90.0.0/15 9808 -122.92.0.0/14 9394 -122.96.0.0/16 4837 -122.97.0.0/18 9929 -122.97.64.0/18 4837 -122.97.128.0/17 4837 -122.98.8.0/21 38191 -122.98.24.0/21 38191 -122.98.48.0/20 38191 -122.98.112.0/21 38191 -122.98.128.0/20 38191 -122.98.168.0/22 38191 -122.98.200.0/21 38191 -122.98.208.0/21 7474 -122.98.216.0/21 38191 -122.98.224.0/21 38191 -122.99.0.0/18 9416 -122.99.64.0/19 7718 -122.99.96.0/21 17471 -122.99.112.0/21 9268 -122.99.120.0/22 7546 -122.99.124.0/22 45189 -122.99.128.0/17 38661 -122.100.0.0/23 45577 -122.100.2.0/23 132071 -122.100.4.0/24 45577 -122.100.5.0/24 10207 -122.100.6.0/23 132071 -122.100.8.0/24 45577 -122.100.9.0/24 132071 -122.100.10.0/23 45577 -122.100.12.0/23 10207 -122.100.14.0/24 45577 -122.100.15.0/24 132071 -122.100.16.0/21 7671 -122.100.24.0/21 17511 -122.100.64.0/21 4662 -122.100.72.0/22 4662 -122.100.76.0/22 24164 -122.100.80.0/21 4662 -122.100.88.0/22 4662 -122.100.92.0/23 4662 -122.100.94.0/24 4662 -122.100.95.0/24 24164 -122.100.96.0/20 4662 -122.100.112.0/21 4662 -122.100.120.0/22 4662 -122.100.124.0/23 4662 -122.100.126.0/23 24164 -122.100.128.0/17 4609 -122.101.0.0/16 6619 -122.102.0.0/20 4808 -122.102.16.0/23 132263 -122.102.19.0/24 132263 -122.102.24.0/21 45433 -122.102.32.0/21 38067 -122.102.40.0/21 38758 -122.102.48.0/22 38274 -122.102.52.0/23 38274 -122.102.54.0/24 38274 -122.102.64.0/20 138950 -122.102.94.0/23 4134 -122.102.96.0/21 9268 -122.102.104.0/22 9268 -122.102.108.0/23 38477 -122.102.110.0/23 55752 -122.102.112.0/24 55316 -122.102.116.0/22 13886 -122.102.128.0/17 9617 -122.103.0.0/16 2519 -122.104.0.0/13 4804 -122.112.0.0/19 4808 -122.112.32.0/19 23724 -122.112.64.0/19 23724 -122.112.100.0/22 9535 -122.112.104.0/24 9535 -122.112.106.0/24 56082 -122.112.108.0/24 9535 -122.112.109.0/24 56082 -122.112.110.0/23 9535 -122.112.112.0/24 9535 -122.112.113.0/24 56082 -122.112.115.0/24 135356 -122.112.119.0/24 9535 -122.112.120.0/24 9535 -122.112.121.0/24 56082 -122.112.123.0/24 24155 -122.112.124.0/24 24155 -122.112.126.0/23 9535 -122.112.128.0/18 55990 -122.112.192.0/22 4812 -122.112.196.0/22 55990 -122.112.200.0/21 55990 -122.112.208.0/20 55990 -122.112.224.0/19 55990 -122.114.0.0/16 4837 -122.115.0.0/20 23724 -122.115.32.0/19 4808 -122.115.64.0/23 56082 -122.115.66.0/24 56082 -122.115.68.0/23 24155 -122.115.70.0/24 56082 -122.115.72.0/24 56082 -122.115.73.0/24 135356 -122.115.74.0/23 135356 -122.115.76.0/24 58779 -122.115.77.0/24 63946 -122.115.96.0/21 4847 -122.115.104.0/22 4847 -122.115.224.0/20 23724 -122.116.0.0/15 3462 -122.118.0.0/16 3462 -122.119.0.0/16 38381 -122.120.0.0/13 3462 -122.128.0.0/20 37908 -122.128.16.0/21 46045 -122.128.24.0/23 18059 -122.128.28.0/22 18059 -122.128.32.0/19 17608 -122.128.64.0/20 10054 -122.128.96.0/23 36351 -122.128.98.0/24 17676 -122.128.99.0/24 134835 -122.128.105.0/24 133380 -122.128.106.0/23 133380 -122.128.109.0/24 133380 -122.128.110.0/23 133380 -122.128.112.0/21 24277 -122.128.128.0/18 17839 -122.128.192.0/18 9757 -122.129.64.0/19 17911 -122.129.96.0/23 38896 -122.129.100.0/23 38896 -122.129.104.0/21 38896 -122.129.112.0/21 38896 -122.129.120.0/21 24514 -122.129.128.0/19 38172 -122.129.160.0/19 7522 -122.129.200.0/22 38763 -122.129.205.0/24 38763 -122.129.208.0/21 18168 -122.129.216.0/22 56037 -122.129.220.0/23 56037 -122.129.223.0/24 56037 -122.129.224.0/20 2514 -122.129.240.0/20 9862 -122.130.0.0/15 2518 -122.132.0.0/14 2518 -122.136.0.0/13 4837 -122.144.0.0/22 38320 -122.144.4.0/23 38320 -122.144.6.0/24 38320 -122.144.8.0/21 9230 -122.144.16.0/23 24332 -122.144.18.0/24 24332 -122.144.21.0/24 24332 -122.144.22.0/23 24332 -122.144.24.0/22 38082 -122.144.28.0/24 38082 -122.144.29.0/24 38081 -122.144.30.0/23 38081 -122.144.32.0/19 9216 -122.144.64.0/23 18396 -122.144.67.0/24 18396 -122.144.68.0/22 18396 -122.144.112.0/21 18396 -122.144.128.0/22 17621 -122.144.132.0/23 17621 -122.144.134.0/24 17775 -122.144.135.0/24 17621 -122.144.136.0/23 17621 -122.144.138.0/23 17775 -122.144.140.0/23 17775 -122.144.142.0/23 17621 -122.144.144.0/21 17775 -122.144.152.0/23 17621 -122.144.154.0/23 17775 -122.144.156.0/22 17775 -122.144.160.0/22 17775 -122.144.164.0/23 17775 -122.144.166.0/23 17621 -122.144.168.0/23 17621 -122.144.170.0/23 17775 -122.144.172.0/23 17621 -122.144.174.0/23 17775 -122.144.176.0/20 17775 -122.144.192.0/20 17621 -122.144.208.0/23 17621 -122.144.210.0/23 17775 -122.144.212.0/22 17621 -122.144.216.0/22 17775 -122.144.220.0/22 17621 -122.144.224.0/19 17775 -122.145.38.0/24 10013 -122.145.40.0/21 10013 -122.145.48.0/20 7522 -122.145.64.0/19 7522 -122.145.96.0/20 7522 -122.145.116.0/22 10013 -122.145.120.0/21 10013 -122.145.128.0/23 10013 -122.145.136.0/21 10013 -122.145.144.0/20 10013 -122.145.160.0/19 10013 -122.145.192.0/19 10013 -122.146.0.0/18 9919 -122.146.64.0/22 9919 -122.146.68.0/23 9919 -122.146.70.0/24 9919 -122.146.71.0/24 4780 -122.146.72.0/21 9919 -122.146.80.0/20 9919 -122.146.96.0/21 9919 -122.146.104.0/22 9919 -122.146.108.0/23 38851 -122.146.110.0/23 9919 -122.146.112.0/20 9919 -122.146.128.0/17 9919 -122.147.0.0/20 9919 -122.147.16.0/21 4780 -122.147.24.0/21 9919 -122.147.32.0/19 9919 -122.147.64.0/18 9919 -122.147.128.0/19 9919 -122.147.160.0/22 38851 -122.147.164.0/23 38851 -122.147.166.0/23 9919 -122.147.168.0/21 9919 -122.147.176.0/20 9919 -122.147.192.0/18 9919 -122.148.0.0/17 38285 -122.148.128.0/17 9443 -122.149.0.0/21 9443 -122.149.8.0/21 38285 -122.149.16.0/20 38285 -122.149.32.0/19 38285 -122.149.64.0/18 38285 -122.149.128.0/18 38285 -122.149.192.0/21 38285 -122.149.200.0/21 9443 -122.149.208.0/20 38285 -122.149.224.0/19 38285 -122.150.0.0/24 38285 -122.150.1.0/24 9443 -122.150.2.0/23 38285 -122.150.4.0/22 9443 -122.150.8.0/21 9443 -122.150.16.0/20 38285 -122.150.32.0/19 9443 -122.150.64.0/19 9443 -122.150.96.0/19 38285 -122.150.128.0/17 38285 -122.151.0.0/23 38285 -122.151.2.0/24 38285 -122.151.3.0/24 9443 -122.151.4.0/23 9443 -122.151.6.0/23 38285 -122.151.8.0/21 38285 -122.151.16.0/20 38285 -122.151.32.0/21 38285 -122.151.40.0/21 9443 -122.151.48.0/20 38285 -122.151.64.0/19 38285 -122.151.96.0/20 38285 -122.151.112.0/20 9443 -122.151.128.0/17 38285 -122.152.0.0/20 10013 -122.152.16.0/20 7665 -122.152.32.0/20 9351 -122.152.48.0/21 38562 -122.152.56.0/21 55381 -122.152.64.0/19 9614 -122.152.96.0/19 9710 -122.152.128.0/19 4637 -122.152.160.0/21 4637 -122.152.168.0/22 4637 -122.152.172.0/23 4637 -122.152.174.0/24 45932 -122.152.175.0/24 4637 -122.152.176.0/20 4637 -122.152.192.0/18 45090 -122.153.0.0/19 17858 -122.153.32.0/21 38391 -122.153.40.0/23 38391 -122.153.42.0/23 9316 -122.153.44.0/23 38391 -122.153.46.0/24 38391 -122.153.47.0/24 9316 -122.153.48.0/20 17858 -122.153.64.0/22 9316 -122.153.68.0/23 9316 -122.153.70.0/24 9316 -122.153.71.0/24 38395 -122.153.72.0/22 38395 -122.153.76.0/23 38395 -122.153.78.0/23 9316 -122.153.80.0/20 38394 -122.153.96.0/23 9316 -122.153.98.0/24 9316 -122.153.99.0/24 38394 -122.153.100.0/24 9316 -122.153.101.0/24 38395 -122.153.102.0/23 38395 -122.153.104.0/21 9316 -122.153.112.0/20 17858 -122.153.128.0/23 9316 -122.153.130.0/23 38395 -122.153.132.0/23 38395 -122.153.134.0/23 9316 -122.153.136.0/22 9316 -122.153.140.0/23 9316 -122.153.142.0/24 38398 -122.153.143.0/24 38415 -122.153.144.0/21 38398 -122.153.152.0/23 38398 -122.153.154.0/24 9316 -122.153.155.0/24 38410 -122.153.156.0/22 38410 -122.153.160.0/24 38410 -122.153.161.0/24 9316 -122.153.162.0/23 9316 -122.153.164.0/22 9316 -122.153.168.0/22 38416 -122.153.172.0/24 9316 -122.153.173.0/24 38415 -122.153.174.0/23 38415 -122.153.176.0/21 38415 -122.153.184.0/24 38415 -122.153.185.0/24 9316 -122.153.186.0/23 38417 -122.153.188.0/23 38417 -122.153.190.0/24 38417 -122.153.191.0/24 9316 -122.153.192.0/21 9316 -122.153.200.0/24 9316 -122.153.201.0/24 38390 -122.153.202.0/23 38390 -122.153.204.0/22 38390 -122.153.208.0/21 38390 -122.153.216.0/22 38390 -122.153.220.0/24 38390 -122.153.221.0/24 9316 -122.153.222.0/23 38396 -122.153.224.0/21 38396 -122.153.232.0/23 38396 -122.153.234.0/24 38396 -122.153.235.0/24 9316 -122.153.236.0/22 9316 -122.153.240.0/22 9316 -122.153.244.0/24 9316 -122.153.245.0/24 38415 -122.153.246.0/23 38390 -122.153.248.0/24 38398 -122.153.249.0/24 38390 -122.153.250.0/24 38415 -122.153.251.0/24 38398 -122.153.252.0/24 38415 -122.153.253.0/24 9316 -122.153.254.0/23 9316 -122.154.0.0/20 9931 -122.154.16.0/22 9931 -122.154.20.0/24 133761 -122.154.21.0/24 9931 -122.154.22.0/23 9931 -122.154.24.0/21 9931 -122.154.32.0/20 9931 -122.154.48.0/23 9931 -122.154.50.0/24 24328 -122.154.51.0/24 9931 -122.154.52.0/22 9931 -122.154.56.0/22 9931 -122.154.60.0/23 9464 -122.154.62.0/23 9931 -122.154.64.0/19 9931 -122.154.96.0/21 9931 -122.154.104.0/22 9931 -122.154.108.0/24 9931 -122.154.109.0/24 133888 -122.154.110.0/23 9931 -122.154.112.0/20 9931 -122.154.128.0/20 9931 -122.154.144.0/21 9931 -122.154.152.0/24 9931 -122.154.153.0/24 38265 -122.154.154.0/23 9931 -122.154.156.0/22 9931 -122.154.160.0/19 9931 -122.154.192.0/18 9931 -122.155.0.0/19 9335 -122.155.32.0/20 9931 -122.155.55.0/24 9335 -122.155.64.0/20 9931 -122.155.80.0/23 9931 -122.155.82.0/24 9931 -122.155.83.0/24 134695 -122.155.84.0/23 9931 -122.155.86.0/24 136035 -122.155.87.0/24 9931 -122.155.88.0/22 9931 -122.155.92.0/23 9931 -122.155.94.0/24 9931 -122.155.95.0/24 38296 -122.155.96.0/22 9931 -122.155.104.0/21 9931 -122.155.112.0/21 9931 -122.155.128.0/21 9931 -122.155.136.0/22 9931 -122.155.140.0/23 45806 -122.155.142.0/23 9931 -122.155.144.0/21 9335 -122.155.160.0/19 9335 -122.155.192.0/20 9335 -122.155.208.0/22 9335 -122.155.212.0/24 9335 -122.155.213.0/24 9931 -122.155.214.0/24 9931 -122.155.215.0/24 9335 -122.155.216.0/24 9335 -122.155.217.0/24 9931 -122.155.218.0/23 9931 -122.155.220.0/22 9335 -122.155.224.0/24 4651 -122.155.226.0/24 4651 -122.155.228.0/24 4651 -122.155.230.0/24 4651 -122.155.232.0/24 4651 -122.155.236.0/22 4651 -122.155.244.0/22 4651 -122.155.251.0/24 4652 -122.155.252.0/23 4652 -122.155.254.0/24 4652 -122.156.0.0/14 4837 -122.160.0.0/19 24560 -122.160.32.0/20 24560 -122.160.48.0/22 24560 -122.160.52.0/23 24560 -122.160.54.0/24 24560 -122.160.55.0/24 9498 -122.160.56.0/21 24560 -122.160.64.0/19 24560 -122.160.96.0/23 24560 -122.160.98.0/24 24560 -122.160.99.0/24 9498 -122.160.100.0/22 24560 -122.160.104.0/21 24560 -122.160.112.0/21 24560 -122.160.120.0/22 24560 -122.160.124.0/24 24560 -122.160.125.0/24 9498 -122.160.126.0/23 24560 -122.160.128.0/23 24560 -122.160.130.0/24 24560 -122.160.131.0/24 9498 -122.160.132.0/22 24560 -122.160.136.0/21 24560 -122.160.144.0/24 24560 -122.160.145.0/24 9498 -122.160.146.0/23 24560 -122.160.148.0/24 24560 -122.160.149.0/24 9498 -122.160.150.0/23 24560 -122.160.152.0/21 24560 -122.160.160.0/23 24560 -122.160.162.0/24 9498 -122.160.163.0/24 24560 -122.160.164.0/22 24560 -122.160.168.0/21 24560 -122.160.176.0/21 24560 -122.160.184.0/22 24560 -122.160.188.0/24 9498 -122.160.189.0/24 24560 -122.160.190.0/23 24560 -122.160.192.0/23 24560 -122.160.194.0/24 24560 -122.160.195.0/24 9498 -122.160.196.0/22 24560 -122.160.200.0/21 24560 -122.160.208.0/20 24560 -122.160.224.0/21 24560 -122.160.232.0/23 24560 -122.160.234.0/24 9498 -122.160.235.0/24 24560 -122.160.236.0/23 24560 -122.160.238.0/24 9498 -122.160.239.0/24 24560 -122.160.240.0/22 24560 -122.160.244.0/24 9498 -122.160.245.0/24 24560 -122.160.246.0/23 24560 -122.160.248.0/24 9498 -122.160.249.0/24 24560 -122.160.250.0/23 24560 -122.160.252.0/22 24560 -122.161.0.0/16 24560 -122.162.0.0/15 24560 -122.164.0.0/18 24560 -122.164.64.0/19 24560 -122.164.96.0/20 24560 -122.164.112.0/21 24560 -122.164.124.0/22 24560 -122.164.128.0/18 24560 -122.164.192.0/24 24560 -122.164.195.0/24 24560 -122.164.196.0/22 24560 -122.164.200.0/21 24560 -122.164.208.0/20 24560 -122.164.224.0/19 24560 -122.165.0.0/19 24560 -122.165.32.0/22 24560 -122.165.48.0/20 24560 -122.165.64.0/18 24560 -122.165.128.0/17 24560 -122.166.0.0/20 24560 -122.166.16.0/21 24560 -122.166.24.0/23 24560 -122.166.26.0/24 24560 -122.166.29.0/24 24560 -122.166.30.0/23 24560 -122.166.32.0/21 24560 -122.166.40.0/24 24560 -122.166.42.0/23 24560 -122.166.44.0/22 24560 -122.166.48.0/20 24560 -122.166.64.0/23 24560 -122.166.80.0/20 24560 -122.166.96.0/19 24560 -122.166.128.0/18 24560 -122.166.192.0/21 24560 -122.166.201.0/24 24560 -122.166.202.0/23 24560 -122.166.204.0/22 24560 -122.166.208.0/20 24560 -122.166.224.0/20 24560 -122.166.240.0/23 24560 -122.166.244.0/22 24560 -122.167.0.0/19 24560 -122.167.32.0/20 24560 -122.167.52.0/22 24560 -122.167.64.0/18 24560 -122.167.128.0/19 24560 -122.167.160.0/20 24560 -122.167.176.0/21 24560 -122.167.184.0/22 24560 -122.167.192.0/21 24560 -122.167.200.0/22 24560 -122.167.208.0/20 24560 -122.167.224.0/22 24560 -122.167.228.0/24 9498 -122.167.229.0/24 24560 -122.167.230.0/23 24560 -122.167.232.0/21 24560 -122.168.0.0/17 24560 -122.168.128.0/21 24560 -122.168.136.0/24 24560 -122.168.138.0/23 24560 -122.168.140.0/22 24560 -122.168.144.0/20 24560 -122.168.160.0/19 24560 -122.168.192.0/18 24560 -122.169.0.0/19 24560 -122.169.32.0/22 24560 -122.169.40.0/21 24560 -122.169.48.0/20 24560 -122.169.64.0/19 24560 -122.169.96.0/20 24560 -122.169.112.0/21 24560 -122.169.120.0/24 24560 -122.169.121.0/24 9498 -122.169.122.0/24 9498 -122.169.123.0/24 24560 -122.169.124.0/23 9498 -122.169.126.0/24 24560 -122.169.127.0/24 9498 -122.169.144.0/20 24560 -122.169.160.0/22 24560 -122.169.190.0/23 24560 -122.169.192.0/18 24560 -122.170.0.0/18 24560 -122.170.64.0/19 24560 -122.170.96.0/20 24560 -122.170.112.0/21 24560 -122.170.120.0/24 9498 -122.170.121.0/24 24560 -122.170.122.0/24 24560 -122.170.123.0/24 9498 -122.170.124.0/22 9498 -122.170.128.0/17 24560 -122.171.0.0/20 24560 -122.171.17.0/24 24560 -122.171.20.0/24 24560 -122.171.22.0/24 24560 -122.171.24.0/21 24560 -122.171.32.0/19 24560 -122.171.64.0/18 24560 -122.171.144.0/20 24560 -122.171.160.0/19 24560 -122.171.192.0/19 24560 -122.171.224.0/20 24560 -122.172.0.0/17 24560 -122.172.128.0/18 24560 -122.172.208.0/20 24560 -122.172.248.0/21 24560 -122.173.0.0/16 24560 -122.174.0.0/21 9498 -122.174.8.0/21 24560 -122.174.16.0/20 24560 -122.174.32.0/19 24560 -122.174.64.0/21 24560 -122.174.72.0/21 9498 -122.174.80.0/20 24560 -122.174.96.0/19 24560 -122.174.128.0/20 24560 -122.174.144.0/21 24560 -122.174.152.0/22 24560 -122.174.156.0/22 9498 -122.174.160.0/19 24560 -122.174.192.0/18 24560 -122.175.1.0/24 24560 -122.175.12.0/22 24560 -122.175.16.0/20 24560 -122.175.32.0/19 24560 -122.175.64.0/18 24560 -122.175.128.0/19 24560 -122.175.160.0/20 24560 -122.175.176.0/21 24560 -122.175.184.0/22 24560 -122.175.190.0/23 24560 -122.175.192.0/19 24560 -122.175.224.0/20 24560 -122.175.240.0/21 24560 -122.175.248.0/22 24560 -122.175.255.0/24 9498 -122.176.0.0/18 24560 -122.176.64.0/19 24560 -122.176.96.0/20 24560 -122.176.112.0/21 24560 -122.176.120.0/22 24560 -122.176.126.0/23 24560 -122.176.128.0/17 24560 -122.177.0.0/16 24560 -122.178.8.0/21 24560 -122.178.16.0/20 24560 -122.178.32.0/19 24560 -122.178.64.0/18 24560 -122.178.128.0/17 24560 -122.179.0.0/18 24560 -122.179.64.0/21 24560 -122.179.128.0/20 24560 -122.179.144.0/21 24560 -122.179.152.0/22 24560 -122.179.156.0/24 24560 -122.179.158.0/23 24560 -122.179.160.0/20 24560 -122.179.176.0/21 24560 -122.179.184.0/22 24560 -122.179.190.0/24 24560 -122.179.192.0/18 24560 -122.180.0.0/23 24560 -122.180.2.0/24 24560 -122.180.3.0/24 9498 -122.180.4.0/24 24560 -122.180.5.0/24 9498 -122.180.6.0/24 9498 -122.180.7.0/24 24560 -122.180.8.0/24 24560 -122.180.9.0/24 9498 -122.180.10.0/24 24560 -122.180.11.0/24 9498 -122.180.12.0/22 24560 -122.180.16.0/20 24560 -122.180.32.0/20 24560 -122.180.48.0/22 9498 -122.180.52.0/24 24560 -122.180.53.0/24 9498 -122.180.54.0/23 24560 -122.180.56.0/21 24560 -122.180.64.0/22 24560 -122.180.68.0/23 9498 -122.180.70.0/23 24560 -122.180.72.0/22 24560 -122.180.76.0/23 9498 -122.180.78.0/23 24560 -122.180.80.0/23 24560 -122.180.82.0/24 9498 -122.180.83.0/24 24560 -122.180.84.0/22 24560 -122.180.88.0/24 9498 -122.180.89.0/24 24560 -122.180.90.0/23 24560 -122.180.92.0/22 24560 -122.180.96.0/23 9498 -122.180.98.0/23 24560 -122.180.100.0/24 24560 -122.180.101.0/24 9498 -122.180.102.0/23 24560 -122.180.104.0/23 24560 -122.180.106.0/23 9498 -122.180.108.0/23 24560 -122.180.110.0/24 9498 -122.180.111.0/24 24560 -122.180.112.0/22 24560 -122.180.116.0/23 9498 -122.180.118.0/23 24560 -122.180.120.0/22 24560 -122.180.124.0/23 9498 -122.180.126.0/23 24560 -122.180.128.0/22 24560 -122.180.132.0/23 9498 -122.180.134.0/23 24560 -122.180.136.0/23 24560 -122.180.138.0/24 9498 -122.180.139.0/24 24560 -122.180.140.0/23 9498 -122.180.142.0/23 24560 -122.180.144.0/22 24560 -122.180.148.0/23 24560 -122.180.150.0/24 9498 -122.180.151.0/24 24560 -122.180.152.0/21 24560 -122.180.160.0/19 24560 -122.180.192.0/18 24560 -122.181.0.0/19 9498 -122.181.32.0/19 24560 -122.181.64.0/18 24560 -122.181.128.0/19 9498 -122.181.160.0/21 9498 -122.181.168.0/22 9498 -122.181.172.0/24 9498 -122.181.173.0/24 24560 -122.181.174.0/23 9498 -122.181.176.0/20 9498 -122.181.192.0/18 24560 -122.182.0.0/24 9498 -122.182.1.0/24 24560 -122.182.2.0/24 9498 -122.182.3.0/24 24560 -122.182.4.0/22 9498 -122.182.8.0/23 9498 -122.182.10.0/24 24560 -122.182.11.0/24 9498 -122.182.12.0/24 24560 -122.182.13.0/24 9498 -122.182.14.0/23 9498 -122.182.16.0/21 9498 -122.182.24.0/22 9498 -122.182.28.0/24 9498 -122.182.29.0/24 24560 -122.182.30.0/23 24560 -122.182.32.0/24 24560 -122.182.33.0/24 9498 -122.182.34.0/24 9498 -122.182.35.0/24 24560 -122.182.36.0/22 24560 -122.182.40.0/21 24560 -122.182.48.0/20 24560 -122.182.64.0/18 24560 -122.182.128.0/18 9498 -122.182.192.0/18 24560 -122.183.0.0/20 24560 -122.183.16.0/24 24560 -122.183.17.0/24 9498 -122.183.18.0/23 24560 -122.183.20.0/24 9498 -122.183.21.0/24 24560 -122.183.22.0/23 24560 -122.183.24.0/21 24560 -122.183.32.0/19 24560 -122.183.64.0/18 24560 -122.183.128.0/18 24560 -122.183.192.0/21 24560 -122.183.200.0/24 24560 -122.183.201.0/24 9498 -122.183.202.0/23 24560 -122.183.204.0/22 24560 -122.183.208.0/20 24560 -122.183.224.0/20 24560 -122.183.240.0/23 24560 -122.183.242.0/24 9498 -122.183.243.0/24 24560 -122.183.244.0/22 24560 -122.183.248.0/21 24560 -122.184.0.0/16 9498 -122.188.0.0/14 4837 -122.192.0.0/14 4837 -122.196.0.0/15 9617 -122.198.64.0/23 18243 -122.199.0.0/18 38195 -122.199.64.0/18 9981 -122.199.128.0/17 17877 -122.200.0.0/20 38153 -122.200.16.0/21 38310 -122.200.24.0/23 1221 -122.200.26.0/23 38809 -122.200.28.0/24 9255 -122.200.32.0/22 24295 -122.200.36.0/22 17675 -122.200.48.0/24 38146 -122.200.50.0/23 38146 -122.200.53.0/24 38146 -122.200.54.0/23 38146 -122.200.56.0/24 38456 -122.200.58.0/23 38456 -122.200.61.0/24 38456 -122.200.62.0/24 38456 -122.200.64.0/21 4847 -122.200.72.0/22 4847 -122.200.76.0/23 4847 -122.200.78.0/24 4847 -122.200.79.0/24 7497 -122.200.80.0/21 4847 -122.200.88.0/23 7497 -122.200.90.0/24 7497 -122.200.91.0/24 4847 -122.200.92.0/23 4847 -122.200.94.0/24 7497 -122.200.95.0/24 4847 -122.200.96.0/21 7497 -122.200.104.0/22 4847 -122.200.108.0/24 7497 -122.200.109.0/24 4847 -122.200.110.0/24 4847 -122.200.111.0/24 7497 -122.200.112.0/21 7497 -122.200.120.0/21 4847 -122.200.128.0/22 23818 -122.200.132.0/22 24043 -122.200.136.0/21 59127 -122.200.144.0/21 38148 -122.200.153.0/24 18046 -122.200.154.0/23 18046 -122.200.156.0/22 18046 -122.200.160.0/21 10083 -122.200.168.0/24 18405 -122.200.169.0/24 10083 -122.200.170.0/23 10083 -122.200.172.0/22 10083 -122.200.176.0/20 56228 -122.200.192.0/18 9597 -122.201.0.0/21 17530 -122.201.8.0/21 38244 -122.201.16.0/20 17882 -122.201.32.0/21 12684 -122.201.40.0/22 12684 -122.201.46.0/23 12684 -122.201.64.0/18 38719 -122.201.128.0/17 9676 -122.202.0.0/20 45838 -122.202.16.0/21 2514 -122.202.24.0/21 63775 -122.202.32.0/20 10175 -122.202.48.0/20 7623 -122.202.64.0/20 7604 -122.202.80.0/20 38220 -122.202.96.0/19 9370 -122.202.128.0/17 9946 -122.203.0.0/21 38403 -122.203.8.0/22 38403 -122.203.12.0/22 9316 -122.203.16.0/21 38412 -122.203.24.0/22 38412 -122.203.28.0/22 9316 -122.203.32.0/20 38402 -122.203.48.0/22 38402 -122.203.52.0/23 38402 -122.203.54.0/24 38402 -122.203.55.0/24 38394 -122.203.56.0/24 38402 -122.203.57.0/24 9316 -122.203.58.0/23 38402 -122.203.60.0/22 38402 -122.203.64.0/20 38411 -122.203.80.0/22 38411 -122.203.84.0/23 38411 -122.203.86.0/24 38411 -122.203.87.0/24 9316 -122.203.88.0/22 38411 -122.203.92.0/24 38411 -122.203.93.0/24 38412 -122.203.94.0/24 38412 -122.203.95.0/24 9316 -122.203.96.0/21 38408 -122.203.104.0/22 38408 -122.203.108.0/23 38408 -122.203.110.0/24 38408 -122.203.111.0/24 9316 -122.203.112.0/20 38406 -122.203.128.0/22 38406 -122.203.132.0/24 9316 -122.203.133.0/24 38406 -122.203.134.0/23 38406 -122.203.136.0/24 9316 -122.203.137.0/24 38406 -122.203.138.0/23 38406 -122.203.140.0/23 38406 -122.203.142.0/23 9316 -122.203.144.0/21 38401 -122.203.152.0/23 9316 -122.203.154.0/23 38400 -122.203.156.0/23 9316 -122.203.158.0/23 38401 -122.203.160.0/21 9316 -122.203.168.0/23 9316 -122.203.170.0/23 38403 -122.203.172.0/24 9316 -122.203.173.0/24 38408 -122.203.174.0/23 38408 -122.203.176.0/20 38400 -122.203.192.0/24 38394 -122.203.193.0/24 9316 -122.203.194.0/24 9316 -122.203.195.0/24 38394 -122.203.196.0/23 9316 -122.203.198.0/23 38394 -122.203.200.0/24 38394 -122.203.201.0/24 38406 -122.203.202.0/23 38406 -122.203.204.0/23 38406 -122.203.206.0/23 38394 -122.203.208.0/21 38394 -122.203.216.0/23 38394 -122.203.218.0/23 9316 -122.203.220.0/23 38406 -122.203.222.0/23 9316 -122.203.224.0/23 9316 -122.203.226.0/23 38402 -122.203.228.0/23 38411 -122.203.230.0/24 9316 -122.203.231.0/24 38410 -122.203.232.0/24 38416 -122.203.233.0/24 9316 -122.203.234.0/24 38398 -122.203.235.0/24 38415 -122.203.236.0/24 38417 -122.203.237.0/24 9316 -122.203.238.0/24 38396 -122.203.239.0/24 38390 -122.203.240.0/24 38408 -122.203.241.0/24 38403 -122.203.242.0/24 38402 -122.203.243.0/24 38400 -122.203.244.0/24 38406 -122.203.245.0/24 9316 -122.203.246.0/24 9316 -122.203.247.0/24 38394 -122.203.248.0/24 38395 -122.203.249.0/24 38411 -122.203.250.0/24 38412 -122.203.251.0/24 9316 -122.203.252.0/24 38401 -122.203.253.0/24 38391 -122.203.254.0/23 9316 -122.204.0.0/14 4538 -122.208.0.0/13 17506 -122.216.0.0/14 17506 -122.220.0.0/15 17506 -122.222.0.0/15 2519 -122.224.0.0/22 4134 -122.224.4.0/22 58461 -122.224.8.0/22 58461 -122.224.12.0/22 4134 -122.224.16.0/23 4134 -122.224.18.0/23 58461 -122.224.20.0/22 4134 -122.224.24.0/21 4134 -122.224.32.0/22 58461 -122.224.36.0/22 4134 -122.224.40.0/22 4134 -122.224.44.0/22 58461 -122.224.48.0/22 58461 -122.224.52.0/24 58461 -122.224.53.0/24 4134 -122.224.54.0/23 58461 -122.224.56.0/21 4134 -122.224.64.0/20 4134 -122.224.80.0/22 58461 -122.224.84.0/22 4134 -122.224.88.0/22 4134 -122.224.92.0/23 4134 -122.224.94.0/24 4134 -122.224.95.0/24 58461 -122.224.96.0/21 4134 -122.224.104.0/22 58461 -122.224.108.0/22 4134 -122.224.112.0/20 4134 -122.224.128.0/20 4134 -122.224.144.0/23 4134 -122.224.146.0/23 58461 -122.224.148.0/22 4134 -122.224.152.0/21 4134 -122.224.160.0/20 4134 -122.224.176.0/21 4134 -122.224.184.0/22 58461 -122.224.188.0/22 4134 -122.224.192.0/22 58461 -122.224.196.0/22 4134 -122.224.200.0/21 4134 -122.224.208.0/22 4134 -122.224.212.0/22 58461 -122.224.216.0/21 4134 -122.224.224.0/20 4134 -122.224.240.0/21 4134 -122.224.248.0/24 4134 -122.224.249.0/24 58461 -122.224.250.0/23 4134 -122.224.252.0/22 4134 -122.225.0.0/21 4134 -122.225.8.0/24 4134 -122.225.9.0/24 58461 -122.225.10.0/24 4134 -122.225.11.0/24 58461 -122.225.12.0/22 4134 -122.225.16.0/21 4134 -122.225.24.0/22 4134 -122.225.28.0/22 58461 -122.225.32.0/23 58461 -122.225.34.0/24 58461 -122.225.35.0/24 4134 -122.225.36.0/23 58461 -122.225.38.0/24 58461 -122.225.39.0/24 4134 -122.225.40.0/21 4134 -122.225.48.0/21 4134 -122.225.56.0/24 4134 -122.225.57.0/24 58461 -122.225.58.0/23 58461 -122.225.60.0/22 4134 -122.225.64.0/23 4134 -122.225.66.0/23 58461 -122.225.68.0/24 58461 -122.225.69.0/24 4134 -122.225.70.0/23 4134 -122.225.72.0/21 4134 -122.225.80.0/24 4134 -122.225.81.0/24 58461 -122.225.82.0/24 4134 -122.225.83.0/24 58461 -122.225.84.0/22 4134 -122.225.88.0/21 4134 -122.225.96.0/21 4134 -122.225.104.0/22 4134 -122.225.108.0/23 4134 -122.225.110.0/24 58461 -122.225.111.0/24 4134 -122.225.112.0/23 4134 -122.225.114.0/23 58461 -122.225.116.0/22 4134 -122.225.120.0/21 4134 -122.225.128.0/22 4809 -122.225.132.0/22 4134 -122.225.136.0/21 4134 -122.225.144.0/20 4809 -122.225.160.0/19 4134 -122.225.192.0/20 4134 -122.225.208.0/21 58461 -122.225.216.0/23 58461 -122.225.218.0/23 4134 -122.225.220.0/22 4134 -122.225.224.0/20 4809 -122.225.240.0/21 4809 -122.225.248.0/22 4809 -122.225.252.0/23 4809 -122.225.254.0/24 4809 -122.225.255.0/24 136188 -122.226.0.0/19 4134 -122.226.32.0/21 4134 -122.226.40.0/22 4134 -122.226.44.0/24 136190 -122.226.45.0/24 4134 -122.226.46.0/23 4134 -122.226.48.0/22 4134 -122.226.52.0/24 4134 -122.226.53.0/24 136190 -122.226.54.0/23 4134 -122.226.56.0/24 136190 -122.226.57.0/24 4134 -122.226.58.0/24 4134 -122.226.59.0/24 136190 -122.226.60.0/22 4134 -122.226.64.0/24 136190 -122.226.65.0/24 4134 -122.226.66.0/23 4134 -122.226.68.0/22 4134 -122.226.72.0/24 4134 -122.226.73.0/24 136190 -122.226.74.0/24 136190 -122.226.75.0/24 4134 -122.226.76.0/22 4134 -122.226.80.0/22 4134 -122.226.84.0/24 136190 -122.226.85.0/24 4134 -122.226.86.0/24 136190 -122.226.87.0/24 4134 -122.226.88.0/22 4134 -122.226.92.0/23 4134 -122.226.94.0/24 4134 -122.226.95.0/24 136190 -122.226.96.0/22 4134 -122.226.100.0/24 136190 -122.226.101.0/24 4134 -122.226.102.0/24 136190 -122.226.103.0/24 4134 -122.226.104.0/24 136190 -122.226.105.0/24 4134 -122.226.106.0/23 4134 -122.226.108.0/24 4134 -122.226.109.0/24 136190 -122.226.110.0/24 4134 -122.226.111.0/24 136190 -122.226.112.0/22 4134 -122.226.116.0/24 4134 -122.226.117.0/24 136190 -122.226.118.0/23 4134 -122.226.120.0/24 136190 -122.226.121.0/24 4134 -122.226.122.0/24 136190 -122.226.123.0/24 4134 -122.226.124.0/22 4134 -122.226.128.0/19 4134 -122.226.160.0/24 4134 -122.226.161.0/24 136190 -122.226.162.0/23 4134 -122.226.164.0/22 4134 -122.226.168.0/21 4134 -122.226.176.0/22 4134 -122.226.180.0/22 136190 -122.226.184.0/23 136190 -122.226.186.0/24 4134 -122.226.187.0/24 136190 -122.226.188.0/24 136190 -122.226.189.0/24 4134 -122.226.190.0/24 136190 -122.226.191.0/24 4134 -122.226.192.0/24 136190 -122.226.193.0/24 4134 -122.226.194.0/23 4134 -122.226.196.0/23 4134 -122.226.198.0/24 4134 -122.226.199.0/24 136190 -122.226.200.0/23 4134 -122.226.202.0/24 136190 -122.226.203.0/24 4134 -122.226.204.0/23 4134 -122.226.206.0/23 136190 -122.226.208.0/23 4134 -122.226.210.0/24 4134 -122.226.211.0/24 136190 -122.226.212.0/23 136190 -122.226.214.0/23 4134 -122.226.216.0/22 4134 -122.226.220.0/23 4134 -122.226.222.0/24 4134 -122.226.223.0/24 136190 -122.226.224.0/22 4134 -122.226.228.0/24 4134 -122.226.229.0/24 136190 -122.226.230.0/23 4134 -122.226.232.0/21 4134 -122.226.240.0/24 136190 -122.226.241.0/24 4134 -122.226.242.0/23 4134 -122.226.244.0/22 4134 -122.226.248.0/22 4134 -122.226.252.0/24 4134 -122.226.253.0/24 136190 -122.226.254.0/24 136190 -122.226.255.0/24 4134 -122.227.0.0/21 4134 -122.227.8.0/22 4134 -122.227.12.0/23 4134 -122.227.14.0/24 4134 -122.227.15.0/24 136190 -122.227.16.0/22 4134 -122.227.20.0/23 4134 -122.227.22.0/24 4134 -122.227.23.0/24 136190 -122.227.24.0/21 4134 -122.227.32.0/21 4134 -122.227.40.0/23 4134 -122.227.42.0/23 136190 -122.227.44.0/22 4134 -122.227.48.0/21 4134 -122.227.56.0/23 4134 -122.227.58.0/23 136190 -122.227.60.0/22 4134 -122.227.64.0/18 4134 -122.227.128.0/20 4134 -122.227.144.0/23 4134 -122.227.146.0/24 4134 -122.227.147.0/24 136188 -122.227.148.0/22 4134 -122.227.152.0/21 4134 -122.227.160.0/22 4134 -122.227.164.0/24 136188 -122.227.165.0/24 4134 -122.227.166.0/23 4134 -122.227.168.0/21 4134 -122.227.176.0/21 4134 -122.227.184.0/24 4134 -122.227.185.0/24 136188 -122.227.186.0/23 4134 -122.227.188.0/24 4134 -122.227.189.0/24 136188 -122.227.190.0/23 4134 -122.227.192.0/21 4134 -122.227.200.0/24 4134 -122.227.201.0/24 136188 -122.227.202.0/23 4134 -122.227.204.0/22 4134 -122.227.208.0/22 4134 -122.227.212.0/23 4134 -122.227.214.0/24 136188 -122.227.215.0/24 4134 -122.227.216.0/24 136188 -122.227.217.0/24 4134 -122.227.218.0/23 4134 -122.227.220.0/22 4134 -122.227.224.0/23 4134 -122.227.226.0/24 4134 -122.227.227.0/24 136188 -122.227.228.0/24 136188 -122.227.229.0/24 4134 -122.227.230.0/24 136188 -122.227.231.0/24 4134 -122.227.232.0/22 4134 -122.227.236.0/24 4134 -122.227.237.0/24 136188 -122.227.238.0/23 4134 -122.227.240.0/24 4134 -122.227.241.0/24 136188 -122.227.242.0/23 4134 -122.227.244.0/22 4134 -122.227.248.0/23 4134 -122.227.250.0/24 4134 -122.227.251.0/24 136188 -122.227.252.0/23 4134 -122.227.254.0/24 136188 -122.227.255.0/24 4134 -122.228.0.0/19 134771 -122.228.32.0/20 4134 -122.228.48.0/21 4134 -122.228.56.0/21 134771 -122.228.64.0/19 134771 -122.228.96.0/21 134771 -122.228.104.0/21 4134 -122.228.112.0/21 134771 -122.228.120.0/21 4134 -122.228.128.0/18 4134 -122.228.192.0/21 134771 -122.228.200.0/23 134771 -122.228.202.0/24 4134 -122.228.203.0/24 134771 -122.228.204.0/23 134771 -122.228.206.0/24 4134 -122.228.207.0/24 134771 -122.228.208.0/21 134771 -122.228.216.0/23 134771 -122.228.218.0/24 4134 -122.228.219.0/24 134771 -122.228.220.0/22 4134 -122.228.224.0/19 134771 -122.229.0.0/23 4134 -122.229.2.0/24 4134 -122.229.3.0/24 58461 -122.229.4.0/22 4134 -122.229.8.0/21 4134 -122.229.16.0/20 4134 -122.229.32.0/19 4134 -122.229.64.0/18 4134 -122.229.128.0/17 4134 -122.230.0.0/15 4134 -122.232.0.0/14 4134 -122.236.0.0/16 4134 -122.237.0.0/18 4134 -122.237.64.0/19 4134 -122.237.96.0/21 58461 -122.237.104.0/21 4134 -122.237.112.0/20 4134 -122.237.128.0/17 4134 -122.238.0.0/15 4134 -122.240.0.0/14 4134 -122.244.0.0/15 4134 -122.246.0.0/19 136188 -122.246.32.0/19 4134 -122.246.64.0/18 4134 -122.246.128.0/17 4134 -122.247.0.0/16 4134 -122.248.16.0/23 4352 -122.248.18.0/24 4352 -122.248.20.0/22 4352 -122.248.32.0/21 45325 -122.248.40.0/24 45325 -122.248.42.0/23 45325 -122.248.44.0/23 45325 -122.248.46.0/24 45325 -122.248.48.0/20 4837 -122.248.64.0/19 7522 -122.248.96.0/22 131322 -122.248.100.0/22 18399 -122.248.104.0/22 18399 -122.248.108.0/22 131322 -122.248.112.0/23 18399 -122.248.114.0/23 131322 -122.248.116.0/23 131322 -122.248.118.0/23 18399 -122.248.120.0/23 18399 -122.248.122.0/24 18399 -122.248.123.0/24 131322 -122.248.124.0/23 131322 -122.248.126.0/24 18399 -122.248.127.0/24 131322 -122.248.128.0/20 2687 -122.248.144.0/24 21734 -122.248.145.0/24 2687 -122.248.146.0/23 2687 -122.248.148.0/22 2687 -122.248.152.0/21 2687 -122.248.160.0/19 2687 -122.248.192.0/18 16509 -122.249.0.0/16 4685 -122.250.0.0/15 18077 -122.252.0.0/22 38220 -122.252.4.0/23 38220 -122.252.6.0/24 38220 -122.252.7.0/24 45152 -122.252.8.0/22 38220 -122.252.12.0/23 45152 -122.252.14.0/23 38220 -122.252.24.0/21 38325 -122.252.32.0/21 24319 -122.252.40.0/21 20940 -122.252.48.0/20 24319 -122.252.64.0/18 18318 -122.252.128.0/21 9299 -122.252.136.0/21 9498 -122.252.144.0/24 135051 -122.252.145.0/24 17918 -122.252.146.0/23 17918 -122.252.148.0/22 17918 -122.252.152.0/21 17705 -122.252.176.0/21 38286 -122.252.184.0/21 9834 -122.252.192.0/19 38133 -122.252.224.0/21 24186 -122.252.232.0/24 135750 -122.252.233.0/24 24186 -122.252.234.0/24 135750 -122.252.235.0/24 24186 -122.252.236.0/22 24186 -122.252.240.0/23 24186 -122.252.242.0/24 135750 -122.252.243.0/24 24186 -122.252.244.0/22 24186 -122.252.248.0/21 24186 -122.253.0.0/16 2510 -122.254.0.0/18 4662 -122.254.128.0/17 17871 -122.255.0.0/18 18001 -122.255.72.0/23 38306 -122.255.75.0/24 38306 -122.255.76.0/22 24295 -122.255.80.0/20 2914 -122.255.96.0/19 38322 -122.255.128.0/17 4721 -123.0.16.0/20 56054 -123.0.32.0/19 24164 -123.0.64.0/18 18278 -123.0.192.0/18 131596 -123.1.0.0/17 18126 -123.1.128.0/18 17444 -123.1.192.0/21 17444 -123.1.204.0/22 45474 -123.1.208.0/20 17444 -123.1.224.0/24 10103 -123.1.225.0/24 17444 -123.1.226.0/23 17444 -123.1.228.0/22 17444 -123.1.232.0/21 17444 -123.2.0.0/16 38285 -123.3.0.0/22 38285 -123.3.4.0/23 38285 -123.3.6.0/23 9443 -123.3.8.0/21 38285 -123.3.16.0/20 38285 -123.3.32.0/19 38285 -123.3.64.0/18 38285 -123.3.128.0/18 38285 -123.3.192.0/19 38285 -123.3.224.0/20 9443 -123.3.240.0/20 38285 -123.4.0.0/14 4837 -123.8.0.0/13 4837 -123.16.0.0/13 45899 -123.24.0.0/14 45899 -123.28.0.0/16 45899 -123.29.0.0/17 45899 -123.29.128.0/18 45899 -123.30.0.0/18 45899 -123.30.64.0/22 45899 -123.30.68.0/23 45899 -123.30.70.0/24 7643 -123.30.71.0/24 45899 -123.30.72.0/24 7643 -123.30.73.0/24 45899 -123.30.74.0/23 45899 -123.30.76.0/22 45899 -123.30.80.0/21 45899 -123.30.88.0/24 45899 -123.30.89.0/24 7643 -123.30.90.0/23 45899 -123.30.92.0/23 45899 -123.30.94.0/23 7643 -123.30.96.0/22 45899 -123.30.100.0/23 45899 -123.30.102.0/24 45899 -123.30.103.0/24 7643 -123.30.104.0/23 7643 -123.30.106.0/23 45899 -123.30.108.0/23 7643 -123.30.110.0/24 45899 -123.30.111.0/24 7643 -123.30.112.0/21 45899 -123.30.120.0/22 45899 -123.30.124.0/23 45899 -123.30.126.0/24 45899 -123.30.127.0/24 7643 -123.30.128.0/23 7643 -123.30.130.0/23 45899 -123.30.132.0/22 7643 -123.30.136.0/22 7643 -123.30.140.0/24 7643 -123.30.141.0/24 45899 -123.30.142.0/23 7643 -123.30.144.0/21 45899 -123.30.152.0/22 45899 -123.30.156.0/23 45899 -123.30.158.0/23 135905 -123.30.160.0/24 7643 -123.30.161.0/24 45899 -123.30.162.0/24 45899 -123.30.163.0/24 7643 -123.30.164.0/24 7643 -123.30.165.0/24 45899 -123.30.166.0/23 45899 -123.30.168.0/21 45899 -123.30.176.0/20 45899 -123.30.192.0/19 45899 -123.30.224.0/22 45899 -123.30.228.0/23 45899 -123.30.230.0/24 7643 -123.30.231.0/24 45899 -123.30.232.0/21 45899 -123.30.240.0/22 45899 -123.30.244.0/24 7643 -123.30.245.0/24 45899 -123.30.246.0/23 45899 -123.30.248.0/23 45899 -123.30.250.0/24 7643 -123.30.251.0/24 45899 -123.30.252.0/24 45899 -123.30.253.0/24 7643 -123.30.254.0/23 45899 -123.31.0.0/21 45899 -123.31.8.0/23 45899 -123.31.10.0/24 135905 -123.31.11.0/24 45899 -123.31.12.0/24 135905 -123.31.13.0/24 45899 -123.31.14.0/23 45899 -123.31.16.0/21 45899 -123.31.24.0/22 45899 -123.31.28.0/24 45899 -123.31.29.0/24 135905 -123.31.30.0/23 45899 -123.31.32.0/21 45899 -123.31.40.0/24 45899 -123.31.41.0/24 135905 -123.31.42.0/23 45899 -123.31.44.0/22 45899 -123.31.48.0/20 45899 -123.31.128.0/18 45899 -123.32.0.0/18 6619 -123.48.0.0/16 18126 -123.49.0.0/19 17494 -123.49.32.0/21 17494 -123.49.40.0/23 17494 -123.49.42.0/24 17494 -123.49.43.0/24 23876 -123.49.44.0/22 17494 -123.49.48.0/20 17494 -123.49.140.0/22 134157 -123.49.240.0/24 63641 -123.50.0.0/19 10013 -123.50.32.0/19 18429 -123.50.64.0/19 9471 -123.50.96.0/24 55943 -123.50.97.0/24 9471 -123.50.98.0/23 9471 -123.50.100.0/22 9471 -123.50.104.0/21 9471 -123.50.112.0/20 9471 -123.50.128.0/19 9224 -123.50.192.0/19 2514 -123.50.224.0/19 9614 -123.51.0.0/17 45510 -123.51.128.0/19 9919 -123.51.160.0/20 9919 -123.51.176.0/22 9919 -123.51.180.0/23 4780 -123.51.182.0/23 9919 -123.51.184.0/21 9919 -123.51.192.0/18 9919 -123.52.0.0/17 4134 -123.52.128.0/19 4134 -123.52.160.0/20 4134 -123.52.176.0/21 4134 -123.52.184.0/22 4134 -123.52.188.0/24 4134 -123.52.189.0/24 139018 -123.52.190.0/23 4134 -123.52.192.0/18 4134 -123.53.0.0/17 4134 -123.53.128.0/21 4134 -123.53.136.0/23 4134 -123.53.138.0/23 139018 -123.53.140.0/22 4134 -123.53.144.0/20 4134 -123.53.160.0/20 4134 -123.53.176.0/22 4134 -123.53.180.0/22 139018 -123.53.184.0/21 4134 -123.53.192.0/18 4134 -123.54.0.0/15 4134 -123.56.0.0/15 37963 -123.58.0.0/20 23724 -123.58.16.0/20 4808 -123.58.32.0/19 17623 -123.58.92.0/22 38339 -123.58.96.0/19 133119 -123.58.128.0/21 4837 -123.58.136.0/22 4837 -123.58.140.0/22 136190 -123.58.144.0/21 4837 -123.58.152.0/22 4837 -123.58.156.0/22 136190 -123.58.160.0/19 45062 -123.58.224.0/20 4847 -123.58.240.0/20 45058 -123.59.0.0/16 4808 -123.63.0.0/19 55410 -123.63.32.0/21 55410 -123.63.40.0/23 55410 -123.63.42.0/24 45635 -123.63.43.0/24 55410 -123.63.44.0/24 45635 -123.63.45.0/24 55410 -123.63.46.0/24 45635 -123.63.47.0/24 55410 -123.63.48.0/20 55410 -123.63.64.0/18 55410 -123.63.128.0/17 55410 -123.64.0.0/17 9394 -123.64.128.0/18 9394 -123.64.192.0/19 9394 -123.64.224.0/21 9394 -123.64.232.0/22 9394 -123.64.236.0/22 38370 -123.64.240.0/20 9394 -123.65.0.0/16 38370 -123.66.0.0/20 9394 -123.66.16.0/22 9394 -123.66.20.0/23 9394 -123.66.22.0/23 38370 -123.66.24.0/21 9394 -123.66.32.0/23 9394 -123.66.34.0/24 9394 -123.66.35.0/24 38370 -123.66.36.0/22 9394 -123.66.40.0/21 9394 -123.66.48.0/20 9394 -123.66.64.0/19 9394 -123.66.96.0/20 9394 -123.66.112.0/23 38370 -123.66.114.0/24 9394 -123.66.115.0/24 38370 -123.66.116.0/22 9394 -123.66.120.0/21 38370 -123.66.128.0/17 24138 -123.67.0.0/16 9394 -123.68.0.0/14 9394 -123.72.0.0/14 9394 -123.76.0.0/16 134810 -123.77.0.0/16 9394 -123.78.0.0/16 134810 -123.79.0.0/16 9394 -123.80.0.0/15 9394 -123.82.0.0/17 9394 -123.82.128.0/18 9808 -123.82.192.0/19 9808 -123.82.224.0/20 9808 -123.82.240.0/24 9808 -123.82.241.0/24 9394 -123.82.242.0/23 9808 -123.82.244.0/22 9808 -123.82.248.0/21 9808 -123.83.0.0/16 38341 -123.84.0.0/14 9394 -123.88.0.0/14 9394 -123.92.0.0/16 9394 -123.93.0.0/16 45069 -123.94.0.0/15 9394 -123.96.0.0/18 4134 -123.96.64.0/20 4134 -123.96.80.0/21 4134 -123.96.88.0/21 136188 -123.96.96.0/19 4134 -123.96.128.0/17 4134 -123.97.0.0/16 4134 -123.98.0.0/17 17816 -123.98.144.0/20 2514 -123.98.160.0/19 9943 -123.98.192.0/19 17577 -123.98.224.0/19 4721 -123.99.64.0/18 17857 -123.99.165.0/24 133948 -123.100.32.0/19 24033 -123.100.64.0/18 9889 -123.100.128.0/21 38289 -123.100.136.0/22 38289 -123.100.140.0/23 38289 -123.100.142.0/24 38289 -123.100.143.0/24 135060 -123.100.144.0/23 135060 -123.100.147.0/24 38289 -123.100.148.0/22 38289 -123.100.152.0/21 38289 -123.100.160.0/19 38673 -123.100.192.0/19 9614 -123.100.224.0/24 4769 -123.100.226.0/24 136170 -123.100.228.0/22 55736 -123.100.233.0/24 136735 -123.100.235.0/24 9892 -123.100.236.0/22 9892 -123.100.240.0/22 9892 -123.100.244.0/23 9892 -123.100.246.0/24 9892 -123.100.248.0/21 9892 -123.101.0.0/21 4809 -123.101.8.0/22 4809 -123.101.12.0/22 4134 -123.101.16.0/20 4134 -123.101.32.0/19 4134 -123.101.64.0/18 4134 -123.101.128.0/17 4134 -123.103.0.0/23 4835 -123.103.2.0/23 4808 -123.103.4.0/22 4808 -123.103.8.0/22 4808 -123.103.12.0/23 4808 -123.103.14.0/24 23724 -123.103.15.0/24 4808 -123.103.16.0/21 4808 -123.103.24.0/22 4808 -123.103.28.0/23 4808 -123.103.30.0/24 4808 -123.103.32.0/19 4808 -123.103.64.0/18 4808 -123.103.128.0/18 7690 -123.103.192.0/19 4826 -123.103.224.0/20 7690 -123.103.240.0/22 38478 -123.103.246.0/23 38478 -123.103.248.0/23 38478 -123.103.254.0/24 38478 -123.104.0.0/14 9595 -123.108.0.0/21 55303 -123.108.8.0/22 38159 -123.108.13.0/24 38159 -123.108.15.0/24 38159 -123.108.16.0/20 9271 -123.108.32.0/19 17439 -123.108.64.0/22 133799 -123.108.68.0/22 23871 -123.108.72.0/24 59214 -123.108.76.0/22 59371 -123.108.80.0/22 134907 -123.108.88.0/22 135673 -123.108.92.0/22 58895 -123.108.96.0/21 45313 -123.108.108.0/22 55933 -123.108.119.0/24 3491 -123.108.120.0/21 38325 -123.108.128.0/23 40676 -123.108.130.0/23 58730 -123.108.144.0/21 38441 -123.108.152.0/21 4713 -123.108.160.0/22 9762 -123.108.164.0/23 7562 -123.108.166.0/23 9762 -123.108.168.0/21 9762 -123.108.176.0/21 9569 -123.108.184.0/21 10175 -123.108.192.0/21 9621 -123.108.200.0/21 45694 -123.108.208.0/22 4808 -123.108.212.0/23 4808 -123.108.216.0/23 4808 -123.108.220.0/22 4808 -123.108.224.0/21 38457 -123.108.236.0/22 17505 -123.108.240.0/21 24389 -123.108.248.0/21 9902 -123.109.0.0/21 9689 -123.109.8.0/22 9689 -123.109.12.0/22 38096 -123.109.16.0/20 38096 -123.109.32.0/20 38096 -123.109.48.0/21 38096 -123.109.56.0/21 9689 -123.109.64.0/22 9689 -123.109.68.0/22 38096 -123.109.72.0/21 38096 -123.109.80.0/20 38096 -123.109.96.0/21 38096 -123.109.104.0/22 38096 -123.109.108.0/22 9689 -123.109.112.0/21 38096 -123.109.120.0/22 38096 -123.109.124.0/23 38096 -123.109.126.0/24 38096 -123.109.127.0/24 9689 -123.109.128.0/18 38103 -123.109.192.0/19 38095 -123.109.224.0/19 38097 -123.110.0.0/16 131596 -123.111.0.0/17 9318 -123.111.128.0/21 9318 -123.111.136.0/23 9318 -123.111.138.0/23 10035 -123.111.140.0/22 9318 -123.111.144.0/21 9318 -123.111.152.0/22 9318 -123.111.156.0/24 9318 -123.111.157.0/24 45399 -123.111.158.0/23 9318 -123.111.160.0/21 9318 -123.111.168.0/22 9318 -123.111.172.0/23 9318 -123.111.174.0/23 10035 -123.111.176.0/24 10035 -123.111.177.0/24 9318 -123.111.178.0/23 9318 -123.111.180.0/22 9318 -123.111.184.0/21 9318 -123.111.192.0/18 9318 -123.112.0.0/12 4808 -123.128.0.0/13 4837 -123.136.0.0/23 137872 -123.136.4.0/22 137872 -123.136.8.0/23 137872 -123.136.10.0/24 137872 -123.136.12.0/22 137872 -123.136.16.0/22 38468 -123.136.20.0/23 38468 -123.136.24.0/21 38493 -123.136.32.0/19 7600 -123.136.64.0/21 23767 -123.136.72.0/22 38471 -123.136.76.0/23 38471 -123.136.96.0/19 38466 -123.136.128.0/24 45528 -123.136.130.0/23 45528 -123.136.132.0/22 45528 -123.136.136.0/23 45528 -123.136.148.0/22 45528 -123.136.152.0/23 45528 -123.136.154.0/24 45528 -123.136.156.0/23 45528 -123.136.158.0/24 45528 -123.136.160.0/23 45528 -123.136.162.0/24 45528 -123.136.164.0/23 45528 -123.136.166.0/24 9396 -123.136.168.0/21 45528 -123.136.176.0/23 45528 -123.136.179.0/24 45528 -123.136.180.0/23 45528 -123.136.184.0/22 45528 -123.136.188.0/23 45528 -123.136.193.0/24 45528 -123.136.194.0/23 45528 -123.136.196.0/22 45528 -123.136.200.0/21 45528 -123.136.208.0/22 45528 -123.136.212.0/23 45528 -123.136.215.0/24 45528 -123.136.216.0/23 45528 -123.136.220.0/22 45528 -123.136.226.0/23 45528 -123.136.228.0/22 45528 -123.136.232.0/21 45528 -123.136.240.0/23 45528 -123.136.242.0/24 45528 -123.136.248.0/21 45528 -123.137.0.0/17 4134 -123.137.128.0/17 136188 -123.138.0.0/15 4837 -123.140.0.0/18 3786 -123.140.64.0/19 3786 -123.140.96.0/23 3786 -123.140.98.0/24 3786 -123.140.99.0/24 4756 -123.140.100.0/22 3786 -123.140.104.0/23 3786 -123.140.106.0/24 9530 -123.140.107.0/24 3786 -123.140.108.0/24 3786 -123.140.109.0/24 4790 -123.140.110.0/23 3786 -123.140.112.0/21 3786 -123.140.120.0/24 3786 -123.140.121.0/24 18338 -123.140.122.0/23 3786 -123.140.124.0/22 3786 -123.140.128.0/18 3786 -123.140.192.0/19 3786 -123.140.224.0/21 3786 -123.140.232.0/22 3786 -123.140.236.0/24 3786 -123.140.237.0/24 9843 -123.140.238.0/23 3786 -123.140.240.0/20 3786 -123.141.0.0/17 3786 -123.141.128.0/20 3786 -123.141.144.0/22 3786 -123.141.148.0/23 3786 -123.141.150.0/24 45376 -123.141.151.0/24 3786 -123.141.152.0/21 3786 -123.141.160.0/19 3786 -123.141.192.0/21 3786 -123.141.200.0/23 3786 -123.141.202.0/24 45376 -123.141.203.0/24 3786 -123.141.204.0/22 3786 -123.141.208.0/20 3786 -123.141.224.0/20 3786 -123.141.240.0/22 3786 -123.141.244.0/23 3786 -123.141.246.0/24 3786 -123.141.247.0/24 9776 -123.141.248.0/21 3786 -123.142.0.0/15 3786 -123.144.0.0/14 4837 -123.148.0.0/16 4837 -123.149.0.0/17 4134 -123.149.128.0/19 4134 -123.149.160.0/21 4134 -123.149.168.0/24 4134 -123.149.169.0/24 139018 -123.149.170.0/24 4134 -123.149.171.0/24 139018 -123.149.172.0/22 139018 -123.149.176.0/20 4134 -123.149.192.0/18 4134 -123.150.0.0/19 17638 -123.150.32.0/24 58542 -123.150.33.0/24 17638 -123.150.34.0/23 17638 -123.150.36.0/22 17638 -123.150.40.0/21 17638 -123.150.48.0/20 17638 -123.150.64.0/22 17638 -123.150.68.0/23 17638 -123.150.70.0/23 58542 -123.150.72.0/23 58542 -123.150.74.0/23 17638 -123.150.76.0/22 58542 -123.150.80.0/20 17638 -123.150.96.0/19 17638 -123.150.128.0/19 17638 -123.150.160.0/21 17638 -123.150.168.0/22 17638 -123.150.172.0/23 17638 -123.150.174.0/24 58542 -123.150.175.0/24 17638 -123.150.176.0/20 17638 -123.150.192.0/20 17638 -123.150.208.0/24 58542 -123.150.209.0/24 17638 -123.150.210.0/23 17638 -123.150.212.0/22 17638 -123.150.216.0/21 17638 -123.150.224.0/19 17638 -123.151.0.0/21 17638 -123.151.8.0/21 58542 -123.151.16.0/21 17638 -123.151.24.0/23 17638 -123.151.26.0/23 58542 -123.151.28.0/22 17638 -123.151.32.0/22 17638 -123.151.36.0/22 58542 -123.151.40.0/21 58542 -123.151.48.0/20 17638 -123.151.64.0/20 58542 -123.151.80.0/21 17638 -123.151.88.0/22 17638 -123.151.92.0/22 58542 -123.151.96.0/19 17638 -123.151.128.0/21 17638 -123.151.136.0/24 17638 -123.151.137.0/24 58542 -123.151.138.0/23 58542 -123.151.140.0/22 17638 -123.151.144.0/24 58542 -123.151.145.0/24 17638 -123.151.146.0/23 17638 -123.151.148.0/22 58542 -123.151.152.0/22 58542 -123.151.156.0/23 58542 -123.151.158.0/24 58542 -123.151.159.0/24 17638 -123.151.160.0/20 17638 -123.151.176.0/21 58542 -123.151.184.0/22 17638 -123.151.188.0/23 17638 -123.151.190.0/24 58542 -123.151.191.0/24 17638 -123.151.192.0/18 17638 -123.152.0.0/13 4837 -123.160.0.0/20 4134 -123.160.16.0/21 4134 -123.160.24.0/22 4134 -123.160.28.0/24 4134 -123.160.29.0/24 139018 -123.160.30.0/24 4134 -123.160.31.0/24 139018 -123.160.32.0/19 4134 -123.160.64.0/19 4134 -123.160.96.0/21 4134 -123.160.104.0/22 4134 -123.160.108.0/24 4134 -123.160.109.0/24 139018 -123.160.110.0/24 4134 -123.160.111.0/24 139018 -123.160.112.0/20 4134 -123.160.128.0/18 4134 -123.160.192.0/20 4134 -123.160.208.0/21 4134 -123.160.216.0/22 4134 -123.160.220.0/22 137687 -123.160.224.0/19 4134 -123.161.0.0/19 4134 -123.161.32.0/20 4134 -123.161.48.0/21 4134 -123.161.56.0/21 137687 -123.161.64.0/18 4134 -123.161.128.0/17 4134 -123.162.0.0/15 4134 -123.164.0.0/15 4134 -123.166.0.0/16 4134 -123.167.0.0/17 4134 -123.167.128.0/20 4809 -123.167.144.0/21 17897 -123.167.152.0/22 17897 -123.167.156.0/22 4809 -123.167.160.0/19 17897 -123.167.192.0/18 4134 -123.168.0.0/18 4809 -123.168.64.0/18 4134 -123.168.128.0/17 4134 -123.169.0.0/16 4134 -123.170.0.0/15 4134 -123.172.0.0/19 4809 -123.172.32.0/19 4134 -123.172.64.0/18 4134 -123.172.128.0/17 4134 -123.173.0.0/16 4134 -123.174.0.0/15 4134 -123.176.0.0/19 7642 -123.176.32.0/23 18209 -123.176.34.0/24 24309 -123.176.35.0/24 18209 -123.176.36.0/22 18209 -123.176.40.0/21 18209 -123.176.48.0/21 17698 -123.176.56.0/23 45282 -123.176.58.0/24 45282 -123.176.60.0/22 56015 -123.176.64.0/21 38334 -123.176.72.0/21 38227 -123.176.96.0/24 133380 -123.176.98.0/23 133380 -123.176.100.0/22 133380 -123.176.104.0/21 9365 -123.176.112.0/22 7631 -123.176.116.0/23 7631 -123.176.118.0/24 24233 -123.176.119.0/24 7631 -123.176.120.0/22 38494 -123.176.125.0/24 38494 -123.176.126.0/23 38494 -123.176.128.0/17 17939 -123.177.0.0/22 17799 -123.177.4.0/22 4809 -123.177.8.0/21 4809 -123.177.16.0/21 134762 -123.177.24.0/21 4809 -123.177.32.0/21 4809 -123.177.40.0/23 4809 -123.177.42.0/23 134762 -123.177.44.0/22 134762 -123.177.48.0/23 134762 -123.177.50.0/23 4809 -123.177.52.0/22 4809 -123.177.56.0/21 4809 -123.177.64.0/18 4809 -123.177.128.0/17 17799 -123.178.0.0/20 4809 -123.178.16.0/20 4134 -123.178.32.0/19 4134 -123.178.64.0/18 4134 -123.178.128.0/17 4134 -123.179.0.0/16 4134 -123.180.0.0/14 4134 -123.184.0.0/16 4134 -123.185.0.0/16 134762 -123.186.0.0/15 4134 -123.188.0.0/14 4837 -123.192.0.0/17 38841 -123.192.128.0/20 38841 -123.192.144.0/24 9924 -123.192.145.0/24 38841 -123.192.146.0/23 38841 -123.192.148.0/22 38841 -123.192.152.0/21 9924 -123.192.160.0/20 38841 -123.192.176.0/20 9924 -123.192.192.0/20 9924 -123.192.208.0/21 38841 -123.192.216.0/21 9924 -123.192.224.0/19 9924 -123.193.0.0/18 9924 -123.193.64.0/19 9924 -123.193.96.0/21 9924 -123.193.104.0/22 38841 -123.193.108.0/24 9924 -123.193.109.0/24 38841 -123.193.110.0/24 38841 -123.193.111.0/24 9924 -123.193.112.0/21 38841 -123.193.120.0/21 9924 -123.193.128.0/20 9924 -123.193.144.0/21 38841 -123.193.152.0/21 9924 -123.193.160.0/20 9924 -123.193.176.0/21 38841 -123.193.184.0/21 9924 -123.193.192.0/19 9924 -123.193.224.0/21 38841 -123.193.232.0/21 9924 -123.193.240.0/21 9924 -123.193.248.0/21 38841 -123.194.0.0/21 38841 -123.194.8.0/21 9924 -123.194.16.0/21 9924 -123.194.24.0/21 38841 -123.194.32.0/22 38841 -123.194.36.0/22 9924 -123.194.40.0/21 9924 -123.194.48.0/20 38841 -123.194.64.0/19 38841 -123.194.96.0/20 38841 -123.194.112.0/21 38841 -123.194.120.0/21 9924 -123.194.128.0/19 9924 -123.194.160.0/20 38841 -123.194.176.0/20 9924 -123.194.192.0/20 9924 -123.194.208.0/20 38841 -123.194.224.0/20 38841 -123.194.240.0/21 38841 -123.194.248.0/22 38841 -123.194.252.0/24 38841 -123.194.253.0/24 9924 -123.194.254.0/23 9924 -123.195.0.0/21 38841 -123.195.8.0/21 9924 -123.195.16.0/21 38841 -123.195.24.0/21 9924 -123.195.32.0/19 9924 -123.195.64.0/18 38841 -123.195.128.0/18 9924 -123.195.192.0/21 9924 -123.195.200.0/21 38841 -123.195.208.0/21 38841 -123.195.216.0/21 9924 -123.195.224.0/20 9924 -123.195.240.0/21 9924 -123.195.248.0/21 38841 -123.196.0.0/18 4837 -123.196.64.0/19 4837 -123.196.96.0/20 4837 -123.196.112.0/20 17964 -123.196.128.0/17 4837 -123.197.0.0/17 4134 -123.197.128.0/17 17964 -123.198.0.0/16 2527 -123.199.0.0/17 10066 -123.199.128.0/20 4847 -123.200.0.0/19 23688 -123.200.32.0/19 18094 -123.200.64.0/18 38121 -123.200.128.0/22 9723 -123.200.132.0/24 9723 -123.200.133.0/24 17899 -123.200.134.0/23 9723 -123.200.136.0/24 137536 -123.200.137.0/24 9723 -123.200.138.0/23 9723 -123.200.140.0/22 9723 -123.200.144.0/22 9723 -123.200.148.0/23 9723 -123.200.150.0/24 17899 -123.200.151.0/24 9723 -123.200.152.0/21 9723 -123.200.160.0/19 9723 -123.200.192.0/18 9723 -123.201.0.0/22 18207 -123.201.5.0/24 18207 -123.201.6.0/23 18207 -123.201.8.0/23 18207 -123.201.14.0/23 18207 -123.201.19.0/24 18207 -123.201.20.0/23 18207 -123.201.24.0/23 18207 -123.201.26.0/24 18207 -123.201.28.0/23 18207 -123.201.32.0/22 18207 -123.201.36.0/23 18207 -123.201.41.0/24 18207 -123.201.43.0/24 18207 -123.201.46.0/23 18207 -123.201.49.0/24 18207 -123.201.50.0/23 18207 -123.201.52.0/22 18207 -123.201.57.0/24 18207 -123.201.59.0/24 18207 -123.201.60.0/23 18207 -123.201.63.0/24 18207 -123.201.65.0/24 18207 -123.201.66.0/23 18207 -123.201.68.0/23 18207 -123.201.70.0/24 18207 -123.201.77.0/24 18207 -123.201.81.0/24 18207 -123.201.82.0/23 18207 -123.201.84.0/23 18207 -123.201.87.0/24 18207 -123.201.88.0/22 18207 -123.201.92.0/24 18207 -123.201.94.0/23 18207 -123.201.100.0/23 18207 -123.201.103.0/24 18207 -123.201.104.0/23 18207 -123.201.108.0/23 18207 -123.201.110.0/24 18207 -123.201.112.0/23 18207 -123.201.116.0/22 18207 -123.201.122.0/24 18207 -123.201.124.0/23 18207 -123.201.128.0/22 18207 -123.201.132.0/24 18207 -123.201.135.0/24 18207 -123.201.136.0/22 18207 -123.201.140.0/23 18207 -123.201.142.0/24 18207 -123.201.144.0/24 18207 -123.201.146.0/23 18207 -123.201.150.0/24 18207 -123.201.153.0/24 18207 -123.201.155.0/24 18207 -123.201.158.0/24 18207 -123.201.163.0/24 18207 -123.201.165.0/24 18207 -123.201.167.0/24 18207 -123.201.169.0/24 18207 -123.201.170.0/23 18207 -123.201.174.0/23 18207 -123.201.176.0/21 18207 -123.201.184.0/23 18207 -123.201.192.0/22 18207 -123.201.201.0/24 18207 -123.201.202.0/24 18207 -123.201.204.0/24 18207 -123.201.208.0/24 18207 -123.201.211.0/24 18207 -123.201.213.0/24 18207 -123.201.214.0/23 18207 -123.201.220.0/24 18207 -123.201.223.0/24 18207 -123.201.225.0/24 18207 -123.201.226.0/23 18207 -123.201.228.0/24 18207 -123.201.232.0/24 18207 -123.201.239.0/24 18207 -123.201.241.0/24 18207 -123.201.243.0/24 18207 -123.201.245.0/24 18207 -123.201.247.0/24 18207 -123.201.248.0/23 18207 -123.201.251.0/24 18207 -123.201.252.0/22 18207 -123.202.0.0/15 9269 -123.204.0.0/16 4780 -123.205.0.0/19 18049 -123.205.32.0/20 18049 -123.205.48.0/21 18049 -123.205.56.0/24 4780 -123.205.57.0/24 18049 -123.205.58.0/23 18049 -123.205.60.0/22 18049 -123.205.64.0/21 18049 -123.205.72.0/22 18049 -123.205.76.0/24 4780 -123.205.77.0/24 18049 -123.205.78.0/23 18049 -123.205.80.0/20 18049 -123.205.96.0/21 18049 -123.205.104.0/24 18049 -123.205.105.0/24 4780 -123.205.106.0/23 18049 -123.205.108.0/22 18049 -123.205.112.0/20 18049 -123.205.128.0/17 4780 -123.206.0.0/15 45090 -123.208.0.0/16 135887 -123.209.0.0/16 1221 -123.210.0.0/15 1221 -123.212.0.0/15 9318 -123.214.0.0/20 9318 -123.214.16.0/22 9318 -123.214.20.0/23 17590 -123.214.22.0/23 9318 -123.214.24.0/21 9318 -123.214.32.0/19 9318 -123.214.64.0/18 9318 -123.214.128.0/19 9318 -123.214.160.0/20 9318 -123.214.176.0/22 9318 -123.214.180.0/24 9318 -123.214.181.0/24 38429 -123.214.182.0/23 9318 -123.214.184.0/21 9318 -123.214.192.0/18 9318 -123.215.0.0/17 9318 -123.215.128.0/19 9318 -123.215.160.0/21 9318 -123.215.168.0/22 9318 -123.215.172.0/24 9318 -123.215.173.0/24 17845 -123.215.174.0/23 17845 -123.215.176.0/20 9318 -123.215.192.0/18 9318 -123.216.0.0/13 4713 -123.224.0.0/14 4713 -123.228.0.0/15 9644 -123.230.0.0/16 17676 -123.231.0.0/17 18001 -123.231.128.0/21 4800 -123.231.136.0/23 4800 -123.231.140.0/22 4800 -123.231.144.0/22 4800 -123.231.159.0/24 4800 -123.231.160.0/21 4800 -123.231.168.0/24 4800 -123.231.192.0/23 133841 -123.231.194.0/24 133841 -123.231.197.0/24 133841 -123.231.198.0/24 133841 -123.231.200.0/24 4800 -123.231.203.0/24 133841 -123.231.204.0/24 4800 -123.231.206.0/24 4800 -123.231.207.0/24 133841 -123.231.208.0/23 133841 -123.231.223.0/24 4800 -123.231.224.0/19 4800 -123.232.0.0/14 4837 -123.236.175.0/24 18101 -123.236.241.0/24 18101 -123.236.244.0/23 18101 -123.236.246.0/24 18101 -123.237.0.0/24 18101 -123.237.2.0/24 18101 -123.237.5.0/24 18101 -123.237.6.0/23 18101 -123.237.8.0/22 18101 -123.237.12.0/24 18101 -123.237.15.0/24 18101 -123.237.46.0/24 18101 -123.237.68.0/22 18101 -123.237.184.0/21 18101 -123.237.240.0/24 18101 -123.237.242.0/24 18101 -123.237.246.0/24 18101 -123.237.248.0/24 18101 -123.237.250.0/24 18101 -123.237.252.0/22 18101 -123.238.10.0/24 18101 -123.238.28.0/23 18101 -123.238.30.0/24 18101 -123.238.33.0/24 18101 -123.238.34.0/23 18101 -123.238.36.0/23 18101 -123.238.40.0/23 18101 -123.238.42.0/24 18101 -123.238.45.0/24 18101 -123.238.46.0/23 18101 -123.238.102.0/24 18101 -123.238.111.0/24 18101 -123.238.128.0/24 18101 -123.238.152.0/22 18101 -123.238.157.0/24 18101 -123.238.160.0/23 18101 -123.238.162.0/24 18101 -123.238.195.0/24 18101 -123.238.236.0/22 18101 -123.238.240.0/23 18101 -123.238.245.0/24 18101 -123.238.246.0/24 18101 -123.238.251.0/24 18101 -123.238.252.0/24 18101 -123.238.254.0/23 18101 -123.239.80.0/20 17803 -123.240.0.0/15 131596 -123.242.128.0/18 38450 -123.242.200.0/24 38460 -123.242.202.0/23 38460 -123.242.204.0/24 38460 -123.242.208.0/21 18092 -123.242.224.0/24 38478 -123.242.232.0/21 9997 -123.242.240.0/22 38461 -123.242.248.0/22 38461 -123.242.252.0/23 38174 -123.242.254.0/23 24391 -123.243.0.0/16 7545 -123.244.0.0/15 4134 -123.246.0.0/17 4134 -123.246.128.0/18 4134 -123.246.192.0/19 4134 -123.246.224.0/20 4134 -123.246.240.0/21 4134 -123.246.248.0/22 4134 -123.246.252.0/23 4134 -123.246.254.0/24 4134 -123.246.255.0/24 17799 -123.247.0.0/17 4134 -123.247.128.0/17 17799 -123.248.0.0/16 9845 -123.249.0.0/17 4134 -123.252.0.0/19 9924 -123.252.48.0/20 9924 -123.252.64.0/18 9924 -123.252.128.0/24 134540 -123.252.129.0/24 17762 -123.252.130.0/24 134540 -123.252.131.0/24 17762 -123.252.132.0/24 134540 -123.252.133.0/24 17762 -123.252.134.0/23 17762 -123.252.136.0/22 17762 -123.252.140.0/24 17762 -123.252.141.0/24 134540 -123.252.142.0/23 134540 -123.252.144.0/23 134540 -123.252.146.0/23 17762 -123.252.148.0/24 58608 -123.252.149.0/24 17762 -123.252.150.0/23 17762 -123.252.152.0/21 134540 -123.252.160.0/24 134540 -123.252.161.0/24 17762 -123.252.162.0/24 134540 -123.252.163.0/24 17762 -123.252.164.0/24 134540 -123.252.165.0/24 17762 -123.252.166.0/23 134540 -123.252.168.0/23 134540 -123.252.170.0/23 17762 -123.252.172.0/24 134540 -123.252.173.0/24 17762 -123.252.174.0/24 58608 -123.252.175.0/24 17762 -123.252.176.0/24 17762 -123.252.177.0/24 134540 -123.252.178.0/23 134540 -123.252.180.0/24 134540 -123.252.181.0/24 17762 -123.252.182.0/23 134540 -123.252.184.0/22 134540 -123.252.188.0/22 17762 -123.252.192.0/24 134540 -123.252.193.0/24 17762 -123.252.194.0/23 17762 -123.252.196.0/24 134540 -123.252.197.0/24 17762 -123.252.198.0/23 134540 -123.252.200.0/23 17762 -123.252.202.0/24 134540 -123.252.203.0/24 17762 -123.252.204.0/23 17762 -123.252.206.0/24 17762 -123.252.207.0/24 134540 -123.252.208.0/22 17762 -123.252.212.0/22 134540 -123.252.216.0/24 134540 -123.252.217.0/24 17762 -123.252.218.0/23 17762 -123.252.220.0/24 17762 -123.252.221.0/24 134540 -123.252.222.0/24 17762 -123.252.223.0/24 134540 -123.252.224.0/21 134540 -123.252.232.0/23 17762 -123.252.234.0/24 134540 -123.252.235.0/24 17762 -123.252.236.0/24 17762 -123.252.237.0/24 134540 -123.252.238.0/24 17762 -123.252.239.0/24 134540 -123.252.240.0/22 134540 -123.252.244.0/24 17762 -123.252.245.0/24 134540 -123.252.246.0/24 134540 -123.252.247.0/24 17762 -123.252.248.0/24 134540 -123.252.249.0/24 17762 -123.252.250.0/23 17762 -123.252.252.0/23 17762 -123.252.254.0/24 134540 -123.252.255.0/24 17762 -123.253.8.0/23 132335 -123.253.12.0/22 133977 -123.253.24.0/22 45753 -123.253.28.0/22 58404 -123.253.36.0/22 136514 -123.253.40.0/22 132309 -123.253.44.0/22 133929 -123.253.48.0/22 136515 -123.253.56.0/22 45637 -123.253.60.0/22 136523 -123.253.64.0/22 134806 -123.253.72.0/22 136533 -123.253.84.0/22 7600 -123.253.88.0/23 46573 -123.253.92.0/22 58895 -123.253.96.0/22 136561 -123.253.100.0/22 131091 -123.253.104.0/22 32708 -123.253.108.0/24 43092 -123.253.111.0/24 137443 -123.253.120.0/22 133557 -123.253.124.0/24 133469 -123.253.132.0/22 45925 -123.253.136.0/22 17639 -123.253.140.0/23 134823 -123.253.148.0/22 4764 -123.253.156.0/24 135814 -123.253.160.0/22 45117 -123.253.164.0/22 132827 -123.253.188.0/22 134090 -123.253.196.0/22 45905 -123.253.208.0/22 136795 -123.253.220.0/22 134971 -123.253.228.0/22 136168 -123.253.232.0/23 17670 -123.253.236.0/22 135810 -123.253.244.0/24 139399 -123.253.245.0/24 38496 -123.253.246.0/23 38496 -123.253.248.0/22 38496 -123.253.252.0/24 139397 -123.253.253.0/24 38496 -123.253.254.0/23 38496 -123.254.0.0/18 7522 -123.254.64.0/19 9698 -123.254.104.0/21 55933 -123.254.112.0/20 45780 -123.254.128.0/17 38103 -123.255.0.0/18 23655 -123.255.64.0/21 3661 -123.255.96.0/19 4641 -123.255.128.0/18 9374 -123.255.192.0/21 17698 -123.255.200.0/21 24521 -123.255.208.0/21 45603 -123.255.217.0/24 45603 -123.255.220.0/23 45603 -123.255.230.0/23 45560 -123.255.232.0/21 24259 -123.255.240.0/21 10001 -123.255.248.0/22 45536 -123.255.255.0/24 59268 -124.0.0.0/20 18302 -124.0.16.0/21 18302 -124.0.24.0/22 18302 -124.0.28.0/23 18302 -124.0.30.0/24 18302 -124.0.31.0/24 38403 -124.0.32.0/19 18302 -124.0.64.0/18 18302 -124.0.128.0/17 18302 -124.1.0.0/19 18302 -124.1.32.0/23 18302 -124.1.34.0/24 38390 -124.1.35.0/24 18302 -124.1.36.0/24 18302 -124.1.37.0/24 38398 -124.1.38.0/23 18302 -124.1.40.0/21 18302 -124.1.48.0/22 18302 -124.1.52.0/24 18302 -124.1.53.0/24 38391 -124.1.54.0/24 18302 -124.1.55.0/24 38391 -124.1.56.0/24 18302 -124.1.57.0/24 38406 -124.1.58.0/23 18302 -124.1.60.0/22 38400 -124.1.64.0/24 18302 -124.1.65.0/24 38400 -124.1.66.0/23 18302 -124.1.68.0/24 18302 -124.1.69.0/24 38411 -124.1.70.0/24 38408 -124.1.71.0/24 18302 -124.1.72.0/21 38390 -124.1.80.0/24 38390 -124.1.81.0/24 18302 -124.1.82.0/24 38396 -124.1.83.0/24 18302 -124.1.84.0/22 18302 -124.1.88.0/21 18302 -124.1.96.0/21 18302 -124.1.104.0/24 18302 -124.1.105.0/24 38408 -124.1.106.0/23 18302 -124.1.108.0/22 18302 -124.1.112.0/20 18302 -124.1.128.0/23 18302 -124.1.130.0/24 18302 -124.1.131.0/24 38402 -124.1.132.0/24 38402 -124.1.133.0/24 18302 -124.1.134.0/23 18302 -124.1.136.0/21 18302 -124.1.144.0/22 18302 -124.1.148.0/23 18302 -124.1.150.0/24 18302 -124.1.151.0/24 38390 -124.1.152.0/22 38390 -124.1.156.0/24 38390 -124.1.157.0/24 38415 -124.1.158.0/23 18302 -124.1.160.0/19 18302 -124.1.192.0/18 18302 -124.2.0.0/19 18302 -124.2.32.0/20 18302 -124.2.48.0/22 18302 -124.2.52.0/23 18302 -124.2.54.0/24 38415 -124.2.55.0/24 18302 -124.2.56.0/24 38396 -124.2.57.0/24 38415 -124.2.58.0/23 18302 -124.2.60.0/22 18302 -124.2.64.0/24 18302 -124.2.65.0/24 38396 -124.2.66.0/23 18302 -124.2.68.0/22 18302 -124.2.72.0/21 18302 -124.2.80.0/20 18302 -124.2.96.0/19 18302 -124.2.128.0/19 18302 -124.2.160.0/22 18302 -124.2.164.0/24 38396 -124.2.165.0/24 18302 -124.2.166.0/24 18302 -124.2.167.0/24 38396 -124.2.168.0/22 18302 -124.2.172.0/24 18302 -124.2.173.0/24 38396 -124.2.174.0/24 38415 -124.2.175.0/24 38396 -124.2.176.0/24 38415 -124.2.177.0/24 38396 -124.2.178.0/24 18302 -124.2.179.0/24 38415 -124.2.180.0/24 38415 -124.2.181.0/24 18302 -124.2.182.0/23 18302 -124.2.184.0/23 18302 -124.2.186.0/24 18302 -124.2.187.0/24 38396 -124.2.188.0/23 18302 -124.2.190.0/24 38398 -124.2.191.0/24 18302 -124.2.192.0/19 18302 -124.2.224.0/20 18302 -124.2.240.0/23 18302 -124.2.242.0/24 38396 -124.2.243.0/24 38398 -124.2.244.0/22 18302 -124.2.248.0/21 18302 -124.3.0.0/21 18302 -124.3.8.0/24 18302 -124.3.9.0/24 38390 -124.3.10.0/23 18302 -124.3.12.0/23 18302 -124.3.14.0/24 18302 -124.3.15.0/24 38390 -124.3.16.0/22 18302 -124.3.20.0/23 18302 -124.3.22.0/24 18302 -124.3.23.0/24 38396 -124.3.24.0/23 18302 -124.3.26.0/24 18302 -124.3.27.0/24 38398 -124.3.28.0/22 18302 -124.3.32.0/19 18302 -124.3.64.0/21 18302 -124.3.72.0/23 18302 -124.3.74.0/24 38398 -124.3.75.0/24 38396 -124.3.76.0/23 18302 -124.3.78.0/23 38398 -124.3.80.0/23 18302 -124.3.82.0/24 38391 -124.3.83.0/24 38396 -124.3.84.0/24 18302 -124.3.85.0/24 38398 -124.3.86.0/24 18302 -124.3.87.0/24 38398 -124.3.88.0/24 38411 -124.3.89.0/24 38398 -124.3.90.0/23 18302 -124.3.92.0/22 18302 -124.3.96.0/19 18302 -124.3.128.0/17 18302 -124.4.200.0/22 17466 -124.5.0.0/17 10036 -124.5.128.0/19 10036 -124.5.160.0/20 10036 -124.5.177.0/24 10036 -124.5.178.0/23 10036 -124.5.180.0/22 10036 -124.5.184.0/21 10036 -124.5.192.0/18 10036 -124.6.0.0/19 4662 -124.6.32.0/20 24482 -124.6.48.0/21 24482 -124.6.56.0/22 58436 -124.6.60.0/22 132425 -124.6.64.0/18 4837 -124.6.128.0/19 4775 -124.6.160.0/22 4775 -124.6.164.0/22 132199 -124.6.168.0/21 132199 -124.6.176.0/21 4775 -124.6.184.0/21 132199 -124.6.192.0/19 9500 -124.6.224.0/20 38256 -124.6.240.0/20 45356 -124.7.12.0/24 9583 -124.7.16.0/22 9583 -124.7.20.0/24 9583 -124.7.25.0/24 9583 -124.7.26.0/24 9583 -124.7.28.0/24 9583 -124.7.30.0/24 9583 -124.7.36.0/23 9583 -124.7.40.0/22 9583 -124.7.45.0/24 9583 -124.7.48.0/24 9583 -124.7.51.0/24 9583 -124.7.56.0/23 9583 -124.7.58.0/24 9583 -124.7.61.0/24 9583 -124.7.64.0/23 9583 -124.7.71.0/24 9583 -124.7.72.0/23 9583 -124.7.88.0/22 9583 -124.7.93.0/24 9583 -124.7.96.0/24 9583 -124.7.102.0/24 9583 -124.7.108.0/23 9583 -124.7.112.0/21 9583 -124.7.120.0/23 9583 -124.7.123.0/24 9583 -124.7.124.0/24 9583 -124.7.132.0/24 9583 -124.7.134.0/24 9583 -124.7.136.0/22 9583 -124.7.141.0/24 9583 -124.7.146.0/23 9583 -124.7.152.0/24 9583 -124.7.157.0/24 9583 -124.7.159.0/24 9583 -124.7.163.0/24 9583 -124.7.170.0/24 9583 -124.7.172.0/24 9583 -124.7.174.0/24 9583 -124.7.180.0/24 9583 -124.7.185.0/24 9583 -124.7.186.0/24 9583 -124.7.189.0/24 9583 -124.7.191.0/24 9583 -124.7.192.0/24 9583 -124.7.195.0/24 9583 -124.7.197.0/24 9583 -124.7.200.0/24 9583 -124.7.207.0/24 9583 -124.7.209.0/24 9583 -124.7.210.0/24 9583 -124.7.213.0/24 9583 -124.7.214.0/23 9583 -124.7.217.0/24 9583 -124.7.218.0/23 9583 -124.7.221.0/24 9583 -124.7.222.0/23 9583 -124.7.224.0/24 9583 -124.7.226.0/23 9583 -124.7.228.0/24 9583 -124.7.233.0/24 9583 -124.7.237.0/24 9583 -124.7.238.0/24 9583 -124.7.241.0/24 9583 -124.7.243.0/24 9583 -124.7.244.0/24 9583 -124.7.246.0/23 9583 -124.7.249.0/24 9583 -124.7.254.0/24 9583 -124.8.0.0/14 9924 -124.12.0.0/16 9924 -124.13.0.0/16 4788 -124.14.0.0/19 17964 -124.14.64.0/18 4808 -124.14.128.0/19 17964 -124.14.160.0/19 4847 -124.14.192.0/19 17623 -124.14.224.0/19 4808 -124.15.0.0/18 7497 -124.15.64.0/18 17964 -124.15.128.0/19 17430 -124.15.160.0/20 17430 -124.15.176.0/22 17430 -124.16.0.0/15 7497 -124.18.0.0/16 18126 -124.19.0.0/17 7474 -124.22.0.0/15 23771 -124.24.0.0/14 2510 -124.28.0.0/17 23578 -124.28.128.0/18 23578 -124.28.192.0/18 9812 -124.29.0.0/17 4134 -124.29.128.0/18 24158 -124.29.192.0/19 9541 -124.29.224.0/20 9541 -124.29.240.0/24 9541 -124.29.242.0/23 9541 -124.29.244.0/22 9541 -124.29.248.0/21 9541 -124.30.1.0/24 9583 -124.30.3.0/24 9583 -124.30.5.0/24 9583 -124.30.7.0/24 9583 -124.30.8.0/23 9583 -124.30.10.0/24 9583 -124.30.16.0/22 9583 -124.30.20.0/23 9583 -124.30.24.0/24 9583 -124.30.26.0/23 9583 -124.30.28.0/23 9583 -124.30.31.0/24 58714 -124.30.32.0/22 9583 -124.30.36.0/24 9583 -124.30.38.0/24 9583 -124.30.41.0/24 9583 -124.30.42.0/23 9583 -124.30.44.0/23 9583 -124.30.47.0/24 9583 -124.30.48.0/23 9583 -124.30.51.0/24 9583 -124.30.52.0/24 9583 -124.30.54.0/23 9583 -124.30.56.0/21 9583 -124.30.67.0/24 9583 -124.30.70.0/24 9583 -124.30.72.0/22 9583 -124.30.77.0/24 9583 -124.30.79.0/24 9583 -124.30.80.0/23 9583 -124.30.83.0/24 9583 -124.30.85.0/24 9583 -124.30.86.0/23 9583 -124.30.88.0/24 9583 -124.30.90.0/23 9583 -124.30.92.0/22 9583 -124.30.96.0/22 9583 -124.30.100.0/23 9583 -124.30.102.0/24 9583 -124.30.104.0/22 9583 -124.30.108.0/24 9583 -124.30.110.0/23 9583 -124.30.112.0/22 9583 -124.30.116.0/24 9583 -124.30.118.0/23 9583 -124.30.120.0/21 9583 -124.30.128.0/21 9583 -124.30.136.0/22 9583 -124.30.140.0/23 9583 -124.30.142.0/24 9583 -124.30.144.0/21 9583 -124.30.152.0/22 9583 -124.30.156.0/23 9583 -124.30.159.0/24 9583 -124.30.160.0/23 9583 -124.30.163.0/24 9583 -124.30.164.0/22 9583 -124.30.168.0/21 9583 -124.30.176.0/24 9583 -124.30.180.0/23 9583 -124.30.182.0/24 9583 -124.30.184.0/21 9583 -124.30.192.0/22 9583 -124.30.196.0/24 9583 -124.30.198.0/23 9583 -124.30.200.0/21 9583 -124.30.208.0/24 9583 -124.30.210.0/23 9583 -124.30.212.0/24 9583 -124.30.215.0/24 9583 -124.30.217.0/24 9583 -124.30.218.0/23 9583 -124.30.220.0/23 9583 -124.30.222.0/24 9583 -124.30.224.0/22 9583 -124.30.229.0/24 9583 -124.30.230.0/23 9583 -124.30.232.0/23 9583 -124.30.235.0/24 9583 -124.30.236.0/24 9583 -124.30.238.0/23 9583 -124.30.240.0/23 9583 -124.30.242.0/24 9583 -124.30.244.0/22 9583 -124.30.249.0/24 9583 -124.30.250.0/23 9583 -124.30.252.0/22 9583 -124.31.0.0/16 4134 -124.32.0.0/13 17506 -124.40.0.0/19 2914 -124.40.32.0/20 2914 -124.40.48.0/22 2914 -124.40.52.0/23 2914 -124.40.54.0/24 2914 -124.40.55.0/24 137922 -124.40.56.0/23 63199 -124.40.58.0/24 14821 -124.40.59.0/24 2914 -124.40.60.0/24 136743 -124.40.61.0/24 2914 -124.40.62.0/23 2914 -124.40.64.0/19 9351 -124.40.96.0/20 9351 -124.40.112.0/20 23724 -124.40.128.0/18 17622 -124.40.224.0/21 9587 -124.40.232.0/24 23602 -124.40.233.0/24 9587 -124.40.234.0/23 9587 -124.40.236.0/22 9587 -124.40.244.0/22 55947 -124.40.248.0/21 45305 -124.41.0.0/17 2497 -124.41.128.0/18 2497 -124.41.192.0/19 17501 -124.41.224.0/20 17501 -124.41.240.0/22 17501 -124.41.244.0/22 137187 -124.41.248.0/21 17501 -124.42.0.0/21 4847 -124.42.8.0/21 23844 -124.42.16.0/20 4847 -124.42.32.0/23 4847 -124.42.34.0/23 59050 -124.42.36.0/22 23844 -124.42.40.0/21 4847 -124.42.48.0/24 4847 -124.42.49.0/24 59050 -124.42.50.0/23 4847 -124.42.52.0/22 4847 -124.42.56.0/21 4847 -124.42.64.0/19 4808 -124.42.96.0/20 23844 -124.42.112.0/21 23844 -124.42.120.0/21 4808 -124.42.128.0/17 17816 -124.43.0.0/16 9329 -124.44.0.0/15 9595 -124.46.0.0/17 4668 -124.46.128.0/17 17583 -124.47.0.0/18 23771 -124.47.64.0/18 9622 -124.47.128.0/20 17477 -124.47.144.0/22 17477 -124.47.148.0/23 17477 -124.47.150.0/24 136792 -124.47.151.0/24 17477 -124.47.152.0/21 17477 -124.47.160.0/20 17477 -124.47.176.0/21 17477 -124.47.184.0/22 17477 -124.47.188.0/24 17477 -124.47.189.0/24 136792 -124.47.190.0/23 17477 -124.47.192.0/18 10010 -124.48.0.0/12 17858 -124.64.0.0/15 4808 -124.66.0.0/17 4837 -124.66.128.0/19 3758 -124.66.160.0/21 10263 -124.66.168.0/22 24554 -124.66.172.0/24 55352 -124.66.176.0/20 10049 -124.66.192.0/20 18281 -124.66.208.0/23 55592 -124.66.210.0/23 4766 -124.66.213.0/24 4766 -124.66.214.0/24 4766 -124.66.215.0/24 136209 -124.66.216.0/24 4766 -124.66.217.0/24 55592 -124.66.218.0/23 55592 -124.66.220.0/24 136209 -124.66.224.0/19 18283 -124.67.0.0/18 4837 -124.67.64.0/20 4837 -124.67.80.0/21 4837 -124.67.88.0/22 4837 -124.67.92.0/22 139007 -124.67.96.0/20 139007 -124.67.112.0/20 4837 -124.67.128.0/17 4837 -124.68.128.0/24 23724 -124.68.129.0/24 4837 -124.68.130.0/23 4837 -124.68.132.0/22 4837 -124.68.136.0/21 4837 -124.68.144.0/20 4837 -124.68.160.0/19 4837 -124.72.0.0/15 4134 -124.74.0.0/15 4812 -124.76.0.0/14 4812 -124.80.0.0/16 17849 -124.81.0.0/17 4795 -124.81.128.0/18 4795 -124.81.192.0/21 4795 -124.81.200.0/22 4795 -124.81.204.0/23 4795 -124.81.206.0/23 38490 -124.81.208.0/20 4795 -124.81.224.0/19 4795 -124.82.0.0/16 4788 -124.83.0.0/17 9299 -124.83.128.0/17 24572 -124.84.0.0/14 4713 -124.88.0.0/13 4837 -124.96.0.0/13 4713 -124.104.0.0/16 9299 -124.105.0.0/17 9299 -124.105.128.0/20 9299 -124.105.144.0/23 9299 -124.105.146.0/23 23689 -124.105.148.0/22 9299 -124.105.152.0/21 9299 -124.105.160.0/19 9299 -124.105.192.0/18 9299 -124.106.0.0/17 9299 -124.106.128.0/19 9299 -124.106.160.0/21 9299 -124.106.168.0/22 9299 -124.106.172.0/23 9299 -124.106.174.0/24 9299 -124.106.175.0/24 20940 -124.106.176.0/20 9299 -124.106.192.0/20 9299 -124.106.208.0/21 9299 -124.106.216.0/24 15347 -124.106.217.0/24 9299 -124.106.218.0/23 9299 -124.106.220.0/22 9299 -124.106.224.0/19 9299 -124.107.0.0/16 9299 -124.108.4.0/22 45348 -124.108.16.0/22 58678 -124.108.20.0/24 131477 -124.108.21.0/24 137443 -124.108.22.0/23 64271 -124.108.24.0/23 9241 -124.108.26.0/24 9241 -124.108.27.0/24 4638 -124.108.28.0/22 9241 -124.108.32.0/21 23661 -124.108.40.0/21 59050 -124.108.48.0/21 38209 -124.108.56.0/21 10011 -124.108.72.0/23 10229 -124.108.76.0/23 10310 -124.108.88.0/21 10229 -124.108.96.0/22 17457 -124.108.100.0/22 24506 -124.108.104.0/21 10229 -124.108.112.0/20 10229 -124.108.128.0/19 9924 -124.108.160.0/21 9924 -124.108.168.0/22 9924 -124.108.172.0/23 9924 -124.108.174.0/24 131635 -124.108.175.0/24 9924 -124.108.176.0/20 9924 -124.108.192.0/18 9374 -124.109.0.0/22 45413 -124.109.4.0/22 14537 -124.109.8.0/22 139759 -124.109.12.0/22 38875 -124.109.16.0/22 135333 -124.109.20.0/22 38527 -124.109.24.0/21 38328 -124.109.32.0/19 23674 -124.109.64.0/19 9797 -124.109.104.0/22 55344 -124.109.108.0/22 4686 -124.109.112.0/20 18419 -124.109.128.0/17 2516 -124.110.0.0/16 2519 -124.111.0.0/17 9318 -124.111.128.0/18 9318 -124.111.192.0/19 9318 -124.111.224.0/20 9318 -124.111.240.0/22 9318 -124.111.244.0/23 9318 -124.111.246.0/24 9759 -124.111.247.0/24 9318 -124.111.248.0/21 9318 -124.112.0.0/15 4134 -124.114.0.0/16 4134 -124.115.0.0/19 4835 -124.115.32.0/19 4134 -124.115.64.0/18 4134 -124.115.128.0/17 4134 -124.116.0.0/17 4134 -124.116.128.0/23 134418 -124.116.130.0/23 4134 -124.116.132.0/22 4134 -124.116.136.0/21 4134 -124.116.144.0/21 4134 -124.116.152.0/22 4134 -124.116.156.0/23 4134 -124.116.158.0/23 4835 -124.116.160.0/19 4134 -124.116.192.0/18 4134 -124.117.0.0/16 4134 -124.118.0.0/18 4134 -124.118.64.0/19 4134 -124.118.96.0/20 4134 -124.118.112.0/21 137694 -124.118.120.0/21 4134 -124.118.128.0/17 4134 -124.119.0.0/17 4134 -124.119.128.0/18 4134 -124.119.192.0/19 4134 -124.119.224.0/20 4134 -124.119.240.0/22 4134 -124.119.244.0/23 4134 -124.119.246.0/24 4809 -124.119.247.0/24 4134 -124.119.248.0/21 4134 -124.120.0.0/15 17552 -124.122.0.0/16 17552 -124.123.0.0/20 18209 -124.123.16.0/22 18209 -124.123.20.0/23 55577 -124.123.22.0/23 18209 -124.123.28.0/22 18209 -124.123.32.0/20 18209 -124.123.48.0/21 55577 -124.123.56.0/22 55577 -124.123.64.0/22 131269 -124.123.68.0/22 18209 -124.123.72.0/21 18209 -124.123.80.0/22 24309 -124.123.88.0/21 18209 -124.123.96.0/21 18209 -124.123.104.0/22 24309 -124.123.108.0/22 18209 -124.123.112.0/21 18209 -124.123.120.0/22 18209 -124.123.124.0/23 131269 -124.123.126.0/24 131269 -124.123.127.0/24 24309 -124.123.128.0/18 131269 -124.123.192.0/20 131269 -124.123.216.0/21 18209 -124.123.224.0/19 18209 -124.124.0.0/16 18101 -124.125.118.0/23 18101 -124.125.136.0/23 18101 -124.125.147.0/24 18101 -124.125.176.0/21 18101 -124.126.0.0/21 4847 -124.126.8.0/22 4847 -124.126.12.0/23 4847 -124.126.14.0/23 23724 -124.126.16.0/20 4847 -124.126.32.0/19 4847 -124.126.64.0/18 4847 -124.126.128.0/18 4847 -124.126.192.0/19 4847 -124.126.224.0/20 4847 -124.126.240.0/21 4847 -124.126.248.0/23 4847 -124.126.250.0/24 23724 -124.126.251.0/24 4809 -124.126.252.0/23 4809 -124.126.254.0/24 4847 -124.126.255.0/24 23724 -124.127.0.0/16 4847 -124.128.0.0/15 4837 -124.130.0.0/17 4837 -124.130.128.0/18 4837 -124.130.192.0/19 9929 -124.130.224.0/19 4837 -124.131.0.0/16 4837 -124.132.0.0/14 4837 -124.136.0.0/23 18302 -124.136.2.0/24 38127 -124.136.3.0/24 18302 -124.136.4.0/24 18302 -124.136.5.0/24 38092 -124.136.6.0/24 38092 -124.136.7.0/24 18302 -124.136.8.0/21 18302 -124.136.16.0/22 18302 -124.136.20.0/24 38092 -124.136.21.0/24 18302 -124.136.22.0/23 18302 -124.136.24.0/21 18302 -124.136.32.0/19 18302 -124.136.64.0/19 18302 -124.136.96.0/21 18302 -124.136.104.0/22 18302 -124.136.108.0/23 38120 -124.136.110.0/23 18302 -124.136.112.0/20 18302 -124.136.128.0/20 18302 -124.136.144.0/21 18302 -124.136.152.0/22 18302 -124.136.156.0/24 18302 -124.136.157.0/24 9318 -124.136.158.0/23 18302 -124.136.160.0/19 18302 -124.136.192.0/18 18302 -124.137.0.0/24 38666 -124.137.1.0/24 18302 -124.137.2.0/23 18302 -124.137.4.0/22 18302 -124.137.8.0/23 38666 -124.137.10.0/24 18302 -124.137.11.0/24 38666 -124.137.12.0/24 38666 -124.137.13.0/24 18302 -124.137.14.0/23 38666 -124.137.16.0/24 38666 -124.137.17.0/24 18302 -124.137.18.0/23 18302 -124.137.20.0/22 18302 -124.137.24.0/22 18302 -124.137.28.0/23 18302 -124.137.30.0/24 38666 -124.137.31.0/24 18302 -124.137.32.0/22 18302 -124.137.36.0/23 17838 -124.137.38.0/23 18302 -124.137.40.0/22 18302 -124.137.44.0/24 23930 -124.137.45.0/24 18302 -124.137.46.0/23 18302 -124.137.48.0/23 18302 -124.137.50.0/24 18302 -124.137.51.0/24 9643 -124.137.52.0/22 18302 -124.137.56.0/23 18302 -124.137.58.0/24 10050 -124.137.59.0/24 18302 -124.137.60.0/22 18302 -124.137.64.0/21 18302 -124.137.72.0/23 18302 -124.137.74.0/24 9318 -124.137.75.0/24 18302 -124.137.76.0/22 18302 -124.137.80.0/20 18302 -124.137.96.0/21 4792 -124.137.104.0/21 18302 -124.137.112.0/20 18302 -124.137.128.0/23 18302 -124.137.130.0/23 9318 -124.137.132.0/24 9318 -124.137.133.0/24 18302 -124.137.134.0/23 18302 -124.137.136.0/21 18302 -124.137.144.0/20 18302 -124.137.160.0/22 18302 -124.137.164.0/23 18302 -124.137.166.0/23 38117 -124.137.168.0/21 38117 -124.137.176.0/20 18302 -124.137.192.0/19 18302 -124.137.224.0/20 18302 -124.137.240.0/21 18302 -124.137.248.0/22 18302 -124.137.252.0/23 38117 -124.137.254.0/23 18302 -124.138.0.0/18 18302 -124.138.64.0/19 18302 -124.138.96.0/20 18302 -124.138.112.0/21 18302 -124.138.120.0/23 18302 -124.138.122.0/23 38412 -124.138.124.0/22 38412 -124.138.128.0/22 38411 -124.138.132.0/24 38411 -124.138.133.0/24 18302 -124.138.134.0/24 18302 -124.138.135.0/24 38417 -124.138.136.0/22 38406 -124.138.140.0/23 38406 -124.138.142.0/24 38406 -124.138.143.0/24 18302 -124.138.144.0/24 18302 -124.138.145.0/24 38416 -124.138.146.0/24 38416 -124.138.147.0/24 18302 -124.138.148.0/23 38416 -124.138.150.0/24 38416 -124.138.151.0/24 18302 -124.138.152.0/23 38405 -124.138.154.0/23 18302 -124.138.156.0/22 18302 -124.138.160.0/22 18302 -124.138.164.0/22 38395 -124.138.168.0/24 38395 -124.138.169.0/24 18302 -124.138.170.0/24 18302 -124.138.171.0/24 38395 -124.138.172.0/23 38395 -124.138.174.0/24 18302 -124.138.175.0/24 38417 -124.138.176.0/22 38403 -124.138.180.0/22 18302 -124.138.184.0/23 18302 -124.138.186.0/24 18302 -124.138.187.0/24 38417 -124.138.188.0/24 38391 -124.138.189.0/24 38410 -124.138.190.0/24 38410 -124.138.191.0/24 38417 -124.138.192.0/21 38394 -124.138.200.0/23 38410 -124.138.202.0/23 38402 -124.138.204.0/23 38402 -124.138.206.0/24 38402 -124.138.207.0/24 38410 -124.138.208.0/20 18302 -124.138.224.0/23 18302 -124.138.226.0/24 18302 -124.138.227.0/24 38410 -124.138.228.0/23 38401 -124.138.230.0/23 38410 -124.138.232.0/23 38408 -124.138.234.0/23 38410 -124.138.236.0/23 38417 -124.138.238.0/23 38410 -124.138.240.0/23 18302 -124.138.242.0/24 38410 -124.138.243.0/24 18302 -124.138.244.0/22 38400 -124.138.248.0/23 18302 -124.138.250.0/23 38398 -124.138.252.0/23 38398 -124.138.254.0/24 38398 -124.138.255.0/24 18302 -124.139.0.0/19 18302 -124.139.32.0/22 38390 -124.139.36.0/23 38390 -124.139.38.0/24 38390 -124.139.39.0/24 18302 -124.139.40.0/21 38415 -124.139.48.0/21 38415 -124.139.56.0/24 38415 -124.139.57.0/24 18302 -124.139.58.0/23 18302 -124.139.60.0/22 18302 -124.139.64.0/21 18302 -124.139.72.0/22 18302 -124.139.76.0/23 18302 -124.139.78.0/23 38396 -124.139.80.0/22 38396 -124.139.84.0/23 38396 -124.139.86.0/23 18302 -124.139.88.0/21 38410 -124.139.96.0/22 38410 -124.139.100.0/24 38410 -124.139.101.0/24 18302 -124.139.102.0/23 18302 -124.139.104.0/21 18302 -124.139.112.0/20 18302 -124.139.128.0/18 18302 -124.139.192.0/20 18302 -124.139.208.0/23 18302 -124.139.210.0/24 9318 -124.139.211.0/24 18302 -124.139.212.0/22 18302 -124.139.216.0/21 18302 -124.139.224.0/21 18302 -124.139.232.0/23 9318 -124.139.234.0/23 18302 -124.139.236.0/22 18302 -124.139.240.0/20 18302 -124.140.0.0/14 9824 -124.144.0.0/15 9824 -124.146.0.0/18 17586 -124.146.64.0/18 7511 -124.146.128.0/17 2514 -124.147.0.0/19 9607 -124.147.64.0/18 2497 -124.148.0.0/21 4739 -124.148.8.0/23 4739 -124.148.10.0/23 7545 -124.148.12.0/22 4739 -124.148.16.0/20 4739 -124.148.32.0/19 7545 -124.148.64.0/18 4739 -124.148.128.0/21 7545 -124.148.136.0/21 4739 -124.148.144.0/20 4739 -124.148.160.0/19 4739 -124.148.192.0/18 4739 -124.149.0.0/21 9543 -124.149.8.0/23 4739 -124.149.10.0/24 7545 -124.149.11.0/24 4739 -124.149.12.0/23 4739 -124.149.14.0/23 9543 -124.149.16.0/21 9543 -124.149.24.0/21 7545 -124.149.32.0/19 7545 -124.149.64.0/22 4739 -124.149.68.0/22 9543 -124.149.72.0/21 9543 -124.149.80.0/20 7545 -124.149.96.0/21 7545 -124.149.104.0/23 9543 -124.149.106.0/23 4739 -124.149.108.0/22 7545 -124.149.112.0/20 4739 -124.149.128.0/20 7545 -124.149.144.0/20 4739 -124.149.160.0/19 7545 -124.149.192.0/18 7545 -124.150.0.0/22 4739 -124.150.4.0/23 4739 -124.150.6.0/23 7545 -124.150.8.0/21 4739 -124.150.16.0/20 4739 -124.150.32.0/19 4739 -124.150.64.0/19 7545 -124.150.96.0/19 4739 -124.150.128.0/21 38843 -124.150.136.0/24 58909 -124.150.139.0/24 136557 -124.150.140.0/22 45945 -124.150.144.0/21 24249 -124.150.152.0/21 23784 -124.150.160.0/20 18015 -124.150.176.0/20 7679 -124.150.192.0/18 7679 -124.151.0.0/16 9812 -124.152.0.0/16 4837 -124.153.0.0/19 9326 -124.153.32.0/23 45727 -124.153.34.0/23 9326 -124.153.36.0/22 9326 -124.153.40.0/21 9326 -124.153.48.0/20 9326 -124.153.64.0/18 17439 -124.153.128.0/17 9694 -124.154.0.0/16 2514 -124.155.0.0/17 4685 -124.155.128.0/19 9416 -124.155.160.0/19 18429 -124.155.192.0/23 4657 -124.155.194.0/24 4657 -124.155.195.0/24 9874 -124.155.196.0/22 4657 -124.155.200.0/21 4657 -124.155.208.0/20 4657 -124.155.224.0/20 24005 -124.155.240.0/21 55879 -124.155.248.0/22 55879 -124.155.252.0/24 17665 -124.155.253.0/24 55879 -124.155.254.0/23 55879 -124.156.0.0/16 132203 -124.157.64.0/18 24324 -124.158.0.0/21 38732 -124.158.8.0/22 38733 -124.158.12.0/23 38733 -124.158.14.0/24 45903 -124.158.15.0/24 38733 -124.158.16.0/21 38858 -124.158.28.0/24 45857 -124.158.32.0/23 23944 -124.158.34.0/24 9386 -124.158.35.0/24 23944 -124.158.36.0/22 9386 -124.158.40.0/21 9386 -124.158.48.0/21 23944 -124.158.56.0/23 23944 -124.158.58.0/23 9386 -124.158.60.0/22 9386 -124.158.64.0/19 38805 -124.158.96.0/20 38805 -124.158.112.0/21 38805 -124.158.120.0/22 38805 -124.158.124.0/23 38805 -124.158.126.0/24 38805 -124.158.127.0/24 139089 -124.158.128.0/23 135445 -124.158.132.0/24 135445 -124.158.133.0/24 58816 -124.158.134.0/23 58816 -124.158.144.0/20 17995 -124.158.160.0/20 9341 -124.158.176.0/21 55685 -124.158.184.0/23 55685 -124.158.187.0/24 55685 -124.158.188.0/23 55685 -124.158.191.0/24 55685 -124.158.192.0/19 9304 -124.158.224.0/19 24218 -124.159.0.0/16 7679 -124.160.0.0/13 4837 -124.168.0.0/17 7545 -124.168.128.0/18 7545 -124.168.193.0/24 4739 -124.168.200.0/21 7545 -124.168.216.0/21 7545 -124.168.224.0/19 7545 -124.169.0.0/19 4739 -124.169.32.0/19 7545 -124.169.64.0/21 4739 -124.169.80.0/20 7545 -124.169.96.0/19 4739 -124.169.128.0/18 4739 -124.169.192.0/21 7545 -124.169.200.0/21 18371 -124.169.224.0/19 7545 -124.170.0.0/18 7545 -124.170.64.0/19 7545 -124.170.144.0/20 7545 -124.170.160.0/20 7545 -124.170.192.0/19 4739 -124.170.224.0/20 7545 -124.170.240.0/20 4739 -124.171.0.0/19 4739 -124.171.32.0/20 7545 -124.171.48.0/20 4739 -124.171.64.0/20 4739 -124.171.80.0/21 4739 -124.171.88.0/21 7545 -124.171.96.0/20 4739 -124.171.128.0/19 4739 -124.171.160.0/21 4739 -124.171.168.0/22 4739 -124.171.174.0/24 4739 -124.171.176.0/20 7545 -124.171.192.0/19 4739 -124.171.228.0/22 4739 -124.171.232.0/21 7545 -124.171.240.0/20 4739 -124.172.0.0/17 4134 -124.172.128.0/19 134764 -124.172.160.0/19 4134 -124.172.192.0/18 4134 -124.173.0.0/18 4134 -124.173.64.0/19 4134 -124.173.96.0/19 134764 -124.173.128.0/17 4134 -124.176.0.0/12 1221 -124.192.0.0/17 4808 -124.192.128.0/18 4808 -124.192.192.0/18 24138 -124.193.0.0/17 4808 -124.193.128.0/18 24138 -124.193.192.0/18 4808 -124.194.0.0/16 3786 -124.195.2.0/23 4761 -124.195.4.0/22 4761 -124.195.8.0/23 4761 -124.195.10.0/24 4761 -124.195.12.0/22 4761 -124.195.16.0/20 4761 -124.195.32.0/22 4761 -124.195.36.0/23 4761 -124.195.38.0/23 17922 -124.195.40.0/21 4761 -124.195.48.0/21 4761 -124.195.56.0/22 4761 -124.195.60.0/24 4761 -124.195.64.0/23 4761 -124.195.96.0/19 4761 -124.195.128.0/22 37997 -124.195.132.0/24 45960 -124.195.134.0/24 37997 -124.195.136.0/24 37997 -124.195.137.0/24 45960 -124.195.138.0/23 37997 -124.195.140.0/22 37997 -124.195.144.0/20 9378 -124.195.160.0/19 38684 -124.195.192.0/19 7642 -124.195.224.0/19 38680 -124.196.0.0/21 23848 -124.196.8.0/22 23848 -124.196.14.0/23 23848 -124.196.16.0/23 23848 -124.196.18.0/24 23848 -124.196.22.0/23 23848 -124.196.24.0/24 23848 -124.196.28.0/24 23848 -124.196.30.0/24 23848 -124.197.0.0/18 9790 -124.197.128.0/18 9971 -124.197.192.0/19 9971 -124.197.224.0/20 18206 -124.198.0.0/17 4766 -124.198.128.0/19 9889 -124.198.160.0/21 4826 -124.198.168.0/21 9889 -124.198.176.0/20 9889 -124.198.192.0/18 9889 -124.199.0.0/18 17849 -124.199.64.0/19 4782 -124.199.96.0/20 4782 -124.199.112.0/20 9902 -124.199.128.0/17 17864 -124.200.0.0/16 4808 -124.202.0.0/21 4808 -124.202.8.0/24 4808 -124.202.9.0/24 17964 -124.202.10.0/23 4808 -124.202.12.0/22 4808 -124.202.16.0/20 4808 -124.202.32.0/19 4808 -124.202.64.0/18 4808 -124.202.128.0/21 17964 -124.202.136.0/22 4847 -124.202.140.0/22 17964 -124.202.144.0/20 17964 -124.202.160.0/19 4808 -124.202.192.0/18 4808 -124.203.0.0/17 9395 -124.203.128.0/22 17964 -124.203.132.0/22 4847 -124.203.136.0/21 4847 -124.203.144.0/20 4847 -124.203.160.0/20 4847 -124.203.176.0/20 7497 -124.203.192.0/19 4847 -124.203.224.0/22 7497 -124.203.228.0/22 24138 -124.203.232.0/21 24138 -124.203.240.0/20 4847 -124.204.0.0/19 17964 -124.204.32.0/19 24138 -124.204.64.0/18 4808 -124.204.128.0/17 4808 -124.205.0.0/21 4808 -124.205.8.0/23 4808 -124.205.10.0/24 4808 -124.205.11.0/24 24138 -124.205.12.0/22 4808 -124.205.16.0/20 4808 -124.205.32.0/19 4808 -124.205.64.0/18 4808 -124.205.128.0/18 4808 -124.205.192.0/18 24138 -124.206.0.0/16 4808 -124.207.0.0/17 24138 -124.207.128.0/20 4808 -124.207.144.0/21 4808 -124.207.152.0/22 4808 -124.207.156.0/23 4808 -124.207.158.0/24 4808 -124.207.159.0/24 17964 -124.207.160.0/19 4808 -124.207.192.0/18 4808 -124.208.0.0/13 2516 -124.216.0.0/16 45361 -124.217.128.0/18 10118 -124.217.192.0/19 38661 -124.217.224.0/21 45839 -124.217.233.0/24 45839 -124.217.234.0/23 45839 -124.217.236.0/24 45839 -124.217.240.0/20 45839 -124.218.0.0/16 7482 -124.219.0.0/18 24154 -124.219.64.0/20 24154 -124.219.80.0/21 24154 -124.219.88.0/23 24154 -124.219.90.0/23 7482 -124.219.92.0/22 7482 -124.219.96.0/20 24154 -124.219.112.0/24 24154 -124.219.113.0/24 7482 -124.219.114.0/23 7482 -124.219.116.0/22 7482 -124.219.120.0/21 7482 -124.219.128.0/17 2527 -124.224.0.0/15 4134 -124.226.0.0/18 4134 -124.226.64.0/22 137693 -124.226.68.0/22 4134 -124.226.72.0/21 4134 -124.226.80.0/20 4134 -124.226.96.0/19 4134 -124.226.128.0/18 4134 -124.226.192.0/20 4134 -124.226.208.0/22 4134 -124.226.212.0/22 137693 -124.226.216.0/21 137693 -124.226.224.0/19 4134 -124.227.0.0/20 4134 -124.227.16.0/21 4134 -124.227.24.0/22 137693 -124.227.28.0/22 4134 -124.227.32.0/19 4134 -124.227.64.0/18 4134 -124.227.128.0/19 4134 -124.227.160.0/20 4134 -124.227.176.0/21 4134 -124.227.184.0/22 137693 -124.227.188.0/22 4134 -124.227.192.0/18 4134 -124.228.0.0/14 4134 -124.232.0.0/17 4134 -124.232.128.0/23 63835 -124.232.130.0/23 4134 -124.232.132.0/24 4134 -124.232.133.0/24 63835 -124.232.134.0/24 63835 -124.232.135.0/24 4134 -124.232.136.0/24 4134 -124.232.137.0/24 63835 -124.232.138.0/24 63835 -124.232.139.0/24 4134 -124.232.140.0/22 63835 -124.232.144.0/24 4134 -124.232.145.0/24 63835 -124.232.146.0/23 4134 -124.232.148.0/24 63835 -124.232.149.0/24 4134 -124.232.150.0/23 63835 -124.232.152.0/24 63835 -124.232.153.0/24 4134 -124.232.154.0/23 63835 -124.232.156.0/22 63835 -124.232.160.0/22 63835 -124.232.164.0/23 63835 -124.232.166.0/23 4134 -124.232.168.0/21 4134 -124.232.176.0/20 4134 -124.232.192.0/18 4134 -124.233.0.0/16 4809 -124.234.0.0/15 4134 -124.236.0.0/14 4134 -124.240.0.0/18 58834 -124.240.64.0/18 17816 -124.240.128.0/18 4837 -124.240.192.0/21 38009 -124.240.200.0/24 17828 -124.240.201.0/24 38009 -124.240.202.0/23 38009 -124.240.204.0/22 38009 -124.240.208.0/22 38009 -124.240.212.0/22 17828 -124.240.216.0/21 38009 -124.240.224.0/19 18282 -124.241.0.0/18 17961 -124.241.64.0/19 17961 -124.241.96.0/20 17961 -124.241.112.0/21 17961 -124.241.120.0/21 2519 -124.241.128.0/18 17529 -124.241.192.0/18 7671 -124.243.0.0/17 9842 -124.243.128.0/18 4826 -124.243.192.0/18 23724 -124.244.0.0/16 9269 -124.245.0.0/16 7671 -124.246.0.0/21 63850 -124.246.8.0/21 2764 -124.246.16.0/21 63850 -124.246.24.0/21 2764 -124.246.32.0/22 2764 -124.246.36.0/22 23857 -124.246.40.0/21 2764 -124.246.48.0/20 2764 -124.246.128.0/17 23791 -124.247.0.0/17 37892 -124.247.128.0/18 37892 -124.247.192.0/23 55410 -124.247.194.0/24 55410 -124.247.198.0/24 55410 -124.248.32.0/20 4808 -124.248.48.0/21 4808 -124.248.128.0/20 45267 -124.248.144.0/20 24282 -124.248.160.0/19 23673 -124.248.194.0/24 38478 -124.248.196.0/24 4646 -124.248.202.0/24 38478 -124.248.207.0/24 4646 -124.248.211.0/24 38478 -124.248.212.0/24 38478 -124.248.214.0/23 38478 -124.248.216.0/23 38478 -124.248.219.0/24 38478 -124.248.221.0/24 38478 -124.248.223.0/24 38478 -124.248.224.0/22 38478 -124.248.228.0/23 38478 -124.248.232.0/24 38478 -124.248.237.0/24 38478 -124.248.238.0/23 38478 -124.248.240.0/22 38478 -124.248.245.0/24 38478 -124.248.247.0/24 38478 -124.248.248.0/24 38478 -124.248.250.0/24 38478 -124.248.252.0/23 38478 -124.248.254.0/24 38478 -124.249.0.0/17 4837 -124.250.0.0/22 9802 -124.250.4.0/23 9802 -124.250.6.0/24 4835 -124.250.7.0/24 9802 -124.250.8.0/21 9802 -124.250.16.0/23 4847 -124.250.18.0/23 9802 -124.250.20.0/22 9802 -124.250.24.0/21 9802 -124.250.32.0/23 9802 -124.250.34.0/23 4847 -124.250.36.0/23 9308 -124.250.38.0/23 9802 -124.250.40.0/21 9802 -124.250.48.0/21 9802 -124.250.56.0/22 9802 -124.250.60.0/23 4835 -124.250.62.0/24 9308 -124.250.63.0/24 9802 -124.250.64.0/23 9802 -124.250.66.0/24 4847 -124.250.67.0/24 9308 -124.250.68.0/23 9802 -124.250.70.0/24 9308 -124.250.71.0/24 9802 -124.250.72.0/22 9802 -124.250.76.0/23 9802 -124.250.78.0/24 9308 -124.250.79.0/24 9802 -124.250.80.0/23 4847 -124.250.82.0/23 9802 -124.250.84.0/22 9802 -124.250.88.0/21 9308 -124.250.96.0/19 9802 -124.250.128.0/17 9802 -124.251.0.0/21 9802 -124.251.8.0/23 4847 -124.251.10.0/23 9802 -124.251.12.0/22 9802 -124.251.16.0/20 9802 -124.251.32.0/21 9802 -124.251.40.0/22 9802 -124.251.44.0/22 9308 -124.251.48.0/22 9308 -124.251.52.0/22 9802 -124.251.56.0/21 9802 -124.251.64.0/21 9802 -124.251.72.0/22 9802 -124.251.76.0/24 9802 -124.251.77.0/24 4847 -124.251.78.0/23 9802 -124.251.80.0/21 9802 -124.251.88.0/23 9802 -124.251.90.0/24 4835 -124.251.91.0/24 9802 -124.251.92.0/24 4847 -124.251.93.0/24 9802 -124.251.94.0/23 9802 -124.251.96.0/23 9308 -124.251.98.0/23 9802 -124.251.100.0/23 9802 -124.251.102.0/24 9308 -124.251.103.0/24 9802 -124.251.104.0/22 9802 -124.251.108.0/23 9802 -124.251.110.0/23 4847 -124.251.112.0/21 9802 -124.251.120.0/22 9802 -124.251.124.0/23 9802 -124.251.126.0/23 4847 -124.251.128.0/18 9802 -124.251.192.0/19 9802 -124.251.224.0/22 9802 -124.251.228.0/23 9802 -124.251.230.0/24 9308 -124.251.231.0/24 24143 -124.251.232.0/21 9802 -124.251.240.0/24 9802 -124.251.241.0/24 4835 -124.251.242.0/23 9802 -124.251.244.0/23 9308 -124.251.246.0/23 9802 -124.251.248.0/22 9802 -124.251.252.0/24 4835 -124.251.253.0/24 9802 -124.251.254.0/23 9802 -124.252.0.0/17 38016 -124.252.128.0/18 38016 -124.252.192.0/19 38016 -124.252.224.0/20 38016 -124.252.240.0/21 38016 -124.252.248.0/22 6939 -124.252.252.0/23 6939 -124.252.254.0/24 6939 -124.252.255.0/24 38016 -124.253.0.0/16 17917 -124.254.0.0/18 4847 -124.254.128.0/20 9689 -124.254.144.0/22 38097 -124.254.148.0/22 9689 -124.254.152.0/21 9689 -124.254.160.0/19 9689 -124.254.192.0/18 9689 -124.255.0.0/19 4686 -124.255.32.0/19 10013 -124.255.64.0/18 10013 -124.255.128.0/18 10013 -124.255.192.0/19 10013 -124.255.224.0/19 4686 -125.0.0.0/14 2510 -125.4.0.0/16 9617 -125.5.0.0/22 7629 -125.5.4.0/23 7629 -125.5.12.0/24 7629 -125.5.13.0/24 132206 -125.5.14.0/23 7629 -125.5.16.0/24 58809 -125.5.18.0/24 7629 -125.5.20.0/24 58809 -125.5.21.0/24 7629 -125.5.22.0/23 7629 -125.5.24.0/21 7629 -125.5.32.0/19 7629 -125.5.64.0/19 7629 -125.5.96.0/20 7629 -125.5.112.0/24 7629 -125.5.113.0/24 24131 -125.5.114.0/23 7629 -125.5.116.0/22 7629 -125.5.120.0/21 7629 -125.5.128.0/19 7629 -125.5.160.0/20 7629 -125.5.176.0/24 132206 -125.5.177.0/24 7629 -125.5.178.0/23 7629 -125.5.180.0/22 7629 -125.5.184.0/21 7629 -125.5.192.0/18 7629 -125.6.0.0/16 17707 -125.7.0.0/20 17477 -125.7.16.0/24 36351 -125.7.17.0/24 17477 -125.7.18.0/23 17477 -125.7.20.0/22 17477 -125.7.24.0/21 17477 -125.7.32.0/19 17477 -125.7.64.0/18 17477 -125.7.128.0/18 4766 -125.7.192.0/18 3786 -125.8.0.0/13 9824 -125.16.0.0/16 9498 -125.17.0.0/23 9498 -125.17.2.0/24 45609 -125.17.3.0/24 9498 -125.17.4.0/22 9498 -125.17.8.0/21 9498 -125.17.16.0/20 9498 -125.17.32.0/19 9498 -125.17.64.0/18 9498 -125.17.128.0/17 9498 -125.18.0.0/18 9498 -125.18.64.0/19 9498 -125.18.96.0/20 9498 -125.18.112.0/22 9498 -125.18.116.0/24 45609 -125.18.117.0/24 9498 -125.18.118.0/23 9498 -125.18.120.0/21 9498 -125.18.128.0/18 9498 -125.18.192.0/19 9498 -125.18.224.0/20 9498 -125.18.240.0/22 9498 -125.18.244.0/23 9498 -125.18.246.0/24 45609 -125.18.247.0/24 9498 -125.18.248.0/22 9498 -125.18.252.0/23 9498 -125.18.254.0/24 45609 -125.18.255.0/24 9498 -125.19.0.0/16 9498 -125.20.0.0/21 9498 -125.20.8.0/22 9498 -125.20.12.0/23 9498 -125.20.14.0/24 9498 -125.20.15.0/24 9730 -125.20.16.0/20 9498 -125.20.32.0/19 9498 -125.20.64.0/18 9498 -125.20.128.0/17 9498 -125.21.0.0/17 9498 -125.21.128.0/18 9498 -125.21.192.0/19 9498 -125.21.224.0/21 9498 -125.21.232.0/24 9730 -125.21.233.0/24 9498 -125.21.234.0/23 9498 -125.21.236.0/22 9498 -125.21.240.0/20 9498 -125.22.0.0/22 9498 -125.22.4.0/24 24560 -125.22.5.0/24 9498 -125.22.6.0/23 9498 -125.22.8.0/22 9498 -125.22.12.0/24 9498 -125.22.13.0/24 24560 -125.22.14.0/23 9498 -125.22.16.0/20 9730 -125.22.32.0/21 9498 -125.22.40.0/22 9498 -125.22.44.0/24 9498 -125.22.45.0/24 24560 -125.22.46.0/24 24560 -125.22.47.0/24 9498 -125.22.48.0/20 9498 -125.22.64.0/19 9498 -125.22.96.0/21 9498 -125.22.104.0/24 9498 -125.22.105.0/24 24560 -125.22.106.0/23 9498 -125.22.108.0/22 9498 -125.22.112.0/24 9498 -125.22.113.0/24 9730 -125.22.114.0/23 9498 -125.22.116.0/22 9498 -125.22.120.0/21 9498 -125.22.128.0/19 9498 -125.22.160.0/21 9498 -125.22.168.0/22 9498 -125.22.172.0/24 24560 -125.22.173.0/24 9498 -125.22.174.0/23 9498 -125.22.176.0/20 9498 -125.22.192.0/19 9498 -125.22.224.0/20 9498 -125.22.240.0/20 24560 -125.23.0.0/17 9498 -125.23.128.0/18 9498 -125.23.192.0/20 9498 -125.23.208.0/21 24560 -125.23.216.0/24 24560 -125.23.217.0/24 9498 -125.23.218.0/23 24560 -125.23.220.0/23 24560 -125.23.222.0/24 9498 -125.23.223.0/24 24560 -125.23.224.0/19 9498 -125.24.0.0/14 23969 -125.28.0.0/15 2516 -125.30.0.0/16 2497 -125.31.0.0/18 4609 -125.31.64.0/18 7679 -125.31.128.0/18 18310 -125.31.192.0/18 17622 -125.32.0.0/16 4837 -125.33.0.0/16 4808 -125.34.0.0/17 4808 -125.34.128.0/18 4808 -125.34.192.0/19 4808 -125.34.224.0/20 4808 -125.34.240.0/24 4837 -125.34.241.0/24 4808 -125.34.242.0/24 4808 -125.34.243.0/24 4837 -125.34.244.0/24 4837 -125.34.245.0/24 4808 -125.34.246.0/23 4808 -125.34.248.0/22 4808 -125.34.252.0/23 4808 -125.34.254.0/24 4837 -125.34.255.0/24 4808 -125.35.0.0/17 4808 -125.35.128.0/17 4837 -125.36.0.0/14 4837 -125.40.0.0/14 4837 -125.44.0.0/15 4837 -125.46.0.0/18 4837 -125.46.64.0/19 4837 -125.46.96.0/20 4837 -125.46.112.0/20 9929 -125.46.128.0/17 4837 -125.47.0.0/16 4837 -125.48.0.0/13 2516 -125.56.0.0/17 7679 -125.56.128.0/20 24319 -125.56.144.0/21 16625 -125.56.152.0/21 24319 -125.56.160.0/20 24319 -125.56.176.0/21 16625 -125.56.184.0/23 20940 -125.56.186.0/24 20940 -125.56.187.0/24 24319 -125.56.188.0/22 24319 -125.56.192.0/23 24319 -125.56.194.0/24 24319 -125.56.195.0/24 9299 -125.56.196.0/23 24319 -125.56.198.0/24 7470 -125.56.199.0/24 7473 -125.56.200.0/23 20940 -125.56.202.0/23 24319 -125.56.204.0/24 24319 -125.56.205.0/24 20940 -125.56.206.0/23 20940 -125.56.208.0/22 24319 -125.56.212.0/23 16625 -125.56.214.0/23 24319 -125.56.216.0/23 24319 -125.56.218.0/23 20940 -125.56.220.0/23 20940 -125.56.222.0/24 20940 -125.56.223.0/24 24319 -125.56.224.0/20 16625 -125.56.240.0/20 24319 -125.57.0.0/20 9457 -125.57.16.0/21 9457 -125.57.24.0/24 38676 -125.57.25.0/24 9457 -125.57.26.0/23 9457 -125.57.28.0/22 9457 -125.57.32.0/22 9457 -125.57.36.0/24 38091 -125.57.37.0/24 9457 -125.57.38.0/23 9457 -125.57.40.0/21 9457 -125.57.48.0/20 9457 -125.57.64.0/19 9457 -125.57.96.0/21 9457 -125.57.104.0/24 9457 -125.57.105.0/24 10066 -125.57.106.0/23 9457 -125.57.108.0/22 9457 -125.57.112.0/20 9457 -125.57.128.0/18 9457 -125.57.192.0/21 9457 -125.57.200.0/22 9457 -125.57.204.0/23 9457 -125.57.206.0/24 38091 -125.57.207.0/24 9457 -125.57.208.0/20 9457 -125.57.224.0/21 9457 -125.57.232.0/24 9457 -125.57.233.0/24 38676 -125.57.234.0/24 9457 -125.57.235.0/24 38676 -125.57.236.0/22 9457 -125.57.240.0/24 9457 -125.57.241.0/24 38676 -125.57.242.0/24 9457 -125.57.243.0/24 38676 -125.57.244.0/24 9457 -125.57.245.0/24 38676 -125.57.246.0/24 9457 -125.57.247.0/24 38676 -125.57.248.0/24 9457 -125.57.249.0/24 38676 -125.57.250.0/23 9457 -125.57.252.0/22 9457 -125.58.64.0/18 17529 -125.58.128.0/17 17968 -125.59.0.0/16 9908 -125.60.0.0/18 17841 -125.60.64.0/19 9980 -125.60.128.0/17 10139 -125.61.0.0/18 23575 -125.61.64.0/20 23575 -125.61.80.0/21 23575 -125.61.88.0/22 23575 -125.61.92.0/23 9318 -125.61.94.0/24 23575 -125.61.95.0/24 9318 -125.61.96.0/22 23575 -125.61.100.0/24 10050 -125.61.101.0/24 23575 -125.61.102.0/24 18302 -125.61.103.0/24 23575 -125.61.104.0/21 23575 -125.61.112.0/22 23575 -125.61.116.0/23 17841 -125.61.118.0/23 23575 -125.61.120.0/21 23575 -125.61.128.0/24 7497 -125.61.129.0/24 4847 -125.61.130.0/23 4847 -125.61.132.0/22 4847 -125.61.136.0/21 4847 -125.61.144.0/20 4847 -125.62.0.0/23 17969 -125.62.2.0/23 9394 -125.62.4.0/22 9394 -125.62.8.0/21 9394 -125.62.16.0/20 9394 -125.62.32.0/19 9394 -125.62.64.0/22 206819 -125.62.68.0/22 64021 -125.62.72.0/22 60800 -125.62.76.0/22 23871 -125.62.84.0/22 46573 -125.62.88.0/22 45814 -125.62.92.0/22 138802 -125.62.96.0/19 17917 -125.62.150.0/24 9730 -125.62.167.0/24 9498 -125.62.179.0/24 9498 -125.62.187.0/24 9498 -125.62.190.0/24 9498 -125.62.192.0/20 45694 -125.62.208.0/21 45694 -125.62.216.0/21 18033 -125.62.224.0/20 38797 -125.63.0.0/22 23935 -125.63.4.0/22 24093 -125.63.8.0/21 24093 -125.63.16.0/23 23935 -125.63.18.0/24 23935 -125.63.19.0/24 24093 -125.63.20.0/24 24093 -125.63.21.0/24 23935 -125.63.22.0/24 23935 -125.63.23.0/24 24129 -125.63.24.0/23 38195 -125.63.26.0/24 38195 -125.63.27.0/24 24093 -125.63.28.0/24 24093 -125.63.29.0/24 38195 -125.63.30.0/24 38195 -125.63.31.0/24 24093 -125.63.32.0/20 24278 -125.63.48.0/20 45570 -125.63.64.0/18 10029 -125.63.128.0/17 7474 -125.64.0.0/20 38283 -125.64.16.0/22 38283 -125.64.20.0/23 38283 -125.64.22.0/24 4134 -125.64.23.0/24 38283 -125.64.24.0/21 38283 -125.64.32.0/21 38283 -125.64.40.0/23 38283 -125.64.42.0/24 4134 -125.64.43.0/24 38283 -125.64.44.0/22 4134 -125.64.48.0/20 4134 -125.64.64.0/20 4134 -125.64.80.0/21 4134 -125.64.88.0/22 4134 -125.64.92.0/22 38283 -125.64.96.0/20 38283 -125.64.112.0/20 4134 -125.64.128.0/20 38283 -125.64.144.0/22 38283 -125.64.148.0/22 4134 -125.64.152.0/21 4134 -125.64.160.0/19 4134 -125.64.192.0/18 4134 -125.65.0.0/19 4134 -125.65.32.0/21 4134 -125.65.40.0/22 4134 -125.65.44.0/23 4134 -125.65.46.0/24 38283 -125.65.47.0/24 4134 -125.65.48.0/20 4134 -125.65.64.0/19 4134 -125.65.96.0/20 4134 -125.65.112.0/23 4134 -125.65.114.0/24 38283 -125.65.115.0/24 4134 -125.65.116.0/22 4134 -125.65.120.0/21 4134 -125.65.128.0/22 4134 -125.65.132.0/23 4134 -125.65.134.0/23 38283 -125.65.136.0/21 4134 -125.65.144.0/21 4134 -125.65.152.0/24 4134 -125.65.153.0/24 38283 -125.65.154.0/24 38283 -125.65.155.0/24 4134 -125.65.156.0/22 4134 -125.65.160.0/22 4134 -125.65.164.0/24 4134 -125.65.165.0/24 38283 -125.65.166.0/23 4134 -125.65.168.0/21 4134 -125.65.176.0/20 4134 -125.65.192.0/20 4134 -125.65.208.0/21 4134 -125.65.216.0/22 38283 -125.65.220.0/22 4134 -125.65.224.0/20 4134 -125.65.240.0/22 4134 -125.65.244.0/24 4134 -125.65.245.0/24 38283 -125.65.246.0/24 4134 -125.65.247.0/24 38283 -125.65.248.0/21 4134 -125.66.0.0/16 4134 -125.67.0.0/17 4134 -125.67.128.0/18 4134 -125.67.192.0/19 4134 -125.67.224.0/21 4134 -125.67.232.0/23 4134 -125.67.234.0/23 38283 -125.67.236.0/22 4134 -125.67.240.0/20 4134 -125.68.0.0/16 4134 -125.69.0.0/18 4134 -125.69.64.0/21 4134 -125.69.72.0/21 4809 -125.69.80.0/20 4134 -125.69.96.0/19 4134 -125.69.128.0/18 4134 -125.69.192.0/19 4134 -125.69.224.0/20 4134 -125.69.240.0/20 4809 -125.70.0.0/15 4134 -125.72.0.0/16 4134 -125.73.0.0/19 4134 -125.73.32.0/20 4134 -125.73.48.0/21 4134 -125.73.56.0/22 137693 -125.73.60.0/23 137693 -125.73.62.0/23 4134 -125.73.64.0/18 4134 -125.73.128.0/18 4134 -125.73.192.0/20 4134 -125.73.208.0/21 137693 -125.73.216.0/21 4134 -125.73.224.0/19 4134 -125.74.0.0/15 4134 -125.76.0.0/20 4134 -125.76.16.0/20 4809 -125.76.32.0/19 4134 -125.76.64.0/18 4134 -125.76.128.0/20 4134 -125.76.144.0/21 4134 -125.76.152.0/22 4134 -125.76.156.0/22 134768 -125.76.160.0/19 4134 -125.76.192.0/19 4134 -125.76.224.0/19 4835 -125.77.0.0/20 4134 -125.77.16.0/20 133774 -125.77.32.0/19 4134 -125.77.64.0/18 4134 -125.77.128.0/19 133776 -125.77.160.0/20 133776 -125.77.176.0/23 133776 -125.77.178.0/23 133774 -125.77.180.0/22 133774 -125.77.184.0/22 133774 -125.77.188.0/24 133774 -125.77.189.0/24 4134 -125.77.190.0/23 4134 -125.77.192.0/21 133775 -125.77.200.0/21 4134 -125.77.208.0/20 4134 -125.77.224.0/19 4134 -125.78.0.0/15 4134 -125.80.0.0/13 4134 -125.88.0.0/21 4134 -125.88.8.0/22 4134 -125.88.12.0/23 4134 -125.88.14.0/24 4134 -125.88.15.0/24 4813 -125.88.16.0/23 58543 -125.88.18.0/23 4134 -125.88.20.0/22 4134 -125.88.24.0/22 4134 -125.88.28.0/23 4134 -125.88.30.0/24 4134 -125.88.31.0/24 58466 -125.88.32.0/20 4134 -125.88.48.0/21 4134 -125.88.56.0/23 4134 -125.88.58.0/23 4813 -125.88.60.0/23 4813 -125.88.62.0/23 4134 -125.88.64.0/23 58466 -125.88.66.0/23 4134 -125.88.68.0/22 4134 -125.88.72.0/21 4134 -125.88.80.0/21 4134 -125.88.88.0/24 4813 -125.88.89.0/24 4134 -125.88.90.0/23 4134 -125.88.92.0/22 4134 -125.88.96.0/22 4134 -125.88.100.0/23 4134 -125.88.102.0/24 4134 -125.88.103.0/24 4813 -125.88.104.0/22 4134 -125.88.108.0/23 4813 -125.88.110.0/23 4134 -125.88.112.0/23 4134 -125.88.114.0/23 4813 -125.88.116.0/22 4813 -125.88.120.0/23 4813 -125.88.122.0/23 4134 -125.88.124.0/22 4813 -125.88.128.0/20 4813 -125.88.144.0/20 134764 -125.88.160.0/21 4134 -125.88.168.0/21 58466 -125.88.176.0/20 134764 -125.88.192.0/18 58466 -125.89.0.0/18 4134 -125.89.64.0/22 4134 -125.89.68.0/23 4134 -125.89.70.0/23 58543 -125.89.72.0/21 58543 -125.89.80.0/20 4134 -125.89.96.0/19 4134 -125.89.128.0/19 4134 -125.89.160.0/22 4134 -125.89.164.0/22 58543 -125.89.168.0/21 58543 -125.89.176.0/20 58543 -125.89.192.0/22 58543 -125.89.196.0/22 4134 -125.89.200.0/21 4134 -125.89.208.0/20 4134 -125.89.224.0/19 4134 -125.90.0.0/18 4134 -125.90.64.0/22 58543 -125.90.68.0/22 4134 -125.90.72.0/21 4134 -125.90.80.0/21 4134 -125.90.88.0/24 58543 -125.90.89.0/24 4134 -125.90.90.0/23 4134 -125.90.92.0/24 4134 -125.90.93.0/24 58543 -125.90.94.0/23 4134 -125.90.96.0/19 4134 -125.90.128.0/18 4134 -125.90.192.0/22 58543 -125.90.196.0/23 58543 -125.90.198.0/23 4134 -125.90.200.0/22 4134 -125.90.204.0/22 58543 -125.90.208.0/20 4134 -125.90.224.0/19 4134 -125.91.0.0/20 58543 -125.91.16.0/20 4816 -125.91.32.0/19 4816 -125.91.64.0/19 4816 -125.91.96.0/21 4134 -125.91.104.0/21 4816 -125.91.112.0/20 4816 -125.91.128.0/21 4816 -125.91.136.0/22 4816 -125.91.140.0/23 4816 -125.91.142.0/23 4134 -125.91.144.0/20 4134 -125.91.160.0/19 4134 -125.91.192.0/19 4134 -125.91.224.0/22 4134 -125.91.228.0/24 4134 -125.91.229.0/24 58543 -125.91.230.0/24 58543 -125.91.231.0/24 4134 -125.91.232.0/22 4134 -125.91.236.0/23 4134 -125.91.238.0/24 4134 -125.91.239.0/24 58543 -125.91.240.0/21 4134 -125.91.248.0/22 4134 -125.91.252.0/24 4134 -125.91.253.0/24 58543 -125.91.254.0/23 4134 -125.92.0.0/16 4134 -125.93.0.0/19 4134 -125.93.32.0/20 4134 -125.93.48.0/22 4134 -125.93.52.0/24 4134 -125.93.53.0/24 58543 -125.93.54.0/23 4134 -125.93.56.0/21 4134 -125.93.64.0/18 4134 -125.93.128.0/17 4134 -125.94.0.0/19 4134 -125.94.32.0/19 58466 -125.94.64.0/18 134764 -125.94.128.0/20 58543 -125.94.144.0/21 134764 -125.94.152.0/21 4134 -125.94.160.0/19 4134 -125.94.192.0/20 4134 -125.94.208.0/22 4134 -125.94.212.0/22 58466 -125.94.216.0/21 4134 -125.94.224.0/19 134764 -125.95.0.0/16 4134 -125.96.0.0/20 9814 -125.96.32.0/19 9814 -125.96.170.0/23 9814 -125.96.172.0/23 9814 -125.96.176.0/20 9814 -125.96.192.0/19 9814 -125.96.224.0/20 9814 -125.96.240.0/21 9814 -125.97.0.0/16 9814 -125.98.122.0/23 9814 -125.98.128.0/17 9814 -125.99.0.0/19 17488 -125.99.32.0/22 17488 -125.99.37.0/24 17488 -125.99.38.0/23 17488 -125.99.40.0/21 17488 -125.99.48.0/20 17488 -125.99.64.0/18 17488 -125.99.128.0/22 17488 -125.99.132.0/23 17488 -125.99.135.0/24 17488 -125.99.136.0/21 17488 -125.99.144.0/20 17488 -125.99.160.0/21 17488 -125.99.168.0/22 17488 -125.99.172.0/23 17488 -125.99.176.0/20 17488 -125.99.192.0/19 17488 -125.99.224.0/21 17488 -125.99.232.0/23 17488 -125.99.234.0/24 17488 -125.99.236.0/22 17488 -125.99.240.0/20 17488 -125.100.0.0/14 17506 -125.104.0.0/13 4134 -125.112.0.0/15 4134 -125.114.0.0/17 4134 -125.114.128.0/18 4134 -125.114.192.0/21 4134 -125.114.200.0/22 4134 -125.114.204.0/23 4134 -125.114.206.0/24 4134 -125.114.207.0/24 136188 -125.114.208.0/20 4134 -125.114.224.0/19 4134 -125.115.0.0/16 4134 -125.116.0.0/14 4134 -125.120.0.0/14 4134 -125.124.0.0/16 58461 -125.125.0.0/16 4134 -125.126.0.0/15 4134 -125.128.0.0/18 4766 -125.128.64.0/19 17841 -125.128.96.0/19 4766 -125.128.128.0/17 4766 -125.129.0.0/17 4766 -125.129.128.0/20 4766 -125.129.144.0/24 4766 -125.129.145.0/24 10167 -125.129.146.0/23 4766 -125.129.148.0/22 4766 -125.129.152.0/21 4766 -125.129.160.0/19 4766 -125.129.192.0/20 4766 -125.129.208.0/23 4766 -125.129.210.0/24 38388 -125.129.211.0/24 4766 -125.129.212.0/22 4766 -125.129.216.0/21 4766 -125.129.224.0/19 4766 -125.130.0.0/19 4766 -125.130.32.0/20 4766 -125.130.48.0/21 4766 -125.130.56.0/22 4766 -125.130.60.0/23 9703 -125.130.62.0/23 4766 -125.130.64.0/18 4766 -125.130.128.0/17 4766 -125.131.0.0/20 4766 -125.131.16.0/21 4766 -125.131.24.0/22 4766 -125.131.28.0/23 4766 -125.131.30.0/24 4766 -125.131.31.0/24 45973 -125.131.32.0/19 4766 -125.131.64.0/18 4766 -125.131.128.0/19 4766 -125.131.160.0/22 4766 -125.131.164.0/23 4766 -125.131.166.0/24 4766 -125.131.167.0/24 9696 -125.131.168.0/21 4766 -125.131.176.0/20 4766 -125.131.192.0/18 4766 -125.132.0.0/22 23566 -125.132.4.0/22 4766 -125.132.8.0/21 4766 -125.132.16.0/20 4766 -125.132.32.0/19 4766 -125.132.64.0/18 4766 -125.132.128.0/20 4766 -125.132.144.0/21 4766 -125.132.152.0/22 4766 -125.132.156.0/23 4766 -125.132.158.0/24 4766 -125.132.159.0/24 18323 -125.132.160.0/19 4766 -125.132.192.0/21 4766 -125.132.200.0/22 4766 -125.132.204.0/24 4766 -125.132.205.0/24 18323 -125.132.206.0/23 4766 -125.132.208.0/20 4766 -125.132.224.0/19 4766 -125.133.0.0/17 4766 -125.133.128.0/20 17584 -125.133.144.0/21 4766 -125.133.152.0/23 4766 -125.133.154.0/24 4766 -125.133.155.0/24 17600 -125.133.156.0/22 4766 -125.133.160.0/19 4766 -125.133.192.0/18 4766 -125.134.0.0/15 4766 -125.136.0.0/15 4766 -125.138.0.0/17 4766 -125.138.128.0/19 4766 -125.138.160.0/20 4766 -125.138.176.0/21 10047 -125.138.184.0/21 4766 -125.138.192.0/18 4766 -125.139.0.0/16 4766 -125.140.0.0/15 4766 -125.142.0.0/18 4766 -125.142.64.0/19 4766 -125.142.96.0/20 4766 -125.142.112.0/21 4766 -125.142.120.0/24 4766 -125.142.121.0/24 9629 -125.142.122.0/23 4766 -125.142.124.0/22 4766 -125.142.128.0/17 4766 -125.143.0.0/17 4766 -125.143.128.0/19 4766 -125.143.160.0/22 4766 -125.143.164.0/23 4766 -125.143.166.0/24 4766 -125.143.167.0/24 9696 -125.143.168.0/23 4766 -125.143.170.0/24 38663 -125.143.171.0/24 4766 -125.143.172.0/22 4766 -125.143.176.0/20 4766 -125.143.192.0/18 4766 -125.144.0.0/12 4766 -125.160.0.0/22 17974 -125.160.4.0/24 17974 -125.160.5.0/24 7713 -125.160.6.0/23 17974 -125.160.8.0/24 7713 -125.160.9.0/24 17974 -125.160.10.0/23 17974 -125.160.12.0/23 7713 -125.160.14.0/23 17974 -125.160.16.0/24 7713 -125.160.17.0/24 17974 -125.160.18.0/24 17974 -125.160.19.0/24 7713 -125.160.20.0/23 7713 -125.160.22.0/24 7713 -125.160.23.0/24 17974 -125.160.24.0/21 17974 -125.160.32.0/19 7713 -125.160.64.0/21 7713 -125.160.72.0/22 7713 -125.160.76.0/23 7713 -125.160.78.0/24 7713 -125.160.79.0/24 17974 -125.160.80.0/20 7713 -125.160.96.0/19 7713 -125.160.128.0/21 17974 -125.160.136.0/21 7713 -125.160.144.0/20 7713 -125.160.160.0/19 7713 -125.160.192.0/21 7713 -125.160.200.0/22 7713 -125.160.204.0/23 7713 -125.160.206.0/23 17974 -125.160.208.0/20 7713 -125.160.224.0/19 7713 -125.161.0.0/16 7713 -125.162.0.0/17 7713 -125.162.128.0/19 7713 -125.162.160.0/20 7713 -125.162.176.0/21 7713 -125.162.184.0/22 7713 -125.162.188.0/22 17974 -125.162.192.0/18 7713 -125.163.0.0/17 7713 -125.163.128.0/18 7713 -125.163.192.0/20 7713 -125.163.208.0/21 7713 -125.163.216.0/23 7713 -125.163.218.0/24 7713 -125.163.220.0/22 7713 -125.163.224.0/19 7713 -125.164.0.0/15 7713 -125.166.0.0/19 7713 -125.166.32.0/20 7713 -125.166.48.0/21 7713 -125.166.56.0/23 7713 -125.166.58.0/24 17974 -125.166.59.0/24 7713 -125.166.60.0/22 7713 -125.166.64.0/18 7713 -125.166.128.0/17 7713 -125.167.0.0/17 7713 -125.167.128.0/19 7713 -125.167.160.0/22 17974 -125.167.164.0/23 17974 -125.167.166.0/24 7713 -125.167.167.0/24 17974 -125.167.168.0/21 7713 -125.167.176.0/20 7713 -125.167.192.0/20 7713 -125.167.208.0/21 7713 -125.167.216.0/23 7713 -125.167.218.0/24 17974 -125.167.219.0/24 7713 -125.167.220.0/22 7713 -125.167.224.0/22 17974 -125.167.228.0/22 7713 -125.167.232.0/21 7713 -125.167.240.0/20 7713 -125.168.0.0/17 9443 -125.168.128.0/18 9443 -125.168.192.0/20 9443 -125.168.208.0/21 9443 -125.168.216.0/22 9443 -125.168.220.0/24 9443 -125.168.221.0/24 55561 -125.168.222.0/23 55561 -125.168.224.0/20 38285 -125.168.240.0/21 38285 -125.168.248.0/21 9443 -125.170.0.0/16 4713 -125.171.0.0/16 4134 -125.172.0.0/14 4713 -125.176.0.0/12 17858 -125.192.0.0/13 2518 -125.200.0.0/13 4713 -125.208.0.0/21 4808 -125.208.8.0/22 4808 -125.208.12.0/23 4808 -125.208.14.0/24 9801 -125.208.15.0/24 4808 -125.208.16.0/20 4808 -125.208.32.0/24 24151 -125.208.33.0/24 24406 -125.208.34.0/24 24151 -125.208.35.0/24 24406 -125.208.36.0/22 24151 -125.208.40.0/23 24151 -125.208.42.0/24 24151 -125.208.43.0/24 24406 -125.208.44.0/24 24406 -125.208.45.0/24 24151 -125.208.46.0/24 24406 -125.208.47.0/24 24151 -125.208.63.0/24 24151 -125.208.64.0/18 17849 -125.208.128.0/18 4787 -125.208.192.0/18 9781 -125.209.0.0/18 17597 -125.209.64.0/23 9260 -125.209.66.0/24 135523 -125.209.67.0/24 9260 -125.209.68.0/24 9260 -125.209.69.0/24 135523 -125.209.70.0/24 9260 -125.209.71.0/24 135523 -125.209.72.0/24 135523 -125.209.73.0/24 9260 -125.209.74.0/23 9260 -125.209.76.0/22 9260 -125.209.80.0/24 9260 -125.209.81.0/24 135523 -125.209.82.0/24 9260 -125.209.83.0/24 135523 -125.209.84.0/24 135523 -125.209.85.0/24 9260 -125.209.86.0/23 9260 -125.209.88.0/22 9260 -125.209.92.0/24 9260 -125.209.93.0/24 135523 -125.209.94.0/23 9260 -125.209.96.0/20 9260 -125.209.112.0/22 9260 -125.209.116.0/23 9260 -125.209.118.0/24 9260 -125.209.119.0/24 135523 -125.209.120.0/21 9260 -125.209.128.0/18 4739 -125.209.192.0/18 23576 -125.210.0.0/16 24139 -125.211.0.0/17 4837 -125.211.128.0/18 4837 -125.211.192.0/19 4837 -125.211.224.0/19 9929 -125.212.0.0/19 6648 -125.212.32.0/20 6648 -125.212.48.0/21 6648 -125.212.56.0/24 45622 -125.212.57.0/24 6648 -125.212.58.0/23 6648 -125.212.60.0/23 6648 -125.212.62.0/24 6648 -125.212.63.0/24 38301 -125.212.64.0/18 6648 -125.212.128.0/19 7552 -125.212.160.0/22 7552 -125.212.164.0/22 24086 -125.212.168.0/22 24086 -125.212.172.0/22 7552 -125.212.176.0/20 7552 -125.212.192.0/20 38731 -125.212.208.0/20 7552 -125.212.224.0/19 38731 -125.213.32.0/20 17638 -125.213.128.0/23 38513 -125.213.131.0/24 38513 -125.213.132.0/22 4800 -125.213.136.0/22 4800 -125.213.140.0/23 4800 -125.213.143.0/24 4800 -125.213.144.0/20 4800 -125.213.160.0/19 17734 -125.213.192.0/19 17411 -125.213.224.0/19 38888 -125.214.0.0/20 7552 -125.214.16.0/20 24086 -125.214.32.0/23 24086 -125.214.34.0/24 24086 -125.214.35.0/24 7552 -125.214.36.0/22 24086 -125.214.40.0/22 24086 -125.214.44.0/23 24086 -125.214.46.0/24 24086 -125.214.47.0/24 7552 -125.214.48.0/20 24086 -125.214.64.0/20 45454 -125.214.80.0/21 38330 -125.214.88.0/21 55954 -125.214.96.0/21 18242 -125.214.104.0/21 9929 -125.214.112.0/20 9929 -125.214.128.0/19 24249 -125.214.160.0/19 18001 -125.214.192.0/18 4515 -125.215.0.0/19 17621 -125.215.32.0/22 17621 -125.215.36.0/23 17621 -125.215.38.0/23 17775 -125.215.40.0/22 17621 -125.215.44.0/24 4812 -125.215.45.0/24 17775 -125.215.46.0/23 17775 -125.215.48.0/22 17621 -125.215.52.0/23 17775 -125.215.54.0/23 17621 -125.215.56.0/21 17621 -125.215.64.0/18 7522 -125.215.128.0/17 4515 -125.216.0.0/17 4538 -125.216.128.0/18 4538 -125.216.192.0/19 4538 -125.216.224.0/19 24357 -125.217.0.0/17 4538 -125.217.128.0/18 4538 -125.217.192.0/19 4538 -125.217.224.0/19 24357 -125.218.0.0/15 4538 -125.220.0.0/14 4538 -125.224.0.0/13 3462 -125.232.0.0/15 3462 -125.234.0.0/17 7552 -125.234.128.0/19 7552 -125.234.160.0/20 133606 -125.234.176.0/20 7552 -125.234.192.0/18 7552 -125.235.0.0/16 7552 -125.236.35.0/24 4648 -125.236.36.0/24 23746 -125.236.40.0/22 4648 -125.236.44.0/23 4648 -125.236.48.0/20 4648 -125.236.64.0/23 4648 -125.236.66.0/24 4648 -125.236.68.0/22 4648 -125.236.72.0/22 4648 -125.236.77.0/24 4648 -125.236.78.0/23 4648 -125.236.86.0/24 4648 -125.236.89.0/24 23746 -125.236.94.0/24 4648 -125.236.128.0/19 4771 -125.236.168.0/21 4771 -125.236.176.0/21 4771 -125.236.192.0/19 4771 -125.236.224.0/20 4771 -125.236.240.0/22 4771 -125.236.252.0/22 133420 -125.237.0.0/17 4771 -125.237.128.0/18 4771 -125.237.192.0/20 4771 -125.237.240.0/20 4771 -125.238.0.0/18 4771 -125.238.64.0/21 4771 -125.238.80.0/20 4771 -125.238.96.0/19 4771 -125.238.128.0/19 4771 -125.238.160.0/21 4771 -125.238.168.0/22 4771 -125.238.176.0/21 4771 -125.238.184.0/22 4771 -125.238.192.0/18 4771 -125.239.0.0/24 4771 -125.239.2.0/24 4771 -125.239.4.0/24 4771 -125.239.6.0/23 4771 -125.239.8.0/23 4771 -125.239.11.0/24 4771 -125.239.12.0/23 4771 -125.239.15.0/24 4771 -125.239.16.0/20 4771 -125.239.32.0/19 4771 -125.239.65.0/24 4771 -125.239.67.0/24 4771 -125.239.68.0/22 4771 -125.239.72.0/21 4771 -125.239.80.0/20 4771 -125.239.96.0/19 4771 -125.239.128.0/18 4771 -125.239.192.0/21 4771 -125.239.200.0/22 4771 -125.239.204.0/23 4771 -125.239.206.0/24 4771 -125.239.240.0/24 4771 -125.239.242.0/24 4771 -125.239.244.0/22 4771 -125.239.248.0/22 4771 -125.239.252.0/24 4771 -125.240.0.0/20 9316 -125.240.16.0/20 17858 -125.240.32.0/19 17858 -125.240.64.0/18 17858 -125.240.128.0/17 17858 -125.241.0.0/19 17858 -125.241.32.0/20 17858 -125.241.48.0/20 9316 -125.241.64.0/18 9316 -125.241.128.0/19 17858 -125.241.160.0/20 17858 -125.241.176.0/20 9316 -125.241.192.0/18 17858 -125.242.0.0/16 17858 -125.243.0.0/18 17858 -125.243.64.0/21 9316 -125.243.72.0/22 9316 -125.243.76.0/23 9871 -125.243.78.0/23 9316 -125.243.80.0/20 9316 -125.243.96.0/19 9316 -125.243.128.0/17 9316 -125.244.0.0/15 9316 -125.246.0.0/21 9316 -125.246.8.0/22 9316 -125.246.12.0/23 38390 -125.246.14.0/23 9316 -125.246.16.0/23 9316 -125.246.18.0/24 9316 -125.246.19.0/24 38415 -125.246.20.0/22 9316 -125.246.24.0/23 9316 -125.246.26.0/24 38402 -125.246.27.0/24 38400 -125.246.28.0/23 38406 -125.246.30.0/23 9316 -125.246.32.0/24 38402 -125.246.33.0/24 9316 -125.246.34.0/24 38408 -125.246.35.0/24 38398 -125.246.36.0/24 38390 -125.246.37.0/24 38415 -125.246.38.0/24 38402 -125.246.39.0/24 9316 -125.246.40.0/24 9316 -125.246.41.0/24 38412 -125.246.42.0/24 9316 -125.246.43.0/24 38390 -125.246.44.0/23 38402 -125.246.46.0/24 38402 -125.246.47.0/24 9316 -125.246.48.0/22 9316 -125.246.52.0/24 38415 -125.246.53.0/24 9316 -125.246.54.0/23 9316 -125.246.56.0/24 38411 -125.246.57.0/24 9316 -125.246.58.0/23 9316 -125.246.60.0/23 9316 -125.246.62.0/24 9316 -125.246.63.0/24 38402 -125.246.64.0/22 38402 -125.246.68.0/24 38402 -125.246.69.0/24 9316 -125.246.70.0/24 9316 -125.246.71.0/24 38398 -125.246.72.0/23 38398 -125.246.74.0/24 9316 -125.246.75.0/24 38408 -125.246.76.0/24 9316 -125.246.77.0/24 38408 -125.246.78.0/23 9316 -125.246.80.0/23 9316 -125.246.82.0/24 38403 -125.246.83.0/24 9316 -125.246.84.0/24 9316 -125.246.85.0/24 38390 -125.246.86.0/24 38390 -125.246.87.0/24 9316 -125.246.88.0/22 38415 -125.246.92.0/24 38406 -125.246.93.0/24 9316 -125.246.94.0/24 9316 -125.246.95.0/24 38396 -125.246.96.0/22 38396 -125.246.100.0/23 9316 -125.246.102.0/24 9316 -125.246.103.0/24 38416 -125.246.104.0/22 9316 -125.246.108.0/23 38411 -125.246.110.0/24 9316 -125.246.111.0/24 38411 -125.246.112.0/21 9316 -125.246.120.0/24 9316 -125.246.121.0/24 38406 -125.246.122.0/23 9316 -125.246.124.0/23 9316 -125.246.126.0/24 9316 -125.246.127.0/24 38391 -125.246.128.0/23 9316 -125.246.130.0/23 38402 -125.246.132.0/23 38402 -125.246.134.0/24 38402 -125.246.135.0/24 9316 -125.246.136.0/23 9316 -125.246.138.0/23 38408 -125.246.140.0/22 9316 -125.246.144.0/23 9316 -125.246.146.0/24 9316 -125.246.147.0/24 38400 -125.246.148.0/22 38400 -125.246.152.0/23 9316 -125.246.154.0/23 38390 -125.246.156.0/23 38390 -125.246.158.0/24 9316 -125.246.159.0/24 38415 -125.246.160.0/23 9316 -125.246.162.0/24 38406 -125.246.163.0/24 9316 -125.246.164.0/24 38406 -125.246.165.0/24 9316 -125.246.166.0/23 38410 -125.246.168.0/24 9316 -125.246.169.0/24 38417 -125.246.170.0/24 9316 -125.246.171.0/24 38412 -125.246.172.0/24 9316 -125.246.173.0/24 38411 -125.246.174.0/23 38411 -125.246.176.0/24 9316 -125.246.177.0/24 38411 -125.246.178.0/24 9316 -125.246.179.0/24 38401 -125.246.180.0/23 38401 -125.246.182.0/24 9316 -125.246.183.0/24 38391 -125.246.184.0/22 9316 -125.246.188.0/24 38406 -125.246.189.0/24 9316 -125.246.190.0/24 9316 -125.246.191.0/24 38402 -125.246.192.0/21 9316 -125.246.200.0/24 38400 -125.246.201.0/24 38390 -125.246.202.0/23 38390 -125.246.204.0/24 38415 -125.246.205.0/24 9316 -125.246.206.0/24 38406 -125.246.207.0/24 9316 -125.246.208.0/24 9316 -125.246.209.0/24 38412 -125.246.210.0/24 9316 -125.246.211.0/24 38411 -125.246.212.0/23 9316 -125.246.214.0/24 38391 -125.246.215.0/24 9316 -125.246.216.0/24 38401 -125.246.217.0/24 38402 -125.246.218.0/24 38402 -125.246.219.0/24 9316 -125.246.220.0/23 9316 -125.246.222.0/23 38394 -125.246.224.0/24 9316 -125.246.225.0/24 38398 -125.246.226.0/24 38398 -125.246.227.0/24 38408 -125.246.228.0/24 38408 -125.246.229.0/24 9316 -125.246.230.0/24 38400 -125.246.231.0/24 38403 -125.246.232.0/24 38390 -125.246.233.0/24 9316 -125.246.234.0/24 38417 -125.246.235.0/24 38411 -125.246.236.0/23 38401 -125.246.238.0/23 9316 -125.246.240.0/23 9316 -125.246.242.0/23 38402 -125.246.244.0/23 9316 -125.246.246.0/23 38394 -125.246.248.0/21 9316 -125.247.0.0/23 9316 -125.247.2.0/24 38400 -125.247.3.0/24 9316 -125.247.4.0/23 38390 -125.247.6.0/24 38415 -125.247.7.0/24 9316 -125.247.8.0/23 9316 -125.247.10.0/24 9316 -125.247.11.0/24 38411 -125.247.12.0/22 9316 -125.247.16.0/21 9316 -125.247.24.0/22 9316 -125.247.28.0/23 9316 -125.247.30.0/24 9316 -125.247.31.0/24 38408 -125.247.32.0/21 9316 -125.247.40.0/24 9316 -125.247.41.0/24 38398 -125.247.42.0/23 9316 -125.247.44.0/24 38417 -125.247.45.0/24 9316 -125.247.46.0/23 9316 -125.247.48.0/20 17858 -125.247.64.0/24 9316 -125.247.65.0/24 38390 -125.247.66.0/24 38390 -125.247.67.0/24 9316 -125.247.68.0/24 38390 -125.247.69.0/24 9316 -125.247.70.0/23 9316 -125.247.72.0/22 9316 -125.247.76.0/23 9316 -125.247.78.0/24 9316 -125.247.79.0/24 38411 -125.247.80.0/20 9316 -125.247.96.0/19 9316 -125.247.128.0/19 17858 -125.247.160.0/20 17858 -125.247.176.0/20 9316 -125.247.192.0/20 17858 -125.247.208.0/20 9316 -125.247.224.0/20 9316 -125.247.240.0/20 17858 -125.248.0.0/18 17858 -125.248.64.0/19 17858 -125.248.96.0/21 9316 -125.248.104.0/22 9316 -125.248.108.0/23 9316 -125.248.110.0/24 38390 -125.248.111.0/24 9316 -125.248.112.0/20 9316 -125.248.128.0/22 9316 -125.248.132.0/24 9316 -125.248.133.0/24 38411 -125.248.134.0/23 9316 -125.248.136.0/21 9316 -125.248.144.0/20 9316 -125.248.160.0/20 9316 -125.248.176.0/20 17858 -125.248.192.0/19 9316 -125.248.224.0/19 17858 -125.249.0.0/19 17858 -125.249.32.0/20 17858 -125.249.48.0/20 9316 -125.249.64.0/20 17858 -125.249.80.0/20 9316 -125.249.96.0/19 17858 -125.249.128.0/17 17858 -125.250.0.0/20 17858 -125.250.16.0/20 9316 -125.250.32.0/19 17858 -125.250.64.0/18 17858 -125.250.128.0/18 17858 -125.250.192.0/19 9316 -125.250.224.0/20 9316 -125.250.240.0/21 9316 -125.250.248.0/23 9316 -125.250.250.0/23 38395 -125.250.252.0/24 9316 -125.250.253.0/24 38394 -125.250.254.0/23 9316 -125.251.0.0/24 38394 -125.251.1.0/24 9316 -125.251.2.0/23 9316 -125.251.4.0/22 9316 -125.251.8.0/22 9316 -125.251.12.0/23 9316 -125.251.14.0/24 38408 -125.251.15.0/24 9316 -125.251.16.0/22 9316 -125.251.20.0/24 38395 -125.251.21.0/24 9316 -125.251.22.0/23 9316 -125.251.24.0/23 9316 -125.251.26.0/24 38395 -125.251.27.0/24 9316 -125.251.28.0/22 9316 -125.251.32.0/23 9950 -125.251.34.0/24 9950 -125.251.35.0/24 9316 -125.251.36.0/22 9316 -125.251.40.0/21 9316 -125.251.48.0/20 9316 -125.251.64.0/24 38395 -125.251.65.0/24 9316 -125.251.66.0/24 38394 -125.251.67.0/24 9316 -125.251.68.0/24 38394 -125.251.69.0/24 9316 -125.251.70.0/23 9316 -125.251.72.0/23 9316 -125.251.74.0/24 9316 -125.251.75.0/24 38408 -125.251.76.0/24 38408 -125.251.77.0/24 9316 -125.251.78.0/23 9316 -125.251.80.0/20 9316 -125.251.96.0/20 9316 -125.251.112.0/20 17858 -125.251.128.0/19 9316 -125.251.160.0/19 17858 -125.251.192.0/20 17858 -125.251.208.0/20 9316 -125.251.224.0/19 17858 -125.252.0.0/18 17608 -125.252.64.0/21 4637 -125.252.72.0/22 4637 -125.252.76.0/23 4637 -125.252.78.0/24 26344 -125.252.79.0/24 4637 -125.252.80.0/20 4637 -125.252.96.0/23 4637 -125.252.98.0/24 4637 -125.252.99.0/24 23930 -125.252.100.0/22 4637 -125.252.104.0/21 4637 -125.252.112.0/20 4637 -125.252.128.0/18 7671 -125.252.192.0/20 24319 -125.252.208.0/22 24319 -125.252.212.0/22 16625 -125.252.216.0/22 4657 -125.252.220.0/22 24319 -125.252.224.0/24 20940 -125.252.225.0/24 24319 -125.252.226.0/24 9498 -125.252.227.0/24 24319 -125.252.228.0/22 4657 -125.252.232.0/21 4788 -125.252.240.0/21 7470 -125.252.248.0/21 24560 -125.253.0.0/23 38195 -125.253.2.0/24 24093 -125.253.3.0/24 38195 -125.253.4.0/24 38195 -125.253.5.0/24 24093 -125.253.6.0/23 24093 -125.253.8.0/24 24093 -125.253.9.0/24 24233 -125.253.10.0/24 38195 -125.253.11.0/24 24093 -125.253.12.0/23 24129 -125.253.14.0/24 24093 -125.253.15.0/24 38195 -125.253.16.0/23 24093 -125.253.18.0/23 24233 -125.253.20.0/22 24093 -125.253.24.0/22 24093 -125.253.28.0/23 24093 -125.253.30.0/24 24093 -125.253.31.0/24 24233 -125.253.32.0/22 24093 -125.253.36.0/23 7631 -125.253.38.0/24 24093 -125.253.39.0/24 38195 -125.253.40.0/21 24093 -125.253.48.0/24 24093 -125.253.49.0/24 55411 -125.253.50.0/23 24093 -125.253.52.0/23 17829 -125.253.54.0/23 24093 -125.253.56.0/23 38195 -125.253.58.0/23 24233 -125.253.60.0/22 24093 -125.253.92.0/24 38883 -125.253.94.0/23 58929 -125.253.96.0/21 24093 -125.253.104.0/22 24093 -125.253.108.0/23 24093 -125.253.110.0/24 24093 -125.253.111.0/24 38195 -125.253.112.0/20 45538 -125.253.128.0/21 38056 -125.253.136.0/24 11127 -125.253.137.0/24 38056 -125.253.138.0/24 38056 -125.253.139.0/24 11127 -125.253.140.0/22 38056 -125.253.144.0/21 38056 -125.253.152.0/22 39356 -125.253.156.0/23 39356 -125.253.158.0/23 38056 -125.253.160.0/19 38056 -125.253.192.0/18 38056 -125.254.0.0/23 7545 -125.254.2.0/23 9942 -125.254.4.0/22 9942 -125.254.8.0/24 9942 -125.254.9.0/24 7545 -125.254.10.0/24 7545 -125.254.11.0/24 9942 -125.254.12.0/24 7545 -125.254.13.0/24 9942 -125.254.14.0/23 9942 -125.254.16.0/22 7545 -125.254.20.0/24 7545 -125.254.21.0/24 9942 -125.254.22.0/23 9942 -125.254.24.0/23 9942 -125.254.26.0/24 9942 -125.254.27.0/24 7545 -125.254.28.0/23 7545 -125.254.30.0/23 9942 -125.254.32.0/24 17668 -125.254.33.0/24 7545 -125.254.34.0/24 17668 -125.254.35.0/24 9942 -125.254.36.0/24 9942 -125.254.37.0/24 7545 -125.254.38.0/23 7545 -125.254.40.0/22 9942 -125.254.44.0/23 7545 -125.254.46.0/23 9942 -125.254.48.0/23 24516 -125.254.50.0/23 132627 -125.254.52.0/22 38794 -125.254.56.0/22 38628 -125.254.60.0/23 135060 -125.254.63.0/24 134123 -125.254.64.0/18 9224 -125.254.128.0/19 23724 -125.254.168.0/21 4808 -125.254.176.0/21 23724 -125.254.192.0/18 23724 -125.255.0.0/16 7543 -126.0.0.0/11 17676 -126.32.0.0/12 17676 -126.48.0.0/14 17676 -126.53.0.0/16 17676 -126.54.0.0/15 17676 -126.56.0.0/13 17676 -126.64.0.0/12 17676 -126.80.0.0/13 17676 -126.88.0.0/14 17676 -126.92.0.0/15 17676 -126.94.0.0/16 17676 -126.96.0.0/11 17676 -126.128.0.0/13 17676 -126.140.0.0/15 17676 -126.142.0.0/16 17676 -126.145.0.0/16 17676 -126.146.0.0/15 17676 -126.148.0.0/14 17676 -126.152.0.0/14 17676 -126.156.0.0/15 17676 -126.159.0.0/16 17676 -126.161.0.0/16 17676 -126.162.0.0/15 17676 -126.164.0.0/15 17676 -126.168.0.0/15 17676 -126.171.0.0/16 17676 -126.176.0.0/13 17676 -126.186.0.0/15 17676 -126.188.0.0/14 17676 -126.192.0.0/13 17676 -126.200.0.0/14 17676 -126.204.0.0/15 17676 -126.207.0.0/16 17676 -126.208.0.0/14 17676 -126.212.0.0/15 17676 -126.215.0.0/16 17676 -126.216.0.0/13 17676 -126.224.0.0/14 17676 -126.228.0.0/15 17676 -126.230.0.0/16 17676 -126.232.0.0/13 17676 -126.240.0.0/13 17676 -126.248.0.0/16 17676 -126.250.0.0/16 17676 -126.251.0.0/19 131937 -126.251.32.0/21 131937 -126.251.40.0/22 55381 -126.251.44.0/23 55381 -126.252.0.0/16 17676 -126.255.0.0/16 17676 -128.0.1.0/24 9009 -128.0.2.0/24 56417 -128.0.3.0/24 62034 -128.0.8.0/21 8273 -128.0.16.0/22 43568 -128.0.20.0/23 43568 -128.0.22.0/24 43568 -128.0.23.0/24 201309 -128.0.24.0/21 41794 -128.0.34.0/23 6718 -128.0.36.0/22 6718 -128.0.40.0/24 8751 -128.0.41.0/24 50939 -128.0.42.0/23 205362 -128.0.44.0/24 60303 -128.0.45.0/24 60657 -128.0.46.0/23 3223 -128.0.48.0/22 60905 -128.0.52.0/24 198454 -128.0.53.0/24 60993 -128.0.54.0/24 50599 -128.0.55.0/24 48571 -128.0.56.0/24 60996 -128.0.57.0/24 60993 -128.0.58.0/23 9050 -128.0.60.0/22 203872 -128.0.66.0/23 58272 -128.0.68.0/23 50673 -128.0.70.0/24 8818 -128.0.71.0/24 201011 -128.0.72.0/22 198631 -128.0.76.0/23 198631 -128.0.78.0/24 198631 -128.0.79.0/24 203581 -128.0.96.0/21 42652 -128.0.104.0/23 51848 -128.0.106.0/24 198654 -128.0.112.0/22 199610 -128.0.116.0/24 62468 -128.0.117.0/24 132422 -128.0.118.0/24 207888 -128.0.119.0/24 132422 -128.0.120.0/23 208988 -128.0.122.0/23 56550 -128.0.124.0/22 56550 -128.0.128.0/20 25513 -128.0.144.0/21 59675 -128.0.152.0/23 59675 -128.0.154.0/24 59675 -128.0.156.0/22 203260 -128.0.160.0/21 196742 -128.0.168.0/23 1820 -128.0.170.0/24 41540 -128.0.171.0/24 1820 -128.0.172.0/22 1820 -128.0.176.0/20 30764 -128.0.192.0/21 51483 -128.0.200.0/21 6866 -128.0.208.0/20 6866 -128.0.224.0/19 6866 -128.1.0.0/19 21859 -128.1.32.0/24 3462 -128.1.33.0/24 21859 -128.1.34.0/23 21859 -128.1.36.0/24 4766 -128.1.37.0/24 3462 -128.1.38.0/23 135377 -128.1.40.0/23 135377 -128.1.42.0/24 21859 -128.1.43.0/24 135377 -128.1.44.0/24 135377 -128.1.45.0/24 3462 -128.1.46.0/23 135377 -128.1.48.0/23 135377 -128.1.50.0/24 3462 -128.1.51.0/24 21859 -128.1.52.0/22 21859 -128.1.56.0/22 21859 -128.1.60.0/23 21859 -128.1.62.0/24 21859 -128.1.63.0/24 3462 -128.1.64.0/21 21859 -128.1.72.0/22 21859 -128.1.76.0/24 4766 -128.1.77.0/24 21859 -128.1.78.0/24 21859 -128.1.79.0/24 135377 -128.1.80.0/20 21859 -128.1.96.0/22 21859 -128.1.100.0/24 21859 -128.1.101.0/24 3462 -128.1.102.0/24 3462 -128.1.103.0/24 21859 -128.1.104.0/21 21859 -128.1.112.0/24 21859 -128.1.113.0/24 209484 -128.1.114.0/23 21859 -128.1.116.0/22 21859 -128.1.120.0/21 21859 -128.1.128.0/23 21859 -128.1.130.0/24 21859 -128.1.131.0/24 135377 -128.1.132.0/22 135377 -128.1.136.0/23 135377 -128.1.138.0/24 135377 -128.1.139.0/24 21859 -128.1.140.0/22 21859 -128.1.144.0/20 21859 -128.1.160.0/19 21859 -128.1.192.0/18 21859 -128.2.0.0/16 9 -128.3.0.0/16 16 -128.4.0.0/16 2 -128.5.0.0/16 3389 -128.6.0.0/16 46 -128.7.0.0/16 680 -128.8.0.0/16 27 -128.9.0.0/20 4 -128.9.16.0/23 4 -128.9.18.0/24 4 -128.9.20.0/24 4 -128.9.30.0/23 4 -128.9.32.0/19 4 -128.9.64.0/18 4 -128.9.128.0/17 4 -128.10.0.0/16 17 -128.11.44.0/23 1814 -128.11.46.0/24 1814 -128.11.59.0/24 1811 -128.11.72.0/23 1811 -128.11.98.0/24 1811 -128.11.102.0/24 1811 -128.11.121.0/24 1811 -128.11.136.0/21 1811 -128.11.150.0/24 1814 -128.11.157.0/24 1811 -128.11.160.0/22 1814 -128.11.166.0/23 1814 -128.11.176.0/24 1814 -128.11.177.0/24 1815 -128.11.178.0/23 1815 -128.11.180.0/22 1815 -128.12.0.0/16 32 -128.14.0.0/17 21859 -128.14.128.0/18 21859 -128.14.192.0/19 21859 -128.14.224.0/21 135377 -128.14.232.0/22 135377 -128.14.236.0/23 135377 -128.14.238.0/24 3462 -128.14.239.0/24 135377 -128.14.240.0/21 21859 -128.14.248.0/22 21859 -128.14.252.0/23 21859 -128.14.254.0/23 209484 -128.15.0.0/16 45 -128.16.0.0/16 786 -128.17.0.0/16 14340 -128.18.0.0/16 264 -128.19.0.0/16 27064 -128.20.0.0/16 13 -128.22.0.0/16 17511 -128.23.0.0/16 13429 -128.26.9.0/24 27137 -128.26.15.0/24 27138 -128.26.16.0/23 27138 -128.26.18.0/24 310 -128.26.19.0/24 27138 -128.26.20.0/23 27138 -128.26.23.0/24 62010 -128.26.24.0/23 62010 -128.26.26.0/24 27138 -128.26.29.0/24 4021 -128.26.32.0/24 27139 -128.26.35.0/24 27137 -128.26.36.0/23 27137 -128.26.38.0/24 409 -128.26.39.0/24 27137 -128.26.41.0/24 4021 -128.26.43.0/24 4021 -128.26.50.0/24 4021 -128.26.51.0/24 27138 -128.26.53.0/24 4021 -128.26.71.0/24 27139 -128.26.72.0/23 4021 -128.26.76.0/24 4021 -128.26.94.0/24 27137 -128.26.210.0/24 310 -128.26.211.0/24 3474 -128.26.212.0/24 310 -128.26.213.0/24 3474 -128.26.214.0/24 310 -128.26.215.0/24 3474 -128.26.216.0/24 310 -128.26.217.0/24 3474 -128.26.218.0/24 310 -128.26.219.0/24 3474 -128.26.220.0/24 310 -128.26.221.0/24 3474 -128.26.234.0/24 27138 -128.26.244.0/24 27138 -128.27.0.0/16 17511 -128.28.0.0/16 2514 -128.29.0.0/16 5691 -128.30.0.0/15 3 -128.32.0.0/16 25 -128.33.0.0/16 11488 -128.34.0.0/16 22 -128.35.0.0/16 10879 -128.36.0.0/16 29 -128.37.0.0/16 27064 -128.38.0.0/16 37 -128.39.0.0/16 224 -128.40.0.0/16 786 -128.41.0.0/18 786 -128.41.128.0/17 55330 -128.42.0.0/16 8 -128.43.0.0/16 74 -128.44.0.0/21 5972 -128.44.8.0/22 5972 -128.44.12.0/24 27064 -128.44.13.0/24 5972 -128.44.14.0/23 5972 -128.44.16.0/21 5972 -128.44.24.0/22 1541 -128.44.28.0/23 5972 -128.44.32.0/20 5972 -128.44.48.0/21 5972 -128.44.56.0/22 5972 -128.44.60.0/22 1541 -128.44.64.0/20 5972 -128.44.80.0/22 5972 -128.44.88.0/21 5972 -128.44.96.0/19 5972 -128.44.160.0/21 27064 -128.44.168.0/21 5972 -128.44.176.0/21 1541 -128.44.184.0/22 1541 -128.44.188.0/22 5972 -128.44.196.0/22 5972 -128.44.200.0/21 5972 -128.44.208.0/20 5972 -128.44.240.0/21 5972 -128.44.248.0/23 5972 -128.45.0.0/16 24608 -128.46.0.0/16 17 -128.47.0.0/16 252 -128.48.0.0/16 11293 -128.49.0.0/16 22 -128.52.0.0/16 3 -128.53.0.0/16 2514 -128.54.0.0/16 7377 -128.55.0.0/16 2936 -128.57.0.0/20 4922 -128.57.16.0/20 264 -128.57.32.0/20 264 -128.57.48.0/20 17018 -128.57.186.0/24 24155 -128.58.0.0/16 72 -128.59.0.0/16 14 -128.60.0.0/16 48 -128.61.0.0/16 2637 -128.62.0.0/16 18 -128.63.0.0/16 13 -128.64.0.0/23 209 -128.64.2.0/24 209 -128.64.128.0/23 18798 -128.64.136.0/23 18798 -128.64.138.0/24 18798 -128.64.144.0/22 18798 -128.64.160.0/23 18798 -128.64.163.0/24 18798 -128.65.0.0/18 42772 -128.65.64.0/19 12440 -128.65.96.0/21 42010 -128.65.104.0/21 42560 -128.65.112.0/20 5602 -128.65.128.0/21 12930 -128.65.136.0/21 42516 -128.65.144.0/21 12886 -128.65.152.0/21 198144 -128.65.160.0/20 48592 -128.65.176.0/20 43754 -128.65.192.0/21 29222 -128.65.200.0/23 198102 -128.65.202.0/23 30848 -128.65.204.0/23 198102 -128.65.206.0/23 30848 -128.65.208.0/20 34309 -128.65.224.0/19 42580 -128.66.0.0/15 24608 -128.68.0.0/15 8402 -128.70.0.0/17 3216 -128.70.128.0/20 34038 -128.70.144.0/20 42110 -128.70.160.0/19 3216 -128.70.192.0/20 8402 -128.70.208.0/22 3216 -128.70.212.0/22 8402 -128.70.216.0/21 3216 -128.70.224.0/19 3216 -128.71.0.0/16 3216 -128.72.0.0/15 8402 -128.74.0.0/19 3216 -128.74.32.0/19 8402 -128.74.64.0/19 8402 -128.74.96.0/21 8402 -128.74.104.0/22 8402 -128.74.108.0/22 3216 -128.74.112.0/20 3216 -128.74.128.0/20 3216 -128.74.144.0/20 20533 -128.74.160.0/21 8402 -128.74.168.0/21 3216 -128.74.176.0/20 3216 -128.74.192.0/19 8402 -128.74.224.0/20 3216 -128.74.240.0/21 29125 -128.74.248.0/21 3216 -128.75.0.0/18 3253 -128.75.64.0/19 3253 -128.75.96.0/22 3253 -128.75.100.0/22 3216 -128.75.104.0/22 8402 -128.75.108.0/23 3253 -128.75.110.0/23 8402 -128.75.112.0/21 8402 -128.75.120.0/24 8402 -128.75.121.0/24 3253 -128.75.122.0/23 3253 -128.75.124.0/24 3253 -128.75.125.0/24 8402 -128.75.126.0/24 3253 -128.75.127.0/24 8402 -128.75.128.0/18 8402 -128.75.192.0/19 3216 -128.75.224.0/23 3216 -128.75.226.0/24 205084 -128.75.227.0/24 3216 -128.75.228.0/22 3216 -128.75.232.0/21 3216 -128.75.240.0/20 3216 -128.76.0.0/15 3292 -128.78.0.0/15 5410 -128.82.0.0/17 1201 -128.82.128.0/18 1201 -128.82.192.0/19 1201 -128.82.224.0/21 1201 -128.82.232.0/22 1201 -128.82.236.0/23 1201 -128.82.238.0/23 40151 -128.82.240.0/20 1201 -128.83.0.0/16 18 -128.84.0.0/16 26 -128.86.0.0/16 786 -128.87.0.0/16 158 -128.88.0.0/16 7430 -128.89.0.0/16 11488 -128.90.0.0/24 22363 -128.90.2.0/23 22363 -128.90.4.0/24 22363 -128.90.8.0/22 22363 -128.90.12.0/23 22363 -128.90.15.0/24 22363 -128.90.19.0/24 22363 -128.90.20.0/22 22363 -128.90.24.0/24 22363 -128.90.26.0/23 22363 -128.90.28.0/22 22363 -128.90.32.0/22 22363 -128.90.36.0/23 22363 -128.90.39.0/24 22363 -128.90.40.0/21 22363 -128.90.49.0/24 22363 -128.90.50.0/23 22363 -128.90.52.0/22 22363 -128.90.56.0/24 22363 -128.90.59.0/24 22363 -128.90.60.0/22 22363 -128.90.64.0/23 22363 -128.90.69.0/24 22363 -128.90.77.0/24 22363 -128.90.78.0/23 22363 -128.90.80.0/21 22363 -128.90.89.0/24 22363 -128.90.90.0/24 22363 -128.90.93.0/24 22363 -128.90.94.0/24 22363 -128.90.96.0/21 22363 -128.90.105.0/24 22363 -128.90.106.0/23 22363 -128.90.108.0/23 22363 -128.90.111.0/24 22363 -128.90.112.0/22 22363 -128.90.116.0/23 22363 -128.90.119.0/24 22363 -128.90.120.0/22 22363 -128.90.124.0/23 22363 -128.90.126.0/24 22363 -128.90.127.0/24 3900 -128.90.128.0/18 22363 -128.90.192.0/20 22363 -128.90.208.0/22 22363 -128.90.212.0/23 22363 -128.90.214.0/24 22363 -128.90.215.0/24 30094 -128.90.216.0/22 22363 -128.90.220.0/23 22363 -128.90.223.0/24 22363 -128.90.224.0/21 22363 -128.90.232.0/23 22363 -128.90.235.0/24 22363 -128.90.236.0/22 22363 -128.90.240.0/20 22363 -128.91.0.0/16 55 -128.92.0.0/19 20115 -128.92.32.0/20 20115 -128.92.48.0/21 20115 -128.92.64.0/21 20115 -128.92.72.0/24 62652 -128.92.73.0/24 20115 -128.92.74.0/23 20115 -128.92.76.0/22 20115 -128.92.80.0/20 20115 -128.92.96.0/19 20115 -128.92.128.0/17 20115 -128.93.0.0/16 2200 -128.94.0.0/16 8075 -128.95.0.0/16 73 -128.96.0.0/17 116 -128.96.128.0/18 116 -128.96.192.0/19 116 -128.96.224.0/22 116 -128.96.247.0/24 116 -128.96.248.0/21 116 -128.97.0.0/16 52 -128.98.0.0/16 24775 -128.100.0.0/16 239 -128.101.0.0/16 217 -128.102.0.0/16 270 -128.103.0.0/16 1742 -128.104.0.0/15 59 -128.106.0.0/21 3758 -128.106.8.0/23 9255 -128.106.10.0/23 3758 -128.106.12.0/22 3758 -128.106.16.0/20 3758 -128.106.32.0/19 3758 -128.106.64.0/18 9506 -128.106.128.0/17 9506 -128.107.0.0/16 109 -128.108.0.0/16 45090 -128.109.0.0/16 81 -128.110.0.0/16 17055 -128.111.0.0/16 131 -128.112.0.0/16 88 -128.113.0.0/16 91 -128.114.0.0/16 5739 -128.115.0.0/16 45 -128.116.0.0/17 22697 -128.116.128.0/17 35612 -128.117.0.0/16 194 -128.118.0.0/16 3999 -128.119.0.0/16 1249 -128.120.0.0/16 6192 -128.121.0.0/16 2914 -128.122.0.0/16 12 -128.123.0.0/16 40246 -128.124.0.0/16 21497 -128.125.0.0/16 47 -128.127.0.0/21 198240 -128.127.8.0/22 201463 -128.127.12.0/24 29596 -128.127.14.0/23 29596 -128.127.16.0/21 60032 -128.127.24.0/21 47474 -128.127.32.0/20 12871 -128.127.48.0/23 198139 -128.127.50.0/23 9100 -128.127.52.0/22 9100 -128.127.56.0/21 198128 -128.127.64.0/21 45031 -128.127.72.0/22 198129 -128.127.76.0/22 198157 -128.127.80.0/21 35745 -128.127.88.0/22 35745 -128.127.92.0/24 35745 -128.127.93.0/24 51305 -128.127.94.0/23 35745 -128.127.96.0/21 25592 -128.127.104.0/21 51430 -128.127.128.0/20 16347 -128.127.144.0/24 57401 -128.127.145.0/24 198774 -128.127.146.0/23 57401 -128.127.148.0/22 203872 -128.127.152.0/21 3257 -128.127.160.0/24 200072 -128.127.162.0/23 200072 -128.127.164.0/22 200072 -128.127.168.0/24 197912 -128.127.180.0/22 6696 -128.127.184.0/21 34244 -128.127.192.0/18 35753 -128.128.0.0/16 11499 -128.129.34.0/23 18563 -128.129.36.0/23 11568 -128.129.38.0/23 19086 -128.129.40.0/21 19086 -128.129.48.0/20 18563 -128.129.88.0/21 40289 -128.130.0.0/15 679 -128.132.0.0/16 668 -128.134.0.0/19 4766 -128.134.32.0/21 4766 -128.134.40.0/24 4766 -128.134.41.0/24 10088 -128.134.42.0/23 10088 -128.134.44.0/22 10088 -128.134.48.0/24 4766 -128.134.49.0/24 10088 -128.134.50.0/23 10088 -128.134.52.0/22 10088 -128.134.56.0/22 10088 -128.134.60.0/23 4766 -128.134.62.0/23 10088 -128.134.64.0/22 10088 -128.134.68.0/24 4766 -128.134.69.0/24 10088 -128.134.70.0/23 4766 -128.134.72.0/21 4766 -128.134.80.0/21 4766 -128.134.88.0/22 4766 -128.134.92.0/23 4766 -128.134.94.0/24 4766 -128.134.95.0/24 45381 -128.134.96.0/23 45381 -128.134.98.0/23 4766 -128.134.100.0/22 4766 -128.134.104.0/23 4766 -128.134.106.0/24 4766 -128.134.107.0/24 9696 -128.134.108.0/23 10060 -128.134.110.0/24 10060 -128.134.111.0/24 9321 -128.134.112.0/21 9321 -128.134.120.0/23 9321 -128.134.122.0/24 9321 -128.134.123.0/24 4766 -128.134.124.0/23 4766 -128.134.126.0/24 4766 -128.134.127.0/24 9525 -128.134.128.0/22 4766 -128.134.132.0/23 4766 -128.134.134.0/24 4766 -128.134.135.0/24 9684 -128.134.136.0/22 4766 -128.134.140.0/24 4766 -128.134.141.0/24 9321 -128.134.142.0/23 4766 -128.134.144.0/22 4766 -128.134.148.0/22 9526 -128.134.152.0/23 4766 -128.134.154.0/24 9634 -128.134.155.0/24 4766 -128.134.156.0/22 4766 -128.134.160.0/19 4766 -128.134.192.0/21 4766 -128.134.200.0/22 4766 -128.134.204.0/23 4766 -128.134.206.0/24 4766 -128.134.207.0/24 10060 -128.134.208.0/21 10060 -128.134.216.0/24 10060 -128.134.217.0/24 4766 -128.134.218.0/23 4766 -128.134.220.0/23 4766 -128.134.222.0/24 4766 -128.134.223.0/24 9696 -128.134.224.0/24 4766 -128.134.225.0/24 9684 -128.134.226.0/23 10060 -128.134.228.0/24 10060 -128.134.229.0/24 4766 -128.134.230.0/23 4766 -128.134.232.0/21 4766 -128.134.240.0/20 4766 -128.135.0.0/16 160 -128.136.0.0/23 19271 -128.136.2.0/24 19271 -128.136.3.0/24 13378 -128.136.4.0/22 19271 -128.136.8.0/21 19271 -128.136.16.0/20 19271 -128.136.32.0/20 19271 -128.136.48.0/21 19271 -128.136.56.0/24 393283 -128.136.57.0/24 19271 -128.136.58.0/24 19271 -128.136.59.0/24 396996 -128.136.60.0/22 19271 -128.136.64.0/21 19271 -128.136.72.0/22 19271 -128.136.76.0/24 19271 -128.136.77.0/24 393283 -128.136.78.0/23 19271 -128.136.80.0/20 19271 -128.136.96.0/19 19271 -128.136.128.0/21 19271 -128.136.136.0/24 19271 -128.136.137.0/24 17058 -128.136.138.0/23 19271 -128.136.140.0/22 19271 -128.136.144.0/20 19271 -128.136.160.0/19 19271 -128.136.192.0/18 19271 -128.137.132.0/23 2534 -128.137.134.0/24 2534 -128.138.0.0/16 104 -128.139.0.0/17 378 -128.139.128.0/18 378 -128.139.192.0/23 378 -128.139.194.0/24 8551 -128.139.195.0/24 378 -128.139.196.0/22 378 -128.139.200.0/21 378 -128.139.208.0/20 378 -128.139.224.0/19 378 -128.140.0.0/17 24940 -128.140.128.0/20 29286 -128.140.144.0/21 198111 -128.140.158.0/24 6866 -128.140.160.0/21 12714 -128.140.168.0/23 47764 -128.140.170.0/24 21051 -128.140.171.0/24 47764 -128.140.172.0/22 47764 -128.140.176.0/20 34674 -128.140.192.0/21 48475 -128.140.200.0/21 57365 -128.140.208.0/21 680 -128.140.216.0/22 60781 -128.140.220.0/22 25525 -128.140.224.0/21 5588 -128.140.232.0/21 197973 -128.140.240.0/21 42772 -128.140.248.0/22 42772 -128.140.252.0/23 42772 -128.140.254.0/24 205820 -128.140.255.0/24 42772 -128.141.0.0/16 513 -128.142.0.0/16 513 -128.143.0.0/16 225 -128.144.0.0/20 542 -128.144.28.0/24 542 -128.144.41.0/24 542 -128.144.48.0/20 542 -128.144.80.0/21 542 -128.144.90.0/23 542 -128.144.97.0/24 542 -128.144.100.0/24 542 -128.144.103.0/24 542 -128.144.156.0/24 542 -128.144.194.0/24 542 -128.144.200.0/24 542 -128.145.0.0/16 174 -128.146.0.0/16 159 -128.147.0.0/16 122 -128.148.0.0/16 11078 -128.149.0.0/16 127 -128.150.0.0/16 102 -128.151.0.0/16 20 -128.153.0.0/16 92 -128.154.0.0/17 270 -128.154.128.0/17 1749 -128.155.0.0/16 1254 -128.156.0.0/16 297 -128.157.0.0/16 270 -128.158.0.0/16 270 -128.159.0.0/16 1843 -128.160.0.0/17 668 -128.160.128.0/19 1772 -128.160.160.0/21 1772 -128.160.168.0/22 1772 -128.160.172.0/23 1772 -128.160.174.0/24 1539 -128.160.175.0/24 1772 -128.160.176.0/20 1772 -128.160.192.0/18 1772 -128.163.0.0/17 23162 -128.163.128.0/18 23162 -128.163.192.0/21 23162 -128.163.200.0/23 23162 -128.163.202.0/24 30700 -128.163.203.0/24 23162 -128.163.204.0/22 23162 -128.163.208.0/20 23162 -128.163.224.0/19 23162 -128.164.0.0/16 11039 -128.165.0.0/16 68 -128.167.96.0/21 1811 -128.167.105.0/24 1811 -128.167.118.0/24 1811 -128.167.121.0/24 1811 -128.167.128.0/22 1814 -128.167.132.0/23 1814 -128.167.134.0/24 1814 -128.167.140.0/22 1811 -128.167.144.0/22 1811 -128.167.200.0/23 1814 -128.167.255.0/24 1811 -128.168.64.0/18 36351 -128.169.0.0/16 16989 -128.170.0.0/16 7834 -128.171.0.0/16 6360 -128.172.0.0/16 16643 -128.173.0.0/16 1312 -128.174.0.0/16 38 -128.175.0.0/16 34 -128.176.0.0/16 680 -128.177.0.0/23 6461 -128.177.2.0/24 7170 -128.177.3.0/24 13344 -128.177.4.0/24 6461 -128.177.5.0/24 11135 -128.177.6.0/23 6461 -128.177.8.0/24 40590 -128.177.9.0/24 6461 -128.177.10.0/23 6461 -128.177.12.0/23 6461 -128.177.14.0/24 21534 -128.177.15.0/24 6461 -128.177.16.0/20 6461 -128.177.32.0/22 6461 -128.177.36.0/24 21534 -128.177.37.0/24 26476 -128.177.38.0/23 6461 -128.177.40.0/22 6461 -128.177.44.0/24 395279 -128.177.45.0/24 6461 -128.177.46.0/23 6461 -128.177.48.0/23 6461 -128.177.50.0/24 46864 -128.177.51.0/24 394837 -128.177.52.0/24 31998 -128.177.53.0/24 6461 -128.177.54.0/23 6461 -128.177.56.0/22 6461 -128.177.60.0/24 19753 -128.177.61.0/24 6461 -128.177.62.0/23 6461 -128.177.64.0/22 6461 -128.177.68.0/24 6461 -128.177.69.0/24 55110 -128.177.70.0/23 6461 -128.177.72.0/21 6461 -128.177.80.0/21 6461 -128.177.88.0/23 26020 -128.177.90.0/23 6461 -128.177.92.0/24 6461 -128.177.93.0/24 33321 -128.177.94.0/24 6461 -128.177.95.0/24 3257 -128.177.96.0/22 6461 -128.177.100.0/24 6461 -128.177.101.0/24 26878 -128.177.102.0/24 19755 -128.177.103.0/24 6461 -128.177.104.0/23 6461 -128.177.106.0/24 53344 -128.177.107.0/24 6461 -128.177.108.0/23 6461 -128.177.110.0/24 6461 -128.177.111.0/24 26664 -128.177.112.0/21 6461 -128.177.120.0/24 6461 -128.177.121.0/24 17025 -128.177.122.0/23 6461 -128.177.124.0/24 6461 -128.177.125.0/24 22616 -128.177.126.0/23 6461 -128.177.128.0/24 6461 -128.177.129.0/24 22616 -128.177.130.0/23 6461 -128.177.132.0/24 26447 -128.177.133.0/24 6461 -128.177.134.0/23 6461 -128.177.136.0/24 22616 -128.177.137.0/24 46667 -128.177.138.0/24 53533 -128.177.139.0/24 6461 -128.177.140.0/22 6461 -128.177.144.0/24 3457 -128.177.145.0/24 6461 -128.177.146.0/23 6461 -128.177.148.0/24 63036 -128.177.149.0/24 6461 -128.177.150.0/23 6461 -128.177.152.0/24 393544 -128.177.153.0/24 6461 -128.177.154.0/24 3457 -128.177.155.0/24 6461 -128.177.156.0/23 6461 -128.177.158.0/24 20310 -128.177.159.0/24 6461 -128.177.160.0/24 21734 -128.177.161.0/24 36180 -128.177.162.0/23 6461 -128.177.164.0/23 6461 -128.177.166.0/23 20940 -128.177.168.0/21 6461 -128.177.176.0/23 6461 -128.177.178.0/24 26344 -128.177.179.0/24 63147 -128.177.180.0/24 6461 -128.177.181.0/24 63296 -128.177.182.0/23 6461 -128.177.184.0/23 6461 -128.177.186.0/24 25755 -128.177.187.0/24 6461 -128.177.188.0/23 20940 -128.177.190.0/23 6461 -128.177.192.0/19 22452 -128.177.224.0/19 6461 -128.178.0.0/15 559 -128.180.0.0/16 6522 -128.181.0.0/16 394919 -128.182.0.0/18 1206 -128.182.64.0/18 1207 -128.182.128.0/17 1206 -128.183.0.0/16 1749 -128.184.0.0/16 7645 -128.185.0.0/16 7018 -128.186.0.0/16 2553 -128.187.0.0/16 6510 -128.189.0.0/20 271 -128.189.16.0/20 393249 -128.189.32.0/19 271 -128.189.64.0/18 393249 -128.189.128.0/17 393249 -128.190.0.0/18 1503 -128.190.64.0/20 1503 -128.190.80.0/21 1503 -128.190.88.0/23 1503 -128.190.90.0/23 1541 -128.190.92.0/22 1541 -128.190.96.0/23 1541 -128.190.98.0/23 1503 -128.190.100.0/22 1503 -128.190.104.0/21 1503 -128.190.112.0/20 1503 -128.190.128.0/18 1503 -128.190.192.0/19 1503 -128.190.224.0/21 1503 -128.190.232.0/22 1503 -128.190.236.0/23 1503 -128.190.238.0/24 1503 -128.190.239.0/24 1541 -128.190.240.0/20 1503 -128.191.136.0/24 17018 -128.191.174.0/23 3356 -128.191.238.0/24 3356 -128.191.240.0/20 3549 -128.192.0.0/16 36441 -128.193.0.0/16 4201 -128.194.0.0/16 3794 -128.195.0.0/16 299 -128.196.0.0/16 1706 -128.197.0.0/16 111 -128.198.0.0/16 396425 -128.199.32.0/19 14061 -128.199.64.0/18 14061 -128.199.128.0/17 14061 -128.200.0.0/16 299 -128.201.0.0/22 265926 -128.201.4.0/22 394474 -128.201.8.0/22 266603 -128.201.16.0/23 266637 -128.201.18.0/23 266604 -128.201.20.0/22 265740 -128.201.24.0/22 266627 -128.201.28.0/22 266611 -128.201.36.0/22 28098 -128.201.40.0/22 266651 -128.201.44.0/22 266616 -128.201.48.0/22 266640 -128.201.52.0/22 266628 -128.201.56.0/22 266636 -128.201.60.0/22 266652 -128.201.64.0/22 266634 -128.201.68.0/22 266617 -128.201.72.0/22 266618 -128.201.76.0/22 266623 -128.201.80.0/22 265741 -128.201.84.0/22 266620 -128.201.88.0/22 265745 -128.201.92.0/22 266621 -128.201.96.0/22 266646 -128.201.100.0/22 266624 -128.201.104.0/22 266625 -128.201.108.0/22 265771 -128.201.112.0/22 265721 -128.201.116.0/22 265743 -128.201.120.0/22 266639 -128.201.124.0/23 266649 -128.201.127.0/24 266649 -128.201.128.0/22 266629 -128.201.132.0/22 265744 -128.201.136.0/22 266630 -128.201.140.0/22 266631 -128.201.146.0/23 55082 -128.201.148.0/22 266632 -128.201.152.0/22 266633 -128.201.156.0/22 266635 -128.201.160.0/23 265762 -128.201.162.0/24 265762 -128.201.163.0/24 264668 -128.201.164.0/22 266647 -128.201.168.0/22 265746 -128.201.172.0/22 266643 -128.201.176.0/22 262375 -128.201.180.0/22 266644 -128.201.184.0/22 266645 -128.201.188.0/22 265896 -128.201.192.0/22 265886 -128.201.196.0/22 265897 -128.201.200.0/22 265997 -128.201.204.0/22 266648 -128.201.208.0/22 265901 -128.201.212.0/22 265902 -128.201.216.0/22 266650 -128.201.220.0/22 265892 -128.201.224.0/22 52280 -128.201.228.0/22 265898 -128.201.232.0/22 265934 -128.201.236.0/22 265749 -128.201.240.0/22 265906 -128.201.244.0/22 265885 -128.201.248.0/22 265887 -128.201.252.0/22 265888 -128.202.0.0/16 385 -128.203.0.0/16 2579 -128.204.0.0/18 12714 -128.204.128.0/19 44453 -128.204.160.0/19 42514 -128.204.192.0/20 62370 -128.204.208.0/21 8304 -128.204.216.0/22 57367 -128.204.220.0/23 57367 -128.204.223.0/24 57367 -128.204.224.0/20 29075 -128.204.240.0/20 35753 -128.205.0.0/16 3685 -128.206.0.0/16 26934 -128.208.0.0/16 73 -128.210.0.0/16 17 -128.211.0.0/17 17 -128.211.128.0/19 397511 -128.211.160.0/19 17 -128.211.192.0/18 17 -128.213.0.0/16 91 -128.214.0.0/16 1741 -128.216.0.0/20 409 -128.217.0.0/16 1843 -128.218.0.0/16 5653 -128.219.0.0/16 50 -128.220.0.0/16 5723 -128.221.192.0/24 12257 -128.221.195.0/24 12257 -128.221.204.0/24 12257 -128.221.208.0/20 12257 -128.221.224.0/20 12257 -128.223.0.0/16 3582 -128.224.251.0/24 3549 -128.224.252.0/24 812 -128.224.253.0/24 4983 -128.224.254.0/24 33544 -128.226.0.0/16 4190 -128.227.0.0/16 6356 -128.228.0.0/16 31822 -128.229.0.0/16 7281 -128.230.0.0/17 11872 -128.230.128.0/20 11872 -128.230.144.0/21 11872 -128.230.152.0/24 15046 -128.230.153.0/24 11872 -128.230.154.0/23 11872 -128.230.156.0/22 11872 -128.230.160.0/20 11872 -128.230.176.0/21 11872 -128.230.184.0/22 11872 -128.230.188.0/24 15046 -128.230.189.0/24 11872 -128.230.190.0/23 11872 -128.230.192.0/18 11872 -128.231.0.0/16 3527 -128.232.0.0/16 786 -128.233.0.0/16 22950 -128.234.0.0/16 25019 -128.235.0.0/16 4246 -128.236.0.0/16 385 -128.237.0.0/16 9 -128.238.0.0/16 54965 -128.239.0.0/16 11975 -128.240.0.0/16 786 -128.241.0.0/18 2914 -128.241.64.0/20 2914 -128.241.80.0/21 2914 -128.241.88.0/24 2914 -128.241.89.0/24 20940 -128.241.90.0/24 2914 -128.241.91.0/24 20940 -128.241.92.0/22 1412 -128.241.96.0/19 2914 -128.241.128.0/18 2914 -128.241.192.0/20 2914 -128.241.208.0/21 2914 -128.241.216.0/24 2914 -128.241.217.0/24 20940 -128.241.218.0/24 20940 -128.241.219.0/24 2914 -128.241.220.0/22 2914 -128.241.224.0/19 2914 -128.242.0.0/17 2914 -128.242.128.0/20 2914 -128.242.144.0/22 2914 -128.242.148.0/24 22576 -128.242.149.0/24 2914 -128.242.150.0/23 2914 -128.242.152.0/21 2914 -128.242.160.0/19 2914 -128.242.192.0/18 2914 -128.243.0.0/16 786 -128.244.0.0/16 77 -128.245.0.0/16 14340 -128.246.0.0/19 209781 -128.246.32.0/21 209781 -128.246.40.0/23 15495 -128.246.42.0/23 209781 -128.246.44.0/22 209781 -128.246.48.0/20 209781 -128.246.64.0/18 209781 -128.246.128.0/17 209781 -128.248.0.0/16 6200 -128.249.0.0/16 302 -128.250.0.0/16 10148 -128.252.0.0/16 2552 -128.253.0.0/16 26 -128.255.0.0/16 3676 -129.0.0.0/16 30992 -129.1.0.0/17 55194 -129.1.128.0/19 55194 -129.1.160.0/22 600 -129.1.164.0/22 55194 -129.1.168.0/21 55194 -129.1.176.0/20 55194 -129.1.192.0/18 55194 -129.2.0.0/16 27 -129.3.0.0/16 14433 -129.4.0.0/16 1906 -129.5.0.0/16 22742 -129.6.0.0/18 49 -129.6.64.0/19 49 -129.6.96.0/20 49 -129.6.112.0/24 10886 -129.6.113.0/24 49 -129.6.114.0/23 49 -129.6.116.0/22 49 -129.6.120.0/21 49 -129.6.128.0/17 49 -129.7.0.0/16 7276 -129.8.0.0/17 2037 -129.8.128.0/18 2037 -129.8.192.0/19 2037 -129.8.224.0/20 2037 -129.8.240.0/22 2037 -129.8.244.0/23 396465 -129.8.246.0/23 2037 -129.8.248.0/21 2037 -129.9.0.0/22 14852 -129.9.4.0/22 36067 -129.9.8.0/21 14852 -129.9.16.0/20 14852 -129.9.32.0/19 14852 -129.9.64.0/21 14852 -129.9.72.0/24 14852 -129.9.73.0/24 36067 -129.9.74.0/24 36067 -129.9.75.0/24 14852 -129.9.76.0/22 14852 -129.9.80.0/20 14852 -129.9.96.0/21 14852 -129.9.104.0/24 14852 -129.9.105.0/24 36067 -129.9.106.0/24 36067 -129.9.107.0/24 14852 -129.9.108.0/22 14852 -129.9.112.0/22 14852 -129.9.116.0/23 14852 -129.9.118.0/24 14852 -129.9.119.0/24 36067 -129.9.120.0/21 14852 -129.9.128.0/19 14852 -129.9.160.0/20 14852 -129.9.176.0/20 36067 -129.9.192.0/19 14852 -129.9.224.0/20 14852 -129.9.240.0/20 36067 -129.10.0.0/22 156 -129.10.4.0/23 156 -129.10.6.0/24 156 -129.10.7.0/24 3356 -129.10.8.0/21 156 -129.10.16.0/22 156 -129.10.20.0/23 156 -129.10.22.0/24 156 -129.10.23.0/24 3356 -129.10.24.0/21 156 -129.10.32.0/19 156 -129.10.64.0/18 156 -129.10.128.0/17 156 -129.11.0.0/16 786 -129.12.0.0/16 786 -129.13.0.0/16 34878 -129.15.0.0/16 25776 -129.16.0.0/16 2841 -129.18.0.0/16 36923 -129.19.0.0/22 12145 -129.19.4.0/23 12145 -129.19.6.0/24 31991 -129.19.7.0/24 12145 -129.19.8.0/21 12145 -129.19.16.0/20 12145 -129.19.32.0/19 12145 -129.19.64.0/18 14041 -129.19.128.0/20 54393 -129.19.144.0/22 14041 -129.19.148.0/23 14041 -129.19.150.0/23 13555 -129.19.152.0/21 14041 -129.19.160.0/23 14041 -129.19.162.0/24 14041 -129.19.163.0/24 65 -129.19.164.0/22 14041 -129.19.168.0/21 14041 -129.19.176.0/20 393869 -129.19.192.0/18 14041 -129.20.0.0/16 2200 -129.21.0.0/16 4385 -129.22.0.0/16 32666 -129.24.0.0/16 3388 -129.25.0.0/16 11834 -129.26.0.0/16 680 -129.27.0.0/16 1113 -129.28.0.0/16 45090 -129.29.0.0/16 1453 -129.31.0.0/16 786 -129.32.0.0/16 3778 -129.33.6.0/23 706 -129.33.26.0/24 2560 -129.33.32.0/20 19604 -129.33.48.0/22 19604 -129.33.52.0/24 19604 -129.33.53.0/24 3356 -129.33.54.0/23 19604 -129.33.56.0/21 19604 -129.33.64.0/19 18703 -129.33.96.0/22 19603 -129.33.100.0/23 19603 -129.33.102.0/23 14558 -129.33.104.0/21 19603 -129.33.112.0/20 19603 -129.33.131.0/24 7018 -129.33.132.0/24 27530 -129.33.133.0/24 2386 -129.33.138.0/23 36351 -129.33.140.0/24 706 -129.33.141.0/24 2560 -129.33.144.0/21 7018 -129.33.152.0/21 2560 -129.33.160.0/20 19152 -129.33.176.0/23 19152 -129.33.179.0/24 19152 -129.33.180.0/24 19152 -129.33.182.0/23 19152 -129.33.184.0/21 19152 -129.33.192.0/22 706 -129.33.196.0/23 706 -129.33.198.0/24 2560 -129.33.199.0/24 706 -129.33.200.0/23 2560 -129.33.202.0/24 2560 -129.33.203.0/24 706 -129.33.204.0/24 2560 -129.33.205.0/24 706 -129.33.206.0/23 706 -129.33.219.0/24 18703 -129.33.224.0/22 14904 -129.33.228.0/22 2140 -129.33.237.0/24 15006 -129.33.239.0/24 19795 -129.33.240.0/24 19795 -129.33.243.0/24 36351 -129.33.246.0/23 706 -129.33.248.0/21 706 -129.34.0.0/16 1747 -129.35.24.0/23 3215 -129.35.26.0/24 15776 -129.35.27.0/24 15404 -129.35.31.0/24 60616 -129.35.62.0/23 36351 -129.35.64.0/19 12980 -129.35.96.0/20 12980 -129.35.112.0/20 14926 -129.35.144.0/21 12980 -129.35.152.0/22 12980 -129.35.156.0/24 200138 -129.35.157.0/24 36351 -129.35.158.0/23 36351 -129.35.160.0/20 12980 -129.35.176.0/22 36351 -129.35.183.0/24 12980 -129.35.188.0/24 2686 -129.35.189.0/24 1786 -129.35.190.0/23 36351 -129.35.192.0/20 12980 -129.35.208.0/23 36351 -129.35.210.0/24 36351 -129.35.212.0/24 36351 -129.35.216.0/21 12980 -129.35.224.0/24 2686 -129.35.225.0/24 39298 -129.35.226.0/23 36351 -129.35.228.0/23 12980 -129.35.230.0/23 8373 -129.35.232.0/22 12980 -129.35.236.0/22 36351 -129.35.241.0/24 3257 -129.36.0.0/16 2686 -129.37.0.0/17 7018 -129.37.128.0/21 7018 -129.37.136.0/21 2685 -129.37.144.0/20 2685 -129.37.160.0/20 2685 -129.37.176.0/22 2685 -129.37.180.0/22 7018 -129.37.184.0/21 7018 -129.37.192.0/18 7018 -129.39.176.0/24 7004 -129.41.44.0/24 13232 -129.41.46.0/23 17390 -129.41.64.0/21 7018 -129.41.76.0/23 36351 -129.41.78.0/24 1221 -129.41.80.0/22 14912 -129.41.84.0/23 2538 -129.41.86.0/23 17390 -129.41.88.0/23 36351 -129.41.90.0/24 8220 -129.41.91.0/24 6327 -129.41.95.0/24 706 -129.41.128.0/19 36351 -129.41.164.0/24 763 -129.41.166.0/24 18703 -129.41.167.0/24 36351 -129.41.168.0/22 2002 -129.41.172.0/23 19795 -129.41.174.0/23 36351 -129.41.176.0/24 2687 -129.41.178.0/23 23257 -129.41.180.0/23 36351 -129.41.182.0/24 3356 -129.41.183.0/24 36351 -129.41.184.0/22 36351 -129.41.188.0/24 3356 -129.41.189.0/24 36351 -129.41.192.0/20 26062 -129.41.209.0/24 7018 -129.41.216.0/24 2386 -129.41.217.0/24 19604 -129.41.220.0/23 26607 -129.41.222.0/24 36351 -129.41.223.0/24 2688 -129.41.224.0/19 36351 -129.42.0.0/24 2140 -129.42.1.0/24 16807 -129.42.2.0/23 16807 -129.42.4.0/22 16807 -129.42.8.0/24 16807 -129.42.9.0/24 2140 -129.42.10.0/23 16807 -129.42.12.0/24 2140 -129.42.13.0/24 16807 -129.42.14.0/23 16807 -129.42.16.0/22 16807 -129.42.20.0/23 16807 -129.42.22.0/24 16807 -129.42.23.0/24 2140 -129.42.24.0/23 2140 -129.42.26.0/23 16807 -129.42.28.0/23 16807 -129.42.30.0/23 2140 -129.42.32.0/23 16807 -129.42.34.0/23 2140 -129.42.36.0/23 2140 -129.42.38.0/24 16807 -129.42.39.0/24 2140 -129.42.40.0/23 2140 -129.42.42.0/23 16807 -129.42.44.0/23 16807 -129.42.46.0/23 2140 -129.42.48.0/22 16807 -129.42.52.0/23 2140 -129.42.54.0/23 16807 -129.42.56.0/23 16807 -129.42.58.0/23 2140 -129.42.60.0/22 16807 -129.42.160.0/24 706 -129.42.161.0/24 10337 -129.42.162.0/23 10337 -129.42.192.0/22 12169 -129.42.196.0/24 12169 -129.42.198.0/23 12169 -129.42.200.0/22 12169 -129.42.204.0/23 12169 -129.42.206.0/24 12169 -129.42.208.0/21 706 -129.43.0.0/16 6150 -129.44.0.0/17 701 -129.44.128.0/18 701 -129.44.192.0/19 701 -129.44.240.0/20 701 -129.45.0.0/17 327931 -129.46.0.0/18 11030 -129.46.64.0/19 11030 -129.46.96.0/19 33198 -129.46.128.0/18 11030 -129.46.192.0/19 11030 -129.46.224.0/21 11030 -129.46.232.0/23 394302 -129.46.234.0/23 11030 -129.46.236.0/22 11030 -129.46.240.0/20 11030 -129.48.0.0/16 132 -129.49.0.0/16 5719 -129.51.3.0/24 385 -129.51.5.0/24 385 -129.51.100.0/24 385 -129.52.0.0/16 132 -129.53.0.0/16 385 -129.54.0.0/16 385 -129.55.0.0/17 63 -129.55.128.0/20 63 -129.55.144.0/22 63 -129.55.148.0/23 63 -129.55.150.0/24 209 -129.55.151.0/24 63 -129.55.152.0/21 63 -129.55.160.0/19 63 -129.55.192.0/18 63 -129.56.0.0/16 327952 -129.57.0.0/16 6406 -129.59.0.0/16 7212 -129.60.0.0/16 37918 -129.61.0.0/16 385 -129.62.0.0/16 30674 -129.63.0.0/16 46905 -129.64.0.0/16 10561 -129.65.0.0/16 7960 -129.66.0.0/16 3464 -129.67.0.0/16 786 -129.68.0.0/16 14529 -129.69.0.0/16 553 -129.70.0.0/16 680 -129.71.0.0/18 7925 -129.71.64.0/20 7925 -129.71.80.0/21 7925 -129.71.88.0/23 7925 -129.71.90.0/24 23361 -129.71.91.0/24 7925 -129.71.92.0/22 7925 -129.71.96.0/19 7925 -129.71.128.0/17 7925 -129.72.0.0/16 2902 -129.74.0.0/16 693 -129.77.0.0/16 14607 -129.78.0.0/16 23719 -129.79.0.0/16 87 -129.80.0.0/19 792 -129.80.224.0/19 792 -129.81.0.0/16 10349 -129.82.0.0/16 12145 -129.83.0.0/16 5691 -129.85.0.0/16 98 -129.86.0.0/16 26577 -129.88.0.0/16 1942 -129.89.0.0/16 7050 -129.91.0.0/20 7160 -129.91.16.0/21 7160 -129.91.31.0/24 7160 -129.91.32.0/21 7160 -129.91.42.0/24 21621 -129.91.44.0/24 393773 -129.91.48.0/20 7160 -129.91.64.0/18 7160 -129.91.176.0/20 7160 -129.91.220.0/22 7160 -129.91.224.0/19 7160 -129.92.0.0/16 668 -129.93.0.0/16 7896 -129.94.0.0/16 23859 -129.95.100.0/24 11995 -129.95.128.0/17 11995 -129.96.0.0/16 7575 -129.97.0.0/16 12093 -129.98.0.0/16 17324 -129.99.0.0/16 10343 -129.100.0.0/16 823 -129.101.0.0/17 11808 -129.101.128.0/18 11808 -129.101.192.0/19 11808 -129.101.224.0/20 11808 -129.101.240.0/21 11808 -129.101.248.0/24 11808 -129.101.249.0/24 46435 -129.101.250.0/23 11808 -129.101.252.0/22 11808 -129.102.0.0/16 2200 -129.103.170.0/24 1221 -129.104.0.0/16 2200 -129.105.0.0/16 103 -129.106.0.0/16 5707 -129.107.0.0/16 18515 -129.108.0.0/16 16461 -129.109.0.0/16 14373 -129.110.0.0/16 20162 -129.111.0.0/16 26971 -129.112.0.0/16 13998 -129.113.0.0/16 11481 -129.114.0.0/17 32093 -129.114.128.0/17 14104 -129.115.0.0/16 27594 -129.116.0.0/16 18 -129.117.0.0/16 3354 -129.118.0.0/16 10421 -129.119.0.0/16 1832 -129.120.0.0/16 589 -129.121.0.0/17 62729 -129.121.128.0/20 62729 -129.121.160.0/19 62729 -129.121.192.0/19 62729 -129.121.224.0/20 62729 -129.122.0.0/18 327947 -129.122.64.0/18 49902 -129.122.128.0/17 37645 -129.123.0.0/16 26046 -129.125.0.0/16 1103 -129.126.0.0/17 17547 -129.126.128.0/18 17547 -129.126.192.0/20 17547 -129.126.208.0/23 4773 -129.126.210.0/23 17547 -129.126.212.0/22 17547 -129.126.216.0/21 17547 -129.126.224.0/19 17547 -129.127.0.0/16 1851 -129.128.0.0/16 3359 -129.129.0.0/16 559 -129.130.0.0/16 2701 -129.132.0.0/16 559 -129.133.0.0/16 167 -129.134.0.0/17 32934 -129.134.128.0/22 63293 -129.134.132.0/24 63293 -129.134.135.0/24 63293 -129.134.136.0/24 63293 -129.134.144.0/24 63293 -129.134.148.0/23 63293 -129.134.192.0/23 34825 -129.135.0.0/16 6591 -129.137.0.0/16 20126 -129.138.0.0/16 17153 -129.139.0.0/17 83 -129.139.128.0/18 83 -129.139.192.0/24 83 -129.139.193.0/24 1541 -129.139.194.0/23 83 -129.139.196.0/22 83 -129.139.200.0/21 83 -129.139.208.0/20 83 -129.139.224.0/19 83 -129.140.0.0/23 37440 -129.141.16.0/20 385 -129.141.32.0/19 385 -129.141.64.0/19 385 -129.141.96.0/20 385 -129.141.176.0/20 385 -129.141.192.0/19 385 -129.142.0.0/16 9158 -129.143.0.0/16 553 -129.144.0.0/16 7160 -129.145.0.0/21 7160 -129.145.8.0/22 46558 -129.145.12.0/22 7160 -129.145.16.0/21 7160 -129.145.24.0/23 7160 -129.145.26.0/24 7160 -129.145.28.0/23 7160 -129.145.34.0/23 3457 -129.145.39.0/24 4192 -129.145.64.0/21 21621 -129.145.72.0/24 3457 -129.145.76.0/22 7160 -129.145.120.0/21 7160 -129.145.128.0/22 7160 -129.145.132.0/23 7160 -129.145.134.0/24 7160 -129.145.135.0/24 43894 -129.145.136.0/21 7160 -129.145.144.0/20 7160 -129.145.160.0/19 7160 -129.145.192.0/18 7160 -129.146.0.0/16 31898 -129.148.0.0/19 792 -129.149.0.0/16 7160 -129.150.0.0/21 7160 -129.150.8.0/22 7160 -129.150.12.0/23 7160 -129.150.14.0/24 4192 -129.150.15.0/24 7160 -129.150.16.0/20 7160 -129.150.32.0/19 7160 -129.150.64.0/18 7160 -129.150.128.0/17 7160 -129.151.0.0/16 7160 -129.152.32.0/20 7160 -129.152.60.0/22 7160 -129.152.64.0/19 7160 -129.152.128.0/17 7160 -129.154.0.0/21 7160 -129.154.8.0/24 63295 -129.154.9.0/24 7160 -129.154.10.0/23 7160 -129.154.12.0/22 7160 -129.154.16.0/20 7160 -129.154.32.0/19 7160 -129.154.64.0/18 7160 -129.154.128.0/17 7160 -129.155.0.0/18 792 -129.156.0.0/16 7160 -129.157.0.0/19 7160 -129.157.56.0/21 7160 -129.157.64.0/19 11479 -129.157.112.0/20 7160 -129.157.128.0/19 7160 -129.157.160.0/21 7160 -129.157.168.0/22 7160 -129.157.172.0/23 7160 -129.157.174.0/24 7160 -129.157.175.0/24 14506 -129.157.176.0/20 7160 -129.157.192.0/18 7160 -129.158.0.0/21 7160 -129.158.8.0/24 7160 -129.158.9.0/24 14506 -129.158.10.0/23 7160 -129.158.12.0/22 7160 -129.158.16.0/20 7160 -129.158.32.0/19 7160 -129.158.64.0/18 7160 -129.158.128.0/17 7160 -129.159.0.0/16 7160 -129.161.0.0/16 91 -129.162.0.0/16 6481 -129.164.0.0/16 297 -129.165.0.0/16 1701 -129.169.0.0/16 786 -129.170.0.0/16 10755 -129.171.0.0/16 4511 -129.173.0.0/16 8111 -129.174.0.0/16 11279 -129.175.0.0/16 2269 -129.176.0.0/16 7973 -129.177.0.0/16 224 -129.178.0.0/16 44320 -129.179.0.0/16 78 -129.180.0.0/16 24101 -129.181.0.0/17 3215 -129.181.128.0/18 3215 -129.181.192.0/20 3215 -129.181.208.0/21 3320 -129.181.216.0/22 3320 -129.181.220.0/22 3215 -129.181.224.0/19 3215 -129.182.0.0/15 3215 -129.184.0.0/16 3215 -129.185.0.0/20 3215 -129.185.16.0/24 29063 -129.185.17.0/24 28685 -129.185.24.0/24 6 -129.185.25.0/24 3215 -129.185.26.0/23 3215 -129.185.29.0/24 3215 -129.185.30.0/23 6 -129.185.32.0/22 6 -129.185.64.0/20 16128 -129.185.112.0/23 201479 -129.185.160.0/19 21150 -129.185.192.0/19 3215 -129.186.0.0/16 2698 -129.187.0.0/16 12816 -129.188.0.0/16 19773 -129.190.0.0/16 89 -129.191.0.0/16 4192 -129.192.0.0/21 158 -129.192.8.0/24 158 -129.192.9.0/24 28852 -129.192.10.0/23 34953 -129.192.12.0/22 158 -129.192.16.0/23 12357 -129.192.18.0/23 158 -129.192.20.0/22 158 -129.192.24.0/21 158 -129.192.32.0/24 41612 -129.192.33.0/24 158 -129.192.34.0/23 158 -129.192.36.0/22 20969 -129.192.40.0/21 158 -129.192.48.0/20 158 -129.192.64.0/22 395592 -129.192.68.0/22 29518 -129.192.72.0/24 158 -129.192.73.0/24 395592 -129.192.74.0/23 395592 -129.192.76.0/24 158 -129.192.77.0/24 395592 -129.192.78.0/23 395592 -129.192.80.0/22 29518 -129.192.84.0/22 158 -129.192.88.0/21 158 -129.192.96.0/24 35605 -129.192.97.0/24 28852 -129.192.98.0/24 28852 -129.192.100.0/22 158 -129.192.104.0/21 158 -129.192.128.0/24 8147 -129.192.129.0/24 32094 -129.192.130.0/23 8147 -129.192.132.0/22 8147 -129.192.136.0/23 8147 -129.192.138.0/24 8147 -129.192.139.0/24 32094 -129.192.140.0/22 8147 -129.192.144.0/22 8147 -129.192.148.0/23 32094 -129.192.150.0/23 8147 -129.192.152.0/21 8147 -129.192.160.0/21 8147 -129.192.168.0/24 32094 -129.192.169.0/24 3356 -129.192.170.0/23 3356 -129.192.172.0/24 32094 -129.192.173.0/24 8147 -129.192.174.0/23 8147 -129.192.176.0/22 8147 -129.192.180.0/23 395592 -129.192.182.0/24 395592 -129.192.183.0/24 3356 -129.192.184.0/24 8147 -129.192.185.0/24 36274 -129.192.186.0/23 8147 -129.192.188.0/24 395592 -129.192.189.0/24 3356 -129.192.190.0/23 8147 -129.192.192.0/24 6503 -129.192.196.0/23 395592 -129.192.198.0/24 395592 -129.192.200.0/23 4766 -129.192.202.0/24 17819 -129.192.208.0/23 7474 -129.192.211.0/24 7474 -129.192.240.0/24 134237 -129.192.242.0/23 45909 -129.193.0.0/16 1906 -129.194.0.0/15 559 -129.196.0.0/16 16435 -129.198.0.0/16 385 -129.199.0.0/16 2200 -129.204.0.0/16 45090 -129.205.0.0/19 37063 -129.205.32.0/19 37497 -129.205.64.0/20 37628 -129.205.96.0/20 37148 -129.205.112.0/23 37148 -129.205.114.0/24 37148 -129.205.116.0/22 37148 -129.205.124.0/24 37148 -129.205.128.0/18 37353 -129.205.192.0/18 37678 -129.206.0.0/16 553 -129.207.0.0/16 1970 -129.208.0.0/16 25019 -129.210.0.0/16 26488 -129.211.0.0/16 45090 -129.212.0.0/16 11363 -129.213.0.0/17 31898 -129.213.128.0/18 31898 -129.213.192.0/20 31898 -129.213.208.0/21 31898 -129.213.216.0/22 31898 -129.213.220.0/22 46558 -129.213.224.0/21 46558 -129.213.232.0/21 31898 -129.213.240.0/20 46558 -129.214.1.0/24 14886 -129.215.0.0/16 786 -129.217.0.0/16 680 -129.219.0.0/16 2900 -129.220.0.0/19 15009 -129.220.32.0/20 15009 -129.220.48.0/20 25746 -129.220.64.0/19 25746 -129.220.160.0/19 15009 -129.220.192.0/20 25746 -129.220.224.0/19 6071 -129.221.0.0/21 24126 -129.221.9.0/24 24126 -129.221.10.0/23 24126 -129.221.12.0/22 24126 -129.221.22.0/23 24126 -129.221.28.0/22 24126 -129.221.32.0/21 24126 -129.221.40.0/22 24126 -129.221.47.0/24 24126 -129.221.48.0/21 24126 -129.221.58.0/24 24126 -129.221.60.0/22 24126 -129.221.80.0/20 24126 -129.221.144.0/22 6072 -129.221.152.0/23 6072 -129.221.156.0/22 6072 -129.221.160.0/21 6072 -129.221.168.0/22 24126 -129.221.173.0/24 24126 -129.221.182.0/24 202219 -129.221.186.0/23 202219 -129.221.190.0/24 202219 -129.221.192.0/24 202219 -129.221.224.0/20 24126 -129.221.248.0/23 6072 -129.222.0.0/19 6071 -129.222.32.0/20 2021 -129.222.48.0/21 6071 -129.222.56.0/24 2021 -129.222.57.0/24 6071 -129.222.58.0/23 6071 -129.222.60.0/22 2021 -129.222.64.0/22 6071 -129.222.68.0/24 2021 -129.222.69.0/24 6071 -129.222.70.0/24 6071 -129.222.71.0/24 2021 -129.222.72.0/23 2021 -129.222.74.0/24 2021 -129.222.75.0/24 6071 -129.222.76.0/23 6071 -129.222.78.0/23 2021 -129.222.80.0/21 6071 -129.222.88.0/23 6071 -129.222.90.0/23 2021 -129.222.92.0/22 6071 -129.222.96.0/19 6071 -129.222.128.0/20 6071 -129.222.144.0/21 6071 -129.222.152.0/22 6071 -129.222.156.0/22 2021 -129.222.160.0/22 6071 -129.222.164.0/23 2021 -129.222.166.0/23 6071 -129.222.168.0/21 6071 -129.222.176.0/20 2021 -129.222.192.0/20 2021 -129.222.208.0/22 6071 -129.222.212.0/23 6071 -129.222.214.0/23 2021 -129.222.216.0/23 2021 -129.222.218.0/23 6071 -129.222.220.0/22 2021 -129.222.224.0/20 6071 -129.222.240.0/24 2021 -129.222.241.0/24 6071 -129.222.242.0/24 2021 -129.222.243.0/24 6071 -129.222.244.0/24 2021 -129.222.245.0/24 6071 -129.222.246.0/23 6071 -129.222.248.0/24 2021 -129.222.249.0/24 6071 -129.222.250.0/23 6071 -129.222.252.0/23 6071 -129.222.254.0/24 6071 -129.222.255.0/24 2021 -129.223.0.0/18 24126 -129.223.64.0/19 24126 -129.223.96.0/19 18021 -129.223.131.0/24 24126 -129.223.160.0/19 24126 -129.223.192.0/19 24126 -129.223.224.0/20 24126 -129.223.240.0/21 24126 -129.223.248.0/22 24126 -129.223.252.0/23 24126 -129.223.254.0/24 4812 -129.223.255.0/24 24126 -129.224.0.0/15 6071 -129.226.0.0/16 132203 -129.227.0.0/18 21859 -129.227.64.0/19 21859 -129.227.96.0/23 21859 -129.227.98.0/24 21859 -129.227.100.0/22 21859 -129.227.104.0/21 21859 -129.227.112.0/20 21859 -129.227.128.0/21 21859 -129.227.136.0/22 21859 -129.227.140.0/23 21859 -129.227.142.0/24 133865 -129.227.143.0/24 135377 -129.227.144.0/20 21859 -129.227.160.0/19 21859 -129.227.192.0/18 21859 -129.228.0.0/21 7256 -129.228.8.0/23 7256 -129.228.128.0/17 6102 -129.229.0.0/16 668 -129.230.17.0/24 13791 -129.230.47.0/24 2914 -129.230.176.0/23 2535 -129.230.178.0/24 2535 -129.230.184.0/21 15753 -129.230.192.0/21 2535 -129.230.200.0/24 613 -129.230.204.0/23 2535 -129.230.224.0/22 2535 -129.230.228.0/23 15753 -129.230.230.0/23 2535 -129.230.236.0/22 15753 -129.230.240.0/24 613 -129.230.243.0/24 613 -129.230.244.0/22 15752 -129.230.248.0/21 2535 -129.232.0.0/17 33567 -129.232.128.0/17 37153 -129.233.0.0/17 5501 -129.233.128.0/18 680 -129.233.192.0/21 5501 -129.233.200.0/23 200943 -129.233.202.0/24 200943 -129.233.203.0/24 5501 -129.233.204.0/22 5501 -129.233.208.0/23 12643 -129.233.210.0/24 680 -129.233.211.0/24 9063 -129.233.212.0/24 5501 -129.233.213.0/24 47610 -129.233.214.0/23 5501 -129.233.216.0/24 16097 -129.233.217.0/24 28714 -129.233.218.0/23 5501 -129.233.220.0/22 5501 -129.233.224.0/19 5501 -129.234.0.0/16 786 -129.236.0.0/16 14 -129.237.0.0/16 2496 -129.238.0.0/16 385 -129.240.0.0/15 224 -129.242.0.0/16 224 -129.244.0.0/18 8036 -129.244.64.0/19 8036 -129.244.96.0/22 8036 -129.244.100.0/23 8036 -129.244.102.0/24 8036 -129.244.103.0/24 5078 -129.244.104.0/24 5078 -129.244.105.0/24 8036 -129.244.106.0/24 5078 -129.244.107.0/24 8036 -129.244.108.0/22 8036 -129.244.112.0/20 8036 -129.244.128.0/17 8036 -129.246.0.0/16 166 -129.247.0.0/16 680 -129.249.0.0/16 2497 -129.250.0.0/16 2914 -129.251.1.0/24 27064 -129.251.3.0/24 27064 -129.251.7.0/24 27064 -129.251.17.0/24 27064 -129.251.19.0/24 27064 -129.251.23.0/24 27064 -129.251.26.0/24 27064 -129.251.28.0/24 27064 -129.251.30.0/23 27064 -129.251.35.0/24 27064 -129.251.41.0/24 27064 -129.251.44.0/24 27064 -129.251.50.0/24 27064 -129.251.52.0/24 27064 -129.251.55.0/24 27064 -129.251.61.0/24 27064 -129.251.66.0/24 27064 -129.251.72.0/24 27064 -129.251.80.0/24 27064 -129.251.91.0/24 27064 -129.251.98.0/24 27064 -129.251.109.0/24 27064 -129.251.113.0/24 27064 -129.252.0.0/16 12005 -129.253.12.0/22 33045 -129.253.54.0/23 22332 -129.253.56.0/23 22332 -129.253.174.0/24 33045 -129.253.175.0/24 22332 -129.253.176.0/24 22332 -129.253.177.0/24 33045 -129.253.178.0/23 22332 -129.253.180.0/22 22332 -129.253.240.0/21 22332 -129.254.0.0/16 3748 -129.255.0.0/16 3676 -130.0.0.0/21 6908 -130.0.8.0/21 41997 -130.0.20.0/23 47309 -130.0.24.0/21 57388 -130.0.32.0/19 6876 -130.0.64.0/22 33917 -130.0.68.0/23 1764 -130.0.70.0/24 1764 -130.0.71.0/24 207791 -130.0.72.0/21 42442 -130.0.80.0/21 61097 -130.0.92.0/22 200548 -130.0.96.0/19 49112 -130.0.128.0/18 30722 -130.0.192.0/21 197914 -130.0.200.0/21 51701 -130.0.208.0/21 199237 -130.0.216.0/21 12714 -130.0.225.0/24 39470 -130.0.226.0/23 39470 -130.0.230.0/24 39470 -130.0.232.0/21 15626 -130.0.240.0/20 29256 -130.13.0.0/17 3909 -130.14.0.0/16 70 -130.15.0.0/16 31983 -130.16.0.0/20 367 -130.16.16.0/23 6041 -130.16.18.0/23 367 -130.16.20.0/23 6041 -130.16.22.0/23 367 -130.16.24.0/24 367 -130.16.25.0/24 6041 -130.16.26.0/23 6041 -130.16.28.0/22 367 -130.16.32.0/23 367 -130.16.34.0/24 6041 -130.16.35.0/24 367 -130.16.36.0/22 367 -130.16.40.0/24 367 -130.16.41.0/24 6040 -130.16.42.0/24 367 -130.16.43.0/24 6040 -130.16.44.0/24 367 -130.16.45.0/24 6040 -130.16.46.0/24 6040 -130.16.47.0/24 367 -130.16.48.0/20 27087 -130.16.64.0/24 367 -130.16.65.0/24 27079 -130.16.66.0/23 367 -130.16.68.0/22 367 -130.16.72.0/21 367 -130.16.80.0/20 367 -130.16.96.0/20 6041 -130.16.112.0/24 6042 -130.16.113.0/24 367 -130.16.114.0/23 367 -130.16.116.0/22 367 -130.16.120.0/22 6042 -130.16.124.0/22 367 -130.16.128.0/18 6039 -130.16.192.0/20 6039 -130.16.208.0/21 6039 -130.16.216.0/21 367 -130.16.224.0/21 367 -130.16.232.0/24 27080 -130.16.233.0/24 367 -130.16.234.0/23 367 -130.16.236.0/23 367 -130.16.238.0/23 27080 -130.16.240.0/23 745 -130.16.242.0/24 745 -130.16.243.0/24 367 -130.16.244.0/22 367 -130.16.248.0/21 367 -130.17.0.0/23 2152 -130.17.2.0/24 396465 -130.17.3.0/24 2152 -130.17.4.0/22 2152 -130.17.8.0/21 2152 -130.17.16.0/20 2152 -130.17.32.0/19 2152 -130.17.64.0/18 2152 -130.17.128.0/17 2152 -130.18.0.0/16 10546 -130.19.0.0/16 2013 -130.20.0.0/16 3428 -130.22.0.0/24 721 -130.22.1.0/24 564 -130.22.2.0/23 721 -130.22.4.0/22 721 -130.22.8.0/21 721 -130.22.16.0/22 721 -130.22.20.0/24 721 -130.22.21.0/24 564 -130.22.22.0/24 564 -130.22.23.0/24 721 -130.22.24.0/23 721 -130.22.26.0/24 721 -130.22.27.0/24 564 -130.22.28.0/22 721 -130.22.32.0/23 721 -130.22.34.0/23 564 -130.22.36.0/22 721 -130.22.40.0/24 721 -130.22.41.0/24 564 -130.22.42.0/24 564 -130.22.43.0/24 721 -130.22.44.0/23 721 -130.22.46.0/24 721 -130.22.47.0/24 564 -130.22.48.0/21 27064 -130.22.56.0/22 721 -130.22.60.0/23 721 -130.22.62.0/24 721 -130.22.63.0/24 27064 -130.22.64.0/23 27064 -130.22.66.0/24 27064 -130.22.67.0/24 721 -130.22.68.0/22 721 -130.22.72.0/21 721 -130.22.80.0/20 721 -130.22.96.0/22 564 -130.22.100.0/23 564 -130.22.102.0/24 564 -130.22.103.0/24 721 -130.22.104.0/21 564 -130.22.112.0/20 564 -130.22.128.0/24 564 -130.22.129.0/24 721 -130.22.130.0/23 721 -130.22.132.0/22 721 -130.22.136.0/21 721 -130.22.144.0/21 27064 -130.22.152.0/21 721 -130.22.160.0/20 721 -130.22.176.0/22 721 -130.22.180.0/22 27064 -130.22.184.0/21 27064 -130.22.192.0/20 721 -130.22.208.0/21 721 -130.22.216.0/22 721 -130.22.220.0/24 564 -130.22.221.0/24 721 -130.22.222.0/23 721 -130.22.224.0/24 721 -130.22.225.0/24 564 -130.22.226.0/24 564 -130.22.227.0/24 721 -130.22.228.0/22 721 -130.22.232.0/21 721 -130.22.240.0/21 721 -130.22.248.0/22 721 -130.22.252.0/24 564 -130.22.253.0/24 721 -130.22.254.0/23 721 -130.23.244.0/24 3902 -130.23.248.0/24 3902 -130.25.0.0/16 30722 -130.28.1.0/24 3246 -130.28.2.0/24 3246 -130.28.10.0/23 3246 -130.28.16.0/24 8523 -130.32.0.0/16 15601 -130.33.0.0/16 53434 -130.34.0.0/16 2907 -130.35.0.0/19 31898 -130.35.32.0/21 46558 -130.35.40.0/22 46558 -130.35.48.0/20 31898 -130.35.64.0/18 31898 -130.35.128.0/19 31898 -130.35.160.0/21 46558 -130.35.168.0/22 46558 -130.35.176.0/20 31898 -130.35.192.0/18 31898 -130.36.0.0/23 21899 -130.36.2.0/24 21899 -130.36.3.0/24 32528 -130.36.4.0/22 21899 -130.36.8.0/21 21899 -130.36.16.0/20 32528 -130.36.32.0/23 21899 -130.36.34.0/24 21899 -130.36.35.0/24 32528 -130.36.36.0/22 21899 -130.36.40.0/21 21899 -130.36.48.0/20 21899 -130.36.64.0/24 32528 -130.36.65.0/24 21899 -130.36.66.0/23 21899 -130.36.68.0/22 21899 -130.36.72.0/21 21899 -130.36.80.0/22 32528 -130.36.84.0/24 32528 -130.36.85.0/24 702 -130.36.86.0/23 32528 -130.36.88.0/23 702 -130.36.90.0/24 702 -130.36.91.0/24 32528 -130.36.92.0/22 702 -130.36.96.0/20 21899 -130.36.112.0/21 21899 -130.36.120.0/22 21899 -130.36.124.0/23 32528 -130.36.126.0/23 21899 -130.36.128.0/20 21899 -130.36.144.0/24 21899 -130.36.145.0/24 2914 -130.36.146.0/23 32528 -130.36.148.0/24 9255 -130.36.149.0/24 32528 -130.36.150.0/23 32528 -130.36.152.0/24 32528 -130.36.153.0/24 21899 -130.36.154.0/23 21899 -130.36.156.0/22 21899 -130.36.160.0/19 21899 -130.36.192.0/18 21899 -130.37.0.0/16 1103 -130.39.0.0/16 2055 -130.40.0.0/16 270 -130.41.0.0/16 243 -130.43.0.0/17 1241 -130.43.128.0/18 42689 -130.43.192.0/18 21334 -130.44.0.0/20 22773 -130.44.16.0/21 46592 -130.44.24.0/24 397105 -130.44.26.0/23 11080 -130.44.28.0/22 12129 -130.44.32.0/19 23314 -130.44.64.0/18 6079 -130.44.128.0/18 6079 -130.44.204.0/24 22773 -130.44.208.0/24 22773 -130.44.209.0/24 812 -130.44.210.0/24 22773 -130.44.211.0/24 397312 -130.44.212.0/22 396986 -130.44.216.0/21 19579 -130.45.0.0/20 7459 -130.45.16.0/21 7459 -130.45.24.0/22 7459 -130.45.28.0/24 7459 -130.45.29.0/24 397351 -130.45.30.0/23 7459 -130.45.32.0/19 7459 -130.45.64.0/18 7459 -130.45.128.0/20 22191 -130.45.160.0/20 22191 -130.45.188.0/22 22191 -130.45.192.0/19 22191 -130.46.0.0/16 84 -130.47.0.0/16 3136 -130.49.0.0/16 4130 -130.50.125.0/24 14618 -130.50.200.0/22 7046 -130.50.252.0/22 7829 -130.51.176.0/22 393240 -130.51.184.0/22 63297 -130.51.188.0/22 47054 -130.51.192.0/23 26370 -130.51.196.0/22 10905 -130.51.200.0/23 23423 -130.51.212.0/22 12129 -130.51.224.0/22 396107 -130.51.228.0/23 397019 -130.51.231.0/24 397019 -130.51.237.0/24 54648 -130.53.0.0/16 385 -130.54.0.0/16 2504 -130.55.0.0/16 68 -130.56.0.0/16 7575 -130.57.0.0/18 3680 -130.57.64.0/20 3680 -130.57.80.0/24 7385 -130.57.81.0/24 3680 -130.57.82.0/23 3680 -130.57.84.0/22 3680 -130.57.88.0/21 3680 -130.57.96.0/19 3680 -130.57.128.0/17 3680 -130.58.0.0/16 3782 -130.59.0.0/16 559 -130.60.0.0/16 559 -130.61.0.0/16 31898 -130.62.0.0/16 55392 -130.63.0.0/16 802 -130.64.0.0/16 13326 -130.65.0.0/16 2152 -130.66.0.0/16 2200 -130.67.0.0/16 2119 -130.68.0.0/16 205 -130.69.0.0/16 2501 -130.70.0.0/16 22985 -130.71.0.0/16 21951 -130.73.0.0/16 680 -130.74.0.0/16 25656 -130.75.0.0/16 680 -130.76.0.0/16 196 -130.77.0.0/16 10441 -130.78.0.0/21 39686 -130.79.0.0/16 2259 -130.81.0.0/16 701 -130.82.0.0/16 559 -130.83.0.0/16 8365 -130.84.0.0/16 1303 -130.85.0.0/16 11131 -130.86.0.0/16 396465 -130.87.0.0/16 2505 -130.88.0.0/16 786 -130.89.0.0/16 1133 -130.91.0.0/22 55 -130.91.4.0/23 55 -130.91.6.0/24 69 -130.91.7.0/24 55 -130.91.8.0/21 55 -130.91.16.0/20 55 -130.91.32.0/19 55 -130.91.64.0/18 55 -130.91.128.0/17 55 -130.92.0.0/16 559 -130.93.0.0/17 25540 -130.93.128.0/18 25540 -130.93.192.0/19 8990 -130.93.224.0/20 8990 -130.93.240.0/21 8990 -130.93.248.0/22 8990 -130.93.252.0/23 8990 -130.93.254.0/24 20568 -130.93.255.0/24 8990 -130.94.0.0/17 2914 -130.94.128.0/18 2914 -130.94.192.0/19 2914 -130.94.224.0/20 2914 -130.94.240.0/23 2914 -130.94.242.0/24 2914 -130.94.243.0/24 19271 -130.94.244.0/22 2914 -130.94.248.0/21 2914 -130.95.0.0/16 24437 -130.96.0.0/22 7349 -130.96.8.0/24 23136 -130.96.10.0/23 23136 -130.96.12.0/23 13649 -130.96.14.0/24 19271 -130.96.16.0/23 12229 -130.96.20.0/22 12229 -130.96.24.0/23 12229 -130.99.0.0/16 7792 -130.100.0.0/18 158 -130.100.64.0/23 395592 -130.100.66.0/23 158 -130.100.68.0/22 158 -130.100.72.0/21 158 -130.100.80.0/20 158 -130.100.96.0/19 158 -130.100.128.0/17 158 -130.101.0.0/16 20085 -130.102.0.0/16 24436 -130.104.0.0/16 2611 -130.105.0.0/16 23944 -130.107.0.0/16 30 -130.108.0.0/16 600 -130.109.0.0/16 668 -130.111.0.0/16 557 -130.112.0.0/16 1103 -130.113.0.0/16 23237 -130.114.0.0/17 1467 -130.114.128.0/18 1467 -130.114.192.0/21 1467 -130.114.200.0/24 1541 -130.114.201.0/24 1467 -130.114.202.0/23 1467 -130.114.204.0/22 1467 -130.114.208.0/20 1467 -130.114.224.0/19 1467 -130.115.0.0/16 1103 -130.116.0.0/16 6262 -130.117.0.0/19 174 -130.117.32.0/21 174 -130.117.40.0/22 174 -130.117.44.0/23 174 -130.117.46.0/24 174 -130.117.47.0/24 203947 -130.117.48.0/20 174 -130.117.64.0/21 174 -130.117.72.0/22 174 -130.117.76.0/24 174 -130.117.77.0/24 30967 -130.117.78.0/23 199391 -130.117.80.0/21 174 -130.117.88.0/22 174 -130.117.92.0/23 174 -130.117.94.0/23 202829 -130.117.96.0/20 174 -130.117.112.0/21 174 -130.117.120.0/22 174 -130.117.124.0/24 174 -130.117.125.0/24 60963 -130.117.126.0/24 63217 -130.117.127.0/24 174 -130.117.128.0/21 174 -130.117.136.0/22 174 -130.117.140.0/24 44308 -130.117.141.0/24 62631 -130.117.142.0/24 174 -130.117.143.0/24 64456 -130.117.144.0/20 174 -130.117.160.0/21 174 -130.117.168.0/24 174 -130.117.169.0/24 328236 -130.117.170.0/24 37094 -130.117.171.0/24 174 -130.117.172.0/22 37094 -130.117.176.0/21 174 -130.117.184.0/22 174 -130.117.188.0/24 174 -130.117.189.0/24 203015 -130.117.190.0/23 174 -130.117.192.0/23 174 -130.117.194.0/24 4546 -130.117.195.0/24 174 -130.117.196.0/22 174 -130.117.200.0/21 174 -130.117.208.0/20 174 -130.117.224.0/21 174 -130.117.232.0/23 174 -130.117.234.0/24 174 -130.117.235.0/24 200108 -130.117.236.0/23 174 -130.117.238.0/24 174 -130.117.239.0/24 199325 -130.117.240.0/21 174 -130.117.248.0/22 174 -130.117.252.0/24 395717 -130.117.253.0/24 174 -130.117.254.0/23 174 -130.118.152.0/24 1842 -130.119.73.0/24 19637 -130.120.0.0/16 1715 -130.123.0.0/16 9433 -130.124.0.0/16 17007 -130.125.0.0/16 559 -130.126.0.0/16 38 -130.127.0.0/16 12148 -130.130.0.0/16 58698 -130.131.0.0/16 10455 -130.132.0.0/16 29 -130.133.0.0/16 680 -130.134.0.0/15 270 -130.136.0.0/16 137 -130.137.20.0/24 16509 -130.137.29.0/24 16509 -130.137.80.0/23 16509 -130.137.82.0/24 14618 -130.137.86.0/24 16509 -130.137.178.0/24 16509 -130.138.224.0/19 22683 -130.149.0.0/16 680 -130.150.0.0/16 2152 -130.152.0.0/16 226 -130.153.0.0/16 2907 -130.154.0.0/23 21 -130.154.3.0/24 21 -130.154.11.0/24 21 -130.154.30.0/24 21 -130.154.33.0/24 21 -130.154.51.0/24 21 -130.155.0.0/16 6262 -130.156.0.0/21 21976 -130.156.8.0/22 21976 -130.156.12.0/24 21976 -130.156.13.0/24 62532 -130.156.14.0/23 21976 -130.156.16.0/24 21976 -130.156.17.0/24 18794 -130.156.18.0/23 21976 -130.156.20.0/22 21976 -130.156.24.0/21 21976 -130.156.32.0/21 21976 -130.156.40.0/23 21976 -130.156.42.0/24 395987 -130.156.43.0/24 21976 -130.156.44.0/22 21976 -130.156.48.0/23 21976 -130.156.50.0/24 40267 -130.156.51.0/24 21976 -130.156.52.0/22 21976 -130.156.56.0/21 21976 -130.156.64.0/18 21976 -130.156.128.0/17 21976 -130.157.0.0/16 2152 -130.158.0.0/16 37917 -130.159.0.0/16 786 -130.160.0.0/16 12173 -130.161.0.0/16 1128 -130.162.0.0/16 43898 -130.163.0.0/16 668 -130.164.0.0/24 1261 -130.164.26.0/24 1261 -130.164.62.0/23 1261 -130.164.74.0/23 1261 -130.164.78.0/23 1261 -130.164.80.0/20 1261 -130.164.126.0/23 1261 -130.164.128.0/17 25019 -130.165.0.0/16 4010 -130.166.0.0/16 2152 -130.167.128.0/17 26020 -130.176.0.0/21 16509 -130.176.9.0/24 16509 -130.176.10.0/23 16509 -130.176.13.0/24 16509 -130.176.14.0/24 16509 -130.176.17.0/24 16509 -130.176.20.0/24 16509 -130.176.25.0/24 16509 -130.176.27.0/24 16509 -130.176.28.0/22 16509 -130.176.32.0/23 16509 -130.176.34.0/24 16509 -130.176.36.0/24 16509 -130.176.39.0/24 16509 -130.176.40.0/24 16509 -130.176.43.0/24 16509 -130.176.48.0/24 16509 -130.176.50.0/24 16509 -130.176.65.0/24 16509 -130.176.66.0/23 16509 -130.176.71.0/24 16509 -130.176.75.0/24 16509 -130.176.76.0/24 16509 -130.176.82.0/23 16509 -130.176.89.0/24 16509 -130.176.90.0/24 16509 -130.176.92.0/23 16509 -130.176.96.0/22 16509 -130.176.100.0/24 16509 -130.176.102.0/23 16509 -130.179.0.0/16 17001 -130.180.0.0/17 6830 -130.180.128.0/18 29256 -130.180.192.0/22 29414 -130.180.196.0/23 29414 -130.180.198.0/24 29414 -130.180.199.0/24 209522 -130.180.200.0/21 20860 -130.180.208.0/20 31343 -130.182.0.0/16 2152 -130.183.0.0/16 680 -130.184.0.0/19 10508 -130.184.32.0/21 10508 -130.184.40.0/22 10508 -130.184.44.0/23 10508 -130.184.46.0/24 10508 -130.184.47.0/24 40581 -130.184.48.0/20 10508 -130.184.64.0/18 10508 -130.184.128.0/20 10508 -130.184.144.0/23 10508 -130.184.146.0/24 10508 -130.184.147.0/24 40581 -130.184.148.0/22 10508 -130.184.152.0/21 10508 -130.184.160.0/19 10508 -130.184.192.0/18 10508 -130.185.0.0/18 12611 -130.185.64.0/21 31672 -130.185.72.0/23 60631 -130.185.74.0/24 60631 -130.185.75.0/24 48434 -130.185.76.0/22 60631 -130.185.80.0/21 24768 -130.185.88.0/21 35394 -130.185.96.0/21 34688 -130.185.104.0/21 51191 -130.185.112.0/22 60233 -130.185.116.0/22 35913 -130.185.120.0/24 208006 -130.185.124.0/22 61317 -130.185.128.0/20 31027 -130.185.144.0/21 20860 -130.185.152.0/24 57858 -130.185.153.0/24 47536 -130.185.154.0/23 57858 -130.185.156.0/22 57858 -130.185.160.0/22 60949 -130.185.164.0/24 60949 -130.185.166.0/24 60949 -130.185.168.0/22 33835 -130.185.172.0/22 54103 -130.185.176.0/22 198171 -130.185.180.0/23 198171 -130.185.182.0/23 33597 -130.185.184.0/21 12727 -130.185.192.0/20 48917 -130.185.208.0/21 48917 -130.185.216.0/22 48917 -130.185.220.0/23 48917 -130.185.222.0/24 48917 -130.185.224.0/24 57344 -130.185.225.0/24 31083 -130.185.228.0/24 199221 -130.185.229.0/24 57344 -130.185.230.0/23 25374 -130.185.232.0/24 31083 -130.185.233.0/24 25374 -130.185.234.0/24 31083 -130.185.235.0/24 57344 -130.185.236.0/23 57344 -130.185.238.0/24 269070 -130.185.239.0/24 203380 -130.185.240.0/21 48917 -130.185.248.0/24 57344 -130.185.249.0/24 62240 -130.185.250.0/24 49453 -130.185.251.0/24 203380 -130.185.252.0/24 60656 -130.185.253.0/24 49699 -130.185.254.0/24 40065 -130.185.255.0/24 200805 -130.186.0.0/19 137 -130.186.32.0/19 8612 -130.186.64.0/18 3275 -130.186.128.0/17 8612 -130.187.0.0/16 33660 -130.188.0.0/16 565 -130.189.0.0/16 11197 -130.190.0.0/16 1942 -130.191.0.0/19 2152 -130.191.32.0/20 2152 -130.191.48.0/24 2152 -130.191.49.0/24 396310 -130.191.50.0/23 2152 -130.191.52.0/22 2152 -130.191.56.0/21 2152 -130.191.64.0/19 2152 -130.191.96.0/22 2152 -130.191.100.0/23 2152 -130.191.102.0/24 2152 -130.191.103.0/24 396310 -130.191.104.0/21 2152 -130.191.112.0/20 2152 -130.191.128.0/17 2152 -130.192.0.0/16 137 -130.193.8.0/21 198171 -130.193.16.0/24 24971 -130.193.17.0/24 6830 -130.193.18.0/24 29405 -130.193.19.0/24 21107 -130.193.24.0/21 198177 -130.193.32.0/19 200350 -130.193.64.0/22 49063 -130.193.68.0/24 49063 -130.193.69.0/24 205954 -130.193.70.0/23 49063 -130.193.80.0/20 34920 -130.193.96.0/21 25054 -130.193.104.0/21 197518 -130.193.112.0/21 51978 -130.193.120.0/21 49800 -130.193.128.0/17 21277 -130.194.0.0/16 56132 -130.195.0.0/18 23905 -130.195.64.0/19 23905 -130.195.128.0/17 23905 -130.198.0.0/19 36351 -130.198.64.0/18 36351 -130.199.0.0/16 43 -130.200.0.0/16 6126 -130.202.0.0/16 683 -130.203.0.0/16 3999 -130.204.0.0/16 13124 -130.206.0.0/16 766 -130.207.0.0/17 2637 -130.207.128.0/18 2637 -130.207.192.0/19 2637 -130.207.224.0/20 2637 -130.207.240.0/21 2637 -130.207.248.0/22 2637 -130.207.252.0/24 10490 -130.207.253.0/24 2637 -130.207.254.0/23 2637 -130.208.0.0/16 15474 -130.209.0.0/16 786 -130.210.0.0/16 7834 -130.211.0.0/16 15169 -130.212.0.0/18 2152 -130.212.64.0/19 2152 -130.212.96.0/20 2152 -130.212.112.0/20 396465 -130.212.128.0/17 2152 -130.214.64.0/24 7088 -130.214.192.0/21 35039 -130.214.200.0/23 202926 -130.214.202.0/23 35039 -130.214.204.0/23 35039 -130.214.208.0/21 35039 -130.214.217.0/24 35039 -130.214.218.0/23 135577 -130.214.222.0/23 35039 -130.214.226.0/23 35039 -130.214.228.0/23 35039 -130.214.230.0/23 202926 -130.214.232.0/21 35039 -130.214.242.0/23 35039 -130.214.244.0/23 135401 -130.214.246.0/23 35039 -130.214.250.0/23 35039 -130.214.252.0/22 35039 -130.215.0.0/16 10326 -130.216.0.0/16 9431 -130.217.0.0/16 681 -130.218.0.0/16 3479 -130.219.0.0/16 11094 -130.220.0.0/16 7575 -130.221.0.0/16 85 -130.223.0.0/16 559 -130.225.0.0/16 1835 -130.226.0.0/16 1835 -130.227.0.0/16 9158 -130.228.0.0/16 9158 -130.229.0.0/18 2837 -130.229.128.0/18 2839 -130.229.192.0/24 1653 -130.230.0.0/16 1739 -130.231.0.0/16 1741 -130.232.0.0/16 1741 -130.233.0.0/16 15496 -130.234.0.0/16 1741 -130.235.0.0/16 2846 -130.236.0.0/16 2843 -130.237.0.0/16 1653 -130.238.0.0/16 1653 -130.239.0.0/17 2833 -130.239.128.0/18 2833 -130.239.192.0/22 2833 -130.239.196.0/23 2833 -130.239.198.0/24 1653 -130.239.199.0/24 2833 -130.239.200.0/21 2833 -130.239.208.0/20 2833 -130.239.224.0/19 2833 -130.240.0.0/16 2831 -130.241.0.0/16 2842 -130.242.0.0/15 1653 -130.244.0.0/16 1257 -130.245.0.0/16 5719 -130.246.0.0/16 786 -130.248.0.0/21 14365 -130.248.8.0/23 14365 -130.248.10.0/23 1313 -130.248.12.0/22 14365 -130.248.16.0/21 14365 -130.248.24.0/23 1313 -130.248.26.0/23 14365 -130.248.28.0/22 14365 -130.248.32.0/23 58664 -130.248.34.0/23 14365 -130.248.36.0/22 14365 -130.248.40.0/21 14365 -130.248.48.0/23 44786 -130.248.50.0/23 14365 -130.248.52.0/22 14365 -130.248.56.0/21 14365 -130.248.64.0/22 44786 -130.248.68.0/23 14365 -130.248.70.0/23 44786 -130.248.72.0/23 44786 -130.248.74.0/23 14365 -130.248.76.0/22 14365 -130.248.80.0/23 44786 -130.248.82.0/23 14365 -130.248.84.0/22 14365 -130.248.88.0/21 14365 -130.248.96.0/21 14365 -130.248.104.0/22 14365 -130.248.108.0/22 58664 -130.248.112.0/22 58664 -130.248.116.0/24 58664 -130.248.117.0/24 14365 -130.248.118.0/24 58664 -130.248.119.0/24 14365 -130.248.120.0/24 14365 -130.248.121.0/24 58664 -130.248.122.0/23 58664 -130.248.124.0/23 58664 -130.248.126.0/23 14365 -130.248.128.0/19 15224 -130.248.160.0/21 15224 -130.248.168.0/24 15224 -130.248.169.0/24 14365 -130.248.170.0/23 15224 -130.248.172.0/22 15224 -130.248.176.0/20 15224 -130.248.192.0/20 15224 -130.248.208.0/21 15224 -130.248.216.0/21 14365 -130.248.224.0/20 14365 -130.248.240.0/21 14365 -130.248.248.0/22 14365 -130.248.252.0/23 14365 -130.248.254.0/24 14365 -130.248.255.0/24 15224 -130.250.0.0/18 394901 -130.250.64.0/19 394900 -130.250.96.0/19 394898 -130.250.128.0/19 394902 -130.250.160.0/20 394897 -130.250.176.0/20 394896 -130.250.192.0/20 394899 -130.250.208.0/21 394895 -130.250.216.0/22 394597 -130.250.224.0/22 394903 -130.250.255.0/24 394635 -130.251.0.0/16 137 -130.252.224.0/19 543 -130.253.0.0/16 14041 -130.254.0.0/18 18759 -130.254.128.0/17 18759 -130.255.0.0/23 57585 -130.255.2.0/24 57585 -130.255.8.0/21 198185 -130.255.16.0/22 29286 -130.255.20.0/24 29286 -130.255.21.0/24 12684 -130.255.22.0/23 12684 -130.255.24.0/23 12684 -130.255.26.0/24 12684 -130.255.27.0/24 29286 -130.255.28.0/22 12684 -130.255.32.0/19 39812 -130.255.64.0/21 51737 -130.255.72.0/21 29141 -130.255.80.0/21 57571 -130.255.88.0/22 197882 -130.255.96.0/21 56376 -130.255.104.0/21 48284 -130.255.112.0/21 198320 -130.255.120.0/21 196954 -130.255.128.0/20 35816 -130.255.144.0/21 198186 -130.255.152.0/21 30782 -130.255.160.0/21 12552 -130.255.168.0/21 12874 -130.255.176.0/23 57458 -130.255.184.0/21 29141 -130.255.192.0/18 197207 -131.0.0.0/22 61458 -131.0.4.0/22 61855 -131.0.8.0/22 61724 -131.0.12.0/22 52644 -131.0.16.0/22 61880 -131.0.20.0/22 28327 -131.0.24.0/22 28604 -131.0.28.0/22 28210 -131.0.32.0/22 61868 -131.0.36.0/22 61869 -131.0.40.0/22 61856 -131.0.44.0/22 262621 -131.0.48.0/22 61882 -131.0.52.0/22 3549 -131.0.56.0/22 61874 -131.0.60.0/22 61704 -131.0.64.0/23 61857 -131.0.66.0/24 61857 -131.0.67.0/24 36351 -131.0.68.0/24 61852 -131.0.71.0/24 61852 -131.0.76.0/22 14457 -131.0.80.0/22 61870 -131.0.84.0/22 262420 -131.0.88.0/22 61878 -131.0.92.0/22 61871 -131.0.96.0/22 263649 -131.0.100.0/22 61883 -131.0.108.0/23 6471 -131.0.110.0/24 6471 -131.0.111.0/24 267906 -131.0.112.0/22 61700 -131.0.116.0/22 61884 -131.0.120.0/22 262744 -131.0.128.0/22 52232 -131.0.136.0/22 61467 -131.0.144.0/22 61886 -131.0.148.0/22 262824 -131.0.152.0/22 61879 -131.0.156.0/22 61705 -131.0.160.0/22 61701 -131.0.164.0/22 61698 -131.0.168.0/22 262191 -131.0.172.0/22 14117 -131.0.176.0/22 61706 -131.0.180.0/22 61707 -131.0.184.0/22 28621 -131.0.188.0/22 61708 -131.0.192.0/22 61719 -131.0.200.0/22 61743 -131.0.204.0/22 61729 -131.0.208.0/22 52536 -131.0.212.0/22 11664 -131.0.216.0/23 28613 -131.0.218.0/24 28613 -131.0.220.0/22 61702 -131.0.224.0/22 52965 -131.0.228.0/22 61709 -131.0.232.0/22 61470 -131.0.236.0/22 16531 -131.0.240.0/22 262380 -131.0.244.0/22 61714 -131.0.248.0/22 52769 -131.0.252.0/22 263555 -131.1.0.0/17 3269 -131.1.128.0/18 3269 -131.1.192.0/20 3269 -131.1.208.0/21 3269 -131.1.216.0/23 20746 -131.1.218.0/23 3269 -131.1.220.0/23 20746 -131.1.222.0/24 20746 -131.1.223.0/24 3269 -131.1.224.0/22 3269 -131.1.228.0/24 20746 -131.1.229.0/24 3269 -131.1.230.0/23 20746 -131.1.232.0/21 3269 -131.1.240.0/22 20746 -131.1.244.0/23 20746 -131.1.246.0/24 3269 -131.1.247.0/24 20746 -131.1.248.0/22 3269 -131.1.252.0/22 20746 -131.3.0.0/16 386 -131.4.0.0/16 721 -131.5.0.0/16 385 -131.6.0.0/15 385 -131.9.0.0/16 246 -131.10.0.0/16 385 -131.12.4.0/22 385 -131.13.0.0/16 385 -131.14.228.0/22 27064 -131.14.232.0/21 27064 -131.15.16.0/20 385 -131.15.32.0/22 385 -131.15.38.0/23 385 -131.15.40.0/22 385 -131.15.44.0/23 385 -131.15.46.0/24 385 -131.15.48.0/21 385 -131.15.56.0/22 385 -131.15.60.0/23 385 -131.15.62.0/24 385 -131.15.65.0/24 385 -131.15.68.0/22 385 -131.15.73.0/24 385 -131.15.74.0/23 385 -131.15.80.0/24 385 -131.15.90.0/23 385 -131.15.92.0/24 385 -131.15.98.0/23 385 -131.15.116.0/23 385 -131.15.120.0/24 385 -131.15.136.0/24 385 -131.15.144.0/21 385 -131.15.160.0/21 385 -131.15.208.0/24 385 -131.15.252.0/23 385 -131.16.0.0/18 721 -131.16.64.0/20 721 -131.16.80.0/21 386 -131.16.88.0/21 721 -131.16.96.0/19 721 -131.16.128.0/17 721 -131.17.0.0/16 385 -131.18.98.0/23 385 -131.18.104.0/23 385 -131.18.128.0/24 385 -131.18.176.0/23 386 -131.22.0.0/17 385 -131.22.128.0/18 385 -131.22.192.0/19 385 -131.22.224.0/20 385 -131.22.240.0/23 385 -131.22.242.0/24 5972 -131.22.243.0/24 385 -131.22.244.0/22 385 -131.22.248.0/21 385 -131.24.0.0/15 385 -131.27.0.0/18 383 -131.27.68.0/22 383 -131.27.72.0/22 383 -131.28.0.0/16 383 -131.29.0.0/16 385 -131.30.0.0/20 385 -131.30.16.0/22 385 -131.30.20.0/24 56 -131.30.21.0/24 385 -131.30.22.0/23 385 -131.30.24.0/21 385 -131.30.32.0/19 385 -131.30.64.0/18 385 -131.30.128.0/17 385 -131.32.0.0/16 385 -131.33.0.0/16 721 -131.34.0.0/15 385 -131.36.0.0/16 409 -131.37.0.0/16 385 -131.38.0.0/16 399 -131.39.0.0/17 385 -131.39.128.0/20 385 -131.39.144.0/23 385 -131.39.146.0/24 385 -131.39.147.0/24 5972 -131.39.148.0/22 385 -131.39.152.0/21 385 -131.39.160.0/19 385 -131.39.192.0/18 385 -131.40.0.0/16 385 -131.41.0.0/16 721 -131.42.0.0/18 721 -131.42.64.0/19 721 -131.42.96.0/20 721 -131.42.112.0/21 721 -131.42.120.0/24 385 -131.42.121.0/24 721 -131.42.122.0/23 721 -131.42.124.0/22 721 -131.42.128.0/17 721 -131.43.0.0/22 721 -131.43.4.0/22 385 -131.43.8.0/24 721 -131.43.9.0/24 385 -131.43.10.0/23 385 -131.43.12.0/24 385 -131.43.13.0/24 721 -131.43.14.0/23 385 -131.43.16.0/21 385 -131.43.24.0/22 721 -131.43.28.0/24 385 -131.43.29.0/24 721 -131.43.30.0/23 385 -131.43.32.0/21 385 -131.43.40.0/23 385 -131.43.42.0/24 385 -131.43.43.0/24 721 -131.43.44.0/23 721 -131.43.46.0/23 385 -131.43.48.0/21 385 -131.43.56.0/23 385 -131.43.58.0/24 385 -131.43.59.0/24 721 -131.43.60.0/23 721 -131.43.62.0/23 385 -131.43.64.0/21 385 -131.43.72.0/23 385 -131.43.74.0/24 385 -131.43.75.0/24 721 -131.43.76.0/23 721 -131.43.78.0/23 385 -131.43.80.0/21 385 -131.43.88.0/23 385 -131.43.90.0/24 385 -131.43.91.0/24 721 -131.43.92.0/23 721 -131.43.94.0/23 385 -131.43.96.0/21 385 -131.43.104.0/22 385 -131.43.108.0/23 721 -131.43.110.0/23 385 -131.43.112.0/21 385 -131.43.120.0/22 385 -131.43.124.0/24 385 -131.43.125.0/24 721 -131.43.126.0/23 385 -131.43.128.0/21 385 -131.43.136.0/23 385 -131.43.138.0/24 385 -131.43.139.0/24 721 -131.43.140.0/23 721 -131.43.142.0/23 385 -131.43.144.0/21 385 -131.43.152.0/22 385 -131.43.156.0/23 721 -131.43.158.0/23 385 -131.43.160.0/21 385 -131.43.168.0/23 385 -131.43.170.0/24 385 -131.43.171.0/24 721 -131.43.172.0/23 721 -131.43.174.0/23 385 -131.43.176.0/21 385 -131.43.184.0/23 385 -131.43.186.0/24 385 -131.43.187.0/24 721 -131.43.188.0/23 721 -131.43.190.0/23 385 -131.43.192.0/21 385 -131.43.200.0/22 385 -131.43.204.0/23 721 -131.43.206.0/23 385 -131.43.208.0/21 385 -131.43.216.0/22 385 -131.43.220.0/23 721 -131.43.222.0/23 385 -131.43.224.0/21 385 -131.43.232.0/23 385 -131.43.234.0/24 385 -131.43.235.0/24 721 -131.43.236.0/23 721 -131.43.238.0/23 385 -131.43.240.0/21 385 -131.43.248.0/22 385 -131.43.252.0/22 721 -131.44.0.0/15 385 -131.46.0.0/16 385 -131.47.0.0/16 409 -131.48.0.0/16 386 -131.49.0.0/16 399 -131.50.0.0/16 385 -131.51.0.0/16 386 -131.52.0.0/15 385 -131.54.0.0/16 721 -131.55.0.0/16 385 -131.56.0.0/16 386 -131.57.0.0/16 721 -131.58.0.0/16 386 -131.59.0.0/16 385 -131.60.0.0/21 721 -131.60.8.0/23 721 -131.60.10.0/23 385 -131.60.12.0/23 721 -131.60.14.0/23 385 -131.60.16.0/21 385 -131.60.24.0/22 385 -131.60.28.0/23 721 -131.60.30.0/23 385 -131.60.32.0/21 385 -131.60.40.0/23 385 -131.60.42.0/24 385 -131.60.43.0/24 721 -131.60.44.0/23 721 -131.60.46.0/23 385 -131.60.48.0/21 385 -131.60.56.0/24 385 -131.60.57.0/24 721 -131.60.58.0/23 721 -131.60.60.0/23 721 -131.60.62.0/23 385 -131.60.64.0/21 385 -131.60.72.0/22 385 -131.60.76.0/23 721 -131.60.78.0/23 385 -131.60.80.0/21 385 -131.60.88.0/24 385 -131.60.89.0/24 721 -131.60.90.0/23 721 -131.60.92.0/22 721 -131.60.96.0/21 721 -131.60.104.0/22 721 -131.60.108.0/23 721 -131.60.110.0/23 385 -131.60.112.0/21 385 -131.60.120.0/23 385 -131.60.122.0/24 385 -131.60.123.0/24 721 -131.60.124.0/22 385 -131.60.128.0/21 385 -131.60.136.0/23 385 -131.60.138.0/23 721 -131.60.140.0/23 721 -131.60.142.0/23 385 -131.60.144.0/21 385 -131.60.152.0/22 385 -131.60.156.0/23 721 -131.60.158.0/23 385 -131.60.160.0/21 385 -131.60.168.0/22 721 -131.60.172.0/23 721 -131.60.174.0/23 385 -131.60.176.0/21 385 -131.60.184.0/23 385 -131.60.186.0/24 385 -131.60.187.0/24 721 -131.60.188.0/23 721 -131.60.190.0/23 385 -131.60.192.0/21 385 -131.60.200.0/22 385 -131.60.204.0/23 721 -131.60.206.0/23 385 -131.60.208.0/21 385 -131.60.216.0/22 385 -131.60.220.0/24 385 -131.60.221.0/24 721 -131.60.222.0/23 721 -131.60.224.0/21 721 -131.60.232.0/21 385 -131.60.240.0/21 385 -131.60.248.0/21 721 -131.61.0.0/16 385 -131.62.0.0/22 721 -131.62.4.0/22 385 -131.62.8.0/21 385 -131.62.16.0/21 385 -131.62.24.0/23 385 -131.62.26.0/23 721 -131.62.28.0/24 385 -131.62.29.0/24 721 -131.62.30.0/23 385 -131.62.32.0/21 385 -131.62.40.0/23 385 -131.62.42.0/24 385 -131.62.43.0/24 721 -131.62.44.0/23 721 -131.62.46.0/23 385 -131.62.48.0/21 385 -131.62.56.0/22 385 -131.62.60.0/23 721 -131.62.62.0/23 385 -131.62.64.0/21 385 -131.62.72.0/22 385 -131.62.76.0/23 721 -131.62.78.0/23 385 -131.62.80.0/21 385 -131.62.88.0/22 385 -131.62.92.0/23 721 -131.62.94.0/23 385 -131.62.96.0/21 385 -131.62.104.0/23 385 -131.62.106.0/24 385 -131.62.107.0/24 721 -131.62.108.0/23 721 -131.62.110.0/23 385 -131.62.112.0/21 385 -131.62.120.0/24 385 -131.62.121.0/24 721 -131.62.122.0/23 721 -131.62.124.0/23 721 -131.62.126.0/23 385 -131.62.128.0/21 385 -131.62.136.0/22 385 -131.62.140.0/24 385 -131.62.141.0/24 721 -131.62.142.0/23 385 -131.62.144.0/21 385 -131.62.152.0/22 385 -131.62.156.0/23 721 -131.62.158.0/23 385 -131.62.160.0/21 385 -131.62.168.0/23 385 -131.62.170.0/24 385 -131.62.171.0/24 721 -131.62.172.0/23 721 -131.62.174.0/23 385 -131.62.176.0/21 385 -131.62.184.0/22 385 -131.62.188.0/23 721 -131.62.190.0/23 385 -131.62.192.0/21 385 -131.62.200.0/22 385 -131.62.204.0/23 721 -131.62.206.0/23 385 -131.62.208.0/21 385 -131.62.216.0/23 385 -131.62.218.0/24 385 -131.62.219.0/24 721 -131.62.220.0/23 721 -131.62.222.0/23 385 -131.62.224.0/21 385 -131.62.232.0/22 385 -131.62.236.0/22 721 -131.62.240.0/23 721 -131.62.242.0/23 385 -131.62.244.0/22 385 -131.62.248.0/24 721 -131.62.249.0/24 385 -131.62.250.0/23 385 -131.62.252.0/22 385 -131.63.0.0/16 721 -131.64.0.0/16 27064 -131.65.0.0/16 721 -131.66.0.0/15 138 -131.68.0.0/16 138 -131.69.0.0/16 721 -131.70.0.0/20 721 -131.70.16.0/21 27046 -131.70.24.0/22 27046 -131.70.28.0/23 27046 -131.70.30.0/23 721 -131.70.32.0/24 27046 -131.70.33.0/24 721 -131.70.34.0/24 27046 -131.70.35.0/24 721 -131.70.36.0/22 721 -131.70.40.0/21 721 -131.70.48.0/21 721 -131.70.56.0/22 721 -131.70.60.0/24 27046 -131.70.61.0/24 721 -131.70.62.0/23 721 -131.70.64.0/23 721 -131.70.66.0/24 721 -131.70.67.0/24 27046 -131.70.68.0/22 721 -131.70.72.0/21 721 -131.70.80.0/21 27046 -131.70.88.0/22 721 -131.70.92.0/24 721 -131.70.93.0/24 27046 -131.70.94.0/23 721 -131.70.96.0/21 721 -131.70.104.0/23 721 -131.70.106.0/24 27046 -131.70.107.0/24 721 -131.70.108.0/22 721 -131.70.112.0/23 27046 -131.70.114.0/23 721 -131.70.116.0/22 721 -131.70.120.0/21 721 -131.70.128.0/20 721 -131.70.144.0/21 721 -131.70.152.0/22 721 -131.70.156.0/22 27046 -131.70.160.0/22 721 -131.70.164.0/24 27046 -131.70.165.0/24 721 -131.70.166.0/23 721 -131.70.168.0/21 721 -131.70.176.0/20 721 -131.70.192.0/22 721 -131.70.196.0/23 721 -131.70.198.0/24 721 -131.70.199.0/24 27046 -131.70.200.0/23 27046 -131.70.202.0/24 721 -131.70.203.0/24 27046 -131.70.204.0/24 27046 -131.70.205.0/24 721 -131.70.206.0/24 27046 -131.70.207.0/24 721 -131.70.208.0/24 721 -131.70.209.0/24 27046 -131.70.210.0/23 27046 -131.70.212.0/24 27046 -131.70.213.0/24 721 -131.70.214.0/23 721 -131.70.216.0/24 27046 -131.70.217.0/24 721 -131.70.218.0/23 721 -131.70.220.0/22 721 -131.70.224.0/21 721 -131.70.232.0/24 27046 -131.70.233.0/24 721 -131.70.234.0/23 721 -131.70.236.0/22 721 -131.70.240.0/24 27046 -131.70.241.0/24 721 -131.70.242.0/23 721 -131.70.244.0/22 721 -131.70.248.0/22 721 -131.70.252.0/23 721 -131.70.254.0/23 27046 -131.71.0.0/16 721 -131.72.0.0/22 28075 -131.72.4.0/22 61717 -131.72.8.0/22 61715 -131.72.12.0/22 61710 -131.72.16.0/22 61713 -131.72.20.0/22 61716 -131.72.24.0/22 52455 -131.72.28.0/22 52339 -131.72.32.0/22 61711 -131.72.36.0/22 61722 -131.72.40.0/22 61723 -131.72.44.0/22 61712 -131.72.48.0/22 52545 -131.72.52.0/22 61718 -131.72.56.0/22 61728 -131.72.60.0/22 53231 -131.72.64.0/22 61640 -131.72.68.0/22 61758 -131.72.72.0/22 28038 -131.72.76.0/22 264811 -131.72.80.0/22 262429 -131.72.84.0/22 28294 -131.72.88.0/22 61725 -131.72.92.0/22 262797 -131.72.96.0/22 61726 -131.72.100.0/22 61646 -131.72.104.0/22 61732 -131.72.108.0/22 61739 -131.72.112.0/22 11081 -131.72.124.0/22 61727 -131.72.128.0/22 61744 -131.72.132.0/22 263244 -131.72.136.0/22 28098 -131.72.140.0/22 61730 -131.72.144.0/22 28670 -131.72.148.0/22 262746 -131.72.152.0/22 61745 -131.72.156.0/23 28318 -131.72.158.0/24 28318 -131.72.160.0/22 61731 -131.72.164.0/22 61734 -131.72.169.0/24 52320 -131.72.170.0/24 269918 -131.72.171.0/24 27717 -131.72.172.0/22 262993 -131.72.176.0/22 61735 -131.72.180.0/22 61737 -131.72.184.0/22 61750 -131.72.188.0/22 61740 -131.72.192.0/22 61741 -131.72.196.0/22 52974 -131.72.200.0/22 262809 -131.72.204.0/23 262150 -131.72.206.0/24 262150 -131.72.211.0/24 27884 -131.72.212.0/23 27884 -131.72.214.0/24 27884 -131.72.215.0/24 13591 -131.72.216.0/22 262352 -131.72.220.0/22 61738 -131.72.224.0/22 52337 -131.72.228.0/22 262913 -131.72.232.0/22 263728 -131.72.236.0/22 263753 -131.72.240.0/23 52327 -131.72.242.0/24 52327 -131.72.243.0/24 52329 -131.72.244.0/22 262393 -131.72.248.0/22 52751 -131.72.252.0/22 61751 -131.74.0.0/16 27046 -131.75.0.0/22 721 -131.75.4.0/23 721 -131.75.6.0/23 27046 -131.75.8.0/24 27046 -131.75.9.0/24 721 -131.75.10.0/23 27046 -131.75.12.0/23 27046 -131.75.14.0/24 27046 -131.75.15.0/24 721 -131.75.16.0/23 721 -131.75.18.0/23 27046 -131.75.20.0/23 27046 -131.75.22.0/24 721 -131.75.23.0/24 27046 -131.75.24.0/21 27046 -131.75.32.0/23 721 -131.75.34.0/24 27046 -131.75.35.0/24 721 -131.75.36.0/22 721 -131.75.40.0/22 721 -131.75.44.0/24 721 -131.75.45.0/24 27046 -131.75.46.0/24 721 -131.75.47.0/24 27046 -131.75.48.0/23 721 -131.75.50.0/24 27046 -131.75.51.0/24 721 -131.75.52.0/23 721 -131.75.54.0/24 27046 -131.75.55.0/24 721 -131.75.56.0/24 27046 -131.75.57.0/24 721 -131.75.58.0/23 721 -131.75.60.0/23 721 -131.75.62.0/24 27046 -131.75.63.0/24 721 -131.75.64.0/20 27046 -131.75.80.0/24 721 -131.75.81.0/24 27046 -131.75.82.0/23 27046 -131.75.84.0/23 721 -131.75.86.0/24 27046 -131.75.87.0/24 721 -131.75.88.0/23 27046 -131.75.90.0/24 27046 -131.75.91.0/24 721 -131.75.92.0/22 27046 -131.75.96.0/22 27046 -131.75.100.0/23 27046 -131.75.102.0/23 721 -131.75.104.0/23 721 -131.75.106.0/24 721 -131.75.107.0/24 27046 -131.75.108.0/22 721 -131.75.112.0/21 721 -131.75.120.0/24 27046 -131.75.121.0/24 721 -131.75.122.0/23 721 -131.75.124.0/24 721 -131.75.125.0/24 27046 -131.75.126.0/24 27046 -131.75.127.0/24 721 -131.75.128.0/21 721 -131.75.136.0/22 721 -131.75.140.0/24 27046 -131.75.141.0/24 721 -131.75.142.0/23 27046 -131.75.144.0/23 721 -131.75.146.0/24 27046 -131.75.147.0/24 721 -131.75.148.0/22 27046 -131.75.152.0/23 721 -131.75.154.0/23 27046 -131.75.156.0/24 27046 -131.75.157.0/24 721 -131.75.158.0/23 27046 -131.75.160.0/22 721 -131.75.164.0/24 721 -131.75.165.0/24 27046 -131.75.166.0/24 721 -131.75.167.0/24 27046 -131.75.168.0/23 721 -131.75.170.0/23 27046 -131.75.172.0/22 27046 -131.75.176.0/23 721 -131.75.178.0/23 27046 -131.75.180.0/23 721 -131.75.182.0/23 27046 -131.75.184.0/21 27046 -131.75.192.0/24 721 -131.75.193.0/24 27046 -131.75.194.0/23 721 -131.75.196.0/23 721 -131.75.198.0/23 27046 -131.75.200.0/23 721 -131.75.202.0/24 721 -131.75.203.0/24 27046 -131.75.204.0/24 721 -131.75.205.0/24 27046 -131.75.206.0/23 27046 -131.75.208.0/22 721 -131.75.212.0/22 27046 -131.75.216.0/22 27046 -131.75.220.0/22 721 -131.75.224.0/23 721 -131.75.226.0/23 27046 -131.75.228.0/23 27046 -131.75.230.0/23 721 -131.75.232.0/21 721 -131.75.240.0/23 721 -131.75.242.0/24 721 -131.75.243.0/24 27046 -131.75.244.0/23 721 -131.75.246.0/24 27046 -131.75.247.0/24 721 -131.75.248.0/22 721 -131.75.252.0/24 27046 -131.75.253.0/24 721 -131.75.254.0/23 721 -131.76.0.0/24 721 -131.76.1.0/24 27046 -131.76.2.0/24 27046 -131.76.3.0/24 721 -131.76.4.0/24 721 -131.76.5.0/24 27046 -131.76.6.0/24 721 -131.76.7.0/24 27046 -131.76.8.0/21 721 -131.76.16.0/22 721 -131.76.20.0/23 721 -131.76.22.0/23 27046 -131.76.24.0/22 721 -131.76.28.0/24 27046 -131.76.29.0/24 721 -131.76.30.0/24 27046 -131.76.31.0/24 721 -131.76.32.0/22 721 -131.76.36.0/23 721 -131.76.38.0/24 721 -131.76.39.0/24 27046 -131.76.40.0/24 721 -131.76.41.0/24 27046 -131.76.42.0/24 721 -131.76.43.0/24 27046 -131.76.44.0/23 27046 -131.76.46.0/24 721 -131.76.47.0/24 27046 -131.76.48.0/23 27046 -131.76.50.0/24 721 -131.76.51.0/24 27046 -131.76.52.0/23 27046 -131.76.54.0/24 721 -131.76.55.0/24 27046 -131.76.56.0/24 27046 -131.76.57.0/24 721 -131.76.58.0/23 27046 -131.76.60.0/24 27046 -131.76.61.0/24 721 -131.76.62.0/24 721 -131.76.63.0/24 27046 -131.76.64.0/23 27046 -131.76.66.0/23 721 -131.76.68.0/22 27046 -131.76.72.0/22 721 -131.76.76.0/24 27046 -131.76.77.0/24 721 -131.76.78.0/24 27046 -131.76.79.0/24 721 -131.76.80.0/23 27046 -131.76.82.0/23 721 -131.76.84.0/22 721 -131.76.88.0/21 721 -131.76.96.0/19 721 -131.76.128.0/24 721 -131.76.129.0/24 27046 -131.76.130.0/24 721 -131.76.131.0/24 27046 -131.76.132.0/24 721 -131.76.133.0/24 27046 -131.76.134.0/23 27046 -131.76.136.0/24 721 -131.76.137.0/24 27046 -131.76.138.0/24 27046 -131.76.139.0/24 721 -131.76.140.0/22 721 -131.76.144.0/20 721 -131.76.160.0/23 721 -131.76.162.0/24 721 -131.76.163.0/24 27046 -131.76.164.0/24 27046 -131.76.165.0/24 721 -131.76.166.0/23 721 -131.76.168.0/23 721 -131.76.170.0/24 721 -131.76.171.0/24 27046 -131.76.172.0/22 27046 -131.76.176.0/20 27046 -131.76.192.0/22 27046 -131.76.196.0/22 721 -131.76.200.0/21 721 -131.76.208.0/20 721 -131.76.224.0/19 721 -131.77.0.0/17 5974 -131.77.128.0/19 5974 -131.77.160.0/22 5974 -131.77.164.0/24 27152 -131.77.165.0/24 5974 -131.77.166.0/23 5974 -131.77.168.0/21 5974 -131.77.176.0/20 5974 -131.77.192.0/18 5974 -131.78.0.0/22 721 -131.78.4.0/23 721 -131.78.6.0/24 27046 -131.78.7.0/24 721 -131.78.8.0/21 721 -131.78.16.0/20 721 -131.78.32.0/19 721 -131.78.64.0/18 721 -131.78.128.0/22 721 -131.78.132.0/24 27046 -131.78.133.0/24 721 -131.78.134.0/23 721 -131.78.136.0/21 721 -131.78.144.0/21 721 -131.78.152.0/22 721 -131.78.156.0/23 721 -131.78.158.0/23 27046 -131.78.160.0/22 721 -131.78.164.0/23 721 -131.78.166.0/24 721 -131.78.167.0/24 27046 -131.78.168.0/22 721 -131.78.172.0/23 721 -131.78.174.0/23 27046 -131.78.176.0/21 721 -131.78.184.0/22 27046 -131.78.188.0/22 721 -131.78.192.0/21 27046 -131.78.200.0/23 27046 -131.78.202.0/24 27046 -131.78.203.0/24 721 -131.78.204.0/22 721 -131.78.208.0/22 721 -131.78.212.0/23 27046 -131.78.214.0/24 27046 -131.78.215.0/24 721 -131.78.216.0/23 27046 -131.78.218.0/23 721 -131.78.220.0/22 721 -131.78.224.0/20 721 -131.78.240.0/23 27046 -131.78.242.0/23 721 -131.78.244.0/22 721 -131.78.248.0/21 721 -131.79.0.0/23 721 -131.79.2.0/24 721 -131.79.3.0/24 27046 -131.79.4.0/23 721 -131.79.6.0/24 721 -131.79.7.0/24 27046 -131.79.8.0/23 721 -131.79.10.0/24 721 -131.79.11.0/24 27046 -131.79.12.0/24 721 -131.79.13.0/24 27046 -131.79.14.0/24 27046 -131.79.15.0/24 721 -131.79.16.0/23 721 -131.79.18.0/24 721 -131.79.19.0/24 27046 -131.79.20.0/22 721 -131.79.24.0/21 721 -131.79.32.0/20 721 -131.79.48.0/20 27046 -131.79.64.0/23 721 -131.79.66.0/23 27046 -131.79.68.0/22 721 -131.79.72.0/21 721 -131.79.80.0/20 721 -131.79.96.0/21 721 -131.79.104.0/24 721 -131.79.105.0/24 27046 -131.79.106.0/23 721 -131.79.108.0/22 27046 -131.79.112.0/21 27046 -131.79.120.0/23 721 -131.79.122.0/23 27046 -131.79.124.0/24 27046 -131.79.125.0/24 721 -131.79.126.0/23 721 -131.79.128.0/23 721 -131.79.130.0/23 27046 -131.79.132.0/23 721 -131.79.134.0/23 27046 -131.79.136.0/23 27046 -131.79.138.0/23 721 -131.79.140.0/22 27046 -131.79.144.0/21 27046 -131.79.152.0/22 27046 -131.79.156.0/23 721 -131.79.158.0/24 27046 -131.79.159.0/24 721 -131.79.160.0/22 27046 -131.79.164.0/23 27046 -131.79.166.0/23 721 -131.79.168.0/21 27046 -131.79.176.0/23 721 -131.79.178.0/24 27046 -131.79.179.0/24 721 -131.79.180.0/22 721 -131.79.184.0/21 721 -131.79.192.0/23 27046 -131.79.194.0/23 721 -131.79.196.0/22 721 -131.79.200.0/22 721 -131.79.204.0/22 27046 -131.79.208.0/20 721 -131.79.224.0/24 27046 -131.79.225.0/24 721 -131.79.226.0/23 721 -131.79.228.0/22 27046 -131.79.232.0/24 721 -131.79.233.0/24 27046 -131.79.234.0/23 721 -131.79.236.0/22 721 -131.79.240.0/23 27046 -131.79.242.0/23 721 -131.79.244.0/22 721 -131.79.248.0/23 27046 -131.79.250.0/23 721 -131.79.252.0/22 721 -131.80.0.0/16 721 -131.81.0.0/23 721 -131.81.2.0/23 27046 -131.81.4.0/24 721 -131.81.5.0/24 27046 -131.81.6.0/23 721 -131.81.8.0/24 721 -131.81.9.0/24 27046 -131.81.10.0/23 27046 -131.81.12.0/23 721 -131.81.14.0/24 721 -131.81.15.0/24 27046 -131.81.16.0/24 721 -131.81.17.0/24 27046 -131.81.18.0/23 721 -131.81.20.0/22 721 -131.81.24.0/21 721 -131.81.32.0/19 721 -131.81.64.0/20 721 -131.81.80.0/22 721 -131.81.84.0/23 721 -131.81.86.0/24 27046 -131.81.87.0/24 721 -131.81.88.0/23 721 -131.81.90.0/23 27046 -131.81.92.0/22 27046 -131.81.96.0/23 721 -131.81.98.0/24 721 -131.81.99.0/24 27046 -131.81.100.0/24 721 -131.81.101.0/24 27046 -131.81.102.0/24 721 -131.81.103.0/24 27046 -131.81.104.0/21 721 -131.81.112.0/20 721 -131.81.128.0/19 721 -131.81.160.0/23 721 -131.81.162.0/23 27046 -131.81.164.0/23 27046 -131.81.166.0/23 721 -131.81.168.0/23 721 -131.81.170.0/24 27046 -131.81.171.0/24 721 -131.81.172.0/22 721 -131.81.176.0/21 721 -131.81.184.0/22 721 -131.81.188.0/23 721 -131.81.190.0/24 721 -131.81.191.0/24 27046 -131.81.192.0/22 721 -131.81.196.0/23 721 -131.81.198.0/24 721 -131.81.199.0/24 27046 -131.81.200.0/22 721 -131.81.204.0/23 721 -131.81.206.0/23 27046 -131.81.208.0/20 721 -131.81.224.0/19 721 -131.82.0.0/24 27046 -131.82.1.0/24 721 -131.82.2.0/23 721 -131.82.4.0/22 721 -131.82.8.0/21 721 -131.82.16.0/23 721 -131.82.18.0/24 721 -131.82.19.0/24 27046 -131.82.20.0/22 27046 -131.82.24.0/21 27046 -131.82.32.0/22 27046 -131.82.36.0/23 27046 -131.82.38.0/23 721 -131.82.40.0/21 27046 -131.82.48.0/23 721 -131.82.50.0/23 27046 -131.82.52.0/23 721 -131.82.54.0/23 27046 -131.82.56.0/21 27046 -131.82.64.0/22 27046 -131.82.68.0/23 721 -131.82.70.0/23 27046 -131.82.72.0/22 27046 -131.82.76.0/23 27046 -131.82.78.0/24 27046 -131.82.79.0/24 721 -131.82.80.0/21 721 -131.82.88.0/23 721 -131.82.90.0/23 27046 -131.82.92.0/22 27046 -131.82.96.0/23 721 -131.82.98.0/23 27046 -131.82.100.0/22 721 -131.82.104.0/24 721 -131.82.105.0/24 27046 -131.82.106.0/23 721 -131.82.108.0/22 721 -131.82.112.0/21 721 -131.82.120.0/22 721 -131.82.124.0/24 721 -131.82.125.0/24 27046 -131.82.126.0/23 27046 -131.82.128.0/22 27046 -131.82.132.0/23 27046 -131.82.134.0/24 27046 -131.82.135.0/24 721 -131.82.136.0/23 27046 -131.82.138.0/23 721 -131.82.140.0/22 721 -131.82.144.0/20 721 -131.82.160.0/21 721 -131.82.168.0/23 721 -131.82.170.0/24 27046 -131.82.171.0/24 721 -131.82.172.0/22 721 -131.82.176.0/22 721 -131.82.180.0/23 27046 -131.82.182.0/23 721 -131.82.184.0/22 27046 -131.82.188.0/23 27046 -131.82.190.0/23 721 -131.82.192.0/18 721 -131.83.0.0/16 721 -131.84.0.0/16 140 -131.86.0.0/23 27046 -131.86.2.0/24 721 -131.86.3.0/24 27046 -131.86.4.0/22 721 -131.86.8.0/24 721 -131.86.9.0/24 27046 -131.86.10.0/24 27046 -131.86.11.0/24 721 -131.86.12.0/22 721 -131.86.16.0/22 721 -131.86.20.0/23 721 -131.86.22.0/24 721 -131.86.23.0/24 27046 -131.86.24.0/23 721 -131.86.26.0/24 27046 -131.86.27.0/24 721 -131.86.28.0/24 721 -131.86.29.0/24 27046 -131.86.30.0/23 721 -131.86.32.0/22 27046 -131.86.36.0/22 721 -131.86.40.0/23 721 -131.86.42.0/23 27046 -131.86.44.0/24 721 -131.86.45.0/24 27046 -131.86.46.0/23 721 -131.86.48.0/23 721 -131.86.50.0/24 721 -131.86.51.0/24 27046 -131.86.52.0/23 721 -131.86.54.0/24 721 -131.86.55.0/24 27046 -131.86.56.0/22 721 -131.86.60.0/23 721 -131.86.62.0/24 721 -131.86.63.0/24 27046 -131.86.64.0/19 721 -131.86.96.0/21 721 -131.86.104.0/23 721 -131.86.106.0/24 27046 -131.86.107.0/24 721 -131.86.108.0/22 721 -131.86.112.0/21 721 -131.86.120.0/22 721 -131.86.124.0/23 721 -131.86.126.0/24 721 -131.86.127.0/24 27046 -131.86.128.0/19 721 -131.86.160.0/20 27046 -131.86.176.0/20 721 -131.86.192.0/21 721 -131.86.200.0/22 27046 -131.86.204.0/22 721 -131.86.208.0/20 721 -131.86.224.0/20 721 -131.86.240.0/21 721 -131.86.248.0/22 721 -131.86.252.0/23 721 -131.86.254.0/24 721 -131.86.255.0/24 27046 -131.87.0.0/24 721 -131.87.1.0/24 27046 -131.87.2.0/23 27046 -131.87.4.0/22 27046 -131.87.8.0/24 721 -131.87.9.0/24 27046 -131.87.10.0/23 27046 -131.87.12.0/22 27046 -131.87.16.0/24 27046 -131.87.17.0/24 721 -131.87.18.0/24 721 -131.87.19.0/24 27046 -131.87.20.0/22 721 -131.87.24.0/23 721 -131.87.26.0/24 27046 -131.87.27.0/24 721 -131.87.28.0/22 721 -131.87.32.0/22 721 -131.87.36.0/23 721 -131.87.38.0/24 721 -131.87.39.0/24 27046 -131.87.40.0/21 27046 -131.87.48.0/22 721 -131.87.52.0/22 27046 -131.87.56.0/23 27046 -131.87.58.0/23 721 -131.87.60.0/22 721 -131.87.64.0/23 721 -131.87.66.0/24 721 -131.87.67.0/24 27046 -131.87.68.0/23 27046 -131.87.70.0/23 721 -131.87.72.0/21 721 -131.87.80.0/22 27046 -131.87.84.0/23 27046 -131.87.86.0/24 721 -131.87.87.0/24 27046 -131.87.88.0/24 27046 -131.87.89.0/24 721 -131.87.90.0/23 27046 -131.87.92.0/22 27046 -131.87.96.0/20 27046 -131.87.112.0/23 27046 -131.87.114.0/24 27046 -131.87.115.0/24 721 -131.87.116.0/24 721 -131.87.117.0/24 27046 -131.87.118.0/23 721 -131.87.120.0/22 721 -131.87.124.0/24 721 -131.87.125.0/24 27046 -131.87.126.0/24 27046 -131.87.127.0/24 721 -131.87.128.0/24 721 -131.87.129.0/24 27046 -131.87.130.0/24 721 -131.87.131.0/24 27046 -131.87.132.0/22 721 -131.87.136.0/21 721 -131.87.144.0/22 721 -131.87.148.0/23 721 -131.87.150.0/24 27046 -131.87.151.0/24 721 -131.87.152.0/24 27046 -131.87.153.0/24 721 -131.87.154.0/23 721 -131.87.156.0/22 721 -131.87.160.0/23 721 -131.87.162.0/24 27046 -131.87.163.0/24 721 -131.87.164.0/22 721 -131.87.168.0/22 721 -131.87.172.0/23 721 -131.87.174.0/23 27046 -131.87.176.0/23 721 -131.87.178.0/24 721 -131.87.179.0/24 27046 -131.87.180.0/23 721 -131.87.182.0/24 721 -131.87.183.0/24 27046 -131.87.184.0/24 721 -131.87.185.0/24 27046 -131.87.186.0/23 721 -131.87.188.0/24 27046 -131.87.189.0/24 721 -131.87.190.0/23 721 -131.87.192.0/21 721 -131.87.200.0/22 27046 -131.87.204.0/23 27046 -131.87.206.0/24 27046 -131.87.207.0/24 721 -131.87.208.0/24 721 -131.87.209.0/24 27046 -131.87.210.0/23 27046 -131.87.212.0/23 27046 -131.87.214.0/23 721 -131.87.216.0/22 721 -131.87.220.0/23 27046 -131.87.222.0/24 27046 -131.87.223.0/24 721 -131.87.224.0/22 721 -131.87.228.0/23 721 -131.87.230.0/23 27046 -131.87.232.0/23 27046 -131.87.234.0/24 721 -131.87.235.0/24 27046 -131.87.236.0/24 721 -131.87.237.0/24 27046 -131.87.238.0/23 721 -131.87.240.0/23 721 -131.87.242.0/23 27046 -131.87.244.0/23 27046 -131.87.246.0/23 721 -131.87.248.0/24 721 -131.87.249.0/24 27046 -131.87.250.0/23 721 -131.87.252.0/22 721 -131.89.0.0/16 2013 -131.90.0.0/16 2013 -131.91.0.0/16 12013 -131.92.0.0/17 213 -131.92.131.0/24 668 -131.92.132.0/22 668 -131.92.136.0/21 668 -131.92.144.0/21 668 -131.92.176.0/22 668 -131.92.192.0/18 668 -131.93.0.0/16 20115 -131.94.0.0/16 3681 -131.95.0.0/16 16430 -131.96.0.0/16 10631 -131.99.0.0/16 8767 -131.100.0.0/22 42473 -131.100.8.0/22 61634 -131.100.12.0/22 61752 -131.100.16.0/22 61753 -131.100.20.0/22 61651 -131.100.24.0/22 61635 -131.100.32.0/22 61746 -131.100.36.0/22 27800 -131.100.40.0/22 61754 -131.100.44.0/22 61755 -131.100.52.0/22 61748 -131.100.56.0/22 262323 -131.100.60.0/22 262354 -131.100.64.0/22 52307 -131.100.68.0/22 53143 -131.100.72.0/22 61756 -131.100.76.0/22 61757 -131.100.80.0/22 61759 -131.100.84.0/22 61641 -131.100.88.0/22 61481 -131.100.92.0/22 53001 -131.100.96.0/22 28224 -131.100.100.0/23 27940 -131.100.104.0/22 61670 -131.100.108.0/22 19037 -131.100.116.0/22 61644 -131.100.120.0/22 61636 -131.100.124.0/22 61632 -131.100.128.0/22 52866 -131.100.132.0/22 61637 -131.100.136.0/22 61638 -131.100.140.0/22 26617 -131.100.144.0/22 61645 -131.100.148.0/22 61633 -131.100.152.0/22 61639 -131.100.156.0/22 52588 -131.100.160.0/22 27665 -131.100.164.0/22 61642 -131.100.168.0/22 61651 -131.100.172.0/22 22177 -131.100.176.0/22 61648 -131.100.180.0/22 262187 -131.100.184.0/23 11664 -131.100.186.0/24 19037 -131.100.187.0/24 11664 -131.100.188.0/22 61649 -131.100.192.0/22 262630 -131.100.196.0/22 53196 -131.100.200.0/23 61488 -131.100.202.0/24 61488 -131.100.204.0/22 61650 -131.100.208.0/22 61652 -131.100.212.0/22 61662 -131.100.216.0/22 61658 -131.100.224.0/22 61653 -131.100.232.0/22 61686 -131.100.236.0/22 61655 -131.100.240.0/22 61663 -131.100.244.0/22 61667 -131.100.248.0/22 61668 -131.100.252.0/22 61657 -131.102.0.0/16 33845 -131.103.0.0/20 2914 -131.103.16.0/22 2914 -131.103.20.0/23 2914 -131.103.22.0/24 393536 -131.103.23.0/24 2914 -131.103.24.0/24 393536 -131.103.25.0/24 2914 -131.103.26.0/23 2914 -131.103.28.0/22 2914 -131.103.32.0/19 2914 -131.103.64.0/18 2914 -131.103.128.0/23 17054 -131.103.130.0/23 2914 -131.103.132.0/22 2914 -131.103.136.0/23 2914 -131.103.138.0/23 12119 -131.103.140.0/22 2914 -131.103.144.0/20 2914 -131.103.160.0/19 2914 -131.103.192.0/18 2914 -131.104.0.0/16 31886 -131.106.0.0/16 6079 -131.107.0.0/17 3598 -131.107.128.0/22 3598 -131.107.132.0/24 8071 -131.107.133.0/24 3598 -131.107.134.0/23 3598 -131.107.136.0/21 3598 -131.107.144.0/20 3598 -131.107.160.0/19 3598 -131.107.192.0/18 3598 -131.108.0.0/22 61487 -131.108.4.0/22 28007 -131.108.8.0/22 263424 -131.108.12.0/23 61669 -131.108.14.0/24 61669 -131.108.16.0/22 263744 -131.108.20.0/22 61491 -131.108.24.0/22 52712 -131.108.28.0/22 61659 -131.108.32.0/22 264367 -131.108.36.0/24 263832 -131.108.37.0/24 20299 -131.108.38.0/23 20299 -131.108.40.0/22 52438 -131.108.44.0/22 61660 -131.108.48.0/22 61687 -131.108.52.0/22 61671 -131.108.56.0/22 61688 -131.108.60.0/22 61664 -131.108.64.0/22 61680 -131.108.68.0/22 18747 -131.108.72.0/22 61665 -131.108.76.0/22 61666 -131.108.80.0/24 61456 -131.108.82.0/23 61456 -131.108.84.0/22 262521 -131.108.88.0/22 264349 -131.108.92.0/24 264350 -131.108.93.0/24 20299 -131.108.94.0/23 264350 -131.108.100.0/22 61672 -131.108.104.0/22 262775 -131.108.108.0/22 61676 -131.108.112.0/22 61677 -131.108.116.0/22 264353 -131.108.120.0/22 61673 -131.108.124.0/22 61689 -131.108.128.0/22 264354 -131.108.132.0/22 263010 -131.108.136.0/22 61674 -131.108.140.0/22 61490 -131.108.144.0/22 61690 -131.108.148.0/22 264385 -131.108.156.0/22 61681 -131.108.160.0/22 61675 -131.108.164.0/22 61678 -131.108.168.0/22 10299 -131.108.172.0/22 264386 -131.108.180.0/22 61691 -131.108.184.0/22 61683 -131.108.188.0/22 61684 -131.108.192.0/22 263192 -131.108.200.0/22 262691 -131.108.204.0/22 61692 -131.108.208.0/22 26623 -131.108.212.0/22 264351 -131.108.216.0/22 61685 -131.108.220.0/22 61693 -131.108.224.0/22 263522 -131.108.228.0/22 264352 -131.108.232.0/22 262234 -131.108.240.0/22 264355 -131.108.244.0/22 52928 -131.108.248.0/22 264356 -131.108.252.0/22 61694 -131.109.0.0/17 14464 -131.109.128.0/21 32145 -131.109.136.0/21 14464 -131.109.144.0/20 14464 -131.109.160.0/19 14464 -131.109.192.0/18 14464 -131.111.0.0/16 786 -131.112.0.0/16 9367 -131.113.0.0/16 38635 -131.114.0.0/16 137 -131.115.0.0/16 1729 -131.116.0.0/16 1729 -131.117.128.0/20 196925 -131.117.144.0/20 42652 -131.117.160.0/21 30873 -131.117.168.0/21 18705 -131.117.176.0/21 43853 -131.117.184.0/21 198736 -131.117.192.0/21 25512 -131.117.200.0/22 25540 -131.117.204.0/24 25540 -131.117.207.0/24 43174 -131.117.208.0/21 20723 -131.117.224.0/19 200865 -131.118.0.0/16 6059 -131.120.0.0/15 668 -131.122.0.0/16 668 -131.123.0.0/16 11050 -131.124.33.0/24 7018 -131.124.48.0/20 23005 -131.124.72.0/21 23005 -131.124.80.0/21 23005 -131.124.91.0/24 200038 -131.124.92.0/22 200038 -131.125.0.0/16 174 -131.126.223.0/24 1766 -131.128.0.0/16 14348 -131.129.0.0/16 4685 -131.130.0.0/16 760 -131.131.16.0/24 18456 -131.131.19.0/24 18456 -131.131.20.0/24 18456 -131.131.32.0/24 1236 -131.131.64.0/24 1236 -131.131.66.0/24 1236 -131.131.79.0/24 1236 -131.131.80.0/24 1236 -131.131.82.0/23 1236 -131.131.84.0/24 1236 -131.131.86.0/23 1236 -131.131.88.0/24 1236 -131.131.90.0/24 1236 -131.131.119.0/24 1236 -131.131.120.0/24 1236 -131.131.160.0/24 18456 -131.131.192.0/24 18456 -131.131.194.0/24 18456 -131.131.208.0/24 18456 -131.131.210.0/23 18456 -131.131.212.0/24 18456 -131.131.214.0/23 18456 -131.131.216.0/24 18456 -131.131.218.0/24 18456 -131.131.224.0/23 10859 -131.131.227.0/24 10859 -131.131.239.0/24 18456 -131.131.249.0/24 18456 -131.131.252.0/24 18456 -131.131.253.0/24 1236 -131.132.0.0/16 74 -131.135.0.0/16 74 -131.136.0.0/16 74 -131.137.0.0/16 3766 -131.138.0.0/16 3766 -131.139.128.0/17 3766 -131.142.0.0/16 1742 -131.144.0.0/16 3479 -131.146.0.0/16 3377 -131.147.0.0/16 2527 -131.148.0.0/17 33363 -131.148.160.0/19 33363 -131.150.0.0/22 20115 -131.150.10.0/24 20115 -131.150.16.0/21 20115 -131.150.24.0/22 20115 -131.150.28.0/23 20115 -131.150.30.0/24 20115 -131.150.32.0/20 7843 -131.150.84.0/22 20115 -131.150.88.0/21 20115 -131.150.96.0/19 20115 -131.150.128.0/23 20115 -131.150.132.0/22 20115 -131.150.136.0/21 20115 -131.150.160.0/20 20115 -131.150.176.0/21 20115 -131.150.184.0/22 20115 -131.150.188.0/23 20115 -131.150.191.0/24 20115 -131.150.192.0/18 20115 -131.151.0.0/16 11348 -131.152.0.0/16 559 -131.153.0.0/21 19437 -131.153.8.0/23 20454 -131.153.10.0/24 19437 -131.153.11.0/24 20454 -131.153.12.0/22 20454 -131.153.16.0/21 60558 -131.153.24.0/21 11572 -131.153.32.0/22 20454 -131.153.36.0/24 12189 -131.153.37.0/24 20454 -131.153.38.0/24 20454 -131.153.39.0/24 394566 -131.153.40.0/23 207134 -131.153.42.0/23 20454 -131.153.44.0/24 19437 -131.153.45.0/24 20454 -131.153.46.0/23 59210 -131.153.48.0/22 59210 -131.153.52.0/22 20454 -131.153.56.0/22 19181 -131.153.60.0/24 12189 -131.153.61.0/24 46385 -131.153.62.0/23 12189 -131.153.65.0/24 11572 -131.153.66.0/23 11572 -131.153.68.0/23 20454 -131.153.70.0/23 19437 -131.153.72.0/24 12189 -131.153.73.0/24 50389 -131.153.74.0/23 12189 -131.153.76.0/22 59210 -131.153.80.0/24 20454 -131.153.81.0/24 19437 -131.153.82.0/24 11572 -131.153.83.0/24 19181 -131.153.84.0/24 46385 -131.153.85.0/24 59210 -131.153.86.0/24 60558 -131.153.88.0/24 50389 -131.153.89.0/24 39239 -131.153.90.0/24 210266 -131.153.91.0/24 209485 -131.153.92.0/24 136899 -131.153.94.0/24 208136 -131.153.96.0/23 207134 -131.153.98.0/24 207134 -131.153.99.0/24 59210 -131.153.100.0/23 19437 -131.153.102.0/24 19437 -131.153.103.0/24 397651 -131.153.104.0/24 12189 -131.153.105.0/24 39239 -131.153.106.0/23 12189 -131.153.108.0/24 12189 -131.153.109.0/24 210266 -131.153.110.0/23 12189 -131.153.112.0/24 12189 -131.153.113.0/24 136899 -131.153.114.0/23 12189 -131.153.116.0/24 12189 -131.153.117.0/24 209485 -131.153.118.0/23 12189 -131.153.120.0/24 12189 -131.153.121.0/24 397378 -131.153.122.0/23 12189 -131.153.124.0/22 12189 -131.153.128.0/22 19437 -131.153.132.0/22 11572 -131.153.136.0/24 12189 -131.153.137.0/24 208136 -131.153.138.0/23 12189 -131.153.250.0/23 35865 -131.153.252.0/22 395520 -131.154.0.0/16 137 -131.155.0.0/16 1161 -131.156.0.0/16 11417 -131.158.0.0/22 5972 -131.158.4.0/23 27064 -131.158.7.0/24 27064 -131.158.9.0/24 5972 -131.158.11.0/24 5972 -131.158.12.0/23 5972 -131.158.14.0/24 5972 -131.158.15.0/24 27064 -131.158.16.0/23 5972 -131.158.18.0/24 27064 -131.158.20.0/22 27064 -131.158.24.0/24 27064 -131.158.26.0/23 5972 -131.158.28.0/23 27064 -131.158.32.0/24 5972 -131.158.33.0/24 27064 -131.158.34.0/23 27064 -131.158.36.0/22 5972 -131.158.40.0/23 27064 -131.158.42.0/24 27064 -131.158.43.0/24 5972 -131.158.44.0/22 5972 -131.158.52.0/24 5972 -131.158.56.0/22 5972 -131.158.60.0/24 5972 -131.158.64.0/21 5972 -131.158.76.0/23 5972 -131.158.78.0/24 5972 -131.158.79.0/24 27064 -131.158.80.0/20 5972 -131.158.96.0/24 5972 -131.158.101.0/24 5972 -131.158.102.0/23 5972 -131.158.104.0/21 5972 -131.158.112.0/20 5972 -131.158.128.0/20 5972 -131.158.144.0/22 5972 -131.158.148.0/23 5972 -131.158.160.0/20 5972 -131.158.176.0/23 5972 -131.158.178.0/23 27064 -131.158.180.0/22 27064 -131.158.184.0/22 27064 -131.158.188.0/23 27064 -131.158.190.0/23 5972 -131.158.192.0/22 5972 -131.158.196.0/24 5972 -131.158.197.0/24 27064 -131.158.198.0/24 5972 -131.158.199.0/24 27064 -131.158.200.0/21 5972 -131.158.208.0/20 5972 -131.158.224.0/21 5972 -131.158.232.0/23 5972 -131.158.235.0/24 5972 -131.158.236.0/22 5972 -131.158.240.0/22 5972 -131.158.244.0/24 5972 -131.158.248.0/24 5972 -131.158.250.0/23 5972 -131.158.252.0/23 5972 -131.158.255.0/24 5972 -131.159.0.0/16 209335 -131.160.0.0/16 158 -131.161.0.0/22 61695 -131.161.4.0/22 28201 -131.161.12.0/22 264358 -131.161.16.0/22 28343 -131.161.20.0/23 264366 -131.161.22.0/24 264366 -131.161.24.0/22 264359 -131.161.28.0/22 264360 -131.161.32.0/22 264394 -131.161.36.0/22 52564 -131.161.40.0/22 52674 -131.161.46.0/24 264362 -131.161.47.0/24 265144 -131.161.48.0/22 264368 -131.161.52.0/22 263686 -131.161.56.0/22 14178 -131.161.60.0/22 264364 -131.161.64.0/22 264369 -131.161.68.0/22 264402 -131.161.72.0/22 264365 -131.161.76.0/22 264373 -131.161.80.0/23 27932 -131.161.82.0/24 263694 -131.161.83.0/24 27932 -131.161.84.0/22 27781 -131.161.88.0/22 265700 -131.161.92.0/22 264397 -131.161.96.0/22 61789 -131.161.100.0/23 262182 -131.161.104.0/22 263432 -131.161.108.0/22 263665 -131.161.112.0/22 264374 -131.161.116.0/22 264382 -131.161.120.0/22 264377 -131.161.124.0/22 264387 -131.161.128.0/22 264378 -131.161.132.0/22 262293 -131.161.136.0/22 264375 -131.161.140.0/22 263077 -131.161.144.0/22 28343 -131.161.148.0/22 28094 -131.161.152.0/22 27818 -131.161.156.0/22 264390 -131.161.160.0/22 264379 -131.161.164.0/22 52980 -131.161.168.0/22 264380 -131.161.172.0/22 264381 -131.161.176.0/22 264384 -131.161.180.0/22 264391 -131.161.184.0/22 52444 -131.161.188.0/22 264392 -131.161.192.0/22 264389 -131.161.196.0/22 52720 -131.161.201.0/24 52439 -131.161.202.0/23 52439 -131.161.204.0/22 263258 -131.161.208.0/22 264400 -131.161.212.0/22 264401 -131.161.216.0/22 264393 -131.161.224.0/22 264398 -131.161.228.0/22 264404 -131.161.232.0/22 52327 -131.161.236.0/22 263687 -131.161.240.0/22 262332 -131.161.244.0/22 28549 -131.161.248.0/22 264403 -131.161.252.0/22 28103 -131.162.0.0/16 30256 -131.163.4.0/24 14875 -131.163.15.0/24 14875 -131.163.32.0/19 6591 -131.163.64.0/18 6591 -131.163.128.0/17 6591 -131.164.0.0/16 3292 -131.165.0.0/16 6834 -131.166.14.0/23 61032 -131.166.16.0/22 61032 -131.166.50.0/24 61032 -131.166.52.0/24 25934 -131.166.60.0/24 25934 -131.166.90.0/24 61032 -131.166.100.0/24 61032 -131.166.104.0/23 25934 -131.167.0.0/16 32513 -131.169.0.0/16 1754 -131.170.0.0/16 7575 -131.171.0.0/16 22877 -131.172.0.0/16 135893 -131.173.0.0/16 680 -131.174.0.0/16 1103 -131.175.0.0/22 31248 -131.175.4.0/22 137 -131.175.8.0/21 137 -131.175.16.0/20 137 -131.175.32.0/19 137 -131.175.64.0/18 137 -131.175.128.0/17 137 -131.176.0.0/19 288 -131.176.32.0/20 288 -131.176.48.0/23 288 -131.176.50.0/24 288 -131.176.53.0/24 288 -131.176.56.0/24 288 -131.176.60.0/24 288 -131.176.63.0/24 288 -131.176.72.0/24 288 -131.176.75.0/24 288 -131.176.79.0/24 288 -131.176.80.0/23 288 -131.176.86.0/24 288 -131.176.92.0/24 288 -131.176.95.0/24 288 -131.176.96.0/24 288 -131.176.102.0/23 288 -131.176.105.0/24 288 -131.176.106.0/23 288 -131.176.108.0/24 288 -131.176.118.0/24 288 -131.176.123.0/24 288 -131.176.124.0/24 288 -131.176.126.0/24 288 -131.176.136.0/22 288 -131.176.141.0/24 288 -131.176.144.0/22 288 -131.176.148.0/23 288 -131.176.151.0/24 288 -131.176.152.0/24 288 -131.176.154.0/24 288 -131.176.160.0/21 288 -131.176.168.0/22 288 -131.176.173.0/24 288 -131.176.174.0/23 288 -131.176.176.0/21 288 -131.176.184.0/23 288 -131.176.186.0/24 288 -131.176.188.0/24 288 -131.176.190.0/24 288 -131.176.192.0/24 288 -131.176.196.0/23 3257 -131.176.199.0/24 288 -131.176.201.0/24 288 -131.176.202.0/23 288 -131.176.204.0/22 288 -131.176.208.0/23 288 -131.176.210.0/24 288 -131.176.213.0/24 288 -131.176.214.0/23 288 -131.176.216.0/24 3257 -131.176.217.0/24 288 -131.176.218.0/23 3257 -131.176.220.0/22 3257 -131.176.224.0/24 288 -131.176.226.0/23 288 -131.176.228.0/23 288 -131.176.230.0/24 288 -131.176.232.0/24 288 -131.176.233.0/24 203819 -131.176.234.0/23 203819 -131.176.236.0/24 203819 -131.176.237.0/24 288 -131.176.239.0/24 288 -131.176.243.0/24 288 -131.176.244.0/22 3257 -131.176.248.0/22 3257 -131.176.253.0/24 288 -131.176.254.0/23 288 -131.177.0.0/16 1759 -131.178.0.0/16 6342 -131.179.0.0/16 52 -131.180.0.0/16 1128 -131.181.0.0/16 7575 -131.182.0.0/16 270 -131.183.0.0/16 2025 -131.184.128.0/24 22696 -131.185.0.0/16 7474 -131.186.112.0/21 33517 -131.186.160.0/21 33517 -131.186.208.0/21 33517 -131.187.0.0/17 600 -131.187.128.0/23 600 -131.187.130.0/24 600 -131.187.131.0/24 32818 -131.187.132.0/22 54676 -131.187.136.0/21 600 -131.187.144.0/20 600 -131.187.160.0/19 600 -131.187.192.0/19 600 -131.187.224.0/21 26247 -131.187.232.0/21 600 -131.187.240.0/21 600 -131.187.248.0/22 26898 -131.187.252.0/22 600 -131.188.0.0/16 680 -131.189.0.0/16 26577 -131.190.0.0/16 11003 -131.191.0.0/17 14677 -131.191.128.0/17 396001 -131.193.0.0/16 6200 -131.194.0.0/16 19342 -131.196.0.0/22 265768 -131.196.4.0/22 265890 -131.196.8.0/24 265632 -131.196.10.0/23 265632 -131.196.12.0/22 264668 -131.196.16.0/22 265899 -131.196.20.0/22 265903 -131.196.24.0/22 265891 -131.196.28.0/22 28098 -131.196.32.0/22 265766 -131.196.36.0/22 265773 -131.196.40.0/22 265967 -131.196.44.0/22 265904 -131.196.48.0/22 265894 -131.196.52.0/22 265753 -131.196.56.0/22 265893 -131.196.60.0/22 264668 -131.196.64.0/22 265976 -131.196.68.0/23 265916 -131.196.70.0/24 265910 -131.196.71.0/24 265932 -131.196.72.0/22 265754 -131.196.76.0/22 262509 -131.196.80.0/22 265772 -131.196.84.0/22 265907 -131.196.88.0/22 262756 -131.196.92.0/22 265917 -131.196.96.0/22 265969 -131.196.100.0/22 265905 -131.196.104.0/22 265918 -131.196.108.0/22 265922 -131.196.112.0/24 269756 -131.196.113.0/24 264668 -131.196.114.0/23 264668 -131.196.116.0/22 265924 -131.196.120.0/22 265909 -131.196.128.0/22 265923 -131.196.132.0/22 265928 -131.196.136.0/22 265929 -131.196.140.0/22 265537 -131.196.144.0/22 265911 -131.196.148.0/22 265913 -131.196.152.0/22 265942 -131.196.156.0/22 265912 -131.196.160.0/22 265943 -131.196.164.0/22 265914 -131.196.168.0/22 265915 -131.196.172.0/22 54540 -131.196.176.0/22 265757 -131.196.180.0/22 265758 -131.196.184.0/22 265930 -131.196.188.0/22 263766 -131.196.192.0/22 265759 -131.196.196.0/22 265919 -131.196.200.0/22 265990 -131.196.204.0/22 265920 -131.196.208.0/21 10299 -131.196.216.0/22 265927 -131.196.220.0/22 265985 -131.196.224.0/22 266006 -131.196.228.0/22 265944 -131.196.232.0/22 265996 -131.196.236.0/22 265945 -131.196.240.0/22 265931 -131.196.244.0/23 265538 -131.196.246.0/24 265561 -131.196.247.0/24 265538 -131.196.248.0/22 265524 -131.197.0.0/17 19773 -131.197.128.0/19 19773 -131.197.161.0/24 19773 -131.197.162.0/23 19773 -131.197.164.0/22 19773 -131.197.168.0/21 19773 -131.197.176.0/20 19773 -131.197.192.0/18 19773 -131.198.0.0/15 1341 -131.201.240.0/20 125 -131.202.0.0/16 611 -131.203.0.0/23 9503 -131.203.2.0/24 9503 -131.203.3.0/24 9790 -131.203.4.0/22 9790 -131.203.8.0/21 132264 -131.203.16.0/21 132264 -131.203.24.0/23 132264 -131.203.26.0/23 9503 -131.203.28.0/22 9503 -131.203.32.0/19 9503 -131.203.64.0/18 9503 -131.203.128.0/23 9503 -131.203.130.0/24 9503 -131.203.131.0/24 134359 -131.203.132.0/22 9503 -131.203.136.0/22 9503 -131.203.140.0/24 45267 -131.203.141.0/24 9503 -131.203.142.0/23 9503 -131.203.144.0/20 9503 -131.203.160.0/21 132264 -131.203.168.0/21 9503 -131.203.176.0/20 9790 -131.203.192.0/18 9503 -131.204.0.0/16 6112 -131.206.0.0/16 2907 -131.207.0.0/18 375 -131.207.64.0/19 375 -131.207.96.0/22 375 -131.207.100.0/23 375 -131.207.102.0/24 719 -131.207.103.0/24 375 -131.207.104.0/21 375 -131.207.112.0/20 375 -131.207.128.0/17 719 -131.210.0.0/16 3128 -131.211.0.0/16 1103 -131.212.0.0/16 217 -131.213.0.0/16 2527 -131.214.0.0/16 668 -131.215.0.0/16 31 -131.216.0.0/16 3851 -131.217.0.0/16 7573 -131.218.0.0/16 668 -131.219.1.0/24 23255 -131.219.2.0/23 23255 -131.219.5.0/24 23255 -131.219.6.0/24 23255 -131.219.8.0/23 23255 -131.219.12.0/24 23255 -131.219.15.0/24 23255 -131.220.0.0/16 680 -131.221.0.0/22 61496 -131.221.4.0/22 263730 -131.221.8.0/24 263690 -131.221.9.0/24 7727 -131.221.10.0/23 7727 -131.221.12.0/22 52892 -131.221.16.0/22 28093 -131.221.20.0/22 264415 -131.221.24.0/22 27930 -131.221.28.0/22 264793 -131.221.32.0/22 263702 -131.221.36.0/22 264407 -131.221.40.0/24 262186 -131.221.41.0/24 27951 -131.221.42.0/24 27951 -131.221.43.0/24 262186 -131.221.44.0/23 264409 -131.221.47.0/24 264409 -131.221.48.0/22 262375 -131.221.52.0/22 263298 -131.221.56.0/22 262765 -131.221.60.0/22 264414 -131.221.64.0/22 263687 -131.221.68.0/22 28331 -131.221.72.0/22 52566 -131.221.80.0/23 4809 -131.221.82.0/24 4809 -131.221.84.0/22 264406 -131.221.88.0/22 28288 -131.221.92.0/22 53135 -131.221.96.0/22 264420 -131.221.100.0/22 264411 -131.221.104.0/22 264412 -131.221.108.0/22 264424 -131.221.112.0/22 263701 -131.221.116.0/22 52937 -131.221.120.0/22 264416 -131.221.124.0/22 264428 -131.221.128.0/22 264417 -131.221.132.0/22 264429 -131.221.136.0/22 264413 -131.221.144.0/22 52233 -131.221.148.0/22 264433 -131.221.152.0/22 202742 -131.221.156.0/22 264421 -131.221.160.0/22 264434 -131.221.164.0/22 27901 -131.221.168.0/22 264437 -131.221.172.0/22 264422 -131.221.176.0/22 264438 -131.221.180.0/22 52746 -131.221.184.0/22 264425 -131.221.188.0/22 264426 -131.221.192.0/22 264442 -131.221.196.0/22 264430 -131.221.200.0/22 262316 -131.221.204.0/22 264443 -131.221.208.0/22 28658 -131.221.212.0/22 264432 -131.221.216.0/22 264423 -131.221.220.0/22 264435 -131.221.224.0/22 264444 -131.221.228.0/22 264446 -131.221.232.0/22 52650 -131.221.236.0/22 264439 -131.221.240.0/22 264427 -131.221.244.0/22 264440 -131.221.248.0/22 264441 -131.221.252.0/22 52900 -131.222.0.0/16 14962 -131.223.0.0/22 7843 -131.224.0.0/16 1103 -131.225.0.0/16 3152 -131.226.128.0/19 22794 -131.226.160.0/20 22794 -131.226.176.0/21 22794 -131.226.184.0/22 22794 -131.226.188.0/23 22794 -131.226.190.0/24 22794 -131.226.191.0/24 14618 -131.226.192.0/19 12213 -131.226.224.0/22 12213 -131.226.228.0/24 398014 -131.226.230.0/24 398014 -131.226.232.0/21 12213 -131.226.240.0/21 12213 -131.226.248.0/22 12213 -131.227.0.0/16 786 -131.228.0.0/22 200656 -131.228.4.0/24 8983 -131.228.5.0/24 200656 -131.228.6.0/23 200656 -131.228.32.0/24 200656 -131.228.48.0/24 18666 -131.228.56.0/22 10455 -131.228.64.0/21 28723 -131.228.76.0/24 28723 -131.228.96.0/24 4847 -131.228.104.0/24 21856 -131.228.128.0/17 1248 -131.229.0.0/16 396349 -131.230.0.0/17 15119 -131.230.128.0/18 15119 -131.230.192.0/19 15119 -131.230.224.0/20 15118 -131.230.240.0/20 15119 -131.231.0.0/16 786 -131.232.0.0/24 852 -131.232.1.0/24 16580 -131.232.2.0/23 16580 -131.232.4.0/22 16580 -131.232.8.0/21 16580 -131.232.16.0/24 852 -131.232.17.0/24 16580 -131.232.18.0/23 16580 -131.232.20.0/22 16580 -131.232.24.0/21 16580 -131.232.32.0/23 16580 -131.232.34.0/23 852 -131.232.36.0/23 16580 -131.232.38.0/24 16580 -131.232.39.0/24 852 -131.232.40.0/23 16580 -131.232.42.0/24 16580 -131.232.43.0/24 852 -131.232.44.0/23 16580 -131.232.46.0/24 852 -131.232.47.0/24 16580 -131.232.48.0/24 16580 -131.232.49.0/24 852 -131.232.50.0/23 16580 -131.232.52.0/22 16580 -131.232.56.0/22 852 -131.232.60.0/22 16580 -131.232.64.0/23 852 -131.232.66.0/23 16580 -131.232.68.0/22 16580 -131.232.72.0/24 16580 -131.232.73.0/24 852 -131.232.74.0/24 16580 -131.232.75.0/24 852 -131.232.76.0/22 852 -131.232.80.0/22 16580 -131.232.84.0/22 852 -131.232.88.0/22 16580 -131.232.92.0/22 852 -131.232.96.0/22 16580 -131.232.100.0/23 16580 -131.232.102.0/23 852 -131.232.104.0/22 16580 -131.232.108.0/22 852 -131.232.112.0/20 852 -131.232.128.0/18 852 -131.232.192.0/19 852 -131.232.224.0/20 852 -131.232.240.0/24 16580 -131.232.241.0/24 852 -131.232.242.0/24 16580 -131.232.243.0/24 852 -131.232.244.0/22 852 -131.232.248.0/21 852 -131.233.0.0/23 393312 -131.233.2.0/24 393312 -131.233.8.0/24 393312 -131.234.0.0/16 680 -131.236.0.0/16 23859 -131.237.0.0/16 42894 -131.238.0.0/20 32234 -131.238.16.0/21 32234 -131.238.24.0/22 32234 -131.238.28.0/24 600 -131.238.29.0/24 32234 -131.238.30.0/23 32234 -131.238.32.0/19 32234 -131.238.64.0/18 32234 -131.238.128.0/17 32234 -131.239.0.0/20 14985 -131.239.16.0/24 14985 -131.239.17.0/24 53721 -131.239.18.0/24 46887 -131.239.19.0/24 14985 -131.239.20.0/23 14985 -131.239.22.0/24 14985 -131.239.23.0/24 18888 -131.239.24.0/22 14985 -131.239.28.0/24 14985 -131.239.29.0/24 53461 -131.239.30.0/23 31817 -131.239.32.0/23 14985 -131.239.34.0/24 46887 -131.239.35.0/24 14985 -131.239.36.0/23 14985 -131.239.38.0/23 46887 -131.239.40.0/23 14985 -131.239.42.0/23 7015 -131.239.44.0/22 14985 -131.239.48.0/23 14985 -131.239.50.0/24 14985 -131.239.51.0/24 46887 -131.239.52.0/23 14985 -131.239.54.0/24 14985 -131.239.55.0/24 46887 -131.239.56.0/24 14985 -131.239.57.0/24 46887 -131.239.58.0/23 17128 -131.239.60.0/24 14985 -131.239.61.0/24 46887 -131.239.62.0/23 14985 -131.239.64.0/19 14985 -131.239.96.0/24 14985 -131.239.97.0/24 40840 -131.239.98.0/23 14985 -131.239.100.0/22 14985 -131.239.104.0/21 14985 -131.239.112.0/20 14985 -131.239.128.0/19 14985 -131.239.160.0/21 14985 -131.239.168.0/22 14985 -131.239.172.0/23 14985 -131.239.174.0/24 14985 -131.239.175.0/24 11426 -131.239.176.0/20 14985 -131.239.192.0/20 14985 -131.239.208.0/24 14985 -131.239.209.0/24 13365 -131.239.210.0/23 14985 -131.239.212.0/22 14985 -131.239.216.0/21 14985 -131.239.224.0/19 14985 -131.241.0.0/16 3549 -131.242.0.0/16 9650 -131.243.0.0/16 16 -131.244.0.0/15 24436 -131.246.0.0/16 199578 -131.247.0.0/16 5661 -131.248.0.0/16 2497 -131.249.0.0/17 3778 -131.249.128.0/18 3778 -131.249.192.0/19 3778 -131.249.224.0/20 3778 -131.249.240.0/21 3778 -131.249.248.0/22 3778 -131.249.252.0/24 3778 -131.249.253.0/24 397380 -131.249.254.0/24 397380 -131.249.255.0/24 3778 -131.250.0.0/17 668 -131.250.128.0/18 668 -131.250.192.0/20 668 -131.250.246.0/24 27066 -131.251.0.0/16 786 -131.252.0.0/16 6366 -131.253.1.0/24 8075 -131.253.3.0/24 8068 -131.253.5.0/24 8075 -131.253.6.0/24 8075 -131.253.8.0/24 8075 -131.253.12.0/22 8075 -131.253.21.0/24 8068 -131.253.22.0/23 23468 -131.253.24.0/21 8075 -131.253.32.0/24 8075 -131.253.33.0/24 8068 -131.253.34.0/23 8075 -131.253.36.0/22 8075 -131.253.40.0/21 8075 -131.253.61.0/24 8075 -131.253.62.0/23 8075 -131.253.72.0/22 8070 -131.253.80.0/20 8070 -131.253.112.0/21 8070 -131.253.120.0/22 8070 -131.253.128.0/17 8075 -131.254.0.0/16 1938 -131.255.4.0/22 61493 -131.255.8.0/22 264436 -131.255.12.0/22 263741 -131.255.16.0/22 264447 -131.255.20.0/22 262271 -131.255.24.0/22 27693 -131.255.28.0/22 264448 -131.255.32.0/22 264449 -131.255.36.0/22 264450 -131.255.40.0/22 266833 -131.255.44.0/22 61893 -131.255.48.0/22 262777 -131.255.52.0/22 262675 -131.255.60.0/22 263699 -131.255.64.0/22 264466 -131.255.68.0/22 61942 -131.255.72.0/23 264523 -131.255.75.0/24 264523 -131.255.76.0/22 264518 -131.255.80.0/22 264470 -131.255.84.0/22 264471 -131.255.88.0/22 264483 -131.255.92.0/23 264475 -131.255.94.0/24 264475 -131.255.96.0/22 263468 -131.255.100.0/22 28165 -131.255.104.0/22 264628 -131.255.108.0/22 264484 -131.255.112.0/22 264487 -131.255.116.0/22 264478 -131.255.120.0/22 264479 -131.255.124.0/22 264480 -131.255.128.0/22 262651 -131.255.132.0/22 264486 -131.255.136.0/22 3549 -131.255.140.0/22 264488 -131.255.144.0/22 264485 -131.255.148.0/22 264503 -131.255.152.0/22 264489 -131.255.156.0/22 264493 -131.255.160.0/22 264490 -131.255.164.0/22 264522 -131.255.168.0/22 262470 -131.255.172.0/22 262491 -131.255.176.0/22 264491 -131.255.180.0/22 263715 -131.255.184.0/22 264492 -131.255.188.0/22 264497 -131.255.192.0/22 262210 -131.255.196.0/22 28265 -131.255.200.0/22 262546 -131.255.204.0/22 263582 -131.255.208.0/22 264502 -131.255.212.0/22 264498 -131.255.216.0/22 264494 -131.255.220.0/22 264499 -131.255.224.0/22 264496 -131.255.228.0/22 264500 -131.255.232.0/22 264495 -131.255.236.0/22 262318 -131.255.244.0/22 262962 -131.255.248.0/22 263712 -131.255.252.0/22 264504 -132.0.0.0/15 385 -132.2.0.0/19 385 -132.2.32.0/20 385 -132.2.48.0/20 721 -132.2.64.0/20 385 -132.2.80.0/20 721 -132.2.96.0/20 385 -132.2.112.0/20 721 -132.2.128.0/19 385 -132.2.160.0/20 721 -132.2.176.0/20 385 -132.2.192.0/20 721 -132.2.208.0/20 385 -132.2.224.0/20 385 -132.2.240.0/20 721 -132.3.0.0/22 399 -132.3.4.0/22 721 -132.3.8.0/22 409 -132.3.12.0/22 427 -132.3.16.0/22 466 -132.3.20.0/22 444 -132.3.24.0/22 450 -132.3.28.0/22 381 -132.3.32.0/22 383 -132.3.36.0/22 395 -132.3.40.0/22 246 -132.3.44.0/22 721 -132.3.48.0/22 721 -132.3.52.0/22 440 -132.3.56.0/22 391 -132.3.60.0/22 497 -132.3.64.0/22 491 -132.3.68.0/22 721 -132.3.72.0/21 721 -132.3.80.0/20 721 -132.3.96.0/21 721 -132.3.104.0/21 246 -132.3.112.0/21 391 -132.3.120.0/21 721 -132.3.128.0/17 721 -132.4.0.0/15 385 -132.6.0.0/15 721 -132.8.0.0/19 246 -132.8.32.0/20 246 -132.8.48.0/20 385 -132.8.64.0/18 385 -132.8.128.0/18 721 -132.8.192.0/19 721 -132.8.224.0/20 721 -132.8.240.0/20 246 -132.9.0.0/16 385 -132.10.0.0/16 385 -132.11.0.0/21 721 -132.11.8.0/23 721 -132.11.10.0/24 721 -132.11.11.0/24 367 -132.11.12.0/24 367 -132.11.13.0/24 721 -132.11.14.0/23 721 -132.11.16.0/22 721 -132.11.20.0/24 721 -132.11.21.0/24 367 -132.11.22.0/24 367 -132.11.23.0/24 721 -132.11.24.0/22 367 -132.11.28.0/23 367 -132.11.30.0/24 721 -132.11.31.0/24 367 -132.11.32.0/24 367 -132.11.33.0/24 721 -132.11.34.0/23 721 -132.11.36.0/22 721 -132.11.40.0/24 721 -132.11.41.0/24 367 -132.11.42.0/24 367 -132.11.43.0/24 721 -132.11.44.0/22 367 -132.11.48.0/23 367 -132.11.50.0/24 721 -132.11.51.0/24 367 -132.11.52.0/23 367 -132.11.54.0/23 721 -132.11.56.0/22 721 -132.11.60.0/24 721 -132.11.61.0/24 367 -132.11.62.0/24 367 -132.11.63.0/24 721 -132.11.64.0/22 367 -132.11.68.0/23 367 -132.11.70.0/24 721 -132.11.71.0/24 367 -132.11.72.0/24 367 -132.11.73.0/24 721 -132.11.74.0/23 367 -132.11.76.0/22 367 -132.11.80.0/20 721 -132.11.96.0/21 721 -132.11.104.0/22 721 -132.11.108.0/23 721 -132.11.110.0/24 721 -132.11.111.0/24 367 -132.11.112.0/24 367 -132.11.113.0/24 721 -132.11.114.0/23 721 -132.11.116.0/22 721 -132.11.120.0/24 721 -132.11.121.0/24 367 -132.11.122.0/24 367 -132.11.123.0/24 721 -132.11.124.0/22 367 -132.11.128.0/23 367 -132.11.130.0/24 721 -132.11.131.0/24 367 -132.11.132.0/24 367 -132.11.133.0/24 721 -132.11.134.0/23 721 -132.11.136.0/22 721 -132.11.140.0/24 721 -132.11.141.0/24 367 -132.11.142.0/24 367 -132.11.143.0/24 721 -132.11.144.0/22 367 -132.11.148.0/23 367 -132.11.150.0/24 721 -132.11.151.0/24 367 -132.11.152.0/23 367 -132.11.154.0/23 721 -132.11.156.0/22 721 -132.11.160.0/24 721 -132.11.161.0/24 367 -132.11.162.0/24 367 -132.11.163.0/24 721 -132.11.164.0/22 721 -132.11.168.0/23 721 -132.11.170.0/24 721 -132.11.171.0/24 367 -132.11.172.0/24 367 -132.11.173.0/24 721 -132.11.174.0/23 721 -132.11.176.0/20 721 -132.11.192.0/22 721 -132.11.196.0/23 721 -132.11.198.0/24 721 -132.11.199.0/24 367 -132.11.200.0/24 367 -132.11.201.0/24 721 -132.11.202.0/23 721 -132.11.204.0/22 367 -132.11.208.0/23 721 -132.11.210.0/24 367 -132.11.211.0/24 721 -132.11.212.0/23 721 -132.11.214.0/23 367 -132.11.216.0/23 367 -132.11.218.0/23 721 -132.11.220.0/22 367 -132.11.224.0/22 367 -132.11.228.0/23 721 -132.11.230.0/23 367 -132.11.232.0/21 721 -132.11.240.0/20 721 -132.12.0.0/16 721 -132.13.0.0/22 721 -132.13.4.0/22 385 -132.13.8.0/24 721 -132.13.9.0/24 385 -132.13.10.0/23 385 -132.13.12.0/24 385 -132.13.13.0/24 721 -132.13.14.0/23 385 -132.13.16.0/21 385 -132.13.24.0/22 385 -132.13.28.0/23 721 -132.13.30.0/23 385 -132.13.32.0/20 385 -132.13.48.0/21 385 -132.13.56.0/23 385 -132.13.58.0/24 385 -132.13.59.0/24 721 -132.13.60.0/23 721 -132.13.62.0/23 385 -132.13.64.0/21 385 -132.13.72.0/22 385 -132.13.76.0/24 385 -132.13.77.0/24 721 -132.13.78.0/23 385 -132.13.80.0/21 385 -132.13.88.0/23 385 -132.13.90.0/24 385 -132.13.91.0/24 721 -132.13.92.0/22 385 -132.13.96.0/21 385 -132.13.104.0/23 385 -132.13.106.0/24 385 -132.13.107.0/24 721 -132.13.108.0/23 721 -132.13.110.0/23 385 -132.13.112.0/21 385 -132.13.120.0/23 385 -132.13.122.0/24 385 -132.13.123.0/24 721 -132.13.124.0/23 721 -132.13.126.0/24 721 -132.13.127.0/24 385 -132.13.128.0/21 385 -132.13.136.0/23 385 -132.13.138.0/24 385 -132.13.139.0/24 721 -132.13.140.0/23 721 -132.13.142.0/24 721 -132.13.143.0/24 385 -132.13.144.0/21 385 -132.13.152.0/23 385 -132.13.154.0/24 385 -132.13.155.0/24 721 -132.13.156.0/23 721 -132.13.158.0/23 385 -132.13.160.0/21 385 -132.13.168.0/22 385 -132.13.172.0/23 721 -132.13.174.0/23 385 -132.13.176.0/21 385 -132.13.184.0/23 385 -132.13.186.0/24 385 -132.13.187.0/24 721 -132.13.188.0/22 721 -132.13.192.0/21 721 -132.13.200.0/22 721 -132.13.204.0/23 721 -132.13.206.0/23 385 -132.13.208.0/21 385 -132.13.216.0/22 385 -132.13.220.0/22 721 -132.13.224.0/21 721 -132.13.232.0/22 721 -132.13.236.0/23 721 -132.13.238.0/23 385 -132.13.240.0/21 385 -132.13.248.0/21 721 -132.14.0.0/16 721 -132.15.0.0/16 409 -132.16.0.0/16 427 -132.17.0.0/16 721 -132.18.0.0/16 385 -132.19.0.0/16 386 -132.20.0.0/16 409 -132.21.0.0/16 721 -132.22.0.0/15 385 -132.24.0.0/18 385 -132.24.64.0/19 385 -132.24.96.0/22 385 -132.24.100.0/24 6040 -132.24.101.0/24 385 -132.24.102.0/23 385 -132.24.104.0/21 385 -132.24.112.0/20 385 -132.24.128.0/17 385 -132.25.0.0/16 386 -132.26.0.0/16 385 -132.27.0.0/16 386 -132.28.0.0/16 385 -132.29.0.0/16 721 -132.30.0.0/16 386 -132.31.0.0/16 721 -132.32.0.0/14 385 -132.36.0.0/15 385 -132.38.0.0/16 385 -132.39.0.0/16 721 -132.40.0.0/16 385 -132.41.0.0/16 386 -132.42.0.0/16 386 -132.43.0.0/16 721 -132.44.0.0/16 721 -132.45.0.0/16 668 -132.46.0.0/15 385 -132.48.0.0/15 385 -132.50.0.0/22 721 -132.50.4.0/22 385 -132.50.8.0/24 721 -132.50.9.0/24 385 -132.50.10.0/23 385 -132.50.12.0/23 721 -132.50.14.0/23 385 -132.50.16.0/21 385 -132.50.24.0/22 385 -132.50.28.0/23 721 -132.50.30.0/23 385 -132.50.32.0/21 385 -132.50.40.0/23 385 -132.50.42.0/24 385 -132.50.43.0/24 721 -132.50.44.0/23 721 -132.50.46.0/23 385 -132.50.48.0/21 385 -132.50.56.0/23 385 -132.50.58.0/24 385 -132.50.59.0/24 721 -132.50.60.0/23 721 -132.50.62.0/23 385 -132.50.64.0/21 385 -132.50.72.0/22 385 -132.50.76.0/24 385 -132.50.77.0/24 721 -132.50.78.0/24 385 -132.50.79.0/24 721 -132.50.80.0/21 385 -132.50.88.0/22 385 -132.50.92.0/23 721 -132.50.94.0/23 385 -132.50.96.0/19 385 -132.50.128.0/19 385 -132.50.160.0/21 385 -132.50.168.0/22 385 -132.50.172.0/24 385 -132.50.173.0/24 721 -132.50.174.0/23 385 -132.50.176.0/20 385 -132.50.192.0/21 385 -132.50.200.0/22 385 -132.50.204.0/23 721 -132.50.206.0/23 385 -132.50.208.0/20 385 -132.50.224.0/21 385 -132.50.232.0/22 385 -132.50.236.0/24 385 -132.50.237.0/24 721 -132.50.238.0/23 385 -132.50.240.0/20 385 -132.51.0.0/16 386 -132.52.0.0/16 385 -132.53.0.0/16 721 -132.54.0.0/16 385 -132.55.0.0/16 721 -132.56.0.0/16 385 -132.57.0.0/16 721 -132.58.0.0/16 385 -132.59.0.0/16 721 -132.60.0.0/16 385 -132.61.0.0/16 427 -132.62.0.0/16 385 -132.63.0.0/16 721 -132.64.0.0/13 378 -132.72.0.0/14 378 -132.76.0.0/15 378 -132.78.0.0/16 378 -132.79.0.0/16 306 -132.80.0.0/12 306 -132.96.0.0/11 306 -132.128.0.0/13 306 -132.136.0.0/16 306 -132.137.0.0/16 721 -132.138.0.0/16 721 -132.139.0.0/16 306 -132.140.0.0/16 721 -132.141.0.0/16 306 -132.142.0.0/23 306 -132.142.2.0/23 721 -132.142.4.0/22 721 -132.142.8.0/21 721 -132.142.16.0/20 721 -132.142.32.0/19 721 -132.142.64.0/18 721 -132.142.128.0/22 721 -132.142.132.0/23 721 -132.142.134.0/24 721 -132.142.135.0/24 306 -132.142.136.0/21 721 -132.142.144.0/20 721 -132.142.160.0/19 721 -132.142.192.0/18 721 -132.143.0.0/16 721 -132.145.0.0/16 31898 -132.146.0.0/16 2856 -132.147.0.0/20 11776 -132.147.16.0/21 11776 -132.147.32.0/19 11776 -132.147.64.0/18 18106 -132.147.224.0/20 36489 -132.148.0.0/16 26496 -132.149.0.0/16 2450 -132.150.0.0/16 2119 -132.151.0.0/16 545 -132.153.3.0/24 2856 -132.153.244.0/22 2856 -132.153.248.0/22 2856 -132.153.252.0/23 2856 -132.153.254.0/24 2856 -132.154.0.0/16 55836 -132.155.56.0/22 41701 -132.156.0.0/21 2665 -132.156.8.0/23 2665 -132.156.10.0/23 2680 -132.156.12.0/23 2680 -132.156.14.0/23 2665 -132.156.16.0/23 2680 -132.156.18.0/23 2665 -132.156.20.0/22 2680 -132.156.24.0/21 2665 -132.156.32.0/21 2665 -132.156.40.0/22 2665 -132.156.44.0/23 2665 -132.156.46.0/23 2680 -132.156.48.0/20 2665 -132.156.64.0/19 2665 -132.156.96.0/20 2665 -132.156.112.0/21 2665 -132.156.120.0/23 2680 -132.156.122.0/23 2665 -132.156.124.0/22 2665 -132.156.128.0/17 2665 -132.157.0.0/16 21575 -132.159.0.0/16 1451 -132.160.0.0/17 6360 -132.160.128.0/18 6360 -132.160.192.0/18 62712 -132.161.0.0/16 22949 -132.162.0.0/16 36368 -132.163.0.0/18 2648 -132.163.64.0/19 2648 -132.163.96.0/23 49 -132.163.128.0/17 2648 -132.165.0.0/16 777 -132.166.0.0/15 777 -132.168.0.0/15 777 -132.170.0.0/24 7939 -132.170.3.0/24 7939 -132.170.4.0/22 7939 -132.170.8.0/23 7939 -132.170.14.0/23 7939 -132.170.16.0/21 7939 -132.170.24.0/22 7939 -132.170.30.0/23 7939 -132.170.32.0/19 7939 -132.170.64.0/18 7939 -132.170.128.0/17 7939 -132.171.0.0/16 1234 -132.172.0.0/16 32982 -132.174.0.0/17 4373 -132.174.128.0/19 4373 -132.174.160.0/21 4373 -132.174.168.0/23 4373 -132.174.170.0/24 3356 -132.174.171.0/24 3549 -132.174.172.0/23 3549 -132.174.174.0/23 3356 -132.174.176.0/24 4373 -132.174.177.0/24 3549 -132.174.178.0/24 3549 -132.174.179.0/24 3356 -132.174.180.0/22 4373 -132.174.184.0/21 4373 -132.174.192.0/18 4373 -132.175.0.0/16 377 -132.176.0.0/16 680 -132.177.0.0/16 11745 -132.178.0.0/16 46662 -132.179.0.0/16 2497 -132.180.0.0/16 680 -132.181.0.0/16 9432 -132.183.0.0/16 40831 -132.184.0.0/16 21575 -132.185.0.0/17 2818 -132.185.128.0/18 2818 -132.185.192.0/19 2818 -132.185.224.0/20 31459 -132.185.240.0/20 2818 -132.187.0.0/16 680 -132.188.0.0/23 14398 -132.188.64.0/20 14398 -132.188.80.0/21 14398 -132.188.92.0/22 18716 -132.188.112.0/21 14398 -132.188.128.0/22 14398 -132.189.76.0/22 8116 -132.189.82.0/24 8116 -132.190.46.0/23 199563 -132.190.48.0/22 199563 -132.190.80.0/24 3549 -132.190.90.0/23 199563 -132.190.92.0/23 199563 -132.190.96.0/24 3356 -132.190.100.0/22 199563 -132.190.104.0/23 199563 -132.190.106.0/24 2516 -132.190.168.0/23 199563 -132.190.200.0/22 199563 -132.190.204.0/23 199563 -132.190.208.0/22 199563 -132.190.212.0/23 199563 -132.190.216.0/23 199563 -132.190.230.0/23 199563 -132.190.232.0/24 2516 -132.190.236.0/23 199563 -132.190.240.0/23 199563 -132.190.242.0/24 2516 -132.191.0.0/16 21575 -132.192.0.0/16 16989 -132.193.0.0/16 668 -132.194.0.0/16 16519 -132.195.0.0/16 680 -132.196.0.0/16 158 -132.197.0.0/16 701 -132.198.0.0/16 1351 -132.199.0.0/16 680 -132.200.0.0/16 10754 -132.203.0.0/16 36786 -132.204.0.0/15 376 -132.206.0.0/16 15318 -132.207.0.0/16 376 -132.208.0.0/14 376 -132.212.0.0/15 376 -132.214.0.0/16 33602 -132.215.0.0/16 376 -132.216.0.0/16 15318 -132.217.0.0/16 32555 -132.218.0.0/16 376 -132.219.0.0/17 376 -132.219.128.0/21 376 -132.219.136.0/24 22953 -132.219.137.0/24 36786 -132.219.138.0/24 22953 -132.219.139.0/24 376 -132.219.140.0/22 376 -132.219.144.0/20 376 -132.219.160.0/19 376 -132.219.192.0/18 376 -132.221.0.0/16 11489 -132.222.0.0/16 17516 -132.225.3.0/24 7381 -132.225.5.0/24 577 -132.225.12.0/24 577 -132.227.0.0/18 1307 -132.227.64.0/19 1307 -132.227.96.0/20 1307 -132.227.112.0/21 1307 -132.227.120.0/23 199813 -132.227.122.0/23 1307 -132.227.124.0/22 1307 -132.227.128.0/17 1307 -132.228.0.0/16 1906 -132.229.0.0/16 1103 -132.230.0.0/16 553 -132.231.0.0/16 680 -132.232.0.0/16 45090 -132.234.0.0/16 7575 -132.235.0.0/16 17135 -132.236.0.0/16 26 -132.237.16.0/22 3614 -132.237.128.0/22 3614 -132.237.132.0/24 30614 -132.237.133.0/24 4637 -132.237.134.0/24 38057 -132.237.135.0/24 30614 -132.237.136.0/24 1294 -132.237.138.0/23 30614 -132.237.141.0/24 30614 -132.237.146.0/24 22992 -132.237.148.0/23 395971 -132.237.151.0/24 3613 -132.237.153.0/24 30614 -132.237.154.0/23 30614 -132.237.156.0/24 1294 -132.237.158.0/24 30614 -132.237.160.0/21 30614 -132.237.169.0/24 30614 -132.237.170.0/23 3614 -132.237.173.0/24 30614 -132.237.174.0/24 30614 -132.237.175.0/24 4637 -132.237.176.0/24 1294 -132.237.177.0/24 30614 -132.237.178.0/24 30614 -132.237.193.0/24 3614 -132.237.194.0/24 3614 -132.237.254.0/23 30614 -132.238.0.0/16 63319 -132.239.0.0/16 7377 -132.241.0.0/16 2152 -132.242.0.0/15 14962 -132.244.64.0/20 5400 -132.244.80.0/20 3549 -132.244.96.0/24 3549 -132.244.212.0/22 3758 -132.244.240.0/24 5400 -132.245.0.0/16 8075 -132.246.0.0/16 25689 -132.247.0.0/16 278 -132.248.0.0/16 278 -132.249.0.0/16 195 -132.250.0.0/16 48 -132.251.0.0/17 21575 -132.251.128.0/18 21575 -132.251.192.0/19 21575 -132.251.224.0/19 27839 -132.252.0.0/16 680 -132.254.0.0/19 10436 -132.254.32.0/20 10436 -132.254.48.0/21 11136 -132.254.56.0/21 10560 -132.254.64.0/20 10436 -132.254.80.0/20 10560 -132.254.96.0/21 10436 -132.254.104.0/21 10560 -132.254.112.0/20 10560 -132.254.128.0/21 10560 -132.254.136.0/21 10436 -132.254.144.0/21 11136 -132.254.192.0/20 11136 -132.254.212.0/22 11136 -132.254.216.0/21 11136 -132.254.232.0/24 11136 -132.255.0.0/22 263692 -132.255.6.0/24 263697 -132.255.7.0/24 263726 -132.255.12.0/22 262980 -132.255.16.0/22 263586 -132.255.20.0/22 27951 -132.255.24.0/22 262286 -132.255.28.0/22 264461 -132.255.32.0/24 264451 -132.255.33.0/24 265076 -132.255.34.0/23 265076 -132.255.36.0/22 264455 -132.255.40.0/22 61908 -132.255.44.0/22 264457 -132.255.48.0/22 264452 -132.255.52.0/22 264462 -132.255.56.0/22 264453 -132.255.60.0/22 52840 -132.255.64.0/22 262730 -132.255.68.0/22 263700 -132.255.72.0/22 264463 -132.255.76.0/22 264456 -132.255.80.0/22 264464 -132.255.84.0/22 264458 -132.255.88.0/22 264472 -132.255.92.0/22 264459 -132.255.96.0/22 1916 -132.255.100.0/22 264460 -132.255.104.0/22 263355 -132.255.108.0/22 264477 -132.255.112.0/22 52436 -132.255.116.0/22 264473 -132.255.120.0/22 264465 -132.255.124.0/22 14178 -132.255.132.0/22 52485 -132.255.136.0/22 263472 -132.255.140.0/22 53223 -132.255.144.0/22 262459 -132.255.148.0/22 53085 -132.255.152.0/22 264508 -132.255.156.0/22 262404 -132.255.160.0/22 264516 -132.255.164.0/22 263717 -132.255.168.0/22 264509 -132.255.172.0/22 264517 -132.255.176.0/22 53048 -132.255.180.0/22 263040 -132.255.184.0/22 264510 -132.255.188.0/22 263504 -132.255.192.0/22 264511 -132.255.196.0/22 264513 -132.255.200.0/23 263720 -132.255.203.0/24 263720 -132.255.204.0/22 264526 -132.255.208.0/22 264635 -132.255.212.0/22 264521 -132.255.216.0/22 264514 -132.255.224.0/22 263716 -132.255.228.0/22 264512 -132.255.232.0/22 264533 -132.255.236.0/22 52439 -132.255.240.0/22 264538 -132.255.244.0/22 264519 -132.255.248.0/22 264520 -132.255.252.0/22 262605 -133.1.0.0/16 4730 -133.2.0.0/16 17523 -133.3.0.0/16 2504 -133.4.0.0/18 55384 -133.4.128.0/18 2500 -133.5.0.0/16 2508 -133.6.0.0/16 17687 -133.7.0.0/16 2907 -133.8.0.0/16 2907 -133.9.0.0/16 17956 -133.10.0.0/16 2907 -133.11.0.0/16 2501 -133.12.0.0/16 2907 -133.13.0.0/16 17960 -133.14.0.0/15 2907 -133.16.0.0/15 2907 -133.18.0.0/16 24282 -133.19.0.0/16 23807 -133.20.0.0/15 2907 -133.23.0.0/16 2907 -133.24.0.0/16 131159 -133.25.0.0/16 55379 -133.26.0.0/16 131919 -133.27.0.0/16 38635 -133.28.0.0/16 55380 -133.29.0.0/16 2907 -133.30.0.0/16 2907 -133.31.0.0/16 55390 -133.32.0.0/16 2907 -133.33.0.0/16 23615 -133.34.0.0/15 2907 -133.36.0.0/16 2516 -133.37.0.0/16 2907 -133.38.0.0/15 2907 -133.40.0.0/16 4713 -133.41.0.0/16 2506 -133.42.0.0/16 24248 -133.43.0.0/16 10014 -133.44.0.0/15 2907 -133.46.0.0/16 2907 -133.47.0.0/16 17687 -133.48.0.0/15 2907 -133.50.0.0/16 2907 -133.51.0.0/16 37917 -133.52.0.0/16 2907 -133.53.0.0/16 4729 -133.54.0.0/18 2907 -133.54.64.0/21 2907 -133.54.76.0/22 2907 -133.54.80.0/20 2907 -133.54.96.0/19 2907 -133.54.128.0/17 2907 -133.55.0.0/16 2907 -133.56.0.0/16 3488 -133.57.0.0/16 2907 -133.58.0.0/16 2907 -133.60.0.0/16 2907 -133.62.0.0/15 2907 -133.64.0.0/16 38641 -133.65.0.0/16 2907 -133.66.0.0/16 17946 -133.67.0.0/16 24261 -133.68.0.0/16 2907 -133.69.0.0/20 2523 -133.69.32.0/20 7660 -133.69.160.0/22 45688 -133.69.168.0/21 45688 -133.69.176.0/24 45688 -133.69.184.0/24 45688 -133.69.192.0/20 2523 -133.70.0.0/16 24268 -133.71.0.0/16 131897 -133.72.0.0/15 2907 -133.74.0.0/17 3488 -133.74.128.0/18 3488 -133.74.192.0/18 2907 -133.75.0.0/16 9591 -133.77.0.0/16 2907 -133.78.0.0/16 2907 -133.79.0.0/16 18087 -133.80.0.0/16 55904 -133.81.0.0/16 2907 -133.82.0.0/15 2907 -133.85.0.0/16 2907 -133.86.0.0/15 2907 -133.88.0.0/21 18068 -133.88.31.0/24 131951 -133.88.32.0/19 18126 -133.88.64.0/18 18126 -133.88.128.0/17 18126 -133.89.0.0/16 2907 -133.90.0.0/16 4713 -133.91.0.0/16 23623 -133.92.0.0/16 58647 -133.94.0.0/15 2907 -133.96.0.0/16 2907 -133.97.0.0/16 58652 -133.98.0.0/16 2907 -133.99.0.0/16 2497 -133.100.0.0/16 18148 -133.101.0.0/16 24254 -133.102.0.0/15 2907 -133.104.0.0/16 2907 -133.105.0.0/16 17944 -133.106.0.0/21 2907 -133.106.8.0/21 138384 -133.106.16.0/20 138384 -133.106.32.0/19 138384 -133.106.64.0/18 138384 -133.106.128.0/17 138384 -133.108.42.0/23 18139 -133.108.58.0/24 18139 -133.108.61.0/24 18139 -133.108.63.0/24 18139 -133.110.0.0/15 2497 -133.112.0.0/16 2522 -133.121.0.0/16 17676 -133.123.0.0/16 7522 -133.125.0.0/16 7684 -133.127.0.0/16 2497 -133.130.4.0/22 58791 -133.130.8.0/24 58786 -133.130.16.0/20 7506 -133.130.32.0/19 7506 -133.130.64.0/18 7506 -133.130.128.0/17 2514 -133.131.0.0/16 9595 -133.132.0.0/16 9595 -133.137.0.0/16 2497 -133.138.0.0/16 2500 -133.139.18.0/23 131893 -133.139.20.0/23 131893 -133.139.25.0/24 131893 -133.139.26.0/24 131893 -133.139.34.0/24 131893 -133.139.44.0/23 131893 -133.139.55.0/24 131893 -133.139.56.0/24 131893 -133.139.61.0/24 131893 -133.139.65.0/24 131893 -133.139.70.0/23 131893 -133.139.74.0/24 131893 -133.139.77.0/24 131893 -133.139.88.0/24 131893 -133.139.97.0/24 131893 -133.139.108.0/23 131893 -133.139.114.0/24 131893 -133.139.241.0/24 131893 -133.139.242.0/24 131893 -133.139.248.0/24 131893 -133.140.0.0/16 18097 -133.142.0.0/16 2497 -133.144.0.0/18 2500 -133.144.64.0/21 2500 -133.144.72.0/21 59109 -133.144.80.0/20 2500 -133.144.96.0/19 2500 -133.144.128.0/17 2500 -133.145.0.0/16 2526 -133.148.0.0/16 10021 -133.149.0.0/18 4677 -133.149.128.0/18 4677 -133.149.192.0/18 2519 -133.152.0.0/17 38634 -133.152.128.0/17 17819 -133.153.0.0/16 17509 -133.155.0.0/16 7524 -133.158.0.0/16 17510 -133.159.0.0/16 2497 -133.162.0.0/15 2510 -133.164.0.0/16 11363 -133.167.0.0/16 9371 -133.169.0.0/16 2497 -133.170.0.0/16 4713 -133.173.0.0/16 2497 -133.175.0.0/16 2519 -133.183.96.0/19 18071 -133.183.128.0/19 18071 -133.186.0.0/18 10010 -133.186.64.0/18 131915 -133.186.128.0/19 45974 -133.186.160.0/22 45974 -133.186.164.0/24 55629 -133.186.165.0/24 45974 -133.186.166.0/23 45974 -133.186.168.0/21 45974 -133.186.176.0/20 45974 -133.186.192.0/18 45974 -133.187.0.0/16 2907 -133.188.0.0/16 4729 -133.192.0.0/16 2516 -133.194.0.0/16 2497 -133.200.0.0/13 2518 -133.208.0.0/15 2518 -133.215.0.0/16 2497 -133.217.0.0/16 18069 -133.218.0.0/16 2497 -133.220.0.0/16 2907 -133.221.0.0/16 2497 -133.223.0.0/21 17707 -133.223.8.0/22 17707 -133.223.12.0/23 17707 -133.223.14.0/24 17707 -133.223.15.0/24 17661 -133.223.16.0/20 17661 -133.223.32.0/19 17661 -133.223.64.0/20 17661 -133.223.80.0/21 17661 -133.225.214.0/24 17676 -133.226.0.0/20 131934 -133.226.32.0/19 4725 -133.226.64.0/18 4725 -133.226.128.0/19 4725 -133.232.0.0/19 7682 -133.232.64.0/18 2514 -133.232.128.0/17 2514 -133.236.0.0/16 2497 -133.237.0.0/16 23820 -133.238.0.0/21 2497 -133.240.0.0/16 7687 -133.242.0.0/16 7684 -133.243.0.0/16 9355 -133.245.0.0/16 2497 -133.247.0.0/18 131918 -133.247.64.0/21 131918 -133.247.80.0/20 4675 -133.247.96.0/19 4675 -133.247.128.0/17 4675 -133.249.0.0/16 17947 -133.250.0.0/16 9357 -133.251.225.0/24 2497 -133.253.0.0/16 2516 -133.254.0.0/16 2497 -134.0.8.0/21 197712 -134.0.16.0/21 56730 -134.0.24.0/21 48823 -134.0.32.0/21 5576 -134.0.40.0/23 5576 -134.0.42.0/24 5576 -134.0.44.0/24 5576 -134.0.48.0/22 5576 -134.0.56.0/22 5576 -134.0.61.0/24 5576 -134.0.62.0/23 5576 -134.0.64.0/21 41695 -134.0.72.0/21 35914 -134.0.80.0/21 58173 -134.0.88.0/22 8315 -134.0.92.0/23 8315 -134.0.96.0/20 29124 -134.0.112.0/21 197695 -134.0.120.0/21 57353 -134.0.192.0/20 28885 -134.0.208.0/23 28885 -134.0.210.0/24 28885 -134.0.212.0/22 28885 -134.0.216.0/22 8529 -134.0.220.0/22 28885 -134.1.0.0/16 680 -134.2.0.0/16 553 -134.3.0.0/16 6830 -134.4.0.0/16 31 -134.6.0.0/18 16504 -134.6.64.0/19 16504 -134.6.96.0/24 46524 -134.6.97.0/24 16504 -134.6.98.0/23 16504 -134.6.100.0/22 16504 -134.6.104.0/21 16504 -134.6.112.0/20 16504 -134.6.128.0/17 16504 -134.7.0.0/16 38083 -134.8.0.0/24 15395 -134.8.1.0/24 45187 -134.8.2.0/24 19994 -134.9.0.0/18 44 -134.9.64.0/20 44 -134.9.80.0/21 44 -134.9.88.0/21 45 -134.9.96.0/19 45 -134.9.128.0/18 45 -134.9.192.0/19 45 -134.9.224.0/20 45 -134.9.240.0/21 45 -134.9.248.0/22 45 -134.9.252.0/23 45 -134.9.254.0/24 45 -134.9.255.0/24 44 -134.10.0.0/16 395501 -134.11.0.0/16 6041 -134.12.0.0/17 270 -134.17.0.0/17 25106 -134.17.128.0/18 25106 -134.17.208.0/20 25106 -134.17.224.0/20 25106 -134.19.0.0/17 57353 -134.19.128.0/21 204137 -134.19.136.0/21 16354 -134.19.144.0/21 50477 -134.19.152.0/24 57432 -134.19.153.0/24 50477 -134.19.154.0/23 50477 -134.19.156.0/22 50477 -134.19.160.0/21 30827 -134.19.168.0/21 201602 -134.19.176.0/20 49453 -134.19.200.0/21 198208 -134.19.208.0/21 196925 -134.19.216.0/22 196925 -134.19.220.0/24 199311 -134.19.221.0/24 196925 -134.19.222.0/23 196925 -134.19.224.0/19 16010 -134.20.0.0/16 10702 -134.21.0.0/16 559 -134.24.0.0/19 4266 -134.24.32.0/19 4264 -134.24.64.0/23 16959 -134.24.66.0/23 4266 -134.24.68.0/22 4266 -134.24.72.0/21 4266 -134.24.80.0/21 17233 -134.24.88.0/21 4266 -134.24.96.0/22 4266 -134.24.100.0/24 4268 -134.24.101.0/24 4266 -134.24.102.0/23 4266 -134.24.104.0/21 4266 -134.24.112.0/21 4266 -134.24.120.0/23 4266 -134.24.122.0/24 4266 -134.24.123.0/24 4268 -134.24.124.0/24 4266 -134.24.125.0/24 4268 -134.24.126.0/23 4266 -134.24.128.0/22 4265 -134.24.132.0/22 54981 -134.24.136.0/21 4265 -134.24.144.0/23 17232 -134.24.146.0/23 2386 -134.24.148.0/23 2386 -134.24.150.0/23 17232 -134.24.152.0/24 4266 -134.24.153.0/24 4268 -134.24.154.0/23 4266 -134.24.156.0/22 4266 -134.24.160.0/24 4266 -134.24.161.0/24 17227 -134.24.162.0/24 17231 -134.24.163.0/24 17233 -134.24.164.0/24 17229 -134.24.165.0/24 17228 -134.24.166.0/24 17226 -134.24.167.0/24 7018 -134.24.168.0/24 4266 -134.24.169.0/24 7018 -134.24.170.0/24 4266 -134.24.171.0/24 17232 -134.24.172.0/24 4264 -134.24.173.0/24 17225 -134.24.174.0/24 4263 -134.24.175.0/24 16967 -134.24.176.0/24 16966 -134.24.177.0/24 7018 -134.24.178.0/24 7018 -134.24.179.0/24 4266 -134.24.180.0/22 4266 -134.24.184.0/21 4266 -134.24.192.0/21 4266 -134.24.200.0/23 4266 -134.24.202.0/23 7018 -134.24.204.0/22 17233 -134.24.208.0/21 7018 -134.24.216.0/22 17226 -134.24.220.0/22 17227 -134.24.224.0/22 17229 -134.24.228.0/22 4264 -134.24.232.0/22 17232 -134.24.236.0/22 17225 -134.24.240.0/22 17231 -134.24.244.0/22 17228 -134.24.248.0/22 4266 -134.24.252.0/23 4266 -134.24.254.0/23 7018 -134.25.0.0/16 47708 -134.28.0.0/16 680 -134.29.0.0/16 675 -134.30.0.0/16 680 -134.32.0.0/16 72 -134.34.0.0/16 553 -134.35.0.0/16 30873 -134.36.0.0/16 786 -134.37.0.0/16 25213 -134.38.48.0/22 16570 -134.39.0.0/16 10430 -134.41.0.0/16 855 -134.42.96.0/24 2828 -134.42.99.0/24 53712 -134.42.112.0/20 53712 -134.42.144.0/20 53712 -134.42.176.0/21 53712 -134.42.184.0/22 53712 -134.42.188.0/23 53712 -134.42.192.0/19 53712 -134.42.224.0/24 4515 -134.42.225.0/24 3758 -134.42.226.0/24 1221 -134.42.227.0/24 2516 -134.42.228.0/24 2686 -134.42.229.0/24 53712 -134.42.232.0/24 53712 -134.42.240.0/23 2828 -134.42.242.0/24 2828 -134.43.0.0/21 27382 -134.45.0.0/16 395226 -134.47.0.0/16 2119 -134.48.0.0/16 1736 -134.49.0.0/18 23138 -134.49.64.0/20 23138 -134.49.80.0/24 35951 -134.49.81.0/24 23138 -134.49.82.0/23 23138 -134.49.84.0/22 23138 -134.49.88.0/21 23138 -134.49.96.0/19 23138 -134.49.128.0/17 23138 -134.50.0.0/16 11252 -134.53.0.0/16 22968 -134.54.0.0/16 31612 -134.55.0.0/16 293 -134.56.0.0/16 23089 -134.58.0.0/16 2611 -134.59.0.0/16 2200 -134.60.0.0/16 553 -134.61.0.0/16 47610 -134.62.0.0/15 394919 -134.64.0.0/16 394919 -134.65.4.0/24 27263 -134.65.40.0/21 27263 -134.65.160.0/22 27263 -134.65.173.0/24 27263 -134.65.186.0/24 27263 -134.65.196.0/24 27263 -134.65.200.0/22 27263 -134.67.0.0/16 14298 -134.68.0.0/16 87 -134.69.0.0/16 14486 -134.70.0.0/21 46558 -134.70.8.0/21 31898 -134.70.16.0/22 31898 -134.70.24.0/21 31898 -134.70.32.0/22 31898 -134.70.40.0/21 31898 -134.70.48.0/22 31898 -134.70.56.0/21 31898 -134.70.64.0/22 31898 -134.70.72.0/21 31898 -134.70.80.0/20 31898 -134.70.96.0/20 31898 -134.70.112.0/21 31898 -134.70.120.0/22 31898 -134.70.132.0/22 31898 -134.71.0.0/16 30679 -134.73.0.0/19 46573 -134.73.32.0/20 46573 -134.73.48.0/23 46573 -134.73.50.0/24 46573 -134.73.51.0/24 397086 -134.73.52.0/22 46573 -134.73.56.0/21 46573 -134.73.64.0/22 46573 -134.73.68.0/23 46573 -134.73.70.0/24 46573 -134.73.71.0/24 397086 -134.73.72.0/22 46573 -134.73.77.0/24 46573 -134.73.78.0/23 46573 -134.73.80.0/20 46573 -134.73.96.0/19 46573 -134.73.128.0/17 46573 -134.74.0.0/16 31822 -134.75.0.0/19 1237 -134.75.32.0/20 1237 -134.75.48.0/22 1237 -134.75.52.0/23 1237 -134.75.54.0/24 1237 -134.75.55.0/24 10159 -134.75.56.0/21 1237 -134.75.64.0/19 1237 -134.75.96.0/20 1237 -134.75.112.0/21 1237 -134.75.120.0/23 1237 -134.75.122.0/24 9949 -134.75.123.0/24 1237 -134.75.124.0/24 1237 -134.75.125.0/24 17579 -134.75.126.0/23 1237 -134.75.128.0/20 1237 -134.75.144.0/22 1237 -134.75.148.0/23 1237 -134.75.150.0/24 1237 -134.75.151.0/24 17595 -134.75.152.0/21 1237 -134.75.160.0/19 1237 -134.75.192.0/22 1237 -134.75.196.0/24 1237 -134.75.197.0/24 9318 -134.75.198.0/23 1237 -134.75.200.0/21 1237 -134.75.208.0/21 1237 -134.75.216.0/24 1237 -134.75.217.0/24 45363 -134.75.218.0/23 1237 -134.75.220.0/22 1237 -134.75.224.0/23 1237 -134.75.226.0/24 9870 -134.75.227.0/24 1237 -134.75.228.0/22 1237 -134.75.232.0/21 1237 -134.75.240.0/20 1237 -134.76.0.0/16 680 -134.78.0.0/17 523 -134.78.128.0/18 523 -134.78.192.0/19 523 -134.78.224.0/20 523 -134.78.240.0/21 1541 -134.78.248.0/21 523 -134.79.0.0/16 3671 -134.80.0.0/20 721 -134.80.16.0/21 721 -134.80.24.0/22 1531 -134.80.28.0/22 721 -134.80.32.0/19 721 -134.80.64.0/18 721 -134.80.128.0/18 721 -134.80.192.0/20 721 -134.80.208.0/21 1541 -134.80.216.0/21 721 -134.80.224.0/19 721 -134.82.0.0/16 40591 -134.83.0.0/16 786 -134.84.0.0/16 217 -134.86.0.0/16 13541 -134.87.0.0/19 271 -134.87.32.0/19 16462 -134.87.64.0/18 271 -134.87.128.0/18 16462 -134.87.192.0/18 271 -134.88.0.0/16 394003 -134.89.0.0/16 14706 -134.90.0.0/17 20771 -134.90.128.0/21 198252 -134.90.136.0/21 198330 -134.90.144.0/21 50304 -134.90.152.0/21 44507 -134.90.160.0/19 39927 -134.90.192.0/22 31151 -134.90.208.0/21 12389 -134.90.224.0/20 48500 -134.90.240.0/21 198380 -134.90.248.0/21 45015 -134.91.0.0/16 680 -134.93.0.0/16 2857 -134.94.0.0/16 680 -134.95.0.0/16 5520 -134.96.0.0/16 680 -134.97.0.0/23 28748 -134.97.2.0/23 3209 -134.97.4.0/24 61157 -134.97.5.0/24 28748 -134.97.6.0/23 28748 -134.97.8.0/21 28748 -134.97.16.0/23 28748 -134.97.18.0/24 45794 -134.97.19.0/24 28748 -134.97.20.0/22 28748 -134.97.24.0/21 28748 -134.97.32.0/19 28748 -134.97.64.0/18 28748 -134.97.128.0/17 203761 -134.98.0.0/15 3209 -134.100.0.0/16 680 -134.101.0.0/21 8881 -134.101.8.0/21 44229 -134.101.16.0/20 12897 -134.101.32.0/19 12693 -134.101.126.0/23 209545 -134.101.128.0/17 15943 -134.102.0.0/16 680 -134.103.0.0/16 553 -134.104.0.0/16 680 -134.105.0.0/16 42873 -134.106.0.0/16 680 -134.107.0.0/17 680 -134.107.128.0/18 680 -134.107.192.0/23 680 -134.107.194.0/24 680 -134.107.195.0/24 42873 -134.107.196.0/22 680 -134.107.200.0/23 680 -134.107.202.0/24 42873 -134.107.203.0/24 680 -134.107.204.0/22 680 -134.107.208.0/24 680 -134.107.209.0/24 5520 -134.107.210.0/23 680 -134.107.212.0/22 680 -134.107.216.0/23 5520 -134.107.218.0/23 680 -134.107.220.0/22 680 -134.107.224.0/24 680 -134.107.225.0/24 5520 -134.107.226.0/23 5520 -134.107.228.0/22 680 -134.107.232.0/21 680 -134.107.240.0/20 680 -134.108.0.0/16 553 -134.109.0.0/16 680 -134.110.0.0/16 680 -134.111.0.0/16 394990 -134.112.0.0/16 10455 -134.113.0.0/16 11309 -134.114.0.0/16 21582 -134.115.0.0/16 7575 -134.117.0.0/16 29773 -134.118.96.0/19 270 -134.119.0.0/23 34011 -134.119.2.0/24 8972 -134.119.3.0/24 34011 -134.119.4.0/23 34011 -134.119.7.0/24 8972 -134.119.8.0/22 34011 -134.119.12.0/24 8972 -134.119.13.0/24 34011 -134.119.14.0/23 8972 -134.119.16.0/24 8972 -134.119.17.0/24 34011 -134.119.18.0/24 34011 -134.119.19.0/24 8972 -134.119.20.0/23 34011 -134.119.22.0/23 8972 -134.119.24.0/24 34011 -134.119.25.0/24 8972 -134.119.26.0/24 34011 -134.119.27.0/24 8972 -134.119.28.0/24 34011 -134.119.29.0/24 8972 -134.119.30.0/24 34011 -134.119.31.0/24 8972 -134.119.32.0/24 34011 -134.119.33.0/24 8972 -134.119.35.0/24 8972 -134.119.36.0/24 34011 -134.119.37.0/24 8972 -134.119.38.0/24 8972 -134.119.39.0/24 34011 -134.119.40.0/23 8972 -134.119.42.0/24 34011 -134.119.43.0/24 8972 -134.119.44.0/23 8972 -134.119.46.0/24 34011 -134.119.47.0/24 8972 -134.119.48.0/24 8972 -134.119.49.0/24 34011 -134.119.50.0/23 8972 -134.119.52.0/23 8972 -134.119.54.0/24 8972 -134.119.55.0/24 34011 -134.119.56.0/21 8972 -134.119.64.0/20 8972 -134.119.80.0/22 8972 -134.119.84.0/24 8972 -134.119.85.0/24 34011 -134.119.86.0/24 34011 -134.119.87.0/24 8972 -134.119.88.0/21 8972 -134.119.96.0/21 8972 -134.119.104.0/22 8972 -134.119.108.0/23 8972 -134.119.110.0/24 8972 -134.119.111.0/24 34011 -134.119.112.0/20 8972 -134.119.128.0/19 8972 -134.119.160.0/20 8972 -134.119.176.0/20 29066 -134.119.192.0/19 29066 -134.119.224.0/21 34011 -134.119.232.0/24 34011 -134.119.233.0/24 8972 -134.119.234.0/23 8972 -134.119.236.0/23 8972 -134.119.238.0/24 8972 -134.119.240.0/23 34011 -134.119.243.0/24 8972 -134.119.244.0/22 34011 -134.119.248.0/24 34011 -134.119.249.0/24 8972 -134.119.250.0/24 8972 -134.119.252.0/23 34011 -134.119.254.0/24 34011 -134.121.0.0/16 11827 -134.122.224.0/24 7385 -134.122.255.0/24 7385 -134.124.0.0/16 46832 -134.125.0.0/16 1761 -134.126.0.0/16 10357 -134.128.40.0/22 3549 -134.128.80.0/22 29240 -134.128.84.0/22 8612 -134.128.88.0/22 8612 -134.128.92.0/22 1257 -134.129.0.0/16 6263 -134.130.0.0/16 47610 -134.131.0.0/16 132 -134.132.22.0/23 8896 -134.132.30.0/24 22717 -134.132.32.0/22 2712 -134.132.40.0/21 22717 -134.132.48.0/20 22717 -134.132.64.0/24 22717 -134.132.68.0/24 9822 -134.132.72.0/22 22717 -134.132.76.0/23 22717 -134.132.224.0/23 62 -134.132.226.0/24 62 -134.134.0.0/16 4983 -134.135.0.0/24 721 -134.135.1.0/24 27064 -134.135.2.0/23 721 -134.135.4.0/22 721 -134.135.8.0/21 721 -134.135.16.0/20 27064 -134.135.32.0/20 721 -134.135.48.0/20 27065 -134.135.64.0/20 27064 -134.135.80.0/20 721 -134.135.96.0/19 27064 -134.135.128.0/18 721 -134.135.192.0/20 721 -134.135.208.0/20 27064 -134.135.224.0/22 721 -134.135.228.0/23 27064 -134.135.230.0/24 27064 -134.135.231.0/24 721 -134.135.232.0/23 27064 -134.135.234.0/24 27064 -134.135.235.0/24 721 -134.135.236.0/23 27064 -134.135.238.0/24 27064 -134.135.239.0/24 721 -134.135.240.0/23 27064 -134.135.242.0/24 27064 -134.135.243.0/24 721 -134.135.244.0/23 721 -134.135.246.0/24 27064 -134.135.247.0/24 721 -134.135.248.0/21 27064 -134.136.0.0/16 132 -134.137.0.0/16 385 -134.138.0.0/16 158 -134.139.0.0/16 2152 -134.140.0.0/16 32432 -134.141.0.0/16 6363 -134.144.68.0/24 38809 -134.144.78.0/24 3918 -134.144.82.0/23 3918 -134.144.108.0/24 38809 -134.144.182.0/24 3918 -134.144.240.0/23 2687 -134.144.244.0/23 24435 -134.145.73.0/24 3917 -134.145.75.0/24 3917 -134.145.188.0/23 3917 -134.145.194.0/23 3917 -134.146.0.0/21 3917 -134.146.8.0/23 3917 -134.146.10.0/24 3917 -134.146.11.0/24 5384 -134.146.12.0/22 3917 -134.146.16.0/20 3917 -134.146.32.0/19 3917 -134.146.64.0/18 3917 -134.146.128.0/18 3917 -134.146.192.0/23 3917 -134.146.194.0/24 2119 -134.146.195.0/24 3917 -134.146.196.0/24 3917 -134.146.197.0/24 8968 -134.146.198.0/23 3917 -134.146.200.0/21 3917 -134.146.208.0/20 3917 -134.146.224.0/20 3917 -134.146.240.0/23 3918 -134.146.242.0/23 3917 -134.146.244.0/22 3917 -134.146.248.0/21 3917 -134.147.0.0/16 29484 -134.148.0.0/16 7575 -134.150.6.0/23 7843 -134.151.0.0/16 786 -134.152.0.0/16 6039 -134.153.0.0/16 6579 -134.154.0.0/16 2152 -134.155.0.0/16 553 -134.156.0.0/16 20239 -134.157.0.0/16 1307 -134.158.0.0/18 789 -134.158.64.0/19 789 -134.158.96.0/20 789 -134.158.112.0/21 789 -134.158.120.0/21 2200 -134.158.128.0/17 789 -134.159.0.0/18 4637 -134.159.64.0/19 4637 -134.159.96.0/23 4637 -134.159.98.0/24 4637 -134.159.99.0/24 10455 -134.159.100.0/22 4637 -134.159.104.0/21 4637 -134.159.112.0/20 4637 -134.159.128.0/19 4637 -134.159.160.0/20 4637 -134.159.176.0/24 4637 -134.159.177.0/24 17744 -134.159.178.0/23 4637 -134.159.180.0/22 4637 -134.159.184.0/21 4637 -134.159.192.0/18 4637 -134.160.0.0/17 18128 -134.160.128.0/19 18128 -134.160.160.0/20 18128 -134.160.176.0/21 18128 -134.160.184.0/23 18128 -134.160.186.0/24 2907 -134.160.187.0/24 18128 -134.160.188.0/22 2907 -134.160.192.0/18 18128 -134.161.0.0/16 22594 -134.162.0.0/18 3917 -134.162.64.0/19 3917 -134.162.96.0/23 3917 -134.162.98.0/24 3917 -134.162.99.0/24 6471 -134.162.100.0/24 6471 -134.162.101.0/24 3917 -134.162.102.0/23 3917 -134.162.104.0/21 3917 -134.162.112.0/20 3917 -134.162.128.0/17 3917 -134.163.0.0/16 11355 -134.164.0.0/16 668 -134.166.0.0/17 668 -134.166.128.0/22 668 -134.166.132.0/23 668 -134.167.0.0/16 291 -134.169.0.0/16 680 -134.170.0.0/16 8075 -134.171.0.0/18 680 -134.171.64.0/20 680 -134.171.80.0/20 6471 -134.171.96.0/19 6471 -134.171.128.0/19 6471 -134.171.160.0/21 6471 -134.171.168.0/24 6471 -134.171.169.0/24 11340 -134.171.170.0/23 6471 -134.171.172.0/22 6471 -134.171.176.0/20 6471 -134.171.192.0/18 6471 -134.173.0.0/16 3659 -134.174.0.0/16 40127 -134.175.0.0/16 45090 -134.176.0.0/16 680 -134.178.0.0/16 23667 -134.179.0.0/16 26854 -134.180.0.0/17 4704 -134.180.128.0/17 2519 -134.181.0.0/16 17152 -134.184.0.0/16 2611 -134.186.0.0/15 1226 -134.188.0.0/16 42808 -134.190.0.0/16 8111 -134.191.192.0/24 4983 -134.191.195.0/24 4983 -134.191.196.0/24 4983 -134.191.204.0/22 4983 -134.191.208.0/24 4983 -134.191.214.0/24 174 -134.191.216.0/22 4983 -134.191.220.0/23 4983 -134.191.227.0/24 4983 -134.191.228.0/24 4983 -134.191.231.0/24 4983 -134.191.232.0/23 4983 -134.191.236.0/22 4983 -134.191.240.0/22 4983 -134.191.244.0/24 4983 -134.191.246.0/23 4983 -134.191.249.0/24 4983 -134.192.0.0/16 46543 -134.193.0.0/16 3390 -134.194.0.0/16 289 -134.196.0.0/16 17552 -134.197.0.0/16 3851 -134.198.0.0/16 36269 -134.199.32.0/22 201542 -134.199.48.0/21 395279 -134.199.56.0/22 395279 -134.199.63.0/24 395279 -134.201.80.0/22 25876 -134.201.88.0/21 25876 -134.201.96.0/22 25876 -134.201.128.0/17 25876 -134.202.0.0/20 61317 -134.202.16.0/21 61317 -134.202.24.0/21 207461 -134.202.32.0/19 61317 -134.202.128.0/21 61317 -134.202.250.0/24 207461 -134.202.252.0/24 207461 -134.202.254.0/24 61317 -134.202.255.0/24 207461 -134.204.0.0/21 16504 -134.204.8.0/23 16504 -134.204.10.0/24 46524 -134.204.11.0/24 16504 -134.204.12.0/22 16504 -134.204.16.0/20 16504 -134.204.32.0/19 16504 -134.204.64.0/18 16504 -134.204.176.0/21 18723 -134.204.193.0/24 18723 -134.204.208.0/24 18723 -134.204.218.0/24 18723 -134.204.220.0/23 18723 -134.204.222.0/24 18723 -134.204.224.0/24 18723 -134.204.228.0/24 18723 -134.204.236.0/22 18723 -134.205.0.0/17 6042 -134.205.128.0/18 6042 -134.205.192.0/22 6042 -134.205.196.0/24 6042 -134.205.197.0/24 385 -134.205.198.0/23 6042 -134.205.200.0/21 6042 -134.205.208.0/20 6042 -134.205.224.0/20 6042 -134.205.240.0/22 6042 -134.205.244.0/23 6042 -134.205.246.0/24 385 -134.205.247.0/24 6042 -134.205.248.0/21 6042 -134.206.0.0/16 1725 -134.207.0.0/16 5058 -134.208.0.0/16 1659 -134.209.0.0/16 14061 -134.210.0.0/16 21976 -134.211.0.0/16 56131 -134.212.0.0/16 1715 -134.213.0.0/16 15395 -134.214.0.0/16 2060 -134.215.0.0/16 4181 -134.216.0.0/16 22586 -134.217.0.0/22 35928 -134.217.6.0/24 35928 -134.217.30.0/24 35928 -134.217.64.0/22 35928 -134.217.112.0/22 35928 -134.217.160.0/21 35928 -134.217.176.0/23 35928 -134.217.180.0/22 35928 -134.217.184.0/22 35928 -134.217.192.0/22 35928 -134.217.200.0/23 35928 -134.217.202.0/24 35928 -134.217.204.0/22 35928 -134.217.236.0/22 35928 -134.219.0.0/16 786 -134.220.0.0/16 786 -134.221.0.0/16 1103 -134.222.0.0/16 286 -134.223.0.0/16 1906 -134.224.0.0/16 3479 -134.225.0.0/16 786 -134.226.0.0/16 1213 -134.227.0.0/16 9159 -134.228.0.0/16 13490 -134.229.9.0/24 27064 -134.229.10.0/24 27064 -134.229.12.0/22 27064 -134.229.16.0/23 27064 -134.229.19.0/24 27064 -134.229.25.0/24 27064 -134.229.40.0/24 27064 -134.229.48.0/24 27064 -134.229.52.0/24 27064 -134.229.58.0/24 27064 -134.229.68.0/24 1733 -134.229.134.0/24 27066 -134.229.176.0/24 27066 -134.229.208.0/24 27065 -134.229.216.0/24 27065 -134.229.220.0/24 27065 -134.231.0.0/16 25631 -134.232.0.0/16 1569 -134.233.0.0/21 721 -134.233.8.0/23 531 -134.233.10.0/23 721 -134.233.12.0/22 721 -134.233.16.0/23 721 -134.233.18.0/24 531 -134.233.19.0/24 721 -134.233.20.0/22 531 -134.233.24.0/21 531 -134.233.32.0/22 721 -134.233.36.0/23 721 -134.233.38.0/23 531 -134.233.40.0/21 531 -134.233.48.0/23 531 -134.233.50.0/23 721 -134.233.52.0/22 721 -134.233.56.0/22 721 -134.233.60.0/22 531 -134.233.64.0/18 531 -134.233.128.0/18 531 -134.233.192.0/21 721 -134.233.200.0/24 531 -134.233.201.0/24 721 -134.233.202.0/24 531 -134.233.203.0/24 721 -134.233.204.0/22 721 -134.233.208.0/21 531 -134.233.216.0/22 531 -134.233.220.0/23 721 -134.233.222.0/23 531 -134.233.224.0/21 721 -134.233.232.0/24 531 -134.233.233.0/24 721 -134.233.234.0/24 531 -134.233.235.0/24 721 -134.233.236.0/22 721 -134.233.240.0/20 531 -134.234.0.0/16 1586 -134.236.0.0/16 131090 -134.237.0.0/16 4725 -134.238.0.0/16 16761 -134.239.128.0/19 201771 -134.239.192.0/22 201771 -134.240.0.0/16 668 -134.241.0.0/17 1256 -134.241.128.0/20 1256 -134.241.144.0/20 8067 -134.241.160.0/19 1256 -134.241.192.0/18 1256 -134.242.20.0/22 22787 -134.242.24.0/24 22787 -134.242.52.0/22 13951 -134.242.56.0/23 22787 -134.242.64.0/22 22787 -134.242.90.0/23 22787 -134.242.92.0/22 22787 -134.242.98.0/24 22787 -134.242.104.0/21 22787 -134.242.112.0/21 22787 -134.242.126.0/24 22787 -134.242.128.0/23 22787 -134.242.132.0/23 22787 -134.242.136.0/24 22787 -134.242.138.0/24 22787 -134.242.160.0/19 22787 -134.242.220.0/24 22787 -134.242.225.0/24 22787 -134.242.238.0/24 22787 -134.242.240.0/23 22787 -134.243.0.0/16 33194 -134.244.5.0/24 22216 -134.244.12.0/22 22216 -134.244.22.0/24 22216 -134.244.24.0/24 22216 -134.244.26.0/23 22216 -134.244.28.0/23 22216 -134.244.30.0/24 22216 -134.244.32.0/21 22216 -134.244.90.0/23 22216 -134.244.103.0/24 22216 -134.244.109.0/24 22216 -134.244.110.0/24 22216 -134.244.112.0/24 22216 -134.244.116.0/23 22216 -134.244.122.0/24 22216 -134.244.124.0/24 22216 -134.244.160.0/24 22216 -134.244.163.0/24 22216 -134.244.176.0/21 22216 -134.244.188.0/24 22216 -134.244.203.0/24 22216 -134.244.218.0/23 22216 -134.244.250.0/23 22216 -134.244.252.0/23 22216 -134.245.0.0/16 680 -134.246.0.0/16 2103 -134.247.0.0/16 34127 -134.249.0.0/16 15895 -134.250.0.0/16 210 -134.251.76.0/24 132596 -134.252.0.0/16 3562 -134.253.0.0/16 377 -134.255.0.0/17 5483 -134.255.128.0/19 48642 -134.255.160.0/20 198292 -134.255.176.0/21 31034 -134.255.184.0/21 51678 -134.255.192.0/22 60522 -134.255.196.0/23 16322 -134.255.198.0/24 199610 -134.255.199.0/24 43260 -134.255.200.0/21 16322 -134.255.208.0/23 199610 -134.255.210.0/23 206057 -134.255.212.0/23 199610 -134.255.214.0/24 199610 -134.255.215.0/24 200738 -134.255.216.0/21 197071 -134.255.224.0/20 197071 -134.255.241.0/24 43618 -134.255.242.0/24 50129 -134.255.243.0/24 25369 -134.255.244.0/24 31400 -134.255.245.0/24 16322 -134.255.246.0/24 16322 -134.255.247.0/24 31400 -134.255.248.0/24 42440 -134.255.249.0/24 16322 -134.255.250.0/24 60609 -134.255.251.0/24 199610 -134.255.252.0/22 197071 -135.0.0.0/16 54614 -135.1.0.0/16 10455 -135.2.0.0/15 10455 -135.4.0.0/14 10455 -135.8.0.0/15 18676 -135.10.0.0/17 18676 -135.10.128.0/18 18676 -135.10.192.0/19 18676 -135.10.224.0/20 18676 -135.10.240.0/21 18676 -135.10.248.0/23 18676 -135.10.250.0/24 19229 -135.10.251.0/24 18676 -135.10.252.0/24 19229 -135.10.253.0/24 18676 -135.10.254.0/23 18676 -135.11.0.0/16 18676 -135.12.0.0/21 17225 -135.12.16.0/24 2685 -135.12.23.0/24 2685 -135.12.24.0/22 2685 -135.12.28.0/22 174 -135.12.32.0/20 2685 -135.12.80.0/24 2685 -135.12.128.0/17 395965 -135.14.202.0/23 19637 -135.14.212.0/24 19637 -135.14.214.0/24 19637 -135.14.217.0/24 24552 -135.14.218.0/23 36657 -135.14.224.0/24 19637 -135.14.228.0/24 19637 -135.14.231.0/24 19637 -135.14.234.0/24 19637 -135.14.236.0/24 19637 -135.14.243.0/24 19637 -135.14.248.0/24 19637 -135.14.250.0/24 19637 -135.14.252.0/24 19637 -135.14.254.0/24 19637 -135.17.0.0/16 8983 -135.18.0.0/16 10455 -135.19.0.0/16 5769 -135.20.0.0/16 18676 -135.22.0.0/16 8983 -135.23.0.0/16 5645 -135.26.0.0/18 6300 -135.26.128.0/20 13333 -135.26.144.0/21 14051 -135.26.152.0/22 14051 -135.26.156.0/23 14051 -135.26.158.0/24 14051 -135.26.159.0/24 36737 -135.26.160.0/19 5742 -135.26.192.0/19 5742 -135.26.224.0/19 18712 -135.27.0.0/16 18676 -135.28.12.0/24 14654 -135.30.0.0/16 8158 -135.35.0.0/16 18676 -135.39.0.0/18 8983 -135.39.64.0/20 8983 -135.39.80.0/23 23197 -135.39.82.0/23 4694 -135.39.84.0/22 8983 -135.39.88.0/23 8983 -135.39.90.0/23 4694 -135.39.92.0/22 8983 -135.39.96.0/19 8983 -135.39.128.0/19 23197 -135.39.160.0/22 8983 -135.39.164.0/24 8983 -135.39.165.0/24 14110 -135.39.166.0/24 60665 -135.39.167.0/24 8983 -135.39.168.0/23 8983 -135.39.170.0/24 3356 -135.39.171.0/24 8983 -135.39.172.0/23 8983 -135.39.174.0/24 14110 -135.39.175.0/24 8983 -135.39.176.0/22 14110 -135.39.180.0/22 8983 -135.39.184.0/21 8983 -135.39.192.0/18 8983 -135.42.0.0/23 8030 -135.42.2.0/24 8030 -135.42.11.0/24 8030 -135.42.12.0/24 8030 -135.55.0.0/16 18676 -135.56.0.0/16 18676 -135.60.0.0/16 18676 -135.64.0.0/16 18676 -135.74.0.0/16 18676 -135.84.0.0/23 393647 -135.84.2.0/24 7018 -135.84.16.0/20 395965 -135.84.32.0/24 394807 -135.84.34.0/24 395027 -135.84.35.0/24 36080 -135.84.36.0/23 32231 -135.84.40.0/23 7332 -135.84.42.0/24 395054 -135.84.43.0/24 396069 -135.84.44.0/24 26716 -135.84.48.0/24 40464 -135.84.51.0/24 40464 -135.84.52.0/22 35415 -135.84.56.0/22 15038 -135.84.64.0/22 32077 -135.84.68.0/24 17289 -135.84.72.0/22 17289 -135.84.76.0/24 397133 -135.84.79.0/24 26158 -135.84.80.0/22 2639 -135.84.84.0/22 22062 -135.84.88.0/23 19006 -135.84.90.0/23 394759 -135.84.92.0/22 32840 -135.84.96.0/23 395163 -135.84.100.0/22 30640 -135.84.104.0/22 395262 -135.84.108.0/22 22625 -135.84.112.0/22 62642 -135.84.116.0/22 394967 -135.84.120.0/23 17338 -135.84.122.0/24 394665 -135.84.123.0/24 393694 -135.84.124.0/24 19994 -135.84.125.0/24 394012 -135.84.126.0/24 393578 -135.84.128.0/22 40203 -135.84.132.0/22 394628 -135.84.136.0/24 33549 -135.84.139.0/24 33549 -135.84.140.0/24 394620 -135.84.142.0/24 394620 -135.84.144.0/23 30640 -135.84.146.0/24 394850 -135.84.147.0/24 393647 -135.84.152.0/21 16823 -135.84.160.0/21 394065 -135.84.168.0/21 21534 -135.84.176.0/21 54527 -135.84.184.0/22 54527 -135.84.188.0/23 54527 -135.84.191.0/24 19120 -135.84.192.0/20 53435 -135.84.208.0/23 53889 -135.84.210.0/24 6130 -135.84.211.0/24 53889 -135.84.212.0/22 53889 -135.84.216.0/24 10439 -135.84.217.0/24 46475 -135.84.220.0/22 15108 -135.84.224.0/22 53435 -135.84.228.0/23 53435 -135.84.230.0/24 394683 -135.84.231.0/24 393808 -135.84.232.0/21 133847 -135.84.240.0/20 55303 -135.85.0.0/17 10455 -135.85.128.0/18 10455 -135.85.192.0/19 10455 -135.85.224.0/20 10455 -135.85.240.0/21 10455 -135.85.248.0/22 10455 -135.85.252.0/24 10455 -135.85.253.0/24 702 -135.85.254.0/23 10455 -135.86.0.0/16 10455 -135.87.0.0/23 10455 -135.87.2.0/23 62194 -135.87.4.0/22 10455 -135.87.8.0/21 10455 -135.87.16.0/22 62194 -135.87.20.0/22 10455 -135.87.24.0/21 10455 -135.87.32.0/19 10455 -135.87.64.0/18 10455 -135.87.128.0/17 10455 -135.88.0.0/16 10455 -135.89.151.0/24 7018 -135.90.64.0/18 36351 -135.92.0.0/20 29705 -135.92.16.0/22 62194 -135.92.32.0/22 62194 -135.92.40.0/23 62194 -135.93.0.0/16 10455 -135.103.0.0/23 10455 -135.103.2.0/24 62194 -135.103.3.0/24 10455 -135.103.4.0/23 10455 -135.103.6.0/23 62194 -135.103.8.0/21 10455 -135.103.16.0/23 62194 -135.103.18.0/23 10455 -135.103.20.0/22 10455 -135.103.24.0/21 10455 -135.103.32.0/19 10455 -135.103.64.0/18 10455 -135.103.128.0/17 10455 -135.104.0.0/16 10455 -135.105.0.0/16 18676 -135.106.0.0/16 14962 -135.109.0.0/17 7345 -135.109.128.0/18 7345 -135.109.192.0/23 7345 -135.109.196.0/22 7345 -135.109.200.0/21 7345 -135.109.208.0/20 7345 -135.109.224.0/19 7345 -135.111.0.0/16 10455 -135.112.0.0/16 10455 -135.114.0.0/15 10455 -135.116.0.0/15 10455 -135.118.0.0/17 10455 -135.118.128.0/19 8983 -135.118.160.0/19 10455 -135.118.192.0/18 10455 -135.119.0.0/16 10455 -135.120.0.0/15 10455 -135.122.0.0/15 18676 -135.124.0.0/15 18676 -135.126.0.0/15 14962 -135.128.0.0/13 14962 -135.136.0.0/15 14962 -135.140.0.0/16 10455 -135.148.0.0/16 18676 -135.149.0.0/16 8075 -135.169.0.0/16 18676 -135.171.0.0/16 10455 -135.180.0.0/16 46375 -135.183.0.0/18 10455 -135.183.64.0/19 10455 -135.183.96.0/19 8983 -135.183.128.0/17 10455 -135.185.0.0/16 10455 -135.196.0.0/16 8190 -135.197.0.0/16 6431 -135.205.0.0/16 6431 -135.207.0.0/16 6431 -135.209.64.0/18 797 -135.209.146.0/23 797 -135.209.148.0/22 797 -135.209.152.0/22 797 -135.209.156.0/24 797 -135.209.158.0/23 797 -135.209.160.0/21 797 -135.209.168.0/24 797 -135.209.208.0/20 797 -135.209.224.0/20 797 -135.211.200.0/24 20057 -135.211.206.0/24 20057 -135.211.216.0/24 20057 -135.211.221.0/24 20057 -135.211.232.0/24 20057 -135.211.237.0/24 20057 -135.211.248.0/24 20057 -135.211.254.0/24 20057 -135.214.0.0/16 797 -135.216.0.0/16 797 -135.220.0.0/14 10455 -135.224.0.0/17 10455 -135.224.128.0/22 10455 -135.224.132.0/24 10455 -135.224.133.0/24 21856 -135.224.134.0/23 10455 -135.224.136.0/21 10455 -135.224.144.0/20 10455 -135.224.160.0/19 10455 -135.224.192.0/18 10455 -135.225.0.0/16 10455 -135.226.0.0/15 10455 -135.228.0.0/14 10455 -135.232.0.0/14 10455 -135.236.0.0/15 10455 -135.238.0.0/17 10455 -135.238.128.0/19 8983 -135.238.160.0/19 10455 -135.238.192.0/18 10455 -135.239.0.0/16 10455 -135.240.0.0/14 10455 -135.244.0.0/17 10455 -135.244.128.0/20 10455 -135.244.144.0/22 2579 -135.244.148.0/22 10455 -135.244.152.0/21 10455 -135.244.160.0/19 10455 -135.244.192.0/18 29150 -135.245.0.0/18 10455 -135.245.64.0/19 10455 -135.245.96.0/21 10455 -135.245.104.0/22 10455 -135.245.108.0/22 2579 -135.245.112.0/23 10455 -135.245.114.0/24 10455 -135.245.115.0/24 21856 -135.245.116.0/24 10455 -135.245.117.0/24 21856 -135.245.118.0/23 10455 -135.245.120.0/24 10455 -135.245.121.0/24 21856 -135.245.122.0/24 21856 -135.245.123.0/24 10455 -135.245.124.0/22 10455 -135.245.128.0/18 10455 -135.245.192.0/23 29150 -135.245.194.0/23 8983 -135.245.196.0/22 8983 -135.245.200.0/21 8983 -135.245.208.0/20 8983 -135.245.224.0/19 8983 -135.246.0.0/15 10455 -135.248.0.0/14 10455 -135.252.0.0/15 10455 -135.254.0.0/16 10455 -135.255.0.0/17 10455 -135.255.128.0/18 10455 -135.255.192.0/19 10455 -135.255.224.0/20 10455 -135.255.240.0/20 8983 -136.0.0.0/20 60311 -136.0.16.0/20 18779 -136.0.32.0/19 18779 -136.0.64.0/19 18779 -136.0.96.0/21 18779 -136.0.104.0/22 18779 -136.0.108.0/23 18779 -136.0.110.0/24 18779 -136.0.111.0/24 40676 -136.0.112.0/22 18779 -136.0.116.0/24 23338 -136.0.117.0/24 18779 -136.0.118.0/23 18779 -136.0.120.0/21 18779 -136.0.128.0/17 18779 -136.1.0.0/16 3389 -136.2.0.0/16 3389 -136.8.0.0/20 10146 -136.8.32.0/20 28729 -136.22.0.0/23 394699 -136.22.32.0/21 134426 -136.22.40.0/22 134426 -136.22.64.0/20 36492 -136.22.80.0/21 36492 -136.22.88.0/22 36492 -136.22.92.0/24 36492 -136.22.94.0/23 36492 -136.22.116.0/22 36492 -136.22.120.0/21 36492 -136.22.128.0/22 36040 -136.24.0.0/15 19165 -136.26.0.0/17 19165 -136.26.128.0/18 19165 -136.27.0.0/17 19165 -136.28.0.0/15 19165 -136.30.0.0/16 19165 -136.32.0.0/11 16591 -136.112.0.0/12 15169 -136.142.0.0/16 4130 -136.143.0.0/17 15435 -136.143.128.0/23 174 -136.143.130.0/24 174 -136.143.131.0/24 36222 -136.143.132.0/23 174 -136.143.134.0/24 174 -136.143.135.0/24 53903 -136.143.136.0/24 174 -136.143.137.0/24 53903 -136.143.138.0/24 1790 -136.143.140.0/22 33130 -136.143.144.0/20 13370 -136.143.160.0/21 2639 -136.143.168.0/22 2639 -136.143.172.0/24 397849 -136.143.173.0/24 2639 -136.143.174.0/24 397849 -136.143.175.0/24 2639 -136.143.182.0/23 2639 -136.143.184.0/21 2639 -136.143.192.0/23 25956 -136.143.194.0/24 25956 -136.143.195.0/24 14434 -136.143.196.0/23 25956 -136.143.198.0/24 25956 -136.143.200.0/24 25956 -136.143.201.0/24 21780 -136.143.204.0/22 20300 -136.143.208.0/20 54614 -136.143.225.0/24 9310 -136.143.226.0/23 9310 -136.143.228.0/24 9310 -136.143.254.0/24 9310 -136.144.0.0/20 394797 -136.144.16.0/24 39855 -136.144.18.0/24 39855 -136.144.20.0/23 204594 -136.144.22.0/24 15562 -136.144.23.0/24 33915 -136.144.24.0/22 39855 -136.144.28.0/22 52000 -136.144.32.0/24 39855 -136.144.34.0/24 39855 -136.144.36.0/24 25091 -136.144.40.0/24 13213 -136.144.41.0/24 49981 -136.144.44.0/22 203268 -136.144.48.0/23 54825 -136.144.52.0/23 54825 -136.144.60.0/22 54825 -136.144.64.0/24 55048 -136.144.128.0/17 20857 -136.145.0.0/16 5786 -136.146.0.0/19 14340 -136.146.32.0/20 14340 -136.146.48.0/22 14340 -136.146.52.0/22 396982 -136.146.56.0/21 14340 -136.146.64.0/18 14340 -136.146.128.0/17 14340 -136.147.0.0/17 14340 -136.147.128.0/20 22606 -136.147.160.0/23 32870 -136.147.162.0/24 32870 -136.147.165.0/24 32870 -136.147.166.0/23 32870 -136.147.168.0/24 32870 -136.147.170.0/23 32870 -136.147.172.0/24 32870 -136.147.176.0/21 22606 -136.147.184.0/22 22606 -136.147.188.0/23 22606 -136.147.208.0/20 14340 -136.148.0.0/16 786 -136.149.0.0/16 385 -136.150.0.0/23 1204 -136.150.70.0/24 22159 -136.150.80.0/24 22159 -136.150.100.0/24 22159 -136.150.150.0/24 22159 -136.150.200.0/24 22159 -136.152.0.0/16 25 -136.153.0.0/16 132909 -136.154.0.0/16 9348 -136.155.0.0/16 19399 -136.156.0.0/17 786 -136.156.128.0/22 786 -136.156.132.0/22 25180 -136.156.136.0/21 786 -136.156.144.0/20 786 -136.156.160.0/19 786 -136.156.192.0/18 786 -136.157.241.0/24 32382 -136.158.0.0/16 17639 -136.159.0.0/16 33091 -136.160.0.0/18 11131 -136.160.64.0/18 6059 -136.160.128.0/18 394395 -136.160.192.0/18 6059 -136.161.0.0/16 174 -136.162.0.0/16 27510 -136.163.0.0/16 3301 -136.164.0.0/16 42175 -136.165.0.0/16 1657 -136.166.0.0/16 53380 -136.167.0.0/16 22834 -136.168.0.0/16 2152 -136.169.0.0/17 57516 -136.169.128.0/18 24955 -136.169.192.0/19 24955 -136.169.224.0/20 24955 -136.169.240.0/20 41704 -136.172.0.0/16 680 -136.173.0.0/16 43375 -136.174.0.0/16 22498 -136.176.0.0/16 26367 -136.178.0.0/16 270 -136.179.0.0/23 53804 -136.179.2.0/23 23005 -136.179.4.0/22 23005 -136.179.8.0/21 23005 -136.179.16.0/20 23005 -136.179.32.0/21 23005 -136.179.40.0/22 23005 -136.179.44.0/23 23005 -136.179.46.0/24 397494 -136.179.47.0/24 23005 -136.179.48.0/23 23005 -136.179.50.0/24 6146 -136.179.51.0/24 23005 -136.179.52.0/22 23005 -136.179.56.0/21 23005 -136.179.64.0/18 23005 -136.179.128.0/18 23005 -136.179.192.0/19 23005 -136.179.224.0/21 23005 -136.179.232.0/22 23005 -136.179.236.0/22 26447 -136.179.240.0/20 23005 -136.180.0.0/16 26649 -136.181.0.0/16 13325 -136.182.0.0/16 19773 -136.183.0.0/16 19933 -136.184.0.0/20 3455 -136.184.32.0/20 3455 -136.184.48.0/20 13540 -136.184.64.0/18 3455 -136.184.128.0/19 13540 -136.184.192.0/21 3455 -136.184.224.0/23 14618 -136.184.226.0/23 16509 -136.184.229.0/24 16509 -136.184.230.0/24 16509 -136.186.0.0/16 58686 -136.187.0.0/16 2907 -136.199.0.0/16 2857 -136.200.6.0/23 2894 -136.200.12.0/23 2894 -136.200.14.0/24 2894 -136.200.25.0/24 2894 -136.200.38.0/24 2894 -136.200.52.0/23 2894 -136.200.54.0/24 2894 -136.200.70.0/23 2894 -136.200.84.0/23 2894 -136.200.137.0/24 2894 -136.200.150.0/24 2894 -136.200.172.0/24 2894 -136.200.176.0/24 2894 -136.200.202.0/23 2894 -136.200.240.0/22 2894 -136.200.245.0/24 2894 -136.201.0.0/16 1213 -136.204.0.0/16 398086 -136.205.0.0/20 523 -136.205.16.0/24 523 -136.205.17.0/24 1541 -136.205.18.0/23 523 -136.205.20.0/22 523 -136.205.24.0/21 523 -136.205.32.0/21 523 -136.205.40.0/22 523 -136.205.44.0/24 523 -136.205.45.0/24 1541 -136.205.46.0/23 523 -136.205.48.0/21 523 -136.205.56.0/23 1541 -136.205.58.0/24 1541 -136.205.59.0/24 523 -136.205.60.0/24 523 -136.205.61.0/24 1541 -136.205.62.0/23 1541 -136.205.64.0/24 523 -136.205.65.0/24 1541 -136.205.66.0/24 523 -136.205.67.0/24 1541 -136.205.68.0/23 1541 -136.205.70.0/24 523 -136.205.71.0/24 1541 -136.205.72.0/22 1541 -136.205.76.0/22 523 -136.205.80.0/22 523 -136.205.84.0/24 1541 -136.205.85.0/24 523 -136.205.86.0/23 1541 -136.205.88.0/24 1541 -136.205.89.0/24 523 -136.205.90.0/24 1541 -136.205.91.0/24 523 -136.205.92.0/23 523 -136.205.94.0/24 1541 -136.205.95.0/24 523 -136.205.96.0/23 523 -136.205.98.0/23 1541 -136.205.100.0/23 523 -136.205.102.0/24 523 -136.205.103.0/24 1541 -136.205.104.0/23 1541 -136.205.106.0/24 1541 -136.205.107.0/24 523 -136.205.108.0/24 1541 -136.205.109.0/24 523 -136.205.110.0/23 523 -136.205.112.0/22 1541 -136.205.116.0/23 1541 -136.205.118.0/23 523 -136.205.120.0/21 523 -136.205.128.0/21 523 -136.205.136.0/22 523 -136.205.140.0/24 523 -136.205.141.0/24 1541 -136.205.142.0/23 1541 -136.205.144.0/23 1541 -136.205.146.0/24 1541 -136.205.147.0/24 523 -136.205.148.0/22 523 -136.205.152.0/21 523 -136.205.160.0/21 523 -136.205.168.0/23 523 -136.205.170.0/24 523 -136.205.171.0/24 1541 -136.205.172.0/24 1541 -136.205.173.0/24 523 -136.205.174.0/23 523 -136.205.176.0/20 523 -136.205.192.0/19 523 -136.205.224.0/23 523 -136.205.226.0/24 523 -136.205.227.0/24 1541 -136.205.228.0/22 523 -136.205.232.0/21 523 -136.205.240.0/23 523 -136.205.242.0/24 523 -136.205.243.0/24 1541 -136.205.244.0/23 1541 -136.205.246.0/23 523 -136.205.248.0/21 523 -136.206.0.0/16 1213 -136.207.128.0/17 1585 -136.209.0.0/16 1556 -136.210.0.0/17 1555 -136.210.128.0/18 1555 -136.210.192.0/19 1555 -136.210.224.0/20 1555 -136.210.240.0/21 1555 -136.210.248.0/24 1555 -136.210.249.0/24 1501 -136.210.250.0/23 1555 -136.210.252.0/22 1555 -136.212.0.0/15 721 -136.214.0.0/16 721 -136.215.0.0/17 531 -136.215.128.0/17 1585 -136.216.0.0/17 1568 -136.216.128.0/19 1567 -136.216.160.0/19 721 -136.216.192.0/19 1567 -136.216.224.0/19 721 -136.217.0.0/16 721 -136.218.0.0/15 1563 -136.220.0.0/16 721 -136.221.0.0/16 1566 -136.223.0.0/20 46887 -136.223.16.0/20 1204 -136.223.33.0/24 13536 -136.223.34.0/24 46887 -136.223.36.0/24 11351 -136.223.37.0/24 13536 -136.223.48.0/23 54226 -136.223.54.0/24 46887 -136.223.64.0/24 46887 -136.223.65.0/24 3549 -136.223.101.0/24 40625 -136.223.102.0/23 40625 -136.223.104.0/24 40625 -136.223.128.0/19 3356 -136.223.160.0/20 1204 -136.223.177.0/24 15320 -136.224.0.0/16 22174 -136.225.0.0/16 158 -136.227.0.0/16 600 -136.228.15.0/24 36351 -136.228.16.0/21 36351 -136.228.24.0/22 36351 -136.228.28.0/23 36351 -136.228.30.0/24 36351 -136.228.32.0/24 395926 -136.228.33.0/24 2882 -136.228.34.0/23 2882 -136.228.36.0/22 2882 -136.228.40.0/21 2882 -136.228.48.0/20 2882 -136.228.64.0/19 395379 -136.228.96.0/19 53449 -136.228.128.0/22 131207 -136.228.140.0/22 131207 -136.228.146.0/24 131207 -136.228.148.0/22 131207 -136.228.152.0/22 135295 -136.228.156.0/24 131207 -136.228.157.0/24 135429 -136.228.158.0/23 131207 -136.228.160.0/20 9988 -136.228.176.0/24 2152 -136.228.177.0/24 15357 -136.228.180.0/22 32225 -136.228.184.0/24 12025 -136.228.185.0/24 209 -136.228.186.0/23 396420 -136.228.188.0/22 32503 -136.228.192.0/22 396253 -136.228.197.0/24 202276 -136.228.199.0/24 396253 -136.228.200.0/21 396253 -136.228.208.0/22 202276 -136.228.212.0/24 202276 -136.228.213.0/24 396253 -136.228.214.0/24 202276 -136.228.215.0/24 396253 -136.228.216.0/24 137922 -136.228.217.0/24 396253 -136.228.218.0/24 137922 -136.228.219.0/24 202276 -136.228.220.0/23 202276 -136.228.222.0/23 137922 -136.228.224.0/23 202276 -136.228.226.0/23 396253 -136.228.228.0/24 396253 -136.228.229.0/24 137922 -136.228.230.0/23 137922 -136.228.232.0/22 202276 -136.228.236.0/24 202276 -136.228.237.0/24 396253 -136.228.238.0/24 396253 -136.228.239.0/24 137922 -136.228.240.0/24 202276 -136.228.241.0/24 137922 -136.228.242.0/24 396253 -136.228.243.0/24 137922 -136.228.244.0/22 202276 -136.228.248.0/23 396253 -136.229.0.0/16 7792 -136.231.0.0/16 1103 -136.232.0.0/15 55836 -136.234.0.0/16 1998 -136.235.0.0/16 33235 -136.237.10.0/23 46453 -136.237.44.0/23 46453 -136.237.59.0/24 46453 -136.237.60.0/23 46453 -136.237.65.0/24 46453 -136.237.80.0/24 46453 -136.237.133.0/24 46453 -136.237.173.0/24 55873 -136.238.2.0/23 3303 -136.238.12.0/23 3303 -136.238.14.0/24 3303 -136.238.16.0/24 8562 -136.238.17.0/24 8881 -136.238.18.0/24 262168 -136.238.186.0/24 9381 -136.238.187.0/24 3300 -136.238.188.0/22 4637 -136.238.195.0/24 12658 -136.238.196.0/24 5488 -136.238.197.0/24 202120 -136.238.202.0/24 29405 -136.238.207.0/24 3292 -136.238.216.0/24 327791 -136.238.218.0/24 7470 -136.238.223.0/24 4768 -136.238.224.0/24 5400 -136.238.226.0/24 28725 -136.242.0.0/16 186 -136.243.0.0/16 24940 -136.244.0.0/18 397412 -136.244.64.0/18 20473 -136.244.128.0/17 3606 -136.245.0.0/24 396484 -136.245.1.0/24 14051 -136.245.2.0/23 396484 -136.245.4.0/22 396484 -136.245.8.0/21 396484 -136.245.16.0/20 396484 -136.245.32.0/19 396484 -136.245.64.0/18 396484 -136.245.128.0/17 396484 -136.247.0.0/16 2025 -136.248.0.0/16 10255 -136.250.0.0/15 72 -136.252.128.0/17 72 -136.253.0.0/16 72 -136.254.0.0/16 72 -136.255.0.0/16 12302 -137.0.0.0/16 721 -137.1.0.0/16 385 -137.2.0.0/16 721 -137.3.0.0/16 385 -137.4.0.0/16 385 -137.5.0.0/16 721 -137.6.0.0/16 721 -137.7.0.0/16 385 -137.8.0.0/16 721 -137.9.0.0/18 385 -137.9.64.0/19 385 -137.9.96.0/22 385 -137.9.100.0/24 721 -137.9.101.0/24 385 -137.9.102.0/23 385 -137.9.104.0/21 385 -137.9.112.0/20 385 -137.9.128.0/17 385 -137.10.0.0/15 385 -137.14.0.0/16 385 -137.15.0.0/16 577 -137.17.0.0/16 1136 -137.18.0.0/16 1999 -137.20.0.0/16 13688 -137.21.0.0/16 46887 -137.22.0.0/16 26557 -137.23.0.0/16 19773 -137.25.0.0/16 20115 -137.26.0.0/18 20115 -137.26.64.0/18 33588 -137.26.128.0/17 20115 -137.27.0.0/17 20115 -137.27.128.0/18 20115 -137.27.192.0/19 20115 -137.27.224.0/20 20115 -137.27.240.0/21 20115 -137.27.248.0/22 20115 -137.27.252.0/23 4262 -137.27.254.0/24 4262 -137.27.255.0/24 20115 -137.28.0.0/16 19184 -137.30.0.0/16 26333 -137.32.1.0/24 6075 -137.32.2.0/23 6075 -137.32.4.0/24 6075 -137.32.12.0/24 6075 -137.32.16.0/24 6075 -137.32.20.0/22 6075 -137.32.28.0/24 6075 -137.32.30.0/23 6075 -137.32.32.0/22 6075 -137.32.38.0/24 6075 -137.32.40.0/23 6075 -137.32.46.0/23 6075 -137.32.56.0/24 6075 -137.32.65.0/24 6075 -137.32.66.0/24 6075 -137.32.69.0/24 6075 -137.32.80.0/24 6075 -137.32.82.0/23 6075 -137.32.92.0/24 6075 -137.32.96.0/24 6075 -137.32.98.0/24 6075 -137.32.101.0/24 6075 -137.32.102.0/23 6075 -137.32.165.0/24 6075 -137.32.166.0/24 6075 -137.32.196.0/24 6075 -137.32.253.0/24 6075 -137.32.254.0/24 6075 -137.36.0.0/16 11351 -137.37.0.0/16 55282 -137.39.0.0/16 701 -137.40.111.0/24 5400 -137.42.0.0/16 42579 -137.43.0.0/16 2850 -137.44.0.0/16 786 -137.45.0.0/16 13783 -137.47.0.0/16 29695 -137.48.0.0/16 7896 -137.49.0.0/16 393337 -137.50.0.0/16 786 -137.51.0.0/16 1906 -137.52.0.0/16 33670 -137.53.0.0/16 11995 -137.54.0.0/16 225 -137.56.0.0/16 1103 -137.58.0.0/16 158 -137.59.0.0/22 133317 -137.59.4.0/24 64052 -137.59.5.0/24 134084 -137.59.12.0/22 38500 -137.59.16.0/22 136800 -137.59.20.0/22 45753 -137.59.24.0/21 131429 -137.59.32.0/20 131429 -137.59.48.0/22 24556 -137.59.52.0/22 133694 -137.59.56.0/23 132768 -137.59.58.0/24 58438 -137.59.60.0/22 45235 -137.59.64.0/22 45194 -137.59.68.0/23 45194 -137.59.71.0/24 45194 -137.59.72.0/22 133045 -137.59.76.0/22 132556 -137.59.80.0/23 133847 -137.59.82.0/24 133847 -137.59.84.0/22 58969 -137.59.96.0/22 137098 -137.59.100.0/22 136993 -137.59.104.0/22 131392 -137.59.108.0/22 46015 -137.59.112.0/22 135034 -137.59.116.0/22 63733 -137.59.120.0/22 131284 -137.59.124.0/23 133800 -137.59.126.0/24 133800 -137.59.128.0/22 9829 -137.59.142.0/23 9829 -137.59.144.0/22 9541 -137.59.148.0/22 394695 -137.59.152.0/22 135071 -137.59.160.0/22 56242 -137.59.180.0/22 135076 -137.59.184.0/22 18106 -137.59.188.0/24 45780 -137.59.192.0/22 55453 -137.59.196.0/22 38790 -137.59.200.0/22 18229 -137.59.208.0/22 135081 -137.59.212.0/22 139327 -137.59.216.0/21 9541 -137.59.224.0/21 9541 -137.59.232.0/22 24295 -137.59.240.0/24 134919 -137.59.241.0/24 133275 -137.59.242.0/23 133275 -137.59.244.0/23 23664 -137.59.246.0/24 23664 -137.59.248.0/22 45454 -137.59.252.0/22 46562 -137.61.0.0/16 15991 -137.63.68.0/22 32489 -137.63.74.0/23 32489 -137.63.78.0/24 32489 -137.63.128.0/17 327687 -137.64.0.0/23 37440 -137.65.0.0/16 3680 -137.66.0.0/18 555 -137.66.64.0/20 555 -137.66.80.0/21 555 -137.66.88.0/22 555 -137.66.92.0/22 7349 -137.66.96.0/19 555 -137.66.128.0/17 555 -137.68.0.0/18 1781 -137.68.64.0/18 1704 -137.68.128.0/17 1704 -137.69.112.0/23 12257 -137.69.117.0/24 12257 -137.69.120.0/23 12257 -137.69.125.0/24 12257 -137.69.126.0/23 12257 -137.70.0.0/16 40382 -137.71.23.0/24 20258 -137.71.24.0/23 20258 -137.71.34.0/23 20258 -137.71.45.0/24 20258 -137.71.46.0/24 20258 -137.71.54.0/23 20258 -137.71.105.0/24 20258 -137.71.106.0/24 20258 -137.71.109.0/24 20258 -137.71.114.0/23 20258 -137.71.116.0/23 20258 -137.71.119.0/24 20258 -137.71.122.0/23 20258 -137.71.124.0/23 20258 -137.71.144.0/24 20258 -137.71.161.0/24 20258 -137.71.162.0/23 20258 -137.71.170.0/23 20258 -137.71.172.0/22 20258 -137.71.176.0/23 20258 -137.71.220.0/22 20258 -137.71.226.0/23 20258 -137.71.229.0/24 20258 -137.71.230.0/24 20258 -137.71.233.0/24 20258 -137.71.234.0/24 20258 -137.71.246.0/24 20258 -137.73.0.0/16 786 -137.74.0.0/16 16276 -137.75.0.0/18 2648 -137.75.64.0/22 2648 -137.75.68.0/22 3477 -137.75.72.0/21 3477 -137.75.80.0/22 3477 -137.75.84.0/22 2648 -137.75.88.0/21 2648 -137.75.96.0/21 2648 -137.75.104.0/22 11956 -137.75.108.0/22 3477 -137.75.112.0/22 2648 -137.75.116.0/22 3477 -137.75.120.0/22 2648 -137.75.124.0/22 26100 -137.75.128.0/17 2648 -137.77.0.0/17 688 -137.78.0.0/15 127 -137.81.0.0/16 3128 -137.82.0.0/16 393249 -137.83.8.0/23 19271 -137.83.11.0/24 397647 -137.83.13.0/24 62774 -137.83.14.0/23 17054 -137.83.18.0/24 26214 -137.83.22.0/24 13837 -137.83.23.0/24 397891 -137.83.27.0/24 394098 -137.83.28.0/23 63251 -137.83.31.0/24 21533 -137.83.32.0/22 396871 -137.83.36.0/23 395475 -137.83.48.0/23 16696 -137.83.51.0/24 394048 -137.83.54.0/24 40285 -137.83.57.0/24 46626 -137.83.58.0/23 27255 -137.83.60.0/22 397453 -137.83.64.0/21 55214 -137.83.72.0/24 17017 -137.83.74.0/24 395567 -137.83.76.0/24 36511 -137.83.79.0/24 395800 -137.83.82.0/23 11976 -137.83.84.0/23 20205 -137.83.86.0/24 7046 -137.83.87.0/24 394229 -137.83.88.0/24 7046 -137.83.89.0/24 11976 -137.83.91.0/24 19186 -137.83.92.0/23 15131 -137.83.94.0/23 62887 -137.83.96.0/22 32307 -137.83.100.0/23 13337 -137.83.102.0/24 36511 -137.83.103.0/24 13427 -137.83.104.0/21 62642 -137.83.112.0/23 395354 -137.83.114.0/24 395354 -137.83.116.0/22 395354 -137.83.120.0/21 395354 -137.83.128.0/24 62044 -137.83.131.0/24 22616 -137.83.133.0/24 22616 -137.83.134.0/23 62044 -137.83.137.0/24 53813 -137.83.138.0/24 5511 -137.83.139.0/24 62044 -137.83.140.0/24 62044 -137.83.141.0/24 22616 -137.83.142.0/24 62044 -137.83.193.0/24 16509 -137.83.194.0/24 14618 -137.83.195.0/24 16509 -137.83.196.0/22 16509 -137.83.200.0/23 14618 -137.83.202.0/23 16509 -137.83.204.0/23 16509 -137.83.206.0/23 14618 -137.83.208.0/22 16509 -137.83.212.0/24 16509 -137.83.214.0/24 16509 -137.84.0.0/14 14977 -137.88.0.0/15 14977 -137.90.0.0/16 14977 -137.91.0.0/24 33350 -137.91.5.0/24 33350 -137.91.11.0/24 33350 -137.91.102.0/23 33350 -137.91.114.0/24 33350 -137.92.0.0/16 7575 -137.93.0.0/16 2119 -137.94.0.0/16 19737 -137.95.0.0/16 493 -137.96.0.0/16 1234 -137.97.0.0/16 55836 -137.99.0.0/16 13796 -137.100.87.0/24 106 -137.100.96.0/22 106 -137.100.132.0/22 106 -137.100.136.0/22 106 -137.100.236.0/22 106 -137.101.0.0/16 12430 -137.103.0.0/19 11776 -137.103.32.0/21 11776 -137.103.40.0/22 11776 -137.103.44.0/24 11776 -137.103.46.0/23 11776 -137.103.48.0/20 11776 -137.103.64.0/19 11776 -137.103.96.0/19 23100 -137.103.128.0/19 11776 -137.103.160.0/20 11776 -137.103.176.0/24 11776 -137.103.179.0/24 11776 -137.103.182.0/24 11776 -137.103.184.0/22 11776 -137.103.224.0/19 11776 -137.104.0.0/16 3128 -137.107.64.0/23 209 -137.107.254.0/23 3909 -137.108.0.0/16 786 -137.109.0.0/16 703 -137.110.0.0/16 7377 -137.111.0.0/16 7575 -137.112.0.0/16 1767 -137.113.0.0/16 19464 -137.115.0.0/23 37440 -137.116.0.0/15 8075 -137.118.1.0/24 6250 -137.118.2.0/23 6250 -137.118.4.0/23 6250 -137.118.7.0/24 6250 -137.118.9.0/24 6250 -137.118.10.0/24 6250 -137.118.14.0/23 6250 -137.118.20.0/22 6250 -137.118.25.0/24 6250 -137.118.26.0/23 6250 -137.118.28.0/23 6250 -137.118.30.0/24 6250 -137.118.32.0/23 6250 -137.118.36.0/22 6250 -137.118.40.0/21 6250 -137.118.48.0/22 6250 -137.118.58.0/24 6250 -137.118.60.0/23 6250 -137.118.62.0/24 6250 -137.118.85.0/24 14368 -137.118.86.0/24 14368 -137.118.87.0/24 397118 -137.118.88.0/23 397118 -137.118.90.0/23 40317 -137.118.92.0/22 22480 -137.118.96.0/20 22191 -137.118.112.0/20 6250 -137.118.128.0/24 21891 -137.118.130.0/23 40317 -137.118.132.0/22 40020 -137.118.136.0/21 22191 -137.118.144.0/22 6553 -137.118.148.0/23 6250 -137.118.150.0/23 20477 -137.118.152.0/22 11623 -137.118.156.0/22 20477 -137.118.160.0/20 20477 -137.118.176.0/21 20477 -137.118.184.0/21 22191 -137.118.192.0/23 6250 -137.118.194.0/23 6553 -137.118.196.0/22 20477 -137.118.200.0/22 6250 -137.118.204.0/22 20477 -137.118.208.0/22 20477 -137.118.212.0/22 22191 -137.118.216.0/21 22191 -137.118.224.0/23 54434 -137.118.226.0/23 397108 -137.118.228.0/22 40317 -137.118.232.0/22 11623 -137.118.236.0/22 21891 -137.118.240.0/21 21891 -137.118.248.0/21 40317 -137.119.16.0/21 397455 -137.119.24.0/24 396905 -137.119.28.0/22 54434 -137.119.32.0/21 11426 -137.119.40.0/21 22191 -137.119.48.0/20 22191 -137.119.64.0/20 21515 -137.119.80.0/20 40317 -137.119.96.0/21 40020 -137.119.104.0/21 22191 -137.119.112.0/22 62637 -137.119.116.0/23 62637 -137.119.118.0/23 22191 -137.119.120.0/21 40317 -137.119.128.0/17 21766 -137.120.0.0/16 1103 -137.121.0.0/16 2200 -137.122.0.0/16 25826 -137.123.0.0/16 27219 -137.124.0.0/16 11351 -137.125.0.0/16 32136 -137.128.0.0/16 668 -137.129.0.0/16 20900 -137.131.0.0/16 2641 -137.132.0.0/16 7472 -137.133.0.0/24 20868 -137.133.8.0/24 20868 -137.133.12.0/24 20868 -137.133.16.0/24 20868 -137.133.20.0/24 2116 -137.133.22.0/24 5400 -137.133.25.0/24 2116 -137.133.128.0/17 2116 -137.134.1.0/24 7015 -137.134.40.0/21 10564 -137.134.48.0/21 54886 -137.134.72.0/21 54886 -137.134.216.0/22 10564 -137.134.228.0/22 10564 -137.134.240.0/21 10564 -137.134.249.0/24 10564 -137.134.250.0/23 10564 -137.134.252.0/23 10564 -137.134.254.0/24 10564 -137.135.0.0/16 8075 -137.138.0.0/16 513 -137.139.0.0/16 46887 -137.140.0.0/16 22303 -137.141.0.0/16 11351 -137.142.0.0/16 395871 -137.143.0.0/16 11351 -137.144.0.0/16 72 -137.145.0.0/16 2152 -137.146.0.0/16 6056 -137.147.0.0/16 1221 -137.148.0.0/16 32818 -137.149.0.0/16 7860 -137.150.0.0/15 2152 -137.152.0.0/19 13485 -137.152.32.0/20 13485 -137.152.64.0/18 13485 -137.152.128.0/18 13485 -137.152.192.0/19 13485 -137.152.224.0/19 36324 -137.153.0.0/16 9619 -137.154.0.0/16 7575 -137.155.0.0/19 1411 -137.155.40.0/21 1411 -137.155.120.0/22 1411 -137.155.128.0/18 1411 -137.155.192.0/21 1411 -137.155.200.0/24 1411 -137.155.240.0/20 1411 -137.157.0.0/16 45128 -137.158.0.0/16 36982 -137.159.0.0/16 20343 -137.160.0.0/17 3549 -137.161.0.0/17 4010 -137.161.128.0/18 4010 -137.161.192.0/19 4010 -137.161.224.0/20 4010 -137.161.240.0/22 4010 -137.161.244.0/24 4010 -137.161.245.0/24 1536 -137.161.246.0/24 1536 -137.161.247.0/24 4010 -137.161.248.0/24 1536 -137.161.249.0/24 4010 -137.161.250.0/23 4010 -137.161.252.0/23 4010 -137.161.254.0/23 1536 -137.162.249.0/24 106 -137.163.0.0/16 719 -137.164.0.0/20 2152 -137.164.16.0/24 2152 -137.164.17.0/24 2153 -137.164.18.0/23 2152 -137.164.20.0/22 2152 -137.164.24.0/24 2152 -137.164.25.0/24 2153 -137.164.26.0/23 2153 -137.164.28.0/24 2153 -137.164.29.0/24 2152 -137.164.30.0/23 2152 -137.164.32.0/19 2152 -137.164.64.0/18 2152 -137.164.128.0/17 2152 -137.165.0.0/16 11399 -137.166.0.0/16 58877 -137.169.0.0/18 14981 -137.169.64.0/19 14981 -137.169.96.0/21 14981 -137.169.104.0/22 14981 -137.169.108.0/23 395259 -137.169.110.0/23 14981 -137.169.112.0/20 14981 -137.169.128.0/18 14981 -137.169.192.0/19 14981 -137.169.224.0/20 14981 -137.169.240.0/20 63160 -137.170.64.0/19 36857 -137.170.96.0/20 36857 -137.170.112.0/24 3320 -137.170.113.0/24 36857 -137.170.114.0/23 36857 -137.170.116.0/22 36857 -137.170.120.0/21 36857 -137.170.128.0/20 36857 -137.172.64.0/22 18108 -137.172.192.0/20 18108 -137.173.0.0/17 206 -137.173.128.0/18 206 -137.173.192.0/19 206 -137.173.224.0/20 206 -137.173.240.0/21 206 -137.173.248.0/22 206 -137.173.252.0/23 206 -137.173.254.0/24 6461 -137.173.255.0/24 206 -137.174.0.0/16 16084 -137.175.0.0/17 54600 -137.175.128.0/17 5769 -137.176.0.0/14 11003 -137.180.0.0/17 11003 -137.180.128.0/21 11003 -137.180.136.0/22 11003 -137.180.140.0/23 61153 -137.180.142.0/23 11003 -137.180.144.0/20 11003 -137.180.160.0/19 11003 -137.180.192.0/18 11003 -137.181.0.0/16 11003 -137.182.0.0/16 11003 -137.183.0.0/18 11003 -137.183.64.0/20 11003 -137.183.80.0/20 3561 -137.183.96.0/19 11003 -137.183.128.0/18 11003 -137.183.192.0/19 11003 -137.183.224.0/21 11003 -137.183.232.0/23 61153 -137.183.234.0/23 11003 -137.183.236.0/22 11003 -137.183.240.0/20 11003 -137.185.0.0/17 11003 -137.185.128.0/18 11003 -137.185.192.0/19 11003 -137.185.224.0/20 11003 -137.185.240.0/21 11003 -137.185.248.0/23 61153 -137.185.250.0/23 11003 -137.185.252.0/23 61153 -137.185.254.0/23 11003 -137.186.0.0/16 852 -137.187.0.0/16 3527 -137.188.0.0/16 12079 -137.189.0.0/16 3661 -137.190.0.0/16 210 -137.191.223.0/24 34912 -137.191.224.0/19 15806 -137.192.0.0/20 5006 -137.192.16.0/22 5006 -137.192.20.0/24 5006 -137.192.21.0/24 1347 -137.192.22.0/23 5006 -137.192.24.0/21 5006 -137.192.32.0/19 5006 -137.192.64.0/21 5006 -137.192.72.0/22 7821 -137.192.76.0/22 5006 -137.192.80.0/20 5006 -137.192.96.0/19 5006 -137.192.128.0/18 5006 -137.192.192.0/22 5006 -137.192.196.0/24 1347 -137.192.197.0/24 5006 -137.192.198.0/23 5006 -137.192.200.0/21 5006 -137.192.208.0/20 5006 -137.192.224.0/19 5006 -137.193.0.0/16 680 -137.194.0.0/16 1712 -137.195.0.0/17 786 -137.195.128.0/18 786 -137.195.192.0/19 786 -137.195.224.0/20 4788 -137.195.240.0/20 786 -137.196.0.0/23 37440 -137.197.0.0/16 1252 -137.198.0.0/16 14655 -137.200.0.0/18 11985 -137.200.228.0/24 11985 -137.201.0.0/16 3911 -137.202.0.0/16 13541 -137.203.0.0/16 7355 -137.204.0.0/16 137 -137.205.0.0/16 201773 -137.207.0.0/16 11700 -137.208.0.0/16 1776 -137.209.0.0/16 27064 -137.212.0.0/17 721 -137.212.128.0/20 721 -137.212.144.0/23 721 -137.212.146.0/24 721 -137.212.147.0/24 27064 -137.212.148.0/22 721 -137.212.152.0/21 721 -137.212.160.0/19 721 -137.212.192.0/18 721 -137.213.239.0/24 13205 -137.213.240.0/21 5089 -137.213.248.0/24 8220 -137.213.252.0/23 13205 -137.214.0.0/15 2018 -137.216.0.0/16 11607 -137.217.0.0/16 3292 -137.219.0.0/16 24434 -137.220.1.0/24 63357 -137.220.4.0/22 16696 -137.220.8.0/21 397903 -137.220.16.0/20 55900 -137.220.64.0/18 56478 -137.220.128.0/23 64050 -137.220.130.0/24 38197 -137.220.131.0/24 64050 -137.220.132.0/22 64050 -137.220.136.0/21 64050 -137.220.144.0/20 64050 -137.220.160.0/19 64050 -137.220.192.0/18 64050 -137.221.0.0/20 49765 -137.221.16.0/21 49765 -137.221.24.0/21 49586 -137.221.32.0/19 48152 -137.221.64.0/19 57976 -137.221.96.0/21 57976 -137.221.104.0/22 57976 -137.221.108.0/23 57976 -137.221.128.0/19 41811 -137.221.160.0/21 41811 -137.221.168.0/22 41811 -137.221.184.0/21 41811 -137.221.200.0/22 41811 -137.221.223.0/24 8190 -137.221.224.0/22 204777 -137.222.0.0/16 786 -137.224.0.0/16 1103 -137.226.0.0/16 47610 -137.227.192.0/21 21633 -137.227.236.0/24 1842 -137.228.0.0/16 127 -137.229.0.0/16 7774 -137.230.0.0/16 14381 -137.232.0.0/21 27090 -137.232.8.0/21 5341 -137.232.16.0/21 5341 -137.232.96.0/19 5323 -137.232.128.0/23 5956 -137.232.130.0/24 5956 -137.232.131.0/24 310 -137.232.132.0/24 5956 -137.232.133.0/24 310 -137.232.134.0/23 5956 -137.232.136.0/24 310 -137.232.137.0/24 5956 -137.232.138.0/24 5956 -137.232.139.0/24 310 -137.232.140.0/22 5956 -137.232.144.0/20 5956 -137.232.176.0/20 1540 -137.232.192.0/18 1540 -137.233.192.0/18 1540 -137.234.96.0/19 637 -137.234.128.0/17 637 -137.235.96.0/19 637 -137.236.0.0/20 27495 -137.236.16.0/21 27495 -137.236.24.0/23 27495 -137.236.26.0/24 27495 -137.236.27.0/24 27570 -137.236.28.0/22 27495 -137.236.32.0/21 27495 -137.236.40.0/22 27495 -137.236.44.0/24 31917 -137.236.45.0/24 27495 -137.236.46.0/23 27495 -137.236.48.0/24 3356 -137.236.49.0/24 27495 -137.236.50.0/23 27495 -137.236.52.0/22 27495 -137.236.56.0/21 27495 -137.236.64.0/20 27495 -137.236.80.0/24 27495 -137.236.81.0/24 27570 -137.236.82.0/23 27495 -137.236.84.0/22 27495 -137.236.88.0/21 27495 -137.236.96.0/19 27495 -137.236.128.0/23 27495 -137.236.130.0/24 27495 -137.236.131.0/24 31917 -137.236.132.0/22 27495 -137.236.136.0/21 27495 -137.236.144.0/22 27495 -137.236.148.0/23 27495 -137.236.150.0/24 27495 -137.236.151.0/24 6468 -137.236.152.0/23 27495 -137.236.154.0/24 31917 -137.236.155.0/24 27495 -137.236.156.0/24 27495 -137.236.157.0/24 31917 -137.236.158.0/23 27495 -137.236.160.0/22 27495 -137.236.164.0/23 31917 -137.236.166.0/23 27495 -137.236.168.0/21 27495 -137.236.176.0/22 27495 -137.236.180.0/23 27495 -137.236.182.0/24 31917 -137.236.183.0/24 27495 -137.236.184.0/21 27495 -137.236.192.0/18 27495 -137.237.0.0/16 243 -137.238.0.0/17 26462 -137.238.128.0/18 26462 -137.238.192.0/19 26462 -137.238.224.0/20 26462 -137.238.240.0/20 3755 -137.239.0.0/16 30237 -137.240.0.0/14 385 -137.244.0.0/16 385 -137.245.0.0/16 132 -137.246.0.0/24 367 -137.246.1.0/24 27086 -137.246.2.0/24 27086 -137.246.3.0/24 367 -137.246.4.0/23 367 -137.246.6.0/23 27086 -137.246.8.0/23 27086 -137.246.10.0/23 367 -137.246.12.0/22 27086 -137.246.16.0/24 367 -137.246.17.0/24 27086 -137.246.18.0/23 27086 -137.246.20.0/22 27086 -137.246.24.0/22 27086 -137.246.28.0/23 27086 -137.246.30.0/23 367 -137.246.32.0/20 367 -137.246.48.0/21 27086 -137.246.56.0/22 27086 -137.246.60.0/23 27086 -137.246.62.0/24 27086 -137.246.63.0/24 367 -137.246.64.0/22 367 -137.246.68.0/22 27086 -137.246.72.0/21 27086 -137.246.80.0/20 27086 -137.246.96.0/22 27086 -137.246.100.0/22 367 -137.246.104.0/21 367 -137.246.112.0/20 367 -137.246.128.0/24 367 -137.246.129.0/24 27086 -137.246.130.0/23 27086 -137.246.132.0/22 27086 -137.246.136.0/21 27086 -137.246.144.0/21 27086 -137.246.152.0/24 27086 -137.246.153.0/24 367 -137.246.154.0/23 367 -137.246.156.0/22 367 -137.246.160.0/20 367 -137.246.176.0/21 27086 -137.246.184.0/22 27086 -137.246.188.0/23 27086 -137.246.190.0/24 27086 -137.246.191.0/24 367 -137.246.192.0/18 27086 -137.248.0.0/16 680 -137.250.0.0/16 680 -137.251.0.0/16 5501 -137.253.0.0/16 786 -137.254.0.0/16 792 -137.255.3.0/24 28683 -137.255.4.0/23 28683 -137.255.6.0/23 328228 -137.255.8.0/22 28683 -138.0.0.0/22 264524 -138.0.4.0/22 264527 -138.0.8.0/22 52349 -138.0.12.0/22 6507 -138.0.16.0/22 7738 -138.0.20.0/22 264528 -138.0.24.0/22 264539 -138.0.28.0/22 264529 -138.0.32.0/22 262755 -138.0.36.0/22 264530 -138.0.40.0/22 52320 -138.0.44.0/22 262369 -138.0.48.0/22 264542 -138.0.52.0/22 264525 -138.0.56.0/22 52426 -138.0.60.0/23 264545 -138.0.62.0/23 6 -138.0.64.0/22 262595 -138.0.68.0/22 264536 -138.0.72.0/22 264531 -138.0.76.0/22 264540 -138.0.80.0/22 264541 -138.0.84.0/22 264537 -138.0.88.0/24 264646 -138.0.89.0/24 263819 -138.0.90.0/24 264646 -138.0.91.0/24 263819 -138.0.92.0/22 262407 -138.0.96.0/22 264543 -138.0.100.0/22 53059 -138.0.104.0/22 262216 -138.0.112.0/22 264544 -138.0.116.0/22 262186 -138.0.120.0/22 14259 -138.0.124.0/22 264548 -138.0.128.0/22 264549 -138.0.132.0/22 264547 -138.0.136.0/22 264550 -138.0.140.0/22 264551 -138.0.144.0/22 264566 -138.0.148.0/22 264600 -138.0.152.0/22 20207 -138.0.156.0/23 7303 -138.0.158.0/24 52236 -138.0.159.0/24 7303 -138.0.160.0/22 264555 -138.0.164.0/22 264557 -138.0.168.0/22 263592 -138.0.172.0/22 264552 -138.0.176.0/22 264558 -138.0.180.0/22 28580 -138.0.184.0/22 263736 -138.0.188.0/22 52838 -138.0.192.0/22 28131 -138.0.196.0/22 263073 -138.0.200.0/22 263581 -138.0.204.0/22 264556 -138.0.208.0/22 264553 -138.0.212.0/22 264554 -138.0.216.0/22 264559 -138.0.220.0/22 264560 -138.0.224.0/22 53199 -138.0.228.0/22 263725 -138.0.232.0/22 264567 -138.0.236.0/22 264573 -138.0.240.0/22 264850 -138.0.244.0/22 263264 -138.0.248.0/22 263629 -138.0.252.0/22 264561 -138.1.0.0/19 31898 -138.1.32.0/20 31898 -138.1.48.0/21 31898 -138.1.64.0/19 31898 -138.1.96.0/20 31898 -138.1.128.0/17 31898 -138.4.0.0/16 766 -138.5.0.0/16 7046 -138.6.0.0/16 38956 -138.7.0.0/18 7575 -138.7.67.0/24 7575 -138.7.120.0/24 7575 -138.7.152.0/23 7575 -138.7.191.0/24 7575 -138.7.193.0/24 7575 -138.8.24.0/23 6195 -138.8.74.0/24 18593 -138.8.105.0/24 33598 -138.8.107.0/24 18593 -138.8.108.0/24 33598 -138.8.109.0/24 18593 -138.8.117.0/24 18593 -138.8.120.0/24 33598 -138.9.0.0/16 18663 -138.11.0.0/20 4469 -138.11.24.0/21 4469 -138.11.32.0/24 4469 -138.11.216.0/21 4469 -138.11.246.0/23 4469 -138.11.250.0/23 4469 -138.12.0.0/16 3356 -138.13.0.0/16 385 -138.14.0.0/16 2119 -138.15.0.0/16 209 -138.16.0.0/16 11078 -138.19.0.0/16 9269 -138.20.99.0/24 5049 -138.20.184.0/24 5049 -138.20.185.0/24 21439 -138.21.3.0/24 8528 -138.21.12.0/24 8528 -138.21.113.0/24 8528 -138.21.148.0/24 8528 -138.22.0.0/16 1853 -138.23.0.0/16 6106 -138.24.0.0/24 2764 -138.24.1.0/24 38809 -138.24.2.0/23 2764 -138.24.4.0/22 2764 -138.24.8.0/21 2764 -138.24.16.0/20 2764 -138.24.32.0/19 2764 -138.24.64.0/18 2764 -138.24.128.0/17 2764 -138.25.0.0/16 7575 -138.26.0.0/16 3452 -138.27.0.0/16 1464 -138.28.0.0/16 600 -138.29.0.0/16 22742 -138.32.8.0/21 15269 -138.32.16.0/23 18701 -138.32.18.0/24 18701 -138.32.24.0/24 18701 -138.32.32.0/19 18701 -138.32.80.0/21 18701 -138.32.168.0/22 18701 -138.32.176.0/20 18701 -138.32.232.0/22 18701 -138.32.236.0/24 4761 -138.32.237.0/24 7713 -138.32.240.0/22 18701 -138.32.244.0/24 4847 -138.32.248.0/21 18701 -138.33.33.0/24 4503 -138.33.99.0/24 4503 -138.34.0.0/22 577 -138.34.4.0/22 32710 -138.34.8.0/23 577 -138.34.10.0/23 32710 -138.34.12.0/22 16570 -138.34.16.0/24 7456 -138.34.20.0/24 32277 -138.34.22.0/23 32710 -138.34.24.0/22 32710 -138.34.28.0/22 577 -138.34.32.0/23 577 -138.34.36.0/22 577 -138.34.40.0/24 577 -138.34.41.0/24 7311 -138.34.44.0/22 577 -138.34.48.0/21 577 -138.34.64.0/23 577 -138.34.66.0/24 3848 -138.34.67.0/24 577 -138.34.68.0/23 577 -138.34.72.0/24 577 -138.34.73.0/24 5690 -138.34.249.0/24 7456 -138.36.0.0/22 264562 -138.36.4.0/22 264564 -138.36.16.0/22 12180 -138.36.20.0/22 263026 -138.36.24.0/22 23520 -138.36.28.0/22 52807 -138.36.32.0/22 14868 -138.36.36.0/22 264568 -138.36.40.0/22 264570 -138.36.44.0/22 264565 -138.36.48.0/23 53190 -138.36.51.0/24 53190 -138.36.52.0/22 19037 -138.36.56.0/22 52613 -138.36.60.0/22 262832 -138.36.64.0/23 52467 -138.36.66.0/24 52467 -138.36.68.0/22 61797 -138.36.72.0/22 61807 -138.36.76.0/22 262159 -138.36.80.0/22 264571 -138.36.84.0/22 264193 -138.36.88.0/22 28294 -138.36.92.0/22 265645 -138.36.96.0/22 263726 -138.36.100.0/22 264599 -138.36.104.0/22 264575 -138.36.108.0/22 264574 -138.36.112.0/22 264576 -138.36.116.0/22 264577 -138.36.120.0/22 264582 -138.36.124.0/22 264578 -138.36.128.0/22 264579 -138.36.132.0/22 264580 -138.36.140.0/22 28257 -138.36.144.0/23 32034 -138.36.147.0/24 265515 -138.36.148.0/22 263729 -138.36.152.0/22 28453 -138.36.156.0/22 52717 -138.36.160.0/22 52610 -138.36.164.0/22 263444 -138.36.168.0/22 262300 -138.36.172.0/22 263554 -138.36.176.0/22 52568 -138.36.180.0/22 262272 -138.36.184.0/22 52968 -138.36.188.0/22 264584 -138.36.192.0/22 264585 -138.36.196.0/22 264586 -138.36.200.0/22 264591 -138.36.204.0/22 28343 -138.36.208.0/22 264587 -138.36.212.0/22 264590 -138.36.216.0/23 264220 -138.36.218.0/24 264220 -138.36.219.0/24 16397 -138.36.220.0/24 27964 -138.36.221.0/24 265704 -138.36.222.0/23 265784 -138.36.224.0/22 264588 -138.36.228.0/22 264598 -138.36.232.0/22 61696 -138.36.236.0/22 27823 -138.36.240.0/22 264589 -138.36.244.0/22 262814 -138.36.248.0/22 61934 -138.36.252.0/22 269733 -138.37.0.0/16 198864 -138.38.0.0/16 786 -138.39.7.0/24 5665 -138.39.22.0/23 5665 -138.39.24.0/24 5665 -138.39.47.0/24 5665 -138.40.0.0/16 786 -138.41.0.0/16 137 -138.42.0.0/16 6126 -138.43.11.0/24 48582 -138.43.28.0/22 48582 -138.43.32.0/20 133771 -138.43.48.0/21 11747 -138.43.60.0/22 396905 -138.43.64.0/19 46293 -138.43.112.0/23 40547 -138.43.114.0/24 16509 -138.43.128.0/24 395437 -138.43.130.0/23 395437 -138.43.132.0/22 395437 -138.43.136.0/21 395437 -138.43.144.0/20 395437 -138.43.160.0/20 395437 -138.43.176.0/21 395437 -138.43.191.0/24 395437 -138.43.192.0/20 133771 -138.43.209.0/24 397774 -138.43.210.0/23 30264 -138.43.212.0/22 30264 -138.43.216.0/21 30264 -138.43.224.0/20 394147 -138.43.240.0/22 395347 -138.43.244.0/22 62593 -138.43.248.0/22 397343 -138.43.252.0/24 13767 -138.43.253.0/24 397414 -138.43.254.0/23 397304 -138.44.0.0/16 7575 -138.46.52.0/23 20416 -138.46.62.0/23 20416 -138.47.0.0/16 19564 -138.48.0.0/16 2611 -138.49.0.0/16 3128 -138.50.0.0/16 1565 -138.51.0.0/16 239 -138.58.148.0/23 11355 -138.59.0.0/22 263739 -138.59.4.0/22 263821 -138.59.8.0/22 269788 -138.59.12.0/22 27750 -138.59.16.0/22 52423 -138.59.20.0/22 28201 -138.59.24.0/22 27665 -138.59.28.0/22 264603 -138.59.32.0/22 263152 -138.59.40.0/22 264596 -138.59.44.0/22 264595 -138.59.48.0/22 264597 -138.59.52.0/22 264594 -138.59.56.0/22 52887 -138.59.60.0/22 264153 -138.59.64.0/22 22411 -138.59.68.0/22 61931 -138.59.72.0/22 264604 -138.59.76.0/22 264094 -138.59.80.0/22 264093 -138.59.84.0/22 264602 -138.59.88.0/22 22689 -138.59.92.0/22 262769 -138.59.96.0/22 27720 -138.59.100.0/22 61871 -138.59.104.0/22 262756 -138.59.112.0/22 28606 -138.59.116.0/22 11562 -138.59.120.0/22 28210 -138.59.124.0/22 61588 -138.59.128.0/22 53222 -138.59.132.0/23 28110 -138.59.134.0/24 54044 -138.59.135.0/24 28110 -138.59.140.0/22 263737 -138.59.144.0/22 264097 -138.59.148.0/22 28165 -138.59.156.0/22 263042 -138.59.160.0/22 15256 -138.59.164.0/22 263732 -138.59.168.0/22 52268 -138.59.172.0/22 263746 -138.59.176.0/22 263686 -138.59.184.0/22 264104 -138.59.188.0/22 264103 -138.59.192.0/22 264133 -138.59.196.0/22 263077 -138.59.200.0/22 264126 -138.59.204.0/22 263735 -138.59.208.0/22 264116 -138.59.212.0/22 264110 -138.59.216.0/22 264119 -138.59.220.0/22 264127 -138.59.228.0/22 265206 -138.59.232.0/22 264114 -138.59.236.0/22 263154 -138.59.240.0/22 264214 -138.59.244.0/22 28100 -138.59.248.0/22 52858 -138.59.252.0/24 263438 -138.62.0.0/16 3292 -138.63.0.0/16 1715 -138.64.0.0/16 4685 -138.66.0.0/16 20981 -138.67.0.0/16 36704 -138.68.0.0/19 14061 -138.68.32.0/23 14061 -138.68.34.0/24 14061 -138.68.36.0/22 14061 -138.68.40.0/21 14061 -138.68.48.0/20 14061 -138.68.64.0/18 14061 -138.68.128.0/17 14061 -138.69.30.0/24 11676 -138.69.44.0/24 32382 -138.69.46.0/23 11676 -138.69.48.0/23 11676 -138.69.60.0/22 11676 -138.69.74.0/23 11676 -138.69.76.0/23 16983 -138.69.84.0/22 11676 -138.69.88.0/22 11676 -138.69.120.0/23 11676 -138.69.152.0/21 11676 -138.69.160.0/21 11676 -138.69.170.0/24 22907 -138.69.172.0/24 22907 -138.69.174.0/23 22907 -138.69.176.0/24 22907 -138.69.188.0/23 16983 -138.69.198.0/23 14566 -138.69.200.0/23 14566 -138.69.204.0/23 14566 -138.69.210.0/23 14566 -138.69.213.0/24 14566 -138.69.214.0/24 14566 -138.69.222.0/24 14566 -138.69.224.0/24 14566 -138.69.239.0/24 14566 -138.69.242.0/24 16983 -138.69.251.0/24 14566 -138.70.0.0/16 15589 -138.72.0.0/16 30013 -138.73.0.0/16 611 -138.74.0.0/16 2041 -138.75.0.0/16 4773 -138.77.0.0/16 24433 -138.78.0.0/16 396087 -138.80.0.0/17 58611 -138.80.128.0/18 58611 -138.80.192.0/20 58611 -138.80.208.0/21 7575 -138.80.216.0/22 7575 -138.80.220.0/24 7575 -138.80.221.0/24 58611 -138.80.222.0/23 58611 -138.80.224.0/20 58611 -138.80.240.0/23 7575 -138.80.242.0/23 58611 -138.80.244.0/22 58611 -138.80.248.0/22 7575 -138.80.252.0/23 7575 -138.80.254.0/23 58611 -138.81.0.0/16 3303 -138.84.0.0/16 7018 -138.85.0.0/16 8147 -138.86.0.0/16 15295 -138.87.0.0/16 7386 -138.88.0.0/15 701 -138.91.0.0/16 8075 -138.92.0.0/16 11482 -138.94.0.0/22 3549 -138.94.4.0/22 52901 -138.94.8.0/22 28360 -138.94.12.0/22 52312 -138.94.16.0/22 264123 -138.94.20.0/22 264101 -138.94.24.0/22 264108 -138.94.28.0/22 264100 -138.94.32.0/22 264121 -138.94.36.0/23 264107 -138.94.39.0/24 264107 -138.94.44.0/22 264125 -138.94.48.0/22 264124 -138.94.52.0/22 264106 -138.94.56.0/22 263749 -138.94.60.0/22 7063 -138.94.64.0/22 264135 -138.94.68.0/22 263471 -138.94.72.0/22 262848 -138.94.76.0/22 263649 -138.94.80.0/22 52833 -138.94.84.0/22 263574 -138.94.88.0/22 264152 -138.94.92.0/22 264145 -138.94.96.0/22 264136 -138.94.100.0/22 262821 -138.94.104.0/22 264134 -138.94.108.0/22 262293 -138.94.112.0/22 52866 -138.94.116.0/22 52612 -138.94.123.0/24 27884 -138.94.124.0/22 264154 -138.94.128.0/22 61584 -138.94.132.0/22 264164 -138.94.136.0/22 264172 -138.94.140.0/22 28397 -138.94.144.0/22 22869 -138.94.148.0/22 262375 -138.94.152.0/22 264167 -138.94.156.0/22 263564 -138.94.160.0/22 264166 -138.94.164.0/22 264180 -138.94.172.0/22 264168 -138.94.176.0/22 52655 -138.94.180.0/22 61666 -138.94.188.0/22 264175 -138.94.192.0/22 264186 -138.94.196.0/22 61581 -138.94.200.0/22 264169 -138.94.204.0/22 264187 -138.94.208.0/22 264194 -138.94.212.0/22 264174 -138.94.216.0/22 263744 -138.94.220.0/22 28670 -138.94.224.0/22 262669 -138.94.228.0/22 52751 -138.94.232.0/22 262887 -138.94.236.0/22 264177 -138.94.240.0/22 263222 -138.94.244.0/23 16906 -138.94.246.0/24 16906 -138.94.247.0/24 265840 -138.94.252.0/22 263763 -138.96.0.0/16 776 -138.97.0.0/22 262346 -138.97.4.0/22 263037 -138.97.8.0/22 28158 -138.97.12.0/22 264111 -138.97.16.0/22 52604 -138.97.20.0/22 264112 -138.97.24.0/22 264118 -138.97.28.0/22 264117 -138.97.32.0/22 61900 -138.97.36.0/22 264129 -138.97.40.0/22 264120 -138.97.44.0/22 264140 -138.97.48.0/22 262811 -138.97.52.0/22 264128 -138.97.56.0/22 27695 -138.97.60.0/22 264130 -138.97.64.0/22 61591 -138.97.68.0/22 264147 -138.97.72.0/22 264139 -138.97.80.0/22 27937 -138.97.84.0/22 264138 -138.97.88.0/22 264146 -138.97.92.0/22 264158 -138.97.96.0/22 264137 -138.97.100.0/22 264181 -138.97.104.0/22 264182 -138.97.108.0/22 264260 -138.97.112.0/22 264163 -138.97.116.0/22 264162 -138.97.120.0/22 264149 -138.97.124.0/22 264144 -138.97.128.0/22 267442 -138.97.132.0/22 262645 -138.97.136.0/22 28343 -138.97.140.0/22 27729 -138.97.144.0/22 264188 -138.97.148.0/22 264197 -138.97.152.0/22 264192 -138.97.156.0/22 52449 -138.97.160.0/22 263751 -138.97.164.0/22 264189 -138.97.168.0/22 11888 -138.97.176.0/22 52436 -138.97.180.0/22 264206 -138.97.184.0/22 264193 -138.97.188.0/22 264191 -138.97.192.0/22 264200 -138.97.196.0/22 264195 -138.97.200.0/23 263800 -138.97.202.0/24 263800 -138.97.204.0/22 264196 -138.97.208.0/22 264201 -138.97.212.0/22 264207 -138.97.216.0/22 264202 -138.97.220.0/22 264209 -138.97.224.0/22 264208 -138.97.228.0/22 61904 -138.97.232.0/22 264204 -138.97.236.0/22 28100 -138.97.240.0/22 264217 -138.97.244.0/22 264203 -138.97.248.0/22 264821 -138.97.252.0/22 264213 -138.99.0.0/22 26617 -138.99.4.0/23 19037 -138.99.6.0/23 11664 -138.99.8.0/22 264148 -138.99.12.0/22 264150 -138.99.16.0/22 264159 -138.99.20.0/22 262883 -138.99.24.0/22 61869 -138.99.28.0/22 61786 -138.99.32.0/22 262582 -138.99.36.0/22 263740 -138.99.40.0/22 263086 -138.99.44.0/23 19037 -138.99.46.0/24 11664 -138.99.47.0/24 19037 -138.99.48.0/22 262427 -138.99.52.0/22 28577 -138.99.56.0/22 52877 -138.99.60.0/22 264170 -138.99.64.0/22 264155 -138.99.68.0/22 264160 -138.99.72.0/22 264178 -138.99.76.0/22 264157 -138.99.80.0/22 264156 -138.99.84.0/22 262802 -138.99.88.0/22 262862 -138.99.92.0/22 264161 -138.99.96.0/22 264171 -138.99.100.0/22 263750 -138.99.104.0/22 52764 -138.99.108.0/22 52747 -138.99.112.0/22 262544 -138.99.116.0/22 53233 -138.99.120.0/22 61317 -138.99.128.0/22 263768 -138.99.132.0/22 264215 -138.99.136.0/22 61497 -138.99.140.0/22 53232 -138.99.144.0/24 7203 -138.99.145.0/24 262287 -138.99.146.0/24 262287 -138.99.148.0/22 28398 -138.99.152.0/22 264205 -138.99.160.0/22 264212 -138.99.164.0/22 264211 -138.99.168.0/22 264219 -138.99.172.0/22 52328 -138.99.180.0/22 262199 -138.99.184.0/22 263244 -138.99.188.0/22 52695 -138.99.192.0/22 52760 -138.99.196.0/22 264216 -138.99.200.0/22 264210 -138.99.204.0/22 52686 -138.99.208.0/23 36351 -138.99.210.0/24 61317 -138.99.211.0/24 36351 -138.99.212.0/22 27660 -138.99.216.0/24 43350 -138.99.217.0/24 28098 -138.99.218.0/23 28098 -138.99.220.0/22 265710 -138.99.224.0/22 27901 -138.99.232.0/22 262307 -138.99.236.0/22 52471 -138.99.241.0/24 28198 -138.99.242.0/23 28198 -138.99.244.0/22 262374 -138.99.248.0/22 28130 -138.99.252.0/22 263589 -138.100.0.0/16 766 -138.101.0.0/16 9593 -138.102.0.0/16 2200 -138.103.0.0/19 7046 -138.103.32.0/19 703 -138.103.64.0/18 7046 -138.103.128.0/17 7046 -138.104.0.0/22 4637 -138.104.4.0/24 4739 -138.104.5.0/24 4637 -138.104.6.0/23 4637 -138.104.8.0/24 7545 -138.104.9.0/24 4637 -138.104.10.0/23 4637 -138.104.12.0/22 4637 -138.104.16.0/20 4637 -138.104.32.0/19 4637 -138.104.64.0/18 4637 -138.104.128.0/18 4637 -138.104.192.0/19 4637 -138.104.224.0/24 1290 -138.104.225.0/24 4637 -138.104.226.0/23 6453 -138.104.228.0/23 4755 -138.104.230.0/23 6421 -138.104.232.0/24 4637 -138.104.233.0/24 6453 -138.104.234.0/23 4637 -138.104.236.0/24 6453 -138.104.237.0/24 4637 -138.104.238.0/23 4637 -138.104.240.0/20 4637 -138.106.0.0/16 202116 -138.107.0.0/16 2497 -138.108.0.0/24 396290 -138.108.1.0/24 16477 -138.108.2.0/24 396290 -138.108.6.0/24 16477 -138.108.11.0/24 7018 -138.108.13.0/24 16477 -138.108.15.0/24 396290 -138.108.16.0/21 16477 -138.108.24.0/23 396290 -138.108.26.0/24 396290 -138.108.27.0/24 16477 -138.108.28.0/22 396290 -138.108.32.0/23 16477 -138.108.34.0/24 396290 -138.108.36.0/24 16477 -138.108.38.0/23 16477 -138.108.40.0/23 3549 -138.108.42.0/24 16477 -138.108.46.0/24 16477 -138.108.47.0/24 396290 -138.108.50.0/24 16477 -138.108.52.0/24 3356 -138.108.54.0/23 16477 -138.108.63.0/24 16477 -138.108.64.0/24 2686 -138.108.94.0/24 2856 -138.108.96.0/21 16477 -138.108.104.0/22 16477 -138.108.110.0/23 16477 -138.108.113.0/24 16477 -138.108.114.0/24 16477 -138.108.124.0/24 16477 -138.108.136.0/23 16477 -138.108.140.0/22 16477 -138.108.144.0/24 16477 -138.108.148.0/24 16477 -138.108.162.0/23 16477 -138.110.0.0/16 396349 -138.111.16.0/24 3952 -138.111.88.0/24 3952 -138.111.134.0/23 1759 -138.111.152.0/24 3952 -138.111.199.0/24 3952 -138.111.223.0/24 3952 -138.111.225.0/24 3952 -138.111.236.0/23 3952 -138.111.240.0/24 3952 -138.113.10.0/24 54994 -138.113.32.0/22 54994 -138.113.36.0/23 54994 -138.113.38.0/24 54994 -138.115.0.0/16 270 -138.116.0.0/16 33004 -138.117.0.0/22 17108 -138.117.4.0/22 263765 -138.117.8.0/22 263754 -138.117.12.0/24 265755 -138.117.13.0/24 52465 -138.117.14.0/23 52465 -138.117.16.0/23 263793 -138.117.19.0/24 263793 -138.117.20.0/22 27984 -138.117.24.0/22 263321 -138.117.32.0/22 264479 -138.117.36.0/22 264221 -138.117.40.0/22 3549 -138.117.48.0/22 263757 -138.117.52.0/24 267373 -138.117.53.0/24 264229 -138.117.54.0/24 264229 -138.117.55.0/24 267373 -138.117.56.0/22 264224 -138.117.60.0/22 264223 -138.117.64.0/22 263586 -138.117.68.0/22 61466 -138.117.72.0/22 28258 -138.117.76.0/22 263774 -138.117.80.0/22 264235 -138.117.84.0/23 265688 -138.117.88.0/22 264236 -138.117.92.0/22 264232 -138.117.96.0/22 262146 -138.117.100.0/22 262387 -138.117.104.0/22 52996 -138.117.108.0/22 27951 -138.117.112.0/22 17069 -138.117.116.0/22 264233 -138.117.120.0/22 262820 -138.117.124.0/22 28331 -138.117.128.0/22 52399 -138.117.132.0/23 61572 -138.117.135.0/24 61572 -138.117.136.0/24 61498 -138.117.143.0/24 22869 -138.117.144.0/22 264242 -138.117.148.0/22 265831 -138.117.152.0/22 264234 -138.117.156.0/22 52367 -138.117.160.0/22 262168 -138.117.164.0/22 264517 -138.117.169.0/24 63018 -138.117.170.0/24 63018 -138.117.172.0/22 264237 -138.117.176.0/22 264245 -138.117.180.0/22 264239 -138.117.184.0/22 264244 -138.117.188.0/22 264238 -138.117.192.0/22 262316 -138.117.196.0/22 264488 -138.117.200.0/22 263699 -138.117.204.0/22 262336 -138.117.208.0/22 61856 -138.117.212.0/22 264251 -138.117.216.0/22 264254 -138.117.220.0/22 262271 -138.118.0.0/22 264255 -138.118.4.0/22 264241 -138.118.8.0/22 14178 -138.118.12.0/22 262591 -138.118.16.0/22 262290 -138.118.20.0/22 52846 -138.118.24.0/22 52840 -138.118.28.0/22 262980 -138.118.32.0/22 264247 -138.118.36.0/22 52308 -138.118.40.0/22 264259 -138.118.44.0/22 264252 -138.118.48.0/22 52431 -138.118.52.0/22 264249 -138.118.56.0/22 264246 -138.118.60.0/22 264248 -138.118.64.0/22 264250 -138.118.68.0/22 52573 -138.118.72.0/22 264258 -138.118.76.0/22 262394 -138.118.80.0/22 262217 -138.118.84.0/22 53184 -138.118.88.0/22 262485 -138.118.92.0/22 53171 -138.118.96.0/22 264253 -138.118.100.0/22 52708 -138.118.104.0/22 263781 -138.118.108.0/22 264257 -138.118.112.0/22 20207 -138.118.116.0/22 262372 -138.118.120.0/22 28287 -138.118.124.0/22 28005 -138.118.128.0/23 262500 -138.118.132.0/22 262638 -138.118.136.0/24 265705 -138.118.137.0/24 28613 -138.118.138.0/23 28613 -138.118.140.0/22 52925 -138.118.144.0/22 266749 -138.118.148.0/22 52693 -138.118.156.0/22 262252 -138.118.160.0/22 28638 -138.118.164.0/22 52799 -138.118.168.0/22 263569 -138.118.172.0/22 262448 -138.118.176.0/22 264268 -138.118.180.0/22 264264 -138.118.184.0/22 264276 -138.118.188.0/22 264272 -138.118.192.0/22 264262 -138.118.196.0/22 264265 -138.118.204.0/22 264263 -138.118.208.0/22 52323 -138.118.212.0/22 264738 -138.118.216.0/22 263780 -138.118.220.0/22 264273 -138.118.224.0/22 264267 -138.118.228.0/22 264266 -138.118.232.0/22 263880 -138.118.236.0/22 28183 -138.118.240.0/22 264283 -138.118.244.0/22 264270 -138.118.248.0/22 264269 -138.118.252.0/22 264282 -138.119.0.0/16 611 -138.120.0.0/16 8983 -138.121.0.0/22 264284 -138.121.4.0/22 61499 -138.121.8.0/22 264274 -138.121.12.0/22 262191 -138.121.16.0/22 264290 -138.121.20.0/22 264286 -138.121.24.0/22 264275 -138.121.28.0/22 264289 -138.121.32.0/22 264288 -138.121.36.0/22 264279 -138.121.44.0/22 264280 -138.121.48.0/22 264278 -138.121.52.0/22 264281 -138.121.56.0/22 264285 -138.121.60.0/22 262809 -138.121.64.0/22 28201 -138.121.68.0/22 1916 -138.121.72.0/22 52637 -138.121.76.0/23 52427 -138.121.78.0/23 19315 -138.121.80.0/22 61500 -138.121.84.0/22 263789 -138.121.88.0/22 263834 -138.121.92.0/22 263848 -138.121.96.0/22 263784 -138.121.100.0/22 263775 -138.121.104.0/22 263790 -138.121.108.0/22 7004 -138.121.112.0/22 263791 -138.121.116.0/22 264295 -138.121.120.0/22 264293 -138.121.124.0/22 263755 -138.121.128.0/22 264294 -138.121.132.0/22 264300 -138.121.136.0/22 264297 -138.121.140.0/22 28317 -138.121.144.0/22 52821 -138.121.148.0/22 264298 -138.121.152.0/22 264299 -138.121.156.0/22 263202 -138.121.160.0/22 263693 -138.121.168.0/22 263700 -138.121.172.0/22 263646 -138.121.180.0/22 264302 -138.121.184.0/22 263043 -138.121.188.0/22 52813 -138.121.192.0/22 264296 -138.121.196.0/22 264301 -138.121.200.0/22 33182 -138.121.204.0/22 61908 -138.121.208.0/22 262656 -138.121.212.0/22 61648 -138.121.216.0/22 263424 -138.121.220.0/22 262992 -138.121.224.0/22 264440 -138.121.228.0/22 263782 -138.121.232.0/22 53045 -138.121.236.0/22 61632 -138.121.240.0/22 7303 -138.121.244.0/22 264323 -138.121.248.0/22 262393 -138.121.252.0/22 262765 -138.122.0.0/22 264307 -138.122.4.0/22 269832 -138.122.8.0/22 262404 -138.122.12.0/22 264322 -138.122.16.0/22 264306 -138.122.20.0/22 264308 -138.122.24.0/22 263785 -138.122.28.0/22 262468 -138.122.32.0/22 264310 -138.122.36.0/22 262683 -138.122.40.0/22 264316 -138.122.44.0/22 264315 -138.122.48.0/22 264328 -138.122.52.0/22 264318 -138.122.56.0/22 264327 -138.122.60.0/22 61573 -138.122.64.0/22 264309 -138.122.68.0/22 264317 -138.122.72.0/22 263263 -138.122.76.0/22 264499 -138.122.80.0/22 28598 -138.122.84.0/22 52666 -138.122.88.0/22 263077 -138.122.92.0/22 264324 -138.122.96.0/22 28458 -138.122.100.0/22 264311 -138.122.104.0/22 264331 -138.122.108.0/22 263792 -138.122.112.0/23 264312 -138.122.116.0/22 264319 -138.122.120.0/22 264320 -138.122.124.0/22 264336 -138.122.128.0/22 20207 -138.122.132.0/22 264478 -138.122.136.0/22 264329 -138.122.140.0/22 61678 -138.122.144.0/22 18734 -138.122.148.0/22 264337 -138.122.152.0/22 264321 -138.122.156.0/22 263786 -138.122.160.0/22 263787 -138.122.164.0/22 52800 -138.122.168.0/22 262952 -138.122.172.0/22 262518 -138.122.176.0/22 264502 -138.122.180.0/22 52653 -138.122.188.0/22 263801 -138.122.192.0/22 52485 -138.122.196.0/24 61813 -138.122.197.0/24 20940 -138.122.198.0/23 61813 -138.122.200.0/24 266747 -138.122.201.0/24 10299 -138.122.202.0/23 10299 -138.122.204.0/22 264326 -138.122.208.0/22 264330 -138.122.212.0/22 264341 -138.122.216.0/22 262362 -138.122.220.0/22 262993 -138.122.228.0/22 27955 -138.122.232.0/22 12989 -138.122.236.0/22 262547 -138.122.240.0/23 263837 -138.122.244.0/24 263796 -138.122.247.0/24 28317 -138.122.248.0/22 262590 -138.122.252.0/22 28378 -138.123.0.0/16 46887 -138.124.0.0/16 2116 -138.127.56.0/23 12007 -138.128.0.0/20 55286 -138.128.16.0/21 55286 -138.128.24.0/23 55286 -138.128.26.0/24 55286 -138.128.27.0/24 55081 -138.128.28.0/24 55081 -138.128.29.0/24 55286 -138.128.30.0/23 55286 -138.128.32.0/23 55286 -138.128.34.0/24 55286 -138.128.35.0/24 36352 -138.128.36.0/23 55286 -138.128.38.0/24 36352 -138.128.39.0/24 55286 -138.128.40.0/21 55286 -138.128.48.0/22 55286 -138.128.52.0/23 55286 -138.128.54.0/24 55286 -138.128.55.0/24 55081 -138.128.56.0/23 55286 -138.128.58.0/24 55286 -138.128.59.0/24 55081 -138.128.60.0/22 55286 -138.128.64.0/22 55286 -138.128.68.0/23 36352 -138.128.70.0/23 55286 -138.128.72.0/22 55286 -138.128.76.0/24 36352 -138.128.77.0/24 55081 -138.128.78.0/24 36352 -138.128.79.0/24 55081 -138.128.80.0/24 55286 -138.128.81.0/24 36352 -138.128.82.0/24 55081 -138.128.83.0/24 55286 -138.128.84.0/22 55286 -138.128.88.0/21 55286 -138.128.96.0/21 55286 -138.128.104.0/24 55286 -138.128.105.0/24 55081 -138.128.106.0/23 36352 -138.128.108.0/22 55286 -138.128.112.0/20 36352 -138.128.130.0/23 12177 -138.128.136.0/21 49544 -138.128.144.0/20 13886 -138.128.160.0/19 33182 -138.128.192.0/19 25820 -138.128.224.0/22 62519 -138.128.228.0/23 46456 -138.128.230.0/23 396264 -138.128.232.0/21 394423 -138.128.240.0/23 36007 -138.128.242.0/23 396949 -138.128.244.0/24 396949 -138.128.245.0/24 396948 -138.128.246.0/24 396948 -138.128.247.0/24 36007 -138.128.248.0/24 396000 -138.128.250.0/23 396000 -138.128.252.0/22 64260 -138.129.0.0/20 15267 -138.129.16.0/21 17326 -138.129.24.0/21 15267 -138.129.32.0/19 15267 -138.129.64.0/18 17326 -138.129.128.0/17 17326 -138.130.0.0/16 1221 -138.131.0.0/16 559 -138.132.0.0/16 3269 -138.133.25.0/24 14762 -138.133.52.0/24 14762 -138.133.60.0/24 14762 -138.133.192.0/24 14762 -138.133.194.0/24 14762 -138.133.232.0/22 14762 -138.134.2.0/24 5540 -138.134.29.0/24 5540 -138.134.99.0/24 5540 -138.134.100.0/23 5540 -138.134.102.0/24 5540 -138.134.105.0/24 5540 -138.134.126.0/24 5540 -138.134.129.0/24 5540 -138.134.131.0/24 5540 -138.134.162.0/24 5540 -138.134.192.0/24 5540 -138.136.0.0/21 721 -138.136.8.0/22 5972 -138.136.12.0/23 721 -138.136.14.0/23 5972 -138.136.16.0/22 5972 -138.136.20.0/22 721 -138.136.24.0/24 721 -138.136.25.0/24 5972 -138.136.26.0/23 5972 -138.136.28.0/22 5972 -138.136.32.0/20 5972 -138.136.48.0/23 5972 -138.136.50.0/24 5972 -138.136.51.0/24 721 -138.136.52.0/22 5972 -138.136.56.0/23 5972 -138.136.58.0/24 721 -138.136.59.0/24 5972 -138.136.60.0/22 5972 -138.136.64.0/18 5972 -138.136.128.0/18 5972 -138.136.192.0/19 5972 -138.136.224.0/21 5972 -138.136.232.0/22 5972 -138.136.236.0/23 5972 -138.136.238.0/24 5972 -138.136.239.0/24 721 -138.136.240.0/21 721 -138.136.248.0/21 5972 -138.137.0.0/21 5972 -138.137.8.0/22 721 -138.137.12.0/24 721 -138.137.13.0/24 5972 -138.137.14.0/23 5972 -138.137.16.0/20 5972 -138.137.32.0/24 27064 -138.137.33.0/24 5972 -138.137.34.0/23 5972 -138.137.36.0/22 5972 -138.137.40.0/21 5972 -138.137.48.0/20 5972 -138.137.64.0/18 5972 -138.137.128.0/22 721 -138.137.132.0/23 721 -138.137.134.0/24 721 -138.137.135.0/24 5972 -138.137.136.0/21 5972 -138.137.144.0/20 5972 -138.137.160.0/20 5972 -138.137.176.0/22 721 -138.137.180.0/23 721 -138.137.182.0/23 5972 -138.137.184.0/22 5972 -138.137.188.0/22 721 -138.137.192.0/18 721 -138.138.0.0/17 5972 -138.138.128.0/18 5972 -138.138.192.0/19 5972 -138.138.224.0/20 5972 -138.138.240.0/21 721 -138.138.248.0/22 721 -138.138.252.0/24 721 -138.138.253.0/24 5972 -138.138.254.0/23 5972 -138.139.0.0/16 721 -138.140.0.0/15 721 -138.142.0.0/16 721 -138.143.0.0/16 27064 -138.144.0.0/15 721 -138.146.0.0/16 721 -138.147.0.0/18 721 -138.147.64.0/21 721 -138.147.72.0/23 721 -138.147.74.0/24 27064 -138.147.75.0/24 721 -138.147.76.0/24 27064 -138.147.77.0/24 721 -138.147.78.0/23 721 -138.147.80.0/20 721 -138.147.96.0/19 721 -138.147.128.0/17 721 -138.148.0.0/15 27064 -138.150.0.0/17 721 -138.150.128.0/18 27066 -138.150.192.0/18 27065 -138.151.0.0/17 721 -138.151.128.0/21 721 -138.151.136.0/24 721 -138.151.137.0/24 27066 -138.151.138.0/23 721 -138.151.140.0/22 721 -138.151.144.0/20 721 -138.151.160.0/19 721 -138.151.192.0/18 721 -138.152.0.0/14 721 -138.156.0.0/16 1540 -138.157.0.0/21 1540 -138.157.8.0/21 721 -138.157.16.0/21 1540 -138.157.24.0/22 721 -138.157.28.0/22 637 -138.157.32.0/21 721 -138.157.40.0/21 637 -138.157.48.0/23 1540 -138.157.50.0/23 721 -138.157.52.0/23 1540 -138.157.54.0/23 721 -138.157.56.0/24 1540 -138.157.57.0/24 721 -138.157.58.0/23 721 -138.157.60.0/22 1540 -138.157.64.0/23 1540 -138.157.66.0/23 721 -138.157.68.0/23 1540 -138.157.70.0/23 721 -138.157.72.0/23 721 -138.157.74.0/23 637 -138.157.76.0/23 721 -138.157.78.0/23 1540 -138.157.80.0/20 1540 -138.157.96.0/22 1540 -138.157.100.0/23 1540 -138.157.102.0/23 721 -138.157.104.0/22 1540 -138.157.108.0/22 721 -138.157.112.0/22 721 -138.157.116.0/23 1540 -138.157.118.0/23 721 -138.157.120.0/21 1540 -138.157.128.0/22 721 -138.157.132.0/23 721 -138.157.134.0/23 1540 -138.157.136.0/24 1540 -138.157.137.0/24 721 -138.157.138.0/23 721 -138.157.140.0/22 721 -138.157.144.0/20 721 -138.157.160.0/19 721 -138.157.192.0/20 721 -138.157.208.0/24 721 -138.157.209.0/24 1540 -138.157.210.0/24 721 -138.157.211.0/24 1540 -138.157.212.0/24 1540 -138.157.213.0/24 721 -138.157.214.0/23 721 -138.157.216.0/21 721 -138.157.224.0/23 1540 -138.157.226.0/23 721 -138.157.228.0/22 721 -138.157.232.0/21 721 -138.157.240.0/24 1540 -138.157.241.0/24 637 -138.157.242.0/23 637 -138.157.244.0/22 637 -138.157.248.0/21 721 -138.158.0.0/15 721 -138.160.0.0/21 721 -138.160.8.0/24 721 -138.160.9.0/24 27064 -138.160.10.0/23 721 -138.160.12.0/22 721 -138.160.16.0/20 721 -138.160.32.0/19 721 -138.160.64.0/18 721 -138.160.128.0/17 721 -138.161.0.0/21 721 -138.161.8.0/22 721 -138.161.12.0/24 27064 -138.161.13.0/24 721 -138.161.14.0/23 721 -138.161.16.0/20 721 -138.161.32.0/19 721 -138.161.64.0/20 721 -138.161.80.0/21 721 -138.161.88.0/22 721 -138.161.92.0/23 721 -138.161.94.0/24 27064 -138.161.95.0/24 721 -138.161.96.0/19 721 -138.161.128.0/17 721 -138.162.0.0/22 665 -138.162.4.0/24 616 -138.162.5.0/24 721 -138.162.6.0/23 665 -138.162.8.0/21 665 -138.162.16.0/20 665 -138.162.32.0/19 665 -138.162.64.0/18 665 -138.162.128.0/23 637 -138.162.130.0/23 1540 -138.162.132.0/24 637 -138.162.133.0/24 665 -138.162.134.0/23 665 -138.162.136.0/22 665 -138.162.140.0/22 637 -138.162.144.0/20 665 -138.162.160.0/19 665 -138.162.192.0/18 665 -138.163.0.0/22 665 -138.163.4.0/24 616 -138.163.5.0/24 665 -138.163.6.0/23 665 -138.163.8.0/22 665 -138.163.12.0/24 616 -138.163.13.0/24 665 -138.163.14.0/23 665 -138.163.16.0/24 616 -138.163.17.0/24 665 -138.163.18.0/23 665 -138.163.20.0/22 665 -138.163.24.0/24 616 -138.163.25.0/24 665 -138.163.26.0/23 665 -138.163.28.0/24 616 -138.163.29.0/24 665 -138.163.30.0/23 665 -138.163.32.0/19 665 -138.163.64.0/19 665 -138.163.96.0/24 665 -138.163.97.0/24 616 -138.163.98.0/23 665 -138.163.100.0/22 665 -138.163.104.0/21 665 -138.163.112.0/20 665 -138.163.128.0/22 665 -138.163.132.0/24 616 -138.163.133.0/24 665 -138.163.134.0/23 665 -138.163.136.0/21 665 -138.163.144.0/20 665 -138.163.160.0/22 637 -138.163.164.0/22 665 -138.163.168.0/21 665 -138.163.176.0/20 665 -138.163.192.0/19 665 -138.163.224.0/20 665 -138.163.240.0/22 637 -138.163.244.0/22 665 -138.163.248.0/21 665 -138.164.0.0/15 721 -138.166.0.0/16 721 -138.167.0.0/20 1540 -138.167.16.0/22 721 -138.167.20.0/22 1540 -138.167.24.0/22 637 -138.167.28.0/22 721 -138.167.32.0/21 1540 -138.167.40.0/22 1540 -138.167.44.0/22 721 -138.167.48.0/20 1540 -138.167.64.0/19 721 -138.167.96.0/21 721 -138.167.104.0/22 721 -138.167.108.0/22 1540 -138.167.112.0/23 1540 -138.167.114.0/23 721 -138.167.116.0/22 721 -138.167.120.0/21 637 -138.167.128.0/20 637 -138.167.144.0/21 721 -138.167.152.0/22 721 -138.167.156.0/23 721 -138.167.158.0/24 721 -138.167.159.0/24 33657 -138.167.160.0/21 1540 -138.167.168.0/21 721 -138.167.176.0/20 1540 -138.167.192.0/20 721 -138.167.208.0/20 1540 -138.167.224.0/21 721 -138.167.232.0/24 1540 -138.167.233.0/24 721 -138.167.234.0/23 721 -138.167.236.0/22 1540 -138.167.240.0/21 721 -138.167.248.0/22 1540 -138.167.252.0/22 721 -138.168.0.0/16 637 -138.169.0.0/22 721 -138.169.4.0/22 27064 -138.169.8.0/21 27064 -138.169.16.0/20 27064 -138.169.32.0/19 721 -138.169.64.0/19 27064 -138.169.96.0/21 27064 -138.169.104.0/21 721 -138.169.112.0/20 721 -138.169.128.0/17 721 -138.170.0.0/15 721 -138.178.0.0/15 721 -138.180.0.0/17 721 -138.180.128.0/18 721 -138.180.192.0/23 721 -138.180.194.0/24 5839 -138.180.195.0/24 721 -138.180.196.0/24 721 -138.180.197.0/24 5839 -138.180.198.0/24 5839 -138.180.199.0/24 721 -138.180.200.0/21 721 -138.180.208.0/20 721 -138.180.224.0/19 721 -138.183.0.0/17 647 -138.185.0.0/24 13999 -138.185.2.0/23 13999 -138.185.4.0/22 61694 -138.185.8.0/22 263838 -138.185.13.0/24 52439 -138.185.16.0/22 264333 -138.185.20.0/22 264332 -138.185.24.0/22 264335 -138.185.28.0/24 263817 -138.185.29.0/24 267752 -138.185.30.0/23 263817 -138.185.32.0/22 264338 -138.185.36.0/22 264334 -138.185.40.0/22 263384 -138.185.44.0/22 52540 -138.185.48.0/22 262323 -138.185.52.0/22 263657 -138.185.56.0/22 264340 -138.185.60.0/22 61860 -138.185.64.0/24 263806 -138.185.72.0/22 264343 -138.185.76.0/22 263824 -138.185.80.0/22 52364 -138.185.84.0/22 264344 -138.185.92.0/22 264346 -138.185.96.0/22 28210 -138.185.100.0/22 61660 -138.185.104.0/22 263760 -138.185.108.0/22 52721 -138.185.112.0/22 28066 -138.185.116.0/22 201288 -138.185.120.0/22 263910 -138.185.124.0/22 263840 -138.185.128.0/22 263914 -138.185.132.0/22 263439 -138.185.136.0/23 263805 -138.185.138.0/24 263805 -138.185.140.0/22 52307 -138.185.144.0/22 264345 -138.185.148.0/22 263846 -138.185.152.0/22 263845 -138.185.156.0/22 264342 -138.185.160.0/22 262604 -138.185.164.0/22 262748 -138.185.168.0/22 28152 -138.185.172.0/22 61862 -138.185.176.0/22 264348 -138.185.180.0/22 28255 -138.185.184.0/22 61893 -138.185.188.0/22 262494 -138.185.192.0/22 263841 -138.185.196.0/22 263847 -138.185.200.0/22 263849 -138.185.205.0/24 263704 -138.185.206.0/23 263704 -138.185.208.0/22 28104 -138.185.212.0/22 262482 -138.185.216.0/22 264367 -138.185.220.0/22 61702 -138.185.224.0/22 262944 -138.185.232.0/22 52892 -138.185.236.0/22 263919 -138.185.240.0/22 263920 -138.185.244.0/22 263921 -138.185.248.0/22 262241 -138.185.252.0/22 263940 -138.186.0.0/22 52579 -138.186.4.0/23 264660 -138.186.6.0/24 264660 -138.186.7.0/24 263771 -138.186.8.0/22 52511 -138.186.12.0/22 263772 -138.186.16.0/22 263873 -138.186.20.0/22 52468 -138.186.24.0/22 263861 -138.186.28.0/22 17072 -138.186.32.0/22 262775 -138.186.36.0/22 53080 -138.186.40.0/22 263852 -138.186.44.0/22 263854 -138.186.48.0/22 263858 -138.186.52.0/22 263856 -138.186.56.0/22 264066 -138.186.60.0/22 28103 -138.186.64.0/22 28405 -138.186.68.0/22 263863 -138.186.72.0/22 263853 -138.186.80.0/22 262622 -138.186.84.0/22 263855 -138.186.88.0/22 14709 -138.186.92.0/22 263124 -138.186.96.0/22 263857 -138.186.100.0/24 262927 -138.186.101.0/24 7155 -138.186.102.0/24 7155 -138.186.103.0/24 262927 -138.186.104.0/22 264353 -138.186.108.0/22 262354 -138.186.112.0/22 263866 -138.186.116.0/22 263862 -138.186.120.0/22 264681 -138.186.124.0/22 263867 -138.186.128.0/22 263860 -138.186.132.0/22 53160 -138.186.136.0/22 264850 -138.186.140.0/24 22011 -138.186.141.0/24 263812 -138.186.142.0/24 263812 -138.186.143.0/24 19180 -138.186.144.0/22 262575 -138.186.148.0/22 264651 -138.186.152.0/23 263818 -138.186.154.0/24 263818 -138.186.156.0/22 263868 -138.186.160.0/22 61449 -138.186.164.0/22 263864 -138.186.168.0/22 264484 -138.186.172.0/22 263877 -138.186.176.0/22 269750 -138.186.180.0/22 28580 -138.186.184.0/22 61784 -138.186.188.0/22 263802 -138.186.192.0/22 262573 -138.186.196.0/22 263869 -138.186.200.0/22 28539 -138.186.204.0/22 53218 -138.186.208.0/22 265645 -138.186.216.0/22 263715 -138.186.220.0/22 263874 -138.186.224.0/22 263872 -138.186.228.0/22 263870 -138.186.232.0/22 262979 -138.186.240.0/22 52937 -138.186.244.0/22 263830 -138.186.249.0/24 27773 -138.186.250.0/23 27773 -138.186.252.0/22 263827 -138.187.128.0/18 3303 -138.188.0.0/17 3303 -138.188.128.0/21 3303 -138.188.136.0/24 51820 -138.188.137.0/24 3303 -138.188.138.0/24 51820 -138.188.139.0/24 3303 -138.188.140.0/22 3303 -138.188.144.0/20 3303 -138.188.160.0/19 3303 -138.188.192.0/18 3303 -138.189.0.0/16 12511 -138.190.0.0/16 3303 -138.191.0.0/16 12511 -138.192.0.0/16 21727 -138.194.0.0/16 6262 -138.195.0.0/17 2200 -138.195.128.0/20 2200 -138.195.144.0/20 31367 -138.195.160.0/19 2200 -138.195.192.0/18 2200 -138.197.0.0/17 14061 -138.197.128.0/18 14061 -138.197.192.0/19 14061 -138.197.224.0/20 14061 -138.197.240.0/22 14061 -138.197.252.0/22 14061 -138.198.0.0/16 51964 -138.199.68.0/24 30094 -138.200.0.0/20 24989 -138.201.0.0/16 24940 -138.202.0.0/16 22700 -138.203.0.0/16 5488 -138.204.0.0/22 61516 -138.204.4.0/22 263777 -138.204.8.0/22 263967 -138.204.12.0/23 41095 -138.204.14.0/24 41095 -138.204.20.0/22 263878 -138.204.24.0/22 14868 -138.204.28.0/22 262790 -138.204.32.0/22 263557 -138.204.36.0/22 61775 -138.204.40.0/22 263756 -138.204.44.0/22 263893 -138.204.48.0/22 263891 -138.204.52.0/22 263902 -138.204.56.0/22 263882 -138.204.60.0/22 263883 -138.204.64.0/23 263895 -138.204.66.0/24 263895 -138.204.67.0/24 264459 -138.204.68.0/22 263880 -138.204.72.0/22 263894 -138.204.76.0/22 263879 -138.204.80.0/22 263478 -138.204.84.0/22 263886 -138.204.88.0/22 53089 -138.204.92.0/22 28165 -138.204.96.0/22 263884 -138.204.100.0/22 263885 -138.204.104.0/22 262523 -138.204.108.0/23 263795 -138.204.110.0/24 263795 -138.204.111.0/24 23470 -138.204.112.0/22 263897 -138.204.116.0/22 263898 -138.204.120.0/22 263906 -138.204.124.0/22 264411 -138.204.128.0/22 263887 -138.204.132.0/22 263888 -138.204.136.0/22 263899 -138.204.140.0/22 263903 -138.204.144.0/23 263896 -138.204.146.0/24 263896 -138.204.148.0/22 263900 -138.204.152.0/22 263808 -138.204.156.0/22 263687 -138.204.161.0/24 22927 -138.204.162.0/23 22927 -138.204.168.0/22 36351 -138.204.172.0/22 263911 -138.204.176.0/22 263912 -138.204.180.0/22 262262 -138.204.184.0/22 263907 -138.204.188.0/22 263918 -138.204.192.0/22 263908 -138.204.196.0/22 263904 -138.204.200.0/22 263905 -138.204.206.0/23 28407 -138.204.208.0/22 28294 -138.204.212.0/22 61890 -138.204.216.0/22 61510 -138.204.220.0/22 53153 -138.204.224.0/22 263915 -138.204.228.0/22 61506 -138.204.232.0/22 263917 -138.204.236.0/22 52320 -138.204.240.0/22 263913 -138.205.0.0/21 3257 -138.205.160.0/20 3257 -138.206.38.0/23 10100 -138.206.40.0/22 10100 -138.206.136.0/22 10100 -138.206.140.0/23 10100 -138.206.148.0/22 10100 -138.206.152.0/23 10100 -138.206.160.0/22 10100 -138.206.200.0/22 10100 -138.206.204.0/23 10100 -138.206.236.0/24 10100 -138.206.238.0/23 10100 -138.206.240.0/24 10100 -138.207.0.0/23 3549 -138.207.5.0/24 3549 -138.207.64.0/24 396368 -138.207.65.0/24 12025 -138.207.66.0/23 12025 -138.207.68.0/24 394976 -138.207.69.0/24 12025 -138.207.70.0/23 12025 -138.207.128.0/20 11776 -138.207.144.0/23 11776 -138.207.146.0/24 11776 -138.207.148.0/22 11776 -138.207.152.0/21 11776 -138.207.160.0/21 11776 -138.207.168.0/22 11776 -138.207.172.0/23 11776 -138.207.174.0/24 11776 -138.207.175.0/24 32939 -138.207.176.0/20 11776 -138.207.192.0/20 23100 -138.207.208.0/20 11776 -138.207.224.0/21 23100 -138.207.232.0/21 11776 -138.207.240.0/20 11776 -138.208.5.0/24 19858 -138.208.135.0/24 19858 -138.210.0.0/19 2379 -138.210.32.0/20 2379 -138.210.48.0/21 2379 -138.210.56.0/21 13787 -138.210.64.0/22 22186 -138.210.68.0/23 22186 -138.210.70.0/23 209 -138.210.72.0/22 22186 -138.210.76.0/24 2379 -138.210.77.0/24 6222 -138.210.78.0/23 14921 -138.210.80.0/24 6222 -138.210.81.0/24 2379 -138.210.82.0/24 14921 -138.210.83.0/24 6222 -138.210.84.0/24 6222 -138.210.85.0/24 2379 -138.210.86.0/24 11398 -138.210.87.0/24 26741 -138.210.88.0/22 17402 -138.210.92.0/22 2379 -138.210.96.0/21 2379 -138.210.104.0/23 2379 -138.210.106.0/24 2379 -138.210.107.0/24 25898 -138.210.108.0/23 209 -138.210.110.0/23 2379 -138.210.112.0/22 2379 -138.210.116.0/22 6367 -138.210.120.0/22 14921 -138.210.124.0/22 2379 -138.210.128.0/22 14921 -138.210.132.0/23 209 -138.210.134.0/24 209 -138.210.135.0/24 2379 -138.210.136.0/23 46729 -138.210.138.0/23 2379 -138.210.140.0/22 2379 -138.210.144.0/21 11398 -138.210.152.0/22 11398 -138.210.156.0/24 11398 -138.210.157.0/24 209 -138.210.158.0/23 11398 -138.210.160.0/23 2379 -138.210.162.0/23 5778 -138.210.164.0/24 29817 -138.210.165.0/24 2379 -138.210.166.0/23 2379 -138.210.168.0/21 14921 -138.210.176.0/23 22561 -138.210.178.0/24 22561 -138.210.179.0/24 209 -138.210.180.0/22 22561 -138.210.184.0/22 32855 -138.210.188.0/23 32855 -138.210.190.0/23 209 -138.210.192.0/18 22186 -138.212.0.0/17 59121 -138.212.224.0/23 4713 -138.212.227.0/24 4713 -138.212.228.0/23 4713 -138.212.230.0/24 4713 -138.212.238.0/23 4713 -138.212.241.0/24 4713 -138.212.245.0/24 4713 -138.212.249.0/24 4713 -138.212.252.0/24 4713 -138.215.0.0/24 3246 -138.215.252.0/22 3246 -138.216.0.0/16 1759 -138.217.0.0/16 1221 -138.218.0.0/17 808 -138.218.196.0/24 32364 -138.219.0.0/24 61495 -138.219.1.0/24 61504 -138.219.2.0/24 52404 -138.219.4.0/22 14232 -138.219.8.0/22 263813 -138.219.12.0/22 27729 -138.219.16.0/22 263814 -138.219.20.0/22 263937 -138.219.24.0/22 61701 -138.219.32.0/22 263927 -138.219.36.0/22 28411 -138.219.40.0/22 27823 -138.219.44.0/22 263939 -138.219.48.0/22 263933 -138.219.52.0/22 263924 -138.219.56.0/22 52510 -138.219.60.0/22 61508 -138.219.64.0/22 263651 -138.219.68.0/22 52812 -138.219.72.0/22 263829 -138.219.76.0/22 61940 -138.219.80.0/22 10834 -138.219.84.0/22 61666 -138.219.88.0/22 53124 -138.219.92.0/22 263942 -138.219.96.0/22 263922 -138.219.100.0/22 263941 -138.219.104.0/22 263925 -138.219.108.0/22 263944 -138.219.112.0/22 263926 -138.219.116.0/22 263928 -138.219.120.0/22 263821 -138.219.124.0/22 263930 -138.219.128.0/22 263934 -138.219.132.0/22 263929 -138.219.136.0/22 263931 -138.219.140.0/22 52233 -138.219.144.0/22 52564 -138.219.152.0/22 53135 -138.219.156.0/22 26617 -138.219.160.0/22 263820 -138.219.164.0/22 61639 -138.219.168.0/22 264017 -138.219.172.0/22 263735 -138.219.176.0/22 263935 -138.219.180.0/22 263945 -138.219.184.0/22 263954 -138.219.188.0/22 263932 -138.219.192.0/22 263936 -138.219.196.0/22 263946 -138.219.200.0/22 263943 -138.219.204.0/22 262649 -138.219.208.0/22 262777 -138.219.212.0/22 263822 -138.219.216.0/22 263823 -138.219.220.0/22 263963 -138.219.224.0/22 263962 -138.219.228.0/22 263826 -138.219.232.0/22 264611 -138.219.236.0/22 263948 -138.219.240.0/22 263073 -138.219.244.0/22 52873 -138.219.248.0/22 264634 -138.219.252.0/22 264064 -138.220.0.0/16 10497 -138.221.250.0/24 20868 -138.223.0.0/16 3303 -138.224.0.0/16 12980 -138.225.0.0/16 20868 -138.227.175.0/24 20868 -138.229.4.0/22 14297 -138.229.12.0/22 14297 -138.229.16.0/20 22423 -138.229.32.0/19 26271 -138.229.64.0/21 19257 -138.229.72.0/22 19257 -138.229.76.0/24 9304 -138.229.77.0/24 19257 -138.229.78.0/23 19257 -138.229.80.0/20 19257 -138.229.96.0/20 64267 -138.229.112.0/20 54614 -138.229.128.0/17 20115 -138.230.28.0/24 63146 -138.230.29.0/24 13336 -138.230.59.0/24 13336 -138.230.248.0/21 13336 -138.231.0.0/16 2426 -138.232.0.0/16 1110 -138.233.0.0/16 56736 -138.234.0.0/16 11231 -138.235.36.0/23 4768 -138.235.44.0/23 4768 -138.235.69.0/24 136990 -138.235.70.0/24 136990 -138.236.0.0/16 17234 -138.237.0.0/16 18791 -138.238.0.0/17 33084 -138.238.128.0/18 33084 -138.238.192.0/19 33084 -138.238.224.0/20 33084 -138.238.240.0/21 33084 -138.238.248.0/22 33084 -138.238.252.0/23 33084 -138.238.254.0/23 6079 -138.239.0.0/16 8075 -138.242.96.0/20 17916 -138.242.192.0/19 17916 -138.243.0.0/17 23779 -138.243.128.0/18 23779 -138.243.192.0/19 23779 -138.243.224.0/20 23779 -138.243.240.0/21 23779 -138.243.248.0/22 38629 -138.243.252.0/22 23779 -138.244.0.0/15 12816 -138.246.0.0/16 12816 -138.247.0.0/16 23122 -138.248.0.0/20 8426 -138.250.0.0/15 786 -138.253.0.0/16 786 -138.254.0.0/16 7834 -138.255.0.0/22 263950 -138.255.4.0/22 263949 -138.255.8.0/22 263957 -138.255.12.0/22 263947 -138.255.16.0/22 264404 -138.255.20.0/22 263951 -138.255.24.0/22 28247 -138.255.28.0/22 263952 -138.255.32.0/22 263965 -138.255.36.0/22 263955 -138.255.40.0/22 263956 -138.255.44.0/22 61772 -138.255.48.0/23 264565 -138.255.56.0/22 263958 -138.255.60.0/22 28394 -138.255.64.0/22 263970 -138.255.68.0/22 263969 -138.255.72.0/22 263959 -138.255.76.0/22 263964 -138.255.80.0/22 27797 -138.255.84.0/22 263960 -138.255.88.0/24 264607 -138.255.89.0/24 49835 -138.255.90.0/23 264607 -138.255.92.0/22 262380 -138.255.97.0/24 263807 -138.255.98.0/24 263807 -138.255.100.0/22 263702 -138.255.104.0/22 263961 -138.255.108.0/22 263966 -138.255.112.0/22 263968 -138.255.116.0/22 265501 -138.255.120.0/22 263441 -138.255.124.0/22 263973 -138.255.128.0/22 263972 -138.255.132.0/22 264360 -138.255.136.0/24 264574 -138.255.138.0/23 267472 -138.255.140.0/22 52731 -138.255.144.0/22 28210 -138.255.148.0/23 263650 -138.255.152.0/22 27903 -138.255.156.0/22 263974 -138.255.160.0/22 263975 -138.255.164.0/22 263993 -138.255.168.0/22 263833 -138.255.172.0/22 263986 -138.255.176.0/22 263979 -138.255.180.0/22 263987 -138.255.184.0/22 263976 -138.255.188.0/22 263988 -138.255.192.0/22 263971 -138.255.196.0/22 262868 -138.255.200.0/22 264512 -138.255.204.0/22 263983 -138.255.208.0/22 263977 -138.255.212.0/22 263996 -138.255.220.0/22 263994 -138.255.224.0/22 263989 -138.255.228.0/22 263995 -138.255.232.0/22 263982 -138.255.236.0/22 263984 -138.255.240.0/22 263981 -138.255.244.0/22 263980 -138.255.248.0/22 264605 -138.255.252.0/24 264645 -138.255.253.0/24 27660 -138.255.254.0/23 264645 -139.0.0.0/19 9905 -139.0.32.0/19 23700 -139.0.64.0/18 23700 -139.0.128.0/17 23700 -139.1.120.0/21 15540 -139.1.144.0/20 15540 -139.2.0.0/21 15486 -139.2.34.0/23 15486 -139.2.160.0/24 3356 -139.2.164.0/23 3356 -139.2.166.0/24 3356 -139.2.168.0/24 3356 -139.2.175.0/24 3356 -139.2.181.0/24 3356 -139.2.182.0/24 3356 -139.2.185.0/24 3356 -139.2.245.0/24 15486 -139.4.0.0/16 702 -139.5.10.0/23 9829 -139.5.16.0/22 133676 -139.5.20.0/22 56209 -139.5.24.0/21 133720 -139.5.32.0/22 134785 -139.5.36.0/22 132768 -139.5.40.0/22 135448 -139.5.44.0/22 133720 -139.5.48.0/22 134000 -139.5.52.0/22 45152 -139.5.60.0/22 134764 -139.5.68.0/22 17501 -139.5.72.0/22 17501 -139.5.76.0/22 7545 -139.5.84.0/22 27381 -139.5.88.0/22 18126 -139.5.96.0/23 55879 -139.5.98.0/24 55879 -139.5.100.0/22 58659 -139.5.104.0/22 137271 -139.5.108.0/22 135391 -139.5.112.0/22 58713 -139.5.116.0/22 17539 -139.5.124.0/22 9268 -139.5.132.0/22 134552 -139.5.136.0/22 17456 -139.5.140.0/22 139538 -139.5.144.0/22 45328 -139.5.148.0/22 38320 -139.5.152.0/22 38320 -139.5.156.0/22 24337 -139.5.164.0/22 64095 -139.5.168.0/22 4686 -139.5.172.0/24 56307 -139.5.176.0/24 133448 -139.5.177.0/24 55720 -139.5.178.0/23 55720 -139.5.180.0/22 26658 -139.5.184.0/22 55303 -139.5.198.0/23 135223 -139.5.200.0/22 45753 -139.5.208.0/22 24000 -139.5.212.0/22 135386 -139.5.216.0/22 17882 -139.5.220.0/23 135224 -139.5.222.0/23 134316 -139.5.224.0/23 8100 -139.5.228.0/22 45775 -139.5.232.0/22 133296 -139.5.236.0/22 136334 -139.5.240.0/22 133982 -139.5.248.0/24 133982 -139.5.252.0/23 133982 -139.5.254.0/24 133982 -139.6.0.0/16 680 -139.7.0.0/16 3209 -139.8.32.0/24 702 -139.9.0.0/18 55990 -139.9.64.0/19 55990 -139.9.100.0/22 55990 -139.9.104.0/21 55990 -139.9.112.0/20 55990 -139.9.128.0/20 55990 -139.9.144.0/20 58519 -139.9.160.0/19 55990 -139.9.192.0/19 55990 -139.9.224.0/20 58519 -139.9.240.0/21 58519 -139.9.248.0/22 58519 -139.11.0.0/16 680 -139.12.1.0/24 3320 -139.12.2.0/23 3320 -139.12.4.0/24 3320 -139.12.127.0/24 3320 -139.12.251.0/24 3320 -139.12.253.0/24 3320 -139.12.255.0/24 3320 -139.13.0.0/16 680 -139.14.0.0/16 2857 -139.15.0.0/20 203970 -139.15.16.0/20 9183 -139.15.32.0/19 9183 -139.15.64.0/18 9183 -139.15.128.0/17 9183 -139.17.0.0/16 680 -139.18.0.0/15 680 -139.20.0.0/16 680 -139.23.80.0/24 132699 -139.23.204.0/22 15465 -139.24.81.0/24 56114 -139.26.0.0/16 327697 -139.27.0.0/16 15854 -139.28.0.0/22 43571 -139.28.4.0/22 42926 -139.28.8.0/24 39391 -139.28.12.0/22 34724 -139.28.16.0/23 42807 -139.28.20.0/22 29119 -139.28.28.0/24 209575 -139.28.36.0/22 42331 -139.28.40.0/22 47273 -139.28.52.0/22 47140 -139.28.56.0/22 200064 -139.28.60.0/22 47641 -139.28.64.0/24 209573 -139.28.68.0/22 39305 -139.28.72.0/22 57844 -139.28.76.0/22 40996 -139.28.80.0/22 44920 -139.28.84.0/22 209618 -139.28.88.0/22 62235 -139.28.92.0/22 18530 -139.28.96.0/22 58057 -139.28.100.0/22 205394 -139.28.104.0/22 206375 -139.28.108.0/22 39175 -139.28.112.0/22 50554 -139.28.116.0/22 209621 -139.28.120.0/22 62240 -139.28.124.0/22 202204 -139.28.136.0/22 9009 -139.28.140.0/22 47381 -139.28.148.0/22 209624 -139.28.152.0/22 198930 -139.28.157.0/24 56911 -139.28.160.0/22 396319 -139.28.171.0/24 57844 -139.28.172.0/22 43350 -139.28.176.0/22 35478 -139.28.180.0/22 209445 -139.28.184.0/22 209633 -139.28.188.0/22 209632 -139.28.196.0/22 42232 -139.28.204.0/24 39335 -139.28.205.0/24 8100 -139.28.206.0/24 8100 -139.28.216.0/22 9009 -139.28.220.0/23 207967 -139.28.223.0/24 50113 -139.28.224.0/23 9009 -139.28.226.0/24 36352 -139.28.227.0/24 18779 -139.28.228.0/22 62412 -139.28.232.0/22 35913 -139.28.236.0/22 201983 -139.28.244.0/22 209405 -139.28.248.0/22 209627 -139.29.127.0/24 12897 -139.29.128.0/17 8767 -139.30.0.0/16 680 -139.38.0.0/19 5972 -139.38.32.0/20 5972 -139.38.48.0/21 5972 -139.38.56.0/24 5972 -139.38.58.0/23 5972 -139.38.60.0/22 5972 -139.38.64.0/18 5972 -139.38.128.0/19 5972 -139.38.160.0/22 5972 -139.38.164.0/23 5972 -139.38.166.0/24 5972 -139.38.170.0/23 5972 -139.38.172.0/22 5972 -139.38.176.0/20 5972 -139.38.192.0/21 5972 -139.38.200.0/22 5972 -139.38.204.0/23 5972 -139.38.209.0/24 5972 -139.38.210.0/23 5972 -139.38.212.0/22 5972 -139.38.216.0/21 5972 -139.38.224.0/19 5972 -139.39.0.0/19 5972 -139.39.32.0/23 5972 -139.39.37.0/24 5972 -139.39.38.0/23 5972 -139.39.40.0/22 5972 -139.39.44.0/23 5972 -139.39.48.0/20 5972 -139.39.64.0/20 5972 -139.39.80.0/21 5972 -139.39.88.0/22 5972 -139.39.92.0/24 5972 -139.39.99.0/24 5972 -139.39.100.0/22 5972 -139.39.104.0/21 5972 -139.39.115.0/24 5972 -139.39.116.0/23 5972 -139.39.124.0/22 5972 -139.39.128.0/18 5972 -139.39.192.0/20 5972 -139.39.208.0/23 5972 -139.39.214.0/23 5972 -139.39.216.0/21 5972 -139.39.224.0/19 5972 -139.45.0.0/17 43557 -139.45.131.0/24 394562 -139.45.132.0/24 394562 -139.45.160.0/22 5091 -139.45.164.0/23 5091 -139.45.167.0/24 5091 -139.45.168.0/23 5091 -139.45.170.0/24 5091 -139.45.192.0/22 9002 -139.45.196.0/23 9002 -139.45.198.0/23 210203 -139.45.200.0/21 9002 -139.45.208.0/20 9002 -139.45.224.0/20 9002 -139.45.240.0/21 9002 -139.45.248.0/21 198947 -139.46.0.0/16 19113 -139.47.0.0/17 15704 -139.47.128.0/19 15704 -139.47.160.0/19 12663 -139.47.192.0/21 12663 -139.47.200.0/22 201917 -139.47.204.0/22 12663 -139.47.208.0/22 12663 -139.47.212.0/22 201917 -139.47.216.0/21 12663 -139.47.224.0/20 12663 -139.47.240.0/23 1273 -139.47.242.0/24 6660 -139.47.243.0/24 12663 -139.47.244.0/22 12663 -139.47.248.0/21 12663 -139.48.0.0/16 16623 -139.51.0.0/16 14017 -139.52.0.0/16 5707 -139.53.0.0/16 3741 -139.55.0.0/16 7029 -139.56.8.0/24 6939 -139.57.0.0/16 16475 -139.58.0.0/16 3301 -139.59.0.0/16 14061 -139.60.0.0/23 14618 -139.60.2.0/24 16509 -139.60.3.0/24 14618 -139.60.4.0/22 395451 -139.60.8.0/23 393429 -139.60.15.0/24 393429 -139.60.16.0/22 22458 -139.60.20.0/22 395479 -139.60.24.0/21 36012 -139.60.32.0/22 33561 -139.60.36.0/22 395526 -139.60.40.0/21 23308 -139.60.48.0/20 13614 -139.60.64.0/21 19045 -139.60.72.0/22 396480 -139.60.76.0/22 395301 -139.60.80.0/20 36813 -139.60.96.0/23 395881 -139.60.98.0/23 32715 -139.60.100.0/24 31804 -139.60.101.0/24 64267 -139.60.102.0/23 54430 -139.60.104.0/22 22223 -139.60.108.0/22 13576 -139.60.112.0/24 62723 -139.60.116.0/23 53913 -139.60.120.0/24 63242 -139.60.121.0/24 395731 -139.60.122.0/23 63242 -139.60.124.0/22 63242 -139.60.128.0/20 396052 -139.60.144.0/21 46592 -139.60.152.0/22 29960 -139.60.156.0/22 36243 -139.60.160.0/22 395839 -139.60.164.0/22 7382 -139.60.168.0/23 54926 -139.60.170.0/24 54926 -139.60.172.0/23 396283 -139.60.174.0/24 63304 -139.60.175.0/24 396283 -139.60.176.0/20 14979 -139.60.192.0/21 55193 -139.60.200.0/24 36351 -139.60.205.0/24 36351 -139.60.206.0/23 36351 -139.60.208.0/23 14291 -139.60.210.0/24 18531 -139.60.211.0/24 53812 -139.60.212.0/22 393455 -139.60.216.0/22 26936 -139.60.220.0/22 46956 -139.60.224.0/23 395475 -139.60.226.0/24 19537 -139.60.228.0/22 62642 -139.60.232.0/21 393960 -139.61.68.0/22 15026 -139.61.78.0/23 19430 -139.61.80.0/23 15026 -139.61.84.0/23 15026 -139.61.86.0/23 19430 -139.61.112.0/21 19430 -139.61.160.0/23 15026 -139.62.0.0/16 11214 -139.63.0.0/16 1103 -139.66.200.0/23 1759 -139.66.204.0/22 2386 -139.66.212.0/23 24989 -139.66.217.0/24 1759 -139.66.218.0/23 1759 -139.66.220.0/24 1759 -139.66.222.0/23 1759 -139.66.224.0/24 1759 -139.66.227.0/24 1759 -139.66.228.0/23 1759 -139.66.230.0/24 1759 -139.66.234.0/24 9822 -139.66.241.0/24 1759 -139.66.246.0/24 1759 -139.67.0.0/16 5742 -139.68.64.0/21 40736 -139.68.72.0/21 25809 -139.68.80.0/21 25809 -139.68.126.0/24 40736 -139.68.146.0/24 25809 -139.68.171.0/24 40736 -139.69.0.0/16 3549 -139.70.0.0/16 11975 -139.71.0.0/24 6307 -139.71.8.0/24 6307 -139.71.16.0/21 6307 -139.71.24.0/23 6307 -139.71.48.0/22 6307 -139.71.52.0/23 6307 -139.71.66.0/23 6307 -139.71.68.0/22 6307 -139.71.72.0/22 6307 -139.71.76.0/23 6307 -139.71.78.0/24 6307 -139.71.80.0/24 6307 -139.71.82.0/24 6307 -139.71.84.0/22 6307 -139.71.88.0/22 6307 -139.71.92.0/23 6307 -139.71.108.0/24 6307 -139.71.113.0/24 6307 -139.71.114.0/23 6307 -139.71.116.0/22 6307 -139.71.126.0/23 6307 -139.71.136.0/24 6307 -139.71.144.0/23 6307 -139.71.147.0/24 6307 -139.71.152.0/22 6307 -139.71.160.0/23 45008 -139.71.192.0/22 6307 -139.71.196.0/24 6307 -139.71.200.0/24 45535 -139.71.244.0/24 6307 -139.72.0.0/17 10370 -139.72.128.0/19 10370 -139.72.160.0/21 10370 -139.72.168.0/23 3549 -139.72.170.0/23 10370 -139.72.172.0/22 10370 -139.72.176.0/20 10370 -139.72.192.0/18 10370 -139.73.209.0/24 132596 -139.73.212.0/24 132596 -139.73.223.0/24 132596 -139.73.232.0/23 132596 -139.74.0.0/16 1759 -139.75.0.0/16 680 -139.76.8.0/21 11712 -139.76.27.0/24 6389 -139.76.53.0/24 11712 -139.76.64.0/18 11712 -139.76.204.0/22 7029 -139.76.224.0/19 11712 -139.78.0.0/16 395421 -139.79.0.0/16 2612 -139.80.0.0/16 38305 -139.82.0.0/16 2715 -139.83.0.0/16 1930 -139.84.0.0/16 16498 -139.85.1.0/24 23354 -139.85.4.0/22 16535 -139.85.8.0/21 1358 -139.85.16.0/20 1358 -139.85.32.0/19 1358 -139.85.64.0/18 1358 -139.85.128.0/17 1358 -139.86.0.0/16 45213 -139.87.0.0/21 6142 -139.87.8.0/22 6142 -139.87.16.0/22 6142 -139.87.32.0/21 6142 -139.87.64.0/21 6142 -139.87.72.0/22 6142 -139.87.96.0/21 6142 -139.87.104.0/22 6142 -139.87.128.0/21 20054 -139.87.136.0/22 20054 -139.87.144.0/22 20054 -139.87.148.0/23 20054 -139.87.152.0/22 20054 -139.87.156.0/23 20054 -139.87.160.0/21 20054 -139.87.168.0/22 20054 -139.87.192.0/21 20054 -139.87.200.0/22 20054 -139.87.208.0/21 20054 -139.87.216.0/22 20054 -139.87.224.0/21 20054 -139.87.232.0/22 20054 -139.88.0.0/16 270 -139.91.0.0/16 8522 -139.92.0.0/16 2686 -139.94.0.0/16 1970 -139.96.0.0/16 3246 -139.97.0.0/16 719 -139.98.0.0/16 2116 -139.99.0.0/16 16276 -139.100.0.0/16 2278 -139.101.0.0/16 18081 -139.102.0.0/16 1767 -139.103.0.0/16 611 -139.104.2.0/24 36149 -139.104.3.0/24 396054 -139.104.5.0/24 17122 -139.104.64.0/22 8137 -139.104.72.0/21 8137 -139.104.172.0/22 54330 -139.104.176.0/22 54330 -139.104.180.0/23 30013 -139.104.182.0/24 30013 -139.104.184.0/23 8137 -139.104.186.0/24 19905 -139.104.187.0/24 8137 -139.104.188.0/22 8137 -139.104.192.0/22 11251 -139.104.197.0/24 22604 -139.104.200.0/22 11251 -139.104.204.0/23 11251 -139.104.207.0/24 11251 -139.104.208.0/24 11251 -139.104.209.0/24 22604 -139.104.210.0/24 11251 -139.104.211.0/24 22604 -139.104.212.0/24 11251 -139.104.216.0/22 22604 -139.104.220.0/23 22604 -139.104.224.0/21 29736 -139.104.232.0/24 30224 -139.104.252.0/22 8137 -139.105.0.0/16 5619 -139.106.0.0/15 5619 -139.108.0.0/14 5619 -139.112.0.0/13 5619 -139.120.0.0/16 5619 -139.121.0.0/16 188 -139.122.192.0/20 202116 -139.122.208.0/20 3549 -139.122.224.0/20 202116 -139.123.0.0/16 719 -139.124.0.0/16 2457 -139.125.0.0/16 7018 -139.126.0.0/16 32190 -139.127.0.0/16 30703 -139.128.0.0/16 8968 -139.129.0.0/16 37963 -139.130.0.0/16 1221 -139.131.12.0/23 14297 -139.131.18.0/23 14297 -139.131.28.0/23 14297 -139.131.42.0/23 14297 -139.131.64.0/21 14297 -139.131.76.0/22 14297 -139.131.80.0/21 14297 -139.131.96.0/22 14297 -139.131.108.0/23 14297 -139.131.112.0/22 14297 -139.131.120.0/22 14297 -139.131.126.0/23 14297 -139.131.134.0/23 14297 -139.131.143.0/24 14297 -139.131.144.0/20 53927 -139.131.160.0/23 14297 -139.131.164.0/23 14297 -139.131.174.0/23 14297 -139.131.180.0/22 14297 -139.131.184.0/23 14297 -139.131.192.0/21 14297 -139.131.204.0/22 14297 -139.131.208.0/22 14297 -139.131.212.0/22 53927 -139.131.216.0/21 14297 -139.131.224.0/23 53927 -139.131.226.0/23 14297 -139.131.228.0/22 14297 -139.131.232.0/21 14297 -139.131.240.0/21 14297 -139.131.250.0/24 14297 -139.132.0.0/16 7645 -139.133.0.0/16 786 -139.134.0.0/16 1221 -139.135.0.0/16 4181 -139.137.0.0/16 22093 -139.138.0.0/20 30404 -139.138.16.0/21 18625 -139.138.24.0/22 16417 -139.138.28.0/22 30215 -139.138.32.0/22 16417 -139.138.36.0/23 30238 -139.138.38.0/23 16417 -139.138.40.0/23 16417 -139.138.42.0/23 30215 -139.138.44.0/23 30215 -139.138.46.0/23 16417 -139.138.48.0/24 18625 -139.138.49.0/24 23005 -139.138.50.0/23 395769 -139.138.54.0/24 27592 -139.138.55.0/24 62889 -139.138.56.0/22 16417 -139.138.60.0/22 30238 -139.138.64.0/19 30404 -139.138.100.0/24 18625 -139.138.101.0/24 395325 -139.138.102.0/23 396220 -139.138.104.0/24 398241 -139.138.112.0/20 30404 -139.138.128.0/23 25956 -139.138.130.0/24 25956 -139.138.131.0/24 40483 -139.138.132.0/22 25956 -139.138.136.0/21 25956 -139.138.144.0/21 25956 -139.138.152.0/22 25956 -139.138.156.0/23 25956 -139.138.158.0/24 397473 -139.138.159.0/24 25956 -139.138.160.0/19 25956 -139.138.192.0/19 35432 -139.138.224.0/22 394977 -139.138.228.0/23 394977 -139.138.231.0/24 394977 -139.138.232.0/21 394977 -139.138.240.0/23 394977 -139.138.242.0/24 394977 -139.139.0.0/18 531 -139.139.64.0/19 531 -139.139.96.0/20 1555 -139.139.112.0/21 721 -139.139.120.0/22 531 -139.139.124.0/22 721 -139.139.128.0/22 531 -139.139.132.0/24 531 -139.139.133.0/24 721 -139.139.134.0/23 721 -139.139.136.0/21 721 -139.139.144.0/20 721 -139.139.160.0/20 531 -139.139.176.0/21 531 -139.139.184.0/22 531 -139.139.188.0/23 1553 -139.139.190.0/23 531 -139.139.192.0/18 531 -139.140.0.0/16 22847 -139.141.0.0/16 25242 -139.142.0.0/20 6539 -139.142.16.0/21 6539 -139.142.24.0/24 577 -139.142.25.0/24 6539 -139.142.26.0/23 6539 -139.142.28.0/22 6539 -139.142.32.0/19 6539 -139.142.64.0/23 6539 -139.142.66.0/24 6539 -139.142.67.0/24 577 -139.142.68.0/22 6539 -139.142.72.0/21 6539 -139.142.80.0/20 6539 -139.142.96.0/19 6539 -139.142.128.0/17 6539 -139.143.0.0/16 209237 -139.145.0.0/16 3292 -139.146.40.0/22 16526 -139.146.44.0/22 21591 -139.146.120.0/21 21591 -139.146.128.0/17 21591 -139.147.0.0/16 22198 -139.148.0.0/16 23771 -139.149.0.0/22 17071 -139.149.4.0/23 17071 -139.149.8.0/22 17071 -139.149.12.0/23 17071 -139.149.22.0/23 17071 -139.149.24.0/21 17071 -139.149.58.0/23 17071 -139.149.66.0/23 17071 -139.149.86.0/23 17071 -139.149.90.0/23 17071 -139.149.92.0/23 17071 -139.149.96.0/22 17071 -139.149.102.0/23 17071 -139.149.118.0/23 17071 -139.149.120.0/23 17071 -139.149.124.0/23 17071 -139.149.130.0/23 17071 -139.149.132.0/23 17071 -139.149.138.0/23 17071 -139.149.210.0/23 17071 -139.149.248.0/23 17071 -139.150.0.0/24 10158 -139.150.1.0/24 38099 -139.150.2.0/23 10158 -139.150.4.0/22 10158 -139.150.64.0/19 3786 -139.150.128.0/17 9286 -139.151.0.0/16 7018 -139.152.0.0/16 2497 -139.153.0.0/16 786 -139.155.0.0/16 45090 -139.157.0.0/16 1759 -139.159.0.0/19 23724 -139.159.32.0/22 4812 -139.159.44.0/22 63199 -139.159.48.0/22 63199 -139.159.96.0/20 138950 -139.159.112.0/24 63199 -139.159.113.0/24 4837 -139.159.114.0/23 138950 -139.159.118.0/23 63199 -139.159.128.0/19 55990 -139.159.160.0/22 55990 -139.159.164.0/23 58466 -139.159.168.0/22 55990 -139.159.172.0/22 58466 -139.159.176.0/20 55990 -139.159.192.0/18 55990 -139.160.14.0/23 31328 -139.160.64.0/22 3215 -139.161.0.0/16 1462 -139.162.0.0/16 63949 -139.163.0.0/16 1221 -139.164.0.0/16 29695 -139.165.0.0/16 2611 -139.166.0.0/16 786 -139.167.0.0/16 55836 -139.168.0.0/16 1221 -139.169.0.0/16 270 -139.170.0.0/16 4837 -139.171.23.0/24 2015 -139.171.195.0/24 20471 -139.173.32.0/19 852 -139.173.72.0/21 5788 -139.173.80.0/21 5788 -139.173.244.0/23 5788 -139.174.0.0/16 680 -139.175.0.0/16 4780 -139.177.127.0/24 10599 -139.177.136.0/24 17018 -139.177.137.0/24 20141 -139.177.138.0/24 17018 -139.177.139.0/24 20141 -139.177.166.0/24 17018 -139.177.170.0/24 20141 -139.178.0.0/18 15600 -139.178.64.0/19 54825 -139.178.96.0/19 49808 -139.179.0.0/16 8466 -139.180.0.0/21 64267 -139.180.8.0/23 132388 -139.180.16.0/24 54345 -139.180.17.0/24 14618 -139.180.18.0/23 11178 -139.180.20.0/22 14291 -139.180.24.0/22 396524 -139.180.28.0/23 396125 -139.180.31.0/24 16509 -139.180.32.0/21 32505 -139.180.52.0/24 32505 -139.180.56.0/24 397886 -139.180.57.0/24 32505 -139.180.58.0/23 32505 -139.180.60.0/23 12089 -139.180.64.0/18 55850 -139.180.128.0/18 20473 -139.180.192.0/19 20473 -139.180.224.0/21 64267 -139.180.232.0/21 396052 -139.180.242.0/23 16509 -139.180.244.0/23 14618 -139.180.246.0/23 16509 -139.180.248.0/22 16509 -139.181.5.0/24 27628 -139.181.7.0/24 33651 -139.181.8.0/24 7015 -139.181.12.0/22 13541 -139.181.16.0/23 13541 -139.181.18.0/24 43484 -139.181.24.0/24 7725 -139.181.28.0/24 33652 -139.181.30.0/23 4755 -139.181.32.0/24 8492 -139.181.33.0/24 3216 -139.181.36.0/24 4755 -139.181.37.0/24 2688 -139.181.39.0/24 15694 -139.181.40.0/22 36564 -139.181.44.0/22 43484 -139.181.48.0/24 8220 -139.181.49.0/24 4766 -139.181.142.0/24 5588 -139.182.0.0/16 2152 -139.183.210.0/24 133948 -139.184.0.0/16 786 -139.185.0.0/17 793 -139.185.128.0/17 794 -139.186.0.0/16 45090 -139.189.0.0/16 4134 -139.190.0.0/19 38547 -139.190.32.0/20 38547 -139.190.48.0/22 9387 -139.190.56.0/21 38547 -139.190.64.0/19 38547 -139.190.96.0/21 38547 -139.190.104.0/22 38547 -139.190.108.0/23 38547 -139.190.112.0/20 38547 -139.190.192.0/19 38547 -139.190.225.0/24 9387 -139.190.226.0/23 9387 -139.190.228.0/22 9387 -139.190.232.0/22 38547 -139.190.236.0/22 55453 -139.190.240.0/20 38547 -139.191.0.0/18 42165 -139.191.64.0/19 42165 -139.191.96.0/20 42165 -139.191.112.0/20 2611 -139.191.128.0/20 42165 -139.191.144.0/21 42165 -139.191.152.0/21 198096 -139.191.160.0/20 42165 -139.191.176.0/21 42165 -139.191.184.0/21 680 -139.191.192.0/18 42165 -139.192.0.0/14 23700 -139.196.0.0/16 37963 -139.197.0.0/20 56282 -139.198.0.0/21 4808 -139.198.8.0/23 4808 -139.198.10.0/24 134366 -139.198.11.0/24 59078 -139.198.12.0/22 59078 -139.198.16.0/20 59078 -139.198.32.0/19 59078 -139.198.64.0/23 134366 -139.198.66.0/23 4808 -139.198.68.0/22 4808 -139.198.72.0/21 4808 -139.198.80.0/20 4808 -139.198.96.0/21 4808 -139.198.104.0/22 4808 -139.198.108.0/22 59078 -139.198.112.0/24 134366 -139.198.113.0/24 59078 -139.198.114.0/23 59078 -139.198.116.0/22 59078 -139.198.120.0/23 134366 -139.198.122.0/23 59078 -139.198.124.0/22 59078 -139.198.128.0/17 59078 -139.199.0.0/16 45090 -139.200.0.0/16 4134 -139.201.0.0/18 4134 -139.201.64.0/19 4134 -139.201.96.0/20 4134 -139.201.112.0/21 4134 -139.201.120.0/22 4134 -139.201.124.0/24 4134 -139.201.125.0/24 38283 -139.201.126.0/23 4134 -139.201.128.0/17 4134 -139.202.0.0/15 4134 -139.204.0.0/15 4134 -139.206.0.0/17 4134 -139.206.128.0/18 4134 -139.206.192.0/22 4134 -139.206.196.0/23 4134 -139.206.198.0/24 38283 -139.206.199.0/24 4134 -139.206.200.0/21 4134 -139.206.208.0/20 4134 -139.206.224.0/19 4134 -139.207.0.0/16 4134 -139.208.0.0/13 4837 -139.216.0.0/18 9443 -139.216.64.0/19 38285 -139.216.96.0/19 9443 -139.216.128.0/17 9443 -139.217.0.0/16 58593 -139.218.0.0/20 38285 -139.218.16.0/22 38285 -139.218.20.0/23 9443 -139.218.22.0/23 38285 -139.218.24.0/22 38285 -139.218.28.0/23 38285 -139.218.30.0/24 38285 -139.218.31.0/24 9443 -139.218.32.0/19 38285 -139.218.64.0/20 38285 -139.218.80.0/22 38285 -139.218.84.0/22 9443 -139.218.88.0/21 38285 -139.218.96.0/19 9443 -139.218.128.0/17 9443 -139.219.0.0/16 58593 -139.220.192.0/22 4808 -139.220.240.0/22 4808 -139.222.0.0/16 786 -139.223.0.0/16 7535 -139.224.0.0/16 37963 -139.225.0.0/16 3128 -139.226.0.0/15 17621 -139.228.0.0/16 23700 -139.229.0.0/17 19226 -139.229.128.0/22 19226 -139.229.132.0/24 27676 -139.229.133.0/24 19226 -139.229.134.0/23 19226 -139.229.136.0/21 19226 -139.229.144.0/20 19226 -139.229.160.0/19 19226 -139.229.192.0/18 19226 -139.230.0.0/16 7575 -139.231.0.0/20 1464 -139.231.16.0/24 1464 -139.231.17.0/24 1453 -139.231.18.0/23 1464 -139.231.20.0/22 1464 -139.231.24.0/21 1464 -139.231.32.0/19 1464 -139.231.64.0/18 1464 -139.231.128.0/17 1464 -139.232.0.0/16 1462 -139.241.0.0/23 27064 -139.241.2.0/24 27064 -139.241.3.0/24 721 -139.241.4.0/23 27064 -139.241.6.0/23 27066 -139.241.8.0/22 27064 -139.241.12.0/23 466 -139.241.14.0/23 27064 -139.241.16.0/22 27064 -139.241.20.0/23 391 -139.241.22.0/23 27064 -139.241.24.0/22 27064 -139.241.28.0/23 721 -139.241.30.0/23 27064 -139.241.32.0/22 27064 -139.241.36.0/23 27064 -139.241.38.0/23 721 -139.241.40.0/23 391 -139.241.42.0/23 395 -139.241.44.0/22 27064 -139.241.48.0/23 27064 -139.241.50.0/23 391 -139.241.52.0/22 27064 -139.241.56.0/22 27064 -139.241.60.0/23 721 -139.241.62.0/23 391 -139.241.64.0/22 27064 -139.241.68.0/23 395 -139.241.70.0/23 27064 -139.241.72.0/23 27064 -139.241.74.0/24 27066 -139.241.75.0/24 399 -139.241.76.0/23 497 -139.241.78.0/23 27064 -139.241.80.0/23 395 -139.241.82.0/23 27064 -139.241.84.0/23 450 -139.241.86.0/23 27066 -139.241.88.0/22 27064 -139.241.92.0/24 27066 -139.241.93.0/24 427 -139.241.94.0/23 27064 -139.241.96.0/23 721 -139.241.98.0/23 444 -139.241.100.0/22 27064 -139.241.104.0/21 27064 -139.241.112.0/23 395 -139.241.114.0/23 391 -139.241.116.0/23 395 -139.241.118.0/23 27064 -139.241.120.0/21 27064 -139.241.128.0/23 27064 -139.241.130.0/23 444 -139.241.132.0/23 395 -139.241.134.0/23 27064 -139.241.136.0/23 27066 -139.241.138.0/23 721 -139.241.140.0/23 395 -139.241.142.0/23 27064 -139.241.144.0/23 27064 -139.241.146.0/23 395 -139.241.148.0/23 27064 -139.241.150.0/23 427 -139.241.152.0/23 395 -139.241.154.0/23 721 -139.241.156.0/23 391 -139.241.158.0/23 395 -139.241.160.0/22 27064 -139.241.164.0/23 450 -139.241.166.0/23 27064 -139.241.168.0/23 395 -139.241.170.0/23 391 -139.241.172.0/22 27064 -139.241.176.0/23 27064 -139.241.178.0/23 391 -139.241.180.0/23 450 -139.241.182.0/23 27064 -139.241.184.0/22 27064 -139.241.188.0/23 391 -139.241.190.0/23 27064 -139.241.192.0/23 27064 -139.241.194.0/23 395 -139.241.196.0/22 27064 -139.241.200.0/23 27066 -139.241.202.0/23 395 -139.241.204.0/24 721 -139.241.205.0/24 27065 -139.241.206.0/23 721 -139.241.208.0/23 721 -139.241.210.0/24 721 -139.241.211.0/24 5368 -139.241.212.0/22 721 -139.241.216.0/22 721 -139.241.220.0/23 27064 -139.241.222.0/23 721 -139.241.224.0/24 27065 -139.241.225.0/24 721 -139.241.226.0/23 721 -139.241.228.0/24 721 -139.241.229.0/24 27064 -139.241.230.0/24 721 -139.241.231.0/24 27064 -139.241.232.0/24 721 -139.241.233.0/24 27065 -139.241.234.0/24 721 -139.241.235.0/24 27066 -139.241.236.0/24 721 -139.241.237.0/24 27065 -139.241.238.0/24 40281 -139.241.239.0/24 721 -139.241.240.0/21 721 -139.241.248.0/22 721 -139.241.252.0/23 721 -139.241.254.0/24 721 -139.241.255.0/24 27064 -139.242.1.0/24 27064 -139.242.3.0/24 27064 -139.242.4.0/24 27065 -139.242.5.0/24 9191 -139.242.8.0/23 27064 -139.253.0.0/16 27064 -139.254.0.0/16 27064 -139.255.0.0/17 9905 -139.255.128.0/18 23700 -139.255.193.0/24 9905 -139.255.196.0/22 9905 -139.255.200.0/21 9905 -139.255.208.0/20 9905 -139.255.224.0/19 9905 -140.0.0.0/16 23700 -140.1.0.0/16 724 -140.6.0.0/16 668 -140.7.6.0/24 5132 -140.7.64.0/23 5132 -140.14.35.0/24 721 -140.14.37.0/24 721 -140.14.39.0/24 721 -140.14.41.0/24 721 -140.14.43.0/24 721 -140.14.45.0/24 721 -140.14.47.0/24 721 -140.14.49.0/24 721 -140.14.51.0/24 721 -140.14.53.0/24 721 -140.14.136.0/23 721 -140.14.138.0/24 721 -140.16.1.0/24 27064 -140.16.2.0/24 27064 -140.16.8.0/23 6039 -140.16.10.0/23 27064 -140.16.12.0/22 7224 -140.16.16.0/24 7224 -140.16.18.0/23 27064 -140.16.20.0/24 27064 -140.16.22.0/23 27064 -140.16.24.0/23 7224 -140.16.30.0/23 27064 -140.16.32.0/24 12076 -140.16.36.0/22 27064 -140.16.40.0/21 295 -140.16.48.0/23 27064 -140.16.50.0/24 7224 -140.16.52.0/24 27064 -140.16.56.0/24 7224 -140.16.57.0/24 27064 -140.16.58.0/23 295 -140.16.80.0/20 12076 -140.16.96.0/22 12076 -140.16.116.0/22 27064 -140.16.128.0/24 27064 -140.16.132.0/24 7224 -140.16.136.0/21 295 -140.16.144.0/23 7224 -140.16.148.0/24 27064 -140.16.150.0/24 27064 -140.16.151.0/24 7224 -140.16.152.0/23 27064 -140.16.154.0/24 27064 -140.16.203.0/24 12076 -140.17.0.0/20 7224 -140.17.24.0/23 5852 -140.17.30.0/23 27064 -140.17.32.0/23 12076 -140.17.38.0/24 7224 -140.17.39.0/24 27064 -140.17.44.0/24 27064 -140.17.48.0/20 27064 -140.17.67.0/24 27064 -140.17.68.0/24 27064 -140.17.80.0/24 27064 -140.17.82.0/23 7224 -140.17.104.0/23 27064 -140.17.110.0/23 5852 -140.17.160.0/20 12076 -140.17.177.0/24 397182 -140.17.185.0/24 397182 -140.18.0.0/23 27064 -140.18.4.0/23 7224 -140.18.8.0/24 7224 -140.18.9.0/24 12076 -140.18.10.0/24 7224 -140.18.13.0/24 27064 -140.18.15.0/24 12076 -140.18.16.0/20 27064 -140.18.48.0/21 7224 -140.18.68.0/23 12076 -140.18.96.0/23 13979 -140.18.128.0/23 13979 -140.18.160.0/20 7224 -140.18.176.0/23 27064 -140.18.178.0/24 27064 -140.18.180.0/24 27064 -140.18.182.0/24 27064 -140.18.188.0/23 27064 -140.18.240.0/22 27064 -140.21.0.0/22 721 -140.21.4.0/23 721 -140.21.6.0/23 571 -140.21.8.0/24 571 -140.21.9.0/24 721 -140.21.10.0/23 721 -140.21.12.0/22 721 -140.21.16.0/20 721 -140.21.32.0/19 721 -140.21.64.0/18 721 -140.21.128.0/17 721 -140.25.0.0/16 668 -140.31.0.0/16 668 -140.32.0.0/16 668 -140.35.0.0/18 27065 -140.35.64.0/24 721 -140.35.65.0/24 27065 -140.35.66.0/24 721 -140.35.67.0/24 27065 -140.35.68.0/24 721 -140.35.69.0/24 27065 -140.35.70.0/23 721 -140.35.72.0/23 721 -140.35.74.0/24 721 -140.35.75.0/24 27065 -140.35.76.0/23 721 -140.35.78.0/24 721 -140.35.79.0/24 27065 -140.35.80.0/24 721 -140.35.81.0/24 27065 -140.35.82.0/23 721 -140.35.84.0/24 721 -140.35.85.0/24 27065 -140.35.86.0/23 721 -140.35.88.0/23 27065 -140.35.90.0/23 721 -140.35.92.0/23 721 -140.35.94.0/23 27065 -140.35.96.0/24 27065 -140.35.97.0/24 721 -140.35.98.0/24 721 -140.35.99.0/24 27065 -140.35.100.0/22 721 -140.35.104.0/21 721 -140.35.112.0/20 721 -140.35.128.0/18 27065 -140.35.192.0/19 27065 -140.35.224.0/20 27065 -140.35.240.0/21 27065 -140.35.248.0/23 27067 -140.35.250.0/23 27065 -140.35.252.0/22 27065 -140.45.1.0/24 27066 -140.45.2.0/23 27066 -140.45.4.0/23 27066 -140.45.7.0/24 27066 -140.45.10.0/23 27066 -140.45.12.0/23 27066 -140.45.18.0/23 27066 -140.45.20.0/24 27066 -140.47.0.0/16 5831 -140.75.0.0/16 4134 -140.77.0.0/16 1945 -140.78.0.0/16 1205 -140.79.0.0/16 6262 -140.80.0.0/16 27293 -140.82.0.0/18 20473 -140.82.112.0/20 36459 -140.82.128.0/19 174 -140.82.160.0/19 15164 -140.82.192.0/22 13150 -140.82.196.0/24 13150 -140.82.197.0/24 138627 -140.82.198.0/23 13150 -140.82.200.0/23 13150 -140.82.203.0/24 13150 -140.82.204.0/23 13150 -140.82.208.0/24 16613 -140.82.210.0/24 15164 -140.82.211.0/24 46887 -140.82.213.0/24 33132 -140.82.214.0/23 22768 -140.82.224.0/21 395662 -140.82.240.0/23 25840 -140.82.242.0/23 33509 -140.82.244.0/23 25840 -140.82.246.0/24 33509 -140.82.248.0/23 19635 -140.82.250.0/24 19635 -140.82.252.0/22 19635 -140.83.89.0/24 1217 -140.83.94.0/24 1217 -140.83.95.0/24 23885 -140.83.152.0/21 7160 -140.86.0.0/16 43898 -140.88.0.0/16 40497 -140.89.0.0/16 33651 -140.90.0.0/17 6629 -140.90.128.0/19 6629 -140.90.160.0/20 6629 -140.90.176.0/21 6629 -140.90.184.0/22 6629 -140.90.188.0/23 6629 -140.90.190.0/24 3477 -140.90.191.0/24 6629 -140.90.192.0/18 6629 -140.91.0.0/22 46558 -140.91.4.0/22 31898 -140.91.8.0/21 31898 -140.91.16.0/20 31898 -140.91.32.0/20 31898 -140.91.48.0/22 31898 -140.91.52.0/23 31898 -140.91.58.0/23 31898 -140.91.192.0/23 46558 -140.91.194.0/23 31898 -140.91.196.0/22 31898 -140.91.200.0/21 31898 -140.91.208.0/21 31898 -140.91.218.0/23 31898 -140.91.220.0/22 31898 -140.91.224.0/21 31898 -140.92.0.0/16 7539 -140.93.0.0/16 1715 -140.94.0.0/16 12670 -140.95.136.0/22 202435 -140.95.166.0/24 396013 -140.95.170.0/23 396016 -140.95.178.0/23 396016 -140.95.190.0/23 19690 -140.95.205.0/24 19690 -140.95.206.0/24 396016 -140.95.207.0/24 19690 -140.95.226.0/24 19690 -140.95.227.0/24 396016 -140.95.228.0/23 19690 -140.95.233.0/24 19690 -140.95.235.0/24 19690 -140.95.236.0/24 396016 -140.95.240.0/24 202435 -140.95.242.0/23 19690 -140.96.0.0/16 18422 -140.97.0.0/16 786 -140.98.0.0/16 13462 -140.99.0.0/18 54543 -140.99.64.0/20 54543 -140.99.80.0/21 54543 -140.99.88.0/22 54543 -140.99.92.0/22 30081 -140.99.96.0/19 54543 -140.99.128.0/17 54543 -140.101.0.0/17 19773 -140.101.128.0/19 19773 -140.101.160.0/24 19773 -140.101.162.0/24 19773 -140.101.164.0/24 19773 -140.101.166.0/23 19773 -140.101.170.0/23 19773 -140.101.176.0/20 19773 -140.101.192.0/20 19773 -140.101.209.0/24 19773 -140.101.210.0/23 19773 -140.101.212.0/22 19773 -140.101.216.0/21 19773 -140.101.224.0/19 19773 -140.102.0.0/16 396835 -140.103.0.0/16 33030 -140.104.0.0/16 2381 -140.105.0.0/16 137 -140.106.0.0/16 32178 -140.107.0.0/16 14954 -140.108.0.0/22 33052 -140.108.13.0/24 33052 -140.108.20.0/22 33052 -140.108.24.0/22 33052 -140.108.28.0/24 33052 -140.109.0.0/18 9264 -140.109.64.0/19 9264 -140.109.96.0/23 9264 -140.109.98.0/24 24167 -140.109.99.0/24 9264 -140.109.100.0/22 9264 -140.109.104.0/21 9264 -140.109.112.0/20 9264 -140.109.128.0/17 9264 -140.110.0.0/16 7539 -140.111.0.0/16 1659 -140.112.0.0/16 17716 -140.113.0.0/16 9916 -140.114.0.0/16 18047 -140.115.0.0/19 18420 -140.115.32.0/24 7539 -140.115.33.0/24 18420 -140.115.34.0/23 18420 -140.115.36.0/23 18420 -140.115.38.0/24 7539 -140.115.39.0/24 18420 -140.115.40.0/21 18420 -140.115.48.0/20 18420 -140.115.64.0/18 18420 -140.115.128.0/17 18420 -140.116.0.0/16 1659 -140.117.0.0/16 17713 -140.118.0.0/15 1659 -140.120.0.0/16 38847 -140.121.0.0/16 1659 -140.122.0.0/16 38844 -140.123.0.0/16 1659 -140.124.0.0/14 1659 -140.128.0.0/13 1659 -140.136.0.0/16 38845 -140.137.0.0/16 1659 -140.138.0.0/16 1659 -140.139.0.0/16 1527 -140.141.0.0/16 600 -140.142.0.0/16 73 -140.143.0.0/16 45090 -140.144.0.0/16 46290 -140.146.0.0/16 46103 -140.147.0.0/16 2532 -140.148.0.0/17 1840 -140.148.128.0/18 1840 -140.148.192.0/19 1840 -140.149.0.0/16 7693 -140.150.0.0/16 20861 -140.151.0.0/16 719 -140.152.0.0/16 721 -140.153.0.0/20 721 -140.153.16.0/21 721 -140.153.24.0/24 721 -140.153.25.0/24 1495 -140.153.26.0/23 721 -140.153.28.0/22 721 -140.153.32.0/22 721 -140.153.36.0/23 721 -140.153.38.0/24 367 -140.153.39.0/24 721 -140.153.40.0/23 721 -140.153.42.0/24 721 -140.153.43.0/24 367 -140.153.44.0/23 721 -140.153.46.0/24 367 -140.153.47.0/24 721 -140.153.48.0/20 721 -140.153.64.0/22 721 -140.153.68.0/23 721 -140.153.70.0/24 1479 -140.153.71.0/24 721 -140.153.72.0/21 721 -140.153.80.0/20 721 -140.153.96.0/21 721 -140.153.104.0/24 721 -140.153.105.0/24 367 -140.153.106.0/23 721 -140.153.108.0/22 721 -140.153.112.0/20 721 -140.153.128.0/19 721 -140.153.160.0/23 721 -140.153.162.0/24 721 -140.153.163.0/24 1494 -140.153.164.0/22 721 -140.153.168.0/21 721 -140.153.176.0/23 721 -140.153.178.0/24 721 -140.153.179.0/24 367 -140.153.180.0/22 721 -140.153.184.0/21 721 -140.153.192.0/19 721 -140.153.224.0/21 721 -140.153.232.0/23 721 -140.153.234.0/24 367 -140.153.235.0/24 721 -140.153.236.0/22 721 -140.153.240.0/20 721 -140.154.0.0/16 1580 -140.155.0.0/16 721 -140.157.32.0/20 16928 -140.157.64.0/23 16928 -140.157.66.0/24 15063 -140.157.67.0/24 16928 -140.157.68.0/22 16928 -140.157.72.0/21 16928 -140.157.208.0/20 16928 -140.158.0.0/16 25709 -140.159.0.0/16 136247 -140.160.0.0/16 15199 -140.161.0.0/16 395064 -140.162.0.0/16 19 -140.163.0.0/16 14822 -140.164.0.0/16 137 -140.165.0.0/19 397353 -140.165.32.0/23 397353 -140.165.34.0/24 206223 -140.165.35.0/24 397353 -140.165.36.0/22 397353 -140.165.40.0/21 397353 -140.165.48.0/23 397353 -140.165.50.0/24 21547 -140.165.51.0/24 397353 -140.165.52.0/22 812 -140.165.56.0/24 812 -140.165.57.0/24 397353 -140.165.58.0/23 397353 -140.165.60.0/22 397353 -140.165.64.0/19 397353 -140.165.96.0/22 206223 -140.165.100.0/22 397353 -140.165.104.0/21 397353 -140.165.112.0/20 397353 -140.165.128.0/17 397353 -140.166.0.0/16 56736 -140.168.64.0/18 45867 -140.168.128.0/18 45867 -140.168.248.0/23 139055 -140.168.252.0/22 137448 -140.171.0.0/16 7018 -140.172.0.0/16 2648 -140.174.0.0/22 30212 -140.174.4.0/22 35916 -140.174.8.0/23 30212 -140.174.10.0/23 2914 -140.174.12.0/23 393259 -140.174.14.0/24 393259 -140.174.15.0/24 2914 -140.174.16.0/20 2914 -140.174.32.0/19 2914 -140.174.64.0/18 2914 -140.174.128.0/18 2914 -140.174.192.0/19 2914 -140.174.224.0/21 2914 -140.174.232.0/23 2914 -140.174.234.0/24 62616 -140.174.235.0/24 2914 -140.174.236.0/22 2914 -140.174.240.0/20 2914 -140.175.0.0/16 246 -140.176.0.0/16 7246 -140.177.0.0/20 11106 -140.177.16.0/23 25660 -140.177.18.0/24 3361 -140.177.20.0/24 11106 -140.177.96.0/19 11106 -140.177.192.0/19 11106 -140.177.228.0/22 12119 -140.178.0.0/16 668 -140.180.0.0/16 88 -140.181.0.0/16 680 -140.182.0.0/16 87 -140.183.0.0/16 1503 -140.184.0.0/16 8111 -140.185.0.0/23 6040 -140.185.2.0/24 6040 -140.185.3.0/24 367 -140.185.4.0/23 367 -140.185.6.0/24 27087 -140.185.7.0/24 367 -140.185.8.0/23 367 -140.185.10.0/24 367 -140.185.11.0/24 6040 -140.185.12.0/23 745 -140.185.14.0/24 367 -140.185.15.0/24 6039 -140.185.16.0/22 367 -140.185.20.0/24 6040 -140.185.21.0/24 367 -140.185.22.0/23 6040 -140.185.24.0/22 6040 -140.185.28.0/23 367 -140.185.30.0/23 745 -140.185.32.0/23 6040 -140.185.34.0/24 367 -140.185.35.0/24 6040 -140.185.36.0/23 6040 -140.185.38.0/24 6040 -140.185.39.0/24 367 -140.185.40.0/24 367 -140.185.41.0/24 6039 -140.185.42.0/23 367 -140.185.44.0/24 6039 -140.185.45.0/24 367 -140.185.46.0/24 6039 -140.185.47.0/24 27087 -140.185.48.0/22 367 -140.185.52.0/24 6040 -140.185.53.0/24 367 -140.185.54.0/24 367 -140.185.55.0/24 6039 -140.185.56.0/24 367 -140.185.57.0/24 6040 -140.185.58.0/23 367 -140.185.60.0/22 6040 -140.185.64.0/22 745 -140.185.68.0/24 745 -140.185.69.0/24 367 -140.185.70.0/24 745 -140.185.71.0/24 367 -140.185.72.0/23 367 -140.185.74.0/23 6040 -140.185.76.0/22 367 -140.185.80.0/20 27087 -140.185.96.0/19 27087 -140.185.128.0/22 6040 -140.185.132.0/22 367 -140.185.136.0/22 367 -140.185.140.0/23 367 -140.185.142.0/24 367 -140.185.143.0/24 6040 -140.185.144.0/24 6040 -140.185.145.0/24 367 -140.185.146.0/24 6039 -140.185.147.0/24 6040 -140.185.148.0/23 367 -140.185.150.0/24 6040 -140.185.151.0/24 367 -140.185.152.0/24 367 -140.185.153.0/24 27087 -140.185.154.0/24 367 -140.185.155.0/24 27087 -140.185.156.0/22 367 -140.185.160.0/21 27087 -140.185.168.0/23 27087 -140.185.170.0/24 27087 -140.185.171.0/24 367 -140.185.172.0/22 6040 -140.185.176.0/24 6040 -140.185.177.0/24 367 -140.185.178.0/23 367 -140.185.180.0/23 367 -140.185.182.0/24 367 -140.185.183.0/24 745 -140.185.184.0/24 745 -140.185.185.0/24 27087 -140.185.186.0/24 27087 -140.185.187.0/24 367 -140.185.188.0/24 6040 -140.185.189.0/24 367 -140.185.190.0/23 367 -140.185.192.0/20 27087 -140.185.208.0/24 6040 -140.185.209.0/24 367 -140.185.210.0/23 367 -140.185.212.0/23 6040 -140.185.214.0/24 367 -140.185.215.0/24 6040 -140.185.216.0/24 6040 -140.185.217.0/24 367 -140.185.218.0/23 367 -140.185.220.0/23 745 -140.185.222.0/24 367 -140.185.223.0/24 6040 -140.185.224.0/23 6040 -140.185.226.0/24 367 -140.185.227.0/24 6040 -140.185.228.0/22 367 -140.185.232.0/23 367 -140.185.234.0/24 6040 -140.185.235.0/24 367 -140.185.236.0/23 6040 -140.185.238.0/24 27087 -140.185.239.0/24 6040 -140.185.240.0/22 6040 -140.185.244.0/24 27087 -140.185.245.0/24 367 -140.185.246.0/24 367 -140.185.247.0/24 6040 -140.185.248.0/23 367 -140.185.250.0/24 6040 -140.185.251.0/24 367 -140.185.252.0/22 367 -140.186.0.0/16 11232 -140.187.0.0/16 1452 -140.188.0.0/16 1906 -140.189.0.0/16 2381 -140.190.0.0/17 14828 -140.190.128.0/18 14828 -140.190.192.0/18 13712 -140.192.0.0/16 20130 -140.193.0.0/16 17001 -140.194.0.0/16 4010 -140.196.0.0/16 27064 -140.197.0.0/16 210 -140.198.0.0/17 26783 -140.198.128.0/18 26783 -140.198.192.0/19 26783 -140.198.224.0/20 26783 -140.198.240.0/21 26783 -140.198.249.0/24 26783 -140.198.250.0/23 26783 -140.198.252.0/22 26783 -140.200.0.0/16 38022 -140.201.0.0/16 1562 -140.202.0.0/16 1464 -140.203.0.0/16 1213 -140.204.0.0/20 31898 -140.204.16.0/21 31898 -140.204.24.0/22 31898 -140.204.30.0/23 31898 -140.204.32.0/20 31898 -140.204.48.0/22 31898 -140.204.52.0/23 31898 -140.204.62.0/23 31898 -140.205.0.0/16 37963 -140.206.0.0/17 17621 -140.206.128.0/18 17621 -140.206.192.0/19 17621 -140.206.224.0/22 17621 -140.206.228.0/23 138421 -140.206.230.0/24 138421 -140.206.231.0/24 17621 -140.206.232.0/22 17621 -140.206.236.0/23 17621 -140.206.238.0/24 138421 -140.206.239.0/24 17621 -140.206.240.0/20 17621 -140.207.0.0/16 17621 -140.208.0.0/18 40623 -140.208.128.0/19 40623 -140.208.160.0/20 2648 -140.208.192.0/20 3477 -140.208.252.0/22 3477 -140.209.0.0/16 32907 -140.210.0.0/20 4808 -140.210.16.0/21 4808 -140.210.24.0/23 4808 -140.210.26.0/24 4808 -140.210.27.0/24 23724 -140.210.28.0/22 23724 -140.210.64.0/18 4808 -140.211.0.0/20 3701 -140.211.16.0/24 6366 -140.211.17.0/24 3701 -140.211.18.0/23 3701 -140.211.20.0/22 3701 -140.211.24.0/21 3701 -140.211.32.0/19 3701 -140.211.64.0/18 3701 -140.211.128.0/17 3701 -140.212.10.0/24 22773 -140.212.11.0/24 11351 -140.212.24.0/21 15139 -140.212.56.0/21 7018 -140.212.88.0/21 706 -140.212.96.0/22 15139 -140.212.160.0/21 15139 -140.212.176.0/21 15139 -140.213.0.0/22 24203 -140.213.5.0/24 24203 -140.213.6.0/23 24203 -140.213.8.0/21 24203 -140.213.16.0/22 24203 -140.213.22.0/23 24203 -140.213.24.0/23 24203 -140.213.27.0/24 24203 -140.213.28.0/22 24203 -140.213.32.0/20 24203 -140.213.48.0/22 24203 -140.213.52.0/23 24203 -140.213.54.0/24 17885 -140.213.56.0/22 24203 -140.213.60.0/23 24203 -140.213.62.0/24 24203 -140.213.72.0/22 24203 -140.213.88.0/24 24203 -140.213.90.0/23 24203 -140.213.92.0/24 24203 -140.213.93.0/24 17885 -140.213.94.0/23 17885 -140.213.96.0/24 17885 -140.213.97.0/24 24203 -140.213.128.0/20 24203 -140.215.0.0/16 688 -140.220.0.0/16 600 -140.221.0.0/18 683 -140.221.64.0/19 683 -140.221.96.0/23 683 -140.221.100.0/22 683 -140.221.112.0/20 683 -140.222.192.0/20 703 -140.223.0.0/16 701 -140.224.0.0/16 4134 -140.225.0.0/16 14763 -140.226.0.0/16 16519 -140.227.0.0/16 2514 -140.228.0.0/16 600 -140.230.0.0/16 8111 -140.232.0.0/16 20115 -140.233.0.0/16 14550 -140.234.0.0/16 6932 -140.237.0.0/18 4134 -140.237.64.0/21 4134 -140.237.72.0/24 4134 -140.237.73.0/24 133775 -140.237.74.0/23 4134 -140.237.76.0/22 4134 -140.237.80.0/20 4134 -140.237.96.0/19 4134 -140.237.128.0/17 4134 -140.238.0.0/18 31898 -140.238.64.0/19 31898 -140.238.96.0/21 31898 -140.238.128.0/18 31898 -140.238.192.0/19 31898 -140.238.224.0/21 31898 -140.238.240.0/20 31898 -140.239.0.0/17 2828 -140.239.128.0/23 2828 -140.239.130.0/24 31835 -140.239.131.0/24 2828 -140.239.132.0/22 2828 -140.239.136.0/22 2828 -140.239.140.0/23 2828 -140.239.142.0/24 2828 -140.239.143.0/24 5715 -140.239.144.0/20 2828 -140.239.160.0/19 2828 -140.239.192.0/19 2828 -140.239.224.0/21 2828 -140.239.232.0/23 2828 -140.239.234.0/23 17248 -140.239.236.0/23 53559 -140.239.238.0/24 46346 -140.239.239.0/24 2828 -140.239.240.0/20 2828 -140.240.0.0/16 4134 -140.241.0.0/16 27370 -140.242.4.0/23 543 -140.242.10.0/23 20464 -140.242.12.0/23 20464 -140.242.14.0/24 20464 -140.242.16.0/24 174 -140.242.18.0/24 174 -140.242.26.0/23 20464 -140.242.29.0/24 9158 -140.242.35.0/24 33915 -140.242.36.0/24 20464 -140.242.45.0/24 20464 -140.242.46.0/23 20464 -140.242.64.0/23 20464 -140.242.70.0/23 543 -140.242.100.0/24 20464 -140.242.125.0/24 20464 -140.242.146.0/23 19855 -140.242.168.0/24 543 -140.242.210.0/23 20464 -140.242.212.0/22 20464 -140.242.216.0/24 20464 -140.242.219.0/24 20464 -140.242.220.0/23 20464 -140.242.222.0/24 20464 -140.242.223.0/24 4808 -140.242.224.0/24 4808 -140.242.225.0/24 20464 -140.242.227.0/24 20464 -140.242.228.0/23 20464 -140.242.230.0/24 20464 -140.242.237.0/24 20464 -140.242.250.0/24 20464 -140.243.0.0/16 4134 -140.244.0.0/16 22488 -140.245.9.0/24 23151 -140.245.10.0/24 23151 -140.245.12.0/22 23151 -140.245.66.0/23 23151 -140.245.84.0/22 23151 -140.245.88.0/21 23151 -140.245.96.0/21 23151 -140.245.104.0/24 23151 -140.245.108.0/23 23151 -140.245.251.0/24 23151 -140.245.252.0/23 23151 -140.245.254.0/24 23151 -140.246.0.0/16 58519 -140.247.0.0/16 1742 -140.249.0.0/23 58541 -140.249.2.0/24 58541 -140.249.3.0/24 136195 -140.249.4.0/23 58541 -140.249.6.0/24 58541 -140.249.7.0/24 136195 -140.249.8.0/21 58541 -140.249.16.0/24 58541 -140.249.17.0/24 136195 -140.249.18.0/23 58541 -140.249.20.0/22 58541 -140.249.24.0/24 136195 -140.249.25.0/24 58541 -140.249.26.0/23 58541 -140.249.28.0/23 136195 -140.249.30.0/23 58541 -140.249.32.0/20 58541 -140.249.48.0/21 58541 -140.249.56.0/22 58541 -140.249.60.0/23 58541 -140.249.62.0/23 136195 -140.249.64.0/19 58540 -140.249.96.0/19 4134 -140.249.128.0/19 136195 -140.249.160.0/19 4134 -140.249.192.0/20 58541 -140.249.208.0/20 4134 -140.249.224.0/19 136195 -140.250.0.0/16 4134 -140.251.0.0/17 20252 -140.251.128.0/17 395139 -140.252.0.0/16 62600 -140.253.0.0/16 6262 -140.254.0.0/16 159 -140.255.0.0/16 4134 -141.0.0.0/21 197921 -141.0.8.0/21 39832 -141.0.16.0/22 8972 -141.0.20.0/23 34011 -141.0.22.0/23 8972 -141.0.24.0/21 39647 -141.0.32.0/19 8190 -141.0.64.0/18 29695 -141.0.128.0/20 2119 -141.0.144.0/20 56478 -141.0.160.0/21 20860 -141.0.168.0/24 46652 -141.0.169.0/24 14061 -141.0.170.0/24 14061 -141.0.171.0/24 46652 -141.0.172.0/22 46652 -141.0.176.0/21 197235 -141.0.184.0/21 30741 -141.0.192.0/21 3257 -141.0.200.0/21 39405 -141.0.208.0/20 21396 -141.0.224.0/19 16175 -141.1.0.0/16 1273 -141.2.0.0/16 20633 -141.3.0.0/16 34878 -141.4.0.0/15 680 -141.6.0.0/21 15495 -141.6.8.0/24 15495 -141.6.9.0/24 209781 -141.6.10.0/23 209781 -141.6.12.0/22 15495 -141.6.16.0/20 15495 -141.6.32.0/19 15495 -141.6.64.0/18 15495 -141.6.128.0/17 15495 -141.7.0.0/16 553 -141.8.0.0/17 12709 -141.8.128.0/18 13238 -141.8.192.0/21 35278 -141.8.200.0/21 47394 -141.8.208.0/21 56966 -141.8.216.0/23 199385 -141.8.218.0/24 199385 -141.8.220.0/23 199385 -141.8.222.0/24 5089 -141.8.224.0/21 40034 -141.8.232.0/21 57094 -141.9.0.0/16 680 -141.10.0.0/16 553 -141.11.8.0/24 205817 -141.11.16.0/20 3215 -141.11.48.0/20 205817 -141.11.64.0/18 3215 -141.11.128.0/21 3215 -141.11.138.0/23 3215 -141.11.140.0/22 3215 -141.11.160.0/20 3215 -141.11.176.0/24 7470 -141.11.178.0/24 3215 -141.11.179.0/24 4755 -141.11.192.0/19 3215 -141.11.243.0/24 3215 -141.11.254.0/24 174 -141.12.0.0/16 28714 -141.13.0.0/16 680 -141.14.0.0/16 680 -141.15.0.0/16 13128 -141.16.0.0/16 8204 -141.17.0.0/16 41289 -141.18.0.0/15 553 -141.20.0.0/16 680 -141.21.0.0/16 205046 -141.22.0.0/15 680 -141.24.0.0/15 680 -141.26.0.0/16 2857 -141.27.0.0/16 680 -141.28.0.0/16 553 -141.29.164.0/24 8826 -141.29.236.0/24 8826 -141.30.0.0/16 680 -141.31.0.0/16 553 -141.32.0.0/15 680 -141.34.0.0/16 1754 -141.35.0.0/16 680 -141.36.180.0/23 33848 -141.37.0.0/16 553 -141.38.0.0/16 41289 -141.39.0.0/16 680 -141.40.0.0/16 12816 -141.41.0.0/16 680 -141.42.0.0/15 680 -141.44.0.0/15 680 -141.46.0.0/16 680 -141.47.0.0/16 553 -141.48.0.0/16 680 -141.49.0.0/16 60344 -141.50.0.0/15 680 -141.52.0.0/16 34878 -141.53.0.0/16 680 -141.54.0.0/15 680 -141.56.0.0/15 680 -141.58.0.0/15 553 -141.60.0.0/15 680 -141.62.0.0/16 553 -141.63.0.0/16 680 -141.64.0.0/15 680 -141.66.0.0/16 13040 -141.67.0.0/16 680 -141.68.0.0/15 553 -141.70.0.0/16 553 -141.71.0.0/16 680 -141.72.0.0/16 553 -141.74.0.0/15 680 -141.76.0.0/16 680 -141.77.0.0/16 3320 -141.78.0.0/16 680 -141.79.0.0/16 553 -141.80.0.0/16 680 -141.81.0.0/17 2686 -141.81.128.0/19 2686 -141.81.160.0/24 63471 -141.81.161.0/24 2686 -141.81.162.0/23 2686 -141.81.164.0/24 2686 -141.81.165.0/24 19229 -141.81.166.0/23 19229 -141.81.168.0/24 19229 -141.81.169.0/24 2686 -141.81.170.0/23 2686 -141.81.172.0/22 51964 -141.81.176.0/20 2686 -141.81.192.0/18 2686 -141.82.0.0/15 680 -141.84.0.0/16 12816 -141.85.0.0/16 2614 -141.87.0.0/16 553 -141.88.100.0/24 48778 -141.88.173.0/24 48778 -141.88.192.0/20 48778 -141.88.208.0/21 48778 -141.88.216.0/22 48778 -141.88.220.0/23 48778 -141.88.222.0/24 19905 -141.88.223.0/24 48778 -141.88.224.0/19 48778 -141.89.0.0/16 680 -141.90.0.0/18 29515 -141.90.145.0/24 29515 -141.91.0.0/16 33846 -141.92.8.0/23 32787 -141.92.10.0/23 2856 -141.92.12.0/23 32787 -141.92.14.0/23 2856 -141.92.18.0/23 17025 -141.92.24.0/21 8435 -141.92.64.0/19 8435 -141.92.96.0/20 8435 -141.92.112.0/21 8435 -141.92.128.0/19 8435 -141.92.160.0/19 49758 -141.92.192.0/18 49758 -141.93.12.0/24 32787 -141.93.16.0/22 32787 -141.93.23.0/24 6900 -141.93.32.0/24 32787 -141.93.35.0/24 32787 -141.96.0.0/16 25367 -141.98.0.0/21 43659 -141.98.8.0/22 209605 -141.98.12.0/22 209528 -141.98.16.0/22 46261 -141.98.20.0/22 39647 -141.98.24.0/22 3214 -141.98.28.0/22 202765 -141.98.32.0/22 50673 -141.98.36.0/22 29119 -141.98.40.0/22 25780 -141.98.44.0/24 13830 -141.98.45.0/24 197071 -141.98.46.0/23 39083 -141.98.52.0/22 29119 -141.98.56.0/22 4686 -141.98.64.0/22 209560 -141.98.68.0/22 210015 -141.98.72.0/22 48955 -141.98.76.0/22 209589 -141.98.80.0/24 43350 -141.98.81.0/24 57043 -141.98.82.0/24 209588 -141.98.83.0/24 395839 -141.98.88.0/22 61317 -141.98.92.0/22 48095 -141.98.98.0/24 202072 -141.98.100.0/22 9009 -141.98.104.0/22 49223 -141.98.108.0/24 209593 -141.98.116.0/22 205399 -141.98.120.0/22 208773 -141.98.124.0/22 199181 -141.98.128.0/24 23679 -141.98.129.0/24 9009 -141.98.130.0/23 9009 -141.98.132.0/23 40676 -141.98.134.0/24 35913 -141.98.135.0/24 40676 -141.98.136.0/24 209844 -141.98.138.0/24 207612 -141.98.140.0/22 21183 -141.98.144.0/22 43571 -141.98.148.0/22 6886 -141.98.152.0/22 200282 -141.98.156.0/22 30823 -141.98.160.0/22 35913 -141.98.164.0/22 40676 -141.98.168.0/22 48430 -141.98.172.0/24 25540 -141.98.173.0/24 174 -141.98.176.0/22 56582 -141.98.180.0/22 203061 -141.98.184.0/22 61127 -141.98.188.0/22 18978 -141.98.192.0/22 62357 -141.98.196.0/22 8100 -141.98.200.0/22 206988 -141.98.204.0/22 42807 -141.98.208.0/24 51561 -141.98.209.0/24 209043 -141.98.210.0/23 209043 -141.98.212.0/24 206804 -141.98.213.0/24 45382 -141.98.214.0/23 206804 -141.98.216.0/22 35913 -141.98.220.0/22 34993 -141.98.224.0/22 209571 -141.98.228.0/22 209495 -141.98.232.0/24 30860 -141.98.233.0/24 41011 -141.98.234.0/24 41011 -141.98.235.0/24 40824 -141.98.236.0/22 34244 -141.98.240.0/22 9009 -141.98.244.0/22 42314 -141.98.248.0/22 57389 -141.98.252.0/22 39351 -141.99.0.0/16 680 -141.100.0.0/16 8365 -141.101.0.0/19 31272 -141.101.32.0/21 47215 -141.101.40.0/21 51053 -141.101.48.0/21 25540 -141.101.56.0/22 20926 -141.101.60.0/22 60199 -141.101.64.0/21 13335 -141.101.72.0/22 13335 -141.101.76.0/23 13335 -141.101.82.0/23 13335 -141.101.84.0/23 13335 -141.101.94.0/23 13335 -141.101.96.0/21 13335 -141.101.104.0/22 13335 -141.101.108.0/23 13335 -141.101.110.0/24 13335 -141.101.112.0/20 13335 -141.101.128.0/22 201924 -141.101.132.0/24 58272 -141.101.133.0/24 61977 -141.101.134.0/24 201011 -141.101.136.0/24 15881 -141.101.137.0/24 200048 -141.101.138.0/23 57489 -141.101.140.0/23 197998 -141.101.142.0/24 57489 -141.101.143.0/24 3223 -141.101.144.0/23 9009 -141.101.146.0/24 56655 -141.101.147.0/24 36351 -141.101.149.0/24 40676 -141.101.151.0/24 46844 -141.101.152.0/24 61317 -141.101.153.0/24 9009 -141.101.154.0/23 9009 -141.101.156.0/24 55286 -141.101.157.0/24 46562 -141.101.158.0/23 9009 -141.101.160.0/24 9009 -141.101.162.0/24 9009 -141.101.163.0/24 53889 -141.101.164.0/24 53889 -141.101.165.0/24 46562 -141.101.166.0/24 46562 -141.101.168.0/24 46562 -141.101.169.0/24 3223 -141.101.171.0/24 63008 -141.101.173.0/24 53889 -141.101.174.0/24 53889 -141.101.175.0/24 202062 -141.101.176.0/24 60005 -141.101.177.0/24 200166 -141.101.178.0/24 62010 -141.101.179.0/24 60287 -141.101.180.0/24 24774 -141.101.181.0/24 3284 -141.101.182.0/24 203746 -141.101.183.0/24 205616 -141.101.184.0/24 202181 -141.101.185.0/24 204656 -141.101.186.0/24 60299 -141.101.187.0/24 60346 -141.101.188.0/24 210240 -141.101.189.0/24 56676 -141.101.190.0/24 201470 -141.101.191.0/24 201452 -141.101.192.0/24 52006 -141.101.193.0/24 60062 -141.101.194.0/24 203504 -141.101.195.0/24 205433 -141.101.196.0/24 61276 -141.101.197.0/24 201726 -141.101.198.0/24 203006 -141.101.199.0/24 207131 -141.101.200.0/24 60067 -141.101.201.0/24 58272 -141.101.202.0/24 201851 -141.101.203.0/24 24774 -141.101.204.0/24 198770 -141.101.205.0/24 57489 -141.101.206.0/24 203190 -141.101.207.0/24 58272 -141.101.208.0/24 34777 -141.101.209.0/24 200028 -141.101.210.0/24 200022 -141.101.211.0/24 203006 -141.101.212.0/22 197998 -141.101.216.0/24 204459 -141.101.217.0/24 3216 -141.101.218.0/23 3216 -141.101.220.0/24 201429 -141.101.221.0/24 20 -141.101.222.0/24 201677 -141.101.223.0/24 58272 -141.101.224.0/24 203371 -141.101.225.0/24 201717 -141.101.226.0/24 200952 -141.101.227.0/24 200922 -141.101.228.0/24 198770 -141.101.229.0/24 62103 -141.101.230.0/24 39580 -141.101.231.0/24 198770 -141.101.232.0/24 8359 -141.101.233.0/24 201138 -141.101.234.0/24 25379 -141.101.235.0/24 58272 -141.101.237.0/24 202734 -141.101.238.0/24 62207 -141.101.239.0/24 62010 -141.101.240.0/24 62122 -141.101.241.0/24 49063 -141.101.242.0/24 56975 -141.101.243.0/24 34597 -141.101.244.0/24 57489 -141.101.245.0/24 47196 -141.101.246.0/24 204665 -141.101.247.0/24 59960 -141.101.248.0/24 59903 -141.101.249.0/24 199735 -141.101.250.0/24 59946 -141.101.251.0/24 59941 -141.101.252.0/24 200829 -141.101.253.0/24 57406 -141.101.254.0/24 57406 -141.101.255.0/24 56495 -141.104.0.0/16 21508 -141.105.0.0/20 12871 -141.105.16.0/21 12990 -141.105.24.0/21 25086 -141.105.32.0/20 12688 -141.105.48.0/21 12688 -141.105.56.0/21 9038 -141.105.64.0/21 49335 -141.105.72.0/21 197383 -141.105.80.0/22 24634 -141.105.84.0/24 24634 -141.105.85.0/24 9051 -141.105.86.0/24 24634 -141.105.87.0/24 9051 -141.105.88.0/24 24634 -141.105.89.0/24 9051 -141.105.90.0/23 24634 -141.105.92.0/22 24634 -141.105.96.0/20 200064 -141.105.118.0/24 62168 -141.105.120.0/22 29028 -141.105.124.0/23 198485 -141.105.126.0/23 29028 -141.105.128.0/24 6768 -141.105.129.0/24 52180 -141.105.132.0/22 42905 -141.105.136.0/23 45025 -141.105.138.0/24 48964 -141.105.139.0/24 52180 -141.105.140.0/22 45025 -141.105.144.0/21 57124 -141.105.152.0/21 31611 -141.105.160.0/23 198247 -141.105.162.0/23 198381 -141.105.164.0/23 198394 -141.105.166.0/23 198504 -141.105.168.0/21 204170 -141.105.192.0/18 5413 -141.106.0.0/16 33503 -141.107.0.0/16 1468 -141.108.0.0/16 137 -141.109.0.0/16 40007 -141.110.0.0/16 36390 -141.111.0.0/16 68 -141.112.0.0/16 6 -141.113.0.0/17 31399 -141.113.128.0/20 3758 -141.113.144.0/20 32611 -141.113.160.0/20 32611 -141.113.176.0/20 31399 -141.113.192.0/18 31399 -141.114.0.0/16 557 -141.115.0.0/16 1715 -141.116.0.0/20 6041 -141.116.16.0/22 6041 -141.116.20.0/23 6041 -141.116.22.0/23 1538 -141.116.24.0/21 6041 -141.116.32.0/19 6041 -141.116.64.0/18 6041 -141.116.128.0/17 6041 -141.117.0.0/16 26996 -141.118.20.0/24 852 -141.118.29.0/24 852 -141.118.80.0/22 852 -141.118.144.0/22 852 -141.119.0.0/16 3848 -141.122.112.0/20 29356 -141.122.128.0/20 29356 -141.122.158.0/23 29356 -141.122.176.0/20 29356 -141.122.208.0/20 29356 -141.123.11.0/24 30233 -141.123.17.0/24 5650 -141.123.18.0/23 13588 -141.123.48.0/21 5650 -141.123.56.0/21 13588 -141.123.64.0/19 30233 -141.123.106.0/24 13588 -141.123.109.0/24 13588 -141.123.116.0/24 13588 -141.123.119.0/24 13588 -141.123.120.0/21 13588 -141.123.140.0/22 13588 -141.123.160.0/20 13588 -141.123.176.0/20 30233 -141.123.200.0/23 5650 -141.123.202.0/24 5650 -141.123.210.0/23 5650 -141.123.212.0/24 5650 -141.123.216.0/23 13588 -141.123.220.0/22 13588 -141.123.224.0/22 13588 -141.123.240.0/22 13588 -141.123.244.0/24 30233 -141.124.50.0/23 543 -141.125.64.0/18 36351 -141.125.128.0/18 36351 -141.126.0.0/16 20115 -141.127.0.0/16 719 -141.129.0.0/16 16988 -141.130.0.0/16 41700 -141.131.0.0/22 3828 -141.131.128.0/22 62 -141.132.0.0/16 7575 -141.133.0.0/16 14512 -141.134.0.0/15 6848 -141.136.0.0/21 43513 -141.136.8.0/24 34547 -141.136.9.0/24 57134 -141.136.10.0/23 57134 -141.136.12.0/22 57134 -141.136.16.0/20 210176 -141.136.32.0/21 34037 -141.136.40.0/22 34037 -141.136.44.0/23 47583 -141.136.46.0/24 34037 -141.136.47.0/24 47583 -141.136.48.0/21 16006 -141.136.56.0/21 56989 -141.136.64.0/19 44395 -141.136.96.0/20 3257 -141.136.112.0/21 25227 -141.136.120.0/21 198089 -141.136.128.0/17 13046 -141.137.0.0/16 158 -141.138.0.0/22 13046 -141.138.4.0/24 198548 -141.138.5.0/24 13046 -141.138.6.0/23 13046 -141.138.8.0/22 13046 -141.138.12.0/22 198785 -141.138.16.0/20 13046 -141.138.32.0/19 13046 -141.138.64.0/20 49285 -141.138.80.0/21 198045 -141.138.88.0/21 30972 -141.138.96.0/19 49223 -141.138.128.0/21 57002 -141.138.136.0/21 20857 -141.138.144.0/21 59545 -141.138.152.0/21 50535 -141.138.160.0/21 43638 -141.138.168.0/21 51696 -141.138.176.0/20 41833 -141.138.192.0/20 35470 -141.138.208.0/21 42708 -141.138.216.0/21 34612 -141.138.224.0/19 44574 -141.140.0.0/16 33692 -141.142.0.0/16 1224 -141.143.192.0/20 206209 -141.143.208.0/20 4184 -141.144.0.0/16 7160 -141.145.0.0/19 43898 -141.145.32.0/19 7160 -141.145.64.0/20 43894 -141.145.80.0/23 7160 -141.145.85.0/24 7160 -141.145.96.0/19 7160 -141.145.128.0/19 7160 -141.146.0.0/16 792 -141.149.32.0/19 701 -141.149.64.0/18 701 -141.149.128.0/17 701 -141.150.0.0/15 701 -141.152.0.0/15 701 -141.154.0.0/16 701 -141.155.0.0/17 701 -141.155.128.0/18 701 -141.155.192.0/20 701 -141.155.208.0/22 701 -141.155.212.0/23 701 -141.155.214.0/24 13639 -141.155.215.0/24 701 -141.155.216.0/21 701 -141.155.224.0/19 701 -141.156.0.0/15 701 -141.158.0.0/16 701 -141.159.0.0/17 10441 -141.159.128.0/19 10441 -141.159.160.0/20 10441 -141.159.176.0/23 3549 -141.159.178.0/23 10441 -141.159.180.0/22 10441 -141.159.184.0/21 10441 -141.159.192.0/18 10441 -141.160.4.0/22 46163 -141.160.12.0/22 46163 -141.160.20.0/22 46163 -141.160.24.0/24 1239 -141.160.25.0/24 46163 -141.160.26.0/24 46163 -141.160.28.0/23 46163 -141.160.35.0/24 17350 -141.160.39.0/24 46163 -141.160.40.0/23 46163 -141.160.43.0/24 46163 -141.160.44.0/24 46163 -141.160.47.0/24 46163 -141.161.0.0/16 11318 -141.162.0.0/17 19661 -141.162.128.0/20 19661 -141.162.144.0/21 19661 -141.162.152.0/22 19661 -141.162.156.0/23 19661 -141.162.158.0/24 19661 -141.162.159.0/24 4515 -141.162.160.0/19 19661 -141.162.192.0/18 19661 -141.163.0.0/16 786 -141.164.0.0/19 16913 -141.164.64.0/20 16913 -141.164.80.0/20 64267 -141.164.112.0/20 13370 -141.165.0.0/16 3479 -141.166.0.0/16 20105 -141.167.0.0/16 2047 -141.168.0.0/16 135887 -141.169.240.0/20 3320 -141.170.0.0/18 33920 -141.170.64.0/19 786 -141.170.96.0/22 786 -141.170.100.0/23 786 -141.170.102.0/23 33920 -141.170.104.0/21 33920 -141.170.112.0/20 33920 -141.170.128.0/18 6830 -141.170.192.0/20 42560 -141.170.208.0/21 59908 -141.170.216.0/21 9003 -141.170.224.0/22 25229 -141.170.229.0/24 25229 -141.170.230.0/23 25229 -141.170.232.0/22 25229 -141.170.236.0/24 25229 -141.170.238.0/24 25229 -141.170.240.0/22 25229 -141.170.248.0/22 25229 -141.171.132.0/22 20890 -141.172.0.0/16 29601 -141.174.50.0/24 22759 -141.174.90.0/24 2152 -141.174.95.0/24 7018 -141.174.96.0/23 7018 -141.174.98.0/24 7018 -141.174.195.0/24 7018 -141.174.255.0/24 7018 -141.175.0.0/16 210040 -141.176.38.0/24 13266 -141.176.52.0/22 13266 -141.176.60.0/23 13266 -141.177.0.0/16 36092 -141.187.0.0/16 12897 -141.188.96.0/22 51964 -141.188.100.0/24 51964 -141.188.103.0/24 51964 -141.189.0.0/16 17011 -141.190.0.0/16 1600 -141.191.0.0/21 7165 -141.191.16.0/21 7165 -141.191.32.0/21 7165 -141.192.0.0/16 1342 -141.193.0.0/23 396100 -141.193.2.0/24 396326 -141.193.3.0/24 22697 -141.193.5.0/24 394979 -141.193.6.0/24 396230 -141.193.7.0/24 30517 -141.193.8.0/22 395341 -141.193.12.0/23 16696 -141.193.14.0/24 53586 -141.193.15.0/24 7029 -141.193.16.0/23 10753 -141.193.21.0/24 396303 -141.193.22.0/23 393344 -141.193.24.0/24 46574 -141.193.25.0/24 36821 -141.193.26.0/24 396251 -141.193.27.0/24 395126 -141.193.28.0/22 26881 -141.193.32.0/23 16509 -141.193.34.0/24 36812 -141.193.36.0/22 6169 -141.193.40.0/22 132434 -141.193.48.0/22 7029 -141.193.52.0/24 7029 -141.193.53.0/24 20214 -141.193.54.0/24 33132 -141.193.56.0/24 396109 -141.193.57.0/24 6315 -141.193.60.0/22 31857 -141.193.64.0/24 13580 -141.193.65.0/24 4923 -141.193.72.0/22 54778 -141.193.80.0/22 53971 -141.193.84.0/22 19377 -141.193.88.0/23 53620 -141.193.92.0/22 394437 -141.193.96.0/23 9009 -141.193.98.0/24 46261 -141.193.99.0/24 9009 -141.193.100.0/24 54920 -141.193.103.0/24 36031 -141.193.104.0/22 13943 -141.193.108.0/22 203872 -141.193.114.0/23 19324 -141.193.116.0/22 62632 -141.193.120.0/22 12152 -141.193.124.0/22 53597 -141.193.128.0/22 395822 -141.193.132.0/22 53646 -141.193.147.0/24 63020 -141.193.152.0/21 45753 -141.193.160.0/20 16717 -141.193.176.0/23 53292 -141.193.186.0/23 22377 -141.193.188.0/23 6939 -141.193.190.0/23 393316 -141.193.192.0/23 393278 -141.193.194.0/23 62915 -141.193.196.0/23 54509 -141.193.198.0/23 46776 -141.193.201.0/24 22147 -141.193.202.0/24 46261 -141.193.203.0/24 9009 -141.193.204.0/23 395604 -141.193.206.0/23 11191 -141.193.208.0/23 396845 -141.193.210.0/23 395500 -141.193.214.0/23 203872 -141.193.216.0/23 16843 -141.193.218.0/23 7018 -141.193.220.0/23 54037 -141.193.222.0/23 11178 -141.193.227.0/24 32212 -141.193.228.0/24 26968 -141.193.229.0/24 62598 -141.193.230.0/24 32732 -141.193.231.0/24 54901 -141.193.232.0/24 23516 -141.193.233.0/24 27507 -141.193.235.0/24 63201 -141.193.236.0/23 397080 -141.193.238.0/24 397453 -141.193.239.0/24 397156 -141.193.240.0/24 21851 -141.193.241.0/24 19131 -141.193.242.0/24 36592 -141.193.244.0/24 18944 -141.193.245.0/24 30458 -141.193.246.0/24 393389 -141.193.247.0/24 54648 -141.193.248.0/24 46665 -141.193.249.0/24 40459 -141.193.250.0/24 174 -141.193.251.0/24 46746 -141.193.252.0/24 36169 -141.193.253.0/24 19437 -141.193.254.0/24 397023 -141.193.255.0/24 16843 -141.194.0.0/20 3215 -141.194.16.0/22 3215 -141.194.24.0/22 3215 -141.194.32.0/22 3215 -141.194.36.0/23 3215 -141.194.38.0/24 3215 -141.194.40.0/22 3215 -141.194.44.0/23 3215 -141.194.46.0/24 3215 -141.195.0.0/16 14877 -141.196.0.0/17 16135 -141.196.128.0/18 16135 -141.196.192.0/19 16135 -141.197.2.0/23 22764 -141.197.4.0/23 22764 -141.197.8.0/22 22764 -141.197.12.0/23 22764 -141.197.16.0/21 22764 -141.197.24.0/22 22764 -141.197.28.0/23 22764 -141.198.0.0/16 1761 -141.199.0.0/16 7834 -141.200.0.0/16 41587 -141.201.0.0/16 1109 -141.202.0.0/17 6126 -141.202.128.0/18 6126 -141.202.192.0/19 6126 -141.202.224.0/20 6126 -141.202.240.0/21 6126 -141.202.248.0/24 19637 -141.202.249.0/24 6126 -141.202.250.0/23 6126 -141.202.252.0/24 6126 -141.202.253.0/24 19637 -141.202.254.0/23 6126 -141.203.0.0/16 6720 -141.204.0.0/16 797 -141.206.16.0/24 63045 -141.206.18.0/24 63045 -141.206.144.0/24 15960 -141.206.146.0/24 15960 -141.206.147.0/24 51219 -141.206.148.0/22 15960 -141.206.156.0/22 15960 -141.206.172.0/24 2386 -141.206.176.0/24 2687 -141.206.177.0/24 395516 -141.206.230.0/23 395516 -141.206.235.0/24 395516 -141.206.237.0/24 395516 -141.206.243.0/24 395516 -141.206.244.0/24 395516 -141.206.245.0/24 2386 -141.206.246.0/23 395516 -141.206.250.0/24 2386 -141.207.0.0/17 6167 -141.207.128.0/20 22394 -141.207.144.0/21 22394 -141.207.152.0/22 22394 -141.207.156.0/22 6167 -141.207.160.0/20 22394 -141.207.176.0/21 22394 -141.207.184.0/22 22394 -141.207.188.0/22 6167 -141.207.192.0/21 22394 -141.207.200.0/22 22394 -141.207.204.0/22 6167 -141.207.208.0/21 22394 -141.207.216.0/23 22394 -141.207.218.0/23 6167 -141.207.220.0/22 6167 -141.207.224.0/21 22394 -141.207.232.0/23 22394 -141.207.234.0/23 6167 -141.207.236.0/23 6167 -141.207.238.0/23 22394 -141.207.240.0/21 22394 -141.207.248.0/22 22394 -141.207.252.0/22 6167 -141.208.0.0/16 1759 -141.209.0.0/16 27274 -141.210.0.0/16 237 -141.211.0.0/16 36375 -141.212.0.0/15 36375 -141.214.0.0/16 36375 -141.215.0.0/16 62676 -141.216.0.0/16 394769 -141.217.0.0/16 237 -141.218.0.0/16 237 -141.219.0.0/16 62618 -141.221.0.0/16 10702 -141.222.0.0/16 3549 -141.223.0.0/16 3784 -141.224.0.0/16 18454 -141.225.0.0/16 14048 -141.226.0.0/18 47956 -141.226.64.0/20 47956 -141.226.80.0/23 8551 -141.226.82.0/23 51825 -141.226.84.0/23 206174 -141.226.87.0/24 210290 -141.226.88.0/21 16116 -141.226.96.0/22 48851 -141.226.100.0/23 48851 -141.226.102.0/24 48851 -141.226.103.0/24 198949 -141.226.104.0/24 198949 -141.226.105.0/24 48851 -141.226.106.0/23 48851 -141.226.108.0/24 198949 -141.226.110.0/24 198949 -141.226.111.0/24 38622 -141.226.112.0/24 201093 -141.226.118.0/23 206174 -141.226.120.0/22 202940 -141.226.124.0/24 200478 -141.226.125.0/24 206614 -141.226.126.0/24 206614 -141.226.127.0/24 200478 -141.226.128.0/22 206614 -141.226.132.0/24 198484 -141.226.133.0/24 30633 -141.226.136.0/23 50079 -141.226.140.0/22 394213 -141.226.144.0/20 47956 -141.226.160.0/20 47956 -141.226.176.0/21 47956 -141.226.184.0/22 204257 -141.226.190.0/24 204257 -141.226.191.0/24 27435 -141.226.192.0/19 50463 -141.226.224.0/23 200478 -141.226.226.0/24 200478 -141.226.228.0/22 200478 -141.226.232.0/24 199391 -141.226.236.0/22 199270 -141.226.240.0/21 199270 -141.226.250.0/23 205209 -141.226.253.0/24 48851 -141.226.254.0/24 48851 -141.227.0.0/22 21070 -141.227.4.0/23 21070 -141.227.12.0/22 21070 -141.227.16.0/24 12765 -141.227.17.0/24 21070 -141.227.18.0/24 21070 -141.228.0.0/18 12701 -141.228.64.0/20 12701 -141.228.80.0/20 44022 -141.228.96.0/19 12701 -141.228.128.0/18 12701 -141.228.192.0/19 12701 -141.228.224.0/20 12701 -141.228.240.0/24 44022 -141.228.241.0/24 12701 -141.228.242.0/23 12701 -141.228.244.0/22 12701 -141.228.248.0/21 12701 -141.232.0.0/16 17343 -141.233.0.0/16 3128 -141.234.0.0/23 721 -141.234.2.0/24 721 -141.234.3.0/24 138 -141.234.4.0/22 721 -141.234.8.0/21 721 -141.234.16.0/20 721 -141.234.32.0/19 721 -141.234.64.0/18 721 -141.234.128.0/17 721 -141.235.0.0/16 721 -141.236.0.0/16 27064 -141.237.0.0/16 3329 -141.238.0.0/17 395015 -141.238.128.0/18 395015 -141.238.192.0/19 395015 -141.238.224.0/20 395015 -141.238.240.0/21 395015 -141.238.248.0/22 395015 -141.238.252.0/23 395015 -141.238.254.0/24 395015 -141.239.0.0/16 36149 -141.241.0.0/16 786 -141.242.7.0/24 14265 -141.242.9.0/24 14265 -141.242.71.0/24 14265 -141.242.73.0/24 14265 -141.242.75.0/24 14265 -141.242.76.0/24 14265 -141.242.79.0/24 14265 -141.242.242.0/23 14265 -141.242.244.0/24 14265 -141.242.246.0/24 14265 -141.242.249.0/24 14265 -141.242.250.0/23 14265 -141.242.252.0/23 14265 -141.242.254.0/24 14265 -141.243.8.0/23 38066 -141.243.20.0/23 38066 -141.243.32.0/22 38066 -141.244.0.0/16 1117 -141.246.0.0/16 40112 -141.248.0.0/16 395624 -141.249.0.0/16 559 -141.250.0.0/16 137 -141.252.0.0/16 1103 -141.254.0.0/17 22159 -141.255.0.0/17 3329 -141.255.128.0/21 35189 -141.255.136.0/21 8218 -141.255.144.0/20 29075 -141.255.160.0/21 51852 -141.255.168.0/21 16364 -141.255.176.0/21 21155 -141.255.184.0/21 42695 -141.255.192.0/18 2107 -142.0.0.0/21 13576 -142.0.8.0/22 13576 -142.0.12.0/23 13576 -142.0.14.0/24 13576 -142.0.15.0/24 62959 -142.0.16.0/20 54139 -142.0.32.0/20 25820 -142.0.48.0/20 33725 -142.0.68.0/22 54444 -142.0.72.0/24 54444 -142.0.79.0/24 54444 -142.0.80.0/20 394396 -142.0.96.0/20 33247 -142.0.112.0/23 10461 -142.0.114.0/24 10461 -142.0.116.0/24 46887 -142.0.128.0/20 54600 -142.0.144.0/20 812 -142.0.160.0/20 7160 -142.0.176.0/22 7381 -142.0.180.0/22 53658 -142.0.184.0/22 27357 -142.0.188.0/24 14618 -142.0.189.0/24 16509 -142.0.190.0/24 16509 -142.0.191.0/24 14618 -142.0.192.0/20 7979 -142.0.208.0/20 40266 -142.0.224.0/20 35878 -142.0.240.0/21 46261 -142.0.248.0/21 13332 -142.1.0.0/16 239 -142.3.0.0/16 26206 -142.4.0.0/19 46606 -142.4.32.0/19 18450 -142.4.64.0/19 18690 -142.4.96.0/19 54600 -142.4.128.0/20 36327 -142.4.144.0/21 36327 -142.4.152.0/22 36327 -142.4.156.0/24 396831 -142.4.157.0/24 36327 -142.4.158.0/24 394860 -142.4.159.0/24 36327 -142.4.192.0/19 16276 -142.4.224.0/19 11979 -142.9.0.0/16 16802 -142.11.0.0/18 3663 -142.11.64.0/19 20001 -142.11.96.0/20 20001 -142.11.112.0/21 20001 -142.11.120.0/23 10838 -142.11.122.0/23 20001 -142.11.124.0/23 20001 -142.11.126.0/23 10838 -142.11.150.0/24 7381 -142.11.152.0/24 7381 -142.11.192.0/18 54290 -142.12.0.0/16 855 -142.13.0.0/16 16796 -142.14.0.0/22 51964 -142.14.4.0/24 51964 -142.15.0.0/16 808 -142.16.22.0/24 6327 -142.16.23.0/24 26110 -142.17.0.0/16 611 -142.18.0.0/16 808 -142.19.96.0/22 5769 -142.20.0.0/16 46626 -142.21.0.0/16 3848 -142.22.0.0/19 3633 -142.22.32.0/20 3633 -142.22.48.0/23 852 -142.22.50.0/23 3633 -142.22.52.0/23 3633 -142.22.54.0/23 852 -142.22.56.0/21 3633 -142.22.64.0/21 3633 -142.22.72.0/24 852 -142.22.73.0/24 3633 -142.22.74.0/23 3633 -142.22.76.0/22 3633 -142.22.80.0/20 3633 -142.22.96.0/22 3633 -142.22.100.0/23 3633 -142.22.102.0/24 852 -142.22.103.0/24 3633 -142.22.104.0/22 3633 -142.22.108.0/24 852 -142.22.109.0/24 3633 -142.22.110.0/23 3633 -142.22.112.0/20 3633 -142.22.128.0/17 3633 -142.23.0.0/19 3633 -142.23.32.0/20 3633 -142.23.48.0/21 3633 -142.23.56.0/22 3633 -142.23.60.0/24 3633 -142.23.61.0/24 852 -142.23.62.0/23 3633 -142.23.64.0/22 3633 -142.23.68.0/23 852 -142.23.70.0/23 3633 -142.23.72.0/23 3633 -142.23.74.0/24 852 -142.23.75.0/24 3633 -142.23.76.0/22 3633 -142.23.80.0/20 3633 -142.23.96.0/19 3633 -142.23.128.0/17 3633 -142.24.0.0/22 3633 -142.24.4.0/23 3633 -142.24.6.0/24 30715 -142.24.7.0/24 3633 -142.24.8.0/21 3633 -142.24.16.0/20 3633 -142.24.32.0/20 3633 -142.24.48.0/23 3633 -142.24.50.0/23 852 -142.24.52.0/22 3633 -142.24.56.0/21 3633 -142.24.64.0/19 3633 -142.24.96.0/22 3633 -142.24.100.0/24 3633 -142.24.101.0/24 852 -142.24.102.0/23 3633 -142.24.104.0/21 3633 -142.24.112.0/20 3633 -142.24.128.0/18 3633 -142.24.192.0/22 3633 -142.24.196.0/23 3633 -142.24.198.0/24 852 -142.24.199.0/24 3633 -142.24.200.0/21 3633 -142.24.208.0/21 3633 -142.24.216.0/22 3633 -142.24.220.0/24 3633 -142.24.221.0/24 30715 -142.24.222.0/23 3633 -142.24.224.0/19 3633 -142.25.0.0/21 3633 -142.25.8.0/24 852 -142.25.9.0/24 3633 -142.25.10.0/23 3633 -142.25.12.0/22 3633 -142.25.16.0/20 3633 -142.25.32.0/19 3633 -142.25.64.0/23 3633 -142.25.66.0/24 852 -142.25.67.0/24 3633 -142.25.68.0/23 3633 -142.25.70.0/24 3633 -142.25.71.0/24 852 -142.25.72.0/21 3633 -142.25.80.0/20 3633 -142.25.96.0/21 3633 -142.25.104.0/23 3633 -142.25.106.0/24 3633 -142.25.107.0/24 852 -142.25.108.0/22 3633 -142.25.112.0/20 3633 -142.25.128.0/20 3633 -142.25.144.0/23 3633 -142.25.146.0/24 3633 -142.25.147.0/24 852 -142.25.148.0/22 3633 -142.25.152.0/21 3633 -142.25.160.0/21 3633 -142.25.168.0/23 3633 -142.25.170.0/24 3633 -142.25.171.0/24 852 -142.25.172.0/22 3633 -142.25.176.0/20 3633 -142.25.192.0/22 3633 -142.25.196.0/23 3633 -142.25.198.0/24 3633 -142.25.199.0/24 852 -142.25.200.0/21 3633 -142.25.208.0/20 3633 -142.25.224.0/19 3633 -142.26.0.0/22 3633 -142.26.4.0/23 3633 -142.26.6.0/24 852 -142.26.7.0/24 3633 -142.26.8.0/21 3633 -142.26.16.0/24 3633 -142.26.17.0/24 852 -142.26.18.0/23 3633 -142.26.20.0/22 3633 -142.26.24.0/21 3633 -142.26.32.0/21 3633 -142.26.40.0/23 3633 -142.26.42.0/24 3633 -142.26.43.0/24 852 -142.26.44.0/22 3633 -142.26.48.0/21 3633 -142.26.56.0/22 3633 -142.26.60.0/24 852 -142.26.61.0/24 3633 -142.26.62.0/23 3633 -142.26.64.0/19 3633 -142.26.96.0/23 3633 -142.26.98.0/24 3633 -142.26.99.0/24 852 -142.26.100.0/22 3633 -142.26.104.0/22 3633 -142.26.108.0/23 3633 -142.26.110.0/24 852 -142.26.111.0/24 3633 -142.26.112.0/22 3633 -142.26.116.0/23 3633 -142.26.118.0/24 3633 -142.26.119.0/24 852 -142.26.120.0/21 3633 -142.26.128.0/21 3633 -142.26.136.0/24 3633 -142.26.137.0/24 852 -142.26.138.0/23 3633 -142.26.140.0/22 3633 -142.26.144.0/20 3633 -142.26.160.0/19 3633 -142.26.192.0/18 3633 -142.27.0.0/19 3633 -142.27.32.0/20 3633 -142.27.48.0/21 3633 -142.27.56.0/22 3633 -142.27.60.0/24 3633 -142.27.61.0/24 852 -142.27.62.0/23 3633 -142.27.64.0/21 3633 -142.27.72.0/23 3633 -142.27.74.0/23 852 -142.27.76.0/22 3633 -142.27.80.0/20 3633 -142.27.96.0/19 3633 -142.27.128.0/20 3633 -142.27.144.0/24 852 -142.27.145.0/24 3633 -142.27.146.0/23 3633 -142.27.148.0/22 3633 -142.27.152.0/23 3633 -142.27.154.0/24 852 -142.27.155.0/24 3633 -142.27.156.0/22 3633 -142.27.160.0/19 3633 -142.27.192.0/18 3633 -142.28.0.0/19 3633 -142.28.32.0/23 3633 -142.28.34.0/24 852 -142.28.35.0/24 3633 -142.28.36.0/22 3633 -142.28.40.0/22 3633 -142.28.44.0/24 3633 -142.28.45.0/24 852 -142.28.46.0/23 3633 -142.28.48.0/20 3633 -142.28.64.0/18 3633 -142.28.128.0/18 3633 -142.28.192.0/20 3633 -142.28.208.0/21 3633 -142.28.216.0/23 3633 -142.28.218.0/24 3633 -142.28.219.0/24 852 -142.28.220.0/22 3633 -142.28.224.0/19 3633 -142.29.0.0/20 3633 -142.29.16.0/21 3633 -142.29.24.0/23 3633 -142.29.26.0/24 3633 -142.29.27.0/24 852 -142.29.28.0/22 3633 -142.29.32.0/19 3633 -142.29.64.0/18 3633 -142.29.128.0/18 3633 -142.29.192.0/20 3633 -142.29.208.0/21 3633 -142.29.216.0/24 3633 -142.29.217.0/24 852 -142.29.218.0/23 3633 -142.29.220.0/22 3633 -142.29.224.0/19 3633 -142.30.0.0/21 3633 -142.30.8.0/23 3633 -142.30.10.0/24 852 -142.30.11.0/24 3633 -142.30.12.0/22 3633 -142.30.16.0/24 852 -142.30.17.0/24 3633 -142.30.18.0/23 3633 -142.30.20.0/22 3633 -142.30.24.0/21 3633 -142.30.32.0/19 3633 -142.30.64.0/22 3633 -142.30.68.0/23 3633 -142.30.70.0/24 852 -142.30.71.0/24 3633 -142.30.72.0/21 3633 -142.30.80.0/20 3633 -142.30.96.0/23 3633 -142.30.98.0/24 852 -142.30.99.0/24 3633 -142.30.100.0/22 3633 -142.30.104.0/21 3633 -142.30.112.0/20 3633 -142.30.128.0/19 3633 -142.30.160.0/20 3633 -142.30.176.0/23 3633 -142.30.178.0/24 852 -142.30.179.0/24 3633 -142.30.180.0/22 3633 -142.30.184.0/21 3633 -142.30.192.0/18 3633 -142.31.0.0/19 3633 -142.31.32.0/20 3633 -142.31.48.0/22 3633 -142.31.52.0/24 3633 -142.31.53.0/24 852 -142.31.54.0/23 3633 -142.31.56.0/21 3633 -142.31.64.0/20 3633 -142.31.80.0/21 3633 -142.31.88.0/23 3633 -142.31.90.0/24 3633 -142.31.91.0/24 852 -142.31.92.0/22 3633 -142.31.96.0/22 3633 -142.31.100.0/22 30715 -142.31.104.0/21 3633 -142.31.112.0/20 3633 -142.31.128.0/17 3633 -142.32.0.0/17 3633 -142.32.128.0/18 3633 -142.32.192.0/19 3633 -142.32.224.0/22 3633 -142.32.228.0/24 3633 -142.32.229.0/24 852 -142.32.230.0/23 3633 -142.32.232.0/21 3633 -142.32.240.0/20 3633 -142.33.0.0/20 3633 -142.33.16.0/21 3633 -142.33.24.0/22 3633 -142.33.28.0/24 3633 -142.33.29.0/24 852 -142.33.30.0/23 3633 -142.33.32.0/22 3633 -142.33.36.0/24 852 -142.33.37.0/24 3633 -142.33.38.0/23 3633 -142.33.40.0/21 3633 -142.33.48.0/20 3633 -142.33.64.0/19 3633 -142.33.96.0/24 852 -142.33.97.0/24 3633 -142.33.98.0/23 3633 -142.33.100.0/22 3633 -142.33.104.0/22 3633 -142.33.108.0/23 3633 -142.33.110.0/24 852 -142.33.111.0/24 3633 -142.33.112.0/20 3633 -142.33.128.0/22 3633 -142.33.132.0/24 3633 -142.33.133.0/24 852 -142.33.134.0/23 3633 -142.33.136.0/21 3633 -142.33.144.0/24 3633 -142.33.145.0/24 852 -142.33.146.0/23 3633 -142.33.148.0/22 3633 -142.33.152.0/21 3633 -142.33.160.0/20 3633 -142.33.176.0/22 3633 -142.33.180.0/24 3633 -142.33.181.0/24 852 -142.33.182.0/23 3633 -142.33.184.0/21 3633 -142.33.192.0/18 3633 -142.34.0.0/22 27272 -142.34.4.0/23 27272 -142.34.25.0/24 27272 -142.34.28.0/23 27272 -142.34.36.0/24 27272 -142.34.37.0/24 30715 -142.34.38.0/24 27272 -142.34.43.0/24 27272 -142.34.44.0/24 27272 -142.34.50.0/23 27272 -142.34.52.0/23 27272 -142.34.55.0/24 27272 -142.34.60.0/22 27272 -142.34.64.0/23 27272 -142.34.74.0/23 27272 -142.34.76.0/22 27272 -142.34.80.0/23 27272 -142.34.91.0/24 27272 -142.34.92.0/22 27272 -142.34.96.0/22 27272 -142.34.100.0/24 27272 -142.34.103.0/24 27272 -142.34.112.0/23 27272 -142.34.120.0/24 27272 -142.34.128.0/20 30715 -142.34.144.0/21 30715 -142.34.154.0/24 30715 -142.34.160.0/24 30715 -142.34.200.0/24 30715 -142.34.202.0/23 30715 -142.34.208.0/22 30715 -142.34.212.0/23 30715 -142.34.215.0/24 30715 -142.34.217.0/24 30715 -142.34.220.0/22 30715 -142.34.224.0/21 30715 -142.34.241.0/24 30715 -142.34.242.0/23 30715 -142.34.244.0/24 30715 -142.34.249.0/24 30715 -142.35.0.0/22 3633 -142.35.4.0/23 3633 -142.35.6.0/23 852 -142.35.8.0/21 3633 -142.35.16.0/20 3633 -142.35.32.0/20 3633 -142.35.48.0/24 3633 -142.35.49.0/24 852 -142.35.50.0/23 3633 -142.35.52.0/22 3633 -142.35.56.0/23 3633 -142.35.58.0/24 3633 -142.35.59.0/24 852 -142.35.60.0/22 3633 -142.35.64.0/19 3633 -142.35.96.0/23 3633 -142.35.98.0/24 852 -142.35.99.0/24 3633 -142.35.100.0/22 3633 -142.35.104.0/21 3633 -142.35.112.0/20 3633 -142.35.128.0/24 3633 -142.35.129.0/24 852 -142.35.130.0/23 3633 -142.35.132.0/22 3633 -142.35.136.0/21 3633 -142.35.144.0/20 3633 -142.35.160.0/20 3633 -142.35.176.0/21 3633 -142.35.184.0/23 3633 -142.35.186.0/24 852 -142.35.187.0/24 3633 -142.35.188.0/22 3633 -142.35.192.0/22 3633 -142.35.196.0/23 3633 -142.35.198.0/24 852 -142.35.199.0/24 3633 -142.35.200.0/21 3633 -142.35.208.0/20 3633 -142.35.224.0/22 3633 -142.35.228.0/24 852 -142.35.229.0/24 3633 -142.35.230.0/23 3633 -142.35.232.0/21 3633 -142.35.240.0/20 3633 -142.36.0.0/16 3633 -142.39.192.0/20 22652 -142.39.208.0/20 20570 -142.39.224.0/20 22652 -142.39.240.0/20 852 -142.40.38.0/24 23184 -142.40.112.0/23 855 -142.40.132.0/22 26884 -142.40.136.0/23 26884 -142.40.139.0/24 26884 -142.40.150.0/23 26884 -142.40.176.0/22 263881 -142.40.182.0/23 53027 -142.40.184.0/21 53027 -142.40.196.0/23 56122 -142.40.244.0/23 1221 -142.41.239.0/24 852 -142.41.240.0/21 852 -142.43.44.0/24 17372 -142.43.46.0/24 17372 -142.43.170.0/23 17371 -142.43.221.0/24 15160 -142.43.222.0/24 15160 -142.43.246.0/24 15160 -142.43.248.0/23 15160 -142.43.251.0/24 15160 -142.43.252.0/23 15160 -142.43.254.0/24 17371 -142.43.255.0/24 15160 -142.44.0.0/17 6327 -142.44.128.0/17 16276 -142.46.0.0/19 19752 -142.46.32.0/20 19752 -142.46.48.0/23 19752 -142.46.50.0/24 19752 -142.46.51.0/24 19465 -142.46.52.0/22 19752 -142.46.56.0/21 19752 -142.46.64.0/23 19752 -142.46.66.0/23 394710 -142.46.68.0/22 11727 -142.46.72.0/21 19752 -142.46.80.0/20 19752 -142.46.96.0/19 19752 -142.46.128.0/18 19752 -142.46.192.0/24 19465 -142.46.193.0/24 19752 -142.46.194.0/23 19752 -142.46.196.0/22 19752 -142.46.200.0/21 19752 -142.46.208.0/23 393457 -142.46.210.0/23 19752 -142.46.212.0/22 19752 -142.46.216.0/21 19752 -142.46.224.0/22 32364 -142.46.228.0/22 19752 -142.46.232.0/21 19752 -142.46.240.0/20 19752 -142.47.0.0/18 32364 -142.47.64.0/22 19752 -142.47.68.0/23 19752 -142.47.70.0/24 395114 -142.47.71.0/24 19752 -142.47.72.0/21 19752 -142.47.80.0/20 19752 -142.47.96.0/19 19752 -142.47.128.0/22 19752 -142.47.132.0/24 19752 -142.47.133.0/24 26884 -142.47.134.0/23 19752 -142.47.136.0/21 19752 -142.47.144.0/20 19752 -142.47.160.0/19 19752 -142.47.192.0/18 19752 -142.51.0.0/18 14661 -142.51.64.0/22 14661 -142.51.68.0/23 14661 -142.51.70.0/23 26677 -142.51.72.0/21 14661 -142.51.80.0/20 14661 -142.51.96.0/19 14661 -142.51.128.0/18 14661 -142.51.192.0/18 5690 -142.52.64.0/18 852 -142.52.142.0/24 852 -142.52.145.0/24 852 -142.52.146.0/24 852 -142.52.192.0/24 852 -142.52.197.0/24 852 -142.52.203.0/24 852 -142.52.204.0/23 852 -142.54.8.0/21 2882 -142.54.18.0/23 20009 -142.54.20.0/24 56647 -142.54.22.0/23 56647 -142.54.24.0/21 13576 -142.54.38.0/23 14618 -142.54.40.0/24 15395 -142.54.41.0/24 14618 -142.54.42.0/23 12065 -142.54.44.0/22 393912 -142.54.48.0/20 21724 -142.54.64.0/18 6128 -142.54.160.0/19 33387 -142.54.192.0/21 3855 -142.54.200.0/24 19137 -142.54.201.0/24 396292 -142.54.202.0/24 33283 -142.54.203.0/24 21554 -142.54.204.0/22 33576 -142.54.208.0/21 33662 -142.54.216.0/24 33662 -142.54.224.0/20 20093 -142.54.240.0/24 19137 -142.54.242.0/24 19137 -142.54.243.0/24 396292 -142.54.244.0/23 19137 -142.54.246.0/24 396292 -142.54.247.0/24 19137 -142.54.254.0/24 19137 -142.55.0.0/16 5664 -142.56.64.0/18 19869 -142.56.128.0/18 19869 -142.56.240.0/20 13649 -142.57.0.0/17 394520 -142.57.128.0/18 394520 -142.57.192.0/19 394520 -142.57.224.0/20 12188 -142.57.240.0/20 394520 -142.58.0.0/16 11105 -142.59.0.0/17 852 -142.59.128.0/19 852 -142.59.160.0/20 21949 -142.59.176.0/20 852 -142.59.192.0/18 852 -142.60.0.0/16 54605 -142.61.0.0/24 852 -142.61.1.0/24 808 -142.61.2.0/23 808 -142.61.4.0/22 808 -142.61.8.0/21 808 -142.61.16.0/20 808 -142.61.32.0/19 808 -142.61.64.0/18 808 -142.61.128.0/17 808 -142.64.0.0/16 5769 -142.65.0.0/16 7834 -142.66.0.0/16 11257 -142.67.0.0/16 22636 -142.68.0.0/16 855 -142.69.0.0/16 14817 -142.70.224.0/24 47176 -142.70.225.0/24 3303 -142.70.228.0/24 3303 -142.71.8.0/24 36000 -142.71.10.0/24 36000 -142.73.16.0/20 3848 -142.73.32.0/20 3848 -142.73.80.0/20 3848 -142.73.96.0/22 3848 -142.73.128.0/19 3848 -142.73.160.0/22 3848 -142.73.164.0/24 3848 -142.73.168.0/24 3848 -142.73.170.0/24 577 -142.73.172.0/24 3848 -142.73.208.0/23 3848 -142.74.1.0/24 566 -142.74.2.0/23 566 -142.74.4.0/24 566 -142.74.8.0/24 566 -142.75.0.0/24 3900 -142.75.1.0/24 813 -142.75.2.0/23 3900 -142.75.8.0/23 2830 -142.75.10.0/24 2830 -142.75.16.0/23 10913 -142.75.24.0/22 23760 -142.75.28.0/22 18117 -142.75.64.0/22 813 -142.75.68.0/24 813 -142.75.78.0/24 813 -142.75.80.0/22 23005 -142.75.84.0/23 813 -142.75.88.0/24 813 -142.75.200.0/23 813 -142.75.224.0/23 26704 -142.75.232.0/23 26704 -142.75.240.0/24 2828 -142.75.251.0/24 35888 -142.75.252.0/23 35888 -142.75.254.0/24 16751 -142.75.255.0/24 7014 -142.76.0.0/16 19925 -142.77.0.0/24 701 -142.77.1.0/24 3378 -142.77.2.0/23 701 -142.77.4.0/22 701 -142.77.8.0/22 3371 -142.77.12.0/23 701 -142.77.14.0/24 3378 -142.77.15.0/24 701 -142.77.16.0/20 701 -142.77.32.0/24 3378 -142.77.33.0/24 701 -142.77.34.0/23 701 -142.77.36.0/22 701 -142.77.40.0/22 701 -142.77.44.0/23 701 -142.77.46.0/24 3378 -142.77.47.0/24 701 -142.77.48.0/24 701 -142.77.49.0/24 11486 -142.77.50.0/23 701 -142.77.52.0/22 701 -142.77.56.0/21 701 -142.77.64.0/21 701 -142.77.72.0/21 3371 -142.77.80.0/20 3371 -142.77.96.0/20 701 -142.77.112.0/24 701 -142.77.113.0/24 11486 -142.77.114.0/24 11486 -142.77.115.0/24 701 -142.77.116.0/22 701 -142.77.120.0/21 701 -142.77.128.0/17 701 -142.78.0.0/16 2665 -142.79.0.0/23 397832 -142.79.56.0/23 4262 -142.79.58.0/23 2687 -142.79.64.0/19 53508 -142.79.100.0/22 53508 -142.79.104.0/23 53508 -142.79.176.0/23 7018 -142.79.178.0/23 10770 -142.79.192.0/20 395354 -142.79.208.0/22 395354 -142.79.212.0/23 395354 -142.79.216.0/21 395354 -142.79.224.0/23 17439 -142.79.226.0/24 17439 -142.82.0.0/21 852 -142.82.8.0/23 852 -142.82.16.0/23 852 -142.82.20.0/23 852 -142.82.24.0/24 852 -142.82.26.0/24 852 -142.83.0.0/16 11489 -142.84.0.0/16 11489 -142.85.0.0/17 11489 -142.85.128.0/24 11489 -142.85.240.0/21 11489 -142.87.0.0/16 7950 -142.89.0.0/16 822 -142.90.0.0/18 40788 -142.90.64.0/18 36391 -142.90.128.0/18 36391 -142.90.192.0/18 40788 -142.91.0.0/21 395954 -142.91.8.0/21 7979 -142.91.16.0/22 395954 -142.91.24.0/21 7203 -142.91.32.0/21 7203 -142.91.40.0/21 395954 -142.91.56.0/22 395954 -142.91.64.0/21 15003 -142.91.72.0/21 395954 -142.91.88.0/21 396190 -142.91.96.0/21 395954 -142.91.104.0/21 15003 -142.91.112.0/22 395954 -142.91.116.0/22 396190 -142.91.120.0/21 7979 -142.91.128.0/21 395954 -142.91.136.0/21 7203 -142.91.144.0/21 395954 -142.91.152.0/21 7979 -142.91.160.0/21 395954 -142.91.168.0/21 7203 -142.91.184.0/21 395954 -142.91.192.0/21 395954 -142.91.208.0/22 396190 -142.91.212.0/22 7203 -142.91.216.0/21 395954 -142.91.224.0/19 395954 -142.92.0.0/16 818 -142.93.0.0/16 14061 -142.94.0.0/16 393952 -142.98.224.0/24 806 -142.98.230.0/23 806 -142.99.0.0/17 803 -142.99.128.0/18 803 -142.99.192.0/19 803 -142.99.224.0/20 803 -142.99.240.0/22 26806 -142.99.244.0/24 803 -142.99.245.0/24 26806 -142.99.246.0/23 26806 -142.99.248.0/24 26806 -142.99.249.0/24 803 -142.99.250.0/23 803 -142.99.252.0/22 803 -142.100.0.0/17 852 -142.100.128.0/20 11489 -142.100.144.0/20 852 -142.100.160.0/19 852 -142.100.192.0/19 852 -142.100.224.0/20 11489 -142.100.240.0/20 852 -142.103.0.0/16 393249 -142.104.0.0/16 16462 -142.105.0.0/18 12271 -142.105.64.0/24 12271 -142.105.65.0/24 63259 -142.105.66.0/23 12271 -142.105.68.0/22 12271 -142.105.72.0/21 12271 -142.105.80.0/20 12271 -142.105.96.0/19 12271 -142.105.128.0/17 11351 -142.106.0.0/15 808 -142.108.0.0/16 808 -142.109.0.0/16 53403 -142.110.0.0/16 25635 -142.111.0.0/16 18779 -142.112.0.0/14 577 -142.116.0.0/15 577 -142.118.0.0/16 577 -142.119.0.0/17 577 -142.119.128.0/20 577 -142.120.0.0/20 577 -142.120.16.0/21 577 -142.120.24.0/21 63131 -142.120.32.0/20 63131 -142.120.48.0/20 577 -142.120.64.0/18 577 -142.120.128.0/17 577 -142.122.0.0/16 577 -142.127.0.0/16 577 -142.128.48.0/20 3848 -142.128.64.0/20 3848 -142.128.128.0/24 3848 -142.129.0.0/16 20001 -142.131.0.0/21 12188 -142.131.8.0/23 12188 -142.131.10.0/24 9989 -142.131.11.0/24 36031 -142.131.12.0/22 12188 -142.131.16.0/22 852 -142.131.20.0/23 852 -142.131.22.0/23 12188 -142.131.24.0/24 12188 -142.131.25.0/24 852 -142.131.26.0/23 12188 -142.131.28.0/22 852 -142.131.32.0/23 852 -142.131.34.0/23 12188 -142.131.36.0/22 852 -142.131.40.0/23 852 -142.131.42.0/23 12188 -142.131.44.0/24 12188 -142.131.45.0/24 852 -142.131.46.0/23 12188 -142.131.48.0/24 12188 -142.131.49.0/24 852 -142.131.50.0/23 12188 -142.131.52.0/24 12188 -142.131.53.0/24 852 -142.131.54.0/23 12188 -142.131.56.0/24 12188 -142.131.57.0/24 6327 -142.131.58.0/23 12188 -142.131.60.0/23 852 -142.131.62.0/23 12188 -142.131.64.0/22 577 -142.131.68.0/22 11478 -142.131.72.0/24 12188 -142.131.73.0/24 5769 -142.131.74.0/23 12188 -142.131.76.0/22 577 -142.131.80.0/23 577 -142.131.82.0/23 12188 -142.131.84.0/24 12188 -142.131.85.0/24 577 -142.131.86.0/23 12188 -142.131.88.0/23 577 -142.131.90.0/23 12188 -142.131.92.0/24 12188 -142.131.93.0/24 855 -142.131.94.0/23 12188 -142.131.96.0/19 12188 -142.131.128.0/20 12188 -142.131.144.0/24 12188 -142.131.145.0/24 852 -142.131.146.0/23 12188 -142.131.148.0/24 12188 -142.131.149.0/24 23498 -142.131.150.0/23 12188 -142.131.152.0/21 12188 -142.131.160.0/20 12188 -142.131.176.0/23 12188 -142.131.178.0/23 7029 -142.131.180.0/23 12188 -142.131.182.0/23 46887 -142.131.184.0/22 22773 -142.131.188.0/22 397708 -142.131.192.0/21 12188 -142.131.200.0/23 7015 -142.131.202.0/23 12188 -142.131.204.0/23 12188 -142.131.206.0/24 7018 -142.131.207.0/24 12188 -142.131.208.0/23 12188 -142.131.210.0/23 174 -142.131.212.0/23 12188 -142.131.214.0/23 209 -142.131.216.0/21 12188 -142.131.224.0/23 12188 -142.131.226.0/24 6079 -142.131.227.0/24 12188 -142.131.228.0/23 3549 -142.131.230.0/23 12188 -142.131.232.0/22 12188 -142.131.236.0/23 12188 -142.131.238.0/23 3257 -142.131.240.0/22 33651 -142.131.244.0/23 12188 -142.131.246.0/23 3855 -142.131.248.0/22 8151 -142.131.252.0/24 8151 -142.131.253.0/24 35900 -142.131.254.0/23 3855 -142.132.0.0/16 22686 -142.133.0.0/16 8147 -142.134.0.0/16 855 -142.136.0.0/16 3456 -142.137.0.0/16 31930 -142.139.0.0/16 11998 -142.140.0.0/14 808 -142.144.0.0/15 808 -142.146.20.0/24 8160 -142.146.28.0/23 812 -142.146.31.0/24 8160 -142.146.32.0/24 32787 -142.146.38.0/24 32787 -142.146.39.0/24 8160 -142.146.40.0/23 8160 -142.146.42.0/24 8160 -142.146.48.0/23 812 -142.146.96.0/22 32787 -142.146.100.0/23 32787 -142.146.192.0/23 812 -142.146.196.0/23 812 -142.146.198.0/24 812 -142.146.204.0/24 812 -142.146.236.0/23 8160 -142.147.0.0/23 7819 -142.147.8.0/23 23280 -142.147.12.0/23 16621 -142.147.16.0/20 3958 -142.147.32.0/20 3958 -142.147.48.0/23 394127 -142.147.51.0/24 395975 -142.147.52.0/23 20291 -142.147.55.0/24 11170 -142.147.56.0/22 17210 -142.147.60.0/24 33724 -142.147.67.0/24 13727 -142.147.68.0/22 22909 -142.147.75.0/24 394510 -142.147.77.0/24 53588 -142.147.79.0/24 63209 -142.147.81.0/24 36498 -142.147.82.0/23 54527 -142.147.84.0/22 25649 -142.147.88.0/23 6233 -142.147.90.0/24 6233 -142.147.91.0/24 62805 -142.147.92.0/24 62805 -142.147.93.0/24 32727 -142.147.94.0/24 55158 -142.147.95.0/24 9312 -142.147.96.0/22 64236 -142.147.101.0/24 13855 -142.147.102.0/23 14434 -142.147.104.0/21 64267 -142.147.112.0/20 26077 -142.147.128.0/17 62874 -142.148.224.0/23 14630 -142.148.227.0/24 14630 -142.148.228.0/23 14630 -142.148.230.0/24 14630 -142.148.252.0/23 14630 -142.149.0.0/20 393952 -142.149.16.0/24 393952 -142.149.17.0/24 6539 -142.149.18.0/23 393952 -142.149.20.0/22 393952 -142.149.24.0/21 393952 -142.149.32.0/19 393952 -142.149.64.0/18 393952 -142.149.128.0/17 393952 -142.150.0.0/15 239 -142.153.0.0/16 3743 -142.154.0.0/17 25019 -142.154.128.0/18 13825 -142.154.192.0/21 46450 -142.154.200.0/22 46450 -142.154.204.0/23 46450 -142.154.206.0/24 46450 -142.154.207.0/24 50079 -142.154.208.0/20 46450 -142.154.224.0/23 396486 -142.154.226.0/24 17042 -142.154.233.0/24 22652 -142.154.234.0/24 22652 -142.154.236.0/22 22652 -142.154.240.0/22 22652 -142.154.244.0/23 22652 -142.154.246.0/24 22652 -142.154.249.0/24 22652 -142.154.250.0/24 22652 -142.155.0.0/22 26677 -142.155.117.0/24 26677 -142.155.164.0/24 26677 -142.155.192.0/22 26677 -142.155.198.0/23 26677 -142.155.210.0/24 26677 -142.155.216.0/22 26677 -142.156.0.0/16 18621 -142.157.0.0/16 15318 -142.158.0.0/16 822 -142.160.0.0/15 7122 -142.162.0.0/15 855 -142.164.0.0/15 803 -142.166.0.0/18 855 -142.166.64.0/19 855 -142.166.96.0/22 855 -142.166.100.0/24 855 -142.166.101.0/24 32870 -142.166.102.0/23 855 -142.166.104.0/21 855 -142.166.112.0/20 855 -142.166.128.0/17 855 -142.167.0.0/16 855 -142.169.0.0/16 852 -142.176.0.0/24 18814 -142.176.1.0/24 855 -142.176.2.0/23 855 -142.176.4.0/22 855 -142.176.8.0/21 855 -142.176.16.0/20 855 -142.176.32.0/19 855 -142.176.64.0/23 855 -142.176.66.0/24 40439 -142.176.67.0/24 855 -142.176.68.0/22 855 -142.176.72.0/21 855 -142.176.80.0/20 855 -142.176.96.0/19 855 -142.176.128.0/17 855 -142.177.0.0/18 855 -142.177.64.0/19 855 -142.177.96.0/22 855 -142.177.100.0/24 855 -142.177.101.0/24 32870 -142.177.102.0/23 855 -142.177.104.0/21 855 -142.177.112.0/20 855 -142.177.128.0/23 855 -142.177.130.0/23 36522 -142.177.132.0/22 855 -142.177.136.0/21 855 -142.177.144.0/20 855 -142.177.160.0/19 855 -142.177.192.0/18 855 -142.179.0.0/16 852 -142.180.0.0/16 577 -142.182.0.0/16 577 -142.183.0.0/20 577 -142.183.16.0/20 36522 -142.183.32.0/19 577 -142.183.64.0/20 577 -142.183.80.0/20 36522 -142.183.96.0/20 36522 -142.183.112.0/21 577 -142.183.120.0/21 36522 -142.183.128.0/20 577 -142.183.144.0/21 577 -142.183.152.0/21 36522 -142.183.160.0/19 36522 -142.183.192.0/19 36522 -142.183.224.0/20 577 -142.183.240.0/20 36522 -142.184.0.0/16 577 -142.190.0.0/16 13760 -142.191.8.0/21 2665 -142.192.3.0/24 19372 -142.192.10.0/24 19372 -142.192.12.0/23 19372 -142.195.0.0/16 64258 -142.196.0.0/15 33363 -142.199.0.0/16 16623 -142.200.192.0/21 26361 -142.200.200.0/24 6327 -142.200.201.0/24 26361 -142.200.202.0/23 26361 -142.200.204.0/22 26361 -142.200.208.0/23 26361 -142.200.210.0/24 26361 -142.200.211.0/24 6327 -142.200.212.0/22 26361 -142.200.216.0/21 26361 -142.200.224.0/19 26361 -142.201.0.0/16 26321 -142.202.4.0/22 62838 -142.202.10.0/24 398245 -142.202.11.0/24 13977 -142.202.12.0/22 20119 -142.202.24.0/22 26935 -142.202.41.0/24 16509 -142.202.42.0/24 14618 -142.202.43.0/24 16509 -142.202.44.0/24 63355 -142.202.46.0/24 16509 -142.202.52.0/22 64227 -142.202.60.0/23 398089 -142.202.62.0/24 398089 -142.202.72.0/22 398044 -142.202.82.0/23 54613 -142.202.94.0/24 397585 -142.202.95.0/24 33662 -142.202.112.0/22 36511 -142.202.116.0/22 32217 -142.202.130.0/23 3695 -142.202.137.0/24 137909 -142.202.138.0/23 174 -142.202.148.0/22 395768 -142.202.153.0/24 398195 -142.202.154.0/24 11478 -142.202.157.0/24 3356 -142.202.158.0/24 53978 -142.202.160.0/22 395768 -142.202.184.0/24 23328 -142.202.188.0/24 398019 -142.202.192.0/22 62707 -142.202.197.0/24 396387 -142.202.198.0/24 812 -142.202.202.0/23 398065 -142.202.204.0/24 14618 -142.202.205.0/24 22653 -142.202.206.0/23 397427 -142.202.212.0/22 35911 -142.202.220.0/22 13830 -142.202.224.0/22 31863 -142.202.228.0/22 397376 -142.202.232.0/22 14713 -142.202.240.0/22 14315 -142.202.244.0/22 398079 -142.202.252.0/22 26695 -142.203.0.0/22 36205 -142.203.4.0/23 36205 -142.203.6.0/24 577 -142.203.7.0/24 36205 -142.203.8.0/21 36205 -142.204.0.0/16 10265 -142.205.10.0/23 7734 -142.205.13.0/24 7734 -142.205.19.0/24 7734 -142.205.25.0/24 7734 -142.205.26.0/24 7734 -142.205.44.0/24 7734 -142.205.54.0/23 7734 -142.205.60.0/23 7734 -142.205.75.0/24 7734 -142.205.88.0/22 7734 -142.205.92.0/23 7734 -142.205.94.0/24 7734 -142.205.104.0/22 7734 -142.205.108.0/24 7734 -142.205.112.0/22 7734 -142.205.116.0/24 7734 -142.205.118.0/23 7734 -142.205.120.0/21 7734 -142.205.129.0/24 7734 -142.205.130.0/23 7734 -142.205.144.0/23 7734 -142.205.152.0/23 7734 -142.205.157.0/24 7734 -142.205.158.0/24 7734 -142.205.160.0/24 4657 -142.205.161.0/24 2856 -142.205.162.0/23 2856 -142.205.168.0/23 7734 -142.205.174.0/23 7734 -142.205.180.0/23 7734 -142.205.202.0/23 7734 -142.205.204.0/24 7734 -142.205.206.0/23 7734 -142.205.208.0/23 7734 -142.205.212.0/23 7734 -142.205.216.0/22 7734 -142.205.232.0/23 7734 -142.205.240.0/23 7734 -142.205.248.0/23 7734 -142.206.0.0/16 2665 -142.207.0.0/16 271 -142.213.0.0/16 11489 -142.214.0.0/16 32156 -142.216.36.0/23 32564 -142.216.101.0/24 32564 -142.216.102.0/24 32564 -142.216.128.0/24 32564 -142.216.132.0/23 32564 -142.216.136.0/23 32564 -142.216.138.0/24 32564 -142.216.165.0/24 32564 -142.216.168.0/24 32564 -142.216.174.0/24 32564 -142.217.0.0/17 35911 -142.217.128.0/22 35911 -142.217.132.0/23 35911 -142.217.134.0/24 577 -142.217.135.0/24 35911 -142.217.136.0/21 35911 -142.217.144.0/23 35911 -142.217.146.0/23 577 -142.217.148.0/22 577 -142.217.152.0/21 35911 -142.217.160.0/19 35911 -142.217.192.0/18 35911 -142.219.0.0/16 53442 -142.221.0.0/16 23217 -142.222.0.0/16 812 -142.225.0.0/19 395198 -142.225.100.0/22 395198 -142.227.0.0/16 23307 -142.229.0.0/16 393952 -142.230.0.0/23 6327 -142.230.2.0/23 19351 -142.231.0.0/18 271 -142.231.64.0/19 393249 -142.231.96.0/19 271 -142.231.128.0/17 271 -142.232.0.0/16 4476 -142.233.128.0/18 7122 -142.233.192.0/21 26361 -142.233.200.0/23 26361 -142.233.202.0/24 7122 -142.233.203.0/24 26361 -142.233.204.0/22 26361 -142.233.208.0/20 26361 -142.233.224.0/19 26361 -142.234.8.0/21 7203 -142.234.16.0/20 395954 -142.234.32.0/21 7979 -142.234.40.0/21 395954 -142.234.48.0/21 7203 -142.234.56.0/22 7203 -142.234.64.0/20 395954 -142.234.80.0/21 7203 -142.234.88.0/21 395954 -142.234.96.0/21 7203 -142.234.104.0/21 396190 -142.234.112.0/21 395954 -142.234.120.0/21 7203 -142.234.128.0/21 7203 -142.234.136.0/21 395954 -142.234.144.0/21 7203 -142.234.152.0/21 395954 -142.234.160.0/21 395954 -142.234.168.0/21 396190 -142.234.176.0/22 395954 -142.234.180.0/22 396190 -142.234.184.0/22 395954 -142.234.188.0/22 396190 -142.234.192.0/21 7203 -142.234.200.0/22 396362 -142.234.204.0/24 396362 -142.234.208.0/20 395954 -142.234.232.0/21 396190 -142.234.244.0/22 395954 -142.234.248.0/22 396190 -142.234.252.0/22 395954 -142.236.0.0/18 2653 -142.236.64.0/21 2653 -142.236.72.0/22 2653 -142.236.76.0/24 2665 -142.236.77.0/24 2653 -142.236.78.0/23 2653 -142.236.80.0/20 2653 -142.236.96.0/19 2653 -142.237.0.0/16 32347 -142.238.0.0/16 812 -142.239.128.0/20 22505 -142.239.240.0/20 8111 -142.240.0.0/17 36750 -142.240.128.0/18 36750 -142.240.192.0/19 36750 -142.240.224.0/20 36750 -142.240.240.0/21 36750 -142.240.248.0/22 36750 -142.240.252.0/23 36750 -142.240.254.0/24 5664 -142.240.255.0/24 36750 -142.241.0.0/17 852 -142.241.128.0/18 852 -142.241.192.0/19 852 -142.241.224.0/21 852 -142.241.232.0/22 852 -142.241.236.0/23 852 -142.241.238.0/24 852 -142.241.239.0/24 14873 -142.241.240.0/23 14873 -142.241.242.0/23 852 -142.241.244.0/22 852 -142.241.248.0/22 852 -142.241.252.0/23 852 -142.241.254.0/24 14873 -142.241.255.0/24 852 -142.242.0.0/20 30409 -142.242.18.0/24 30409 -142.242.32.0/20 30409 -142.242.53.0/24 19103 -142.242.112.0/21 198550 -142.243.0.0/16 395399 -142.244.0.0/16 3359 -142.245.0.0/18 19416 -142.245.64.0/22 16730 -142.245.68.0/24 16730 -142.245.69.0/24 19416 -142.245.70.0/24 19416 -142.245.71.0/24 16730 -142.245.72.0/23 16730 -142.245.74.0/24 19416 -142.245.75.0/24 16730 -142.245.76.0/22 16730 -142.245.80.0/22 16730 -142.245.84.0/23 16730 -142.245.86.0/23 19416 -142.245.88.0/22 19416 -142.245.92.0/24 16730 -142.245.93.0/24 19416 -142.245.94.0/24 19416 -142.245.95.0/24 16730 -142.245.96.0/19 19416 -142.245.128.0/17 19416 -142.246.0.0/16 395272 -142.250.0.0/15 15169 -142.252.0.0/16 18779 -142.254.0.0/17 46375 -142.254.128.0/20 11427 -142.254.144.0/20 10796 -142.254.160.0/20 12271 -142.254.176.0/21 20001 -142.254.184.0/22 20001 -142.254.188.0/24 20001 -142.254.189.0/24 10838 -142.254.190.0/23 20001 -142.254.192.0/20 11426 -142.254.208.0/20 11351 -142.254.225.0/24 11955 -142.254.236.0/22 20001 -142.255.0.0/17 12271 -142.255.128.0/17 25877 -143.0.0.0/22 264008 -143.0.4.0/22 264428 -143.0.8.0/22 264516 -143.0.12.0/22 28604 -143.0.16.0/22 263990 -143.0.20.0/22 263985 -143.0.24.0/22 266162 -143.0.28.0/22 263991 -143.0.32.0/22 27694 -143.0.36.0/22 263992 -143.0.40.0/22 262550 -143.0.44.0/22 263999 -143.0.48.0/22 263544 -143.0.52.0/22 263997 -143.0.56.0/22 52613 -143.0.60.0/22 264002 -143.0.64.0/22 263687 -143.0.68.0/22 265989 -143.0.72.0/22 264004 -143.0.76.0/22 11014 -143.0.80.0/22 262231 -143.0.84.0/22 263998 -143.0.88.0/22 264426 -143.0.92.0/22 263836 -143.0.96.0/22 263701 -143.0.100.0/24 264618 -143.0.101.0/24 264612 -143.0.102.0/23 264647 -143.0.104.0/22 17079 -143.0.108.0/22 64339 -143.0.112.0/22 262995 -143.0.116.0/22 52680 -143.0.120.0/22 264034 -143.0.124.0/22 264000 -143.0.128.0/22 264543 -143.0.132.0/22 264021 -143.0.136.0/22 264011 -143.0.140.0/22 264009 -143.0.144.0/22 264020 -143.0.148.0/22 264005 -143.0.152.0/22 262470 -143.0.156.0/22 264012 -143.0.160.0/23 264621 -143.0.162.0/24 264621 -143.0.163.0/24 23520 -143.0.164.0/22 264014 -143.0.168.0/22 28080 -143.0.172.0/22 27665 -143.0.176.0/22 264006 -143.0.180.0/22 264007 -143.0.184.0/22 264013 -143.0.188.0/22 264026 -143.0.192.0/22 264015 -143.0.196.0/22 264010 -143.0.200.0/22 264001 -143.0.204.0/22 52951 -143.0.208.0/22 264072 -143.0.212.0/22 262746 -143.0.216.0/22 264027 -143.0.220.0/22 264022 -143.0.224.0/22 264035 -143.0.228.0/22 53184 -143.0.232.0/22 264016 -143.0.239.0/24 27884 -143.0.244.0/22 12150 -143.0.248.0/22 27843 -143.0.252.0/22 264023 -143.1.0.0/16 11003 -143.2.0.0/16 11003 -143.4.0.0/14 11003 -143.8.0.0/18 11003 -143.8.64.0/21 11003 -143.8.72.0/23 35163 -143.8.74.0/23 11003 -143.8.76.0/22 11003 -143.8.80.0/20 11003 -143.8.96.0/19 11003 -143.8.128.0/20 11003 -143.8.144.0/20 3561 -143.8.160.0/19 11003 -143.8.192.0/18 11003 -143.10.0.0/15 11003 -143.12.0.0/14 11003 -143.16.18.0/23 11003 -143.16.25.0/24 11003 -143.16.82.0/23 61153 -143.16.90.0/23 61153 -143.16.176.0/22 61153 -143.16.188.0/23 61153 -143.17.0.0/16 11003 -143.18.0.0/16 11003 -143.22.0.0/16 11003 -143.25.0.0/16 11003 -143.26.144.0/22 15442 -143.27.112.0/23 15442 -143.27.126.0/23 15442 -143.27.162.0/23 15442 -143.28.116.0/23 15442 -143.28.232.0/23 15442 -143.29.0.0/19 11003 -143.29.32.0/21 11003 -143.29.40.0/22 11003 -143.29.44.0/23 11003 -143.29.46.0/23 35163 -143.29.48.0/21 11003 -143.29.56.0/22 11003 -143.29.60.0/23 11003 -143.29.62.0/23 35163 -143.29.64.0/20 11003 -143.29.80.0/22 11003 -143.29.84.0/23 11003 -143.29.86.0/23 35163 -143.29.88.0/21 11003 -143.29.96.0/19 11003 -143.29.128.0/17 11003 -143.30.0.0/16 11003 -143.31.0.0/20 11003 -143.31.16.0/21 11003 -143.31.24.0/22 61153 -143.31.28.0/22 11003 -143.31.32.0/19 11003 -143.31.64.0/18 11003 -143.31.128.0/17 11003 -143.32.0.0/15 11003 -143.34.0.0/19 11003 -143.34.32.0/21 11003 -143.34.40.0/23 35163 -143.34.42.0/23 11003 -143.34.44.0/22 11003 -143.34.48.0/20 11003 -143.34.64.0/18 11003 -143.34.128.0/17 11003 -143.35.0.0/16 11003 -143.36.0.0/17 11003 -143.36.128.0/18 11003 -143.36.192.0/20 11003 -143.36.208.0/20 3561 -143.36.224.0/19 11003 -143.38.194.0/23 15442 -143.41.8.0/21 25180 -143.41.32.0/21 25180 -143.43.0.0/17 22978 -143.43.128.0/17 22887 -143.44.0.0/16 393257 -143.45.0.0/16 1649 -143.46.0.0/16 1637 -143.47.0.0/20 52019 -143.47.16.0/21 52019 -143.47.128.0/19 52019 -143.47.160.0/20 4184 -143.47.192.0/18 52019 -143.48.0.0/16 13748 -143.50.0.0/16 1114 -143.51.0.0/17 200996 -143.51.128.0/17 16086 -143.52.0.0/15 786 -143.54.0.0/16 19200 -143.55.0.0/16 23341 -143.56.0.0/16 668 -143.58.0.0/21 19977 -143.58.8.0/22 29120 -143.58.12.0/24 29120 -143.58.16.0/22 17989 -143.58.20.0/23 17989 -143.59.0.0/16 12083 -143.60.0.0/17 40723 -143.60.128.0/18 40723 -143.60.224.0/19 40723 -143.61.0.0/20 12090 -143.61.16.0/22 12090 -143.61.20.0/24 12090 -143.61.22.0/24 12090 -143.61.84.0/24 12090 -143.61.91.0/24 209 -143.61.116.0/23 12090 -143.61.147.0/24 3549 -143.61.200.0/24 12090 -143.61.248.0/23 12090 -143.64.0.0/16 8075 -143.65.120.0/23 50510 -143.65.126.0/24 50510 -143.65.192.0/24 50510 -143.65.196.0/23 50510 -143.65.200.0/23 50510 -143.66.0.0/16 13536 -143.67.0.0/16 29968 -143.68.10.0/23 1600 -143.68.12.0/23 1600 -143.68.16.0/20 1600 -143.68.64.0/19 747 -143.69.0.0/23 721 -143.69.2.0/23 668 -143.69.4.0/23 721 -143.69.6.0/24 721 -143.69.7.0/24 1590 -143.69.8.0/22 1541 -143.69.12.0/23 1541 -143.69.14.0/24 27064 -143.69.15.0/24 721 -143.69.16.0/23 721 -143.69.18.0/24 721 -143.69.19.0/24 1466 -143.69.20.0/22 721 -143.69.24.0/21 721 -143.69.32.0/22 721 -143.69.36.0/23 721 -143.69.38.0/23 27064 -143.69.40.0/21 721 -143.69.48.0/20 721 -143.69.64.0/20 1541 -143.69.80.0/21 1541 -143.69.88.0/22 1457 -143.69.92.0/23 1479 -143.69.94.0/23 27064 -143.69.96.0/23 1541 -143.69.98.0/23 721 -143.69.100.0/22 721 -143.69.104.0/21 721 -143.69.112.0/21 721 -143.69.120.0/23 721 -143.69.122.0/24 27064 -143.69.123.0/24 721 -143.69.124.0/22 721 -143.69.128.0/21 721 -143.69.136.0/24 721 -143.69.137.0/24 1494 -143.69.138.0/23 1494 -143.69.140.0/23 1494 -143.69.142.0/24 1494 -143.69.143.0/24 721 -143.69.144.0/24 1494 -143.69.145.0/24 721 -143.69.146.0/24 721 -143.69.147.0/24 1494 -143.69.148.0/23 1494 -143.69.150.0/23 721 -143.69.152.0/21 721 -143.69.160.0/19 5972 -143.69.192.0/21 5972 -143.69.200.0/21 721 -143.69.208.0/21 1480 -143.69.216.0/21 1590 -143.69.224.0/21 721 -143.69.232.0/22 1590 -143.69.236.0/22 721 -143.69.240.0/20 721 -143.70.48.0/21 1502 -143.70.56.0/24 1502 -143.70.58.0/23 1502 -143.70.64.0/19 1502 -143.70.176.0/20 1502 -143.70.224.0/24 1501 -143.71.0.0/16 1488 -143.72.0.0/16 1488 -143.73.0.0/24 1541 -143.73.1.0/24 721 -143.73.2.0/23 721 -143.73.4.0/22 721 -143.73.8.0/21 721 -143.73.16.0/20 721 -143.73.32.0/20 721 -143.73.48.0/23 1501 -143.73.50.0/23 721 -143.73.52.0/22 721 -143.73.56.0/21 721 -143.73.64.0/24 1501 -143.73.65.0/24 721 -143.73.66.0/23 721 -143.73.68.0/22 721 -143.73.72.0/24 1501 -143.73.73.0/24 721 -143.73.74.0/23 721 -143.73.76.0/22 721 -143.73.80.0/20 721 -143.73.96.0/24 1541 -143.73.97.0/24 721 -143.73.98.0/23 721 -143.73.100.0/22 721 -143.73.104.0/21 721 -143.73.112.0/20 721 -143.73.128.0/20 721 -143.73.144.0/20 1600 -143.73.160.0/19 721 -143.73.192.0/19 721 -143.73.224.0/24 5953 -143.73.225.0/24 721 -143.73.226.0/24 5953 -143.73.227.0/24 721 -143.73.228.0/22 721 -143.73.232.0/22 721 -143.73.236.0/24 5953 -143.73.237.0/24 721 -143.73.238.0/23 5953 -143.73.240.0/20 721 -143.74.0.0/24 5953 -143.74.1.0/24 721 -143.74.2.0/23 721 -143.74.4.0/22 721 -143.74.8.0/21 721 -143.74.16.0/22 721 -143.74.20.0/24 721 -143.74.21.0/24 5953 -143.74.22.0/23 5953 -143.74.24.0/21 721 -143.74.32.0/21 5953 -143.74.40.0/22 721 -143.74.44.0/24 721 -143.74.45.0/24 5953 -143.74.46.0/23 5953 -143.74.48.0/20 5953 -143.74.64.0/18 721 -143.74.128.0/18 721 -143.74.192.0/19 721 -143.74.224.0/20 721 -143.74.240.0/21 721 -143.74.248.0/23 721 -143.74.250.0/24 721 -143.74.251.0/24 747 -143.74.252.0/24 1541 -143.74.253.0/24 5953 -143.74.254.0/24 721 -143.74.255.0/24 1600 -143.76.0.0/21 721 -143.76.8.0/24 721 -143.76.9.0/24 1489 -143.76.10.0/24 721 -143.76.11.0/24 1489 -143.76.12.0/22 721 -143.76.16.0/20 721 -143.76.32.0/20 721 -143.76.48.0/24 1501 -143.76.49.0/24 721 -143.76.50.0/23 721 -143.76.52.0/22 721 -143.76.56.0/21 721 -143.76.64.0/20 1502 -143.76.80.0/20 721 -143.76.96.0/20 721 -143.76.112.0/20 5953 -143.76.128.0/20 721 -143.76.144.0/24 1541 -143.76.145.0/24 721 -143.76.146.0/23 721 -143.76.148.0/22 1541 -143.76.152.0/21 721 -143.76.160.0/19 721 -143.76.192.0/19 721 -143.76.224.0/24 721 -143.76.225.0/24 1489 -143.76.226.0/23 721 -143.76.228.0/22 721 -143.76.232.0/21 721 -143.76.240.0/20 721 -143.77.0.0/16 747 -143.78.0.0/16 1489 -143.79.0.0/17 1463 -143.79.128.0/21 1463 -143.79.136.0/22 1463 -143.79.140.0/23 1463 -143.79.142.0/24 1463 -143.79.143.0/24 1541 -143.79.144.0/20 1463 -143.79.160.0/19 1463 -143.79.192.0/18 1463 -143.80.16.0/21 1504 -143.80.24.0/24 367 -143.81.0.0/24 6034 -143.81.1.0/24 721 -143.81.2.0/23 721 -143.81.4.0/22 6034 -143.81.8.0/21 6034 -143.81.16.0/23 6034 -143.81.18.0/24 6034 -143.81.19.0/24 721 -143.81.20.0/23 721 -143.81.22.0/23 6034 -143.81.24.0/24 721 -143.81.25.0/24 6034 -143.81.26.0/24 721 -143.81.27.0/24 6034 -143.81.28.0/24 721 -143.81.29.0/24 6034 -143.81.30.0/23 6034 -143.81.32.0/22 6034 -143.81.36.0/22 721 -143.81.40.0/23 721 -143.81.42.0/24 721 -143.81.43.0/24 6034 -143.81.44.0/22 721 -143.81.48.0/21 6034 -143.81.56.0/24 6034 -143.81.57.0/24 721 -143.81.58.0/23 6034 -143.81.60.0/24 721 -143.81.61.0/24 6034 -143.81.62.0/24 6034 -143.81.63.0/24 721 -143.81.64.0/21 721 -143.81.72.0/22 6034 -143.81.76.0/22 721 -143.81.80.0/21 721 -143.81.88.0/23 721 -143.81.90.0/24 6034 -143.81.91.0/24 721 -143.81.92.0/22 721 -143.81.96.0/22 721 -143.81.100.0/23 721 -143.81.102.0/24 721 -143.81.103.0/24 6034 -143.81.104.0/24 721 -143.81.105.0/24 6034 -143.81.106.0/24 6034 -143.81.107.0/24 721 -143.81.108.0/22 721 -143.81.112.0/24 6034 -143.81.113.0/24 721 -143.81.114.0/23 721 -143.81.116.0/23 721 -143.81.118.0/24 721 -143.81.119.0/24 1502 -143.81.120.0/21 721 -143.81.128.0/20 721 -143.81.144.0/21 721 -143.81.152.0/22 721 -143.81.156.0/22 6034 -143.81.160.0/19 721 -143.81.192.0/24 6034 -143.81.193.0/24 721 -143.81.194.0/23 721 -143.81.196.0/22 721 -143.81.200.0/23 6034 -143.81.202.0/23 721 -143.81.204.0/22 721 -143.81.208.0/21 721 -143.81.216.0/22 721 -143.81.220.0/24 6034 -143.81.221.0/24 721 -143.81.222.0/23 6034 -143.81.224.0/19 6034 -143.83.0.0/16 5972 -143.84.0.0/23 721 -143.84.2.0/23 1541 -143.84.4.0/24 721 -143.84.5.0/24 1541 -143.84.6.0/24 1528 -143.84.7.0/24 721 -143.84.8.0/24 1498 -143.84.9.0/24 721 -143.84.10.0/23 721 -143.84.12.0/22 721 -143.84.16.0/23 721 -143.84.18.0/24 1541 -143.84.19.0/24 721 -143.84.20.0/23 27064 -143.84.22.0/23 721 -143.84.24.0/24 1541 -143.84.25.0/24 721 -143.84.26.0/23 721 -143.84.28.0/24 721 -143.84.29.0/24 27064 -143.84.30.0/23 721 -143.84.32.0/22 721 -143.84.36.0/23 721 -143.84.38.0/24 1541 -143.84.39.0/24 721 -143.84.40.0/23 721 -143.84.42.0/24 721 -143.84.43.0/24 1541 -143.84.44.0/23 1541 -143.84.46.0/24 1541 -143.84.47.0/24 721 -143.84.48.0/24 1541 -143.84.49.0/24 721 -143.84.50.0/23 721 -143.84.52.0/22 721 -143.84.56.0/22 721 -143.84.60.0/23 721 -143.84.62.0/24 1541 -143.84.63.0/24 721 -143.84.64.0/23 721 -143.84.66.0/24 721 -143.84.67.0/24 1541 -143.84.68.0/24 1541 -143.84.69.0/24 721 -143.84.70.0/24 1479 -143.84.71.0/24 721 -143.84.72.0/24 1541 -143.84.73.0/24 721 -143.84.74.0/24 1504 -143.84.75.0/24 1541 -143.84.76.0/24 721 -143.84.77.0/24 1541 -143.84.78.0/23 1541 -143.84.80.0/22 721 -143.84.84.0/24 1598 -143.84.85.0/24 721 -143.84.86.0/23 721 -143.84.88.0/23 721 -143.84.90.0/24 27064 -143.84.91.0/24 721 -143.84.92.0/22 721 -143.84.96.0/24 1541 -143.84.97.0/24 721 -143.84.98.0/24 721 -143.84.99.0/24 1541 -143.84.100.0/24 721 -143.84.101.0/24 1541 -143.84.102.0/23 721 -143.84.104.0/24 721 -143.84.105.0/24 1541 -143.84.106.0/23 1541 -143.84.108.0/22 721 -143.84.112.0/20 721 -143.84.128.0/22 1494 -143.84.132.0/23 1494 -143.84.134.0/24 1494 -143.84.135.0/24 1541 -143.84.136.0/21 1494 -143.84.144.0/20 1494 -143.84.160.0/23 1541 -143.84.162.0/23 1494 -143.84.164.0/22 1541 -143.84.168.0/22 1541 -143.84.172.0/23 1541 -143.84.174.0/24 1541 -143.84.175.0/24 1494 -143.84.176.0/20 1494 -143.84.192.0/22 1494 -143.84.196.0/24 1541 -143.84.197.0/24 1494 -143.84.198.0/24 1535 -143.84.199.0/24 1494 -143.84.200.0/23 1494 -143.84.202.0/24 1541 -143.84.203.0/24 1494 -143.84.204.0/22 1494 -143.84.208.0/21 1494 -143.84.216.0/24 1494 -143.84.217.0/24 1453 -143.84.218.0/23 1494 -143.84.220.0/22 1494 -143.84.224.0/24 1494 -143.84.225.0/24 1590 -143.84.226.0/23 1494 -143.84.228.0/24 1494 -143.84.229.0/24 1541 -143.84.230.0/23 1494 -143.84.232.0/22 1494 -143.84.236.0/24 1494 -143.84.237.0/24 1541 -143.84.238.0/23 1494 -143.84.240.0/20 1494 -143.85.0.0/18 721 -143.85.64.0/19 721 -143.85.96.0/21 721 -143.85.104.0/24 721 -143.85.105.0/24 1541 -143.85.106.0/23 721 -143.85.108.0/22 721 -143.85.112.0/20 721 -143.85.128.0/18 721 -143.85.192.0/23 721 -143.85.194.0/24 1484 -143.85.195.0/24 721 -143.85.196.0/22 721 -143.85.200.0/21 721 -143.85.208.0/20 721 -143.85.224.0/19 721 -143.86.41.0/24 1501 -143.86.50.0/23 1489 -143.86.53.0/24 1489 -143.86.57.0/24 1489 -143.86.58.0/23 1489 -143.86.60.0/22 1489 -143.86.104.0/22 5953 -143.86.161.0/24 1541 -143.86.164.0/23 1541 -143.86.173.0/24 1541 -143.86.184.0/23 1541 -143.86.186.0/24 1502 -143.86.188.0/23 1541 -143.86.192.0/22 1541 -143.86.197.0/24 1541 -143.86.200.0/23 6006 -143.86.202.0/23 1502 -143.86.217.0/24 1541 -143.86.221.0/24 1541 -143.86.222.0/24 1541 -143.88.0.0/16 18553 -143.89.0.0/16 3363 -143.90.0.0/16 4725 -143.92.0.0/19 7575 -143.92.32.0/23 64050 -143.92.34.0/24 64050 -143.92.48.0/20 64050 -143.92.64.0/23 138341 -143.92.67.0/24 138341 -143.92.68.0/23 138341 -143.92.70.0/24 138341 -143.92.112.0/24 58521 -143.92.114.0/23 58521 -143.92.120.0/22 58521 -143.92.125.0/24 58521 -143.92.126.0/23 58521 -143.93.0.0/17 2857 -143.93.128.0/19 2857 -143.93.160.0/19 8450 -143.93.192.0/19 2857 -143.93.224.0/20 2857 -143.93.240.0/22 2857 -143.93.244.0/22 8450 -143.93.248.0/21 2857 -143.94.0.0/16 2497 -143.95.0.0/17 62729 -143.95.136.0/21 62729 -143.95.144.0/20 62729 -143.95.160.0/23 29873 -143.95.192.0/20 46606 -143.95.224.0/19 62729 -143.96.1.0/24 45172 -143.96.2.0/23 45172 -143.96.4.0/22 45172 -143.96.8.0/21 45172 -143.96.16.0/20 45172 -143.96.32.0/19 45172 -143.96.64.0/18 45172 -143.96.128.0/17 45172 -143.97.0.0/16 42175 -143.100.0.0/20 3479 -143.100.16.0/21 3479 -143.100.24.0/23 3479 -143.100.26.0/24 17107 -143.100.27.0/24 3479 -143.100.28.0/24 17107 -143.100.29.0/24 3479 -143.100.30.0/23 3479 -143.100.32.0/19 17107 -143.100.64.0/18 3479 -143.100.128.0/18 3479 -143.100.192.0/21 3479 -143.100.200.0/22 3479 -143.100.204.0/23 3479 -143.100.206.0/24 3479 -143.100.207.0/24 17107 -143.100.208.0/20 3479 -143.100.224.0/22 3479 -143.100.228.0/23 3479 -143.100.230.0/23 17107 -143.100.232.0/21 3479 -143.100.240.0/20 3479 -143.101.0.0/16 13636 -143.102.0.0/16 13636 -143.104.0.0/16 395139 -143.105.0.0/16 30681 -143.106.0.0/16 53187 -143.107.0.0/16 28571 -143.108.0.0/16 1251 -143.109.0.0/16 2381 -143.110.0.0/18 30376 -143.110.64.0/19 30376 -143.111.0.0/16 11773 -143.112.0.0/16 10599 -143.114.1.0/24 6075 -143.114.3.0/24 6075 -143.114.6.0/23 6075 -143.114.8.0/24 6075 -143.114.12.0/23 6075 -143.114.16.0/23 6075 -143.114.56.0/22 6075 -143.114.63.0/24 6075 -143.114.65.0/24 6075 -143.114.67.0/24 6075 -143.114.70.0/23 6075 -143.114.72.0/24 6075 -143.114.76.0/23 6075 -143.114.79.0/24 6075 -143.114.120.0/22 6075 -143.114.127.0/24 6075 -143.114.160.0/22 6075 -143.115.128.0/23 3455 -143.115.136.0/22 3455 -143.115.152.0/24 3455 -143.115.154.0/23 3455 -143.115.158.0/23 3455 -143.115.160.0/19 3455 -143.115.192.0/19 3455 -143.115.224.0/23 3455 -143.115.232.0/22 3455 -143.115.254.0/23 13540 -143.116.14.0/23 23154 -143.116.48.0/24 23154 -143.116.78.0/23 23154 -143.116.82.0/24 23154 -143.116.84.0/23 23154 -143.116.87.0/24 23154 -143.116.93.0/24 23154 -143.116.94.0/24 23154 -143.116.100.0/24 23154 -143.116.102.0/23 23154 -143.116.104.0/23 23154 -143.116.107.0/24 23154 -143.116.116.0/24 23154 -143.116.186.0/23 23154 -143.116.188.0/23 23154 -143.116.190.0/24 23154 -143.116.222.0/23 23154 -143.116.250.0/24 23154 -143.116.252.0/23 23154 -143.117.0.0/16 786 -143.118.0.0/16 1881 -143.119.96.0/20 59383 -143.119.112.0/24 59383 -143.119.160.0/22 17461 -143.119.194.0/23 56307 -143.119.200.0/22 56307 -143.119.208.0/20 59383 -143.119.224.0/20 59383 -143.119.247.0/24 56307 -143.120.0.0/16 26439 -143.121.0.0/16 1103 -143.122.0.0/16 7792 -143.125.0.0/17 2497 -143.125.128.0/18 2497 -143.125.192.0/20 2497 -143.125.208.0/22 2497 -143.125.212.0/22 2514 -143.125.216.0/21 2514 -143.125.224.0/19 2514 -143.126.100.0/24 60855 -143.126.203.0/24 60855 -143.126.211.0/24 60855 -143.126.221.0/24 60855 -143.126.254.0/24 60855 -143.127.2.0/24 16733 -143.127.10.0/23 16733 -143.127.14.0/23 16733 -143.127.89.0/24 16733 -143.127.93.0/24 16733 -143.127.100.0/24 16733 -143.127.102.0/23 16733 -143.127.119.0/24 16733 -143.127.136.0/24 16733 -143.127.138.0/24 16733 -143.127.145.0/24 35289 -143.127.241.0/24 16733 -143.127.242.0/23 16733 -143.128.0.0/16 2018 -143.129.0.0/16 2611 -143.130.0.0/16 1853 -143.131.0.0/21 36492 -143.131.160.0/23 32261 -143.131.169.0/24 32261 -143.131.170.0/23 32261 -143.131.172.0/24 32261 -143.131.173.0/24 29357 -143.131.180.0/22 32261 -143.131.184.0/21 32261 -143.131.192.0/18 35699 -143.132.0.0/16 32229 -143.133.64.0/18 1491 -143.134.240.0/20 27064 -143.137.0.0/22 61797 -143.137.4.0/22 61636 -143.137.8.0/22 53172 -143.137.16.0/22 264028 -143.137.20.0/22 263736 -143.137.24.0/22 52242 -143.137.28.0/22 61577 -143.137.32.0/22 264025 -143.137.40.0/22 264030 -143.137.44.0/22 264071 -143.137.48.0/22 264063 -143.137.52.0/22 264031 -143.137.56.0/22 264032 -143.137.60.0/22 262569 -143.137.64.0/22 263530 -143.137.68.0/22 262369 -143.137.72.0/22 262481 -143.137.76.0/22 263668 -143.137.80.0/22 264750 -143.137.84.0/22 262847 -143.137.88.0/22 52980 -143.137.92.0/22 264033 -143.137.96.0/22 265693 -143.137.100.0/22 52914 -143.137.104.0/22 264560 -143.137.109.0/24 22908 -143.137.110.0/23 22908 -143.137.112.0/22 262159 -143.137.116.0/22 264052 -143.137.120.0/22 264036 -143.137.124.0/22 264050 -143.137.128.0/22 262633 -143.137.132.0/22 264045 -143.137.136.0/22 264078 -143.137.140.0/22 262512 -143.137.144.0/22 22411 -143.137.148.0/22 264615 -143.137.152.0/22 264042 -143.137.156.0/22 263099 -143.137.160.0/22 264051 -143.137.164.0/22 263740 -143.137.168.0/22 263744 -143.137.176.0/22 263426 -143.137.180.0/22 61834 -143.137.184.0/22 264057 -143.137.188.0/22 264041 -143.137.192.0/22 263222 -143.137.196.0/22 61902 -143.137.200.0/22 264043 -143.137.204.0/22 264058 -143.137.208.0/22 264055 -143.137.212.0/22 264053 -143.137.216.0/22 264046 -143.137.220.0/23 264047 -143.137.222.0/24 264047 -143.137.224.0/22 264054 -143.137.231.0/24 27884 -143.137.232.0/22 263402 -143.137.236.0/22 263649 -143.137.240.0/22 262375 -143.137.244.0/22 264622 -143.137.248.0/22 264069 -143.137.252.0/22 264048 -143.138.0.0/16 747 -143.139.0.0/16 721 -143.140.0.0/21 385 -143.140.8.0/23 385 -143.140.10.0/24 385 -143.140.11.0/24 27064 -143.140.12.0/22 27064 -143.140.16.0/20 27064 -143.140.32.0/19 385 -143.140.64.0/18 27064 -143.140.128.0/19 246 -143.140.160.0/20 386 -143.140.176.0/20 721 -143.140.192.0/18 721 -143.141.0.0/18 721 -143.141.64.0/19 721 -143.141.96.0/21 385 -143.141.104.0/22 385 -143.141.108.0/22 721 -143.141.112.0/21 246 -143.141.120.0/21 721 -143.141.128.0/22 385 -143.141.132.0/23 395 -143.141.134.0/23 721 -143.141.136.0/21 385 -143.141.144.0/20 721 -143.141.160.0/19 385 -143.141.192.0/18 385 -143.142.0.0/18 721 -143.142.64.0/22 721 -143.142.68.0/22 391 -143.142.72.0/22 391 -143.142.76.0/22 721 -143.142.80.0/20 721 -143.142.96.0/21 246 -143.142.104.0/21 721 -143.142.112.0/20 721 -143.142.128.0/17 721 -143.143.0.0/16 721 -143.144.0.0/15 385 -143.146.0.0/18 383 -143.146.64.0/18 246 -143.146.128.0/18 721 -143.146.192.0/19 399 -143.146.224.0/19 386 -143.147.0.0/19 721 -143.147.32.0/20 383 -143.147.48.0/20 246 -143.147.64.0/20 721 -143.147.80.0/21 399 -143.147.88.0/21 386 -143.147.96.0/19 721 -143.147.128.0/17 721 -143.148.0.0/14 721 -143.158.0.0/16 385 -143.159.0.0/16 6871 -143.160.0.0/16 8094 -143.161.0.0/18 206228 -143.161.64.0/21 206228 -143.161.72.0/23 206228 -143.161.74.0/24 1759 -143.161.75.0/24 206228 -143.161.76.0/22 206228 -143.161.80.0/21 206228 -143.161.88.0/23 206228 -143.161.90.0/24 206228 -143.161.91.0/24 1759 -143.161.92.0/22 1759 -143.161.96.0/22 1759 -143.161.100.0/23 1759 -143.161.102.0/23 206228 -143.161.104.0/21 206228 -143.161.112.0/20 206228 -143.161.128.0/18 206228 -143.161.192.0/19 206228 -143.161.224.0/20 206228 -143.161.240.0/22 206228 -143.161.244.0/23 206228 -143.161.246.0/24 702 -143.161.247.0/24 206228 -143.161.248.0/21 206228 -143.163.2.0/23 206618 -143.163.4.0/22 206618 -143.163.8.0/21 206618 -143.163.16.0/23 206618 -143.163.64.0/23 9136 -143.163.128.0/22 206618 -143.164.0.0/16 12331 -143.165.0.0/18 2923 -143.165.80.0/22 2923 -143.165.90.0/23 2923 -143.165.92.0/24 2923 -143.165.126.0/24 2923 -143.165.128.0/19 2923 -143.165.161.0/24 2923 -143.165.190.0/23 2923 -143.165.192.0/24 2923 -143.165.224.0/19 2923 -143.166.0.0/16 3614 -143.167.0.0/16 786 -143.169.0.0/16 2611 -143.170.0.0/16 16504 -143.174.60.0/23 17477 -143.174.192.0/20 17477 -143.176.0.0/14 13127 -143.180.0.0/16 8803 -143.183.0.0/16 4983 -143.186.13.0/24 3549 -143.186.24.0/24 3680 -143.186.44.0/24 3680 -143.186.119.0/24 3680 -143.186.120.0/23 3680 -143.186.125.0/24 3680 -143.186.213.0/24 3680 -143.187.0.0/16 7905 -143.188.0.0/16 17477 -143.189.0.0/16 2527 -143.192.0.0/21 7448 -143.192.8.0/23 7448 -143.192.22.0/24 7448 -143.192.24.0/24 7448 -143.192.40.0/24 7448 -143.192.42.0/24 7448 -143.192.44.0/24 7448 -143.192.46.0/24 7448 -143.192.48.0/24 7448 -143.192.50.0/24 7448 -143.192.52.0/24 7448 -143.192.54.0/24 7448 -143.192.64.0/24 7448 -143.192.66.0/24 7448 -143.192.68.0/24 7448 -143.192.70.0/23 7448 -143.192.72.0/24 7448 -143.192.86.0/24 7448 -143.192.96.0/21 131310 -143.192.111.0/24 131310 -143.194.16.0/21 1541 -143.194.64.0/19 1541 -143.194.98.0/23 1541 -143.194.100.0/23 1541 -143.194.103.0/24 1541 -143.194.104.0/21 1541 -143.194.112.0/20 1541 -143.194.128.0/22 1501 -143.194.136.0/23 1501 -143.194.144.0/22 1541 -143.194.154.0/24 1541 -143.194.155.0/24 1501 -143.194.156.0/24 1541 -143.194.157.0/24 1501 -143.194.158.0/23 1541 -143.194.160.0/19 1541 -143.194.240.0/21 1541 -143.194.248.0/22 1541 -143.194.252.0/23 1541 -143.194.254.0/23 1501 -143.195.0.0/17 397112 -143.195.128.0/18 397112 -143.195.192.0/19 397112 -143.195.224.0/19 393451 -143.196.0.0/23 15557 -143.196.16.0/23 15557 -143.196.18.0/24 15557 -143.196.20.0/23 15557 -143.196.22.0/23 60855 -143.196.32.0/24 15557 -143.196.35.0/24 15557 -143.196.64.0/19 3215 -143.196.96.0/20 3215 -143.196.112.0/21 3215 -143.196.120.0/22 3215 -143.196.124.0/22 15557 -143.196.130.0/24 15557 -143.196.143.0/24 15557 -143.196.144.0/24 15557 -143.196.146.0/23 60855 -143.196.148.0/24 60855 -143.196.158.0/23 15557 -143.196.160.0/22 15557 -143.196.164.0/24 15557 -143.196.172.0/24 60855 -143.196.175.0/24 60855 -143.196.176.0/24 60855 -143.196.187.0/24 60855 -143.196.191.0/24 3215 -143.196.192.0/24 60855 -143.196.199.0/24 60855 -143.196.200.0/24 60855 -143.196.207.0/24 60855 -143.196.208.0/24 60855 -143.196.215.0/24 60855 -143.196.224.0/24 60855 -143.196.231.0/24 60855 -143.196.250.0/24 15557 -143.196.251.0/24 60855 -143.196.252.0/23 15557 -143.196.255.0/24 60855 -143.197.0.0/16 32480 -143.198.0.0/16 2828 -143.199.0.0/16 21680 -143.200.0.0/16 3128 -143.202.0.0/22 264065 -143.202.4.0/22 264049 -143.202.8.0/22 264059 -143.202.12.0/22 267776 -143.202.16.0/22 20207 -143.202.20.0/22 264608 -143.202.24.0/22 27792 -143.202.28.0/22 262427 -143.202.32.0/22 52403 -143.202.36.0/22 264056 -143.202.40.0/22 264406 -143.202.44.0/22 264498 -143.202.48.0/22 262546 -143.202.52.0/22 61754 -143.202.63.0/24 264060 -143.202.64.0/22 264062 -143.202.68.0/22 262819 -143.202.72.0/22 53081 -143.202.76.0/23 265575 -143.202.78.0/24 265575 -143.202.79.0/24 32098 -143.202.80.0/22 264067 -143.202.84.0/22 264068 -143.202.88.0/22 7049 -143.202.92.0/22 52838 -143.202.96.0/22 264619 -143.202.100.0/22 263152 -143.202.104.0/22 262784 -143.202.108.0/22 262802 -143.202.112.0/22 263604 -143.202.116.0/22 263587 -143.202.120.0/22 263543 -143.202.124.0/22 52568 -143.202.128.0/22 262324 -143.202.132.0/22 53167 -143.202.136.0/22 263196 -143.202.140.0/22 61483 -143.202.144.0/22 64099 -143.202.148.0/22 262669 -143.202.152.0/22 39782 -143.202.156.0/22 11172 -143.202.160.0/22 52423 -143.202.164.0/22 265123 -143.202.168.0/22 263297 -143.202.172.0/22 52974 -143.202.176.0/22 52566 -143.202.180.0/22 264070 -143.202.184.0/22 264076 -143.202.188.0/22 263085 -143.202.192.0/22 61515 -143.202.196.0/22 27932 -143.202.200.0/22 61514 -143.202.204.0/22 19373 -143.202.208.0/22 264631 -143.202.212.0/22 52851 -143.202.216.0/22 264074 -143.202.220.0/22 52544 -143.202.224.0/22 262346 -143.202.228.0/22 264589 -143.202.232.0/22 264082 -143.202.236.0/22 263627 -143.202.240.0/22 262293 -143.202.244.0/22 264073 -143.202.248.0/22 264084 -143.202.252.0/22 264609 -143.204.2.0/23 16509 -143.204.4.0/22 16509 -143.204.8.0/21 16509 -143.204.16.0/21 16509 -143.204.25.0/24 16509 -143.204.26.0/23 16509 -143.204.28.0/22 16509 -143.204.32.0/21 16509 -143.204.41.0/24 16509 -143.204.42.0/23 16509 -143.204.44.0/22 16509 -143.204.48.0/21 16509 -143.204.57.0/24 16509 -143.204.58.0/23 16509 -143.204.60.0/22 16509 -143.204.64.0/21 16509 -143.204.73.0/24 16509 -143.204.74.0/23 16509 -143.204.76.0/22 16509 -143.204.80.0/21 16509 -143.204.89.0/24 16509 -143.204.90.0/23 16509 -143.204.92.0/22 16509 -143.204.96.0/21 16509 -143.204.105.0/24 16509 -143.204.106.0/23 16509 -143.204.108.0/22 16509 -143.204.112.0/21 16509 -143.204.121.0/24 16509 -143.204.122.0/23 16509 -143.204.124.0/22 16509 -143.204.128.0/21 16509 -143.204.137.0/24 16509 -143.204.138.0/23 16509 -143.204.140.0/22 16509 -143.204.144.0/21 16509 -143.204.153.0/24 16509 -143.204.154.0/23 16509 -143.204.156.0/22 16509 -143.204.160.0/21 16509 -143.204.169.0/24 16509 -143.204.170.0/23 16509 -143.204.172.0/22 16509 -143.204.176.0/21 16509 -143.204.185.0/24 16509 -143.204.186.0/23 16509 -143.204.188.0/22 16509 -143.204.192.0/21 16509 -143.204.201.0/24 16509 -143.204.202.0/23 16509 -143.204.204.0/22 16509 -143.204.208.0/21 16509 -143.204.217.0/24 16509 -143.204.218.0/23 16509 -143.204.220.0/22 16509 -143.204.224.0/21 16509 -143.204.233.0/24 16509 -143.204.234.0/23 16509 -143.204.236.0/22 16509 -143.204.240.0/21 16509 -143.204.249.0/24 16509 -143.204.250.0/23 16509 -143.204.252.0/22 16509 -143.205.0.0/16 1111 -143.206.0.0/16 40503 -143.207.0.0/16 19106 -143.208.1.0/24 264356 -143.208.2.0/23 264356 -143.208.4.0/22 264088 -143.208.8.0/23 264077 -143.208.10.0/24 264077 -143.208.11.0/24 29802 -143.208.12.0/22 264085 -143.208.16.0/22 27884 -143.208.20.0/22 264075 -143.208.24.0/22 264086 -143.208.28.0/22 264079 -143.208.32.0/22 264089 -143.208.36.0/22 264625 -143.208.40.0/22 28130 -143.208.44.0/22 263809 -143.208.52.0/22 52439 -143.208.56.0/22 22869 -143.208.60.0/22 28265 -143.208.64.0/22 32034 -143.208.68.0/22 53094 -143.208.72.0/22 265138 -143.208.76.0/22 262907 -143.208.80.0/22 265124 -143.208.84.0/22 265125 -143.208.88.0/22 262651 -143.208.92.0/22 265122 -143.208.96.0/22 28192 -143.208.100.0/22 264465 -143.208.104.0/22 262960 -143.208.108.0/22 265127 -143.208.112.0/22 265128 -143.208.116.0/22 265121 -143.208.120.0/22 61856 -143.208.124.0/22 265126 -143.208.128.0/22 264091 -143.208.132.0/22 27843 -143.208.136.0/22 61776 -143.208.140.0/22 263671 -143.208.144.0/22 265129 -143.208.148.0/22 264092 -143.208.152.0/22 265130 -143.208.156.0/22 27720 -143.208.160.0/22 53046 -143.208.164.0/22 23520 -143.208.168.0/22 262145 -143.208.172.0/22 264090 -143.208.176.0/22 265117 -143.208.180.0/22 264639 -143.208.184.0/22 265118 -143.208.192.0/22 262729 -143.208.196.0/22 262980 -143.208.200.0/22 265150 -143.208.204.0/22 262422 -143.208.208.0/22 262342 -143.208.212.0/22 263565 -143.208.216.0/22 61578 -143.208.220.0/22 265131 -143.208.224.0/22 265136 -143.208.228.0/22 263004 -143.208.232.0/22 52544 -143.208.236.0/22 262865 -143.208.240.0/22 61750 -143.208.244.0/22 265137 -143.208.248.0/22 265133 -143.208.252.0/22 265132 -143.209.0.0/16 8983 -143.210.0.0/16 786 -143.212.0.0/15 1602 -143.214.0.0/16 1602 -143.215.0.0/16 2637 -143.216.0.0/16 4739 -143.219.0.0/16 1224 -143.220.0.0/21 209 -143.220.8.0/22 209 -143.220.12.0/24 209 -143.220.13.0/24 393847 -143.220.14.0/24 209 -143.220.15.0/24 393847 -143.220.16.0/24 209 -143.220.17.0/24 393847 -143.220.18.0/24 393847 -143.220.19.0/24 209 -143.220.20.0/22 209 -143.220.24.0/21 209 -143.220.32.0/23 393847 -143.220.254.0/23 393847 -143.223.0.0/24 33371 -143.223.5.0/24 33371 -143.223.6.0/24 10753 -143.223.8.0/24 33371 -143.223.9.0/24 3549 -143.223.12.0/24 33371 -143.223.75.0/24 10103 -143.223.80.0/23 9255 -143.223.83.0/24 1221 -143.223.87.0/24 1221 -143.223.90.0/24 9255 -143.223.135.0/24 10753 -143.223.162.0/24 33371 -143.223.171.0/24 33371 -143.223.173.0/24 209 -143.223.174.0/24 23005 -143.223.175.0/24 33371 -143.223.176.0/24 33371 -143.223.177.0/24 3356 -143.223.248.0/23 397010 -143.224.0.0/16 2036 -143.225.0.0/16 137 -143.226.0.0/16 393296 -143.228.0.0/16 1999 -143.229.0.0/16 36427 -143.230.147.0/24 386 -143.230.200.0/24 721 -143.231.0.0/16 1999 -143.232.0.0/16 270 -143.233.0.0/18 2546 -143.233.64.0/22 2546 -143.233.68.0/24 5408 -143.233.69.0/24 2546 -143.233.70.0/23 2546 -143.233.72.0/21 2546 -143.233.80.0/20 2546 -143.233.96.0/19 2546 -143.233.128.0/19 2546 -143.233.160.0/20 2546 -143.233.176.0/22 2546 -143.233.180.0/23 2546 -143.233.182.0/23 5408 -143.233.184.0/22 5408 -143.233.188.0/23 5408 -143.233.190.0/23 2546 -143.233.192.0/21 2546 -143.233.200.0/22 2546 -143.233.204.0/24 5408 -143.233.205.0/24 2546 -143.233.206.0/23 2546 -143.233.208.0/20 2546 -143.233.224.0/19 2546 -143.234.0.0/16 786 -143.235.0.0/16 3128 -143.236.0.0/16 3128 -143.237.0.0/16 199902 -143.238.0.0/16 1221 -143.239.0.0/16 1213 -143.240.0.0/16 174 -143.244.65.0/24 35852 -143.244.70.0/23 35852 -143.244.72.0/24 35852 -143.244.76.0/23 35852 -143.244.78.0/24 35852 -143.244.96.0/19 62642 -143.245.0.0/16 21079 -143.246.0.0/16 600 -143.248.0.0/16 1781 -143.249.18.0/24 1516 -143.249.24.0/23 1516 -143.249.28.0/22 1516 -143.249.123.0/24 1541 -143.250.0.0/16 27064 -143.252.0.0/16 34846 -143.254.0.0/16 3734 -143.255.0.0/22 265140 -143.255.4.0/22 264117 -143.255.8.0/22 265134 -143.255.12.0/22 265141 -143.255.16.0/22 52916 -143.255.20.0/22 265135 -143.255.24.0/23 264636 -143.255.28.0/22 264644 -143.255.32.0/22 27923 -143.255.36.0/22 264652 -143.255.40.0/22 265517 -143.255.44.0/22 263623 -143.255.48.0/22 28652 -143.255.52.0/22 265139 -143.255.56.0/22 33182 -143.255.60.0/22 263037 -143.255.64.0/22 265146 -143.255.68.0/22 265142 -143.255.72.0/22 262460 -143.255.76.0/22 61588 -143.255.80.0/22 262406 -143.255.85.0/24 269827 -143.255.86.0/23 269827 -143.255.88.0/22 265164 -143.255.92.0/22 265143 -143.255.96.0/22 52977 -143.255.100.0/22 262619 -143.255.104.0/22 265675 -143.255.108.0/22 265144 -143.255.112.0/22 28331 -143.255.116.0/22 52722 -143.255.120.0/22 61948 -143.255.124.0/22 262343 -143.255.128.0/22 265147 -143.255.132.0/22 265152 -143.255.136.0/22 61509 -143.255.140.0/22 61512 -143.255.144.0/22 265148 -143.255.148.0/22 265155 -143.255.152.0/22 264643 -143.255.160.0/22 262318 -143.255.164.0/22 263487 -143.255.168.0/22 262376 -143.255.172.0/22 265153 -143.255.184.0/22 262587 -143.255.188.0/22 265151 -143.255.192.0/22 264375 -143.255.196.0/22 263558 -143.255.200.0/22 52863 -143.255.204.0/22 264496 -143.255.208.0/22 52741 -143.255.212.0/22 265161 -143.255.216.0/22 52935 -143.255.220.0/22 28343 -143.255.224.0/22 28649 -143.255.228.0/22 265162 -143.255.232.0/22 61743 -143.255.236.0/22 265163 -143.255.240.0/22 265157 -143.255.244.0/22 262794 -143.255.248.0/22 61468 -143.255.252.0/22 263405 -144.0.0.0/22 58541 -144.0.4.0/22 4134 -144.0.8.0/21 4134 -144.0.16.0/20 4134 -144.0.32.0/19 4134 -144.0.64.0/18 4134 -144.0.128.0/17 4134 -144.2.0.0/22 14413 -144.2.4.0/24 14413 -144.2.7.0/24 14413 -144.2.12.0/24 14413 -144.2.14.0/24 14413 -144.2.22.0/24 13443 -144.2.32.0/19 16276 -144.2.64.0/18 57370 -144.2.128.0/24 8444 -144.2.132.0/23 8444 -144.2.136.0/24 8444 -144.2.140.0/24 8444 -144.2.143.0/24 8444 -144.2.144.0/23 205994 -144.2.156.0/24 205994 -144.2.159.0/24 205994 -144.2.160.0/22 203183 -144.2.164.0/22 199478 -144.2.192.0/22 14413 -144.2.223.0/24 202745 -144.2.225.0/24 13443 -144.2.229.0/24 13443 -144.2.232.0/23 13443 -144.2.236.0/23 13443 -144.2.240.0/21 199256 -144.2.248.0/22 205898 -144.2.252.0/22 33915 -144.3.0.0/16 668 -144.4.0.0/16 1759 -144.5.59.0/24 7862 -144.5.60.0/23 7862 -144.5.224.0/21 7862 -144.6.0.0/16 7573 -144.7.0.0/17 4134 -144.9.32.0/20 23098 -144.9.48.0/20 29982 -144.9.64.0/21 29982 -144.9.148.0/24 23098 -144.9.232.0/24 29982 -144.9.233.0/24 23098 -144.12.0.0/16 4134 -144.13.0.0/16 3128 -144.15.0.0/16 13684 -144.16.2.0/23 2697 -144.16.16.0/24 2697 -144.16.96.0/22 2697 -144.16.100.0/24 2697 -144.16.102.0/23 2697 -144.16.104.0/21 2697 -144.16.112.0/24 55824 -144.16.113.0/24 2697 -144.16.114.0/23 2697 -144.16.116.0/22 2697 -144.16.120.0/24 2697 -144.16.122.0/23 2697 -144.16.124.0/22 2697 -144.16.128.0/21 2697 -144.16.136.0/24 2697 -144.16.140.0/22 2697 -144.17.0.0/16 210 -144.21.0.0/24 7160 -144.21.1.0/24 43894 -144.21.2.0/23 43894 -144.21.4.0/24 43894 -144.21.5.0/24 7160 -144.21.6.0/23 43894 -144.21.8.0/21 43894 -144.21.16.0/20 43894 -144.21.32.0/19 43894 -144.21.64.0/18 43894 -144.21.128.0/17 43894 -144.22.0.0/22 7160 -144.22.4.0/23 7160 -144.22.6.0/24 64102 -144.22.7.0/24 7160 -144.22.8.0/21 7160 -144.22.16.0/20 7160 -144.22.32.0/19 7160 -144.22.64.0/18 7160 -144.24.0.0/16 7160 -144.25.0.0/18 31898 -144.25.64.0/19 31898 -144.25.96.0/21 31898 -144.26.0.0/16 29848 -144.27.0.0/16 205664 -144.29.0.0/16 26258 -144.30.0.0/16 13809 -144.32.0.0/16 786 -144.34.0.0/20 555 -144.34.16.0/22 555 -144.34.20.0/24 100 -144.34.21.0/24 555 -144.34.22.0/23 555 -144.34.24.0/21 555 -144.34.32.0/20 555 -144.34.48.0/21 62811 -144.34.56.0/22 555 -144.34.60.0/23 555 -144.34.62.0/23 36583 -144.34.64.0/18 7349 -144.34.128.0/17 25820 -144.35.0.0/16 18800 -144.36.1.0/24 21433 -144.36.6.0/24 3573 -144.36.14.0/24 3573 -144.36.18.0/24 3573 -144.36.24.0/22 21433 -144.36.28.0/23 21433 -144.36.31.0/24 21433 -144.36.32.0/23 21433 -144.36.35.0/24 21433 -144.36.36.0/24 21433 -144.36.40.0/23 21433 -144.36.46.0/24 21433 -144.36.48.0/23 21433 -144.36.51.0/24 21433 -144.36.54.0/24 21433 -144.36.68.0/23 3573 -144.36.70.0/23 21433 -144.36.72.0/23 21433 -144.36.74.0/23 3573 -144.36.76.0/23 21433 -144.36.90.0/24 21433 -144.36.103.0/24 3573 -144.36.105.0/24 3573 -144.36.110.0/23 21433 -144.36.112.0/24 21433 -144.36.114.0/23 21433 -144.36.118.0/23 21433 -144.36.120.0/23 21433 -144.36.124.0/23 3573 -144.36.128.0/21 21433 -144.36.136.0/22 21433 -144.36.140.0/23 21433 -144.36.142.0/23 3573 -144.36.144.0/23 3573 -144.36.146.0/23 9929 -144.36.148.0/23 21433 -144.36.150.0/24 3573 -144.36.151.0/24 21433 -144.36.152.0/23 21433 -144.36.156.0/23 21433 -144.36.160.0/23 21433 -144.36.167.0/24 21433 -144.36.168.0/22 21433 -144.36.172.0/24 21433 -144.36.174.0/23 21433 -144.36.176.0/23 3573 -144.36.178.0/24 21433 -144.36.179.0/24 3573 -144.36.180.0/23 3573 -144.36.182.0/23 21433 -144.36.184.0/23 21433 -144.36.186.0/23 3573 -144.36.188.0/23 21433 -144.36.194.0/23 21433 -144.36.196.0/24 21433 -144.36.200.0/23 21433 -144.36.202.0/24 21433 -144.36.206.0/23 21433 -144.36.208.0/23 3573 -144.36.210.0/23 21433 -144.36.212.0/22 21433 -144.36.216.0/22 3573 -144.36.220.0/22 21433 -144.36.224.0/21 21433 -144.36.232.0/22 21433 -144.36.237.0/24 21433 -144.36.238.0/23 21433 -144.36.241.0/24 21433 -144.36.244.0/23 21433 -144.36.248.0/21 21433 -144.37.0.0/16 2152 -144.38.0.0/15 210 -144.41.0.0/16 553 -144.42.0.0/16 27402 -144.43.0.0/17 48037 -144.43.128.0/18 48037 -144.43.192.0/19 48037 -144.43.224.0/20 48037 -144.43.240.0/21 62003 -144.43.248.0/22 48037 -144.43.252.0/22 62003 -144.44.0.0/16 21286 -144.45.0.0/16 1761 -144.46.104.0/21 19428 -144.46.112.0/21 19428 -144.46.120.0/22 19428 -144.46.124.0/23 9255 -144.46.231.0/24 19428 -144.46.252.0/22 19428 -144.48.0.0/22 135311 -144.48.4.0/22 18254 -144.48.8.0/23 55933 -144.48.10.0/24 134176 -144.48.11.0/24 134196 -144.48.12.0/24 139398 -144.48.13.0/24 38496 -144.48.14.0/23 38496 -144.48.16.0/22 17473 -144.48.20.0/22 18403 -144.48.24.0/22 45903 -144.48.28.0/22 135345 -144.48.32.0/22 134823 -144.48.36.0/22 136557 -144.48.44.0/22 9765 -144.48.48.0/22 132774 -144.48.56.0/22 134548 -144.48.60.0/23 62240 -144.48.62.0/24 62240 -144.48.63.0/24 136620 -144.48.64.0/22 4837 -144.48.68.0/22 138607 -144.48.72.0/22 133982 -144.48.76.0/22 58640 -144.48.80.0/23 13830 -144.48.82.0/24 33387 -144.48.83.0/24 8100 -144.48.84.0/22 4864 -144.48.92.0/22 9946 -144.48.96.0/22 203098 -144.48.104.0/22 63018 -144.48.108.0/22 58689 -144.48.112.0/22 135339 -144.48.116.0/22 137584 -144.48.121.0/24 9541 -144.48.122.0/23 9541 -144.48.124.0/22 132839 -144.48.128.0/21 9541 -144.48.136.0/24 55769 -144.48.140.0/22 135343 -144.48.148.0/23 58717 -144.48.150.0/23 137453 -144.48.152.0/22 135351 -144.48.160.0/23 135353 -144.48.162.0/24 135353 -144.48.164.0/22 135352 -144.48.168.0/22 133237 -144.48.176.0/22 134254 -144.48.188.0/22 138607 -144.48.192.0/21 24000 -144.48.200.0/22 58757 -144.48.208.0/22 63598 -144.48.212.0/22 23650 -144.48.216.0/22 55649 -144.48.220.0/22 135357 -144.48.224.0/22 23860 -144.48.228.0/22 55769 -144.48.232.0/22 133736 -144.48.236.0/22 24000 -144.48.240.0/22 55933 -144.48.249.0/24 132933 -144.48.250.0/23 136682 -144.48.252.0/22 135363 -144.50.0.0/16 600 -144.51.0.0/17 2577 -144.51.240.0/21 27064 -144.52.0.0/16 4134 -144.53.0.0/16 9983 -144.55.66.0/23 138681 -144.55.68.0/22 138681 -144.55.134.0/23 138681 -144.55.136.0/22 138681 -144.57.0.0/19 39052 -144.57.32.0/19 397695 -144.57.64.0/18 39052 -144.57.128.0/17 39052 -144.58.0.0/16 2003 -144.59.0.0/16 747 -144.60.0.0/21 25993 -144.60.9.0/24 25993 -144.60.10.0/23 25993 -144.60.12.0/22 25993 -144.60.16.0/20 25993 -144.60.32.0/19 25993 -144.60.64.0/19 25993 -144.60.96.0/21 25993 -144.60.104.0/23 25993 -144.60.112.0/22 25993 -144.60.116.0/23 25993 -144.60.168.0/21 25993 -144.60.176.0/21 25993 -144.60.200.0/22 25993 -144.62.0.0/16 3410 -144.63.0.0/16 33976 -144.64.0.0/16 3243 -144.65.0.0/16 1853 -144.66.99.0/24 4771 -144.66.100.0/23 4771 -144.66.102.0/24 4771 -144.66.115.0/24 4771 -144.66.119.0/24 4771 -144.66.244.0/24 4771 -144.69.0.0/17 36351 -144.71.0.0/16 2768 -144.72.123.0/24 30383 -144.72.124.0/23 30383 -144.73.0.0/23 14349 -144.73.70.0/23 14349 -144.73.78.0/23 14349 -144.73.92.0/22 14349 -144.73.96.0/23 14349 -144.73.200.0/23 14349 -144.73.204.0/23 14349 -144.73.218.0/23 14349 -144.73.220.0/22 14349 -144.73.228.0/23 14349 -144.73.238.0/23 14349 -144.73.244.0/23 14349 -144.75.0.0/16 14169 -144.76.0.0/16 24940 -144.78.64.0/19 3549 -144.78.192.0/22 40729 -144.80.0.0/16 62989 -144.81.10.0/23 16681 -144.81.12.0/24 16681 -144.81.14.0/23 16681 -144.81.28.0/22 16681 -144.81.32.0/20 16681 -144.81.50.0/23 16681 -144.81.53.0/24 16681 -144.81.54.0/24 16681 -144.81.81.0/24 16681 -144.81.82.0/24 16681 -144.81.84.0/22 16681 -144.81.88.0/21 16681 -144.81.97.0/24 16681 -144.81.98.0/24 16681 -144.81.111.0/24 16681 -144.81.116.0/24 7381 -144.81.127.0/24 16681 -144.81.163.0/24 16681 -144.81.164.0/23 16681 -144.81.177.0/24 16681 -144.81.191.0/24 16681 -144.81.192.0/24 16681 -144.81.224.0/24 16681 -144.81.247.0/24 16681 -144.81.248.0/23 16681 -144.81.250.0/24 16681 -144.81.252.0/23 16681 -144.82.0.0/16 786 -144.83.0.0/16 784 -144.84.0.0/16 49278 -144.85.0.0/16 12350 -144.86.128.0/18 26803 -144.86.192.0/19 26803 -144.86.226.0/24 26803 -144.86.239.0/24 7029 -144.86.245.0/24 265721 -144.86.246.0/23 36204 -144.86.248.0/23 36204 -144.86.250.0/24 36204 -144.86.251.0/24 30640 -144.86.254.0/23 14701 -144.87.0.0/19 2856 -144.87.128.0/17 2856 -144.89.0.0/16 2381 -144.90.0.0/16 6652 -144.91.0.0/18 54654 -144.91.64.0/18 51167 -144.91.128.0/19 131952 -144.91.160.0/20 131952 -144.91.176.0/20 53828 -144.91.192.0/18 53828 -144.92.0.0/16 59 -144.94.0.0/20 32023 -144.94.32.0/20 40567 -144.95.32.0/22 31584 -144.95.64.0/19 51964 -144.96.0.0/16 3634 -144.97.0.0/16 7474 -144.98.0.0/16 2856 -144.99.0.0/17 1476 -144.99.128.0/18 1476 -144.99.192.0/20 1476 -144.99.208.0/21 1476 -144.99.216.0/23 1541 -144.99.218.0/23 1476 -144.99.220.0/22 1476 -144.99.224.0/19 1476 -144.100.0.0/20 721 -144.100.16.0/22 721 -144.100.20.0/24 721 -144.100.21.0/24 27064 -144.100.22.0/23 721 -144.100.24.0/21 721 -144.100.32.0/19 721 -144.100.64.0/22 721 -144.100.68.0/23 721 -144.100.70.0/23 27064 -144.100.72.0/21 27064 -144.100.80.0/20 27064 -144.100.96.0/24 27064 -144.100.97.0/24 721 -144.100.98.0/23 721 -144.100.100.0/22 27064 -144.100.104.0/22 27064 -144.100.108.0/23 27064 -144.100.110.0/23 721 -144.100.112.0/20 721 -144.100.128.0/22 721 -144.100.132.0/23 721 -144.100.134.0/24 721 -144.100.135.0/24 27064 -144.100.136.0/21 721 -144.100.144.0/22 721 -144.100.148.0/23 721 -144.100.150.0/24 27064 -144.100.151.0/24 721 -144.100.152.0/21 721 -144.100.160.0/20 27064 -144.100.176.0/22 721 -144.100.180.0/24 27064 -144.100.181.0/24 721 -144.100.182.0/24 721 -144.100.183.0/24 27064 -144.100.184.0/22 27064 -144.100.188.0/22 721 -144.100.192.0/18 721 -144.101.0.0/21 721 -144.101.8.0/22 1494 -144.101.12.0/22 721 -144.101.16.0/20 721 -144.101.32.0/19 721 -144.101.64.0/19 721 -144.101.96.0/21 721 -144.101.104.0/22 721 -144.101.108.0/23 721 -144.101.110.0/24 27064 -144.101.111.0/24 721 -144.101.112.0/23 721 -144.101.114.0/24 721 -144.101.115.0/24 27064 -144.101.116.0/22 721 -144.101.120.0/23 367 -144.101.122.0/24 367 -144.101.123.0/24 721 -144.101.124.0/22 721 -144.101.128.0/21 721 -144.101.136.0/22 721 -144.101.140.0/24 27064 -144.101.141.0/24 1482 -144.101.142.0/23 721 -144.101.144.0/22 721 -144.101.148.0/23 721 -144.101.150.0/24 721 -144.101.151.0/24 1482 -144.101.152.0/21 1482 -144.101.160.0/24 721 -144.101.161.0/24 1479 -144.101.162.0/24 1479 -144.101.163.0/24 721 -144.101.164.0/22 721 -144.101.168.0/23 721 -144.101.170.0/23 27064 -144.101.172.0/22 27064 -144.101.176.0/22 27064 -144.101.180.0/22 721 -144.101.184.0/21 721 -144.101.192.0/21 721 -144.101.200.0/24 721 -144.101.201.0/24 27064 -144.101.202.0/23 721 -144.101.204.0/22 721 -144.101.208.0/20 721 -144.101.224.0/19 721 -144.102.0.0/20 721 -144.102.16.0/23 721 -144.102.18.0/24 721 -144.102.19.0/24 531 -144.102.20.0/24 721 -144.102.21.0/24 531 -144.102.22.0/23 721 -144.102.24.0/21 721 -144.102.32.0/19 721 -144.102.64.0/19 721 -144.102.96.0/22 721 -144.102.100.0/23 721 -144.102.102.0/24 27065 -144.102.103.0/24 721 -144.102.104.0/21 721 -144.102.112.0/21 721 -144.102.120.0/24 531 -144.102.121.0/24 721 -144.102.122.0/23 721 -144.102.124.0/24 721 -144.102.125.0/24 531 -144.102.126.0/23 721 -144.102.128.0/17 721 -144.103.0.0/16 721 -144.104.0.0/20 721 -144.104.16.0/21 747 -144.104.24.0/21 1541 -144.104.32.0/19 721 -144.104.64.0/21 721 -144.104.72.0/23 721 -144.104.74.0/23 5953 -144.104.76.0/22 5953 -144.104.80.0/20 721 -144.104.96.0/22 721 -144.104.100.0/23 721 -144.104.102.0/23 1501 -144.104.104.0/22 721 -144.104.108.0/24 721 -144.104.109.0/24 1501 -144.104.110.0/23 721 -144.104.112.0/22 721 -144.104.116.0/24 1489 -144.104.117.0/24 721 -144.104.118.0/23 721 -144.104.120.0/21 721 -144.104.128.0/19 721 -144.104.160.0/20 721 -144.104.176.0/22 721 -144.104.180.0/23 5953 -144.104.182.0/23 721 -144.104.184.0/21 721 -144.104.192.0/21 1600 -144.104.200.0/22 1516 -144.104.204.0/23 1516 -144.104.206.0/23 721 -144.104.208.0/20 721 -144.104.224.0/20 721 -144.104.240.0/22 721 -144.104.244.0/24 1541 -144.104.245.0/24 721 -144.104.246.0/23 721 -144.104.248.0/21 747 -144.105.0.0/19 721 -144.105.32.0/20 721 -144.105.48.0/22 1541 -144.105.52.0/23 1541 -144.105.54.0/23 721 -144.105.56.0/21 721 -144.105.64.0/22 721 -144.105.68.0/24 1600 -144.105.69.0/24 721 -144.105.70.0/23 721 -144.105.72.0/21 721 -144.105.80.0/20 721 -144.105.96.0/20 721 -144.105.112.0/22 721 -144.105.116.0/23 721 -144.105.118.0/23 1541 -144.105.120.0/21 721 -144.105.128.0/20 721 -144.105.144.0/22 721 -144.105.148.0/24 721 -144.105.149.0/24 1502 -144.105.150.0/23 721 -144.105.152.0/21 721 -144.105.160.0/20 721 -144.105.176.0/20 5953 -144.105.192.0/21 721 -144.105.200.0/23 1502 -144.105.202.0/23 721 -144.105.204.0/22 721 -144.105.208.0/20 721 -144.105.224.0/20 721 -144.105.240.0/22 721 -144.105.244.0/23 6034 -144.105.246.0/23 721 -144.105.248.0/24 721 -144.105.249.0/24 1555 -144.105.250.0/23 721 -144.105.252.0/22 721 -144.106.0.0/22 1479 -144.106.4.0/23 1479 -144.106.6.0/23 721 -144.106.8.0/21 721 -144.106.16.0/20 721 -144.106.32.0/19 721 -144.106.64.0/21 721 -144.106.72.0/22 721 -144.106.76.0/23 721 -144.106.78.0/24 721 -144.106.79.0/24 27064 -144.106.80.0/20 721 -144.106.96.0/19 721 -144.106.128.0/18 721 -144.106.192.0/19 721 -144.106.224.0/20 721 -144.106.240.0/23 721 -144.106.242.0/24 721 -144.106.243.0/24 6006 -144.106.244.0/22 721 -144.106.248.0/21 721 -144.107.0.0/20 721 -144.107.16.0/21 721 -144.107.24.0/22 1541 -144.107.28.0/22 721 -144.107.32.0/20 1600 -144.107.48.0/21 1600 -144.107.56.0/22 1600 -144.107.60.0/24 1600 -144.107.61.0/24 721 -144.107.62.0/23 721 -144.107.64.0/21 5953 -144.107.72.0/21 721 -144.107.80.0/20 721 -144.107.96.0/19 721 -144.107.128.0/19 747 -144.107.160.0/19 721 -144.107.192.0/20 721 -144.107.208.0/20 1600 -144.107.224.0/20 747 -144.107.240.0/20 721 -144.109.0.0/24 721 -144.109.1.0/24 1471 -144.109.2.0/23 1471 -144.109.4.0/23 1471 -144.109.6.0/24 1471 -144.109.7.0/24 721 -144.109.8.0/23 721 -144.109.10.0/24 1471 -144.109.11.0/24 721 -144.109.12.0/24 1471 -144.109.13.0/24 721 -144.109.14.0/23 721 -144.109.16.0/22 1471 -144.109.20.0/22 721 -144.109.24.0/21 721 -144.109.32.0/19 721 -144.109.64.0/18 721 -144.109.128.0/17 721 -144.110.0.0/16 6262 -144.118.0.0/16 11834 -144.120.0.0/16 24390 -144.121.0.0/24 46887 -144.121.1.0/24 36233 -144.121.2.0/23 46887 -144.121.4.0/24 54573 -144.121.5.0/24 46887 -144.121.6.0/23 46887 -144.121.8.0/21 46887 -144.121.16.0/21 46887 -144.121.24.0/23 46887 -144.121.26.0/24 46887 -144.121.27.0/24 15027 -144.121.28.0/23 46887 -144.121.30.0/24 62653 -144.121.31.0/24 46887 -144.121.32.0/21 46887 -144.121.40.0/23 46887 -144.121.42.0/24 55119 -144.121.43.0/24 64293 -144.121.44.0/22 46887 -144.121.48.0/22 46887 -144.121.52.0/24 46887 -144.121.53.0/24 397190 -144.121.54.0/23 46887 -144.121.56.0/23 46887 -144.121.58.0/24 397744 -144.121.59.0/24 46887 -144.121.60.0/22 46887 -144.121.64.0/20 46887 -144.121.80.0/21 46887 -144.121.88.0/24 46887 -144.121.89.0/24 62678 -144.121.90.0/23 46887 -144.121.92.0/23 46887 -144.121.94.0/24 46887 -144.121.95.0/24 63329 -144.121.96.0/22 46887 -144.121.100.0/23 46887 -144.121.102.0/24 21821 -144.121.103.0/24 55253 -144.121.104.0/24 21821 -144.121.105.0/24 46887 -144.121.106.0/23 46887 -144.121.108.0/22 46887 -144.121.112.0/24 46887 -144.121.113.0/24 21751 -144.121.114.0/24 46887 -144.121.115.0/24 396242 -144.121.116.0/22 46887 -144.121.120.0/24 23359 -144.121.121.0/24 46887 -144.121.122.0/23 46887 -144.121.124.0/22 46887 -144.121.128.0/22 46887 -144.121.132.0/24 14163 -144.121.133.0/24 46887 -144.121.134.0/24 46887 -144.121.135.0/24 62949 -144.121.136.0/22 46887 -144.121.140.0/24 46887 -144.121.141.0/24 29905 -144.121.142.0/23 46887 -144.121.144.0/23 46887 -144.121.146.0/24 10753 -144.121.147.0/24 46887 -144.121.148.0/24 30183 -144.121.149.0/24 46887 -144.121.150.0/23 46887 -144.121.152.0/21 46887 -144.121.160.0/20 46887 -144.121.176.0/24 46887 -144.121.177.0/24 19224 -144.121.178.0/23 46887 -144.121.180.0/22 46887 -144.121.184.0/21 46887 -144.121.192.0/21 46887 -144.121.200.0/24 54218 -144.121.201.0/24 46887 -144.121.202.0/23 46887 -144.121.204.0/22 46887 -144.121.208.0/21 46887 -144.121.216.0/24 46887 -144.121.217.0/24 53592 -144.121.218.0/23 46887 -144.121.220.0/22 46887 -144.121.224.0/24 396894 -144.121.225.0/24 46887 -144.121.226.0/23 46887 -144.121.228.0/22 46887 -144.121.232.0/21 46887 -144.121.240.0/20 46887 -144.122.0.0/16 1967 -144.123.0.0/16 4134 -144.124.0.0/16 786 -144.125.0.0/16 21784 -144.126.0.0/17 36413 -144.126.128.0/18 36413 -144.127.0.0/16 28795 -144.129.0.0/19 33363 -144.130.0.0/17 1221 -144.130.128.0/20 4637 -144.130.144.0/20 1221 -144.130.160.0/19 1221 -144.130.192.0/18 1221 -144.131.0.0/16 1221 -144.132.0.0/14 1221 -144.136.0.0/15 1221 -144.138.0.0/16 135887 -144.139.0.0/16 1221 -144.140.0.0/16 1221 -144.141.0.0/16 5976 -144.146.0.0/21 5972 -144.146.16.0/21 5972 -144.146.24.0/23 5972 -144.146.40.0/21 5972 -144.146.128.0/22 1590 -144.146.144.0/20 5972 -144.146.160.0/21 5972 -144.146.192.0/20 5972 -144.147.0.0/16 1460 -144.160.0.0/17 797 -144.160.128.0/19 797 -144.160.168.0/21 797 -144.160.194.0/24 797 -144.160.208.0/20 797 -144.160.224.0/19 797 -144.161.0.0/17 797 -144.161.128.0/19 797 -144.161.160.0/22 797 -144.161.176.0/20 797 -144.161.200.0/24 797 -144.161.204.0/23 797 -144.162.0.0/16 10849 -144.163.0.0/16 209 -144.164.0.0/16 224 -144.166.0.0/16 21799 -144.167.0.0/16 14183 -144.168.0.0/19 32931 -144.168.32.0/22 54540 -144.168.37.0/24 54540 -144.168.38.0/23 54540 -144.168.40.0/23 54540 -144.168.42.0/23 29802 -144.168.44.0/23 54540 -144.168.48.0/22 11403 -144.168.52.0/22 30466 -144.168.56.0/21 25820 -144.168.64.0/18 22552 -144.168.128.0/22 55286 -144.168.132.0/24 36352 -144.168.133.0/24 55081 -144.168.134.0/24 55081 -144.168.135.0/24 36352 -144.168.136.0/24 55081 -144.168.137.0/24 36352 -144.168.138.0/24 55081 -144.168.139.0/24 36352 -144.168.140.0/22 36352 -144.168.144.0/24 36352 -144.168.145.0/24 55286 -144.168.146.0/23 36352 -144.168.148.0/22 36352 -144.168.152.0/23 36352 -144.168.154.0/24 36352 -144.168.155.0/24 55286 -144.168.156.0/22 55286 -144.168.160.0/19 55286 -144.168.192.0/23 48635 -144.168.194.0/23 55286 -144.168.196.0/22 55286 -144.168.200.0/21 48635 -144.168.208.0/22 55286 -144.168.212.0/24 36352 -144.168.213.0/24 56030 -144.168.214.0/23 55286 -144.168.216.0/21 55286 -144.168.224.0/21 55286 -144.168.232.0/23 55286 -144.168.236.0/22 36352 -144.168.240.0/23 55081 -144.168.242.0/23 55286 -144.168.244.0/22 55286 -144.168.248.0/21 55081 -144.170.0.0/16 721 -144.171.0.0/16 7301 -144.172.4.0/22 54857 -144.172.8.0/22 11427 -144.172.12.0/22 3356 -144.172.64.0/23 8100 -144.172.68.0/23 40676 -144.172.70.0/23 397031 -144.172.72.0/24 64235 -144.172.74.0/24 64235 -144.172.76.0/24 64235 -144.172.80.0/24 397280 -144.172.81.0/24 53667 -144.172.82.0/24 53667 -144.172.83.0/24 397031 -144.172.84.0/24 397280 -144.172.85.0/24 53667 -144.172.86.0/23 53667 -144.172.88.0/23 46261 -144.172.90.0/24 53667 -144.172.91.0/24 397280 -144.172.92.0/24 397280 -144.172.94.0/23 53667 -144.172.96.0/20 53667 -144.172.112.0/24 31863 -144.172.113.0/24 8100 -144.172.114.0/23 46261 -144.172.116.0/23 46261 -144.172.118.0/24 46573 -144.172.120.0/24 397031 -144.172.121.0/24 29713 -144.172.122.0/23 46261 -144.172.124.0/24 397031 -144.172.125.0/24 29802 -144.172.126.0/23 396881 -144.172.128.0/17 5769 -144.173.0.0/16 786 -144.174.0.0/16 2553 -144.175.0.0/16 33608 -144.176.0.0/16 3292 -144.177.0.0/21 3292 -144.177.8.0/22 3292 -144.177.32.0/21 3292 -144.177.48.0/22 3292 -144.177.61.0/24 3292 -144.177.63.0/24 3292 -144.177.64.0/23 3257 -144.177.66.0/23 209 -144.177.68.0/23 209 -144.177.70.0/23 3257 -144.177.72.0/24 3257 -144.177.73.0/24 209 -144.177.74.0/23 209 -144.177.76.0/22 3257 -144.177.80.0/20 209 -144.177.96.0/22 9930 -144.177.128.0/22 3292 -144.178.0.0/19 714 -144.178.32.0/24 6185 -144.178.36.0/22 714 -144.178.48.0/20 714 -144.178.64.0/19 39686 -144.178.96.0/19 2147 -144.178.128.0/18 15704 -144.178.224.0/19 2147 -144.179.0.0/16 3292 -144.180.0.0/15 3292 -144.182.0.0/16 721 -144.183.0.0/21 721 -144.183.8.0/22 721 -144.183.12.0/23 721 -144.183.14.0/24 721 -144.183.15.0/24 138 -144.183.16.0/23 138 -144.183.18.0/23 721 -144.183.20.0/23 138 -144.183.22.0/24 138 -144.183.23.0/24 721 -144.183.24.0/21 721 -144.183.32.0/22 138 -144.183.36.0/22 721 -144.183.40.0/21 721 -144.183.48.0/20 721 -144.183.64.0/18 721 -144.183.128.0/23 138 -144.183.130.0/24 138 -144.183.131.0/24 721 -144.183.132.0/22 721 -144.183.136.0/21 721 -144.183.144.0/20 721 -144.183.160.0/19 721 -144.183.192.0/22 721 -144.183.196.0/22 138 -144.183.200.0/21 138 -144.183.208.0/20 138 -144.183.224.0/23 138 -144.183.226.0/23 721 -144.183.228.0/22 721 -144.183.232.0/21 721 -144.183.240.0/20 138 -144.184.0.0/23 721 -144.184.2.0/24 721 -144.184.3.0/24 1733 -144.184.4.0/22 721 -144.184.8.0/21 721 -144.184.16.0/20 721 -144.184.32.0/19 721 -144.184.64.0/18 721 -144.184.128.0/17 721 -144.185.0.0/16 19773 -144.186.0.0/16 19773 -144.187.0.0/18 22562 -144.187.64.0/18 17916 -144.188.20.0/24 22244 -144.188.28.0/24 22244 -144.188.64.0/20 22244 -144.188.128.0/23 22244 -144.188.130.0/24 22244 -144.188.132.0/24 138005 -144.188.134.0/24 22244 -144.190.0.0/17 19773 -144.190.160.0/20 19773 -144.190.176.0/21 19773 -144.190.184.0/22 19773 -144.190.188.0/23 35532 -144.190.190.0/23 19773 -144.190.192.0/18 19773 -144.191.128.0/17 36590 -144.193.0.0/16 2119 -144.194.0.0/21 20221 -144.194.16.0/20 20221 -144.195.1.0/24 7018 -144.198.18.0/23 7238 -144.198.28.0/23 10982 -144.198.80.0/24 53295 -144.198.82.0/24 7238 -144.198.85.0/24 7238 -144.198.100.0/24 7238 -144.198.114.0/23 10982 -144.198.117.0/24 10982 -144.198.143.0/24 10982 -144.198.156.0/24 7238 -144.198.182.0/23 21892 -144.198.191.0/24 7238 -144.198.192.0/24 7238 -144.198.200.0/24 7238 -144.198.203.0/24 7238 -144.198.207.0/24 7238 -144.198.210.0/24 10982 -144.198.224.0/21 7238 -144.198.232.0/24 7238 -144.199.0.0/16 3918 -144.200.0.0/16 559 -144.202.0.0/17 20473 -144.202.128.0/19 26094 -144.202.160.0/23 17378 -144.202.162.0/24 7181 -144.202.163.0/24 17378 -144.202.164.0/22 17378 -144.202.168.0/21 17378 -144.202.176.0/20 17378 -144.202.192.0/20 17378 -144.202.208.0/21 17378 -144.202.216.0/22 17378 -144.202.220.0/23 32882 -144.202.222.0/23 17378 -144.202.224.0/19 26094 -144.203.128.0/22 1311 -144.203.144.0/23 44829 -144.203.148.0/23 44829 -144.203.160.0/24 1311 -144.203.179.0/24 1311 -144.204.0.0/16 2426 -144.205.0.0/16 7575 -144.206.0.0/18 6801 -144.206.64.0/19 201052 -144.206.96.0/19 6801 -144.206.128.0/22 29493 -144.206.136.0/21 2643 -144.206.144.0/21 2148 -144.206.160.0/19 6801 -144.206.221.0/24 59624 -144.206.222.0/24 59624 -144.206.224.0/19 59624 -144.208.0.0/19 44453 -144.208.64.0/21 22611 -144.208.72.0/21 54641 -144.208.80.0/22 396341 -144.208.84.0/22 30647 -144.208.88.0/24 20119 -144.208.89.0/24 47056 -144.208.91.0/24 395800 -144.208.92.0/22 395092 -144.208.96.0/24 50673 -144.208.97.0/24 22423 -144.208.98.0/23 22423 -144.208.100.0/22 22423 -144.208.104.0/22 394994 -144.208.108.0/24 16557 -144.208.109.0/24 12025 -144.208.110.0/23 20303 -144.208.116.0/24 6130 -144.208.117.0/24 53889 -144.208.118.0/23 53889 -144.208.120.0/23 53889 -144.208.122.0/24 6130 -144.208.123.0/24 53889 -144.208.124.0/22 395092 -144.208.128.0/22 44453 -144.208.192.0/22 40980 -144.208.196.0/22 42473 -144.208.204.0/24 199159 -144.208.205.0/24 42473 -144.208.206.0/24 42473 -144.208.208.0/21 47147 -144.208.217.0/24 42473 -144.209.81.0/24 35104 -144.209.104.0/22 199992 -144.209.111.0/24 199992 -144.211.94.0/24 46784 -144.211.96.0/23 46784 -144.211.107.0/24 46784 -144.211.186.0/23 46784 -144.211.188.0/24 46784 -144.211.193.0/24 174 -144.211.194.0/23 174 -144.211.196.0/23 46784 -144.211.198.0/24 8220 -144.211.199.0/24 46784 -144.212.0.0/16 11939 -144.213.0.0/16 2907 -144.214.0.0/16 4158 -144.216.0.0/16 7896 -144.217.0.0/16 16276 -144.220.1.0/24 16509 -144.220.2.0/23 16509 -144.220.4.0/24 16509 -144.220.6.0/24 16509 -144.220.11.0/24 16509 -144.220.12.0/22 16509 -144.220.16.0/23 16509 -144.220.19.0/24 16509 -144.220.22.0/23 16509 -144.220.26.0/24 16509 -144.220.29.0/24 16509 -144.220.31.0/24 16509 -144.220.49.0/24 16509 -144.220.50.0/23 16509 -144.220.55.0/24 16509 -144.220.56.0/24 16509 -144.220.59.0/24 16509 -144.220.60.0/23 16509 -144.220.65.0/24 16509 -144.220.66.0/24 16509 -144.220.68.0/23 16509 -144.220.72.0/22 16509 -144.220.76.0/24 16509 -144.223.0.0/16 1239 -144.224.0.0/16 1239 -144.226.160.0/19 6157 -144.226.192.0/18 6157 -144.228.0.0/16 1239 -144.230.0.0/16 6157 -144.232.0.0/16 1239 -144.243.2.0/23 17366 -144.243.4.0/23 17366 -144.243.7.0/24 17366 -144.243.8.0/24 17366 -144.243.12.0/23 17366 -144.243.94.0/24 17366 -144.243.192.0/24 11228 -144.243.200.0/23 11228 -144.243.202.0/24 11228 -144.243.204.0/23 11228 -144.243.207.0/24 11228 -144.243.208.0/22 11228 -144.243.212.0/23 11228 -144.243.216.0/21 11228 -144.244.0.0/15 1477 -144.246.0.0/17 1477 -144.246.128.0/18 1477 -144.246.192.0/19 1477 -144.246.224.0/20 1477 -144.246.240.0/23 1477 -144.246.242.0/24 1477 -144.246.243.0/24 1541 -144.246.244.0/22 1477 -144.246.248.0/21 1477 -144.247.0.0/17 721 -144.247.128.0/18 721 -144.247.192.0/20 721 -144.247.208.0/22 721 -144.247.212.0/22 27064 -144.247.216.0/23 27064 -144.247.218.0/23 721 -144.247.220.0/22 27064 -144.247.224.0/19 721 -144.248.0.0/16 2611 -144.250.22.0/24 7046 -144.250.24.0/24 701 -144.250.30.0/23 7046 -144.250.34.0/24 7046 -144.250.35.0/24 2830 -144.250.40.0/23 9466 -144.250.128.0/24 7046 -144.251.0.0/20 5961 -144.251.16.0/22 5961 -144.251.20.0/23 5961 -144.251.22.0/24 5961 -144.251.23.0/24 5307 -144.251.24.0/21 5961 -144.251.32.0/21 5961 -144.251.40.0/22 5961 -144.251.44.0/22 5307 -144.251.48.0/20 5961 -144.251.64.0/23 5961 -144.251.66.0/23 5307 -144.251.68.0/22 5961 -144.251.72.0/21 5961 -144.251.80.0/20 5961 -144.251.96.0/21 5961 -144.251.104.0/22 5961 -144.251.108.0/23 5307 -144.251.110.0/23 5961 -144.251.112.0/22 5307 -144.251.116.0/24 5307 -144.251.117.0/24 5961 -144.251.118.0/23 5307 -144.251.120.0/23 5961 -144.251.122.0/24 5961 -144.251.123.0/24 5307 -144.251.124.0/22 5307 -144.251.128.0/19 5961 -144.251.160.0/20 5961 -144.251.176.0/21 5961 -144.251.184.0/23 5961 -144.251.186.0/24 5961 -144.251.187.0/24 5307 -144.251.188.0/24 5307 -144.251.189.0/24 5961 -144.251.190.0/23 5961 -144.251.192.0/24 5307 -144.251.193.0/24 5961 -144.251.194.0/23 5961 -144.251.196.0/22 5961 -144.251.200.0/21 5961 -144.251.208.0/20 5961 -144.251.224.0/24 5961 -144.251.225.0/24 5307 -144.251.226.0/23 5961 -144.251.228.0/22 5961 -144.251.232.0/22 5961 -144.251.236.0/24 5307 -144.251.237.0/24 5961 -144.251.238.0/23 5961 -144.251.240.0/21 5961 -144.251.248.0/22 5961 -144.251.252.0/24 5961 -144.251.253.0/24 27152 -144.251.254.0/23 5961 -144.252.0.0/19 668 -144.252.64.0/19 668 -144.254.0.0/16 109 -144.255.0.0/16 4134 -145.0.0.0/16 1103 -145.1.0.0/17 1103 -145.1.128.0/17 12479 -145.2.0.0/15 1103 -145.4.0.0/17 702 -145.4.128.0/18 702 -145.4.192.0/19 702 -145.4.224.0/20 1136 -145.4.240.0/20 702 -145.5.0.0/16 1103 -145.7.0.0/16 1136 -145.8.0.0/17 286 -145.8.128.0/19 286 -145.8.160.0/20 286 -145.8.176.0/22 286 -145.8.180.0/24 33915 -145.8.181.0/24 286 -145.8.182.0/23 286 -145.8.184.0/21 286 -145.8.192.0/18 286 -145.9.0.0/16 1103 -145.10.0.0/16 48037 -145.11.1.0/24 210193 -145.11.60.0/23 210193 -145.11.62.0/24 210193 -145.11.200.0/24 210193 -145.12.0.0/16 203396 -145.13.0.0/16 21286 -145.14.0.0/22 2830 -145.14.4.0/24 205405 -145.14.5.0/24 205404 -145.14.6.0/24 205403 -145.14.7.0/24 205379 -145.14.8.0/21 28682 -145.14.16.0/20 13272 -145.14.32.0/20 13272 -145.14.48.0/21 28682 -145.14.56.0/21 2830 -145.14.64.0/23 4809 -145.14.67.0/24 4809 -145.14.69.0/24 4809 -145.14.71.0/24 4809 -145.14.72.0/24 4809 -145.14.74.0/23 4809 -145.14.79.0/24 4809 -145.14.81.0/24 4809 -145.14.82.0/24 4809 -145.14.84.0/24 4809 -145.14.86.0/24 4809 -145.14.88.0/24 4809 -145.14.90.0/24 4809 -145.14.92.0/24 4809 -145.14.94.0/24 44218 -145.14.96.0/19 50821 -145.14.128.0/24 208188 -145.14.130.0/24 60664 -145.14.131.0/24 40065 -145.14.132.0/24 40065 -145.14.133.0/24 19693 -145.14.134.0/24 53107 -145.14.135.0/24 40065 -145.14.136.0/21 42366 -145.14.144.0/23 204915 -145.14.156.0/22 47583 -145.14.160.0/19 51580 -145.14.192.0/20 41998 -145.14.208.0/20 61174 -145.14.224.0/20 50533 -145.14.240.0/21 197227 -145.14.248.0/21 200026 -145.15.0.0/22 21286 -145.15.40.0/23 203952 -145.15.90.0/24 21286 -145.15.92.0/22 21286 -145.15.96.0/22 21286 -145.15.108.0/22 1136 -145.15.112.0/23 203952 -145.15.114.0/23 1136 -145.15.208.0/22 1136 -145.15.212.0/23 1136 -145.15.214.0/24 59524 -145.15.215.0/24 1136 -145.15.244.0/22 202189 -145.18.0.0/16 1124 -145.19.0.0/16 1103 -145.20.0.0/16 1103 -145.22.254.0/24 206294 -145.23.0.0/16 1103 -145.24.0.0/16 1103 -145.26.0.0/16 3917 -145.28.0.0/15 1103 -145.30.227.0/24 3918 -145.31.0.0/16 42894 -145.32.0.0/24 34108 -145.32.1.0/24 702 -145.32.2.0/23 702 -145.32.4.0/22 702 -145.32.8.0/21 702 -145.32.16.0/20 702 -145.32.32.0/19 702 -145.32.64.0/19 702 -145.32.96.0/22 702 -145.32.100.0/24 2830 -145.32.101.0/24 702 -145.32.102.0/23 702 -145.32.104.0/21 702 -145.32.112.0/20 702 -145.32.128.0/17 702 -145.33.0.0/16 1103 -145.34.0.0/22 134589 -145.34.8.0/21 134589 -145.34.128.0/20 134589 -145.34.148.0/23 134589 -145.35.0.0/16 42517 -145.36.91.0/24 14455 -145.36.131.0/24 45244 -145.36.140.0/23 9580 -145.36.159.0/24 45244 -145.36.184.0/24 30495 -145.36.200.0/24 10753 -145.36.201.0/24 2830 -145.36.202.0/24 10753 -145.36.203.0/24 7046 -145.36.204.0/24 10753 -145.36.205.0/24 9466 -145.37.0.0/16 1103 -145.38.0.0/15 1103 -145.40.16.0/20 50821 -145.40.32.0/19 49808 -145.40.128.0/18 60377 -145.40.192.0/19 8758 -145.43.249.0/24 50799 -145.43.250.0/23 50799 -145.43.252.0/22 206024 -145.44.0.0/16 1103 -145.45.0.0/17 42894 -145.46.128.0/19 2830 -145.46.160.0/20 2830 -145.46.176.0/20 33915 -145.46.192.0/19 2830 -145.46.224.0/20 2830 -145.46.240.0/20 33915 -145.48.0.0/15 1103 -145.50.0.0/16 42894 -145.51.0.0/16 1103 -145.52.0.0/16 1103 -145.53.0.0/16 1136 -145.58.0.0/16 25182 -145.60.0.0/20 197949 -145.60.16.0/21 31027 -145.61.196.0/24 6900 -145.61.200.0/22 6900 -145.62.0.0/23 201204 -145.62.2.0/23 201208 -145.62.64.0/20 201204 -145.62.80.0/20 201208 -145.63.0.0/16 47863 -145.64.128.0/21 28756 -145.64.248.0/21 28756 -145.69.0.0/16 203396 -145.72.64.0/18 8211 -145.74.0.0/15 1103 -145.76.0.0/16 1103 -145.77.64.0/19 16074 -145.77.96.0/20 16074 -145.77.224.0/20 16074 -145.78.0.0/16 1136 -145.79.0.0/16 33915 -145.80.222.0/23 15740 -145.81.0.0/16 1103 -145.83.1.0/24 13127 -145.83.2.0/24 13127 -145.85.0.0/16 1103 -145.86.0.0/16 47886 -145.87.0.0/22 29396 -145.87.224.0/19 35467 -145.88.0.0/14 1103 -145.92.0.0/15 1103 -145.94.0.0/16 1128 -145.95.0.0/16 1103 -145.96.0.0/16 1103 -145.97.16.0/20 1103 -145.97.32.0/20 1145 -145.97.48.0/20 1103 -145.97.64.0/18 1103 -145.97.128.0/17 1103 -145.98.0.0/16 1103 -145.99.0.0/16 1101 -145.100.0.0/18 1103 -145.100.64.0/19 1103 -145.100.96.0/22 1103 -145.100.100.0/24 1103 -145.100.101.0/24 1146 -145.100.102.0/23 1103 -145.100.104.0/21 1103 -145.100.112.0/22 1103 -145.100.116.0/23 1103 -145.100.118.0/23 1149 -145.100.120.0/21 1103 -145.100.128.0/17 1103 -145.101.0.0/16 1103 -145.102.0.0/22 1103 -145.102.4.0/23 1101 -145.102.6.0/23 1103 -145.102.8.0/21 1103 -145.102.16.0/20 1103 -145.102.32.0/19 1103 -145.102.64.0/18 1103 -145.102.128.0/17 1103 -145.103.0.0/16 1103 -145.107.0.0/16 1103 -145.108.0.0/16 1103 -145.109.0.0/16 1124 -145.110.0.0/16 1104 -145.111.0.0/16 1199 -145.116.0.0/19 1103 -145.116.32.0/20 1161 -145.116.48.0/20 1104 -145.116.64.0/18 1103 -145.116.128.0/18 1103 -145.116.192.0/20 1103 -145.116.208.0/21 1104 -145.116.224.0/19 1103 -145.117.0.0/16 1103 -145.118.0.0/16 1103 -145.119.0.0/16 1136 -145.120.0.0/14 1103 -145.124.0.0/15 1103 -145.126.0.0/16 1103 -145.127.128.0/17 1147 -145.128.0.0/17 59524 -145.128.128.0/17 28685 -145.129.0.0/16 1136 -145.130.0.0/16 1136 -145.131.0.0/19 8315 -145.131.32.0/20 8315 -145.131.64.0/18 28685 -145.131.128.0/17 28685 -145.132.0.0/15 1136 -145.136.0.0/15 1103 -145.138.0.0/16 1103 -145.139.0.0/21 1103 -145.139.8.0/22 1103 -145.139.12.0/24 1103 -145.139.13.0/24 4269 -145.139.14.0/24 4269 -145.139.15.0/24 1103 -145.139.16.0/20 1103 -145.139.32.0/19 1103 -145.139.64.0/21 1103 -145.139.72.0/22 1103 -145.139.76.0/24 1103 -145.139.77.0/24 6905 -145.139.78.0/24 6905 -145.139.79.0/24 1103 -145.139.80.0/20 1103 -145.139.96.0/19 1103 -145.139.128.0/17 1103 -145.140.0.0/14 1103 -145.144.0.0/12 1103 -145.192.0.0/12 1101 -145.208.0.0/13 1101 -145.216.0.0/15 1101 -145.218.0.0/16 49362 -145.219.8.0/21 201017 -145.219.16.0/23 201017 -145.220.0.0/16 1101 -145.221.0.0/24 198949 -145.221.1.0/24 15625 -145.221.2.0/23 15625 -145.221.4.0/22 15625 -145.221.8.0/21 15625 -145.221.16.0/20 15625 -145.221.32.0/19 15625 -145.221.64.0/18 15625 -145.221.128.0/17 15625 -145.222.0.0/16 21286 -145.223.0.0/16 44074 -145.224.0.0/24 47377 -145.224.32.0/20 15404 -145.225.1.0/24 3320 -145.225.2.0/24 3320 -145.225.7.0/24 21077 -145.225.8.0/22 21077 -145.225.12.0/24 36994 -145.225.23.0/24 1273 -145.225.32.0/23 6904 -145.225.60.0/22 25039 -145.225.64.0/19 25039 -145.225.112.0/21 25039 -145.225.148.0/22 3320 -145.225.152.0/24 3320 -145.225.168.0/22 15943 -145.225.240.0/20 25039 -145.226.0.0/16 8255 -145.228.0.0/16 33873 -145.229.150.0/24 1273 -145.229.156.0/23 1273 -145.230.0.0/16 12663 -145.232.0.0/16 15675 -145.233.0.0/16 3549 -145.234.0.0/16 206567 -145.235.0.0/23 1257 -145.236.0.0/20 5483 -145.236.16.0/21 5483 -145.236.24.0/24 1902 -145.236.25.0/24 5483 -145.236.26.0/23 5483 -145.236.28.0/22 5483 -145.236.32.0/19 5483 -145.236.64.0/20 5483 -145.236.80.0/24 51660 -145.236.81.0/24 5483 -145.236.82.0/23 5483 -145.236.84.0/22 5483 -145.236.88.0/21 5483 -145.236.96.0/19 5483 -145.236.128.0/17 5483 -145.237.0.0/16 34339 -145.238.0.0/16 2200 -145.239.0.0/16 16276 -145.240.94.0/24 3902 -145.240.95.0/24 5635 -145.241.0.0/16 8447 -145.242.1.0/24 3215 -145.242.2.0/24 3215 -145.242.6.0/24 3215 -145.242.11.0/24 3215 -145.242.17.0/24 3215 -145.242.20.0/24 3215 -145.242.31.0/24 3215 -145.242.37.0/24 3215 -145.243.0.0/17 8792 -145.243.128.0/18 8792 -145.243.192.0/19 8792 -145.243.224.0/21 8792 -145.243.232.0/21 200757 -145.243.240.0/20 200757 -145.244.0.0/16 1853 -145.245.0.0/16 2047 -145.246.4.0/24 2830 -145.246.6.0/24 2830 -145.246.11.0/24 10625 -145.246.14.0/24 26585 -145.246.19.0/24 10625 -145.246.20.0/24 2830 -145.246.26.0/23 10625 -145.246.68.0/24 23763 -145.246.70.0/24 393226 -145.246.74.0/24 23763 -145.246.76.0/24 23763 -145.246.77.0/24 393226 -145.246.78.0/24 393226 -145.247.0.0/16 41701 -145.248.192.0/21 21137 -145.248.208.0/21 203651 -145.249.0.0/18 29256 -145.249.64.0/19 29256 -145.249.96.0/21 16097 -145.249.104.0/22 202425 -145.249.108.0/24 20473 -145.249.109.0/24 8708 -145.249.110.0/24 203872 -145.249.111.0/24 203770 -145.249.112.0/23 203872 -145.249.114.0/24 203872 -145.249.120.0/21 21299 -145.249.128.0/17 21299 -145.250.128.0/17 3303 -145.251.0.0/16 28726 -145.252.0.0/23 6830 -145.253.0.0/16 3209 -145.254.0.0/16 3209 -145.255.0.0/20 24955 -145.255.16.0/21 41704 -145.255.24.0/21 24955 -145.255.32.0/20 13178 -145.255.48.0/24 12581 -145.255.49.0/24 204008 -145.255.50.0/23 204008 -145.255.52.0/22 204008 -145.255.56.0/21 206920 -145.255.64.0/18 50010 -145.255.128.0/21 60781 -145.255.136.0/21 20485 -145.255.144.0/20 35328 -145.255.160.0/19 9198 -145.255.192.0/20 198259 -145.255.208.0/21 198259 -145.255.216.0/22 198259 -145.255.220.0/24 198259 -145.255.224.0/21 31708 -145.255.232.0/21 8492 -145.255.240.0/21 60257 -145.255.248.0/22 39264 -145.255.253.0/24 39264 -145.255.254.0/23 39264 -146.0.0.0/20 197938 -146.0.16.0/21 57070 -146.0.24.0/24 57024 -146.0.25.0/24 47866 -146.0.26.0/23 47866 -146.0.28.0/22 47866 -146.0.32.0/20 24961 -146.0.48.0/21 51677 -146.0.56.0/24 59756 -146.0.64.0/21 41690 -146.0.72.0/21 57043 -146.0.80.0/21 35362 -146.0.88.0/21 196658 -146.0.96.0/19 16097 -146.0.128.0/18 6661 -146.0.192.0/20 21299 -146.0.208.0/22 203223 -146.0.212.0/22 6661 -146.0.216.0/21 6661 -146.0.224.0/21 29066 -146.0.232.0/22 29066 -146.0.236.0/23 29066 -146.0.238.0/24 29066 -146.0.239.0/24 204116 -146.0.240.0/20 29066 -146.1.0.0/24 701 -146.1.1.0/24 3378 -146.1.2.0/24 3378 -146.1.3.0/24 701 -146.1.4.0/22 3378 -146.1.8.0/21 701 -146.1.16.0/23 3378 -146.1.18.0/23 701 -146.1.20.0/22 701 -146.1.24.0/21 3378 -146.1.32.0/21 701 -146.1.40.0/21 3378 -146.1.48.0/20 701 -146.1.64.0/18 701 -146.1.128.0/20 3373 -146.1.144.0/20 3374 -146.1.160.0/19 3376 -146.1.192.0/19 3375 -146.1.224.0/21 3374 -146.1.232.0/22 3376 -146.1.236.0/22 701 -146.1.240.0/20 3375 -146.2.0.0/16 200139 -146.4.0.0/16 3303 -146.5.0.0/20 11711 -146.5.17.0/24 11711 -146.5.20.0/22 104 -146.5.33.0/24 11711 -146.5.111.0/24 11711 -146.5.201.0/24 11711 -146.6.0.0/16 18 -146.7.0.0/16 2572 -146.11.0.0/16 158 -146.12.80.0/20 17302 -146.12.160.0/22 15245 -146.12.176.0/20 22406 -146.14.0.0/15 1467 -146.16.16.0/21 5953 -146.16.128.0/22 1541 -146.16.134.0/24 1541 -146.16.144.0/20 1489 -146.16.225.0/24 1502 -146.16.227.0/24 1502 -146.16.230.0/24 1502 -146.16.245.0/24 1489 -146.18.0.0/16 7726 -146.20.0.0/17 27357 -146.20.128.0/18 27357 -146.20.192.0/20 27357 -146.20.208.0/24 27357 -146.20.209.0/24 14492 -146.20.210.0/23 27357 -146.20.212.0/22 27357 -146.20.216.0/21 27357 -146.20.224.0/19 27357 -146.21.0.0/16 56736 -146.23.0.0/19 7862 -146.23.64.0/18 7862 -146.23.178.0/24 7862 -146.23.192.0/19 7862 -146.23.226.0/24 7862 -146.23.228.0/24 7862 -146.23.248.0/21 7862 -146.47.39.0/24 209 -146.48.0.0/16 137 -146.50.0.0/16 1124 -146.52.0.0/16 31334 -146.53.0.0/16 1483 -146.54.0.0/16 1483 -146.55.16.0/24 1498 -146.55.22.0/24 1541 -146.55.23.0/24 721 -146.55.24.0/21 1590 -146.55.32.0/19 1541 -146.55.80.0/20 1494 -146.55.101.0/24 5953 -146.55.124.0/24 721 -146.55.192.0/18 1494 -146.56.0.0/20 7160 -146.56.192.0/18 45090 -146.57.0.0/17 217 -146.57.128.0/18 217 -146.57.192.0/19 217 -146.57.224.0/20 217 -146.57.240.0/21 217 -146.57.248.0/21 57 -146.60.0.0/16 3209 -146.63.0.0/16 3724 -146.64.0.0/16 2018 -146.66.0.0/22 57228 -146.66.4.0/22 20799 -146.66.8.0/21 57113 -146.66.16.0/21 43873 -146.66.24.0/21 51728 -146.66.32.0/19 6871 -146.66.64.0/20 32475 -146.66.80.0/21 32475 -146.66.88.0/24 32475 -146.66.89.0/24 36351 -146.66.90.0/23 36351 -146.66.92.0/23 36351 -146.66.94.0/24 36351 -146.66.95.0/24 32475 -146.66.96.0/22 32475 -146.66.100.0/23 32475 -146.66.102.0/24 36351 -146.66.103.0/24 32475 -146.66.104.0/22 36351 -146.66.108.0/24 36351 -146.66.109.0/24 32475 -146.66.110.0/23 32475 -146.66.112.0/23 32475 -146.66.114.0/24 32475 -146.66.115.0/24 36351 -146.66.116.0/24 36351 -146.66.117.0/24 32475 -146.66.118.0/24 36351 -146.66.121.0/24 396982 -146.66.127.0/24 204508 -146.66.128.0/21 206217 -146.66.136.0/21 199930 -146.66.144.0/21 50755 -146.66.152.0/21 32590 -146.66.160.0/19 42893 -146.66.192.0/20 42893 -146.66.208.0/23 201909 -146.66.210.0/23 60741 -146.66.212.0/22 49687 -146.66.216.0/23 60882 -146.66.218.0/24 60741 -146.66.219.0/24 199552 -146.66.220.0/22 208068 -146.66.224.0/21 51906 -146.66.232.0/21 59702 -146.66.240.0/20 201109 -146.67.0.0/16 8803 -146.71.0.0/24 32904 -146.71.1.0/24 22576 -146.71.2.0/23 32904 -146.71.4.0/22 32365 -146.71.8.0/21 1403 -146.71.16.0/20 46906 -146.71.32.0/20 8100 -146.71.48.0/20 22552 -146.71.64.0/21 396006 -146.71.72.0/22 394109 -146.71.76.0/24 47869 -146.71.77.0/24 8100 -146.71.78.0/24 46562 -146.71.79.0/24 18779 -146.71.80.0/22 395092 -146.71.84.0/23 136175 -146.71.86.0/23 395092 -146.71.88.0/23 395788 -146.71.90.0/23 395768 -146.71.92.0/23 395768 -146.71.94.0/23 60924 -146.71.96.0/19 53850 -146.72.0.0/17 21297 -146.72.128.0/18 21297 -146.72.192.0/19 21297 -146.72.224.0/20 21297 -146.72.240.0/20 12552 -146.74.0.0/18 30051 -146.74.64.0/20 30051 -146.74.80.0/21 30051 -146.74.88.0/22 30051 -146.74.92.0/22 2152 -146.74.96.0/19 30051 -146.74.128.0/17 30051 -146.76.0.0/16 4193 -146.79.0.0/16 15307 -146.80.0.0/16 7 -146.81.0.0/16 41648 -146.82.0.0/18 3549 -146.82.64.0/20 3549 -146.82.80.0/22 3549 -146.82.84.0/24 22791 -146.82.85.0/24 3549 -146.82.86.0/24 30649 -146.82.87.0/24 14167 -146.82.88.0/22 16471 -146.82.92.0/22 3549 -146.82.96.0/19 3549 -146.82.128.0/23 3549 -146.82.130.0/24 52468 -146.82.131.0/24 3549 -146.82.132.0/22 3549 -146.82.136.0/21 3549 -146.82.144.0/20 3549 -146.82.160.0/22 3549 -146.82.164.0/24 16526 -146.82.165.0/24 3549 -146.82.166.0/23 3549 -146.82.168.0/21 3549 -146.82.176.0/20 3549 -146.82.192.0/21 3549 -146.82.200.0/21 30361 -146.82.208.0/21 3549 -146.82.216.0/22 3549 -146.82.220.0/23 19137 -146.82.222.0/23 3549 -146.82.224.0/21 3549 -146.82.232.0/23 3549 -146.82.234.0/24 13729 -146.82.235.0/24 3549 -146.82.236.0/22 3549 -146.82.240.0/21 3549 -146.82.248.0/24 55252 -146.82.249.0/24 3549 -146.82.250.0/23 3549 -146.82.252.0/22 3549 -146.83.2.0/23 23140 -146.83.4.0/22 23140 -146.83.8.0/21 23140 -146.83.16.0/20 23140 -146.83.32.0/19 23140 -146.83.68.0/24 11340 -146.83.70.0/24 11340 -146.83.81.0/24 264724 -146.83.90.0/24 26610 -146.83.92.0/24 26610 -146.83.95.0/24 11340 -146.83.96.0/20 11340 -146.83.114.0/23 11340 -146.83.116.0/22 11340 -146.83.123.0/24 11340 -146.83.124.0/22 11340 -146.83.128.0/23 11340 -146.83.131.0/24 11340 -146.83.132.0/24 11340 -146.83.135.0/24 11340 -146.83.137.0/24 11340 -146.83.139.0/24 11340 -146.83.143.0/24 11340 -146.83.144.0/24 11340 -146.83.149.0/24 11340 -146.83.150.0/23 11340 -146.83.152.0/22 11340 -146.83.164.0/24 11340 -146.83.168.0/24 11340 -146.83.173.0/24 11340 -146.83.176.0/20 11340 -146.83.192.0/20 11340 -146.83.209.0/24 11340 -146.83.210.0/23 11340 -146.83.212.0/23 11340 -146.83.216.0/22 11340 -146.83.220.0/23 11340 -146.83.222.0/24 11340 -146.83.225.0/24 11340 -146.83.234.0/24 11340 -146.83.236.0/23 11340 -146.83.242.0/24 11340 -146.83.248.0/24 11340 -146.83.250.0/23 11340 -146.83.254.0/24 11340 -146.84.0.0/18 36351 -146.85.0.0/16 600 -146.86.0.0/16 210 -146.87.0.0/16 786 -146.88.0.0/20 17153 -146.88.16.0/23 55819 -146.88.18.0/24 55819 -146.88.20.0/22 45763 -146.88.24.0/22 17439 -146.88.28.0/24 55819 -146.88.29.0/24 395034 -146.88.30.0/24 4917 -146.88.32.0/22 132280 -146.88.36.0/22 136393 -146.88.40.0/24 132280 -146.88.41.0/24 136255 -146.88.42.0/23 136393 -146.88.44.0/22 136393 -146.88.48.0/22 132280 -146.88.52.0/22 136393 -146.88.56.0/21 132280 -146.88.64.0/20 55821 -146.88.84.0/22 55303 -146.88.88.0/22 59243 -146.88.93.0/24 59243 -146.88.94.0/23 59243 -146.88.96.0/20 35914 -146.88.112.0/21 35914 -146.88.120.0/22 35914 -146.88.129.0/24 36351 -146.88.130.0/24 33438 -146.88.134.0/23 23352 -146.88.138.0/23 12989 -146.88.142.0/24 12989 -146.88.148.0/24 393594 -146.88.151.0/24 27632 -146.88.152.0/21 133847 -146.88.160.0/20 55303 -146.88.176.0/22 26994 -146.88.180.0/24 13767 -146.88.181.0/24 25916 -146.88.182.0/23 15001 -146.88.184.0/24 13767 -146.88.185.0/24 63209 -146.88.186.0/23 63209 -146.88.188.0/24 63209 -146.88.189.0/24 13767 -146.88.190.0/23 13767 -146.88.192.0/23 53889 -146.88.194.0/24 53889 -146.88.195.0/24 6130 -146.88.196.0/22 10204 -146.88.200.0/21 58424 -146.88.208.0/21 30967 -146.88.216.0/21 53460 -146.88.224.0/23 395594 -146.88.226.0/24 3356 -146.88.227.0/24 395351 -146.88.228.0/22 1638 -146.88.232.0/21 53589 -146.88.240.0/24 20052 -146.88.241.0/24 19905 -146.88.242.0/23 19905 -146.88.244.0/22 19905 -146.88.248.0/21 19905 -146.90.0.0/16 6871 -146.91.48.0/21 2386 -146.92.0.0/16 18709 -146.94.0.0/16 13759 -146.95.0.0/16 31822 -146.96.0.0/16 31822 -146.97.0.0/16 786 -146.99.0.0/16 9605 -146.101.0.0/23 1290 -146.101.2.0/23 4637 -146.101.4.0/22 1290 -146.101.8.0/22 1290 -146.101.12.0/23 1290 -146.101.14.0/24 4637 -146.101.15.0/24 1290 -146.101.16.0/20 1290 -146.101.32.0/19 1290 -146.101.64.0/21 1290 -146.101.72.0/22 1290 -146.101.76.0/23 4637 -146.101.78.0/24 4637 -146.101.79.0/24 197832 -146.101.80.0/20 1290 -146.101.96.0/20 1290 -146.101.112.0/21 1290 -146.101.120.0/22 1290 -146.101.124.0/24 4637 -146.101.125.0/24 1290 -146.101.126.0/23 1290 -146.101.128.0/18 1290 -146.101.192.0/19 1290 -146.101.224.0/20 1290 -146.101.240.0/21 1290 -146.101.248.0/23 1290 -146.101.250.0/24 1290 -146.101.251.0/24 4637 -146.101.252.0/22 1290 -146.102.0.0/16 2852 -146.103.0.0/16 2611 -146.104.253.0/24 1136 -146.105.0.0/17 15499 -146.105.128.0/18 15499 -146.105.192.0/21 15499 -146.105.200.0/21 5410 -146.105.208.0/20 15499 -146.105.224.0/19 15499 -146.107.0.0/16 680 -146.108.0.0/16 15733 -146.109.4.0/24 20743 -146.109.6.0/24 20743 -146.109.68.0/24 20743 -146.109.70.0/24 20743 -146.109.145.0/24 9042 -146.109.153.0/24 9042 -146.109.160.0/19 9042 -146.110.0.0/16 25171 -146.111.0.0/16 31822 -146.112.30.0/23 36692 -146.112.37.0/24 36692 -146.112.38.0/24 36692 -146.112.41.0/24 36692 -146.112.43.0/24 36692 -146.112.44.0/22 36692 -146.112.48.0/20 36692 -146.112.64.0/22 36692 -146.112.72.0/24 36692 -146.112.78.0/23 36692 -146.112.80.0/21 36692 -146.112.96.0/21 36692 -146.112.112.0/23 36692 -146.112.116.0/22 36692 -146.112.127.0/24 36692 -146.112.128.0/21 36692 -146.112.136.0/22 36692 -146.112.140.0/24 36692 -146.112.142.0/23 36692 -146.112.144.0/20 36692 -146.112.160.0/21 36692 -146.112.176.0/24 36692 -146.112.184.0/22 36692 -146.112.188.0/24 36692 -146.112.190.0/24 36692 -146.112.192.0/22 36692 -146.112.196.0/23 36692 -146.112.198.0/24 36692 -146.112.200.0/23 36692 -146.112.203.0/24 36692 -146.112.208.0/24 36692 -146.112.210.0/23 36692 -146.112.212.0/24 36692 -146.112.214.0/23 36692 -146.112.216.0/23 36692 -146.112.221.0/24 36692 -146.112.222.0/23 36692 -146.112.224.0/19 36692 -146.113.0.0/16 19653 -146.114.0.0/16 1226 -146.115.0.0/21 6079 -146.115.8.0/23 6079 -146.115.10.0/24 46887 -146.115.11.0/24 6079 -146.115.12.0/24 22635 -146.115.13.0/24 6079 -146.115.14.0/23 6079 -146.115.16.0/20 6079 -146.115.32.0/19 6079 -146.115.64.0/18 6079 -146.115.128.0/18 6079 -146.115.192.0/21 6079 -146.115.200.0/24 12162 -146.115.201.0/24 6079 -146.115.202.0/23 6079 -146.115.204.0/22 6079 -146.115.208.0/20 6079 -146.115.224.0/19 6079 -146.116.0.0/19 17477 -146.116.32.0/19 1221 -146.116.64.0/18 1221 -146.116.128.0/17 1221 -146.118.0.0/16 134111 -146.119.0.0/16 201991 -146.120.0.0/21 60985 -146.120.8.0/22 57888 -146.120.12.0/24 48004 -146.120.13.0/24 50685 -146.120.14.0/24 50685 -146.120.15.0/24 44546 -146.120.16.0/22 58254 -146.120.20.0/22 57901 -146.120.24.0/21 197901 -146.120.32.0/21 42772 -146.120.40.0/21 42518 -146.120.48.0/20 42518 -146.120.64.0/20 42518 -146.120.80.0/21 42518 -146.120.88.0/24 61985 -146.120.89.0/24 197726 -146.120.90.0/24 61166 -146.120.91.0/24 62314 -146.120.92.0/23 210313 -146.120.94.0/24 64461 -146.120.95.0/24 49631 -146.120.96.0/24 44927 -146.120.97.0/24 44321 -146.120.98.0/23 51812 -146.120.100.0/24 41129 -146.120.101.0/24 41917 -146.120.102.0/23 41177 -146.120.104.0/22 48485 -146.120.108.0/24 60081 -146.120.109.0/24 59525 -146.120.110.0/24 12722 -146.120.111.0/24 44056 -146.120.112.0/24 209002 -146.120.113.0/24 43234 -146.120.114.0/23 51812 -146.120.116.0/22 20688 -146.120.120.0/22 61390 -146.120.124.0/22 197433 -146.120.128.0/20 42772 -146.120.144.0/21 42772 -146.120.152.0/22 42772 -146.120.156.0/23 51812 -146.120.158.0/23 16143 -146.120.160.0/21 44546 -146.120.168.0/23 43309 -146.120.170.0/24 43309 -146.120.171.0/24 205991 -146.120.172.0/23 60573 -146.120.174.0/23 44340 -146.120.176.0/22 49963 -146.120.180.0/22 49319 -146.120.184.0/22 44405 -146.120.188.0/22 43060 -146.120.192.0/22 43060 -146.120.196.0/23 201224 -146.120.198.0/24 42782 -146.120.199.0/24 56673 -146.120.200.0/22 41124 -146.120.204.0/23 44546 -146.120.206.0/23 49376 -146.120.208.0/22 62008 -146.120.212.0/23 42581 -146.120.214.0/24 42209 -146.120.215.0/24 61240 -146.120.216.0/22 39523 -146.120.220.0/24 42350 -146.120.221.0/24 47231 -146.120.222.0/24 42489 -146.120.223.0/24 44056 -146.120.224.0/24 44835 -146.120.225.0/24 43047 -146.120.226.0/24 48172 -146.120.227.0/24 208538 -146.120.228.0/22 44546 -146.120.232.0/21 51503 -146.120.240.0/24 204791 -146.120.241.0/24 208515 -146.120.242.0/23 44546 -146.120.244.0/24 57197 -146.120.245.0/24 41409 -146.120.246.0/23 44546 -146.120.248.0/22 204875 -146.120.252.0/22 47551 -146.121.20.0/22 14864 -146.121.24.0/23 14864 -146.121.26.0/24 14864 -146.122.0.0/16 22216 -146.123.128.0/23 2158 -146.123.137.0/24 2158 -146.123.138.0/23 2158 -146.123.143.0/24 2158 -146.123.144.0/23 2158 -146.124.0.0/16 3260 -146.126.0.0/16 6501 -146.127.40.0/23 6303 -146.127.42.0/23 14733 -146.127.60.0/24 14733 -146.127.61.0/24 6303 -146.127.222.0/24 14733 -146.127.223.0/24 6303 -146.127.224.0/21 6303 -146.127.232.0/21 14733 -146.127.240.0/21 6303 -146.127.248.0/21 14733 -146.129.0.0/16 2544 -146.130.32.0/22 19555 -146.130.36.0/24 19555 -146.132.0.0/23 10695 -146.132.2.0/23 393903 -146.132.4.0/22 10695 -146.132.8.0/21 10695 -146.132.16.0/20 10695 -146.132.32.0/19 10695 -146.132.64.0/18 10695 -146.132.128.0/17 10695 -146.133.0.0/18 12551 -146.133.64.0/19 12551 -146.133.96.0/20 12551 -146.133.112.0/21 12551 -146.133.120.0/22 12551 -146.133.124.0/23 12551 -146.133.126.0/24 12551 -146.133.127.0/24 16509 -146.133.128.0/17 12551 -146.134.0.0/20 1916 -146.134.16.0/24 1916 -146.134.17.0/24 262534 -146.134.18.0/23 1916 -146.134.20.0/22 1916 -146.134.24.0/21 1916 -146.134.32.0/19 1916 -146.134.64.0/18 1916 -146.134.128.0/17 1916 -146.135.0.0/19 5778 -146.135.32.0/20 209 -146.135.96.0/19 4283 -146.136.0.0/16 559 -146.137.0.0/16 683 -146.138.0.0/16 32982 -146.139.0.0/16 683 -146.140.0.0/16 12643 -146.141.0.0/16 2018 -146.142.0.0/16 7046 -146.145.0.0/22 7029 -146.145.4.0/24 36679 -146.145.5.0/24 7029 -146.145.6.0/23 7029 -146.145.8.0/21 7029 -146.145.16.0/20 7029 -146.145.32.0/19 7029 -146.145.64.0/18 7029 -146.145.128.0/21 7029 -146.145.136.0/22 7029 -146.145.140.0/24 40848 -146.145.141.0/24 7029 -146.145.142.0/23 7029 -146.145.144.0/24 7029 -146.145.145.0/24 36679 -146.145.146.0/23 7029 -146.145.148.0/22 7029 -146.145.152.0/21 7029 -146.145.160.0/19 7029 -146.145.192.0/18 7029 -146.146.5.0/24 22912 -146.146.6.0/23 22912 -146.148.0.0/17 15169 -146.148.128.0/19 26658 -146.148.160.0/21 8100 -146.148.168.0/21 22552 -146.148.176.0/20 26658 -146.148.192.0/18 26658 -146.151.0.0/16 59 -146.152.204.0/22 4983 -146.152.208.0/22 4983 -146.152.214.0/24 174 -146.152.239.0/24 4983 -146.152.242.0/23 4983 -146.152.244.0/22 4983 -146.152.253.0/24 4983 -146.154.0.0/16 270 -146.155.0.0/19 20191 -146.155.32.0/24 20191 -146.155.33.0/24 11340 -146.155.34.0/23 20191 -146.155.36.0/22 20191 -146.155.40.0/21 20191 -146.155.48.0/20 20191 -146.155.64.0/18 20191 -146.155.128.0/17 20191 -146.158.0.0/21 43849 -146.158.8.0/23 43849 -146.158.10.0/23 51812 -146.158.12.0/23 50516 -146.158.14.0/24 204323 -146.158.15.0/24 203680 -146.158.16.0/22 50025 -146.158.20.0/22 43533 -146.158.24.0/22 41124 -146.158.28.0/23 61406 -146.158.30.0/24 202668 -146.158.31.0/24 35273 -146.158.32.0/20 15428 -146.158.48.0/21 201012 -146.158.56.0/23 198056 -146.158.58.0/23 60754 -146.158.60.0/22 61390 -146.158.64.0/22 41124 -146.158.68.0/22 57764 -146.158.72.0/24 44546 -146.158.73.0/24 51500 -146.158.74.0/23 59888 -146.158.76.0/23 62366 -146.158.78.0/24 44546 -146.158.79.0/24 204514 -146.158.80.0/20 15428 -146.158.96.0/19 50923 -146.158.128.0/17 12479 -146.159.0.0/16 49071 -146.160.0.0/16 9605 -146.161.0.0/16 719 -146.162.129.0/24 1273 -146.162.240.0/22 1273 -146.163.0.0/16 53695 -146.164.0.0/16 2715 -146.165.0.0/16 1254 -146.166.0.0/16 14977 -146.168.0.0/20 32448 -146.168.16.0/23 32448 -146.168.18.0/23 36790 -146.168.20.0/23 36790 -146.168.22.0/24 26504 -146.168.23.0/24 21688 -146.168.24.0/24 32448 -146.168.25.0/24 36790 -146.168.26.0/24 36790 -146.168.27.0/24 32448 -146.168.28.0/22 32448 -146.168.32.0/20 36790 -146.168.48.0/21 36790 -146.168.56.0/22 32448 -146.168.60.0/23 32448 -146.168.62.0/24 32448 -146.168.63.0/24 21688 -146.168.64.0/18 11776 -146.168.128.0/22 32448 -146.168.132.0/23 36790 -146.168.134.0/23 23391 -146.168.136.0/23 21688 -146.168.138.0/24 26504 -146.168.139.0/24 23391 -146.168.140.0/24 36790 -146.168.141.0/24 26504 -146.168.142.0/23 36790 -146.168.144.0/23 21688 -146.168.146.0/23 26504 -146.168.148.0/22 26504 -146.168.152.0/22 26504 -146.168.156.0/24 11776 -146.168.157.0/24 26504 -146.168.158.0/23 32448 -146.168.160.0/23 26504 -146.168.162.0/24 26504 -146.168.163.0/24 21688 -146.168.164.0/23 21688 -146.168.166.0/23 23391 -146.168.168.0/22 11776 -146.168.172.0/24 26504 -146.168.173.0/24 23391 -146.168.174.0/24 23391 -146.168.176.0/23 11776 -146.168.182.0/24 11776 -146.168.184.0/21 11776 -146.168.192.0/19 11776 -146.168.224.0/20 11776 -146.168.240.0/20 21688 -146.169.0.0/16 786 -146.170.26.0/23 701 -146.171.0.0/20 2570 -146.171.16.0/24 4648 -146.171.17.0/24 2570 -146.171.18.0/24 2570 -146.171.19.0/24 4648 -146.171.20.0/22 2570 -146.171.24.0/21 2570 -146.171.32.0/19 2570 -146.171.64.0/18 2570 -146.171.128.0/17 2570 -146.172.0.0/16 2119 -146.174.0.0/17 209 -146.174.128.0/19 209 -146.174.160.0/21 209 -146.174.168.0/23 209 -146.174.170.0/23 2856 -146.174.172.0/22 209 -146.174.176.0/22 209 -146.174.180.0/22 8220 -146.174.184.0/21 209 -146.174.192.0/21 209 -146.174.200.0/24 7545 -146.174.201.0/24 209 -146.174.202.0/23 209 -146.174.204.0/24 4637 -146.174.205.0/24 209 -146.174.206.0/23 209 -146.174.208.0/20 209 -146.174.224.0/21 209 -146.174.232.0/22 209 -146.174.236.0/24 9534 -146.174.237.0/24 209 -146.174.238.0/23 209 -146.174.240.0/22 209 -146.174.244.0/23 209 -146.174.246.0/23 7018 -146.174.248.0/21 209 -146.175.0.0/16 2611 -146.176.0.0/16 786 -146.177.0.0/20 15395 -146.177.16.0/22 15395 -146.177.20.0/23 12200 -146.177.22.0/23 15395 -146.177.24.0/21 15395 -146.177.32.0/19 15395 -146.177.64.0/18 15395 -146.177.128.0/17 15395 -146.178.9.0/24 24120 -146.178.26.0/24 10223 -146.178.40.0/23 38809 -146.178.91.0/24 1221 -146.178.92.0/24 1221 -146.178.94.0/23 1221 -146.179.0.0/16 786 -146.180.104.0/24 17070 -146.180.106.0/24 17070 -146.180.117.0/24 17070 -146.180.190.0/24 17070 -146.180.243.0/24 17070 -146.182.0.0/16 37501 -146.184.0.0/24 32720 -146.184.1.0/24 3549 -146.184.4.0/24 3549 -146.184.6.0/24 32720 -146.184.120.0/22 32720 -146.184.152.0/23 2914 -146.184.154.0/24 2914 -146.184.155.0/24 32720 -146.184.156.0/24 32720 -146.184.160.0/20 32720 -146.185.0.0/21 41549 -146.185.8.0/21 51815 -146.185.16.0/20 13213 -146.185.32.0/22 38999 -146.185.36.0/23 38999 -146.185.38.0/24 38999 -146.185.40.0/21 47841 -146.185.48.0/21 197949 -146.185.56.0/21 57259 -146.185.64.0/19 8758 -146.185.96.0/19 33873 -146.185.128.0/18 14061 -146.185.192.0/22 50340 -146.185.196.0/22 34665 -146.185.200.0/22 62282 -146.185.204.0/23 62282 -146.185.206.0/24 62282 -146.185.207.0/24 50896 -146.185.208.0/22 34665 -146.185.213.0/24 41390 -146.185.214.0/23 202422 -146.185.216.0/23 202422 -146.185.218.0/23 199524 -146.185.220.0/23 199524 -146.185.222.0/24 50509 -146.185.223.0/24 34665 -146.185.224.0/21 34665 -146.185.232.0/24 41112 -146.185.233.0/24 41390 -146.185.234.0/24 34665 -146.185.235.0/24 56897 -146.185.236.0/24 202422 -146.185.238.0/24 57470 -146.185.239.0/24 5577 -146.185.240.0/22 34665 -146.185.244.0/23 34665 -146.185.246.0/23 201781 -146.185.248.0/24 60144 -146.185.249.0/24 34665 -146.185.250.0/23 34665 -146.185.252.0/24 34665 -146.185.253.0/24 50673 -146.185.254.0/23 42632 -146.186.0.0/16 3999 -146.187.0.0/16 3935 -146.188.0.0/16 702 -146.189.0.0/16 1968 -146.191.0.0/16 786 -146.192.0.0/17 5619 -146.192.128.0/17 13243 -146.193.0.0/16 5516 -146.194.0.0/18 25049 -146.195.20.0/23 17654 -146.195.30.0/24 17654 -146.195.80.0/23 17654 -146.195.82.0/24 17654 -146.195.84.0/24 17654 -146.195.88.0/24 17654 -146.195.96.0/20 17654 -146.195.112.0/24 17654 -146.195.128.0/22 17654 -146.195.135.0/24 17654 -146.195.144.0/24 17654 -146.195.172.0/24 17654 -146.195.180.0/24 17654 -146.195.184.0/22 17654 -146.195.216.0/24 17654 -146.195.218.0/23 17654 -146.195.225.0/24 17654 -146.195.246.0/24 17654 -146.195.254.0/24 17654 -146.196.4.0/24 55491 -146.196.10.0/24 55491 -146.196.32.0/21 133982 -146.196.40.0/22 132652 -146.196.44.0/22 135872 -146.196.48.0/22 135155 -146.196.52.0/22 133380 -146.196.56.0/22 3356 -146.196.60.0/22 134874 -146.196.64.0/22 45899 -146.196.68.0/22 4837 -146.196.73.0/24 137443 -146.196.74.0/24 137443 -146.196.76.0/23 135391 -146.196.78.0/24 138607 -146.196.79.0/24 135391 -146.196.80.0/23 137443 -146.196.82.0/23 136933 -146.196.84.0/22 135140 -146.196.88.0/23 9902 -146.196.90.0/23 135273 -146.196.96.0/22 38320 -146.196.104.0/22 38320 -146.196.108.0/23 38320 -146.196.110.0/24 38320 -146.196.111.0/24 139460 -146.196.112.0/22 137787 -146.196.120.0/22 133285 -146.196.124.0/22 137787 -146.196.128.0/17 37309 -146.197.27.0/24 3549 -146.197.44.0/23 54535 -146.197.46.0/23 22205 -146.197.50.0/23 54535 -146.197.52.0/23 54535 -146.197.56.0/23 54535 -146.197.62.0/24 3549 -146.197.79.0/24 3549 -146.197.83.0/24 3549 -146.197.120.0/22 54535 -146.197.176.0/22 54535 -146.197.181.0/24 14492 -146.197.183.0/24 22205 -146.197.184.0/23 54535 -146.197.186.0/23 22205 -146.197.188.0/23 54535 -146.197.192.0/23 54535 -146.197.198.0/23 54535 -146.197.200.0/23 54535 -146.197.242.0/24 3549 -146.197.246.0/24 3549 -146.197.250.0/24 46264 -146.198.0.0/15 6871 -146.200.0.0/16 6871 -146.201.0.0/16 2553 -146.203.0.0/17 11452 -146.203.128.0/20 11452 -146.203.144.0/21 11452 -146.203.192.0/18 11452 -146.206.0.0/16 209 -146.209.128.0/19 19254 -146.209.222.0/23 19254 -146.209.224.0/23 19254 -146.210.0.0/16 42114 -146.211.0.0/16 16086 -146.212.0.0/16 21283 -146.213.0.0/16 5619 -146.214.16.0/21 396207 -146.214.64.0/23 42213 -146.214.80.0/23 2856 -146.214.96.0/21 62882 -146.214.192.0/24 62882 -146.214.194.0/23 62882 -146.214.196.0/22 62882 -146.214.200.0/22 62882 -146.215.0.0/21 9619 -146.215.8.0/21 38258 -146.215.16.0/20 9619 -146.215.32.0/19 9619 -146.215.64.0/23 9619 -146.215.66.0/24 10223 -146.215.67.0/24 9619 -146.215.68.0/22 9619 -146.215.72.0/21 9619 -146.215.80.0/20 9619 -146.215.96.0/19 9619 -146.215.128.0/17 9619 -146.216.0.0/22 204590 -146.217.0.0/16 20478 -146.218.0.0/18 12086 -146.218.64.0/19 12086 -146.218.96.0/20 12086 -146.218.112.0/21 12086 -146.218.128.0/18 12086 -146.218.196.0/22 12086 -146.218.200.0/21 12086 -146.218.208.0/23 12086 -146.218.210.0/24 16713 -146.218.236.0/22 12086 -146.218.240.0/21 12086 -146.218.248.0/22 12086 -146.218.252.0/23 12086 -146.218.254.0/24 12086 -146.219.0.0/16 16153 -146.220.32.0/24 196809 -146.220.33.0/24 15965 -146.220.34.0/24 15965 -146.220.80.0/20 44334 -146.220.248.0/24 208983 -146.221.0.0/16 7474 -146.222.1.0/24 9502 -146.222.2.0/23 9502 -146.222.4.0/22 9502 -146.222.8.0/22 9502 -146.222.12.0/24 9502 -146.222.15.0/24 9502 -146.222.16.0/23 9502 -146.222.18.0/24 3491 -146.222.19.0/24 9502 -146.222.20.0/24 9502 -146.222.23.0/24 9502 -146.222.24.0/24 9502 -146.222.25.0/24 3491 -146.222.26.0/23 3491 -146.222.28.0/23 3491 -146.222.35.0/24 3491 -146.222.37.0/24 3491 -146.222.38.0/24 3491 -146.222.46.0/24 3491 -146.222.47.0/24 9502 -146.222.48.0/24 3491 -146.222.49.0/24 9502 -146.222.50.0/24 9502 -146.222.57.0/24 9502 -146.222.59.0/24 9502 -146.222.64.0/24 3491 -146.222.68.0/24 3491 -146.222.76.0/23 9502 -146.222.79.0/24 4134 -146.222.80.0/24 9502 -146.222.81.0/24 4134 -146.222.82.0/24 9502 -146.222.86.0/24 9502 -146.222.93.0/24 9502 -146.222.94.0/24 4134 -146.222.96.0/24 9502 -146.222.99.0/24 9502 -146.222.100.0/24 9502 -146.222.101.0/24 12018 -146.222.104.0/23 9502 -146.222.117.0/24 9502 -146.222.118.0/24 3491 -146.222.119.0/24 12018 -146.222.120.0/23 12018 -146.222.122.0/24 7018 -146.222.123.0/24 12018 -146.222.124.0/23 7018 -146.222.126.0/24 12018 -146.222.127.0/24 62974 -146.222.129.0/24 62974 -146.222.130.0/24 7018 -146.222.132.0/24 7018 -146.222.134.0/23 7018 -146.222.136.0/24 7018 -146.222.139.0/24 7018 -146.222.140.0/24 7018 -146.222.141.0/24 12018 -146.222.144.0/24 7018 -146.222.145.0/24 2685 -146.222.147.0/24 2685 -146.222.151.0/24 7018 -146.222.153.0/24 7018 -146.222.154.0/23 7018 -146.222.164.0/24 12018 -146.222.168.0/24 12018 -146.222.179.0/24 9502 -146.222.184.0/24 3491 -146.222.185.0/24 13633 -146.222.186.0/24 13633 -146.222.187.0/24 3491 -146.222.194.0/24 3491 -146.222.195.0/24 13633 -146.222.198.0/23 9502 -146.222.200.0/21 12190 -146.222.208.0/23 12190 -146.222.210.0/24 1273 -146.222.211.0/24 702 -146.222.212.0/23 12190 -146.222.214.0/24 702 -146.222.227.0/24 1273 -146.222.233.0/24 13633 -146.222.238.0/23 3491 -146.222.240.0/24 3491 -146.222.241.0/24 9502 -146.222.246.0/23 9502 -146.224.0.0/16 3292 -146.226.0.0/16 20243 -146.227.0.0/16 786 -146.228.0.0/16 1836 -146.229.0.0/16 10364 -146.230.0.0/16 2018 -146.231.0.0/16 37520 -146.232.0.0/16 2018 -146.233.0.0/24 53527 -146.233.171.0/24 53527 -146.233.172.0/24 53527 -146.233.255.0/24 53527 -146.234.0.0/16 43857 -146.235.0.0/16 10857 -146.236.200.0/24 18491 -146.236.202.0/24 35953 -146.241.0.0/16 35612 -146.242.18.0/24 32067 -146.242.19.0/24 3145 -146.242.20.0/23 16050 -146.242.22.0/24 24012 -146.242.24.0/24 24012 -146.242.25.0/24 12128 -146.242.27.0/24 10457 -146.242.29.0/24 3145 -146.242.30.0/24 10457 -146.242.32.0/22 32067 -146.242.36.0/24 24012 -146.242.37.0/24 3145 -146.242.38.0/23 3145 -146.242.48.0/23 4583 -146.242.50.0/24 4583 -146.242.54.0/24 32067 -146.242.55.0/24 26542 -146.242.56.0/24 4583 -146.242.57.0/24 10457 -146.242.60.0/24 10457 -146.242.62.0/23 24012 -146.243.0.0/16 6527 -146.244.0.0/16 2152 -146.245.0.0/16 31822 -146.246.0.0/16 3562 -146.247.0.0/23 39028 -146.247.8.0/21 8659 -146.247.16.0/21 50428 -146.247.24.0/22 57127 -146.247.32.0/21 44507 -146.247.40.0/22 197953 -146.247.44.0/23 197953 -146.247.46.0/24 203239 -146.247.47.0/24 199336 -146.247.48.0/20 24851 -146.247.64.0/21 199666 -146.247.76.0/22 49544 -146.247.80.0/21 45011 -146.247.88.0/21 49961 -146.247.96.0/19 57037 -146.247.128.0/20 50608 -146.247.144.0/23 50608 -146.247.146.0/23 12552 -146.247.148.0/24 12552 -146.247.149.0/24 50608 -146.247.150.0/24 12552 -146.247.151.0/24 50608 -146.247.152.0/23 50608 -146.247.154.0/24 12552 -146.247.155.0/24 50608 -146.247.156.0/23 50608 -146.247.158.0/24 50608 -146.247.159.0/24 12552 -146.247.160.0/19 12552 -146.247.192.0/19 12552 -146.247.224.0/23 50608 -146.247.226.0/24 50608 -146.247.227.0/24 12552 -146.247.228.0/22 12552 -146.247.232.0/22 50608 -146.247.236.0/23 50608 -146.247.238.0/23 12552 -146.247.240.0/23 12552 -146.247.242.0/23 50608 -146.247.244.0/23 50608 -146.247.246.0/24 12552 -146.247.247.0/24 50608 -146.247.248.0/24 50608 -146.247.249.0/24 12552 -146.247.250.0/24 12552 -146.247.251.0/24 50608 -146.247.252.0/23 50608 -146.247.254.0/24 12552 -146.247.255.0/24 50608 -146.249.0.0/16 12765 -146.250.0.0/16 8147 -146.251.0.0/16 35819 -146.253.51.0/24 21108 -146.255.0.0/20 8586 -146.255.16.0/22 29119 -146.255.24.0/21 39896 -146.255.32.0/20 21501 -146.255.48.0/21 39647 -146.255.56.0/21 47692 -146.255.64.0/22 34547 -146.255.68.0/24 34547 -146.255.69.0/24 16333 -146.255.72.0/24 34547 -146.255.74.0/23 43612 -146.255.76.0/24 204031 -146.255.78.0/23 34547 -146.255.80.0/22 34547 -146.255.84.0/23 34547 -146.255.87.0/24 34547 -146.255.88.0/24 201683 -146.255.89.0/24 34547 -146.255.92.0/23 34547 -146.255.96.0/21 57286 -146.255.104.0/21 57099 -146.255.112.0/22 43127 -146.255.116.0/22 200562 -146.255.120.0/22 53786 -146.255.124.0/22 9255 -146.255.128.0/19 42560 -146.255.160.0/21 34758 -146.255.168.0/21 43858 -146.255.176.0/21 2586 -146.255.192.0/21 42632 -146.255.200.0/23 42632 -146.255.216.0/21 42632 -146.255.224.0/19 15491 -147.0.0.0/20 10796 -147.0.16.0/21 10796 -147.0.24.0/22 10796 -147.0.28.0/23 10796 -147.0.30.0/24 10796 -147.0.31.0/24 395289 -147.0.32.0/19 10796 -147.0.64.0/18 10796 -147.0.128.0/17 10796 -147.1.8.0/24 2615 -147.1.10.0/23 38809 -147.1.18.0/24 2615 -147.1.23.0/24 2615 -147.1.24.0/22 2615 -147.1.28.0/24 2615 -147.1.38.0/24 2615 -147.1.52.0/23 2615 -147.1.66.0/23 1239 -147.1.104.0/24 2615 -147.1.124.0/22 2615 -147.1.140.0/24 2615 -147.1.154.0/24 2615 -147.1.184.0/24 2615 -147.1.186.0/24 2615 -147.1.210.0/24 2615 -147.1.224.0/24 38809 -147.1.225.0/24 2615 -147.1.234.0/23 2615 -147.1.236.0/23 2615 -147.1.244.0/23 2615 -147.1.247.0/24 2615 -147.2.128.0/17 3680 -147.3.0.0/16 10753 -147.4.0.0/16 33703 -147.6.0.0/16 9760 -147.8.0.0/16 4528 -147.9.0.0/16 32064 -147.10.0.0/16 135887 -147.11.0.0/16 16920 -147.12.0.0/20 35467 -147.12.16.0/24 200596 -147.12.31.0/24 200596 -147.12.32.0/19 203424 -147.12.64.0/19 201205 -147.12.128.0/17 201838 -147.13.0.0/16 3301 -147.14.0.0/16 41076 -147.21.8.0/21 20470 -147.21.32.0/21 26933 -147.21.64.0/22 53418 -147.21.68.0/23 53418 -147.21.160.0/19 19536 -147.21.252.0/24 62747 -147.26.0.0/16 18777 -147.27.0.0/16 8278 -147.28.0.0/19 3130 -147.28.32.0/24 58361 -147.28.33.0/24 3130 -147.28.34.0/23 3130 -147.28.36.0/22 3130 -147.28.40.0/23 58362 -147.28.42.0/23 3130 -147.28.44.0/23 58363 -147.28.46.0/24 58363 -147.28.47.0/24 3130 -147.28.48.0/23 58364 -147.28.50.0/24 58364 -147.28.51.0/24 3130 -147.28.52.0/23 58365 -147.28.54.0/24 58365 -147.28.55.0/24 3130 -147.28.56.0/21 3130 -147.28.64.0/18 3130 -147.28.128.0/18 3130 -147.28.192.0/19 3130 -147.28.224.0/20 47065 -147.28.240.0/21 47065 -147.28.248.0/23 47065 -147.28.250.0/23 3130 -147.28.252.0/23 3130 -147.28.254.0/23 47065 -147.29.0.0/17 5624 -147.29.128.0/20 5624 -147.29.144.0/22 5624 -147.29.148.0/23 5624 -147.29.150.0/23 3292 -147.29.152.0/21 5624 -147.29.160.0/19 5624 -147.29.192.0/18 5624 -147.30.0.0/16 9198 -147.31.0.0/16 33287 -147.32.0.0/15 2852 -147.34.0.0/16 13541 -147.35.0.0/16 1580 -147.36.0.0/16 1559 -147.37.0.0/19 1551 -147.39.0.0/16 531 -147.41.0.0/16 37978 -147.43.0.0/16 7564 -147.44.0.0/16 1759 -147.45.0.0/16 2895 -147.46.0.0/16 9488 -147.47.0.0/18 9488 -147.47.64.0/19 9488 -147.47.96.0/20 9488 -147.47.112.0/21 9488 -147.47.120.0/21 1237 -147.47.128.0/17 9488 -147.48.64.0/18 5180 -147.48.192.0/18 5180 -147.49.0.0/16 4152 -147.50.0.0/24 137919 -147.50.1.0/24 4750 -147.50.2.0/24 137977 -147.50.3.0/24 4750 -147.50.4.0/22 4750 -147.50.8.0/21 4750 -147.50.16.0/24 133791 -147.50.17.0/24 4750 -147.50.18.0/23 4750 -147.50.20.0/22 4750 -147.50.24.0/21 4750 -147.50.32.0/21 4750 -147.50.40.0/24 45199 -147.50.41.0/24 4750 -147.50.42.0/23 4750 -147.50.44.0/22 4750 -147.50.48.0/20 4750 -147.50.64.0/18 4750 -147.50.128.0/18 4750 -147.50.192.0/19 4750 -147.50.224.0/22 9891 -147.50.228.0/22 4750 -147.50.232.0/22 9891 -147.50.236.0/22 4750 -147.50.240.0/23 138156 -147.50.242.0/23 4750 -147.50.244.0/22 4750 -147.50.248.0/21 4750 -147.51.0.0/18 1491 -147.51.64.0/19 1491 -147.51.96.0/23 1491 -147.51.98.0/24 1541 -147.51.99.0/24 1491 -147.51.100.0/22 1491 -147.51.104.0/21 1491 -147.51.112.0/20 1491 -147.51.128.0/17 1491 -147.52.0.0/16 6867 -147.53.0.0/16 1265 -147.55.0.0/16 4193 -147.56.0.0/16 4193 -147.58.0.0/16 1533 -147.60.1.0/24 10100 -147.60.2.0/24 10100 -147.60.4.0/22 10100 -147.60.12.0/24 10100 -147.60.19.0/24 10100 -147.60.21.0/24 10100 -147.60.24.0/24 10100 -147.60.27.0/24 10100 -147.60.58.0/23 10100 -147.62.2.0/23 197039 -147.62.65.0/24 197039 -147.62.75.0/24 197039 -147.62.110.0/23 29197 -147.62.177.0/24 197039 -147.62.187.0/24 197039 -147.63.29.0/24 701 -147.63.164.0/22 14733 -147.64.0.0/21 22192 -147.64.8.0/23 22192 -147.64.10.0/24 22192 -147.64.11.0/24 14877 -147.64.12.0/22 22192 -147.64.16.0/20 22192 -147.64.32.0/19 22192 -147.64.64.0/18 22192 -147.64.128.0/17 22192 -147.65.0.0/16 262829 -147.66.0.0/16 38474 -147.67.0.0/16 42848 -147.69.0.0/16 1221 -147.70.0.0/16 19899 -147.71.0.0/16 1489 -147.72.0.0/17 5050 -147.72.128.0/18 5050 -147.72.192.0/19 5050 -147.72.224.0/21 3503 -147.72.232.0/23 5050 -147.72.234.0/24 3503 -147.72.235.0/24 46616 -147.72.236.0/22 5050 -147.72.240.0/23 3503 -147.72.242.0/23 5050 -147.72.244.0/22 5050 -147.72.248.0/22 5050 -147.72.252.0/22 36407 -147.73.0.0/23 5050 -147.73.2.0/23 1207 -147.73.4.0/24 5050 -147.73.5.0/24 1207 -147.73.6.0/24 5050 -147.73.7.0/24 1207 -147.73.8.0/21 1207 -147.73.16.0/20 1207 -147.73.32.0/19 1207 -147.73.64.0/18 1207 -147.73.128.0/17 1207 -147.74.0.0/16 385 -147.75.0.0/20 35914 -147.75.20.0/22 35914 -147.75.24.0/21 35914 -147.75.32.0/23 54825 -147.75.34.0/24 54825 -147.75.36.0/22 54825 -147.75.40.0/22 54825 -147.75.45.0/24 54825 -147.75.46.0/24 54825 -147.75.48.0/22 54825 -147.75.52.0/24 54825 -147.75.54.0/23 54825 -147.75.56.0/22 54825 -147.75.60.0/24 54825 -147.75.62.0/23 54825 -147.75.64.0/20 54825 -147.75.80.0/22 54825 -147.75.84.0/23 54825 -147.75.88.0/21 54825 -147.75.96.0/20 54825 -147.75.112.0/20 262186 -147.75.128.0/24 27257 -147.75.129.0/24 32475 -147.75.130.0/23 36351 -147.75.132.0/23 36351 -147.75.160.0/20 21637 -147.75.177.0/24 30109 -147.75.178.0/23 30109 -147.75.190.0/23 30109 -147.75.192.0/20 54825 -147.75.224.0/20 11179 -147.75.243.0/24 30109 -147.75.244.0/24 30109 -147.75.246.0/23 30109 -147.75.248.0/22 30109 -147.75.252.0/24 30109 -147.75.254.0/24 30109 -147.76.0.0/23 10152 -147.76.19.0/24 38809 -147.76.21.0/24 7474 -147.76.28.0/24 2764 -147.76.51.0/24 10152 -147.76.52.0/23 2764 -147.76.54.0/23 136518 -147.76.60.0/24 136518 -147.76.62.0/23 136518 -147.76.99.0/24 136518 -147.76.100.0/24 136518 -147.76.180.0/23 10152 -147.76.240.0/24 38809 -147.76.241.0/24 2764 -147.78.0.0/22 62416 -147.78.4.0/23 35691 -147.78.7.0/24 56335 -147.78.8.0/22 57803 -147.78.12.0/22 9009 -147.78.20.0/22 205124 -147.78.24.0/22 209535 -147.78.28.0/22 209424 -147.78.32.0/24 209553 -147.78.34.0/24 208271 -147.78.40.0/22 208574 -147.78.44.0/22 48847 -147.78.48.0/22 396319 -147.78.52.0/22 48095 -147.78.56.0/22 29148 -147.78.60.0/24 40513 -147.78.62.0/24 40513 -147.78.64.0/22 50113 -147.78.76.0/22 42956 -147.78.80.0/22 24751 -147.78.84.0/22 48066 -147.78.88.0/22 61157 -147.78.96.0/24 208686 -147.78.100.0/22 43659 -147.78.112.0/22 21211 -147.78.116.0/22 203948 -147.78.120.0/22 30823 -147.78.124.0/24 395800 -147.78.128.0/22 43571 -147.78.132.0/23 4809 -147.78.134.0/23 4134 -147.78.144.0/22 209323 -147.78.148.0/22 208057 -147.78.152.0/22 132839 -147.78.160.0/22 209425 -147.78.164.0/22 41114 -147.78.168.0/22 209531 -147.78.172.0/22 209532 -147.78.176.0/22 3214 -147.78.180.0/22 208058 -147.78.184.0/22 209634 -147.78.192.0/22 209898 -147.78.196.0/22 62370 -147.78.200.0/22 15525 -147.78.207.0/24 9009 -147.78.216.0/22 9119 -147.78.220.0/24 24961 -147.78.221.0/24 35913 -147.78.222.0/24 395800 -147.78.223.0/24 209609 -147.78.224.0/22 209723 -147.78.228.0/24 57773 -147.78.229.0/24 12552 -147.78.230.0/23 12552 -147.78.232.0/22 209541 -147.78.236.0/23 39587 -147.78.240.0/21 8100 -147.78.248.0/22 59890 -147.78.252.0/22 209191 -147.79.176.0/20 14327 -147.79.224.0/19 14327 -147.80.0.0/16 1761 -147.81.1.0/24 7046 -147.81.2.0/24 7046 -147.81.4.0/24 7046 -147.81.8.0/24 7046 -147.81.11.0/24 7046 -147.81.14.0/24 7046 -147.81.16.0/24 7046 -147.81.21.0/24 7046 -147.81.28.0/23 7046 -147.81.30.0/24 7046 -147.81.37.0/24 7046 -147.81.40.0/24 7046 -147.81.54.0/24 7046 -147.81.70.0/24 7046 -147.81.90.0/23 7046 -147.81.92.0/23 7046 -147.81.94.0/24 7046 -147.81.96.0/23 7046 -147.81.100.0/22 7046 -147.81.104.0/22 7046 -147.81.152.0/24 7046 -147.81.184.0/22 7046 -147.81.193.0/24 7046 -147.81.210.0/24 7046 -147.81.224.0/23 7046 -147.81.245.0/24 29748 -147.81.246.0/23 29748 -147.81.248.0/21 40107 -147.83.0.0/16 13041 -147.84.0.0/16 39069 -147.85.172.0/23 29197 -147.85.186.0/23 29197 -147.85.216.0/24 29197 -147.85.228.0/24 29197 -147.86.0.0/15 559 -147.88.0.0/16 559 -147.89.224.0/20 43453 -147.90.1.0/24 3356 -147.90.5.0/24 3356 -147.90.180.0/24 3356 -147.91.0.0/21 13092 -147.91.8.0/21 6701 -147.91.16.0/20 13092 -147.91.32.0/19 13092 -147.91.64.0/18 13092 -147.91.128.0/17 13092 -147.92.0.0/22 6122 -147.92.16.0/20 16433 -147.92.32.0/20 59371 -147.92.48.0/22 395194 -147.92.52.0/22 64267 -147.92.56.0/22 64224 -147.92.60.0/22 396969 -147.92.64.0/20 54182 -147.92.80.0/21 53764 -147.92.88.0/22 396097 -147.92.92.0/22 62642 -147.92.96.0/20 63242 -147.92.112.0/21 62514 -147.92.120.0/21 21557 -147.92.128.0/17 38631 -147.93.246.0/23 5488 -147.93.249.0/24 5488 -147.93.250.0/24 5488 -147.93.253.0/24 5488 -147.93.254.0/24 5488 -147.93.255.0/24 9031 -147.94.0.0/16 2457 -147.95.0.0/16 8762 -147.96.0.0/16 766 -147.97.0.0/21 30408 -147.97.8.0/24 40581 -147.97.9.0/24 30408 -147.97.10.0/23 30408 -147.97.12.0/22 40581 -147.97.16.0/21 40581 -147.97.24.0/22 30408 -147.97.28.0/23 30408 -147.97.30.0/23 40581 -147.97.32.0/19 30408 -147.97.64.0/18 30408 -147.97.128.0/17 30408 -147.98.0.0/16 34006 -147.99.0.0/18 2200 -147.99.64.0/20 2200 -147.99.80.0/21 2200 -147.99.88.0/21 2471 -147.99.96.0/19 2200 -147.99.128.0/17 2200 -147.100.0.0/16 2200 -147.102.0.0/16 3323 -147.103.0.0/17 1503 -147.103.128.0/19 1503 -147.103.160.0/20 1541 -147.103.176.0/20 1503 -147.103.192.0/18 1503 -147.104.0.0/24 5953 -147.104.22.0/23 1501 -147.104.24.0/24 1501 -147.104.96.0/24 5953 -147.104.244.0/23 5953 -147.105.0.0/22 22522 -147.105.4.0/24 22522 -147.105.6.0/23 22522 -147.105.247.0/24 22522 -147.105.248.0/23 22522 -147.105.250.0/24 22522 -147.105.254.0/23 22522 -147.106.0.0/16 19096 -147.108.0.0/16 54363 -147.109.0.0/16 37978 -147.110.4.0/24 37121 -147.110.13.0/24 37121 -147.110.16.0/23 37121 -147.110.19.0/24 37121 -147.110.20.0/24 37121 -147.110.24.0/24 37121 -147.110.32.0/24 37121 -147.110.37.0/24 37121 -147.110.42.0/24 37121 -147.110.44.0/24 37121 -147.110.46.0/24 37121 -147.110.48.0/22 37121 -147.110.52.0/24 37121 -147.110.56.0/24 37121 -147.110.59.0/24 37121 -147.110.61.0/24 37121 -147.110.62.0/24 37121 -147.110.64.0/24 37121 -147.110.66.0/24 37121 -147.110.69.0/24 37121 -147.110.92.0/24 37121 -147.110.106.0/24 37121 -147.110.112.0/24 37121 -147.110.150.0/24 37121 -147.110.166.0/24 37121 -147.110.192.0/24 37121 -147.110.194.0/23 37121 -147.110.199.0/24 37121 -147.110.200.0/24 37121 -147.110.202.0/24 37121 -147.110.231.0/24 37121 -147.110.248.0/23 37121 -147.110.251.0/24 37121 -147.110.253.0/24 37121 -147.110.255.0/24 37121 -147.111.0.0/16 199791 -147.114.44.0/23 50432 -147.114.46.0/23 50422 -147.114.224.0/23 50422 -147.114.226.0/24 50432 -147.117.0.0/17 8147 -147.117.128.0/18 8147 -147.117.192.0/19 8147 -147.117.224.0/20 8147 -147.117.240.0/21 8147 -147.117.248.0/22 8147 -147.117.252.0/24 395592 -147.117.253.0/24 8147 -147.117.254.0/23 8147 -147.118.0.0/16 10370 -147.120.0.0/16 32243 -147.121.174.0/24 4637 -147.122.0.0/16 137 -147.123.0.0/16 6734 -147.124.0.0/16 1432 -147.125.0.0/16 2488 -147.126.0.0/16 7968 -147.127.0.0/16 1715 -147.128.0.0/16 158 -147.129.0.0/16 395577 -147.130.0.0/17 1482 -147.130.128.0/17 721 -147.131.0.0/16 721 -147.132.0.0/16 9650 -147.133.0.0/16 33632 -147.134.0.0/19 30569 -147.134.32.0/24 30569 -147.134.44.0/22 30569 -147.134.48.0/20 30569 -147.134.64.0/23 30569 -147.134.66.0/24 30569 -147.134.72.0/23 30569 -147.134.74.0/24 30569 -147.134.88.0/24 30569 -147.134.91.0/24 30569 -147.134.92.0/22 30569 -147.134.96.0/24 30569 -147.134.98.0/23 30569 -147.134.100.0/22 30569 -147.134.104.0/24 30569 -147.134.107.0/24 30569 -147.134.108.0/22 30569 -147.134.112.0/24 30569 -147.134.117.0/24 30569 -147.134.118.0/23 30569 -147.134.120.0/21 30569 -147.134.130.0/23 30569 -147.134.132.0/22 30569 -147.134.136.0/21 30569 -147.134.144.0/24 30569 -147.134.155.0/24 30569 -147.134.167.0/24 30569 -147.134.176.0/23 30569 -147.134.179.0/24 30569 -147.134.180.0/22 30569 -147.134.192.0/24 30569 -147.134.218.0/23 30569 -147.134.227.0/24 30569 -147.134.240.0/22 30569 -147.134.247.0/24 30569 -147.134.250.0/24 30569 -147.134.254.0/23 30569 -147.135.0.0/16 16276 -147.137.0.0/16 20214 -147.138.0.0/16 397179 -147.139.0.0/16 45102 -147.140.0.0/16 22644 -147.142.0.0/16 553 -147.143.0.0/16 786 -147.144.0.0/16 2152 -147.145.0.0/16 8075 -147.147.0.0/16 6871 -147.148.0.0/14 2856 -147.152.0.0/16 2856 -147.153.0.0/16 14041 -147.154.0.0/18 31898 -147.154.64.0/20 31898 -147.154.80.0/21 31898 -147.154.96.0/19 31898 -147.154.128.0/18 31898 -147.154.192.0/20 31898 -147.154.208.0/21 31898 -147.154.224.0/19 31898 -147.155.0.0/16 2640 -147.156.0.0/16 766 -147.157.0.0/16 2907 -147.158.0.0/16 4788 -147.160.0.0/24 12087 -147.160.1.0/24 46184 -147.160.2.0/23 393964 -147.160.4.0/24 397488 -147.160.6.0/24 395341 -147.160.7.0/24 397303 -147.160.8.0/21 18615 -147.160.24.0/21 54501 -147.160.32.0/21 20224 -147.160.40.0/22 54904 -147.160.44.0/22 14414 -147.160.49.0/24 62629 -147.160.51.0/24 397606 -147.160.54.0/24 16843 -147.160.55.0/24 31292 -147.160.61.0/24 53355 -147.160.62.0/23 396097 -147.160.128.0/22 395876 -147.160.132.0/24 394229 -147.160.133.0/24 16509 -147.160.134.0/24 397697 -147.160.135.0/24 10912 -147.160.138.0/23 46781 -147.160.140.0/23 16843 -147.160.143.0/24 62887 -147.160.144.0/24 398151 -147.160.147.0/24 397134 -147.160.148.0/24 20473 -147.160.150.0/23 397328 -147.160.154.0/24 20115 -147.160.156.0/24 54687 -147.160.157.0/24 6405 -147.160.158.0/24 23352 -147.160.160.0/24 398027 -147.160.161.0/24 397503 -147.160.162.0/23 397457 -147.160.166.0/24 40956 -147.160.167.0/24 14618 -147.160.168.0/23 63201 -147.160.170.0/24 397326 -147.160.172.0/22 396006 -147.160.192.0/19 15054 -147.160.224.0/20 22353 -147.160.240.0/23 46568 -147.160.243.0/24 394102 -147.160.244.0/23 209 -147.160.246.0/24 47869 -147.160.247.0/24 25775 -147.160.248.0/23 14120 -147.160.250.0/24 14120 -147.160.254.0/23 14120 -147.161.0.0/23 1680 -147.161.4.0/22 10958 -147.161.64.0/18 35699 -147.161.128.0/17 22616 -147.162.0.0/15 137 -147.164.0.0/16 1484 -147.165.0.0/16 1482 -147.166.0.0/16 1452 -147.169.0.0/17 1474 -147.169.128.0/19 1474 -147.169.160.0/20 1541 -147.169.176.0/22 1541 -147.169.180.0/22 1474 -147.169.184.0/21 1474 -147.169.192.0/18 1474 -147.171.0.0/16 1942 -147.172.0.0/16 680 -147.173.0.0/16 1942 -147.174.0.0/16 25968 -147.175.0.0/16 2607 -147.177.0.0/16 243 -147.178.0.0/23 12257 -147.178.2.0/24 12257 -147.178.4.0/22 12257 -147.178.8.0/22 12257 -147.178.192.0/20 64208 -147.178.208.0/20 6812 -147.178.224.0/21 136405 -147.178.232.0/21 136407 -147.178.240.0/21 64208 -147.178.248.0/22 64208 -147.178.252.0/24 46977 -147.180.0.0/16 19399 -147.181.4.0/22 202553 -147.181.8.0/21 202553 -147.181.16.0/23 202553 -147.181.36.0/22 202553 -147.181.64.0/18 48037 -147.182.0.0/23 27555 -147.182.2.0/24 7046 -147.182.4.0/23 27555 -147.182.16.0/24 27555 -147.182.38.0/24 27555 -147.182.48.0/23 208878 -147.182.63.0/24 208878 -147.182.64.0/20 137904 -147.182.214.0/24 2856 -147.183.1.0/24 20141 -147.183.2.0/24 20141 -147.183.3.0/24 3561 -147.183.4.0/24 20141 -147.185.112.0/24 19655 -147.185.114.0/23 395111 -147.185.116.0/22 21857 -147.185.120.0/21 10594 -147.185.160.0/20 26276 -147.185.177.0/24 26276 -147.185.244.0/24 26276 -147.186.0.0/16 2799 -147.187.0.0/23 63039 -147.187.2.0/24 63039 -147.187.10.0/24 63039 -147.187.12.0/22 63039 -147.187.16.0/22 63039 -147.187.100.0/24 63039 -147.187.110.0/24 63039 -147.187.115.0/24 63039 -147.187.128.0/23 63039 -147.187.130.0/24 63039 -147.187.132.0/24 7046 -147.187.210.0/23 63039 -147.187.220.0/24 63039 -147.188.0.0/16 786 -147.189.68.0/22 2856 -147.189.76.0/22 2856 -147.191.0.0/16 7922 -147.192.0.0/16 2527 -147.194.0.0/19 15128 -147.194.32.0/22 15128 -147.194.37.0/24 15128 -147.194.38.0/23 15128 -147.194.40.0/21 15128 -147.194.48.0/20 15128 -147.194.64.0/18 15128 -147.194.128.0/19 15128 -147.194.160.0/20 15128 -147.194.176.0/22 15128 -147.194.180.0/24 15128 -147.194.182.0/23 15128 -147.194.184.0/21 15128 -147.194.192.0/19 15128 -147.194.224.0/20 15128 -147.194.240.0/22 15128 -147.194.244.0/23 15128 -147.194.246.0/24 19905 -147.194.247.0/24 15128 -147.194.248.0/21 15128 -147.196.128.0/24 199541 -147.197.0.0/16 786 -147.198.0.0/18 1505 -147.198.64.0/20 1505 -147.198.80.0/21 1505 -147.198.88.0/23 1505 -147.198.90.0/24 1505 -147.198.91.0/24 1599 -147.198.92.0/22 1505 -147.198.96.0/19 1505 -147.198.128.0/18 1505 -147.198.192.0/19 1505 -147.198.224.0/20 1505 -147.198.240.0/21 1505 -147.198.248.0/23 1505 -147.198.250.0/24 1541 -147.198.251.0/24 1505 -147.198.252.0/22 1505 -147.200.0.0/23 55542 -147.200.9.0/24 55542 -147.200.26.0/23 55542 -147.200.28.0/23 55542 -147.200.41.0/24 55542 -147.200.199.0/24 55542 -147.202.0.0/20 10464 -147.202.16.0/21 10464 -147.202.24.0/22 10464 -147.202.28.0/24 395077 -147.202.29.0/24 10464 -147.202.30.0/23 10464 -147.202.64.0/21 18982 -147.202.72.0/24 10464 -147.202.80.0/21 18982 -147.202.96.0/19 10464 -147.202.128.0/19 10464 -147.202.160.0/19 19149 -147.202.192.0/21 54519 -147.202.200.0/22 54519 -147.202.204.0/23 54519 -147.202.206.0/24 54619 -147.202.207.0/24 54519 -147.202.208.0/20 54519 -147.203.0.0/21 6130 -147.203.8.0/22 6130 -147.203.12.0/24 53559 -147.203.13.0/24 6130 -147.203.14.0/24 53559 -147.203.15.0/24 6130 -147.203.16.0/22 6130 -147.203.20.0/24 53559 -147.203.21.0/24 6130 -147.203.22.0/23 6130 -147.203.24.0/24 53559 -147.203.25.0/24 6130 -147.203.26.0/23 6130 -147.203.28.0/22 6130 -147.203.32.0/19 6130 -147.203.64.0/19 6130 -147.203.96.0/23 6130 -147.203.98.0/24 6130 -147.203.99.0/24 53559 -147.203.100.0/23 55164 -147.203.102.0/24 6130 -147.203.103.0/24 55164 -147.203.104.0/22 6130 -147.203.108.0/24 53559 -147.203.109.0/24 6130 -147.203.110.0/24 55164 -147.203.111.0/24 6130 -147.203.112.0/24 55164 -147.203.113.0/24 6130 -147.203.114.0/24 55164 -147.203.115.0/24 6130 -147.203.116.0/24 55164 -147.203.117.0/24 6130 -147.203.118.0/23 6130 -147.203.120.0/23 6130 -147.203.122.0/24 55164 -147.203.123.0/24 6130 -147.203.124.0/24 55164 -147.203.125.0/24 6130 -147.203.126.0/24 53559 -147.203.127.0/24 6130 -147.203.128.0/19 6130 -147.203.160.0/22 55164 -147.203.164.0/23 55164 -147.203.166.0/24 55164 -147.203.167.0/24 6130 -147.203.168.0/21 6130 -147.203.176.0/20 6130 -147.203.192.0/23 6130 -147.203.194.0/24 53559 -147.203.195.0/24 6130 -147.203.196.0/23 6130 -147.203.198.0/24 53559 -147.203.199.0/24 6130 -147.203.200.0/21 6130 -147.203.208.0/20 6130 -147.203.224.0/19 6130 -147.204.2.0/24 3320 -147.205.0.0/16 13536 -147.206.1.0/24 63103 -147.206.2.0/24 63103 -147.206.5.0/24 63103 -147.206.6.0/24 63103 -147.206.15.0/24 63103 -147.206.16.0/24 63103 -147.206.19.0/24 63103 -147.206.20.0/22 63103 -147.206.38.0/23 63103 -147.206.98.0/23 20115 -147.207.0.0/17 10753 -147.207.128.0/18 10753 -147.207.192.0/19 10753 -147.207.224.0/20 10753 -147.207.240.0/22 10753 -147.207.244.0/23 10753 -147.207.246.0/24 12085 -147.207.247.0/24 10753 -147.207.248.0/21 10753 -147.208.0.0/19 3561 -147.208.128.0/18 3561 -147.209.0.0/16 17750 -147.210.0.0/16 2202 -147.211.0.0/16 132029 -147.213.0.0/16 2607 -147.214.0.0/16 158 -147.215.0.0/16 2439 -147.216.0.0/16 1498 -147.217.0.0/18 1491 -147.217.64.0/24 1452 -147.217.65.0/24 1541 -147.217.66.0/23 1541 -147.217.68.0/22 1452 -147.217.72.0/21 1452 -147.217.80.0/21 1452 -147.217.88.0/24 1541 -147.217.89.0/24 1452 -147.217.90.0/23 1452 -147.217.92.0/22 1452 -147.217.96.0/23 1452 -147.217.98.0/23 1541 -147.217.100.0/22 1452 -147.217.104.0/21 1452 -147.217.112.0/20 1452 -147.217.128.0/17 1452 -147.220.0.0/16 34576 -147.221.0.0/16 1475 -147.222.0.0/16 11649 -147.225.0.0/20 701 -147.225.16.0/21 1663 -147.225.24.0/23 1663 -147.225.26.0/24 1663 -147.225.27.0/24 701 -147.225.28.0/23 1663 -147.225.30.0/23 701 -147.225.32.0/19 701 -147.225.64.0/18 701 -147.225.128.0/17 701 -147.226.0.0/16 20452 -147.227.0.0/16 668 -147.228.0.0/16 2852 -147.229.0.0/17 197451 -147.229.128.0/18 197451 -147.229.192.0/19 197451 -147.229.224.0/20 197451 -147.229.240.0/21 197451 -147.229.248.0/22 197451 -147.229.252.0/23 197451 -147.229.254.0/24 197451 -147.229.255.0/24 201263 -147.230.0.0/15 2852 -147.232.0.0/16 2607 -147.233.0.0/16 378 -147.234.0.0/24 56596 -147.234.1.0/24 30866 -147.234.4.0/23 44060 -147.234.6.0/23 56596 -147.234.16.0/24 56596 -147.234.17.0/24 1680 -147.234.18.0/24 205650 -147.234.19.0/24 205551 -147.234.20.0/24 205577 -147.234.21.0/24 202320 -147.234.22.0/24 1680 -147.234.23.0/24 202940 -147.234.24.0/24 44282 -147.234.25.0/24 204831 -147.234.26.0/23 1680 -147.234.28.0/24 1680 -147.234.29.0/24 208465 -147.234.30.0/23 44282 -147.234.32.0/24 202356 -147.234.33.0/24 202369 -147.234.34.0/24 202001 -147.234.35.0/24 200309 -147.234.36.0/22 8948 -147.234.40.0/24 200309 -147.234.41.0/24 209514 -147.234.43.0/24 1680 -147.234.44.0/22 8948 -147.234.48.0/22 8948 -147.234.52.0/24 1680 -147.234.54.0/23 16116 -147.234.64.0/21 51825 -147.234.72.0/23 51825 -147.234.76.0/24 201415 -147.234.128.0/22 8948 -147.234.132.0/22 30866 -147.234.136.0/21 30866 -147.234.144.0/20 30866 -147.234.160.0/19 30866 -147.234.192.0/18 30866 -147.235.0.0/16 6810 -147.236.0.0/16 25125 -147.237.0.0/16 8867 -147.238.0.0/16 1494 -147.239.0.0/16 1452 -147.240.0.0/16 27064 -147.241.0.0/19 668 -147.241.48.0/21 228 -147.241.56.0/21 668 -147.241.64.0/21 228 -147.241.80.0/20 668 -147.241.96.0/22 668 -147.241.104.0/22 668 -147.241.112.0/22 668 -147.241.118.0/24 668 -147.241.120.0/22 668 -147.241.126.0/23 668 -147.241.128.0/21 668 -147.241.136.0/21 228 -147.241.144.0/21 228 -147.241.160.0/20 668 -147.241.176.0/21 668 -147.241.192.0/18 668 -147.242.4.0/23 747 -147.242.8.0/23 747 -147.242.11.0/24 747 -147.242.13.0/24 747 -147.242.16.0/23 747 -147.242.20.0/23 747 -147.242.22.0/24 747 -147.242.26.0/23 747 -147.242.30.0/24 747 -147.242.42.0/24 747 -147.242.50.0/23 747 -147.242.52.0/24 747 -147.242.127.0/24 747 -147.242.128.0/24 747 -147.242.200.0/24 747 -147.242.236.0/24 747 -147.242.245.0/24 747 -147.242.247.0/24 747 -147.242.253.0/24 747 -147.242.254.0/24 747 -147.243.0.0/16 8075 -147.248.0.0/21 1590 -147.248.8.0/24 1590 -147.248.10.0/23 1590 -147.248.12.0/22 1590 -147.248.16.0/21 1600 -147.248.24.0/22 1637 -147.248.28.0/22 1649 -147.248.32.0/23 1602 -147.248.37.0/24 1602 -147.248.38.0/23 1602 -147.248.40.0/21 1527 -147.248.48.0/20 668 -147.248.64.0/19 531 -147.248.128.0/19 531 -147.248.160.0/20 531 -147.249.0.0/23 18434 -147.249.4.0/22 18434 -147.249.10.0/24 6419 -147.249.16.0/22 18434 -147.249.35.0/24 6419 -147.249.36.0/22 6419 -147.249.46.0/23 6419 -147.249.53.0/24 18434 -147.249.55.0/24 6419 -147.249.56.0/21 6419 -147.249.84.0/24 6419 -147.249.90.0/23 6419 -147.249.94.0/24 6419 -147.249.103.0/24 6419 -147.249.104.0/24 6419 -147.249.120.0/22 6419 -147.249.126.0/24 6419 -147.249.128.0/22 6419 -147.249.133.0/24 6419 -147.249.134.0/23 6419 -147.249.136.0/22 6419 -147.249.140.0/23 6419 -147.249.144.0/23 6419 -147.249.146.0/24 6419 -147.249.149.0/24 6419 -147.249.156.0/23 6419 -147.249.158.0/24 6419 -147.249.160.0/23 6419 -147.249.165.0/24 6419 -147.249.167.0/24 6419 -147.249.168.0/22 6419 -147.249.175.0/24 6419 -147.249.176.0/23 6419 -147.249.178.0/24 6419 -147.249.180.0/22 6419 -147.249.188.0/22 18434 -147.249.196.0/22 6419 -147.249.201.0/24 6419 -147.249.203.0/24 6419 -147.249.204.0/24 6419 -147.249.215.0/24 6419 -147.249.230.0/24 6419 -147.249.233.0/24 6419 -147.249.236.0/23 7381 -147.249.238.0/24 7381 -147.249.239.0/24 6419 -147.249.242.0/23 6419 -147.249.244.0/23 6419 -147.250.0.0/16 2200 -147.251.0.0/16 2852 -147.252.0.0/16 1213 -147.253.0.0/17 5769 -147.253.128.0/18 5769 -147.253.192.0/20 36701 -147.253.208.0/20 23528 -147.253.224.0/20 30165 -147.253.240.0/22 30165 -147.255.0.0/20 395954 -147.255.16.0/21 7203 -147.255.24.0/21 395954 -147.255.32.0/20 395954 -147.255.48.0/20 7203 -147.255.64.0/19 395954 -147.255.96.0/20 395954 -147.255.112.0/20 7203 -147.255.128.0/19 395954 -147.255.160.0/21 7203 -147.255.168.0/21 396362 -147.255.176.0/20 7203 -147.255.192.0/19 395954 -147.255.224.0/21 396190 -147.255.240.0/20 395954 -148.0.0.0/16 6400 -148.2.0.0/16 3301 -148.3.0.0/16 12430 -148.4.0.0/16 6074 -148.5.64.0/24 16509 -148.5.72.0/24 14618 -148.5.74.0/24 16509 -148.5.76.0/23 16509 -148.5.80.0/24 16509 -148.5.84.0/24 16509 -148.5.86.0/23 16509 -148.5.88.0/24 16509 -148.5.93.0/24 16509 -148.5.95.0/24 16509 -148.6.0.0/16 3314 -148.7.0.0/16 8075 -148.8.0.0/16 394673 -148.9.20.0/23 3614 -148.9.24.0/21 1294 -148.9.64.0/18 3745 -148.9.192.0/20 1294 -148.9.208.0/21 1294 -148.9.232.0/21 1294 -148.9.240.0/22 1294 -148.9.244.0/23 1294 -148.9.246.0/24 1294 -148.9.248.0/21 14453 -148.48.0.0/15 721 -148.50.0.0/16 721 -148.51.0.0/17 6939 -148.51.128.0/23 22625 -148.51.130.0/24 62947 -148.51.131.0/24 721 -148.51.132.0/24 396930 -148.51.133.0/24 62947 -148.51.134.0/23 62947 -148.51.136.0/22 62947 -148.51.140.0/22 721 -148.51.144.0/20 721 -148.51.160.0/19 721 -148.51.192.0/18 721 -148.53.0.0/16 6591 -148.56.0.0/16 12430 -148.57.0.0/17 10753 -148.57.128.0/22 3949 -148.57.146.0/23 15290 -148.59.0.0/19 2015 -148.59.32.0/23 15276 -148.59.34.0/23 13760 -148.59.36.0/24 33130 -148.59.37.0/24 394621 -148.59.38.0/24 46887 -148.59.39.0/24 54614 -148.59.40.0/24 397812 -148.59.41.0/24 395723 -148.59.42.0/24 63251 -148.59.44.0/24 2381 -148.59.45.0/24 14906 -148.59.46.0/24 16696 -148.59.47.0/24 47070 -148.59.48.0/21 2015 -148.59.56.0/24 30378 -148.59.58.0/23 396097 -148.59.60.0/24 395523 -148.59.61.0/24 397871 -148.59.62.0/24 19656 -148.59.63.0/24 32732 -148.59.64.0/20 2015 -148.59.80.0/21 2015 -148.59.94.0/24 133206 -148.59.95.0/24 398193 -148.59.106.0/23 26476 -148.59.108.0/23 26476 -148.59.112.0/23 53586 -148.59.115.0/24 64089 -148.59.116.0/24 63078 -148.59.117.0/24 11215 -148.59.118.0/23 32586 -148.59.122.0/23 394102 -148.59.124.0/23 54896 -148.59.126.0/24 62581 -148.59.127.0/24 62579 -148.59.128.0/24 33561 -148.59.130.0/24 395449 -148.59.131.0/24 395879 -148.59.133.0/24 394621 -148.59.134.0/24 19875 -148.59.135.0/24 62958 -148.59.136.0/24 22652 -148.59.137.0/24 395723 -148.59.138.0/24 395574 -148.59.139.0/24 32732 -148.59.140.0/24 395612 -148.59.141.0/24 11796 -148.59.142.0/24 395168 -148.59.143.0/24 4181 -148.59.145.0/24 396226 -148.59.146.0/24 64267 -148.59.147.0/24 396469 -148.59.148.0/24 20388 -148.59.149.0/24 396477 -148.59.150.0/24 11821 -148.59.151.0/24 20141 -148.59.152.0/24 22458 -148.59.153.0/24 19366 -148.59.154.0/24 36351 -148.59.155.0/24 36442 -148.59.156.0/22 16843 -148.59.161.0/24 63048 -148.59.162.0/23 393299 -148.59.164.0/23 23346 -148.59.166.0/23 204980 -148.59.168.0/24 26845 -148.59.169.0/24 23015 -148.59.170.0/23 394771 -148.59.172.0/24 22425 -148.59.174.0/23 397354 -148.59.176.0/24 36236 -148.59.178.0/23 395645 -148.59.180.0/23 16696 -148.59.182.0/24 11639 -148.59.183.0/24 10796 -148.59.184.0/23 64267 -148.59.186.0/23 396160 -148.59.188.0/22 19605 -148.59.192.0/22 55039 -148.59.196.0/23 395560 -148.59.198.0/23 16696 -148.59.200.0/23 394102 -148.59.202.0/23 36638 -148.59.204.0/23 16696 -148.59.206.0/23 394481 -148.59.208.0/23 11191 -148.59.210.0/23 54542 -148.59.212.0/23 15164 -148.59.214.0/23 63201 -148.59.216.0/23 174 -148.59.218.0/23 16696 -148.59.220.0/23 39959 -148.59.222.0/23 21777 -148.59.224.0/22 395110 -148.59.228.0/23 36445 -148.59.230.0/23 393964 -148.59.232.0/24 53889 -148.59.233.0/24 6130 -148.59.234.0/23 53889 -148.59.236.0/22 16843 -148.59.240.0/23 395168 -148.59.242.0/24 27272 -148.59.243.0/24 30715 -148.59.244.0/22 32000 -148.59.248.0/21 19331 -148.60.0.0/16 2200 -148.61.0.0/16 237 -148.62.0.0/16 33070 -148.63.0.0/16 12353 -148.64.0.0/21 27471 -148.64.9.0/24 27471 -148.64.10.0/23 27471 -148.64.12.0/24 27471 -148.64.14.0/23 27471 -148.64.16.0/22 27471 -148.64.20.0/23 27471 -148.64.23.0/24 27471 -148.64.24.0/22 27471 -148.64.28.0/23 27471 -148.64.30.0/24 27471 -148.64.32.0/20 3356 -148.64.48.0/21 19331 -148.64.56.0/23 200981 -148.64.60.0/23 395916 -148.64.62.0/23 64227 -148.64.64.0/19 395127 -148.64.96.0/20 32329 -148.64.112.0/20 36734 -148.64.128.0/17 16811 -148.65.64.0/18 16811 -148.65.192.0/18 16811 -148.66.0.0/19 45753 -148.66.32.0/24 7381 -148.66.33.0/24 23088 -148.66.34.0/24 53907 -148.66.35.0/24 23088 -148.66.36.0/22 396177 -148.66.40.0/21 32586 -148.66.48.0/20 45753 -148.66.64.0/21 9471 -148.66.72.0/24 9471 -148.66.73.0/24 55943 -148.66.74.0/23 9471 -148.66.76.0/22 9471 -148.66.80.0/24 9471 -148.66.81.0/24 55943 -148.66.82.0/23 9471 -148.66.84.0/22 9471 -148.66.88.0/24 9471 -148.66.89.0/24 55943 -148.66.90.0/23 9471 -148.66.92.0/22 9471 -148.66.96.0/24 9471 -148.66.97.0/24 55943 -148.66.98.0/23 9471 -148.66.100.0/22 9471 -148.66.104.0/21 9471 -148.66.112.0/21 9471 -148.66.120.0/23 55943 -148.66.122.0/23 9471 -148.66.124.0/22 9471 -148.66.128.0/19 26496 -148.66.160.0/19 22408 -148.66.192.0/23 13649 -148.66.194.0/24 13649 -148.66.195.0/24 20284 -148.66.196.0/22 13649 -148.66.200.0/21 13649 -148.66.208.0/24 19067 -148.66.209.0/24 13649 -148.66.210.0/23 13649 -148.66.212.0/22 13649 -148.66.216.0/21 13649 -148.66.224.0/23 13649 -148.66.226.0/24 395057 -148.66.227.0/24 13649 -148.66.228.0/22 13649 -148.66.232.0/21 13649 -148.66.240.0/24 13649 -148.66.241.0/24 13845 -148.66.242.0/23 13649 -148.66.244.0/22 13649 -148.66.248.0/23 13649 -148.66.250.0/24 13649 -148.66.251.0/24 10511 -148.66.252.0/22 13845 -148.67.0.0/16 9605 -148.68.0.0/16 9605 -148.69.0.0/16 12353 -148.70.0.0/16 45090 -148.71.0.0/16 12353 -148.72.0.0/17 26496 -148.72.128.0/24 30083 -148.72.129.0/24 29066 -148.72.130.0/23 30083 -148.72.132.0/22 30083 -148.72.136.0/21 30083 -148.72.144.0/20 30083 -148.72.160.0/19 30083 -148.72.192.0/20 26496 -148.72.208.0/21 26496 -148.72.216.0/22 26496 -148.72.224.0/19 26496 -148.73.0.0/18 18642 -148.73.64.0/19 18642 -148.73.96.0/22 18642 -148.73.100.0/23 18642 -148.73.102.0/23 209 -148.73.104.0/23 209 -148.73.106.0/24 209 -148.73.107.0/24 18642 -148.73.108.0/24 21648 -148.73.109.0/24 18642 -148.73.110.0/24 16811 -148.73.111.0/24 18642 -148.73.112.0/20 18642 -148.73.128.0/17 18642 -148.74.0.0/15 6128 -148.76.0.0/18 6128 -148.76.64.0/21 6128 -148.76.72.0/24 6128 -148.76.73.0/24 396844 -148.76.74.0/23 6128 -148.76.76.0/22 6128 -148.76.80.0/20 6128 -148.76.96.0/22 6128 -148.76.100.0/24 54004 -148.76.101.0/24 6128 -148.76.102.0/23 6128 -148.76.104.0/21 6128 -148.76.112.0/23 6128 -148.76.114.0/24 6128 -148.76.115.0/24 54004 -148.76.116.0/24 14015 -148.76.117.0/24 6128 -148.76.118.0/23 6128 -148.76.120.0/24 6128 -148.76.121.0/24 22793 -148.76.122.0/23 6128 -148.76.124.0/22 6128 -148.76.128.0/20 6128 -148.76.144.0/23 54004 -148.76.146.0/24 6128 -148.76.147.0/24 54004 -148.76.148.0/23 54004 -148.76.150.0/23 6128 -148.76.152.0/24 6128 -148.76.153.0/24 36054 -148.76.154.0/24 6128 -148.76.155.0/24 397589 -148.76.156.0/24 6128 -148.76.157.0/24 396042 -148.76.158.0/23 6128 -148.76.160.0/21 6128 -148.76.168.0/22 6128 -148.76.172.0/22 54004 -148.76.176.0/23 6128 -148.76.178.0/24 29890 -148.76.179.0/24 6128 -148.76.180.0/22 6128 -148.76.184.0/21 6128 -148.76.192.0/19 6128 -148.77.0.0/23 6128 -148.77.2.0/24 54004 -148.77.3.0/24 396131 -148.77.4.0/24 32805 -148.77.5.0/24 6128 -148.77.6.0/23 6128 -148.77.8.0/21 6128 -148.77.16.0/22 6128 -148.77.20.0/23 6128 -148.77.22.0/24 4451 -148.77.23.0/24 6128 -148.77.24.0/22 6128 -148.77.28.0/24 14163 -148.77.29.0/24 6128 -148.77.30.0/24 6128 -148.77.31.0/24 54004 -148.77.32.0/22 6128 -148.77.36.0/23 6128 -148.77.38.0/24 6128 -148.77.39.0/24 396148 -148.77.40.0/21 6128 -148.77.48.0/24 396189 -148.77.49.0/24 6128 -148.77.50.0/23 6128 -148.77.52.0/22 6128 -148.77.56.0/22 6128 -148.77.60.0/24 6128 -148.77.61.0/24 396451 -148.77.62.0/24 16666 -148.77.63.0/24 19720 -148.77.64.0/23 6128 -148.77.66.0/24 6128 -148.77.67.0/24 22479 -148.77.68.0/22 6128 -148.77.72.0/24 54004 -148.77.73.0/24 6128 -148.77.74.0/23 6128 -148.77.76.0/22 6128 -148.77.80.0/24 54004 -148.77.81.0/24 6128 -148.77.82.0/23 6128 -148.77.84.0/23 6128 -148.77.86.0/24 395987 -148.77.87.0/24 6128 -148.77.88.0/21 6128 -148.77.96.0/21 6128 -148.77.104.0/24 6128 -148.77.105.0/24 397394 -148.77.106.0/23 6128 -148.77.108.0/22 6128 -148.77.112.0/23 6128 -148.77.114.0/24 6128 -148.77.115.0/24 46766 -148.77.116.0/22 6128 -148.77.120.0/24 54004 -148.77.121.0/24 397394 -148.77.122.0/23 6128 -148.77.124.0/23 6128 -148.77.126.0/24 6128 -148.77.127.0/24 54004 -148.77.128.0/17 6128 -148.78.0.0/19 26464 -148.78.32.0/20 26464 -148.78.48.0/21 26464 -148.78.56.0/22 26464 -148.78.60.0/23 26464 -148.78.64.0/24 394036 -148.78.65.0/24 22336 -148.78.66.0/24 395607 -148.78.68.0/23 395086 -148.78.70.0/23 395530 -148.78.73.0/24 395530 -148.78.74.0/24 16711 -148.78.75.0/24 13893 -148.78.76.0/24 396161 -148.78.77.0/24 20407 -148.78.78.0/23 16811 -148.78.80.0/24 16711 -148.78.81.0/24 16811 -148.78.82.0/23 15358 -148.78.84.0/22 395415 -148.78.88.0/23 16811 -148.78.90.0/23 16711 -148.78.92.0/22 13893 -148.78.96.0/24 209 -148.78.97.0/24 701 -148.78.99.0/24 16811 -148.78.100.0/24 16811 -148.78.103.0/24 53640 -148.78.112.0/24 397645 -148.78.113.0/24 395701 -148.78.114.0/24 393326 -148.78.115.0/24 207845 -148.78.116.0/24 207870 -148.78.128.0/24 16811 -148.78.132.0/23 16811 -148.78.134.0/24 16811 -148.78.136.0/21 16811 -148.78.144.0/21 16811 -148.78.152.0/22 16811 -148.78.160.0/21 16811 -148.78.172.0/22 16811 -148.78.176.0/20 16811 -148.78.192.0/21 16811 -148.78.200.0/23 16811 -148.78.205.0/24 16811 -148.78.210.0/23 16811 -148.78.212.0/23 16811 -148.78.214.0/24 16811 -148.78.216.0/21 16811 -148.78.224.0/20 16811 -148.78.240.0/21 16811 -148.78.248.0/23 16811 -148.78.251.0/24 16812 -148.78.252.0/24 21648 -148.78.255.0/24 16811 -148.79.0.0/16 786 -148.80.0.0/24 4826 -148.80.1.0/24 1221 -148.80.244.0/22 25673 -148.80.248.0/21 25673 -148.81.0.0/21 1887 -148.81.8.0/23 1887 -148.81.10.0/24 1887 -148.81.11.0/24 209314 -148.81.12.0/22 1887 -148.81.16.0/20 1887 -148.81.32.0/19 1887 -148.81.64.0/19 1887 -148.81.96.0/20 1887 -148.81.112.0/22 1887 -148.81.116.0/24 60421 -148.81.117.0/24 196802 -148.81.118.0/23 1887 -148.81.120.0/22 1887 -148.81.124.0/23 1887 -148.81.126.0/24 1887 -148.81.127.0/24 41092 -148.81.128.0/18 1887 -148.81.192.0/19 1887 -148.81.224.0/22 1887 -148.81.228.0/23 1887 -148.81.230.0/24 201617 -148.81.231.0/24 1887 -148.81.232.0/21 1887 -148.81.240.0/22 1887 -148.81.244.0/23 1887 -148.81.246.0/23 202121 -148.81.248.0/24 201125 -148.81.249.0/24 1887 -148.81.250.0/23 1887 -148.81.252.0/22 1887 -148.82.0.0/15 2116 -148.84.0.0/16 31822 -148.85.0.0/16 396349 -148.86.11.0/24 6195 -148.86.12.0/24 18593 -148.86.15.0/24 6195 -148.86.80.0/24 33598 -148.87.0.0/18 1215 -148.87.64.0/18 792 -148.88.0.0/16 786 -148.95.216.0/23 174 -148.97.183.0/24 2159 -148.100.0.0/19 6124 -148.100.32.0/21 6124 -148.100.40.0/24 6124 -148.100.41.0/24 46887 -148.100.42.0/23 6124 -148.100.44.0/22 6124 -148.100.48.0/20 6124 -148.100.64.0/21 6124 -148.100.72.0/23 6124 -148.100.74.0/24 7029 -148.100.75.0/24 6124 -148.100.76.0/22 6124 -148.100.80.0/20 6124 -148.100.96.0/19 6124 -148.100.128.0/18 6124 -148.100.192.0/19 6124 -148.100.224.0/20 6124 -148.100.240.0/22 3755 -148.100.244.0/22 6124 -148.100.248.0/21 6124 -148.101.0.0/16 6400 -148.102.0.0/18 19180 -148.102.64.0/19 19180 -148.102.96.0/20 19180 -148.102.112.0/24 19180 -148.102.113.0/24 21575 -148.102.114.0/23 21575 -148.102.116.0/24 21575 -148.102.117.0/24 19180 -148.102.118.0/23 19180 -148.102.120.0/21 19180 -148.102.128.0/17 27759 -148.103.0.0/21 12066 -148.103.8.0/24 12066 -148.103.9.0/24 28118 -148.103.10.0/23 12066 -148.103.12.0/23 12066 -148.103.14.0/23 28118 -148.103.16.0/21 12066 -148.103.24.0/23 12066 -148.103.26.0/23 28118 -148.103.28.0/24 28118 -148.103.29.0/24 12066 -148.103.30.0/23 12066 -148.103.32.0/22 12066 -148.103.36.0/23 12066 -148.103.38.0/23 28118 -148.103.40.0/22 28118 -148.103.44.0/22 12066 -148.103.48.0/22 12066 -148.103.52.0/24 28118 -148.103.53.0/24 12066 -148.103.54.0/24 28118 -148.103.55.0/24 12066 -148.103.56.0/21 12066 -148.103.64.0/23 12066 -148.103.66.0/23 28118 -148.103.68.0/23 12066 -148.103.70.0/23 28118 -148.103.72.0/21 12066 -148.103.80.0/23 28118 -148.103.82.0/23 12066 -148.103.84.0/22 12066 -148.103.88.0/23 12066 -148.103.90.0/24 12066 -148.103.91.0/24 28118 -148.103.92.0/24 12066 -148.103.93.0/24 28118 -148.103.94.0/23 28118 -148.103.96.0/23 12066 -148.103.98.0/23 28118 -148.103.100.0/23 28118 -148.103.102.0/24 12066 -148.103.103.0/24 28118 -148.103.104.0/21 12066 -148.103.112.0/21 12066 -148.103.120.0/22 28118 -148.103.124.0/22 12066 -148.103.128.0/21 12066 -148.103.136.0/22 28118 -148.103.140.0/22 12066 -148.103.144.0/22 28118 -148.103.148.0/22 12066 -148.103.152.0/21 12066 -148.103.160.0/24 28118 -148.103.161.0/24 12066 -148.103.162.0/23 28118 -148.103.164.0/22 12066 -148.103.168.0/21 28118 -148.103.176.0/21 28118 -148.103.184.0/22 28118 -148.103.188.0/23 28118 -148.103.190.0/23 12066 -148.103.192.0/24 12066 -148.103.193.0/24 28118 -148.103.194.0/24 28118 -148.103.195.0/24 12066 -148.103.196.0/22 28118 -148.103.200.0/23 12066 -148.103.202.0/24 28118 -148.103.203.0/24 12066 -148.103.204.0/22 12066 -148.103.208.0/22 12066 -148.103.212.0/22 28118 -148.103.216.0/21 12066 -148.103.224.0/22 28118 -148.103.228.0/23 28118 -148.103.230.0/23 12066 -148.103.232.0/21 12066 -148.103.240.0/22 12066 -148.103.244.0/23 12066 -148.103.246.0/23 28118 -148.103.248.0/22 12066 -148.103.252.0/24 28118 -148.103.253.0/24 12066 -148.103.254.0/23 28118 -148.104.0.0/16 7834 -148.105.0.0/17 14782 -148.105.128.0/18 14782 -148.105.192.0/19 14782 -148.105.224.0/20 14782 -148.105.241.0/24 14782 -148.105.242.0/23 14782 -148.105.244.0/22 14782 -148.105.248.0/21 14782 -148.106.1.0/24 19602 -148.106.2.0/24 19602 -148.106.4.0/23 19602 -148.106.22.0/23 19602 -148.106.30.0/24 19602 -148.106.69.0/24 38870 -148.106.70.0/23 38870 -148.106.72.0/24 38870 -148.106.81.0/24 38870 -148.106.82.0/23 38870 -148.106.84.0/24 38870 -148.106.95.0/24 38870 -148.106.128.0/24 19178 -148.106.132.0/24 19178 -148.106.134.0/24 19178 -148.106.140.0/24 19178 -148.106.152.0/23 19178 -148.106.154.0/24 19178 -148.107.1.0/24 22098 -148.107.2.0/23 22098 -148.107.5.0/24 32787 -148.107.6.0/24 15404 -148.107.11.0/24 22098 -148.107.12.0/24 22098 -148.107.16.0/24 22098 -148.107.20.0/22 22098 -148.107.25.0/24 32787 -148.107.26.0/24 15404 -148.107.27.0/24 22098 -148.107.28.0/22 22098 -148.107.40.0/22 22098 -148.107.52.0/22 22098 -148.107.71.0/24 22098 -148.107.72.0/24 22098 -148.108.32.0/19 26072 -148.108.64.0/18 26072 -148.108.128.0/17 26072 -148.109.1.0/24 393488 -148.109.4.0/23 393488 -148.109.9.0/24 393488 -148.109.61.0/24 393488 -148.109.62.0/23 393488 -148.109.64.0/23 393488 -148.109.90.0/23 393488 -148.111.0.0/16 25019 -148.112.24.0/23 10615 -148.112.144.0/22 10615 -148.112.156.0/22 10615 -148.112.160.0/22 10615 -148.114.0.0/16 270 -148.115.0.0/18 6501 -148.115.224.0/19 6501 -148.118.0.0/15 2119 -148.120.0.0/14 2119 -148.126.0.0/16 2575 -148.127.0.0/16 18819 -148.128.128.0/20 2386 -148.128.144.0/20 19604 -148.129.0.0/16 7764 -148.131.255.0/24 7018 -148.134.0.0/16 19113 -148.135.0.0/16 158 -148.136.0.0/16 3246 -148.137.0.0/16 7150 -148.141.0.0/16 18844 -148.142.64.0/19 20004 -148.143.245.0/24 3215 -148.144.0.0/16 18715 -148.145.36.0/22 7545 -148.145.48.0/24 7545 -148.147.0.0/16 18676 -148.149.0.0/16 13325 -148.150.0.0/16 55013 -148.153.0.0/16 63199 -148.156.112.0/23 7988 -148.156.116.0/24 7988 -148.156.128.0/21 7359 -148.156.208.0/21 4015 -148.159.64.0/18 13860 -148.159.144.0/22 13860 -148.159.150.0/23 13860 -148.159.159.0/24 13860 -148.159.160.0/21 13860 -148.160.16.0/20 44743 -148.160.32.0/19 44743 -148.160.64.0/18 44743 -148.160.128.0/18 44743 -148.160.239.0/24 48803 -148.160.240.0/20 3246 -148.163.0.0/17 53755 -148.163.128.0/23 13916 -148.163.130.0/24 13916 -148.163.131.0/24 16509 -148.163.132.0/22 26211 -148.163.136.0/21 22843 -148.163.144.0/21 26211 -148.163.152.0/22 22843 -148.163.156.0/23 26211 -148.163.158.0/23 22843 -148.163.160.0/21 26484 -148.163.168.0/22 26484 -148.163.172.0/23 26484 -148.163.174.0/24 26484 -148.163.176.0/23 62642 -148.163.178.0/23 46118 -148.163.192.0/24 63911 -148.163.219.0/24 36236 -148.163.220.0/24 36236 -148.163.221.0/24 393941 -148.163.240.0/22 63911 -148.163.244.0/23 63911 -148.163.247.0/24 63911 -148.163.248.0/23 63911 -148.163.252.0/22 63911 -148.164.0.0/24 5 -148.164.1.0/24 23154 -148.164.2.0/24 23154 -148.164.3.0/24 5 -148.164.4.0/24 5 -148.164.7.0/24 23154 -148.164.8.0/24 23154 -148.164.11.0/24 23154 -148.164.20.0/24 23154 -148.164.22.0/23 23154 -148.164.53.0/24 23154 -148.164.54.0/24 23154 -148.164.113.0/24 23154 -148.164.141.0/24 23154 -148.164.142.0/24 23154 -148.164.167.0/24 23154 -148.165.0.0/16 3356 -148.166.0.0/16 54973 -148.167.0.0/21 16502 -148.167.108.0/22 16502 -148.167.124.0/22 16502 -148.167.132.0/22 16502 -148.167.144.0/21 16502 -148.167.196.0/22 16502 -148.167.200.0/22 16502 -148.167.244.0/22 16502 -148.167.248.0/21 16502 -148.168.0.0/19 7068 -148.168.32.0/19 11971 -148.168.64.0/21 7068 -148.168.72.0/22 7068 -148.168.76.0/24 7068 -148.168.77.0/24 11971 -148.168.78.0/23 7068 -148.168.80.0/20 7068 -148.168.96.0/19 7068 -148.168.128.0/19 7068 -148.168.160.0/24 11971 -148.168.161.0/24 7068 -148.168.162.0/23 7068 -148.168.164.0/22 7068 -148.168.168.0/21 7068 -148.168.176.0/20 7068 -148.168.192.0/22 11971 -148.168.196.0/22 7068 -148.168.200.0/21 7068 -148.168.208.0/21 7068 -148.168.216.0/23 36393 -148.168.218.0/24 7068 -148.168.219.0/24 36393 -148.168.220.0/22 7068 -148.168.224.0/21 11971 -148.168.232.0/21 7068 -148.168.240.0/20 7068 -148.169.0.0/23 12670 -148.169.2.0/24 12670 -148.169.3.0/24 203885 -148.169.4.0/22 203885 -148.169.8.0/24 203885 -148.169.10.0/24 203885 -148.169.20.0/23 203885 -148.169.22.0/24 15557 -148.169.128.0/24 12670 -148.169.133.0/24 12670 -148.169.255.0/24 12670 -148.170.0.0/18 397879 -148.170.64.0/19 27501 -148.170.128.0/18 23184 -148.170.192.0/19 396287 -148.170.224.0/20 393731 -148.170.240.0/22 20414 -148.170.244.0/24 20414 -148.173.81.0/24 6307 -148.173.86.0/24 6307 -148.173.88.0/22 6307 -148.173.96.0/22 6307 -148.173.100.0/23 6307 -148.173.103.0/24 6307 -148.173.104.0/24 6307 -148.173.106.0/23 6307 -148.173.144.0/24 6307 -148.175.0.0/16 13649 -148.177.0.0/18 13778 -148.177.80.0/20 22876 -148.177.96.0/21 13778 -148.177.104.0/24 11664 -148.177.109.0/24 13778 -148.177.116.0/24 13778 -148.177.117.0/24 3549 -148.177.120.0/24 14709 -148.177.128.0/21 13778 -148.177.144.0/22 13778 -148.177.168.0/21 13778 -148.177.184.0/22 13778 -148.177.190.0/24 13778 -148.177.192.0/21 13778 -148.177.235.0/24 13778 -148.177.242.0/24 13778 -148.179.0.0/16 11719 -148.182.9.0/24 18000 -148.182.14.0/23 24061 -148.182.16.0/24 18000 -148.182.26.0/24 18000 -148.182.31.0/24 38809 -148.182.107.0/24 18000 -148.183.0.0/16 11529 -148.184.0.0/16 3423 -148.186.0.0/20 15304 -148.187.0.0/16 559 -148.188.0.0/20 42652 -148.188.192.0/21 10753 -148.188.224.0/22 2497 -148.188.240.0/21 4657 -148.188.248.0/22 4657 -148.193.0.0/16 18819 -148.194.0.0/16 18819 -148.195.20.0/22 133045 -148.195.28.0/22 133045 -148.195.135.0/24 133045 -148.195.143.0/24 133045 -148.195.145.0/24 133045 -148.196.0.0/16 559 -148.197.0.0/16 786 -148.198.0.0/16 31382 -148.199.160.0/19 6501 -148.200.0.0/21 33915 -148.200.14.0/24 33915 -148.200.140.0/22 33915 -148.200.240.0/21 33915 -148.201.0.0/16 1831 -148.202.0.0/16 2549 -148.203.0.0/17 3810 -148.203.128.0/19 3810 -148.203.160.0/23 3810 -148.203.162.0/24 8151 -148.203.163.0/24 11172 -148.203.164.0/22 3810 -148.203.168.0/21 3810 -148.203.176.0/20 3810 -148.203.192.0/18 3810 -148.204.0.0/16 3484 -148.205.12.0/23 21520 -148.205.16.0/22 21520 -148.205.36.0/22 21520 -148.205.40.0/22 21520 -148.205.48.0/22 21520 -148.205.56.0/21 21520 -148.205.64.0/21 21520 -148.205.72.0/22 21520 -148.205.83.0/24 21520 -148.205.84.0/23 21520 -148.205.86.0/24 21520 -148.205.89.0/24 21520 -148.205.90.0/24 21520 -148.205.100.0/22 21520 -148.205.104.0/21 21520 -148.205.112.0/22 21520 -148.205.120.0/24 21520 -148.205.132.0/22 21520 -148.205.136.0/22 21520 -148.205.148.0/22 21520 -148.205.152.0/21 21520 -148.205.160.0/21 21520 -148.205.176.0/22 21520 -148.205.191.0/24 21520 -148.205.193.0/24 21520 -148.205.194.0/24 21520 -148.205.196.0/22 21520 -148.205.228.0/22 21520 -148.205.236.0/22 21520 -148.206.0.0/16 3596 -148.207.0.0/24 13579 -148.207.1.0/24 8151 -148.207.2.0/23 13579 -148.207.4.0/22 13579 -148.207.8.0/21 13579 -148.207.16.0/20 13579 -148.207.32.0/19 13579 -148.207.64.0/19 13579 -148.207.96.0/23 8151 -148.207.98.0/24 8151 -148.207.99.0/24 13579 -148.207.100.0/22 13579 -148.207.104.0/21 13579 -148.207.112.0/20 13579 -148.207.128.0/20 13579 -148.207.144.0/22 13579 -148.207.148.0/23 13579 -148.207.150.0/24 13579 -148.207.151.0/24 265519 -148.207.152.0/22 13579 -148.207.156.0/23 13579 -148.207.158.0/24 8151 -148.207.159.0/24 13579 -148.207.160.0/21 13579 -148.207.168.0/24 8151 -148.207.169.0/24 13579 -148.207.170.0/23 13579 -148.207.172.0/22 13579 -148.207.176.0/20 13579 -148.207.192.0/20 13579 -148.207.208.0/21 13579 -148.207.216.0/24 13579 -148.207.217.0/24 263114 -148.207.218.0/23 265519 -148.207.220.0/22 13579 -148.207.224.0/19 13579 -148.208.0.0/17 13579 -148.208.144.0/23 8151 -148.208.195.0/24 28414 -148.208.196.0/24 8151 -148.208.231.0/24 22884 -148.208.246.0/24 28400 -148.209.0.0/16 22122 -148.210.0.0/16 2904 -148.211.0.0/16 28414 -148.212.0.0/16 8151 -148.213.0.0/16 15236 -148.214.3.0/24 2708 -148.214.7.0/24 2708 -148.214.8.0/23 2708 -148.214.10.0/24 2708 -148.214.12.0/24 2708 -148.214.15.0/24 2708 -148.214.16.0/24 2708 -148.214.18.0/23 2708 -148.214.22.0/24 2708 -148.214.26.0/24 2708 -148.214.28.0/23 2708 -148.214.31.0/24 2708 -148.214.34.0/23 2708 -148.214.37.0/24 2708 -148.214.40.0/23 2708 -148.214.44.0/24 2708 -148.214.47.0/24 2708 -148.214.49.0/24 2708 -148.214.50.0/23 2708 -148.214.52.0/24 2708 -148.214.56.0/24 2708 -148.214.60.0/24 2708 -148.214.62.0/24 2708 -148.214.64.0/24 2708 -148.214.66.0/24 2708 -148.214.68.0/23 2708 -148.214.70.0/24 2708 -148.214.82.0/24 2708 -148.214.84.0/24 2708 -148.214.90.0/23 2708 -148.214.93.0/24 2708 -148.214.94.0/24 2708 -148.214.97.0/24 2708 -148.214.100.0/24 2708 -148.214.111.0/24 2708 -148.214.120.0/23 2708 -148.214.122.0/24 2708 -148.214.136.0/24 2708 -148.214.150.0/24 2708 -148.214.155.0/24 2708 -148.214.180.0/24 2708 -148.214.194.0/23 2708 -148.214.233.0/24 2708 -148.215.0.0/17 28526 -148.215.128.0/18 28526 -148.215.192.0/21 28526 -148.215.200.0/23 28526 -148.215.202.0/24 6503 -148.215.203.0/24 28526 -148.215.204.0/24 6503 -148.215.205.0/24 28526 -148.215.206.0/23 28526 -148.215.208.0/20 28526 -148.215.224.0/19 28526 -148.216.0.0/16 13999 -148.217.0.0/16 8151 -148.218.0.0/17 28477 -148.218.128.0/20 28477 -148.219.0.0/16 8151 -148.220.0.0/16 263134 -148.221.0.0/18 8151 -148.221.96.0/19 8151 -148.221.128.0/17 8151 -148.222.11.0/24 28417 -148.222.12.0/24 28417 -148.222.15.0/24 28417 -148.222.17.0/24 28417 -148.222.18.0/23 28417 -148.222.20.0/24 28417 -148.222.22.0/24 28417 -148.222.25.0/24 28417 -148.222.27.0/24 28417 -148.222.28.0/24 28417 -148.222.32.0/24 28417 -148.222.34.0/24 28417 -148.222.40.0/24 28417 -148.222.44.0/22 28417 -148.222.49.0/24 28417 -148.222.50.0/24 28417 -148.222.58.0/23 28417 -148.222.60.0/23 28417 -148.222.66.0/24 28417 -148.222.70.0/24 28417 -148.222.110.0/24 28417 -148.222.126.0/23 28417 -148.222.128.0/17 28417 -148.223.0.0/16 8151 -148.224.0.0/16 28414 -148.225.0.0/17 4493 -148.225.128.0/19 4493 -148.225.160.0/20 4493 -148.225.176.0/21 4493 -148.225.184.0/21 18734 -148.225.192.0/18 4493 -148.226.1.0/24 7184 -148.226.2.0/23 7184 -148.226.4.0/22 7184 -148.226.8.0/21 7184 -148.226.16.0/21 7184 -148.226.24.0/22 7184 -148.226.28.0/23 7184 -148.226.30.0/24 7184 -148.226.35.0/24 7184 -148.226.36.0/22 7184 -148.226.40.0/21 7184 -148.226.48.0/20 7184 -148.226.64.0/23 7184 -148.226.66.0/24 7184 -148.226.68.0/24 7184 -148.226.70.0/24 7184 -148.226.72.0/23 7184 -148.226.77.0/24 7184 -148.226.78.0/23 7184 -148.226.80.0/23 7184 -148.226.83.0/24 7184 -148.226.84.0/22 7184 -148.226.90.0/23 7184 -148.226.92.0/23 7184 -148.226.94.0/24 7184 -148.226.100.0/24 7184 -148.226.109.0/24 7184 -148.226.110.0/23 7184 -148.226.112.0/21 7184 -148.226.120.0/22 7184 -148.226.125.0/24 7184 -148.226.126.0/23 7184 -148.226.128.0/22 7184 -148.226.132.0/23 7184 -148.226.135.0/24 7184 -148.226.140.0/24 7184 -148.226.142.0/23 7184 -148.226.144.0/22 7184 -148.226.149.0/24 7184 -148.226.150.0/24 7184 -148.226.152.0/24 7184 -148.226.154.0/24 7184 -148.226.156.0/23 7184 -148.226.160.0/24 7184 -148.226.161.0/24 8151 -148.226.162.0/23 7184 -148.226.164.0/23 7184 -148.226.167.0/24 7184 -148.226.168.0/24 7184 -148.226.170.0/24 7184 -148.226.177.0/24 7184 -148.226.178.0/23 7184 -148.226.182.0/23 7184 -148.226.184.0/23 7184 -148.226.187.0/24 7184 -148.226.188.0/24 7184 -148.226.193.0/24 7184 -148.226.195.0/24 8151 -148.226.200.0/22 7184 -148.226.208.0/21 7184 -148.226.220.0/22 7184 -148.226.224.0/22 7184 -148.226.251.0/24 7184 -148.226.252.0/23 7184 -148.227.0.0/16 8151 -148.228.0.0/16 3141 -148.229.0.0/16 32098 -148.230.0.0/16 18734 -148.231.0.0/19 16596 -148.231.38.0/23 16596 -148.231.41.0/24 16596 -148.231.42.0/24 16596 -148.231.46.0/23 16596 -148.231.48.0/20 16596 -148.231.64.0/18 16596 -148.231.128.0/17 16596 -148.232.1.0/24 11172 -148.232.2.0/24 28505 -148.232.9.0/24 28505 -148.232.10.0/24 28505 -148.232.40.0/22 28505 -148.232.100.0/23 11172 -148.232.120.0/24 28505 -148.233.0.0/16 8151 -148.234.0.0/16 3454 -148.235.0.0/16 8151 -148.236.1.0/24 28391 -148.236.2.0/23 28391 -148.236.4.0/22 28391 -148.236.8.0/21 28391 -148.236.16.0/24 28391 -148.236.18.0/23 28391 -148.236.20.0/22 28391 -148.236.24.0/22 28391 -148.236.30.0/23 28391 -148.236.32.0/22 28391 -148.236.40.0/23 28391 -148.236.42.0/24 28391 -148.236.47.0/24 28391 -148.236.49.0/24 28391 -148.236.50.0/23 28391 -148.236.52.0/22 28391 -148.236.56.0/21 28391 -148.236.64.0/24 28391 -148.236.66.0/24 28391 -148.236.70.0/23 28391 -148.236.72.0/22 28391 -148.236.76.0/24 28391 -148.236.80.0/22 28391 -148.236.85.0/24 28391 -148.236.90.0/23 28391 -148.236.92.0/22 28391 -148.236.96.0/21 28391 -148.236.104.0/23 28391 -148.236.109.0/24 28391 -148.236.111.0/24 28391 -148.236.112.0/24 28391 -148.236.115.0/24 28391 -148.236.120.0/22 28391 -148.236.124.0/24 28391 -148.236.126.0/24 28391 -148.236.130.0/23 28391 -148.236.132.0/22 28391 -148.236.136.0/24 28391 -148.236.140.0/22 28391 -148.236.149.0/24 28391 -148.236.150.0/23 28391 -148.236.152.0/24 28391 -148.236.158.0/23 28391 -148.236.160.0/22 28391 -148.236.164.0/24 28391 -148.236.167.0/24 28391 -148.236.169.0/24 28391 -148.236.170.0/23 28391 -148.236.172.0/22 28391 -148.236.180.0/22 28391 -148.236.185.0/24 28391 -148.236.186.0/24 28391 -148.236.189.0/24 28391 -148.236.190.0/23 28391 -148.236.200.0/24 28391 -148.236.210.0/23 28391 -148.236.212.0/22 28391 -148.236.216.0/22 28391 -148.236.220.0/24 28391 -148.236.230.0/23 28391 -148.236.233.0/24 28391 -148.236.240.0/23 28391 -148.236.242.0/24 28391 -148.236.248.0/23 28391 -148.236.250.0/24 28391 -148.236.253.0/24 28391 -148.237.0.0/16 7325 -148.238.0.0/16 7125 -148.239.0.0/17 28519 -148.239.128.0/21 28519 -148.239.136.0/22 28519 -148.239.140.0/22 11172 -148.239.144.0/22 11172 -148.239.148.0/24 11172 -148.239.149.0/24 28519 -148.239.150.0/23 28519 -148.239.152.0/21 28519 -148.239.160.0/19 28519 -148.239.192.0/18 28519 -148.240.0.0/19 6503 -148.240.32.0/22 6503 -148.240.37.0/24 6503 -148.240.38.0/23 6503 -148.240.40.0/21 6503 -148.240.48.0/22 6503 -148.240.52.0/24 6503 -148.240.54.0/23 6503 -148.240.56.0/21 6503 -148.240.64.0/20 6503 -148.240.80.0/21 6503 -148.240.89.0/24 6503 -148.240.90.0/23 6503 -148.240.92.0/22 6503 -148.240.96.0/19 6503 -148.240.128.0/20 6503 -148.240.144.0/21 6503 -148.240.152.0/23 6503 -148.240.156.0/22 6503 -148.240.160.0/21 6503 -148.240.171.0/24 6503 -148.240.172.0/22 6503 -148.240.176.0/23 6503 -148.240.178.0/24 6503 -148.240.180.0/22 6503 -148.240.184.0/21 6503 -148.240.192.0/20 6503 -148.240.208.0/22 6503 -148.240.212.0/24 6503 -148.240.216.0/22 6503 -148.240.220.0/23 6503 -148.240.223.0/24 6503 -148.240.224.0/21 6503 -148.240.232.0/22 6503 -148.240.238.0/23 6503 -148.240.240.0/20 6503 -148.241.0.0/18 10436 -148.241.64.0/19 10436 -148.241.96.0/20 10436 -148.241.128.0/18 10436 -148.241.192.0/20 10436 -148.241.224.0/20 10436 -148.243.0.0/22 6503 -148.243.4.0/24 6503 -148.243.5.0/24 28392 -148.243.6.0/23 6503 -148.243.8.0/21 6503 -148.243.16.0/21 6503 -148.243.24.0/22 6503 -148.243.29.0/24 6503 -148.243.30.0/23 6503 -148.243.32.0/22 6503 -148.243.36.0/24 6503 -148.243.37.0/24 28506 -148.243.38.0/23 6503 -148.243.40.0/21 6503 -148.243.48.0/21 6503 -148.243.56.0/24 6503 -148.243.57.0/24 28570 -148.243.58.0/23 6503 -148.243.60.0/22 6503 -148.243.64.0/20 22011 -148.243.80.0/20 6503 -148.243.96.0/23 6503 -148.243.98.0/24 6503 -148.243.99.0/24 28509 -148.243.100.0/22 6503 -148.243.104.0/22 6503 -148.243.110.0/24 6503 -148.243.112.0/23 6503 -148.243.114.0/24 6503 -148.243.115.0/24 28492 -148.243.116.0/22 6503 -148.243.120.0/21 6503 -148.243.128.0/23 6503 -148.243.130.0/24 11172 -148.243.131.0/24 6503 -148.243.132.0/22 6503 -148.243.136.0/21 6503 -148.243.144.0/20 6503 -148.243.160.0/19 6503 -148.243.192.0/22 6503 -148.243.197.0/24 6503 -148.243.198.0/23 6503 -148.243.200.0/21 6503 -148.243.208.0/20 6503 -148.243.224.0/19 6503 -148.244.0.0/19 15107 -148.244.32.0/20 15107 -148.244.48.0/22 15107 -148.244.52.0/24 11172 -148.244.53.0/24 15107 -148.244.54.0/23 15107 -148.244.56.0/21 15107 -148.244.64.0/19 11172 -148.244.96.0/20 11172 -148.244.112.0/23 11172 -148.244.114.0/24 265504 -148.244.115.0/24 11172 -148.244.116.0/22 11172 -148.244.120.0/21 11172 -148.244.128.0/17 11172 -148.245.0.0/20 6503 -148.245.16.0/21 6503 -148.245.24.0/22 6503 -148.245.28.0/23 6503 -148.245.31.0/24 6503 -148.245.32.0/21 6503 -148.245.42.0/23 6503 -148.245.44.0/22 6503 -148.245.48.0/20 6503 -148.245.64.0/22 6503 -148.245.68.0/23 6503 -148.245.72.0/21 6503 -148.245.80.0/20 6503 -148.245.96.0/20 6503 -148.245.112.0/21 6503 -148.245.120.0/23 6503 -148.245.122.0/24 28492 -148.245.123.0/24 6503 -148.245.124.0/22 6503 -148.245.128.0/22 6503 -148.245.132.0/23 6503 -148.245.134.0/24 6503 -148.245.135.0/24 11172 -148.245.136.0/21 6503 -148.245.144.0/20 6503 -148.245.160.0/20 6503 -148.245.176.0/21 6503 -148.245.184.0/24 11172 -148.245.185.0/24 6503 -148.245.186.0/23 6503 -148.245.188.0/22 6503 -148.245.192.0/19 6503 -148.245.224.0/20 6503 -148.245.240.0/22 6503 -148.245.244.0/23 6503 -148.245.246.0/24 28509 -148.245.247.0/24 6503 -148.245.248.0/24 28506 -148.245.249.0/24 6503 -148.245.250.0/23 6503 -148.245.252.0/22 6503 -148.246.0.0/20 13591 -148.246.16.0/21 13591 -148.246.24.0/24 13591 -148.246.25.0/24 28533 -148.246.26.0/23 13591 -148.246.28.0/22 13591 -148.246.32.0/20 13591 -148.246.48.0/24 13591 -148.246.49.0/24 28530 -148.246.50.0/23 13591 -148.246.52.0/23 13591 -148.246.54.0/23 28534 -148.246.56.0/21 13591 -148.246.64.0/19 13591 -148.246.96.0/20 13591 -148.246.112.0/21 13591 -148.246.120.0/22 13591 -148.246.124.0/24 28544 -148.246.125.0/24 13591 -148.246.126.0/23 28534 -148.246.128.0/19 13591 -148.246.160.0/24 13591 -148.246.161.0/24 28534 -148.246.162.0/23 13591 -148.246.164.0/22 13591 -148.246.168.0/21 13591 -148.246.176.0/24 13591 -148.246.177.0/24 28544 -148.246.178.0/23 28534 -148.246.180.0/22 28543 -148.246.184.0/21 13591 -148.246.192.0/18 13591 -148.247.0.0/16 3548 -148.249.0.0/24 8151 -148.249.2.0/23 8151 -148.249.4.0/22 8151 -148.249.8.0/21 8151 -148.249.16.0/20 8151 -148.249.32.0/19 8151 -148.249.64.0/18 8151 -148.249.128.0/17 8151 -148.251.0.0/16 24940 -148.252.1.0/24 1273 -148.252.2.0/24 1273 -148.252.3.0/24 2856 -148.252.5.0/24 2856 -148.252.8.0/21 29644 -148.252.16.0/20 58273 -148.252.32.0/19 61124 -148.252.64.0/18 34087 -148.252.128.0/23 25135 -148.252.132.0/23 25135 -148.252.192.0/18 42973 -148.253.4.0/22 2856 -148.253.16.0/24 60725 -148.253.18.0/23 60725 -148.253.20.0/22 60725 -148.253.24.0/23 60725 -148.253.26.0/24 60725 -148.253.32.0/22 36408 -148.253.64.0/18 50624 -148.253.128.0/19 31727 -148.253.160.0/19 51043 -148.253.208.0/21 44503 -148.253.220.0/23 2856 -148.253.224.0/22 36408 -148.253.228.0/23 36408 -148.253.236.0/22 36408 -148.253.240.0/21 36408 -148.253.248.0/22 36408 -148.253.252.0/23 36408 -148.253.254.0/24 36408 -148.254.0.0/16 174 -148.255.0.0/16 6400 -149.0.0.0/19 8386 -149.0.40.0/21 8386 -149.0.48.0/20 8386 -149.0.64.0/21 8386 -149.0.72.0/23 8386 -149.0.74.0/24 8386 -149.0.76.0/24 15924 -149.0.77.0/24 8386 -149.0.78.0/23 8386 -149.0.80.0/20 8386 -149.0.96.0/21 8386 -149.0.104.0/22 8386 -149.0.110.0/23 8386 -149.0.112.0/21 8386 -149.0.124.0/22 8386 -149.0.128.0/18 8386 -149.0.192.0/20 8386 -149.0.208.0/21 8386 -149.0.216.0/22 8386 -149.0.220.0/23 8386 -149.0.222.0/24 8386 -149.0.224.0/19 8386 -149.1.0.0/16 2828 -149.2.0.0/18 174 -149.2.64.0/20 174 -149.2.80.0/23 174 -149.2.82.0/23 20115 -149.2.84.0/23 20115 -149.2.86.0/23 174 -149.2.88.0/24 174 -149.2.89.0/24 19313 -149.2.90.0/23 174 -149.2.92.0/22 174 -149.2.96.0/24 174 -149.2.97.0/24 11981 -149.2.98.0/24 174 -149.2.99.0/24 11981 -149.2.100.0/22 174 -149.2.104.0/21 174 -149.2.112.0/20 174 -149.2.128.0/17 174 -149.3.0.0/17 35805 -149.3.128.0/20 20860 -149.3.144.0/21 12637 -149.3.152.0/21 42852 -149.3.160.0/22 61205 -149.3.164.0/22 43571 -149.3.172.0/23 209497 -149.3.175.0/24 209497 -149.3.176.0/21 6762 -149.3.184.0/22 43870 -149.3.188.0/24 208062 -149.3.189.0/24 209640 -149.3.190.0/23 209640 -149.3.192.0/19 29355 -149.3.224.0/20 29355 -149.3.240.0/21 29355 -149.4.0.0/16 31822 -149.5.0.0/22 174 -149.5.4.0/23 174 -149.5.6.0/24 174 -149.5.7.0/24 62715 -149.5.8.0/23 209561 -149.5.10.0/23 174 -149.5.12.0/23 174 -149.5.14.0/24 200756 -149.5.15.0/24 174 -149.5.16.0/21 174 -149.5.24.0/23 174 -149.5.26.0/24 174 -149.5.27.0/24 59943 -149.5.28.0/22 174 -149.5.32.0/24 60110 -149.5.33.0/24 174 -149.5.34.0/23 174 -149.5.36.0/22 60110 -149.5.40.0/22 62455 -149.5.44.0/22 174 -149.5.48.0/20 174 -149.5.64.0/23 174 -149.5.66.0/24 51297 -149.5.67.0/24 174 -149.5.68.0/22 174 -149.5.72.0/22 174 -149.5.76.0/24 174 -149.5.77.0/24 18919 -149.5.78.0/24 18919 -149.5.79.0/24 394122 -149.5.80.0/23 174 -149.5.82.0/23 202102 -149.5.84.0/24 206934 -149.5.85.0/24 174 -149.5.86.0/24 196736 -149.5.87.0/24 174 -149.5.88.0/22 174 -149.5.92.0/24 206704 -149.5.93.0/24 63142 -149.5.94.0/24 62313 -149.5.95.0/24 174 -149.5.96.0/22 174 -149.5.100.0/23 41354 -149.5.102.0/23 174 -149.5.104.0/21 174 -149.5.112.0/22 174 -149.5.116.0/23 174 -149.5.118.0/24 44308 -149.5.119.0/24 26476 -149.5.120.0/21 174 -149.5.128.0/24 203749 -149.5.129.0/24 174 -149.5.130.0/24 174 -149.5.131.0/24 203749 -149.5.132.0/22 174 -149.5.136.0/21 174 -149.5.144.0/20 174 -149.5.160.0/20 174 -149.5.176.0/24 174 -149.5.177.0/24 197936 -149.5.178.0/23 174 -149.5.180.0/22 174 -149.5.184.0/23 174 -149.5.186.0/24 43009 -149.5.187.0/24 51577 -149.5.188.0/22 174 -149.5.192.0/20 174 -149.5.208.0/24 47787 -149.5.209.0/24 202376 -149.5.210.0/24 202376 -149.5.211.0/24 174 -149.5.212.0/24 209153 -149.5.213.0/24 174 -149.5.214.0/23 174 -149.5.216.0/21 174 -149.5.224.0/22 174 -149.5.228.0/24 200589 -149.5.229.0/24 174 -149.5.230.0/23 174 -149.5.232.0/24 40934 -149.5.233.0/24 174 -149.5.234.0/23 174 -149.5.236.0/22 174 -149.5.240.0/20 174 -149.6.0.0/18 174 -149.6.64.0/19 174 -149.6.96.0/20 174 -149.6.112.0/21 174 -149.6.120.0/22 174 -149.6.124.0/24 174 -149.6.125.0/24 51048 -149.6.126.0/23 174 -149.6.128.0/18 174 -149.6.192.0/21 174 -149.6.200.0/24 49835 -149.6.201.0/24 174 -149.6.202.0/24 174 -149.6.203.0/24 49835 -149.6.204.0/24 49835 -149.6.205.0/24 174 -149.6.206.0/23 174 -149.6.208.0/20 174 -149.6.224.0/19 174 -149.7.0.0/19 174 -149.7.32.0/23 174 -149.7.34.0/24 174 -149.7.35.0/24 55081 -149.7.36.0/24 174 -149.7.37.0/24 27313 -149.7.38.0/24 203749 -149.7.39.0/24 174 -149.7.40.0/21 174 -149.7.48.0/22 174 -149.7.52.0/24 204242 -149.7.53.0/24 174 -149.7.54.0/23 174 -149.7.56.0/24 14601 -149.7.57.0/24 174 -149.7.58.0/24 60758 -149.7.59.0/24 39849 -149.7.60.0/24 63217 -149.7.61.0/24 174 -149.7.62.0/24 201867 -149.7.63.0/24 174 -149.7.64.0/21 174 -149.7.72.0/22 199312 -149.7.76.0/24 62064 -149.7.77.0/24 174 -149.7.78.0/23 174 -149.7.80.0/20 174 -149.7.96.0/22 174 -149.7.100.0/24 200116 -149.7.101.0/24 49230 -149.7.102.0/24 174 -149.7.103.0/24 197205 -149.7.104.0/23 174 -149.7.106.0/24 60293 -149.7.107.0/24 174 -149.7.108.0/22 174 -149.7.112.0/20 174 -149.7.128.0/18 174 -149.7.192.0/24 174 -149.7.193.0/24 50881 -149.7.194.0/23 174 -149.7.196.0/22 174 -149.7.200.0/21 174 -149.7.208.0/22 174 -149.7.212.0/23 174 -149.7.214.0/23 201722 -149.7.216.0/21 174 -149.7.224.0/23 174 -149.7.226.0/24 201924 -149.7.227.0/24 174 -149.7.228.0/22 174 -149.7.232.0/21 174 -149.7.240.0/24 174 -149.7.241.0/24 47110 -149.7.242.0/23 174 -149.7.244.0/22 8518 -149.7.248.0/21 174 -149.8.0.0/16 19 -149.9.0.0/16 14987 -149.10.0.0/16 397733 -149.11.0.0/18 174 -149.11.64.0/21 174 -149.11.72.0/24 174 -149.11.73.0/24 206652 -149.11.74.0/23 174 -149.11.76.0/22 174 -149.11.80.0/20 174 -149.11.96.0/19 174 -149.11.128.0/17 174 -149.12.0.0/20 48945 -149.12.16.0/24 174 -149.12.17.0/24 6775 -149.12.18.0/23 174 -149.12.20.0/22 174 -149.12.24.0/21 174 -149.12.32.0/19 174 -149.12.64.0/22 174 -149.12.68.0/23 174 -149.12.70.0/24 202829 -149.12.71.0/24 174 -149.12.72.0/21 174 -149.12.80.0/20 174 -149.12.96.0/19 174 -149.12.128.0/22 200100 -149.12.132.0/22 174 -149.12.136.0/21 174 -149.12.144.0/20 174 -149.12.160.0/20 174 -149.12.176.0/22 174 -149.12.180.0/23 174 -149.12.182.0/24 174 -149.12.183.0/24 201573 -149.12.184.0/22 59597 -149.12.188.0/22 174 -149.12.192.0/19 174 -149.12.224.0/24 202170 -149.12.225.0/24 174 -149.12.226.0/24 174 -149.12.227.0/24 202170 -149.12.228.0/22 174 -149.12.232.0/21 174 -149.12.240.0/24 174 -149.12.241.0/24 60022 -149.12.242.0/23 60022 -149.12.244.0/22 174 -149.12.248.0/21 174 -149.13.0.0/24 60483 -149.13.1.0/24 174 -149.13.2.0/23 174 -149.13.4.0/22 174 -149.13.8.0/21 174 -149.13.16.0/24 204495 -149.13.17.0/24 174 -149.13.18.0/23 203068 -149.13.20.0/22 174 -149.13.24.0/22 202829 -149.13.28.0/23 174 -149.13.30.0/24 207043 -149.13.31.0/24 174 -149.13.32.0/24 206315 -149.13.33.0/24 174 -149.13.34.0/23 174 -149.13.36.0/22 174 -149.13.40.0/21 174 -149.13.48.0/20 174 -149.13.64.0/24 17330 -149.13.65.0/24 4546 -149.13.66.0/23 174 -149.13.68.0/24 174 -149.13.69.0/24 19080 -149.13.70.0/24 19970 -149.13.71.0/24 174 -149.13.72.0/24 19203 -149.13.73.0/24 174 -149.13.74.0/23 174 -149.13.76.0/23 174 -149.13.78.0/23 61083 -149.13.80.0/21 174 -149.13.88.0/23 174 -149.13.90.0/24 203947 -149.13.91.0/24 174 -149.13.92.0/23 174 -149.13.94.0/24 52113 -149.13.95.0/24 17330 -149.13.96.0/20 174 -149.13.112.0/24 174 -149.13.113.0/24 29322 -149.13.114.0/24 174 -149.13.115.0/24 42467 -149.13.116.0/22 174 -149.13.120.0/21 174 -149.13.128.0/20 174 -149.13.144.0/23 174 -149.13.146.0/23 200794 -149.13.148.0/22 59699 -149.13.152.0/22 200794 -149.13.156.0/22 203223 -149.13.160.0/20 174 -149.13.176.0/24 44521 -149.13.177.0/24 174 -149.13.178.0/23 174 -149.13.180.0/22 174 -149.13.184.0/21 174 -149.13.192.0/19 174 -149.13.224.0/20 174 -149.13.240.0/23 174 -149.13.242.0/23 62455 -149.13.244.0/22 62455 -149.13.248.0/21 174 -149.14.0.0/20 174 -149.14.16.0/24 174 -149.14.17.0/24 30967 -149.14.18.0/23 174 -149.14.20.0/24 174 -149.14.21.0/24 12884 -149.14.22.0/23 174 -149.14.24.0/21 174 -149.14.32.0/19 174 -149.14.64.0/18 174 -149.14.128.0/17 174 -149.15.0.0/16 20337 -149.16.0.0/16 174 -149.17.0.0/17 2686 -149.17.128.0/20 2686 -149.17.144.0/20 4265 -149.17.160.0/20 4266 -149.17.176.0/20 2686 -149.17.192.0/20 2686 -149.17.208.0/20 17225 -149.17.224.0/19 2686 -149.19.0.0/18 10250 -149.19.64.0/19 10250 -149.19.96.0/21 10250 -149.19.104.0/22 10250 -149.19.108.0/23 10250 -149.19.110.0/24 10250 -149.19.111.0/24 62855 -149.19.112.0/20 10250 -149.19.128.0/17 10250 -149.20.0.0/19 1280 -149.20.32.0/20 1280 -149.20.48.0/21 1280 -149.20.56.0/24 1280 -149.20.57.0/24 27321 -149.20.58.0/23 1280 -149.20.60.0/22 1280 -149.20.64.0/22 1280 -149.20.68.0/23 393507 -149.20.72.0/21 1280 -149.20.80.0/24 1280 -149.20.82.0/23 1280 -149.20.88.0/24 1280 -149.20.89.0/24 397620 -149.20.90.0/23 1280 -149.20.92.0/22 1280 -149.20.96.0/19 1280 -149.20.161.0/24 21699 -149.20.162.0/23 21699 -149.20.164.0/22 21699 -149.20.168.0/21 54501 -149.20.176.0/22 63242 -149.20.180.0/24 63242 -149.20.181.0/24 395731 -149.20.182.0/23 395731 -149.20.184.0/21 21699 -149.20.192.0/22 13150 -149.20.196.0/24 13150 -149.20.199.0/24 13150 -149.20.206.0/24 13150 -149.20.208.0/20 53347 -149.20.224.0/21 62880 -149.20.232.0/21 16824 -149.20.240.0/21 64267 -149.20.248.0/21 18615 -149.21.0.0/16 10599 -149.22.0.0/19 48945 -149.22.32.0/19 30967 -149.23.0.0/24 33442 -149.23.1.0/24 3549 -149.23.2.0/23 33442 -149.23.4.0/22 33442 -149.23.8.0/24 701 -149.23.9.0/24 33442 -149.23.10.0/23 33442 -149.23.12.0/22 33442 -149.23.16.0/20 33442 -149.23.32.0/20 33442 -149.23.48.0/21 33442 -149.23.56.0/22 33442 -149.23.60.0/23 33442 -149.23.62.0/24 33442 -149.23.63.0/24 701 -149.23.64.0/18 33442 -149.23.128.0/17 33442 -149.24.0.0/20 54624 -149.24.16.0/22 54624 -149.24.20.0/23 54624 -149.24.22.0/24 11866 -149.24.23.0/24 54624 -149.24.24.0/24 11866 -149.24.25.0/24 54624 -149.24.26.0/23 54624 -149.24.28.0/22 54624 -149.24.32.0/20 54624 -149.24.48.0/22 54624 -149.24.52.0/23 54624 -149.24.54.0/24 30403 -149.24.55.0/24 54624 -149.24.56.0/22 54624 -149.24.60.0/24 132377 -149.24.61.0/24 54624 -149.24.62.0/23 54624 -149.24.64.0/19 54624 -149.24.96.0/21 54624 -149.24.104.0/23 54624 -149.24.106.0/24 393284 -149.24.107.0/24 54624 -149.24.108.0/23 54624 -149.24.110.0/23 10753 -149.24.112.0/22 27435 -149.24.116.0/22 54624 -149.24.120.0/21 54624 -149.24.128.0/22 54624 -149.24.132.0/23 54624 -149.24.134.0/23 27435 -149.24.136.0/22 27435 -149.24.140.0/23 27435 -149.24.142.0/24 54624 -149.24.143.0/24 27435 -149.24.144.0/24 8151 -149.24.145.0/24 54624 -149.24.146.0/23 54624 -149.24.148.0/22 54624 -149.24.152.0/21 54624 -149.24.160.0/19 54624 -149.24.192.0/21 54624 -149.24.200.0/22 54624 -149.24.204.0/24 54624 -149.24.205.0/24 13415 -149.24.206.0/23 54624 -149.24.208.0/21 54624 -149.24.216.0/22 54624 -149.24.220.0/24 54624 -149.24.221.0/24 31122 -149.24.222.0/24 31122 -149.24.223.0/24 54624 -149.24.224.0/22 54624 -149.24.228.0/24 54624 -149.24.229.0/24 28685 -149.24.230.0/23 15802 -149.24.232.0/24 4589 -149.24.233.0/24 9797 -149.24.234.0/23 4589 -149.24.236.0/22 54624 -149.24.240.0/20 54624 -149.25.0.0/16 14962 -149.26.0.0/16 14962 -149.27.0.0/16 29355 -149.28.0.0/21 3820 -149.28.8.0/21 20473 -149.28.16.0/20 20473 -149.28.32.0/19 20473 -149.28.64.0/18 20473 -149.28.128.0/17 20473 -149.29.0.0/16 174 -149.30.0.0/16 174 -149.31.0.0/16 27616 -149.32.0.0/16 26577 -149.33.0.0/16 174 -149.34.0.0/20 35699 -149.34.28.0/22 35699 -149.34.32.0/20 206866 -149.34.56.0/21 199312 -149.35.0.0/16 174 -149.36.0.0/22 62240 -149.36.4.0/24 174 -149.36.5.0/24 204242 -149.36.6.0/24 203749 -149.36.7.0/24 174 -149.36.8.0/21 174 -149.36.16.0/20 174 -149.36.32.0/19 174 -149.36.64.0/18 174 -149.36.128.0/18 174 -149.36.192.0/19 174 -149.36.224.0/21 174 -149.36.232.0/22 202829 -149.36.236.0/23 174 -149.36.238.0/23 202883 -149.36.240.0/22 206837 -149.36.244.0/22 174 -149.36.248.0/22 24654 -149.36.252.0/22 203704 -149.37.1.0/24 3549 -149.37.200.0/24 3549 -149.38.0.0/16 174 -149.39.0.0/20 17112 -149.39.16.0/20 19646 -149.39.240.0/20 17112 -149.40.0.0/16 174 -149.41.1.0/24 7046 -149.43.0.0/16 1289 -149.46.0.0/16 174 -149.47.0.0/16 62729 -149.48.128.0/20 16710 -149.48.160.0/20 16710 -149.48.190.0/23 16710 -149.48.223.0/24 16710 -149.48.224.0/19 16710 -149.49.0.0/16 18676 -149.50.0.0/15 174 -149.52.0.0/15 174 -149.54.1.0/24 55330 -149.54.2.0/23 55330 -149.54.4.0/22 55330 -149.54.8.0/22 55330 -149.54.14.0/23 55330 -149.54.17.0/24 55330 -149.54.18.0/23 55330 -149.54.20.0/23 55330 -149.54.128.0/17 7524 -149.55.24.0/22 14566 -149.55.28.0/24 14566 -149.56.0.0/16 16276 -149.57.0.0/16 174 -149.58.0.0/16 32835 -149.61.0.0/16 23171 -149.62.0.0/19 8371 -149.62.36.0/22 35913 -149.62.40.0/22 61317 -149.62.44.0/24 4785 -149.62.45.0/24 54600 -149.62.46.0/23 54600 -149.62.48.0/21 57424 -149.62.56.0/21 5539 -149.62.64.0/18 2107 -149.62.144.0/21 24971 -149.62.152.0/21 57119 -149.62.160.0/21 197969 -149.62.168.0/21 50926 -149.62.176.0/21 43160 -149.62.184.0/21 47242 -149.62.192.0/18 29244 -149.63.0.0/16 46746 -149.64.0.0/17 188 -149.64.128.0/18 188 -149.64.192.0/19 188 -149.64.224.0/24 209 -149.64.225.0/24 19331 -149.64.226.0/24 174 -149.64.227.0/24 188 -149.64.228.0/22 188 -149.64.232.0/21 188 -149.64.240.0/20 188 -149.65.0.0/16 701 -149.66.0.0/15 174 -149.68.0.0/16 18564 -149.69.0.0/16 54177 -149.70.0.0/16 46887 -149.71.0.0/19 174 -149.71.32.0/23 38713 -149.71.34.0/23 174 -149.71.36.0/22 38193 -149.71.40.0/21 174 -149.71.48.0/21 203591 -149.71.56.0/22 174 -149.71.60.0/23 198545 -149.71.62.0/23 174 -149.71.64.0/19 174 -149.71.96.0/21 60458 -149.71.104.0/21 174 -149.71.112.0/23 174 -149.71.114.0/23 133847 -149.71.116.0/24 133847 -149.71.117.0/24 174 -149.71.118.0/23 174 -149.71.120.0/24 174 -149.71.121.0/24 133847 -149.71.122.0/23 133847 -149.71.124.0/24 174 -149.71.125.0/24 133847 -149.71.126.0/23 133847 -149.71.128.0/19 174 -149.71.160.0/22 199256 -149.71.164.0/22 174 -149.71.168.0/21 43160 -149.71.176.0/20 174 -149.71.192.0/18 174 -149.72.1.0/24 11377 -149.72.4.0/22 11377 -149.72.8.0/21 11377 -149.72.19.0/24 11377 -149.72.20.0/22 11377 -149.72.24.0/21 11377 -149.72.32.0/19 11377 -149.72.64.0/19 11377 -149.72.128.0/17 11377 -149.75.192.0/18 36351 -149.76.0.0/16 46356 -149.77.0.0/16 4195 -149.79.50.0/24 10655 -149.79.52.0/24 10655 -149.79.99.0/24 10655 -149.79.192.0/23 10655 -149.79.194.0/24 10655 -149.81.64.0/18 36351 -149.81.128.0/18 36351 -149.84.0.0/16 13513 -149.85.0.0/16 19580 -149.86.0.0/18 174 -149.86.64.0/19 174 -149.86.96.0/21 199542 -149.86.104.0/21 174 -149.86.112.0/20 174 -149.86.128.0/19 174 -149.86.160.0/21 201665 -149.86.168.0/21 174 -149.86.176.0/20 174 -149.86.192.0/19 174 -149.86.224.0/22 201814 -149.86.228.0/22 174 -149.86.232.0/21 174 -149.86.240.0/20 174 -149.87.0.0/16 174 -149.89.0.0/16 12271 -149.90.0.0/16 12353 -149.91.0.0/22 174 -149.91.4.0/24 60293 -149.91.5.0/24 203277 -149.91.6.0/23 200811 -149.91.8.0/24 174 -149.91.9.0/24 204282 -149.91.10.0/23 174 -149.91.12.0/24 174 -149.91.13.0/24 201398 -149.91.14.0/24 201473 -149.91.15.0/24 174 -149.91.16.0/20 174 -149.91.32.0/19 174 -149.91.64.0/22 49421 -149.91.68.0/22 174 -149.91.72.0/21 174 -149.91.80.0/22 62000 -149.91.84.0/24 201196 -149.91.85.0/24 174 -149.91.86.0/24 174 -149.91.87.0/24 200843 -149.91.88.0/22 62000 -149.91.92.0/24 200811 -149.91.93.0/24 174 -149.91.94.0/23 174 -149.91.96.0/22 34977 -149.91.100.0/23 202491 -149.91.102.0/23 34977 -149.91.104.0/21 34977 -149.91.112.0/20 34977 -149.91.128.0/21 174 -149.91.136.0/24 199092 -149.91.137.0/24 174 -149.91.138.0/24 203947 -149.91.139.0/24 174 -149.91.140.0/22 174 -149.91.144.0/20 174 -149.91.160.0/19 35699 -149.91.192.0/18 174 -149.92.0.0/14 174 -149.96.1.0/24 16839 -149.96.2.0/23 16839 -149.96.4.0/22 16839 -149.96.8.0/24 16839 -149.96.10.0/23 16839 -149.96.13.0/24 16839 -149.96.14.0/24 16839 -149.96.16.0/20 16839 -149.96.32.0/19 16839 -149.96.64.0/20 16839 -149.96.88.0/21 16839 -149.96.96.0/19 16839 -149.96.128.0/22 16839 -149.96.132.0/23 16839 -149.96.135.0/24 16839 -149.96.136.0/24 16839 -149.96.144.0/20 16839 -149.96.160.0/20 16839 -149.96.176.0/21 16839 -149.96.184.0/21 397182 -149.96.192.0/23 397182 -149.96.194.0/23 16839 -149.96.196.0/22 16839 -149.96.200.0/21 16839 -149.96.208.0/21 16839 -149.96.216.0/22 16839 -149.96.220.0/23 16839 -149.96.224.0/19 16839 -149.97.0.0/23 209 -149.97.2.0/24 209 -149.97.4.0/24 209 -149.97.16.0/24 209 -149.97.24.0/24 209 -149.97.26.0/23 209 -149.97.40.0/24 209 -149.97.48.0/21 209 -149.97.64.0/23 14244 -149.97.101.0/24 14244 -149.97.102.0/24 14244 -149.97.114.0/23 14244 -149.97.116.0/22 395481 -149.97.120.0/24 25922 -149.97.124.0/22 46513 -149.97.128.0/22 12085 -149.97.132.0/22 27330 -149.97.136.0/22 19930 -149.97.140.0/22 29884 -149.97.144.0/22 27224 -149.97.148.0/22 27566 -149.97.152.0/22 32550 -149.97.156.0/22 32323 -149.97.160.0/22 54588 -149.97.164.0/22 16553 -149.97.168.0/22 64275 -149.97.172.0/22 29884 -149.97.176.0/21 12085 -149.97.184.0/22 54588 -149.97.188.0/22 27566 -149.97.192.0/22 16553 -149.97.196.0/22 54588 -149.97.200.0/22 12085 -149.97.204.0/22 29884 -149.97.208.0/22 19930 -149.97.212.0/22 32323 -149.99.0.0/16 3602 -149.100.0.0/20 174 -149.100.16.0/21 174 -149.100.24.0/21 43160 -149.100.32.0/19 174 -149.100.64.0/18 174 -149.100.128.0/19 174 -149.100.160.0/24 174 -149.100.161.0/24 43364 -149.100.162.0/23 200794 -149.100.164.0/24 199536 -149.100.165.0/24 174 -149.100.166.0/23 174 -149.100.168.0/22 201518 -149.100.172.0/22 28941 -149.100.176.0/22 207606 -149.100.180.0/22 174 -149.100.184.0/21 174 -149.100.192.0/18 174 -149.101.0.0/23 15130 -149.101.17.0/24 15130 -149.101.21.0/24 15130 -149.101.22.0/24 15130 -149.101.25.0/24 15130 -149.101.26.0/24 15130 -149.101.28.0/23 15130 -149.101.30.0/24 15130 -149.101.32.0/24 15130 -149.101.40.0/24 15130 -149.101.45.0/24 15130 -149.101.47.0/24 15130 -149.101.52.0/24 15130 -149.101.57.0/24 15130 -149.101.68.0/22 15130 -149.101.72.0/21 15130 -149.101.80.0/22 15130 -149.101.92.0/22 15130 -149.101.100.0/22 25996 -149.101.107.0/24 15130 -149.101.111.0/24 15130 -149.101.118.0/24 25996 -149.101.127.0/24 15130 -149.101.128.0/24 15130 -149.101.160.0/22 15130 -149.101.164.0/23 25996 -149.101.180.0/22 15130 -149.101.207.0/24 15130 -149.101.216.0/24 25996 -149.101.222.0/24 15130 -149.101.226.0/24 25996 -149.101.228.0/24 15130 -149.101.229.0/24 25996 -149.101.242.0/24 25996 -149.102.16.0/20 174 -149.102.96.0/20 133613 -149.102.112.0/20 197722 -149.103.10.0/24 26589 -149.104.0.0/16 174 -149.105.0.0/16 7046 -149.106.0.0/16 19999 -149.107.0.0/16 174 -149.108.0.0/16 174 -149.109.0.0/16 25019 -149.110.0.0/16 174 -149.111.12.0/24 10879 -149.111.26.0/23 10879 -149.111.28.0/22 10879 -149.111.68.0/24 10879 -149.111.128.0/19 10879 -149.111.164.0/22 10879 -149.111.168.0/21 10879 -149.111.192.0/19 10879 -149.111.224.0/21 10879 -149.111.232.0/22 10879 -149.112.112.0/24 19281 -149.112.149.0/24 19281 -149.113.0.0/16 174 -149.115.16.0/20 30447 -149.115.48.0/20 12231 -149.115.96.0/21 13693 -149.115.113.0/24 16734 -149.115.114.0/24 16734 -149.115.116.0/23 16734 -149.115.118.0/24 16734 -149.115.120.0/21 174 -149.115.128.0/19 174 -149.115.208.0/20 174 -149.117.1.0/24 7809 -149.117.2.0/24 3356 -149.117.7.0/24 397635 -149.117.9.0/24 13768 -149.117.11.0/24 29909 -149.117.15.0/24 3549 -149.117.17.0/24 3356 -149.117.18.0/23 3356 -149.117.20.0/24 3356 -149.117.24.0/23 3356 -149.117.26.0/24 3356 -149.117.28.0/23 3356 -149.117.30.0/24 3356 -149.117.32.0/23 3356 -149.117.44.0/24 3356 -149.117.52.0/23 3356 -149.117.54.0/24 3356 -149.117.56.0/23 26791 -149.117.64.0/24 7015 -149.117.66.0/23 394027 -149.117.68.0/23 394027 -149.117.72.0/21 397635 -149.117.87.0/24 397635 -149.117.100.0/24 27269 -149.117.129.0/24 3356 -149.117.138.0/24 3549 -149.117.146.0/24 3356 -149.117.157.0/24 3549 -149.117.159.0/24 3356 -149.117.165.0/24 3549 -149.117.192.0/24 4755 -149.117.214.0/23 1239 -149.117.216.0/23 1239 -149.119.0.0/16 11872 -149.120.0.0/16 174 -149.122.19.0/24 22203 -149.122.96.0/22 22203 -149.125.0.0/16 4190 -149.126.0.0/21 47302 -149.126.8.0/21 205501 -149.126.16.0/21 8492 -149.126.24.0/21 31297 -149.126.32.0/20 197991 -149.126.48.0/21 33845 -149.126.64.0/21 61333 -149.126.72.0/21 19551 -149.126.80.0/22 31441 -149.126.84.0/23 31441 -149.126.86.0/23 44735 -149.126.88.0/21 51737 -149.126.96.0/21 196695 -149.126.104.0/21 50173 -149.126.112.0/20 196925 -149.126.128.0/19 5603 -149.126.160.0/21 9192 -149.126.168.0/21 21418 -149.126.176.0/21 20904 -149.126.184.0/21 197975 -149.126.192.0/19 207636 -149.126.224.0/19 134121 -149.127.0.0/16 174 -149.128.8.0/21 29828 -149.128.16.0/23 29828 -149.128.18.0/24 29828 -149.128.32.0/22 29828 -149.128.42.0/24 29828 -149.128.255.0/24 29828 -149.129.0.0/20 45102 -149.129.16.0/23 45102 -149.129.32.0/19 45102 -149.129.64.0/18 45102 -149.129.128.0/17 45102 -149.130.0.0/16 33022 -149.131.49.0/24 19152 -149.131.76.0/24 18703 -149.132.0.0/16 137 -149.133.4.0/23 3303 -149.134.144.0/23 48075 -149.134.146.0/24 48075 -149.134.148.0/23 48075 -149.134.152.0/23 48075 -149.134.156.0/23 48075 -149.134.158.0/24 48075 -149.134.168.0/24 48075 -149.134.170.0/24 48075 -149.134.173.0/24 7018 -149.134.174.0/24 48075 -149.134.175.0/24 3491 -149.134.177.0/24 48075 -149.134.181.0/24 48075 -149.134.182.0/24 48075 -149.135.0.0/16 1221 -149.136.0.0/17 1348 -149.136.128.0/18 1348 -149.136.249.0/24 1348 -149.137.0.0/16 40385 -149.138.0.0/16 3549 -149.139.0.0/16 137 -149.140.0.0/17 8386 -149.140.128.0/19 8386 -149.140.160.0/21 8386 -149.140.168.0/22 8386 -149.140.178.0/23 8386 -149.140.184.0/22 8386 -149.140.191.0/24 8386 -149.140.192.0/19 8386 -149.140.224.0/20 8386 -149.140.240.0/21 8386 -149.140.250.0/23 8386 -149.142.0.0/16 52 -149.143.0.0/18 600 -149.143.128.0/17 600 -149.144.0.0/16 135893 -149.146.0.0/16 24586 -149.147.0.0/16 42961 -149.148.0.0/16 2494 -149.149.0.0/16 19331 -149.150.48.0/21 31828 -149.150.200.0/24 10753 -149.150.236.0/22 31828 -149.150.253.0/24 31828 -149.150.254.0/24 31828 -149.151.0.0/16 10955 -149.152.0.0/20 25691 -149.152.16.0/20 22742 -149.152.32.0/19 22742 -149.152.64.0/20 22742 -149.152.96.0/24 22742 -149.152.112.0/20 22742 -149.152.128.0/18 22742 -149.152.192.0/19 22742 -149.152.224.0/24 22742 -149.153.0.0/16 1213 -149.154.0.0/24 43074 -149.154.2.0/23 43074 -149.154.4.0/22 43074 -149.154.64.0/21 29182 -149.154.72.0/21 12460 -149.154.80.0/21 57141 -149.154.88.0/21 57144 -149.154.96.0/21 48339 -149.154.104.0/21 45046 -149.154.112.0/21 21191 -149.154.120.0/21 198859 -149.154.128.0/20 12714 -149.154.144.0/21 51176 -149.154.152.0/22 57169 -149.154.156.0/24 57169 -149.154.157.0/24 20836 -149.154.158.0/24 35017 -149.154.159.0/24 47447 -149.154.160.0/21 62041 -149.154.168.0/22 62014 -149.154.172.0/22 59930 -149.154.176.0/20 266820 -149.154.192.0/18 12392 -149.155.0.0/16 786 -149.156.0.0/16 8267 -149.157.0.0/16 1213 -149.158.77.0/24 2386 -149.158.240.0/22 397121 -149.159.0.0/19 87 -149.159.128.0/17 27198 -149.160.0.0/14 87 -149.164.0.0/16 17 -149.165.0.0/17 87 -149.165.128.0/20 19782 -149.165.144.0/20 10680 -149.165.160.0/21 19782 -149.165.168.0/21 10680 -149.165.176.0/20 19782 -149.165.192.0/19 19782 -149.165.224.0/20 10680 -149.165.240.0/22 19782 -149.165.244.0/23 27198 -149.165.246.0/23 19782 -149.165.248.0/23 19782 -149.165.250.0/24 19782 -149.165.251.0/24 394747 -149.165.252.0/22 19782 -149.166.0.0/16 87 -149.167.0.0/16 135887 -149.168.0.0/16 6559 -149.169.0.0/16 2900 -149.170.0.0/16 786 -149.171.0.0/16 23859 -149.172.0.0/16 6830 -149.173.0.0/16 12229 -149.175.0.0/16 30629 -149.176.112.0/24 1221 -149.176.116.0/24 1221 -149.176.169.0/24 1221 -149.176.172.0/24 1221 -149.176.203.0/24 1221 -149.176.221.0/24 1221 -149.176.223.0/24 1221 -149.176.225.0/24 1221 -149.176.226.0/23 1221 -149.176.244.0/24 1221 -149.176.246.0/24 1221 -149.176.248.0/24 1221 -149.176.250.0/23 1221 -149.176.252.0/22 1221 -149.177.128.0/22 15752 -149.177.148.0/22 15752 -149.177.152.0/22 15752 -149.177.164.0/22 15752 -149.177.176.0/21 15752 -149.177.192.0/22 15753 -149.177.212.0/22 15753 -149.177.216.0/22 15753 -149.177.224.0/21 15753 -149.182.216.0/23 2535 -149.184.142.0/23 2535 -149.184.144.0/23 2535 -149.184.160.0/20 2535 -149.184.224.0/19 2535 -149.185.136.0/24 2535 -149.185.200.0/24 2535 -149.189.160.0/20 2535 -149.189.192.0/21 2535 -149.195.58.0/23 2535 -149.197.0.0/16 1759 -149.199.0.0/16 32537 -149.200.0.0/17 5483 -149.200.128.0/17 8376 -149.201.0.0/16 680 -149.202.0.0/16 16276 -149.203.0.0/16 680 -149.204.0.0/16 41581 -149.205.0.0/16 680 -149.206.0.0/17 15854 -149.206.128.0/19 15854 -149.206.160.0/21 15854 -149.206.168.0/23 2830 -149.206.170.0/23 15854 -149.206.172.0/22 15854 -149.206.176.0/20 15854 -149.206.192.0/18 15854 -149.209.0.0/16 2830 -149.210.0.0/17 29247 -149.210.128.0/17 20857 -149.211.0.0/18 15854 -149.211.64.0/20 15854 -149.211.80.0/21 15854 -149.211.88.0/24 15854 -149.211.89.0/24 2830 -149.211.90.0/23 15854 -149.211.92.0/22 15854 -149.211.96.0/19 15854 -149.211.128.0/17 15854 -149.212.255.0/24 42525 -149.214.0.0/15 5605 -149.216.0.0/16 12422 -149.217.0.0/16 680 -149.218.0.0/16 8319 -149.219.0.0/16 8303 -149.220.0.0/16 680 -149.221.0.0/16 9175 -149.222.0.0/16 680 -149.223.0.0/16 2856 -149.224.0.0/16 15943 -149.225.0.0/16 702 -149.226.192.0/21 133466 -149.227.0.0/16 702 -149.228.0.0/14 702 -149.232.0.0/17 15763 -149.232.128.0/18 15763 -149.232.192.0/19 15763 -149.232.224.0/20 15763 -149.232.240.0/21 15763 -149.232.248.0/22 15763 -149.232.252.0/22 57376 -149.233.0.0/19 203329 -149.233.32.0/19 8881 -149.233.64.0/18 3320 -149.233.128.0/17 15943 -149.234.0.0/21 16673 -149.234.8.0/21 13043 -149.234.16.0/20 13043 -149.234.32.0/19 13043 -149.234.64.0/18 13043 -149.234.128.0/19 45755 -149.234.160.0/20 45755 -149.234.176.0/21 45755 -149.234.184.0/22 45755 -149.234.188.0/24 2497 -149.234.189.0/24 1221 -149.234.190.0/24 17675 -149.234.191.0/24 138162 -149.234.192.0/19 16673 -149.234.224.0/20 16673 -149.234.240.0/21 16673 -149.234.248.0/24 16673 -149.234.250.0/23 16673 -149.234.252.0/22 16673 -149.235.0.0/21 203160 -149.235.8.0/23 8232 -149.235.10.0/23 203160 -149.235.12.0/24 203160 -149.235.13.0/24 8232 -149.235.14.0/23 203160 -149.235.16.0/21 205527 -149.235.24.0/24 3257 -149.235.25.0/24 205527 -149.235.26.0/23 3257 -149.235.28.0/22 3257 -149.235.32.0/19 3257 -149.235.64.0/18 3257 -149.235.128.0/17 3257 -149.236.0.0/16 12843 -149.237.200.0/24 3209 -149.237.201.0/24 3320 -149.238.0.0/16 21263 -149.239.0.0/16 12291 -149.240.0.0/16 3320 -149.241.0.0/16 5607 -149.242.0.0/16 35391 -149.243.232.0/22 3320 -149.243.242.0/23 9145 -149.244.0.0/17 38943 -149.244.128.0/20 38943 -149.244.144.0/22 3215 -149.244.148.0/22 38943 -149.244.152.0/21 38943 -149.244.160.0/19 38943 -149.244.192.0/18 38943 -149.247.176.0/22 2830 -149.247.180.0/24 702 -149.247.182.0/24 2830 -149.248.0.0/18 20473 -149.248.64.0/21 394991 -149.248.72.0/21 36445 -149.248.80.0/20 36445 -149.248.96.0/19 36445 -149.248.128.0/19 40028 -149.248.160.0/21 40028 -149.248.168.0/23 40028 -149.248.170.0/23 36445 -149.248.172.0/22 36445 -149.248.176.0/20 395570 -149.248.192.0/18 174 -149.249.0.0/16 15404 -149.250.0.0/16 15854 -149.254.0.0/18 12576 -149.254.64.0/19 12576 -149.254.96.0/20 12576 -149.254.112.0/21 12576 -149.254.120.0/24 51489 -149.254.121.0/24 12576 -149.254.122.0/23 12576 -149.254.124.0/22 12576 -149.254.128.0/18 12576 -149.254.192.0/19 12576 -149.254.224.0/20 12576 -149.254.240.0/24 12576 -149.254.241.0/24 51489 -149.254.242.0/23 12576 -149.254.244.0/22 12576 -149.254.248.0/23 12576 -149.254.250.0/24 12576 -149.254.251.0/24 3356 -149.254.252.0/22 12576 -149.255.0.0/20 50367 -149.255.16.0/22 38917 -149.255.20.0/22 201151 -149.255.24.0/21 48176 -149.255.32.0/22 35017 -149.255.36.0/24 35017 -149.255.37.0/24 29802 -149.255.38.0/23 29802 -149.255.41.0/24 57408 -149.255.48.0/21 25091 -149.255.56.0/21 34931 -149.255.64.0/19 198002 -149.255.96.0/20 20860 -149.255.112.0/21 56689 -149.255.120.0/21 198736 -149.255.128.0/22 9002 -149.255.132.0/22 201144 -149.255.136.0/21 16347 -149.255.144.0/20 57293 -149.255.168.0/21 51782 -149.255.176.0/21 57210 -149.255.184.0/21 15830 -149.255.192.0/18 50710 -150.3.96.0/24 4725 -150.3.112.0/22 4713 -150.5.0.0/16 4713 -150.7.0.0/16 2907 -150.9.0.0/16 17511 -150.11.0.0/16 2514 -150.12.0.0/16 2907 -150.14.52.0/23 4680 -150.15.0.0/16 2907 -150.18.0.0/16 23793 -150.19.0.0/16 2506 -150.22.0.0/22 2907 -150.23.0.0/16 2497 -150.26.0.0/16 18125 -150.27.0.0/16 17511 -150.29.0.0/16 23793 -150.30.0.0/16 7516 -150.31.0.0/16 2497 -150.32.0.0/16 9991 -150.35.0.0/16 4713 -150.37.0.0/16 59104 -150.38.0.0/16 10010 -150.39.0.0/16 38654 -150.41.0.0/16 2522 -150.42.0.0/15 2907 -150.46.0.0/16 2907 -150.47.0.0/16 2516 -150.48.0.0/16 2497 -150.49.0.0/17 2516 -150.49.128.0/18 2516 -150.49.192.0/19 2516 -150.49.224.0/20 2516 -150.49.240.0/21 18126 -150.49.248.0/22 18126 -150.49.252.0/23 18126 -150.52.0.0/16 2500 -150.54.0.0/16 2907 -150.55.0.0/16 18124 -150.57.0.0/16 17511 -150.59.0.0/16 2907 -150.60.0.0/16 9597 -150.61.4.0/24 4713 -150.61.5.0/24 2497 -150.61.8.0/24 4713 -150.61.13.0/24 4713 -150.61.17.0/24 4713 -150.61.24.0/22 4678 -150.61.31.0/24 4713 -150.61.33.0/24 4713 -150.61.35.0/24 4713 -150.61.41.0/24 4713 -150.61.46.0/24 4713 -150.61.49.0/24 4713 -150.61.53.0/24 4713 -150.61.54.0/23 2497 -150.61.57.0/24 2497 -150.61.64.0/18 4713 -150.61.128.0/17 4713 -150.63.0.0/18 4713 -150.63.64.0/18 131938 -150.63.128.0/17 131938 -150.65.0.0/16 17932 -150.66.0.0/16 17511 -150.67.0.0/16 17673 -150.69.0.0/16 2907 -150.70.0.0/20 16880 -150.70.31.0/24 16880 -150.70.48.0/20 36421 -150.70.80.0/20 36421 -150.70.160.0/19 16880 -150.70.192.0/21 16880 -150.70.224.0/20 16880 -150.71.0.0/16 2516 -150.82.0.0/16 23793 -150.83.0.0/16 2907 -150.84.0.0/16 2907 -150.86.0.0/16 2907 -150.87.0.0/16 2497 -150.89.0.0/16 2907 -150.90.0.0/16 2497 -150.91.0.0/16 18126 -150.93.0.0/16 2907 -150.95.8.0/22 58791 -150.95.12.0/23 58791 -150.95.14.0/24 58651 -150.95.15.0/24 58791 -150.95.16.0/22 131392 -150.95.20.0/22 135161 -150.95.24.0/22 135161 -150.95.29.0/24 135161 -150.95.30.0/23 135161 -150.95.32.0/19 7506 -150.95.64.0/19 135161 -150.95.96.0/21 135161 -150.95.104.0/21 131392 -150.95.112.0/20 131392 -150.95.128.0/17 7506 -150.96.0.0/24 2516 -150.97.0.0/16 2907 -150.99.0.0/16 2907 -150.100.0.0/16 2907 -150.101.0.0/22 4739 -150.101.4.0/24 7545 -150.101.5.0/24 4739 -150.101.6.0/23 4739 -150.101.8.0/21 4739 -150.101.16.0/20 4739 -150.101.32.0/20 4739 -150.101.48.0/24 4739 -150.101.49.0/24 7545 -150.101.50.0/23 4739 -150.101.52.0/22 4739 -150.101.56.0/21 4739 -150.101.64.0/18 4739 -150.101.128.0/17 4739 -150.104.0.0/16 53648 -150.105.18.0/23 26704 -150.105.20.0/24 26704 -150.105.30.0/24 26704 -150.105.48.0/20 26704 -150.105.78.0/23 26704 -150.105.80.0/23 26704 -150.105.89.0/24 7018 -150.105.98.0/23 26704 -150.105.100.0/24 26704 -150.105.102.0/24 26704 -150.105.104.0/23 26704 -150.105.110.0/24 26704 -150.105.112.0/21 26704 -150.105.120.0/21 8232 -150.105.132.0/24 26704 -150.105.172.0/24 26704 -150.105.178.0/24 26704 -150.105.184.0/21 26704 -150.105.204.0/24 26704 -150.105.210.0/24 26704 -150.105.216.0/21 26704 -150.106.0.0/16 2119 -150.107.0.0/24 132422 -150.107.1.0/24 64021 -150.107.2.0/23 64021 -150.107.4.0/22 131178 -150.107.8.0/22 17747 -150.107.16.0/24 131442 -150.107.17.0/24 132497 -150.107.18.0/24 131442 -150.107.19.0/24 132497 -150.107.20.0/22 131442 -150.107.24.0/22 17665 -150.107.28.0/22 131447 -150.107.32.0/22 45177 -150.107.36.0/23 59376 -150.107.40.0/23 132497 -150.107.42.0/24 131442 -150.107.43.0/24 132497 -150.107.44.0/23 38478 -150.107.46.0/24 38478 -150.107.48.0/22 133439 -150.107.56.0/22 18049 -150.107.60.0/22 9676 -150.107.68.0/22 9952 -150.107.72.0/22 133159 -150.107.76.0/23 55720 -150.107.78.0/24 55720 -150.107.80.0/22 9976 -150.107.84.0/22 38120 -150.107.88.0/22 55832 -150.107.92.0/22 132768 -150.107.96.0/22 45415 -150.107.100.0/22 45954 -150.107.104.0/23 38505 -150.107.106.0/23 45650 -150.107.108.0/22 18059 -150.107.114.0/24 135257 -150.107.116.0/22 45117 -150.107.120.0/22 55756 -150.107.124.0/24 57731 -150.107.126.0/24 57731 -150.107.127.0/24 52253 -150.107.128.0/22 10091 -150.107.132.0/22 23756 -150.107.136.0/23 23679 -150.107.138.0/23 138841 -150.107.140.0/22 55685 -150.107.144.0/22 55832 -150.107.148.0/22 138841 -150.107.152.0/22 132816 -150.107.156.0/24 23678 -150.107.158.0/24 23678 -150.107.160.0/22 17705 -150.107.164.0/22 55862 -150.107.168.0/24 136733 -150.107.172.0/22 55850 -150.107.176.0/22 23860 -150.107.180.0/24 131442 -150.107.181.0/24 132497 -150.107.182.0/24 132497 -150.107.183.0/24 131442 -150.107.184.0/22 55862 -150.107.188.0/23 45916 -150.107.190.0/24 45916 -150.107.192.0/22 18002 -150.107.196.0/22 55832 -150.107.200.0/22 12506 -150.107.204.0/22 58504 -150.107.209.0/24 18207 -150.107.210.0/24 18207 -150.107.212.0/22 23860 -150.107.216.0/22 55862 -150.107.220.0/22 38794 -150.107.224.0/23 136557 -150.107.226.0/24 136557 -150.107.227.0/24 203098 -150.107.228.0/22 138763 -150.107.232.0/22 45916 -150.107.236.0/22 131215 -150.107.240.0/22 45916 -150.107.244.0/22 55699 -150.107.248.0/22 45706 -150.107.252.0/22 45916 -150.108.0.0/16 32531 -150.109.0.0/16 132203 -150.113.0.0/16 1488 -150.116.16.0/20 18046 -150.116.32.0/20 131627 -150.116.48.0/22 131627 -150.116.54.0/23 7532 -150.116.56.0/22 7532 -150.116.64.0/20 131627 -150.116.80.0/23 134522 -150.116.83.0/24 131627 -150.116.84.0/22 131627 -150.116.88.0/22 17213 -150.116.92.0/22 63199 -150.116.104.0/21 131627 -150.116.112.0/20 38851 -150.116.140.0/22 131627 -150.116.144.0/20 131627 -150.116.160.0/19 131627 -150.116.192.0/18 131627 -150.117.0.0/20 38851 -150.117.16.0/20 18419 -150.117.32.0/20 18419 -150.117.48.0/21 18419 -150.117.56.0/21 131607 -150.117.64.0/19 131607 -150.117.96.0/20 10085 -150.117.112.0/21 10085 -150.117.120.0/21 131600 -150.117.128.0/19 131627 -150.117.160.0/21 131627 -150.117.168.0/21 131607 -150.117.176.0/20 131607 -150.117.192.0/19 131607 -150.117.224.0/21 131607 -150.117.232.0/21 131627 -150.117.240.0/20 131627 -150.118.0.0/15 4152 -150.120.0.0/16 4152 -150.124.0.0/16 3955 -150.125.0.0/16 668 -150.127.225.0/24 32033 -150.127.230.0/24 32033 -150.127.254.0/24 32033 -150.128.0.0/16 766 -150.129.0.0/23 23033 -150.129.2.0/23 133296 -150.129.4.0/22 58895 -150.129.8.0/22 60404 -150.129.16.0/23 58657 -150.129.18.0/24 38320 -150.129.19.0/24 132518 -150.129.20.0/22 45348 -150.129.24.0/24 133295 -150.129.25.0/24 133296 -150.129.26.0/23 133296 -150.129.28.0/22 132497 -150.129.34.0/23 9381 -150.129.36.0/24 24169 -150.129.40.0/23 132422 -150.129.42.0/24 132422 -150.129.43.0/24 64021 -150.129.44.0/22 58762 -150.129.48.0/22 132519 -150.129.52.0/22 45916 -150.129.56.0/22 45287 -150.129.60.0/22 131210 -150.129.64.0/22 23860 -150.129.68.0/22 132197 -150.129.78.0/24 38478 -150.129.80.0/22 55933 -150.129.84.0/22 17766 -150.129.88.0/23 131210 -150.129.90.0/24 131210 -150.129.92.0/22 133542 -150.129.100.0/22 23860 -150.129.104.0/22 45916 -150.129.108.0/22 45804 -150.129.112.0/22 45916 -150.129.116.0/22 46071 -150.129.120.0/22 45184 -150.129.124.0/22 17747 -150.129.128.0/22 132770 -150.129.132.0/22 45804 -150.129.136.0/22 4837 -150.129.140.0/22 17882 -150.129.144.0/22 55353 -150.129.148.0/22 45916 -150.129.152.0/24 134548 -150.129.154.0/23 134548 -150.129.156.0/22 132770 -150.129.160.0/23 7713 -150.129.162.0/24 136221 -150.129.164.0/22 45916 -150.129.170.0/23 45916 -150.129.172.0/23 56209 -150.129.175.0/24 56209 -150.129.176.0/22 17747 -150.129.180.0/22 132453 -150.129.184.0/23 24514 -150.129.188.0/22 38149 -150.129.192.0/22 4812 -150.129.196.0/22 17917 -150.129.200.0/21 45916 -150.129.209.0/24 4637 -150.129.216.0/23 64021 -150.129.218.0/24 64021 -150.129.219.0/24 132422 -150.129.220.0/22 59378 -150.129.232.0/22 33480 -150.129.236.0/22 132453 -150.129.240.0/24 33480 -150.129.241.0/24 133296 -150.129.242.0/23 133296 -150.129.244.0/22 45117 -150.129.248.0/22 132453 -150.129.252.0/22 138950 -150.130.0.0/18 19773 -150.130.64.0/19 19773 -150.130.96.0/20 19773 -150.130.112.0/22 35532 -150.130.116.0/22 19773 -150.130.120.0/21 19773 -150.130.128.0/23 19773 -150.130.136.0/21 19773 -150.130.148.0/22 19773 -150.130.152.0/22 19773 -150.131.0.0/16 3807 -150.132.0.0/16 158 -150.133.0.0/16 1649 -150.134.0.0/16 30499 -150.135.0.0/16 1706 -150.136.0.0/16 31898 -150.137.0.0/16 1600 -150.138.0.0/18 4134 -150.138.64.0/19 137690 -150.138.96.0/23 58541 -150.138.98.0/24 58541 -150.138.99.0/24 136195 -150.138.100.0/22 58541 -150.138.104.0/21 58541 -150.138.112.0/21 58541 -150.138.120.0/22 58541 -150.138.124.0/23 58541 -150.138.126.0/23 136195 -150.138.128.0/22 58541 -150.138.132.0/23 58541 -150.138.134.0/24 58541 -150.138.135.0/24 136195 -150.138.136.0/21 58541 -150.138.144.0/20 58541 -150.138.160.0/19 58541 -150.138.192.0/18 58540 -150.139.0.0/17 4134 -150.139.128.0/19 136195 -150.139.160.0/19 4134 -150.139.192.0/18 4134 -150.140.0.0/17 6744 -150.140.128.0/17 5408 -150.142.0.0/16 14223 -150.143.0.0/16 6871 -150.144.0.0/16 1701 -150.145.0.0/16 137 -150.146.0.0/16 137 -150.147.0.0/16 2527 -150.148.0.0/16 22828 -150.149.0.0/19 1516 -150.149.32.0/21 1503 -150.149.64.0/19 1590 -150.150.0.0/16 4668 -150.151.3.0/24 9555 -150.152.0.0/16 1498 -150.154.0.0/16 11351 -150.155.0.0/18 11351 -150.155.64.0/19 11351 -150.155.96.0/20 11351 -150.155.112.0/21 11351 -150.155.120.0/22 11351 -150.155.124.0/22 14477 -150.155.128.0/17 11351 -150.156.0.0/16 20337 -150.158.0.0/16 45090 -150.160.0.0/16 26438 -150.161.0.0/16 1916 -150.162.0.0/16 263300 -150.163.0.0/16 1916 -150.164.0.0/15 1916 -150.167.0.0/16 2572 -150.169.12.0/24 6461 -150.169.14.0/23 21982 -150.169.32.0/24 21982 -150.170.2.0/24 17231 -150.171.0.0/19 8075 -150.171.32.0/24 8068 -150.171.33.0/24 8075 -150.171.34.0/23 8075 -150.171.36.0/22 8075 -150.171.40.0/23 8068 -150.171.42.0/23 8075 -150.171.44.0/24 8068 -150.171.45.0/24 8075 -150.171.46.0/23 8075 -150.171.48.0/20 8075 -150.171.64.0/18 8075 -150.171.128.0/17 8075 -150.173.0.0/16 9328 -150.174.0.0/16 395527 -150.176.6.0/24 8103 -150.176.8.0/22 8103 -150.176.12.0/23 8103 -150.176.17.0/24 8103 -150.176.37.0/24 8103 -150.176.38.0/24 8103 -150.176.45.0/24 8103 -150.176.47.0/24 8103 -150.176.63.0/24 8103 -150.176.65.0/24 8103 -150.176.68.0/24 8103 -150.176.93.0/24 8103 -150.176.99.0/24 8103 -150.176.101.0/24 8103 -150.176.114.0/24 8103 -150.176.119.0/24 8103 -150.176.120.0/23 8103 -150.176.139.0/24 8103 -150.176.142.0/24 8103 -150.176.145.0/24 8103 -150.176.146.0/24 8103 -150.176.153.0/24 8103 -150.176.163.0/24 8103 -150.176.165.0/24 8103 -150.176.169.0/24 8103 -150.176.171.0/24 8103 -150.176.174.0/23 8103 -150.176.192.0/23 8103 -150.176.201.0/24 8103 -150.176.208.0/24 8103 -150.176.228.0/23 8103 -150.176.248.0/22 8103 -150.177.0.0/17 1480 -150.177.128.0/19 1480 -150.177.160.0/21 1480 -150.177.168.0/24 1480 -150.177.169.0/24 27064 -150.177.170.0/23 1480 -150.177.172.0/22 1480 -150.177.176.0/20 1480 -150.177.192.0/18 1480 -150.178.0.0/16 137 -150.179.0.0/16 3479 -150.181.0.0/24 20115 -150.181.2.0/24 20115 -150.181.4.0/24 20115 -150.181.6.0/24 20115 -150.181.8.0/24 20115 -150.181.10.0/24 20115 -150.181.12.0/24 20115 -150.181.14.0/24 20115 -150.181.16.0/24 20115 -150.181.18.0/24 20115 -150.181.20.0/24 20115 -150.181.22.0/24 20115 -150.181.24.0/23 33588 -150.181.91.0/24 33588 -150.182.0.0/17 7018 -150.182.128.0/17 14209 -150.183.0.0/16 1237 -150.185.0.0/17 20312 -150.185.128.0/18 23007 -150.185.192.0/18 20312 -150.186.0.0/19 20312 -150.186.32.0/19 17287 -150.186.64.0/19 27890 -150.186.96.0/19 27686 -150.186.128.0/17 20312 -150.187.0.0/16 20312 -150.188.0.0/16 20312 -150.189.0.0/16 27807 -150.190.0.0/16 27064 -150.191.0.0/16 132321 -150.192.0.0/15 1479 -150.195.8.0/21 209 -150.195.251.0/24 209 -150.195.253.0/24 209 -150.195.254.0/24 209 -150.196.48.0/20 747 -150.196.64.0/19 747 -150.196.120.0/21 5953 -150.196.176.0/20 1502 -150.196.224.0/22 1541 -150.196.228.0/23 1541 -150.197.0.0/16 9489 -150.198.0.0/16 53352 -150.199.0.0/22 2572 -150.199.4.0/24 46832 -150.199.5.0/24 2572 -150.199.6.0/23 2572 -150.199.8.0/21 2572 -150.199.16.0/20 2572 -150.199.32.0/19 2572 -150.199.64.0/18 2572 -150.199.128.0/17 2572 -150.200.0.0/15 2572 -150.202.0.0/22 46453 -150.202.8.0/23 46453 -150.203.0.0/16 7575 -150.204.0.0/16 786 -150.206.0.0/16 9433 -150.207.0.0/17 38809 -150.207.128.0/19 38809 -150.207.160.0/21 38809 -150.207.168.0/24 38809 -150.207.169.0/24 1221 -150.207.170.0/23 38809 -150.207.172.0/22 38809 -150.207.176.0/20 38809 -150.207.192.0/18 38809 -150.208.0.0/17 21852 -150.208.129.0/24 25605 -150.208.131.0/24 21852 -150.208.165.0/24 21852 -150.208.192.0/18 21852 -150.209.0.0/16 11351 -150.210.0.0/16 31822 -150.212.0.0/16 4130 -150.214.0.0/16 198096 -150.215.0.0/16 3680 -150.216.0.0/16 10952 -150.217.0.0/16 137 -150.223.0.0/16 58519 -150.225.0.0/16 6066 -150.226.0.0/16 1474 -150.227.0.0/16 3246 -150.228.0.0/18 13376 -150.228.64.0/20 13376 -150.228.80.0/21 13376 -150.228.88.0/22 13376 -150.228.92.0/24 17819 -150.228.93.0/24 13376 -150.228.94.0/23 13376 -150.228.96.0/22 13376 -150.228.100.0/23 4755 -150.228.102.0/24 4755 -150.228.103.0/24 13376 -150.228.104.0/21 13376 -150.228.112.0/20 13376 -150.228.128.0/17 13376 -150.229.0.0/17 6262 -150.229.128.0/18 6262 -150.229.192.0/19 6262 -150.229.224.0/20 6262 -150.231.0.0/16 3999 -150.232.0.0/16 122 -150.236.0.0/16 158 -150.237.0.0/16 202575 -150.238.0.0/17 36351 -150.241.0.0/16 766 -150.242.8.0/23 133119 -150.242.12.0/24 133296 -150.242.14.0/23 133296 -150.242.16.0/22 45117 -150.242.20.0/22 132976 -150.242.24.0/22 55862 -150.242.32.0/22 45763 -150.242.36.0/24 134176 -150.242.40.0/22 24226 -150.242.52.0/22 7641 -150.242.56.0/22 58466 -150.242.60.0/22 132453 -150.242.64.0/22 132453 -150.242.72.0/22 132453 -150.242.84.0/22 132453 -150.242.88.0/24 25820 -150.242.90.0/23 25820 -150.242.96.0/22 133774 -150.242.100.0/23 9311 -150.242.104.0/22 58691 -150.242.108.0/22 58731 -150.242.116.0/22 58540 -150.242.128.0/22 45475 -150.242.132.0/22 55614 -150.242.136.0/22 9268 -150.242.140.0/23 133296 -150.242.142.0/23 33480 -150.242.144.0/22 10054 -150.242.148.0/22 23860 -150.242.156.0/22 38345 -150.242.168.0/22 18245 -150.242.172.0/22 132453 -150.242.180.0/22 17564 -150.242.184.0/22 4808 -150.242.196.0/22 132497 -150.242.204.0/22 17665 -150.242.208.0/21 63888 -150.242.216.0/22 133549 -150.242.220.0/23 58944 -150.242.224.0/22 58519 -150.242.228.0/22 38339 -150.242.232.0/22 4837 -150.242.238.0/23 4812 -150.242.248.0/22 23724 -150.242.252.0/23 132518 -150.242.254.0/23 133469 -150.243.0.0/16 393750 -150.244.0.0/16 766 -150.246.0.0/16 2527 -150.249.0.0/16 2527 -150.250.0.0/16 33523 -150.251.0.0/22 48647 -150.251.4.0/23 48647 -150.252.0.0/16 32601 -150.253.0.0/16 11375 -150.254.0.0/16 9112 -150.255.0.0/16 4837 -151.0.0.0/19 45025 -151.0.32.0/20 45025 -151.0.48.0/22 61344 -151.0.52.0/22 45025 -151.0.56.0/21 47526 -151.0.64.0/18 21334 -151.0.128.0/17 12874 -151.1.0.0/16 3242 -151.2.0.0/17 3242 -151.2.128.0/17 31655 -151.3.0.0/16 1267 -151.4.0.0/14 1267 -151.8.0.0/15 1267 -151.10.0.0/16 1267 -151.11.0.0/19 1267 -151.11.32.0/20 1267 -151.11.48.0/22 24994 -151.11.52.0/23 24994 -151.11.54.0/23 1267 -151.11.56.0/21 1267 -151.11.64.0/18 1267 -151.11.128.0/17 1267 -151.12.0.0/14 1267 -151.16.0.0/12 1267 -151.32.0.0/11 1267 -151.64.0.0/12 1267 -151.80.0.0/16 16276 -151.81.0.0/16 1267 -151.82.0.0/15 1267 -151.84.0.0/16 1267 -151.86.0.0/16 8217 -151.88.0.0/16 24771 -151.89.0.0/16 48135 -151.90.0.0/17 12874 -151.90.128.0/17 3269 -151.91.32.0/20 12734 -151.92.0.0/16 24771 -151.93.0.0/16 1267 -151.94.0.0/16 16161 -151.95.0.0/16 1267 -151.96.0.0/16 8217 -151.97.0.0/16 137 -151.99.0.0/16 3269 -151.100.0.0/16 137 -151.101.0.0/16 54113 -151.102.0.0/16 32104 -151.103.0.0/16 62701 -151.104.0.0/22 1218 -151.104.4.0/24 1218 -151.104.5.0/24 31898 -151.104.6.0/23 31898 -151.104.8.0/21 31898 -151.104.16.0/22 1218 -151.104.20.0/22 31898 -151.104.24.0/23 1218 -151.104.26.0/23 31898 -151.104.28.0/22 31898 -151.104.32.0/21 1218 -151.104.40.0/21 31898 -151.104.48.0/21 1218 -151.104.56.0/21 31898 -151.104.64.0/18 31898 -151.104.128.0/17 31898 -151.105.0.0/16 1759 -151.106.0.0/19 29066 -151.106.32.0/20 34088 -151.106.48.0/20 29066 -151.106.64.0/18 61157 -151.106.128.0/19 14340 -151.106.192.0/24 394808 -151.106.193.0/24 21371 -151.106.195.0/24 24246 -151.106.196.0/24 15533 -151.106.197.0/24 7381 -151.106.198.0/24 15533 -151.106.199.0/24 7381 -151.106.201.0/24 21371 -151.106.202.0/23 394808 -151.106.204.0/23 394808 -151.106.207.0/24 394808 -151.106.208.0/23 394808 -151.106.216.0/21 14340 -151.106.224.0/22 35914 -151.110.0.0/16 11719 -151.111.0.0/16 1998 -151.112.0.0/16 32480 -151.113.64.0/23 46528 -151.113.248.0/22 46528 -151.113.255.0/24 46528 -151.115.0.0/18 12876 -151.116.186.0/24 209 -151.116.188.0/24 209 -151.116.193.0/24 209 -151.118.0.0/23 3909 -151.118.17.0/24 3909 -151.118.18.0/24 3909 -151.118.40.0/23 3909 -151.118.56.0/22 3909 -151.118.60.0/24 3909 -151.118.192.0/22 3909 -151.118.254.0/23 3909 -151.121.0.0/16 4152 -151.122.128.0/20 394409 -151.123.64.0/19 19254 -151.124.32.0/21 63222 -151.124.47.0/24 63222 -151.124.48.0/24 63222 -151.124.128.0/18 30598 -151.124.224.0/19 30598 -151.127.0.0/16 35540 -151.130.29.0/24 131462 -151.130.33.0/24 131462 -151.130.35.0/24 131462 -151.130.37.0/24 131462 -151.130.39.0/24 131462 -151.130.40.0/23 131462 -151.130.43.0/24 131462 -151.130.46.0/24 131462 -151.130.49.0/24 131462 -151.130.50.0/24 131462 -151.130.53.0/24 131462 -151.130.54.0/23 131462 -151.130.56.0/23 131462 -151.132.0.0/16 46093 -151.133.0.0/17 42987 -151.133.128.0/18 42987 -151.133.192.0/19 42987 -151.133.224.0/21 42987 -151.133.236.0/22 42987 -151.133.240.0/20 42987 -151.135.0.0/16 20978 -151.136.0.0/16 205881 -151.137.148.0/22 17199 -151.137.248.0/22 17199 -151.138.0.0/18 6482 -151.138.64.0/23 6482 -151.138.66.0/24 26054 -151.138.67.0/24 6482 -151.138.68.0/22 6482 -151.138.72.0/21 6482 -151.138.80.0/20 6482 -151.138.96.0/19 6482 -151.138.128.0/24 6482 -151.138.129.0/24 26054 -151.138.130.0/23 26054 -151.138.132.0/22 26054 -151.138.136.0/22 6482 -151.138.140.0/23 6482 -151.138.142.0/23 26054 -151.138.144.0/22 6482 -151.138.148.0/23 6482 -151.138.150.0/23 26054 -151.138.152.0/23 6482 -151.138.154.0/24 6482 -151.138.155.0/24 26054 -151.138.156.0/22 6482 -151.138.160.0/19 6482 -151.138.192.0/18 6482 -151.139.0.0/23 12989 -151.139.2.0/24 12989 -151.139.3.0/24 33438 -151.139.4.0/22 12989 -151.139.8.0/24 33438 -151.139.9.0/24 12989 -151.139.10.0/23 12989 -151.139.12.0/22 12989 -151.139.16.0/24 12989 -151.139.18.0/23 12989 -151.139.20.0/23 12989 -151.139.23.0/24 12989 -151.139.24.0/24 33438 -151.139.25.0/24 12989 -151.139.26.0/23 33438 -151.139.28.0/22 12989 -151.139.32.0/23 33438 -151.139.34.0/23 12989 -151.139.36.0/23 33438 -151.139.38.0/24 33438 -151.139.39.0/24 12989 -151.139.40.0/21 12989 -151.139.48.0/21 12989 -151.139.56.0/24 33438 -151.139.58.0/23 33438 -151.139.60.0/22 12989 -151.139.64.0/19 12989 -151.139.96.0/22 33438 -151.139.104.0/21 33438 -151.139.112.0/22 33438 -151.139.116.0/23 12989 -151.139.118.0/23 33438 -151.139.120.0/23 12989 -151.139.122.0/23 33438 -151.139.124.0/22 12989 -151.139.128.0/20 20446 -151.139.176.0/23 33438 -151.139.179.0/24 33438 -151.139.180.0/23 33438 -151.139.183.0/24 12989 -151.139.184.0/21 12989 -151.139.222.0/24 12989 -151.139.236.0/22 12989 -151.139.240.0/21 12989 -151.139.254.0/23 20446 -151.140.0.0/16 10967 -151.141.0.0/16 29842 -151.142.128.0/19 11396 -151.142.160.0/20 11396 -151.142.189.0/24 11396 -151.142.219.0/24 11396 -151.142.224.0/19 11396 -151.143.0.0/16 1226 -151.144.0.0/16 6167 -151.145.0.0/16 15117 -151.147.140.0/24 9723 -151.147.141.0/24 7545 -151.147.155.0/24 46342 -151.147.160.0/22 46342 -151.147.184.0/22 13009 -151.147.188.0/22 46342 -151.147.192.0/22 46342 -151.147.196.0/24 46342 -151.147.235.0/24 46342 -151.147.236.0/24 46342 -151.147.240.0/22 46342 -151.147.252.0/24 46342 -151.148.0.0/16 54786 -151.151.0.0/17 10837 -151.152.91.0/24 11687 -151.152.92.0/24 11687 -151.152.96.0/19 11687 -151.152.128.0/19 11687 -151.154.0.0/16 26551 -151.155.0.0/16 3680 -151.156.0.0/16 205664 -151.157.0.0/16 224 -151.159.0.0/17 11602 -151.159.128.0/18 11602 -151.159.192.0/20 11602 -151.159.208.0/21 11602 -151.159.216.0/22 11602 -151.159.220.0/22 33189 -151.159.224.0/20 26498 -151.159.240.0/20 11602 -151.160.0.0/16 10753 -151.161.0.0/16 22192 -151.163.2.0/23 18930 -151.163.6.0/24 18930 -151.163.8.0/24 18930 -151.163.11.0/24 18930 -151.163.19.0/24 18930 -151.163.21.0/24 18930 -151.163.52.0/22 18930 -151.163.56.0/23 18930 -151.163.93.0/24 18930 -151.163.94.0/24 18930 -151.163.96.0/23 18930 -151.163.200.0/23 18930 -151.164.0.0/17 7132 -151.164.128.0/18 7132 -151.164.192.0/19 7132 -151.164.224.0/20 7132 -151.164.240.0/22 7132 -151.164.244.0/23 7132 -151.164.246.0/24 4466 -151.164.247.0/24 7132 -151.164.248.0/21 7132 -151.165.208.0/20 1828 -151.166.0.0/16 385 -151.169.16.0/20 18443 -151.169.97.0/24 18443 -151.169.112.0/24 18443 -151.170.0.0/16 3257 -151.173.0.0/17 25019 -151.175.104.0/24 6900 -151.177.0.0/20 39651 -151.177.16.0/22 39651 -151.177.20.0/24 2119 -151.177.21.0/24 39651 -151.177.22.0/23 39651 -151.177.24.0/21 39651 -151.177.32.0/20 39651 -151.177.48.0/20 2119 -151.177.64.0/22 2119 -151.177.68.0/23 2119 -151.177.70.0/23 39651 -151.177.72.0/21 39651 -151.177.80.0/21 2119 -151.177.88.0/21 39651 -151.177.96.0/19 39651 -151.177.128.0/19 39651 -151.177.160.0/21 39651 -151.177.168.0/22 39651 -151.177.172.0/23 39651 -151.177.174.0/23 2119 -151.177.176.0/23 39651 -151.177.178.0/24 39651 -151.177.179.0/24 3301 -151.177.180.0/22 39651 -151.177.184.0/21 39651 -151.177.192.0/18 39651 -151.181.0.0/24 3576 -151.181.4.0/22 3576 -151.181.32.0/22 46887 -151.181.36.0/24 16657 -151.181.37.0/24 46887 -151.181.38.0/24 46887 -151.181.39.0/24 16657 -151.181.40.0/21 46887 -151.181.48.0/20 46887 -151.181.64.0/22 46887 -151.181.68.0/23 46887 -151.181.70.0/24 16657 -151.181.71.0/24 46887 -151.181.72.0/21 46887 -151.181.80.0/22 46887 -151.181.84.0/23 46887 -151.181.86.0/24 46887 -151.181.87.0/24 16657 -151.181.88.0/23 16657 -151.181.90.0/23 46887 -151.181.92.0/22 46887 -151.181.112.0/24 3576 -151.181.160.0/20 46887 -151.181.192.0/19 46887 -151.181.224.0/22 46887 -151.181.228.0/24 46887 -151.181.229.0/24 11574 -151.181.230.0/23 46887 -151.181.232.0/24 394985 -151.181.233.0/24 46887 -151.181.234.0/23 46887 -151.181.236.0/24 26905 -151.181.237.0/24 12220 -151.181.238.0/23 46887 -151.181.254.0/23 3576 -151.182.0.0/16 12430 -151.183.0.0/19 16037 -151.183.32.0/20 16037 -151.185.0.0/17 13515 -151.185.192.0/19 13515 -151.187.0.0/16 2116 -151.188.0.0/16 21984 -151.189.0.0/16 3209 -151.190.20.0/23 243 -151.190.39.0/24 243 -151.190.40.0/21 243 -151.190.48.0/23 243 -151.190.221.0/24 8103 -151.190.222.0/23 8103 -151.190.224.0/23 8103 -151.190.226.0/24 8103 -151.190.228.0/23 8103 -151.190.230.0/24 243 -151.190.231.0/24 8103 -151.190.232.0/24 8103 -151.190.236.0/22 8103 -151.190.248.0/21 243 -151.191.66.0/23 10615 -151.191.170.0/23 10615 -151.191.174.0/23 10615 -151.191.176.0/23 10615 -151.191.184.0/23 10615 -151.192.0.0/20 9255 -151.192.16.0/20 3758 -151.192.32.0/19 3758 -151.192.64.0/18 9506 -151.192.128.0/17 9506 -151.193.0.0/20 6334 -151.193.16.0/22 62 -151.193.20.0/23 62 -151.193.46.0/23 40708 -151.193.48.0/20 6334 -151.193.64.0/22 6334 -151.193.68.0/24 62 -151.193.69.0/24 6334 -151.193.70.0/23 6334 -151.193.72.0/21 6334 -151.193.100.0/23 13945 -151.193.103.0/24 13945 -151.193.104.0/21 6334 -151.193.112.0/22 6334 -151.193.116.0/23 6334 -151.193.118.0/24 62 -151.193.119.0/24 6334 -151.193.122.0/23 13945 -151.193.124.0/22 6334 -151.193.128.0/20 6334 -151.193.144.0/21 6334 -151.193.152.0/22 6334 -151.193.156.0/24 6334 -151.193.157.0/24 12179 -151.193.158.0/23 6334 -151.193.160.0/19 6334 -151.193.192.0/18 6334 -151.194.16.0/22 25997 -151.194.24.0/23 25997 -151.194.32.0/22 25997 -151.194.64.0/21 25997 -151.194.72.0/22 25997 -151.194.80.0/21 25997 -151.194.88.0/22 25997 -151.195.0.0/16 122 -151.196.0.0/14 701 -151.200.0.0/17 701 -151.200.128.0/18 701 -151.200.192.0/19 701 -151.200.224.0/23 701 -151.200.226.0/24 701 -151.200.227.0/24 8114 -151.200.228.0/22 701 -151.200.232.0/21 701 -151.200.240.0/20 701 -151.201.0.0/16 701 -151.202.0.0/15 701 -151.204.0.0/17 701 -151.204.128.0/19 701 -151.204.160.0/20 701 -151.204.176.0/22 701 -151.204.180.0/24 701 -151.204.181.0/24 32485 -151.204.182.0/23 701 -151.204.184.0/21 701 -151.204.192.0/18 701 -151.205.0.0/16 701 -151.207.0.0/18 5744 -151.207.64.0/19 5744 -151.207.96.0/20 5744 -151.207.112.0/21 5744 -151.207.120.0/22 5744 -151.207.124.0/23 5744 -151.207.126.0/23 3423 -151.207.128.0/20 3423 -151.207.144.0/20 5744 -151.207.160.0/19 5744 -151.207.192.0/18 5744 -151.208.0.0/16 11003 -151.209.0.0/16 11552 -151.210.16.0/24 394546 -151.210.17.0/24 397722 -151.210.96.0/19 25853 -151.210.128.0/17 23655 -151.213.0.0/18 7029 -151.213.64.0/19 7029 -151.213.96.0/20 7029 -151.213.112.0/21 7029 -151.213.120.0/22 7029 -151.213.124.0/23 7029 -151.213.126.0/23 22773 -151.213.128.0/17 7029 -151.214.20.0/23 6998 -151.214.112.0/20 6998 -151.214.240.0/20 6998 -151.216.28.0/22 207561 -151.224.0.0/13 5607 -151.232.0.0/18 58224 -151.232.64.0/19 58224 -151.232.96.0/20 58224 -151.232.112.0/20 59962 -151.232.128.0/17 58224 -151.233.0.0/16 58224 -151.234.0.0/18 58224 -151.234.64.0/20 58224 -151.234.80.0/21 58224 -151.234.88.0/23 58224 -151.234.92.0/22 58224 -151.234.96.0/19 58224 -151.234.128.0/17 58224 -151.235.0.0/16 58224 -151.236.0.0/21 57169 -151.236.8.0/22 57169 -151.236.12.0/23 57169 -151.236.14.0/24 43350 -151.236.15.0/24 47447 -151.236.16.0/24 35017 -151.236.17.0/24 47447 -151.236.18.0/24 20836 -151.236.19.0/24 39326 -151.236.20.0/24 57169 -151.236.21.0/24 39326 -151.236.22.0/24 35017 -151.236.23.0/24 39020 -151.236.24.0/24 50613 -151.236.25.0/24 51290 -151.236.26.0/23 57169 -151.236.28.0/23 43350 -151.236.30.0/24 57169 -151.236.31.0/24 47692 -151.236.32.0/19 29550 -151.236.64.0/20 57363 -151.236.80.0/21 57363 -151.236.88.0/24 50952 -151.236.89.0/24 57363 -151.236.90.0/23 57363 -151.236.93.0/24 204720 -151.236.95.0/24 57363 -151.236.96.0/22 57363 -151.236.100.0/24 57363 -151.236.101.0/24 204720 -151.236.102.0/24 57363 -151.236.103.0/24 204720 -151.236.104.0/24 28840 -151.236.105.0/24 49063 -151.236.106.0/23 57363 -151.236.108.0/24 204720 -151.236.109.0/24 57363 -151.236.110.0/23 57363 -151.236.112.0/24 204720 -151.236.113.0/24 57363 -151.236.114.0/24 57363 -151.236.115.0/24 204720 -151.236.116.0/23 204720 -151.236.118.0/23 57363 -151.236.120.0/24 57363 -151.236.121.0/24 204720 -151.236.122.0/23 57363 -151.236.125.0/24 57363 -151.236.127.0/24 57363 -151.236.128.0/19 59599 -151.236.160.0/20 59588 -151.236.176.0/22 59588 -151.236.180.0/24 59588 -151.236.181.0/24 203217 -151.236.182.0/24 59588 -151.236.188.0/23 59588 -151.236.190.0/24 59588 -151.236.192.0/22 43994 -151.236.197.0/24 43994 -151.236.199.0/24 43994 -151.236.200.0/21 42303 -151.236.208.0/23 8468 -151.236.215.0/24 203425 -151.236.216.0/21 63949 -151.236.224.0/20 5610 -151.236.240.0/20 199128 -151.237.0.0/20 35621 -151.237.16.0/20 41782 -151.237.32.0/24 41782 -151.237.33.0/24 49773 -151.237.34.0/23 49773 -151.237.36.0/22 31287 -151.237.40.0/21 39024 -151.237.48.0/21 48181 -151.237.56.0/22 60397 -151.237.60.0/23 31287 -151.237.63.0/24 31287 -151.237.64.0/23 60397 -151.237.66.0/24 31287 -151.237.67.0/24 205331 -151.237.68.0/22 60182 -151.237.72.0/22 20750 -151.237.76.0/23 20750 -151.237.78.0/23 62110 -151.237.80.0/21 31287 -151.237.88.0/22 31287 -151.237.92.0/23 31287 -151.237.94.0/23 35621 -151.237.96.0/20 50186 -151.237.112.0/21 50186 -151.237.120.0/24 50186 -151.237.122.0/23 50186 -151.237.124.0/22 50186 -151.237.128.0/24 31287 -151.237.129.0/24 199230 -151.237.130.0/23 60397 -151.237.132.0/22 60397 -151.237.136.0/23 60168 -151.237.138.0/23 202439 -151.237.140.0/23 8866 -151.237.142.0/24 49773 -151.237.143.0/24 34314 -151.237.144.0/20 29355 -151.237.160.0/21 47179 -151.237.168.0/21 29072 -151.237.176.0/21 57858 -151.237.184.0/23 57858 -151.237.186.0/24 41204 -151.237.187.0/24 57858 -151.237.188.0/24 47536 -151.237.189.0/24 57858 -151.237.190.0/23 57858 -151.237.192.0/22 29119 -151.237.196.0/23 29119 -151.237.198.0/24 203499 -151.237.199.0/24 29119 -151.237.200.0/22 29119 -151.237.204.0/23 44717 -151.237.206.0/23 29119 -151.237.208.0/20 29119 -151.237.224.0/21 34315 -151.237.232.0/21 48273 -151.237.240.0/21 20485 -151.238.0.0/15 31549 -151.240.0.0/13 31549 -151.248.0.0/21 51747 -151.248.8.0/22 199606 -151.248.12.0/24 200497 -151.248.15.0/24 200497 -151.248.16.0/22 209288 -151.248.20.0/22 202829 -151.248.24.0/21 197711 -151.248.32.0/20 15855 -151.248.48.0/21 59547 -151.248.56.0/21 197064 -151.248.64.0/22 49074 -151.248.68.0/22 60614 -151.248.72.0/22 60614 -151.248.76.0/23 60614 -151.248.78.0/24 50200 -151.248.79.0/24 60614 -151.248.84.0/22 50200 -151.248.88.0/22 50200 -151.248.92.0/23 50200 -151.248.94.0/24 50200 -151.248.95.0/24 49074 -151.248.96.0/20 59605 -151.248.112.0/20 197695 -151.248.128.0/17 8821 -151.249.0.0/18 44574 -151.249.64.0/20 43207 -151.249.80.0/21 13110 -151.249.96.0/21 50204 -151.249.104.0/21 44712 -151.249.112.0/21 16186 -151.249.120.0/21 12996 -151.249.128.0/17 42036 -151.250.0.0/16 34984 -151.251.0.0/17 13124 -151.251.128.0/18 13124 -151.251.192.0/19 13124 -151.251.224.0/20 13124 -151.251.240.0/20 8717 -151.252.0.0/23 39451 -151.252.2.0/23 20860 -151.252.4.0/22 20860 -151.252.8.0/21 49788 -151.252.24.0/21 51747 -151.252.32.0/21 59622 -151.252.40.0/21 25291 -151.252.48.0/20 25504 -151.252.64.0/19 30855 -151.252.96.0/21 196725 -151.252.104.0/21 48479 -151.252.112.0/21 29680 -151.252.120.0/21 61215 -151.252.128.0/18 35706 -151.252.192.0/22 197897 -151.252.196.0/23 197897 -151.252.198.0/24 59709 -151.252.199.0/24 199871 -151.252.200.0/21 197897 -151.252.208.0/21 34594 -151.252.224.0/19 34594 -151.253.0.0/16 5384 -151.254.0.0/15 39891 -152.0.0.0/16 6400 -152.1.0.0/16 11442 -152.2.0.0/16 36850 -152.3.0.0/16 13371 -152.4.0.0/16 81 -152.5.0.0/16 11540 -152.6.0.0/16 81 -152.7.0.0/16 11442 -152.8.0.0/14 81 -152.12.0.0/16 81 -152.13.0.0/16 53785 -152.14.0.0/16 11442 -152.15.0.0/16 53384 -152.16.0.0/16 13371 -152.17.0.0/16 40245 -152.18.0.0/16 81 -152.19.0.0/16 36850 -152.20.0.0/15 81 -152.22.0.0/23 17031 -152.22.2.0/23 81 -152.22.4.0/22 81 -152.22.8.0/21 81 -152.22.16.0/20 81 -152.22.32.0/19 81 -152.22.64.0/18 81 -152.22.128.0/17 81 -152.23.0.0/16 36850 -152.24.0.0/16 81 -152.26.0.0/19 81 -152.26.32.0/23 81 -152.26.34.0/24 19718 -152.26.35.0/24 81 -152.26.36.0/22 81 -152.26.40.0/21 81 -152.26.48.0/22 81 -152.26.52.0/23 81 -152.26.54.0/24 81 -152.26.55.0/24 19718 -152.26.56.0/24 19718 -152.26.57.0/24 81 -152.26.58.0/23 81 -152.26.60.0/22 81 -152.26.64.0/22 81 -152.26.68.0/24 19718 -152.26.69.0/24 81 -152.26.70.0/23 81 -152.26.72.0/22 81 -152.26.76.0/24 81 -152.26.77.0/24 19718 -152.26.78.0/23 81 -152.26.80.0/21 81 -152.26.88.0/22 18538 -152.26.92.0/22 81 -152.26.96.0/19 81 -152.26.128.0/17 81 -152.27.0.0/16 81 -152.28.0.0/15 81 -152.30.0.0/16 81 -152.31.0.0/16 6559 -152.32.0.0/18 81 -152.32.64.0/18 17639 -152.32.128.0/21 135377 -152.32.136.0/24 135378 -152.32.137.0/24 135377 -152.32.138.0/23 135377 -152.32.140.0/22 135377 -152.32.144.0/20 135377 -152.32.160.0/20 135377 -152.32.176.0/23 135377 -152.32.180.0/22 135377 -152.32.185.0/24 135377 -152.32.186.0/23 135377 -152.32.188.0/22 135377 -152.32.192.0/19 135377 -152.32.225.0/24 135377 -152.32.226.0/23 135377 -152.32.228.0/22 135377 -152.32.232.0/21 135377 -152.32.240.0/20 135377 -152.33.0.0/16 32417 -152.34.0.0/16 6559 -152.35.0.0/16 81 -152.36.0.0/16 81 -152.37.0.0/17 393875 -152.38.0.0/15 81 -152.40.0.0/18 53785 -152.41.0.0/16 22854 -152.42.0.0/16 81 -152.43.0.0/16 33401 -152.44.0.0/20 10279 -152.44.31.0/24 10279 -152.44.32.0/20 25697 -152.44.48.0/22 12208 -152.44.52.0/24 12208 -152.44.72.0/21 393442 -152.44.88.0/21 26087 -152.44.96.0/20 64267 -152.44.112.0/20 21565 -152.44.128.0/22 11404 -152.44.132.0/24 54858 -152.44.133.0/24 11404 -152.44.134.0/23 11404 -152.44.136.0/22 54858 -152.44.140.0/22 11404 -152.44.144.0/22 11404 -152.44.148.0/23 11404 -152.44.150.0/23 54858 -152.44.152.0/22 11404 -152.44.156.0/22 54858 -152.44.160.0/19 11404 -152.44.192.0/18 11404 -152.45.0.0/16 81 -152.46.0.0/21 81 -152.46.8.0/23 81 -152.46.10.0/24 395312 -152.46.11.0/24 81 -152.46.12.0/22 81 -152.46.16.0/20 81 -152.46.32.0/19 81 -152.46.64.0/18 81 -152.46.128.0/17 81 -152.47.0.0/16 81 -152.48.0.0/15 81 -152.50.64.0/24 12031 -152.50.128.0/17 3356 -152.51.5.0/24 14306 -152.51.24.0/24 14306 -152.51.27.0/24 14306 -152.51.48.0/24 14306 -152.51.56.0/24 2539 -152.51.66.0/24 14306 -152.51.148.0/24 14306 -152.54.0.0/20 81 -152.56.0.0/14 55836 -152.60.4.0/24 81 -152.61.0.0/17 5663 -152.61.128.0/22 5663 -152.61.132.0/24 1842 -152.61.133.0/24 5663 -152.61.134.0/23 5663 -152.61.136.0/21 5663 -152.61.144.0/20 5663 -152.61.160.0/19 5663 -152.61.192.0/19 5663 -152.61.224.0/19 1842 -152.62.44.0/22 12257 -152.62.60.0/24 12257 -152.62.62.0/23 12257 -152.62.97.0/24 12257 -152.62.108.0/23 12257 -152.62.110.0/24 12257 -152.62.112.0/23 12257 -152.62.115.0/24 12257 -152.62.118.0/24 12257 -152.62.154.0/23 12257 -152.62.163.0/24 12257 -152.62.164.0/23 12257 -152.62.166.0/24 12257 -152.62.168.0/24 12257 -152.62.176.0/23 12257 -152.62.184.0/22 12257 -152.62.204.0/24 12257 -152.63.0.0/16 701 -152.65.0.0/17 34087 -152.65.128.0/17 46780 -152.66.0.0/16 2547 -152.67.0.0/17 31898 -152.67.128.0/19 31898 -152.70.0.0/18 393676 -152.71.0.0/16 786 -152.72.0.0/16 21558 -152.73.0.0/16 15687 -152.74.0.0/16 11340 -152.75.0.0/17 4185 -152.75.128.0/24 20137 -152.75.129.0/24 4185 -152.75.130.0/23 4185 -152.75.132.0/22 4185 -152.75.136.0/21 4185 -152.75.144.0/20 4185 -152.75.160.0/19 4185 -152.75.192.0/18 4185 -152.76.0.0/23 134096 -152.76.2.0/24 134096 -152.77.0.0/16 1942 -152.78.0.0/16 786 -152.79.0.0/16 6192 -152.80.0.0/16 5264 -152.81.0.0/16 782 -152.83.0.0/16 6262 -152.84.1.0/24 2715 -152.84.2.0/24 2715 -152.84.21.0/24 2715 -152.84.36.0/24 2715 -152.84.49.0/24 2715 -152.84.50.0/23 2715 -152.84.52.0/24 2715 -152.84.60.0/23 2715 -152.84.65.0/24 2715 -152.84.66.0/24 2715 -152.84.70.0/23 2715 -152.84.72.0/24 2715 -152.84.80.0/23 2715 -152.84.90.0/24 2715 -152.84.98.0/23 2715 -152.84.100.0/23 2715 -152.84.102.0/24 2715 -152.84.120.0/21 2715 -152.84.130.0/24 2715 -152.84.144.0/21 2715 -152.84.159.0/24 2715 -152.84.160.0/19 2715 -152.84.199.0/24 2715 -152.84.200.0/23 2715 -152.84.202.0/24 2715 -152.84.247.0/24 2715 -152.84.248.0/22 2715 -152.84.252.0/23 2715 -152.85.0.0/16 10384 -152.86.16.0/20 174 -152.86.32.0/20 53435 -152.86.48.0/20 396956 -152.86.64.0/19 22987 -152.86.112.0/20 397057 -152.86.128.0/18 30257 -152.86.192.0/19 53435 -152.86.224.0/20 53435 -152.86.240.0/20 17212 -152.87.0.0/16 10384 -152.88.0.0/16 559 -152.89.0.0/22 35415 -152.89.4.0/22 209377 -152.89.8.0/22 48095 -152.89.12.0/22 12660 -152.89.16.0/22 209998 -152.89.20.0/22 25133 -152.89.24.0/22 48825 -152.89.28.0/22 208485 -152.89.32.0/22 202724 -152.89.36.0/22 42807 -152.89.40.0/22 57704 -152.89.44.0/22 44400 -152.89.48.0/22 5413 -152.89.52.0/22 209522 -152.89.60.0/22 30860 -152.89.68.0/22 209358 -152.89.72.0/22 208355 -152.89.76.0/22 30823 -152.89.84.0/22 34968 -152.89.100.0/22 199952 -152.89.104.0/22 197540 -152.89.108.0/22 209473 -152.89.116.0/22 208785 -152.89.120.0/22 204287 -152.89.124.0/22 11404 -152.89.128.0/22 48095 -152.89.132.0/24 204489 -152.89.134.0/23 44843 -152.89.140.0/22 209513 -152.89.144.0/22 47806 -152.89.152.0/22 64413 -152.89.156.0/22 42506 -152.89.160.0/22 9009 -152.89.164.0/22 29119 -152.89.172.0/24 209510 -152.89.176.0/22 209509 -152.89.180.0/22 50563 -152.89.184.0/22 210150 -152.89.188.0/22 47648 -152.89.196.0/22 209003 -152.89.200.0/22 64266 -152.89.204.0/22 62240 -152.89.208.0/22 9009 -152.89.212.0/22 60233 -152.89.216.0/22 56694 -152.89.220.0/22 25447 -152.89.225.0/24 60951 -152.89.228.0/22 210015 -152.89.232.0/23 48894 -152.89.234.0/24 48894 -152.89.235.0/24 51790 -152.89.236.0/22 31400 -152.89.240.0/24 203641 -152.89.244.0/22 30823 -152.89.248.0/22 12679 -152.89.254.0/24 202322 -152.89.255.0/24 398127 -152.90.0.0/16 21171 -152.91.0.0/16 9555 -152.92.0.0/16 2715 -152.93.0.0/16 3292 -152.94.0.0/16 224 -152.96.0.0/16 559 -152.97.0.0/17 31975 -152.98.0.0/17 7575 -152.98.128.0/18 7575 -152.98.192.0/18 24436 -152.99.0.0/16 17841 -152.101.0.0/22 4058 -152.101.4.0/24 4058 -152.101.5.0/24 5018 -152.101.6.0/23 4058 -152.101.8.0/21 4058 -152.101.16.0/21 4058 -152.101.24.0/24 4058 -152.101.25.0/24 5018 -152.101.26.0/23 5018 -152.101.28.0/22 4058 -152.101.32.0/24 5018 -152.101.33.0/24 4058 -152.101.34.0/23 4058 -152.101.36.0/22 4058 -152.101.40.0/21 4058 -152.101.48.0/23 4058 -152.101.50.0/24 5018 -152.101.51.0/24 4058 -152.101.52.0/22 4058 -152.101.56.0/21 4058 -152.101.64.0/18 4058 -152.101.128.0/19 4058 -152.101.160.0/21 4058 -152.101.168.0/22 4058 -152.101.172.0/23 4058 -152.101.174.0/24 5018 -152.101.175.0/24 4058 -152.101.176.0/21 4058 -152.101.184.0/23 4058 -152.101.186.0/24 5018 -152.101.187.0/24 4058 -152.101.188.0/22 4058 -152.101.192.0/18 4058 -152.102.105.0/24 46078 -152.102.109.0/24 46078 -152.102.113.0/24 46078 -152.102.122.0/23 46078 -152.102.124.0/24 46078 -152.102.144.0/23 46078 -152.102.150.0/23 46078 -152.102.156.0/24 46078 -152.103.0.0/16 4515 -152.104.0.0/18 9584 -152.104.64.0/19 9584 -152.104.96.0/19 9244 -152.104.128.0/17 9939 -152.105.0.0/16 786 -152.106.0.0/16 2018 -152.107.0.0/16 36994 -152.108.0.0/17 30844 -152.108.128.0/18 30844 -152.108.192.0/20 30844 -152.108.208.0/22 30844 -152.108.212.0/24 2905 -152.108.213.0/24 30844 -152.108.214.0/23 30844 -152.108.216.0/21 30844 -152.108.224.0/19 30844 -152.110.0.0/16 3741 -152.111.0.0/18 10474 -152.111.64.0/19 10474 -152.111.96.0/21 10474 -152.111.104.0/22 10474 -152.111.108.0/23 10474 -152.111.110.0/23 10393 -152.111.112.0/21 10393 -152.111.120.0/22 10393 -152.111.124.0/23 10393 -152.111.126.0/24 10393 -152.111.127.0/24 10474 -152.111.128.0/17 10474 -152.112.0.0/16 2018 -152.113.0.0/16 4193 -152.114.0.0/17 29295 -152.114.128.0/18 29295 -152.114.192.0/20 29295 -152.114.208.0/21 29295 -152.114.216.0/22 29295 -152.114.220.0/22 2830 -152.114.224.0/19 29295 -152.115.0.0/16 31027 -152.117.0.0/16 11863 -152.118.0.0/16 3382 -152.119.0.0/16 2576 -152.120.0.0/16 2576 -152.121.0.0/17 27030 -152.121.128.0/18 27030 -152.121.192.0/19 27030 -152.121.224.0/20 27030 -152.121.240.0/21 27030 -152.121.248.0/22 367 -152.121.252.0/22 27030 -152.122.0.0/16 2576 -152.123.2.0/24 4046 -152.123.4.0/24 4046 -152.123.7.0/24 4046 -152.123.8.0/21 3923 -152.124.0.0/16 29992 -152.130.0.0/15 29992 -152.132.0.0/15 29992 -152.135.0.0/18 16669 -152.135.64.0/19 16669 -152.135.96.0/20 16669 -152.135.112.0/21 16669 -152.135.120.0/24 16669 -152.135.121.0/24 16999 -152.135.122.0/23 16669 -152.135.124.0/22 16669 -152.135.128.0/17 16669 -152.136.0.0/16 45090 -152.138.3.0/24 30597 -152.138.7.0/24 30597 -152.138.8.0/23 30597 -152.138.192.0/18 30597 -152.143.0.0/16 50629 -152.145.223.0/24 18862 -152.145.224.0/24 18862 -152.148.0.0/16 10455 -152.149.0.0/19 55606 -152.149.32.0/21 55606 -152.149.40.0/21 4961 -152.149.48.0/24 9318 -152.149.49.0/24 4961 -152.149.50.0/23 4961 -152.149.52.0/22 4961 -152.149.56.0/21 4961 -152.149.64.0/18 4961 -152.149.128.0/17 4961 -152.152.15.0/24 198946 -152.152.17.0/24 198946 -152.152.31.0/24 198946 -152.156.0.0/16 19422 -152.157.0.0/18 10430 -152.157.64.0/20 27183 -152.157.80.0/20 10430 -152.157.96.0/19 10430 -152.157.128.0/17 10430 -152.158.0.0/17 2686 -152.158.128.0/19 2686 -152.158.160.0/19 2688 -152.158.192.0/18 2687 -152.160.0.0/18 12129 -152.160.64.0/19 12129 -152.160.96.0/20 12129 -152.160.112.0/21 12129 -152.160.120.0/22 12129 -152.160.124.0/23 12129 -152.160.126.0/24 12129 -152.160.127.0/24 46683 -152.160.128.0/23 12129 -152.160.130.0/24 12129 -152.160.131.0/24 22768 -152.160.132.0/22 12129 -152.160.136.0/21 12129 -152.160.144.0/24 12129 -152.160.145.0/24 397678 -152.160.146.0/23 12129 -152.160.148.0/22 12129 -152.160.152.0/21 12129 -152.160.160.0/20 12129 -152.160.176.0/21 12129 -152.160.184.0/22 12129 -152.160.188.0/24 22379 -152.160.189.0/24 12129 -152.160.190.0/23 12129 -152.160.192.0/18 54163 -152.164.0.0/16 701 -152.165.0.0/16 2527 -152.166.0.0/15 28118 -152.168.0.0/14 10481 -152.172.0.0/14 7418 -152.176.0.0/15 701 -152.178.0.0/23 11486 -152.178.2.0/24 7046 -152.178.3.0/24 11486 -152.178.4.0/22 11486 -152.178.8.0/21 11486 -152.178.16.0/21 701 -152.178.24.0/21 1699 -152.178.32.0/20 1699 -152.178.48.0/21 1699 -152.178.56.0/21 701 -152.178.64.0/24 1689 -152.178.65.0/24 701 -152.178.66.0/23 701 -152.178.68.0/24 1689 -152.178.69.0/24 701 -152.178.70.0/23 701 -152.178.72.0/24 1689 -152.178.73.0/24 701 -152.178.74.0/23 701 -152.178.76.0/22 701 -152.178.80.0/20 701 -152.178.96.0/19 701 -152.178.128.0/23 701 -152.178.130.0/23 1699 -152.178.132.0/24 1699 -152.178.133.0/24 701 -152.178.134.0/23 701 -152.178.136.0/21 701 -152.178.144.0/20 701 -152.178.160.0/20 701 -152.178.176.0/22 701 -152.178.180.0/22 1395 -152.178.184.0/23 701 -152.178.186.0/24 701 -152.178.187.0/24 1395 -152.178.188.0/23 701 -152.178.190.0/23 1395 -152.178.192.0/19 701 -152.178.224.0/23 14551 -152.178.226.0/23 701 -152.178.228.0/22 701 -152.178.232.0/21 701 -152.178.240.0/20 701 -152.179.0.0/16 701 -152.180.0.0/20 701 -152.180.16.0/21 701 -152.180.24.0/22 701 -152.180.28.0/24 15572 -152.180.29.0/24 701 -152.180.30.0/23 701 -152.180.32.0/19 701 -152.180.64.0/18 701 -152.180.128.0/17 701 -152.181.0.0/16 701 -152.182.0.0/20 701 -152.182.16.0/24 701 -152.182.17.0/24 8114 -152.182.18.0/23 701 -152.182.20.0/22 701 -152.182.24.0/21 701 -152.182.32.0/19 701 -152.182.64.0/22 701 -152.182.68.0/24 701 -152.182.69.0/24 6256 -152.182.70.0/24 701 -152.182.71.0/24 6256 -152.182.72.0/21 701 -152.182.80.0/23 701 -152.182.82.0/23 7046 -152.182.84.0/24 7046 -152.182.85.0/24 701 -152.182.86.0/23 701 -152.182.88.0/21 701 -152.182.96.0/19 701 -152.182.128.0/17 701 -152.183.0.0/16 701 -152.184.0.0/15 701 -152.186.0.0/19 701 -152.186.32.0/23 23148 -152.186.34.0/24 23148 -152.186.35.0/24 11303 -152.186.36.0/22 23148 -152.186.40.0/24 11303 -152.186.41.0/24 23148 -152.186.42.0/23 701 -152.186.44.0/23 701 -152.186.46.0/23 23148 -152.186.48.0/24 701 -152.186.49.0/24 1331 -152.186.50.0/23 701 -152.186.52.0/22 701 -152.186.56.0/23 1331 -152.186.58.0/24 701 -152.186.59.0/24 1331 -152.186.60.0/22 701 -152.186.64.0/24 1331 -152.186.65.0/24 701 -152.186.66.0/23 701 -152.186.68.0/22 701 -152.186.72.0/21 701 -152.186.80.0/24 1689 -152.186.81.0/24 701 -152.186.82.0/23 701 -152.186.84.0/24 1689 -152.186.85.0/24 701 -152.186.86.0/23 701 -152.186.88.0/24 1689 -152.186.89.0/24 701 -152.186.90.0/24 702 -152.186.91.0/24 701 -152.186.92.0/24 1689 -152.186.93.0/24 701 -152.186.94.0/23 701 -152.186.96.0/24 1689 -152.186.97.0/24 701 -152.186.98.0/24 702 -152.186.99.0/24 701 -152.186.100.0/22 701 -152.186.104.0/21 701 -152.186.112.0/20 701 -152.186.128.0/17 701 -152.187.0.0/16 701 -152.188.0.0/17 701 -152.188.128.0/19 701 -152.188.160.0/24 701 -152.188.161.0/24 1661 -152.188.162.0/24 1661 -152.188.163.0/24 701 -152.188.164.0/22 701 -152.188.168.0/21 701 -152.188.176.0/20 701 -152.188.192.0/18 701 -152.189.0.0/16 701 -152.190.0.0/17 701 -152.190.128.0/19 701 -152.190.160.0/24 1699 -152.190.161.0/24 701 -152.190.162.0/23 701 -152.190.164.0/22 701 -152.190.168.0/21 701 -152.190.176.0/20 701 -152.190.192.0/18 701 -152.191.0.0/16 701 -152.192.0.0/15 701 -152.194.0.0/19 23148 -152.194.32.0/22 23148 -152.194.36.0/24 394564 -152.194.37.0/24 23148 -152.194.38.0/23 23148 -152.194.40.0/21 701 -152.194.48.0/20 701 -152.194.64.0/22 23148 -152.194.68.0/23 23148 -152.194.70.0/23 701 -152.194.72.0/22 11303 -152.194.76.0/22 701 -152.194.80.0/20 701 -152.194.96.0/19 701 -152.194.128.0/18 701 -152.194.192.0/19 701 -152.194.224.0/21 11303 -152.194.232.0/21 701 -152.194.240.0/20 701 -152.195.0.0/22 14210 -152.195.4.0/22 15133 -152.195.8.0/23 15133 -152.195.10.0/24 701 -152.195.11.0/24 15133 -152.195.12.0/22 15133 -152.195.16.0/21 15133 -152.195.24.0/22 15133 -152.195.28.0/23 15133 -152.195.30.0/23 14210 -152.195.32.0/21 15133 -152.195.40.0/21 701 -152.195.48.0/23 701 -152.195.50.0/23 15133 -152.195.52.0/22 15133 -152.195.56.0/21 15133 -152.195.64.0/18 15133 -152.195.128.0/20 15133 -152.195.144.0/21 15133 -152.195.152.0/22 15133 -152.195.156.0/23 15133 -152.195.158.0/23 14210 -152.195.160.0/22 14210 -152.195.164.0/24 15133 -152.195.165.0/24 14210 -152.195.166.0/23 15133 -152.195.168.0/24 14210 -152.195.169.0/24 701 -152.195.170.0/23 14210 -152.195.172.0/24 14210 -152.195.173.0/24 701 -152.195.174.0/23 701 -152.195.176.0/23 701 -152.195.178.0/24 14210 -152.195.179.0/24 15133 -152.195.180.0/24 701 -152.195.181.0/24 15133 -152.195.182.0/23 15133 -152.195.184.0/24 15133 -152.195.185.0/24 701 -152.195.186.0/23 15133 -152.195.188.0/23 15133 -152.195.190.0/23 701 -152.195.192.0/22 14210 -152.195.196.0/22 15133 -152.195.200.0/21 15133 -152.195.208.0/21 15133 -152.195.216.0/22 701 -152.195.220.0/23 15133 -152.195.222.0/24 14153 -152.195.223.0/24 15133 -152.195.224.0/22 15133 -152.195.228.0/23 15133 -152.195.230.0/23 701 -152.195.232.0/22 15133 -152.195.236.0/23 701 -152.195.238.0/23 15133 -152.195.240.0/21 15133 -152.195.248.0/22 15133 -152.195.252.0/23 15133 -152.195.254.0/23 701 -152.196.0.0/21 701 -152.196.8.0/24 1321 -152.196.9.0/24 701 -152.196.10.0/23 701 -152.196.12.0/24 1321 -152.196.13.0/24 701 -152.196.14.0/23 701 -152.196.16.0/24 1321 -152.196.17.0/24 701 -152.196.18.0/23 701 -152.196.20.0/24 1321 -152.196.21.0/24 701 -152.196.22.0/23 701 -152.196.24.0/22 701 -152.196.28.0/24 1321 -152.196.29.0/24 701 -152.196.30.0/23 701 -152.196.32.0/19 701 -152.196.64.0/22 701 -152.196.68.0/24 1321 -152.196.69.0/24 701 -152.196.70.0/23 701 -152.196.72.0/24 1321 -152.196.73.0/24 701 -152.196.74.0/23 701 -152.196.76.0/22 701 -152.196.80.0/20 701 -152.196.96.0/22 701 -152.196.100.0/24 1321 -152.196.101.0/24 701 -152.196.102.0/23 701 -152.196.104.0/24 1321 -152.196.105.0/24 701 -152.196.106.0/23 701 -152.196.108.0/23 701 -152.196.110.0/24 701 -152.196.111.0/24 1339 -152.196.112.0/24 1339 -152.196.113.0/24 701 -152.196.114.0/23 701 -152.196.116.0/22 701 -152.196.120.0/23 701 -152.196.122.0/24 701 -152.196.123.0/24 1339 -152.196.124.0/24 1339 -152.196.125.0/24 701 -152.196.126.0/23 701 -152.196.128.0/17 701 -152.197.0.0/16 701 -152.198.0.0/24 1326 -152.198.1.0/24 701 -152.198.2.0/23 701 -152.198.4.0/24 1326 -152.198.5.0/24 701 -152.198.6.0/24 701 -152.198.7.0/24 1326 -152.198.8.0/21 701 -152.198.16.0/20 701 -152.198.32.0/19 701 -152.198.64.0/18 701 -152.198.128.0/17 701 -152.199.0.0/22 15133 -152.199.4.0/23 15133 -152.199.6.0/24 15133 -152.199.7.0/24 14153 -152.199.8.0/23 14153 -152.199.10.0/24 14153 -152.199.11.0/24 15133 -152.199.12.0/22 701 -152.199.16.0/21 15133 -152.199.24.0/24 15133 -152.199.25.0/24 701 -152.199.26.0/23 701 -152.199.28.0/22 701 -152.199.32.0/21 15133 -152.199.40.0/22 15133 -152.199.44.0/24 15133 -152.199.45.0/24 701 -152.199.46.0/23 701 -152.199.48.0/21 15133 -152.199.56.0/24 15133 -152.199.57.0/24 701 -152.199.58.0/23 701 -152.199.60.0/22 701 -152.199.64.0/20 701 -152.199.80.0/22 14210 -152.199.84.0/23 14210 -152.199.86.0/24 14210 -152.199.87.0/24 701 -152.199.88.0/24 14210 -152.199.89.0/24 701 -152.199.90.0/23 15133 -152.199.92.0/22 15133 -152.199.96.0/19 15133 -152.199.128.0/21 701 -152.199.136.0/21 14210 -152.199.144.0/23 14210 -152.199.146.0/24 15133 -152.199.147.0/24 14210 -152.199.148.0/22 14153 -152.199.152.0/23 14153 -152.199.154.0/24 14210 -152.199.155.0/24 15133 -152.199.156.0/22 701 -152.199.160.0/21 14153 -152.199.168.0/22 14153 -152.199.172.0/23 14153 -152.199.174.0/23 701 -152.199.176.0/21 701 -152.199.184.0/22 701 -152.199.188.0/23 701 -152.199.190.0/24 14153 -152.199.191.0/24 15133 -152.199.192.0/23 14210 -152.199.194.0/23 701 -152.199.196.0/22 701 -152.199.200.0/21 701 -152.199.208.0/20 701 -152.199.224.0/19 701 -152.200.0.0/16 3816 -152.201.0.0/17 3816 -152.201.128.0/18 3816 -152.201.192.0/20 3816 -152.201.208.0/21 3816 -152.201.216.0/22 3816 -152.202.0.0/18 3816 -152.202.64.0/19 3816 -152.202.96.0/20 3816 -152.204.0.0/17 3816 -152.204.128.0/22 3816 -152.204.132.0/24 3816 -152.204.134.0/24 3816 -152.204.160.0/20 3816 -152.205.192.0/18 3816 -152.206.0.0/15 27725 -152.208.0.0/13 701 -152.216.0.0/20 30313 -152.226.0.0/16 9292 -152.228.0.0/16 1767 -152.229.0.0/16 5307 -152.230.0.0/16 14259 -152.231.0.0/20 27923 -152.231.16.0/23 52505 -152.231.24.0/24 3549 -152.231.25.0/24 262186 -152.231.26.0/24 18678 -152.231.27.0/24 266877 -152.231.28.0/24 266877 -152.231.29.0/24 18678 -152.231.30.0/23 18678 -152.231.32.0/20 28036 -152.231.48.0/20 52420 -152.231.64.0/19 6471 -152.231.96.0/21 6471 -152.231.104.0/23 27651 -152.231.106.0/24 6471 -152.231.107.0/24 27651 -152.231.108.0/23 27651 -152.231.110.0/23 27986 -152.231.112.0/24 6471 -152.231.113.0/24 27651 -152.231.114.0/23 27651 -152.231.116.0/22 27651 -152.231.120.0/21 27651 -152.231.128.0/17 52228 -152.232.0.0/13 7738 -152.240.0.0/13 26599 -152.248.0.0/16 26599 -152.249.0.0/16 27699 -152.250.0.0/16 27699 -152.251.0.0/16 26599 -152.252.0.0/15 26599 -152.254.0.0/17 26599 -152.254.128.0/17 27699 -152.255.0.0/16 26599 -153.0.0.0/16 4837 -153.1.0.0/16 1741 -153.2.0.0/16 12217 -153.3.0.0/16 4837 -153.5.0.0/16 2107 -153.6.10.0/23 29736 -153.6.52.0/24 29736 -153.6.90.0/24 29736 -153.6.96.0/23 29736 -153.6.98.0/24 29736 -153.6.108.0/24 29736 -153.6.148.0/24 29736 -153.6.196.0/23 29736 -153.7.84.0/24 25932 -153.7.122.0/23 25932 -153.7.134.0/24 25932 -153.7.232.0/24 25932 -153.7.233.0/24 13379 -153.7.234.0/23 25932 -153.7.236.0/22 25932 -153.7.252.0/24 13379 -153.9.0.0/16 13548 -153.11.0.0/16 46887 -153.13.0.0/20 20478 -153.13.16.0/22 20478 -153.13.20.0/24 2830 -153.13.21.0/24 9466 -153.13.22.0/23 20478 -153.13.24.0/21 20478 -153.13.32.0/22 20478 -153.13.36.0/24 20478 -153.13.37.0/24 10753 -153.13.38.0/23 20478 -153.13.40.0/21 20478 -153.13.48.0/20 20478 -153.13.64.0/18 20478 -153.13.128.0/18 20478 -153.13.192.0/19 20478 -153.13.224.0/21 20478 -153.13.232.0/22 20478 -153.13.236.0/24 20478 -153.13.237.0/24 10753 -153.13.238.0/23 20478 -153.13.240.0/20 20478 -153.16.0.0/16 3943 -153.18.0.0/16 10867 -153.19.0.0/16 5550 -153.20.0.0/16 9877 -153.23.0.0/20 6035 -153.23.16.0/20 721 -153.23.32.0/23 721 -153.23.34.0/23 6035 -153.23.36.0/22 721 -153.23.40.0/21 6035 -153.23.48.0/21 6035 -153.23.56.0/23 721 -153.23.58.0/23 6035 -153.23.60.0/23 6035 -153.23.62.0/23 721 -153.23.64.0/19 6035 -153.23.96.0/20 6035 -153.23.112.0/21 6035 -153.23.120.0/22 6035 -153.23.124.0/22 721 -153.23.128.0/20 6035 -153.23.144.0/23 6035 -153.23.146.0/23 721 -153.23.148.0/22 6035 -153.23.152.0/22 6035 -153.23.156.0/23 6035 -153.23.158.0/23 721 -153.23.160.0/21 721 -153.23.168.0/22 721 -153.23.172.0/22 6035 -153.23.176.0/20 6035 -153.23.192.0/19 721 -153.23.224.0/21 721 -153.23.232.0/22 721 -153.23.236.0/22 6035 -153.23.240.0/21 721 -153.23.248.0/22 721 -153.23.252.0/22 6035 -153.24.0.0/20 6035 -153.24.16.0/20 721 -153.24.32.0/19 6035 -153.24.64.0/18 6035 -153.24.128.0/20 6035 -153.24.144.0/20 721 -153.24.160.0/20 6035 -153.24.176.0/20 721 -153.24.192.0/21 6035 -153.24.200.0/22 6035 -153.24.204.0/22 721 -153.24.208.0/22 6035 -153.24.212.0/22 721 -153.24.216.0/21 721 -153.24.224.0/23 6035 -153.24.226.0/23 721 -153.24.228.0/23 6035 -153.24.230.0/23 721 -153.24.232.0/22 6035 -153.24.236.0/22 721 -153.24.240.0/20 721 -153.25.0.0/19 721 -153.25.32.0/20 721 -153.25.48.0/20 6035 -153.25.64.0/19 6035 -153.25.96.0/20 6035 -153.25.112.0/20 721 -153.25.128.0/19 721 -153.25.160.0/20 721 -153.25.176.0/20 6035 -153.25.192.0/20 6035 -153.25.208.0/20 721 -153.25.224.0/20 721 -153.25.240.0/20 6035 -153.26.0.0/21 6035 -153.26.8.0/24 6035 -153.26.9.0/24 721 -153.26.10.0/23 721 -153.26.12.0/22 6035 -153.26.16.0/20 6035 -153.26.32.0/20 6035 -153.26.48.0/20 721 -153.26.64.0/20 6035 -153.26.80.0/20 721 -153.26.96.0/20 6035 -153.26.112.0/20 721 -153.26.128.0/19 721 -153.26.160.0/20 721 -153.26.176.0/20 6035 -153.26.192.0/18 6035 -153.27.0.0/16 721 -153.29.0.0/19 721 -153.29.32.0/20 6035 -153.29.48.0/22 721 -153.29.52.0/24 6035 -153.29.53.0/24 721 -153.29.54.0/23 721 -153.29.56.0/21 721 -153.29.64.0/20 6035 -153.29.80.0/20 721 -153.29.96.0/19 721 -153.29.128.0/18 721 -153.29.192.0/20 721 -153.29.208.0/20 6035 -153.29.224.0/20 6035 -153.29.240.0/20 721 -153.31.0.0/16 25996 -153.32.0.0/20 14365 -153.32.16.0/21 14365 -153.32.24.0/22 1313 -153.32.28.0/23 1313 -153.32.30.0/23 14365 -153.32.32.0/19 14365 -153.32.64.0/18 14365 -153.32.128.0/17 14365 -153.33.0.0/23 23473 -153.33.2.0/24 23473 -153.33.3.0/24 46925 -153.33.4.0/22 23473 -153.33.8.0/21 23473 -153.33.16.0/20 23473 -153.33.32.0/24 23473 -153.33.34.0/23 23473 -153.33.36.0/22 23473 -153.33.40.0/21 23473 -153.33.48.0/20 23473 -153.33.64.0/21 23473 -153.33.72.0/24 23473 -153.33.74.0/23 23473 -153.33.81.0/24 23473 -153.34.0.0/15 4837 -153.36.0.0/15 4837 -153.38.0.0/16 701 -153.39.0.0/18 12234 -153.39.64.0/19 3373 -153.39.96.0/19 3371 -153.39.128.0/17 3371 -153.42.0.0/16 62585 -153.43.253.0/24 33015 -153.43.254.0/23 33015 -153.44.0.0/16 2116 -153.45.0.0/16 12928 -153.46.30.0/23 9025 -153.46.96.0/20 9042 -153.46.162.0/23 9025 -153.46.240.0/20 9042 -153.47.0.0/23 19512 -153.48.0.0/16 1226 -153.51.0.0/16 14962 -153.52.0.0/14 14962 -153.56.0.0/14 14962 -153.60.0.0/15 14962 -153.63.0.0/16 14962 -153.64.71.0/24 2687 -153.64.73.0/24 395516 -153.64.74.0/24 2386 -153.65.16.0/24 2386 -153.65.18.0/24 2386 -153.65.20.0/24 2386 -153.65.25.0/24 2386 -153.65.28.0/24 2386 -153.65.33.0/24 2386 -153.65.243.0/24 63045 -153.66.0.0/15 14962 -153.68.0.0/16 14962 -153.69.0.0/22 13806 -153.69.7.0/24 13806 -153.69.8.0/23 13806 -153.69.10.0/24 13806 -153.69.64.0/23 13806 -153.69.69.0/24 13806 -153.69.70.0/23 13806 -153.69.72.0/21 13806 -153.69.80.0/22 13806 -153.69.84.0/24 13806 -153.69.89.0/24 13806 -153.69.90.0/24 13806 -153.69.128.0/22 13806 -153.69.140.0/24 13806 -153.69.155.0/24 13806 -153.69.193.0/24 13806 -153.69.194.0/23 13806 -153.69.196.0/23 13806 -153.69.198.0/24 13806 -153.69.200.0/24 13806 -153.69.202.0/23 13806 -153.69.204.0/24 13806 -153.69.206.0/23 13806 -153.69.211.0/24 13806 -153.69.212.0/23 13806 -153.69.214.0/24 13806 -153.69.221.0/24 13806 -153.69.242.0/24 13806 -153.69.245.0/24 13806 -153.69.252.0/22 13806 -153.70.0.0/15 14962 -153.72.0.0/13 14962 -153.80.0.0/13 14962 -153.88.0.0/16 158 -153.90.0.0/16 13476 -153.91.0.0/16 2572 -153.92.0.0/24 204915 -153.92.1.0/24 47583 -153.92.2.0/23 47583 -153.92.4.0/22 47583 -153.92.8.0/21 47583 -153.92.24.0/23 60713 -153.92.27.0/24 205081 -153.92.28.0/22 201213 -153.92.32.0/21 197637 -153.92.40.0/24 46562 -153.92.41.0/24 205700 -153.92.42.0/24 13287 -153.92.43.0/24 201126 -153.92.44.0/23 201126 -153.92.46.0/24 201126 -153.92.47.0/24 205700 -153.92.48.0/20 29467 -153.92.64.0/24 34455 -153.92.65.0/24 60664 -153.92.66.0/23 60664 -153.92.68.0/22 60664 -153.92.72.0/21 12693 -153.92.80.0/20 41998 -153.92.96.0/20 62038 -153.92.112.0/21 200026 -153.92.120.0/22 29119 -153.92.124.0/24 60664 -153.92.125.0/24 204977 -153.92.126.0/23 63473 -153.92.128.0/19 43571 -153.92.160.0/21 60664 -153.92.168.0/23 60664 -153.92.170.0/24 60664 -153.92.172.0/23 60664 -153.92.174.0/24 60664 -153.92.176.0/22 59862 -153.92.180.0/24 15544 -153.92.181.0/24 201341 -153.92.182.0/23 202957 -153.92.184.0/23 34966 -153.92.186.0/24 34966 -153.92.187.0/24 50469 -153.92.188.0/22 201341 -153.92.192.0/20 15817 -153.92.208.0/22 47583 -153.92.224.0/19 200484 -153.94.16.0/20 204279 -153.94.32.0/20 25394 -153.94.48.0/21 25394 -153.94.56.0/21 202087 -153.94.128.0/17 25394 -153.95.0.0/16 24635 -153.96.0.0/21 5501 -153.96.8.0/23 5501 -153.96.10.0/23 680 -153.96.12.0/22 5501 -153.96.16.0/23 5501 -153.96.18.0/24 680 -153.96.19.0/24 5501 -153.96.20.0/23 680 -153.96.22.0/24 3320 -153.96.23.0/24 680 -153.96.24.0/24 5501 -153.96.25.0/24 680 -153.96.26.0/23 680 -153.96.28.0/22 60824 -153.96.32.0/21 60824 -153.96.40.0/21 680 -153.96.48.0/23 680 -153.96.50.0/24 9063 -153.96.51.0/24 680 -153.96.52.0/23 680 -153.96.54.0/23 5501 -153.96.56.0/24 680 -153.96.57.0/24 9063 -153.96.58.0/23 680 -153.96.60.0/24 60824 -153.96.61.0/24 680 -153.96.62.0/23 200943 -153.96.64.0/22 200943 -153.96.68.0/23 680 -153.96.70.0/23 60824 -153.96.72.0/22 60824 -153.96.76.0/22 680 -153.96.80.0/23 680 -153.96.82.0/24 680 -153.96.83.0/24 553 -153.96.84.0/23 16097 -153.96.86.0/24 16097 -153.96.87.0/24 680 -153.96.88.0/22 60824 -153.96.92.0/22 680 -153.96.96.0/22 680 -153.96.100.0/24 680 -153.96.101.0/24 15372 -153.96.102.0/23 680 -153.96.104.0/21 680 -153.96.112.0/23 680 -153.96.114.0/23 60824 -153.96.116.0/22 680 -153.96.120.0/21 680 -153.96.128.0/22 60824 -153.96.132.0/24 16097 -153.96.133.0/24 9020 -153.96.134.0/23 9020 -153.96.136.0/22 9063 -153.96.140.0/23 8220 -153.96.142.0/24 200943 -153.96.143.0/24 680 -153.96.144.0/23 5501 -153.96.146.0/23 680 -153.96.148.0/22 680 -153.96.152.0/21 680 -153.96.160.0/21 200943 -153.96.168.0/21 680 -153.96.176.0/22 680 -153.96.180.0/24 47610 -153.96.181.0/24 680 -153.96.182.0/24 680 -153.96.183.0/24 9063 -153.96.184.0/21 680 -153.96.192.0/21 680 -153.96.200.0/22 680 -153.96.204.0/23 60824 -153.96.206.0/24 60824 -153.96.207.0/24 680 -153.96.208.0/23 47610 -153.96.210.0/23 680 -153.96.212.0/22 680 -153.96.216.0/23 680 -153.96.218.0/24 3320 -153.96.219.0/24 680 -153.96.220.0/22 5501 -153.96.224.0/22 680 -153.96.228.0/23 680 -153.96.230.0/24 15372 -153.96.231.0/24 680 -153.96.232.0/21 680 -153.96.240.0/22 680 -153.96.244.0/22 12643 -153.96.248.0/23 680 -153.96.250.0/24 680 -153.96.251.0/24 13132 -153.96.252.0/24 13132 -153.96.253.0/24 5501 -153.96.254.0/24 5501 -153.96.255.0/24 680 -153.97.0.0/21 5501 -153.97.8.0/23 680 -153.97.10.0/24 680 -153.97.11.0/24 5501 -153.97.12.0/23 680 -153.97.14.0/24 680 -153.97.15.0/24 200943 -153.97.16.0/21 680 -153.97.24.0/23 680 -153.97.26.0/24 5501 -153.97.27.0/24 680 -153.97.28.0/22 680 -153.97.32.0/19 680 -153.97.64.0/19 680 -153.97.96.0/20 680 -153.97.112.0/24 680 -153.97.113.0/24 8881 -153.97.114.0/24 8881 -153.97.115.0/24 680 -153.97.116.0/22 680 -153.97.120.0/21 680 -153.97.128.0/22 680 -153.97.132.0/23 680 -153.97.134.0/24 9063 -153.97.135.0/24 680 -153.97.136.0/21 680 -153.97.144.0/22 680 -153.97.148.0/24 35170 -153.97.149.0/24 680 -153.97.150.0/23 680 -153.97.152.0/21 680 -153.97.160.0/20 680 -153.97.176.0/23 200943 -153.97.178.0/23 680 -153.97.180.0/23 680 -153.97.182.0/23 5501 -153.97.184.0/21 680 -153.97.192.0/18 680 -153.98.36.0/23 199541 -153.98.68.0/24 199541 -153.98.71.0/24 199541 -153.98.83.0/24 199541 -153.98.100.0/24 199541 -153.98.105.0/24 199541 -153.98.106.0/23 199541 -153.98.108.0/22 199541 -153.98.113.0/24 199541 -153.98.203.0/24 20676 -153.99.0.0/16 4837 -153.100.0.0/17 21207 -153.100.128.0/19 21207 -153.100.160.0/20 12886 -153.100.176.0/20 21207 -153.100.192.0/18 21207 -153.101.0.0/16 4837 -153.102.0.0/16 27064 -153.103.0.0/18 1519 -153.103.64.0/19 1519 -153.103.96.0/21 1519 -153.103.104.0/24 1519 -153.103.105.0/24 1505 -153.103.106.0/23 1505 -153.103.108.0/22 1505 -153.103.112.0/21 1505 -153.103.120.0/24 1505 -153.103.121.0/24 1519 -153.103.122.0/23 1519 -153.103.124.0/22 1519 -153.103.128.0/17 1519 -153.104.0.0/16 10448 -153.105.0.0/18 195 -153.105.64.0/20 195 -153.105.80.0/24 195 -153.105.81.0/24 22213 -153.105.82.0/23 195 -153.105.84.0/22 195 -153.105.88.0/21 195 -153.105.96.0/19 195 -153.105.128.0/17 195 -153.106.0.0/16 22217 -153.107.0.0/16 24313 -153.108.0.0/17 24952 -153.109.0.0/16 559 -153.110.0.0/16 5619 -153.111.226.0/24 24324 -153.111.229.0/24 24324 -153.112.128.0/24 1221 -153.112.132.0/22 25252 -153.112.139.0/24 25252 -153.112.149.0/24 25252 -153.112.150.0/23 25252 -153.112.160.0/21 25252 -153.112.173.0/24 25252 -153.112.176.0/20 25252 -153.112.195.0/24 53007 -153.112.205.0/24 1299 -153.112.208.0/23 25252 -153.112.216.0/23 35950 -153.112.223.0/24 35950 -153.112.224.0/21 58653 -153.112.232.0/21 39771 -153.112.240.0/23 25252 -153.113.0.0/16 1906 -153.114.0.0/18 12079 -153.114.64.0/19 12079 -153.114.96.0/20 12079 -153.114.112.0/21 6167 -153.114.120.0/21 12079 -153.114.128.0/17 12079 -153.118.0.0/15 4134 -153.120.0.0/17 7684 -153.120.128.0/18 7684 -153.120.192.0/20 10013 -153.120.208.0/23 10013 -153.120.212.0/22 10013 -153.120.216.0/23 10013 -153.120.220.0/23 10013 -153.120.224.0/19 10013 -153.121.0.0/18 9370 -153.121.64.0/19 9370 -153.121.96.0/21 59092 -153.121.112.0/22 59092 -153.121.128.0/18 7684 -153.121.224.0/20 59092 -153.121.240.0/21 59092 -153.121.248.0/22 59092 -153.121.252.0/23 59092 -153.121.254.0/24 59092 -153.122.0.0/16 131921 -153.123.0.0/20 131921 -153.124.128.0/20 131921 -153.124.168.0/21 59102 -153.124.176.0/20 2514 -153.124.192.0/20 4713 -153.124.208.0/20 59108 -153.124.224.0/21 18135 -153.125.0.0/17 9615 -153.125.128.0/18 7684 -153.125.192.0/19 59092 -153.125.224.0/20 9370 -153.126.0.0/16 7684 -153.127.0.0/17 7684 -153.127.128.0/18 7684 -153.127.192.0/19 7684 -153.127.224.0/19 24282 -153.128.0.0/10 4713 -153.192.0.0/11 4713 -153.224.0.0/12 4713 -153.240.0.0/13 4713 -153.248.0.0/14 4713 -153.252.0.0/15 4713 -153.254.0.0/18 2914 -153.254.64.0/20 2914 -153.254.80.0/23 2914 -153.254.82.0/23 3949 -153.254.84.0/23 2914 -153.254.86.0/24 32590 -153.254.87.0/24 2914 -153.254.88.0/22 2914 -153.254.92.0/23 3949 -153.254.94.0/23 23918 -153.254.96.0/21 2914 -153.254.104.0/22 2914 -153.254.108.0/24 2914 -153.254.109.0/24 135391 -153.254.110.0/24 2914 -153.254.111.0/24 14821 -153.254.112.0/20 2914 -153.254.128.0/19 2914 -153.254.160.0/21 2914 -153.254.168.0/22 2914 -153.254.172.0/23 2914 -153.254.174.0/24 2914 -153.254.175.0/24 18165 -153.254.176.0/20 2914 -153.254.192.0/18 2914 -153.255.0.0/16 2914 -154.0.0.0/20 37680 -154.0.16.0/23 37711 -154.0.18.0/24 37711 -154.0.20.0/22 37711 -154.0.24.0/21 37190 -154.0.32.0/19 37390 -154.0.64.0/20 37155 -154.0.80.0/24 37155 -154.0.96.0/21 37155 -154.0.120.0/21 37155 -154.0.128.0/20 37063 -154.0.152.0/22 36909 -154.0.156.0/23 36909 -154.0.160.0/20 37611 -154.0.176.0/20 37616 -154.1.176.0/24 9084 -154.1.183.0/24 9084 -154.1.184.0/24 9084 -154.1.191.0/24 9084 -154.3.0.0/22 174 -154.3.4.0/24 134520 -154.3.5.0/24 174 -154.3.6.0/23 174 -154.3.8.0/21 174 -154.3.16.0/20 174 -154.3.32.0/21 174 -154.3.40.0/22 174 -154.3.44.0/24 174 -154.3.45.0/24 64249 -154.3.46.0/23 174 -154.3.48.0/20 174 -154.3.64.0/19 174 -154.3.96.0/20 174 -154.3.112.0/20 54133 -154.3.128.0/17 174 -154.5.0.0/16 852 -154.6.0.0/15 174 -154.8.0.0/19 1290 -154.8.32.0/20 1290 -154.8.48.0/20 10003 -154.8.128.0/17 45090 -154.9.0.0/18 174 -154.9.64.0/19 174 -154.9.96.0/19 395800 -154.9.128.0/18 174 -154.9.192.0/21 174 -154.9.200.0/22 174 -154.9.204.0/22 134520 -154.9.208.0/21 174 -154.9.216.0/21 395800 -154.9.224.0/19 395800 -154.10.0.0/21 9578 -154.10.8.0/23 9578 -154.10.254.0/24 9578 -154.11.0.0/17 852 -154.11.128.0/23 852 -154.11.130.0/24 852 -154.11.131.0/24 7861 -154.11.132.0/22 852 -154.11.136.0/21 852 -154.11.144.0/20 852 -154.11.160.0/19 852 -154.11.192.0/18 852 -154.12.0.0/19 174 -154.12.32.0/19 54133 -154.12.64.0/18 174 -154.12.128.0/17 174 -154.13.0.0/20 174 -154.13.16.0/21 174 -154.13.24.0/22 174 -154.13.28.0/23 134520 -154.13.30.0/24 134520 -154.13.31.0/24 40065 -154.13.32.0/19 174 -154.13.64.0/20 174 -154.13.80.0/22 174 -154.13.84.0/22 263157 -154.13.88.0/21 35916 -154.13.96.0/19 174 -154.13.128.0/17 174 -154.14.0.0/15 3257 -154.16.0.0/23 61317 -154.16.2.0/24 61317 -154.16.4.0/23 61317 -154.16.6.0/24 61317 -154.16.8.0/24 61317 -154.16.10.0/23 61317 -154.16.12.0/22 61317 -154.16.16.0/24 61317 -154.16.17.0/24 49981 -154.16.18.0/24 61317 -154.16.19.0/24 38001 -154.16.20.0/23 61317 -154.16.22.0/24 61317 -154.16.24.0/22 61317 -154.16.28.0/23 61317 -154.16.30.0/24 61317 -154.16.32.0/22 61317 -154.16.36.0/24 61317 -154.16.38.0/23 61317 -154.16.40.0/24 61317 -154.16.42.0/23 61317 -154.16.44.0/22 61317 -154.16.48.0/21 61317 -154.16.56.0/24 61317 -154.16.57.0/24 61440 -154.16.58.0/24 61317 -154.16.60.0/22 61317 -154.16.64.0/24 61317 -154.16.66.0/24 61317 -154.16.67.0/24 40676 -154.16.68.0/23 61317 -154.16.70.0/24 61317 -154.16.71.0/24 397373 -154.16.72.0/24 61317 -154.16.73.0/24 200859 -154.16.74.0/24 61317 -154.16.76.0/24 61317 -154.16.78.0/24 61317 -154.16.79.0/24 13768 -154.16.80.0/24 61317 -154.16.81.0/24 54540 -154.16.82.0/24 61317 -154.16.83.0/24 54540 -154.16.84.0/22 61317 -154.16.88.0/22 61317 -154.16.92.0/23 61317 -154.16.94.0/24 61317 -154.16.95.0/24 60458 -154.16.96.0/24 36351 -154.16.98.0/24 61317 -154.16.99.0/24 21769 -154.16.100.0/22 61317 -154.16.104.0/24 133398 -154.16.106.0/23 134121 -154.16.108.0/24 61317 -154.16.109.0/24 134121 -154.16.110.0/23 61317 -154.16.112.0/24 36352 -154.16.113.0/24 397373 -154.16.114.0/23 36352 -154.16.116.0/22 36352 -154.16.120.0/22 61317 -154.16.124.0/24 61317 -154.16.125.0/24 19437 -154.16.126.0/23 61317 -154.16.128.0/23 61317 -154.16.130.0/24 61317 -154.16.132.0/24 61317 -154.16.134.0/23 61317 -154.16.136.0/24 61317 -154.16.137.0/24 40676 -154.16.138.0/24 36666 -154.16.139.0/24 61317 -154.16.140.0/23 61317 -154.16.142.0/23 134121 -154.16.144.0/22 36352 -154.16.148.0/23 61317 -154.16.150.0/23 23470 -154.16.152.0/24 134121 -154.16.153.0/24 174 -154.16.154.0/23 61317 -154.16.156.0/23 23470 -154.16.159.0/24 397384 -154.16.160.0/22 61317 -154.16.164.0/24 61317 -154.16.165.0/24 131178 -154.16.166.0/23 61317 -154.16.168.0/23 397423 -154.16.170.0/24 40676 -154.16.171.0/24 17216 -154.16.172.0/24 61317 -154.16.173.0/24 20454 -154.16.174.0/23 134121 -154.16.176.0/21 61317 -154.16.184.0/21 134121 -154.16.192.0/23 134121 -154.16.194.0/24 60458 -154.16.195.0/24 49981 -154.16.196.0/22 134121 -154.16.200.0/24 36351 -154.16.202.0/23 61317 -154.16.204.0/24 61317 -154.16.205.0/24 20278 -154.16.206.0/24 61317 -154.16.208.0/24 61317 -154.16.209.0/24 9891 -154.16.210.0/23 61317 -154.16.212.0/24 60458 -154.16.213.0/24 61317 -154.16.214.0/23 61317 -154.16.216.0/23 61317 -154.16.218.0/24 61317 -154.16.219.0/24 29713 -154.16.220.0/22 61317 -154.16.224.0/23 61317 -154.16.226.0/23 134121 -154.16.229.0/24 23470 -154.16.230.0/24 61317 -154.16.232.0/24 61317 -154.16.234.0/23 61317 -154.16.236.0/24 61317 -154.16.238.0/24 23470 -154.16.240.0/23 61317 -154.16.242.0/24 60458 -154.16.244.0/24 63018 -154.16.245.0/24 19844 -154.16.246.0/24 23470 -154.16.247.0/24 397373 -154.16.248.0/23 61317 -154.16.251.0/24 61317 -154.16.252.0/23 61317 -154.16.254.0/24 60458 -154.16.255.0/24 61317 -154.17.0.0/20 54574 -154.17.16.0/24 54574 -154.17.24.0/22 54574 -154.17.32.0/19 11325 -154.17.64.0/18 11325 -154.17.128.0/20 9009 -154.17.144.0/22 9009 -154.17.148.0/23 9009 -154.17.152.0/22 9009 -154.17.156.0/23 9009 -154.17.160.0/21 9009 -154.17.192.0/20 54133 -154.17.208.0/22 174 -154.17.212.0/23 174 -154.17.216.0/21 174 -154.17.224.0/20 174 -154.17.248.0/22 174 -154.17.252.0/24 174 -154.17.254.0/23 174 -154.18.0.0/18 174 -154.18.64.0/24 174 -154.18.65.0/24 131917 -154.18.66.0/24 55096 -154.18.67.0/24 174 -154.18.68.0/22 174 -154.18.72.0/21 174 -154.18.80.0/20 174 -154.18.96.0/19 174 -154.18.128.0/20 174 -154.18.144.0/24 139705 -154.18.145.0/24 174 -154.18.146.0/23 174 -154.18.148.0/22 133613 -154.18.152.0/21 174 -154.18.160.0/19 174 -154.18.192.0/18 174 -154.19.0.0/21 132146 -154.19.8.0/22 174 -154.19.12.0/24 132146 -154.19.13.0/24 174 -154.19.14.0/23 174 -154.19.16.0/21 174 -154.19.24.0/24 132146 -154.19.25.0/24 174 -154.19.26.0/23 174 -154.19.28.0/22 174 -154.19.32.0/19 174 -154.19.64.0/18 174 -154.19.128.0/17 174 -154.20.0.0/16 852 -154.21.0.0/16 174 -154.22.0.0/23 174 -154.22.128.0/23 174 -154.22.152.0/22 208510 -154.24.0.0/15 174 -154.26.0.0/16 174 -154.27.0.0/19 174 -154.27.32.0/19 11904 -154.27.64.0/24 13886 -154.27.65.0/24 174 -154.27.66.0/23 174 -154.27.68.0/24 13886 -154.27.69.0/24 174 -154.27.70.0/23 174 -154.27.72.0/23 13886 -154.27.74.0/23 174 -154.27.76.0/22 174 -154.27.80.0/20 174 -154.27.96.0/20 174 -154.27.112.0/23 395354 -154.27.114.0/23 174 -154.27.116.0/22 27611 -154.27.120.0/22 395354 -154.27.124.0/22 174 -154.27.128.0/17 174 -154.28.0.0/19 174 -154.28.32.0/21 395800 -154.28.40.0/22 26556 -154.28.44.0/22 174 -154.28.48.0/22 395800 -154.28.52.0/22 174 -154.28.56.0/21 174 -154.28.64.0/18 174 -154.28.128.0/17 174 -154.29.0.0/17 174 -154.29.128.0/19 174 -154.29.160.0/23 395800 -154.29.162.0/23 174 -154.29.164.0/22 174 -154.29.168.0/21 395800 -154.29.176.0/20 395800 -154.29.192.0/22 174 -154.29.196.0/24 61317 -154.29.197.0/24 174 -154.29.198.0/23 174 -154.29.200.0/21 174 -154.29.208.0/20 174 -154.29.224.0/19 174 -154.30.0.0/17 174 -154.30.128.0/20 395111 -154.30.144.0/22 395111 -154.30.148.0/23 395111 -154.30.150.0/23 395800 -154.30.152.0/23 395800 -154.30.154.0/23 395111 -154.30.156.0/22 395111 -154.30.160.0/19 395111 -154.30.192.0/19 35916 -154.30.224.0/19 174 -154.31.0.0/19 35916 -154.31.32.0/20 395800 -154.31.48.0/21 395800 -154.31.56.0/22 395800 -154.31.60.0/22 26556 -154.31.64.0/18 174 -154.31.128.0/17 174 -154.32.0.0/17 1290 -154.32.128.0/22 1290 -154.32.132.0/23 1290 -154.32.134.0/24 4637 -154.32.135.0/24 1290 -154.32.136.0/21 1290 -154.32.144.0/20 1290 -154.32.160.0/20 1290 -154.32.176.0/21 1290 -154.32.184.0/22 1290 -154.32.188.0/23 1290 -154.32.190.0/24 1290 -154.32.191.0/24 4637 -154.32.192.0/18 1290 -154.33.0.0/16 4694 -154.34.0.0/18 24296 -154.34.64.0/18 4694 -154.34.128.0/18 4694 -154.34.192.0/19 4694 -154.34.224.0/20 2554 -154.34.240.0/20 4694 -154.35.0.0/16 14987 -154.36.0.0/16 174 -154.37.0.0/24 40676 -154.37.1.0/24 395800 -154.37.2.0/23 174 -154.37.4.0/22 174 -154.37.8.0/24 395800 -154.37.9.0/24 174 -154.37.10.0/23 395800 -154.37.12.0/22 26556 -154.37.16.0/21 395800 -154.37.24.0/24 395800 -154.37.25.0/24 174 -154.37.26.0/23 174 -154.37.28.0/22 174 -154.37.32.0/24 395800 -154.37.33.0/24 174 -154.37.34.0/23 174 -154.37.36.0/23 174 -154.37.38.0/23 395800 -154.37.40.0/21 395800 -154.37.48.0/20 395800 -154.37.64.0/20 174 -154.37.80.0/22 395800 -154.37.84.0/22 174 -154.37.88.0/21 174 -154.37.96.0/19 32181 -154.37.128.0/17 174 -154.38.0.0/15 174 -154.40.0.0/16 174 -154.41.0.0/23 174 -154.41.2.0/23 50115 -154.41.4.0/23 50115 -154.41.6.0/23 174 -154.41.8.0/21 174 -154.41.16.0/20 174 -154.41.32.0/19 174 -154.41.64.0/18 174 -154.41.128.0/17 174 -154.42.0.0/23 174 -154.42.2.0/24 51006 -154.42.3.0/24 174 -154.42.4.0/22 174 -154.42.8.0/21 174 -154.42.16.0/20 174 -154.42.32.0/19 174 -154.42.64.0/21 174 -154.42.72.0/22 202568 -154.42.76.0/22 174 -154.42.80.0/20 174 -154.42.96.0/19 174 -154.42.128.0/19 174 -154.42.160.0/21 199335 -154.42.168.0/21 174 -154.42.176.0/20 174 -154.42.192.0/18 174 -154.43.0.0/19 174 -154.43.32.0/24 174 -154.43.33.0/24 61198 -154.43.34.0/23 174 -154.43.36.0/22 174 -154.43.40.0/21 174 -154.43.48.0/20 174 -154.43.64.0/18 174 -154.43.128.0/22 174 -154.43.132.0/24 209584 -154.43.133.0/24 174 -154.43.134.0/23 209584 -154.43.136.0/21 174 -154.43.144.0/20 174 -154.43.160.0/22 174 -154.43.164.0/24 206105 -154.43.165.0/24 174 -154.43.166.0/23 174 -154.43.168.0/21 174 -154.43.176.0/20 174 -154.43.192.0/18 174 -154.44.0.0/17 174 -154.44.128.0/22 174 -154.44.132.0/22 35203 -154.44.136.0/22 174 -154.44.140.0/23 197077 -154.44.142.0/23 174 -154.44.144.0/20 174 -154.44.160.0/20 174 -154.44.176.0/22 174 -154.44.180.0/23 174 -154.44.182.0/23 199349 -154.44.184.0/23 174 -154.44.186.0/23 202883 -154.44.188.0/24 41868 -154.44.189.0/24 174 -154.44.190.0/23 174 -154.44.192.0/24 25467 -154.44.193.0/24 174 -154.44.194.0/23 174 -154.44.196.0/22 174 -154.44.200.0/21 174 -154.44.208.0/20 174 -154.44.224.0/19 174 -154.45.0.0/24 174 -154.45.1.0/24 200589 -154.45.2.0/23 174 -154.45.4.0/24 174 -154.45.5.0/24 200589 -154.45.6.0/24 200589 -154.45.7.0/24 174 -154.45.8.0/21 174 -154.45.16.0/20 174 -154.45.32.0/24 174 -154.45.33.0/24 18646 -154.45.34.0/23 174 -154.45.36.0/22 174 -154.45.40.0/21 174 -154.45.48.0/24 174 -154.45.49.0/24 199523 -154.45.50.0/24 54620 -154.45.51.0/24 174 -154.45.52.0/24 394973 -154.45.53.0/24 174 -154.45.54.0/23 174 -154.45.56.0/21 174 -154.45.64.0/19 174 -154.45.96.0/23 199349 -154.45.98.0/23 174 -154.45.100.0/22 174 -154.45.104.0/21 174 -154.45.112.0/20 174 -154.45.128.0/18 174 -154.45.192.0/20 174 -154.45.208.0/22 174 -154.45.212.0/23 174 -154.45.214.0/24 174 -154.45.215.0/24 197205 -154.45.216.0/21 174 -154.45.224.0/19 174 -154.46.0.0/19 174 -154.46.32.0/21 174 -154.46.40.0/22 174 -154.46.44.0/22 62352 -154.46.48.0/22 1886 -154.46.52.0/22 199244 -154.46.56.0/21 174 -154.46.64.0/20 174 -154.46.80.0/21 174 -154.46.88.0/22 174 -154.46.92.0/23 174 -154.46.94.0/23 62262 -154.46.96.0/19 174 -154.46.128.0/17 174 -154.47.0.0/18 174 -154.47.64.0/23 174 -154.47.66.0/24 174 -154.47.67.0/24 44308 -154.47.68.0/23 44308 -154.47.70.0/24 174 -154.47.71.0/24 44308 -154.47.72.0/24 44308 -154.47.73.0/24 174 -154.47.74.0/24 174 -154.47.75.0/24 44308 -154.47.76.0/22 174 -154.47.80.0/23 42973 -154.47.82.0/24 174 -154.47.83.0/24 42973 -154.47.84.0/24 174 -154.47.85.0/24 42973 -154.47.86.0/24 174 -154.47.87.0/24 42973 -154.47.88.0/24 42973 -154.47.89.0/24 174 -154.47.90.0/24 42973 -154.47.91.0/24 174 -154.47.92.0/23 174 -154.47.94.0/23 42973 -154.47.96.0/19 174 -154.47.128.0/21 174 -154.47.136.0/22 200811 -154.47.140.0/23 174 -154.47.142.0/23 200811 -154.47.144.0/20 174 -154.47.160.0/19 174 -154.47.192.0/18 174 -154.48.0.0/18 174 -154.48.64.0/24 174 -154.48.65.0/24 203068 -154.48.66.0/24 174 -154.48.67.0/24 4546 -154.48.68.0/22 174 -154.48.72.0/21 174 -154.48.80.0/20 174 -154.48.96.0/19 174 -154.48.128.0/23 174 -154.48.130.0/23 203499 -154.48.132.0/22 203499 -154.48.136.0/21 174 -154.48.144.0/23 203499 -154.48.146.0/23 174 -154.48.148.0/24 174 -154.48.149.0/24 203499 -154.48.150.0/23 174 -154.48.152.0/21 174 -154.48.160.0/22 174 -154.48.164.0/22 62352 -154.48.168.0/21 203499 -154.48.176.0/24 174 -154.48.177.0/24 206866 -154.48.178.0/23 174 -154.48.180.0/22 203499 -154.48.184.0/24 203499 -154.48.185.0/24 174 -154.48.186.0/23 174 -154.48.188.0/22 203499 -154.48.192.0/22 174 -154.48.196.0/24 42290 -154.48.197.0/24 207010 -154.48.198.0/24 19970 -154.48.199.0/24 174 -154.48.200.0/24 174 -154.48.201.0/24 19970 -154.48.202.0/23 174 -154.48.204.0/24 21277 -154.48.205.0/24 174 -154.48.206.0/23 174 -154.48.208.0/23 174 -154.48.210.0/24 174 -154.48.211.0/24 38193 -154.48.212.0/22 174 -154.48.216.0/24 174 -154.48.217.0/24 204519 -154.48.218.0/23 174 -154.48.220.0/23 174 -154.48.222.0/24 6220 -154.48.223.0/24 174 -154.48.224.0/23 137443 -154.48.226.0/24 137443 -154.48.227.0/24 58879 -154.48.228.0/22 137443 -154.48.232.0/21 137443 -154.48.240.0/20 137443 -154.49.0.0/20 174 -154.49.16.0/21 28974 -154.49.24.0/22 28974 -154.49.28.0/22 174 -154.49.32.0/19 174 -154.49.64.0/24 36180 -154.49.65.0/24 174 -154.49.66.0/23 174 -154.49.68.0/22 174 -154.49.72.0/21 174 -154.49.80.0/20 174 -154.49.96.0/22 174 -154.49.100.0/24 55081 -154.49.101.0/24 174 -154.49.102.0/24 174 -154.49.103.0/24 201838 -154.49.104.0/21 174 -154.49.112.0/20 174 -154.49.128.0/18 174 -154.49.192.0/20 174 -154.49.208.0/23 174 -154.49.210.0/24 174 -154.49.211.0/24 62000 -154.49.212.0/23 62000 -154.49.214.0/23 174 -154.49.216.0/21 174 -154.49.224.0/24 51110 -154.49.225.0/24 174 -154.49.226.0/23 174 -154.49.228.0/22 174 -154.49.232.0/21 174 -154.49.240.0/20 174 -154.50.0.0/23 174 -154.50.2.0/24 206158 -154.50.3.0/24 174 -154.50.4.0/22 174 -154.50.8.0/21 174 -154.50.16.0/20 174 -154.50.32.0/19 174 -154.50.64.0/18 174 -154.50.128.0/18 174 -154.50.192.0/23 174 -154.50.194.0/23 62129 -154.50.196.0/24 209312 -154.50.197.0/24 174 -154.50.198.0/23 174 -154.50.200.0/23 174 -154.50.202.0/24 174 -154.50.203.0/24 203381 -154.50.204.0/22 174 -154.50.208.0/23 174 -154.50.210.0/23 203381 -154.50.212.0/22 174 -154.50.216.0/21 174 -154.50.224.0/19 174 -154.51.0.0/18 174 -154.51.64.0/24 174 -154.51.65.0/24 44308 -154.51.66.0/23 174 -154.51.68.0/24 202052 -154.51.69.0/24 60022 -154.51.70.0/23 174 -154.51.72.0/21 174 -154.51.80.0/20 174 -154.51.96.0/19 174 -154.51.128.0/22 174 -154.51.132.0/23 199717 -154.51.134.0/23 174 -154.51.136.0/21 174 -154.51.144.0/20 174 -154.51.160.0/22 174 -154.51.164.0/24 201924 -154.51.165.0/24 174 -154.51.166.0/23 174 -154.51.168.0/21 174 -154.51.176.0/21 174 -154.51.184.0/22 174 -154.51.188.0/22 199717 -154.51.192.0/18 174 -154.52.0.0/19 174 -154.52.32.0/23 174 -154.52.34.0/24 204182 -154.52.35.0/24 174 -154.52.36.0/22 174 -154.52.40.0/21 174 -154.52.48.0/20 174 -154.52.64.0/18 174 -154.52.128.0/24 197205 -154.52.129.0/24 174 -154.52.130.0/23 174 -154.52.132.0/22 174 -154.52.136.0/21 174 -154.52.144.0/20 174 -154.52.160.0/19 174 -154.52.192.0/18 174 -154.53.0.0/17 174 -154.53.128.0/22 174 -154.53.132.0/24 201446 -154.53.133.0/24 174 -154.53.134.0/24 201446 -154.53.135.0/24 174 -154.53.136.0/21 174 -154.53.144.0/20 174 -154.53.160.0/19 174 -154.53.192.0/24 174 -154.53.193.0/24 37094 -154.53.194.0/24 174 -154.53.195.0/24 37094 -154.53.196.0/22 174 -154.53.200.0/23 37094 -154.53.202.0/24 174 -154.53.203.0/24 37094 -154.53.204.0/22 174 -154.53.208.0/20 174 -154.53.224.0/19 174 -154.54.0.0/17 174 -154.54.128.0/18 174 -154.54.192.0/20 174 -154.54.208.0/21 174 -154.54.216.0/22 174 -154.54.220.0/24 174 -154.54.221.0/24 200845 -154.54.222.0/23 174 -154.54.224.0/20 174 -154.54.240.0/21 174 -154.54.248.0/23 174 -154.54.250.0/24 26558 -154.54.251.0/24 174 -154.54.252.0/22 174 -154.55.0.0/16 174 -154.56.0.0/18 174 -154.56.64.0/21 203591 -154.56.72.0/21 174 -154.56.80.0/24 199383 -154.56.81.0/24 174 -154.56.82.0/23 174 -154.56.84.0/22 174 -154.56.88.0/24 201770 -154.56.89.0/24 174 -154.56.90.0/23 174 -154.56.92.0/22 174 -154.56.96.0/19 174 -154.56.128.0/22 174 -154.56.132.0/23 174 -154.56.134.0/23 201446 -154.56.136.0/21 34977 -154.56.144.0/22 174 -154.56.148.0/23 174 -154.56.150.0/23 200811 -154.56.152.0/21 174 -154.56.160.0/19 174 -154.56.192.0/24 57495 -154.56.193.0/24 174 -154.56.194.0/24 4546 -154.56.195.0/24 199536 -154.56.196.0/24 206988 -154.56.197.0/24 174 -154.56.198.0/23 174 -154.56.200.0/24 174 -154.56.201.0/24 24994 -154.56.202.0/23 174 -154.56.204.0/22 203591 -154.56.208.0/20 174 -154.56.224.0/19 174 -154.57.0.0/24 202042 -154.57.1.0/24 174 -154.57.2.0/23 174 -154.57.4.0/22 200736 -154.57.8.0/22 200736 -154.57.12.0/23 200736 -154.57.14.0/23 174 -154.57.16.0/24 208149 -154.57.17.0/24 174 -154.57.18.0/23 174 -154.57.20.0/22 174 -154.57.24.0/21 174 -154.57.32.0/19 174 -154.57.64.0/20 174 -154.57.80.0/22 35203 -154.57.84.0/22 174 -154.57.88.0/21 174 -154.57.96.0/19 174 -154.57.128.0/20 174 -154.57.144.0/22 174 -154.57.148.0/24 174 -154.57.149.0/24 199391 -154.57.150.0/24 174 -154.57.151.0/24 63541 -154.57.152.0/23 174 -154.57.154.0/24 174 -154.57.155.0/24 17330 -154.57.156.0/23 54183 -154.57.158.0/24 174 -154.57.159.0/24 52438 -154.57.160.0/19 174 -154.57.192.0/23 38742 -154.57.194.0/24 138322 -154.57.195.0/24 38742 -154.57.196.0/22 174 -154.57.200.0/22 174 -154.57.204.0/24 174 -154.57.205.0/24 132471 -154.57.206.0/24 174 -154.57.207.0/24 132471 -154.57.208.0/20 174 -154.57.224.0/19 48945 -154.58.0.0/21 174 -154.58.8.0/21 205827 -154.58.16.0/22 200165 -154.58.20.0/22 174 -154.58.24.0/24 174 -154.58.25.0/24 205827 -154.58.26.0/23 174 -154.58.28.0/22 174 -154.58.32.0/19 174 -154.58.64.0/18 174 -154.58.128.0/18 174 -154.58.192.0/22 202883 -154.58.196.0/22 174 -154.58.200.0/22 174 -154.58.204.0/22 24654 -154.58.208.0/23 174 -154.58.210.0/24 205289 -154.58.211.0/24 42220 -154.58.212.0/22 174 -154.58.216.0/24 202766 -154.58.217.0/24 206930 -154.58.218.0/23 202766 -154.58.220.0/22 202766 -154.58.224.0/19 174 -154.59.0.0/19 174 -154.59.32.0/23 174 -154.59.34.0/23 34173 -154.59.36.0/24 34173 -154.59.37.0/24 174 -154.59.38.0/23 174 -154.59.40.0/24 132471 -154.59.41.0/24 174 -154.59.42.0/23 132471 -154.59.44.0/22 132471 -154.59.48.0/20 174 -154.59.64.0/19 174 -154.59.96.0/20 174 -154.59.112.0/21 174 -154.59.120.0/24 174 -154.59.121.0/24 27385 -154.59.122.0/24 174 -154.59.123.0/24 54538 -154.59.124.0/23 4373 -154.59.126.0/24 54538 -154.59.127.0/24 199391 -154.59.128.0/22 174 -154.59.132.0/24 53893 -154.59.133.0/24 174 -154.59.134.0/24 46667 -154.59.135.0/24 174 -154.59.136.0/21 51048 -154.59.144.0/23 174 -154.59.146.0/24 43669 -154.59.147.0/24 208833 -154.59.148.0/22 174 -154.59.152.0/21 51048 -154.59.160.0/19 174 -154.59.192.0/24 201196 -154.59.193.0/24 174 -154.59.194.0/23 174 -154.59.196.0/22 174 -154.59.200.0/21 174 -154.59.208.0/20 174 -154.59.224.0/19 174 -154.60.0.0/18 174 -154.60.64.0/24 44308 -154.60.65.0/24 174 -154.60.66.0/23 174 -154.60.68.0/22 174 -154.60.72.0/21 174 -154.60.80.0/20 174 -154.60.96.0/23 39291 -154.60.98.0/23 174 -154.60.100.0/23 174 -154.60.102.0/24 174 -154.60.103.0/24 6220 -154.60.104.0/21 174 -154.60.112.0/24 53521 -154.60.113.0/24 174 -154.60.114.0/23 174 -154.60.116.0/22 174 -154.60.120.0/21 174 -154.60.128.0/24 35047 -154.60.129.0/24 174 -154.60.130.0/23 174 -154.60.132.0/22 174 -154.60.136.0/21 174 -154.60.144.0/20 174 -154.60.160.0/19 174 -154.60.192.0/19 174 -154.60.224.0/23 31577 -154.60.226.0/23 174 -154.60.228.0/22 174 -154.60.232.0/21 62352 -154.60.240.0/23 15364 -154.60.242.0/23 174 -154.60.244.0/23 174 -154.60.246.0/23 15364 -154.60.248.0/21 199312 -154.61.0.0/19 174 -154.61.32.0/24 203749 -154.61.33.0/24 174 -154.61.34.0/24 174 -154.61.35.0/24 51845 -154.61.36.0/22 199909 -154.61.40.0/22 174 -154.61.44.0/24 8149 -154.61.45.0/24 174 -154.61.46.0/23 174 -154.61.48.0/20 174 -154.61.64.0/24 174 -154.61.65.0/24 46864 -154.61.66.0/23 174 -154.61.68.0/24 174 -154.61.69.0/24 58678 -154.61.70.0/23 174 -154.61.72.0/24 58678 -154.61.73.0/24 174 -154.61.74.0/23 58678 -154.61.76.0/23 58678 -154.61.78.0/23 174 -154.61.80.0/24 58678 -154.61.81.0/24 174 -154.61.82.0/24 174 -154.61.83.0/24 199391 -154.61.84.0/24 27385 -154.61.85.0/24 174 -154.61.86.0/23 174 -154.61.88.0/22 174 -154.61.92.0/23 174 -154.61.94.0/24 10991 -154.61.95.0/24 174 -154.61.96.0/22 203499 -154.61.100.0/22 174 -154.61.104.0/22 202766 -154.61.108.0/22 174 -154.61.112.0/22 174 -154.61.116.0/24 206866 -154.61.117.0/24 174 -154.61.118.0/23 174 -154.61.120.0/21 174 -154.61.128.0/24 54882 -154.61.129.0/24 174 -154.61.130.0/24 174 -154.61.131.0/24 53985 -154.61.132.0/22 174 -154.61.136.0/22 174 -154.61.140.0/24 46754 -154.61.141.0/24 53985 -154.61.142.0/23 174 -154.61.144.0/24 30417 -154.61.145.0/24 174 -154.61.146.0/23 174 -154.61.148.0/22 174 -154.61.152.0/21 174 -154.61.160.0/19 174 -154.61.192.0/21 174 -154.61.200.0/22 174 -154.61.204.0/24 174 -154.61.205.0/24 205450 -154.61.206.0/23 205450 -154.61.208.0/20 174 -154.61.224.0/22 200845 -154.61.228.0/23 197077 -154.61.230.0/23 174 -154.61.232.0/21 174 -154.61.240.0/20 174 -154.62.0.0/19 174 -154.62.32.0/21 200811 -154.62.40.0/23 200811 -154.62.42.0/23 174 -154.62.44.0/22 174 -154.62.48.0/20 174 -154.62.64.0/18 174 -154.62.128.0/23 174 -154.62.130.0/24 33531 -154.62.131.0/24 174 -154.62.132.0/22 174 -154.62.136.0/21 174 -154.62.144.0/20 174 -154.62.160.0/19 174 -154.62.192.0/19 174 -154.62.224.0/23 174 -154.62.226.0/23 202883 -154.62.228.0/22 174 -154.62.232.0/23 202883 -154.62.234.0/23 202766 -154.62.236.0/22 203709 -154.62.240.0/21 203709 -154.62.248.0/24 207058 -154.62.249.0/24 206195 -154.62.250.0/23 202766 -154.62.252.0/22 203709 -154.63.0.0/23 202766 -154.63.2.0/24 174 -154.63.3.0/24 202766 -154.63.4.0/22 59631 -154.63.8.0/24 202766 -154.63.9.0/24 174 -154.63.10.0/24 174 -154.63.11.0/24 34471 -154.63.12.0/22 174 -154.63.16.0/21 174 -154.63.24.0/24 207763 -154.63.25.0/24 174 -154.63.26.0/23 174 -154.63.28.0/22 174 -154.63.32.0/23 174 -154.63.34.0/24 174 -154.63.35.0/24 55081 -154.63.36.0/22 174 -154.63.40.0/21 174 -154.63.48.0/20 174 -154.63.64.0/18 174 -154.63.128.0/17 174 -154.64.0.0/17 174 -154.64.128.0/18 174 -154.64.192.0/20 174 -154.64.208.0/22 21559 -154.64.212.0/23 21559 -154.64.214.0/24 21559 -154.64.215.0/24 397470 -154.64.216.0/24 21559 -154.64.217.0/24 63240 -154.64.218.0/23 21559 -154.64.220.0/23 21559 -154.64.222.0/24 21559 -154.64.223.0/24 396055 -154.64.224.0/19 174 -154.65.0.0/22 37627 -154.65.4.0/22 37629 -154.65.8.0/22 37622 -154.65.12.0/22 37628 -154.65.16.0/23 328303 -154.65.19.0/24 29614 -154.65.22.0/24 328303 -154.65.24.0/22 328279 -154.65.28.0/24 28683 -154.65.30.0/23 328098 -154.65.32.0/21 37649 -154.65.40.0/24 328013 -154.65.43.0/24 328013 -154.65.52.0/22 37634 -154.65.64.0/24 37523 -154.65.80.0/21 328155 -154.65.88.0/21 327909 -154.65.96.0/19 21859 -154.65.128.0/17 37081 -154.66.0.0/22 37637 -154.66.4.0/24 37637 -154.66.6.0/23 37637 -154.66.8.0/21 37637 -154.66.16.0/20 37637 -154.66.32.0/19 37637 -154.66.64.0/20 36985 -154.66.80.0/22 37603 -154.66.88.0/21 37640 -154.66.104.0/22 37645 -154.66.108.0/22 37642 -154.66.112.0/22 328400 -154.66.120.0/21 37098 -154.66.128.0/20 37090 -154.66.144.0/21 37658 -154.66.152.0/21 37564 -154.66.160.0/20 25543 -154.66.176.0/20 37497 -154.66.192.0/22 37439 -154.66.196.0/22 327979 -154.66.200.0/22 37650 -154.66.204.0/22 37652 -154.66.208.0/22 37653 -154.66.216.0/22 37027 -154.66.220.0/22 26130 -154.66.224.0/22 327714 -154.66.229.0/24 23889 -154.66.232.0/21 37669 -154.66.240.0/21 37662 -154.66.248.0/21 37417 -154.67.0.0/16 21351 -154.68.0.0/18 29571 -154.68.64.0/18 37654 -154.68.128.0/19 328104 -154.68.160.0/20 327804 -154.68.176.0/20 328366 -154.68.192.0/18 37661 -154.69.0.0/18 37457 -154.69.64.0/19 37457 -154.69.96.0/19 37251 -154.69.128.0/17 37457 -154.70.0.0/18 15399 -154.70.64.0/20 37690 -154.70.80.0/20 30982 -154.70.96.0/19 30992 -154.70.128.0/21 327715 -154.70.136.0/21 37519 -154.70.144.0/21 327716 -154.70.152.0/22 61317 -154.70.156.0/22 327717 -154.70.160.0/19 36902 -154.70.192.0/23 327722 -154.70.194.0/24 327722 -154.70.196.0/22 327720 -154.70.200.0/24 205897 -154.70.201.0/24 10929 -154.70.202.0/23 205897 -154.70.204.0/22 205897 -154.70.208.0/20 37353 -154.70.224.0/19 37239 -154.71.0.0/19 30999 -154.72.4.0/22 327726 -154.72.8.0/22 327733 -154.72.13.0/24 327725 -154.72.14.0/24 327725 -154.72.16.0/24 37410 -154.72.17.0/24 327727 -154.72.18.0/23 327727 -154.72.20.0/23 327728 -154.72.22.0/24 327728 -154.72.24.0/22 327742 -154.72.32.0/22 327721 -154.72.40.0/22 4809 -154.72.44.0/24 4134 -154.72.45.0/24 4809 -154.72.46.0/23 4809 -154.72.48.0/23 37662 -154.72.50.0/23 327732 -154.72.52.0/23 328442 -154.72.54.0/24 37154 -154.72.55.0/24 328442 -154.72.56.0/21 26422 -154.72.64.0/19 30844 -154.72.96.0/20 32653 -154.72.112.0/20 36924 -154.72.128.0/18 15964 -154.72.192.0/19 327724 -154.72.224.0/20 37693 -154.72.240.0/20 37100 -154.73.0.0/22 37618 -154.73.4.0/22 327761 -154.73.8.0/22 37682 -154.73.16.0/22 327737 -154.73.20.0/22 327738 -154.73.24.0/22 327764 -154.73.28.0/22 29286 -154.73.32.0/22 327767 -154.73.36.0/22 327757 -154.73.40.0/23 37545 -154.73.43.0/24 37545 -154.73.44.0/22 327768 -154.73.48.0/22 20180 -154.73.52.0/22 37284 -154.73.56.0/22 37512 -154.73.60.0/22 327769 -154.73.64.0/22 327706 -154.73.68.0/23 37122 -154.73.70.0/24 37122 -154.73.72.0/22 327751 -154.73.80.0/22 37184 -154.73.84.0/22 327776 -154.73.88.0/22 37406 -154.73.92.0/22 36947 -154.73.96.0/22 327772 -154.73.100.0/22 327746 -154.73.104.0/22 327799 -154.73.108.0/22 37284 -154.73.112.0/22 327756 -154.73.120.0/22 327909 -154.73.128.0/21 37284 -154.73.136.0/21 37549 -154.73.152.0/21 37675 -154.73.160.0/21 327802 -154.73.168.0/22 327819 -154.73.172.0/22 327809 -154.73.180.0/22 327808 -154.73.184.0/21 327693 -154.73.192.0/21 37546 -154.73.200.0/21 37475 -154.73.208.0/21 327754 -154.73.216.0/22 327817 -154.73.220.0/22 327805 -154.73.224.0/21 327745 -154.73.232.0/22 37185 -154.73.240.0/21 37333 -154.73.248.0/22 9009 -154.73.252.0/22 327840 -154.74.0.0/15 37035 -154.76.0.0/14 36926 -154.80.0.0/17 328170 -154.80.128.0/17 134548 -154.81.0.0/24 35916 -154.81.1.0/24 398083 -154.81.2.0/23 8100 -154.81.4.0/22 395800 -154.81.8.0/21 8100 -154.81.16.0/20 8100 -154.81.32.0/19 8100 -154.81.64.0/18 134548 -154.81.128.0/18 8100 -154.81.192.0/19 23338 -154.81.224.0/19 8100 -154.82.0.0/17 32708 -154.82.128.0/21 32708 -154.82.136.0/22 32708 -154.82.140.0/23 32708 -154.82.142.0/24 35916 -154.82.143.0/24 32708 -154.82.144.0/24 35916 -154.82.145.0/24 32708 -154.82.146.0/23 32708 -154.82.148.0/22 32708 -154.82.152.0/21 32708 -154.82.160.0/19 32708 -154.82.192.0/18 32708 -154.83.0.0/23 35916 -154.83.2.0/24 46844 -154.83.3.0/24 18229 -154.83.4.0/24 35916 -154.83.5.0/24 24000 -154.83.6.0/23 9009 -154.83.8.0/22 21859 -154.83.12.0/22 133115 -154.83.16.0/23 133115 -154.83.18.0/24 136743 -154.83.19.0/24 21859 -154.83.20.0/24 136743 -154.83.21.0/24 9009 -154.83.22.0/23 59117 -154.83.24.0/22 62587 -154.83.28.0/24 4809 -154.83.29.0/24 22769 -154.83.30.0/23 59117 -154.83.32.0/19 35916 -154.83.64.0/18 134548 -154.83.128.0/17 136800 -154.84.0.0/24 35916 -154.84.1.0/24 58073 -154.84.2.0/23 40065 -154.84.4.0/22 40065 -154.84.8.0/22 40065 -154.84.12.0/23 40065 -154.84.14.0/23 59117 -154.84.16.0/21 59117 -154.84.24.0/22 59117 -154.84.28.0/22 35487 -154.84.32.0/19 21859 -154.84.64.0/18 134548 -154.84.128.0/20 14333 -154.84.144.0/22 14333 -154.84.148.0/22 57731 -154.84.152.0/24 57731 -154.84.153.0/24 58738 -154.84.154.0/23 57731 -154.84.156.0/24 58738 -154.84.157.0/24 57731 -154.84.158.0/23 57731 -154.84.160.0/21 57731 -154.84.168.0/22 57731 -154.84.172.0/23 57731 -154.84.174.0/24 57731 -154.84.175.0/24 35916 -154.84.176.0/24 35916 -154.84.177.0/24 57731 -154.84.178.0/23 57731 -154.84.180.0/24 57731 -154.84.181.0/24 35916 -154.84.182.0/23 14333 -154.84.184.0/24 14333 -154.84.185.0/24 35916 -154.84.186.0/23 35916 -154.84.188.0/24 35916 -154.84.189.0/24 14333 -154.84.190.0/23 14333 -154.84.192.0/18 54600 -154.85.0.0/24 35916 -154.85.1.0/24 40676 -154.85.2.0/23 134708 -154.85.4.0/22 135596 -154.85.8.0/22 59117 -154.85.12.0/23 26484 -154.85.14.0/23 35916 -154.85.16.0/20 134548 -154.85.32.0/21 55967 -154.85.40.0/22 35916 -154.85.44.0/23 35916 -154.85.46.0/23 55967 -154.85.48.0/20 35916 -154.85.64.0/19 35916 -154.85.96.0/24 132615 -154.85.97.0/24 38197 -154.85.98.0/24 35916 -154.85.99.0/24 40676 -154.85.100.0/22 137443 -154.85.104.0/21 14333 -154.85.112.0/21 133201 -154.85.120.0/22 35916 -154.85.124.0/22 200612 -154.85.128.0/17 134548 -154.86.0.0/24 134548 -154.86.1.0/24 40065 -154.86.2.0/23 132883 -154.86.4.0/24 138570 -154.86.5.0/24 139340 -154.86.6.0/23 133115 -154.86.8.0/21 40065 -154.86.16.0/20 40065 -154.86.32.0/19 132839 -154.86.64.0/18 132839 -154.86.128.0/20 134548 -154.86.144.0/21 134548 -154.86.152.0/22 134548 -154.86.156.0/22 136897 -154.86.160.0/19 134548 -154.86.192.0/18 134548 -154.87.0.0/16 35916 -154.88.0.0/24 35916 -154.88.1.0/24 23338 -154.88.2.0/24 134687 -154.88.3.0/24 58879 -154.88.4.0/22 40065 -154.88.8.0/24 134548 -154.88.9.0/24 21859 -154.88.10.0/23 35916 -154.88.12.0/22 40065 -154.88.16.0/23 40065 -154.88.18.0/23 35916 -154.88.20.0/22 40065 -154.88.24.0/21 40065 -154.88.32.0/19 18013 -154.88.64.0/18 134548 -154.88.128.0/18 54600 -154.88.192.0/18 132839 -154.89.0.0/24 41095 -154.89.1.0/24 134687 -154.89.2.0/24 134705 -154.89.3.0/24 41095 -154.89.4.0/22 41095 -154.89.8.0/21 41095 -154.89.16.0/20 132839 -154.89.32.0/19 132839 -154.89.64.0/18 133201 -154.89.128.0/17 132839 -154.90.0.0/24 35916 -154.90.1.0/24 22769 -154.90.2.0/23 139086 -154.90.4.0/22 18013 -154.90.8.0/21 38235 -154.90.16.0/20 26484 -154.90.32.0/19 18013 -154.90.64.0/18 134548 -154.90.128.0/18 139086 -154.90.192.0/18 26484 -154.91.1.0/24 10103 -154.91.2.0/23 133115 -154.91.4.0/22 133201 -154.91.8.0/21 133201 -154.91.16.0/20 133201 -154.91.32.0/23 58879 -154.91.34.0/24 58879 -154.91.35.0/24 132813 -154.91.36.0/23 134705 -154.91.48.0/20 62468 -154.91.64.0/18 134705 -154.91.128.0/21 134548 -154.91.136.0/22 134548 -154.91.140.0/23 134548 -154.91.142.0/23 135067 -154.91.144.0/20 40065 -154.91.160.0/21 40065 -154.91.168.0/23 136038 -154.91.171.0/24 38197 -154.91.172.0/22 134705 -154.91.176.0/20 62468 -154.91.192.0/23 136933 -154.91.194.0/24 136933 -154.91.195.0/24 136950 -154.91.196.0/23 136933 -154.91.198.0/24 136933 -154.91.199.0/24 136970 -154.91.200.0/23 136970 -154.91.202.0/23 134705 -154.91.204.0/22 134705 -154.91.208.0/20 134705 -154.91.224.0/19 134705 -154.92.0.0/24 134548 -154.92.1.0/24 40065 -154.92.2.0/23 138392 -154.92.4.0/22 133448 -154.92.8.0/24 134548 -154.92.9.0/24 136955 -154.92.10.0/23 132513 -154.92.12.0/23 132513 -154.92.14.0/23 133115 -154.92.16.0/22 133115 -154.92.20.0/23 136970 -154.92.22.0/23 138152 -154.92.24.0/21 138392 -154.92.32.0/19 132839 -154.92.64.0/19 132839 -154.92.96.0/21 133201 -154.92.104.0/21 138392 -154.92.112.0/20 138392 -154.92.128.0/24 133201 -154.92.129.0/24 22769 -154.92.130.0/23 22769 -154.92.132.0/22 22769 -154.92.136.0/22 22769 -154.92.140.0/22 133201 -154.92.144.0/23 133201 -154.92.146.0/24 22769 -154.92.147.0/24 133201 -154.92.148.0/22 133201 -154.92.152.0/21 133201 -154.92.160.0/24 54600 -154.92.161.0/24 133201 -154.92.162.0/23 133201 -154.92.164.0/22 133201 -154.92.168.0/21 133201 -154.92.176.0/20 133201 -154.92.192.0/22 22769 -154.92.196.0/22 133201 -154.92.200.0/21 133201 -154.92.208.0/20 133201 -154.92.224.0/19 133201 -154.93.0.0/24 35916 -154.93.1.0/24 139358 -154.93.2.0/23 23338 -154.93.4.0/22 134687 -154.93.8.0/21 26484 -154.93.16.0/20 26484 -154.93.32.0/19 139086 -154.93.64.0/18 132839 -154.93.128.0/17 134548 -154.94.0.0/24 35916 -154.94.1.0/24 135596 -154.94.2.0/23 135596 -154.94.4.0/22 138152 -154.94.8.0/23 59117 -154.94.10.0/23 23338 -154.94.12.0/22 23338 -154.94.16.0/22 23338 -154.94.20.0/23 23338 -154.94.22.0/23 132883 -154.94.24.0/21 132883 -154.94.32.0/19 55933 -154.94.64.0/18 134548 -154.94.128.0/19 32708 -154.94.160.0/23 32708 -154.94.162.0/24 35916 -154.94.163.0/24 32708 -154.94.164.0/22 32708 -154.94.168.0/21 32708 -154.94.176.0/20 32708 -154.94.192.0/20 32708 -154.94.208.0/22 32708 -154.94.212.0/23 32708 -154.94.214.0/24 32708 -154.94.215.0/24 396076 -154.94.216.0/21 396076 -154.94.224.0/22 396076 -154.94.228.0/24 32708 -154.94.229.0/24 396076 -154.94.230.0/23 396076 -154.94.232.0/21 396076 -154.94.240.0/22 396076 -154.94.244.0/23 396076 -154.94.246.0/24 396076 -154.94.247.0/24 32708 -154.94.248.0/24 396076 -154.94.249.0/24 32708 -154.94.250.0/23 396076 -154.94.252.0/22 396076 -154.95.0.0/24 35916 -154.95.1.0/24 22769 -154.95.2.0/23 54600 -154.95.4.0/22 23338 -154.95.8.0/21 23338 -154.95.16.0/23 133441 -154.95.18.0/23 54600 -154.95.20.0/22 54600 -154.95.24.0/21 35916 -154.95.32.0/23 134708 -154.95.34.0/23 9009 -154.95.36.0/22 9009 -154.95.40.0/21 54600 -154.95.48.0/20 54600 -154.95.64.0/20 54600 -154.95.80.0/20 55933 -154.95.96.0/19 26484 -154.95.128.0/17 134548 -154.96.0.0/13 36998 -154.104.0.0/13 37693 -154.112.0.0/16 16058 -154.113.0.0/16 37282 -154.114.0.0/20 2018 -154.114.16.0/21 2018 -154.114.24.0/24 2018 -154.114.25.0/24 36982 -154.114.26.0/23 2018 -154.114.28.0/22 2018 -154.114.32.0/19 2018 -154.114.64.0/18 2018 -154.114.252.0/22 37623 -154.115.0.0/18 2018 -154.115.64.0/19 2018 -154.115.96.0/20 2018 -154.115.112.0/20 36982 -154.115.128.0/22 327809 -154.115.140.0/24 328159 -154.115.144.0/21 328231 -154.115.152.0/22 328231 -154.115.156.0/22 328242 -154.115.160.0/19 37061 -154.115.216.0/21 37473 -154.115.240.0/24 37473 -154.115.242.0/23 37473 -154.115.244.0/22 37473 -154.115.248.0/23 37473 -154.116.0.0/17 16058 -154.116.128.0/17 327806 -154.117.1.0/24 12684 -154.117.13.0/24 12684 -154.117.64.0/18 37714 -154.117.128.0/18 37358 -154.117.192.0/18 327799 -154.118.0.0/17 37340 -154.118.128.0/18 30985 -154.118.192.0/19 37645 -154.118.224.0/21 327795 -154.118.233.0/24 327970 -154.118.240.0/22 327828 -154.118.244.0/22 328366 -154.118.252.0/22 327824 -154.119.0.0/19 327798 -154.119.32.0/19 36953 -154.119.64.0/20 37314 -154.119.80.0/20 37123 -154.119.144.0/20 327745 -154.119.160.0/19 36968 -154.119.192.0/19 16058 -154.119.224.0/19 37236 -154.120.0.0/18 37074 -154.120.64.0/19 37340 -154.120.96.0/20 37340 -154.120.112.0/22 37340 -154.120.118.0/23 37340 -154.120.120.0/21 37340 -154.120.128.0/18 37037 -154.120.192.0/18 30844 -154.121.0.0/16 327712 -154.122.0.0/15 12455 -154.124.0.0/15 8346 -154.126.0.0/17 37054 -154.126.128.0/23 15964 -154.126.160.0/19 36905 -154.126.192.0/19 327750 -154.126.224.0/19 327692 -154.127.0.0/20 37576 -154.127.16.0/20 37126 -154.127.32.0/20 37292 -154.127.48.0/23 61317 -154.127.50.0/24 61317 -154.127.52.0/23 61317 -154.127.54.0/24 397423 -154.127.55.0/24 13768 -154.127.56.0/22 61317 -154.127.60.0/23 61317 -154.127.63.0/24 61317 -154.127.64.0/20 37284 -154.127.80.0/20 37385 -154.127.106.0/24 36879 -154.127.112.0/20 37358 -154.127.128.0/17 36907 -154.128.0.0/12 37069 -154.144.0.0/13 6713 -154.152.0.0/13 36926 -154.160.0.0/12 30986 -154.176.0.0/12 8452 -154.192.0.0/16 328170 -154.193.0.0/17 132839 -154.193.128.0/17 26484 -154.194.0.0/24 134548 -154.194.1.0/24 398152 -154.194.2.0/23 137443 -154.194.4.0/22 138392 -154.194.8.0/21 138392 -154.194.16.0/20 138392 -154.194.32.0/22 26484 -154.194.36.0/24 136743 -154.194.37.0/24 134548 -154.194.38.0/24 134548 -154.194.39.0/24 26484 -154.194.40.0/21 134548 -154.194.48.0/20 134548 -154.194.64.0/18 18013 -154.194.128.0/17 134705 -154.195.0.0/24 35916 -154.195.1.0/24 40676 -154.195.2.0/23 26484 -154.195.4.0/22 35916 -154.195.8.0/21 26484 -154.195.16.0/20 394281 -154.195.32.0/19 132839 -154.195.64.0/18 54600 -154.195.128.0/18 54600 -154.195.192.0/18 132839 -154.196.0.0/24 134548 -154.196.1.0/24 134687 -154.196.2.0/23 132839 -154.196.4.0/22 135357 -154.196.8.0/21 135357 -154.196.16.0/20 132839 -154.196.32.0/19 132839 -154.196.64.0/18 132839 -154.196.128.0/20 139646 -154.196.144.0/20 134548 -154.196.160.0/19 134548 -154.196.192.0/18 134548 -154.197.0.0/24 134548 -154.197.1.0/24 139340 -154.197.2.0/23 136933 -154.197.4.0/22 136933 -154.197.8.0/22 139297 -154.197.13.0/24 139297 -154.197.14.0/23 132513 -154.197.16.0/21 137941 -154.197.24.0/22 133199 -154.197.28.0/22 137990 -154.197.32.0/23 10103 -154.197.36.0/22 134687 -154.197.40.0/22 137443 -154.197.44.0/22 8100 -154.197.48.0/22 133199 -154.197.52.0/22 9381 -154.197.56.0/21 135357 -154.197.64.0/18 18013 -154.197.128.0/17 133201 -154.198.0.0/24 35916 -154.198.1.0/24 4809 -154.198.2.0/23 4809 -154.198.4.0/22 137184 -154.198.8.0/22 21859 -154.198.12.0/24 21859 -154.198.13.0/24 136116 -154.198.14.0/23 26484 -154.198.16.0/20 26484 -154.198.32.0/19 26484 -154.198.64.0/18 54600 -154.198.128.0/18 26484 -154.198.192.0/18 40065 -154.199.0.0/16 328170 -154.200.0.0/16 328170 -154.201.0.0/24 35916 -154.201.1.0/24 132839 -154.201.2.0/23 8100 -154.201.4.0/23 134548 -154.201.6.0/23 35916 -154.201.8.0/21 35916 -154.201.16.0/20 135357 -154.201.32.0/19 132839 -154.201.64.0/18 54600 -154.201.128.0/17 132839 -154.202.0.0/24 35916 -154.202.1.0/24 138678 -154.202.2.0/23 138156 -154.202.4.0/24 138156 -154.202.5.0/24 59134 -154.202.6.0/23 35916 -154.202.8.0/21 26484 -154.202.16.0/20 26484 -154.202.32.0/19 40065 -154.202.64.0/18 139086 -154.202.128.0/17 132839 -154.203.0.0/24 134548 -154.203.1.0/24 134687 -154.203.2.0/23 132839 -154.203.4.0/22 135357 -154.203.8.0/21 135357 -154.203.16.0/20 132839 -154.203.32.0/19 132839 -154.203.64.0/18 132839 -154.203.128.0/17 139646 -154.204.0.0/24 134548 -154.204.1.0/24 139340 -154.204.2.0/23 132819 -154.204.4.0/22 138570 -154.204.8.0/21 137443 -154.204.16.0/21 135357 -154.204.24.0/21 136800 -154.204.32.0/20 133199 -154.204.48.0/21 133199 -154.204.56.0/24 139659 -154.204.57.0/24 133199 -154.204.58.0/23 133199 -154.204.60.0/24 139659 -154.204.61.0/24 133199 -154.204.62.0/23 133199 -154.204.64.0/18 134705 -154.204.128.0/18 18013 -154.204.192.0/18 133201 -154.205.0.0/23 35916 -154.205.2.0/23 132839 -154.205.4.0/22 35916 -154.205.8.0/21 35916 -154.205.16.0/20 35916 -154.205.32.0/19 132839 -154.205.64.0/18 8100 -154.205.128.0/17 26484 -154.206.0.0/24 134548 -154.206.1.0/24 136743 -154.206.2.0/23 134548 -154.206.4.0/22 23930 -154.206.8.0/24 132209 -154.206.9.0/24 134548 -154.206.10.0/23 134548 -154.206.12.0/23 134548 -154.206.14.0/23 138392 -154.206.16.0/20 134705 -154.206.32.0/19 134705 -154.206.64.0/18 138392 -154.206.128.0/18 134705 -154.206.192.0/18 138392 -154.207.0.0/24 134548 -154.207.1.0/24 132839 -154.207.2.0/23 138392 -154.207.4.0/22 18013 -154.207.8.0/21 18013 -154.207.16.0/20 18013 -154.207.32.0/19 136800 -154.207.64.0/23 63888 -154.207.80.0/23 63888 -154.208.0.0/24 35916 -154.208.1.0/24 135300 -154.208.2.0/23 40065 -154.208.4.0/22 40065 -154.208.8.0/22 40065 -154.208.12.0/22 398083 -154.208.16.0/20 398083 -154.208.32.0/19 55933 -154.208.64.0/18 134548 -154.208.128.0/22 134548 -154.208.132.0/22 137443 -154.208.136.0/22 137443 -154.208.140.0/24 138570 -154.208.141.0/24 204333 -154.208.142.0/23 138570 -154.208.144.0/20 135357 -154.208.160.0/20 40065 -154.208.176.0/22 40065 -154.208.180.0/22 132839 -154.208.184.0/21 132839 -154.208.192.0/18 134548 -154.209.0.0/24 134548 -154.209.1.0/24 38478 -154.209.2.0/23 137443 -154.209.4.0/23 133115 -154.209.6.0/23 136933 -154.209.8.0/23 136950 -154.209.10.0/24 136950 -154.209.11.0/24 136933 -154.209.12.0/23 136950 -154.209.14.0/23 136933 -154.209.16.0/23 136950 -154.209.18.0/23 23338 -154.209.20.0/22 134687 -154.209.24.0/21 135357 -154.209.32.0/19 132839 -154.209.64.0/19 40065 -154.209.96.0/19 132839 -154.209.128.0/18 133201 -154.209.192.0/19 133201 -154.209.224.0/23 58879 -154.209.226.0/23 137443 -154.209.228.0/22 137443 -154.209.232.0/21 137443 -154.209.240.0/24 35916 -154.209.241.0/24 137443 -154.209.242.0/23 137443 -154.209.244.0/23 137443 -154.209.246.0/24 137443 -154.209.247.0/24 35916 -154.209.248.0/23 137443 -154.209.250.0/24 137443 -154.209.251.0/24 55994 -154.209.252.0/22 137443 -154.210.0.0/23 134548 -154.210.2.0/24 137443 -154.210.3.0/24 134548 -154.210.4.0/22 136897 -154.210.8.0/22 135330 -154.210.12.0/22 133441 -154.210.16.0/20 62468 -154.210.32.0/19 134705 -154.210.64.0/24 133201 -154.210.65.0/24 22769 -154.210.66.0/23 133201 -154.210.68.0/22 133201 -154.210.72.0/21 133201 -154.210.80.0/23 133201 -154.210.82.0/24 134548 -154.210.83.0/24 54600 -154.210.84.0/24 54600 -154.210.85.0/24 134548 -154.210.86.0/23 54600 -154.210.88.0/22 54600 -154.210.92.0/23 134548 -154.210.94.0/24 54600 -154.210.95.0/24 133201 -154.210.96.0/23 54600 -154.210.98.0/24 54600 -154.210.99.0/24 133201 -154.210.100.0/23 54600 -154.210.102.0/23 133201 -154.210.104.0/21 133201 -154.210.112.0/20 133201 -154.210.128.0/17 136800 -154.211.0.0/23 134548 -154.211.2.0/24 132839 -154.211.3.0/24 138456 -154.211.4.0/22 137443 -154.211.8.0/22 134687 -154.211.12.0/22 133115 -154.211.16.0/22 135357 -154.211.20.0/22 132813 -154.211.24.0/21 24482 -154.211.32.0/20 135357 -154.211.48.0/20 134705 -154.211.64.0/19 134705 -154.211.96.0/23 134705 -154.211.98.0/23 136743 -154.211.100.0/23 136743 -154.211.102.0/23 134705 -154.211.104.0/21 134705 -154.211.112.0/21 134705 -154.211.120.0/23 134705 -154.211.122.0/24 134705 -154.211.123.0/24 136743 -154.211.124.0/24 136743 -154.211.125.0/24 138392 -154.211.126.0/24 138392 -154.211.127.0/24 134705 -154.211.128.0/20 134705 -154.211.144.0/22 134705 -154.211.148.0/23 134705 -154.211.150.0/24 134705 -154.211.151.0/24 136743 -154.211.152.0/24 136743 -154.211.153.0/24 134705 -154.211.154.0/23 134705 -154.211.156.0/22 134705 -154.211.160.0/19 134705 -154.211.192.0/18 138392 -154.212.0.0/24 35916 -154.212.1.0/24 40065 -154.212.2.0/23 40065 -154.212.4.0/24 40065 -154.212.5.0/24 26484 -154.212.6.0/23 26484 -154.212.8.0/21 26484 -154.212.16.0/20 26484 -154.212.32.0/19 54600 -154.212.64.0/18 134548 -154.212.128.0/24 134548 -154.212.129.0/24 137443 -154.212.130.0/23 62468 -154.212.132.0/22 62468 -154.212.136.0/23 62468 -154.212.138.0/23 138392 -154.212.140.0/22 138392 -154.212.144.0/20 138392 -154.212.160.0/22 138392 -154.212.164.0/22 133201 -154.212.168.0/21 133201 -154.212.176.0/20 133201 -154.212.192.0/18 133201 -154.213.0.0/24 134548 -154.213.1.0/24 138456 -154.213.2.0/23 138456 -154.213.4.0/23 63673 -154.213.6.0/23 35916 -154.213.8.0/21 133201 -154.213.16.0/24 136933 -154.213.17.0/24 136950 -154.213.18.0/24 136950 -154.213.19.0/24 136933 -154.213.20.0/23 136933 -154.213.22.0/23 139471 -154.213.24.0/24 136933 -154.213.25.0/24 136970 -154.213.26.0/23 136933 -154.213.28.0/22 136933 -154.213.32.0/19 132839 -154.213.64.0/20 62468 -154.213.80.0/20 133201 -154.213.96.0/19 132839 -154.213.128.0/19 132839 -154.213.160.0/19 22769 -154.213.192.0/18 132839 -154.214.0.0/24 35916 -154.214.1.0/24 134176 -154.214.2.0/23 139056 -154.214.4.0/22 40065 -154.214.8.0/21 40065 -154.214.16.0/20 26484 -154.214.32.0/19 54600 -154.214.64.0/18 134548 -154.214.128.0/18 134548 -154.214.192.0/19 132839 -154.214.224.0/20 134705 -154.214.240.0/21 134705 -154.214.248.0/22 134705 -154.214.252.0/23 134705 -154.214.254.0/24 134705 -154.214.255.0/24 136743 -154.215.0.0/23 134548 -154.215.2.0/23 62468 -154.215.4.0/22 62468 -154.215.8.0/22 62468 -154.215.12.0/22 136743 -154.215.16.0/20 134705 -154.215.32.0/19 132839 -154.215.64.0/18 132839 -154.215.128.0/17 134548 -154.216.0.0/24 134548 -154.216.1.0/24 38478 -154.216.2.0/23 55720 -154.216.4.0/22 133201 -154.216.8.0/21 133201 -154.216.16.0/20 135357 -154.216.32.0/19 132839 -154.216.64.0/18 132839 -154.216.128.0/18 134705 -154.216.192.0/19 134705 -154.216.224.0/19 132839 -154.217.0.0/16 35916 -154.218.0.0/24 134548 -154.218.1.0/24 38478 -154.218.2.0/23 138995 -154.218.4.0/23 138995 -154.218.6.0/24 35916 -154.218.7.0/24 137443 -154.218.8.0/24 137443 -154.218.9.0/24 58879 -154.218.10.0/23 137443 -154.218.12.0/22 137443 -154.218.16.0/21 134705 -154.218.24.0/22 134705 -154.218.28.0/24 134705 -154.218.29.0/24 136743 -154.218.30.0/23 134705 -154.218.32.0/19 132839 -154.218.64.0/18 134548 -154.218.128.0/18 62468 -154.218.192.0/18 132839 -154.219.0.0/24 35916 -154.219.1.0/24 23338 -154.219.2.0/23 59117 -154.219.4.0/23 134520 -154.219.6.0/23 139086 -154.219.8.0/21 26484 -154.219.16.0/20 26484 -154.219.32.0/19 139086 -154.219.64.0/18 134548 -154.219.128.0/18 134548 -154.219.192.0/18 54600 -154.220.0.0/24 134548 -154.220.1.0/24 131603 -154.220.2.0/24 55720 -154.220.3.0/24 137443 -154.220.4.0/22 133201 -154.220.8.0/21 133201 -154.220.16.0/20 133201 -154.220.32.0/19 132839 -154.220.64.0/18 133201 -154.220.128.0/18 132839 -154.220.192.0/19 132839 -154.220.224.0/19 138392 -154.221.0.0/24 134548 -154.221.1.0/24 24000 -154.221.2.0/23 62468 -154.221.4.0/22 62468 -154.221.8.0/21 62468 -154.221.16.0/20 133115 -154.221.32.0/19 132839 -154.221.64.0/18 134548 -154.221.128.0/18 134548 -154.221.192.0/18 132839 -154.222.0.0/24 41095 -154.222.1.0/24 139659 -154.222.2.0/23 133778 -154.222.4.0/22 41095 -154.222.8.0/21 134705 -154.222.16.0/20 40065 -154.222.32.0/22 136800 -154.222.36.0/22 134705 -154.222.40.0/21 134705 -154.222.48.0/20 133201 -154.222.64.0/18 136800 -154.222.128.0/18 134705 -154.222.192.0/19 134705 -154.222.224.0/20 62468 -154.222.240.0/20 134705 -154.223.1.0/24 133448 -154.223.2.0/23 133448 -154.223.4.0/24 133448 -154.223.5.0/24 134705 -154.223.6.0/23 134705 -154.223.8.0/21 134705 -154.223.16.0/20 134705 -154.223.32.0/22 136743 -154.223.36.0/23 26484 -154.223.38.0/23 136743 -154.223.40.0/22 136743 -154.223.45.0/24 136743 -154.223.47.0/24 136743 -154.223.48.0/22 26484 -154.223.52.0/23 26484 -154.223.55.0/24 26484 -154.223.56.0/22 136743 -154.223.60.0/24 134705 -154.223.61.0/24 136743 -154.223.62.0/24 136743 -154.223.63.0/24 134705 -154.223.64.0/18 134705 -154.223.128.0/19 137443 -154.223.160.0/20 137443 -154.223.176.0/22 137443 -154.223.180.0/23 137443 -154.223.182.0/24 58879 -154.223.183.0/24 137443 -154.223.184.0/23 58879 -154.223.186.0/24 58879 -154.223.188.0/23 137443 -154.223.190.0/24 137443 -154.223.192.0/18 134705 -154.224.0.0/13 37075 -154.232.0.0/14 36974 -154.236.0.0/19 36992 -154.236.64.0/20 36992 -154.236.80.0/22 36992 -154.236.84.0/23 36992 -154.236.87.0/24 36992 -154.236.88.0/21 36992 -154.236.96.0/19 36992 -154.236.128.0/19 36992 -154.236.160.0/24 36992 -154.236.162.0/23 36992 -154.236.164.0/22 36992 -154.236.168.0/21 36992 -154.236.176.0/22 36992 -154.236.180.0/23 36992 -154.236.182.0/24 36992 -154.237.0.0/16 36992 -154.238.0.0/16 36992 -154.240.0.0/12 36947 -155.0.0.0/16 37532 -155.2.0.0/16 2386 -155.3.0.0/16 21853 -155.4.0.0/16 8473 -155.5.0.0/16 1637 -155.6.0.0/16 1637 -155.7.0.0/17 721 -155.7.128.0/20 721 -155.7.144.0/20 27064 -155.7.160.0/20 721 -155.7.176.0/22 721 -155.7.180.0/24 27066 -155.7.181.0/24 721 -155.7.182.0/23 721 -155.7.184.0/23 721 -155.7.186.0/24 27065 -155.7.187.0/24 721 -155.7.188.0/22 721 -155.7.192.0/19 273 -155.7.224.0/19 721 -155.8.0.0/17 1491 -155.8.128.0/18 1491 -155.8.192.0/19 1491 -155.8.224.0/20 1491 -155.8.240.0/21 1491 -155.8.248.0/22 1491 -155.8.252.0/24 1541 -155.8.253.0/24 1491 -155.8.254.0/23 1491 -155.9.0.0/18 1506 -155.9.64.0/20 1506 -155.9.80.0/24 1541 -155.9.81.0/24 1506 -155.9.82.0/23 1506 -155.9.84.0/22 1506 -155.9.88.0/21 1506 -155.9.96.0/19 1506 -155.9.128.0/17 1506 -155.10.0.0/16 852 -155.12.0.0/17 37084 -155.12.128.0/24 328011 -155.12.224.0/19 328184 -155.13.0.0/16 7127 -155.14.0.0/17 40155 -155.14.128.0/21 40155 -155.14.136.0/23 40155 -155.14.138.0/24 40155 -155.14.139.0/24 3561 -155.14.140.0/24 3561 -155.14.141.0/24 40155 -155.14.142.0/23 40155 -155.14.144.0/20 40155 -155.14.160.0/22 40155 -155.14.164.0/23 40155 -155.14.166.0/24 51964 -155.14.167.0/24 40155 -155.14.168.0/21 40155 -155.14.176.0/20 40155 -155.14.192.0/23 40155 -155.14.194.0/24 40155 -155.14.195.0/24 51964 -155.14.196.0/22 40155 -155.14.200.0/21 40155 -155.14.208.0/20 40155 -155.14.224.0/19 40155 -155.19.0.0/21 1541 -155.19.8.0/22 1590 -155.19.14.0/23 27064 -155.19.35.0/24 1541 -155.19.36.0/22 27064 -155.19.42.0/24 1463 -155.19.44.0/24 1541 -155.19.46.0/24 1541 -155.19.47.0/24 1599 -155.19.56.0/21 1590 -155.19.64.0/20 367 -155.19.80.0/21 6040 -155.19.88.0/24 6040 -155.19.89.0/24 367 -155.19.90.0/23 367 -155.19.92.0/22 367 -155.19.96.0/23 367 -155.19.98.0/23 6040 -155.19.100.0/22 6040 -155.19.104.0/23 367 -155.19.106.0/24 367 -155.19.107.0/24 6040 -155.19.108.0/23 6040 -155.19.110.0/23 367 -155.19.112.0/23 6040 -155.19.114.0/23 367 -155.19.116.0/23 6040 -155.19.118.0/23 367 -155.19.120.0/24 367 -155.19.121.0/24 6040 -155.19.122.0/23 367 -155.19.124.0/24 6040 -155.19.125.0/24 367 -155.19.126.0/23 367 -155.19.144.0/21 1541 -155.19.154.0/24 1541 -155.19.160.0/19 1464 -155.19.192.0/18 1494 -155.20.79.0/24 1541 -155.20.89.0/24 1501 -155.20.132.0/22 1541 -155.20.136.0/22 1489 -155.20.152.0/22 1600 -155.20.156.0/22 1541 -155.20.182.0/23 1541 -155.20.184.0/24 1502 -155.20.192.0/24 7046 -155.20.194.0/24 7046 -155.20.196.0/23 7046 -155.20.216.0/23 1502 -155.20.218.0/24 1501 -155.20.245.0/24 1541 -155.21.148.0/23 367 -155.21.164.0/23 367 -155.21.170.0/23 367 -155.21.172.0/23 367 -155.21.186.0/23 1541 -155.21.192.0/19 721 -155.22.0.0/17 1541 -155.22.160.0/21 1541 -155.24.0.0/16 1556 -155.26.63.0/24 1501 -155.26.72.0/24 1501 -155.27.62.0/23 27064 -155.27.64.0/24 745 -155.27.66.0/24 745 -155.27.75.0/24 745 -155.27.79.0/24 745 -155.27.82.0/23 745 -155.27.84.0/22 745 -155.27.88.0/21 745 -155.27.96.0/20 745 -155.27.112.0/23 745 -155.27.116.0/24 745 -155.27.118.0/23 745 -155.27.120.0/23 745 -155.27.122.0/24 745 -155.27.127.0/24 745 -155.27.128.0/22 745 -155.27.132.0/23 745 -155.27.138.0/23 745 -155.27.140.0/22 745 -155.29.0.0/20 1498 -155.29.16.0/20 1503 -155.29.32.0/22 27064 -155.29.40.0/22 1541 -155.29.44.0/23 1541 -155.29.48.0/23 721 -155.29.56.0/21 1504 -155.29.67.0/24 1541 -155.29.68.0/22 1479 -155.29.72.0/23 1541 -155.29.74.0/24 1541 -155.29.76.0/22 1541 -155.29.80.0/22 1541 -155.29.88.0/22 1541 -155.29.92.0/24 1526 -155.29.98.0/23 1504 -155.29.105.0/24 1541 -155.29.106.0/23 1541 -155.29.108.0/23 1541 -155.29.110.0/24 1541 -155.29.112.0/22 1541 -155.29.116.0/24 1531 -155.29.117.0/24 1475 -155.29.118.0/23 1453 -155.29.120.0/23 1541 -155.29.122.0/24 1541 -155.29.124.0/23 367 -155.29.126.0/23 1504 -155.29.128.0/21 1541 -155.29.136.0/22 1541 -155.29.140.0/24 367 -155.29.142.0/24 1525 -155.29.143.0/24 1504 -155.29.145.0/24 1525 -155.29.149.0/24 367 -155.29.151.0/24 367 -155.29.152.0/21 252 -155.29.165.0/24 1541 -155.29.166.0/23 721 -155.29.176.0/20 1590 -155.29.196.0/24 1541 -155.29.197.0/24 367 -155.29.198.0/23 367 -155.29.200.0/21 1541 -155.29.208.0/23 1502 -155.29.210.0/24 1502 -155.29.212.0/24 1502 -155.29.214.0/23 1502 -155.29.220.0/24 1501 -155.29.221.0/24 1555 -155.29.223.0/24 1599 -155.29.239.0/24 1541 -155.29.240.0/21 1504 -155.29.250.0/24 1541 -155.30.120.0/24 1502 -155.30.122.0/23 1502 -155.30.160.0/22 5953 -155.30.164.0/23 5953 -155.30.191.0/24 1501 -155.31.0.0/16 11809 -155.32.0.0/16 24324 -155.33.0.0/17 156 -155.33.128.0/18 156 -155.33.192.0/19 156 -155.33.224.0/20 156 -155.33.240.0/21 156 -155.33.248.0/22 156 -155.33.252.0/24 156 -155.33.253.0/24 3549 -155.33.254.0/23 156 -155.37.0.0/17 22742 -155.37.142.0/24 22742 -155.37.145.0/24 22742 -155.37.149.0/24 22742 -155.37.155.0/24 22742 -155.37.201.0/24 22742 -155.37.202.0/23 22742 -155.37.204.0/23 22742 -155.37.206.0/24 22742 -155.37.208.0/23 22742 -155.37.213.0/24 22742 -155.37.216.0/23 22742 -155.37.240.0/20 22742 -155.38.0.0/23 19744 -155.38.2.0/24 19744 -155.38.3.0/24 17054 -155.38.4.0/22 19744 -155.38.8.0/21 19744 -155.38.16.0/21 19744 -155.38.24.0/23 19744 -155.38.26.0/23 17054 -155.38.28.0/24 17054 -155.38.29.0/24 19744 -155.38.30.0/23 19744 -155.38.32.0/19 19744 -155.38.64.0/18 19744 -155.38.128.0/23 19744 -155.39.36.0/23 7423 -155.39.64.0/20 7423 -155.39.88.0/23 7423 -155.39.164.0/22 7423 -155.39.181.0/24 7423 -155.41.0.0/16 111 -155.42.0.0/16 54257 -155.43.0.0/16 25691 -155.45.0.0/17 8132 -155.45.128.0/24 133136 -155.45.130.0/24 9890 -155.45.160.0/19 21150 -155.45.208.0/21 21150 -155.45.240.0/21 21150 -155.45.249.0/24 8132 -155.45.255.0/24 21150 -155.46.17.0/24 10457 -155.46.20.0/23 16050 -155.46.24.0/22 16050 -155.46.28.0/23 10457 -155.46.30.0/24 10457 -155.46.32.0/22 24012 -155.46.36.0/24 16050 -155.46.38.0/24 16050 -155.46.39.0/24 24012 -155.46.129.0/24 7018 -155.46.130.0/24 21931 -155.46.131.0/24 23109 -155.46.132.0/23 52925 -155.46.134.0/24 16050 -155.46.135.0/24 14618 -155.46.136.0/21 4583 -155.46.144.0/21 4583 -155.47.0.0/16 32125 -155.48.1.0/24 16481 -155.48.2.0/24 16481 -155.48.4.0/22 16481 -155.48.8.0/21 16481 -155.48.16.0/20 16481 -155.48.32.0/19 16481 -155.48.64.0/18 16481 -155.48.128.0/17 16481 -155.49.0.0/21 1294 -155.49.8.0/21 26746 -155.49.16.0/20 26746 -155.49.32.0/19 26746 -155.49.64.0/18 26746 -155.49.128.0/18 26746 -155.49.192.0/19 26746 -155.49.224.0/20 26746 -155.49.240.0/21 26746 -155.50.0.0/16 5647 -155.52.0.0/16 40831 -155.53.0.0/16 158 -155.54.0.0/16 766 -155.55.0.0/16 2116 -155.56.0.0/17 12510 -155.56.128.0/23 35039 -155.56.130.0/23 12510 -155.56.132.0/22 12510 -155.56.136.0/21 12510 -155.56.144.0/20 12510 -155.56.160.0/19 12510 -155.56.192.0/18 12510 -155.57.0.0/16 26940 -155.58.2.0/23 23366 -155.58.6.0/24 23366 -155.58.11.0/24 23366 -155.58.12.0/22 23366 -155.58.16.0/21 23366 -155.58.34.0/23 23366 -155.58.36.0/23 23366 -155.58.38.0/24 23366 -155.58.86.0/23 18818 -155.58.144.0/21 23366 -155.58.176.0/21 23366 -155.58.184.0/22 23366 -155.58.188.0/23 23366 -155.58.194.0/23 23366 -155.58.204.0/24 23366 -155.58.210.0/23 23366 -155.58.212.0/23 23366 -155.58.214.0/24 23366 -155.58.251.0/24 23366 -155.58.254.0/23 23366 -155.59.253.0/24 10022 -155.60.0.0/16 10235 -155.62.0.0/16 8075 -155.63.0.0/24 32908 -155.63.4.0/24 32908 -155.63.8.0/24 32908 -155.63.16.0/24 32908 -155.63.36.0/24 32908 -155.63.64.0/22 18841 -155.63.68.0/23 18841 -155.63.70.0/24 18841 -155.63.71.0/24 33651 -155.63.72.0/21 18841 -155.63.84.0/24 18841 -155.63.132.0/24 18828 -155.63.136.0/24 18828 -155.63.158.0/23 18828 -155.63.160.0/24 18828 -155.63.194.0/24 22773 -155.63.196.0/24 7018 -155.63.200.0/24 133145 -155.63.206.0/23 812 -155.63.208.0/24 13649 -155.63.209.0/24 21971 -155.63.210.0/24 21971 -155.63.213.0/24 21971 -155.63.214.0/24 21971 -155.63.215.0/24 13649 -155.63.216.0/24 21971 -155.63.217.0/24 16509 -155.63.219.0/24 21971 -155.63.220.0/23 21971 -155.63.222.0/24 21971 -155.63.223.0/24 13649 -155.63.240.0/22 56093 -155.64.16.0/23 16733 -155.64.23.0/24 16733 -155.64.24.0/24 16733 -155.64.38.0/24 16733 -155.64.40.0/24 16733 -155.64.49.0/24 16733 -155.64.56.0/24 16733 -155.64.63.0/24 16733 -155.64.105.0/24 16733 -155.64.138.0/24 16733 -155.65.0.0/17 36291 -155.65.128.0/18 36291 -155.65.192.0/19 36291 -155.65.224.0/20 36291 -155.65.240.0/21 36291 -155.65.248.0/23 36291 -155.65.250.0/24 36291 -155.65.251.0/24 7015 -155.65.252.0/22 36291 -155.68.0.0/16 31746 -155.69.0.0/18 9419 -155.69.64.0/19 9247 -155.69.96.0/23 9247 -155.69.98.0/23 9419 -155.69.100.0/22 9419 -155.69.104.0/21 9419 -155.69.112.0/20 9419 -155.69.128.0/17 9419 -155.70.16.0/20 4015 -155.70.32.0/20 7359 -155.70.48.0/20 4015 -155.70.64.0/20 4015 -155.70.96.0/19 7359 -155.70.128.0/19 209 -155.72.8.0/23 394691 -155.72.28.0/22 54205 -155.72.32.0/24 393364 -155.72.36.0/24 394692 -155.73.100.0/24 6848 -155.74.0.0/17 4010 -155.74.128.0/18 4010 -155.74.192.0/19 4010 -155.74.224.0/20 4010 -155.74.240.0/22 4010 -155.74.244.0/24 4010 -155.74.245.0/24 1536 -155.74.246.0/24 1536 -155.74.247.0/24 4010 -155.74.248.0/24 1536 -155.74.249.0/24 4010 -155.74.250.0/24 4010 -155.74.251.0/24 1536 -155.74.252.0/24 4010 -155.74.253.0/24 1536 -155.74.254.0/23 1536 -155.75.0.0/17 4010 -155.75.128.0/20 4010 -155.75.144.0/21 4010 -155.75.152.0/22 4010 -155.75.156.0/23 4010 -155.75.158.0/24 4010 -155.75.159.0/24 1536 -155.75.160.0/19 4010 -155.75.192.0/18 4010 -155.76.0.0/14 4010 -155.80.0.0/14 4010 -155.84.0.0/16 4010 -155.85.0.0/19 4010 -155.85.32.0/21 4010 -155.85.40.0/22 4010 -155.85.46.0/24 154 -155.85.47.0/24 4010 -155.85.48.0/20 4010 -155.85.64.0/18 4010 -155.85.128.0/19 4010 -155.85.160.0/24 670 -155.85.161.0/24 672 -155.85.162.0/24 671 -155.85.163.0/24 615 -155.85.164.0/24 673 -155.85.166.0/24 673 -155.85.168.0/21 4010 -155.85.176.0/20 4010 -155.85.192.0/18 4010 -155.86.0.0/15 4010 -155.88.0.0/17 4010 -155.88.128.0/19 4010 -155.88.160.0/20 4010 -155.88.176.0/23 367 -155.88.178.0/24 367 -155.88.179.0/24 4010 -155.88.180.0/22 4010 -155.88.184.0/22 4010 -155.88.188.0/23 4010 -155.88.190.0/24 4010 -155.88.191.0/24 367 -155.88.192.0/18 4010 -155.89.0.0/17 37081 -155.91.0.0/18 7054 -155.91.64.0/21 7054 -155.91.72.0/23 7054 -155.91.74.0/24 7054 -155.91.75.0/24 6713 -155.91.76.0/22 7054 -155.91.80.0/20 7054 -155.91.96.0/19 7054 -155.91.128.0/17 7054 -155.92.0.0/16 11500 -155.93.100.0/22 16284 -155.93.104.0/21 16284 -155.93.112.0/20 16284 -155.93.128.0/17 37680 -155.94.0.0/21 17003 -155.94.14.0/24 17003 -155.94.16.0/21 17003 -155.94.29.0/24 17003 -155.94.32.0/22 2830 -155.94.48.0/22 17003 -155.94.57.0/24 703 -155.94.58.0/24 17003 -155.94.64.0/19 19531 -155.94.96.0/20 19531 -155.94.112.0/21 22023 -155.94.120.0/22 22023 -155.94.124.0/23 22023 -155.94.126.0/24 22023 -155.94.127.0/24 394600 -155.94.128.0/22 8100 -155.94.132.0/24 398079 -155.94.133.0/24 8100 -155.94.134.0/23 8100 -155.94.136.0/21 8100 -155.94.144.0/21 8100 -155.94.152.0/24 8100 -155.94.153.0/24 54466 -155.94.154.0/23 8100 -155.94.156.0/22 8100 -155.94.160.0/19 8100 -155.94.192.0/18 8100 -155.95.80.0/24 18456 -155.95.84.0/22 18456 -155.95.88.0/24 18456 -155.95.90.0/24 1236 -155.95.95.0/24 1236 -155.95.96.0/22 1236 -155.97.0.0/16 17055 -155.98.0.0/16 17055 -155.99.0.0/18 17055 -155.99.64.0/20 210 -155.99.80.0/20 17055 -155.99.96.0/19 17055 -155.99.128.0/17 17055 -155.100.0.0/15 17055 -155.104.0.0/16 1906 -155.105.0.0/16 559 -155.106.0.0/21 7018 -155.106.128.0/21 7018 -155.107.40.0/24 26685 -155.107.49.0/24 26685 -155.107.50.0/24 26685 -155.107.129.0/24 26685 -155.107.200.0/24 26685 -155.108.248.0/23 33070 -155.109.0.0/16 10273 -155.110.160.0/24 33372 -155.110.168.0/21 33372 -155.110.220.0/23 33372 -155.111.0.0/17 11003 -155.111.128.0/23 11003 -155.111.130.0/23 61153 -155.111.132.0/23 61153 -155.111.134.0/23 11003 -155.111.136.0/23 61153 -155.111.138.0/24 61153 -155.111.139.0/24 11003 -155.111.140.0/23 61153 -155.111.142.0/24 11003 -155.111.143.0/24 61153 -155.111.144.0/21 61153 -155.111.152.0/23 11003 -155.111.154.0/23 61153 -155.111.156.0/22 11003 -155.111.160.0/23 61153 -155.111.162.0/23 11003 -155.111.164.0/24 11003 -155.111.165.0/24 61153 -155.111.166.0/24 61153 -155.111.167.0/24 11003 -155.111.168.0/24 61153 -155.111.169.0/24 11003 -155.111.170.0/24 11003 -155.111.171.0/24 61153 -155.111.172.0/23 11003 -155.111.174.0/24 61153 -155.111.175.0/24 11003 -155.111.176.0/24 61153 -155.111.177.0/24 11003 -155.111.178.0/24 61153 -155.111.179.0/24 11003 -155.111.180.0/24 61153 -155.111.181.0/24 11003 -155.111.182.0/24 61153 -155.111.183.0/24 11003 -155.111.184.0/24 61153 -155.111.185.0/24 11003 -155.111.186.0/24 61153 -155.111.187.0/24 11003 -155.111.188.0/24 61153 -155.111.189.0/24 11003 -155.111.190.0/24 61153 -155.111.191.0/24 11003 -155.111.192.0/24 11003 -155.111.193.0/24 61153 -155.111.194.0/23 61153 -155.111.196.0/22 61153 -155.111.200.0/24 11003 -155.111.201.0/24 61153 -155.111.202.0/23 61153 -155.111.204.0/24 61153 -155.111.205.0/24 11003 -155.111.206.0/23 11003 -155.111.208.0/20 11003 -155.111.224.0/20 11003 -155.111.240.0/24 11003 -155.111.241.0/24 61153 -155.111.242.0/23 11003 -155.111.244.0/22 11003 -155.111.248.0/21 11003 -155.112.0.0/16 11003 -155.114.0.0/15 11003 -155.118.0.0/16 11003 -155.122.0.0/16 11003 -155.124.0.0/17 11003 -155.124.128.0/18 11003 -155.124.192.0/19 11003 -155.124.224.0/20 11003 -155.124.240.0/22 11003 -155.124.244.0/23 35163 -155.124.246.0/23 11003 -155.124.248.0/21 11003 -155.125.0.0/20 11003 -155.125.16.0/21 11003 -155.125.24.0/23 35163 -155.125.26.0/23 11003 -155.125.28.0/22 11003 -155.125.32.0/19 11003 -155.125.64.0/18 11003 -155.125.128.0/17 11003 -155.126.0.0/21 11003 -155.126.8.0/23 35163 -155.126.10.0/23 11003 -155.126.12.0/22 11003 -155.126.16.0/20 11003 -155.126.32.0/19 11003 -155.126.64.0/18 11003 -155.126.128.0/19 11003 -155.126.160.0/20 11003 -155.126.176.0/23 35163 -155.126.178.0/23 11003 -155.126.180.0/22 11003 -155.126.184.0/21 11003 -155.126.192.0/18 11003 -155.127.0.0/16 11003 -155.128.121.0/24 2159 -155.128.142.0/23 15442 -155.129.0.0/16 11003 -155.130.0.0/22 23005 -155.130.4.0/23 23005 -155.130.6.0/24 27646 -155.130.7.0/24 23005 -155.130.8.0/22 23005 -155.130.12.0/23 23005 -155.130.14.0/24 23005 -155.130.15.0/24 32969 -155.130.16.0/20 23005 -155.130.32.0/19 23005 -155.130.64.0/18 23005 -155.130.128.0/21 23005 -155.130.136.0/24 62873 -155.130.137.0/24 23005 -155.130.138.0/23 23005 -155.130.140.0/24 23005 -155.130.141.0/24 397494 -155.130.142.0/23 23005 -155.130.144.0/20 23005 -155.130.160.0/19 23005 -155.130.192.0/21 23005 -155.130.200.0/22 22911 -155.130.204.0/22 23005 -155.130.208.0/20 23005 -155.130.224.0/19 23005 -155.131.0.0/16 8698 -155.133.0.0/24 206052 -155.133.1.0/24 204801 -155.133.2.0/24 61056 -155.133.3.0/24 60695 -155.133.4.0/23 203941 -155.133.6.0/24 34844 -155.133.7.0/24 201068 -155.133.8.0/23 199319 -155.133.10.0/24 203977 -155.133.11.0/24 206052 -155.133.12.0/24 200338 -155.133.14.0/24 210256 -155.133.15.0/24 43171 -155.133.16.0/24 200642 -155.133.17.0/24 50606 -155.133.18.0/23 201122 -155.133.20.0/24 50606 -155.133.21.0/24 205879 -155.133.22.0/23 43171 -155.133.24.0/23 52106 -155.133.26.0/23 56905 -155.133.28.0/24 209597 -155.133.29.0/24 200577 -155.133.30.0/23 47252 -155.133.32.0/24 60594 -155.133.33.0/24 60695 -155.133.34.0/24 200672 -155.133.35.0/24 61056 -155.133.36.0/23 47252 -155.133.38.0/24 3169 -155.133.39.0/24 47252 -155.133.40.0/21 203667 -155.133.48.0/21 200594 -155.133.56.0/22 198317 -155.133.60.0/24 204392 -155.133.61.0/24 203828 -155.133.62.0/23 203828 -155.133.65.0/24 203364 -155.133.66.0/23 197418 -155.133.68.0/24 203551 -155.133.69.0/24 203475 -155.133.71.0/24 203505 -155.133.72.0/24 202450 -155.133.73.0/24 202465 -155.133.74.0/24 202472 -155.133.75.0/24 201027 -155.133.76.0/23 198696 -155.133.79.0/24 205713 -155.133.80.0/23 197295 -155.133.82.0/24 203985 -155.133.83.0/24 199250 -155.133.84.0/24 200930 -155.133.85.0/24 198442 -155.133.86.0/24 202607 -155.133.87.0/24 50606 -155.133.88.0/24 50095 -155.133.89.0/24 203985 -155.133.90.0/23 200668 -155.133.92.0/22 199319 -155.133.96.0/21 201427 -155.133.112.0/21 197592 -155.133.120.0/24 201307 -155.133.121.0/24 3169 -155.133.122.0/24 200609 -155.133.123.0/24 34844 -155.133.125.0/24 57889 -155.133.126.0/24 200605 -155.133.127.0/24 51619 -155.133.128.0/20 203476 -155.133.144.0/20 29169 -155.133.160.0/19 29169 -155.133.192.0/23 205081 -155.133.194.0/24 50271 -155.133.195.0/24 13287 -155.133.196.0/22 201341 -155.133.200.0/21 62365 -155.133.208.0/20 62365 -155.133.224.0/23 32590 -155.133.227.0/24 32590 -155.133.228.0/22 32590 -155.133.232.0/21 32590 -155.133.240.0/21 32590 -155.133.248.0/23 32590 -155.133.250.0/24 32590 -155.133.252.0/22 32590 -155.135.0.0/16 2152 -155.136.0.0/19 21054 -155.136.32.0/20 21054 -155.136.48.0/21 21054 -155.136.56.0/22 21301 -155.136.60.0/22 21054 -155.136.64.0/18 21054 -155.136.128.0/20 21054 -155.136.144.0/24 21301 -155.136.145.0/24 21054 -155.136.146.0/24 21301 -155.136.147.0/24 21054 -155.136.148.0/22 21054 -155.136.152.0/21 21054 -155.136.160.0/19 21054 -155.136.192.0/22 21054 -155.136.196.0/23 21054 -155.136.198.0/23 2856 -155.136.200.0/23 21301 -155.136.202.0/23 21054 -155.136.204.0/22 21054 -155.136.208.0/20 21054 -155.136.224.0/22 2856 -155.136.228.0/23 21054 -155.136.230.0/23 2856 -155.136.232.0/23 2856 -155.136.234.0/23 21054 -155.136.236.0/22 21054 -155.136.240.0/20 21054 -155.137.0.0/22 51964 -155.137.4.0/23 51964 -155.137.10.0/24 51964 -155.137.65.0/24 51964 -155.137.68.0/24 51964 -155.137.89.0/24 51964 -155.137.241.0/24 51964 -155.137.247.0/24 51964 -155.137.248.0/24 51964 -155.138.0.0/18 26174 -155.138.128.0/17 20473 -155.139.0.0/16 25609 -155.140.0.0/20 20617 -155.140.16.0/20 32251 -155.140.32.0/20 132119 -155.140.48.0/20 20617 -155.140.64.0/21 25215 -155.140.72.0/22 25215 -155.140.76.0/23 25215 -155.140.78.0/24 25215 -155.140.79.0/24 206450 -155.140.80.0/23 205860 -155.140.82.0/23 20617 -155.140.84.0/22 20617 -155.140.88.0/21 20617 -155.140.96.0/19 20617 -155.140.128.0/18 20617 -155.140.192.0/19 20617 -155.140.224.0/20 20617 -155.140.240.0/21 20617 -155.140.248.0/22 20617 -155.140.252.0/22 23653 -155.141.0.0/16 668 -155.143.0.0/16 135887 -155.144.0.0/23 1221 -155.144.2.0/24 17756 -155.144.3.0/24 1221 -155.144.4.0/22 1221 -155.144.8.0/21 1221 -155.144.16.0/22 17756 -155.144.20.0/22 1221 -155.144.24.0/22 17756 -155.144.28.0/22 1221 -155.144.32.0/23 1221 -155.144.34.0/24 1221 -155.144.35.0/24 17756 -155.144.36.0/23 1221 -155.144.38.0/24 17756 -155.144.39.0/24 1221 -155.144.40.0/23 17756 -155.144.42.0/23 1221 -155.144.44.0/23 1221 -155.144.46.0/23 17756 -155.144.48.0/24 17756 -155.144.49.0/24 1221 -155.144.50.0/23 17756 -155.144.52.0/23 17756 -155.144.54.0/23 1221 -155.144.56.0/22 1221 -155.144.60.0/23 1221 -155.144.62.0/24 1221 -155.144.63.0/24 17756 -155.144.64.0/19 1221 -155.144.96.0/20 17756 -155.144.112.0/23 17756 -155.144.114.0/24 17756 -155.144.115.0/24 1221 -155.144.116.0/23 17756 -155.144.118.0/23 1221 -155.144.120.0/21 1221 -155.144.128.0/23 1221 -155.144.130.0/24 17756 -155.144.131.0/24 1221 -155.144.132.0/22 1221 -155.144.136.0/21 1221 -155.144.144.0/24 9498 -155.144.145.0/24 1221 -155.144.146.0/23 1221 -155.144.148.0/22 1221 -155.144.152.0/21 1221 -155.144.160.0/19 1221 -155.144.192.0/19 1221 -155.144.224.0/20 1221 -155.144.240.0/21 1221 -155.144.248.0/23 1221 -155.144.250.0/24 1221 -155.144.251.0/24 17756 -155.144.252.0/24 1221 -155.144.253.0/24 17756 -155.144.254.0/23 1221 -155.145.114.0/23 17071 -155.145.116.0/23 17071 -155.145.194.0/23 17071 -155.145.202.0/23 17071 -155.145.204.0/22 17071 -155.145.208.0/23 17071 -155.145.214.0/23 17071 -155.145.216.0/23 17071 -155.145.220.0/23 17071 -155.147.0.0/23 1541 -155.147.2.0/23 1472 -155.147.4.0/22 1472 -155.147.8.0/21 1472 -155.147.16.0/20 1472 -155.147.32.0/19 1472 -155.147.64.0/18 1472 -155.147.128.0/17 1472 -155.148.0.0/17 668 -155.148.128.0/18 668 -155.148.192.0/19 668 -155.148.224.0/20 668 -155.148.240.0/21 668 -155.148.248.0/21 1541 -155.149.0.0/16 1452 -155.150.0.0/16 27064 -155.151.0.0/16 523 -155.152.0.0/17 1488 -155.152.128.0/20 1494 -155.152.144.0/23 1541 -155.152.146.0/24 1541 -155.152.147.0/24 6034 -155.152.148.0/22 1498 -155.152.152.0/22 1498 -155.152.156.0/23 1498 -155.152.158.0/23 6034 -155.152.160.0/24 1541 -155.152.161.0/24 721 -155.152.162.0/23 721 -155.152.164.0/22 1590 -155.152.168.0/21 721 -155.152.176.0/20 1494 -155.152.192.0/21 721 -155.152.200.0/22 721 -155.152.204.0/23 721 -155.152.206.0/24 721 -155.152.207.0/24 6034 -155.152.208.0/22 721 -155.152.212.0/22 1541 -155.152.216.0/24 1452 -155.152.217.0/24 721 -155.152.218.0/23 721 -155.152.220.0/24 721 -155.152.221.0/24 1590 -155.152.222.0/24 27064 -155.152.223.0/24 1590 -155.152.224.0/20 721 -155.152.240.0/21 721 -155.152.248.0/22 721 -155.152.252.0/24 721 -155.152.253.0/24 1599 -155.152.254.0/24 1599 -155.152.255.0/24 27064 -155.153.0.0/16 1525 -155.154.0.0/17 1451 -155.154.128.0/18 1451 -155.154.192.0/18 668 -155.155.0.0/20 721 -155.155.16.0/20 1585 -155.155.32.0/20 721 -155.155.48.0/20 1585 -155.155.64.0/18 1585 -155.155.128.0/19 1585 -155.155.160.0/20 1585 -155.155.176.0/20 721 -155.155.192.0/23 1556 -155.155.194.0/23 721 -155.155.196.0/22 721 -155.155.200.0/21 721 -155.155.208.0/20 721 -155.155.224.0/19 1585 -155.158.0.0/16 8508 -155.159.0.0/16 18013 -155.161.0.0/21 7726 -155.161.8.0/24 133127 -155.161.9.0/24 7726 -155.161.10.0/23 7726 -155.161.12.0/23 132396 -155.161.14.0/23 7726 -155.161.16.0/22 7726 -155.161.20.0/24 133127 -155.161.21.0/24 7726 -155.161.22.0/23 7726 -155.161.24.0/21 7726 -155.161.32.0/20 7726 -155.161.48.0/23 7726 -155.161.50.0/23 132396 -155.161.52.0/24 4637 -155.161.53.0/24 7726 -155.161.54.0/23 7726 -155.161.56.0/24 133127 -155.161.57.0/24 7726 -155.161.58.0/23 7726 -155.161.60.0/22 7726 -155.161.64.0/18 7726 -155.161.128.0/18 7726 -155.161.192.0/19 7726 -155.161.224.0/20 7726 -155.161.240.0/21 7726 -155.161.248.0/23 7726 -155.161.250.0/24 133127 -155.161.251.0/24 7726 -155.161.252.0/22 7726 -155.163.0.0/16 20057 -155.164.0.0/20 797 -155.165.3.0/24 7287 -155.165.4.0/22 7287 -155.165.11.0/24 7287 -155.165.13.0/24 7287 -155.165.14.0/23 7287 -155.165.16.0/22 7287 -155.165.22.0/23 7287 -155.165.26.0/24 7287 -155.165.28.0/22 7287 -155.165.32.0/21 7287 -155.165.40.0/23 7286 -155.165.42.0/24 7286 -155.165.43.0/24 7287 -155.165.44.0/23 7287 -155.165.46.0/24 7286 -155.165.47.0/24 7287 -155.165.48.0/23 7287 -155.165.50.0/24 7287 -155.165.54.0/23 7287 -155.165.56.0/22 7287 -155.165.60.0/23 7287 -155.165.63.0/24 7018 -155.165.64.0/19 7287 -155.165.96.0/23 7286 -155.165.98.0/24 7287 -155.165.99.0/24 7286 -155.165.100.0/22 7287 -155.165.104.0/21 7287 -155.165.112.0/24 7286 -155.165.113.0/24 7287 -155.165.114.0/23 7287 -155.165.116.0/23 7287 -155.165.118.0/23 7286 -155.165.120.0/23 7286 -155.165.122.0/23 7287 -155.165.124.0/24 7286 -155.165.125.0/24 7287 -155.165.126.0/23 7286 -155.165.128.0/17 46164 -155.166.0.0/16 20057 -155.168.0.0/16 797 -155.170.0.0/16 20057 -155.177.0.0/16 36590 -155.178.0.0/16 4046 -155.185.0.0/16 137 -155.186.0.0/16 20115 -155.187.0.0/16 17477 -155.188.0.0/23 20437 -155.188.2.0/23 6569 -155.188.4.0/22 6569 -155.188.8.0/21 6569 -155.188.16.0/20 6569 -155.188.32.0/19 6569 -155.188.64.0/18 6569 -155.188.128.0/17 6569 -155.190.0.0/16 36692 -155.192.0.0/16 8698 -155.194.200.0/24 812 -155.196.0.0/16 37197 -155.198.0.0/16 786 -155.199.18.0/23 13322 -155.199.24.0/24 13322 -155.199.32.0/20 40923 -155.199.48.0/22 40923 -155.199.64.0/19 13322 -155.199.96.0/22 13322 -155.199.192.0/19 40923 -155.199.240.0/21 40923 -155.199.255.0/24 12000 -155.201.0.0/19 20426 -155.201.32.0/21 20426 -155.201.40.0/23 20426 -155.201.42.0/23 1239 -155.201.44.0/24 1239 -155.201.45.0/24 20426 -155.201.46.0/23 7018 -155.201.48.0/20 20426 -155.201.64.0/18 20426 -155.201.128.0/17 20426 -155.202.254.0/23 2134 -155.203.1.0/24 54036 -155.203.2.0/23 54036 -155.203.4.0/24 54036 -155.203.8.0/22 54036 -155.203.15.0/24 54036 -155.203.64.0/24 54036 -155.203.126.0/24 54036 -155.203.128.0/23 54036 -155.203.200.0/23 54036 -155.203.202.0/24 54036 -155.203.249.0/24 54036 -155.203.253.0/24 54036 -155.205.0.0/17 132321 -155.205.128.0/18 132321 -155.205.192.0/21 132321 -155.205.200.0/24 7575 -155.205.201.0/24 132321 -155.205.202.0/23 132321 -155.205.204.0/22 132321 -155.205.208.0/23 7575 -155.205.210.0/23 132321 -155.205.212.0/22 132321 -155.205.216.0/21 132321 -155.205.224.0/19 132321 -155.206.0.0/16 6629 -155.207.0.0/16 5470 -155.208.0.0/17 7430 -155.208.128.0/18 7430 -155.208.192.0/19 7430 -155.208.224.0/21 7430 -155.208.232.0/22 7430 -155.208.236.0/23 7430 -155.208.238.0/24 7430 -155.208.239.0/24 2129 -155.208.240.0/20 7430 -155.209.0.0/16 2119 -155.210.0.0/16 766 -155.212.0.0/23 7029 -155.212.2.0/24 7029 -155.212.3.0/24 26914 -155.212.4.0/22 26914 -155.212.8.0/22 26914 -155.212.12.0/23 26914 -155.212.14.0/23 7029 -155.212.16.0/21 7029 -155.212.24.0/24 33486 -155.212.25.0/24 7029 -155.212.26.0/23 7029 -155.212.28.0/22 7029 -155.212.32.0/19 7029 -155.212.64.0/18 7029 -155.212.128.0/17 7029 -155.213.1.0/24 27064 -155.213.18.0/23 1526 -155.213.20.0/23 1590 -155.213.22.0/23 27064 -155.213.24.0/21 27064 -155.213.50.0/23 27064 -155.213.52.0/22 1590 -155.213.56.0/22 1525 -155.213.60.0/24 1525 -155.213.62.0/24 1511 -155.213.63.0/24 721 -155.213.64.0/18 1494 -155.213.208.0/22 1498 -155.213.212.0/23 1498 -155.213.214.0/24 1498 -155.213.215.0/24 6034 -155.213.216.0/21 1590 -155.213.224.0/20 27064 -155.213.240.0/21 1464 -155.213.248.0/22 1482 -155.213.252.0/22 1531 -155.214.0.0/16 1504 -155.215.0.0/16 1505 -155.216.0.0/17 1509 -155.216.128.0/18 1509 -155.216.192.0/19 1509 -155.216.224.0/20 1509 -155.216.240.0/22 1509 -155.216.244.0/22 1541 -155.216.248.0/21 1509 -155.217.0.0/18 1500 -155.217.64.0/19 1500 -155.217.96.0/21 1500 -155.217.104.0/22 1541 -155.217.108.0/23 1541 -155.217.110.0/24 1541 -155.217.111.0/24 1500 -155.217.112.0/23 1541 -155.217.114.0/23 1500 -155.217.116.0/22 1500 -155.217.120.0/21 1500 -155.217.128.0/17 1500 -155.218.0.0/16 1495 -155.219.0.0/21 1510 -155.219.8.0/23 1510 -155.219.10.0/24 1541 -155.219.11.0/24 1510 -155.219.12.0/22 1510 -155.219.16.0/20 1510 -155.219.32.0/19 1510 -155.219.64.0/18 1510 -155.219.128.0/17 1510 -155.220.0.0/20 5972 -155.220.16.0/22 5972 -155.220.20.0/22 1591 -155.220.24.0/22 5972 -155.220.28.0/24 27064 -155.220.30.0/23 5972 -155.220.32.0/21 5972 -155.220.40.0/22 5972 -155.220.45.0/24 5972 -155.220.46.0/23 5972 -155.220.49.0/24 5972 -155.220.50.0/23 5972 -155.220.52.0/23 5972 -155.220.56.0/21 5972 -155.220.104.0/21 1591 -155.220.112.0/20 5972 -155.220.128.0/22 5972 -155.220.132.0/23 1591 -155.220.136.0/23 5972 -155.220.140.0/23 5972 -155.220.144.0/21 5972 -155.220.152.0/23 5972 -155.220.156.0/23 5972 -155.220.160.0/23 5972 -155.220.164.0/23 367 -155.220.168.0/22 5972 -155.220.176.0/23 5972 -155.220.180.0/23 5972 -155.220.224.0/22 5972 -155.220.240.0/23 5972 -155.220.242.0/24 5972 -155.220.248.0/22 5972 -155.220.252.0/23 5972 -155.223.0.0/16 2592 -155.225.0.0/22 53257 -155.225.4.0/23 53257 -155.225.6.0/24 2939 -155.225.7.0/24 53257 -155.225.8.0/21 53257 -155.225.16.0/20 53257 -155.225.32.0/20 53257 -155.225.48.0/23 53257 -155.225.52.0/22 53257 -155.225.56.0/22 53257 -155.225.60.0/24 53257 -155.225.62.0/23 2939 -155.225.64.0/24 2939 -155.225.65.0/24 53257 -155.225.66.0/23 53257 -155.225.68.0/23 53257 -155.225.70.0/24 53257 -155.225.72.0/21 53257 -155.225.80.0/20 53257 -155.225.96.0/19 53257 -155.225.128.0/18 53257 -155.225.192.0/21 2939 -155.225.200.0/21 53257 -155.225.208.0/20 53257 -155.225.224.0/19 53257 -155.227.0.0/16 2119 -155.228.0.0/16 25021 -155.229.0.0/18 4565 -155.229.64.0/22 18566 -155.229.68.0/22 4565 -155.229.72.0/22 4565 -155.229.76.0/23 4565 -155.229.78.0/24 4565 -155.229.79.0/24 6267 -155.229.80.0/20 4565 -155.229.96.0/19 4565 -155.229.128.0/19 4565 -155.229.160.0/20 18566 -155.229.176.0/21 18566 -155.229.184.0/23 4565 -155.229.186.0/23 18566 -155.229.188.0/22 4565 -155.229.192.0/23 18566 -155.229.194.0/23 4565 -155.229.196.0/24 14395 -155.229.197.0/24 4565 -155.229.198.0/23 4565 -155.229.200.0/22 4565 -155.229.204.0/23 4565 -155.229.206.0/23 18566 -155.229.208.0/21 4565 -155.229.216.0/23 6267 -155.229.218.0/24 4565 -155.229.219.0/24 6267 -155.229.220.0/24 6267 -155.229.221.0/24 4565 -155.229.222.0/23 4565 -155.229.224.0/24 4565 -155.229.225.0/24 6267 -155.229.226.0/23 18566 -155.229.228.0/23 4565 -155.229.230.0/23 18566 -155.229.232.0/21 4565 -155.229.240.0/23 4565 -155.229.242.0/24 6267 -155.229.243.0/24 4565 -155.229.244.0/22 4565 -155.229.248.0/21 4565 -155.230.0.0/16 10052 -155.232.0.0/16 2018 -155.234.0.0/16 3741 -155.236.0.0/17 3917 -155.236.128.0/20 3917 -155.236.144.0/22 3917 -155.236.148.0/23 3917 -155.236.150.0/23 3741 -155.236.152.0/21 3917 -155.236.160.0/19 3917 -155.236.192.0/18 3917 -155.237.0.0/16 3741 -155.238.0.0/16 2018 -155.239.0.0/16 5713 -155.240.0.0/17 11845 -155.240.128.0/19 11845 -155.240.160.0/19 2018 -155.240.192.0/18 2018 -155.244.0.0/16 668 -155.245.0.0/16 786 -155.246.0.0/16 16889 -155.247.0.0/16 3778 -155.248.0.0/21 6142 -155.248.8.0/22 6142 -155.248.16.0/21 6142 -155.248.24.0/22 6142 -155.248.64.0/19 20054 -155.248.96.0/20 20054 -155.250.0.0/16 13167 -155.251.0.0/16 37309 -155.252.0.0/17 721 -155.252.128.0/21 721 -155.252.136.0/23 721 -155.252.138.0/23 665 -155.252.140.0/23 721 -155.252.142.0/24 665 -155.252.143.0/24 721 -155.252.144.0/20 721 -155.252.160.0/19 721 -155.252.192.0/18 721 -155.253.0.0/16 137 -155.254.0.0/24 394387 -155.254.2.0/23 4508 -155.254.4.0/22 46811 -155.254.8.0/23 19754 -155.254.12.0/22 13825 -155.254.16.0/23 397423 -155.254.18.0/23 397373 -155.254.20.0/22 17216 -155.254.24.0/21 17216 -155.254.32.0/22 43350 -155.254.48.0/23 43350 -155.254.52.0/22 43350 -155.254.56.0/22 43350 -155.254.61.0/24 58305 -155.254.62.0/23 58305 -155.254.64.0/19 36493 -155.254.96.0/23 53889 -155.254.98.0/24 6130 -155.254.99.0/24 53889 -155.254.100.0/22 53889 -155.254.104.0/24 53889 -155.254.105.0/24 53559 -155.254.106.0/24 53889 -155.254.107.0/24 201665 -155.254.108.0/23 53889 -155.254.110.0/24 53559 -155.254.111.0/24 63008 -155.254.112.0/23 53889 -155.254.114.0/24 6130 -155.254.115.0/24 53889 -155.254.116.0/24 53559 -155.254.117.0/24 53889 -155.254.118.0/23 53889 -155.254.120.0/24 53889 -155.254.121.0/24 6130 -155.254.122.0/23 53889 -155.254.124.0/23 53889 -155.254.126.0/24 53889 -155.254.127.0/24 201665 -155.254.132.0/22 394660 -155.254.136.0/21 7403 -155.254.144.0/21 3356 -155.254.156.0/22 3356 -155.254.235.0/24 29278 -156.0.0.0/24 29975 -156.0.1.0/24 37057 -156.0.2.0/23 37057 -156.0.4.0/22 37057 -156.0.8.0/21 37057 -156.0.16.0/20 37057 -156.0.32.0/19 37057 -156.0.64.0/21 328038 -156.0.72.0/22 327805 -156.0.76.0/22 32708 -156.0.80.0/22 328252 -156.0.88.0/22 328249 -156.0.92.0/22 328254 -156.0.96.0/24 328227 -156.0.97.0/24 34929 -156.0.98.0/24 34929 -156.0.99.0/24 328227 -156.0.100.0/22 328227 -156.0.104.0/22 34929 -156.0.108.0/22 328227 -156.0.112.0/22 328227 -156.0.116.0/22 34929 -156.0.120.0/21 328227 -156.0.128.0/19 328224 -156.0.160.0/19 328112 -156.0.192.0/22 328216 -156.0.196.0/23 328246 -156.0.200.0/22 328247 -156.0.208.0/22 36937 -156.0.212.0/22 37136 -156.0.216.0/23 328210 -156.0.218.0/23 37357 -156.0.220.0/22 328204 -156.0.224.0/21 328220 -156.0.232.0/23 328225 -156.0.234.0/23 328213 -156.0.236.0/22 37172 -156.0.248.0/22 328203 -156.0.254.0/24 328248 -156.0.255.0/24 37567 -156.1.0.0/16 22226 -156.3.0.0/18 2920 -156.3.64.0/20 2920 -156.3.80.0/21 2920 -156.3.88.0/23 2920 -156.3.90.0/24 2920 -156.3.91.0/24 2152 -156.3.92.0/22 2920 -156.3.96.0/19 2920 -156.3.128.0/17 2920 -156.8.0.0/16 3741 -156.10.0.0/16 39098 -156.11.0.0/24 15290 -156.11.2.0/24 15290 -156.11.8.0/22 7122 -156.11.12.0/23 7122 -156.11.14.0/23 6327 -156.11.16.0/22 6327 -156.11.20.0/23 6327 -156.11.128.0/18 397433 -156.11.226.0/24 6327 -156.11.240.0/22 394583 -156.12.0.0/16 22192 -156.13.16.0/21 4648 -156.13.32.0/24 4648 -156.13.34.0/23 4648 -156.13.37.0/24 4648 -156.13.38.0/24 4648 -156.13.70.0/23 64086 -156.13.104.0/21 4648 -156.13.112.0/21 4648 -156.13.176.0/20 4648 -156.13.192.0/20 4648 -156.13.216.0/24 4648 -156.13.219.0/24 4648 -156.13.220.0/24 4648 -156.13.222.0/24 4648 -156.14.0.0/16 137 -156.17.0.0/17 8970 -156.17.128.0/18 8970 -156.17.192.0/21 8970 -156.17.200.0/24 8970 -156.17.201.0/24 206632 -156.17.202.0/23 8970 -156.17.204.0/22 8970 -156.17.208.0/20 8970 -156.17.224.0/19 8970 -156.18.0.0/16 1945 -156.19.0.0/18 20115 -156.19.64.0/19 20115 -156.19.128.0/18 20115 -156.19.192.0/20 20115 -156.19.224.0/19 20115 -156.20.24.0/23 16728 -156.20.30.0/23 16728 -156.20.35.0/24 16728 -156.20.36.0/24 16728 -156.20.172.0/22 23005 -156.20.224.0/22 23005 -156.21.16.0/21 17113 -156.21.128.0/18 17113 -156.22.1.0/24 1221 -156.22.2.0/24 1221 -156.22.3.0/24 38809 -156.22.8.0/24 134096 -156.22.9.0/24 38809 -156.22.240.0/20 134096 -156.25.0.0/16 25021 -156.26.0.0/16 22245 -156.28.0.0/24 34542 -156.28.1.0/24 34572 -156.28.2.0/23 34572 -156.28.4.0/23 34572 -156.28.6.0/23 3215 -156.28.8.0/21 34572 -156.28.16.0/20 34572 -156.28.32.0/19 34572 -156.28.64.0/18 34572 -156.28.128.0/18 2200 -156.28.192.0/19 2200 -156.28.224.0/20 2200 -156.28.240.0/21 2200 -156.28.248.0/22 2200 -156.28.252.0/23 34542 -156.28.254.0/23 2200 -156.29.0.0/17 33614 -156.29.128.0/20 32382 -156.29.176.0/20 33614 -156.29.248.0/21 33614 -156.30.5.0/24 27021 -156.30.24.0/24 27021 -156.31.197.0/24 3918 -156.33.0.0/16 3495 -156.34.0.0/16 855 -156.35.0.0/16 766 -156.37.192.0/24 54535 -156.37.194.0/24 54535 -156.37.200.0/22 54535 -156.37.204.0/23 54535 -156.37.224.0/23 54535 -156.37.232.0/23 54535 -156.37.250.0/23 54535 -156.37.253.0/24 54535 -156.38.0.0/22 328145 -156.38.4.0/22 37014 -156.38.8.0/21 328180 -156.38.16.0/20 37678 -156.38.48.0/22 328200 -156.38.52.0/23 328200 -156.38.60.0/23 328200 -156.38.62.0/24 328200 -156.38.64.0/19 36924 -156.38.96.0/19 328212 -156.38.128.0/17 37153 -156.39.0.0/22 21589 -156.39.5.0/24 21589 -156.39.10.0/23 21589 -156.39.12.0/23 21589 -156.39.15.0/24 21589 -156.39.28.0/24 21589 -156.39.40.0/23 21589 -156.39.48.0/21 21589 -156.39.60.0/24 21589 -156.39.62.0/23 21589 -156.39.64.0/22 21589 -156.39.68.0/23 21589 -156.39.73.0/24 21589 -156.39.74.0/24 21589 -156.39.125.0/24 21589 -156.39.127.0/24 21589 -156.39.128.0/18 21589 -156.40.0.0/19 3527 -156.40.32.0/20 3527 -156.40.48.0/22 3527 -156.40.52.0/24 3527 -156.40.53.0/24 30387 -156.40.54.0/23 3527 -156.40.56.0/21 3527 -156.40.64.0/20 3527 -156.40.80.0/21 3527 -156.40.88.0/22 3527 -156.40.92.0/24 3527 -156.40.93.0/24 19050 -156.40.94.0/23 19050 -156.40.96.0/23 3527 -156.40.98.0/23 30387 -156.40.100.0/22 3527 -156.40.104.0/21 3527 -156.40.112.0/20 3527 -156.40.128.0/18 3527 -156.40.192.0/22 3527 -156.40.196.0/24 64355 -156.40.197.0/24 19050 -156.40.198.0/23 3527 -156.40.200.0/21 3527 -156.40.208.0/20 3527 -156.40.224.0/19 3527 -156.41.0.0/16 1226 -156.42.0.0/16 4211 -156.43.3.0/24 2386 -156.43.4.0/24 2386 -156.43.57.0/24 10753 -156.43.58.0/24 12193 -156.43.59.0/24 27357 -156.43.60.0/24 12193 -156.43.67.0/24 2686 -156.43.71.0/24 2686 -156.43.80.0/24 3549 -156.43.99.0/24 2687 -156.43.101.0/24 2687 -156.44.34.0/23 15290 -156.44.36.0/22 15290 -156.44.120.0/23 15290 -156.44.128.0/23 852 -156.44.134.0/24 852 -156.44.138.0/23 15290 -156.44.144.0/23 852 -156.44.152.0/23 15290 -156.45.194.0/23 7018 -156.45.196.0/22 7018 -156.45.200.0/24 20170 -156.45.224.0/19 20170 -156.46.122.0/24 26785 -156.46.228.0/24 26785 -156.47.15.0/24 36433 -156.47.16.0/23 36433 -156.47.18.0/24 36433 -156.47.70.0/24 36433 -156.48.4.0/24 15989 -156.48.6.0/24 15989 -156.48.250.0/24 393226 -156.48.255.0/24 393226 -156.49.240.0/22 21195 -156.49.244.0/24 21195 -156.49.250.0/23 21195 -156.49.252.0/23 21195 -156.49.254.0/24 21195 -156.50.92.0/23 7474 -156.50.96.0/24 7474 -156.50.98.0/24 7474 -156.50.100.0/22 7474 -156.50.104.0/22 7474 -156.50.108.0/23 7474 -156.50.112.0/21 7474 -156.51.136.0/24 3301 -156.51.150.0/23 201869 -156.51.152.0/21 201869 -156.51.160.0/19 201869 -156.51.192.0/21 201869 -156.51.200.0/24 201869 -156.51.201.0/24 3301 -156.51.202.0/23 3301 -156.51.204.0/22 3301 -156.51.208.0/20 3301 -156.51.224.0/19 3301 -156.52.0.0/16 29695 -156.53.53.0/24 14492 -156.53.54.0/24 22205 -156.53.198.0/23 54535 -156.53.200.0/23 54535 -156.53.224.0/23 54535 -156.53.232.0/23 54535 -156.54.0.0/23 20746 -156.54.4.0/23 20746 -156.54.7.0/24 20746 -156.54.12.0/22 20746 -156.54.20.0/24 20746 -156.54.22.0/24 20746 -156.54.24.0/24 20746 -156.54.26.0/23 20746 -156.54.28.0/23 20746 -156.54.48.0/21 20746 -156.54.56.0/23 20746 -156.54.59.0/24 20746 -156.54.60.0/22 20746 -156.54.64.0/22 20746 -156.54.68.0/23 20746 -156.54.70.0/24 3269 -156.54.71.0/24 20746 -156.54.72.0/24 3269 -156.54.73.0/24 20746 -156.54.74.0/24 3269 -156.54.75.0/24 20746 -156.54.76.0/24 20746 -156.54.77.0/24 3269 -156.54.78.0/23 3269 -156.54.80.0/23 3269 -156.54.82.0/23 20746 -156.54.84.0/24 20746 -156.54.85.0/24 3269 -156.54.86.0/24 3269 -156.54.87.0/24 20746 -156.54.88.0/22 20746 -156.54.92.0/22 3269 -156.54.96.0/24 3269 -156.54.97.0/24 20746 -156.54.98.0/23 20746 -156.54.100.0/22 20746 -156.54.104.0/21 20746 -156.54.112.0/22 3269 -156.54.116.0/22 20746 -156.54.120.0/21 20746 -156.54.128.0/24 20746 -156.54.131.0/24 20746 -156.54.132.0/22 20746 -156.54.136.0/21 20746 -156.54.144.0/23 20746 -156.54.146.0/24 20746 -156.54.148.0/22 20746 -156.54.152.0/22 20746 -156.54.158.0/23 20746 -156.54.160.0/23 20746 -156.54.164.0/22 20746 -156.54.168.0/21 20746 -156.54.176.0/22 20746 -156.54.180.0/23 20746 -156.54.183.0/24 20746 -156.54.184.0/23 20746 -156.54.187.0/24 20746 -156.54.189.0/24 20746 -156.54.190.0/23 20746 -156.54.192.0/24 20746 -156.54.197.0/24 20746 -156.54.198.0/24 20746 -156.54.201.0/24 3269 -156.54.202.0/23 20746 -156.54.209.0/24 20746 -156.54.210.0/23 20746 -156.54.212.0/22 20746 -156.54.216.0/22 20746 -156.54.225.0/24 202950 -156.54.227.0/24 20746 -156.54.229.0/24 20746 -156.54.230.0/23 20746 -156.54.232.0/21 20746 -156.54.240.0/23 20746 -156.54.244.0/23 20746 -156.54.248.0/23 20746 -156.54.250.0/24 20746 -156.54.251.0/24 3269 -156.54.253.0/24 20746 -156.54.255.0/24 20746 -156.55.25.0/24 18434 -156.55.26.0/23 18434 -156.55.32.0/24 22146 -156.55.34.0/24 22146 -156.55.42.0/24 18434 -156.55.54.0/23 18434 -156.55.68.0/24 18434 -156.55.92.0/23 18434 -156.55.94.0/24 18434 -156.55.112.0/24 18434 -156.55.124.0/22 18434 -156.55.128.0/21 18434 -156.55.137.0/24 18434 -156.55.138.0/23 18434 -156.55.142.0/23 18434 -156.55.148.0/22 18434 -156.55.156.0/23 18434 -156.55.160.0/22 22146 -156.55.164.0/22 18434 -156.55.172.0/22 18434 -156.55.176.0/22 18434 -156.55.192.0/23 18434 -156.55.194.0/24 18434 -156.55.196.0/23 18434 -156.55.200.0/22 18434 -156.55.204.0/23 18434 -156.56.0.0/16 87 -156.57.0.0/16 855 -156.58.0.0/16 199083 -156.59.0.0/18 45787 -156.59.96.0/22 45787 -156.59.100.0/24 132596 -156.59.112.0/23 45787 -156.59.128.0/17 45787 -156.60.0.0/16 1226 -156.61.0.0/16 39400 -156.62.0.0/16 24398 -156.63.0.0/17 19902 -156.63.128.0/20 19902 -156.63.144.0/22 19902 -156.63.148.0/23 62724 -156.63.150.0/23 19902 -156.63.152.0/21 19902 -156.63.160.0/19 19902 -156.63.192.0/20 19902 -156.63.208.0/24 600 -156.63.209.0/24 19902 -156.63.210.0/23 19902 -156.63.212.0/22 19902 -156.63.216.0/21 19902 -156.63.224.0/19 19902 -156.65.0.0/19 26960 -156.65.246.0/23 7018 -156.65.249.0/24 26960 -156.65.250.0/23 26960 -156.67.0.0/22 201341 -156.67.4.0/23 201698 -156.67.7.0/24 200397 -156.67.8.0/22 199417 -156.67.12.0/23 33873 -156.67.14.0/23 25418 -156.67.16.0/22 59921 -156.67.20.0/22 59862 -156.67.24.0/21 202545 -156.67.32.0/22 48101 -156.67.36.0/23 25418 -156.67.38.0/23 31424 -156.67.40.0/21 201213 -156.67.50.0/24 64455 -156.67.51.0/24 64454 -156.67.52.0/24 200081 -156.67.53.0/24 201492 -156.67.54.0/23 200081 -156.67.56.0/22 16024 -156.67.60.0/22 50129 -156.67.80.0/22 47273 -156.67.84.0/24 12741 -156.67.85.0/24 206455 -156.67.86.0/24 206282 -156.67.87.0/24 209450 -156.67.88.0/24 206048 -156.67.89.0/24 60695 -156.67.90.0/24 52169 -156.67.92.0/24 43171 -156.67.93.0/24 60624 -156.67.94.0/24 43093 -156.67.95.0/24 5588 -156.67.96.0/21 44124 -156.67.104.0/23 43171 -156.67.106.0/24 201122 -156.67.107.0/24 207101 -156.67.108.0/23 39437 -156.67.110.0/23 43171 -156.67.112.0/22 199319 -156.67.116.0/24 51757 -156.67.117.0/24 202858 -156.67.118.0/24 197064 -156.67.119.0/24 203362 -156.67.120.0/24 210075 -156.67.122.0/24 64477 -156.67.123.0/24 3169 -156.67.124.0/24 201793 -156.67.125.0/24 198896 -156.67.126.0/23 47273 -156.67.128.0/20 42652 -156.67.144.0/20 12693 -156.67.160.0/19 60294 -156.67.192.0/21 34347 -156.67.200.0/21 31510 -156.67.208.0/20 47583 -156.67.224.0/21 12693 -156.67.232.0/21 15817 -156.67.240.0/24 204018 -156.67.241.0/24 8468 -156.67.242.0/23 8468 -156.67.244.0/22 8468 -156.67.248.0/21 8468 -156.68.0.0/16 297 -156.70.60.0/24 10753 -156.70.220.0/22 10753 -156.71.149.0/24 10753 -156.73.0.0/16 2024 -156.74.244.0/22 3401 -156.74.248.0/21 3401 -156.75.0.0/16 8103 -156.76.0.0/16 6341 -156.77.0.0/16 11286 -156.78.0.0/24 2386 -156.78.128.0/22 2386 -156.79.0.0/17 11363 -156.79.128.0/18 11363 -156.79.192.0/21 11363 -156.79.200.0/23 12274 -156.79.202.0/23 11363 -156.79.204.0/22 11363 -156.79.208.0/20 11363 -156.79.224.0/19 11363 -156.80.0.0/18 393649 -156.80.64.0/22 14244 -156.80.68.0/22 393649 -156.80.72.0/21 393649 -156.80.80.0/20 393649 -156.80.96.0/19 393649 -156.80.128.0/17 393649 -156.83.0.0/16 1103 -156.84.0.0/15 10695 -156.86.0.0/17 10695 -156.86.128.0/18 10695 -156.86.192.0/18 22822 -156.87.0.0/16 10695 -156.88.0.0/16 10695 -156.89.0.0/22 2386 -156.89.4.0/22 10695 -156.89.8.0/21 10695 -156.89.16.0/20 10695 -156.89.32.0/19 10695 -156.89.64.0/18 10695 -156.89.128.0/17 10695 -156.90.0.0/22 7046 -156.90.4.0/22 10695 -156.90.8.0/21 10695 -156.90.16.0/20 10695 -156.90.32.0/19 10695 -156.90.64.0/18 10695 -156.90.128.0/17 10695 -156.91.0.0/16 10695 -156.92.0.0/16 10695 -156.93.0.0/17 10695 -156.93.128.0/18 10695 -156.93.192.0/23 30030 -156.93.194.0/23 46313 -156.93.196.0/23 46313 -156.93.198.0/23 10695 -156.93.200.0/22 10695 -156.93.204.0/23 10695 -156.93.206.0/23 46313 -156.93.208.0/23 46313 -156.93.210.0/23 10695 -156.93.212.0/22 10695 -156.93.216.0/21 10695 -156.93.224.0/19 10695 -156.94.0.0/15 10695 -156.96.0.0/19 393504 -156.96.32.0/21 393504 -156.96.44.0/22 46664 -156.96.48.0/24 13830 -156.96.50.0/23 64249 -156.96.52.0/22 64249 -156.96.56.0/21 46664 -156.96.64.0/19 393504 -156.96.96.0/24 40676 -156.96.98.0/24 26484 -156.96.99.0/24 134705 -156.96.100.0/24 40676 -156.96.103.0/24 134705 -156.96.104.0/24 134705 -156.96.105.0/24 4842 -156.96.106.0/24 4842 -156.96.107.0/24 46664 -156.96.108.0/22 64249 -156.96.112.0/21 46664 -156.96.120.0/21 64249 -156.96.128.0/24 46664 -156.96.130.0/23 393504 -156.96.132.0/22 174 -156.96.136.0/23 393504 -156.96.138.0/23 135343 -156.96.140.0/24 23470 -156.96.141.0/24 393504 -156.96.142.0/24 393504 -156.96.144.0/23 64249 -156.96.146.0/24 64249 -156.96.147.0/24 31863 -156.96.148.0/24 58879 -156.96.149.0/24 397525 -156.96.150.0/23 46664 -156.96.152.0/24 134705 -156.96.153.0/24 4842 -156.96.154.0/23 46664 -156.96.156.0/23 46664 -156.96.158.0/23 64249 -156.96.160.0/19 393504 -156.96.192.0/19 397796 -156.97.32.0/20 14259 -156.97.96.0/20 16629 -156.97.128.0/20 16629 -156.98.0.0/15 1998 -156.101.0.0/16 20062 -156.105.0.0/21 3549 -156.106.0.0/16 8414 -156.107.8.0/22 38028 -156.107.12.0/24 38028 -156.107.26.0/23 133735 -156.107.30.0/23 38028 -156.107.32.0/23 38028 -156.107.34.0/24 38028 -156.107.44.0/23 134611 -156.107.48.0/23 134611 -156.107.76.0/23 134611 -156.107.78.0/24 38028 -156.107.80.0/21 133506 -156.107.89.0/24 133505 -156.107.90.0/23 133505 -156.107.97.0/24 133734 -156.107.106.0/23 133734 -156.107.113.0/24 38028 -156.107.136.0/22 133735 -156.107.147.0/24 38028 -156.107.158.0/24 133734 -156.107.160.0/24 63617 -156.107.170.0/24 63617 -156.107.172.0/22 134610 -156.107.178.0/23 63617 -156.107.180.0/23 63617 -156.107.192.0/22 133506 -156.107.196.0/24 133506 -156.107.232.0/22 133505 -156.107.236.0/24 133505 -156.108.0.0/16 36081 -156.109.14.0/23 31547 -156.109.16.0/24 31547 -156.109.18.0/24 31547 -156.109.24.0/23 31547 -156.109.26.0/24 31547 -156.109.34.0/23 31547 -156.109.40.0/24 31547 -156.109.43.0/24 31547 -156.109.46.0/24 31547 -156.109.68.0/24 31547 -156.109.78.0/24 31547 -156.109.94.0/24 31547 -156.109.113.0/24 31547 -156.109.129.0/24 31547 -156.109.193.0/24 31547 -156.110.0.0/17 5078 -156.110.128.0/20 5078 -156.110.144.0/20 16922 -156.110.160.0/19 16922 -156.110.192.0/19 5078 -156.110.224.0/20 5078 -156.110.240.0/20 16922 -156.111.0.0/16 395139 -156.112.7.0/24 27142 -156.112.16.0/20 6025 -156.112.48.0/20 6025 -156.112.66.0/23 27142 -156.112.68.0/24 27142 -156.112.70.0/24 27142 -156.112.74.0/23 300 -156.112.76.0/24 300 -156.112.78.0/24 300 -156.112.80.0/23 27153 -156.112.82.0/23 27064 -156.112.84.0/24 27064 -156.112.85.0/24 27153 -156.112.86.0/24 27064 -156.112.87.0/24 27153 -156.112.88.0/23 27153 -156.112.90.0/23 5974 -156.112.92.0/24 5974 -156.112.94.0/24 5974 -156.112.98.0/23 6026 -156.112.100.0/23 6026 -156.112.102.0/24 6026 -156.112.106.0/23 5307 -156.112.108.0/22 5307 -156.112.112.0/23 27153 -156.112.114.0/23 5961 -156.112.116.0/24 5961 -156.112.117.0/24 27153 -156.112.118.0/24 5961 -156.112.119.0/24 27153 -156.112.120.0/21 27153 -156.112.128.0/23 5961 -156.112.130.0/24 5307 -156.112.138.0/23 27065 -156.112.142.0/24 27065 -156.112.148.0/24 27065 -156.112.149.0/24 721 -156.112.152.0/24 1733 -156.112.166.0/24 27066 -156.112.170.0/24 5307 -156.112.171.0/24 300 -156.112.180.0/24 27066 -156.112.250.0/24 345 -156.114.0.0/20 59630 -156.114.16.0/22 23921 -156.114.128.0/18 15625 -156.115.12.0/22 8883 -156.116.0.0/16 59863 -156.133.48.0/20 25367 -156.133.104.0/21 25367 -156.134.0.0/24 51964 -156.134.16.0/24 51964 -156.134.32.0/24 51964 -156.134.48.0/24 51964 -156.134.64.0/23 12217 -156.134.68.0/23 12217 -156.134.70.0/24 12217 -156.134.80.0/24 12217 -156.134.84.0/22 12217 -156.134.88.0/23 12217 -156.134.96.0/23 12217 -156.134.100.0/23 12217 -156.134.102.0/24 12217 -156.134.116.0/22 12217 -156.134.120.0/22 12217 -156.134.248.0/24 4972 -156.134.250.0/23 4972 -156.134.252.0/22 4972 -156.135.8.0/22 3303 -156.135.24.0/22 3303 -156.137.0.0/20 2571 -156.137.32.0/20 2571 -156.137.192.0/20 2571 -156.139.0.0/16 3356 -156.142.0.0/16 1998 -156.143.0.0/16 14319 -156.144.0.0/16 3743 -156.145.0.0/16 395139 -156.146.1.0/24 26976 -156.146.2.0/24 26976 -156.146.3.0/24 701 -156.146.4.0/24 46887 -156.146.8.0/23 26976 -156.147.0.0/16 4668 -156.148.0.0/16 137 -156.149.208.0/20 24435 -156.149.249.0/24 2687 -156.150.36.0/24 14566 -156.151.0.0/16 792 -156.152.0.0/19 71 -156.152.32.0/21 71 -156.152.40.0/22 71 -156.152.44.0/23 71 -156.152.46.0/24 13979 -156.152.47.0/24 71 -156.152.48.0/21 71 -156.152.56.0/23 13979 -156.152.58.0/23 71 -156.152.60.0/22 71 -156.152.64.0/18 71 -156.152.128.0/19 71 -156.152.160.0/21 13979 -156.152.168.0/21 71 -156.152.176.0/20 71 -156.152.192.0/18 71 -156.153.0.0/16 71 -156.154.6.0/24 7786 -156.154.9.0/24 7786 -156.154.16.0/22 7786 -156.154.24.0/23 7786 -156.154.33.0/24 7029 -156.154.34.0/23 12008 -156.154.36.0/22 12008 -156.154.40.0/23 12008 -156.154.42.0/24 7786 -156.154.46.0/24 7786 -156.154.52.0/24 7786 -156.154.53.0/24 12008 -156.154.54.0/24 397215 -156.154.55.0/24 397213 -156.154.56.0/24 7786 -156.154.58.0/24 397215 -156.154.59.0/24 7786 -156.154.61.0/24 7786 -156.154.62.0/23 12008 -156.154.64.0/24 397215 -156.154.65.0/24 397213 -156.154.66.0/24 397215 -156.154.67.0/24 397213 -156.154.68.0/23 397213 -156.154.70.0/24 397213 -156.154.71.0/24 397215 -156.154.72.0/24 397215 -156.154.73.0/24 397213 -156.154.76.0/22 12008 -156.154.80.0/24 12008 -156.154.81.0/24 7786 -156.154.82.0/23 7786 -156.154.84.0/22 12008 -156.154.89.0/24 32980 -156.154.90.0/23 32980 -156.154.92.0/24 19905 -156.154.96.0/24 12008 -156.154.99.0/24 12008 -156.154.100.0/24 397215 -156.154.101.0/24 397213 -156.154.102.0/24 397215 -156.154.103.0/24 397213 -156.154.104.0/23 397213 -156.154.112.0/23 19905 -156.154.114.0/23 7786 -156.154.116.0/23 7786 -156.154.119.0/24 12008 -156.154.122.0/23 12008 -156.154.124.0/24 397215 -156.154.125.0/24 397213 -156.154.126.0/24 397213 -156.154.127.0/24 397215 -156.154.128.0/24 397213 -156.154.130.0/24 397213 -156.154.131.0/24 397215 -156.154.132.0/24 397213 -156.154.133.0/24 397215 -156.154.134.0/24 7786 -156.154.135.0/24 12008 -156.154.136.0/24 7786 -156.154.138.0/24 7786 -156.154.140.0/24 397215 -156.154.141.0/24 397213 -156.154.142.0/23 397213 -156.154.144.0/24 397215 -156.154.145.0/24 397213 -156.154.153.0/24 397215 -156.154.154.0/24 397213 -156.154.155.0/24 7786 -156.154.156.0/23 397213 -156.154.158.0/24 397213 -156.154.159.0/24 397215 -156.154.160.0/22 19905 -156.154.164.0/23 19905 -156.154.169.0/24 397215 -156.154.170.0/24 397213 -156.154.171.0/24 397215 -156.154.172.0/23 397213 -156.154.174.0/24 397213 -156.154.175.0/24 19905 -156.154.176.0/24 19905 -156.154.179.0/24 19905 -156.154.180.0/22 12008 -156.154.184.0/24 12008 -156.154.191.0/24 397213 -156.154.192.0/23 7786 -156.154.196.0/23 7786 -156.154.200.0/24 19907 -156.154.202.0/24 19907 -156.154.207.0/24 19905 -156.154.208.0/20 19905 -156.154.224.0/21 19905 -156.154.232.0/22 19905 -156.154.236.0/23 19905 -156.154.238.0/24 19905 -156.154.239.0/24 26380 -156.154.240.0/20 19905 -156.155.0.0/16 37611 -156.156.0.0/14 37133 -156.160.0.0/11 36992 -156.192.0.0/11 8452 -156.224.0.0/24 134548 -156.224.1.0/24 133929 -156.224.2.0/23 133199 -156.224.4.0/22 18013 -156.224.8.0/21 135357 -156.224.16.0/20 62468 -156.224.32.0/19 62468 -156.224.64.0/18 136800 -156.224.128.0/21 133201 -156.224.136.0/23 133201 -156.224.138.0/24 45102 -156.224.139.0/24 133201 -156.224.140.0/22 133201 -156.224.144.0/20 133201 -156.224.160.0/19 133201 -156.224.192.0/18 133201 -156.225.0.0/24 134548 -156.225.1.0/24 132839 -156.225.2.0/23 139265 -156.225.4.0/22 134548 -156.225.8.0/22 135581 -156.225.12.0/24 135581 -156.225.13.0/24 134705 -156.225.14.0/23 134705 -156.225.16.0/20 136800 -156.225.32.0/19 136800 -156.225.64.0/18 134548 -156.225.128.0/24 134548 -156.225.129.0/24 135581 -156.225.130.0/24 134687 -156.225.131.0/24 132839 -156.225.132.0/22 133201 -156.225.136.0/21 133201 -156.225.144.0/20 133201 -156.225.160.0/19 136800 -156.225.192.0/18 134548 -156.226.0.0/24 134548 -156.226.1.0/24 132839 -156.226.2.0/23 136743 -156.226.4.0/23 134548 -156.226.6.0/24 137969 -156.226.7.0/24 9009 -156.226.8.0/21 135357 -156.226.16.0/21 132813 -156.226.24.0/21 133201 -156.226.32.0/19 133201 -156.226.64.0/18 133201 -156.226.128.0/17 136800 -156.227.0.0/24 134548 -156.227.1.0/24 137443 -156.227.2.0/23 135293 -156.227.4.0/23 135026 -156.227.6.0/23 134548 -156.227.8.0/21 137941 -156.227.16.0/22 40065 -156.227.20.0/23 136548 -156.227.22.0/23 136743 -156.227.24.0/22 137443 -156.227.28.0/22 138995 -156.227.32.0/19 134705 -156.227.64.0/23 134705 -156.227.66.0/23 26484 -156.227.68.0/22 134705 -156.227.72.0/21 134705 -156.227.80.0/20 134705 -156.227.96.0/19 134705 -156.227.128.0/18 132839 -156.227.192.0/21 42831 -156.227.200.0/22 9009 -156.227.204.0/22 21859 -156.227.208.0/21 21859 -156.227.216.0/22 9009 -156.227.220.0/23 9009 -156.227.222.0/23 4785 -156.227.224.0/22 9009 -156.227.228.0/22 33333 -156.227.232.0/21 4785 -156.227.240.0/21 135357 -156.227.248.0/22 18046 -156.227.252.0/22 9381 -156.228.0.0/16 328170 -156.229.0.0/24 35916 -156.229.1.0/24 58879 -156.229.2.0/23 42831 -156.229.4.0/22 139086 -156.229.8.0/21 40065 -156.229.16.0/20 132839 -156.229.32.0/19 26484 -156.229.64.0/18 132839 -156.229.128.0/17 139086 -156.230.0.0/24 134548 -156.230.1.0/24 139709 -156.230.2.0/24 134687 -156.230.3.0/24 137969 -156.230.4.0/22 137969 -156.230.8.0/24 132839 -156.230.9.0/24 18013 -156.230.10.0/24 134687 -156.230.11.0/24 24413 -156.230.12.0/23 24413 -156.230.14.0/24 131618 -156.230.15.0/24 132585 -156.230.16.0/20 135357 -156.230.32.0/21 134705 -156.230.40.0/21 26484 -156.230.48.0/21 26484 -156.230.56.0/24 134705 -156.230.57.0/24 26484 -156.230.58.0/23 134705 -156.230.60.0/23 134705 -156.230.62.0/23 26484 -156.230.64.0/18 132839 -156.230.128.0/18 134705 -156.230.192.0/19 134705 -156.230.224.0/19 26484 -156.231.0.0/19 328170 -156.231.32.0/19 26484 -156.231.64.0/18 54600 -156.231.128.0/17 26484 -156.232.0.0/24 35916 -156.232.1.0/24 8100 -156.232.2.0/23 23338 -156.232.4.0/23 134520 -156.232.6.0/23 138152 -156.232.8.0/21 35916 -156.232.16.0/20 26484 -156.232.32.0/19 8100 -156.232.64.0/20 8100 -156.232.80.0/21 8100 -156.232.88.0/21 62587 -156.232.96.0/19 35916 -156.232.128.0/17 134548 -156.233.2.0/23 134548 -156.233.4.0/22 134548 -156.233.8.0/21 134548 -156.233.26.0/24 134705 -156.233.32.0/19 26484 -156.233.64.0/19 26484 -156.233.96.0/19 14333 -156.233.128.0/21 396076 -156.233.136.0/21 32708 -156.233.144.0/20 32708 -156.233.160.0/19 32708 -156.233.192.0/19 32708 -156.233.224.0/20 32708 -156.233.240.0/21 32708 -156.233.248.0/22 32708 -156.233.252.0/24 32708 -156.233.253.0/24 396076 -156.233.254.0/23 396076 -156.234.0.0/18 136800 -156.234.64.0/19 136800 -156.234.96.0/20 136800 -156.234.112.0/21 136800 -156.234.120.0/22 136800 -156.234.124.0/23 136800 -156.234.126.0/24 136800 -156.234.127.0/24 40065 -156.234.128.0/18 136800 -156.234.192.0/21 136800 -156.234.200.0/24 136800 -156.234.201.0/24 138195 -156.234.202.0/23 136800 -156.234.204.0/22 136800 -156.234.208.0/20 136800 -156.234.224.0/21 138415 -156.234.232.0/21 136800 -156.234.240.0/20 136800 -156.235.0.0/24 35916 -156.235.1.0/24 40065 -156.235.2.0/23 40065 -156.235.4.0/22 40065 -156.235.8.0/21 40065 -156.235.16.0/20 26484 -156.235.32.0/19 134705 -156.235.64.0/19 134705 -156.235.96.0/20 62468 -156.235.112.0/20 26484 -156.235.128.0/17 134548 -156.236.0.0/24 35916 -156.236.1.0/24 135025 -156.236.2.0/23 9009 -156.236.4.0/22 42831 -156.236.8.0/22 21859 -156.236.12.0/22 4785 -156.236.16.0/22 9009 -156.236.20.0/23 23858 -156.236.22.0/23 21859 -156.236.24.0/23 21859 -156.236.26.0/23 36351 -156.236.28.0/23 33333 -156.236.30.0/23 45650 -156.236.32.0/19 134705 -156.236.64.0/23 136970 -156.236.66.0/24 136970 -156.236.67.0/24 136933 -156.236.68.0/24 136933 -156.236.69.0/24 136970 -156.236.70.0/23 133115 -156.236.72.0/24 133115 -156.236.73.0/24 138152 -156.236.74.0/23 138152 -156.236.76.0/22 40065 -156.236.80.0/21 40065 -156.236.88.0/21 26484 -156.236.96.0/21 137443 -156.236.104.0/22 137443 -156.236.108.0/23 137443 -156.236.110.0/24 58879 -156.236.111.0/24 137443 -156.236.112.0/22 137443 -156.236.116.0/24 137443 -156.236.117.0/24 58879 -156.236.118.0/24 58879 -156.236.119.0/24 137443 -156.236.120.0/23 35916 -156.236.122.0/23 137443 -156.236.124.0/22 137443 -156.236.128.0/17 32708 -156.237.0.0/24 35916 -156.237.1.0/24 133007 -156.237.2.0/23 54600 -156.237.4.0/23 59117 -156.237.6.0/24 21859 -156.237.7.0/24 23338 -156.237.8.0/23 21859 -156.237.10.0/24 21859 -156.237.11.0/24 35916 -156.237.12.0/22 9009 -156.237.16.0/22 35916 -156.237.20.0/22 46261 -156.237.24.0/21 136743 -156.237.32.0/19 134705 -156.237.64.0/18 134705 -156.237.128.0/17 134548 -156.238.0.0/24 35916 -156.238.1.0/24 137571 -156.238.2.0/23 35916 -156.238.4.0/24 21859 -156.238.5.0/24 9009 -156.238.6.0/23 9009 -156.238.8.0/23 21859 -156.238.10.0/24 9009 -156.238.11.0/24 136743 -156.238.12.0/24 24482 -156.238.13.0/24 8100 -156.238.14.0/23 59117 -156.238.16.0/24 133712 -156.238.17.0/24 46071 -156.238.18.0/23 59117 -156.238.20.0/22 35916 -156.238.24.0/22 38235 -156.238.28.0/23 21859 -156.238.30.0/24 9009 -156.238.31.0/24 136743 -156.238.32.0/24 133201 -156.238.33.0/24 54600 -156.238.34.0/23 54600 -156.238.36.0/24 54600 -156.238.37.0/24 133201 -156.238.38.0/23 54600 -156.238.40.0/22 54600 -156.238.44.0/22 133201 -156.238.48.0/20 133201 -156.238.64.0/18 134548 -156.238.128.0/23 26484 -156.238.130.0/24 35916 -156.238.131.0/24 26484 -156.238.132.0/22 26484 -156.238.136.0/22 26484 -156.238.140.0/22 53587 -156.238.144.0/21 53587 -156.238.152.0/22 53587 -156.238.156.0/23 26484 -156.238.158.0/24 26484 -156.238.159.0/24 35916 -156.238.160.0/19 26484 -156.238.192.0/19 394281 -156.238.224.0/20 54600 -156.238.240.0/21 54600 -156.238.248.0/23 54600 -156.238.250.0/23 132422 -156.238.252.0/22 54600 -156.239.0.0/23 35916 -156.239.2.0/23 53340 -156.239.4.0/22 35487 -156.239.8.0/21 35487 -156.239.16.0/21 35487 -156.239.24.0/21 54600 -156.239.32.0/19 54600 -156.239.64.0/18 134548 -156.239.128.0/20 54600 -156.239.144.0/21 54600 -156.239.152.0/22 59117 -156.239.156.0/22 40065 -156.239.160.0/22 35916 -156.239.164.0/22 133201 -156.239.168.0/21 133201 -156.239.176.0/20 133201 -156.239.192.0/18 133201 -156.240.0.0/16 328170 -156.241.0.0/24 134548 -156.241.1.0/24 9381 -156.241.3.0/24 37353 -156.241.4.0/23 132585 -156.241.6.0/24 132585 -156.241.8.0/21 135357 -156.241.16.0/20 136800 -156.241.32.0/19 136800 -156.241.64.0/18 133201 -156.241.128.0/18 137443 -156.241.192.0/18 18013 -156.242.0.0/24 35916 -156.242.1.0/24 58879 -156.242.2.0/23 132839 -156.242.4.0/23 35916 -156.242.6.0/24 4809 -156.242.7.0/24 35916 -156.242.8.0/24 4809 -156.242.9.0/24 35916 -156.242.10.0/23 35916 -156.242.12.0/22 35916 -156.242.16.0/20 132839 -156.242.32.0/19 132839 -156.242.64.0/18 132839 -156.242.128.0/17 132839 -156.243.0.0/24 35916 -156.243.1.0/24 134687 -156.243.2.0/23 40065 -156.243.4.0/22 40065 -156.243.8.0/21 40065 -156.243.16.0/20 40065 -156.243.32.0/19 132839 -156.243.64.0/18 54600 -156.243.128.0/18 54600 -156.243.192.0/18 132839 -156.244.0.0/18 132839 -156.244.64.0/18 133201 -156.244.128.0/17 132839 -156.245.0.0/24 134548 -156.245.1.0/24 134687 -156.245.2.0/23 132839 -156.245.4.0/24 134687 -156.245.5.0/24 139340 -156.245.6.0/23 132839 -156.245.8.0/21 133199 -156.245.16.0/22 133199 -156.245.20.0/23 133199 -156.245.22.0/24 133199 -156.245.23.0/24 134548 -156.245.24.0/21 133199 -156.245.32.0/19 133201 -156.245.64.0/18 134548 -156.245.128.0/17 134548 -156.246.0.0/16 328170 -156.247.0.0/23 35916 -156.247.2.0/23 26484 -156.247.4.0/22 26484 -156.247.8.0/21 133199 -156.247.16.0/20 135357 -156.247.32.0/19 54600 -156.247.64.0/19 54600 -156.247.96.0/19 26484 -156.247.128.0/17 26484 -156.248.0.0/16 328170 -156.249.0.0/24 35916 -156.249.1.0/24 138678 -156.249.2.0/23 35916 -156.249.4.0/22 139086 -156.249.8.0/21 135600 -156.249.16.0/24 9009 -156.249.17.0/24 42831 -156.249.18.0/24 9009 -156.249.19.0/24 132839 -156.249.20.0/22 58879 -156.249.24.0/21 35916 -156.249.32.0/19 26484 -156.249.64.0/18 139086 -156.249.128.0/17 26484 -156.250.0.0/24 134548 -156.250.1.0/24 131618 -156.250.2.0/23 137990 -156.250.4.0/22 133201 -156.250.8.0/21 133201 -156.250.16.0/20 133201 -156.250.32.0/19 132839 -156.250.64.0/18 133201 -156.250.128.0/17 132839 -156.251.0.0/19 132839 -156.251.32.0/19 26484 -156.251.64.0/18 26484 -156.251.128.0/17 40065 -156.252.0.0/24 35916 -156.252.1.0/24 132839 -156.252.2.0/23 132839 -156.252.4.0/23 21859 -156.252.6.0/23 134674 -156.252.8.0/21 134674 -156.252.16.0/22 21859 -156.252.20.0/22 35916 -156.252.24.0/24 133747 -156.252.25.0/24 62587 -156.252.26.0/23 35916 -156.252.28.0/22 35916 -156.252.32.0/19 132839 -156.252.64.0/18 132839 -156.252.128.0/18 26484 -156.252.192.0/19 26484 -156.252.224.0/20 26484 -156.252.240.0/20 53587 -156.253.16.0/20 137443 -156.253.32.0/20 132422 -156.253.56.0/22 137443 -156.253.62.0/23 137443 -156.253.64.0/18 136800 -156.253.128.0/17 132839 -156.254.0.0/17 134548 -156.254.128.0/17 136800 -156.255.0.0/24 134548 -156.255.1.0/24 137443 -156.255.2.0/23 137443 -156.255.4.0/22 18013 -156.255.8.0/21 18013 -156.255.16.0/20 18013 -156.255.32.0/19 136800 -156.255.64.0/18 63888 -156.255.128.0/18 136800 -156.255.192.0/20 136800 -156.255.208.0/21 136800 -156.255.216.0/24 132839 -156.255.217.0/24 136800 -156.255.218.0/23 136800 -156.255.220.0/22 136800 -156.255.224.0/19 136800 -157.0.0.0/16 4837 -157.1.0.0/16 2907 -157.2.11.0/24 4725 -157.2.13.0/24 4725 -157.2.32.0/19 10021 -157.2.97.0/24 4725 -157.2.120.0/22 10021 -157.3.0.0/16 7671 -157.4.0.0/16 7671 -157.6.0.0/16 2907 -157.7.0.0/19 4713 -157.7.32.0/22 55907 -157.7.36.0/22 7506 -157.7.40.0/21 7506 -157.7.48.0/20 7506 -157.7.64.0/18 7506 -157.7.128.0/17 7506 -157.12.0.0/16 24275 -157.13.0.0/16 2907 -157.14.0.0/18 2512 -157.14.80.0/20 2512 -157.14.96.0/19 2514 -157.14.128.0/21 2512 -157.14.136.0/21 2514 -157.14.144.0/20 2514 -157.14.160.0/19 2519 -157.14.192.0/20 2519 -157.14.208.0/22 2514 -157.14.212.0/22 2512 -157.14.216.0/21 2512 -157.14.224.0/20 2519 -157.14.240.0/21 2519 -157.14.248.0/22 2512 -157.14.252.0/22 2514 -157.16.0.0/16 24297 -157.17.0.0/17 2907 -157.18.0.0/16 17816 -157.19.0.0/16 2907 -157.21.0.0/16 53446 -157.22.0.0/18 7091 -157.22.64.0/19 397379 -157.22.96.0/19 7091 -157.22.128.0/17 7091 -157.23.200.0/24 30311 -157.23.224.0/24 11251 -157.23.226.0/24 11251 -157.23.232.0/24 22604 -157.23.234.0/24 22604 -157.24.0.0/16 1741 -157.25.0.0/19 5588 -157.25.32.0/20 5588 -157.25.48.0/21 5588 -157.25.56.0/24 5588 -157.25.57.0/24 206770 -157.25.58.0/23 5588 -157.25.60.0/22 5588 -157.25.64.0/22 5588 -157.25.68.0/24 198216 -157.25.69.0/24 5588 -157.25.70.0/23 5588 -157.25.72.0/21 5588 -157.25.80.0/20 5588 -157.25.96.0/20 5588 -157.25.112.0/21 5588 -157.25.120.0/23 5588 -157.25.122.0/24 5588 -157.25.123.0/24 197600 -157.25.124.0/22 5588 -157.25.128.0/23 5588 -157.25.130.0/23 203689 -157.25.132.0/24 203685 -157.25.133.0/24 5588 -157.25.134.0/23 5588 -157.25.136.0/22 5588 -157.25.140.0/24 203920 -157.25.141.0/24 5588 -157.25.142.0/23 5588 -157.25.144.0/22 5588 -157.25.148.0/23 5588 -157.25.150.0/24 206937 -157.25.151.0/24 5588 -157.25.152.0/21 5588 -157.25.160.0/21 5588 -157.25.168.0/22 5588 -157.25.172.0/23 5588 -157.25.174.0/23 203689 -157.25.176.0/20 5588 -157.25.192.0/18 5588 -157.26.0.0/16 559 -157.27.0.0/16 137 -157.28.0.0/15 8968 -157.30.4.0/22 4318 -157.30.12.0/22 4318 -157.32.0.0/12 55836 -157.48.0.0/14 55836 -157.52.0.0/19 5645 -157.52.32.0/20 46154 -157.52.48.0/20 63394 -157.52.64.0/19 54113 -157.52.96.0/20 54113 -157.52.112.0/22 54113 -157.52.117.0/24 54113 -157.52.118.0/23 54113 -157.52.120.0/23 54113 -157.52.122.0/24 54113 -157.52.128.0/22 46573 -157.52.132.0/24 20326 -157.52.133.0/24 46573 -157.52.134.0/23 46573 -157.52.136.0/21 46573 -157.52.144.0/24 46573 -157.52.146.0/23 46573 -157.52.148.0/22 46573 -157.52.152.0/22 46573 -157.52.156.0/23 46573 -157.52.158.0/24 46573 -157.52.160.0/21 46573 -157.52.168.0/22 46573 -157.52.173.0/24 46573 -157.52.174.0/23 46573 -157.52.176.0/20 46573 -157.52.192.0/20 46573 -157.52.208.0/21 46573 -157.52.216.0/23 46573 -157.52.219.0/24 46573 -157.52.220.0/22 46573 -157.52.224.0/19 46573 -157.53.0.0/18 36236 -157.53.96.0/19 36236 -157.53.128.0/19 36236 -157.53.192.0/19 36236 -157.54.0.0/16 3598 -157.55.0.0/16 8075 -157.56.0.0/16 8075 -157.57.0.0/16 3598 -157.58.0.0/15 3598 -157.60.0.0/20 3598 -157.60.16.0/22 3598 -157.60.20.0/23 3598 -157.60.22.0/24 3598 -157.60.23.0/24 8075 -157.60.24.0/22 3598 -157.60.28.0/23 3598 -157.60.30.0/24 3598 -157.60.31.0/24 8075 -157.60.32.0/19 3598 -157.60.64.0/18 3598 -157.60.128.0/17 3598 -157.61.0.0/23 17622 -157.61.2.0/23 17816 -157.61.4.0/22 17816 -157.61.8.0/22 17816 -157.61.12.0/23 17623 -157.61.14.0/23 17816 -157.61.16.0/20 17816 -157.61.32.0/21 17816 -157.61.40.0/23 17816 -157.61.42.0/23 17622 -157.61.44.0/23 17623 -157.61.46.0/23 17816 -157.61.48.0/20 17816 -157.61.64.0/18 17816 -157.61.128.0/17 17816 -157.62.0.0/16 22192 -157.63.0.0/16 2907 -157.64.0.0/16 4713 -157.65.0.0/21 2514 -157.65.8.0/21 2497 -157.65.16.0/20 2514 -157.65.32.0/19 2514 -157.65.64.0/18 2514 -157.65.128.0/19 2514 -157.65.160.0/20 2514 -157.65.176.0/21 2497 -157.65.184.0/21 2514 -157.65.192.0/21 2497 -157.65.200.0/21 2514 -157.65.208.0/21 2514 -157.65.216.0/21 2497 -157.65.224.0/19 2514 -157.71.0.0/17 131932 -157.71.128.0/18 131932 -157.71.192.0/20 131932 -157.71.208.0/23 2516 -157.71.210.0/23 131932 -157.71.212.0/22 131932 -157.71.216.0/21 131932 -157.71.224.0/19 131932 -157.72.0.0/14 131932 -157.76.0.0/16 2907 -157.77.0.0/16 4678 -157.78.0.0/16 4725 -157.79.0.0/16 2514 -157.80.0.0/16 2907 -157.82.0.0/18 2501 -157.82.64.0/19 2501 -157.82.96.0/20 2501 -157.82.112.0/21 2907 -157.82.120.0/21 2501 -157.82.128.0/17 2501 -157.83.96.0/19 44022 -157.83.142.0/23 18971 -157.83.144.0/22 206237 -157.84.48.0/20 2830 -157.85.0.0/16 7575 -157.86.0.0/16 21612 -157.88.0.0/16 766 -157.89.0.0/16 13327 -157.91.0.0/16 1767 -157.92.0.0/16 3449 -157.93.0.0/16 4597 -157.94.0.0/20 51164 -157.94.16.0/24 16086 -157.94.17.0/24 51164 -157.94.18.0/23 51164 -157.94.20.0/22 51164 -157.94.24.0/21 51164 -157.94.32.0/19 51164 -157.94.64.0/18 51164 -157.94.128.0/17 51164 -157.95.1.0/24 29700 -157.95.12.0/23 29700 -157.95.50.0/23 29700 -157.95.52.0/23 29700 -157.95.56.0/24 29700 -157.95.67.0/24 29700 -157.95.200.0/24 29700 -157.95.211.0/24 29700 -157.96.22.0/24 10753 -157.97.0.0/19 43571 -157.97.32.0/20 15817 -157.97.48.0/20 49784 -157.97.64.0/22 25259 -157.97.68.0/22 24953 -157.97.75.0/24 204512 -157.97.76.0/22 60664 -157.97.80.0/22 198760 -157.97.84.0/22 206837 -157.97.88.0/21 206866 -157.97.96.0/24 41038 -157.97.97.0/24 63311 -157.97.98.0/23 12329 -157.97.100.0/22 207161 -157.97.104.0/23 64252 -157.97.106.0/23 51862 -157.97.108.0/22 51862 -157.97.112.0/21 201975 -157.97.121.0/24 46844 -157.97.122.0/24 36351 -157.97.124.0/22 54103 -157.97.128.0/22 201126 -157.97.132.0/24 6866 -157.97.133.0/24 23470 -157.97.134.0/24 23470 -157.97.135.0/24 205785 -157.97.136.0/21 201085 -157.97.144.0/24 28685 -157.97.145.0/24 22923 -157.97.146.0/24 12329 -157.97.152.0/22 209293 -157.97.160.0/23 59862 -157.97.162.0/24 59862 -157.97.163.0/24 203593 -157.97.164.0/22 206096 -157.97.168.0/22 20857 -157.97.172.0/22 60267 -157.97.176.0/21 202583 -157.97.184.0/21 204189 -157.97.192.0/18 198089 -157.98.0.0/16 3527 -157.99.0.0/16 29110 -157.100.0.0/19 27947 -157.100.32.0/20 27947 -157.100.48.0/22 27947 -157.100.52.0/22 264668 -157.100.56.0/22 264668 -157.100.60.0/22 27947 -157.100.64.0/18 27947 -157.100.128.0/17 27947 -157.101.64.0/18 2519 -157.101.128.0/19 10004 -157.101.160.0/19 2514 -157.101.224.0/19 7677 -157.102.0.0/16 2907 -157.103.0.0/16 17676 -157.105.0.0/16 2907 -157.107.0.0/16 4685 -157.108.0.0/16 2516 -157.109.0.0/16 37919 -157.110.0.0/16 37910 -157.111.0.0/16 2907 -157.112.0.0/18 9605 -157.112.64.0/20 24284 -157.112.80.0/20 23620 -157.112.99.0/24 58793 -157.112.100.0/22 58793 -157.112.104.0/21 58793 -157.112.112.0/20 58793 -157.112.144.0/20 9371 -157.112.160.0/20 17958 -157.112.176.0/20 9371 -157.112.192.0/18 55394 -157.113.0.0/16 9993 -157.114.0.0/16 2907 -157.118.0.0/16 58785 -157.119.0.0/22 135365 -157.119.4.0/22 2516 -157.119.20.0/22 135369 -157.119.24.0/24 134893 -157.119.25.0/24 9558 -157.119.26.0/23 9558 -157.119.28.0/22 58519 -157.119.32.0/22 17837 -157.119.36.0/22 38086 -157.119.40.0/22 136557 -157.119.44.0/22 135267 -157.119.48.0/22 59365 -157.119.52.0/23 17941 -157.119.56.0/23 135370 -157.119.60.0/22 134102 -157.119.64.0/22 24295 -157.119.70.0/24 18013 -157.119.72.0/22 135373 -157.119.76.0/22 135371 -157.119.80.0/22 132116 -157.119.84.0/24 17665 -157.119.85.0/24 132573 -157.119.87.0/24 17665 -157.119.91.0/24 136946 -157.119.92.0/22 132839 -157.119.96.0/23 55769 -157.119.99.0/24 55769 -157.119.104.0/22 23860 -157.119.108.0/22 134305 -157.119.112.0/22 134548 -157.119.116.0/22 135266 -157.119.120.0/22 134341 -157.119.124.0/24 133275 -157.119.126.0/23 133275 -157.119.128.0/22 2516 -157.119.168.0/23 134258 -157.119.170.0/24 45194 -157.119.171.0/24 134258 -157.119.176.0/22 132220 -157.119.180.0/22 55508 -157.119.184.0/22 58717 -157.119.188.0/24 48551 -157.119.189.0/24 34865 -157.119.190.0/24 48551 -157.119.191.0/24 19084 -157.119.200.0/23 135269 -157.119.202.0/24 135269 -157.119.203.0/24 137166 -157.119.204.0/22 45916 -157.119.208.0/24 132556 -157.119.212.0/22 134316 -157.119.216.0/23 133275 -157.119.218.0/24 134872 -157.119.219.0/24 133275 -157.119.220.0/24 45302 -157.119.222.0/23 45302 -157.119.224.0/22 59169 -157.119.229.0/24 45232 -157.119.230.0/23 45232 -157.119.232.0/22 135391 -157.119.236.0/22 134990 -157.119.244.0/24 63766 -157.119.246.0/23 45899 -157.119.248.0/22 135944 -157.120.0.0/18 2514 -157.120.64.0/19 9621 -157.120.120.0/22 24259 -157.120.124.0/22 4713 -157.120.128.0/19 9604 -157.120.160.0/19 59349 -157.120.224.0/21 8220 -157.120.232.0/23 9381 -157.120.236.0/22 8220 -157.120.240.0/20 8220 -157.122.0.0/19 17623 -157.122.32.0/20 17623 -157.122.48.0/20 17622 -157.122.64.0/20 17622 -157.122.80.0/21 17623 -157.122.88.0/21 17622 -157.122.96.0/19 17816 -157.122.128.0/21 17816 -157.122.136.0/21 17622 -157.122.144.0/20 17816 -157.122.160.0/19 17816 -157.122.192.0/20 17816 -157.122.208.0/21 136958 -157.122.216.0/21 134543 -157.122.224.0/21 136958 -157.122.232.0/21 17816 -157.122.240.0/20 17816 -157.124.0.0/21 1738 -157.124.16.0/22 1738 -157.124.22.0/23 1738 -157.124.24.0/23 1738 -157.124.30.0/24 1738 -157.124.32.0/23 1738 -157.124.40.0/24 1738 -157.124.42.0/23 1738 -157.124.66.0/24 1738 -157.124.85.0/24 1738 -157.124.200.0/24 1738 -157.124.240.0/24 1738 -157.124.248.0/24 1738 -157.124.253.0/24 1738 -157.125.0.0/16 31655 -157.127.0.0/16 1906 -157.128.0.0/16 9893 -157.129.0.0/16 41701 -157.130.0.0/16 701 -157.131.0.0/20 7065 -157.131.64.0/18 46375 -157.131.128.0/17 46375 -157.132.0.0/16 7872 -157.133.0.0/20 201672 -157.133.16.0/21 395356 -157.133.24.0/21 395949 -157.133.32.0/21 393611 -157.133.40.0/21 393335 -157.133.48.0/20 396434 -157.133.64.0/21 205356 -157.133.72.0/22 205159 -157.133.76.0/23 205159 -157.133.78.0/24 60181 -157.133.79.0/24 205159 -157.133.80.0/21 206277 -157.133.88.0/22 199928 -157.133.92.0/24 60181 -157.133.93.0/24 199928 -157.133.94.0/23 199928 -157.133.96.0/20 133767 -157.133.112.0/20 12510 -157.133.128.0/21 202926 -157.133.136.0/23 202926 -157.133.138.0/24 202926 -157.133.139.0/24 60181 -157.133.140.0/22 202926 -157.133.144.0/20 135401 -157.133.160.0/23 35039 -157.133.165.0/24 138610 -157.133.166.0/23 6979 -157.133.168.0/23 133767 -157.133.170.0/23 202926 -157.133.176.0/22 6979 -157.133.180.0/23 6979 -157.133.182.0/23 135401 -157.133.184.0/23 393335 -157.133.186.0/23 135577 -157.133.188.0/22 393335 -157.133.192.0/21 135577 -157.133.200.0/21 205356 -157.133.208.0/23 16561 -157.133.212.0/24 135577 -157.133.213.0/24 60181 -157.133.214.0/24 12510 -157.133.215.0/24 6979 -157.133.224.0/22 203078 -157.133.228.0/24 203078 -157.133.232.0/23 397464 -157.133.234.0/23 133767 -157.133.236.0/24 135577 -157.133.237.0/24 201672 -157.133.238.0/24 12510 -157.133.239.0/24 397464 -157.133.240.0/21 266600 -157.134.0.0/16 600 -157.136.0.0/16 2200 -157.138.0.0/16 137 -157.139.0.0/16 20252 -157.140.0.0/16 786 -157.141.0.0/16 27064 -157.142.0.0/16 16922 -157.144.0.0/16 719 -157.145.212.0/24 20001 -157.147.0.0/16 2527 -157.148.0.0/20 17816 -157.148.16.0/21 17816 -157.148.24.0/21 136958 -157.148.32.0/20 136958 -157.148.48.0/22 136958 -157.148.52.0/23 136958 -157.148.54.0/24 136958 -157.148.55.0/24 17816 -157.148.56.0/21 17816 -157.148.64.0/18 17816 -157.148.128.0/17 17816 -157.149.0.0/16 3464 -157.150.0.0/19 22723 -157.150.32.0/24 2647 -157.150.33.0/24 22723 -157.150.34.0/24 2647 -157.150.35.0/24 22723 -157.150.36.0/22 22723 -157.150.40.0/21 22723 -157.150.48.0/20 22723 -157.150.64.0/18 22723 -157.150.128.0/19 22723 -157.150.160.0/20 22723 -157.150.176.0/21 22723 -157.150.184.0/24 22723 -157.150.185.0/24 2647 -157.150.186.0/23 22723 -157.150.188.0/22 22723 -157.150.192.0/24 2647 -157.150.193.0/24 22723 -157.150.194.0/23 22723 -157.150.196.0/22 22723 -157.150.200.0/21 22723 -157.150.208.0/20 22723 -157.150.224.0/20 22723 -157.150.240.0/23 28977 -157.150.242.0/23 22723 -157.150.244.0/22 22723 -157.150.248.0/21 22723 -157.151.0.0/16 23342 -157.154.3.0/24 21965 -157.154.4.0/22 21965 -157.154.8.0/24 21965 -157.154.11.0/24 21965 -157.155.0.0/17 17983 -157.155.128.0/18 17983 -157.155.192.0/19 17983 -157.155.224.0/20 38809 -157.155.240.0/20 17983 -157.156.0.0/16 17816 -157.157.0.0/18 6677 -157.157.64.0/20 6677 -157.157.80.0/22 6677 -157.157.84.0/23 6677 -157.157.86.0/24 6677 -157.157.87.0/24 206804 -157.157.88.0/21 6677 -157.157.96.0/19 6677 -157.157.128.0/17 6677 -157.158.0.0/16 8508 -157.159.0.0/23 2094 -157.159.2.0/24 2094 -157.159.3.0/24 2263 -157.159.4.0/22 2094 -157.159.8.0/21 2094 -157.159.16.0/20 2094 -157.159.32.0/19 2094 -157.159.64.0/18 2094 -157.159.128.0/17 2094 -157.160.0.0/16 22192 -157.161.0.0/16 6772 -157.164.0.0/16 49964 -157.165.0.0/16 7018 -157.166.126.0/24 25802 -157.166.128.0/24 40703 -157.166.137.0/24 47057 -157.166.143.0/24 40703 -157.166.146.0/23 5662 -157.166.148.0/24 47057 -157.166.149.0/24 395894 -157.166.150.0/23 47057 -157.166.160.0/20 40703 -157.166.176.0/23 40703 -157.166.180.0/24 40703 -157.166.183.0/24 40703 -157.166.184.0/24 40703 -157.166.191.0/24 40703 -157.166.208.0/24 40703 -157.166.216.0/21 40703 -157.166.224.0/19 5662 -157.167.1.0/24 13448 -157.167.2.0/23 13448 -157.167.10.0/23 44444 -157.167.12.0/22 44444 -157.167.16.0/21 44444 -157.167.24.0/23 44444 -157.167.26.0/24 44444 -157.167.27.0/24 7598 -157.167.28.0/22 7598 -157.167.32.0/22 7598 -157.167.36.0/22 44444 -157.167.40.0/21 44444 -157.167.48.0/21 44444 -157.167.56.0/24 44444 -157.167.57.0/24 35788 -157.167.58.0/23 44444 -157.167.60.0/22 44444 -157.167.64.0/20 44444 -157.167.80.0/21 44444 -157.167.88.0/24 7598 -157.167.89.0/24 44444 -157.167.90.0/23 44444 -157.167.92.0/22 44444 -157.167.96.0/19 44444 -157.167.200.0/24 44444 -157.169.0.0/16 2418 -157.173.224.0/19 41936 -157.174.0.0/16 26298 -157.175.0.0/16 16509 -157.178.0.0/16 15337 -157.179.6.0/24 55642 -157.180.239.0/24 3301 -157.180.240.0/21 3301 -157.180.248.0/24 3301 -157.181.0.0/16 2012 -157.182.0.0/16 12118 -157.185.32.0/21 773 -157.185.40.0/21 546 -157.185.56.0/21 773 -157.185.64.0/18 40702 -157.185.128.0/20 54994 -157.185.144.0/22 54994 -157.185.149.0/24 54994 -157.185.150.0/23 54994 -157.185.152.0/24 54994 -157.185.154.0/23 54994 -157.185.156.0/24 54994 -157.185.158.0/24 54994 -157.185.160.0/23 54994 -157.185.163.0/24 54994 -157.185.164.0/24 54994 -157.185.166.0/23 54994 -157.185.169.0/24 54994 -157.185.170.0/24 54994 -157.185.172.0/22 54994 -157.185.176.0/23 54994 -157.185.179.0/24 54994 -157.185.185.0/24 54994 -157.185.186.0/24 54994 -157.185.188.0/23 54994 -157.185.190.0/24 54994 -157.185.192.0/20 131914 -157.187.0.0/16 668 -157.188.0.0/16 22252 -157.189.16.0/24 2734 -157.189.18.0/24 2734 -157.189.192.0/20 2734 -157.190.0.0/16 1213 -157.191.12.0/24 23047 -157.191.28.0/24 23047 -157.191.50.0/24 23047 -157.191.95.0/24 23047 -157.191.122.0/23 53330 -157.191.178.0/23 265084 -157.191.240.0/22 265084 -157.192.0.0/16 4704 -157.193.0.0/16 2611 -157.197.64.0/18 6619 -157.197.128.0/20 6619 -157.197.144.0/21 6619 -157.197.160.0/19 6619 -157.197.224.0/19 6619 -157.199.0.0/18 3356 -157.199.64.0/19 3356 -157.199.96.0/20 4583 -157.199.112.0/20 3356 -157.199.128.0/17 3356 -157.200.0.0/16 1759 -157.201.0.0/16 33281 -157.203.6.0/23 21369 -157.203.36.0/23 21369 -157.203.40.0/22 21369 -157.203.48.0/23 21369 -157.203.52.0/23 21369 -157.203.56.0/22 21369 -157.203.60.0/23 21369 -157.203.62.0/24 21369 -157.203.120.0/24 21369 -157.203.142.0/23 21369 -157.203.176.0/22 21369 -157.203.180.0/23 21369 -157.203.242.0/23 21369 -157.203.254.0/23 21369 -157.204.0.0/16 54216 -157.205.0.0/16 17514 -157.206.0.0/16 36291 -157.207.0.0/20 53926 -157.207.64.0/22 53926 -157.208.128.0/20 54591 -157.208.157.0/24 262155 -157.208.192.0/19 12552 -157.208.240.0/20 54591 -157.211.0.0/16 7573 -157.225.0.0/18 10499 -157.225.64.0/19 10499 -157.225.96.0/20 2044 -157.225.112.0/20 10499 -157.225.128.0/18 10499 -157.225.192.0/20 54231 -157.225.208.0/20 10499 -157.225.224.0/19 10499 -157.228.0.0/16 786 -157.229.0.0/16 122 -157.230.0.0/16 14061 -157.231.0.0/16 31655 -157.233.0.0/16 20001 -157.234.0.0/18 7018 -157.234.64.0/19 7018 -157.234.96.0/20 7018 -157.234.112.0/21 7018 -157.234.120.0/24 19893 -157.234.121.0/24 209 -157.234.122.0/23 7018 -157.234.124.0/22 7018 -157.234.128.0/18 7018 -157.234.192.0/20 7018 -157.234.208.0/22 7018 -157.234.212.0/24 7018 -157.234.213.0/24 209 -157.234.214.0/24 19893 -157.234.215.0/24 7018 -157.234.216.0/24 9255 -157.234.217.0/24 7018 -157.234.218.0/24 46375 -157.234.219.0/24 7018 -157.234.220.0/22 7018 -157.234.224.0/19 7018 -157.235.0.0/16 33442 -157.237.0.0/16 2119 -157.238.0.0/18 2914 -157.238.64.0/21 2914 -157.238.72.0/23 2914 -157.238.74.0/23 20940 -157.238.76.0/22 2914 -157.238.80.0/24 2914 -157.238.81.0/24 20940 -157.238.82.0/23 2914 -157.238.84.0/22 2914 -157.238.88.0/21 2914 -157.238.96.0/19 2914 -157.238.128.0/21 2914 -157.238.136.0/21 19693 -157.238.144.0/20 2914 -157.238.160.0/20 2914 -157.238.176.0/23 2914 -157.238.178.0/24 174 -157.238.179.0/24 2914 -157.238.180.0/22 2914 -157.238.184.0/21 2914 -157.238.192.0/20 2914 -157.238.208.0/23 2914 -157.238.210.0/24 2914 -157.238.211.0/24 393536 -157.238.212.0/22 2914 -157.238.216.0/21 2914 -157.238.224.0/19 2914 -157.239.8.0/21 10968 -157.239.216.0/23 137476 -157.240.0.0/17 32934 -157.240.128.0/24 63293 -157.240.129.0/24 22909 -157.240.130.0/24 33668 -157.240.131.0/24 33652 -157.240.132.0/24 7015 -157.240.133.0/24 7016 -157.240.134.0/24 22909 -157.240.135.0/24 33668 -157.240.136.0/24 33652 -157.240.137.0/24 7015 -157.240.138.0/24 7016 -157.240.139.0/24 7725 -157.240.140.0/24 7725 -157.240.141.0/24 22258 -157.240.142.0/24 22258 -157.240.143.0/24 20214 -157.240.144.0/24 20214 -157.240.145.0/24 13367 -157.240.146.0/24 13367 -157.240.147.0/24 21508 -157.240.148.0/24 21508 -157.240.151.0/24 33667 -157.240.152.0/24 33667 -157.240.155.0/24 18592 -157.240.158.0/24 63293 -157.240.159.0/24 58469 -157.240.160.0/24 63293 -157.240.162.0/24 8966 -157.240.163.0/24 63293 -157.240.164.0/22 35819 -157.240.168.0/24 35819 -157.240.169.0/24 63293 -157.240.172.0/22 63293 -157.240.176.0/22 63293 -157.240.180.0/23 63293 -157.240.182.0/23 9498 -157.240.184.0/21 9498 -157.240.192.0/18 32934 -157.242.0.0/16 25789 -157.243.1.0/24 3215 -157.243.2.0/24 3215 -157.244.190.0/24 2665 -157.244.195.0/24 2653 -157.245.0.0/16 14061 -157.246.0.0/16 394271 -157.247.0.0/16 8447 -157.248.0.0/19 26190 -157.248.64.0/24 26190 -157.248.100.0/22 26190 -157.248.108.0/22 26190 -157.249.0.0/16 224 -157.250.24.0/21 53306 -157.250.32.0/19 53306 -157.250.64.0/20 2519 -157.250.80.0/21 2519 -157.250.96.0/20 2519 -157.250.128.0/19 2519 -157.250.160.0/20 2519 -157.250.176.0/21 2519 -157.250.240.0/20 58650 -157.252.0.0/16 3592 -157.253.0.0/16 3603 -157.254.48.0/21 11648 -157.254.174.0/24 7768 -157.254.176.0/20 7768 -157.254.208.0/21 7768 -157.254.217.0/24 11648 -157.254.229.0/24 4755 -157.255.0.0/23 136958 -157.255.2.0/23 17816 -157.255.4.0/22 17816 -157.255.8.0/21 136958 -157.255.16.0/24 17816 -157.255.17.0/24 136958 -157.255.18.0/24 136958 -157.255.19.0/24 17816 -157.255.20.0/22 136958 -157.255.24.0/23 136958 -157.255.26.0/24 136958 -157.255.27.0/24 17816 -157.255.28.0/22 136958 -157.255.32.0/19 136958 -157.255.64.0/20 136958 -157.255.80.0/20 17816 -157.255.96.0/20 17816 -157.255.112.0/21 17816 -157.255.120.0/21 134543 -157.255.128.0/19 134543 -157.255.160.0/21 17816 -157.255.168.0/21 135061 -157.255.176.0/22 135061 -157.255.180.0/24 135061 -157.255.181.0/24 17623 -157.255.182.0/23 17623 -157.255.184.0/21 17623 -157.255.192.0/19 17623 -157.255.224.0/20 135061 -157.255.240.0/23 135061 -157.255.242.0/24 135061 -157.255.243.0/24 17623 -157.255.244.0/22 17623 -157.255.248.0/21 17816 -158.0.0.0/16 721 -158.1.0.0/18 1457 -158.1.64.0/19 721 -158.1.96.0/22 721 -158.1.100.0/23 1457 -158.1.102.0/23 721 -158.1.104.0/21 721 -158.1.112.0/20 721 -158.1.128.0/24 1457 -158.1.129.0/24 721 -158.1.130.0/23 721 -158.1.132.0/22 721 -158.1.136.0/21 721 -158.1.144.0/20 721 -158.1.160.0/19 721 -158.1.192.0/18 721 -158.2.0.0/16 1541 -158.3.0.0/16 721 -158.4.0.0/16 1504 -158.5.0.0/16 1452 -158.6.0.0/16 1535 -158.7.0.0/16 1506 -158.8.0.0/16 5180 -158.9.0.0/20 721 -158.9.16.0/24 721 -158.9.17.0/24 272 -158.9.18.0/23 721 -158.9.20.0/22 721 -158.9.24.0/21 721 -158.9.32.0/22 1600 -158.9.36.0/24 1600 -158.9.37.0/24 721 -158.9.38.0/23 721 -158.9.40.0/21 721 -158.9.48.0/24 721 -158.9.49.0/24 1541 -158.9.50.0/23 721 -158.9.52.0/22 27064 -158.9.56.0/21 721 -158.9.64.0/22 1538 -158.9.68.0/22 721 -158.9.72.0/22 1538 -158.9.76.0/22 721 -158.9.80.0/21 1538 -158.9.88.0/21 721 -158.9.96.0/23 721 -158.9.98.0/24 721 -158.9.99.0/24 27064 -158.9.100.0/24 367 -158.9.101.0/24 1541 -158.9.102.0/24 1541 -158.9.103.0/24 721 -158.9.104.0/23 1494 -158.9.106.0/24 1494 -158.9.107.0/24 721 -158.9.108.0/22 721 -158.9.112.0/21 27064 -158.9.120.0/22 27064 -158.9.124.0/23 721 -158.9.126.0/24 1541 -158.9.127.0/24 1457 -158.9.128.0/23 367 -158.9.130.0/24 367 -158.9.131.0/24 721 -158.9.132.0/23 27064 -158.9.134.0/23 721 -158.9.136.0/24 1494 -158.9.137.0/24 721 -158.9.138.0/23 367 -158.9.140.0/23 721 -158.9.142.0/24 27064 -158.9.143.0/24 721 -158.9.144.0/22 721 -158.9.148.0/24 367 -158.9.149.0/24 27064 -158.9.150.0/24 721 -158.9.151.0/24 1495 -158.9.152.0/24 1541 -158.9.153.0/24 27064 -158.9.154.0/23 721 -158.9.156.0/24 1535 -158.9.157.0/24 721 -158.9.158.0/23 367 -158.9.160.0/24 1494 -158.9.161.0/24 27064 -158.9.162.0/24 721 -158.9.163.0/24 367 -158.9.164.0/22 721 -158.9.168.0/24 1541 -158.9.169.0/24 721 -158.9.170.0/23 721 -158.9.172.0/22 721 -158.9.176.0/23 721 -158.9.178.0/24 367 -158.9.179.0/24 721 -158.9.180.0/22 721 -158.9.184.0/23 721 -158.9.186.0/24 1458 -158.9.187.0/24 721 -158.9.188.0/24 272 -158.9.189.0/24 1541 -158.9.190.0/23 721 -158.9.192.0/24 1494 -158.9.193.0/24 721 -158.9.194.0/23 721 -158.9.196.0/23 721 -158.9.198.0/24 721 -158.9.199.0/24 367 -158.9.200.0/24 1504 -158.9.201.0/24 1479 -158.9.202.0/23 721 -158.9.204.0/23 721 -158.9.206.0/24 27064 -158.9.207.0/24 721 -158.9.208.0/23 367 -158.9.210.0/23 721 -158.9.212.0/22 721 -158.9.216.0/23 367 -158.9.218.0/23 721 -158.9.220.0/22 721 -158.9.224.0/24 721 -158.9.225.0/24 367 -158.9.226.0/23 721 -158.9.228.0/24 1453 -158.9.229.0/24 721 -158.9.230.0/24 721 -158.9.231.0/24 367 -158.9.232.0/24 1525 -158.9.233.0/24 721 -158.9.234.0/23 721 -158.9.236.0/22 721 -158.9.240.0/22 721 -158.9.244.0/23 721 -158.9.246.0/23 367 -158.9.248.0/22 721 -158.9.252.0/24 721 -158.9.253.0/24 367 -158.9.254.0/24 367 -158.9.255.0/24 1541 -158.10.0.0/16 721 -158.11.0.0/22 1541 -158.11.4.0/22 721 -158.11.8.0/21 721 -158.11.16.0/21 721 -158.11.24.0/22 721 -158.11.28.0/23 1541 -158.11.30.0/23 721 -158.11.32.0/22 1541 -158.11.36.0/22 721 -158.11.40.0/22 1541 -158.11.44.0/22 721 -158.11.48.0/20 721 -158.11.64.0/18 721 -158.11.128.0/17 721 -158.12.0.0/16 668 -158.13.120.0/21 27064 -158.13.128.0/21 1461 -158.13.136.0/21 1590 -158.13.154.0/24 1541 -158.13.155.0/24 721 -158.13.160.0/19 1494 -158.13.192.0/18 1489 -158.14.0.0/19 721 -158.14.32.0/20 721 -158.14.48.0/21 721 -158.14.56.0/22 721 -158.14.60.0/23 721 -158.14.62.0/23 1452 -158.14.64.0/22 721 -158.14.68.0/23 1541 -158.14.70.0/23 721 -158.14.72.0/23 721 -158.14.74.0/24 721 -158.14.75.0/24 1452 -158.14.76.0/22 1452 -158.14.80.0/21 1452 -158.14.88.0/21 721 -158.14.96.0/22 721 -158.14.100.0/22 1452 -158.14.104.0/21 721 -158.14.112.0/20 721 -158.14.128.0/18 721 -158.14.192.0/21 721 -158.14.200.0/22 721 -158.14.204.0/23 1452 -158.14.206.0/23 721 -158.14.208.0/20 721 -158.14.224.0/19 721 -158.15.0.0/16 300 -158.16.0.0/16 1504 -158.17.0.0/16 1524 -158.18.0.0/16 5180 -158.19.64.0/18 1600 -158.19.128.0/17 1464 -158.20.20.0/24 1541 -158.20.32.0/24 1482 -158.20.64.0/24 1482 -158.20.66.0/24 1482 -158.20.80.0/20 1482 -158.20.128.0/18 1482 -158.20.192.0/19 1482 -158.20.224.0/20 1482 -158.20.240.0/22 1482 -158.20.244.0/23 1482 -158.20.246.0/23 1541 -158.20.248.0/23 1541 -158.20.250.0/24 1541 -158.20.251.0/24 1482 -158.20.252.0/22 1482 -158.21.0.0/24 32033 -158.26.0.0/20 1766 -158.26.32.0/21 1766 -158.26.48.0/21 1766 -158.26.64.0/19 1766 -158.26.96.0/24 1766 -158.26.128.0/21 32033 -158.26.144.0/20 1766 -158.26.160.0/24 1766 -158.26.208.0/21 1766 -158.26.224.0/24 1766 -158.26.240.0/24 1766 -158.26.248.0/21 1766 -158.28.225.0/24 1766 -158.28.226.0/24 1766 -158.28.238.0/23 1766 -158.28.252.0/22 1766 -158.34.240.0/20 18253 -158.35.0.0/17 7018 -158.35.128.0/19 7018 -158.35.160.0/20 7018 -158.35.176.0/22 1766 -158.35.180.0/22 7018 -158.35.184.0/22 1766 -158.35.188.0/22 7018 -158.35.192.0/20 7018 -158.35.208.0/21 7018 -158.35.216.0/22 1766 -158.35.220.0/23 7018 -158.35.222.0/24 7018 -158.35.223.0/24 1766 -158.35.224.0/24 7018 -158.35.225.0/24 1766 -158.35.226.0/23 7018 -158.35.228.0/22 7018 -158.35.232.0/22 7018 -158.35.236.0/23 7018 -158.35.238.0/23 1766 -158.35.240.0/21 7018 -158.35.248.0/22 7018 -158.35.252.0/24 1766 -158.35.253.0/24 7018 -158.35.254.0/24 1766 -158.35.255.0/24 7018 -158.36.0.0/14 224 -158.40.0.0/16 17477 -158.41.32.0/21 1273 -158.42.0.0/16 766 -158.43.0.0/16 702 -158.44.0.0/16 9318 -158.45.0.0/22 1221 -158.45.13.0/24 1221 -158.45.14.0/24 1221 -158.45.60.0/22 1221 -158.45.100.0/24 1221 -158.45.104.0/24 1221 -158.45.112.0/24 1221 -158.45.116.0/24 1221 -158.45.120.0/24 1221 -158.46.0.0/17 39927 -158.46.128.0/21 57129 -158.46.136.0/21 9009 -158.46.144.0/20 9009 -158.46.160.0/20 57129 -158.46.176.0/22 9009 -158.46.180.0/24 57129 -158.46.181.0/24 35758 -158.46.182.0/23 9009 -158.46.184.0/21 9009 -158.46.192.0/22 9009 -158.46.200.0/21 9009 -158.46.208.0/20 9009 -158.46.224.0/20 39927 -158.46.240.0/21 39927 -158.46.248.0/23 39927 -158.46.252.0/22 39927 -158.47.0.0/16 12551 -158.48.0.0/16 32577 -158.49.0.0/16 766 -158.50.0.0/20 10806 -158.50.16.0/23 10806 -158.50.18.0/24 10806 -158.50.32.0/20 10806 -158.50.48.0/23 10806 -158.50.64.0/20 10806 -158.50.80.0/23 10806 -158.50.128.0/17 10806 -158.51.0.0/23 20119 -158.51.2.0/23 35871 -158.51.4.0/22 397324 -158.51.8.0/24 18439 -158.51.9.0/24 16509 -158.51.10.0/24 11478 -158.51.12.0/24 19437 -158.51.16.0/22 26073 -158.51.20.0/22 16934 -158.51.24.0/24 396264 -158.51.28.0/22 27404 -158.51.32.0/22 3131 -158.51.37.0/24 397651 -158.51.44.0/22 397735 -158.51.50.0/23 20119 -158.51.52.0/22 54980 -158.51.56.0/22 54816 -158.51.60.0/22 47002 -158.51.76.0/23 12243 -158.51.78.0/24 36369 -158.51.79.0/24 36236 -158.51.80.0/22 397046 -158.51.84.0/24 23470 -158.51.85.0/24 18450 -158.51.92.0/22 6939 -158.51.96.0/23 46844 -158.51.100.0/22 7018 -158.51.106.0/24 208188 -158.51.112.0/24 396503 -158.51.113.0/24 53356 -158.51.114.0/23 394102 -158.51.124.0/24 20150 -158.51.132.0/23 36326 -158.51.134.0/24 26457 -158.51.152.0/23 394356 -158.51.155.0/24 7871 -158.51.161.0/24 6939 -158.51.162.0/23 395688 -158.51.164.0/23 2386 -158.51.167.0/24 2386 -158.51.172.0/22 17138 -158.51.178.0/24 398206 -158.51.184.0/22 11821 -158.51.192.0/22 46886 -158.51.201.0/24 397805 -158.51.203.0/24 174 -158.51.212.0/22 396841 -158.51.220.0/22 394146 -158.51.228.0/22 54889 -158.51.236.0/24 19431 -158.51.252.0/22 53812 -158.52.0.0/16 11757 -158.57.0.0/16 1932 -158.58.0.0/17 197207 -158.58.128.0/21 47586 -158.58.136.0/21 35485 -158.58.144.0/21 25504 -158.58.152.0/21 198309 -158.58.160.0/21 6908 -158.58.168.0/22 49367 -158.58.172.0/23 49367 -158.58.175.0/24 49367 -158.58.176.0/21 39605 -158.58.184.0/21 57497 -158.58.192.0/18 43205 -158.59.0.0/17 25807 -158.59.128.0/17 46887 -158.61.0.0/16 46196 -158.62.197.0/24 2386 -158.63.0.0/16 22238 -158.64.0.0/16 2602 -158.65.0.0/16 29917 -158.66.0.0/16 21111 -158.67.0.0/16 21286 -158.69.0.0/16 16276 -158.70.0.0/21 26810 -158.70.8.0/21 7046 -158.70.16.0/23 26810 -158.70.18.0/23 7046 -158.70.20.0/23 7046 -158.70.22.0/23 26810 -158.70.24.0/22 7046 -158.70.28.0/23 7046 -158.70.30.0/23 26810 -158.70.32.0/24 26810 -158.70.33.0/24 7046 -158.70.34.0/23 7046 -158.70.36.0/22 7046 -158.70.40.0/22 7046 -158.70.44.0/22 26810 -158.70.48.0/20 26810 -158.70.64.0/19 26810 -158.70.96.0/20 26810 -158.70.112.0/24 26810 -158.70.113.0/24 7046 -158.70.114.0/23 26810 -158.70.116.0/22 26810 -158.70.120.0/21 26810 -158.70.128.0/21 7046 -158.70.136.0/22 7046 -158.70.140.0/22 26810 -158.70.144.0/23 26810 -158.70.146.0/23 7046 -158.70.148.0/22 26810 -158.70.152.0/21 26810 -158.70.160.0/21 26810 -158.70.168.0/22 26810 -158.70.172.0/23 26810 -158.70.174.0/24 7046 -158.70.175.0/24 26810 -158.70.176.0/20 26810 -158.70.192.0/18 26810 -158.71.0.0/17 26810 -158.71.128.0/18 26810 -158.72.0.0/16 26810 -158.73.0.0/16 19050 -158.74.0.0/19 26810 -158.74.32.0/22 26810 -158.74.36.0/23 26810 -158.74.38.0/24 19050 -158.74.39.0/24 26810 -158.74.40.0/21 26810 -158.74.48.0/20 26810 -158.74.64.0/18 26810 -158.74.128.0/17 26810 -158.75.0.0/17 12423 -158.75.128.0/17 35686 -158.80.0.0/21 20379 -158.80.8.0/24 12083 -158.80.9.0/24 237 -158.80.10.0/23 237 -158.80.12.0/22 237 -158.80.16.0/23 47052 -158.80.18.0/23 237 -158.80.20.0/22 237 -158.80.24.0/24 46418 -158.80.25.0/24 237 -158.80.26.0/23 237 -158.80.28.0/22 237 -158.80.32.0/21 237 -158.80.40.0/24 46419 -158.80.41.0/24 237 -158.80.42.0/23 237 -158.80.44.0/22 237 -158.80.48.0/21 237 -158.80.56.0/24 20039 -158.80.57.0/24 237 -158.80.58.0/23 237 -158.80.60.0/22 237 -158.80.64.0/24 46417 -158.80.65.0/24 237 -158.80.66.0/23 237 -158.80.68.0/22 237 -158.80.72.0/21 237 -158.80.80.0/24 46420 -158.80.81.0/24 237 -158.80.82.0/23 237 -158.80.84.0/22 237 -158.80.88.0/21 237 -158.80.96.0/19 237 -158.80.128.0/18 237 -158.80.192.0/20 237 -158.80.208.0/21 237 -158.80.216.0/21 393665 -158.80.224.0/19 237 -158.81.13.0/24 16746 -158.81.16.0/22 16746 -158.81.24.0/22 16746 -158.81.33.0/24 16746 -158.81.35.0/24 16746 -158.81.36.0/24 16746 -158.81.45.0/24 16746 -158.81.46.0/23 16746 -158.81.48.0/23 16746 -158.81.55.0/24 16746 -158.81.64.0/20 16746 -158.81.80.0/24 16746 -158.81.122.0/24 16746 -158.81.127.0/24 16746 -158.81.128.0/24 55102 -158.81.150.0/24 55102 -158.81.152.0/24 55102 -158.81.153.0/24 20404 -158.81.192.0/23 55102 -158.81.200.0/23 55102 -158.81.208.0/22 20404 -158.82.64.0/19 40196 -158.82.127.0/24 40196 -158.82.128.0/19 40196 -158.82.160.0/22 40196 -158.83.0.0/16 22192 -158.85.0.0/16 36351 -158.89.0.0/16 38327 -158.90.128.0/17 29282 -158.91.0.0/16 210 -158.93.0.0/16 3479 -158.94.0.0/16 786 -158.96.0.0/16 1226 -158.97.0.0/18 3640 -158.97.64.0/19 3640 -158.97.96.0/22 3640 -158.97.112.0/22 3640 -158.97.120.0/22 3640 -158.97.124.0/24 3640 -158.97.128.0/17 3640 -158.98.53.0/24 7004 -158.99.0.0/16 766 -158.101.0.0/18 31898 -158.101.128.0/19 31898 -158.101.160.0/20 31898 -158.101.192.0/18 31898 -158.102.0.0/16 2594 -158.103.0.0/16 33170 -158.104.0.0/16 29984 -158.105.0.0/16 28726 -158.106.0.0/19 26423 -158.106.32.0/22 26423 -158.106.36.0/23 11177 -158.106.38.0/23 26423 -158.106.40.0/21 26423 -158.106.48.0/20 26423 -158.106.64.0/23 23498 -158.106.66.0/24 23498 -158.106.67.0/24 62761 -158.106.68.0/22 23498 -158.106.72.0/21 23498 -158.106.80.0/21 23498 -158.106.88.0/22 23498 -158.106.92.0/24 23498 -158.106.93.0/24 29731 -158.106.94.0/23 23498 -158.106.96.0/23 23498 -158.106.98.0/24 394369 -158.106.99.0/24 23498 -158.106.100.0/23 23498 -158.106.102.0/24 15101 -158.106.103.0/24 23498 -158.106.104.0/21 23498 -158.106.112.0/21 23498 -158.106.120.0/24 394976 -158.106.121.0/24 23498 -158.106.122.0/23 23498 -158.106.124.0/22 23498 -158.106.128.0/20 63410 -158.106.184.0/21 393398 -158.106.192.0/19 46450 -158.106.224.0/21 17023 -158.106.232.0/24 17023 -158.106.239.0/24 17023 -158.106.248.0/21 26423 -158.107.0.0/16 7018 -158.108.0.0/16 9411 -158.109.0.0/16 13041 -158.110.0.0/16 137 -158.111.0.0/16 13611 -158.112.0.0/16 49278 -158.114.0.0/16 1906 -158.115.192.0/20 57976 -158.115.224.0/22 33083 -158.115.228.0/23 9009 -158.115.230.0/23 46261 -158.115.232.0/23 9009 -158.115.234.0/23 46261 -158.115.236.0/22 46261 -158.115.240.0/23 23470 -158.115.242.0/23 46261 -158.115.244.0/22 46261 -158.115.248.0/22 19437 -158.115.252.0/22 60558 -158.116.48.0/22 139211 -158.116.128.0/19 63284 -158.116.160.0/20 63284 -158.116.176.0/22 397269 -158.116.180.0/22 63284 -158.116.184.0/22 19320 -158.116.188.0/22 63284 -158.116.200.0/22 137061 -158.116.208.0/21 133327 -158.116.216.0/23 133327 -158.116.218.0/24 133327 -158.116.219.0/24 9583 -158.116.220.0/22 133327 -158.116.224.0/20 18882 -158.116.240.0/21 18882 -158.116.248.0/22 205142 -158.116.252.0/22 18882 -158.117.0.0/16 7246 -158.120.0.0/21 31756 -158.120.127.0/24 396047 -158.121.0.0/16 1968 -158.122.0.0/19 8151 -158.122.32.0/24 32098 -158.122.35.0/24 32098 -158.122.37.0/24 32098 -158.122.64.0/20 8151 -158.122.80.0/21 8151 -158.122.88.0/22 32098 -158.122.92.0/22 8151 -158.122.96.0/19 8151 -158.122.128.0/21 6332 -158.122.136.0/22 265575 -158.122.140.0/22 6332 -158.122.144.0/20 6332 -158.122.160.0/19 6332 -158.122.192.0/18 6332 -158.123.0.0/17 14325 -158.123.128.0/19 14464 -158.123.160.0/20 14464 -158.123.176.0/23 14464 -158.123.178.0/24 14325 -158.123.179.0/24 14464 -158.123.180.0/22 14464 -158.123.184.0/21 14464 -158.123.192.0/18 14464 -158.125.0.0/16 786 -158.126.5.0/24 3301 -158.126.62.0/24 3301 -158.126.240.0/24 3301 -158.126.242.0/24 3301 -158.126.247.0/24 3301 -158.126.248.0/23 3301 -158.127.152.0/22 719 -158.127.160.0/22 209875 -158.129.0.0/17 2847 -158.129.128.0/18 5479 -158.129.192.0/18 2847 -158.130.0.0/16 55 -158.132.0.0/16 4616 -158.135.0.0/16 33187 -158.136.0.0/16 27405 -158.140.0.0/21 11829 -158.140.8.0/24 40570 -158.140.16.0/20 12975 -158.140.32.0/19 394972 -158.140.64.0/22 51440 -158.140.68.0/23 51440 -158.140.70.0/24 51440 -158.140.71.0/24 12975 -158.140.72.0/21 12975 -158.140.80.0/20 12975 -158.140.96.0/19 12975 -158.140.128.0/20 56300 -158.140.144.0/22 56300 -158.140.148.0/23 56300 -158.140.150.0/24 56300 -158.140.151.0/24 133136 -158.140.152.0/22 133058 -158.140.156.0/23 56300 -158.140.159.0/24 56300 -158.140.160.0/19 63859 -158.140.192.0/20 9310 -158.140.208.0/21 9310 -158.140.216.0/22 9310 -158.140.223.0/24 9310 -158.140.224.0/20 133579 -158.140.240.0/22 133579 -158.140.244.0/23 133579 -158.140.252.0/22 9310 -158.142.0.0/16 36691 -158.143.0.0/16 786 -158.144.0.0/21 132524 -158.144.8.0/23 132524 -158.144.12.0/24 55824 -158.144.15.0/24 55824 -158.144.16.0/24 17762 -158.144.18.0/24 55824 -158.144.21.0/24 132524 -158.144.24.0/21 132524 -158.144.32.0/21 132524 -158.144.40.0/23 132524 -158.144.42.0/23 58758 -158.144.44.0/24 58758 -158.144.47.0/24 132524 -158.144.48.0/20 132524 -158.144.64.0/18 132524 -158.144.128.0/19 132524 -158.144.160.0/21 4755 -158.144.168.0/22 4755 -158.144.172.0/23 4755 -158.144.174.0/23 23770 -158.144.176.0/24 23770 -158.144.177.0/24 4755 -158.144.178.0/23 134322 -158.144.180.0/23 4755 -158.144.182.0/24 55824 -158.144.183.0/24 9829 -158.144.184.0/23 4755 -158.144.186.0/23 24186 -158.144.188.0/22 4755 -158.145.0.0/16 3724 -158.146.0.0/23 63255 -158.146.2.0/24 63255 -158.146.8.0/24 63255 -158.146.64.0/24 63255 -158.146.128.0/24 42326 -158.146.136.0/24 3257 -158.146.144.0/24 1221 -158.146.152.0/24 1221 -158.146.164.0/24 63255 -158.147.0.0/16 243 -158.148.0.0/16 16232 -158.149.0.0/16 29492 -158.150.0.0/16 2119 -158.151.193.0/24 26442 -158.151.200.0/23 26442 -158.151.206.0/23 26442 -158.151.208.0/23 26442 -158.151.214.0/23 26442 -158.151.216.0/23 26442 -158.151.222.0/23 26442 -158.151.224.0/23 26442 -158.151.228.0/24 26442 -158.151.230.0/23 26442 -158.151.232.0/23 26442 -158.151.238.0/23 26442 -158.151.240.0/22 26442 -158.151.252.0/22 26442 -158.152.0.0/16 2529 -158.154.0.0/16 297 -158.155.0.0/17 7018 -158.155.128.0/18 7018 -158.155.192.0/19 7018 -158.155.224.0/20 7018 -158.155.240.0/21 7018 -158.155.248.0/23 7018 -158.155.250.0/24 2687 -158.155.251.0/24 2686 -158.155.252.0/22 7018 -158.156.155.0/24 8220 -158.156.156.0/24 2830 -158.156.162.0/24 8220 -158.156.163.0/24 2830 -158.156.172.0/24 8220 -158.156.173.0/24 2830 -158.156.174.0/24 2830 -158.156.182.0/24 8220 -158.156.183.0/24 2830 -158.156.184.0/24 2830 -158.156.193.0/24 8220 -158.158.0.0/16 8075 -158.161.0.0/16 10094 -158.162.0.0/18 1930 -158.162.64.0/19 1930 -158.162.96.0/20 1930 -158.162.112.0/21 1930 -158.162.120.0/22 15525 -158.162.124.0/22 8609 -158.162.128.0/18 1930 -158.162.192.0/18 8220 -158.165.0.0/16 6377 -158.166.0.0/15 42848 -158.168.0.0/15 42848 -158.170.0.0/16 27897 -158.172.0.0/21 64411 -158.173.0.0/16 3292 -158.174.0.0/16 8473 -158.175.64.0/18 36351 -158.175.128.0/18 36351 -158.176.64.0/18 36351 -158.176.128.0/18 36351 -158.177.0.0/16 36351 -158.178.128.0/23 15830 -158.179.0.0/21 8897 -158.179.64.0/18 39550 -158.180.32.0/19 39550 -158.180.64.0/18 39550 -158.180.128.0/18 39550 -158.180.192.0/19 39550 -158.181.0.0/19 41750 -158.181.32.0/20 34170 -158.181.48.0/21 200062 -158.181.56.0/21 2914 -158.181.64.0/19 20880 -158.181.96.0/19 8821 -158.181.128.0/17 41750 -158.182.0.0/16 4605 -158.184.0.0/17 393938 -158.184.128.0/18 393938 -158.184.192.0/20 393938 -158.184.208.0/23 18874 -158.184.210.0/24 18874 -158.184.224.0/19 393938 -158.189.0.0/16 26577 -158.190.0.0/15 9159 -158.192.0.0/16 9159 -158.193.0.0/16 2607 -158.194.0.0/16 2852 -158.195.0.0/16 2607 -158.196.0.0/16 2852 -158.197.0.0/16 2607 -158.198.0.0/16 17511 -158.199.32.0/19 9605 -158.199.104.0/21 17698 -158.199.112.0/20 7690 -158.199.128.0/17 9597 -158.200.0.0/16 2522 -158.201.125.0/24 10010 -158.201.127.0/24 7524 -158.201.224.0/19 7524 -158.202.40.0/21 23795 -158.202.152.0/21 23795 -158.203.0.0/16 2907 -158.205.0.0/16 4694 -158.207.0.0/16 17676 -158.208.0.0/16 2907 -158.210.0.0/16 2907 -158.215.0.0/16 2907 -158.217.0.0/16 18276 -158.219.32.0/23 2274 -158.219.74.0/23 2274 -158.219.80.0/23 2274 -158.220.0.0/16 8556 -158.222.0.0/23 63119 -158.222.2.0/24 63119 -158.222.3.0/24 48950 -158.222.4.0/24 63119 -158.222.5.0/24 48950 -158.222.6.0/24 63119 -158.222.7.0/24 48950 -158.222.8.0/21 63119 -158.222.16.0/21 62523 -158.222.24.0/22 53610 -158.222.28.0/23 30036 -158.222.30.0/23 53610 -158.222.32.0/22 18812 -158.222.36.0/22 33339 -158.222.42.0/23 23387 -158.222.44.0/24 7065 -158.222.64.0/20 22316 -158.222.80.0/20 23036 -158.222.96.0/22 393969 -158.222.101.0/24 23387 -158.222.102.0/23 54548 -158.222.104.0/21 11290 -158.222.112.0/20 19084 -158.222.128.0/17 12271 -158.223.0.0/16 786 -158.224.16.0/23 40144 -158.224.56.0/24 40144 -158.225.0.0/16 702 -158.227.0.0/16 15488 -158.228.0.0/24 46269 -158.228.2.0/24 46269 -158.228.4.0/22 46269 -158.228.8.0/22 46269 -158.228.20.0/22 46269 -158.228.24.0/22 46269 -158.228.28.0/23 46269 -158.228.30.0/24 46269 -158.228.32.0/21 46269 -158.228.44.0/23 46269 -158.228.48.0/20 46269 -158.228.64.0/21 46269 -158.228.73.0/24 46269 -158.228.74.0/23 46269 -158.228.76.0/22 46269 -158.228.80.0/21 46269 -158.228.92.0/23 46269 -158.228.94.0/24 46269 -158.228.100.0/22 46269 -158.228.104.0/21 46269 -158.228.112.0/21 46269 -158.228.123.0/24 46269 -158.228.124.0/22 46269 -158.228.128.0/19 46269 -158.228.161.0/24 46269 -158.228.164.0/22 46269 -158.228.168.0/21 46269 -158.228.192.0/19 46269 -158.228.229.0/24 46269 -158.228.240.0/22 46269 -158.228.253.0/24 46269 -158.228.254.0/23 46269 -158.229.21.0/24 8103 -158.229.56.0/22 8103 -158.229.60.0/24 8103 -158.229.63.0/24 8103 -158.229.67.0/24 8103 -158.229.73.0/24 8103 -158.229.74.0/23 8103 -158.229.76.0/24 8103 -158.229.98.0/23 8103 -158.229.144.0/21 8103 -158.229.152.0/22 8103 -158.229.200.0/24 8103 -158.229.207.0/24 8103 -158.229.240.0/23 8103 -158.229.243.0/24 8103 -158.229.248.0/24 8103 -158.229.250.0/23 8103 -158.230.0.0/18 35228 -158.230.64.0/21 35228 -158.230.72.0/24 2830 -158.230.73.0/24 35228 -158.230.74.0/23 35228 -158.230.76.0/22 35228 -158.230.80.0/20 35228 -158.230.96.0/22 35228 -158.230.100.0/24 35228 -158.230.101.0/24 2830 -158.230.102.0/23 35228 -158.230.104.0/21 35228 -158.230.112.0/20 35228 -158.230.128.0/18 2830 -158.230.200.0/22 35228 -158.232.0.0/16 28810 -158.233.244.0/22 201271 -158.233.248.0/23 201271 -158.233.250.0/24 201271 -158.234.0.0/17 2856 -158.234.128.0/18 2856 -158.234.192.0/21 2856 -158.234.200.0/22 2856 -158.234.204.0/24 2856 -158.234.205.0/24 4755 -158.234.206.0/24 4755 -158.234.207.0/24 2856 -158.234.208.0/20 2856 -158.234.224.0/20 2856 -158.234.240.0/21 2856 -158.234.248.0/23 2856 -158.234.250.0/23 5089 -158.234.252.0/22 2856 -158.236.0.0/15 1540 -158.238.0.0/16 1540 -158.239.0.0/16 637 -158.240.0.0/19 721 -158.240.32.0/20 721 -158.240.48.0/20 1540 -158.240.64.0/23 1540 -158.240.66.0/23 721 -158.240.68.0/22 721 -158.240.72.0/21 721 -158.240.80.0/20 721 -158.240.96.0/19 721 -158.240.128.0/20 1540 -158.240.144.0/24 1540 -158.240.145.0/24 721 -158.240.146.0/23 721 -158.240.148.0/22 721 -158.240.152.0/21 1540 -158.240.160.0/21 1540 -158.240.168.0/22 721 -158.240.172.0/23 721 -158.240.174.0/23 1540 -158.240.176.0/23 721 -158.240.178.0/23 1540 -158.240.180.0/22 1540 -158.240.184.0/21 721 -158.240.192.0/21 1540 -158.240.200.0/21 721 -158.240.208.0/20 1540 -158.240.224.0/23 721 -158.240.226.0/23 1540 -158.240.228.0/22 721 -158.240.232.0/21 721 -158.240.240.0/21 1540 -158.240.248.0/21 721 -158.241.0.0/16 721 -158.242.0.0/16 721 -158.243.0.0/16 1540 -158.244.0.0/16 1540 -158.245.0.0/20 1540 -158.245.17.0/24 1540 -158.245.18.0/23 1540 -158.245.20.0/22 1540 -158.245.24.0/21 1540 -158.245.32.0/19 1540 -158.245.64.0/18 1540 -158.245.128.0/17 1540 -158.247.8.0/24 8159 -158.247.16.0/20 14618 -158.247.32.0/20 397976 -158.247.62.0/23 8159 -158.247.64.0/23 8159 -158.247.84.0/22 14453 -158.248.0.0/16 29695 -158.250.0.0/17 2683 -158.251.0.0/16 16742 -158.255.0.0/21 49335 -158.255.8.0/21 39179 -158.255.16.0/21 5588 -158.255.24.0/21 15962 -158.255.32.0/21 51248 -158.255.40.0/24 31727 -158.255.42.0/23 29550 -158.255.44.0/22 31727 -158.255.48.0/21 196742 -158.255.56.0/24 198285 -158.255.57.0/24 41898 -158.255.58.0/23 41898 -158.255.60.0/22 41898 -158.255.64.0/21 39104 -158.255.72.0/21 31367 -158.255.80.0/22 60904 -158.255.84.0/22 205070 -158.255.88.0/21 39288 -158.255.96.0/19 8218 -158.255.128.0/18 25513 -158.255.192.0/20 57507 -158.255.208.0/22 57169 -158.255.212.0/24 57169 -158.255.213.0/24 35017 -158.255.214.0/24 47447 -158.255.215.0/24 39326 -158.255.216.0/21 21195 -158.255.224.0/21 31727 -158.255.234.0/23 42947 -158.255.236.0/23 198192 -158.255.238.0/24 39020 -158.255.239.0/24 198193 -158.255.240.0/21 12874 -158.255.248.0/21 51653 -159.0.0.0/16 25019 -159.1.0.0/16 4193 -159.2.0.0/20 29979 -159.2.16.0/20 855 -159.2.32.0/19 855 -159.2.64.0/18 855 -159.2.128.0/17 855 -159.4.0.0/16 1906 -159.6.88.0/24 23498 -159.6.99.0/24 23498 -159.8.0.0/16 36351 -159.10.0.0/17 16983 -159.10.128.0/23 23084 -159.10.130.0/24 16983 -159.10.131.0/24 23084 -159.10.132.0/23 23084 -159.10.134.0/24 23084 -159.10.135.0/24 16983 -159.10.136.0/23 23084 -159.10.138.0/24 23084 -159.10.139.0/24 16983 -159.10.140.0/22 16983 -159.10.144.0/20 16983 -159.10.160.0/19 16983 -159.10.192.0/20 16983 -159.10.208.0/22 2856 -159.10.212.0/22 16983 -159.10.216.0/21 16983 -159.10.224.0/19 16983 -159.12.192.0/20 204284 -159.13.0.0/24 45956 -159.13.216.0/21 45956 -159.14.0.0/16 7328 -159.15.0.0/16 8897 -159.16.0.0/22 8151 -159.16.4.0/22 262914 -159.16.8.0/21 262914 -159.16.16.0/20 262914 -159.16.32.0/19 262914 -159.16.64.0/18 262914 -159.16.128.0/17 262914 -159.18.0.0/22 15290 -159.18.4.0/24 26753 -159.18.5.0/24 395282 -159.18.6.0/24 21570 -159.18.7.0/24 26753 -159.18.8.0/22 15290 -159.18.12.0/23 15290 -159.18.14.0/24 15290 -159.18.15.0/24 26753 -159.18.16.0/24 15290 -159.18.17.0/24 26753 -159.18.18.0/23 15290 -159.18.20.0/24 15290 -159.18.21.0/24 22863 -159.18.22.0/23 15290 -159.18.24.0/23 15290 -159.18.26.0/24 20045 -159.18.27.0/24 15290 -159.18.28.0/22 15290 -159.18.32.0/20 15290 -159.18.48.0/22 15290 -159.18.52.0/24 15290 -159.18.53.0/24 19086 -159.18.54.0/23 15290 -159.18.56.0/21 15290 -159.18.64.0/22 15290 -159.18.68.0/24 15290 -159.18.69.0/24 20453 -159.18.70.0/23 15290 -159.18.72.0/21 15290 -159.18.80.0/21 15290 -159.18.88.0/22 15290 -159.18.92.0/23 15290 -159.18.94.0/24 25797 -159.18.95.0/24 11628 -159.18.96.0/22 15290 -159.18.100.0/23 15290 -159.18.102.0/24 15290 -159.18.103.0/24 25797 -159.18.104.0/21 15290 -159.18.112.0/20 15290 -159.18.128.0/24 15290 -159.18.129.0/24 46129 -159.18.130.0/24 15290 -159.18.131.0/24 46129 -159.18.132.0/22 15290 -159.18.136.0/24 15290 -159.18.137.0/24 23227 -159.18.138.0/23 15290 -159.18.140.0/22 15290 -159.18.144.0/24 15290 -159.18.145.0/24 54085 -159.18.146.0/23 15290 -159.18.148.0/23 15290 -159.18.150.0/24 15290 -159.18.151.0/24 21774 -159.18.152.0/23 15290 -159.18.154.0/24 53737 -159.18.155.0/24 15290 -159.18.156.0/22 15290 -159.18.160.0/24 15290 -159.18.161.0/24 11814 -159.18.162.0/23 15290 -159.18.164.0/22 15290 -159.18.168.0/22 15290 -159.18.172.0/24 394976 -159.18.173.0/24 15290 -159.18.174.0/24 15290 -159.18.175.0/24 40560 -159.18.176.0/23 15290 -159.18.178.0/24 21774 -159.18.179.0/24 394976 -159.18.180.0/22 15290 -159.18.184.0/24 54085 -159.18.185.0/24 29731 -159.18.186.0/23 15290 -159.18.188.0/24 15290 -159.18.189.0/24 21774 -159.18.190.0/24 54719 -159.18.191.0/24 32662 -159.18.192.0/23 15290 -159.18.194.0/24 15290 -159.18.195.0/24 29731 -159.18.196.0/22 15290 -159.18.200.0/21 15290 -159.18.208.0/21 15290 -159.18.216.0/23 29731 -159.18.218.0/23 15290 -159.18.220.0/23 19086 -159.18.222.0/23 15290 -159.18.224.0/21 15290 -159.18.232.0/23 15290 -159.18.234.0/24 17088 -159.18.235.0/24 15290 -159.18.236.0/22 15290 -159.18.240.0/22 15290 -159.18.244.0/23 15290 -159.18.246.0/24 40560 -159.18.247.0/24 15290 -159.18.248.0/24 46720 -159.18.249.0/24 17025 -159.18.250.0/24 17025 -159.18.251.0/24 15290 -159.18.252.0/22 15290 -159.19.0.0/16 10921 -159.20.0.0/21 29266 -159.20.8.0/21 42117 -159.20.16.0/21 20875 -159.20.24.0/23 33874 -159.20.26.0/24 33874 -159.20.28.0/22 33874 -159.20.32.0/19 44574 -159.20.64.0/19 12908 -159.20.96.0/20 39308 -159.20.112.0/24 198417 -159.20.113.0/24 34984 -159.20.114.0/24 34984 -159.20.115.0/24 198417 -159.20.116.0/24 198417 -159.20.120.0/21 39155 -159.20.128.0/17 48291 -159.21.0.0/18 62982 -159.21.64.0/22 62195 -159.21.68.0/22 62982 -159.21.72.0/22 62982 -159.21.76.0/22 62195 -159.21.80.0/20 62982 -159.21.96.0/19 62982 -159.21.128.0/22 133188 -159.21.132.0/22 62982 -159.21.136.0/22 62982 -159.21.140.0/22 133188 -159.21.144.0/20 62982 -159.21.160.0/19 62982 -159.21.192.0/18 62982 -159.22.0.0/16 200544 -159.23.64.0/18 36351 -159.24.64.0/20 3378 -159.25.0.0/16 5517 -159.26.40.0/22 13900 -159.26.64.0/22 13900 -159.26.68.0/24 13900 -159.26.70.0/23 13900 -159.26.120.0/21 13900 -159.26.176.0/22 13900 -159.26.223.0/24 13900 -159.26.224.0/24 13900 -159.26.225.0/24 7349 -159.26.226.0/24 7349 -159.26.233.0/24 13900 -159.26.239.0/24 13900 -159.26.240.0/22 13900 -159.26.248.0/23 13900 -159.27.0.0/16 8075 -159.28.0.0/18 397356 -159.28.64.0/18 2527 -159.28.128.0/17 2527 -159.29.32.0/20 15513 -159.29.64.0/20 15513 -159.31.0.0/16 199749 -159.33.0.0/19 27324 -159.33.33.0/24 27324 -159.33.34.0/23 27324 -159.33.36.0/23 27324 -159.33.38.0/24 27324 -159.33.40.0/24 27324 -159.33.45.0/24 27324 -159.33.64.0/19 32563 -159.33.128.0/19 32563 -159.33.160.0/19 32956 -159.35.0.0/16 53604 -159.36.0.0/16 30449 -159.37.0.0/16 10837 -159.38.0.0/16 19399 -159.39.0.0/16 2048 -159.41.0.0/16 11757 -159.43.254.0/24 209 -159.45.0.0/18 10837 -159.45.64.0/18 4196 -159.45.128.0/19 4196 -159.45.160.0/19 10837 -159.45.192.0/19 4196 -159.45.224.0/21 2011 -159.45.232.0/21 4196 -159.45.249.0/24 4243 -159.45.250.0/23 4243 -159.45.254.0/23 4243 -159.46.192.0/20 29311 -159.48.0.0/16 11351 -159.49.0.0/19 29702 -159.49.32.0/22 29702 -159.49.36.0/24 29750 -159.49.37.0/24 29702 -159.49.38.0/23 29702 -159.49.40.0/22 29702 -159.49.44.0/23 29702 -159.49.46.0/23 10966 -159.49.48.0/20 29702 -159.49.64.0/19 29702 -159.49.96.0/20 29702 -159.49.112.0/21 29702 -159.49.120.0/23 29702 -159.49.122.0/24 29750 -159.49.123.0/24 29702 -159.49.124.0/22 29702 -159.49.128.0/20 29702 -159.49.144.0/22 29702 -159.49.148.0/24 29750 -159.49.149.0/24 29702 -159.49.150.0/23 29702 -159.49.152.0/21 29702 -159.49.160.0/19 29702 -159.49.192.0/19 29702 -159.49.224.0/22 29702 -159.49.228.0/22 29750 -159.49.232.0/21 29702 -159.49.240.0/23 29750 -159.49.242.0/23 29702 -159.49.244.0/22 29702 -159.49.248.0/23 29702 -159.49.250.0/24 29702 -159.49.251.0/24 29750 -159.49.252.0/24 29702 -159.49.253.0/24 29750 -159.49.254.0/24 29750 -159.49.255.0/24 10966 -159.50.0.0/18 25215 -159.50.64.0/19 25215 -159.50.96.0/20 25215 -159.50.112.0/21 25215 -159.50.120.0/22 25215 -159.50.124.0/24 210043 -159.50.125.0/24 25215 -159.50.126.0/23 25215 -159.50.128.0/17 25215 -159.51.0.0/16 20561 -159.52.0.0/16 4826 -159.53.0.0/17 7743 -159.53.128.0/18 7743 -159.53.192.0/19 7743 -159.53.224.0/21 10934 -159.53.232.0/22 10934 -159.53.236.0/24 10934 -159.53.237.0/24 7743 -159.53.238.0/24 7743 -159.53.239.0/24 3356 -159.53.240.0/20 7743 -159.54.5.0/24 40768 -159.54.6.0/24 394184 -159.54.12.0/24 33754 -159.54.13.0/24 18912 -159.54.14.0/24 46410 -159.54.15.0/24 4879 -159.54.16.0/24 23403 -159.54.18.0/23 18727 -159.54.20.0/24 23111 -159.54.21.0/24 701 -159.54.22.0/24 7142 -159.54.31.0/24 21735 -159.54.32.0/19 21735 -159.54.97.0/24 10796 -159.54.112.0/20 14446 -159.54.128.0/19 21735 -159.54.224.0/19 21735 -159.55.188.0/23 16729 -159.58.0.0/16 3292 -159.61.29.0/24 7018 -159.61.80.0/24 24771 -159.61.192.0/24 7046 -159.61.240.0/24 2386 -159.61.248.0/24 2386 -159.61.250.0/24 2386 -159.62.0.0/16 7834 -159.63.0.0/23 46887 -159.63.2.0/24 16657 -159.63.3.0/24 19917 -159.63.4.0/22 46887 -159.63.8.0/24 31972 -159.63.9.0/24 3549 -159.63.10.0/23 3549 -159.63.12.0/22 3549 -159.63.16.0/20 3549 -159.63.32.0/19 3549 -159.63.64.0/20 3549 -159.63.80.0/21 3549 -159.63.88.0/24 3549 -159.63.89.0/24 31972 -159.63.90.0/24 31972 -159.63.91.0/24 3549 -159.63.92.0/22 3549 -159.63.96.0/19 3549 -159.63.128.0/22 13876 -159.63.132.0/23 33738 -159.63.134.0/23 13876 -159.63.136.0/21 13876 -159.63.144.0/22 13876 -159.63.148.0/23 3549 -159.63.150.0/24 13876 -159.63.151.0/24 3549 -159.63.152.0/21 3549 -159.63.160.0/23 3549 -159.63.162.0/24 3549 -159.63.163.0/24 3356 -159.63.164.0/22 3549 -159.63.168.0/21 3549 -159.63.176.0/23 3257 -159.63.178.0/24 3257 -159.63.179.0/24 3356 -159.63.180.0/24 3356 -159.63.181.0/24 3257 -159.63.182.0/23 3257 -159.63.184.0/21 20077 -159.63.192.0/19 3549 -159.63.224.0/20 3549 -159.63.240.0/21 3549 -159.63.248.0/22 3549 -159.64.0.0/16 32982 -159.65.0.0/16 14061 -159.66.0.0/24 30175 -159.66.4.0/24 30175 -159.66.10.0/24 30175 -159.66.14.0/23 30175 -159.66.64.0/24 30175 -159.66.68.0/24 30175 -159.66.72.0/24 30175 -159.66.160.0/23 30175 -159.66.162.0/24 30175 -159.66.164.0/22 30175 -159.66.168.0/21 30175 -159.66.220.0/23 30175 -159.66.222.0/24 30175 -159.66.224.0/24 30175 -159.66.228.0/23 30175 -159.66.232.0/24 30175 -159.66.234.0/24 30175 -159.66.236.0/23 30175 -159.66.238.0/24 30175 -159.66.240.0/24 30175 -159.66.242.0/23 30175 -159.66.244.0/24 30175 -159.66.246.0/24 30175 -159.69.0.0/16 24940 -159.71.0.0/16 5972 -159.72.0.0/17 1257 -159.72.128.0/21 29217 -159.72.136.0/23 29217 -159.72.138.0/24 29217 -159.72.192.0/18 1257 -159.77.0.0/24 721 -159.77.1.0/24 492 -159.77.2.0/23 721 -159.77.4.0/22 492 -159.77.8.0/22 492 -159.77.12.0/22 721 -159.77.16.0/20 721 -159.77.32.0/19 721 -159.77.64.0/18 721 -159.77.128.0/24 492 -159.77.129.0/24 721 -159.77.130.0/23 721 -159.77.132.0/22 721 -159.77.136.0/23 721 -159.77.138.0/24 492 -159.77.139.0/24 721 -159.77.140.0/22 721 -159.77.144.0/22 721 -159.77.148.0/22 492 -159.77.152.0/21 721 -159.77.160.0/19 721 -159.77.192.0/18 721 -159.78.66.0/24 4911 -159.78.68.0/22 4911 -159.78.72.0/23 4911 -159.78.74.0/24 4911 -159.81.0.0/16 3292 -159.82.0.0/20 16928 -159.82.80.0/20 16928 -159.82.96.0/21 16928 -159.82.128.0/21 16928 -159.82.144.0/20 16928 -159.82.160.0/20 16928 -159.82.200.0/21 16928 -159.82.208.0/20 16928 -159.83.0.0/16 11188 -159.84.0.0/16 1945 -159.86.128.0/18 786 -159.87.0.0/16 30449 -159.89.0.0/19 14061 -159.89.32.0/20 14061 -159.89.48.0/21 14061 -159.89.58.0/23 14061 -159.89.60.0/22 14061 -159.89.64.0/18 14061 -159.89.128.0/17 14061 -159.90.0.0/16 11694 -159.91.0.0/16 21976 -159.92.128.0/17 14340 -159.93.0.0/16 2875 -159.94.0.0/16 26577 -159.95.0.0/16 20617 -159.98.0.0/18 3371 -159.98.64.0/21 3371 -159.98.72.0/21 3378 -159.98.80.0/20 3371 -159.98.96.0/21 3371 -159.98.104.0/21 3378 -159.98.112.0/22 3378 -159.98.116.0/22 3371 -159.98.120.0/21 3371 -159.98.128.0/17 3371 -159.99.91.0/24 7474 -159.100.0.0/20 44066 -159.100.16.0/21 44066 -159.100.24.0/22 203833 -159.100.28.0/22 44066 -159.100.32.0/20 201325 -159.100.52.0/23 26857 -159.100.54.0/24 205019 -159.100.56.0/23 205019 -159.100.58.0/24 26857 -159.100.59.0/24 205019 -159.100.64.0/18 33915 -159.100.128.0/19 13768 -159.100.160.0/23 53766 -159.100.163.0/24 53766 -159.100.164.0/24 53766 -159.100.168.0/24 53766 -159.100.176.0/21 36351 -159.100.184.0/22 36351 -159.100.188.0/23 36351 -159.100.190.0/24 36351 -159.100.192.0/20 11179 -159.100.208.0/22 13382 -159.100.224.0/20 202167 -159.100.240.0/20 61098 -159.101.128.0/21 197972 -159.101.158.0/23 197972 -159.101.236.0/22 22562 -159.101.240.0/22 22562 -159.101.244.0/22 43422 -159.101.248.0/21 43422 -159.103.0.0/16 13283 -159.104.0.0/16 16050 -159.105.0.0/16 11577 -159.107.0.0/16 158 -159.108.0.0/16 2024 -159.110.0.0/22 19113 -159.110.4.0/22 3356 -159.110.8.0/21 19113 -159.110.16.0/20 19113 -159.110.32.0/19 19113 -159.110.64.0/18 19113 -159.110.128.0/22 3356 -159.110.132.0/22 19113 -159.110.136.0/21 19113 -159.110.144.0/20 19113 -159.110.160.0/19 19113 -159.110.192.0/18 19113 -159.111.0.0/21 33588 -159.111.8.0/22 33588 -159.111.48.0/20 8052 -159.113.60.0/24 16860 -159.113.101.0/24 7018 -159.113.102.0/24 7018 -159.113.109.0/24 7018 -159.113.111.0/24 7018 -159.113.118.0/24 7018 -159.113.120.0/24 7018 -159.113.200.0/21 16860 -159.113.210.0/23 16860 -159.113.250.0/23 16860 -159.115.0.0/16 10294 -159.116.0.0/16 53280 -159.117.1.0/24 23655 -159.117.48.0/20 36105 -159.117.64.0/19 18046 -159.117.132.0/22 133847 -159.117.136.0/21 133847 -159.117.144.0/21 17439 -159.117.160.0/23 21565 -159.117.163.0/24 21565 -159.117.164.0/22 21565 -159.117.168.0/21 21565 -159.117.176.0/20 21565 -159.117.192.0/21 47254 -159.117.201.0/24 133847 -159.117.202.0/23 47254 -159.117.204.0/22 47254 -159.117.208.0/21 394493 -159.117.216.0/23 394493 -159.117.218.0/24 7029 -159.117.219.0/24 394493 -159.117.224.0/19 9269 -159.118.0.0/19 11492 -159.118.32.0/21 11492 -159.118.40.0/22 11492 -159.118.45.0/24 11492 -159.118.46.0/23 11492 -159.118.48.0/20 11492 -159.118.64.0/19 11492 -159.118.96.0/20 11492 -159.118.112.0/23 11492 -159.118.114.0/24 11492 -159.118.116.0/22 11492 -159.118.120.0/21 11492 -159.118.128.0/18 11492 -159.118.192.0/20 11492 -159.118.208.0/21 11492 -159.118.216.0/23 11492 -159.118.219.0/24 11492 -159.118.220.0/22 11492 -159.118.224.0/19 11492 -159.121.0.0/16 1798 -159.122.0.0/16 36351 -159.123.127.0/24 11452 -159.123.192.0/18 30459 -159.124.0.0/16 16983 -159.125.50.0/23 26585 -159.125.60.0/24 26585 -159.125.78.0/23 26585 -159.126.0.0/24 40088 -159.126.40.0/24 812 -159.127.8.0/24 19137 -159.127.31.0/24 209 -159.127.32.0/24 3356 -159.127.40.0/22 25751 -159.127.64.0/23 396292 -159.127.67.0/24 396292 -159.127.68.0/23 396292 -159.127.70.0/24 396292 -159.127.72.0/21 396292 -159.127.82.0/24 396292 -159.127.84.0/23 396292 -159.127.88.0/23 396292 -159.127.90.0/24 19137 -159.127.92.0/23 396292 -159.127.94.0/24 396292 -159.127.104.0/22 19834 -159.127.113.0/24 3356 -159.127.162.0/23 19137 -159.127.182.0/23 19137 -159.127.184.0/21 19137 -159.127.196.0/23 19137 -159.127.198.0/24 19137 -159.127.199.0/24 21935 -159.127.207.0/24 19137 -159.127.208.0/21 19137 -159.127.218.0/23 19137 -159.130.0.0/24 3292 -159.130.8.0/22 3292 -159.130.32.0/22 3292 -159.130.64.0/23 3292 -159.130.66.0/24 3292 -159.130.68.0/23 3292 -159.130.70.0/24 3292 -159.130.72.0/23 3292 -159.130.126.0/24 3292 -159.130.128.0/17 3292 -159.132.22.0/23 6941 -159.132.24.0/23 6941 -159.132.160.0/19 14045 -159.133.0.0/16 1778 -159.134.0.0/16 5466 -159.135.0.0/19 53824 -159.135.32.0/20 53824 -159.135.48.0/20 32244 -159.135.112.0/24 19994 -159.135.128.0/19 39921 -159.135.224.0/22 19994 -159.135.228.0/24 19994 -159.135.229.0/24 33070 -159.135.230.0/23 33070 -159.135.232.0/23 33070 -159.135.234.0/23 27357 -159.135.236.0/22 27357 -159.135.241.0/24 33439 -159.135.250.0/23 33070 -159.135.254.0/24 27357 -159.136.4.0/22 11517 -159.136.22.0/23 11517 -159.136.24.0/22 11517 -159.136.32.0/19 11517 -159.136.124.0/23 11517 -159.136.145.0/24 11517 -159.136.220.0/23 11517 -159.136.224.0/23 11517 -159.136.227.0/24 11517 -159.136.245.0/24 11517 -159.136.248.0/23 11517 -159.137.48.0/22 7358 -159.137.52.0/24 7358 -159.137.136.0/24 26442 -159.137.141.0/24 26442 -159.137.146.0/24 26442 -159.137.178.0/23 2830 -159.137.180.0/23 2830 -159.137.208.0/21 26442 -159.137.225.0/24 394901 -159.137.226.0/24 394901 -159.137.244.0/24 2830 -159.137.248.0/22 394901 -159.138.0.0/18 136907 -159.138.64.0/21 136907 -159.138.76.0/23 136907 -159.138.79.0/24 136907 -159.138.80.0/20 136907 -159.138.96.0/20 136907 -159.138.112.0/21 136907 -159.138.125.0/24 136907 -159.138.128.0/18 136907 -159.138.192.0/20 136907 -159.138.208.0/21 136907 -159.138.223.0/24 131444 -159.138.224.0/19 136907 -159.140.0.0/22 36502 -159.140.4.0/22 17264 -159.140.8.0/21 36502 -159.140.104.0/22 36502 -159.140.142.0/23 17264 -159.140.192.0/22 17264 -159.140.198.0/24 17264 -159.140.204.0/22 17264 -159.140.212.0/22 36502 -159.140.244.0/24 17264 -159.140.252.0/24 36502 -159.140.254.0/24 36502 -159.142.0.0/19 2714 -159.142.32.0/22 2714 -159.142.36.0/23 2714 -159.142.38.0/23 7046 -159.142.40.0/23 2714 -159.142.42.0/23 7046 -159.142.44.0/22 2714 -159.142.48.0/20 2714 -159.142.64.0/22 2714 -159.142.68.0/23 2714 -159.142.70.0/24 7046 -159.142.71.0/24 2714 -159.142.72.0/24 7046 -159.142.73.0/24 2714 -159.142.74.0/23 7046 -159.142.76.0/22 7046 -159.142.80.0/23 2714 -159.142.82.0/24 2714 -159.142.83.0/24 7046 -159.142.84.0/24 2714 -159.142.85.0/24 7046 -159.142.86.0/23 2714 -159.142.88.0/23 7046 -159.142.90.0/24 7046 -159.142.91.0/24 2714 -159.142.92.0/24 7046 -159.142.93.0/24 2714 -159.142.94.0/23 2714 -159.142.96.0/22 2714 -159.142.100.0/24 2714 -159.142.101.0/24 7046 -159.142.102.0/24 7046 -159.142.103.0/24 2714 -159.142.104.0/24 7046 -159.142.105.0/24 2714 -159.142.106.0/24 2714 -159.142.107.0/24 7046 -159.142.108.0/24 7046 -159.142.109.0/24 2714 -159.142.110.0/23 2714 -159.142.112.0/20 2714 -159.142.128.0/21 2714 -159.142.136.0/23 2714 -159.142.138.0/24 2714 -159.142.139.0/24 7046 -159.142.140.0/22 2714 -159.142.144.0/23 2714 -159.142.146.0/24 7046 -159.142.147.0/24 2714 -159.142.148.0/22 2714 -159.142.152.0/21 2714 -159.142.160.0/22 2714 -159.142.164.0/23 2714 -159.142.166.0/24 7046 -159.142.167.0/24 2714 -159.142.168.0/24 7046 -159.142.169.0/24 2714 -159.142.170.0/23 2714 -159.142.172.0/22 2714 -159.142.176.0/23 2714 -159.142.178.0/24 2714 -159.142.179.0/24 7046 -159.142.180.0/22 2714 -159.142.184.0/21 2714 -159.142.192.0/22 2714 -159.142.196.0/23 2714 -159.142.198.0/24 7046 -159.142.199.0/24 2714 -159.142.200.0/22 2714 -159.142.204.0/24 7046 -159.142.205.0/24 2714 -159.142.206.0/23 2714 -159.142.208.0/20 2714 -159.142.224.0/20 2714 -159.142.240.0/21 2714 -159.142.248.0/24 2714 -159.142.249.0/24 7046 -159.142.250.0/23 2714 -159.142.252.0/22 2714 -159.143.0.0/23 6105 -159.144.0.0/16 34578 -159.145.0.0/16 1226 -159.146.0.0/20 12735 -159.146.16.0/23 12735 -159.146.18.0/24 12735 -159.146.20.0/23 12735 -159.146.23.0/24 12735 -159.146.24.0/21 12735 -159.146.32.0/20 12735 -159.146.48.0/21 12735 -159.146.56.0/23 12735 -159.146.58.0/24 12735 -159.146.59.0/24 29399 -159.146.60.0/22 12735 -159.146.65.0/24 12735 -159.146.66.0/23 12735 -159.146.68.0/22 12735 -159.146.72.0/21 12735 -159.146.80.0/20 12735 -159.146.96.0/22 12735 -159.146.101.0/24 12735 -159.146.102.0/23 12735 -159.146.104.0/21 12735 -159.146.112.0/21 12735 -159.146.120.0/22 12735 -159.146.124.0/24 60946 -159.146.126.0/23 12735 -159.147.0.0/16 12430 -159.148.0.0/20 2588 -159.148.16.0/22 2588 -159.148.20.0/23 2588 -159.148.22.0/24 2588 -159.148.23.0/24 20548 -159.148.24.0/23 2588 -159.148.26.0/24 2588 -159.148.27.0/24 199558 -159.148.28.0/23 2588 -159.148.30.0/24 44242 -159.148.31.0/24 2588 -159.148.32.0/19 2588 -159.148.64.0/21 2588 -159.148.72.0/24 2588 -159.148.73.0/24 59993 -159.148.74.0/24 59993 -159.148.75.0/24 2588 -159.148.76.0/24 2588 -159.148.77.0/24 59993 -159.148.78.0/23 2588 -159.148.80.0/23 2588 -159.148.82.0/24 35685 -159.148.83.0/24 2588 -159.148.84.0/22 2588 -159.148.88.0/24 2588 -159.148.89.0/24 199558 -159.148.90.0/24 15818 -159.148.91.0/24 2588 -159.148.92.0/22 2588 -159.148.96.0/23 2588 -159.148.98.0/24 59993 -159.148.99.0/24 207689 -159.148.100.0/23 2588 -159.148.102.0/24 43513 -159.148.103.0/24 2588 -159.148.104.0/21 2588 -159.148.112.0/22 2588 -159.148.116.0/23 2588 -159.148.118.0/24 2588 -159.148.119.0/24 60066 -159.148.120.0/24 2588 -159.148.121.0/24 59993 -159.148.122.0/24 2588 -159.148.123.0/24 15899 -159.148.124.0/24 56560 -159.148.125.0/24 2588 -159.148.126.0/23 2588 -159.148.128.0/24 2588 -159.148.129.0/24 59993 -159.148.130.0/23 2588 -159.148.132.0/23 2588 -159.148.134.0/24 59993 -159.148.135.0/24 2588 -159.148.136.0/24 2588 -159.148.137.0/24 38939 -159.148.138.0/23 2588 -159.148.140.0/24 59993 -159.148.141.0/24 2588 -159.148.142.0/24 2588 -159.148.143.0/24 59993 -159.148.144.0/24 6832 -159.148.145.0/24 2588 -159.148.146.0/24 2588 -159.148.147.0/24 51894 -159.148.148.0/24 2588 -159.148.149.0/24 59993 -159.148.150.0/23 2588 -159.148.152.0/22 2588 -159.148.156.0/23 2588 -159.148.158.0/24 2588 -159.148.159.0/24 59993 -159.148.160.0/24 15483 -159.148.161.0/24 2588 -159.148.162.0/23 2588 -159.148.164.0/22 2588 -159.148.168.0/22 2588 -159.148.172.0/24 51894 -159.148.173.0/24 202221 -159.148.174.0/24 202221 -159.148.175.0/24 2588 -159.148.176.0/22 2588 -159.148.180.0/23 2588 -159.148.182.0/23 59993 -159.148.184.0/24 2588 -159.148.185.0/24 59993 -159.148.186.0/24 200709 -159.148.187.0/24 2588 -159.148.188.0/23 2588 -159.148.190.0/24 2588 -159.148.191.0/24 60324 -159.148.192.0/22 2588 -159.148.196.0/24 2588 -159.148.197.0/24 201574 -159.148.198.0/23 43513 -159.148.200.0/24 43513 -159.148.201.0/24 2588 -159.148.202.0/23 2588 -159.148.204.0/22 2588 -159.148.208.0/24 15684 -159.148.209.0/24 2588 -159.148.210.0/23 2588 -159.148.212.0/22 2588 -159.148.216.0/21 2588 -159.148.224.0/23 2588 -159.148.226.0/24 59993 -159.148.227.0/24 2588 -159.148.228.0/23 2588 -159.148.230.0/24 2588 -159.148.231.0/24 50485 -159.148.232.0/22 2588 -159.148.236.0/23 2588 -159.148.238.0/24 2588 -159.148.239.0/24 15899 -159.148.240.0/23 2588 -159.148.242.0/23 59993 -159.148.244.0/22 2588 -159.148.248.0/21 2588 -159.149.0.0/16 137 -159.150.0.0/22 13809 -159.150.4.0/22 40581 -159.150.8.0/21 13809 -159.150.16.0/20 13809 -159.150.32.0/19 13809 -159.150.64.0/18 13809 -159.150.128.0/17 13809 -159.151.0.0/18 49690 -159.151.64.0/18 209677 -159.151.128.0/18 203926 -159.153.0.0/20 393349 -159.153.16.0/20 197872 -159.153.32.0/21 57052 -159.153.40.0/21 19541 -159.153.48.0/21 22220 -159.153.56.0/23 393342 -159.153.58.0/23 57052 -159.153.60.0/23 393349 -159.153.62.0/23 57052 -159.153.64.0/22 19541 -159.153.68.0/22 7171 -159.153.72.0/21 57052 -159.153.80.0/22 57052 -159.153.84.0/22 7171 -159.153.88.0/23 393349 -159.153.90.0/24 395608 -159.153.91.0/24 210208 -159.153.92.0/22 19541 -159.153.96.0/24 47791 -159.153.104.0/24 19541 -159.153.108.0/24 14891 -159.153.112.0/21 19541 -159.153.122.0/24 394249 -159.153.124.0/22 7171 -159.153.128.0/23 33043 -159.153.130.0/24 7060 -159.153.132.0/22 22220 -159.153.136.0/23 26672 -159.153.138.0/24 393342 -159.153.140.0/23 33572 -159.153.143.0/24 40053 -159.153.144.0/23 30706 -159.153.146.0/24 393693 -159.153.148.0/24 199875 -159.153.149.0/24 396464 -159.153.150.0/24 1299 -159.153.151.0/24 206457 -159.153.152.0/22 19541 -159.153.156.0/22 31223 -159.153.160.0/21 7171 -159.153.168.0/21 18066 -159.153.176.0/22 31223 -159.153.180.0/24 199764 -159.153.181.0/24 206071 -159.153.183.0/24 393828 -159.153.184.0/22 23766 -159.153.188.0/22 395686 -159.153.192.0/24 393349 -159.153.204.0/23 393349 -159.153.211.0/24 23765 -159.153.217.0/24 133902 -159.153.218.0/24 135424 -159.153.222.0/23 393349 -159.153.224.0/21 57052 -159.153.235.0/24 14891 -159.153.240.0/24 14891 -159.153.244.0/24 14891 -159.154.0.0/16 13237 -159.155.0.0/16 11757 -159.157.32.0/24 702 -159.157.206.0/24 7015 -159.157.209.0/24 702 -159.157.210.0/23 7015 -159.157.228.0/24 5089 -159.157.232.0/24 3549 -159.157.235.0/24 22773 -159.157.236.0/23 7018 -159.157.238.0/24 3549 -159.157.254.0/24 9255 -159.158.0.0/16 3136 -159.162.0.0/16 2116 -159.166.17.0/24 6319 -159.166.18.0/23 62638 -159.166.24.0/23 6319 -159.166.26.0/24 6319 -159.166.35.0/24 62638 -159.166.40.0/23 6319 -159.166.44.0/23 6319 -159.166.124.0/22 6319 -159.166.148.0/23 62424 -159.166.153.0/24 62424 -159.166.154.0/23 6319 -159.168.0.0/16 28686 -159.169.0.0/16 7046 -159.171.0.0/16 3292 -159.172.7.0/24 3549 -159.172.8.0/24 3549 -159.172.21.0/24 30800 -159.172.36.0/24 3356 -159.172.38.0/23 13483 -159.172.40.0/24 3356 -159.172.42.0/24 3356 -159.172.46.0/23 14895 -159.172.50.0/24 3356 -159.172.52.0/23 14895 -159.172.64.0/24 10223 -159.172.140.0/24 3549 -159.172.141.0/24 8220 -159.172.142.0/24 3549 -159.172.175.0/24 3549 -159.172.176.0/24 3356 -159.172.177.0/24 396137 -159.172.193.0/24 6461 -159.172.204.0/24 23655 -159.172.205.0/24 9255 -159.172.206.0/24 10223 -159.172.241.0/24 30800 -159.172.242.0/24 10223 -159.172.243.0/24 13483 -159.172.244.0/24 13483 -159.172.245.0/24 9255 -159.174.0.0/16 54163 -159.175.0.0/16 26567 -159.178.0.0/16 6356 -159.179.0.0/16 8803 -159.180.0.0/18 15435 -159.180.64.0/23 33047 -159.180.67.0/24 33047 -159.180.68.0/22 33047 -159.180.72.0/21 33047 -159.180.80.0/20 33047 -159.180.96.0/19 2856 -159.180.128.0/21 62763 -159.180.140.0/24 7018 -159.180.141.0/24 26534 -159.180.160.0/20 200058 -159.180.176.0/22 133013 -159.180.192.0/19 39905 -159.180.224.0/19 34177 -159.181.240.0/24 26854 -159.181.244.0/24 26854 -159.182.0.0/21 11892 -159.182.8.0/23 11892 -159.182.11.0/24 11892 -159.182.14.0/24 11892 -159.182.16.0/22 11892 -159.182.20.0/23 11892 -159.182.22.0/24 11892 -159.182.24.0/23 3561 -159.182.26.0/24 11892 -159.182.27.0/24 30682 -159.182.28.0/24 9823 -159.182.30.0/23 11892 -159.182.32.0/21 11892 -159.182.41.0/24 29016 -159.182.42.0/24 29016 -159.182.43.0/24 9823 -159.182.49.0/24 9823 -159.182.52.0/23 9823 -159.182.54.0/23 6461 -159.182.56.0/24 3561 -159.182.60.0/22 9823 -159.182.64.0/22 9823 -159.182.72.0/21 29016 -159.182.80.0/22 11892 -159.182.85.0/24 11892 -159.182.94.0/24 29016 -159.182.95.0/24 11892 -159.182.111.0/24 11892 -159.182.112.0/23 11892 -159.182.115.0/24 11892 -159.182.120.0/21 29016 -159.182.144.0/21 11892 -159.182.156.0/24 7018 -159.182.160.0/21 30682 -159.182.168.0/24 13649 -159.182.172.0/23 11892 -159.182.176.0/24 30682 -159.182.178.0/23 13649 -159.182.180.0/24 13649 -159.182.181.0/24 30682 -159.182.183.0/24 30682 -159.182.187.0/24 11892 -159.182.210.0/23 10464 -159.182.212.0/23 10464 -159.182.214.0/24 29016 -159.182.215.0/24 11892 -159.182.216.0/22 11892 -159.182.230.0/23 11892 -159.182.232.0/23 11892 -159.182.241.0/24 11892 -159.189.224.0/22 1842 -159.190.0.0/16 21195 -159.191.0.0/16 6628 -159.192.0.0/20 131090 -159.192.16.0/21 131090 -159.192.24.0/23 131090 -159.192.26.0/24 131090 -159.192.27.0/24 36492 -159.192.28.0/22 131090 -159.192.32.0/19 131090 -159.192.64.0/18 131090 -159.192.128.0/17 131090 -159.193.144.0/21 3292 -159.193.192.0/21 3292 -159.194.0.0/16 2119 -159.195.0.0/16 3292 -159.196.32.0/23 138654 -159.196.36.0/23 138654 -159.196.52.0/23 138654 -159.196.56.0/23 138654 -159.196.60.0/22 138654 -159.196.128.0/23 138654 -159.196.130.0/24 7604 -159.196.132.0/24 7604 -159.196.134.0/24 7604 -159.196.136.0/24 7604 -159.196.188.0/24 138654 -159.196.190.0/23 7604 -159.197.0.0/21 1273 -159.197.8.0/22 1273 -159.197.12.0/24 1273 -159.197.13.0/24 2856 -159.197.14.0/23 1273 -159.197.16.0/20 1273 -159.197.32.0/21 1273 -159.197.40.0/22 1273 -159.197.44.0/23 2856 -159.197.46.0/23 1273 -159.197.48.0/20 1273 -159.197.64.0/18 1273 -159.197.128.0/17 62976 -159.198.96.0/21 21595 -159.198.104.0/22 21595 -159.198.129.0/24 21595 -159.198.130.0/23 21595 -159.198.132.0/22 21595 -159.198.137.0/24 21595 -159.198.139.0/24 21595 -159.198.140.0/23 21595 -159.198.142.0/24 21595 -159.198.169.0/24 21595 -159.198.170.0/23 21595 -159.198.176.0/20 21595 -159.198.195.0/24 21595 -159.198.226.0/23 21595 -159.198.232.0/22 21595 -159.198.236.0/23 21595 -159.198.248.0/21 21595 -159.199.0.0/16 11363 -159.201.0.0/16 1906 -159.203.0.0/16 14061 -159.204.0.0/16 16793 -159.205.0.0/16 12741 -159.206.80.0/21 3958 -159.206.88.0/23 3958 -159.207.0.0/22 132469 -159.207.168.0/21 136518 -159.207.176.0/22 132469 -159.207.224.0/22 132469 -159.207.232.0/24 132469 -159.207.240.0/24 132469 -159.207.243.0/24 136518 -159.207.244.0/24 136518 -159.207.245.0/24 132469 -159.207.253.0/24 132469 -159.207.255.0/24 132469 -159.208.32.0/22 46156 -159.208.38.0/23 46156 -159.208.58.0/23 46156 -159.208.60.0/23 46156 -159.211.22.0/24 4713 -159.211.224.0/24 4713 -159.211.237.0/24 4713 -159.211.248.0/24 4713 -159.212.0.0/16 11052 -159.213.0.0/16 6882 -159.214.0.0/16 10953 -159.215.8.0/23 7018 -159.215.16.0/21 7018 -159.215.24.0/23 51964 -159.215.32.0/21 7772 -159.215.40.0/23 7772 -159.215.48.0/24 7772 -159.215.64.0/22 7015 -159.215.72.0/24 7018 -159.215.74.0/24 11198 -159.215.76.0/23 7018 -159.215.78.0/24 7018 -159.215.80.0/23 7046 -159.215.120.0/24 2685 -159.215.124.0/23 40120 -159.215.128.0/23 132734 -159.215.130.0/23 133077 -159.215.138.0/23 51964 -159.215.140.0/23 136779 -159.215.244.0/23 31328 -159.215.246.0/24 51964 -159.215.247.0/24 3215 -159.215.248.0/21 31328 -159.216.0.0/16 2116 -159.217.0.0/16 29150 -159.218.0.0/16 1767 -159.220.0.0/22 16050 -159.220.8.0/21 16050 -159.220.16.0/21 24012 -159.220.24.0/22 16050 -159.220.28.0/22 26542 -159.220.33.0/24 32067 -159.220.34.0/24 32067 -159.220.36.0/24 32067 -159.220.37.0/24 26542 -159.220.38.0/23 16050 -159.220.40.0/24 3145 -159.220.41.0/24 10457 -159.220.43.0/24 3145 -159.220.44.0/24 16050 -159.220.48.0/22 32067 -159.220.52.0/24 16050 -159.220.53.0/24 32067 -159.220.54.0/23 32067 -159.220.56.0/23 16050 -159.220.58.0/24 32067 -159.220.59.0/24 16050 -159.220.62.0/24 32067 -159.220.63.0/24 16050 -159.220.68.0/24 3145 -159.220.71.0/24 32067 -159.220.74.0/23 16050 -159.220.76.0/23 24012 -159.220.78.0/24 12128 -159.220.99.0/24 20186 -159.220.148.0/24 16050 -159.220.233.0/24 10457 -159.220.234.0/23 24012 -159.220.236.0/24 10457 -159.220.240.0/24 24012 -159.221.0.0/16 32906 -159.222.128.0/22 26395 -159.222.144.0/22 26395 -159.222.152.0/23 26395 -159.222.160.0/22 26395 -159.222.176.0/24 10753 -159.222.191.0/24 26395 -159.223.0.0/23 46118 -159.223.2.0/24 46118 -159.224.0.0/17 13188 -159.224.128.0/19 13188 -159.224.160.0/20 13188 -159.224.176.0/23 13188 -159.224.179.0/24 13188 -159.224.181.0/24 13188 -159.224.182.0/23 13188 -159.224.184.0/21 13188 -159.224.192.0/20 13188 -159.224.208.0/21 13188 -159.224.216.0/23 13188 -159.224.219.0/24 13188 -159.224.220.0/22 13188 -159.224.224.0/19 13188 -159.225.0.0/16 11188 -159.226.0.0/16 7497 -159.230.0.0/16 4922 -159.232.212.0/22 209822 -159.233.0.0/16 13829 -159.237.0.0/16 198878 -159.238.0.0/16 14977 -159.240.0.0/16 29899 -159.241.0.0/16 21449 -159.242.0.0/21 26026 -159.242.8.0/23 26857 -159.242.15.0/24 26857 -159.242.16.0/21 7687 -159.242.32.0/19 394907 -159.242.64.0/18 51043 -159.242.128.0/19 13499 -159.242.160.0/20 13499 -159.242.192.0/20 39970 -159.242.208.0/20 11650 -159.242.239.0/24 198605 -159.242.240.0/21 23250 -159.242.248.0/22 30697 -159.242.252.0/22 23481 -159.245.16.0/24 30437 -159.245.18.0/24 30437 -159.246.20.0/22 30491 -159.246.24.0/22 30491 -159.246.28.0/23 30491 -159.246.40.0/21 30491 -159.246.48.0/23 30491 -159.246.52.0/24 6461 -159.247.0.0/21 3481 -159.247.8.0/22 3481 -159.247.12.0/23 3481 -159.247.14.0/24 3481 -159.247.15.0/24 22742 -159.247.16.0/20 3481 -159.247.32.0/19 3481 -159.247.64.0/18 3481 -159.247.128.0/20 3481 -159.247.144.0/22 3481 -159.247.148.0/23 3481 -159.247.150.0/24 22742 -159.247.151.0/24 3481 -159.247.152.0/21 3481 -159.247.160.0/19 3481 -159.247.192.0/19 3481 -159.247.224.0/21 3481 -159.247.232.0/22 22742 -159.247.236.0/23 22742 -159.247.238.0/23 3481 -159.247.240.0/22 3481 -159.247.244.0/24 22742 -159.247.245.0/24 3481 -159.247.246.0/23 3481 -159.247.248.0/23 3481 -159.247.252.0/22 3481 -159.251.0.0/16 2705 -159.252.0.0/24 13348 -159.253.8.0/22 2119 -159.253.16.0/21 198068 -159.253.24.0/22 43948 -159.253.28.0/23 42708 -159.253.30.0/23 43948 -159.253.32.0/20 51559 -159.253.48.0/21 34660 -159.253.56.0/21 45014 -159.253.64.0/23 12390 -159.253.66.0/23 2856 -159.253.68.0/22 12390 -159.253.72.0/21 12390 -159.253.80.0/22 34984 -159.253.84.0/24 34984 -159.253.88.0/21 42903 -159.253.96.0/21 8224 -159.253.104.0/21 49044 -159.253.112.0/21 34219 -159.253.120.0/24 42955 -159.253.122.0/23 42955 -159.253.124.0/22 25455 -159.253.128.0/19 36351 -159.253.160.0/21 41107 -159.253.168.0/21 8749 -159.253.176.0/22 12678 -159.253.180.0/23 12678 -159.253.184.0/21 41160 -159.253.192.0/20 44972 -159.253.208.0/21 61323 -159.253.216.0/21 12552 -159.253.224.0/22 199256 -159.253.228.0/22 24916 -159.253.232.0/21 50698 -159.253.240.0/21 41421 -159.253.248.0/21 29119 -159.255.0.0/20 41789 -159.255.16.0/21 41789 -159.255.24.0/22 49505 -159.255.28.0/22 41789 -159.255.32.0/21 45671 -159.255.40.0/22 197792 -159.255.48.0/20 15457 -159.255.64.0/18 41330 -159.255.128.0/21 50877 -159.255.136.0/21 49289 -159.255.144.0/21 49289 -159.255.152.0/22 47927 -159.255.156.0/22 49289 -159.255.160.0/22 197882 -159.255.164.0/24 197882 -159.255.165.0/24 21277 -159.255.166.0/23 21277 -159.255.168.0/23 8881 -159.255.170.0/24 8881 -159.255.176.0/21 57332 -159.255.184.0/22 57332 -159.255.188.0/24 57332 -159.255.189.0/24 206685 -159.255.190.0/23 57332 -159.255.192.0/22 60781 -159.255.196.0/22 15699 -159.255.200.0/21 39925 -159.255.208.0/21 20860 -159.255.216.0/21 47886 -159.255.224.0/19 16086 -160.0.0.0/17 715 -160.0.128.0/18 328148 -160.0.192.0/19 328130 -160.0.224.0/20 37292 -160.0.248.0/24 37292 -160.0.252.0/24 37292 -160.1.0.0/16 8987 -160.2.0.0/19 11492 -160.2.32.0/24 11492 -160.2.34.0/23 11492 -160.2.36.0/22 11492 -160.2.40.0/21 11492 -160.2.48.0/20 11492 -160.2.64.0/18 11492 -160.2.128.0/17 11492 -160.3.0.0/18 11492 -160.3.64.0/20 11492 -160.3.80.0/21 11492 -160.3.88.0/24 11492 -160.3.91.0/24 11492 -160.3.92.0/22 11492 -160.3.96.0/19 11492 -160.3.128.0/18 11492 -160.3.192.0/20 11492 -160.3.208.0/22 11492 -160.3.213.0/24 11492 -160.3.214.0/23 11492 -160.3.217.0/24 11492 -160.3.218.0/23 11492 -160.3.220.0/22 11492 -160.3.224.0/20 11492 -160.3.240.0/21 11492 -160.3.248.0/24 11492 -160.3.250.0/23 11492 -160.3.252.0/22 11492 -160.5.0.0/16 786 -160.6.0.0/16 1213 -160.7.0.0/17 210 -160.7.128.0/18 210 -160.7.192.0/19 210 -160.7.224.0/21 210 -160.7.232.0/21 36223 -160.7.240.0/20 36223 -160.8.0.0/16 14340 -160.9.0.0/16 786 -160.10.0.0/16 3479 -160.11.0.0/16 2907 -160.12.0.0/16 2907 -160.13.0.0/16 2497 -160.15.0.0/16 2907 -160.16.0.0/16 9370 -160.17.0.0/16 2497 -160.18.2.0/24 2907 -160.18.100.0/24 2907 -160.18.128.0/24 2907 -160.18.136.0/23 2907 -160.18.148.0/23 2907 -160.18.216.0/23 2907 -160.18.220.0/23 2907 -160.18.224.0/24 2907 -160.19.0.0/20 19919 -160.19.24.0/22 4917 -160.19.28.0/22 36394 -160.19.36.0/22 328176 -160.19.44.0/22 266159 -160.19.48.0/22 135386 -160.19.52.0/23 45599 -160.19.54.0/24 45599 -160.19.64.0/22 55699 -160.19.92.0/23 8764 -160.19.94.0/23 51559 -160.19.96.0/21 37284 -160.19.104.0/22 395876 -160.19.112.0/20 327983 -160.19.128.0/20 328218 -160.19.152.0/22 328236 -160.19.160.0/24 394853 -160.19.161.0/24 394527 -160.19.162.0/23 394545 -160.19.168.0/23 266149 -160.19.171.0/24 266149 -160.19.172.0/23 266171 -160.19.175.0/24 266171 -160.19.188.0/23 328161 -160.19.190.0/23 328187 -160.19.196.0/22 328157 -160.19.201.0/24 52439 -160.19.202.0/24 52439 -160.19.208.0/22 134764 -160.19.212.0/22 9929 -160.19.220.0/22 133724 -160.19.224.0/22 55699 -160.19.232.0/22 328167 -160.19.240.0/22 266167 -160.19.244.0/22 266168 -160.19.248.0/22 266172 -160.19.252.0/22 266174 -160.20.0.0/24 45194 -160.20.8.0/22 132335 -160.20.12.0/23 27630 -160.20.14.0/24 27630 -160.20.15.0/24 40676 -160.20.20.0/22 266143 -160.20.24.0/21 328032 -160.20.32.0/22 266141 -160.20.40.0/22 132400 -160.20.44.0/22 2519 -160.20.52.0/22 58411 -160.20.56.0/22 133115 -160.20.60.0/22 58411 -160.20.64.0/22 266150 -160.20.68.0/22 266146 -160.20.72.0/22 135615 -160.20.80.0/22 265720 -160.20.84.0/22 266183 -160.20.88.0/22 266187 -160.20.96.0/22 43012 -160.20.100.0/22 35370 -160.20.108.0/24 209737 -160.20.109.0/24 60721 -160.20.110.0/24 203377 -160.20.111.0/24 60721 -160.20.112.0/22 328258 -160.20.144.0/22 30823 -160.20.148.0/22 33915 -160.20.152.0/22 50673 -160.20.156.0/22 9009 -160.20.160.0/22 266197 -160.20.164.0/22 264668 -160.20.168.0/22 266198 -160.20.180.0/22 266200 -160.20.184.0/22 266538 -160.20.188.0/22 265703 -160.20.192.0/22 266527 -160.20.196.0/22 266189 -160.20.200.0/22 266188 -160.20.204.0/22 266213 -160.20.208.0/23 11294 -160.20.210.0/24 394864 -160.20.211.0/24 11215 -160.20.214.0/23 31236 -160.20.218.0/23 269832 -160.20.222.0/24 138077 -160.20.225.0/24 267685 -160.20.230.0/23 393662 -160.20.232.0/22 22423 -160.20.242.0/23 268242 -160.20.246.0/24 266811 -160.20.247.0/24 266777 -160.20.252.0/22 328229 -160.23.0.0/16 17701 -160.24.0.0/16 17676 -160.26.0.0/16 23781 -160.27.0.0/16 9371 -160.28.0.0/15 2907 -160.32.0.0/18 2381 -160.32.64.0/18 22379 -160.32.192.0/19 54614 -160.32.224.0/20 32160 -160.32.240.0/21 14537 -160.32.248.0/22 22379 -160.32.252.0/23 22379 -160.32.254.0/24 14262 -160.32.255.0/24 54704 -160.33.0.0/19 18552 -160.33.64.0/20 62753 -160.33.84.0/22 36086 -160.33.96.0/20 23148 -160.33.160.0/24 397077 -160.33.161.0/24 11795 -160.33.162.0/24 397191 -160.33.164.0/22 397191 -160.33.168.0/21 11795 -160.33.176.0/20 23148 -160.33.192.0/20 23148 -160.34.0.0/20 7160 -160.34.16.0/20 43898 -160.34.32.0/19 7160 -160.34.64.0/22 7160 -160.34.70.0/23 7160 -160.34.72.0/23 4192 -160.34.74.0/23 7160 -160.34.78.0/23 7160 -160.34.81.0/24 7160 -160.34.82.0/24 4192 -160.34.83.0/24 7160 -160.34.86.0/24 7160 -160.34.88.0/22 7160 -160.34.92.0/23 46558 -160.34.95.0/24 7160 -160.34.96.0/23 7160 -160.34.100.0/22 7160 -160.34.104.0/23 7160 -160.34.106.0/24 22435 -160.34.107.0/24 7160 -160.34.108.0/22 7160 -160.34.112.0/22 7160 -160.34.116.0/23 7160 -160.34.120.0/23 7160 -160.34.122.0/24 7160 -160.34.124.0/22 7160 -160.34.140.0/23 7160 -160.34.160.0/19 7160 -160.34.192.0/18 7160 -160.36.0.0/16 3450 -160.39.0.0/16 14 -160.40.0.0/16 47616 -160.42.0.0/16 1761 -160.43.250.0/23 10361 -160.43.253.0/24 10361 -160.44.0.0/17 34086 -160.44.128.0/18 34086 -160.44.192.0/20 6878 -160.44.208.0/20 34086 -160.44.224.0/19 34086 -160.45.0.0/16 680 -160.46.224.0/19 8590 -160.48.160.0/24 1136 -160.48.161.0/24 286 -160.48.212.0/23 8590 -160.48.233.0/24 3741 -160.48.234.0/24 3741 -160.48.235.0/24 24442 -160.53.0.0/17 21449 -160.53.128.0/18 21449 -160.53.192.0/19 21449 -160.53.224.0/20 21449 -160.53.240.0/23 21449 -160.53.242.0/24 25091 -160.53.243.0/24 21449 -160.53.244.0/22 21449 -160.53.248.0/21 21449 -160.54.0.0/15 12291 -160.56.0.0/15 12291 -160.58.0.0/16 12291 -160.60.1.0/24 8881 -160.60.2.0/23 8881 -160.61.168.0/23 25031 -160.62.0.0/21 25031 -160.62.12.0/23 47444 -160.62.14.0/23 26478 -160.62.140.0/23 26478 -160.64.0.0/16 7474 -160.67.0.0/16 21293 -160.68.0.0/16 21293 -160.69.0.0/23 18500 -160.69.3.0/24 18500 -160.71.0.0/16 1759 -160.72.16.0/20 46887 -160.72.32.0/23 54201 -160.72.34.0/24 54201 -160.72.35.0/24 46887 -160.72.36.0/24 46887 -160.72.37.0/24 54201 -160.72.38.0/23 54201 -160.72.40.0/23 54201 -160.72.42.0/24 46887 -160.72.43.0/24 54201 -160.72.44.0/22 54201 -160.72.48.0/20 54201 -160.72.64.0/21 46887 -160.72.72.0/23 46887 -160.72.74.0/24 397934 -160.72.75.0/24 46887 -160.72.76.0/22 46887 -160.72.80.0/20 46887 -160.72.96.0/19 46887 -160.73.50.0/23 7018 -160.74.0.0/16 2513 -160.75.0.0/18 9095 -160.75.64.0/19 9095 -160.75.96.0/20 9095 -160.75.112.0/21 9095 -160.75.120.0/23 8517 -160.75.122.0/23 9095 -160.75.124.0/22 9095 -160.75.128.0/17 9095 -160.76.0.0/20 36693 -160.76.254.0/23 36693 -160.77.0.0/16 6713 -160.78.0.0/16 137 -160.79.0.0/20 18885 -160.79.16.0/23 24867 -160.79.18.0/23 18885 -160.79.20.0/22 18885 -160.79.24.0/21 18885 -160.79.32.0/19 18885 -160.79.64.0/19 18885 -160.79.96.0/21 18885 -160.79.104.0/22 18885 -160.79.108.0/24 18885 -160.79.109.0/24 24867 -160.79.110.0/23 18885 -160.79.112.0/20 18885 -160.79.128.0/21 18885 -160.79.136.0/23 18885 -160.79.138.0/24 18885 -160.79.139.0/24 35988 -160.79.140.0/22 18885 -160.79.144.0/20 18885 -160.79.160.0/19 18885 -160.79.192.0/23 18885 -160.79.194.0/24 18885 -160.79.195.0/24 24867 -160.79.196.0/22 18885 -160.79.200.0/21 18885 -160.79.208.0/20 18885 -160.79.224.0/20 18885 -160.79.240.0/23 18885 -160.79.242.0/24 53958 -160.79.243.0/24 24867 -160.79.244.0/23 24867 -160.79.246.0/23 18885 -160.79.248.0/22 18885 -160.79.252.0/23 18885 -160.79.254.0/24 18885 -160.79.255.0/24 19689 -160.80.0.0/16 137 -160.81.0.0/16 1239 -160.83.0.0/20 8373 -160.83.16.0/22 21047 -160.83.20.0/22 8373 -160.83.24.0/22 199104 -160.83.28.0/22 8373 -160.83.32.0/23 15769 -160.83.34.0/23 42701 -160.83.36.0/23 15769 -160.83.38.0/23 3741 -160.83.40.0/21 15769 -160.83.48.0/22 15769 -160.83.52.0/24 15802 -160.83.53.0/24 15769 -160.83.54.0/24 5384 -160.83.55.0/24 15769 -160.83.56.0/21 15769 -160.83.64.0/19 2824 -160.83.96.0/23 24055 -160.83.104.0/23 131994 -160.83.107.0/24 24467 -160.83.108.0/24 24467 -160.83.110.0/24 4812 -160.83.128.0/19 17694 -160.83.160.0/24 18375 -160.83.162.0/24 18375 -160.83.176.0/23 42701 -160.83.178.0/23 15769 -160.83.180.0/22 15769 -160.84.253.0/24 396083 -160.84.254.0/24 396083 -160.85.0.0/16 559 -160.86.0.0/16 2527 -160.87.0.0/16 299 -160.88.0.0/16 1226 -160.89.0.0/16 6713 -160.90.0.0/16 6713 -160.91.0.0/16 50 -160.92.0.0/16 8677 -160.93.0.0/16 394417 -160.94.0.0/16 217 -160.96.12.0/22 135008 -160.96.16.0/20 135008 -160.96.32.0/19 135008 -160.96.100.0/22 136601 -160.96.104.0/22 136601 -160.96.108.0/23 136601 -160.96.116.0/22 136601 -160.96.120.0/22 136601 -160.96.124.0/23 136601 -160.96.179.0/24 135008 -160.96.194.0/23 135008 -160.96.196.0/22 135008 -160.96.202.0/23 135008 -160.96.204.0/22 135008 -160.96.212.0/22 133387 -160.96.216.0/23 3758 -160.96.220.0/22 135008 -160.96.224.0/21 135008 -160.96.236.0/23 135008 -160.96.240.0/21 135008 -160.97.0.0/16 137 -160.98.0.0/16 559 -160.99.0.0/16 13303 -160.101.0.0/22 25940 -160.101.8.0/24 11274 -160.102.0.0/16 11714 -160.103.0.0/16 1942 -160.105.0.0/16 6713 -160.106.64.0/18 2665 -160.106.252.0/23 2665 -160.107.0.0/16 687 -160.109.0.0/16 1294 -160.111.0.0/17 25829 -160.111.128.0/22 25829 -160.111.132.0/22 27922 -160.111.136.0/21 25829 -160.111.144.0/20 25829 -160.111.160.0/19 25829 -160.111.192.0/19 25829 -160.111.224.0/22 25829 -160.111.228.0/23 25829 -160.111.230.0/24 27922 -160.111.231.0/24 25829 -160.111.232.0/21 27922 -160.111.240.0/20 25829 -160.113.0.0/16 37463 -160.114.0.0/16 6711 -160.116.0.0/24 43945 -160.116.1.0/24 199267 -160.116.2.0/23 199267 -160.116.4.0/22 199267 -160.116.8.0/21 199267 -160.116.16.0/22 62355 -160.116.20.0/22 262287 -160.116.24.0/22 62355 -160.116.28.0/22 262287 -160.116.32.0/22 262287 -160.116.36.0/22 62355 -160.116.40.0/21 262287 -160.116.48.0/22 62355 -160.116.52.0/22 262287 -160.116.56.0/22 262287 -160.116.60.0/22 62355 -160.116.64.0/21 262287 -160.116.72.0/22 62355 -160.116.76.0/22 262287 -160.116.80.0/22 262287 -160.116.84.0/22 62355 -160.116.88.0/21 262287 -160.116.96.0/22 62355 -160.116.100.0/22 262287 -160.116.104.0/22 262287 -160.116.108.0/22 62355 -160.116.112.0/21 262287 -160.116.120.0/22 62355 -160.116.124.0/22 262287 -160.116.128.0/22 262287 -160.116.132.0/22 62355 -160.116.136.0/21 262287 -160.116.144.0/22 62355 -160.116.148.0/22 262287 -160.116.152.0/22 262287 -160.116.156.0/22 62355 -160.116.160.0/21 262287 -160.116.168.0/22 62355 -160.116.172.0/22 262287 -160.116.176.0/22 262287 -160.116.180.0/22 62355 -160.116.184.0/21 262287 -160.116.192.0/22 62355 -160.116.196.0/22 262287 -160.116.200.0/22 62355 -160.116.204.0/22 262287 -160.116.208.0/22 262287 -160.116.212.0/22 62355 -160.116.220.0/24 199267 -160.116.232.0/24 19969 -160.116.233.0/24 43092 -160.116.234.0/23 19969 -160.116.236.0/22 62355 -160.116.240.0/21 62355 -160.116.248.0/22 62355 -160.119.0.0/20 328029 -160.119.16.0/22 328029 -160.119.24.0/22 328029 -160.119.32.0/19 327804 -160.119.64.0/22 7489 -160.119.68.0/23 7489 -160.119.70.0/24 35913 -160.119.71.0/24 8100 -160.119.72.0/22 46261 -160.119.76.0/24 8100 -160.119.77.0/24 138219 -160.119.78.0/24 8100 -160.119.79.0/24 46261 -160.119.80.0/23 328045 -160.119.82.0/24 328045 -160.119.84.0/24 328404 -160.119.87.0/24 328404 -160.119.88.0/21 20180 -160.119.96.0/22 328209 -160.119.100.0/22 328170 -160.119.108.0/22 328182 -160.119.112.0/21 37697 -160.119.120.0/22 328024 -160.119.124.0/22 328160 -160.119.128.0/21 328244 -160.119.136.0/21 327693 -160.119.144.0/22 328228 -160.119.148.0/22 328198 -160.119.152.0/22 328214 -160.119.156.0/22 328223 -160.119.160.0/19 36924 -160.119.192.0/22 32437 -160.119.196.0/22 328171 -160.119.200.0/22 201942 -160.119.204.0/24 328141 -160.119.206.0/23 328141 -160.119.208.0/22 328144 -160.119.212.0/24 328197 -160.119.213.0/24 61429 -160.119.214.0/24 61429 -160.119.215.0/24 328197 -160.119.216.0/22 328162 -160.119.220.0/22 328146 -160.119.224.0/20 328137 -160.119.240.0/22 328154 -160.119.244.0/24 328142 -160.119.246.0/23 328189 -160.119.248.0/22 37153 -160.119.253.0/24 37153 -160.119.254.0/23 37153 -160.120.0.0/16 29571 -160.121.0.0/16 18013 -160.122.0.0/17 18013 -160.122.128.0/18 18013 -160.122.192.0/19 18013 -160.122.224.0/19 132422 -160.123.0.0/16 3741 -160.124.0.0/16 132839 -160.125.0.0/16 5939 -160.126.0.0/16 1959 -160.127.0.0/16 2749 -160.128.0.0/18 2749 -160.128.64.0/19 2749 -160.128.128.0/19 2749 -160.128.176.0/20 2749 -160.128.192.0/18 5939 -160.129.0.0/16 393529 -160.130.0.0/16 8103 -160.131.1.0/24 8103 -160.131.2.0/24 8103 -160.131.4.0/22 8103 -160.131.10.0/23 8103 -160.131.12.0/23 8103 -160.131.14.0/24 8103 -160.131.20.0/24 8103 -160.131.23.0/24 8103 -160.131.24.0/23 8103 -160.131.28.0/24 8103 -160.131.32.0/24 8103 -160.131.35.0/24 8103 -160.131.36.0/24 8103 -160.131.41.0/24 8103 -160.131.43.0/24 8103 -160.131.44.0/23 8103 -160.131.46.0/24 8103 -160.131.48.0/22 8103 -160.131.62.0/23 8103 -160.131.64.0/23 8103 -160.131.67.0/24 8103 -160.131.68.0/24 8103 -160.131.74.0/24 8103 -160.131.76.0/23 8103 -160.131.78.0/24 8103 -160.131.80.0/21 8103 -160.131.91.0/24 8103 -160.131.92.0/24 8103 -160.131.94.0/24 8103 -160.131.96.0/24 8103 -160.131.99.0/24 8103 -160.131.100.0/22 8103 -160.131.104.0/24 8103 -160.131.112.0/24 8103 -160.131.118.0/23 8103 -160.131.120.0/23 8103 -160.131.124.0/23 8103 -160.131.127.0/24 8103 -160.131.128.0/21 8103 -160.131.136.0/24 8103 -160.131.139.0/24 8103 -160.131.140.0/24 8103 -160.131.143.0/24 8103 -160.131.144.0/24 8103 -160.131.147.0/24 8103 -160.131.150.0/24 8103 -160.131.153.0/24 8103 -160.131.157.0/24 8103 -160.131.160.0/22 8103 -160.131.164.0/24 8103 -160.131.168.0/23 8103 -160.131.171.0/24 8103 -160.131.173.0/24 8103 -160.131.174.0/23 8103 -160.131.176.0/22 8103 -160.131.184.0/21 8103 -160.131.193.0/24 8103 -160.131.195.0/24 8103 -160.131.201.0/24 8103 -160.131.202.0/23 8103 -160.131.204.0/24 8103 -160.131.208.0/20 8103 -160.131.225.0/24 8103 -160.131.230.0/24 8103 -160.131.232.0/22 8103 -160.131.236.0/24 8103 -160.131.238.0/23 8103 -160.131.240.0/21 8103 -160.131.248.0/24 8103 -160.131.250.0/23 8103 -160.131.252.0/23 8103 -160.132.0.0/16 721 -160.133.0.0/16 1541 -160.134.0.0/16 1466 -160.135.0.0/16 747 -160.136.0.0/17 1541 -160.136.128.0/21 6039 -160.136.136.0/22 6039 -160.136.140.0/22 721 -160.136.144.0/22 721 -160.136.148.0/23 6039 -160.136.150.0/24 6039 -160.136.151.0/24 721 -160.136.152.0/22 6039 -160.136.156.0/24 721 -160.136.157.0/24 6039 -160.136.158.0/23 6039 -160.136.160.0/20 6039 -160.136.176.0/21 6039 -160.136.184.0/23 721 -160.136.186.0/23 6039 -160.136.188.0/22 6039 -160.136.192.0/21 721 -160.136.200.0/23 6039 -160.136.202.0/23 721 -160.136.204.0/23 6039 -160.136.206.0/23 721 -160.136.208.0/22 721 -160.136.212.0/23 721 -160.136.214.0/23 6039 -160.136.216.0/21 721 -160.136.224.0/19 6041 -160.137.0.0/24 721 -160.137.1.0/24 494 -160.137.2.0/24 5307 -160.137.3.0/24 494 -160.137.4.0/24 27064 -160.137.5.0/24 721 -160.137.6.0/23 494 -160.137.8.0/23 494 -160.137.10.0/24 494 -160.137.11.0/24 27064 -160.137.12.0/23 494 -160.137.14.0/24 5961 -160.137.15.0/24 721 -160.137.16.0/23 494 -160.137.18.0/24 5979 -160.137.19.0/24 721 -160.137.20.0/23 721 -160.137.22.0/24 27064 -160.137.23.0/24 721 -160.137.24.0/24 494 -160.137.25.0/24 27064 -160.137.26.0/23 721 -160.137.28.0/24 721 -160.137.29.0/24 27064 -160.137.30.0/24 27064 -160.137.31.0/24 494 -160.137.32.0/24 494 -160.137.33.0/24 721 -160.137.34.0/23 721 -160.137.36.0/22 721 -160.137.40.0/21 721 -160.137.48.0/21 721 -160.137.56.0/22 721 -160.137.60.0/23 721 -160.137.62.0/23 494 -160.137.64.0/23 494 -160.137.66.0/23 721 -160.137.68.0/23 721 -160.137.70.0/24 494 -160.137.71.0/24 721 -160.137.72.0/23 494 -160.137.74.0/23 721 -160.137.76.0/22 721 -160.137.80.0/20 721 -160.137.96.0/24 300 -160.137.97.0/24 721 -160.137.98.0/23 721 -160.137.100.0/24 721 -160.137.101.0/24 5307 -160.137.102.0/24 300 -160.137.103.0/24 721 -160.137.104.0/22 721 -160.137.108.0/23 721 -160.137.110.0/24 721 -160.137.111.0/24 27064 -160.137.112.0/23 494 -160.137.114.0/23 721 -160.137.116.0/23 494 -160.137.118.0/23 721 -160.137.120.0/21 721 -160.137.128.0/22 721 -160.137.132.0/22 300 -160.137.136.0/22 300 -160.137.140.0/22 5307 -160.137.144.0/20 721 -160.137.160.0/22 721 -160.137.164.0/23 721 -160.137.166.0/24 721 -160.137.167.0/24 27064 -160.137.168.0/24 721 -160.137.169.0/24 27064 -160.137.170.0/23 721 -160.137.172.0/22 721 -160.137.176.0/22 721 -160.137.180.0/24 494 -160.137.181.0/24 721 -160.137.182.0/24 494 -160.137.183.0/24 721 -160.137.184.0/24 5307 -160.137.185.0/24 721 -160.137.186.0/23 494 -160.137.188.0/24 721 -160.137.189.0/24 494 -160.137.190.0/23 494 -160.137.192.0/24 721 -160.137.193.0/24 27064 -160.137.194.0/23 721 -160.137.196.0/22 721 -160.137.200.0/21 721 -160.137.208.0/23 721 -160.137.210.0/24 721 -160.137.211.0/24 27064 -160.137.212.0/23 494 -160.137.214.0/23 721 -160.137.216.0/23 494 -160.137.218.0/23 721 -160.137.220.0/22 721 -160.137.224.0/20 721 -160.137.240.0/22 494 -160.137.244.0/22 5307 -160.137.248.0/21 721 -160.138.0.0/16 1500 -160.139.0.0/16 721 -160.140.0.0/17 721 -160.140.128.0/18 721 -160.140.192.0/19 721 -160.140.224.0/20 721 -160.140.240.0/24 1541 -160.140.241.0/24 721 -160.140.242.0/23 721 -160.140.244.0/22 721 -160.140.248.0/22 5800 -160.140.252.0/22 721 -160.141.0.0/17 5972 -160.141.128.0/18 5972 -160.141.192.0/21 5972 -160.141.200.0/21 721 -160.141.208.0/23 721 -160.141.210.0/24 1541 -160.141.211.0/24 5972 -160.141.212.0/22 5972 -160.141.216.0/21 5972 -160.141.224.0/19 1527 -160.142.0.0/16 1528 -160.143.0.0/21 721 -160.143.8.0/24 1501 -160.143.9.0/24 721 -160.143.10.0/23 721 -160.143.12.0/22 721 -160.143.16.0/20 721 -160.143.32.0/19 721 -160.143.64.0/21 1600 -160.143.72.0/22 1600 -160.143.76.0/24 721 -160.143.77.0/24 1600 -160.143.78.0/23 1600 -160.143.80.0/20 1600 -160.143.96.0/20 1600 -160.143.112.0/22 1637 -160.143.116.0/22 721 -160.143.120.0/21 721 -160.143.128.0/17 721 -160.144.0.0/16 721 -160.145.0.0/16 1503 -160.146.0.0/16 5953 -160.147.0.0/16 1503 -160.148.0.0/16 367 -160.149.0.0/16 1468 -160.150.0.0/16 1515 -160.151.0.0/19 1527 -160.151.32.0/19 721 -160.151.64.0/21 721 -160.151.72.0/22 721 -160.151.76.0/22 5972 -160.151.80.0/23 5972 -160.151.82.0/23 721 -160.151.84.0/22 721 -160.151.88.0/21 721 -160.151.96.0/20 721 -160.151.112.0/21 721 -160.151.120.0/23 5972 -160.151.122.0/23 721 -160.151.124.0/24 5972 -160.151.125.0/24 721 -160.151.126.0/23 721 -160.151.128.0/20 721 -160.151.144.0/22 721 -160.151.148.0/23 721 -160.151.150.0/24 5972 -160.151.151.0/24 721 -160.151.152.0/21 721 -160.151.160.0/20 721 -160.151.176.0/21 721 -160.151.184.0/22 721 -160.151.188.0/23 721 -160.151.190.0/23 5972 -160.151.192.0/18 5972 -160.152.0.0/16 37637 -160.153.0.0/21 21501 -160.153.8.0/22 21501 -160.153.12.0/22 20773 -160.153.16.0/21 21501 -160.153.24.0/22 20773 -160.153.28.0/22 21501 -160.153.32.0/19 26496 -160.153.64.0/18 26496 -160.153.128.0/21 21501 -160.153.136.0/24 26496 -160.153.137.0/24 21501 -160.153.138.0/23 21501 -160.153.140.0/22 21501 -160.153.144.0/20 21501 -160.153.160.0/22 21501 -160.153.164.0/22 20773 -160.153.168.0/22 21501 -160.153.172.0/22 20773 -160.153.176.0/20 20773 -160.153.192.0/20 21501 -160.153.208.0/22 21501 -160.153.212.0/22 20773 -160.153.216.0/21 20773 -160.153.224.0/21 20773 -160.153.232.0/22 21501 -160.153.236.0/22 20773 -160.153.240.0/22 20773 -160.153.244.0/22 21501 -160.153.248.0/22 21501 -160.153.252.0/22 20773 -160.154.0.0/15 29571 -160.156.0.0/14 37492 -160.160.0.0/12 6713 -160.176.0.0/14 36903 -160.181.0.0/17 204655 -160.181.128.0/20 40065 -160.181.144.0/21 40065 -160.181.152.0/22 40065 -160.181.156.0/23 40065 -160.181.158.0/23 137951 -160.181.160.0/19 132422 -160.181.192.0/22 132422 -160.181.196.0/22 137443 -160.181.200.0/21 137443 -160.181.208.0/20 137443 -160.181.224.0/19 137443 -160.182.0.0/15 37309 -160.184.0.0/17 132165 -160.186.0.0/16 4713 -160.189.0.0/16 17676 -160.190.0.0/16 2907 -160.192.0.0/16 7670 -160.193.0.0/16 2907 -160.194.0.0/16 2907 -160.198.0.0/16 2907 -160.199.0.0/16 7679 -160.202.0.0/21 2907 -160.202.8.0/23 45117 -160.202.10.0/24 45117 -160.202.11.0/24 56315 -160.202.12.0/22 18196 -160.202.21.0/24 16509 -160.202.24.0/22 210293 -160.202.28.0/22 47406 -160.202.32.0/22 131178 -160.202.36.0/22 133982 -160.202.40.0/22 9341 -160.202.44.0/22 38197 -160.202.56.0/24 135158 -160.202.60.0/23 4837 -160.202.62.0/24 4837 -160.202.63.0/24 133115 -160.202.64.0/18 46261 -160.202.128.0/22 18022 -160.202.132.0/22 24295 -160.202.136.0/24 12237 -160.202.144.0/22 59382 -160.202.156.0/23 133311 -160.202.159.0/24 133311 -160.202.160.0/24 4766 -160.202.161.0/24 45382 -160.202.162.0/23 45382 -160.202.164.0/24 137409 -160.202.165.0/24 63018 -160.202.166.0/23 63018 -160.202.168.0/22 135357 -160.202.212.0/22 23650 -160.204.0.0/16 2907 -160.205.40.0/24 6075 -160.205.155.0/24 6075 -160.205.156.0/24 6075 -160.206.0.0/20 24008 -160.206.20.0/23 24008 -160.206.22.0/24 24008 -160.206.64.0/24 24008 -160.206.132.0/23 132000 -160.206.134.0/24 132000 -160.206.140.0/24 22640 -160.206.141.0/24 132000 -160.206.142.0/24 22640 -160.206.144.0/24 22640 -160.206.148.0/24 22640 -160.206.224.0/24 24008 -160.206.226.0/23 24008 -160.206.232.0/21 136810 -160.206.248.0/21 24008 -160.210.0.0/16 15474 -160.211.126.0/24 3257 -160.212.0.0/18 13333 -160.212.64.0/19 13333 -160.212.96.0/21 13333 -160.212.104.0/22 13333 -160.212.108.0/24 701 -160.212.109.0/24 13333 -160.212.110.0/23 13333 -160.212.112.0/20 13333 -160.212.128.0/17 13333 -160.214.0.0/16 3352 -160.216.0.0/15 2852 -160.218.0.0/16 5610 -160.219.0.0/16 15661 -160.220.0.0/16 24771 -160.223.180.0/23 397025 -160.223.202.0/24 3949 -160.224.0.0/15 11259 -160.226.0.0/18 37472 -160.226.64.0/19 37472 -160.226.128.0/20 328178 -160.226.144.0/20 328366 -160.226.160.0/20 36874 -160.226.176.0/23 328186 -160.226.179.0/24 328185 -160.226.180.0/24 22750 -160.226.181.0/24 328255 -160.226.182.0/23 328255 -160.226.184.0/24 328215 -160.226.192.0/18 37542 -160.227.0.0/16 2152 -160.228.0.0/16 2269 -160.230.0.0/16 3549 -160.231.0.0/19 209 -160.231.64.0/23 41935 -160.231.96.0/20 41935 -160.231.128.0/22 136772 -160.231.192.0/21 17113 -160.231.200.0/21 23005 -160.233.0.0/16 17511 -160.237.0.0/18 2907 -160.237.64.0/19 59125 -160.237.96.0/19 131925 -160.237.128.0/20 59125 -160.237.160.0/20 131925 -160.237.191.0/24 59125 -160.237.192.0/18 2907 -160.238.0.0/24 133547 -160.238.1.0/24 2907 -160.238.2.0/23 2907 -160.238.4.0/22 2907 -160.238.8.0/23 2907 -160.238.10.0/24 2907 -160.238.12.0/22 59374 -160.238.20.0/24 2907 -160.238.23.0/24 395398 -160.238.24.0/22 267263 -160.238.28.0/23 267310 -160.238.30.0/24 2907 -160.238.32.0/24 2907 -160.238.36.0/22 46261 -160.238.40.0/24 2907 -160.238.41.0/24 25763 -160.238.42.0/24 18647 -160.238.44.0/22 27630 -160.238.48.0/24 328267 -160.238.51.0/24 2907 -160.238.52.0/22 44994 -160.238.56.0/24 2907 -160.238.60.0/24 48177 -160.238.62.0/24 2907 -160.238.63.0/24 267819 -160.238.69.0/24 396965 -160.238.70.0/23 396965 -160.238.72.0/22 133287 -160.238.76.0/22 134913 -160.238.80.0/22 9245 -160.238.84.0/22 132839 -160.238.92.0/23 9829 -160.238.96.0/22 46261 -160.238.100.0/24 2907 -160.238.102.0/23 174 -160.238.104.0/22 266151 -160.238.108.0/22 266210 -160.238.112.0/22 200547 -160.238.120.0/22 210292 -160.238.124.0/22 49191 -160.238.128.0/22 266547 -160.238.132.0/22 266540 -160.238.136.0/22 265727 -160.238.140.0/22 266557 -160.238.144.0/22 266534 -160.238.148.0/22 266553 -160.238.152.0/22 266548 -160.238.156.0/22 266541 -160.238.160.0/22 266535 -160.238.164.0/22 266542 -160.238.168.0/22 265725 -160.238.172.0/22 266554 -160.238.176.0/22 266558 -160.238.180.0/22 266641 -160.238.184.0/22 265728 -160.238.188.0/22 266642 -160.238.192.0/22 266549 -160.238.196.0/22 266546 -160.238.200.0/22 266559 -160.238.204.0/22 265689 -160.238.208.0/22 266569 -160.238.212.0/24 27952 -160.238.214.0/23 27952 -160.238.216.0/22 266552 -160.238.220.0/22 266555 -160.238.224.0/22 266551 -160.238.228.0/22 266556 -160.238.232.0/22 266574 -160.238.236.0/22 266577 -160.238.240.0/22 266572 -160.238.244.0/23 265717 -160.238.246.0/24 265717 -160.238.247.0/24 3549 -160.238.248.0/22 266564 -160.238.252.0/23 27651 -160.238.254.0/24 27651 -160.239.0.0/20 9366 -160.239.16.0/22 9366 -160.239.20.0/23 4694 -160.239.22.0/23 9366 -160.239.24.0/22 9366 -160.239.28.0/23 9366 -160.239.30.0/24 9366 -160.239.31.0/24 4694 -160.239.32.0/24 4694 -160.239.33.0/24 9366 -160.239.34.0/23 4694 -160.239.36.0/22 9366 -160.239.40.0/21 9366 -160.239.48.0/20 9366 -160.239.64.0/18 9366 -160.239.128.0/17 9366 -160.242.0.0/20 33763 -160.242.16.0/21 33763 -160.242.29.0/24 33763 -160.242.30.0/23 33763 -160.242.32.0/21 33763 -160.242.48.0/20 33763 -160.242.64.0/22 33763 -160.242.68.0/23 33763 -160.242.70.0/24 33763 -160.242.71.0/24 206283 -160.242.72.0/21 33763 -160.242.80.0/20 33763 -160.242.96.0/21 33763 -160.242.120.0/21 33763 -160.242.128.0/22 327783 -160.242.132.0/22 37122 -160.242.136.0/21 37122 -160.242.144.0/20 37122 -160.242.160.0/19 37122 -160.242.192.0/20 24691 -160.244.0.0/16 2907 -160.245.112.0/24 2907 -160.246.0.0/16 7687 -160.247.0.0/16 2907 -160.248.0.0/21 2514 -160.248.8.0/22 2514 -160.248.12.0/24 2514 -160.248.14.0/23 2514 -160.248.16.0/20 2514 -160.248.32.0/19 2514 -160.248.64.0/22 2514 -160.248.68.0/23 2514 -160.248.74.0/23 2514 -160.248.76.0/22 2514 -160.248.80.0/23 2514 -160.248.83.0/24 2514 -160.248.84.0/24 2514 -160.248.87.0/24 2514 -160.248.88.0/24 2514 -160.248.90.0/23 2514 -160.248.92.0/22 2514 -160.248.96.0/19 2514 -160.248.128.0/19 2514 -160.248.160.0/20 2514 -160.248.184.0/21 2514 -160.248.192.0/21 2514 -160.248.200.0/23 2514 -160.248.203.0/24 2514 -160.248.204.0/23 2514 -160.248.207.0/24 2514 -160.248.208.0/20 2514 -160.248.232.0/22 2514 -160.248.241.0/24 2514 -160.248.242.0/23 2514 -160.248.244.0/22 2514 -160.248.248.0/22 2514 -160.248.252.0/23 2514 -160.248.255.0/24 2514 -160.249.0.0/16 9605 -160.251.0.0/17 7506 -160.252.0.0/16 2907 -160.253.0.0/16 40102 -160.254.0.0/19 11911 -160.254.32.0/22 11911 -160.254.36.0/23 11911 -160.254.38.0/24 22260 -160.254.39.0/24 11911 -160.254.40.0/21 11911 -160.254.48.0/20 11911 -160.254.64.0/20 11911 -160.254.80.0/24 22260 -160.254.81.0/24 11911 -160.254.82.0/23 11911 -160.254.84.0/22 11911 -160.254.88.0/21 11911 -160.254.96.0/21 11911 -160.254.104.0/23 11911 -160.254.106.0/24 11911 -160.254.107.0/24 22260 -160.254.108.0/24 22260 -160.254.109.0/24 11911 -160.254.110.0/23 22260 -160.254.112.0/23 22260 -160.254.114.0/23 11911 -160.254.116.0/24 22260 -160.254.117.0/24 11911 -160.254.118.0/24 11911 -160.254.119.0/24 22260 -160.254.120.0/23 11911 -160.254.122.0/24 11911 -160.254.123.0/24 22260 -160.254.124.0/22 11911 -160.254.128.0/21 11911 -160.254.136.0/24 11911 -160.254.137.0/24 22260 -160.254.138.0/23 11911 -160.254.140.0/22 11911 -160.254.144.0/21 11911 -160.254.152.0/22 11911 -160.254.156.0/24 11911 -160.254.157.0/24 22260 -160.254.158.0/23 11911 -160.254.160.0/23 11911 -160.254.180.0/24 22260 -160.254.181.0/24 11911 -160.254.246.0/24 40375 -160.255.0.0/17 18530 -160.255.128.0/18 18530 -160.255.192.0/18 62355 -161.0.0.0/19 263740 -161.0.32.0/19 25607 -161.0.64.0/22 262935 -161.0.68.0/22 263821 -161.0.72.0/21 52465 -161.0.80.0/20 27745 -161.0.96.0/20 52233 -161.0.112.0/21 263222 -161.0.120.0/21 61442 -161.0.128.0/20 27653 -161.0.144.0/21 27653 -161.0.152.0/21 27800 -161.0.160.0/20 262237 -161.0.176.0/24 263221 -161.0.179.0/24 263221 -161.0.181.0/24 263221 -161.0.192.0/19 20299 -161.0.224.0/19 27665 -161.2.0.0/16 15914 -161.3.0.0/16 1724 -161.4.0.0/16 60278 -161.5.0.0/16 12311 -161.6.0.0/16 32071 -161.7.0.0/16 3482 -161.8.0.0/19 35913 -161.8.32.0/19 395800 -161.8.64.0/18 204170 -161.8.128.0/19 62976 -161.9.0.0/17 9095 -161.9.128.0/20 8517 -161.9.144.0/21 8456 -161.9.152.0/21 8678 -161.9.160.0/19 8517 -161.9.192.0/18 8517 -161.10.0.0/18 3816 -161.10.80.0/20 3816 -161.10.96.0/19 3816 -161.10.128.0/17 3816 -161.11.0.0/16 26854 -161.12.0.0/22 61231 -161.12.4.0/24 61231 -161.12.5.0/24 25470 -161.12.6.0/23 25470 -161.12.8.0/21 25470 -161.12.16.0/22 3356 -161.12.20.0/22 61231 -161.12.24.0/21 61231 -161.12.32.0/19 61231 -161.12.64.0/18 61231 -161.13.0.0/16 14351 -161.14.95.0/24 2164 -161.15.48.0/23 10615 -161.15.54.0/23 10615 -161.15.56.0/22 10615 -161.16.0.0/23 19512 -161.17.0.0/16 15404 -161.18.0.0/20 3816 -161.18.32.0/19 3816 -161.18.64.0/18 3816 -161.18.128.0/17 3816 -161.19.0.0/16 852 -161.21.0.0/16 63102 -161.22.0.0/19 19889 -161.22.32.0/24 267789 -161.22.34.0/23 8053 -161.22.36.0/24 9009 -161.22.37.0/24 264628 -161.22.38.0/23 267789 -161.22.40.0/21 14178 -161.22.48.0/23 19905 -161.22.50.0/23 27660 -161.22.52.0/23 27660 -161.22.54.0/23 52344 -161.22.56.0/21 262481 -161.22.64.0/18 21351 -161.22.128.0/17 28024 -161.23.0.0/16 198864 -161.24.0.0/16 1916 -161.25.178.0/24 6429 -161.25.203.0/24 16629 -161.27.0.0/16 21176 -161.28.0.0/16 210 -161.29.0.0/19 9503 -161.29.32.0/19 9790 -161.29.64.0/18 9503 -161.29.128.0/20 9503 -161.29.144.0/20 9790 -161.29.160.0/19 9790 -161.29.192.0/20 9503 -161.29.208.0/20 9790 -161.29.224.0/19 9790 -161.30.0.0/22 2830 -161.30.4.0/24 2830 -161.30.5.0/24 31515 -161.30.6.0/23 2830 -161.30.8.0/22 2830 -161.30.12.0/22 31515 -161.30.16.0/22 31515 -161.30.20.0/23 2830 -161.30.22.0/23 31515 -161.30.24.0/22 2830 -161.30.28.0/23 31515 -161.30.30.0/23 2830 -161.30.32.0/24 2830 -161.30.33.0/24 31515 -161.30.34.0/23 2830 -161.30.36.0/22 2830 -161.30.40.0/21 2830 -161.30.48.0/20 2830 -161.30.64.0/19 2830 -161.30.96.0/20 2830 -161.30.112.0/21 31515 -161.30.120.0/23 31515 -161.30.122.0/23 2830 -161.30.124.0/22 31515 -161.30.128.0/23 31515 -161.30.130.0/24 31515 -161.30.131.0/24 2830 -161.30.132.0/22 2830 -161.30.136.0/21 2830 -161.30.144.0/20 2830 -161.30.160.0/20 2830 -161.30.176.0/20 31515 -161.30.192.0/24 2830 -161.30.193.0/24 31515 -161.30.194.0/23 31515 -161.30.196.0/22 2830 -161.30.200.0/24 2830 -161.30.201.0/24 31515 -161.30.202.0/23 31515 -161.30.204.0/22 2830 -161.30.208.0/21 2830 -161.30.216.0/22 2830 -161.30.220.0/23 31515 -161.30.222.0/23 2830 -161.30.224.0/20 2830 -161.30.240.0/22 2830 -161.30.244.0/23 2830 -161.30.246.0/24 31515 -161.30.247.0/24 2830 -161.30.248.0/23 2830 -161.30.250.0/23 31515 -161.30.252.0/22 2830 -161.31.0.0/16 40581 -161.32.0.0/19 1767 -161.32.64.0/18 14340 -161.32.128.0/17 14340 -161.34.0.0/16 2514 -161.36.84.0/22 31865 -161.36.110.0/23 2386 -161.36.113.0/24 2386 -161.36.114.0/23 2386 -161.36.116.0/22 2386 -161.37.0.0/16 158 -161.38.0.0/21 33039 -161.38.12.0/24 53396 -161.38.14.0/24 394352 -161.38.16.0/22 394621 -161.38.20.0/24 397992 -161.38.22.0/23 11589 -161.38.24.0/21 16696 -161.38.32.0/23 15322 -161.38.42.0/23 25649 -161.38.44.0/22 395341 -161.38.61.0/24 393740 -161.38.128.0/19 11976 -161.38.160.0/20 397453 -161.38.186.0/23 63201 -161.38.188.0/23 398123 -161.38.192.0/22 14618 -161.38.196.0/22 16509 -161.38.206.0/23 16509 -161.38.216.0/23 136972 -161.38.218.0/23 33039 -161.38.220.0/23 33039 -161.38.224.0/20 33039 -161.38.240.0/22 53764 -161.38.254.0/24 62915 -161.38.255.0/24 63251 -161.39.16.0/24 33593 -161.39.18.0/23 33593 -161.41.0.0/16 1741 -161.42.0.0/16 553 -161.43.64.0/18 7474 -161.43.192.0/20 7474 -161.43.208.0/21 7474 -161.43.216.0/22 7474 -161.43.220.0/23 7474 -161.43.222.0/24 7474 -161.43.223.0/24 58780 -161.43.224.0/20 4804 -161.43.240.0/20 7474 -161.44.0.0/16 109 -161.45.0.0/16 26335 -161.46.0.0/16 1252 -161.47.0.0/16 19994 -161.49.0.0/17 17639 -161.49.128.0/19 17639 -161.49.160.0/20 17639 -161.49.176.0/21 17639 -161.49.184.0/22 17639 -161.49.192.0/19 17639 -161.49.224.0/21 17639 -161.49.234.0/23 14882 -161.49.238.0/23 14882 -161.49.242.0/24 14882 -161.49.245.0/24 14882 -161.49.247.0/24 14882 -161.49.248.0/23 14882 -161.49.252.0/23 14882 -161.49.254.0/24 14882 -161.50.0.0/16 7575 -161.51.0.0/21 16525 -161.51.8.0/24 16525 -161.51.11.0/24 16525 -161.51.15.0/24 16525 -161.51.16.0/22 9911 -161.51.40.0/22 9822 -161.51.98.0/24 16525 -161.52.0.0/16 43922 -161.53.0.0/16 2108 -161.54.0.0/16 200060 -161.55.0.0/17 3477 -161.55.128.0/18 3477 -161.55.192.0/19 3477 -161.55.224.0/24 6629 -161.55.225.0/24 3477 -161.55.226.0/23 3477 -161.55.228.0/22 3477 -161.55.232.0/21 3477 -161.55.240.0/20 3477 -161.56.0.0/16 28024 -161.57.0.0/16 11206 -161.58.0.0/16 2914 -161.61.160.0/23 26063 -161.61.162.0/24 26063 -161.62.0.0/16 559 -161.64.0.0/16 7582 -161.65.0.0/19 9503 -161.65.32.0/19 4667 -161.65.64.0/18 9503 -161.65.128.0/19 9503 -161.65.160.0/21 132264 -161.65.168.0/24 133857 -161.65.169.0/24 132264 -161.65.172.0/22 132264 -161.65.192.0/20 9503 -161.65.208.0/20 9790 -161.65.224.0/19 9790 -161.66.0.0/16 17542 -161.67.0.0/16 766 -161.68.4.0/24 17231 -161.68.5.0/24 13561 -161.68.8.0/24 13561 -161.68.31.0/24 812 -161.68.128.0/22 2686 -161.68.250.0/23 45794 -161.69.4.0/22 7754 -161.69.8.0/21 7754 -161.69.16.0/20 7754 -161.69.32.0/20 7754 -161.69.48.0/22 7754 -161.69.64.0/22 7754 -161.69.78.0/23 7754 -161.69.82.0/23 7754 -161.69.84.0/22 7754 -161.69.92.0/24 46484 -161.69.99.0/24 46484 -161.69.112.0/24 203724 -161.69.122.0/23 203724 -161.69.132.0/22 7754 -161.69.148.0/22 7754 -161.69.156.0/22 7754 -161.69.160.0/22 7754 -161.69.164.0/22 46484 -161.69.169.0/24 46484 -161.69.200.0/21 7754 -161.69.208.0/24 7754 -161.69.222.0/23 7754 -161.69.226.0/24 46484 -161.70.0.0/16 25019 -161.71.0.0/16 14340 -161.72.0.0/16 766 -161.73.0.0/16 786 -161.74.0.0/16 786 -161.76.0.0/16 786 -161.77.0.0/16 7849 -161.78.0.0/20 3303 -161.79.0.0/16 2715 -161.80.0.0/16 14298 -161.81.0.0/16 137872 -161.82.8.0/22 22811 -161.82.12.0/24 33651 -161.82.13.0/24 174 -161.82.14.0/24 174 -161.82.28.0/22 174 -161.82.36.0/22 174 -161.82.40.0/22 22811 -161.82.44.0/23 33651 -161.82.48.0/24 174 -161.82.64.0/24 398025 -161.82.65.0/24 174 -161.82.66.0/23 174 -161.82.72.0/22 174 -161.82.128.0/21 132280 -161.82.136.0/22 132280 -161.82.140.0/24 45806 -161.82.141.0/24 132280 -161.82.142.0/24 132280 -161.82.143.0/24 45806 -161.82.144.0/22 132280 -161.82.148.0/24 138003 -161.82.149.0/24 132280 -161.82.150.0/23 132280 -161.82.152.0/21 132280 -161.82.160.0/19 132280 -161.82.192.0/18 132280 -161.84.224.0/19 22683 -161.85.96.0/19 22683 -161.88.240.0/20 22683 -161.89.0.0/16 29063 -161.97.0.0/24 17025 -161.97.2.0/24 17025 -161.97.15.0/24 17025 -161.97.25.0/24 17025 -161.97.31.0/24 17025 -161.97.190.0/23 396344 -161.97.192.0/18 393552 -161.98.0.0/16 14041 -161.105.128.0/17 2278 -161.106.0.0/16 2278 -161.107.1.0/24 17275 -161.107.8.0/24 17275 -161.107.16.0/22 17275 -161.107.20.0/23 17275 -161.107.22.0/24 17275 -161.107.25.0/24 17275 -161.107.64.0/22 17275 -161.107.72.0/21 17275 -161.107.112.0/21 17275 -161.107.191.0/24 17275 -161.107.192.0/23 17275 -161.107.195.0/24 17275 -161.108.0.0/18 3955 -161.108.64.0/19 3955 -161.108.96.0/20 3955 -161.108.112.0/21 3955 -161.108.120.0/24 7810 -161.108.121.0/24 3955 -161.108.122.0/23 3955 -161.108.124.0/22 3955 -161.108.128.0/17 3955 -161.109.0.0/16 17327 -161.110.0.0/16 6883 -161.111.0.0/16 766 -161.112.0.0/16 786 -161.113.1.0/24 26381 -161.113.3.0/24 26381 -161.113.4.0/22 26381 -161.113.8.0/22 26381 -161.113.15.0/24 26381 -161.113.16.0/24 26381 -161.113.18.0/23 26381 -161.113.20.0/23 26381 -161.113.25.0/24 26381 -161.113.26.0/23 26381 -161.113.28.0/24 26381 -161.113.192.0/22 9221 -161.113.196.0/23 9221 -161.113.224.0/21 20705 -161.113.240.0/23 20705 -161.113.254.0/23 20705 -161.114.0.0/19 71 -161.114.180.0/24 151 -161.114.188.0/23 151 -161.114.190.0/24 151 -161.115.0.0/16 10545 -161.116.0.0/16 13041 -161.117.0.0/16 45102 -161.119.0.0/16 11663 -161.122.0.0/16 17866 -161.123.0.0/20 9009 -161.123.16.0/22 9009 -161.123.20.0/22 55286 -161.123.24.0/21 9009 -161.123.32.0/19 9009 -161.123.64.0/19 9009 -161.123.96.0/20 9009 -161.123.112.0/23 9009 -161.123.114.0/23 42994 -161.123.128.0/20 9009 -161.123.144.0/22 9009 -161.123.148.0/23 9009 -161.123.150.0/23 11325 -161.123.152.0/22 11325 -161.123.156.0/22 9009 -161.123.160.0/19 134548 -161.123.192.0/19 134548 -161.123.224.0/21 9009 -161.123.232.0/23 9009 -161.123.234.0/24 9009 -161.123.235.0/24 35758 -161.123.236.0/22 9009 -161.123.240.0/22 23734 -161.123.244.0/22 9009 -161.123.248.0/22 55286 -161.123.252.0/22 9009 -161.126.156.0/24 3918 -161.126.181.0/24 3918 -161.126.186.0/24 3918 -161.129.0.0/24 22804 -161.129.2.0/24 22804 -161.129.6.0/24 22804 -161.129.9.0/24 22804 -161.129.13.0/24 22804 -161.129.16.0/23 23348 -161.129.18.0/24 396215 -161.129.19.0/24 20465 -161.129.20.0/23 7018 -161.129.22.0/24 14503 -161.129.23.0/24 53642 -161.129.24.0/24 11372 -161.129.25.0/24 23528 -161.129.26.0/24 11372 -161.129.27.0/24 23528 -161.129.28.0/24 396483 -161.129.29.0/24 13977 -161.129.30.0/24 396316 -161.129.31.0/24 26765 -161.129.32.0/23 64271 -161.129.34.0/24 21859 -161.129.35.0/24 40065 -161.129.36.0/23 64271 -161.129.38.0/24 21859 -161.129.39.0/24 40065 -161.129.40.0/24 64271 -161.129.43.0/24 4785 -161.129.44.0/24 49559 -161.129.45.0/24 21859 -161.129.46.0/24 40065 -161.129.47.0/24 132839 -161.129.48.0/21 54417 -161.129.61.0/24 5650 -161.129.62.0/24 14936 -161.129.63.0/24 393527 -161.129.64.0/21 8100 -161.129.72.0/24 14449 -161.129.73.0/24 11444 -161.129.76.0/22 396502 -161.129.80.0/20 396521 -161.129.136.0/22 394625 -161.129.140.0/22 6939 -161.129.144.0/21 6327 -161.129.152.0/22 13830 -161.129.156.0/22 14078 -161.129.178.0/23 46320 -161.129.182.0/23 16734 -161.129.184.0/23 62813 -161.129.186.0/24 22652 -161.129.187.0/24 18957 -161.129.188.0/24 11722 -161.129.191.0/24 23293 -161.129.192.0/19 174 -161.129.224.0/23 27348 -161.129.228.0/22 27348 -161.129.232.0/21 396284 -161.129.240.0/22 12042 -161.129.245.0/24 394352 -161.129.246.0/23 209 -161.129.248.0/21 19323 -161.130.0.0/16 26934 -161.131.0.0/24 14795 -161.131.69.0/24 14795 -161.131.164.0/24 14795 -161.131.182.0/24 14795 -161.131.205.0/24 14795 -161.131.215.0/24 14795 -161.131.221.0/24 14795 -161.131.243.0/24 14795 -161.132.0.0/18 3132 -161.132.64.0/19 3132 -161.132.96.0/19 27843 -161.132.128.0/18 3132 -161.132.192.0/19 27843 -161.132.224.0/19 3132 -161.133.0.0/16 7018 -161.134.0.0/16 3549 -161.135.0.0/16 7726 -161.136.0.0/16 17311 -161.137.0.0/16 1761 -161.138.0.0/16 28024 -161.139.0.0/17 133014 -161.139.128.0/20 133014 -161.139.144.0/20 4788 -161.139.168.0/24 4788 -161.139.208.0/20 133014 -161.139.224.0/19 133014 -161.140.128.0/17 6306 -161.141.1.0/24 53987 -161.141.2.0/23 53987 -161.141.5.0/24 53987 -161.141.6.0/23 53987 -161.141.8.0/24 53987 -161.141.12.0/23 53987 -161.141.253.0/24 17377 -161.142.0.0/16 9930 -161.143.0.0/16 9650 -161.146.160.0/23 18055 -161.146.192.0/19 18055 -161.146.224.0/20 18055 -161.148.0.0/16 10954 -161.149.0.0/16 4179 -161.150.0.0/21 22125 -161.150.8.0/21 10995 -161.150.16.0/20 10995 -161.150.32.0/21 10995 -161.150.40.0/21 22125 -161.150.48.0/21 22125 -161.150.56.0/21 10995 -161.150.64.0/19 10995 -161.150.96.0/20 10995 -161.150.112.0/24 22125 -161.150.113.0/24 10995 -161.150.114.0/23 22125 -161.150.116.0/22 22125 -161.150.120.0/23 22125 -161.150.122.0/23 10995 -161.150.124.0/22 10995 -161.150.128.0/17 10995 -161.151.40.0/21 6253 -161.151.48.0/20 6253 -161.151.72.0/21 6253 -161.151.80.0/21 6253 -161.151.93.0/24 6253 -161.151.128.0/19 6253 -161.151.164.0/22 6253 -161.151.224.0/19 6253 -161.152.0.0/16 10203 -161.154.0.0/16 10273 -161.155.0.0/16 6181 -161.156.64.0/18 36351 -161.156.128.0/18 36351 -161.162.17.0/24 7046 -161.162.26.0/23 7046 -161.162.32.0/21 3257 -161.162.40.0/22 5580 -161.162.108.0/22 3257 -161.162.128.0/22 2497 -161.162.144.0/20 15352 -161.162.160.0/20 15352 -161.163.0.0/21 45101 -161.163.8.0/21 10695 -161.163.16.0/21 10695 -161.163.24.0/22 10695 -161.163.28.0/23 45101 -161.163.30.0/23 10695 -161.163.32.0/21 10695 -161.163.40.0/22 10695 -161.163.44.0/24 26579 -161.163.45.0/24 10695 -161.163.46.0/23 10695 -161.163.48.0/20 10695 -161.163.64.0/18 10695 -161.163.128.0/19 10695 -161.163.160.0/22 10695 -161.163.164.0/23 10695 -161.163.166.0/24 2856 -161.163.167.0/24 10695 -161.163.168.0/21 10695 -161.163.176.0/24 10695 -161.163.177.0/24 2856 -161.163.178.0/23 10695 -161.163.180.0/22 10695 -161.163.184.0/21 10695 -161.163.192.0/18 10695 -161.164.0.0/17 10695 -161.164.128.0/18 10695 -161.164.192.0/19 10695 -161.164.224.0/20 10695 -161.164.240.0/21 10695 -161.164.248.0/22 28551 -161.164.252.0/23 10695 -161.164.254.0/23 28551 -161.165.0.0/16 10695 -161.166.0.0/16 10695 -161.167.0.0/17 10695 -161.167.128.0/21 10695 -161.167.136.0/22 10695 -161.167.140.0/23 10695 -161.167.142.0/24 46313 -161.167.143.0/24 10695 -161.167.144.0/20 10695 -161.167.160.0/19 10695 -161.167.192.0/19 10695 -161.167.224.0/19 46313 -161.168.0.0/16 32851 -161.169.0.0/16 10695 -161.170.119.0/24 7046 -161.170.120.0/22 46313 -161.170.126.0/24 46312 -161.170.193.0/24 26579 -161.170.196.0/24 46313 -161.170.197.0/24 7046 -161.170.198.0/23 46313 -161.170.228.0/23 22773 -161.170.230.0/23 46312 -161.170.232.0/23 46313 -161.170.236.0/23 17374 -161.170.238.0/24 46312 -161.170.240.0/20 17374 -161.171.0.0/16 10695 -161.172.0.0/15 10695 -161.174.0.0/23 394974 -161.174.2.0/23 10695 -161.174.4.0/22 10695 -161.174.8.0/21 10695 -161.174.16.0/20 10695 -161.174.32.0/19 10695 -161.174.64.0/18 10695 -161.174.128.0/17 10695 -161.175.0.0/16 10695 -161.176.0.0/15 10695 -161.179.128.0/22 11857 -161.181.0.0/19 46564 -161.181.32.0/20 46564 -161.181.48.0/24 3356 -161.181.49.0/24 46564 -161.181.50.0/23 46564 -161.181.52.0/22 46564 -161.181.56.0/21 46564 -161.181.64.0/18 46564 -161.181.128.0/17 46564 -161.184.0.0/16 852 -161.185.0.0/16 22252 -161.186.6.0/24 17347 -161.186.88.0/23 17347 -161.186.93.0/24 17347 -161.186.147.0/24 17347 -161.186.148.0/24 17347 -161.186.151.0/24 17347 -161.188.204.0/24 10890 -161.188.211.0/24 10890 -161.188.212.0/24 10890 -161.188.250.0/24 10890 -161.189.0.0/16 135629 -161.190.0.0/17 13474 -161.194.128.0/23 27357 -161.195.65.0/24 29967 -161.195.66.0/24 29967 -161.195.68.0/24 29967 -161.195.70.0/24 29967 -161.195.129.0/24 209 -161.195.135.0/24 4766 -161.195.137.0/24 397641 -161.195.138.0/24 3549 -161.195.139.0/24 29967 -161.195.141.0/24 3209 -161.195.142.0/24 262224 -161.195.143.0/24 5488 -161.195.145.0/24 5488 -161.195.146.0/24 206051 -161.195.157.0/24 3257 -161.195.176.0/23 29967 -161.195.190.0/24 7381 -161.196.0.0/16 8048 -161.197.0.0/16 2384 -161.199.0.0/24 397185 -161.199.13.0/24 397820 -161.199.18.0/24 11635 -161.199.23.0/24 6461 -161.199.54.0/24 13649 -161.199.56.0/23 397640 -161.199.58.0/24 13649 -161.199.59.0/24 394569 -161.199.76.0/24 398097 -161.199.83.0/24 22358 -161.199.88.0/24 397377 -161.199.89.0/24 17113 -161.199.104.0/24 396040 -161.199.112.0/24 397820 -161.199.119.0/24 396984 -161.199.124.0/22 15092 -161.199.130.0/24 20283 -161.199.132.0/22 16437 -161.199.136.0/22 30103 -161.199.140.0/23 397400 -161.199.142.0/24 397400 -161.199.155.0/24 395598 -161.199.160.0/24 393986 -161.199.164.0/22 3848 -161.199.168.0/23 27311 -161.199.170.0/24 27311 -161.199.172.0/24 36240 -161.199.175.0/24 398165 -161.199.176.0/21 40898 -161.199.184.0/22 23260 -161.199.188.0/24 397794 -161.199.189.0/24 27421 -161.199.196.0/22 396420 -161.199.206.0/24 394902 -161.199.209.0/24 14744 -161.199.212.0/24 46615 -161.199.214.0/24 46615 -161.199.216.0/24 397041 -161.200.0.0/16 3839 -161.202.0.0/16 36351 -161.203.14.0/23 209 -161.203.16.0/22 209 -161.203.22.0/23 209 -161.203.24.0/22 209 -161.207.0.0/21 4808 -161.207.8.0/22 4847 -161.207.12.0/22 4808 -161.207.16.0/24 4847 -161.207.17.0/24 24138 -161.207.18.0/23 24138 -161.207.20.0/22 4808 -161.207.24.0/21 4808 -161.207.32.0/19 4808 -161.207.64.0/18 4808 -161.207.128.0/17 4808 -161.208.0.0/19 23496 -161.208.32.0/24 23496 -161.208.150.0/24 23496 -161.208.154.0/24 23496 -161.208.252.0/23 23496 -161.208.254.0/24 23496 -161.209.96.0/22 32665 -161.209.100.0/23 32665 -161.209.103.0/24 32665 -161.209.111.0/24 32665 -161.209.128.0/23 32665 -161.209.136.0/21 32665 -161.209.192.0/18 32665 -161.210.0.0/16 14513 -161.212.128.0/17 6306 -161.213.0.0/16 23282 -161.215.0.0/20 20461 -161.215.16.0/24 20461 -161.215.17.0/24 36712 -161.215.18.0/23 20461 -161.215.20.0/24 11535 -161.215.21.0/24 20461 -161.215.22.0/23 20461 -161.215.24.0/21 20461 -161.215.32.0/20 20461 -161.215.48.0/23 20461 -161.215.50.0/24 11535 -161.215.51.0/24 20461 -161.215.52.0/22 20461 -161.215.56.0/21 20461 -161.215.64.0/22 20461 -161.215.68.0/24 36722 -161.215.69.0/24 20461 -161.215.70.0/24 20461 -161.215.71.0/24 36722 -161.215.72.0/22 20461 -161.215.76.0/23 36722 -161.215.78.0/23 20461 -161.215.80.0/24 36722 -161.215.81.0/24 20461 -161.215.82.0/23 20461 -161.215.84.0/24 36722 -161.215.85.0/24 20461 -161.215.86.0/24 36722 -161.215.87.0/24 20461 -161.215.88.0/23 20461 -161.215.90.0/23 36722 -161.215.92.0/22 20461 -161.215.96.0/22 20461 -161.215.100.0/23 20461 -161.215.102.0/24 36722 -161.215.103.0/24 20461 -161.215.104.0/22 20461 -161.215.108.0/23 20461 -161.215.110.0/24 20461 -161.215.111.0/24 11535 -161.215.112.0/24 11535 -161.215.113.0/24 20461 -161.215.114.0/24 20461 -161.215.115.0/24 11535 -161.215.116.0/24 11535 -161.215.117.0/24 20461 -161.215.118.0/23 20461 -161.215.120.0/21 20461 -161.215.128.0/19 20461 -161.215.160.0/20 20461 -161.215.176.0/23 20461 -161.215.178.0/24 20461 -161.215.179.0/24 7018 -161.215.180.0/23 20461 -161.215.182.0/24 20461 -161.215.183.0/24 36722 -161.215.184.0/21 20461 -161.215.192.0/24 20461 -161.215.193.0/24 36722 -161.215.194.0/23 20461 -161.215.196.0/22 20461 -161.215.200.0/24 20461 -161.215.201.0/24 36722 -161.215.202.0/24 36722 -161.215.203.0/24 20461 -161.215.204.0/22 20461 -161.215.208.0/24 20461 -161.215.209.0/24 11535 -161.215.210.0/23 11535 -161.215.212.0/24 11535 -161.215.213.0/24 20461 -161.215.214.0/24 11535 -161.215.215.0/24 20461 -161.215.216.0/24 20461 -161.215.217.0/24 11535 -161.215.218.0/24 11535 -161.215.219.0/24 20461 -161.215.220.0/24 11535 -161.215.221.0/24 20461 -161.215.222.0/23 20461 -161.215.224.0/20 20461 -161.215.240.0/21 20461 -161.215.248.0/22 20461 -161.215.252.0/24 36722 -161.215.253.0/24 20461 -161.215.254.0/23 20461 -161.216.0.0/18 36522 -161.216.64.0/18 577 -161.216.128.0/18 36522 -161.216.192.0/18 577 -161.221.6.0/23 39960 -161.221.8.0/22 39960 -161.221.12.0/23 13313 -161.221.18.0/23 39960 -161.221.20.0/24 39960 -161.221.74.0/23 39960 -161.221.76.0/22 39960 -161.221.80.0/23 39960 -161.221.82.0/24 39960 -161.221.84.0/23 39960 -161.221.87.0/24 39960 -161.221.88.0/22 39960 -161.221.92.0/24 39960 -161.221.94.0/23 39960 -161.221.97.0/24 13313 -161.221.98.0/24 13313 -161.222.0.0/16 33217 -161.223.0.0/16 5766 -161.224.0.0/17 396269 -161.224.128.0/18 396269 -161.224.192.0/19 396269 -161.224.224.0/20 396269 -161.224.240.0/21 396269 -161.224.248.0/24 23148 -161.224.249.0/24 396269 -161.224.250.0/23 396269 -161.224.252.0/22 396269 -161.225.0.0/16 17052 -161.226.0.0/16 3709 -161.227.0.0/16 15173 -161.229.250.0/24 3758 -161.230.0.0/16 12353 -161.231.1.0/24 4196 -161.231.78.0/23 4196 -161.231.218.0/23 4196 -161.232.0.0/16 12041 -161.235.0.0/16 13695 -161.238.252.0/22 263758 -161.239.224.0/23 10615 -161.239.228.0/22 10615 -161.239.232.0/23 10615 -161.239.244.0/23 10615 -161.239.250.0/23 10615 -161.239.252.0/22 10615 -161.242.0.0/21 15141 -161.242.8.0/23 15141 -161.242.10.0/24 15141 -161.242.11.0/24 19693 -161.242.12.0/22 15141 -161.242.16.0/24 15141 -161.242.17.0/24 36458 -161.242.18.0/23 15141 -161.242.20.0/22 15141 -161.242.24.0/21 15141 -161.242.32.0/20 15141 -161.242.48.0/22 15141 -161.242.52.0/24 15141 -161.242.53.0/24 19693 -161.242.54.0/23 15141 -161.242.56.0/23 15141 -161.242.58.0/24 15141 -161.242.59.0/24 36458 -161.242.60.0/22 15141 -161.242.64.0/21 15141 -161.242.72.0/22 15141 -161.242.76.0/24 36458 -161.242.77.0/24 15141 -161.242.78.0/23 15141 -161.242.80.0/20 15141 -161.242.96.0/23 36458 -161.242.98.0/23 15141 -161.242.100.0/22 15141 -161.242.104.0/21 15141 -161.242.112.0/20 15141 -161.242.128.0/19 15141 -161.242.160.0/20 15141 -161.242.176.0/20 9381 -161.242.192.0/19 15141 -161.242.224.0/24 15141 -161.242.225.0/24 199709 -161.242.226.0/23 15141 -161.242.228.0/22 15141 -161.242.232.0/21 15141 -161.242.240.0/20 15141 -161.243.0.0/16 36548 -161.246.0.0/16 9486 -161.247.0.0/16 26539 -161.249.16.0/23 10879 -161.249.56.0/24 10879 -161.249.64.0/19 10879 -161.249.144.0/20 10879 -161.249.160.0/19 10879 -161.249.192.0/22 10879 -161.249.200.0/21 10879 -161.249.208.0/21 10879 -161.249.216.0/22 10879 -161.249.224.0/19 10879 -161.251.0.0/16 25019 -161.252.0.0/16 42781 -161.253.0.0/16 11039 -161.254.0.0/20 25667 -161.254.16.0/21 25667 -161.254.40.0/21 25667 -161.254.48.0/20 25667 -161.254.98.0/24 25667 -161.254.106.0/24 25667 -161.254.160.0/22 25667 -161.254.196.0/23 25667 -161.254.198.0/23 17282 -162.0.0.0/16 35893 -162.1.1.0/24 27353 -162.1.2.0/24 27353 -162.1.6.0/24 27353 -162.1.11.0/24 27353 -162.1.23.0/24 27353 -162.1.24.0/21 27353 -162.1.33.0/24 27353 -162.1.40.0/21 27353 -162.1.48.0/20 27353 -162.1.64.0/18 27353 -162.1.129.0/24 27353 -162.1.136.0/21 27353 -162.1.144.0/20 27353 -162.1.176.0/23 27353 -162.1.179.0/24 27353 -162.1.182.0/24 27353 -162.1.184.0/24 27353 -162.1.192.0/18 27353 -162.2.0.0/16 1226 -162.5.0.0/16 33348 -162.6.0.0/16 7152 -162.8.64.0/23 3145 -162.8.120.0/24 10457 -162.8.125.0/24 10457 -162.8.165.0/24 32067 -162.8.166.0/24 3145 -162.8.168.0/24 3145 -162.8.169.0/24 32067 -162.8.230.0/24 3145 -162.8.231.0/24 32067 -162.8.232.0/24 3145 -162.8.233.0/24 32067 -162.10.60.0/23 40685 -162.10.70.0/23 40685 -162.10.75.0/24 22773 -162.10.76.0/24 22773 -162.10.77.0/24 40685 -162.10.78.0/24 40685 -162.10.122.0/24 40685 -162.10.241.0/24 22773 -162.10.242.0/23 22773 -162.10.250.0/23 40685 -162.10.252.0/23 40685 -162.11.0.0/16 8651 -162.12.128.0/18 46746 -162.12.196.0/22 265699 -162.12.200.0/22 201329 -162.12.208.0/22 133495 -162.12.213.0/24 131686 -162.12.214.0/23 131686 -162.12.216.0/24 62689 -162.12.217.0/24 394648 -162.12.219.0/24 5632 -162.12.220.0/22 7734 -162.12.224.0/21 46868 -162.12.232.0/22 30103 -162.12.244.0/22 134264 -162.13.0.0/16 15395 -162.14.0.0/20 132203 -162.14.16.0/21 132203 -162.14.24.0/21 45090 -162.14.32.0/19 45090 -162.14.64.0/18 45090 -162.14.128.0/17 45090 -162.15.0.0/16 46341 -162.17.0.0/16 7922 -162.18.0.0/19 209 -162.18.32.0/23 209 -162.18.34.0/24 19820 -162.18.35.0/24 209 -162.18.36.0/22 209 -162.18.40.0/22 209 -162.18.44.0/23 209 -162.18.46.0/24 209 -162.18.47.0/24 19820 -162.18.48.0/20 209 -162.18.64.0/20 209 -162.18.80.0/21 209 -162.18.88.0/22 209 -162.18.92.0/24 3356 -162.18.93.0/24 209 -162.18.94.0/23 3356 -162.18.96.0/19 209 -162.18.128.0/23 209 -162.18.130.0/24 2686 -162.18.131.0/24 209 -162.18.132.0/22 209 -162.18.136.0/23 2686 -162.18.138.0/23 209 -162.18.140.0/22 209 -162.18.144.0/20 209 -162.18.160.0/19 209 -162.18.192.0/18 209 -162.21.0.0/16 3303 -162.22.248.0/21 13688 -162.23.0.0/16 33845 -162.24.0.0/16 385 -162.25.0.0/18 197636 -162.25.64.0/23 21074 -162.25.68.0/23 15515 -162.27.7.0/24 14328 -162.27.9.0/24 14328 -162.27.10.0/24 14328 -162.27.12.0/24 14328 -162.27.32.0/22 14328 -162.27.36.0/24 14328 -162.27.38.0/23 14328 -162.27.43.0/24 14328 -162.27.45.0/24 14328 -162.27.47.0/24 7018 -162.27.49.0/24 7018 -162.27.54.0/23 14328 -162.27.56.0/23 395339 -162.27.58.0/24 14328 -162.27.59.0/24 395339 -162.27.60.0/24 7018 -162.27.62.0/23 14328 -162.27.64.0/22 14328 -162.27.68.0/23 395339 -162.27.78.0/23 14328 -162.27.80.0/23 395339 -162.27.82.0/24 395339 -162.27.84.0/23 14328 -162.27.86.0/24 14328 -162.27.89.0/24 14328 -162.27.111.0/24 14328 -162.27.113.0/24 14328 -162.27.114.0/23 14328 -162.27.116.0/22 14328 -162.27.120.0/24 14328 -162.27.122.0/23 14328 -162.27.124.0/22 14328 -162.27.128.0/24 14328 -162.27.150.0/24 14328 -162.27.153.0/24 14328 -162.27.154.0/24 14328 -162.27.156.0/24 31672 -162.27.158.0/23 395267 -162.27.160.0/23 39174 -162.27.162.0/24 39174 -162.27.165.0/24 395267 -162.27.166.0/23 395267 -162.27.168.0/23 395267 -162.27.246.0/23 14328 -162.27.248.0/23 14328 -162.30.0.0/16 46483 -162.33.16.0/20 11598 -162.33.160.0/24 14390 -162.33.166.0/24 14390 -162.33.182.0/24 14390 -162.33.191.0/24 14390 -162.34.176.0/23 54864 -162.34.178.0/24 11271 -162.34.192.0/19 54864 -162.34.230.0/24 54864 -162.34.240.0/20 54864 -162.35.0.0/16 11363 -162.38.0.0/16 2065 -162.39.0.0/18 7029 -162.39.64.0/19 7029 -162.39.96.0/24 7029 -162.39.97.0/24 7381 -162.39.98.0/23 7029 -162.39.100.0/22 7029 -162.39.104.0/21 7029 -162.39.112.0/20 7029 -162.39.128.0/19 7029 -162.39.160.0/20 7029 -162.39.176.0/22 7029 -162.39.180.0/24 14693 -162.39.181.0/24 7029 -162.39.182.0/23 7029 -162.39.184.0/21 7029 -162.39.192.0/19 7029 -162.39.224.0/22 7029 -162.39.228.0/24 7029 -162.39.229.0/24 16560 -162.39.230.0/23 7029 -162.39.232.0/21 7029 -162.39.240.0/20 7029 -162.40.0.0/20 7029 -162.40.16.0/21 7029 -162.40.24.0/22 7029 -162.40.28.0/24 7029 -162.40.29.0/24 35842 -162.40.30.0/23 7029 -162.40.32.0/19 7029 -162.40.64.0/21 7029 -162.40.72.0/24 7029 -162.40.73.0/24 11511 -162.40.74.0/23 7029 -162.40.76.0/22 7029 -162.40.80.0/20 7029 -162.40.96.0/19 7029 -162.40.128.0/17 7029 -162.41.0.0/16 53984 -162.42.0.0/20 11333 -162.42.16.0/22 55143 -162.42.20.0/22 11333 -162.42.24.0/21 11333 -162.42.32.0/19 11333 -162.42.64.0/23 11333 -162.42.66.0/24 3356 -162.42.67.0/24 11333 -162.42.68.0/22 11333 -162.42.72.0/21 11333 -162.42.80.0/20 11333 -162.42.96.0/19 11333 -162.42.128.0/17 11333 -162.43.197.0/24 11731 -162.43.198.0/24 11731 -162.44.4.0/24 51303 -162.44.5.0/24 201676 -162.44.6.0/24 134834 -162.44.8.0/24 47718 -162.44.9.0/24 59902 -162.44.38.0/23 201676 -162.44.42.0/23 201676 -162.44.124.0/24 14948 -162.44.135.0/24 14489 -162.44.136.0/24 14489 -162.44.138.0/23 14489 -162.44.142.0/24 14489 -162.44.150.0/23 133388 -162.44.164.0/22 14948 -162.44.181.0/24 14948 -162.44.193.0/24 136963 -162.44.195.0/24 136271 -162.44.197.0/24 2497 -162.44.198.0/23 136271 -162.44.200.0/24 14948 -162.44.202.0/24 14948 -162.44.221.0/24 14948 -162.44.223.0/24 14948 -162.44.224.0/23 59907 -162.44.226.0/24 14948 -162.44.230.0/24 2497 -162.44.236.0/24 17477 -162.44.239.0/24 46887 -162.44.241.0/24 17477 -162.44.242.0/24 132823 -162.44.245.0/24 14948 -162.44.247.0/24 134109 -162.44.248.0/23 14948 -162.44.250.0/24 133388 -162.44.251.0/24 14948 -162.44.253.0/24 55250 -162.45.0.0/16 7046 -162.46.0.0/16 7046 -162.47.15.0/24 3378 -162.47.128.0/20 3378 -162.47.144.0/22 3378 -162.47.158.0/23 3372 -162.47.160.0/22 3378 -162.47.165.0/24 3372 -162.50.0.0/16 22958 -162.51.0.0/16 23193 -162.53.0.0/16 22910 -162.57.0.0/16 64226 -162.58.0.0/16 3923 -162.59.0.0/16 30449 -162.60.252.0/23 10837 -162.61.0.0/20 21188 -162.61.16.0/22 21188 -162.61.20.0/23 56077 -162.61.22.0/23 21188 -162.61.24.0/21 21188 -162.61.32.0/19 21188 -162.61.64.0/19 21188 -162.61.96.0/23 56077 -162.61.98.0/23 21188 -162.61.100.0/22 21188 -162.61.104.0/21 21188 -162.61.112.0/20 21188 -162.61.128.0/18 21188 -162.61.192.0/19 21188 -162.61.224.0/20 22838 -162.61.240.0/20 21188 -162.62.0.0/16 132203 -162.64.244.0/23 10615 -162.65.246.0/24 6461 -162.66.16.0/22 10615 -162.66.20.0/23 10615 -162.66.28.0/23 10615 -162.66.52.0/23 10615 -162.67.0.0/21 395784 -162.68.0.0/16 26585 -162.70.72.0/24 40289 -162.71.192.0/22 1415 -162.71.197.0/24 1415 -162.71.210.0/24 1415 -162.71.230.0/24 1415 -162.71.232.0/24 1415 -162.71.234.0/24 1415 -162.71.236.0/24 1415 -162.71.241.0/24 1415 -162.71.244.0/24 1415 -162.71.246.0/24 1415 -162.72.0.0/16 7155 -162.73.8.0/24 40676 -162.73.53.0/24 40676 -162.73.240.0/24 40126 -162.73.244.0/24 40126 -162.73.248.0/24 40126 -162.74.52.0/24 13530 -162.74.70.0/24 13530 -162.74.96.0/24 13530 -162.74.98.0/23 13530 -162.74.192.0/19 13530 -162.74.250.0/24 10753 -162.74.252.0/24 10753 -162.75.0.0/16 2048 -162.78.0.0/16 15323 -162.79.0.0/16 4152 -162.80.0.0/16 3549 -162.82.0.0/17 46620 -162.82.128.0/20 46620 -162.82.144.0/21 46620 -162.82.152.0/23 46620 -162.82.154.0/23 46465 -162.82.156.0/22 46620 -162.82.160.0/19 46620 -162.82.192.0/18 46620 -162.83.0.0/16 701 -162.84.0.0/16 701 -162.88.2.0/24 33517 -162.88.4.0/23 33517 -162.88.6.0/24 33517 -162.88.8.0/24 33517 -162.88.11.0/24 33517 -162.88.18.0/24 33517 -162.88.20.0/24 33517 -162.88.24.0/24 33517 -162.88.25.0/24 31898 -162.88.26.0/23 33517 -162.88.28.0/24 33517 -162.88.29.0/24 31898 -162.88.30.0/23 33517 -162.88.34.0/24 33517 -162.88.36.0/23 33517 -162.88.40.0/21 15135 -162.88.50.0/24 33517 -162.88.52.0/22 15135 -162.88.57.0/24 15135 -162.88.60.0/22 33517 -162.88.64.0/20 33517 -162.88.80.0/21 33517 -162.88.88.0/22 33517 -162.88.96.0/20 33517 -162.88.112.0/22 33517 -162.88.120.0/21 33517 -162.88.128.0/18 33517 -162.88.192.0/21 33517 -162.88.208.0/21 33517 -162.88.219.0/24 33517 -162.88.232.0/24 33517 -162.88.234.0/24 33517 -162.88.240.0/21 33517 -162.88.248.0/22 33517 -162.88.252.0/23 33517 -162.88.254.0/24 33517 -162.89.0.0/20 393759 -162.89.20.0/22 53368 -162.90.0.0/22 25844 -162.90.50.0/24 19589 -162.90.96.0/22 25844 -162.90.116.0/24 25844 -162.90.144.0/20 25844 -162.90.160.0/19 25844 -162.90.192.0/20 25844 -162.90.240.0/20 25844 -162.91.0.0/17 701 -162.91.128.0/18 701 -162.91.192.0/19 701 -162.91.224.0/20 701 -162.91.240.0/21 701 -162.91.248.0/23 701 -162.91.250.0/24 705 -162.91.251.0/24 701 -162.91.252.0/22 701 -162.92.120.0/21 53741 -162.92.128.0/24 53741 -162.92.176.0/23 53741 -162.92.180.0/23 53741 -162.92.191.0/24 53741 -162.93.0.0/23 6949 -162.93.2.0/23 7046 -162.93.4.0/23 7046 -162.93.8.0/24 6949 -162.93.9.0/24 10753 -162.93.10.0/24 10753 -162.93.11.0/24 6949 -162.93.12.0/22 6949 -162.93.21.0/24 19004 -162.93.22.0/23 19004 -162.93.25.0/24 19004 -162.93.27.0/24 10753 -162.93.28.0/23 7046 -162.93.30.0/24 7046 -162.93.48.0/20 6949 -162.93.64.0/19 6949 -162.93.124.0/22 6949 -162.93.160.0/19 6949 -162.93.192.0/18 6949 -162.94.0.0/16 22089 -162.95.112.0/21 22703 -162.95.129.0/24 22703 -162.95.141.0/24 22703 -162.95.148.0/24 22703 -162.95.160.0/21 22703 -162.95.200.0/23 22703 -162.95.203.0/24 22703 -162.95.208.0/20 22703 -162.96.0.0/16 33274 -162.97.0.0/18 3549 -162.97.64.0/20 3549 -162.97.80.0/22 3356 -162.97.84.0/22 3549 -162.97.88.0/21 3549 -162.97.96.0/23 3549 -162.97.98.0/24 3549 -162.97.99.0/24 27377 -162.97.100.0/22 3549 -162.97.104.0/21 3549 -162.97.112.0/20 3549 -162.97.128.0/20 3549 -162.97.144.0/21 3549 -162.97.152.0/21 3356 -162.97.160.0/19 3549 -162.97.192.0/22 3549 -162.97.196.0/23 3549 -162.97.198.0/24 1286 -162.97.199.0/24 3549 -162.97.200.0/21 3549 -162.97.208.0/21 3549 -162.97.216.0/22 3549 -162.97.220.0/23 3356 -162.97.222.0/23 3549 -162.97.224.0/20 3549 -162.97.240.0/24 3549 -162.97.241.0/24 40161 -162.97.242.0/23 33483 -162.97.244.0/22 3549 -162.97.248.0/21 3549 -162.99.0.0/17 26810 -162.99.128.0/18 26810 -162.99.192.0/19 26810 -162.99.224.0/19 3527 -162.104.0.0/20 13787 -162.104.16.0/20 209 -162.104.32.0/19 209 -162.104.64.0/18 209 -162.104.128.0/19 209 -162.104.160.0/20 22561 -162.104.176.0/20 209 -162.104.192.0/21 209 -162.104.200.0/24 22561 -162.104.201.0/24 209 -162.104.202.0/23 209 -162.104.204.0/23 22561 -162.104.206.0/24 22561 -162.104.207.0/24 209 -162.104.208.0/20 22561 -162.104.224.0/20 209 -162.104.240.0/21 209 -162.104.248.0/22 209 -162.104.252.0/24 11398 -162.104.253.0/24 22561 -162.104.254.0/23 22561 -162.105.0.0/16 4538 -162.106.0.0/16 395660 -162.107.176.0/21 3561 -162.107.192.0/21 17162 -162.107.224.0/21 14230 -162.107.240.0/21 12042 -162.108.0.0/16 13325 -162.111.192.0/22 4196 -162.112.0.0/17 45946 -162.112.128.0/18 45946 -162.112.192.0/19 45946 -162.112.248.0/22 45946 -162.113.0.0/16 19113 -162.114.0.0/16 10921 -162.115.0.0/16 12079 -162.116.11.0/24 10666 -162.116.29.0/24 10666 -162.116.33.0/24 10666 -162.116.126.0/24 10666 -162.116.190.0/23 10666 -162.116.240.0/23 10666 -162.116.242.0/24 10666 -162.116.246.0/23 10666 -162.116.249.0/24 10666 -162.117.228.0/23 19647 -162.117.250.0/23 19647 -162.117.252.0/22 2158 -162.118.16.0/21 6128 -162.118.64.0/19 6128 -162.118.128.0/19 6128 -162.119.0.0/22 3379 -162.119.5.0/24 3379 -162.119.6.0/23 3379 -162.119.8.0/24 3379 -162.119.11.0/24 3379 -162.119.13.0/24 3379 -162.119.14.0/23 3379 -162.119.16.0/23 3379 -162.119.18.0/24 3379 -162.119.128.0/19 3379 -162.119.192.0/21 3379 -162.119.200.0/22 3379 -162.119.224.0/19 3379 -162.120.0.0/16 18722 -162.123.0.0/16 11857 -162.125.0.0/16 19679 -162.126.4.0/24 30449 -162.126.8.0/24 30449 -162.126.10.0/23 30449 -162.126.13.0/24 30449 -162.126.138.0/24 30449 -162.126.201.0/24 19881 -162.127.0.0/16 11714 -162.128.3.0/24 14566 -162.128.6.0/23 14566 -162.128.8.0/23 14566 -162.128.11.0/24 14566 -162.128.23.0/24 14566 -162.129.0.0/16 5723 -162.130.0.0/16 6319 -162.132.0.0/16 2047 -162.133.64.0/18 36351 -162.134.32.0/19 53768 -162.134.64.0/19 53768 -162.134.96.0/21 53768 -162.134.128.0/24 53768 -162.134.132.0/24 18994 -162.134.160.0/20 53768 -162.135.0.0/20 32013 -162.135.192.0/20 32013 -162.136.5.0/24 13882 -162.136.6.0/24 13882 -162.136.9.0/24 13882 -162.136.10.0/24 13882 -162.136.23.0/24 13882 -162.136.24.0/24 13882 -162.136.27.0/24 13882 -162.136.28.0/24 13882 -162.136.30.0/23 13882 -162.136.40.0/23 13882 -162.136.42.0/24 13882 -162.136.44.0/23 13882 -162.136.48.0/23 13882 -162.136.66.0/23 13882 -162.136.68.0/23 13882 -162.136.188.0/22 13882 -162.136.192.0/23 13882 -162.136.228.0/22 13882 -162.136.254.0/23 13882 -162.138.0.0/16 26229 -162.139.0.0/20 40341 -162.139.240.0/20 25983 -162.140.0.0/16 3705 -162.142.0.0/21 394283 -162.142.128.0/17 25019 -162.144.0.0/16 46606 -162.145.4.0/23 23744 -162.145.8.0/23 23744 -162.145.16.0/22 23744 -162.145.32.0/23 132029 -162.145.34.0/24 132029 -162.145.40.0/24 132029 -162.148.0.0/15 7922 -162.150.0.0/17 7922 -162.150.128.0/19 7922 -162.150.160.0/20 7922 -162.150.176.0/21 7922 -162.150.184.0/23 7922 -162.150.186.0/24 7922 -162.150.187.0/24 33491 -162.150.188.0/22 33650 -162.150.192.0/22 7922 -162.150.196.0/22 33491 -162.150.200.0/22 7922 -162.150.204.0/24 7922 -162.150.205.0/24 33650 -162.150.206.0/23 7922 -162.150.208.0/22 33650 -162.150.212.0/24 33650 -162.150.213.0/24 7922 -162.150.214.0/23 7922 -162.150.216.0/21 7922 -162.150.224.0/19 7922 -162.151.0.0/16 7922 -162.152.0.0/15 10796 -162.154.0.0/16 10796 -162.155.0.0/19 10796 -162.155.32.0/21 10796 -162.155.40.0/23 10796 -162.155.42.0/24 396990 -162.155.43.0/24 10796 -162.155.44.0/22 10796 -162.155.48.0/21 10796 -162.155.56.0/22 10796 -162.155.60.0/23 10796 -162.155.62.0/24 10796 -162.155.63.0/24 15131 -162.155.64.0/18 10796 -162.155.128.0/18 10796 -162.155.192.0/21 10796 -162.155.200.0/23 10796 -162.155.202.0/24 26060 -162.155.203.0/24 10796 -162.155.204.0/22 10796 -162.155.208.0/20 10796 -162.155.224.0/19 10796 -162.156.0.0/15 852 -162.158.0.0/19 13335 -162.158.32.0/22 13335 -162.158.36.0/23 13335 -162.158.38.0/24 13335 -162.158.40.0/21 13335 -162.158.48.0/20 13335 -162.158.64.0/21 132892 -162.158.72.0/21 13335 -162.158.80.0/20 13335 -162.158.96.0/20 13335 -162.158.112.0/23 13335 -162.158.114.0/24 13335 -162.158.116.0/22 13335 -162.158.120.0/21 13335 -162.158.128.0/22 13335 -162.158.132.0/23 13335 -162.158.134.0/24 13335 -162.158.136.0/21 13335 -162.158.144.0/20 13335 -162.158.160.0/19 13335 -162.158.192.0/23 13335 -162.158.196.0/22 13335 -162.158.200.0/21 13335 -162.158.208.0/20 13335 -162.158.224.0/19 13335 -162.159.0.0/19 13335 -162.159.32.0/20 13335 -162.159.64.0/20 13335 -162.159.128.0/17 13335 -162.160.0.0/11 21928 -162.192.0.0/17 7018 -162.192.128.0/20 7018 -162.192.144.0/21 25993 -162.192.152.0/21 7018 -162.192.160.0/19 7018 -162.192.192.0/18 7018 -162.193.0.0/16 7018 -162.194.0.0/15 7018 -162.196.0.0/14 7018 -162.200.0.0/13 7018 -162.208.0.0/22 13438 -162.208.4.0/22 17310 -162.208.8.0/22 36454 -162.208.12.0/22 25593 -162.208.16.0/23 55190 -162.208.24.0/24 40515 -162.208.26.0/24 40515 -162.208.27.0/24 36738 -162.208.28.0/23 8001 -162.208.30.0/23 55171 -162.208.32.0/22 27475 -162.208.36.0/22 36817 -162.208.40.0/22 11404 -162.208.44.0/22 19021 -162.208.48.0/22 17090 -162.208.52.0/23 55186 -162.208.56.0/22 55175 -162.208.64.0/22 27349 -162.208.68.0/23 23148 -162.208.72.0/22 32953 -162.208.76.0/24 55067 -162.208.80.0/22 812 -162.208.84.0/22 54020 -162.208.88.0/22 55016 -162.208.92.0/22 23316 -162.208.100.0/22 54182 -162.208.104.0/22 18934 -162.208.108.0/23 55079 -162.208.110.0/24 55079 -162.208.112.0/22 32524 -162.208.116.0/22 11403 -162.208.124.0/24 23108 -162.208.125.0/24 200494 -162.208.126.0/23 23108 -162.208.128.0/17 54614 -162.209.0.0/18 19994 -162.209.64.0/20 33070 -162.209.80.0/20 19994 -162.209.96.0/19 27357 -162.209.128.0/19 40065 -162.209.160.0/21 40065 -162.209.168.0/22 40065 -162.209.172.0/24 40065 -162.209.173.0/24 33330 -162.209.174.0/23 40065 -162.209.176.0/20 40065 -162.209.192.0/19 40065 -162.209.224.0/20 40065 -162.209.240.0/20 132839 -162.210.0.0/22 40948 -162.210.4.0/22 15108 -162.210.8.0/22 30500 -162.210.12.0/22 26650 -162.210.16.0/22 46437 -162.210.20.0/22 18450 -162.210.24.0/23 21688 -162.210.26.0/24 21688 -162.210.27.0/24 26504 -162.210.28.0/22 15036 -162.210.32.0/22 54652 -162.210.36.0/22 46261 -162.210.40.0/22 14979 -162.210.48.0/22 36351 -162.210.52.0/23 11487 -162.210.55.0/24 11487 -162.210.56.0/22 54351 -162.210.60.0/22 36001 -162.210.68.0/23 40034 -162.210.70.0/23 394695 -162.210.72.0/22 30404 -162.210.76.0/22 54869 -162.210.88.0/22 21951 -162.210.92.0/23 46433 -162.210.94.0/23 62897 -162.210.96.0/21 32748 -162.210.104.0/21 32212 -162.210.112.0/22 40545 -162.210.116.0/23 17099 -162.210.118.0/24 17099 -162.210.119.0/24 18896 -162.210.120.0/21 19009 -162.210.128.0/22 55064 -162.210.136.0/21 13490 -162.210.144.0/22 46446 -162.210.148.0/22 13904 -162.210.152.0/22 3257 -162.210.156.0/24 46408 -162.210.157.0/24 11139 -162.210.158.0/24 15344 -162.210.159.0/24 11139 -162.210.160.0/21 55003 -162.210.168.0/22 16863 -162.210.172.0/23 46841 -162.210.174.0/24 396194 -162.210.175.0/24 46841 -162.210.176.0/22 26891 -162.210.180.0/22 55267 -162.210.184.0/22 17084 -162.210.192.0/21 30633 -162.210.200.0/21 23089 -162.210.208.0/23 54972 -162.210.211.0/24 54972 -162.210.213.0/24 54972 -162.210.216.0/21 55216 -162.210.224.0/24 55172 -162.210.228.0/22 54075 -162.210.232.0/22 19893 -162.210.236.0/22 14291 -162.210.242.0/23 397651 -162.210.244.0/23 397651 -162.210.246.0/23 27295 -162.210.248.0/22 23033 -162.210.252.0/22 41458 -162.211.0.0/21 18683 -162.211.8.0/24 29750 -162.211.9.0/24 29702 -162.211.10.0/23 36225 -162.211.12.0/22 20115 -162.211.16.0/23 22346 -162.211.18.0/23 25865 -162.211.20.0/22 32016 -162.211.24.0/22 13768 -162.211.28.0/22 54695 -162.211.32.0/21 30600 -162.211.40.0/22 36374 -162.211.44.0/24 11426 -162.211.45.0/24 26064 -162.211.46.0/23 54473 -162.211.48.0/22 19381 -162.211.52.0/22 26375 -162.211.56.0/21 7782 -162.211.64.0/24 30475 -162.211.65.0/24 8100 -162.211.66.0/23 8100 -162.211.72.0/22 33467 -162.211.76.0/22 396026 -162.211.80.0/21 63410 -162.211.88.0/22 22438 -162.211.92.0/22 22552 -162.211.96.0/21 55222 -162.211.104.0/22 49808 -162.211.108.0/23 46887 -162.211.110.0/24 46887 -162.211.111.0/24 18591 -162.211.112.0/22 47103 -162.211.116.0/22 18875 -162.211.120.0/21 29066 -162.211.128.0/22 32444 -162.211.132.0/23 55263 -162.211.134.0/24 55263 -162.211.136.0/22 6639 -162.211.140.0/22 55247 -162.211.144.0/21 23316 -162.211.152.0/22 29844 -162.211.156.0/23 55251 -162.211.158.0/24 55251 -162.211.160.0/21 22925 -162.211.168.0/22 46792 -162.211.172.0/22 15065 -162.211.176.0/22 1421 -162.211.180.0/22 26484 -162.211.184.0/22 55254 -162.211.188.0/22 55231 -162.211.192.0/21 15247 -162.211.200.0/21 23517 -162.211.208.0/21 23523 -162.211.216.0/22 19975 -162.211.224.0/21 25820 -162.211.232.0/23 55271 -162.211.234.0/24 55271 -162.211.235.0/24 26198 -162.211.240.0/23 26080 -162.211.242.0/23 30340 -162.211.244.0/23 30340 -162.211.246.0/23 55071 -162.211.248.0/22 11486 -162.211.252.0/22 55248 -162.212.0.0/22 27435 -162.212.4.0/22 16908 -162.212.8.0/22 30466 -162.212.12.0/23 33576 -162.212.14.0/24 33576 -162.212.15.0/24 396357 -162.212.16.0/22 16851 -162.212.20.0/22 54889 -162.212.24.0/21 19032 -162.212.33.0/24 27172 -162.212.34.0/24 54048 -162.212.40.0/24 26941 -162.212.44.0/23 26941 -162.212.48.0/23 13652 -162.212.51.0/24 13652 -162.212.52.0/23 13652 -162.212.56.0/22 54540 -162.212.60.0/22 23188 -162.212.64.0/21 22457 -162.212.72.0/23 40594 -162.212.74.0/24 40594 -162.212.75.0/24 53706 -162.212.76.0/22 40594 -162.212.80.0/24 23334 -162.212.81.0/24 30219 -162.212.83.0/24 30219 -162.212.84.0/22 7828 -162.212.88.0/21 23314 -162.212.96.0/22 31849 -162.212.100.0/22 36493 -162.212.104.0/22 46887 -162.212.108.0/23 46887 -162.212.110.0/24 33587 -162.212.111.0/24 46887 -162.212.112.0/22 19465 -162.212.116.0/22 32307 -162.212.120.0/22 33606 -162.212.124.0/22 54804 -162.212.128.0/22 55293 -162.212.132.0/23 55293 -162.212.134.0/24 32244 -162.212.135.0/24 55293 -162.212.136.0/21 14749 -162.212.144.0/23 30321 -162.212.148.0/22 30321 -162.212.152.0/21 11878 -162.212.160.0/22 36423 -162.212.164.0/23 14638 -162.212.166.0/23 36423 -162.212.168.0/21 206146 -162.212.176.0/22 7219 -162.212.180.0/22 26484 -162.212.184.0/22 25853 -162.212.192.0/23 39470 -162.212.196.0/22 32444 -162.212.200.0/21 21570 -162.212.208.0/23 15344 -162.212.210.0/23 46408 -162.212.212.0/22 54750 -162.212.216.0/21 16620 -162.212.224.0/23 46193 -162.212.226.0/24 46193 -162.212.232.0/21 812 -162.212.244.0/23 40763 -162.212.246.0/23 394851 -162.212.248.0/22 30444 -162.212.252.0/24 33330 -162.212.253.0/24 40065 -162.212.254.0/23 40065 -162.213.0.0/22 394738 -162.213.4.0/22 14554 -162.213.8.0/22 20161 -162.213.12.0/22 54676 -162.213.16.0/22 29744 -162.213.20.0/22 26794 -162.213.24.0/21 25820 -162.213.32.0/22 41231 -162.213.36.0/22 50837 -162.213.40.0/22 20454 -162.213.44.0/22 33695 -162.213.48.0/21 396919 -162.213.60.0/22 199524 -162.213.69.0/24 40624 -162.213.70.0/23 40624 -162.213.72.0/22 30513 -162.213.76.0/22 54154 -162.213.84.0/22 36201 -162.213.88.0/24 63035 -162.213.90.0/24 63035 -162.213.96.0/23 6762 -162.213.104.0/21 36493 -162.213.112.0/22 25843 -162.213.116.0/22 397068 -162.213.120.0/22 40244 -162.213.124.0/23 13971 -162.213.127.0/24 13971 -162.213.130.0/24 6939 -162.213.132.0/22 31769 -162.213.136.0/22 23419 -162.213.140.0/22 7819 -162.213.144.0/21 33132 -162.213.152.0/23 36776 -162.213.156.0/23 54527 -162.213.158.0/24 54527 -162.213.159.0/24 63213 -162.213.160.0/22 49808 -162.213.164.0/22 27425 -162.213.168.0/22 40945 -162.213.172.0/22 53949 -162.213.176.0/22 40128 -162.213.180.0/22 31857 -162.213.184.0/22 33339 -162.213.188.0/22 18590 -162.213.192.0/23 54540 -162.213.194.0/24 54540 -162.213.195.0/24 394727 -162.213.196.0/22 54540 -162.213.200.0/22 53706 -162.213.206.0/24 53706 -162.213.208.0/22 53755 -162.213.212.0/24 33544 -162.213.213.0/24 13369 -162.213.214.0/23 33544 -162.213.216.0/21 30475 -162.213.224.0/21 46598 -162.213.236.0/22 40749 -162.213.240.0/21 53460 -162.213.248.0/21 22612 -162.214.0.0/16 46606 -162.215.0.0/17 46606 -162.215.128.0/18 46606 -162.215.192.0/19 46606 -162.215.224.0/23 14618 -162.215.226.0/23 394695 -162.215.228.0/22 394695 -162.215.232.0/21 394695 -162.215.240.0/23 394695 -162.215.242.0/24 46606 -162.215.243.0/24 26337 -162.215.244.0/22 46606 -162.215.248.0/22 46606 -162.215.252.0/23 394695 -162.215.254.0/24 394695 -162.215.255.0/24 35908 -162.216.0.0/22 19531 -162.216.4.0/22 29802 -162.216.8.0/22 36295 -162.216.12.0/24 11114 -162.216.13.0/24 16613 -162.216.14.0/23 22768 -162.216.16.0/22 63949 -162.216.20.0/24 393331 -162.216.22.0/24 53386 -162.216.23.0/24 174 -162.216.24.0/21 62488 -162.216.32.0/22 14091 -162.216.36.0/24 14091 -162.216.40.0/22 35914 -162.216.44.0/23 46562 -162.216.46.0/24 46562 -162.216.48.0/22 55291 -162.216.52.0/24 11180 -162.216.53.0/24 17113 -162.216.54.0/23 17113 -162.216.56.0/21 6128 -162.216.64.0/22 395236 -162.216.68.0/22 17177 -162.216.72.0/22 27419 -162.216.77.0/24 26793 -162.216.78.0/23 26793 -162.216.80.0/22 27258 -162.216.84.0/22 30396 -162.216.88.0/22 30418 -162.216.93.0/24 30418 -162.216.94.0/23 30418 -162.216.96.0/21 1421 -162.216.104.0/22 15695 -162.216.108.0/22 10958 -162.216.112.0/22 19318 -162.216.116.0/22 13614 -162.216.120.0/22 19740 -162.216.124.0/23 19740 -162.216.126.0/23 8100 -162.216.132.0/22 62482 -162.216.136.0/24 54614 -162.216.137.0/24 19819 -162.216.138.0/23 203872 -162.216.140.0/22 135247 -162.216.144.0/22 29760 -162.216.148.0/22 15169 -162.216.152.0/21 19531 -162.216.160.0/21 30689 -162.216.168.0/21 27435 -162.216.176.0/22 36114 -162.216.180.0/24 36265 -162.216.182.0/24 36265 -162.216.183.0/24 11215 -162.216.184.0/21 46915 -162.216.192.0/22 16406 -162.216.196.0/22 19165 -162.216.200.0/21 55142 -162.216.208.0/21 10958 -162.216.216.0/22 23260 -162.216.220.0/22 53271 -162.216.224.0/24 8100 -162.216.227.0/24 8100 -162.216.228.0/22 199524 -162.216.232.0/22 26269 -162.216.236.0/22 30536 -162.216.240.0/23 63252 -162.216.242.0/23 398019 -162.216.244.0/22 13825 -162.216.248.0/23 40386 -162.216.250.0/23 55125 -162.216.252.0/23 55125 -162.217.0.0/22 174 -162.217.4.0/22 46618 -162.217.8.0/22 14745 -162.217.12.0/24 12179 -162.217.13.0/24 12235 -162.217.14.0/24 12179 -162.217.15.0/24 397494 -162.217.16.0/22 62539 -162.217.20.0/22 25787 -162.217.32.0/22 27262 -162.217.36.0/22 23393 -162.217.40.0/22 12177 -162.217.44.0/22 13614 -162.217.48.0/21 29886 -162.217.56.0/23 394791 -162.217.58.0/24 36352 -162.217.60.0/22 174 -162.217.64.0/22 52347 -162.217.68.0/22 62490 -162.217.72.0/22 32329 -162.217.76.0/22 27448 -162.217.80.0/22 35971 -162.217.84.0/22 21554 -162.217.88.0/21 46433 -162.217.96.0/21 29791 -162.217.104.0/21 29765 -162.217.112.0/22 36236 -162.217.116.0/24 6651 -162.217.118.0/23 19905 -162.217.120.0/22 62544 -162.217.124.0/22 33568 -162.217.136.0/21 33055 -162.217.144.0/22 29757 -162.217.148.0/22 13984 -162.217.152.0/22 54819 -162.217.158.0/23 62932 -162.217.162.0/23 26833 -162.217.164.0/22 26833 -162.217.168.0/22 13438 -162.217.172.0/22 46261 -162.217.176.0/24 46691 -162.217.177.0/24 62588 -162.217.178.0/23 62588 -162.217.180.0/22 11676 -162.217.184.0/22 46286 -162.217.188.0/22 26725 -162.217.192.0/21 33695 -162.217.200.0/21 33724 -162.217.208.0/23 6300 -162.217.212.0/22 16433 -162.217.216.0/22 23314 -162.217.220.0/22 62500 -162.217.224.0/21 1378 -162.217.240.0/22 40949 -162.217.244.0/22 62586 -162.217.248.0/23 58305 -162.217.250.0/24 58305 -162.217.252.0/22 26897 -162.218.0.0/22 4150 -162.218.4.0/22 26744 -162.218.16.0/22 11776 -162.218.22.0/23 11776 -162.218.24.0/24 54288 -162.218.28.0/22 62587 -162.218.32.0/23 62649 -162.218.34.0/24 62649 -162.218.36.0/24 62649 -162.218.40.0/22 20115 -162.218.44.0/23 20115 -162.218.46.0/23 13576 -162.218.48.0/21 40065 -162.218.64.0/24 49981 -162.218.65.0/24 54098 -162.218.66.0/23 46841 -162.218.68.0/22 17941 -162.218.72.0/22 62576 -162.218.76.0/22 26076 -162.218.88.0/23 13213 -162.218.91.0/24 13213 -162.218.92.0/23 13213 -162.218.94.0/24 13213 -162.218.95.0/24 174 -162.218.100.0/22 11512 -162.218.104.0/22 54155 -162.218.112.0/21 53755 -162.218.120.0/22 8100 -162.218.124.0/23 36445 -162.218.126.0/24 40028 -162.218.128.0/21 7782 -162.218.136.0/22 35914 -162.218.140.0/24 16577 -162.218.141.0/24 17189 -162.218.142.0/23 16577 -162.218.144.0/22 23100 -162.218.148.0/22 40702 -162.218.152.0/22 40511 -162.218.156.0/22 54543 -162.218.160.0/21 53271 -162.218.176.0/22 59447 -162.218.180.0/22 55039 -162.218.184.0/21 36207 -162.218.192.0/21 62640 -162.218.202.0/24 30495 -162.218.208.0/22 8100 -162.218.212.0/22 54697 -162.218.216.0/21 29844 -162.218.226.0/24 55186 -162.218.228.0/22 40156 -162.218.232.0/22 26721 -162.218.236.0/24 26721 -162.218.238.0/23 26721 -162.218.240.0/24 49981 -162.218.241.0/24 394752 -162.218.242.0/24 393780 -162.218.243.0/24 46841 -162.218.244.0/24 31834 -162.218.245.0/24 46841 -162.218.246.0/23 46841 -162.218.248.0/22 27398 -162.218.252.0/22 62798 -162.219.0.0/21 55053 -162.219.8.0/24 40341 -162.219.9.0/24 16509 -162.219.10.0/24 40341 -162.219.11.0/24 16509 -162.219.12.0/22 40341 -162.219.20.0/22 13415 -162.219.24.0/21 46261 -162.219.32.0/21 10099 -162.219.40.0/22 14569 -162.219.44.0/22 55129 -162.219.50.0/24 394354 -162.219.51.0/24 55195 -162.219.52.0/23 27299 -162.219.54.0/24 55195 -162.219.55.0/24 394354 -162.219.56.0/22 394862 -162.219.60.0/24 393442 -162.219.61.0/24 393916 -162.219.62.0/24 62943 -162.219.63.0/24 393442 -162.219.64.0/22 21528 -162.219.68.0/22 33230 -162.219.72.0/22 54327 -162.219.76.0/22 47063 -162.219.80.0/21 10099 -162.219.88.0/21 20228 -162.219.96.0/24 27552 -162.219.97.0/24 25623 -162.219.98.0/23 22147 -162.219.100.0/22 62642 -162.219.104.0/21 40670 -162.219.112.0/21 62682 -162.219.120.0/21 25820 -162.219.128.0/21 62592 -162.219.136.0/22 10947 -162.219.140.0/22 36529 -162.219.144.0/21 14640 -162.219.152.0/23 19107 -162.219.158.0/23 396018 -162.219.160.0/22 39962 -162.219.164.0/22 62708 -162.219.168.0/22 62473 -162.219.172.0/22 174 -162.219.176.0/22 32489 -162.219.180.0/22 11475 -162.219.184.0/21 21724 -162.219.192.0/23 15108 -162.219.194.0/23 394883 -162.219.196.0/22 11550 -162.219.200.0/22 21557 -162.219.204.0/22 16654 -162.219.208.0/22 55001 -162.219.212.0/22 30633 -162.219.216.0/22 26375 -162.219.228.0/22 10242 -162.219.232.0/22 11031 -162.219.237.0/24 11031 -162.219.240.0/22 23314 -162.219.244.0/22 27229 -162.219.248.0/22 33494 -162.219.252.0/22 27202 -162.220.0.0/24 19994 -162.220.1.0/24 54708 -162.220.2.0/24 26197 -162.220.4.0/23 36473 -162.220.6.0/24 36473 -162.220.7.0/24 22264 -162.220.8.0/21 8100 -162.220.16.0/21 393398 -162.220.28.0/22 55264 -162.220.32.0/22 25761 -162.220.36.0/22 36817 -162.220.40.0/22 46887 -162.220.44.0/23 46887 -162.220.46.0/24 46887 -162.220.47.0/24 11713 -162.220.48.0/23 53255 -162.220.50.0/23 46562 -162.220.52.0/22 62731 -162.220.56.0/21 29802 -162.220.64.0/24 18919 -162.220.66.0/23 55140 -162.220.68.0/23 17025 -162.220.72.0/23 62728 -162.220.74.0/24 62728 -162.220.75.0/24 21953 -162.220.76.0/22 62714 -162.220.80.0/22 54707 -162.220.84.0/22 54665 -162.220.88.0/21 36426 -162.220.96.0/21 36423 -162.220.104.0/22 17378 -162.220.108.0/22 54039 -162.220.112.0/22 62710 -162.220.116.0/24 62739 -162.220.117.0/24 393384 -162.220.118.0/24 393384 -162.220.120.0/21 54536 -162.220.128.0/22 30174 -162.220.132.0/22 393258 -162.220.137.0/24 11139 -162.220.138.0/24 14813 -162.220.139.0/24 11139 -162.220.140.0/24 11139 -162.220.141.0/24 14813 -162.220.144.0/21 13904 -162.220.152.0/24 54240 -162.220.153.0/24 46637 -162.220.154.0/23 54240 -162.220.156.0/24 10730 -162.220.157.0/24 54240 -162.220.158.0/23 54240 -162.220.160.0/21 19318 -162.220.168.0/21 62688 -162.220.176.0/22 47095 -162.220.180.0/22 55140 -162.220.184.0/22 14265 -162.220.191.0/24 36008 -162.220.192.0/21 63186 -162.220.200.0/22 54473 -162.220.204.0/22 33130 -162.220.208.0/23 30247 -162.220.210.0/24 394371 -162.220.211.0/24 30247 -162.220.212.0/22 26836 -162.220.220.0/22 42473 -162.220.224.0/22 27225 -162.220.232.0/22 26296 -162.220.236.0/22 393268 -162.220.240.0/23 58305 -162.220.242.0/24 58305 -162.220.244.0/24 43350 -162.220.246.0/23 43350 -162.220.248.0/22 19842 -162.220.252.0/22 19215 -162.221.0.0/22 20202 -162.221.4.0/22 21859 -162.221.8.0/24 394688 -162.221.9.0/24 22742 -162.221.10.0/23 22742 -162.221.12.0/22 53587 -162.221.16.0/21 11168 -162.221.24.0/22 26512 -162.221.28.0/22 22051 -162.221.32.0/23 7046 -162.221.36.0/23 62657 -162.221.40.0/24 27240 -162.221.42.0/23 27240 -162.221.44.0/22 10431 -162.221.48.0/21 53282 -162.221.60.0/24 32734 -162.221.61.0/24 20141 -162.221.62.0/24 20141 -162.221.63.0/24 60781 -162.221.72.0/22 26167 -162.221.76.0/23 17559 -162.221.78.0/23 134063 -162.221.80.0/22 7029 -162.221.84.0/22 54086 -162.221.88.0/21 21554 -162.221.97.0/24 17378 -162.221.98.0/24 62778 -162.221.104.0/21 21565 -162.221.112.0/22 13768 -162.221.116.0/22 6315 -162.221.120.0/21 54614 -162.221.128.0/22 26479 -162.221.132.0/22 11982 -162.221.136.0/23 174 -162.221.140.0/22 1640 -162.221.144.0/22 19382 -162.221.148.0/22 46475 -162.221.152.0/23 62795 -162.221.154.0/24 62795 -162.221.156.0/22 62795 -162.221.168.0/21 22925 -162.221.178.0/23 6461 -162.221.181.0/24 36435 -162.221.182.0/23 26730 -162.221.184.0/21 33182 -162.221.192.0/21 21859 -162.221.200.0/21 11831 -162.221.208.0/22 3257 -162.221.212.0/22 32020 -162.221.216.0/21 30600 -162.221.224.0/22 15317 -162.221.228.0/22 18712 -162.221.232.0/22 33483 -162.221.236.0/22 32308 -162.221.240.0/22 30359 -162.221.244.0/22 62712 -162.221.248.0/21 30028 -162.222.0.0/22 40749 -162.222.4.0/22 32386 -162.222.8.0/21 62523 -162.222.18.0/23 19383 -162.222.20.0/22 54829 -162.222.24.0/22 13781 -162.222.28.0/22 62809 -162.222.32.0/21 18590 -162.222.40.0/21 62715 -162.222.48.0/22 54611 -162.222.52.0/22 10242 -162.222.56.0/21 23184 -162.222.64.0/22 393263 -162.222.72.0/21 62537 -162.222.80.0/22 22423 -162.222.84.0/23 46650 -162.222.86.0/23 11139 -162.222.88.0/24 197328 -162.222.89.0/24 59447 -162.222.90.0/24 59447 -162.222.92.0/24 19257 -162.222.94.0/24 19257 -162.222.96.0/22 17113 -162.222.100.0/22 19165 -162.222.110.0/23 15261 -162.222.112.0/22 54335 -162.222.116.0/22 26794 -162.222.120.0/21 15247 -162.222.128.0/21 36114 -162.222.136.0/24 55130 -162.222.137.0/24 25999 -162.222.138.0/24 25999 -162.222.139.0/24 55130 -162.222.140.0/22 62550 -162.222.144.0/22 14102 -162.222.152.0/24 11382 -162.222.155.0/24 11382 -162.222.156.0/22 18472 -162.222.160.0/22 19842 -162.222.164.0/22 31972 -162.222.168.0/22 19975 -162.222.172.0/22 3361 -162.222.176.0/21 15169 -162.222.184.0/21 32743 -162.222.192.0/21 8100 -162.222.200.0/23 54548 -162.222.202.0/23 8560 -162.222.204.0/22 8560 -162.222.208.0/22 48463 -162.222.212.0/23 8100 -162.222.214.0/24 54020 -162.222.215.0/24 8100 -162.222.216.0/22 54483 -162.222.224.0/24 40034 -162.222.225.0/24 394695 -162.222.226.0/23 394695 -162.222.228.0/24 32542 -162.222.232.0/22 27027 -162.222.236.0/23 27027 -162.222.238.0/24 27027 -162.222.239.0/24 393719 -162.222.240.0/22 31953 -162.222.244.0/22 18859 -162.222.248.0/22 30354 -162.222.252.0/22 55039 -162.223.0.0/22 30466 -162.223.4.0/22 15290 -162.223.8.0/22 36236 -162.223.12.0/24 13647 -162.223.13.0/24 36236 -162.223.14.0/23 36236 -162.223.16.0/22 14877 -162.223.20.0/24 11096 -162.223.22.0/24 11096 -162.223.24.0/24 20141 -162.223.25.0/24 395665 -162.223.26.0/23 15025 -162.223.28.0/22 46261 -162.223.32.0/21 13415 -162.223.40.0/22 53837 -162.223.44.0/22 11601 -162.223.48.0/22 62593 -162.223.52.0/22 27552 -162.223.56.0/22 394511 -162.223.60.0/22 33673 -162.223.72.0/21 14265 -162.223.80.0/21 16504 -162.223.88.0/21 19084 -162.223.96.0/22 13896 -162.223.100.0/22 16696 -162.223.104.0/22 62798 -162.223.108.0/22 393290 -162.223.116.0/22 174 -162.223.120.0/24 397023 -162.223.121.0/24 396094 -162.223.122.0/24 64267 -162.223.123.0/24 397130 -162.223.124.0/24 397868 -162.223.125.0/24 30391 -162.223.126.0/24 19147 -162.223.127.0/24 6621 -162.223.128.0/22 22438 -162.223.132.0/22 26955 -162.223.139.0/24 20313 -162.223.140.0/22 20313 -162.223.144.0/21 7015 -162.223.152.0/22 40766 -162.223.156.0/23 22863 -162.223.158.0/23 40766 -162.223.160.0/22 22625 -162.223.164.0/22 21580 -162.223.168.0/21 17559 -162.223.177.0/24 55186 -162.223.180.0/23 26504 -162.223.182.0/23 36790 -162.223.192.0/21 21769 -162.223.200.0/22 22820 -162.223.204.0/22 14477 -162.223.208.0/21 40784 -162.223.216.0/22 33749 -162.223.220.0/22 55193 -162.223.224.0/21 39962 -162.223.232.0/23 15334 -162.223.234.0/24 16474 -162.223.235.0/24 15334 -162.223.236.0/22 16474 -162.223.240.0/22 40555 -162.223.244.0/23 14313 -162.223.246.0/24 14313 -162.223.247.0/24 32343 -162.223.248.0/22 22153 -162.223.252.0/22 46351 -162.224.0.0/12 7018 -162.240.0.0/16 46606 -162.241.0.0/17 46606 -162.241.128.0/18 46606 -162.241.192.0/19 46606 -162.241.224.0/24 46606 -162.241.225.0/24 26337 -162.241.226.0/23 46606 -162.241.228.0/22 46606 -162.241.232.0/21 46606 -162.241.240.0/20 46606 -162.242.0.0/24 54119 -162.242.1.0/24 3549 -162.242.2.0/24 7018 -162.242.3.0/24 54119 -162.242.4.0/24 209 -162.242.12.0/22 54119 -162.242.20.0/22 22909 -162.242.26.0/24 46698 -162.242.28.0/22 22773 -162.242.38.0/24 22773 -162.242.39.0/24 23162 -162.242.40.0/24 54119 -162.242.48.0/24 54119 -162.242.49.0/24 7029 -162.242.50.0/24 46698 -162.242.51.0/24 54119 -162.242.56.0/23 10835 -162.242.58.0/23 46698 -162.242.60.0/23 6461 -162.242.62.0/23 30036 -162.242.64.0/22 10796 -162.242.68.0/23 5650 -162.242.70.0/24 54119 -162.242.76.0/22 7018 -162.242.88.0/23 8025 -162.242.92.0/24 54119 -162.242.94.0/23 209 -162.242.104.0/24 8025 -162.242.105.0/24 54119 -162.242.106.0/23 7018 -162.242.108.0/23 7029 -162.242.110.0/23 30036 -162.242.114.0/24 3549 -162.242.115.0/24 7029 -162.242.116.0/23 7029 -162.242.119.0/24 54119 -162.242.120.0/22 20115 -162.242.128.0/19 33070 -162.242.160.0/19 19994 -162.242.192.0/18 27357 -162.243.0.0/16 14061 -162.244.0.0/22 16621 -162.244.4.0/24 17268 -162.244.5.0/24 397875 -162.244.6.0/23 53991 -162.244.8.0/21 27630 -162.244.16.0/22 62913 -162.244.21.0/24 396282 -162.244.24.0/21 31798 -162.244.32.0/22 14576 -162.244.36.0/22 36012 -162.244.40.0/22 30325 -162.244.44.0/22 30466 -162.244.48.0/22 11550 -162.244.52.0/22 49544 -162.244.64.0/22 18501 -162.244.68.0/22 14567 -162.244.72.0/22 18812 -162.244.76.0/22 32875 -162.244.80.0/22 19624 -162.244.84.0/22 15359 -162.244.88.0/22 11807 -162.244.92.0/22 53667 -162.244.96.0/22 10397 -162.244.100.0/23 10397 -162.244.102.0/23 393365 -162.244.112.0/21 174 -162.244.120.0/22 15000 -162.244.124.0/22 397608 -162.244.128.0/22 53454 -162.244.132.0/22 46261 -162.244.136.0/22 19975 -162.244.140.0/22 397651 -162.244.144.0/21 64267 -162.244.152.0/23 54155 -162.244.154.0/24 54155 -162.244.156.0/23 3257 -162.244.158.0/24 40517 -162.244.159.0/24 62001 -162.244.160.0/22 30404 -162.244.164.0/24 36352 -162.244.166.0/24 20454 -162.244.167.0/24 36352 -162.244.168.0/22 18895 -162.244.172.0/22 1378 -162.244.176.0/21 33616 -162.244.184.0/23 26536 -162.244.188.0/24 26536 -162.244.192.0/22 7029 -162.244.196.0/22 19780 -162.244.200.0/21 53301 -162.244.212.0/22 46867 -162.244.216.0/22 54809 -162.244.220.0/22 14870 -162.244.224.0/22 1423 -162.244.228.0/24 3359 -162.244.229.0/24 53904 -162.244.230.0/24 376 -162.244.232.0/22 33339 -162.244.236.0/22 11831 -162.244.241.0/24 25820 -162.244.242.0/23 25820 -162.244.244.0/22 33725 -162.244.248.0/22 19271 -162.244.253.0/24 30475 -162.244.254.0/24 30475 -162.245.0.0/21 53667 -162.245.8.0/21 53834 -162.245.16.0/22 23314 -162.245.20.0/22 32329 -162.245.24.0/22 36374 -162.245.28.0/22 26328 -162.245.36.0/23 32415 -162.245.38.0/24 27345 -162.245.39.0/24 32415 -162.245.40.0/22 36728 -162.245.44.0/22 21725 -162.245.48.0/22 393467 -162.245.52.0/22 31899 -162.245.56.0/22 19171 -162.245.60.0/22 4922 -162.245.64.0/22 395033 -162.245.72.0/23 54287 -162.245.75.0/24 19875 -162.245.76.0/22 15344 -162.245.80.0/22 19084 -162.245.85.0/24 19084 -162.245.86.0/23 19084 -162.245.88.0/21 13739 -162.245.96.0/22 6461 -162.245.100.0/23 10431 -162.245.102.0/24 10431 -162.245.104.0/21 55140 -162.245.112.0/22 26215 -162.245.116.0/23 46289 -162.245.118.0/23 23312 -162.245.120.0/22 23436 -162.245.124.0/22 10099 -162.245.128.0/21 19919 -162.245.136.0/24 15349 -162.245.137.0/24 13452 -162.245.140.0/22 19323 -162.245.144.0/23 63213 -162.245.146.0/23 54527 -162.245.148.0/22 26399 -162.245.152.0/22 46650 -162.245.156.0/22 54276 -162.245.160.0/21 7029 -162.245.168.0/22 11976 -162.245.172.0/22 393240 -162.245.176.0/21 62759 -162.245.184.0/21 8100 -162.245.193.0/24 3186 -162.245.194.0/24 3186 -162.245.196.0/22 23314 -162.245.204.0/22 49544 -162.245.208.0/21 577 -162.245.216.0/22 7489 -162.245.220.0/24 207907 -162.245.221.0/24 26548 -162.245.222.0/24 19969 -162.245.223.0/24 7489 -162.245.224.0/23 13649 -162.245.226.0/23 20284 -162.245.228.0/22 22552 -162.245.232.0/22 3384 -162.245.236.0/22 23033 -162.245.240.0/21 63052 -162.245.248.0/21 13764 -162.246.0.0/22 30689 -162.246.4.0/22 22742 -162.246.8.0/22 40029 -162.246.12.0/22 21570 -162.246.16.0/21 19318 -162.246.24.0/21 46392 -162.246.32.0/23 33405 -162.246.35.0/24 33405 -162.246.40.0/22 30218 -162.246.44.0/22 62695 -162.246.48.0/22 22646 -162.246.52.0/22 22423 -162.246.56.0/22 63410 -162.246.64.0/21 55236 -162.246.72.0/22 22071 -162.246.76.0/23 7116 -162.246.78.0/24 7116 -162.246.80.0/22 27258 -162.246.84.0/22 395846 -162.246.88.0/22 22438 -162.246.92.0/22 11404 -162.246.100.0/22 11071 -162.246.104.0/21 14813 -162.246.112.0/22 11597 -162.246.116.0/22 17304 -162.246.120.0/21 54329 -162.246.128.0/22 15247 -162.246.132.0/22 27288 -162.246.136.0/21 33132 -162.246.144.0/22 14265 -162.246.148.0/22 15108 -162.246.152.0/22 46426 -162.246.156.0/22 15296 -162.246.160.0/23 33093 -162.246.162.0/24 17025 -162.246.163.0/24 10913 -162.246.168.0/22 29986 -162.246.172.0/22 14979 -162.246.176.0/21 46322 -162.246.184.0/24 61317 -162.246.185.0/24 395954 -162.246.186.0/24 395954 -162.246.187.0/24 55286 -162.246.188.0/22 22998 -162.246.192.0/22 62929 -162.246.196.0/22 21832 -162.246.200.0/22 18106 -162.246.204.0/22 55044 -162.246.208.0/21 3356 -162.246.216.0/24 393355 -162.246.218.0/24 393355 -162.246.224.0/22 25687 -162.246.228.0/22 46315 -162.246.240.0/22 26083 -162.246.245.0/24 3296 -162.246.246.0/23 3295 -162.246.248.0/21 6428 -162.247.0.0/22 23881 -162.247.4.0/22 10099 -162.247.8.0/23 32448 -162.247.10.0/23 19635 -162.247.12.0/22 6939 -162.247.16.0/22 32678 -162.247.20.0/22 15321 -162.247.24.0/21 14434 -162.247.32.0/22 27288 -162.247.36.0/22 393445 -162.247.40.0/21 36012 -162.247.48.0/22 62710 -162.247.52.0/22 40749 -162.247.56.0/22 63136 -162.247.60.0/22 26311 -162.247.64.0/24 7029 -162.247.65.0/24 393670 -162.247.66.0/23 394937 -162.247.68.0/22 22319 -162.247.72.0/23 4224 -162.247.74.0/24 4224 -162.247.75.0/24 6939 -162.247.76.0/22 22878 -162.247.80.0/21 26744 -162.247.88.0/22 33604 -162.247.92.0/22 30466 -162.247.96.0/22 63889 -162.247.100.0/24 63889 -162.247.101.0/24 63888 -162.247.104.0/23 23391 -162.247.106.0/24 36790 -162.247.107.0/24 26504 -162.247.112.0/21 27357 -162.247.120.0/21 395965 -162.247.128.0/22 36436 -162.247.132.0/24 33477 -162.247.133.0/24 40948 -162.247.134.0/23 40948 -162.247.136.0/21 7753 -162.247.144.0/21 11910 -162.247.152.0/22 30235 -162.247.156.0/24 55011 -162.247.157.0/24 394511 -162.247.158.0/23 394511 -162.247.162.0/24 14618 -162.247.163.0/24 16509 -162.247.164.0/24 395569 -162.247.165.0/24 27272 -162.247.166.0/23 23528 -162.247.168.0/22 36792 -162.247.172.0/23 40602 -162.247.174.0/24 40602 -162.247.176.0/22 13415 -162.247.180.0/22 23175 -162.247.184.0/22 11560 -162.247.188.0/22 14543 -162.247.192.0/22 40148 -162.247.198.0/23 47057 -162.247.200.0/23 46347 -162.247.202.0/24 46347 -162.247.206.0/23 46347 -162.247.208.0/21 393381 -162.247.216.0/23 29960 -162.247.218.0/24 16509 -162.247.219.0/24 29960 -162.247.220.0/22 16437 -162.247.224.0/21 40788 -162.247.232.0/21 22552 -162.247.240.0/22 23467 -162.247.244.0/24 55117 -162.247.246.0/23 55117 -162.247.248.0/22 31965 -162.247.252.0/22 54665 -162.248.0.0/22 46238 -162.248.4.0/22 62838 -162.248.8.0/22 31798 -162.248.12.0/22 20042 -162.248.16.0/22 62713 -162.248.20.0/22 19893 -162.248.24.0/24 16509 -162.248.25.0/24 53428 -162.248.32.0/21 62845 -162.248.40.0/22 19009 -162.248.44.0/22 46941 -162.248.48.0/22 63410 -162.248.52.0/22 27640 -162.248.56.0/22 54648 -162.248.60.0/22 17310 -162.248.64.0/24 11096 -162.248.66.0/24 33008 -162.248.67.0/24 11096 -162.248.68.0/24 395202 -162.248.69.0/24 11096 -162.248.70.0/23 11096 -162.248.72.0/21 25820 -162.248.80.0/23 26716 -162.248.82.0/24 26716 -162.248.84.0/22 395055 -162.248.88.0/24 14586 -162.248.89.0/24 14745 -162.248.90.0/23 12179 -162.248.92.0/24 14586 -162.248.93.0/24 32374 -162.248.94.0/24 32751 -162.248.95.0/24 13789 -162.248.104.0/21 53454 -162.248.112.0/21 40511 -162.248.120.0/21 35938 -162.248.128.0/23 26223 -162.248.130.0/24 26223 -162.248.131.0/24 393367 -162.248.133.0/24 35913 -162.248.134.0/23 54301 -162.248.136.0/22 4474 -162.248.140.0/22 31798 -162.248.144.0/21 393301 -162.248.152.0/21 36817 -162.248.160.0/21 31798 -162.248.168.0/22 46872 -162.248.176.0/23 62899 -162.248.178.0/23 13768 -162.248.180.0/23 13768 -162.248.182.0/23 62899 -162.248.184.0/22 62856 -162.248.188.0/22 14144 -162.248.192.0/22 47020 -162.248.199.0/24 8315 -162.248.200.0/23 11404 -162.248.202.0/24 22450 -162.248.203.0/24 11404 -162.248.204.0/23 11404 -162.248.206.0/23 12125 -162.248.208.0/21 46261 -162.248.216.0/22 14452 -162.248.220.0/23 36236 -162.248.222.0/24 36236 -162.248.223.0/24 53847 -162.248.224.0/22 14576 -162.248.232.0/22 53597 -162.248.236.0/22 40317 -162.248.240.0/24 64235 -162.248.241.0/24 31863 -162.248.242.0/23 31863 -162.248.244.0/22 31863 -162.248.248.0/24 17113 -162.248.249.0/24 395382 -162.248.250.0/23 17113 -162.248.252.0/22 17113 -162.249.0.0/21 55293 -162.249.8.0/22 62921 -162.249.12.0/23 18745 -162.249.15.0/24 18745 -162.249.16.0/22 13331 -162.249.24.0/24 22943 -162.249.26.0/24 12165 -162.249.28.0/22 395846 -162.249.32.0/22 62917 -162.249.36.0/22 18907 -162.249.40.0/22 31914 -162.249.44.0/24 55082 -162.249.45.0/24 63436 -162.249.46.0/24 63325 -162.249.47.0/24 6300 -162.249.48.0/21 29696 -162.249.56.0/22 62911 -162.249.60.0/22 14228 -162.249.72.0/21 6507 -162.249.80.0/22 11980 -162.249.86.0/24 13952 -162.249.88.0/21 15290 -162.249.96.0/21 40328 -162.249.104.0/21 36473 -162.249.112.0/22 26271 -162.249.124.0/22 32748 -162.249.128.0/21 21744 -162.249.136.0/24 36144 -162.249.137.0/24 33055 -162.249.138.0/24 33055 -162.249.140.0/22 33055 -162.249.144.0/21 53513 -162.249.152.0/22 6939 -162.249.156.0/22 12177 -162.249.160.0/22 21949 -162.249.164.0/22 62874 -162.249.168.0/21 26548 -162.249.176.0/21 60725 -162.249.188.0/22 23338 -162.249.192.0/22 11966 -162.249.196.0/22 397591 -162.249.200.0/22 25774 -162.249.204.0/22 26076 -162.249.208.0/21 27435 -162.249.216.0/21 14265 -162.249.224.0/24 53340 -162.249.225.0/24 27467 -162.249.226.0/23 53340 -162.249.228.0/22 36146 -162.249.232.0/22 17306 -162.249.236.0/22 62706 -162.249.240.0/22 16991 -162.249.244.0/22 62872 -162.249.248.0/22 54755 -162.249.252.0/22 54020 -162.250.0.0/21 42473 -162.250.8.0/23 32625 -162.250.10.0/24 54978 -162.250.11.0/24 32625 -162.250.12.0/22 16866 -162.250.16.0/21 39938 -162.250.24.0/21 26271 -162.250.32.0/21 63436 -162.250.40.0/22 5683 -162.250.44.0/22 14102 -162.250.48.0/21 32248 -162.250.56.0/22 32249 -162.250.60.0/22 6643 -162.250.64.0/23 62834 -162.250.72.0/22 14415 -162.250.76.0/22 27589 -162.250.80.0/21 53271 -162.250.88.0/22 12089 -162.250.92.0/22 33544 -162.250.96.0/24 136743 -162.250.97.0/24 26484 -162.250.98.0/23 26484 -162.250.100.0/24 26484 -162.250.101.0/24 139086 -162.250.102.0/24 139086 -162.250.103.0/24 26484 -162.250.106.0/23 35906 -162.250.108.0/22 35906 -162.250.112.0/22 63060 -162.250.116.0/22 15108 -162.250.120.0/21 19318 -162.250.128.0/22 54665 -162.250.134.0/24 46259 -162.250.135.0/24 209 -162.250.136.0/22 4901 -162.250.140.0/22 62587 -162.250.144.0/22 34971 -162.250.148.0/24 33358 -162.250.150.0/23 33358 -162.250.152.0/21 174 -162.250.160.0/22 62938 -162.250.164.0/22 31841 -162.250.168.0/23 40028 -162.250.170.0/23 395570 -162.250.172.0/23 395570 -162.250.174.0/24 395570 -162.250.175.0/24 40028 -162.250.176.0/22 54543 -162.250.180.0/22 36394 -162.250.184.0/22 26375 -162.250.188.0/22 26832 -162.250.192.0/24 19117 -162.250.193.0/24 393636 -162.250.194.0/24 5071 -162.250.195.0/24 19117 -162.250.196.0/22 40788 -162.250.200.0/22 40244 -162.250.204.0/22 14775 -162.250.208.0/22 33452 -162.250.212.0/22 8008 -162.250.216.0/22 203872 -162.250.220.0/22 19696 -162.250.224.0/22 63015 -162.250.230.0/23 63015 -162.250.232.0/22 54540 -162.250.240.0/21 22925 -162.250.248.0/24 19445 -162.251.0.0/22 17941 -162.251.4.0/23 46841 -162.251.6.0/24 46841 -162.251.7.0/24 396194 -162.251.8.0/21 16750 -162.251.16.0/23 14894 -162.251.18.0/24 14894 -162.251.20.0/23 63889 -162.251.22.0/24 63888 -162.251.23.0/24 134548 -162.251.24.0/21 63010 -162.251.32.0/21 8315 -162.251.40.0/22 30174 -162.251.44.0/22 29804 -162.251.48.0/21 53837 -162.251.56.0/22 19331 -162.251.60.0/22 63023 -162.251.68.0/22 23033 -162.251.72.0/21 63004 -162.251.80.0/23 394695 -162.251.82.0/24 13335 -162.251.83.0/24 394695 -162.251.84.0/23 394695 -162.251.86.0/24 394695 -162.251.87.0/24 40034 -162.251.88.0/22 53830 -162.251.92.0/22 26484 -162.251.96.0/21 6576 -162.251.104.0/23 30228 -162.251.106.0/23 27639 -162.251.108.0/22 32338 -162.251.120.0/22 64236 -162.251.124.0/22 62809 -162.251.128.0/21 16816 -162.251.136.0/21 46516 -162.251.144.0/23 63191 -162.251.146.0/24 56378 -162.251.148.0/22 6461 -162.251.152.0/22 55184 -162.251.156.0/22 22555 -162.251.160.0/22 53767 -162.251.164.0/22 63018 -162.251.168.0/23 62952 -162.251.172.0/22 40749 -162.251.176.0/22 62622 -162.251.180.0/23 62942 -162.251.182.0/24 23011 -162.251.183.0/24 63225 -162.251.184.0/21 27348 -162.251.192.0/21 63019 -162.251.200.0/22 33548 -162.251.205.0/24 6939 -162.251.206.0/24 6939 -162.251.208.0/23 7381 -162.251.210.0/24 7381 -162.251.212.0/22 29892 -162.251.216.0/22 55259 -162.251.220.0/22 16433 -162.251.224.0/21 46433 -162.251.232.0/22 53340 -162.251.236.0/23 53340 -162.251.238.0/24 53340 -162.251.239.0/24 393989 -162.251.240.0/24 50292 -162.251.241.0/24 174 -162.251.242.0/23 174 -162.251.244.0/22 174 -162.251.252.0/22 54600 -162.252.0.0/21 21565 -162.252.8.0/22 40065 -162.252.12.0/24 11539 -162.252.13.0/24 395509 -162.252.15.0/24 11539 -162.252.16.0/22 54483 -162.252.20.0/22 15317 -162.252.34.0/24 32594 -162.252.36.0/22 15149 -162.252.40.0/22 17223 -162.252.44.0/22 54841 -162.252.48.0/22 27257 -162.252.54.0/24 32421 -162.252.56.0/22 47869 -162.252.60.0/22 62754 -162.252.64.0/22 33346 -162.252.70.0/24 11537 -162.252.72.0/21 11054 -162.252.80.0/21 29802 -162.252.88.0/22 55236 -162.252.92.0/22 46525 -162.252.96.0/22 22926 -162.252.100.0/22 33544 -162.252.104.0/22 32244 -162.252.108.0/23 18982 -162.252.112.0/21 5690 -162.252.120.0/22 33132 -162.252.124.0/23 33132 -162.252.126.0/24 30187 -162.252.127.0/24 33132 -162.252.128.0/22 11624 -162.252.132.0/23 26523 -162.252.134.0/23 11998 -162.252.136.0/21 31890 -162.252.144.0/21 63060 -162.252.152.0/22 32490 -162.252.156.0/22 20718 -162.252.160.0/22 25956 -162.252.164.0/23 40353 -162.252.166.0/24 40353 -162.252.168.0/24 13354 -162.252.169.0/24 40028 -162.252.170.0/23 12180 -162.252.172.0/22 35017 -162.252.176.0/22 62947 -162.252.180.0/22 13739 -162.252.184.0/22 33164 -162.252.188.0/23 11139 -162.252.190.0/24 15344 -162.252.191.0/24 11139 -162.252.192.0/21 54455 -162.252.200.0/22 13904 -162.252.204.0/22 62512 -162.252.208.0/22 21554 -162.252.212.0/22 53334 -162.252.216.0/21 11290 -162.252.224.0/22 46437 -162.252.228.0/22 393307 -162.252.232.0/22 27173 -162.252.237.0/24 394775 -162.252.238.0/24 394706 -162.252.239.0/24 63436 -162.252.240.0/22 31798 -162.252.244.0/22 54329 -162.252.248.0/23 33257 -162.252.250.0/24 33257 -162.252.251.0/24 54793 -162.252.252.0/22 812 -162.253.0.0/23 2386 -162.253.2.0/24 53779 -162.253.7.0/24 53779 -162.253.8.0/22 803 -162.253.12.0/23 11512 -162.253.14.0/24 11512 -162.253.15.0/24 14701 -162.253.16.0/22 45352 -162.253.20.0/23 396420 -162.253.22.0/24 31783 -162.253.23.0/24 19386 -162.253.24.0/22 62887 -162.253.28.0/22 27615 -162.253.32.0/22 63410 -162.253.36.0/22 18712 -162.253.40.0/22 46475 -162.253.44.0/22 393238 -162.253.48.0/23 11038 -162.253.50.0/24 11038 -162.253.51.0/24 394140 -162.253.52.0/22 33028 -162.253.56.0/22 22646 -162.253.60.0/24 393442 -162.253.61.0/24 19746 -162.253.62.0/24 393442 -162.253.63.0/24 26400 -162.253.64.0/23 29838 -162.253.66.0/23 40065 -162.253.68.0/24 20093 -162.253.69.0/24 46562 -162.253.70.0/23 46562 -162.253.72.0/21 11699 -162.253.80.0/24 25945 -162.253.86.0/24 25945 -162.253.88.0/22 19462 -162.253.92.0/22 53254 -162.253.96.0/22 13543 -162.253.100.0/22 11139 -162.253.104.0/23 20141 -162.253.106.0/24 40107 -162.253.107.0/24 20141 -162.253.108.0/22 16739 -162.253.115.0/24 55186 -162.253.116.0/22 53301 -162.253.120.0/22 53944 -162.253.124.0/22 32767 -162.253.128.0/22 32489 -162.253.132.0/22 21624 -162.253.136.0/21 15290 -162.253.144.0/22 46606 -162.253.148.0/24 46606 -162.253.149.0/24 36351 -162.253.150.0/23 46606 -162.253.152.0/22 62838 -162.253.156.0/22 23393 -162.253.168.0/23 14434 -162.253.170.0/24 14434 -162.253.171.0/24 16971 -162.253.172.0/22 26794 -162.253.176.0/24 20473 -162.253.177.0/24 46562 -162.253.178.0/23 8100 -162.253.180.0/24 30640 -162.253.181.0/24 11803 -162.253.182.0/23 30640 -162.253.184.0/22 54960 -162.253.188.0/22 17338 -162.253.192.0/22 21705 -162.253.196.0/22 26225 -162.253.201.0/24 40449 -162.253.202.0/23 40449 -162.253.205.0/24 32321 -162.253.206.0/23 396012 -162.253.216.0/22 20042 -162.253.220.0/22 30303 -162.253.224.0/22 32475 -162.253.228.0/23 46240 -162.253.232.0/21 62818 -162.253.240.0/22 12177 -162.253.244.0/22 40142 -162.253.250.0/23 55021 -162.253.252.0/23 55021 -162.253.254.0/24 55021 -162.254.0.0/24 46261 -162.254.1.0/24 136743 -162.254.2.0/24 62900 -162.254.4.0/24 62900 -162.254.6.0/23 62900 -162.254.8.0/23 27626 -162.254.10.0/24 27626 -162.254.11.0/24 26475 -162.254.12.0/22 18898 -162.254.16.0/22 46632 -162.254.20.0/22 39970 -162.254.24.0/22 54548 -162.254.28.0/22 17216 -162.254.32.0/22 64200 -162.254.36.0/22 13768 -162.254.40.0/22 22457 -162.254.44.0/22 12208 -162.254.48.0/24 20264 -162.254.49.0/24 27257 -162.254.50.0/23 27257 -162.254.52.0/22 33729 -162.254.56.0/24 55236 -162.254.64.0/22 14371 -162.254.68.0/22 62588 -162.254.80.0/22 17146 -162.254.84.0/22 18845 -162.254.88.0/22 18624 -162.254.92.0/22 7915 -162.254.104.0/24 26178 -162.254.108.0/22 16659 -162.254.112.0/22 18786 -162.254.116.0/22 54555 -162.254.120.0/22 23314 -162.254.128.0/22 62948 -162.254.132.0/24 22923 -162.254.133.0/24 23498 -162.254.134.0/24 53594 -162.254.135.0/24 174 -162.254.136.0/23 32137 -162.254.138.0/24 17038 -162.254.140.0/22 18758 -162.254.144.0/21 29802 -162.254.152.0/22 19009 -162.254.156.0/22 16739 -162.254.160.0/21 46606 -162.254.168.0/22 17210 -162.254.172.0/22 22457 -162.254.180.0/22 32123 -162.254.184.0/22 33695 -162.254.188.0/22 32338 -162.254.192.0/21 32590 -162.254.200.0/21 29066 -162.254.208.0/23 7819 -162.254.210.0/24 7819 -162.254.211.0/24 33346 -162.254.212.0/22 19683 -162.254.216.0/22 26375 -162.254.220.0/22 25774 -162.254.224.0/21 15149 -162.254.232.0/24 396203 -162.254.233.0/24 14944 -162.254.239.0/24 394479 -162.254.244.0/22 393433 -162.254.248.0/21 55293 -162.255.0.0/21 23316 -162.255.8.0/21 53610 -162.255.16.0/22 21554 -162.255.20.0/22 21624 -162.255.24.0/22 23393 -162.255.28.0/22 30174 -162.255.32.0/22 54483 -162.255.36.0/22 30103 -162.255.40.0/23 55246 -162.255.42.0/23 25899 -162.255.44.0/22 12260 -162.255.48.0/22 10099 -162.255.52.0/22 39964 -162.255.56.0/22 46811 -162.255.60.0/22 54488 -162.255.64.0/22 62798 -162.255.68.0/23 32244 -162.255.70.0/23 36586 -162.255.72.0/21 395846 -162.255.80.0/22 393387 -162.255.84.0/22 8560 -162.255.88.0/21 2728 -162.255.104.0/23 174 -162.255.106.0/24 174 -162.255.107.0/24 29944 -162.255.108.0/22 54755 -162.255.112.0/22 40788 -162.255.116.0/22 22612 -162.255.120.0/21 13904 -162.255.128.0/23 46143 -162.255.130.0/23 394776 -162.255.132.0/22 22911 -162.255.136.0/22 47869 -162.255.140.0/23 26716 -162.255.142.0/24 26716 -162.255.144.0/22 40809 -162.255.148.0/22 30028 -162.255.152.0/22 18845 -162.255.156.0/22 33635 -162.255.160.0/21 63410 -162.255.168.0/22 53274 -162.255.172.0/23 54086 -162.255.174.0/24 54086 -162.255.175.0/24 26167 -162.255.176.0/22 22060 -162.255.180.0/22 63430 -162.255.184.0/21 40794 -162.255.192.0/22 26881 -162.255.196.0/22 206026 -162.255.200.0/22 19754 -162.255.204.0/23 1821 -162.255.206.0/24 1821 -162.255.207.0/24 394492 -162.255.208.0/23 64249 -162.255.210.0/23 20454 -162.255.212.0/23 64249 -162.255.214.0/23 393504 -162.255.216.0/21 3855 -162.255.224.0/22 46974 -162.255.232.0/22 393455 -162.255.236.0/22 46833 -162.255.244.0/23 36426 -162.255.246.0/24 36426 -162.255.248.0/21 15247 -163.0.0.0/16 17816 -163.1.0.0/16 786 -163.2.0.0/16 2749 -163.3.254.0/24 3301 -163.5.0.0/16 56339 -163.6.0.0/16 210 -163.7.0.0/17 38140 -163.7.128.0/24 24398 -163.7.129.0/24 38022 -163.7.130.0/23 45131 -163.7.132.0/24 45131 -163.7.134.0/23 38022 -163.7.136.0/23 134227 -163.7.138.0/23 38022 -163.7.142.0/24 38827 -163.7.143.0/24 38022 -163.7.144.0/24 38022 -163.7.160.0/20 38022 -163.7.202.0/24 38473 -163.7.206.0/24 38022 -163.8.48.0/20 45589 -163.8.64.0/19 45589 -163.8.160.0/19 45589 -163.9.0.0/16 2200 -163.10.0.0/16 5692 -163.11.0.0/16 600 -163.12.6.0/24 5133 -163.13.0.0/16 1659 -163.14.0.0/15 1659 -163.16.0.0/13 1659 -163.24.0.0/14 1659 -163.28.0.0/16 1659 -163.29.0.0/16 4782 -163.30.0.0/15 1659 -163.32.0.0/17 1659 -163.32.128.0/21 1659 -163.32.136.0/21 131150 -163.32.144.0/20 1659 -163.32.160.0/20 1659 -163.32.176.0/21 1659 -163.32.184.0/22 1659 -163.32.188.0/22 131150 -163.32.192.0/21 1659 -163.32.200.0/22 131150 -163.32.204.0/22 1659 -163.32.208.0/20 1659 -163.32.224.0/20 1659 -163.32.240.0/22 131150 -163.32.244.0/22 1659 -163.32.248.0/21 1659 -163.34.0.0/16 2830 -163.40.0.0/16 226 -163.41.0.0/17 3701 -163.41.128.0/17 3582 -163.42.0.0/16 2907 -163.43.0.0/16 9370 -163.44.0.0/18 2514 -163.44.64.0/19 7506 -163.44.128.0/19 59349 -163.44.160.0/19 7506 -163.44.192.0/22 131392 -163.44.196.0/22 135161 -163.44.200.0/24 131392 -163.44.201.0/24 135161 -163.44.202.0/23 135161 -163.44.205.0/24 131392 -163.44.206.0/23 131392 -163.44.208.0/20 2514 -163.44.224.0/19 7506 -163.45.0.0/16 131930 -163.46.0.0/16 18126 -163.47.1.0/24 2907 -163.47.2.0/23 2907 -163.47.4.0/22 4812 -163.47.8.0/22 14061 -163.47.12.0/22 38901 -163.47.16.0/24 38880 -163.47.17.0/24 136557 -163.47.20.0/23 136557 -163.47.23.0/24 2907 -163.47.24.0/24 2907 -163.47.29.0/24 2907 -163.47.32.0/22 23688 -163.47.36.0/22 63961 -163.47.44.0/23 133891 -163.47.48.0/22 58511 -163.47.52.0/22 45780 -163.47.56.0/22 10214 -163.47.64.0/22 38835 -163.47.68.0/22 17907 -163.47.72.0/22 38719 -163.47.76.0/24 852 -163.47.77.0/24 54807 -163.47.78.0/24 397136 -163.47.79.0/24 16696 -163.47.80.0/22 132602 -163.47.84.0/22 38592 -163.47.96.0/22 58507 -163.47.100.0/22 58580 -163.47.104.0/22 58600 -163.47.108.0/24 136577 -163.47.109.0/24 135069 -163.47.110.0/24 132847 -163.47.111.0/24 136577 -163.47.112.0/22 134102 -163.47.117.0/24 45570 -163.47.119.0/24 45570 -163.47.120.0/24 45654 -163.47.121.0/24 58507 -163.47.122.0/24 58507 -163.47.123.0/24 45654 -163.47.124.0/22 58940 -163.47.128.0/22 64073 -163.47.136.0/24 58507 -163.47.137.0/24 45654 -163.47.138.0/23 45654 -163.47.140.0/22 58640 -163.47.144.0/22 38203 -163.47.148.0/22 4007 -163.47.152.0/22 58640 -163.47.156.0/22 10075 -163.47.160.0/22 55424 -163.47.164.0/22 133192 -163.47.168.0/22 58507 -163.47.172.0/22 38901 -163.47.176.0/22 24482 -163.47.180.0/22 55819 -163.47.184.0/22 45230 -163.47.188.0/22 132031 -163.47.192.0/22 45960 -163.47.200.0/22 132241 -163.47.204.0/22 45177 -163.47.212.0/22 133661 -163.47.220.0/22 23655 -163.47.224.0/22 45345 -163.47.228.0/23 55561 -163.47.230.0/24 55561 -163.47.232.0/22 56028 -163.47.236.0/22 9876 -163.47.240.0/22 45267 -163.47.244.0/22 132255 -163.47.248.0/22 56055 -163.48.0.0/16 2516 -163.49.0.0/16 2497 -163.51.0.0/16 2907 -163.53.16.0/24 132422 -163.53.17.0/24 64021 -163.53.18.0/23 64021 -163.53.21.0/24 17559 -163.53.22.0/23 17559 -163.53.24.0/23 4007 -163.53.26.0/23 45650 -163.53.28.0/22 132730 -163.53.32.0/23 45594 -163.53.34.0/23 45763 -163.53.36.0/22 4847 -163.53.40.0/22 4808 -163.53.60.0/22 4847 -163.53.69.0/24 55796 -163.53.72.0/22 132957 -163.53.76.0/22 9752 -163.53.80.0/22 45433 -163.53.84.0/22 132116 -163.53.88.0/21 4812 -163.53.96.0/22 56282 -163.53.100.0/22 4808 -163.53.104.0/22 23724 -163.53.108.0/22 56282 -163.53.112.0/20 4808 -163.53.132.0/22 56282 -163.53.136.0/22 56282 -163.53.140.0/23 132267 -163.53.142.0/24 132267 -163.53.149.0/24 58923 -163.53.150.0/23 58923 -163.53.152.0/23 17564 -163.53.156.0/22 38387 -163.53.168.0/22 138950 -163.53.178.0/24 45916 -163.53.180.0/22 58813 -163.53.184.0/22 9341 -163.53.192.0/22 58381 -163.53.196.0/22 9902 -163.53.200.0/22 132770 -163.53.204.0/22 58898 -163.53.208.0/22 45916 -163.53.212.0/22 58640 -163.53.216.0/22 38186 -163.53.224.0/22 132882 -163.53.228.0/22 38716 -163.53.232.0/22 45177 -163.53.244.0/24 64021 -163.53.245.0/24 132422 -163.53.246.0/23 64021 -163.53.248.0/22 45454 -163.53.252.0/23 132535 -163.53.254.0/24 132535 -163.53.255.0/24 133648 -163.54.0.0/16 2907 -163.55.0.0/16 2497 -163.58.0.0/16 9365 -163.62.72.0/21 1301 -163.62.92.0/22 1301 -163.62.112.0/22 1301 -163.62.116.0/24 1301 -163.62.118.0/23 1301 -163.62.120.0/21 1301 -163.62.128.0/23 1301 -163.62.132.0/22 1301 -163.76.128.0/17 14340 -163.79.128.0/17 14340 -163.108.144.0/24 3215 -163.114.20.0/22 1301 -163.114.32.0/24 3215 -163.114.128.0/20 54115 -163.114.192.0/22 62597 -163.114.196.0/24 62597 -163.114.197.0/24 395403 -163.114.198.0/24 395403 -163.114.199.0/24 62597 -163.114.200.0/22 62597 -163.114.205.0/24 62597 -163.114.206.0/23 62597 -163.114.208.0/21 62597 -163.114.216.0/23 62597 -163.114.224.0/22 395403 -163.114.228.0/24 395403 -163.116.0.0/21 1301 -163.116.8.0/22 1301 -163.116.128.0/23 55256 -163.116.131.0/24 55256 -163.116.132.0/22 55256 -163.116.136.0/22 55256 -163.116.141.0/24 55256 -163.116.142.0/24 55256 -163.116.146.0/24 55256 -163.116.159.0/24 55256 -163.116.160.0/24 55256 -163.116.162.0/23 55256 -163.116.164.0/24 55256 -163.116.166.0/24 55256 -163.116.168.0/23 55256 -163.116.172.0/24 55256 -163.116.178.0/24 55256 -163.116.197.0/24 55256 -163.116.198.0/24 55256 -163.116.200.0/24 55256 -163.116.224.0/23 55256 -163.116.226.0/24 55256 -163.117.0.0/16 766 -163.118.0.0/16 31967 -163.119.0.0/22 786 -163.119.4.0/24 8851 -163.119.5.0/24 786 -163.119.6.0/23 8613 -163.119.8.0/23 786 -163.119.10.0/23 199055 -163.119.12.0/22 786 -163.119.16.0/20 786 -163.119.32.0/19 786 -163.119.64.0/18 786 -163.119.128.0/18 786 -163.119.192.0/18 8613 -163.120.0.0/17 1767 -163.121.2.0/23 6127 -163.121.4.0/22 6127 -163.121.8.0/23 6127 -163.121.13.0/24 6127 -163.121.14.0/23 6127 -163.121.16.0/22 6127 -163.121.20.0/23 6127 -163.121.22.0/24 6127 -163.121.25.0/24 6127 -163.121.26.0/23 6127 -163.121.28.0/23 6127 -163.121.30.0/24 6127 -163.121.32.0/24 6127 -163.121.36.0/23 6127 -163.121.42.0/24 6127 -163.121.47.0/24 6127 -163.121.49.0/24 6127 -163.121.51.0/24 6127 -163.121.52.0/24 6127 -163.121.56.0/24 6127 -163.121.64.0/24 6127 -163.121.66.0/24 6127 -163.121.75.0/24 6127 -163.121.78.0/24 6127 -163.121.82.0/24 6127 -163.121.92.0/23 6127 -163.121.99.0/24 6127 -163.121.101.0/24 6127 -163.121.103.0/24 6127 -163.121.117.0/24 6127 -163.121.119.0/24 8452 -163.121.126.0/24 6127 -163.121.128.0/19 8452 -163.121.160.0/22 8452 -163.121.164.0/23 8452 -163.121.166.0/24 37112 -163.121.167.0/24 8452 -163.121.168.0/21 8452 -163.121.176.0/23 8452 -163.121.178.0/23 36935 -163.121.180.0/22 8452 -163.121.184.0/22 8452 -163.121.188.0/24 36935 -163.121.189.0/24 8452 -163.121.190.0/23 8452 -163.121.192.0/21 8452 -163.121.200.0/23 8452 -163.121.202.0/24 8452 -163.121.203.0/24 36935 -163.121.204.0/22 8452 -163.121.208.0/20 8452 -163.121.224.0/19 8452 -163.124.64.0/22 18211 -163.124.68.0/23 18211 -163.124.79.0/24 18211 -163.125.0.0/16 17623 -163.126.0.0/16 1761 -163.129.0.0/16 23193 -163.130.0.0/16 2907 -163.131.0.0/19 59107 -163.131.32.0/19 10000 -163.131.64.0/19 38628 -163.131.96.0/21 38628 -163.131.104.0/21 18135 -163.131.128.0/18 131916 -163.131.192.0/18 131918 -163.134.0.0/16 2907 -163.135.0.0/16 4673 -163.136.0.0/16 2907 -163.137.0.0/16 17516 -163.138.0.0/17 2511 -163.138.128.0/19 2511 -163.138.160.0/19 173 -163.138.192.0/19 59091 -163.138.224.0/22 38639 -163.138.228.0/23 37900 -163.138.230.0/24 131155 -163.138.231.0/24 38639 -163.138.232.0/22 38639 -163.138.236.0/24 131155 -163.138.237.0/24 38639 -163.138.238.0/23 38639 -163.138.240.0/22 18259 -163.138.244.0/22 38639 -163.138.248.0/22 38639 -163.138.252.0/24 38639 -163.138.253.0/24 131155 -163.138.254.0/23 38639 -163.139.0.0/16 2519 -163.140.0.0/18 17676 -163.142.0.0/16 17816 -163.143.0.0/16 2907 -163.145.0.0/16 2506 -163.148.0.0/16 2907 -163.150.0.0/17 22315 -163.150.128.0/18 22315 -163.150.192.0/19 22315 -163.150.224.0/20 22315 -163.150.240.0/22 22315 -163.150.244.0/23 2152 -163.150.246.0/24 2152 -163.150.247.0/24 22315 -163.150.248.0/21 22315 -163.151.0.0/16 36161 -163.152.0.0/17 9452 -163.152.128.0/20 9452 -163.152.144.0/21 38113 -163.152.152.0/21 9452 -163.152.160.0/19 9452 -163.152.192.0/21 9452 -163.152.200.0/23 9452 -163.152.202.0/24 9452 -163.152.203.0/24 3786 -163.152.204.0/22 3786 -163.152.208.0/20 3786 -163.152.224.0/20 3786 -163.152.240.0/20 9452 -163.153.0.0/16 22693 -163.155.241.0/24 397344 -163.155.242.0/23 397344 -163.155.244.0/24 397344 -163.155.254.0/24 15290 -163.155.255.0/24 3848 -163.156.208.0/20 24949 -163.157.0.0/23 5400 -163.157.2.0/23 13063 -163.157.4.0/22 13063 -163.157.8.0/21 13063 -163.157.16.0/20 13063 -163.157.32.0/19 13063 -163.157.64.0/18 13063 -163.157.128.0/17 13063 -163.158.0.0/16 15435 -163.160.0.0/16 786 -163.161.0.0/16 8803 -163.162.0.0/18 5609 -163.162.64.0/20 5609 -163.162.80.0/21 5609 -163.162.88.0/24 3269 -163.162.89.0/24 5609 -163.162.90.0/23 5609 -163.162.92.0/22 5609 -163.162.96.0/19 5609 -163.162.128.0/17 5609 -163.164.0.0/16 5089 -163.165.192.0/18 31705 -163.166.0.0/16 15914 -163.167.0.0/16 786 -163.170.128.0/20 39552 -163.171.0.0/18 204222 -163.171.69.0/24 36408 -163.171.70.0/23 36408 -163.171.72.0/21 38107 -163.171.80.0/23 38107 -163.171.84.0/23 13658 -163.171.86.0/24 13658 -163.171.92.0/22 38107 -163.171.97.0/24 36408 -163.171.98.0/24 36408 -163.171.100.0/22 36408 -163.171.104.0/23 36408 -163.171.106.0/24 36408 -163.171.107.0/24 38107 -163.171.108.0/23 36408 -163.171.110.0/23 38107 -163.171.112.0/24 38107 -163.171.128.0/21 54994 -163.171.137.0/24 54994 -163.171.138.0/23 54994 -163.171.140.0/22 54994 -163.171.144.0/22 54994 -163.171.148.0/23 54994 -163.171.164.0/24 54994 -163.171.166.0/24 54994 -163.171.176.0/23 54994 -163.171.178.0/24 36408 -163.171.179.0/24 54994 -163.171.180.0/23 54994 -163.171.184.0/22 54994 -163.171.188.0/23 54994 -163.171.192.0/24 18004 -163.171.193.0/24 54994 -163.171.194.0/24 54994 -163.171.195.0/24 23700 -163.171.196.0/22 54994 -163.171.200.0/21 54994 -163.171.208.0/22 54994 -163.171.212.0/23 54994 -163.171.214.0/24 54994 -163.171.215.0/24 48737 -163.171.216.0/24 48737 -163.171.217.0/24 54994 -163.171.219.0/24 54994 -163.171.220.0/23 54994 -163.171.223.0/24 23700 -163.171.227.0/24 13658 -163.171.228.0/24 13658 -163.171.229.0/24 54994 -163.171.230.0/24 54994 -163.171.231.0/24 13658 -163.171.232.0/24 13658 -163.171.233.0/24 54994 -163.171.235.0/24 54994 -163.171.236.0/22 54994 -163.171.240.0/22 54994 -163.171.244.0/23 54994 -163.171.247.0/24 13658 -163.171.248.0/24 54994 -163.171.250.0/23 13658 -163.171.252.0/24 13658 -163.172.0.0/16 12876 -163.173.0.0/16 2200 -163.174.0.0/18 57506 -163.174.96.0/22 3292 -163.174.114.0/24 3292 -163.174.115.0/24 60270 -163.174.116.0/22 56538 -163.174.120.0/21 56538 -163.177.0.0/22 17816 -163.177.4.0/23 17816 -163.177.6.0/23 136958 -163.177.8.0/24 17816 -163.177.9.0/24 136958 -163.177.10.0/24 17816 -163.177.11.0/24 136958 -163.177.12.0/24 17816 -163.177.13.0/24 136958 -163.177.14.0/23 136958 -163.177.16.0/24 136958 -163.177.17.0/24 17816 -163.177.18.0/24 17816 -163.177.19.0/24 136958 -163.177.20.0/23 136958 -163.177.22.0/24 136958 -163.177.23.0/24 17816 -163.177.24.0/21 136958 -163.177.32.0/23 136958 -163.177.34.0/23 17816 -163.177.36.0/22 136958 -163.177.40.0/21 136958 -163.177.48.0/21 17816 -163.177.56.0/22 17623 -163.177.60.0/23 17623 -163.177.62.0/24 17623 -163.177.63.0/24 135061 -163.177.64.0/21 17623 -163.177.72.0/23 17623 -163.177.74.0/24 17623 -163.177.75.0/24 135061 -163.177.76.0/22 135061 -163.177.80.0/24 17623 -163.177.81.0/24 135061 -163.177.82.0/23 17623 -163.177.84.0/23 135061 -163.177.86.0/24 135061 -163.177.87.0/24 17623 -163.177.88.0/22 17623 -163.177.92.0/23 17623 -163.177.94.0/24 17623 -163.177.95.0/24 135061 -163.177.96.0/19 17816 -163.177.128.0/21 17816 -163.177.136.0/21 17622 -163.177.144.0/21 136958 -163.177.152.0/21 136959 -163.177.160.0/19 17816 -163.177.192.0/20 17816 -163.177.208.0/21 17816 -163.177.216.0/21 134543 -163.177.224.0/19 17816 -163.178.0.0/20 11830 -163.178.16.0/22 263683 -163.178.20.0/22 11830 -163.178.24.0/21 11830 -163.178.32.0/20 11830 -163.178.48.0/20 263683 -163.178.64.0/22 263683 -163.178.68.0/23 263683 -163.178.70.0/24 11830 -163.178.71.0/24 263683 -163.178.72.0/22 263683 -163.178.76.0/23 263683 -163.178.78.0/24 11830 -163.178.79.0/24 263683 -163.178.80.0/24 11830 -163.178.81.0/24 263683 -163.178.82.0/23 263683 -163.178.84.0/22 263683 -163.178.88.0/21 263683 -163.178.96.0/23 263683 -163.178.98.0/24 263683 -163.178.99.0/24 11830 -163.178.100.0/22 263683 -163.178.104.0/21 263683 -163.178.112.0/20 263683 -163.178.128.0/19 11830 -163.178.160.0/19 263683 -163.178.192.0/20 11830 -163.178.208.0/20 263683 -163.178.224.0/19 263683 -163.179.0.0/16 17816 -163.180.0.0/17 17870 -163.180.128.0/18 17870 -163.180.241.0/24 17870 -163.182.0.0/17 6181 -163.182.128.0/19 18616 -163.182.160.0/23 18616 -163.182.162.0/23 62642 -163.182.167.0/24 62642 -163.182.168.0/21 40244 -163.182.176.0/20 18615 -163.182.192.0/20 395173 -163.182.208.0/21 395173 -163.182.216.0/22 395173 -163.182.220.0/22 11287 -163.182.224.0/22 11287 -163.182.228.0/22 395261 -163.182.232.0/21 395261 -163.182.240.0/20 395261 -163.183.0.0/16 72 -163.184.0.0/15 72 -163.186.0.0/16 72 -163.188.0.0/16 72 -163.189.0.0/16 55542 -163.191.0.0/16 6325 -163.193.83.0/24 3549 -163.194.0.0/16 395610 -163.195.0.0/16 37130 -163.196.254.0/23 3067 -163.197.64.0/18 54600 -163.197.255.0/24 133441 -163.198.0.0/17 62355 -163.198.128.0/18 62355 -163.198.192.0/20 62355 -163.198.208.0/22 62355 -163.198.212.0/22 9009 -163.198.216.0/24 19969 -163.198.217.0/24 43092 -163.198.218.0/24 43092 -163.198.219.0/24 19969 -163.198.220.0/22 62355 -163.198.224.0/20 62355 -163.198.240.0/21 62355 -163.198.248.0/22 62355 -163.199.96.0/22 3741 -163.199.101.0/24 3741 -163.199.104.0/21 3741 -163.200.0.0/16 2018 -163.201.0.0/16 3741 -163.202.0.0/15 3741 -163.204.0.0/16 17816 -163.205.0.0/16 1843 -163.206.0.0/16 1843 -163.208.0.0/17 7502 -163.208.128.0/19 7502 -163.208.160.0/20 7502 -163.208.176.0/20 37914 -163.208.192.0/18 7502 -163.209.0.0/16 2907 -163.210.0.0/16 2516 -163.211.0.0/16 17512 -163.212.0.0/16 2907 -163.213.0.0/16 4766 -163.214.0.0/15 2907 -163.220.0.0/17 2907 -163.220.128.0/20 2907 -163.220.176.0/20 2907 -163.220.192.0/19 63770 -163.220.224.0/20 63770 -163.220.240.0/21 63770 -163.220.248.0/22 63770 -163.220.252.0/22 37917 -163.221.0.0/16 2500 -163.222.0.0/16 4766 -163.225.0.0/16 2907 -163.226.0.0/16 24297 -163.228.0.0/16 8075 -163.229.0.0/16 4766 -163.230.0.0/16 27336 -163.231.0.0/16 4583 -163.232.0.0/24 10203 -163.232.40.0/23 10203 -163.232.160.0/24 10203 -163.232.192.0/20 55766 -163.232.218.0/24 10203 -163.232.249.0/24 10203 -163.233.0.0/17 17477 -163.233.128.0/20 7545 -163.233.144.0/20 17477 -163.233.160.0/19 17477 -163.233.192.0/18 17477 -163.234.0.0/16 1761 -163.236.0.0/16 7127 -163.237.0.0/17 19255 -163.237.128.0/18 19255 -163.237.192.0/20 19255 -163.237.208.0/23 19255 -163.237.210.0/24 13331 -163.237.211.0/24 19255 -163.237.212.0/22 19255 -163.237.216.0/22 19255 -163.237.220.0/23 19255 -163.237.222.0/23 13331 -163.237.224.0/23 13331 -163.237.226.0/23 19255 -163.237.228.0/22 19255 -163.237.232.0/21 19255 -163.237.240.0/24 13331 -163.237.241.0/24 19255 -163.237.242.0/23 19255 -163.237.244.0/22 19255 -163.237.248.0/21 19255 -163.238.0.0/16 31822 -163.239.0.0/17 3813 -163.239.128.0/18 3813 -163.239.192.0/19 3813 -163.239.224.0/20 3813 -163.239.240.0/21 3813 -163.239.248.0/22 3813 -163.239.252.0/23 3813 -163.239.254.0/24 3813 -163.239.255.0/24 9318 -163.240.0.0/16 668 -163.244.0.0/21 3614 -163.244.8.0/24 3614 -163.244.9.0/24 30614 -163.244.10.0/24 30614 -163.244.11.0/24 3614 -163.244.12.0/22 30614 -163.244.16.0/23 3614 -163.244.18.0/24 3614 -163.244.19.0/24 24989 -163.244.20.0/24 30614 -163.244.21.0/24 3614 -163.244.22.0/23 30614 -163.244.24.0/23 30614 -163.244.26.0/24 30614 -163.244.27.0/24 3614 -163.244.28.0/22 3614 -163.244.32.0/20 3614 -163.244.48.0/21 3614 -163.244.56.0/23 30614 -163.244.58.0/23 3614 -163.244.60.0/23 3614 -163.244.62.0/23 30614 -163.244.64.0/23 30614 -163.244.66.0/23 3614 -163.244.68.0/22 3614 -163.244.72.0/21 3614 -163.244.80.0/20 3614 -163.244.96.0/20 3614 -163.244.112.0/22 3614 -163.244.116.0/22 30614 -163.244.120.0/21 3614 -163.244.128.0/19 3614 -163.244.160.0/20 3614 -163.244.176.0/22 3614 -163.244.180.0/24 1294 -163.244.181.0/24 3614 -163.244.182.0/24 1294 -163.244.183.0/24 3614 -163.244.184.0/23 3614 -163.244.186.0/24 1294 -163.244.187.0/24 3614 -163.244.188.0/22 3614 -163.244.192.0/19 3614 -163.244.224.0/20 3614 -163.244.240.0/23 3614 -163.244.242.0/24 30614 -163.244.243.0/24 3614 -163.244.244.0/23 3614 -163.244.246.0/24 38057 -163.244.247.0/24 3614 -163.244.248.0/21 3614 -163.245.0.0/16 17 -163.246.0.0/16 3512 -163.247.0.0/16 17147 -163.248.0.0/16 210 -163.249.8.0/23 5133 -163.249.11.0/24 5133 -163.249.32.0/21 5133 -163.249.40.0/21 668 -163.249.56.0/21 668 -163.249.64.0/21 668 -163.249.72.0/23 668 -163.249.81.0/24 668 -163.249.100.0/22 5133 -163.249.104.0/21 5133 -163.249.112.0/20 5133 -163.249.128.0/19 5133 -163.249.160.0/21 5133 -163.249.168.0/22 5133 -163.249.232.0/21 5133 -163.251.0.0/24 27066 -163.251.96.0/22 27066 -163.251.101.0/24 27066 -163.251.104.0/21 27066 -163.251.112.0/21 27066 -163.251.120.0/23 619 -163.251.127.0/24 27066 -163.251.128.0/23 27066 -163.251.136.0/24 27066 -163.251.159.0/24 27066 -163.251.160.0/23 27066 -163.251.176.0/24 27066 -163.251.183.0/24 27066 -163.251.184.0/23 27066 -163.251.190.0/24 27066 -163.251.195.0/24 27066 -163.251.196.0/24 27066 -163.251.204.0/24 27066 -163.251.207.0/24 27066 -163.251.208.0/20 27066 -163.251.225.0/24 27066 -163.251.230.0/24 27066 -163.251.235.0/24 27066 -163.251.238.0/23 27066 -163.251.244.0/22 27066 -163.251.248.0/23 27066 -163.251.254.0/24 27066 -163.251.255.0/24 5860 -163.252.94.0/23 1236 -163.252.247.0/24 1236 -163.252.252.0/23 1236 -163.252.254.0/24 1236 -163.253.8.0/24 11537 -163.253.30.0/23 11537 -163.253.32.0/24 11164 -163.253.34.0/24 11537 -163.253.36.0/22 237 -163.253.40.0/23 11537 -163.253.42.0/24 22742 -163.253.44.0/24 11164 -163.253.46.0/24 14618 -163.253.47.0/24 16509 -163.253.70.0/23 396961 -163.253.72.0/23 396961 -163.253.74.0/24 396961 -163.255.0.0/16 4766 -164.0.0.0/16 29355 -164.1.0.0/16 198875 -164.2.0.0/16 198875 -164.3.0.0/17 8387 -164.3.128.0/18 8387 -164.3.192.0/20 8387 -164.3.208.0/21 8387 -164.3.216.0/22 8387 -164.3.220.0/23 20570 -164.3.222.0/23 8387 -164.3.224.0/19 8387 -164.4.0.0/16 44013 -164.5.0.0/21 3222 -164.5.8.0/22 3222 -164.5.12.0/23 208272 -164.5.14.0/23 3222 -164.5.16.0/20 3222 -164.5.32.0/19 3222 -164.5.64.0/18 3222 -164.5.128.0/18 3222 -164.5.192.0/19 20904 -164.5.224.0/19 3222 -164.8.0.0/17 50195 -164.8.128.0/20 2107 -164.8.144.0/20 50195 -164.8.160.0/19 50195 -164.8.192.0/18 50195 -164.9.0.0/16 29217 -164.10.0.0/16 59807 -164.11.0.0/16 786 -164.14.0.0/16 8803 -164.15.0.0/16 2611 -164.33.82.0/23 34086 -164.36.38.0/23 49572 -164.36.44.0/23 49572 -164.36.49.0/24 49572 -164.36.50.0/23 49572 -164.37.29.0/24 3301 -164.37.38.0/24 3301 -164.38.0.0/17 3549 -164.38.128.0/22 3549 -164.38.133.0/24 2856 -164.38.134.0/23 3549 -164.38.136.0/22 3549 -164.38.140.0/23 3561 -164.38.142.0/23 3549 -164.38.144.0/22 3549 -164.38.148.0/23 2856 -164.38.150.0/23 10753 -164.38.152.0/21 3549 -164.38.160.0/19 3549 -164.38.192.0/18 3549 -164.39.0.0/18 42973 -164.39.64.0/19 42973 -164.39.96.0/19 44931 -164.39.128.0/17 31655 -164.40.0.0/17 29355 -164.40.128.0/19 198220 -164.40.160.0/23 198218 -164.40.162.0/24 198218 -164.40.163.0/24 30981 -164.40.164.0/24 30981 -164.40.165.0/24 198218 -164.40.166.0/23 198218 -164.40.168.0/23 12508 -164.40.170.0/24 200860 -164.40.176.0/21 8523 -164.40.192.0/20 198225 -164.40.208.0/20 8586 -164.40.224.0/21 16178 -164.40.232.0/21 12676 -164.40.240.0/21 20552 -164.40.248.0/21 34772 -164.41.0.0/16 21506 -164.42.0.0/16 16649 -164.43.0.0/17 3949 -164.43.128.0/21 3949 -164.43.136.0/22 3949 -164.43.140.0/24 2519 -164.43.141.0/24 3949 -164.43.142.0/23 3949 -164.43.144.0/20 3949 -164.43.160.0/19 3949 -164.43.192.0/18 3949 -164.44.0.0/22 63111 -164.44.7.0/24 63111 -164.44.9.0/24 63111 -164.44.16.0/21 63111 -164.44.64.0/22 63111 -164.46.0.0/20 2554 -164.46.16.0/20 4694 -164.46.32.0/19 4694 -164.46.64.0/18 4694 -164.46.128.0/19 4694 -164.46.160.0/20 4694 -164.46.176.0/24 2554 -164.46.177.0/24 4694 -164.46.178.0/23 4694 -164.46.180.0/22 4694 -164.46.184.0/21 4694 -164.46.192.0/19 4694 -164.46.224.0/22 4694 -164.46.228.0/23 4694 -164.46.230.0/24 4694 -164.46.231.0/24 2554 -164.46.232.0/21 2554 -164.46.240.0/24 2554 -164.46.241.0/24 4694 -164.46.242.0/23 4694 -164.46.244.0/22 4694 -164.46.248.0/21 4694 -164.47.0.0/16 14737 -164.48.0.0/16 158 -164.49.0.0/16 668 -164.50.0.0/16 395877 -164.51.0.0/21 8103 -164.51.8.0/22 8103 -164.51.12.0/23 8103 -164.51.14.0/24 8103 -164.51.15.0/24 6167 -164.51.16.0/20 8103 -164.51.32.0/19 8103 -164.51.64.0/18 8103 -164.51.128.0/17 8103 -164.52.0.0/17 63199 -164.52.128.0/20 17223 -164.52.144.0/20 7226 -164.52.192.0/21 17439 -164.52.208.0/21 17439 -164.52.224.0/19 33154 -164.53.0.0/16 10235 -164.54.0.0/16 683 -164.55.244.0/24 16509 -164.55.245.0/24 6404 -164.55.246.0/24 6404 -164.55.248.0/22 6404 -164.55.252.0/23 6404 -164.55.254.0/24 6404 -164.57.0.0/17 4583 -164.57.128.0/18 4583 -164.57.192.0/19 3145 -164.57.224.0/24 3145 -164.57.225.0/24 4583 -164.57.226.0/23 4583 -164.57.228.0/22 4583 -164.57.232.0/21 4583 -164.57.240.0/20 4583 -164.58.0.0/16 5078 -164.59.0.0/16 13043 -164.60.0.0/16 13043 -164.61.0.0/17 8569 -164.61.128.0/19 8569 -164.61.160.0/21 8569 -164.61.168.0/21 39290 -164.61.176.0/20 8569 -164.61.192.0/18 8569 -164.62.0.0/16 4185 -164.64.0.0/16 14235 -164.65.0.0/16 1778 -164.66.0.0/16 1458 -164.67.0.0/16 52 -164.68.0.0/18 33491 -164.68.64.0/19 33491 -164.68.96.0/19 51167 -164.68.128.0/17 23089 -164.69.0.0/16 2510 -164.70.0.0/18 2510 -164.70.128.0/17 2527 -164.71.0.0/16 2510 -164.73.0.0/16 1797 -164.74.120.0/24 46887 -164.74.122.0/23 46887 -164.74.129.0/24 46887 -164.74.130.0/24 18628 -164.75.0.0/19 45442 -164.76.0.0/16 237 -164.77.0.0/20 6471 -164.77.16.0/21 6471 -164.77.24.0/22 6471 -164.77.28.0/23 7004 -164.77.30.0/23 6471 -164.77.32.0/22 6471 -164.77.36.0/23 6471 -164.77.38.0/24 6471 -164.77.39.0/24 27651 -164.77.40.0/22 6471 -164.77.44.0/23 6471 -164.77.46.0/24 27651 -164.77.47.0/24 6471 -164.77.48.0/20 6471 -164.77.64.0/21 6471 -164.77.72.0/22 6471 -164.77.76.0/24 27651 -164.77.77.0/24 6471 -164.77.78.0/23 6471 -164.77.80.0/20 6471 -164.77.96.0/19 6471 -164.77.128.0/22 6471 -164.77.132.0/24 27651 -164.77.133.0/24 6471 -164.77.134.0/23 6471 -164.77.136.0/21 6471 -164.77.144.0/20 6471 -164.77.160.0/20 6471 -164.77.176.0/23 6471 -164.77.178.0/24 6471 -164.77.179.0/24 27651 -164.77.180.0/22 6471 -164.77.184.0/21 6471 -164.77.192.0/18 6471 -164.78.0.0/16 45133 -164.79.192.0/24 1239 -164.80.0.0/19 134984 -164.80.32.0/19 9880 -164.80.64.0/18 9880 -164.80.128.0/17 9880 -164.81.0.0/16 1935 -164.82.1.0/24 33084 -164.82.2.0/23 33084 -164.82.4.0/22 33084 -164.82.8.0/21 33084 -164.82.16.0/21 33084 -164.82.24.0/22 33084 -164.82.28.0/24 33084 -164.82.32.0/23 14072 -164.82.36.0/22 14072 -164.82.40.0/22 14072 -164.82.44.0/23 14072 -164.82.48.0/22 33084 -164.82.54.0/24 33084 -164.82.56.0/21 33084 -164.82.84.0/24 14072 -164.82.144.0/24 14072 -164.82.146.0/24 14072 -164.82.148.0/22 14072 -164.82.254.0/24 33084 -164.83.0.0/16 26818 -164.85.0.0/16 23074 -164.86.130.0/24 26243 -164.86.192.0/23 26243 -164.86.196.0/23 26243 -164.86.208.0/23 26243 -164.86.210.0/24 26243 -164.86.228.0/23 26243 -164.86.232.0/22 22351 -164.87.0.0/23 721 -164.87.2.0/24 721 -164.87.3.0/24 27046 -164.87.4.0/22 721 -164.87.8.0/23 721 -164.87.10.0/24 27064 -164.87.11.0/24 721 -164.87.12.0/22 721 -164.87.16.0/22 721 -164.87.20.0/22 27046 -164.87.24.0/21 27046 -164.87.32.0/20 27046 -164.87.48.0/21 27046 -164.87.56.0/21 721 -164.87.64.0/19 27046 -164.87.96.0/19 721 -164.87.128.0/20 721 -164.87.144.0/21 721 -164.87.152.0/21 27046 -164.87.160.0/19 27046 -164.87.192.0/18 27046 -164.89.253.0/24 11326 -164.90.0.0/21 36075 -164.90.8.0/23 36075 -164.90.10.0/24 7015 -164.90.11.0/24 36075 -164.90.12.0/22 36075 -164.90.16.0/20 36075 -164.90.32.0/19 53449 -164.90.64.0/22 10122 -164.90.68.0/23 10122 -164.90.70.0/24 10122 -164.90.72.0/23 10122 -164.90.74.0/24 10122 -164.90.75.0/24 21859 -164.90.76.0/24 21859 -164.90.77.0/24 10122 -164.90.78.0/23 10122 -164.90.80.0/24 10122 -164.90.81.0/24 21859 -164.90.82.0/23 21859 -164.90.84.0/23 10122 -164.90.86.0/23 21859 -164.90.88.0/24 21859 -164.90.89.0/24 10122 -164.90.90.0/23 10122 -164.90.92.0/23 10122 -164.90.94.0/24 10122 -164.90.99.0/24 10122 -164.90.100.0/24 10122 -164.90.103.0/24 21859 -164.90.104.0/24 10122 -164.90.112.0/24 21859 -164.90.116.0/24 21859 -164.90.117.0/24 10122 -164.90.118.0/23 10122 -164.90.121.0/24 10122 -164.90.122.0/24 10122 -164.90.123.0/24 21859 -164.90.124.0/23 21859 -164.90.126.0/24 21859 -164.90.127.0/24 10122 -164.92.0.0/18 46930 -164.93.128.0/17 15533 -164.95.0.0/16 13506 -164.97.0.0/16 38470 -164.99.0.0/16 3680 -164.100.0.0/18 4758 -164.100.64.0/20 4758 -164.100.80.0/24 4758 -164.100.81.0/24 55824 -164.100.82.0/23 4758 -164.100.84.0/22 4758 -164.100.88.0/21 4758 -164.100.96.0/20 4758 -164.100.112.0/21 4758 -164.100.120.0/22 4758 -164.100.124.0/24 4758 -164.100.125.0/24 55824 -164.100.126.0/24 55824 -164.100.127.0/24 4758 -164.100.128.0/23 4758 -164.100.130.0/23 55824 -164.100.132.0/23 55824 -164.100.134.0/24 55824 -164.100.135.0/24 4758 -164.100.136.0/23 4758 -164.100.138.0/24 55824 -164.100.139.0/24 4758 -164.100.140.0/23 4758 -164.100.142.0/24 55824 -164.100.143.0/24 4758 -164.100.144.0/23 4758 -164.100.146.0/24 55824 -164.100.147.0/24 4758 -164.100.148.0/22 4758 -164.100.152.0/21 4758 -164.100.160.0/20 4758 -164.100.176.0/22 4758 -164.100.180.0/24 4758 -164.100.181.0/24 55824 -164.100.182.0/23 4758 -164.100.184.0/21 4758 -164.100.192.0/22 4758 -164.100.196.0/24 55824 -164.100.197.0/24 4758 -164.100.198.0/23 4758 -164.100.200.0/24 4758 -164.100.201.0/24 55824 -164.100.202.0/23 4758 -164.100.204.0/22 4758 -164.100.208.0/21 4758 -164.100.216.0/22 4758 -164.100.220.0/23 4758 -164.100.222.0/23 55824 -164.100.224.0/19 4758 -164.102.0.0/16 36534 -164.104.0.0/16 54060 -164.106.0.0/18 22845 -164.106.64.0/19 22845 -164.106.96.0/20 22845 -164.106.112.0/21 22845 -164.106.120.0/22 22845 -164.106.124.0/23 22845 -164.106.126.0/24 22845 -164.106.127.0/24 40220 -164.106.128.0/17 22845 -164.107.0.0/16 159 -164.108.9.0/24 1221 -164.108.10.0/24 1221 -164.108.12.0/23 1221 -164.108.17.0/24 1221 -164.108.104.0/24 1221 -164.108.181.0/24 1221 -164.109.0.0/16 3707 -164.110.0.0/16 14827 -164.111.0.0/16 3452 -164.112.80.0/24 9650 -164.112.116.0/24 9650 -164.112.246.0/23 9650 -164.112.249.0/24 9650 -164.112.253.0/24 9650 -164.113.0.0/17 2495 -164.113.128.0/18 2495 -164.113.192.0/19 2495 -164.113.224.0/20 2495 -164.113.240.0/21 2495 -164.113.248.0/22 2495 -164.113.252.0/23 2495 -164.113.254.0/23 11317 -164.114.0.0/16 10497 -164.115.0.0/18 9835 -164.115.64.0/19 9835 -164.115.99.0/24 9835 -164.115.100.0/23 9835 -164.115.128.0/19 9835 -164.115.224.0/19 38450 -164.116.0.0/20 10430 -164.116.16.0/24 55268 -164.116.17.0/24 10430 -164.116.18.0/23 10430 -164.116.20.0/23 10430 -164.116.22.0/23 10506 -164.116.24.0/21 10506 -164.116.32.0/24 10430 -164.116.33.0/24 55268 -164.116.34.0/23 10430 -164.116.36.0/22 10430 -164.116.40.0/21 10430 -164.116.48.0/20 10430 -164.116.64.0/18 10430 -164.116.128.0/18 10430 -164.116.192.0/19 30198 -164.116.224.0/20 30198 -164.116.240.0/21 30198 -164.116.248.0/22 30198 -164.116.252.0/24 30198 -164.116.253.0/24 10430 -164.116.254.0/24 10430 -164.116.255.0/24 30198 -164.117.1.0/24 367 -164.117.2.0/23 367 -164.117.32.0/19 494 -164.117.80.0/24 27064 -164.117.90.0/24 494 -164.117.128.0/24 27064 -164.117.192.0/18 27064 -164.119.0.0/16 2769 -164.121.0.0/16 10846 -164.122.0.0/20 668 -164.124.0.0/16 3786 -164.125.0.0/16 9274 -164.126.0.0/15 39603 -164.128.0.0/21 3303 -164.128.8.0/22 3303 -164.128.20.0/22 3303 -164.128.24.0/21 3303 -164.128.32.0/19 3303 -164.128.64.0/19 3303 -164.128.102.0/23 3303 -164.128.109.0/24 3303 -164.128.110.0/24 3303 -164.128.113.0/24 3303 -164.128.119.0/24 3303 -164.128.128.0/17 3303 -164.129.0.0/18 51964 -164.129.64.0/19 51964 -164.129.96.0/20 51964 -164.129.112.0/23 51964 -164.129.114.0/24 51964 -164.129.115.0/24 3215 -164.129.116.0/22 51964 -164.129.120.0/21 51964 -164.129.128.0/17 51964 -164.130.0.0/16 51964 -164.131.130.0/23 60855 -164.131.132.0/23 60855 -164.131.197.0/24 60855 -164.131.198.0/23 60855 -164.131.224.0/24 60855 -164.131.226.0/23 60855 -164.131.244.0/24 60855 -164.132.0.0/16 16276 -164.133.4.0/24 3320 -164.133.10.0/24 3320 -164.133.91.0/24 3320 -164.133.98.0/23 3320 -164.133.150.0/24 3320 -164.133.154.0/24 3320 -164.134.0.0/20 51551 -164.134.16.0/24 202783 -164.136.246.0/23 25049 -164.138.0.0/24 198588 -164.138.1.0/24 199365 -164.138.2.0/24 198588 -164.138.3.0/24 199365 -164.138.14.0/24 199365 -164.138.16.0/21 59431 -164.138.24.0/21 196752 -164.138.32.0/21 196797 -164.138.42.0/23 29355 -164.138.44.0/23 29355 -164.138.46.0/24 29355 -164.138.48.0/21 28716 -164.138.56.0/21 31693 -164.138.64.0/20 6898 -164.138.80.0/21 57099 -164.138.88.0/21 8749 -164.138.98.0/24 47362 -164.138.99.0/24 7979 -164.138.100.0/22 393559 -164.138.104.0/21 42160 -164.138.112.0/20 42925 -164.138.128.0/18 197207 -164.138.192.0/21 58323 -164.138.200.0/21 198653 -164.138.208.0/21 198968 -164.138.216.0/21 201200 -164.138.224.0/23 44009 -164.138.226.0/24 15395 -164.138.227.0/24 44009 -164.138.228.0/22 44009 -164.138.232.0/22 57958 -164.138.236.0/23 57958 -164.138.238.0/24 57958 -164.138.239.0/24 201935 -164.138.240.0/22 58011 -164.138.244.0/23 58011 -164.138.246.0/24 8218 -164.138.247.0/24 58011 -164.138.248.0/21 49127 -164.139.0.0/21 8569 -164.139.8.0/22 8569 -164.139.12.0/22 39290 -164.139.16.0/20 8569 -164.139.32.0/20 39290 -164.139.48.0/20 8569 -164.139.64.0/20 8569 -164.139.80.0/22 39290 -164.139.84.0/22 8569 -164.139.88.0/21 8569 -164.139.96.0/19 8569 -164.139.128.0/21 39290 -164.139.136.0/21 8569 -164.139.144.0/20 8569 -164.139.160.0/21 8569 -164.139.168.0/21 39290 -164.139.176.0/20 8569 -164.139.192.0/19 8569 -164.139.224.0/21 8569 -164.139.232.0/22 33959 -164.139.236.0/22 8569 -164.139.240.0/22 45210 -164.139.244.0/22 8569 -164.139.248.0/21 8569 -164.140.0.0/16 15916 -164.141.0.0/16 1759 -164.143.0.0/16 21296 -164.144.0.0/22 27343 -164.144.6.0/23 27343 -164.144.8.0/24 27343 -164.144.44.0/22 27343 -164.144.48.0/24 27343 -164.144.52.0/22 27343 -164.144.56.0/24 27343 -164.144.232.0/24 27343 -164.144.240.0/24 27343 -164.146.0.0/15 37130 -164.148.0.0/14 37130 -164.153.1.0/24 32710 -164.153.8.0/23 16570 -164.153.100.0/23 14618 -164.153.175.0/24 32710 -164.153.176.0/21 32710 -164.153.184.0/21 16570 -164.153.192.0/19 16570 -164.153.224.0/20 16570 -164.153.240.0/21 16570 -164.153.248.0/21 32710 -164.154.0.0/16 7773 -164.155.0.0/19 136800 -164.155.49.0/24 136743 -164.155.50.0/24 136743 -164.155.51.0/24 139330 -164.155.52.0/22 139330 -164.155.56.0/21 139330 -164.155.64.0/18 139330 -164.155.128.0/18 26484 -164.155.192.0/21 18013 -164.155.200.0/21 26484 -164.155.208.0/20 26484 -164.155.224.0/21 18013 -164.155.232.0/21 26484 -164.155.240.0/20 18013 -164.156.0.0/15 18756 -164.160.4.0/22 328015 -164.160.8.0/22 328196 -164.160.16.0/22 37281 -164.160.20.0/22 328057 -164.160.24.0/22 328020 -164.160.32.0/22 328025 -164.160.36.0/22 328024 -164.160.40.0/22 328193 -164.160.44.0/22 328032 -164.160.52.0/22 328029 -164.160.60.0/24 328043 -164.160.64.0/23 37193 -164.160.66.0/24 37193 -164.160.68.0/22 327697 -164.160.72.0/21 37670 -164.160.80.0/22 37542 -164.160.84.0/22 37529 -164.160.88.0/22 328037 -164.160.92.0/22 328038 -164.160.104.0/22 328067 -164.160.109.0/24 36877 -164.160.111.0/24 33763 -164.160.112.0/23 12684 -164.160.116.0/22 61092 -164.160.120.0/22 328049 -164.160.124.0/22 328051 -164.160.128.0/22 328110 -164.160.132.0/22 328054 -164.160.136.0/22 328061 -164.160.140.0/22 328098 -164.160.144.0/22 328073 -164.160.148.0/22 328077 -164.160.152.0/22 328078 -164.160.160.0/21 327717 -164.160.176.0/21 327750 -164.160.184.0/22 24757 -164.160.192.0/21 328060 -164.160.224.0/20 21351 -164.160.240.0/20 328439 -164.161.0.0/16 2907 -164.162.0.0/23 4725 -164.162.2.0/23 17676 -164.162.4.0/22 17676 -164.162.8.0/21 17676 -164.162.16.0/20 17676 -164.162.32.0/19 17676 -164.162.64.0/18 17676 -164.162.128.0/17 17676 -164.163.0.0/22 265933 -164.163.5.0/24 265939 -164.163.6.0/23 265988 -164.163.8.0/23 265761 -164.163.11.0/24 265761 -164.163.12.0/22 265991 -164.163.16.0/22 265952 -164.163.20.0/22 265935 -164.163.24.0/22 265936 -164.163.28.0/22 265937 -164.163.32.0/22 265958 -164.163.36.0/22 265959 -164.163.40.0/22 265763 -164.163.44.0/22 265938 -164.163.48.0/22 264668 -164.163.52.0/22 265953 -164.163.56.0/22 265781 -164.163.60.0/22 265946 -164.163.64.0/22 267642 -164.163.68.0/22 265975 -164.163.72.0/22 265767 -164.163.76.0/22 265947 -164.163.80.0/22 265769 -164.163.84.0/22 265968 -164.163.88.0/22 61466 -164.163.92.0/22 265948 -164.163.96.0/22 265949 -164.163.100.0/22 265999 -164.163.104.0/22 265954 -164.163.108.0/22 265950 -164.163.112.0/22 265960 -164.163.116.0/22 265961 -164.163.120.0/22 3549 -164.163.124.0/22 265770 -164.163.128.0/23 265782 -164.163.133.0/24 264668 -164.163.134.0/23 264668 -164.163.136.0/22 265955 -164.163.140.0/22 265962 -164.163.144.0/22 265982 -164.163.148.0/22 265963 -164.163.152.0/22 265956 -164.163.156.0/22 265957 -164.163.160.0/23 266867 -164.163.164.0/22 265977 -164.163.168.0/22 265964 -164.163.172.0/22 265965 -164.163.176.0/22 265966 -164.163.180.0/22 267432 -164.163.188.0/22 28398 -164.163.192.0/22 265970 -164.163.196.0/22 265971 -164.163.200.0/22 265972 -164.163.204.0/22 265973 -164.163.208.0/22 267427 -164.163.212.0/22 265974 -164.163.216.0/22 265774 -164.163.220.0/23 267455 -164.163.224.0/22 267430 -164.163.228.0/22 265995 -164.163.232.0/22 265983 -164.163.236.0/22 265989 -164.163.240.0/24 265778 -164.163.241.0/24 265785 -164.163.242.0/24 265993 -164.163.244.0/22 28005 -164.163.248.0/22 265978 -164.163.252.0/22 265979 -164.164.0.0/18 7633 -164.164.64.0/19 7633 -164.164.96.0/20 7633 -164.164.113.0/24 7633 -164.164.114.0/24 7633 -164.164.116.0/24 7633 -164.164.119.0/24 7633 -164.164.121.0/24 9730 -164.164.122.0/24 7633 -164.164.125.0/24 7633 -164.164.126.0/23 9430 -164.164.128.0/20 7633 -164.164.144.0/23 7633 -164.164.149.0/24 7633 -164.164.150.0/24 7633 -164.164.160.0/20 7633 -164.164.240.0/20 7633 -164.165.0.0/17 54885 -164.165.128.0/18 54885 -164.165.192.0/19 54885 -164.165.224.0/20 54885 -164.165.240.0/21 54885 -164.165.248.0/22 54885 -164.165.252.0/23 394217 -164.166.2.0/24 19220 -164.166.17.0/24 19220 -164.166.20.0/24 19220 -164.166.223.0/24 19220 -164.167.0.0/16 5972 -164.168.0.0/23 22773 -164.168.2.0/23 7018 -164.169.0.0/20 1537 -164.169.32.0/20 1537 -164.169.64.0/18 1537 -164.169.144.0/20 1537 -164.169.160.0/20 1537 -164.177.0.0/17 5410 -164.177.128.0/19 15395 -164.177.160.0/21 35170 -164.177.168.0/21 59752 -164.177.176.0/21 43782 -164.177.184.0/21 44568 -164.177.192.0/18 44087 -164.190.0.0/16 27064 -164.191.0.0/16 668 -164.195.0.0/16 3931 -164.196.0.0/21 2621 -164.196.8.0/21 721 -164.196.16.0/20 721 -164.196.32.0/19 721 -164.196.64.0/18 721 -164.196.128.0/17 721 -164.197.0.0/16 721 -164.214.0.0/23 701 -164.214.2.0/24 701 -164.214.3.0/24 27064 -164.214.4.0/22 701 -164.214.8.0/23 701 -164.214.10.0/24 27064 -164.214.11.0/24 701 -164.214.12.0/23 27064 -164.214.14.0/23 701 -164.214.16.0/20 701 -164.214.32.0/19 701 -164.214.64.0/18 701 -164.214.128.0/21 701 -164.214.136.0/24 27064 -164.214.137.0/24 701 -164.214.138.0/24 27064 -164.214.139.0/24 701 -164.214.140.0/22 701 -164.214.144.0/20 701 -164.214.160.0/20 701 -164.214.176.0/21 701 -164.214.184.0/23 701 -164.214.186.0/24 27064 -164.214.187.0/24 701 -164.214.188.0/22 701 -164.214.192.0/21 701 -164.214.200.0/23 701 -164.214.202.0/24 27064 -164.214.203.0/24 701 -164.214.204.0/22 701 -164.214.208.0/20 701 -164.214.224.0/20 701 -164.214.240.0/21 701 -164.214.248.0/23 701 -164.214.250.0/24 701 -164.214.251.0/24 27064 -164.214.252.0/23 701 -164.214.254.0/24 701 -164.214.255.0/24 27064 -164.215.0.0/19 35432 -164.215.32.0/21 49282 -164.215.40.0/21 35753 -164.215.48.0/21 34456 -164.215.56.0/21 57574 -164.215.64.0/24 42773 -164.215.65.0/24 57251 -164.215.66.0/23 57251 -164.215.68.0/24 57251 -164.215.70.0/23 57251 -164.215.72.0/24 29076 -164.215.73.0/24 33962 -164.215.74.0/24 29076 -164.215.80.0/20 12688 -164.215.96.0/21 15723 -164.215.104.0/24 29286 -164.215.106.0/24 39356 -164.215.107.0/24 198381 -164.215.108.0/23 39356 -164.215.110.0/24 39356 -164.215.111.0/24 29286 -164.215.112.0/20 30764 -164.215.128.0/21 41881 -164.215.144.0/20 41881 -164.215.192.0/21 41881 -164.215.204.0/22 41881 -164.215.212.0/22 41881 -164.215.216.0/22 41881 -164.215.220.0/24 41881 -164.215.242.0/23 41881 -164.215.244.0/22 41881 -164.215.248.0/23 41881 -164.216.0.0/16 5180 -164.223.1.0/24 89 -164.223.10.0/24 89 -164.223.71.0/24 89 -164.223.73.0/24 89 -164.223.239.0/24 89 -164.223.250.0/24 89 -164.229.133.0/24 27064 -164.230.0.0/16 721 -164.231.0.0/19 721 -164.231.32.0/20 721 -164.231.48.0/21 721 -164.231.56.0/22 721 -164.231.60.0/22 665 -164.231.64.0/21 665 -164.231.72.0/21 721 -164.231.80.0/20 721 -164.231.96.0/22 721 -164.231.100.0/23 721 -164.231.102.0/24 721 -164.231.103.0/24 665 -164.231.104.0/21 721 -164.231.112.0/20 721 -164.231.128.0/18 665 -164.231.192.0/19 665 -164.231.224.0/20 665 -164.231.240.0/21 665 -164.231.248.0/22 665 -164.231.252.0/22 721 -164.233.0.0/23 721 -164.233.2.0/24 721 -164.233.3.0/24 27064 -164.233.4.0/24 27064 -164.233.5.0/24 721 -164.233.6.0/23 721 -164.233.8.0/24 27064 -164.233.9.0/24 721 -164.233.10.0/23 721 -164.233.12.0/24 27064 -164.233.13.0/24 721 -164.233.14.0/23 721 -164.233.16.0/23 721 -164.233.18.0/24 27064 -164.233.19.0/24 721 -164.233.20.0/24 721 -164.233.21.0/24 27064 -164.233.22.0/23 721 -164.233.24.0/23 27064 -164.233.26.0/23 721 -164.233.28.0/24 27064 -164.233.29.0/24 721 -164.233.30.0/23 721 -164.233.32.0/20 721 -164.233.48.0/21 721 -164.233.56.0/23 721 -164.233.58.0/24 721 -164.233.59.0/24 27064 -164.233.60.0/22 721 -164.233.64.0/19 721 -164.233.96.0/20 721 -164.233.112.0/22 721 -164.233.116.0/24 27064 -164.233.117.0/24 721 -164.233.118.0/23 721 -164.233.120.0/21 721 -164.233.128.0/17 721 -164.234.0.0/18 27064 -164.235.0.0/22 6025 -164.235.4.0/22 27064 -164.235.8.0/22 6025 -164.235.12.0/24 6025 -164.235.13.0/24 367 -164.235.14.0/23 27142 -164.235.16.0/20 6025 -164.235.32.0/21 6025 -164.235.40.0/21 27064 -164.235.48.0/20 6025 -164.235.64.0/21 367 -164.235.72.0/21 27142 -164.235.80.0/20 6025 -164.235.96.0/21 6025 -164.235.104.0/21 300 -164.235.112.0/20 6025 -164.235.128.0/18 6025 -164.235.192.0/19 6025 -164.235.224.0/24 6025 -164.235.225.0/24 721 -164.235.226.0/24 6025 -164.235.227.0/24 27064 -164.235.228.0/22 27064 -164.235.232.0/21 27142 -164.235.240.0/24 367 -164.235.241.0/24 6025 -164.235.242.0/23 6025 -164.235.244.0/22 6025 -164.235.248.0/21 6025 -164.236.0.0/24 27047 -164.236.1.0/24 721 -164.236.2.0/23 27047 -164.236.4.0/23 27047 -164.236.6.0/24 27069 -164.236.7.0/24 27047 -164.236.8.0/21 27047 -164.236.16.0/20 27047 -164.236.32.0/19 27047 -164.236.64.0/21 27047 -164.236.72.0/22 27047 -164.236.76.0/23 27047 -164.236.78.0/24 27047 -164.236.79.0/24 27069 -164.236.80.0/20 27047 -164.236.96.0/19 27047 -164.236.128.0/23 721 -164.236.130.0/23 27047 -164.236.132.0/23 27047 -164.236.134.0/24 721 -164.236.135.0/24 27047 -164.236.136.0/21 721 -164.236.144.0/20 721 -164.236.160.0/24 721 -164.236.161.0/24 27069 -164.236.162.0/23 27047 -164.236.164.0/24 27047 -164.236.165.0/24 27069 -164.236.166.0/23 27069 -164.236.168.0/24 27069 -164.236.169.0/24 27047 -164.236.170.0/24 27069 -164.236.171.0/24 27047 -164.236.172.0/24 27047 -164.236.173.0/24 27069 -164.236.174.0/24 27047 -164.236.175.0/24 27069 -164.236.176.0/24 27069 -164.236.177.0/24 27047 -164.236.178.0/23 27047 -164.236.180.0/22 27047 -164.236.184.0/24 27069 -164.236.185.0/24 27047 -164.236.186.0/23 27047 -164.236.188.0/22 27047 -164.236.192.0/22 721 -164.236.196.0/22 27069 -164.236.200.0/21 721 -164.236.208.0/22 721 -164.236.212.0/23 721 -164.236.214.0/24 721 -164.236.215.0/24 27047 -164.236.216.0/21 721 -164.236.224.0/22 721 -164.236.228.0/22 1541 -164.236.232.0/23 27064 -164.236.234.0/23 721 -164.236.236.0/22 721 -164.236.240.0/21 721 -164.236.248.0/24 27047 -164.236.249.0/24 721 -164.236.250.0/23 721 -164.236.252.0/24 27047 -164.236.253.0/24 721 -164.236.254.0/23 721 -164.248.0.0/19 5972 -164.248.32.0/21 5972 -164.248.40.0/22 5972 -164.248.46.0/23 5972 -164.248.48.0/20 5972 -164.248.64.0/18 5972 -164.248.128.0/17 5972 -164.249.0.0/21 5972 -164.249.8.0/23 5972 -164.249.10.0/24 5972 -164.249.15.0/24 5972 -164.249.17.0/24 5972 -164.249.18.0/23 5972 -164.249.25.0/24 5972 -164.249.38.0/24 5972 -164.249.45.0/24 5972 -164.249.46.0/23 5972 -164.249.48.0/23 5972 -164.249.62.0/23 5972 -164.249.70.0/23 5972 -164.249.81.0/24 5972 -164.249.90.0/24 5972 -164.249.128.0/18 5972 -164.249.192.0/19 5972 -164.249.224.0/20 5972 -164.249.240.0/22 5972 -164.249.244.0/24 5972 -164.249.248.0/22 5972 -164.249.252.0/23 5972 -164.249.255.0/24 5972 -164.250.0.0/19 5972 -164.250.32.0/20 5972 -164.250.54.0/23 5972 -164.250.56.0/22 5972 -164.250.60.0/23 5972 -164.250.97.0/24 5972 -164.250.98.0/23 5972 -164.250.100.0/22 5972 -164.250.104.0/21 5972 -164.250.112.0/20 5972 -164.250.128.0/18 5972 -164.250.207.0/24 5972 -164.250.208.0/21 5972 -164.250.221.0/24 5972 -164.250.222.0/23 5972 -164.250.224.0/19 5972 -164.251.0.0/17 5972 -164.251.128.0/19 5972 -164.251.176.0/20 5972 -164.251.192.0/18 5972 -165.0.0.0/16 37053 -165.1.0.0/16 7297 -165.2.70.0/24 26485 -165.2.72.0/24 26485 -165.2.102.0/23 26485 -165.2.137.0/24 26485 -165.2.138.0/23 26485 -165.2.141.0/24 26485 -165.2.142.0/23 26485 -165.2.145.0/24 26485 -165.2.146.0/24 26485 -165.2.186.0/24 26485 -165.2.202.0/23 26485 -165.2.250.0/24 26485 -165.4.0.0/16 3741 -165.5.1.0/24 37457 -165.5.2.0/24 37457 -165.5.6.0/23 37457 -165.5.12.0/24 37457 -165.6.0.0/17 46512 -165.6.128.0/18 46512 -165.6.192.0/18 3450 -165.8.0.0/14 5713 -165.12.0.0/16 9509 -165.13.0.0/16 3134 -165.14.0.0/16 18271 -165.16.0.0/17 37284 -165.16.128.0/19 37314 -165.16.160.0/19 37049 -165.16.192.0/21 327792 -165.16.200.0/21 327767 -165.16.208.0/20 37721 -165.16.224.0/20 327909 -165.16.240.0/20 327808 -165.19.7.0/24 22527 -165.19.11.0/24 22527 -165.19.12.0/24 22527 -165.19.16.0/23 22527 -165.19.46.0/24 22527 -165.19.69.0/24 22527 -165.19.90.0/23 22527 -165.19.119.0/24 22527 -165.19.128.0/22 22527 -165.19.133.0/24 22527 -165.19.134.0/23 22527 -165.19.136.0/22 22527 -165.19.160.0/22 22527 -165.19.165.0/24 22527 -165.19.176.0/21 22527 -165.19.184.0/22 22527 -165.19.208.0/20 22527 -165.19.224.0/20 22527 -165.19.240.0/21 22527 -165.20.108.0/24 19247 -165.20.111.0/24 19247 -165.21.0.0/20 3758 -165.21.16.0/21 3758 -165.21.24.0/22 9506 -165.21.28.0/23 9506 -165.21.30.0/24 9911 -165.21.31.0/24 9506 -165.21.32.0/19 3758 -165.21.64.0/22 9506 -165.21.68.0/23 9506 -165.21.70.0/23 3758 -165.21.72.0/23 3758 -165.21.74.0/24 3758 -165.21.75.0/24 9506 -165.21.76.0/23 9506 -165.21.78.0/24 9506 -165.21.79.0/24 3758 -165.21.80.0/20 3758 -165.21.96.0/20 3758 -165.21.112.0/21 9506 -165.21.120.0/22 3758 -165.21.124.0/22 9506 -165.21.128.0/22 9506 -165.21.132.0/24 9506 -165.21.133.0/24 3758 -165.21.134.0/23 9506 -165.21.136.0/21 3758 -165.21.144.0/21 3758 -165.21.152.0/23 3758 -165.21.154.0/23 9506 -165.21.156.0/22 3758 -165.21.160.0/19 3758 -165.21.192.0/18 3758 -165.22.0.0/16 14061 -165.24.0.0/16 394917 -165.26.0.0/17 14381 -165.26.128.0/18 14381 -165.26.192.0/20 14381 -165.26.208.0/21 14381 -165.26.224.0/19 14381 -165.27.240.0/21 18933 -165.27.248.0/24 18933 -165.28.0.0/16 13567 -165.29.0.0/16 21852 -165.49.0.0/16 37564 -165.50.0.0/15 37492 -165.56.0.0/13 37154 -165.65.0.0/16 11916 -165.66.0.0/16 2642 -165.68.0.0/16 29885 -165.69.0.0/16 7486 -165.72.0.0/17 2571 -165.72.128.0/18 2571 -165.72.192.0/24 2571 -165.72.193.0/24 19905 -165.72.194.0/23 2571 -165.72.196.0/22 2571 -165.72.200.0/22 2571 -165.72.204.0/23 19905 -165.72.206.0/23 2571 -165.72.208.0/24 2571 -165.72.209.0/24 19905 -165.72.210.0/23 2571 -165.72.212.0/22 2571 -165.72.216.0/21 2571 -165.72.224.0/19 2571 -165.73.0.0/17 37611 -165.73.128.0/22 327791 -165.73.132.0/22 328169 -165.73.136.0/22 37417 -165.73.140.0/22 328172 -165.73.144.0/20 328123 -165.73.160.0/19 37439 -165.73.192.0/19 328188 -165.73.224.0/21 36937 -165.73.232.0/22 328237 -165.73.236.0/22 37449 -165.73.240.0/22 40676 -165.73.244.0/23 40676 -165.73.246.0/24 35913 -165.73.247.0/24 40676 -165.73.248.0/21 40676 -165.74.0.0/20 7018 -165.74.16.0/20 2152 -165.74.32.0/19 7018 -165.74.64.0/18 7018 -165.74.128.0/17 7018 -165.75.0.0/18 63474 -165.75.65.0/24 63474 -165.75.66.0/23 63474 -165.76.0.0/17 4725 -165.76.128.0/17 17676 -165.78.0.0/16 12302 -165.79.0.0/16 14443 -165.82.0.0/16 3777 -165.84.0.0/19 23655 -165.84.32.0/20 45138 -165.84.48.0/20 23655 -165.84.64.0/18 45138 -165.84.128.0/19 9269 -165.84.160.0/19 10103 -165.84.192.0/20 55303 -165.84.208.0/23 31463 -165.84.216.0/21 31463 -165.84.224.0/24 53889 -165.84.225.0/24 6130 -165.84.226.0/23 53889 -165.84.228.0/22 53889 -165.84.232.0/21 133847 -165.84.240.0/21 55303 -165.84.248.0/22 55303 -165.84.252.0/23 55303 -165.84.254.0/24 55303 -165.84.255.0/24 135062 -165.86.40.0/21 63983 -165.86.64.0/23 9650 -165.86.70.0/24 9650 -165.86.71.0/24 63983 -165.86.80.0/24 9650 -165.86.81.0/24 63983 -165.87.0.0/21 7018 -165.87.8.0/22 7018 -165.87.12.0/23 7018 -165.87.14.0/24 7018 -165.87.15.0/24 2685 -165.87.16.0/24 2685 -165.87.17.0/24 7018 -165.87.18.0/23 7018 -165.87.20.0/22 7018 -165.87.24.0/21 7018 -165.87.32.0/21 2688 -165.87.40.0/21 7018 -165.87.48.0/22 7018 -165.87.52.0/22 2688 -165.87.56.0/21 7018 -165.87.64.0/20 2687 -165.87.80.0/20 7018 -165.87.96.0/21 7018 -165.87.104.0/22 7018 -165.87.108.0/22 2688 -165.87.112.0/21 2688 -165.87.120.0/21 7018 -165.87.128.0/17 7018 -165.88.0.0/21 6254 -165.88.8.0/23 940 -165.88.10.0/23 6254 -165.88.12.0/23 6254 -165.88.14.0/24 6254 -165.88.15.0/24 940 -165.88.16.0/22 6254 -165.88.20.0/23 6254 -165.88.22.0/24 6254 -165.88.23.0/24 940 -165.88.24.0/21 6254 -165.88.32.0/21 6254 -165.88.40.0/23 6254 -165.88.42.0/24 6254 -165.88.43.0/24 940 -165.88.44.0/22 6254 -165.88.48.0/20 6254 -165.88.64.0/23 6254 -165.88.66.0/24 940 -165.88.67.0/24 6254 -165.88.68.0/22 6254 -165.88.72.0/21 6254 -165.88.80.0/20 6254 -165.88.96.0/19 6254 -165.88.128.0/18 6254 -165.88.192.0/20 6254 -165.88.208.0/22 6254 -165.88.212.0/24 6254 -165.88.213.0/24 940 -165.88.214.0/23 940 -165.88.216.0/24 940 -165.88.217.0/24 6254 -165.88.218.0/23 6254 -165.88.220.0/22 6254 -165.88.224.0/20 6254 -165.88.240.0/21 6254 -165.88.248.0/23 6254 -165.88.250.0/24 940 -165.88.251.0/24 6254 -165.88.252.0/22 6254 -165.89.0.0/16 7246 -165.90.0.0/19 12556 -165.90.32.0/22 37675 -165.90.50.0/24 37675 -165.90.54.0/23 37675 -165.90.56.0/21 37675 -165.90.64.0/19 37110 -165.90.96.0/19 37517 -165.90.192.0/20 327950 -165.90.208.0/20 36864 -165.90.224.0/20 37546 -165.90.240.0/20 37506 -165.91.0.0/16 3794 -165.93.0.0/16 2907 -165.95.0.0/16 1970 -165.97.0.0/16 14890 -165.98.1.0/24 14754 -165.98.8.0/24 7137 -165.98.9.0/24 14754 -165.98.11.0/24 14754 -165.98.12.0/22 27742 -165.98.16.0/24 263765 -165.98.28.0/24 7137 -165.98.30.0/24 27742 -165.98.32.0/24 52242 -165.98.34.0/24 263765 -165.98.36.0/24 263765 -165.98.38.0/24 27742 -165.98.44.0/23 27811 -165.98.48.0/23 14754 -165.98.52.0/22 28036 -165.98.58.0/24 25607 -165.98.68.0/23 28036 -165.98.70.0/24 28036 -165.98.72.0/22 28036 -165.98.78.0/24 52298 -165.98.96.0/22 27742 -165.98.100.0/24 25607 -165.98.130.0/24 18840 -165.98.132.0/22 27742 -165.98.136.0/22 27742 -165.98.143.0/24 14754 -165.98.144.0/23 14754 -165.98.159.0/24 27742 -165.98.181.0/24 27742 -165.98.219.0/24 28036 -165.98.224.0/24 18840 -165.98.228.0/24 18840 -165.98.233.0/24 262243 -165.98.238.0/24 18840 -165.98.241.0/24 263765 -165.98.242.0/23 263765 -165.98.246.0/24 27742 -165.98.247.0/24 263765 -165.100.0.0/17 10006 -165.100.128.0/18 2519 -165.100.192.0/20 9999 -165.100.208.0/20 10006 -165.100.224.0/19 10006 -165.103.0.0/21 394053 -165.104.0.0/16 26305 -165.106.0.0/16 3795 -165.107.0.0/16 2642 -165.108.0.0/16 4713 -165.109.64.0/20 7926 -165.109.96.0/20 7926 -165.109.128.0/19 7926 -165.109.208.0/22 7926 -165.109.224.0/20 7926 -165.110.0.0/16 4185 -165.111.2.0/23 393248 -165.111.5.0/24 393248 -165.112.0.0/22 3527 -165.112.4.0/23 3527 -165.112.6.0/23 393689 -165.112.8.0/22 393689 -165.112.12.0/22 3527 -165.112.16.0/20 3527 -165.112.32.0/23 30387 -165.112.34.0/23 393689 -165.112.36.0/22 3527 -165.112.40.0/21 3527 -165.112.48.0/20 3527 -165.112.64.0/19 3527 -165.112.96.0/20 3527 -165.112.112.0/21 3527 -165.112.120.0/22 3527 -165.112.124.0/23 30387 -165.112.126.0/24 3527 -165.112.127.0/24 30387 -165.112.128.0/21 3527 -165.112.136.0/22 3527 -165.112.140.0/24 393689 -165.112.141.0/24 3527 -165.112.142.0/23 3527 -165.112.144.0/20 3527 -165.112.160.0/19 3527 -165.112.192.0/23 3527 -165.112.194.0/23 30387 -165.112.196.0/22 3527 -165.112.200.0/22 30387 -165.112.204.0/22 3527 -165.112.208.0/20 3527 -165.112.224.0/20 3527 -165.112.240.0/21 3527 -165.112.248.0/22 3527 -165.112.252.0/23 30387 -165.112.254.0/23 3527 -165.113.0.0/16 4544 -165.115.0.0/16 14014 -165.117.0.0/17 2828 -165.117.128.0/18 2828 -165.117.192.0/19 2828 -165.117.224.0/23 2828 -165.117.226.0/24 2828 -165.117.227.0/24 29874 -165.117.228.0/22 2828 -165.117.232.0/21 2828 -165.117.240.0/20 2828 -165.118.0.0/16 136518 -165.119.0.0/17 2650 -165.119.128.0/18 2650 -165.119.192.0/19 2650 -165.119.224.0/20 2650 -165.119.240.0/21 2650 -165.119.248.0/22 2650 -165.119.252.0/23 2650 -165.119.254.0/24 7046 -165.119.255.0/24 2650 -165.120.0.0/16 2856 -165.121.0.0/16 7029 -165.122.0.0/19 3372 -165.122.32.0/20 3375 -165.122.48.0/20 1672 -165.122.64.0/19 3372 -165.122.96.0/20 3376 -165.122.112.0/20 3372 -165.122.128.0/20 3378 -165.122.144.0/20 3372 -165.122.160.0/19 3372 -165.122.192.0/20 3375 -165.122.208.0/21 3375 -165.122.216.0/22 3375 -165.122.220.0/23 3375 -165.122.222.0/24 3375 -165.122.223.0/24 3372 -165.122.224.0/19 3375 -165.123.0.0/16 55 -165.124.0.0/17 103 -165.124.128.0/19 103 -165.124.160.0/20 103 -165.124.176.0/21 103 -165.124.184.0/22 103 -165.124.188.0/22 29384 -165.124.192.0/19 103 -165.124.224.0/21 103 -165.124.232.0/22 103 -165.124.236.0/22 29384 -165.124.240.0/20 103 -165.125.5.0/24 16875 -165.125.6.0/24 16875 -165.125.11.0/24 16875 -165.125.13.0/24 16875 -165.125.80.0/20 16875 -165.125.100.0/22 16875 -165.125.104.0/23 16875 -165.125.176.0/23 16875 -165.125.178.0/24 16875 -165.125.179.0/24 2905 -165.125.180.0/22 16875 -165.125.185.0/24 16875 -165.125.186.0/24 16875 -165.125.188.0/23 16875 -165.125.190.0/24 16875 -165.125.200.0/23 16875 -165.125.207.0/24 13716 -165.125.208.0/22 13716 -165.125.214.0/24 16875 -165.125.215.0/24 20141 -165.125.224.0/24 13716 -165.127.0.0/18 36081 -165.127.64.0/19 36081 -165.127.96.0/22 36081 -165.127.100.0/24 36081 -165.127.101.0/24 13649 -165.127.102.0/23 36081 -165.127.104.0/21 36081 -165.127.112.0/20 36081 -165.127.128.0/17 36081 -165.128.0.0/16 2381 -165.130.0.0/16 10967 -165.131.79.0/24 31880 -165.131.118.0/23 31880 -165.131.164.0/24 31880 -165.131.171.0/24 31880 -165.131.173.0/24 31880 -165.131.174.0/23 31880 -165.131.182.0/24 31880 -165.131.212.0/24 31880 -165.132.0.0/22 4665 -165.132.4.0/24 4665 -165.132.5.0/24 3786 -165.132.6.0/23 4665 -165.132.8.0/21 4665 -165.132.16.0/23 4665 -165.132.18.0/24 4665 -165.132.19.0/24 4766 -165.132.20.0/22 4665 -165.132.24.0/21 4665 -165.132.32.0/19 4665 -165.132.64.0/18 4665 -165.132.128.0/18 4665 -165.132.192.0/21 4665 -165.132.200.0/24 4665 -165.132.201.0/24 3786 -165.132.202.0/23 3786 -165.132.204.0/22 3786 -165.132.208.0/20 3786 -165.132.224.0/23 3786 -165.132.226.0/23 4766 -165.132.228.0/22 4766 -165.132.232.0/21 3786 -165.132.240.0/21 3786 -165.132.248.0/22 3786 -165.132.252.0/23 3786 -165.132.254.0/24 3786 -165.132.255.0/24 4665 -165.133.0.0/19 4766 -165.133.32.0/22 4766 -165.133.36.0/23 4766 -165.133.38.0/23 4961 -165.133.40.0/24 4961 -165.133.41.0/24 4766 -165.133.42.0/23 4766 -165.133.44.0/22 4766 -165.133.48.0/20 4766 -165.133.128.0/17 4961 -165.134.0.0/16 25969 -165.137.0.0/16 7922 -165.138.0.0/15 11686 -165.141.0.0/18 18322 -165.141.64.0/19 18322 -165.141.96.0/20 18322 -165.141.112.0/20 9761 -165.141.128.0/17 9761 -165.142.240.0/20 9893 -165.143.0.0/18 5734 -165.143.64.0/19 5734 -165.143.96.0/22 37457 -165.143.100.0/22 5734 -165.143.104.0/22 5734 -165.143.108.0/24 5734 -165.143.109.0/24 37251 -165.143.110.0/24 37251 -165.143.111.0/24 5734 -165.143.120.0/22 5734 -165.143.124.0/23 5713 -165.143.126.0/23 5734 -165.143.128.0/20 5734 -165.143.144.0/23 5734 -165.143.146.0/23 5713 -165.143.148.0/22 5734 -165.143.152.0/21 5734 -165.143.160.0/19 5734 -165.143.192.0/19 5734 -165.143.224.0/23 5713 -165.143.226.0/23 5734 -165.143.228.0/22 5734 -165.143.232.0/21 5734 -165.143.240.0/20 5734 -165.144.0.0/17 5713 -165.144.128.0/20 37457 -165.144.144.0/20 5713 -165.144.160.0/19 5713 -165.144.192.0/20 5713 -165.144.208.0/20 37457 -165.144.224.0/20 5713 -165.144.240.0/20 37457 -165.145.0.0/16 5713 -165.146.0.0/15 5713 -165.148.0.0/24 37457 -165.148.1.0/24 5713 -165.148.2.0/23 5713 -165.148.4.0/22 5713 -165.148.8.0/21 5713 -165.148.16.0/21 5713 -165.148.24.0/22 5713 -165.148.28.0/23 5713 -165.148.30.0/24 5734 -165.148.31.0/24 5713 -165.148.32.0/19 5713 -165.148.64.0/24 37457 -165.148.65.0/24 5713 -165.148.66.0/23 5713 -165.148.68.0/22 5713 -165.148.72.0/21 5713 -165.148.80.0/20 5713 -165.148.96.0/19 5713 -165.148.128.0/18 5734 -165.148.192.0/19 5734 -165.148.224.0/23 5713 -165.148.226.0/23 5734 -165.148.228.0/22 5734 -165.148.232.0/21 5734 -165.148.240.0/21 5734 -165.148.248.0/21 5713 -165.149.0.0/16 5713 -165.150.0.0/16 7726 -165.151.0.0/16 4193 -165.152.0.0/16 7792 -165.154.0.0/16 7456 -165.155.0.0/16 21704 -165.156.16.0/24 397215 -165.156.17.0/24 397213 -165.156.18.0/24 397215 -165.156.19.0/24 397213 -165.156.20.0/23 397213 -165.156.22.0/24 397215 -165.156.23.0/24 397213 -165.156.24.0/22 30437 -165.156.28.0/23 30437 -165.156.31.0/24 30437 -165.156.32.0/24 3356 -165.156.33.0/24 30437 -165.156.34.0/24 30437 -165.156.37.0/24 30437 -165.156.38.0/23 30437 -165.156.40.0/24 30437 -165.156.42.0/23 30437 -165.156.44.0/22 30437 -165.156.48.0/21 30437 -165.156.56.0/22 30437 -165.156.132.0/22 32713 -165.156.136.0/22 32713 -165.157.0.0/16 54996 -165.158.0.0/16 3356 -165.160.12.0/22 19574 -165.160.16.0/24 19574 -165.160.20.0/22 32691 -165.160.24.0/23 13649 -165.160.32.0/21 19574 -165.160.40.0/24 32691 -165.160.41.0/24 34922 -165.160.42.0/24 34922 -165.160.48.0/24 32691 -165.161.2.0/23 394700 -165.161.7.0/24 394700 -165.161.8.0/23 394700 -165.161.10.0/23 46093 -165.161.12.0/23 394700 -165.161.16.0/22 394700 -165.161.230.0/23 394700 -165.161.232.0/24 394700 -165.161.239.0/24 394700 -165.165.0.0/18 5713 -165.165.64.0/19 5713 -165.165.96.0/20 5713 -165.165.112.0/20 37457 -165.165.128.0/17 5713 -165.166.0.0/22 2711 -165.166.4.0/24 10279 -165.166.5.0/24 2711 -165.166.6.0/23 2711 -165.166.8.0/22 2711 -165.166.12.0/23 2711 -165.166.14.0/24 2711 -165.166.15.0/24 10279 -165.166.16.0/20 2711 -165.166.32.0/19 2711 -165.166.64.0/23 2711 -165.166.66.0/24 2711 -165.166.67.0/24 12208 -165.166.68.0/22 2711 -165.166.72.0/23 19635 -165.166.74.0/24 19635 -165.166.75.0/24 2711 -165.166.76.0/22 2711 -165.166.80.0/22 2711 -165.166.84.0/23 2711 -165.166.86.0/24 2711 -165.166.87.0/24 19212 -165.166.88.0/22 2711 -165.166.92.0/23 2711 -165.166.94.0/23 19635 -165.166.96.0/23 2711 -165.166.98.0/23 7250 -165.166.100.0/23 2711 -165.166.102.0/23 7250 -165.166.104.0/24 393300 -165.166.105.0/24 2711 -165.166.106.0/23 2711 -165.166.108.0/22 2711 -165.166.112.0/21 2711 -165.166.120.0/24 22524 -165.166.121.0/24 12208 -165.166.122.0/23 2711 -165.166.124.0/23 2711 -165.166.126.0/24 14480 -165.166.127.0/24 2711 -165.166.128.0/21 2711 -165.166.136.0/22 2711 -165.166.140.0/24 2711 -165.166.141.0/24 14615 -165.166.142.0/24 2711 -165.166.143.0/24 12208 -165.166.144.0/23 2711 -165.166.146.0/24 2711 -165.166.147.0/24 12208 -165.166.148.0/23 2711 -165.166.150.0/24 2711 -165.166.151.0/24 19635 -165.166.152.0/21 12208 -165.166.160.0/21 2711 -165.166.168.0/23 2711 -165.166.170.0/23 14480 -165.166.172.0/23 40641 -165.166.174.0/23 18671 -165.166.176.0/22 2711 -165.166.180.0/23 2711 -165.166.182.0/24 2711 -165.166.183.0/24 6167 -165.166.184.0/21 2711 -165.166.192.0/22 2711 -165.166.196.0/22 23118 -165.166.200.0/21 2711 -165.166.208.0/24 2711 -165.166.209.0/24 19635 -165.166.210.0/24 393749 -165.166.211.0/24 10279 -165.166.212.0/24 2711 -165.166.213.0/24 7250 -165.166.214.0/24 7250 -165.166.215.0/24 2711 -165.166.216.0/23 2711 -165.166.218.0/24 395437 -165.166.219.0/24 2711 -165.166.220.0/24 19635 -165.166.221.0/24 2711 -165.166.222.0/23 2711 -165.166.224.0/24 12208 -165.166.225.0/24 2711 -165.166.226.0/23 2711 -165.166.228.0/23 2711 -165.166.230.0/24 10279 -165.166.231.0/24 2711 -165.166.232.0/24 7250 -165.166.233.0/24 10279 -165.166.234.0/24 2711 -165.166.235.0/24 10279 -165.166.236.0/22 2711 -165.166.240.0/22 14615 -165.166.244.0/23 2711 -165.166.246.0/24 14615 -165.166.247.0/24 2711 -165.166.248.0/22 2711 -165.166.252.0/24 14615 -165.166.253.0/24 2711 -165.166.254.0/23 2711 -165.169.0.0/16 37002 -165.170.0.0/16 5647 -165.171.200.0/24 46277 -165.171.216.0/24 46277 -165.171.224.0/23 46277 -165.171.240.0/24 46277 -165.173.64.0/20 6461 -165.173.96.0/23 15164 -165.173.128.0/20 2639 -165.173.191.0/24 139006 -165.173.222.0/23 15164 -165.173.232.0/23 15164 -165.174.0.0/16 36092 -165.176.0.0/16 7046 -165.180.4.0/24 27435 -165.180.8.0/21 27435 -165.180.24.0/21 27435 -165.180.32.0/21 27435 -165.180.136.0/21 27435 -165.180.144.0/21 27435 -165.180.160.0/20 27435 -165.180.176.0/22 27435 -165.180.180.0/24 27435 -165.180.183.0/24 27435 -165.180.184.0/21 44568 -165.180.200.0/24 27435 -165.180.232.0/21 27435 -165.180.240.0/22 132084 -165.180.248.0/21 27435 -165.181.254.0/23 36351 -165.182.0.0/16 52226 -165.183.92.0/23 61492 -165.183.96.0/24 61492 -165.183.98.0/24 61492 -165.183.102.0/23 52497 -165.183.106.0/24 52497 -165.183.108.0/24 52497 -165.183.130.0/24 22011 -165.183.160.0/21 2386 -165.183.168.0/21 11409 -165.184.76.0/23 1761 -165.184.94.0/24 1761 -165.186.0.0/16 4668 -165.187.0.0/16 134369 -165.189.0.0/16 3136 -165.190.0.0/16 8122 -165.191.0.0/16 9555 -165.192.64.0/18 36351 -165.193.0.0/20 3561 -165.193.16.0/23 3561 -165.193.18.0/24 27385 -165.193.19.0/24 3561 -165.193.20.0/22 3561 -165.193.24.0/21 3561 -165.193.32.0/20 3561 -165.193.48.0/23 3561 -165.193.50.0/24 3561 -165.193.51.0/24 16789 -165.193.52.0/22 3561 -165.193.56.0/22 3561 -165.193.60.0/23 16919 -165.193.62.0/23 3561 -165.193.64.0/21 3561 -165.193.72.0/23 3561 -165.193.74.0/24 3561 -165.193.75.0/24 40695 -165.193.76.0/22 3561 -165.193.80.0/20 3561 -165.193.96.0/19 3561 -165.193.128.0/22 3561 -165.193.132.0/23 3561 -165.193.134.0/24 63265 -165.193.135.0/24 3561 -165.193.136.0/21 3561 -165.193.144.0/20 3561 -165.193.160.0/20 3561 -165.193.176.0/21 3561 -165.193.184.0/22 3561 -165.193.188.0/24 3561 -165.193.189.0/24 395505 -165.193.190.0/23 3561 -165.193.192.0/19 3561 -165.193.224.0/21 3561 -165.193.232.0/24 393655 -165.193.233.0/24 3561 -165.193.234.0/23 3561 -165.193.236.0/22 3561 -165.193.240.0/21 3561 -165.193.248.0/23 3561 -165.193.250.0/24 397440 -165.193.251.0/24 3561 -165.193.252.0/22 3561 -165.194.0.0/17 17575 -165.194.128.0/18 18302 -165.194.192.0/18 17575 -165.196.0.0/16 2152 -165.197.64.0/22 56043 -165.197.72.0/24 22460 -165.197.74.0/23 22460 -165.197.96.0/22 22460 -165.197.100.0/23 22460 -165.197.108.0/22 22460 -165.197.112.0/23 22460 -165.197.180.0/24 22460 -165.197.182.0/23 22460 -165.197.216.0/21 56043 -165.199.0.0/16 33132 -165.200.0.0/16 22809 -165.201.0.0/16 3446 -165.202.0.0/16 17759 -165.204.2.0/23 33619 -165.204.10.0/23 33619 -165.204.14.0/23 33619 -165.204.18.0/23 33619 -165.204.24.0/23 33619 -165.204.52.0/22 33619 -165.204.66.0/23 33619 -165.204.68.0/24 33619 -165.204.72.0/21 33619 -165.204.80.0/20 33619 -165.204.100.0/23 33619 -165.204.132.0/22 33619 -165.204.140.0/23 33619 -165.204.152.0/21 33619 -165.204.160.0/22 33619 -165.206.0.0/16 6122 -165.207.0.0/23 25733 -165.207.32.0/21 210137 -165.207.64.0/21 138481 -165.208.0.0/16 18522 -165.210.0.0/15 15964 -165.212.0.0/18 14454 -165.212.64.0/19 14454 -165.212.96.0/23 14454 -165.212.98.0/23 36351 -165.212.100.0/22 14454 -165.212.104.0/21 14454 -165.212.112.0/20 14454 -165.212.128.0/18 14454 -165.212.192.0/19 14454 -165.212.224.0/20 14454 -165.212.240.0/23 36351 -165.212.242.0/23 14454 -165.212.244.0/22 14454 -165.212.248.0/21 14454 -165.213.0.0/16 6619 -165.214.4.0/24 14626 -165.214.11.0/24 14626 -165.214.12.0/24 14626 -165.214.14.0/24 14626 -165.214.32.0/22 14626 -165.214.36.0/23 14626 -165.214.40.0/23 14626 -165.214.42.0/24 14626 -165.214.63.0/24 14626 -165.214.64.0/22 14626 -165.214.68.0/23 14626 -165.215.0.0/17 1975 -165.215.128.0/19 1975 -165.215.160.0/24 53392 -165.215.161.0/24 1975 -165.215.162.0/23 1975 -165.215.164.0/22 20955 -165.215.168.0/23 53392 -165.215.170.0/23 1975 -165.215.172.0/22 1975 -165.215.176.0/20 1975 -165.215.192.0/18 40675 -165.216.244.0/24 1678 -165.216.246.0/23 1678 -165.216.248.0/24 1678 -165.219.0.0/16 3136 -165.220.0.0/17 3550 -165.220.128.0/18 3550 -165.220.192.0/19 3550 -165.220.224.0/21 3550 -165.220.232.0/21 136961 -165.220.240.0/21 3550 -165.220.250.0/24 3550 -165.221.0.0/16 4152 -165.222.56.0/23 8883 -165.222.180.0/23 8883 -165.222.184.0/22 8883 -165.223.255.0/24 19902 -165.224.128.0/23 6223 -165.224.130.0/23 6224 -165.224.132.0/24 6224 -165.224.134.0/24 6223 -165.224.204.0/23 10753 -165.224.245.0/24 701 -165.225.0.0/20 22616 -165.225.16.0/23 62044 -165.225.18.0/23 22616 -165.225.20.0/23 62044 -165.225.22.0/23 22616 -165.225.24.0/21 62044 -165.225.32.0/19 22616 -165.225.64.0/24 62044 -165.225.65.0/24 22616 -165.225.66.0/24 62044 -165.225.67.0/24 22616 -165.225.68.0/24 62044 -165.225.69.0/24 22616 -165.225.70.0/23 62044 -165.225.72.0/21 62044 -165.225.80.0/21 62044 -165.225.88.0/23 62044 -165.225.90.0/23 22616 -165.225.92.0/22 62044 -165.225.96.0/23 22616 -165.225.98.0/24 53813 -165.225.99.0/24 22616 -165.225.100.0/23 22616 -165.225.102.0/24 53813 -165.225.103.0/24 22616 -165.225.104.0/22 53813 -165.225.108.0/23 22616 -165.225.110.0/23 53813 -165.225.112.0/22 53813 -165.225.116.0/23 53813 -165.225.118.0/24 53813 -165.225.119.0/24 22616 -165.225.120.0/21 22616 -165.225.128.0/20 26464 -165.225.144.0/21 26464 -165.225.160.0/19 26464 -165.225.192.0/22 62044 -165.225.196.0/23 62044 -165.225.198.0/23 22616 -165.225.200.0/23 62044 -165.225.202.0/23 22616 -165.225.204.0/23 5511 -165.225.206.0/23 62044 -165.225.208.0/20 22616 -165.225.224.0/23 22616 -165.225.226.0/23 53813 -165.225.228.0/22 22616 -165.225.232.0/21 22616 -165.225.240.0/23 62044 -165.225.242.0/23 22616 -165.225.244.0/22 22616 -165.225.248.0/21 22616 -165.226.78.0/24 55002 -165.227.0.0/16 14061 -165.228.0.0/16 1221 -165.229.0.0/16 23980 -165.230.0.0/16 46 -165.231.0.0/24 61072 -165.231.2.0/23 57972 -165.231.4.0/24 57858 -165.231.5.0/24 41564 -165.231.6.0/24 57858 -165.231.7.0/24 41564 -165.231.9.0/24 57858 -165.231.10.0/24 64435 -165.231.12.0/23 57858 -165.231.14.0/24 204353 -165.231.17.0/24 204353 -165.231.18.0/24 204353 -165.231.20.0/24 57858 -165.231.22.0/24 204353 -165.231.24.0/24 57858 -165.231.26.0/24 204353 -165.231.32.0/24 57858 -165.231.33.0/24 41564 -165.231.34.0/24 41564 -165.231.37.0/24 204353 -165.231.40.0/24 41146 -165.231.45.0/24 57858 -165.231.49.0/24 52219 -165.231.50.0/23 52219 -165.231.52.0/24 52219 -165.231.54.0/24 58065 -165.231.64.0/23 48950 -165.231.66.0/24 48950 -165.231.67.0/24 58065 -165.231.80.0/22 57858 -165.231.84.0/24 57858 -165.231.85.0/24 41564 -165.231.86.0/24 57858 -165.231.90.0/24 57858 -165.231.92.0/24 57858 -165.231.93.0/24 58065 -165.231.94.0/24 41564 -165.231.95.0/24 57858 -165.231.96.0/24 41564 -165.231.97.0/24 41204 -165.231.98.0/24 41204 -165.231.99.0/24 41564 -165.231.100.0/22 41564 -165.231.105.0/24 41564 -165.231.108.0/23 41564 -165.231.112.0/24 50304 -165.231.120.0/23 58065 -165.231.128.0/23 57858 -165.231.130.0/24 58065 -165.231.131.0/24 57858 -165.231.132.0/24 57858 -165.231.133.0/24 58065 -165.231.142.0/24 57858 -165.231.144.0/24 58065 -165.231.145.0/24 48950 -165.231.146.0/23 48950 -165.231.148.0/24 61133 -165.231.150.0/23 204353 -165.231.152.0/22 204353 -165.231.160.0/24 47536 -165.231.161.0/24 58065 -165.231.162.0/23 47536 -165.231.164.0/22 47536 -165.231.168.0/23 47536 -165.231.171.0/24 64435 -165.231.172.0/22 64435 -165.231.176.0/23 64435 -165.231.178.0/24 64435 -165.231.180.0/22 64435 -165.231.184.0/22 64435 -165.231.190.0/23 41204 -165.231.193.0/24 41204 -165.231.194.0/23 41204 -165.231.197.0/24 41204 -165.231.198.0/23 41204 -165.231.200.0/23 41204 -165.231.202.0/24 41204 -165.231.208.0/23 63119 -165.231.210.0/24 41146 -165.231.212.0/24 41204 -165.231.224.0/24 57858 -165.231.234.0/24 41564 -165.231.248.0/23 41564 -165.231.250.0/24 57858 -165.231.251.0/24 41564 -165.231.252.0/23 41564 -165.231.254.0/24 58065 -165.231.255.0/24 41146 -165.232.0.0/19 22255 -165.232.192.0/21 22255 -165.232.200.0/24 21965 -165.232.201.0/24 22255 -165.232.202.0/23 22255 -165.232.204.0/22 22255 -165.232.208.0/20 22255 -165.232.224.0/24 21965 -165.232.225.0/24 22255 -165.232.226.0/23 22255 -165.232.228.0/22 22255 -165.232.232.0/21 22255 -165.232.240.0/20 22255 -165.233.0.0/16 7020 -165.234.0.0/22 6263 -165.234.4.0/24 6263 -165.234.5.0/24 19530 -165.234.6.0/23 19530 -165.234.8.0/24 19530 -165.234.9.0/24 6263 -165.234.10.0/24 6263 -165.234.11.0/24 19530 -165.234.12.0/24 6263 -165.234.13.0/24 19530 -165.234.14.0/23 19530 -165.234.16.0/22 19530 -165.234.20.0/24 19530 -165.234.21.0/24 6263 -165.234.22.0/23 19530 -165.234.24.0/21 19530 -165.234.32.0/20 19530 -165.234.48.0/20 6263 -165.234.64.0/22 19530 -165.234.68.0/23 19530 -165.234.70.0/24 19530 -165.234.71.0/24 6263 -165.234.72.0/21 19530 -165.234.80.0/20 19530 -165.234.96.0/19 19530 -165.234.128.0/21 6263 -165.234.136.0/21 19530 -165.234.144.0/20 19530 -165.234.160.0/22 19530 -165.234.164.0/23 19530 -165.234.166.0/23 6263 -165.234.168.0/21 6263 -165.234.176.0/22 6263 -165.234.180.0/22 19530 -165.234.184.0/22 19530 -165.234.188.0/22 6263 -165.234.192.0/23 19530 -165.234.194.0/23 6263 -165.234.196.0/22 19530 -165.234.200.0/21 19530 -165.234.208.0/20 6263 -165.234.224.0/19 19530 -165.235.0.0/16 1226 -165.236.0.0/18 3356 -165.236.64.0/19 3356 -165.236.96.0/21 3356 -165.236.128.0/19 3356 -165.236.160.0/20 3356 -165.236.176.0/21 3356 -165.236.184.0/23 11915 -165.236.192.0/22 3549 -165.236.224.0/20 3356 -165.236.240.0/20 18687 -165.237.0.0/16 3456 -165.239.0.0/16 11663 -165.241.0.0/16 4713 -165.242.0.0/16 2506 -165.243.0.0/19 4668 -165.243.32.0/24 4668 -165.243.33.0/24 3786 -165.243.34.0/23 3786 -165.243.36.0/22 3786 -165.243.40.0/23 3786 -165.243.42.0/23 4668 -165.243.44.0/22 4668 -165.243.48.0/20 4668 -165.243.64.0/19 4668 -165.243.96.0/22 4668 -165.243.100.0/24 4668 -165.243.101.0/24 3786 -165.243.102.0/23 4668 -165.243.104.0/21 4668 -165.243.112.0/20 4668 -165.243.128.0/19 4668 -165.243.160.0/23 4668 -165.243.162.0/24 4668 -165.243.163.0/24 3786 -165.243.164.0/22 4668 -165.243.168.0/21 4668 -165.243.176.0/22 4668 -165.243.180.0/23 3786 -165.243.182.0/23 4668 -165.243.184.0/21 4668 -165.243.192.0/20 4668 -165.243.208.0/21 4668 -165.243.216.0/22 4668 -165.243.220.0/23 3786 -165.243.222.0/24 4668 -165.243.223.0/24 3786 -165.243.224.0/24 4668 -165.243.225.0/24 3786 -165.243.226.0/24 3786 -165.243.227.0/24 4668 -165.243.228.0/22 4668 -165.243.232.0/21 4668 -165.243.240.0/21 4668 -165.243.248.0/23 4668 -165.243.250.0/24 4668 -165.243.251.0/24 3786 -165.243.252.0/24 3786 -165.243.253.0/24 4668 -165.243.254.0/23 4668 -165.244.0.0/16 4668 -165.246.0.0/16 9317 -165.247.0.0/16 7029 -165.248.0.0/16 25640 -165.249.0.0/23 19512 -165.250.0.0/16 2824 -165.251.8.0/21 27495 -165.251.16.0/21 27495 -165.251.24.0/24 6524 -165.251.25.0/24 27495 -165.251.28.0/22 6468 -165.251.32.0/20 27495 -165.251.48.0/21 6468 -165.251.56.0/22 6468 -165.251.64.0/21 6468 -165.251.80.0/22 6468 -165.251.100.0/24 27495 -165.251.160.0/23 6468 -165.251.164.0/23 6468 -165.251.168.0/22 6468 -165.251.192.0/24 26704 -165.251.195.0/24 26704 -165.251.208.0/24 6468 -165.252.0.0/16 7018 -165.253.34.0/23 63138 -165.253.40.0/24 54152 -165.253.42.0/24 63138 -165.253.43.0/24 63174 -165.253.64.0/23 63174 -165.253.102.0/24 15073 -165.253.106.0/24 15073 -165.253.135.0/24 63138 -165.253.146.0/24 54152 -165.254.0.0/23 2914 -165.254.2.0/24 20940 -165.254.3.0/24 2914 -165.254.4.0/23 27486 -165.254.6.0/24 2914 -165.254.7.0/24 54750 -165.254.8.0/24 20940 -165.254.9.0/24 2914 -165.254.10.0/23 54750 -165.254.12.0/22 2914 -165.254.16.0/22 2914 -165.254.20.0/24 22687 -165.254.21.0/24 2914 -165.254.22.0/23 2914 -165.254.24.0/22 2914 -165.254.28.0/24 2914 -165.254.29.0/24 20940 -165.254.30.0/24 63303 -165.254.31.0/24 198018 -165.254.32.0/23 20940 -165.254.34.0/23 2914 -165.254.36.0/22 2914 -165.254.40.0/23 20940 -165.254.42.0/23 2914 -165.254.44.0/23 20940 -165.254.46.0/24 63306 -165.254.47.0/24 20940 -165.254.48.0/23 2914 -165.254.50.0/23 20940 -165.254.52.0/24 20940 -165.254.53.0/24 26965 -165.254.54.0/24 18646 -165.254.55.0/24 2914 -165.254.56.0/22 2914 -165.254.60.0/23 2914 -165.254.62.0/24 397677 -165.254.63.0/24 2914 -165.254.64.0/20 22691 -165.254.80.0/23 2914 -165.254.82.0/24 2914 -165.254.83.0/24 46922 -165.254.84.0/22 11168 -165.254.88.0/23 30103 -165.254.90.0/23 17330 -165.254.92.0/22 20940 -165.254.96.0/24 2914 -165.254.97.0/24 22691 -165.254.98.0/24 22691 -165.254.99.0/24 35994 -165.254.100.0/24 7767 -165.254.101.0/24 22691 -165.254.102.0/23 2914 -165.254.104.0/24 32799 -165.254.105.0/24 2914 -165.254.106.0/24 2914 -165.254.107.0/24 20940 -165.254.108.0/22 2914 -165.254.112.0/22 2914 -165.254.116.0/24 2914 -165.254.117.0/24 393490 -165.254.118.0/23 2914 -165.254.120.0/24 22691 -165.254.121.0/24 2914 -165.254.122.0/24 46168 -165.254.123.0/24 2914 -165.254.124.0/24 2914 -165.254.125.0/24 36498 -165.254.126.0/24 2914 -165.254.127.0/24 20940 -165.254.128.0/23 2914 -165.254.130.0/24 40704 -165.254.131.0/24 2914 -165.254.132.0/23 20940 -165.254.134.0/23 2914 -165.254.136.0/23 2914 -165.254.138.0/23 20940 -165.254.140.0/24 20940 -165.254.141.0/24 2914 -165.254.142.0/23 2914 -165.254.144.0/23 2914 -165.254.146.0/24 2914 -165.254.147.0/24 22691 -165.254.148.0/23 2914 -165.254.150.0/24 20940 -165.254.151.0/24 395371 -165.254.152.0/23 394437 -165.254.154.0/24 62668 -165.254.155.0/24 2914 -165.254.156.0/22 2914 -165.254.160.0/23 174 -165.254.162.0/24 2914 -165.254.163.0/24 97 -165.254.164.0/24 97 -165.254.165.0/24 2914 -165.254.166.0/24 63303 -165.254.167.0/24 36498 -165.254.168.0/23 2914 -165.254.170.0/24 174 -165.254.171.0/24 2914 -165.254.172.0/24 2914 -165.254.173.0/24 174 -165.254.174.0/23 2914 -165.254.176.0/24 174 -165.254.177.0/24 64233 -165.254.178.0/23 2914 -165.254.180.0/24 394674 -165.254.181.0/24 2914 -165.254.182.0/23 12119 -165.254.184.0/23 12119 -165.254.186.0/24 2914 -165.254.187.0/24 395423 -165.254.188.0/23 394722 -165.254.190.0/23 2914 -165.254.192.0/22 19893 -165.254.196.0/23 2914 -165.254.198.0/24 393259 -165.254.199.0/24 32388 -165.254.200.0/22 2914 -165.254.204.0/23 20940 -165.254.206.0/23 2914 -165.254.208.0/21 2914 -165.254.216.0/23 18683 -165.254.218.0/23 2914 -165.254.220.0/23 2914 -165.254.222.0/24 19893 -165.254.223.0/24 2914 -165.254.224.0/24 2914 -165.254.225.0/24 15562 -165.254.226.0/23 2914 -165.254.228.0/22 2914 -165.254.232.0/24 63306 -165.254.233.0/24 22687 -165.254.234.0/23 2914 -165.254.236.0/22 2914 -165.254.240.0/23 2914 -165.254.242.0/24 22633 -165.254.243.0/24 2914 -165.254.244.0/22 2914 -165.254.248.0/22 54963 -165.254.252.0/24 174 -165.254.253.0/24 30640 -165.254.254.0/24 174 -165.254.255.0/24 2914 -165.255.0.0/16 37611 -166.0.0.0/15 11798 -166.2.0.0/15 4152 -166.4.0.0/14 4152 -166.16.0.0/16 206 -166.19.0.0/17 206 -166.19.128.0/18 206 -166.19.192.0/21 206 -166.19.200.0/24 206 -166.19.201.0/24 19271 -166.19.202.0/24 19271 -166.19.203.0/24 206 -166.19.204.0/22 206 -166.19.208.0/20 206 -166.19.224.0/19 206 -166.20.0.0/16 7834 -166.21.8.0/23 6075 -166.21.12.0/24 6075 -166.21.21.0/24 6075 -166.21.28.0/24 6075 -166.21.32.0/23 6075 -166.21.35.0/24 6075 -166.21.36.0/23 6075 -166.21.43.0/24 6075 -166.21.45.0/24 6075 -166.21.50.0/24 6075 -166.21.56.0/24 6075 -166.21.59.0/24 6075 -166.21.61.0/24 6075 -166.21.62.0/23 6075 -166.21.64.0/23 6075 -166.21.68.0/24 6075 -166.21.100.0/24 6075 -166.21.130.0/23 6075 -166.21.248.0/21 6075 -166.23.5.0/24 6075 -166.23.11.0/24 6075 -166.23.12.0/23 6075 -166.23.17.0/24 6075 -166.23.18.0/24 6075 -166.23.25.0/24 6075 -166.23.26.0/24 6075 -166.23.30.0/24 6075 -166.23.33.0/24 6075 -166.23.34.0/23 6075 -166.23.36.0/23 6075 -166.23.39.0/24 6075 -166.23.40.0/24 6075 -166.23.43.0/24 6075 -166.23.44.0/24 6075 -166.23.50.0/24 6075 -166.23.53.0/24 6075 -166.23.56.0/23 6075 -166.23.73.0/24 6075 -166.23.74.0/24 6075 -166.23.78.0/24 6075 -166.23.85.0/24 6075 -166.23.87.0/24 6075 -166.23.100.0/24 6075 -166.23.129.0/24 6075 -166.23.130.0/24 6075 -166.23.132.0/24 6075 -166.23.134.0/23 6075 -166.23.136.0/23 6075 -166.23.143.0/24 6075 -166.23.144.0/23 6075 -166.23.146.0/24 6075 -166.23.149.0/24 6075 -166.23.151.0/24 6075 -166.23.248.0/21 6075 -166.25.14.0/24 6075 -166.25.20.0/24 6075 -166.25.23.0/24 6075 -166.25.25.0/24 6075 -166.25.28.0/24 6075 -166.25.30.0/23 6075 -166.25.33.0/24 6075 -166.25.35.0/24 6075 -166.25.38.0/24 6075 -166.25.52.0/24 6075 -166.25.54.0/24 6075 -166.25.56.0/24 6075 -166.25.77.0/24 6075 -166.25.100.0/23 6075 -166.25.130.0/24 6075 -166.25.192.0/23 6075 -166.25.200.0/23 6075 -166.25.211.0/24 6075 -166.25.212.0/23 6075 -166.32.0.0/19 3372 -166.32.32.0/20 3371 -166.32.48.0/20 3372 -166.32.64.0/18 3371 -166.32.128.0/19 3372 -166.32.160.0/20 3372 -166.32.176.0/20 3371 -166.32.192.0/19 3371 -166.32.224.0/20 3371 -166.32.240.0/20 3372 -166.33.0.0/17 3372 -166.33.128.0/19 3371 -166.33.160.0/19 3372 -166.33.192.0/20 3372 -166.33.208.0/20 3371 -166.33.224.0/19 3371 -166.34.0.0/18 3371 -166.34.64.0/18 3378 -166.34.128.0/17 3372 -166.35.0.0/17 3371 -166.35.128.0/17 3372 -166.36.0.0/19 3372 -166.36.32.0/19 3371 -166.36.64.0/20 3371 -166.36.80.0/20 3372 -166.36.96.0/19 3371 -166.36.128.0/17 3371 -166.37.0.0/18 3372 -166.37.64.0/19 3371 -166.37.96.0/19 3372 -166.37.128.0/18 3371 -166.37.192.0/24 3371 -166.37.193.0/24 3375 -166.37.194.0/23 3375 -166.37.196.0/22 3375 -166.37.200.0/21 3375 -166.37.208.0/20 3375 -166.37.224.0/23 3371 -166.37.226.0/23 3375 -166.37.228.0/22 3375 -166.37.232.0/21 3375 -166.37.240.0/20 3375 -166.38.0.0/19 3371 -166.38.32.0/22 3371 -166.38.36.0/23 3371 -166.38.38.0/24 3372 -166.38.39.0/24 3371 -166.38.40.0/21 3371 -166.38.48.0/22 3371 -166.38.52.0/23 3372 -166.38.54.0/23 3371 -166.38.56.0/21 3371 -166.38.64.0/21 3371 -166.38.72.0/22 3371 -166.38.76.0/22 3372 -166.38.80.0/20 3371 -166.38.96.0/19 3378 -166.38.128.0/22 3371 -166.38.132.0/23 3378 -166.38.134.0/24 3371 -166.38.135.0/24 3378 -166.38.136.0/23 3378 -166.38.138.0/24 3378 -166.38.139.0/24 3371 -166.38.140.0/22 3371 -166.38.144.0/20 3371 -166.38.160.0/20 3372 -166.38.176.0/24 3372 -166.38.177.0/24 3371 -166.38.178.0/23 3372 -166.38.180.0/22 3372 -166.38.184.0/22 3371 -166.38.188.0/22 3372 -166.38.192.0/19 3372 -166.38.224.0/20 3372 -166.38.240.0/20 3371 -166.39.0.0/20 3372 -166.39.16.0/20 3371 -166.39.32.0/19 3371 -166.39.64.0/19 3372 -166.39.96.0/20 3371 -166.39.112.0/22 3371 -166.39.116.0/22 3372 -166.39.120.0/21 3372 -166.39.128.0/19 3372 -166.39.160.0/19 3371 -166.39.192.0/20 3371 -166.39.208.0/20 3372 -166.39.224.0/19 3371 -166.40.0.0/18 3371 -166.40.64.0/19 3371 -166.40.96.0/20 3371 -166.40.112.0/20 3372 -166.40.128.0/19 3371 -166.40.160.0/24 3371 -166.40.161.0/24 3372 -166.40.162.0/23 3372 -166.40.164.0/22 3372 -166.40.168.0/24 3371 -166.40.169.0/24 3372 -166.40.170.0/23 3371 -166.40.172.0/23 3372 -166.40.174.0/23 3371 -166.40.176.0/20 3371 -166.40.192.0/20 3371 -166.40.208.0/21 3371 -166.40.216.0/21 3372 -166.40.224.0/19 3371 -166.41.0.0/20 3371 -166.41.16.0/20 3372 -166.41.32.0/19 3372 -166.41.64.0/18 3371 -166.41.128.0/20 3371 -166.41.144.0/20 3372 -166.41.160.0/19 3372 -166.41.192.0/20 3372 -166.41.208.0/20 3371 -166.41.224.0/19 3371 -166.42.0.0/15 3371 -166.44.0.0/17 3371 -166.44.128.0/18 3371 -166.44.192.0/19 3371 -166.44.224.0/20 3371 -166.44.240.0/23 3377 -166.44.242.0/23 3371 -166.44.244.0/22 3371 -166.44.248.0/21 3371 -166.45.0.0/16 3371 -166.46.0.0/18 3371 -166.46.64.0/19 3371 -166.46.96.0/20 3371 -166.46.112.0/20 3372 -166.46.128.0/19 3371 -166.46.160.0/19 3372 -166.46.192.0/20 3372 -166.46.208.0/20 3371 -166.46.224.0/20 3372 -166.46.240.0/20 3371 -166.47.0.0/17 3371 -166.47.128.0/20 3371 -166.47.144.0/20 3372 -166.47.160.0/20 3372 -166.47.176.0/20 3371 -166.47.192.0/19 3371 -166.47.224.0/20 3371 -166.47.240.0/20 3372 -166.48.0.0/17 22423 -166.48.128.0/20 22423 -166.48.144.0/21 22423 -166.48.156.0/23 396338 -166.48.158.0/23 22423 -166.48.160.0/24 22923 -166.48.162.0/23 22423 -166.48.188.0/24 22923 -166.48.192.0/18 22423 -166.49.0.0/17 3561 -166.49.128.0/17 5400 -166.50.0.0/18 3371 -166.50.64.0/20 3371 -166.50.80.0/20 3372 -166.50.96.0/19 3371 -166.50.128.0/17 3371 -166.56.0.0/19 3371 -166.56.32.0/19 3372 -166.56.64.0/18 3372 -166.56.128.0/18 3371 -166.56.192.0/19 3371 -166.56.224.0/20 3371 -166.56.240.0/21 3371 -166.56.248.0/23 3372 -166.56.250.0/23 3371 -166.56.252.0/22 3371 -166.57.0.0/16 19554 -166.58.0.0/19 3377 -166.58.32.0/20 3377 -166.58.48.0/20 3371 -166.58.64.0/18 3371 -166.58.128.0/20 3372 -166.58.144.0/20 3371 -166.58.160.0/19 3371 -166.58.192.0/19 3371 -166.58.224.0/20 3372 -166.58.240.0/21 3371 -166.58.248.0/21 3372 -166.59.1.0/24 5586 -166.61.192.0/20 17373 -166.61.224.0/20 17373 -166.61.247.0/24 18573 -166.62.0.0/17 26496 -166.62.128.0/17 5769 -166.63.0.0/17 46606 -166.63.128.0/19 3561 -166.63.160.0/19 1273 -166.63.192.0/19 1273 -166.63.224.0/20 54706 -166.63.240.0/20 33695 -166.64.0.0/22 58681 -166.64.4.0/23 10223 -166.64.13.0/24 58681 -166.64.14.0/24 58681 -166.64.20.0/22 58681 -166.64.30.0/24 58681 -166.64.40.0/24 58681 -166.64.100.0/24 58681 -166.65.11.0/24 38495 -166.65.16.0/20 38495 -166.65.180.0/23 38495 -166.65.184.0/21 38495 -166.65.192.0/21 38495 -166.66.0.0/17 22192 -166.66.128.0/18 22192 -166.66.192.0/21 22192 -166.66.200.0/23 22192 -166.66.202.0/24 14877 -166.66.203.0/24 22192 -166.66.204.0/22 22192 -166.66.208.0/20 22192 -166.66.224.0/19 22192 -166.67.0.0/17 7046 -166.67.128.0/19 7046 -166.67.160.0/19 42473 -166.67.192.0/18 7046 -166.69.0.0/16 19773 -166.70.0.0/16 6315 -166.72.0.0/16 7018 -166.73.0.0/23 6318 -166.73.2.0/24 6318 -166.73.6.0/23 6318 -166.73.10.0/23 6318 -166.73.12.0/22 6318 -166.73.16.0/24 6318 -166.73.37.0/24 6318 -166.73.92.0/23 6318 -166.73.102.0/23 6318 -166.73.156.0/24 26144 -166.75.0.0/16 16629 -166.76.0.0/23 1350 -166.76.2.0/24 1350 -166.76.6.0/24 1350 -166.76.246.0/24 13507 -166.76.252.0/22 13507 -166.77.0.0/23 7256 -166.77.3.0/24 7256 -166.77.4.0/24 7256 -166.77.6.0/24 7256 -166.77.8.0/23 7256 -166.77.11.0/24 7256 -166.77.12.0/22 7256 -166.77.16.0/24 7256 -166.77.25.0/24 7256 -166.77.26.0/23 7256 -166.77.28.0/24 7256 -166.77.31.0/24 7256 -166.77.36.0/24 7256 -166.77.39.0/24 7256 -166.77.45.0/24 7256 -166.77.46.0/24 7256 -166.77.100.0/22 7256 -166.77.174.0/24 7256 -166.78.0.0/18 33070 -166.78.64.0/18 19994 -166.78.128.0/18 33070 -166.78.192.0/18 19994 -166.81.2.0/24 32787 -166.81.32.0/24 51318 -166.81.33.0/24 38166 -166.81.51.0/24 38166 -166.81.53.0/24 38166 -166.81.64.0/24 51318 -166.82.0.0/18 7029 -166.82.64.0/21 7029 -166.82.72.0/22 7029 -166.82.76.0/24 27479 -166.82.77.0/24 7029 -166.82.78.0/23 7029 -166.82.80.0/20 7029 -166.82.96.0/19 7029 -166.82.128.0/17 7029 -166.84.0.0/16 2033 -166.86.0.0/22 14492 -166.86.4.0/22 36248 -166.87.0.0/16 5080 -166.88.0.0/16 18779 -166.89.0.0/16 13918 -166.90.0.0/18 3356 -166.90.64.0/21 3356 -166.90.72.0/22 3356 -166.90.76.0/22 3257 -166.90.80.0/20 3356 -166.90.96.0/24 21923 -166.90.97.0/24 62723 -166.90.98.0/23 3356 -166.90.100.0/22 3356 -166.90.104.0/21 3356 -166.90.112.0/20 3356 -166.90.128.0/18 3356 -166.90.192.0/19 3356 -166.90.224.0/20 3356 -166.90.240.0/24 3356 -166.90.241.0/24 12129 -166.90.242.0/23 3356 -166.90.244.0/23 27553 -166.90.246.0/24 27553 -166.90.247.0/24 3356 -166.90.248.0/21 3356 -166.91.0.0/17 33084 -166.91.128.0/18 33084 -166.91.192.0/19 33084 -166.91.224.0/20 33084 -166.91.240.0/21 33084 -166.91.248.0/22 33084 -166.91.252.0/24 33084 -166.91.253.0/24 14072 -166.91.254.0/23 33084 -166.94.0.0/16 3926 -166.95.16.0/23 11734 -166.95.32.0/23 11734 -166.95.34.0/24 11734 -166.95.36.0/22 11734 -166.98.17.0/24 16733 -166.98.35.0/24 35289 -166.98.38.0/24 16733 -166.98.53.0/24 35289 -166.98.59.0/24 16733 -166.98.67.0/24 16733 -166.98.71.0/24 16733 -166.98.138.0/23 16733 -166.98.152.0/23 16733 -166.98.242.0/23 16733 -166.99.0.0/16 11719 -166.102.0.0/21 7029 -166.102.8.0/24 7029 -166.102.9.0/24 22773 -166.102.10.0/23 7029 -166.102.12.0/22 7029 -166.102.16.0/22 7029 -166.102.20.0/24 11349 -166.102.21.0/24 7029 -166.102.22.0/23 7029 -166.102.24.0/21 7029 -166.102.32.0/19 7029 -166.102.64.0/18 7029 -166.102.128.0/20 7029 -166.102.144.0/21 7029 -166.102.152.0/23 7029 -166.102.154.0/24 22773 -166.102.155.0/24 7029 -166.102.156.0/22 7029 -166.102.160.0/21 7029 -166.102.168.0/24 22773 -166.102.169.0/24 7029 -166.102.170.0/23 7029 -166.102.172.0/22 7029 -166.102.176.0/20 7029 -166.102.192.0/18 7029 -166.104.0.0/16 9321 -166.107.6.0/23 12054 -166.107.8.0/24 12054 -166.107.64.0/18 12054 -166.107.160.0/22 394435 -166.108.4.0/24 3356 -166.108.24.0/24 7018 -166.108.32.0/21 6118 -166.108.110.0/24 11426 -166.108.184.0/24 3356 -166.108.190.0/24 14051 -166.108.191.0/24 7018 -166.108.192.0/24 33651 -166.108.193.0/24 7018 -166.108.194.0/23 14051 -166.108.197.0/24 3356 -166.108.199.0/24 14615 -166.108.202.0/23 6118 -166.108.214.0/24 20115 -166.108.215.0/24 3356 -166.108.217.0/24 3549 -166.108.219.0/24 3549 -166.108.225.0/24 3549 -166.108.226.0/24 10796 -166.108.228.0/23 6118 -166.108.231.0/24 11426 -166.108.236.0/24 20115 -166.108.238.0/24 22773 -166.108.239.0/24 33363 -166.108.240.0/24 22773 -166.108.242.0/24 7016 -166.108.243.0/24 6118 -166.108.245.0/24 33650 -166.108.248.0/24 6118 -166.109.0.0/16 18481 -166.111.0.0/16 4538 -166.113.0.0/16 19870 -166.114.1.0/24 52250 -166.118.0.0/16 131790 -166.119.72.0/21 4713 -166.120.0.0/23 9547 -166.120.3.0/24 9547 -166.120.128.0/24 18106 -166.120.129.0/24 3758 -166.120.164.0/23 9547 -166.120.167.0/24 9547 -166.120.202.0/23 9547 -166.120.212.0/24 9547 -166.120.216.0/24 9547 -166.121.2.0/24 24075 -166.121.5.0/24 24075 -166.121.11.0/24 24075 -166.121.37.0/24 24075 -166.121.38.0/24 24075 -166.121.128.0/21 9911 -166.121.160.0/20 9255 -166.121.176.0/23 9255 -166.122.0.0/16 6360 -166.123.192.0/18 13506 -166.125.0.0/24 23581 -166.125.242.0/23 23581 -166.125.244.0/23 4766 -166.125.246.0/24 23581 -166.125.248.0/24 23581 -166.125.250.0/23 23581 -166.125.252.0/23 23581 -166.125.254.0/24 23581 -166.126.0.0/16 30488 -166.127.0.0/16 4604 -166.128.0.0/14 20057 -166.132.0.0/16 20057 -166.133.0.0/17 20057 -166.133.128.0/17 64011 -166.134.0.0/15 20057 -166.136.0.0/16 20057 -166.137.0.0/17 20057 -166.137.128.0/18 20057 -166.137.192.0/21 20057 -166.137.200.0/22 20057 -166.137.204.0/23 20057 -166.137.206.0/23 7018 -166.137.208.0/20 20057 -166.137.224.0/19 20057 -166.138.160.0/19 20057 -166.138.192.0/18 20057 -166.139.0.0/17 22394 -166.139.128.0/18 22394 -166.140.0.0/14 22394 -166.144.0.0/15 22394 -166.146.0.0/16 6167 -166.147.0.0/18 6167 -166.147.64.0/18 20057 -166.147.128.0/17 6167 -166.148.0.0/14 22394 -166.152.0.0/14 22394 -166.156.0.0/15 22394 -166.159.0.0/16 22394 -166.161.0.0/16 22394 -166.164.0.0/14 22394 -166.168.0.0/15 22394 -166.170.0.0/24 20057 -166.170.1.0/24 16572 -166.170.2.0/24 16572 -166.170.3.0/24 20057 -166.170.4.0/23 20057 -166.170.6.0/23 16572 -166.170.8.0/23 16572 -166.170.10.0/23 20057 -166.170.12.0/24 16572 -166.170.13.0/24 20057 -166.170.14.0/23 20057 -166.170.16.0/24 20057 -166.170.17.0/24 16572 -166.170.18.0/23 16572 -166.170.20.0/22 20057 -166.170.24.0/21 20057 -166.170.32.0/19 20057 -166.170.64.0/18 20057 -166.170.128.0/17 20057 -166.171.0.0/16 20057 -166.172.0.0/15 20057 -166.175.0.0/16 20057 -166.176.0.0/15 20057 -166.179.64.0/20 133124 -166.180.0.0/16 22394 -166.181.0.0/16 6614 -166.182.0.0/22 18933 -166.182.4.0/24 6614 -166.182.5.0/24 18933 -166.182.6.0/23 18933 -166.182.8.0/21 18933 -166.182.16.0/20 18933 -166.182.32.0/19 6614 -166.182.64.0/20 18933 -166.182.80.0/21 6614 -166.182.88.0/23 6614 -166.182.90.0/23 18933 -166.182.92.0/22 18933 -166.182.96.0/22 18933 -166.182.100.0/24 6614 -166.182.101.0/24 18933 -166.182.102.0/23 18933 -166.182.104.0/21 18933 -166.182.112.0/20 18933 -166.182.128.0/18 18933 -166.182.192.0/19 18933 -166.182.224.0/20 18933 -166.182.240.0/24 18933 -166.182.241.0/24 6614 -166.182.242.0/23 6614 -166.182.244.0/24 6614 -166.182.245.0/24 18933 -166.182.246.0/23 18933 -166.182.248.0/21 6614 -166.183.0.0/16 20057 -166.184.0.0/21 20057 -166.184.8.0/24 20057 -166.184.9.0/24 64011 -166.184.10.0/23 20057 -166.184.12.0/22 20057 -166.184.16.0/20 20057 -166.184.32.0/19 20057 -166.184.64.0/18 20057 -166.184.128.0/17 20057 -166.185.0.0/16 20057 -166.186.0.0/15 20057 -166.188.0.0/14 20057 -166.192.0.0/13 20057 -166.200.0.0/14 20057 -166.204.0.0/17 20057 -166.205.0.0/16 20057 -166.209.16.0/21 7287 -166.209.48.0/21 7287 -166.209.76.0/22 7287 -166.209.88.0/23 7287 -166.209.110.0/24 7287 -166.210.0.0/17 26611 -166.210.128.0/18 26611 -166.210.224.0/20 26611 -166.211.0.0/16 22394 -166.212.0.0/15 20057 -166.215.0.0/16 20057 -166.216.0.0/17 20057 -166.216.128.0/23 20057 -166.216.131.0/24 20057 -166.216.133.0/24 20057 -166.216.136.0/22 20057 -166.216.146.0/23 20057 -166.216.148.0/22 20057 -166.216.152.0/21 20057 -166.216.160.0/23 20057 -166.216.163.0/24 20057 -166.216.165.0/24 20057 -166.216.166.0/23 20057 -166.216.192.0/23 20057 -166.216.196.0/22 20057 -166.216.200.0/24 20057 -166.216.216.0/22 7018 -166.216.224.0/23 20057 -166.216.227.0/24 20057 -166.216.230.0/23 20057 -166.217.0.0/16 20057 -166.218.0.0/15 20057 -166.220.0.0/18 20057 -166.220.64.0/18 64011 -166.220.128.0/17 20057 -166.221.0.0/16 6614 -166.222.0.0/15 6614 -166.224.0.0/17 6614 -166.224.128.0/18 6614 -166.224.192.0/18 18933 -166.225.0.0/16 6614 -166.226.0.0/15 6614 -166.228.0.0/15 6614 -166.230.0.0/17 29946 -166.230.128.0/18 29946 -166.230.192.0/24 29946 -166.230.194.0/23 29946 -166.230.196.0/22 29946 -166.230.200.0/21 29946 -166.230.208.0/20 29946 -166.230.224.0/19 29946 -166.231.0.0/16 6614 -166.232.0.0/14 6614 -166.236.0.0/16 18933 -166.238.0.0/17 26611 -166.238.128.0/18 6614 -166.238.192.0/19 6614 -166.238.224.0/20 6614 -166.238.240.0/20 26611 -166.239.0.0/16 22394 -166.241.0.0/16 22394 -166.246.0.0/15 22394 -166.248.0.0/13 22394 -167.0.0.0/16 3816 -167.1.146.0/24 15084 -167.1.151.0/24 15084 -167.1.152.0/24 15084 -167.1.158.0/24 15084 -167.1.163.0/24 15084 -167.1.164.0/24 15084 -167.1.166.0/24 15084 -167.1.171.0/24 15084 -167.1.172.0/22 15084 -167.1.176.0/24 15084 -167.1.178.0/23 15084 -167.1.180.0/23 15084 -167.1.184.0/23 15084 -167.1.186.0/24 15084 -167.3.0.0/19 6448 -167.3.32.0/20 6448 -167.3.48.0/22 6448 -167.3.52.0/22 7018 -167.3.56.0/21 7018 -167.3.64.0/18 6448 -167.3.128.0/18 6448 -167.3.192.0/19 6448 -167.3.224.0/21 6448 -167.3.232.0/23 6448 -167.3.234.0/24 40511 -167.3.235.0/24 6448 -167.3.236.0/22 6448 -167.3.240.0/20 6448 -167.4.0.0/16 51964 -167.6.0.0/16 21798 -167.7.0.0/17 2939 -167.7.128.0/19 2939 -167.7.160.0/20 2939 -167.7.176.0/21 2939 -167.7.184.0/22 2939 -167.7.188.0/24 46565 -167.7.189.0/24 2939 -167.7.190.0/23 2939 -167.7.192.0/18 2939 -167.8.1.0/24 35968 -167.8.2.0/24 36440 -167.8.5.0/24 3356 -167.8.6.0/24 55062 -167.8.8.0/24 19085 -167.8.11.0/24 2828 -167.8.17.0/24 2828 -167.8.28.0/23 54135 -167.8.30.0/24 54135 -167.8.31.0/24 54449 -167.8.34.0/24 16429 -167.8.35.0/24 54675 -167.8.43.0/24 46369 -167.8.48.0/24 40887 -167.8.49.0/24 19732 -167.8.51.0/24 36209 -167.8.56.0/24 53489 -167.8.57.0/24 36335 -167.8.58.0/24 11883 -167.8.59.0/24 16429 -167.8.61.0/24 27303 -167.8.79.0/24 62498 -167.8.80.0/24 40334 -167.8.81.0/24 36009 -167.8.82.0/24 36462 -167.8.84.0/24 32689 -167.8.86.0/24 46843 -167.8.87.0/24 40324 -167.8.88.0/24 36440 -167.8.89.0/24 63156 -167.8.90.0/24 63166 -167.8.91.0/24 53377 -167.8.92.0/24 63164 -167.8.96.0/24 63167 -167.8.97.0/24 398003 -167.8.98.0/24 398005 -167.8.100.0/24 63156 -167.8.101.0/24 35968 -167.8.102.0/24 63156 -167.8.103.0/24 395695 -167.8.104.0/23 63156 -167.8.106.0/24 397999 -167.8.108.0/23 63156 -167.8.110.0/24 397555 -167.8.111.0/24 397502 -167.8.112.0/24 396987 -167.8.115.0/24 398004 -167.8.116.0/24 398000 -167.8.117.0/24 397998 -167.8.118.0/24 398002 -167.8.119.0/24 398001 -167.8.140.0/22 395693 -167.8.150.0/24 393374 -167.9.5.0/24 2386 -167.9.6.0/24 2386 -167.10.0.0/16 46520 -167.14.0.0/17 20426 -167.14.128.0/18 20426 -167.14.192.0/19 20426 -167.14.224.0/20 20426 -167.14.240.0/21 20426 -167.14.248.0/21 1239 -167.15.253.0/24 26937 -167.16.0.0/16 11273 -167.17.224.0/19 16928 -167.18.13.0/24 5696 -167.18.19.0/24 7018 -167.18.24.0/23 5696 -167.18.49.0/24 7018 -167.18.72.0/21 5696 -167.18.80.0/24 5696 -167.18.104.0/24 5696 -167.18.107.0/24 5696 -167.18.108.0/22 5696 -167.18.114.0/24 5696 -167.18.176.0/20 5696 -167.18.192.0/20 5696 -167.18.215.0/24 5696 -167.19.0.0/19 22221 -167.19.48.0/22 22221 -167.19.64.0/18 22221 -167.19.244.0/24 22221 -167.19.247.0/24 22221 -167.19.248.0/24 22221 -167.20.228.0/22 1239 -167.20.232.0/21 1239 -167.20.240.0/20 1239 -167.21.0.0/16 30641 -167.23.0.0/18 11870 -167.23.64.0/19 11870 -167.23.96.0/23 11870 -167.23.98.0/24 55571 -167.23.99.0/24 11870 -167.23.100.0/22 11870 -167.23.104.0/21 11870 -167.23.112.0/21 11870 -167.23.120.0/22 11870 -167.23.124.0/24 11870 -167.23.125.0/24 55571 -167.23.126.0/23 11870 -167.23.128.0/17 11870 -167.24.0.0/16 7838 -167.25.0.0/16 17378 -167.29.0.0/22 14303 -167.29.4.0/24 22258 -167.29.8.0/24 22258 -167.29.254.0/24 19957 -167.30.36.0/24 136518 -167.30.48.0/24 10203 -167.30.56.0/23 10203 -167.30.61.0/24 135880 -167.30.71.0/24 136518 -167.30.74.0/24 10203 -167.30.77.0/24 136518 -167.30.111.0/24 10203 -167.30.140.0/24 134369 -167.30.141.0/24 136518 -167.30.142.0/24 136518 -167.30.144.0/24 136518 -167.30.148.0/24 136518 -167.30.150.0/24 10203 -167.30.152.0/24 136518 -167.30.190.0/24 10203 -167.30.213.0/24 134369 -167.30.214.0/24 10203 -167.30.215.0/24 136518 -167.30.222.0/24 10203 -167.30.223.0/24 136518 -167.32.0.0/17 2665 -167.37.27.0/24 2665 -167.37.33.0/24 2665 -167.37.47.0/24 2665 -167.37.57.0/24 2665 -167.37.58.0/24 2665 -167.37.62.0/23 2665 -167.37.244.0/22 25689 -167.37.249.0/24 25689 -167.40.26.0/24 2665 -167.40.64.0/19 2665 -167.40.96.0/21 2665 -167.40.104.0/22 2665 -167.40.108.0/23 2665 -167.40.110.0/24 2665 -167.40.112.0/20 2665 -167.43.0.0/20 2665 -167.43.128.0/20 2665 -167.43.192.0/21 2665 -167.43.252.0/24 2665 -167.44.0.0/21 2665 -167.44.32.0/21 2665 -167.56.0.0/13 6057 -167.64.24.0/24 12052 -167.64.29.0/24 12052 -167.64.46.0/24 12052 -167.64.56.0/23 12052 -167.64.60.0/22 12052 -167.64.72.0/21 12052 -167.64.85.0/24 12052 -167.64.92.0/22 12052 -167.64.96.0/22 12052 -167.64.122.0/24 12052 -167.64.143.0/24 12052 -167.64.148.0/24 12052 -167.64.151.0/24 12052 -167.64.152.0/23 12052 -167.64.157.0/24 12052 -167.64.185.0/24 12052 -167.64.225.0/24 12052 -167.64.227.0/24 12052 -167.64.239.0/24 12052 -167.64.243.0/24 12052 -167.64.244.0/23 12052 -167.64.247.0/24 12052 -167.64.248.0/23 12052 -167.66.0.0/22 54996 -167.66.4.0/22 22773 -167.66.8.0/21 22773 -167.66.16.0/20 22773 -167.66.32.0/19 54996 -167.66.64.0/18 22773 -167.66.128.0/17 22773 -167.68.0.0/16 4583 -167.71.0.0/16 14061 -167.72.0.0/16 4193 -167.73.0.0/16 30710 -167.74.88.0/24 852 -167.74.89.0/24 22652 -167.74.90.0/24 22652 -167.74.128.0/24 855 -167.74.130.0/24 855 -167.74.140.0/22 855 -167.74.214.0/24 852 -167.74.217.0/24 852 -167.74.219.0/24 852 -167.75.0.0/18 3356 -167.75.192.0/18 8103 -167.76.0.0/16 209 -167.77.0.0/22 16821 -167.77.63.0/24 16821 -167.77.64.0/22 16821 -167.77.70.0/24 16821 -167.77.192.0/18 33154 -167.78.0.0/16 8103 -167.79.8.0/22 19738 -167.79.52.0/23 19738 -167.79.54.0/24 19738 -167.79.62.0/23 19738 -167.79.91.0/24 19738 -167.79.172.0/24 33562 -167.79.173.0/24 19738 -167.79.174.0/24 33562 -167.79.175.0/24 19738 -167.79.176.0/24 33562 -167.79.177.0/24 19738 -167.79.182.0/23 33562 -167.79.184.0/23 33562 -167.79.186.0/23 19738 -167.79.188.0/22 19738 -167.79.192.0/21 19738 -167.80.0.0/16 14579 -167.82.0.0/17 54113 -167.83.10.0/24 21595 -167.83.101.0/24 21595 -167.83.116.0/22 21595 -167.83.130.0/24 21595 -167.83.134.0/23 21595 -167.83.136.0/24 21595 -167.83.138.0/23 21595 -167.83.142.0/23 21595 -167.83.145.0/24 21595 -167.83.198.0/23 21595 -167.83.201.0/24 21595 -167.83.202.0/24 21595 -167.83.210.0/24 21595 -167.83.214.0/24 21595 -167.86.0.0/18 47003 -167.86.66.0/23 51167 -167.86.68.0/22 51167 -167.86.72.0/21 51167 -167.86.80.0/20 51167 -167.86.96.0/19 51167 -167.86.128.0/17 25019 -167.88.0.0/20 20278 -167.88.16.0/20 5645 -167.88.32.0/20 31798 -167.88.48.0/24 53356 -167.88.49.0/24 200983 -167.88.50.0/23 53356 -167.88.52.0/22 31851 -167.88.56.0/24 7029 -167.88.57.0/24 3949 -167.88.60.0/22 63023 -167.88.64.0/20 393393 -167.88.80.0/20 23089 -167.88.96.0/20 53889 -167.88.112.0/21 3842 -167.88.120.0/24 3842 -167.88.121.0/24 29838 -167.88.122.0/23 3842 -167.88.124.0/23 3842 -167.88.132.0/22 22995 -167.88.136.0/21 22995 -167.88.144.0/21 23352 -167.88.152.0/22 23352 -167.88.156.0/23 23352 -167.88.158.0/23 30081 -167.88.160.0/23 53667 -167.88.162.0/23 46261 -167.88.164.0/22 53667 -167.88.172.0/22 46261 -167.88.176.0/22 396105 -167.88.180.0/23 396105 -167.88.192.0/20 22552 -167.88.208.0/20 13641 -167.88.224.0/20 395643 -167.88.240.0/20 5050 -167.89.0.0/18 11377 -167.89.64.0/19 11377 -167.89.96.0/20 11377 -167.89.112.0/24 11377 -167.89.114.0/23 11377 -167.89.116.0/22 11377 -167.89.120.0/21 11377 -167.89.128.0/17 40317 -167.90.0.0/16 22093 -167.91.0.0/22 394167 -167.92.59.0/24 54915 -167.92.62.0/24 54916 -167.92.66.0/24 54916 -167.92.67.0/24 17328 -167.92.71.0/24 54915 -167.92.87.0/24 54915 -167.92.88.0/24 54915 -167.92.93.0/24 54916 -167.92.116.0/23 17328 -167.92.126.0/24 17328 -167.92.141.0/24 54916 -167.93.0.0/16 8103 -167.94.1.0/24 395447 -167.94.2.0/24 395447 -167.94.4.0/24 395447 -167.94.17.0/24 395447 -167.94.45.0/24 395447 -167.94.67.0/24 395447 -167.94.69.0/24 395447 -167.94.241.0/24 395447 -167.94.248.0/23 395447 -167.95.0.0/16 8103 -167.96.0.0/16 2055 -167.98.0.0/16 25180 -167.99.0.0/16 14061 -167.100.0.0/23 394671 -167.100.4.0/22 36724 -167.100.8.0/21 397608 -167.100.16.0/22 397745 -167.100.32.0/19 397803 -167.100.64.0/19 29974 -167.100.96.0/24 9009 -167.100.97.0/24 11325 -167.100.98.0/23 9009 -167.100.100.0/22 46261 -167.100.104.0/22 55286 -167.100.108.0/22 46261 -167.100.112.0/22 36073 -167.100.116.0/23 14614 -167.100.118.0/24 14614 -167.100.120.0/22 18943 -167.100.124.0/23 18943 -167.100.126.0/24 18943 -167.100.128.0/17 25019 -167.102.0.0/17 27026 -167.102.128.0/22 27026 -167.102.132.0/23 27026 -167.102.134.0/24 27026 -167.102.135.0/24 30067 -167.102.136.0/23 27026 -167.102.138.0/24 53302 -167.102.139.0/24 27026 -167.102.140.0/22 27026 -167.102.144.0/21 27026 -167.102.152.0/23 27026 -167.102.154.0/24 27026 -167.102.155.0/24 4954 -167.102.156.0/22 4954 -167.102.160.0/20 27026 -167.102.176.0/21 27026 -167.102.184.0/22 27026 -167.102.188.0/22 26297 -167.102.192.0/20 27026 -167.102.208.0/21 27026 -167.102.216.0/23 27026 -167.102.218.0/23 55111 -167.102.220.0/22 27026 -167.102.224.0/20 27026 -167.102.240.0/24 27026 -167.102.241.0/24 15268 -167.102.242.0/23 27026 -167.102.244.0/22 27026 -167.102.248.0/21 26297 -167.104.0.0/19 7183 -167.104.254.0/23 7183 -167.105.0.0/16 8075 -167.106.245.0/24 2695 -167.106.246.0/24 2695 -167.106.250.0/23 2695 -167.106.255.0/24 2695 -167.107.0.0/16 14799 -167.108.0.0/16 6057 -167.110.64.0/22 33565 -167.112.135.0/24 32739 -167.112.136.0/23 32739 -167.112.140.0/23 32739 -167.112.156.0/23 32739 -167.112.160.0/22 32739 -167.112.164.0/23 32739 -167.114.0.0/16 16276 -167.115.0.0/23 17386 -167.115.2.0/24 61441 -167.115.3.0/24 17386 -167.115.4.0/22 17386 -167.115.8.0/21 17386 -167.115.16.0/20 17386 -167.115.32.0/19 17386 -167.115.64.0/18 17386 -167.115.128.0/18 61441 -167.115.192.0/18 17386 -167.116.0.0/16 6057 -167.118.191.0/24 63211 -167.118.248.0/23 30066 -167.119.240.0/20 36808 -167.121.0.0/16 10662 -167.122.0.0/20 396172 -167.122.28.0/22 19275 -167.123.240.0/23 9650 -167.124.64.0/20 40390 -167.124.80.0/24 20029 -167.124.96.0/22 11379 -167.124.100.0/23 11379 -167.124.102.0/24 11379 -167.124.112.0/22 394261 -167.124.116.0/24 394261 -167.124.123.0/24 40390 -167.124.124.0/23 40390 -167.124.160.0/24 18703 -167.124.240.0/24 18703 -167.124.242.0/24 18703 -167.127.25.0/24 11520 -167.127.30.0/24 11520 -167.127.88.0/21 11520 -167.127.96.0/19 11520 -167.127.128.0/19 11520 -167.127.184.0/21 11520 -167.127.192.0/18 11520 -167.128.0.0/16 25899 -167.129.0.0/16 394366 -167.130.0.0/16 10203 -167.131.0.0/16 1798 -167.132.0.0/16 10405 -167.133.165.0/24 11313 -167.133.169.0/24 11313 -167.133.170.0/23 11313 -167.133.172.0/24 11313 -167.133.180.0/22 11313 -167.133.184.0/24 11313 -167.133.201.0/24 11313 -167.135.0.0/16 11404 -167.136.0.0/18 10968 -167.136.64.0/20 10968 -167.136.80.0/21 10968 -167.136.88.0/22 10968 -167.136.92.0/24 32246 -167.136.93.0/24 10968 -167.136.94.0/23 10968 -167.136.96.0/21 10968 -167.136.104.0/23 32246 -167.136.106.0/23 10968 -167.136.108.0/23 10968 -167.136.110.0/23 32246 -167.136.112.0/20 10968 -167.136.128.0/18 10968 -167.136.192.0/19 10968 -167.136.224.0/21 10968 -167.136.232.0/22 10968 -167.136.236.0/23 10968 -167.136.238.0/24 3356 -167.136.239.0/24 6939 -167.136.240.0/20 10968 -167.137.1.0/24 1761 -167.138.224.0/19 4196 -167.139.0.0/16 4812 -167.140.0.0/17 15086 -167.140.128.0/18 15086 -167.140.192.0/19 15086 -167.140.224.0/20 15086 -167.140.240.0/23 2516 -167.140.242.0/23 15086 -167.140.244.0/22 15086 -167.140.248.0/21 15086 -167.141.0.0/16 174 -167.142.0.0/20 5056 -167.142.16.0/21 5056 -167.142.24.0/22 5056 -167.142.28.0/22 62886 -167.142.32.0/24 5056 -167.142.33.0/24 63394 -167.142.34.0/24 18883 -167.142.35.0/24 5056 -167.142.36.0/24 63394 -167.142.37.0/24 5056 -167.142.38.0/24 46892 -167.142.39.0/24 5056 -167.142.40.0/22 5056 -167.142.44.0/22 62886 -167.142.48.0/20 5056 -167.142.64.0/21 5056 -167.142.72.0/22 5056 -167.142.76.0/22 62886 -167.142.80.0/20 5056 -167.142.96.0/21 5056 -167.142.104.0/23 5056 -167.142.106.0/24 5056 -167.142.107.0/24 18883 -167.142.108.0/23 18883 -167.142.110.0/23 5056 -167.142.112.0/23 5056 -167.142.114.0/24 5056 -167.142.115.0/24 19628 -167.142.116.0/24 5056 -167.142.117.0/24 397475 -167.142.118.0/24 14814 -167.142.119.0/24 5056 -167.142.120.0/24 5056 -167.142.121.0/24 63394 -167.142.122.0/23 5056 -167.142.124.0/22 5056 -167.142.128.0/20 5056 -167.142.144.0/21 5056 -167.142.152.0/24 5056 -167.142.153.0/24 22534 -167.142.154.0/23 5056 -167.142.156.0/22 5056 -167.142.160.0/22 5056 -167.142.164.0/23 5056 -167.142.166.0/24 5056 -167.142.167.0/24 62825 -167.142.168.0/21 5056 -167.142.176.0/22 5056 -167.142.180.0/23 5056 -167.142.182.0/24 63394 -167.142.183.0/24 5056 -167.142.184.0/21 5056 -167.142.192.0/21 5056 -167.142.200.0/24 5056 -167.142.201.0/24 46892 -167.142.202.0/23 396443 -167.142.204.0/23 396443 -167.142.206.0/24 396443 -167.142.207.0/24 55009 -167.142.208.0/20 5056 -167.142.224.0/21 5056 -167.142.232.0/23 5056 -167.142.234.0/24 5056 -167.142.235.0/24 20131 -167.142.236.0/22 5056 -167.142.240.0/24 5056 -167.142.241.0/24 18883 -167.142.242.0/23 5056 -167.142.244.0/22 5056 -167.142.248.0/22 5056 -167.142.252.0/23 5056 -167.142.254.0/23 62825 -167.144.1.0/24 396921 -167.144.2.0/24 396921 -167.144.11.0/24 396921 -167.144.12.0/24 396921 -167.144.130.0/24 396921 -167.146.7.0/24 22527 -167.146.16.0/21 22527 -167.146.30.0/24 22527 -167.146.32.0/20 22527 -167.146.48.0/22 22527 -167.146.63.0/24 22527 -167.146.64.0/22 22527 -167.146.68.0/23 22527 -167.146.90.0/24 22527 -167.146.93.0/24 22527 -167.146.94.0/24 22527 -167.146.96.0/21 22527 -167.146.104.0/23 22527 -167.146.112.0/23 22527 -167.146.120.0/23 22527 -167.146.128.0/19 22527 -167.146.160.0/20 22527 -167.146.200.0/22 22527 -167.146.205.0/24 22527 -167.146.208.0/20 22527 -167.146.224.0/20 22527 -167.146.240.0/21 22527 -167.150.0.0/20 46887 -167.150.16.0/24 13536 -167.150.17.0/24 46887 -167.150.18.0/23 46887 -167.150.20.0/22 46887 -167.150.24.0/21 46887 -167.150.32.0/19 46887 -167.150.64.0/18 46887 -167.150.128.0/17 46887 -167.153.0.0/16 22252 -167.154.0.0/16 21783 -167.155.0.0/17 32255 -167.155.128.0/19 32255 -167.155.160.0/21 19273 -167.155.168.0/21 32255 -167.155.176.0/20 32255 -167.155.192.0/18 32255 -167.157.0.0/16 6568 -167.159.0.0/16 16988 -167.160.0.0/22 59447 -167.160.4.0/24 59447 -167.160.5.0/24 174 -167.160.6.0/23 174 -167.160.8.0/23 174 -167.160.10.0/24 59447 -167.160.11.0/24 197328 -167.160.12.0/24 59447 -167.160.13.0/24 197328 -167.160.14.0/23 174 -167.160.16.0/23 59447 -167.160.18.0/24 174 -167.160.19.0/24 59447 -167.160.20.0/24 174 -167.160.21.0/24 59447 -167.160.22.0/23 174 -167.160.24.0/23 174 -167.160.26.0/24 174 -167.160.27.0/24 197328 -167.160.28.0/22 59447 -167.160.32.0/22 62874 -167.160.36.0/24 8100 -167.160.37.0/24 62874 -167.160.38.0/23 62874 -167.160.40.0/21 62874 -167.160.48.0/22 62874 -167.160.52.0/23 62874 -167.160.54.0/24 62874 -167.160.55.0/24 396867 -167.160.56.0/24 32181 -167.160.59.0/24 32181 -167.160.60.0/24 36236 -167.160.61.0/24 32181 -167.160.63.0/24 32181 -167.160.64.0/20 64267 -167.160.80.0/24 53850 -167.160.86.0/23 8100 -167.160.88.0/22 63018 -167.160.96.0/19 53889 -167.160.129.0/24 54119 -167.160.130.0/23 54119 -167.160.132.0/23 54119 -167.160.134.0/24 54119 -167.160.135.0/24 14615 -167.160.136.0/22 14615 -167.160.140.0/22 19108 -167.160.148.0/23 54119 -167.160.150.0/24 7018 -167.160.151.0/24 20115 -167.160.152.0/24 11215 -167.160.153.0/24 54119 -167.160.154.0/24 209 -167.160.155.0/24 10796 -167.160.157.0/24 54119 -167.160.158.0/24 7029 -167.160.159.0/24 33132 -167.160.160.0/19 8100 -167.160.192.0/19 11272 -167.160.224.0/20 393844 -167.160.240.0/21 393844 -167.160.248.0/22 393844 -167.160.255.0/24 393844 -167.161.100.0/23 32893 -167.164.3.0/24 21965 -167.164.4.0/22 21965 -167.164.8.0/24 21965 -167.164.11.0/24 21965 -167.165.0.0/16 394534 -167.167.12.0/22 30012 -167.167.16.0/22 30012 -167.167.32.0/21 51964 -167.167.40.0/23 30012 -167.167.42.0/23 2158 -167.167.44.0/23 24093 -167.167.96.0/21 51964 -167.167.104.0/23 30012 -167.167.108.0/23 30012 -167.167.138.0/23 51964 -167.167.140.0/22 51964 -167.167.232.0/21 131936 -167.167.248.0/23 24093 -167.169.0.0/16 2497 -167.170.98.0/24 394910 -167.171.0.0/16 11101 -167.172.8.0/21 14061 -167.172.16.0/20 14061 -167.172.32.0/19 14061 -167.172.64.0/18 14061 -167.172.128.0/17 14061 -167.173.8.0/22 3769 -167.173.16.0/24 36566 -167.173.17.0/24 36567 -167.173.18.0/24 36568 -167.173.19.0/24 36569 -167.173.20.0/24 36570 -167.173.21.0/24 36571 -167.173.22.0/24 36572 -167.173.23.0/24 36573 -167.173.24.0/24 36574 -167.173.25.0/24 36575 -167.173.26.0/24 36576 -167.173.27.0/24 36577 -167.173.28.0/24 36578 -167.173.29.0/24 36579 -167.173.30.0/24 36580 -167.173.31.0/24 36759 -167.173.32.0/24 36760 -167.173.33.0/24 36761 -167.173.34.0/24 36762 -167.173.35.0/24 32795 -167.173.36.0/24 36764 -167.173.37.0/24 36765 -167.173.38.0/24 32795 -167.173.39.0/24 36767 -167.173.40.0/24 36768 -167.173.41.0/24 36769 -167.173.42.0/24 32795 -167.173.43.0/24 36771 -167.173.44.0/24 36772 -167.173.45.0/24 36787 -167.173.46.0/24 32795 -167.173.47.0/24 54204 -167.173.48.0/24 36581 -167.173.49.0/24 36766 -167.173.50.0/24 36566 -167.173.51.0/24 32795 -167.173.52.0/22 32795 -167.173.56.0/21 32795 -167.173.64.0/23 3561 -167.173.66.0/24 394400 -167.173.67.0/24 3561 -167.173.68.0/22 3561 -167.173.72.0/22 394400 -167.173.76.0/24 394400 -167.173.77.0/24 3561 -167.173.78.0/23 3561 -167.173.80.0/23 3561 -167.173.82.0/24 394401 -167.173.83.0/24 3561 -167.173.84.0/22 3561 -167.173.88.0/22 394401 -167.173.92.0/24 394401 -167.173.93.0/24 3561 -167.173.94.0/23 3561 -167.173.96.0/19 32795 -167.173.128.0/18 32795 -167.173.194.0/24 3561 -167.173.198.0/24 63382 -167.173.199.0/24 17247 -167.173.202.0/24 7362 -167.173.203.0/24 20115 -167.173.204.0/23 394401 -167.173.208.0/24 36566 -167.173.209.0/24 36567 -167.173.210.0/24 36568 -167.173.211.0/24 36569 -167.173.212.0/24 36570 -167.173.213.0/24 36571 -167.173.214.0/24 36572 -167.173.215.0/24 36573 -167.173.216.0/24 36574 -167.173.217.0/24 36575 -167.173.218.0/24 13333 -167.173.219.0/24 36577 -167.173.220.0/24 36578 -167.173.221.0/24 36579 -167.173.222.0/24 36580 -167.173.223.0/24 32795 -167.173.224.0/24 36760 -167.173.225.0/24 36761 -167.173.226.0/24 36762 -167.173.227.0/24 32795 -167.173.228.0/24 36764 -167.173.229.0/24 36765 -167.173.230.0/24 32795 -167.173.231.0/24 36767 -167.173.232.0/24 36768 -167.173.233.0/24 36769 -167.173.234.0/24 32795 -167.173.235.0/24 36771 -167.173.236.0/24 36772 -167.173.237.0/24 36787 -167.173.238.0/24 32795 -167.173.239.0/24 54204 -167.173.240.0/24 36581 -167.173.241.0/24 36766 -167.173.242.0/23 32795 -167.173.244.0/22 32795 -167.173.248.0/21 32795 -167.174.240.0/24 21938 -167.174.245.0/24 21938 -167.174.246.0/24 21938 -167.176.0.0/23 12037 -167.176.6.0/24 12037 -167.176.8.0/24 12037 -167.176.26.0/24 12037 -167.176.36.0/24 12037 -167.176.38.0/24 12037 -167.177.0.0/16 7800 -167.179.0.0/23 58424 -167.179.3.0/24 11179 -167.179.4.0/22 9902 -167.179.8.0/21 9902 -167.179.16.0/22 9902 -167.179.20.0/23 58424 -167.179.23.0/24 11179 -167.179.25.0/24 11179 -167.179.27.0/24 11179 -167.179.28.0/22 9902 -167.179.32.0/24 11179 -167.179.35.0/24 11179 -167.179.36.0/22 9902 -167.179.40.0/21 9902 -167.179.48.0/20 135273 -167.179.64.0/18 20473 -167.179.128.0/18 4764 -167.179.192.0/22 58424 -167.179.196.0/23 4768 -167.179.198.0/24 4768 -167.179.199.0/24 138938 -167.179.208.0/23 4768 -167.179.210.0/24 4768 -167.179.211.0/24 132815 -167.179.212.0/24 55303 -167.179.216.0/21 136795 -167.179.224.0/19 55423 -167.181.12.0/24 62481 -167.181.14.0/24 25959 -167.181.16.0/23 62481 -167.181.18.0/24 25959 -167.181.19.0/24 62481 -167.181.31.0/24 25959 -167.181.33.0/24 62481 -167.181.35.0/24 25959 -167.181.40.0/24 25959 -167.181.41.0/24 62481 -167.181.46.0/24 25959 -167.181.48.0/24 25959 -167.181.54.0/24 25959 -167.181.128.0/23 25959 -167.181.133.0/24 25959 -167.181.135.0/24 25959 -167.181.140.0/24 25959 -167.181.141.0/24 62481 -167.181.192.0/24 25959 -167.181.194.0/23 25959 -167.181.216.0/23 62481 -167.181.218.0/24 25959 -167.181.219.0/24 62481 -167.181.248.0/22 25959 -167.182.1.0/24 54053 -167.182.2.0/23 54053 -167.182.57.0/24 46973 -167.182.59.0/24 54053 -167.182.60.0/23 46973 -167.182.62.0/24 46973 -167.182.67.0/24 54053 -167.182.71.0/24 54053 -167.182.73.0/24 54053 -167.182.74.0/23 54053 -167.182.76.0/23 54053 -167.182.80.0/24 54053 -167.182.82.0/24 54053 -167.182.83.0/24 46423 -167.182.120.0/21 22012 -167.182.244.0/24 20029 -167.183.210.0/23 393556 -167.183.212.0/24 393556 -167.183.216.0/22 3356 -167.183.251.0/24 7725 -167.184.0.0/22 15071 -167.184.21.0/24 15071 -167.184.22.0/23 15071 -167.184.61.0/24 2764 -167.184.62.0/23 24030 -167.184.64.0/22 24030 -167.184.128.0/22 15071 -167.184.183.0/24 5400 -167.184.184.0/21 5400 -167.184.192.0/21 5400 -167.184.200.0/23 5400 -167.184.202.0/24 5400 -167.184.252.0/22 24030 -167.187.8.0/22 3826 -167.187.20.0/22 26529 -167.187.100.0/22 3826 -167.187.200.0/22 26529 -167.188.1.0/24 55290 -167.188.4.0/23 55290 -167.188.44.0/24 14418 -167.188.80.0/24 14418 -167.188.84.0/24 14418 -167.188.241.0/24 27533 -167.188.242.0/23 27533 -167.188.246.0/23 55290 -167.188.250.0/24 27533 -167.188.251.0/24 701 -167.188.252.0/23 14418 -167.188.254.0/24 14418 -167.191.0.0/16 18880 -167.192.0.0/17 2897 -167.192.128.0/20 2897 -167.192.144.0/22 2897 -167.192.148.0/23 2897 -167.192.150.0/24 7018 -167.192.151.0/24 2897 -167.192.152.0/21 2897 -167.192.160.0/19 2897 -167.192.192.0/18 2897 -167.193.0.0/16 2897 -167.194.0.0/15 2897 -167.196.0.0/14 2897 -167.200.0.0/16 2897 -167.201.224.0/21 393861 -167.201.240.0/22 393861 -167.202.195.0/24 13169 -167.202.201.0/24 13169 -167.202.212.0/24 13169 -167.202.214.0/24 13169 -167.202.220.0/22 13169 -167.203.0.0/24 12701 -167.203.16.0/22 12701 -167.203.32.0/22 14733 -167.203.48.0/22 6303 -167.203.60.0/24 6303 -167.203.158.0/24 14733 -167.205.0.0/17 4796 -167.205.128.0/18 4796 -167.206.0.0/19 6128 -167.206.32.0/21 6128 -167.206.40.0/22 6128 -167.206.44.0/24 19720 -167.206.45.0/24 6128 -167.206.46.0/23 6128 -167.206.48.0/21 6128 -167.206.56.0/23 6128 -167.206.58.0/24 25987 -167.206.59.0/24 6128 -167.206.60.0/22 6128 -167.206.64.0/21 6128 -167.206.72.0/22 6128 -167.206.76.0/24 6128 -167.206.77.0/24 54004 -167.206.78.0/23 6128 -167.206.80.0/22 6128 -167.206.84.0/23 6128 -167.206.86.0/24 20398 -167.206.87.0/24 6128 -167.206.88.0/21 6128 -167.206.96.0/20 6128 -167.206.112.0/22 6128 -167.206.116.0/23 6128 -167.206.118.0/24 6128 -167.206.119.0/24 19720 -167.206.120.0/22 19720 -167.206.124.0/22 6128 -167.206.128.0/19 6128 -167.206.160.0/21 6128 -167.206.168.0/23 6128 -167.206.170.0/24 54004 -167.206.171.0/24 6128 -167.206.172.0/22 6128 -167.206.176.0/21 6128 -167.206.184.0/22 6128 -167.206.188.0/23 6128 -167.206.190.0/24 26564 -167.206.191.0/24 6128 -167.206.192.0/22 6128 -167.206.196.0/24 6128 -167.206.197.0/24 21778 -167.206.198.0/23 6128 -167.206.200.0/21 6128 -167.206.208.0/24 6128 -167.206.209.0/24 40513 -167.206.210.0/23 6128 -167.206.212.0/22 6128 -167.206.216.0/21 6128 -167.206.224.0/21 6128 -167.206.232.0/22 6128 -167.206.236.0/23 6128 -167.206.238.0/24 32195 -167.206.239.0/24 6128 -167.206.240.0/20 6128 -167.207.128.0/20 22648 -167.209.0.0/16 11596 -167.211.0.0/16 5696 -167.212.0.0/20 33166 -167.212.16.0/20 29949 -167.212.40.0/21 33166 -167.212.100.0/24 36008 -167.212.101.0/24 397147 -167.212.102.0/24 397147 -167.212.103.0/24 16825 -167.215.0.0/16 3561 -167.216.0.0/17 10348 -167.216.128.0/22 14919 -167.216.132.0/22 3561 -167.216.136.0/21 3561 -167.216.144.0/20 3561 -167.216.160.0/19 3561 -167.216.192.0/18 3561 -167.217.0.0/16 6461 -167.218.0.0/16 3136 -167.219.0.0/19 30337 -167.219.32.0/20 30337 -167.219.48.0/23 132384 -167.219.50.0/24 132384 -167.219.51.0/24 30337 -167.219.52.0/23 132384 -167.219.54.0/24 132384 -167.219.55.0/24 30337 -167.219.56.0/23 132384 -167.219.58.0/24 132384 -167.219.59.0/24 30337 -167.219.60.0/22 30337 -167.219.64.0/18 30337 -167.219.128.0/17 30337 -167.220.0.0/17 3598 -167.220.128.0/18 3598 -167.220.192.0/19 3598 -167.220.224.0/23 3598 -167.220.226.0/23 45139 -167.220.228.0/22 3598 -167.220.232.0/21 3598 -167.220.240.0/22 8075 -167.220.244.0/22 58862 -167.220.248.0/21 3598 -167.222.112.0/23 40375 -167.222.116.0/24 40375 -167.222.180.0/24 40375 -167.222.220.0/24 40375 -167.224.64.0/21 29729 -167.224.80.0/23 29729 -167.224.82.0/24 29729 -167.224.192.0/18 395662 -167.225.0.0/16 1906 -167.227.0.0/24 2675 -167.227.32.0/21 2665 -167.227.48.0/24 2665 -167.229.212.0/24 2905 -167.230.0.0/24 10975 -167.230.13.0/24 10975 -167.230.15.0/24 10975 -167.230.16.0/24 10975 -167.230.18.0/23 10975 -167.230.20.0/24 10975 -167.230.22.0/23 10975 -167.230.24.0/23 10975 -167.230.38.0/24 10975 -167.230.96.0/21 10975 -167.230.104.0/22 10975 -167.230.109.0/24 10975 -167.230.119.0/24 10975 -167.230.140.0/22 10975 -167.230.144.0/22 10975 -167.230.152.0/22 10975 -167.230.172.0/22 10975 -167.230.186.0/24 10975 -167.230.188.0/24 10975 -167.230.202.0/24 10975 -167.230.217.0/24 10975 -167.230.227.0/24 10975 -167.230.235.0/24 10975 -167.230.238.0/24 10975 -167.230.241.0/24 10975 -167.230.242.0/24 10975 -167.232.224.0/23 11245 -167.232.233.0/24 4657 -167.232.234.0/24 4657 -167.232.235.0/24 11245 -167.232.240.0/22 11245 -167.232.244.0/23 11245 -167.232.248.0/23 11245 -167.232.250.0/24 11245 -167.232.252.0/23 11245 -167.232.254.0/24 11245 -167.233.0.0/16 24940 -167.234.0.0/16 3525 -167.236.0.0/24 19400 -167.236.9.0/24 19400 -167.236.10.0/24 19400 -167.236.50.0/24 10753 -167.236.64.0/23 19400 -167.236.193.0/24 19400 -167.236.194.0/23 19400 -167.236.200.0/21 19400 -167.236.208.0/21 19400 -167.236.217.0/24 19400 -167.236.220.0/23 19400 -167.237.0.0/16 40238 -167.238.0.0/16 36092 -167.239.0.0/16 13695 -167.240.0.0/16 13325 -167.242.0.0/17 30356 -167.242.128.0/18 30356 -167.242.192.0/19 30356 -167.242.224.0/21 30356 -167.242.232.0/24 10753 -167.242.233.0/24 3356 -167.242.234.0/23 3356 -167.242.236.0/22 30356 -167.242.240.0/20 30356 -167.244.212.0/23 13536 -167.244.247.0/24 13536 -167.245.3.0/24 17161 -167.245.8.0/21 17161 -167.245.16.0/20 17161 -167.245.32.0/21 17161 -167.245.54.0/23 17161 -167.245.56.0/22 17161 -167.245.62.0/23 17161 -167.245.64.0/20 17161 -167.245.88.0/21 17161 -167.245.100.0/23 21874 -167.245.104.0/22 17161 -167.245.139.0/24 21874 -167.245.194.0/24 21874 -167.245.243.0/24 21874 -167.245.245.0/24 21874 -167.245.247.0/24 21874 -167.245.255.0/24 17161 -167.246.0.0/24 22808 -167.246.8.0/24 22808 -167.246.14.0/24 22808 -167.246.16.0/24 21949 -167.246.19.0/24 22808 -167.246.20.0/24 22808 -167.246.32.0/22 22808 -167.246.40.0/21 22808 -167.246.48.0/21 22808 -167.246.60.0/23 22808 -167.246.62.0/24 22808 -167.246.65.0/24 3848 -167.246.66.0/24 3848 -167.247.12.0/22 55706 -167.247.16.0/24 55706 -167.247.20.0/24 55706 -167.247.80.0/22 51439 -167.247.88.0/22 51439 -167.247.108.0/24 55706 -167.247.111.0/24 55706 -167.247.251.0/24 55706 -167.247.252.0/22 55706 -167.248.0.0/16 209 -167.249.0.0/22 263113 -167.249.4.0/22 52913 -167.249.8.0/22 27843 -167.249.12.0/22 262644 -167.249.16.0/22 265158 -167.249.20.0/22 264635 -167.249.24.0/22 265166 -167.249.32.0/22 21826 -167.249.36.0/22 262832 -167.249.40.0/22 27817 -167.249.44.0/22 52426 -167.249.48.0/22 61570 -167.249.52.0/23 3549 -167.249.54.0/23 264738 -167.249.56.0/22 262535 -167.249.60.0/22 265203 -167.249.64.0/22 264508 -167.249.68.0/22 265159 -167.249.72.0/22 265154 -167.249.76.0/22 265168 -167.249.80.0/22 265169 -167.249.84.0/22 265176 -167.249.92.0/22 264480 -167.249.100.0/22 61871 -167.249.104.0/22 28124 -167.249.108.0/22 265160 -167.249.112.0/22 28131 -167.249.116.0/24 32098 -167.249.117.0/24 22882 -167.249.118.0/23 32098 -167.249.120.0/22 265170 -167.249.124.0/22 265247 -167.249.128.0/22 265178 -167.249.132.0/22 265181 -167.249.136.0/22 265186 -167.249.140.0/22 265191 -167.249.144.0/22 265192 -167.249.148.0/22 61649 -167.249.152.0/22 28226 -167.249.156.0/22 265190 -167.249.160.0/22 61589 -167.249.164.0/22 265188 -167.249.168.0/22 262503 -167.249.172.0/22 265182 -167.249.176.0/22 28287 -167.249.180.0/22 263098 -167.249.184.0/22 53066 -167.249.188.0/22 61878 -167.249.192.0/23 263815 -167.249.195.0/24 263815 -167.249.196.0/22 263699 -167.249.200.0/22 52449 -167.249.204.0/22 265174 -167.249.208.0/22 265175 -167.249.212.0/22 265177 -167.249.216.0/22 263764 -167.249.220.0/22 265180 -167.249.224.0/22 263368 -167.249.228.0/22 264164 -167.249.232.0/22 25933 -167.249.236.0/22 265183 -167.249.240.0/22 265172 -167.249.244.0/22 265173 -167.249.248.0/22 265171 -167.249.252.0/22 28408 -167.250.0.0/22 265185 -167.250.4.0/22 264649 -167.250.8.0/22 262785 -167.250.12.0/22 52807 -167.250.16.0/22 265194 -167.250.20.0/22 264290 -167.250.24.0/22 265279 -167.250.28.0/22 265198 -167.250.32.0/22 28618 -167.250.36.0/22 263717 -167.250.40.0/22 61934 -167.250.44.0/24 5 -167.250.45.0/24 265189 -167.250.46.0/23 265189 -167.250.48.0/23 263767 -167.250.50.0/24 263767 -167.250.52.0/22 27901 -167.250.56.0/22 61917 -167.250.60.0/22 264943 -167.250.64.0/22 265204 -167.250.68.0/22 265205 -167.250.72.0/22 265197 -167.250.76.0/23 265503 -167.250.78.0/24 265503 -167.250.80.0/22 262502 -167.250.84.0/22 263549 -167.250.88.0/22 262715 -167.250.92.0/22 52625 -167.250.96.0/22 265199 -167.250.100.0/22 52928 -167.250.104.0/22 265213 -167.250.108.0/22 394474 -167.250.112.0/24 52336 -167.250.116.0/22 264667 -167.250.120.0/22 262220 -167.250.124.0/22 265200 -167.250.128.0/22 265246 -167.250.132.0/22 264839 -167.250.136.0/22 265206 -167.250.140.0/22 265201 -167.250.144.0/22 52623 -167.250.148.0/22 28183 -167.250.152.0/22 262316 -167.250.156.0/22 265214 -167.250.160.0/22 265207 -167.250.164.0/22 265255 -167.250.168.0/22 265804 -167.250.172.0/22 262744 -167.250.176.0/22 265209 -167.250.180.0/22 264668 -167.250.184.0/22 265215 -167.250.188.0/22 265219 -167.250.192.0/22 264654 -167.250.196.0/23 267748 -167.250.198.0/24 27696 -167.250.199.0/24 265208 -167.250.200.0/22 265226 -167.250.204.0/22 262253 -167.250.208.0/22 52271 -167.250.212.0/22 264658 -167.250.216.0/22 265224 -167.250.220.0/24 52468 -167.250.224.0/22 265210 -167.250.228.0/22 265227 -167.250.232.0/22 265211 -167.250.236.0/22 265216 -167.250.240.0/22 265237 -167.250.244.0/22 265238 -167.250.248.0/22 265220 -167.250.252.0/22 265239 -167.251.0.0/16 14946 -167.252.0.0/16 3549 -167.253.160.0/19 6181 -167.254.0.0/17 16831 -167.254.128.0/18 16831 -167.254.192.0/19 16831 -167.254.224.0/20 16831 -167.254.240.0/22 9466 -167.254.244.0/23 9466 -167.254.246.0/23 16831 -167.254.248.0/21 16831 -168.0.0.0/22 265240 -168.0.4.0/22 265241 -168.0.8.0/22 265217 -168.0.12.0/22 6147 -168.0.16.0/22 52651 -168.0.20.0/22 265242 -168.0.24.0/22 265243 -168.0.28.0/22 265221 -168.0.32.0/22 265222 -168.0.36.0/22 265244 -168.0.40.0/22 265228 -168.0.44.0/22 263077 -168.0.48.0/22 265223 -168.0.52.0/22 265229 -168.0.56.0/22 61517 -168.0.60.0/22 19990 -168.0.64.0/22 52864 -168.0.68.0/22 265230 -168.0.72.0/22 265245 -168.0.76.0/22 263010 -168.0.80.0/22 265225 -168.0.84.0/22 27781 -168.0.88.0/22 265233 -168.0.92.0/22 265231 -168.0.96.0/22 265234 -168.0.100.0/22 265232 -168.0.104.0/22 262557 -168.0.108.0/22 262791 -168.0.112.0/22 265249 -168.0.116.0/22 265250 -168.0.120.0/22 265251 -168.0.124.0/23 265253 -168.0.126.0/24 265253 -168.0.128.0/22 263069 -168.0.132.0/22 265262 -168.0.136.0/22 265259 -168.0.140.0/22 262565 -168.0.144.0/22 52560 -168.0.148.0/22 265252 -168.0.152.0/23 265258 -168.0.155.0/24 265258 -168.0.156.0/22 265256 -168.0.160.0/22 262907 -168.0.164.0/22 265254 -168.0.168.0/22 265257 -168.0.172.0/22 265303 -168.0.176.0/22 265286 -168.0.180.0/24 61568 -168.0.181.0/24 265274 -168.0.182.0/23 265274 -168.0.184.0/22 27927 -168.0.188.0/22 52829 -168.0.192.0/22 264359 -168.0.196.0/22 265265 -168.0.200.0/22 264672 -168.0.204.0/23 52481 -168.0.212.0/22 52393 -168.0.216.0/22 262387 -168.0.220.0/22 265504 -168.0.224.0/22 265260 -168.0.228.0/22 265270 -168.0.232.0/22 265261 -168.0.236.0/22 52872 -168.0.240.0/22 262408 -168.0.244.0/22 13489 -168.0.248.0/22 262755 -168.0.252.0/22 262854 -168.1.0.0/16 36351 -168.2.0.0/15 8 -168.4.0.0/14 8 -168.8.0.0/19 3480 -168.8.32.0/20 3480 -168.8.48.0/21 3480 -168.8.56.0/22 46745 -168.8.60.0/22 3480 -168.8.64.0/18 3480 -168.8.128.0/18 3480 -168.8.192.0/20 3480 -168.8.208.0/21 394723 -168.8.216.0/21 3480 -168.8.224.0/20 3480 -168.8.240.0/20 18838 -168.9.0.0/20 18838 -168.9.16.0/23 3480 -168.9.18.0/24 3480 -168.9.19.0/24 397498 -168.9.20.0/23 3480 -168.9.22.0/24 13726 -168.9.23.0/24 3480 -168.9.24.0/23 3480 -168.9.26.0/24 25964 -168.9.27.0/24 3480 -168.9.28.0/22 3480 -168.9.32.0/23 3480 -168.9.34.0/24 29926 -168.9.35.0/24 3480 -168.9.36.0/22 3480 -168.9.40.0/23 3480 -168.9.42.0/24 3480 -168.9.43.0/24 40240 -168.9.44.0/22 3480 -168.9.48.0/21 3480 -168.9.56.0/23 3480 -168.9.58.0/24 25964 -168.9.59.0/24 3480 -168.9.60.0/22 3480 -168.9.64.0/19 3480 -168.9.96.0/20 3480 -168.9.112.0/21 3480 -168.9.120.0/24 395812 -168.9.121.0/24 3480 -168.9.122.0/23 3480 -168.9.124.0/22 3480 -168.9.128.0/18 3480 -168.9.192.0/20 55260 -168.9.208.0/23 3480 -168.9.210.0/24 63165 -168.9.211.0/24 3480 -168.9.212.0/23 46830 -168.9.214.0/24 40109 -168.9.215.0/24 3480 -168.9.216.0/21 3480 -168.9.224.0/19 3480 -168.10.0.0/20 3480 -168.10.16.0/21 3480 -168.10.24.0/23 3480 -168.10.26.0/24 16855 -168.10.27.0/24 3480 -168.10.28.0/22 3480 -168.10.32.0/19 3480 -168.10.64.0/18 3480 -168.10.128.0/18 3480 -168.10.192.0/19 3480 -168.10.224.0/20 3480 -168.10.240.0/22 24134 -168.10.244.0/22 3480 -168.10.248.0/21 3480 -168.11.0.0/16 3480 -168.12.0.0/16 3480 -168.13.0.0/16 3479 -168.14.0.0/15 3479 -168.16.0.0/12 3479 -168.32.0.0/12 1761 -168.48.0.0/13 1761 -168.56.0.0/14 1761 -168.60.0.0/18 1761 -168.60.64.0/21 1761 -168.60.72.0/22 52493 -168.60.76.0/22 1761 -168.60.80.0/20 1761 -168.60.96.0/19 1761 -168.60.128.0/17 1761 -168.61.0.0/16 8075 -168.62.0.0/15 8075 -168.65.18.0/23 25716 -168.65.48.0/21 3654 -168.65.64.0/23 6661 -168.65.161.0/24 40913 -168.65.224.0/20 25716 -168.67.1.0/24 12245 -168.67.2.0/24 12245 -168.67.7.0/24 12245 -168.68.0.0/16 4152 -168.69.134.0/24 1439 -168.69.253.0/24 395868 -168.69.254.0/23 394001 -168.70.0.0/17 4760 -168.70.128.0/20 4515 -168.70.144.0/22 4515 -168.70.148.0/23 4515 -168.70.150.0/24 135146 -168.70.151.0/24 4515 -168.70.152.0/21 4515 -168.70.160.0/21 4515 -168.70.168.0/23 4515 -168.70.170.0/24 4515 -168.70.171.0/24 135146 -168.70.172.0/22 4515 -168.70.176.0/22 4760 -168.70.180.0/22 4515 -168.70.184.0/21 4515 -168.70.192.0/18 4515 -168.71.0.0/16 7018 -168.75.0.0/19 4544 -168.75.32.0/20 4544 -168.75.48.0/20 4166 -168.75.64.0/20 4544 -168.75.80.0/20 197832 -168.75.96.0/20 4544 -168.75.112.0/20 14135 -168.75.128.0/20 4544 -168.75.144.0/20 14135 -168.75.160.0/20 14135 -168.75.176.0/20 4544 -168.75.192.0/20 4544 -168.75.208.0/20 14135 -168.75.224.0/19 4544 -168.77.0.0/19 3551 -168.77.32.0/20 3551 -168.77.48.0/21 3551 -168.77.56.0/23 3551 -168.77.59.0/24 3551 -168.77.60.0/22 3551 -168.77.64.0/18 3551 -168.77.128.0/18 3551 -168.77.192.0/21 3551 -168.77.200.0/22 3551 -168.77.204.0/22 23414 -168.77.208.0/23 3551 -168.77.210.0/23 52336 -168.77.212.0/23 52336 -168.77.214.0/24 52446 -168.77.215.0/24 3551 -168.77.216.0/21 3551 -168.77.224.0/19 3551 -168.78.0.0/17 18300 -168.78.128.0/18 18300 -168.78.192.0/19 18300 -168.78.224.0/20 18300 -168.78.240.0/21 18300 -168.78.248.0/22 18300 -168.78.252.0/23 18300 -168.78.254.0/24 18300 -168.80.0.0/24 57717 -168.80.1.0/24 49335 -168.80.2.0/24 19969 -168.80.3.0/24 9009 -168.80.4.0/22 19969 -168.80.8.0/22 45671 -168.80.12.0/22 63018 -168.80.16.0/22 45671 -168.80.20.0/22 19969 -168.80.24.0/22 132335 -168.80.28.0/22 9009 -168.80.32.0/22 62355 -168.80.36.0/22 19969 -168.80.40.0/24 132335 -168.80.41.0/24 9009 -168.80.42.0/23 9009 -168.80.44.0/22 9009 -168.80.48.0/22 62355 -168.80.52.0/22 19969 -168.80.56.0/24 132335 -168.80.57.0/24 9009 -168.80.60.0/22 9009 -168.80.64.0/22 62355 -168.80.68.0/22 19969 -168.80.72.0/22 132335 -168.80.76.0/22 62355 -168.80.84.0/22 19969 -168.80.88.0/22 62355 -168.80.92.0/22 9009 -168.80.100.0/22 19969 -168.80.104.0/22 132335 -168.80.108.0/22 62355 -168.80.112.0/22 62355 -168.80.116.0/22 19969 -168.80.120.0/22 43092 -168.80.124.0/22 62355 -168.80.128.0/22 62355 -168.80.132.0/22 19969 -168.80.136.0/21 62355 -168.80.144.0/22 62355 -168.80.148.0/22 19969 -168.80.152.0/21 62355 -168.80.164.0/22 19969 -168.80.180.0/22 19969 -168.80.188.0/22 62355 -168.80.196.0/22 19969 -168.80.200.0/22 9009 -168.80.212.0/22 19969 -168.80.220.0/22 19969 -168.80.228.0/22 19969 -168.80.232.0/22 23679 -168.80.236.0/22 62355 -168.80.240.0/22 23679 -168.80.244.0/22 19969 -168.80.248.0/21 23679 -168.81.4.0/22 19969 -168.81.12.0/24 57717 -168.81.15.0/24 57717 -168.81.20.0/22 19969 -168.81.36.0/22 19969 -168.81.40.0/22 132335 -168.81.44.0/22 43092 -168.81.52.0/22 19969 -168.81.56.0/24 19969 -168.81.57.0/24 49335 -168.81.58.0/24 19969 -168.81.59.0/24 49335 -168.81.60.0/22 63018 -168.81.68.0/22 19969 -168.81.72.0/22 132335 -168.81.76.0/22 9009 -168.81.84.0/22 19969 -168.81.92.0/22 9009 -168.81.100.0/22 19969 -168.81.116.0/22 19969 -168.81.132.0/22 19969 -168.81.136.0/21 9009 -168.81.144.0/22 9009 -168.81.148.0/22 19969 -168.81.152.0/21 9009 -168.81.160.0/22 9009 -168.81.164.0/22 19969 -168.81.168.0/22 9009 -168.81.172.0/22 62355 -168.81.176.0/22 9009 -168.81.180.0/22 19969 -168.81.184.0/22 9009 -168.81.188.0/22 36351 -168.81.192.0/22 62355 -168.81.196.0/22 19969 -168.81.200.0/22 56611 -168.81.204.0/22 262287 -168.81.209.0/24 9009 -168.81.211.0/24 9009 -168.81.212.0/22 19969 -168.81.216.0/23 13737 -168.81.218.0/23 11990 -168.81.220.0/22 56611 -168.81.224.0/21 19969 -168.81.232.0/22 62355 -168.81.236.0/22 36351 -168.81.240.0/22 62355 -168.81.244.0/22 19969 -168.81.248.0/22 132335 -168.81.255.0/24 43092 -168.82.1.0/24 8103 -168.82.8.0/24 8103 -168.82.11.0/24 8103 -168.82.12.0/23 8103 -168.82.21.0/24 8103 -168.82.22.0/23 8103 -168.82.25.0/24 8103 -168.82.26.0/24 8103 -168.82.28.0/24 8103 -168.82.31.0/24 8103 -168.82.32.0/22 8103 -168.82.36.0/24 8103 -168.82.39.0/24 8103 -168.82.40.0/23 8103 -168.82.42.0/24 8103 -168.82.44.0/24 8103 -168.82.56.0/23 8103 -168.82.58.0/24 8103 -168.82.60.0/23 8103 -168.82.66.0/24 8103 -168.82.71.0/24 8103 -168.82.72.0/24 8103 -168.82.75.0/24 8103 -168.82.80.0/23 8103 -168.82.82.0/24 8103 -168.82.97.0/24 8103 -168.82.101.0/24 8103 -168.82.103.0/24 8103 -168.82.104.0/22 8103 -168.82.108.0/24 8103 -168.82.110.0/23 8103 -168.82.112.0/24 8103 -168.82.119.0/24 8103 -168.82.175.0/24 8103 -168.82.201.0/24 8103 -168.82.203.0/24 8103 -168.82.204.0/22 8103 -168.82.208.0/24 8103 -168.82.210.0/23 8103 -168.82.212.0/23 8103 -168.82.219.0/24 8103 -168.82.222.0/23 8103 -168.82.228.0/24 8103 -168.82.231.0/24 8103 -168.82.232.0/22 8103 -168.82.236.0/24 8103 -168.82.241.0/24 8103 -168.82.244.0/24 8103 -168.82.248.0/24 8103 -168.83.0.0/20 4387 -168.83.20.0/23 10277 -168.83.26.0/24 4387 -168.83.30.0/23 4387 -168.83.32.0/23 4387 -168.83.64.0/22 4387 -168.83.72.0/21 10277 -168.83.80.0/20 10277 -168.83.128.0/20 4387 -168.85.0.0/16 7018 -168.86.252.0/23 36665 -168.86.254.0/24 36665 -168.86.255.0/24 33561 -168.87.0.0/22 2129 -168.87.8.0/22 2129 -168.87.16.0/22 2159 -168.87.20.0/22 2129 -168.87.24.0/24 2164 -168.87.50.0/23 2129 -168.87.52.0/23 25886 -168.87.64.0/21 25886 -168.87.72.0/21 2161 -168.87.80.0/20 132121 -168.87.96.0/20 132095 -168.87.112.0/24 19647 -168.87.115.0/24 19647 -168.87.120.0/21 2160 -168.87.130.0/24 2164 -168.87.136.0/22 19647 -168.87.140.0/23 701 -168.87.142.0/24 701 -168.87.144.0/20 25867 -168.87.160.0/22 19647 -168.88.14.0/24 12075 -168.88.60.0/22 12075 -168.88.64.0/22 12075 -168.88.70.0/24 12075 -168.88.72.0/24 12075 -168.88.74.0/23 12075 -168.88.100.0/23 33662 -168.88.116.0/23 7545 -168.88.118.0/24 7545 -168.88.124.0/23 12075 -168.88.126.0/24 12075 -168.88.224.0/24 12075 -168.89.0.0/16 3741 -168.90.0.0/22 61678 -168.90.4.0/22 265277 -168.90.8.0/22 28075 -168.90.12.0/22 27951 -168.90.16.0/22 265271 -168.90.20.0/22 52573 -168.90.24.0/22 263321 -168.90.28.0/22 263046 -168.90.32.0/22 265263 -168.90.36.0/22 264236 -168.90.40.0/22 265266 -168.90.44.0/22 263032 -168.90.48.0/22 265264 -168.90.52.0/22 265314 -168.90.56.0/22 265278 -168.90.60.0/22 265267 -168.90.64.0/22 265268 -168.90.68.0/22 11888 -168.90.72.0/24 52493 -168.90.76.0/22 52971 -168.90.80.0/22 262988 -168.90.84.0/22 27984 -168.90.88.0/22 265269 -168.90.92.0/22 8053 -168.90.96.0/22 52485 -168.90.100.0/22 265307 -168.90.104.0/22 265310 -168.90.108.0/22 27729 -168.90.112.0/22 265187 -168.90.116.0/22 262330 -168.90.120.0/22 53175 -168.90.124.0/22 264446 -168.90.132.0/22 265287 -168.90.136.0/22 265275 -168.90.140.0/22 265276 -168.90.144.0/22 265272 -168.90.148.0/22 265285 -168.90.152.0/22 52670 -168.90.156.0/22 52439 -168.90.160.0/22 27955 -168.90.164.0/22 265288 -168.90.168.0/22 265297 -168.90.172.0/22 26592 -168.90.176.0/22 264705 -168.90.180.0/22 262491 -168.90.184.0/22 28580 -168.90.188.0/22 265280 -168.90.192.0/22 265281 -168.90.196.0/22 264850 -168.90.200.0/22 265289 -168.90.204.0/22 265290 -168.90.208.0/22 265282 -168.90.212.0/22 265295 -168.90.216.0/22 265296 -168.90.220.0/22 7004 -168.90.224.0/22 263276 -168.90.228.0/22 262862 -168.90.232.0/22 14178 -168.90.236.0/22 265309 -168.90.240.0/22 61579 -168.90.244.0/22 201341 -168.90.248.0/22 265298 -168.90.252.0/22 264669 -168.91.0.0/21 19217 -168.91.8.0/21 64267 -168.91.16.0/20 397545 -168.91.32.0/20 64267 -168.91.48.0/21 397029 -168.91.56.0/21 54614 -168.91.64.0/22 19437 -168.91.68.0/22 46261 -168.91.72.0/24 46261 -168.91.73.0/24 21743 -168.91.74.0/23 19437 -168.91.76.0/22 20454 -168.91.80.0/22 33083 -168.91.84.0/22 20454 -168.91.88.0/22 17090 -168.91.92.0/23 46261 -168.91.94.0/24 31863 -168.91.95.0/24 19437 -168.91.96.0/22 42831 -168.91.100.0/22 9009 -168.91.104.0/22 19437 -168.91.108.0/23 19437 -168.91.110.0/23 61317 -168.91.112.0/22 9009 -168.91.116.0/24 19437 -168.91.117.0/24 9009 -168.91.118.0/23 23470 -168.91.120.0/24 9009 -168.91.121.0/24 55803 -168.91.122.0/23 18779 -168.91.124.0/23 19437 -168.91.126.0/24 23470 -168.91.127.0/24 19437 -168.91.128.0/17 6079 -168.92.0.0/19 16399 -168.92.128.0/17 2707 -168.93.64.0/18 16399 -168.93.128.0/18 16399 -168.94.0.0/17 11596 -168.94.128.0/19 11596 -168.94.160.0/21 11596 -168.94.168.0/22 11596 -168.94.172.0/23 11596 -168.94.174.0/23 26086 -168.94.176.0/21 11596 -168.94.184.0/23 11596 -168.94.186.0/24 11596 -168.94.187.0/24 26086 -168.94.188.0/22 11596 -168.94.192.0/18 11596 -168.95.0.0/17 3462 -168.95.128.0/18 3462 -168.95.192.0/19 3462 -168.95.224.0/20 3462 -168.95.240.0/22 3462 -168.95.244.0/24 3462 -168.95.245.0/24 9680 -168.95.246.0/23 3462 -168.95.248.0/21 3462 -168.96.0.0/16 3597 -168.97.142.0/23 23377 -168.97.150.0/23 23377 -168.97.168.0/21 23377 -168.97.176.0/20 23377 -168.97.248.0/24 23377 -168.97.250.0/23 23377 -168.98.0.0/19 17130 -168.98.32.0/20 17130 -168.98.48.0/21 17130 -168.98.56.0/22 701 -168.98.60.0/22 2688 -168.98.64.0/18 17130 -168.98.128.0/17 17130 -168.99.0.0/19 10430 -168.99.32.0/20 10506 -168.99.48.0/21 10506 -168.99.56.0/22 10506 -168.99.60.0/22 10430 -168.99.64.0/18 10430 -168.99.128.0/19 10430 -168.99.160.0/19 55268 -168.99.192.0/18 30075 -168.100.0.0/21 3700 -168.100.8.0/22 3700 -168.100.12.0/23 3700 -168.100.14.0/24 19794 -168.100.15.0/24 3700 -168.100.16.0/20 3700 -168.100.32.0/19 3700 -168.100.64.0/18 3700 -168.100.128.0/19 3700 -168.100.160.0/22 3700 -168.100.164.0/23 3700 -168.100.166.0/24 46405 -168.100.167.0/24 3700 -168.100.168.0/21 3700 -168.100.176.0/20 3700 -168.100.192.0/18 3700 -168.101.0.0/16 7417 -168.102.0.0/17 33491 -168.102.128.0/21 6461 -168.102.136.0/24 13428 -168.102.137.0/24 6461 -168.102.138.0/23 6461 -168.102.140.0/22 6461 -168.103.0.0/16 209 -168.105.0.0/16 6360 -168.106.2.0/23 17706 -168.106.5.0/24 17706 -168.106.22.0/24 17706 -168.110.95.0/24 7046 -168.111.0.0/16 23162 -168.112.0.0/20 36026 -168.114.50.0/23 27285 -168.114.52.0/24 27285 -168.114.55.0/24 27285 -168.114.99.0/24 10647 -168.114.112.0/22 27285 -168.114.120.0/22 27285 -168.114.131.0/24 27285 -168.114.167.0/24 27285 -168.114.172.0/22 27285 -168.114.218.0/24 10647 -168.114.219.0/24 27285 -168.114.220.0/23 27285 -168.114.236.0/23 27285 -168.114.238.0/24 27285 -168.114.240.0/23 10647 -168.114.248.0/24 27285 -168.114.254.0/23 27285 -168.115.0.0/16 9753 -168.116.8.0/24 4546 -168.116.32.0/22 4546 -168.116.36.0/24 4546 -168.116.38.0/24 4546 -168.120.0.0/16 4274 -168.121.0.0/22 265292 -168.121.4.0/22 265304 -168.121.8.0/22 265305 -168.121.12.0/22 265293 -168.121.16.0/22 263072 -168.121.20.0/22 264390 -168.121.24.0/22 265294 -168.121.28.0/22 265306 -168.121.32.0/22 61519 -168.121.36.0/22 52465 -168.121.40.0/22 265299 -168.121.44.0/22 27843 -168.121.48.0/22 27843 -168.121.52.0/22 262509 -168.121.56.0/22 264675 -168.121.60.0/22 28409 -168.121.64.0/22 262838 -168.121.68.0/22 265300 -168.121.72.0/22 265302 -168.121.76.0/22 265301 -168.121.80.0/24 264707 -168.121.82.0/24 264707 -168.121.84.0/22 52398 -168.121.88.0/22 265308 -168.121.92.0/22 262907 -168.121.96.0/22 265317 -168.121.100.0/22 262468 -168.121.104.0/22 265320 -168.121.108.0/22 262492 -168.121.112.0/22 265311 -168.121.116.0/22 27976 -168.121.120.0/22 263592 -168.121.124.0/22 264602 -168.121.128.0/22 28005 -168.121.132.0/22 264149 -168.121.136.0/22 265312 -168.121.140.0/22 265322 -168.121.144.0/22 263596 -168.121.148.0/22 262493 -168.121.152.0/22 265313 -168.121.156.0/22 263421 -168.121.160.0/22 264158 -168.121.164.0/22 265318 -168.121.168.0/22 52545 -168.121.172.0/22 265321 -168.121.176.0/22 265315 -168.121.180.0/22 265319 -168.121.184.0/22 28000 -168.121.188.0/22 262777 -168.121.192.0/22 263073 -168.121.196.0/22 262893 -168.121.200.0/22 265066 -168.121.204.0/22 265323 -168.121.208.0/22 262196 -168.121.212.0/22 61518 -168.121.216.0/22 264316 -168.121.220.0/22 27843 -168.121.224.0/22 264100 -168.121.228.0/22 262394 -168.121.232.0/22 264238 -168.121.236.0/22 27843 -168.121.240.0/23 265506 -168.121.243.0/24 1000 -168.121.248.0/22 262966 -168.121.252.0/22 28163 -168.122.0.0/16 111 -168.123.0.0/16 395400 -168.124.0.0/16 36291 -168.126.0.0/20 4766 -168.126.16.0/21 4766 -168.126.24.0/23 4766 -168.126.26.0/24 4766 -168.126.27.0/24 9490 -168.126.28.0/22 4766 -168.126.32.0/19 4766 -168.126.64.0/20 4766 -168.126.80.0/22 45399 -168.126.84.0/22 4766 -168.126.88.0/21 4766 -168.126.96.0/20 4766 -168.126.112.0/21 4766 -168.126.120.0/22 17841 -168.126.124.0/22 4766 -168.126.128.0/18 4766 -168.126.192.0/20 4766 -168.126.208.0/23 4766 -168.126.210.0/24 4766 -168.126.211.0/24 38695 -168.126.212.0/22 4766 -168.126.216.0/21 4766 -168.126.224.0/20 4766 -168.126.240.0/22 4766 -168.126.244.0/24 38695 -168.126.245.0/24 9767 -168.126.246.0/23 4766 -168.126.248.0/21 4766 -168.127.0.0/19 16831 -168.127.32.0/22 16831 -168.127.36.0/23 16831 -168.127.38.0/24 16831 -168.127.39.0/24 9466 -168.127.40.0/21 9466 -168.127.48.0/23 16831 -168.127.50.0/24 16831 -168.127.51.0/24 9466 -168.127.52.0/22 16831 -168.127.56.0/21 16831 -168.127.64.0/18 16831 -168.127.128.0/17 16831 -168.128.0.0/19 27435 -168.128.32.0/21 27435 -168.128.48.0/21 27435 -168.128.56.0/22 27435 -168.128.64.0/21 44568 -168.128.72.0/21 132084 -168.128.80.0/21 27435 -168.128.96.0/21 27435 -168.128.104.0/21 44568 -168.128.112.0/21 132084 -168.128.120.0/21 27435 -168.128.129.0/24 27435 -168.128.130.0/24 27435 -168.128.134.0/23 27435 -168.128.144.0/21 27435 -168.128.152.0/22 27435 -168.128.248.0/21 27435 -168.131.0.0/16 10197 -168.132.0.0/16 18191 -168.133.0.0/16 30070 -168.134.0.0/24 1221 -168.134.3.0/24 4637 -168.135.4.0/23 17229 -168.135.110.0/23 395000 -168.135.112.0/21 395000 -168.135.120.0/23 395000 -168.135.189.0/24 10379 -168.135.190.0/24 7018 -168.135.191.0/24 30447 -168.137.0.0/24 26989 -168.137.2.0/24 26989 -168.137.4.0/23 26989 -168.137.40.0/23 26989 -168.137.44.0/24 26989 -168.137.100.0/22 26989 -168.137.104.0/23 26989 -168.138.0.0/18 31898 -168.138.64.0/19 31898 -168.138.96.0/21 31898 -168.138.128.0/21 31898 -168.140.176.0/22 10128 -168.140.180.0/23 10128 -168.140.182.0/24 10128 -168.140.187.0/24 7474 -168.140.188.0/24 10128 -168.140.229.0/24 10128 -168.141.0.0/16 53585 -168.142.0.0/16 3741 -168.143.0.0/18 2914 -168.143.64.0/20 2914 -168.143.80.0/20 27435 -168.143.96.0/19 2914 -168.143.128.0/18 2914 -168.143.192.0/20 2914 -168.143.208.0/22 2914 -168.143.212.0/23 2914 -168.143.214.0/24 20940 -168.143.215.0/24 2914 -168.143.216.0/21 2914 -168.143.224.0/21 2914 -168.143.232.0/22 2914 -168.143.236.0/24 174 -168.143.237.0/24 2914 -168.143.238.0/23 2914 -168.143.240.0/22 20940 -168.143.244.0/22 2914 -168.143.248.0/22 2914 -168.143.252.0/24 393234 -168.143.253.0/24 2914 -168.143.254.0/24 32787 -168.143.255.0/24 393560 -168.145.96.0/19 17029 -168.146.64.0/23 11892 -168.146.66.0/23 30682 -168.146.68.0/23 11892 -168.146.70.0/24 30682 -168.146.72.0/21 11892 -168.146.80.0/22 29016 -168.146.96.0/22 9823 -168.146.100.0/24 9823 -168.146.122.0/23 11892 -168.146.124.0/24 11892 -168.149.0.0/17 25019 -168.149.128.0/22 27471 -168.149.137.0/24 27471 -168.149.138.0/23 27471 -168.149.140.0/22 27471 -168.149.144.0/22 27471 -168.149.148.0/23 27471 -168.149.150.0/23 396982 -168.149.156.0/24 27471 -168.149.159.0/24 27471 -168.149.160.0/23 27471 -168.149.162.0/24 27471 -168.149.170.0/23 27471 -168.149.181.0/24 27471 -168.149.192.0/19 397050 -168.149.224.0/20 53913 -168.149.240.0/23 14618 -168.149.242.0/23 16509 -168.149.244.0/23 16509 -168.149.246.0/24 14618 -168.149.247.0/24 16509 -168.149.248.0/23 203872 -168.149.252.0/23 23444 -168.149.254.0/24 23444 -168.150.0.0/17 6192 -168.150.177.0/24 7065 -168.150.182.0/23 23387 -168.150.192.0/22 23387 -168.150.196.0/24 23387 -168.150.221.0/24 23387 -168.150.224.0/22 23387 -168.150.230.0/23 23387 -168.150.232.0/23 23387 -168.150.234.0/24 23387 -168.150.235.0/24 7065 -168.150.238.0/24 7065 -168.150.240.0/22 7065 -168.150.244.0/22 23387 -168.150.248.0/22 23387 -168.150.253.0/24 23387 -168.150.254.0/24 23387 -168.151.0.0/22 3502 -168.151.4.0/23 3502 -168.151.6.0/24 3502 -168.151.9.0/24 3502 -168.151.10.0/24 22188 -168.151.11.0/24 3502 -168.151.16.0/24 3502 -168.151.17.0/24 15290 -168.151.18.0/23 395353 -168.151.21.0/24 3502 -168.151.25.0/24 397408 -168.151.26.0/24 18637 -168.151.28.0/24 3502 -168.151.29.0/24 20473 -168.151.30.0/24 14618 -168.151.32.0/21 204472 -168.151.40.0/23 138633 -168.151.43.0/24 3502 -168.151.44.0/23 204472 -168.151.46.0/24 204472 -168.151.47.0/24 3502 -168.151.48.0/23 204472 -168.151.50.0/24 3502 -168.151.51.0/24 204472 -168.151.52.0/23 204472 -168.151.54.0/24 3502 -168.151.56.0/22 204472 -168.151.60.0/23 204472 -168.151.62.0/24 3502 -168.151.63.0/24 204472 -168.151.64.0/24 204472 -168.151.65.0/24 3502 -168.151.66.0/23 204472 -168.151.68.0/24 3502 -168.151.69.0/24 204472 -168.151.72.0/24 3502 -168.151.73.0/24 204472 -168.151.74.0/24 204472 -168.151.75.0/24 3502 -168.151.76.0/22 204472 -168.151.80.0/24 204472 -168.151.81.0/24 3502 -168.151.82.0/23 204472 -168.151.84.0/23 204472 -168.151.86.0/24 204472 -168.151.87.0/24 3502 -168.151.88.0/22 204472 -168.151.92.0/24 3502 -168.151.93.0/24 204472 -168.151.94.0/24 204472 -168.151.95.0/24 3502 -168.151.96.0/20 204472 -168.151.112.0/24 3502 -168.151.113.0/24 204472 -168.151.114.0/23 204472 -168.151.116.0/24 204472 -168.151.117.0/24 3502 -168.151.118.0/23 204472 -168.151.120.0/23 204472 -168.151.122.0/24 3502 -168.151.123.0/24 204472 -168.151.124.0/23 204472 -168.151.126.0/24 204472 -168.151.127.0/24 3502 -168.151.128.0/23 204472 -168.151.130.0/24 3502 -168.151.131.0/24 204472 -168.151.132.0/22 204472 -168.151.136.0/24 204472 -168.151.137.0/24 3502 -168.151.138.0/23 204472 -168.151.140.0/22 204472 -168.151.145.0/24 3502 -168.151.146.0/23 3502 -168.151.148.0/22 3502 -168.151.152.0/23 3502 -168.151.154.0/24 3502 -168.151.155.0/24 204472 -168.151.157.0/24 3502 -168.151.158.0/24 3502 -168.151.159.0/24 204472 -168.151.160.0/20 3502 -168.151.176.0/21 3502 -168.151.184.0/23 3502 -168.151.186.0/24 3502 -168.151.187.0/24 204472 -168.151.192.0/20 3502 -168.151.208.0/21 3502 -168.151.216.0/24 3502 -168.151.217.0/24 204472 -168.151.218.0/23 204472 -168.151.220.0/24 3502 -168.151.221.0/24 204472 -168.151.224.0/24 204472 -168.151.225.0/24 3502 -168.151.226.0/23 3502 -168.151.228.0/23 3502 -168.151.232.0/23 3502 -168.151.234.0/24 3502 -168.151.235.0/24 204472 -168.151.236.0/23 204472 -168.151.238.0/24 3502 -168.151.239.0/24 204472 -168.151.240.0/21 3502 -168.151.248.0/22 3502 -168.151.252.0/24 3502 -168.151.253.0/24 204472 -168.151.254.0/24 3502 -168.153.0.0/24 2764 -168.153.1.0/24 133036 -168.153.2.0/24 133602 -168.153.100.0/24 23477 -168.153.107.0/24 12888 -168.153.108.0/22 12888 -168.154.0.0/17 10049 -168.154.128.0/19 10049 -168.154.160.0/20 10049 -168.154.176.0/22 10049 -168.154.180.0/24 10049 -168.154.181.0/24 17607 -168.154.182.0/23 10049 -168.154.184.0/21 10049 -168.154.192.0/19 10049 -168.154.224.0/23 10049 -168.154.226.0/24 17607 -168.154.227.0/24 10049 -168.154.228.0/24 17607 -168.154.229.0/24 10049 -168.154.230.0/23 10049 -168.154.232.0/21 10049 -168.154.240.0/20 10049 -168.155.16.0/24 37314 -168.156.0.0/18 10430 -168.156.64.0/20 10430 -168.156.80.0/20 17200 -168.156.96.0/19 17200 -168.156.128.0/17 10430 -168.158.0.0/20 20012 -168.158.16.0/21 20012 -168.158.24.0/23 20012 -168.158.26.0/23 10835 -168.158.28.0/23 10835 -168.158.30.0/24 10835 -168.158.31.0/24 20012 -168.158.32.0/19 20012 -168.158.64.0/18 20012 -168.158.128.0/18 20012 -168.158.215.0/24 20012 -168.158.217.0/24 20012 -168.158.224.0/22 54972 -168.159.3.0/24 12257 -168.159.144.0/21 17621 -168.159.152.0/22 17621 -168.159.156.0/23 17621 -168.159.158.0/24 17621 -168.159.160.0/20 12257 -168.159.192.0/19 12257 -168.159.224.0/20 12257 -168.160.0.0/17 38027 -168.160.158.0/23 38027 -168.160.160.0/21 38027 -168.160.224.0/19 4808 -168.161.8.0/23 62892 -168.161.12.0/22 40703 -168.161.16.0/21 62892 -168.161.97.0/24 40703 -168.161.192.0/21 36032 -168.161.200.0/22 36032 -168.161.206.0/24 36032 -168.161.210.0/23 36032 -168.161.217.0/24 36032 -168.161.218.0/23 36032 -168.161.220.0/24 36032 -168.161.224.0/24 36032 -168.161.225.0/24 11726 -168.161.226.0/24 398140 -168.161.239.0/24 36032 -168.161.247.0/24 27252 -168.164.0.0/16 37179 -168.165.0.0/16 19038 -168.166.0.0/16 393601 -168.167.0.0/16 14988 -168.168.15.0/24 43949 -168.168.16.0/22 43949 -168.168.22.0/23 43949 -168.168.24.0/21 43949 -168.168.32.0/22 43949 -168.168.36.0/24 43949 -168.168.38.0/23 43949 -168.168.40.0/21 21874 -168.168.48.0/21 21874 -168.168.56.0/23 21874 -168.168.60.0/22 21874 -168.168.64.0/24 21874 -168.168.254.0/23 17161 -168.169.0.0/16 25935 -168.170.0.0/16 2903 -168.171.0.0/16 26675 -168.172.0.0/16 2018 -168.173.0.0/16 32996 -168.174.0.0/16 32501 -168.175.178.0/24 4243 -168.176.0.0/17 5722 -168.176.128.0/19 5722 -168.176.160.0/23 5722 -168.176.162.0/24 5722 -168.176.168.0/21 5722 -168.176.176.0/24 5722 -168.176.180.0/23 5722 -168.176.183.0/24 5722 -168.176.184.0/23 5722 -168.176.189.0/24 5722 -168.176.190.0/24 5722 -168.176.193.0/24 5722 -168.176.195.0/24 5722 -168.176.196.0/22 5722 -168.176.205.0/24 5722 -168.176.207.0/24 5722 -168.176.208.0/22 5722 -168.176.212.0/24 5722 -168.176.214.0/23 5722 -168.176.216.0/23 5722 -168.176.220.0/24 5722 -168.176.222.0/24 5722 -168.176.224.0/19 5722 -168.177.0.0/16 11663 -168.178.0.0/15 11663 -168.180.0.0/17 11663 -168.180.128.0/20 11663 -168.180.144.0/21 11663 -168.180.152.0/23 11663 -168.180.154.0/24 210 -168.180.155.0/24 11663 -168.180.156.0/22 11663 -168.180.160.0/19 11663 -168.180.192.0/18 11663 -168.181.0.0/22 28294 -168.181.4.0/22 28213 -168.181.8.0/22 27843 -168.181.12.0/22 265335 -168.181.16.0/22 265326 -168.181.20.0/22 61580 -168.181.24.0/22 264673 -168.181.28.0/22 265329 -168.181.32.0/22 265327 -168.181.36.0/22 265343 -168.181.40.0/22 53029 -168.181.47.0/24 264674 -168.181.48.0/22 14868 -168.181.52.0/22 263821 -168.181.56.0/22 52956 -168.181.60.0/22 265330 -168.181.64.0/22 265328 -168.181.68.0/22 265357 -168.181.72.0/22 52432 -168.181.76.0/24 22011 -168.181.80.0/22 262336 -168.181.84.0/22 265331 -168.181.96.0/22 265336 -168.181.104.0/22 265334 -168.181.108.0/22 265339 -168.181.112.0/22 262300 -168.181.116.0/22 53218 -168.181.120.0/23 264847 -168.181.122.0/24 264847 -168.181.123.0/24 27696 -168.181.124.0/22 265356 -168.181.128.0/22 265340 -168.181.132.0/22 264862 -168.181.136.0/22 53025 -168.181.140.0/22 265337 -168.181.144.0/22 265348 -168.181.148.0/22 52579 -168.181.152.0/22 264295 -168.181.156.0/22 262769 -168.181.160.0/22 264686 -168.181.164.0/22 265341 -168.181.168.0/22 265338 -168.181.172.0/22 265342 -168.181.176.0/24 264769 -168.181.177.0/24 265784 -168.181.178.0/24 265704 -168.181.179.0/24 267720 -168.181.180.0/22 262604 -168.181.184.0/22 27823 -168.181.188.0/22 265346 -168.181.192.0/22 61748 -168.181.196.0/22 262296 -168.181.200.0/22 265344 -168.181.209.0/24 52436 -168.181.210.0/23 52436 -168.181.212.0/24 265345 -168.181.213.0/24 52872 -168.181.214.0/24 52872 -168.181.215.0/24 265345 -168.181.216.0/22 53178 -168.181.220.0/22 263918 -168.181.224.0/22 52718 -168.181.228.0/22 263829 -168.181.232.0/22 61753 -168.181.236.0/22 265351 -168.181.240.0/22 265358 -168.181.244.0/22 265359 -168.181.248.0/22 265349 -168.181.252.0/22 265347 -168.182.0.0/21 18522 -168.182.8.0/24 18522 -168.182.16.0/20 18522 -168.182.48.0/21 18522 -168.182.64.0/22 18522 -168.182.132.0/22 18522 -168.182.140.0/24 18522 -168.182.240.0/24 393536 -168.182.254.0/24 18522 -168.183.23.0/24 10879 -168.183.32.0/20 10879 -168.183.48.0/22 10879 -168.183.64.0/21 10879 -168.183.96.0/22 10879 -168.183.106.0/23 10879 -168.183.121.0/24 10879 -168.183.122.0/24 10879 -168.183.128.0/20 10879 -168.183.164.0/22 10879 -168.183.208.0/21 10879 -168.183.216.0/22 10879 -168.184.0.0/21 2386 -168.184.8.0/23 2386 -168.184.10.0/24 14138 -168.184.11.0/24 2386 -168.184.12.0/23 14138 -168.184.14.0/24 14138 -168.184.15.0/24 2386 -168.184.16.0/20 2386 -168.184.32.0/21 14138 -168.184.40.0/21 2386 -168.184.48.0/20 2386 -168.184.64.0/18 2386 -168.184.128.0/17 2386 -168.186.8.0/24 136604 -168.186.33.0/24 136604 -168.186.34.0/24 136604 -168.186.48.0/23 136604 -168.186.50.0/24 136604 -168.186.96.0/22 136604 -168.186.100.0/24 136604 -168.186.128.0/24 136604 -168.186.186.0/23 136604 -168.186.224.0/24 1221 -168.186.240.0/24 136604 -168.186.253.0/24 136604 -168.187.0.0/21 6412 -168.187.8.0/22 6412 -168.187.12.0/24 6412 -168.187.13.0/24 42781 -168.187.14.0/23 6412 -168.187.16.0/20 6412 -168.187.32.0/19 6412 -168.187.64.0/23 6412 -168.187.66.0/24 42781 -168.187.67.0/24 6412 -168.187.68.0/24 6412 -168.187.69.0/24 42781 -168.187.70.0/23 6412 -168.187.72.0/22 6412 -168.187.76.0/24 42781 -168.187.77.0/24 6412 -168.187.78.0/23 6412 -168.187.80.0/24 42781 -168.187.81.0/24 6412 -168.187.82.0/23 6412 -168.187.84.0/22 6412 -168.187.88.0/24 6412 -168.187.89.0/24 42781 -168.187.90.0/23 6412 -168.187.92.0/22 6412 -168.187.96.0/22 6412 -168.187.100.0/24 42781 -168.187.101.0/24 6412 -168.187.102.0/23 6412 -168.187.104.0/24 6412 -168.187.105.0/24 42781 -168.187.106.0/24 42781 -168.187.107.0/24 6412 -168.187.108.0/22 6412 -168.187.112.0/20 6412 -168.187.128.0/21 6412 -168.187.136.0/22 6412 -168.187.140.0/24 6412 -168.187.141.0/24 57278 -168.187.142.0/23 6412 -168.187.144.0/23 6412 -168.187.146.0/24 42781 -168.187.147.0/24 6412 -168.187.148.0/22 6412 -168.187.152.0/21 6412 -168.187.160.0/22 6412 -168.187.164.0/24 42781 -168.187.165.0/24 6412 -168.187.166.0/23 6412 -168.187.168.0/21 6412 -168.187.176.0/24 6412 -168.187.177.0/24 209068 -168.187.178.0/23 6412 -168.187.180.0/22 6412 -168.187.184.0/21 6412 -168.187.192.0/18 6412 -168.188.0.0/16 18298 -168.189.0.0/24 53526 -168.189.5.0/24 53526 -168.189.8.0/23 53526 -168.189.10.0/24 53526 -168.189.88.0/24 53526 -168.189.90.0/24 53526 -168.189.95.0/24 53526 -168.190.0.0/16 46255 -168.194.0.0/22 28411 -168.194.4.0/22 28580 -168.194.8.0/22 265388 -168.194.12.0/22 265377 -168.194.16.0/22 265389 -168.194.20.0/22 265383 -168.194.24.0/22 265390 -168.194.28.0/22 265375 -168.194.32.0/22 264743 -168.194.36.0/22 263581 -168.194.40.0/22 61694 -168.194.44.0/22 265378 -168.194.48.0/22 264005 -168.194.52.0/22 263699 -168.194.56.0/24 267513 -168.194.57.0/24 52861 -168.194.58.0/23 267513 -168.194.60.0/22 28287 -168.194.64.0/22 265379 -168.194.68.0/23 265380 -168.194.71.0/24 265380 -168.194.72.0/22 264764 -168.194.76.0/22 61878 -168.194.80.0/22 265395 -168.194.84.0/22 265386 -168.194.88.0/22 262913 -168.194.92.0/22 28294 -168.194.96.0/22 262645 -168.194.100.0/22 264783 -168.194.104.0/22 264528 -168.194.108.0/22 269750 -168.194.112.0/22 265403 -168.194.116.0/22 265399 -168.194.120.0/22 52568 -168.194.124.0/22 265387 -168.194.128.0/22 265404 -168.194.132.0/22 61811 -168.194.136.0/22 263395 -168.194.140.0/23 264754 -168.194.144.0/22 264238 -168.194.148.0/23 264744 -168.194.150.0/24 264744 -168.194.152.0/22 265405 -168.194.156.0/22 265396 -168.194.160.0/22 14868 -168.194.164.0/24 265181 -168.194.165.0/24 265393 -168.194.166.0/24 265181 -168.194.167.0/24 265393 -168.194.174.0/23 265391 -168.194.176.0/22 265400 -168.194.180.0/22 27747 -168.194.184.0/22 265397 -168.194.188.0/22 265407 -168.194.192.0/22 265394 -168.194.196.0/22 28099 -168.194.200.0/22 265440 -168.194.205.0/24 28075 -168.194.206.0/23 28075 -168.194.208.0/22 264349 -168.194.212.0/22 265409 -168.194.216.0/22 264760 -168.194.220.0/22 265412 -168.194.224.0/22 265401 -168.194.228.0/22 28580 -168.194.232.0/22 27984 -168.194.236.0/22 264444 -168.194.240.0/22 264770 -168.194.244.0/22 52604 -168.194.248.0/22 265414 -168.194.252.0/22 265415 -168.195.0.0/22 265410 -168.195.4.0/22 265406 -168.195.8.0/22 265418 -168.195.12.0/22 53186 -168.195.16.0/22 61655 -168.195.20.0/22 265419 -168.195.24.0/22 265424 -168.195.28.0/22 265425 -168.195.32.0/22 28128 -168.195.36.0/22 264752 -168.195.40.0/22 262323 -168.195.44.0/22 265408 -168.195.48.0/22 265420 -168.195.52.0/22 61484 -168.195.56.0/22 12956 -168.195.64.0/22 265413 -168.195.68.0/22 52999 -168.195.72.0/22 265411 -168.195.76.0/22 52449 -168.195.80.0/22 265429 -168.195.84.0/22 265416 -168.195.88.0/22 265430 -168.195.92.0/22 265443 -168.195.96.0/22 265417 -168.195.100.0/22 264228 -168.195.104.0/22 264543 -168.195.108.0/22 28114 -168.195.112.0/22 52639 -168.195.116.0/22 52481 -168.195.120.0/22 61478 -168.195.124.0/22 262241 -168.195.128.0/22 263702 -168.195.132.0/22 265434 -168.195.136.0/22 265421 -168.195.140.0/22 263498 -168.195.144.0/22 265279 -168.195.148.0/22 264432 -168.195.152.0/22 265435 -168.195.160.0/22 265423 -168.195.164.0/22 265426 -168.195.168.0/22 265436 -168.195.172.0/22 262544 -168.195.176.0/22 265437 -168.195.180.0/22 263276 -168.195.184.0/22 264761 -168.195.188.0/22 265439 -168.195.192.0/22 265427 -168.195.196.0/22 265428 -168.195.200.0/22 3549 -168.195.204.0/22 265509 -168.195.208.0/22 265432 -168.195.212.0/22 265438 -168.195.216.0/22 263799 -168.195.220.0/22 263421 -168.195.224.0/22 264756 -168.195.228.0/22 264486 -168.195.232.0/22 263089 -168.195.236.0/22 53143 -168.195.240.0/22 262982 -168.195.244.0/22 263943 -168.195.248.0/22 264087 -168.195.252.0/22 262373 -168.196.0.0/22 264757 -168.196.4.0/22 264508 -168.196.8.0/22 264241 -168.196.12.0/22 265441 -168.196.16.0/22 265185 -168.196.20.0/22 263665 -168.196.24.0/22 264758 -168.196.28.0/22 264253 -168.196.32.0/23 52436 -168.196.35.0/24 52436 -168.196.36.0/22 265453 -168.196.40.0/22 265442 -168.196.44.0/22 262360 -168.196.48.0/22 265445 -168.196.52.0/22 262468 -168.196.56.0/22 262908 -168.196.60.0/22 265464 -168.196.64.0/22 265452 -168.196.68.0/22 265454 -168.196.72.0/22 265446 -168.196.76.0/22 265455 -168.196.80.0/22 263582 -168.196.84.0/22 265447 -168.196.88.0/22 264111 -168.196.92.0/22 263010 -168.196.96.0/22 265459 -168.196.100.0/22 265448 -168.196.104.0/22 265451 -168.196.108.0/22 262819 -168.196.112.0/22 264767 -168.196.116.0/22 28604 -168.196.120.0/22 265460 -168.196.124.0/22 264821 -168.196.128.0/22 263289 -168.196.132.0/22 28343 -168.196.136.0/22 264367 -168.196.140.0/22 264768 -168.196.144.0/22 263994 -168.196.148.0/22 263640 -168.196.152.0/22 265461 -168.196.156.0/22 264771 -168.196.160.0/22 265465 -168.196.164.0/22 265468 -168.196.168.0/22 52777 -168.196.172.0/22 262469 -168.196.176.0/22 265466 -168.196.180.0/22 53184 -168.196.184.0/22 10778 -168.196.188.0/22 52848 -168.196.192.0/22 265457 -168.196.200.0/22 52341 -168.196.204.0/22 265470 -168.196.210.0/23 265471 -168.196.212.0/22 265472 -168.196.220.0/22 265462 -168.196.224.0/22 264765 -168.196.232.0/22 265467 -168.196.236.0/22 52485 -168.196.240.0/22 264677 -168.196.244.0/22 263801 -168.196.248.0/22 265474 -168.196.252.0/22 27976 -168.197.0.0/22 264460 -168.197.4.0/22 262550 -168.197.8.0/22 265480 -168.197.12.0/22 265463 -168.197.16.0/22 52947 -168.197.24.0/22 265475 -168.197.28.0/22 264985 -168.197.32.0/22 52599 -168.197.36.0/22 265476 -168.197.40.0/23 263114 -168.197.42.0/24 263114 -168.197.44.0/22 264781 -168.197.48.0/22 27823 -168.197.52.0/22 262880 -168.197.56.0/22 264025 -168.197.60.0/22 53043 -168.197.64.0/22 262979 -168.197.68.0/22 262191 -168.197.72.0/22 262748 -168.197.76.0/22 263656 -168.197.80.0/22 264386 -168.197.84.0/22 263518 -168.197.88.0/22 262213 -168.197.92.0/22 265478 -168.197.96.0/22 264763 -168.197.100.0/22 27759 -168.197.104.0/22 265477 -168.197.108.0/22 27781 -168.197.112.0/22 262646 -168.197.116.0/22 265481 -168.197.120.0/24 18734 -168.197.122.0/23 18734 -168.197.124.0/22 13591 -168.197.128.0/22 52864 -168.197.132.0/22 52468 -168.197.136.0/22 52872 -168.197.140.0/22 265482 -168.197.144.0/22 265487 -168.197.148.0/22 265483 -168.197.152.0/22 265484 -168.197.156.0/22 265485 -168.197.160.0/22 265493 -168.197.164.0/23 264786 -168.197.168.0/22 265494 -168.197.172.0/22 264773 -168.197.176.0/22 265488 -168.197.184.0/22 265497 -168.197.188.0/24 266688 -168.197.189.0/24 264788 -168.197.190.0/24 264788 -168.197.192.0/22 262394 -168.197.196.0/22 264787 -168.197.200.0/22 264774 -168.197.204.0/22 53139 -168.197.208.0/22 264779 -168.197.212.0/22 262868 -168.197.216.0/22 264784 -168.197.220.0/22 264297 -168.197.224.0/22 262729 -168.197.228.0/22 263252 -168.197.232.0/22 265486 -168.197.236.0/22 263982 -168.197.240.0/22 264789 -168.197.244.0/22 61908 -168.197.248.0/23 264776 -168.197.250.0/24 264776 -168.197.251.0/24 52507 -168.197.252.0/22 265489 -168.200.2.0/23 18693 -168.200.5.0/24 18693 -168.200.6.0/24 18693 -168.201.0.0/19 6167 -168.201.32.0/21 6167 -168.201.40.0/22 6167 -168.201.44.0/23 22394 -168.201.46.0/23 6167 -168.201.48.0/20 6167 -168.201.64.0/18 6167 -168.201.128.0/17 6167 -168.202.0.0/16 5535 -168.203.0.0/16 7317 -168.205.0.0/22 52399 -168.205.8.0/22 264676 -168.205.12.0/22 265361 -168.205.16.0/22 264882 -168.205.20.0/22 264875 -168.205.24.0/22 263151 -168.205.28.0/22 265360 -168.205.32.0/22 265350 -168.205.36.0/22 263880 -168.205.40.0/22 264877 -168.205.44.0/22 263674 -168.205.48.0/22 265363 -168.205.52.0/22 264861 -168.205.56.0/22 52528 -168.205.60.0/22 263641 -168.205.64.0/22 16973 -168.205.68.0/22 265354 -168.205.72.0/22 264677 -168.205.76.0/22 265355 -168.205.80.0/22 263631 -168.205.84.0/22 52780 -168.205.88.0/22 265364 -168.205.92.0/22 61493 -168.205.96.0/22 6568 -168.205.100.0/22 265369 -168.205.104.0/22 262519 -168.205.108.0/22 262683 -168.205.112.0/22 263958 -168.205.116.0/22 264678 -168.205.120.0/22 264679 -168.205.124.0/22 263661 -168.205.128.0/22 265365 -168.205.132.0/22 27843 -168.205.136.0/22 263145 -168.205.140.0/22 262642 -168.205.144.0/22 263140 -168.205.148.0/22 264381 -168.205.152.0/22 52944 -168.205.156.0/24 25933 -168.205.157.0/24 28250 -168.205.158.0/23 28250 -168.205.160.0/22 263740 -168.205.164.0/22 265370 -168.205.168.0/22 264864 -168.205.172.0/22 263982 -168.205.176.0/22 262459 -168.205.180.0/22 52794 -168.205.184.0/22 264692 -168.205.188.0/22 265366 -168.205.192.0/22 264868 -168.205.196.0/22 264860 -168.205.200.0/22 265371 -168.205.204.0/22 61466 -168.205.208.0/22 264865 -168.205.212.0/23 265372 -168.205.216.0/22 264869 -168.205.220.0/22 264866 -168.205.224.0/22 264867 -168.205.228.0/22 264870 -168.205.232.0/22 264871 -168.205.236.0/22 265367 -168.205.240.0/22 265368 -168.205.244.0/22 61795 -168.205.248.0/22 264863 -168.205.252.0/22 264892 -168.206.0.0/17 18013 -168.206.128.0/18 18013 -168.206.192.0/19 18013 -168.206.224.0/24 18013 -168.206.225.0/24 40065 -168.206.226.0/23 18013 -168.206.228.0/22 18013 -168.206.232.0/21 18013 -168.206.240.0/20 18013 -168.208.0.0/22 19380 -168.208.4.0/24 14551 -168.208.5.0/24 19380 -168.208.6.0/23 19380 -168.208.8.0/21 19380 -168.208.16.0/20 19380 -168.208.32.0/19 19380 -168.208.64.0/18 19380 -168.208.128.0/17 19380 -168.209.0.0/16 3741 -168.210.0.0/16 3741 -168.211.0.0/17 136525 -168.211.128.0/17 132165 -168.212.0.0/17 10430 -168.212.128.0/18 10430 -168.212.192.0/22 10430 -168.212.196.0/23 10430 -168.212.198.0/23 55268 -168.212.200.0/24 55268 -168.212.201.0/24 10430 -168.212.202.0/23 10430 -168.212.204.0/22 10430 -168.212.208.0/20 10430 -168.212.224.0/19 10430 -168.213.0.0/22 33363 -168.213.4.0/24 33363 -168.213.5.0/24 36300 -168.213.6.0/23 33363 -168.213.8.0/22 33363 -168.213.12.0/24 36300 -168.213.13.0/24 33363 -168.213.14.0/23 33363 -168.213.16.0/20 33363 -168.213.32.0/24 33363 -168.213.33.0/24 36300 -168.213.34.0/24 36300 -168.213.35.0/24 33363 -168.213.36.0/22 33363 -168.213.40.0/24 33363 -168.213.41.0/24 36300 -168.213.42.0/23 33363 -168.213.44.0/22 33363 -168.213.48.0/22 33363 -168.213.52.0/23 33363 -168.213.54.0/24 36300 -168.213.55.0/24 33363 -168.213.56.0/21 33363 -168.213.64.0/19 33363 -168.213.96.0/20 33363 -168.213.112.0/22 33363 -168.213.116.0/23 33363 -168.213.118.0/24 36300 -168.213.119.0/24 33363 -168.213.120.0/21 33363 -168.213.254.0/23 8103 -168.214.0.0/16 395789 -168.215.0.0/19 10753 -168.215.32.0/21 3549 -168.215.40.0/22 3549 -168.215.44.0/23 3549 -168.215.46.0/24 3549 -168.215.47.0/24 10753 -168.215.48.0/21 3549 -168.215.56.0/23 3549 -168.215.58.0/24 3549 -168.215.59.0/24 394546 -168.215.60.0/22 3549 -168.215.64.0/24 3549 -168.215.65.0/24 3356 -168.215.66.0/24 3549 -168.215.67.0/24 27608 -168.215.68.0/22 3549 -168.215.72.0/21 3549 -168.215.80.0/22 3549 -168.215.84.0/24 3549 -168.215.85.0/24 26729 -168.215.86.0/23 3549 -168.215.88.0/21 3549 -168.215.96.0/23 3549 -168.215.98.0/24 22984 -168.215.99.0/24 3549 -168.215.100.0/23 3549 -168.215.102.0/24 3549 -168.215.103.0/24 22984 -168.215.104.0/21 3549 -168.215.112.0/20 3549 -168.215.128.0/20 3549 -168.215.144.0/21 3549 -168.215.152.0/23 3549 -168.215.154.0/24 3549 -168.215.155.0/24 35863 -168.215.156.0/22 3549 -168.215.160.0/21 3549 -168.215.168.0/24 54266 -168.215.169.0/24 3549 -168.215.170.0/23 3549 -168.215.172.0/22 3549 -168.215.176.0/23 3549 -168.215.178.0/24 3549 -168.215.179.0/24 393603 -168.215.180.0/22 17156 -168.215.184.0/21 3549 -168.215.192.0/23 3549 -168.215.194.0/23 26729 -168.215.196.0/24 3549 -168.215.197.0/24 21679 -168.215.198.0/24 14060 -168.215.199.0/24 3549 -168.215.200.0/21 3549 -168.215.208.0/22 3549 -168.215.212.0/24 12210 -168.215.213.0/24 19881 -168.215.214.0/23 3549 -168.215.216.0/21 3549 -168.215.224.0/24 22153 -168.215.225.0/24 3549 -168.215.226.0/24 32532 -168.215.227.0/24 3549 -168.215.228.0/22 3549 -168.215.232.0/23 3549 -168.215.234.0/23 22153 -168.215.236.0/23 22153 -168.215.238.0/23 3549 -168.215.240.0/22 3549 -168.215.244.0/23 3549 -168.215.246.0/24 3549 -168.215.247.0/24 26588 -168.215.248.0/21 3549 -168.216.0.0/16 7925 -168.217.0.0/16 18292 -168.218.5.0/24 7046 -168.218.7.0/24 4589 -168.218.10.0/24 393303 -168.218.15.0/24 393303 -168.218.18.0/24 393303 -168.218.95.0/24 7046 -168.218.225.0/24 7018 -168.219.128.0/17 6619 -168.220.0.0/20 2386 -168.220.16.0/20 8131 -168.220.32.0/20 2386 -168.220.48.0/21 2386 -168.220.56.0/22 2386 -168.220.60.0/23 2386 -168.220.62.0/23 8131 -168.220.64.0/18 2386 -168.221.0.0/16 20214 -168.223.0.0/16 7202 -168.224.160.0/19 29487 -168.224.192.0/19 29487 -168.226.0.0/19 22927 -168.226.32.0/22 22927 -168.226.36.0/23 22927 -168.226.38.0/24 22927 -168.226.39.0/24 4926 -168.226.40.0/21 4926 -168.226.48.0/23 4926 -168.226.50.0/23 22927 -168.226.52.0/22 22927 -168.226.56.0/21 22927 -168.226.64.0/18 22927 -168.226.128.0/17 22927 -168.227.0.0/22 10299 -168.227.4.0/22 264680 -168.227.8.0/22 28201 -168.227.12.0/22 28669 -168.227.16.0/22 263980 -168.227.20.0/22 265780 -168.227.24.0/22 264683 -168.227.28.0/22 262880 -168.227.32.0/22 28284 -168.227.36.0/22 36351 -168.227.40.0/22 264883 -168.227.44.0/22 263070 -168.227.48.0/22 264872 -168.227.52.0/22 264873 -168.227.56.0/22 264880 -168.227.60.0/22 264876 -168.227.64.0/22 264874 -168.227.68.0/22 28378 -168.227.72.0/22 262868 -168.227.76.0/22 52940 -168.227.80.0/22 61698 -168.227.84.0/22 263544 -168.227.88.0/22 264556 -168.227.92.0/22 264502 -168.227.96.0/22 264685 -168.227.100.0/22 52603 -168.227.104.0/22 52330 -168.227.108.0/22 262726 -168.227.112.0/22 264891 -168.227.116.0/22 264910 -168.227.120.0/22 264878 -168.227.124.0/22 264879 -168.227.128.0/22 22869 -168.227.132.0/22 264009 -168.227.136.0/22 263526 -168.227.140.0/22 263735 -168.227.144.0/22 262934 -168.227.148.0/23 53240 -168.227.150.0/24 53240 -168.227.152.0/22 263985 -168.227.156.0/22 52898 -168.227.160.0/22 263860 -168.227.164.0/22 264477 -168.227.168.0/22 264884 -168.227.172.0/22 264881 -168.227.177.0/24 264885 -168.227.178.0/23 264885 -168.227.180.0/22 264886 -168.227.184.0/22 264887 -168.227.188.0/22 264893 -168.227.192.0/22 10429 -168.227.196.0/22 28258 -168.227.200.0/22 21574 -168.227.204.0/23 264830 -168.227.207.0/24 27987 -168.227.208.0/22 264896 -168.227.212.0/22 264888 -168.227.216.0/22 264914 -168.227.220.0/22 264889 -168.227.224.0/22 264897 -168.227.228.0/22 264890 -168.227.232.0/22 53135 -168.227.236.0/22 52674 -168.227.240.0/22 264904 -168.227.244.0/22 262191 -168.227.248.0/22 264898 -168.227.252.0/22 263777 -168.228.0.0/22 264894 -168.228.4.0/22 264899 -168.228.8.0/22 264900 -168.228.12.0/22 264901 -168.228.16.0/22 263057 -168.228.20.0/22 264902 -168.228.24.0/22 52865 -168.228.28.0/22 264903 -168.228.36.0/22 61794 -168.228.40.0/22 61751 -168.228.44.0/22 263744 -168.228.48.0/22 262145 -168.228.52.0/22 7155 -168.228.56.0/22 264708 -168.228.60.0/22 263020 -168.228.64.0/22 264912 -168.228.68.0/22 53059 -168.228.72.0/22 264908 -168.228.76.0/22 264905 -168.228.80.0/22 264909 -168.228.84.0/22 264906 -168.228.88.0/22 264913 -168.228.92.0/22 52771 -168.228.96.0/22 28309 -168.228.100.0/22 61684 -168.228.104.0/22 263586 -168.228.108.0/22 14080 -168.228.112.0/22 264917 -168.228.116.0/22 262375 -168.228.120.0/22 262698 -168.228.128.0/22 52859 -168.228.132.0/22 262159 -168.228.136.0/22 264946 -168.228.140.0/22 264689 -168.228.144.0/22 263834 -168.228.148.0/22 264953 -168.228.152.0/22 264939 -168.228.156.0/22 264911 -168.228.160.0/22 263341 -168.228.164.0/22 264921 -168.228.168.0/22 262611 -168.228.172.0/22 262427 -168.228.176.0/22 264926 -168.228.180.0/22 28642 -168.228.184.0/22 264927 -168.228.188.0/22 264928 -168.228.192.0/22 263725 -168.228.196.0/22 263137 -168.228.200.0/22 262271 -168.228.204.0/22 264549 -168.228.208.0/22 264918 -168.228.212.0/22 264930 -168.228.216.0/22 264929 -168.228.220.0/22 264915 -168.228.224.0/22 264691 -168.228.228.0/22 264919 -168.228.232.0/22 52471 -168.228.236.0/22 52705 -168.228.240.0/22 264916 -168.228.244.0/22 264937 -168.228.248.0/22 264780 -168.228.252.0/22 2716 -168.229.0.0/17 394488 -168.229.150.0/24 394488 -168.229.180.0/22 394488 -168.229.184.0/22 395652 -168.229.192.0/24 397176 -168.229.248.0/22 32430 -168.229.253.0/24 394488 -168.229.254.0/23 394488 -168.230.2.0/24 7926 -168.230.96.0/21 7926 -168.230.105.0/24 7926 -168.230.108.0/24 7926 -168.230.111.0/24 7926 -168.230.137.0/24 7926 -168.230.139.0/24 7926 -168.230.160.0/19 7926 -168.230.208.0/20 7926 -168.230.240.0/22 7926 -168.230.244.0/24 7926 -168.230.248.0/22 7926 -168.230.252.0/24 7926 -168.231.200.0/24 27918 -168.231.201.0/24 14259 -168.231.202.0/23 27918 -168.231.220.0/24 27918 -168.231.242.0/24 27918 -168.232.0.0/22 264923 -168.232.4.0/22 264920 -168.232.8.0/22 264931 -168.232.12.0/22 264932 -168.232.16.0/22 264938 -168.232.20.0/22 264924 -168.232.24.0/22 264925 -168.232.28.0/22 28007 -168.232.32.0/22 263700 -168.232.36.0/22 26617 -168.232.40.0/22 264933 -168.232.44.0/22 264949 -168.232.48.0/22 267752 -168.232.52.0/22 61860 -168.232.56.0/22 264944 -168.232.60.0/22 264934 -168.232.64.0/22 264935 -168.232.68.0/22 262354 -168.232.72.0/22 262765 -168.232.76.0/22 52286 -168.232.80.0/22 264936 -168.232.84.0/22 264994 -168.232.88.0/22 264697 -168.232.96.0/22 52387 -168.232.100.0/22 20207 -168.232.104.0/23 267750 -168.232.108.0/22 264750 -168.232.112.0/22 263564 -168.232.116.0/22 262547 -168.232.120.0/22 264945 -168.232.124.0/22 264940 -168.232.128.0/22 264942 -168.232.132.0/22 264941 -168.232.136.0/22 264943 -168.232.140.0/22 11815 -168.232.144.0/22 264694 -168.232.148.0/22 264564 -168.232.152.0/22 262293 -168.232.156.0/22 263450 -168.232.160.0/22 52613 -168.232.164.0/22 52368 -168.232.168.0/22 264696 -168.232.172.0/22 263924 -168.232.176.0/22 263626 -168.232.180.0/22 263563 -168.232.184.0/22 61632 -168.232.188.0/22 264275 -168.232.192.0/22 264947 -168.232.196.0/22 264948 -168.232.200.0/22 52547 -168.232.204.0/22 264960 -168.232.208.0/22 264956 -168.232.212.0/22 264959 -168.232.216.0/22 264950 -168.232.220.0/22 264951 -168.232.224.0/22 28265 -168.232.228.0/22 263981 -168.232.232.0/22 262759 -168.232.236.0/22 19200 -168.232.240.0/22 264952 -168.232.244.0/22 264962 -168.232.248.0/22 264701 -168.232.252.0/22 264955 -168.233.1.0/24 701 -168.233.2.0/24 701 -168.233.10.0/24 701 -168.233.20.0/23 11013 -168.233.22.0/23 701 -168.233.24.0/24 397074 -168.233.30.0/24 11013 -168.233.31.0/24 1221 -168.233.32.0/24 1221 -168.233.48.0/24 40380 -168.233.51.0/24 40380 -168.233.220.0/23 11013 -168.233.222.0/23 701 -168.233.250.0/24 397074 -168.233.254.0/24 19406 -168.234.16.0/24 52286 -168.234.18.0/24 52286 -168.234.48.0/23 52286 -168.234.50.0/24 52286 -168.234.51.0/24 262255 -168.234.53.0/24 52286 -168.234.54.0/23 52286 -168.234.58.0/24 52286 -168.234.72.0/24 27929 -168.234.74.0/23 27929 -168.234.77.0/24 27929 -168.234.78.0/24 27929 -168.234.106.0/24 6133 -168.234.134.0/24 10586 -168.234.143.0/24 10586 -168.234.144.0/24 10586 -168.234.148.0/24 10586 -168.234.150.0/24 10586 -168.234.153.0/24 52286 -168.234.157.0/24 52286 -168.234.158.0/24 10586 -168.234.165.0/24 10586 -168.234.166.0/23 52286 -168.234.168.0/24 52286 -168.234.170.0/24 52286 -168.234.175.0/24 10586 -168.234.181.0/24 52286 -168.234.190.0/23 52286 -168.234.192.0/22 52286 -168.234.196.0/23 52286 -168.234.198.0/24 52286 -168.234.200.0/23 52286 -168.234.202.0/24 10586 -168.234.204.0/24 52286 -168.234.207.0/24 27910 -168.234.219.0/24 52286 -168.234.220.0/24 52286 -168.234.224.0/20 27737 -168.235.0.0/18 26554 -168.235.64.0/19 3842 -168.235.96.0/20 3842 -168.235.112.0/24 3842 -168.235.128.0/20 23089 -168.235.144.0/21 31798 -168.235.152.0/22 31798 -168.235.156.0/24 31798 -168.235.157.0/24 394146 -168.235.158.0/23 31798 -168.235.160.0/20 63483 -168.235.176.0/20 22925 -168.235.192.0/23 54994 -168.235.194.0/24 54994 -168.235.197.0/24 54994 -168.235.198.0/23 54994 -168.235.201.0/24 54994 -168.235.203.0/24 54994 -168.235.204.0/22 54994 -168.235.208.0/23 18675 -168.235.210.0/23 25601 -168.235.212.0/22 63482 -168.235.220.0/23 40720 -168.235.222.0/23 22631 -168.235.224.0/20 27357 -168.235.240.0/20 53587 -168.236.0.0/16 3136 -168.238.0.0/23 26057 -168.238.4.0/23 26057 -168.238.6.0/24 26057 -168.238.64.0/24 26057 -168.238.66.0/24 26057 -168.238.128.0/24 26057 -168.238.130.0/24 26057 -168.238.192.0/23 26057 -168.238.194.0/24 26057 -168.238.196.0/23 26057 -168.238.240.0/22 26057 -168.238.246.0/23 26057 -168.238.248.0/22 26057 -168.238.252.0/24 26057 -168.238.254.0/23 26057 -168.240.0.0/16 4241 -168.241.0.0/16 14982 -168.243.0.0/20 14754 -168.243.24.0/22 27708 -168.243.28.0/23 27708 -168.243.30.0/24 27708 -168.243.31.0/24 32098 -168.243.32.0/20 14754 -168.243.48.0/21 262204 -168.243.56.0/21 14754 -168.243.64.0/21 14754 -168.243.86.0/24 267752 -168.243.88.0/21 262179 -168.243.96.0/20 14754 -168.243.112.0/22 27773 -168.243.116.0/24 267752 -168.243.117.0/24 27773 -168.243.118.0/23 27773 -168.243.120.0/21 14754 -168.243.128.0/19 14754 -168.243.164.0/22 14754 -168.243.168.0/22 14754 -168.243.172.0/22 27750 -168.243.176.0/22 17079 -168.243.181.0/24 27773 -168.243.196.0/24 12127 -168.243.200.0/24 12127 -168.243.204.0/23 12127 -168.243.211.0/24 263783 -168.243.223.0/24 12127 -168.243.224.0/20 16592 -168.243.240.0/20 14754 -168.244.2.0/24 21789 -168.244.4.0/22 21789 -168.244.8.0/22 21789 -168.244.16.0/20 21789 -168.244.32.0/21 21789 -168.244.48.0/20 21789 -168.244.65.0/24 21789 -168.244.66.0/23 21789 -168.244.70.0/24 21789 -168.244.72.0/22 21789 -168.244.76.0/23 21789 -168.244.78.0/24 21789 -168.244.164.0/23 21789 -168.244.166.0/24 55002 -168.244.167.0/24 21789 -168.244.171.0/24 21789 -168.244.174.0/23 21789 -168.244.176.0/24 21789 -168.244.184.0/23 21789 -168.244.190.0/23 21789 -168.244.192.0/22 21789 -168.244.196.0/23 21789 -168.244.255.0/24 21789 -168.245.0.0/17 11377 -168.245.128.0/22 174 -168.245.134.0/24 30628 -168.245.135.0/24 18599 -168.245.136.0/24 17017 -168.245.137.0/24 54495 -168.245.138.0/23 27239 -168.245.141.0/24 36338 -168.245.142.0/24 40001 -168.245.143.0/24 64267 -168.245.144.0/24 64289 -168.245.147.0/24 396945 -168.245.148.0/24 394548 -168.245.149.0/24 6939 -168.245.150.0/24 11178 -168.245.151.0/24 54105 -168.245.152.0/23 26512 -168.245.154.0/24 32899 -168.245.155.0/24 14618 -168.245.157.0/24 396294 -168.245.158.0/24 32688 -168.245.159.0/24 3900 -168.245.160.0/20 19331 -168.245.176.0/24 11062 -168.245.177.0/24 396448 -168.245.178.0/23 14120 -168.245.180.0/22 20205 -168.245.184.0/24 396537 -168.245.186.0/23 11062 -168.245.191.0/24 9234 -168.245.192.0/24 19151 -168.245.193.0/24 394098 -168.245.194.0/24 23005 -168.245.195.0/24 19336 -168.245.198.0/23 16696 -168.245.200.0/23 58580 -168.245.202.0/23 19271 -168.245.204.0/24 47092 -168.245.205.0/24 396275 -168.245.206.0/24 64267 -168.245.207.0/24 27168 -168.245.208.0/23 395715 -168.245.210.0/23 395772 -168.245.212.0/22 55039 -168.245.223.0/24 43181 -168.245.224.0/24 395627 -168.245.225.0/24 395977 -168.245.226.0/24 1996 -168.245.227.0/24 395836 -168.245.228.0/22 395846 -168.245.234.0/24 393706 -168.245.235.0/24 395990 -168.245.236.0/23 6181 -168.245.238.0/23 32586 -168.245.240.0/20 21570 -168.248.86.0/24 9760 -168.248.255.0/24 9760 -168.250.32.0/21 10796 -168.250.40.0/22 10796 -168.250.44.0/23 10796 -168.250.46.0/24 10796 -168.250.47.0/24 36651 -168.250.48.0/20 36651 -168.251.0.0/18 4911 -168.251.64.0/18 209 -168.251.128.0/19 209 -168.251.160.0/19 4212 -168.251.192.0/19 4212 -168.251.224.0/19 209 -168.252.0.0/18 7474 -168.252.64.0/19 7474 -168.252.100.0/22 7474 -168.252.108.0/24 32787 -168.252.109.0/24 7474 -168.252.110.0/24 7474 -168.252.111.0/24 3300 -168.252.112.0/23 7474 -168.252.114.0/24 7474 -168.252.115.0/24 3300 -168.252.116.0/22 13649 -168.252.120.0/24 32787 -168.252.121.0/24 7474 -168.252.122.0/24 7474 -168.252.123.0/24 3300 -168.252.124.0/22 12676 -168.252.128.0/22 7474 -168.252.132.0/23 5400 -168.252.134.0/23 7474 -168.252.136.0/21 7474 -168.252.144.0/20 7474 -168.252.160.0/19 7474 -168.252.192.0/18 7474 -168.253.0.0/20 37410 -168.253.26.0/24 16637 -168.253.32.0/21 31856 -168.253.40.0/22 31856 -168.253.44.0/22 206283 -168.253.48.0/21 31856 -168.253.56.0/21 37189 -168.253.64.0/20 37417 -168.253.80.0/20 37650 -168.253.96.0/20 33779 -168.253.112.0/21 37347 -168.253.120.0/23 327908 -168.253.122.0/24 327908 -168.253.124.0/22 327908 -168.253.128.0/18 49902 -168.253.192.0/20 37276 -168.253.208.0/21 37230 -168.253.216.0/21 327850 -168.253.224.0/19 37294 -168.254.0.0/16 33363 -168.255.0.0/17 11172 -168.255.128.0/18 11172 -168.255.192.0/19 11172 -168.255.224.0/20 11172 -168.255.240.0/21 11172 -168.255.248.0/22 11172 -168.255.252.0/24 8151 -168.255.253.0/24 11172 -168.255.254.0/23 11172 -169.0.0.0/16 37611 -169.1.0.0/19 37611 -169.1.32.0/22 37611 -169.1.36.0/24 327693 -169.1.37.0/24 37611 -169.1.38.0/23 37611 -169.1.40.0/21 37611 -169.1.48.0/20 37611 -169.1.64.0/18 37611 -169.1.128.0/17 37611 -169.2.0.0/15 1226 -169.4.0.0/14 7792 -169.8.0.0/13 7792 -169.33.100.0/24 62832 -169.38.64.0/18 36351 -169.38.128.0/18 36351 -169.44.0.0/14 36351 -169.48.0.0/19 36351 -169.48.32.0/24 36351 -169.48.36.0/22 36351 -169.48.64.0/18 36351 -169.48.128.0/17 36351 -169.50.0.0/16 36351 -169.51.0.0/17 36351 -169.51.128.0/18 36351 -169.51.192.0/19 36351 -169.53.0.0/16 36351 -169.54.0.0/15 36351 -169.56.0.0/17 36351 -169.56.128.0/18 36351 -169.56.224.0/19 36351 -169.57.0.0/16 36351 -169.59.0.0/16 36351 -169.60.0.0/14 36351 -169.128.10.0/24 13717 -169.128.32.0/22 395137 -169.128.37.0/24 395137 -169.128.38.0/23 395137 -169.128.40.0/24 395137 -169.128.44.0/22 395137 -169.128.48.0/20 13717 -169.128.224.0/21 13717 -169.128.232.0/22 13717 -169.128.236.0/22 1239 -169.128.240.0/23 13717 -169.128.242.0/24 13717 -169.128.245.0/24 13717 -169.128.246.0/23 13717 -169.128.248.0/21 13717 -169.130.0.0/16 7029 -169.131.0.0/16 4531 -169.132.0.0/16 7270 -169.133.0.0/19 18815 -169.133.32.0/23 209 -169.133.34.0/23 18815 -169.133.36.0/22 18815 -169.133.40.0/21 18815 -169.133.48.0/20 18815 -169.133.64.0/18 18815 -169.133.128.0/17 18815 -169.135.0.0/16 2576 -169.136.0.0/23 18755 -169.136.14.0/23 16940 -169.136.32.0/19 29894 -169.136.192.0/19 31875 -169.137.0.0/17 13433 -169.137.128.0/20 13433 -169.137.144.0/24 397123 -169.137.145.0/24 13433 -169.137.146.0/23 13433 -169.137.148.0/22 13433 -169.137.152.0/21 13433 -169.137.160.0/19 13433 -169.137.192.0/18 13433 -169.138.0.0/16 8075 -169.139.0.0/20 11686 -169.139.16.0/24 8103 -169.139.19.0/24 8103 -169.139.56.0/24 8103 -169.139.65.0/24 8103 -169.139.115.0/24 26906 -169.139.119.0/24 8103 -169.139.123.0/24 8103 -169.139.126.0/24 8103 -169.139.176.0/24 7915 -169.139.190.0/23 53979 -169.139.240.0/24 8103 -169.139.250.0/23 8103 -169.140.60.0/24 18305 -169.140.115.0/24 18305 -169.140.116.0/24 18305 -169.140.123.0/24 18305 -169.140.124.0/22 18305 -169.140.205.0/24 18305 -169.142.0.0/16 2572 -169.143.0.0/23 26121 -169.143.2.0/24 26121 -169.143.6.0/24 26121 -169.143.8.0/24 26121 -169.143.10.0/23 26121 -169.143.16.0/24 26121 -169.143.20.0/23 13649 -169.143.22.0/24 26121 -169.143.128.0/24 26121 -169.143.243.0/24 19855 -169.143.244.0/22 26121 -169.144.0.0/20 158 -169.144.16.0/21 158 -169.144.24.0/24 134237 -169.144.25.0/24 158 -169.144.26.0/23 158 -169.144.28.0/22 158 -169.144.32.0/19 158 -169.144.64.0/18 158 -169.144.128.0/17 158 -169.145.0.0/21 6979 -169.145.8.0/23 22057 -169.145.10.0/23 6979 -169.145.12.0/22 22057 -169.145.28.0/22 6979 -169.145.32.0/21 6979 -169.145.40.0/24 6979 -169.145.41.0/24 14466 -169.145.46.0/23 6979 -169.145.49.0/24 3356 -169.145.53.0/24 14551 -169.145.56.0/21 6979 -169.145.64.0/22 22057 -169.145.68.0/22 6979 -169.145.72.0/21 6979 -169.145.87.0/24 25972 -169.145.88.0/22 25972 -169.145.92.0/24 25972 -169.145.97.0/24 6979 -169.145.98.0/23 6979 -169.145.100.0/23 393611 -169.145.102.0/24 6979 -169.145.112.0/24 7151 -169.145.116.0/22 6979 -169.145.120.0/22 21610 -169.145.125.0/24 6979 -169.145.136.0/24 394946 -169.145.137.0/24 394953 -169.145.142.0/23 393611 -169.145.145.0/24 22370 -169.145.146.0/23 22370 -169.145.148.0/23 22370 -169.145.150.0/24 22370 -169.145.192.0/20 18219 -169.145.224.0/20 4713 -169.146.0.0/16 32895 -169.147.0.0/16 11659 -169.148.251.0/24 23174 -169.149.0.0/16 55836 -169.150.0.0/16 2711 -169.151.0.0/16 2386 -169.152.0.0/16 7922 -169.153.0.0/17 7867 -169.153.128.0/21 7867 -169.153.136.0/23 7867 -169.153.138.0/24 3790 -169.153.139.0/24 7867 -169.153.140.0/22 7867 -169.153.144.0/20 7867 -169.153.160.0/20 7867 -169.153.176.0/23 3356 -169.153.178.0/24 7867 -169.153.179.0/24 3549 -169.153.180.0/23 3549 -169.153.182.0/24 3549 -169.153.183.0/24 7867 -169.153.184.0/21 7867 -169.153.192.0/20 7867 -169.153.208.0/21 7867 -169.153.216.0/23 7867 -169.153.218.0/23 33363 -169.153.220.0/22 7867 -169.153.224.0/19 7867 -169.154.0.0/17 7847 -169.154.128.0/17 22767 -169.155.0.0/17 18722 -169.155.128.0/17 3525 -169.156.0.0/16 6189 -169.157.0.0/16 8103 -169.158.0.0/16 10569 -169.159.0.0/18 37390 -169.159.64.0/18 37637 -169.159.128.0/21 37596 -169.159.136.0/22 37596 -169.159.140.0/23 37596 -169.159.142.0/24 37596 -169.159.143.0/24 36953 -169.159.144.0/20 37596 -169.159.160.0/20 37596 -169.159.176.0/21 37596 -169.159.184.0/23 37596 -169.159.188.0/22 327957 -169.159.192.0/20 3356 -169.159.208.0/21 37453 -169.159.216.0/23 37453 -169.159.218.0/24 37453 -169.159.224.0/19 327824 -169.196.24.0/23 397253 -169.196.48.0/23 20249 -169.196.55.0/24 20249 -169.196.56.0/23 20249 -169.196.65.0/24 20249 -169.196.66.0/23 20249 -169.196.68.0/23 20249 -169.196.71.0/24 20249 -169.196.72.0/23 20249 -169.196.76.0/22 20249 -169.196.110.0/24 20249 -169.196.119.0/24 20249 -169.196.128.0/18 20249 -169.196.198.0/23 20249 -169.196.219.0/24 20249 -169.196.220.0/22 20249 -169.196.224.0/19 20249 -169.197.0.0/18 19381 -169.197.64.0/21 46154 -169.197.72.0/23 63275 -169.197.75.0/24 63298 -169.197.76.0/22 62731 -169.197.80.0/20 26548 -169.197.96.0/22 21859 -169.197.100.0/24 21859 -169.197.102.0/23 21859 -169.197.104.0/23 21859 -169.197.106.0/24 21859 -169.197.108.0/22 21859 -169.197.112.0/24 21859 -169.197.113.0/24 135377 -169.197.114.0/23 21859 -169.197.116.0/23 137280 -169.197.118.0/23 21859 -169.197.120.0/22 21859 -169.198.0.0/16 16677 -169.199.0.0/16 23309 -169.200.88.0/21 4196 -169.200.164.0/24 4243 -169.200.169.0/24 4243 -169.200.176.0/20 4196 -169.202.5.0/24 14115 -169.202.6.0/24 14115 -169.202.9.0/24 14115 -169.202.13.0/24 14115 -169.202.39.0/24 14115 -169.202.40.0/23 14115 -169.202.43.0/24 14115 -169.202.45.0/24 14115 -169.202.59.0/24 14115 -169.202.66.0/24 14115 -169.202.142.0/23 14115 -169.202.176.0/23 14115 -169.202.179.0/24 14115 -169.202.180.0/22 14115 -169.202.184.0/24 14115 -169.202.186.0/24 14115 -169.202.188.0/24 14115 -169.202.201.0/24 3741 -169.202.202.0/24 3741 -169.202.207.0/24 14115 -169.202.209.0/24 14115 -169.202.211.0/24 14115 -169.202.212.0/23 14115 -169.202.214.0/24 14115 -169.202.216.0/23 14115 -169.202.218.0/24 14115 -169.202.220.0/24 14115 -169.202.224.0/24 14115 -169.202.235.0/24 14115 -169.202.236.0/23 14115 -169.203.0.0/16 22920 -169.204.0.0/18 10430 -169.204.64.0/20 10430 -169.204.80.0/21 10430 -169.204.88.0/23 10430 -169.204.90.0/24 394640 -169.204.91.0/24 10430 -169.204.92.0/22 10430 -169.204.96.0/19 10430 -169.204.128.0/17 10430 -169.207.0.0/16 7321 -169.208.160.0/22 40676 -169.208.184.0/22 40676 -169.208.208.0/22 40676 -169.212.32.0/22 40676 -169.216.80.0/22 40676 -169.218.212.0/22 40676 -169.224.140.0/24 14509 -169.224.155.0/24 14509 -169.224.240.0/23 14509 -169.224.255.0/24 14509 -169.226.0.0/16 22990 -169.227.3.0/24 25971 -169.227.6.0/24 25971 -169.227.253.0/24 25971 -169.227.254.0/24 25971 -169.228.0.0/17 7377 -169.228.128.0/23 7377 -169.228.130.0/23 26397 -169.228.132.0/24 26397 -169.228.133.0/24 7377 -169.228.134.0/23 7377 -169.228.136.0/21 7377 -169.228.144.0/20 7377 -169.228.160.0/19 7377 -169.228.192.0/18 7377 -169.229.0.0/16 25 -169.230.0.0/18 5653 -169.230.64.0/21 5653 -169.230.72.0/22 5653 -169.230.76.0/23 33651 -169.230.78.0/23 5653 -169.230.80.0/20 5653 -169.230.96.0/19 5653 -169.230.128.0/17 5653 -169.231.0.0/16 131 -169.232.0.0/16 52 -169.233.0.0/16 5739 -169.234.0.0/16 299 -169.235.0.0/16 6106 -169.236.0.0/17 22323 -169.236.128.0/18 22323 -169.236.192.0/19 22323 -169.236.224.0/20 22323 -169.236.240.0/21 25 -169.236.248.0/21 22323 -169.237.0.0/16 6192 -169.239.0.0/22 327900 -169.239.4.0/22 327733 -169.239.8.0/22 327907 -169.239.12.0/22 37575 -169.239.16.0/22 327981 -169.239.20.0/22 41095 -169.239.24.0/22 30969 -169.239.28.0/22 327889 -169.239.32.0/22 37011 -169.239.36.0/22 37191 -169.239.40.0/23 327920 -169.239.42.0/24 327920 -169.239.43.0/24 328481 -169.239.44.0/22 327922 -169.239.48.0/22 327924 -169.239.56.0/24 327929 -169.239.59.0/24 327929 -169.239.60.0/24 1828 -169.239.64.0/22 36994 -169.239.68.0/22 327960 -169.239.72.0/22 328003 -169.239.76.0/22 327932 -169.239.80.0/22 327693 -169.239.84.0/22 327943 -169.239.92.0/22 37284 -169.239.96.0/22 328079 -169.239.104.0/22 30619 -169.239.108.0/22 36881 -169.239.112.0/22 37529 -169.239.116.0/22 37284 -169.239.120.0/22 327975 -169.239.124.0/22 37653 -169.239.128.0/22 61138 -169.239.132.0/22 328111 -169.239.136.0/24 8346 -169.239.137.0/24 37196 -169.239.140.0/22 328019 -169.239.148.0/22 31167 -169.239.152.0/22 37153 -169.239.156.0/22 37447 -169.239.160.0/22 327963 -169.239.164.0/22 327966 -169.239.168.0/22 327972 -169.239.176.0/22 327962 -169.239.180.0/22 37153 -169.239.184.0/22 29606 -169.239.188.0/22 37613 -169.239.192.0/22 37682 -169.239.200.0/23 203061 -169.239.202.0/24 204136 -169.239.203.0/24 203061 -169.239.204.0/22 13886 -169.239.208.0/22 327983 -169.239.212.0/22 327750 -169.239.216.0/22 327979 -169.239.220.0/22 328064 -169.239.224.0/22 37153 -169.239.228.0/24 328360 -169.239.232.0/23 327985 -169.239.235.0/24 327985 -169.239.236.0/22 327986 -169.239.240.0/22 327982 -169.239.244.0/22 327990 -169.239.248.0/22 327992 -169.239.252.0/22 327997 -169.240.0.0/16 47024 -169.241.0.0/16 22164 -169.244.0.0/16 557 -169.249.170.0/23 26548 -169.252.0.0/17 6966 -169.252.128.0/18 6966 -169.252.192.0/19 6966 -169.252.224.0/20 6966 -169.252.240.0/21 6966 -169.252.248.0/22 6966 -169.252.252.0/23 6966 -169.252.254.0/24 6966 -169.252.255.0/24 7018 -169.253.0.0/16 6966 -169.255.0.0/22 327849 -169.255.4.0/22 327820 -169.255.8.0/22 39356 -169.255.12.0/22 327812 -169.255.20.0/22 327822 -169.255.24.0/22 327786 -169.255.28.0/22 327926 -169.255.32.0/22 328013 -169.255.36.0/22 61092 -169.255.40.0/22 327803 -169.255.44.0/23 37639 -169.255.48.0/22 327792 -169.255.52.0/22 37294 -169.255.56.0/22 327813 -169.255.60.0/22 327826 -169.255.64.0/23 37638 -169.255.66.0/24 37638 -169.255.67.0/24 22351 -169.255.68.0/22 37709 -169.255.72.0/22 327829 -169.255.76.0/22 327858 -169.255.80.0/22 327830 -169.255.88.0/22 327833 -169.255.104.0/22 327906 -169.255.108.0/22 37284 -169.255.112.0/22 327859 -169.255.116.0/22 37055 -169.255.120.0/22 37463 -169.255.124.0/22 36920 -169.255.128.0/22 328164 -169.255.132.0/22 37697 -169.255.136.0/22 36892 -169.255.144.0/22 37652 -169.255.148.0/22 327876 -169.255.152.0/22 327864 -169.255.160.0/23 37722 -169.255.162.0/24 37722 -169.255.163.0/24 51110 -169.255.168.0/22 327872 -169.255.172.0/22 36898 -169.255.176.0/22 328055 -169.255.181.0/24 327891 -169.255.182.0/23 327891 -169.255.184.0/22 327885 -169.255.188.0/22 327879 -169.255.192.0/23 327880 -169.255.195.0/24 327880 -169.255.196.0/22 327901 -169.255.204.0/23 37447 -169.255.206.0/24 37483 -169.255.207.0/24 37447 -169.255.208.0/24 327895 -169.255.210.0/24 327895 -169.255.216.0/22 327892 -169.255.220.0/22 327893 -169.255.224.0/22 327940 -169.255.228.0/22 327894 -169.255.232.0/22 327733 -169.255.236.0/23 327898 -169.255.238.0/24 327898 -169.255.240.0/22 327896 -169.255.244.0/22 327781 -169.255.248.0/22 327910 -169.255.252.0/22 327897 -170.0.0.0/22 264957 -170.0.4.0/22 264703 -170.0.12.0/22 263157 -170.0.16.0/22 27734 -170.0.20.0/22 28668 -170.0.24.0/22 264001 -170.0.28.0/22 262784 -170.0.32.0/22 264550 -170.0.36.0/22 262887 -170.0.40.0/22 263629 -170.0.44.0/22 52800 -170.0.48.0/22 264961 -170.0.52.0/22 264974 -170.0.56.0/22 263328 -170.0.60.0/22 265008 -170.0.64.0/22 263042 -170.0.68.0/22 264963 -170.0.72.0/22 264976 -170.0.76.0/22 264977 -170.0.80.0/22 22411 -170.0.84.0/22 264702 -170.0.88.0/22 264964 -170.0.92.0/22 264704 -170.0.96.0/22 264966 -170.0.100.0/22 264967 -170.0.104.0/22 264968 -170.0.108.0/22 264965 -170.0.112.0/22 264969 -170.0.116.0/22 265003 -170.0.120.0/22 264970 -170.0.124.0/22 264204 -170.0.128.0/22 264972 -170.0.132.0/22 264982 -170.0.136.0/22 264973 -170.0.140.0/22 262732 -170.0.144.0/22 52745 -170.0.148.0/22 264426 -170.0.152.0/22 264013 -170.0.156.0/22 52937 -170.0.160.0/22 265021 -170.0.164.0/22 264978 -170.0.168.0/22 263334 -170.0.172.0/22 263055 -170.0.176.0/22 27903 -170.0.180.0/22 10269 -170.0.184.0/22 263885 -170.0.188.0/22 264975 -170.0.192.0/22 264981 -170.0.200.0/22 263427 -170.0.204.0/22 28331 -170.0.208.0/22 263919 -170.0.212.0/22 263015 -170.0.216.0/22 265141 -170.0.220.0/22 264137 -170.0.224.0/22 265000 -170.0.228.0/22 265510 -170.0.232.0/22 27843 -170.0.236.0/22 264983 -170.0.240.0/22 28131 -170.0.244.0/22 263222 -170.0.248.0/22 262301 -170.0.252.0/23 264980 -170.2.0.0/16 13598 -170.3.0.0/19 26854 -170.4.0.0/24 393456 -170.4.255.0/24 18540 -170.5.0.0/16 7726 -170.7.242.0/24 3356 -170.7.248.0/24 25699 -170.7.253.0/24 3356 -170.7.254.0/24 25699 -170.8.0.0/16 19372 -170.9.0.0/17 36590 -170.9.128.0/18 36590 -170.9.192.0/21 5089 -170.9.200.0/21 36590 -170.9.208.0/20 36590 -170.9.224.0/19 36590 -170.10.0.0/18 11976 -170.10.64.0/19 395555 -170.10.96.0/21 12171 -170.10.104.0/23 12171 -170.10.106.0/24 12171 -170.10.111.0/24 12171 -170.10.112.0/23 205287 -170.10.114.0/24 205287 -170.10.144.0/20 24199 -170.10.160.0/20 32748 -170.10.176.0/20 395662 -170.10.192.0/20 63399 -170.10.208.0/21 63399 -170.10.216.0/22 63399 -170.10.220.0/24 63399 -170.10.221.0/24 134521 -170.10.222.0/24 396982 -170.10.223.0/24 63399 -170.10.224.0/19 53913 -170.11.0.0/16 1621 -170.12.0.0/16 27283 -170.13.246.0/24 4243 -170.15.200.0/22 14145 -170.15.208.0/22 14145 -170.15.212.0/24 14145 -170.15.224.0/24 14145 -170.15.240.0/24 14145 -170.16.0.0/18 3762 -170.16.64.0/19 3762 -170.16.96.0/20 3762 -170.16.112.0/21 3356 -170.16.120.0/21 3762 -170.16.128.0/19 3762 -170.16.160.0/20 3762 -170.16.176.0/22 3762 -170.16.180.0/23 3762 -170.16.182.0/23 63459 -170.16.184.0/21 3762 -170.16.192.0/18 3762 -170.17.0.0/24 26039 -170.17.8.0/24 26039 -170.17.16.0/20 26039 -170.17.64.0/24 26039 -170.17.80.0/24 26039 -170.17.128.0/17 3303 -170.18.0.0/16 16780 -170.19.0.0/16 32251 -170.20.0.0/16 6102 -170.22.32.0/21 18540 -170.22.74.0/24 2386 -170.22.76.0/23 2386 -170.22.170.0/24 2386 -170.22.172.0/23 2386 -170.22.176.0/23 2386 -170.22.178.0/24 2386 -170.22.245.0/24 2386 -170.22.246.0/24 2386 -170.24.0.0/17 23410 -170.24.128.0/21 23410 -170.24.136.0/22 23410 -170.24.140.0/23 23410 -170.24.142.0/24 395384 -170.24.144.0/20 23410 -170.24.160.0/19 23410 -170.24.192.0/18 23410 -170.25.0.0/16 13591 -170.27.24.0/24 19265 -170.27.30.0/24 19265 -170.27.80.0/24 19265 -170.27.130.0/23 19265 -170.27.132.0/22 19265 -170.27.168.0/23 19265 -170.27.201.0/24 19265 -170.27.203.0/24 19265 -170.27.204.0/24 19265 -170.28.1.0/24 46887 -170.28.32.0/19 12187 -170.28.64.0/19 12187 -170.28.128.0/20 12187 -170.28.192.0/24 19507 -170.28.201.0/24 397595 -170.28.224.0/20 32273 -170.29.0.0/21 33551 -170.29.9.0/24 33551 -170.29.10.0/23 33551 -170.29.12.0/24 33551 -170.29.30.0/24 33551 -170.29.32.0/21 33551 -170.29.64.0/23 33551 -170.29.66.0/24 33551 -170.29.68.0/22 33551 -170.29.72.0/24 33551 -170.29.144.0/24 33551 -170.29.166.0/24 33551 -170.30.188.0/23 7029 -170.30.192.0/23 20060 -170.30.199.0/24 20060 -170.30.208.0/23 20060 -170.30.214.0/23 20060 -170.30.220.0/24 20060 -170.30.224.0/23 20060 -170.30.236.0/22 20060 -170.30.240.0/20 20060 -170.31.0.0/17 17094 -170.31.128.0/19 17094 -170.31.160.0/23 27534 -170.31.162.0/23 17094 -170.31.164.0/22 17094 -170.31.168.0/21 17094 -170.31.176.0/20 17094 -170.31.192.0/19 17094 -170.31.224.0/20 17094 -170.31.240.0/24 17094 -170.31.241.0/24 27534 -170.31.242.0/23 17094 -170.31.244.0/22 17094 -170.31.248.0/21 27534 -170.32.2.0/24 26081 -170.32.4.0/24 26081 -170.32.6.0/24 26081 -170.32.8.0/22 26081 -170.32.12.0/23 26081 -170.32.15.0/24 26081 -170.32.20.0/24 26081 -170.32.22.0/24 26081 -170.32.40.0/21 26081 -170.32.48.0/23 26081 -170.32.51.0/24 26081 -170.32.52.0/24 26081 -170.32.54.0/24 26081 -170.32.56.0/24 26081 -170.32.58.0/24 26081 -170.32.60.0/24 26081 -170.32.65.0/24 26081 -170.32.66.0/23 26081 -170.32.69.0/24 26081 -170.32.76.0/23 26081 -170.32.78.0/24 26081 -170.32.85.0/24 26081 -170.32.86.0/24 26081 -170.32.93.0/24 26081 -170.32.94.0/24 26081 -170.32.96.0/24 26081 -170.32.98.0/23 26081 -170.32.100.0/24 26081 -170.32.102.0/23 26081 -170.32.110.0/23 26081 -170.32.113.0/24 26081 -170.32.114.0/23 26081 -170.32.117.0/24 26081 -170.32.120.0/22 26081 -170.32.140.0/24 26081 -170.32.145.0/24 26081 -170.32.182.0/24 26081 -170.32.190.0/24 26081 -170.32.196.0/24 26081 -170.32.200.0/23 26081 -170.32.202.0/24 26081 -170.32.208.0/23 26081 -170.32.235.0/24 26081 -170.32.237.0/24 26081 -170.32.239.0/24 26081 -170.32.251.0/24 26081 -170.33.0.0/22 134963 -170.33.8.0/21 134963 -170.33.16.0/20 134963 -170.33.32.0/20 134963 -170.33.64.0/23 134963 -170.33.66.0/24 134963 -170.33.68.0/23 134963 -170.33.72.0/21 134963 -170.33.80.0/21 134963 -170.34.41.0/24 32787 -170.34.59.0/24 32787 -170.34.80.0/24 32787 -170.34.100.0/24 32787 -170.34.104.0/23 32787 -170.34.113.0/24 32787 -170.34.117.0/24 32787 -170.34.121.0/24 32787 -170.34.127.0/24 32787 -170.34.137.0/24 2386 -170.34.138.0/24 2386 -170.34.254.0/24 12271 -170.35.208.0/20 797 -170.35.224.0/20 797 -170.37.100.0/22 19443 -170.37.104.0/22 19443 -170.37.108.0/23 19443 -170.37.110.0/24 19443 -170.37.120.0/23 19443 -170.37.128.0/21 19443 -170.37.144.0/22 19443 -170.37.148.0/23 19443 -170.37.150.0/24 19443 -170.37.199.0/24 19443 -170.37.203.0/24 1136 -170.37.204.0/23 1136 -170.37.206.0/24 1136 -170.37.224.0/24 7018 -170.37.227.0/24 19443 -170.37.232.0/23 19443 -170.37.244.0/23 19443 -170.38.0.0/16 9930 -170.40.158.0/23 14792 -170.40.160.0/19 14792 -170.40.192.0/21 14792 -170.40.204.0/24 14792 -170.40.207.0/24 14792 -170.40.224.0/24 7018 -170.40.250.0/24 38034 -170.41.33.0/24 10753 -170.41.34.0/23 14925 -170.41.38.0/24 26034 -170.41.40.0/24 26034 -170.41.44.0/23 26034 -170.41.46.0/24 26034 -170.41.49.0/24 26034 -170.41.52.0/23 26034 -170.41.62.0/24 14925 -170.41.67.0/24 26034 -170.41.159.0/24 10753 -170.41.161.0/24 26034 -170.41.162.0/24 2386 -170.41.166.0/24 26034 -170.41.172.0/23 14925 -170.41.174.0/23 26034 -170.41.176.0/24 26034 -170.41.177.0/24 3549 -170.41.179.0/24 3549 -170.41.182.0/23 14925 -170.41.184.0/24 26034 -170.41.189.0/24 26034 -170.41.197.0/24 26034 -170.41.204.0/22 26034 -170.41.208.0/24 26034 -170.41.216.0/24 26034 -170.41.218.0/24 14925 -170.41.235.0/24 14925 -170.41.252.0/23 26034 -170.46.0.0/16 18697 -170.47.0.0/16 22178 -170.48.0.0/20 11406 -170.48.16.0/20 13348 -170.48.64.0/20 202917 -170.48.128.0/20 202917 -170.49.0.0/16 14017 -170.51.0.0/20 11664 -170.51.16.0/21 11664 -170.51.24.0/22 11664 -170.51.28.0/22 19037 -170.51.32.0/21 11664 -170.51.40.0/22 11664 -170.51.44.0/23 11664 -170.51.46.0/24 11664 -170.51.47.0/24 19037 -170.51.48.0/21 11664 -170.51.56.0/22 11664 -170.51.60.0/23 19037 -170.51.62.0/23 11664 -170.51.64.0/21 19037 -170.51.72.0/23 11664 -170.51.74.0/23 19037 -170.51.76.0/22 19037 -170.51.80.0/20 11664 -170.51.96.0/24 11664 -170.51.97.0/24 19037 -170.51.98.0/23 19037 -170.51.100.0/22 19037 -170.51.104.0/21 19037 -170.51.112.0/23 11664 -170.51.114.0/24 11664 -170.51.115.0/24 19037 -170.51.116.0/23 11664 -170.51.118.0/24 11664 -170.51.119.0/24 19037 -170.51.120.0/21 11664 -170.51.128.0/18 11664 -170.51.192.0/23 11664 -170.51.194.0/24 11664 -170.51.195.0/24 19037 -170.51.196.0/23 11664 -170.51.198.0/24 11664 -170.51.199.0/24 19037 -170.51.200.0/21 19037 -170.51.208.0/22 11664 -170.51.212.0/23 11664 -170.51.214.0/23 19037 -170.51.216.0/21 11664 -170.51.224.0/20 11664 -170.51.240.0/23 19037 -170.51.242.0/24 11664 -170.51.243.0/24 19037 -170.51.244.0/22 19037 -170.51.248.0/24 19037 -170.51.249.0/24 11664 -170.51.250.0/24 11664 -170.51.251.0/24 19037 -170.51.252.0/23 19037 -170.51.254.0/24 19037 -170.51.255.0/24 11664 -170.52.0.0/21 32261 -170.52.8.0/21 30036 -170.52.16.0/22 19833 -170.52.41.0/24 21777 -170.52.42.0/23 29887 -170.52.44.0/23 62947 -170.52.46.0/23 7381 -170.52.48.0/21 62943 -170.52.56.0/24 19640 -170.52.57.0/24 62943 -170.52.58.0/23 62943 -170.52.60.0/22 62943 -170.52.64.0/18 395965 -170.52.128.0/18 16863 -170.52.192.0/19 396249 -170.52.244.0/24 396249 -170.53.0.0/16 54640 -170.54.38.0/23 4868 -170.54.58.0/23 4868 -170.54.61.0/24 4868 -170.54.72.0/24 15404 -170.54.88.0/24 4868 -170.54.108.0/23 4868 -170.54.118.0/23 4868 -170.54.125.0/24 4868 -170.54.126.0/24 4868 -170.54.158.0/24 4868 -170.54.160.0/23 15404 -170.54.204.0/23 4868 -170.55.0.0/20 33132 -170.55.16.0/21 33132 -170.55.24.0/22 33132 -170.55.28.0/24 33132 -170.55.29.0/24 1647 -170.55.30.0/23 33132 -170.55.32.0/20 33132 -170.55.48.0/21 33132 -170.55.56.0/23 33132 -170.55.58.0/24 33132 -170.55.59.0/24 393541 -170.55.60.0/22 33132 -170.55.64.0/18 33132 -170.55.128.0/17 33132 -170.56.0.0/16 15854 -170.57.0.0/17 46298 -170.57.128.0/18 46298 -170.57.192.0/19 46298 -170.57.224.0/20 46298 -170.57.240.0/21 46298 -170.57.248.0/22 46298 -170.57.252.0/22 3549 -170.61.0.0/20 11911 -170.61.16.0/22 22260 -170.61.20.0/22 11911 -170.61.24.0/22 11911 -170.61.28.0/24 11911 -170.61.29.0/24 22260 -170.61.30.0/23 11911 -170.61.32.0/21 22260 -170.61.40.0/21 11911 -170.61.48.0/23 22260 -170.61.50.0/23 11911 -170.61.52.0/24 22260 -170.61.53.0/24 11911 -170.61.54.0/23 11911 -170.61.56.0/23 22260 -170.61.58.0/23 11911 -170.61.60.0/23 22260 -170.61.62.0/23 11911 -170.61.64.0/23 22260 -170.61.66.0/23 11911 -170.61.68.0/22 11911 -170.61.72.0/22 11911 -170.61.76.0/23 11911 -170.61.78.0/24 11911 -170.61.79.0/24 22260 -170.61.80.0/21 22260 -170.61.88.0/23 11911 -170.61.90.0/23 22260 -170.61.92.0/23 22260 -170.61.94.0/23 11911 -170.61.96.0/21 22260 -170.61.104.0/24 11911 -170.61.105.0/24 22260 -170.61.106.0/24 22260 -170.61.107.0/24 11911 -170.61.108.0/24 22260 -170.61.109.0/24 11911 -170.61.110.0/23 22260 -170.61.112.0/23 40375 -170.61.114.0/24 11911 -170.61.115.0/24 40375 -170.61.116.0/22 22260 -170.61.120.0/24 22260 -170.61.121.0/24 11911 -170.61.122.0/23 11911 -170.61.124.0/22 11911 -170.61.128.0/23 11911 -170.61.130.0/23 22260 -170.61.132.0/22 11911 -170.61.136.0/21 11911 -170.61.144.0/21 11911 -170.61.152.0/24 11911 -170.61.153.0/24 40375 -170.61.154.0/23 11911 -170.61.156.0/22 11911 -170.61.160.0/21 11911 -170.61.168.0/22 11911 -170.61.172.0/24 11911 -170.61.173.0/24 40375 -170.61.174.0/24 40375 -170.61.175.0/24 11911 -170.61.176.0/20 11911 -170.61.194.0/24 11911 -170.61.196.0/23 11911 -170.61.198.0/24 11911 -170.61.199.0/24 40375 -170.61.200.0/24 11911 -170.61.203.0/24 11911 -170.61.204.0/23 11911 -170.61.211.0/24 11911 -170.61.212.0/22 11911 -170.61.216.0/22 11911 -170.61.223.0/24 11911 -170.61.236.0/22 11911 -170.61.253.0/24 11911 -170.61.254.0/24 11911 -170.63.0.0/16 6527 -170.64.0.0/21 16761 -170.64.128.0/24 3257 -170.64.136.0/24 1221 -170.64.144.0/24 3257 -170.64.245.0/24 3257 -170.64.254.0/24 16761 -170.65.32.0/22 14201 -170.65.74.0/24 14201 -170.65.78.0/23 14201 -170.65.88.0/23 14201 -170.65.94.0/24 14201 -170.65.98.0/24 3421 -170.65.100.0/23 14201 -170.65.128.0/23 14201 -170.65.146.0/24 3356 -170.65.150.0/24 14201 -170.65.170.0/24 14201 -170.65.172.0/22 14201 -170.65.182.0/24 6904 -170.65.188.0/24 14201 -170.65.192.0/24 14201 -170.65.200.0/23 14201 -170.65.204.0/24 14201 -170.65.206.0/24 14201 -170.65.208.0/23 29863 -170.65.210.0/23 29944 -170.65.217.0/24 14201 -170.65.218.0/24 14201 -170.65.237.0/24 14201 -170.65.248.0/24 14201 -170.66.0.0/16 11993 -170.68.80.0/23 30449 -170.68.244.0/22 30449 -170.69.164.0/22 22593 -170.69.168.0/21 22593 -170.69.176.0/20 22593 -170.69.192.0/21 22593 -170.69.251.0/24 22593 -170.70.0.0/16 10420 -170.72.0.0/16 21637 -170.74.44.0/24 6973 -170.74.50.0/24 6973 -170.74.208.0/24 21439 -170.74.215.0/24 5049 -170.74.216.0/21 5049 -170.74.226.0/23 5049 -170.74.228.0/22 5049 -170.74.232.0/21 5049 -170.74.244.0/22 5049 -170.74.248.0/22 5049 -170.75.32.0/19 54291 -170.75.128.0/20 18632 -170.75.144.0/20 46261 -170.75.160.0/20 174 -170.75.176.0/23 40196 -170.75.197.0/24 57624 -170.75.198.0/23 57624 -170.75.200.0/22 57624 -170.75.204.0/23 57624 -170.75.208.0/20 19783 -170.75.225.0/24 10655 -170.75.226.0/23 10655 -170.75.228.0/22 10655 -170.75.234.0/23 10655 -170.75.236.0/23 10655 -170.75.238.0/24 10655 -170.75.240.0/22 393398 -170.75.244.0/23 393398 -170.75.248.0/24 393398 -170.75.249.0/24 394177 -170.75.250.0/23 393398 -170.75.253.0/24 393398 -170.75.254.0/23 393398 -170.76.128.0/24 27381 -170.76.130.0/24 64240 -170.76.131.0/24 5693 -170.76.132.0/24 395668 -170.76.133.0/24 395770 -170.76.135.0/24 396280 -170.76.136.0/22 32824 -170.76.140.0/24 395696 -170.76.141.0/24 395708 -170.76.142.0/24 395669 -170.76.143.0/24 396119 -170.76.144.0/23 3356 -170.76.146.0/24 33662 -170.76.147.0/24 13536 -170.76.148.0/23 3356 -170.76.151.0/24 395930 -170.76.152.0/23 395781 -170.76.154.0/24 394209 -170.76.155.0/24 396305 -170.76.156.0/22 394985 -170.76.160.0/21 393467 -170.76.168.0/21 32866 -170.76.180.0/22 395971 -170.76.184.0/22 23481 -170.76.188.0/22 13896 -170.76.192.0/24 16657 -170.76.193.0/24 4057 -170.76.194.0/24 13969 -170.76.195.0/24 30517 -170.76.196.0/24 394764 -170.76.197.0/24 395939 -170.76.198.0/24 62636 -170.76.199.0/24 396516 -170.76.200.0/23 19546 -170.76.203.0/24 14887 -170.76.204.0/24 13354 -170.76.205.0/24 17223 -170.76.206.0/24 25873 -170.76.207.0/24 54584 -170.76.208.0/24 19474 -170.76.209.0/24 46519 -170.76.211.0/24 54421 -170.76.212.0/24 7029 -170.76.213.0/24 23478 -170.76.214.0/23 396305 -170.76.216.0/24 11742 -170.76.217.0/24 13957 -170.76.219.0/24 21678 -170.76.222.0/23 40147 -170.76.224.0/23 17276 -170.76.226.0/24 21966 -170.76.227.0/24 395340 -170.76.228.0/23 20645 -170.76.230.0/24 54443 -170.76.231.0/24 10308 -170.76.233.0/24 46266 -170.76.234.0/24 13760 -170.76.236.0/24 27582 -170.76.237.0/24 395967 -170.76.239.0/24 14565 -170.76.241.0/24 397711 -170.76.244.0/22 395623 -170.76.248.0/21 14860 -170.77.0.0/16 27185 -170.78.0.0/22 265491 -170.78.4.0/22 28598 -170.78.8.0/22 28613 -170.78.12.0/22 265498 -170.78.16.0/22 265492 -170.78.20.0/22 263292 -170.78.24.0/22 266273 -170.78.28.0/22 265241 -170.78.32.0/22 264498 -170.78.36.0/22 266274 -170.78.40.0/22 264796 -170.78.44.0/22 264791 -170.78.48.0/22 266271 -170.78.52.0/23 265495 -170.78.54.0/24 265495 -170.78.56.0/22 264799 -170.78.60.0/22 265496 -170.78.64.0/22 61700 -170.78.68.0/22 262669 -170.78.72.0/22 61493 -170.78.76.0/24 28250 -170.78.77.0/24 25933 -170.78.78.0/23 28250 -170.78.80.0/22 263073 -170.78.84.0/22 265499 -170.78.88.0/22 263786 -170.78.92.0/22 265500 -170.78.96.0/22 266269 -170.78.100.0/22 266277 -170.78.104.0/22 266278 -170.78.108.0/22 27955 -170.78.112.0/22 266776 -170.78.116.0/22 264478 -170.78.120.0/22 264009 -170.78.124.0/22 263780 -170.78.128.0/22 266279 -170.78.132.0/22 266270 -170.78.136.0/22 265694 -170.78.140.0/22 52892 -170.78.144.0/22 263002 -170.78.148.0/22 266272 -170.78.152.0/22 53232 -170.78.156.0/22 52860 -170.78.160.0/22 263891 -170.78.164.0/22 28658 -170.78.168.0/22 266292 -170.78.172.0/22 266298 -170.78.176.0/22 266276 -170.78.180.0/22 266275 -170.78.184.0/24 264785 -170.78.185.0/24 264805 -170.78.186.0/23 265490 -170.78.188.0/22 265515 -170.78.192.0/22 20207 -170.78.196.0/22 266305 -170.78.200.0/22 14232 -170.78.204.0/22 28240 -170.78.212.0/22 263653 -170.78.216.0/22 266286 -170.78.220.0/22 27927 -170.78.224.0/22 266283 -170.78.228.0/22 266280 -170.78.232.0/22 61683 -170.78.236.0/22 264909 -170.78.240.0/22 264128 -170.78.244.0/22 263338 -170.78.248.0/22 263544 -170.78.252.0/22 263249 -170.79.0.0/22 266289 -170.79.4.0/22 53045 -170.79.8.0/22 264547 -170.79.12.0/22 262273 -170.79.16.0/22 264790 -170.79.20.0/22 264881 -170.79.24.0/22 52807 -170.79.28.0/22 263566 -170.79.32.0/22 263880 -170.79.36.0/22 6147 -170.79.40.0/22 61466 -170.79.44.0/22 263489 -170.79.48.0/22 262635 -170.79.52.0/22 264552 -170.79.56.0/22 52956 -170.79.60.0/22 266287 -170.79.64.0/22 266295 -170.79.68.0/22 266281 -170.79.72.0/22 262459 -170.79.76.0/22 266282 -170.79.80.0/22 263650 -170.79.84.0/22 266284 -170.79.88.0/24 267857 -170.79.89.0/24 262186 -170.79.90.0/23 267857 -170.79.92.0/22 266296 -170.79.96.0/22 265066 -170.79.100.0/22 264681 -170.79.104.0/22 262775 -170.79.108.0/22 262218 -170.79.112.0/22 266288 -170.79.116.0/22 266285 -170.79.120.0/22 266291 -170.79.125.0/24 265518 -170.79.127.0/24 265518 -170.79.128.0/22 263486 -170.79.132.0/22 266293 -170.79.136.0/22 266301 -170.79.140.0/22 266308 -170.79.144.0/22 264750 -170.79.148.0/22 266299 -170.79.152.0/22 266294 -170.79.156.0/22 265326 -170.79.160.0/22 266290 -170.79.164.0/22 52951 -170.79.168.0/22 266302 -170.79.172.0/22 266303 -170.79.176.0/22 266309 -170.79.180.0/22 264800 -170.79.184.0/22 53135 -170.79.188.0/22 266300 -170.79.192.0/22 262378 -170.79.196.0/22 266310 -170.79.200.0/22 266304 -170.79.204.0/23 266297 -170.79.208.0/22 52980 -170.79.216.0/22 266306 -170.79.220.0/22 263864 -170.79.224.0/22 262595 -170.79.228.0/22 266311 -170.79.232.0/22 264806 -170.79.236.0/22 266307 -170.79.240.0/22 61579 -170.79.244.0/22 266335 -170.79.248.0/22 52612 -170.79.252.0/22 263834 -170.80.0.0/22 263627 -170.80.4.0/24 266365 -170.80.5.0/24 266373 -170.80.6.0/23 266415 -170.80.8.0/22 22368 -170.80.12.0/22 263603 -170.80.16.0/22 52468 -170.80.20.0/22 264637 -170.80.24.0/22 27981 -170.80.28.0/22 265524 -170.80.32.0/22 266366 -170.80.36.0/22 266367 -170.80.40.0/22 266380 -170.80.44.0/22 266368 -170.80.48.0/22 266374 -170.80.52.0/22 266375 -170.80.56.0/22 266369 -170.80.60.0/22 266370 -170.80.64.0/22 266372 -170.80.68.0/22 263905 -170.80.72.0/22 263826 -170.80.76.0/22 266371 -170.80.80.0/22 266410 -170.80.84.0/22 266403 -170.80.88.0/22 264820 -170.80.96.0/22 264829 -170.80.100.0/22 264233 -170.80.104.0/22 262802 -170.80.108.0/22 265760 -170.80.112.0/22 266376 -170.80.116.0/22 52327 -170.80.120.0/22 266377 -170.80.124.0/22 266378 -170.80.128.0/22 263435 -170.80.132.0/22 263904 -170.80.136.0/22 264822 -170.80.140.0/22 264819 -170.80.144.0/22 266384 -170.80.148.0/22 28668 -170.80.152.0/22 262765 -170.80.156.0/22 266388 -170.80.160.0/22 266379 -170.80.164.0/22 263394 -170.80.168.0/22 52444 -170.80.172.0/22 52447 -170.80.176.0/22 262293 -170.80.180.0/22 262777 -170.80.184.0/22 266382 -170.80.188.0/22 266390 -170.80.192.0/22 266391 -170.80.196.0/22 266383 -170.80.204.0/22 263535 -170.80.208.0/22 263569 -170.80.212.0/22 263910 -170.80.216.0/22 262641 -170.80.220.0/22 265274 -170.80.224.0/22 266385 -170.80.228.0/22 264830 -170.80.232.0/22 266392 -170.80.236.0/22 264900 -170.80.240.0/22 265525 -170.80.244.0/22 266381 -170.80.252.0/22 53078 -170.81.0.0/22 262296 -170.81.6.0/23 263655 -170.81.8.0/22 264817 -170.81.12.0/22 266397 -170.81.16.0/22 266398 -170.81.20.0/22 266387 -170.81.24.0/22 10299 -170.81.28.0/22 264854 -170.81.32.0/22 28317 -170.81.36.0/22 266389 -170.81.40.0/22 266400 -170.81.44.0/22 266393 -170.81.48.0/22 263634 -170.81.52.0/22 394474 -170.81.56.0/22 266408 -170.81.60.0/22 266401 -170.81.64.0/22 266419 -170.81.68.0/22 266409 -170.81.72.0/22 262491 -170.81.76.0/22 266394 -170.81.80.0/22 264564 -170.81.84.0/22 266395 -170.81.88.0/22 265013 -170.81.92.0/22 266399 -170.81.96.0/22 266412 -170.81.100.0/22 266413 -170.81.104.0/22 266402 -170.81.108.0/22 266416 -170.81.112.0/22 266404 -170.81.116.0/22 266405 -170.81.120.0/22 266406 -170.81.124.0/22 264703 -170.81.128.0/22 28330 -170.81.132.0/22 266417 -170.81.136.0/24 266411 -170.81.137.0/24 266426 -170.81.138.0/24 266432 -170.81.139.0/24 264834 -170.81.140.0/22 28418 -170.81.144.0/22 264837 -170.81.148.0/22 266427 -170.81.152.0/22 266428 -170.81.156.0/22 266414 -170.81.160.0/22 266420 -170.81.164.0/22 266418 -170.81.168.0/22 28165 -170.81.172.0/23 52753 -170.81.174.0/23 264100 -170.81.176.0/22 28131 -170.81.180.0/22 53121 -170.81.184.0/22 264084 -170.81.188.0/22 266421 -170.81.192.0/22 266424 -170.81.196.0/22 263744 -170.81.200.0/22 266430 -170.81.204.0/22 266422 -170.81.208.0/22 266423 -170.81.212.0/22 263768 -170.81.216.0/22 28134 -170.81.220.0/22 263565 -170.81.224.0/22 61666 -170.81.228.0/22 264832 -170.81.232.0/22 266425 -170.81.236.0/22 266429 -170.81.240.0/22 269803 -170.81.244.0/22 52866 -170.81.248.0/22 266439 -170.81.252.0/22 264842 -170.82.0.0/22 263829 -170.82.4.0/22 28163 -170.82.8.0/22 262437 -170.82.12.0/22 266436 -170.82.16.0/22 266437 -170.82.20.0/22 266440 -170.82.24.0/22 264750 -170.82.28.0/22 266441 -170.82.32.0/22 266431 -170.82.36.0/23 27696 -170.82.38.0/24 27696 -170.82.39.0/24 52468 -170.82.40.0/23 264835 -170.82.42.0/24 266443 -170.82.43.0/24 266495 -170.82.48.0/22 266438 -170.82.52.0/22 266434 -170.82.56.0/22 262730 -170.82.60.0/22 262865 -170.82.64.0/22 53080 -170.82.68.0/22 266480 -170.82.72.0/22 262569 -170.82.76.0/22 266435 -170.82.80.0/22 53065 -170.82.84.0/22 262642 -170.82.88.0/22 61761 -170.82.92.0/22 262726 -170.82.100.0/22 61943 -170.82.104.0/22 264114 -170.82.108.0/22 263266 -170.82.112.0/23 264836 -170.82.114.0/24 264836 -170.82.116.0/22 263424 -170.82.120.0/22 263668 -170.82.124.0/22 262494 -170.82.128.0/23 262237 -170.82.132.0/22 262493 -170.82.136.0/22 262671 -170.82.140.0/22 264404 -170.82.144.0/22 263717 -170.82.148.0/22 263649 -170.82.152.0/22 262428 -170.82.156.0/22 264668 -170.82.160.0/22 53152 -170.82.164.0/22 52670 -170.82.168.0/22 52545 -170.82.172.0/22 266444 -170.82.176.0/22 61739 -170.82.180.0/22 266445 -170.82.184.0/22 61741 -170.82.188.0/22 27901 -170.82.192.0/22 266446 -170.82.196.0/22 263297 -170.82.200.0/22 266457 -170.82.204.0/22 266447 -170.82.208.0/22 27800 -170.82.212.0/22 266456 -170.82.216.0/22 263222 -170.82.220.0/22 266448 -170.82.228.0/22 266458 -170.82.232.0/22 266459 -170.82.236.0/22 266449 -170.82.240.0/22 262980 -170.82.244.0/23 264858 -170.82.246.0/24 266455 -170.82.247.0/24 264843 -170.82.248.0/22 266450 -170.82.252.0/22 266460 -170.83.0.0/22 266454 -170.83.4.0/22 11014 -170.83.8.0/22 262149 -170.83.12.0/22 266465 -170.83.16.0/22 266466 -170.83.20.0/22 262523 -170.83.24.0/22 266451 -170.83.28.0/22 266452 -170.83.32.0/22 61509 -170.83.36.0/22 266453 -170.83.40.0/22 266462 -170.83.44.0/22 264290 -170.83.48.0/22 266471 -170.83.52.0/22 264849 -170.83.56.0/23 266474 -170.83.58.0/24 265651 -170.83.59.0/24 265652 -170.83.60.0/22 266463 -170.83.64.0/22 266485 -170.83.68.0/22 61754 -170.83.72.0/22 53053 -170.83.76.0/22 3549 -170.83.80.0/22 263026 -170.83.84.0/22 53189 -170.83.88.0/22 266481 -170.83.92.0/22 52817 -170.83.96.0/22 266464 -170.83.100.0/22 52601 -170.83.104.0/22 266482 -170.83.108.0/22 263766 -170.83.112.0/22 266467 -170.83.116.0/22 27696 -170.83.120.0/22 262983 -170.83.124.0/22 263774 -170.83.128.0/22 61812 -170.83.132.0/22 262588 -170.83.136.0/22 266486 -170.83.140.0/22 28649 -170.83.144.0/22 266468 -170.83.148.0/22 266469 -170.83.152.0/22 266470 -170.83.156.0/22 266483 -170.83.160.0/22 264112 -170.83.164.0/22 264381 -170.83.168.0/22 266484 -170.83.172.0/22 266475 -170.83.176.0/22 264850 -170.83.180.0/22 263478 -170.83.184.0/22 266487 -170.83.188.0/22 266472 -170.83.192.0/22 264616 -170.83.196.0/22 266476 -170.83.200.0/22 263470 -170.83.204.0/22 53236 -170.83.208.0/22 52593 -170.83.212.0/22 263482 -170.83.218.0/24 264851 -170.83.220.0/23 264852 -170.83.223.0/24 264852 -170.83.224.0/22 266473 -170.83.228.0/22 266477 -170.83.232.0/22 263735 -170.83.236.0/22 397044 -170.83.240.0/24 52468 -170.83.242.0/23 52468 -170.83.244.0/22 266501 -170.83.248.0/22 52937 -170.83.252.0/22 263015 -170.84.0.0/22 265001 -170.84.8.0/22 27800 -170.84.12.0/22 264987 -170.84.16.0/22 264989 -170.84.20.0/22 264990 -170.84.24.0/22 265029 -170.84.28.0/22 264984 -170.84.36.0/22 265019 -170.84.40.0/22 265020 -170.84.44.0/22 12150 -170.84.48.0/22 265022 -170.84.52.0/22 263009 -170.84.56.0/22 28146 -170.84.60.0/22 265006 -170.84.64.0/22 265009 -170.84.68.0/22 264988 -170.84.72.0/22 263945 -170.84.76.0/22 264999 -170.84.80.0/22 52769 -170.84.84.0/22 264996 -170.84.88.0/22 265007 -170.84.92.0/22 264991 -170.84.96.0/22 264992 -170.84.100.0/23 265010 -170.84.102.0/24 265010 -170.84.104.0/22 265023 -170.84.108.0/22 263248 -170.84.112.0/22 263049 -170.84.116.0/22 264993 -170.84.120.0/22 263883 -170.84.124.0/22 52312 -170.84.128.0/22 28073 -170.84.132.0/22 263765 -170.84.136.0/22 21826 -170.84.140.0/22 265017 -170.84.144.0/22 264997 -170.84.148.0/22 265011 -170.84.152.0/22 265026 -170.84.156.0/22 264998 -170.84.160.0/22 28158 -170.84.164.0/22 265016 -170.84.168.0/22 52308 -170.84.172.0/22 263717 -170.84.176.0/22 265014 -170.84.180.0/22 265015 -170.84.184.0/22 265004 -170.84.188.0/22 28376 -170.84.192.0/22 52802 -170.84.196.0/22 265018 -170.84.200.0/22 265005 -170.84.204.0/22 52507 -170.84.208.0/22 7004 -170.84.212.0/22 27792 -170.84.220.0/22 265037 -170.84.224.0/22 52974 -170.84.228.0/22 394474 -170.84.232.0/22 64100 -170.84.236.0/22 264270 -170.84.240.0/22 265013 -170.84.244.0/22 262993 -170.84.248.0/22 265028 -170.84.252.0/22 264711 -170.86.0.0/16 7726 -170.88.12.0/22 54478 -170.88.32.0/24 54478 -170.88.52.0/24 54478 -170.88.82.0/24 18434 -170.88.83.0/24 36642 -170.88.85.0/24 36642 -170.88.98.0/24 18434 -170.88.113.0/24 18434 -170.88.128.0/24 19271 -170.88.142.0/24 46672 -170.88.144.0/21 46672 -170.88.160.0/22 54478 -170.88.176.0/24 54478 -170.88.178.0/23 54478 -170.88.232.0/24 11215 -170.89.0.0/17 23241 -170.89.146.0/24 16509 -170.89.156.0/23 16509 -170.89.158.0/24 16509 -170.89.224.0/19 23241 -170.90.4.0/22 64208 -170.90.8.0/21 46977 -170.90.16.0/22 46977 -170.90.20.0/22 64208 -170.90.24.0/21 64208 -170.90.32.0/21 64208 -170.90.40.0/22 64208 -170.90.44.0/23 64208 -170.90.46.0/24 6812 -170.90.47.0/24 64208 -170.90.48.0/20 64208 -170.90.64.0/21 64208 -170.90.72.0/22 64208 -170.90.76.0/23 46977 -170.90.78.0/23 64208 -170.90.80.0/20 64208 -170.90.96.0/19 64208 -170.90.128.0/17 64208 -170.91.0.0/17 7018 -170.91.128.0/18 3734 -170.91.192.0/18 7018 -170.92.0.0/19 16595 -170.92.32.0/20 16595 -170.92.48.0/24 16595 -170.92.49.0/24 3561 -170.92.50.0/23 16595 -170.92.52.0/22 16595 -170.92.56.0/22 16595 -170.92.60.0/23 16595 -170.92.62.0/24 16595 -170.92.63.0/24 3561 -170.92.64.0/19 16595 -170.92.96.0/20 16595 -170.92.112.0/21 16595 -170.92.120.0/22 16595 -170.92.124.0/23 16595 -170.92.126.0/24 16595 -170.92.127.0/24 174 -170.92.128.0/17 16595 -170.93.0.0/16 15196 -170.94.0.0/16 21852 -170.96.0.0/16 18980 -170.97.67.0/24 8076 -170.97.71.0/24 8076 -170.97.73.0/24 8076 -170.97.74.0/24 8076 -170.97.91.0/24 8076 -170.97.165.0/24 8076 -170.97.167.0/24 8076 -170.97.169.0/24 8076 -170.97.171.0/24 8076 -170.97.172.0/24 8076 -170.97.200.0/24 8076 -170.97.202.0/24 8076 -170.98.102.0/23 18495 -170.98.106.0/24 18495 -170.98.129.0/24 18495 -170.98.200.0/23 18495 -170.99.0.0/16 27026 -170.100.240.0/20 15117 -170.101.128.0/17 25019 -170.102.194.0/24 25252 -170.103.0.0/16 23305 -170.104.0.0/16 1798 -170.105.12.0/22 59116 -170.105.16.0/22 59116 -170.105.24.0/22 59116 -170.106.0.0/16 132203 -170.107.0.0/16 4583 -170.108.0.0/16 6289 -170.109.0.0/20 7018 -170.109.16.0/24 6461 -170.109.17.0/24 7018 -170.109.18.0/23 7018 -170.109.20.0/22 7018 -170.109.24.0/21 7018 -170.109.32.0/19 7018 -170.109.64.0/18 7018 -170.109.128.0/18 7018 -170.109.192.0/19 7018 -170.109.224.0/20 6461 -170.109.240.0/20 7018 -170.110.0.0/16 33343 -170.111.0.0/16 20311 -170.112.0.0/21 22347 -170.112.24.0/21 22347 -170.115.0.0/16 11205 -170.116.64.0/21 2497 -170.117.4.0/22 394451 -170.117.128.0/17 394632 -170.118.144.0/20 393330 -170.119.0.0/24 19273 -170.119.3.0/24 19273 -170.119.50.0/23 19273 -170.119.52.0/24 19273 -170.119.54.0/23 19273 -170.119.56.0/23 19273 -170.119.71.0/24 19273 -170.119.72.0/24 19273 -170.119.100.0/24 19273 -170.119.132.0/24 19273 -170.119.138.0/23 19273 -170.119.141.0/24 19273 -170.119.142.0/23 19273 -170.119.146.0/24 19273 -170.119.157.0/24 19273 -170.119.158.0/23 19273 -170.119.173.0/24 19273 -170.119.176.0/24 19273 -170.121.12.0/22 17190 -170.121.68.0/22 17190 -170.121.192.0/22 17190 -170.121.244.0/22 17190 -170.121.252.0/22 17190 -170.122.0.0/24 54314 -170.122.250.0/24 54314 -170.122.253.0/24 54314 -170.122.254.0/24 54314 -170.123.4.0/22 26854 -170.123.9.0/24 26854 -170.123.124.0/23 26854 -170.123.133.0/24 26854 -170.123.232.0/21 26854 -170.124.0.0/23 23486 -170.125.0.0/16 25979 -170.128.0.0/18 11685 -170.128.64.0/20 11685 -170.128.80.0/21 11685 -170.128.88.0/22 11685 -170.128.92.0/23 11685 -170.128.94.0/24 11685 -170.128.95.0/24 54827 -170.128.96.0/24 54827 -170.128.97.0/24 11685 -170.128.98.0/23 11685 -170.128.100.0/22 11685 -170.128.104.0/21 11685 -170.128.112.0/20 11685 -170.128.128.0/17 11685 -170.129.0.0/16 6128 -170.130.0.0/18 62904 -170.130.64.0/19 62904 -170.130.96.0/20 62904 -170.130.112.0/21 62904 -170.130.120.0/22 62904 -170.130.124.0/22 49532 -170.130.128.0/19 62904 -170.130.160.0/21 62904 -170.130.168.0/22 62904 -170.130.172.0/22 49532 -170.130.176.0/20 62904 -170.130.192.0/18 62904 -170.131.0.0/21 13954 -170.131.8.0/22 13954 -170.131.12.0/23 13954 -170.131.14.0/24 13954 -170.131.24.0/24 13954 -170.133.0.0/18 198930 -170.133.192.0/20 62964 -170.133.208.0/24 393841 -170.133.210.0/24 10747 -170.133.212.0/24 10747 -170.133.224.0/19 395965 -170.134.0.0/17 23148 -170.134.128.0/18 23148 -170.134.192.0/19 23148 -170.134.224.0/21 23148 -170.134.232.0/23 23148 -170.134.234.0/24 23148 -170.134.235.0/24 7018 -170.134.236.0/22 23148 -170.134.240.0/20 23148 -170.135.0.0/16 3147 -170.136.108.0/24 23005 -170.136.110.0/24 23005 -170.136.112.0/24 23005 -170.136.115.0/24 2856 -170.136.116.0/23 2856 -170.136.120.0/24 852 -170.136.124.0/24 8047 -170.136.126.0/24 7018 -170.138.0.0/21 14045 -170.138.16.0/20 14045 -170.138.32.0/20 14045 -170.138.48.0/22 14045 -170.138.98.0/23 14045 -170.138.100.0/22 14045 -170.138.104.0/21 14045 -170.138.116.0/22 14045 -170.138.160.0/24 14045 -170.138.216.0/21 14045 -170.139.0.0/16 396312 -170.140.0.0/16 3512 -170.141.0.0/19 4454 -170.141.32.0/20 4454 -170.141.48.0/21 4454 -170.141.56.0/23 19957 -170.141.58.0/24 19957 -170.141.59.0/24 4454 -170.141.60.0/23 19956 -170.141.62.0/24 19956 -170.141.63.0/24 4454 -170.141.64.0/18 4454 -170.141.128.0/17 4454 -170.142.0.0/15 4454 -170.144.0.0/16 4152 -170.145.0.0/16 2048 -170.146.1.0/24 14299 -170.146.2.0/23 14299 -170.146.4.0/24 14299 -170.146.12.0/24 22812 -170.146.14.0/24 22812 -170.146.16.0/22 14299 -170.146.22.0/24 14299 -170.146.24.0/22 14299 -170.146.32.0/21 14299 -170.146.46.0/24 14391 -170.146.48.0/21 14299 -170.146.80.0/21 14299 -170.146.91.0/24 14299 -170.146.92.0/22 14299 -170.146.96.0/22 14299 -170.146.102.0/23 14299 -170.146.111.0/24 14299 -170.146.112.0/20 14299 -170.146.145.0/24 14299 -170.146.146.0/24 14299 -170.146.150.0/24 22812 -170.146.156.0/23 22812 -170.146.170.0/24 14299 -170.146.199.0/24 14299 -170.146.220.0/22 14299 -170.146.224.0/22 14299 -170.146.228.0/24 14299 -170.146.230.0/23 14299 -170.146.232.0/22 14299 -170.146.240.0/21 14299 -170.146.251.0/24 14299 -170.146.252.0/24 14299 -170.146.255.0/24 14299 -170.148.60.0/22 32066 -170.148.64.0/21 17929 -170.148.96.0/19 17929 -170.148.128.0/21 17929 -170.148.144.0/23 38551 -170.148.192.0/19 32066 -170.148.224.0/20 38481 -170.148.240.0/21 32066 -170.149.57.0/24 21568 -170.149.66.0/23 396533 -170.149.96.0/22 4543 -170.149.100.0/24 4543 -170.149.102.0/23 4543 -170.149.104.0/23 4543 -170.149.186.0/23 4543 -170.149.188.0/23 4543 -170.149.196.0/24 4543 -170.149.236.0/22 40833 -170.149.240.0/21 21568 -170.149.248.0/23 204322 -170.149.250.0/23 204321 -170.149.252.0/23 137857 -170.150.0.0/22 262607 -170.150.4.0/22 53080 -170.150.8.0/22 264712 -170.150.12.0/22 32098 -170.150.16.0/22 263003 -170.150.20.0/22 61826 -170.150.24.0/22 61890 -170.150.32.0/22 264715 -170.150.36.0/22 265024 -170.150.40.0/22 53246 -170.150.44.0/22 264716 -170.150.48.0/22 265025 -170.150.52.0/22 265046 -170.150.56.0/24 262217 -170.150.57.0/24 52263 -170.150.58.0/24 262217 -170.150.59.0/24 52263 -170.150.60.0/23 265750 -170.150.62.0/24 265750 -170.150.63.0/24 7049 -170.150.64.0/22 262932 -170.150.68.0/22 28636 -170.150.72.0/22 265032 -170.150.76.0/22 52913 -170.150.80.0/22 263296 -170.150.84.0/22 263649 -170.150.88.0/22 60458 -170.150.92.0/22 265030 -170.150.96.0/22 265027 -170.150.100.0/22 262346 -170.150.104.0/22 53066 -170.150.108.0/22 61651 -170.150.112.0/22 263665 -170.150.116.0/22 264726 -170.150.120.0/22 28098 -170.150.124.0/22 265033 -170.150.128.0/22 265034 -170.150.132.0/22 265031 -170.150.136.0/22 265041 -170.150.140.0/24 14259 -170.150.148.0/22 265042 -170.150.152.0/22 11014 -170.150.156.0/22 27901 -170.150.160.0/22 22908 -170.150.164.0/22 28130 -170.150.168.0/22 262402 -170.150.172.0/22 61713 -170.150.176.0/22 53236 -170.150.180.0/22 264719 -170.150.184.0/22 262434 -170.150.188.0/22 265035 -170.150.192.0/22 263506 -170.150.196.0/22 10481 -170.150.200.0/22 265038 -170.150.204.0/22 265039 -170.150.208.0/22 263290 -170.150.212.0/22 265040 -170.150.216.0/22 263587 -170.150.220.0/22 265050 -170.150.224.0/22 265036 -170.150.228.0/22 265150 -170.150.232.0/22 61918 -170.150.236.0/22 53062 -170.150.240.0/22 263646 -170.150.244.0/22 265044 -170.150.248.0/22 52565 -170.150.252.0/22 61663 -170.153.0.0/23 27265 -170.153.2.0/23 21787 -170.153.4.0/22 21787 -170.153.8.0/21 21787 -170.153.16.0/20 21787 -170.153.32.0/19 21787 -170.153.64.0/19 21787 -170.153.96.0/21 21787 -170.153.104.0/22 27265 -170.153.108.0/22 21787 -170.153.112.0/23 19301 -170.153.114.0/23 21787 -170.153.116.0/22 21787 -170.153.120.0/22 21787 -170.153.124.0/22 27265 -170.153.128.0/17 21787 -170.154.0.0/16 6527 -170.155.0.0/17 27967 -170.155.128.0/18 27967 -170.155.192.0/20 27967 -170.155.208.0/21 27967 -170.155.216.0/22 27967 -170.155.220.0/24 7303 -170.155.221.0/24 27967 -170.155.222.0/23 27967 -170.155.224.0/19 27967 -170.157.0.0/16 7474 -170.158.0.0/18 46158 -170.158.64.0/23 46158 -170.158.66.0/23 55002 -170.158.68.0/24 55002 -170.158.69.0/24 46158 -170.158.70.0/23 46158 -170.158.72.0/21 46158 -170.158.80.0/20 46158 -170.158.96.0/24 55002 -170.158.97.0/24 46158 -170.158.98.0/23 46158 -170.158.100.0/23 46158 -170.158.102.0/24 46158 -170.158.103.0/24 55002 -170.158.104.0/23 46158 -170.158.106.0/23 55002 -170.158.108.0/22 46158 -170.158.112.0/20 46158 -170.158.128.0/19 46158 -170.158.160.0/24 55002 -170.158.161.0/24 46158 -170.158.162.0/23 46158 -170.158.164.0/22 46158 -170.158.168.0/23 46158 -170.158.170.0/24 46158 -170.158.171.0/24 55002 -170.158.172.0/22 46158 -170.158.176.0/20 46158 -170.158.192.0/18 46158 -170.159.4.0/22 5767 -170.160.32.0/20 22601 -170.160.96.0/20 22601 -170.161.2.0/24 11516 -170.161.9.0/24 11516 -170.161.18.0/23 11516 -170.161.20.0/23 11516 -170.161.23.0/24 11516 -170.161.24.0/24 11516 -170.161.48.0/23 11516 -170.161.50.0/24 11516 -170.161.52.0/24 11516 -170.161.54.0/24 11516 -170.161.58.0/24 11516 -170.161.62.0/24 11516 -170.161.64.0/22 11516 -170.161.70.0/23 11516 -170.161.72.0/24 11516 -170.161.74.0/24 11516 -170.161.75.0/24 46887 -170.161.77.0/24 11516 -170.161.78.0/23 11516 -170.161.80.0/24 11516 -170.161.85.0/24 11516 -170.161.87.0/24 11516 -170.161.88.0/24 11516 -170.161.100.0/24 11516 -170.161.104.0/23 11516 -170.161.108.0/22 11516 -170.161.112.0/24 11516 -170.161.114.0/24 11516 -170.161.118.0/23 11516 -170.161.120.0/24 11516 -170.161.125.0/24 11516 -170.161.126.0/24 11516 -170.161.131.0/24 11516 -170.161.138.0/24 11516 -170.161.141.0/24 11516 -170.161.145.0/24 11516 -170.161.147.0/24 11516 -170.161.148.0/23 11516 -170.161.150.0/24 11516 -170.161.201.0/24 11516 -170.161.253.0/24 11516 -170.162.32.0/19 6900 -170.163.0.0/22 10583 -170.163.4.0/23 10583 -170.163.6.0/24 23119 -170.163.7.0/24 10583 -170.163.8.0/21 10583 -170.163.16.0/21 10583 -170.163.24.0/22 47072 -170.163.28.0/22 10583 -170.163.32.0/22 10583 -170.163.36.0/24 47072 -170.163.37.0/24 10583 -170.163.38.0/23 10583 -170.163.40.0/22 394802 -170.163.44.0/24 10583 -170.163.45.0/24 63478 -170.163.46.0/23 10583 -170.163.48.0/23 10583 -170.163.50.0/24 394521 -170.163.51.0/24 10583 -170.163.52.0/22 10583 -170.163.56.0/22 10583 -170.163.60.0/24 53854 -170.163.61.0/24 10583 -170.163.62.0/23 10583 -170.163.64.0/18 10583 -170.163.128.0/18 10583 -170.163.192.0/24 47072 -170.163.193.0/24 10583 -170.163.194.0/23 10583 -170.163.196.0/22 10583 -170.163.200.0/21 10583 -170.163.208.0/20 10583 -170.163.224.0/20 10583 -170.163.240.0/24 10583 -170.163.241.0/24 396214 -170.163.242.0/23 10583 -170.163.244.0/22 10583 -170.163.248.0/21 10583 -170.164.0.0/16 19739 -170.165.0.0/16 8075 -170.167.1.0/24 11283 -170.167.2.0/23 11283 -170.167.4.0/22 11283 -170.167.8.0/24 11283 -170.167.10.0/23 11283 -170.167.48.0/21 11283 -170.167.56.0/23 11283 -170.167.62.0/23 11283 -170.167.101.0/24 11283 -170.167.102.0/23 11283 -170.167.104.0/22 11283 -170.167.108.0/24 11283 -170.167.110.0/23 11283 -170.167.117.0/24 11283 -170.167.192.0/22 11283 -170.167.200.0/24 11283 -170.167.213.0/24 11283 -170.167.240.0/24 11283 -170.167.248.0/23 11283 -170.167.255.0/24 395744 -170.169.0.0/16 2134 -170.170.0.0/19 7226 -170.170.32.0/20 7226 -170.170.48.0/21 7226 -170.170.56.0/22 7726 -170.170.60.0/22 7226 -170.170.64.0/18 7226 -170.170.128.0/17 7226 -170.171.0.0/19 11790 -170.171.32.0/23 11790 -170.171.34.0/24 11790 -170.171.192.0/24 11790 -170.171.208.0/21 11790 -170.171.216.0/22 11790 -170.171.220.0/23 55002 -170.171.222.0/23 11790 -170.171.224.0/19 11790 -170.173.0.0/21 46790 -170.173.8.0/22 46790 -170.173.16.0/22 40681 -170.175.1.0/24 19416 -170.175.2.0/23 19416 -170.175.27.0/24 19416 -170.175.28.0/24 19416 -170.175.48.0/22 19416 -170.175.104.0/21 19416 -170.175.112.0/22 19416 -170.175.192.0/19 19416 -170.175.224.0/23 20069 -170.175.232.0/24 11544 -170.176.136.0/24 395359 -170.176.144.0/22 395359 -170.176.148.0/24 395359 -170.176.193.0/24 13607 -170.176.194.0/23 13607 -170.176.200.0/24 16509 -170.176.209.0/24 13607 -170.176.224.0/20 36556 -170.176.248.0/21 16433 -170.177.0.0/16 31848 -170.178.1.0/24 7381 -170.178.128.0/24 7381 -170.178.129.0/24 49079 -170.178.130.0/24 9911 -170.178.131.0/24 7381 -170.178.132.0/22 26764 -170.178.136.0/22 393872 -170.178.140.0/22 46886 -170.178.144.0/22 18590 -170.178.148.0/22 54917 -170.178.152.0/24 134450 -170.178.153.0/24 204472 -170.178.154.0/24 204472 -170.178.155.0/24 203999 -170.178.156.0/22 393836 -170.178.160.0/19 46844 -170.178.192.0/19 35916 -170.178.224.0/19 22534 -170.184.0.0/16 21897 -170.185.0.0/16 8030 -170.186.0.0/17 11273 -170.186.128.0/20 11273 -170.186.144.0/21 11273 -170.186.152.0/23 11273 -170.186.154.0/24 40466 -170.186.155.0/24 11273 -170.186.156.0/22 11273 -170.186.160.0/19 11273 -170.186.192.0/18 11273 -170.187.0.0/23 7018 -170.187.5.0/24 20115 -170.187.6.0/23 62947 -170.187.12.0/23 24989 -170.188.0.0/16 47090 -170.189.12.0/24 26517 -170.189.152.0/24 3816 -170.189.157.0/24 5384 -170.189.158.0/24 5384 -170.189.159.0/24 26517 -170.189.192.0/23 26517 -170.189.194.0/24 26517 -170.189.200.0/24 26517 -170.189.208.0/24 26517 -170.189.239.0/24 3816 -170.189.243.0/24 26517 -170.190.0.0/19 33527 -170.190.32.0/21 33527 -170.190.40.0/22 19957 -170.190.44.0/22 33527 -170.190.48.0/20 33527 -170.190.64.0/18 33527 -170.190.128.0/17 33527 -170.191.0.0/24 393456 -170.191.2.0/24 393456 -170.194.8.0/21 26342 -170.194.16.0/21 28888 -170.194.32.0/21 42536 -170.194.40.0/21 42633 -170.194.48.0/21 42633 -170.194.56.0/21 47661 -170.194.64.0/21 47661 -170.194.96.0/19 42633 -170.194.128.0/20 26342 -170.194.152.0/21 26342 -170.194.168.0/21 26342 -170.194.176.0/20 26342 -170.195.0.0/17 17052 -170.199.0.0/17 7122 -170.199.128.0/19 53913 -170.199.160.0/19 395662 -170.199.193.0/24 33047 -170.199.194.0/23 33047 -170.199.200.0/24 33047 -170.199.208.0/23 6939 -170.199.217.0/24 393656 -170.199.218.0/23 13576 -170.199.220.0/23 13576 -170.199.222.0/23 46446 -170.199.224.0/21 64267 -170.199.232.0/22 62642 -170.199.236.0/23 16696 -170.199.238.0/23 1239 -170.199.242.0/23 30517 -170.199.244.0/23 16696 -170.199.246.0/24 63772 -170.199.248.0/21 46592 -170.200.65.0/24 52555 -170.200.69.0/24 1013 -170.200.70.0/24 12025 -170.200.71.0/24 13416 -170.200.72.0/24 13416 -170.200.74.0/23 17044 -170.200.76.0/24 17044 -170.200.78.0/24 17044 -170.200.81.0/24 17044 -170.200.83.0/24 136397 -170.200.85.0/24 136397 -170.200.86.0/24 36283 -170.200.90.0/24 24182 -170.200.128.0/21 17044 -170.200.144.0/21 32886 -170.200.164.0/22 46713 -170.200.168.0/21 46713 -170.200.248.0/23 31743 -170.200.250.0/24 3257 -170.201.0.0/16 10995 -170.202.0.0/20 17166 -170.202.16.0/22 17166 -170.202.20.0/23 17166 -170.202.22.0/24 25602 -170.202.23.0/24 17166 -170.202.24.0/24 17166 -170.202.25.0/24 25602 -170.202.26.0/23 17166 -170.202.28.0/22 17166 -170.202.32.0/20 17166 -170.202.48.0/22 17166 -170.202.52.0/24 17166 -170.202.53.0/24 25602 -170.202.54.0/23 17166 -170.202.56.0/21 17166 -170.202.64.0/22 23381 -170.202.68.0/22 17166 -170.202.72.0/24 23381 -170.202.73.0/24 17166 -170.202.74.0/23 17166 -170.202.76.0/23 17166 -170.202.78.0/24 23381 -170.202.79.0/24 17166 -170.202.80.0/24 23381 -170.202.81.0/24 17166 -170.202.82.0/23 17166 -170.202.84.0/22 17166 -170.202.88.0/21 17166 -170.202.96.0/20 17166 -170.202.112.0/23 17166 -170.202.114.0/24 23381 -170.202.115.0/24 17166 -170.202.116.0/22 17166 -170.202.120.0/23 17166 -170.202.122.0/24 23381 -170.202.123.0/24 17166 -170.202.124.0/22 17166 -170.202.128.0/20 17166 -170.202.144.0/20 2828 -170.202.160.0/20 17166 -170.202.176.0/22 17166 -170.202.180.0/23 17166 -170.202.182.0/23 23381 -170.202.184.0/23 23381 -170.202.186.0/24 17166 -170.202.187.0/24 23381 -170.202.188.0/23 23381 -170.202.190.0/24 17166 -170.202.191.0/24 23381 -170.202.192.0/21 17166 -170.202.200.0/24 14931 -170.202.201.0/24 198075 -170.202.202.0/23 17166 -170.202.204.0/23 198075 -170.202.206.0/24 17166 -170.202.207.0/24 23381 -170.202.208.0/22 14931 -170.202.212.0/22 17166 -170.202.216.0/21 17166 -170.202.224.0/19 17166 -170.203.250.0/24 36351 -170.203.251.0/24 14417 -170.203.252.0/22 14417 -170.204.20.0/23 398056 -170.204.40.0/23 398056 -170.205.64.0/18 3303 -170.205.128.0/18 22646 -170.207.16.0/20 17389 -170.207.127.0/24 17389 -170.207.128.0/17 17389 -170.208.0.0/16 11188 -170.209.38.0/23 40410 -170.210.0.0/21 4270 -170.210.8.0/21 27993 -170.210.16.0/20 4270 -170.210.32.0/22 4270 -170.210.36.0/22 27993 -170.210.40.0/21 4270 -170.210.48.0/22 4270 -170.210.52.0/22 263186 -170.210.56.0/21 4270 -170.210.64.0/21 4270 -170.210.72.0/22 61486 -170.210.76.0/22 4270 -170.210.80.0/22 4270 -170.210.84.0/24 264785 -170.210.85.0/24 4270 -170.210.86.0/23 4270 -170.210.88.0/22 4270 -170.210.92.0/22 265700 -170.210.96.0/21 52442 -170.210.104.0/21 4270 -170.210.112.0/20 4270 -170.210.128.0/21 27770 -170.210.136.0/21 4270 -170.210.144.0/21 27875 -170.210.152.0/21 4270 -170.210.160.0/21 28107 -170.210.168.0/21 28068 -170.210.176.0/22 4270 -170.210.180.0/24 42 -170.210.181.0/24 4270 -170.210.182.0/23 4270 -170.210.184.0/21 4270 -170.210.192.0/21 263235 -170.210.200.0/21 4270 -170.210.208.0/21 4270 -170.210.216.0/22 4270 -170.210.220.0/23 4270 -170.210.222.0/24 52314 -170.210.223.0/24 4270 -170.210.224.0/20 4270 -170.210.240.0/22 264630 -170.210.244.0/22 4270 -170.210.248.0/21 27790 -170.211.0.0/16 21852 -170.212.0.0/24 46274 -170.213.2.0/23 2386 -170.213.4.0/23 2386 -170.213.18.0/23 2386 -170.213.22.0/23 2386 -170.213.131.0/24 2386 -170.213.132.0/23 2386 -170.213.220.0/23 5714 -170.213.222.0/23 2158 -170.213.236.0/23 5714 -170.213.238.0/23 2158 -170.213.240.0/24 2158 -170.215.0.0/23 7011 -170.215.2.0/23 5650 -170.215.4.0/22 5650 -170.215.8.0/22 5650 -170.215.12.0/24 7011 -170.215.13.0/24 5650 -170.215.14.0/23 5650 -170.215.16.0/22 5650 -170.215.20.0/22 7011 -170.215.24.0/23 7011 -170.215.26.0/23 5650 -170.215.28.0/22 5650 -170.215.32.0/23 7011 -170.215.34.0/23 5650 -170.215.36.0/22 7011 -170.215.40.0/22 5650 -170.215.44.0/23 7011 -170.215.46.0/23 5650 -170.215.48.0/23 7011 -170.215.50.0/23 5650 -170.215.52.0/24 7011 -170.215.53.0/24 5650 -170.215.54.0/23 5650 -170.215.56.0/23 5650 -170.215.58.0/24 5650 -170.215.59.0/24 7011 -170.215.60.0/24 5650 -170.215.61.0/24 7011 -170.215.62.0/23 7011 -170.215.64.0/21 5650 -170.215.72.0/24 7011 -170.215.73.0/24 5650 -170.215.74.0/23 5650 -170.215.76.0/22 5650 -170.215.80.0/20 5650 -170.215.96.0/21 5650 -170.215.104.0/24 5650 -170.215.105.0/24 7011 -170.215.106.0/23 5650 -170.215.108.0/23 5650 -170.215.110.0/24 7011 -170.215.111.0/24 5650 -170.215.112.0/22 5650 -170.215.116.0/23 5650 -170.215.118.0/23 7011 -170.215.120.0/23 5650 -170.215.122.0/23 7011 -170.215.124.0/22 7011 -170.215.128.0/22 5650 -170.215.132.0/23 7011 -170.215.134.0/24 5650 -170.215.135.0/24 7011 -170.215.136.0/24 7011 -170.215.137.0/24 5650 -170.215.138.0/23 7011 -170.215.140.0/23 7011 -170.215.142.0/23 5650 -170.215.144.0/23 5650 -170.215.146.0/23 7011 -170.215.148.0/23 5650 -170.215.150.0/23 7011 -170.215.152.0/23 5650 -170.215.154.0/24 7011 -170.215.155.0/24 5650 -170.215.156.0/23 5650 -170.215.158.0/24 5650 -170.215.159.0/24 7011 -170.215.160.0/22 5650 -170.215.164.0/24 5650 -170.215.165.0/24 7011 -170.215.166.0/23 5650 -170.215.168.0/22 5650 -170.215.172.0/24 5650 -170.215.173.0/24 7011 -170.215.174.0/24 5650 -170.215.175.0/24 7011 -170.215.176.0/20 7011 -170.215.192.0/23 5650 -170.215.194.0/23 7011 -170.215.196.0/22 5650 -170.215.200.0/23 5650 -170.215.202.0/24 7011 -170.215.203.0/24 5650 -170.215.204.0/24 5650 -170.215.205.0/24 7011 -170.215.206.0/23 5650 -170.215.208.0/21 5650 -170.215.216.0/22 5650 -170.215.220.0/23 5650 -170.215.222.0/23 7011 -170.215.224.0/21 5650 -170.215.232.0/23 5650 -170.215.234.0/24 5650 -170.215.235.0/24 7011 -170.215.236.0/23 5650 -170.215.238.0/23 7011 -170.215.240.0/22 7011 -170.215.244.0/24 5650 -170.215.245.0/24 7011 -170.215.246.0/23 7011 -170.215.248.0/21 5650 -170.216.0.0/16 8103 -170.217.245.0/24 16432 -170.217.251.0/24 16432 -170.217.252.0/24 12147 -170.217.254.0/24 12147 -170.217.255.0/24 16432 -170.218.128.0/21 11740 -170.218.200.0/21 11740 -170.218.208.0/20 11740 -170.218.224.0/20 11740 -170.218.246.0/23 11740 -170.218.248.0/24 11740 -170.219.0.0/16 8103 -170.220.29.0/24 27575 -170.220.209.0/24 22916 -170.222.0.0/16 11577 -170.223.0.0/16 40831 -170.224.32.0/19 19604 -170.224.160.0/22 3356 -170.224.164.0/24 3356 -170.224.165.0/24 36351 -170.224.166.0/24 36351 -170.224.168.0/23 36351 -170.224.170.0/24 36351 -170.224.176.0/22 3356 -170.224.180.0/22 19604 -170.224.184.0/21 19604 -170.224.208.0/23 36351 -170.224.210.0/23 577 -170.224.212.0/22 27477 -170.224.240.0/20 4544 -170.225.0.0/19 18703 -170.225.93.0/24 3356 -170.225.94.0/24 3356 -170.225.111.0/24 36351 -170.225.112.0/23 36351 -170.225.114.0/24 36351 -170.225.116.0/24 17390 -170.225.128.0/20 12980 -170.225.160.0/24 36351 -170.225.182.0/23 36351 -170.225.188.0/22 36351 -170.225.216.0/24 7474 -170.225.222.0/24 2386 -170.225.224.0/23 4809 -170.225.227.0/24 46589 -170.225.228.0/24 53496 -170.225.230.0/23 36351 -170.225.232.0/23 12169 -170.225.240.0/24 19152 -170.225.242.0/24 18703 -170.225.244.0/23 4755 -170.225.246.0/23 36351 -170.225.248.0/23 17375 -170.225.250.0/24 26607 -170.225.254.0/23 547 -170.226.4.0/24 19752 -170.226.8.0/24 3848 -170.226.21.0/24 7018 -170.226.36.0/23 7046 -170.226.39.0/24 36351 -170.226.56.0/24 19152 -170.226.57.0/24 7046 -170.226.58.0/23 2685 -170.226.62.0/24 706 -170.226.63.0/24 1956 -170.228.0.0/21 19524 -170.228.32.0/21 19524 -170.228.100.0/24 19524 -170.228.104.0/22 19524 -170.228.156.0/22 19524 -170.228.180.0/22 19524 -170.228.184.0/22 19524 -170.228.212.0/22 19524 -170.228.216.0/22 19524 -170.228.252.0/23 19524 -170.228.254.0/24 19524 -170.229.192.0/22 19726 -170.230.250.0/23 19229 -170.230.252.0/23 19229 -170.231.0.0/22 263439 -170.231.4.0/22 52977 -170.231.8.0/22 262400 -170.231.12.0/22 265058 -170.231.16.0/22 265059 -170.231.20.0/22 53152 -170.231.24.0/22 262980 -170.231.28.0/22 265043 -170.231.32.0/22 264513 -170.231.36.0/22 27851 -170.231.40.0/22 265051 -170.231.44.0/22 265048 -170.231.48.0/22 265060 -170.231.52.0/22 262262 -170.231.56.0/22 265061 -170.231.60.0/22 265070 -170.231.64.0/22 265045 -170.231.72.0/22 263037 -170.231.76.0/22 27833 -170.231.80.0/22 27843 -170.231.84.0/22 53022 -170.231.88.0/22 53196 -170.231.92.0/22 265052 -170.231.96.0/22 265065 -170.231.100.0/23 265049 -170.231.104.0/22 262983 -170.231.108.0/22 265053 -170.231.112.0/22 265066 -170.231.116.0/22 265054 -170.231.120.0/22 265055 -170.231.124.0/22 264723 -170.231.128.0/22 265068 -170.231.132.0/22 265069 -170.231.136.0/22 10318 -170.231.140.0/22 61582 -170.231.144.0/22 265134 -170.231.148.0/22 265056 -170.231.152.0/22 263424 -170.231.156.0/22 265062 -170.231.160.0/22 28038 -170.231.164.0/22 61665 -170.231.168.0/22 27843 -170.231.172.0/22 262590 -170.231.176.0/22 264725 -170.231.180.0/22 28183 -170.231.184.0/22 264106 -170.231.188.0/22 265072 -170.231.192.0/22 265063 -170.231.196.0/22 262530 -170.231.200.0/22 264943 -170.231.204.0/22 265856 -170.231.208.0/22 263264 -170.231.212.0/22 262367 -170.231.216.0/22 263913 -170.231.220.0/22 264499 -170.231.224.0/22 2 -170.231.228.0/22 14178 -170.231.232.0/22 265075 -170.231.236.0/22 39782 -170.231.240.0/22 263573 -170.231.244.0/22 61893 -170.231.248.0/22 397044 -170.231.252.0/22 52650 -170.232.3.0/24 21833 -170.232.224.0/20 21833 -170.233.0.0/22 262715 -170.233.4.0/22 52630 -170.233.8.0/22 52751 -170.233.12.0/22 52531 -170.233.16.0/22 61717 -170.233.20.0/22 61857 -170.233.24.0/22 265085 -170.233.28.0/22 264738 -170.233.32.0/22 265086 -170.233.36.0/22 265181 -170.233.40.0/22 265076 -170.233.44.0/22 264202 -170.233.48.0/22 28210 -170.233.52.0/22 52547 -170.233.56.0/22 265087 -170.233.60.0/22 28153 -170.233.64.0/22 263152 -170.233.68.0/22 264732 -170.233.72.0/23 36511 -170.233.74.0/24 36511 -170.233.76.0/22 263495 -170.233.80.0/22 265114 -170.233.84.0/22 53057 -170.233.88.0/22 265247 -170.233.92.0/22 264736 -170.233.96.0/22 265077 -170.233.100.0/22 265092 -170.233.104.0/22 265093 -170.233.108.0/22 265090 -170.233.112.0/22 265078 -170.233.116.0/22 264738 -170.233.120.0/22 265080 -170.233.124.0/22 264737 -170.233.128.0/22 264008 -170.233.132.0/22 262470 -170.233.136.0/22 265079 -170.233.140.0/22 265088 -170.233.144.0/22 27843 -170.233.148.0/22 265096 -170.233.152.0/24 264729 -170.233.156.0/22 264440 -170.233.160.0/22 263659 -170.233.164.0/22 61942 -170.233.168.0/22 263441 -170.233.172.0/22 264281 -170.233.176.0/22 52268 -170.233.180.0/22 265081 -170.233.184.0/22 265082 -170.233.188.0/22 265067 -170.233.192.0/22 52510 -170.233.196.0/22 265083 -170.233.200.0/22 265089 -170.233.204.0/22 263321 -170.233.208.0/22 264748 -170.233.212.0/22 52706 -170.233.216.0/22 52455 -170.233.220.0/22 263912 -170.233.224.0/22 61588 -170.233.228.0/22 265198 -170.233.232.0/22 264741 -170.233.236.0/22 265098 -170.233.240.0/22 266445 -170.233.244.0/22 61920 -170.233.248.0/22 265091 -170.233.252.0/22 265097 -170.235.0.0/16 11534 -170.236.180.0/24 41555 -170.238.0.0/22 27919 -170.238.4.0/22 61928 -170.238.8.0/22 52465 -170.238.12.0/22 266316 -170.238.16.0/22 264807 -170.238.24.0/22 264802 -170.238.28.0/22 53066 -170.238.32.0/22 61466 -170.238.36.0/22 266324 -170.238.40.0/22 264795 -170.238.44.0/22 266317 -170.238.48.0/22 266344 -170.238.52.0/22 266314 -170.238.56.0/22 266312 -170.238.60.0/22 61649 -170.238.64.0/23 14080 -170.238.66.0/24 264798 -170.238.68.0/22 266313 -170.238.72.0/22 264496 -170.238.76.0/22 266328 -170.238.80.0/22 262785 -170.238.84.0/22 61648 -170.238.88.0/22 262755 -170.238.92.0/22 262649 -170.238.96.0/22 266325 -170.238.100.0/22 266318 -170.238.104.0/22 266315 -170.238.108.0/22 264812 -170.238.112.0/22 266337 -170.238.116.0/22 28669 -170.238.120.0/22 266322 -170.238.124.0/22 27813 -170.238.128.0/22 266319 -170.238.132.0/22 28265 -170.238.136.0/22 266320 -170.238.140.0/22 266321 -170.238.144.0/22 266329 -170.238.148.0/22 263589 -170.238.152.0/22 266326 -170.238.156.0/22 266323 -170.238.160.0/22 266327 -170.238.164.0/22 266330 -170.238.170.0/23 264801 -170.238.172.0/22 262485 -170.238.176.0/22 262375 -170.238.180.0/22 266331 -170.238.184.0/23 266338 -170.238.186.0/24 266338 -170.238.187.0/24 54290 -170.238.188.0/22 266332 -170.238.192.0/22 263032 -170.238.196.0/22 262271 -170.238.200.0/22 264814 -170.238.204.0/22 264810 -170.238.208.0/22 266334 -170.238.212.0/22 266340 -170.238.216.0/22 265251 -170.238.224.0/24 266461 -170.238.226.0/23 264803 -170.238.228.0/22 266333 -170.238.232.0/22 37468 -170.238.236.0/22 18678 -170.238.240.0/22 52428 -170.238.244.0/22 28023 -170.238.248.0/22 263959 -170.238.252.0/22 265523 -170.239.0.0/22 52878 -170.239.4.0/22 266343 -170.239.8.0/22 264877 -170.239.12.0/22 27759 -170.239.16.0/22 266345 -170.239.20.0/22 264236 -170.239.24.0/22 264321 -170.239.28.0/22 27865 -170.239.32.0/22 263777 -170.239.36.0/22 263151 -170.239.40.0/22 265224 -170.239.44.0/22 266339 -170.239.48.0/22 52271 -170.239.52.0/22 265128 -170.239.56.0/22 28087 -170.239.60.0/22 266341 -170.239.68.0/22 53169 -170.239.72.0/22 266350 -170.239.76.0/22 266351 -170.239.80.0/22 266342 -170.239.84.0/22 52368 -170.239.88.0/22 262229 -170.239.92.0/22 266346 -170.239.96.0/22 266347 -170.239.100.0/22 22411 -170.239.104.0/22 266355 -170.239.108.0/22 266348 -170.239.112.0/22 266364 -170.239.116.0/22 264426 -170.239.120.0/22 262159 -170.239.124.0/22 262664 -170.239.128.0/22 263736 -170.239.132.0/22 263110 -170.239.136.0/22 266352 -170.239.140.0/22 266353 -170.239.144.0/22 266361 -170.239.148.0/22 28458 -170.239.152.0/22 263700 -170.239.156.0/22 28198 -170.239.160.0/22 263415 -170.239.164.0/22 264750 -170.239.168.0/22 264815 -170.239.172.0/22 264809 -170.239.176.0/22 265239 -170.239.180.0/22 264740 -170.239.184.0/22 266354 -170.239.188.0/22 264838 -170.239.192.0/22 28201 -170.239.196.0/22 264536 -170.239.200.0/22 266362 -170.239.204.0/23 265629 -170.239.206.0/24 265629 -170.239.208.0/22 266357 -170.239.212.0/22 266358 -170.239.216.0/22 266359 -170.239.220.0/23 28247 -170.239.222.0/24 28247 -170.239.223.0/24 28201 -170.239.224.0/22 266356 -170.239.228.0/22 266396 -170.239.232.0/22 265252 -170.239.236.0/22 264813 -170.239.240.0/22 266386 -170.239.244.0/22 61523 -170.239.248.0/22 266363 -170.239.252.0/22 266360 -170.244.0.0/22 52699 -170.244.4.0/22 266488 -170.244.8.0/22 266478 -170.244.12.0/22 264281 -170.244.16.0/22 266513 -170.244.20.0/22 266496 -170.244.24.0/22 266489 -170.244.28.0/22 263608 -170.244.32.0/22 266497 -170.244.36.0/22 266490 -170.244.40.0/22 264677 -170.244.44.0/22 266479 -170.244.48.0/22 61487 -170.244.52.0/22 265633 -170.244.57.0/24 263684 -170.244.59.0/24 263684 -170.244.60.0/22 266491 -170.244.64.0/22 266492 -170.244.68.0/22 266517 -170.244.72.0/22 266498 -170.244.76.0/22 266505 -170.244.80.0/22 264750 -170.244.84.0/22 266493 -170.244.88.0/22 264844 -170.244.92.0/22 394474 -170.244.96.0/22 266494 -170.244.100.0/24 5 -170.244.101.0/24 265189 -170.244.102.0/23 265189 -170.244.104.0/22 262952 -170.244.108.0/22 28408 -170.244.112.0/22 264300 -170.244.116.0/22 52799 -170.244.120.0/24 22908 -170.244.124.0/24 22908 -170.244.128.0/22 264657 -170.244.132.0/22 263078 -170.244.136.0/22 266518 -170.244.140.0/22 266522 -170.244.144.0/22 263821 -170.244.148.0/22 266499 -170.244.152.0/22 28255 -170.244.156.0/22 265631 -170.244.160.0/22 266504 -170.244.164.0/22 266503 -170.244.168.0/22 267858 -170.244.172.0/22 266502 -170.244.176.0/22 266507 -170.244.180.0/22 266506 -170.244.184.0/22 264723 -170.244.188.0/22 265630 -170.244.192.0/22 262809 -170.244.196.0/22 266500 -170.244.200.0/22 266013 -170.244.204.0/22 266509 -170.244.208.0/22 264668 -170.244.212.0/22 266508 -170.244.216.0/22 263496 -170.244.220.0/22 263263 -170.244.224.0/22 266510 -170.244.228.0/22 266523 -170.244.232.0/22 266514 -170.244.236.0/22 263057 -170.244.240.0/22 265631 -170.244.244.0/22 262770 -170.244.248.0/22 264943 -170.244.252.0/22 262353 -170.245.0.0/22 52233 -170.245.8.0/22 266519 -170.245.12.0/22 262481 -170.245.16.0/22 263991 -170.245.20.0/22 28580 -170.245.24.0/22 61588 -170.245.28.0/22 266515 -170.245.34.0/24 11562 -170.245.35.0/24 265647 -170.245.36.0/22 266021 -170.245.40.0/22 264677 -170.245.44.0/22 266014 -170.245.48.0/22 52510 -170.245.52.0/22 266025 -170.245.56.0/22 262234 -170.245.60.0/22 266521 -170.245.64.0/22 266516 -170.245.68.0/22 264255 -170.245.72.0/22 61740 -170.245.76.0/22 266015 -170.245.80.0/22 263553 -170.245.84.0/22 265028 -170.245.88.0/22 14178 -170.245.92.0/22 266520 -170.245.96.0/22 61748 -170.245.100.0/22 28331 -170.245.104.0/22 262761 -170.245.108.0/22 263152 -170.245.112.0/22 262591 -170.245.116.0/22 264429 -170.245.120.0/22 266024 -170.245.124.0/22 266022 -170.245.128.0/22 266016 -170.245.134.0/23 52756 -170.245.136.0/22 264342 -170.245.140.0/22 262879 -170.245.144.0/22 52712 -170.245.148.0/22 263055 -170.245.152.0/22 265123 -170.245.156.0/23 266026 -170.245.160.0/22 265043 -170.245.164.0/22 264605 -170.245.168.0/22 262231 -170.245.176.0/22 266524 -170.245.180.0/22 266017 -170.245.184.0/24 22908 -170.245.187.0/24 22908 -170.245.188.0/22 28394 -170.245.192.0/22 61673 -170.245.196.0/22 262504 -170.245.200.0/22 263998 -170.245.204.0/22 266019 -170.245.208.0/22 264857 -170.245.216.0/22 262333 -170.245.220.0/22 266028 -170.245.224.0/22 263145 -170.245.228.0/22 266023 -170.245.232.0/22 11014 -170.245.236.0/22 266020 -170.245.240.0/22 265636 -170.245.244.0/22 266030 -170.245.248.0/22 266032 -170.245.252.0/22 61856 -170.246.0.0/22 264575 -170.246.4.0/22 52751 -170.246.8.0/22 265171 -170.246.12.0/22 28244 -170.246.16.0/22 264295 -170.246.20.0/22 265713 -170.246.24.0/22 263077 -170.246.28.0/22 264015 -170.246.32.0/22 264390 -170.246.36.0/22 265653 -170.246.40.0/22 265638 -170.246.44.0/22 262379 -170.246.48.0/22 265635 -170.246.52.0/22 263740 -170.246.56.0/22 265645 -170.246.60.0/22 266029 -170.246.68.0/22 263361 -170.246.72.0/22 28208 -170.246.77.0/24 11562 -170.246.78.0/24 265640 -170.246.79.0/24 11562 -170.246.80.0/22 52686 -170.246.84.0/23 265657 -170.246.86.0/24 265657 -170.246.88.0/22 265639 -170.246.92.0/22 60458 -170.246.96.0/22 52721 -170.246.100.0/22 52468 -170.246.104.0/22 262352 -170.246.108.0/22 265141 -170.246.112.0/22 27951 -170.246.116.0/22 266034 -170.246.120.0/22 52794 -170.246.124.0/22 61701 -170.246.128.0/22 28642 -170.246.132.0/22 28183 -170.246.136.0/22 52692 -170.246.140.0/22 28294 -170.246.144.0/22 264069 -170.246.148.0/22 262202 -170.246.152.0/22 18840 -170.246.156.0/22 262217 -170.246.160.0/22 61478 -170.246.164.0/22 52913 -170.246.168.0/22 263963 -170.246.172.0/22 265656 -170.246.176.0/22 265648 -170.246.180.0/22 265637 -170.246.184.0/22 264880 -170.246.188.0/22 264001 -170.246.192.0/22 262900 -170.246.196.0/22 52974 -170.246.200.0/22 53137 -170.246.204.0/22 262683 -170.246.208.0/22 262680 -170.246.212.0/22 263877 -170.246.216.0/22 61708 -170.246.220.0/22 265654 -170.246.224.0/22 264051 -170.246.228.0/22 263646 -170.246.232.0/22 61797 -170.246.236.0/22 61678 -170.246.240.0/22 266033 -170.246.244.0/22 52349 -170.246.248.0/22 61870 -170.246.252.0/22 266031 -170.247.0.0/23 267788 -170.247.2.0/24 262186 -170.247.3.0/24 267788 -170.247.4.0/22 61900 -170.247.8.0/22 263479 -170.247.12.0/22 52714 -170.247.16.0/22 61732 -170.247.20.0/22 263324 -170.247.24.0/22 262593 -170.247.28.0/22 265347 -170.247.32.0/22 264952 -170.247.36.0/22 264524 -170.247.40.0/22 61591 -170.247.44.0/22 263154 -170.247.48.0/22 53057 -170.247.52.0/22 262509 -170.247.56.0/22 265646 -170.247.60.0/22 264365 -170.247.64.0/22 52592 -170.247.68.0/22 52573 -170.247.72.0/22 52544 -170.247.76.0/23 265643 -170.247.80.0/22 61805 -170.247.84.0/22 262262 -170.247.88.0/22 264741 -170.247.92.0/22 64112 -170.247.96.0/22 265659 -170.247.100.0/22 262453 -170.247.104.0/22 264150 -170.247.108.0/22 264981 -170.247.112.0/22 263903 -170.247.116.0/22 28580 -170.247.120.0/22 52399 -170.247.124.0/22 52726 -170.247.128.0/24 265527 -170.247.130.0/24 265527 -170.247.132.0/22 265526 -170.247.136.0/22 264780 -170.247.140.0/22 263244 -170.247.144.0/22 52651 -170.247.148.0/22 263166 -170.247.152.0/22 265698 -170.247.156.0/22 61811 -170.247.160.0/22 27839 -170.247.164.0/22 265642 -170.247.172.0/24 28539 -170.247.173.0/24 32098 -170.247.174.0/24 28539 -170.247.176.0/22 28561 -170.247.180.0/22 264972 -170.247.188.0/22 265529 -170.247.192.0/22 28224 -170.247.196.0/22 53014 -170.247.200.0/22 263256 -170.247.204.0/22 264827 -170.247.208.0/22 265229 -170.247.212.0/22 264660 -170.247.220.0/22 52449 -170.247.224.0/22 32098 -170.247.228.0/22 28411 -170.247.232.0/22 52858 -170.247.236.0/22 61792 -170.247.240.0/22 263949 -170.247.244.0/22 262369 -170.247.248.0/22 263391 -170.247.252.0/22 264491 -170.248.0.0/23 21433 -170.248.2.0/23 3573 -170.248.8.0/23 21433 -170.248.10.0/24 3549 -170.248.12.0/23 21433 -170.248.16.0/23 21433 -170.248.18.0/23 3573 -170.248.20.0/24 21433 -170.248.24.0/21 3573 -170.248.32.0/22 3573 -170.248.36.0/24 3573 -170.248.39.0/24 3573 -170.248.40.0/24 21433 -170.248.42.0/23 21433 -170.248.45.0/24 3573 -170.248.46.0/23 21433 -170.248.50.0/23 22203 -170.248.52.0/24 3573 -170.248.54.0/24 21433 -170.248.55.0/24 701 -170.248.56.0/21 3573 -170.248.64.0/21 3573 -170.248.72.0/22 3573 -170.248.77.0/24 21433 -170.248.78.0/24 3573 -170.248.79.0/24 24488 -170.248.83.0/24 21433 -170.248.85.0/24 3573 -170.248.87.0/24 3573 -170.248.93.0/24 6181 -170.248.94.0/23 6181 -170.248.100.0/24 24488 -170.248.102.0/23 3573 -170.248.104.0/21 3573 -170.248.112.0/21 3573 -170.248.120.0/23 3573 -170.248.122.0/23 21433 -170.248.124.0/22 21433 -170.248.128.0/24 21433 -170.248.129.0/24 3573 -170.248.136.0/24 3573 -170.248.138.0/23 21433 -170.248.142.0/24 15404 -170.248.143.0/24 21433 -170.248.144.0/21 21433 -170.248.152.0/24 3573 -170.248.154.0/24 3573 -170.248.156.0/22 3573 -170.248.160.0/23 21433 -170.248.164.0/22 21433 -170.248.168.0/23 21433 -170.248.172.0/23 18546 -170.248.188.0/22 21433 -170.248.208.0/23 22203 -170.248.210.0/23 3573 -170.248.212.0/23 3573 -170.248.214.0/24 3573 -170.248.215.0/24 21433 -170.248.216.0/22 21433 -170.248.220.0/23 21433 -170.248.226.0/23 3573 -170.248.228.0/23 21433 -170.248.236.0/23 24488 -170.248.238.0/23 22203 -170.248.250.0/23 6181 -170.249.0.0/19 46208 -170.249.32.0/19 46618 -170.249.64.0/21 131937 -170.249.72.0/21 19971 -170.249.80.0/21 46618 -170.249.88.0/22 26709 -170.249.92.0/22 396919 -170.249.96.0/19 131937 -170.249.128.0/21 13760 -170.249.136.0/22 13760 -170.249.140.0/23 13760 -170.249.142.0/24 13760 -170.249.143.0/24 30102 -170.249.144.0/20 13760 -170.249.160.0/19 13760 -170.249.192.0/20 63410 -170.249.232.0/21 63410 -170.249.248.0/21 393398 -170.250.0.0/18 23089 -170.250.64.0/19 23089 -170.250.96.0/21 23089 -170.250.104.0/23 31793 -170.250.106.0/23 23089 -170.250.108.0/22 23089 -170.250.112.0/20 23089 -170.250.128.0/17 23089 -170.251.8.0/23 3573 -170.251.10.0/23 21433 -170.251.12.0/24 21433 -170.251.13.0/24 3573 -170.251.20.0/23 21433 -170.251.22.0/24 18546 -170.251.23.0/24 21433 -170.251.24.0/21 6181 -170.251.36.0/22 21433 -170.251.40.0/21 21433 -170.251.48.0/23 21433 -170.251.52.0/24 3573 -170.251.54.0/23 3573 -170.251.56.0/22 3573 -170.251.60.0/23 21433 -170.251.64.0/22 3573 -170.251.70.0/24 3573 -170.251.72.0/22 3573 -170.251.78.0/24 3573 -170.251.84.0/23 21433 -170.251.88.0/23 21433 -170.251.90.0/23 3573 -170.251.92.0/23 21433 -170.251.94.0/24 3573 -170.251.98.0/23 3573 -170.251.100.0/22 3573 -170.251.104.0/23 21433 -170.251.108.0/24 15404 -170.251.110.0/23 21433 -170.251.112.0/24 21433 -170.251.113.0/24 3573 -170.251.116.0/24 21433 -170.251.119.0/24 3573 -170.251.120.0/21 3573 -170.251.128.0/21 3573 -170.251.136.0/23 21433 -170.251.138.0/23 3573 -170.251.142.0/23 21433 -170.251.146.0/23 21433 -170.251.148.0/22 21433 -170.251.152.0/21 21433 -170.251.161.0/24 3573 -170.251.162.0/23 3573 -170.251.170.0/23 21433 -170.251.172.0/22 21433 -170.251.177.0/24 21433 -170.251.178.0/23 21433 -170.251.180.0/22 3573 -170.251.184.0/23 3573 -170.251.188.0/22 3573 -170.251.192.0/23 3573 -170.251.196.0/23 3573 -170.251.200.0/23 3573 -170.251.204.0/23 3573 -170.251.208.0/23 3573 -170.251.210.0/24 3573 -170.251.212.0/23 3573 -170.251.220.0/23 3573 -170.251.225.0/24 21433 -170.251.226.0/23 21433 -170.251.228.0/24 3573 -170.251.229.0/24 21433 -170.251.251.0/24 3356 -170.251.252.0/23 21433 -170.252.16.0/23 3573 -170.252.20.0/22 3573 -170.252.32.0/21 3573 -170.252.43.0/24 3573 -170.252.44.0/22 3573 -170.252.64.0/20 3573 -170.252.80.0/22 3573 -170.252.84.0/23 15404 -170.252.86.0/24 15404 -170.252.87.0/24 3573 -170.252.88.0/21 3573 -170.252.96.0/19 3573 -170.252.136.0/21 3573 -170.252.144.0/23 4713 -170.252.152.0/21 9929 -170.252.160.0/21 3573 -170.252.186.0/23 3573 -170.252.188.0/24 3573 -170.252.190.0/24 3573 -170.252.196.0/23 3573 -170.252.208.0/24 3573 -170.252.219.0/24 3573 -170.252.234.0/24 3573 -170.252.244.0/24 3573 -170.252.248.0/24 3573 -170.252.255.0/24 3573 -170.253.0.0/18 15704 -170.253.64.0/19 10962 -170.253.96.0/19 36817 -170.253.128.0/17 46687 -170.254.0.0/22 3549 -170.254.4.0/22 263528 -170.254.8.0/22 52573 -170.254.12.0/22 265094 -170.254.16.0/22 263824 -170.254.20.0/22 264299 -170.254.24.0/22 265095 -170.254.28.0/22 264746 -170.254.32.0/22 263405 -170.254.36.0/22 263853 -170.254.40.0/22 28169 -170.254.44.0/22 265153 -170.254.48.0/22 23414 -170.254.52.0/22 61901 -170.254.56.0/22 265099 -170.254.60.0/22 28075 -170.254.64.0/22 264605 -170.254.68.0/22 265109 -170.254.72.0/22 263888 -170.254.76.0/22 263971 -170.254.80.0/22 265100 -170.254.84.0/22 265112 -170.254.92.0/22 265713 -170.254.96.0/22 265102 -170.254.100.0/22 265103 -170.254.104.0/22 265104 -170.254.108.0/22 265113 -170.254.112.0/22 262322 -170.254.116.0/22 262374 -170.254.124.0/22 14457 -170.254.128.0/22 28093 -170.254.132.0/22 265106 -170.254.136.0/22 61587 -170.254.140.0/22 265107 -170.254.144.0/22 265398 -170.254.148.0/22 28310 -170.254.152.0/22 263077 -170.254.156.0/22 264739 -170.254.160.0/22 28201 -170.254.164.0/22 52372 -170.254.168.0/22 61584 -170.254.172.0/22 265641 -170.254.176.0/22 394474 -170.254.180.0/22 263635 -170.254.184.0/22 262369 -170.254.188.0/22 263091 -170.254.192.0/23 200 -170.254.194.0/23 201 -170.254.196.0/22 263154 -170.254.200.0/22 265130 -170.254.204.0/22 52307 -170.254.208.0/22 265116 -170.254.212.0/22 265381 -170.254.216.0/22 264770 -170.254.220.0/22 265373 -170.254.224.0/22 265382 -170.254.228.0/22 27951 -170.254.232.0/22 27843 -170.254.240.0/22 265384 -170.254.244.0/22 265374 -170.254.248.0/22 265385 -170.254.252.0/22 52584 -170.255.0.0/16 5400 -171.0.0.0/15 9874 -171.2.0.0/15 17676 -171.4.0.0/17 45758 -171.4.128.0/18 45758 -171.4.192.0/19 45758 -171.4.224.0/20 45629 -171.4.240.0/21 45629 -171.4.248.0/21 45758 -171.5.0.0/17 45758 -171.5.128.0/18 45758 -171.5.192.0/19 45758 -171.5.224.0/21 45629 -171.5.232.0/21 45758 -171.5.240.0/21 45629 -171.5.248.0/21 45758 -171.6.0.0/17 45758 -171.6.128.0/18 45758 -171.6.192.0/19 45758 -171.6.224.0/21 45758 -171.6.232.0/21 45629 -171.6.240.0/20 45629 -171.7.0.0/17 45758 -171.7.128.0/18 45758 -171.7.192.0/19 45758 -171.7.224.0/21 45629 -171.7.232.0/21 45758 -171.7.240.0/20 45629 -171.8.0.0/17 4134 -171.8.128.0/19 4134 -171.8.160.0/22 4134 -171.8.164.0/23 4134 -171.8.166.0/24 4134 -171.8.167.0/24 137687 -171.8.168.0/21 4134 -171.8.176.0/20 4134 -171.8.192.0/18 4134 -171.9.0.0/16 4134 -171.10.0.0/15 4134 -171.12.0.0/14 4134 -171.16.0.0/24 12670 -171.16.2.0/23 12670 -171.16.4.0/24 12670 -171.16.128.0/23 12670 -171.16.200.0/21 12670 -171.16.208.0/24 203885 -171.16.209.0/24 12670 -171.16.210.0/24 203885 -171.16.211.0/24 12670 -171.16.212.0/23 12670 -171.16.216.0/21 12670 -171.16.224.0/22 12670 -171.16.247.0/24 12670 -171.16.248.0/22 12670 -171.16.252.0/23 12670 -171.16.254.0/24 12670 -171.17.1.0/24 8220 -171.17.128.0/18 12888 -171.17.255.0/24 12888 -171.18.0.0/20 12696 -171.18.17.0/24 12696 -171.18.19.0/24 12696 -171.18.20.0/22 12696 -171.18.24.0/21 43722 -171.18.32.0/21 12696 -171.18.42.0/23 12696 -171.18.44.0/22 12696 -171.18.48.0/22 10236 -171.18.52.0/24 12696 -171.18.54.0/24 12696 -171.18.64.0/20 12696 -171.18.81.0/24 12696 -171.18.82.0/23 12696 -171.18.96.0/19 12696 -171.19.0.0/16 3219 -171.20.53.0/24 393954 -171.20.54.0/23 393954 -171.20.56.0/24 3308 -171.20.63.0/24 42864 -171.20.64.0/24 39642 -171.20.65.0/24 42525 -171.20.66.0/24 3308 -171.20.67.0/24 42525 -171.20.68.0/22 3308 -171.20.76.0/24 9989 -171.21.44.0/22 28806 -171.21.80.0/22 28806 -171.21.120.0/22 28806 -171.21.248.0/22 28806 -171.22.0.0/22 24904 -171.22.4.0/22 21211 -171.22.8.0/22 202883 -171.22.12.0/22 200163 -171.22.16.0/22 43659 -171.22.20.0/22 209491 -171.22.24.0/24 202391 -171.22.25.0/24 60631 -171.22.26.0/23 60631 -171.22.28.0/22 43659 -171.22.32.0/22 9009 -171.22.36.0/22 48095 -171.22.40.0/22 199527 -171.22.44.0/22 203201 -171.22.52.0/22 209961 -171.22.60.0/22 55803 -171.22.64.0/22 207176 -171.22.68.0/22 57773 -171.22.76.0/22 25780 -171.22.80.0/22 197790 -171.22.84.0/22 209492 -171.22.88.0/22 209208 -171.22.92.0/22 204326 -171.22.96.0/22 16354 -171.22.100.0/22 3257 -171.22.108.0/22 35913 -171.22.112.0/22 35913 -171.22.116.0/24 35913 -171.22.117.0/24 40676 -171.22.118.0/23 35913 -171.22.120.0/21 35913 -171.22.128.0/22 35913 -171.22.132.0/24 35913 -171.22.133.0/24 40676 -171.22.134.0/23 35913 -171.22.136.0/22 35913 -171.22.140.0/22 202814 -171.22.144.0/24 209439 -171.22.148.0/23 56468 -171.22.150.0/24 56468 -171.22.151.0/24 209465 -171.22.152.0/22 202204 -171.22.156.0/23 209483 -171.22.158.0/24 209483 -171.22.160.0/22 60806 -171.22.164.0/22 49353 -171.22.168.0/22 8764 -171.22.172.0/22 207234 -171.22.176.0/22 41960 -171.22.180.0/22 48430 -171.22.184.0/22 42807 -171.22.188.0/23 9009 -171.22.190.0/24 9009 -171.22.191.0/24 35758 -171.22.192.0/22 209484 -171.22.200.0/24 39855 -171.22.208.0/22 41327 -171.22.212.0/22 35608 -171.22.216.0/22 23470 -171.22.220.0/22 208485 -171.22.224.0/22 209329 -171.22.232.0/22 49289 -171.22.244.0/23 3221 -171.22.246.0/23 206844 -171.22.252.0/22 204287 -171.23.0.0/16 21331 -171.24.0.0/16 34457 -171.25.128.0/21 25252 -171.25.149.0/24 3301 -171.25.152.0/21 35100 -171.25.160.0/22 2119 -171.25.164.0/22 42765 -171.25.168.0/22 15929 -171.25.172.0/22 57679 -171.25.177.0/24 198419 -171.25.178.0/24 3320 -171.25.179.0/24 57685 -171.25.180.0/23 197112 -171.25.182.0/24 57701 -171.25.183.0/24 29649 -171.25.184.0/22 29285 -171.25.188.0/23 29285 -171.25.190.0/24 57683 -171.25.191.0/24 47224 -171.25.193.0/24 198093 -171.25.194.0/23 57754 -171.25.196.0/22 198416 -171.25.200.0/23 3163 -171.25.202.0/23 50048 -171.25.204.0/23 199098 -171.25.208.0/22 13193 -171.25.216.0/24 198410 -171.25.217.0/24 6848 -171.25.218.0/23 24589 -171.25.220.0/23 57707 -171.25.222.0/24 57707 -171.25.224.0/24 57714 -171.25.226.0/23 47322 -171.25.228.0/24 42525 -171.25.229.0/24 57948 -171.25.230.0/24 198418 -171.25.231.0/24 33895 -171.25.232.0/22 57700 -171.25.236.0/22 57703 -171.25.240.0/24 59939 -171.25.241.0/24 57709 -171.25.242.0/23 57708 -171.25.244.0/22 15493 -171.25.248.0/22 57711 -171.25.252.0/22 15493 -171.27.0.0/16 8640 -171.31.0.0/16 6784 -171.33.64.0/18 50624 -171.33.128.0/23 28878 -171.33.130.0/24 28878 -171.33.131.0/24 49685 -171.33.132.0/22 28878 -171.33.136.0/21 198171 -171.33.144.0/24 15830 -171.33.152.0/21 25540 -171.33.161.0/24 39356 -171.33.165.0/24 39356 -171.33.166.0/24 39356 -171.33.169.0/24 39356 -171.33.171.0/24 39356 -171.33.173.0/24 39356 -171.33.174.0/24 31198 -171.33.176.0/21 41998 -171.33.184.0/21 196714 -171.33.192.0/19 60187 -171.33.224.0/21 38930 -171.33.232.0/23 34977 -171.33.234.0/24 34977 -171.33.235.0/24 205624 -171.33.236.0/23 34977 -171.33.238.0/24 202491 -171.33.239.0/24 34977 -171.33.240.0/23 10021 -171.33.242.0/23 137999 -171.33.244.0/22 204895 -171.33.248.0/21 31257 -171.34.0.0/15 4837 -171.36.0.0/14 4837 -171.40.0.0/14 4134 -171.44.0.0/16 4134 -171.48.7.0/24 24560 -171.48.8.0/21 24560 -171.48.16.0/20 24560 -171.48.32.0/19 24560 -171.48.64.0/18 45609 -171.49.0.0/17 45609 -171.49.128.0/18 24560 -171.49.192.0/19 24560 -171.49.224.0/20 24560 -171.49.240.0/23 24560 -171.49.248.0/21 24560 -171.50.0.0/17 45609 -171.50.128.0/17 24560 -171.51.0.0/17 45609 -171.51.128.0/19 45609 -171.51.160.0/20 45609 -171.51.196.0/22 45609 -171.51.200.0/22 45609 -171.51.208.0/21 45609 -171.51.220.0/22 45609 -171.51.224.0/22 45609 -171.51.232.0/21 45609 -171.51.244.0/22 45609 -171.60.0.0/17 45609 -171.60.128.0/17 24560 -171.61.0.0/16 24560 -171.64.0.0/14 32 -171.68.0.0/14 109 -171.72.192.0/23 4196 -171.72.194.0/23 10837 -171.72.198.0/23 10837 -171.73.180.0/23 1813 -171.73.184.0/22 1813 -171.73.188.0/23 1813 -171.73.191.0/24 1813 -171.73.194.0/23 1815 -171.73.198.0/23 1814 -171.73.201.0/24 1814 -171.73.212.0/22 1811 -171.73.234.0/23 17020 -171.73.236.0/22 17020 -171.73.240.0/20 17020 -171.74.0.0/16 19229 -171.75.0.0/16 3356 -171.76.32.0/19 24560 -171.76.64.0/24 24560 -171.76.68.0/22 24560 -171.76.72.0/21 24560 -171.76.80.0/20 24560 -171.76.96.0/19 24560 -171.76.128.0/18 45609 -171.76.192.0/20 45609 -171.77.128.0/22 45609 -171.77.136.0/22 45609 -171.77.144.0/22 45609 -171.77.152.0/22 45609 -171.78.0.0/17 45609 -171.78.128.0/17 24560 -171.79.0.0/17 24560 -171.79.128.0/18 45609 -171.80.0.0/14 4134 -171.84.0.0/23 4808 -171.84.2.0/24 4847 -171.84.3.0/24 4808 -171.84.4.0/22 4808 -171.84.8.0/21 4847 -171.84.16.0/20 4847 -171.84.32.0/19 4847 -171.84.64.0/18 4847 -171.84.128.0/17 4847 -171.85.0.0/16 4847 -171.86.0.0/15 4847 -171.88.0.0/15 4134 -171.90.0.0/16 4134 -171.91.0.0/17 4134 -171.91.128.0/20 4134 -171.91.144.0/21 4134 -171.91.152.0/22 4134 -171.91.156.0/24 4134 -171.91.157.0/24 38283 -171.91.158.0/23 38283 -171.91.160.0/19 4134 -171.91.192.0/18 4134 -171.92.0.0/17 4134 -171.92.128.0/18 4134 -171.92.192.0/21 4134 -171.92.200.0/22 4134 -171.92.204.0/23 4134 -171.92.206.0/24 4134 -171.92.207.0/24 38283 -171.92.208.0/20 4134 -171.92.224.0/19 4134 -171.93.0.0/16 4134 -171.94.0.0/15 4134 -171.96.0.0/15 17552 -171.98.0.0/16 17552 -171.99.0.0/17 17552 -171.99.128.0/21 7470 -171.99.136.0/21 17552 -171.99.144.0/20 17552 -171.99.160.0/22 17552 -171.99.164.0/22 7470 -171.99.168.0/21 17552 -171.99.176.0/21 17552 -171.99.184.0/21 7470 -171.99.192.0/19 17552 -171.99.224.0/20 17552 -171.99.240.0/21 17552 -171.99.248.0/23 17552 -171.99.250.0/23 7470 -171.99.252.0/22 17552 -171.100.0.0/22 7470 -171.100.4.0/22 17552 -171.100.8.0/22 7470 -171.100.12.0/23 7470 -171.100.14.0/23 17552 -171.100.16.0/21 17552 -171.100.24.0/22 17552 -171.100.28.0/22 7470 -171.100.32.0/21 17552 -171.100.40.0/23 17552 -171.100.42.0/23 7470 -171.100.44.0/22 7470 -171.100.48.0/22 7470 -171.100.52.0/22 17552 -171.100.56.0/21 7470 -171.100.64.0/21 7470 -171.100.72.0/22 7470 -171.100.76.0/22 17552 -171.100.80.0/23 7470 -171.100.82.0/23 17552 -171.100.84.0/22 17552 -171.100.88.0/21 17552 -171.100.96.0/22 17552 -171.100.100.0/23 17552 -171.100.102.0/23 7470 -171.100.104.0/22 17552 -171.100.108.0/23 17552 -171.100.110.0/23 7470 -171.100.112.0/22 7470 -171.100.116.0/23 17552 -171.100.118.0/23 7470 -171.100.120.0/23 7470 -171.100.122.0/23 17552 -171.100.124.0/22 17552 -171.100.128.0/21 17552 -171.100.136.0/22 17552 -171.100.140.0/22 7470 -171.100.144.0/23 7470 -171.100.146.0/23 17552 -171.100.148.0/22 17552 -171.100.152.0/22 17552 -171.100.156.0/23 7470 -171.100.158.0/23 17552 -171.100.160.0/19 17552 -171.100.192.0/21 17552 -171.100.200.0/22 17552 -171.100.204.0/22 7470 -171.100.208.0/23 7470 -171.100.210.0/23 17552 -171.100.212.0/22 17552 -171.100.216.0/21 17552 -171.100.224.0/20 17552 -171.100.240.0/23 17552 -171.100.242.0/23 7470 -171.100.244.0/23 7470 -171.100.246.0/23 17552 -171.100.248.0/22 17552 -171.100.252.0/23 17552 -171.100.254.0/23 7470 -171.101.0.0/16 17552 -171.102.0.0/19 7470 -171.102.32.0/24 17468 -171.102.33.0/24 24067 -171.102.34.0/24 24497 -171.102.35.0/24 24562 -171.102.36.0/24 38002 -171.102.37.0/24 45860 -171.102.38.0/24 55496 -171.102.39.0/24 7470 -171.102.40.0/24 58806 -171.102.41.0/24 132013 -171.102.42.0/24 132063 -171.102.43.0/24 7470 -171.102.44.0/22 7470 -171.102.48.0/21 7470 -171.102.56.0/24 45806 -171.102.57.0/24 7470 -171.102.58.0/23 7470 -171.102.60.0/22 7470 -171.102.64.0/18 7470 -171.102.128.0/18 7470 -171.102.192.0/19 7470 -171.102.224.0/21 7470 -171.102.232.0/22 7470 -171.102.236.0/24 7470 -171.102.237.0/24 38082 -171.102.238.0/24 7470 -171.102.239.0/24 38082 -171.102.240.0/20 7470 -171.103.0.0/16 7470 -171.104.0.0/15 4134 -171.106.0.0/16 4134 -171.107.0.0/18 4134 -171.107.64.0/21 4134 -171.107.72.0/22 4134 -171.107.76.0/22 137693 -171.107.80.0/21 137693 -171.107.88.0/21 4134 -171.107.96.0/19 4134 -171.107.128.0/19 4134 -171.107.160.0/20 4134 -171.107.176.0/21 4134 -171.107.184.0/21 137693 -171.107.192.0/18 4134 -171.108.0.0/17 4134 -171.108.128.0/19 4134 -171.108.160.0/20 134419 -171.108.176.0/20 4134 -171.108.192.0/18 4134 -171.109.0.0/17 4134 -171.109.128.0/20 4134 -171.109.144.0/20 134419 -171.109.160.0/19 4134 -171.109.192.0/18 4134 -171.110.0.0/20 4134 -171.110.16.0/21 4134 -171.110.24.0/21 134419 -171.110.32.0/21 134419 -171.110.40.0/21 4134 -171.110.48.0/20 4134 -171.110.64.0/18 4134 -171.110.128.0/17 4134 -171.111.0.0/17 4134 -171.111.128.0/20 4134 -171.111.144.0/21 4134 -171.111.152.0/21 137693 -171.111.160.0/19 4134 -171.111.192.0/18 4134 -171.112.0.0/14 4134 -171.116.0.0/14 4837 -171.120.0.0/13 4837 -171.154.2.0/24 3356 -171.159.20.0/22 10794 -171.159.24.0/24 10794 -171.159.46.0/23 10794 -171.159.48.0/20 10794 -171.159.64.0/19 10794 -171.159.96.0/20 10794 -171.159.192.0/18 10794 -171.161.16.0/22 10794 -171.161.24.0/24 10794 -171.161.26.0/23 10794 -171.161.28.0/23 10794 -171.161.31.0/24 10794 -171.161.32.0/20 10794 -171.161.48.0/22 10794 -171.161.54.0/23 10794 -171.161.56.0/22 10794 -171.161.60.0/23 10794 -171.161.64.0/20 10794 -171.161.128.0/18 10794 -171.161.192.0/23 10794 -171.161.194.0/24 10794 -171.161.196.0/22 10794 -171.161.200.0/21 10794 -171.161.208.0/20 10794 -171.161.224.0/19 10794 -171.162.0.0/24 10794 -171.162.2.0/23 10794 -171.162.5.0/24 10794 -171.162.6.0/23 10794 -171.162.8.0/24 10794 -171.162.12.0/23 19886 -171.162.14.0/24 19886 -171.162.16.0/22 10794 -171.162.31.0/24 10794 -171.162.32.0/20 10794 -171.162.48.0/20 19886 -171.162.64.0/20 19886 -171.162.80.0/22 19886 -171.162.84.0/23 19886 -171.162.93.0/24 7381 -171.162.94.0/23 33730 -171.162.96.0/22 10794 -171.162.105.0/24 3356 -171.162.107.0/24 19886 -171.162.108.0/22 10794 -171.162.112.0/20 19886 -171.162.128.0/19 19886 -171.162.160.0/22 33730 -171.162.168.0/24 10794 -171.162.172.0/22 10794 -171.162.190.0/23 10998 -171.162.208.0/20 10794 -171.162.224.0/20 19886 -171.162.240.0/22 10794 -171.162.244.0/23 10794 -171.162.246.0/24 10794 -171.162.247.0/24 19886 -171.162.248.0/21 10794 -171.181.112.0/20 19886 -171.192.0.0/20 10794 -171.192.16.0/23 10794 -171.207.0.0/16 9874 -171.208.0.0/14 4134 -171.212.0.0/15 4134 -171.214.0.0/22 4134 -171.214.4.0/22 38283 -171.214.8.0/22 38283 -171.214.12.0/22 4134 -171.214.16.0/20 4134 -171.214.32.0/19 4134 -171.214.64.0/18 4134 -171.214.128.0/17 4134 -171.215.0.0/16 4134 -171.216.0.0/16 4134 -171.217.0.0/17 4134 -171.217.128.0/18 4134 -171.217.192.0/19 4134 -171.217.224.0/20 4134 -171.217.240.0/21 4134 -171.217.248.0/22 4134 -171.217.252.0/23 4134 -171.217.254.0/23 38283 -171.218.0.0/15 4134 -171.220.0.0/17 4134 -171.220.128.0/18 4134 -171.220.192.0/19 4134 -171.220.224.0/23 38283 -171.220.226.0/23 139220 -171.220.228.0/22 139220 -171.220.232.0/23 139220 -171.220.234.0/23 38283 -171.220.236.0/22 38283 -171.220.240.0/22 38283 -171.220.244.0/24 38283 -171.220.245.0/24 4134 -171.220.246.0/23 4134 -171.220.248.0/22 4134 -171.220.252.0/23 4134 -171.220.254.0/24 4134 -171.220.255.0/24 38283 -171.221.0.0/16 4134 -171.222.0.0/15 4134 -171.224.0.0/12 7552 -171.240.0.0/14 7552 -171.244.0.0/19 38731 -171.244.32.0/20 38731 -171.244.48.0/21 38731 -171.244.56.0/22 38731 -171.244.60.0/22 7552 -171.244.64.0/18 7552 -171.244.128.0/21 38731 -171.244.136.0/21 7552 -171.244.144.0/20 7552 -171.244.160.0/19 7552 -171.244.192.0/18 7552 -171.245.0.0/16 7552 -171.246.0.0/15 7552 -171.248.0.0/13 7552 -172.0.0.0/12 7018 -172.32.0.0/18 21928 -172.32.64.0/21 21928 -172.32.72.0/22 21928 -172.32.76.0/24 21928 -172.32.77.0/24 12302 -172.32.78.0/23 21928 -172.32.80.0/20 21928 -172.32.96.0/19 21928 -172.32.128.0/17 21928 -172.33.0.0/18 21928 -172.33.64.0/22 34984 -172.33.68.0/24 34984 -172.33.69.0/24 21928 -172.33.70.0/23 21928 -172.33.72.0/21 21928 -172.33.80.0/20 21928 -172.33.96.0/24 34984 -172.33.97.0/24 21928 -172.33.98.0/23 34984 -172.33.100.0/24 34984 -172.33.101.0/24 21928 -172.33.102.0/23 21928 -172.33.104.0/21 21928 -172.33.112.0/20 21928 -172.33.128.0/17 21928 -172.34.0.0/15 21928 -172.36.0.0/15 21928 -172.38.0.0/17 21928 -172.38.128.0/20 21928 -172.38.144.0/21 21928 -172.38.152.0/23 21928 -172.38.154.0/24 34984 -172.38.155.0/24 21928 -172.38.156.0/22 21928 -172.38.160.0/19 21928 -172.38.192.0/18 21928 -172.39.0.0/16 21928 -172.40.0.0/13 21928 -172.48.0.0/13 21928 -172.56.0.0/14 21928 -172.60.0.0/15 21928 -172.62.0.0/16 393494 -172.63.0.0/16 21928 -172.64.0.0/15 13335 -172.68.0.0/18 13335 -172.68.64.0/19 13335 -172.68.96.0/20 13335 -172.68.112.0/21 13335 -172.68.120.0/23 13335 -172.68.124.0/22 13335 -172.68.128.0/23 13335 -172.68.132.0/22 13335 -172.68.136.0/21 13335 -172.68.144.0/21 13335 -172.68.152.0/22 13335 -172.68.160.0/19 13335 -172.68.196.0/22 13335 -172.68.200.0/21 13335 -172.68.208.0/21 13335 -172.68.220.0/22 13335 -172.68.224.0/19 13335 -172.69.0.0/21 13335 -172.69.8.0/22 13335 -172.69.12.0/24 13335 -172.69.14.0/23 13335 -172.69.20.0/22 13335 -172.69.24.0/21 132892 -172.69.32.0/19 13335 -172.69.64.0/19 13335 -172.69.96.0/20 13335 -172.69.112.0/21 13335 -172.69.124.0/22 13335 -172.69.128.0/20 13335 -172.69.144.0/21 13335 -172.69.152.0/22 13335 -172.69.156.0/23 13335 -172.69.159.0/24 13335 -172.69.160.0/19 13335 -172.69.192.0/19 13335 -172.69.224.0/23 13335 -172.69.228.0/22 13335 -172.69.232.0/21 13335 -172.69.240.0/20 13335 -172.72.0.0/14 11426 -172.76.0.0/15 5650 -172.78.0.0/16 5650 -172.79.0.0/18 5650 -172.79.64.0/19 5650 -172.79.96.0/20 5650 -172.79.112.0/24 7011 -172.79.113.0/24 5650 -172.79.114.0/23 5650 -172.79.116.0/22 5650 -172.79.120.0/21 5650 -172.79.128.0/17 5650 -172.80.0.0/17 22552 -172.80.128.0/17 197207 -172.81.64.0/21 32592 -172.81.72.0/23 32592 -172.81.74.0/24 62841 -172.81.75.0/24 36730 -172.81.76.0/22 32592 -172.81.80.0/22 25771 -172.81.88.0/22 10493 -172.81.93.0/24 394181 -172.81.94.0/24 394181 -172.81.96.0/24 21859 -172.81.97.0/24 26484 -172.81.98.0/24 21859 -172.81.99.0/24 18254 -172.81.100.0/24 26484 -172.81.101.0/24 21859 -172.81.102.0/24 43092 -172.81.103.0/24 21859 -172.81.104.0/24 136574 -172.81.105.0/24 26484 -172.81.106.0/23 26484 -172.81.108.0/24 21859 -172.81.109.0/24 36260 -172.81.110.0/24 21859 -172.81.111.0/24 50069 -172.81.112.0/22 64267 -172.81.116.0/22 54641 -172.81.120.0/21 21859 -172.81.128.0/21 27176 -172.81.136.0/23 32924 -172.81.138.0/24 32924 -172.81.140.0/22 36498 -172.81.144.0/22 19620 -172.81.148.0/23 19620 -172.81.150.0/23 40065 -172.81.152.0/22 19975 -172.81.156.0/22 14265 -172.81.160.0/20 14265 -172.81.176.0/21 174 -172.81.184.0/22 13886 -172.81.188.0/22 32354 -172.81.192.0/18 45090 -172.82.128.0/18 46261 -172.82.192.0/18 15224 -172.83.0.0/24 30549 -172.83.2.0/24 31902 -172.83.3.0/24 396279 -172.83.4.0/22 13415 -172.83.8.0/21 394996 -172.83.16.0/20 394907 -172.83.32.0/23 62917 -172.83.40.0/22 46562 -172.83.44.0/23 46562 -172.83.46.0/24 46562 -172.83.48.0/24 396155 -172.83.50.0/24 396233 -172.83.52.0/22 36267 -172.83.56.0/22 6327 -172.83.60.0/23 396101 -172.83.64.0/22 47054 -172.83.68.0/22 62969 -172.83.72.0/24 394146 -172.83.73.0/24 394786 -172.83.74.0/23 394146 -172.83.76.0/22 394146 -172.83.81.0/24 396881 -172.83.82.0/24 19846 -172.83.84.0/23 396084 -172.83.86.0/23 174 -172.83.88.0/22 64290 -172.83.92.0/24 29990 -172.83.95.0/24 33206 -172.83.96.0/21 395927 -172.83.104.0/22 395309 -172.83.108.0/22 396243 -172.83.114.0/23 395885 -172.83.118.0/23 395885 -172.83.120.0/24 397572 -172.83.125.0/24 395211 -172.83.126.0/24 32799 -172.83.127.0/24 136621 -172.83.128.0/21 63018 -172.83.136.0/21 19598 -172.83.144.0/24 393635 -172.83.145.0/24 20141 -172.83.147.0/24 396898 -172.83.148.0/24 396235 -172.83.150.0/24 394470 -172.83.151.0/24 21970 -172.83.152.0/21 201106 -172.83.160.0/20 397168 -172.83.177.0/24 8100 -172.83.178.0/23 40676 -172.83.180.0/22 40676 -172.83.184.0/24 40676 -172.83.192.0/21 46281 -172.83.200.0/24 395567 -172.83.201.0/24 54988 -172.83.202.0/24 12053 -172.83.204.0/24 396057 -172.83.206.0/24 393434 -172.83.208.0/20 29974 -172.83.224.0/20 40523 -172.83.240.0/23 21832 -172.83.249.0/24 397903 -172.83.251.0/24 393375 -172.83.252.0/22 40209 -172.84.0.0/18 26531 -172.84.64.0/23 19437 -172.84.68.0/22 46261 -172.84.72.0/23 46261 -172.84.74.0/23 9009 -172.84.76.0/22 9009 -172.84.80.0/22 42831 -172.84.84.0/23 19437 -172.84.86.0/24 19437 -172.84.87.0/24 61317 -172.84.88.0/23 9009 -172.84.92.0/23 9009 -172.84.94.0/24 23470 -172.84.95.0/24 9009 -172.84.96.0/21 23470 -172.84.104.0/21 46261 -172.84.112.0/22 31863 -172.84.116.0/23 46261 -172.84.120.0/23 31863 -172.84.122.0/23 19437 -172.84.124.0/22 23470 -172.84.128.0/24 26293 -172.84.129.0/24 395601 -172.84.130.0/24 396027 -172.84.131.0/24 26296 -172.84.132.0/22 53759 -172.84.136.0/21 395610 -172.84.144.0/24 47017 -172.84.145.0/24 3838 -172.84.148.0/22 396002 -172.84.153.0/24 62718 -172.84.155.0/24 209 -172.84.157.0/24 40062 -172.84.158.0/24 19357 -172.84.160.0/20 393445 -172.84.176.0/20 11325 -172.84.192.0/18 14434 -172.85.0.0/20 11776 -172.85.16.0/21 11776 -172.85.24.0/24 32939 -172.85.25.0/24 11776 -172.85.26.0/23 11776 -172.85.28.0/22 23100 -172.85.32.0/20 46887 -172.85.48.0/21 46887 -172.85.56.0/22 46887 -172.85.60.0/23 46887 -172.85.62.0/23 33138 -172.85.64.0/23 14633 -172.85.66.0/24 14633 -172.85.70.0/24 14633 -172.85.72.0/22 40683 -172.85.76.0/24 393968 -172.85.78.0/24 393968 -172.85.80.0/21 15247 -172.85.88.0/24 53847 -172.85.96.0/24 46261 -172.85.97.0/24 18779 -172.85.98.0/23 46261 -172.85.100.0/22 46261 -172.85.104.0/23 46261 -172.85.106.0/24 46261 -172.85.107.0/24 42831 -172.85.108.0/22 46261 -172.85.112.0/23 7018 -172.85.114.0/24 7029 -172.85.116.0/22 7029 -172.85.120.0/22 36423 -172.85.124.0/22 11478 -172.85.128.0/17 16504 -172.86.0.0/20 63394 -172.86.16.0/21 63394 -172.86.24.0/21 393909 -172.86.32.0/19 63394 -172.86.64.0/23 8100 -172.86.66.0/23 46261 -172.86.68.0/23 46261 -172.86.70.0/24 46573 -172.86.71.0/24 397280 -172.86.72.0/23 46573 -172.86.74.0/24 46573 -172.86.75.0/24 40676 -172.86.76.0/22 46261 -172.86.80.0/20 46261 -172.86.96.0/21 46261 -172.86.104.0/21 53667 -172.86.112.0/23 53667 -172.86.114.0/24 8100 -172.86.115.0/24 53667 -172.86.116.0/22 46261 -172.86.120.0/22 17139 -172.86.124.0/22 8100 -172.86.128.0/24 13451 -172.86.129.0/24 25764 -172.86.130.0/23 25764 -172.86.132.0/22 13451 -172.86.136.0/22 13451 -172.86.140.0/22 25764 -172.86.144.0/24 20473 -172.86.148.0/24 40676 -172.86.149.0/24 18450 -172.86.176.0/21 19969 -172.86.186.0/23 32489 -172.86.188.0/24 32489 -172.86.191.0/24 32489 -172.86.192.0/20 53732 -172.86.208.0/20 63772 -172.86.232.0/22 20394 -172.86.238.0/24 31823 -172.86.239.0/24 19108 -172.86.240.0/21 40867 -172.86.248.0/21 394334 -172.87.0.0/20 20283 -172.87.16.0/21 30600 -172.87.24.0/21 21859 -172.87.32.0/22 30517 -172.87.36.0/22 23005 -172.87.40.0/24 40386 -172.87.43.0/24 40386 -172.87.48.0/22 15294 -172.87.56.0/23 15294 -172.87.64.0/21 40181 -172.87.72.0/22 19264 -172.87.76.0/22 393951 -172.87.80.0/20 40788 -172.87.96.0/19 36658 -172.87.128.0/18 11427 -172.87.192.0/19 26658 -172.87.228.0/23 23080 -172.87.230.0/24 19525 -172.87.232.0/21 12684 -172.88.0.0/14 20001 -172.92.0.0/16 11404 -172.93.0.0/22 53340 -172.93.4.0/23 62710 -172.93.6.0/24 395677 -172.93.7.0/24 396082 -172.93.8.0/21 46450 -172.93.16.0/20 1403 -172.93.32.0/20 25820 -172.93.48.0/24 54540 -172.93.49.0/24 29802 -172.93.50.0/23 54540 -172.93.52.0/22 54540 -172.93.56.0/22 22060 -172.93.60.0/22 16942 -172.93.64.0/20 46708 -172.93.80.0/20 174 -172.93.96.0/20 23470 -172.93.112.0/21 11681 -172.93.120.0/23 393960 -172.93.122.0/24 36352 -172.93.123.0/24 393960 -172.93.124.0/22 394015 -172.93.128.0/19 20278 -172.93.160.0/23 8100 -172.93.162.0/24 8100 -172.93.163.0/24 40676 -172.93.164.0/24 54600 -172.93.165.0/24 20278 -172.93.166.0/24 22653 -172.93.167.0/24 32489 -172.93.168.0/21 20278 -172.93.176.0/21 20278 -172.93.184.0/24 40676 -172.93.185.0/24 395800 -172.93.186.0/24 20278 -172.93.187.0/24 8100 -172.93.188.0/23 55720 -172.93.190.0/23 20278 -172.93.192.0/20 20278 -172.93.208.0/21 20278 -172.93.216.0/24 397651 -172.93.217.0/24 20278 -172.93.218.0/23 20278 -172.93.220.0/23 4785 -172.93.222.0/24 23033 -172.93.223.0/24 18229 -172.93.224.0/19 20278 -172.94.0.0/24 9009 -172.94.1.0/24 40676 -172.94.3.0/24 36351 -172.94.4.0/24 9009 -172.94.5.0/24 46844 -172.94.6.0/24 36351 -172.94.7.0/24 9009 -172.94.8.0/24 9009 -172.94.9.0/24 3223 -172.94.10.0/24 57814 -172.94.11.0/24 3223 -172.94.12.0/22 3223 -172.94.16.0/24 3223 -172.94.17.0/24 61317 -172.94.18.0/24 61317 -172.94.19.0/24 46562 -172.94.20.0/24 63008 -172.94.21.0/24 3223 -172.94.22.0/24 9009 -172.94.23.0/24 3223 -172.94.24.0/24 3223 -172.94.25.0/24 9009 -172.94.26.0/24 9009 -172.94.27.0/24 36351 -172.94.28.0/24 3223 -172.94.29.0/24 36351 -172.94.30.0/24 36351 -172.94.31.0/24 3223 -172.94.32.0/24 59253 -172.94.33.0/24 61317 -172.94.34.0/24 46562 -172.94.35.0/24 3223 -172.94.36.0/24 40676 -172.94.37.0/24 9009 -172.94.38.0/24 209378 -172.94.39.0/24 9009 -172.94.40.0/24 9009 -172.94.41.0/24 3223 -172.94.43.0/24 18978 -172.94.44.0/24 40676 -172.94.45.0/24 32475 -172.94.46.0/24 9009 -172.94.47.0/24 36351 -172.94.49.0/24 197328 -172.94.50.0/24 132372 -172.94.52.0/24 20473 -172.94.53.0/24 9009 -172.94.54.0/24 9009 -172.94.55.0/24 51852 -172.94.56.0/24 9009 -172.94.57.0/24 51430 -172.94.58.0/23 3223 -172.94.60.0/24 3223 -172.94.61.0/24 63018 -172.94.62.0/24 46562 -172.94.63.0/24 3223 -172.94.64.0/24 3223 -172.94.65.0/24 9009 -172.94.66.0/24 32489 -172.94.67.0/24 46562 -172.94.68.0/24 35017 -172.94.69.0/24 46562 -172.94.70.0/24 34989 -172.94.71.0/24 9009 -172.94.72.0/24 46562 -172.94.73.0/24 13213 -172.94.74.0/23 9009 -172.94.76.0/23 3223 -172.94.78.0/24 29802 -172.94.81.0/24 53889 -172.94.82.0/24 4766 -172.94.83.0/24 46562 -172.94.84.0/24 9009 -172.94.85.0/24 45671 -172.94.86.0/24 36352 -172.94.87.0/24 9009 -172.94.88.0/24 36351 -172.94.89.0/24 9009 -172.94.90.0/24 9009 -172.94.92.0/24 29802 -172.94.93.0/24 46562 -172.94.94.0/24 206264 -172.94.96.0/24 45671 -172.94.97.0/24 3223 -172.94.98.0/23 36351 -172.94.100.0/24 36351 -172.94.101.0/24 45671 -172.94.102.0/24 9009 -172.94.103.0/24 36351 -172.94.104.0/24 9009 -172.94.105.0/24 45671 -172.94.106.0/24 45671 -172.94.107.0/24 32489 -172.94.108.0/23 9009 -172.94.110.0/24 9009 -172.94.112.0/24 43317 -172.94.113.0/24 3223 -172.94.114.0/24 9009 -172.94.115.0/24 46562 -172.94.116.0/24 46562 -172.94.117.0/24 40676 -172.94.118.0/24 3223 -172.94.119.0/24 9009 -172.94.120.0/24 9009 -172.94.121.0/24 45671 -172.94.123.0/24 45671 -172.94.124.0/24 45671 -172.94.125.0/24 9009 -172.94.126.0/24 197706 -172.94.127.0/24 32489 -172.95.0.0/16 5650 -172.96.0.0/21 32931 -172.96.8.0/21 64236 -172.96.16.0/22 25820 -172.96.24.0/24 30517 -172.96.26.0/24 26216 -172.96.28.0/22 26216 -172.96.32.0/22 10249 -172.96.36.0/24 46945 -172.96.40.0/21 22457 -172.96.48.0/21 21960 -172.96.56.0/22 14127 -172.96.60.0/24 14127 -172.96.64.0/20 40317 -172.96.80.0/20 64267 -172.96.97.0/24 62785 -172.96.98.0/23 62785 -172.96.100.0/24 62785 -172.96.112.0/21 21859 -172.96.124.0/24 135377 -172.96.125.0/24 21859 -172.96.126.0/24 6233 -172.96.128.0/24 30546 -172.96.129.0/24 5056 -172.96.130.0/23 62532 -172.96.132.0/22 53340 -172.96.136.0/22 395092 -172.96.140.0/22 23470 -172.96.144.0/21 7828 -172.96.152.0/21 46437 -172.96.160.0/23 23470 -172.96.162.0/23 29713 -172.96.164.0/22 63018 -172.96.168.0/22 393573 -172.96.172.0/23 23470 -172.96.174.0/23 46178 -172.96.176.0/22 13768 -172.96.184.0/24 32475 -172.96.185.0/24 20068 -172.96.186.0/23 32475 -172.96.188.0/24 32475 -172.96.189.0/24 20068 -172.96.190.0/23 59253 -172.96.192.0/18 25820 -172.97.0.0/21 12056 -172.97.8.0/21 33164 -172.97.16.0/20 394111 -172.97.32.0/20 23089 -172.97.48.0/22 53913 -172.97.52.0/22 46618 -172.97.56.0/22 394073 -172.97.60.0/22 30028 -172.97.64.0/24 40676 -172.97.66.0/23 40676 -172.97.68.0/23 26548 -172.97.70.0/23 8100 -172.97.72.0/21 10796 -172.97.80.0/20 53889 -172.97.96.0/22 7828 -172.97.100.0/22 14901 -172.97.104.0/22 19754 -172.97.108.0/23 19754 -172.97.110.0/24 19754 -172.97.111.0/24 19032 -172.97.116.0/22 63060 -172.97.120.0/22 47027 -172.97.124.0/22 18919 -172.97.128.0/17 11814 -172.98.64.0/22 46562 -172.98.68.0/24 13213 -172.98.69.0/24 32780 -172.98.70.0/24 46562 -172.98.72.0/21 46562 -172.98.80.0/23 46562 -172.98.82.0/24 46562 -172.98.83.0/24 13213 -172.98.84.0/22 46562 -172.98.88.0/21 46562 -172.98.96.0/19 53828 -172.98.128.0/20 393950 -172.98.144.0/20 54614 -172.98.160.0/24 9009 -172.98.161.0/24 17090 -172.98.162.0/24 46261 -172.98.163.0/24 9009 -172.98.164.0/24 46261 -172.98.165.0/24 31863 -172.98.166.0/24 36444 -172.98.167.0/24 31863 -172.98.168.0/24 36444 -172.98.169.0/24 60558 -172.98.170.0/24 33083 -172.98.171.0/24 46261 -172.98.172.0/23 46261 -172.98.174.0/23 40156 -172.98.176.0/24 17090 -172.98.177.0/24 20454 -172.98.178.0/24 33083 -172.98.179.0/24 60558 -172.98.180.0/24 17090 -172.98.181.0/24 46261 -172.98.182.0/23 9009 -172.98.184.0/22 46261 -172.98.188.0/24 18779 -172.98.189.0/24 17090 -172.98.190.0/24 36444 -172.98.191.0/24 18779 -172.98.192.0/22 31863 -172.98.196.0/23 31863 -172.98.198.0/24 64235 -172.98.199.0/24 31863 -172.98.200.0/22 31863 -172.98.204.0/23 19693 -172.98.206.0/23 14453 -172.98.208.0/21 46261 -172.98.216.0/22 396097 -172.98.220.0/22 62684 -172.98.224.0/20 15083 -172.98.240.0/20 46849 -172.99.0.0/24 395799 -172.99.1.0/24 6079 -172.99.2.0/24 6079 -172.99.3.0/24 395799 -172.99.4.0/23 394011 -172.99.7.0/24 394011 -172.99.8.0/22 394097 -172.99.12.0/22 394131 -172.99.16.0/22 394072 -172.99.24.0/21 21724 -172.99.32.0/19 5650 -172.99.64.0/19 27357 -172.99.96.0/19 33070 -172.100.0.0/15 11351 -172.102.0.0/23 32242 -172.102.3.0/24 32242 -172.102.4.0/22 53597 -172.102.16.0/20 395075 -172.102.32.0/19 5650 -172.102.64.0/18 5650 -172.102.128.0/20 53889 -172.102.144.0/22 31997 -172.102.152.0/23 40344 -172.102.154.0/24 40344 -172.102.156.0/23 40344 -172.102.158.0/24 32106 -172.102.160.0/19 25853 -172.102.192.0/22 46261 -172.102.196.0/24 36444 -172.102.197.0/24 46261 -172.102.198.0/23 46261 -172.102.200.0/24 46261 -172.102.201.0/24 9009 -172.102.202.0/24 46261 -172.102.203.0/24 42831 -172.102.204.0/24 17090 -172.102.205.0/24 18978 -172.102.206.0/24 20454 -172.102.207.0/24 33083 -172.102.208.0/23 46261 -172.102.210.0/24 46261 -172.102.211.0/24 9009 -172.102.212.0/24 17090 -172.102.213.0/24 21743 -172.102.214.0/24 9009 -172.102.215.0/24 18978 -172.102.216.0/24 20454 -172.102.217.0/24 46261 -172.102.218.0/24 9009 -172.102.219.0/24 33083 -172.102.220.0/22 46261 -172.102.224.0/22 14434 -172.102.228.0/22 30549 -172.102.232.0/21 394028 -172.102.240.0/21 19598 -172.102.248.0/22 46375 -172.102.252.0/22 20354 -172.103.0.0/19 11232 -172.103.36.0/22 394195 -172.103.48.0/20 15247 -172.103.64.0/21 29804 -172.103.72.0/21 395922 -172.103.88.0/21 59702 -172.103.128.0/17 25668 -172.104.2.0/23 48337 -172.104.4.0/22 63949 -172.104.8.0/21 63949 -172.104.16.0/20 63949 -172.104.32.0/19 63949 -172.104.64.0/18 63949 -172.104.128.0/18 63949 -172.104.200.0/21 63949 -172.104.208.0/20 63949 -172.104.224.0/19 63949 -172.105.0.0/17 63949 -172.105.128.0/22 22822 -172.105.132.0/23 22822 -172.105.134.0/23 63949 -172.105.136.0/21 22822 -172.105.144.0/23 63949 -172.105.148.0/22 63949 -172.105.152.0/21 63949 -172.105.160.0/19 63949 -172.105.192.0/18 63949 -172.106.0.0/20 40676 -172.106.16.0/22 40676 -172.106.20.0/23 40676 -172.106.22.0/24 40676 -172.106.24.0/21 40676 -172.106.32.0/23 7489 -172.106.34.0/23 40676 -172.106.36.0/22 40676 -172.106.40.0/21 40676 -172.106.48.0/20 40676 -172.106.64.0/21 40676 -172.106.73.0/24 40676 -172.106.74.0/23 40676 -172.106.76.0/22 40676 -172.106.80.0/21 40676 -172.106.88.0/23 7489 -172.106.90.0/23 40676 -172.106.92.0/22 40676 -172.106.96.0/19 40676 -172.106.128.0/19 40676 -172.106.160.0/21 40676 -172.106.168.0/24 40676 -172.106.169.0/24 35913 -172.106.170.0/23 40676 -172.106.172.0/23 40676 -172.106.174.0/24 40676 -172.106.176.0/20 40676 -172.106.192.0/23 40676 -172.106.194.0/23 7489 -172.106.196.0/22 40676 -172.106.200.0/21 40676 -172.106.208.0/20 40676 -172.106.224.0/19 40676 -172.107.0.0/20 40676 -172.107.16.0/22 7489 -172.107.20.0/24 40676 -172.107.21.0/24 7489 -172.107.22.0/23 7489 -172.107.24.0/21 40676 -172.107.32.0/19 40676 -172.107.64.0/18 40676 -172.107.128.0/17 40676 -172.108.0.0/17 5650 -172.108.128.0/23 5650 -172.108.130.0/24 5650 -172.108.131.0/24 396457 -172.108.132.0/22 5650 -172.108.136.0/23 5650 -172.108.138.0/24 5650 -172.108.139.0/24 21696 -172.108.140.0/22 5650 -172.108.144.0/20 5650 -172.108.160.0/19 5650 -172.108.192.0/18 5650 -172.109.0.0/16 5650 -172.110.0.0/24 54540 -172.110.1.0/24 46261 -172.110.2.0/23 46261 -172.110.4.0/24 54540 -172.110.5.0/24 63356 -172.110.6.0/23 63356 -172.110.8.0/24 54540 -172.110.9.0/24 29802 -172.110.10.0/23 54540 -172.110.12.0/24 54301 -172.110.13.0/24 54540 -172.110.14.0/24 46261 -172.110.15.0/24 54540 -172.110.16.0/24 23470 -172.110.17.0/24 54540 -172.110.18.0/23 54540 -172.110.20.0/24 29802 -172.110.21.0/24 54540 -172.110.22.0/24 63356 -172.110.23.0/24 54540 -172.110.24.0/23 54540 -172.110.27.0/24 63356 -172.110.28.0/22 63356 -172.110.32.0/21 15169 -172.110.40.0/22 394080 -172.110.45.0/24 394080 -172.110.47.0/24 394080 -172.110.52.0/23 394138 -172.110.56.0/22 396191 -172.110.60.0/22 25808 -172.110.64.0/21 15290 -172.110.72.0/22 15290 -172.110.76.0/23 15290 -172.110.80.0/21 36016 -172.110.88.0/24 55199 -172.110.89.0/24 44356 -172.110.90.0/23 55199 -172.110.92.0/22 23100 -172.110.96.0/19 7296 -172.110.192.0/21 394276 -172.110.204.0/23 55219 -172.110.208.0/21 53889 -172.110.216.0/22 53889 -172.110.220.0/24 6130 -172.110.221.0/24 53889 -172.110.222.0/23 53889 -172.110.224.0/20 36374 -172.110.240.0/22 25649 -172.110.244.0/22 11597 -172.110.248.0/22 394105 -172.110.252.0/22 54483 -172.111.64.0/19 54113 -172.111.96.0/20 54113 -172.111.112.0/22 54113 -172.111.119.0/24 54113 -172.111.121.0/24 54113 -172.111.123.0/24 54113 -172.111.128.0/24 61317 -172.111.129.0/24 9009 -172.111.130.0/24 9009 -172.111.131.0/24 61317 -172.111.132.0/24 61317 -172.111.133.0/24 9009 -172.111.134.0/24 18978 -172.111.135.0/24 36351 -172.111.136.0/24 3223 -172.111.137.0/24 36351 -172.111.140.0/24 9009 -172.111.141.0/24 20860 -172.111.143.0/24 9009 -172.111.144.0/24 9009 -172.111.145.0/24 36351 -172.111.146.0/24 1421 -172.111.147.0/24 9009 -172.111.148.0/23 9009 -172.111.150.0/24 25369 -172.111.151.0/24 9009 -172.111.152.0/24 35017 -172.111.153.0/24 9009 -172.111.154.0/24 9009 -172.111.155.0/24 36351 -172.111.156.0/22 9009 -172.111.160.0/24 32489 -172.111.161.0/24 36351 -172.111.162.0/24 32489 -172.111.164.0/24 36351 -172.111.165.0/24 40676 -172.111.166.0/24 45671 -172.111.167.0/24 9009 -172.111.168.0/24 206264 -172.111.169.0/24 36351 -172.111.170.0/24 52423 -172.111.171.0/24 9009 -172.111.173.0/24 36351 -172.111.174.0/24 36352 -172.111.175.0/24 36351 -172.111.176.0/24 46562 -172.111.177.0/24 32489 -172.111.178.0/24 36351 -172.111.179.0/24 3223 -172.111.180.0/24 46562 -172.111.181.0/24 9009 -172.111.183.0/24 9009 -172.111.184.0/24 45671 -172.111.185.0/24 4766 -172.111.186.0/24 9009 -172.111.187.0/24 36351 -172.111.188.0/23 9009 -172.111.190.0/24 9009 -172.111.191.0/24 32181 -172.111.192.0/24 36351 -172.111.193.0/24 38001 -172.111.194.0/24 63008 -172.111.195.0/24 9009 -172.111.196.0/23 9009 -172.111.198.0/24 18978 -172.111.199.0/24 36351 -172.111.200.0/24 46562 -172.111.201.0/24 3223 -172.111.202.0/24 39122 -172.111.204.0/24 13213 -172.111.205.0/24 9009 -172.111.206.0/24 20860 -172.111.207.0/24 45671 -172.111.208.0/24 3223 -172.111.209.0/24 9009 -172.111.210.0/24 3223 -172.111.211.0/24 9009 -172.111.212.0/24 20860 -172.111.213.0/24 1421 -172.111.214.0/24 9009 -172.111.215.0/24 3223 -172.111.216.0/23 9009 -172.111.218.0/24 38001 -172.111.219.0/24 9009 -172.111.220.0/24 9009 -172.111.221.0/24 24768 -172.111.222.0/23 9009 -172.111.224.0/24 36352 -172.111.225.0/24 46562 -172.111.226.0/24 13739 -172.111.227.0/24 9009 -172.111.228.0/23 13739 -172.111.230.0/24 36352 -172.111.231.0/24 46562 -172.111.232.0/24 32489 -172.111.233.0/24 9009 -172.111.234.0/24 36351 -172.111.235.0/24 3223 -172.111.236.0/24 45671 -172.111.237.0/24 32181 -172.111.238.0/24 9009 -172.111.239.0/24 11831 -172.111.240.0/24 53889 -172.111.242.0/23 9009 -172.111.244.0/23 9009 -172.111.246.0/24 9009 -172.111.247.0/24 47869 -172.111.249.0/24 45671 -172.111.250.0/24 9009 -172.111.251.0/24 21859 -172.111.252.0/24 206264 -172.111.253.0/24 9009 -172.111.254.0/23 3223 -172.112.0.0/13 20001 -172.120.0.0/15 18779 -172.122.0.0/15 2497 -172.124.0.0/14 7018 -172.192.0.0/13 133414 -172.216.0.0/16 10310 -172.217.0.0/16 15169 -172.218.0.0/15 852 -172.220.0.0/16 20115 -172.221.0.0/18 20115 -172.221.64.0/18 33588 -172.221.128.0/17 20115 -172.222.0.0/18 20115 -172.222.64.0/19 20115 -172.222.96.0/21 20115 -172.222.104.0/22 20115 -172.222.108.0/23 20115 -172.222.110.0/24 20115 -172.222.111.0/24 133136 -172.222.112.0/20 20115 -172.222.128.0/17 20115 -172.223.0.0/16 20115 -172.224.0.0/20 16625 -172.224.44.0/22 3257 -172.224.80.0/20 3257 -172.224.96.0/20 3257 -172.224.112.0/23 3257 -172.224.116.0/23 16625 -172.224.164.0/22 16625 -172.224.176.0/20 16625 -172.224.192.0/20 16625 -172.225.170.0/23 16625 -172.226.64.0/19 16625 -172.226.96.0/22 16625 -172.226.108.0/22 16625 -172.226.176.0/20 16625 -172.226.208.0/23 16625 -172.226.216.0/23 16625 -172.226.218.0/23 20940 -172.226.220.0/23 16625 -172.226.240.0/20 2914 -172.227.12.0/22 16625 -172.227.80.0/20 16625 -172.227.96.0/20 16625 -172.227.112.0/20 20940 -172.227.128.0/20 20940 -172.227.144.0/22 20940 -172.227.148.0/22 16625 -172.227.160.0/19 16625 -172.228.230.0/23 2914 -172.228.232.0/22 2914 -172.229.58.0/23 16625 -172.229.208.0/20 16625 -172.229.224.0/20 16625 -172.229.240.0/22 16625 -172.230.100.0/23 16625 -172.230.106.0/23 3257 -172.230.108.0/23 16625 -172.230.148.0/22 16625 -172.230.160.0/19 16625 -172.231.0.0/19 3257 -172.231.32.0/22 3257 -172.231.36.0/22 16625 -172.231.48.0/20 16625 -172.231.64.0/20 16625 -172.232.0.0/23 20940 -172.232.3.0/24 20940 -172.232.4.0/22 20940 -172.232.9.0/24 20940 -172.232.10.0/23 20940 -172.232.12.0/22 20940 -172.232.16.0/22 20940 -172.232.21.0/24 20940 -172.232.41.0/24 20940 -172.232.43.0/24 20940 -172.240.0.0/17 7979 -172.241.8.0/21 7203 -172.241.16.0/21 396362 -172.241.24.0/21 394380 -172.241.32.0/21 394380 -172.241.40.0/21 7979 -172.241.56.0/21 7203 -172.241.64.0/21 7979 -172.241.72.0/21 7203 -172.241.80.0/22 394380 -172.241.84.0/22 7979 -172.241.88.0/21 394380 -172.241.96.0/20 7203 -172.241.112.0/21 394380 -172.241.120.0/22 396190 -172.241.124.0/22 7203 -172.241.128.0/21 394380 -172.241.136.0/22 396190 -172.241.140.0/22 396362 -172.241.144.0/22 394380 -172.241.148.0/22 15003 -172.241.152.0/22 394380 -172.241.156.0/22 396190 -172.241.160.0/22 394380 -172.241.164.0/22 396362 -172.241.168.0/22 394380 -172.241.172.0/22 7203 -172.241.176.0/22 395954 -172.241.180.0/22 15003 -172.241.184.0/22 394380 -172.241.188.0/22 15003 -172.241.192.0/22 394380 -172.241.196.0/22 7203 -172.241.200.0/22 396190 -172.241.204.0/22 7203 -172.241.208.0/22 7203 -172.241.212.0/22 395954 -172.241.216.0/21 133752 -172.241.224.0/21 394380 -172.241.232.0/21 30633 -172.241.240.0/21 30633 -172.241.248.0/21 7203 -172.242.0.0/15 7155 -172.244.0.0/16 7922 -172.245.0.0/22 55286 -172.245.4.0/22 36352 -172.245.8.0/21 36352 -172.245.16.0/20 36352 -172.245.32.0/20 36352 -172.245.48.0/23 55286 -172.245.50.0/23 36352 -172.245.52.0/22 36352 -172.245.56.0/21 36352 -172.245.64.0/24 36352 -172.245.65.0/24 20278 -172.245.66.0/23 36352 -172.245.68.0/24 36352 -172.245.69.0/24 20278 -172.245.70.0/23 36352 -172.245.72.0/21 36352 -172.245.80.0/20 36352 -172.245.96.0/20 36352 -172.245.112.0/21 36352 -172.245.120.0/24 36352 -172.245.121.0/24 20278 -172.245.122.0/23 36352 -172.245.124.0/24 36352 -172.245.125.0/24 20278 -172.245.126.0/23 36352 -172.245.128.0/19 36352 -172.245.160.0/24 55286 -172.245.161.0/24 36352 -172.245.162.0/23 36352 -172.245.164.0/23 55286 -172.245.166.0/24 55286 -172.245.167.0/24 36352 -172.245.168.0/22 36352 -172.245.172.0/24 55286 -172.245.173.0/24 36352 -172.245.174.0/24 36352 -172.245.175.0/24 55286 -172.245.176.0/21 36352 -172.245.184.0/22 36352 -172.245.188.0/24 55286 -172.245.189.0/24 36352 -172.245.190.0/23 36352 -172.245.192.0/24 55286 -172.245.193.0/24 36352 -172.245.194.0/23 36352 -172.245.196.0/23 36352 -172.245.198.0/24 55286 -172.245.199.0/24 36352 -172.245.200.0/22 55286 -172.245.204.0/24 55286 -172.245.205.0/24 36352 -172.245.206.0/23 55286 -172.245.208.0/20 36352 -172.245.224.0/19 36352 -172.246.0.0/16 18978 -172.247.0.0/19 40065 -172.247.32.0/24 21859 -172.247.33.0/24 134176 -172.247.34.0/23 21859 -172.247.36.0/23 134176 -172.247.38.0/23 21859 -172.247.40.0/21 40065 -172.247.48.0/20 40065 -172.247.64.0/18 40065 -172.247.128.0/22 40065 -172.247.132.0/23 40065 -172.247.134.0/23 132839 -172.247.136.0/22 132839 -172.247.140.0/23 132839 -172.247.142.0/23 40065 -172.247.144.0/22 40065 -172.247.148.0/23 40065 -172.247.150.0/23 132839 -172.247.152.0/21 132839 -172.247.160.0/22 132839 -172.247.164.0/23 132839 -172.247.166.0/23 40065 -172.247.168.0/21 40065 -172.247.176.0/20 40065 -172.247.192.0/18 40065 -172.248.0.0/14 20001 -172.252.0.0/16 18779 -172.253.0.0/16 15169 -172.254.0.0/24 12271 -172.254.1.0/24 395095 -172.254.2.0/23 12271 -172.254.4.0/22 12271 -172.254.8.0/21 12271 -172.254.16.0/21 12271 -172.254.24.0/22 12271 -172.254.28.0/24 12271 -172.254.29.0/24 395095 -172.254.30.0/24 12271 -172.254.31.0/24 46168 -172.254.32.0/19 12271 -172.254.64.0/20 12271 -172.254.80.0/21 12271 -172.254.88.0/22 12271 -172.254.92.0/24 12271 -172.254.93.0/24 395095 -172.254.94.0/23 12271 -172.254.96.0/19 12271 -172.254.128.0/17 12271 -172.255.0.0/20 7979 -172.255.16.0/21 395954 -172.255.24.0/21 7203 -172.255.32.0/21 7203 -172.255.40.0/22 395954 -172.255.48.0/22 36483 -172.255.52.0/23 36483 -172.255.56.0/23 36483 -172.255.58.0/24 36483 -172.255.59.0/24 32244 -172.255.60.0/22 36483 -172.255.64.0/20 395954 -172.255.80.0/22 394380 -172.255.92.0/22 396362 -172.255.96.0/20 7979 -172.255.112.0/20 7203 -172.255.128.0/21 395954 -172.255.137.0/24 7979 -172.255.144.0/22 395954 -172.255.148.0/22 394380 -172.255.152.0/21 395954 -172.255.160.0/20 395954 -172.255.184.0/21 395954 -172.255.192.0/20 7979 -172.255.208.0/20 7203 -172.255.224.0/20 7979 -172.255.240.0/21 395954 -172.255.248.0/21 7979 -173.0.0.0/20 29791 -173.0.16.0/20 18780 -173.0.32.0/20 12019 -173.0.48.0/20 32875 -173.0.64.0/21 46562 -173.0.72.0/24 393233 -173.0.73.0/24 46562 -173.0.74.0/23 46562 -173.0.76.0/22 46562 -173.0.80.0/20 17012 -173.0.96.0/20 46937 -173.0.112.0/24 53400 -173.0.113.0/24 3257 -173.0.114.0/24 3257 -173.0.115.0/24 53400 -173.0.116.0/22 53400 -173.0.120.0/24 3257 -173.0.121.0/24 53400 -173.0.122.0/23 53400 -173.0.124.0/22 53400 -173.0.128.0/20 53628 -173.0.144.0/20 7979 -173.0.160.0/21 5555 -173.0.168.0/22 5555 -173.0.172.0/23 5555 -173.0.174.0/24 5555 -173.0.175.0/24 16164 -173.0.176.0/20 13909 -173.0.192.0/20 46618 -173.0.208.0/20 5690 -173.0.240.0/20 26785 -173.1.0.0/17 26228 -173.1.128.0/19 26228 -173.1.160.0/20 26228 -173.1.176.0/21 26228 -173.1.184.0/21 198220 -173.1.192.0/20 26228 -173.1.224.0/19 26228 -173.2.0.0/15 6128 -173.4.0.0/18 3651 -173.4.64.0/19 10507 -173.4.96.0/19 3651 -173.4.128.0/19 3651 -173.4.160.0/19 10507 -173.4.192.0/18 3651 -173.5.0.0/16 10507 -173.6.0.0/16 10507 -173.7.0.0/16 1239 -173.8.0.0/13 7922 -173.16.0.0/15 30036 -173.18.0.0/16 30036 -173.19.0.0/17 30036 -173.19.128.0/19 30036 -173.19.160.0/20 30036 -173.19.176.0/21 30036 -173.19.184.0/22 30036 -173.19.189.0/24 30036 -173.19.190.0/23 30036 -173.19.192.0/18 30036 -173.20.0.0/14 30036 -173.24.0.0/17 30036 -173.24.128.0/18 30036 -173.24.192.0/20 30036 -173.24.209.0/24 30036 -173.24.210.0/23 30036 -173.24.212.0/22 30036 -173.24.216.0/21 30036 -173.24.224.0/19 30036 -173.25.0.0/16 30036 -173.26.0.0/15 30036 -173.28.0.0/16 30036 -173.29.0.0/17 30036 -173.29.128.0/19 30036 -173.29.160.0/20 30036 -173.29.176.0/23 30036 -173.29.179.0/24 30036 -173.29.180.0/22 30036 -173.29.184.0/22 30036 -173.29.188.0/23 30036 -173.29.190.0/24 30036 -173.29.192.0/18 30036 -173.30.2.0/23 30036 -173.30.4.0/22 30036 -173.30.8.0/21 30036 -173.30.16.0/20 30036 -173.30.32.0/19 30036 -173.30.64.0/19 30036 -173.30.112.0/20 30036 -173.30.128.0/18 30036 -173.30.208.0/20 30036 -173.31.16.0/20 30036 -173.31.64.0/20 30036 -173.31.96.0/19 30036 -173.31.128.0/20 30036 -173.31.160.0/19 30036 -173.31.192.0/18 30036 -173.32.0.0/14 812 -173.36.0.0/15 109 -173.38.0.0/16 109 -173.39.0.0/17 109 -173.39.128.0/18 109 -173.39.192.0/20 109 -173.39.208.0/23 1343 -173.39.210.0/23 109 -173.39.212.0/22 109 -173.39.216.0/21 109 -173.39.224.0/19 13445 -173.42.0.0/17 20001 -173.43.64.0/18 20001 -173.43.128.0/18 20001 -173.43.224.0/19 20001 -173.44.0.0/20 53889 -173.44.16.0/22 53889 -173.44.20.0/24 6130 -173.44.21.0/24 53889 -173.44.22.0/24 53889 -173.44.23.0/24 6130 -173.44.24.0/24 53889 -173.44.25.0/24 6130 -173.44.26.0/23 53889 -173.44.28.0/24 6130 -173.44.29.0/24 53889 -173.44.30.0/24 6130 -173.44.31.0/24 53889 -173.44.32.0/19 8100 -173.44.64.0/22 26504 -173.44.68.0/23 32448 -173.44.70.0/23 36790 -173.44.72.0/24 26504 -173.44.73.0/24 23391 -173.44.74.0/24 36790 -173.44.75.0/24 21688 -173.44.76.0/22 21688 -173.44.80.0/20 32448 -173.44.96.0/24 21688 -173.44.97.0/24 23391 -173.44.98.0/23 32448 -173.44.100.0/22 32448 -173.44.104.0/24 32448 -173.44.105.0/24 21688 -173.44.106.0/23 21688 -173.44.108.0/22 36790 -173.44.112.0/22 32448 -173.44.116.0/22 46687 -173.44.120.0/23 21688 -173.44.122.0/23 23391 -173.44.124.0/22 32448 -173.44.128.0/19 62904 -173.44.160.0/22 62904 -173.44.164.0/22 49532 -173.44.168.0/21 62904 -173.44.176.0/20 62904 -173.44.192.0/19 62904 -173.44.224.0/22 49532 -173.44.228.0/22 62904 -173.44.232.0/21 62904 -173.44.240.0/20 62904 -173.45.4.0/22 33597 -173.45.16.0/24 395575 -173.45.17.0/24 396205 -173.45.18.0/23 33597 -173.45.20.0/22 33597 -173.45.24.0/21 33597 -173.45.32.0/20 33597 -173.45.64.0/18 10297 -173.45.128.0/22 19133 -173.45.132.0/22 63442 -173.45.158.0/24 42831 -173.45.159.0/24 63442 -173.45.160.0/21 46562 -173.45.168.0/23 46562 -173.45.170.0/24 396300 -173.45.171.0/24 46562 -173.45.172.0/23 46562 -173.45.174.0/23 396300 -173.45.176.0/20 26269 -173.45.192.0/19 32586 -173.45.224.0/20 19994 -173.45.240.0/21 19994 -173.45.248.0/21 33070 -173.46.0.0/20 26788 -173.46.16.0/24 26788 -173.46.17.0/24 62770 -173.46.18.0/23 26788 -173.46.20.0/24 36731 -173.46.21.0/24 26788 -173.46.22.0/23 36731 -173.46.24.0/23 36731 -173.46.26.0/23 26788 -173.46.28.0/23 26788 -173.46.30.0/24 26788 -173.46.31.0/24 36731 -173.46.32.0/19 22523 -173.46.64.0/22 6461 -173.46.68.0/23 6461 -173.46.70.0/24 395279 -173.46.71.0/24 6461 -173.46.72.0/24 17025 -173.46.73.0/24 6461 -173.46.74.0/23 6461 -173.46.76.0/23 36180 -173.46.78.0/24 36180 -173.46.79.0/24 6461 -173.46.80.0/22 46261 -173.46.84.0/24 46261 -173.46.85.0/24 21769 -173.46.86.0/23 46261 -173.46.88.0/22 46261 -173.46.92.0/22 21769 -173.46.96.0/19 33545 -173.46.128.0/20 29748 -173.46.144.0/22 393698 -173.46.148.0/22 36354 -173.46.152.0/22 36354 -173.46.156.0/23 36354 -173.46.158.0/23 19271 -173.46.160.0/23 32083 -173.46.162.0/24 32083 -173.46.166.0/24 46937 -173.46.174.0/23 46937 -173.46.177.0/24 46937 -173.46.191.0/24 32083 -173.46.192.0/21 18687 -173.46.200.0/22 18687 -173.46.204.0/24 14265 -173.46.205.0/24 18687 -173.46.206.0/24 18687 -173.46.207.0/24 19824 -173.46.208.0/20 20167 -173.46.224.0/19 22379 -173.47.88.0/24 11492 -173.48.0.0/15 701 -173.50.16.0/20 701 -173.50.32.0/19 701 -173.50.64.0/18 701 -173.50.160.0/20 701 -173.50.208.0/20 701 -173.51.0.0/22 5650 -173.51.4.0/23 5650 -173.51.22.0/23 5650 -173.51.24.0/23 5650 -173.51.32.0/22 5650 -173.51.36.0/23 5650 -173.51.66.0/23 5650 -173.51.70.0/23 5650 -173.51.72.0/23 5650 -173.51.76.0/23 5650 -173.51.98.0/23 5650 -173.51.104.0/23 5650 -173.51.110.0/23 5650 -173.51.132.0/23 5650 -173.51.146.0/23 5650 -173.51.170.0/23 5650 -173.51.176.0/23 5650 -173.51.184.0/23 5650 -173.51.188.0/23 5650 -173.51.192.0/23 5650 -173.51.196.0/23 5650 -173.51.208.0/23 5650 -173.51.212.0/22 5650 -173.51.216.0/22 5650 -173.51.222.0/23 5650 -173.51.226.0/23 5650 -173.51.242.0/23 5650 -173.52.0.0/16 701 -173.53.0.0/17 701 -173.53.255.0/24 701 -173.54.0.0/16 701 -173.55.0.0/22 5650 -173.55.6.0/23 5650 -173.55.8.0/23 5650 -173.55.22.0/23 5650 -173.55.32.0/22 5650 -173.55.60.0/23 5650 -173.55.72.0/23 5650 -173.55.98.0/23 5650 -173.55.114.0/23 5650 -173.55.116.0/23 5650 -173.55.122.0/23 5650 -173.55.124.0/23 5650 -173.55.128.0/23 5650 -173.55.132.0/23 5650 -173.55.136.0/23 5650 -173.55.152.0/23 5650 -173.55.162.0/23 5650 -173.55.176.0/23 5650 -173.55.196.0/23 5650 -173.55.224.0/22 5650 -173.55.240.0/23 5650 -173.56.0.0/16 701 -173.57.0.0/16 5650 -173.58.0.0/16 5650 -173.59.0.0/17 701 -173.59.160.0/22 701 -173.59.164.0/23 5650 -173.59.166.0/23 701 -173.59.168.0/21 701 -173.59.176.0/20 701 -173.59.192.0/18 701 -173.60.0.0/17 5650 -173.60.128.0/18 5650 -173.61.0.0/16 701 -173.62.0.0/15 701 -173.64.0.0/17 701 -173.64.192.0/18 5650 -173.65.0.0/22 5650 -173.65.4.0/23 5650 -173.65.14.0/23 5650 -173.65.18.0/23 5650 -173.65.26.0/23 5650 -173.65.28.0/23 5650 -173.65.34.0/23 5650 -173.65.36.0/22 5650 -173.65.40.0/21 5650 -173.65.50.0/23 5650 -173.65.52.0/23 5650 -173.65.56.0/23 5650 -173.65.86.0/23 5650 -173.65.104.0/23 5650 -173.65.166.0/23 5650 -173.65.174.0/23 5650 -173.65.188.0/22 5650 -173.65.192.0/23 5650 -173.65.196.0/23 5650 -173.66.0.0/16 701 -173.67.0.0/18 701 -173.67.96.0/19 5650 -173.67.128.0/18 701 -173.67.192.0/20 701 -173.67.224.0/19 701 -173.68.0.0/16 701 -173.69.0.0/18 701 -173.69.96.0/20 701 -173.69.128.0/17 701 -173.70.0.0/16 701 -173.71.0.0/18 5650 -173.71.64.0/18 701 -173.71.128.0/18 701 -173.71.192.0/19 701 -173.72.0.0/15 701 -173.74.44.0/23 5650 -173.74.66.0/23 5650 -173.74.84.0/23 5650 -173.74.88.0/22 5650 -173.74.102.0/23 5650 -173.74.114.0/23 5650 -173.74.132.0/23 5650 -173.74.142.0/23 5650 -173.74.162.0/23 5650 -173.74.198.0/23 5650 -173.74.200.0/22 5650 -173.74.244.0/23 5650 -173.75.0.0/18 701 -173.75.64.0/20 701 -173.75.80.0/22 701 -173.75.84.0/24 701 -173.75.85.0/24 5650 -173.75.86.0/24 5650 -173.75.87.0/24 701 -173.75.88.0/21 701 -173.75.96.0/20 701 -173.75.112.0/23 701 -173.75.114.0/24 701 -173.75.115.0/24 5650 -173.75.116.0/22 701 -173.75.120.0/21 701 -173.75.128.0/17 701 -173.76.0.0/15 701 -173.78.56.0/23 5650 -173.78.106.0/23 5650 -173.78.114.0/23 5650 -173.78.116.0/23 5650 -173.78.126.0/23 5650 -173.78.130.0/23 5650 -173.78.138.0/23 5650 -173.78.142.0/23 5650 -173.78.146.0/23 5650 -173.78.150.0/23 5650 -173.78.152.0/23 5650 -173.78.158.0/23 5650 -173.78.172.0/23 5650 -173.78.182.0/23 5650 -173.78.190.0/23 5650 -173.78.192.0/23 5650 -173.78.196.0/23 5650 -173.78.224.0/23 5650 -173.78.250.0/23 5650 -173.78.252.0/22 5650 -173.79.0.0/16 701 -173.80.0.0/15 19108 -173.82.0.0/18 35916 -173.82.64.0/21 35916 -173.82.72.0/23 35916 -173.82.74.0/24 35916 -173.82.75.0/24 393929 -173.82.76.0/22 35916 -173.82.80.0/20 35916 -173.82.96.0/19 35916 -173.82.128.0/21 35916 -173.82.136.0/24 35916 -173.82.137.0/24 393929 -173.82.138.0/23 35916 -173.82.140.0/22 35916 -173.82.144.0/20 35916 -173.82.160.0/19 35916 -173.82.192.0/18 35916 -173.83.0.0/16 46606 -173.84.0.0/21 5650 -173.84.8.0/22 5650 -173.84.12.0/24 5650 -173.84.13.0/24 5733 -173.84.14.0/23 5650 -173.84.16.0/22 20300 -173.84.20.0/22 5650 -173.84.24.0/21 5650 -173.84.32.0/19 5650 -173.84.64.0/19 5650 -173.84.96.0/23 7011 -173.84.98.0/23 5650 -173.84.100.0/23 5650 -173.84.102.0/24 5650 -173.84.103.0/24 7011 -173.84.104.0/21 5650 -173.84.112.0/22 5650 -173.84.116.0/23 7011 -173.84.118.0/23 5650 -173.84.120.0/21 5650 -173.84.128.0/23 5650 -173.84.130.0/23 7011 -173.84.132.0/22 5650 -173.84.136.0/21 5650 -173.84.144.0/20 5650 -173.84.160.0/19 5650 -173.84.192.0/20 5650 -173.84.208.0/23 7011 -173.84.210.0/23 5650 -173.84.212.0/22 7011 -173.84.216.0/22 5650 -173.84.220.0/22 7011 -173.84.224.0/23 7011 -173.84.226.0/23 5650 -173.84.228.0/23 7011 -173.84.230.0/24 5650 -173.84.231.0/24 7011 -173.84.232.0/23 7011 -173.84.234.0/23 5650 -173.84.236.0/22 7011 -173.84.240.0/22 7011 -173.84.244.0/22 5650 -173.84.248.0/23 5650 -173.84.250.0/24 5650 -173.84.251.0/24 7011 -173.84.252.0/23 5650 -173.84.254.0/24 7011 -173.84.255.0/24 3593 -173.85.0.0/19 5650 -173.85.32.0/19 7011 -173.85.64.0/19 7011 -173.85.96.0/19 5650 -173.85.128.0/18 5650 -173.85.192.0/20 5650 -173.85.208.0/24 3593 -173.85.209.0/24 5650 -173.85.210.0/23 5650 -173.85.212.0/22 5650 -173.85.216.0/21 7011 -173.85.224.0/19 5650 -173.86.0.0/18 5650 -173.86.64.0/19 5650 -173.86.96.0/20 7011 -173.86.112.0/20 5650 -173.86.128.0/21 5650 -173.86.136.0/22 5650 -173.86.140.0/22 7011 -173.86.144.0/23 5650 -173.86.146.0/23 7011 -173.86.148.0/22 5650 -173.86.152.0/21 5650 -173.86.160.0/21 7011 -173.86.168.0/22 5650 -173.86.172.0/22 7011 -173.86.176.0/21 5650 -173.86.184.0/22 5650 -173.86.188.0/22 7011 -173.86.192.0/19 5650 -173.86.224.0/20 5650 -173.86.240.0/22 5650 -173.86.244.0/23 5650 -173.86.246.0/23 12239 -173.86.248.0/21 5650 -173.87.0.0/19 5650 -173.87.32.0/21 5650 -173.87.40.0/22 5650 -173.87.44.0/22 7011 -173.87.48.0/21 7011 -173.87.56.0/21 5650 -173.87.64.0/20 5650 -173.87.80.0/21 5650 -173.87.88.0/24 5650 -173.87.89.0/24 7011 -173.87.90.0/23 5650 -173.87.92.0/22 5650 -173.87.96.0/20 5650 -173.87.112.0/24 5650 -173.87.113.0/24 7011 -173.87.114.0/23 5650 -173.87.116.0/22 5650 -173.87.120.0/21 5650 -173.87.128.0/20 5650 -173.87.144.0/21 5650 -173.87.152.0/22 7011 -173.87.156.0/22 5650 -173.87.160.0/23 5650 -173.87.162.0/23 7011 -173.87.164.0/22 7011 -173.87.168.0/21 5650 -173.87.176.0/20 5650 -173.87.192.0/22 7011 -173.87.196.0/22 5650 -173.87.200.0/23 7011 -173.87.202.0/23 5650 -173.87.204.0/22 5650 -173.87.208.0/20 5650 -173.87.224.0/20 5650 -173.87.240.0/22 7011 -173.87.244.0/22 5650 -173.87.248.0/21 5650 -173.88.0.0/14 10796 -173.92.0.0/15 11426 -173.94.0.0/16 11426 -173.95.0.0/18 11426 -173.95.64.0/23 11426 -173.95.66.0/24 17320 -173.95.67.0/24 11426 -173.95.68.0/22 11426 -173.95.72.0/21 11426 -173.95.80.0/20 11426 -173.95.96.0/19 11426 -173.95.128.0/17 11426 -173.96.0.0/13 1239 -173.104.0.0/14 1239 -173.108.0.0/15 10507 -173.110.0.0/16 10507 -173.111.0.0/16 1239 -173.112.0.0/12 10507 -173.128.0.0/13 10507 -173.136.0.0/14 10507 -173.140.0.0/16 10507 -173.141.0.0/17 1239 -173.141.128.0/17 10507 -173.142.0.0/15 1239 -173.144.0.0/16 10507 -173.145.0.0/16 1239 -173.146.0.0/15 1239 -173.148.0.0/16 1239 -173.149.0.0/17 1239 -173.149.128.0/17 10507 -173.150.0.0/15 10507 -173.152.0.0/15 10507 -173.154.128.0/17 10507 -173.160.0.0/13 7922 -173.168.0.0/14 33363 -173.172.0.0/14 11427 -173.176.0.0/14 5769 -173.180.0.0/16 852 -173.181.0.0/17 852 -173.181.128.0/20 852 -173.181.148.0/22 852 -173.181.152.0/21 852 -173.181.160.0/19 852 -173.181.192.0/20 852 -173.181.212.0/22 852 -173.181.216.0/21 852 -173.181.224.0/19 852 -173.182.0.0/17 852 -173.182.128.0/18 852 -173.183.0.0/16 852 -173.184.0.0/15 7029 -173.186.0.0/17 7029 -173.186.128.0/18 7029 -173.186.192.0/19 7029 -173.186.224.0/20 7029 -173.186.240.0/23 7029 -173.186.242.0/24 17903 -173.186.243.0/24 7029 -173.186.244.0/23 11349 -173.186.246.0/23 7029 -173.186.248.0/21 7029 -173.187.0.0/16 7029 -173.188.0.0/17 7029 -173.188.128.0/20 7029 -173.188.144.0/21 7029 -173.188.152.0/22 7029 -173.188.156.0/24 22050 -173.188.157.0/24 7029 -173.188.158.0/23 7029 -173.188.160.0/19 7029 -173.188.192.0/18 7029 -173.189.0.0/17 7029 -173.189.128.0/19 7029 -173.189.160.0/20 7029 -173.189.176.0/24 7029 -173.189.177.0/24 11143 -173.189.178.0/23 7029 -173.189.180.0/22 7029 -173.189.184.0/21 7029 -173.189.192.0/19 7029 -173.189.224.0/20 7029 -173.189.240.0/22 7029 -173.189.244.0/24 7029 -173.189.245.0/24 30522 -173.189.246.0/23 7029 -173.189.248.0/21 7029 -173.190.0.0/16 7029 -173.191.0.0/18 7029 -173.191.64.0/19 7029 -173.191.96.0/20 7029 -173.191.112.0/22 7029 -173.191.116.0/22 22944 -173.191.120.0/21 7029 -173.191.128.0/17 7029 -173.192.0.0/17 36351 -173.192.128.0/18 36351 -173.192.192.0/19 36351 -173.192.224.0/20 36351 -173.192.240.0/23 36351 -173.192.242.0/24 36351 -173.192.244.0/23 36351 -173.192.248.0/23 6461 -173.192.250.0/23 36351 -173.192.252.0/24 13237 -173.192.253.0/24 2828 -173.192.254.0/23 36351 -173.193.0.0/16 36351 -173.194.0.0/16 15169 -173.195.0.0/20 12989 -173.195.16.0/21 11976 -173.195.24.0/24 11976 -173.195.25.0/24 62861 -173.195.26.0/23 11976 -173.195.28.0/22 11976 -173.195.48.0/20 812 -173.195.72.0/24 6994 -173.195.73.0/24 36734 -173.195.74.0/24 19532 -173.195.76.0/22 6994 -173.195.80.0/22 12025 -173.195.92.0/22 12025 -173.195.98.0/24 54420 -173.195.99.0/24 21774 -173.195.100.0/22 31863 -173.195.104.0/23 174 -173.195.108.0/22 46320 -173.195.128.0/21 27258 -173.195.136.0/24 393397 -173.195.137.0/24 27258 -173.195.138.0/23 27258 -173.195.140.0/22 27258 -173.195.144.0/20 17185 -173.195.160.0/20 393605 -173.195.176.0/20 46276 -173.195.192.0/20 21889 -173.195.208.0/24 14618 -173.195.212.0/24 54470 -173.195.225.0/24 15257 -173.195.230.0/23 15257 -173.195.232.0/24 15257 -173.195.237.0/24 15257 -173.195.240.0/20 17356 -173.196.0.0/20 20001 -173.196.16.0/22 20001 -173.196.20.0/23 20001 -173.196.22.0/24 20001 -173.196.23.0/24 11159 -173.196.24.0/22 11159 -173.196.28.0/22 20001 -173.196.32.0/20 20001 -173.196.48.0/21 20001 -173.196.56.0/22 20001 -173.196.60.0/24 53533 -173.196.61.0/24 20001 -173.196.62.0/23 20001 -173.196.64.0/18 20001 -173.196.128.0/19 20001 -173.196.160.0/22 20001 -173.196.164.0/23 20001 -173.196.166.0/24 20001 -173.196.167.0/24 11721 -173.196.168.0/21 20001 -173.196.176.0/20 20001 -173.196.192.0/18 20001 -173.197.0.0/18 11427 -173.197.64.0/18 20001 -173.197.128.0/19 10796 -173.197.160.0/20 20001 -173.197.176.0/20 10838 -173.197.192.0/20 7843 -173.197.208.0/20 20001 -173.197.224.0/21 11955 -173.197.232.0/23 10796 -173.197.234.0/24 10796 -173.197.235.0/24 40746 -173.197.236.0/22 10796 -173.197.240.0/21 7843 -173.197.248.0/21 10796 -173.198.0.0/19 20001 -173.198.32.0/20 20001 -173.198.48.0/24 20001 -173.198.49.0/24 54690 -173.198.50.0/23 20001 -173.198.52.0/22 20001 -173.198.56.0/21 20001 -173.198.64.0/19 20001 -173.198.96.0/20 33363 -173.198.112.0/20 20001 -173.198.128.0/22 11427 -173.198.132.0/23 11427 -173.198.134.0/24 11427 -173.198.135.0/24 40354 -173.198.136.0/21 11427 -173.198.144.0/22 11427 -173.198.148.0/24 11427 -173.198.149.0/24 40354 -173.198.150.0/23 11427 -173.198.152.0/24 11427 -173.198.153.0/24 4546 -173.198.154.0/23 11427 -173.198.156.0/22 11427 -173.198.160.0/19 6594 -173.198.192.0/18 40244 -173.199.0.0/21 16815 -173.199.10.0/23 16815 -173.199.12.0/22 16815 -173.199.20.0/23 16815 -173.199.22.0/24 16815 -173.199.24.0/23 16815 -173.199.27.0/24 16815 -173.199.28.0/24 16815 -173.199.30.0/23 16815 -173.199.35.0/24 16815 -173.199.39.0/24 16815 -173.199.40.0/23 16815 -173.199.42.0/24 16815 -173.199.46.0/24 16815 -173.199.48.0/22 16815 -173.199.52.0/23 16815 -173.199.60.0/22 16815 -173.199.64.0/18 20473 -173.199.128.0/18 32244 -173.199.192.0/19 23089 -173.199.224.0/21 23089 -173.199.232.0/22 23089 -173.199.237.0/24 23089 -173.199.240.0/21 23089 -173.200.0.0/16 17184 -173.201.0.0/16 26496 -173.202.0.0/18 209 -173.202.64.0/20 209 -173.202.80.0/20 22561 -173.202.96.0/21 209 -173.202.104.0/21 22561 -173.202.112.0/20 209 -173.202.128.0/18 22561 -173.202.192.0/22 209 -173.202.196.0/22 22561 -173.202.200.0/21 209 -173.202.208.0/20 209 -173.202.224.0/19 22561 -173.203.0.0/17 19994 -173.203.128.0/18 27357 -173.203.192.0/18 33070 -173.204.0.0/18 26228 -173.204.64.0/20 26228 -173.204.80.0/21 26228 -173.204.88.0/24 26228 -173.204.89.0/24 27357 -173.204.90.0/23 26228 -173.204.92.0/22 26228 -173.204.96.0/19 26228 -173.204.128.0/17 26228 -173.205.0.0/23 3257 -173.205.2.0/24 393544 -173.205.3.0/24 3257 -173.205.4.0/23 3257 -173.205.6.0/23 20940 -173.205.8.0/21 3257 -173.205.16.0/20 3257 -173.205.32.0/19 3257 -173.205.64.0/21 3257 -173.205.72.0/22 3257 -173.205.76.0/23 3257 -173.205.78.0/23 20940 -173.205.80.0/20 8100 -173.205.96.0/20 3257 -173.205.112.0/24 3257 -173.205.113.0/24 19222 -173.205.114.0/24 26588 -173.205.115.0/24 3257 -173.205.116.0/22 3257 -173.205.120.0/24 46847 -173.205.121.0/24 3257 -173.205.122.0/23 3257 -173.205.124.0/22 54641 -173.205.176.0/20 33597 -173.205.196.0/24 14321 -173.205.197.0/24 54588 -173.205.200.0/24 53989 -173.205.204.0/24 2828 -173.205.205.0/24 209 -173.205.206.0/23 395575 -173.205.216.0/24 20029 -173.205.217.0/24 63252 -173.205.219.0/24 20029 -173.205.220.0/24 397781 -173.205.222.0/23 396305 -173.205.224.0/19 32953 -173.206.0.0/16 6407 -173.207.8.0/21 11492 -173.207.16.0/22 11492 -173.207.20.0/23 11492 -173.207.32.0/22 11492 -173.207.36.0/24 11492 -173.207.38.0/23 11492 -173.207.88.0/21 11492 -173.207.96.0/21 11492 -173.207.104.0/24 11492 -173.207.106.0/23 11492 -173.207.108.0/22 11492 -173.207.112.0/24 11492 -173.207.114.0/23 11492 -173.207.116.0/22 11492 -173.207.128.0/21 11492 -173.207.168.0/21 11492 -173.207.176.0/21 11492 -173.207.192.0/24 11492 -173.207.200.0/22 11492 -173.207.208.0/23 11492 -173.207.211.0/24 11492 -173.207.212.0/24 11492 -173.207.214.0/23 11492 -173.207.224.0/22 11492 -173.207.248.0/22 11492 -173.207.254.0/23 11492 -173.208.0.0/21 15003 -173.208.8.0/22 15003 -173.208.12.0/24 395954 -173.208.13.0/24 15003 -173.208.14.0/23 15003 -173.208.24.0/21 15003 -173.208.32.0/21 396190 -173.208.40.0/21 396362 -173.208.52.0/23 395954 -173.208.56.0/22 396362 -173.208.60.0/23 396535 -173.208.64.0/22 19148 -173.208.72.0/22 15003 -173.208.76.0/22 395954 -173.208.80.0/21 15003 -173.208.92.0/22 395954 -173.208.106.0/23 395954 -173.208.108.0/23 395954 -173.208.113.0/24 396362 -173.208.118.0/24 396190 -173.208.120.0/24 15003 -173.208.121.0/24 30633 -173.208.122.0/24 7203 -173.208.123.0/24 19148 -173.208.124.0/24 395954 -173.208.125.0/24 393886 -173.208.126.0/24 30633 -173.208.128.0/17 32097 -173.209.0.0/19 209 -173.209.32.0/19 36666 -173.209.64.0/20 14860 -173.209.80.0/20 20165 -173.209.96.0/20 32508 -173.209.112.0/20 36817 -173.209.128.0/19 812 -173.209.160.0/20 13370 -173.209.177.0/24 18624 -173.209.178.0/23 18624 -173.209.180.0/22 18624 -173.209.184.0/21 18624 -173.209.192.0/23 25934 -173.209.194.0/24 10753 -173.209.195.0/24 25934 -173.209.196.0/22 25934 -173.209.200.0/24 25934 -173.209.201.0/24 10753 -173.209.202.0/23 25934 -173.209.204.0/22 25934 -173.209.208.0/22 25934 -173.209.212.0/24 25934 -173.209.214.0/24 25934 -173.209.216.0/22 25934 -173.209.222.0/23 22870 -173.209.224.0/19 7381 -173.210.0.0/17 7029 -173.210.128.0/17 22995 -173.211.0.0/22 21769 -173.211.4.0/24 60558 -173.211.5.0/24 9009 -173.211.6.0/23 21769 -173.211.8.0/22 21769 -173.211.12.0/24 21769 -173.211.13.0/24 23470 -173.211.14.0/24 9009 -173.211.15.0/24 21769 -173.211.16.0/24 46261 -173.211.17.0/24 21769 -173.211.18.0/23 21769 -173.211.20.0/23 21769 -173.211.22.0/24 46261 -173.211.23.0/24 21769 -173.211.24.0/24 21769 -173.211.25.0/24 46261 -173.211.26.0/23 46261 -173.211.28.0/24 21769 -173.211.29.0/24 46261 -173.211.30.0/23 21769 -173.211.32.0/21 21769 -173.211.40.0/24 21769 -173.211.41.0/24 46261 -173.211.42.0/23 46261 -173.211.44.0/23 21769 -173.211.46.0/23 46261 -173.211.48.0/21 21769 -173.211.56.0/24 54103 -173.211.57.0/24 21769 -173.211.58.0/23 54103 -173.211.60.0/23 54103 -173.211.62.0/24 21769 -173.211.63.0/24 54103 -173.211.64.0/22 21769 -173.211.68.0/23 21769 -173.211.70.0/24 21769 -173.211.71.0/24 23470 -173.211.72.0/22 42831 -173.211.76.0/22 21769 -173.211.80.0/21 9009 -173.211.88.0/23 21769 -173.211.90.0/24 21769 -173.211.91.0/24 8038 -173.211.92.0/24 9009 -173.211.93.0/24 21769 -173.211.94.0/24 42831 -173.211.95.0/24 9009 -173.211.96.0/22 21769 -173.211.100.0/22 9009 -173.211.104.0/22 46261 -173.211.108.0/22 9009 -173.211.112.0/21 46261 -173.211.120.0/23 21769 -173.211.122.0/24 23470 -173.211.123.0/24 21769 -173.211.124.0/22 9009 -173.211.128.0/18 11992 -173.211.192.0/18 7029 -173.212.0.0/19 7250 -173.212.32.0/20 7250 -173.212.48.0/20 32592 -173.212.64.0/20 11260 -173.212.80.0/22 11260 -173.212.84.0/23 11260 -173.212.86.0/24 22372 -173.212.87.0/24 11260 -173.212.88.0/21 11260 -173.212.96.0/19 11260 -173.212.128.0/18 20161 -173.212.192.0/18 51167 -173.213.0.0/19 53316 -173.213.32.0/20 53316 -173.213.48.0/21 53316 -173.213.56.0/22 53316 -173.213.60.0/23 53316 -173.213.62.0/23 14618 -173.213.64.0/24 20473 -173.213.65.0/24 62904 -173.213.66.0/23 62904 -173.213.68.0/22 62904 -173.213.72.0/21 62904 -173.213.80.0/22 62904 -173.213.84.0/24 62904 -173.213.85.0/24 29802 -173.213.86.0/24 62651 -173.213.87.0/24 11042 -173.213.88.0/24 174 -173.213.89.0/24 62651 -173.213.90.0/24 62904 -173.213.91.0/24 62651 -173.213.92.0/22 62904 -173.213.96.0/19 62904 -173.213.128.0/18 7029 -173.213.192.0/20 22667 -173.213.208.0/20 54040 -173.213.224.0/21 22903 -173.213.232.0/23 22903 -173.213.236.0/22 22903 -173.213.240.0/21 53559 -173.213.248.0/23 53559 -173.214.0.0/17 35908 -173.214.128.0/21 6327 -173.214.136.0/22 6327 -173.214.140.0/23 54841 -173.214.142.0/23 6327 -173.214.144.0/20 16700 -173.214.160.0/20 19318 -173.214.176.0/20 395111 -173.214.192.0/22 64267 -173.214.196.0/22 396420 -173.214.200.0/22 203872 -173.214.205.0/24 11402 -173.214.206.0/24 11402 -173.214.207.0/24 396318 -173.214.208.0/22 29758 -173.214.212.0/24 29758 -173.214.216.0/21 29758 -173.214.224.0/20 33178 -173.214.240.0/20 15317 -173.215.0.0/24 63394 -173.215.1.0/24 5056 -173.215.2.0/24 62825 -173.215.3.0/24 5056 -173.215.4.0/22 46154 -173.215.8.0/22 5056 -173.215.12.0/23 13356 -173.215.14.0/23 63394 -173.215.16.0/23 5056 -173.215.18.0/24 63394 -173.215.19.0/24 5056 -173.215.20.0/24 5056 -173.215.21.0/24 396878 -173.215.22.0/23 5056 -173.215.24.0/21 5056 -173.215.32.0/23 5056 -173.215.34.0/24 396443 -173.215.35.0/24 5056 -173.215.36.0/22 5056 -173.215.40.0/21 5056 -173.215.48.0/23 5056 -173.215.50.0/23 396443 -173.215.52.0/24 5056 -173.215.53.0/24 396443 -173.215.54.0/24 5056 -173.215.55.0/24 18883 -173.215.56.0/23 18883 -173.215.58.0/23 5056 -173.215.60.0/22 5056 -173.215.64.0/24 46892 -173.215.65.0/24 5056 -173.215.66.0/24 11698 -173.215.67.0/24 5056 -173.215.68.0/22 5056 -173.215.72.0/23 396443 -173.215.74.0/23 5056 -173.215.76.0/22 5056 -173.215.80.0/23 5056 -173.215.82.0/24 5056 -173.215.83.0/24 63033 -173.215.84.0/22 5056 -173.215.88.0/21 5056 -173.215.96.0/19 5056 -173.215.128.0/17 10396 -173.216.0.0/15 19108 -173.218.0.0/16 19108 -173.219.0.0/23 19108 -173.219.2.0/24 14808 -173.219.3.0/24 19108 -173.219.4.0/22 19108 -173.219.8.0/22 19108 -173.219.12.0/24 19108 -173.219.13.0/24 11135 -173.219.14.0/24 11135 -173.219.15.0/24 19108 -173.219.16.0/20 19108 -173.219.32.0/22 19108 -173.219.36.0/24 19108 -173.219.37.0/24 46169 -173.219.38.0/23 19108 -173.219.40.0/21 19108 -173.219.48.0/20 19108 -173.219.64.0/20 19108 -173.219.80.0/22 19108 -173.219.84.0/23 19108 -173.219.86.0/24 32426 -173.219.87.0/24 19108 -173.219.88.0/21 19108 -173.219.96.0/19 19108 -173.219.128.0/22 19108 -173.219.132.0/23 19108 -173.219.134.0/24 12283 -173.219.135.0/24 19108 -173.219.136.0/21 19108 -173.219.144.0/20 19108 -173.219.160.0/19 19108 -173.219.192.0/18 19108 -173.220.0.0/16 6128 -173.221.0.0/16 7029 -173.222.0.0/19 16625 -173.222.32.0/20 209 -173.222.64.0/20 9829 -173.222.80.0/20 16625 -173.222.96.0/21 16625 -173.222.104.0/22 26769 -173.222.108.0/23 20940 -173.222.110.0/23 16625 -173.222.112.0/22 16625 -173.222.116.0/22 6327 -173.222.120.0/22 9329 -173.222.124.0/22 20940 -173.222.128.0/22 16625 -173.222.132.0/24 1273 -173.222.133.0/24 20940 -173.222.134.0/23 35994 -173.222.136.0/22 16625 -173.222.140.0/22 3257 -173.222.144.0/22 4657 -173.222.148.0/23 20940 -173.222.150.0/23 16625 -173.222.152.0/22 4788 -173.222.156.0/22 16625 -173.222.160.0/23 35994 -173.222.168.0/21 16625 -173.222.180.0/22 16625 -173.222.184.0/22 16625 -173.222.188.0/22 7470 -173.222.192.0/21 16625 -173.222.200.0/22 20940 -173.222.204.0/22 16625 -173.222.208.0/22 20940 -173.222.212.0/22 16625 -173.222.216.0/22 16625 -173.222.220.0/22 20940 -173.222.224.0/22 2914 -173.222.228.0/22 16625 -173.222.232.0/23 16625 -173.222.234.0/23 1299 -173.222.236.0/22 20940 -173.222.240.0/22 41164 -173.222.244.0/22 16625 -173.222.250.0/23 16625 -173.223.4.0/22 16625 -173.223.8.0/23 16625 -173.223.10.0/23 20940 -173.223.12.0/22 16625 -173.223.16.0/21 16625 -173.223.24.0/22 35994 -173.223.28.0/22 16625 -173.223.32.0/22 9605 -173.223.36.0/22 16625 -173.223.44.0/22 4609 -173.223.48.0/22 20940 -173.223.52.0/24 20940 -173.223.53.0/24 24319 -173.223.54.0/24 3257 -173.223.55.0/24 20940 -173.223.56.0/22 16625 -173.223.60.0/22 3257 -173.223.64.0/20 16625 -173.223.80.0/20 9269 -173.223.96.0/23 16625 -173.223.98.0/23 21342 -173.223.102.0/23 16625 -173.223.104.0/23 16625 -173.223.106.0/23 20940 -173.223.112.0/20 16625 -173.223.128.0/23 16625 -173.223.130.0/24 35994 -173.223.131.0/24 24319 -173.223.132.0/22 16625 -173.223.136.0/22 4775 -173.223.140.0/22 16625 -173.223.144.0/21 16625 -173.223.152.0/22 1299 -173.223.168.0/22 16625 -173.223.172.0/22 20940 -173.223.176.0/20 16625 -173.223.192.0/21 16625 -173.223.200.0/22 7843 -173.223.206.0/23 20940 -173.223.208.0/20 9829 -173.223.224.0/23 3257 -173.223.226.0/24 35993 -173.223.227.0/24 20940 -173.223.228.0/22 16625 -173.223.232.0/24 21342 -173.223.233.0/24 35994 -173.223.235.0/24 20940 -173.223.236.0/23 16625 -173.223.240.0/20 16625 -173.224.0.0/20 23481 -173.224.16.0/20 46328 -173.224.32.0/20 36374 -173.224.64.0/20 46672 -173.224.80.0/23 1970 -173.224.82.0/24 1970 -173.224.83.0/24 47050 -173.224.84.0/22 47050 -173.224.88.0/22 47050 -173.224.92.0/23 47050 -173.224.94.0/23 1970 -173.224.96.0/20 12177 -173.224.112.0/20 30083 -173.224.128.0/20 5769 -173.224.144.0/20 32880 -173.224.160.0/23 1449 -173.224.163.0/24 1449 -173.224.164.0/23 1449 -173.224.170.0/23 393959 -173.224.172.0/22 14828 -173.224.176.0/20 15305 -173.224.192.0/20 31841 -173.224.208.0/20 40676 -173.224.240.0/20 19935 -173.225.0.0/20 46979 -173.225.16.0/20 3361 -173.225.32.0/20 25715 -173.225.48.0/23 46887 -173.225.50.0/24 46887 -173.225.51.0/24 16657 -173.225.52.0/24 46887 -173.225.53.0/24 46537 -173.225.54.0/24 46887 -173.225.55.0/24 16657 -173.225.56.0/21 46887 -173.225.72.0/21 26878 -173.225.80.0/21 10594 -173.225.88.0/22 10594 -173.225.92.0/23 10594 -173.225.94.0/23 393777 -173.225.96.0/20 19318 -173.225.112.0/23 27257 -173.225.114.0/24 53365 -173.225.115.0/24 27257 -173.225.116.0/22 27257 -173.225.120.0/22 27257 -173.225.124.0/24 53264 -173.225.125.0/24 20264 -173.225.126.0/23 20264 -173.225.128.0/20 21709 -173.225.144.0/20 53949 -173.225.160.0/20 17018 -173.225.176.0/20 53292 -173.225.192.0/20 19310 -173.225.208.0/20 36549 -173.225.224.0/20 17306 -173.225.240.0/20 33576 -173.226.0.0/20 3549 -173.226.16.0/22 3549 -173.226.20.0/23 3549 -173.226.22.0/24 3549 -173.226.23.0/24 53816 -173.226.24.0/22 3549 -173.226.28.0/24 3549 -173.226.29.0/24 36740 -173.226.30.0/24 30532 -173.226.31.0/24 3549 -173.226.32.0/21 396358 -173.226.40.0/21 3549 -173.226.48.0/22 3549 -173.226.52.0/24 32411 -173.226.53.0/24 3549 -173.226.54.0/23 14554 -173.226.56.0/21 3549 -173.226.64.0/24 32837 -173.226.65.0/24 3549 -173.226.66.0/23 3549 -173.226.68.0/22 3549 -173.226.72.0/21 26630 -173.226.80.0/23 3549 -173.226.82.0/24 29740 -173.226.83.0/24 3549 -173.226.84.0/24 3549 -173.226.85.0/24 22127 -173.226.86.0/24 3549 -173.226.87.0/24 393271 -173.226.88.0/21 3549 -173.226.96.0/23 3549 -173.226.98.0/23 26237 -173.226.100.0/23 3549 -173.226.102.0/24 17365 -173.226.103.0/24 46864 -173.226.104.0/22 3549 -173.226.108.0/24 25878 -173.226.109.0/24 3549 -173.226.110.0/23 3549 -173.226.112.0/21 3549 -173.226.120.0/24 53268 -173.226.121.0/24 32969 -173.226.122.0/23 3549 -173.226.124.0/22 3549 -173.226.128.0/24 26831 -173.226.129.0/24 3549 -173.226.130.0/23 3549 -173.226.132.0/24 31949 -173.226.133.0/24 3549 -173.226.134.0/23 3549 -173.226.136.0/23 3549 -173.226.138.0/24 3549 -173.226.139.0/24 17156 -173.226.140.0/23 3549 -173.226.142.0/23 16887 -173.226.144.0/21 3549 -173.226.152.0/23 3549 -173.226.154.0/24 3549 -173.226.155.0/24 63483 -173.226.156.0/23 63483 -173.226.158.0/23 3549 -173.226.160.0/22 3549 -173.226.164.0/24 18947 -173.226.165.0/24 3549 -173.226.166.0/24 3549 -173.226.167.0/24 40477 -173.226.168.0/21 3549 -173.226.176.0/23 32152 -173.226.178.0/23 3549 -173.226.180.0/22 3549 -173.226.184.0/21 3549 -173.226.192.0/24 30318 -173.226.193.0/24 3549 -173.226.194.0/23 3549 -173.226.196.0/23 3549 -173.226.198.0/24 11278 -173.226.199.0/24 3549 -173.226.200.0/24 36656 -173.226.201.0/24 3549 -173.226.202.0/23 3549 -173.226.204.0/22 3549 -173.226.208.0/20 19893 -173.226.224.0/21 3549 -173.226.232.0/24 36188 -173.226.233.0/24 3549 -173.226.234.0/23 3549 -173.226.236.0/22 3549 -173.226.240.0/21 3549 -173.226.248.0/24 3549 -173.226.249.0/24 19389 -173.226.250.0/23 3549 -173.226.252.0/22 3549 -173.227.0.0/22 3549 -173.227.4.0/24 3549 -173.227.5.0/24 26455 -173.227.6.0/23 3549 -173.227.8.0/21 3549 -173.227.16.0/23 3549 -173.227.18.0/24 3549 -173.227.19.0/24 26780 -173.227.20.0/24 3549 -173.227.21.0/24 33064 -173.227.22.0/23 3549 -173.227.24.0/22 3549 -173.227.28.0/24 53351 -173.227.29.0/24 3549 -173.227.30.0/23 3549 -173.227.32.0/24 3549 -173.227.33.0/24 26639 -173.227.34.0/23 3549 -173.227.36.0/22 3549 -173.227.40.0/22 3549 -173.227.44.0/22 25649 -173.227.48.0/20 3549 -173.227.64.0/22 3549 -173.227.68.0/24 394685 -173.227.69.0/24 393824 -173.227.70.0/24 26831 -173.227.71.0/24 3549 -173.227.72.0/21 3549 -173.227.80.0/24 3549 -173.227.81.0/24 33736 -173.227.82.0/23 3549 -173.227.84.0/22 22403 -173.227.88.0/21 3549 -173.227.96.0/23 3549 -173.227.98.0/24 396991 -173.227.99.0/24 3549 -173.227.100.0/24 3549 -173.227.101.0/24 393857 -173.227.102.0/23 3549 -173.227.104.0/21 3549 -173.227.112.0/20 3549 -173.227.128.0/22 13984 -173.227.132.0/22 3549 -173.227.136.0/24 63264 -173.227.137.0/24 3549 -173.227.138.0/23 3549 -173.227.140.0/24 3549 -173.227.141.0/24 53626 -173.227.142.0/24 63264 -173.227.143.0/24 3549 -173.227.144.0/23 3549 -173.227.146.0/24 19271 -173.227.147.0/24 3356 -173.227.148.0/24 25744 -173.227.149.0/24 25895 -173.227.150.0/23 3549 -173.227.152.0/21 3549 -173.227.160.0/22 3549 -173.227.164.0/23 3549 -173.227.166.0/24 3549 -173.227.167.0/24 396248 -173.227.168.0/22 3549 -173.227.172.0/23 3549 -173.227.174.0/24 54571 -173.227.175.0/24 3549 -173.227.176.0/23 33511 -173.227.178.0/23 3549 -173.227.180.0/22 3549 -173.227.184.0/22 3549 -173.227.188.0/24 62750 -173.227.189.0/24 3549 -173.227.190.0/23 3549 -173.227.192.0/22 30216 -173.227.196.0/24 3549 -173.227.197.0/24 25920 -173.227.198.0/24 395702 -173.227.199.0/24 3549 -173.227.200.0/22 3549 -173.227.204.0/23 3549 -173.227.206.0/24 3549 -173.227.207.0/24 13967 -173.227.208.0/23 3549 -173.227.210.0/24 395659 -173.227.211.0/24 3549 -173.227.212.0/23 3549 -173.227.214.0/24 25965 -173.227.215.0/24 3549 -173.227.216.0/24 3549 -173.227.217.0/24 397252 -173.227.218.0/23 3549 -173.227.220.0/22 3549 -173.227.224.0/23 3549 -173.227.226.0/24 394687 -173.227.227.0/24 3549 -173.227.228.0/22 3549 -173.227.232.0/21 3549 -173.227.240.0/22 3549 -173.227.244.0/24 395522 -173.227.245.0/24 3549 -173.227.246.0/23 3549 -173.227.248.0/21 3549 -173.228.0.0/18 46375 -173.228.64.0/20 7065 -173.228.80.0/20 46375 -173.228.96.0/19 46375 -173.228.128.0/24 11403 -173.228.129.0/24 57624 -173.228.130.0/23 11403 -173.228.132.0/24 57624 -173.228.133.0/24 11403 -173.228.134.0/23 57624 -173.228.136.0/23 57624 -173.228.138.0/24 3356 -173.228.139.0/24 57624 -173.228.140.0/24 11403 -173.228.141.0/24 3356 -173.228.142.0/23 11403 -173.228.144.0/22 11403 -173.228.148.0/23 11403 -173.228.150.0/24 57624 -173.228.151.0/24 11403 -173.228.152.0/21 11403 -173.228.192.0/20 10396 -173.228.208.0/22 10396 -173.228.212.0/24 10396 -173.228.213.0/24 46868 -173.228.214.0/24 46868 -173.228.215.0/24 10396 -173.228.216.0/21 10396 -173.228.224.0/19 10396 -173.229.0.0/22 16842 -173.229.8.0/21 16842 -173.229.16.0/20 16842 -173.229.32.0/19 10430 -173.229.64.0/18 6128 -173.229.128.0/17 10405 -173.230.0.0/24 46925 -173.230.1.0/24 23473 -173.230.2.0/23 23473 -173.230.4.0/22 23473 -173.230.8.0/21 23473 -173.230.16.0/20 23473 -173.230.34.0/23 46925 -173.230.36.0/24 23473 -173.230.40.0/22 23473 -173.230.44.0/23 23473 -173.230.46.0/24 23473 -173.230.48.0/24 23473 -173.230.51.0/24 23473 -173.230.52.0/24 23473 -173.230.55.0/24 23473 -173.230.56.0/24 23473 -173.230.58.0/24 23473 -173.230.60.0/24 23473 -173.230.62.0/24 23473 -173.230.64.0/22 23473 -173.230.71.0/24 46925 -173.230.72.0/24 23473 -173.230.76.0/24 23473 -173.230.80.0/24 23473 -173.230.84.0/23 46925 -173.230.86.0/23 23473 -173.230.88.0/23 23473 -173.230.92.0/24 23473 -173.230.94.0/23 23473 -173.230.96.0/24 23473 -173.230.98.0/23 23473 -173.230.104.0/23 23473 -173.230.106.0/24 46925 -173.230.107.0/24 23473 -173.230.112.0/24 23473 -173.230.114.0/23 23473 -173.230.116.0/22 23473 -173.230.120.0/23 23473 -173.230.122.0/24 23473 -173.230.126.0/23 23473 -173.230.128.0/19 63949 -173.230.160.0/19 5645 -173.230.192.0/19 33064 -173.230.224.0/24 27229 -173.230.225.0/24 12180 -173.230.226.0/23 12180 -173.230.228.0/23 27229 -173.230.230.0/23 12180 -173.230.232.0/23 27229 -173.230.234.0/24 27229 -173.230.235.0/24 12180 -173.230.236.0/22 27229 -173.230.240.0/20 22878 -173.231.0.0/19 18450 -173.231.32.0/20 18450 -173.231.48.0/21 18450 -173.231.56.0/22 18450 -173.231.60.0/23 53850 -173.231.62.0/23 18450 -173.231.66.0/24 396226 -173.231.72.0/22 13943 -173.231.76.0/23 13943 -173.231.78.0/24 13943 -173.231.79.0/24 11169 -173.231.92.0/23 30103 -173.231.94.0/24 30103 -173.231.96.0/20 22652 -173.231.112.0/22 22652 -173.231.116.0/23 22652 -173.231.118.0/24 22652 -173.231.119.0/24 26516 -173.231.120.0/21 22652 -173.231.128.0/18 29791 -173.231.192.0/20 22611 -173.231.208.0/20 54641 -173.231.224.0/20 22611 -173.231.240.0/20 54641 -173.232.0.0/19 62904 -173.232.32.0/21 62904 -173.232.40.0/22 62904 -173.232.44.0/24 62904 -173.232.48.0/20 62904 -173.232.64.0/22 62904 -173.232.70.0/24 62904 -173.232.72.0/21 62904 -173.232.80.0/20 62904 -173.232.96.0/21 62904 -173.232.104.0/22 62904 -173.232.108.0/22 49532 -173.232.112.0/20 62904 -173.232.128.0/19 62904 -173.232.160.0/20 62904 -173.232.176.0/21 62904 -173.232.184.0/24 62904 -173.232.188.0/24 62904 -173.232.193.0/24 62904 -173.232.196.0/22 62904 -173.232.200.0/21 62904 -173.232.208.0/20 62904 -173.232.224.0/19 62904 -173.233.0.0/19 13333 -173.233.32.0/20 53347 -173.233.48.0/20 18851 -173.233.64.0/19 40244 -173.233.96.0/20 29866 -173.233.112.0/20 20257 -173.233.144.0/21 7979 -173.233.152.0/22 7979 -173.233.156.0/24 7979 -173.233.160.0/20 14363 -173.233.176.0/20 33067 -173.233.192.0/18 27422 -173.234.4.0/22 396190 -173.234.12.0/22 396190 -173.234.24.0/21 63018 -173.234.32.0/22 15003 -173.234.36.0/22 396362 -173.234.40.0/22 15003 -173.234.46.0/24 395954 -173.234.48.0/21 395954 -173.234.56.0/21 15003 -173.234.64.0/22 15003 -173.234.68.0/22 396362 -173.234.80.0/22 396190 -173.234.88.0/23 396190 -173.234.92.0/22 7203 -173.234.96.0/22 15003 -173.234.100.0/22 395954 -173.234.104.0/21 136988 -173.234.112.0/22 7203 -173.234.116.0/22 396362 -173.234.120.0/24 394380 -173.234.124.0/22 395954 -173.234.128.0/23 7979 -173.234.136.0/22 15003 -173.234.144.0/21 395954 -173.234.152.0/21 396362 -173.234.160.0/22 395954 -173.234.172.0/22 395954 -173.234.180.0/22 396190 -173.234.184.0/22 395954 -173.234.192.0/20 15003 -173.234.208.0/22 395954 -173.234.214.0/23 395954 -173.234.220.0/22 395954 -173.234.225.0/24 394380 -173.234.226.0/23 394380 -173.234.232.0/22 396362 -173.234.236.0/22 15003 -173.234.240.0/22 395954 -173.234.244.0/22 396362 -173.234.248.0/21 395954 -173.235.0.0/18 11272 -173.235.64.0/19 11272 -173.235.96.0/22 11272 -173.235.100.0/24 396926 -173.235.101.0/24 11272 -173.235.102.0/23 11272 -173.235.104.0/21 11272 -173.235.112.0/20 11272 -173.235.128.0/17 11272 -173.236.0.0/17 32475 -173.236.128.0/17 26347 -173.237.0.0/18 7979 -173.237.64.0/22 7979 -173.237.72.0/21 7979 -173.237.80.0/20 19009 -173.237.96.0/19 11260 -173.237.128.0/21 30496 -173.237.136.0/23 62729 -173.237.138.0/23 17378 -173.237.140.0/22 30496 -173.237.144.0/24 17378 -173.237.145.0/24 7181 -173.237.146.0/23 30496 -173.237.148.0/22 30496 -173.237.152.0/21 30496 -173.237.160.0/23 17378 -173.237.162.0/23 30496 -173.237.164.0/23 16695 -173.237.166.0/23 17378 -173.237.168.0/22 16858 -173.237.172.0/24 62729 -173.237.173.0/24 36024 -173.237.174.0/23 36024 -173.237.176.0/22 30496 -173.237.180.0/24 33695 -173.237.181.0/24 30496 -173.237.182.0/23 30496 -173.237.184.0/24 394094 -173.237.185.0/24 36024 -173.237.186.0/23 36024 -173.237.188.0/24 30496 -173.237.189.0/24 36024 -173.237.190.0/23 36024 -173.237.192.0/22 15072 -173.237.196.0/23 15072 -173.237.204.0/22 15072 -173.237.208.0/20 53999 -173.237.224.0/20 4261 -173.237.240.0/20 15321 -173.238.0.0/16 7992 -173.239.0.0/19 27257 -173.239.32.0/20 27257 -173.239.48.0/22 36057 -173.239.52.0/24 36057 -173.239.53.0/24 27257 -173.239.54.0/23 36057 -173.239.56.0/23 27257 -173.239.58.0/23 20264 -173.239.60.0/24 53365 -173.239.61.0/24 36057 -173.239.62.0/23 36057 -173.239.64.0/20 32354 -173.239.80.0/22 33509 -173.239.84.0/23 13692 -173.239.86.0/23 33509 -173.239.88.0/21 25840 -173.239.96.0/19 20021 -173.239.128.0/18 812 -173.239.192.0/23 12025 -173.239.194.0/24 12025 -173.239.195.0/24 36351 -173.239.196.0/24 12025 -173.239.197.0/24 36351 -173.239.198.0/24 36351 -173.239.199.0/24 32181 -173.239.200.0/23 12025 -173.239.203.0/24 12025 -173.239.204.0/24 6461 -173.239.205.0/24 12025 -173.239.206.0/24 21559 -173.239.207.0/24 36351 -173.239.211.0/24 12025 -173.239.213.0/24 398131 -173.239.217.0/24 6391 -173.239.218.0/24 20473 -173.239.220.0/22 20473 -173.239.224.0/24 398131 -173.239.227.0/24 6461 -173.239.229.0/24 394142 -173.239.230.0/24 46562 -173.239.231.0/24 12025 -173.239.232.0/24 46562 -173.239.233.0/24 394142 -173.239.235.0/24 174 -173.239.237.0/24 394142 -173.239.239.0/24 12025 -173.239.242.0/23 35554 -173.239.244.0/24 29802 -173.239.245.0/24 12025 -173.239.248.0/22 12025 -173.239.253.0/24 42831 -173.239.254.0/24 29802 -173.239.255.0/24 53559 -173.240.0.0/22 14453 -173.240.4.0/24 19693 -173.240.5.0/24 31863 -173.240.6.0/23 19693 -173.240.8.0/23 14453 -173.240.10.0/24 19693 -173.240.11.0/24 20359 -173.240.12.0/24 14453 -173.240.13.0/24 19693 -173.240.14.0/24 19693 -173.240.15.0/24 31863 -173.240.16.0/20 46303 -173.240.32.0/20 30432 -173.240.48.0/20 11274 -173.240.64.0/24 46552 -173.240.74.0/23 46552 -173.240.76.0/24 46552 -173.240.78.0/23 46552 -173.240.80.0/20 13807 -173.240.96.0/24 29892 -173.240.98.0/23 29892 -173.240.101.0/24 29892 -173.240.102.0/23 29892 -173.240.104.0/23 29892 -173.240.107.0/24 29892 -173.240.108.0/22 29892 -173.240.112.0/21 11433 -173.240.120.0/22 11433 -173.240.128.0/20 16433 -173.240.144.0/20 17184 -173.240.160.0/24 14436 -173.240.161.0/24 11641 -173.240.162.0/23 14436 -173.240.165.0/24 16509 -173.240.166.0/23 14436 -173.240.168.0/22 14436 -173.240.172.0/22 11641 -173.240.176.0/20 15102 -173.240.193.0/24 26793 -173.240.195.0/24 26793 -173.240.197.0/24 26793 -173.240.198.0/23 26793 -173.240.200.0/23 21713 -173.240.202.0/23 33491 -173.240.204.0/24 26793 -173.240.206.0/24 21713 -173.240.207.0/24 26793 -173.240.208.0/21 30021 -173.240.216.0/24 30021 -173.240.220.0/24 23472 -173.240.221.0/24 30021 -173.240.222.0/24 3356 -173.240.224.0/20 12268 -173.240.240.0/20 36687 -173.241.1.0/24 27257 -173.241.7.0/24 27257 -173.241.16.0/20 36734 -173.241.32.0/24 36068 -173.241.34.0/23 36068 -173.241.36.0/24 36068 -173.241.39.0/24 36068 -173.241.40.0/22 36068 -173.241.44.0/23 36068 -173.241.47.0/24 36068 -173.241.48.0/20 13638 -173.241.64.0/20 53726 -173.241.80.0/24 36082 -173.241.83.0/24 393791 -173.241.84.0/24 22996 -173.241.85.0/24 393919 -173.241.86.0/24 22996 -173.241.87.0/24 32627 -173.241.89.0/24 32627 -173.241.90.0/24 32627 -173.241.92.0/24 393791 -173.241.93.0/24 3257 -173.241.94.0/24 174 -173.241.96.0/20 11727 -173.241.112.0/20 35979 -173.241.128.0/20 3257 -173.241.144.0/21 25655 -173.241.152.0/22 25655 -173.241.156.0/24 25655 -173.241.160.0/20 32365 -173.241.176.0/20 26794 -173.241.192.0/20 16724 -173.241.208.0/21 6461 -173.241.216.0/23 6461 -173.241.218.0/24 6461 -173.241.219.0/24 22637 -173.241.220.0/24 6461 -173.241.221.0/24 20227 -173.241.222.0/23 22637 -173.241.224.0/21 19009 -173.241.232.0/23 19009 -173.241.234.0/24 54468 -173.241.237.0/24 19009 -173.241.238.0/23 19009 -173.242.0.0/20 22135 -173.242.16.0/24 18874 -173.242.17.0/24 33561 -173.242.19.0/24 33561 -173.242.20.0/24 33561 -173.242.21.0/24 7336 -173.242.22.0/23 7336 -173.242.25.0/24 33561 -173.242.26.0/23 7336 -173.242.28.0/22 33561 -173.242.32.0/20 11979 -173.242.48.0/20 6939 -173.242.64.0/20 13726 -173.242.80.0/20 36001 -173.242.96.0/20 15320 -173.242.112.0/20 25820 -173.242.128.0/20 26727 -173.242.144.0/20 36372 -173.242.160.0/21 18773 -173.242.168.0/22 18773 -173.242.172.0/23 18773 -173.242.174.0/24 21508 -173.242.175.0/24 18773 -173.242.176.0/20 22652 -173.242.192.0/23 27221 -173.242.194.0/23 14793 -173.242.196.0/22 14793 -173.242.200.0/23 27221 -173.242.202.0/23 14793 -173.242.204.0/22 14793 -173.242.208.0/20 47103 -173.242.224.0/20 26809 -173.242.240.0/20 12261 -173.243.0.0/20 13445 -173.243.16.0/20 53507 -173.243.32.0/20 53424 -173.243.48.0/20 22591 -173.243.64.0/20 13427 -173.243.80.0/21 14979 -173.243.88.0/22 14979 -173.243.92.0/24 396502 -173.243.93.0/24 14979 -173.243.94.0/23 14979 -173.243.106.0/23 25222 -173.243.112.0/24 20278 -173.243.113.0/24 53264 -173.243.114.0/23 53264 -173.243.116.0/23 53264 -173.243.118.0/24 53264 -173.243.119.0/24 20278 -173.243.120.0/21 53264 -173.243.128.0/20 40934 -173.243.144.0/20 29930 -173.243.160.0/20 13536 -173.243.176.0/20 11550 -173.243.192.0/20 40191 -173.243.208.0/20 20125 -173.243.224.0/24 139267 -173.243.225.0/24 62707 -173.243.226.0/23 62707 -173.243.238.0/23 63452 -173.243.240.0/20 17306 -173.244.0.0/19 54616 -173.244.32.0/23 12025 -173.244.34.0/24 62994 -173.244.35.0/24 12025 -173.244.36.0/24 46562 -173.244.37.0/24 12025 -173.244.39.0/24 12025 -173.244.40.0/24 27338 -173.244.41.0/24 12025 -173.244.42.0/24 12025 -173.244.44.0/24 46562 -173.244.45.0/24 54900 -173.244.46.0/24 54900 -173.244.51.0/24 54540 -173.244.52.0/24 6461 -173.244.53.0/24 397359 -173.244.54.0/24 12025 -173.244.55.0/24 36351 -173.244.56.0/22 12025 -173.244.60.0/24 6461 -173.244.63.0/24 53559 -173.244.80.0/20 14500 -173.244.96.0/20 7799 -173.244.112.0/20 21570 -173.244.128.0/20 15164 -173.244.144.0/20 21299 -173.244.160.0/19 10297 -173.244.192.0/23 36351 -173.244.194.0/24 13213 -173.244.195.0/24 46562 -173.244.196.0/23 36351 -173.244.198.0/24 32780 -173.244.199.0/24 13213 -173.244.200.0/23 32780 -173.244.202.0/24 32780 -173.244.203.0/24 36351 -173.244.204.0/23 29854 -173.244.206.0/24 13213 -173.244.207.0/24 29854 -173.244.208.0/23 29854 -173.244.210.0/24 36351 -173.244.211.0/24 29854 -173.244.212.0/23 13213 -173.244.214.0/23 29854 -173.244.216.0/24 36351 -173.244.217.0/24 32780 -173.244.218.0/23 36351 -173.244.220.0/23 29854 -173.244.222.0/23 32780 -173.244.224.0/19 15227 -173.245.32.0/20 26375 -173.245.48.0/23 13335 -173.245.52.0/24 13335 -173.245.54.0/24 13335 -173.245.58.0/23 13335 -173.245.60.0/23 395747 -173.245.63.0/24 13335 -173.245.64.0/20 18779 -173.245.80.0/21 18779 -173.245.88.0/24 18779 -173.245.89.0/24 23338 -173.245.90.0/23 18779 -173.245.92.0/22 18779 -173.245.96.0/21 29748 -173.245.104.0/22 29748 -173.245.108.0/22 33597 -173.245.120.0/23 47886 -173.245.128.0/20 11796 -173.245.144.0/20 15065 -173.245.160.0/21 58122 -173.245.172.0/23 36842 -173.245.176.0/20 36842 -173.245.192.0/23 26769 -173.245.194.0/23 33438 -173.245.196.0/23 12989 -173.245.198.0/24 12989 -173.245.199.0/24 26769 -173.245.200.0/22 12989 -173.245.204.0/23 26769 -173.245.206.0/23 12989 -173.245.208.0/22 33438 -173.245.212.0/23 26769 -173.245.214.0/24 26769 -173.245.215.0/24 12989 -173.245.216.0/22 33438 -173.245.220.0/22 12989 -173.245.224.0/24 21668 -173.245.225.0/24 31877 -173.245.226.0/23 31877 -173.245.228.0/22 31877 -173.245.232.0/23 31877 -173.245.234.0/24 31877 -173.245.235.0/24 62844 -173.245.236.0/24 62844 -173.245.237.0/24 46426 -173.245.238.0/24 46426 -173.245.239.0/24 31877 -173.245.240.0/22 13428 -173.245.244.0/24 13428 -173.245.245.0/24 22631 -173.245.246.0/23 13428 -173.245.248.0/21 13428 -173.246.0.0/19 1403 -173.246.32.0/19 33724 -173.246.64.0/19 40191 -173.246.96.0/22 29169 -173.246.100.0/23 209453 -173.246.102.0/23 29169 -173.246.104.0/24 29169 -173.246.105.0/24 203476 -173.246.106.0/23 29169 -173.246.108.0/24 209453 -173.246.109.0/24 29169 -173.246.110.0/23 29169 -173.246.112.0/20 6181 -173.246.128.0/19 5645 -173.246.192.0/20 53488 -173.246.208.0/21 53488 -173.246.216.0/23 53488 -173.246.218.0/23 26327 -173.246.220.0/23 26327 -173.246.222.0/23 53488 -173.246.224.0/21 26801 -173.246.232.0/22 26801 -173.246.236.0/24 26126 -173.246.237.0/24 396268 -173.246.238.0/23 26801 -173.246.240.0/20 26801 -173.247.0.0/19 26827 -173.247.32.0/19 18705 -173.247.64.0/19 14701 -173.247.105.0/24 36351 -173.247.107.0/24 36351 -173.247.115.0/24 36351 -173.247.128.0/19 40788 -173.247.160.0/19 14265 -173.247.192.0/20 19165 -173.247.208.0/20 10929 -173.247.224.0/20 17139 -173.247.240.0/20 22611 -173.248.0.0/18 26472 -173.248.64.0/20 22561 -173.248.80.0/21 22561 -173.248.88.0/23 22561 -173.248.90.0/24 22561 -173.248.91.0/24 4581 -173.248.92.0/22 22561 -173.248.96.0/20 22561 -173.248.112.0/21 22561 -173.248.120.0/22 22561 -173.248.124.0/23 22561 -173.248.126.0/24 22561 -173.248.127.0/24 209 -173.248.128.0/18 30475 -173.248.192.0/19 12208 -173.248.224.0/22 132585 -173.248.228.0/24 132585 -173.248.229.0/24 39743 -173.248.230.0/24 39743 -173.248.231.0/24 132585 -173.248.232.0/22 132585 -173.248.236.0/23 132585 -173.248.238.0/24 132585 -173.248.239.0/24 4515 -173.248.240.0/22 135373 -173.248.244.0/22 132585 -173.248.248.0/21 132585 -173.249.0.0/18 51167 -173.249.64.0/22 40948 -173.249.68.0/24 40948 -173.249.69.0/24 40771 -173.249.70.0/24 54878 -173.249.71.0/24 40948 -173.249.72.0/21 40948 -173.249.95.0/24 17025 -173.249.96.0/19 22667 -173.249.128.0/20 394708 -173.249.144.0/24 40819 -173.249.145.0/24 36444 -173.249.146.0/23 40819 -173.249.148.0/24 40819 -173.249.150.0/23 36444 -173.249.152.0/24 36444 -173.249.153.0/24 31463 -173.249.154.0/23 31463 -173.249.156.0/24 6188 -173.249.157.0/24 36444 -173.249.158.0/23 36444 -173.249.192.0/18 11878 -173.250.128.0/18 73 -173.250.192.0/19 73 -173.250.224.0/21 14221 -173.250.232.0/21 73 -173.250.240.0/20 73 -173.251.0.0/20 6128 -173.251.16.0/23 6128 -173.251.18.0/24 6128 -173.251.19.0/24 32696 -173.251.20.0/22 6128 -173.251.24.0/22 6128 -173.251.28.0/24 14564 -173.251.29.0/24 6128 -173.251.30.0/24 11737 -173.251.31.0/24 6128 -173.251.32.0/21 6128 -173.251.40.0/23 6128 -173.251.42.0/24 6128 -173.251.43.0/24 30566 -173.251.44.0/24 6128 -173.251.45.0/24 54004 -173.251.46.0/23 6128 -173.251.48.0/22 6128 -173.251.52.0/23 6128 -173.251.54.0/24 13599 -173.251.55.0/24 6128 -173.251.56.0/22 6128 -173.251.60.0/24 22225 -173.251.61.0/24 6128 -173.251.62.0/23 6128 -173.251.64.0/24 16884 -173.251.65.0/24 6128 -173.251.66.0/23 6128 -173.251.68.0/23 62641 -173.251.70.0/23 6128 -173.251.72.0/22 6128 -173.251.76.0/23 54004 -173.251.78.0/23 6128 -173.251.80.0/22 6128 -173.251.84.0/24 54004 -173.251.85.0/24 6128 -173.251.86.0/23 6128 -173.251.88.0/23 6128 -173.251.90.0/24 6128 -173.251.91.0/24 53725 -173.251.92.0/22 6128 -173.251.96.0/21 6128 -173.251.104.0/22 6128 -173.251.108.0/23 6128 -173.251.110.0/24 19689 -173.251.111.0/24 53475 -173.251.112.0/20 6128 -173.251.240.0/21 19419 -173.251.248.0/22 19419 -173.252.0.0/20 11260 -173.252.16.0/21 11260 -173.252.24.0/22 32233 -173.252.28.0/22 11260 -173.252.32.0/21 11260 -173.252.40.0/22 11260 -173.252.44.0/22 32233 -173.252.48.0/20 11260 -173.252.64.0/18 32934 -173.252.128.0/18 7381 -173.252.192.0/18 20248 -173.253.0.0/17 11878 -173.253.128.0/17 2055 -173.254.0.0/17 46606 -173.254.128.0/19 3663 -173.254.160.0/20 3663 -173.254.176.0/23 19893 -173.254.178.0/24 19893 -173.254.179.0/24 30286 -173.254.180.0/22 19893 -173.254.184.0/21 19893 -173.254.192.0/18 8100 -173.255.0.0/21 7296 -173.255.8.0/24 32045 -173.255.9.0/24 7296 -173.255.10.0/23 7296 -173.255.12.0/22 7296 -173.255.16.0/21 25636 -173.255.24.0/24 25636 -173.255.25.0/24 35911 -173.255.26.0/23 25636 -173.255.28.0/24 35911 -173.255.29.0/24 25636 -173.255.30.0/23 25636 -173.255.32.0/20 1970 -173.255.48.0/20 15147 -173.255.64.0/20 11084 -173.255.80.0/21 14161 -173.255.92.0/22 14161 -173.255.96.0/20 23308 -173.255.112.0/20 15169 -173.255.128.0/22 29854 -173.255.132.0/22 36351 -173.255.136.0/21 36351 -173.255.144.0/23 204648 -173.255.146.0/24 204648 -173.255.147.0/24 18986 -173.255.148.0/22 18986 -173.255.152.0/21 18986 -173.255.160.0/21 12989 -173.255.168.0/21 22781 -173.255.176.0/20 12989 -173.255.192.0/18 63949 -174.0.0.0/13 6327 -174.16.0.0/12 209 -174.32.16.0/20 6621 -174.32.32.0/19 6621 -174.32.64.0/18 6621 -174.32.129.0/24 6621 -174.32.130.0/23 6621 -174.32.133.0/24 6621 -174.32.134.0/23 6621 -174.32.136.0/21 6621 -174.32.144.0/23 6621 -174.32.160.0/20 6621 -174.32.224.0/19 6621 -174.33.0.0/19 6621 -174.33.32.0/20 6621 -174.33.80.0/20 6621 -174.33.96.0/20 6621 -174.33.112.0/21 6621 -174.33.128.0/18 6621 -174.33.192.0/19 6621 -174.33.224.0/21 6621 -174.34.0.0/19 4581 -174.34.32.0/20 4581 -174.34.48.0/20 14742 -174.34.64.0/21 7829 -174.34.72.0/22 7829 -174.34.76.0/23 7829 -174.34.78.0/24 40872 -174.34.79.0/24 7829 -174.34.80.0/20 7829 -174.34.128.0/22 15003 -174.34.132.0/22 394380 -174.34.136.0/24 396190 -174.34.138.0/23 396362 -174.34.140.0/22 395954 -174.34.144.0/23 396190 -174.34.148.0/24 396362 -174.34.151.0/24 396190 -174.34.154.0/24 15003 -174.34.156.0/22 15003 -174.34.164.0/22 15003 -174.34.168.0/22 396362 -174.34.172.0/22 15003 -174.34.182.0/23 395954 -174.34.184.0/23 15003 -174.34.192.0/19 14051 -174.34.224.0/23 11402 -174.34.226.0/24 11402 -174.34.228.0/24 11402 -174.34.232.0/23 11402 -174.34.234.0/24 11402 -174.34.235.0/24 32281 -174.34.240.0/24 11402 -174.34.241.0/24 396029 -174.34.242.0/23 39938 -174.34.244.0/24 5693 -174.34.246.0/23 39938 -174.34.248.0/22 18451 -174.35.1.0/24 36408 -174.35.2.0/23 36408 -174.35.5.0/24 36408 -174.35.6.0/23 36408 -174.35.8.0/22 36408 -174.35.12.0/23 36408 -174.35.19.0/24 36408 -174.35.25.0/24 54994 -174.35.26.0/24 54994 -174.35.27.0/24 36408 -174.35.34.0/24 36408 -174.35.39.0/24 36408 -174.35.44.0/23 36408 -174.35.47.0/24 36408 -174.35.48.0/21 36408 -174.35.56.0/22 36408 -174.35.60.0/24 36408 -174.35.63.0/24 36408 -174.35.64.0/22 36408 -174.35.68.0/24 36408 -174.35.69.0/24 54994 -174.35.70.0/24 36408 -174.35.72.0/24 13658 -174.35.74.0/24 13658 -174.35.78.0/23 36408 -174.35.80.0/24 36408 -174.35.86.0/24 36408 -174.35.88.0/23 36408 -174.35.91.0/24 36408 -174.35.93.0/24 36408 -174.35.94.0/24 36408 -174.35.96.0/21 36408 -174.35.104.0/22 36408 -174.35.109.0/24 36408 -174.35.111.0/24 36408 -174.35.112.0/22 36408 -174.35.117.0/24 36408 -174.35.118.0/24 36408 -174.35.121.0/24 36408 -174.35.122.0/23 36408 -174.35.124.0/22 36408 -174.35.128.0/21 22995 -174.35.160.0/24 22995 -174.35.201.0/24 22995 -174.35.202.0/23 22995 -174.35.208.0/22 22995 -174.35.216.0/21 22995 -174.35.224.0/19 22995 -174.36.0.0/15 36351 -174.38.0.0/16 22394 -174.39.0.0/17 22394 -174.39.128.0/18 22394 -174.39.192.0/18 6167 -174.40.0.0/14 6167 -174.44.0.0/16 6128 -174.45.0.0/16 33588 -174.46.0.0/24 26831 -174.46.1.0/24 3549 -174.46.2.0/23 3549 -174.46.4.0/23 3549 -174.46.6.0/24 53524 -174.46.7.0/24 3549 -174.46.8.0/24 16678 -174.46.9.0/24 3549 -174.46.10.0/24 19366 -174.46.11.0/24 3549 -174.46.12.0/22 22006 -174.46.16.0/22 3549 -174.46.20.0/23 3549 -174.46.22.0/24 46876 -174.46.23.0/24 46928 -174.46.24.0/21 3549 -174.46.32.0/20 3549 -174.46.48.0/22 3549 -174.46.52.0/24 3549 -174.46.53.0/24 26831 -174.46.54.0/23 3549 -174.46.56.0/24 3549 -174.46.57.0/24 283 -174.46.58.0/24 3549 -174.46.59.0/24 3459 -174.46.60.0/23 3549 -174.46.62.0/24 46192 -174.46.63.0/24 3549 -174.46.64.0/22 3549 -174.46.68.0/23 15065 -174.46.70.0/23 3549 -174.46.72.0/22 3549 -174.46.76.0/23 3549 -174.46.78.0/24 53466 -174.46.79.0/24 3549 -174.46.80.0/20 3549 -174.46.96.0/23 3549 -174.46.98.0/24 25895 -174.46.99.0/24 3549 -174.46.100.0/23 3549 -174.46.102.0/24 3549 -174.46.103.0/24 13898 -174.46.104.0/23 30305 -174.46.106.0/23 3549 -174.46.108.0/24 3549 -174.46.109.0/24 30305 -174.46.110.0/23 3549 -174.46.112.0/24 397154 -174.46.113.0/24 3549 -174.46.114.0/23 3549 -174.46.116.0/22 3549 -174.46.120.0/24 53325 -174.46.121.0/24 3549 -174.46.122.0/23 3549 -174.46.124.0/23 3549 -174.46.126.0/24 3549 -174.46.127.0/24 32924 -174.46.128.0/24 26050 -174.46.129.0/24 3549 -174.46.130.0/23 3549 -174.46.132.0/23 17216 -174.46.134.0/24 17216 -174.46.135.0/24 3549 -174.46.136.0/21 3549 -174.46.144.0/20 3549 -174.46.160.0/23 26729 -174.46.162.0/23 3549 -174.46.164.0/22 3549 -174.46.168.0/22 3549 -174.46.172.0/23 3549 -174.46.174.0/24 33283 -174.46.175.0/24 3549 -174.46.176.0/22 3549 -174.46.180.0/23 393465 -174.46.182.0/23 3549 -174.46.184.0/21 3549 -174.46.192.0/24 15033 -174.46.193.0/24 3549 -174.46.194.0/23 3549 -174.46.196.0/22 3549 -174.46.200.0/22 3549 -174.46.204.0/23 3549 -174.46.206.0/23 36656 -174.46.208.0/21 3549 -174.46.216.0/23 3549 -174.46.218.0/24 3549 -174.46.219.0/24 33050 -174.46.220.0/24 33050 -174.46.221.0/24 39984 -174.46.222.0/23 3549 -174.46.224.0/21 3549 -174.46.232.0/24 33064 -174.46.233.0/24 3549 -174.46.234.0/23 3549 -174.46.236.0/23 3549 -174.46.238.0/24 25785 -174.46.239.0/24 3549 -174.46.240.0/21 3549 -174.46.248.0/23 3549 -174.46.250.0/24 46921 -174.46.251.0/24 10979 -174.46.252.0/23 3549 -174.46.254.0/24 3549 -174.46.255.0/24 14105 -174.47.0.0/23 3549 -174.47.2.0/24 3549 -174.47.3.0/24 32297 -174.47.4.0/22 3549 -174.47.8.0/23 3549 -174.47.10.0/24 3549 -174.47.11.0/24 30305 -174.47.12.0/23 3549 -174.47.14.0/24 3549 -174.47.15.0/24 62811 -174.47.16.0/24 2583 -174.47.17.0/24 3549 -174.47.18.0/23 3549 -174.47.20.0/24 19271 -174.47.21.0/24 3549 -174.47.22.0/23 3549 -174.47.24.0/21 3549 -174.47.32.0/22 3549 -174.47.36.0/23 3549 -174.47.38.0/24 397684 -174.47.39.0/24 3549 -174.47.40.0/24 19271 -174.47.41.0/24 32115 -174.47.42.0/24 1380 -174.47.43.0/24 3549 -174.47.44.0/24 396439 -174.47.45.0/24 3549 -174.47.46.0/23 3549 -174.47.48.0/23 3549 -174.47.50.0/24 21973 -174.47.51.0/24 27548 -174.47.52.0/22 3549 -174.47.56.0/21 3549 -174.47.64.0/24 3549 -174.47.65.0/24 19233 -174.47.66.0/23 3549 -174.47.68.0/22 3549 -174.47.72.0/21 3549 -174.47.80.0/22 3549 -174.47.84.0/24 32916 -174.47.85.0/24 3549 -174.47.86.0/24 3549 -174.47.87.0/24 394945 -174.47.88.0/21 63298 -174.47.96.0/24 32419 -174.47.97.0/24 3549 -174.47.98.0/23 3549 -174.47.100.0/24 17054 -174.47.101.0/24 3549 -174.47.102.0/23 3549 -174.47.104.0/24 3549 -174.47.105.0/24 53320 -174.47.106.0/23 3549 -174.47.108.0/23 26729 -174.47.110.0/23 3549 -174.47.112.0/21 3549 -174.47.120.0/23 3549 -174.47.122.0/24 3549 -174.47.123.0/24 25738 -174.47.124.0/22 3549 -174.47.128.0/24 29813 -174.47.129.0/24 15292 -174.47.130.0/23 3549 -174.47.132.0/24 3549 -174.47.133.0/24 36376 -174.47.134.0/23 23165 -174.47.136.0/23 3549 -174.47.138.0/24 16511 -174.47.139.0/24 3549 -174.47.140.0/23 395153 -174.47.142.0/23 3549 -174.47.144.0/23 394866 -174.47.146.0/23 3549 -174.47.148.0/22 3549 -174.47.152.0/21 3549 -174.47.160.0/23 3549 -174.47.162.0/24 62738 -174.47.163.0/24 3549 -174.47.164.0/22 30108 -174.47.168.0/22 3549 -174.47.172.0/24 46842 -174.47.173.0/24 26831 -174.47.174.0/23 3549 -174.47.176.0/22 3549 -174.47.180.0/22 27195 -174.47.184.0/24 23012 -174.47.185.0/24 20323 -174.47.186.0/23 3549 -174.47.188.0/23 3549 -174.47.190.0/24 3549 -174.47.191.0/24 1641 -174.47.192.0/24 394828 -174.47.193.0/24 18602 -174.47.194.0/24 30328 -174.47.195.0/24 15065 -174.47.196.0/23 3549 -174.47.198.0/24 3549 -174.47.199.0/24 15065 -174.47.200.0/21 3549 -174.47.208.0/23 3549 -174.47.210.0/24 39978 -174.47.211.0/24 3549 -174.47.212.0/22 3549 -174.47.216.0/21 3549 -174.47.224.0/21 3549 -174.47.232.0/24 3549 -174.47.233.0/24 27349 -174.47.234.0/23 3549 -174.47.236.0/22 3549 -174.47.240.0/20 3549 -174.48.0.0/12 7922 -174.64.0.0/19 22773 -174.64.32.0/21 22773 -174.64.40.0/22 22773 -174.64.44.0/24 54275 -174.64.45.0/24 22773 -174.64.46.0/24 11822 -174.64.47.0/24 22773 -174.64.48.0/20 22773 -174.64.64.0/18 22773 -174.64.128.0/17 22773 -174.65.0.0/16 22773 -174.66.0.0/15 22773 -174.68.0.0/15 22773 -174.70.0.0/20 22773 -174.70.16.0/24 21567 -174.70.17.0/24 22773 -174.70.18.0/23 22773 -174.70.20.0/22 22773 -174.70.24.0/21 22773 -174.70.32.0/19 22773 -174.70.64.0/18 22773 -174.70.128.0/17 22773 -174.71.0.0/16 22773 -174.72.0.0/14 22773 -174.76.0.0/22 22773 -174.76.4.0/23 22773 -174.76.6.0/24 18855 -174.76.7.0/24 22773 -174.76.8.0/21 22773 -174.76.16.0/21 22773 -174.76.24.0/22 22773 -174.76.28.0/23 53703 -174.76.30.0/23 22773 -174.76.32.0/19 22773 -174.76.64.0/20 22773 -174.76.80.0/21 22773 -174.76.88.0/23 54822 -174.76.90.0/23 22898 -174.76.92.0/23 22898 -174.76.94.0/23 54945 -174.76.96.0/19 22773 -174.76.128.0/17 22773 -174.77.0.0/21 22773 -174.77.8.0/22 16560 -174.77.12.0/22 22773 -174.77.16.0/20 22773 -174.77.32.0/19 22773 -174.77.64.0/18 22773 -174.77.128.0/20 22898 -174.77.144.0/23 22773 -174.77.146.0/24 32214 -174.77.147.0/24 19670 -174.77.148.0/22 22773 -174.77.152.0/21 22773 -174.77.160.0/20 22773 -174.77.176.0/23 22773 -174.77.178.0/24 13814 -174.77.179.0/24 22773 -174.77.180.0/23 22773 -174.77.182.0/24 16789 -174.77.183.0/24 22773 -174.77.184.0/21 22773 -174.77.192.0/18 22773 -174.78.0.0/20 22773 -174.78.16.0/22 22773 -174.78.20.0/24 22773 -174.78.21.0/24 20001 -174.78.22.0/23 22773 -174.78.24.0/21 22773 -174.78.32.0/19 22773 -174.78.64.0/19 22773 -174.78.96.0/21 22773 -174.78.104.0/22 22773 -174.78.108.0/23 53703 -174.78.110.0/23 22773 -174.78.112.0/20 22773 -174.78.128.0/18 22773 -174.78.192.0/19 22773 -174.78.224.0/20 22773 -174.78.240.0/22 22773 -174.78.244.0/24 22773 -174.78.245.0/24 17155 -174.78.246.0/23 22773 -174.78.248.0/21 22773 -174.79.0.0/17 22773 -174.79.128.0/20 22773 -174.79.144.0/22 30090 -174.79.148.0/24 30090 -174.79.149.0/24 22773 -174.79.150.0/23 22773 -174.79.152.0/21 22773 -174.79.160.0/19 22773 -174.79.192.0/19 22773 -174.79.224.0/22 22773 -174.79.228.0/23 22773 -174.79.230.0/24 22773 -174.79.231.0/24 395300 -174.79.232.0/21 22773 -174.79.240.0/20 22773 -174.80.0.0/13 20115 -174.88.0.0/15 577 -174.90.0.0/18 577 -174.90.64.0/19 577 -174.90.96.0/20 36522 -174.90.112.0/21 36522 -174.90.120.0/22 603 -174.90.124.0/23 603 -174.90.126.0/23 577 -174.90.128.0/20 36522 -174.90.144.0/21 36522 -174.90.152.0/21 577 -174.90.160.0/22 36522 -174.90.164.0/22 577 -174.90.168.0/22 36522 -174.90.172.0/23 577 -174.90.174.0/23 36522 -174.90.176.0/20 577 -174.90.192.0/20 36522 -174.90.208.0/21 577 -174.90.216.0/22 36522 -174.90.220.0/24 577 -174.90.221.0/24 36522 -174.90.222.0/24 36522 -174.90.223.0/24 577 -174.90.224.0/22 36522 -174.90.228.0/22 577 -174.90.232.0/23 577 -174.90.234.0/23 36522 -174.90.236.0/22 577 -174.90.240.0/21 577 -174.90.248.0/22 36522 -174.90.252.0/24 36522 -174.90.253.0/24 577 -174.90.254.0/23 577 -174.91.0.0/16 577 -174.92.0.0/15 577 -174.94.0.0/17 577 -174.94.128.0/18 577 -174.94.192.0/19 36522 -174.94.224.0/20 36522 -174.94.240.0/22 36522 -174.94.244.0/22 577 -174.94.248.0/21 577 -174.95.0.0/16 577 -174.96.0.0/15 10796 -174.98.0.0/16 10796 -174.99.0.0/17 11426 -174.99.128.0/18 11426 -174.99.192.0/19 11426 -174.99.224.0/20 11426 -174.99.240.0/24 396837 -174.99.241.0/24 11426 -174.99.242.0/23 11426 -174.99.244.0/22 11426 -174.99.248.0/21 11426 -174.100.0.0/14 10796 -174.104.0.0/15 10796 -174.106.0.0/15 11426 -174.108.0.0/14 11426 -174.112.0.0/13 812 -174.120.0.0/14 36351 -174.124.0.0/20 209 -174.124.16.0/20 22561 -174.124.32.0/20 209 -174.124.48.0/22 22561 -174.124.52.0/22 209 -174.124.56.0/21 22561 -174.124.64.0/19 22561 -174.124.96.0/20 22561 -174.124.112.0/21 209 -174.124.120.0/22 209 -174.124.124.0/22 22561 -174.124.128.0/22 22561 -174.124.132.0/22 209 -174.124.136.0/21 209 -174.124.144.0/22 209 -174.124.148.0/22 22561 -174.124.152.0/21 22561 -174.124.160.0/19 209 -174.124.192.0/18 209 -174.125.0.0/19 209 -174.125.32.0/20 22561 -174.125.48.0/20 209 -174.125.64.0/20 22561 -174.125.80.0/21 22561 -174.125.88.0/21 209 -174.125.96.0/21 22561 -174.125.104.0/21 209 -174.125.112.0/20 209 -174.125.128.0/19 22561 -174.125.160.0/20 209 -174.125.176.0/20 22561 -174.125.192.0/19 22561 -174.125.224.0/20 22561 -174.125.240.0/21 22561 -174.125.248.0/21 209 -174.126.0.0/18 11492 -174.126.64.0/21 11492 -174.126.72.0/22 11492 -174.126.76.0/24 11492 -174.126.78.0/23 11492 -174.126.81.0/24 11492 -174.126.82.0/23 11492 -174.126.84.0/22 11492 -174.126.88.0/21 11492 -174.126.96.0/19 11492 -174.126.128.0/19 11492 -174.126.160.0/21 11492 -174.126.184.0/21 11492 -174.126.192.0/20 11492 -174.126.208.0/21 11492 -174.126.216.0/22 11492 -174.126.220.0/23 11492 -174.126.222.0/24 11492 -174.126.224.0/19 11492 -174.127.0.0/18 14265 -174.127.66.0/23 36351 -174.127.70.0/24 32780 -174.127.71.0/24 36351 -174.127.72.0/22 36351 -174.127.78.0/24 36351 -174.127.79.0/24 29854 -174.127.80.0/22 36351 -174.127.84.0/24 29854 -174.127.85.0/24 36351 -174.127.88.0/24 36351 -174.127.90.0/24 36351 -174.127.91.0/24 32780 -174.127.92.0/22 36351 -174.127.96.0/23 36351 -174.127.99.0/24 36351 -174.127.102.0/23 36351 -174.127.104.0/21 29854 -174.127.112.0/21 29854 -174.127.120.0/21 32780 -174.127.128.0/22 11404 -174.127.132.0/22 396030 -174.127.136.0/21 11404 -174.127.144.0/21 11404 -174.127.152.0/22 11404 -174.127.156.0/22 54858 -174.127.160.0/24 30577 -174.127.161.0/24 11404 -174.127.162.0/23 54858 -174.127.164.0/22 11404 -174.127.168.0/21 11404 -174.127.176.0/22 11404 -174.127.180.0/24 11404 -174.127.181.0/24 26706 -174.127.182.0/23 11404 -174.127.184.0/22 11404 -174.127.188.0/24 396030 -174.127.189.0/24 11404 -174.127.190.0/23 11404 -174.127.192.0/23 11404 -174.127.194.0/24 11404 -174.127.195.0/24 40065 -174.127.196.0/23 11404 -174.127.198.0/24 14642 -174.127.199.0/24 11404 -174.127.200.0/21 11404 -174.127.208.0/21 54858 -174.127.216.0/21 54154 -174.127.224.0/19 11404 -174.128.0.0/20 12025 -174.128.16.0/21 12025 -174.128.24.0/23 12025 -174.128.26.0/24 12025 -174.128.27.0/24 394976 -174.128.28.0/24 12025 -174.128.29.0/24 32137 -174.128.30.0/23 12025 -174.128.32.0/19 12025 -174.128.64.0/21 63335 -174.128.84.0/22 63335 -174.128.88.0/21 63335 -174.128.96.0/21 63335 -174.128.126.0/23 63335 -174.128.128.0/19 397504 -174.128.160.0/21 33597 -174.128.168.0/24 29838 -174.128.169.0/24 397810 -174.128.170.0/23 29838 -174.128.172.0/22 33597 -174.128.176.0/21 29838 -174.128.184.0/24 19019 -174.128.185.0/24 29838 -174.128.186.0/24 63054 -174.128.187.0/24 15346 -174.128.188.0/23 16700 -174.128.190.0/24 397815 -174.128.191.0/24 14012 -174.128.192.0/21 26878 -174.128.200.0/22 32654 -174.128.204.0/23 21879 -174.128.206.0/24 21879 -174.128.207.0/24 32654 -174.128.208.0/21 19982 -174.128.216.0/21 32654 -174.128.224.0/19 46844 -174.129.0.0/16 14618 -174.130.0.0/15 7029 -174.132.0.0/15 36351 -174.134.0.0/15 33363 -174.136.0.0/23 55045 -174.136.2.0/23 30496 -174.136.4.0/23 55045 -174.136.6.0/23 30496 -174.136.8.0/22 30496 -174.136.12.0/22 62729 -174.136.16.0/21 30496 -174.136.24.0/24 33494 -174.136.25.0/24 36024 -174.136.26.0/23 36024 -174.136.28.0/22 36024 -174.136.32.0/24 33494 -174.136.33.0/24 36024 -174.136.34.0/23 33494 -174.136.36.0/22 36024 -174.136.40.0/24 394094 -174.136.41.0/24 33494 -174.136.42.0/24 33494 -174.136.43.0/24 36024 -174.136.44.0/24 394094 -174.136.45.0/24 30496 -174.136.46.0/24 30496 -174.136.47.0/24 36024 -174.136.48.0/24 394094 -174.136.49.0/24 36024 -174.136.50.0/24 33494 -174.136.51.0/24 36024 -174.136.52.0/23 36024 -174.136.54.0/24 36024 -174.136.55.0/24 33494 -174.136.56.0/24 33494 -174.136.57.0/24 36024 -174.136.58.0/23 33494 -174.136.60.0/22 33494 -174.136.64.0/19 14519 -174.136.96.0/20 25795 -174.136.112.0/20 22995 -174.136.128.0/19 19383 -174.136.185.0/24 4867 -174.136.186.0/23 4867 -174.137.0.0/20 46632 -174.137.16.0/20 31875 -174.137.32.0/22 19893 -174.137.36.0/24 19893 -174.137.37.0/24 27615 -174.137.38.0/23 19893 -174.137.40.0/21 19893 -174.137.48.0/20 25820 -174.137.64.0/20 46595 -174.137.80.0/20 15250 -174.137.96.0/20 394285 -174.137.112.0/22 40495 -174.137.116.0/23 40495 -174.137.118.0/24 54668 -174.137.119.0/24 40495 -174.137.120.0/24 54668 -174.137.121.0/24 40495 -174.137.122.0/23 54668 -174.137.124.0/23 40495 -174.137.126.0/23 54668 -174.137.128.0/19 27257 -174.137.160.0/20 27257 -174.137.176.0/20 36057 -174.137.192.0/18 21724 -174.138.0.0/18 14061 -174.138.64.0/19 14061 -174.138.96.0/22 14061 -174.138.104.0/21 14061 -174.138.112.0/20 14061 -174.138.128.0/20 32738 -174.138.160.0/20 20454 -174.138.176.0/20 19318 -174.138.192.0/19 11814 -174.138.224.0/22 13431 -174.138.228.0/24 13431 -174.138.232.0/23 13431 -174.138.236.0/24 10021 -174.138.237.0/24 13431 -174.138.238.0/24 13431 -174.138.249.0/24 13431 -174.139.0.0/16 35908 -174.140.64.0/18 11776 -174.140.128.0/21 29748 -174.140.136.0/22 29748 -174.140.140.0/23 29748 -174.140.142.0/24 29748 -174.140.143.0/24 40913 -174.140.144.0/20 29748 -174.140.160.0/22 46816 -174.140.164.0/24 26388 -174.140.165.0/24 46816 -174.140.166.0/23 46816 -174.140.168.0/23 46816 -174.140.170.0/24 26388 -174.140.171.0/24 46816 -174.140.172.0/23 46816 -174.140.174.0/23 26388 -174.140.176.0/20 33007 -174.140.192.0/22 21769 -174.140.196.0/23 25653 -174.140.198.0/24 9009 -174.140.199.0/24 21769 -174.140.200.0/24 17252 -174.140.201.0/24 46261 -174.140.202.0/24 19437 -174.140.203.0/24 17252 -174.140.204.0/24 8038 -174.140.205.0/24 17252 -174.140.206.0/23 17252 -174.140.208.0/22 46261 -174.140.212.0/24 17252 -174.140.213.0/24 46261 -174.140.214.0/24 9009 -174.140.215.0/24 46261 -174.140.216.0/21 17252 -174.140.224.0/23 17252 -174.140.226.0/24 9009 -174.140.227.0/24 17252 -174.140.228.0/22 46261 -174.140.232.0/24 132827 -174.140.233.0/24 17252 -174.140.234.0/24 17252 -174.140.235.0/24 132827 -174.140.236.0/23 46261 -174.140.238.0/24 17252 -174.140.239.0/24 9009 -174.140.240.0/22 46261 -174.140.244.0/23 17252 -174.140.246.0/24 9009 -174.140.247.0/24 17252 -174.140.248.0/24 17252 -174.140.249.0/24 23470 -174.140.250.0/24 42831 -174.140.251.0/24 9009 -174.140.252.0/22 17252 -174.141.0.0/17 7029 -174.141.128.0/20 174 -174.141.144.0/21 174 -174.141.152.0/22 23089 -174.141.156.0/23 23089 -174.141.160.0/19 23089 -174.141.192.0/20 10242 -174.141.208.0/20 21928 -174.141.224.0/22 32181 -174.141.228.0/22 32613 -174.141.232.0/23 32613 -174.141.234.0/24 32181 -174.141.240.0/20 14329 -174.142.0.0/16 32613 -174.143.0.0/16 33070 -174.144.0.0/15 10507 -174.146.0.0/17 3651 -174.146.128.0/18 10507 -174.146.192.0/18 3651 -174.147.0.0/16 1239 -174.148.0.0/14 10507 -174.152.0.0/13 10507 -174.160.0.0/11 7922 -174.192.0.0/14 22394 -174.196.0.0/16 22394 -174.197.0.0/16 6167 -174.198.0.0/15 6167 -174.200.0.0/14 22394 -174.204.0.0/15 6167 -174.206.0.0/15 22394 -174.208.0.0/15 22394 -174.210.0.0/15 6167 -174.212.0.0/14 6167 -174.216.0.0/13 22394 -174.224.0.0/13 22394 -174.232.0.0/14 22394 -174.236.0.0/15 22394 -174.238.0.0/16 22394 -174.239.0.0/17 22394 -174.239.128.0/17 6167 -174.240.0.0/15 22394 -174.242.0.0/17 22394 -174.242.128.0/18 22394 -174.242.192.0/18 6167 -174.243.0.0/18 6167 -174.243.64.0/18 22394 -174.243.128.0/17 6167 -174.244.0.0/17 22394 -174.244.128.0/19 6167 -174.244.160.0/19 22394 -174.244.192.0/18 6167 -174.245.0.0/17 22394 -174.245.128.0/18 6167 -174.245.192.0/20 22394 -174.245.208.0/20 6167 -174.245.224.0/19 22394 -174.246.0.0/18 22394 -174.246.64.0/19 6167 -174.246.96.0/19 22394 -174.246.128.0/17 22394 -174.247.0.0/19 22394 -174.247.32.0/19 6167 -174.247.64.0/19 6167 -174.247.96.0/19 22394 -174.247.128.0/19 6167 -174.247.160.0/19 22394 -174.247.192.0/18 6167 -174.248.0.0/18 22394 -174.248.64.0/20 22394 -174.248.80.0/22 6167 -174.248.84.0/22 22394 -174.248.88.0/21 22394 -174.248.96.0/19 22394 -174.248.128.0/17 22394 -174.249.0.0/19 22394 -174.249.32.0/21 6167 -174.249.40.0/21 22394 -174.249.48.0/22 22394 -174.249.52.0/22 6167 -174.249.56.0/21 6167 -174.249.64.0/18 6167 -174.249.128.0/18 6167 -174.249.192.0/19 22394 -174.249.224.0/20 22394 -174.249.240.0/20 6167 -174.250.0.0/19 22394 -174.250.32.0/22 22394 -174.250.36.0/23 22394 -174.250.38.0/23 6167 -174.250.40.0/22 22394 -174.250.44.0/23 22394 -174.250.46.0/23 6167 -174.250.48.0/22 22394 -174.250.52.0/23 22394 -174.250.54.0/23 6167 -174.250.56.0/22 22394 -174.250.60.0/23 22394 -174.250.62.0/23 6167 -174.250.64.0/18 22394 -174.250.128.0/19 22394 -174.250.160.0/19 6167 -174.250.192.0/19 6167 -174.250.224.0/19 22394 -174.251.0.0/18 22394 -174.251.64.0/18 6167 -174.251.128.0/17 6167 -174.252.0.0/19 22394 -174.252.32.0/20 22394 -174.252.48.0/20 6167 -174.252.64.0/19 6167 -174.252.96.0/19 22394 -174.252.128.0/17 22394 -174.253.0.0/16 22394 -174.254.0.0/23 22394 -174.254.2.0/23 6167 -174.254.4.0/24 22394 -174.254.5.0/24 6167 -174.254.6.0/23 6167 -174.254.8.0/23 6167 -174.254.10.0/24 22394 -174.254.11.0/24 6167 -174.254.12.0/23 6167 -174.254.14.0/24 6167 -174.254.15.0/24 22394 -174.254.16.0/20 6167 -174.254.32.0/19 6167 -174.254.64.0/18 22394 -174.254.128.0/17 22394 -174.255.0.0/18 6167 -174.255.64.0/18 22394 -174.255.128.0/18 6167 -174.255.192.0/18 22394 -175.0.0.0/14 4134 -175.4.0.0/15 4134 -175.6.0.0/17 63835 -175.6.128.0/20 63835 -175.6.144.0/21 63835 -175.6.152.0/23 63835 -175.6.154.0/23 4134 -175.6.156.0/22 4134 -175.6.160.0/19 4134 -175.6.192.0/20 63838 -175.6.208.0/21 63838 -175.6.216.0/22 63838 -175.6.220.0/24 63838 -175.6.221.0/24 4134 -175.6.222.0/23 4134 -175.6.224.0/19 63838 -175.7.0.0/16 4134 -175.8.0.0/13 4134 -175.16.0.0/13 4837 -175.24.0.0/16 45090 -175.25.0.0/20 56019 -175.25.16.0/21 4808 -175.25.24.0/22 4808 -175.25.28.0/22 23724 -175.25.32.0/21 4808 -175.25.40.0/21 23724 -175.25.48.0/23 56019 -175.25.50.0/23 4808 -175.25.52.0/22 23724 -175.25.56.0/21 23724 -175.25.64.0/18 56019 -175.25.128.0/19 56019 -175.25.160.0/19 23724 -175.25.192.0/19 56019 -175.25.224.0/20 56019 -175.25.240.0/21 23724 -175.25.248.0/21 56019 -175.28.0.0/22 55329 -175.28.4.0/22 9371 -175.28.8.0/22 17645 -175.28.12.0/22 38044 -175.28.16.0/20 10019 -175.28.32.0/20 18334 -175.28.48.0/22 59092 -175.28.52.0/22 10013 -175.28.56.0/22 10013 -175.28.60.0/23 10013 -175.28.62.0/24 10013 -175.28.128.0/17 7679 -175.29.0.0/23 134548 -175.29.2.0/24 54600 -175.29.3.0/24 134548 -175.29.4.0/22 134548 -175.29.8.0/22 134548 -175.29.12.0/23 134548 -175.29.14.0/24 134548 -175.29.15.0/24 54600 -175.29.16.0/20 134548 -175.29.32.0/19 134548 -175.29.64.0/22 134548 -175.29.68.0/23 134548 -175.29.70.0/24 134548 -175.29.71.0/24 54600 -175.29.72.0/22 134548 -175.29.76.0/23 134548 -175.29.78.0/24 54600 -175.29.79.0/24 134548 -175.29.80.0/20 134548 -175.29.96.0/20 134548 -175.29.112.0/21 134548 -175.29.120.0/22 136897 -175.29.124.0/22 17469 -175.29.128.0/21 134548 -175.29.136.0/24 134548 -175.29.137.0/24 54600 -175.29.138.0/23 134548 -175.29.140.0/22 17469 -175.29.144.0/22 17469 -175.29.148.0/22 134548 -175.29.152.0/21 134548 -175.29.160.0/19 17469 -175.29.192.0/21 17469 -175.29.200.0/21 134548 -175.29.208.0/20 134548 -175.29.224.0/21 134548 -175.29.232.0/23 134548 -175.29.234.0/24 134548 -175.29.235.0/24 54600 -175.29.236.0/22 134548 -175.29.240.0/20 134548 -175.30.0.0/15 4134 -175.32.0.0/13 4804 -175.41.3.0/24 36408 -175.41.4.0/23 36408 -175.41.9.0/24 36408 -175.41.10.0/23 36408 -175.41.13.0/24 54994 -175.41.16.0/20 45753 -175.41.32.0/21 10001 -175.41.40.0/22 55803 -175.41.44.0/22 135654 -175.41.48.0/20 9505 -175.41.64.0/18 4721 -175.41.128.0/17 16509 -175.42.0.0/15 4837 -175.44.0.0/16 4837 -175.45.0.0/18 9381 -175.45.64.0/24 7469 -175.45.65.0/24 4826 -175.45.66.0/23 4826 -175.45.68.0/22 4826 -175.45.72.0/22 4826 -175.45.76.0/24 45615 -175.45.77.0/24 4826 -175.45.78.0/23 4826 -175.45.80.0/20 4826 -175.45.96.0/21 4826 -175.45.104.0/22 4826 -175.45.108.0/23 4826 -175.45.110.0/24 18037 -175.45.111.0/24 4826 -175.45.112.0/22 4826 -175.45.116.0/24 53813 -175.45.117.0/24 4826 -175.45.118.0/23 4826 -175.45.120.0/21 4826 -175.45.128.0/21 38220 -175.45.136.0/21 63997 -175.45.144.0/22 55923 -175.45.148.0/22 134139 -175.45.152.0/21 55923 -175.45.168.0/21 4686 -175.45.176.0/22 131279 -175.45.180.0/24 134312 -175.45.183.0/24 134312 -175.45.184.0/21 46019 -175.45.224.0/20 4766 -175.46.0.0/15 17968 -175.48.0.0/16 134810 -175.49.0.0/16 37981 -175.50.0.0/15 9394 -175.52.0.0/14 9394 -175.56.0.0/13 9394 -175.64.0.0/11 9394 -175.96.0.0/18 9924 -175.96.64.0/18 24158 -175.96.128.0/17 24158 -175.97.0.0/18 24158 -175.97.64.0/18 9924 -175.97.128.0/20 131628 -175.97.144.0/21 131628 -175.97.152.0/22 131628 -175.97.156.0/23 131628 -175.97.158.0/23 9924 -175.97.160.0/19 9924 -175.97.192.0/18 9924 -175.98.0.0/15 9924 -175.100.0.0/17 38623 -175.100.128.0/24 18207 -175.100.130.0/24 18207 -175.100.133.0/24 18207 -175.100.138.0/23 18207 -175.100.144.0/21 18207 -175.100.152.0/24 18207 -175.100.154.0/24 18207 -175.100.156.0/24 18207 -175.100.160.0/22 131283 -175.100.164.0/22 55350 -175.100.176.0/20 55352 -175.100.192.0/21 9304 -175.100.200.0/24 9304 -175.100.201.0/24 55355 -175.100.202.0/23 55355 -175.100.204.0/23 55355 -175.100.206.0/24 9304 -175.100.207.0/24 55355 -175.100.208.0/20 4723 -175.100.224.0/19 4723 -175.101.0.0/19 17754 -175.101.32.0/21 17754 -175.101.48.0/22 17754 -175.101.53.0/24 17754 -175.101.55.0/24 17754 -175.101.56.0/23 17754 -175.101.59.0/24 17754 -175.101.60.0/22 17754 -175.101.64.0/19 17754 -175.101.96.0/20 17754 -175.101.112.0/21 17754 -175.101.127.0/24 17754 -175.101.128.0/22 17754 -175.101.132.0/24 17754 -175.101.137.0/24 17754 -175.101.138.0/23 17754 -175.101.140.0/23 17754 -175.101.143.0/24 17754 -175.101.144.0/21 17754 -175.101.156.0/22 17754 -175.101.160.0/22 17754 -175.101.240.0/24 17754 -175.101.251.0/24 17754 -175.101.252.0/24 17754 -175.102.0.0/20 4812 -175.102.16.0/22 4812 -175.102.20.0/22 17621 -175.102.24.0/21 17621 -175.102.32.0/22 45086 -175.102.54.0/23 23724 -175.102.128.0/21 4812 -175.102.178.0/23 4808 -175.102.180.0/22 4808 -175.102.184.0/24 4808 -175.102.196.0/24 23724 -175.103.0.0/22 37908 -175.103.8.0/22 18092 -175.103.12.0/22 4721 -175.103.16.0/23 10113 -175.103.18.0/24 10113 -175.103.19.0/24 45780 -175.103.20.0/23 45780 -175.103.22.0/24 10113 -175.103.23.0/24 45780 -175.103.24.0/23 45780 -175.103.26.0/23 10113 -175.103.28.0/22 45780 -175.103.35.0/24 38320 -175.103.36.0/22 38320 -175.103.40.0/22 38320 -175.103.46.0/23 38320 -175.103.48.0/23 55669 -175.103.55.0/24 55669 -175.103.56.0/22 55669 -175.103.60.0/24 55669 -175.103.128.0/23 10013 -175.103.144.0/21 10013 -175.103.164.0/23 10013 -175.103.176.0/23 10013 -175.103.180.0/22 10013 -175.103.184.0/21 10013 -175.103.216.0/21 10013 -175.103.224.0/19 7522 -175.104.0.0/15 10013 -175.106.0.0/22 55306 -175.106.4.0/22 38826 -175.106.8.0/21 46023 -175.106.16.0/22 131767 -175.106.20.0/22 46024 -175.106.24.0/22 45872 -175.106.28.0/22 10115 -175.106.32.0/19 55424 -175.106.112.0/20 4766 -175.106.128.0/17 4837 -175.107.0.0/19 23888 -175.107.32.0/24 23888 -175.107.36.0/22 23888 -175.107.40.0/21 23888 -175.107.48.0/21 23888 -175.107.56.0/24 23888 -175.107.60.0/22 23888 -175.107.64.0/18 9765 -175.107.192.0/19 9541 -175.107.224.0/21 9541 -175.107.232.0/22 9541 -175.107.236.0/23 9541 -175.107.238.0/24 9541 -175.107.240.0/22 9541 -175.107.246.0/23 9541 -175.107.248.0/21 9541 -175.108.0.0/15 2516 -175.110.0.0/18 38547 -175.110.64.0/19 38547 -175.110.96.0/21 38547 -175.110.104.0/22 38547 -175.110.111.0/24 38547 -175.111.0.0/22 24435 -175.111.4.0/23 24435 -175.111.6.0/24 24435 -175.111.7.0/24 198247 -175.111.8.0/22 198381 -175.111.12.0/23 198381 -175.111.14.0/23 198247 -175.111.16.0/20 38676 -175.111.32.0/19 18049 -175.111.64.0/20 17941 -175.111.80.0/21 17941 -175.111.88.0/22 45705 -175.111.92.0/22 18094 -175.111.100.0/22 56304 -175.111.105.0/24 132526 -175.111.106.0/23 132526 -175.111.108.0/22 136119 -175.111.112.0/21 46026 -175.111.120.0/21 23788 -175.111.128.0/22 134928 -175.111.132.0/23 133275 -175.111.134.0/24 133275 -175.111.176.0/23 59256 -175.111.179.0/24 59256 -175.111.180.0/24 133647 -175.111.181.0/24 136637 -175.111.182.0/23 133647 -175.111.192.0/19 10126 -175.111.224.0/20 9505 -175.111.240.0/20 10126 -175.112.0.0/16 9318 -175.113.0.0/18 9318 -175.113.64.0/20 9318 -175.113.80.0/21 9318 -175.113.88.0/22 9318 -175.113.92.0/24 38708 -175.113.93.0/24 9318 -175.113.94.0/23 9318 -175.113.96.0/19 9318 -175.113.128.0/17 9318 -175.114.0.0/18 9318 -175.114.64.0/21 9318 -175.114.72.0/22 9318 -175.114.76.0/23 9318 -175.114.78.0/24 9318 -175.114.79.0/24 17834 -175.114.80.0/20 9318 -175.114.96.0/19 9318 -175.114.128.0/21 9318 -175.114.136.0/23 9849 -175.114.138.0/24 9318 -175.114.139.0/24 9849 -175.114.140.0/22 9318 -175.114.144.0/20 9318 -175.114.160.0/19 9318 -175.114.192.0/18 9318 -175.115.0.0/16 9318 -175.116.0.0/18 9318 -175.116.64.0/19 9318 -175.116.96.0/20 9318 -175.116.112.0/22 9318 -175.116.116.0/24 9318 -175.116.117.0/24 55632 -175.116.118.0/23 9318 -175.116.120.0/21 9318 -175.116.128.0/17 9318 -175.117.0.0/16 9318 -175.118.0.0/23 9318 -175.118.2.0/24 45998 -175.118.3.0/24 9318 -175.118.4.0/22 9318 -175.118.8.0/21 9318 -175.118.16.0/20 9318 -175.118.32.0/19 9318 -175.118.64.0/19 9318 -175.118.96.0/20 9318 -175.118.112.0/23 9318 -175.118.114.0/24 9318 -175.118.115.0/24 9771 -175.118.116.0/22 9318 -175.118.120.0/21 9318 -175.118.128.0/18 9318 -175.118.192.0/19 9318 -175.118.224.0/21 9318 -175.118.232.0/22 9318 -175.118.236.0/23 9318 -175.118.238.0/24 9318 -175.118.239.0/24 38408 -175.118.240.0/20 9318 -175.119.0.0/19 9318 -175.119.32.0/22 9318 -175.119.36.0/23 9318 -175.119.38.0/24 9318 -175.119.39.0/24 55586 -175.119.40.0/24 55586 -175.119.41.0/24 9318 -175.119.42.0/23 9318 -175.119.44.0/22 9318 -175.119.48.0/20 9318 -175.119.64.0/18 9318 -175.119.128.0/17 9318 -175.120.0.0/19 9318 -175.120.32.0/20 9318 -175.120.48.0/21 9318 -175.120.56.0/23 9318 -175.120.58.0/24 9634 -175.120.59.0/24 9318 -175.120.60.0/22 9318 -175.120.64.0/18 9318 -175.120.128.0/18 9318 -175.120.192.0/19 9318 -175.120.224.0/21 9318 -175.120.232.0/24 10065 -175.120.233.0/24 9318 -175.120.234.0/23 9318 -175.120.236.0/22 9318 -175.120.240.0/20 9318 -175.121.0.0/19 9318 -175.121.32.0/21 9318 -175.121.40.0/24 9318 -175.121.41.0/24 45988 -175.121.42.0/23 9318 -175.121.44.0/22 9318 -175.121.48.0/20 9318 -175.121.64.0/18 9318 -175.121.128.0/20 9318 -175.121.144.0/22 9318 -175.121.148.0/24 38398 -175.121.149.0/24 38410 -175.121.150.0/24 9318 -175.121.151.0/24 38409 -175.121.152.0/21 9318 -175.121.160.0/19 9318 -175.121.192.0/18 9318 -175.122.0.0/24 9318 -175.122.1.0/24 9854 -175.122.2.0/24 9854 -175.122.3.0/24 9318 -175.122.4.0/22 9318 -175.122.8.0/21 9318 -175.122.16.0/20 9318 -175.122.32.0/19 9318 -175.122.64.0/20 9318 -175.122.80.0/21 9318 -175.122.88.0/23 9318 -175.122.90.0/23 23575 -175.122.92.0/22 23575 -175.122.96.0/19 23575 -175.122.128.0/17 9318 -175.123.0.0/20 9318 -175.123.16.0/24 9318 -175.123.17.0/24 55615 -175.123.18.0/24 55615 -175.123.19.0/24 9318 -175.123.20.0/22 9318 -175.123.24.0/21 9318 -175.123.32.0/19 9318 -175.123.64.0/18 9318 -175.123.128.0/22 9318 -175.123.132.0/24 10055 -175.123.133.0/24 9318 -175.123.134.0/23 9318 -175.123.136.0/21 9318 -175.123.144.0/20 9318 -175.123.160.0/19 9318 -175.123.192.0/21 9318 -175.123.200.0/23 9318 -175.123.202.0/24 9318 -175.123.203.0/24 17834 -175.123.204.0/22 9318 -175.123.208.0/20 9318 -175.123.224.0/21 9318 -175.123.232.0/22 23575 -175.123.236.0/23 23575 -175.123.238.0/24 23575 -175.123.239.0/24 9318 -175.123.240.0/20 9318 -175.124.0.0/19 9318 -175.124.32.0/21 9318 -175.124.40.0/22 9318 -175.124.44.0/24 9967 -175.124.45.0/24 9318 -175.124.46.0/23 9318 -175.124.48.0/20 9318 -175.124.64.0/18 9318 -175.124.128.0/20 9318 -175.124.144.0/22 9318 -175.124.148.0/24 9318 -175.124.149.0/24 17836 -175.124.150.0/23 9318 -175.124.152.0/24 9776 -175.124.153.0/24 9318 -175.124.154.0/23 9318 -175.124.156.0/24 9318 -175.124.157.0/24 55623 -175.124.158.0/23 9318 -175.124.160.0/19 9318 -175.124.192.0/19 9318 -175.124.224.0/24 9318 -175.124.225.0/24 38688 -175.124.226.0/23 9318 -175.124.228.0/22 9318 -175.124.232.0/21 9318 -175.124.240.0/20 9318 -175.125.0.0/20 9318 -175.125.16.0/22 9318 -175.125.20.0/23 9318 -175.125.22.0/24 9318 -175.125.23.0/24 45370 -175.125.24.0/21 9318 -175.125.32.0/19 9318 -175.125.64.0/20 9318 -175.125.80.0/21 9318 -175.125.88.0/23 9318 -175.125.90.0/24 9318 -175.125.91.0/24 10183 -175.125.92.0/22 9318 -175.125.96.0/19 9318 -175.125.128.0/17 9318 -175.126.0.0/18 9318 -175.126.64.0/19 9318 -175.126.96.0/23 9318 -175.126.98.0/24 9318 -175.126.99.0/24 9523 -175.126.100.0/22 9318 -175.126.104.0/21 9318 -175.126.112.0/20 9318 -175.126.128.0/23 9523 -175.126.130.0/23 9318 -175.126.132.0/22 9318 -175.126.136.0/21 9318 -175.126.144.0/20 9318 -175.126.160.0/20 9318 -175.126.176.0/21 9318 -175.126.184.0/22 9318 -175.126.188.0/24 45370 -175.126.189.0/24 9318 -175.126.190.0/23 9318 -175.126.192.0/18 9318 -175.127.0.0/16 9318 -175.128.0.0/13 2516 -175.136.0.0/13 4788 -175.144.0.0/15 4788 -175.146.0.0/15 4837 -175.148.0.0/14 4837 -175.152.0.0/14 4837 -175.156.0.0/16 4773 -175.157.0.0/16 18001 -175.158.0.0/19 23576 -175.158.32.0/24 4787 -175.158.33.0/24 131119 -175.158.34.0/23 4787 -175.158.36.0/22 135478 -175.158.40.0/21 135478 -175.158.48.0/20 135478 -175.158.64.0/24 33480 -175.158.65.0/24 4755 -175.158.66.0/23 33480 -175.158.68.0/24 133296 -175.158.70.0/24 33480 -175.158.95.0/24 33480 -175.158.100.0/22 26658 -175.158.104.0/24 58644 -175.158.105.0/24 36351 -175.158.106.0/24 58644 -175.158.107.0/24 36351 -175.158.108.0/22 55752 -175.158.112.0/20 10003 -175.158.128.0/18 56089 -175.158.192.0/18 10139 -175.159.0.0/19 4616 -175.159.32.0/19 7651 -175.159.64.0/19 4158 -175.159.96.0/19 3363 -175.159.128.0/20 7650 -175.159.144.0/21 4605 -175.159.152.0/22 4605 -175.159.156.0/23 4605 -175.159.158.0/23 4528 -175.159.160.0/19 4528 -175.159.192.0/21 4616 -175.159.200.0/21 4158 -175.159.208.0/22 4158 -175.159.212.0/22 4528 -175.159.216.0/21 17764 -175.159.224.0/22 3661 -175.159.236.0/22 9381 -175.159.240.0/22 3363 -175.159.244.0/22 7650 -175.159.248.0/22 7651 -175.159.252.0/23 7651 -175.159.254.0/24 3662 -175.160.0.0/12 4837 -175.176.0.0/17 10139 -175.176.128.0/20 38676 -175.176.144.0/22 38201 -175.176.148.0/22 38456 -175.176.160.0/21 45287 -175.176.168.0/21 6660 -175.176.180.0/22 24000 -175.176.184.0/22 133661 -175.176.192.0/22 132721 -175.176.196.0/22 10013 -175.176.200.0/21 9268 -175.176.208.0/21 55328 -175.176.216.0/22 9245 -175.176.220.0/22 55403 -175.176.224.0/20 9229 -175.176.240.0/22 9229 -175.176.244.0/24 38456 -175.176.245.0/24 9229 -175.176.246.0/24 38456 -175.176.247.0/24 9229 -175.176.248.0/21 9229 -175.177.0.0/16 9365 -175.179.0.0/16 2510 -175.180.0.0/16 4780 -175.181.0.0/19 4780 -175.181.32.0/22 4780 -175.181.36.0/24 9919 -175.181.37.0/24 4780 -175.181.38.0/23 4780 -175.181.40.0/21 4780 -175.181.48.0/20 4780 -175.181.64.0/18 4780 -175.181.128.0/17 4780 -175.182.0.0/18 4780 -175.182.64.0/24 9919 -175.182.65.0/24 4780 -175.182.66.0/23 4780 -175.182.68.0/22 4780 -175.182.72.0/22 4780 -175.182.76.0/24 4780 -175.182.77.0/24 9919 -175.182.78.0/23 4780 -175.182.80.0/20 4780 -175.182.96.0/19 4780 -175.182.128.0/18 4780 -175.182.192.0/19 4780 -175.182.224.0/20 4780 -175.182.240.0/21 4780 -175.182.248.0/22 4780 -175.182.252.0/24 4780 -175.182.253.0/24 9919 -175.182.254.0/23 4780 -175.183.0.0/19 18049 -175.183.32.0/24 4780 -175.183.33.0/24 18049 -175.183.34.0/23 18049 -175.183.36.0/22 18049 -175.183.40.0/21 18049 -175.183.48.0/20 18049 -175.183.64.0/19 18049 -175.183.96.0/19 4780 -175.183.136.0/23 4780 -175.183.138.0/24 9919 -175.183.254.0/23 4780 -175.184.0.0/17 2510 -175.184.128.0/18 4837 -175.184.192.0/21 18000 -175.184.200.0/21 27435 -175.184.208.0/21 27435 -175.184.216.0/21 18000 -175.184.224.0/21 24521 -175.184.232.0/22 9341 -175.184.240.0/21 131143 -175.184.248.0/22 46028 -175.184.252.0/22 55428 -175.185.0.0/16 4538 -175.186.0.0/15 4538 -175.188.0.0/18 4847 -175.188.160.0/19 4847 -175.188.192.0/19 17964 -175.189.0.0/16 7497 -175.190.0.0/17 4847 -175.190.128.0/17 9395 -175.191.64.0/18 9395 -175.191.128.0/18 7497 -175.192.0.0/17 4766 -175.192.128.0/19 4766 -175.192.160.0/20 4766 -175.192.176.0/22 4766 -175.192.180.0/24 4766 -175.192.181.0/24 4790 -175.192.182.0/24 4790 -175.192.183.0/24 4766 -175.192.184.0/21 4766 -175.192.192.0/18 4766 -175.193.0.0/17 4766 -175.193.128.0/18 4766 -175.193.192.0/19 4766 -175.193.224.0/20 4766 -175.193.240.0/24 55585 -175.193.241.0/24 4766 -175.193.242.0/23 4766 -175.193.244.0/22 4766 -175.193.248.0/21 4766 -175.194.0.0/17 4766 -175.194.128.0/19 4766 -175.194.160.0/21 4766 -175.194.168.0/24 23554 -175.194.169.0/24 4766 -175.194.170.0/23 4766 -175.194.172.0/22 4766 -175.194.176.0/20 4766 -175.194.192.0/18 4766 -175.195.0.0/17 4766 -175.195.128.0/21 4766 -175.195.136.0/23 4766 -175.195.138.0/24 9684 -175.195.139.0/24 4766 -175.195.140.0/22 4766 -175.195.144.0/20 4766 -175.195.160.0/19 4766 -175.195.192.0/18 4766 -175.196.0.0/24 4766 -175.196.1.0/24 9696 -175.196.2.0/23 4766 -175.196.4.0/22 4766 -175.196.8.0/21 4766 -175.196.16.0/20 4766 -175.196.32.0/19 4766 -175.196.64.0/19 4766 -175.196.96.0/20 4766 -175.196.112.0/21 4766 -175.196.120.0/22 4766 -175.196.124.0/23 4766 -175.196.126.0/24 4766 -175.196.127.0/24 9977 -175.196.128.0/18 4766 -175.196.192.0/20 4766 -175.196.208.0/22 46009 -175.196.212.0/22 4766 -175.196.216.0/21 4766 -175.196.224.0/19 4766 -175.197.0.0/19 4766 -175.197.32.0/20 4766 -175.197.48.0/23 4766 -175.197.50.0/24 55592 -175.197.51.0/24 4766 -175.197.52.0/22 4766 -175.197.56.0/21 4766 -175.197.64.0/19 4766 -175.197.96.0/22 4766 -175.197.100.0/23 4766 -175.197.102.0/23 17837 -175.197.104.0/23 4766 -175.197.106.0/24 4766 -175.197.107.0/24 38676 -175.197.108.0/22 4766 -175.197.112.0/20 4766 -175.197.128.0/18 4766 -175.197.192.0/22 4766 -175.197.196.0/23 4766 -175.197.198.0/23 45399 -175.197.200.0/21 4766 -175.197.208.0/20 4766 -175.197.224.0/19 4766 -175.198.0.0/18 4766 -175.198.64.0/24 4766 -175.198.65.0/24 55592 -175.198.66.0/23 4766 -175.198.68.0/22 4766 -175.198.72.0/21 4766 -175.198.80.0/20 4766 -175.198.96.0/19 4766 -175.198.128.0/17 4766 -175.199.0.0/16 4766 -175.200.0.0/21 4766 -175.200.8.0/23 4766 -175.200.10.0/24 4766 -175.200.11.0/24 4793 -175.200.12.0/24 4793 -175.200.13.0/24 4766 -175.200.14.0/23 4766 -175.200.16.0/20 4766 -175.200.32.0/19 4766 -175.200.64.0/18 4766 -175.200.128.0/17 4766 -175.201.0.0/16 4766 -175.202.0.0/15 4766 -175.204.0.0/17 4766 -175.204.128.0/21 4766 -175.204.136.0/22 4766 -175.204.140.0/23 4766 -175.204.142.0/24 4766 -175.204.143.0/24 55625 -175.204.144.0/23 55625 -175.204.146.0/23 4766 -175.204.148.0/22 4766 -175.204.152.0/21 4766 -175.204.160.0/19 4766 -175.204.192.0/19 4766 -175.204.224.0/20 4766 -175.204.240.0/22 38105 -175.204.244.0/24 38105 -175.204.245.0/24 4766 -175.204.246.0/23 4766 -175.204.248.0/21 4766 -175.205.0.0/16 4766 -175.206.0.0/17 4766 -175.206.128.0/19 4766 -175.206.160.0/21 4766 -175.206.168.0/23 4766 -175.206.170.0/24 55615 -175.206.171.0/24 4766 -175.206.172.0/24 55615 -175.206.173.0/24 4766 -175.206.174.0/23 4766 -175.206.176.0/20 4766 -175.206.192.0/18 4766 -175.207.0.0/22 4766 -175.207.4.0/23 4766 -175.207.6.0/24 55593 -175.207.7.0/24 4766 -175.207.8.0/21 4766 -175.207.16.0/20 4766 -175.207.32.0/19 4766 -175.207.64.0/22 4766 -175.207.68.0/23 4766 -175.207.70.0/24 4766 -175.207.71.0/24 45376 -175.207.72.0/22 45376 -175.207.76.0/23 45376 -175.207.78.0/24 45376 -175.207.79.0/24 4766 -175.207.80.0/20 4766 -175.207.96.0/19 4766 -175.207.128.0/17 4766 -175.208.0.0/15 4766 -175.210.0.0/16 4766 -175.211.0.0/21 4766 -175.211.8.0/23 4766 -175.211.10.0/24 4668 -175.211.11.0/24 4766 -175.211.12.0/22 4766 -175.211.16.0/20 4766 -175.211.32.0/20 4766 -175.211.48.0/23 4766 -175.211.50.0/24 4766 -175.211.51.0/24 45380 -175.211.52.0/22 4766 -175.211.56.0/21 4766 -175.211.64.0/18 4766 -175.211.128.0/19 4766 -175.211.160.0/20 4766 -175.211.176.0/21 4766 -175.211.184.0/23 4766 -175.211.186.0/24 4766 -175.211.187.0/24 38396 -175.211.188.0/22 4766 -175.211.192.0/18 4766 -175.212.0.0/16 4766 -175.213.0.0/17 4766 -175.213.128.0/18 4766 -175.213.192.0/20 4766 -175.213.208.0/21 4766 -175.213.216.0/24 4766 -175.213.217.0/24 38105 -175.213.218.0/23 4766 -175.213.220.0/22 4766 -175.213.224.0/19 4766 -175.214.0.0/19 4766 -175.214.32.0/20 4766 -175.214.48.0/23 4766 -175.214.50.0/24 4766 -175.214.51.0/24 38706 -175.214.52.0/22 4766 -175.214.56.0/21 4766 -175.214.64.0/18 4766 -175.214.128.0/19 4766 -175.214.160.0/20 4766 -175.214.176.0/22 4766 -175.214.180.0/22 9708 -175.214.184.0/21 4766 -175.214.192.0/18 4766 -175.215.0.0/16 4766 -175.216.0.0/13 4766 -175.224.0.0/11 4766 -176.0.0.0/13 12638 -176.8.0.0/16 15895 -176.9.0.0/16 24940 -176.10.0.0/19 34695 -176.10.32.0/21 48685 -176.10.40.0/21 56800 -176.10.48.0/21 196968 -176.10.56.0/21 197825 -176.10.64.0/20 56571 -176.10.80.0/21 9009 -176.10.88.0/21 56799 -176.10.96.0/19 51395 -176.10.128.0/17 8473 -176.11.0.0/16 12929 -176.12.0.0/21 29580 -176.12.8.0/22 29580 -176.12.12.0/23 29580 -176.12.14.0/24 29580 -176.12.15.0/24 8717 -176.12.16.0/20 29580 -176.12.32.0/23 29580 -176.12.34.0/23 8717 -176.12.36.0/22 8717 -176.12.40.0/21 8717 -176.12.48.0/20 8717 -176.12.64.0/20 39308 -176.12.80.0/21 197829 -176.12.88.0/21 197859 -176.12.96.0/21 8636 -176.12.104.0/22 50300 -176.12.108.0/23 50300 -176.12.110.0/24 50300 -176.12.112.0/20 57279 -176.12.128.0/17 1680 -176.13.0.0/16 1680 -176.14.0.0/15 8402 -176.16.0.0/17 35819 -176.16.128.0/19 35819 -176.16.160.0/19 34400 -176.16.192.0/18 35819 -176.17.0.0/17 35819 -176.17.128.0/19 34400 -176.17.160.0/19 35819 -176.17.192.0/18 35819 -176.18.0.0/19 35819 -176.18.32.0/19 34400 -176.18.64.0/18 35819 -176.18.128.0/17 35819 -176.19.0.0/16 35819 -176.20.0.0/14 3292 -176.24.0.0/14 5607 -176.28.0.0/22 20773 -176.28.4.0/24 20773 -176.28.5.0/24 35329 -176.28.6.0/24 8972 -176.28.8.0/21 8972 -176.28.16.0/21 8972 -176.28.24.0/21 61157 -176.28.32.0/21 35329 -176.28.40.0/21 8972 -176.28.48.0/21 8972 -176.28.60.0/23 61157 -176.28.62.0/24 8972 -176.28.63.0/24 61157 -176.28.64.0/21 47684 -176.28.72.0/21 197893 -176.28.80.0/21 197830 -176.28.88.0/21 29680 -176.28.96.0/19 16371 -176.28.128.0/17 48832 -176.30.64.0/18 20978 -176.30.128.0/17 20978 -176.31.0.0/16 16276 -176.32.0.0/21 49332 -176.32.8.0/21 24945 -176.32.16.0/20 198471 -176.32.32.0/22 51659 -176.32.36.0/23 51659 -176.32.38.0/24 51659 -176.32.39.0/24 57724 -176.32.40.0/21 56919 -176.32.48.0/23 43160 -176.32.50.0/24 199738 -176.32.51.0/24 56822 -176.32.52.0/23 43160 -176.32.54.0/24 199738 -176.32.55.0/24 56822 -176.32.56.0/21 31686 -176.32.64.0/19 16509 -176.32.96.0/20 16509 -176.32.112.0/21 16509 -176.32.120.0/22 16509 -176.32.126.0/23 16509 -176.32.128.0/19 56791 -176.32.160.0/20 28978 -176.32.176.0/20 24739 -176.32.192.0/21 197834 -176.32.200.0/21 197862 -176.32.208.0/20 25019 -176.32.224.0/21 20738 -176.32.232.0/21 19229 -176.32.240.0/21 8905 -176.32.248.0/22 197974 -176.32.252.0/23 197974 -176.32.254.0/24 197974 -176.33.0.0/16 34984 -176.34.0.0/16 16509 -176.35.0.0/16 5413 -176.36.0.0/14 39608 -176.40.0.0/16 34984 -176.41.0.0/17 34984 -176.41.128.0/22 34984 -176.41.132.0/24 34984 -176.41.133.0/24 61420 -176.41.134.0/23 34984 -176.41.136.0/21 34984 -176.41.144.0/20 34984 -176.41.160.0/19 34984 -176.41.192.0/18 34984 -176.42.0.0/16 34984 -176.43.0.0/17 34984 -176.43.128.0/24 51540 -176.43.129.0/24 34984 -176.43.130.0/24 51540 -176.43.131.0/24 34984 -176.43.132.0/22 34984 -176.43.136.0/21 34984 -176.43.144.0/20 34984 -176.43.160.0/19 34984 -176.43.192.0/18 34984 -176.44.0.0/15 25019 -176.46.0.0/17 3249 -176.46.128.0/19 12679 -176.46.160.0/19 25180 -176.46.192.0/18 12620 -176.47.0.0/17 39891 -176.47.192.0/18 25019 -176.48.0.0/14 12389 -176.52.0.0/22 29194 -176.52.4.0/23 31286 -176.52.6.0/23 29194 -176.52.8.0/21 29194 -176.52.16.0/20 29194 -176.52.32.0/19 29194 -176.52.64.0/18 31286 -176.52.128.0/19 44647 -176.52.160.0/22 32806 -176.52.164.0/23 32806 -176.52.166.0/23 1 -176.52.168.0/21 32806 -176.52.176.0/22 9121 -176.52.180.0/22 201299 -176.52.184.0/24 197573 -176.52.185.0/24 47420 -176.52.192.0/21 28876 -176.52.200.0/21 16205 -176.52.208.0/21 8426 -176.52.216.0/21 197853 -176.52.224.0/20 49112 -176.52.240.0/21 15817 -176.52.248.0/21 12956 -176.53.0.0/20 42926 -176.53.16.0/20 197328 -176.53.32.0/21 42926 -176.53.40.0/24 42926 -176.53.42.0/23 42926 -176.53.44.0/22 42926 -176.53.48.0/22 42926 -176.53.53.0/24 42926 -176.53.55.0/24 42926 -176.53.56.0/24 42926 -176.53.58.0/23 42926 -176.53.60.0/24 42926 -176.53.62.0/23 42926 -176.53.64.0/21 42926 -176.53.72.0/23 42926 -176.53.74.0/24 205196 -176.53.75.0/24 42926 -176.53.79.0/24 42926 -176.53.80.0/20 42926 -176.53.99.0/24 42926 -176.53.112.0/20 197328 -176.53.128.0/22 48504 -176.53.132.0/22 49392 -176.53.136.0/23 3320 -176.53.140.0/22 49505 -176.53.144.0/23 35791 -176.53.148.0/22 42322 -176.53.152.0/22 209775 -176.53.160.0/22 9123 -176.53.164.0/22 34665 -176.53.172.0/22 34665 -176.53.176.0/22 35913 -176.53.180.0/22 203714 -176.53.184.0/23 28094 -176.53.186.0/24 34665 -176.53.187.0/24 12722 -176.53.188.0/22 209834 -176.53.192.0/24 34232 -176.53.193.0/24 198580 -176.53.194.0/23 34232 -176.53.196.0/22 34232 -176.53.200.0/21 34232 -176.53.208.0/20 34232 -176.53.224.0/19 34232 -176.54.0.0/15 15897 -176.56.0.0/21 28745 -176.56.8.0/22 28745 -176.56.12.0/23 28745 -176.56.14.0/23 20485 -176.56.18.0/23 28745 -176.56.22.0/23 28745 -176.56.25.0/24 28745 -176.56.26.0/23 28745 -176.56.28.0/22 28745 -176.56.40.0/22 29632 -176.56.44.0/22 58075 -176.56.48.0/21 44300 -176.56.56.0/21 21396 -176.56.64.0/19 48624 -176.56.96.0/20 29119 -176.56.112.0/22 29119 -176.56.116.0/24 50563 -176.56.117.0/24 29119 -176.56.118.0/24 29119 -176.56.119.0/24 209835 -176.56.120.0/21 29119 -176.56.128.0/21 12637 -176.56.144.0/24 48555 -176.56.148.0/24 48555 -176.56.150.0/24 48555 -176.56.156.0/22 43415 -176.56.160.0/24 41095 -176.56.168.0/24 35432 -176.56.170.0/23 41095 -176.56.173.0/24 41095 -176.56.175.0/24 41095 -176.56.176.0/20 41095 -176.56.192.0/19 20860 -176.56.224.0/20 198203 -176.56.240.0/20 51815 -176.57.0.0/19 42912 -176.57.32.0/21 16211 -176.57.40.0/24 197870 -176.57.42.0/23 197870 -176.57.44.0/23 197870 -176.57.47.0/24 197870 -176.57.48.0/20 24896 -176.57.64.0/22 47959 -176.57.68.0/22 204601 -176.57.72.0/21 199634 -176.57.80.0/21 35334 -176.57.88.0/22 197308 -176.57.92.0/22 3212 -176.57.96.0/24 49000 -176.57.97.0/24 44293 -176.57.98.0/23 42947 -176.57.100.0/22 3339 -176.57.104.0/21 41368 -176.57.112.0/20 30848 -176.57.128.0/19 56876 -176.57.160.0/20 56876 -176.57.176.0/23 56876 -176.57.178.0/24 40676 -176.57.179.0/24 56876 -176.57.180.0/22 56876 -176.57.184.0/21 56876 -176.57.192.0/21 50171 -176.57.208.0/20 9123 -176.57.224.0/20 48685 -176.57.240.0/21 197883 -176.57.249.0/24 39097 -176.57.250.0/23 39097 -176.57.252.0/22 39097 -176.58.0.0/21 49454 -176.58.8.0/21 57656 -176.58.16.0/24 198230 -176.58.17.0/24 203594 -176.58.18.0/23 198230 -176.58.20.0/24 198230 -176.58.21.0/24 60658 -176.58.22.0/24 198230 -176.58.23.0/24 199252 -176.58.24.0/21 34756 -176.58.32.0/21 42632 -176.58.40.0/24 42632 -176.58.45.0/24 199251 -176.58.46.0/24 199251 -176.58.48.0/23 199251 -176.58.50.0/24 199251 -176.58.52.0/22 199251 -176.58.57.0/24 199251 -176.58.59.0/24 199251 -176.58.60.0/23 48347 -176.58.62.0/23 39134 -176.58.64.0/20 56995 -176.58.80.0/21 56911 -176.58.88.0/23 36236 -176.58.90.0/24 36236 -176.58.92.0/22 36236 -176.58.96.0/19 63949 -176.58.128.0/17 25472 -176.59.0.0/19 15378 -176.59.32.0/19 12958 -176.59.64.0/19 42437 -176.59.96.0/19 48092 -176.59.128.0/19 41330 -176.59.192.0/19 48190 -176.60.0.0/16 25106 -176.61.0.0/17 6830 -176.61.129.0/24 49981 -176.61.130.0/24 12859 -176.61.136.0/21 57858 -176.61.144.0/21 33876 -176.61.152.0/21 62161 -176.61.160.0/19 25447 -176.61.192.0/18 8257 -176.62.0.0/20 34362 -176.62.16.0/21 34362 -176.62.24.0/22 34362 -176.62.28.0/23 34362 -176.62.30.0/24 34362 -176.62.31.0/24 60762 -176.62.36.0/22 34362 -176.62.40.0/21 34362 -176.62.48.0/22 35131 -176.62.52.0/24 35131 -176.62.53.0/24 197835 -176.62.54.0/23 35131 -176.62.56.0/22 35131 -176.62.60.0/23 35131 -176.62.62.0/23 203540 -176.62.64.0/21 47165 -176.62.72.0/22 47165 -176.62.76.0/24 15870 -176.62.77.0/24 47165 -176.62.78.0/23 47165 -176.62.80.0/24 15870 -176.62.81.0/24 47165 -176.62.82.0/23 47165 -176.62.84.0/22 47165 -176.62.88.0/21 47165 -176.62.96.0/19 47165 -176.62.128.0/21 15533 -176.62.136.0/21 201205 -176.62.144.0/21 57067 -176.62.160.0/20 34762 -176.62.176.0/20 42291 -176.62.192.0/21 8315 -176.62.200.0/21 57030 -176.62.208.0/21 41484 -176.62.216.0/21 44999 -176.62.224.0/20 49985 -176.62.240.0/20 43530 -176.63.0.0/16 6830 -176.64.0.0/16 1257 -176.65.0.0/21 12975 -176.65.8.0/22 12975 -176.65.12.0/22 15975 -176.65.16.0/20 51407 -176.65.32.0/20 39701 -176.65.48.0/21 56883 -176.65.56.0/21 39701 -176.65.64.0/21 24958 -176.65.72.0/21 198095 -176.65.80.0/20 196983 -176.65.96.0/19 13055 -176.65.129.0/24 197071 -176.65.130.0/24 8649 -176.65.132.0/22 56325 -176.65.140.0/24 8649 -176.65.160.0/19 58224 -176.65.224.0/20 58224 -176.65.240.0/23 43754 -176.65.242.0/24 43754 -176.65.243.0/24 49666 -176.65.244.0/22 58224 -176.65.248.0/22 58224 -176.65.252.0/23 43754 -176.65.254.0/24 43754 -176.65.255.0/24 203000 -176.66.0.0/16 8447 -176.67.0.0/19 25133 -176.67.32.0/20 2588 -176.67.48.0/21 42676 -176.67.56.0/21 51407 -176.67.64.0/20 48944 -176.67.80.0/23 12989 -176.67.84.0/23 12989 -176.67.86.0/24 12989 -176.67.88.0/21 197981 -176.67.96.0/19 51407 -176.67.128.0/19 44976 -176.67.160.0/20 13213 -176.67.176.0/21 10474 -176.67.184.0/21 42525 -176.67.192.0/19 44252 -176.67.224.0/21 56973 -176.67.232.0/23 8262 -176.67.236.0/22 205343 -176.67.240.0/21 198415 -176.68.0.0/14 1257 -176.72.0.0/16 1759 -176.73.0.0/16 20771 -176.74.0.0/21 20878 -176.74.8.0/21 21367 -176.74.16.0/21 41000 -176.74.24.0/21 38719 -176.74.32.0/21 48518 -176.74.40.0/21 197689 -176.74.48.0/21 47862 -176.74.56.0/21 25291 -176.74.64.0/18 34797 -176.74.128.0/19 35613 -176.74.160.0/19 13768 -176.74.192.0/21 51747 -176.74.200.0/21 35768 -176.74.208.0/21 41164 -176.74.216.0/21 51248 -176.74.224.0/21 28878 -176.74.232.0/24 49685 -176.74.233.0/24 28878 -176.74.234.0/23 28878 -176.74.236.0/22 28878 -176.74.240.0/20 28878 -176.75.0.0/16 2119 -176.76.0.0/16 3212 -176.77.0.0/17 12714 -176.77.128.0/17 8448 -176.78.0.0/15 3243 -176.80.0.0/16 3352 -176.82.0.0/15 3352 -176.84.0.0/14 3352 -176.88.4.0/22 34984 -176.88.16.0/23 34984 -176.88.24.0/22 34984 -176.88.36.0/22 34984 -176.88.40.0/21 34984 -176.88.56.0/24 16135 -176.88.68.0/22 34984 -176.88.72.0/21 34984 -176.88.80.0/20 34984 -176.88.96.0/20 34984 -176.88.120.0/21 34984 -176.88.128.0/20 34984 -176.88.144.0/21 34984 -176.88.192.0/19 34984 -176.88.224.0/21 34984 -176.88.232.0/24 34984 -176.88.237.0/24 34984 -176.88.238.0/23 34984 -176.88.240.0/21 34984 -176.88.248.0/22 34984 -176.88.252.0/23 34984 -176.88.254.0/24 34984 -176.90.0.0/16 16135 -176.92.0.0/18 3329 -176.92.64.0/19 6866 -176.92.96.0/19 3329 -176.92.128.0/18 3329 -176.92.192.0/21 3329 -176.93.0.0/16 16086 -176.94.0.0/15 3209 -176.96.0.0/19 48515 -176.96.32.0/20 197956 -176.96.48.0/20 203464 -176.96.64.0/21 50029 -176.96.72.0/21 44487 -176.96.80.0/22 48978 -176.96.88.0/21 48976 -176.96.96.0/19 8649 -176.96.132.0/22 35352 -176.96.136.0/22 44066 -176.96.140.0/22 34661 -176.96.144.0/21 57121 -176.96.152.0/21 198950 -176.96.160.0/20 57121 -176.96.176.0/21 203785 -176.96.192.0/19 12479 -176.96.225.0/24 44341 -176.96.228.0/22 61004 -176.96.232.0/23 49181 -176.96.234.0/24 49860 -176.96.235.0/24 203844 -176.96.236.0/22 49181 -176.96.240.0/24 43972 -176.96.241.0/24 209837 -176.96.244.0/22 61004 -176.96.250.0/23 57893 -176.96.252.0/23 57893 -176.96.254.0/24 208373 -176.96.255.0/24 49181 -176.97.0.0/21 43658 -176.97.8.0/21 57288 -176.97.16.0/21 197399 -176.97.24.0/21 198050 -176.97.32.0/21 57334 -176.97.40.0/21 198056 -176.97.48.0/21 201637 -176.97.56.0/21 47705 -176.97.80.0/20 198073 -176.97.96.0/20 57320 -176.97.112.0/20 6698 -176.97.128.0/21 29124 -176.97.136.0/21 198081 -176.97.144.0/21 48266 -176.97.152.0/22 43668 -176.97.156.0/23 59655 -176.97.158.0/24 1921 -176.97.159.0/24 199199 -176.97.160.0/19 57333 -176.97.224.0/22 3339 -176.97.228.0/22 198144 -176.97.232.0/21 206451 -176.97.240.0/21 60529 -176.97.248.0/21 201725 -176.98.0.0/19 49889 -176.98.32.0/22 29684 -176.98.36.0/23 210270 -176.98.40.0/22 42926 -176.98.44.0/22 42009 -176.98.48.0/21 57383 -176.98.56.0/21 203785 -176.98.64.0/19 41096 -176.98.96.0/20 57399 -176.98.112.0/21 198151 -176.98.120.0/21 60448 -176.98.128.0/19 57396 -176.98.160.0/21 57395 -176.98.168.0/21 56361 -176.98.176.0/20 196936 -176.98.192.0/24 51997 -176.98.208.0/22 206837 -176.98.212.0/22 197077 -176.98.216.0/22 206866 -176.98.220.0/24 202766 -176.98.221.0/24 210097 -176.98.222.0/24 204463 -176.98.223.0/24 202766 -176.98.240.0/22 41798 -176.98.244.0/22 205300 -176.98.248.0/21 62099 -176.99.0.0/22 197695 -176.99.4.0/22 49352 -176.99.8.0/23 49352 -176.99.10.0/24 43146 -176.99.11.0/24 197695 -176.99.12.0/22 197695 -176.99.16.0/20 25019 -176.99.32.0/20 33874 -176.99.48.0/21 50121 -176.99.56.0/21 59476 -176.99.64.0/19 44030 -176.99.96.0/19 48330 -176.99.128.0/17 35598 -176.100.0.0/19 57422 -176.100.32.0/21 57433 -176.100.40.0/21 57439 -176.100.48.0/21 21299 -176.100.56.0/21 57460 -176.100.64.0/21 44941 -176.100.72.0/22 49718 -176.100.76.0/22 44941 -176.100.80.0/20 44941 -176.100.96.0/20 44941 -176.100.112.0/22 44941 -176.100.116.0/22 49718 -176.100.120.0/21 49718 -176.100.128.0/19 198182 -176.100.160.0/19 30779 -176.100.192.0/21 198187 -176.100.200.0/21 197752 -176.100.208.0/21 200738 -176.100.216.0/21 57489 -176.100.224.0/20 200738 -176.100.240.0/20 35526 -176.101.0.0/20 43936 -176.101.16.0/20 198193 -176.101.32.0/22 29577 -176.101.40.0/23 29577 -176.101.44.0/23 29577 -176.101.48.0/21 29577 -176.101.56.0/21 51011 -176.101.64.0/21 57471 -176.101.72.0/21 42947 -176.101.80.0/21 39507 -176.101.88.0/21 9185 -176.101.96.0/19 5598 -176.101.128.0/20 39507 -176.101.144.0/20 57496 -176.101.160.0/21 57476 -176.101.172.0/22 396319 -176.101.176.0/21 57566 -176.101.184.0/21 43822 -176.101.192.0/19 49588 -176.101.224.0/19 57534 -176.102.0.0/19 196767 -176.102.32.0/21 3326 -176.102.40.0/21 21219 -176.102.48.0/20 3326 -176.102.64.0/22 49101 -176.102.68.0/22 41929 -176.102.72.0/21 198248 -176.102.80.0/20 198235 -176.102.96.0/20 57547 -176.102.112.0/21 57547 -176.102.120.0/21 48976 -176.102.128.0/19 57564 -176.102.160.0/21 56463 -176.102.168.0/21 24940 -176.102.176.0/20 198271 -176.102.192.0/20 39822 -176.102.208.0/21 39822 -176.102.216.0/22 39822 -176.102.220.0/23 39822 -176.102.222.0/23 205127 -176.102.224.0/19 57563 -176.103.0.0/19 56812 -176.103.32.0/21 57613 -176.103.40.0/21 197447 -176.103.48.0/21 48031 -176.103.56.0/22 48031 -176.103.60.0/23 48031 -176.103.62.0/23 59729 -176.103.64.0/21 42510 -176.103.72.0/21 198004 -176.103.80.0/20 196768 -176.103.96.0/20 47156 -176.103.112.0/21 41784 -176.103.120.0/22 199429 -176.103.128.0/19 199274 -176.103.160.0/21 198040 -176.103.168.0/21 198389 -176.103.176.0/21 24589 -176.103.184.0/24 24589 -176.103.185.0/24 207066 -176.103.186.0/24 198343 -176.103.187.0/24 15899 -176.103.188.0/22 24589 -176.103.192.0/21 24589 -176.103.200.0/21 31000 -176.103.208.0/21 44884 -176.103.216.0/21 198360 -176.103.224.0/20 196957 -176.103.240.0/21 48976 -176.103.248.0/21 198363 -176.104.0.0/18 41435 -176.104.64.0/19 12479 -176.104.96.0/21 47245 -176.104.104.0/21 198371 -176.104.112.0/21 42374 -176.104.120.0/21 197831 -176.104.128.0/21 15774 -176.104.136.0/21 20485 -176.104.144.0/20 15774 -176.104.160.0/21 15774 -176.104.168.0/21 57659 -176.104.176.0/21 198377 -176.104.184.0/21 48957 -176.104.192.0/19 56420 -176.104.240.0/21 48683 -176.104.248.0/21 21376 -176.105.0.0/17 48683 -176.105.128.0/20 42830 -176.105.144.0/22 47234 -176.105.148.0/22 210275 -176.105.152.0/22 207046 -176.105.156.0/22 210280 -176.105.160.0/22 57670 -176.105.164.0/24 57670 -176.105.165.0/24 35297 -176.105.166.0/24 31388 -176.105.167.0/24 57670 -176.105.168.0/21 3326 -176.105.176.0/21 3326 -176.105.184.0/21 57670 -176.105.192.0/19 24812 -176.105.224.0/22 12679 -176.105.228.0/22 18013 -176.105.232.0/22 210045 -176.105.236.0/22 210066 -176.105.240.0/22 201395 -176.105.244.0/22 210062 -176.105.248.0/22 9009 -176.105.252.0/24 49367 -176.105.254.0/24 49367 -176.105.255.0/24 62068 -176.106.0.0/21 34265 -176.106.8.0/21 52043 -176.106.16.0/20 52043 -176.106.32.0/21 198397 -176.106.40.0/21 57704 -176.106.48.0/20 24589 -176.106.64.0/19 42104 -176.106.96.0/22 15899 -176.106.100.0/22 24589 -176.106.104.0/21 57701 -176.106.117.0/24 29457 -176.106.120.0/21 31042 -176.106.128.0/23 12714 -176.106.130.0/23 31213 -176.106.132.0/22 12714 -176.106.136.0/21 58087 -176.106.144.0/20 48494 -176.106.160.0/20 24589 -176.106.176.0/21 24589 -176.106.184.0/21 43451 -176.106.192.0/19 44629 -176.106.224.0/21 57727 -176.106.232.0/21 57730 -176.106.240.0/20 57712 -176.107.0.0/21 48320 -176.107.8.0/21 42998 -176.107.16.0/21 6855 -176.107.24.0/24 6855 -176.107.25.0/24 57760 -176.107.26.0/24 31117 -176.107.32.0/21 198424 -176.107.40.0/21 42084 -176.107.48.0/20 203716 -176.107.64.0/21 200063 -176.107.72.0/21 209767 -176.107.80.0/21 57742 -176.107.88.0/21 29443 -176.107.96.0/21 57741 -176.107.104.0/21 12741 -176.107.112.0/21 21021 -176.107.120.0/21 57823 -176.107.128.0/19 205727 -176.107.160.0/21 49063 -176.107.168.0/21 204295 -176.107.176.0/20 42331 -176.107.192.0/21 57774 -176.107.200.0/21 12484 -176.107.208.0/20 57781 -176.107.224.0/20 47564 -176.107.240.0/21 43595 -176.107.248.0/21 57798 -176.108.0.0/19 57800 -176.108.32.0/20 31042 -176.108.48.0/21 56326 -176.108.56.0/21 57888 -176.108.64.0/19 57826 -176.108.96.0/19 39431 -176.108.128.0/21 198490 -176.108.136.0/21 49777 -176.108.144.0/21 49821 -176.108.152.0/21 57818 -176.108.160.0/20 57818 -176.108.176.0/21 57827 -176.108.184.0/21 47939 -176.108.192.0/19 47914 -176.108.224.0/21 199797 -176.108.232.0/21 39422 -176.108.240.0/20 43270 -176.109.0.0/21 57835 -176.109.8.0/21 57847 -176.109.16.0/20 43434 -176.109.32.0/20 50009 -176.109.48.0/21 57896 -176.109.56.0/21 29405 -176.109.64.0/18 49342 -176.109.128.0/21 57213 -176.109.136.0/21 31042 -176.109.144.0/20 57824 -176.109.160.0/21 198498 -176.109.168.0/21 56823 -176.109.176.0/20 41709 -176.109.192.0/19 57864 -176.109.224.0/19 41709 -176.110.0.0/18 41911 -176.110.64.0/19 49483 -176.110.96.0/22 199039 -176.110.102.0/23 59497 -176.110.104.0/24 16509 -176.110.105.0/24 206853 -176.110.107.0/24 200443 -176.110.112.0/22 200443 -176.110.116.0/23 61227 -176.110.118.0/24 20712 -176.110.119.0/24 199616 -176.110.120.0/21 59498 -176.110.128.0/20 57871 -176.110.144.0/20 56515 -176.110.160.0/19 198541 -176.110.192.0/20 198541 -176.110.224.0/19 31028 -176.111.8.0/21 198563 -176.111.16.0/20 57889 -176.111.32.0/20 57960 -176.111.48.0/23 24703 -176.111.51.0/24 35213 -176.111.52.0/24 210039 -176.111.53.0/24 209107 -176.111.54.0/23 203872 -176.111.56.0/24 47061 -176.111.57.0/24 24703 -176.111.58.0/23 24703 -176.111.60.0/22 24703 -176.111.64.0/21 48725 -176.111.72.0/21 47655 -176.111.80.0/20 51725 -176.111.96.0/21 198601 -176.111.104.0/21 8426 -176.111.112.0/21 57978 -176.111.120.0/21 198935 -176.111.128.0/19 198577 -176.111.160.0/22 203464 -176.111.164.0/22 34744 -176.111.168.0/22 201305 -176.111.176.0/20 25229 -176.111.192.0/20 60717 -176.111.208.0/21 49749 -176.111.216.0/22 57957 -176.111.220.0/23 57957 -176.111.224.0/20 198642 -176.111.240.0/22 203872 -176.111.244.0/24 210330 -176.111.245.0/24 15372 -176.111.246.0/24 57498 -176.111.247.0/24 204892 -176.111.248.0/21 57988 -176.112.0.0/19 3326 -176.112.32.0/19 51592 -176.112.64.0/21 44988 -176.112.72.0/21 198496 -176.112.88.0/21 49124 -176.112.96.0/20 198616 -176.112.112.0/21 198713 -176.112.120.0/21 34265 -176.112.128.0/20 56420 -176.112.144.0/20 201601 -176.112.160.0/20 57990 -176.112.176.0/20 58044 -176.112.192.0/19 199274 -176.112.224.0/19 50911 -176.113.0.0/19 47438 -176.113.32.0/21 47438 -176.113.40.0/22 9009 -176.113.48.0/20 8712 -176.113.64.0/22 9009 -176.113.68.0/22 209484 -176.113.72.0/22 9009 -176.113.76.0/22 11404 -176.113.80.0/23 9002 -176.113.82.0/23 48347 -176.113.84.0/22 51223 -176.113.88.0/22 12494 -176.113.92.0/22 50359 -176.113.96.0/21 51474 -176.113.104.0/21 49074 -176.113.112.0/24 58024 -176.113.115.0/24 49505 -176.113.117.0/24 61358 -176.113.118.0/24 34492 -176.113.119.0/24 209755 -176.113.120.0/21 56667 -176.113.128.0/20 44027 -176.113.144.0/20 44010 -176.113.160.0/20 58054 -176.113.176.0/21 60912 -176.113.184.0/21 208615 -176.113.192.0/20 197400 -176.113.208.0/20 58055 -176.113.224.0/19 39728 -176.114.0.0/20 56485 -176.114.16.0/20 58067 -176.114.32.0/20 42975 -176.114.48.0/21 49439 -176.114.56.0/21 56940 -176.114.64.0/20 197498 -176.114.80.0/23 197498 -176.114.82.0/23 204941 -176.114.84.0/23 204941 -176.114.86.0/24 204941 -176.114.87.0/24 197498 -176.114.88.0/22 197498 -176.114.92.0/23 197498 -176.114.94.0/24 197498 -176.114.95.0/24 204941 -176.114.96.0/20 6758 -176.114.112.0/20 49342 -176.114.128.0/18 43274 -176.114.192.0/19 50060 -176.114.224.0/21 49320 -176.114.232.0/21 198709 -176.114.240.0/20 202618 -176.115.0.0/19 58350 -176.115.32.0/19 48940 -176.115.64.0/20 198715 -176.115.80.0/21 199494 -176.115.88.0/21 196797 -176.115.96.0/21 42126 -176.115.104.0/21 3168 -176.115.120.0/21 58134 -176.115.128.0/21 3203 -176.115.136.0/21 41743 -176.115.144.0/21 197275 -176.115.152.0/21 198757 -176.115.160.0/21 47654 -176.115.168.0/21 199042 -176.115.176.0/21 14477 -176.115.184.0/22 6762 -176.115.188.0/22 64266 -176.115.192.0/19 50241 -176.115.224.0/21 60912 -176.115.232.0/21 200443 -176.115.240.0/20 198766 -176.116.40.0/21 48266 -176.116.48.0/20 51070 -176.116.64.0/19 57102 -176.116.96.0/20 58130 -176.116.112.0/22 58130 -176.116.128.0/21 50437 -176.116.136.0/21 50716 -176.116.144.0/24 59546 -176.116.145.0/24 59560 -176.116.146.0/23 59575 -176.116.148.0/22 199091 -176.116.152.0/24 198972 -176.116.153.0/24 199098 -176.116.154.0/23 199089 -176.116.160.0/19 50022 -176.116.192.0/21 51597 -176.116.200.0/21 57101 -176.116.208.0/20 58136 -176.116.224.0/21 200063 -176.116.232.0/22 48976 -176.116.236.0/22 200063 -176.116.240.0/20 16321 -176.117.0.0/21 51234 -176.117.8.0/21 44619 -176.117.16.0/20 12714 -176.117.32.0/24 51507 -176.117.34.0/23 51507 -176.117.36.0/22 51507 -176.117.40.0/21 51507 -176.117.48.0/21 198791 -176.117.56.0/24 5488 -176.117.57.0/24 13127 -176.117.60.0/24 60021 -176.117.61.0/24 6769 -176.117.62.0/24 42718 -176.117.63.0/24 9017 -176.117.64.0/19 50643 -176.117.96.0/21 58151 -176.117.104.0/21 48173 -176.117.112.0/20 50045 -176.117.128.0/19 58158 -176.117.160.0/19 49125 -176.117.192.0/19 44484 -176.117.224.0/21 58189 -176.117.232.0/22 51645 -176.117.236.0/22 58189 -176.117.240.0/20 58189 -176.118.0.0/22 205711 -176.118.4.0/22 204595 -176.118.8.0/23 13174 -176.118.10.0/23 8359 -176.118.12.0/23 8359 -176.118.14.0/23 39811 -176.118.16.0/23 13174 -176.118.18.0/23 8359 -176.118.20.0/22 8359 -176.118.24.0/22 30922 -176.118.28.0/22 8359 -176.118.40.0/21 41820 -176.118.49.0/24 198820 -176.118.50.0/24 198820 -176.118.52.0/24 198820 -176.118.53.0/24 49824 -176.118.54.0/23 198820 -176.118.56.0/21 21299 -176.118.64.0/20 48128 -176.118.80.0/21 51474 -176.118.88.0/21 48266 -176.118.96.0/20 31117 -176.118.112.0/20 51153 -176.118.128.0/21 56361 -176.118.136.0/21 198906 -176.118.144.0/21 21228 -176.118.152.0/21 49711 -176.118.160.0/22 207046 -176.118.164.0/23 43830 -176.118.166.0/24 56630 -176.118.167.0/24 202376 -176.118.168.0/22 210061 -176.118.172.0/22 57752 -176.118.176.0/22 210052 -176.118.185.0/24 49423 -176.118.186.0/23 41195 -176.118.188.0/22 9009 -176.118.196.0/24 209657 -176.118.197.0/24 209592 -176.118.198.0/24 15440 -176.118.199.0/24 201624 -176.118.208.0/22 60042 -176.118.212.0/24 209873 -176.118.213.0/24 60042 -176.118.214.0/23 60042 -176.118.216.0/21 60042 -176.119.0.0/20 58271 -176.119.16.0/21 51612 -176.119.24.0/21 30860 -176.119.32.0/19 42503 -176.119.64.0/18 6876 -176.119.132.0/22 210055 -176.119.136.0/22 31297 -176.119.140.0/24 44812 -176.119.141.0/24 43444 -176.119.142.0/24 39798 -176.119.143.0/24 34665 -176.119.148.0/22 137443 -176.119.153.0/24 13830 -176.119.156.0/22 48347 -176.119.160.0/19 58285 -176.119.197.0/24 56791 -176.119.209.0/24 207767 -176.119.210.0/24 56457 -176.119.215.0/24 397881 -176.119.217.0/24 56911 -176.119.223.0/24 207588 -176.119.224.0/21 59583 -176.119.232.0/21 43050 -176.119.240.0/21 58304 -176.119.248.0/21 20719 -176.120.0.0/20 51042 -176.120.18.0/23 198911 -176.120.20.0/22 198911 -176.120.24.0/21 51740 -176.120.32.0/19 58309 -176.120.64.0/19 34300 -176.120.96.0/23 3255 -176.120.98.0/23 49183 -176.120.100.0/24 49183 -176.120.101.0/24 50392 -176.120.102.0/24 49183 -176.120.103.0/24 58332 -176.120.104.0/22 58332 -176.120.108.0/23 58332 -176.120.110.0/23 50594 -176.120.112.0/21 44827 -176.120.120.0/21 24577 -176.120.128.0/19 197485 -176.120.160.0/21 8339 -176.120.168.0/21 58327 -176.120.176.0/20 51669 -176.120.192.0/19 57227 -176.120.224.0/19 42892 -176.121.0.0/24 207931 -176.121.3.0/24 60386 -176.121.4.0/22 41244 -176.121.8.0/24 41323 -176.121.9.0/24 41467 -176.121.11.0/24 43981 -176.121.12.0/24 57894 -176.121.13.0/24 50392 -176.121.14.0/24 210138 -176.121.15.0/24 50392 -176.121.16.0/22 199472 -176.121.20.0/22 60216 -176.121.24.0/21 42336 -176.121.32.0/20 200063 -176.121.48.0/22 199021 -176.121.52.0/22 203872 -176.121.56.0/22 31543 -176.121.60.0/22 199021 -176.121.64.0/21 59631 -176.121.72.0/21 56522 -176.121.80.0/21 59444 -176.121.88.0/21 44654 -176.121.104.0/22 57217 -176.121.112.0/20 199416 -176.121.128.0/18 43660 -176.121.192.0/20 47526 -176.121.208.0/20 198718 -176.121.224.0/19 48730 -176.122.0.0/20 203716 -176.122.16.0/24 205047 -176.122.17.0/24 41775 -176.122.18.0/24 204520 -176.122.19.0/24 202091 -176.122.20.0/22 48096 -176.122.24.0/22 48096 -176.122.28.0/24 198481 -176.122.29.0/24 197756 -176.122.30.0/24 205828 -176.122.31.0/24 197340 -176.122.32.0/20 198991 -176.122.48.0/23 199008 -176.122.51.0/24 199008 -176.122.52.0/22 199008 -176.122.56.0/21 199008 -176.122.64.0/20 49776 -176.122.80.0/21 59443 -176.122.88.0/21 44668 -176.122.96.0/19 50581 -176.122.128.0/18 25820 -176.122.192.0/23 25180 -176.122.194.0/23 199047 -176.122.196.0/23 12874 -176.122.198.0/24 12874 -176.122.199.0/24 199060 -176.122.200.0/21 59517 -176.122.208.0/23 41507 -176.122.210.0/23 21005 -176.122.212.0/22 199061 -176.122.216.0/21 199060 -176.122.224.0/20 199061 -176.122.240.0/22 209921 -176.122.244.0/23 51310 -176.122.247.0/24 59512 -176.122.248.0/21 59502 -176.123.0.0/21 200019 -176.123.8.0/22 200019 -176.123.16.0/20 30873 -176.123.32.0/20 61124 -176.123.48.0/24 59568 -176.123.49.0/24 198076 -176.123.50.0/24 20860 -176.123.51.0/24 198333 -176.123.52.0/23 25180 -176.123.54.0/23 42473 -176.123.56.0/24 50396 -176.123.57.0/24 59522 -176.123.58.0/24 34900 -176.123.60.0/23 60191 -176.123.62.0/24 42831 -176.123.63.0/24 59520 -176.123.64.0/18 59506 -176.123.128.0/19 45054 -176.123.160.0/19 49342 -176.123.192.0/20 59515 -176.123.208.0/21 51002 -176.123.216.0/22 59584 -176.123.220.0/23 59681 -176.123.222.0/24 20712 -176.123.223.0/24 199113 -176.123.224.0/19 59527 -176.124.0.0/19 47694 -176.124.32.0/23 49505 -176.124.34.0/24 12722 -176.124.35.0/24 39395 -176.124.36.0/23 57395 -176.124.40.0/22 203698 -176.124.44.0/22 49505 -176.124.49.0/24 138219 -176.124.50.0/24 174 -176.124.56.0/23 56970 -176.124.58.0/24 56970 -176.124.59.0/24 209856 -176.124.60.0/22 200665 -176.124.64.0/23 59654 -176.124.66.0/24 59654 -176.124.68.0/23 21339 -176.124.70.0/24 41000 -176.124.71.0/24 34343 -176.124.72.0/21 49074 -176.124.80.0/20 21299 -176.124.96.0/21 51342 -176.124.104.0/21 59632 -176.124.112.0/23 198412 -176.124.114.0/23 34561 -176.124.116.0/22 52043 -176.124.120.0/21 52043 -176.124.128.0/21 59652 -176.124.136.0/23 199078 -176.124.138.0/23 51875 -176.124.140.0/22 3169 -176.124.144.0/22 59665 -176.124.148.0/24 199345 -176.124.150.0/23 51596 -176.124.152.0/21 51596 -176.124.160.0/21 48667 -176.124.168.0/22 49811 -176.124.172.0/22 203785 -176.124.184.0/22 59664 -176.124.188.0/23 60732 -176.124.190.0/24 199197 -176.124.191.0/24 199188 -176.124.192.0/19 209059 -176.124.224.0/23 199639 -176.124.226.0/23 50712 -176.124.228.0/23 57479 -176.124.230.0/24 57479 -176.124.231.0/24 199351 -176.124.232.0/21 51622 -176.124.240.0/23 205363 -176.124.242.0/23 59607 -176.124.244.0/24 206019 -176.124.245.0/24 205671 -176.124.246.0/24 61194 -176.124.247.0/24 12757 -176.124.248.0/24 59672 -176.124.249.0/24 199191 -176.124.250.0/23 49949 -176.124.252.0/24 59690 -176.124.253.0/24 28685 -176.124.254.0/23 3257 -176.125.0.0/19 12663 -176.125.32.0/19 3255 -176.125.64.0/18 15774 -176.125.128.0/18 196739 -176.125.192.0/19 44056 -176.125.224.0/22 197036 -176.125.228.0/22 197328 -176.125.232.0/22 50304 -176.125.236.0/22 12679 -176.125.240.0/22 48430 -176.125.244.0/22 200665 -176.125.248.0/22 197518 -176.125.252.0/22 52055 -176.126.0.0/19 44172 -176.126.32.0/22 47363 -176.126.36.0/24 199112 -176.126.37.0/24 1197 -176.126.39.0/24 51265 -176.126.40.0/21 31430 -176.126.48.0/21 49821 -176.126.56.0/23 50607 -176.126.58.0/24 36040 -176.126.59.0/24 50607 -176.126.60.0/22 196777 -176.126.66.0/24 19693 -176.126.67.0/24 36351 -176.126.70.0/24 63473 -176.126.73.0/24 42366 -176.126.74.0/24 3257 -176.126.77.0/24 3257 -176.126.78.0/24 203380 -176.126.83.0/24 49367 -176.126.84.0/23 63473 -176.126.86.0/24 63473 -176.126.87.0/24 21769 -176.126.88.0/22 21413 -176.126.92.0/22 197637 -176.126.96.0/19 39906 -176.126.128.0/19 56600 -176.126.161.0/24 204240 -176.126.162.0/23 51848 -176.126.164.0/22 59684 -176.126.168.0/22 201682 -176.126.172.0/24 5588 -176.126.173.0/24 62352 -176.126.174.0/24 31207 -176.126.176.0/20 6910 -176.126.192.0/23 209559 -176.126.194.0/24 209559 -176.126.195.0/24 62335 -176.126.196.0/23 41055 -176.126.200.0/22 40975 -176.126.204.0/24 208913 -176.126.205.0/24 62127 -176.126.206.0/23 209242 -176.126.208.0/21 2614 -176.126.216.0/22 50324 -176.126.220.0/23 62101 -176.126.222.0/24 10929 -176.126.223.0/24 31207 -176.126.224.0/21 199335 -176.126.232.0/24 43350 -176.126.236.0/22 60118 -176.126.240.0/21 44684 -176.126.248.0/22 47544 -176.126.252.0/22 60118 -176.127.0.0/16 3303 -176.128.0.0/10 5410 -176.192.0.0/14 12714 -176.196.0.0/15 39927 -176.198.0.0/15 6830 -176.200.0.0/15 16232 -176.202.0.0/18 42298 -176.202.64.0/20 8781 -176.202.80.0/20 42298 -176.202.96.0/20 42298 -176.202.112.0/20 8781 -176.202.128.0/19 8781 -176.202.160.0/19 42298 -176.202.192.0/18 8781 -176.203.0.0/16 8781 -176.204.0.0/15 5384 -176.206.0.0/15 1267 -176.208.0.0/14 12389 -176.212.0.0/20 41727 -176.212.16.0/20 51645 -176.212.32.0/20 57378 -176.212.48.0/21 51819 -176.212.56.0/21 57378 -176.212.64.0/20 50543 -176.212.80.0/21 51819 -176.212.88.0/21 57026 -176.212.96.0/20 57044 -176.212.112.0/20 50512 -176.212.128.0/21 41754 -176.212.136.0/23 51570 -176.212.144.0/20 50498 -176.212.160.0/19 56420 -176.212.192.0/19 52207 -176.212.224.0/20 34590 -176.212.240.0/21 39028 -176.212.248.0/21 57026 -176.213.0.0/19 42682 -176.213.32.0/21 57378 -176.213.40.0/21 57026 -176.213.48.0/21 51035 -176.213.56.0/21 52207 -176.213.64.0/20 50498 -176.213.80.0/20 57026 -176.213.96.0/21 49048 -176.213.104.0/21 39028 -176.213.112.0/20 52207 -176.213.128.0/24 59792 -176.213.130.0/23 31363 -176.213.132.0/22 31363 -176.213.136.0/21 57378 -176.213.144.0/20 51035 -176.213.160.0/19 52207 -176.213.192.0/21 57026 -176.213.200.0/21 52207 -176.213.208.0/21 56981 -176.213.216.0/21 51645 -176.213.224.0/19 51035 -176.214.0.0/20 41843 -176.214.16.0/20 56420 -176.214.32.0/21 21353 -176.214.40.0/21 57044 -176.214.48.0/21 50542 -176.214.56.0/21 56330 -176.214.64.0/19 51819 -176.214.96.0/22 21353 -176.214.100.0/22 31363 -176.214.104.0/21 50544 -176.214.112.0/20 39435 -176.214.128.0/19 59713 -176.214.160.0/21 34150 -176.214.168.0/21 52207 -176.214.176.0/21 57378 -176.214.184.0/21 50542 -176.214.192.0/20 41403 -176.214.208.0/21 51035 -176.214.216.0/21 50498 -176.214.224.0/20 50498 -176.214.240.0/20 52207 -176.215.0.0/19 51604 -176.215.32.0/20 42116 -176.215.48.0/20 50498 -176.215.64.0/21 51570 -176.215.72.0/21 57044 -176.215.80.0/21 50544 -176.215.88.0/21 51819 -176.215.96.0/19 50544 -176.215.128.0/19 56330 -176.215.160.0/21 56330 -176.215.168.0/21 56420 -176.215.176.0/20 31363 -176.215.192.0/20 56377 -176.215.208.0/21 56377 -176.215.216.0/21 34590 -176.215.224.0/19 51645 -176.216.0.0/17 8386 -176.216.128.0/18 8386 -176.216.192.0/20 8386 -176.216.208.0/22 8386 -176.216.212.0/24 8386 -176.216.214.0/23 8386 -176.216.217.0/24 8386 -176.216.218.0/23 8386 -176.216.220.0/22 8386 -176.216.224.0/19 8386 -176.217.0.0/20 8386 -176.217.16.0/22 8386 -176.217.22.0/23 8386 -176.217.24.0/21 8386 -176.217.32.0/20 8386 -176.217.56.0/21 8386 -176.217.64.0/20 8386 -176.217.84.0/22 8386 -176.217.88.0/21 8386 -176.217.96.0/19 8386 -176.217.128.0/18 8386 -176.217.192.0/20 8386 -176.217.208.0/21 8386 -176.217.220.0/22 8386 -176.217.224.0/20 8386 -176.217.240.0/24 8386 -176.217.244.0/22 8386 -176.217.248.0/24 8386 -176.217.250.0/23 8386 -176.217.252.0/24 8386 -176.218.0.0/17 8386 -176.218.128.0/20 8386 -176.218.144.0/21 8386 -176.218.152.0/22 8386 -176.218.156.0/23 8386 -176.218.159.0/24 8386 -176.218.160.0/21 8386 -176.218.168.0/22 8386 -176.218.172.0/23 8386 -176.218.176.0/20 8386 -176.218.192.0/22 8386 -176.218.197.0/24 8386 -176.218.198.0/23 8386 -176.218.200.0/22 8386 -176.218.204.0/23 8386 -176.218.207.0/24 8386 -176.218.208.0/21 8386 -176.218.216.0/22 8386 -176.218.224.0/20 8386 -176.218.240.0/21 8386 -176.218.250.0/23 8386 -176.218.252.0/22 8386 -176.219.8.0/21 8386 -176.219.16.0/20 8386 -176.219.32.0/19 8386 -176.219.64.0/19 8386 -176.219.96.0/21 8386 -176.219.112.0/20 8386 -176.219.128.0/21 8386 -176.219.144.0/20 8386 -176.219.160.0/20 8386 -176.219.176.0/20 15897 -176.219.192.0/20 8386 -176.219.208.0/21 8386 -176.219.216.0/22 8386 -176.219.220.0/23 8386 -176.219.224.0/19 8386 -176.220.0.0/16 20978 -176.221.0.0/21 31724 -176.221.8.0/21 31484 -176.221.16.0/20 39308 -176.221.32.0/22 15525 -176.221.36.0/23 15525 -176.221.39.0/24 39384 -176.221.40.0/23 8972 -176.221.42.0/23 34011 -176.221.44.0/23 8972 -176.221.46.0/24 34011 -176.221.47.0/24 8972 -176.221.48.0/21 12779 -176.221.56.0/21 29668 -176.221.64.0/21 24631 -176.221.72.0/21 57595 -176.221.86.0/23 1257 -176.221.88.0/21 31264 -176.221.96.0/19 21021 -176.221.128.0/17 35805 -176.222.0.0/20 12716 -176.222.16.0/24 44579 -176.222.17.0/24 50011 -176.222.18.0/24 41822 -176.222.24.0/23 198270 -176.222.26.0/24 209370 -176.222.27.0/24 61408 -176.222.28.0/24 198270 -176.222.29.0/24 61408 -176.222.30.0/24 61408 -176.222.32.0/20 34594 -176.222.48.0/22 208308 -176.222.64.0/22 15704 -176.222.68.0/24 15704 -176.222.69.0/24 204004 -176.222.70.0/23 15704 -176.222.72.0/21 15704 -176.222.80.0/20 15704 -176.222.96.0/19 21195 -176.222.128.0/18 21299 -176.222.192.0/21 60891 -176.222.200.0/21 8359 -176.222.208.0/21 35283 -176.222.216.0/21 12714 -176.222.224.0/21 198282 -176.222.232.0/21 28717 -176.222.240.0/20 41560 -176.223.0.0/18 6910 -176.223.64.0/24 62114 -176.223.65.0/24 61102 -176.223.66.0/24 50939 -176.223.67.0/24 201341 -176.223.72.0/21 21299 -176.223.80.0/21 58224 -176.223.88.0/21 59862 -176.223.96.0/22 57746 -176.223.100.0/22 206026 -176.223.108.0/24 60194 -176.223.109.0/24 57267 -176.223.110.0/24 12310 -176.223.111.0/24 51852 -176.223.112.0/23 51852 -176.223.114.0/24 6910 -176.223.115.0/24 44875 -176.223.116.0/23 51490 -176.223.118.0/24 51490 -176.223.119.0/24 12637 -176.223.120.0/21 5588 -176.223.128.0/20 62282 -176.223.160.0/23 201117 -176.223.163.0/24 60450 -176.223.164.0/24 31638 -176.223.165.0/24 47447 -176.223.166.0/24 20616 -176.223.167.0/24 29172 -176.223.168.0/22 39737 -176.223.172.0/22 210176 -176.223.176.0/22 210176 -176.223.181.0/24 209706 -176.223.184.0/22 206026 -176.223.188.0/24 41611 -176.223.189.0/24 201198 -176.223.190.0/24 209706 -176.223.191.0/24 48336 -176.223.192.0/19 39756 -176.223.224.0/20 39756 -176.223.240.0/21 39756 -176.224.0.0/19 34400 -176.224.32.0/19 35819 -176.224.64.0/18 35819 -176.224.128.0/17 35819 -176.225.0.0/16 35819 -176.226.0.0/17 8448 -176.226.128.0/17 8369 -176.227.0.0/17 16135 -176.227.128.0/20 29286 -176.227.144.0/24 29119 -176.227.145.0/24 50563 -176.227.146.0/24 199738 -176.227.147.0/24 29119 -176.227.148.0/22 29119 -176.227.152.0/23 29119 -176.227.154.0/24 29119 -176.227.155.0/24 199482 -176.227.156.0/24 50564 -176.227.157.0/24 29119 -176.227.158.0/23 29119 -176.227.160.0/21 58321 -176.227.168.0/23 24971 -176.227.170.0/23 3313 -176.227.172.0/22 3313 -176.227.176.0/23 34352 -176.227.184.0/21 34467 -176.227.192.0/19 20860 -176.227.224.0/20 198336 -176.227.240.0/23 209854 -176.227.242.0/23 35913 -176.227.244.0/23 44443 -176.227.246.0/24 44443 -176.227.248.0/21 15425 -176.228.0.0/15 12400 -176.230.0.0/16 12400 -176.231.0.0/17 12400 -176.231.128.0/20 12400 -176.231.144.0/21 12400 -176.231.152.0/22 12400 -176.231.156.0/23 12400 -176.231.158.0/24 9116 -176.231.159.0/24 12400 -176.231.160.0/19 12400 -176.231.192.0/18 12400 -176.232.0.0/15 34984 -176.234.0.0/16 34984 -176.235.0.0/20 34984 -176.235.21.0/24 34984 -176.235.23.0/24 34984 -176.235.24.0/21 34984 -176.235.32.0/20 34984 -176.235.48.0/22 34984 -176.235.52.0/23 34984 -176.235.56.0/22 34984 -176.235.60.0/24 34984 -176.235.62.0/23 34984 -176.235.67.0/24 34984 -176.235.68.0/22 34984 -176.235.73.0/24 34984 -176.235.78.0/24 34984 -176.235.80.0/20 34984 -176.235.96.0/24 206595 -176.235.97.0/24 34984 -176.235.98.0/23 34984 -176.235.100.0/23 34984 -176.235.102.0/24 34984 -176.235.103.0/24 42376 -176.235.105.0/24 34984 -176.235.106.0/23 34984 -176.235.109.0/24 34984 -176.235.110.0/24 34984 -176.235.112.0/22 34984 -176.235.116.0/24 34984 -176.235.119.0/24 209490 -176.235.120.0/24 34984 -176.235.122.0/24 24667 -176.235.126.0/23 34984 -176.235.128.0/24 34984 -176.235.130.0/23 34984 -176.235.132.0/22 34984 -176.235.136.0/21 34984 -176.235.144.0/20 34984 -176.235.160.0/19 34984 -176.235.192.0/22 34984 -176.235.196.0/23 34984 -176.235.200.0/22 34984 -176.235.208.0/22 34984 -176.235.212.0/24 34984 -176.235.214.0/23 34984 -176.235.216.0/22 34984 -176.235.220.0/23 34984 -176.235.240.0/20 34984 -176.236.0.0/18 34984 -176.236.64.0/19 34984 -176.236.96.0/20 34984 -176.236.240.0/22 34984 -176.236.244.0/24 34984 -176.236.245.0/24 208880 -176.236.246.0/24 208916 -176.236.249.0/24 204348 -176.236.251.0/24 34984 -176.236.253.0/24 34984 -176.237.0.0/16 16135 -176.238.0.0/17 16135 -176.239.0.0/16 16135 -176.240.3.0/24 47524 -176.240.4.0/22 47524 -176.240.8.0/22 47524 -176.240.12.0/24 47524 -176.240.16.0/20 47524 -176.240.32.0/19 47524 -176.240.65.0/24 47524 -176.240.68.0/22 47524 -176.240.72.0/21 47524 -176.240.80.0/21 47524 -176.240.88.0/22 47524 -176.240.92.0/23 47524 -176.240.95.0/24 47524 -176.240.96.0/19 47524 -176.240.130.0/23 47524 -176.240.135.0/24 47524 -176.240.140.0/23 47524 -176.240.144.0/22 47524 -176.240.150.0/24 47524 -176.240.152.0/22 47524 -176.240.158.0/24 47524 -176.240.160.0/19 47524 -176.240.192.0/20 47524 -176.240.208.0/22 47524 -176.240.218.0/24 47524 -176.240.220.0/22 47524 -176.240.224.0/22 47524 -176.240.231.0/24 47524 -176.240.232.0/21 47524 -176.240.241.0/24 47524 -176.240.242.0/23 47524 -176.240.244.0/22 47524 -176.240.252.0/22 47524 -176.241.0.0/18 20845 -176.241.64.0/24 50670 -176.241.72.0/21 35378 -176.241.80.0/22 57588 -176.241.84.0/23 57588 -176.241.86.0/24 57588 -176.241.88.0/22 57588 -176.241.92.0/24 57588 -176.241.93.0/24 12952 -176.241.94.0/23 57588 -176.241.96.0/21 8359 -176.241.104.0/21 21219 -176.241.112.0/21 20645 -176.241.120.0/21 30781 -176.241.128.0/19 3326 -176.241.160.0/20 51906 -176.241.184.0/21 29684 -176.241.192.0/19 42277 -176.241.224.0/21 56420 -176.241.232.0/21 44763 -176.241.240.0/21 41676 -176.241.248.0/21 198335 -176.242.0.0/15 30722 -176.244.0.0/14 30722 -176.248.0.0/13 5607 -177.0.0.0/15 8167 -177.2.0.0/17 8167 -177.2.128.0/18 8167 -177.3.0.0/16 8167 -177.4.0.0/14 8167 -177.8.0.0/19 28360 -177.8.32.0/20 262830 -177.8.48.0/21 262493 -177.8.56.0/21 262591 -177.8.64.0/20 262833 -177.8.80.0/20 52890 -177.8.96.0/20 53187 -177.8.112.0/20 263028 -177.8.144.0/21 263029 -177.8.152.0/22 262683 -177.8.156.0/22 263286 -177.8.160.0/20 53231 -177.8.176.0/20 53233 -177.8.192.0/20 262720 -177.8.208.0/21 262819 -177.8.216.0/22 53191 -177.8.220.0/22 263133 -177.8.224.0/20 262843 -177.8.240.0/21 263030 -177.8.248.0/21 263579 -177.9.0.0/16 27699 -177.10.0.0/20 53230 -177.10.20.0/22 52916 -177.10.24.0/21 262841 -177.10.32.0/21 262842 -177.10.40.0/22 263012 -177.10.44.0/22 263591 -177.10.48.0/21 53232 -177.10.56.0/21 262847 -177.10.64.0/21 53234 -177.10.72.0/22 270313 -177.10.76.0/22 263592 -177.10.80.0/21 262846 -177.10.88.0/22 263014 -177.10.92.0/22 263597 -177.10.96.0/20 262848 -177.10.112.0/22 53235 -177.10.116.0/22 52917 -177.10.120.0/22 53236 -177.10.124.0/22 52918 -177.10.128.0/22 262739 -177.10.140.0/22 52926 -177.10.144.0/21 262851 -177.10.152.0/22 263016 -177.10.156.0/22 61894 -177.10.160.0/21 53238 -177.10.168.0/22 263019 -177.10.172.0/22 263601 -177.10.180.0/22 52933 -177.10.192.0/21 262854 -177.10.200.0/22 263025 -177.10.204.0/22 262302 -177.10.208.0/21 262856 -177.10.216.0/22 263036 -177.10.220.0/22 263602 -177.10.224.0/21 262861 -177.10.232.0/21 262880 -177.10.244.0/22 262863 -177.10.248.0/21 262274 -177.11.0.0/21 52962 -177.11.8.0/21 262277 -177.11.16.0/22 262869 -177.11.20.0/22 262295 -177.11.30.0/24 52922 -177.11.31.0/24 52754 -177.11.32.0/21 53241 -177.11.40.0/21 262717 -177.11.48.0/21 53243 -177.11.56.0/22 262871 -177.11.60.0/24 52934 -177.11.62.0/23 52934 -177.11.64.0/21 262872 -177.11.72.0/22 262294 -177.11.76.0/22 263603 -177.11.80.0/22 27715 -177.11.84.0/22 52939 -177.11.88.0/22 262874 -177.11.92.0/22 52940 -177.11.96.0/24 262875 -177.11.98.0/23 262875 -177.11.100.0/22 52942 -177.11.108.0/22 52943 -177.11.112.0/21 52948 -177.11.120.0/21 262296 -177.11.136.0/23 53209 -177.11.138.0/24 267624 -177.11.139.0/24 53209 -177.11.140.0/22 53209 -177.11.144.0/21 262878 -177.11.152.0/23 52901 -177.11.154.0/24 268451 -177.11.155.0/24 52901 -177.11.156.0/22 52901 -177.11.160.0/21 52856 -177.11.168.0/21 52903 -177.11.176.0/21 52951 -177.11.184.0/21 52904 -177.11.192.0/20 53053 -177.11.208.0/22 262881 -177.11.212.0/22 52945 -177.11.220.0/22 53219 -177.11.224.0/21 262882 -177.11.232.0/21 52905 -177.11.240.0/22 262885 -177.11.244.0/22 52946 -177.11.248.0/22 262895 -177.11.252.0/24 52756 -177.11.253.0/24 52826 -177.12.0.0/18 28665 -177.12.64.0/20 262845 -177.12.80.0/21 263031 -177.12.92.0/22 263627 -177.12.96.0/19 53118 -177.12.128.0/19 28188 -177.12.160.0/20 28299 -177.12.176.0/20 263033 -177.12.192.0/20 262855 -177.12.224.0/20 61568 -177.12.240.0/20 262866 -177.13.0.0/24 11338 -177.13.4.0/23 11338 -177.13.8.0/24 11338 -177.13.12.0/22 11338 -177.13.16.0/24 11338 -177.13.24.0/24 11338 -177.13.26.0/24 11338 -177.13.32.0/24 11338 -177.13.40.0/24 11338 -177.13.80.0/22 11338 -177.13.88.0/22 11338 -177.13.94.0/24 11338 -177.13.112.0/20 11338 -177.13.136.0/21 11338 -177.13.144.0/20 11338 -177.13.176.0/20 11338 -177.13.216.0/21 11338 -177.13.224.0/21 11338 -177.13.232.0/24 11338 -177.13.248.0/21 11338 -177.14.64.0/19 53237 -177.14.128.0/17 53237 -177.15.0.0/17 53237 -177.15.128.0/18 53237 -177.15.248.0/21 53237 -177.16.0.0/17 18881 -177.16.128.0/22 18881 -177.16.132.0/22 10429 -177.16.136.0/21 18881 -177.16.144.0/20 18881 -177.16.160.0/19 18881 -177.16.192.0/19 18881 -177.16.224.0/19 10429 -177.17.0.0/16 18881 -177.18.0.0/16 18881 -177.19.0.0/17 18881 -177.19.128.0/19 18881 -177.19.160.0/20 18881 -177.19.176.0/20 10429 -177.19.192.0/19 18881 -177.19.224.0/20 10429 -177.19.240.0/21 10429 -177.19.248.0/21 18881 -177.20.0.0/17 53239 -177.20.128.0/19 262857 -177.20.160.0/20 262862 -177.20.176.0/21 263035 -177.20.184.0/21 262891 -177.20.192.0/20 262867 -177.20.208.0/20 262868 -177.20.224.0/19 53240 -177.21.0.0/19 53242 -177.21.32.0/20 262761 -177.21.48.0/20 263084 -177.21.64.0/20 53245 -177.21.80.0/20 53088 -177.21.96.0/19 53246 -177.21.128.0/20 28245 -177.21.144.0/20 52836 -177.21.160.0/19 262876 -177.21.192.0/20 262877 -177.21.208.0/20 262879 -177.21.224.0/22 11835 -177.21.228.0/23 11835 -177.21.230.0/24 11835 -177.21.231.0/24 52760 -177.21.232.0/21 11835 -177.21.240.0/20 11835 -177.22.0.0/20 262883 -177.22.16.0/20 52952 -177.22.32.0/20 52981 -177.22.48.0/20 52953 -177.22.64.0/20 262890 -177.22.80.0/20 52892 -177.22.96.0/20 52956 -177.22.112.0/21 263331 -177.22.120.0/21 263432 -177.22.128.0/19 52958 -177.22.160.0/20 52959 -177.22.176.0/21 53167 -177.22.184.0/22 263563 -177.22.188.0/22 263121 -177.22.192.0/20 262901 -177.22.208.0/20 262902 -177.22.224.0/20 262669 -177.22.240.0/21 28264 -177.22.248.0/22 263564 -177.22.252.0/23 262357 -177.22.254.0/23 263160 -177.23.0.0/21 262886 -177.23.8.0/21 263037 -177.23.16.0/22 262887 -177.23.20.0/22 52757 -177.23.28.0/22 52762 -177.23.32.0/21 262888 -177.23.40.0/21 263038 -177.23.56.0/21 52906 -177.23.64.0/21 262891 -177.23.72.0/21 263039 -177.23.80.0/21 52955 -177.23.88.0/21 262268 -177.23.96.0/21 262892 -177.23.104.0/22 52907 -177.23.108.0/22 263614 -177.23.112.0/21 262893 -177.23.120.0/21 52908 -177.23.136.0/21 52909 -177.23.144.0/21 262896 -177.23.152.0/21 52911 -177.23.160.0/21 52960 -177.23.168.0/21 52913 -177.23.176.0/21 262898 -177.23.184.0/21 52935 -177.23.192.0/21 262900 -177.23.200.0/21 52937 -177.23.208.0/21 262903 -177.23.216.0/23 52961 -177.23.220.0/23 52969 -177.23.222.0/23 52970 -177.23.224.0/21 52963 -177.23.232.0/21 52938 -177.23.240.0/22 262905 -177.23.244.0/24 262269 -177.23.245.0/24 262276 -177.23.246.0/24 262280 -177.23.247.0/24 52915 -177.23.248.0/22 262906 -177.23.252.0/22 52764 -177.24.0.0/16 26599 -177.25.0.0/18 10429 -177.25.64.0/20 26599 -177.25.80.0/20 27699 -177.25.96.0/19 26599 -177.25.128.0/17 26599 -177.26.0.0/16 26599 -177.27.0.0/17 26599 -177.27.128.0/18 26599 -177.27.192.0/18 27699 -177.28.0.0/14 26615 -177.32.0.0/14 28573 -177.36.0.0/20 52965 -177.36.32.0/20 262907 -177.36.48.0/20 262909 -177.36.80.0/20 262865 -177.36.96.0/19 52972 -177.36.128.0/19 262401 -177.36.160.0/20 53122 -177.36.176.0/20 53062 -177.36.192.0/19 52967 -177.36.224.0/20 53070 -177.36.240.0/20 262404 -177.37.0.0/20 28266 -177.37.48.0/21 52893 -177.37.56.0/23 52893 -177.37.58.0/24 52893 -177.37.59.0/24 264380 -177.37.60.0/22 52893 -177.37.64.0/19 262417 -177.37.96.0/20 262418 -177.37.112.0/20 262808 -177.37.128.0/17 28126 -177.38.0.0/21 52964 -177.38.8.0/21 262893 -177.38.16.0/22 52966 -177.38.20.0/22 52787 -177.38.24.0/21 262908 -177.38.32.0/21 28310 -177.38.40.0/21 52941 -177.38.48.0/21 262911 -177.38.56.0/21 52944 -177.38.64.0/23 262400 -177.38.67.0/24 262400 -177.38.68.0/22 52788 -177.38.72.0/22 262406 -177.38.76.0/22 52789 -177.38.80.0/20 262402 -177.38.96.0/21 262403 -177.38.104.0/21 262774 -177.38.112.0/20 52968 -177.38.128.0/21 61570 -177.38.136.0/21 52947 -177.38.144.0/21 262407 -177.38.152.0/21 52751 -177.38.160.0/21 262408 -177.38.168.0/21 52755 -177.38.176.0/21 52971 -177.38.184.0/21 52758 -177.38.192.0/21 262409 -177.38.200.0/21 52759 -177.38.208.0/21 262411 -177.38.216.0/21 262412 -177.38.224.0/21 28216 -177.38.232.0/22 52760 -177.38.236.0/24 11835 -177.38.237.0/24 52760 -177.38.238.0/23 52760 -177.38.240.0/21 52974 -177.38.248.0/21 262832 -177.39.0.0/22 262413 -177.39.4.0/22 52994 -177.39.12.0/22 52790 -177.39.16.0/21 262415 -177.39.24.0/22 262374 -177.39.28.0/22 263615 -177.39.32.0/21 262416 -177.39.40.0/21 262732 -177.39.48.0/21 52976 -177.39.56.0/21 52761 -177.39.64.0/21 262419 -177.39.72.0/21 52977 -177.39.80.0/21 262422 -177.39.88.0/21 262732 -177.39.96.0/22 44444 -177.39.100.0/22 61651 -177.39.104.0/22 262425 -177.39.108.0/22 52766 -177.39.112.0/21 262423 -177.39.120.0/21 52765 -177.39.128.0/22 262426 -177.39.132.0/22 52767 -177.39.136.0/22 262430 -177.39.140.0/22 52769 -177.39.144.0/21 262427 -177.39.152.0/22 262427 -177.39.156.0/22 52772 -177.39.160.0/21 262429 -177.39.168.0/21 52768 -177.39.176.0/21 262431 -177.39.184.0/21 52770 -177.39.192.0/22 262432 -177.39.196.0/22 52774 -177.39.200.0/22 52978 -177.39.204.0/22 52780 -177.39.208.0/21 262433 -177.39.216.0/21 52795 -177.39.224.0/21 52979 -177.39.232.0/23 52797 -177.39.234.0/24 52797 -177.39.235.0/24 55002 -177.39.236.0/22 52797 -177.39.240.0/20 53135 -177.40.0.0/15 18881 -177.42.0.0/18 18881 -177.42.64.0/19 18881 -177.42.96.0/20 18881 -177.42.112.0/20 10429 -177.42.128.0/18 18881 -177.42.192.0/18 10429 -177.43.0.0/17 18881 -177.43.128.0/20 10429 -177.43.144.0/20 18881 -177.43.160.0/19 18881 -177.43.192.0/18 18881 -177.44.0.0/17 28202 -177.44.128.0/22 262424 -177.44.132.0/24 262424 -177.44.133.0/24 16 -177.44.134.0/24 16 -177.44.135.0/24 262424 -177.44.136.0/24 262424 -177.44.137.0/24 16 -177.44.138.0/23 16 -177.44.140.0/23 262424 -177.44.143.0/24 262424 -177.44.144.0/20 262428 -177.44.160.0/20 262434 -177.44.176.0/20 53173 -177.44.192.0/20 262907 -177.44.208.0/21 53230 -177.44.216.0/22 263566 -177.44.220.0/22 263139 -177.44.224.0/20 52982 -177.44.240.0/20 262441 -177.45.0.0/16 19182 -177.46.0.0/17 28135 -177.46.128.0/17 28166 -177.47.0.0/19 16397 -177.47.32.0/19 28652 -177.47.64.0/20 262402 -177.47.80.0/21 262480 -177.47.88.0/21 263294 -177.47.96.0/19 28271 -177.47.128.0/20 52993 -177.47.144.0/20 262281 -177.47.160.0/20 262469 -177.47.176.0/20 262283 -177.47.192.0/20 262470 -177.47.208.0/20 262473 -177.47.224.0/20 52995 -177.47.240.0/20 262478 -177.48.0.0/14 26615 -177.52.0.0/20 52980 -177.52.16.0/21 262435 -177.52.24.0/21 262282 -177.52.32.0/22 262436 -177.52.40.0/22 262437 -177.52.44.0/22 52796 -177.52.48.0/21 28198 -177.52.56.0/22 262908 -177.52.60.0/22 262824 -177.52.64.0/21 262438 -177.52.72.0/21 52786 -177.52.80.0/21 262439 -177.52.88.0/21 52801 -177.52.96.0/22 262442 -177.52.100.0/23 262455 -177.52.102.0/24 52997 -177.52.103.0/24 262508 -177.52.104.0/21 262444 -177.52.112.0/21 262445 -177.52.120.0/21 52802 -177.52.128.0/22 27715 -177.52.132.0/22 52782 -177.52.144.0/21 262752 -177.52.152.0/22 27715 -177.52.156.0/24 27715 -177.52.157.0/24 262446 -177.52.158.0/23 27715 -177.52.160.0/22 262448 -177.52.164.0/22 262436 -177.52.168.0/22 262449 -177.52.172.0/24 263540 -177.52.173.0/24 263319 -177.52.174.0/23 52820 -177.52.176.0/24 265705 -177.52.177.0/24 28613 -177.52.178.0/24 265705 -177.52.179.0/24 28613 -177.52.180.0/22 52799 -177.52.184.0/21 262451 -177.52.192.0/21 262450 -177.52.200.0/21 52830 -177.52.208.0/22 52986 -177.52.212.0/22 52800 -177.52.216.0/22 262452 -177.52.220.0/24 52831 -177.52.222.0/23 52834 -177.52.224.0/21 52987 -177.52.232.0/21 52839 -177.52.240.0/22 262453 -177.52.244.0/22 262285 -177.52.248.0/22 262454 -177.52.252.0/22 262286 -177.53.0.0/20 52989 -177.53.16.0/21 52990 -177.53.32.0/21 262457 -177.53.40.0/21 52807 -177.53.48.0/21 262458 -177.53.56.0/21 52809 -177.53.64.0/22 262459 -177.53.68.0/22 52803 -177.53.72.0/21 262460 -177.53.80.0/21 262463 -177.53.88.0/21 28604 -177.53.96.0/21 262464 -177.53.104.0/22 52650 -177.53.108.0/22 262568 -177.53.112.0/22 262465 -177.53.116.0/22 52804 -177.53.124.0/22 52810 -177.53.128.0/21 262466 -177.53.136.0/22 52665 -177.53.140.0/22 53243 -177.53.144.0/22 262468 -177.53.148.0/22 52806 -177.53.160.0/22 270247 -177.53.164.0/22 52808 -177.53.168.0/21 262474 -177.53.176.0/22 262475 -177.53.184.0/22 262476 -177.53.188.0/24 262331 -177.53.190.0/24 262356 -177.53.191.0/24 52867 -177.53.192.0/22 53020 -177.53.196.0/22 52833 -177.53.200.0/23 52998 -177.53.202.0/23 53000 -177.53.204.0/22 262483 -177.53.208.0/21 262479 -177.53.216.0/21 52666 -177.53.224.0/21 53138 -177.53.232.0/23 52667 -177.53.236.0/22 263434 -177.53.240.0/21 262481 -177.53.248.0/21 52671 -177.54.0.0/20 28343 -177.54.16.0/20 262447 -177.54.32.0/20 262889 -177.54.48.0/20 28292 -177.54.64.0/20 28154 -177.54.80.0/20 262292 -177.54.96.0/20 52988 -177.54.112.0/20 53142 -177.54.128.0/23 262456 -177.54.130.0/24 269558 -177.54.131.0/24 262456 -177.54.132.0/22 262456 -177.54.136.0/21 262456 -177.54.144.0/20 262287 -177.54.160.0/19 52991 -177.54.192.0/20 262461 -177.54.208.0/20 28596 -177.54.224.0/20 262462 -177.54.240.0/20 262299 -177.55.0.0/23 11338 -177.55.9.0/24 11338 -177.55.10.0/23 11338 -177.55.12.0/23 11338 -177.55.15.0/24 11338 -177.55.16.0/22 11338 -177.55.32.0/20 262482 -177.55.48.0/20 262493 -177.55.64.0/20 262484 -177.55.80.0/21 28591 -177.55.88.0/21 263571 -177.55.96.0/19 53057 -177.55.128.0/20 53003 -177.55.144.0/20 262505 -177.55.160.0/20 262507 -177.55.176.0/20 262514 -177.55.192.0/20 28210 -177.55.208.0/20 262531 -177.55.224.0/20 28656 -177.55.240.0/21 262532 -177.55.248.0/22 262532 -177.55.252.0/24 262532 -177.55.253.0/24 263327 -177.55.254.0/23 262532 -177.56.0.0/14 22085 -177.60.0.0/15 26599 -177.62.0.0/16 26599 -177.63.0.0/17 26599 -177.63.128.0/18 26599 -177.63.192.0/18 27699 -177.64.0.0/18 28573 -177.64.64.0/19 28573 -177.64.96.0/20 28573 -177.64.112.0/21 28573 -177.64.128.0/17 28573 -177.65.0.0/18 28573 -177.65.96.0/19 28573 -177.65.128.0/17 28573 -177.66.0.0/22 262485 -177.66.4.0/24 52837 -177.66.5.0/24 52844 -177.66.6.0/24 52649 -177.66.8.0/21 262486 -177.66.18.0/23 262487 -177.66.22.0/23 262487 -177.66.24.0/22 52841 -177.66.28.0/22 263656 -177.66.32.0/21 52999 -177.66.40.0/21 52843 -177.66.48.0/20 262488 -177.66.64.0/21 262489 -177.66.72.0/22 52845 -177.66.76.0/22 263658 -177.66.80.0/21 262490 -177.66.88.0/21 52846 -177.66.96.0/22 262491 -177.66.100.0/22 52838 -177.66.104.0/22 262492 -177.66.108.0/22 52842 -177.66.112.0/21 262494 -177.66.120.0/22 262495 -177.66.124.0/23 52672 -177.66.126.0/23 52676 -177.66.128.0/20 262496 -177.66.144.0/22 53001 -177.66.148.0/22 52847 -177.66.152.0/22 262499 -177.66.156.0/23 52652 -177.66.158.0/23 52656 -177.66.160.0/22 262500 -177.66.164.0/22 52655 -177.66.168.0/22 262501 -177.66.172.0/22 52659 -177.66.176.0/22 53002 -177.66.180.0/22 52675 -177.66.184.0/21 262502 -177.66.192.0/22 262503 -177.66.196.0/22 52798 -177.66.200.0/22 53004 -177.66.204.0/22 52677 -177.66.208.0/20 262504 -177.66.224.0/20 262505 -177.66.240.0/21 53005 -177.66.248.0/21 52660 -177.67.0.0/21 262509 -177.67.8.0/21 52661 -177.67.16.0/21 262510 -177.67.24.0/22 52662 -177.67.28.0/22 262324 -177.67.32.0/21 53009 -177.67.40.0/21 52956 -177.67.48.0/22 53010 -177.67.52.0/22 52684 -177.67.56.0/22 262512 -177.67.60.0/23 262513 -177.67.62.0/24 262536 -177.67.63.0/24 262477 -177.67.64.0/22 53011 -177.67.68.0/24 53012 -177.67.69.0/24 263556 -177.67.70.0/24 262524 -177.67.72.0/21 262530 -177.67.80.0/21 53013 -177.67.88.0/22 52674 -177.67.92.0/22 263435 -177.67.96.0/20 262517 -177.67.112.0/23 27715 -177.67.114.0/24 262518 -177.67.115.0/24 27715 -177.67.116.0/22 27715 -177.67.120.0/21 27715 -177.67.128.0/21 262519 -177.67.136.0/21 52663 -177.67.144.0/22 262521 -177.67.148.0/22 53223 -177.67.152.0/22 53014 -177.67.156.0/22 52686 -177.67.160.0/21 262522 -177.67.172.0/22 52917 -177.67.176.0/21 262523 -177.67.184.0/21 52670 -177.67.192.0/21 262526 -177.67.200.0/21 52664 -177.67.208.0/21 262527 -177.67.216.0/21 52679 -177.67.224.0/21 263077 -177.67.232.0/21 52680 -177.67.240.0/21 262535 -177.67.248.0/24 262552 -177.67.249.0/24 53030 -177.67.252.0/24 53028 -177.67.253.0/24 262583 -177.67.254.0/24 262559 -177.67.255.0/24 53044 -177.68.0.0/16 27699 -177.69.0.0/16 16735 -177.70.0.0/19 28209 -177.70.32.0/19 262533 -177.70.64.0/20 262544 -177.70.80.0/20 28241 -177.70.96.0/21 262545 -177.70.104.0/22 262545 -177.70.108.0/23 262545 -177.70.110.0/24 262545 -177.70.112.0/21 262545 -177.70.120.0/22 262545 -177.70.124.0/23 262545 -177.70.126.0/23 263034 -177.70.128.0/20 262547 -177.70.144.0/20 262813 -177.70.160.0/20 53019 -177.70.176.0/20 262681 -177.70.192.0/20 28359 -177.70.208.0/20 53217 -177.70.224.0/20 28346 -177.71.0.0/20 53131 -177.71.16.0/21 28254 -177.71.24.0/21 262427 -177.71.32.0/20 53022 -177.71.48.0/22 262560 -177.71.52.0/23 262560 -177.71.55.0/24 262560 -177.71.56.0/21 262560 -177.71.64.0/20 262561 -177.71.80.0/21 52749 -177.71.88.0/22 263604 -177.71.92.0/22 263292 -177.71.112.0/20 52750 -177.71.128.0/17 16509 -177.72.0.0/21 262537 -177.72.8.0/21 52814 -177.72.20.0/22 262691 -177.72.24.0/22 262539 -177.72.28.0/22 52817 -177.72.32.0/21 262540 -177.72.40.0/21 52813 -177.72.48.0/21 262541 -177.72.56.0/21 52815 -177.72.64.0/20 262542 -177.72.80.0/21 262543 -177.72.88.0/21 52822 -177.72.96.0/21 53015 -177.72.104.0/21 52828 -177.72.112.0/22 262558 -177.72.116.0/22 262546 -177.72.120.0/21 53017 -177.72.128.0/20 53018 -177.72.146.0/23 262414 -177.72.148.0/22 52818 -177.72.156.0/22 52821 -177.72.160.0/22 262548 -177.72.164.0/22 52827 -177.72.168.0/21 262550 -177.72.176.0/21 262549 -177.72.184.0/21 52829 -177.72.192.0/22 262551 -177.72.196.0/22 52687 -177.72.208.0/21 262554 -177.72.220.0/22 52692 -177.72.224.0/21 53023 -177.72.232.0/21 52892 -177.72.240.0/21 16509 -177.72.248.0/22 53039 -177.72.252.0/23 262629 -177.72.254.0/24 52857 -177.72.255.0/24 28637 -177.73.0.0/21 53184 -177.73.8.0/21 52683 -177.73.16.0/21 262562 -177.73.24.0/21 52685 -177.73.32.0/22 53025 -177.73.36.0/22 52694 -177.73.44.0/22 52696 -177.73.48.0/21 262565 -177.73.56.0/22 263071 -177.73.60.0/22 263468 -177.73.64.0/22 53026 -177.73.68.0/22 52698 -177.73.72.0/22 262566 -177.73.76.0/22 262769 -177.73.80.0/22 53029 -177.73.84.0/22 52700 -177.73.88.0/22 262568 -177.73.92.0/22 52704 -177.73.96.0/21 262567 -177.73.104.0/22 52688 -177.73.108.0/22 263471 -177.73.112.0/21 262569 -177.73.120.0/22 52689 -177.73.124.0/22 263502 -177.73.128.0/21 53031 -177.73.136.0/21 52693 -177.73.144.0/24 266286 -177.73.145.0/24 262570 -177.73.146.0/23 262570 -177.73.148.0/22 52705 -177.73.152.0/22 53033 -177.73.160.0/21 262571 -177.73.168.0/21 52695 -177.73.176.0/21 262572 -177.73.184.0/22 262759 -177.73.188.0/22 263503 -177.73.192.0/21 53036 -177.73.200.0/21 262773 -177.73.208.0/21 262573 -177.73.224.0/22 262574 -177.73.228.0/22 52712 -177.73.232.0/21 53038 -177.73.240.0/21 262557 -177.73.248.0/22 262558 -177.73.252.0/24 52713 -177.74.0.0/18 53016 -177.74.64.0/20 262316 -177.74.80.0/20 263378 -177.74.112.0/21 263380 -177.74.120.0/21 53184 -177.74.128.0/21 263646 -177.74.136.0/21 263648 -177.74.144.0/22 263649 -177.74.148.0/22 262376 -177.74.152.0/21 263650 -177.74.176.0/22 263651 -177.74.180.0/22 263654 -177.74.184.0/21 52783 -177.74.208.0/20 28343 -177.74.224.0/20 263652 -177.74.240.0/20 263653 -177.75.0.0/20 28178 -177.75.16.0/21 52812 -177.75.24.0/21 263647 -177.75.32.0/21 262808 -177.75.40.0/21 53040 -177.75.48.0/20 262588 -177.75.64.0/20 53087 -177.75.80.0/20 262544 -177.75.96.0/20 265889 -177.75.112.0/21 52819 -177.75.120.0/22 52819 -177.75.124.0/23 52819 -177.75.128.0/19 28146 -177.75.160.0/20 262592 -177.75.176.0/20 262596 -177.75.192.0/19 28331 -177.75.224.0/20 61851 -177.75.240.0/20 262601 -177.76.0.0/15 26599 -177.78.0.0/16 26599 -177.79.0.0/17 26599 -177.79.128.0/18 26599 -177.79.192.0/19 26599 -177.79.224.0/21 26599 -177.79.232.0/22 26599 -177.79.236.0/23 26599 -177.79.238.0/23 27699 -177.79.240.0/20 26599 -177.80.0.0/14 28573 -177.84.0.0/20 262575 -177.84.16.0/22 262576 -177.84.20.0/22 52715 -177.84.24.0/22 262577 -177.84.28.0/22 52716 -177.84.32.0/21 262578 -177.84.40.0/22 52708 -177.84.44.0/22 263514 -177.84.48.0/21 262579 -177.84.56.0/22 52709 -177.84.60.0/22 263516 -177.84.64.0/21 28171 -177.84.72.0/22 52719 -177.84.76.0/22 263534 -177.84.80.0/21 262581 -177.84.88.0/22 52711 -177.84.92.0/22 52724 -177.84.96.0/21 262582 -177.84.104.0/22 262584 -177.84.108.0/22 52721 -177.84.120.0/21 52718 -177.84.128.0/22 262586 -177.84.132.0/22 52998 -177.84.136.0/22 262591 -177.84.140.0/22 52724 -177.84.144.0/21 262587 -177.84.152.0/22 28198 -177.84.156.0/22 263551 -177.84.160.0/21 262589 -177.84.168.0/21 52727 -177.84.176.0/21 262420 -177.84.184.0/21 53082 -177.84.192.0/21 262590 -177.84.200.0/24 262534 -177.84.201.0/24 52740 -177.84.202.0/23 52735 -177.84.208.0/21 262535 -177.84.216.0/21 52729 -177.84.224.0/22 262593 -177.84.232.0/22 262605 -177.84.236.0/22 61689 -177.84.240.0/21 262594 -177.84.248.0/21 52731 -177.85.0.0/21 262595 -177.85.16.0/21 53043 -177.85.24.0/21 262732 -177.85.32.0/24 262597 -177.85.33.0/24 3356 -177.85.34.0/23 3356 -177.85.36.0/22 3356 -177.85.40.0/22 28580 -177.85.44.0/22 263296 -177.85.48.0/21 262599 -177.85.56.0/21 52737 -177.85.64.0/21 262600 -177.85.72.0/22 52739 -177.85.76.0/22 262296 -177.85.80.0/21 262602 -177.85.88.0/22 262748 -177.85.92.0/22 61902 -177.85.96.0/24 51167 -177.85.97.0/24 262603 -177.85.98.0/24 262603 -177.85.100.0/24 262603 -177.85.101.0/24 51167 -177.85.102.0/23 51167 -177.85.104.0/21 52741 -177.85.112.0/21 262607 -177.85.120.0/21 52745 -177.85.128.0/21 262608 -177.85.136.0/21 52548 -177.85.144.0/21 53045 -177.85.152.0/23 52552 -177.85.154.0/24 52555 -177.85.155.0/24 52569 -177.85.156.0/22 52564 -177.85.160.0/22 262609 -177.85.164.0/22 52743 -177.85.168.0/22 262613 -177.85.172.0/22 52746 -177.85.176.0/21 262611 -177.85.188.0/23 52558 -177.85.190.0/24 52558 -177.85.192.0/21 262612 -177.85.200.0/21 52554 -177.85.208.0/20 52848 -177.85.224.0/22 262616 -177.85.228.0/22 53213 -177.85.232.0/22 262617 -177.85.236.0/23 262515 -177.85.239.0/24 52825 -177.85.248.0/21 52556 -177.86.0.0/21 262619 -177.86.8.0/23 52557 -177.86.10.0/24 52557 -177.86.11.0/24 268042 -177.86.12.0/22 52557 -177.86.16.0/21 262620 -177.86.24.0/22 52566 -177.86.28.0/22 262492 -177.86.32.0/22 262621 -177.86.36.0/22 52549 -177.86.40.0/22 262622 -177.86.44.0/24 52550 -177.86.46.0/24 52550 -177.86.48.0/21 52851 -177.86.56.0/21 52567 -177.86.64.0/22 262623 -177.86.68.0/22 52560 -177.86.72.0/22 262627 -177.86.76.0/22 52561 -177.86.80.0/21 262625 -177.86.88.0/21 52568 -177.86.96.0/21 262506 -177.86.104.0/21 262903 -177.86.112.0/22 262628 -177.86.116.0/22 52570 -177.86.120.0/22 52852 -177.86.124.0/22 52571 -177.86.128.0/22 262630 -177.86.132.0/22 52581 -177.86.140.0/23 52582 -177.86.143.0/24 52608 -177.86.144.0/23 262529 -177.86.146.0/24 262529 -177.86.147.0/24 262851 -177.86.148.0/22 262851 -177.86.152.0/22 52572 -177.86.156.0/22 263324 -177.86.160.0/21 262633 -177.86.168.0/21 52573 -177.86.176.0/23 262634 -177.86.178.0/24 262634 -177.86.179.0/24 52729 -177.86.180.0/22 262634 -177.86.184.0/21 52575 -177.86.192.0/21 262635 -177.86.200.0/21 52576 -177.86.208.0/21 52854 -177.86.216.0/21 52577 -177.86.224.0/21 262640 -177.86.232.0/22 52578 -177.86.236.0/22 263377 -177.86.240.0/22 262641 -177.86.244.0/22 52584 -177.86.248.0/22 262644 -177.86.252.0/22 52586 -177.87.0.0/21 262642 -177.87.8.0/23 262617 -177.87.10.0/24 266532 -177.87.11.0/24 262617 -177.87.12.0/22 263383 -177.87.16.0/21 53171 -177.87.24.0/24 28338 -177.87.28.0/22 263384 -177.87.32.0/22 53184 -177.87.36.0/22 52588 -177.87.40.0/22 262646 -177.87.44.0/22 52589 -177.87.48.0/22 262647 -177.87.56.0/24 262648 -177.87.57.0/24 263097 -177.87.58.0/23 262648 -177.87.60.0/23 262648 -177.87.62.0/24 262648 -177.87.64.0/22 52858 -177.87.68.0/22 52591 -177.87.72.0/21 262650 -177.87.80.0/22 262652 -177.87.88.0/22 28334 -177.87.92.0/22 52592 -177.87.96.0/22 262654 -177.87.100.0/23 262655 -177.87.102.0/24 263094 -177.87.103.0/24 263095 -177.87.104.0/22 262300 -177.87.108.0/22 52594 -177.87.112.0/21 262301 -177.87.120.0/22 53211 -177.87.124.0/22 263385 -177.87.128.0/21 262302 -177.87.136.0/21 262303 -177.87.144.0/21 52859 -177.87.152.0/22 52579 -177.87.156.0/22 263387 -177.87.160.0/21 262304 -177.87.168.0/21 52583 -177.87.176.0/22 262306 -177.87.180.0/22 52603 -177.87.184.0/21 262308 -177.87.192.0/21 262307 -177.87.200.0/22 52587 -177.87.204.0/22 262691 -177.87.208.0/21 52860 -177.87.216.0/21 262907 -177.87.224.0/21 262309 -177.87.232.0/22 52593 -177.87.236.0/22 61905 -177.87.240.0/21 262310 -177.87.252.0/22 263389 -177.88.0.0/19 53237 -177.88.96.0/19 53237 -177.88.160.0/19 53237 -177.89.0.0/16 28220 -177.90.0.0/16 28571 -177.91.4.0/22 61896 -177.91.8.0/22 61897 -177.91.13.0/24 61898 -177.91.14.0/24 61898 -177.91.16.0/20 61895 -177.91.32.0/22 263424 -177.91.36.0/24 263425 -177.91.37.0/24 263428 -177.91.38.0/24 263438 -177.91.39.0/24 263488 -177.91.40.0/22 263426 -177.91.44.0/22 263427 -177.91.48.0/22 263429 -177.91.52.0/22 263430 -177.91.60.0/22 263293 -177.91.64.0/22 263431 -177.91.68.0/22 61899 -177.91.72.0/21 263432 -177.91.80.0/21 263433 -177.91.88.0/21 263437 -177.91.96.0/20 263436 -177.91.112.0/22 263439 -177.91.116.0/22 263440 -177.91.120.0/21 262317 -177.91.128.0/22 263441 -177.91.132.0/22 263443 -177.91.136.0/22 262908 -177.91.140.0/22 263295 -177.91.144.0/20 263442 -177.91.160.0/22 263444 -177.91.164.0/22 263445 -177.91.168.0/22 263446 -177.91.172.0/22 262355 -177.91.176.0/20 28306 -177.91.192.0/19 52945 -177.91.232.0/22 263450 -177.91.236.0/22 263454 -177.91.240.0/21 263449 -177.91.248.0/21 263224 -177.92.0.0/18 14868 -177.92.64.0/18 17222 -177.92.128.0/21 263108 -177.92.136.0/21 263124 -177.92.144.0/21 263120 -177.92.152.0/21 263125 -177.92.160.0/22 263117 -177.92.164.0/22 61918 -177.92.168.0/21 263107 -177.92.176.0/21 52573 -177.92.184.0/21 263126 -177.92.192.0/20 262729 -177.92.208.0/20 28586 -177.92.224.0/20 28279 -177.92.240.0/21 263130 -177.92.248.0/21 263152 -177.93.0.0/18 52632 -177.93.64.0/21 263137 -177.93.72.0/21 263163 -177.93.80.0/21 263142 -177.93.88.0/21 262582 -177.93.96.0/21 262488 -177.93.104.0/21 53107 -177.93.112.0/21 52928 -177.93.120.0/21 53046 -177.93.128.0/20 28366 -177.93.144.0/21 52861 -177.93.152.0/21 263153 -177.93.160.0/21 263159 -177.93.168.0/21 263154 -177.93.176.0/21 262777 -177.93.184.0/22 52869 -177.93.188.0/22 263166 -177.93.192.0/19 53075 -177.93.224.0/20 28663 -177.93.240.0/21 52828 -177.93.248.0/22 52995 -177.93.252.0/23 52995 -177.93.254.0/23 53242 -177.94.0.0/15 27699 -177.96.0.0/14 18881 -177.100.0.0/22 28573 -177.100.20.0/22 28573 -177.100.48.0/20 28573 -177.100.100.0/24 28573 -177.100.172.0/22 28573 -177.100.192.0/19 28573 -177.100.240.0/21 28573 -177.101.0.0/20 262604 -177.101.16.0/20 53046 -177.101.32.0/20 262606 -177.101.48.0/20 264016 -177.101.64.0/20 262610 -177.101.80.0/20 53047 -177.101.96.0/19 28343 -177.101.128.0/20 28158 -177.101.144.0/20 262790 -177.101.160.0/21 262615 -177.101.168.0/22 262615 -177.101.172.0/24 262615 -177.101.174.0/23 262615 -177.101.176.0/20 262668 -177.101.192.0/18 25933 -177.102.0.0/15 27699 -177.104.0.0/20 28343 -177.104.16.0/20 262624 -177.104.32.0/19 262742 -177.104.64.0/19 28258 -177.104.96.0/20 53053 -177.104.112.0/20 263655 -177.104.128.0/21 28640 -177.104.140.0/22 28640 -177.104.144.0/20 28640 -177.104.160.0/19 28640 -177.104.192.0/20 262632 -177.104.208.0/20 262638 -177.104.224.0/20 52972 -177.104.240.0/20 52657 -177.105.0.0/18 52853 -177.105.64.0/20 262637 -177.105.80.0/20 52855 -177.105.112.0/20 262643 -177.105.128.0/20 28634 -177.105.144.0/20 262462 -177.105.160.0/20 262645 -177.105.176.0/20 262649 -177.105.192.0/20 262651 -177.105.208.0/20 262653 -177.105.224.0/20 262313 -177.105.240.0/20 262314 -177.106.0.0/16 53006 -177.107.0.0/20 262730 -177.107.16.0/20 52690 -177.107.32.0/19 28329 -177.107.64.0/20 52862 -177.107.80.0/20 52697 -177.107.96.0/20 262323 -177.107.112.0/20 53065 -177.107.128.0/24 28250 -177.107.129.0/24 25933 -177.107.130.0/23 28250 -177.107.132.0/22 28250 -177.107.136.0/21 28250 -177.107.144.0/20 28250 -177.107.160.0/20 53137 -177.107.176.0/20 262476 -177.107.192.0/20 262329 -177.107.208.0/21 53101 -177.107.216.0/21 263506 -177.107.224.0/19 28658 -177.108.0.0/14 26615 -177.112.0.0/14 26599 -177.116.0.0/15 26599 -177.118.0.0/17 26599 -177.118.128.0/18 27699 -177.118.192.0/18 26599 -177.119.0.0/16 26599 -177.120.0.0/14 26615 -177.124.0.0/21 262311 -177.124.8.0/21 52597 -177.124.16.0/22 262312 -177.124.20.0/22 52612 -177.124.24.0/22 262315 -177.124.28.0/22 52615 -177.124.32.0/21 52861 -177.124.40.0/21 52599 -177.124.48.0/22 262316 -177.124.52.0/22 52616 -177.124.56.0/21 262318 -177.124.64.0/21 262317 -177.124.72.0/21 52601 -177.124.80.0/21 262319 -177.124.88.0/21 52602 -177.124.96.0/22 262320 -177.124.100.0/22 52617 -177.124.104.0/22 262321 -177.124.110.0/24 52620 -177.124.111.0/24 52623 -177.124.112.0/21 262322 -177.124.120.0/21 52604 -177.124.128.0/23 52863 -177.124.130.0/24 52863 -177.124.132.0/22 52618 -177.124.136.0/22 262324 -177.124.140.0/22 52624 -177.124.144.0/22 262325 -177.124.148.0/22 52625 -177.124.160.0/22 52864 -177.124.164.0/22 52629 -177.124.168.0/22 262327 -177.124.172.0/22 52630 -177.124.176.0/22 262328 -177.124.180.0/22 52633 -177.124.184.0/22 52865 -177.124.188.0/22 52634 -177.124.192.0/18 17222 -177.125.0.0/21 262330 -177.125.8.0/21 52605 -177.125.16.0/22 262332 -177.125.20.0/22 52635 -177.125.24.0/22 52866 -177.125.28.0/22 52642 -177.125.32.0/21 262333 -177.125.40.0/22 52606 -177.125.44.0/22 263619 -177.125.48.0/21 262334 -177.125.56.0/22 52607 -177.125.60.0/22 263394 -177.125.64.0/21 262335 -177.125.72.0/21 52766 -177.125.80.0/20 262336 -177.125.100.0/23 52628 -177.125.102.0/24 52645 -177.125.103.0/24 3356 -177.125.104.0/22 28288 -177.125.108.0/22 52644 -177.125.112.0/21 262342 -177.125.120.0/22 52611 -177.125.124.0/22 263395 -177.125.128.0/22 262344 -177.125.132.0/22 52641 -177.125.140.0/23 52646 -177.125.142.0/23 52886 -177.125.144.0/21 262345 -177.125.152.0/21 262394 -177.125.160.0/21 262346 -177.125.168.0/21 52613 -177.125.176.0/22 262349 -177.125.180.0/24 263122 -177.125.183.0/24 263045 -177.125.184.0/21 268323 -177.125.192.0/22 262351 -177.125.196.0/22 52647 -177.125.200.0/22 262353 -177.125.204.0/22 262346 -177.125.208.0/21 262354 -177.125.216.0/22 262355 -177.125.220.0/22 14457 -177.125.224.0/21 262699 -177.125.232.0/21 52693 -177.125.240.0/21 262360 -177.125.248.0/22 52858 -177.125.252.0/22 263396 -177.126.0.0/24 22381 -177.126.1.0/24 265303 -177.126.2.0/23 22381 -177.126.4.0/23 22381 -177.126.6.0/24 265303 -177.126.7.0/24 22381 -177.126.8.0/24 265303 -177.126.9.0/24 22381 -177.126.10.0/23 265303 -177.126.12.0/24 22381 -177.126.13.0/24 265303 -177.126.14.0/24 22381 -177.126.15.0/24 265303 -177.126.16.0/20 52706 -177.126.64.0/20 262338 -177.126.80.0/20 262352 -177.126.96.0/20 28303 -177.126.112.0/20 52720 -177.126.128.0/20 262343 -177.126.144.0/21 52714 -177.126.152.0/21 263520 -177.126.160.0/20 16397 -177.126.176.0/21 16397 -177.126.184.0/22 16397 -177.126.188.0/23 16397 -177.126.192.0/20 28224 -177.126.208.0/21 52717 -177.126.216.0/21 263522 -177.126.224.0/20 262680 -177.126.240.0/20 262363 -177.127.144.0/21 28573 -177.128.0.0/21 262361 -177.128.8.0/21 262444 -177.128.16.0/21 262362 -177.128.24.0/21 52631 -177.128.32.0/21 262364 -177.128.40.0/22 262367 -177.128.44.0/22 262605 -177.128.56.0/21 52638 -177.128.64.0/21 52869 -177.128.72.0/21 52643 -177.128.80.0/21 262365 -177.128.88.0/21 262805 -177.128.96.0/21 262368 -177.128.104.0/21 262385 -177.128.116.0/24 28148 -177.128.117.0/24 28253 -177.128.118.0/23 28196 -177.128.120.0/22 52870 -177.128.124.0/22 52862 -177.128.128.0/23 262372 -177.128.130.0/24 262372 -177.128.132.0/22 28337 -177.128.136.0/22 262373 -177.128.140.0/22 263131 -177.128.144.0/20 52744 -177.128.160.0/21 262374 -177.128.168.0/22 262376 -177.128.172.0/23 262513 -177.128.174.0/24 52522 -177.128.175.0/24 52523 -177.128.176.0/21 262377 -177.128.184.0/21 28587 -177.128.192.0/21 52872 -177.128.204.0/22 263418 -177.128.208.0/21 52873 -177.128.216.0/22 262661 -177.128.220.0/22 61570 -177.128.224.0/22 262379 -177.128.228.0/22 28592 -177.128.232.0/22 262380 -177.128.236.0/22 28621 -177.128.240.0/21 262381 -177.128.248.0/21 262777 -177.129.0.0/21 262383 -177.129.8.0/21 27720 -177.129.16.0/21 262807 -177.129.24.0/22 53184 -177.129.28.0/22 263266 -177.129.40.0/21 28257 -177.129.48.0/21 262385 -177.129.60.0/22 262327 -177.129.64.0/22 262389 -177.129.68.0/22 28639 -177.129.72.0/23 262390 -177.129.74.0/24 263061 -177.129.75.0/24 263063 -177.129.76.0/24 52883 -177.129.77.0/24 263088 -177.129.78.0/24 52885 -177.129.79.0/24 263630 -177.129.80.0/21 262393 -177.129.88.0/21 262394 -177.129.96.0/22 262395 -177.129.104.0/22 262396 -177.129.108.0/23 52529 -177.129.110.0/24 52534 -177.129.111.0/24 52538 -177.129.112.0/22 262397 -177.129.116.0/22 53029 -177.129.120.0/22 262900 -177.129.124.0/22 52540 -177.129.128.0/23 52874 -177.129.130.0/24 262815 -177.129.131.0/24 52874 -177.129.132.0/22 52874 -177.129.136.0/21 263584 -177.129.144.0/22 263040 -177.129.148.0/22 52520 -177.129.152.0/22 263041 -177.129.156.0/22 52541 -177.129.160.0/22 263042 -177.129.164.0/22 52546 -177.129.168.0/22 2914 -177.129.172.0/22 262937 -177.129.176.0/23 52876 -177.129.178.0/24 2 -177.129.179.0/24 52876 -177.129.180.0/24 52876 -177.129.182.0/23 52876 -177.129.184.0/21 262566 -177.129.192.0/22 263043 -177.129.196.0/22 262938 -177.129.200.0/22 263046 -177.129.204.0/22 262940 -177.129.208.0/21 263047 -177.129.216.0/22 263048 -177.129.220.0/22 262943 -177.129.224.0/22 263049 -177.129.232.0/21 263052 -177.129.248.0/21 28335 -177.130.0.0/20 28260 -177.130.16.0/20 52742 -177.130.32.0/20 53145 -177.130.48.0/20 52747 -177.130.64.0/20 262733 -177.130.80.0/20 262369 -177.130.96.0/20 28287 -177.130.112.0/20 52551 -177.130.128.0/18 28202 -177.130.192.0/19 28270 -177.130.224.0/20 28343 -177.130.240.0/21 28342 -177.130.248.0/21 52516 -177.131.0.0/20 262375 -177.131.16.0/20 262378 -177.131.32.0/20 262382 -177.131.48.0/20 262387 -177.131.64.0/19 28649 -177.131.96.0/20 262388 -177.131.112.0/24 53062 -177.131.113.0/24 262391 -177.131.114.0/23 262391 -177.131.116.0/22 262391 -177.131.120.0/21 262391 -177.131.144.0/21 52875 -177.131.152.0/22 52875 -177.131.156.0/23 52875 -177.131.158.0/24 52875 -177.131.160.0/19 28210 -177.131.192.0/18 28615 -177.132.0.0/15 18881 -177.134.0.0/17 18881 -177.134.128.0/19 18881 -177.134.160.0/19 10429 -177.134.192.0/19 18881 -177.134.224.0/19 10429 -177.135.0.0/16 18881 -177.136.0.0/21 52871 -177.136.8.0/22 36351 -177.136.12.0/22 52871 -177.136.16.0/20 52871 -177.136.32.0/19 52871 -177.136.64.0/21 263600 -177.136.72.0/22 263606 -177.136.76.0/22 263109 -177.136.80.0/22 262589 -177.136.88.0/21 28277 -177.136.96.0/21 263608 -177.136.104.0/21 263049 -177.136.112.0/24 53242 -177.136.113.0/24 52995 -177.136.114.0/23 53242 -177.136.116.0/22 53242 -177.136.120.0/21 53242 -177.136.128.0/19 28665 -177.136.160.0/21 52664 -177.136.168.0/22 263594 -177.136.172.0/22 61911 -177.136.176.0/21 263595 -177.136.184.0/21 263596 -177.136.192.0/21 53050 -177.136.200.0/22 262415 -177.136.208.0/21 52685 -177.136.216.0/21 262841 -177.136.224.0/22 263598 -177.136.228.0/24 263598 -177.136.229.0/24 265227 -177.136.230.0/23 263598 -177.136.232.0/21 263598 -177.136.240.0/20 263598 -177.137.0.0/20 53240 -177.137.16.0/21 53225 -177.137.24.0/22 53225 -177.137.28.0/23 53225 -177.137.30.0/24 53225 -177.137.31.0/24 31863 -177.137.32.0/20 28235 -177.137.48.0/21 53048 -177.137.56.0/21 263032 -177.137.64.0/20 28311 -177.137.80.0/21 262700 -177.137.88.0/21 53093 -177.137.96.0/20 263110 -177.137.112.0/21 52600 -177.137.120.0/21 263015 -177.137.128.0/20 263053 -177.137.144.0/21 262461 -177.137.152.0/21 263632 -177.137.160.0/20 263066 -177.137.188.0/23 53163 -177.137.192.0/21 53059 -177.137.200.0/24 53059 -177.137.201.0/24 50359 -177.137.202.0/23 53059 -177.137.204.0/23 53059 -177.137.206.0/24 50359 -177.137.207.0/24 53059 -177.137.208.0/20 263087 -177.137.224.0/20 28173 -177.137.240.0/21 28171 -177.137.248.0/21 52748 -177.138.0.0/15 27699 -177.140.0.0/15 28573 -177.142.0.0/16 28573 -177.143.0.0/17 28573 -177.143.128.0/19 28573 -177.143.160.0/20 28573 -177.143.176.0/21 28573 -177.143.184.0/22 28573 -177.143.192.0/18 28573 -177.144.0.0/17 26599 -177.144.128.0/18 27699 -177.144.192.0/18 26599 -177.145.0.0/16 26599 -177.146.0.0/15 26599 -177.148.0.0/14 26615 -177.152.0.0/20 262399 -177.152.16.0/21 262399 -177.152.24.0/23 262399 -177.152.27.0/24 262399 -177.152.28.0/22 262399 -177.152.32.0/20 28169 -177.152.52.0/22 61912 -177.152.56.0/21 52519 -177.152.64.0/20 262773 -177.152.80.0/21 52527 -177.152.88.0/21 52535 -177.152.112.0/21 52536 -177.152.124.0/23 61913 -177.152.128.0/22 28618 -177.152.132.0/24 28618 -177.152.134.0/23 28618 -177.152.136.0/21 28618 -177.152.144.0/21 52542 -177.152.152.0/21 52544 -177.152.160.0/20 28201 -177.152.176.0/21 52547 -177.152.184.0/22 61889 -177.152.188.0/22 263106 -177.152.192.0/21 263034 -177.152.200.0/23 263034 -177.152.203.0/24 263034 -177.152.204.0/22 263034 -177.152.208.0/20 263034 -177.152.224.0/19 263034 -177.153.0.0/16 27715 -177.154.0.0/20 262664 -177.154.16.0/22 262942 -177.154.20.0/22 262474 -177.154.24.0/22 262945 -177.154.28.0/22 263145 -177.154.32.0/20 262272 -177.154.48.0/21 262946 -177.154.56.0/21 262947 -177.154.64.0/21 267484 -177.154.72.0/21 28349 -177.154.80.0/21 262949 -177.154.88.0/22 262960 -177.154.92.0/24 262963 -177.154.94.0/24 263560 -177.154.95.0/24 263376 -177.154.96.0/20 262688 -177.154.112.0/24 262959 -177.154.114.0/23 262959 -177.154.116.0/24 262959 -177.154.128.0/19 16397 -177.154.160.0/20 262288 -177.154.176.0/20 53038 -177.154.192.0/19 262293 -177.154.224.0/20 262298 -177.154.240.0/20 262865 -177.155.0.0/18 28615 -177.155.64.0/20 52748 -177.155.80.0/22 263583 -177.155.84.0/22 263129 -177.155.88.0/21 263586 -177.155.96.0/22 28652 -177.155.100.0/23 28652 -177.155.102.0/23 265233 -177.155.104.0/22 265233 -177.155.108.0/22 28652 -177.155.112.0/20 263616 -177.155.128.0/20 53062 -177.155.144.0/20 263622 -177.155.160.0/20 52752 -177.155.176.0/22 264100 -177.155.180.0/22 52753 -177.155.184.0/21 264100 -177.155.192.0/21 262828 -177.155.200.0/21 53222 -177.155.208.0/20 52771 -177.155.224.0/22 52773 -177.155.228.0/22 61797 -177.155.232.0/21 263620 -177.155.240.0/21 52778 -177.155.248.0/22 262419 -177.155.252.0/22 263119 -177.156.0.0/15 18881 -177.158.0.0/16 18881 -177.159.0.0/18 18881 -177.159.64.0/19 18881 -177.159.96.0/21 18881 -177.159.104.0/22 18881 -177.159.108.0/23 10429 -177.159.110.0/23 18881 -177.159.112.0/20 18881 -177.159.128.0/17 18881 -177.160.0.0/14 26599 -177.164.0.0/14 26615 -177.168.0.0/13 26599 -177.176.0.0/14 7738 -177.180.0.0/15 28573 -177.182.0.0/17 28573 -177.182.128.0/18 28573 -177.182.192.0/19 28573 -177.183.0.0/16 28573 -177.184.0.0/19 26592 -177.184.32.0/20 28362 -177.184.48.0/20 52896 -177.184.64.0/20 52898 -177.184.80.0/21 52902 -177.184.96.0/19 262673 -177.184.128.0/20 28368 -177.184.144.0/21 263581 -177.184.152.0/21 263587 -177.184.160.0/20 52920 -177.184.176.0/20 52923 -177.184.192.0/20 28165 -177.184.208.0/22 263572 -177.184.212.0/22 263112 -177.184.216.0/22 263573 -177.184.220.0/22 263116 -177.184.224.0/23 52924 -177.184.226.0/24 52924 -177.184.228.0/22 52924 -177.184.232.0/21 52924 -177.184.240.0/21 262877 -177.184.248.0/21 262605 -177.185.0.0/20 52925 -177.185.16.0/20 262375 -177.185.32.0/21 52927 -177.185.40.0/21 263574 -177.185.48.0/20 52930 -177.185.64.0/19 52928 -177.185.96.0/20 52931 -177.185.112.0/21 52932 -177.185.120.0/22 263577 -177.185.124.0/22 262907 -177.185.128.0/20 52936 -177.185.144.0/21 262862 -177.185.152.0/21 263419 -177.185.160.0/20 53008 -177.185.176.0/20 267452 -177.185.192.0/20 28299 -177.185.208.0/20 263599 -177.185.224.0/20 28280 -177.185.240.0/20 263623 -177.186.0.0/15 26615 -177.188.0.0/15 27699 -177.190.0.0/18 28151 -177.190.64.0/21 263289 -177.190.72.0/21 263135 -177.190.80.0/24 262977 -177.190.82.0/23 262977 -177.190.84.0/22 262977 -177.190.88.0/21 262977 -177.190.96.0/20 22356 -177.190.112.0/20 53169 -177.190.128.0/22 263452 -177.190.132.0/22 263455 -177.190.136.0/21 263453 -177.190.144.0/22 263456 -177.190.148.0/22 263461 -177.190.152.0/21 263457 -177.190.160.0/21 263458 -177.190.168.0/21 263459 -177.190.176.0/21 262504 -177.190.184.0/21 263462 -177.190.192.0/20 262731 -177.190.208.0/22 263463 -177.190.212.0/24 263313 -177.190.213.0/24 263323 -177.190.214.0/24 263403 -177.190.215.0/24 28201 -177.190.216.0/23 263464 -177.190.219.0/24 263464 -177.190.220.0/22 263464 -177.190.224.0/20 263465 -177.190.240.0/22 262393 -177.190.244.0/23 263118 -177.190.246.0/24 61933 -177.190.248.0/21 263303 -177.191.0.0/16 53006 -177.192.0.0/14 28573 -177.196.0.0/16 26599 -177.197.0.0/18 26599 -177.197.64.0/19 27699 -177.197.96.0/20 27699 -177.197.112.0/20 26599 -177.197.128.0/17 26599 -177.198.0.0/15 26599 -177.200.0.0/20 52775 -177.200.16.0/20 263628 -177.200.32.0/20 52777 -177.200.48.0/20 52781 -177.200.64.0/20 52783 -177.200.80.0/20 28368 -177.200.96.0/20 28306 -177.200.112.0/20 263636 -177.200.144.0/20 52793 -177.200.160.0/20 52794 -177.200.176.0/20 262526 -177.200.192.0/19 28343 -177.200.240.0/20 52824 -177.201.0.0/16 8167 -177.202.0.0/15 8167 -177.204.0.0/17 18881 -177.204.128.0/19 18881 -177.204.160.0/20 18881 -177.204.176.0/20 10429 -177.204.192.0/18 18881 -177.205.0.0/21 10429 -177.205.8.0/21 18881 -177.205.16.0/20 10429 -177.205.32.0/19 18881 -177.205.64.0/18 18881 -177.205.128.0/20 18881 -177.205.144.0/21 18881 -177.205.152.0/22 10429 -177.205.156.0/22 18881 -177.205.160.0/20 18881 -177.205.176.0/21 10429 -177.205.184.0/21 18881 -177.205.192.0/18 18881 -177.206.0.0/17 18881 -177.206.128.0/18 18881 -177.206.192.0/21 18881 -177.206.200.0/21 10429 -177.206.208.0/20 18881 -177.206.224.0/19 18881 -177.207.0.0/18 18881 -177.207.64.0/20 18881 -177.207.80.0/21 18881 -177.207.88.0/21 10429 -177.207.96.0/19 18881 -177.207.128.0/20 18881 -177.207.144.0/21 18881 -177.207.152.0/22 18881 -177.207.156.0/22 10429 -177.207.160.0/22 10429 -177.207.164.0/22 18881 -177.207.168.0/21 18881 -177.207.176.0/20 18881 -177.207.192.0/18 18881 -177.208.0.0/14 7738 -177.212.0.0/14 26599 -177.216.0.0/14 26615 -177.220.0.0/17 53187 -177.220.128.0/18 14868 -177.220.192.0/18 25933 -177.221.0.0/19 28294 -177.221.32.0/20 53144 -177.221.48.0/21 263660 -177.221.56.0/22 263661 -177.221.60.0/22 263672 -177.221.64.0/21 52651 -177.221.72.0/21 262336 -177.221.80.0/20 52653 -177.221.96.0/20 52654 -177.221.112.0/21 52668 -177.221.120.0/21 262789 -177.221.160.0/20 28343 -177.221.176.0/21 52673 -177.221.192.0/19 52682 -177.221.224.0/20 53022 -177.221.240.0/20 263467 -177.222.0.0/22 52840 -177.222.14.0/23 61512 -177.222.16.0/20 28165 -177.222.40.0/23 27882 -177.222.47.0/24 27882 -177.222.49.0/24 27882 -177.222.56.0/22 27882 -177.222.64.0/23 263053 -177.222.128.0/20 263382 -177.222.144.0/20 263386 -177.222.160.0/21 263388 -177.222.168.0/21 61906 -177.222.176.0/21 263390 -177.222.184.0/22 263390 -177.222.188.0/23 263390 -177.222.191.0/24 263390 -177.222.192.0/21 263391 -177.222.200.0/21 263393 -177.222.208.0/21 263397 -177.222.216.0/21 263398 -177.222.224.0/22 263399 -177.222.228.0/22 263402 -177.222.232.0/21 263400 -177.222.240.0/21 263401 -177.222.248.0/21 263405 -177.223.0.0/20 52699 -177.223.16.0/20 52702 -177.223.32.0/20 28266 -177.223.48.0/20 263500 -177.223.64.0/20 52722 -177.223.80.0/20 52562 -177.223.96.0/20 52726 -177.223.112.0/20 262360 -177.223.160.0/19 28300 -177.223.192.0/19 28271 -177.223.224.0/20 52559 -177.223.240.0/20 53152 -177.224.0.0/17 13999 -177.224.128.0/18 13999 -177.224.192.0/19 27672 -177.224.224.0/19 13999 -177.225.0.0/17 13999 -177.225.128.0/19 13999 -177.225.160.0/20 13999 -177.225.176.0/20 27672 -177.225.192.0/19 13999 -177.225.224.0/21 28541 -177.225.232.0/21 13999 -177.225.240.0/20 13999 -177.226.0.0/20 13999 -177.226.16.0/20 28541 -177.226.32.0/19 13999 -177.226.64.0/19 13999 -177.226.96.0/19 27672 -177.226.128.0/17 13999 -177.227.0.0/16 13999 -177.228.0.0/20 13999 -177.228.16.0/21 13999 -177.228.24.0/23 13999 -177.228.26.0/24 13999 -177.228.28.0/23 13999 -177.228.30.0/24 13999 -177.228.32.0/19 13999 -177.228.64.0/18 13999 -177.228.128.0/18 13999 -177.228.192.0/19 13999 -177.229.0.0/19 13999 -177.229.32.0/20 28541 -177.229.48.0/20 13999 -177.229.64.0/19 13999 -177.229.96.0/19 27672 -177.229.128.0/19 13999 -177.229.160.0/20 13999 -177.229.176.0/20 28541 -177.229.192.0/19 27672 -177.229.224.0/19 13999 -177.230.0.0/17 13999 -177.230.128.0/19 13999 -177.230.160.0/20 13999 -177.230.176.0/21 13999 -177.230.184.0/22 13999 -177.230.188.0/23 13999 -177.230.190.0/24 13999 -177.230.192.0/18 13999 -177.231.0.0/19 28541 -177.231.32.0/19 13999 -177.231.64.0/18 13999 -177.231.128.0/17 13999 -177.232.0.0/23 13591 -177.232.2.0/23 28534 -177.232.4.0/22 28544 -177.232.8.0/21 13591 -177.232.16.0/20 13591 -177.232.32.0/19 13591 -177.232.64.0/20 13591 -177.232.80.0/22 28531 -177.232.84.0/22 28536 -177.232.88.0/22 28537 -177.232.92.0/22 13591 -177.232.96.0/21 13591 -177.232.104.0/22 13591 -177.232.108.0/23 13591 -177.232.110.0/24 28544 -177.232.111.0/24 13591 -177.232.112.0/20 13591 -177.232.128.0/17 13591 -177.233.0.0/19 13591 -177.233.32.0/20 13591 -177.233.48.0/23 13591 -177.233.50.0/24 28536 -177.233.51.0/24 13591 -177.233.52.0/22 13591 -177.233.56.0/21 13591 -177.233.64.0/20 13591 -177.233.80.0/21 13591 -177.233.88.0/23 13591 -177.233.90.0/24 28537 -177.233.91.0/24 13591 -177.233.92.0/22 13591 -177.233.96.0/19 13591 -177.233.128.0/22 13591 -177.233.132.0/23 28534 -177.233.134.0/24 13591 -177.233.135.0/24 28535 -177.233.136.0/23 28531 -177.233.138.0/23 13591 -177.233.140.0/22 13591 -177.233.144.0/20 13591 -177.233.160.0/23 13591 -177.233.162.0/24 13591 -177.233.163.0/24 28534 -177.233.164.0/22 13591 -177.233.168.0/21 13591 -177.233.176.0/20 13591 -177.233.192.0/23 13591 -177.233.194.0/24 13591 -177.233.195.0/24 28543 -177.233.196.0/22 13591 -177.233.200.0/22 13591 -177.233.204.0/23 28534 -177.233.206.0/23 13591 -177.233.208.0/20 13591 -177.233.224.0/19 13591 -177.234.128.0/24 19037 -177.234.129.0/24 11664 -177.234.130.0/24 19037 -177.234.131.0/24 11664 -177.234.132.0/22 262333 -177.234.136.0/21 263821 -177.234.144.0/21 33182 -177.234.152.0/24 3356 -177.234.153.0/24 33182 -177.234.154.0/24 3356 -177.234.155.0/24 33182 -177.234.156.0/22 33182 -177.234.160.0/19 263250 -177.234.192.0/18 27765 -177.235.0.0/16 28573 -177.236.0.0/20 28509 -177.236.16.0/20 28554 -177.236.32.0/20 28509 -177.236.48.0/20 28554 -177.236.64.0/20 28554 -177.236.80.0/20 28545 -177.236.128.0/22 28538 -177.236.132.0/22 28555 -177.236.140.0/23 28555 -177.236.142.0/23 18734 -177.236.144.0/20 28555 -177.236.165.0/24 28538 -177.236.166.0/23 28509 -177.236.169.0/24 28509 -177.236.170.0/23 28509 -177.236.172.0/23 28555 -177.236.176.0/20 28554 -177.236.192.0/18 28509 -177.237.0.0/19 28509 -177.237.32.0/20 28555 -177.237.48.0/20 28512 -177.237.64.0/21 28512 -177.237.72.0/22 28512 -177.237.76.0/23 28512 -177.237.78.0/24 28512 -177.237.79.0/24 28545 -177.237.80.0/20 28512 -177.237.96.0/19 28512 -177.237.128.0/18 28545 -177.237.240.0/20 28509 -177.238.0.0/19 28509 -177.238.32.0/20 28509 -177.238.48.0/24 28509 -177.238.64.0/20 28509 -177.238.96.0/19 28509 -177.238.128.0/19 28509 -177.238.160.0/20 28509 -177.238.184.0/24 28554 -177.238.185.0/24 28545 -177.238.186.0/24 28509 -177.238.187.0/24 28554 -177.238.190.0/24 28545 -177.238.191.0/24 28509 -177.238.208.0/20 28509 -177.238.224.0/20 28509 -177.238.240.0/21 28509 -177.238.248.0/24 28509 -177.238.249.0/24 28555 -177.238.250.0/24 18734 -177.238.251.0/24 28549 -177.238.252.0/23 28554 -177.238.254.0/23 28509 -177.239.0.0/19 28555 -177.239.32.0/20 28554 -177.239.48.0/20 28509 -177.239.64.0/19 28509 -177.239.109.0/24 28509 -177.239.110.0/23 28509 -177.239.115.0/24 28509 -177.239.117.0/24 28509 -177.239.118.0/23 28509 -177.239.120.0/21 28509 -177.239.128.0/19 28509 -177.239.160.0/21 28554 -177.239.169.0/24 28509 -177.239.174.0/24 28509 -177.239.175.0/24 18734 -177.239.196.0/22 28509 -177.239.200.0/21 28509 -177.239.216.0/21 28509 -177.239.224.0/22 28554 -177.239.230.0/24 28512 -177.239.232.0/22 28509 -177.239.236.0/24 28538 -177.239.237.0/24 28509 -177.239.240.0/20 28509 -177.240.0.0/18 13999 -177.240.96.0/19 13999 -177.240.128.0/19 27672 -177.240.192.0/21 13999 -177.240.200.0/22 13999 -177.240.208.0/20 13999 -177.240.224.0/19 13999 -177.241.0.0/17 13999 -177.241.128.0/19 13999 -177.241.192.0/19 13999 -177.241.224.0/22 13999 -177.241.228.0/23 13999 -177.241.232.0/22 13999 -177.241.236.0/22 28481 -177.241.241.0/24 13999 -177.241.242.0/23 13999 -177.241.244.0/23 13999 -177.241.246.0/24 13999 -177.241.248.0/21 13999 -177.242.0.0/18 13999 -177.242.64.0/19 28481 -177.242.100.0/22 13999 -177.242.104.0/21 13999 -177.242.112.0/20 13999 -177.242.128.0/17 13999 -177.243.0.0/17 27672 -177.243.128.0/20 27672 -177.243.144.0/20 13999 -177.243.160.0/19 13999 -177.243.192.0/18 13999 -177.244.0.0/17 13999 -177.244.128.0/18 13999 -177.244.192.0/19 13999 -177.244.224.0/21 13999 -177.244.232.0/22 13999 -177.244.240.0/20 13999 -177.245.0.0/18 13999 -177.245.64.0/19 13999 -177.245.96.0/20 13999 -177.245.112.0/21 28541 -177.245.120.0/21 13999 -177.245.128.0/19 27672 -177.245.160.0/19 13999 -177.245.192.0/18 13999 -177.246.0.0/18 13999 -177.246.64.0/19 13999 -177.246.96.0/20 28541 -177.246.112.0/20 13999 -177.246.128.0/18 13999 -177.246.192.0/20 13999 -177.246.208.0/21 13999 -177.246.216.0/21 28481 -177.246.224.0/19 13999 -177.247.0.0/21 13999 -177.247.8.0/24 13999 -177.247.10.0/24 13999 -177.247.12.0/24 26291 -177.247.14.0/24 13999 -177.247.16.0/20 13999 -177.247.32.0/19 13999 -177.247.64.0/18 13999 -177.247.128.0/19 13999 -177.247.160.0/20 13999 -177.247.176.0/21 13999 -177.247.184.0/21 28541 -177.247.192.0/18 13999 -177.248.0.0/16 16960 -177.249.0.0/19 16960 -177.249.32.0/20 16960 -177.249.56.0/22 13591 -177.249.63.0/24 16960 -177.249.64.0/18 16960 -177.249.128.0/17 16960 -177.250.0.0/16 27866 -177.251.0.0/17 27866 -177.251.128.0/18 27866 -177.251.192.0/19 27866 -177.251.224.0/20 27866 -177.251.240.0/21 27866 -177.251.248.0/22 27866 -177.251.252.0/22 27768 -177.252.0.0/14 27831 -178.0.0.0/12 3209 -178.16.0.0/20 13122 -178.16.16.0/20 12993 -178.16.32.0/20 21412 -178.16.48.0/21 40999 -178.16.56.0/21 15817 -178.16.64.0/20 16175 -178.16.80.0/20 44387 -178.16.96.0/20 42914 -178.16.112.0/24 33895 -178.16.113.0/24 61078 -178.16.114.0/24 197437 -178.16.115.0/24 199442 -178.16.117.0/24 198881 -178.16.118.0/24 198489 -178.16.119.0/24 34656 -178.16.121.0/24 12741 -178.16.122.0/24 199371 -178.16.124.0/24 208750 -178.16.125.0/24 56872 -178.16.126.0/24 205748 -178.16.128.0/20 20956 -178.16.144.0/22 8492 -178.16.148.0/24 43349 -178.16.149.0/24 8492 -178.16.150.0/23 8492 -178.16.152.0/22 8492 -178.16.156.0/24 8492 -178.16.157.0/24 43370 -178.16.158.0/23 8492 -178.16.160.0/20 34177 -178.16.176.0/20 34263 -178.16.192.0/20 43406 -178.16.208.0/20 50821 -178.16.224.0/21 8468 -178.16.237.0/24 8468 -178.16.238.0/23 8586 -178.16.240.0/20 30801 -178.17.0.0/20 50825 -178.17.16.0/20 44252 -178.17.32.0/23 31463 -178.17.34.0/24 31463 -178.17.35.0/24 39545 -178.17.36.0/22 31463 -178.17.40.0/23 31463 -178.17.42.0/23 39545 -178.17.44.0/23 39545 -178.17.46.0/24 39545 -178.17.47.0/24 31463 -178.17.48.0/20 48407 -178.17.64.0/21 1273 -178.17.72.0/23 1273 -178.17.76.0/22 1273 -178.17.80.0/20 48474 -178.17.96.0/20 6830 -178.17.112.0/20 1886 -178.17.128.0/20 42514 -178.17.144.0/20 41164 -178.17.160.0/20 43289 -178.17.176.0/22 43038 -178.17.192.0/20 34139 -178.17.208.0/22 210279 -178.17.212.0/22 15570 -178.17.216.0/24 210085 -178.17.217.0/24 205257 -178.17.224.0/21 62023 -178.17.232.0/22 62023 -178.17.236.0/23 62023 -178.17.238.0/23 197711 -178.17.240.0/20 49375 -178.18.0.0/22 39264 -178.18.4.0/23 39264 -178.18.6.0/23 197235 -178.18.8.0/22 39264 -178.18.12.0/23 39264 -178.18.15.0/24 39264 -178.18.20.0/22 60781 -178.18.24.0/23 60781 -178.18.27.0/24 60781 -178.18.28.0/23 50673 -178.18.30.0/23 60781 -178.18.32.0/20 31252 -178.18.48.0/20 39180 -178.18.64.0/20 51653 -178.18.80.0/20 35470 -178.18.96.0/20 8427 -178.18.112.0/20 50056 -178.18.128.0/20 25459 -178.18.149.0/24 48039 -178.18.151.0/24 12586 -178.18.156.0/22 48039 -178.18.160.0/20 8559 -178.18.176.0/20 39847 -178.18.192.0/22 50941 -178.18.196.0/24 50941 -178.18.197.0/24 43391 -178.18.198.0/23 50941 -178.18.200.0/22 50941 -178.18.204.0/24 43391 -178.18.205.0/24 50941 -178.18.206.0/23 50941 -178.18.208.0/20 51118 -178.18.228.0/23 31500 -178.18.230.0/23 50952 -178.18.232.0/24 50952 -178.18.240.0/20 31147 -178.19.0.0/20 49011 -178.19.16.0/20 50962 -178.19.32.0/22 207046 -178.19.44.0/22 207046 -178.19.48.0/20 44735 -178.19.64.0/20 29551 -178.19.80.0/20 13237 -178.19.96.0/24 59491 -178.19.97.0/24 39869 -178.19.98.0/24 39869 -178.19.99.0/24 59491 -178.19.100.0/22 39869 -178.19.104.0/21 59491 -178.19.112.0/20 50673 -178.19.128.0/20 197076 -178.19.144.0/20 31115 -178.19.160.0/21 196865 -178.19.168.0/22 196865 -178.19.172.0/22 202761 -178.19.176.0/20 51155 -178.19.192.0/20 15389 -178.19.208.0/20 50324 -178.19.224.0/20 199284 -178.19.240.0/20 47236 -178.20.0.0/21 44229 -178.20.8.0/21 29037 -178.20.16.0/21 204170 -178.20.24.0/22 199338 -178.20.28.0/22 204941 -178.20.32.0/21 50627 -178.20.48.0/22 29075 -178.20.52.0/23 29075 -178.20.54.0/24 50618 -178.20.55.0/24 29075 -178.20.56.0/21 34612 -178.20.64.0/21 29608 -178.20.72.0/21 203489 -178.20.80.0/21 39449 -178.20.88.0/21 15366 -178.20.96.0/21 45031 -178.20.104.0/22 8896 -178.20.108.0/22 64401 -178.20.112.0/21 196966 -178.20.120.0/24 1241 -178.20.136.0/21 20723 -178.20.144.0/21 29684 -178.20.152.0/21 42331 -178.20.160.0/21 50653 -178.20.168.0/21 50655 -178.20.176.0/21 25592 -178.20.184.0/21 50670 -178.20.192.0/21 197107 -178.20.200.0/24 6700 -178.20.201.0/24 41897 -178.20.202.0/23 41897 -178.20.204.0/22 6700 -178.20.208.0/22 133115 -178.20.212.0/22 174 -178.20.216.0/23 42553 -178.20.218.0/24 42553 -178.20.219.0/24 31027 -178.20.220.0/23 31027 -178.20.222.0/23 42553 -178.20.224.0/21 57844 -178.20.232.0/21 49063 -178.20.240.0/21 50834 -178.20.248.0/21 59545 -178.21.0.0/21 196968 -178.21.8.0/24 197695 -178.21.9.0/24 49352 -178.21.10.0/23 197695 -178.21.12.0/22 49352 -178.21.16.0/21 50673 -178.21.24.0/21 20483 -178.21.32.0/24 174 -178.21.34.0/23 203258 -178.21.39.0/24 203258 -178.21.40.0/23 52070 -178.21.45.0/24 52155 -178.21.46.0/23 52155 -178.21.48.0/21 44651 -178.21.56.0/21 35454 -178.21.64.0/21 50713 -178.21.72.0/21 39806 -178.21.80.0/21 20574 -178.21.88.0/21 43557 -178.21.96.0/24 198471 -178.21.98.0/23 198471 -178.21.102.0/23 198471 -178.21.104.0/22 50715 -178.21.108.0/24 50715 -178.21.109.0/24 197267 -178.21.110.0/24 197267 -178.21.111.0/24 206826 -178.21.112.0/22 29028 -178.21.116.0/23 29028 -178.21.118.0/24 198485 -178.21.119.0/24 29028 -178.21.120.0/21 49909 -178.21.128.0/21 29486 -178.21.136.0/21 197480 -178.21.144.0/21 12306 -178.21.152.0/21 31621 -178.21.160.0/21 21419 -178.21.168.0/21 199081 -178.21.176.0/21 34659 -178.21.184.0/21 202895 -178.21.192.0/21 49283 -178.21.200.0/21 44473 -178.21.209.0/24 43635 -178.21.210.0/23 50845 -178.21.212.0/23 50845 -178.21.216.0/21 38915 -178.21.224.0/21 41549 -178.21.232.0/21 44671 -178.21.240.0/21 50794 -178.21.248.0/21 196997 -178.22.0.0/21 50796 -178.22.8.0/23 15570 -178.22.10.0/23 14742 -178.22.12.0/24 48631 -178.22.13.0/24 14742 -178.22.14.0/24 15570 -178.22.32.0/21 51018 -178.22.40.0/23 202058 -178.22.42.0/23 31499 -178.22.44.0/23 202058 -178.22.46.0/23 31499 -178.22.48.0/21 44943 -178.22.56.0/21 12859 -178.22.64.0/21 50837 -178.22.77.0/24 62229 -178.22.78.0/23 62229 -178.22.80.0/21 41887 -178.22.88.0/23 47764 -178.22.90.0/23 21051 -178.22.92.0/23 21051 -178.22.94.0/23 47764 -178.22.96.0/21 49409 -178.22.104.0/21 8758 -178.22.112.0/21 197013 -178.22.120.0/21 43754 -178.22.128.0/21 50858 -178.22.136.0/21 42353 -178.22.144.0/21 44902 -178.22.152.0/21 8784 -178.22.160.0/21 203987 -178.22.168.0/21 41798 -178.22.176.0/21 25540 -178.22.184.0/21 50891 -178.22.192.0/21 31724 -178.22.200.0/21 51899 -178.22.208.0/21 19701 -178.22.216.0/21 203877 -178.22.224.0/21 42367 -178.22.232.0/21 50901 -178.22.240.0/21 50894 -178.22.248.0/21 203591 -178.23.0.0/21 13257 -178.23.8.0/21 197126 -178.23.16.0/21 42298 -178.23.24.0/23 43566 -178.23.27.0/24 43566 -178.23.28.0/23 43566 -178.23.32.0/21 50903 -178.23.40.0/23 44806 -178.23.48.0/21 197242 -178.23.56.0/21 51294 -178.23.64.0/21 2614 -178.23.72.0/21 50919 -178.23.80.0/21 38955 -178.23.88.0/21 50953 -178.23.96.0/21 197212 -178.23.104.0/21 197064 -178.23.112.0/21 2586 -178.23.120.0/21 50372 -178.23.128.0/21 51043 -178.23.136.0/21 8343 -178.23.144.0/21 50928 -178.23.152.0/21 197036 -178.23.160.0/21 34660 -178.23.168.0/21 196810 -178.23.176.0/21 196724 -178.23.192.0/23 47640 -178.23.200.0/21 198916 -178.23.208.0/21 29680 -178.23.216.0/21 50971 -178.23.224.0/21 24663 -178.23.232.0/21 39906 -178.23.240.0/21 3292 -178.23.248.0/21 6836 -178.24.0.0/14 31334 -178.28.0.0/14 2119 -178.32.0.0/15 16276 -178.34.0.0/18 12389 -178.34.96.0/19 12389 -178.34.128.0/20 12389 -178.34.144.0/21 12389 -178.34.152.0/21 201776 -178.34.160.0/20 12389 -178.34.176.0/20 201776 -178.34.192.0/20 12389 -178.34.208.0/20 43132 -178.34.224.0/19 42548 -178.35.0.0/17 12389 -178.35.128.0/21 12389 -178.35.136.0/22 33934 -178.35.140.0/22 12389 -178.35.144.0/22 33934 -178.35.148.0/24 33934 -178.35.149.0/24 12389 -178.35.150.0/23 12389 -178.35.152.0/24 12389 -178.35.153.0/24 33934 -178.35.154.0/23 33934 -178.35.156.0/22 12389 -178.35.160.0/21 12389 -178.35.168.0/22 33934 -178.35.172.0/24 12389 -178.35.173.0/24 33934 -178.35.174.0/23 33934 -178.35.176.0/20 33934 -178.35.192.0/19 35177 -178.35.224.0/19 12389 -178.36.0.0/15 12741 -178.38.0.0/15 6730 -178.40.0.0/15 6855 -178.42.0.0/15 5617 -178.44.0.0/14 12389 -178.48.0.0/16 6830 -178.49.0.0/16 31200 -178.50.0.0/15 47377 -178.52.0.0/16 29256 -178.53.0.0/16 29357 -178.54.0.0/17 29107 -178.54.128.0/17 48437 -178.55.0.0/16 16086 -178.56.0.0/16 5617 -178.57.0.0/19 201952 -178.57.32.0/20 44507 -178.57.48.0/21 44507 -178.57.56.0/21 50477 -178.57.64.0/24 43297 -178.57.69.0/24 43297 -178.57.71.0/24 38971 -178.57.72.0/21 49063 -178.57.80.0/21 197453 -178.57.88.0/22 197453 -178.57.92.0/24 201275 -178.57.93.0/24 197453 -178.57.94.0/24 200762 -178.57.95.0/24 208165 -178.57.96.0/19 60139 -178.57.128.0/18 12430 -178.57.192.0/20 43550 -178.57.208.0/21 50596 -178.57.216.0/21 203226 -178.57.224.0/19 21453 -178.58.0.0/16 5603 -178.59.0.0/18 6866 -178.59.64.0/19 6866 -178.59.96.0/21 6866 -178.59.104.0/21 3329 -178.59.112.0/20 3329 -178.59.128.0/18 6866 -178.59.192.0/18 3329 -178.60.0.0/17 12334 -178.60.128.0/18 12334 -178.60.192.0/22 12334 -178.60.196.0/24 12334 -178.60.197.0/24 199949 -178.60.198.0/23 12334 -178.60.200.0/21 12334 -178.60.208.0/20 12334 -178.60.224.0/19 12334 -178.61.0.0/16 21050 -178.62.0.0/16 14061 -178.63.0.0/16 24940 -178.64.0.0/13 12389 -178.72.0.0/19 1299 -178.72.32.0/19 2116 -178.72.64.0/21 44257 -178.72.72.0/23 44257 -178.72.74.0/24 44257 -178.72.79.0/24 44257 -178.72.83.0/24 44257 -178.72.84.0/22 41822 -178.72.90.0/23 44257 -178.72.92.0/22 41822 -178.72.96.0/21 41822 -178.72.104.0/21 48541 -178.72.112.0/20 48541 -178.72.128.0/18 47975 -178.72.192.0/18 41046 -178.73.0.0/18 6830 -178.73.64.0/18 35819 -178.73.128.0/19 12684 -178.73.160.0/21 12684 -178.73.192.0/20 42708 -178.73.208.0/21 42708 -178.73.216.0/22 42708 -178.73.220.0/24 206804 -178.73.221.0/24 42708 -178.73.222.0/23 42708 -178.73.224.0/19 42708 -178.74.0.0/18 2116 -178.74.64.0/19 47165 -178.74.96.0/21 47165 -178.74.104.0/22 47165 -178.74.108.0/24 47165 -178.74.109.0/24 15870 -178.74.110.0/23 47165 -178.74.112.0/20 47165 -178.74.128.0/23 196991 -178.74.131.0/24 196991 -178.74.132.0/23 196991 -178.74.135.0/24 196991 -178.74.136.0/21 196991 -178.74.144.0/20 196991 -178.74.160.0/24 196991 -178.74.163.0/24 196991 -178.74.164.0/23 196991 -178.74.166.0/24 196991 -178.74.169.0/24 196991 -178.74.172.0/22 196991 -178.74.177.0/24 196991 -178.74.178.0/24 196991 -178.74.180.0/22 196991 -178.74.184.0/23 196991 -178.74.187.0/24 196991 -178.74.188.0/22 196991 -178.74.192.0/18 49223 -178.75.0.0/18 30868 -178.75.64.0/18 12389 -178.75.128.0/18 16086 -178.75.192.0/22 34295 -178.75.196.0/22 48747 -178.75.200.0/22 34295 -178.75.212.0/22 34295 -178.75.216.0/21 34295 -178.75.224.0/20 42248 -178.75.240.0/21 34295 -178.75.248.0/22 34295 -178.75.252.0/22 13306 -178.76.64.0/21 48506 -178.76.72.0/22 48506 -178.76.80.0/20 43925 -178.76.96.0/19 43925 -178.76.128.0/18 42652 -178.76.192.0/23 21438 -178.76.194.0/23 15774 -178.76.196.0/22 47313 -178.76.200.0/22 21438 -178.76.204.0/24 21438 -178.76.205.0/24 15774 -178.76.206.0/24 21438 -178.76.207.0/24 15774 -178.76.208.0/22 15774 -178.76.212.0/23 15774 -178.76.214.0/24 15774 -178.76.215.0/24 21438 -178.76.216.0/21 15774 -178.76.224.0/19 15774 -178.77.0.0/18 16178 -178.77.64.0/20 8972 -178.77.80.0/21 35329 -178.77.88.0/21 61157 -178.77.96.0/21 8972 -178.77.104.0/21 20773 -178.77.112.0/21 20773 -178.77.120.0/22 61157 -178.77.125.0/24 61157 -178.77.126.0/23 61157 -178.77.144.0/24 42912 -178.77.156.0/24 42912 -178.77.184.0/21 42912 -178.77.192.0/18 6830 -178.78.32.0/20 39435 -178.78.48.0/20 31585 -178.78.64.0/19 12390 -178.78.96.0/21 12390 -178.78.104.0/23 12390 -178.78.106.0/23 2856 -178.78.108.0/22 2856 -178.78.112.0/20 2856 -178.78.128.0/18 44395 -178.78.192.0/18 33885 -178.79.0.0/18 51052 -178.79.64.0/18 3212 -178.79.128.0/18 63949 -178.79.192.0/22 22822 -178.79.196.0/23 22822 -178.79.198.0/23 25804 -178.79.200.0/21 22822 -178.79.208.0/21 22822 -178.79.216.0/23 60261 -178.79.218.0/23 25804 -178.79.220.0/22 22822 -178.79.224.0/19 22822 -178.80.0.0/15 35819 -178.82.0.0/15 6830 -178.84.0.0/15 6830 -178.86.0.0/19 39891 -178.86.32.0/20 39891 -178.86.128.0/17 25019 -178.87.0.0/16 25019 -178.88.0.0/16 9198 -178.89.0.0/22 9198 -178.89.4.0/24 207966 -178.89.5.0/24 9198 -178.89.6.0/23 9198 -178.89.8.0/21 9198 -178.89.16.0/20 9198 -178.89.32.0/19 9198 -178.89.64.0/18 9198 -178.89.128.0/17 9198 -178.90.0.0/15 9198 -178.92.0.0/14 6849 -178.96.0.0/12 12576 -178.112.0.0/15 25255 -178.114.0.0/16 8437 -178.115.0.0/16 25255 -178.116.0.0/14 6848 -178.120.0.0/13 6697 -178.128.0.0/16 14061 -178.129.0.0/16 28812 -178.130.0.0/18 41691 -178.130.64.0/18 30873 -178.130.128.0/21 41691 -178.130.144.0/20 51407 -178.130.160.0/19 51407 -178.131.0.0/16 50810 -178.132.0.0/21 49981 -178.132.8.0/21 48517 -178.132.16.0/20 13193 -178.132.40.0/21 51375 -178.132.48.0/21 34984 -178.132.56.0/21 197991 -178.132.64.0/22 198818 -178.132.68.0/23 30766 -178.132.70.0/23 198818 -178.132.72.0/21 197595 -178.132.80.0/22 57344 -178.132.84.0/23 57344 -178.132.86.0/23 31083 -178.132.88.0/21 35617 -178.132.96.0/21 34139 -178.132.104.0/21 50627 -178.132.112.0/20 8926 -178.132.128.0/18 8926 -178.132.192.0/21 50478 -178.132.200.0/22 49505 -178.132.204.0/23 49505 -178.132.206.0/23 50340 -178.132.208.0/21 39647 -178.132.216.0/21 29170 -178.132.224.0/20 39642 -178.132.240.0/21 28902 -178.132.248.0/21 45011 -178.133.0.0/16 21497 -178.134.0.0/16 35805 -178.135.0.0/16 42003 -178.136.0.0/20 6703 -178.136.48.0/20 6703 -178.136.64.0/24 210064 -178.136.65.0/24 6703 -178.136.70.0/23 6703 -178.136.72.0/21 6703 -178.136.80.0/20 6703 -178.136.96.0/20 6703 -178.136.112.0/24 6703 -178.136.116.0/22 6703 -178.136.120.0/21 6703 -178.136.128.0/21 6703 -178.136.180.0/23 6703 -178.136.183.0/24 6703 -178.136.184.0/21 6703 -178.136.192.0/19 6703 -178.136.224.0/22 6703 -178.136.228.0/24 197610 -178.136.229.0/24 6703 -178.136.230.0/23 6703 -178.136.232.0/21 6703 -178.136.240.0/21 6703 -178.136.248.0/22 6703 -178.137.0.0/16 15895 -178.138.0.0/17 35725 -178.138.136.0/21 35725 -178.138.144.0/21 35725 -178.139.0.0/16 12430 -178.140.0.0/16 42610 -178.141.0.0/16 44677 -178.142.0.0/16 9145 -178.143.0.0/16 15962 -178.144.0.0/15 5432 -178.146.0.0/16 29247 -178.147.0.0/16 6799 -178.148.0.0/15 31042 -178.150.0.0/16 13188 -178.151.0.0/17 13188 -178.151.128.0/18 13188 -178.151.192.0/20 13188 -178.151.208.0/21 13188 -178.151.216.0/24 13188 -178.151.218.0/24 13188 -178.151.220.0/22 13188 -178.151.224.0/20 13188 -178.151.240.0/21 13188 -178.151.248.0/22 13188 -178.151.252.0/24 13188 -178.151.255.0/24 13188 -178.152.0.0/18 8781 -178.152.64.0/18 42298 -178.152.128.0/17 8781 -178.153.0.0/18 42298 -178.153.64.0/19 42298 -178.153.96.0/20 42298 -178.153.112.0/20 8781 -178.153.128.0/17 42298 -178.154.0.0/17 44087 -178.154.128.0/18 13238 -178.154.192.0/19 13238 -178.154.224.0/19 200350 -178.155.0.0/19 29497 -178.155.32.0/20 29497 -178.155.48.0/22 29497 -178.155.52.0/24 49665 -178.155.53.0/24 29497 -178.155.54.0/23 29497 -178.155.56.0/21 29497 -178.155.64.0/22 29497 -178.155.68.0/24 49816 -178.155.69.0/24 29497 -178.155.70.0/23 29497 -178.155.72.0/21 29497 -178.155.80.0/20 29497 -178.155.96.0/19 29497 -178.155.128.0/17 197288 -178.156.0.0/20 29119 -178.156.16.0/21 29119 -178.156.24.0/24 203600 -178.156.25.0/24 29119 -178.156.26.0/23 29119 -178.156.28.0/22 29119 -178.156.32.0/24 199853 -178.156.33.0/24 29119 -178.156.34.0/24 199482 -178.156.35.0/24 29119 -178.156.36.0/23 29119 -178.156.38.0/24 200030 -178.156.39.0/24 29119 -178.156.40.0/22 29119 -178.156.44.0/23 29119 -178.156.46.0/24 29119 -178.156.47.0/24 60807 -178.156.48.0/20 29119 -178.156.64.0/21 29119 -178.156.72.0/23 29119 -178.156.74.0/24 29119 -178.156.75.0/24 201337 -178.156.76.0/24 29119 -178.156.77.0/24 50564 -178.156.78.0/23 29119 -178.156.80.0/22 29119 -178.156.84.0/23 29119 -178.156.86.0/24 199952 -178.156.87.0/24 29119 -178.156.88.0/23 29119 -178.156.90.0/24 29119 -178.156.91.0/24 199952 -178.156.92.0/22 29119 -178.156.96.0/21 29119 -178.156.104.0/23 29119 -178.156.106.0/24 203600 -178.156.107.0/24 29119 -178.156.108.0/22 29119 -178.156.112.0/21 29119 -178.156.120.0/24 29119 -178.156.121.0/24 50563 -178.156.122.0/24 199482 -178.156.123.0/24 29119 -178.156.124.0/23 29119 -178.156.126.0/24 199482 -178.156.127.0/24 29119 -178.156.128.0/18 35584 -178.156.192.0/22 35584 -178.156.196.0/23 35584 -178.156.198.0/24 35584 -178.156.199.0/24 42405 -178.156.202.0/24 48874 -178.156.203.0/24 39756 -178.156.204.0/22 60539 -178.156.208.0/21 6718 -178.156.216.0/23 60539 -178.156.219.0/24 35584 -178.156.222.0/23 51204 -178.156.224.0/22 34060 -178.156.228.0/23 41028 -178.156.240.0/22 40975 -178.156.254.0/23 40975 -178.157.0.0/23 42163 -178.157.2.0/23 201474 -178.157.4.0/22 42163 -178.157.8.0/21 42807 -178.157.16.0/20 8399 -178.157.32.0/20 8399 -178.157.48.0/22 25820 -178.157.60.0/23 25820 -178.157.64.0/24 60901 -178.157.68.0/22 42859 -178.157.72.0/22 44374 -178.157.76.0/24 201909 -178.157.77.0/24 60901 -178.157.78.0/23 49687 -178.157.80.0/23 21263 -178.157.82.0/24 202448 -178.157.83.0/24 21263 -178.157.84.0/22 29424 -178.157.88.0/23 205844 -178.157.90.0/23 202448 -178.157.92.0/24 199552 -178.157.93.0/24 60901 -178.157.95.0/24 206825 -178.157.100.0/22 208068 -178.157.104.0/22 197476 -178.157.108.0/24 199552 -178.157.109.0/24 44374 -178.157.110.0/23 199552 -178.157.112.0/21 60741 -178.157.120.0/22 60741 -178.157.124.0/24 60901 -178.157.125.0/24 49687 -178.157.126.0/24 60901 -178.157.127.0/24 49687 -178.157.128.0/18 12958 -178.157.192.0/18 43557 -178.158.0.0/17 30822 -178.158.128.0/19 50780 -178.158.160.0/20 50780 -178.158.176.0/21 50780 -178.158.184.0/22 50780 -178.158.188.0/24 50780 -178.158.189.0/24 59478 -178.158.190.0/23 50780 -178.158.192.0/18 43139 -178.159.0.0/20 42831 -178.159.16.0/20 25086 -178.159.32.0/23 206805 -178.159.36.0/24 48666 -178.159.37.0/24 206791 -178.159.38.0/24 204601 -178.159.39.0/24 21100 -178.159.40.0/23 62410 -178.159.42.0/23 50979 -178.159.44.0/22 202090 -178.159.48.0/20 51669 -178.159.64.0/20 50835 -178.159.80.0/22 204895 -178.159.84.0/22 12494 -178.159.88.0/22 204895 -178.159.92.0/22 9009 -178.159.96.0/24 44750 -178.159.98.0/24 202390 -178.159.99.0/24 46844 -178.159.100.0/24 49453 -178.159.101.0/24 44750 -178.159.103.0/24 209813 -178.159.105.0/24 44750 -178.159.107.0/24 49453 -178.159.108.0/22 44750 -178.159.112.0/20 48330 -178.159.128.0/20 51589 -178.159.160.0/20 197295 -178.159.192.0/20 197318 -178.159.208.0/20 39130 -178.159.224.0/23 1001 -178.159.226.0/23 43967 -178.159.228.0/22 43967 -178.159.232.0/21 43967 -178.159.240.0/21 6697 -178.159.248.0/21 51698 -178.160.0.0/17 5391 -178.160.240.0/20 12297 -178.161.0.0/17 42961 -178.161.128.0/20 12768 -178.161.144.0/22 12768 -178.161.148.0/23 12768 -178.161.150.0/24 12768 -178.161.151.0/24 31692 -178.161.152.0/21 12768 -178.161.160.0/19 12768 -178.161.192.0/20 12768 -178.161.208.0/21 12768 -178.161.216.0/22 12768 -178.161.220.0/23 12768 -178.161.222.0/24 12768 -178.161.223.0/24 31692 -178.161.224.0/19 12768 -178.162.0.0/17 20807 -178.162.128.0/18 60781 -178.162.192.0/18 28753 -178.163.0.0/17 8416 -178.163.128.0/18 42772 -178.163.192.0/19 42772 -178.163.224.0/19 205820 -178.164.0.0/17 34087 -178.164.128.0/17 20845 -178.165.0.0/17 34700 -178.165.128.0/17 25255 -178.166.0.0/17 12353 -178.166.128.0/17 12389 -178.167.0.0/17 21453 -178.167.128.0/17 34218 -178.168.0.0/17 31252 -178.168.128.0/17 25106 -178.169.0.0/19 56402 -178.169.64.0/21 39785 -178.169.72.0/24 59744 -178.169.79.0/24 59744 -178.169.80.0/21 39785 -178.169.91.0/24 39785 -178.169.92.0/22 39785 -178.169.96.0/19 42304 -178.169.128.0/21 43205 -178.169.136.0/22 43205 -178.169.140.0/23 43205 -178.169.142.0/23 21415 -178.169.144.0/20 43205 -178.169.160.0/23 43205 -178.169.162.0/24 21415 -178.169.163.0/24 43205 -178.169.164.0/24 43205 -178.169.165.0/24 21415 -178.169.166.0/23 43205 -178.169.168.0/24 43205 -178.169.169.0/24 21415 -178.169.170.0/23 43205 -178.169.172.0/22 43205 -178.169.176.0/20 43205 -178.169.192.0/18 43205 -178.170.0.0/17 21409 -178.170.128.0/22 50823 -178.170.132.0/22 8818 -178.170.137.0/24 48635 -178.170.138.0/24 20853 -178.170.140.0/24 9009 -178.170.141.0/24 20860 -178.170.142.0/24 60257 -178.170.143.0/24 56595 -178.170.146.0/24 9009 -178.170.147.0/24 8818 -178.170.148.0/22 50673 -178.170.152.0/22 50673 -178.170.156.0/22 201411 -178.170.160.0/22 8818 -178.170.164.0/23 58272 -178.170.166.0/24 62010 -178.170.167.0/24 201092 -178.170.168.0/24 200503 -178.170.169.0/24 204277 -178.170.170.0/24 59994 -178.170.171.0/24 203992 -178.170.172.0/24 203714 -178.170.173.0/24 203516 -178.170.174.0/24 203697 -178.170.175.0/24 203699 -178.170.176.0/24 206653 -178.170.179.0/24 206653 -178.170.180.0/24 5570 -178.170.181.0/24 62103 -178.170.182.0/23 201411 -178.170.184.0/23 201411 -178.170.186.0/24 61326 -178.170.187.0/24 56676 -178.170.189.0/24 58272 -178.170.190.0/23 56495 -178.170.192.0/22 56495 -178.170.196.0/23 56495 -178.170.199.0/24 8818 -178.170.200.0/22 8818 -178.170.204.0/23 8818 -178.170.206.0/24 48219 -178.170.207.0/24 200152 -178.170.208.0/24 200121 -178.170.209.0/24 60556 -178.170.210.0/23 8818 -178.170.212.0/22 8818 -178.170.216.0/24 8818 -178.170.217.0/24 56495 -178.170.218.0/23 56495 -178.170.220.0/23 48096 -178.170.223.0/24 48399 -178.170.224.0/24 48096 -178.170.226.0/24 12841 -178.170.227.0/24 201726 -178.170.228.0/24 201774 -178.170.229.0/24 201775 -178.170.230.0/24 201797 -178.170.231.0/24 59937 -178.170.232.0/24 208503 -178.170.233.0/24 20527 -178.170.234.0/24 62010 -178.170.235.0/24 49070 -178.170.236.0/24 43215 -178.170.237.0/24 48219 -178.170.243.0/24 203714 -178.170.244.0/24 206812 -178.170.245.0/24 203784 -178.170.246.0/23 25513 -178.170.248.0/24 206812 -178.170.249.0/24 199735 -178.170.250.0/24 60085 -178.170.251.0/24 199735 -178.170.252.0/24 6012 -178.170.253.0/24 56975 -178.170.254.0/24 49351 -178.170.255.0/24 199261 -178.171.0.0/20 57129 -178.171.16.0/22 9009 -178.171.20.0/22 57129 -178.171.24.0/21 57129 -178.171.32.0/22 9009 -178.171.36.0/23 9009 -178.171.38.0/24 9009 -178.171.40.0/21 9009 -178.171.48.0/22 9009 -178.171.52.0/23 57129 -178.171.54.0/23 9009 -178.171.56.0/24 9009 -178.171.57.0/24 57129 -178.171.58.0/23 9009 -178.171.60.0/22 9009 -178.171.64.0/22 9009 -178.171.69.0/24 9009 -178.171.70.0/24 45671 -178.171.72.0/22 45671 -178.171.76.0/22 57129 -178.171.80.0/21 57129 -178.171.88.0/21 9009 -178.171.96.0/22 9009 -178.171.100.0/24 45671 -178.171.101.0/24 9009 -178.171.102.0/24 35758 -178.171.103.0/24 9009 -178.171.104.0/24 45671 -178.171.105.0/24 9009 -178.171.106.0/23 57129 -178.171.108.0/22 9009 -178.171.112.0/22 9009 -178.171.116.0/23 57129 -178.171.118.0/23 9009 -178.171.120.0/21 9009 -178.171.128.0/17 29256 -178.172.0.0/17 2107 -178.172.128.0/24 50155 -178.172.129.0/24 48347 -178.172.130.0/23 50155 -178.172.132.0/24 60367 -178.172.133.0/24 49711 -178.172.134.0/24 60857 -178.172.135.0/24 62208 -178.172.136.0/22 12406 -178.172.144.0/23 48743 -178.172.146.0/23 56498 -178.172.148.0/24 6697 -178.172.149.0/24 51584 -178.172.150.0/24 49091 -178.172.151.0/24 42036 -178.172.152.0/23 42036 -178.172.154.0/24 42036 -178.172.157.0/24 48743 -178.172.158.0/23 48743 -178.172.160.0/22 6697 -178.172.164.0/23 56740 -178.172.172.0/23 6697 -178.172.175.0/24 48347 -178.172.176.0/24 48743 -178.172.177.0/24 59860 -178.172.178.0/24 60770 -178.172.179.0/24 50334 -178.172.180.0/24 50334 -178.172.181.0/24 56740 -178.172.182.0/24 60770 -178.172.183.0/24 42036 -178.172.184.0/23 42036 -178.172.186.0/24 42036 -178.172.187.0/24 60367 -178.172.188.0/23 60367 -178.172.190.0/24 60367 -178.172.191.0/24 50929 -178.172.192.0/22 31143 -178.172.196.0/22 50155 -178.172.201.0/24 6697 -178.172.202.0/24 50176 -178.172.204.0/24 50593 -178.172.205.0/24 48743 -178.172.206.0/23 48743 -178.172.208.0/24 57192 -178.172.209.0/24 56498 -178.172.210.0/24 56498 -178.172.211.0/24 50334 -178.172.212.0/24 57331 -178.172.213.0/24 28737 -178.172.214.0/24 50593 -178.172.215.0/24 42036 -178.172.216.0/24 42036 -178.172.218.0/24 39426 -178.172.219.0/24 41793 -178.172.221.0/24 56497 -178.172.222.0/23 50929 -178.172.224.0/22 50294 -178.172.228.0/24 50593 -178.172.229.0/24 42036 -178.172.230.0/23 42036 -178.172.232.0/24 42036 -178.172.233.0/24 57481 -178.172.234.0/24 50593 -178.172.235.0/24 6697 -178.172.236.0/24 6697 -178.172.237.0/24 31143 -178.172.238.0/24 207587 -178.172.239.0/24 58076 -178.172.240.0/23 56498 -178.172.242.0/24 50334 -178.172.243.0/24 50176 -178.172.244.0/24 6697 -178.172.245.0/24 59861 -178.172.246.0/24 59861 -178.172.248.0/23 50334 -178.172.250.0/24 6697 -178.172.252.0/24 50334 -178.172.253.0/24 49091 -178.172.254.0/24 12406 -178.172.255.0/24 56740 -178.173.0.0/17 47759 -178.173.128.0/19 1756 -178.173.160.0/20 1756 -178.173.176.0/21 1756 -178.173.184.0/23 1756 -178.173.187.0/24 1756 -178.173.188.0/22 1756 -178.173.192.0/20 1756 -178.173.208.0/23 1756 -178.173.210.0/24 1756 -178.173.216.0/21 1756 -178.173.224.0/19 45671 -178.174.0.0/18 3303 -178.174.64.0/19 3303 -178.174.96.0/19 25563 -178.174.128.0/17 8473 -178.175.0.0/17 8661 -178.175.128.0/18 43289 -178.175.192.0/19 43289 -178.175.228.0/22 61208 -178.175.232.0/24 35578 -178.175.233.0/24 206445 -178.175.234.0/24 202931 -178.175.235.0/24 204528 -178.175.236.0/23 62337 -178.175.238.0/23 35534 -178.175.240.0/23 35534 -178.175.244.0/24 203912 -178.175.245.0/24 64453 -178.175.246.0/23 61208 -178.175.248.0/22 61208 -178.175.252.0/23 57776 -178.175.254.0/24 15836 -178.176.0.0/19 25159 -178.176.32.0/20 25159 -178.176.56.0/23 31208 -178.176.58.0/24 31208 -178.176.60.0/23 31208 -178.176.96.0/21 29648 -178.176.104.0/21 31224 -178.176.112.0/23 31224 -178.176.114.0/23 29648 -178.176.117.0/24 29648 -178.176.118.0/24 29648 -178.176.120.0/22 29648 -178.176.125.0/24 29648 -178.176.126.0/23 29648 -178.176.128.0/24 31133 -178.176.131.0/24 31133 -178.176.136.0/24 31133 -178.176.139.0/24 31133 -178.176.141.0/24 31133 -178.176.142.0/23 31133 -178.176.144.0/23 31133 -178.176.146.0/24 31133 -178.176.152.0/23 31133 -178.176.154.0/23 35298 -178.176.156.0/24 31133 -178.176.158.0/24 31133 -178.176.160.0/20 31133 -178.176.176.0/21 31133 -178.176.184.0/22 31133 -178.176.188.0/24 31133 -178.176.192.0/22 31163 -178.176.196.0/24 31163 -178.176.198.0/24 31163 -178.176.202.0/24 31163 -178.176.209.0/24 31163 -178.176.210.0/24 31163 -178.176.212.0/22 31163 -178.176.216.0/21 31163 -178.176.224.0/23 8263 -178.176.233.0/24 31195 -178.176.234.0/23 31195 -178.176.240.0/21 31205 -178.176.248.0/24 31205 -178.180.0.0/15 12912 -178.182.0.0/16 12912 -178.183.0.0/20 5588 -178.183.16.0/22 5588 -178.183.20.0/24 5588 -178.183.21.0/24 200504 -178.183.22.0/23 5588 -178.183.24.0/21 5588 -178.183.32.0/19 5588 -178.183.64.0/18 12912 -178.183.128.0/18 12912 -178.183.192.0/19 12912 -178.183.224.0/19 5588 -178.184.0.0/14 12389 -178.188.0.0/14 8447 -178.192.0.0/13 3303 -178.200.0.0/14 6830 -178.204.0.0/14 28840 -178.208.0.0/19 50628 -178.208.32.0/19 34762 -178.208.64.0/22 48282 -178.208.72.0/21 48282 -178.208.80.0/21 48282 -178.208.88.0/22 48282 -178.208.93.0/24 48282 -178.208.96.0/20 198967 -178.208.112.0/21 198967 -178.208.120.0/21 12466 -178.208.128.0/21 8732 -178.208.136.0/24 8732 -178.208.137.0/24 203456 -178.208.138.0/23 8732 -178.208.140.0/22 8732 -178.208.144.0/24 8732 -178.208.145.0/24 62268 -178.208.146.0/23 8732 -178.208.148.0/24 8732 -178.208.149.0/24 8901 -178.208.150.0/23 8732 -178.208.152.0/21 8732 -178.208.160.0/20 22363 -178.208.176.0/24 22363 -178.208.178.0/24 22363 -178.208.185.0/24 22363 -178.208.192.0/19 8301 -178.208.224.0/19 50923 -178.209.0.0/19 42560 -178.209.32.0/19 29691 -178.209.64.0/22 43554 -178.209.68.0/23 204384 -178.209.70.0/23 43554 -178.209.72.0/21 43554 -178.209.80.0/21 43554 -178.209.88.0/21 59815 -178.209.96.0/19 8595 -178.209.128.0/19 15614 -178.209.160.0/21 50457 -178.209.168.0/22 50457 -178.209.172.0/24 50457 -178.209.175.0/24 50457 -178.209.180.0/22 50457 -178.209.190.0/23 50457 -178.209.192.0/19 16083 -178.209.224.0/19 12714 -178.210.0.0/19 31214 -178.210.32.0/23 43727 -178.210.34.0/24 43727 -178.210.35.0/24 44604 -178.210.36.0/22 43727 -178.210.40.0/21 43727 -178.210.48.0/21 43727 -178.210.64.0/19 48287 -178.210.96.0/19 25394 -178.210.128.0/19 49984 -178.210.160.0/20 42910 -178.210.176.0/23 42910 -178.210.178.0/23 42926 -178.210.180.0/23 42910 -178.210.192.0/19 47359 -178.210.224.0/21 47169 -178.210.232.0/22 47169 -178.210.236.0/23 47169 -178.210.238.0/23 25274 -178.210.240.0/21 25274 -178.210.248.0/22 25274 -178.210.252.0/23 25274 -178.210.254.0/23 47169 -178.211.1.0/24 47218 -178.211.7.0/24 47218 -178.211.8.0/21 47218 -178.211.20.0/22 47218 -178.211.24.0/24 47218 -178.211.32.0/21 197328 -178.211.40.0/23 197328 -178.211.42.0/24 42926 -178.211.43.0/24 197328 -178.211.44.0/22 197328 -178.211.48.0/23 42926 -178.211.50.0/24 42926 -178.211.52.0/22 42926 -178.211.56.0/22 42926 -178.211.60.0/23 42926 -178.211.62.0/24 42926 -178.211.64.0/19 47408 -178.211.96.0/19 8788 -178.211.160.0/19 48524 -178.211.192.0/20 51320 -178.211.208.0/21 51320 -178.211.221.0/24 51320 -178.211.224.0/19 39544 -178.212.0.0/22 44173 -178.212.8.0/21 41098 -178.212.16.0/21 197047 -178.212.24.0/21 197186 -178.212.33.0/24 35913 -178.212.34.0/24 35913 -178.212.36.0/22 41517 -178.212.40.0/21 51337 -178.212.48.0/21 197025 -178.212.56.0/22 204229 -178.212.61.0/24 204229 -178.212.62.0/23 204229 -178.212.64.0/21 47939 -178.212.80.0/21 47844 -178.212.88.0/23 6700 -178.212.90.0/24 199398 -178.212.91.0/24 6700 -178.212.92.0/24 199398 -178.212.93.0/24 6700 -178.212.94.0/23 6700 -178.212.96.0/21 48957 -178.212.104.0/21 24893 -178.212.112.0/21 51379 -178.212.120.0/21 51394 -178.212.128.0/21 51624 -178.212.136.0/21 47316 -178.212.144.0/21 51436 -178.212.152.0/21 50625 -178.212.160.0/21 50625 -178.212.168.0/21 197233 -178.212.176.0/21 51428 -178.212.184.0/21 48976 -178.212.192.0/21 39065 -178.212.200.0/22 51474 -178.212.205.0/24 51474 -178.212.206.0/23 51474 -178.212.208.0/21 12714 -178.212.216.0/21 197262 -178.212.224.0/21 35815 -178.212.232.0/21 197002 -178.212.240.0/21 44629 -178.212.248.0/22 42998 -178.212.252.0/23 59658 -178.212.255.0/24 33806 -178.213.0.0/21 12438 -178.213.8.0/21 51507 -178.213.16.0/21 59508 -178.213.24.0/21 15428 -178.213.32.0/21 47531 -178.213.40.0/21 51524 -178.213.48.0/21 43108 -178.213.56.0/21 42739 -178.213.64.0/21 35676 -178.213.72.0/24 200714 -178.213.73.0/24 204045 -178.213.74.0/24 34966 -178.213.75.0/24 16509 -178.213.76.0/24 12676 -178.213.77.0/24 48284 -178.213.78.0/24 57906 -178.213.79.0/24 203542 -178.213.80.0/21 51552 -178.213.88.0/21 204126 -178.213.96.0/21 51864 -178.213.104.0/21 197287 -178.213.112.0/21 51579 -178.213.120.0/21 51590 -178.213.128.0/21 47975 -178.213.136.0/21 200755 -178.213.144.0/21 51596 -178.213.152.0/21 6830 -178.213.160.0/21 51636 -178.213.168.0/21 3326 -178.213.176.0/21 48976 -178.213.184.0/21 196777 -178.213.192.0/21 48166 -178.213.200.0/21 42498 -178.213.208.0/21 31028 -178.213.216.0/21 51769 -178.213.224.0/21 51705 -178.213.232.0/21 51691 -178.213.240.0/21 3325 -178.213.248.0/21 43302 -178.214.0.0/19 51390 -178.214.32.0/19 51343 -178.214.64.0/19 51336 -178.214.96.0/20 47143 -178.214.112.0/21 47143 -178.214.120.0/23 47143 -178.214.124.0/23 47143 -178.214.126.0/24 25369 -178.214.127.0/24 47143 -178.214.128.0/19 43939 -178.214.160.0/19 39130 -178.214.192.0/19 42546 -178.214.224.0/19 24955 -178.215.3.0/24 57366 -178.215.6.0/24 58161 -178.215.64.0/18 49342 -178.215.144.0/20 56426 -178.215.160.0/20 42590 -178.215.176.0/20 39399 -178.215.192.0/20 51337 -178.215.216.0/21 51336 -178.215.224.0/22 43659 -178.215.232.0/22 209955 -178.215.236.0/22 52055 -178.215.240.0/20 48081 -178.216.0.0/21 50751 -178.216.8.0/21 39027 -178.216.16.0/21 25133 -178.216.24.0/21 196994 -178.216.32.0/21 39248 -178.216.40.0/21 197091 -178.216.48.0/21 57858 -178.216.56.0/21 50815 -178.216.64.0/21 50539 -178.216.72.0/21 197023 -178.216.80.0/21 197542 -178.216.88.0/21 44454 -178.216.96.0/21 197015 -178.216.104.0/21 197049 -178.216.112.0/21 50883 -178.216.120.0/24 28926 -178.216.121.0/24 204531 -178.216.122.0/24 202497 -178.216.123.0/24 28926 -178.216.124.0/22 28926 -178.216.128.0/21 47752 -178.216.136.0/21 35695 -178.216.144.0/21 28972 -178.216.152.0/21 51028 -178.216.160.0/21 29069 -178.216.168.0/22 41062 -178.216.172.0/24 47618 -178.216.173.0/24 201475 -178.216.174.0/24 204587 -178.216.175.0/24 206103 -178.216.176.0/21 51032 -178.216.184.0/23 30954 -178.216.188.0/22 30954 -178.216.200.0/21 31229 -178.216.208.0/21 47782 -178.216.216.0/21 41771 -178.216.224.0/21 48964 -178.216.232.0/21 39728 -178.216.240.0/22 209982 -178.216.248.0/22 43754 -178.216.252.0/22 58224 -178.217.8.0/21 51002 -178.217.16.0/21 58122 -178.217.24.0/21 51011 -178.217.32.0/21 29245 -178.217.40.0/21 197070 -178.217.48.0/21 197074 -178.217.56.0/21 12389 -178.217.64.0/21 21087 -178.217.72.0/21 51112 -178.217.80.0/21 51050 -178.217.88.0/22 61071 -178.217.96.0/21 196936 -178.217.104.0/21 48128 -178.217.112.0/21 51101 -178.217.120.0/21 12484 -178.217.128.0/21 51164 -178.217.136.0/21 197099 -178.217.144.0/21 44489 -178.217.152.0/21 51133 -178.217.160.0/21 47694 -178.217.168.0/21 197119 -178.217.176.0/21 34192 -178.217.184.0/21 51290 -178.217.192.0/21 50331 -178.217.200.0/21 196767 -178.217.208.0/21 51216 -178.217.216.0/21 197181 -178.217.224.0/21 48642 -178.217.240.0/21 51210 -178.217.248.0/21 12831 -178.218.0.0/20 50752 -178.218.16.0/20 50771 -178.218.32.0/20 49777 -178.218.48.0/20 50789 -178.218.64.0/20 34605 -178.218.80.0/20 34824 -178.218.96.0/20 49350 -178.218.112.0/20 49403 -178.218.128.0/20 50835 -178.218.144.0/24 7489 -178.218.145.0/24 174 -178.218.146.0/24 30475 -178.218.147.0/24 138219 -178.218.152.0/22 2119 -178.218.156.0/22 209759 -178.218.160.0/20 198785 -178.218.176.0/20 25019 -178.218.196.0/22 41108 -178.218.200.0/21 59668 -178.218.208.0/21 42244 -178.218.216.0/23 42244 -178.218.218.0/24 42244 -178.218.220.0/22 42244 -178.218.224.0/20 50994 -178.218.242.0/24 208507 -178.218.244.0/22 210220 -178.218.252.0/22 29256 -178.219.0.0/22 9125 -178.219.4.0/22 28964 -178.219.8.0/23 52116 -178.219.10.0/24 9125 -178.219.11.0/24 52116 -178.219.12.0/23 28964 -178.219.14.0/24 9125 -178.219.15.0/24 28964 -178.219.16.0/20 50987 -178.219.32.0/22 47739 -178.219.36.0/22 51077 -178.219.40.0/21 51077 -178.219.48.0/20 34083 -178.219.64.0/20 201935 -178.219.80.0/20 51069 -178.219.96.0/20 51079 -178.219.112.0/20 202281 -178.219.128.0/24 200414 -178.219.129.0/24 197588 -178.219.130.0/24 197588 -178.219.131.0/24 200414 -178.219.132.0/22 200414 -178.219.136.0/21 200414 -178.219.144.0/20 34123 -178.219.160.0/20 42239 -178.219.176.0/20 50553 -178.219.192.0/20 197129 -178.219.208.0/20 47530 -178.219.233.0/24 58201 -178.219.240.0/20 35816 -178.220.0.0/17 8400 -178.220.128.0/20 8400 -178.220.144.0/22 8400 -178.220.148.0/23 8400 -178.220.150.0/24 41937 -178.220.151.0/24 8400 -178.220.152.0/24 41937 -178.220.153.0/24 8400 -178.220.154.0/23 8400 -178.220.156.0/22 8400 -178.220.160.0/19 8400 -178.220.192.0/18 8400 -178.221.0.0/16 8400 -178.222.0.0/16 8400 -178.223.0.0/17 8400 -178.223.128.0/18 8400 -178.223.192.0/19 8400 -178.223.224.0/19 202441 -178.224.0.0/13 31615 -178.232.0.0/16 12929 -178.233.0.0/17 47524 -178.233.128.0/21 47524 -178.233.136.0/22 47524 -178.233.140.0/24 47524 -178.233.142.0/23 47524 -178.233.144.0/20 47524 -178.233.160.0/19 47524 -178.233.192.0/18 47524 -178.234.0.0/21 8570 -178.234.8.0/21 12389 -178.234.16.0/21 12389 -178.234.24.0/21 8570 -178.234.32.0/20 8570 -178.234.48.0/20 12389 -178.234.64.0/18 12389 -178.234.128.0/19 12389 -178.234.160.0/21 12389 -178.234.168.0/22 8570 -178.234.172.0/22 12389 -178.234.176.0/20 12389 -178.234.192.0/18 12389 -178.235.0.0/17 29314 -178.235.128.0/21 29314 -178.235.136.0/23 29314 -178.235.140.0/22 29314 -178.235.144.0/20 29314 -178.235.160.0/19 29314 -178.235.192.0/19 29314 -178.235.224.0/20 29314 -178.235.240.0/23 20552 -178.235.242.0/24 204447 -178.235.243.0/24 204559 -178.235.244.0/22 29314 -178.235.248.0/21 29314 -178.236.0.0/20 16509 -178.236.16.0/20 42678 -178.236.32.0/22 51411 -178.236.36.0/22 202391 -178.236.40.0/21 137443 -178.236.48.0/20 49129 -178.236.64.0/20 50986 -178.236.80.0/20 42560 -178.236.96.0/20 12880 -178.236.112.0/20 51151 -178.236.128.0/21 44843 -178.236.136.0/23 42775 -178.236.138.0/24 205297 -178.236.139.0/24 207168 -178.236.140.0/22 56724 -178.236.144.0/20 24931 -178.236.160.0/20 30848 -178.236.176.0/22 48232 -178.236.181.0/24 48232 -178.236.182.0/23 48232 -178.236.184.0/21 48232 -178.236.192.0/22 34326 -178.236.196.0/22 24645 -178.236.200.0/22 42300 -178.236.204.0/22 24645 -178.236.208.0/20 15493 -178.236.228.0/22 35916 -178.236.232.0/24 134548 -178.236.233.0/24 328170 -178.236.234.0/24 133199 -178.236.235.0/24 328170 -178.236.240.0/20 48467 -178.237.0.0/20 13284 -178.237.16.0/21 47764 -178.237.24.0/22 47764 -178.237.28.0/24 60476 -178.237.29.0/24 47764 -178.237.30.0/23 47764 -178.237.32.0/20 8455 -178.237.48.0/22 56727 -178.237.56.0/23 210269 -178.237.58.0/24 210269 -178.237.60.0/22 35239 -178.237.64.0/20 51259 -178.237.80.0/20 15547 -178.237.96.0/20 15401 -178.237.112.0/20 6461 -178.237.128.0/20 51223 -178.237.144.0/20 56710 -178.237.160.0/23 34587 -178.237.163.0/24 34587 -178.237.164.0/23 34587 -178.237.166.0/23 58431 -178.237.168.0/24 134679 -178.237.169.0/24 134408 -178.237.170.0/24 34587 -178.237.173.0/24 34587 -178.237.175.0/24 34587 -178.237.176.0/20 48176 -178.237.192.0/21 51665 -178.237.200.0/22 51665 -178.237.204.0/23 51665 -178.237.206.0/24 56666 -178.237.207.0/24 51665 -178.237.208.0/21 51451 -178.237.224.0/20 15704 -178.237.240.0/21 197150 -178.237.248.0/21 15848 -178.238.0.0/22 201814 -178.238.4.0/22 210232 -178.238.8.0/22 62240 -178.238.12.0/23 263824 -178.238.16.0/20 24739 -178.238.32.0/20 24971 -178.238.48.0/20 31263 -178.238.64.0/21 60411 -178.238.72.0/22 60411 -178.238.76.0/23 60411 -178.238.78.0/23 200590 -178.238.80.0/20 397246 -178.238.96.0/20 39647 -178.238.112.0/20 29226 -178.238.128.0/20 61323 -178.238.144.0/20 20712 -178.238.160.0/20 57370 -178.238.176.0/20 9038 -178.238.192.0/20 58224 -178.238.208.0/22 29278 -178.238.212.0/23 29278 -178.238.214.0/24 33947 -178.238.215.0/24 29278 -178.238.216.0/23 49857 -178.238.218.0/23 33947 -178.238.220.0/24 29278 -178.238.221.0/24 5483 -178.238.222.0/24 29278 -178.238.223.0/24 42964 -178.238.224.0/20 51167 -178.238.240.0/20 197201 -178.239.0.0/20 198023 -178.239.16.0/22 39647 -178.239.20.0/24 200651 -178.239.22.0/23 23338 -178.239.28.0/22 40676 -178.239.32.0/20 49289 -178.239.48.0/20 47869 -178.239.64.0/20 51402 -178.239.80.0/20 18705 -178.239.96.0/20 8586 -178.239.112.0/20 41989 -178.239.144.0/22 34078 -178.239.148.0/23 197343 -178.239.150.0/24 197343 -178.239.151.0/24 34078 -178.239.152.0/24 34078 -178.239.153.0/24 197343 -178.239.154.0/23 197343 -178.239.156.0/22 197343 -178.239.160.0/20 25369 -178.239.176.0/20 12850 -178.239.192.0/20 33801 -178.239.208.0/20 51681 -178.239.224.0/20 42248 -178.239.240.0/20 50129 -178.240.0.0/16 16135 -178.241.0.0/19 16135 -178.241.64.0/18 16135 -178.241.128.0/19 16135 -178.241.192.0/19 16135 -178.241.248.0/23 16135 -178.242.0.0/16 16135 -178.243.0.0/17 16135 -178.243.128.0/18 16135 -178.244.0.0/16 16135 -178.245.0.0/18 16135 -178.245.64.0/19 16135 -178.245.128.0/17 16135 -178.246.0.0/16 16135 -178.247.0.0/17 16135 -178.247.128.0/18 16135 -178.248.0.0/21 16230 -178.248.8.0/21 197083 -178.248.16.0/21 60690 -178.248.24.0/21 51815 -178.248.32.0/21 34555 -178.248.40.0/21 24631 -178.248.48.0/22 51185 -178.248.52.0/23 51185 -178.248.54.0/24 51185 -178.248.56.0/21 197046 -178.248.64.0/21 50966 -178.248.72.0/21 50434 -178.248.80.0/22 47433 -178.248.84.0/24 47433 -178.248.85.0/24 41794 -178.248.86.0/23 41794 -178.248.88.0/21 43279 -178.248.96.0/21 61275 -178.248.104.0/21 47264 -178.248.112.0/21 136714 -178.248.120.0/21 25225 -178.248.128.0/21 12703 -178.248.136.0/21 204595 -178.248.144.0/21 197293 -178.248.152.0/21 31673 -178.248.160.0/21 50998 -178.248.168.0/21 21162 -178.248.176.0/21 49653 -178.248.184.0/21 44099 -178.248.192.0/21 43717 -178.248.200.0/21 42864 -178.248.208.0/21 197133 -178.248.216.0/21 29037 -178.248.224.0/22 51149 -178.248.228.0/23 51149 -178.248.230.0/24 51149 -178.248.232.0/21 197068 -178.248.240.0/21 196922 -178.248.248.0/21 48926 -178.249.0.0/21 197063 -178.249.8.0/23 25259 -178.249.10.0/23 51007 -178.249.12.0/22 51007 -178.249.16.0/21 51010 -178.249.24.0/21 16205 -178.249.32.0/21 43513 -178.249.40.0/24 31708 -178.249.42.0/24 31708 -178.249.48.0/21 31027 -178.249.56.0/22 49377 -178.249.60.0/24 49377 -178.249.63.0/24 49377 -178.249.64.0/22 51037 -178.249.68.0/23 41722 -178.249.72.0/21 8920 -178.249.80.0/21 21161 -178.249.88.0/21 58321 -178.249.96.0/21 11054 -178.249.104.0/21 51082 -178.249.120.0/21 35132 -178.249.128.0/21 57420 -178.249.136.0/21 197157 -178.249.144.0/21 35706 -178.249.152.0/21 51088 -178.249.160.0/22 16347 -178.249.164.0/24 31132 -178.249.165.0/24 20824 -178.249.166.0/24 16347 -178.249.167.0/24 12395 -178.249.168.0/22 8866 -178.249.176.0/23 51080 -178.249.184.0/21 20836 -178.249.192.0/21 204279 -178.249.208.0/21 34040 -178.249.216.0/21 44219 -178.249.224.0/21 51139 -178.249.232.0/22 208927 -178.249.236.0/22 205115 -178.249.240.0/21 42277 -178.249.248.0/21 51097 -178.250.0.0/21 44788 -178.250.8.0/21 34432 -178.250.16.0/24 60781 -178.250.18.0/24 60781 -178.250.24.0/21 48983 -178.250.32.0/21 21412 -178.250.40.0/21 41079 -178.250.48.0/21 20860 -178.250.56.0/21 15830 -178.250.64.0/21 51580 -178.250.72.0/21 12290 -178.250.80.0/22 51114 -178.250.88.0/21 29399 -178.250.96.0/21 13009 -178.250.104.0/21 51128 -178.250.112.0/21 29644 -178.250.120.0/21 51137 -178.250.128.0/21 13030 -178.250.136.0/22 35573 -178.250.141.0/24 35573 -178.250.142.0/23 35573 -178.250.144.0/21 34108 -178.250.160.0/21 28676 -178.250.168.0/24 45031 -178.250.169.0/24 57739 -178.250.170.0/23 45031 -178.250.172.0/22 45031 -178.250.176.0/21 39730 -178.250.184.0/21 41609 -178.250.192.0/21 60820 -178.250.200.0/21 30848 -178.250.208.0/21 24904 -178.250.216.0/21 43568 -178.250.224.0/21 51417 -178.250.232.0/21 31197 -178.250.240.0/21 43362 -178.250.248.0/21 51182 -178.251.0.0/21 207199 -178.251.8.0/21 42184 -178.251.16.0/22 200407 -178.251.20.0/22 210094 -178.251.24.0/21 42093 -178.251.32.0/21 31463 -178.251.40.0/21 6823 -178.251.48.0/22 62291 -178.251.56.0/21 719 -178.251.64.0/21 51184 -178.251.72.0/21 47217 -178.251.80.0/21 25540 -178.251.88.0/21 39702 -178.251.96.0/22 51218 -178.251.104.0/21 35297 -178.251.112.0/21 197008 -178.251.120.0/24 51373 -178.251.124.0/24 58193 -178.251.128.0/21 50821 -178.251.136.0/21 197140 -178.251.144.0/21 51319 -178.251.152.0/21 51311 -178.251.160.0/22 29467 -178.251.164.0/23 29467 -178.251.166.0/24 29467 -178.251.167.0/24 54058 -178.251.168.0/21 2589 -178.251.176.0/21 51263 -178.251.184.0/21 43541 -178.251.192.0/21 8315 -178.251.200.0/21 51243 -178.251.212.0/22 48159 -178.251.216.0/21 12714 -178.251.224.0/21 34549 -178.251.232.0/21 49503 -178.251.240.0/21 45011 -178.251.248.0/21 197133 -178.252.0.0/21 43939 -178.252.8.0/22 43939 -178.252.12.0/23 43939 -178.252.16.0/20 43939 -178.252.33.0/24 43939 -178.252.34.0/23 43939 -178.252.36.0/22 43939 -178.252.40.0/23 43939 -178.252.44.0/22 43939 -178.252.48.0/21 43939 -178.252.56.0/22 43939 -178.252.60.0/23 43939 -178.252.64.0/18 42893 -178.252.128.0/20 51074 -178.252.144.0/22 51074 -178.252.148.0/23 51074 -178.252.150.0/24 42019 -178.252.151.0/24 51074 -178.252.152.0/21 51074 -178.252.160.0/19 51074 -178.252.192.0/18 24689 -178.253.0.0/21 202492 -178.253.8.0/22 42337 -178.253.12.0/23 42337 -178.253.16.0/24 42337 -178.253.22.0/23 42337 -178.253.26.0/23 42337 -178.253.31.0/24 42337 -178.253.32.0/23 204650 -178.253.38.0/23 42337 -178.253.40.0/24 204650 -178.253.41.0/24 42337 -178.253.42.0/23 35478 -178.253.44.0/22 35478 -178.253.48.0/22 12660 -178.253.52.0/23 42337 -178.253.55.0/24 42337 -178.253.64.0/19 29256 -178.253.96.0/23 29256 -178.253.98.0/24 29256 -178.253.100.0/22 29256 -178.253.104.0/21 29256 -178.253.128.0/18 8257 -178.253.192.0/21 9125 -178.253.200.0/22 9125 -178.253.204.0/23 9125 -178.253.206.0/24 9125 -178.253.207.0/24 52116 -178.253.208.0/23 28964 -178.253.210.0/24 52116 -178.253.211.0/24 9125 -178.253.212.0/24 28964 -178.253.213.0/24 52116 -178.253.214.0/24 52116 -178.253.215.0/24 28964 -178.253.216.0/24 28964 -178.253.217.0/24 9125 -178.253.218.0/24 28964 -178.253.219.0/24 52116 -178.253.220.0/23 28964 -178.253.222.0/24 52116 -178.253.223.0/24 9125 -178.253.224.0/21 9125 -178.253.232.0/23 9125 -178.253.234.0/24 9125 -178.253.235.0/24 28964 -178.253.236.0/23 52116 -178.253.238.0/24 28964 -178.253.239.0/24 52116 -178.253.240.0/24 52116 -178.253.241.0/24 9125 -178.253.242.0/23 9125 -178.253.244.0/23 28964 -178.253.246.0/24 9125 -178.253.247.0/24 205786 -178.253.248.0/21 9125 -178.254.0.0/19 42730 -178.254.32.0/20 42730 -178.254.48.0/24 42730 -178.254.50.0/23 42730 -178.254.52.0/22 42730 -178.254.56.0/22 42730 -178.254.60.0/23 42730 -178.254.62.0/24 42730 -178.254.63.0/24 196763 -178.254.64.0/18 6661 -178.254.128.0/20 9125 -178.254.144.0/24 9125 -178.254.145.0/24 52116 -178.254.146.0/24 9125 -178.254.147.0/24 202749 -178.254.148.0/23 9125 -178.254.150.0/24 52116 -178.254.151.0/24 9125 -178.254.152.0/21 9125 -178.254.160.0/22 28964 -178.254.166.0/23 28964 -178.254.168.0/24 52116 -178.254.169.0/24 9125 -178.254.170.0/24 52116 -178.254.171.0/24 198961 -178.254.172.0/24 52116 -178.254.173.0/24 28964 -178.254.174.0/24 28964 -178.254.175.0/24 9125 -178.254.176.0/24 207069 -178.254.177.0/24 9125 -178.254.178.0/24 28964 -178.254.179.0/24 198961 -178.254.180.0/24 52116 -178.254.182.0/24 28964 -178.254.183.0/24 52116 -178.254.184.0/24 9125 -178.254.185.0/24 28964 -178.254.186.0/23 9125 -178.254.188.0/22 9125 -178.254.192.0/18 20911 -178.255.0.0/21 51127 -178.255.8.0/23 43937 -178.255.10.0/24 131171 -178.255.11.0/24 43937 -178.255.12.0/22 43937 -178.255.16.0/22 34219 -178.255.20.0/23 34219 -178.255.22.0/24 34219 -178.255.23.0/24 16097 -178.255.24.0/21 198012 -178.255.32.0/22 42890 -178.255.40.0/21 197155 -178.255.48.0/21 197156 -178.255.56.0/21 51409 -178.255.64.0/21 41107 -178.255.72.0/21 20746 -178.255.80.0/21 35838 -178.255.88.0/21 12684 -178.255.96.0/21 51269 -178.255.104.0/23 766 -178.255.108.0/24 3352 -178.255.112.0/22 34244 -178.255.116.0/22 200689 -178.255.120.0/21 34467 -178.255.128.0/21 29605 -178.255.136.0/21 196932 -178.255.144.0/21 50304 -178.255.152.0/21 42473 -178.255.160.0/21 8399 -178.255.168.0/21 44489 -178.255.176.0/21 6723 -178.255.184.0/21 42425 -178.255.192.0/21 15922 -178.255.200.0/22 51297 -178.255.205.0/24 51297 -178.255.208.0/22 41935 -178.255.212.0/24 41935 -178.255.215.0/24 41935 -178.255.216.0/21 12684 -178.255.224.0/21 13287 -178.255.232.0/23 30733 -178.255.234.0/23 44982 -178.255.236.0/22 30733 -178.255.241.0/24 31034 -178.255.248.0/21 56868 -179.0.0.0/23 262174 -179.0.2.0/24 52460 -179.0.4.0/22 52459 -179.0.8.0/24 52460 -179.0.9.0/24 52464 -179.0.10.0/24 52467 -179.0.11.0/24 52480 -179.0.12.0/23 52472 -179.0.14.0/24 52275 -179.0.15.0/24 262261 -179.0.20.0/24 52470 -179.0.22.0/23 52470 -179.0.25.0/24 262265 -179.0.26.0/24 263169 -179.0.27.0/24 27989 -179.0.28.0/24 27665 -179.0.29.0/24 27817 -179.0.31.0/24 263193 -179.0.129.0/24 267907 -179.0.130.0/23 27894 -179.0.132.0/22 27875 -179.0.136.0/21 27875 -179.0.144.0/23 263186 -179.0.146.0/24 14080 -179.0.147.0/24 263200 -179.0.150.0/24 263206 -179.0.151.0/24 263217 -179.0.152.0/23 52494 -179.0.156.0/22 28000 -179.0.192.0/24 263231 -179.0.193.0/24 52371 -179.0.194.0/23 262933 -179.0.200.0/23 10391 -179.0.202.0/24 263220 -179.0.203.0/24 264666 -179.0.204.0/24 198949 -179.0.205.0/24 262930 -179.0.206.0/23 61835 -179.0.208.0/20 263232 -179.0.224.0/19 263230 -179.1.0.0/18 18678 -179.1.64.0/20 18678 -179.1.80.0/21 18678 -179.1.88.0/22 18678 -179.1.92.0/22 262589 -179.1.96.0/24 262589 -179.1.97.0/24 18678 -179.1.98.0/23 18678 -179.1.100.0/22 18678 -179.1.104.0/21 18678 -179.1.112.0/20 18678 -179.1.128.0/17 18678 -179.2.0.0/16 6535 -179.3.0.0/20 27995 -179.3.16.0/21 27995 -179.3.48.0/20 27995 -179.3.64.0/18 27836 -179.3.128.0/21 27836 -179.3.136.0/22 27836 -179.3.140.0/24 27995 -179.3.143.0/24 27995 -179.3.144.0/21 27995 -179.3.152.0/22 27995 -179.4.0.0/16 6535 -179.5.0.0/16 14754 -179.6.0.0/15 12252 -179.8.0.0/17 7418 -179.8.128.0/18 7418 -179.8.192.0/19 7418 -179.8.224.0/19 16629 -179.9.0.0/17 7418 -179.9.128.0/18 7418 -179.9.192.0/19 7418 -179.9.224.0/20 7418 -179.9.240.0/20 16629 -179.10.0.0/15 26615 -179.12.0.0/14 27831 -179.16.0.0/15 26615 -179.18.0.0/18 22698 -179.18.70.0/24 22698 -179.20.128.0/17 6306 -179.21.128.0/17 6306 -179.24.0.0/13 6057 -179.32.0.0/16 3816 -179.33.0.0/18 3816 -179.33.64.0/19 3816 -179.33.104.0/22 3816 -179.33.108.0/23 22368 -179.33.110.0/23 3816 -179.33.112.0/20 3816 -179.33.128.0/19 3816 -179.33.160.0/21 3816 -179.33.176.0/20 3816 -179.33.192.0/18 3816 -179.34.0.0/15 26615 -179.36.0.0/14 22927 -179.40.0.0/21 22927 -179.40.8.0/22 20207 -179.40.12.0/22 22927 -179.40.16.0/23 22927 -179.40.18.0/24 22927 -179.40.19.0/24 263778 -179.40.20.0/22 22927 -179.40.24.0/21 22927 -179.40.32.0/24 22927 -179.40.33.0/24 265689 -179.40.34.0/23 22927 -179.40.36.0/22 22927 -179.40.40.0/21 22927 -179.40.48.0/23 22927 -179.40.50.0/24 27983 -179.40.51.0/24 22927 -179.40.52.0/22 22927 -179.40.56.0/21 22927 -179.40.64.0/19 22927 -179.40.96.0/22 22927 -179.40.100.0/22 27927 -179.40.104.0/23 27927 -179.40.106.0/24 27927 -179.40.107.0/24 22927 -179.40.108.0/22 22927 -179.40.112.0/20 22927 -179.40.128.0/17 22927 -179.41.0.0/18 22927 -179.41.64.0/19 22927 -179.41.96.0/20 10834 -179.41.112.0/20 22927 -179.41.128.0/17 22927 -179.42.160.0/21 52496 -179.42.168.0/22 52436 -179.42.172.0/23 27951 -179.42.175.0/24 27951 -179.42.176.0/20 52369 -179.42.192.0/18 10269 -179.43.64.0/20 52426 -179.43.80.0/21 263185 -179.43.88.0/23 263185 -179.43.90.0/24 263185 -179.43.95.0/24 265667 -179.43.96.0/22 263189 -179.43.100.0/22 263194 -179.43.104.0/22 264659 -179.43.108.0/23 264659 -179.43.110.0/24 264659 -179.43.111.0/24 262186 -179.43.112.0/20 27823 -179.43.128.0/18 51852 -179.43.192.0/18 27887 -179.44.128.0/17 6306 -179.45.128.0/17 6306 -179.48.248.0/22 52423 -179.48.252.0/22 264856 -179.49.0.0/18 22724 -179.49.64.0/21 262168 -179.49.72.0/21 52474 -179.49.96.0/20 27955 -179.49.112.0/21 262234 -179.49.120.0/21 52477 -179.50.0.0/20 26619 -179.50.16.0/21 26619 -179.50.24.0/24 26619 -179.50.25.0/24 265682 -179.50.26.0/23 26619 -179.50.28.0/22 26619 -179.50.32.0/19 26619 -179.50.64.0/18 26619 -179.50.128.0/17 52228 -179.51.0.0/18 27773 -179.51.64.0/20 52471 -179.51.80.0/20 14232 -179.51.96.0/20 263210 -179.51.112.0/24 263210 -179.51.113.0/24 262220 -179.51.114.0/24 263210 -179.51.115.0/24 262186 -179.51.116.0/22 263210 -179.51.120.0/24 263210 -179.51.121.0/24 262186 -179.51.122.0/23 262186 -179.51.124.0/22 262186 -179.51.224.0/20 52352 -179.51.240.0/21 263190 -179.51.248.0/22 266145 -179.51.252.0/23 263187 -179.52.0.0/15 6400 -179.54.0.0/15 26615 -179.56.0.0/17 14117 -179.56.128.0/18 14117 -179.56.192.0/20 14117 -179.56.208.0/21 14117 -179.56.216.0/22 14117 -179.56.220.0/22 52435 -179.56.224.0/19 14117 -179.57.0.0/16 14117 -179.58.0.0/15 28024 -179.60.0.0/19 11815 -179.60.32.0/21 3549 -179.60.42.0/24 262191 -179.60.48.0/23 28058 -179.60.50.0/24 28058 -179.60.52.0/23 28058 -179.60.64.0/19 27901 -179.60.96.0/20 27960 -179.60.112.0/20 262159 -179.60.144.0/24 43350 -179.60.146.0/24 42237 -179.60.152.0/21 52380 -179.60.160.0/21 262241 -179.60.168.0/21 11014 -179.60.176.0/21 263179 -179.60.184.0/21 20207 -179.60.192.0/22 32934 -179.60.196.0/22 12150 -179.60.200.0/22 263172 -179.60.204.0/22 64120 -179.60.208.0/22 52491 -179.60.212.0/22 27800 -179.60.216.0/22 52465 -179.60.220.0/22 27870 -179.60.228.0/22 52493 -179.60.232.0/22 263693 -179.60.236.0/22 265804 -179.60.240.0/22 262215 -179.60.244.0/22 52458 -179.61.0.0/22 263183 -179.61.4.0/23 263183 -179.61.8.0/22 52503 -179.61.12.0/22 64114 -179.61.32.0/19 11816 -179.61.64.0/24 16921 -179.61.66.0/23 16921 -179.61.79.0/24 16921 -179.61.80.0/20 264656 -179.61.96.0/20 264780 -179.61.112.0/20 263202 -179.61.128.0/18 61317 -179.61.192.0/24 61317 -179.61.195.0/24 61317 -179.61.196.0/24 61317 -179.61.197.0/24 134121 -179.61.199.0/24 61317 -179.61.200.0/23 134121 -179.61.202.0/24 61317 -179.61.203.0/24 60458 -179.61.204.0/23 61317 -179.61.207.0/24 61317 -179.61.208.0/21 61317 -179.61.217.0/24 61317 -179.61.218.0/23 134121 -179.61.221.0/24 61317 -179.61.222.0/23 61317 -179.61.224.0/23 60458 -179.61.226.0/24 60458 -179.61.228.0/24 61317 -179.61.229.0/24 133398 -179.61.230.0/23 134121 -179.61.232.0/24 61317 -179.61.234.0/23 134121 -179.61.236.0/24 61317 -179.61.238.0/23 134121 -179.61.240.0/21 61317 -179.61.249.0/24 61317 -179.61.251.0/24 61317 -179.61.252.0/22 61317 -179.62.0.0/21 27983 -179.62.8.0/22 27983 -179.62.12.0/23 27983 -179.62.15.0/24 27983 -179.62.16.0/20 27983 -179.62.32.0/19 27983 -179.62.64.0/19 27983 -179.62.96.0/20 27983 -179.62.112.0/24 27983 -179.62.113.0/24 27827 -179.62.116.0/23 27983 -179.62.122.0/23 27983 -179.62.125.0/24 263834 -179.62.126.0/23 27983 -179.62.128.0/20 27983 -179.62.145.0/24 27983 -179.62.148.0/24 27983 -179.62.150.0/23 27983 -179.62.152.0/23 27983 -179.62.155.0/24 27983 -179.62.157.0/24 27983 -179.62.159.0/24 27983 -179.62.160.0/22 27983 -179.62.164.0/23 27983 -179.62.167.0/24 27983 -179.62.168.0/23 27983 -179.62.170.0/24 27983 -179.62.176.0/21 27983 -179.62.184.0/23 27983 -179.62.190.0/24 27983 -179.62.192.0/22 27983 -179.62.200.0/22 27983 -179.62.222.0/23 27983 -179.62.224.0/20 263822 -179.62.240.0/20 27983 -179.63.0.0/20 25577 -179.63.32.0/20 25577 -179.63.152.0/21 12779 -179.63.184.0/21 12779 -179.63.192.0/21 262248 -179.63.200.0/21 28066 -179.63.208.0/21 27976 -179.63.216.0/21 264640 -179.63.224.0/22 265642 -179.63.232.0/22 265642 -179.63.236.0/22 262150 -179.63.240.0/22 52475 -179.63.244.0/22 52439 -179.63.248.0/22 52438 -179.63.252.0/22 263686 -179.64.0.0/13 7738 -179.72.0.0/13 26615 -179.80.0.0/15 26599 -179.82.0.0/16 26599 -179.83.0.0/16 18881 -179.84.0.0/14 26599 -179.88.0.0/14 26599 -179.92.0.0/15 26599 -179.94.0.0/16 26599 -179.95.0.0/17 18881 -179.95.128.0/18 18881 -179.95.192.0/19 10429 -179.95.224.0/19 18881 -179.96.0.0/18 28329 -179.96.72.0/21 28329 -179.96.108.0/22 28329 -179.96.112.0/21 28329 -179.96.122.0/24 28329 -179.96.128.0/19 28634 -179.96.160.0/21 52637 -179.96.168.0/21 262661 -179.96.176.0/21 52639 -179.96.184.0/21 52711 -179.96.192.0/21 262780 -179.96.200.0/21 52570 -179.96.208.0/24 52640 -179.96.210.0/23 52640 -179.96.212.0/22 52640 -179.96.216.0/21 52666 -179.96.224.0/21 17108 -179.96.232.0/21 263407 -179.96.240.0/20 53059 -179.97.0.0/21 262470 -179.97.8.0/22 263408 -179.97.16.0/21 28181 -179.97.24.0/21 263411 -179.97.32.0/20 262740 -179.97.48.0/22 52962 -179.97.52.0/23 52962 -179.97.54.0/24 52962 -179.97.55.0/24 264459 -179.97.56.0/21 52962 -179.97.64.0/21 262797 -179.97.72.0/21 263412 -179.97.80.0/21 28361 -179.97.88.0/21 263413 -179.97.96.0/20 28601 -179.97.112.0/20 28636 -179.97.128.0/18 19182 -179.97.192.0/19 28359 -179.97.224.0/19 28300 -179.98.0.0/15 27699 -179.100.0.0/17 27699 -179.100.128.0/17 26599 -179.101.0.0/16 26599 -179.102.0.0/15 26599 -179.104.0.0/16 53006 -179.105.0.0/16 28573 -179.106.0.0/20 262604 -179.106.16.0/20 262595 -179.106.32.0/20 262760 -179.106.48.0/20 52524 -179.106.64.0/21 52525 -179.106.72.0/21 263415 -179.106.80.0/21 52528 -179.106.88.0/21 263416 -179.106.96.0/20 52532 -179.106.112.0/24 52533 -179.106.117.0/24 52533 -179.106.120.0/21 52533 -179.106.128.0/20 262441 -179.106.144.0/20 52537 -179.106.160.0/21 262488 -179.106.168.0/21 263423 -179.106.176.0/20 52539 -179.106.192.0/18 263083 -179.107.0.0/21 53143 -179.107.8.0/21 263265 -179.107.16.0/20 11835 -179.107.32.0/20 26592 -179.107.48.0/21 263284 -179.107.56.0/21 262346 -179.107.64.0/20 52543 -179.107.80.0/22 52545 -179.107.84.0/22 263275 -179.107.88.0/22 262948 -179.107.92.0/22 263277 -179.107.96.0/23 25933 -179.107.98.0/24 28250 -179.107.99.0/24 25933 -179.107.100.0/22 28250 -179.107.104.0/22 25933 -179.107.108.0/24 25933 -179.107.109.0/24 28250 -179.107.110.0/23 28250 -179.107.112.0/20 53132 -179.107.128.0/19 28171 -179.107.160.0/19 28300 -179.107.192.0/19 28294 -179.107.224.0/19 262293 -179.108.0.0/20 28668 -179.108.16.0/21 265911 -179.108.24.0/21 263267 -179.108.32.0/24 268480 -179.108.33.0/24 262961 -179.108.34.0/23 262961 -179.108.36.0/22 262961 -179.108.40.0/21 262961 -179.108.48.0/20 262468 -179.108.64.0/21 52968 -179.108.72.0/21 263268 -179.108.80.0/21 53158 -179.108.88.0/21 263269 -179.108.96.0/19 28303 -179.108.128.0/19 262973 -179.108.160.0/20 28642 -179.108.176.0/21 262983 -179.108.184.0/21 263271 -179.108.192.0/19 262691 -179.108.224.0/20 262691 -179.108.240.0/21 263274 -179.108.248.0/21 263276 -179.109.0.0/21 263562 -179.109.8.0/21 263272 -179.109.16.0/20 27693 -179.109.32.0/20 263567 -179.109.48.0/21 52988 -179.109.56.0/21 262903 -179.109.64.0/20 263578 -179.109.80.0/21 263582 -179.109.88.0/21 263280 -179.109.128.0/19 263585 -179.109.160.0/20 263087 -179.109.192.0/21 61893 -179.109.200.0/21 263589 -179.109.208.0/20 27715 -179.109.224.0/19 27715 -179.110.0.0/15 27699 -179.112.0.0/13 26599 -179.120.0.0/14 26615 -179.124.0.0/21 28264 -179.124.8.0/22 263609 -179.124.12.0/22 61916 -179.124.16.0/20 263611 -179.124.32.0/20 16397 -179.124.48.0/21 263104 -179.124.56.0/21 263111 -179.124.64.0/18 263610 -179.124.128.0/22 263612 -179.124.132.0/22 61917 -179.124.136.0/21 52965 -179.124.144.0/20 263613 -179.124.160.0/20 28625 -179.124.176.0/21 61914 -179.124.184.0/21 61908 -179.124.192.0/22 262609 -179.124.196.0/22 262539 -179.124.200.0/22 263617 -179.124.204.0/22 52817 -179.124.208.0/22 263618 -179.124.212.0/22 263619 -179.124.216.0/21 263624 -179.124.224.0/20 28360 -179.124.240.0/21 262732 -179.124.248.0/21 262972 -179.125.0.0/21 53043 -179.125.16.0/22 263625 -179.125.20.0/22 52558 -179.125.24.0/21 263626 -179.125.32.0/21 262847 -179.125.40.0/21 263629 -179.125.48.0/21 263631 -179.125.56.0/22 263043 -179.125.60.0/22 263633 -179.125.64.0/19 262988 -179.125.96.0/21 263632 -179.125.104.0/21 263281 -179.125.112.0/21 263634 -179.125.120.0/22 263635 -179.125.124.0/22 262494 -179.125.128.0/17 28649 -179.126.0.0/16 53006 -179.127.0.0/19 28209 -179.127.32.0/21 263637 -179.127.40.0/21 52913 -179.127.48.0/20 262659 -179.127.64.0/21 28287 -179.127.72.0/21 263283 -179.127.80.0/20 28292 -179.127.96.0/20 262469 -179.127.112.0/22 28605 -179.127.116.0/22 263105 -179.127.120.0/22 262374 -179.127.124.0/23 263639 -179.127.126.0/24 263670 -179.127.127.0/24 263673 -179.127.128.0/20 28146 -179.127.144.0/22 263640 -179.127.148.0/22 263644 -179.127.152.0/21 263641 -179.127.160.0/19 28343 -179.127.192.0/21 262854 -179.127.200.0/22 263642 -179.127.204.0/23 263642 -179.127.207.0/24 263642 -179.127.208.0/20 28596 -179.127.224.0/20 262688 -179.127.240.0/21 263643 -179.127.248.0/21 263645 -179.128.0.0/15 26599 -179.130.0.0/16 26599 -179.131.0.0/17 11419 -179.131.128.0/17 26599 -179.132.0.0/14 26599 -179.136.0.0/14 53037 -179.140.0.0/17 53037 -179.140.128.0/18 53037 -179.141.0.0/16 53037 -179.142.0.0/16 53037 -179.143.0.0/17 53037 -179.144.0.0/16 26599 -179.145.0.0/18 27699 -179.145.64.0/18 26599 -179.145.128.0/17 26599 -179.146.0.0/15 26599 -179.148.0.0/14 26599 -179.152.192.0/18 28573 -179.153.0.0/16 28573 -179.154.0.0/15 28573 -179.156.0.0/14 28573 -179.160.0.0/15 26599 -179.162.0.0/16 18881 -179.163.0.0/16 26599 -179.164.0.0/14 26599 -179.168.0.0/14 26599 -179.172.0.0/15 26599 -179.174.0.0/18 27699 -179.174.64.0/18 26599 -179.174.128.0/17 26599 -179.175.0.0/16 26599 -179.176.0.0/14 18881 -179.180.0.0/17 18881 -179.180.128.0/20 10429 -179.180.144.0/20 18881 -179.180.160.0/19 18881 -179.180.192.0/18 18881 -179.181.0.0/20 10429 -179.181.16.0/20 18881 -179.181.32.0/19 18881 -179.181.64.0/18 18881 -179.181.128.0/19 18881 -179.181.160.0/21 18881 -179.181.168.0/21 10429 -179.181.176.0/20 18881 -179.181.192.0/18 18881 -179.182.0.0/17 18881 -179.182.128.0/19 18881 -179.182.160.0/20 10429 -179.182.176.0/20 18881 -179.182.192.0/18 18881 -179.183.0.0/19 18881 -179.183.32.0/20 18881 -179.183.48.0/20 10429 -179.183.64.0/20 18881 -179.183.80.0/20 10429 -179.183.96.0/19 18881 -179.183.128.0/20 10429 -179.183.144.0/20 18881 -179.183.160.0/21 10429 -179.183.168.0/21 18881 -179.183.176.0/21 10429 -179.183.184.0/21 18881 -179.183.192.0/18 18881 -179.184.0.0/14 18881 -179.188.0.0/16 27715 -179.189.0.0/20 28309 -179.189.16.0/20 52630 -179.189.32.0/21 262591 -179.189.40.0/21 262504 -179.189.48.0/20 52609 -179.189.64.0/20 52610 -179.189.84.0/22 267221 -179.189.92.0/22 52614 -179.189.96.0/20 28201 -179.189.112.0/20 263612 -179.189.128.0/19 53066 -179.189.160.0/19 28202 -179.189.192.0/20 52626 -179.189.208.0/20 52632 -179.189.224.0/20 28669 -179.189.240.0/20 28252 -179.190.0.0/18 52925 -179.190.64.0/19 262441 -179.190.96.0/19 28343 -179.190.128.0/17 28220 -179.191.8.0/21 263314 -179.191.16.0/20 52565 -179.191.32.0/22 52574 -179.191.48.0/21 52596 -179.191.56.0/21 262327 -179.191.64.0/18 17222 -179.191.128.0/19 28331 -179.191.160.0/23 52580 -179.191.164.0/22 52580 -179.191.168.0/22 52580 -179.191.172.0/24 52580 -179.191.174.0/23 52580 -179.191.176.0/24 33182 -179.191.177.0/24 52580 -179.191.178.0/24 52580 -179.191.179.0/24 33182 -179.191.181.0/24 52580 -179.191.182.0/23 52580 -179.191.185.0/24 52580 -179.191.186.0/23 52580 -179.191.188.0/23 52580 -179.191.190.0/23 18747 -179.191.192.0/19 28210 -179.191.224.0/22 263420 -179.191.228.0/24 263054 -179.191.229.0/24 263420 -179.191.230.0/23 263420 -179.191.232.0/21 263422 -179.191.240.0/20 263421 -179.192.0.0/13 7738 -179.200.0.0/13 26615 -179.208.0.0/13 28573 -179.216.0.0/18 28573 -179.216.80.0/20 28573 -179.216.96.0/19 28573 -179.216.128.0/17 28573 -179.217.0.0/16 28573 -179.218.0.0/15 28573 -179.220.0.0/16 28573 -179.221.0.0/17 28573 -179.221.128.0/19 28573 -179.221.160.0/20 28573 -179.221.192.0/18 28573 -179.222.0.0/15 28573 -179.224.0.0/14 26599 -179.228.0.0/16 27699 -179.229.0.0/16 26599 -179.230.0.0/15 26599 -179.232.0.0/16 28573 -179.233.0.0/19 28573 -179.233.64.0/18 28573 -179.233.128.0/17 28573 -179.234.0.0/15 28573 -179.236.0.0/14 7738 -179.240.0.0/14 22085 -179.244.0.0/15 26599 -179.246.0.0/16 26599 -179.247.0.0/17 26599 -179.247.128.0/18 27699 -179.247.192.0/19 26599 -179.247.224.0/20 26599 -179.247.240.0/20 27699 -179.248.0.0/14 26615 -179.252.0.0/14 8167 -180.0.0.0/10 4713 -180.64.0.0/17 9318 -180.64.128.0/22 9318 -180.64.132.0/23 9318 -180.64.134.0/24 9318 -180.64.135.0/24 55632 -180.64.136.0/22 9318 -180.64.140.0/24 9318 -180.64.141.0/24 55632 -180.64.142.0/24 55632 -180.64.143.0/24 9318 -180.64.144.0/20 9318 -180.64.160.0/19 9318 -180.64.192.0/20 9318 -180.64.208.0/24 45389 -180.64.209.0/24 9318 -180.64.210.0/23 9318 -180.64.212.0/22 9318 -180.64.216.0/24 9647 -180.64.217.0/24 9318 -180.64.218.0/23 9318 -180.64.220.0/22 9318 -180.64.224.0/19 9318 -180.65.0.0/19 9318 -180.65.32.0/20 9318 -180.65.48.0/22 9318 -180.65.52.0/24 9318 -180.65.53.0/24 10060 -180.65.54.0/23 9318 -180.65.56.0/24 9318 -180.65.57.0/24 10060 -180.65.58.0/24 9318 -180.65.59.0/24 10060 -180.65.60.0/22 9318 -180.65.64.0/18 9318 -180.65.128.0/17 9318 -180.66.0.0/16 9318 -180.67.0.0/20 9318 -180.67.16.0/22 9318 -180.67.20.0/24 9318 -180.67.21.0/24 10060 -180.67.22.0/23 9318 -180.67.24.0/21 9318 -180.67.32.0/19 9318 -180.67.64.0/18 9318 -180.67.128.0/17 9318 -180.68.0.0/14 9318 -180.72.0.0/22 38322 -180.72.4.0/23 38322 -180.73.0.0/21 38322 -180.73.8.0/22 38322 -180.73.14.0/23 38322 -180.74.0.0/20 38322 -180.74.16.0/23 38322 -180.75.0.0/21 38322 -180.75.8.0/22 38322 -180.76.0.0/21 55967 -180.76.8.0/23 38627 -180.76.10.0/23 55967 -180.76.12.0/22 55967 -180.76.16.0/20 38365 -180.76.32.0/19 38365 -180.76.64.0/18 38365 -180.76.128.0/17 38365 -180.77.0.0/16 24138 -180.78.0.0/16 24138 -180.79.0.0/18 17429 -180.79.64.0/18 24138 -180.79.128.0/17 24138 -180.80.0.0/19 9316 -180.80.32.0/21 9316 -180.80.40.0/22 9316 -180.80.44.0/23 9688 -180.80.46.0/24 9688 -180.80.47.0/24 9316 -180.80.48.0/20 9316 -180.80.64.0/19 17858 -180.80.96.0/19 9316 -180.80.128.0/20 9316 -180.80.144.0/20 17858 -180.80.160.0/19 9316 -180.80.192.0/20 9316 -180.80.208.0/20 17858 -180.80.224.0/19 17858 -180.81.0.0/20 9316 -180.81.16.0/21 23571 -180.81.24.0/22 23571 -180.81.28.0/23 23571 -180.81.30.0/24 23571 -180.81.31.0/24 9316 -180.81.32.0/19 9316 -180.81.64.0/19 23571 -180.81.96.0/20 23571 -180.81.112.0/23 23571 -180.81.114.0/23 9316 -180.81.116.0/22 9316 -180.81.120.0/24 23571 -180.81.121.0/24 9316 -180.81.122.0/23 23571 -180.81.124.0/23 23571 -180.81.126.0/24 23571 -180.81.127.0/24 9316 -180.81.128.0/17 9316 -180.82.0.0/20 9316 -180.82.16.0/22 9316 -180.82.20.0/23 9316 -180.82.22.0/24 38415 -180.82.23.0/24 9316 -180.82.24.0/24 9316 -180.82.25.0/24 38390 -180.82.26.0/24 9316 -180.82.27.0/24 38390 -180.82.28.0/22 9316 -180.82.32.0/20 9316 -180.82.48.0/22 9316 -180.82.52.0/23 38402 -180.82.54.0/24 9316 -180.82.55.0/24 38406 -180.82.56.0/24 38406 -180.82.57.0/24 9316 -180.82.58.0/24 38400 -180.82.59.0/24 9316 -180.82.60.0/22 9316 -180.82.64.0/21 9316 -180.82.72.0/23 9316 -180.82.74.0/24 9316 -180.82.75.0/24 38411 -180.82.76.0/23 38411 -180.82.78.0/23 9316 -180.82.80.0/20 9316 -180.82.96.0/19 9316 -180.82.128.0/17 9316 -180.83.0.0/16 17858 -180.84.0.0/15 4538 -180.86.0.0/16 4847 -180.87.0.0/21 6453 -180.87.8.0/22 6453 -180.87.12.0/24 6453 -180.87.13.0/24 6421 -180.87.14.0/23 6453 -180.87.16.0/21 6453 -180.87.24.0/23 6453 -180.87.26.0/24 6453 -180.87.27.0/24 6421 -180.87.28.0/24 6453 -180.87.29.0/24 6421 -180.87.30.0/23 6453 -180.87.32.0/19 6453 -180.87.64.0/22 6453 -180.87.68.0/24 6421 -180.87.69.0/24 6453 -180.87.70.0/23 6453 -180.87.72.0/22 6453 -180.87.76.0/24 6421 -180.87.77.0/24 6453 -180.87.78.0/23 6453 -180.87.80.0/23 6453 -180.87.82.0/24 9299 -180.87.83.0/24 6453 -180.87.84.0/23 6453 -180.87.86.0/24 17451 -180.87.87.0/24 6453 -180.87.88.0/23 6453 -180.87.90.0/24 6453 -180.87.91.0/24 6421 -180.87.92.0/24 6421 -180.87.93.0/24 6453 -180.87.94.0/24 9299 -180.87.95.0/24 6453 -180.87.96.0/22 6453 -180.87.100.0/24 6453 -180.87.101.0/24 133850 -180.87.102.0/24 6453 -180.87.103.0/24 394984 -180.87.104.0/21 6453 -180.87.112.0/23 6453 -180.87.114.0/24 6453 -180.87.115.0/24 6421 -180.87.116.0/24 6453 -180.87.117.0/24 6421 -180.87.118.0/23 6453 -180.87.120.0/23 6421 -180.87.122.0/24 6421 -180.87.123.0/24 6453 -180.87.124.0/22 6421 -180.87.128.0/24 6453 -180.87.129.0/24 6421 -180.87.130.0/23 6453 -180.87.132.0/22 6453 -180.87.136.0/23 6453 -180.87.138.0/23 6421 -180.87.140.0/23 6421 -180.87.142.0/23 6453 -180.87.144.0/21 6453 -180.87.152.0/23 6421 -180.87.154.0/23 6453 -180.87.156.0/22 6453 -180.87.160.0/22 6453 -180.87.164.0/24 6453 -180.87.165.0/24 63199 -180.87.166.0/23 6453 -180.87.168.0/21 6453 -180.87.176.0/22 6453 -180.87.180.0/23 6453 -180.87.182.0/24 6421 -180.87.183.0/24 6453 -180.87.184.0/22 6453 -180.87.188.0/23 6453 -180.87.190.0/23 6421 -180.87.193.0/24 45335 -180.87.194.0/23 45335 -180.87.197.0/24 45335 -180.87.198.0/23 45335 -180.87.201.0/24 133695 -180.87.202.0/24 45335 -180.87.203.0/24 133695 -180.87.204.0/22 45335 -180.87.208.0/22 45335 -180.87.212.0/23 45335 -180.87.215.0/24 45335 -180.87.216.0/21 45335 -180.87.224.0/22 45335 -180.87.228.0/23 45335 -180.87.230.0/24 133695 -180.87.231.0/24 45335 -180.87.233.0/24 45335 -180.87.234.0/23 45335 -180.87.236.0/23 45335 -180.87.238.0/24 45335 -180.87.240.0/22 45335 -180.87.244.0/24 45335 -180.87.245.0/24 133695 -180.87.246.0/23 45335 -180.87.248.0/24 133695 -180.87.252.0/24 45335 -180.87.254.0/24 133695 -180.88.0.0/18 17964 -180.88.96.0/19 4808 -180.88.128.0/18 4808 -180.88.192.0/18 17964 -180.89.0.0/18 4847 -180.89.64.0/19 4808 -180.89.160.0/19 4847 -180.89.192.0/19 4847 -180.90.0.0/17 7497 -180.90.128.0/17 4847 -180.91.0.0/17 17964 -180.91.160.0/19 17964 -180.91.192.0/18 4847 -180.92.0.0/20 9924 -180.92.16.0/20 59127 -180.92.32.0/19 4721 -180.92.64.0/18 9770 -180.92.128.0/21 55714 -180.92.136.0/22 55714 -180.92.140.0/24 23607 -180.92.141.0/24 55714 -180.92.142.0/23 55714 -180.92.144.0/22 55714 -180.92.148.0/23 55714 -180.92.150.0/24 23607 -180.92.151.0/24 55714 -180.92.152.0/21 55714 -180.92.160.0/22 45854 -180.92.165.0/24 45854 -180.92.166.0/23 45854 -180.92.168.0/21 45854 -180.92.180.0/22 56059 -180.92.188.0/22 29791 -180.92.192.0/21 45671 -180.92.208.0/22 38611 -180.92.216.0/21 55521 -180.92.224.0/20 9832 -180.92.240.0/20 45400 -180.93.0.0/16 7602 -180.94.36.0/24 45865 -180.94.40.0/21 131934 -180.94.48.0/21 25222 -180.94.64.0/19 55330 -180.94.112.0/21 56163 -180.94.128.0/18 4609 -180.94.192.0/20 18121 -180.94.208.0/21 18121 -180.94.216.0/22 45934 -180.94.220.0/23 45868 -180.94.224.0/22 133772 -180.94.232.0/22 45871 -180.94.236.0/22 45873 -180.94.240.0/20 18282 -180.95.0.0/24 45768 -180.95.16.0/20 46069 -180.95.35.0/24 59206 -180.95.36.0/22 59206 -180.95.40.0/21 136589 -180.95.64.0/19 45768 -180.95.121.0/24 45953 -180.95.128.0/17 4837 -180.96.0.0/18 137702 -180.96.64.0/20 137702 -180.96.80.0/21 137702 -180.96.88.0/21 4134 -180.96.96.0/19 4134 -180.96.128.0/17 4134 -180.97.0.0/18 137702 -180.97.64.0/21 23650 -180.97.72.0/22 23650 -180.97.76.0/23 23650 -180.97.78.0/24 23650 -180.97.79.0/24 134770 -180.97.80.0/22 23650 -180.97.84.0/23 23650 -180.97.86.0/24 4134 -180.97.87.0/24 23650 -180.97.88.0/23 4134 -180.97.90.0/23 23650 -180.97.92.0/24 23650 -180.97.93.0/24 134770 -180.97.94.0/23 134770 -180.97.96.0/21 4134 -180.97.104.0/21 137702 -180.97.112.0/21 137702 -180.97.120.0/23 134417 -180.97.122.0/24 134417 -180.97.123.0/24 137702 -180.97.124.0/23 137702 -180.97.126.0/23 134417 -180.97.128.0/21 137702 -180.97.136.0/21 4134 -180.97.144.0/21 23650 -180.97.152.0/22 23650 -180.97.156.0/22 4134 -180.97.160.0/24 23650 -180.97.161.0/24 4134 -180.97.162.0/23 4134 -180.97.164.0/22 4134 -180.97.168.0/22 4134 -180.97.172.0/24 23650 -180.97.173.0/24 4134 -180.97.174.0/23 4134 -180.97.176.0/24 137697 -180.97.177.0/24 4134 -180.97.178.0/23 137697 -180.97.180.0/22 137697 -180.97.184.0/21 137697 -180.97.192.0/22 23650 -180.97.196.0/24 23650 -180.97.197.0/24 4134 -180.97.198.0/23 23650 -180.97.200.0/21 23650 -180.97.208.0/21 23650 -180.97.216.0/24 23650 -180.97.217.0/24 4134 -180.97.218.0/23 4134 -180.97.220.0/22 23650 -180.97.224.0/24 23650 -180.97.225.0/24 4134 -180.97.226.0/24 4134 -180.97.227.0/24 23650 -180.97.228.0/24 4134 -180.97.229.0/24 23650 -180.97.230.0/23 4134 -180.97.232.0/24 131325 -180.97.233.0/24 4134 -180.97.234.0/23 4134 -180.97.236.0/24 4134 -180.97.237.0/24 131325 -180.97.238.0/23 131325 -180.97.240.0/20 4134 -180.98.0.0/15 4134 -180.100.0.0/18 4134 -180.100.64.0/22 4134 -180.100.68.0/23 4134 -180.100.70.0/24 23650 -180.100.71.0/24 4134 -180.100.72.0/21 4134 -180.100.80.0/23 4134 -180.100.82.0/24 23650 -180.100.83.0/24 4134 -180.100.84.0/23 23650 -180.100.86.0/24 4134 -180.100.87.0/24 23650 -180.100.88.0/21 4134 -180.100.96.0/21 4134 -180.100.104.0/24 4134 -180.100.105.0/24 134756 -180.100.106.0/23 4134 -180.100.108.0/22 4134 -180.100.112.0/20 4134 -180.100.128.0/18 4134 -180.100.192.0/21 4134 -180.100.200.0/22 4134 -180.100.204.0/23 4134 -180.100.206.0/23 23650 -180.100.208.0/21 23650 -180.100.216.0/23 23650 -180.100.218.0/23 4134 -180.100.220.0/22 4134 -180.100.224.0/19 4134 -180.101.0.0/20 4809 -180.101.16.0/20 4134 -180.101.32.0/20 4134 -180.101.48.0/21 134756 -180.101.56.0/21 4134 -180.101.64.0/20 4134 -180.101.80.0/22 134770 -180.101.84.0/23 134770 -180.101.86.0/24 134770 -180.101.87.0/24 4134 -180.101.88.0/21 4134 -180.101.96.0/19 4134 -180.101.128.0/22 4134 -180.101.132.0/23 23650 -180.101.134.0/23 4134 -180.101.136.0/21 23650 -180.101.144.0/22 4134 -180.101.148.0/23 4134 -180.101.150.0/23 134769 -180.101.152.0/23 134769 -180.101.154.0/24 134769 -180.101.155.0/24 4134 -180.101.156.0/22 4134 -180.101.160.0/20 4134 -180.101.176.0/21 4134 -180.101.184.0/22 23650 -180.101.188.0/24 23650 -180.101.189.0/24 138950 -180.101.190.0/23 138950 -180.101.192.0/22 138950 -180.101.196.0/24 138950 -180.101.197.0/24 4134 -180.101.198.0/24 23650 -180.101.199.0/24 4134 -180.101.200.0/23 4134 -180.101.202.0/23 23650 -180.101.204.0/23 23650 -180.101.206.0/24 23650 -180.101.207.0/24 4134 -180.101.208.0/23 4134 -180.101.210.0/24 4134 -180.101.211.0/24 134770 -180.101.212.0/22 134770 -180.101.216.0/24 134770 -180.101.217.0/24 23650 -180.101.218.0/23 23650 -180.101.220.0/22 23650 -180.101.224.0/20 4134 -180.101.240.0/20 134756 -180.102.0.0/20 4134 -180.102.16.0/20 134756 -180.102.32.0/19 4134 -180.102.64.0/18 4134 -180.102.128.0/21 134756 -180.102.136.0/21 4134 -180.102.144.0/20 4134 -180.102.160.0/19 4134 -180.102.192.0/18 4134 -180.103.0.0/19 4134 -180.103.32.0/20 4134 -180.103.48.0/21 4134 -180.103.56.0/24 4809 -180.103.57.0/24 4134 -180.103.58.0/23 4134 -180.103.60.0/22 4134 -180.103.64.0/23 4809 -180.103.66.0/23 4134 -180.103.68.0/22 4134 -180.103.72.0/21 4134 -180.103.80.0/20 4134 -180.103.96.0/19 4134 -180.103.128.0/18 4134 -180.103.192.0/20 4134 -180.103.208.0/23 4134 -180.103.210.0/24 23650 -180.103.211.0/24 4134 -180.103.212.0/22 4134 -180.103.216.0/21 4134 -180.103.224.0/19 4134 -180.104.0.0/15 4134 -180.106.0.0/20 4134 -180.106.16.0/21 4134 -180.106.24.0/24 23650 -180.106.25.0/24 4134 -180.106.26.0/23 4134 -180.106.28.0/22 4134 -180.106.32.0/19 4134 -180.106.64.0/20 4134 -180.106.80.0/22 23650 -180.106.84.0/22 4134 -180.106.88.0/21 4134 -180.106.96.0/19 4134 -180.106.128.0/20 4134 -180.106.144.0/22 4134 -180.106.148.0/22 23650 -180.106.152.0/21 4134 -180.106.160.0/19 4134 -180.106.192.0/18 4134 -180.107.0.0/18 4134 -180.107.64.0/19 4134 -180.107.96.0/21 4134 -180.107.104.0/22 4134 -180.107.108.0/24 4134 -180.107.109.0/24 23650 -180.107.110.0/23 4134 -180.107.112.0/20 4134 -180.107.128.0/21 4134 -180.107.136.0/22 4134 -180.107.140.0/24 23650 -180.107.141.0/24 4134 -180.107.142.0/23 4134 -180.107.144.0/20 4134 -180.107.160.0/19 4134 -180.107.192.0/18 4134 -180.108.0.0/19 4134 -180.108.32.0/21 4134 -180.108.40.0/22 4134 -180.108.44.0/23 4134 -180.108.46.0/24 23650 -180.108.47.0/24 4134 -180.108.48.0/20 4134 -180.108.64.0/24 23650 -180.108.65.0/24 4134 -180.108.66.0/23 4134 -180.108.68.0/22 4134 -180.108.72.0/21 4134 -180.108.80.0/20 4134 -180.108.96.0/19 4134 -180.108.128.0/17 4134 -180.109.0.0/18 4134 -180.109.64.0/19 4134 -180.109.96.0/20 4134 -180.109.112.0/22 4134 -180.109.116.0/22 134756 -180.109.120.0/21 4134 -180.109.128.0/20 4134 -180.109.144.0/21 4134 -180.109.152.0/22 4134 -180.109.156.0/22 134756 -180.109.160.0/21 4134 -180.109.168.0/22 134756 -180.109.172.0/22 4134 -180.109.176.0/20 4134 -180.109.192.0/18 4134 -180.110.0.0/19 4134 -180.110.32.0/20 4134 -180.110.48.0/21 4134 -180.110.56.0/22 4134 -180.110.60.0/23 4134 -180.110.62.0/24 4134 -180.110.63.0/24 23650 -180.110.64.0/18 4134 -180.110.128.0/19 4134 -180.110.160.0/21 4134 -180.110.168.0/22 4134 -180.110.172.0/22 134756 -180.110.176.0/20 4134 -180.110.192.0/21 4134 -180.110.200.0/21 134756 -180.110.208.0/20 4134 -180.110.224.0/19 4134 -180.111.0.0/17 4134 -180.111.128.0/18 4134 -180.111.192.0/22 4134 -180.111.196.0/22 134756 -180.111.200.0/21 4134 -180.111.208.0/20 4134 -180.111.224.0/19 4134 -180.112.0.0/14 4134 -180.116.0.0/15 4134 -180.118.0.0/16 4134 -180.119.0.0/18 4134 -180.119.64.0/19 4134 -180.119.96.0/20 4134 -180.119.112.0/21 4134 -180.119.120.0/22 137697 -180.119.124.0/22 4134 -180.119.128.0/21 4134 -180.119.136.0/22 137697 -180.119.140.0/22 4134 -180.119.144.0/22 137697 -180.119.148.0/22 4134 -180.119.152.0/21 4134 -180.119.160.0/21 4134 -180.119.168.0/22 137697 -180.119.172.0/22 4134 -180.119.176.0/20 4134 -180.119.192.0/19 4134 -180.119.224.0/21 4134 -180.119.232.0/22 137697 -180.119.236.0/22 4134 -180.119.240.0/20 4134 -180.120.0.0/14 4134 -180.124.0.0/16 4134 -180.125.0.0/17 4134 -180.125.128.0/18 4134 -180.125.192.0/20 4134 -180.125.208.0/21 4134 -180.125.216.0/24 23650 -180.125.217.0/24 4134 -180.125.218.0/23 4134 -180.125.220.0/22 4134 -180.125.224.0/19 4134 -180.126.0.0/15 4134 -180.128.0.0/19 23932 -180.128.32.0/19 45223 -180.128.64.0/18 45223 -180.128.128.0/17 23932 -180.129.0.0/17 4773 -180.129.128.0/17 4837 -180.130.0.0/16 4837 -180.131.0.0/21 17589 -180.131.9.0/24 55592 -180.131.10.0/23 17589 -180.131.12.0/22 17589 -180.131.16.0/21 17589 -180.131.24.0/22 17589 -180.131.28.0/24 55592 -180.131.29.0/24 17589 -180.131.30.0/24 55592 -180.131.31.0/24 17589 -180.131.32.0/22 17589 -180.131.36.0/24 55592 -180.131.37.0/24 17589 -180.131.38.0/23 17589 -180.131.40.0/24 17589 -180.131.41.0/24 55592 -180.131.42.0/23 55592 -180.131.44.0/23 17589 -180.131.46.0/24 55592 -180.131.47.0/24 17589 -180.131.48.0/23 17589 -180.131.50.0/23 55592 -180.131.52.0/24 55592 -180.131.53.0/24 17589 -180.131.54.0/24 17589 -180.131.55.0/24 55592 -180.131.56.0/24 55592 -180.131.57.0/24 17589 -180.131.58.0/24 55592 -180.131.59.0/24 17589 -180.131.60.0/22 17589 -180.131.96.0/20 10013 -180.131.112.0/23 10013 -180.131.114.0/24 10013 -180.131.116.0/22 10013 -180.131.120.0/23 10013 -180.131.122.0/24 10013 -180.131.124.0/23 10013 -180.131.126.0/24 10013 -180.131.127.0/24 59092 -180.131.136.0/21 131921 -180.131.144.0/22 45719 -180.131.148.0/22 45906 -180.131.152.0/21 9378 -180.131.160.0/19 9304 -180.131.192.0/20 9378 -180.131.208.0/20 55900 -180.131.224.0/19 55900 -180.132.0.0/14 9644 -180.136.0.0/16 4134 -180.137.0.0/18 4134 -180.137.64.0/19 4134 -180.137.96.0/19 134419 -180.137.128.0/18 4134 -180.137.192.0/19 4134 -180.137.224.0/20 4134 -180.137.240.0/21 4134 -180.137.248.0/22 4134 -180.137.252.0/23 4134 -180.137.254.0/23 137693 -180.138.0.0/15 4134 -180.140.0.0/15 4134 -180.142.0.0/18 4134 -180.142.64.0/21 134419 -180.142.72.0/21 4134 -180.142.80.0/20 4134 -180.142.96.0/19 4134 -180.142.128.0/21 134419 -180.142.136.0/21 4134 -180.142.144.0/20 4134 -180.142.160.0/19 4134 -180.142.192.0/18 4134 -180.143.0.0/17 4134 -180.143.128.0/20 4134 -180.143.144.0/21 4134 -180.143.152.0/21 134419 -180.143.160.0/21 4134 -180.143.168.0/21 134419 -180.143.176.0/20 4134 -180.143.192.0/18 4134 -180.144.0.0/14 17511 -180.148.0.0/21 45557 -180.148.12.0/22 56061 -180.148.28.0/22 7687 -180.148.32.0/19 24554 -180.148.64.0/19 9398 -180.148.96.0/19 55850 -180.148.128.0/20 45894 -180.148.144.0/21 59127 -180.148.160.0/20 17941 -180.148.176.0/22 45269 -180.148.180.0/22 38125 -180.148.184.0/21 45677 -180.148.192.0/20 45677 -180.148.208.0/21 45905 -180.149.6.0/23 45904 -180.149.8.0/21 45904 -180.149.20.0/22 45904 -180.149.30.0/23 45904 -180.149.48.0/23 55824 -180.149.50.0/24 55847 -180.149.51.0/24 55824 -180.149.52.0/24 55824 -180.149.53.0/24 55847 -180.149.54.0/23 55824 -180.149.56.0/24 55824 -180.149.57.0/24 55847 -180.149.58.0/24 55847 -180.149.59.0/24 55824 -180.149.60.0/22 55824 -180.149.64.0/18 45204 -180.149.128.0/19 23724 -180.149.160.0/19 4721 -180.149.192.0/22 10115 -180.149.196.0/22 23686 -180.149.200.0/24 18211 -180.149.201.0/24 4826 -180.149.202.0/24 18211 -180.149.204.0/22 10010 -180.149.208.0/20 9937 -180.149.225.0/24 132116 -180.149.226.0/23 132116 -180.149.228.0/22 136557 -180.149.232.0/22 131464 -180.149.236.0/22 136993 -180.149.240.0/21 133296 -180.149.248.0/22 134111 -180.149.252.0/22 55334 -180.150.0.0/17 4764 -180.150.128.0/19 45187 -180.150.160.0/21 56001 -180.150.176.0/20 4808 -180.150.192.0/19 10164 -180.150.224.0/24 4766 -180.150.225.0/24 45382 -180.150.226.0/23 45382 -180.150.228.0/24 45382 -180.150.229.0/24 3786 -180.150.230.0/23 45382 -180.150.232.0/24 24210 -180.150.240.0/22 45954 -180.150.244.0/24 9340 -180.150.245.0/24 17727 -180.150.246.0/24 133347 -180.150.248.0/22 38053 -180.150.252.0/22 58460 -180.151.0.0/17 10029 -180.151.128.0/18 10029 -180.151.192.0/21 10029 -180.151.201.0/24 10029 -180.151.202.0/23 10029 -180.151.204.0/24 10029 -180.151.207.0/24 10029 -180.151.208.0/20 10029 -180.151.224.0/19 10029 -180.152.0.0/13 4812 -180.160.0.0/12 4812 -180.176.0.0/18 38841 -180.176.64.0/19 9924 -180.176.96.0/20 38841 -180.176.112.0/21 38841 -180.176.120.0/21 9924 -180.176.128.0/18 38841 -180.176.192.0/22 9924 -180.176.196.0/22 38841 -180.176.200.0/21 38841 -180.176.208.0/21 38841 -180.176.216.0/21 9924 -180.176.224.0/20 38841 -180.176.240.0/22 9924 -180.176.244.0/22 38841 -180.176.248.0/21 38841 -180.177.0.0/21 9924 -180.177.8.0/21 38841 -180.177.16.0/21 9924 -180.177.24.0/21 38841 -180.177.32.0/21 38841 -180.177.40.0/22 38841 -180.177.44.0/23 38841 -180.177.46.0/23 9924 -180.177.48.0/20 9924 -180.177.64.0/18 9924 -180.177.128.0/20 38841 -180.177.144.0/20 9924 -180.177.160.0/20 9924 -180.177.176.0/20 38841 -180.177.192.0/21 38841 -180.177.200.0/21 9924 -180.177.208.0/20 9924 -180.177.224.0/20 9924 -180.177.240.0/22 9924 -180.177.244.0/22 38841 -180.177.248.0/22 38841 -180.177.252.0/22 9924 -180.178.32.0/19 45753 -180.178.64.0/24 55923 -180.178.65.0/24 7474 -180.178.66.0/23 55923 -180.178.68.0/22 55394 -180.178.72.0/21 44356 -180.178.80.0/21 17958 -180.178.88.0/22 23627 -180.178.92.0/22 45722 -180.178.96.0/22 38758 -180.178.100.0/24 38758 -180.178.102.0/23 38758 -180.178.104.0/24 38758 -180.178.106.0/23 38758 -180.178.108.0/22 38758 -180.178.120.0/22 24341 -180.178.124.0/23 59318 -180.178.126.0/23 131207 -180.178.128.0/21 9387 -180.178.137.0/24 9387 -180.178.138.0/23 9387 -180.178.160.0/21 139879 -180.178.172.0/22 38547 -180.178.176.0/21 139879 -180.178.185.0/24 38547 -180.178.186.0/24 38547 -180.178.252.0/22 4837 -180.179.0.0/16 17439 -180.180.0.0/17 23969 -180.180.128.0/18 23969 -180.180.192.0/19 23969 -180.180.224.0/20 23969 -180.180.240.0/23 131293 -180.180.242.0/23 134166 -180.180.244.0/23 134166 -180.180.246.0/24 131293 -180.180.247.0/24 134166 -180.180.248.0/23 38040 -180.180.250.0/24 23969 -180.180.251.0/24 38040 -180.180.252.0/22 38040 -180.181.0.0/16 7477 -180.182.0.0/19 38091 -180.182.32.0/20 38091 -180.182.48.0/22 45996 -180.182.52.0/23 45996 -180.182.54.0/23 38091 -180.182.56.0/21 38091 -180.182.72.0/21 17577 -180.182.80.0/20 17577 -180.182.96.0/19 38669 -180.182.128.0/19 17839 -180.182.160.0/19 18313 -180.182.192.0/21 18313 -180.182.200.0/22 18313 -180.182.204.0/23 18313 -180.182.206.0/23 45996 -180.182.208.0/20 10037 -180.182.224.0/19 9845 -180.183.0.0/16 45758 -180.184.48.0/22 23724 -180.185.0.0/22 23724 -180.186.0.0/16 4808 -180.188.16.0/20 136190 -180.188.128.0/18 10118 -180.188.192.0/22 45910 -180.188.196.0/23 133380 -180.188.200.0/24 45911 -180.188.204.0/22 24007 -180.188.208.0/20 9374 -180.188.225.0/24 23682 -180.188.226.0/24 23682 -180.188.232.0/24 23682 -180.188.234.0/23 23682 -180.188.236.0/23 23682 -180.188.241.0/24 45804 -180.188.242.0/23 23682 -180.188.250.0/23 23682 -180.188.252.0/22 133661 -180.189.0.0/21 17819 -180.189.8.0/23 17819 -180.189.10.0/24 45682 -180.189.11.0/24 17819 -180.189.12.0/22 17819 -180.189.16.0/22 17819 -180.189.20.0/22 23686 -180.189.24.0/22 17819 -180.189.28.0/24 136792 -180.189.29.0/24 17819 -180.189.30.0/23 17819 -180.189.32.0/20 17819 -180.189.48.0/22 17819 -180.189.56.0/21 17819 -180.189.64.0/18 9770 -180.189.128.0/21 9374 -180.189.136.0/24 55819 -180.189.137.0/24 3356 -180.189.138.0/23 55819 -180.189.140.0/22 17819 -180.189.144.0/22 9519 -180.189.152.0/21 9268 -180.189.160.0/20 38077 -180.189.176.0/20 38661 -180.189.192.0/21 18015 -180.189.200.0/22 18015 -180.189.204.0/23 18015 -180.189.206.0/24 24466 -180.189.207.0/24 18015 -180.189.208.0/20 18015 -180.189.224.0/19 24276 -180.190.0.0/23 132199 -180.190.2.0/23 4775 -180.190.4.0/22 4775 -180.190.8.0/22 4775 -180.190.12.0/23 4775 -180.190.14.0/24 4775 -180.190.15.0/24 132199 -180.190.16.0/20 4775 -180.190.32.0/19 132199 -180.190.64.0/19 132199 -180.190.96.0/20 132199 -180.190.112.0/21 132199 -180.190.120.0/22 132199 -180.190.124.0/22 4775 -180.190.128.0/19 4775 -180.190.160.0/19 132199 -180.190.192.0/20 132199 -180.190.208.0/22 4775 -180.190.212.0/24 4775 -180.190.213.0/24 132199 -180.190.214.0/23 4775 -180.190.216.0/21 4775 -180.190.224.0/22 132199 -180.190.228.0/24 132199 -180.190.229.0/24 4775 -180.190.230.0/23 4775 -180.190.232.0/21 132199 -180.190.240.0/22 132199 -180.190.244.0/24 4775 -180.190.245.0/24 132199 -180.190.246.0/23 4775 -180.190.248.0/21 132199 -180.191.0.0/19 132199 -180.191.32.0/20 132199 -180.191.48.0/21 132199 -180.191.56.0/23 4775 -180.191.58.0/23 132199 -180.191.60.0/22 132199 -180.191.64.0/18 132199 -180.191.128.0/19 132199 -180.191.160.0/21 132199 -180.191.168.0/22 132199 -180.191.172.0/23 132199 -180.191.174.0/23 4775 -180.191.176.0/20 132199 -180.191.192.0/19 132199 -180.191.224.0/23 132199 -180.191.226.0/24 4775 -180.191.227.0/24 132199 -180.191.228.0/22 132199 -180.191.232.0/21 132199 -180.191.240.0/20 132199 -180.196.0.0/14 18126 -180.200.0.0/17 17529 -180.200.128.0/18 7718 -180.200.192.0/19 18371 -180.200.224.0/21 23627 -180.200.233.0/24 4788 -180.200.236.0/23 132543 -180.200.238.0/23 55550 -180.200.240.0/22 55507 -180.200.244.0/22 55555 -180.200.248.0/22 18129 -180.201.0.0/16 4538 -180.202.0.0/15 9814 -180.204.0.0/16 24158 -180.206.0.0/15 24158 -180.208.0.0/15 4538 -180.210.0.0/21 38661 -180.210.8.0/23 38661 -180.210.10.0/24 38661 -180.210.11.0/24 4766 -180.210.12.0/24 38661 -180.210.13.0/24 4766 -180.210.14.0/23 4766 -180.210.16.0/23 38661 -180.210.18.0/24 4766 -180.210.19.0/24 38661 -180.210.20.0/24 38661 -180.210.21.0/24 4766 -180.210.22.0/24 4766 -180.210.23.0/24 38661 -180.210.24.0/22 38661 -180.210.32.0/21 38661 -180.210.44.0/22 38661 -180.210.48.0/20 38661 -180.210.64.0/18 38661 -180.210.128.0/22 23893 -180.210.132.0/24 59236 -180.210.150.0/23 23893 -180.210.155.0/24 23893 -180.210.166.0/23 23893 -180.210.168.0/24 23893 -180.210.171.0/24 23893 -180.210.176.0/22 138536 -180.210.180.0/23 138536 -180.210.182.0/24 138536 -180.210.184.0/21 138536 -180.210.196.0/23 17853 -180.210.200.0/21 45634 -180.210.208.0/23 9503 -180.210.210.0/24 27435 -180.210.211.0/24 9503 -180.210.216.0/22 56120 -180.210.220.0/22 134128 -180.210.224.0/22 21859 -180.210.230.0/23 3462 -180.210.236.0/22 4808 -180.210.240.0/22 21859 -180.210.244.0/23 21859 -180.210.246.0/23 13389 -180.210.248.0/21 21859 -180.211.0.0/18 45361 -180.211.64.0/23 131235 -180.211.66.0/24 131235 -180.211.68.0/22 131235 -180.211.72.0/21 23637 -180.211.84.0/22 38633 -180.211.88.0/21 45725 -180.211.96.0/19 17625 -180.211.128.0/18 45588 -180.211.192.0/21 45588 -180.211.200.0/21 17494 -180.211.208.0/24 45532 -180.211.209.0/24 17494 -180.211.210.0/23 17494 -180.211.212.0/24 17494 -180.211.213.0/24 63932 -180.211.214.0/23 17494 -180.211.216.0/23 17494 -180.211.218.0/24 17494 -180.211.219.0/24 45588 -180.211.220.0/22 17494 -180.211.224.0/22 17494 -180.211.228.0/24 17494 -180.211.229.0/24 45588 -180.211.230.0/23 45588 -180.211.232.0/22 45588 -180.211.236.0/24 17494 -180.211.237.0/24 45588 -180.211.238.0/23 45588 -180.211.240.0/20 45588 -180.212.0.0/15 17638 -180.214.0.0/18 23637 -180.214.64.0/19 9268 -180.214.96.0/19 18200 -180.214.128.0/19 17917 -180.214.160.0/21 45932 -180.214.168.0/21 18111 -180.214.176.0/20 18419 -180.214.192.0/19 7470 -180.214.224.0/21 10000 -180.214.232.0/23 45727 -180.214.234.0/24 45727 -180.214.236.0/22 135905 -180.214.240.0/23 38150 -180.214.243.0/24 38150 -180.214.244.0/22 38150 -180.214.248.0/23 38150 -180.214.250.0/24 137342 -180.214.252.0/22 38150 -180.215.0.0/17 64050 -180.215.128.0/19 64050 -180.215.160.0/20 64050 -180.215.192.0/18 64050 -180.216.0.0/16 4804 -180.217.0.0/16 24157 -180.218.0.0/18 24164 -180.218.64.0/20 24164 -180.218.80.0/20 24163 -180.218.96.0/19 24163 -180.218.128.0/18 24164 -180.218.192.0/19 24164 -180.218.224.0/23 24164 -180.218.226.0/23 24163 -180.218.228.0/22 24164 -180.218.232.0/21 24164 -180.218.240.0/22 24164 -180.218.244.0/24 24164 -180.218.245.0/24 9924 -180.218.246.0/23 9924 -180.218.248.0/24 24164 -180.218.249.0/24 9924 -180.218.250.0/23 24164 -180.218.252.0/22 24164 -180.219.0.0/16 17924 -180.220.0.0/15 9617 -180.222.0.0/19 18371 -180.222.64.0/21 45230 -180.222.72.0/21 9597 -180.222.80.0/20 9597 -180.222.97.0/24 10229 -180.222.98.0/24 24506 -180.222.100.0/22 24506 -180.222.120.0/22 134509 -180.222.124.0/22 131296 -180.222.128.0/21 45938 -180.222.136.0/21 131284 -180.222.144.0/20 38566 -180.222.160.0/20 45510 -180.222.176.0/20 131921 -180.222.192.0/22 45929 -180.222.196.0/22 56076 -180.222.200.0/22 136448 -180.222.208.0/22 45935 -180.222.212.0/22 56077 -180.222.216.0/22 45728 -180.222.220.0/24 9640 -180.223.0.0/19 4837 -180.223.32.0/20 4837 -180.223.48.0/21 4837 -180.223.56.0/24 134705 -180.223.57.0/24 4837 -180.223.58.0/23 4837 -180.223.60.0/22 4837 -180.223.64.0/20 18013 -180.223.80.0/20 4837 -180.223.96.0/19 4837 -180.224.0.0/13 17858 -180.232.0.0/22 9658 -180.232.4.0/24 9658 -180.232.5.0/24 18190 -180.232.6.0/23 18190 -180.232.8.0/23 18190 -180.232.10.0/23 9658 -180.232.12.0/22 9658 -180.232.16.0/23 18190 -180.232.18.0/24 18190 -180.232.19.0/24 9658 -180.232.20.0/22 9658 -180.232.24.0/21 9658 -180.232.32.0/19 9658 -180.232.64.0/19 9658 -180.232.96.0/20 9658 -180.232.112.0/24 9658 -180.232.113.0/24 18190 -180.232.114.0/23 18190 -180.232.116.0/23 18190 -180.232.118.0/23 9658 -180.232.120.0/21 9658 -180.232.128.0/19 9658 -180.232.192.0/23 9658 -180.232.254.0/23 9658 -180.233.96.0/20 10010 -180.233.120.0/22 45942 -180.233.124.0/22 135126 -180.233.128.0/22 132145 -180.233.132.0/22 10006 -180.233.137.0/24 24284 -180.233.138.0/23 24284 -180.233.140.0/23 24284 -180.233.148.0/22 58405 -180.233.152.0/23 45729 -180.233.154.0/24 9340 -180.233.155.0/24 45729 -180.233.156.0/24 131741 -180.233.158.0/23 135460 -180.233.162.0/24 45474 -180.233.165.0/24 45474 -180.233.173.0/24 45474 -180.233.174.0/23 45474 -180.233.176.0/23 45474 -180.233.179.0/24 45474 -180.233.182.0/24 45474 -180.233.184.0/24 45474 -180.233.186.0/23 45474 -180.233.190.0/23 45474 -180.233.192.0/18 38680 -180.235.0.0/18 4685 -180.235.64.0/21 4812 -180.235.72.0/23 4812 -180.235.96.0/21 45682 -180.235.104.0/22 135069 -180.235.111.0/24 56087 -180.235.116.0/22 134840 -180.235.120.0/22 56272 -180.235.124.0/22 24295 -180.235.128.0/22 24446 -180.235.132.0/22 55639 -180.235.137.0/24 137443 -180.235.138.0/24 23748 -180.235.140.0/22 23775 -180.235.148.0/22 45731 -180.235.152.0/22 133125 -180.235.156.0/23 4749 -180.235.158.0/24 4749 -180.235.160.0/19 38818 -180.235.192.0/20 4739 -180.235.208.0/21 4739 -180.235.216.0/22 4739 -180.235.220.0/24 4739 -180.235.224.0/19 9597 -180.240.128.0/23 7713 -180.240.130.0/24 56308 -180.240.131.0/24 7713 -180.240.132.0/23 56308 -180.240.134.0/24 56308 -180.240.135.0/24 7713 -180.240.136.0/24 7713 -180.240.137.0/24 56308 -180.240.138.0/24 56308 -180.240.139.0/24 7713 -180.240.140.0/23 7713 -180.240.142.0/24 56308 -180.240.143.0/24 7713 -180.240.144.0/22 7713 -180.240.148.0/24 56308 -180.240.149.0/24 7713 -180.240.150.0/23 7713 -180.240.152.0/21 7713 -180.240.160.0/23 56308 -180.240.162.0/24 56308 -180.240.163.0/24 7713 -180.240.164.0/22 7713 -180.240.168.0/21 7713 -180.240.176.0/21 7713 -180.240.184.0/22 7713 -180.240.188.0/24 56308 -180.240.189.0/24 7713 -180.240.190.0/23 7713 -180.240.192.0/23 7713 -180.240.194.0/24 58513 -180.240.195.0/24 7713 -180.240.196.0/22 7713 -180.240.200.0/24 58815 -180.240.201.0/24 7713 -180.240.202.0/23 7713 -180.240.204.0/22 7713 -180.240.208.0/23 56308 -180.240.210.0/24 56308 -180.240.211.0/24 7713 -180.240.212.0/22 7713 -180.240.216.0/21 7713 -180.240.224.0/22 7713 -180.240.228.0/24 7713 -180.240.229.0/24 56308 -180.240.230.0/23 56308 -180.240.232.0/21 56308 -180.240.240.0/24 56308 -180.240.241.0/24 7713 -180.240.242.0/23 56308 -180.240.244.0/23 56308 -180.240.246.0/23 7713 -180.240.248.0/21 7713 -180.241.0.0/20 7713 -180.241.16.0/21 7713 -180.241.24.0/23 7713 -180.241.26.0/23 17974 -180.241.28.0/22 7713 -180.241.32.0/21 7713 -180.241.40.0/24 17974 -180.241.41.0/24 7713 -180.241.42.0/23 7713 -180.241.44.0/22 7713 -180.241.48.0/20 7713 -180.241.64.0/19 7713 -180.241.96.0/21 7713 -180.241.104.0/22 7713 -180.241.108.0/22 17974 -180.241.112.0/20 7713 -180.241.128.0/18 7713 -180.241.192.0/19 7713 -180.241.224.0/21 7713 -180.241.232.0/24 17974 -180.241.233.0/24 7713 -180.241.234.0/23 17974 -180.241.236.0/22 7713 -180.241.240.0/20 7713 -180.242.0.0/18 7713 -180.242.64.0/21 7713 -180.242.72.0/22 7713 -180.242.76.0/24 7713 -180.242.77.0/24 17974 -180.242.78.0/23 7713 -180.242.80.0/20 7713 -180.242.96.0/20 7713 -180.242.112.0/21 7713 -180.242.120.0/21 17974 -180.242.128.0/17 7713 -180.243.0.0/18 7713 -180.243.64.0/22 7713 -180.243.68.0/23 17974 -180.243.70.0/23 7713 -180.243.72.0/21 7713 -180.243.80.0/23 7713 -180.243.82.0/23 17974 -180.243.84.0/22 7713 -180.243.88.0/21 7713 -180.243.96.0/19 7713 -180.243.128.0/19 7713 -180.243.160.0/24 7713 -180.243.161.0/24 17974 -180.243.162.0/23 7713 -180.243.164.0/22 7713 -180.243.168.0/21 7713 -180.243.176.0/20 7713 -180.243.192.0/18 7713 -180.244.0.0/18 7713 -180.244.64.0/19 7713 -180.244.96.0/24 7713 -180.244.97.0/24 17974 -180.244.98.0/23 7713 -180.244.100.0/22 7713 -180.244.104.0/21 7713 -180.244.112.0/22 7713 -180.244.116.0/23 17974 -180.244.118.0/23 7713 -180.244.120.0/21 7713 -180.244.128.0/18 7713 -180.244.192.0/21 7713 -180.244.200.0/22 7713 -180.244.204.0/22 17974 -180.244.208.0/20 7713 -180.244.224.0/19 7713 -180.245.0.0/16 7713 -180.246.0.0/17 7713 -180.246.128.0/19 7713 -180.246.160.0/22 7713 -180.246.164.0/23 17974 -180.246.166.0/23 7713 -180.246.168.0/21 7713 -180.246.176.0/20 7713 -180.246.192.0/18 7713 -180.247.0.0/16 7713 -180.248.0.0/18 7713 -180.248.64.0/19 7713 -180.248.96.0/20 7713 -180.248.112.0/21 7713 -180.248.120.0/22 7713 -180.248.124.0/23 17974 -180.248.126.0/23 7713 -180.248.128.0/17 7713 -180.249.0.0/19 7713 -180.249.32.0/22 17974 -180.249.36.0/23 7713 -180.249.38.0/24 17974 -180.249.39.0/24 7713 -180.249.40.0/22 7713 -180.249.44.0/24 7713 -180.249.45.0/24 17974 -180.249.46.0/23 7713 -180.249.48.0/20 7713 -180.249.64.0/18 7713 -180.249.128.0/20 7713 -180.249.144.0/22 7713 -180.249.148.0/23 7713 -180.249.150.0/24 17974 -180.249.151.0/24 7713 -180.249.152.0/21 7713 -180.249.160.0/22 7713 -180.249.164.0/22 17974 -180.249.168.0/21 7713 -180.249.176.0/23 7713 -180.249.178.0/24 17974 -180.249.179.0/24 7713 -180.249.180.0/22 7713 -180.249.184.0/22 17974 -180.249.188.0/23 17974 -180.249.190.0/24 17974 -180.249.191.0/24 7713 -180.249.192.0/18 7713 -180.250.0.0/20 17974 -180.250.16.0/23 17974 -180.250.18.0/23 7713 -180.250.20.0/22 17974 -180.250.24.0/22 17974 -180.250.28.0/24 17974 -180.250.29.0/24 7713 -180.250.30.0/23 17974 -180.250.32.0/19 17974 -180.250.64.0/19 17974 -180.250.96.0/20 17974 -180.250.112.0/22 17974 -180.250.116.0/24 7713 -180.250.117.0/24 17974 -180.250.118.0/23 7713 -180.250.120.0/22 17974 -180.250.124.0/23 7713 -180.250.126.0/23 17974 -180.250.128.0/20 17974 -180.250.144.0/22 17974 -180.250.148.0/23 17974 -180.250.150.0/24 17974 -180.250.151.0/24 7713 -180.250.152.0/24 7713 -180.250.153.0/24 17974 -180.250.154.0/23 17974 -180.250.156.0/22 17974 -180.250.160.0/19 17974 -180.250.192.0/19 17974 -180.250.224.0/22 17974 -180.250.228.0/23 17974 -180.250.230.0/24 7713 -180.250.231.0/24 17974 -180.250.232.0/21 17974 -180.250.240.0/24 7713 -180.250.241.0/24 17974 -180.250.242.0/23 17974 -180.250.244.0/23 17974 -180.250.246.0/23 7713 -180.250.248.0/23 7713 -180.250.250.0/23 17974 -180.250.252.0/22 17974 -180.251.0.0/20 7713 -180.251.16.0/22 17974 -180.251.20.0/23 17974 -180.251.22.0/24 7713 -180.251.23.0/24 17974 -180.251.24.0/21 17974 -180.251.32.0/19 7713 -180.251.64.0/18 7713 -180.251.128.0/17 7713 -180.252.0.0/22 17974 -180.252.4.0/22 7713 -180.252.8.0/21 7713 -180.252.16.0/20 7713 -180.252.32.0/19 7713 -180.252.64.0/18 7713 -180.252.128.0/19 7713 -180.252.160.0/20 7713 -180.252.176.0/23 17974 -180.252.178.0/23 7713 -180.252.180.0/24 7713 -180.252.181.0/24 17974 -180.252.182.0/23 17974 -180.252.184.0/23 7713 -180.252.186.0/24 7713 -180.252.187.0/24 17974 -180.252.188.0/22 17974 -180.252.192.0/18 7713 -180.253.0.0/16 7713 -180.254.0.0/16 7713 -180.255.0.0/16 45143 -181.0.0.0/18 7303 -181.0.96.0/19 7303 -181.0.192.0/18 7303 -181.1.0.0/16 7303 -181.3.0.0/16 7303 -181.4.0.0/16 7303 -181.5.192.0/18 7303 -181.6.0.0/15 7303 -181.8.0.0/16 7303 -181.9.64.0/18 7303 -181.9.128.0/18 7303 -181.10.16.0/20 7303 -181.10.32.0/19 7303 -181.10.64.0/18 7303 -181.10.128.0/21 7303 -181.10.136.0/22 7303 -181.10.140.0/23 52444 -181.10.142.0/24 52444 -181.10.143.0/24 7303 -181.10.144.0/20 7303 -181.10.160.0/20 7303 -181.10.176.0/22 7303 -181.10.180.0/24 27875 -181.10.181.0/24 7303 -181.10.182.0/23 7303 -181.10.184.0/23 61501 -181.10.186.0/24 61501 -181.10.187.0/24 264753 -181.10.188.0/24 264753 -181.10.192.0/19 7303 -181.10.224.0/21 7303 -181.10.232.0/22 7303 -181.10.236.0/23 52436 -181.10.238.0/23 7303 -181.10.240.0/20 7303 -181.11.0.0/18 7303 -181.11.192.0/18 7303 -181.12.0.0/16 7303 -181.13.0.0/19 7303 -181.13.32.0/20 7303 -181.13.50.0/23 264808 -181.13.52.0/22 265737 -181.13.56.0/23 52436 -181.13.58.0/24 7303 -181.13.64.0/18 7303 -181.13.128.0/20 7303 -181.13.144.0/22 7303 -181.13.148.0/23 7303 -181.13.150.0/24 7303 -181.13.151.0/24 264767 -181.13.152.0/24 7303 -181.13.153.0/24 264767 -181.13.154.0/23 7303 -181.13.156.0/22 7303 -181.13.160.0/20 7303 -181.13.176.0/22 7303 -181.13.180.0/24 265704 -181.13.181.0/24 7303 -181.13.182.0/24 265704 -181.13.183.0/24 7303 -181.13.184.0/24 7303 -181.13.185.0/24 264767 -181.13.186.0/24 264767 -181.13.187.0/24 7303 -181.13.188.0/22 7303 -181.13.192.0/19 7303 -181.13.224.0/21 7303 -181.13.232.0/22 7303 -181.13.236.0/23 7303 -181.13.238.0/24 7303 -181.13.239.0/24 264767 -181.13.240.0/20 7303 -181.14.0.0/20 7303 -181.14.64.0/18 7303 -181.14.128.0/18 7303 -181.14.192.0/19 7303 -181.14.224.0/21 7303 -181.14.232.0/22 7303 -181.14.236.0/23 7303 -181.14.238.0/24 7303 -181.14.239.0/24 265663 -181.14.240.0/20 7303 -181.15.56.0/21 7303 -181.15.64.0/19 7303 -181.15.96.0/24 7303 -181.15.97.0/24 52444 -181.15.98.0/23 52444 -181.15.100.0/24 52444 -181.15.101.0/24 7303 -181.15.102.0/23 7303 -181.15.104.0/21 7303 -181.15.112.0/20 7303 -181.15.136.0/21 7303 -181.15.144.0/20 7303 -181.15.160.0/19 7303 -181.15.192.0/23 7303 -181.15.194.0/24 7303 -181.15.195.0/24 52444 -181.15.196.0/22 7303 -181.15.200.0/21 7303 -181.15.208.0/20 7303 -181.15.224.0/19 7303 -181.16.0.0/17 27984 -181.16.130.0/23 52323 -181.16.135.0/24 52323 -181.16.136.0/22 52323 -181.16.140.0/24 52323 -181.16.142.0/23 52323 -181.16.144.0/24 7303 -181.16.145.0/24 52323 -181.16.146.0/24 52323 -181.16.147.0/24 28023 -181.16.148.0/24 52323 -181.16.152.0/22 265751 -181.16.156.0/23 52323 -181.16.158.0/24 52323 -181.16.159.0/24 7303 -181.16.160.0/23 52323 -181.16.162.0/23 7303 -181.16.164.0/22 52323 -181.16.168.0/24 52323 -181.16.175.0/24 52323 -181.16.176.0/23 52323 -181.16.180.0/24 52323 -181.16.181.0/24 7303 -181.16.183.0/24 52323 -181.16.184.0/24 7049 -181.16.185.0/24 52323 -181.16.186.0/23 52323 -181.16.191.0/24 52323 -181.16.192.0/22 52323 -181.16.197.0/24 52323 -181.16.198.0/23 7303 -181.16.200.0/24 269752 -181.16.201.0/24 52323 -181.16.202.0/24 52323 -181.16.204.0/23 52323 -181.16.206.0/23 3549 -181.16.208.0/21 52323 -181.16.216.0/21 52271 -181.16.224.0/21 52323 -181.16.234.0/24 52323 -181.16.236.0/22 52323 -181.16.254.0/23 52323 -181.17.0.0/16 27889 -181.18.0.0/15 27889 -181.20.0.0/14 22927 -181.24.0.0/14 22927 -181.28.0.0/16 10318 -181.29.0.0/20 10481 -181.29.16.0/20 10318 -181.29.32.0/19 10318 -181.29.64.0/18 10318 -181.29.128.0/18 10318 -181.29.192.0/19 10318 -181.29.224.0/20 10318 -181.29.240.0/20 10481 -181.30.0.0/19 10481 -181.30.32.0/19 10318 -181.30.64.0/19 10481 -181.30.96.0/19 10318 -181.30.128.0/23 10318 -181.30.130.0/24 10318 -181.30.131.0/24 10481 -181.30.132.0/22 10318 -181.30.136.0/21 10318 -181.30.144.0/20 10318 -181.30.160.0/19 10318 -181.30.192.0/18 10318 -181.31.0.0/16 10481 -181.33.0.0/18 3816 -181.33.64.0/19 3816 -181.33.96.0/20 3816 -181.33.128.0/18 3816 -181.33.192.0/19 3816 -181.33.224.0/20 3816 -181.34.0.0/16 27889 -181.35.0.0/17 27889 -181.36.0.0/15 28118 -181.38.0.0/16 262227 -181.39.0.0/18 27947 -181.39.64.0/20 27947 -181.39.80.0/21 27947 -181.39.88.0/23 27947 -181.39.90.0/24 19169 -181.39.91.0/24 27947 -181.39.92.0/22 27947 -181.39.96.0/19 27947 -181.39.128.0/17 27947 -181.40.0.0/16 23201 -181.41.0.0/20 11816 -181.41.16.0/22 11816 -181.41.24.0/21 11816 -181.41.32.0/19 11816 -181.41.64.0/18 19863 -181.41.136.0/22 14178 -181.41.140.0/22 174 -181.41.144.0/21 174 -181.41.160.0/19 53124 -181.41.192.0/23 61317 -181.41.194.0/24 61317 -181.41.196.0/23 61317 -181.41.198.0/24 61317 -181.41.199.0/24 60458 -181.41.200.0/21 61317 -181.41.209.0/24 61317 -181.41.210.0/23 61317 -181.41.212.0/22 61317 -181.41.216.0/24 133398 -181.41.217.0/24 61317 -181.41.218.0/24 60458 -181.41.219.0/24 61317 -181.41.220.0/22 61317 -181.41.224.0/19 27754 -181.42.0.0/23 27651 -181.42.2.0/24 6471 -181.42.3.0/24 27651 -181.42.4.0/22 6471 -181.42.8.0/21 27651 -181.42.16.0/20 27651 -181.42.32.0/21 27651 -181.42.40.0/21 6471 -181.42.48.0/20 6471 -181.42.64.0/21 27651 -181.42.72.0/21 6471 -181.42.80.0/20 6471 -181.42.96.0/19 6471 -181.42.128.0/17 27925 -181.43.0.0/18 6471 -181.43.64.0/19 6471 -181.43.96.0/19 27651 -181.43.128.0/22 27651 -181.43.132.0/22 6471 -181.43.136.0/21 27651 -181.43.144.0/20 27651 -181.43.160.0/19 6471 -181.43.192.0/24 27651 -181.43.193.0/24 6471 -181.43.194.0/23 6471 -181.43.196.0/22 27651 -181.43.200.0/21 27651 -181.43.208.0/20 27651 -181.43.224.0/20 27651 -181.43.240.0/21 27651 -181.43.248.0/23 27651 -181.43.250.0/23 6471 -181.43.252.0/22 6471 -181.44.0.0/14 27747 -181.48.0.0/15 14080 -181.50.0.0/19 10620 -181.50.32.0/21 10620 -181.50.40.0/22 10620 -181.50.44.0/22 14080 -181.50.48.0/20 10620 -181.50.64.0/18 10620 -181.50.128.0/23 10620 -181.50.130.0/23 14080 -181.50.132.0/22 14080 -181.50.136.0/21 10620 -181.50.144.0/20 10620 -181.50.160.0/19 10620 -181.50.192.0/18 10620 -181.51.0.0/20 10620 -181.51.16.0/22 10620 -181.51.20.0/22 14080 -181.51.24.0/21 10620 -181.51.32.0/19 10620 -181.51.64.0/19 10620 -181.51.96.0/21 10620 -181.51.104.0/22 14080 -181.51.108.0/22 10620 -181.51.112.0/20 10620 -181.51.128.0/18 10620 -181.51.192.0/19 10620 -181.51.224.0/20 10620 -181.51.240.0/22 10620 -181.51.244.0/23 14080 -181.51.246.0/23 10620 -181.51.248.0/21 10620 -181.52.0.0/19 10620 -181.52.32.0/23 14080 -181.52.34.0/23 10620 -181.52.36.0/22 10620 -181.52.40.0/21 10620 -181.52.48.0/20 10620 -181.52.64.0/18 10620 -181.52.128.0/18 10620 -181.52.192.0/20 10620 -181.52.208.0/24 14080 -181.52.209.0/24 10620 -181.52.210.0/23 14080 -181.52.212.0/22 10620 -181.52.216.0/21 10620 -181.52.224.0/22 10620 -181.52.228.0/22 14080 -181.52.232.0/21 10620 -181.52.240.0/20 10620 -181.53.0.0/19 10620 -181.53.32.0/22 14080 -181.53.36.0/22 10620 -181.53.40.0/21 10620 -181.53.48.0/22 10620 -181.53.52.0/22 14080 -181.53.56.0/22 10620 -181.53.60.0/23 10620 -181.53.62.0/24 14080 -181.53.63.0/24 10620 -181.53.64.0/22 14080 -181.53.68.0/22 10620 -181.53.72.0/21 10620 -181.53.80.0/24 10620 -181.53.81.0/24 14080 -181.53.82.0/23 10620 -181.53.84.0/22 10620 -181.53.88.0/21 10620 -181.53.96.0/19 10620 -181.53.128.0/17 10620 -181.54.0.0/21 10620 -181.54.8.0/24 14080 -181.54.9.0/24 10620 -181.54.10.0/23 10620 -181.54.12.0/22 10620 -181.54.16.0/20 10620 -181.54.32.0/19 10620 -181.54.64.0/21 10620 -181.54.72.0/23 10620 -181.54.74.0/24 10620 -181.54.75.0/24 14080 -181.54.76.0/22 10620 -181.54.80.0/20 10620 -181.54.96.0/20 10620 -181.54.112.0/22 10620 -181.54.116.0/22 14080 -181.54.120.0/21 10620 -181.54.128.0/17 10620 -181.55.0.0/22 14080 -181.55.4.0/22 10620 -181.55.8.0/22 14080 -181.55.12.0/22 10620 -181.55.16.0/20 10620 -181.55.32.0/19 10620 -181.55.64.0/18 10620 -181.55.128.0/17 10620 -181.56.0.0/19 10620 -181.56.32.0/20 10620 -181.56.52.0/22 10620 -181.56.56.0/21 10620 -181.56.64.0/18 10620 -181.56.128.0/19 10620 -181.56.160.0/22 10620 -181.56.165.0/24 10620 -181.56.166.0/23 10620 -181.56.168.0/21 10620 -181.56.176.0/20 10620 -181.56.192.0/18 10620 -181.57.0.0/20 10620 -181.57.16.0/24 10620 -181.57.18.0/23 10620 -181.57.20.0/23 10620 -181.57.22.0/24 10620 -181.57.23.0/24 14080 -181.57.24.0/21 10620 -181.57.32.0/21 10620 -181.57.41.0/24 10620 -181.57.48.0/21 10620 -181.57.56.0/22 10620 -181.57.64.0/18 10620 -181.57.128.0/18 14080 -181.57.192.0/19 14080 -181.57.224.0/20 14080 -181.57.240.0/21 14080 -181.57.248.0/22 14080 -181.57.252.0/22 10620 -181.58.0.0/18 10620 -181.58.64.0/19 10620 -181.58.96.0/20 10620 -181.58.112.0/22 10620 -181.58.117.0/24 10620 -181.58.118.0/23 10620 -181.58.120.0/21 10620 -181.58.128.0/17 10620 -181.59.0.0/20 10620 -181.59.16.0/21 10620 -181.59.24.0/22 10620 -181.59.29.0/24 10620 -181.59.30.0/23 10620 -181.59.32.0/19 10620 -181.59.64.0/19 10620 -181.59.96.0/22 10620 -181.59.103.0/24 10620 -181.59.104.0/22 10620 -181.59.112.0/20 10620 -181.59.128.0/17 10620 -181.60.0.0/19 10620 -181.60.32.0/20 10620 -181.60.48.0/21 10620 -181.60.57.0/24 10620 -181.60.58.0/23 10620 -181.60.60.0/22 10620 -181.60.64.0/24 10620 -181.60.68.0/22 10620 -181.60.72.0/21 10620 -181.60.80.0/20 10620 -181.60.96.0/19 10620 -181.60.128.0/17 10620 -181.61.0.0/17 10620 -181.61.128.0/18 10620 -181.61.192.0/19 10620 -181.61.224.0/20 10620 -181.61.240.0/21 10620 -181.61.248.0/24 10620 -181.61.250.0/23 10620 -181.61.252.0/22 10620 -181.62.0.0/18 10620 -181.62.128.0/17 10620 -181.63.0.0/17 10620 -181.63.128.0/18 10620 -181.63.192.0/20 10620 -181.63.212.0/22 10620 -181.63.216.0/21 10620 -181.63.224.0/19 10620 -181.64.0.0/14 6147 -181.68.0.0/14 27831 -181.72.0.0/14 6535 -181.76.0.0/15 26615 -181.78.0.0/19 52468 -181.78.32.0/21 18747 -181.78.64.0/19 18747 -181.78.96.0/21 18747 -181.78.128.0/17 18747 -181.79.0.0/16 18747 -181.80.0.0/21 7303 -181.80.8.0/24 7303 -181.80.9.0/24 264791 -181.80.10.0/24 264791 -181.80.11.0/24 7303 -181.80.12.0/22 7303 -181.80.16.0/20 7303 -181.80.32.0/19 7303 -181.80.64.0/20 7303 -181.80.128.0/19 7303 -181.80.176.0/20 7303 -181.80.192.0/18 7303 -181.81.0.0/17 7303 -181.81.128.0/19 7303 -181.81.208.0/20 7303 -181.81.240.0/22 7303 -181.81.244.0/23 7303 -181.81.246.0/23 265630 -181.81.248.0/22 264715 -181.81.252.0/22 7303 -181.82.224.0/20 7303 -181.83.0.0/16 7303 -181.84.0.0/14 7303 -181.88.176.0/20 7303 -181.88.192.0/18 7303 -181.89.48.0/20 7303 -181.89.64.0/20 7303 -181.89.96.0/19 7303 -181.89.128.0/19 7303 -181.89.176.0/20 7303 -181.89.192.0/19 7303 -181.89.240.0/20 7303 -181.90.0.0/15 7303 -181.92.0.0/16 7303 -181.93.0.0/17 7303 -181.93.128.0/18 7303 -181.93.192.0/19 7303 -181.93.224.0/20 7303 -181.93.240.0/22 7303 -181.93.244.0/24 265630 -181.93.245.0/24 7303 -181.93.246.0/23 7303 -181.93.248.0/24 265630 -181.93.249.0/24 7303 -181.93.250.0/23 7303 -181.93.252.0/22 7303 -181.94.0.0/17 7303 -181.94.128.0/18 7303 -181.94.192.0/22 265630 -181.94.196.0/22 7303 -181.94.200.0/21 7303 -181.94.208.0/21 7303 -181.94.216.0/22 7303 -181.94.220.0/22 27895 -181.94.224.0/21 27895 -181.94.232.0/22 27895 -181.94.236.0/23 7303 -181.94.238.0/24 777 -181.94.239.0/24 7303 -181.94.240.0/24 7303 -181.94.241.0/24 777 -181.94.242.0/23 7303 -181.94.244.0/22 7303 -181.94.248.0/23 7303 -181.94.250.0/24 27895 -181.94.251.0/24 7303 -181.94.252.0/22 7303 -181.95.0.0/16 7303 -181.97.0.0/19 7303 -181.97.32.0/20 7303 -181.97.64.0/18 7303 -181.97.128.0/18 7303 -181.97.192.0/19 7303 -181.97.224.0/20 7303 -181.98.0.0/19 7303 -181.98.48.0/20 7303 -181.98.64.0/18 7303 -181.99.0.0/16 7303 -181.100.0.0/15 7303 -181.102.0.0/17 7303 -181.102.128.0/19 7303 -181.102.160.0/20 3816 -181.102.176.0/20 7303 -181.102.192.0/18 7303 -181.105.0.0/17 7303 -181.105.128.0/18 7303 -181.105.208.0/20 7303 -181.106.192.0/18 7303 -181.107.0.0/16 7303 -181.108.0.0/15 7303 -181.110.0.0/17 7303 -181.110.128.0/18 7303 -181.110.192.0/19 7303 -181.110.232.0/21 7303 -181.110.240.0/20 7303 -181.111.0.0/19 7303 -181.111.40.0/21 7303 -181.111.48.0/20 7303 -181.111.64.0/20 7303 -181.111.120.0/21 7303 -181.111.128.0/17 7303 -181.112.8.0/22 28006 -181.112.32.0/19 28006 -181.112.80.0/22 28006 -181.112.84.0/23 28006 -181.112.104.0/22 28006 -181.112.136.0/21 28006 -181.112.144.0/20 28006 -181.112.164.0/24 28006 -181.112.166.0/24 28006 -181.112.184.0/21 28006 -181.112.204.0/22 28006 -181.112.216.0/21 28006 -181.112.224.0/21 28006 -181.113.0.0/21 28006 -181.113.16.0/20 28006 -181.113.32.0/21 28006 -181.113.56.0/21 28006 -181.113.64.0/22 28006 -181.113.68.0/23 28006 -181.113.70.0/24 28006 -181.113.96.0/22 28006 -181.113.100.0/24 28006 -181.113.102.0/24 28006 -181.113.112.0/21 28006 -181.113.120.0/22 28006 -181.113.126.0/24 28006 -181.113.128.0/21 28006 -181.113.136.0/22 28006 -181.113.144.0/20 28006 -181.113.224.0/21 28006 -181.114.0.0/19 52286 -181.114.32.0/20 27927 -181.114.48.0/21 27927 -181.114.56.0/22 263170 -181.114.60.0/22 264831 -181.114.64.0/19 27839 -181.114.96.0/19 27882 -181.114.128.0/19 27818 -181.114.160.0/21 6568 -181.114.168.0/23 6568 -181.114.170.0/24 6568 -181.114.171.0/24 27839 -181.114.172.0/22 6568 -181.114.176.0/21 6568 -181.114.184.0/22 6568 -181.114.188.0/24 27839 -181.114.189.0/24 6568 -181.114.190.0/23 6568 -181.114.192.0/22 52308 -181.114.196.0/24 52308 -181.114.198.0/23 52308 -181.114.200.0/21 52308 -181.114.208.0/20 52308 -181.114.224.0/21 52431 -181.114.232.0/21 265714 -181.114.240.0/20 262287 -181.115.0.0/17 14754 -181.115.128.0/17 6568 -181.116.0.0/18 11664 -181.116.64.0/20 19037 -181.116.80.0/20 11664 -181.116.96.0/19 11664 -181.116.128.0/21 11664 -181.116.136.0/21 19037 -181.116.144.0/21 19037 -181.116.152.0/21 11664 -181.116.160.0/20 11664 -181.116.176.0/21 11664 -181.116.184.0/21 19037 -181.116.192.0/20 19037 -181.116.208.0/20 11664 -181.116.224.0/19 11664 -181.117.0.0/21 19037 -181.117.8.0/21 11664 -181.117.16.0/23 11664 -181.117.18.0/23 19037 -181.117.20.0/24 19037 -181.117.21.0/24 10620 -181.117.22.0/23 19037 -181.117.24.0/22 11664 -181.117.28.0/22 19037 -181.117.32.0/19 11664 -181.117.64.0/18 11664 -181.117.128.0/18 11664 -181.117.192.0/20 19037 -181.117.208.0/21 19037 -181.117.216.0/21 11664 -181.117.224.0/20 11664 -181.117.240.0/20 19037 -181.118.0.0/19 28114 -181.118.32.0/19 27800 -181.118.64.0/18 28075 -181.118.128.0/20 52492 -181.118.144.0/20 27951 -181.118.160.0/20 23416 -181.118.176.0/20 27953 -181.118.192.0/20 52405 -181.118.208.0/20 262196 -181.118.224.0/19 19889 -181.119.0.0/23 18747 -181.119.2.0/24 18747 -181.119.3.0/24 266725 -181.119.4.0/23 18747 -181.119.6.0/24 18747 -181.119.7.0/24 266725 -181.119.8.0/21 18747 -181.119.16.0/23 18747 -181.119.18.0/24 61493 -181.119.19.0/24 61451 -181.119.20.0/23 61451 -181.119.22.0/24 18747 -181.119.23.0/24 61493 -181.119.24.0/22 18747 -181.119.28.0/24 18747 -181.119.29.0/24 266725 -181.119.30.0/23 18747 -181.119.32.0/24 18747 -181.119.33.0/24 266725 -181.119.34.0/24 266725 -181.119.35.0/24 18747 -181.119.36.0/22 18747 -181.119.40.0/23 266725 -181.119.42.0/23 18747 -181.119.44.0/22 18747 -181.119.48.0/20 18747 -181.119.64.0/22 18747 -181.119.68.0/24 18747 -181.119.69.0/24 266725 -181.119.70.0/24 18747 -181.119.71.0/24 266725 -181.119.72.0/21 266725 -181.119.80.0/23 266725 -181.119.82.0/24 266725 -181.119.83.0/24 18747 -181.119.84.0/22 18747 -181.119.88.0/21 18747 -181.119.96.0/20 18747 -181.119.112.0/21 18747 -181.119.120.0/23 18747 -181.119.122.0/24 266725 -181.119.123.0/24 18747 -181.119.124.0/22 18747 -181.119.128.0/20 18747 -181.119.144.0/21 18747 -181.119.152.0/22 18747 -181.119.156.0/23 18747 -181.119.158.0/23 266725 -181.119.160.0/19 18747 -181.119.192.0/18 18747 -181.120.0.0/13 23201 -181.128.0.0/12 13489 -181.144.0.0/12 26611 -181.160.0.0/14 7418 -181.164.0.0/15 10318 -181.166.0.0/20 10481 -181.166.16.0/20 10318 -181.166.32.0/19 10318 -181.166.64.0/18 10318 -181.166.128.0/17 10318 -181.167.0.0/16 10318 -181.168.0.0/15 10318 -181.170.0.0/15 10481 -181.172.0.0/15 27680 -181.174.0.0/19 22368 -181.174.32.0/23 22368 -181.174.34.0/24 22368 -181.174.36.0/22 22368 -181.174.40.0/21 22368 -181.174.48.0/20 22368 -181.174.64.0/20 23243 -181.174.80.0/23 23243 -181.174.82.0/24 52362 -181.174.83.0/24 23243 -181.174.84.0/22 23243 -181.174.88.0/21 23243 -181.174.96.0/22 23243 -181.174.100.0/24 23243 -181.174.102.0/23 23243 -181.174.104.0/22 52362 -181.174.108.0/22 23243 -181.174.112.0/21 23243 -181.174.121.0/24 23243 -181.174.122.0/23 23243 -181.174.124.0/24 52501 -181.174.125.0/24 23243 -181.174.126.0/23 23243 -181.174.128.0/22 52308 -181.174.132.0/24 52308 -181.174.134.0/23 52308 -181.174.136.0/21 52308 -181.174.144.0/24 52308 -181.174.146.0/23 52308 -181.174.149.0/24 52308 -181.174.150.0/23 52308 -181.174.152.0/23 52308 -181.174.155.0/24 52308 -181.174.156.0/23 52308 -181.174.158.0/24 52308 -181.174.160.0/22 263192 -181.174.164.0/22 52469 -181.174.168.0/22 28110 -181.174.172.0/22 20207 -181.174.176.0/21 20207 -181.174.184.0/21 60458 -181.174.192.0/20 262192 -181.174.208.0/20 30361 -181.174.224.0/19 30361 -181.175.0.0/16 14522 -181.176.0.0/16 262210 -181.177.0.0/18 264642 -181.177.64.0/19 263735 -181.177.96.0/21 263735 -181.177.104.0/22 263735 -181.177.108.0/23 263735 -181.177.110.0/23 52449 -181.177.112.0/22 52449 -181.177.116.0/22 263735 -181.177.120.0/21 263735 -181.177.128.0/18 27839 -181.177.192.0/21 52312 -181.177.200.0/21 7303 -181.177.208.0/21 52327 -181.177.216.0/22 52433 -181.177.220.0/22 7004 -181.177.224.0/19 27843 -181.178.0.0/15 262227 -181.182.128.0/17 6306 -181.183.128.0/17 6306 -181.184.128.0/17 6306 -181.185.128.0/17 6306 -181.188.0.0/17 27665 -181.188.128.0/18 27882 -181.188.192.0/21 19114 -181.188.200.0/23 19114 -181.188.202.0/23 264668 -181.188.204.0/22 19114 -181.188.208.0/22 19114 -181.188.212.0/24 52331 -181.188.213.0/24 19114 -181.188.214.0/24 19114 -181.188.215.0/24 264668 -181.188.216.0/24 264668 -181.188.217.0/24 19114 -181.188.218.0/23 19114 -181.188.220.0/22 19114 -181.188.224.0/19 19114 -181.189.0.0/18 30361 -181.189.128.0/24 23243 -181.189.129.0/24 26617 -181.189.130.0/23 26617 -181.189.132.0/22 23243 -181.189.136.0/21 23243 -181.189.144.0/21 23243 -181.189.152.0/24 23243 -181.189.153.0/24 262206 -181.189.155.0/24 262206 -181.189.156.0/24 262206 -181.189.158.0/24 52501 -181.189.159.0/24 23243 -181.189.160.0/22 264830 -181.189.164.0/22 27987 -181.189.168.0/23 27987 -181.189.170.0/24 264830 -181.189.171.0/24 27987 -181.189.172.0/23 264830 -181.189.174.0/23 27987 -181.189.176.0/21 17079 -181.189.189.0/24 17079 -181.189.191.0/24 17079 -181.189.192.0/19 27792 -181.189.224.0/23 27696 -181.189.226.0/24 264812 -181.189.227.0/24 27696 -181.189.228.0/22 27696 -181.189.232.0/21 27696 -181.189.240.0/20 27696 -181.190.0.0/16 14259 -181.191.0.0/22 267436 -181.191.4.0/22 265984 -181.191.8.0/22 265980 -181.191.12.0/22 265981 -181.191.16.0/22 52892 -181.191.24.0/24 263809 -181.191.25.0/24 263739 -181.191.26.0/24 263739 -181.191.27.0/24 52425 -181.191.28.0/22 265783 -181.191.32.0/22 265986 -181.191.36.0/22 266767 -181.191.40.0/22 266000 -181.191.44.0/22 265987 -181.191.48.0/23 267453 -181.191.52.0/22 267526 -181.191.56.0/22 265992 -181.191.60.0/22 267428 -181.191.64.0/22 265777 -181.191.68.0/22 265779 -181.191.72.0/22 266001 -181.191.76.0/22 267452 -181.191.80.0/24 1000 -181.191.81.0/24 265790 -181.191.82.0/23 1000 -181.191.84.0/22 265998 -181.191.88.0/22 265994 -181.191.92.0/22 266002 -181.191.96.0/22 266003 -181.191.100.0/22 262868 -181.191.104.0/22 266009 -181.191.108.0/22 266004 -181.191.112.0/22 266010 -181.191.116.0/22 267423 -181.191.120.0/22 266005 -181.191.124.0/22 265796 -181.191.128.0/22 266011 -181.191.132.0/22 267424 -181.191.140.0/23 263793 -181.191.144.0/22 267425 -181.191.148.0/22 267438 -181.191.152.0/22 267488 -181.191.156.0/22 265802 -181.191.160.0/22 267426 -181.191.164.0/22 267478 -181.191.168.0/22 267429 -181.191.172.0/22 267444 -181.191.176.0/22 28098 -181.191.180.0/22 267434 -181.191.184.0/23 267445 -181.191.186.0/23 265806 -181.191.188.0/22 265539 -181.191.192.0/22 267457 -181.191.196.0/22 267439 -181.191.200.0/22 267435 -181.191.204.0/22 267437 -181.191.208.0/22 267460 -181.191.212.0/22 267450 -181.191.216.0/22 267560 -181.191.220.0/22 264619 -181.191.224.0/22 28098 -181.191.228.0/22 267449 -181.191.232.0/22 266839 -181.191.236.0/22 267446 -181.191.240.0/22 267456 -181.191.244.0/22 265524 -181.191.248.0/21 265524 -181.192.0.0/19 17069 -181.192.32.0/19 27984 -181.192.64.0/20 52419 -181.192.80.0/20 262170 -181.192.128.0/17 8163 -181.193.0.0/17 11830 -181.193.128.0/20 11830 -181.193.144.0/22 11830 -181.193.148.0/23 11830 -181.193.150.0/23 264609 -181.193.152.0/21 11830 -181.193.160.0/19 11830 -181.193.192.0/18 11830 -181.194.0.0/15 11830 -181.196.0.0/22 27948 -181.196.16.0/22 28006 -181.196.24.0/21 28006 -181.196.48.0/20 28006 -181.196.64.0/22 28006 -181.196.68.0/23 28006 -181.196.72.0/23 28006 -181.196.74.0/24 28006 -181.196.76.0/22 28006 -181.196.88.0/23 28006 -181.196.90.0/24 28006 -181.196.104.0/22 28006 -181.196.136.0/21 28006 -181.196.144.0/21 28006 -181.196.176.0/20 28006 -181.196.204.0/22 28006 -181.196.240.0/20 28006 -181.197.0.0/17 18809 -181.197.128.0/18 18809 -181.197.192.0/18 27833 -181.198.0.0/16 27947 -181.199.0.0/17 27947 -181.199.128.0/20 32034 -181.199.144.0/20 27813 -181.199.160.0/20 52481 -181.199.176.0/20 28088 -181.199.208.0/20 12956 -181.199.224.0/19 19863 -181.200.0.0/16 27680 -181.201.0.0/16 7418 -181.202.0.0/15 7418 -181.204.0.0/14 27831 -181.208.0.0/17 21826 -181.208.128.0/20 21826 -181.208.144.0/23 21826 -181.208.148.0/22 21826 -181.208.152.0/21 21826 -181.208.160.0/19 21826 -181.208.192.0/22 21826 -181.208.198.0/23 21826 -181.208.200.0/21 21826 -181.208.208.0/20 21826 -181.208.224.0/19 21826 -181.209.0.0/17 52361 -181.209.128.0/17 14754 -181.210.0.0/16 7727 -181.211.0.0/20 28006 -181.211.32.0/21 28006 -181.211.56.0/21 28006 -181.211.96.0/21 28006 -181.211.112.0/22 28006 -181.211.128.0/22 28006 -181.211.132.0/24 28006 -181.211.144.0/21 28006 -181.211.160.0/21 28006 -181.211.184.0/21 28006 -181.211.208.0/21 27948 -181.211.216.0/23 28006 -181.211.240.0/21 28006 -181.211.248.0/22 27948 -181.211.252.0/22 28006 -181.212.0.0/16 16629 -181.213.32.0/19 28573 -181.213.64.0/18 28573 -181.213.128.0/17 28573 -181.214.0.0/20 61317 -181.214.16.0/21 61317 -181.214.24.0/23 61317 -181.214.26.0/24 61317 -181.214.27.0/24 60458 -181.214.28.0/22 61317 -181.214.32.0/22 61317 -181.214.36.0/24 61317 -181.214.38.0/23 61317 -181.214.40.0/21 61317 -181.214.48.0/24 61317 -181.214.50.0/23 134121 -181.214.52.0/24 61317 -181.214.54.0/24 61317 -181.214.55.0/24 60458 -181.214.56.0/21 61317 -181.214.64.0/21 61317 -181.214.72.0/22 134121 -181.214.76.0/24 61317 -181.214.78.0/23 134121 -181.214.80.0/23 134121 -181.214.83.0/24 61317 -181.214.84.0/23 134121 -181.214.86.0/24 52284 -181.214.87.0/24 61317 -181.214.88.0/23 61317 -181.214.91.0/24 61317 -181.214.92.0/23 61317 -181.214.94.0/23 134121 -181.214.96.0/21 61317 -181.214.104.0/23 134121 -181.214.106.0/23 61317 -181.214.108.0/22 61317 -181.214.112.0/20 61317 -181.214.128.0/22 134121 -181.214.132.0/23 61317 -181.214.134.0/24 61317 -181.214.136.0/24 61317 -181.214.138.0/23 134121 -181.214.140.0/23 61317 -181.214.142.0/24 61317 -181.214.144.0/23 61317 -181.214.147.0/24 61317 -181.214.149.0/24 61317 -181.214.150.0/24 61317 -181.214.153.0/24 61317 -181.214.154.0/23 61317 -181.214.156.0/24 61317 -181.214.158.0/24 61317 -181.214.160.0/19 61317 -181.214.192.0/21 61317 -181.214.200.0/22 61317 -181.214.204.0/23 61317 -181.214.208.0/21 61317 -181.214.217.0/24 61317 -181.214.218.0/23 134121 -181.214.220.0/22 61317 -181.214.224.0/22 61317 -181.214.228.0/23 134121 -181.214.231.0/24 61317 -181.214.233.0/24 61317 -181.214.235.0/24 61317 -181.214.236.0/24 61317 -181.214.238.0/23 134121 -181.214.240.0/22 61317 -181.214.244.0/24 60458 -181.214.246.0/23 134121 -181.214.248.0/21 61317 -181.215.0.0/21 61317 -181.215.8.0/24 61317 -181.215.9.0/24 60458 -181.215.10.0/23 61317 -181.215.12.0/22 61317 -181.215.16.0/20 61317 -181.215.32.0/19 61317 -181.215.64.0/18 61317 -181.215.128.0/19 61317 -181.215.160.0/20 61317 -181.215.176.0/22 61317 -181.215.180.0/23 61317 -181.215.182.0/24 61317 -181.215.183.0/24 61440 -181.215.184.0/23 134121 -181.215.186.0/23 61317 -181.215.188.0/24 61317 -181.215.189.0/24 134121 -181.215.190.0/23 61317 -181.215.192.0/23 61317 -181.215.194.0/24 61317 -181.215.196.0/22 61317 -181.215.200.0/21 61317 -181.215.209.0/24 61317 -181.215.211.0/24 61317 -181.215.212.0/24 61317 -181.215.214.0/24 61317 -181.215.216.0/21 61317 -181.215.224.0/21 61317 -181.215.232.0/22 61317 -181.215.236.0/23 134121 -181.215.238.0/23 61317 -181.215.240.0/22 61317 -181.215.244.0/23 134121 -181.215.246.0/24 60458 -181.215.247.0/24 61317 -181.215.248.0/24 61317 -181.215.250.0/24 134121 -181.215.251.0/24 61317 -181.215.252.0/23 134121 -181.215.254.0/23 61317 -181.220.0.0/14 28573 -181.224.0.0/18 30361 -181.224.64.0/19 30361 -181.224.96.0/19 52279 -181.224.128.0/20 32475 -181.224.144.0/22 32475 -181.224.148.0/24 32475 -181.224.149.0/24 36351 -181.224.150.0/23 36351 -181.224.152.0/22 32475 -181.224.156.0/22 36351 -181.224.160.0/22 3549 -181.224.164.0/22 265760 -181.224.172.0/22 52466 -181.224.176.0/21 263742 -181.224.184.0/21 52453 -181.224.192.0/21 30361 -181.224.200.0/24 28032 -181.224.204.0/22 52412 -181.224.208.0/21 52432 -181.224.216.0/21 30361 -181.224.224.0/19 262253 -181.225.1.0/24 52232 -181.225.2.0/23 52232 -181.225.4.0/24 52232 -181.225.6.0/23 52232 -181.225.8.0/21 52232 -181.225.16.0/20 52232 -181.225.32.0/19 8053 -181.225.64.0/20 27951 -181.225.80.0/21 10753 -181.225.88.0/21 263210 -181.225.96.0/20 262186 -181.225.112.0/20 52489 -181.225.128.0/21 262199 -181.225.136.0/22 12180 -181.225.140.0/22 262213 -181.225.144.0/21 262213 -181.225.192.0/20 52251 -181.225.208.0/21 52251 -181.225.216.0/22 52251 -181.225.220.0/24 52251 -181.225.222.0/23 52251 -181.225.224.0/19 27725 -181.226.0.0/16 14117 -181.227.0.0/16 28024 -181.228.0.0/14 10481 -181.232.0.0/17 27695 -181.232.128.0/17 30361 -181.233.0.0/17 30361 -181.233.128.0/20 30361 -181.233.144.0/22 12779 -181.233.148.0/22 52616 -181.233.152.0/21 30361 -181.233.160.0/19 30361 -181.233.192.0/18 12252 -181.234.0.0/16 3816 -181.236.0.0/17 3816 -181.236.128.0/19 3816 -181.236.160.0/20 3816 -181.236.176.0/20 22368 -181.236.192.0/21 22368 -181.236.214.0/23 3816 -181.236.217.0/24 3816 -181.236.218.0/24 3816 -181.236.221.0/24 3816 -181.236.222.0/24 22368 -181.236.223.0/24 3816 -181.236.224.0/19 22368 -181.238.0.0/18 11664 -181.238.64.0/20 11664 -181.238.80.0/20 19037 -181.238.96.0/20 19037 -181.238.112.0/20 11664 -181.238.128.0/17 19037 -181.239.0.0/21 19037 -181.239.8.0/23 19037 -181.239.10.0/24 19037 -181.239.11.0/24 11664 -181.239.12.0/22 11664 -181.239.16.0/21 11664 -181.239.24.0/22 11664 -181.239.28.0/22 19037 -181.239.32.0/23 19037 -181.239.34.0/24 11664 -181.239.35.0/24 19037 -181.239.36.0/22 11664 -181.239.40.0/24 11664 -181.239.41.0/24 19037 -181.239.42.0/23 11664 -181.239.44.0/22 11664 -181.239.48.0/22 11664 -181.239.52.0/23 19037 -181.239.54.0/23 11664 -181.239.56.0/23 11664 -181.239.58.0/23 19037 -181.239.60.0/24 11664 -181.239.61.0/24 19037 -181.239.62.0/23 11664 -181.239.64.0/18 11664 -181.239.128.0/19 11664 -181.239.160.0/20 11664 -181.239.176.0/21 11664 -181.239.184.0/22 11664 -181.239.188.0/22 19037 -181.239.192.0/19 11664 -181.239.224.0/21 11664 -181.239.232.0/21 19037 -181.239.240.0/20 11664 -181.240.0.0/12 26611 -182.0.0.0/12 23693 -182.16.0.0/17 45753 -182.16.131.0/24 132505 -182.16.132.0/24 132505 -182.16.152.0/22 23878 -182.16.156.0/22 55406 -182.16.160.0/20 17995 -182.16.176.0/22 17995 -182.16.181.0/24 17995 -182.16.182.0/23 17995 -182.16.184.0/21 17995 -182.16.224.0/21 37916 -182.16.232.0/22 55415 -182.16.236.0/22 18272 -182.16.240.0/21 45298 -182.16.248.0/23 45298 -182.16.250.0/24 45298 -182.16.252.0/22 45298 -182.17.0.0/16 17552 -182.18.0.0/18 45093 -182.18.64.0/21 45093 -182.18.72.0/21 23724 -182.18.80.0/20 45093 -182.18.96.0/21 45093 -182.18.104.0/21 4847 -182.18.128.0/23 18229 -182.18.130.0/24 18229 -182.18.132.0/22 18229 -182.18.136.0/24 46071 -182.18.137.0/24 18229 -182.18.138.0/23 18229 -182.18.140.0/22 18229 -182.18.144.0/20 18229 -182.18.160.0/20 18229 -182.18.176.0/21 18229 -182.18.184.0/23 18229 -182.18.187.0/24 18229 -182.18.188.0/23 18229 -182.18.191.0/24 18229 -182.18.192.0/21 23944 -182.18.200.0/23 45622 -182.18.202.0/23 23944 -182.18.204.0/22 23944 -182.18.208.0/20 23944 -182.18.224.0/21 23944 -182.18.232.0/22 23944 -182.18.236.0/23 23944 -182.18.238.0/24 45622 -182.18.239.0/24 23944 -182.18.240.0/22 23944 -182.18.244.0/23 23944 -182.18.246.0/24 45622 -182.18.247.0/24 23944 -182.18.248.0/23 23944 -182.18.250.0/24 45622 -182.18.251.0/24 23944 -182.18.252.0/22 23944 -182.19.0.0/18 55410 -182.19.64.0/20 55410 -182.19.80.0/21 55410 -182.19.88.0/22 55410 -182.19.94.0/23 55410 -182.19.128.0/18 55430 -182.19.192.0/19 55430 -182.19.224.0/20 55430 -182.19.240.0/21 55430 -182.19.248.0/22 55430 -182.19.252.0/24 4657 -182.19.253.0/24 55430 -182.19.254.0/23 55430 -182.20.0.0/15 10010 -182.22.0.0/17 23816 -182.22.128.0/17 17676 -182.23.0.0/18 4800 -182.23.64.0/22 38513 -182.23.68.0/23 4800 -182.23.70.0/23 38513 -182.23.72.0/24 38513 -182.23.73.0/24 4800 -182.23.74.0/23 4800 -182.23.76.0/22 4800 -182.23.80.0/20 4800 -182.23.96.0/20 4800 -182.23.112.0/22 4800 -182.23.116.0/23 4800 -182.23.118.0/24 4800 -182.23.126.0/23 4800 -182.23.128.0/21 131169 -182.23.136.0/23 131169 -182.23.140.0/22 131169 -182.23.144.0/20 4628 -182.23.161.0/24 38496 -182.23.162.0/24 38768 -182.23.163.0/24 38496 -182.23.164.0/23 38496 -182.23.166.0/24 38496 -182.23.168.0/23 38496 -182.23.170.0/24 38496 -182.23.171.0/24 137346 -182.23.172.0/23 38496 -182.23.174.0/24 38496 -182.23.175.0/24 138885 -182.23.176.0/21 55454 -182.23.192.0/21 9268 -182.23.208.0/22 38638 -182.23.212.0/22 55422 -182.23.216.0/21 18135 -182.23.224.0/19 59108 -182.24.0.0/14 4795 -182.28.0.0/15 4795 -182.30.0.0/16 4795 -182.31.0.0/16 9694 -182.32.0.0/13 4134 -182.40.0.0/15 4134 -182.42.0.0/16 58519 -182.43.0.0/22 63835 -182.43.4.0/24 63835 -182.43.5.0/24 58519 -182.43.6.0/23 58519 -182.43.8.0/21 58519 -182.43.16.0/20 58519 -182.43.32.0/19 58519 -182.43.64.0/18 58519 -182.43.128.0/17 58519 -182.44.0.0/14 4134 -182.48.0.0/24 9371 -182.48.1.0/24 7684 -182.48.2.0/24 7684 -182.48.3.0/24 9371 -182.48.4.0/22 9371 -182.48.8.0/24 9371 -182.48.9.0/24 7684 -182.48.10.0/23 7684 -182.48.12.0/22 7684 -182.48.16.0/20 9371 -182.48.32.0/22 9371 -182.48.36.0/23 9371 -182.48.38.0/24 9371 -182.48.39.0/24 7684 -182.48.40.0/21 9371 -182.48.48.0/20 9371 -182.48.64.0/20 63969 -182.48.80.0/22 63969 -182.48.84.0/24 63969 -182.48.85.0/24 58715 -182.48.86.0/23 63969 -182.48.88.0/21 63969 -182.48.96.0/20 4808 -182.48.112.0/21 4808 -182.48.120.0/24 24143 -182.48.128.0/19 9245 -182.48.160.0/19 46030 -182.48.192.0/20 45769 -182.48.208.0/22 45769 -182.48.212.0/23 45769 -182.48.214.0/24 45582 -182.48.215.0/24 45769 -182.48.216.0/23 45769 -182.48.219.0/24 45582 -182.48.220.0/23 45769 -182.48.222.0/24 45769 -182.48.224.0/20 45769 -182.48.240.0/21 45769 -182.48.248.0/24 45769 -182.48.250.0/24 45769 -182.48.252.0/23 45769 -182.48.254.0/24 45582 -182.48.255.0/24 45769 -182.50.0.0/22 4847 -182.50.4.0/24 134700 -182.50.5.0/24 4058 -182.50.7.0/24 134700 -182.50.16.0/20 9973 -182.50.32.0/19 10049 -182.50.64.0/22 55427 -182.50.72.0/22 38227 -182.50.76.0/22 14340 -182.50.80.0/22 55423 -182.50.84.0/23 45629 -182.50.86.0/24 55423 -182.50.87.0/24 45629 -182.50.88.0/22 55423 -182.50.92.0/22 45629 -182.50.96.0/20 23661 -182.50.112.0/20 4847 -182.50.128.0/19 26496 -182.50.160.0/22 45641 -182.50.164.0/22 24255 -182.50.168.0/22 38800 -182.50.172.0/22 9993 -182.50.176.0/24 55330 -182.50.190.0/23 55784 -182.50.192.0/19 4721 -182.50.224.0/20 4721 -182.50.240.0/20 45786 -182.51.0.0/24 63590 -182.51.98.0/24 63590 -182.51.200.0/22 16625 -182.52.0.0/15 23969 -182.54.0.0/17 4837 -182.54.128.0/22 64050 -182.54.133.0/24 17439 -182.54.134.0/24 17439 -182.54.140.0/23 55685 -182.54.142.0/24 55685 -182.54.144.0/22 135409 -182.54.148.0/22 134014 -182.54.152.0/22 132092 -182.54.156.0/22 45424 -182.54.160.0/20 45637 -182.54.176.0/20 23661 -182.54.192.0/19 24028 -182.54.224.0/22 55486 -182.54.228.0/22 56094 -182.54.232.0/24 38220 -182.54.234.0/24 45887 -182.54.235.0/24 59432 -182.54.236.0/24 45887 -182.54.237.0/24 20860 -182.54.238.0/24 62904 -182.54.240.0/22 2497 -182.54.248.0/21 59092 -182.55.0.0/17 55430 -182.55.128.0/18 55430 -182.55.192.0/19 55430 -182.55.224.0/20 55430 -182.55.240.0/22 55430 -182.55.244.0/24 55430 -182.55.245.0/24 4657 -182.55.246.0/23 55430 -182.55.248.0/21 55430 -182.56.0.0/14 17813 -182.60.0.0/16 17813 -182.61.0.0/18 38365 -182.61.64.0/18 55967 -182.61.128.0/19 38365 -182.61.160.0/19 55967 -182.61.192.0/18 38365 -182.62.0.0/15 4818 -182.64.0.0/17 24560 -182.64.128.0/18 24560 -182.64.192.0/19 24560 -182.64.224.0/22 24560 -182.64.228.0/23 24560 -182.64.230.0/24 24560 -182.64.236.0/22 24560 -182.64.240.0/20 24560 -182.65.0.0/23 24560 -182.65.4.0/22 24560 -182.65.8.0/21 24560 -182.65.16.0/20 24560 -182.65.32.0/19 24560 -182.65.64.0/18 24560 -182.65.160.0/19 24560 -182.65.192.0/18 24560 -182.66.0.0/18 45609 -182.66.128.0/18 45609 -182.67.0.0/16 45609 -182.68.0.0/17 24560 -182.68.128.0/20 24560 -182.68.152.0/21 24560 -182.68.160.0/19 24560 -182.68.192.0/18 24560 -182.69.0.0/17 24560 -182.69.128.0/19 24560 -182.69.160.0/20 24560 -182.69.176.0/21 24560 -182.69.184.0/22 24560 -182.69.188.0/23 24560 -182.69.191.0/24 24560 -182.69.192.0/18 24560 -182.70.0.0/16 24560 -182.71.0.0/16 9498 -182.72.0.0/14 9498 -182.76.0.0/16 9498 -182.77.0.0/17 24560 -182.78.0.0/16 9498 -182.79.128.0/22 9498 -182.79.132.0/23 9498 -182.79.134.0/24 9498 -182.79.138.0/23 9498 -182.79.143.0/24 9498 -182.79.144.0/23 9498 -182.79.147.0/24 9498 -182.79.148.0/24 9498 -182.79.155.0/24 9498 -182.79.156.0/24 9498 -182.79.161.0/24 9498 -182.79.163.0/24 9498 -182.79.164.0/24 9498 -182.79.167.0/24 9498 -182.79.173.0/24 9498 -182.79.174.0/24 9498 -182.79.176.0/24 9498 -182.79.179.0/24 9498 -182.79.186.0/24 9498 -182.79.194.0/24 9498 -182.79.201.0/24 9498 -182.79.209.0/24 9498 -182.79.212.0/24 9498 -182.79.217.0/24 9498 -182.79.218.0/24 9498 -182.79.220.0/22 9498 -182.79.224.0/24 9498 -182.79.230.0/23 9498 -182.79.234.0/23 9498 -182.79.237.0/24 9498 -182.79.238.0/23 9498 -182.79.240.0/24 9498 -182.79.244.0/23 9498 -182.79.248.0/24 9498 -182.79.251.0/24 9498 -182.79.252.0/22 9498 -182.80.0.0/14 23771 -182.84.0.0/14 4134 -182.88.0.0/14 4837 -182.92.0.0/16 37963 -182.93.0.0/18 4609 -182.93.64.0/19 4007 -182.93.96.0/19 17514 -182.93.128.0/17 4621 -182.94.236.0/22 17466 -182.95.246.0/23 17466 -182.96.0.0/13 4134 -182.104.0.0/15 4134 -182.106.0.0/17 4134 -182.106.128.0/21 4134 -182.106.136.0/22 139201 -182.106.140.0/22 4134 -182.106.144.0/22 4134 -182.106.148.0/22 139201 -182.106.152.0/21 139201 -182.106.160.0/20 4134 -182.106.176.0/22 4134 -182.106.180.0/23 4134 -182.106.182.0/23 139201 -182.106.184.0/21 134238 -182.106.192.0/18 4134 -182.107.0.0/16 4134 -182.108.0.0/14 4134 -182.112.0.0/12 4837 -182.128.0.0/15 4134 -182.130.0.0/16 4134 -182.131.0.0/19 38283 -182.131.32.0/19 4134 -182.131.64.0/18 4134 -182.131.128.0/17 4134 -182.132.0.0/19 4134 -182.132.32.0/23 38283 -182.132.34.0/23 4134 -182.132.36.0/22 4134 -182.132.40.0/21 4134 -182.132.48.0/20 4134 -182.132.64.0/18 4134 -182.132.128.0/17 4134 -182.133.0.0/16 4134 -182.134.0.0/15 4134 -182.136.0.0/14 4134 -182.140.0.0/17 4134 -182.140.128.0/21 38283 -182.140.136.0/23 38283 -182.140.138.0/24 58519 -182.140.139.0/24 38283 -182.140.140.0/24 38283 -182.140.141.0/24 58519 -182.140.142.0/23 38283 -182.140.144.0/20 38283 -182.140.160.0/19 38283 -182.140.192.0/19 38283 -182.140.224.0/21 38283 -182.140.232.0/24 38283 -182.140.233.0/24 58519 -182.140.234.0/23 58519 -182.140.236.0/22 38283 -182.140.240.0/24 38283 -182.140.241.0/24 58519 -182.140.242.0/23 38283 -182.140.244.0/22 38283 -182.140.248.0/22 38283 -182.140.252.0/24 4134 -182.140.253.0/24 139220 -182.140.254.0/23 4809 -182.141.0.0/16 4134 -182.142.0.0/15 4134 -182.144.0.0/15 4134 -182.146.0.0/16 4134 -182.147.0.0/17 4134 -182.147.128.0/18 4134 -182.147.192.0/19 4134 -182.147.224.0/20 4134 -182.147.240.0/23 4134 -182.147.242.0/24 4134 -182.147.243.0/24 38283 -182.147.244.0/22 4134 -182.147.248.0/21 4134 -182.148.0.0/18 4134 -182.148.64.0/19 4134 -182.148.96.0/21 4809 -182.148.104.0/21 4134 -182.148.112.0/20 4134 -182.148.128.0/17 4134 -182.149.0.0/17 4134 -182.149.128.0/20 4809 -182.149.144.0/20 4134 -182.149.160.0/19 4134 -182.149.192.0/18 4134 -182.150.0.0/23 38283 -182.150.2.0/23 58519 -182.150.4.0/22 38283 -182.150.8.0/21 38283 -182.150.16.0/20 4134 -182.150.32.0/19 4134 -182.150.64.0/18 4134 -182.150.128.0/17 4134 -182.151.0.0/18 38283 -182.151.64.0/18 4134 -182.151.128.0/18 4134 -182.151.192.0/22 4134 -182.151.196.0/23 4134 -182.151.198.0/24 4809 -182.151.199.0/24 4134 -182.151.200.0/21 4134 -182.151.208.0/22 4134 -182.151.212.0/24 4809 -182.151.213.0/24 4134 -182.151.214.0/23 4134 -182.151.216.0/21 4134 -182.151.224.0/19 4134 -182.152.0.0/15 17924 -182.154.0.0/16 17435 -182.155.0.0/16 17809 -182.156.0.0/18 55441 -182.156.64.0/21 45820 -182.156.72.0/22 45820 -182.156.76.0/23 45820 -182.156.78.0/24 45820 -182.156.80.0/22 45820 -182.156.84.0/23 45820 -182.156.86.0/24 45820 -182.156.88.0/21 45820 -182.156.96.0/19 55441 -182.156.128.0/19 55441 -182.156.176.0/21 55441 -182.156.184.0/23 55441 -182.156.186.0/24 55441 -182.156.188.0/22 55441 -182.156.192.0/18 45820 -182.157.0.0/16 9808 -182.158.64.0/19 4725 -182.158.128.0/19 4725 -182.158.224.0/20 4725 -182.159.16.0/20 4725 -182.159.32.0/19 4725 -182.159.64.0/18 4725 -182.159.144.0/20 4725 -182.159.160.0/19 4725 -182.159.192.0/20 4725 -182.160.0.0/18 38805 -182.160.96.0/19 24323 -182.160.128.0/18 55803 -182.160.192.0/18 58793 -182.161.0.0/19 18001 -182.161.32.0/22 63916 -182.161.36.0/22 21859 -182.161.41.0/24 56103 -182.161.43.0/24 55480 -182.161.44.0/22 38835 -182.161.52.0/22 139327 -182.161.56.0/22 133043 -182.161.60.0/22 24000 -182.161.64.0/23 133120 -182.161.66.0/24 3786 -182.161.67.0/24 133547 -182.161.68.0/22 132839 -182.161.72.0/22 55569 -182.161.76.0/24 17707 -182.161.77.0/24 4713 -182.161.78.0/23 4713 -182.161.96.0/20 9286 -182.161.112.0/21 9286 -182.161.120.0/23 9286 -182.161.122.0/24 46003 -182.161.123.0/24 9286 -182.161.124.0/22 9286 -182.161.128.0/17 45361 -182.162.0.0/18 3786 -182.162.64.0/20 3786 -182.162.80.0/21 3786 -182.162.88.0/22 3786 -182.162.92.0/23 23576 -182.162.94.0/23 3786 -182.162.96.0/20 3786 -182.162.112.0/21 3786 -182.162.120.0/21 6507 -182.162.128.0/18 3786 -182.162.192.0/20 23576 -182.162.208.0/20 3786 -182.162.224.0/19 9710 -182.163.0.0/19 9371 -182.163.32.0/19 10013 -182.163.64.0/19 10013 -182.163.96.0/19 9230 -182.163.128.0/17 38701 -182.164.0.0/14 17511 -182.168.0.0/14 2527 -182.172.0.0/20 10036 -182.172.16.0/22 10036 -182.172.20.0/24 7562 -182.172.21.0/24 9569 -182.172.22.0/23 7562 -182.172.24.0/21 10036 -182.172.32.0/19 10036 -182.172.64.0/19 10036 -182.172.96.0/20 10036 -182.172.112.0/21 10036 -182.172.120.0/22 10036 -182.172.124.0/23 9569 -182.172.126.0/23 7562 -182.172.128.0/18 10036 -182.172.192.0/20 10036 -182.172.208.0/22 10036 -182.172.212.0/24 10036 -182.172.216.0/22 7562 -182.172.220.0/22 10036 -182.172.224.0/22 7562 -182.172.228.0/22 10036 -182.172.232.0/21 10036 -182.172.240.0/20 10036 -182.173.64.0/22 55333 -182.173.72.0/22 55482 -182.173.76.0/22 45910 -182.173.80.0/20 38705 -182.173.96.0/19 38705 -182.173.128.0/19 9614 -182.173.160.0/22 38676 -182.173.164.0/24 38676 -182.173.165.0/24 9530 -182.173.166.0/23 9530 -182.173.168.0/21 9530 -182.173.176.0/21 38690 -182.173.184.0/21 135354 -182.173.192.0/18 3605 -182.174.0.0/16 4835 -182.175.0.0/17 4835 -182.175.128.0/18 4835 -182.175.192.0/19 4835 -182.175.224.0/24 17621 -182.175.225.0/24 4835 -182.175.226.0/23 4835 -182.175.228.0/22 4835 -182.175.232.0/21 4835 -182.175.240.0/23 17621 -182.175.242.0/23 4812 -182.175.244.0/22 4835 -182.175.248.0/21 4835 -182.176.0.0/21 45595 -182.176.8.0/22 45595 -182.176.12.0/24 45595 -182.176.13.0/24 17557 -182.176.14.0/24 45595 -182.176.15.0/24 17557 -182.176.16.0/23 45595 -182.176.18.0/24 45595 -182.176.19.0/24 17557 -182.176.20.0/23 45595 -182.176.22.0/24 45595 -182.176.23.0/24 17557 -182.176.24.0/21 45595 -182.176.32.0/19 45595 -182.176.64.0/22 45595 -182.176.68.0/24 17557 -182.176.69.0/24 45595 -182.176.70.0/23 45595 -182.176.72.0/21 45595 -182.176.80.0/20 45595 -182.176.96.0/19 45595 -182.176.128.0/20 45595 -182.176.144.0/23 45595 -182.176.146.0/24 45595 -182.176.147.0/24 17557 -182.176.148.0/23 17557 -182.176.150.0/24 17557 -182.176.151.0/24 45595 -182.176.152.0/21 45595 -182.176.160.0/20 45595 -182.176.176.0/24 9557 -182.176.177.0/24 45595 -182.176.178.0/23 45595 -182.176.180.0/22 45595 -182.176.184.0/21 45595 -182.176.192.0/20 45595 -182.176.208.0/21 45595 -182.176.216.0/22 45595 -182.176.220.0/23 17557 -182.176.222.0/24 17557 -182.176.223.0/24 45595 -182.176.224.0/22 45595 -182.176.228.0/24 17557 -182.176.229.0/24 45595 -182.176.230.0/23 45595 -182.176.232.0/21 45595 -182.176.240.0/20 45595 -182.177.0.0/16 45595 -182.178.0.0/15 45595 -182.180.0.0/14 45595 -182.184.0.0/14 45595 -182.188.0.0/15 45595 -182.190.0.0/18 45595 -182.190.64.0/20 45595 -182.190.80.0/21 45595 -182.190.88.0/23 9260 -182.190.90.0/23 45595 -182.190.92.0/22 45595 -182.190.96.0/19 45595 -182.190.128.0/18 45595 -182.190.192.0/19 45595 -182.190.224.0/20 45595 -182.190.240.0/21 45595 -182.190.248.0/22 45595 -182.190.252.0/22 9260 -182.191.0.0/16 45595 -182.192.0.0/13 6619 -182.200.0.0/16 4134 -182.201.0.0/17 134762 -182.201.128.0/18 134762 -182.201.192.0/21 4134 -182.201.200.0/24 4134 -182.201.201.0/24 17799 -182.201.202.0/23 4134 -182.201.204.0/22 4134 -182.201.208.0/20 4134 -182.201.224.0/21 4134 -182.201.232.0/21 134762 -182.201.240.0/21 134762 -182.201.248.0/21 4134 -182.202.0.0/15 4134 -182.204.0.0/16 4134 -182.205.0.0/16 17799 -182.206.0.0/16 17799 -182.207.0.0/16 4134 -182.208.0.0/12 17858 -182.224.0.0/13 17858 -182.232.0.0/16 131445 -182.233.0.0/18 131597 -182.233.64.0/18 9416 -182.233.128.0/17 9416 -182.234.0.0/15 9416 -182.236.0.0/21 10013 -182.236.8.0/22 10013 -182.236.12.0/24 58793 -182.236.14.0/23 10013 -182.236.16.0/20 10013 -182.236.32.0/19 10013 -182.236.64.0/19 17941 -182.236.96.0/20 17941 -182.236.112.0/22 55308 -182.236.116.0/23 38456 -182.236.118.0/24 9229 -182.236.119.0/24 38456 -182.236.120.0/21 18015 -182.236.128.0/19 37943 -182.236.160.0/19 4837 -182.236.192.0/18 37943 -182.237.0.0/22 55933 -182.237.4.0/22 45654 -182.237.8.0/21 45916 -182.237.16.0/22 55507 -182.237.20.0/22 55309 -182.237.32.0/19 38676 -182.237.64.0/19 4766 -182.237.96.0/21 4766 -182.237.104.0/23 4766 -182.237.106.0/24 4766 -182.237.107.0/24 45372 -182.237.108.0/22 4766 -182.237.112.0/20 4766 -182.237.128.0/18 24554 -182.237.192.0/18 17583 -182.239.32.0/21 38325 -182.239.40.0/22 45144 -182.239.44.0/23 55512 -182.239.48.0/21 55334 -182.239.56.0/23 55334 -182.239.58.0/24 55334 -182.239.61.0/24 55334 -182.239.62.0/24 55334 -182.239.64.0/21 137872 -182.239.75.0/24 9231 -182.239.76.0/23 9231 -182.239.81.0/24 9231 -182.239.82.0/23 9231 -182.239.84.0/22 9231 -182.239.88.0/23 9231 -182.239.90.0/24 9231 -182.239.94.0/23 9231 -182.239.96.0/21 137872 -182.239.105.0/24 9231 -182.239.106.0/23 9231 -182.239.108.0/24 9231 -182.239.113.0/24 9231 -182.239.114.0/23 9231 -182.239.116.0/22 9231 -182.239.120.0/23 9231 -182.239.122.0/24 9231 -182.239.125.0/24 9231 -182.239.126.0/23 9231 -182.239.128.0/20 4739 -182.239.144.0/20 7545 -182.239.160.0/19 7545 -182.239.192.0/18 7545 -182.240.0.0/17 4134 -182.240.128.0/19 4134 -182.240.160.0/22 134766 -182.240.164.0/22 4134 -182.240.168.0/21 4134 -182.240.176.0/20 4134 -182.240.192.0/18 4134 -182.241.0.0/16 4134 -182.242.0.0/19 4134 -182.242.32.0/21 4134 -182.242.40.0/21 134765 -182.242.48.0/21 134765 -182.242.56.0/21 4134 -182.242.64.0/20 4134 -182.242.80.0/21 4134 -182.242.88.0/21 134766 -182.242.96.0/19 4134 -182.242.128.0/21 4134 -182.242.136.0/21 134765 -182.242.144.0/21 134765 -182.242.152.0/21 4134 -182.242.160.0/19 4134 -182.242.192.0/20 4134 -182.242.208.0/20 134766 -182.242.224.0/19 4134 -182.243.0.0/16 4134 -182.244.0.0/15 4134 -182.246.0.0/16 4134 -182.247.0.0/18 4134 -182.247.64.0/19 4134 -182.247.96.0/20 4134 -182.247.112.0/22 134766 -182.247.116.0/22 4134 -182.247.120.0/21 4134 -182.247.128.0/18 4134 -182.247.192.0/19 4134 -182.247.224.0/19 134765 -182.248.0.0/14 2516 -182.252.0.0/18 3786 -182.252.64.0/24 23923 -182.252.66.0/23 23923 -182.252.128.0/21 38661 -182.252.136.0/23 38661 -182.252.138.0/24 9457 -182.252.139.0/24 38661 -182.252.140.0/22 38661 -182.252.144.0/20 38661 -182.252.160.0/20 38661 -182.252.176.0/21 38661 -182.252.192.0/18 38661 -182.253.0.0/16 17451 -182.254.0.0/16 45090 -182.255.0.0/21 46049 -182.255.8.0/21 55514 -182.255.20.0/22 55520 -182.255.24.0/22 24182 -182.255.28.0/22 135409 -182.255.32.0/24 64271 -182.255.33.0/24 40676 -182.255.34.0/24 40065 -182.255.35.0/24 64271 -182.255.36.0/22 46573 -182.255.40.0/22 56262 -182.255.44.0/22 134705 -182.255.48.0/22 9937 -182.255.52.0/22 132100 -182.255.56.0/22 133638 -182.255.60.0/22 132325 -182.255.64.0/20 9615 -182.255.96.0/19 7575 -182.255.128.0/17 9765 -183.0.0.0/15 4134 -183.2.0.0/17 4134 -183.2.128.0/19 58466 -183.2.160.0/20 58466 -183.2.176.0/20 4816 -183.2.192.0/20 134763 -183.2.208.0/23 134764 -183.2.210.0/24 134764 -183.2.211.0/24 58543 -183.2.212.0/22 134764 -183.2.216.0/21 134764 -183.2.224.0/21 58543 -183.2.232.0/22 134764 -183.2.236.0/22 58543 -183.2.240.0/20 58543 -183.3.0.0/17 4134 -183.3.128.0/18 4134 -183.3.192.0/21 58543 -183.3.200.0/23 58543 -183.3.202.0/23 134764 -183.3.204.0/22 134764 -183.3.208.0/20 4816 -183.3.224.0/19 4816 -183.4.0.0/15 4134 -183.6.0.0/17 4134 -183.6.128.0/18 4134 -183.6.192.0/21 58543 -183.6.200.0/23 58543 -183.6.202.0/24 58543 -183.6.203.0/24 134764 -183.6.204.0/22 134764 -183.6.208.0/20 134764 -183.6.224.0/20 134763 -183.6.240.0/20 58543 -183.7.0.0/16 4134 -183.8.0.0/13 4134 -183.16.0.0/12 4134 -183.32.0.0/14 4134 -183.36.0.0/18 4816 -183.36.64.0/19 4134 -183.36.96.0/19 4816 -183.36.128.0/17 4134 -183.37.0.0/16 4134 -183.38.0.0/15 4134 -183.40.0.0/14 4134 -183.44.0.0/15 4134 -183.46.0.0/16 4134 -183.47.0.0/17 4134 -183.47.128.0/18 4134 -183.47.192.0/21 58543 -183.47.200.0/21 134764 -183.47.208.0/20 58543 -183.47.224.0/21 134764 -183.47.232.0/22 58543 -183.47.236.0/22 134764 -183.47.240.0/23 134764 -183.47.242.0/23 58543 -183.47.244.0/22 58543 -183.47.248.0/21 58543 -183.48.0.0/13 4134 -183.56.0.0/18 4134 -183.56.64.0/19 4134 -183.56.96.0/24 134764 -183.56.97.0/24 4134 -183.56.98.0/23 4134 -183.56.100.0/22 4134 -183.56.104.0/21 4134 -183.56.112.0/20 4134 -183.56.128.0/21 58543 -183.56.136.0/22 58543 -183.56.140.0/23 58543 -183.56.142.0/23 58466 -183.56.144.0/21 58466 -183.56.152.0/21 4134 -183.56.160.0/21 4816 -183.56.168.0/22 58543 -183.56.172.0/22 134764 -183.56.176.0/21 4134 -183.56.184.0/21 4816 -183.56.192.0/18 58466 -183.57.0.0/19 4134 -183.57.32.0/22 4134 -183.57.36.0/22 58543 -183.57.40.0/21 4134 -183.57.48.0/21 4816 -183.57.56.0/21 4134 -183.57.64.0/21 4134 -183.57.72.0/21 58466 -183.57.80.0/22 58543 -183.57.84.0/22 4134 -183.57.88.0/21 4134 -183.57.96.0/19 4134 -183.57.128.0/20 4134 -183.57.144.0/21 134764 -183.57.152.0/22 134764 -183.57.156.0/22 4134 -183.57.160.0/19 4134 -183.57.192.0/18 4134 -183.58.0.0/19 4134 -183.58.32.0/23 4134 -183.58.34.0/23 58466 -183.58.36.0/22 4134 -183.58.40.0/21 4134 -183.58.48.0/20 4134 -183.58.64.0/18 4134 -183.58.128.0/17 4134 -183.59.0.0/22 4134 -183.59.4.0/22 58543 -183.59.8.0/22 4134 -183.59.12.0/22 58543 -183.59.16.0/20 4134 -183.59.32.0/19 4134 -183.59.64.0/18 4134 -183.59.128.0/17 4134 -183.60.0.0/19 4816 -183.60.32.0/21 4816 -183.60.40.0/21 58543 -183.60.48.0/20 4816 -183.60.64.0/19 58466 -183.60.96.0/21 58543 -183.60.104.0/23 58543 -183.60.106.0/23 134764 -183.60.108.0/22 134764 -183.60.112.0/20 58466 -183.60.128.0/19 134763 -183.60.160.0/20 134763 -183.60.176.0/20 58466 -183.60.192.0/19 134764 -183.60.224.0/21 134763 -183.60.232.0/22 134764 -183.60.236.0/22 58543 -183.60.240.0/20 58466 -183.61.0.0/20 58543 -183.61.16.0/21 58543 -183.61.24.0/22 58543 -183.61.28.0/22 4134 -183.61.32.0/19 4816 -183.61.64.0/21 58543 -183.61.72.0/21 4134 -183.61.80.0/21 58543 -183.61.88.0/21 134764 -183.61.96.0/19 58466 -183.61.128.0/20 58543 -183.61.144.0/24 4134 -183.61.145.0/24 4813 -183.61.146.0/23 134764 -183.61.148.0/22 134764 -183.61.152.0/21 58543 -183.61.160.0/19 134763 -183.61.192.0/19 58543 -183.61.224.0/19 134763 -183.62.0.0/18 4134 -183.62.64.0/19 4134 -183.62.96.0/21 4134 -183.62.104.0/21 4816 -183.62.112.0/20 4816 -183.62.128.0/17 4134 -183.63.0.0/17 4134 -183.63.128.0/18 4134 -183.63.192.0/19 4134 -183.63.224.0/21 4134 -183.63.232.0/24 58543 -183.63.233.0/24 4134 -183.63.234.0/23 4134 -183.63.236.0/22 4134 -183.63.240.0/20 4134 -183.64.0.0/16 4134 -183.65.0.0/18 4134 -183.65.64.0/23 4134 -183.65.66.0/24 4134 -183.65.67.0/24 134420 -183.65.68.0/22 4134 -183.65.72.0/21 4134 -183.65.80.0/20 4134 -183.65.96.0/19 4134 -183.65.128.0/17 4134 -183.66.0.0/18 4134 -183.66.64.0/22 134420 -183.66.68.0/22 4134 -183.66.72.0/21 4134 -183.66.80.0/20 4134 -183.66.96.0/20 134420 -183.66.112.0/20 4134 -183.66.128.0/17 4134 -183.67.0.0/16 4134 -183.68.0.0/14 4134 -183.72.0.0/16 9605 -183.73.0.0/20 9605 -183.73.16.0/21 9605 -183.73.24.0/22 9605 -183.73.28.0/23 9605 -183.73.32.0/19 9605 -183.73.64.0/18 9605 -183.73.128.0/17 9605 -183.74.0.0/21 9605 -183.74.8.0/23 9605 -183.74.12.0/22 9605 -183.74.16.0/20 9605 -183.74.32.0/19 9605 -183.74.64.0/18 9605 -183.74.128.0/17 9605 -183.75.0.0/17 9605 -183.75.230.0/23 9605 -183.76.0.0/15 4685 -183.78.0.0/17 45960 -183.78.128.0/19 4766 -183.78.168.0/22 45785 -183.78.172.0/23 46014 -183.78.174.0/24 46014 -183.78.176.0/24 132499 -183.78.180.0/22 4134 -183.78.184.0/22 46068 -183.78.188.0/22 18283 -183.78.192.0/18 9698 -183.79.0.0/16 24572 -183.80.0.0/16 18403 -183.81.0.0/17 18403 -183.81.128.0/20 38442 -183.81.144.0/21 38835 -183.81.152.0/21 24527 -183.81.160.0/21 45352 -183.81.168.0/22 55342 -183.81.173.0/24 134700 -183.81.174.0/23 134700 -183.81.176.0/22 45680 -183.81.180.0/22 4847 -183.81.184.0/21 38209 -183.81.231.0/24 7473 -183.82.0.0/20 18209 -183.82.16.0/21 24309 -183.82.24.0/21 18209 -183.82.32.0/22 24309 -183.82.36.0/23 24309 -183.82.40.0/21 18209 -183.82.48.0/21 18209 -183.82.56.0/22 18209 -183.82.60.0/23 55577 -183.82.62.0/23 18209 -183.82.64.0/18 18209 -183.82.128.0/20 18209 -183.82.144.0/21 18209 -183.82.192.0/22 18209 -183.82.200.0/22 18209 -183.82.208.0/20 131269 -183.82.224.0/20 131269 -183.82.240.0/21 24309 -183.82.248.0/23 24309 -183.82.250.0/23 131269 -183.82.252.0/22 18209 -183.83.0.0/19 18209 -183.83.32.0/24 55577 -183.83.33.0/24 131269 -183.83.34.0/24 18209 -183.83.36.0/22 55577 -183.83.40.0/21 24309 -183.83.48.0/24 24309 -183.83.52.0/23 24309 -183.83.64.0/19 18209 -183.83.96.0/19 24309 -183.83.128.0/20 55577 -183.83.144.0/22 55577 -183.83.148.0/22 131269 -183.83.152.0/22 24309 -183.83.156.0/22 131269 -183.83.160.0/20 55577 -183.83.176.0/21 18209 -183.83.184.0/21 131269 -183.83.192.0/22 131269 -183.83.196.0/22 18209 -183.83.200.0/21 18209 -183.83.208.0/21 24309 -183.83.216.0/22 55577 -183.83.222.0/23 18209 -183.83.224.0/20 18209 -183.83.240.0/22 131269 -183.83.244.0/22 18209 -183.83.248.0/23 55577 -183.83.250.0/23 18209 -183.83.252.0/22 18209 -183.84.0.0/16 23724 -183.85.0.0/18 23724 -183.85.64.0/20 23724 -183.85.80.0/22 23724 -183.85.84.0/24 4835 -183.85.85.0/24 23724 -183.85.86.0/23 23724 -183.85.88.0/21 23724 -183.85.96.0/19 23724 -183.85.128.0/17 23724 -183.86.0.0/17 10010 -183.86.128.0/18 10010 -183.86.192.0/24 17589 -183.86.193.0/24 55592 -183.86.194.0/23 55592 -183.86.196.0/22 17589 -183.86.200.0/23 17613 -183.86.202.0/24 17613 -183.86.203.0/24 17589 -183.86.204.0/24 55592 -183.86.205.0/24 17589 -183.86.206.0/24 17589 -183.86.208.0/22 55592 -183.86.212.0/23 17589 -183.86.214.0/24 55592 -183.86.216.0/23 55592 -183.86.218.0/24 55592 -183.86.219.0/24 17589 -183.86.220.0/22 17589 -183.86.224.0/21 17589 -183.86.232.0/23 17589 -183.86.234.0/24 17589 -183.86.236.0/22 17589 -183.86.240.0/21 17589 -183.86.248.0/23 17589 -183.86.250.0/24 17589 -183.86.251.0/24 17613 -183.86.252.0/22 17589 -183.87.0.0/21 24554 -183.87.8.0/22 24554 -183.87.12.0/22 132768 -183.87.16.0/20 24554 -183.87.32.0/21 45194 -183.87.40.0/24 45194 -183.87.41.0/24 136334 -183.87.42.0/24 138520 -183.87.43.0/24 136334 -183.87.44.0/24 136334 -183.87.45.0/24 45194 -183.87.46.0/23 45194 -183.87.48.0/22 45194 -183.87.52.0/23 45194 -183.87.54.0/24 45194 -183.87.55.0/24 134937 -183.87.56.0/22 45194 -183.87.60.0/23 45194 -183.87.62.0/24 45194 -183.87.63.0/24 136334 -183.87.64.0/24 134937 -183.87.65.0/24 45194 -183.87.66.0/23 45194 -183.87.68.0/22 45194 -183.87.72.0/21 45194 -183.87.80.0/20 45194 -183.87.96.0/24 45194 -183.87.98.0/23 45194 -183.87.100.0/22 45194 -183.87.104.0/24 45194 -183.87.105.0/24 16625 -183.87.106.0/23 45194 -183.87.108.0/24 136334 -183.87.109.0/24 45194 -183.87.110.0/23 45194 -183.87.112.0/20 45194 -183.87.128.0/20 45194 -183.87.145.0/24 45194 -183.87.146.0/23 45194 -183.87.148.0/23 45194 -183.87.151.0/24 45194 -183.87.152.0/23 45194 -183.87.154.0/24 45194 -183.87.155.0/24 134937 -183.87.156.0/22 45194 -183.87.160.0/19 132220 -183.87.192.0/24 132137 -183.87.193.0/24 132220 -183.87.194.0/23 132220 -183.87.196.0/22 132220 -183.87.200.0/21 132220 -183.87.208.0/22 132220 -183.87.212.0/23 45648 -183.87.214.0/24 45117 -183.87.215.0/24 56315 -183.87.216.0/21 45117 -183.87.224.0/20 24554 -183.87.240.0/21 132137 -183.87.248.0/23 132137 -183.87.250.0/24 45648 -183.87.251.0/24 133001 -183.87.252.0/22 133001 -183.88.0.0/15 45758 -183.90.0.0/19 9874 -183.90.32.0/23 9874 -183.90.34.0/24 9874 -183.90.35.0/24 4657 -183.90.36.0/23 9874 -183.90.38.0/24 9874 -183.90.39.0/24 4657 -183.90.40.0/24 4657 -183.90.41.0/24 55430 -183.90.42.0/23 55430 -183.90.44.0/24 55430 -183.90.45.0/24 38861 -183.90.46.0/23 55430 -183.90.48.0/20 55430 -183.90.64.0/18 55430 -183.90.128.0/19 45365 -183.90.160.0/23 131126 -183.90.162.0/24 131126 -183.90.168.0/21 45328 -183.90.176.0/21 37907 -183.90.184.0/21 133405 -183.90.192.0/22 17661 -183.90.196.0/23 17661 -183.90.199.0/24 17661 -183.90.200.0/21 17661 -183.90.221.0/24 17661 -183.90.222.0/24 17661 -183.90.224.0/19 9371 -183.91.0.0/21 45903 -183.91.8.0/22 45903 -183.91.12.0/23 45903 -183.91.14.0/24 38732 -183.91.15.0/24 45903 -183.91.16.0/20 45903 -183.91.32.0/20 4134 -183.91.48.0/21 4809 -183.91.56.0/24 4134 -183.91.58.0/24 4809 -183.91.60.0/23 4809 -183.91.63.0/24 4809 -183.91.64.0/19 4800 -183.91.96.0/19 18278 -183.91.132.0/22 45170 -183.91.144.0/20 10212 -183.91.176.0/20 131127 -183.91.192.0/18 9976 -183.92.0.0/14 4837 -183.96.0.0/20 4766 -183.96.16.0/22 4766 -183.96.20.0/24 4766 -183.96.21.0/24 9321 -183.96.22.0/23 4766 -183.96.24.0/21 4766 -183.96.32.0/19 4766 -183.96.64.0/18 4766 -183.96.128.0/18 4766 -183.96.192.0/19 4766 -183.96.224.0/22 4766 -183.96.228.0/23 4766 -183.96.230.0/24 4766 -183.96.231.0/24 38663 -183.96.232.0/21 4766 -183.96.240.0/20 4766 -183.97.0.0/16 4766 -183.98.0.0/17 4766 -183.98.128.0/18 4766 -183.98.192.0/19 4766 -183.98.224.0/24 4766 -183.98.225.0/24 9856 -183.98.226.0/23 4766 -183.98.228.0/22 4766 -183.98.232.0/21 4766 -183.98.240.0/20 4766 -183.99.0.0/16 4766 -183.100.0.0/16 4766 -183.101.0.0/18 4766 -183.101.64.0/20 4766 -183.101.80.0/21 4766 -183.101.88.0/22 4766 -183.101.92.0/23 4766 -183.101.94.0/23 38693 -183.101.96.0/19 4766 -183.101.128.0/18 4766 -183.101.192.0/19 4766 -183.101.224.0/22 4766 -183.101.228.0/24 4766 -183.101.229.0/24 38676 -183.101.230.0/23 4766 -183.101.232.0/21 4766 -183.101.240.0/20 4766 -183.102.0.0/20 4766 -183.102.16.0/21 4766 -183.102.24.0/24 4766 -183.102.25.0/24 23556 -183.102.26.0/24 23556 -183.102.27.0/24 4766 -183.102.28.0/22 4766 -183.102.32.0/19 4766 -183.102.64.0/18 4766 -183.102.128.0/17 4766 -183.103.0.0/16 4766 -183.104.0.0/14 4766 -183.108.0.0/18 4766 -183.108.64.0/19 4766 -183.108.96.0/24 55615 -183.108.97.0/24 4766 -183.108.98.0/23 4766 -183.108.100.0/22 4766 -183.108.104.0/21 4766 -183.108.112.0/20 4766 -183.108.128.0/17 4766 -183.109.0.0/20 4766 -183.109.16.0/21 4766 -183.109.24.0/22 4766 -183.109.28.0/24 4766 -183.109.29.0/24 38111 -183.109.30.0/23 4766 -183.109.32.0/19 4766 -183.109.64.0/22 4766 -183.109.68.0/23 4766 -183.109.70.0/24 4766 -183.109.71.0/24 38100 -183.109.72.0/23 4766 -183.109.74.0/24 45987 -183.109.75.0/24 4766 -183.109.76.0/22 4766 -183.109.80.0/20 4766 -183.109.96.0/19 4766 -183.109.128.0/17 4766 -183.110.0.0/19 4766 -183.110.32.0/22 4766 -183.110.36.0/24 55593 -183.110.37.0/24 4766 -183.110.38.0/24 55593 -183.110.39.0/24 4766 -183.110.40.0/24 55593 -183.110.41.0/24 4766 -183.110.42.0/23 4766 -183.110.44.0/22 4766 -183.110.48.0/20 4766 -183.110.64.0/20 4766 -183.110.80.0/23 4766 -183.110.82.0/24 4766 -183.110.83.0/24 55593 -183.110.84.0/24 55593 -183.110.85.0/24 4766 -183.110.86.0/23 4766 -183.110.88.0/22 55593 -183.110.92.0/23 55593 -183.110.94.0/23 4766 -183.110.96.0/19 4766 -183.110.128.0/18 4766 -183.110.192.0/22 4766 -183.110.196.0/23 4766 -183.110.198.0/24 23556 -183.110.199.0/24 4766 -183.110.200.0/21 4766 -183.110.208.0/20 4766 -183.110.224.0/19 4766 -183.111.0.0/18 4766 -183.111.64.0/19 4766 -183.111.96.0/20 4766 -183.111.112.0/21 4766 -183.111.120.0/22 4766 -183.111.124.0/24 38688 -183.111.125.0/24 4766 -183.111.126.0/23 4766 -183.111.128.0/24 4766 -183.111.129.0/24 38688 -183.111.130.0/23 4766 -183.111.132.0/22 4766 -183.111.136.0/21 4766 -183.111.144.0/20 4766 -183.111.160.0/19 4766 -183.111.192.0/19 4766 -183.111.224.0/22 4766 -183.111.228.0/24 38688 -183.111.229.0/24 4766 -183.111.230.0/23 4766 -183.111.232.0/22 4766 -183.111.236.0/23 4766 -183.111.238.0/24 38688 -183.111.239.0/24 4766 -183.111.240.0/20 4766 -183.112.0.0/12 4766 -183.128.0.0/16 4134 -183.129.0.0/17 4134 -183.129.128.0/19 4134 -183.129.160.0/23 58461 -183.129.162.0/23 4134 -183.129.164.0/22 4134 -183.129.168.0/21 4134 -183.129.176.0/23 4134 -183.129.178.0/23 58461 -183.129.180.0/22 4134 -183.129.184.0/21 4134 -183.129.192.0/23 4134 -183.129.194.0/24 58461 -183.129.195.0/24 4134 -183.129.196.0/22 4134 -183.129.200.0/22 4134 -183.129.204.0/24 4134 -183.129.205.0/24 58461 -183.129.206.0/23 58461 -183.129.208.0/20 4134 -183.129.224.0/22 4134 -183.129.228.0/23 58461 -183.129.230.0/23 4134 -183.129.232.0/21 4134 -183.129.240.0/22 4134 -183.129.244.0/23 58461 -183.129.246.0/23 4134 -183.129.248.0/21 4134 -183.130.0.0/16 4134 -183.131.0.0/23 58461 -183.131.2.0/23 4134 -183.131.4.0/24 58461 -183.131.5.0/24 4134 -183.131.6.0/23 58461 -183.131.8.0/24 4134 -183.131.9.0/24 58461 -183.131.10.0/24 58461 -183.131.11.0/24 4134 -183.131.12.0/24 58461 -183.131.13.0/24 4134 -183.131.14.0/24 4134 -183.131.15.0/24 58461 -183.131.16.0/23 4134 -183.131.18.0/24 4134 -183.131.19.0/24 58461 -183.131.20.0/23 4134 -183.131.22.0/24 58461 -183.131.23.0/24 4134 -183.131.24.0/21 4134 -183.131.32.0/19 136188 -183.131.64.0/23 136190 -183.131.66.0/24 136190 -183.131.67.0/24 4134 -183.131.68.0/22 4134 -183.131.72.0/21 136190 -183.131.80.0/21 58461 -183.131.88.0/21 4134 -183.131.96.0/21 4134 -183.131.104.0/23 4134 -183.131.106.0/24 4134 -183.131.107.0/24 58461 -183.131.108.0/22 58461 -183.131.112.0/23 136190 -183.131.114.0/24 4134 -183.131.115.0/24 136190 -183.131.116.0/22 136190 -183.131.120.0/22 4134 -183.131.124.0/24 136190 -183.131.125.0/24 4134 -183.131.126.0/23 4134 -183.131.128.0/21 136188 -183.131.136.0/21 4134 -183.131.144.0/20 136190 -183.131.160.0/24 58461 -183.131.161.0/24 4134 -183.131.162.0/23 4134 -183.131.164.0/22 4134 -183.131.168.0/21 4134 -183.131.176.0/23 4134 -183.131.178.0/23 58461 -183.131.180.0/23 58461 -183.131.182.0/23 4134 -183.131.184.0/24 4134 -183.131.185.0/24 58461 -183.131.186.0/24 4134 -183.131.187.0/24 58461 -183.131.188.0/22 4134 -183.131.192.0/20 136190 -183.131.208.0/24 136190 -183.131.209.0/24 4134 -183.131.210.0/23 136190 -183.131.212.0/23 4134 -183.131.214.0/23 136190 -183.131.216.0/21 58461 -183.131.224.0/20 58461 -183.131.240.0/21 4134 -183.131.248.0/22 4134 -183.131.252.0/22 4809 -183.132.0.0/15 4134 -183.134.0.0/21 4134 -183.134.8.0/21 58461 -183.134.16.0/23 4134 -183.134.18.0/24 4134 -183.134.19.0/24 136190 -183.134.20.0/24 4134 -183.134.21.0/24 136190 -183.134.22.0/24 136190 -183.134.23.0/24 4134 -183.134.24.0/21 136190 -183.134.32.0/22 58461 -183.134.36.0/23 58461 -183.134.38.0/24 58461 -183.134.39.0/24 4134 -183.134.40.0/22 58461 -183.134.44.0/24 58461 -183.134.45.0/24 4134 -183.134.46.0/23 4134 -183.134.48.0/23 4134 -183.134.50.0/24 58461 -183.134.51.0/24 4134 -183.134.52.0/22 58461 -183.134.56.0/21 58461 -183.134.64.0/20 58461 -183.134.80.0/21 4134 -183.134.88.0/21 58461 -183.134.96.0/23 4134 -183.134.98.0/23 58461 -183.134.100.0/23 58461 -183.134.102.0/24 58461 -183.134.103.0/24 4134 -183.134.104.0/23 4134 -183.134.106.0/24 4134 -183.134.107.0/24 58461 -183.134.108.0/22 4134 -183.134.112.0/20 4134 -183.134.128.0/18 4134 -183.134.192.0/20 4134 -183.134.208.0/21 4134 -183.134.216.0/24 4134 -183.134.217.0/24 58461 -183.134.218.0/24 58461 -183.134.219.0/24 4134 -183.134.220.0/22 4134 -183.134.224.0/19 4134 -183.135.0.0/16 4134 -183.136.0.0/17 4134 -183.136.128.0/20 136188 -183.136.144.0/20 4134 -183.136.160.0/19 58461 -183.136.192.0/21 4134 -183.136.200.0/21 136188 -183.136.208.0/22 136190 -183.136.212.0/22 58461 -183.136.216.0/23 58461 -183.136.218.0/23 136190 -183.136.220.0/23 58461 -183.136.222.0/24 4134 -183.136.223.0/24 58461 -183.136.224.0/21 58461 -183.136.232.0/22 136190 -183.136.236.0/23 58461 -183.136.238.0/24 4134 -183.136.239.0/24 58461 -183.136.240.0/20 4134 -183.137.0.0/16 4134 -183.138.0.0/15 4134 -183.140.0.0/14 4134 -183.144.0.0/15 4134 -183.146.0.0/20 4134 -183.146.16.0/22 136190 -183.146.20.0/24 4134 -183.146.21.0/24 136190 -183.146.22.0/24 136190 -183.146.23.0/24 4134 -183.146.24.0/23 136190 -183.146.26.0/24 136190 -183.146.27.0/24 4134 -183.146.28.0/23 136190 -183.146.30.0/23 4134 -183.146.32.0/19 4134 -183.146.64.0/18 4134 -183.146.128.0/18 4134 -183.146.192.0/20 4134 -183.146.208.0/24 136190 -183.146.209.0/24 4134 -183.146.210.0/24 136190 -183.146.211.0/24 4134 -183.146.212.0/24 4134 -183.146.213.0/24 136190 -183.146.214.0/23 136190 -183.146.216.0/21 4134 -183.146.224.0/19 4134 -183.147.0.0/16 4134 -183.148.0.0/14 4134 -183.152.0.0/13 4134 -183.160.0.0/13 4134 -183.168.0.0/15 4538 -183.170.0.0/16 4538 -183.171.0.0/16 10030 -183.172.0.0/14 4538 -183.176.0.0/16 7522 -183.177.0.0/19 17819 -183.177.32.0/21 17819 -183.177.40.0/21 32787 -183.177.48.0/22 23686 -183.177.52.0/22 17819 -183.177.56.0/22 23686 -183.177.60.0/24 23686 -183.177.64.0/22 10229 -183.177.68.0/24 10310 -183.177.70.0/24 7280 -183.177.72.0/23 10229 -183.177.76.0/22 10310 -183.177.80.0/22 10310 -183.177.88.0/23 17457 -183.177.92.0/22 10229 -183.177.96.0/20 58439 -183.177.112.0/21 38325 -183.177.120.0/22 55304 -183.177.124.0/22 55341 -183.177.128.0/17 2519 -183.178.0.0/23 10103 -183.178.2.0/23 9269 -183.178.4.0/22 9269 -183.178.8.0/21 9269 -183.178.16.0/21 9269 -183.178.24.0/21 10103 -183.178.32.0/20 10103 -183.178.48.0/20 9269 -183.178.64.0/23 10103 -183.178.66.0/23 9269 -183.178.68.0/22 10103 -183.178.72.0/21 10103 -183.178.80.0/20 10103 -183.178.96.0/21 9269 -183.178.104.0/21 10103 -183.178.112.0/20 9269 -183.178.128.0/17 9269 -183.179.0.0/16 9269 -183.180.0.0/16 2519 -183.181.0.0/18 10013 -183.181.64.0/21 10013 -183.181.74.0/23 9371 -183.181.76.0/23 9371 -183.181.79.0/24 9371 -183.181.80.0/21 2519 -183.181.88.0/22 2519 -183.181.92.0/24 2519 -183.181.94.0/23 9371 -183.181.96.0/22 9371 -183.181.100.0/23 9371 -183.181.102.0/24 9370 -183.181.103.0/24 10013 -183.181.104.0/21 10013 -183.181.112.0/21 10013 -183.181.120.0/23 10013 -183.181.128.0/23 10013 -183.181.134.0/23 10013 -183.181.136.0/23 10013 -183.181.142.0/23 10013 -183.181.144.0/20 10013 -183.181.160.0/20 10013 -183.181.192.0/18 9374 -183.182.0.0/22 58730 -183.182.10.0/24 8100 -183.182.11.0/24 40676 -183.182.12.0/22 45753 -183.182.18.0/23 40676 -183.182.20.0/23 40676 -183.182.22.0/24 40676 -183.182.26.0/24 9919 -183.182.32.0/19 55899 -183.182.64.0/21 55303 -183.182.72.0/24 21859 -183.182.73.0/24 55303 -183.182.74.0/23 55303 -183.182.76.0/22 55303 -183.182.80.0/22 3257 -183.182.84.0/22 55353 -183.182.88.0/23 45916 -183.182.90.0/24 45916 -183.182.92.0/22 46016 -183.182.96.0/19 131267 -183.182.128.0/17 45684 -183.183.0.0/16 45684 -183.184.0.0/13 4837 -183.192.0.0/17 24400 -183.192.128.0/19 24400 -183.192.160.0/22 9808 -183.192.164.0/22 24400 -183.192.168.0/21 24400 -183.192.176.0/21 24400 -183.192.184.0/22 24400 -183.192.188.0/22 9808 -183.192.192.0/20 9808 -183.192.208.0/20 24400 -183.192.224.0/19 24400 -183.193.0.0/16 24400 -183.194.0.0/17 24400 -183.194.128.0/18 24400 -183.194.192.0/20 24400 -183.194.208.0/23 24400 -183.194.210.0/23 9808 -183.194.212.0/23 9808 -183.194.214.0/23 24400 -183.194.216.0/22 9808 -183.194.220.0/22 24400 -183.194.224.0/19 24400 -183.195.0.0/17 24400 -183.195.128.0/18 24400 -183.195.192.0/19 24400 -183.195.224.0/21 24400 -183.195.232.0/21 9808 -183.195.240.0/20 24400 -183.196.0.0/14 24547 -183.200.0.0/16 56042 -183.201.0.0/17 56042 -183.201.128.0/18 56042 -183.201.192.0/18 132510 -183.202.0.0/16 56042 -183.203.0.0/19 132510 -183.203.32.0/19 56042 -183.203.64.0/18 132510 -183.203.128.0/17 56042 -183.204.0.0/15 24445 -183.206.0.0/15 56046 -183.208.0.0/14 56046 -183.212.0.0/15 56046 -183.214.0.0/15 56047 -183.216.0.0/13 9808 -183.224.0.0/13 9808 -183.232.0.0/13 56040 -183.240.0.0/16 56040 -183.241.0.0/16 56048 -183.242.0.0/15 56048 -183.244.0.0/16 56048 -183.245.0.0/16 56041 -183.246.0.0/15 56041 -183.248.0.0/15 56041 -183.250.0.0/15 9808 -183.252.0.0/14 9808 -184.0.0.0/20 5778 -184.0.16.0/21 209 -184.0.24.0/24 11398 -184.0.25.0/24 209 -184.0.26.0/23 209 -184.0.28.0/23 4283 -184.0.30.0/24 209 -184.0.31.0/24 4283 -184.0.32.0/20 209 -184.0.48.0/22 11398 -184.0.52.0/24 209 -184.0.53.0/24 11398 -184.0.54.0/24 209 -184.0.55.0/24 11398 -184.0.56.0/21 209 -184.0.64.0/20 209 -184.0.80.0/20 4283 -184.0.96.0/22 11398 -184.0.100.0/22 209 -184.0.104.0/21 11398 -184.0.112.0/20 209 -184.0.128.0/20 209 -184.0.144.0/23 5778 -184.0.146.0/24 5778 -184.0.147.0/24 397597 -184.0.148.0/22 5778 -184.0.152.0/23 5778 -184.0.154.0/24 209 -184.0.155.0/24 5778 -184.0.156.0/23 5778 -184.0.158.0/24 5778 -184.0.159.0/24 27549 -184.0.160.0/22 4282 -184.0.164.0/22 209 -184.0.168.0/23 2379 -184.0.170.0/23 209 -184.0.172.0/22 209 -184.0.176.0/21 5778 -184.0.184.0/21 209 -184.0.192.0/24 209 -184.0.193.0/24 18494 -184.0.194.0/23 18494 -184.0.196.0/24 209 -184.0.197.0/24 18494 -184.0.198.0/23 18494 -184.0.200.0/21 18494 -184.0.208.0/20 209 -184.0.224.0/20 4282 -184.0.240.0/20 209 -184.1.0.0/19 209 -184.1.32.0/20 4282 -184.1.48.0/22 2379 -184.1.52.0/24 209 -184.1.53.0/24 2379 -184.1.54.0/23 2379 -184.1.56.0/22 4284 -184.1.60.0/24 209 -184.1.61.0/24 2379 -184.1.62.0/23 2379 -184.1.64.0/21 209 -184.1.72.0/23 209 -184.1.74.0/24 5778 -184.1.75.0/24 209 -184.1.76.0/22 209 -184.1.80.0/20 4284 -184.1.96.0/19 209 -184.1.128.0/19 209 -184.1.160.0/20 4282 -184.1.176.0/21 209 -184.1.184.0/22 209 -184.1.188.0/24 5778 -184.1.189.0/24 209 -184.1.190.0/23 209 -184.1.192.0/20 22561 -184.1.208.0/20 209 -184.1.224.0/20 17402 -184.1.240.0/20 2379 -184.2.0.0/20 209 -184.2.16.0/20 2379 -184.2.32.0/22 5778 -184.2.36.0/23 5778 -184.2.38.0/24 53493 -184.2.39.0/24 5778 -184.2.40.0/24 12202 -184.2.41.0/24 5778 -184.2.42.0/23 5778 -184.2.44.0/23 32186 -184.2.46.0/23 5778 -184.2.48.0/20 5778 -184.2.64.0/18 209 -184.2.128.0/20 14905 -184.2.144.0/20 209 -184.2.160.0/24 11398 -184.2.161.0/24 209 -184.2.162.0/23 11398 -184.2.164.0/22 11398 -184.2.168.0/21 11398 -184.2.176.0/20 5778 -184.2.192.0/20 209 -184.2.208.0/21 209 -184.2.216.0/24 5778 -184.2.217.0/24 209 -184.2.218.0/23 209 -184.2.220.0/22 209 -184.2.224.0/21 13787 -184.2.232.0/23 209 -184.2.234.0/24 209 -184.2.235.0/24 13787 -184.2.236.0/22 13787 -184.2.240.0/21 209 -184.2.248.0/22 5778 -184.2.252.0/23 209 -184.2.254.0/23 5778 -184.3.0.0/23 209 -184.3.2.0/24 209 -184.3.3.0/24 2379 -184.3.4.0/24 2379 -184.3.5.0/24 209 -184.3.6.0/23 209 -184.3.8.0/22 209 -184.3.12.0/24 209 -184.3.13.0/24 2379 -184.3.14.0/23 209 -184.3.16.0/20 209 -184.3.32.0/19 209 -184.3.64.0/18 209 -184.3.128.0/20 209 -184.3.144.0/21 209 -184.3.152.0/24 5778 -184.3.153.0/24 209 -184.3.154.0/23 209 -184.3.156.0/23 209 -184.3.158.0/24 209 -184.3.159.0/24 5778 -184.3.160.0/19 209 -184.3.192.0/18 209 -184.4.0.0/15 209 -184.6.0.0/18 209 -184.6.64.0/19 209 -184.6.96.0/20 209 -184.6.112.0/20 11398 -184.6.128.0/19 209 -184.6.160.0/23 14905 -184.6.162.0/23 209 -184.6.164.0/22 209 -184.6.168.0/24 14905 -184.6.169.0/24 209 -184.6.170.0/24 209 -184.6.171.0/24 14905 -184.6.172.0/22 209 -184.6.176.0/20 209 -184.6.192.0/19 209 -184.6.224.0/20 2379 -184.6.240.0/21 209 -184.6.248.0/23 209 -184.6.250.0/24 209 -184.6.251.0/24 2379 -184.6.252.0/23 2379 -184.6.254.0/24 2379 -184.6.255.0/24 209 -184.7.0.0/20 209 -184.7.16.0/21 5778 -184.7.24.0/22 5778 -184.7.28.0/24 209 -184.7.29.0/24 5778 -184.7.30.0/24 5778 -184.7.31.0/24 209 -184.7.32.0/19 209 -184.7.64.0/20 4283 -184.7.80.0/20 209 -184.7.96.0/19 209 -184.7.128.0/19 4282 -184.7.160.0/20 17402 -184.7.176.0/20 209 -184.7.192.0/24 396851 -184.7.193.0/24 16718 -184.7.194.0/24 209 -184.7.195.0/24 16718 -184.7.196.0/22 16718 -184.7.200.0/22 16718 -184.7.204.0/23 16718 -184.7.206.0/23 396851 -184.7.208.0/23 2379 -184.7.210.0/23 209 -184.7.212.0/23 2379 -184.7.214.0/24 209 -184.7.215.0/24 2379 -184.7.216.0/23 209 -184.7.218.0/23 2379 -184.7.220.0/22 2379 -184.7.224.0/22 2379 -184.7.228.0/22 209 -184.7.232.0/22 4282 -184.7.236.0/23 209 -184.7.238.0/24 2379 -184.7.239.0/24 209 -184.7.240.0/20 209 -184.8.0.0/24 7011 -184.8.1.0/24 5650 -184.8.2.0/23 5650 -184.8.4.0/22 5650 -184.8.8.0/21 5650 -184.8.16.0/20 5650 -184.8.32.0/22 7011 -184.8.36.0/22 5650 -184.8.40.0/22 7011 -184.8.44.0/22 5650 -184.8.48.0/20 7011 -184.8.64.0/18 5650 -184.8.128.0/18 5650 -184.8.192.0/21 5650 -184.8.200.0/22 5650 -184.8.204.0/22 7011 -184.8.208.0/21 7011 -184.8.216.0/21 5650 -184.8.224.0/23 7011 -184.8.226.0/23 5650 -184.8.228.0/22 5650 -184.8.232.0/22 7011 -184.8.236.0/22 5650 -184.8.240.0/21 7011 -184.8.248.0/21 5650 -184.9.0.0/20 5650 -184.9.16.0/21 5650 -184.9.24.0/23 5650 -184.9.26.0/23 30064 -184.9.28.0/22 5650 -184.9.32.0/19 5650 -184.9.64.0/20 5650 -184.9.80.0/20 7011 -184.9.96.0/21 7011 -184.9.104.0/22 7011 -184.9.108.0/22 5650 -184.9.112.0/23 5650 -184.9.114.0/24 5650 -184.9.115.0/24 7011 -184.9.116.0/22 5650 -184.9.120.0/22 5650 -184.9.124.0/24 5650 -184.9.125.0/24 7011 -184.9.126.0/23 5650 -184.9.128.0/20 5650 -184.9.144.0/21 5650 -184.9.152.0/23 5650 -184.9.154.0/23 7011 -184.9.156.0/22 5650 -184.9.160.0/20 5650 -184.9.176.0/20 7011 -184.9.192.0/18 5650 -184.10.0.0/21 5650 -184.10.8.0/24 30064 -184.10.9.0/24 7011 -184.10.10.0/23 30064 -184.10.12.0/22 5650 -184.10.16.0/21 7011 -184.10.24.0/24 5650 -184.10.25.0/24 7011 -184.10.26.0/23 5650 -184.10.28.0/22 5650 -184.10.32.0/21 5650 -184.10.40.0/22 5650 -184.10.44.0/23 5650 -184.10.46.0/24 7011 -184.10.47.0/24 5650 -184.10.48.0/20 5650 -184.10.64.0/20 7011 -184.10.80.0/23 5650 -184.10.82.0/23 7011 -184.10.84.0/22 5650 -184.10.88.0/21 7011 -184.10.96.0/21 5650 -184.10.104.0/22 7011 -184.10.108.0/23 5650 -184.10.110.0/23 3593 -184.10.112.0/24 5650 -184.10.113.0/24 3593 -184.10.114.0/23 5650 -184.10.116.0/22 5650 -184.10.120.0/21 5650 -184.10.128.0/20 5650 -184.10.144.0/21 7011 -184.10.152.0/21 5650 -184.10.160.0/19 5650 -184.10.192.0/19 5650 -184.10.224.0/21 7011 -184.10.232.0/21 5650 -184.10.240.0/20 7011 -184.11.0.0/20 5650 -184.11.16.0/21 5650 -184.11.24.0/22 5650 -184.11.28.0/23 5650 -184.11.30.0/24 5650 -184.11.31.0/24 7011 -184.11.32.0/21 5650 -184.11.40.0/22 7011 -184.11.44.0/22 5650 -184.11.48.0/21 5650 -184.11.56.0/23 5650 -184.11.58.0/23 7011 -184.11.60.0/22 5650 -184.11.64.0/20 5650 -184.11.80.0/21 5650 -184.11.88.0/22 5650 -184.11.92.0/23 7011 -184.11.94.0/23 5650 -184.11.96.0/22 5650 -184.11.100.0/23 5650 -184.11.102.0/23 394241 -184.11.104.0/21 5650 -184.11.112.0/20 5650 -184.11.128.0/17 5650 -184.12.0.0/20 5650 -184.12.16.0/24 5650 -184.12.17.0/24 7011 -184.12.18.0/23 5650 -184.12.20.0/22 5650 -184.12.24.0/21 5650 -184.12.32.0/21 5650 -184.12.40.0/23 7011 -184.12.42.0/23 5650 -184.12.44.0/22 5650 -184.12.48.0/20 7011 -184.12.64.0/20 5650 -184.12.80.0/20 7011 -184.12.96.0/19 5650 -184.12.128.0/22 5650 -184.12.132.0/24 5650 -184.12.133.0/24 7011 -184.12.134.0/23 5650 -184.12.136.0/21 5650 -184.12.144.0/20 5650 -184.12.160.0/19 5650 -184.12.192.0/19 5650 -184.12.224.0/20 7011 -184.12.240.0/21 7011 -184.12.248.0/22 5650 -184.12.252.0/23 5650 -184.12.254.0/24 7011 -184.12.255.0/24 5650 -184.13.0.0/17 5650 -184.13.128.0/18 5650 -184.13.192.0/20 5650 -184.13.208.0/21 7011 -184.13.216.0/22 7011 -184.13.220.0/22 5650 -184.13.224.0/20 7011 -184.13.240.0/20 5650 -184.14.0.0/17 5650 -184.14.128.0/19 5650 -184.14.160.0/21 5650 -184.14.168.0/22 5650 -184.14.172.0/23 5650 -184.14.174.0/23 395645 -184.14.176.0/20 5650 -184.14.192.0/18 5650 -184.15.0.0/16 5650 -184.16.0.0/17 5650 -184.16.128.0/18 5650 -184.16.192.0/19 5650 -184.16.224.0/20 5650 -184.16.240.0/24 5650 -184.16.241.0/24 393323 -184.16.242.0/23 5650 -184.16.244.0/22 5650 -184.16.248.0/21 5650 -184.17.0.0/17 5650 -184.17.128.0/20 5650 -184.17.144.0/21 5650 -184.17.152.0/22 5650 -184.17.156.0/24 16627 -184.17.157.0/24 5650 -184.17.158.0/23 5650 -184.17.160.0/19 5650 -184.17.192.0/18 5650 -184.18.0.0/16 5650 -184.19.0.0/17 5650 -184.19.128.0/18 5650 -184.19.192.0/19 5650 -184.19.224.0/22 7011 -184.19.228.0/22 5650 -184.19.232.0/22 5650 -184.19.236.0/23 5650 -184.19.238.0/24 394668 -184.19.239.0/24 26127 -184.19.240.0/20 5650 -184.20.0.0/15 7155 -184.22.0.0/16 133481 -184.23.0.0/19 46375 -184.23.32.0/19 7065 -184.23.64.0/18 7065 -184.23.128.0/19 7065 -184.23.160.0/22 7065 -184.23.168.0/22 7065 -184.23.176.0/20 7065 -184.23.192.0/18 46375 -184.24.48.0/20 16625 -184.24.80.0/20 6762 -184.24.96.0/24 18680 -184.24.97.0/24 20940 -184.24.98.0/24 20940 -184.24.99.0/24 35994 -184.24.100.0/22 16625 -184.24.104.0/23 16625 -184.24.112.0/20 22773 -184.24.128.0/20 6147 -184.24.144.0/23 577 -184.24.146.0/23 812 -184.24.148.0/23 20940 -184.24.150.0/23 16625 -184.24.152.0/23 9498 -184.24.156.0/22 16625 -184.24.160.0/19 16625 -184.24.192.0/20 20940 -184.24.208.0/20 7545 -184.24.224.0/19 16625 -184.25.0.0/20 9829 -184.25.16.0/20 16625 -184.25.32.0/20 16625 -184.25.50.0/23 7843 -184.25.56.0/23 20940 -184.25.62.0/24 20940 -184.25.64.0/20 812 -184.25.80.0/20 16625 -184.25.96.0/24 20940 -184.25.97.0/24 35994 -184.25.98.0/23 16625 -184.25.100.0/24 20940 -184.25.102.0/24 35994 -184.25.103.0/24 33905 -184.25.104.0/22 3257 -184.25.108.0/24 9829 -184.25.109.0/24 9498 -184.25.112.0/22 16625 -184.25.116.0/23 20940 -184.25.118.0/23 16625 -184.25.120.0/22 16625 -184.25.124.0/22 7843 -184.25.128.0/20 16625 -184.25.144.0/23 20940 -184.25.146.0/23 16625 -184.25.150.0/23 16625 -184.25.152.0/23 3257 -184.25.154.0/23 2914 -184.25.156.0/24 35994 -184.25.157.0/24 20940 -184.25.158.0/23 20940 -184.25.160.0/22 9498 -184.25.176.0/23 16625 -184.25.178.0/24 35994 -184.25.179.0/24 33905 -184.25.180.0/22 7843 -184.25.184.0/21 16625 -184.25.192.0/22 9605 -184.25.196.0/22 16625 -184.25.204.0/24 33652 -184.25.205.0/24 20940 -184.25.206.0/23 33652 -184.25.208.0/21 16625 -184.25.216.0/22 20940 -184.25.220.0/22 16625 -184.25.244.0/22 16625 -184.25.248.0/22 16625 -184.25.252.0/23 16625 -184.25.254.0/23 20940 -184.26.0.0/20 16625 -184.26.16.0/21 16625 -184.26.24.0/22 16625 -184.26.28.0/23 16625 -184.26.32.0/23 7545 -184.26.34.0/23 35994 -184.26.36.0/23 16625 -184.26.38.0/23 9829 -184.26.40.0/22 16625 -184.26.44.0/24 20940 -184.26.45.0/24 24319 -184.26.46.0/23 16625 -184.26.48.0/23 16625 -184.26.52.0/23 20940 -184.26.54.0/24 9498 -184.26.55.0/24 9329 -184.26.56.0/22 16625 -184.26.60.0/23 16625 -184.26.62.0/23 20940 -184.26.64.0/20 16625 -184.26.80.0/22 16625 -184.26.88.0/24 12400 -184.26.89.0/24 35994 -184.26.90.0/23 20940 -184.26.92.0/24 24319 -184.26.95.0/24 20940 -184.26.96.0/22 2914 -184.26.112.0/21 16625 -184.26.120.0/22 3257 -184.26.124.0/22 22773 -184.26.128.0/21 16625 -184.26.136.0/23 20940 -184.26.138.0/24 20940 -184.26.139.0/24 9829 -184.26.142.0/23 20940 -184.26.144.0/24 35204 -184.26.145.0/24 20940 -184.26.146.0/24 35994 -184.26.148.0/22 16625 -184.26.152.0/21 16625 -184.26.160.0/23 21342 -184.26.162.0/24 9498 -184.26.163.0/24 20940 -184.26.164.0/24 4775 -184.26.166.0/23 20940 -184.26.168.0/23 9498 -184.26.170.0/23 16625 -184.26.172.0/22 16625 -184.26.176.0/22 577 -184.26.180.0/22 812 -184.26.184.0/22 9829 -184.26.188.0/22 16625 -184.26.192.0/19 16625 -184.26.224.0/20 16625 -184.26.240.0/20 20940 -184.27.0.0/20 16625 -184.27.16.0/22 20940 -184.27.20.0/23 20940 -184.27.22.0/23 16625 -184.27.24.0/21 16625 -184.27.32.0/22 20940 -184.27.36.0/22 16625 -184.27.40.0/22 16625 -184.27.44.0/23 20940 -184.27.46.0/24 20940 -184.27.48.0/20 9829 -184.27.64.0/20 16625 -184.27.80.0/20 4771 -184.27.96.0/22 7016 -184.27.104.0/23 35994 -184.27.106.0/23 16625 -184.27.108.0/22 16625 -184.27.112.0/22 16625 -184.27.116.0/23 35994 -184.27.118.0/23 20940 -184.27.120.0/23 20940 -184.27.122.0/23 7545 -184.27.124.0/24 7545 -184.27.125.0/24 20940 -184.27.126.0/23 4775 -184.27.128.0/23 8551 -184.27.130.0/23 22773 -184.27.132.0/23 9829 -184.27.136.0/22 16625 -184.27.140.0/23 20940 -184.27.142.0/23 9829 -184.27.144.0/20 16625 -184.27.160.0/20 16625 -184.27.176.0/23 16625 -184.27.178.0/23 20940 -184.27.180.0/22 16625 -184.27.184.0/23 3257 -184.27.188.0/22 16625 -184.27.195.0/24 20940 -184.27.198.0/24 24319 -184.27.199.0/24 20940 -184.27.200.0/23 20940 -184.27.202.0/24 3257 -184.27.203.0/24 18101 -184.27.204.0/24 20940 -184.27.205.0/24 9829 -184.27.206.0/23 20940 -184.27.208.0/23 16625 -184.27.212.0/23 3257 -184.27.216.0/21 16625 -184.27.224.0/20 16625 -184.27.240.0/22 4771 -184.27.244.0/22 7545 -184.27.248.0/22 45629 -184.27.252.0/23 7470 -184.27.254.0/23 45629 -184.28.0.0/22 16625 -184.28.4.0/23 24319 -184.28.6.0/23 20940 -184.28.8.0/23 20940 -184.28.10.0/23 16625 -184.28.12.0/22 20940 -184.28.16.0/24 35994 -184.28.17.0/24 20940 -184.28.18.0/23 16625 -184.28.20.0/23 16625 -184.28.22.0/23 20940 -184.28.24.0/22 16625 -184.28.28.0/23 26769 -184.28.30.0/23 16625 -184.28.32.0/23 16625 -184.28.34.0/23 20940 -184.28.36.0/23 20940 -184.28.38.0/23 16625 -184.28.40.0/23 35994 -184.28.42.0/23 577 -184.28.44.0/22 16625 -184.28.48.0/21 20940 -184.28.56.0/21 16625 -184.28.64.0/23 16625 -184.28.66.0/23 3462 -184.28.70.0/23 16625 -184.28.72.0/24 20940 -184.28.75.0/24 20940 -184.28.76.0/23 20940 -184.28.82.0/23 20940 -184.28.88.0/22 16625 -184.28.92.0/24 21342 -184.28.93.0/24 20940 -184.28.96.0/23 16625 -184.28.100.0/23 20940 -184.28.102.0/23 24319 -184.28.104.0/24 1273 -184.28.105.0/24 20940 -184.28.106.0/23 20940 -184.28.108.0/24 20940 -184.28.110.0/24 20940 -184.28.112.0/23 20940 -184.28.114.0/24 20940 -184.28.115.0/24 35994 -184.28.116.0/24 20940 -184.28.118.0/23 20940 -184.28.120.0/23 20940 -184.28.122.0/23 16625 -184.28.124.0/22 20940 -184.28.128.0/21 20940 -184.28.140.0/23 3257 -184.28.146.0/23 24319 -184.28.148.0/22 16625 -184.28.152.0/22 16625 -184.28.156.0/23 20940 -184.28.158.0/23 16625 -184.28.160.0/22 16625 -184.28.170.0/23 6147 -184.28.172.0/24 35994 -184.28.173.0/24 9498 -184.28.176.0/23 35994 -184.28.178.0/23 6327 -184.28.180.0/22 16625 -184.28.184.0/23 20940 -184.28.186.0/23 3257 -184.28.188.0/22 20940 -184.28.194.0/23 20940 -184.28.196.0/23 1299 -184.28.198.0/23 20940 -184.28.200.0/23 16625 -184.28.202.0/24 24319 -184.28.203.0/24 20940 -184.28.204.0/23 20940 -184.28.206.0/23 16625 -184.28.208.0/24 35994 -184.28.209.0/24 20940 -184.28.210.0/23 16625 -184.28.212.0/23 16625 -184.28.214.0/23 20940 -184.28.216.0/23 16625 -184.28.218.0/23 20940 -184.28.220.0/22 20940 -184.28.224.0/23 20940 -184.28.226.0/23 5511 -184.28.228.0/24 35994 -184.28.229.0/24 20940 -184.28.230.0/23 2914 -184.28.232.0/23 41164 -184.28.234.0/23 20940 -184.28.236.0/23 16625 -184.28.240.0/22 6147 -184.28.246.0/23 16625 -184.28.248.0/23 16625 -184.28.250.0/23 35994 -184.28.252.0/22 16625 -184.29.2.0/23 16625 -184.29.4.0/23 8452 -184.29.6.0/23 16625 -184.29.10.0/23 20940 -184.29.12.0/23 5511 -184.29.14.0/23 20940 -184.29.16.0/23 4651 -184.29.18.0/23 4609 -184.29.20.0/23 20940 -184.29.22.0/23 16625 -184.29.24.0/22 38266 -184.29.28.0/23 16625 -184.29.30.0/23 23700 -184.29.32.0/23 16625 -184.29.34.0/24 18680 -184.29.35.0/24 20940 -184.29.36.0/23 20940 -184.29.38.0/24 3462 -184.29.39.0/24 20940 -184.29.40.0/23 16625 -184.29.42.0/23 20940 -184.29.44.0/22 16625 -184.29.48.0/23 35994 -184.29.50.0/23 42961 -184.29.52.0/23 5511 -184.29.54.0/24 35994 -184.29.55.0/24 20940 -184.29.58.0/23 16625 -184.29.60.0/23 16625 -184.29.64.0/22 16625 -184.29.68.0/23 8781 -184.29.70.0/23 1680 -184.29.72.0/23 9299 -184.29.74.0/23 18101 -184.29.76.0/23 18101 -184.29.78.0/23 16625 -184.29.80.0/23 9329 -184.29.82.0/23 37457 -184.29.88.0/23 4657 -184.29.90.0/23 7470 -184.29.92.0/22 16625 -184.29.96.0/23 4788 -184.29.100.0/23 16625 -184.29.102.0/23 20940 -184.29.104.0/22 16625 -184.29.108.0/23 20940 -184.29.110.0/23 4771 -184.29.112.0/20 577 -184.29.144.0/20 16625 -184.29.160.0/19 16625 -184.29.192.0/20 5511 -184.29.208.0/20 16625 -184.29.224.0/19 15802 -184.30.0.0/19 16625 -184.30.48.0/20 9498 -184.30.64.0/18 16625 -184.30.128.0/20 16625 -184.30.144.0/20 2514 -184.30.160.0/19 16625 -184.30.192.0/20 16625 -184.30.208.0/20 20940 -184.30.224.0/20 2914 -184.30.240.0/20 16625 -184.31.0.0/23 20940 -184.31.2.0/24 35994 -184.31.3.0/24 33905 -184.31.8.0/23 20940 -184.31.10.0/24 33905 -184.31.11.0/24 35994 -184.31.14.0/23 5511 -184.31.32.0/19 16625 -184.31.80.0/20 20940 -184.31.96.0/19 16625 -184.31.128.0/19 16625 -184.31.160.0/19 2914 -184.31.192.0/20 16625 -184.31.208.0/20 9498 -184.31.224.0/20 1299 -184.48.0.0/15 14654 -184.50.16.0/22 16625 -184.50.24.0/24 35994 -184.50.25.0/24 24319 -184.50.26.0/23 20940 -184.50.28.0/23 45430 -184.50.30.0/23 34164 -184.50.32.0/19 16625 -184.50.64.0/20 23700 -184.50.80.0/22 20940 -184.50.84.0/24 24319 -184.50.85.0/24 20940 -184.50.86.0/23 20940 -184.50.88.0/22 20940 -184.50.92.0/23 20940 -184.50.94.0/24 35994 -184.50.95.0/24 6762 -184.50.96.0/20 16625 -184.50.160.0/19 16625 -184.50.192.0/20 20940 -184.50.208.0/20 16625 -184.50.224.0/22 35994 -184.50.228.0/23 20940 -184.50.230.0/23 35994 -184.50.232.0/23 20940 -184.50.234.0/24 20940 -184.50.236.0/24 35994 -184.50.237.0/24 20940 -184.50.238.0/23 20940 -184.50.240.0/20 16625 -184.51.0.0/22 20940 -184.51.5.0/24 18101 -184.51.6.0/24 18101 -184.51.7.0/24 20940 -184.51.8.0/22 16625 -184.51.13.0/24 20940 -184.51.14.0/23 20940 -184.51.16.0/22 16625 -184.51.20.0/22 20940 -184.51.24.0/22 9498 -184.51.28.0/22 20940 -184.51.32.0/24 4788 -184.51.33.0/24 12222 -184.51.34.0/23 20940 -184.51.36.0/22 20940 -184.51.40.0/24 20940 -184.51.41.0/24 24319 -184.51.43.0/24 35994 -184.51.44.0/22 4651 -184.51.48.0/21 16625 -184.51.56.0/23 16625 -184.51.58.0/23 20940 -184.51.60.0/23 9829 -184.51.62.0/23 35994 -184.51.64.0/22 9829 -184.51.68.0/22 16625 -184.51.72.0/22 16625 -184.51.76.0/22 20940 -184.51.80.0/22 33651 -184.51.88.0/22 16625 -184.51.92.0/22 9829 -184.51.96.0/22 16625 -184.51.100.0/23 20940 -184.51.102.0/24 20940 -184.51.104.0/22 3257 -184.51.108.0/24 20940 -184.51.109.0/24 24319 -184.51.110.0/24 35994 -184.51.111.0/24 20940 -184.51.112.0/22 20940 -184.51.116.0/22 23700 -184.51.120.0/24 20940 -184.51.121.0/24 3257 -184.51.122.0/23 16625 -184.51.125.0/24 12222 -184.51.126.0/23 20940 -184.51.128.0/23 16625 -184.51.130.0/23 20940 -184.51.140.0/22 16625 -184.51.144.0/21 20940 -184.51.152.0/24 9924 -184.51.154.0/24 12222 -184.51.155.0/24 20940 -184.51.156.0/24 20940 -184.51.157.0/24 12222 -184.51.158.0/24 9829 -184.51.159.0/24 35994 -184.51.176.0/20 2914 -184.51.192.0/22 16625 -184.51.196.0/22 20940 -184.51.201.0/24 35994 -184.51.203.0/24 35994 -184.51.204.0/23 16625 -184.51.206.0/24 20940 -184.51.208.0/20 16625 -184.51.244.0/22 42961 -184.51.252.0/23 16625 -184.51.254.0/23 34164 -184.52.0.0/16 6621 -184.53.0.0/18 6621 -184.53.192.0/24 6621 -184.53.218.0/23 6621 -184.53.220.0/22 6621 -184.53.230.0/24 6621 -184.53.239.0/24 6621 -184.53.242.0/23 6621 -184.53.244.0/24 6621 -184.53.248.0/21 6621 -184.54.0.0/15 10796 -184.56.0.0/14 10796 -184.60.0.0/18 4181 -184.60.64.0/22 4181 -184.60.68.0/24 4181 -184.60.69.0/24 63069 -184.60.70.0/24 63069 -184.60.71.0/24 4181 -184.60.72.0/21 4181 -184.60.80.0/20 4181 -184.60.96.0/19 4181 -184.60.128.0/18 4181 -184.60.192.0/20 4181 -184.60.208.0/21 4181 -184.60.216.0/24 53931 -184.60.217.0/24 4181 -184.60.218.0/23 4181 -184.60.220.0/23 4181 -184.60.222.0/24 4181 -184.60.223.0/24 55083 -184.60.224.0/19 4181 -184.61.0.0/20 4181 -184.61.16.0/21 4181 -184.61.24.0/23 4181 -184.61.26.0/24 40710 -184.61.27.0/24 4181 -184.61.28.0/22 4181 -184.61.32.0/19 4181 -184.61.64.0/18 4181 -184.61.128.0/17 4181 -184.62.0.0/16 7155 -184.63.0.0/17 7155 -184.63.128.0/24 7155 -184.63.129.0/24 16491 -184.63.130.0/23 7155 -184.63.132.0/22 7155 -184.63.136.0/21 7155 -184.63.144.0/20 7155 -184.63.160.0/19 7155 -184.63.192.0/18 7155 -184.64.0.0/13 6327 -184.72.0.0/18 16509 -184.72.64.0/18 14618 -184.72.128.0/17 14618 -184.73.0.0/16 14618 -184.74.0.0/18 11351 -184.74.64.0/21 11351 -184.74.72.0/24 63243 -184.74.73.0/24 11351 -184.74.74.0/23 11351 -184.74.76.0/22 11351 -184.74.80.0/20 11351 -184.74.96.0/20 11351 -184.74.112.0/21 11351 -184.74.120.0/23 11351 -184.74.122.0/24 11351 -184.74.123.0/24 396327 -184.74.124.0/22 11351 -184.74.128.0/18 12271 -184.74.192.0/19 12271 -184.74.224.0/20 12271 -184.74.240.0/21 12271 -184.74.248.0/23 12271 -184.74.250.0/24 12271 -184.74.251.0/24 32474 -184.74.252.0/22 12271 -184.75.0.0/18 12271 -184.75.64.0/19 12271 -184.75.96.0/20 12271 -184.75.112.0/21 12271 -184.75.120.0/22 12271 -184.75.124.0/23 54157 -184.75.126.0/23 12271 -184.75.128.0/20 11290 -184.75.144.0/20 22379 -184.75.176.0/20 35908 -184.75.192.0/24 33426 -184.75.193.0/24 21755 -184.75.194.0/24 32082 -184.75.195.0/24 21755 -184.75.196.0/22 11074 -184.75.200.0/24 11074 -184.75.201.0/24 26897 -184.75.202.0/23 11074 -184.75.204.0/24 13592 -184.75.208.0/21 32489 -184.75.216.0/24 32489 -184.75.219.0/24 32489 -184.75.220.0/22 32489 -184.75.224.0/20 22709 -184.75.240.0/21 6939 -184.75.248.0/21 13354 -184.80.0.0/17 7029 -184.80.128.0/18 7029 -184.80.192.0/24 7029 -184.80.193.0/24 40857 -184.80.194.0/23 7029 -184.80.196.0/22 7029 -184.80.200.0/21 7029 -184.80.208.0/20 7029 -184.80.224.0/19 7029 -184.81.0.0/19 7029 -184.81.32.0/23 7029 -184.81.34.0/24 46883 -184.81.35.0/24 7029 -184.81.36.0/22 7029 -184.81.40.0/21 7029 -184.81.48.0/20 7029 -184.81.64.0/18 7029 -184.81.128.0/17 7029 -184.82.0.0/17 133481 -184.82.128.0/22 45458 -184.82.132.0/24 135617 -184.82.133.0/24 45458 -184.82.134.0/24 45430 -184.82.135.0/24 45458 -184.82.136.0/21 133481 -184.82.144.0/20 133481 -184.82.160.0/19 133481 -184.82.192.0/18 133481 -184.83.0.0/16 11232 -184.84.0.0/20 16625 -184.84.16.0/20 8966 -184.84.32.0/20 577 -184.84.48.0/20 20940 -184.84.64.0/20 16625 -184.84.80.0/20 20940 -184.84.96.0/20 9498 -184.84.112.0/20 20940 -184.84.128.0/20 16625 -184.84.144.0/22 16625 -184.84.148.0/23 16625 -184.84.150.0/24 20940 -184.84.151.0/24 35994 -184.84.152.0/22 3257 -184.84.160.0/22 133612 -184.84.164.0/24 7838 -184.84.165.0/24 20940 -184.84.166.0/24 8966 -184.84.167.0/24 9829 -184.84.168.0/22 16625 -184.84.172.0/22 20940 -184.84.176.0/24 55836 -184.84.178.0/23 20940 -184.84.180.0/22 16625 -184.84.184.0/22 577 -184.84.188.0/22 9299 -184.84.192.0/21 16625 -184.84.200.0/22 9498 -184.84.204.0/22 9269 -184.84.208.0/24 4788 -184.84.209.0/24 24319 -184.84.210.0/23 20940 -184.84.212.0/22 13367 -184.84.217.0/24 20940 -184.84.220.0/24 20940 -184.84.221.0/24 55836 -184.84.222.0/23 16625 -184.84.224.0/21 16625 -184.84.232.0/23 55836 -184.84.234.0/23 16625 -184.84.236.0/23 3257 -184.84.238.0/23 20940 -184.84.242.0/23 20940 -184.84.244.0/24 20214 -184.84.245.0/24 20940 -184.84.247.0/24 35994 -184.84.248.0/24 55836 -184.84.249.0/24 20940 -184.84.250.0/23 45629 -184.84.252.0/23 133612 -184.85.0.0/18 16625 -184.85.64.0/20 16625 -184.85.80.0/20 20940 -184.85.96.0/20 5511 -184.85.112.0/20 20940 -184.85.128.0/20 16625 -184.85.176.0/20 20940 -184.85.192.0/20 33652 -184.85.208.0/24 20940 -184.85.209.0/24 7838 -184.85.210.0/23 20940 -184.85.212.0/24 20940 -184.85.213.0/24 7838 -184.85.214.0/24 7838 -184.85.215.0/24 35994 -184.85.216.0/24 20940 -184.85.217.0/24 35994 -184.85.218.0/24 9299 -184.85.219.0/24 20940 -184.85.220.0/24 55836 -184.85.222.0/24 7470 -184.85.223.0/24 20940 -184.85.224.0/22 5511 -184.85.228.0/22 16625 -184.85.232.0/23 9498 -184.85.234.0/23 3786 -184.85.236.0/22 16625 -184.85.240.0/23 9534 -184.85.242.0/23 3303 -184.85.248.0/24 21342 -184.85.249.0/24 20940 -184.85.250.0/24 20940 -184.85.251.0/24 34164 -184.85.252.0/24 35994 -184.85.253.0/24 20940 -184.86.0.0/20 16625 -184.86.32.0/19 16625 -184.86.64.0/20 16625 -184.86.80.0/22 3303 -184.86.84.0/22 3257 -184.86.88.0/22 20940 -184.86.100.0/23 20940 -184.86.104.0/21 16625 -184.86.112.0/23 7843 -184.86.114.0/23 16625 -184.86.116.0/22 8529 -184.86.128.0/19 16625 -184.86.160.0/20 16625 -184.86.192.0/20 16625 -184.86.208.0/23 16625 -184.86.210.0/23 3257 -184.86.212.0/22 3257 -184.86.220.0/24 20940 -184.86.221.0/24 35994 -184.86.222.0/24 4637 -184.86.223.0/24 20940 -184.86.224.0/22 16625 -184.86.232.0/22 3462 -184.86.236.0/22 20940 -184.86.240.0/21 20940 -184.86.248.0/24 55836 -184.86.249.0/24 35994 -184.86.250.0/24 20940 -184.86.252.0/22 16625 -184.87.0.0/20 3257 -184.87.16.0/20 8529 -184.87.32.0/20 4771 -184.87.48.0/20 16625 -184.87.64.0/19 16625 -184.87.96.0/20 9269 -184.87.112.0/20 16625 -184.87.128.0/22 4775 -184.87.132.0/22 16625 -184.87.136.0/22 16625 -184.87.140.0/22 20940 -184.87.168.0/24 20940 -184.87.169.0/24 35994 -184.87.170.0/23 2514 -184.87.172.0/22 20940 -184.87.176.0/20 16625 -184.87.192.0/23 13367 -184.87.194.0/23 20940 -184.87.196.0/23 16625 -184.87.198.0/23 9269 -184.87.200.0/22 2514 -184.87.204.0/23 4775 -184.87.206.0/23 16625 -184.87.208.0/23 8529 -184.87.210.0/23 20940 -184.87.216.0/21 16625 -184.87.224.0/20 16625 -184.87.240.0/20 4775 -184.88.0.0/14 33363 -184.94.0.0/18 15290 -184.94.64.0/19 15290 -184.94.96.0/21 15290 -184.94.104.0/22 15290 -184.94.108.0/23 15290 -184.94.110.0/24 15290 -184.94.111.0/24 40934 -184.94.112.0/23 40934 -184.94.114.0/24 40934 -184.94.115.0/24 15290 -184.94.116.0/22 15290 -184.94.120.0/21 15290 -184.94.128.0/21 20115 -184.94.136.0/22 22223 -184.94.140.0/22 20115 -184.94.144.0/20 27589 -184.94.160.0/20 36305 -184.94.176.0/20 25914 -184.94.192.0/24 33522 -184.94.196.0/22 33522 -184.94.202.0/23 33522 -184.94.204.0/22 33522 -184.94.208.0/22 394896 -184.94.214.0/23 19271 -184.94.216.0/24 19271 -184.94.217.0/24 394896 -184.94.218.0/23 394896 -184.94.220.0/24 10913 -184.94.224.0/20 46692 -184.94.240.0/23 16417 -184.94.248.0/22 16417 -184.94.254.0/24 16417 -184.94.255.0/24 30238 -184.95.0.0/21 23550 -184.95.8.0/22 23550 -184.95.12.0/24 27435 -184.95.13.0/24 23550 -184.95.16.0/20 39970 -184.95.32.0/19 20454 -184.95.64.0/18 3663 -184.95.128.0/18 7029 -184.95.192.0/22 30466 -184.95.196.0/23 30466 -184.95.198.0/23 5769 -184.95.200.0/21 5769 -184.95.208.0/20 5769 -184.95.224.0/20 22652 -184.95.240.0/21 22652 -184.95.248.0/22 22652 -184.95.252.0/23 22652 -184.95.254.0/24 397474 -184.95.255.0/24 22652 -184.96.0.0/13 209 -184.104.0.0/16 6939 -184.105.0.0/24 395100 -184.105.1.0/24 397137 -184.105.2.0/24 63186 -184.105.3.0/24 394996 -184.105.4.0/23 394996 -184.105.6.0/24 394996 -184.105.7.0/24 6939 -184.105.8.0/21 6939 -184.105.16.0/21 6939 -184.105.24.0/22 6939 -184.105.28.0/23 22890 -184.105.30.0/24 6939 -184.105.31.0/24 393737 -184.105.32.0/21 6939 -184.105.40.0/23 6939 -184.105.42.0/24 395007 -184.105.43.0/24 394330 -184.105.44.0/23 6939 -184.105.46.0/24 6939 -184.105.47.0/24 26123 -184.105.48.0/24 6939 -184.105.49.0/24 394330 -184.105.50.0/24 394330 -184.105.51.0/24 6939 -184.105.52.0/22 6939 -184.105.56.0/21 6939 -184.105.64.0/21 6939 -184.105.72.0/23 6939 -184.105.74.0/24 6939 -184.105.75.0/24 22893 -184.105.76.0/23 6939 -184.105.78.0/24 394996 -184.105.79.0/24 6939 -184.105.80.0/22 6939 -184.105.84.0/24 394996 -184.105.85.0/24 6939 -184.105.86.0/23 394996 -184.105.88.0/23 6939 -184.105.90.0/24 396841 -184.105.91.0/24 6939 -184.105.92.0/22 6939 -184.105.96.0/23 6939 -184.105.98.0/23 394996 -184.105.100.0/22 6939 -184.105.104.0/22 394996 -184.105.108.0/23 6939 -184.105.110.0/24 6939 -184.105.111.0/24 394740 -184.105.112.0/23 6939 -184.105.114.0/24 394996 -184.105.115.0/24 6939 -184.105.116.0/22 394996 -184.105.120.0/24 14979 -184.105.121.0/24 397088 -184.105.122.0/24 14979 -184.105.123.0/24 11734 -184.105.124.0/24 63141 -184.105.125.0/24 394996 -184.105.126.0/24 394996 -184.105.127.0/24 6939 -184.105.128.0/21 6939 -184.105.136.0/24 394996 -184.105.137.0/24 6939 -184.105.138.0/23 6939 -184.105.140.0/24 6939 -184.105.141.0/24 394996 -184.105.142.0/23 6939 -184.105.144.0/24 6939 -184.105.145.0/24 26077 -184.105.146.0/24 6939 -184.105.147.0/24 36111 -184.105.148.0/22 6939 -184.105.152.0/23 6939 -184.105.154.0/24 6939 -184.105.155.0/24 394996 -184.105.156.0/24 54288 -184.105.157.0/24 394996 -184.105.158.0/23 54288 -184.105.160.0/24 54288 -184.105.161.0/24 394996 -184.105.162.0/23 6939 -184.105.164.0/23 6939 -184.105.166.0/24 394996 -184.105.167.0/24 6939 -184.105.168.0/24 6939 -184.105.169.0/24 394996 -184.105.170.0/23 54288 -184.105.172.0/24 394996 -184.105.173.0/24 6939 -184.105.174.0/23 394996 -184.105.176.0/24 394996 -184.105.177.0/24 6939 -184.105.178.0/23 6939 -184.105.180.0/23 394996 -184.105.182.0/23 6939 -184.105.184.0/24 6939 -184.105.185.0/24 394996 -184.105.186.0/23 6939 -184.105.188.0/22 394996 -184.105.192.0/22 6939 -184.105.196.0/23 6939 -184.105.198.0/23 396026 -184.105.200.0/22 6939 -184.105.204.0/23 6939 -184.105.206.0/24 6939 -184.105.207.0/24 13415 -184.105.208.0/24 394996 -184.105.209.0/24 6939 -184.105.210.0/23 6939 -184.105.212.0/23 6939 -184.105.214.0/24 6939 -184.105.215.0/24 394996 -184.105.216.0/23 394996 -184.105.218.0/24 46841 -184.105.219.0/24 18978 -184.105.220.0/23 46841 -184.105.222.0/23 6939 -184.105.224.0/24 6939 -184.105.225.0/24 394996 -184.105.226.0/24 6939 -184.105.227.0/24 394996 -184.105.228.0/22 6939 -184.105.232.0/22 6939 -184.105.236.0/23 6939 -184.105.238.0/23 394996 -184.105.240.0/22 6939 -184.105.244.0/24 395478 -184.105.245.0/24 6939 -184.105.246.0/23 6939 -184.105.248.0/24 63343 -184.105.249.0/24 6939 -184.105.250.0/23 6939 -184.105.252.0/24 15188 -184.105.253.0/24 6939 -184.105.254.0/24 23250 -184.105.255.0/24 6939 -184.106.0.0/19 19994 -184.106.32.0/20 19994 -184.106.48.0/22 19994 -184.106.52.0/23 19994 -184.106.54.0/24 19994 -184.106.55.0/24 32244 -184.106.56.0/21 19994 -184.106.64.0/18 19994 -184.106.128.0/17 19994 -184.107.0.0/16 32613 -184.108.0.0/14 7922 -184.112.0.0/12 7922 -184.144.0.0/14 577 -184.148.0.0/15 577 -184.150.0.0/18 577 -184.150.64.0/22 577 -184.150.68.0/24 36522 -184.150.69.0/24 577 -184.150.70.0/23 577 -184.150.72.0/21 577 -184.150.80.0/21 577 -184.150.88.0/22 577 -184.150.92.0/24 36522 -184.150.93.0/24 577 -184.150.94.0/23 577 -184.150.96.0/21 577 -184.150.104.0/22 577 -184.150.108.0/23 577 -184.150.110.0/23 3848 -184.150.128.0/18 577 -184.150.192.0/22 577 -184.150.196.0/23 577 -184.150.198.0/24 3848 -184.150.199.0/24 577 -184.150.200.0/22 577 -184.150.208.0/21 577 -184.150.216.0/22 577 -184.150.220.0/23 603 -184.150.222.0/23 577 -184.150.224.0/22 603 -184.150.228.0/23 603 -184.150.230.0/24 577 -184.150.231.0/24 603 -184.150.232.0/21 603 -184.150.240.0/20 603 -184.151.0.0/18 36522 -184.151.64.0/20 36522 -184.151.80.0/22 36522 -184.151.84.0/22 577 -184.151.88.0/21 577 -184.151.96.0/21 577 -184.151.104.0/22 577 -184.151.108.0/23 577 -184.151.110.0/24 577 -184.151.111.0/24 36522 -184.151.112.0/22 36522 -184.151.116.0/23 36522 -184.151.118.0/24 577 -184.151.119.0/24 36522 -184.151.120.0/21 36522 -184.151.128.0/18 36522 -184.151.192.0/21 36522 -184.151.200.0/23 36522 -184.151.202.0/23 577 -184.151.204.0/23 36522 -184.151.206.0/23 577 -184.151.208.0/22 36522 -184.151.212.0/22 577 -184.151.216.0/21 36522 -184.151.224.0/20 36522 -184.151.240.0/21 36522 -184.151.248.0/22 577 -184.151.252.0/22 36522 -184.152.0.0/16 12271 -184.153.0.0/17 12271 -184.153.128.0/17 11351 -184.154.0.0/16 32475 -184.155.0.0/18 11492 -184.155.64.0/19 11492 -184.155.96.0/21 11492 -184.155.112.0/20 11492 -184.155.128.0/19 11492 -184.155.168.0/21 11492 -184.155.192.0/18 11492 -184.156.0.0/21 22561 -184.156.8.0/21 209 -184.156.16.0/21 22561 -184.156.24.0/21 209 -184.156.32.0/20 209 -184.156.48.0/21 209 -184.156.56.0/21 22561 -184.156.64.0/19 22561 -184.156.96.0/20 209 -184.156.112.0/20 22561 -184.156.128.0/20 22561 -184.156.144.0/20 209 -184.156.160.0/19 22561 -184.156.192.0/20 209 -184.156.208.0/20 22561 -184.156.224.0/19 22561 -184.157.0.0/19 209 -184.157.32.0/20 209 -184.157.48.0/20 22561 -184.157.64.0/20 22561 -184.157.80.0/20 209 -184.157.96.0/19 22561 -184.157.128.0/18 22561 -184.157.192.0/19 22561 -184.157.224.0/20 22561 -184.157.240.0/21 209 -184.157.248.0/22 209 -184.157.252.0/22 22561 -184.158.0.0/19 22561 -184.158.32.0/19 209 -184.158.64.0/19 209 -184.158.96.0/22 209 -184.158.100.0/23 209 -184.158.102.0/23 22561 -184.158.104.0/21 22561 -184.158.112.0/20 22561 -184.158.128.0/18 22561 -184.158.192.0/18 209 -184.159.0.0/18 22561 -184.159.64.0/20 22561 -184.159.80.0/24 209 -184.159.81.0/24 22561 -184.159.82.0/23 22561 -184.159.84.0/22 22561 -184.159.88.0/21 22561 -184.159.96.0/21 22561 -184.159.104.0/22 22561 -184.159.108.0/23 22561 -184.159.110.0/23 209 -184.159.112.0/20 22561 -184.159.128.0/23 22561 -184.159.130.0/23 209 -184.159.132.0/22 22561 -184.159.136.0/21 22561 -184.159.144.0/20 22561 -184.159.160.0/19 22561 -184.159.192.0/20 22561 -184.159.208.0/21 22561 -184.159.216.0/24 209 -184.159.217.0/24 22561 -184.159.218.0/23 22561 -184.159.220.0/22 22561 -184.159.224.0/21 22561 -184.159.232.0/21 209 -184.159.240.0/20 22561 -184.160.0.0/14 5769 -184.164.0.0/18 36493 -184.164.64.0/19 53755 -184.164.96.0/21 10835 -184.164.104.0/22 10835 -184.164.108.0/23 10835 -184.164.110.0/24 53983 -184.164.111.0/24 10835 -184.164.112.0/21 10835 -184.164.120.0/22 10835 -184.164.124.0/23 10835 -184.164.126.0/23 393436 -184.164.128.0/19 20454 -184.164.160.0/19 11776 -184.164.192.0/19 35908 -184.164.235.0/24 47065 -184.164.238.0/24 47065 -184.164.246.0/24 47065 -184.164.250.0/23 47065 -184.164.252.0/23 47065 -184.164.254.0/24 47065 -184.165.0.0/21 10310 -184.165.8.0/24 10310 -184.165.9.0/24 14778 -184.165.10.0/24 14778 -184.165.11.0/24 10310 -184.165.12.0/22 10310 -184.165.16.0/20 10310 -184.166.0.0/15 33588 -184.168.0.0/16 26496 -184.169.0.0/19 6621 -184.169.32.0/21 6621 -184.169.40.0/22 6621 -184.169.44.0/24 33284 -184.169.45.0/24 32806 -184.169.46.0/23 6621 -184.169.48.0/20 21804 -184.169.96.0/19 11232 -184.169.128.0/17 16509 -184.170.0.0/18 33576 -184.170.64.0/18 4922 -184.170.128.0/21 10929 -184.170.136.0/24 10929 -184.170.137.0/24 19202 -184.170.138.0/23 10929 -184.170.140.0/22 10929 -184.170.144.0/23 17252 -184.170.146.0/23 25653 -184.170.148.0/24 36352 -184.170.149.0/24 17252 -184.170.150.0/23 17252 -184.170.152.0/21 17252 -184.170.160.0/20 30600 -184.170.176.0/20 19218 -184.170.192.0/20 21719 -184.170.208.0/20 25820 -184.170.224.0/20 46160 -184.170.240.0/20 46562 -184.171.0.0/17 3582 -184.171.128.0/23 19435 -184.171.130.0/24 19435 -184.171.133.0/24 14430 -184.171.134.0/23 14430 -184.171.136.0/24 19435 -184.171.137.0/24 14430 -184.171.138.0/23 14430 -184.171.140.0/24 19435 -184.171.141.0/24 14430 -184.171.142.0/24 14430 -184.171.144.0/20 63276 -184.171.160.0/20 20454 -184.171.176.0/20 21795 -184.171.192.0/20 47027 -184.171.208.0/20 40788 -184.171.224.0/20 32883 -184.171.240.0/20 33182 -184.172.0.0/15 36351 -184.174.0.0/23 46261 -184.174.2.0/24 19437 -184.174.3.0/24 46261 -184.174.4.0/22 46261 -184.174.8.0/21 21769 -184.174.16.0/24 21769 -184.174.17.0/24 46261 -184.174.18.0/23 46261 -184.174.20.0/22 46261 -184.174.24.0/21 46261 -184.174.32.0/21 46261 -184.174.40.0/22 21769 -184.174.44.0/24 9009 -184.174.45.0/24 21769 -184.174.46.0/24 9009 -184.174.47.0/24 42831 -184.174.48.0/22 9009 -184.174.52.0/23 9009 -184.174.54.0/23 21769 -184.174.56.0/22 49335 -184.174.60.0/22 9009 -184.174.64.0/24 46261 -184.174.65.0/24 21769 -184.174.66.0/23 21769 -184.174.68.0/24 60558 -184.174.69.0/24 9009 -184.174.70.0/23 9009 -184.174.72.0/22 21769 -184.174.76.0/22 42831 -184.174.80.0/23 21769 -184.174.82.0/24 21769 -184.174.83.0/24 9009 -184.174.84.0/22 21769 -184.174.88.0/23 21769 -184.174.90.0/24 46261 -184.174.91.0/24 21769 -184.174.92.0/24 46261 -184.174.93.0/24 21769 -184.174.94.0/24 60558 -184.174.95.0/24 9009 -184.174.96.0/24 55803 -184.174.97.0/24 9009 -184.174.98.0/23 262287 -184.174.100.0/23 262287 -184.174.102.0/23 21769 -184.174.104.0/23 54103 -184.174.106.0/24 21769 -184.174.107.0/24 54103 -184.174.108.0/23 54103 -184.174.110.0/24 54103 -184.174.111.0/24 21769 -184.174.112.0/23 21769 -184.174.114.0/23 23470 -184.174.116.0/23 21769 -184.174.118.0/23 9009 -184.174.120.0/24 46261 -184.174.121.0/24 21769 -184.174.122.0/24 9009 -184.174.123.0/24 8038 -184.174.124.0/24 46261 -184.174.125.0/24 21769 -184.174.126.0/24 21769 -184.174.127.0/24 9009 -184.174.128.0/18 26827 -184.174.192.0/18 1970 -184.175.0.0/18 5645 -184.175.64.0/18 7393 -184.175.128.0/23 26554 -184.175.130.0/24 26554 -184.175.131.0/24 395352 -184.175.132.0/22 26554 -184.175.136.0/21 26554 -184.175.144.0/22 26554 -184.175.148.0/24 26554 -184.175.149.0/24 19224 -184.175.150.0/23 26554 -184.175.152.0/21 26554 -184.175.160.0/20 26554 -184.175.176.0/22 26554 -184.175.180.0/23 26554 -184.175.182.0/24 29833 -184.175.183.0/24 26554 -184.175.184.0/21 26554 -184.175.192.0/21 19531 -184.175.200.0/22 43755 -184.175.204.0/22 19531 -184.175.208.0/20 19531 -184.175.224.0/19 19531 -184.176.0.0/24 22773 -184.176.1.0/24 54385 -184.176.2.0/23 22773 -184.176.4.0/22 22773 -184.176.8.0/21 22773 -184.176.16.0/20 22773 -184.176.32.0/19 22773 -184.176.64.0/18 22773 -184.176.128.0/17 22773 -184.177.0.0/17 22773 -184.177.128.0/19 22773 -184.177.160.0/20 22773 -184.177.176.0/21 22773 -184.177.184.0/23 22773 -184.177.186.0/24 22773 -184.177.187.0/24 53881 -184.177.188.0/23 22773 -184.177.190.0/24 30523 -184.177.191.0/24 22773 -184.177.192.0/18 22773 -184.178.0.0/20 22773 -184.178.16.0/22 22773 -184.178.20.0/23 22773 -184.178.22.0/24 54908 -184.178.23.0/24 22773 -184.178.24.0/21 22773 -184.178.32.0/20 22773 -184.178.48.0/22 22773 -184.178.52.0/22 22184 -184.178.56.0/21 22773 -184.178.64.0/18 22773 -184.178.128.0/18 22773 -184.178.192.0/20 22773 -184.178.208.0/22 22773 -184.178.212.0/24 22773 -184.178.213.0/24 54845 -184.178.214.0/24 22773 -184.178.215.0/24 46787 -184.178.216.0/21 22773 -184.178.224.0/19 22773 -184.179.0.0/19 22773 -184.179.32.0/20 22773 -184.179.48.0/21 1819 -184.179.56.0/21 22773 -184.179.64.0/19 22773 -184.179.96.0/20 22773 -184.179.112.0/21 22773 -184.179.120.0/22 22773 -184.179.124.0/24 54411 -184.179.125.0/24 22773 -184.179.126.0/23 22773 -184.179.128.0/17 22773 -184.180.0.0/21 22773 -184.180.8.0/24 33496 -184.180.9.0/24 22773 -184.180.10.0/23 22773 -184.180.12.0/22 22773 -184.180.16.0/20 22773 -184.180.32.0/19 22773 -184.180.64.0/21 22773 -184.180.72.0/22 22773 -184.180.76.0/23 22773 -184.180.78.0/24 22773 -184.180.79.0/24 23016 -184.180.80.0/20 22773 -184.180.96.0/20 22773 -184.180.112.0/22 22773 -184.180.116.0/23 22773 -184.180.118.0/24 55188 -184.180.119.0/24 22773 -184.180.120.0/21 22773 -184.180.128.0/19 22773 -184.180.160.0/20 22773 -184.180.176.0/22 22773 -184.180.180.0/24 53703 -184.180.181.0/24 22773 -184.180.182.0/23 22773 -184.180.184.0/21 22773 -184.180.192.0/18 22773 -184.181.0.0/16 22773 -184.182.0.0/17 22773 -184.182.128.0/18 22773 -184.182.192.0/19 22773 -184.182.224.0/21 22773 -184.182.232.0/22 22773 -184.182.236.0/23 22773 -184.182.238.0/24 22773 -184.182.239.0/24 19367 -184.182.240.0/20 22773 -184.183.0.0/18 22773 -184.183.64.0/19 22773 -184.183.96.0/24 22773 -184.183.97.0/24 398016 -184.183.98.0/23 22773 -184.183.100.0/22 22773 -184.183.104.0/21 22773 -184.183.112.0/20 22773 -184.183.128.0/19 22773 -184.183.160.0/20 22773 -184.183.176.0/21 22773 -184.183.184.0/22 22773 -184.183.188.0/23 22773 -184.183.190.0/24 22773 -184.183.191.0/24 36214 -184.183.192.0/18 22773 -184.184.0.0/21 22773 -184.184.8.0/22 64019 -184.184.12.0/22 22773 -184.184.16.0/20 22773 -184.184.32.0/19 22773 -184.184.64.0/19 22773 -184.184.96.0/20 22773 -184.184.112.0/21 22773 -184.184.120.0/23 22773 -184.184.122.0/24 20417 -184.184.123.0/24 22773 -184.184.124.0/22 22773 -184.184.128.0/17 22773 -184.185.0.0/22 22773 -184.185.4.0/23 22773 -184.185.6.0/24 35957 -184.185.7.0/24 394336 -184.185.8.0/21 22773 -184.185.16.0/20 22773 -184.185.32.0/19 22773 -184.185.64.0/24 22773 -184.185.65.0/24 32851 -184.185.66.0/23 22773 -184.185.68.0/22 22773 -184.185.72.0/21 22773 -184.185.80.0/22 22773 -184.185.84.0/24 22773 -184.185.85.0/24 12095 -184.185.86.0/24 54318 -184.185.87.0/24 22773 -184.185.88.0/21 22773 -184.185.96.0/23 22773 -184.185.98.0/24 11963 -184.185.99.0/24 22773 -184.185.100.0/22 22773 -184.185.104.0/21 22773 -184.185.112.0/20 22773 -184.185.128.0/23 22773 -184.185.130.0/24 32224 -184.185.131.0/24 22773 -184.185.132.0/22 22773 -184.185.136.0/21 22773 -184.185.144.0/20 22773 -184.185.160.0/20 22773 -184.185.176.0/24 397696 -184.185.177.0/24 22773 -184.185.178.0/23 22773 -184.185.180.0/22 22773 -184.185.184.0/21 22773 -184.185.192.0/20 22773 -184.185.208.0/21 22773 -184.185.216.0/22 22773 -184.185.220.0/23 22773 -184.185.222.0/24 6356 -184.185.223.0/24 22773 -184.185.224.0/19 22773 -184.186.0.0/19 22773 -184.186.32.0/20 22773 -184.186.48.0/23 22773 -184.186.50.0/24 26161 -184.186.51.0/24 22773 -184.186.52.0/22 22773 -184.186.56.0/21 22773 -184.186.64.0/18 22773 -184.186.128.0/20 22773 -184.186.144.0/21 22773 -184.186.152.0/22 22773 -184.186.156.0/24 394580 -184.186.157.0/24 22773 -184.186.158.0/24 54318 -184.186.159.0/24 22773 -184.186.160.0/19 22773 -184.186.192.0/18 22773 -184.187.0.0/20 22773 -184.187.16.0/22 22773 -184.187.20.0/24 22773 -184.187.21.0/24 23490 -184.187.22.0/23 394865 -184.187.24.0/21 22773 -184.187.32.0/19 22773 -184.187.64.0/18 22773 -184.187.128.0/17 22773 -184.188.0.0/20 22773 -184.188.16.0/23 22773 -184.188.18.0/23 40358 -184.188.20.0/23 22773 -184.188.22.0/24 394865 -184.188.23.0/24 22773 -184.188.24.0/21 22773 -184.188.32.0/19 22773 -184.188.64.0/24 395450 -184.188.65.0/24 22773 -184.188.66.0/23 22773 -184.188.68.0/22 22773 -184.188.72.0/21 22773 -184.188.80.0/22 22773 -184.188.84.0/24 394336 -184.188.85.0/24 22773 -184.188.86.0/24 29886 -184.188.87.0/24 22773 -184.188.88.0/21 22773 -184.188.96.0/19 22773 -184.188.128.0/23 53760 -184.188.130.0/23 22773 -184.188.132.0/22 22773 -184.188.136.0/21 22773 -184.188.144.0/23 22773 -184.188.146.0/24 22773 -184.188.147.0/24 394158 -184.188.148.0/22 22773 -184.188.152.0/21 22773 -184.188.160.0/19 22773 -184.188.192.0/18 22773 -184.189.0.0/17 22773 -184.189.128.0/20 22773 -184.189.144.0/21 22773 -184.189.152.0/24 23490 -184.189.153.0/24 54357 -184.189.154.0/23 22773 -184.189.156.0/22 22773 -184.189.160.0/19 22773 -184.189.192.0/22 22773 -184.189.196.0/24 54411 -184.189.197.0/24 22773 -184.189.198.0/23 22773 -184.189.200.0/21 22773 -184.189.208.0/20 22773 -184.189.224.0/19 22773 -184.190.0.0/16 22773 -184.191.0.0/19 22773 -184.191.32.0/20 22773 -184.191.48.0/23 53703 -184.191.50.0/23 22773 -184.191.52.0/23 22773 -184.191.54.0/24 397155 -184.191.55.0/24 22773 -184.191.56.0/21 22773 -184.191.64.0/18 22773 -184.191.128.0/18 22773 -184.191.192.0/20 22773 -184.191.208.0/23 22773 -184.191.210.0/24 22773 -184.191.211.0/24 393867 -184.191.212.0/22 22773 -184.191.216.0/24 14693 -184.191.217.0/24 22773 -184.191.218.0/23 22773 -184.191.220.0/22 22773 -184.191.224.0/19 22773 -184.193.0.0/16 10507 -184.194.0.0/15 10507 -184.196.0.0/16 10507 -184.201.0.0/16 10507 -184.202.128.0/17 10507 -184.203.0.0/16 10507 -184.204.0.0/14 10507 -184.209.0.0/16 10507 -184.212.0.0/16 10507 -184.215.0.0/16 10507 -184.216.0.0/13 10507 -184.224.0.0/16 10507 -184.225.0.0/17 10507 -184.226.0.0/17 10507 -184.228.0.0/17 10507 -184.228.128.0/18 3651 -184.228.192.0/19 3651 -184.228.224.0/19 10507 -184.229.0.0/16 10507 -184.230.0.0/15 10507 -184.232.0.0/15 10507 -184.235.0.0/16 10507 -184.236.0.0/16 10507 -184.238.128.0/17 10507 -184.239.0.0/16 10507 -184.242.0.0/16 10507 -184.245.0.0/16 10507 -184.246.0.0/15 10507 -184.248.0.0/13 10507 -185.1.48.0/24 34984 -185.1.62.0/23 59613 -185.1.69.0/24 42953 -185.1.101.0/24 39326 -185.1.102.0/24 39326 -185.1.103.0/24 20530 -185.1.104.0/24 39326 -185.1.150.0/24 43431 -185.2.0.0/22 197745 -185.2.4.0/22 203461 -185.2.8.0/22 35366 -185.2.12.0/22 57497 -185.2.16.0/22 199645 -185.2.20.0/22 199229 -185.2.24.0/22 34968 -185.2.29.0/24 51430 -185.2.30.0/23 51430 -185.2.32.0/24 48219 -185.2.33.0/24 206385 -185.2.34.0/24 60062 -185.2.35.0/24 204665 -185.2.36.0/22 43939 -185.2.40.0/22 49025 -185.2.48.0/24 133199 -185.2.50.0/23 135596 -185.2.52.0/22 34762 -185.2.56.0/22 34219 -185.2.60.0/22 34688 -185.2.64.0/22 39122 -185.2.68.0/22 16371 -185.2.76.0/22 31472 -185.2.80.0/22 49981 -185.2.84.0/22 3243 -185.2.88.0/23 12772 -185.2.90.0/24 209796 -185.2.91.0/24 39435 -185.2.92.0/22 5488 -185.2.96.0/22 6866 -185.2.100.0/22 51167 -185.2.104.0/22 48642 -185.2.108.0/22 61297 -185.2.112.0/22 57367 -185.2.116.0/23 8649 -185.2.124.0/23 25513 -185.2.126.0/23 57681 -185.2.128.0/22 198047 -185.2.136.0/22 13213 -185.2.140.0/22 6830 -185.2.148.0/22 29119 -185.2.152.0/22 42695 -185.2.156.0/22 44453 -185.2.160.0/22 5464 -185.2.164.0/22 21371 -185.2.168.0/22 34119 -185.2.172.0/22 49562 -185.2.176.0/24 199159 -185.2.177.0/24 42473 -185.2.178.0/23 42473 -185.2.180.0/22 43509 -185.2.184.0/22 21191 -185.2.196.0/22 51048 -185.2.200.0/22 199417 -185.2.204.0/22 51059 -185.2.208.0/22 25374 -185.2.212.0/22 25071 -185.2.216.0/22 29611 -185.2.220.0/22 2906 -185.2.224.0/22 29355 -185.2.228.0/22 1257 -185.2.232.0/22 25019 -185.2.236.0/22 34790 -185.2.240.0/22 39647 -185.2.244.0/22 60185 -185.2.248.0/22 31147 -185.2.252.0/22 34863 -185.3.0.0/22 61275 -185.3.4.0/23 2116 -185.3.6.0/24 2116 -185.3.7.0/24 3292 -185.3.8.0/22 43614 -185.3.14.0/24 25384 -185.3.16.0/22 43314 -185.3.20.0/23 24634 -185.3.22.0/24 61113 -185.3.23.0/24 24634 -185.3.24.0/22 24990 -185.3.28.0/22 3257 -185.3.32.0/22 31163 -185.3.36.0/22 203489 -185.3.40.0/22 34788 -185.3.44.0/22 56665 -185.3.48.0/22 29024 -185.3.52.0/22 8681 -185.3.56.0/22 61132 -185.3.60.0/22 39507 -185.3.64.0/22 15401 -185.3.68.0/22 50923 -185.3.72.0/22 8190 -185.3.76.0/22 31672 -185.3.80.0/22 41998 -185.3.84.0/22 42689 -185.3.88.0/22 29286 -185.3.92.0/22 63949 -185.3.96.0/22 12466 -185.3.100.0/22 8680 -185.3.104.0/22 39591 -185.3.108.0/22 30848 -185.3.112.0/22 59686 -185.3.116.0/22 50563 -185.3.122.0/23 29684 -185.3.128.0/22 59689 -185.3.132.0/22 57858 -185.3.136.0/22 8462 -185.3.140.0/22 49063 -185.3.144.0/22 50463 -185.3.148.0/22 25133 -185.3.152.0/22 5384 -185.3.156.0/22 210306 -185.3.160.0/22 12392 -185.3.164.0/22 57168 -185.3.168.0/23 25540 -185.3.172.0/22 42038 -185.3.176.0/22 50554 -185.3.180.0/22 8749 -185.3.184.0/22 8426 -185.3.188.0/24 201639 -185.3.189.0/24 201063 -185.3.190.0/24 204241 -185.3.191.0/24 204194 -185.3.192.0/22 199244 -185.3.196.0/22 50796 -185.3.200.0/22 198357 -185.3.204.0/22 51062 -185.3.208.0/22 35470 -185.3.212.0/22 59691 -185.3.216.0/22 59943 -185.3.220.0/22 25472 -185.3.224.0/22 197480 -185.3.228.0/22 47205 -185.3.232.0/22 45012 -185.3.236.0/22 203872 -185.3.240.0/24 206156 -185.3.241.0/24 199945 -185.3.242.0/23 199945 -185.3.244.0/22 30836 -185.3.248.0/22 203842 -185.3.252.0/22 13113 -185.4.0.0/22 21419 -185.4.4.0/22 15533 -185.4.8.0/22 34244 -185.4.12.0/23 41678 -185.4.15.0/24 203682 -185.4.16.0/22 24631 -185.4.20.0/22 25540 -185.4.24.0/22 201508 -185.4.28.0/22 61173 -185.4.32.0/22 13287 -185.4.36.0/22 49082 -185.4.40.0/22 43103 -185.4.44.0/22 51335 -185.4.48.0/23 48825 -185.4.52.0/22 6752 -185.4.60.0/24 198435 -185.4.62.0/24 199792 -185.4.63.0/24 41765 -185.4.64.0/22 12722 -185.4.68.0/22 20978 -185.4.72.0/22 198068 -185.4.76.0/22 24904 -185.4.80.0/22 43205 -185.4.84.0/22 29256 -185.4.88.0/22 29286 -185.4.92.0/22 29119 -185.4.100.0/22 43620 -185.4.104.0/22 59708 -185.4.108.0/22 28890 -185.4.112.0/24 24642 -185.4.114.0/24 12859 -185.4.115.0/24 25542 -185.4.116.0/22 199455 -185.4.120.0/22 199236 -185.4.124.0/22 29467 -185.4.128.0/23 31463 -185.4.130.0/24 31463 -185.4.132.0/22 199246 -185.4.136.0/22 12617 -185.4.140.0/22 47217 -185.4.144.0/22 12958 -185.4.148.0/22 58272 -185.4.152.0/23 59699 -185.4.154.0/24 59699 -185.4.155.0/24 201795 -185.4.156.0/22 41484 -185.4.160.0/22 29385 -185.4.164.0/23 50173 -185.4.166.0/24 3257 -185.4.167.0/24 50173 -185.4.168.0/23 51395 -185.4.170.0/24 51395 -185.4.172.0/22 2119 -185.4.180.0/22 25592 -185.4.184.0/22 52122 -185.4.188.0/22 12479 -185.4.192.0/22 29286 -185.4.196.0/22 31655 -185.4.200.0/22 44002 -185.4.204.0/22 12668 -185.4.208.0/23 43352 -185.4.210.0/24 43352 -185.4.211.0/24 60369 -185.4.212.0/22 8374 -185.4.216.0/22 62319 -185.4.220.0/22 50530 -185.4.224.0/22 197328 -185.4.228.0/22 199231 -185.4.232.0/22 21263 -185.4.240.0/22 34555 -185.4.244.0/22 30937 -185.4.248.0/23 199255 -185.4.250.0/24 2094 -185.4.251.0/24 199255 -185.4.252.0/22 60372 -185.5.0.0/22 20860 -185.5.8.0/22 59675 -185.5.12.0/23 199644 -185.5.14.0/23 24978 -185.5.16.0/22 34303 -185.5.24.0/22 61157 -185.5.28.0/22 9063 -185.5.32.0/22 31736 -185.5.36.0/22 30938 -185.5.40.0/22 61170 -185.5.44.0/24 42708 -185.5.49.0/24 33874 -185.5.50.0/24 33874 -185.5.51.0/24 30722 -185.5.52.0/22 62282 -185.5.56.0/22 43291 -185.5.60.0/23 198471 -185.5.63.0/24 198471 -185.5.64.0/22 199335 -185.5.68.0/22 15425 -185.5.72.0/22 208415 -185.5.76.0/22 5408 -185.5.80.0/22 20546 -185.5.84.0/22 34471 -185.5.88.0/22 25577 -185.5.92.0/23 31034 -185.5.96.0/22 198414 -185.5.100.0/22 39702 -185.5.104.0/22 47359 -185.5.108.0/22 34177 -185.5.112.0/22 196983 -185.5.120.0/22 49838 -185.5.124.0/22 202207 -185.5.132.0/23 18106 -185.5.134.0/23 27970 -185.5.136.0/22 47764 -185.5.141.0/24 207103 -185.5.142.0/24 209746 -185.5.143.0/24 199619 -185.5.144.0/24 199245 -185.5.148.0/22 21453 -185.5.152.0/22 43766 -185.5.156.0/22 197207 -185.5.160.0/22 20764 -185.5.164.0/22 39642 -185.5.168.0/22 29037 -185.5.172.0/22 3223 -185.5.176.0/22 197633 -185.5.180.0/22 51580 -185.5.184.0/23 5539 -185.5.186.0/23 8758 -185.5.188.0/24 20860 -185.5.189.0/24 6911 -185.5.190.0/23 6911 -185.5.192.0/22 206054 -185.5.196.0/22 31263 -185.5.200.0/22 59715 -185.5.208.0/22 24994 -185.5.212.0/24 199254 -185.5.216.0/22 31304 -185.5.220.0/22 57704 -185.5.224.0/22 199405 -185.5.228.0/22 57389 -185.5.232.0/22 59720 -185.5.236.0/23 198479 -185.5.238.0/23 42947 -185.5.240.0/22 51677 -185.5.244.0/22 15605 -185.5.248.0/22 35196 -185.5.252.0/22 6723 -185.6.0.0/24 209964 -185.6.4.0/22 199652 -185.6.8.0/22 12552 -185.6.12.0/22 42575 -185.6.16.0/22 56995 -185.6.20.0/22 44566 -185.6.24.0/22 44087 -185.6.28.0/23 56324 -185.6.30.0/24 56324 -185.6.32.0/22 49173 -185.6.36.0/23 2128 -185.6.38.0/24 2128 -185.6.39.0/24 42953 -185.6.40.0/22 47452 -185.6.44.0/24 43048 -185.6.48.0/22 25596 -185.6.52.0/22 56391 -185.6.56.0/22 47253 -185.6.60.0/24 3356 -185.6.61.0/24 29283 -185.6.62.0/23 29283 -185.6.64.0/24 56596 -185.6.65.0/24 199989 -185.6.66.0/23 35435 -185.6.68.0/22 44700 -185.6.72.0/22 47353 -185.6.76.0/22 202042 -185.6.81.0/24 28840 -185.6.82.0/23 28840 -185.6.84.0/22 61428 -185.6.88.0/22 28999 -185.6.92.0/22 8399 -185.6.96.0/22 47297 -185.6.100.0/22 197750 -185.6.104.0/22 42560 -185.6.108.0/22 61429 -185.6.112.0/22 35007 -185.6.116.0/22 198520 -185.6.120.0/22 9063 -185.6.124.0/22 47321 -185.6.128.0/24 22208 -185.6.129.0/24 139929 -185.6.132.0/23 3356 -185.6.134.0/24 13768 -185.6.136.0/23 43711 -185.6.138.0/24 39679 -185.6.139.0/24 43711 -185.6.140.0/22 43436 -185.6.148.0/22 41956 -185.6.152.0/22 199775 -185.6.156.0/22 197862 -185.6.160.0/22 16350 -185.6.164.0/22 44300 -185.6.168.0/23 199661 -185.6.172.0/22 31261 -185.6.176.0/22 43937 -185.6.180.0/23 12552 -185.6.182.0/24 42621 -185.6.183.0/24 8829 -185.6.184.0/22 34661 -185.6.188.0/22 41897 -185.6.192.0/22 20811 -185.6.196.0/22 199448 -185.6.204.0/22 57795 -185.6.208.0/22 57468 -185.6.212.0/22 197076 -185.6.216.0/22 13178 -185.6.220.0/22 50010 -185.6.224.0/22 11054 -185.6.228.0/22 41302 -185.6.232.0/22 8632 -185.6.236.0/22 15774 -185.6.240.0/22 203591 -185.6.244.0/22 60863 -185.6.248.0/22 34139 -185.6.252.0/22 35258 -185.7.0.0/22 8517 -185.7.4.0/22 39583 -185.7.14.0/24 9229 -185.7.15.0/24 4913 -185.7.16.0/22 61109 -185.7.20.0/22 199657 -185.7.24.0/22 47317 -185.7.28.0/22 61400 -185.7.32.0/22 51430 -185.7.36.0/22 51754 -185.7.40.0/22 16285 -185.7.44.0/24 60724 -185.7.45.0/24 47949 -185.7.48.0/22 56420 -185.7.52.0/22 1886 -185.7.56.0/22 61415 -185.7.60.0/22 39783 -185.7.64.0/22 199660 -185.7.68.0/24 47297 -185.7.72.0/22 34173 -185.7.76.0/22 43350 -185.7.80.0/23 33182 -185.7.82.0/23 205406 -185.7.84.0/22 199096 -185.7.88.0/22 34931 -185.7.92.0/22 47684 -185.7.96.0/22 42567 -185.7.104.0/22 20853 -185.7.112.0/22 12874 -185.7.116.0/23 56947 -185.7.118.0/24 200082 -185.7.119.0/24 209746 -185.7.120.0/22 51440 -185.7.124.0/22 61109 -185.7.128.0/22 9051 -185.7.132.0/22 49586 -185.7.136.0/22 31264 -185.7.140.0/22 13069 -185.7.144.0/23 203703 -185.7.146.0/23 24739 -185.7.148.0/22 34555 -185.7.152.0/22 34456 -185.7.156.0/22 35432 -185.7.160.0/22 49463 -185.7.164.0/22 199448 -185.7.168.0/22 15969 -185.7.176.0/22 42910 -185.7.180.0/22 60098 -185.7.184.0/22 199588 -185.7.188.0/22 29297 -185.7.192.0/22 49788 -185.7.196.0/22 60294 -185.7.200.0/22 31484 -185.7.204.0/22 47402 -185.7.208.0/22 42652 -185.7.212.0/22 199308 -185.7.216.0/24 60578 -185.7.217.0/24 44814 -185.7.218.0/23 205465 -185.7.220.0/22 199672 -185.7.224.0/23 32780 -185.7.226.0/24 32780 -185.7.227.0/24 13213 -185.7.228.0/22 56595 -185.7.232.0/22 8492 -185.7.236.0/22 20910 -185.7.240.0/22 41405 -185.7.244.0/22 198736 -185.7.248.0/22 21501 -185.7.252.0/22 61189 -185.8.0.0/22 49800 -185.8.4.0/22 199624 -185.8.8.0/22 29014 -185.8.12.0/22 61345 -185.8.16.0/22 41572 -185.8.20.0/22 48176 -185.8.24.0/22 56550 -185.8.28.0/22 39104 -185.8.32.0/22 3188 -185.8.36.0/22 199617 -185.8.40.0/23 3326 -185.8.42.0/23 21219 -185.8.44.0/22 43076 -185.8.48.0/22 199653 -185.8.52.0/23 62325 -185.8.56.0/22 51248 -185.8.60.0/22 58269 -185.8.64.0/22 43142 -185.8.68.0/22 25454 -185.8.72.0/22 12301 -185.8.76.0/22 35344 -185.8.80.0/22 43809 -185.8.84.0/23 8220 -185.8.86.0/23 6830 -185.8.89.0/24 60105 -185.8.92.0/22 199659 -185.8.96.0/22 205147 -185.8.100.0/22 55303 -185.8.104.0/22 16125 -185.8.108.0/23 24931 -185.8.111.0/24 12703 -185.8.112.0/22 61145 -185.8.116.0/22 61377 -185.8.124.0/22 199634 -185.8.128.0/22 3188 -185.8.132.0/22 61369 -185.8.136.0/22 51978 -185.8.140.0/24 3257 -185.8.141.0/24 8220 -185.8.142.0/24 3257 -185.8.143.0/24 8220 -185.8.144.0/22 197883 -185.8.148.0/22 49605 -185.8.152.0/22 5588 -185.8.156.0/22 61380 -185.8.160.0/22 2852 -185.8.164.0/23 24971 -185.8.166.0/24 24971 -185.8.168.0/22 12306 -185.8.172.0/22 60631 -185.8.176.0/22 50673 -185.8.180.0/22 201812 -185.8.184.0/22 199931 -185.8.188.0/22 12570 -185.8.192.0/22 15502 -185.8.200.0/22 31724 -185.8.204.0/22 8613 -185.8.208.0/22 199567 -185.8.212.0/23 48979 -185.8.216.0/22 199635 -185.8.220.0/22 50596 -185.8.224.0/24 12731 -185.8.228.0/23 15945 -185.8.230.0/23 8881 -185.8.232.0/22 206026 -185.8.236.0/22 197019 -185.8.240.0/23 49565 -185.8.242.0/23 39356 -185.8.244.0/23 199611 -185.8.248.0/22 2119 -185.8.252.0/22 8399 -185.9.0.0/22 62020 -185.9.4.0/22 61397 -185.9.8.0/22 16302 -185.9.12.0/22 29037 -185.9.16.0/22 9009 -185.9.20.0/24 199627 -185.9.21.0/24 199487 -185.9.22.0/24 61026 -185.9.24.0/22 42525 -185.9.28.0/22 12897 -185.9.32.0/22 61373 -185.9.36.0/22 199608 -185.9.40.0/22 61354 -185.9.44.0/22 61364 -185.9.50.0/23 13213 -185.9.52.0/23 199613 -185.9.56.0/22 13065 -185.9.60.0/22 13189 -185.9.64.0/22 197524 -185.9.72.0/22 47321 -185.9.76.0/22 61068 -185.9.80.0/22 42387 -185.9.84.0/22 197453 -185.9.88.0/22 61275 -185.9.96.0/22 49594 -185.9.100.0/23 47171 -185.9.102.0/23 8446 -185.9.104.0/22 199610 -185.9.108.0/22 62460 -185.9.112.0/22 49044 -185.9.116.0/22 199600 -185.9.120.0/23 60186 -185.9.124.0/22 29007 -185.9.128.0/22 200062 -185.9.132.0/22 197964 -185.9.136.0/22 59955 -185.9.140.0/22 202892 -185.9.144.0/22 56694 -185.9.148.0/22 28716 -185.9.152.0/22 61394 -185.9.156.0/23 57844 -185.9.158.0/24 57844 -185.9.160.0/22 197175 -185.9.164.0/24 43893 -185.9.166.0/23 30893 -185.9.168.0/22 62224 -185.9.172.0/22 199569 -185.9.176.0/22 12843 -185.9.180.0/22 198570 -185.9.185.0/24 203510 -185.9.186.0/23 49037 -185.9.188.0/22 2906 -185.9.192.0/22 198479 -185.9.196.0/22 61089 -185.9.200.0/22 51690 -185.9.204.0/22 199593 -185.9.208.0/22 39120 -185.9.212.0/22 202087 -185.9.216.0/22 34086 -185.9.220.0/24 61347 -185.9.224.0/22 20880 -185.9.228.0/24 43600 -185.9.229.0/24 199599 -185.9.230.0/23 199599 -185.9.232.0/22 31655 -185.9.248.0/22 25540 -185.9.252.0/22 35224 -185.10.0.0/22 49641 -185.10.4.0/23 57731 -185.10.6.0/24 58738 -185.10.7.0/24 262184 -185.10.10.0/24 197495 -185.10.12.0/22 24958 -185.10.16.0/22 35661 -185.10.20.0/22 1547 -185.10.24.0/22 61171 -185.10.28.0/22 2116 -185.10.32.0/22 47224 -185.10.36.0/22 61343 -185.10.40.0/22 34748 -185.10.44.0/22 199669 -185.10.48.0/22 20857 -185.10.52.0/22 199587 -185.10.56.0/22 51430 -185.10.60.0/23 197695 -185.10.62.0/24 197695 -185.10.63.0/24 25227 -185.10.64.0/22 42925 -185.10.68.0/24 200651 -185.10.69.0/24 207098 -185.10.70.0/24 48324 -185.10.71.0/24 16322 -185.10.72.0/22 61055 -185.10.80.0/22 60273 -185.10.84.0/22 47110 -185.10.88.0/22 199481 -185.10.92.0/22 12676 -185.10.96.0/23 174 -185.10.98.0/24 174 -185.10.99.0/24 21409 -185.10.104.0/24 55967 -185.10.108.0/22 8445 -185.10.112.0/24 6453 -185.10.113.0/24 29684 -185.10.114.0/23 29684 -185.10.116.0/23 199559 -185.10.120.0/22 29512 -185.10.124.0/22 21334 -185.10.128.0/22 197078 -185.10.132.0/22 21195 -185.10.136.0/22 47441 -185.10.141.0/24 41937 -185.10.142.0/23 41937 -185.10.144.0/23 199629 -185.10.146.0/24 199629 -185.10.148.0/22 197558 -185.10.152.0/24 61318 -185.10.156.0/22 42093 -185.10.160.0/22 61331 -185.10.164.0/22 60171 -185.10.168.0/22 8903 -185.10.172.0/22 50257 -185.10.176.0/22 199565 -185.10.180.0/22 8439 -185.10.184.0/22 49505 -185.10.188.0/22 50316 -185.10.192.0/22 9022 -185.10.196.0/22 61340 -185.10.200.0/22 12703 -185.10.204.0/22 41897 -185.10.208.0/24 61316 -185.10.209.0/24 42865 -185.10.210.0/23 61316 -185.10.212.0/22 8273 -185.10.216.0/22 200666 -185.10.220.0/22 42541 -185.10.224.0/22 199562 -185.10.228.0/22 36351 -185.10.232.0/22 39647 -185.10.236.0/22 56973 -185.10.240.0/22 39356 -185.10.244.0/22 61266 -185.10.248.0/22 199312 -185.10.252.0/22 61319 -185.11.0.0/22 198931 -185.11.4.0/23 15493 -185.11.6.0/24 15493 -185.11.8.0/22 30873 -185.11.12.0/22 15897 -185.11.16.0/22 206825 -185.11.20.0/22 35612 -185.11.24.0/24 61091 -185.11.25.0/24 13260 -185.11.26.0/23 15440 -185.11.28.0/22 35362 -185.11.32.0/22 39045 -185.11.36.0/22 48945 -185.11.40.0/23 61327 -185.11.42.0/24 61327 -185.11.44.0/22 20645 -185.11.48.0/22 196695 -185.11.52.0/22 199477 -185.11.56.0/22 12329 -185.11.60.0/22 199539 -185.11.64.0/22 48142 -185.11.68.0/22 43212 -185.11.72.0/23 50340 -185.11.74.0/24 50340 -185.11.75.0/24 49505 -185.11.76.0/24 60330 -185.11.77.0/24 60280 -185.11.78.0/23 60280 -185.11.80.0/22 44668 -185.11.84.0/22 49808 -185.11.88.0/23 48159 -185.11.90.0/24 48159 -185.11.96.0/22 199318 -185.11.104.0/22 199466 -185.11.108.0/22 199551 -185.11.116.0/22 199589 -185.11.120.0/22 202105 -185.11.124.0/23 19551 -185.11.128.0/22 50599 -185.11.132.0/24 199549 -185.11.133.0/24 200812 -185.11.134.0/23 200812 -185.11.136.0/22 48823 -185.11.140.0/22 61190 -185.11.144.0/24 43350 -185.11.145.0/24 49349 -185.11.146.0/23 49349 -185.11.148.0/22 12494 -185.11.152.0/22 199342 -185.11.156.0/22 33933 -185.11.160.0/22 43858 -185.11.164.0/22 33876 -185.11.168.0/22 21232 -185.11.172.0/22 47169 -185.11.176.0/22 48944 -185.11.180.0/24 20741 -185.11.181.0/24 16234 -185.11.182.0/23 16234 -185.11.184.0/22 199542 -185.11.188.0/23 15830 -185.11.190.0/24 203304 -185.11.191.0/24 15830 -185.11.192.0/22 31115 -185.11.196.0/24 29226 -185.11.197.0/24 205324 -185.11.198.0/24 205482 -185.11.199.0/24 205567 -185.11.200.0/22 15699 -185.11.204.0/22 30909 -185.11.208.0/22 199508 -185.11.212.0/22 201160 -185.11.217.0/24 49981 -185.11.220.0/22 57337 -185.11.224.0/22 198292 -185.11.228.0/22 31499 -185.11.232.0/22 201565 -185.11.236.0/22 57910 -185.11.240.0/24 198047 -185.11.241.0/24 59799 -185.11.244.0/23 57193 -185.11.246.0/23 49189 -185.11.248.0/22 42910 -185.11.252.0/22 61303 -185.12.0.0/22 25540 -185.12.4.0/22 50837 -185.12.8.0/23 13032 -185.12.10.0/24 199450 -185.12.11.0/24 199447 -185.12.12.0/22 50673 -185.12.16.0/22 61304 -185.12.20.0/22 52195 -185.12.24.0/24 198394 -185.12.25.0/24 198247 -185.12.26.0/24 198394 -185.12.27.0/24 198381 -185.12.28.0/22 51219 -185.12.32.0/23 16276 -185.12.36.0/24 209349 -185.12.37.0/24 203698 -185.12.40.0/22 31042 -185.12.44.0/22 51852 -185.12.48.0/22 35717 -185.12.56.0/22 50304 -185.12.60.0/22 24631 -185.12.64.0/22 24940 -185.12.68.0/22 44391 -185.12.72.0/22 50304 -185.12.76.0/24 9146 -185.12.78.0/23 9146 -185.12.84.0/22 42514 -185.12.88.0/22 15943 -185.12.92.0/22 49189 -185.12.96.0/22 48504 -185.12.100.0/22 61239 -185.12.104.0/22 198853 -185.12.108.0/22 58059 -185.12.112.0/22 15800 -185.12.116.0/22 33876 -185.12.120.0/22 9150 -185.12.124.0/22 50214 -185.12.128.0/22 61287 -185.12.132.0/22 8315 -185.12.136.0/22 199286 -185.12.140.0/22 35320 -185.12.144.0/22 43366 -185.12.148.0/22 51747 -185.12.152.0/24 61293 -185.12.153.0/24 12722 -185.12.154.0/24 61293 -185.12.155.0/24 12722 -185.12.156.0/23 207044 -185.12.158.0/23 199346 -185.12.160.0/22 61215 -185.12.164.0/22 60050 -185.12.168.0/22 202632 -185.12.172.0/24 61268 -185.12.176.0/22 200185 -185.12.180.0/22 59779 -185.12.188.0/22 61281 -185.12.192.0/22 49229 -185.12.196.0/22 25234 -185.12.200.0/22 42973 -185.12.204.0/22 62192 -185.12.208.0/22 12714 -185.12.212.0/23 199524 -185.12.214.0/24 199524 -185.12.215.0/24 203663 -185.12.216.0/22 49784 -185.12.220.0/24 205578 -185.12.221.0/24 48847 -185.12.222.0/23 48847 -185.12.224.0/22 209219 -185.12.228.0/22 8369 -185.12.232.0/22 25376 -185.12.236.0/22 39823 -185.12.240.0/22 199524 -185.12.244.0/22 9038 -185.12.248.0/22 51747 -185.12.252.0/22 39812 -185.13.0.0/22 41066 -185.13.4.0/22 42331 -185.13.8.0/22 31042 -185.13.12.0/23 201226 -185.13.15.0/24 39326 -185.13.16.0/22 2586 -185.13.20.0/22 51878 -185.13.24.0/22 15774 -185.13.28.0/22 9063 -185.13.32.0/24 46844 -185.13.33.0/24 57172 -185.13.34.0/24 201247 -185.13.35.0/24 43297 -185.13.36.0/22 197922 -185.13.40.0/22 42708 -185.13.44.0/22 42291 -185.13.48.0/22 6779 -185.13.52.0/22 2107 -185.13.56.0/22 36351 -185.13.60.0/22 16371 -185.13.64.0/23 44141 -185.13.66.0/24 205541 -185.13.67.0/24 44141 -185.13.72.0/22 60851 -185.13.76.0/22 199496 -185.13.80.0/22 199516 -185.13.88.0/24 34655 -185.13.89.0/24 50144 -185.13.90.0/23 34655 -185.13.92.0/22 60717 -185.13.96.0/22 12552 -185.13.104.0/22 31404 -185.13.108.0/22 44503 -185.13.112.0/22 29069 -185.13.117.0/24 199502 -185.13.118.0/23 199502 -185.13.120.0/22 12688 -185.13.124.0/22 2119 -185.13.128.0/24 15533 -185.13.131.0/24 7381 -185.13.132.0/22 41560 -185.13.136.0/22 21480 -185.13.140.0/22 8586 -185.13.144.0/22 49633 -185.13.148.0/22 29141 -185.13.156.0/22 12586 -185.13.160.0/22 20485 -185.13.164.0/22 207545 -185.13.168.0/22 8477 -185.13.176.0/22 47165 -185.13.180.0/22 60032 -185.13.184.0/22 38987 -185.13.188.0/22 61124 -185.13.192.0/22 12849 -185.13.196.0/22 197834 -185.13.200.0/22 34977 -185.13.204.0/22 60477 -185.13.208.0/22 199412 -185.13.212.0/23 60555 -185.13.214.0/23 25540 -185.13.220.0/22 201502 -185.13.228.0/22 60976 -185.13.232.0/22 34525 -185.13.236.0/22 34547 -185.13.240.0/22 42560 -185.13.244.0/22 15692 -185.13.248.0/22 61297 -185.13.252.0/22 52030 -185.14.0.0/22 41090 -185.14.4.0/22 42482 -185.14.8.0/22 199547 -185.14.12.0/22 61244 -185.14.16.0/22 39047 -185.14.20.0/22 51540 -185.14.24.0/22 199272 -185.14.28.0/22 21100 -185.14.32.0/22 44347 -185.14.36.0/22 51487 -185.14.40.0/22 20485 -185.14.44.0/22 21287 -185.14.48.0/22 12843 -185.14.52.0/22 1764 -185.14.56.0/22 202054 -185.14.60.0/22 202813 -185.14.64.0/22 41801 -185.14.68.0/23 44267 -185.14.70.0/24 44267 -185.14.72.0/22 13110 -185.14.76.0/22 29050 -185.14.80.0/23 61246 -185.14.82.0/24 61246 -185.14.84.0/22 199479 -185.14.88.0/22 202596 -185.14.92.0/22 57433 -185.14.100.0/22 21299 -185.14.104.0/22 61236 -185.14.108.0/22 199511 -185.14.112.0/22 35378 -185.14.116.0/22 48473 -185.14.120.0/22 25540 -185.14.124.0/22 16178 -185.14.128.0/23 199441 -185.14.131.0/24 199441 -185.14.132.0/22 9038 -185.14.136.0/22 60981 -185.14.140.0/22 59597 -185.14.144.0/22 61231 -185.14.148.0/22 61233 -185.14.156.0/22 3250 -185.14.160.0/22 42337 -185.14.164.0/22 174 -185.14.168.0/22 199408 -185.14.172.0/22 205951 -185.14.176.0/24 206037 -185.14.177.0/24 60620 -185.14.178.0/24 206037 -185.14.179.0/24 16347 -185.14.180.0/22 20672 -185.14.184.0/22 14061 -185.14.188.0/23 12767 -185.14.190.0/24 202084 -185.14.191.0/24 12767 -185.14.192.0/24 200557 -185.14.194.0/24 8100 -185.14.196.0/22 60621 -185.14.200.0/22 60597 -185.14.204.0/22 39766 -185.14.208.0/22 51918 -185.14.212.0/22 50023 -185.14.216.0/22 57873 -185.14.224.0/22 39790 -185.14.228.0/22 61217 -185.14.232.0/22 199490 -185.14.240.0/22 199544 -185.14.244.0/22 61221 -185.14.248.0/23 197882 -185.14.250.0/24 197882 -185.14.251.0/24 21277 -185.14.252.0/22 43541 -185.15.0.0/22 199475 -185.15.4.0/23 8779 -185.15.6.0/23 56423 -185.15.8.0/22 44066 -185.15.13.0/24 61212 -185.15.14.0/23 61212 -185.15.16.0/22 199397 -185.15.20.0/22 24768 -185.15.24.0/22 199483 -185.15.28.0/22 61211 -185.15.32.0/22 29286 -185.15.36.0/22 203451 -185.15.40.0/22 42807 -185.15.44.0/22 60713 -185.15.48.0/23 199349 -185.15.50.0/23 15224 -185.15.52.0/22 60595 -185.15.56.0/22 14907 -185.15.60.0/22 48078 -185.15.64.0/22 42560 -185.15.72.0/22 203953 -185.15.76.0/22 48348 -185.15.80.0/23 47273 -185.15.82.0/24 200680 -185.15.83.0/24 47273 -185.15.84.0/22 203290 -185.15.88.0/22 39289 -185.15.92.0/22 25486 -185.15.96.0/22 30733 -185.15.100.0/22 29286 -185.15.104.0/22 16082 -185.15.108.0/22 47232 -185.15.112.0/22 199469 -185.15.116.0/24 202775 -185.15.117.0/24 44927 -185.15.118.0/24 44927 -185.15.120.0/22 61207 -185.15.124.0/22 208237 -185.15.128.0/22 30889 -185.15.132.0/22 199473 -185.15.137.0/24 206535 -185.15.139.0/24 207729 -185.15.140.0/22 30781 -185.15.144.0/22 44489 -185.15.148.0/22 199930 -185.15.153.0/24 41049 -185.15.154.0/23 41049 -185.15.156.0/24 28849 -185.15.157.0/24 49806 -185.15.158.0/24 62197 -185.15.159.0/24 60655 -185.15.160.0/23 197293 -185.15.164.0/22 197727 -185.15.168.0/22 57558 -185.15.172.0/22 43226 -185.15.176.0/22 9009 -185.15.180.0/22 47777 -185.15.184.0/22 197252 -185.15.188.0/22 61021 -185.15.192.0/22 15817 -185.15.196.0/22 201520 -185.15.200.0/22 196810 -185.15.204.0/22 60045 -185.15.208.0/22 52000 -185.15.212.0/22 16086 -185.15.216.0/22 8896 -185.15.220.0/22 51752 -185.15.224.0/24 3257 -185.15.226.0/23 3257 -185.15.228.0/22 206484 -185.15.232.0/22 35745 -185.15.236.0/22 29056 -185.15.240.0/22 35425 -185.15.244.0/22 24961 -185.15.248.0/22 28878 -185.15.252.0/22 61169 -185.16.0.0/22 60923 -185.16.4.0/22 3225 -185.16.8.0/24 42358 -185.16.10.0/24 44195 -185.16.12.0/22 35567 -185.16.16.0/22 3292 -185.16.20.0/22 61200 -185.16.24.0/22 57324 -185.16.28.0/22 35816 -185.16.32.0/22 199449 -185.16.36.0/22 201814 -185.16.40.0/22 199456 -185.16.44.0/22 61168 -185.16.48.0/22 199446 -185.16.52.0/22 1764 -185.16.56.0/22 44507 -185.16.60.0/22 197540 -185.16.64.0/22 31363 -185.16.69.0/24 61143 -185.16.70.0/23 61143 -185.16.72.0/22 21263 -185.16.76.0/23 60368 -185.16.78.0/24 8680 -185.16.85.0/24 25369 -185.16.86.0/24 25369 -185.16.87.0/24 42708 -185.16.88.0/22 61149 -185.16.92.0/22 34946 -185.16.96.0/22 61177 -185.16.100.0/22 29329 -185.16.104.0/22 209284 -185.16.108.0/22 34764 -185.16.112.0/22 49808 -185.16.116.0/22 28917 -185.16.120.0/22 199380 -185.16.124.0/22 49223 -185.16.132.0/22 30848 -185.16.136.0/22 31214 -185.16.140.0/22 20681 -185.16.144.0/22 52142 -185.16.148.0/22 47764 -185.16.152.0/22 34967 -185.16.156.0/24 61128 -185.16.158.0/23 61128 -185.16.160.0/22 48101 -185.16.164.0/22 199370 -185.16.168.0/22 3222 -185.16.172.0/22 199417 -185.16.176.0/22 41829 -185.16.180.0/22 199350 -185.16.190.0/23 38955 -185.16.192.0/24 199926 -185.16.193.0/24 196904 -185.16.194.0/23 196904 -185.16.196.0/24 203520 -185.16.200.0/22 59702 -185.16.204.0/22 25369 -185.16.208.0/22 199478 -185.16.212.0/22 198310 -185.16.216.0/22 35914 -185.16.220.0/22 203585 -185.16.224.0/22 57099 -185.16.228.0/22 29062 -185.16.232.0/22 51469 -185.16.236.0/22 199419 -185.16.240.0/22 25428 -185.16.244.0/22 47764 -185.16.252.0/22 35676 -185.17.0.0/22 50113 -185.17.4.0/22 199421 -185.17.8.0/24 51907 -185.17.9.0/24 49505 -185.17.10.0/24 50340 -185.17.11.0/24 49505 -185.17.12.0/22 51184 -185.17.16.0/22 48524 -185.17.20.0/22 199362 -185.17.24.0/22 42831 -185.17.28.0/22 199420 -185.17.32.0/22 28753 -185.17.36.0/23 35140 -185.17.38.0/23 34709 -185.17.40.0/22 197155 -185.17.44.0/22 29286 -185.17.48.0/24 198471 -185.17.51.0/24 198471 -185.17.52.0/22 48564 -185.17.56.0/22 57752 -185.17.60.0/22 57485 -185.17.64.0/24 61140 -185.17.65.0/24 61141 -185.17.66.0/24 202963 -185.17.67.0/24 61131 -185.17.68.0/22 198249 -185.17.72.0/22 61161 -185.17.76.0/22 199278 -185.17.80.0/22 60479 -185.17.84.0/22 61156 -185.17.88.0/22 39256 -185.17.92.0/22 199339 -185.17.100.0/22 197296 -185.17.104.0/23 56911 -185.17.106.0/23 202675 -185.17.108.0/22 15547 -185.17.112.0/22 61135 -185.17.116.0/22 38952 -185.17.120.0/22 28753 -185.17.124.0/23 3255 -185.17.126.0/24 3255 -185.17.127.0/24 51500 -185.17.128.0/22 196742 -185.17.132.0/22 44391 -185.17.136.0/22 42910 -185.17.140.0/22 48757 -185.17.144.0/22 28753 -185.17.148.0/22 20860 -185.17.152.0/22 56340 -185.17.156.0/22 200761 -185.17.160.0/22 199411 -185.17.164.0/22 60426 -185.17.170.0/23 34879 -185.17.172.0/22 60800 -185.17.176.0/22 15547 -185.17.180.0/22 21396 -185.17.184.0/22 60781 -185.17.188.0/22 201236 -185.17.192.0/22 42525 -185.17.196.0/22 60945 -185.17.201.0/24 31588 -185.17.203.0/24 31588 -185.17.204.0/22 8767 -185.17.208.0/22 199403 -185.17.212.0/22 48298 -185.17.216.0/22 43557 -185.17.224.0/22 31252 -185.17.228.0/22 15525 -185.17.232.0/23 51407 -185.17.234.0/24 51407 -185.17.236.0/22 61025 -185.17.240.0/22 61136 -185.17.244.0/22 43623 -185.17.248.0/22 199277 -185.17.252.0/23 29550 -185.17.254.0/24 29550 -185.17.255.0/24 31400 -185.18.0.0/22 49974 -185.18.4.0/22 61121 -185.18.8.0/22 34762 -185.18.12.0/22 31042 -185.18.16.0/22 51718 -185.18.20.0/22 34975 -185.18.24.0/22 3269 -185.18.28.0/22 200828 -185.18.32.0/24 45014 -185.18.34.0/24 39451 -185.18.36.0/22 56833 -185.18.40.0/22 204553 -185.18.44.0/23 12714 -185.18.46.0/24 12714 -185.18.47.0/24 51939 -185.18.48.0/22 58173 -185.18.52.0/22 49981 -185.18.56.0/22 34524 -185.18.60.0/22 34594 -185.18.64.0/22 16006 -185.18.68.0/22 199356 -185.18.72.0/22 47975 -185.18.76.0/22 49282 -185.18.80.0/22 30781 -185.18.84.0/22 12552 -185.18.88.0/23 196803 -185.18.90.0/24 62429 -185.18.91.0/24 34682 -185.18.92.0/22 12843 -185.18.96.0/22 49449 -185.18.100.0/22 50179 -185.18.108.0/22 197204 -185.18.112.0/22 30729 -185.18.116.0/22 31430 -185.18.120.0/22 25178 -185.18.124.0/22 51178 -185.18.128.0/22 42652 -185.18.132.0/22 199390 -185.18.136.0/22 60885 -185.18.140.0/22 35063 -185.18.144.0/22 42344 -185.18.148.0/23 42160 -185.18.150.0/24 62383 -185.18.152.0/22 42560 -185.18.164.0/22 45011 -185.18.168.0/22 60718 -185.18.176.0/22 41809 -185.18.180.0/22 199372 -185.18.184.0/24 46786 -185.18.185.0/24 61107 -185.18.186.0/23 61107 -185.18.188.0/22 8818 -185.18.192.0/24 50904 -185.18.196.0/23 200960 -185.18.198.0/23 198432 -185.18.200.0/24 12418 -185.18.201.0/24 47855 -185.18.202.0/24 12418 -185.18.204.0/22 61102 -185.18.208.0/24 8310 -185.18.209.0/24 56844 -185.18.210.0/23 56844 -185.18.212.0/22 58081 -185.18.216.0/22 60736 -185.18.224.0/22 50819 -185.18.228.0/23 51660 -185.18.230.0/23 61071 -185.18.232.0/22 60965 -185.18.236.0/22 202796 -185.18.240.0/22 204326 -185.18.244.0/22 39232 -185.18.248.0/22 19905 -185.18.252.0/24 43994 -185.18.254.0/23 43994 -185.19.0.0/22 198668 -185.19.4.0/22 13188 -185.19.8.0/23 197990 -185.19.12.0/22 60793 -185.19.16.0/22 20860 -185.19.20.0/22 42610 -185.19.24.0/22 29119 -185.19.28.0/22 61098 -185.19.32.0/22 202545 -185.19.40.0/22 61001 -185.19.44.0/23 199375 -185.19.46.0/24 199375 -185.19.48.0/22 12629 -185.19.52.0/23 41391 -185.19.55.0/24 41391 -185.19.56.0/22 39647 -185.19.64.0/22 61095 -185.19.68.0/22 13287 -185.19.72.0/22 6855 -185.19.76.0/22 42961 -185.19.80.0/23 198504 -185.19.82.0/24 198394 -185.19.83.0/24 198504 -185.19.84.0/22 48971 -185.19.88.0/22 9009 -185.19.92.0/22 199366 -185.19.96.0/22 20771 -185.19.100.0/23 3257 -185.19.102.0/24 260 -185.19.103.0/24 61018 -185.19.104.0/22 17804 -185.19.112.0/22 9038 -185.19.116.0/22 49528 -185.19.120.0/22 21040 -185.19.124.0/22 29256 -185.19.132.0/22 199374 -185.19.136.0/22 61086 -185.19.140.0/22 198349 -185.19.144.0/22 199367 -185.19.148.0/23 60036 -185.19.150.0/24 20712 -185.19.151.0/24 57436 -185.19.152.0/22 34296 -185.19.156.0/22 199359 -185.19.160.0/22 60686 -185.19.164.0/22 61079 -185.19.168.0/22 49983 -185.19.172.0/22 42442 -185.19.176.0/22 47873 -185.19.180.0/22 42160 -185.19.184.0/22 60975 -185.19.188.0/22 202169 -185.19.192.0/23 41007 -185.19.194.0/23 59583 -185.19.196.0/22 31334 -185.19.204.0/22 198610 -185.19.208.0/22 48273 -185.19.212.0/22 51362 -185.19.216.0/22 29066 -185.19.224.0/22 25540 -185.19.228.0/22 199354 -185.19.232.0/22 42525 -185.19.236.0/22 199332 -185.19.240.0/22 197036 -185.19.244.0/22 8343 -185.19.248.0/22 48803 -185.19.252.0/22 44746 -185.20.4.0/22 202119 -185.20.8.0/22 35330 -185.20.12.0/22 44136 -185.20.16.0/22 57809 -185.20.24.0/22 60815 -185.20.28.0/22 199401 -185.20.32.0/22 8851 -185.20.36.0/22 31042 -185.20.40.0/22 61026 -185.20.44.0/22 61068 -185.20.49.0/24 198047 -185.20.50.0/23 198047 -185.20.52.0/22 61049 -185.20.56.0/22 3249 -185.20.60.0/22 47474 -185.20.64.0/22 199348 -185.20.68.0/22 39855 -185.20.72.0/22 35753 -185.20.76.0/24 199361 -185.20.78.0/23 202804 -185.20.80.0/24 25251 -185.20.84.0/22 15826 -185.20.88.0/22 13306 -185.20.94.0/23 61054 -185.20.96.0/22 20860 -185.20.100.0/22 199328 -185.20.104.0/22 29695 -185.20.108.0/22 202831 -185.20.112.0/22 25106 -185.20.116.0/22 3352 -185.20.120.0/22 61010 -185.20.124.0/22 35104 -185.20.128.0/22 41354 -185.20.132.0/23 20895 -185.20.134.0/24 20895 -185.20.135.0/24 60865 -185.20.136.0/22 202053 -185.20.140.0/22 49010 -185.20.144.0/22 31736 -185.20.152.0/22 41176 -185.20.156.0/22 8866 -185.20.160.0/22 41881 -185.20.164.0/22 57356 -185.20.168.0/22 201577 -185.20.172.0/22 41966 -185.20.176.0/22 43812 -185.20.180.0/22 61043 -185.20.184.0/22 42159 -185.20.188.0/22 206293 -185.20.192.0/22 57970 -185.20.196.0/22 203217 -185.20.200.0/22 39544 -185.20.206.0/23 48854 -185.20.208.0/22 41913 -185.20.212.0/22 29286 -185.20.216.0/23 61034 -185.20.218.0/23 60953 -185.20.220.0/22 6461 -185.20.224.0/22 197695 -185.20.228.0/22 8422 -185.20.232.0/24 61967 -185.20.233.0/24 47176 -185.20.234.0/23 61967 -185.20.236.0/22 24953 -185.20.240.0/22 31027 -185.20.244.0/22 29492 -185.20.248.0/24 51498 -185.20.249.0/24 51329 -185.20.252.0/23 58144 -185.20.254.0/24 58144 -185.20.255.0/24 21321 -185.21.4.0/23 43391 -185.21.6.0/23 50941 -185.21.8.0/22 199267 -185.21.12.0/22 60734 -185.21.16.0/22 12969 -185.21.20.0/22 2589 -185.21.24.0/22 199324 -185.21.28.0/22 15945 -185.21.32.0/22 196816 -185.21.36.0/22 199250 -185.21.40.0/22 48854 -185.21.48.0/22 199327 -185.21.52.0/22 58075 -185.21.56.0/22 60941 -185.21.60.0/22 49981 -185.21.64.0/22 61016 -185.21.68.0/22 24631 -185.21.72.0/22 30848 -185.21.76.0/22 24631 -185.21.80.0/22 61015 -185.21.84.0/22 35191 -185.21.88.0/22 199318 -185.21.92.0/22 41858 -185.21.96.0/22 49808 -185.21.100.0/23 34011 -185.21.102.0/24 8972 -185.21.103.0/24 34011 -185.21.104.0/22 33835 -185.21.108.0/22 61012 -185.21.112.0/22 25009 -185.21.116.0/22 199325 -185.21.120.0/22 52145 -185.21.124.0/22 205411 -185.21.136.0/24 39216 -185.21.137.0/24 209565 -185.21.138.0/24 39216 -185.21.139.0/24 209565 -185.21.140.0/22 47271 -185.21.144.0/22 197308 -185.21.148.0/22 49242 -185.21.152.0/22 13273 -185.21.156.0/22 42429 -185.21.160.0/22 48417 -185.21.164.0/22 60351 -185.21.168.0/23 61005 -185.21.170.0/23 61007 -185.21.172.0/22 12850 -185.21.176.0/22 50362 -185.21.180.0/22 34714 -185.21.184.0/24 200191 -185.21.188.0/22 35470 -185.21.192.0/22 50624 -185.21.196.0/22 198725 -185.21.204.0/22 49879 -185.21.208.0/22 31655 -185.21.212.0/22 48252 -185.21.216.0/22 200052 -185.21.220.0/22 199298 -185.21.224.0/23 42442 -185.21.227.0/24 42442 -185.21.228.0/22 8818 -185.21.232.0/22 199289 -185.21.236.0/22 42858 -185.21.240.0/22 202916 -185.21.244.0/23 43329 -185.21.248.0/22 60989 -185.21.252.0/22 49800 -185.22.0.0/22 60982 -185.22.8.0/22 31423 -185.22.12.0/22 62353 -185.22.16.0/22 50204 -185.22.20.0/22 198638 -185.22.24.0/24 31261 -185.22.25.0/24 209456 -185.22.26.0/23 31261 -185.22.28.0/24 197207 -185.22.30.0/23 50810 -185.22.32.0/22 59989 -185.22.36.0/22 56472 -185.22.40.0/22 36131 -185.22.44.0/22 60294 -185.22.48.0/22 31167 -185.22.52.0/24 60728 -185.22.53.0/24 6775 -185.22.54.0/23 6775 -185.22.56.0/22 34549 -185.22.60.0/22 199274 -185.22.64.0/22 48716 -185.22.68.0/22 60979 -185.22.72.0/22 43557 -185.22.76.0/24 60963 -185.22.77.0/24 47264 -185.22.78.0/23 47264 -185.22.80.0/22 40551 -185.22.84.0/23 12874 -185.22.88.0/22 197423 -185.22.92.0/23 29119 -185.22.96.0/22 200155 -185.22.100.0/22 12735 -185.22.104.0/22 31424 -185.22.108.0/22 53589 -185.22.112.0/22 60964 -185.22.116.0/22 49477 -185.22.120.0/22 203424 -185.22.124.0/22 33883 -185.22.128.0/23 60983 -185.22.130.0/24 203500 -185.22.131.0/24 199881 -185.22.132.0/22 60970 -185.22.136.0/22 199057 -185.22.140.0/22 60294 -185.22.144.0/22 57595 -185.22.148.0/22 199271 -185.22.152.0/22 51659 -185.22.156.0/22 15405 -185.22.160.0/23 21245 -185.22.162.0/24 21245 -185.22.164.0/23 199269 -185.22.168.0/23 60821 -185.22.170.0/24 60821 -185.22.172.0/22 43317 -185.22.176.0/22 31127 -185.22.180.0/22 198947 -185.22.184.0/22 34619 -185.22.188.0/22 60961 -185.22.192.0/22 39647 -185.22.196.0/22 198184 -185.22.200.0/22 197712 -185.22.204.0/22 42339 -185.22.208.0/23 60899 -185.22.210.0/24 43262 -185.22.212.0/22 43451 -185.22.216.0/22 34391 -185.22.220.0/22 60955 -185.22.224.0/24 60962 -185.22.225.0/24 3549 -185.22.226.0/23 60962 -185.22.232.0/22 203226 -185.22.236.0/22 197046 -185.22.240.0/22 200124 -185.22.244.0/22 8445 -185.22.248.0/22 8678 -185.22.252.0/22 201739 -185.23.0.0/22 41363 -185.23.4.0/22 12684 -185.23.8.0/22 51645 -185.23.12.0/22 198230 -185.23.16.0/23 197695 -185.23.20.0/22 31229 -185.23.24.0/22 60950 -185.23.28.0/22 15830 -185.23.32.0/22 34467 -185.23.36.0/22 60917 -185.23.40.0/22 60994 -185.23.44.0/22 39507 -185.23.48.0/22 34797 -185.23.52.0/22 59455 -185.23.56.0/22 9009 -185.23.60.0/24 60933 -185.23.61.0/24 31202 -185.23.64.0/22 60936 -185.23.72.0/22 42926 -185.23.80.0/22 60840 -185.23.84.0/22 34758 -185.23.88.0/23 197746 -185.23.92.0/22 60940 -185.23.96.0/23 29286 -185.23.98.0/24 201935 -185.23.99.0/24 29286 -185.23.100.0/24 60677 -185.23.102.0/24 60677 -185.23.104.0/22 6876 -185.23.108.0/22 29834 -185.23.112.0/22 60895 -185.23.116.0/22 31708 -185.23.120.0/22 31577 -185.23.124.0/22 43766 -185.23.128.0/22 199082 -185.23.132.0/23 51269 -185.23.136.0/22 44821 -185.23.144.0/22 60830 -185.23.148.0/22 60920 -185.23.152.0/22 60929 -185.23.156.0/22 28748 -185.23.160.0/22 5538 -185.23.164.0/22 8647 -185.23.168.0/22 60723 -185.23.172.0/22 199270 -185.23.176.0/23 60739 -185.23.180.0/23 138915 -185.23.184.0/22 29256 -185.23.188.0/22 60532 -185.23.192.0/22 202491 -185.23.196.0/22 60924 -185.23.200.0/23 133115 -185.23.202.0/23 23338 -185.23.204.0/22 16383 -185.23.208.0/22 41998 -185.23.212.0/22 49453 -185.23.216.0/22 196827 -185.23.220.0/22 60493 -185.23.224.0/22 15943 -185.23.228.0/22 38984 -185.23.233.0/24 60898 -185.23.235.0/24 60898 -185.23.236.0/22 20676 -185.23.240.0/24 24627 -185.23.241.0/24 30981 -185.23.243.0/24 39151 -185.23.244.0/22 44944 -185.23.248.0/22 40627 -185.23.252.0/22 60914 -185.24.4.0/24 15810 -185.24.6.0/23 15810 -185.24.8.0/22 34040 -185.24.12.0/22 60257 -185.24.16.0/23 39180 -185.24.18.0/23 43142 -185.24.20.0/22 43708 -185.24.24.0/22 60884 -185.24.28.0/22 200050 -185.24.32.0/22 60871 -185.24.44.0/23 34892 -185.24.46.0/23 47481 -185.24.48.0/22 60893 -185.24.52.0/22 44923 -185.24.56.0/22 60852 -185.24.60.0/22 206206 -185.24.64.0/24 60890 -185.24.65.0/24 42044 -185.24.66.0/24 42044 -185.24.67.0/24 203961 -185.24.68.0/22 51191 -185.24.72.0/22 61081 -185.24.76.0/22 60886 -185.24.80.0/22 60896 -185.24.84.0/22 8851 -185.24.88.0/22 199411 -185.24.92.0/22 60879 -185.24.96.0/22 198047 -185.24.100.0/24 60870 -185.24.101.0/24 60416 -185.24.102.0/24 61993 -185.24.104.0/22 12637 -185.24.108.0/22 9009 -185.24.112.0/22 38917 -185.24.116.0/23 62290 -185.24.118.0/23 200043 -185.24.120.0/22 56478 -185.24.124.0/22 48953 -185.24.128.0/23 60838 -185.24.132.0/22 60874 -185.24.136.0/23 57218 -185.24.138.0/23 62140 -185.24.140.0/22 8399 -185.24.144.0/22 200484 -185.24.148.0/24 132471 -185.24.152.0/22 197033 -185.24.156.0/23 60641 -185.24.158.0/24 51985 -185.24.159.0/24 60641 -185.24.160.0/22 12684 -185.24.164.0/22 56515 -185.24.168.0/22 60876 -185.24.172.0/23 60781 -185.24.174.0/24 60781 -185.24.175.0/24 49206 -185.24.179.0/24 44913 -185.24.180.0/22 15930 -185.24.184.0/22 60855 -185.24.188.0/22 61275 -185.24.192.0/22 60697 -185.24.196.0/22 197064 -185.24.200.0/22 20552 -185.24.204.0/22 51825 -185.24.208.0/22 42560 -185.24.212.0/22 60864 -185.24.216.0/24 59491 -185.24.217.0/24 206061 -185.24.218.0/23 59491 -185.24.220.0/22 196752 -185.24.224.0/24 199970 -185.24.228.0/22 57218 -185.24.232.0/22 30900 -185.24.236.0/22 29208 -185.24.240.0/24 60781 -185.24.244.0/22 35087 -185.24.252.0/22 59962 -185.25.0.0/22 21211 -185.25.8.0/24 197760 -185.25.9.0/24 49058 -185.25.10.0/23 49058 -185.25.12.0/22 48728 -185.25.16.0/22 43148 -185.25.20.0/22 209150 -185.25.24.0/22 198760 -185.25.28.0/23 45566 -185.25.30.0/24 36385 -185.25.32.0/22 60868 -185.25.36.0/22 51795 -185.25.40.0/22 25358 -185.25.44.0/22 60205 -185.25.48.0/22 61272 -185.25.52.0/22 48146 -185.25.56.0/22 51263 -185.25.60.0/22 8496 -185.25.64.0/23 60825 -185.25.67.0/24 60825 -185.25.72.0/22 30848 -185.25.76.0/22 20904 -185.25.80.0/22 41960 -185.25.88.0/22 60832 -185.25.92.0/24 41354 -185.25.96.0/22 12431 -185.25.100.0/22 42926 -185.25.104.0/24 198381 -185.25.105.0/24 198394 -185.25.106.0/24 198381 -185.25.107.0/24 12653 -185.25.108.0/22 60810 -185.25.112.0/24 16371 -185.25.113.0/24 29119 -185.25.114.0/23 29119 -185.25.116.0/22 200000 -185.25.120.0/22 60806 -185.25.124.0/22 60823 -185.25.128.0/22 60814 -185.25.132.0/22 12843 -185.25.136.0/22 209897 -185.25.140.0/24 207199 -185.25.141.0/24 48854 -185.25.142.0/24 204652 -185.25.144.0/22 34134 -185.25.148.0/22 198414 -185.25.156.0/22 397451 -185.25.164.0/22 41480 -185.25.171.0/24 60765 -185.25.172.0/22 60605 -185.25.176.0/22 48475 -185.25.180.0/22 32590 -185.25.184.0/22 24971 -185.25.188.0/22 31595 -185.25.192.0/22 60804 -185.25.196.0/22 201337 -185.25.200.0/22 201557 -185.25.204.0/22 60798 -185.25.211.0/24 30844 -185.25.212.0/22 42525 -185.25.216.0/22 41676 -185.25.220.0/22 8190 -185.25.224.0/22 60785 -185.25.228.0/22 198761 -185.25.232.0/22 60783 -185.25.236.0/22 60790 -185.25.240.0/22 20860 -185.25.244.0/22 9304 -185.25.248.0/22 60791 -185.25.252.0/22 48685 -185.26.0.0/22 60752 -185.26.4.0/22 51223 -185.26.8.0/22 51747 -185.26.16.0/22 51551 -185.26.20.0/23 60780 -185.26.22.0/24 60780 -185.26.23.0/24 5432 -185.26.24.0/24 198247 -185.26.25.0/24 208428 -185.26.26.0/23 206283 -185.26.28.0/22 31415 -185.26.32.0/22 34078 -185.26.36.0/22 60789 -185.26.40.0/22 39264 -185.26.44.0/24 25479 -185.26.46.0/24 25479 -185.26.48.0/22 202053 -185.26.52.0/23 60771 -185.26.54.0/24 60771 -185.26.56.0/22 30925 -185.26.60.0/23 31027 -185.26.62.0/23 3308 -185.26.64.0/22 60756 -185.26.68.0/22 47524 -185.26.76.0/22 15451 -185.26.80.0/22 30742 -185.26.88.0/22 25540 -185.26.92.0/23 60760 -185.26.96.0/22 44066 -185.26.100.0/22 60740 -185.26.104.0/22 24935 -185.26.108.0/22 60750 -185.26.112.0/22 48287 -185.26.116.0/22 201236 -185.26.120.0/22 62082 -185.26.124.0/22 29169 -185.26.128.0/22 60745 -185.26.132.0/22 21412 -185.26.136.0/22 202005 -185.26.140.0/22 60772 -185.26.144.0/22 60721 -185.26.148.0/23 20860 -185.26.150.0/24 20860 -185.26.152.0/24 65555 -185.26.153.0/24 60725 -185.26.154.0/23 60725 -185.26.156.0/24 205766 -185.26.157.0/24 58010 -185.26.158.0/24 1299 -185.26.159.0/24 58010 -185.26.160.0/22 60288 -185.26.164.0/22 2116 -185.26.168.0/22 60738 -185.26.172.0/22 51052 -185.26.176.0/22 25144 -185.26.180.0/22 39832 -185.26.184.0/22 197223 -185.26.188.0/23 6830 -185.26.190.0/24 6830 -185.26.191.0/24 47692 -185.26.192.0/24 34089 -185.26.193.0/24 60720 -185.26.194.0/23 60720 -185.26.196.0/23 60706 -185.26.198.0/23 60432 -185.26.200.0/22 39257 -185.26.204.0/23 16094 -185.26.206.0/23 15599 -185.26.210.0/23 202191 -185.26.216.0/23 39785 -185.26.218.0/23 59744 -185.26.220.0/22 60703 -185.26.224.0/22 42666 -185.26.228.0/22 34922 -185.26.232.0/22 56503 -185.26.237.0/24 57169 -185.26.238.0/24 43350 -185.26.239.0/24 39326 -185.26.240.0/22 199659 -185.26.244.0/22 39905 -185.26.248.0/22 51985 -185.26.252.0/22 60669 -185.27.0.0/22 60244 -185.27.4.0/22 31662 -185.27.8.0/22 25415 -185.27.12.0/22 8902 -185.27.16.0/22 8455 -185.27.20.0/22 21260 -185.27.24.0/22 2116 -185.27.28.0/22 50673 -185.27.32.0/22 48635 -185.27.36.0/22 60690 -185.27.40.0/23 60671 -185.27.44.0/22 60224 -185.27.48.0/24 60684 -185.27.49.0/24 34843 -185.27.50.0/23 34843 -185.27.52.0/22 48559 -185.27.56.0/22 51840 -185.27.60.0/22 60673 -185.27.68.0/22 41124 -185.27.72.0/23 12874 -185.27.74.0/24 1267 -185.27.76.0/22 57581 -185.27.84.0/22 61343 -185.27.88.0/23 60680 -185.27.92.0/22 28699 -185.27.96.0/22 50986 -185.27.100.0/22 42919 -185.27.104.0/22 60636 -185.27.108.0/22 49071 -185.27.112.0/22 59469 -185.27.116.0/22 60849 -185.27.120.0/22 60517 -185.27.124.0/24 29119 -185.27.125.0/24 50563 -185.27.126.0/24 199853 -185.27.127.0/24 29119 -185.27.128.0/22 44252 -185.27.132.0/22 34119 -185.27.136.0/22 60675 -185.27.140.0/22 60781 -185.27.148.0/22 12389 -185.27.152.0/22 35205 -185.27.156.0/22 20647 -185.27.160.0/22 43226 -185.27.164.0/22 48803 -185.27.168.0/22 60662 -185.27.172.0/22 48635 -185.27.176.0/22 25178 -185.27.180.0/22 60664 -185.27.184.0/23 9100 -185.27.186.0/24 9100 -185.27.188.0/22 60468 -185.27.192.0/22 60651 -185.27.196.0/22 60688 -185.27.200.0/23 207030 -185.27.202.0/24 174 -185.27.203.0/24 207030 -185.27.204.0/22 42525 -185.27.208.0/22 47156 -185.27.212.0/22 200924 -185.27.216.0/23 60663 -185.27.219.0/24 60663 -185.27.220.0/22 29255 -185.27.232.0/22 197623 -185.27.236.0/22 60144 -185.27.240.0/22 197308 -185.27.244.0/22 15510 -185.27.248.0/24 60632 -185.27.249.0/24 3356 -185.27.250.0/24 60632 -185.27.251.0/24 3356 -185.27.252.0/22 12581 -185.28.0.0/22 199484 -185.28.4.0/22 21473 -185.28.8.0/22 8591 -185.28.12.0/23 60499 -185.28.14.0/24 60499 -185.28.16.0/22 42927 -185.28.20.0/22 47583 -185.28.28.0/22 47866 -185.28.36.0/23 49981 -185.28.38.0/24 49981 -185.28.40.0/22 201635 -185.28.44.0/23 56467 -185.28.46.0/24 56467 -185.28.48.0/23 31479 -185.28.50.0/24 62064 -185.28.51.0/24 43160 -185.28.52.0/22 8265 -185.28.56.0/22 31477 -185.28.60.0/22 43260 -185.28.68.0/24 60781 -185.28.69.0/24 28753 -185.28.70.0/24 30633 -185.28.71.0/24 16265 -185.28.72.0/24 49937 -185.28.73.0/24 14537 -185.28.74.0/23 14537 -185.28.76.0/22 200183 -185.28.80.0/22 42425 -185.28.84.0/23 47339 -185.28.86.0/23 9229 -185.28.88.0/24 5089 -185.28.89.0/24 206999 -185.28.90.0/23 206999 -185.28.92.0/23 202149 -185.28.94.0/24 202149 -185.28.100.0/22 24806 -185.28.104.0/22 8926 -185.28.108.0/23 12773 -185.28.110.0/24 44710 -185.28.111.0/24 12773 -185.28.112.0/22 60228 -185.28.116.0/23 60617 -185.28.120.0/23 60608 -185.28.128.0/22 31169 -185.28.132.0/24 60596 -185.28.138.0/23 197541 -185.28.140.0/22 200064 -185.28.144.0/22 12426 -185.28.148.0/22 15879 -185.28.152.0/22 44709 -185.28.156.0/22 60574 -185.28.160.0/23 60607 -185.28.162.0/23 48737 -185.28.164.0/22 60610 -185.28.168.0/22 197722 -185.28.172.0/22 203144 -185.28.176.0/24 201020 -185.28.177.0/24 207218 -185.28.178.0/24 60565 -185.28.179.0/24 201020 -185.28.180.0/22 12506 -185.28.184.0/22 50324 -185.28.188.0/22 60558 -185.28.192.0/22 60592 -185.28.196.0/24 15395 -185.28.202.0/24 30914 -185.28.203.0/24 25180 -185.28.204.0/22 206610 -185.28.208.0/22 3320 -185.28.212.0/23 197669 -185.28.216.0/22 198193 -185.28.220.0/22 43996 -185.28.224.0/22 49784 -185.28.228.0/22 12843 -185.28.232.0/22 39605 -185.28.236.0/22 44387 -185.28.240.0/22 25160 -185.28.244.0/23 48403 -185.28.247.0/24 31639 -185.28.248.0/22 60624 -185.28.252.0/22 12775 -185.29.0.0/22 204558 -185.29.4.0/22 201205 -185.29.8.0/23 60567 -185.29.10.0/24 60567 -185.29.11.0/24 203557 -185.29.12.0/22 60589 -185.29.16.0/22 60435 -185.29.20.0/22 43071 -185.29.24.0/22 200128 -185.29.28.0/23 8767 -185.29.32.0/22 49594 -185.29.36.0/22 34783 -185.29.40.0/22 8426 -185.29.44.0/24 12703 -185.29.46.0/24 49425 -185.29.48.0/22 21351 -185.29.52.0/22 60599 -185.29.56.0/22 60569 -185.29.61.0/24 48517 -185.29.64.0/23 39180 -185.29.68.0/22 199952 -185.29.72.0/24 49605 -185.29.73.0/24 51580 -185.29.74.0/23 51580 -185.29.76.0/22 42697 -185.29.80.0/22 20845 -185.29.84.0/22 60563 -185.29.88.0/24 60587 -185.29.89.0/24 50718 -185.29.90.0/23 204099 -185.29.92.0/22 29255 -185.29.96.0/22 12874 -185.29.100.0/22 51859 -185.29.104.0/22 28929 -185.29.108.0/22 203640 -185.29.112.0/22 41216 -185.29.116.0/23 33873 -185.29.119.0/24 2830 -185.29.120.0/24 43260 -185.29.122.0/24 43260 -185.29.124.0/24 202423 -185.29.125.0/24 12695 -185.29.126.0/23 202423 -185.29.128.0/23 60212 -185.29.130.0/24 62243 -185.29.132.0/22 30419 -185.29.136.0/22 31727 -185.29.140.0/22 204170 -185.29.144.0/23 47187 -185.29.146.0/24 47187 -185.29.148.0/22 34235 -185.29.152.0/22 60486 -185.29.156.0/22 60533 -185.29.160.0/22 60559 -185.29.164.0/23 22363 -185.29.167.0/24 22363 -185.29.168.0/22 42525 -185.29.173.0/24 49229 -185.29.174.0/24 49229 -185.29.176.0/22 13768 -185.29.184.0/22 12764 -185.29.188.0/23 60344 -185.29.192.0/22 201160 -185.29.196.0/22 203176 -185.29.200.0/22 61349 -185.29.204.0/22 198721 -185.29.208.0/22 60541 -185.29.212.0/22 60551 -185.29.216.0/22 60522 -185.29.220.0/22 62240 -185.29.224.0/23 12703 -185.29.226.0/24 206931 -185.29.227.0/24 210282 -185.29.228.0/23 60758 -185.29.230.0/24 60758 -185.29.232.0/22 16347 -185.29.236.0/22 49223 -185.29.240.0/22 15943 -185.29.244.0/22 198545 -185.29.248.0/22 49360 -185.29.252.0/22 6886 -185.30.0.0/22 199831 -185.30.4.0/22 60516 -185.30.8.0/22 207039 -185.30.12.0/22 24811 -185.30.16.0/22 200161 -185.30.20.0/23 60527 -185.30.23.0/24 60527 -185.30.24.0/22 41811 -185.30.28.0/22 202192 -185.30.32.0/22 48324 -185.30.36.0/24 58281 -185.30.40.0/22 49759 -185.30.44.0/22 60530 -185.30.48.0/24 50812 -185.30.56.0/24 29396 -185.30.60.0/22 3257 -185.30.64.0/22 60501 -185.30.68.0/22 198090 -185.30.72.0/22 11090 -185.30.77.0/24 24631 -185.30.80.0/22 174 -185.30.84.0/22 42666 -185.30.92.0/22 60491 -185.30.96.0/22 57487 -185.30.100.0/22 62210 -185.30.104.0/23 60465 -185.30.108.0/22 15830 -185.30.112.0/22 197650 -185.30.116.0/23 47586 -185.30.118.0/23 51607 -185.30.120.0/22 16354 -185.30.124.0/24 20853 -185.30.125.0/24 200659 -185.30.126.0/23 20853 -185.30.128.0/22 3356 -185.30.132.0/23 60174 -185.30.135.0/24 60174 -185.30.136.0/22 202137 -185.30.140.0/22 199581 -185.30.144.0/22 60471 -185.30.148.0/22 60462 -185.30.152.0/22 48871 -185.30.156.0/22 12843 -185.30.160.0/23 200918 -185.30.162.0/23 202654 -185.30.164.0/22 60503 -185.30.168.0/22 206178 -185.30.172.0/22 60497 -185.30.176.0/22 60476 -185.30.180.0/22 60451 -185.30.184.0/22 29689 -185.30.188.0/22 59699 -185.30.192.0/22 60459 -185.30.196.0/22 50129 -185.30.200.0/23 60860 -185.30.202.0/24 60860 -185.30.203.0/24 57033 -185.30.204.0/22 51088 -185.30.208.0/22 199917 -185.30.212.0/23 9009 -185.30.220.0/22 60437 -185.30.224.0/22 60717 -185.30.228.0/22 24663 -185.30.232.0/24 60781 -185.30.233.0/24 174 -185.30.236.0/22 8315 -185.30.244.0/22 197722 -185.30.248.0/22 205579 -185.30.252.0/22 31511 -185.31.0.0/23 25540 -185.31.2.0/24 25540 -185.31.3.0/24 35393 -185.31.4.0/24 3209 -185.31.5.0/24 62023 -185.31.6.0/24 3209 -185.31.7.0/24 62023 -185.31.8.0/22 60332 -185.31.13.0/24 43525 -185.31.14.0/24 43525 -185.31.16.0/23 54113 -185.31.18.0/24 54113 -185.31.20.0/22 29119 -185.31.24.0/22 31621 -185.31.28.0/24 60498 -185.31.29.0/24 43957 -185.31.30.0/24 60498 -185.31.31.0/24 43957 -185.31.32.0/22 12301 -185.31.36.0/22 6830 -185.31.40.0/22 60362 -185.31.44.0/22 5528 -185.31.48.0/22 60425 -185.31.52.0/22 12453 -185.31.56.0/24 2830 -185.31.57.0/24 7046 -185.31.58.0/24 9466 -185.31.59.0/24 7046 -185.31.60.0/22 29413 -185.31.64.0/22 60087 -185.31.68.0/22 198024 -185.31.72.0/22 59443 -185.31.76.0/22 60422 -185.31.80.0/22 47544 -185.31.84.0/22 60419 -185.31.88.0/22 51323 -185.31.92.0/22 60415 -185.31.96.0/22 196737 -185.31.100.0/22 60478 -185.31.104.0/22 197722 -185.31.108.0/22 60388 -185.31.112.0/22 57363 -185.31.116.0/22 29072 -185.31.120.0/22 199364 -185.31.124.0/23 60407 -185.31.128.0/24 54312 -185.31.132.0/22 47440 -185.31.136.0/22 60414 -185.31.140.0/22 59913 -185.31.144.0/22 8455 -185.31.148.0/22 35625 -185.31.152.0/22 41107 -185.31.156.0/22 9186 -185.31.160.0/22 34300 -185.31.164.0/22 50473 -185.31.168.0/22 42689 -185.31.172.0/22 60404 -185.31.176.0/22 42525 -185.31.180.0/22 60390 -185.31.184.0/22 21021 -185.31.188.0/22 198381 -185.31.192.0/22 31499 -185.31.196.0/22 51815 -185.31.200.0/22 28685 -185.31.204.0/22 31708 -185.31.208.0/22 200081 -185.31.212.0/22 48362 -185.31.216.0/22 58334 -185.31.220.0/22 34738 -185.31.224.0/22 25180 -185.31.228.0/22 39647 -185.31.236.0/22 13287 -185.31.240.0/22 49604 -185.31.244.0/22 12859 -185.31.248.0/22 21232 -185.32.0.0/22 43925 -185.32.4.0/22 60645 -185.32.8.0/22 60433 -185.32.12.0/23 43260 -185.32.15.0/24 62370 -185.32.16.0/22 49835 -185.32.20.0/22 60352 -185.32.28.0/22 15699 -185.32.32.0/22 8469 -185.32.36.0/23 47784 -185.32.40.0/22 60772 -185.32.44.0/22 200154 -185.32.49.0/24 203998 -185.32.52.0/23 25376 -185.32.54.0/23 204688 -185.32.56.0/22 60357 -185.32.60.0/22 48243 -185.32.64.0/24 60218 -185.32.65.0/24 60365 -185.32.66.0/24 60489 -185.32.67.0/24 201934 -185.32.68.0/22 60265 -185.32.72.0/22 50300 -185.32.76.0/24 62749 -185.32.77.0/24 200597 -185.32.78.0/23 62417 -185.32.80.0/22 42263 -185.32.84.0/22 60338 -185.32.88.0/22 202230 -185.32.92.0/22 200174 -185.32.96.0/22 60331 -185.32.100.0/23 197133 -185.32.102.0/24 197133 -185.32.103.0/24 43573 -185.32.104.0/22 29017 -185.32.108.0/24 5089 -185.32.109.0/24 20860 -185.32.110.0/24 20860 -185.32.111.0/24 5089 -185.32.112.0/22 29119 -185.32.116.0/22 47215 -185.32.120.0/22 51583 -185.32.124.0/22 59891 -185.32.128.0/22 60340 -185.32.132.0/22 43667 -185.32.136.0/22 16030 -185.32.144.0/22 197790 -185.32.148.0/22 209564 -185.32.152.0/22 199256 -185.32.156.0/22 50561 -185.32.160.0/22 24971 -185.32.164.0/22 48739 -185.32.168.0/22 6848 -185.32.172.0/22 42571 -185.32.176.0/22 21450 -185.32.180.0/24 201119 -185.32.181.0/24 62159 -185.32.182.0/23 200918 -185.32.185.0/24 202611 -185.32.186.0/24 207207 -185.32.187.0/24 13238 -185.32.188.0/22 62416 -185.32.192.0/24 60321 -185.32.193.0/24 22578 -185.32.196.0/22 62183 -185.32.200.0/22 34920 -185.32.204.0/22 12552 -185.32.208.0/22 8399 -185.32.212.0/22 198326 -185.32.216.0/22 196689 -185.32.220.0/22 51395 -185.32.224.0/22 60330 -185.32.228.0/22 60325 -185.32.232.0/22 60341 -185.32.236.0/22 60319 -185.32.240.0/22 30286 -185.32.244.0/22 199876 -185.32.248.0/24 47541 -185.32.249.0/24 28709 -185.32.250.0/24 47541 -185.32.251.0/24 28709 -185.32.252.0/22 60277 -185.33.0.0/22 6752 -185.33.4.0/22 13768 -185.33.8.0/22 39878 -185.33.12.0/24 25540 -185.33.13.0/24 200741 -185.33.14.0/23 200741 -185.33.20.0/22 60311 -185.33.24.0/24 25540 -185.33.28.0/22 60302 -185.33.32.0/22 60304 -185.33.36.0/22 60323 -185.33.40.0/22 13193 -185.33.45.0/24 199826 -185.33.46.0/23 199826 -185.33.48.0/23 49896 -185.33.52.0/22 47381 -185.33.56.0/23 201877 -185.33.58.0/24 201877 -185.33.59.0/24 31638 -185.33.61.0/24 56582 -185.33.62.0/23 56582 -185.33.64.0/23 13287 -185.33.66.0/24 13287 -185.33.68.0/22 1126 -185.33.72.0/22 39324 -185.33.76.0/22 60297 -185.33.80.0/23 6830 -185.33.82.0/23 42205 -185.33.84.0/22 202015 -185.33.88.0/22 197033 -185.33.92.0/22 60291 -185.33.100.0/22 201682 -185.33.104.0/22 39279 -185.33.108.0/22 24796 -185.33.112.0/22 34356 -185.33.116.0/22 20495 -185.33.120.0/22 42187 -185.33.124.0/22 9155 -185.33.128.0/22 197143 -185.33.132.0/22 198454 -185.33.136.0/22 21430 -185.33.140.0/22 41709 -185.33.144.0/22 24806 -185.33.148.0/22 200038 -185.33.156.0/22 60266 -185.33.164.0/22 60021 -185.33.168.0/22 60268 -185.33.172.0/22 50313 -185.33.176.0/22 39273 -185.33.180.0/22 196763 -185.33.184.0/22 5089 -185.33.188.0/22 31197 -185.33.192.0/22 59455 -185.33.196.0/22 60252 -185.33.200.0/22 197235 -185.33.204.0/22 2830 -185.33.208.0/22 198781 -185.33.212.0/23 15830 -185.33.216.0/22 60316 -185.33.220.0/22 29990 -185.33.224.0/22 15600 -185.33.228.0/22 24936 -185.33.232.0/22 51557 -185.33.236.0/22 48441 -185.33.244.0/24 48781 -185.33.246.0/24 48781 -185.33.247.0/24 206301 -185.33.248.0/22 25375 -185.33.252.0/22 16055 -185.34.0.0/23 12843 -185.34.2.0/23 36236 -185.34.4.0/22 59767 -185.34.8.0/22 56595 -185.34.12.0/22 42525 -185.34.16.0/22 21277 -185.34.20.0/22 47895 -185.34.24.0/22 12993 -185.34.28.0/22 200061 -185.34.32.0/22 28855 -185.34.36.0/22 8922 -185.34.40.0/22 61317 -185.34.44.0/22 60237 -185.34.48.0/22 60243 -185.34.52.0/22 61053 -185.34.56.0/22 3356 -185.34.60.0/22 60241 -185.34.65.0/24 60233 -185.34.66.0/24 21299 -185.34.67.0/24 12731 -185.34.68.0/22 60781 -185.34.72.0/22 39397 -185.34.76.0/22 58321 -185.34.80.0/22 31472 -185.34.84.0/22 60227 -185.34.88.0/22 197063 -185.34.92.0/22 51052 -185.34.96.0/22 60333 -185.34.106.0/23 60229 -185.34.108.0/22 60214 -185.34.116.0/22 60194 -185.34.120.0/22 43406 -185.34.124.0/24 47631 -185.34.127.0/24 47631 -185.34.128.0/24 29286 -185.34.129.0/24 199861 -185.34.130.0/23 29286 -185.34.132.0/22 31027 -185.34.136.0/24 34971 -185.34.140.0/24 200102 -185.34.143.0/24 200102 -185.34.144.0/22 1136 -185.34.148.0/22 25581 -185.34.152.0/22 60172 -185.34.156.0/22 30925 -185.34.160.0/22 12679 -185.34.164.0/24 51221 -185.34.165.0/24 41477 -185.34.166.0/23 41477 -185.34.168.0/22 30925 -185.34.172.0/23 60200 -185.34.174.0/24 60200 -185.34.176.0/22 57795 -185.34.180.0/22 57214 -185.34.184.0/22 12843 -185.34.188.0/22 15224 -185.34.192.0/22 197712 -185.34.196.0/22 24953 -185.34.200.0/24 60239 -185.34.201.0/24 396385 -185.34.202.0/24 60239 -185.34.203.0/24 62154 -185.34.204.0/22 60260 -185.34.208.0/22 31463 -185.34.212.0/22 20773 -185.34.216.0/22 198203 -185.34.220.0/22 51088 -185.34.224.0/22 60173 -185.34.228.0/22 62123 -185.34.232.0/22 49229 -185.34.236.0/22 44124 -185.34.240.0/23 44943 -185.34.244.0/22 201294 -185.34.248.0/22 200583 -185.34.252.0/23 20860 -185.34.254.0/23 25108 -185.35.4.0/24 200172 -185.35.5.0/24 201995 -185.35.8.0/22 41165 -185.35.12.0/22 60175 -185.35.16.0/22 9198 -185.35.20.0/22 47894 -185.35.24.0/23 62401 -185.35.28.0/22 13030 -185.35.32.0/22 35467 -185.35.36.0/22 62459 -185.35.48.0/22 200164 -185.35.52.0/22 42018 -185.35.56.0/22 43545 -185.35.60.0/23 201365 -185.35.62.0/23 42570 -185.35.64.0/22 199653 -185.35.68.0/23 200171 -185.35.70.0/24 200171 -185.35.72.0/22 61231 -185.35.77.0/24 20860 -185.35.78.0/24 20473 -185.35.79.0/24 20860 -185.35.80.0/22 2116 -185.35.84.0/22 206288 -185.35.88.0/22 62145 -185.35.92.0/22 62409 -185.35.96.0/22 50673 -185.35.100.0/22 31272 -185.35.108.0/24 42366 -185.35.112.0/22 50266 -185.35.116.0/22 62429 -185.35.120.0/22 8249 -185.35.124.0/22 60194 -185.35.128.0/22 62440 -185.35.132.0/22 201341 -185.35.140.0/22 60171 -185.35.144.0/22 200187 -185.35.148.0/22 13213 -185.35.152.0/22 35765 -185.35.156.0/22 25144 -185.35.160.0/22 62450 -185.35.164.0/24 62437 -185.35.165.0/24 39923 -185.35.166.0/23 62437 -185.35.168.0/22 8752 -185.35.172.0/22 197690 -185.35.176.0/22 38924 -185.35.180.0/22 34347 -185.35.184.0/22 39783 -185.35.188.0/22 61408 -185.35.192.0/23 29497 -185.35.194.0/24 48400 -185.35.195.0/24 60496 -185.35.196.0/22 200125 -185.35.200.0/22 50304 -185.35.208.0/22 48284 -185.35.212.0/23 200168 -185.35.216.0/22 198726 -185.35.220.0/23 62251 -185.35.224.0/23 39842 -185.35.228.0/22 46261 -185.35.232.0/22 59790 -185.35.236.0/22 200150 -185.35.240.0/22 202186 -185.35.244.0/23 51969 -185.35.248.0/23 24867 -185.35.250.0/23 204167 -185.35.252.0/22 204095 -185.36.0.0/22 205775 -185.36.4.0/22 35733 -185.36.12.0/22 59842 -185.36.20.0/22 43204 -185.36.24.0/22 200147 -185.36.32.0/24 1273 -185.36.36.0/22 43733 -185.36.40.0/24 1136 -185.36.41.0/24 13127 -185.36.44.0/22 57154 -185.36.48.0/22 200139 -185.36.52.0/22 62007 -185.36.56.0/22 6849 -185.36.60.0/22 62423 -185.36.68.0/22 57869 -185.36.72.0/22 12874 -185.36.76.0/22 20860 -185.36.81.0/24 133398 -185.36.82.0/24 208331 -185.36.83.0/24 43463 -185.36.84.0/22 198252 -185.36.88.0/24 51375 -185.36.96.0/24 206734 -185.36.97.0/24 48299 -185.36.99.0/24 48299 -185.36.100.0/22 62403 -185.36.104.0/22 59661 -185.36.116.0/24 15598 -185.36.117.0/24 8767 -185.36.120.0/22 29252 -185.36.124.0/22 44654 -185.36.128.0/22 8265 -185.36.132.0/22 199752 -185.36.136.0/22 35368 -185.36.140.0/23 47950 -185.36.144.0/22 24940 -185.36.148.0/22 200134 -185.36.156.0/22 21367 -185.36.160.0/22 62405 -185.36.164.0/22 200133 -185.36.168.0/22 57367 -185.36.172.0/22 201826 -185.36.176.0/22 47442 -185.36.180.0/22 200129 -185.36.184.0/22 61032 -185.36.188.0/22 42159 -185.36.192.0/22 45671 -185.36.196.0/22 62427 -185.36.200.0/22 48830 -185.36.204.0/22 197518 -185.36.208.0/22 62412 -185.36.212.0/22 2116 -185.36.220.0/22 49489 -185.36.227.0/24 197888 -185.36.228.0/22 200113 -185.36.232.0/22 56910 -185.36.236.0/22 200127 -185.36.240.0/23 62225 -185.36.244.0/22 199872 -185.36.248.0/22 29297 -185.36.252.0/23 6718 -185.36.254.0/24 62240 -185.36.255.0/24 44252 -185.37.0.0/22 9009 -185.37.4.0/23 51088 -185.37.6.0/24 51088 -185.37.7.0/24 20495 -185.37.8.0/22 200099 -185.37.12.0/23 199895 -185.37.20.0/22 35705 -185.37.24.0/22 44143 -185.37.28.0/23 25540 -185.37.30.0/24 25540 -185.37.32.0/22 62416 -185.37.36.0/24 13789 -185.37.37.0/24 29791 -185.37.38.0/23 36236 -185.37.40.0/23 199727 -185.37.42.0/24 199727 -185.37.44.0/22 200108 -185.37.48.0/22 200084 -185.37.52.0/22 48434 -185.37.56.0/22 51645 -185.37.60.0/24 16222 -185.37.61.0/24 3227 -185.37.62.0/24 62082 -185.37.64.0/23 57795 -185.37.68.0/22 48635 -185.37.72.0/22 41549 -185.37.76.0/22 8681 -185.37.84.0/22 39642 -185.37.88.0/23 62368 -185.37.92.0/22 200073 -185.37.100.0/22 200097 -185.37.104.0/22 62391 -185.37.108.0/24 198499 -185.37.110.0/23 198499 -185.37.112.0/23 200089 -185.37.116.0/22 197075 -185.37.120.0/22 62059 -185.37.124.0/22 43366 -185.37.128.0/22 35807 -185.37.132.0/22 200087 -185.37.136.0/22 49220 -185.37.140.0/24 28717 -185.37.144.0/22 34549 -185.37.148.0/22 61102 -185.37.152.0/23 51324 -185.37.154.0/24 51324 -185.37.155.0/24 200086 -185.37.156.0/22 210156 -185.37.160.0/22 21277 -185.37.164.0/22 43550 -185.37.168.0/22 41897 -185.37.172.0/24 199903 -185.37.175.0/24 199903 -185.37.180.0/22 15605 -185.37.184.0/22 197792 -185.37.188.0/22 62382 -185.37.196.0/22 199946 -185.37.201.0/24 42442 -185.37.203.0/24 42442 -185.37.204.0/22 200100 -185.37.208.0/22 12353 -185.37.212.0/22 60609 -185.37.216.0/22 62172 -185.37.220.0/22 200077 -185.37.224.0/24 57286 -185.37.225.0/24 27640 -185.37.226.0/23 57286 -185.37.228.0/23 60458 -185.37.230.0/24 60458 -185.37.231.0/24 201942 -185.37.232.0/22 210318 -185.37.237.0/24 200047 -185.37.239.0/24 21371 -185.37.240.0/22 8257 -185.37.244.0/23 200071 -185.37.246.0/24 200071 -185.37.248.0/22 200924 -185.37.252.0/23 3204 -185.37.254.0/24 3204 -185.38.0.0/22 47605 -185.38.4.0/22 62373 -185.38.8.0/22 196714 -185.38.12.0/22 58073 -185.38.16.0/23 49352 -185.38.18.0/24 49352 -185.38.20.0/22 8361 -185.38.24.0/23 62113 -185.38.27.0/24 62113 -185.38.28.0/22 43056 -185.38.32.0/23 32806 -185.38.34.0/24 1 -185.38.35.0/24 32806 -185.38.36.0/22 60610 -185.38.40.0/22 209400 -185.38.44.0/22 33182 -185.38.48.0/22 62365 -185.38.52.0/22 20677 -185.38.56.0/22 12578 -185.38.60.0/22 200046 -185.38.64.0/23 6730 -185.38.66.0/24 1836 -185.38.68.0/22 199999 -185.38.72.0/22 200049 -185.38.76.0/22 9063 -185.38.84.0/23 12616 -185.38.86.0/24 12616 -185.38.87.0/24 204041 -185.38.88.0/22 41960 -185.38.92.0/22 62141 -185.38.96.0/24 33517 -185.38.98.0/23 15135 -185.38.100.0/22 56510 -185.38.104.0/22 12703 -185.38.108.0/23 60592 -185.38.110.0/24 60592 -185.38.112.0/22 41107 -185.38.116.0/22 62297 -185.38.120.0/22 58005 -185.38.124.0/22 204168 -185.38.128.0/22 199736 -185.38.132.0/23 200008 -185.38.136.0/22 48291 -185.38.140.0/24 47674 -185.38.141.0/24 49349 -185.38.142.0/23 47674 -185.38.144.0/22 20875 -185.38.148.0/22 25369 -185.38.152.0/22 197985 -185.38.156.0/22 8315 -185.38.160.0/22 39238 -185.38.164.0/22 62282 -185.38.168.0/22 62363 -185.38.172.0/23 205938 -185.38.175.0/24 205235 -185.38.176.0/22 62161 -185.38.180.0/23 34848 -185.38.184.0/24 13213 -185.38.185.0/24 60781 -185.38.187.0/24 60781 -185.38.188.0/22 62176 -185.38.192.0/22 200045 -185.38.200.0/23 199391 -185.38.202.0/23 199843 -185.38.204.0/22 200035 -185.38.208.0/24 41540 -185.38.209.0/24 1820 -185.38.210.0/24 1820 -185.38.211.0/24 62492 -185.38.212.0/22 21277 -185.38.216.0/22 13188 -185.38.220.0/23 56523 -185.38.224.0/22 199319 -185.38.228.0/22 199828 -185.38.232.0/22 34427 -185.38.236.0/22 200037 -185.38.240.0/24 395184 -185.38.241.0/24 395651 -185.38.244.0/22 48294 -185.38.248.0/22 197226 -185.38.252.0/22 12835 -185.39.0.0/22 21107 -185.39.4.0/22 62356 -185.39.8.0/22 62355 -185.39.12.0/22 3320 -185.39.16.0/23 30910 -185.39.18.0/24 205246 -185.39.19.0/24 199757 -185.39.20.0/22 60169 -185.39.24.0/22 48544 -185.39.28.0/22 29632 -185.39.32.0/22 47506 -185.39.36.0/22 200025 -185.39.40.0/22 62352 -185.39.44.0/22 200023 -185.39.48.0/23 6786 -185.39.52.0/24 61262 -185.39.54.0/24 61262 -185.39.56.0/22 49034 -185.39.60.0/22 199905 -185.39.64.0/22 41307 -185.39.68.0/22 62332 -185.39.72.0/22 49223 -185.39.80.0/22 200015 -185.39.84.0/22 62336 -185.39.88.0/22 51402 -185.39.92.0/22 3303 -185.39.96.0/22 35699 -185.39.100.0/22 44473 -185.39.104.0/22 200003 -185.39.108.0/22 12360 -185.39.112.0/22 62340 -185.39.116.0/22 30936 -185.39.124.0/22 199998 -185.39.128.0/22 202180 -185.39.136.0/22 200719 -185.39.140.0/22 12727 -185.39.144.0/22 43948 -185.39.148.0/22 45027 -185.39.152.0/22 48517 -185.39.156.0/22 57977 -185.39.160.0/22 47329 -185.39.164.0/24 29644 -185.39.168.0/22 35625 -185.39.172.0/22 207203 -185.39.176.0/22 200567 -185.39.180.0/22 48592 -185.39.184.0/22 62357 -185.39.188.0/22 42515 -185.39.192.0/22 42775 -185.39.196.0/24 24685 -185.39.197.0/24 1820 -185.39.198.0/23 1820 -185.39.200.0/22 61006 -185.39.204.0/22 201570 -185.39.208.0/23 199993 -185.39.210.0/24 199993 -185.39.212.0/22 197212 -185.39.216.0/22 202019 -185.39.220.0/22 34432 -185.39.224.0/22 200000 -185.39.232.0/23 8426 -185.39.236.0/23 10393 -185.39.238.0/23 10474 -185.39.240.0/22 25002 -185.39.244.0/24 62313 -185.39.246.0/23 62313 -185.39.248.0/22 59933 -185.39.252.0/24 206063 -185.39.253.0/24 205660 -185.39.254.0/23 206063 -185.40.0.0/23 199992 -185.40.4.0/23 50113 -185.40.6.0/24 207967 -185.40.7.0/24 50113 -185.40.8.0/22 199055 -185.40.12.0/22 35574 -185.40.16.0/22 47965 -185.40.20.0/22 12301 -185.40.24.0/22 44568 -185.40.28.0/22 61400 -185.40.32.0/22 199987 -185.40.36.0/24 41343 -185.40.37.0/24 41368 -185.40.38.0/23 41368 -185.40.40.0/22 62286 -185.40.44.0/22 62319 -185.40.48.0/22 62259 -185.40.52.0/22 200026 -185.40.56.0/22 30870 -185.40.60.0/22 56665 -185.40.64.0/22 6507 -185.40.72.0/22 199484 -185.40.76.0/22 199427 -185.40.80.0/22 200059 -185.40.84.0/22 199984 -185.40.89.0/24 51728 -185.40.90.0/23 51728 -185.40.92.0/22 61044 -185.40.96.0/22 207176 -185.40.100.0/23 39405 -185.40.108.0/22 203096 -185.40.112.0/22 199981 -185.40.116.0/22 57224 -185.40.120.0/22 43571 -185.40.124.0/22 47264 -185.40.128.0/22 199966 -185.40.132.0/22 62317 -185.40.136.0/22 25274 -185.40.140.0/24 209820 -185.40.144.0/22 60494 -185.40.149.0/24 42493 -185.40.150.0/23 42493 -185.40.152.0/23 59627 -185.40.154.0/23 21030 -185.40.156.0/22 39232 -185.40.160.0/22 21413 -185.40.164.0/23 51660 -185.40.168.0/22 62276 -185.40.172.0/23 196714 -185.40.174.0/23 21413 -185.40.176.0/22 39397 -185.40.180.0/22 197328 -185.40.184.0/22 199781 -185.40.188.0/23 62301 -185.40.192.0/22 15975 -185.40.196.0/22 20853 -185.40.200.0/22 196655 -185.40.204.0/22 44646 -185.40.208.0/22 9051 -185.40.212.0/22 62275 -185.40.216.0/22 202264 -185.40.220.0/22 44793 -185.40.224.0/22 42845 -185.40.228.0/22 199859 -185.40.232.0/22 36236 -185.40.236.0/22 3249 -185.40.240.0/22 24631 -185.40.244.0/22 43140 -185.40.248.0/22 201764 -185.40.252.0/22 57795 -185.41.0.0/22 39074 -185.41.4.0/22 16211 -185.41.8.0/22 200083 -185.41.16.0/22 199900 -185.41.20.0/24 61101 -185.41.21.0/24 60159 -185.41.22.0/23 6768 -185.41.24.0/22 199909 -185.41.28.0/22 200484 -185.41.32.0/22 199947 -185.41.36.0/22 201290 -185.41.40.0/22 199809 -185.41.44.0/22 199944 -185.41.48.0/23 49206 -185.41.50.0/24 49206 -185.41.52.0/24 59536 -185.41.53.0/24 62160 -185.41.54.0/23 62160 -185.41.56.0/23 201318 -185.41.60.0/22 197491 -185.41.64.0/22 50272 -185.41.70.0/24 199964 -185.41.72.0/22 33986 -185.41.76.0/22 21232 -185.41.80.0/22 39507 -185.41.88.0/22 200719 -185.41.92.0/22 199953 -185.41.96.0/22 49835 -185.41.100.0/22 199954 -185.41.104.0/23 201709 -185.41.106.0/24 199938 -185.41.107.0/24 201709 -185.41.108.0/22 38938 -185.41.112.0/22 62283 -185.41.116.0/22 57350 -185.41.120.0/22 199933 -185.41.124.0/22 51088 -185.41.128.0/22 199723 -185.41.132.0/22 21232 -185.41.136.0/22 20559 -185.41.140.0/22 49544 -185.41.144.0/22 29396 -185.41.148.0/22 62254 -185.41.152.0/22 197922 -185.41.156.0/24 62252 -185.41.160.0/22 44128 -185.41.168.0/22 34150 -185.41.176.0/22 199951 -185.41.180.0/22 8487 -185.41.184.0/22 48347 -185.41.192.0/22 25133 -185.41.196.0/23 62293 -185.41.200.0/22 39280 -185.41.204.0/23 204144 -185.41.206.0/23 60740 -185.41.208.0/24 62274 -185.41.212.0/22 199941 -185.41.216.0/22 199869 -185.41.224.0/22 51409 -185.41.228.0/22 62267 -185.41.232.0/22 18434 -185.41.236.0/22 199942 -185.41.240.0/24 50304 -185.41.241.0/24 8896 -185.41.242.0/24 50304 -185.41.243.0/24 202060 -185.41.244.0/22 62235 -185.41.248.0/22 44600 -185.41.252.0/22 199321 -185.42.0.0/22 201508 -185.42.4.0/22 35328 -185.42.8.0/22 199939 -185.42.12.0/22 56784 -185.42.16.0/22 60800 -185.42.20.0/22 198193 -185.42.24.0/22 62263 -185.42.28.0/22 8218 -185.42.32.0/22 35432 -185.42.36.0/22 199128 -185.42.40.0/22 59815 -185.42.44.0/22 201314 -185.42.48.0/22 57174 -185.42.52.0/22 44212 -185.42.56.0/23 5524 -185.42.58.0/24 5524 -185.42.59.0/24 50673 -185.42.60.0/23 31376 -185.42.62.0/24 33908 -185.42.63.0/24 31376 -185.42.64.0/24 50056 -185.42.65.0/24 50300 -185.42.66.0/23 50056 -185.42.68.0/23 199937 -185.42.71.0/24 199937 -185.42.72.0/22 28878 -185.42.76.0/22 60172 -185.42.84.0/22 206250 -185.42.88.0/22 49458 -185.42.92.0/22 201835 -185.42.96.0/22 47139 -185.42.100.0/22 203361 -185.42.104.0/22 197712 -185.42.108.0/22 49531 -185.42.112.0/22 199935 -185.42.116.0/22 43424 -185.42.120.0/22 199913 -185.42.124.0/22 50473 -185.42.128.0/22 49984 -185.42.132.0/22 16347 -185.42.136.0/23 8674 -185.42.142.0/23 200939 -185.42.144.0/22 34869 -185.42.152.0/22 3910 -185.42.156.0/22 41302 -185.42.160.0/22 197845 -185.42.164.0/22 59508 -185.42.168.0/24 62248 -185.42.169.0/24 29838 -185.42.170.0/24 62248 -185.42.172.0/22 199907 -185.42.176.0/22 8399 -185.42.180.0/22 49830 -185.42.187.0/24 208426 -185.42.188.0/22 201958 -185.42.192.0/22 62223 -185.42.204.0/22 46489 -185.42.208.0/22 197580 -185.42.212.0/22 58256 -185.42.218.0/24 61327 -185.42.220.0/22 62240 -185.42.224.0/22 49847 -185.42.228.0/22 60042 -185.42.232.0/24 2830 -185.42.236.0/22 199710 -185.42.240.0/22 62332 -185.42.244.0/22 8821 -185.42.248.0/22 15547 -185.42.252.0/22 202208 -185.43.0.0/22 8368 -185.43.4.0/22 29182 -185.43.8.0/23 48573 -185.43.10.0/23 50549 -185.43.16.0/23 42764 -185.43.18.0/24 42764 -185.43.19.0/24 12874 -185.43.20.0/22 58075 -185.43.24.0/22 30742 -185.43.32.0/22 60257 -185.43.36.0/22 31221 -185.43.40.0/22 62227 -185.43.44.0/22 61047 -185.43.48.0/22 12703 -185.43.52.0/22 202746 -185.43.60.0/22 39542 -185.43.64.0/22 54876 -185.43.68.0/24 201084 -185.43.69.0/24 13193 -185.43.70.0/23 13193 -185.43.72.0/22 60203 -185.43.76.0/22 12703 -185.43.80.0/22 58138 -185.43.84.0/23 43782 -185.43.86.0/23 15774 -185.43.88.0/22 719 -185.43.92.0/22 62218 -185.43.96.0/22 62244 -185.43.100.0/22 43793 -185.43.104.0/22 3249 -185.43.108.0/22 62217 -185.43.112.0/22 25496 -185.43.116.0/22 33828 -185.43.120.0/22 42540 -185.43.124.0/22 199796 -185.43.128.0/22 49344 -185.43.132.0/23 25192 -185.43.134.0/24 25192 -185.43.135.0/24 20701 -185.43.136.0/22 199810 -185.43.140.0/22 199848 -185.43.144.0/22 199766 -185.43.148.0/24 3269 -185.43.149.0/24 30848 -185.43.150.0/24 3269 -185.43.151.0/24 20836 -185.43.152.0/24 58206 -185.43.154.0/23 48638 -185.43.156.0/22 22071 -185.43.160.0/22 202037 -185.43.164.0/22 50316 -185.43.168.0/22 199880 -185.43.172.0/22 44945 -185.43.176.0/22 62365 -185.43.180.0/22 12956 -185.43.184.0/22 29611 -185.43.188.0/22 201167 -185.43.192.0/23 15830 -185.43.194.0/23 16509 -185.43.196.0/22 43035 -185.43.200.0/22 35518 -185.43.204.0/22 62214 -185.43.208.0/22 199883 -185.43.212.0/22 57795 -185.43.216.0/22 62227 -185.43.220.0/22 59939 -185.43.224.0/22 21151 -185.43.228.0/22 62211 -185.43.232.0/22 39122 -185.43.236.0/22 49223 -185.43.240.0/22 206379 -185.43.244.0/22 199811 -185.43.248.0/23 62206 -185.43.250.0/24 61959 -185.43.251.0/24 62206 -185.43.252.0/22 47507 -185.44.0.0/22 62221 -185.44.4.0/22 208988 -185.44.8.0/22 60095 -185.44.12.0/22 199860 -185.44.16.0/22 199292 -185.44.22.0/23 60781 -185.44.24.0/22 50564 -185.44.28.0/22 199853 -185.44.36.0/23 62137 -185.44.38.0/24 62137 -185.44.40.0/22 174 -185.44.44.0/22 62202 -185.44.48.0/22 24824 -185.44.52.0/22 51265 -185.44.56.0/22 198290 -185.44.60.0/23 206837 -185.44.62.0/24 206833 -185.44.63.0/24 202766 -185.44.64.0/22 49683 -185.44.68.0/22 34211 -185.44.72.0/22 62179 -185.44.76.0/22 25369 -185.44.80.0/24 208210 -185.44.82.0/23 49752 -185.44.88.0/24 197737 -185.44.92.0/22 199850 -185.44.96.0/22 62186 -185.44.100.0/23 62198 -185.44.104.0/22 34549 -185.44.108.0/22 62193 -185.44.112.0/22 199849 -185.44.116.0/23 47872 -185.44.118.0/24 204639 -185.44.119.0/24 47872 -185.44.120.0/22 15974 -185.44.124.0/22 42248 -185.44.128.0/22 205668 -185.44.132.0/22 62177 -185.44.136.0/22 21162 -185.44.140.0/22 62192 -185.44.148.0/22 16202 -185.44.152.0/22 9051 -185.44.156.0/22 198288 -185.44.160.0/22 62167 -185.44.164.0/22 62205 -185.44.168.0/22 25459 -185.44.172.0/22 13110 -185.44.184.0/22 62183 -185.44.188.0/22 43070 -185.44.192.0/22 47123 -185.44.196.0/22 15547 -185.44.200.0/22 9063 -185.44.204.0/23 201881 -185.44.207.0/24 206097 -185.44.208.0/22 49808 -185.44.212.0/22 199837 -185.44.216.0/22 51373 -185.44.220.0/22 57394 -185.44.228.0/22 44395 -185.44.232.0/22 43160 -185.44.236.0/22 41123 -185.44.240.0/22 199844 -185.44.244.0/22 51088 -185.44.248.0/22 43207 -185.44.252.0/22 60899 -185.45.0.0/22 14127 -185.45.4.0/24 35995 -185.45.5.0/24 13414 -185.45.6.0/23 13414 -185.45.8.0/22 19679 -185.45.12.0/22 9009 -185.45.16.0/22 199829 -185.45.20.0/22 62138 -185.45.24.0/22 59395 -185.45.28.0/22 198731 -185.45.32.0/22 24904 -185.45.36.0/22 199791 -185.45.40.0/22 62171 -185.45.44.0/22 202072 -185.45.48.0/22 199213 -185.45.52.0/22 21489 -185.45.56.0/22 8518 -185.45.60.0/22 20807 -185.45.64.0/24 201200 -185.45.66.0/23 201200 -185.45.68.0/22 15433 -185.45.72.0/24 200960 -185.45.73.0/24 201446 -185.45.74.0/23 201446 -185.45.76.0/22 62199 -185.45.84.0/22 62183 -185.45.88.0/22 15866 -185.45.92.0/22 9009 -185.45.96.0/24 199799 -185.45.97.0/24 47474 -185.45.98.0/23 201301 -185.45.100.0/22 56791 -185.45.104.0/22 47680 -185.45.108.0/22 52088 -185.45.112.0/22 29141 -185.45.116.0/22 60341 -185.45.120.0/22 1257 -185.45.124.0/22 199722 -185.45.128.0/23 8464 -185.45.132.0/22 174 -185.45.136.0/22 43070 -185.45.140.0/22 199800 -185.45.144.0/22 199805 -185.45.148.0/22 31027 -185.45.152.0/22 199790 -185.45.156.0/22 202041 -185.45.160.0/22 16276 -185.45.164.0/23 29119 -185.45.166.0/24 29119 -185.45.167.0/24 206124 -185.45.168.0/22 199448 -185.45.172.0/23 60641 -185.45.174.0/23 51985 -185.45.176.0/22 203424 -185.45.180.0/22 60350 -185.45.184.0/22 199795 -185.45.188.0/22 24631 -185.45.192.0/23 60117 -185.45.194.0/23 43350 -185.45.196.0/22 50181 -185.45.200.0/22 199803 -185.45.204.0/22 206761 -185.45.208.0/24 51185 -185.45.210.0/24 51185 -185.45.212.0/22 35753 -185.45.216.0/22 199831 -185.45.220.0/22 201903 -185.45.224.0/22 16353 -185.45.228.0/22 34659 -185.45.232.0/22 62156 -185.45.236.0/22 21232 -185.45.240.0/22 8823 -185.45.248.0/22 3209 -185.45.252.0/22 199783 -185.46.0.0/22 39501 -185.46.8.0/22 43146 -185.46.12.0/22 8345 -185.46.16.0/22 199782 -185.46.20.0/22 61952 -185.46.24.0/23 201220 -185.46.28.0/22 198089 -185.46.32.0/22 198785 -185.46.36.0/22 62090 -185.46.40.0/22 34984 -185.46.44.0/22 48467 -185.46.48.0/22 201556 -185.46.52.0/22 203810 -185.46.56.0/22 21069 -185.46.60.0/22 15836 -185.46.64.0/22 20559 -185.46.75.0/24 47264 -185.46.76.0/22 60636 -185.46.80.0/22 62139 -185.46.84.0/22 200557 -185.46.88.0/22 42600 -185.46.92.0/22 42739 -185.46.96.0/22 47562 -185.46.100.0/22 48500 -185.46.104.0/22 44454 -185.46.108.0/22 43395 -185.46.112.0/22 62136 -185.46.116.0/22 12506 -185.46.120.0/22 62134 -185.46.124.0/22 199770 -185.46.128.0/22 57353 -185.46.136.0/22 25291 -185.46.140.0/23 199776 -185.46.148.0/22 44600 -185.46.153.0/24 59498 -185.46.154.0/23 59498 -185.46.160.0/22 31287 -185.46.164.0/22 9008 -185.46.168.0/22 57608 -185.46.172.0/22 62096 -185.46.176.0/22 57768 -185.46.180.0/22 60781 -185.46.184.0/22 47692 -185.46.188.0/22 58309 -185.46.192.0/22 62125 -185.46.196.0/22 202136 -185.46.200.0/23 199748 -185.46.202.0/24 199748 -185.46.204.0/23 15830 -185.46.206.0/24 15830 -185.46.207.0/24 39599 -185.46.208.0/22 200876 -185.46.212.0/22 62044 -185.46.216.0/22 5484 -185.46.220.0/22 31556 -185.46.224.0/22 41164 -185.46.228.0/22 199758 -185.46.232.0/24 60781 -185.46.234.0/23 60126 -185.46.236.0/22 62117 -185.46.240.0/22 132335 -185.46.244.0/22 202100 -185.46.248.0/22 3326 -185.46.252.0/22 39093 -185.47.0.0/22 49405 -185.47.4.0/22 199731 -185.47.8.0/24 204130 -185.47.9.0/24 15899 -185.47.10.0/23 24589 -185.47.12.0/22 29119 -185.47.16.0/22 3352 -185.47.20.0/22 60341 -185.47.28.0/23 206960 -185.47.31.0/24 206960 -185.47.32.0/22 62064 -185.47.36.0/22 43226 -185.47.40.0/22 39029 -185.47.44.0/22 201341 -185.47.48.0/22 48359 -185.47.52.0/22 56534 -185.47.56.0/22 41557 -185.47.60.0/22 44684 -185.47.64.0/22 60191 -185.47.68.0/24 199756 -185.47.76.0/22 60156 -185.47.80.0/23 199749 -185.47.84.0/22 25687 -185.47.88.0/23 52116 -185.47.90.0/24 52116 -185.47.91.0/24 28964 -185.47.92.0/22 28843 -185.47.96.0/22 202339 -185.47.100.0/22 201665 -185.47.104.0/22 60788 -185.47.108.0/22 12637 -185.47.112.0/22 50295 -185.47.116.0/22 6758 -185.47.120.0/22 61956 -185.47.124.0/22 8823 -185.47.128.0/22 59432 -185.47.132.0/22 62105 -185.47.136.0/22 56911 -185.47.140.0/23 12586 -185.47.144.0/22 41736 -185.47.148.0/24 41135 -185.47.152.0/23 202090 -185.47.154.0/23 51698 -185.47.156.0/22 51497 -185.47.160.0/22 47169 -185.47.164.0/22 199781 -185.47.168.0/22 57795 -185.47.176.0/22 62102 -185.47.180.0/22 52059 -185.47.184.0/22 47169 -185.47.188.0/22 8661 -185.47.192.0/23 50168 -185.47.194.0/24 50168 -185.47.196.0/22 62097 -185.47.200.0/22 43350 -185.47.208.0/22 6700 -185.47.212.0/22 62104 -185.47.216.0/22 57099 -185.47.220.0/22 62099 -185.47.228.0/22 20836 -185.47.232.0/22 16024 -185.47.236.0/22 34756 -185.47.240.0/22 200411 -185.47.244.0/22 198066 -185.47.248.0/22 2116 -185.48.0.0/22 3320 -185.48.4.0/22 199733 -185.48.8.0/24 62081 -185.48.9.0/24 50607 -185.48.12.0/24 206665 -185.48.16.0/22 203674 -185.48.20.0/22 199711 -185.48.24.0/24 12735 -185.48.25.0/24 30758 -185.48.26.0/24 59887 -185.48.27.0/24 34984 -185.48.28.0/22 51863 -185.48.32.0/22 12850 -185.48.36.0/22 44927 -185.48.40.0/22 200933 -185.48.44.0/22 25593 -185.48.48.0/22 48504 -185.48.52.0/22 199026 -185.48.56.0/22 62088 -185.48.60.0/22 8680 -185.48.64.0/24 59868 -185.48.68.0/22 199743 -185.48.72.0/22 8299 -185.48.76.0/22 8680 -185.48.80.0/22 62094 -185.48.84.0/22 199738 -185.48.90.0/24 202210 -185.48.92.0/22 34225 -185.48.97.0/24 33353 -185.48.100.0/22 29462 -185.48.104.0/22 62086 -185.48.108.0/23 49765 -185.48.111.0/24 49765 -185.48.112.0/22 199728 -185.48.116.0/22 51862 -185.48.120.0/22 16509 -185.48.124.0/22 59583 -185.48.128.0/23 198935 -185.48.130.0/24 198935 -185.48.132.0/22 35600 -185.48.136.0/22 50223 -185.48.140.0/22 199744 -185.48.144.0/23 61970 -185.48.146.0/24 61970 -185.48.147.0/24 208600 -185.48.148.0/22 35104 -185.48.152.0/22 206897 -185.48.157.0/24 10753 -185.48.158.0/23 10753 -185.48.160.0/22 47480 -185.48.164.0/22 50300 -185.48.168.0/22 198000 -185.48.172.0/22 42560 -185.48.176.0/22 48424 -185.48.180.0/22 49126 -185.48.184.0/24 62070 -185.48.188.0/22 199729 -185.48.192.0/22 62055 -185.48.196.0/22 34867 -185.48.200.0/22 199708 -185.48.205.0/24 32875 -185.48.207.0/24 32875 -185.48.208.0/22 35205 -185.48.212.0/23 34984 -185.48.216.0/21 30742 -185.48.224.0/22 30742 -185.48.228.0/22 197540 -185.48.232.0/22 200999 -185.48.236.0/22 205952 -185.48.240.0/22 8932 -185.48.244.0/22 198967 -185.48.248.0/23 61424 -185.48.251.0/24 135330 -185.48.252.0/22 57809 -185.49.0.0/22 28682 -185.49.4.0/22 202174 -185.49.8.0/23 201946 -185.49.16.0/22 25516 -185.49.20.0/22 199712 -185.49.24.0/22 39611 -185.49.28.0/24 204066 -185.49.29.0/24 35179 -185.49.30.0/24 204244 -185.49.31.0/24 35179 -185.49.32.0/22 23858 -185.49.36.0/22 199713 -185.49.40.0/22 199717 -185.49.44.0/22 59886 -185.49.48.0/24 201405 -185.49.50.0/24 57795 -185.49.51.0/24 201403 -185.49.52.0/23 47692 -185.49.54.0/23 42783 -185.49.56.0/22 197075 -185.49.60.0/22 47720 -185.49.64.0/22 44096 -185.49.68.0/22 28753 -185.49.74.0/23 199706 -185.49.76.0/22 29316 -185.49.80.0/24 3257 -185.49.81.0/24 34153 -185.49.82.0/23 3257 -185.49.84.0/22 43754 -185.49.88.0/22 202463 -185.49.92.0/22 202235 -185.49.96.0/22 50558 -185.49.100.0/24 199843 -185.49.101.0/24 29748 -185.49.102.0/24 29748 -185.49.103.0/24 199391 -185.49.104.0/22 202391 -185.49.108.0/22 202234 -185.49.112.0/22 49546 -185.49.116.0/22 34779 -185.49.120.0/22 57928 -185.49.128.0/22 29399 -185.49.132.0/22 202152 -185.49.136.0/22 202217 -185.49.140.0/22 8587 -185.49.144.0/22 35415 -185.49.148.0/22 31229 -185.49.152.0/22 3303 -185.49.156.0/22 200030 -185.49.160.0/22 56494 -185.49.164.0/22 202223 -185.49.168.0/22 201746 -185.49.172.0/23 202178 -185.49.174.0/24 201856 -185.49.176.0/22 8387 -185.49.180.0/22 42160 -185.49.184.0/22 15954 -185.49.188.0/24 202073 -185.49.192.0/22 207174 -185.49.196.0/22 62002 -185.49.200.0/22 50411 -185.49.204.0/22 48815 -185.49.208.0/22 202215 -185.49.212.0/22 197954 -185.49.216.0/22 41107 -185.49.220.0/22 59905 -185.49.224.0/22 201942 -185.49.228.0/23 12684 -185.49.232.0/23 198781 -185.49.234.0/24 36776 -185.49.235.0/24 198781 -185.49.236.0/22 39537 -185.49.240.0/22 62040 -185.49.244.0/22 44216 -185.49.248.0/22 56911 -185.49.252.0/23 3292 -185.49.254.0/24 3292 -185.49.255.0/24 202216 -185.50.0.0/22 60273 -185.50.4.0/22 49560 -185.50.8.0/22 8439 -185.50.12.0/22 61995 -185.50.16.0/22 202212 -185.50.20.0/22 61373 -185.50.24.0/22 198610 -185.50.28.0/22 12301 -185.50.32.0/22 62038 -185.50.37.0/24 61173 -185.50.38.0/23 61173 -185.50.40.0/22 48871 -185.50.44.0/22 198066 -185.50.48.0/22 62031 -185.50.52.0/22 8399 -185.50.56.0/22 9119 -185.50.60.0/22 201866 -185.50.64.0/22 202214 -185.50.68.0/22 201978 -185.50.72.0/24 197922 -185.50.73.0/24 204145 -185.50.74.0/23 204145 -185.50.76.0/22 48504 -185.50.80.0/22 202202 -185.50.84.0/22 197415 -185.50.88.0/22 200711 -185.50.92.0/22 60341 -185.50.96.0/23 62024 -185.50.98.0/24 62024 -185.50.99.0/24 203906 -185.50.100.0/23 202148 -185.50.104.0/22 49544 -185.50.108.0/22 57037 -185.50.112.0/22 201876 -185.50.116.0/22 42947 -185.50.120.0/23 24940 -185.50.122.0/23 200924 -185.50.124.0/22 197920 -185.50.128.0/22 201808 -185.50.132.0/22 41458 -185.50.136.0/22 12714 -185.50.140.0/22 199786 -185.50.148.0/24 208780 -185.50.149.0/24 49778 -185.50.150.0/24 60489 -185.50.151.0/24 200381 -185.50.152.0/22 50203 -185.50.156.0/22 28745 -185.50.160.0/23 15533 -185.50.164.0/22 13110 -185.50.168.0/22 210123 -185.50.172.0/22 202075 -185.50.176.0/22 50926 -185.50.180.0/22 202179 -185.50.184.0/22 41897 -185.50.188.0/22 202194 -185.50.192.0/22 203953 -185.50.196.0/22 39020 -185.50.200.0/22 44053 -185.50.204.0/22 202125 -185.50.208.0/22 34612 -185.50.212.0/22 15962 -185.50.216.0/22 20485 -185.50.220.0/22 15547 -185.50.224.0/23 24951 -185.50.226.0/24 24951 -185.50.228.0/22 5588 -185.50.232.0/23 42473 -185.50.234.0/24 40980 -185.50.235.0/24 42473 -185.50.236.0/22 61042 -185.50.244.0/22 62022 -185.50.248.0/24 209813 -185.50.249.0/24 39147 -185.50.250.0/23 200557 -185.51.0.0/22 200719 -185.51.4.0/22 62021 -185.51.8.0/22 47692 -185.51.12.0/22 202163 -185.51.16.0/22 15491 -185.51.24.0/22 44558 -185.51.28.0/22 197307 -185.51.32.0/22 200719 -185.51.36.0/22 205424 -185.51.40.0/22 60786 -185.51.44.0/22 3352 -185.51.48.0/22 54103 -185.51.52.0/23 51088 -185.51.56.0/22 20559 -185.51.60.0/22 42065 -185.51.64.0/22 47381 -185.51.68.0/22 202123 -185.51.72.0/23 15751 -185.51.76.0/22 202914 -185.51.84.0/23 39441 -185.51.86.0/24 39441 -185.51.87.0/24 12337 -185.51.88.0/22 51060 -185.51.92.0/22 202170 -185.51.96.0/22 201169 -185.51.101.0/24 56855 -185.51.103.0/24 203310 -185.51.104.0/22 29644 -185.51.108.0/22 202147 -185.51.112.0/22 34984 -185.51.116.0/24 62050 -185.51.117.0/24 39599 -185.51.119.0/24 50625 -185.51.124.0/22 47258 -185.51.128.0/22 60517 -185.51.132.0/24 208149 -185.51.133.0/24 8280 -185.51.134.0/24 206804 -185.51.135.0/24 8280 -185.51.136.0/22 62009 -185.51.140.0/24 202164 -185.51.142.0/23 202164 -185.51.144.0/22 200719 -185.51.148.0/22 201940 -185.51.152.0/24 61963 -185.51.156.0/22 60162 -185.51.160.0/23 62017 -185.51.164.0/22 132839 -185.51.168.0/22 59766 -185.51.172.0/22 39326 -185.51.176.0/22 61984 -185.51.180.0/22 29314 -185.51.184.0/22 6830 -185.51.188.0/22 43359 -185.51.192.0/24 60781 -185.51.193.0/24 39855 -185.51.194.0/23 39855 -185.51.196.0/23 42572 -185.51.198.0/24 42572 -185.51.199.0/24 8218 -185.51.200.0/22 44285 -185.51.204.0/22 202105 -185.51.208.0/22 59666 -185.51.212.0/22 50670 -185.51.216.0/22 202140 -185.51.220.0/22 198735 -185.51.224.0/22 35706 -185.51.228.0/23 198605 -185.51.230.0/24 198605 -185.51.231.0/24 198621 -185.51.232.0/22 197519 -185.51.236.0/22 34410 -185.51.240.0/22 31246 -185.51.244.0/24 6789 -185.51.245.0/24 50245 -185.51.246.0/23 21100 -185.51.248.0/22 62011 -185.51.253.0/24 26178 -185.51.254.0/24 26178 -185.52.0.0/22 198203 -185.52.4.0/22 62003 -185.52.8.0/22 34978 -185.52.12.0/22 49544 -185.52.16.0/22 29680 -185.52.20.0/22 43957 -185.52.24.0/22 198047 -185.52.28.0/22 48479 -185.52.32.0/22 8554 -185.52.36.0/22 25180 -185.52.40.0/22 206897 -185.52.44.0/22 60641 -185.52.48.0/22 42248 -185.52.52.0/22 60558 -185.52.56.0/22 43521 -185.52.60.0/22 20495 -185.52.64.0/22 202146 -185.52.68.0/22 34456 -185.52.72.0/22 35527 -185.52.76.0/23 48479 -185.52.79.0/24 48479 -185.52.80.0/23 47644 -185.52.82.0/24 47644 -185.52.84.0/22 25540 -185.52.88.0/22 15805 -185.52.92.0/22 39449 -185.52.100.0/24 50710 -185.52.101.0/24 198169 -185.52.104.0/22 61999 -185.52.108.0/22 49182 -185.52.112.0/22 8265 -185.52.116.0/22 56484 -185.52.120.0/22 61982 -185.52.124.0/23 34006 -185.52.126.0/24 34006 -185.52.127.0/24 204273 -185.52.128.0/22 197830 -185.52.132.0/22 15774 -185.52.136.0/22 13213 -185.52.140.0/22 30922 -185.52.144.0/22 8530 -185.52.148.0/22 55293 -185.52.152.0/22 34241 -185.52.156.0/22 42695 -185.52.160.0/22 61987 -185.52.164.0/22 52004 -185.52.168.0/22 20552 -185.52.172.0/24 47232 -185.52.173.0/24 202131 -185.52.176.0/22 60131 -185.52.180.0/22 45011 -185.52.184.0/23 59789 -185.52.186.0/24 59789 -185.52.188.0/22 42557 -185.52.192.0/22 200999 -185.52.196.0/22 34660 -185.52.200.0/23 60102 -185.52.202.0/24 60102 -185.52.204.0/22 197216 -185.52.208.0/22 202120 -185.52.212.0/23 57795 -185.52.214.0/24 57795 -185.52.216.0/22 198101 -185.52.220.0/22 34660 -185.52.224.0/22 8283 -185.52.228.0/22 61966 -185.52.232.0/22 29256 -185.52.236.0/22 57866 -185.52.240.0/22 202094 -185.52.244.0/22 202113 -185.52.248.0/22 47447 -185.52.252.0/22 202114 -185.53.0.0/22 5396 -185.53.4.0/22 61981 -185.53.8.0/22 60144 -185.53.12.0/24 41828 -185.53.20.0/23 41722 -185.53.22.0/24 41722 -185.53.24.0/22 201828 -185.53.28.0/22 201277 -185.53.32.0/22 197853 -185.53.36.0/22 202095 -185.53.40.0/22 198570 -185.53.48.0/22 41552 -185.53.56.0/22 12488 -185.53.60.0/22 39172 -185.53.64.0/22 202093 -185.53.68.0/22 15691 -185.53.72.0/22 59770 -185.53.76.0/23 39608 -185.53.79.0/24 16223 -185.53.80.0/22 197685 -185.53.84.0/22 50585 -185.53.88.0/24 209299 -185.53.90.0/24 208623 -185.53.91.0/24 209299 -185.53.92.0/22 56730 -185.53.96.0/22 60158 -185.53.100.0/22 197706 -185.53.104.0/22 39714 -185.53.108.0/22 42473 -185.53.112.0/22 8771 -185.53.116.0/22 3292 -185.53.120.0/22 204118 -185.53.124.0/22 9085 -185.53.128.0/22 43350 -185.53.132.0/22 41421 -185.53.136.0/22 202096 -185.53.140.0/22 204544 -185.53.144.0/22 56373 -185.53.148.0/22 39217 -185.53.152.0/22 201661 -185.53.156.0/22 9063 -185.53.160.0/22 50673 -185.53.164.0/22 60094 -185.53.168.0/22 47447 -185.53.172.0/22 20860 -185.53.176.0/22 61969 -185.53.180.0/22 34767 -185.53.184.0/24 39506 -185.53.188.0/23 202008 -185.53.190.0/24 202008 -185.53.191.0/24 202311 -185.53.192.0/22 8265 -185.53.196.0/22 8953 -185.53.204.0/22 12843 -185.53.209.0/24 40676 -185.53.210.0/24 24875 -185.53.212.0/22 13189 -185.53.216.0/22 28876 -185.53.220.0/22 12731 -185.53.224.0/22 57276 -185.53.228.0/22 29061 -185.53.232.0/22 57571 -185.53.236.0/24 3257 -185.53.237.0/24 13464 -185.53.238.0/24 17330 -185.53.239.0/24 3257 -185.53.240.0/22 28885 -185.53.244.0/22 60161 -185.53.252.0/22 201198 -185.54.0.0/22 205501 -185.54.4.0/23 43800 -185.54.6.0/24 43800 -185.54.7.0/24 21217 -185.54.12.0/22 21412 -185.54.16.0/22 202024 -185.54.20.0/22 34139 -185.54.24.0/22 9009 -185.54.28.0/22 60163 -185.54.32.0/22 5602 -185.54.36.0/22 57752 -185.54.40.0/22 202078 -185.54.44.0/22 201883 -185.54.48.0/22 61960 -185.54.52.0/24 201954 -185.54.56.0/22 197697 -185.54.60.0/22 39010 -185.54.64.0/22 60015 -185.54.72.0/22 24931 -185.54.76.0/22 202040 -185.54.80.0/22 202032 -185.54.84.0/22 42831 -185.54.88.0/24 39582 -185.54.92.0/23 203993 -185.54.94.0/24 208492 -185.54.95.0/24 201723 -185.54.96.0/23 51938 -185.54.98.0/24 9051 -185.54.99.0/24 51938 -185.54.100.0/23 200594 -185.54.102.0/24 205810 -185.54.103.0/24 200602 -185.54.104.0/22 41073 -185.54.108.0/22 61955 -185.54.112.0/22 25151 -185.54.116.0/22 13237 -185.54.120.0/22 5539 -185.54.124.0/23 60008 -185.54.128.0/24 9119 -185.54.130.0/23 9119 -185.54.132.0/22 29256 -185.54.136.0/23 199906 -185.54.138.0/24 208357 -185.54.144.0/22 35753 -185.54.148.0/22 60164 -185.54.152.0/22 202074 -185.54.156.0/22 202055 -185.54.160.0/22 201789 -185.54.164.0/23 204249 -185.54.168.0/22 60157 -185.54.172.0/22 3303 -185.54.176.0/22 202011 -185.54.180.0/22 201975 -185.54.184.0/22 31242 -185.54.192.0/22 12946 -185.54.196.0/22 50821 -185.54.200.0/22 31084 -185.54.204.0/22 39647 -185.54.208.0/23 28889 -185.54.210.0/24 204577 -185.54.212.0/22 201333 -185.54.216.0/22 202606 -185.54.220.0/23 200107 -185.54.222.0/24 200107 -185.54.232.0/22 25291 -185.54.236.0/22 60245 -185.54.244.0/24 49673 -185.54.245.0/24 57822 -185.54.246.0/23 57822 -185.54.248.0/22 201984 -185.54.253.0/24 8449 -185.54.254.0/23 8449 -185.55.0.0/22 29124 -185.55.4.0/22 48976 -185.55.8.0/22 42303 -185.55.12.0/22 5483 -185.55.16.0/22 43531 -185.55.20.0/23 12315 -185.55.24.0/22 59456 -185.55.28.0/22 198477 -185.55.32.0/22 16086 -185.55.36.0/22 41997 -185.55.40.0/22 15552 -185.55.44.0/22 33924 -185.55.48.0/22 202063 -185.55.56.0/22 35029 -185.55.60.0/22 202052 -185.55.64.0/23 61154 -185.55.66.0/24 60755 -185.55.68.0/24 61157 -185.55.70.0/24 61157 -185.55.72.0/24 200735 -185.55.74.0/23 200735 -185.55.76.0/24 34934 -185.55.77.0/24 61323 -185.55.78.0/23 61323 -185.55.84.0/22 201964 -185.55.88.0/22 51580 -185.55.92.0/22 42160 -185.55.96.0/22 198330 -185.55.100.0/22 12843 -185.55.104.0/22 60717 -185.55.108.0/22 35467 -185.55.112.0/22 201968 -185.55.116.0/22 50629 -185.55.120.0/22 21385 -185.55.124.0/22 8365 -185.55.128.0/22 15879 -185.55.132.0/22 20249 -185.55.136.0/22 1200 -185.55.140.0/22 62005 -185.55.144.0/22 34970 -185.55.148.0/23 60136 -185.55.150.0/23 35047 -185.55.152.0/23 198333 -185.55.154.0/24 198333 -185.55.155.0/24 44817 -185.55.156.0/24 203487 -185.55.158.0/23 203487 -185.55.160.0/22 204659 -185.55.164.0/22 12826 -185.55.168.0/22 206299 -185.55.172.0/22 25227 -185.55.176.0/22 48618 -185.55.188.0/22 31708 -185.55.196.0/22 60153 -185.55.200.0/22 60155 -185.55.204.0/22 62129 -185.55.212.0/22 205891 -185.55.216.0/22 29424 -185.55.224.0/22 201999 -185.55.228.0/23 197216 -185.55.232.0/23 28918 -185.55.234.0/24 205867 -185.55.235.0/24 28918 -185.55.236.0/22 201981 -185.55.240.0/22 12586 -185.55.244.0/22 42487 -185.55.248.0/22 201152 -185.55.252.0/24 25577 -185.56.0.0/22 58150 -185.56.4.0/23 201980 -185.56.8.0/22 31034 -185.56.12.0/22 202030 -185.56.16.0/23 202026 -185.56.18.0/24 202026 -185.56.20.0/22 43350 -185.56.24.0/22 60129 -185.56.28.0/22 60144 -185.56.32.0/22 202022 -185.56.36.0/22 201787 -185.56.40.0/22 57099 -185.56.44.0/22 5587 -185.56.51.0/24 36924 -185.56.52.0/22 51571 -185.56.60.0/22 198203 -185.56.64.0/22 202021 -185.56.68.0/22 202020 -185.56.72.0/22 201660 -185.56.76.0/22 62235 -185.56.80.0/24 43350 -185.56.81.0/24 200699 -185.56.84.0/22 32475 -185.56.88.0/22 60140 -185.56.92.0/22 60138 -185.56.96.0/22 39308 -185.56.100.0/22 206920 -185.56.106.0/24 49130 -185.56.107.0/24 43902 -185.56.108.0/22 45037 -185.56.112.0/24 59775 -185.56.114.0/24 59775 -185.56.116.0/22 44640 -185.56.120.0/22 202017 -185.56.124.0/22 50226 -185.56.128.0/21 25291 -185.56.136.0/22 60558 -185.56.142.0/23 59865 -185.56.144.0/22 50673 -185.56.148.0/22 6724 -185.56.152.0/24 35280 -185.56.153.0/24 60132 -185.56.156.0/22 44092 -185.56.160.0/22 29075 -185.56.164.0/22 201720 -185.56.168.0/22 3242 -185.56.172.0/22 50606 -185.56.176.0/22 35600 -185.56.180.0/22 206866 -185.56.184.0/22 60130 -185.56.188.0/24 204397 -185.56.191.0/24 201180 -185.56.192.0/22 3178 -185.56.196.0/22 201927 -185.56.204.0/22 33930 -185.56.208.0/22 202004 -185.56.212.0/22 3246 -185.56.216.0/23 56911 -185.56.218.0/23 202675 -185.56.220.0/22 49402 -185.56.224.0/22 41887 -185.56.228.0/22 25220 -185.56.232.0/22 39572 -185.56.236.0/23 48737 -185.56.239.0/24 48737 -185.56.240.0/22 198706 -185.56.244.0/22 41026 -185.56.248.0/22 49914 -185.56.252.0/22 20521 -185.57.4.0/22 8473 -185.57.8.0/22 197902 -185.57.12.0/22 49152 -185.57.16.0/23 201985 -185.57.20.0/22 3269 -185.57.24.0/22 12586 -185.57.28.0/22 44724 -185.57.32.0/22 56990 -185.57.36.0/22 202206 -185.57.40.0/22 199788 -185.57.48.0/23 59779 -185.57.50.0/24 59779 -185.57.51.0/24 1764 -185.57.52.0/22 201939 -185.57.56.0/22 15211 -185.57.64.0/22 9215 -185.57.68.0/22 201986 -185.57.72.0/22 29555 -185.57.76.0/24 20952 -185.57.77.0/24 201854 -185.57.78.0/24 20952 -185.57.79.0/24 5413 -185.57.80.0/22 60118 -185.57.84.0/22 59913 -185.57.88.0/22 3163 -185.57.92.0/22 48273 -185.57.96.0/22 57795 -185.57.104.0/22 201983 -185.57.108.0/22 31034 -185.57.112.0/22 5466 -185.57.116.0/22 47720 -185.57.120.0/24 201982 -185.57.121.0/24 203217 -185.57.122.0/24 201982 -185.57.124.0/22 20766 -185.57.128.0/22 31449 -185.57.132.0/22 48431 -185.57.136.0/22 12552 -185.57.140.0/23 47628 -185.57.144.0/23 51790 -185.57.146.0/24 51790 -185.57.148.0/22 34993 -185.57.152.0/22 60103 -185.57.156.0/22 203354 -185.57.160.0/22 8818 -185.57.164.0/22 49103 -185.57.168.0/22 1257 -185.57.172.0/23 29119 -185.57.176.0/22 61155 -185.57.184.0/22 8445 -185.57.188.0/22 201971 -185.57.192.0/22 57970 -185.57.196.0/22 15954 -185.57.204.0/22 47683 -185.57.212.0/22 8681 -185.57.216.0/22 60044 -185.57.220.0/22 198545 -185.57.226.0/23 5603 -185.57.228.0/23 197013 -185.57.230.0/23 48146 -185.57.232.0/22 60049 -185.57.236.0/22 201952 -185.57.240.0/22 201955 -185.57.244.0/23 60056 -185.57.248.0/22 60098 -185.57.252.0/22 60717 -185.58.0.0/24 8793 -185.58.1.0/24 3303 -185.58.2.0/23 8793 -185.58.4.0/22 201950 -185.58.8.0/22 201699 -185.58.12.0/22 197893 -185.58.16.0/22 60110 -185.58.20.0/22 35761 -185.58.24.0/22 199909 -185.58.28.0/22 201962 -185.58.36.0/22 680 -185.58.40.0/22 24971 -185.58.44.0/22 5602 -185.58.48.0/22 201977 -185.58.52.0/22 31543 -185.58.56.0/22 8312 -185.58.60.0/22 201960 -185.58.64.0/22 201959 -185.58.68.0/22 30950 -185.58.72.0/22 201563 -185.58.76.0/22 51929 -185.58.80.0/22 201523 -185.58.84.0/22 42427 -185.58.88.0/23 197107 -185.58.91.0/24 197107 -185.58.92.0/22 42560 -185.58.96.0/22 39923 -185.58.100.0/24 28952 -185.58.103.0/24 28952 -185.58.112.0/22 9009 -185.58.116.0/22 31034 -185.58.120.0/22 31034 -185.58.124.0/22 13178 -185.58.128.0/24 51798 -185.58.132.0/22 202709 -185.58.136.0/22 207700 -185.58.140.0/22 200719 -185.58.144.0/22 45011 -185.58.148.0/22 60893 -185.58.152.0/22 13178 -185.58.156.0/22 43847 -185.58.160.0/22 30793 -185.58.164.0/22 51551 -185.58.172.0/22 51984 -185.58.176.0/22 28792 -185.58.180.0/22 5603 -185.58.188.0/22 209284 -185.58.192.0/22 31034 -185.58.196.0/22 201942 -185.58.200.0/22 41833 -185.58.204.0/22 35196 -185.58.208.0/22 200555 -185.58.212.0/23 201595 -185.58.214.0/24 201595 -185.58.216.0/22 60072 -185.58.221.0/24 49063 -185.58.222.0/23 47723 -185.58.224.0/22 199883 -185.58.228.0/22 198641 -185.58.232.0/22 42090 -185.58.236.0/22 201875 -185.58.240.0/22 34513 -185.58.244.0/22 8685 -185.58.248.0/24 24739 -185.58.249.0/24 198907 -185.58.250.0/24 201721 -185.58.251.0/24 205849 -185.58.252.0/22 59740 -185.59.0.0/22 60086 -185.59.4.0/22 48487 -185.59.8.0/22 201932 -185.59.12.0/22 44700 -185.59.16.0/22 203148 -185.59.20.0/22 197075 -185.59.24.0/22 5603 -185.59.28.0/22 199366 -185.59.32.0/22 201906 -185.59.36.0/22 16281 -185.59.40.0/22 201896 -185.59.44.0/22 201928 -185.59.48.0/22 207050 -185.59.52.0/22 200286 -185.59.56.0/22 48642 -185.59.60.0/22 9009 -185.59.64.0/22 56882 -185.59.68.0/22 44395 -185.59.72.0/22 48737 -185.59.80.0/22 12779 -185.59.92.0/22 201902 -185.59.96.0/22 201565 -185.59.100.0/24 200081 -185.59.101.0/24 201492 -185.59.102.0/24 201492 -185.59.103.0/24 200081 -185.59.104.0/22 57736 -185.59.108.0/22 43171 -185.59.112.0/23 43212 -185.59.114.0/23 31732 -185.59.116.0/22 198024 -185.59.120.0/22 201926 -185.59.124.0/22 201838 -185.59.128.0/22 198672 -185.59.132.0/22 35617 -185.59.136.0/24 31480 -185.59.137.0/24 39811 -185.59.138.0/23 8359 -185.59.140.0/23 25227 -185.59.142.0/24 25227 -185.59.143.0/24 204238 -185.59.144.0/22 207167 -185.59.148.0/22 206547 -185.59.152.0/22 47242 -185.59.156.0/22 49223 -185.59.160.0/22 24740 -185.59.164.0/22 201919 -185.59.168.0/22 31669 -185.59.176.0/22 206688 -185.59.180.0/22 51043 -185.59.184.0/22 201997 -185.59.188.0/22 60055 -185.59.192.0/22 13178 -185.59.196.0/22 201894 -185.59.200.0/22 44946 -185.59.204.0/22 47638 -185.59.208.0/22 43541 -185.59.212.0/22 2116 -185.59.216.0/23 201916 -185.59.218.0/24 201916 -185.59.219.0/24 205544 -185.59.220.0/22 60068 -185.59.228.0/22 12617 -185.59.232.0/22 9009 -185.59.240.0/24 28727 -185.59.244.0/22 57227 -185.59.248.0/22 44152 -185.59.252.0/22 201897 -185.60.0.0/23 9145 -185.60.2.0/23 60063 -185.60.4.0/22 31472 -185.60.8.0/24 39180 -185.60.12.0/22 34241 -185.60.16.0/22 15598 -185.60.20.0/24 8375 -185.60.21.0/24 13101 -185.60.24.0/22 201325 -185.60.28.0/22 19855 -185.60.32.0/24 24631 -185.60.33.0/24 201259 -185.60.34.0/23 201259 -185.60.36.0/22 21150 -185.60.40.0/22 43885 -185.60.44.0/22 29124 -185.60.48.0/22 12668 -185.60.52.0/24 50327 -185.60.56.0/22 44450 -185.60.60.0/22 29396 -185.60.64.0/24 202843 -185.60.65.0/24 202737 -185.60.66.0/23 43561 -185.60.68.0/22 201568 -185.60.72.0/22 50030 -185.60.80.0/22 60060 -185.60.86.0/23 36692 -185.60.88.0/22 201898 -185.60.92.0/22 39605 -185.60.96.0/22 205505 -185.60.104.0/22 197879 -185.60.112.0/22 57976 -185.60.116.0/22 201905 -185.60.120.0/22 47704 -185.60.124.0/22 34218 -185.60.128.0/22 28854 -185.60.132.0/22 29182 -185.60.136.0/24 21341 -185.60.140.0/22 201806 -185.60.144.0/22 35415 -185.60.148.0/22 47833 -185.60.152.0/22 201858 -185.60.156.0/22 197156 -185.60.160.0/22 201895 -185.60.164.0/24 60781 -185.60.168.0/22 201857 -185.60.172.0/22 57280 -185.60.176.0/24 198247 -185.60.177.0/24 47973 -185.60.178.0/23 44356 -185.60.180.0/22 201891 -185.60.184.0/22 198023 -185.60.188.0/22 59919 -185.60.196.0/22 207234 -185.60.200.0/24 202665 -185.60.201.0/24 204089 -185.60.204.0/22 201889 -185.60.208.0/22 16218 -185.60.212.0/22 48642 -185.60.216.0/22 32934 -185.60.220.0/22 60788 -185.60.224.0/22 201160 -185.60.228.0/24 203505 -185.60.229.0/24 204131 -185.60.230.0/24 203765 -185.60.231.0/24 3169 -185.60.232.0/22 60046 -185.60.236.0/24 60039 -185.60.237.0/24 201860 -185.60.238.0/23 201860 -185.60.240.0/22 204923 -185.60.244.0/22 197274 -185.60.251.0/24 44066 -185.60.252.0/22 39647 -185.61.0.0/22 5466 -185.61.4.0/23 29414 -185.61.6.0/24 201209 -185.61.7.0/24 199584 -185.61.8.0/24 202108 -185.61.9.0/24 17054 -185.61.12.0/22 28716 -185.61.16.0/22 42841 -185.61.20.0/22 42013 -185.61.24.0/22 15774 -185.61.28.0/22 41998 -185.61.32.0/22 201878 -185.61.36.0/22 60043 -185.61.40.0/22 34432 -185.61.44.0/23 48737 -185.61.48.0/22 47719 -185.61.52.0/22 201873 -185.61.56.0/22 43608 -185.61.60.0/22 61194 -185.61.64.0/22 43627 -185.61.68.0/22 50522 -185.61.72.0/22 201859 -185.61.76.0/22 50473 -185.61.80.0/24 15404 -185.61.81.0/24 209662 -185.61.82.0/23 15734 -185.61.84.0/22 59970 -185.61.88.0/22 31472 -185.61.92.0/22 48166 -185.61.96.0/22 60038 -185.61.104.0/22 42772 -185.61.108.0/22 197617 -185.61.112.0/22 60036 -185.61.116.0/23 201868 -185.61.118.0/24 201868 -185.61.119.0/24 39405 -185.61.120.0/22 39441 -185.61.124.0/22 41541 -185.61.128.0/22 39710 -185.61.132.0/22 201862 -185.61.136.0/22 49349 -185.61.140.0/22 60198 -185.61.144.0/22 60032 -185.61.148.0/22 43513 -185.61.152.0/22 22612 -185.61.156.0/22 203872 -185.61.160.0/22 201659 -185.61.164.0/22 21339 -185.61.168.0/22 41327 -185.61.172.0/23 34757 -185.61.176.0/22 59877 -185.61.180.0/22 51616 -185.61.184.0/21 30781 -185.61.192.0/24 201864 -185.61.195.0/24 201864 -185.61.196.0/22 201424 -185.61.200.0/22 51336 -185.61.204.0/22 201843 -185.61.208.0/22 44503 -185.61.212.0/22 201855 -185.61.216.0/21 9009 -185.61.224.0/22 29311 -185.61.228.0/22 5610 -185.61.236.0/23 43096 -185.61.244.0/22 60747 -185.61.248.0/22 204627 -185.61.252.0/22 56724 -185.62.0.0/22 31034 -185.62.4.0/22 199777 -185.62.8.0/22 47366 -185.62.12.0/22 57795 -185.62.16.0/22 12859 -185.62.20.0/22 201234 -185.62.24.0/24 200512 -185.62.25.0/24 204233 -185.62.28.0/23 49605 -185.62.30.0/24 49605 -185.62.31.0/24 60019 -185.62.32.0/22 201852 -185.62.36.0/22 60558 -185.62.40.0/22 206856 -185.62.44.0/23 8621 -185.62.46.0/24 8621 -185.62.48.0/22 201847 -185.62.52.0/22 60023 -185.62.56.0/22 62370 -185.62.60.0/22 201849 -185.62.64.0/22 15388 -185.62.68.0/22 60022 -185.62.72.0/22 61211 -185.62.76.0/22 29668 -185.62.80.0/22 60016 -185.62.84.0/22 51159 -185.62.88.0/22 197637 -185.62.92.0/22 60018 -185.62.101.0/24 200815 -185.62.102.0/24 8603 -185.62.103.0/24 61400 -185.62.108.0/23 197451 -185.62.110.0/23 206785 -185.62.116.0/22 15695 -185.62.120.0/24 201833 -185.62.122.0/24 201833 -185.62.124.0/23 201834 -185.62.126.0/24 205811 -185.62.127.0/24 39482 -185.62.128.0/22 20845 -185.62.132.0/23 59992 -185.62.136.0/22 55293 -185.62.140.0/22 201888 -185.62.144.0/23 20594 -185.62.146.0/24 20594 -185.62.147.0/24 200511 -185.62.148.0/22 201832 -185.62.156.0/22 51055 -185.62.160.0/23 201822 -185.62.162.0/23 201419 -185.62.165.0/24 40490 -185.62.166.0/23 12041 -185.62.168.0/22 200925 -185.62.172.0/23 201708 -185.62.174.0/23 21183 -185.62.176.0/24 25233 -185.62.180.0/22 61171 -185.62.184.0/22 30781 -185.62.188.0/23 49349 -185.62.190.0/24 49349 -185.62.192.0/22 201825 -185.62.196.0/22 2588 -185.62.200.0/23 57073 -185.62.203.0/24 201512 -185.62.204.0/22 42695 -185.62.208.0/22 201718 -185.62.212.0/22 59897 -185.62.220.0/22 44527 -185.62.224.0/22 200780 -185.62.232.0/22 6736 -185.62.236.0/23 36351 -185.62.238.0/23 32475 -185.62.240.0/22 56376 -185.62.244.0/22 59971 -185.62.248.0/22 201565 -185.62.252.0/22 200691 -185.63.0.0/22 57763 -185.63.4.0/24 6663 -185.63.8.0/22 203536 -185.63.12.0/22 39657 -185.63.16.0/23 47169 -185.63.18.0/23 39679 -185.63.20.0/22 48645 -185.63.24.0/22 197013 -185.63.28.0/22 44585 -185.63.32.0/24 201803 -185.63.33.0/24 202742 -185.63.34.0/24 201803 -185.63.35.0/24 200859 -185.63.36.0/22 198385 -185.63.40.0/22 47927 -185.63.44.0/22 47169 -185.63.48.0/22 34863 -185.63.52.0/22 206821 -185.63.56.0/24 60781 -185.63.60.0/23 201794 -185.63.62.0/24 201794 -185.63.64.0/22 8758 -185.63.68.0/23 59985 -185.63.72.0/24 29518 -185.63.73.0/24 39223 -185.63.74.0/24 29518 -185.63.75.0/24 201821 -185.63.76.0/22 56805 -185.63.80.0/22 196628 -185.63.88.0/22 59862 -185.63.92.0/23 201188 -185.63.94.0/24 201188 -185.63.95.0/24 203359 -185.63.96.0/22 50825 -185.63.100.0/22 204947 -185.63.104.0/22 59984 -185.63.108.0/22 47329 -185.63.112.0/24 59979 -185.63.116.0/23 59952 -185.63.119.0/24 209540 -185.63.124.0/22 196954 -185.63.128.0/22 33988 -185.63.132.0/22 49289 -185.63.136.0/22 6830 -185.63.140.0/22 42353 -185.63.144.0/23 14413 -185.63.148.0/22 15576 -185.63.152.0/22 12859 -185.63.156.0/22 201841 -185.63.160.0/24 209646 -185.63.161.0/24 59699 -185.63.162.0/23 59699 -185.63.164.0/22 41887 -185.63.168.0/23 200043 -185.63.170.0/23 202896 -185.63.172.0/22 200435 -185.63.180.0/22 201782 -185.63.184.0/22 13122 -185.63.188.0/22 29182 -185.63.192.0/22 12807 -185.63.196.0/22 201786 -185.63.200.0/22 47329 -185.63.204.0/22 201609 -185.63.208.0/22 59978 -185.63.212.0/22 34308 -185.63.216.0/22 51669 -185.63.220.0/22 29697 -185.63.224.0/22 201772 -185.63.228.0/22 20746 -185.63.232.0/22 30815 -185.63.240.0/24 39451 -185.63.244.0/22 42804 -185.63.248.0/24 21362 -185.63.253.0/24 134512 -185.63.254.0/23 134512 -185.64.0.0/22 43940 -185.64.8.0/23 62571 -185.64.10.0/24 62571 -185.64.12.0/24 203315 -185.64.16.0/22 201607 -185.64.20.0/24 59772 -185.64.23.0/24 62052 -185.64.24.0/22 201684 -185.64.28.0/22 201743 -185.64.32.0/22 201766 -185.64.36.0/22 19419 -185.64.40.0/22 201727 -185.64.44.0/22 201776 -185.64.48.0/22 39878 -185.64.52.0/23 197725 -185.64.54.0/24 197725 -185.64.56.0/22 51840 -185.64.60.0/22 50920 -185.64.64.0/22 6696 -185.64.72.0/24 15395 -185.64.74.0/23 15395 -185.64.80.0/22 42287 -185.64.84.0/24 49699 -185.64.85.0/24 48057 -185.64.86.0/23 48057 -185.64.88.0/22 12703 -185.64.92.0/22 12310 -185.64.96.0/22 8469 -185.64.100.0/22 209706 -185.64.104.0/22 61272 -185.64.108.0/22 60820 -185.64.112.0/22 200062 -185.64.116.0/22 31736 -185.64.120.0/22 34373 -185.64.124.0/22 59921 -185.64.128.0/22 60427 -185.64.132.0/22 201679 -185.64.136.0/22 9150 -185.64.140.0/22 2635 -185.64.144.0/22 13122 -185.64.148.0/22 57119 -185.64.152.0/22 49864 -185.64.156.0/22 201698 -185.64.160.0/22 6908 -185.64.164.0/24 33810 -185.64.168.0/22 42184 -185.64.172.0/22 62012 -185.64.176.0/22 59962 -185.64.184.0/22 21232 -185.64.188.0/22 62713 -185.64.192.0/22 199139 -185.64.196.0/22 34781 -185.64.200.0/22 201756 -185.64.204.0/22 41160 -185.64.208.0/22 31724 -185.64.212.0/22 50152 -185.64.216.0/22 43541 -185.64.220.0/23 47232 -185.64.222.0/24 198668 -185.64.223.0/24 47232 -185.64.224.0/22 59820 -185.64.228.0/22 62130 -185.64.232.0/22 198731 -185.64.236.0/22 51056 -185.64.240.0/24 60267 -185.64.241.0/24 3339 -185.64.242.0/24 35394 -185.64.243.0/24 43833 -185.64.244.0/22 46160 -185.64.248.0/22 12695 -185.64.252.0/22 201755 -185.65.0.0/22 201740 -185.65.4.0/22 21235 -185.65.8.0/22 5483 -185.65.12.0/22 12739 -185.65.16.0/22 12739 -185.65.20.0/22 201745 -185.65.24.0/22 39295 -185.65.28.0/22 39567 -185.65.32.0/22 209536 -185.65.36.0/22 34001 -185.65.40.0/22 21396 -185.65.44.0/22 201747 -185.65.48.0/22 201400 -185.65.52.0/22 5524 -185.65.56.0/22 20756 -185.65.60.0/23 59950 -185.65.64.0/22 201735 -185.65.72.0/22 8368 -185.65.79.0/24 207719 -185.65.80.0/22 197161 -185.65.84.0/23 201493 -185.65.86.0/24 201493 -185.65.88.0/22 47215 -185.65.92.0/22 201730 -185.65.96.0/23 59944 -185.65.98.0/24 59944 -185.65.100.0/22 13009 -185.65.108.0/22 201739 -185.65.116.0/22 201738 -185.65.120.0/22 201719 -185.65.124.0/24 9150 -185.65.128.0/22 201358 -185.65.132.0/22 39351 -185.65.136.0/24 203988 -185.65.137.0/24 202090 -185.65.138.0/23 51698 -185.65.144.0/22 9009 -185.65.148.0/22 197068 -185.65.152.0/22 2116 -185.65.156.0/22 199496 -185.65.160.0/22 24921 -185.65.164.0/22 201508 -185.65.168.0/22 41872 -185.65.172.0/23 41095 -185.65.175.0/24 41095 -185.65.176.0/22 200550 -185.65.180.0/22 48517 -185.65.184.0/22 201704 -185.65.188.0/23 8473 -185.65.192.0/22 60294 -185.65.196.0/23 8220 -185.65.198.0/23 197637 -185.65.200.0/23 16125 -185.65.202.0/24 29182 -185.65.203.0/24 42187 -185.65.204.0/22 59895 -185.65.208.0/22 59790 -185.65.212.0/22 201731 -185.65.216.0/22 201175 -185.65.220.0/22 48689 -185.65.224.0/22 16347 -185.65.228.0/22 42560 -185.65.232.0/22 35339 -185.65.236.0/22 33968 -185.65.240.0/24 199714 -185.65.241.0/24 202329 -185.65.242.0/24 199714 -185.65.243.0/24 207160 -185.65.244.0/22 200000 -185.65.248.0/22 8399 -185.65.252.0/22 201668 -185.66.0.0/22 57030 -185.66.4.0/22 201714 -185.66.8.0/22 174 -185.66.12.0/22 45027 -185.66.16.0/22 201678 -185.66.20.0/24 59904 -185.66.23.0/24 11269 -185.66.24.0/22 201602 -185.66.28.0/22 57552 -185.66.32.0/22 20878 -185.66.36.0/22 59925 -185.66.40.0/22 197712 -185.66.44.0/22 50563 -185.66.48.0/22 28919 -185.66.52.0/24 59949 -185.66.54.0/23 59949 -185.66.56.0/22 200509 -185.66.60.0/22 8903 -185.66.64.0/22 25394 -185.66.68.0/23 6697 -185.66.70.0/24 12406 -185.66.71.0/24 6697 -185.66.72.0/22 15954 -185.66.76.0/23 62317 -185.66.78.0/24 62317 -185.66.79.0/24 35507 -185.66.80.0/22 50295 -185.66.84.0/22 201706 -185.66.90.0/24 41820 -185.66.91.0/24 201184 -185.66.92.0/22 201597 -185.66.100.0/22 24904 -185.66.104.0/24 35040 -185.66.106.0/24 35040 -185.66.108.0/22 200713 -185.66.112.0/22 47264 -185.66.116.0/22 41379 -185.66.120.0/22 59922 -185.66.124.0/23 9021 -185.66.128.0/22 29238 -185.66.132.0/22 203836 -185.66.136.0/22 203974 -185.66.140.0/23 43350 -185.66.142.0/24 200514 -185.66.143.0/24 43350 -185.66.144.0/22 42708 -185.66.148.0/22 3212 -185.66.152.0/23 201676 -185.66.155.0/24 201676 -185.66.160.0/22 58326 -185.66.164.0/24 47264 -185.66.165.0/24 48152 -185.66.167.0/24 59918 -185.66.168.0/22 9150 -185.66.172.0/24 198193 -185.66.173.0/24 201942 -185.66.174.0/24 198193 -185.66.175.0/24 39020 -185.66.176.0/22 198930 -185.66.180.0/24 201375 -185.66.184.0/22 62319 -185.66.188.0/22 43037 -185.66.192.0/22 201701 -185.66.196.0/22 12843 -185.66.200.0/22 201702 -185.66.208.0/22 31641 -185.66.212.0/22 201655 -185.66.218.0/23 41938 -185.66.220.0/22 201667 -185.66.224.0/22 59914 -185.66.228.0/22 201689 -185.66.232.0/22 41653 -185.66.237.0/24 44833 -185.66.244.0/22 41163 -185.66.248.0/22 48635 -185.66.252.0/22 12997 -185.67.0.0/24 50673 -185.67.1.0/24 196645 -185.67.2.0/23 196645 -185.67.4.0/22 60781 -185.67.8.0/22 47329 -185.67.12.0/24 59912 -185.67.14.0/24 59912 -185.67.16.0/22 57660 -185.67.20.0/23 203381 -185.67.22.0/24 203381 -185.67.24.0/22 41480 -185.67.32.0/23 201688 -185.67.36.0/23 8495 -185.67.40.0/22 2116 -185.67.44.0/22 201682 -185.67.48.0/24 3549 -185.67.49.0/24 174 -185.67.50.0/23 174 -185.67.52.0/22 201952 -185.67.56.0/22 48803 -185.67.60.0/22 39647 -185.67.64.0/22 9150 -185.67.68.0/22 47329 -185.67.74.0/23 44141 -185.67.76.0/22 62104 -185.67.80.0/22 20904 -185.67.84.0/22 60690 -185.67.88.0/22 16347 -185.67.92.0/22 56689 -185.67.96.0/22 34977 -185.67.100.0/23 57391 -185.67.102.0/23 34636 -185.67.104.0/23 29119 -185.67.106.0/24 29119 -185.67.107.0/24 50563 -185.67.108.0/22 59909 -185.67.112.0/22 59908 -185.67.116.0/22 2116 -185.67.120.0/22 59674 -185.67.124.0/22 6823 -185.67.132.0/22 39906 -185.67.136.0/24 39855 -185.67.137.0/24 54103 -185.67.138.0/24 39855 -185.67.139.0/24 54103 -185.67.141.0/24 200870 -185.67.142.0/23 200870 -185.67.144.0/23 201675 -185.67.147.0/24 201675 -185.67.148.0/23 57348 -185.67.150.0/24 57348 -185.67.152.0/22 35393 -185.67.156.0/22 61129 -185.67.160.0/22 59883 -185.67.168.0/22 39710 -185.67.172.0/22 59890 -185.67.176.0/22 29170 -185.67.180.0/22 43892 -185.67.188.0/22 201654 -185.67.192.0/22 35206 -185.67.196.0/22 200647 -185.67.200.0/22 59791 -185.67.204.0/22 59886 -185.67.208.0/23 201343 -185.67.210.0/24 29119 -185.67.211.0/24 50563 -185.67.212.0/22 59884 -185.67.216.0/22 16342 -185.67.220.0/22 201652 -185.67.224.0/22 13237 -185.67.228.0/22 201736 -185.67.232.0/22 206347 -185.67.236.0/23 200873 -185.67.238.0/24 200873 -185.67.239.0/24 62007 -185.67.240.0/23 59821 -185.67.244.0/22 201646 -185.67.248.0/22 5587 -185.67.252.0/24 43875 -185.67.253.0/24 61230 -185.67.254.0/23 43680 -185.68.0.0/22 16376 -185.68.4.0/22 200683 -185.68.8.0/22 201651 -185.68.12.0/22 201629 -185.68.16.0/22 200000 -185.68.20.0/22 201589 -185.68.24.0/22 47755 -185.68.28.0/22 201648 -185.68.32.0/22 201590 -185.68.36.0/24 59874 -185.68.38.0/23 59874 -185.68.40.0/22 201600 -185.68.44.0/22 59872 -185.68.48.0/22 201649 -185.68.52.0/22 15830 -185.68.56.0/23 57390 -185.68.58.0/23 16509 -185.68.60.0/22 48688 -185.68.64.0/22 6772 -185.68.68.0/22 59871 -185.68.72.0/22 5588 -185.68.76.0/22 197637 -185.68.80.0/22 9009 -185.68.84.0/22 59870 -185.68.88.0/22 201644 -185.68.92.0/22 56577 -185.68.96.0/22 201650 -185.68.100.0/22 201643 -185.68.104.0/22 41484 -185.68.108.0/23 201446 -185.68.110.0/24 201446 -185.68.111.0/24 198432 -185.68.112.0/24 12703 -185.68.114.0/23 24931 -185.68.116.0/22 34456 -185.68.120.0/22 201857 -185.68.128.0/23 209772 -185.68.130.0/23 197648 -185.68.132.0/22 59866 -185.68.136.0/22 202077 -185.68.144.0/24 206179 -185.68.145.0/24 31261 -185.68.146.0/23 31261 -185.68.148.0/22 59859 -185.68.152.0/22 61165 -185.68.156.0/22 201341 -185.68.161.0/24 49627 -185.68.162.0/23 49627 -185.68.164.0/22 201625 -185.68.168.0/22 201627 -185.68.172.0/22 59865 -185.68.176.0/22 3257 -185.68.180.0/23 15830 -185.68.182.0/24 205644 -185.68.183.0/24 15830 -185.68.184.0/22 9009 -185.68.188.0/24 6718 -185.68.190.0/23 200760 -185.68.192.0/22 174 -185.68.196.0/23 59800 -185.68.198.0/23 59802 -185.68.200.0/22 2856 -185.68.204.0/22 20932 -185.68.208.0/22 201601 -185.68.212.0/23 203208 -185.68.214.0/24 203208 -185.68.215.0/24 201594 -185.68.216.0/22 58239 -185.68.222.0/23 201618 -185.68.228.0/23 50618 -185.68.230.0/23 8487 -185.68.232.0/23 39356 -185.68.234.0/24 39151 -185.68.235.0/24 39356 -185.68.236.0/22 201621 -185.68.240.0/22 201517 -185.68.244.0/22 9009 -185.68.252.0/22 201370 -185.69.0.0/22 196826 -185.69.7.0/24 198589 -185.69.8.0/22 199952 -185.69.12.0/22 59849 -185.69.16.0/22 34661 -185.69.20.0/22 35434 -185.69.24.0/23 44624 -185.69.26.0/24 44624 -185.69.27.0/24 41679 -185.69.28.0/22 59847 -185.69.32.0/22 201634 -185.69.36.0/22 13170 -185.69.40.0/22 51873 -185.69.44.0/24 1257 -185.69.48.0/23 12426 -185.69.50.0/24 29286 -185.69.51.0/24 12426 -185.69.52.0/22 62282 -185.69.56.0/24 6910 -185.69.57.0/24 9050 -185.69.58.0/23 6910 -185.69.60.0/22 203822 -185.69.64.0/22 204819 -185.69.68.0/23 201608 -185.69.70.0/23 198977 -185.69.72.0/22 13170 -185.69.76.0/22 201605 -185.69.80.0/22 201606 -185.69.84.0/22 42973 -185.69.88.0/22 12989 -185.69.92.0/24 15623 -185.69.96.0/22 12301 -185.69.100.0/22 59545 -185.69.104.0/22 201603 -185.69.108.0/22 56547 -185.69.112.0/22 201521 -185.69.116.0/24 59836 -185.69.118.0/24 59836 -185.69.120.0/22 20473 -185.69.124.0/22 34456 -185.69.128.0/22 54058 -185.69.136.0/22 43284 -185.69.140.0/22 201599 -185.69.144.0/22 25135 -185.69.148.0/23 59834 -185.69.152.0/22 200000 -185.69.156.0/22 201665 -185.69.160.0/22 5404 -185.69.164.0/23 42160 -185.69.166.0/23 206254 -185.69.168.0/24 59835 -185.69.172.0/24 201598 -185.69.176.0/24 201545 -185.69.178.0/24 201545 -185.69.179.0/24 12399 -185.69.180.0/22 196968 -185.69.185.0/24 205471 -185.69.186.0/24 59974 -185.69.187.0/24 201558 -185.69.188.0/22 12874 -185.69.192.0/22 16138 -185.69.196.0/22 199265 -185.69.200.0/22 62317 -185.69.208.0/23 50880 -185.69.211.0/24 50880 -185.69.212.0/23 29644 -185.69.214.0/24 31122 -185.69.215.0/24 29644 -185.69.216.0/22 34683 -185.69.224.0/22 198095 -185.69.232.0/22 48635 -185.69.236.0/22 62149 -185.69.240.0/24 203960 -185.69.244.0/22 51265 -185.69.248.0/23 15830 -185.69.250.0/24 15830 -185.69.251.0/24 203734 -185.69.252.0/22 202211 -185.70.0.0/22 49115 -185.70.8.0/22 201536 -185.70.12.0/24 57135 -185.70.13.0/24 62351 -185.70.14.0/23 49091 -185.70.16.0/22 44291 -185.70.20.0/22 51531 -185.70.24.0/22 207015 -185.70.28.0/22 29650 -185.70.32.0/22 201353 -185.70.36.0/22 59828 -185.70.40.0/22 62371 -185.70.44.0/23 57948 -185.70.46.0/24 57948 -185.70.47.0/24 49544 -185.70.48.0/22 47176 -185.70.52.0/22 16010 -185.70.56.0/22 59817 -185.70.60.0/22 24631 -185.70.68.0/22 21232 -185.70.72.0/22 59827 -185.70.76.0/22 199081 -185.70.80.0/22 42162 -185.70.84.0/22 42926 -185.70.88.0/22 31273 -185.70.96.0/22 42910 -185.70.100.0/24 205019 -185.70.104.0/22 49335 -185.70.108.0/22 34187 -185.70.114.0/23 48645 -185.70.116.0/22 204482 -185.70.120.0/22 60979 -185.70.128.0/22 59815 -185.70.132.0/22 57014 -185.70.136.0/22 51151 -185.70.140.0/22 201411 -185.70.144.0/22 200567 -185.70.148.0/22 24749 -185.70.152.0/22 56882 -185.70.160.0/22 59806 -185.70.164.0/22 201572 -185.70.168.0/22 57022 -185.70.172.0/22 200661 -185.70.176.0/22 35798 -185.70.180.0/22 34254 -185.70.184.0/22 57043 -185.70.188.0/22 31252 -185.70.192.0/23 201573 -185.70.196.0/22 48289 -185.70.200.0/22 6762 -185.70.212.0/23 24642 -185.70.216.0/22 201559 -185.70.220.0/22 6830 -185.70.224.0/24 208923 -185.70.228.0/22 44439 -185.70.232.0/22 48522 -185.70.240.0/22 59803 -185.70.244.0/23 59810 -185.70.248.0/22 201415 -185.71.4.0/22 49296 -185.71.8.0/22 59755 -185.71.12.0/22 15623 -185.71.16.0/22 21040 -185.71.20.0/22 15997 -185.71.24.0/22 59799 -185.71.28.0/24 62064 -185.71.29.0/24 202676 -185.71.30.0/24 202676 -185.71.31.0/24 39263 -185.71.32.0/23 3209 -185.71.34.0/24 210217 -185.71.35.0/24 3209 -185.71.36.0/22 201838 -185.71.40.0/22 201548 -185.71.44.0/24 201362 -185.71.47.0/24 201045 -185.71.52.0/22 43901 -185.71.56.0/22 204025 -185.71.60.0/22 60781 -185.71.64.0/23 59796 -185.71.66.0/24 42745 -185.71.67.0/24 59796 -185.71.68.0/22 8595 -185.71.72.0/22 24916 -185.71.76.0/22 43247 -185.71.80.0/22 59833 -185.71.84.0/22 201554 -185.71.88.0/22 44252 -185.71.92.0/22 201542 -185.71.96.0/22 3058 -185.71.100.0/22 12703 -185.71.104.0/22 197862 -185.71.108.0/22 28757 -185.71.112.0/22 21040 -185.71.116.0/22 29286 -185.71.120.0/22 59780 -185.71.124.0/22 34624 -185.71.128.0/22 43513 -185.71.140.0/22 52145 -185.71.144.0/22 9009 -185.71.148.0/22 198682 -185.71.152.0/22 58224 -185.71.160.0/22 61194 -185.71.164.0/22 201535 -185.71.168.0/22 59843 -185.71.172.0/22 201522 -185.71.176.0/22 200675 -185.71.180.0/22 201524 -185.71.184.0/22 12703 -185.71.188.0/22 202069 -185.71.192.0/22 201540 -185.71.200.0/22 200773 -185.71.208.0/22 49455 -185.71.212.0/22 9009 -185.71.216.0/24 43260 -185.71.217.0/24 201534 -185.71.218.0/23 201534 -185.71.220.0/22 39855 -185.71.224.0/22 61047 -185.71.228.0/23 36351 -185.71.230.0/24 134433 -185.71.231.0/24 36351 -185.71.232.0/22 201533 -185.71.236.0/22 59786 -185.71.240.0/23 204190 -185.71.242.0/24 204190 -185.71.244.0/22 201352 -185.71.248.0/22 59785 -185.71.252.0/22 28760 -185.72.0.0/22 202583 -185.72.4.0/22 200906 -185.72.12.0/23 3339 -185.72.14.0/24 3339 -185.72.15.0/24 60267 -185.72.16.0/24 59649 -185.72.19.0/24 205914 -185.72.20.0/22 59414 -185.72.24.0/22 49100 -185.72.32.0/22 60920 -185.72.36.0/22 3292 -185.72.40.0/22 201518 -185.72.44.0/22 35394 -185.72.48.0/24 59781 -185.72.49.0/24 64406 -185.72.51.0/24 208652 -185.72.52.0/22 201435 -185.72.56.0/24 60916 -185.72.57.0/24 209142 -185.72.58.0/24 31287 -185.72.59.0/24 64464 -185.72.60.0/22 3212 -185.72.64.0/22 13030 -185.72.68.0/22 201341 -185.72.72.0/22 31510 -185.72.76.0/22 59777 -185.72.82.0/24 12880 -185.72.84.0/22 43513 -185.72.88.0/23 203400 -185.72.92.0/22 59778 -185.72.96.0/22 3292 -185.72.100.0/22 202092 -185.72.104.0/22 56993 -185.72.108.0/22 204103 -185.72.112.0/22 50563 -185.72.116.0/22 201587 -185.72.120.0/22 59776 -185.72.124.0/22 33915 -185.72.128.0/22 200705 -185.72.132.0/22 28878 -185.72.140.0/23 31027 -185.72.142.0/24 3292 -185.72.144.0/22 201499 -185.72.148.0/24 1241 -185.72.149.0/24 12361 -185.72.150.0/24 42831 -185.72.151.0/24 31083 -185.72.152.0/22 201449 -185.72.156.0/22 29854 -185.72.164.0/22 201407 -185.72.172.0/22 201506 -185.72.176.0/22 51417 -185.72.180.0/22 25042 -185.72.188.0/22 34456 -185.72.192.0/22 201505 -185.72.196.0/22 50599 -185.72.200.0/22 202208 -185.72.204.0/22 43513 -185.72.208.0/22 201503 -185.72.212.0/22 201500 -185.72.216.0/22 197674 -185.72.220.0/22 201656 -185.72.224.0/22 31059 -185.72.228.0/22 20848 -185.72.232.0/22 9136 -185.72.240.0/22 47602 -185.72.244.0/22 47447 -185.72.248.0/22 49594 -185.72.252.0/24 49571 -185.72.253.0/24 39216 -185.72.254.0/24 49571 -185.73.0.0/22 31549 -185.73.4.0/22 197907 -185.73.12.0/22 5381 -185.73.16.0/22 201211 -185.73.20.0/22 29484 -185.73.24.0/22 201454 -185.73.28.0/22 201460 -185.73.32.0/23 60781 -185.73.34.0/24 60781 -185.73.36.0/22 59764 -185.73.40.0/22 201494 -185.73.44.0/22 8943 -185.73.48.0/22 201491 -185.73.52.0/22 50446 -185.73.56.0/22 39135 -185.73.64.0/23 206999 -185.73.67.0/24 206999 -185.73.68.0/24 59725 -185.73.72.0/24 31027 -185.73.73.0/24 3292 -185.73.74.0/24 31027 -185.73.76.0/22 59754 -185.73.80.0/22 201809 -185.73.87.0/24 50914 -185.73.88.0/22 58321 -185.73.92.0/22 201510 -185.73.96.0/22 42947 -185.73.100.0/22 201476 -185.73.104.0/21 201476 -185.73.112.0/24 58262 -185.73.113.0/24 39655 -185.73.114.0/24 58262 -185.73.115.0/24 39655 -185.73.116.0/22 201436 -185.73.120.0/22 15600 -185.73.124.0/22 59753 -185.73.128.0/22 8100 -185.73.135.0/24 50304 -185.73.136.0/22 12779 -185.73.140.0/23 201478 -185.73.144.0/22 204709 -185.73.148.0/22 58246 -185.73.152.0/22 56595 -185.73.156.0/22 59748 -185.73.160.0/22 12570 -185.73.164.0/22 57300 -185.73.168.0/22 201466 -185.73.172.0/24 200521 -185.73.174.0/24 200521 -185.73.176.0/22 203292 -185.73.180.0/22 9009 -185.73.184.0/22 29611 -185.73.188.0/22 3339 -185.73.192.0/22 44386 -185.73.196.0/22 42525 -185.73.200.0/22 61135 -185.73.204.0/22 200780 -185.73.208.0/22 39288 -185.73.216.0/23 9009 -185.73.218.0/23 57129 -185.73.220.0/22 32338 -185.73.228.0/22 20853 -185.73.232.0/22 24904 -185.73.236.0/23 202463 -185.73.238.0/24 202463 -185.73.240.0/24 59741 -185.73.242.0/24 59891 -185.73.243.0/24 204617 -185.73.244.0/22 34606 -185.73.248.0/23 198434 -185.73.250.0/24 198434 -185.73.251.0/24 203150 -185.74.0.0/22 8596 -185.74.4.0/22 202660 -185.74.8.0/22 199167 -185.74.12.0/22 60576 -185.74.16.0/22 56710 -185.74.20.0/22 6663 -185.74.24.0/24 202529 -185.74.25.0/24 201126 -185.74.26.0/23 201126 -185.74.28.0/22 42760 -185.74.32.0/22 199811 -185.74.36.0/22 207227 -185.74.40.0/22 57902 -185.74.47.0/24 36351 -185.74.48.0/22 59701 -185.74.52.0/22 35600 -185.74.56.0/22 42455 -185.74.64.0/23 60664 -185.74.68.0/22 29222 -185.74.72.0/22 8301 -185.74.76.0/23 8315 -185.74.80.0/23 43578 -185.74.83.0/24 201942 -185.74.84.0/22 60782 -185.74.88.0/23 59737 -185.74.90.0/24 41640 -185.74.96.0/22 200641 -185.74.100.0/22 49529 -185.74.108.0/22 15600 -185.74.112.0/20 15600 -185.74.128.0/19 15600 -185.74.160.0/22 15600 -185.74.164.0/22 201442 -185.74.168.0/23 60914 -185.74.171.0/24 60914 -185.74.174.0/23 50290 -185.74.176.0/22 201437 -185.74.180.0/22 42652 -185.74.184.0/22 203468 -185.74.188.0/22 50316 -185.74.192.0/22 201453 -185.74.198.0/23 203933 -185.74.200.0/22 197662 -185.74.204.0/22 201457 -185.74.208.0/22 15389 -185.74.212.0/22 58260 -185.74.216.0/22 1299 -185.74.220.0/22 59730 -185.74.224.0/22 51483 -185.74.228.0/22 51004 -185.74.232.0/21 59395 -185.74.240.0/22 42820 -185.74.244.0/22 201438 -185.74.248.0/22 43843 -185.74.252.0/22 59939 -185.75.0.0/22 31106 -185.75.4.0/22 60312 -185.75.8.0/22 201440 -185.75.12.0/22 201942 -185.75.16.0/22 58025 -185.75.20.0/23 50129 -185.75.22.0/23 198193 -185.75.28.0/23 39326 -185.75.30.0/24 39326 -185.75.31.0/24 20679 -185.75.32.0/22 198385 -185.75.36.0/22 201434 -185.75.40.0/22 20626 -185.75.44.0/22 62222 -185.75.52.0/24 50192 -185.75.54.0/24 56514 -185.75.55.0/24 49907 -185.75.56.0/23 204638 -185.75.58.0/24 204638 -185.75.59.0/24 3225 -185.75.60.0/23 15395 -185.75.62.0/23 16509 -185.75.64.0/22 58037 -185.75.68.0/22 207225 -185.75.72.0/22 198570 -185.75.76.0/23 56898 -185.75.78.0/24 56898 -185.75.79.0/24 262254 -185.75.80.0/22 202087 -185.75.84.0/22 208729 -185.75.88.0/22 62222 -185.75.92.0/22 39884 -185.75.97.0/24 201145 -185.75.98.0/23 201145 -185.75.104.0/22 199909 -185.75.108.0/22 196865 -185.75.116.0/22 48926 -185.75.120.0/22 198722 -185.75.124.0/22 201420 -185.75.128.0/23 201422 -185.75.130.0/23 59397 -185.75.132.0/22 9009 -185.75.136.0/22 44500 -185.75.140.0/22 35625 -185.75.144.0/22 200562 -185.75.148.0/24 201396 -185.75.149.0/24 56912 -185.75.150.0/24 56912 -185.75.151.0/24 200491 -185.75.152.0/24 197066 -185.75.153.0/24 15576 -185.75.154.0/23 197066 -185.75.156.0/22 28878 -185.75.160.0/22 204373 -185.75.164.0/22 200924 -185.75.168.0/23 20284 -185.75.172.0/23 4809 -185.75.174.0/24 4809 -185.75.176.0/22 20648 -185.75.180.0/22 25341 -185.75.184.0/22 16205 -185.75.189.0/24 201417 -185.75.190.0/24 201417 -185.75.192.0/22 5483 -185.75.196.0/23 62173 -185.75.200.0/22 201337 -185.75.204.0/22 58331 -185.75.208.0/22 12506 -185.75.212.0/22 42689 -185.75.216.0/22 197082 -185.75.224.0/22 29256 -185.75.228.0/24 15465 -185.75.229.0/24 32382 -185.75.230.0/24 14886 -185.75.231.0/24 9890 -185.75.232.0/22 39392 -185.75.236.0/22 24651 -185.75.240.0/23 8218 -185.75.242.0/23 201308 -185.75.244.0/23 29119 -185.75.246.0/24 41960 -185.75.250.0/24 50338 -185.75.252.0/22 48684 -185.76.0.0/22 198551 -185.76.4.0/23 33876 -185.76.8.0/24 29401 -185.76.9.0/24 60068 -185.76.10.0/24 60068 -185.76.12.0/22 207967 -185.76.16.0/22 47886 -185.76.20.0/22 201408 -185.76.32.0/22 50597 -185.76.36.0/22 31493 -185.76.40.0/22 20902 -185.76.44.0/24 12703 -185.76.47.0/24 26338 -185.76.48.0/22 29611 -185.76.52.0/22 51474 -185.76.56.0/22 201367 -185.76.60.0/22 207743 -185.76.64.0/22 200719 -185.76.68.0/22 199995 -185.76.72.0/23 201402 -185.76.74.0/23 201391 -185.76.77.0/24 39020 -185.76.78.0/23 50129 -185.76.80.0/24 28761 -185.76.81.0/24 200441 -185.76.82.0/24 200420 -185.76.83.0/24 204259 -185.76.84.0/22 224 -185.76.88.0/22 201401 -185.76.92.0/24 34178 -185.76.96.0/22 198570 -185.76.100.0/24 6453 -185.76.101.0/24 43279 -185.76.102.0/23 43279 -185.76.104.0/24 200839 -185.76.108.0/23 25227 -185.76.110.0/24 25227 -185.76.112.0/22 201393 -185.76.120.0/22 205919 -185.76.124.0/22 41960 -185.76.128.0/22 61137 -185.76.132.0/22 1140 -185.76.136.0/22 25019 -185.76.140.0/22 199348 -185.76.144.0/22 48287 -185.76.148.0/22 20860 -185.76.152.0/24 34984 -185.76.160.0/22 21080 -185.76.164.0/22 198225 -185.76.168.0/22 201401 -185.76.177.0/24 38999 -185.76.178.0/24 38999 -185.76.180.0/24 6830 -185.76.181.0/24 2386 -185.76.188.0/22 50629 -185.76.192.0/22 51630 -185.76.196.0/24 49177 -185.76.200.0/22 29144 -185.76.204.0/22 201340 -185.76.208.0/24 41489 -185.76.212.0/22 48846 -185.76.216.0/22 57877 -185.76.220.0/22 56868 -185.76.224.0/22 49567 -185.76.228.0/24 10753 -185.76.229.0/24 2830 -185.76.230.0/24 10753 -185.76.231.0/24 2830 -185.76.232.0/22 201193 -185.76.236.0/22 34762 -185.76.240.0/22 9009 -185.76.244.0/22 200127 -185.76.248.0/22 56547 -185.76.252.0/22 43776 -185.77.0.0/24 15924 -185.77.1.0/24 201364 -185.77.2.0/24 201364 -185.77.6.0/23 22048 -185.77.8.0/22 39046 -185.77.12.0/22 201366 -185.77.20.0/24 59455 -185.77.24.0/22 43995 -185.77.28.0/22 201356 -185.77.32.0/22 44920 -185.77.36.0/24 6762 -185.77.44.0/22 48576 -185.77.48.0/22 206182 -185.77.52.0/22 48491 -185.77.56.0/22 201354 -185.77.64.0/22 34920 -185.77.68.0/23 201344 -185.77.71.0/24 201344 -185.77.72.0/22 8426 -185.77.76.0/23 201029 -185.77.78.0/24 24906 -185.77.80.0/22 34920 -185.77.84.0/22 12637 -185.77.88.0/24 201032 -185.77.91.0/24 201032 -185.77.92.0/22 31736 -185.77.96.0/24 198345 -185.77.97.0/24 200615 -185.77.98.0/23 200615 -185.77.100.0/22 49223 -185.77.104.0/22 48360 -185.77.108.0/22 201347 -185.77.112.0/22 48310 -185.77.116.0/22 201165 -185.77.128.0/22 201630 -185.77.132.0/22 201346 -185.77.136.0/23 9009 -185.77.138.0/23 57129 -185.77.140.0/23 397719 -185.77.142.0/24 397833 -185.77.144.0/22 8290 -185.77.148.0/22 60139 -185.77.152.0/23 57168 -185.77.155.0/24 58940 -185.77.156.0/23 60609 -185.77.158.0/24 60609 -185.77.159.0/24 16206 -185.77.160.0/24 28716 -185.77.161.0/24 31638 -185.77.162.0/24 30848 -185.77.164.0/22 201341 -185.77.168.0/22 201337 -185.77.172.0/22 34920 -185.77.176.0/22 200810 -185.77.180.0/22 48072 -185.77.184.0/22 202005 -185.77.190.0/23 203170 -185.77.192.0/22 51090 -185.77.196.0/24 61029 -185.77.197.0/24 48260 -185.77.198.0/23 48260 -185.77.204.0/22 57424 -185.77.208.0/22 49544 -185.77.212.0/23 201338 -185.77.216.0/21 9009 -185.77.224.0/22 35916 -185.77.228.0/22 62205 -185.77.232.0/22 199361 -185.77.236.0/22 62169 -185.77.240.0/22 62205 -185.77.244.0/22 29240 -185.77.248.0/24 58018 -185.77.249.0/24 209706 -185.77.250.0/23 209706 -185.77.252.0/22 206228 -185.78.0.0/22 16030 -185.78.8.0/22 59953 -185.78.12.0/22 28851 -185.78.16.0/22 43648 -185.78.20.0/22 48434 -185.78.24.0/22 201942 -185.78.28.0/22 198610 -185.78.32.0/22 48940 -185.78.36.0/22 29084 -185.78.40.0/22 60481 -185.78.44.0/22 47736 -185.78.48.0/22 201333 -185.78.52.0/22 201289 -185.78.60.0/22 198930 -185.78.64.0/22 200858 -185.78.68.0/22 43568 -185.78.72.0/23 201332 -185.78.74.0/24 201332 -185.78.75.0/24 203778 -185.78.76.0/23 57129 -185.78.78.0/23 9009 -185.78.80.0/22 201900 -185.78.84.0/22 43260 -185.78.88.0/22 16353 -185.78.92.0/22 42437 -185.78.96.0/22 201330 -185.78.100.0/22 197376 -185.78.105.0/24 137443 -185.78.106.0/23 137443 -185.78.112.0/22 47551 -185.78.116.0/22 197204 -185.78.120.0/24 13030 -185.78.122.0/24 13030 -185.78.124.0/22 51395 -185.78.128.0/24 16229 -185.78.129.0/24 203206 -185.78.130.0/23 8544 -185.78.132.0/22 41676 -185.78.136.0/22 12365 -185.78.140.0/22 201324 -185.78.144.0/22 49800 -185.78.148.0/22 201323 -185.78.152.0/22 42005 -185.78.156.0/22 30781 -185.78.160.0/24 25465 -185.78.161.0/24 260 -185.78.162.0/24 27471 -185.78.163.0/24 260 -185.78.164.0/22 396164 -185.78.172.0/22 49959 -185.78.176.0/22 203986 -185.78.180.0/22 48517 -185.78.188.0/22 31736 -185.78.192.0/23 5089 -185.78.196.0/22 25151 -185.78.204.0/22 8426 -185.78.208.0/22 202128 -185.78.212.0/22 198144 -185.78.216.0/24 49413 -185.78.217.0/24 202038 -185.78.220.0/22 47521 -185.78.228.0/22 34822 -185.78.232.0/23 39248 -185.78.234.0/23 47139 -185.78.236.0/24 201298 -185.78.240.0/22 25467 -185.78.244.0/22 5384 -185.78.248.0/22 201311 -185.78.252.0/22 58243 -185.79.0.0/22 42109 -185.79.4.0/22 199290 -185.79.8.0/22 43366 -185.79.12.0/22 201274 -185.79.20.0/22 15704 -185.79.24.0/22 200561 -185.79.28.0/22 35486 -185.79.32.0/22 41959 -185.79.36.0/22 44293 -185.79.40.0/22 25455 -185.79.44.0/22 35684 -185.79.48.0/22 9009 -185.79.52.0/22 8224 -185.79.56.0/22 21472 -185.79.60.0/22 44045 -185.79.64.0/22 201157 -185.79.68.0/22 31690 -185.79.72.0/22 35784 -185.79.76.0/22 9009 -185.79.80.0/23 49509 -185.79.82.0/23 51514 -185.79.84.0/23 44763 -185.79.88.0/22 50136 -185.79.92.0/22 20845 -185.79.98.0/23 61391 -185.79.100.0/22 202173 -185.79.104.0/22 56460 -185.79.108.0/23 59455 -185.79.110.0/23 201300 -185.79.112.0/22 50673 -185.79.116.0/23 199599 -185.79.118.0/24 59673 -185.79.119.0/24 199599 -185.79.120.0/22 29667 -185.79.124.0/22 201283 -185.79.129.0/24 200165 -185.79.130.0/23 200165 -185.79.132.0/22 210260 -185.79.136.0/22 9009 -185.79.140.0/22 14340 -185.79.144.0/22 39263 -185.79.152.0/22 58291 -185.79.156.0/22 58224 -185.79.168.0/22 33873 -185.79.180.0/24 201481 -185.79.182.0/24 201481 -185.79.184.0/22 201287 -185.79.188.0/22 201293 -185.79.192.0/22 43445 -185.79.196.0/22 39892 -185.79.200.0/22 15576 -185.79.204.0/22 57676 -185.79.208.0/22 15657 -185.79.212.0/24 206768 -185.79.216.0/23 201284 -185.79.218.0/24 201284 -185.79.220.0/22 57633 -185.79.224.0/22 41962 -185.79.228.0/22 3212 -185.79.232.0/22 59414 -185.79.236.0/24 200928 -185.79.237.0/24 199599 -185.79.238.0/24 202824 -185.79.239.0/24 199599 -185.79.240.0/22 206957 -185.79.244.0/22 62282 -185.79.248.0/22 51975 -185.79.252.0/22 50255 -185.80.0.0/22 201200 -185.80.4.0/22 48348 -185.80.8.0/22 201279 -185.80.12.0/22 59455 -185.80.16.0/22 201246 -185.80.20.0/22 205424 -185.80.28.0/24 201430 -185.80.32.0/24 60795 -185.80.33.0/24 42673 -185.80.34.0/24 42673 -185.80.35.0/24 197704 -185.80.36.0/22 27381 -185.80.40.0/22 201272 -185.80.48.0/22 62214 -185.80.52.0/22 59711 -185.80.57.0/24 59945 -185.80.58.0/24 59945 -185.80.59.0/24 51373 -185.80.60.0/22 31264 -185.80.64.0/22 198433 -185.80.68.0/22 43191 -185.80.72.0/22 42075 -185.80.76.0/22 2860 -185.80.80.0/22 21299 -185.80.84.0/22 48294 -185.80.88.0/24 201245 -185.80.92.0/22 45031 -185.80.96.0/22 31042 -185.80.100.0/22 58224 -185.80.108.0/22 16116 -185.80.112.0/22 201117 -185.80.116.0/22 47443 -185.80.120.0/22 16097 -185.80.124.0/22 55222 -185.80.128.0/22 61053 -185.80.132.0/22 201261 -185.80.140.0/22 30873 -185.80.144.0/23 51324 -185.80.146.0/24 51324 -185.80.147.0/24 206583 -185.80.148.0/22 45027 -185.80.152.0/22 201260 -185.80.156.0/22 2116 -185.80.160.0/22 197790 -185.80.168.0/22 57154 -185.80.172.0/22 39232 -185.80.176.0/22 43858 -185.80.180.0/22 49788 -185.80.184.0/22 201213 -185.80.190.0/24 1921 -185.80.192.0/22 34362 -185.80.196.0/23 207504 -185.80.198.0/23 44691 -185.80.204.0/22 60768 -185.80.208.0/22 25176 -185.80.212.0/22 58321 -185.80.216.0/22 59702 -185.80.220.0/22 13213 -185.80.224.0/23 201249 -185.80.227.0/24 208400 -185.80.228.0/22 15886 -185.80.232.0/22 24875 -185.80.236.0/22 43513 -185.80.240.0/22 201248 -185.80.244.0/24 208831 -185.80.245.0/24 31477 -185.80.246.0/24 31477 -185.80.247.0/24 39292 -185.80.248.0/22 50009 -185.80.252.0/22 43645 -185.81.0.0/21 52030 -185.81.8.0/22 62353 -185.81.12.0/23 8542 -185.81.14.0/23 3292 -185.81.16.0/22 31708 -185.81.20.0/22 201237 -185.81.24.0/22 201646 -185.81.28.0/22 35471 -185.81.32.0/24 44558 -185.81.33.0/24 201241 -185.81.34.0/23 201241 -185.81.36.0/22 48564 -185.81.40.0/22 44543 -185.81.44.0/22 35189 -185.81.48.0/23 43513 -185.81.50.0/24 35333 -185.81.51.0/24 43513 -185.81.52.0/22 44494 -185.81.56.0/22 197227 -185.81.60.0/22 31042 -185.81.64.0/22 16143 -185.81.68.0/22 50108 -185.81.72.0/23 42874 -185.81.74.0/23 46186 -185.81.76.0/22 201153 -185.81.80.0/21 39232 -185.81.92.0/22 49628 -185.81.96.0/24 201227 -185.81.97.0/24 205217 -185.81.98.0/24 49981 -185.81.99.0/24 201227 -185.81.100.0/22 59662 -185.81.104.0/24 205136 -185.81.105.0/24 205594 -185.81.106.0/23 197099 -185.81.108.0/22 50821 -185.81.112.0/23 61046 -185.81.114.0/23 59711 -185.81.116.0/22 9158 -185.81.120.0/21 42635 -185.81.128.0/23 43513 -185.81.132.0/22 3348 -185.81.136.0/24 61262 -185.81.138.0/24 61262 -185.81.140.0/22 57513 -185.81.144.0/22 9009 -185.81.148.0/22 201059 -185.81.152.0/22 42926 -185.81.156.0/22 198375 -185.81.160.0/22 13009 -185.81.164.0/22 62282 -185.81.168.0/22 8607 -185.81.172.0/22 9009 -185.81.176.0/22 8607 -185.81.180.0/22 42635 -185.81.184.0/22 9009 -185.81.188.0/22 35266 -185.81.192.0/22 8468 -185.81.196.0/22 5408 -185.81.200.0/24 3215 -185.81.202.0/24 8218 -185.81.204.0/23 51453 -185.81.208.0/24 42388 -185.81.209.0/24 42473 -185.81.210.0/23 8412 -185.81.212.0/22 1764 -185.81.216.0/22 15723 -185.81.220.0/22 8492 -185.81.224.0/22 48517 -185.81.228.0/22 200990 -185.81.232.0/22 13037 -185.81.236.0/23 42926 -185.81.238.0/24 42926 -185.81.239.0/24 20649 -185.81.240.0/22 15702 -185.81.248.0/22 43287 -185.82.0.0/22 44787 -185.82.6.0/24 201214 -185.82.8.0/24 9002 -185.82.9.0/24 5066 -185.82.10.0/24 9002 -185.82.11.0/24 200473 -185.82.12.0/22 58290 -185.82.16.0/22 15943 -185.82.20.0/22 44066 -185.82.24.0/22 201211 -185.82.28.0/22 49100 -185.82.32.0/24 59989 -185.82.34.0/24 59989 -185.82.35.0/24 34447 -185.82.36.0/22 201210 -185.82.40.0/22 43243 -185.82.44.0/22 200947 -185.82.52.0/22 42475 -185.82.56.0/22 42635 -185.82.60.0/22 31736 -185.82.64.0/22 48359 -185.82.68.0/22 42254 -185.82.72.0/22 47869 -185.82.76.0/22 31727 -185.82.80.0/22 203187 -185.82.84.0/22 198710 -185.82.88.0/22 39855 -185.82.92.0/22 201201 -185.82.96.0/22 42183 -185.82.100.0/22 201199 -185.82.104.0/22 197423 -185.82.108.0/22 203675 -185.82.112.0/22 201722 -185.82.116.0/22 202105 -185.82.120.0/22 21360 -185.82.124.0/23 43513 -185.82.126.0/23 52173 -185.82.128.0/22 201134 -185.82.132.0/22 51502 -185.82.136.0/22 201194 -185.82.140.0/22 42812 -185.82.144.0/22 41993 -185.82.148.0/22 41605 -185.82.156.0/22 56329 -185.82.160.0/23 3257 -185.82.162.0/24 7018 -185.82.163.0/24 9255 -185.82.164.0/22 24631 -185.82.168.0/22 31638 -185.82.172.0/22 56430 -185.82.176.0/23 60986 -185.82.184.0/22 34108 -185.82.188.0/22 12859 -185.82.196.0/22 210267 -185.82.200.0/22 60117 -185.82.204.0/22 61174 -185.82.208.0/22 7979 -185.82.212.0/23 60592 -185.82.214.0/24 60592 -185.82.215.0/24 201811 -185.82.216.0/22 59729 -185.82.220.0/22 43260 -185.82.224.0/22 201102 -185.82.228.0/22 198944 -185.82.232.0/22 42120 -185.82.236.0/22 34093 -185.82.240.0/23 201111 -185.82.244.0/22 12737 -185.82.248.0/23 47273 -185.82.250.0/24 47273 -185.82.251.0/24 201221 -185.82.252.0/22 205424 -185.83.0.0/22 201183 -185.83.4.0/22 51349 -185.83.8.0/22 47886 -185.83.16.0/22 2116 -185.83.20.0/22 34989 -185.83.24.0/24 201177 -185.83.29.0/24 58256 -185.83.30.0/23 58256 -185.83.32.0/22 12414 -185.83.36.0/22 201174 -185.83.40.0/22 15830 -185.83.44.0/22 202748 -185.83.48.0/22 201168 -185.83.52.0/22 44314 -185.83.56.0/22 61296 -185.83.60.0/22 31424 -185.83.64.0/22 50823 -185.83.68.0/22 55081 -185.83.72.0/22 49872 -185.83.80.0/22 50795 -185.83.88.0/22 49100 -185.83.92.0/22 35100 -185.83.96.0/22 61047 -185.83.100.0/22 50526 -185.83.104.0/22 59631 -185.83.108.0/22 64462 -185.83.112.0/22 59441 -185.83.116.0/22 201172 -185.83.120.0/22 48954 -185.83.132.0/22 16206 -185.83.136.0/22 50083 -185.83.140.0/22 29990 -185.83.144.0/22 51559 -185.83.148.0/22 202087 -185.83.152.0/22 204640 -185.83.156.0/22 2733 -185.83.160.0/22 201105 -185.83.164.0/22 2116 -185.83.168.0/22 51048 -185.83.172.0/22 62166 -185.83.176.0/24 202166 -185.83.178.0/23 202166 -185.83.180.0/22 202391 -185.83.184.0/22 58256 -185.83.188.0/22 3215 -185.83.192.0/22 204712 -185.83.196.0/22 43212 -185.83.200.0/22 201150 -185.83.204.0/22 201166 -185.83.208.0/22 42468 -185.83.212.0/23 44222 -185.83.214.0/24 34962 -185.83.215.0/24 206898 -185.83.216.0/22 43350 -185.83.220.0/23 201156 -185.83.222.0/24 1680 -185.83.224.0/22 199235 -185.83.232.0/24 9085 -185.83.236.0/22 34659 -185.83.240.0/22 44322 -185.83.244.0/22 8467 -185.83.248.0/22 43652 -185.83.252.0/22 200899 -185.84.0.0/23 53930 -185.84.2.0/24 53930 -185.84.4.0/22 201155 -185.84.8.0/22 44212 -185.84.12.0/22 43905 -185.84.16.0/22 2914 -185.84.20.0/23 17088 -185.84.22.0/24 17088 -185.84.23.0/24 36102 -185.84.24.0/24 48517 -185.84.28.0/23 201146 -185.84.30.0/24 200134 -185.84.31.0/24 197603 -185.84.32.0/22 50418 -185.84.36.0/22 56828 -185.84.44.0/22 50129 -185.84.48.0/22 29256 -185.84.52.0/22 41174 -185.84.56.0/22 200402 -185.84.60.0/24 198622 -185.84.64.0/22 40975 -185.84.68.0/24 200654 -185.84.69.0/24 59625 -185.84.70.0/23 59625 -185.84.72.0/22 48635 -185.84.80.0/22 8648 -185.84.84.0/22 48544 -185.84.88.0/22 201127 -185.84.92.0/22 33975 -185.84.100.0/22 57532 -185.84.104.0/22 42828 -185.84.108.0/22 43362 -185.84.112.0/22 201140 -185.84.116.0/22 203178 -185.84.120.0/22 58243 -185.84.128.0/22 31479 -185.84.132.0/22 198452 -185.84.136.0/22 48760 -185.84.144.0/22 39826 -185.84.148.0/22 21432 -185.84.152.0/22 62011 -185.84.156.0/22 201088 -185.84.160.0/22 57235 -185.84.164.0/22 41054 -185.84.172.0/23 208221 -185.84.174.0/23 50427 -185.84.176.0/22 35485 -185.84.180.0/23 42926 -185.84.182.0/24 42926 -185.84.184.0/22 201137 -185.84.188.0/22 201135 -185.84.192.0/22 25563 -185.84.196.0/22 50319 -185.84.200.0/22 203585 -185.84.204.0/22 205262 -185.84.208.0/22 29424 -185.84.216.0/24 20765 -185.84.217.0/24 51964 -185.84.218.0/24 51964 -185.84.220.0/22 62284 -185.84.228.0/22 8816 -185.84.232.0/22 20723 -185.84.236.0/22 29256 -185.84.240.0/24 202687 -185.84.241.0/24 30893 -185.84.242.0/24 43893 -185.84.244.0/22 15682 -185.84.248.0/22 43893 -185.84.253.0/24 200500 -185.84.254.0/23 200500 -185.85.0.0/22 20546 -185.85.4.0/22 201078 -185.85.12.0/24 200107 -185.85.14.0/23 200107 -185.85.16.0/22 197902 -185.85.20.0/23 207029 -185.85.22.0/23 200873 -185.85.24.0/22 207029 -185.85.28.0/22 5403 -185.85.32.0/22 12453 -185.85.36.0/22 39455 -185.85.40.0/22 200541 -185.85.44.0/22 200538 -185.85.52.0/22 201139 -185.85.56.0/24 8468 -185.85.57.0/24 206626 -185.85.58.0/23 206626 -185.85.60.0/22 25180 -185.85.64.0/24 201185 -185.85.68.0/22 48309 -185.85.72.0/22 43260 -185.85.76.0/23 31688 -185.85.78.0/24 31688 -185.85.80.0/22 202120 -185.85.84.0/22 39458 -185.85.88.0/22 29611 -185.85.92.0/22 43542 -185.85.96.0/22 200905 -185.85.104.0/22 48895 -185.85.108.0/22 51395 -185.85.112.0/22 41887 -185.85.116.0/22 199224 -185.85.121.0/24 201118 -185.85.122.0/24 206083 -185.85.123.0/24 205886 -185.85.124.0/22 48461 -185.85.128.0/23 2116 -185.85.130.0/23 43905 -185.85.132.0/22 41723 -185.85.136.0/22 39466 -185.85.144.0/22 199229 -185.85.148.0/22 3212 -185.85.152.0/22 57388 -185.85.156.0/22 201013 -185.85.160.0/22 43684 -185.85.164.0/22 24971 -185.85.176.0/21 56654 -185.85.184.0/22 25178 -185.85.188.0/24 43260 -185.85.189.0/24 29262 -185.85.190.0/23 29262 -185.85.192.0/23 198102 -185.85.194.0/24 198102 -185.85.195.0/24 30848 -185.85.196.0/22 12989 -185.85.200.0/22 8751 -185.85.204.0/22 201079 -185.85.208.0/22 49127 -185.85.212.0/22 60822 -185.85.216.0/22 201100 -185.85.220.0/22 201026 -185.85.224.0/22 34949 -185.85.228.0/22 8453 -185.85.232.0/22 34863 -185.85.236.0/24 203377 -185.85.237.0/24 29262 -185.85.238.0/23 29262 -185.85.240.0/22 49683 -185.85.244.0/22 47866 -185.85.248.0/22 13030 -185.85.252.0/22 47965 -185.86.0.0/22 49223 -185.86.4.0/24 43260 -185.86.5.0/24 29262 -185.86.6.0/24 209737 -185.86.7.0/24 43260 -185.86.8.0/24 6739 -185.86.9.0/24 29119 -185.86.10.0/23 60609 -185.86.12.0/24 43260 -185.86.13.0/24 29262 -185.86.14.0/24 209737 -185.86.15.0/24 43260 -185.86.16.0/22 34762 -185.86.20.0/22 31472 -185.86.24.0/22 13008 -185.86.28.0/22 31736 -185.86.32.0/22 24592 -185.86.36.0/22 59431 -185.86.40.0/23 201093 -185.86.42.0/23 3269 -185.86.44.0/23 57567 -185.86.47.0/24 200805 -185.86.48.0/22 44842 -185.86.52.0/22 39176 -185.86.56.0/23 43896 -185.86.58.0/24 43896 -185.86.60.0/24 20746 -185.86.61.0/24 15433 -185.86.62.0/23 15433 -185.86.68.0/22 196724 -185.86.72.0/22 57970 -185.86.76.0/22 201094 -185.86.80.0/22 43260 -185.86.84.0/22 210026 -185.86.88.0/22 57809 -185.86.92.0/24 61400 -185.86.93.0/24 29182 -185.86.96.0/22 203550 -185.86.100.0/22 33885 -185.86.104.0/22 197595 -185.86.108.0/22 41000 -185.86.112.0/20 38917 -185.86.131.0/24 201095 -185.86.132.0/22 198297 -185.86.136.0/22 201081 -185.86.140.0/22 51737 -185.86.144.0/22 33904 -185.86.148.0/23 52173 -185.86.150.0/24 52173 -185.86.151.0/24 43513 -185.86.152.0/23 43260 -185.86.154.0/24 29262 -185.86.155.0/24 43260 -185.86.156.0/24 39291 -185.86.157.0/24 60991 -185.86.158.0/23 60991 -185.86.160.0/24 48629 -185.86.161.0/24 9051 -185.86.162.0/23 48629 -185.86.164.0/22 29262 -185.86.168.0/22 201085 -185.86.178.0/23 6738 -185.86.180.0/23 48551 -185.86.182.0/24 48551 -185.86.183.0/24 3177 -185.86.184.0/22 48305 -185.86.188.0/22 203759 -185.86.192.0/24 201639 -185.86.193.0/24 44395 -185.86.196.0/22 199758 -185.86.200.0/22 48544 -185.86.204.0/24 201073 -185.86.206.0/24 201073 -185.86.208.0/23 198193 -185.86.210.0/24 39020 -185.86.211.0/24 50129 -185.86.212.0/22 62332 -185.86.216.0/24 44891 -185.86.220.0/22 200868 -185.86.224.0/21 58299 -185.86.232.0/22 56357 -185.86.236.0/22 43494 -185.86.244.0/22 50875 -185.86.248.0/22 3356 -185.86.252.0/22 29264 -185.87.0.0/22 42221 -185.87.4.0/22 201067 -185.87.8.0/23 8681 -185.87.10.0/24 397100 -185.87.12.0/22 51013 -185.87.16.0/22 201686 -185.87.20.0/23 197071 -185.87.24.0/24 29262 -185.87.25.0/24 201064 -185.87.26.0/23 29262 -185.87.28.0/22 201058 -185.87.32.0/24 201062 -185.87.36.0/22 6752 -185.87.40.0/21 6752 -185.87.48.0/22 35196 -185.87.52.0/22 2116 -185.87.56.0/22 8916 -185.87.60.0/24 62214 -185.87.62.0/24 54903 -185.87.63.0/24 48146 -185.87.64.0/22 198682 -185.87.68.0/22 12874 -185.87.72.0/22 47661 -185.87.76.0/23 5602 -185.87.78.0/23 200880 -185.87.80.0/22 44398 -185.87.88.0/22 29605 -185.87.92.0/22 201693 -185.87.96.0/22 60267 -185.87.100.0/22 57809 -185.87.108.0/22 201057 -185.87.112.0/22 6830 -185.87.120.0/24 43260 -185.87.121.0/24 29262 -185.87.122.0/23 29262 -185.87.124.0/22 201050 -185.87.128.0/22 62235 -185.87.132.0/22 61157 -185.87.136.0/22 201049 -185.87.140.0/22 198403 -185.87.148.0/22 265747 -185.87.152.0/22 31673 -185.87.160.0/22 57721 -185.87.164.0/22 43948 -185.87.176.0/22 200846 -185.87.180.0/22 204536 -185.87.184.0/22 48635 -185.87.188.0/22 199736 -185.87.192.0/21 203226 -185.87.200.0/22 48635 -185.87.204.0/22 5518 -185.87.208.0/22 199283 -185.87.212.0/22 203851 -185.87.216.0/22 201038 -185.87.220.0/22 200965 -185.87.224.0/24 12843 -185.87.226.0/23 205734 -185.87.228.0/22 57902 -185.87.232.0/22 201787 -185.87.236.0/24 60427 -185.87.237.0/24 39878 -185.87.238.0/23 39878 -185.87.240.0/22 49605 -185.87.244.0/22 41369 -185.87.248.0/22 12859 -185.87.252.0/22 42868 -185.88.0.0/22 57970 -185.88.4.0/24 39841 -185.88.6.0/23 39841 -185.88.8.0/24 39704 -185.88.12.0/22 201648 -185.88.16.0/23 200706 -185.88.18.0/23 12353 -185.88.20.0/24 199081 -185.88.21.0/24 8280 -185.88.24.0/22 201031 -185.88.28.0/22 3164 -185.88.32.0/22 60515 -185.88.36.0/22 9009 -185.88.40.0/22 2116 -185.88.48.0/22 12880 -185.88.52.0/22 199952 -185.88.56.0/22 43013 -185.88.60.0/22 6753 -185.88.64.0/22 43350 -185.88.68.0/22 35393 -185.88.72.0/22 15685 -185.88.76.0/22 202691 -185.88.88.0/24 203479 -185.88.92.0/22 12886 -185.88.96.0/22 9009 -185.88.100.0/24 62282 -185.88.101.0/24 8100 -185.88.102.0/24 46844 -185.88.103.0/24 35913 -185.88.104.0/22 8426 -185.88.112.0/22 45011 -185.88.116.0/22 41906 -185.88.120.0/22 200911 -185.88.124.0/22 42526 -185.88.128.0/23 34916 -185.88.130.0/23 20722 -185.88.132.0/24 50941 -185.88.136.0/22 39806 -185.88.144.0/22 15894 -185.88.148.0/22 59791 -185.88.152.0/22 42043 -185.88.156.0/22 60470 -185.88.160.0/23 201022 -185.88.162.0/24 201022 -185.88.163.0/24 206631 -185.88.164.0/23 201024 -185.88.168.0/22 42345 -185.88.172.0/23 209737 -185.88.174.0/24 203377 -185.88.175.0/24 209737 -185.88.176.0/22 201691 -185.88.180.0/22 46652 -185.88.184.0/22 49882 -185.88.196.0/22 202757 -185.88.200.0/22 198193 -185.88.207.0/24 42473 -185.88.208.0/23 200988 -185.88.212.0/22 47447 -185.88.220.0/22 47487 -185.88.224.0/22 201014 -185.88.228.0/22 20963 -185.88.232.0/22 42947 -185.88.236.0/22 29691 -185.88.240.0/23 60460 -185.88.244.0/22 59507 -185.88.248.0/22 57077 -185.88.252.0/22 51355 -185.89.0.0/22 2116 -185.89.4.0/22 60781 -185.89.8.0/22 204226 -185.89.12.0/22 201012 -185.89.16.0/23 57795 -185.89.18.0/23 31673 -185.89.20.0/22 33047 -185.89.24.0/22 201010 -185.89.28.0/22 50129 -185.89.32.0/22 58273 -185.89.36.0/22 201011 -185.89.40.0/23 35758 -185.89.42.0/23 9009 -185.89.44.0/22 49653 -185.89.48.0/22 198159 -185.89.52.0/22 201006 -185.89.56.0/22 199753 -185.89.60.0/22 61181 -185.89.64.0/22 201001 -185.89.72.0/22 201000 -185.89.76.0/22 21321 -185.89.80.0/22 200991 -185.89.84.0/22 59989 -185.89.88.0/24 200929 -185.89.89.0/24 60815 -185.89.90.0/23 43905 -185.89.92.0/22 50531 -185.89.96.0/24 208149 -185.89.97.0/24 207443 -185.89.99.0/24 210028 -185.89.100.0/23 8100 -185.89.102.0/23 209813 -185.89.104.0/21 9009 -185.89.112.0/22 41856 -185.89.116.0/22 200874 -185.89.120.0/22 200994 -185.89.124.0/22 51582 -185.89.128.0/22 44902 -185.89.132.0/23 50673 -185.89.134.0/24 50673 -185.89.136.0/22 12709 -185.89.140.0/23 201528 -185.89.144.0/22 200979 -185.89.148.0/22 21660 -185.89.152.0/22 5524 -185.89.156.0/22 198279 -185.89.160.0/22 200970 -185.89.164.0/22 60749 -185.89.168.0/22 29246 -185.89.172.0/22 203037 -185.89.176.0/22 200920 -185.89.180.0/22 200984 -185.89.184.0/22 201019 -185.89.195.0/24 200942 -185.89.196.0/22 201222 -185.89.204.0/23 200981 -185.89.206.0/24 200981 -185.89.208.0/22 29990 -185.89.212.0/22 41121 -185.89.218.0/23 32934 -185.89.224.0/22 8422 -185.89.228.0/22 200978 -185.89.232.0/22 200585 -185.89.236.0/22 200805 -185.89.240.0/22 201387 -185.89.244.0/22 43494 -185.89.248.0/24 209181 -185.89.250.0/24 8100 -185.89.252.0/22 39440 -185.90.0.0/22 200973 -185.90.4.0/22 34987 -185.90.8.0/22 41071 -185.90.12.0/22 44981 -185.90.20.0/22 203501 -185.90.28.0/22 200956 -185.90.32.0/22 2856 -185.90.36.0/22 200759 -185.90.40.0/22 3190 -185.90.44.0/23 197580 -185.90.46.0/24 207767 -185.90.47.0/24 197580 -185.90.48.0/22 201471 -185.90.52.0/22 34482 -185.90.56.0/22 9186 -185.90.60.0/24 9009 -185.90.61.0/24 136258 -185.90.62.0/24 61138 -185.90.63.0/24 203098 -185.90.64.0/22 200963 -185.90.68.0/22 30848 -185.90.72.0/22 200962 -185.90.76.0/23 2110 -185.90.78.0/24 15830 -185.90.80.0/22 204643 -185.90.84.0/22 41015 -185.90.88.0/22 24753 -185.90.92.0/22 39560 -185.90.96.0/22 47891 -185.90.100.0/22 47236 -185.90.104.0/22 41032 -185.90.112.0/22 51595 -185.90.116.0/23 200944 -185.90.118.0/24 200944 -185.90.124.0/22 61417 -185.90.128.0/22 21413 -185.90.132.0/22 43277 -185.90.136.0/22 50673 -185.90.140.0/22 39767 -185.90.144.0/22 200725 -185.90.148.0/22 200937 -185.90.152.0/23 6830 -185.90.156.0/22 12693 -185.90.160.0/22 34549 -185.90.164.0/22 35493 -185.90.168.0/22 60999 -185.90.173.0/24 200941 -185.90.174.0/23 200941 -185.90.176.0/22 8473 -185.90.180.0/22 31726 -185.90.192.0/22 35425 -185.90.196.0/22 34343 -185.90.200.0/22 44974 -185.90.204.0/22 30892 -185.90.208.0/22 202305 -185.90.212.0/22 8478 -185.90.216.0/24 200835 -185.90.219.0/24 200835 -185.90.220.0/22 39521 -185.90.224.0/22 206012 -185.90.228.0/22 12676 -185.90.232.0/22 25504 -185.90.236.0/22 41075 -185.90.240.0/22 200977 -185.90.244.0/24 8893 -185.90.245.0/24 394923 -185.90.246.0/23 394923 -185.90.248.0/22 29256 -185.90.252.0/22 197974 -185.91.0.0/22 200932 -185.91.4.0/22 200931 -185.91.8.0/23 63399 -185.91.12.0/22 39114 -185.91.16.0/22 200865 -185.91.21.0/24 42010 -185.91.22.0/23 42010 -185.91.24.0/22 34624 -185.91.28.0/22 34305 -185.91.32.0/22 20704 -185.91.36.0/22 8304 -185.91.40.0/22 31472 -185.91.44.0/22 39063 -185.91.52.0/22 49505 -185.91.56.0/22 12954 -185.91.64.0/22 50304 -185.91.68.0/23 6739 -185.91.70.0/24 6739 -185.91.72.0/22 47786 -185.91.76.0/22 20860 -185.91.80.0/22 21013 -185.91.84.0/22 205917 -185.91.88.0/22 198545 -185.91.96.0/24 31126 -185.91.97.0/24 15739 -185.91.98.0/24 15739 -185.91.99.0/24 31126 -185.91.100.0/22 41103 -185.91.104.0/22 51401 -185.91.108.0/22 201942 -185.91.112.0/24 200919 -185.91.116.0/22 200918 -185.91.120.0/22 12989 -185.91.124.0/22 47474 -185.91.128.0/22 42004 -185.91.132.0/22 25455 -185.91.136.0/23 198355 -185.91.138.0/24 198355 -185.91.140.0/22 12301 -185.91.148.0/22 201565 -185.91.152.0/22 200915 -185.91.156.0/22 200914 -185.91.160.0/22 39479 -185.91.164.0/23 34911 -185.91.166.0/24 34911 -185.91.168.0/22 62099 -185.91.176.0/22 12737 -185.91.180.0/22 49863 -185.91.184.0/22 47116 -185.91.188.0/22 49265 -185.91.192.0/22 198193 -185.91.196.0/22 200278 -185.91.200.0/22 44185 -185.91.204.0/22 44712 -185.91.208.0/22 44725 -185.91.212.0/22 30782 -185.91.216.0/23 49485 -185.91.218.0/24 49485 -185.91.220.0/22 198435 -185.91.224.0/22 198435 -185.91.228.0/24 199652 -185.91.230.0/23 199652 -185.91.232.0/23 51110 -185.91.234.0/24 51110 -185.91.236.0/23 9009 -185.91.240.0/22 202523 -185.91.244.0/22 15456 -185.91.252.0/23 58314 -185.91.254.0/24 58314 -185.92.0.0/22 202536 -185.92.4.0/22 48903 -185.92.8.0/22 35690 -185.92.12.0/24 60847 -185.92.13.0/24 9121 -185.92.14.0/23 60847 -185.92.20.0/24 199422 -185.92.22.0/24 199422 -185.92.24.0/24 38001 -185.92.25.0/24 13213 -185.92.26.0/24 46562 -185.92.28.0/22 29256 -185.92.32.0/23 59440 -185.92.34.0/23 205062 -185.92.36.0/22 30781 -185.92.40.0/22 62196 -185.92.52.0/22 8896 -185.92.56.0/22 200883 -185.92.60.0/22 21315 -185.92.64.0/22 15600 -185.92.68.0/22 38919 -185.92.72.0/22 200904 -185.92.76.0/22 35677 -185.92.84.0/22 200896 -185.92.88.0/22 29256 -185.92.96.0/22 42863 -185.92.100.0/22 3330 -185.92.108.0/22 200892 -185.92.116.0/22 51920 -185.92.120.0/23 1828 -185.92.122.0/24 1828 -185.92.124.0/24 61094 -185.92.125.0/24 59905 -185.92.126.0/23 59905 -185.92.128.0/22 60924 -185.92.132.0/24 8262 -185.92.133.0/24 206796 -185.92.134.0/23 8262 -185.92.136.0/22 6789 -185.92.140.0/22 5429 -185.92.144.0/22 6789 -185.92.148.0/22 204601 -185.92.152.0/22 6753 -185.92.156.0/22 30884 -185.92.160.0/24 6753 -185.92.164.0/22 34695 -185.92.172.0/22 9009 -185.92.184.0/22 29426 -185.92.192.0/22 5588 -185.92.196.0/22 200884 -185.92.200.0/22 200849 -185.92.204.0/22 6753 -185.92.208.0/22 200879 -185.92.212.0/24 205416 -185.92.213.0/24 6707 -185.92.214.0/23 12978 -185.92.216.0/22 201966 -185.92.220.0/22 20473 -185.92.228.0/24 51790 -185.92.229.0/24 200765 -185.92.231.0/24 203618 -185.92.232.0/22 197579 -185.92.236.0/24 206124 -185.92.237.0/24 198192 -185.92.238.0/24 50129 -185.92.239.0/24 60458 -185.92.240.0/22 31027 -185.92.244.0/22 201446 -185.92.248.0/22 50411 -185.92.252.0/22 25108 -185.93.0.0/22 60068 -185.93.5.0/24 60930 -185.93.6.0/24 60930 -185.93.12.0/22 41887 -185.93.16.0/23 200869 -185.93.18.0/24 200869 -185.93.20.0/22 8818 -185.93.24.0/22 42093 -185.93.28.0/22 200700 -185.93.33.0/24 58140 -185.93.36.0/22 51754 -185.93.40.0/22 35572 -185.93.44.0/22 35394 -185.93.48.0/22 51164 -185.93.52.0/22 206119 -185.93.56.0/24 35258 -185.93.57.0/24 17819 -185.93.58.0/23 35258 -185.93.60.0/22 13199 -185.93.64.0/22 204168 -185.93.68.0/24 43260 -185.93.69.0/24 61135 -185.93.70.0/23 43260 -185.93.72.0/22 200863 -185.93.76.0/22 57795 -185.93.80.0/22 199435 -185.93.84.0/24 31027 -185.93.87.0/24 31027 -185.93.88.0/24 200861 -185.93.92.0/22 41676 -185.93.96.0/22 39777 -185.93.100.0/22 200855 -185.93.104.0/22 44647 -185.93.108.0/22 44128 -185.93.116.0/22 39647 -185.93.120.0/22 205512 -185.93.124.0/22 35576 -185.93.128.0/22 35353 -185.93.132.0/22 30884 -185.93.140.0/23 48328 -185.93.142.0/24 204250 -185.93.143.0/24 48328 -185.93.144.0/22 199309 -185.93.148.0/22 47680 -185.93.152.0/22 35394 -185.93.156.0/22 1850 -185.93.160.0/22 1257 -185.93.164.0/24 55720 -185.93.172.0/24 43456 -185.93.174.0/24 20473 -185.93.176.0/22 200854 -185.93.180.0/22 9009 -185.93.184.0/24 48422 -185.93.185.0/24 44863 -185.93.186.0/24 34323 -185.93.188.0/22 199801 -185.93.192.0/22 62121 -185.93.196.0/22 200852 -185.93.200.0/22 56833 -185.93.204.0/22 198380 -185.93.208.0/24 41601 -185.93.212.0/24 5405 -185.93.213.0/24 42473 -185.93.214.0/23 43957 -185.93.224.0/22 25589 -185.93.228.0/22 30148 -185.93.232.0/22 47380 -185.93.236.0/22 6805 -185.93.240.0/23 199341 -185.93.242.0/23 61154 -185.93.244.0/22 200851 -185.93.248.0/24 34984 -185.93.252.0/22 35558 -185.94.0.0/22 5400 -185.94.4.0/22 200848 -185.94.8.0/22 42509 -185.94.12.0/23 200820 -185.94.14.0/24 200820 -185.94.16.0/22 11179 -185.94.24.0/22 62537 -185.94.32.0/22 61165 -185.94.36.0/22 25054 -185.94.48.0/22 43160 -185.94.52.0/22 200844 -185.94.56.0/22 200836 -185.94.60.0/22 3301 -185.94.64.0/22 200182 -185.94.68.0/22 59472 -185.94.72.0/22 13189 -185.94.76.0/22 202087 -185.94.80.0/23 50352 -185.94.82.0/24 50352 -185.94.83.0/24 31034 -185.94.84.0/23 56647 -185.94.87.0/24 15830 -185.94.88.0/22 203848 -185.94.96.0/22 204213 -185.94.100.0/22 47176 -185.94.104.0/22 20783 -185.94.108.0/22 197068 -185.94.112.0/22 200804 -185.94.116.0/22 34499 -185.94.120.0/22 34663 -185.94.124.0/23 174 -185.94.128.0/22 209508 -185.94.132.0/22 210129 -185.94.140.0/22 35280 -185.94.144.0/22 28686 -185.94.148.0/22 197352 -185.94.152.0/22 56875 -185.94.156.0/24 50881 -185.94.158.0/23 50881 -185.94.160.0/22 200813 -185.94.164.0/23 50113 -185.94.166.0/24 200453 -185.94.167.0/24 50113 -185.94.168.0/24 39704 -185.94.172.0/22 34123 -185.94.176.0/23 15951 -185.94.178.0/24 15951 -185.94.180.0/24 35220 -185.94.184.0/22 12703 -185.94.188.0/22 9009 -185.94.192.0/22 9009 -185.94.200.0/22 49221 -185.94.204.0/22 34768 -185.94.212.0/22 47203 -185.94.216.0/24 202879 -185.94.217.0/24 43880 -185.94.218.0/24 43880 -185.94.219.0/24 35166 -185.94.220.0/22 42487 -185.94.224.0/22 203730 -185.94.228.0/24 43345 -185.94.230.0/23 48635 -185.94.232.0/22 47492 -185.94.236.0/22 42567 -185.94.244.0/22 201290 -185.94.248.0/22 197722 -185.94.252.0/22 197890 -185.95.0.0/22 201520 -185.95.4.0/24 203273 -185.95.5.0/24 21050 -185.95.8.0/22 200821 -185.95.12.0/22 197902 -185.95.16.0/22 47969 -185.95.20.0/22 31556 -185.95.28.0/23 200837 -185.95.30.0/24 205631 -185.95.31.0/24 48635 -185.95.32.0/22 57353 -185.95.36.0/22 200799 -185.95.40.0/22 200824 -185.95.44.0/22 25459 -185.95.48.0/22 47264 -185.95.52.0/22 200818 -185.95.56.0/22 3339 -185.95.64.0/22 53889 -185.95.68.0/22 21155 -185.95.72.0/22 9031 -185.95.76.0/23 35071 -185.95.80.0/22 5409 -185.95.84.0/22 51559 -185.95.100.0/23 9009 -185.95.102.0/23 57129 -185.95.104.0/23 200802 -185.95.107.0/24 47954 -185.95.108.0/22 199775 -185.95.112.0/22 31317 -185.95.116.0/23 200806 -185.95.118.0/23 16019 -185.95.124.0/22 50564 -185.95.128.0/22 59752 -185.95.132.0/22 41827 -185.95.136.0/22 51569 -185.95.140.0/23 35086 -185.95.142.0/24 35086 -185.95.144.0/22 35066 -185.95.152.0/22 200796 -185.95.156.0/22 24750 -185.95.160.0/22 51132 -185.95.164.0/22 49126 -185.95.168.0/22 34984 -185.95.172.0/23 35266 -185.95.174.0/24 35266 -185.95.175.0/24 13009 -185.95.176.0/22 5524 -185.95.180.0/23 35043 -185.95.182.0/24 35043 -185.95.184.0/22 34515 -185.95.188.0/22 9009 -185.95.192.0/22 20792 -185.95.196.0/22 39507 -185.95.200.0/22 197206 -185.95.204.0/22 51684 -185.95.208.0/22 200798 -185.95.212.0/22 200797 -185.95.216.0/23 57118 -185.95.218.0/24 57118 -185.95.219.0/24 39540 -185.95.220.0/22 29003 -185.95.224.0/23 198399 -185.95.228.0/23 202925 -185.95.230.0/23 57129 -185.95.232.0/22 200786 -185.95.236.0/22 200547 -185.95.240.0/22 28791 -185.95.244.0/22 44169 -185.95.248.0/22 20911 -185.95.252.0/23 43056 -185.95.254.0/24 43056 -185.95.255.0/24 60972 -185.96.0.0/22 34855 -185.96.4.0/22 35470 -185.96.8.0/22 200792 -185.96.12.0/23 57667 -185.96.16.0/22 59402 -185.96.20.0/22 197589 -185.96.24.0/22 50977 -185.96.28.0/22 25133 -185.96.36.0/24 57129 -185.96.37.0/24 9009 -185.96.38.0/23 9009 -185.96.40.0/22 200781 -185.96.44.0/22 34766 -185.96.52.0/22 198401 -185.96.56.0/22 31400 -185.96.60.0/22 57168 -185.96.64.0/22 57168 -185.96.68.0/22 50670 -185.96.72.0/22 61006 -185.96.76.0/22 8758 -185.96.80.0/22 9009 -185.96.84.0/22 48096 -185.96.88.0/22 24800 -185.96.92.0/22 198047 -185.96.96.0/22 50316 -185.96.104.0/22 200783 -185.96.108.0/22 29256 -185.96.112.0/23 34593 -185.96.116.0/22 200767 -185.96.120.0/22 198317 -185.96.124.0/22 200729 -185.96.128.0/22 201474 -185.96.132.0/22 9009 -185.96.136.0/22 26380 -185.96.140.0/24 60781 -185.96.144.0/22 206312 -185.96.148.0/22 58075 -185.96.152.0/22 47467 -185.96.156.0/22 34659 -185.96.160.0/24 3223 -185.96.161.0/24 60819 -185.96.162.0/24 47602 -185.96.164.0/22 59466 -185.96.169.0/24 31486 -185.96.170.0/23 31486 -185.96.172.0/22 8657 -185.96.176.0/22 50084 -185.96.180.0/22 24800 -185.96.188.0/24 39443 -185.96.189.0/24 50594 -185.96.190.0/24 3255 -185.96.192.0/22 200774 -185.96.196.0/22 57353 -185.96.200.0/22 47704 -185.96.204.0/22 200760 -185.96.208.0/22 198371 -185.96.212.0/22 200770 -185.96.216.0/22 205716 -185.96.220.0/22 31708 -185.96.224.0/22 8781 -185.96.228.0/23 29237 -185.96.232.0/22 62352 -185.96.236.0/22 34461 -185.96.240.0/22 204001 -185.96.244.0/24 206934 -185.96.245.0/24 57624 -185.96.246.0/24 206690 -185.96.247.0/24 206733 -185.96.248.0/22 200765 -185.96.252.0/23 25211 -185.96.254.0/24 43944 -185.96.255.0/24 25211 -185.97.0.0/22 9009 -185.97.4.0/22 50873 -185.97.10.0/24 16509 -185.97.12.0/24 3269 -185.97.13.0/24 30848 -185.97.14.0/24 3269 -185.97.16.0/22 60782 -185.97.20.0/24 49063 -185.97.21.0/24 7604 -185.97.22.0/23 57168 -185.97.24.0/22 198668 -185.97.32.0/22 200460 -185.97.36.0/24 205346 -185.97.40.0/22 200758 -185.97.44.0/22 15995 -185.97.52.0/22 51790 -185.97.56.0/22 21299 -185.97.60.0/22 35028 -185.97.64.0/22 42314 -185.97.68.0/22 3212 -185.97.72.0/22 60447 -185.97.76.0/22 9009 -185.97.80.0/23 1449 -185.97.82.0/24 1449 -185.97.92.0/23 59989 -185.97.94.0/24 59989 -185.97.95.0/24 34447 -185.97.96.0/22 59710 -185.97.100.0/24 203382 -185.97.101.0/24 24904 -185.97.102.0/23 24904 -185.97.104.0/22 34113 -185.97.108.0/22 24608 -185.97.112.0/22 200590 -185.97.120.0/22 200752 -185.97.124.0/22 200742 -185.97.128.0/22 204164 -185.97.132.0/22 60268 -185.97.136.0/22 49113 -185.97.140.0/22 209523 -185.97.144.0/22 35913 -185.97.148.0/24 62407 -185.97.150.0/23 20948 -185.97.156.0/22 5602 -185.97.160.0/22 199188 -185.97.164.0/22 13215 -185.97.168.0/22 200738 -185.97.172.0/22 199118 -185.97.176.0/23 60664 -185.97.178.0/24 60664 -185.97.179.0/24 47279 -185.97.180.0/22 199284 -185.97.184.0/22 30972 -185.97.188.0/22 21293 -185.97.192.0/24 64424 -185.97.193.0/24 64440 -185.97.196.0/22 200665 -185.97.200.0/22 39087 -185.97.204.0/22 197033 -185.97.208.0/22 197886 -185.97.215.0/24 50304 -185.97.216.0/24 47242 -185.97.217.0/24 21056 -185.97.218.0/24 21056 -185.97.220.0/22 31087 -185.97.224.0/22 200739 -185.97.228.0/22 34373 -185.97.236.0/22 39122 -185.97.240.0/24 196616 -185.97.241.0/24 8804 -185.97.242.0/23 8804 -185.97.244.0/22 29467 -185.97.248.0/22 61307 -185.97.252.0/22 49542 -185.98.0.0/22 20875 -185.98.4.0/22 200532 -185.98.8.0/22 200043 -185.98.12.0/22 198785 -185.98.16.0/24 203012 -185.98.18.0/24 202513 -185.98.19.0/24 200595 -185.98.20.0/22 8487 -185.98.24.0/22 200697 -185.98.28.0/22 34271 -185.98.32.0/22 200811 -185.98.36.0/22 204032 -185.98.40.0/22 9009 -185.98.44.0/22 42973 -185.98.48.0/22 197558 -185.98.52.0/22 39572 -185.98.56.0/22 44180 -185.98.60.0/24 29262 -185.98.61.0/24 60721 -185.98.62.0/23 43260 -185.98.64.0/22 41114 -185.98.68.0/22 200727 -185.98.72.0/22 200726 -185.98.76.0/22 39824 -185.98.80.0/22 49063 -185.98.84.0/23 49063 -185.98.86.0/23 205840 -185.98.88.0/22 39824 -185.98.92.0/22 34928 -185.98.96.0/22 3342 -185.98.100.0/22 203101 -185.98.104.0/24 60039 -185.98.108.0/22 59455 -185.98.112.0/22 43754 -185.98.116.0/22 57809 -185.98.120.0/22 59414 -185.98.124.0/23 198089 -185.98.127.0/24 39591 -185.98.128.0/22 16347 -185.98.132.0/22 200744 -185.98.140.0/22 6805 -185.98.144.0/22 51050 -185.98.148.0/22 62227 -185.98.152.0/22 15576 -185.98.160.0/22 200507 -185.98.164.0/22 200689 -185.98.169.0/24 201243 -185.98.170.0/24 201243 -185.98.172.0/23 19001 -185.98.174.0/24 34153 -185.98.176.0/23 200707 -185.98.178.0/24 200707 -185.98.179.0/24 197898 -185.98.180.0/22 21077 -185.98.184.0/22 48173 -185.98.188.0/22 35575 -185.98.192.0/22 30880 -185.98.196.0/22 50957 -185.98.200.0/22 41400 -185.98.204.0/22 34032 -185.98.208.0/22 30929 -185.98.212.0/22 8943 -185.98.216.0/22 202130 -185.98.220.0/22 8376 -185.98.224.0/22 8376 -185.98.228.0/22 200696 -185.98.232.0/22 200695 -185.98.236.0/22 15725 -185.98.240.0/22 49855 -185.98.244.0/22 16117 -185.98.248.0/23 49941 -185.98.251.0/24 49941 -185.98.252.0/22 33856 -185.99.0.0/22 200698 -185.99.4.0/23 50257 -185.99.6.0/24 50257 -185.99.7.0/24 47282 -185.99.8.0/21 49063 -185.99.16.0/22 34062 -185.99.24.0/22 30967 -185.99.28.0/22 209709 -185.99.32.0/23 43824 -185.99.34.0/24 29099 -185.99.35.0/24 43824 -185.99.36.0/22 60376 -185.99.40.0/22 206487 -185.99.44.0/22 42013 -185.99.48.0/24 6696 -185.99.49.0/24 42160 -185.99.50.0/23 57844 -185.99.52.0/22 43155 -185.99.56.0/22 8893 -185.99.64.0/22 8251 -185.99.68.0/22 42000 -185.99.76.0/22 21267 -185.99.80.0/22 15702 -185.99.84.0/22 51048 -185.99.88.0/23 50667 -185.99.92.0/22 204524 -185.99.96.0/23 60781 -185.99.98.0/23 29066 -185.99.104.0/22 200648 -185.99.108.0/24 200677 -185.99.109.0/24 202899 -185.99.112.0/22 200618 -185.99.116.0/24 33877 -185.99.120.0/22 28717 -185.99.124.0/22 200688 -185.99.128.0/22 207257 -185.99.132.0/23 61138 -185.99.134.0/24 62240 -185.99.135.0/24 36351 -185.99.136.0/22 200565 -185.99.144.0/22 33832 -185.99.148.0/22 39605 -185.99.152.0/21 51522 -185.99.160.0/22 51522 -185.99.164.0/23 60257 -185.99.166.0/23 62163 -185.99.168.0/22 47801 -185.99.172.0/22 60589 -185.99.176.0/22 200678 -185.99.184.0/22 29119 -185.99.188.0/24 60376 -185.99.191.0/24 60376 -185.99.192.0/22 59471 -185.99.196.0/22 42807 -185.99.204.0/22 200569 -185.99.212.0/22 43754 -185.99.216.0/24 200498 -185.99.220.0/22 31587 -185.99.224.0/22 47178 -185.99.228.0/22 20755 -185.99.233.0/24 15525 -185.99.234.0/23 15525 -185.99.236.0/22 198047 -185.99.240.0/22 30892 -185.99.248.0/22 29119 -185.99.252.0/22 42831 -185.100.0.0/24 20172 -185.100.1.0/24 26415 -185.100.3.0/24 7342 -185.100.4.0/22 35393 -185.100.8.0/22 50372 -185.100.12.0/22 45015 -185.100.16.0/23 201333 -185.100.20.0/24 200654 -185.100.24.0/22 60747 -185.100.28.0/22 200653 -185.100.32.0/22 200553 -185.100.36.0/22 34942 -185.100.40.0/22 55303 -185.100.44.0/22 200645 -185.100.48.0/22 47518 -185.100.56.0/23 61161 -185.100.58.0/24 9009 -185.100.59.0/24 1101 -185.100.60.0/22 200652 -185.100.64.0/22 200532 -185.100.68.0/22 56595 -185.100.72.0/22 60458 -185.100.80.0/22 200761 -185.100.84.0/22 200651 -185.100.88.0/22 51609 -185.100.92.0/22 198171 -185.100.101.0/24 203561 -185.100.102.0/24 42975 -185.100.104.0/22 17941 -185.100.108.0/22 197664 -185.100.112.0/22 6762 -185.100.128.0/22 60950 -185.100.135.0/24 202134 -185.100.136.0/22 12357 -185.100.140.0/22 48972 -185.100.144.0/22 16195 -185.100.156.0/23 9009 -185.100.158.0/24 57129 -185.100.159.0/24 9009 -185.100.160.0/22 3320 -185.100.164.0/22 205032 -185.100.168.0/22 34458 -185.100.172.0/22 6759 -185.100.176.0/22 8265 -185.100.180.0/22 25259 -185.100.184.0/22 31104 -185.100.188.0/22 25590 -185.100.192.0/22 31433 -185.100.196.0/22 200635 -185.100.200.0/22 29623 -185.100.204.0/22 202204 -185.100.208.0/22 200612 -185.100.216.0/22 31390 -185.100.220.0/22 25019 -185.100.224.0/22 39824 -185.100.228.0/22 29205 -185.100.232.0/22 31120 -185.100.236.0/22 200542 -185.100.240.0/22 31394 -185.100.244.0/23 43612 -185.100.248.0/23 64415 -185.100.250.0/24 64415 -185.100.251.0/24 45014 -185.100.252.0/22 16076 -185.101.0.0/22 199999 -185.101.4.0/22 3320 -185.101.8.0/22 48362 -185.101.12.0/23 3257 -185.101.14.0/24 3257 -185.101.16.0/22 31037 -185.101.20.0/22 55933 -185.101.24.0/22 42002 -185.101.28.0/22 203901 -185.101.32.0/22 34989 -185.101.36.0/22 30957 -185.101.40.0/22 203762 -185.101.48.0/22 15955 -185.101.52.0/22 12693 -185.101.56.0/22 20861 -185.101.60.0/22 50295 -185.101.64.0/22 30919 -185.101.68.0/24 200557 -185.101.69.0/24 8100 -185.101.70.0/24 8100 -185.101.71.0/24 200557 -185.101.72.0/22 29135 -185.101.76.0/22 199462 -185.101.80.0/22 31708 -185.101.84.0/22 204458 -185.101.88.0/22 43557 -185.101.92.0/22 200615 -185.101.96.0/24 44684 -185.101.97.0/24 6939 -185.101.98.0/24 6939 -185.101.104.0/23 57673 -185.101.106.0/24 204221 -185.101.108.0/22 30875 -185.101.112.0/22 206597 -185.101.116.0/22 30786 -185.101.120.0/22 51320 -185.101.124.0/23 202780 -185.101.126.0/24 202780 -185.101.128.0/24 2821 -185.101.129.0/24 203562 -185.101.130.0/24 203632 -185.101.132.0/22 12941 -185.101.136.0/22 199524 -185.101.140.0/22 201702 -185.101.144.0/22 9009 -185.101.156.0/22 207143 -185.101.160.0/22 29119 -185.101.168.0/22 48881 -185.101.172.0/22 30766 -185.101.176.0/22 29615 -185.101.180.0/22 200607 -185.101.184.0/22 12941 -185.101.188.0/24 197588 -185.101.189.0/24 200414 -185.101.190.0/24 197588 -185.101.191.0/24 200414 -185.101.196.0/22 200596 -185.101.200.0/22 9009 -185.101.204.0/22 43208 -185.101.208.0/22 29608 -185.101.212.0/22 199237 -185.101.216.0/22 3255 -185.101.220.0/22 200600 -185.101.224.0/22 56732 -185.101.228.0/22 24631 -185.101.236.0/22 197882 -185.101.240.0/22 50326 -185.101.244.0/22 61161 -185.101.248.0/22 203621 -185.101.252.0/22 61161 -185.102.0.0/24 29585 -185.102.4.0/22 61161 -185.102.12.0/24 1921 -185.102.15.0/24 30971 -185.102.16.0/22 41753 -185.102.20.0/22 198171 -185.102.24.0/23 208917 -185.102.26.0/24 208917 -185.102.27.0/24 60781 -185.102.28.0/22 31726 -185.102.32.0/22 203736 -185.102.36.0/22 29483 -185.102.40.0/22 200583 -185.102.44.0/22 206894 -185.102.48.0/22 204089 -185.102.52.0/22 29458 -185.102.56.0/24 34531 -185.102.57.0/24 49312 -185.102.58.0/23 49312 -185.102.60.0/22 51127 -185.102.64.0/22 29140 -185.102.68.0/22 58291 -185.102.72.0/22 48716 -185.102.76.0/22 198171 -185.102.80.0/23 3215 -185.102.82.0/23 43249 -185.102.84.0/22 41354 -185.102.88.0/22 50819 -185.102.92.0/22 29423 -185.102.96.0/22 204165 -185.102.100.0/22 201641 -185.102.104.0/22 35258 -185.102.108.0/22 60717 -185.102.112.0/23 9009 -185.102.114.0/23 57129 -185.102.116.0/22 39824 -185.102.120.0/22 51219 -185.102.124.0/23 204215 -185.102.128.0/22 39824 -185.102.132.0/22 206347 -185.102.136.0/24 202423 -185.102.137.0/24 50113 -185.102.138.0/24 51200 -185.102.139.0/24 50113 -185.102.144.0/22 58185 -185.102.148.0/22 198440 -185.102.152.0/22 48918 -185.102.156.0/23 34450 -185.102.160.0/22 44994 -185.102.164.0/22 29242 -185.102.168.0/21 7922 -185.102.176.0/22 41291 -185.102.180.0/22 201588 -185.102.184.0/22 200582 -185.102.188.0/22 41676 -185.102.200.0/22 12576 -185.102.204.0/22 58345 -185.102.208.0/23 201343 -185.102.210.0/24 50563 -185.102.211.0/24 201343 -185.102.212.0/22 35041 -185.102.216.0/22 60068 -185.102.220.0/22 57286 -185.102.224.0/22 200576 -185.102.228.0/22 12930 -185.102.232.0/22 29154 -185.102.236.0/22 203877 -185.102.248.0/22 3213 -185.103.4.0/22 50056 -185.103.8.0/22 201011 -185.103.12.0/22 25281 -185.103.16.0/22 39704 -185.103.20.0/22 29070 -185.103.24.0/23 29184 -185.103.26.0/23 8359 -185.103.29.0/24 205855 -185.103.30.0/24 49958 -185.103.31.0/24 204387 -185.103.33.0/24 62597 -185.103.34.0/24 62597 -185.103.36.0/22 29119 -185.103.40.0/22 25133 -185.103.44.0/23 39063 -185.103.46.0/24 39063 -185.103.47.0/24 29108 -185.103.48.0/22 42695 -185.103.52.0/22 198128 -185.103.56.0/22 200560 -185.103.60.0/22 9009 -185.103.64.0/22 197981 -185.103.68.0/22 31036 -185.103.76.0/22 201791 -185.103.80.0/22 3302 -185.103.84.0/22 50810 -185.103.88.0/22 29027 -185.103.96.0/22 42831 -185.103.100.0/22 2895 -185.103.108.0/24 57380 -185.103.109.0/24 202015 -185.103.110.0/24 51765 -185.103.111.0/24 203549 -185.103.112.0/22 28941 -185.103.116.0/22 200552 -185.103.120.0/22 204171 -185.103.124.0/22 200421 -185.103.128.0/22 49596 -185.103.132.0/22 57191 -185.103.136.0/22 44323 -185.103.140.0/22 51269 -185.103.144.0/22 28952 -185.103.148.0/22 58345 -185.103.152.0/22 200539 -185.103.156.0/22 48635 -185.103.160.0/24 44206 -185.103.161.0/24 61193 -185.103.164.0/22 200523 -185.103.168.0/22 39824 -185.103.172.0/24 5577 -185.103.173.0/24 20495 -185.103.174.0/24 5577 -185.103.175.0/24 12859 -185.103.176.0/22 39824 -185.103.180.0/22 201553 -185.103.184.0/22 39824 -185.103.188.0/22 28931 -185.103.192.0/22 50469 -185.103.196.0/22 43260 -185.103.200.0/24 20473 -185.103.203.0/24 20473 -185.103.204.0/22 41558 -185.103.208.0/22 34610 -185.103.212.0/22 49079 -185.103.216.0/22 61094 -185.103.224.0/22 197558 -185.103.228.0/22 28920 -185.103.232.0/22 56532 -185.103.242.0/23 48635 -185.103.244.0/22 56503 -185.103.248.0/22 56503 -185.103.252.0/23 50113 -185.103.254.0/23 198338 -185.104.0.0/24 200540 -185.104.4.0/22 25591 -185.104.8.0/22 31662 -185.104.12.0/22 42303 -185.104.16.0/24 28875 -185.104.19.0/24 57118 -185.104.20.0/22 28746 -185.104.28.0/22 206281 -185.104.44.0/22 200000 -185.104.60.0/23 50129 -185.104.62.0/24 13287 -185.104.63.0/24 50129 -185.104.64.0/24 12990 -185.104.68.0/24 48847 -185.104.69.0/24 3176 -185.104.70.0/23 48847 -185.104.72.0/22 60316 -185.104.76.0/22 28774 -185.104.80.0/24 6461 -185.104.84.0/22 8758 -185.104.88.0/22 206437 -185.104.92.0/22 47801 -185.104.96.0/23 14537 -185.104.98.0/24 14537 -185.104.100.0/22 200470 -185.104.104.0/22 197765 -185.104.108.0/22 6661 -185.104.120.0/23 28715 -185.104.122.0/24 209220 -185.104.124.0/22 39120 -185.104.128.0/22 25595 -185.104.132.0/22 29119 -185.104.136.0/24 50300 -185.104.137.0/24 49419 -185.104.140.0/22 200519 -185.104.144.0/23 15544 -185.104.146.0/24 15544 -185.104.148.0/22 9009 -185.104.152.0/24 39020 -185.104.153.0/24 50129 -185.104.154.0/23 50129 -185.104.156.0/22 200485 -185.104.160.0/23 204989 -185.104.162.0/24 204989 -185.104.163.0/24 42184 -185.104.164.0/22 198193 -185.104.168.0/22 206610 -185.104.172.0/22 198330 -185.104.176.0/22 24852 -185.104.180.0/22 48881 -185.104.184.0/22 9009 -185.104.188.0/23 393504 -185.104.190.0/23 64249 -185.104.192.0/22 202391 -185.104.196.0/22 56871 -185.104.200.0/22 8680 -185.104.204.0/22 12941 -185.104.208.0/22 200449 -185.104.212.0/22 201776 -185.104.216.0/22 30900 -185.104.220.0/22 34803 -185.104.224.0/22 12577 -185.104.228.0/22 24631 -185.104.232.0/22 56503 -185.104.236.0/22 50564 -185.104.240.0/22 56503 -185.104.244.0/22 25491 -185.104.248.0/23 50113 -185.104.250.0/24 12608 -185.104.251.0/24 50113 -185.104.252.0/22 25471 -185.105.0.0/22 199524 -185.105.4.0/22 19624 -185.105.8.0/22 200506 -185.105.12.0/22 201942 -185.105.16.0/22 51681 -185.105.20.0/22 24792 -185.105.24.0/22 200518 -185.105.28.0/22 30889 -185.105.32.0/22 43927 -185.105.36.0/22 57269 -185.105.40.0/22 16097 -185.105.44.0/23 9009 -185.105.46.0/23 57129 -185.105.48.0/22 25451 -185.105.52.0/22 25450 -185.105.56.0/22 25335 -185.105.60.0/22 62183 -185.105.64.0/22 16376 -185.105.68.0/22 38926 -185.105.72.0/22 50746 -185.105.76.0/22 59554 -185.105.80.0/22 24603 -185.105.84.0/22 200492 -185.105.88.0/22 198338 -185.105.92.0/22 39120 -185.105.96.0/22 206681 -185.105.100.0/22 58224 -185.105.104.0/22 39120 -185.105.108.0/23 48282 -185.105.112.0/22 57317 -185.105.116.0/22 198338 -185.105.120.0/22 204813 -185.105.128.0/22 39120 -185.105.132.0/22 3303 -185.105.136.0/23 202089 -185.105.138.0/24 202089 -185.105.140.0/22 200437 -185.105.144.0/22 3303 -185.105.148.0/22 200488 -185.105.152.0/22 203361 -185.105.156.0/22 204182 -185.105.160.0/22 7979 -185.105.164.0/23 62190 -185.105.168.0/22 197204 -185.105.176.0/22 12400 -185.105.180.0/23 61397 -185.105.182.0/24 61397 -185.105.183.0/24 206574 -185.105.184.0/24 25264 -185.105.185.0/24 42440 -185.105.186.0/23 25264 -185.105.188.0/22 47967 -185.105.192.0/22 49981 -185.105.196.0/22 34170 -185.105.200.0/22 49621 -185.105.204.0/22 48635 -185.105.208.0/22 200448 -185.105.212.0/22 39120 -185.105.216.0/22 48635 -185.105.220.0/22 29119 -185.105.224.0/22 200487 -185.105.228.0/22 43197 -185.105.232.0/22 201942 -185.105.236.0/23 47285 -185.105.238.0/24 47285 -185.105.239.0/24 42337 -185.105.240.0/22 200480 -185.105.244.0/22 59913 -185.105.248.0/22 47973 -185.105.252.0/24 8648 -185.106.0.0/21 206819 -185.106.8.0/22 51527 -185.106.12.0/22 50779 -185.106.16.0/22 196945 -185.106.20.0/22 43260 -185.106.24.0/22 25094 -185.106.28.0/22 206206 -185.106.32.0/22 200478 -185.106.36.0/22 206819 -185.106.44.0/22 200968 -185.106.48.0/22 34477 -185.106.52.0/22 47886 -185.106.56.0/22 49965 -185.106.60.0/22 7979 -185.106.68.0/22 201984 -185.106.72.0/22 202596 -185.106.76.0/22 200465 -185.106.80.0/22 7979 -185.106.84.0/22 50472 -185.106.92.0/22 50113 -185.106.96.0/23 35913 -185.106.98.0/24 35913 -185.106.99.0/24 40676 -185.106.100.0/22 197648 -185.106.104.0/23 12389 -185.106.106.0/24 204173 -185.106.107.0/24 8641 -185.106.108.0/22 29287 -185.106.112.0/22 57389 -185.106.116.0/22 203730 -185.106.120.0/22 60117 -185.106.124.0/22 201942 -185.106.128.0/23 12400 -185.106.130.0/24 12400 -185.106.136.0/22 56503 -185.106.140.0/22 7979 -185.106.144.0/22 56503 -185.106.148.0/22 50469 -185.106.152.0/22 28685 -185.106.156.0/22 39824 -185.106.160.0/22 204212 -185.106.164.0/22 3331 -185.106.168.0/22 49633 -185.106.172.0/22 200457 -185.106.180.0/22 60662 -185.106.184.0/22 30742 -185.106.188.0/22 34694 -185.106.198.0/24 202871 -185.106.204.0/24 49017 -185.106.206.0/24 12567 -185.106.207.0/24 49017 -185.106.208.0/22 51559 -185.106.212.0/22 7979 -185.106.216.0/22 39781 -185.106.224.0/23 42703 -185.106.226.0/24 2830 -185.106.227.0/24 42703 -185.106.228.0/22 58224 -185.106.232.0/24 45034 -185.106.234.0/24 45034 -185.106.236.0/22 35593 -185.106.240.0/24 206376 -185.106.241.0/24 394094 -185.106.242.0/24 206376 -185.106.243.0/24 394094 -185.106.244.0/22 6753 -185.106.248.0/22 1764 -185.106.252.0/22 6753 -185.107.0.0/22 204166 -185.107.8.0/22 42344 -185.107.12.0/22 204151 -185.107.16.0/22 29119 -185.107.20.0/22 6753 -185.107.24.0/22 59790 -185.107.28.0/22 56503 -185.107.32.0/22 58224 -185.107.36.0/23 43350 -185.107.38.0/24 43350 -185.107.40.0/22 60893 -185.107.44.0/22 43350 -185.107.48.0/22 24892 -185.107.52.0/22 24940 -185.107.56.0/22 43350 -185.107.60.0/22 200432 -185.107.64.0/24 202627 -185.107.65.0/24 57536 -185.107.66.0/24 204019 -185.107.67.0/24 204479 -185.107.68.0/22 43350 -185.107.72.0/22 200430 -185.107.80.0/22 43350 -185.107.84.0/22 60032 -185.107.92.0/22 43350 -185.107.96.0/24 48910 -185.107.97.0/24 32751 -185.107.100.0/22 43350 -185.107.104.0/22 200434 -185.107.108.0/22 200433 -185.107.112.0/23 197902 -185.107.116.0/23 43350 -185.107.120.0/22 48972 -185.107.124.0/22 51522 -185.107.128.0/23 60878 -185.107.132.0/24 204079 -185.107.136.0/22 51522 -185.107.140.0/22 39507 -185.107.144.0/22 200424 -185.107.148.0/22 28831 -185.107.152.0/22 201942 -185.107.156.0/22 51522 -185.107.160.0/22 203641 -185.107.164.0/22 51522 -185.107.168.0/22 24800 -185.107.172.0/22 31525 -185.107.176.0/22 24800 -185.107.181.0/24 24867 -185.107.184.0/22 204280 -185.107.188.0/22 200428 -185.107.192.0/24 44592 -185.107.193.0/24 197890 -185.107.194.0/23 197890 -185.107.196.0/24 200425 -185.107.198.0/24 200416 -185.107.199.0/24 209324 -185.107.200.0/22 204274 -185.107.204.0/22 206655 -185.107.212.0/22 48635 -185.107.216.0/22 200412 -185.107.220.0/22 200423 -185.107.224.0/23 48635 -185.107.226.0/23 202861 -185.107.228.0/22 200418 -185.107.232.0/22 200484 -185.107.240.0/22 47954 -185.107.244.0/23 50591 -185.107.246.0/24 50591 -185.107.247.0/24 207477 -185.107.248.0/22 204813 -185.107.252.0/22 204144 -185.108.0.0/22 25511 -185.108.4.0/24 56534 -185.108.5.0/24 62415 -185.108.6.0/24 62415 -185.108.7.0/24 31500 -185.108.8.0/22 15925 -185.108.12.0/22 11031 -185.108.16.0/24 51093 -185.108.19.0/24 205226 -185.108.20.0/22 48293 -185.108.24.0/22 15975 -185.108.28.0/22 198167 -185.108.33.0/24 43930 -185.108.35.0/24 24843 -185.108.36.0/23 200189 -185.108.38.0/24 204838 -185.108.40.0/23 203262 -185.108.44.0/22 25376 -185.108.60.0/22 196845 -185.108.64.0/22 209390 -185.108.68.0/22 24577 -185.108.76.0/22 206028 -185.108.80.0/22 202940 -185.108.84.0/23 60781 -185.108.86.0/23 49992 -185.108.88.0/22 43385 -185.108.92.0/24 202038 -185.108.93.0/24 49413 -185.108.94.0/24 49413 -185.108.95.0/24 202038 -185.108.96.0/22 58224 -185.108.100.0/22 24800 -185.108.104.0/24 24768 -185.108.105.0/24 20860 -185.108.106.0/24 203020 -185.108.107.0/24 51765 -185.108.108.0/22 24800 -185.108.116.0/22 30870 -185.108.120.0/22 20609 -185.108.128.0/23 30900 -185.108.130.0/24 30900 -185.108.131.0/24 205587 -185.108.132.0/22 204236 -185.108.140.0/23 204281 -185.108.142.0/24 197216 -185.108.143.0/24 204281 -185.108.148.0/22 174 -185.108.156.0/22 41011 -185.108.160.0/22 21447 -185.108.164.0/22 56503 -185.108.168.0/22 31631 -185.108.172.0/22 35170 -185.108.176.0/22 204239 -185.108.180.0/22 39279 -185.108.188.0/24 13172 -185.108.192.0/22 204276 -185.108.196.0/22 24837 -185.108.200.0/22 29081 -185.108.204.0/22 197518 -185.108.208.0/22 204272 -185.108.212.0/22 204144 -185.108.216.0/22 51191 -185.108.220.0/22 56975 -185.108.224.0/22 206426 -185.108.228.0/23 8881 -185.108.232.0/22 24633 -185.108.236.0/22 204265 -185.108.240.0/22 202105 -185.108.244.0/22 21232 -185.108.248.0/22 204279 -185.108.252.0/22 24800 -185.109.0.0/22 204178 -185.109.4.0/22 5466 -185.109.8.0/22 204260 -185.109.12.0/22 24800 -185.109.16.0/22 206819 -185.109.20.0/24 29854 -185.109.21.0/24 46562 -185.109.22.0/23 203549 -185.109.24.0/22 60501 -185.109.28.0/22 42926 -185.109.32.0/22 200567 -185.109.40.0/22 204258 -185.109.44.0/22 204264 -185.109.48.0/22 204183 -185.109.53.0/24 199995 -185.109.54.0/23 199995 -185.109.56.0/22 205330 -185.109.60.0/22 201540 -185.109.64.0/22 24800 -185.109.68.0/22 198916 -185.109.72.0/22 201540 -185.109.76.0/22 24800 -185.109.80.0/22 201540 -185.109.84.0/23 13214 -185.109.86.0/24 13214 -185.109.87.0/24 17804 -185.109.88.0/22 24800 -185.109.92.0/22 6908 -185.109.96.0/22 8426 -185.109.100.0/22 60690 -185.109.104.0/22 20832 -185.109.108.0/22 3320 -185.109.112.0/22 49702 -185.109.116.0/22 52063 -185.109.124.0/22 8356 -185.109.136.0/23 8676 -185.109.138.0/24 8676 -185.109.139.0/24 47578 -185.109.140.0/23 8676 -185.109.142.0/23 30931 -185.109.144.0/22 59790 -185.109.148.0/22 27435 -185.109.152.0/23 204445 -185.109.164.0/22 15576 -185.109.168.0/22 42831 -185.109.172.0/22 204645 -185.109.176.0/23 42943 -185.109.179.0/24 42943 -185.109.180.0/22 204252 -185.109.184.0/22 39423 -185.109.188.0/22 20912 -185.109.196.0/22 204253 -185.109.200.0/22 24904 -185.109.204.0/22 201776 -185.109.208.0/22 201776 -185.109.216.0/24 48635 -185.109.228.0/23 51762 -185.109.232.0/22 15791 -185.109.240.0/23 202194 -185.109.242.0/24 204248 -185.109.243.0/24 204082 -185.109.244.0/22 43754 -185.109.248.0/22 43754 -185.109.252.0/22 21368 -185.110.0.0/22 204085 -185.110.4.0/23 204246 -185.110.8.0/22 197335 -185.110.12.0/22 204243 -185.110.16.0/22 204234 -185.110.20.0/22 12874 -185.110.24.0/22 12842 -185.110.28.0/22 62284 -185.110.32.0/22 8767 -185.110.36.0/22 8680 -185.110.40.0/22 62341 -185.110.44.0/22 57227 -185.110.48.0/22 47544 -185.110.52.0/22 197898 -185.110.56.0/22 24638 -185.110.60.0/22 204232 -185.110.64.0/23 21409 -185.110.68.0/22 6739 -185.110.72.0/22 21232 -185.110.76.0/22 199952 -185.110.80.0/22 31590 -185.110.84.0/22 203554 -185.110.88.0/22 21232 -185.110.92.0/24 21276 -185.110.93.0/24 207640 -185.110.94.0/24 207640 -185.110.95.0/24 24940 -185.110.96.0/23 21212 -185.110.98.0/24 21212 -185.110.99.0/24 35280 -185.110.100.0/22 9044 -185.110.104.0/22 29256 -185.110.108.0/22 21145 -185.110.112.0/22 206130 -185.110.116.0/22 203469 -185.110.124.0/22 204218 -185.110.128.0/23 9009 -185.110.130.0/23 57129 -185.110.132.0/24 40965 -185.110.133.0/24 203008 -185.110.134.0/24 203008 -185.110.135.0/24 62179 -185.110.136.0/22 31543 -185.110.140.0/22 34820 -185.110.144.0/22 56800 -185.110.148.0/22 21067 -185.110.152.0/22 203969 -185.110.156.0/22 51487 -185.110.160.0/22 20973 -185.110.172.0/22 35470 -185.110.178.0/23 5607 -185.110.180.0/22 204193 -185.110.184.0/22 21232 -185.110.196.0/22 6830 -185.110.204.0/22 41670 -185.110.208.0/22 196798 -185.110.212.0/22 41343 -185.110.216.0/22 60932 -185.110.220.0/24 203710 -185.110.224.0/22 42947 -185.110.228.0/22 206217 -185.110.232.0/22 21002 -185.110.236.0/23 47796 -185.110.238.0/24 47796 -185.110.239.0/24 21005 -185.110.240.0/22 44558 -185.110.244.0/23 39650 -185.110.246.0/24 39650 -185.110.247.0/24 48147 -185.110.248.0/22 60899 -185.110.252.0/22 62250 -185.111.0.0/22 41343 -185.111.4.0/22 44979 -185.111.8.0/21 201540 -185.111.16.0/22 44902 -185.111.22.0/23 394105 -185.111.24.0/22 9009 -185.111.28.0/22 59865 -185.111.36.0/22 44735 -185.111.42.0/23 47886 -185.111.44.0/22 204202 -185.111.48.0/22 201776 -185.111.52.0/22 20986 -185.111.56.0/22 20986 -185.111.60.0/22 204201 -185.111.64.0/22 201540 -185.111.68.0/22 29505 -185.111.72.0/22 202596 -185.111.76.0/22 56911 -185.111.84.0/22 204198 -185.111.88.0/22 51013 -185.111.92.0/22 196962 -185.111.96.0/22 34093 -185.111.100.0/22 20698 -185.111.104.0/22 200532 -185.111.116.0/22 43998 -185.111.120.0/22 34968 -185.111.124.0/22 200580 -185.111.128.0/22 199713 -185.111.132.0/22 31608 -185.111.136.0/22 201540 -185.111.140.0/22 44384 -185.111.144.0/22 20811 -185.111.148.0/22 204189 -185.111.152.0/22 204101 -185.111.160.0/22 20874 -185.111.164.0/22 204144 -185.111.168.0/22 204147 -185.111.172.0/22 7922 -185.111.180.0/22 61053 -185.111.184.0/22 200064 -185.111.188.0/22 61094 -185.111.192.0/22 42605 -185.111.196.0/22 34762 -185.111.200.0/22 63037 -185.111.204.0/22 39923 -185.111.208.0/22 204168 -185.111.212.0/22 20818 -185.111.216.0/22 61400 -185.111.220.0/22 20802 -185.111.224.0/22 56329 -185.111.232.0/23 51557 -185.111.234.0/24 51557 -185.111.235.0/24 60144 -185.111.236.0/22 204207 -185.111.240.0/22 51701 -185.111.244.0/22 43260 -185.111.248.0/22 204180 -185.111.252.0/22 12357 -185.112.0.0/22 60609 -185.112.4.0/22 204158 -185.112.8.0/24 8302 -185.112.12.0/22 197726 -185.112.16.0/22 20986 -185.112.20.0/23 41937 -185.112.22.0/24 41937 -185.112.24.0/22 56867 -185.112.28.0/22 20643 -185.112.32.0/21 43754 -185.112.40.0/23 31445 -185.112.42.0/24 29534 -185.112.43.0/24 31445 -185.112.48.0/22 20634 -185.112.52.0/23 34893 -185.112.55.0/24 397568 -185.112.56.0/23 9009 -185.112.58.0/23 57129 -185.112.60.0/22 204176 -185.112.64.0/22 15426 -185.112.68.0/22 203983 -185.112.76.0/22 201453 -185.112.80.0/24 49189 -185.112.81.0/24 50113 -185.112.82.0/24 51765 -185.112.83.0/24 46562 -185.112.84.0/22 5602 -185.112.90.0/24 20836 -185.112.92.0/22 61000 -185.112.96.0/22 50605 -185.112.100.0/23 50113 -185.112.102.0/24 50113 -185.112.103.0/24 46562 -185.112.104.0/22 204170 -185.112.111.0/24 205508 -185.112.112.0/22 44769 -185.112.116.0/22 34999 -185.112.120.0/22 201776 -185.112.124.0/22 204138 -185.112.128.0/22 58224 -185.112.136.0/22 34941 -185.112.140.0/22 204161 -185.112.144.0/22 44925 -185.112.148.0/22 34078 -185.112.152.0/22 13247 -185.112.156.0/22 47381 -185.112.160.0/22 46313 -185.112.164.0/22 204165 -185.112.168.0/22 201540 -185.112.172.0/23 204540 -185.112.174.0/23 204573 -185.112.176.0/22 203970 -185.112.180.0/24 16509 -185.112.184.0/22 31543 -185.112.188.0/22 204149 -185.112.192.0/22 50274 -185.112.196.0/22 31686 -185.112.204.0/22 59396 -185.112.208.0/22 42789 -185.112.216.0/22 25276 -185.112.220.0/24 5555 -185.112.224.0/22 50427 -185.112.228.0/22 202213 -185.112.232.0/22 204152 -185.112.236.0/22 204144 -185.112.240.0/22 204530 -185.112.244.0/22 203185 -185.112.248.0/22 202939 -185.112.252.0/22 15987 -185.113.0.0/22 207120 -185.113.4.0/22 197063 -185.113.10.0/24 47952 -185.113.12.0/22 8681 -185.113.16.0/22 199481 -185.113.20.0/24 20582 -185.113.22.0/23 20582 -185.113.24.0/22 20596 -185.113.30.0/23 34829 -185.113.32.0/23 5582 -185.113.36.0/22 56568 -185.113.40.0/22 12601 -185.113.44.0/22 25373 -185.113.48.0/22 20565 -185.113.52.0/24 34762 -185.113.56.0/22 60627 -185.113.60.0/22 199335 -185.113.64.0/22 204145 -185.113.68.0/22 12658 -185.113.72.0/21 204144 -185.113.80.0/22 12658 -185.113.84.0/22 20559 -185.113.88.0/22 60781 -185.113.96.0/22 29518 -185.113.100.0/22 34318 -185.113.104.0/22 57324 -185.113.108.0/22 34300 -185.113.112.0/22 16286 -185.113.116.0/23 21446 -185.113.118.0/24 21446 -185.113.119.0/24 39594 -185.113.120.0/22 60294 -185.113.124.0/24 206080 -185.113.128.0/23 42831 -185.113.132.0/22 200532 -185.113.136.0/23 204895 -185.113.140.0/22 204094 -185.113.144.0/22 203924 -185.113.148.0/22 20677 -185.113.152.0/22 20677 -185.113.156.0/22 12926 -185.113.160.0/22 20493 -185.113.164.0/22 60845 -185.113.168.0/23 49036 -185.113.170.0/24 49036 -185.113.176.0/22 62183 -185.113.180.0/22 204139 -185.113.184.0/22 29119 -185.113.188.0/22 31727 -185.113.192.0/22 29119 -185.113.196.0/22 34762 -185.113.200.0/22 57420 -185.113.204.0/22 35826 -185.113.208.0/22 8774 -185.113.212.0/22 35332 -185.113.220.0/22 42926 -185.113.224.0/24 8315 -185.113.227.0/24 8315 -185.113.228.0/22 16244 -185.113.232.0/22 29644 -185.113.236.0/23 203603 -185.113.238.0/24 203603 -185.113.239.0/24 204463 -185.113.240.0/22 50292 -185.113.244.0/22 198110 -185.113.248.0/22 16171 -185.113.252.0/24 204072 -185.114.0.0/22 204121 -185.114.4.0/22 35717 -185.114.8.0/22 204124 -185.114.12.0/23 204127 -185.114.16.0/22 12372 -185.114.20.0/22 201978 -185.114.28.0/22 43350 -185.114.33.0/24 9009 -185.114.36.0/24 6939 -185.114.37.0/24 198047 -185.114.38.0/24 198047 -185.114.39.0/24 25542 -185.114.44.0/22 206749 -185.114.48.0/22 204120 -185.114.52.0/22 62388 -185.114.56.0/22 49788 -185.114.60.0/22 39855 -185.114.64.0/22 29119 -185.114.76.0/22 11179 -185.114.80.0/22 198090 -185.114.88.0/22 16169 -185.114.92.0/22 199338 -185.114.96.0/22 41357 -185.114.100.0/22 30781 -185.114.104.0/22 41175 -185.114.108.0/23 24961 -185.114.112.0/22 204100 -185.114.116.0/22 44942 -185.114.120.0/22 13150 -185.114.124.0/22 197164 -185.114.132.0/22 204109 -185.114.136.0/22 204108 -185.114.140.0/22 31317 -185.114.144.0/22 204068 -185.114.148.0/23 56567 -185.114.150.0/24 56567 -185.114.151.0/24 56486 -185.114.152.0/22 26167 -185.114.156.0/22 49544 -185.114.160.0/22 34912 -185.114.164.0/23 13117 -185.114.168.0/22 49956 -185.114.176.0/22 204595 -185.114.180.0/22 29582 -185.114.184.0/22 48520 -185.114.188.0/22 15907 -185.114.192.0/22 199366 -185.114.196.0/22 203474 -185.114.200.0/22 3320 -185.114.204.0/24 9009 -185.114.205.0/24 35758 -185.114.206.0/23 9009 -185.114.212.0/22 203968 -185.114.216.0/23 15924 -185.114.218.0/24 204529 -185.114.220.0/22 61982 -185.114.224.0/24 25369 -185.114.225.0/24 61029 -185.114.226.0/24 35913 -185.114.227.0/24 49981 -185.114.228.0/23 198849 -185.114.232.0/22 204096 -185.114.236.0/22 58075 -185.114.240.0/22 29256 -185.114.248.0/23 204075 -185.114.252.0/22 42334 -185.115.0.0/24 9053 -185.115.1.0/24 43541 -185.115.2.0/24 43541 -185.115.4.0/22 16010 -185.115.8.0/22 42189 -185.115.12.0/24 204090 -185.115.16.0/22 20904 -185.115.24.0/22 196922 -185.115.28.0/22 59398 -185.115.32.0/23 49453 -185.115.35.0/24 49453 -185.115.36.0/22 31234 -185.115.40.0/22 201928 -185.115.44.0/22 28978 -185.115.48.0/22 42263 -185.115.52.0/22 6739 -185.115.60.0/22 203460 -185.115.64.0/22 204089 -185.115.72.0/22 47727 -185.115.76.0/22 44244 -185.115.80.0/22 30742 -185.115.84.0/24 47386 -185.115.88.0/24 47886 -185.115.90.0/24 22143 -185.115.92.0/22 59878 -185.115.96.0/22 15848 -185.115.100.0/22 15511 -185.115.104.0/22 204080 -185.115.108.0/22 8513 -185.115.112.0/22 203845 -185.115.118.0/23 205177 -185.115.120.0/22 44205 -185.115.124.0/24 204099 -185.115.125.0/24 42198 -185.115.126.0/24 21859 -185.115.127.0/24 209280 -185.115.128.0/24 21859 -185.115.129.0/24 54600 -185.115.130.0/24 21859 -185.115.131.0/24 9009 -185.115.132.0/23 41606 -185.115.135.0/24 41606 -185.115.136.0/22 57473 -185.115.140.0/24 42244 -185.115.141.0/24 61424 -185.115.142.0/24 42244 -185.115.144.0/22 39855 -185.115.148.0/22 51074 -185.115.152.0/22 15718 -185.115.156.0/22 15449 -185.115.160.0/22 204071 -185.115.164.0/22 132046 -185.115.168.0/22 199082 -185.115.172.0/22 204053 -185.115.176.0/22 204038 -185.115.180.0/22 204064 -185.115.188.0/22 48512 -185.115.196.0/23 35180 -185.115.204.0/23 15637 -185.115.206.0/24 15637 -185.115.207.0/24 201935 -185.115.208.0/22 25145 -185.115.212.0/22 378 -185.115.216.0/22 34762 -185.115.220.0/22 34560 -185.115.228.0/22 15622 -185.115.232.0/22 204062 -185.115.236.0/22 204195 -185.115.240.0/24 21859 -185.115.241.0/24 42495 -185.115.242.0/24 202365 -185.115.243.0/24 51167 -185.115.252.0/22 16186 -185.116.0.0/22 204060 -185.116.4.0/22 16186 -185.116.8.0/22 3292 -185.116.12.0/22 39855 -185.116.20.0/22 56616 -185.116.24.0/22 203798 -185.116.28.0/22 29085 -185.116.32.0/22 198024 -185.116.36.0/22 204052 -185.116.40.0/22 34373 -185.116.44.0/22 58224 -185.116.48.0/22 204064 -185.116.52.0/22 204050 -185.116.60.0/22 37019 -185.116.64.0/23 203060 -185.116.66.0/24 203060 -185.116.68.0/22 22663 -185.116.72.0/22 34762 -185.116.76.0/22 50698 -185.116.80.0/22 204030 -185.116.84.0/22 56320 -185.116.88.0/22 50535 -185.116.92.0/24 139321 -185.116.94.0/23 138570 -185.116.100.0/22 51082 -185.116.104.0/22 204046 -185.116.108.0/22 204044 -185.116.112.0/24 51055 -185.116.113.0/24 204269 -185.116.114.0/23 204269 -185.116.120.0/22 198965 -185.116.124.0/22 203769 -185.116.128.0/22 39405 -185.116.132.0/22 29104 -185.116.140.0/22 206026 -185.116.144.0/22 49033 -185.116.148.0/22 3308 -185.116.152.0/22 13204 -185.116.156.0/22 204035 -185.116.160.0/22 61173 -185.116.164.0/22 50673 -185.116.172.0/23 25335 -185.116.174.0/24 204139 -185.116.175.0/24 25335 -185.116.176.0/22 204033 -185.116.180.0/22 12338 -185.116.184.0/22 9158 -185.116.192.0/22 202958 -185.116.196.0/22 12543 -185.116.200.0/24 60720 -185.116.201.0/24 15556 -185.116.202.0/23 60720 -185.116.208.0/23 9029 -185.116.211.0/24 9029 -185.116.212.0/22 12488 -185.116.216.0/22 47816 -185.116.220.0/22 197558 -185.116.224.0/24 204011 -185.116.226.0/24 204011 -185.116.228.0/22 204029 -185.116.234.0/24 23352 -185.116.235.0/24 17819 -185.116.236.0/23 49683 -185.116.239.0/24 49683 -185.116.240.0/22 16312 -185.116.244.0/22 42263 -185.116.248.0/22 9063 -185.116.252.0/22 47329 -185.117.0.0/22 134094 -185.117.8.0/22 202699 -185.117.12.0/24 51786 -185.117.13.0/24 42978 -185.117.14.0/24 62078 -185.117.15.0/24 15623 -185.117.16.0/22 39405 -185.117.20.0/23 35913 -185.117.22.0/24 7489 -185.117.23.0/24 54600 -185.117.24.0/22 203708 -185.117.28.0/23 204735 -185.117.30.0/24 204735 -185.117.32.0/23 47521 -185.117.34.0/24 47521 -185.117.35.0/24 56910 -185.117.36.0/22 48504 -185.117.40.0/22 34183 -185.117.44.0/22 204004 -185.117.48.0/22 58224 -185.117.52.0/22 12440 -185.117.56.0/22 61205 -185.117.60.0/22 203731 -185.117.64.0/22 198776 -185.117.68.0/22 12897 -185.117.72.0/22 60117 -185.117.76.0/22 57124 -185.117.80.0/24 49681 -185.117.81.0/24 49176 -185.117.82.0/24 200533 -185.117.83.0/24 203918 -185.117.84.0/22 202177 -185.117.88.0/23 42708 -185.117.90.0/23 59711 -185.117.92.0/22 30889 -185.117.100.0/22 201776 -185.117.104.0/22 198463 -185.117.108.0/22 12414 -185.117.112.0/22 31043 -185.117.116.0/24 47489 -185.117.117.0/24 50113 -185.117.118.0/24 51765 -185.117.119.0/24 200740 -185.117.120.0/22 205951 -185.117.124.0/23 203990 -185.117.128.0/24 203378 -185.117.132.0/24 204006 -185.117.134.0/23 204006 -185.117.136.0/22 13235 -185.117.140.0/22 201776 -185.117.144.0/22 203972 -185.117.148.0/22 47237 -185.117.152.0/22 35196 -185.117.156.0/22 203994 -185.117.164.0/22 13190 -185.117.168.0/22 200713 -185.117.172.0/22 203989 -185.117.176.0/24 15734 -185.117.179.0/24 15734 -185.117.180.0/22 12557 -185.117.184.0/22 200873 -185.117.192.0/22 31726 -185.117.196.0/22 55081 -185.117.204.0/22 31175 -185.117.208.0/24 33915 -185.117.209.0/24 1136 -185.117.212.0/24 50629 -185.117.213.0/24 3624 -185.117.214.0/23 47447 -185.117.216.0/22 34606 -185.117.220.0/22 35175 -185.117.228.0/24 198477 -185.117.229.0/24 1241 -185.117.236.0/22 51918 -185.117.240.0/22 25386 -185.117.244.0/22 47747 -185.117.248.0/22 24973 -185.117.252.0/22 35258 -185.118.0.0/22 29075 -185.118.8.0/22 203982 -185.118.12.0/22 202391 -185.118.16.0/22 197653 -185.118.20.0/22 13101 -185.118.24.0/22 13044 -185.118.28.0/22 25460 -185.118.32.0/22 48685 -185.118.36.0/22 203975 -185.118.40.0/22 42525 -185.118.44.0/22 203904 -185.118.48.0/22 203971 -185.118.52.0/22 201942 -185.118.56.0/22 16371 -185.118.60.0/22 13006 -185.118.64.0/22 59504 -185.118.68.0/22 58208 -185.118.72.0/22 47406 -185.118.76.0/22 8285 -185.118.80.0/22 12984 -185.118.84.0/22 203962 -185.118.90.0/24 41095 -185.118.92.0/22 50903 -185.118.100.0/22 41589 -185.118.104.0/24 3356 -185.118.105.0/24 174 -185.118.108.0/23 204512 -185.118.112.0/22 39384 -185.118.116.0/22 52147 -185.118.120.0/22 3311 -185.118.128.0/22 12952 -185.118.132.0/22 46261 -185.118.136.0/22 57816 -185.118.140.0/22 57844 -185.118.144.0/22 35739 -185.118.148.0/22 47394 -185.118.152.0/22 62250 -185.118.156.0/22 203934 -185.118.160.0/22 1257 -185.118.164.0/22 44493 -185.118.168.0/22 203877 -185.118.180.0/22 42525 -185.118.184.0/22 51710 -185.118.188.0/22 203936 -185.118.194.0/23 203925 -185.118.196.0/22 204028 -185.118.200.0/22 2614 -185.118.204.0/22 24916 -185.118.208.0/24 203894 -185.118.212.0/22 204373 -185.118.216.0/22 203944 -185.118.220.0/22 12590 -185.118.224.0/22 29240 -185.118.228.0/24 203185 -185.118.232.0/22 8236 -185.118.236.0/23 203955 -185.118.240.0/24 203954 -185.118.241.0/24 31293 -185.118.242.0/23 31293 -185.118.244.0/22 60517 -185.118.248.0/22 203953 -185.118.252.0/22 12517 -185.119.0.0/22 43267 -185.119.4.0/22 203951 -185.119.8.0/22 12546 -185.119.12.0/22 20552 -185.119.20.0/22 31742 -185.119.24.0/22 203544 -185.119.28.0/22 197731 -185.119.32.0/22 9063 -185.119.36.0/22 21232 -185.119.40.0/24 54994 -185.119.42.0/24 13658 -185.119.43.0/24 54994 -185.119.44.0/22 25447 -185.119.48.0/22 201942 -185.119.52.0/22 29611 -185.119.64.0/22 44816 -185.119.68.0/22 6908 -185.119.72.0/22 13101 -185.119.76.0/22 15645 -185.119.80.0/22 29262 -185.119.84.0/22 203892 -185.119.88.0/23 12459 -185.119.90.0/24 12459 -185.119.91.0/24 201789 -185.119.92.0/22 12611 -185.119.96.0/22 12344 -185.119.100.0/22 20574 -185.119.104.0/23 12307 -185.119.106.0/24 57166 -185.119.107.0/24 204418 -185.119.110.0/24 2856 -185.119.111.0/24 5413 -185.119.112.0/22 201942 -185.119.116.0/22 44133 -185.119.120.0/22 203937 -185.119.124.0/22 48685 -185.119.128.0/22 203940 -185.119.132.0/24 9009 -185.119.133.0/24 203649 -185.119.136.0/23 48519 -185.119.138.0/23 8391 -185.119.140.0/22 8336 -185.119.144.0/22 20652 -185.119.148.0/22 43253 -185.119.152.0/22 57002 -185.119.164.0/22 62250 -185.119.168.0/22 197422 -185.119.172.0/22 198047 -185.119.176.0/22 57370 -185.119.180.0/22 12301 -185.119.184.0/23 197790 -185.119.186.0/24 207221 -185.119.187.0/24 197790 -185.119.188.0/22 197395 -185.119.192.0/22 34141 -185.119.200.0/22 57103 -185.119.204.0/22 203927 -185.119.208.0/22 50016 -185.119.212.0/22 49223 -185.119.216.0/23 198167 -185.119.218.0/24 198167 -185.119.219.0/24 197731 -185.119.220.0/22 203923 -185.119.224.0/22 203073 -185.119.228.0/22 202709 -185.119.232.0/22 203897 -185.119.236.0/22 3348 -185.119.244.0/22 31319 -185.119.248.0/22 39398 -185.119.252.0/24 23470 -185.119.253.0/24 9009 -185.119.254.0/24 35913 -185.119.255.0/24 25369 -185.120.0.0/22 58246 -185.120.4.0/24 47264 -185.120.5.0/24 60721 -185.120.6.0/24 202365 -185.120.7.0/24 25926 -185.120.8.0/22 204089 -185.120.12.0/24 21859 -185.120.13.0/24 53850 -185.120.14.0/24 24000 -185.120.15.0/24 25369 -185.120.16.0/22 204089 -185.120.20.0/23 62240 -185.120.22.0/24 206479 -185.120.23.0/24 20473 -185.120.24.0/22 203343 -185.120.28.0/22 8699 -185.120.32.0/24 21859 -185.120.33.0/24 54600 -185.120.34.0/24 25369 -185.120.35.0/24 49544 -185.120.36.0/22 6843 -185.120.40.0/22 9026 -185.120.44.0/22 205512 -185.120.48.0/22 9054 -185.120.52.0/22 24594 -185.120.56.0/22 202933 -185.120.60.0/22 202610 -185.120.64.0/22 60589 -185.120.68.0/22 8646 -185.120.72.0/22 6908 -185.120.76.0/22 203087 -185.120.80.0/22 209992 -185.120.84.0/22 62332 -185.120.88.0/24 204029 -185.120.89.0/24 197152 -185.120.100.0/22 12552 -185.120.104.0/22 51609 -185.120.108.0/22 203896 -185.120.112.0/22 61205 -185.120.118.0/23 35064 -185.120.124.0/22 8948 -185.120.128.0/22 60241 -185.120.132.0/22 16007 -185.120.136.0/22 203895 -185.120.144.0/22 9009 -185.120.148.0/24 60254 -185.120.152.0/22 6908 -185.120.160.0/22 8868 -185.120.164.0/23 203849 -185.120.168.0/23 56402 -185.120.171.0/24 205550 -185.120.172.0/22 203887 -185.120.176.0/22 25540 -185.120.180.0/22 203893 -185.120.188.0/22 203891 -185.120.192.0/21 201540 -185.120.200.0/22 201540 -185.120.204.0/22 50056 -185.120.208.0/22 201540 -185.120.212.0/22 58224 -185.120.216.0/22 201540 -185.120.220.0/22 43754 -185.120.224.0/22 201540 -185.120.228.0/22 58224 -185.120.232.0/22 201540 -185.120.236.0/22 58224 -185.120.240.0/22 201540 -185.120.248.0/22 43754 -185.120.252.0/22 24654 -185.121.0.0/22 196854 -185.121.4.0/22 42689 -185.121.12.0/22 201942 -185.121.16.0/22 8791 -185.121.20.0/22 8639 -185.121.24.0/22 62240 -185.121.28.0/22 8769 -185.121.32.0/22 50316 -185.121.40.0/22 35369 -185.121.44.0/22 34244 -185.121.48.0/22 203876 -185.121.52.0/24 8666 -185.121.56.0/22 48359 -185.121.68.0/24 199163 -185.121.69.0/24 49697 -185.121.70.0/24 201878 -185.121.71.0/24 20764 -185.121.72.0/22 57251 -185.121.76.0/22 50056 -185.121.80.0/22 202958 -185.121.84.0/22 199975 -185.121.88.0/23 202630 -185.121.90.0/24 5413 -185.121.92.0/22 8455 -185.121.96.0/22 205887 -185.121.100.0/22 31543 -185.121.104.0/23 208735 -185.121.106.0/23 204861 -185.121.108.0/23 56824 -185.121.110.0/24 49337 -185.121.111.0/24 64418 -185.121.112.0/22 57795 -185.121.116.0/24 8494 -185.121.117.0/24 49599 -185.121.118.0/24 44873 -185.121.119.0/24 49145 -185.121.120.0/22 43289 -185.121.124.0/22 8589 -185.121.128.0/22 44285 -185.121.136.0/22 25369 -185.121.140.0/22 203745 -185.121.144.0/22 38966 -185.121.152.0/24 8100 -185.121.154.0/24 60117 -185.121.156.0/22 31319 -185.121.160.0/23 201341 -185.121.162.0/24 138995 -185.121.163.0/24 204136 -185.121.164.0/22 203872 -185.121.168.0/24 61138 -185.121.169.0/24 138995 -185.121.170.0/24 138995 -185.121.171.0/24 203061 -185.121.172.0/22 8502 -185.121.176.0/24 8100 -185.121.177.0/24 204136 -185.121.178.0/23 138995 -185.121.180.0/22 21315 -185.121.184.0/22 29256 -185.121.188.0/24 207220 -185.121.192.0/22 203865 -185.121.196.0/22 34154 -185.121.200.0/22 44377 -185.121.204.0/24 3246 -185.121.205.0/24 12859 -185.121.208.0/22 205005 -185.121.216.0/22 43016 -185.121.224.0/22 51030 -185.121.232.0/22 198432 -185.121.236.0/22 199673 -185.121.240.0/22 59796 -185.121.244.0/24 209119 -185.121.245.0/24 24599 -185.121.246.0/23 24599 -185.121.248.0/22 6908 -185.122.0.0/24 203898 -185.122.4.0/22 203854 -185.122.8.0/23 1680 -185.122.10.0/24 1680 -185.122.11.0/24 208611 -185.122.12.0/22 42926 -185.122.16.0/23 203795 -185.122.24.0/22 47568 -185.122.28.0/22 42484 -185.122.32.0/22 29046 -185.122.36.0/24 23470 -185.122.37.0/24 21859 -185.122.38.0/24 205512 -185.122.39.0/24 202365 -185.122.40.0/22 196843 -185.122.44.0/22 12874 -185.122.52.0/22 49117 -185.122.56.0/22 7489 -185.122.60.0/22 62328 -185.122.64.0/22 56595 -185.122.68.0/22 199286 -185.122.72.0/22 197603 -185.122.76.0/22 203200 -185.122.80.0/22 24707 -185.122.84.0/22 44365 -185.122.92.0/22 31126 -185.122.96.0/22 197697 -185.122.100.0/22 203596 -185.122.104.0/22 197697 -185.122.108.0/22 203817 -185.122.112.0/22 203839 -185.122.116.0/22 20559 -185.122.120.0/22 206694 -185.122.124.0/22 204139 -185.122.128.0/22 25335 -185.122.132.0/22 199256 -185.122.136.0/22 15391 -185.122.140.0/24 43151 -185.122.141.0/24 201341 -185.122.142.0/24 43151 -185.122.143.0/24 201341 -185.122.144.0/23 203828 -185.122.146.0/24 43888 -185.122.147.0/24 203828 -185.122.148.0/22 203996 -185.122.152.0/22 199139 -185.122.160.0/22 25540 -185.122.164.0/22 49683 -185.122.168.0/22 60781 -185.122.172.0/23 60646 -185.122.174.0/24 203157 -185.122.175.0/24 199787 -185.122.176.0/22 25019 -185.122.180.0/22 51862 -185.122.184.0/23 15364 -185.122.186.0/23 50129 -185.122.188.0/22 203825 -185.122.192.0/22 48101 -185.122.196.0/22 203823 -185.122.200.0/22 43260 -185.122.204.0/22 6842 -185.122.208.0/22 203818 -185.122.212.0/22 203812 -185.122.216.0/22 16376 -185.122.220.0/23 203523 -185.122.222.0/24 203523 -185.122.223.0/24 9009 -185.122.224.0/22 44831 -185.122.228.0/22 47394 -185.122.232.0/22 6908 -185.122.236.0/22 203882 -185.122.244.0/23 39498 -185.122.252.0/24 203811 -185.123.0.0/22 2872 -185.123.8.0/23 21309 -185.123.10.0/24 198949 -185.123.11.0/24 21309 -185.123.12.0/22 57214 -185.123.16.0/22 48450 -185.123.24.0/24 29075 -185.123.25.0/24 64426 -185.123.26.0/23 29075 -185.123.32.0/22 203814 -185.123.36.0/22 47406 -185.123.40.0/22 6704 -185.123.44.0/22 201776 -185.123.48.0/22 51944 -185.123.56.0/22 203709 -185.123.60.0/24 60781 -185.123.61.0/24 39647 -185.123.62.0/24 39647 -185.123.64.0/22 35511 -185.123.68.0/22 5627 -185.123.72.0/22 203797 -185.123.76.0/24 208047 -185.123.77.0/24 199599 -185.123.78.0/23 199599 -185.123.81.0/24 198382 -185.123.84.0/22 41405 -185.123.88.0/22 205427 -185.123.92.0/22 203800 -185.123.96.0/22 36351 -185.123.100.0/23 199984 -185.123.102.0/24 3188 -185.123.103.0/24 199984 -185.123.104.0/22 203606 -185.123.108.0/22 203813 -185.123.112.0/22 207045 -185.123.116.0/22 29422 -185.123.120.0/23 204653 -185.123.122.0/23 8903 -185.123.124.0/22 15694 -185.123.128.0/22 198171 -185.123.136.0/22 29119 -185.123.140.0/22 9009 -185.123.144.0/20 204085 -185.123.160.0/22 43962 -185.123.164.0/22 5514 -185.123.168.0/22 200005 -185.123.172.0/22 20533 -185.123.184.0/22 43232 -185.123.188.0/23 201200 -185.123.192.0/22 203791 -185.123.196.0/22 60690 -185.123.200.0/22 197267 -185.123.204.0/23 5505 -185.123.207.0/24 5505 -185.123.208.0/22 5542 -185.123.216.0/22 203789 -185.123.220.0/22 41011 -185.123.224.0/22 203507 -185.123.228.0/22 47155 -185.123.232.0/22 49924 -185.123.237.0/24 8296 -185.123.238.0/24 8296 -185.123.240.0/22 204139 -185.123.244.0/22 48537 -185.123.248.0/21 204085 -185.124.0.0/22 204085 -185.124.4.0/22 203704 -185.124.8.0/22 200000 -185.124.12.0/22 49371 -185.124.16.0/24 205497 -185.124.18.0/24 205497 -185.124.20.0/22 12479 -185.124.24.0/21 12479 -185.124.32.0/24 203775 -185.124.33.0/24 203929 -185.124.34.0/23 203929 -185.124.36.0/22 12479 -185.124.40.0/22 8018 -185.124.44.0/22 198291 -185.124.48.0/22 52051 -185.124.52.0/22 203779 -185.124.56.0/22 25335 -185.124.60.0/22 204139 -185.124.64.0/23 5439 -185.124.68.0/23 203776 -185.124.72.0/22 203228 -185.124.76.0/22 5485 -185.124.84.0/22 43260 -185.124.88.0/21 198024 -185.124.96.0/22 5577 -185.124.100.0/22 29119 -185.124.104.0/22 207050 -185.124.108.0/22 201942 -185.124.112.0/22 60627 -185.124.116.0/22 203765 -185.124.120.0/22 25579 -185.124.124.0/22 47202 -185.124.128.0/22 48727 -185.124.140.0/22 203751 -185.124.144.0/22 31543 -185.124.148.0/23 202777 -185.124.150.0/24 202777 -185.124.151.0/24 203409 -185.124.152.0/22 12737 -185.124.156.0/22 58224 -185.124.160.0/23 209199 -185.124.164.0/22 41516 -185.124.168.0/22 31148 -185.124.172.0/23 197343 -185.124.174.0/24 34078 -185.124.175.0/24 197343 -185.124.176.0/24 39442 -185.124.177.0/24 41344 -185.124.178.0/23 39442 -185.124.180.0/22 203726 -185.124.184.0/22 203760 -185.124.188.0/22 24739 -185.124.192.0/22 203759 -185.124.196.0/23 3337 -185.124.200.0/22 61047 -185.124.204.0/22 203754 -185.124.208.0/22 51916 -185.124.212.0/22 9051 -185.124.216.0/22 28768 -185.124.220.0/22 21263 -185.124.224.0/22 21263 -185.124.228.0/22 12737 -185.124.232.0/22 42184 -185.124.236.0/22 43814 -185.124.244.0/22 3290 -185.124.248.0/22 41496 -185.124.252.0/22 28716 -185.125.0.0/22 200519 -185.125.4.0/24 203937 -185.125.5.0/24 34525 -185.125.6.0/24 197064 -185.125.7.0/24 13119 -185.125.8.0/22 203205 -185.125.12.0/22 60636 -185.125.16.0/22 62222 -185.125.20.0/22 48359 -185.125.24.0/22 29222 -185.125.28.0/22 204602 -185.125.32.0/22 197328 -185.125.36.0/22 59790 -185.125.40.0/22 203740 -185.125.44.0/22 48096 -185.125.48.0/23 207064 -185.125.51.0/24 202015 -185.125.52.0/22 203608 -185.125.56.0/22 62222 -185.125.60.0/22 203752 -185.125.64.0/22 209519 -185.125.72.0/22 39442 -185.125.76.0/22 60458 -185.125.80.0/22 42525 -185.125.84.0/23 36351 -185.125.86.0/24 134433 -185.125.87.0/24 36351 -185.125.88.0/24 9198 -185.125.89.0/24 200532 -185.125.91.0/24 200532 -185.125.92.0/22 58010 -185.125.96.0/22 207045 -185.125.100.0/22 203747 -185.125.104.0/24 30150 -185.125.108.0/24 43927 -185.125.112.0/22 50042 -185.125.116.0/22 57795 -185.125.120.0/22 203744 -185.125.124.0/22 2590 -185.125.128.0/22 47232 -185.125.132.0/22 203742 -185.125.136.0/22 13272 -185.125.140.0/22 203678 -185.125.144.0/22 202074 -185.125.148.0/22 9051 -185.125.152.0/21 9051 -185.125.160.0/22 203733 -185.125.164.0/22 203732 -185.125.168.0/22 56655 -185.125.172.0/22 203412 -185.125.176.0/23 8400 -185.125.180.0/24 9008 -185.125.183.0/24 9008 -185.125.184.0/22 203939 -185.125.188.0/22 41231 -185.125.192.0/22 208058 -185.125.196.0/23 6893 -185.125.198.0/24 6893 -185.125.204.0/22 25369 -185.125.208.0/22 41491 -185.125.212.0/22 50849 -185.125.216.0/22 35196 -185.125.220.0/22 60111 -185.125.224.0/22 203724 -185.125.228.0/22 35196 -185.125.232.0/22 200831 -185.125.236.0/22 203722 -185.125.244.0/22 49100 -185.125.248.0/21 49100 -185.126.0.0/20 49100 -185.126.16.0/23 49100 -185.126.18.0/23 15402 -185.126.20.0/22 47576 -185.126.24.0/22 64401 -185.126.28.0/22 24940 -185.126.36.0/22 34989 -185.126.40.0/22 49100 -185.126.44.0/22 57778 -185.126.48.0/22 48517 -185.126.52.0/24 21060 -185.126.56.0/22 41960 -185.126.60.0/22 203715 -185.126.64.0/23 60781 -185.126.66.0/24 60781 -185.126.67.0/24 29066 -185.126.68.0/22 204089 -185.126.72.0/21 47967 -185.126.80.0/22 197518 -185.126.84.0/22 45027 -185.126.88.0/22 197802 -185.126.92.0/24 202268 -185.126.93.0/24 210331 -185.126.94.0/24 200505 -185.126.96.0/23 32475 -185.126.100.0/22 61430 -185.126.104.0/22 203712 -185.126.108.0/22 60111 -185.126.112.0/22 41018 -185.126.116.0/22 204089 -185.126.120.0/22 13245 -185.126.124.0/22 132046 -185.126.128.0/23 12737 -185.126.130.0/24 12737 -185.126.131.0/24 205720 -185.126.133.0/24 48281 -185.126.134.0/23 48281 -185.126.136.0/22 204085 -185.126.140.0/22 34758 -185.126.144.0/22 31732 -185.126.148.0/22 204085 -185.126.152.0/22 197660 -185.126.156.0/23 48281 -185.126.158.0/23 58271 -185.126.160.0/22 204085 -185.126.164.0/22 203443 -185.126.168.0/22 207248 -185.126.172.0/22 48325 -185.126.176.0/22 60721 -185.126.180.0/24 206435 -185.126.181.0/24 208102 -185.126.182.0/23 49107 -185.126.184.0/22 8896 -185.126.188.0/22 8508 -185.126.192.0/22 49776 -185.126.196.0/22 200918 -185.126.200.0/23 209836 -185.126.202.0/23 209782 -185.126.204.0/22 208920 -185.126.208.0/23 60487 -185.126.210.0/24 199931 -185.126.212.0/22 8520 -185.126.216.0/22 51559 -185.126.220.0/24 6830 -185.126.221.0/24 203702 -185.126.222.0/23 203702 -185.126.224.0/22 204085 -185.126.228.0/22 203698 -185.126.232.0/22 29119 -185.126.236.0/22 204085 -185.126.240.0/22 62297 -185.126.244.0/22 25540 -185.126.248.0/22 204085 -185.126.252.0/24 56899 -185.126.253.0/24 52180 -185.126.254.0/24 61997 -185.126.255.0/24 25553 -185.127.0.0/22 6769 -185.127.4.0/22 57809 -185.127.8.0/22 50440 -185.127.12.0/23 57146 -185.127.14.0/24 57146 -185.127.16.0/22 210329 -185.127.20.0/23 203658 -185.127.22.0/23 199517 -185.127.24.0/22 204490 -185.127.28.0/24 16509 -185.127.30.0/24 30823 -185.127.32.0/22 16191 -185.127.36.0/22 8265 -185.127.40.0/22 2116 -185.127.44.0/22 204085 -185.127.48.0/22 3292 -185.127.52.0/22 206837 -185.127.56.0/22 25335 -185.127.60.0/22 198024 -185.127.64.0/22 47623 -185.127.68.0/22 203443 -185.127.72.0/22 198024 -185.127.76.0/22 203443 -185.127.80.0/22 203683 -185.127.84.0/22 198024 -185.127.88.0/22 199213 -185.127.92.0/22 204085 -185.127.96.0/24 42525 -185.127.100.0/23 15659 -185.127.104.0/22 203681 -185.127.108.0/22 203623 -185.127.112.0/22 197380 -185.127.116.0/22 200062 -185.127.120.0/22 198984 -185.127.124.0/22 62100 -185.127.128.0/22 13287 -185.127.132.0/22 198800 -185.127.136.0/24 203152 -185.127.140.0/22 206686 -185.127.144.0/22 43402 -185.127.152.0/22 203449 -185.127.156.0/22 204239 -185.127.160.0/22 203119 -185.127.164.0/22 203674 -185.127.168.0/22 203673 -185.127.172.0/22 42346 -185.127.176.0/22 61004 -185.127.180.0/23 203615 -185.127.183.0/24 203615 -185.127.184.0/24 57795 -185.127.185.0/24 41193 -185.127.186.0/23 41193 -185.127.188.0/22 203637 -185.127.196.0/22 203672 -185.127.200.0/22 209793 -185.127.204.0/24 203670 -185.127.205.0/24 60804 -185.127.206.0/24 60804 -185.127.207.0/24 203670 -185.127.208.0/22 12693 -185.127.212.0/22 44512 -185.127.216.0/22 197423 -185.127.220.0/22 199666 -185.127.224.0/22 201825 -185.127.228.0/22 51546 -185.127.236.0/22 203612 -185.127.240.0/22 208719 -185.127.244.0/22 29128 -185.127.252.0/22 203659 -185.128.0.0/22 35542 -185.128.9.0/24 203635 -185.128.11.0/24 203636 -185.128.12.0/22 2606 -185.128.20.0/22 198777 -185.128.24.0/22 9009 -185.128.28.0/24 203601 -185.128.30.0/24 203336 -185.128.32.0/22 29396 -185.128.36.0/22 203653 -185.128.40.0/22 39782 -185.128.48.0/22 52049 -185.128.52.0/22 201942 -185.128.56.0/22 203649 -185.128.60.0/22 203614 -185.128.64.0/22 198330 -185.128.68.0/22 8881 -185.128.72.0/22 203646 -185.128.76.0/22 42669 -185.128.80.0/24 207680 -185.128.81.0/24 24631 -185.128.82.0/23 207680 -185.128.84.0/24 60797 -185.128.86.0/24 60797 -185.128.88.0/22 61404 -185.128.92.0/22 25133 -185.128.96.0/22 60453 -185.128.100.0/22 203644 -185.128.104.0/24 203106 -185.128.105.0/24 43590 -185.128.106.0/23 50113 -185.128.108.0/22 62365 -185.128.112.0/22 43260 -185.128.116.0/22 203592 -185.128.120.0/22 51402 -185.128.124.0/24 61330 -185.128.125.0/24 35197 -185.128.126.0/24 35197 -185.128.127.0/24 61330 -185.128.128.0/22 6739 -185.128.132.0/22 204139 -185.128.136.0/22 44285 -185.128.140.0/22 60032 -185.128.148.0/22 199837 -185.128.152.0/23 31732 -185.128.154.0/23 58080 -185.128.156.0/22 41421 -185.128.160.0/22 60903 -185.128.168.0/22 6739 -185.128.172.0/22 15600 -185.128.176.0/22 204139 -185.128.180.0/22 29256 -185.128.184.0/24 14381 -185.128.186.0/24 14381 -185.128.188.0/22 203604 -185.128.192.0/22 29119 -185.128.200.0/22 57184 -185.128.204.0/24 51953 -185.128.205.0/24 2856 -185.128.208.0/23 35425 -185.128.210.0/24 20712 -185.128.212.0/22 45027 -185.128.216.0/22 12759 -185.128.220.0/24 209082 -185.128.222.0/24 31463 -185.128.223.0/24 209082 -185.128.224.0/22 59645 -185.128.232.0/22 44600 -185.128.236.0/22 35717 -185.128.240.0/22 49052 -185.128.244.0/22 51184 -185.128.248.0/22 50763 -185.129.0.0/22 203622 -185.129.4.0/22 57588 -185.129.8.0/22 25335 -185.129.12.0/22 203254 -185.129.16.0/22 43260 -185.129.20.0/22 204139 -185.129.24.0/22 203625 -185.129.28.0/22 203600 -185.129.32.0/22 203628 -185.129.36.0/22 41852 -185.129.40.0/23 206230 -185.129.43.0/24 206230 -185.129.44.0/22 35717 -185.129.48.0/24 262254 -185.129.49.0/24 200532 -185.129.50.0/23 200532 -185.129.52.0/22 15623 -185.129.56.0/22 44772 -185.129.60.0/22 57860 -185.129.64.0/22 203610 -185.129.68.0/22 205668 -185.129.72.0/22 8468 -185.129.76.0/22 43420 -185.129.80.0/22 203616 -185.129.88.0/22 44513 -185.129.92.0/22 57786 -185.129.96.0/22 201511 -185.129.100.0/22 57724 -185.129.104.0/22 201942 -185.129.108.0/23 34702 -185.129.110.0/23 58271 -185.129.112.0/22 198948 -185.129.116.0/22 34702 -185.129.120.0/24 203512 -185.129.121.0/24 60781 -185.129.122.0/24 59253 -185.129.123.0/24 203512 -185.129.124.0/22 201702 -185.129.128.0/22 197175 -185.129.132.0/22 57791 -185.129.136.0/22 24806 -185.129.144.0/22 47478 -185.129.148.0/24 15615 -185.129.151.0/24 3281 -185.129.152.0/22 203609 -185.129.156.0/22 57963 -185.129.164.0/22 35012 -185.129.168.0/22 57687 -185.129.176.0/22 29033 -185.129.180.0/22 25394 -185.129.184.0/22 50530 -185.129.188.0/23 50530 -185.129.190.0/23 49100 -185.129.192.0/22 29355 -185.129.196.0/22 49100 -185.129.200.0/22 49100 -185.129.212.0/22 49100 -185.129.216.0/22 49100 -185.129.228.0/22 49100 -185.129.232.0/21 44090 -185.129.240.0/22 204834 -185.129.244.0/22 205542 -185.129.248.0/23 39020 -185.129.250.0/24 201942 -185.129.251.0/24 203178 -185.129.252.0/22 203593 -185.130.0.0/24 206408 -185.130.5.0/24 204527 -185.130.6.0/24 204527 -185.130.16.0/22 48797 -185.130.20.0/22 205249 -185.130.24.0/22 43160 -185.130.28.0/22 203537 -185.130.32.0/22 203325 -185.130.36.0/22 25335 -185.130.40.0/22 25335 -185.130.44.0/24 210083 -185.130.48.0/23 57417 -185.130.52.0/22 41985 -185.130.56.0/22 43260 -185.130.60.0/22 207895 -185.130.64.0/22 57359 -185.130.68.0/22 203580 -185.130.72.0/23 203159 -185.130.76.0/22 57292 -185.130.92.0/22 203573 -185.130.100.0/22 203334 -185.130.104.0/22 14576 -185.130.116.0/22 25540 -185.130.120.0/22 200000 -185.130.124.0/22 203572 -185.130.132.0/22 203571 -185.130.140.0/22 60059 -185.130.144.0/22 202913 -185.130.148.0/22 203630 -185.130.152.0/22 56882 -185.130.156.0/22 203568 -185.130.160.0/23 201595 -185.130.162.0/24 201595 -185.130.164.0/22 57131 -185.130.174.0/23 33915 -185.130.176.0/23 57389 -185.130.178.0/24 57389 -185.130.179.0/24 203137 -185.130.180.0/22 203556 -185.130.184.0/23 9009 -185.130.186.0/24 9009 -185.130.188.0/24 16095 -185.130.189.0/24 16245 -185.130.196.0/22 24637 -185.130.200.0/24 174 -185.130.202.0/23 174 -185.130.204.0/22 61317 -185.130.208.0/22 207067 -185.130.212.0/22 49335 -185.130.216.0/22 56697 -185.130.220.0/22 16160 -185.130.224.0/22 57043 -185.130.228.0/24 203256 -185.130.232.0/22 48149 -185.130.236.0/23 56773 -185.130.244.0/22 203552 -185.130.248.0/22 56694 -185.130.252.0/22 39837 -185.131.0.0/22 197692 -185.131.8.0/22 203416 -185.131.12.0/22 203991 -185.131.16.0/24 201722 -185.131.17.0/24 203591 -185.131.18.0/23 201722 -185.131.20.0/22 49079 -185.131.24.0/22 60781 -185.131.28.0/22 49100 -185.131.32.0/22 30923 -185.131.36.0/22 42334 -185.131.40.0/23 39405 -185.131.42.0/24 39405 -185.131.43.0/24 202467 -185.131.44.0/22 203547 -185.131.48.0/22 56643 -185.131.52.0/22 132335 -185.131.56.0/22 197207 -185.131.60.0/22 44489 -185.131.64.0/22 56630 -185.131.68.0/22 43209 -185.131.72.0/22 3209 -185.131.80.0/22 203352 -185.131.84.0/22 58224 -185.131.92.0/22 58224 -185.131.96.0/23 47907 -185.131.98.0/24 49474 -185.131.100.0/22 58224 -185.131.104.0/22 203538 -185.131.108.0/22 58224 -185.131.112.0/21 58224 -185.131.120.0/22 49086 -185.131.124.0/22 58224 -185.131.128.0/22 58224 -185.131.132.0/22 29119 -185.131.136.0/21 58224 -185.131.144.0/22 12400 -185.131.148.0/22 58224 -185.131.152.0/21 58224 -185.131.160.0/22 43578 -185.131.164.0/22 58224 -185.131.168.0/22 58224 -185.131.172.0/23 15774 -185.131.176.0/22 36352 -185.131.180.0/22 60517 -185.131.184.0/22 203534 -185.131.188.0/22 29119 -185.131.192.0/22 57141 -185.131.196.0/24 205050 -185.131.197.0/24 29551 -185.131.200.0/22 51561 -185.131.204.0/22 56469 -185.131.208.0/22 43391 -185.131.212.0/22 200858 -185.131.216.0/22 198859 -185.131.220.0/24 47951 -185.131.221.0/24 48005 -185.131.222.0/24 5588 -185.131.223.0/24 47602 -185.131.224.0/22 58334 -185.131.228.0/22 203317 -185.131.232.0/22 25562 -185.131.239.0/24 3320 -185.131.240.0/23 203937 -185.131.242.0/24 203937 -185.131.243.0/24 204871 -185.131.244.0/22 48364 -185.131.248.0/22 203525 -185.131.252.0/22 56346 -185.132.0.0/22 203447 -185.132.4.0/22 55293 -185.132.8.0/22 204085 -185.132.12.0/22 203443 -185.132.16.0/22 21232 -185.132.20.0/24 12389 -185.132.21.0/24 12958 -185.132.22.0/23 12958 -185.132.24.0/22 198913 -185.132.28.0/22 48642 -185.132.32.0/22 15418 -185.132.36.0/22 8560 -185.132.40.0/22 8560 -185.132.44.0/23 51862 -185.132.46.0/24 6724 -185.132.47.0/24 51862 -185.132.48.0/22 55232 -185.132.52.0/24 31472 -185.132.53.0/24 24961 -185.132.54.0/23 134094 -185.132.56.0/22 44512 -185.132.60.0/22 203143 -185.132.64.0/22 57809 -185.132.68.0/22 203489 -185.132.72.0/22 198507 -185.132.76.0/23 203483 -185.132.78.0/24 2687 -185.132.79.0/24 26324 -185.132.80.0/23 43212 -185.132.82.0/24 43212 -185.132.84.0/23 56460 -185.132.87.0/24 3949 -185.132.88.0/22 203503 -185.132.92.0/22 35444 -185.132.96.0/22 12447 -185.132.100.0/22 202898 -185.132.104.0/22 39699 -185.132.112.0/22 57081 -185.132.116.0/22 56844 -185.132.120.0/22 51321 -185.132.124.0/24 60721 -185.132.125.0/24 42926 -185.132.126.0/24 61135 -185.132.127.0/24 42926 -185.132.128.0/22 51776 -185.132.132.0/22 49981 -185.132.136.0/22 203457 -185.132.140.0/22 60609 -185.132.144.0/22 203186 -185.132.148.0/24 57513 -185.132.152.0/22 203452 -185.132.156.0/24 203009 -185.132.160.0/23 203506 -185.132.164.0/22 29119 -185.132.168.0/22 39217 -185.132.172.0/22 39668 -185.132.176.0/22 49981 -185.132.180.0/22 52129 -185.132.184.0/23 203751 -185.132.186.0/23 203178 -185.132.188.0/22 203178 -185.132.192.0/22 12479 -185.132.196.0/23 51178 -185.132.198.0/23 25227 -185.132.200.0/22 6752 -185.132.204.0/22 199616 -185.132.212.0/22 51618 -185.132.220.0/22 13135 -185.132.224.0/22 203441 -185.132.228.0/22 210238 -185.132.233.0/24 204657 -185.132.234.0/23 204657 -185.132.236.0/22 208033 -185.132.240.0/22 43826 -185.132.244.0/22 203204 -185.132.248.0/22 199046 -185.132.252.0/22 198352 -185.133.0.0/23 204582 -185.133.2.0/24 204582 -185.133.4.0/22 207614 -185.133.8.0/22 199163 -185.133.12.0/22 3320 -185.133.16.0/23 37112 -185.133.18.0/24 37112 -185.133.20.0/22 55293 -185.133.24.0/24 202784 -185.133.25.0/24 202753 -185.133.26.0/23 202753 -185.133.28.0/22 12350 -185.133.32.0/22 25780 -185.133.36.0/22 51942 -185.133.40.0/22 57494 -185.133.44.0/22 559 -185.133.48.0/22 42366 -185.133.52.0/22 203495 -185.133.56.0/22 62159 -185.133.60.0/22 49117 -185.133.64.0/22 9050 -185.133.68.0/23 51452 -185.133.70.0/24 16509 -185.133.71.0/24 51452 -185.133.72.0/24 48115 -185.133.73.0/24 60945 -185.133.74.0/24 54600 -185.133.75.0/24 35913 -185.133.76.0/24 203491 -185.133.80.0/22 57809 -185.133.84.0/22 202105 -185.133.92.0/22 203485 -185.133.96.0/22 201843 -185.133.100.0/22 35046 -185.133.104.0/22 24978 -185.133.112.0/22 21032 -185.133.116.0/22 51257 -185.133.120.0/22 206124 -185.133.128.0/22 25540 -185.133.132.0/23 203455 -185.133.135.0/24 203455 -185.133.136.0/24 44055 -185.133.137.0/24 35757 -185.133.144.0/22 28972 -185.133.148.0/22 203482 -185.133.152.0/22 205838 -185.133.156.0/22 50826 -185.133.160.0/22 51148 -185.133.164.0/22 58224 -185.133.172.0/22 196714 -185.133.176.0/24 50930 -185.133.179.0/24 50930 -185.133.180.0/23 35819 -185.133.184.0/24 204771 -185.133.185.0/24 199971 -185.133.188.0/24 203645 -185.133.190.0/24 203645 -185.133.192.0/24 62240 -185.133.193.0/24 35913 -185.133.194.0/24 207459 -185.133.195.0/24 35913 -185.133.196.0/22 50980 -185.133.204.0/22 21195 -185.133.208.0/24 205591 -185.133.210.0/24 200753 -185.133.212.0/22 133524 -185.133.216.0/22 28716 -185.133.220.0/22 203251 -185.133.224.0/22 203459 -185.133.228.0/22 35629 -185.133.236.0/22 202252 -185.133.240.0/22 200474 -185.133.244.0/22 60315 -185.133.252.0/22 205609 -185.134.0.0/22 25512 -185.134.4.0/22 50469 -185.134.8.0/22 207029 -185.134.12.0/22 3301 -185.134.16.0/22 30821 -185.134.20.0/22 25369 -185.134.24.0/22 206458 -185.134.28.0/22 48854 -185.134.36.0/22 8416 -185.134.40.0/22 200845 -185.134.44.0/22 50642 -185.134.48.0/22 203443 -185.134.52.0/22 199039 -185.134.56.0/22 202796 -185.134.60.0/24 208950 -185.134.61.0/24 5610 -185.134.62.0/24 208950 -185.134.64.0/22 43777 -185.134.68.0/22 203462 -185.134.72.0/22 203458 -185.134.76.0/23 50754 -185.134.78.0/24 50754 -185.134.80.0/22 6830 -185.134.84.0/22 553 -185.134.88.0/22 24713 -185.134.92.0/22 57208 -185.134.96.0/22 50749 -185.134.100.0/22 12552 -185.134.104.0/22 205765 -185.134.108.0/22 205115 -185.134.112.0/22 50520 -185.134.116.0/22 203402 -185.134.120.0/24 12389 -185.134.121.0/24 48642 -185.134.122.0/23 48642 -185.134.124.0/23 49409 -185.134.127.0/24 50304 -185.134.128.0/22 41230 -185.134.132.0/22 29256 -185.134.136.0/22 41230 -185.134.140.0/24 15404 -185.134.144.0/22 41230 -185.134.148.0/22 30852 -185.134.156.0/22 57809 -185.134.160.0/22 203450 -185.134.164.0/22 203434 -185.134.168.0/22 204504 -185.134.172.0/22 203448 -185.134.176.0/22 50500 -185.134.180.0/24 27552 -185.134.181.0/24 25623 -185.134.182.0/24 27552 -185.134.183.0/24 62528 -185.134.184.0/24 34984 -185.134.185.0/24 205725 -185.134.186.0/24 205725 -185.134.188.0/22 203446 -185.134.192.0/22 42049 -185.134.196.0/22 41495 -185.134.200.0/22 203444 -185.134.204.0/23 20848 -185.134.208.0/22 56722 -185.134.212.0/22 43451 -185.134.216.0/22 202120 -185.134.220.0/22 50495 -185.134.224.0/22 49829 -185.134.228.0/22 43548 -185.134.232.0/22 197204 -185.134.236.0/22 57950 -185.134.240.0/24 47215 -185.134.242.0/24 57317 -185.134.244.0/22 12996 -185.134.248.0/22 203439 -185.134.252.0/22 21060 -185.135.2.0/24 203435 -185.135.4.0/22 202895 -185.135.8.0/22 61317 -185.135.12.0/24 34762 -185.135.16.0/23 43848 -185.135.18.0/23 208350 -185.135.20.0/24 203299 -185.135.24.0/22 12531 -185.135.28.0/22 39571 -185.135.32.0/22 42034 -185.135.36.0/22 196881 -185.135.41.0/24 34984 -185.135.44.0/24 50385 -185.135.48.0/22 29256 -185.135.52.0/23 203427 -185.135.55.0/24 31400 -185.135.56.0/24 47474 -185.135.59.0/24 47474 -185.135.60.0/22 43337 -185.135.64.0/22 50369 -185.135.68.0/22 205889 -185.135.80.0/22 57494 -185.135.84.0/22 201702 -185.135.88.0/22 203417 -185.135.92.0/22 60451 -185.135.96.0/22 44558 -185.135.100.0/23 202975 -185.135.102.0/24 31034 -185.135.103.0/24 30848 -185.135.104.0/22 203421 -185.135.108.0/22 203399 -185.135.112.0/22 12874 -185.135.116.0/22 29119 -185.135.120.0/22 60534 -185.135.124.0/22 42845 -185.135.128.0/22 44706 -185.135.134.0/23 2116 -185.135.136.0/23 35913 -185.135.138.0/23 40676 -185.135.144.0/22 203411 -185.135.148.0/22 8636 -185.135.152.0/22 7786 -185.135.156.0/22 61317 -185.135.160.0/22 203413 -185.135.164.0/22 50056 -185.135.168.0/22 42010 -185.135.172.0/22 203410 -185.135.176.0/22 57809 -185.135.180.0/22 48330 -185.135.184.0/22 34549 -185.135.192.0/22 59460 -185.135.196.0/24 200697 -185.135.197.0/24 209438 -185.135.198.0/24 203735 -185.135.199.0/24 200697 -185.135.200.0/23 203357 -185.135.204.0/22 203404 -185.135.208.0/22 203177 -185.135.212.0/22 43350 -185.135.216.0/22 203386 -185.135.220.0/22 42926 -185.135.224.0/22 202942 -185.135.228.0/22 50810 -185.135.232.0/22 203387 -185.135.236.0/22 203349 -185.135.240.0/23 34233 -185.135.242.0/23 208332 -185.135.244.0/24 196933 -185.135.248.0/22 203398 -185.135.252.0/22 200719 -185.136.0.0/24 2686 -185.136.3.0/24 2686 -185.136.4.0/22 202932 -185.136.12.0/24 51363 -185.136.15.0/24 49393 -185.136.16.0/22 43831 -185.136.20.0/23 56334 -185.136.22.0/24 56334 -185.136.28.0/22 199976 -185.136.32.0/22 34784 -185.136.36.0/22 49826 -185.136.40.0/22 197883 -185.136.44.0/22 7155 -185.136.48.0/22 8542 -185.136.52.0/22 47202 -185.136.56.0/22 50055 -185.136.64.0/22 50018 -185.136.68.0/24 60977 -185.136.69.0/24 50889 -185.136.70.0/24 11414 -185.136.71.0/24 50889 -185.136.72.0/22 42010 -185.136.76.0/22 203394 -185.136.80.0/22 21013 -185.136.84.0/22 203393 -185.136.88.0/22 12338 -185.136.92.0/22 202839 -185.136.96.0/22 203391 -185.136.100.0/22 50810 -185.136.108.0/22 203385 -185.136.112.0/23 48918 -185.136.114.0/24 48918 -185.136.115.0/24 3320 -185.136.116.0/22 204793 -185.136.120.0/22 204631 -185.136.124.0/22 203089 -185.136.128.0/22 50304 -185.136.132.0/22 201504 -185.136.136.0/22 59919 -185.136.140.0/23 24940 -185.136.144.0/22 29256 -185.136.148.0/22 206206 -185.136.152.0/23 204836 -185.136.156.0/22 29066 -185.136.160.0/21 29066 -185.136.168.0/22 29066 -185.136.172.0/22 58224 -185.136.176.0/23 34971 -185.136.180.0/22 203363 -185.136.184.0/22 205495 -185.136.188.0/23 203366 -185.136.190.0/24 203366 -185.136.192.0/22 58080 -185.136.196.0/22 203365 -185.136.200.0/22 203376 -185.136.204.0/23 203377 -185.136.206.0/24 207508 -185.136.207.0/24 203377 -185.136.208.0/23 8201 -185.136.210.0/23 205476 -185.136.212.0/22 20751 -185.136.216.0/22 205081 -185.136.224.0/23 203375 -185.136.226.0/24 209276 -185.136.227.0/24 199319 -185.136.232.0/22 50056 -185.136.236.0/22 43350 -185.136.240.0/22 203374 -185.136.244.0/22 51048 -185.136.248.0/22 60610 -185.136.252.0/22 48970 -185.137.0.0/22 203372 -185.137.4.0/22 2116 -185.137.8.0/23 202787 -185.137.12.0/22 61317 -185.137.16.0/22 43439 -185.137.20.0/22 47720 -185.137.26.0/24 44285 -185.137.28.0/22 203175 -185.137.32.0/22 203368 -185.137.36.0/22 203872 -185.137.40.0/22 33864 -185.137.48.0/22 203255 -185.137.52.0/22 204369 -185.137.56.0/22 29119 -185.137.60.0/22 48359 -185.137.64.0/22 50023 -185.137.68.0/22 204303 -185.137.72.0/22 25540 -185.137.76.0/22 49729 -185.137.84.0/22 203367 -185.137.88.0/22 203216 -185.137.92.0/22 61317 -185.137.96.0/22 205705 -185.137.100.0/22 29119 -185.137.104.0/22 205575 -185.137.108.0/22 49596 -185.137.112.0/22 198944 -185.137.116.0/24 38980 -185.137.120.0/22 56876 -185.137.124.0/22 34049 -185.137.128.0/22 210198 -185.137.132.0/22 62302 -185.137.136.0/22 49532 -185.137.140.0/22 197077 -185.137.144.0/22 28972 -185.137.152.0/22 48146 -185.137.160.0/22 31359 -185.137.168.0/22 45012 -185.137.172.0/22 13030 -185.137.176.0/22 43874 -185.137.180.0/24 42216 -185.137.181.0/24 50841 -185.137.182.0/24 134176 -185.137.183.0/24 54600 -185.137.184.0/22 49473 -185.137.188.0/22 62116 -185.137.192.0/21 51551 -185.137.204.0/22 203294 -185.137.208.0/24 203351 -185.137.212.0/22 208002 -185.137.216.0/22 203980 -185.137.220.0/22 50056 -185.137.224.0/24 30848 -185.137.225.0/24 206476 -185.137.226.0/24 198800 -185.137.227.0/24 206476 -185.137.228.0/22 199125 -185.137.232.0/24 50340 -185.137.233.0/24 49505 -185.137.234.0/23 49505 -185.137.236.0/22 39544 -185.137.240.0/22 48325 -185.137.244.0/22 203268 -185.137.248.0/22 203356 -185.138.4.0/22 25279 -185.138.8.0/22 49253 -185.138.12.0/22 196925 -185.138.16.0/22 201109 -185.138.28.0/22 2635 -185.138.32.0/22 41164 -185.138.36.0/22 13097 -185.138.40.0/22 199246 -185.138.44.0/22 203328 -185.138.48.0/22 42621 -185.138.52.0/23 48821 -185.138.54.0/24 205112 -185.138.55.0/24 48821 -185.138.56.0/22 34766 -185.138.64.0/24 44813 -185.138.68.0/22 197393 -185.138.72.0/22 2119 -185.138.76.0/22 62169 -185.138.80.0/22 203318 -185.138.84.0/24 49175 -185.138.88.0/22 42478 -185.138.92.0/22 29119 -185.138.96.0/22 203338 -185.138.100.0/22 41750 -185.138.104.0/22 39405 -185.138.108.0/23 199803 -185.138.112.0/24 207044 -185.138.113.0/24 5466 -185.138.114.0/24 5466 -185.138.115.0/24 207044 -185.138.116.0/22 57809 -185.138.120.0/22 203217 -185.138.128.0/24 50451 -185.138.129.0/24 25231 -185.138.130.0/23 25231 -185.138.132.0/22 15975 -185.138.136.0/22 12878 -185.138.140.0/22 203329 -185.138.144.0/22 203327 -185.138.148.0/22 204140 -185.138.152.0/22 31672 -185.138.156.0/23 6908 -185.138.158.0/23 204598 -185.138.168.0/24 203110 -185.138.169.0/24 203077 -185.138.170.0/24 203077 -185.138.171.0/24 36239 -185.138.172.0/22 203322 -185.138.180.0/22 202629 -185.138.184.0/22 57096 -185.138.188.0/22 49013 -185.138.192.0/22 49138 -185.138.196.0/22 45033 -185.138.200.0/22 48330 -185.138.204.0/22 42819 -185.138.208.0/22 42755 -185.138.212.0/22 203316 -185.138.216.0/22 8265 -185.138.220.0/22 198167 -185.138.228.0/24 203303 -185.138.229.0/24 52179 -185.138.230.0/23 48557 -185.138.236.0/22 202126 -185.138.240.0/23 203234 -185.138.244.0/22 201730 -185.138.248.0/22 15879 -185.138.255.0/24 200350 -185.139.0.0/22 61317 -185.139.4.0/22 42735 -185.139.8.0/22 25019 -185.139.12.0/22 49020 -185.139.16.0/22 47223 -185.139.20.0/22 202628 -185.139.24.0/24 21321 -185.139.27.0/24 21321 -185.139.28.0/22 51580 -185.139.32.0/22 25795 -185.139.36.0/22 199283 -185.139.40.0/22 197667 -185.139.44.0/23 5488 -185.139.46.0/23 35660 -185.139.48.0/23 12874 -185.139.50.0/24 12874 -185.139.51.0/24 208000 -185.139.52.0/22 41985 -185.139.56.0/22 203301 -185.139.60.0/22 51223 -185.139.64.0/22 48898 -185.139.68.0/22 50113 -185.139.76.0/22 8881 -185.139.88.0/24 2119 -185.139.92.0/22 203293 -185.139.96.0/22 60235 -185.139.100.0/22 59626 -185.139.104.0/22 3269 -185.139.108.0/22 34485 -185.139.112.0/22 30742 -185.139.124.0/22 203302 -185.139.128.0/22 200719 -185.139.132.0/22 205761 -185.139.136.0/22 201767 -185.139.140.0/23 50948 -185.139.148.0/22 25542 -185.139.152.0/22 203300 -185.139.156.0/22 205766 -185.139.160.0/22 203298 -185.139.164.0/22 203297 -185.139.168.0/22 203296 -185.139.172.0/22 203295 -185.139.176.0/22 29119 -185.139.180.0/22 56911 -185.139.188.0/22 206557 -185.139.192.0/22 202814 -185.139.196.0/22 203289 -185.139.200.0/22 42600 -185.139.204.0/24 203278 -185.139.208.0/22 51560 -185.139.212.0/22 48430 -185.139.216.0/22 49142 -185.139.220.0/22 44702 -185.139.229.0/24 203276 -185.139.232.0/23 203288 -185.139.234.0/24 203288 -185.139.235.0/24 50304 -185.139.236.0/22 61317 -185.139.240.0/22 48851 -185.139.244.0/22 47957 -185.139.248.0/22 64405 -185.139.252.0/22 203311 -185.140.0.0/22 204141 -185.140.4.0/22 48903 -185.140.8.0/22 30740 -185.140.12.0/22 57497 -185.140.16.0/23 51561 -185.140.18.0/24 29611 -185.140.20.0/22 42093 -185.140.24.0/22 203266 -185.140.28.0/22 49798 -185.140.32.0/22 203280 -185.140.36.0/22 198347 -185.140.40.0/22 34820 -185.140.44.0/22 51269 -185.140.48.0/22 26167 -185.140.52.0/24 48767 -185.140.53.0/24 209623 -185.140.54.0/24 200514 -185.140.55.0/24 49981 -185.140.56.0/22 60627 -185.140.60.0/22 6739 -185.140.64.0/22 15704 -185.140.68.0/23 207051 -185.140.70.0/24 25540 -185.140.71.0/24 207051 -185.140.72.0/23 57795 -185.140.76.0/22 201787 -185.140.80.0/23 48804 -185.140.82.0/24 48804 -185.140.84.0/22 31382 -185.140.92.0/22 47942 -185.140.96.0/22 203267 -185.140.100.0/22 203272 -185.140.104.0/22 15404 -185.140.108.0/22 62292 -185.140.116.0/22 43065 -185.140.120.0/22 29522 -185.140.124.0/24 57152 -185.140.127.0/24 57152 -185.140.128.0/22 9036 -185.140.132.0/22 48722 -185.140.136.0/22 198682 -185.140.140.0/22 42473 -185.140.144.0/22 31708 -185.140.148.0/22 205825 -185.140.152.0/24 15830 -185.140.156.0/22 57795 -185.140.160.0/22 41268 -185.140.164.0/22 60781 -185.140.168.0/22 41364 -185.140.175.0/24 203282 -185.140.176.0/23 26167 -185.140.180.0/22 48270 -185.140.184.0/22 58291 -185.140.188.0/22 29337 -185.140.192.0/22 203257 -185.140.196.0/22 42970 -185.140.200.0/22 56737 -185.140.204.0/24 12676 -185.140.205.0/24 24679 -185.140.206.0/24 25394 -185.140.208.0/22 44901 -185.140.212.0/24 60807 -185.140.213.0/24 60711 -185.140.214.0/24 44278 -185.140.215.0/24 60807 -185.140.216.0/22 203244 -185.140.224.0/22 207179 -185.140.228.0/23 15440 -185.140.230.0/23 62282 -185.140.232.0/24 43395 -185.140.233.0/24 62284 -185.140.234.0/23 43395 -185.140.236.0/22 48091 -185.140.240.0/22 56815 -185.140.244.0/22 48602 -185.140.248.0/22 60140 -185.140.252.0/23 200735 -185.140.255.0/24 200735 -185.141.4.0/22 208678 -185.141.8.0/22 203214 -185.141.12.0/22 202024 -185.141.20.0/22 200979 -185.141.24.0/22 60117 -185.141.30.0/23 48579 -185.141.32.0/22 43260 -185.141.36.0/22 202391 -185.141.40.0/22 48330 -185.141.48.0/22 203247 -185.141.52.0/22 24651 -185.141.56.0/22 62240 -185.141.60.0/22 44901 -185.141.64.0/22 203224 -185.141.68.0/22 203243 -185.141.72.0/22 203241 -185.141.76.0/22 48909 -185.141.80.0/22 203195 -185.141.84.0/22 20811 -185.141.88.0/22 203240 -185.141.92.0/22 12836 -185.141.96.0/22 42343 -185.141.100.0/22 60380 -185.141.104.0/24 58331 -185.141.105.0/24 56466 -185.141.106.0/23 58331 -185.141.109.0/24 49879 -185.141.110.0/24 42910 -185.141.111.0/24 47123 -185.141.112.0/22 57773 -185.141.116.0/24 13213 -185.141.117.0/24 64200 -185.141.118.0/24 64200 -185.141.119.0/24 9009 -185.141.120.0/22 204877 -185.141.124.0/22 3267 -185.141.128.0/22 48402 -185.141.132.0/22 44285 -185.141.140.0/22 203235 -185.141.144.0/22 48374 -185.141.148.0/22 39291 -185.141.152.0/22 42695 -185.141.156.0/22 35132 -185.141.164.0/22 61317 -185.141.168.0/22 43754 -185.141.172.0/22 210144 -185.141.176.0/22 204239 -185.141.180.0/22 35571 -185.141.184.0/22 203223 -185.141.188.0/22 55293 -185.141.192.0/24 20860 -185.141.194.0/24 16229 -185.141.195.0/24 20860 -185.141.196.0/22 41897 -185.141.201.0/24 13237 -185.141.202.0/24 24940 -185.141.203.0/24 13237 -185.141.204.0/24 49981 -185.141.205.0/24 35913 -185.141.206.0/23 25369 -185.141.208.0/22 203225 -185.141.212.0/22 43754 -185.141.216.0/22 204056 -185.141.220.0/22 204396 -185.141.224.0/22 204720 -185.141.230.0/23 12779 -185.141.232.0/23 60139 -185.141.236.0/23 12389 -185.141.238.0/23 42136 -185.141.240.0/22 49173 -185.141.244.0/22 203100 -185.141.248.0/23 203221 -185.141.252.0/24 15490 -185.141.253.0/24 206160 -185.141.254.0/23 15490 -185.142.0.0/22 203126 -185.142.8.0/22 15945 -185.142.12.0/22 201748 -185.142.16.0/24 204204 -185.142.20.0/22 208851 -185.142.24.0/22 61317 -185.142.28.0/22 29644 -185.142.32.0/24 52000 -185.142.34.0/23 52000 -185.142.36.0/22 48253 -185.142.41.0/24 48206 -185.142.42.0/23 48206 -185.142.44.0/22 203212 -185.142.48.0/22 202819 -185.142.52.0/24 49434 -185.142.56.0/22 47546 -185.142.60.0/22 203099 -185.142.64.0/22 50289 -185.142.68.0/22 199181 -185.142.72.0/22 42695 -185.142.76.0/22 198203 -185.142.80.0/22 203213 -185.142.84.0/24 8468 -185.142.88.0/22 5396 -185.142.92.0/22 48359 -185.142.96.0/23 202423 -185.142.98.0/24 35415 -185.142.99.0/24 40824 -185.142.100.0/22 201153 -185.142.104.0/22 41890 -185.142.112.0/24 202730 -185.142.116.0/23 203035 -185.142.118.0/24 203035 -185.142.120.0/23 9026 -185.142.122.0/23 50316 -185.142.124.0/22 48359 -185.142.128.0/23 203094 -185.142.132.0/22 202826 -185.142.136.0/22 42929 -185.142.140.0/24 35913 -185.142.141.0/24 57758 -185.142.142.0/23 35913 -185.142.148.0/23 203184 -185.142.152.0/22 203201 -185.142.156.0/22 48147 -185.142.160.0/23 202006 -185.142.162.0/24 51484 -185.142.163.0/24 201342 -185.142.164.0/22 203872 -185.142.168.0/22 196865 -185.142.172.0/22 203180 -185.142.176.0/22 48545 -185.142.180.0/23 48111 -185.142.184.0/23 12502 -185.142.188.0/22 25540 -185.142.192.0/22 60675 -185.142.196.0/22 2119 -185.142.200.0/22 201942 -185.142.208.0/22 34911 -185.142.212.0/22 207143 -185.142.216.0/24 48427 -185.142.217.0/24 204157 -185.142.218.0/24 41954 -185.142.219.0/24 48427 -185.142.220.0/22 203161 -185.142.224.0/22 48408 -185.142.228.0/22 203194 -185.142.232.0/22 24631 -185.142.236.0/24 174 -185.142.237.0/24 42237 -185.142.238.0/23 174 -185.142.240.0/22 15932 -185.142.248.0/22 30925 -185.142.252.0/22 201873 -185.143.0.0/22 43160 -185.143.4.0/22 203193 -185.143.8.0/22 203192 -185.143.12.0/22 203191 -185.143.16.0/24 16509 -185.143.20.0/22 207446 -185.143.24.0/22 203116 -185.143.28.0/22 57090 -185.143.32.0/22 47348 -185.143.36.0/22 5089 -185.143.40.0/23 202699 -185.143.42.0/24 49110 -185.143.43.0/24 202699 -185.143.44.0/22 55293 -185.143.48.0/23 20742 -185.143.52.0/22 47973 -185.143.56.0/22 43260 -185.143.60.0/22 39194 -185.143.64.0/22 56430 -185.143.68.0/23 5539 -185.143.76.0/24 12703 -185.143.78.0/24 34224 -185.143.80.0/24 197997 -185.143.81.0/24 3245 -185.143.82.0/23 3245 -185.143.88.0/22 200278 -185.143.92.0/22 203183 -185.143.96.0/22 35394 -185.143.100.0/22 203872 -185.143.104.0/22 201873 -185.143.108.0/22 60162 -185.143.112.0/22 5610 -185.143.116.0/22 47896 -185.143.120.0/23 204618 -185.143.124.0/22 51375 -185.143.128.0/23 204706 -185.143.130.0/24 204706 -185.143.136.0/22 50564 -185.143.140.0/22 29119 -185.143.144.0/24 204619 -185.143.145.0/24 202302 -185.143.146.0/23 56835 -185.143.148.0/22 204896 -185.143.152.0/22 51580 -185.143.156.0/22 203179 -185.143.160.0/22 44086 -185.143.164.0/22 47215 -185.143.168.0/22 42184 -185.143.172.0/23 50340 -185.143.174.0/24 50340 -185.143.175.0/24 49505 -185.143.176.0/22 203136 -185.143.180.0/22 1764 -185.143.187.0/24 20577 -185.143.192.0/22 61094 -185.143.196.0/22 196821 -185.143.200.0/22 44789 -185.143.204.0/22 60627 -185.143.208.0/22 49523 -185.143.212.0/23 47318 -185.143.215.0/24 47318 -185.143.216.0/22 206557 -185.143.221.0/24 49505 -185.143.223.0/24 204718 -185.143.224.0/22 203171 -185.143.228.0/22 61317 -185.143.232.0/22 202468 -185.143.236.0/24 197036 -185.143.238.0/24 16509 -185.143.240.0/24 53340 -185.143.241.0/24 20473 -185.143.242.0/24 19437 -185.143.243.0/24 40676 -185.143.252.0/22 60111 -185.144.0.0/24 47754 -185.144.4.0/22 61060 -185.144.8.0/22 203123 -185.144.20.0/22 57795 -185.144.24.0/22 203872 -185.144.28.0/22 44493 -185.144.32.0/22 57468 -185.144.36.0/22 559 -185.144.40.0/22 47701 -185.144.44.0/22 24904 -185.144.48.0/22 58243 -185.144.53.0/24 60458 -185.144.54.0/23 60458 -185.144.56.0/22 39521 -185.144.60.0/22 43991 -185.144.64.0/22 203102 -185.144.72.0/22 49088 -185.144.76.0/22 61345 -185.144.80.0/22 9009 -185.144.84.0/24 8757 -185.144.87.0/24 8757 -185.144.88.0/23 198949 -185.144.90.0/24 198949 -185.144.96.0/24 203122 -185.144.97.0/24 56634 -185.144.98.0/24 200918 -185.144.99.0/24 56634 -185.144.100.0/24 25369 -185.144.101.0/24 35913 -185.144.102.0/23 35913 -185.144.108.0/24 47264 -185.144.109.0/24 30740 -185.144.110.0/24 31727 -185.144.111.0/24 1221 -185.144.112.0/22 202525 -185.144.116.0/22 34857 -185.144.120.0/22 199362 -185.144.124.0/23 203109 -185.144.128.0/22 205639 -185.144.132.0/23 203121 -185.144.136.0/22 197140 -185.144.144.0/22 1257 -185.144.148.0/22 2856 -185.144.152.0/22 58308 -185.144.156.0/22 47869 -185.144.160.0/22 1764 -185.144.164.0/22 203103 -185.144.168.0/22 203124 -185.144.172.0/23 204263 -185.144.174.0/23 202626 -185.144.184.0/22 39365 -185.144.188.0/22 20676 -185.144.196.0/22 39686 -185.144.200.0/22 203117 -185.144.204.0/22 44180 -185.144.208.0/22 203115 -185.144.212.0/22 41644 -185.144.216.0/23 26167 -185.144.220.0/22 41847 -185.144.224.0/23 20847 -185.144.228.0/22 15395 -185.144.232.0/22 12334 -185.144.236.0/22 24961 -185.144.240.0/22 203057 -185.144.244.0/22 199980 -185.144.248.0/22 61345 -185.144.252.0/22 47455 -185.145.0.0/22 203063 -185.145.4.0/22 203081 -185.145.8.0/22 60627 -185.145.12.0/22 202521 -185.145.16.0/22 200970 -185.145.20.0/22 51890 -185.145.24.0/22 50673 -185.145.28.0/22 205870 -185.145.32.0/22 39072 -185.145.36.0/22 61317 -185.145.40.0/22 57140 -185.145.44.0/22 46261 -185.145.48.0/22 203067 -185.145.52.0/22 39596 -185.145.56.0/22 34703 -185.145.60.0/22 203065 -185.145.68.0/22 29119 -185.145.72.0/22 203872 -185.145.76.0/24 203984 -185.145.77.0/24 205939 -185.145.78.0/24 3215 -185.145.80.0/22 204868 -185.145.84.0/22 13113 -185.145.88.0/22 62262 -185.145.92.0/22 28847 -185.145.96.0/22 54290 -185.145.100.0/24 8968 -185.145.104.0/22 6876 -185.145.108.0/22 20634 -185.145.112.0/24 48427 -185.145.113.0/24 61204 -185.145.114.0/24 51949 -185.145.115.0/24 48427 -185.145.120.0/22 206534 -185.145.124.0/22 50254 -185.145.128.0/22 204196 -185.145.132.0/22 202809 -185.145.136.0/22 9009 -185.145.140.0/22 59494 -185.145.144.0/22 203084 -185.145.148.0/22 15623 -185.145.156.0/23 64245 -185.145.159.0/24 60610 -185.145.160.0/22 24971 -185.145.164.0/22 3329 -185.145.168.0/22 197540 -185.145.172.0/22 41369 -185.145.176.0/22 203068 -185.145.180.0/22 31556 -185.145.184.0/22 43395 -185.145.188.0/23 8896 -185.145.190.0/24 8896 -185.145.192.0/22 203201 -185.145.196.0/22 42263 -185.145.200.0/22 62240 -185.145.204.0/22 35311 -185.145.208.0/22 57795 -185.145.216.0/22 203061 -185.145.220.0/22 20677 -185.145.228.0/23 62043 -185.145.230.0/24 62043 -185.145.232.0/22 60781 -185.145.236.0/22 29256 -185.145.240.0/22 44335 -185.145.248.0/22 48813 -185.145.252.0/24 12400 -185.145.253.0/24 57866 -185.145.254.0/23 12400 -185.146.0.0/22 48716 -185.146.4.0/22 24641 -185.146.8.0/23 203064 -185.146.12.0/22 34263 -185.146.16.0/22 25534 -185.146.20.0/22 55293 -185.146.28.0/22 55293 -185.146.32.0/22 1403 -185.146.36.0/22 203924 -185.146.40.0/22 57468 -185.146.44.0/23 8468 -185.146.46.0/23 206332 -185.146.48.0/22 204073 -185.146.52.0/22 198537 -185.146.56.0/22 204821 -185.146.60.0/22 12676 -185.146.71.0/24 54058 -185.146.72.0/22 41639 -185.146.76.0/22 203058 -185.146.80.0/22 41386 -185.146.84.0/22 5588 -185.146.88.0/22 201978 -185.146.92.0/22 8426 -185.146.96.0/22 197645 -185.146.100.0/22 61006 -185.146.104.0/22 201290 -185.146.112.0/22 57293 -185.146.116.0/22 203054 -185.146.120.0/22 49223 -185.146.127.0/24 8757 -185.146.128.0/22 12637 -185.146.132.0/23 207545 -185.146.134.0/24 207545 -185.146.135.0/24 48815 -185.146.136.0/22 29256 -185.146.140.0/22 203052 -185.146.144.0/22 44525 -185.146.148.0/22 201730 -185.146.152.0/22 14870 -185.146.156.0/22 29182 -185.146.160.0/22 200760 -185.146.164.0/22 197328 -185.146.176.0/22 42082 -185.146.180.0/22 2110 -185.146.184.0/22 56767 -185.146.188.0/22 208622 -185.146.192.0/23 35913 -185.146.194.0/24 21859 -185.146.195.0/24 54600 -185.146.204.0/22 1299 -185.146.208.0/22 134431 -185.146.212.0/22 197159 -185.146.216.0/22 50673 -185.146.220.0/22 199792 -185.146.228.0/22 50629 -185.146.236.0/22 38927 -185.146.240.0/22 29357 -185.146.244.0/22 198401 -185.146.248.0/23 203043 -185.146.250.0/24 203043 -185.146.252.0/22 12637 -185.147.0.0/24 25426 -185.147.1.0/24 203041 -185.147.2.0/23 203041 -185.147.8.0/22 51262 -185.147.12.0/22 24875 -185.147.16.0/22 203012 -185.147.20.0/22 203034 -185.147.24.0/24 202993 -185.147.25.0/24 202654 -185.147.26.0/23 52125 -185.147.32.0/23 203061 -185.147.34.0/24 207083 -185.147.35.0/24 13830 -185.147.36.0/24 57186 -185.147.37.0/24 41619 -185.147.38.0/24 21030 -185.147.39.0/24 49505 -185.147.40.0/22 58224 -185.147.44.0/22 59959 -185.147.48.0/24 203019 -185.147.49.0/24 202966 -185.147.50.0/24 202822 -185.147.51.0/24 60127 -185.147.58.0/23 36351 -185.147.60.0/22 31272 -185.147.64.0/23 205933 -185.147.68.0/22 203028 -185.147.72.0/22 59701 -185.147.76.0/22 42596 -185.147.80.0/22 41722 -185.147.84.0/22 203026 -185.147.88.0/22 56329 -185.147.92.0/22 24654 -185.147.96.0/22 34700 -185.147.100.0/22 7018 -185.147.108.0/22 39875 -185.147.112.0/23 1136 -185.147.116.0/22 206992 -185.147.120.0/22 203021 -185.147.124.0/22 20655 -185.147.128.0/22 45027 -185.147.132.0/22 199542 -185.147.140.0/22 42994 -185.147.144.0/22 49010 -185.147.148.0/22 49083 -185.147.156.0/22 46261 -185.147.160.0/23 43754 -185.147.162.0/24 43754 -185.147.164.0/22 44652 -185.147.168.0/24 42473 -185.147.172.0/22 14297 -185.147.176.0/22 44932 -185.147.180.0/22 203014 -185.147.184.0/22 43915 -185.147.188.0/22 25394 -185.147.192.0/22 62915 -185.147.196.0/22 31272 -185.147.200.0/22 202644 -185.147.204.0/22 15557 -185.147.208.0/22 35071 -185.147.212.0/22 12989 -185.147.216.0/22 30962 -185.147.220.0/22 42811 -185.147.224.0/22 49902 -185.147.228.0/22 49540 -185.147.232.0/22 49112 -185.147.236.0/22 197595 -185.147.240.0/22 203007 -185.147.248.0/22 203018 -185.148.0.0/22 203003 -185.148.8.0/22 62398 -185.148.22.0/23 13237 -185.148.24.0/22 45027 -185.148.28.0/22 42707 -185.148.32.0/23 197328 -185.148.34.0/23 174 -185.148.36.0/22 48347 -185.148.40.0/22 202947 -185.148.44.0/22 55293 -185.148.48.0/24 23539 -185.148.52.0/22 48146 -185.148.56.0/22 31272 -185.148.60.0/22 42459 -185.148.64.0/22 202936 -185.148.68.0/22 30962 -185.148.72.0/22 44632 -185.148.76.0/23 207758 -185.148.78.0/23 204818 -185.148.80.0/22 49063 -185.148.84.0/22 202991 -185.148.88.0/22 2856 -185.148.92.0/22 12577 -185.148.96.0/22 203329 -185.148.100.0/22 199536 -185.148.104.0/22 201341 -185.148.108.0/22 5602 -185.148.112.0/22 37468 -185.148.116.0/22 15830 -185.148.120.0/22 39899 -185.148.124.0/22 15600 -185.148.128.0/22 55293 -185.148.132.0/22 15961 -185.148.136.0/22 198738 -185.148.140.0/22 59586 -185.148.144.0/22 44901 -185.148.148.0/24 202982 -185.148.150.0/23 202982 -185.148.152.0/22 202889 -185.148.156.0/22 39372 -185.148.160.0/22 57344 -185.148.164.0/22 206914 -185.148.168.0/22 44780 -185.148.172.0/22 202979 -185.148.176.0/22 3292 -185.148.180.0/23 27647 -185.148.184.0/22 198225 -185.148.192.0/22 29256 -185.148.196.0/22 202978 -185.148.200.0/22 202977 -185.148.208.0/22 5495 -185.148.212.0/22 202921 -185.148.216.0/21 203972 -185.148.224.0/22 47820 -185.148.228.0/22 34290 -185.148.232.0/22 202970 -185.148.236.0/22 49808 -185.148.240.0/24 61135 -185.148.241.0/24 208485 -185.148.242.0/23 208485 -185.148.244.0/22 50547 -185.148.248.0/22 39138 -185.148.252.0/22 44821 -185.149.0.0/22 44784 -185.149.4.0/24 202953 -185.149.6.0/24 202953 -185.149.12.0/22 41972 -185.149.16.0/22 31726 -185.149.20.0/22 35913 -185.149.28.0/22 12329 -185.149.32.0/22 51616 -185.149.36.0/22 209549 -185.149.40.0/22 200000 -185.149.44.0/22 202812 -185.149.48.0/22 202961 -185.149.52.0/24 3320 -185.149.56.0/22 47869 -185.149.60.0/22 49920 -185.149.64.0/22 203972 -185.149.68.0/24 51269 -185.149.69.0/24 6939 -185.149.76.0/22 202956 -185.149.80.0/22 29119 -185.149.84.0/22 202955 -185.149.88.0/22 202954 -185.149.92.0/22 206616 -185.149.96.0/23 204507 -185.149.98.0/24 204507 -185.149.100.0/22 51559 -185.149.104.0/22 60656 -185.149.108.0/22 205072 -185.149.112.0/22 55293 -185.149.120.0/22 205065 -185.149.127.0/24 202835 -185.149.128.0/22 202872 -185.149.132.0/22 32338 -185.149.136.0/22 2602 -185.149.140.0/23 44778 -185.149.142.0/24 44778 -185.149.144.0/23 42861 -185.149.146.0/24 5577 -185.149.147.0/24 42861 -185.149.152.0/24 15419 -185.149.153.0/24 44771 -185.149.154.0/24 15419 -185.149.155.0/24 44771 -185.149.156.0/22 12480 -185.149.161.0/24 61131 -185.149.163.0/24 61131 -185.149.164.0/22 20570 -185.149.176.0/22 48460 -185.149.188.0/23 3242 -185.149.190.0/24 3242 -185.149.192.0/24 31952 -185.149.196.0/22 39728 -185.149.200.0/22 62201 -185.149.204.0/22 197451 -185.149.208.0/22 198426 -185.149.212.0/22 680 -185.149.216.0/22 197033 -185.149.220.0/24 29646 -185.149.222.0/23 29646 -185.149.228.0/24 48854 -185.149.230.0/24 198473 -185.149.231.0/24 3292 -185.149.232.0/22 64236 -185.149.236.0/22 62408 -185.149.240.0/23 49505 -185.149.242.0/24 49505 -185.149.243.0/24 50340 -185.149.244.0/22 43273 -185.149.248.0/22 202894 -185.149.252.0/22 202940 -185.150.0.0/23 197328 -185.150.2.0/24 197328 -185.150.4.0/22 202714 -185.150.8.0/22 61098 -185.150.12.0/22 203972 -185.150.16.0/23 202929 -185.150.18.0/24 9009 -185.150.19.0/24 202929 -185.150.24.0/22 44592 -185.150.28.0/22 59891 -185.150.32.0/22 44645 -185.150.36.0/22 209543 -185.150.40.0/24 51172 -185.150.42.0/24 44358 -185.150.44.0/22 61171 -185.150.48.0/22 205807 -185.150.52.0/22 6776 -185.150.56.0/22 57029 -185.150.60.0/22 203164 -185.150.64.0/22 12874 -185.150.68.0/22 202932 -185.150.72.0/22 62319 -185.150.76.0/22 201942 -185.150.80.0/22 56986 -185.150.84.0/22 34549 -185.150.88.0/22 29608 -185.150.92.0/22 44598 -185.150.96.0/22 34549 -185.150.100.0/24 202915 -185.150.101.0/24 201942 -185.150.102.0/23 201942 -185.150.104.0/22 44577 -185.150.108.0/22 44531 -185.150.112.0/22 202922 -185.150.116.0/22 16125 -185.150.120.0/22 39847 -185.150.124.0/22 202874 -185.150.128.0/24 57844 -185.150.130.0/23 3188 -185.150.132.0/22 202919 -185.150.140.0/22 29256 -185.150.144.0/22 202907 -185.150.152.0/22 42148 -185.150.156.0/22 202918 -185.150.160.0/22 34197 -185.150.164.0/22 8226 -185.150.168.0/22 57791 -185.150.172.0/22 58324 -185.150.176.0/23 36351 -185.150.178.0/24 6461 -185.150.180.0/23 25398 -185.150.184.0/22 202591 -185.150.188.0/24 49453 -185.150.189.0/24 23470 -185.150.190.0/23 23470 -185.150.192.0/22 16145 -185.150.196.0/22 202914 -185.150.200.0/22 49546 -185.150.204.0/22 197328 -185.150.208.0/22 205617 -185.150.216.0/23 203147 -185.150.219.0/24 3225 -185.150.220.0/23 202823 -185.150.224.0/23 202901 -185.150.227.0/24 202901 -185.150.230.0/23 57525 -185.150.232.0/22 203964 -185.150.236.0/22 206758 -185.150.240.0/22 203908 -185.150.244.0/22 44404 -185.150.248.0/22 207073 -185.150.252.0/23 52039 -185.151.0.0/22 57248 -185.151.4.0/22 202670 -185.151.8.0/22 62395 -185.151.12.0/22 62296 -185.151.16.0/22 202910 -185.151.20.0/22 202909 -185.151.24.0/22 31638 -185.151.28.0/24 31727 -185.151.29.0/24 48254 -185.151.30.0/23 48254 -185.151.32.0/22 64420 -185.151.36.0/22 51152 -185.151.44.0/23 39451 -185.151.47.0/24 16509 -185.151.48.0/22 55293 -185.151.52.0/22 30889 -185.151.56.0/22 61317 -185.151.60.0/22 200428 -185.151.64.0/22 15743 -185.151.68.0/23 39534 -185.151.70.0/24 39534 -185.151.72.0/22 47322 -185.151.76.0/22 208599 -185.151.80.0/22 29256 -185.151.84.0/22 199995 -185.151.88.0/22 3292 -185.151.92.0/22 57329 -185.151.96.0/22 62153 -185.151.100.0/22 15763 -185.151.104.0/22 12593 -185.151.108.0/22 51151 -185.151.112.0/24 202713 -185.151.116.0/23 199378 -185.151.118.0/24 198518 -185.151.119.0/24 204346 -185.151.120.0/22 8334 -185.151.124.0/22 49535 -185.151.128.0/22 51522 -185.151.136.0/22 202544 -185.151.141.0/24 31529 -185.151.144.0/24 15830 -185.151.148.0/22 29256 -185.151.152.0/22 680 -185.151.156.0/22 8717 -185.151.160.0/22 202885 -185.151.164.0/22 205959 -185.151.168.0/22 201654 -185.151.172.0/22 204064 -185.151.176.0/22 29119 -185.151.180.0/22 202862 -185.151.184.0/22 204789 -185.151.188.0/22 34993 -185.151.192.0/22 3292 -185.151.196.0/22 12400 -185.151.200.0/22 8881 -185.151.204.0/23 61273 -185.151.206.0/24 61273 -185.151.208.0/22 202844 -185.151.212.0/22 202884 -185.151.216.0/22 202883 -185.151.220.0/22 202882 -185.151.224.0/22 51043 -185.151.228.0/22 209811 -185.151.232.0/23 25222 -185.151.236.0/22 9009 -185.151.240.0/22 49505 -185.151.244.0/22 61251 -185.151.248.0/22 16086 -185.151.252.0/22 202877 -185.152.0.0/23 202454 -185.152.2.0/24 51561 -185.152.3.0/24 202454 -185.152.4.0/24 29650 -185.152.8.0/22 202867 -185.152.12.0/23 61090 -185.152.16.0/22 61232 -185.152.20.0/22 202859 -185.152.24.0/22 44902 -185.152.28.0/22 202876 -185.152.32.0/24 50304 -185.152.33.0/24 8896 -185.152.34.0/24 61292 -185.152.36.0/22 62240 -185.152.40.0/24 57507 -185.152.44.0/22 202870 -185.152.48.0/22 3491 -185.152.52.0/22 43142 -185.152.56.0/22 206562 -185.152.60.0/22 29119 -185.152.64.0/22 60068 -185.152.68.0/22 202865 -185.152.72.0/22 44451 -185.152.76.0/22 56712 -185.152.80.0/22 197765 -185.152.84.0/22 29396 -185.152.88.0/23 44558 -185.152.90.0/24 2872 -185.152.91.0/24 44558 -185.152.92.0/22 134121 -185.152.96.0/22 33848 -185.152.100.0/22 198813 -185.152.104.0/22 202680 -185.152.108.0/23 42947 -185.152.110.0/24 42947 -185.152.111.0/24 59885 -185.152.112.0/22 31117 -185.152.116.0/22 202868 -185.152.120.0/22 47790 -185.152.124.0/22 202790 -185.152.132.0/24 206528 -185.152.133.0/24 210205 -185.152.136.0/22 6697 -185.152.140.0/22 3269 -185.152.144.0/22 197328 -185.152.148.0/22 15589 -185.152.160.0/22 6717 -185.152.164.0/22 202853 -185.152.168.0/22 202850 -185.152.172.0/22 29119 -185.152.176.0/22 1257 -185.152.180.0/22 39201 -185.152.184.0/22 43226 -185.152.188.0/22 202829 -185.152.192.0/23 202851 -185.152.194.0/23 202849 -185.152.196.0/22 60715 -185.152.200.0/22 202567 -185.152.204.0/22 202741 -185.152.208.0/22 205691 -185.152.212.0/24 60526 -185.152.213.0/24 51815 -185.152.216.0/22 35575 -185.152.220.0/22 202847 -185.152.224.0/22 15600 -185.152.228.0/22 197784 -185.152.232.0/22 57537 -185.152.236.0/22 30742 -185.152.240.0/22 60798 -185.152.244.0/22 39356 -185.152.248.0/22 62240 -185.152.252.0/22 202382 -185.153.0.0/22 56911 -185.153.4.0/22 43770 -185.153.8.0/22 199758 -185.153.12.0/22 203223 -185.153.16.0/22 202754 -185.153.20.0/22 204523 -185.153.24.0/22 202840 -185.153.28.0/22 198034 -185.153.32.0/22 197336 -185.153.36.0/22 42981 -185.153.40.0/22 62058 -185.153.44.0/22 202838 -185.153.48.0/23 52188 -185.153.52.0/22 24997 -185.153.57.0/24 202681 -185.153.60.0/22 1104 -185.153.64.0/22 12316 -185.153.68.0/22 16326 -185.153.76.0/22 203713 -185.153.84.0/22 60524 -185.153.92.0/23 204703 -185.153.94.0/24 208129 -185.153.95.0/24 208160 -185.153.96.0/22 34659 -185.153.100.0/22 6067 -185.153.104.0/22 21405 -185.153.108.0/22 3242 -185.153.112.0/24 51269 -185.153.114.0/23 56992 -185.153.116.0/22 202825 -185.153.120.0/22 8192 -185.153.132.0/22 35816 -185.153.137.0/24 21212 -185.153.140.0/22 42184 -185.153.144.0/22 198966 -185.153.148.0/24 60140 -185.153.149.0/24 199364 -185.153.150.0/24 13287 -185.153.151.0/24 5577 -185.153.152.0/22 58282 -185.153.156.0/23 49769 -185.153.158.0/24 49769 -185.153.164.0/22 46475 -185.153.168.0/23 12956 -185.153.170.0/24 202013 -185.153.171.0/24 12956 -185.153.172.0/22 202793 -185.153.176.0/23 36351 -185.153.178.0/24 136787 -185.153.179.0/24 46562 -185.153.180.0/22 35913 -185.153.184.0/22 24631 -185.153.188.0/22 47869 -185.153.192.0/22 61110 -185.153.196.0/22 49877 -185.153.200.0/24 198651 -185.153.201.0/24 207785 -185.153.202.0/23 198651 -185.153.204.0/22 5413 -185.153.208.0/22 49100 -185.153.212.0/23 57604 -185.153.214.0/24 57604 -185.153.216.0/22 25274 -185.153.220.0/22 49126 -185.153.224.0/22 202813 -185.153.228.0/22 60721 -185.153.236.0/23 206067 -185.153.238.0/24 206067 -185.153.240.0/22 50449 -185.153.244.0/24 47332 -185.153.245.0/24 198583 -185.153.246.0/23 198583 -185.153.248.0/22 199484 -185.153.252.0/22 39839 -185.154.0.0/22 205898 -185.154.4.0/22 57833 -185.154.8.0/22 202817 -185.154.12.0/22 21100 -185.154.16.0/22 207464 -185.154.20.0/22 204490 -185.154.24.0/22 207122 -185.154.28.0/22 49024 -185.154.36.0/22 24951 -185.154.40.0/22 1853 -185.154.44.0/22 202803 -185.154.48.0/23 205900 -185.154.50.0/24 203851 -185.154.51.0/24 205900 -185.154.52.0/22 210079 -185.154.56.0/22 60267 -185.154.60.0/22 58220 -185.154.64.0/22 31543 -185.154.68.0/23 39500 -185.154.70.0/24 39500 -185.154.71.0/24 43790 -185.154.72.0/22 58096 -185.154.76.0/22 207044 -185.154.86.0/24 58193 -185.154.88.0/22 47406 -185.154.96.0/24 206896 -185.154.100.0/22 20988 -185.154.108.0/22 49770 -185.154.112.0/22 202789 -185.154.116.0/22 56704 -185.154.128.0/22 58059 -185.154.132.0/23 196744 -185.154.136.0/22 50474 -185.154.144.0/22 207075 -185.154.148.0/22 47777 -185.154.152.0/22 35661 -185.154.157.0/24 202779 -185.154.158.0/23 202779 -185.154.160.0/23 29119 -185.154.162.0/24 29119 -185.154.164.0/23 48260 -185.154.167.0/24 48260 -185.154.176.0/22 3308 -185.154.180.0/22 57697 -185.154.184.0/22 202788 -185.154.196.0/22 48427 -185.154.200.0/22 43801 -185.154.204.0/22 205624 -185.154.208.0/22 202686 -185.154.212.0/22 42331 -185.154.216.0/24 56871 -185.154.219.0/24 56871 -185.154.220.0/23 207254 -185.154.222.0/24 207254 -185.154.224.0/22 25418 -185.154.228.0/22 202780 -185.154.232.0/22 202718 -185.154.236.0/22 198380 -185.154.240.0/22 207199 -185.154.244.0/23 62660 -185.154.246.0/24 62660 -185.154.248.0/22 29256 -185.154.252.0/22 39328 -185.155.0.0/23 51326 -185.155.2.0/24 51326 -185.155.4.0/22 206451 -185.155.8.0/21 49100 -185.155.16.0/24 202289 -185.155.17.0/24 41275 -185.155.18.0/23 41275 -185.155.20.0/22 202743 -185.155.24.0/22 49278 -185.155.28.0/22 15576 -185.155.32.0/22 202774 -185.155.40.0/22 199978 -185.155.44.0/22 32787 -185.155.48.0/24 57475 -185.155.53.0/24 60068 -185.155.54.0/23 174 -185.155.56.0/23 202810 -185.155.60.0/22 202767 -185.155.64.0/24 202766 -185.155.65.0/24 207099 -185.155.66.0/24 207099 -185.155.67.0/24 202766 -185.155.68.0/22 29119 -185.155.72.0/23 202762 -185.155.74.0/24 202762 -185.155.76.0/22 203815 -185.155.80.0/22 47304 -185.155.84.0/22 204475 -185.155.88.0/24 204788 -185.155.89.0/24 50480 -185.155.90.0/23 206964 -185.155.92.0/22 2259 -185.155.96.0/22 202759 -185.155.100.0/22 12653 -185.155.104.0/24 51545 -185.155.108.0/22 202577 -185.155.112.0/22 202758 -185.155.120.0/22 209970 -185.155.124.0/22 12453 -185.155.128.0/22 202682 -185.155.132.0/24 31027 -185.155.136.0/22 36131 -185.155.144.0/22 13896 -185.155.148.0/22 199484 -185.155.152.0/22 39642 -185.155.160.0/22 29256 -185.155.164.0/22 3257 -185.155.168.0/23 57795 -185.155.170.0/24 47869 -185.155.172.0/22 202755 -185.155.176.0/22 44160 -185.155.180.0/24 202751 -185.155.182.0/24 42037 -185.155.183.0/24 205418 -185.155.186.0/23 6898 -185.155.188.0/22 206141 -185.155.192.0/24 44592 -185.155.194.0/23 64446 -185.155.196.0/22 8220 -185.155.200.0/22 60781 -185.155.204.0/23 58128 -185.155.206.0/24 58128 -185.155.207.0/24 29119 -185.155.208.0/22 205607 -185.155.212.0/22 31726 -185.155.216.0/23 198785 -185.155.220.0/22 30823 -185.155.224.0/22 198785 -185.155.228.0/22 202705 -185.155.232.0/22 50245 -185.155.236.0/22 202735 -185.155.240.0/22 202715 -185.155.248.0/22 56642 -185.155.252.0/22 197060 -185.156.0.0/22 202594 -185.156.4.0/24 52093 -185.156.8.0/22 3303 -185.156.16.0/22 8897 -185.156.20.0/22 205436 -185.156.24.0/22 8487 -185.156.28.0/22 197328 -185.156.32.0/22 59607 -185.156.36.0/22 202605 -185.156.40.0/24 24723 -185.156.41.0/24 196645 -185.156.42.0/23 196645 -185.156.48.0/24 2856 -185.156.56.0/22 202598 -185.156.60.0/22 202640 -185.156.64.0/22 61323 -185.156.68.0/24 202698 -185.156.73.0/24 48817 -185.156.74.0/23 34549 -185.156.76.0/22 206940 -185.156.80.0/22 202727 -185.156.96.0/22 207934 -185.156.100.0/22 202724 -185.156.108.0/22 35913 -185.156.112.0/24 8896 -185.156.114.0/24 8896 -185.156.116.0/22 56444 -185.156.120.0/22 202719 -185.156.124.0/22 202716 -185.156.128.0/22 1902 -185.156.132.0/22 20924 -185.156.136.0/22 56444 -185.156.140.0/22 16353 -185.156.144.0/23 5404 -185.156.146.0/24 48339 -185.156.148.0/23 202552 -185.156.150.0/24 202552 -185.156.151.0/24 200409 -185.156.152.0/22 34226 -185.156.156.0/22 202707 -185.156.160.0/22 202706 -185.156.164.0/22 40276 -185.156.172.0/22 9009 -185.156.176.0/24 59504 -185.156.177.0/24 57043 -185.156.178.0/23 59504 -185.156.184.0/23 11342 -185.156.186.0/23 19875 -185.156.188.0/22 206405 -185.156.192.0/23 52054 -185.156.200.0/22 56388 -185.156.204.0/24 202701 -185.156.205.0/24 200486 -185.156.206.0/24 200486 -185.156.207.0/24 202701 -185.156.208.0/22 202692 -185.156.212.0/24 56333 -185.156.213.0/24 60372 -185.156.214.0/24 56333 -185.156.215.0/24 60372 -185.156.216.0/23 60458 -185.156.218.0/24 60458 -185.156.219.0/24 201942 -185.156.220.0/23 48575 -185.156.222.0/24 48575 -185.156.223.0/24 44911 -185.156.224.0/22 6786 -185.156.231.0/24 9108 -185.156.232.0/22 12874 -185.156.236.0/22 35019 -185.156.240.0/22 31222 -185.156.244.0/22 202695 -185.156.248.0/22 202676 -185.156.252.0/22 206423 -185.157.0.0/23 15623 -185.157.3.0/24 13030 -185.157.4.0/22 207185 -185.157.8.0/22 51554 -185.157.12.0/22 51399 -185.157.16.0/22 207247 -185.157.20.0/22 202524 -185.157.24.0/22 50316 -185.157.28.0/22 202694 -185.157.32.0/22 206545 -185.157.40.0/22 42926 -185.157.44.0/24 9125 -185.157.45.0/24 28964 -185.157.46.0/23 28964 -185.157.48.0/24 62217 -185.157.49.0/24 61317 -185.157.56.0/22 38990 -185.157.60.0/23 15426 -185.157.62.0/24 15426 -185.157.63.0/24 39647 -185.157.64.0/24 394545 -185.157.66.0/23 394545 -185.157.68.0/22 207232 -185.157.72.0/22 202691 -185.157.76.0/22 42331 -185.157.80.0/23 42927 -185.157.82.0/24 42927 -185.157.83.0/24 24940 -185.157.84.0/22 206612 -185.157.88.0/22 51913 -185.157.92.0/22 197722 -185.157.96.0/23 35237 -185.157.99.0/24 35237 -185.157.100.0/24 2830 -185.157.101.0/24 3320 -185.157.102.0/24 204349 -185.157.103.0/24 2856 -185.157.104.0/22 197324 -185.157.108.0/22 202652 -185.157.112.0/24 205979 -185.157.116.0/22 60111 -185.157.124.0/23 56351 -185.157.126.0/24 56351 -185.157.127.0/24 202009 -185.157.128.0/22 205836 -185.157.140.0/23 42160 -185.157.142.0/24 35660 -185.157.144.0/24 57795 -185.157.145.0/24 20559 -185.157.146.0/23 57795 -185.157.148.0/22 204702 -185.157.152.0/22 206752 -185.157.156.0/22 58243 -185.157.160.0/23 197595 -185.157.162.0/24 197595 -185.157.164.0/22 197295 -185.157.168.0/22 205199 -185.157.172.0/22 206563 -185.157.176.0/22 24940 -185.157.181.0/24 202672 -185.157.183.0/24 202672 -185.157.184.0/22 202658 -185.157.189.0/24 15913 -185.157.190.0/24 15913 -185.157.191.0/24 200323 -185.157.192.0/23 202669 -185.157.196.0/22 25424 -185.157.200.0/22 8818 -185.157.205.0/24 15830 -185.157.208.0/22 198203 -185.157.212.0/22 50129 -185.157.216.0/22 44942 -185.157.220.0/22 43948 -185.157.224.0/23 25588 -185.157.226.0/24 44305 -185.157.227.0/24 14244 -185.157.228.0/22 41327 -185.157.232.0/22 47987 -185.157.236.0/23 31242 -185.157.238.0/24 31242 -185.157.240.0/22 39235 -185.157.244.0/23 62000 -185.157.246.0/23 49434 -185.157.252.0/23 51389 -185.157.254.0/24 51389 -185.158.0.0/22 35444 -185.158.4.0/22 207758 -185.158.8.0/22 60397 -185.158.12.0/22 61183 -185.158.16.0/22 202664 -185.158.24.0/24 1764 -185.158.26.0/24 1764 -185.158.28.0/23 28742 -185.158.36.0/22 198843 -185.158.40.0/22 60294 -185.158.48.0/22 8881 -185.158.52.0/22 206208 -185.158.56.0/22 34066 -185.158.60.0/22 59469 -185.158.64.0/22 202657 -185.158.68.0/22 48095 -185.158.80.0/22 206997 -185.158.84.0/22 63410 -185.158.92.0/22 29256 -185.158.96.0/22 202566 -185.158.100.0/22 61317 -185.158.104.0/22 61317 -185.158.112.0/22 44812 -185.158.120.0/22 8681 -185.158.124.0/22 206772 -185.158.130.0/24 202587 -185.158.132.0/22 61317 -185.158.136.0/22 46261 -185.158.140.0/22 50316 -185.158.144.0/22 51299 -185.158.148.0/22 61317 -185.158.152.0/22 48096 -185.158.156.0/22 197328 -185.158.164.0/22 48635 -185.158.168.0/22 60609 -185.158.172.0/23 51274 -185.158.174.0/24 51274 -185.158.175.0/24 201937 -185.158.176.0/22 202635 -185.158.180.0/22 20810 -185.158.184.0/23 6848 -185.158.186.0/24 9166 -185.158.187.0/24 6848 -185.158.188.0/22 44747 -185.158.192.0/22 206274 -185.158.196.0/22 202625 -185.158.200.0/22 20847 -185.158.208.0/24 21343 -185.158.209.0/24 59613 -185.158.210.0/24 59613 -185.158.212.0/22 197540 -185.158.216.0/22 12406 -185.158.220.0/22 12361 -185.158.224.0/22 205435 -185.158.228.0/22 202549 -185.158.232.0/22 207157 -185.158.236.0/22 51001 -185.158.240.0/24 64474 -185.158.241.0/24 50985 -185.158.242.0/24 50985 -185.158.243.0/24 64474 -185.158.244.0/22 35902 -185.158.248.0/24 9009 -185.158.249.0/24 58329 -185.158.250.0/24 9009 -185.158.251.0/24 39378 -185.158.252.0/22 60134 -185.159.0.0/22 202617 -185.159.4.0/22 63182 -185.159.8.0/23 5089 -185.159.12.0/22 202568 -185.159.16.0/23 202621 -185.159.20.0/22 50963 -185.159.24.0/24 44684 -185.159.28.0/22 202618 -185.159.32.0/24 62255 -185.159.33.0/24 31400 -185.159.34.0/23 31400 -185.159.36.0/22 15405 -185.159.40.0/22 201942 -185.159.45.0/24 34434 -185.159.47.0/24 34434 -185.159.48.0/22 56911 -185.159.52.0/22 51569 -185.159.56.0/22 24864 -185.159.60.0/22 50394 -185.159.64.0/22 200044 -185.159.72.0/22 59447 -185.159.76.0/22 202596 -185.159.80.0/22 14576 -185.159.84.0/22 202616 -185.159.92.0/22 202556 -185.159.96.0/22 202604 -185.159.100.0/22 59885 -185.159.104.0/22 39605 -185.159.112.0/22 202608 -185.159.116.0/22 198970 -185.159.120.0/23 31400 -185.159.122.0/23 200548 -185.159.124.0/22 202120 -185.159.128.0/22 64439 -185.159.136.0/22 43366 -185.159.140.0/24 29067 -185.159.144.0/22 3269 -185.159.152.0/22 201999 -185.159.156.0/24 8473 -185.159.157.0/24 59898 -185.159.158.0/24 56704 -185.159.159.0/24 19905 -185.159.160.0/22 31272 -185.159.164.0/23 201776 -185.159.168.0/22 50784 -185.159.172.0/22 56791 -185.159.176.0/22 202601 -185.159.184.0/22 50650 -185.159.188.0/22 33915 -185.159.192.0/22 50678 -185.159.196.0/24 394354 -185.159.197.0/24 55195 -185.159.198.0/24 394354 -185.159.200.0/22 50782 -185.159.204.0/22 6772 -185.159.208.0/22 21032 -185.159.212.0/22 202599 -185.159.216.0/22 59395 -185.159.220.0/23 39923 -185.159.222.0/24 39923 -185.159.224.0/23 64397 -185.159.228.0/22 50601 -185.159.232.0/22 202597 -185.159.236.0/23 16302 -185.159.240.0/22 48635 -185.159.244.0/22 14043 -185.159.248.0/22 50631 -185.159.252.0/22 200738 -185.160.0.0/22 44066 -185.160.4.0/22 41960 -185.160.8.0/22 35280 -185.160.16.0/22 34722 -185.160.20.0/22 42000 -185.160.24.0/22 9009 -185.160.28.0/22 43260 -185.160.32.0/23 42258 -185.160.36.0/22 208720 -185.160.40.0/22 3257 -185.160.44.0/22 204287 -185.160.48.0/22 210287 -185.160.52.0/22 202582 -185.160.56.0/23 202022 -185.160.58.0/24 202022 -185.160.60.0/22 34248 -185.160.64.0/24 60140 -185.160.68.0/22 35681 -185.160.72.0/22 39647 -185.160.80.0/22 39855 -185.160.84.0/22 202579 -185.160.88.0/23 50864 -185.160.90.0/24 207085 -185.160.91.0/24 57804 -185.160.92.0/22 39464 -185.160.100.0/22 201341 -185.160.104.0/22 202571 -185.160.108.0/22 49460 -185.160.116.0/22 207245 -185.160.120.0/24 35146 -185.160.122.0/24 35146 -185.160.124.0/23 202569 -185.160.128.0/22 50309 -185.160.132.0/22 43625 -185.160.140.0/24 202085 -185.160.141.0/24 210175 -185.160.142.0/24 56847 -185.160.143.0/24 39067 -185.160.144.0/22 31723 -185.160.148.0/22 202565 -185.160.152.0/22 29119 -185.160.156.0/22 43350 -185.160.160.0/22 44466 -185.160.164.0/22 31463 -185.160.168.0/22 202559 -185.160.176.0/22 49148 -185.160.180.0/22 61323 -185.160.184.0/24 3549 -185.160.185.0/24 207173 -185.160.186.0/23 207173 -185.160.192.0/22 34458 -185.160.196.0/23 207213 -185.160.200.0/22 207253 -185.160.204.0/22 9022 -185.160.208.0/22 202551 -185.160.212.0/22 29119 -185.160.216.0/22 207133 -185.160.220.0/22 205561 -185.160.224.0/22 43824 -185.160.228.0/22 201453 -185.160.240.0/22 206936 -185.160.244.0/22 8758 -185.160.248.0/22 50533 -185.160.252.0/23 61323 -185.160.254.0/24 61323 -185.160.255.0/24 34934 -185.161.1.0/24 4556 -185.161.2.0/23 4556 -185.161.4.0/22 43915 -185.161.8.0/24 21351 -185.161.9.0/24 34306 -185.161.10.0/24 37002 -185.161.16.0/23 20860 -185.161.18.0/24 20860 -185.161.19.0/24 11352 -185.161.20.0/22 41872 -185.161.24.0/22 64485 -185.161.28.0/22 25459 -185.161.32.0/23 202576 -185.161.35.0/24 49643 -185.161.36.0/22 39650 -185.161.40.0/22 48952 -185.161.44.0/24 35625 -185.161.45.0/24 24935 -185.161.46.0/24 35625 -185.161.47.0/24 24935 -185.161.48.0/22 207192 -185.161.52.0/22 49951 -185.161.56.0/22 34087 -185.161.60.0/22 202535 -185.161.64.0/22 34702 -185.161.68.0/24 60140 -185.161.69.0/24 35913 -185.161.70.0/23 35913 -185.161.72.0/22 206892 -185.161.76.0/22 16175 -185.161.80.0/22 207180 -185.161.88.0/22 47836 -185.161.92.0/22 50153 -185.161.96.0/22 205697 -185.161.100.0/22 64442 -185.161.104.0/23 394028 -185.161.106.0/24 394028 -185.161.108.0/23 197328 -185.161.110.0/23 59447 -185.161.112.0/22 50057 -185.161.116.0/22 207060 -185.161.124.0/22 50033 -185.161.128.0/22 50017 -185.161.132.0/22 8468 -185.161.136.0/22 16175 -185.161.140.0/23 48501 -185.161.142.0/24 48501 -185.161.144.0/22 198930 -185.161.148.0/22 202527 -185.161.152.0/22 202526 -185.161.156.0/22 199163 -185.161.160.0/24 49264 -185.161.161.0/24 44350 -185.161.164.0/22 207087 -185.161.168.0/22 64476 -185.161.172.0/23 61241 -185.161.174.0/23 5578 -185.161.176.0/22 3320 -185.161.180.0/22 49675 -185.161.184.0/23 50129 -185.161.188.0/24 36131 -185.161.189.0/24 20016 -185.161.190.0/23 13213 -185.161.192.0/22 50178 -185.161.196.0/22 39488 -185.161.200.0/23 36351 -185.161.202.0/23 201341 -185.161.204.0/22 207255 -185.161.208.0/22 42159 -185.161.212.0/22 62183 -185.161.216.0/23 209908 -185.161.220.0/22 9104 -185.161.224.0/22 207251 -185.161.228.0/24 207243 -185.161.230.0/23 207243 -185.161.232.0/22 207249 -185.161.236.0/22 43882 -185.161.240.0/22 21430 -185.161.244.0/22 207219 -185.161.248.0/22 5089 -185.161.252.0/22 200918 -185.162.0.0/22 207236 -185.162.8.0/24 21100 -185.162.9.0/24 207728 -185.162.10.0/24 59729 -185.162.11.0/24 207728 -185.162.12.0/22 44322 -185.162.16.0/22 35432 -185.162.20.0/22 197221 -185.162.24.0/22 207242 -185.162.28.0/22 34762 -185.162.32.0/22 207240 -185.162.36.0/22 207237 -185.162.40.0/22 50810 -185.162.44.0/22 201341 -185.162.48.0/22 207222 -185.162.52.0/22 201942 -185.162.56.0/22 49544 -185.162.60.0/22 207233 -185.162.64.0/22 205275 -185.162.68.0/23 34934 -185.162.72.0/24 174 -185.162.73.0/24 197328 -185.162.74.0/24 59447 -185.162.75.0/24 197328 -185.162.76.0/22 64488 -185.162.80.0/22 35717 -185.162.84.0/22 39572 -185.162.88.0/24 40676 -185.162.89.0/24 8100 -185.162.90.0/23 41108 -185.162.92.0/22 41722 -185.162.100.0/22 34407 -185.162.104.0/22 3292 -185.162.108.0/22 20860 -185.162.112.0/22 5580 -185.162.116.0/22 207223 -185.162.120.0/22 6758 -185.162.124.0/24 44709 -185.162.125.0/24 56378 -185.162.126.0/24 56378 -185.162.127.0/24 1680 -185.162.128.0/22 14576 -185.162.132.0/22 12450 -185.162.136.0/22 209528 -185.162.140.0/22 62013 -185.162.144.0/22 60721 -185.162.148.0/22 34380 -185.162.152.0/22 196640 -185.162.156.0/22 201057 -185.162.160.0/22 207216 -185.162.164.0/22 29256 -185.162.168.0/22 60458 -185.162.172.0/23 199290 -185.162.174.0/24 200845 -185.162.176.0/22 207215 -185.162.180.0/23 64472 -185.162.182.0/24 64472 -185.162.183.0/24 47787 -185.162.184.0/22 58073 -185.162.192.0/22 44224 -185.162.196.0/24 205156 -185.162.200.0/22 41453 -185.162.204.0/22 20535 -185.162.208.0/22 207181 -185.162.212.0/22 207210 -185.162.216.0/22 64482 -185.162.220.0/22 21263 -185.162.224.0/22 61323 -185.162.233.0/24 34665 -185.162.234.0/24 31133 -185.162.235.0/24 50673 -185.162.236.0/22 209150 -185.162.240.0/22 26088 -185.162.244.0/22 64478 -185.162.248.0/22 197540 -185.163.1.0/24 64474 -185.163.2.0/23 64474 -185.163.4.0/22 200428 -185.163.8.0/22 49956 -185.163.12.0/22 207202 -185.163.16.0/22 200719 -185.163.20.0/22 207201 -185.163.24.0/22 64466 -185.163.28.0/22 202727 -185.163.36.0/22 199163 -185.163.40.0/22 207198 -185.163.44.0/22 39798 -185.163.52.0/22 201341 -185.163.56.0/22 39324 -185.163.60.0/22 60032 -185.163.64.0/22 34863 -185.163.68.0/22 207195 -185.163.72.0/22 64459 -185.163.76.0/22 3320 -185.163.80.0/24 62167 -185.163.81.0/24 64463 -185.163.82.0/23 64463 -185.163.84.0/24 12552 -185.163.88.0/22 41856 -185.163.92.0/22 15600 -185.163.97.0/24 33953 -185.163.100.0/22 42666 -185.163.104.0/22 43376 -185.163.108.0/22 9009 -185.163.112.0/22 197297 -185.163.116.0/22 197540 -185.163.120.0/22 35753 -185.163.124.0/22 51269 -185.163.128.0/22 42926 -185.163.132.0/23 207040 -185.163.136.0/22 57809 -185.163.140.0/22 39251 -185.163.144.0/23 174 -185.163.146.0/24 59447 -185.163.147.0/24 197328 -185.163.148.0/22 57259 -185.163.152.0/22 16509 -185.163.156.0/22 207104 -185.163.162.0/23 49240 -185.163.164.0/22 201453 -185.163.168.0/22 201942 -185.163.180.0/22 207187 -185.163.184.0/22 206157 -185.163.188.0/22 28717 -185.163.192.0/22 48506 -185.163.196.0/24 31027 -185.163.200.0/22 20771 -185.163.204.0/22 15404 -185.163.208.0/22 54103 -185.163.212.0/22 57809 -185.163.216.0/22 29256 -185.163.220.0/22 57809 -185.163.228.0/22 57809 -185.163.232.0/22 201942 -185.163.236.0/22 204144 -185.163.240.0/24 207128 -185.163.243.0/24 207128 -185.163.244.0/22 49188 -185.163.248.0/22 207135 -185.163.252.0/22 198760 -185.164.0.0/22 35525 -185.164.4.0/22 38955 -185.164.8.0/22 51319 -185.164.12.0/22 51468 -185.164.16.0/22 207007 -185.164.20.0/23 207169 -185.164.22.0/24 202105 -185.164.23.0/24 207169 -185.164.24.0/21 207169 -185.164.32.0/22 200698 -185.164.36.0/22 201341 -185.164.40.0/23 207091 -185.164.42.0/23 56909 -185.164.44.0/22 56730 -185.164.48.0/22 43456 -185.164.52.0/22 202545 -185.164.56.0/22 60781 -185.164.60.0/23 47716 -185.164.62.0/24 47716 -185.164.63.0/24 61327 -185.164.64.0/23 17090 -185.164.66.0/23 9009 -185.164.68.0/22 207153 -185.164.72.0/24 50673 -185.164.73.0/24 204203 -185.164.74.0/23 39650 -185.164.76.0/23 34370 -185.164.78.0/24 34370 -185.164.80.0/22 207164 -185.164.84.0/22 208571 -185.164.92.0/23 207145 -185.164.94.0/24 207145 -185.164.95.0/24 28716 -185.164.96.0/22 34953 -185.164.100.0/22 60458 -185.164.104.0/22 64443 -185.164.108.0/22 202545 -185.164.112.0/24 174 -185.164.113.0/24 197328 -185.164.114.0/24 59447 -185.164.115.0/24 197328 -185.164.116.0/22 207136 -185.164.120.0/22 207155 -185.164.124.0/22 206874 -185.164.132.0/22 29256 -185.164.136.0/22 62240 -185.164.144.0/22 206966 -185.164.148.0/24 206846 -185.164.149.0/24 205031 -185.164.152.0/22 199554 -185.164.156.0/22 196755 -185.164.164.0/22 64444 -185.164.172.0/22 207154 -185.164.176.0/23 20836 -185.164.178.0/23 42692 -185.164.180.0/22 51263 -185.164.184.0/24 13030 -185.164.185.0/24 48544 -185.164.186.0/23 48544 -185.164.188.0/23 206878 -185.164.192.0/22 35435 -185.164.196.0/22 21396 -185.164.200.0/22 29256 -185.164.204.0/23 8437 -185.164.208.0/22 43350 -185.164.212.0/22 207147 -185.164.216.0/23 207138 -185.164.220.0/24 199448 -185.164.224.0/22 206657 -185.164.228.0/23 203836 -185.164.230.0/24 203836 -185.164.232.0/22 24904 -185.164.236.0/22 206942 -185.164.240.0/22 207144 -185.164.244.0/22 206815 -185.164.248.0/22 29256 -185.164.252.0/22 207141 -185.165.0.0/23 29119 -185.165.4.0/22 29119 -185.165.8.0/23 34051 -185.165.12.0/22 25019 -185.165.16.0/22 42442 -185.165.20.0/22 50264 -185.165.24.0/23 58738 -185.165.28.0/23 64434 -185.165.30.0/24 64434 -185.165.32.0/22 37002 -185.165.36.0/22 5578 -185.165.40.0/22 64428 -185.165.44.0/23 197328 -185.165.46.0/24 59447 -185.165.47.0/24 197328 -185.165.48.0/24 49544 -185.165.52.0/24 16552 -185.165.54.0/23 16552 -185.165.56.0/22 51580 -185.165.60.0/22 201341 -185.165.64.0/22 207151 -185.165.68.0/22 34373 -185.165.72.0/22 206464 -185.165.76.0/22 61135 -185.165.80.0/22 12552 -185.165.84.0/22 42366 -185.165.88.0/22 207022 -185.165.96.0/22 59620 -185.165.100.0/22 41856 -185.165.104.0/22 207112 -185.165.108.0/22 8462 -185.165.112.0/22 44322 -185.165.116.0/23 207125 -185.165.118.0/23 203684 -185.165.120.0/24 64432 -185.165.123.0/24 64432 -185.165.124.0/22 206961 -185.165.128.0/22 64431 -185.165.132.0/22 64430 -185.165.138.0/23 9145 -185.165.140.0/22 31117 -185.165.144.0/24 60737 -185.165.151.0/24 201925 -185.165.152.0/24 20119 -185.165.153.0/24 209623 -185.165.160.0/22 62423 -185.165.164.0/22 64411 -185.165.168.0/22 200651 -185.165.172.0/22 12552 -185.165.184.0/22 40975 -185.165.188.0/24 174 -185.165.196.0/22 35132 -185.165.200.0/22 15757 -185.165.208.0/24 207014 -185.165.209.0/24 59898 -185.165.210.0/23 207014 -185.165.216.0/22 34139 -185.165.223.0/24 206370 -185.165.224.0/22 21143 -185.165.228.0/22 42366 -185.165.232.0/22 207102 -185.165.237.0/24 47869 -185.165.240.0/22 49981 -185.165.244.0/22 50050 -185.165.248.0/22 29119 -185.165.252.0/22 60609 -185.166.0.0/22 207032 -185.166.4.0/22 12574 -185.166.8.0/24 56788 -185.166.9.0/24 60091 -185.166.12.0/22 207100 -185.166.16.0/22 13302 -185.166.20.0/22 59447 -185.166.24.0/22 207097 -185.166.28.0/22 51188 -185.166.32.0/22 20514 -185.166.36.0/22 201942 -185.166.40.0/22 207096 -185.166.44.0/22 16185 -185.166.48.0/22 206730 -185.166.52.0/23 207095 -185.166.55.0/24 207095 -185.166.60.0/22 62250 -185.166.72.0/22 52052 -185.166.76.0/22 207038 -185.166.80.0/22 21466 -185.166.84.0/24 30781 -185.166.86.0/24 20860 -185.166.87.0/24 203020 -185.166.88.0/22 49033 -185.166.92.0/22 207130 -185.166.96.0/22 8758 -185.166.100.0/22 30781 -185.166.104.0/23 202319 -185.166.107.0/24 202319 -185.166.112.0/24 64414 -185.166.113.0/24 31549 -185.166.114.0/24 64414 -185.166.115.0/24 43754 -185.166.116.0/23 8544 -185.166.118.0/24 16229 -185.166.119.0/24 8544 -185.166.120.0/22 60876 -185.166.124.0/22 207068 -185.166.128.0/22 61323 -185.166.132.0/22 8462 -185.166.136.0/22 8462 -185.166.140.0/22 133530 -185.166.144.0/24 47787 -185.166.148.0/23 207074 -185.166.152.0/22 35913 -185.166.156.0/22 207072 -185.166.160.0/22 35913 -185.166.164.0/22 205068 -185.166.168.0/22 57896 -185.166.172.0/22 201942 -185.166.176.0/22 12355 -185.166.180.0/22 5577 -185.166.184.0/22 203940 -185.166.188.0/24 3257 -185.166.193.0/24 25435 -185.166.196.0/22 41070 -185.166.200.0/22 20694 -185.166.204.0/22 12552 -185.166.208.0/22 198612 -185.166.212.0/22 49635 -185.166.216.0/22 56485 -185.166.220.0/22 6876 -185.166.228.0/22 197886 -185.166.232.0/23 39806 -185.166.234.0/24 64403 -185.166.235.0/24 50673 -185.166.236.0/23 35913 -185.166.238.0/24 48115 -185.166.239.0/24 9009 -185.166.240.0/22 199624 -185.166.244.0/22 49222 -185.166.248.0/23 198847 -185.166.252.0/24 207541 -185.166.253.0/24 61317 -185.166.255.0/24 58254 -185.167.0.0/22 199483 -185.167.4.0/22 59898 -185.167.8.0/22 15600 -185.167.16.0/22 201080 -185.167.24.0/22 60458 -185.167.28.0/22 34695 -185.167.32.0/22 50661 -185.167.36.0/24 13768 -185.167.44.0/22 44021 -185.167.48.0/22 6848 -185.167.56.0/22 43783 -185.167.60.0/22 197328 -185.167.72.0/23 49796 -185.167.74.0/24 49796 -185.167.76.0/22 207059 -185.167.84.0/22 3301 -185.167.88.0/23 207058 -185.167.92.0/22 41627 -185.167.96.0/22 41436 -185.167.100.0/22 207057 -185.167.104.0/22 209138 -185.167.108.0/22 202940 -185.167.112.0/22 207054 -185.167.120.0/22 207056 -185.167.124.0/22 61386 -185.167.128.0/22 202727 -185.167.132.0/22 31204 -185.167.136.0/22 49257 -185.167.140.0/22 203687 -185.167.144.0/22 8866 -185.167.148.0/22 30742 -185.167.152.0/22 1680 -185.167.156.0/22 60689 -185.167.160.0/22 42331 -185.167.164.0/22 198622 -185.167.168.0/24 40526 -185.167.172.0/22 60441 -185.167.176.0/24 1921 -185.167.177.0/24 43948 -185.167.184.0/22 201476 -185.167.188.0/23 44071 -185.167.190.0/24 44071 -185.167.191.0/24 9714 -185.167.192.0/22 51344 -185.167.196.0/22 207044 -185.167.200.0/22 25019 -185.167.204.0/22 57758 -185.167.208.0/22 199657 -185.167.212.0/22 48690 -185.167.220.0/22 57752 -185.167.224.0/22 24689 -185.167.228.0/22 31463 -185.167.236.0/22 34310 -185.167.240.0/22 24953 -185.167.244.0/22 207042 -185.167.248.0/24 207041 -185.168.0.0/22 62313 -185.168.4.0/22 198508 -185.168.9.0/24 203380 -185.168.10.0/24 48273 -185.168.12.0/22 202725 -185.168.16.0/23 42186 -185.168.18.0/24 42186 -185.168.19.0/24 51859 -185.168.20.0/22 9009 -185.168.24.0/22 207018 -185.168.28.0/22 41856 -185.168.32.0/23 197328 -185.168.34.0/23 59447 -185.168.36.0/24 207034 -185.168.37.0/24 206659 -185.168.38.0/23 199081 -185.168.40.0/22 203964 -185.168.44.0/22 31178 -185.168.52.0/23 59439 -185.168.61.0/24 51437 -185.168.62.0/23 51437 -185.168.68.0/22 1680 -185.168.72.0/22 207031 -185.168.76.0/22 206952 -185.168.80.0/22 28674 -185.168.85.0/24 31673 -185.168.86.0/23 31673 -185.168.88.0/22 200873 -185.168.96.0/22 207028 -185.168.100.0/23 206778 -185.168.102.0/24 206778 -185.168.103.0/24 35369 -185.168.104.0/22 207026 -185.168.112.0/23 56647 -185.168.116.0/22 35549 -185.168.124.0/23 203263 -185.168.126.0/24 203263 -185.168.127.0/24 206581 -185.168.128.0/22 49720 -185.168.132.0/23 51561 -185.168.144.0/22 51561 -185.168.152.0/22 47288 -185.168.156.0/22 207023 -185.168.160.0/24 35421 -185.168.161.0/24 3257 -185.168.162.0/23 3257 -185.168.164.0/22 41827 -185.168.168.0/24 9009 -185.168.172.0/22 47735 -185.168.176.0/22 207013 -185.168.180.0/22 206079 -185.168.184.0/23 51892 -185.168.186.0/24 51892 -185.168.187.0/24 207016 -185.168.188.0/22 206865 -185.168.192.0/22 49683 -185.168.196.0/22 207017 -185.168.200.0/22 201401 -185.168.207.0/24 42122 -185.168.208.0/22 9009 -185.168.212.0/22 29243 -185.168.216.0/23 204521 -185.168.220.0/22 34058 -185.168.224.0/22 49628 -185.168.228.0/22 29014 -185.168.232.0/22 203204 -185.168.236.0/22 25086 -185.168.240.0/22 12552 -185.168.248.0/22 60781 -185.168.252.0/22 18708 -185.169.1.0/24 35913 -185.169.3.0/24 42366 -185.169.16.0/22 34248 -185.169.20.0/22 44090 -185.169.28.0/24 206933 -185.169.36.0/23 49100 -185.169.38.0/24 49100 -185.169.39.0/24 44090 -185.169.40.0/22 199926 -185.169.44.0/22 33986 -185.169.52.0/22 201978 -185.169.56.0/22 206497 -185.169.60.0/22 1836 -185.169.64.0/22 206991 -185.169.68.0/22 205930 -185.169.72.0/22 206799 -185.169.80.0/23 34934 -185.169.84.0/22 198249 -185.169.88.0/22 206958 -185.169.92.0/22 21217 -185.169.96.0/22 207002 -185.169.108.0/22 395855 -185.169.112.0/22 50343 -185.169.118.0/23 13037 -185.169.124.0/22 199163 -185.169.128.0/24 197328 -185.169.129.0/24 174 -185.169.130.0/23 174 -185.169.132.0/22 206980 -185.169.136.0/22 206863 -185.169.140.0/22 61053 -185.169.144.0/23 49425 -185.169.148.0/22 43181 -185.169.152.0/22 201706 -185.169.156.0/22 57809 -185.169.160.0/22 29256 -185.169.164.0/22 206565 -185.169.169.0/24 49898 -185.169.170.0/24 49898 -185.169.172.0/23 206993 -185.169.176.0/22 5602 -185.169.180.0/24 29262 -185.169.181.0/24 34984 -185.169.182.0/23 208485 -185.169.184.0/22 12874 -185.169.188.0/23 48685 -185.169.196.0/22 40676 -185.169.200.0/22 35435 -185.169.204.0/22 35244 -185.169.208.0/22 206979 -185.169.212.0/22 13012 -185.169.220.0/22 34458 -185.169.224.0/22 206988 -185.169.228.0/22 17941 -185.169.232.0/24 62240 -185.169.233.0/24 206986 -185.169.234.0/24 206986 -185.169.235.0/24 49981 -185.169.236.0/22 56911 -185.169.240.0/22 60016 -185.169.244.0/22 206984 -185.169.252.0/24 21769 -185.169.253.0/24 206264 -185.169.254.0/24 32780 -185.169.255.0/24 13213 -185.170.0.0/24 60967 -185.170.1.0/24 50339 -185.170.2.0/23 41185 -185.170.4.0/22 206982 -185.170.16.0/22 196810 -185.170.20.0/22 48934 -185.170.28.0/22 201455 -185.170.32.0/22 39039 -185.170.36.0/22 21056 -185.170.40.0/24 61317 -185.170.44.0/22 197562 -185.170.48.0/22 206969 -185.170.52.0/22 50911 -185.170.56.0/23 61317 -185.170.58.0/24 200019 -185.170.59.0/24 61317 -185.170.60.0/22 27381 -185.170.68.0/22 61161 -185.170.72.0/22 8473 -185.170.76.0/23 48529 -185.170.80.0/22 29608 -185.170.84.0/22 8462 -185.170.88.0/24 48038 -185.170.90.0/24 48038 -185.170.92.0/22 47886 -185.170.96.0/22 206954 -185.170.100.0/22 45028 -185.170.104.0/22 50599 -185.170.108.0/22 209709 -185.170.112.0/22 197540 -185.170.116.0/24 8966 -185.170.120.0/22 206906 -185.170.127.0/24 209381 -185.170.128.0/23 48629 -185.170.130.0/24 48629 -185.170.131.0/24 9051 -185.170.136.0/22 206801 -185.170.140.0/23 174 -185.170.142.0/24 174 -185.170.143.0/24 12653 -185.170.145.0/24 207565 -185.170.146.0/24 207552 -185.170.147.0/24 200738 -185.170.151.0/24 34572 -185.170.152.0/22 31727 -185.170.156.0/24 62369 -185.170.161.0/24 48582 -185.170.162.0/23 48582 -185.170.168.0/22 3257 -185.170.172.0/24 206959 -185.170.175.0/24 36351 -185.170.176.0/22 51320 -185.170.180.0/22 51815 -185.170.184.0/22 62337 -185.170.192.0/22 1820 -185.170.196.0/22 42366 -185.170.200.0/22 206956 -185.170.204.0/23 206955 -185.170.206.0/24 203907 -185.170.207.0/24 206955 -185.170.208.0/23 134835 -185.170.210.0/24 134835 -185.170.224.0/24 206048 -185.170.225.0/24 206186 -185.170.226.0/24 206401 -185.170.227.0/24 206108 -185.170.228.0/22 206951 -185.170.232.0/22 206912 -185.170.236.0/22 202391 -185.170.244.0/22 31317 -185.170.248.0/22 204996 -185.170.252.0/22 205964 -185.171.0.0/24 136933 -185.171.1.0/24 61084 -185.171.2.0/24 202365 -185.171.3.0/24 35913 -185.171.4.0/23 16189 -185.171.8.0/22 206945 -185.171.12.0/22 206767 -185.171.16.0/22 43456 -185.171.20.0/23 206944 -185.171.22.0/24 25540 -185.171.24.0/22 60721 -185.171.28.0/22 206943 -185.171.32.0/22 28878 -185.171.36.0/22 5396 -185.171.40.0/22 28788 -185.171.44.0/22 205614 -185.171.48.0/22 49033 -185.171.52.0/24 44285 -185.171.53.0/24 51431 -185.171.54.0/23 44285 -185.171.58.0/23 206646 -185.171.60.0/22 206262 -185.171.66.0/24 174 -185.171.67.0/24 202708 -185.171.68.0/22 43768 -185.171.72.0/22 29256 -185.171.76.0/22 8893 -185.171.84.0/24 200780 -185.171.88.0/22 51559 -185.171.92.0/23 43242 -185.171.94.0/24 43242 -185.171.96.0/22 42366 -185.171.100.0/23 61111 -185.171.102.0/23 50166 -185.171.104.0/23 200290 -185.171.106.0/24 200290 -185.171.107.0/24 200845 -185.171.108.0/23 206911 -185.171.112.0/22 198551 -185.171.116.0/22 206771 -185.171.120.0/22 9009 -185.171.124.0/23 64200 -185.171.126.0/24 13213 -185.171.127.0/24 64200 -185.171.128.0/22 29396 -185.171.132.0/22 29256 -185.171.136.0/22 34895 -185.171.144.0/22 42313 -185.171.156.0/22 202727 -185.171.160.0/22 49575 -185.171.164.0/22 206930 -185.171.168.0/22 201894 -185.171.172.0/22 206928 -185.171.176.0/23 206927 -185.171.178.0/24 206927 -185.171.179.0/24 719 -185.171.180.0/22 61094 -185.171.184.0/23 3223 -185.171.186.0/24 5588 -185.171.187.0/24 3223 -185.171.196.0/22 3292 -185.171.204.0/22 31400 -185.171.208.0/22 395855 -185.171.212.0/22 206864 -185.171.216.0/23 61157 -185.171.218.0/23 24961 -185.171.220.0/22 48704 -185.171.224.0/22 24940 -185.171.228.0/23 39572 -185.171.232.0/22 206923 -185.171.240.0/22 49544 -185.171.246.0/24 206922 -185.171.248.0/22 12843 -185.171.252.0/22 61161 -185.172.0.0/22 44285 -185.172.4.0/23 39686 -185.172.8.0/22 206917 -185.172.12.0/22 39931 -185.172.16.0/22 30889 -185.172.20.0/22 209706 -185.172.24.0/22 8240 -185.172.28.0/22 203912 -185.172.32.0/22 60405 -185.172.40.0/22 42366 -185.172.44.0/22 8462 -185.172.52.0/22 42366 -185.172.56.0/24 50673 -185.172.58.0/23 61317 -185.172.60.0/22 60203 -185.172.64.0/24 40676 -185.172.65.0/24 13768 -185.172.66.0/24 40676 -185.172.67.0/24 17216 -185.172.68.0/22 62196 -185.172.72.0/22 29256 -185.172.76.0/22 31642 -185.172.80.0/22 56596 -185.172.84.0/23 206910 -185.172.86.0/24 206910 -185.172.87.0/24 60624 -185.172.88.0/22 49981 -185.172.96.0/22 206886 -185.172.100.0/22 29222 -185.172.104.0/22 206909 -185.172.110.0/23 206898 -185.172.112.0/23 9009 -185.172.114.0/24 9009 -185.172.116.0/23 202948 -185.172.118.0/23 206908 -185.172.120.0/22 201798 -185.172.124.0/22 12676 -185.172.128.0/24 50916 -185.172.129.0/24 204154 -185.172.130.0/23 50113 -185.172.132.0/22 49544 -185.172.136.0/22 206905 -185.172.144.0/24 54600 -185.172.145.0/24 395800 -185.172.146.0/24 42216 -185.172.148.0/22 44239 -185.172.152.0/22 206903 -185.172.156.0/22 61053 -185.172.160.0/22 61060 -185.172.164.0/24 62068 -185.172.165.0/24 32181 -185.172.166.0/23 35913 -185.172.168.0/22 35394 -185.172.172.0/22 25780 -185.172.176.0/22 206830 -185.172.180.0/22 49709 -185.172.184.0/22 3255 -185.172.192.0/22 8208 -185.172.196.0/23 61144 -185.172.198.0/23 41913 -185.172.200.0/22 199744 -185.172.204.0/22 208018 -185.172.208.0/22 206579 -185.172.212.0/22 206854 -185.172.216.0/22 206894 -185.172.220.0/22 15879 -185.172.227.0/24 15830 -185.172.228.0/24 206893 -185.172.229.0/24 203459 -185.172.230.0/24 203459 -185.172.231.0/24 206893 -185.172.232.0/22 24904 -185.172.236.0/22 29256 -185.172.240.0/22 206890 -185.172.244.0/22 17072 -185.172.252.0/22 49985 -185.173.0.0/22 8901 -185.173.4.0/22 12935 -185.173.8.0/22 199468 -185.173.12.0/22 61349 -185.173.16.0/23 48112 -185.173.18.0/24 206763 -185.173.19.0/24 48112 -185.173.20.0/23 12859 -185.173.24.0/23 61317 -185.173.26.0/24 61317 -185.173.27.0/24 49546 -185.173.28.0/22 198252 -185.173.32.0/23 61317 -185.173.34.0/24 61317 -185.173.35.0/24 36351 -185.173.36.0/22 208747 -185.173.40.0/22 206879 -185.173.44.0/24 202766 -185.173.45.0/24 207058 -185.173.46.0/24 202766 -185.173.48.0/22 198554 -185.173.52.0/22 21283 -185.173.56.0/24 59451 -185.173.58.0/23 59451 -185.173.60.0/22 42020 -185.173.64.0/22 30914 -185.173.68.0/22 50628 -185.173.72.0/22 58310 -185.173.76.0/22 48152 -185.173.80.0/24 12389 -185.173.83.0/24 44102 -185.173.84.0/22 206867 -185.173.88.0/22 206857 -185.173.92.0/22 57494 -185.173.96.0/22 50628 -185.173.101.0/24 62231 -185.173.104.0/22 59441 -185.173.108.0/22 42366 -185.173.112.0/22 51522 -185.173.116.0/22 31487 -185.173.120.0/22 13285 -185.173.124.0/22 50583 -185.173.132.0/23 206861 -185.173.136.0/22 206876 -185.173.144.0/22 48205 -185.173.148.0/22 201730 -185.173.152.0/22 47983 -185.173.156.0/22 31368 -185.173.160.0/22 49981 -185.173.164.0/22 200807 -185.173.168.0/22 206862 -185.173.172.0/22 29256 -185.173.176.0/22 206873 -185.173.180.0/22 206610 -185.173.184.0/24 395363 -185.173.188.0/22 206561 -185.173.196.0/22 12384 -185.173.200.0/22 42487 -185.173.204.0/22 33983 -185.173.212.0/22 200043 -185.173.216.0/23 206389 -185.173.219.0/24 206389 -185.173.220.0/22 39889 -185.173.224.0/24 19693 -185.173.225.0/24 40065 -185.173.226.0/24 6866 -185.173.227.0/24 20521 -185.173.232.0/23 56611 -185.173.234.0/24 56611 -185.173.235.0/24 57717 -185.173.236.0/24 206789 -185.173.240.0/22 42263 -185.173.244.0/22 60581 -185.173.248.0/22 44489 -185.173.252.0/22 206859 -185.174.0.0/22 202074 -185.174.4.0/23 47630 -185.174.8.0/22 206593 -185.174.12.0/22 197177 -185.174.16.0/22 57389 -185.174.20.0/23 208485 -185.174.22.0/24 34984 -185.174.23.0/24 208485 -185.174.24.0/22 16086 -185.174.28.0/23 51559 -185.174.30.0/24 51559 -185.174.31.0/24 34984 -185.174.32.0/22 206478 -185.174.36.0/24 42931 -185.174.40.0/24 15987 -185.174.48.0/24 29308 -185.174.52.0/22 61217 -185.174.56.0/23 6799 -185.174.59.0/24 6799 -185.174.60.0/24 133219 -185.174.61.0/24 61317 -185.174.62.0/23 61317 -185.174.68.0/24 42926 -185.174.69.0/24 43260 -185.174.70.0/23 43260 -185.174.72.0/23 200548 -185.174.76.0/22 26654 -185.174.80.0/22 206853 -185.174.84.0/22 201098 -185.174.88.0/22 207023 -185.174.96.0/22 21214 -185.174.100.0/22 8100 -185.174.107.0/24 199563 -185.174.108.0/22 62240 -185.174.112.0/22 198187 -185.174.116.0/22 2603 -185.174.120.0/22 57643 -185.174.124.0/22 47973 -185.174.128.0/23 206673 -185.174.130.0/24 35237 -185.174.131.0/24 206673 -185.174.132.0/22 202391 -185.174.136.0/23 50113 -185.174.138.0/24 209355 -185.174.139.0/24 202015 -185.174.140.0/22 206722 -185.174.144.0/24 206544 -185.174.145.0/24 196851 -185.174.146.0/23 196851 -185.174.148.0/24 15404 -185.174.149.0/24 209689 -185.174.150.0/23 12337 -185.174.152.0/23 204873 -185.174.156.0/24 204287 -185.174.157.0/24 47787 -185.174.158.0/24 20860 -185.174.159.0/24 203020 -185.174.160.0/22 206844 -185.174.168.0/23 206712 -185.174.170.0/24 206712 -185.174.171.0/24 206468 -185.174.172.0/22 21100 -185.174.176.0/22 206842 -185.174.180.0/22 47164 -185.174.184.0/22 206841 -185.174.188.0/24 60144 -185.174.189.0/24 48635 -185.174.190.0/23 20559 -185.174.192.0/22 60764 -185.174.196.0/23 206255 -185.174.200.0/22 200645 -185.174.204.0/22 46261 -185.174.208.0/22 206262 -185.174.212.0/24 43160 -185.174.213.0/24 29119 -185.174.214.0/23 201500 -185.174.216.0/22 47302 -185.174.220.0/23 210294 -185.174.224.0/22 16353 -185.174.228.0/22 29256 -185.174.232.0/24 47768 -185.174.233.0/24 12695 -185.174.234.0/24 29066 -185.174.236.0/22 29256 -185.174.240.0/23 34741 -185.174.242.0/24 34741 -185.174.244.0/22 62183 -185.174.250.0/23 8868 -185.174.252.0/22 42366 -185.175.0.0/22 9119 -185.175.4.0/22 38930 -185.175.8.0/23 204668 -185.175.11.0/24 43203 -185.175.12.0/22 15570 -185.175.16.0/22 50147 -185.175.20.0/22 47692 -185.175.24.0/22 206836 -185.175.32.0/22 202940 -185.175.36.0/22 206372 -185.175.40.0/22 8544 -185.175.44.0/22 50340 -185.175.48.0/22 12708 -185.175.52.0/22 29256 -185.175.56.0/22 63473 -185.175.60.0/22 206828 -185.175.64.0/22 2116 -185.175.68.0/23 47254 -185.175.72.0/22 39676 -185.175.76.0/22 50810 -185.175.80.0/22 31252 -185.175.84.0/22 44984 -185.175.92.0/24 44916 -185.175.93.0/24 35582 -185.175.94.0/23 43361 -185.175.96.0/22 44808 -185.175.100.0/24 47582 -185.175.101.0/24 206819 -185.175.102.0/23 206819 -185.175.104.0/22 60806 -185.175.108.0/22 42254 -185.175.112.0/22 59395 -185.175.116.0/22 206756 -185.175.120.0/22 202727 -185.175.127.0/24 206816 -185.175.128.0/22 44705 -185.175.136.0/22 62240 -185.175.144.0/22 9105 -185.175.148.0/22 57119 -185.175.152.0/22 201942 -185.175.156.0/24 20473 -185.175.157.0/24 57494 -185.175.158.0/23 57494 -185.175.160.0/22 44459 -185.175.168.0/22 41736 -185.175.180.0/22 50998 -185.175.184.0/22 1930 -185.175.200.0/22 48635 -185.175.204.0/22 26380 -185.175.208.0/24 25369 -185.175.209.0/24 21413 -185.175.210.0/23 42366 -185.175.212.0/22 34695 -185.175.216.0/22 62392 -185.175.220.0/22 204567 -185.175.224.0/22 9009 -185.175.228.0/22 133378 -185.175.232.0/22 42366 -185.175.236.0/22 49223 -185.175.244.0/22 25385 -185.175.252.0/22 35444 -185.176.0.0/22 47720 -185.176.4.0/22 29119 -185.176.8.0/22 50926 -185.176.12.0/22 42227 -185.176.16.0/22 197965 -185.176.24.0/24 201341 -185.176.25.0/24 202984 -185.176.27.0/24 204428 -185.176.28.0/22 34244 -185.176.32.0/22 50810 -185.176.36.0/22 206711 -185.176.40.0/22 44476 -185.176.48.0/22 21769 -185.176.52.0/22 1613 -185.176.56.0/22 206635 -185.176.64.0/22 206795 -185.176.68.0/22 206833 -185.176.72.0/22 29405 -185.176.76.0/22 206798 -185.176.80.0/22 206797 -185.176.84.0/22 206787 -185.176.88.0/23 46261 -185.176.90.0/24 47987 -185.176.91.0/24 46261 -185.176.96.0/22 51546 -185.176.100.0/23 206746 -185.176.102.0/24 39122 -185.176.104.0/22 200968 -185.176.108.0/22 25133 -185.176.116.0/24 30823 -185.176.117.0/24 48798 -185.176.119.0/24 30823 -185.176.120.0/22 206793 -185.176.124.0/22 197529 -185.176.128.0/22 30900 -185.176.132.0/22 7850 -185.176.136.0/22 206784 -185.176.140.0/22 39647 -185.176.144.0/22 57256 -185.176.148.0/22 206782 -185.176.152.0/22 47692 -185.176.160.0/22 34773 -185.176.164.0/22 43193 -185.176.168.0/22 44297 -185.176.172.0/22 16353 -185.176.176.0/22 44407 -185.176.180.0/22 206487 -185.176.184.0/22 61146 -185.176.188.0/22 201942 -185.176.196.0/22 51840 -185.176.200.0/22 47406 -185.176.204.0/22 207096 -185.176.208.0/22 48847 -185.176.212.0/22 2119 -185.176.216.0/22 44851 -185.176.220.0/22 39845 -185.176.224.0/22 29222 -185.176.228.0/22 42366 -185.176.232.0/24 206568 -185.176.235.0/24 206568 -185.176.236.0/22 51768 -185.176.240.0/23 206773 -185.176.244.0/22 206774 -185.176.248.0/22 41000 -185.176.252.0/22 42366 -185.177.0.0/22 51346 -185.177.4.0/22 206759 -185.177.8.0/22 44452 -185.177.16.0/22 206765 -185.177.20.0/24 57878 -185.177.21.0/24 31400 -185.177.22.0/24 54600 -185.177.23.0/24 50673 -185.177.24.0/22 18013 -185.177.28.0/22 43272 -185.177.40.0/23 202227 -185.177.42.0/23 204175 -185.177.44.0/24 47891 -185.177.46.0/23 174 -185.177.48.0/22 51840 -185.177.52.0/22 17012 -185.177.56.0/23 206755 -185.177.59.0/24 44901 -185.177.60.0/22 29222 -185.177.64.0/23 43259 -185.177.66.0/23 5089 -185.177.68.0/22 208282 -185.177.73.0/24 200509 -185.177.74.0/23 200509 -185.177.76.0/22 9009 -185.177.81.0/24 9009 -185.177.92.0/22 39572 -185.177.96.0/22 43727 -185.177.100.0/22 206121 -185.177.104.0/22 41965 -185.177.112.0/24 49755 -185.177.113.0/24 59504 -185.177.114.0/24 57045 -185.177.115.0/24 59504 -185.177.116.0/24 40676 -185.177.117.0/24 35913 -185.177.118.0/23 35913 -185.177.120.0/22 57030 -185.177.124.0/22 49981 -185.177.129.0/24 198018 -185.177.130.0/23 198018 -185.177.132.0/22 206743 -185.177.136.0/22 207176 -185.177.140.0/22 51492 -185.177.144.0/22 206281 -185.177.148.0/23 62240 -185.177.150.0/24 61272 -185.177.151.0/24 43289 -185.177.152.0/22 201446 -185.177.156.0/22 200645 -185.177.160.0/22 206606 -185.177.164.0/22 197328 -185.177.168.0/22 3339 -185.177.176.0/23 206741 -185.177.180.0/22 41157 -185.177.184.0/22 60924 -185.177.188.0/22 51784 -185.177.192.0/22 206738 -185.177.196.0/22 206657 -185.177.200.0/22 206490 -185.177.204.0/22 29670 -185.177.212.0/22 206737 -185.177.218.0/23 57494 -185.177.220.0/22 60747 -185.177.224.0/22 35665 -185.177.228.0/24 393960 -185.177.229.0/24 61003 -185.177.230.0/23 36352 -185.177.232.0/23 204834 -185.177.234.0/23 56503 -185.177.236.0/22 9009 -185.177.240.0/22 6876 -185.177.244.0/22 206693 -185.177.248.0/22 206196 -185.178.4.0/22 20956 -185.178.8.0/22 206732 -185.178.12.0/22 13097 -185.178.16.0/22 202813 -185.178.20.0/22 206517 -185.178.28.0/22 206508 -185.178.32.0/22 42366 -185.178.36.0/22 44307 -185.178.44.0/22 9123 -185.178.48.0/23 53889 -185.178.50.0/24 63008 -185.178.51.0/24 53889 -185.178.52.0/22 22822 -185.178.56.0/22 43260 -185.178.60.0/22 206662 -185.178.64.0/23 47490 -185.178.66.0/23 39485 -185.178.68.0/22 60110 -185.178.72.0/22 42366 -185.178.80.0/22 201453 -185.178.84.0/22 200999 -185.178.88.0/22 203872 -185.178.92.0/22 206701 -185.178.96.0/22 20592 -185.178.100.0/22 34695 -185.178.104.0/23 44243 -185.178.107.0/24 44072 -185.178.108.0/22 20676 -185.178.112.0/22 31027 -185.178.120.0/22 21040 -185.178.132.0/22 206709 -185.178.136.0/22 202813 -185.178.140.0/22 12552 -185.178.144.0/22 55424 -185.178.148.0/22 29256 -185.178.156.0/22 21182 -185.178.160.0/22 206702 -185.178.168.0/24 29119 -185.178.169.0/24 202375 -185.178.170.0/24 29119 -185.178.172.0/22 206548 -185.178.176.0/22 206697 -185.178.180.0/22 206377 -185.178.184.0/23 203500 -185.178.186.0/24 203500 -185.178.187.0/24 206398 -185.178.188.0/22 31667 -185.178.192.0/22 207143 -185.178.200.0/22 36236 -185.178.204.0/22 3327 -185.178.208.0/23 57724 -185.178.210.0/24 57724 -185.178.211.0/24 49612 -185.178.212.0/22 13045 -185.178.216.0/23 9009 -185.178.218.0/24 21267 -185.178.219.0/24 44611 -185.178.220.0/22 206692 -185.178.224.0/23 60435 -185.178.226.0/24 60435 -185.178.228.0/22 8708 -185.178.232.0/22 50673 -185.178.236.0/22 50247 -185.178.243.0/24 34984 -185.178.244.0/22 39728 -185.178.248.0/23 48934 -185.178.250.0/24 48934 -185.178.252.0/22 41849 -185.179.0.0/24 44020 -185.179.1.0/24 44199 -185.179.2.0/23 44199 -185.179.8.0/22 44173 -185.179.12.0/22 203872 -185.179.16.0/22 12620 -185.179.20.0/22 206682 -185.179.24.0/22 59674 -185.179.28.0/22 206262 -185.179.32.0/23 207167 -185.179.34.0/24 208143 -185.179.35.0/24 201922 -185.179.36.0/22 57573 -185.179.42.0/24 201255 -185.179.43.0/24 206309 -185.179.44.0/23 206677 -185.179.47.0/24 206677 -185.179.48.0/22 52035 -185.179.56.0/23 206674 -185.179.58.0/23 205871 -185.179.60.0/22 206672 -185.179.64.0/22 207223 -185.179.68.0/23 47171 -185.179.72.0/22 30855 -185.179.76.0/22 206669 -185.179.82.0/23 12406 -185.179.84.0/22 203203 -185.179.92.0/22 43940 -185.179.104.0/22 766 -185.179.116.0/22 58003 -185.179.120.0/22 43872 -185.179.124.0/22 206668 -185.179.128.0/23 206667 -185.179.130.0/24 206667 -185.179.132.0/22 206651 -185.179.136.0/23 35573 -185.179.139.0/24 35573 -185.179.140.0/22 206642 -185.179.144.0/24 24823 -185.179.148.0/22 44108 -185.179.152.0/22 42366 -185.179.156.0/22 50937 -185.179.162.0/24 31514 -185.179.164.0/22 20791 -185.179.168.0/22 44090 -185.179.172.0/22 60172 -185.179.176.0/22 44063 -185.179.180.0/22 204764 -185.179.184.0/22 206276 -185.179.188.0/24 50340 -185.179.189.0/24 44094 -185.179.190.0/24 50340 -185.179.191.0/24 44094 -185.179.192.0/22 206656 -185.179.196.0/24 59627 -185.179.197.0/24 57182 -185.179.199.0/24 43676 -185.179.200.0/22 49544 -185.179.204.0/22 62838 -185.179.208.0/22 60981 -185.179.212.0/22 13121 -185.179.216.0/22 49725 -185.179.220.0/22 200645 -185.179.224.0/24 43740 -185.179.228.0/22 201942 -185.179.232.0/22 201942 -185.179.236.0/23 39324 -185.179.238.0/23 29422 -185.179.243.0/24 206650 -185.179.248.0/24 206100 -185.179.249.0/24 30536 -185.179.250.0/24 30536 -185.179.252.0/22 20860 -185.180.0.0/24 204332 -185.180.1.0/24 197307 -185.180.2.0/23 197307 -185.180.8.0/22 52438 -185.180.12.0/22 60068 -185.180.16.0/22 25820 -185.180.20.0/22 15547 -185.180.24.0/22 44974 -185.180.28.0/22 15924 -185.180.32.0/22 206078 -185.180.36.0/22 206652 -185.180.40.0/22 50340 -185.180.44.0/23 209704 -185.180.48.0/22 27471 -185.180.52.0/22 49100 -185.180.56.0/22 48302 -185.180.60.0/22 206641 -185.180.64.0/22 29695 -185.180.72.0/22 47169 -185.180.76.0/22 21108 -185.180.80.0/22 206608 -185.180.84.0/22 206505 -185.180.88.0/22 57389 -185.180.92.0/23 25540 -185.180.96.0/22 31477 -185.180.100.0/22 202940 -185.180.108.0/24 202423 -185.180.110.0/23 9009 -185.180.112.0/22 206640 -185.180.120.0/22 206598 -185.180.124.0/22 9009 -185.180.128.0/22 34078 -185.180.136.0/23 39774 -185.180.148.0/22 50266 -185.180.152.0/22 203872 -185.180.156.0/22 31742 -185.180.160.0/22 44265 -185.180.168.0/23 57198 -185.180.170.0/24 57198 -185.180.172.0/22 206637 -185.180.180.0/22 51580 -185.180.184.0/22 60670 -185.180.188.0/22 41349 -185.180.192.0/22 202527 -185.180.196.0/22 14576 -185.180.200.0/22 205702 -185.180.204.0/22 198414 -185.180.208.0/22 43758 -185.180.212.0/22 25231 -185.180.216.0/23 209888 -185.180.218.0/23 24867 -185.180.220.0/22 49981 -185.180.228.0/24 132779 -185.180.229.0/24 206530 -185.180.230.0/23 50113 -185.180.232.0/22 200665 -185.180.236.0/22 201296 -185.180.240.0/22 42090 -185.180.244.0/22 202727 -185.180.248.0/22 49776 -185.180.252.0/22 57131 -185.181.0.0/22 51815 -185.181.4.0/22 35625 -185.181.8.0/24 60781 -185.181.9.0/24 62240 -185.181.10.0/24 47447 -185.181.11.0/24 62240 -185.181.12.0/22 206620 -185.181.16.0/22 48964 -185.181.20.0/22 206624 -185.181.24.0/22 15465 -185.181.28.0/22 1241 -185.181.32.0/22 201942 -185.181.36.0/22 49223 -185.181.40.0/22 62013 -185.181.44.0/22 51546 -185.181.48.0/22 62013 -185.181.52.0/22 206611 -185.181.57.0/24 200918 -185.181.60.0/22 56655 -185.181.64.0/22 43977 -185.181.68.0/22 13092 -185.181.72.0/22 39647 -185.181.76.0/22 206619 -185.181.80.0/22 200665 -185.181.84.0/22 51088 -185.181.92.0/22 206588 -185.181.96.0/22 43969 -185.181.100.0/22 9009 -185.181.104.0/22 48596 -185.181.108.0/22 29256 -185.181.112.0/22 42366 -185.181.116.0/22 29017 -185.181.120.0/22 42366 -185.181.124.0/22 20860 -185.181.128.0/21 197328 -185.181.140.0/22 39591 -185.181.144.0/24 39097 -185.181.148.0/22 12564 -185.181.152.0/21 44407 -185.181.160.0/22 29222 -185.181.164.0/24 34665 -185.181.165.0/24 50673 -185.181.166.0/24 44673 -185.181.167.0/24 208433 -185.181.168.0/24 57395 -185.181.170.0/23 57395 -185.181.172.0/22 47931 -185.181.176.0/24 206591 -185.181.179.0/24 206591 -185.181.180.0/22 206596 -185.181.188.0/24 64427 -185.181.189.0/24 8859 -185.181.190.0/23 8859 -185.181.192.0/22 13246 -185.181.196.0/22 61323 -185.181.203.0/24 48234 -185.181.204.0/22 197352 -185.181.208.0/22 205399 -185.181.212.0/22 206605 -185.181.216.0/24 65552 -185.181.217.0/24 12552 -185.181.218.0/23 65552 -185.181.220.0/22 203953 -185.181.224.0/22 206549 -185.181.228.0/23 60602 -185.181.230.0/24 60602 -185.181.231.0/24 206678 -185.181.232.0/22 206475 -185.181.236.0/22 206602 -185.181.240.0/24 5588 -185.181.243.0/24 9009 -185.181.244.0/22 35048 -185.181.248.0/22 50647 -185.181.252.0/22 21396 -185.182.0.0/21 8530 -185.182.8.0/23 46261 -185.182.10.0/23 35913 -185.182.20.0/22 50935 -185.182.24.0/24 13030 -185.182.25.0/24 42346 -185.182.28.0/24 48588 -185.182.32.0/22 42263 -185.182.39.0/24 10753 -185.182.40.0/22 50133 -185.182.44.0/22 42366 -185.182.48.0/23 25369 -185.182.50.0/24 9009 -185.182.51.0/24 62523 -185.182.52.0/22 201508 -185.182.56.0/22 48635 -185.182.60.0/24 395800 -185.182.61.0/24 43308 -185.182.62.0/24 40065 -185.182.63.0/24 54600 -185.182.64.0/22 53889 -185.182.68.0/22 43545 -185.182.72.0/22 62455 -185.182.76.0/22 202940 -185.182.80.0/22 21159 -185.182.84.0/23 65552 -185.182.86.0/24 12552 -185.182.87.0/24 65552 -185.182.88.0/22 61323 -185.182.92.0/22 41563 -185.182.96.0/22 206589 -185.182.100.0/22 21310 -185.182.108.0/24 2683 -185.182.112.0/24 206550 -185.182.116.0/22 39636 -185.182.120.0/22 47975 -185.182.124.0/22 50564 -185.182.128.0/22 9009 -185.182.132.0/22 2611 -185.182.136.0/24 8376 -185.182.137.0/24 206553 -185.182.138.0/24 206553 -185.182.139.0/24 8376 -185.182.142.0/24 43988 -185.182.144.0/23 43924 -185.182.148.0/22 206584 -185.182.152.0/22 51984 -185.182.160.0/22 47267 -185.182.164.0/22 6679 -185.182.168.0/22 42687 -185.182.172.0/22 197859 -185.182.176.0/22 206571 -185.182.184.0/22 46261 -185.182.188.0/24 57844 -185.182.190.0/23 57844 -185.182.192.0/22 49981 -185.182.196.0/22 29177 -185.182.200.0/23 206576 -185.182.204.0/22 60111 -185.182.208.0/22 50877 -185.182.212.0/22 57389 -185.182.220.0/22 50810 -185.182.224.0/22 5582 -185.182.228.0/22 20860 -185.182.232.0/22 42366 -185.182.236.0/22 206556 -185.182.240.0/22 44459 -185.182.248.0/22 47796 -185.182.252.0/22 20900 -185.183.0.0/22 197033 -185.183.5.0/24 5602 -185.183.7.0/24 8816 -185.183.8.0/22 206566 -185.183.12.0/22 43886 -185.183.16.0/22 201453 -185.183.20.0/22 43872 -185.183.24.0/22 48484 -185.183.28.0/22 52129 -185.183.32.0/22 49981 -185.183.36.0/22 206559 -185.183.40.0/22 60111 -185.183.44.0/23 21211 -185.183.48.0/22 39442 -185.183.52.0/22 40999 -185.183.56.0/22 43853 -185.183.60.0/22 44407 -185.183.64.0/22 44407 -185.183.72.0/22 43542 -185.183.76.0/22 201776 -185.183.80.0/22 209308 -185.183.84.0/24 40065 -185.183.85.0/24 9009 -185.183.86.0/24 205220 -185.183.87.0/24 35913 -185.183.88.0/22 206943 -185.183.92.0/22 35586 -185.183.96.0/22 60117 -185.183.100.0/22 13037 -185.183.104.0/22 9009 -185.183.108.0/23 13249 -185.183.110.0/23 35004 -185.183.112.0/22 60350 -185.183.116.0/22 206537 -185.183.120.0/22 205820 -185.183.126.0/23 205790 -185.183.128.0/22 64436 -185.183.132.0/22 35435 -185.183.136.0/22 209308 -185.183.140.0/22 50535 -185.183.144.0/22 12552 -185.183.152.0/22 12552 -185.183.156.0/22 197540 -185.183.160.0/22 206766 -185.183.164.0/22 34984 -185.183.168.0/22 43677 -185.183.174.0/23 43797 -185.183.176.0/22 42366 -185.183.180.0/23 200064 -185.183.182.0/24 33182 -185.183.184.0/22 206529 -185.183.192.0/22 13030 -185.183.196.0/23 51952 -185.183.202.0/23 206521 -185.183.208.0/22 206525 -185.183.212.0/22 207155 -185.183.216.0/22 204371 -185.183.220.0/22 62412 -185.183.224.0/23 61064 -185.183.226.0/23 206454 -185.183.228.0/23 36924 -185.183.232.0/22 43653 -185.183.236.0/22 33923 -185.183.240.0/22 41202 -185.183.244.0/22 43685 -185.183.248.0/22 206311 -185.183.252.0/22 44407 -185.184.0.0/22 50564 -185.184.4.0/22 44407 -185.184.8.0/23 204995 -185.184.10.0/24 203690 -185.184.11.0/24 204995 -185.184.12.0/22 206522 -185.184.16.0/22 61365 -185.184.20.0/22 198398 -185.184.24.0/24 60721 -185.184.25.0/24 43260 -185.184.26.0/23 43260 -185.184.32.0/22 43657 -185.184.44.0/24 206520 -185.184.52.0/24 51477 -185.184.53.0/24 64429 -185.184.56.0/22 206504 -185.184.62.0/23 34674 -185.184.64.0/22 50377 -185.184.68.0/22 49683 -185.184.72.0/22 58291 -185.184.77.0/24 45027 -185.184.78.0/24 45027 -185.184.79.0/24 49505 -185.184.84.0/23 206519 -185.184.86.0/23 48847 -185.184.88.0/22 62412 -185.184.92.0/22 43809 -185.184.100.0/22 198333 -185.184.104.0/22 29256 -185.184.108.0/22 204973 -185.184.112.0/23 206417 -185.184.116.0/22 28686 -185.184.120.0/22 6908 -185.184.124.0/24 198704 -185.184.128.0/22 201786 -185.184.132.0/22 3257 -185.184.136.0/22 58088 -185.184.140.0/24 51561 -185.184.141.0/24 52423 -185.184.142.0/23 52423 -185.184.144.0/22 21211 -185.184.148.0/22 16030 -185.184.152.0/22 38719 -185.184.156.0/23 62217 -185.184.158.0/24 62217 -185.184.159.0/24 39535 -185.184.160.0/22 16097 -185.184.164.0/22 205918 -185.184.168.0/22 6876 -185.184.172.0/22 29119 -185.184.176.0/22 6830 -185.184.181.0/24 206329 -185.184.182.0/24 206007 -185.184.184.0/22 206851 -185.184.188.0/22 51088 -185.184.196.0/24 200697 -185.184.197.0/24 21277 -185.184.198.0/23 197882 -185.184.200.0/22 42366 -185.184.204.0/22 39686 -185.184.208.0/22 42926 -185.184.212.0/22 13003 -185.184.217.0/24 198394 -185.184.218.0/24 198247 -185.184.219.0/24 198381 -185.184.220.0/23 38197 -185.184.222.0/24 6233 -185.184.223.0/24 57695 -185.184.224.0/22 206441 -185.184.232.0/22 43594 -185.184.236.0/22 45014 -185.184.240.0/24 34060 -185.184.241.0/24 203145 -185.184.244.0/22 202940 -185.184.248.0/24 39451 -185.184.252.0/22 197013 -185.185.0.0/22 201776 -185.185.4.0/22 34659 -185.185.8.0/22 34659 -185.185.12.0/24 39572 -185.185.16.0/22 62334 -185.185.20.0/22 30767 -185.185.24.0/22 24940 -185.185.28.0/22 21769 -185.185.32.0/22 206492 -185.185.36.0/22 29119 -185.185.40.0/23 40676 -185.185.42.0/24 40676 -185.185.43.0/24 210171 -185.185.44.0/22 206498 -185.185.52.0/22 204463 -185.185.56.0/22 48614 -185.185.60.0/22 28746 -185.185.64.0/22 206496 -185.185.68.0/22 35278 -185.185.72.0/22 29256 -185.185.76.0/23 206483 -185.185.78.0/24 206483 -185.185.79.0/24 209635 -185.185.80.0/22 46261 -185.185.84.0/23 58040 -185.185.86.0/24 58040 -185.185.88.0/23 206491 -185.185.90.0/23 51790 -185.185.92.0/24 206488 -185.185.93.0/24 43402 -185.185.94.0/23 43402 -185.185.96.0/22 206418 -185.185.100.0/22 206486 -185.185.104.0/22 35301 -185.185.111.0/24 21396 -185.185.113.0/24 58127 -185.185.114.0/23 58127 -185.185.116.0/22 42845 -185.185.120.0/22 57091 -185.185.124.0/24 23470 -185.185.126.0/23 33182 -185.185.128.0/22 31349 -185.185.132.0/22 206446 -185.185.136.0/22 8920 -185.185.140.0/22 34602 -185.185.144.0/22 9009 -185.185.148.0/22 206673 -185.185.152.0/22 205599 -185.185.156.0/22 60597 -185.185.160.0/22 205039 -185.185.164.0/22 31673 -185.185.168.0/22 204779 -185.185.174.0/24 206471 -185.185.176.0/22 206472 -185.185.180.0/22 51522 -185.185.184.0/22 52165 -185.185.188.0/22 205854 -185.185.192.0/22 48145 -185.185.196.0/22 206318 -185.185.200.0/22 13030 -185.185.204.0/22 208693 -185.185.208.0/22 206469 -185.185.212.0/22 49544 -185.185.216.0/22 204007 -185.185.220.0/22 29256 -185.185.225.0/24 206467 -185.185.227.0/24 206467 -185.185.228.0/23 6696 -185.185.232.0/24 60721 -185.185.233.0/24 43260 -185.185.234.0/24 43260 -185.185.235.0/24 209737 -185.185.236.0/22 206466 -185.185.240.0/22 43415 -185.185.244.0/22 43414 -185.185.248.0/23 52423 -185.185.250.0/24 9009 -185.185.251.0/24 23470 -185.185.252.0/22 43409 -185.186.0.0/22 45036 -185.186.5.0/24 34640 -185.186.8.0/24 42615 -185.186.9.0/24 200639 -185.186.10.0/24 39335 -185.186.11.0/24 24076 -185.186.16.0/23 57723 -185.186.18.0/24 57723 -185.186.19.0/24 206421 -185.186.20.0/22 24806 -185.186.24.0/24 12586 -185.186.28.0/22 35394 -185.186.32.0/22 34244 -185.186.36.0/22 200918 -185.186.40.0/22 206381 -185.186.44.0/22 206145 -185.186.48.0/22 43395 -185.186.52.0/23 206397 -185.186.54.0/24 206397 -185.186.55.0/24 60117 -185.186.56.0/22 35706 -185.186.60.0/22 206461 -185.186.64.0/24 202562 -185.186.65.0/24 7489 -185.186.66.0/24 205203 -185.186.67.0/24 204994 -185.186.68.0/22 206460 -185.186.76.0/24 9009 -185.186.77.0/24 20860 -185.186.78.0/24 49770 -185.186.79.0/24 136258 -185.186.80.0/22 206262 -185.186.84.0/22 206456 -185.186.88.0/22 57809 -185.186.92.0/22 31617 -185.186.96.0/22 42968 -185.186.104.0/23 31404 -185.186.108.0/22 206449 -185.186.116.0/22 206825 -185.186.120.0/22 60316 -185.186.128.0/24 206353 -185.186.129.0/24 206382 -185.186.130.0/23 206382 -185.186.132.0/22 35132 -185.186.136.0/22 29687 -185.186.140.0/22 204490 -185.186.146.0/23 40065 -185.186.148.0/22 59889 -185.186.152.0/22 43372 -185.186.156.0/22 206432 -185.186.160.0/22 206438 -185.186.164.0/23 15404 -185.186.168.0/22 198066 -185.186.172.0/22 58075 -185.186.176.0/22 51336 -185.186.180.0/22 202599 -185.186.184.0/22 60580 -185.186.188.0/22 206430 -185.186.192.0/22 25341 -185.186.196.0/22 206429 -185.186.205.0/24 206350 -185.186.206.0/23 206350 -185.186.208.0/22 206428 -185.186.212.0/23 50083 -185.186.214.0/24 204120 -185.186.215.0/24 39923 -185.186.216.0/22 44033 -185.186.220.0/24 42442 -185.186.222.0/24 8220 -185.186.224.0/22 62365 -185.186.228.0/22 206399 -185.186.232.0/22 6789 -185.186.240.0/24 203684 -185.186.241.0/24 16235 -185.186.242.0/24 42163 -185.186.243.0/24 206388 -185.186.244.0/24 35415 -185.186.245.0/24 40824 -185.186.246.0/24 35415 -185.186.247.0/24 40824 -185.186.248.0/22 206420 -185.186.252.0/22 206414 -185.187.0.0/22 35444 -185.187.4.0/22 198252 -185.187.12.0/24 48635 -185.187.16.0/22 206416 -185.187.24.0/22 206220 -185.187.28.0/22 206002 -185.187.32.0/22 8551 -185.187.40.0/22 199324 -185.187.44.0/23 206868 -185.187.46.0/23 50352 -185.187.48.0/23 60932 -185.187.50.0/24 58152 -185.187.51.0/24 3177 -185.187.52.0/22 206412 -185.187.56.0/22 41847 -185.187.63.0/24 47764 -185.187.64.0/24 41412 -185.187.68.0/22 206404 -185.187.72.0/22 62214 -185.187.80.0/22 43332 -185.187.84.0/23 60014 -185.187.86.0/23 206325 -185.187.88.0/24 41257 -185.187.90.0/23 50340 -185.187.92.0/22 206406 -185.187.96.0/22 42947 -185.187.100.0/22 58075 -185.187.107.0/24 43239 -185.187.108.0/22 199752 -185.187.112.0/24 205971 -185.187.116.0/24 24931 -185.187.118.0/24 206317 -185.187.119.0/24 16509 -185.187.120.0/22 15576 -185.187.124.0/22 41038 -185.187.132.0/23 394434 -185.187.136.0/23 61094 -185.187.138.0/24 43023 -185.187.144.0/22 199213 -185.187.152.0/24 198412 -185.187.154.0/23 62240 -185.187.160.0/22 42316 -185.187.164.0/22 201699 -185.187.168.0/22 46261 -185.187.172.0/22 59919 -185.187.176.0/24 3225 -185.187.177.0/24 48695 -185.187.178.0/24 8452 -185.187.183.0/24 202766 -185.187.184.0/24 44565 -185.187.185.0/24 50941 -185.187.192.0/22 29256 -185.187.196.0/24 49905 -185.187.197.0/24 43170 -185.187.198.0/24 41831 -185.187.199.0/24 50340 -185.187.204.0/24 206391 -185.187.213.0/24 13213 -185.187.214.0/23 13213 -185.187.216.0/22 206310 -185.187.220.0/22 31543 -185.187.224.0/22 198066 -185.187.228.0/22 15623 -185.187.232.0/22 46261 -185.187.240.0/24 20860 -185.187.241.0/24 207083 -185.187.242.0/24 25369 -185.187.244.0/22 206720 -185.187.248.0/22 8462 -185.187.252.0/23 29024 -185.188.0.0/23 206063 -185.188.2.0/23 205660 -185.188.4.0/24 203125 -185.188.5.0/24 131477 -185.188.6.0/24 35913 -185.188.8.0/24 29119 -185.188.9.0/24 205499 -185.188.10.0/23 205499 -185.188.12.0/22 206527 -185.188.16.0/22 50129 -185.188.20.0/22 39642 -185.188.24.0/22 206380 -185.188.28.0/24 16509 -185.188.32.0/23 43304 -185.188.34.0/24 43304 -185.188.35.0/24 208175 -185.188.36.0/22 43231 -185.188.44.0/22 206291 -185.188.48.0/22 197659 -185.188.52.0/22 51776 -185.188.56.0/23 51920 -185.188.58.0/24 51920 -185.188.60.0/24 204287 -185.188.61.0/24 43578 -185.188.62.0/23 203020 -185.188.64.0/24 3320 -185.188.65.0/24 8767 -185.188.68.0/22 8819 -185.188.74.0/24 51167 -185.188.75.0/24 47692 -185.188.76.0/22 21769 -185.188.84.0/22 205829 -185.188.88.0/22 42924 -185.188.92.0/22 205225 -185.188.96.0/22 50477 -185.188.100.0/22 206270 -185.188.104.0/23 43211 -185.188.108.0/22 60522 -185.188.112.0/22 42163 -185.188.116.0/22 206369 -185.188.120.0/22 43341 -185.188.124.0/22 206376 -185.188.128.0/22 206375 -185.188.132.0/23 206374 -185.188.136.0/22 206322 -185.188.140.0/24 51030 -185.188.144.0/22 42926 -185.188.148.0/22 206366 -185.188.152.0/22 9044 -185.188.156.0/23 8218 -185.188.158.0/23 197816 -185.188.160.0/22 197816 -185.188.164.0/22 57643 -185.188.168.0/22 197816 -185.188.172.0/22 34790 -185.188.176.0/22 206342 -185.188.181.0/24 43590 -185.188.182.0/23 50113 -185.188.188.0/23 5578 -185.188.190.0/24 206194 -185.188.191.0/24 5578 -185.188.192.0/22 39248 -185.188.196.0/22 205747 -185.188.200.0/22 16097 -185.188.204.0/22 33988 -185.188.208.0/22 206265 -185.188.212.0/22 206930 -185.188.216.0/22 206358 -185.188.232.0/22 12390 -185.188.236.0/22 50925 -185.188.244.0/22 206339 -185.188.248.0/22 46261 -185.188.252.0/22 206352 -185.189.0.0/22 42366 -185.189.4.0/22 6830 -185.189.12.0/22 50113 -185.189.16.0/22 206333 -185.189.22.0/23 206296 -185.189.24.0/23 35913 -185.189.27.0/24 33182 -185.189.28.0/22 41001 -185.189.32.0/22 206344 -185.189.36.0/22 48095 -185.189.40.0/22 207162 -185.189.44.0/22 48095 -185.189.48.0/22 206170 -185.189.52.0/24 15924 -185.189.53.0/24 208821 -185.189.54.0/24 208821 -185.189.55.0/24 34984 -185.189.56.0/23 49683 -185.189.60.0/22 201127 -185.189.64.0/22 201942 -185.189.68.0/22 39572 -185.189.80.0/22 48339 -185.189.84.0/23 206279 -185.189.88.0/23 205015 -185.189.90.0/24 42183 -185.189.91.0/24 205015 -185.189.92.0/22 198605 -185.189.100.0/22 47895 -185.189.104.0/22 39647 -185.189.108.0/22 206331 -185.189.112.0/22 9009 -185.189.116.0/22 204591 -185.189.120.0/22 64413 -185.189.124.0/22 49601 -185.189.128.0/22 206328 -185.189.132.0/22 51783 -185.189.136.0/22 199475 -185.189.140.0/22 12897 -185.189.144.0/22 206324 -185.189.148.0/22 51395 -185.189.156.0/22 39104 -185.189.160.0/22 55720 -185.189.165.0/24 41220 -185.189.166.0/24 51842 -185.189.167.0/24 49505 -185.189.168.0/22 39464 -185.189.172.0/23 199727 -185.189.174.0/24 199727 -185.189.176.0/22 48146 -185.189.180.0/24 49544 -185.189.183.0/24 49544 -185.189.184.0/24 204606 -185.189.185.0/24 59497 -185.189.186.0/23 59497 -185.189.188.0/22 61047 -185.189.192.0/24 61276 -185.189.193.0/24 44149 -185.189.194.0/24 39697 -185.189.195.0/24 50340 -185.189.196.0/22 41922 -185.189.200.0/22 202241 -185.189.204.0/22 41385 -185.189.208.0/23 51142 -185.189.210.0/23 57743 -185.189.212.0/22 206319 -185.189.216.0/22 49016 -185.189.220.0/22 200548 -185.189.224.0/22 48146 -185.189.228.0/22 24940 -185.189.236.0/22 200069 -185.189.240.0/22 55720 -185.189.248.0/22 206289 -185.189.252.0/23 57186 -185.189.254.0/24 12389 -185.189.255.0/24 201706 -185.190.0.0/22 39775 -185.190.7.0/24 42889 -185.190.8.0/22 12956 -185.190.16.0/22 134094 -185.190.20.0/22 43343 -185.190.28.0/22 12812 -185.190.40.0/22 48043 -185.190.44.0/23 35575 -185.190.46.0/24 35575 -185.190.47.0/24 200876 -185.190.48.0/23 47692 -185.190.50.0/24 47692 -185.190.52.0/22 196954 -185.190.56.0/22 46261 -185.190.64.0/22 35055 -185.190.68.0/22 206303 -185.190.72.0/22 205892 -185.190.76.0/22 206298 -185.190.80.0/24 52423 -185.190.81.0/24 134176 -185.190.82.0/24 43126 -185.190.83.0/24 133480 -185.190.86.0/23 34762 -185.190.92.0/22 58738 -185.190.96.0/22 34909 -185.190.100.0/22 206276 -185.190.104.0/22 43228 -185.190.108.0/22 48846 -185.190.112.0/22 206287 -185.190.116.0/22 48399 -185.190.120.0/22 206295 -185.190.124.0/22 205678 -185.190.128.0/22 31463 -185.190.132.0/22 29170 -185.190.136.0/22 207132 -185.190.140.0/22 46261 -185.190.144.0/22 12552 -185.190.148.0/23 205957 -185.190.150.0/24 210092 -185.190.151.0/24 205513 -185.190.152.0/22 8400 -185.190.156.0/22 205703 -185.190.160.0/22 206135 -185.190.164.0/23 39294 -185.190.166.0/24 39294 -185.190.168.0/22 20741 -185.190.172.0/22 43516 -185.190.176.0/22 206268 -185.190.180.0/23 206269 -185.190.182.0/23 205922 -185.190.184.0/22 25880 -185.190.189.0/24 47328 -185.190.192.0/22 206266 -185.190.196.0/22 60255 -185.190.200.0/22 200948 -185.190.204.0/22 60277 -185.190.208.0/22 206207 -185.190.212.0/24 6830 -185.190.213.0/24 6663 -185.190.216.0/22 205284 -185.190.220.0/22 39560 -185.190.224.0/22 26935 -185.190.228.0/22 34868 -185.190.232.0/22 16298 -185.190.236.0/22 42366 -185.190.240.0/22 34511 -185.190.244.0/22 206261 -185.190.248.0/22 43129 -185.190.252.0/23 206280 -185.190.254.0/24 203936 -185.190.255.0/24 206280 -185.191.0.0/22 49981 -185.191.4.0/22 206278 -185.191.8.0/22 51681 -185.191.12.0/22 49250 -185.191.16.0/22 196743 -185.191.20.0/22 50129 -185.191.24.0/22 206897 -185.191.28.0/22 59583 -185.191.36.0/22 57809 -185.191.40.0/22 56571 -185.191.44.0/22 201942 -185.191.52.0/22 24722 -185.191.56.0/24 205880 -185.191.60.0/22 206273 -185.191.64.0/22 201843 -185.191.68.0/24 206147 -185.191.71.0/24 206147 -185.191.72.0/23 209905 -185.191.74.0/24 197328 -185.191.76.0/23 51431 -185.191.78.0/24 51431 -185.191.84.0/22 57653 -185.191.88.0/22 205512 -185.191.92.0/22 202727 -185.191.96.0/23 205926 -185.191.98.0/24 205926 -185.191.99.0/24 203489 -185.191.100.0/22 206894 -185.191.104.0/22 44092 -185.191.108.0/22 42366 -185.191.116.0/22 48095 -185.191.120.0/22 206231 -185.191.125.0/24 206264 -185.191.126.0/24 206264 -185.191.127.0/24 45753 -185.191.132.0/22 61109 -185.191.136.0/23 49317 -185.191.140.0/24 60942 -185.191.141.0/24 56964 -185.191.142.0/24 45027 -185.191.143.0/24 39113 -185.191.148.0/22 48278 -185.191.156.0/22 207044 -185.191.160.0/23 60819 -185.191.162.0/24 60819 -185.191.164.0/22 206262 -185.191.168.0/24 39572 -185.191.172.0/22 3255 -185.191.176.0/22 48239 -185.191.180.0/22 137 -185.191.184.0/22 47681 -185.191.188.0/22 60673 -185.191.192.0/22 198024 -185.191.196.0/22 42244 -185.191.200.0/24 57004 -185.191.204.0/23 42994 -185.191.206.0/23 35758 -185.191.208.0/23 21371 -185.191.210.0/23 205486 -185.191.212.0/24 44372 -185.191.214.0/24 42628 -185.191.215.0/24 48347 -185.191.216.0/22 204073 -185.191.220.0/23 50151 -185.191.224.0/22 29686 -185.191.228.0/22 64236 -185.191.232.0/22 51896 -185.191.236.0/22 39782 -185.191.240.0/22 49544 -185.191.244.0/23 197588 -185.191.246.0/24 13000 -185.191.248.0/23 208596 -185.191.250.0/23 203936 -185.191.252.0/22 29119 -185.192.0.0/22 60781 -185.192.8.0/22 42990 -185.192.12.0/22 42977 -185.192.16.0/24 46562 -185.192.17.0/24 209014 -185.192.20.0/22 45382 -185.192.28.0/22 1299 -185.192.36.0/22 206246 -185.192.40.0/22 206245 -185.192.44.0/22 6696 -185.192.48.0/22 60167 -185.192.52.0/24 206197 -185.192.54.0/23 206197 -185.192.56.0/24 42962 -185.192.64.0/22 48918 -185.192.68.0/24 13213 -185.192.69.0/24 62240 -185.192.70.0/24 42831 -185.192.71.0/24 13213 -185.192.72.0/22 48146 -185.192.76.0/24 34372 -185.192.78.0/23 34372 -185.192.80.0/22 205389 -185.192.84.0/22 59763 -185.192.88.0/22 204597 -185.192.96.0/22 46261 -185.192.100.0/22 42945 -185.192.104.0/22 206894 -185.192.108.0/24 50340 -185.192.109.0/24 45027 -185.192.110.0/24 45027 -185.192.111.0/24 49505 -185.192.112.0/23 60976 -185.192.116.0/22 48146 -185.192.120.0/23 206234 -185.192.124.0/24 200514 -185.192.125.0/24 208273 -185.192.126.0/24 43350 -185.192.127.0/24 200514 -185.192.132.0/24 21155 -185.192.136.0/22 3269 -185.192.140.0/22 21413 -185.192.144.0/22 197985 -185.192.148.0/23 34002 -185.192.150.0/24 34002 -185.192.151.0/24 25540 -185.192.152.0/22 42090 -185.192.156.0/22 60793 -185.192.160.0/22 9051 -185.192.164.0/22 200614 -185.192.168.0/23 47372 -185.192.170.0/23 208444 -185.192.172.0/22 42366 -185.192.177.0/24 206232 -185.192.178.0/23 206232 -185.192.180.0/22 201453 -185.192.188.0/22 35224 -185.192.192.0/22 206137 -185.192.196.0/23 202331 -185.192.198.0/23 60846 -185.192.208.0/22 48146 -185.192.212.0/22 197328 -185.192.220.0/22 42612 -185.192.224.0/22 5385 -185.192.228.0/22 5503 -185.192.232.0/24 206133 -185.192.236.0/22 47589 -185.192.240.0/22 206094 -185.192.249.0/24 36040 -185.192.250.0/23 43380 -185.192.252.0/22 197248 -185.193.0.0/22 49709 -185.193.4.0/22 206192 -185.193.12.0/22 207092 -185.193.16.0/23 35913 -185.193.18.0/24 35913 -185.193.24.0/22 62282 -185.193.32.0/24 205756 -185.193.35.0/24 205756 -185.193.36.0/24 25369 -185.193.37.0/24 201106 -185.193.38.0/24 30823 -185.193.39.0/24 25369 -185.193.40.0/23 206219 -185.193.44.0/22 53889 -185.193.48.0/22 48095 -185.193.52.0/22 44679 -185.193.56.0/23 42398 -185.193.58.0/24 42398 -185.193.59.0/24 206193 -185.193.60.0/22 202635 -185.193.64.0/22 46261 -185.193.68.0/22 29119 -185.193.72.0/22 21769 -185.193.76.0/22 34541 -185.193.80.0/22 42366 -185.193.84.0/22 29504 -185.193.88.0/22 34549 -185.193.92.0/22 52157 -185.193.100.0/22 206212 -185.193.104.0/22 48146 -185.193.112.0/22 198414 -185.193.116.0/22 202228 -185.193.120.0/22 42903 -185.193.124.0/24 54990 -185.193.125.0/24 37560 -185.193.126.0/23 37560 -185.193.128.0/22 6740 -185.193.136.0/24 49505 -185.193.137.0/24 198137 -185.193.138.0/24 43676 -185.193.140.0/24 57186 -185.193.142.0/24 42661 -185.193.143.0/24 43830 -185.193.148.0/22 42913 -185.193.152.0/23 206204 -185.193.160.0/22 8308 -185.193.164.0/23 201364 -185.193.166.0/23 51559 -185.193.168.0/22 206347 -185.193.172.0/22 3352 -185.193.176.0/22 50670 -185.193.184.0/22 206200 -185.193.196.0/22 49732 -185.193.200.0/22 206195 -185.193.204.0/22 48507 -185.193.208.0/22 48944 -185.193.212.0/23 135376 -185.193.214.0/24 135376 -185.193.216.0/22 50673 -185.193.220.0/23 42872 -185.193.222.0/24 42872 -185.193.224.0/22 21232 -185.193.232.0/24 786 -185.193.233.0/24 199713 -185.193.234.0/23 199713 -185.193.236.0/22 60111 -185.193.244.0/22 62035 -185.193.248.0/22 206181 -185.193.252.0/22 50316 -185.194.0.0/22 8455 -185.194.4.0/22 201102 -185.194.8.0/22 206190 -185.194.20.0/22 35492 -185.194.24.0/22 201453 -185.194.28.0/22 201942 -185.194.32.0/22 49186 -185.194.36.0/22 42366 -185.194.40.0/23 206187 -185.194.42.0/24 206187 -185.194.44.0/22 207242 -185.194.48.0/22 206124 -185.194.52.0/22 54600 -185.194.60.0/22 48146 -185.194.64.0/22 12897 -185.194.68.0/22 206177 -185.194.72.0/22 29256 -185.194.76.0/22 8868 -185.194.80.0/22 12601 -185.194.84.0/23 34762 -185.194.86.0/23 19994 -185.194.88.0/23 43219 -185.194.92.0/22 197869 -185.194.96.0/22 205039 -185.194.100.0/22 206178 -185.194.104.0/24 64429 -185.194.105.0/24 45027 -185.194.106.0/24 45027 -185.194.108.0/22 205981 -185.194.112.0/24 206754 -185.194.114.0/24 206754 -185.194.115.0/24 205517 -185.194.116.0/22 21769 -185.194.120.0/22 207147 -185.194.124.0/22 29256 -185.194.128.0/22 56403 -185.194.136.0/23 394434 -185.194.140.0/22 197540 -185.194.144.0/22 15702 -185.194.148.0/24 40065 -185.194.149.0/24 199527 -185.194.150.0/24 42366 -185.194.152.0/23 206169 -185.194.156.0/22 50628 -185.194.160.0/24 206168 -185.194.164.0/23 43930 -185.194.166.0/23 206713 -185.194.168.0/22 206062 -185.194.172.0/22 206163 -185.194.176.0/22 197518 -185.194.180.0/22 559 -185.194.184.0/22 198335 -185.194.188.0/22 57844 -185.194.196.0/22 43030 -185.194.200.0/23 206004 -185.194.202.0/23 205099 -185.194.204.0/22 204145 -185.194.208.0/22 50129 -185.194.212.0/23 41421 -185.194.215.0/24 41421 -185.194.216.0/22 46261 -185.194.220.0/22 49001 -185.194.224.0/22 200274 -185.194.228.0/22 21769 -185.194.232.0/23 8220 -185.194.234.0/23 25540 -185.194.236.0/22 31400 -185.194.240.0/22 208611 -185.194.248.0/23 206073 -185.194.250.0/24 206073 -185.194.251.0/24 9150 -185.195.0.0/22 16509 -185.195.4.0/22 15836 -185.195.8.0/23 44894 -185.195.10.0/24 62146 -185.195.12.0/23 32475 -185.195.14.0/24 36351 -185.195.16.0/22 9009 -185.195.20.0/22 202652 -185.195.24.0/22 50113 -185.195.36.0/22 48146 -185.195.40.0/22 328449 -185.195.44.0/22 51662 -185.195.48.0/22 58293 -185.195.52.0/22 8462 -185.195.56.0/23 206144 -185.195.58.0/23 62240 -185.195.60.0/22 206143 -185.195.64.0/22 48095 -185.195.68.0/22 51395 -185.195.72.0/22 42750 -185.195.76.0/22 134094 -185.195.80.0/23 206142 -185.195.84.0/22 207242 -185.195.88.0/22 196658 -185.195.92.0/22 42649 -185.195.96.0/22 206102 -185.195.100.0/22 42730 -185.195.104.0/22 62240 -185.195.108.0/22 48146 -185.195.116.0/22 61049 -185.195.120.0/22 206081 -185.195.124.0/22 204239 -185.195.128.0/22 56911 -185.195.132.0/22 39730 -185.195.136.0/22 200353 -185.195.140.0/22 205976 -185.195.144.0/23 201119 -185.195.147.0/24 201119 -185.195.148.0/24 16509 -185.195.149.0/24 199508 -185.195.150.0/23 199508 -185.195.154.0/23 42696 -185.195.164.0/24 206132 -185.195.168.0/24 1680 -185.195.169.0/24 49392 -185.195.170.0/23 199669 -185.195.172.0/22 42686 -185.195.180.0/22 21161 -185.195.184.0/22 207159 -185.195.196.0/22 206123 -185.195.200.0/22 9009 -185.195.204.0/22 206109 -185.195.208.0/22 60717 -185.195.212.0/22 21769 -185.195.216.0/22 203061 -185.195.220.0/22 21769 -185.195.224.0/22 207242 -185.195.228.0/23 199484 -185.195.230.0/24 199484 -185.195.231.0/24 50941 -185.195.236.0/24 210283 -185.195.237.0/24 206804 -185.195.238.0/24 396319 -185.195.239.0/24 61138 -185.195.240.0/24 57411 -185.195.241.0/24 41022 -185.195.242.0/24 41122 -185.195.243.0/24 197453 -185.195.244.0/24 206095 -185.195.248.0/24 198551 -185.195.249.0/24 206120 -185.195.250.0/23 206120 -185.195.252.0/24 34984 -185.195.253.0/24 206119 -185.195.254.0/23 206119 -185.196.0.0/22 35913 -185.196.4.0/22 16086 -185.196.8.0/24 34888 -185.196.9.0/24 42624 -185.196.10.0/23 42624 -185.196.15.0/24 20530 -185.196.16.0/22 199290 -185.196.22.0/24 197890 -185.196.23.0/24 20860 -185.196.24.0/22 46261 -185.196.30.0/24 207513 -185.196.31.0/24 201285 -185.196.32.0/22 206089 -185.196.36.0/22 200719 -185.196.40.0/22 201942 -185.196.44.0/22 15703 -185.196.48.0/22 42658 -185.196.52.0/22 62214 -185.196.56.0/22 206189 -185.196.64.0/22 207099 -185.196.68.0/22 206110 -185.196.72.0/24 35280 -185.196.75.0/24 35280 -185.196.76.0/22 205760 -185.196.80.0/22 44574 -185.196.84.0/22 25375 -185.196.100.0/24 12703 -185.196.104.0/22 60059 -185.196.108.0/22 42366 -185.196.112.0/22 206101 -185.196.116.0/24 197453 -185.196.117.0/24 42521 -185.196.118.0/24 35591 -185.196.120.0/22 24889 -185.196.124.0/23 328449 -185.196.126.0/23 16116 -185.196.128.0/22 34554 -185.196.137.0/24 59898 -185.196.140.0/22 29256 -185.196.144.0/22 29256 -185.196.148.0/24 60887 -185.196.150.0/24 204686 -185.196.151.0/24 209462 -185.196.156.0/22 12605 -185.196.160.0/22 35130 -185.196.164.0/22 201333 -185.196.168.0/22 56864 -185.196.176.0/22 206091 -185.196.180.0/22 206088 -185.196.184.0/22 61040 -185.196.188.0/22 21769 -185.196.200.0/23 200845 -185.196.202.0/24 43160 -185.196.203.0/24 199290 -185.196.204.0/22 5413 -185.196.208.0/22 206082 -185.196.212.0/22 31492 -185.196.216.0/22 43060 -185.196.224.0/22 46261 -185.196.228.0/22 42266 -185.196.232.0/22 207006 -185.196.236.0/22 28891 -185.196.240.0/22 39878 -185.196.248.0/22 30889 -185.196.252.0/22 206077 -185.197.0.0/22 198153 -185.197.4.0/22 42133 -185.197.8.0/22 57558 -185.197.12.0/22 196847 -185.197.16.0/22 21769 -185.197.20.0/22 29256 -185.197.24.0/22 49544 -185.197.28.0/23 42366 -185.197.30.0/24 63473 -185.197.31.0/24 20860 -185.197.32.0/22 206066 -185.197.36.0/22 197690 -185.197.44.0/22 206021 -185.197.48.0/22 199434 -185.197.52.0/24 6453 -185.197.55.0/24 6453 -185.197.56.0/22 206049 -185.197.60.0/22 61323 -185.197.64.0/22 3352 -185.197.68.0/22 206065 -185.197.72.0/24 59504 -185.197.74.0/24 49981 -185.197.75.0/24 208861 -185.197.76.0/24 3255 -185.197.77.0/24 50129 -185.197.78.0/23 3255 -185.197.80.0/22 25433 -185.197.84.0/22 3215 -185.197.88.0/22 34285 -185.197.96.0/24 206610 -185.197.98.0/23 9008 -185.197.104.0/22 206070 -185.197.108.0/22 57809 -185.197.112.0/22 29068 -185.197.116.0/22 204511 -185.197.124.0/23 57834 -185.197.128.0/22 32475 -185.197.132.0/24 206313 -185.197.134.0/23 42639 -185.197.136.0/22 31027 -185.197.140.0/22 206961 -185.197.144.0/22 208648 -185.197.152.0/22 28909 -185.197.156.0/22 202727 -185.197.160.0/22 60144 -185.197.164.0/24 39378 -185.197.165.0/24 44066 -185.197.166.0/23 44066 -185.197.172.0/22 44974 -185.197.176.0/22 206060 -185.197.188.0/22 60880 -185.197.192.0/22 46261 -185.197.196.0/24 42926 -185.197.200.0/22 57656 -185.197.204.0/22 206056 -185.197.208.0/24 49952 -185.197.212.0/22 205925 -185.197.216.0/22 201942 -185.197.220.0/22 35132 -185.197.224.0/22 34244 -185.197.228.0/22 3302 -185.197.232.0/22 206054 -185.197.243.0/24 174 -185.197.244.0/22 34285 -185.197.248.0/22 46261 -185.197.252.0/22 206967 -185.198.0.0/22 206052 -185.198.4.0/22 202837 -185.198.8.0/22 200719 -185.198.16.0/23 62031 -185.198.18.0/23 57219 -185.198.20.0/23 41045 -185.198.22.0/23 35717 -185.198.24.0/23 42366 -185.198.26.0/24 63473 -185.198.28.0/22 205986 -185.198.32.0/22 21412 -185.198.36.0/23 60558 -185.198.38.0/23 9009 -185.198.40.0/22 35738 -185.198.44.0/22 61208 -185.198.48.0/22 48146 -185.198.52.0/23 205757 -185.198.56.0/22 60117 -185.198.60.0/22 206273 -185.198.64.0/22 206043 -185.198.68.0/24 206934 -185.198.72.0/22 43260 -185.198.76.0/23 198239 -185.198.78.0/23 35189 -185.198.80.0/24 206040 -185.198.84.0/22 9009 -185.198.88.0/24 64200 -185.198.89.0/24 13213 -185.198.90.0/23 13213 -185.198.92.0/22 205851 -185.198.100.0/22 197991 -185.198.104.0/22 38176 -185.198.108.0/22 199770 -185.198.112.0/22 200976 -185.198.116.0/22 35051 -185.198.120.0/22 56911 -185.198.124.0/22 206008 -185.198.128.0/22 205633 -185.198.136.0/22 206029 -185.198.144.0/22 206010 -185.198.148.0/22 30915 -185.198.152.0/22 59539 -185.198.156.0/22 206022 -185.198.160.0/22 205622 -185.198.164.0/22 21100 -185.198.172.0/22 29256 -185.198.176.0/22 49934 -185.198.180.0/22 201105 -185.198.184.0/22 204757 -185.198.188.0/22 62240 -185.198.192.0/22 203605 -185.198.196.0/22 51540 -185.198.200.0/22 48918 -185.198.204.0/23 13030 -185.198.208.0/22 60783 -185.198.216.0/22 25486 -185.198.220.0/22 199527 -185.198.224.0/22 44407 -185.198.228.0/22 41230 -185.198.236.0/22 56859 -185.198.240.0/24 29066 -185.198.241.0/24 62217 -185.198.242.0/24 46562 -185.198.244.0/22 48095 -185.198.252.0/24 206013 -185.199.0.0/23 201543 -185.199.4.0/22 38976 -185.199.8.0/23 206011 -185.199.10.0/24 206011 -185.199.11.0/24 61964 -185.199.12.0/23 59655 -185.199.14.0/24 59655 -185.199.16.0/22 31727 -185.199.24.0/22 57111 -185.199.28.0/22 206892 -185.199.36.0/22 197216 -185.199.40.0/22 35717 -185.199.44.0/22 201942 -185.199.48.0/23 205985 -185.199.50.0/23 201602 -185.199.52.0/22 201942 -185.199.56.0/22 12390 -185.199.60.0/22 24961 -185.199.64.0/22 205997 -185.199.68.0/22 42366 -185.199.72.0/22 205987 -185.199.76.0/22 10753 -185.199.80.0/22 31543 -185.199.84.0/22 205968 -185.199.92.0/22 30456 -185.199.96.0/22 43139 -185.199.100.0/22 46261 -185.199.104.0/22 48303 -185.199.108.0/22 54113 -185.199.112.0/22 198721 -185.199.116.0/22 21769 -185.199.120.0/22 42603 -185.199.132.0/22 205795 -185.199.136.0/22 13189 -185.199.148.0/22 197518 -185.199.152.0/22 8559 -185.199.156.0/22 197518 -185.199.160.0/22 205998 -185.199.164.0/22 205996 -185.199.168.0/22 12552 -185.199.172.0/23 43927 -185.199.174.0/24 43927 -185.199.176.0/22 60016 -185.199.180.0/24 5488 -185.199.184.0/22 205801 -185.199.188.0/22 41960 -185.199.200.0/22 205992 -185.199.204.0/24 15404 -185.199.205.0/24 8881 -185.199.212.0/22 197518 -185.199.216.0/22 41955 -185.199.220.0/22 12488 -185.199.224.0/22 64236 -185.199.228.0/22 205993 -185.199.232.0/22 41960 -185.199.236.0/22 31027 -185.199.240.0/22 25820 -185.199.244.0/22 29256 -185.199.248.0/22 25273 -185.199.252.0/22 205443 -185.200.0.0/22 42593 -185.200.4.0/24 3209 -185.200.6.0/24 3209 -185.200.8.0/22 42525 -185.200.12.0/24 49981 -185.200.16.0/22 56923 -185.200.20.0/22 205961 -185.200.24.0/22 205506 -185.200.28.0/22 42584 -185.200.32.0/23 199527 -185.200.34.0/24 35913 -185.200.35.0/24 199527 -185.200.36.0/22 202561 -185.200.40.0/22 31287 -185.200.44.0/22 50599 -185.200.48.0/23 205783 -185.200.52.0/23 205988 -185.200.54.0/24 205988 -185.200.56.0/22 48951 -185.200.60.0/24 204875 -185.200.61.0/24 208139 -185.200.62.0/24 62206 -185.200.63.0/24 205962 -185.200.64.0/22 54600 -185.200.68.0/22 8728 -185.200.72.0/22 198614 -185.200.76.0/22 209910 -185.200.80.0/22 50705 -185.200.88.0/22 47217 -185.200.96.0/22 15542 -185.200.100.0/22 205668 -185.200.104.0/24 47172 -185.200.106.0/23 47172 -185.200.108.0/24 205982 -185.200.112.0/22 3255 -185.200.116.0/22 9009 -185.200.124.0/24 8529 -185.200.132.0/22 60341 -185.200.136.0/22 42366 -185.200.140.0/23 39684 -185.200.144.0/22 198551 -185.200.148.0/22 205704 -185.200.152.0/22 199809 -185.200.156.0/22 61437 -185.200.164.0/22 198682 -185.200.168.0/23 12389 -185.200.170.0/24 45027 -185.200.171.0/24 57803 -185.200.175.0/24 32110 -185.200.176.0/22 48095 -185.200.180.0/22 206655 -185.200.188.0/24 205507 -185.200.189.0/24 57371 -185.200.190.0/24 208992 -185.200.191.0/24 50113 -185.200.192.0/22 35717 -185.200.196.0/23 208415 -185.200.198.0/24 208415 -185.200.199.0/24 199247 -185.200.200.0/22 24904 -185.200.204.0/22 210176 -185.200.208.0/23 58738 -185.200.210.0/24 58738 -185.200.211.0/24 57731 -185.200.212.0/22 21183 -185.200.216.0/22 205963 -185.200.220.0/22 34146 -185.200.224.0/22 58265 -185.200.228.0/22 201942 -185.200.232.0/22 200612 -185.200.236.0/22 205958 -185.200.240.0/22 9123 -185.200.244.0/24 397525 -185.200.245.0/24 19437 -185.200.246.0/23 397525 -185.200.248.0/22 57070 -185.200.252.0/22 2116 -185.201.0.0/23 205514 -185.201.2.0/24 205514 -185.201.4.0/22 29119 -185.201.8.0/22 47583 -185.201.12.0/22 204064 -185.201.16.0/24 8972 -185.201.17.0/24 49544 -185.201.18.0/24 30083 -185.201.19.0/24 174 -185.201.24.0/22 205928 -185.201.32.0/22 58273 -185.201.36.0/23 50020 -185.201.38.0/24 50020 -185.201.39.0/24 209841 -185.201.40.0/24 13213 -185.201.41.0/24 64200 -185.201.42.0/24 9009 -185.201.43.0/24 64200 -185.201.45.0/24 60192 -185.201.46.0/24 42178 -185.201.48.0/24 201194 -185.201.49.0/24 49847 -185.201.50.0/24 56466 -185.201.51.0/24 201194 -185.201.52.0/22 57918 -185.201.56.0/24 205904 -185.201.60.0/22 20860 -185.201.64.0/22 47242 -185.201.68.0/23 205943 -185.201.72.0/22 200845 -185.201.76.0/23 30848 -185.201.78.0/23 208808 -185.201.80.0/24 31083 -185.201.83.0/24 46636 -185.201.84.0/22 42965 -185.201.88.0/22 42597 -185.201.92.0/23 205945 -185.201.104.0/22 205901 -185.201.108.0/23 205366 -185.201.112.0/22 198414 -185.201.118.0/24 207739 -185.201.119.0/24 35146 -185.201.124.0/22 12996 -185.201.128.0/22 9009 -185.201.132.0/22 205935 -185.201.136.0/22 50560 -185.201.140.0/22 205940 -185.201.144.0/22 29423 -185.201.148.0/23 209622 -185.201.152.0/22 201942 -185.201.156.0/22 205803 -185.201.160.0/22 42366 -185.201.164.0/22 205394 -185.201.168.0/23 42373 -185.201.172.0/22 43948 -185.201.176.0/22 202345 -185.201.180.0/24 44611 -185.201.182.0/24 42973 -185.201.184.0/22 206460 -185.201.188.0/24 24768 -185.201.189.0/24 60140 -185.201.190.0/24 201999 -185.201.191.0/24 60140 -185.201.192.0/22 59605 -185.201.196.0/22 205818 -185.201.200.0/22 202120 -185.201.204.0/22 28854 -185.201.208.0/22 51561 -185.201.212.0/22 47952 -185.201.216.0/22 15547 -185.201.224.0/23 3257 -185.201.226.0/23 40065 -185.201.228.0/22 21769 -185.201.232.0/22 206548 -185.201.236.0/23 58014 -185.201.239.0/24 58014 -185.201.240.0/22 44241 -185.201.244.0/22 48095 -185.202.0.0/24 60781 -185.202.4.0/23 43771 -185.202.6.0/24 43771 -185.202.7.0/24 42871 -185.202.8.0/22 44869 -185.202.16.0/22 5466 -185.202.20.0/22 42290 -185.202.24.0/22 205921 -185.202.28.0/22 32244 -185.202.32.0/21 3320 -185.202.44.0/22 46261 -185.202.48.0/22 203020 -185.202.52.0/22 205919 -185.202.56.0/22 50749 -185.202.60.0/22 24904 -185.202.64.0/22 205916 -185.202.68.0/22 15405 -185.202.72.0/22 205842 -185.202.76.0/23 205913 -185.202.80.0/22 41913 -185.202.84.0/22 41953 -185.202.92.0/22 205833 -185.202.101.0/24 136038 -185.202.102.0/24 133115 -185.202.103.0/24 136038 -185.202.116.0/22 29119 -185.202.120.0/22 51300 -185.202.124.0/24 198595 -185.202.127.0/24 198595 -185.202.128.0/22 200553 -185.202.132.0/24 61423 -185.202.133.0/24 51658 -185.202.134.0/23 208650 -185.202.136.0/22 8462 -185.202.140.0/22 42411 -185.202.144.0/22 60458 -185.202.151.0/24 8447 -185.202.152.0/22 42383 -185.202.156.0/22 42366 -185.202.160.0/22 205827 -185.202.164.0/22 43160 -185.202.168.0/22 21769 -185.202.172.0/22 64236 -185.202.176.0/22 205834 -185.202.180.0/22 43571 -185.202.184.0/22 197664 -185.202.188.0/22 205888 -185.202.192.0/22 209057 -185.202.196.0/22 12843 -185.202.200.0/22 29396 -185.202.204.0/22 201942 -185.202.208.0/24 205875 -185.202.212.0/22 25408 -185.202.216.0/22 206736 -185.202.220.0/22 46261 -185.202.224.0/24 5488 -185.202.231.0/24 42333 -185.202.236.0/22 46261 -185.202.240.0/22 205893 -185.202.244.0/22 3269 -185.202.248.0/22 44295 -185.202.254.0/24 205077 -185.202.255.0/24 47886 -185.203.0.0/22 62319 -185.203.4.0/23 35913 -185.203.6.0/24 40676 -185.203.7.0/24 35913 -185.203.8.0/22 3257 -185.203.16.0/22 205895 -185.203.20.0/22 56986 -185.203.24.0/22 3269 -185.203.28.0/22 42349 -185.203.32.0/22 42338 -185.203.36.0/22 138995 -185.203.40.0/22 42336 -185.203.44.0/22 44500 -185.203.48.0/22 197637 -185.203.52.0/22 205889 -185.203.56.0/22 205689 -185.203.60.0/22 21459 -185.203.68.0/22 29256 -185.203.72.0/24 42240 -185.203.75.0/24 42240 -185.203.84.0/23 39392 -185.203.92.0/22 204053 -185.203.96.0/23 205412 -185.203.98.0/24 205412 -185.203.104.0/22 201602 -185.203.108.0/22 207169 -185.203.112.0/22 209898 -185.203.116.0/22 44901 -185.203.120.0/23 42366 -185.203.122.0/24 36351 -185.203.123.0/24 42366 -185.203.124.0/22 197075 -185.203.128.0/22 57367 -185.203.132.0/22 15576 -185.203.136.0/22 207020 -185.203.140.0/24 25540 -185.203.141.0/24 13193 -185.203.142.0/23 34727 -185.203.144.0/22 42136 -185.203.148.0/23 59447 -185.203.150.0/24 59447 -185.203.151.0/24 197328 -185.203.152.0/22 31143 -185.203.156.0/22 205863 -185.203.160.0/22 205837 -185.203.164.0/22 206945 -185.203.168.0/22 205877 -185.203.172.0/22 209897 -185.203.180.0/22 60032 -185.203.184.0/22 62214 -185.203.188.0/22 41960 -185.203.192.0/22 62976 -185.203.196.0/22 31732 -185.203.200.0/22 209379 -185.203.204.0/22 57335 -185.203.208.0/22 35699 -185.203.216.0/22 46261 -185.203.220.0/22 206866 -185.203.224.0/24 208036 -185.203.226.0/24 208036 -185.203.228.0/22 198247 -185.203.236.0/22 44493 -185.203.240.0/22 204601 -185.203.244.0/22 25133 -185.203.248.0/24 62299 -185.203.249.0/24 60781 -185.203.250.0/24 62299 -185.203.252.0/22 205856 -185.204.0.0/24 50113 -185.204.1.0/24 51765 -185.204.2.0/23 50113 -185.204.4.0/22 1273 -185.204.8.0/22 48904 -185.204.12.0/22 61961 -185.204.16.0/22 200918 -185.204.20.0/22 205864 -185.204.24.0/22 42259 -185.204.32.0/22 205832 -185.204.36.0/24 29396 -185.204.40.0/22 205862 -185.204.48.0/23 59931 -185.204.50.0/24 59931 -185.204.56.0/22 43452 -185.204.60.0/22 39155 -185.204.64.0/22 50129 -185.204.68.0/22 3255 -185.204.72.0/22 205852 -185.204.76.0/22 198386 -185.204.80.0/22 29256 -185.204.84.0/22 205850 -185.204.88.0/22 29256 -185.204.92.0/22 205848 -185.204.96.0/22 30742 -185.204.104.0/22 39444 -185.204.116.0/22 205820 -185.204.120.0/22 205845 -185.204.124.0/22 42218 -185.204.128.0/22 205844 -185.204.132.0/22 57111 -185.204.136.0/22 199256 -185.204.140.0/22 16347 -185.204.144.0/22 51815 -185.204.148.0/22 48095 -185.204.152.0/22 60469 -185.204.156.0/22 48642 -185.204.160.0/24 205566 -185.204.162.0/24 209163 -185.204.164.0/22 44851 -185.204.168.0/22 205838 -185.204.172.0/22 12670 -185.204.176.0/22 202421 -185.204.180.0/23 44400 -185.204.182.0/24 44400 -185.204.183.0/24 5484 -185.204.188.0/22 29075 -185.204.192.0/22 205813 -185.204.196.0/22 60781 -185.204.200.0/22 29119 -185.204.204.0/22 198551 -185.204.208.0/22 198551 -185.204.212.0/22 21267 -185.204.216.0/22 41079 -185.204.220.0/22 59919 -185.204.224.0/24 201020 -185.204.226.0/24 201020 -185.204.228.0/23 198504 -185.204.244.0/22 201942 -185.204.248.0/23 31590 -185.204.250.0/24 31027 -185.204.251.0/24 31590 -185.204.252.0/22 44407 -185.205.0.0/22 1342 -185.205.4.0/22 204998 -185.205.8.0/22 12874 -185.205.12.0/23 35913 -185.205.14.0/23 42366 -185.205.16.0/24 34984 -185.205.17.0/24 15924 -185.205.18.0/23 29262 -185.205.20.0/22 204734 -185.205.24.0/22 6453 -185.205.32.0/24 51243 -185.205.40.0/22 12637 -185.205.44.0/22 35352 -185.205.48.0/22 57773 -185.205.52.0/22 51088 -185.205.56.0/22 205823 -185.205.60.0/24 205821 -185.205.64.0/22 205822 -185.205.72.0/22 41885 -185.205.76.0/22 60476 -185.205.80.0/23 47692 -185.205.82.0/24 47692 -185.205.84.0/22 201990 -185.205.88.0/22 205797 -185.205.92.0/22 48953 -185.205.96.0/22 199081 -185.205.104.0/22 39921 -185.205.108.0/22 15547 -185.205.112.0/22 205718 -185.205.116.0/22 44549 -185.205.120.0/23 41482 -185.205.124.0/22 46261 -185.205.128.0/22 205825 -185.205.132.0/22 205824 -185.205.136.0/22 35236 -185.205.140.0/22 134739 -185.205.144.0/22 15377 -185.205.148.0/22 766 -185.205.152.0/22 205706 -185.205.157.0/24 200599 -185.205.158.0/23 200599 -185.205.160.0/22 58173 -185.205.164.0/22 206881 -185.205.168.0/22 207047 -185.205.172.0/22 31631 -185.205.180.0/22 25820 -185.205.184.0/22 197648 -185.205.188.0/22 39855 -185.205.192.0/23 42366 -185.205.194.0/24 47869 -185.205.195.0/24 199527 -185.205.196.0/22 21769 -185.205.204.0/24 9009 -185.205.205.0/24 46562 -185.205.206.0/24 395111 -185.205.207.0/24 13213 -185.205.208.0/22 44901 -185.205.212.0/22 57684 -185.205.224.0/22 12552 -185.205.228.0/23 62455 -185.205.230.0/24 62455 -185.205.231.0/24 39122 -185.205.232.0/22 9208 -185.205.236.0/22 205236 -185.205.240.0/22 60880 -185.205.244.0/22 46261 -185.205.248.0/22 57389 -185.205.252.0/22 205262 -185.206.4.0/22 61213 -185.206.8.0/23 44942 -185.206.12.0/22 8681 -185.206.16.0/22 205693 -185.206.20.0/22 46261 -185.206.24.0/22 205809 -185.206.28.0/22 202105 -185.206.32.0/22 205559 -185.206.36.0/22 6876 -185.206.40.0/22 42217 -185.206.52.0/24 64417 -185.206.53.0/24 33948 -185.206.54.0/24 39124 -185.206.55.0/24 64417 -185.206.56.0/22 206943 -185.206.60.0/24 205796 -185.206.62.0/23 209365 -185.206.76.0/22 206657 -185.206.84.0/23 6665 -185.206.86.0/24 6665 -185.206.88.0/23 204704 -185.206.91.0/24 204704 -185.206.96.0/22 205780 -185.206.100.0/24 39134 -185.206.104.0/22 3209 -185.206.108.0/22 13189 -185.206.112.0/22 60191 -185.206.116.0/22 198551 -185.206.124.0/24 205800 -185.206.126.0/23 205800 -185.206.128.0/22 48095 -185.206.132.0/22 202105 -185.206.140.0/22 12315 -185.206.144.0/22 44901 -185.206.148.0/22 204640 -185.206.152.0/22 8319 -185.206.156.0/22 205793 -185.206.160.0/22 47583 -185.206.168.0/22 25780 -185.206.172.0/22 210021 -185.206.176.0/22 203940 -185.206.180.0/22 205787 -185.206.184.0/22 42207 -185.206.188.0/22 42202 -185.206.192.0/22 44451 -185.206.196.0/22 20676 -185.206.200.0/23 43019 -185.206.202.0/24 43019 -185.206.204.0/22 50626 -185.206.208.0/22 64475 -185.206.212.0/22 204601 -185.206.220.0/22 21769 -185.206.224.0/22 9009 -185.206.232.0/22 51758 -185.206.236.0/22 207141 -185.206.240.0/22 46261 -185.206.248.0/22 201942 -185.207.0.0/22 34467 -185.207.4.0/22 43395 -185.207.12.0/23 34569 -185.207.16.0/22 197008 -185.207.24.0/22 42149 -185.207.28.0/24 50517 -185.207.30.0/23 209197 -185.207.32.0/24 205676 -185.207.35.0/24 198651 -185.207.36.0/22 203377 -185.207.44.0/23 29605 -185.207.46.0/24 3320 -185.207.48.0/22 20860 -185.207.56.0/22 205768 -185.207.60.0/22 205769 -185.207.68.0/22 41354 -185.207.72.0/22 205643 -185.207.76.0/22 205737 -185.207.80.0/22 24904 -185.207.84.0/22 12630 -185.207.88.0/22 58255 -185.207.92.0/24 209242 -185.207.94.0/23 26324 -185.207.96.0/22 21769 -185.207.100.0/22 6830 -185.207.104.0/22 197540 -185.207.108.0/22 61323 -185.207.112.0/22 21859 -185.207.116.0/22 559 -185.207.120.0/22 31727 -185.207.124.0/22 205763 -185.207.128.0/22 42140 -185.207.134.0/23 53698 -185.207.136.0/22 41665 -185.207.140.0/22 51561 -185.207.144.0/24 203704 -185.207.145.0/24 205759 -185.207.146.0/23 205759 -185.207.148.0/22 202228 -185.207.152.0/22 55933 -185.207.156.0/22 58243 -185.207.161.0/24 197648 -185.207.162.0/24 209772 -185.207.164.0/22 208959 -185.207.172.0/22 48146 -185.207.176.0/24 134098 -185.207.177.0/24 35913 -185.207.178.0/24 35913 -185.207.179.0/24 397268 -185.207.192.0/23 205755 -185.207.196.0/22 45671 -185.207.204.0/22 204196 -185.207.208.0/22 205741 -185.207.212.0/22 205696 -185.207.224.0/22 205751 -185.207.228.0/24 29014 -185.207.229.0/24 29423 -185.207.230.0/23 29014 -185.207.232.0/22 41366 -185.207.236.0/24 39572 -185.207.240.0/22 206825 -185.207.244.0/22 16097 -185.207.248.0/22 46261 -185.208.0.0/22 205252 -185.208.4.0/22 205743 -185.208.8.0/22 209811 -185.208.20.0/22 50564 -185.208.28.0/22 29097 -185.208.32.0/23 16097 -185.208.36.0/22 29488 -185.208.40.0/22 205746 -185.208.44.0/22 62166 -185.208.52.0/22 3301 -185.208.56.0/22 205726 -185.208.60.0/22 198551 -185.208.64.0/23 201553 -185.208.67.0/24 201553 -185.208.76.0/22 59441 -185.208.80.0/22 205721 -185.208.84.0/22 50858 -185.208.88.0/22 205739 -185.208.92.0/22 2119 -185.208.96.0/22 48001 -185.208.100.0/23 42083 -185.208.104.0/24 197650 -185.208.105.0/24 205732 -185.208.106.0/23 197650 -185.208.116.0/22 269800 -185.208.120.0/22 198288 -185.208.124.0/24 205730 -185.208.128.0/23 39572 -185.208.132.0/22 205728 -185.208.136.0/23 30848 -185.208.138.0/24 13097 -185.208.139.0/24 30848 -185.208.144.0/23 3352 -185.208.146.0/24 6739 -185.208.147.0/24 12357 -185.208.148.0/23 56466 -185.208.150.0/24 56466 -185.208.151.0/24 60932 -185.208.152.0/22 13213 -185.208.156.0/23 42624 -185.208.158.0/23 34888 -185.208.160.0/22 51053 -185.208.164.0/24 41079 -185.208.168.0/24 395800 -185.208.169.0/24 40676 -185.208.170.0/24 136620 -185.208.171.0/24 135330 -185.208.172.0/23 202269 -185.208.174.0/23 60631 -185.208.176.0/22 49273 -185.208.180.0/22 48147 -185.208.184.0/22 51487 -185.208.188.0/22 49979 -185.208.192.0/22 60747 -185.208.196.0/22 205484 -185.208.200.0/22 205710 -185.208.204.0/22 46261 -185.208.208.0/23 205406 -185.208.210.0/24 205406 -185.208.211.0/24 396073 -185.208.212.0/22 47527 -185.208.220.0/22 205718 -185.208.224.0/22 43359 -185.208.228.0/22 35325 -185.208.236.0/22 42366 -185.208.240.0/22 201508 -185.208.244.0/22 205716 -185.208.248.0/22 16347 -185.208.252.0/22 198288 -185.209.0.0/24 38814 -185.209.4.0/22 200019 -185.209.8.0/24 48146 -185.209.9.0/24 29119 -185.209.10.0/23 48146 -185.209.20.0/22 204601 -185.209.28.0/22 48282 -185.209.32.0/22 29256 -185.209.36.0/22 201942 -185.209.40.0/22 6453 -185.209.44.0/22 41816 -185.209.48.0/24 35819 -185.209.52.0/22 30781 -185.209.56.0/22 57999 -185.209.60.0/22 12338 -185.209.64.0/22 61157 -185.209.68.0/23 205685 -185.209.70.0/23 204568 -185.209.72.0/22 201942 -185.209.76.0/22 29119 -185.209.84.0/23 57578 -185.209.86.0/23 207193 -185.209.88.0/22 205702 -185.209.92.0/22 62976 -185.209.96.0/22 47736 -185.209.100.0/24 205580 -185.209.104.0/22 201035 -185.209.108.0/22 42013 -185.209.112.0/22 50340 -185.209.116.0/22 42011 -185.209.120.0/22 3339 -185.209.124.0/22 24940 -185.209.128.0/22 46261 -185.209.132.0/22 8319 -185.209.139.0/24 205688 -185.209.140.0/22 44407 -185.209.144.0/24 205680 -185.209.146.0/23 205680 -185.209.148.0/22 204805 -185.209.152.0/24 41839 -185.209.156.0/22 16097 -185.209.160.0/22 14576 -185.209.164.0/22 201702 -185.209.168.0/24 205690 -185.209.172.0/22 205687 -185.209.176.0/22 396356 -185.209.180.0/22 199233 -185.209.184.0/22 206310 -185.209.188.0/22 62250 -185.209.192.0/22 41876 -185.209.200.0/22 29256 -185.209.204.0/22 202909 -185.209.208.0/24 34173 -185.209.212.0/22 200759 -185.209.216.0/22 197190 -185.209.220.0/22 46261 -185.209.224.0/22 52157 -185.209.228.0/22 46261 -185.209.232.0/22 205665 -185.209.236.0/22 20886 -185.209.244.0/22 197473 -185.209.248.0/22 205674 -185.209.252.0/22 42366 -185.210.0.0/23 205683 -185.210.2.0/24 3303 -185.210.4.0/22 197212 -185.210.8.0/22 207253 -185.210.12.0/22 12762 -185.210.16.0/23 205663 -185.210.18.0/23 207099 -185.210.20.0/22 205718 -185.210.24.0/22 9150 -185.210.28.0/22 54600 -185.210.36.0/22 205679 -185.210.40.0/22 48095 -185.210.56.0/22 31430 -185.210.60.0/22 48146 -185.210.64.0/22 199811 -185.210.68.0/24 13030 -185.210.72.0/22 48146 -185.210.76.0/22 21769 -185.210.80.0/22 41821 -185.210.84.0/22 205673 -185.210.88.0/22 48990 -185.210.92.0/24 42926 -185.210.93.0/24 51559 -185.210.94.0/23 42926 -185.210.96.0/22 31662 -185.210.100.0/22 12611 -185.210.108.0/22 24904 -185.210.112.0/22 207029 -185.210.116.0/24 204945 -185.210.120.0/22 41960 -185.210.124.0/22 205671 -185.210.128.0/22 34373 -185.210.132.0/22 205662 -185.210.144.0/22 47583 -185.210.148.0/22 1764 -185.210.152.0/22 201942 -185.210.164.0/22 205653 -185.210.172.0/22 15589 -185.210.176.0/22 51377 -185.210.180.0/22 202632 -185.210.184.0/22 42006 -185.210.188.0/23 201011 -185.210.192.0/22 29119 -185.210.196.0/22 61323 -185.210.200.0/24 57457 -185.210.203.0/24 57457 -185.210.204.0/22 36351 -185.210.208.0/22 205831 -185.210.216.0/22 9009 -185.210.220.0/22 43770 -185.210.224.0/24 49432 -185.210.225.0/24 5505 -185.210.226.0/24 5505 -185.210.228.0/23 50056 -185.210.232.0/22 201942 -185.210.236.0/22 41306 -185.210.240.0/22 6761 -185.210.244.0/22 205645 -185.210.248.0/22 30848 -185.211.0.0/22 205652 -185.211.4.0/22 46261 -185.211.8.0/22 205655 -185.211.12.0/23 30848 -185.211.14.0/24 198102 -185.211.15.0/24 47406 -185.211.16.0/22 197637 -185.211.20.0/22 205654 -185.211.24.0/22 202727 -185.211.28.0/24 35398 -185.211.32.0/23 35913 -185.211.34.0/23 40676 -185.211.36.0/22 5578 -185.211.40.0/24 207520 -185.211.42.0/24 203020 -185.211.44.0/22 41383 -185.211.48.0/24 24000 -185.211.49.0/24 35913 -185.211.50.0/24 20473 -185.211.51.0/24 23470 -185.211.52.0/22 50033 -185.211.56.0/22 39368 -185.211.60.0/24 29423 -185.211.64.0/22 205620 -185.211.68.0/22 205624 -185.211.72.0/22 31726 -185.211.80.0/22 198380 -185.211.88.0/22 59794 -185.211.92.0/22 49867 -185.211.96.0/22 57516 -185.211.100.0/22 15415 -185.211.108.0/22 41779 -185.211.112.0/24 205562 -185.211.116.0/22 39855 -185.211.120.0/22 200069 -185.211.128.0/22 205640 -185.211.132.0/23 41717 -185.211.134.0/24 134671 -185.211.136.0/22 12552 -185.211.140.0/22 12601 -185.211.144.0/22 42366 -185.211.148.0/24 20473 -185.211.149.0/24 29405 -185.211.150.0/23 29405 -185.211.154.0/23 60781 -185.211.156.0/22 205638 -185.211.160.0/22 205636 -185.211.164.0/22 42742 -185.211.168.0/22 205630 -185.211.172.0/22 205767 -185.211.180.0/22 201942 -185.211.184.0/22 205637 -185.211.188.0/22 49573 -185.211.192.0/22 205619 -185.211.196.0/22 43885 -185.211.200.0/23 34569 -185.211.202.0/23 44203 -185.211.208.0/22 60341 -185.211.212.0/22 207174 -185.211.216.0/22 8540 -185.211.220.0/22 197540 -185.211.224.0/22 24680 -185.211.228.0/22 61399 -185.211.232.0/22 9008 -185.211.236.0/22 205571 -185.211.240.0/22 8491 -185.211.244.0/22 202984 -185.211.248.0/23 20857 -185.211.252.0/23 201000 -185.211.254.0/23 39122 -185.212.0.0/22 33894 -185.212.4.0/22 205625 -185.212.8.0/24 62071 -185.212.9.0/24 50138 -185.212.10.0/24 204421 -185.212.11.0/24 51267 -185.212.12.0/22 206420 -185.212.16.0/22 51580 -185.212.20.0/22 57119 -185.212.24.0/22 200701 -185.212.28.0/22 57212 -185.212.36.0/22 208819 -185.212.44.0/22 39378 -185.212.48.0/22 197343 -185.212.52.0/22 60522 -185.212.56.0/22 25820 -185.212.60.0/22 45671 -185.212.64.0/23 205604 -185.212.66.0/24 205604 -185.212.67.0/24 210191 -185.212.68.0/24 35913 -185.212.69.0/24 203380 -185.212.70.0/23 46261 -185.212.72.0/24 394485 -185.212.75.0/24 396950 -185.212.76.0/23 205612 -185.212.80.0/24 206934 -185.212.81.0/24 206690 -185.212.82.0/23 206934 -185.212.84.0/22 201942 -185.212.88.0/23 21140 -185.212.90.0/24 21140 -185.212.91.0/24 205552 -185.212.96.0/22 199660 -185.212.100.0/22 6830 -185.212.104.0/22 24940 -185.212.108.0/22 200698 -185.212.120.0/22 132046 -185.212.124.0/22 29119 -185.212.128.0/22 200313 -185.212.136.0/22 35153 -185.212.140.0/23 205606 -185.212.144.0/24 139242 -185.212.148.0/24 50113 -185.212.149.0/24 51765 -185.212.150.0/24 205455 -185.212.151.0/24 56975 -185.212.152.0/22 43364 -185.212.156.0/22 8220 -185.212.160.0/22 206070 -185.212.164.0/22 42830 -185.212.168.0/22 9009 -185.212.172.0/23 197328 -185.212.174.0/24 59447 -185.212.175.0/24 197328 -185.212.181.0/24 200314 -185.212.182.0/24 204462 -185.212.183.0/24 200314 -185.212.184.0/22 39093 -185.212.188.0/22 35444 -185.212.192.0/22 48359 -185.212.196.0/22 8426 -185.212.200.0/22 40676 -185.212.204.0/22 203178 -185.212.208.0/22 31027 -185.212.212.0/22 24904 -185.212.216.0/24 8220 -185.212.220.0/23 43791 -185.212.222.0/24 43791 -185.212.224.0/22 41652 -185.212.228.0/22 205494 -185.212.232.0/22 206894 -185.212.236.0/22 41985 -185.212.240.0/22 48964 -185.212.248.0/24 39230 -185.212.249.0/24 42088 -185.212.250.0/24 6768 -185.212.251.0/24 204685 -185.212.252.0/22 20545 -185.213.0.0/24 9002 -185.213.1.0/24 8312 -185.213.2.0/23 9002 -185.213.4.0/22 200043 -185.213.8.0/23 205588 -185.213.11.0/24 205588 -185.213.12.0/23 43229 -185.213.16.0/22 46261 -185.213.20.0/23 49367 -185.213.22.0/24 207809 -185.213.24.0/22 63473 -185.213.32.0/24 34191 -185.213.36.0/22 205581 -185.213.40.0/22 41645 -185.213.48.0/22 50564 -185.213.52.0/22 50304 -185.213.56.0/22 20634 -185.213.60.0/22 136800 -185.213.64.0/22 205583 -185.213.72.0/22 208660 -185.213.76.0/22 205582 -185.213.80.0/22 46261 -185.213.84.0/22 205572 -185.213.88.0/22 32338 -185.213.92.0/22 57014 -185.213.100.0/22 202120 -185.213.104.0/22 202120 -185.213.108.0/22 42947 -185.213.115.0/24 204546 -185.213.120.0/22 47264 -185.213.124.0/22 24953 -185.213.132.0/22 49567 -185.213.136.0/24 61308 -185.213.138.0/23 61308 -185.213.140.0/22 46261 -185.213.144.0/22 43451 -185.213.148.0/23 3214 -185.213.150.0/24 35487 -185.213.151.0/24 41378 -185.213.152.0/22 39351 -185.213.156.0/23 41525 -185.213.160.0/23 56844 -185.213.164.0/24 61173 -185.213.165.0/24 209836 -185.213.166.0/23 61173 -185.213.168.0/24 15924 -185.213.169.0/24 34984 -185.213.170.0/23 34984 -185.213.172.0/23 41608 -185.213.174.0/24 41608 -185.213.175.0/24 47447 -185.213.176.0/22 61205 -185.213.180.0/22 205556 -185.213.184.0/22 206610 -185.213.188.0/22 57395 -185.213.196.0/24 43885 -185.213.200.0/22 205568 -185.213.204.0/22 196810 -185.213.208.0/22 204601 -185.213.212.0/23 208056 -185.213.216.0/23 15404 -185.213.220.0/22 62976 -185.213.224.0/22 29132 -185.213.228.0/22 59504 -185.213.232.0/22 24945 -185.213.236.0/22 9009 -185.213.240.0/22 207895 -185.213.244.0/22 205565 -185.213.248.0/22 50033 -185.213.252.0/22 205564 -185.214.0.0/22 203489 -185.214.4.0/22 202120 -185.214.8.0/23 39855 -185.214.10.0/24 58073 -185.214.11.0/24 39855 -185.214.12.0/22 41531 -185.214.16.0/22 35132 -185.214.24.0/22 34766 -185.214.28.0/22 8462 -185.214.36.0/22 48944 -185.214.44.0/22 205525 -185.214.48.0/24 201862 -185.214.52.0/24 205555 -185.214.53.0/24 16347 -185.214.54.0/24 205555 -185.214.55.0/24 206015 -185.214.56.0/22 57113 -185.214.60.0/22 49476 -185.214.65.0/24 3320 -185.214.68.0/24 61029 -185.214.69.0/24 136620 -185.214.70.0/23 35913 -185.214.72.0/22 41490 -185.214.76.0/22 58067 -185.214.80.0/24 41488 -185.214.82.0/23 41488 -185.214.84.0/24 202636 -185.214.88.0/24 201290 -185.214.89.0/24 205538 -185.214.90.0/23 205538 -185.214.92.0/23 44330 -185.214.96.0/22 46261 -185.214.100.0/22 201942 -185.214.104.0/22 48351 -185.214.108.0/22 197518 -185.214.112.0/23 201290 -185.214.116.0/22 207187 -185.214.120.0/22 29413 -185.214.124.0/22 47583 -185.214.128.0/22 202120 -185.214.132.0/22 46261 -185.214.136.0/22 205456 -185.214.140.0/23 47987 -185.214.142.0/23 46261 -185.214.144.0/22 42947 -185.214.148.0/22 205524 -185.214.152.0/22 199811 -185.214.156.0/22 16086 -185.214.164.0/24 41466 -185.214.165.0/24 60412 -185.214.167.0/24 41466 -185.214.168.0/22 3352 -185.214.172.0/22 203061 -185.214.176.0/22 42220 -185.214.180.0/22 205545 -185.214.184.0/22 48858 -185.214.191.0/24 34984 -185.214.192.0/22 205164 -185.214.196.0/22 203020 -185.214.200.0/22 49088 -185.214.204.0/22 205537 -185.214.212.0/23 29119 -185.214.220.0/22 203568 -185.214.228.0/24 205496 -185.214.230.0/24 205496 -185.214.232.0/22 39702 -185.214.236.0/22 205543 -185.214.240.0/22 46261 -185.214.244.0/22 48084 -185.214.248.0/22 205540 -185.214.252.0/22 48642 -185.215.0.0/23 50129 -185.215.2.0/24 50129 -185.215.8.0/22 43809 -185.215.12.0/22 24904 -185.215.16.0/22 205536 -185.215.20.0/22 205535 -185.215.24.0/22 57119 -185.215.28.0/22 205584 -185.215.32.0/22 7642 -185.215.36.0/22 6908 -185.215.40.0/22 12315 -185.215.44.0/22 39356 -185.215.48.0/22 205445 -185.215.52.0/22 205368 -185.215.56.0/23 3356 -185.215.58.0/24 3356 -185.215.60.0/22 31370 -185.215.64.0/22 205461 -185.215.68.0/22 49624 -185.215.72.0/23 50606 -185.215.74.0/24 50606 -185.215.75.0/24 210104 -185.215.76.0/22 198225 -185.215.80.0/22 25276 -185.215.84.0/22 60080 -185.215.91.0/24 35567 -185.215.92.0/22 209959 -185.215.96.0/22 206894 -185.215.100.0/22 15960 -185.215.104.0/22 205518 -185.215.116.0/22 62976 -185.215.120.0/22 56395 -185.215.124.0/22 205521 -185.215.128.0/23 41415 -185.215.132.0/22 206178 -185.215.136.0/22 43646 -185.215.140.0/22 205498 -185.215.144.0/22 44092 -185.215.148.0/22 64236 -185.215.152.0/22 205490 -185.215.156.0/22 15817 -185.215.160.0/22 205516 -185.215.164.0/22 46261 -185.215.171.0/24 64484 -185.215.176.0/22 9206 -185.215.180.0/22 46261 -185.215.184.0/23 206485 -185.215.186.0/24 202759 -185.215.192.0/22 205493 -185.215.200.0/22 205243 -185.215.204.0/22 24861 -185.215.208.0/22 203061 -185.215.213.0/24 208580 -185.215.214.0/24 206499 -185.215.216.0/24 205511 -185.215.217.0/24 48328 -185.215.220.0/22 48095 -185.215.224.0/22 40676 -185.215.228.0/22 197343 -185.215.232.0/22 49847 -185.215.236.0/22 15943 -185.215.248.0/22 205510 -185.215.252.0/22 39637 -185.216.0.0/24 39855 -185.216.1.0/24 54103 -185.216.2.0/24 39855 -185.216.3.0/24 54103 -185.216.4.0/22 205362 -185.216.12.0/22 41161 -185.216.16.0/22 205500 -185.216.20.0/22 29531 -185.216.24.0/22 62000 -185.216.28.0/22 201942 -185.216.32.0/22 9009 -185.216.36.0/22 47548 -185.216.40.0/24 209464 -185.216.44.0/23 205504 -185.216.46.0/24 8892 -185.216.52.0/22 34977 -185.216.56.0/22 205501 -185.216.60.0/22 48822 -185.216.64.0/22 5396 -185.216.72.0/22 46261 -185.216.76.0/22 61323 -185.216.80.0/22 205495 -185.216.84.0/24 29066 -185.216.85.0/24 58305 -185.216.86.0/24 58305 -185.216.92.0/23 205319 -185.216.94.0/24 205319 -185.216.95.0/24 137003 -185.216.96.0/23 209254 -185.216.99.0/24 209254 -185.216.100.0/23 50374 -185.216.102.0/24 50374 -185.216.103.0/24 41706 -185.216.104.0/23 54543 -185.216.106.0/23 398197 -185.216.112.0/23 49126 -185.216.115.0/24 49126 -185.216.116.0/23 55933 -185.216.118.0/24 133731 -185.216.119.0/24 55933 -185.216.120.0/22 203924 -185.216.128.0/22 205457 -185.216.132.0/22 29256 -185.216.140.0/23 204655 -185.216.144.0/22 52167 -185.216.152.0/22 34244 -185.216.156.0/22 31027 -185.216.160.0/22 45040 -185.216.164.0/22 205428 -185.216.168.0/22 39744 -185.216.180.0/23 205485 -185.216.182.0/23 206948 -185.216.184.0/22 49088 -185.216.188.0/23 49174 -185.216.190.0/24 207737 -185.216.191.0/24 49174 -185.216.194.0/23 51200 -185.216.196.0/22 29256 -185.216.200.0/22 46261 -185.216.204.0/22 39503 -185.216.208.0/24 47929 -185.216.209.0/24 15440 -185.216.211.0/24 209989 -185.216.212.0/22 205388 -185.216.216.0/22 40996 -185.216.220.0/22 42000 -185.216.228.0/23 46261 -185.216.231.0/24 35913 -185.216.232.0/22 25038 -185.216.236.0/24 8881 -185.216.237.0/24 24940 -185.216.240.0/22 24904 -185.216.244.0/22 41338 -185.216.248.0/22 135357 -185.216.252.0/22 202005 -185.217.0.0/22 42237 -185.217.4.0/22 205733 -185.217.8.0/22 202105 -185.217.12.0/22 201942 -185.217.20.0/22 205437 -185.217.24.0/22 48095 -185.217.28.0/24 28716 -185.217.29.0/24 174 -185.217.32.0/22 43190 -185.217.40.0/22 61323 -185.217.44.0/22 205477 -185.217.48.0/22 206352 -185.217.52.0/22 12329 -185.217.56.0/23 17158 -185.217.58.0/24 56704 -185.217.59.0/24 17158 -185.217.64.0/22 203020 -185.217.68.0/22 9009 -185.217.72.0/22 41303 -185.217.76.0/24 205470 -185.217.79.0/24 205470 -185.217.80.0/22 57407 -185.217.84.0/22 204429 -185.217.88.0/22 205473 -185.217.92.0/22 204196 -185.217.96.0/22 61102 -185.217.104.0/22 197651 -185.217.108.0/22 9009 -185.217.112.0/22 198193 -185.217.116.0/24 46261 -185.217.117.0/24 62240 -185.217.118.0/24 46261 -185.217.119.0/24 29066 -185.217.124.0/22 46261 -185.217.128.0/22 25180 -185.217.132.0/22 205281 -185.217.136.0/22 204591 -185.217.144.0/22 12374 -185.217.148.0/22 42366 -185.217.152.0/24 199712 -185.217.156.0/22 58273 -185.217.160.0/22 202391 -185.217.168.0/23 35913 -185.217.170.0/24 35913 -185.217.171.0/24 58073 -185.217.172.0/22 29256 -185.217.176.0/22 21413 -185.217.180.0/22 8720 -185.217.184.0/22 57852 -185.217.188.0/22 60757 -185.217.192.0/22 34568 -185.217.196.0/22 50113 -185.217.200.0/22 200780 -185.217.204.0/22 35394 -185.217.208.0/22 202120 -185.217.212.0/24 205462 -185.217.214.0/23 205462 -185.217.216.0/22 62976 -185.217.220.0/22 205174 -185.217.224.0/22 35790 -185.217.232.0/23 201931 -185.217.234.0/23 204860 -185.217.236.0/22 29240 -185.217.240.0/22 197304 -185.217.244.0/23 3215 -185.217.248.0/22 205321 -185.217.252.0/23 56636 -185.217.254.0/24 56636 -185.218.0.0/22 25369 -185.218.4.0/22 45671 -185.218.8.0/22 205460 -185.218.12.0/22 42580 -185.218.16.0/22 201942 -185.218.20.0/22 197518 -185.218.24.0/24 203092 -185.218.28.0/22 31117 -185.218.32.0/22 198551 -185.218.36.0/22 47886 -185.218.40.0/22 205452 -185.218.44.0/22 205451 -185.218.48.0/22 204824 -185.218.52.0/22 42366 -185.218.56.0/22 9188 -185.218.64.0/22 34569 -185.218.68.0/23 3217 -185.218.70.0/24 3217 -185.218.71.0/24 49764 -185.218.72.0/23 204586 -185.218.76.0/22 34735 -185.218.80.0/22 42525 -185.218.88.0/22 205449 -185.218.92.0/23 28725 -185.218.96.0/22 204821 -185.218.100.0/22 201942 -185.218.108.0/22 205439 -185.218.120.0/22 15404 -185.218.124.0/22 46261 -185.218.140.0/23 42823 -185.218.142.0/24 42823 -185.218.144.0/22 205440 -185.218.148.0/22 48095 -185.218.152.0/22 47608 -185.218.156.0/24 205419 -185.218.159.0/24 31837 -185.218.160.0/22 209909 -185.218.164.0/23 49544 -185.218.168.0/22 6735 -185.218.172.0/22 35334 -185.218.180.0/22 205438 -185.218.184.0/22 3320 -185.218.188.0/22 201453 -185.218.192.0/22 207003 -185.218.200.0/24 43668 -185.218.201.0/24 209233 -185.218.202.0/23 45017 -185.218.204.0/22 396249 -185.218.208.0/22 205215 -185.218.212.0/22 35625 -185.218.220.0/22 206246 -185.218.228.0/22 12483 -185.218.232.0/22 64236 -185.218.236.0/22 29119 -185.218.240.0/22 15576 -185.218.244.0/22 205424 -185.218.248.0/22 202727 -185.218.252.0/22 203641 -185.219.0.0/22 202514 -185.219.8.0/22 204817 -185.219.12.0/22 205344 -185.219.16.0/22 59970 -185.219.20.0/22 46261 -185.219.24.0/22 205295 -185.219.28.0/22 202120 -185.219.32.0/22 62976 -185.219.37.0/24 205253 -185.219.40.0/22 197695 -185.219.44.0/22 50316 -185.219.48.0/22 41206 -185.219.52.0/22 20655 -185.219.56.0/22 205241 -185.219.60.0/22 6830 -185.219.64.0/22 202020 -185.219.68.0/22 47374 -185.219.76.0/22 31556 -185.219.80.0/22 204601 -185.219.84.0/22 205374 -185.219.92.0/22 60790 -185.219.96.0/22 205409 -185.219.100.0/22 64474 -185.219.104.0/22 199675 -185.219.108.0/22 205311 -185.219.112.0/22 204499 -185.219.116.0/22 44092 -185.219.120.0/22 206481 -185.219.126.0/24 58271 -185.219.127.0/24 42994 -185.219.128.0/22 206316 -185.219.132.0/22 205399 -185.219.136.0/22 199736 -185.219.140.0/22 46261 -185.219.148.0/22 60690 -185.219.156.0/22 205401 -185.219.160.0/24 9009 -185.219.161.0/24 60558 -185.219.162.0/24 35758 -185.219.163.0/24 9009 -185.219.164.0/22 205400 -185.219.168.0/22 204949 -185.219.176.0/22 206375 -185.219.180.0/22 12874 -185.219.184.0/22 203586 -185.219.188.0/22 57131 -185.219.192.0/22 206894 -185.219.204.0/22 24904 -185.219.208.0/22 24961 -185.219.212.0/22 201699 -185.219.216.0/22 201453 -185.219.220.0/22 39378 -185.219.224.0/22 205322 -185.219.228.0/22 199571 -185.219.232.0/24 12874 -185.219.234.0/24 12874 -185.219.236.0/22 41000 -185.219.240.0/22 42687 -185.219.244.0/22 205033 -185.219.252.0/22 42366 -185.220.0.0/22 205390 -185.220.4.0/22 30781 -185.220.11.0/24 51681 -185.220.12.0/22 8468 -185.220.16.0/22 198188 -185.220.20.0/22 46261 -185.220.24.0/22 12637 -185.220.28.0/22 200918 -185.220.32.0/22 59504 -185.220.36.0/22 48149 -185.220.40.0/22 16047 -185.220.44.0/22 206189 -185.220.48.0/22 205385 -185.220.52.0/24 31034 -185.220.56.0/24 197328 -185.220.57.0/24 59447 -185.220.58.0/23 197328 -185.220.60.0/22 61323 -185.220.64.0/22 198418 -185.220.68.0/22 9009 -185.220.72.0/22 198682 -185.220.76.0/22 202509 -185.220.84.0/22 205375 -185.220.88.0/22 59659 -185.220.92.0/22 199103 -185.220.100.0/24 205100 -185.220.101.0/24 208294 -185.220.102.0/24 60729 -185.220.103.0/24 4224 -185.220.104.0/22 1136 -185.220.108.0/22 60893 -185.220.112.0/22 205371 -185.220.116.0/23 203339 -185.220.118.0/24 203339 -185.220.119.0/24 203557 -185.220.120.0/22 5578 -185.220.124.0/24 205348 -185.220.128.0/22 205354 -185.220.132.0/22 198776 -185.220.144.0/22 58119 -185.220.148.0/22 205376 -185.220.152.0/22 205335 -185.220.156.0/22 205377 -185.220.160.0/22 205373 -185.220.164.0/22 207702 -185.220.168.0/22 29256 -185.220.172.0/24 206281 -185.220.175.0/24 206281 -185.220.180.0/22 205367 -185.220.184.0/24 51999 -185.220.185.0/24 5588 -185.220.186.0/24 5588 -185.220.187.0/24 47390 -185.220.188.0/22 51920 -185.220.192.0/22 56567 -185.220.196.0/22 205370 -185.220.200.0/22 24956 -185.220.204.0/23 41436 -185.220.206.0/24 41436 -185.220.207.0/24 44709 -185.220.208.0/22 31264 -185.220.212.0/22 30925 -185.220.216.0/22 15943 -185.220.220.0/24 41359 -185.220.222.0/23 49558 -185.220.224.0/22 9009 -185.220.228.0/22 205310 -185.220.232.0/22 205752 -185.220.236.0/22 202391 -185.220.240.0/22 201942 -185.220.244.0/22 12637 -185.220.248.0/22 201942 -185.221.0.0/22 2116 -185.221.4.0/22 205360 -185.221.8.0/22 205341 -185.221.12.0/22 205274 -185.221.16.0/21 201942 -185.221.24.0/22 197518 -185.221.28.0/22 31027 -185.221.32.0/22 21230 -185.221.36.0/22 48854 -185.221.44.0/24 210135 -185.221.45.0/24 28917 -185.221.46.0/24 28917 -185.221.47.0/24 205216 -185.221.52.0/22 205238 -185.221.56.0/22 58046 -185.221.60.0/22 205340 -185.221.64.0/22 7018 -185.221.68.0/23 205272 -185.221.70.0/24 205272 -185.221.72.0/22 62275 -185.221.80.0/22 35007 -185.221.86.0/24 206998 -185.221.88.0/22 199483 -185.221.92.0/22 42040 -185.221.96.0/22 207155 -185.221.100.0/22 206082 -185.221.104.0/22 15817 -185.221.108.0/23 200534 -185.221.110.0/24 50599 -185.221.112.0/22 206210 -185.221.124.0/22 205345 -185.221.128.0/22 201942 -185.221.132.0/24 19693 -185.221.133.0/24 31863 -185.221.134.0/23 35913 -185.221.136.0/22 51402 -185.221.140.0/22 57389 -185.221.144.0/22 205337 -185.221.148.0/22 204073 -185.221.152.0/22 49189 -185.221.156.0/22 57795 -185.221.160.0/22 50113 -185.221.168.0/22 50469 -185.221.172.0/22 202675 -185.221.176.0/22 210080 -185.221.184.0/22 50309 -185.221.188.0/22 201453 -185.221.192.0/22 48359 -185.221.196.0/22 9009 -185.221.200.0/22 204196 -185.221.204.0/22 61323 -185.221.212.0/24 62082 -185.221.216.0/24 393960 -185.221.217.0/24 36352 -185.221.218.0/24 36352 -185.221.220.0/24 62306 -185.221.221.0/24 64417 -185.221.222.0/23 39737 -185.221.224.0/22 60502 -185.221.228.0/24 205263 -185.221.232.0/22 57508 -185.221.248.0/22 202120 -185.221.252.0/22 21183 -185.222.0.0/22 206091 -185.222.4.0/23 205296 -185.222.6.0/24 205296 -185.222.7.0/24 204971 -185.222.8.0/22 62416 -185.222.12.0/22 20612 -185.222.16.0/24 206976 -185.222.17.0/24 205265 -185.222.18.0/24 206976 -185.222.24.0/22 205544 -185.222.28.0/22 201942 -185.222.32.0/22 41083 -185.222.36.0/22 48095 -185.222.40.0/24 49981 -185.222.44.0/22 204099 -185.222.48.0/22 41068 -185.222.52.0/22 41065 -185.222.56.0/22 51447 -185.222.60.0/22 204981 -185.222.64.0/23 200081 -185.222.66.0/24 200081 -185.222.68.0/22 12637 -185.222.72.0/22 205313 -185.222.76.0/22 12046 -185.222.80.0/22 202596 -185.222.88.0/22 203596 -185.222.92.0/22 203971 -185.222.96.0/22 49041 -185.222.100.0/22 198761 -185.222.104.0/24 205126 -185.222.108.0/22 205316 -185.222.112.0/22 60800 -185.222.117.0/24 205315 -185.222.118.0/24 205315 -185.222.120.0/24 57461 -185.222.122.0/24 57461 -185.222.124.0/22 200064 -185.222.132.0/22 48095 -185.222.136.0/23 35913 -185.222.138.0/24 208286 -185.222.140.0/22 205304 -185.222.144.0/22 57809 -185.222.148.0/22 205270 -185.222.152.0/24 205293 -185.222.154.0/23 205293 -185.222.160.0/22 58271 -185.222.164.0/22 201466 -185.222.168.0/22 205309 -185.222.172.0/22 48095 -185.222.176.0/22 34950 -185.222.180.0/22 41061 -185.222.188.0/22 201942 -185.222.192.0/22 205306 -185.222.196.0/22 206278 -185.222.202.0/23 204725 -185.222.204.0/22 202034 -185.222.216.0/22 9009 -185.222.220.0/24 3214 -185.222.221.0/24 6233 -185.222.222.0/24 6233 -185.222.223.0/24 55158 -185.222.228.0/22 33915 -185.222.232.0/24 13127 -185.222.236.0/22 43530 -185.222.240.0/22 46261 -185.222.244.0/22 205289 -185.222.248.0/24 204689 -185.222.250.0/23 204689 -185.222.252.0/22 205173 -185.223.0.0/22 205209 -185.223.4.0/22 205285 -185.223.16.0/22 12301 -185.223.28.0/22 197071 -185.223.32.0/22 48635 -185.223.40.0/22 48095 -185.223.44.0/23 40987 -185.223.46.0/24 40987 -185.223.48.0/23 42152 -185.223.57.0/24 57792 -185.223.58.0/24 64417 -185.223.60.0/22 201942 -185.223.64.0/22 50198 -185.223.68.0/24 205283 -185.223.72.0/22 34422 -185.223.76.0/22 201942 -185.223.80.0/22 201942 -185.223.84.0/24 198730 -185.223.85.0/24 8455 -185.223.86.0/23 8455 -185.223.88.0/22 199659 -185.223.92.0/24 57724 -185.223.93.0/24 14576 -185.223.94.0/23 14576 -185.223.96.0/22 29119 -185.223.104.0/22 33846 -185.223.112.0/22 25521 -185.223.116.0/22 42498 -185.223.120.0/22 205279 -185.223.124.0/22 205277 -185.223.128.0/22 14649 -185.223.132.0/22 200759 -185.223.136.0/22 51681 -185.223.140.0/22 50399 -185.223.144.0/22 50629 -185.223.148.0/22 44407 -185.223.152.0/22 201942 -185.223.156.0/22 41690 -185.223.164.0/23 62468 -185.223.166.0/23 21859 -185.223.168.0/23 56491 -185.223.170.0/24 59996 -185.223.172.0/22 20278 -185.223.176.0/22 29119 -185.223.180.0/22 204596 -185.223.184.0/22 5413 -185.223.192.0/22 205114 -185.223.196.0/22 205260 -185.223.200.0/22 200873 -185.223.208.0/23 39825 -185.223.216.0/23 29119 -185.223.218.0/24 29119 -185.223.219.0/24 205223 -185.223.220.0/22 201942 -185.223.224.0/22 204959 -185.223.228.0/22 35070 -185.223.236.0/22 34244 -185.223.240.0/22 199952 -185.223.244.0/22 41110 -185.223.248.0/22 42831 -185.223.252.0/23 42366 -185.223.254.0/23 35913 -185.224.0.0/22 204938 -185.224.4.0/23 39934 -185.224.6.0/24 39934 -185.224.8.0/22 35032 -185.224.12.0/22 51704 -185.224.16.0/22 205206 -185.224.24.0/22 12453 -185.224.28.0/23 6894 -185.224.33.0/24 39405 -185.224.36.0/22 201942 -185.224.40.0/22 196810 -185.224.44.0/22 47381 -185.224.48.0/22 60267 -185.224.52.0/22 20896 -185.224.56.0/22 49419 -185.224.72.0/22 205250 -185.224.76.0/22 202766 -185.224.80.0/22 204196 -185.224.88.0/22 48635 -185.224.92.0/22 201453 -185.224.100.0/22 205244 -185.224.104.0/22 209691 -185.224.108.0/22 205247 -185.224.112.0/22 48661 -185.224.116.0/22 59790 -185.224.120.0/22 24953 -185.224.124.0/22 29256 -185.224.128.0/22 62068 -185.224.132.0/22 204601 -185.224.136.0/22 47583 -185.224.140.0/22 48095 -185.224.144.0/22 35913 -185.224.152.0/22 15817 -185.224.160.0/23 8717 -185.224.164.0/22 2860 -185.224.168.0/22 132721 -185.224.176.0/22 205229 -185.224.184.0/22 201942 -185.224.188.0/22 43442 -185.224.192.0/22 201942 -185.224.196.0/22 20860 -185.224.200.0/22 205243 -185.224.216.0/22 204591 -185.224.220.0/22 201942 -185.224.224.0/22 52051 -185.224.236.0/22 49405 -185.224.244.0/22 39895 -185.224.248.0/22 56630 -185.224.252.0/22 206405 -185.225.0.0/22 201942 -185.225.4.0/23 40676 -185.225.6.0/24 42831 -185.225.7.0/24 40676 -185.225.12.0/22 46261 -185.225.16.0/22 39798 -185.225.20.0/22 197518 -185.225.24.0/22 51942 -185.225.28.0/22 205119 -185.225.36.0/22 42926 -185.225.40.0/22 29256 -185.225.44.0/22 202596 -185.225.52.0/22 30795 -185.225.60.0/22 56911 -185.225.64.0/22 205149 -185.225.68.0/22 30836 -185.225.76.0/24 57514 -185.225.80.0/22 39364 -185.225.84.0/22 39251 -185.225.88.0/22 29081 -185.225.92.0/22 205218 -185.225.96.0/24 6830 -185.225.97.0/24 205202 -185.225.98.0/24 205202 -185.225.100.0/22 60695 -185.225.108.0/22 51426 -185.225.112.0/22 50673 -185.225.116.0/22 205205 -185.225.128.0/22 35617 -185.225.132.0/22 31400 -185.225.136.0/22 35913 -185.225.140.0/22 12748 -185.225.148.0/22 201453 -185.225.152.0/23 60363 -185.225.156.0/24 34119 -185.225.160.0/24 204951 -185.225.164.0/23 204912 -185.225.166.0/24 204912 -185.225.168.0/22 197518 -185.225.172.0/22 41714 -185.225.176.0/24 201778 -185.225.177.0/24 34629 -185.225.178.0/23 34629 -185.225.180.0/22 204813 -185.225.184.0/22 57943 -185.225.188.0/22 34217 -185.225.192.0/22 205213 -185.225.200.0/23 42031 -185.225.206.0/24 133398 -185.225.207.0/24 44024 -185.225.208.0/22 13213 -185.225.212.0/22 200000 -185.225.216.0/23 202323 -185.225.220.0/22 51088 -185.225.225.0/24 34263 -185.225.226.0/24 207560 -185.225.227.0/24 207595 -185.225.232.0/22 46261 -185.225.236.0/22 32475 -185.225.240.0/24 202251 -185.225.244.0/22 50129 -185.225.248.0/24 36040 -185.225.250.0/23 20940 -185.225.252.0/22 31727 -185.226.0.0/22 205119 -185.226.4.0/22 174 -185.226.8.0/22 201942 -185.226.12.0/22 208660 -185.226.16.0/22 198551 -185.226.20.0/24 204025 -185.226.24.0/22 200000 -185.226.28.0/22 201942 -185.226.32.0/22 205010 -185.226.36.0/22 266842 -185.226.40.0/22 201814 -185.226.44.0/22 57665 -185.226.48.0/22 29608 -185.226.60.0/22 49601 -185.226.64.0/22 205053 -185.226.68.0/22 9009 -185.226.72.0/23 35913 -185.226.74.0/24 137490 -185.226.75.0/24 395800 -185.226.76.0/22 30925 -185.226.80.0/22 48095 -185.226.84.0/24 205188 -185.226.88.0/22 205110 -185.226.92.0/24 205196 -185.226.93.0/24 18450 -185.226.94.0/24 201364 -185.226.95.0/24 174 -185.226.99.0/24 57186 -185.226.104.0/22 201942 -185.226.108.0/22 205185 -185.226.112.0/22 6876 -185.226.117.0/24 60932 -185.226.120.0/22 3320 -185.226.124.0/24 205171 -185.226.126.0/23 204170 -185.226.132.0/22 48944 -185.226.136.0/22 31673 -185.226.140.0/22 31732 -185.226.144.0/22 35913 -185.226.148.0/22 50304 -185.226.152.0/22 60458 -185.226.156.0/22 48655 -185.226.160.0/23 205192 -185.226.162.0/23 49879 -185.226.164.0/24 62092 -185.226.166.0/24 20473 -185.226.168.0/22 205718 -185.226.174.0/24 393559 -185.226.176.0/24 29119 -185.226.177.0/24 205191 -185.226.178.0/24 205191 -185.226.179.0/24 29119 -185.226.180.0/22 197518 -185.226.184.0/23 200924 -185.226.188.0/22 29119 -185.226.192.0/22 39831 -185.226.196.0/22 49467 -185.226.200.0/22 205190 -185.226.204.0/22 61161 -185.226.212.0/22 204287 -185.226.216.0/23 205189 -185.226.220.0/22 61323 -185.226.224.0/24 15404 -185.226.225.0/24 16371 -185.226.228.0/22 201453 -185.226.232.0/22 205179 -185.226.236.0/22 57910 -185.226.242.0/24 8220 -185.226.243.0/24 50629 -185.226.248.0/22 205187 -185.226.252.0/22 208660 -185.227.4.0/22 204728 -185.227.8.0/22 199952 -185.227.12.0/22 8222 -185.227.16.0/22 205181 -185.227.24.0/22 205180 -185.227.28.0/22 210159 -185.227.32.0/22 397796 -185.227.36.0/23 51444 -185.227.39.0/24 51444 -185.227.40.0/22 9009 -185.227.44.0/22 42265 -185.227.48.0/22 16125 -185.227.52.0/23 59790 -185.227.54.0/23 199995 -185.227.56.0/22 60016 -185.227.60.0/22 20860 -185.227.64.0/22 202391 -185.227.68.0/24 206804 -185.227.69.0/24 40676 -185.227.70.0/24 138195 -185.227.71.0/24 7489 -185.227.72.0/22 25596 -185.227.76.0/22 62183 -185.227.80.0/24 61029 -185.227.81.0/24 209280 -185.227.82.0/24 205406 -185.227.83.0/24 8100 -185.227.84.0/22 205153 -185.227.88.0/22 202909 -185.227.92.0/22 39827 -185.227.96.0/22 205155 -185.227.100.0/22 39639 -185.227.104.0/22 47164 -185.227.108.0/24 47447 -185.227.109.0/24 62240 -185.227.110.0/24 60781 -185.227.111.0/24 47447 -185.227.112.0/22 15817 -185.227.116.0/22 205176 -185.227.120.0/22 210129 -185.227.124.0/22 21171 -185.227.128.0/22 201942 -185.227.132.0/22 18530 -185.227.136.0/22 48011 -185.227.140.0/22 29256 -185.227.144.0/22 201942 -185.227.148.0/22 39782 -185.227.152.0/23 55933 -185.227.154.0/24 55933 -185.227.155.0/24 134196 -185.227.156.0/22 209846 -185.227.160.0/23 50056 -185.227.162.0/24 50056 -185.227.164.0/22 29655 -185.227.168.0/22 205168 -185.227.172.0/22 201942 -185.227.176.0/22 201942 -185.227.180.0/22 39615 -185.227.184.0/22 204858 -185.227.188.0/23 205146 -185.227.190.0/24 208145 -185.227.191.0/24 205146 -185.227.192.0/22 207789 -185.227.200.0/22 204591 -185.227.204.0/24 201942 -185.227.205.0/24 202636 -185.227.206.0/23 207046 -185.227.216.0/22 205170 -185.227.220.0/22 50326 -185.227.224.0/22 60316 -185.227.228.0/22 6908 -185.227.232.0/22 34913 -185.227.236.0/22 205169 -185.227.240.0/22 35913 -185.227.244.0/22 50352 -185.227.248.0/22 9009 -185.227.252.0/22 46261 -185.228.0.0/22 201942 -185.228.4.0/22 200064 -185.228.8.0/23 24940 -185.228.12.0/22 29256 -185.228.16.0/23 42366 -185.228.18.0/24 3257 -185.228.19.0/24 35913 -185.228.20.0/22 205167 -185.228.24.0/22 197216 -185.228.28.0/22 205166 -185.228.32.0/22 8540 -185.228.36.0/22 36351 -185.228.40.0/22 50226 -185.228.44.0/22 46261 -185.228.48.0/22 206805 -185.228.52.0/23 203679 -185.228.54.0/24 203679 -185.228.56.0/23 50673 -185.228.58.0/24 50673 -185.228.60.0/22 31061 -185.228.64.0/22 208229 -185.228.68.0/22 36351 -185.228.72.0/22 197518 -185.228.76.0/22 3255 -185.228.80.0/24 209280 -185.228.81.0/24 8100 -185.228.83.0/24 205406 -185.228.92.0/22 136184 -185.228.96.0/22 16276 -185.228.100.0/22 25133 -185.228.104.0/22 6876 -185.228.108.0/22 60695 -185.228.112.0/23 198539 -185.228.116.0/22 201453 -185.228.120.0/23 205104 -185.228.122.0/23 29119 -185.228.124.0/22 205718 -185.228.132.0/22 57354 -185.228.136.0/22 197540 -185.228.140.0/22 199319 -185.228.160.0/22 210219 -185.228.164.0/22 39736 -185.228.168.0/22 205157 -185.228.172.0/22 33932 -185.228.176.0/24 39614 -185.228.178.0/23 39614 -185.228.180.0/22 198823 -185.228.184.0/24 133201 -185.228.185.0/24 134548 -185.228.186.0/23 134548 -185.228.188.0/22 202120 -185.228.192.0/22 39720 -185.228.196.0/22 39686 -185.228.204.0/23 204934 -185.228.212.0/22 29148 -185.228.216.0/22 48095 -185.228.220.0/22 209529 -185.228.224.0/22 396164 -185.228.228.0/22 25117 -185.228.232.0/22 64439 -185.228.244.0/22 62235 -185.229.0.0/23 204781 -185.229.3.0/24 205118 -185.229.4.0/22 206576 -185.229.8.0/22 3175 -185.229.12.0/22 205399 -185.229.16.0/22 51616 -185.229.20.0/22 25577 -185.229.24.0/22 200899 -185.229.28.0/22 39650 -185.229.32.0/22 49544 -185.229.36.0/22 39659 -185.229.40.0/22 21472 -185.229.44.0/22 29119 -185.229.48.0/22 35826 -185.229.52.0/22 201290 -185.229.56.0/23 35913 -185.229.58.0/24 49453 -185.229.59.0/24 30083 -185.229.60.0/22 202341 -185.229.64.0/23 48940 -185.229.66.0/24 50113 -185.229.67.0/24 205135 -185.229.68.0/23 39671 -185.229.70.0/24 39671 -185.229.72.0/22 205119 -185.229.80.0/22 42707 -185.229.88.0/22 24940 -185.229.92.0/22 205144 -185.229.96.0/22 29119 -185.229.100.0/22 207715 -185.229.104.0/22 7922 -185.229.108.0/22 205143 -185.229.112.0/22 47583 -185.229.116.0/23 42366 -185.229.118.0/23 46261 -185.229.120.0/22 197793 -185.229.124.0/22 201893 -185.229.128.0/22 1741 -185.229.133.0/24 39664 -185.229.135.0/24 39664 -185.229.136.0/22 39401 -185.229.140.0/22 62373 -185.229.144.0/24 31027 -185.229.148.0/22 204988 -185.229.152.0/24 49187 -185.229.156.0/22 205718 -185.229.160.0/22 24904 -185.229.172.0/22 31263 -185.229.176.0/22 60032 -185.229.180.0/22 206331 -185.229.184.0/22 51522 -185.229.188.0/22 60068 -185.229.192.0/22 48642 -185.229.196.0/22 205718 -185.229.200.0/22 61094 -185.229.204.0/22 53889 -185.229.208.0/22 200428 -185.229.212.0/22 39640 -185.229.216.0/22 39639 -185.229.224.0/23 41436 -185.229.226.0/24 44709 -185.229.227.0/24 41436 -185.229.228.0/22 31726 -185.229.232.0/22 204108 -185.229.236.0/22 60798 -185.229.240.0/23 64236 -185.229.242.0/24 64236 -185.229.243.0/24 40676 -185.229.252.0/22 39251 -185.230.0.0/22 29119 -185.230.4.0/22 45007 -185.230.8.0/22 42487 -185.230.12.0/22 197706 -185.230.16.0/23 60118 -185.230.18.0/24 60118 -185.230.20.0/23 15623 -185.230.22.0/24 15623 -185.230.23.0/24 59909 -185.230.24.0/22 3246 -185.230.28.0/22 57263 -185.230.32.0/22 49515 -185.230.40.0/22 205049 -185.230.44.0/22 205692 -185.230.48.0/21 201942 -185.230.56.0/22 205119 -185.230.60.0/22 58182 -185.230.64.0/22 201942 -185.230.68.0/22 205103 -185.230.76.0/22 204515 -185.230.80.0/22 205099 -185.230.84.0/22 198570 -185.230.88.0/22 56485 -185.230.96.0/22 198682 -185.230.108.0/22 39869 -185.230.112.0/22 35432 -185.230.116.0/22 31736 -185.230.120.0/22 13213 -185.230.124.0/22 9009 -185.230.132.0/22 12453 -185.230.136.0/22 46261 -185.230.142.0/23 59504 -185.230.144.0/22 201453 -185.230.148.0/22 205106 -185.230.152.0/23 205098 -185.230.154.0/24 205098 -185.230.156.0/24 205107 -185.230.157.0/24 210065 -185.230.160.0/22 29551 -185.230.164.0/22 20541 -185.230.168.0/22 205105 -185.230.172.0/22 197412 -185.230.176.0/22 13170 -185.230.182.0/23 210008 -185.230.184.0/22 196810 -185.230.188.0/22 201578 -185.230.200.0/22 204373 -185.230.204.0/22 39568 -185.230.208.0/22 50837 -185.230.212.0/23 41913 -185.230.214.0/24 41913 -185.230.215.0/24 205111 -185.230.221.0/24 207080 -185.230.222.0/24 208024 -185.230.223.0/24 206924 -185.230.224.0/22 51101 -185.230.228.0/22 9009 -185.230.236.0/22 205093 -185.230.240.0/23 49037 -185.230.242.0/24 49037 -185.230.243.0/24 39577 -185.230.248.0/22 7922 -185.231.0.0/22 205073 -185.231.4.0/24 42989 -185.231.5.0/24 51201 -185.231.7.0/24 42989 -185.231.8.0/22 64476 -185.231.12.0/23 205074 -185.231.14.0/24 205074 -185.231.16.0/22 39563 -185.231.20.0/22 205086 -185.231.24.0/21 42707 -185.231.32.0/24 205083 -185.231.40.0/24 1299 -185.231.41.0/24 41659 -185.231.44.0/22 29256 -185.231.48.0/22 201193 -185.231.52.0/22 204823 -185.231.60.0/22 43722 -185.231.68.0/22 204601 -185.231.72.0/22 21263 -185.231.76.0/24 205064 -185.231.78.0/24 62417 -185.231.80.0/24 205075 -185.231.81.0/24 204905 -185.231.84.0/22 49172 -185.231.88.0/22 204609 -185.231.92.0/22 205057 -185.231.96.0/22 205071 -185.231.100.0/22 30893 -185.231.104.0/22 204970 -185.231.108.0/22 43260 -185.231.112.0/24 200406 -185.231.113.0/24 47285 -185.231.114.0/23 47285 -185.231.116.0/22 205718 -185.231.120.0/22 39567 -185.231.124.0/22 20647 -185.231.128.0/22 41897 -185.231.132.0/22 205046 -185.231.136.0/22 205026 -185.231.140.0/22 205027 -185.231.144.0/22 1342 -185.231.148.0/22 207789 -185.231.152.0/22 48282 -185.231.156.0/22 200899 -185.231.168.0/22 206158 -185.231.172.0/22 31732 -185.231.176.0/22 205055 -185.231.184.0/22 31479 -185.231.188.0/22 205041 -185.231.196.0/22 205052 -185.231.200.0/22 25525 -185.231.204.0/22 48430 -185.231.208.0/22 205051 -185.231.212.0/23 204965 -185.231.216.0/23 61049 -185.231.218.0/24 61049 -185.231.220.0/24 24961 -185.231.222.0/23 42106 -185.231.228.0/22 205045 -185.231.236.0/22 205044 -185.231.240.0/22 205040 -185.231.244.0/22 202984 -185.231.248.0/22 9009 -185.231.252.0/22 42366 -185.232.0.0/22 57376 -185.232.4.0/23 42366 -185.232.6.0/23 3257 -185.232.8.0/22 201942 -185.232.12.0/23 35913 -185.232.15.0/24 35913 -185.232.16.0/22 209372 -185.232.20.0/22 9009 -185.232.24.0/22 197033 -185.232.28.0/22 39556 -185.232.32.0/22 15943 -185.232.36.0/22 203936 -185.232.48.0/22 60609 -185.232.52.0/23 200313 -185.232.55.0/24 200313 -185.232.56.0/22 135391 -185.232.64.0/24 62380 -185.232.65.0/24 42397 -185.232.66.0/24 62380 -185.232.67.0/24 39517 -185.232.72.0/22 205024 -185.232.76.0/22 200675 -185.232.80.0/22 57389 -185.232.84.0/24 43233 -185.232.85.0/24 395800 -185.232.92.0/23 55933 -185.232.94.0/24 133731 -185.232.95.0/24 55933 -185.232.100.0/22 205112 -185.232.104.0/22 49063 -185.232.108.0/22 209952 -185.232.112.0/22 59865 -185.232.124.0/22 209385 -185.232.128.0/22 48264 -185.232.132.0/23 201453 -185.232.134.0/24 201453 -185.232.135.0/24 202227 -185.232.136.0/22 42498 -185.232.140.0/22 42525 -185.232.144.0/22 204990 -185.232.148.0/24 207199 -185.232.149.0/24 48854 -185.232.160.0/22 49033 -185.232.164.0/22 44142 -185.232.168.0/22 50113 -185.232.172.0/22 43160 -185.232.176.0/22 205894 -185.232.180.0/22 203161 -185.232.184.0/22 39647 -185.232.188.0/22 24953 -185.232.192.0/22 56403 -185.232.196.0/24 205011 -185.232.197.0/24 396886 -185.232.200.0/22 25540 -185.232.204.0/22 201942 -185.232.208.0/22 49253 -185.232.212.0/22 51857 -185.232.216.0/22 204924 -185.232.220.0/22 202283 -185.232.228.0/22 205009 -185.232.236.0/22 204958 -185.232.240.0/22 25472 -185.232.248.0/24 48635 -185.232.252.0/22 201597 -185.233.4.0/22 30931 -185.233.8.0/22 31167 -185.233.12.0/22 64413 -185.233.16.0/23 9009 -185.233.18.0/23 51765 -185.233.20.0/22 205002 -185.233.24.0/22 50767 -185.233.36.0/22 200000 -185.233.40.0/21 200000 -185.233.48.0/22 41765 -185.233.52.0/22 15817 -185.233.56.0/22 204920 -185.233.68.0/22 209822 -185.233.72.0/22 203667 -185.233.76.0/22 3339 -185.233.80.0/22 50113 -185.233.88.0/22 39647 -185.233.92.0/22 29076 -185.233.96.0/22 204978 -185.233.100.0/22 198985 -185.233.104.0/22 197540 -185.233.113.0/24 208756 -185.233.116.0/22 200000 -185.233.120.0/22 200000 -185.233.124.0/22 197706 -185.233.128.0/22 42376 -185.233.132.0/22 205763 -185.233.136.0/22 200000 -185.233.142.0/23 39533 -185.233.148.0/22 60118 -185.233.152.0/23 29182 -185.233.154.0/23 200000 -185.233.156.0/22 204962 -185.233.160.0/22 204964 -185.233.168.0/23 204974 -185.233.170.0/24 204974 -185.233.172.0/22 204983 -185.233.176.0/22 62455 -185.233.180.0/23 204986 -185.233.182.0/23 201167 -185.233.184.0/24 205220 -185.233.185.0/24 30860 -185.233.186.0/24 30860 -185.233.187.0/24 206485 -185.233.192.0/22 35810 -185.233.196.0/22 204839 -185.233.200.0/22 50113 -185.233.208.0/22 205119 -185.233.212.0/22 42707 -185.233.216.0/24 58075 -185.233.220.0/22 29256 -185.233.224.0/22 9009 -185.233.228.0/22 41011 -185.233.232.0/22 205512 -185.233.236.0/22 57214 -185.233.240.0/22 46261 -185.233.244.0/23 201713 -185.233.246.0/24 34984 -185.233.247.0/24 206119 -185.233.248.0/22 51499 -185.234.0.0/24 204979 -185.234.4.0/22 48095 -185.234.20.0/22 201942 -185.234.28.0/22 43541 -185.234.32.0/22 42366 -185.234.36.0/22 61323 -185.234.40.0/22 204975 -185.234.48.0/22 57752 -185.234.52.0/24 202448 -185.234.53.0/24 49920 -185.234.54.0/23 49920 -185.234.56.0/22 200736 -185.234.64.0/22 205692 -185.234.68.0/22 46261 -185.234.72.0/24 30823 -185.234.73.0/24 206804 -185.234.74.0/24 39192 -185.234.75.0/24 204826 -185.234.84.0/22 59951 -185.234.88.0/22 201661 -185.234.92.0/22 16186 -185.234.96.0/22 8455 -185.234.104.0/22 204969 -185.234.116.0/24 39741 -185.234.120.0/24 202765 -185.234.124.0/22 206278 -185.234.128.0/22 49645 -185.234.132.0/22 207167 -185.234.136.0/24 15404 -185.234.140.0/22 198551 -185.234.144.0/22 45671 -185.234.148.0/22 201942 -185.234.152.0/22 41960 -185.234.156.0/22 205575 -185.234.172.0/22 204947 -185.234.176.0/22 200000 -185.234.180.0/23 39679 -185.234.183.0/24 39679 -185.234.184.0/22 29119 -185.234.188.0/22 210114 -185.234.192.0/22 204955 -185.234.200.0/22 29075 -185.234.204.0/24 204400 -185.234.208.0/22 44086 -185.234.213.0/24 62230 -185.234.214.0/24 44421 -185.234.215.0/24 205651 -185.234.216.0/23 197226 -185.234.218.0/24 197226 -185.234.219.0/24 210273 -185.234.220.0/22 202120 -185.234.224.0/24 39691 -185.234.226.0/24 39691 -185.234.228.0/23 203997 -185.234.232.0/22 39507 -185.234.236.0/22 204940 -185.234.240.0/22 198004 -185.234.248.0/22 204948 -185.235.0.0/22 204939 -185.235.4.0/22 35625 -185.235.12.0/22 64236 -185.235.16.0/22 29256 -185.235.20.0/22 5602 -185.235.24.0/22 29256 -185.235.28.0/22 202629 -185.235.36.0/23 204135 -185.235.40.0/22 43395 -185.235.44.0/23 39615 -185.235.48.0/22 204943 -185.235.56.0/22 203224 -185.235.64.0/22 50596 -185.235.68.0/23 50599 -185.235.70.0/24 62081 -185.235.72.0/23 204925 -185.235.74.0/24 204925 -185.235.80.0/24 62406 -185.235.81.0/24 62303 -185.235.84.0/24 44788 -185.235.85.0/24 19750 -185.235.86.0/23 55569 -185.235.88.0/24 208321 -185.235.92.0/22 204891 -185.235.98.0/23 206918 -185.235.100.0/22 48990 -185.235.104.0/22 44407 -185.235.112.0/22 8462 -185.235.116.0/22 209508 -185.235.120.0/22 46261 -185.235.124.0/22 198317 -185.235.128.0/22 204601 -185.235.132.0/22 205673 -185.235.136.0/22 202391 -185.235.160.0/23 204411 -185.235.163.0/24 204411 -185.235.168.0/22 200000 -185.235.172.0/22 49223 -185.235.176.0/22 204196 -185.235.180.0/22 209242 -185.235.184.0/23 41033 -185.235.186.0/24 202473 -185.235.187.0/24 202360 -185.235.188.0/23 48461 -185.235.192.0/22 200793 -185.235.196.0/22 204876 -185.235.200.0/22 57710 -185.235.208.0/22 204922 -185.235.212.0/23 39416 -185.235.214.0/24 44475 -185.235.216.0/24 208347 -185.235.220.0/22 199496 -185.235.232.0/22 8881 -185.235.236.0/22 33011 -185.235.240.0/22 200736 -185.235.245.0/24 197226 -185.235.248.0/22 204906 -185.236.0.0/22 204869 -185.236.4.0/22 42707 -185.236.8.0/23 31400 -185.236.10.0/24 34941 -185.236.12.0/22 201500 -185.236.16.0/22 47886 -185.236.20.0/23 200859 -185.236.22.0/23 52125 -185.236.24.0/22 201942 -185.236.28.0/22 49371 -185.236.32.0/22 209587 -185.236.37.0/24 48551 -185.236.38.0/24 34871 -185.236.39.0/24 48551 -185.236.40.0/24 12552 -185.236.41.0/24 51747 -185.236.42.0/23 51747 -185.236.48.0/22 3163 -185.236.56.0/22 50954 -185.236.60.0/22 7922 -185.236.64.0/21 49821 -185.236.76.0/22 42159 -185.236.80.0/24 40065 -185.236.81.0/24 209609 -185.236.82.0/23 9009 -185.236.84.0/22 5588 -185.236.88.0/22 204904 -185.236.92.0/22 262287 -185.236.96.0/22 43372 -185.236.100.0/22 29256 -185.236.104.0/23 204903 -185.236.108.0/23 43372 -185.236.112.0/22 200392 -185.236.116.0/24 64417 -185.236.119.0/24 64417 -185.236.120.0/22 204899 -185.236.132.0/22 35568 -185.236.144.0/22 204897 -185.236.148.0/22 51834 -185.236.152.0/22 41922 -185.236.156.0/22 43812 -185.236.160.0/22 204886 -185.236.164.0/23 202909 -185.236.166.0/24 202909 -185.236.167.0/24 1764 -185.236.168.0/22 35394 -185.236.176.0/22 24730 -185.236.180.0/22 197216 -185.236.184.0/22 266842 -185.236.188.0/22 31543 -185.236.192.0/24 174 -185.236.196.0/22 39436 -185.236.200.0/22 9009 -185.236.204.0/23 42334 -185.236.208.0/22 50676 -185.236.212.0/22 36351 -185.236.216.0/22 204144 -185.236.220.0/22 39430 -185.236.224.0/22 197696 -185.236.228.0/22 47674 -185.236.232.0/22 206916 -185.236.240.0/22 204880 -185.236.244.0/22 29119 -185.236.248.0/22 209910 -185.236.252.0/23 205487 -185.237.0.0/24 3320 -185.237.2.0/24 3320 -185.237.8.0/22 64413 -185.237.16.0/23 21183 -185.237.18.0/23 38916 -185.237.20.0/22 202445 -185.237.24.0/22 39419 -185.237.28.0/22 48707 -185.237.32.0/23 34966 -185.237.34.0/24 34154 -185.237.36.0/22 52157 -185.237.48.0/22 39404 -185.237.52.0/22 39233 -185.237.60.0/22 7922 -185.237.64.0/22 15817 -185.237.68.0/22 9021 -185.237.72.0/23 198356 -185.237.74.0/23 8870 -185.237.76.0/24 204854 -185.237.79.0/24 204854 -185.237.80.0/24 34984 -185.237.81.0/24 29262 -185.237.82.0/23 34984 -185.237.84.0/24 204834 -185.237.85.0/24 204865 -185.237.86.0/23 204834 -185.237.88.0/22 16353 -185.237.92.0/22 16125 -185.237.96.0/23 204548 -185.237.98.0/23 210329 -185.237.100.0/24 204859 -185.237.104.0/22 56421 -185.237.124.0/22 3342 -185.237.128.0/23 206474 -185.237.131.0/24 206474 -185.237.132.0/22 16097 -185.237.136.0/22 209984 -185.237.140.0/22 198709 -185.237.144.0/22 47583 -185.237.148.0/22 201000 -185.237.156.0/22 57478 -185.237.160.0/24 52195 -185.237.161.0/24 203408 -185.237.164.0/22 35280 -185.237.168.0/24 6830 -185.237.172.0/22 204861 -185.237.176.0/24 50873 -185.237.177.0/24 44592 -185.237.178.0/23 44592 -185.237.180.0/22 49178 -185.237.188.0/22 42926 -185.237.192.0/22 31480 -185.237.200.0/22 29119 -185.237.204.0/23 15626 -185.237.206.0/23 21100 -185.237.208.0/24 204883 -185.237.210.0/24 61430 -185.237.212.0/22 29119 -185.237.216.0/22 205255 -185.237.220.0/22 205145 -185.237.224.0/22 205692 -185.237.228.0/22 201241 -185.237.232.0/22 204861 -185.237.236.0/22 31444 -185.237.240.0/22 204851 -185.237.244.0/22 3292 -185.237.248.0/22 197175 -185.237.252.0/22 46261 -185.238.0.0/22 200313 -185.238.4.0/22 24904 -185.238.8.0/22 13213 -185.238.12.0/22 47176 -185.238.20.0/24 43754 -185.238.21.0/24 204857 -185.238.24.0/24 57667 -185.238.28.0/23 203393 -185.238.32.0/22 207203 -185.238.36.0/22 198551 -185.238.44.0/22 48359 -185.238.48.0/22 201843 -185.238.52.0/22 41960 -185.238.63.0/24 51619 -185.238.64.0/22 200125 -185.238.68.0/24 207169 -185.238.72.0/22 41508 -185.238.76.0/24 202765 -185.238.88.0/22 9009 -185.238.92.0/24 48838 -185.238.93.0/24 44543 -185.238.94.0/23 44543 -185.238.96.0/22 44385 -185.238.100.0/22 204853 -185.238.104.0/23 29184 -185.238.108.0/22 49033 -185.238.116.0/22 57751 -185.238.120.0/22 57608 -185.238.124.0/22 203187 -185.238.131.0/24 41047 -185.238.132.0/22 61154 -185.238.136.0/22 35196 -185.238.140.0/22 204841 -185.238.144.0/22 29119 -185.238.148.0/22 200547 -185.238.152.0/23 209813 -185.238.156.0/22 204809 -185.238.160.0/22 41011 -185.238.164.0/22 200064 -185.238.176.0/22 202527 -185.238.180.0/22 204832 -185.238.188.0/24 139833 -185.238.189.0/24 49933 -185.238.190.0/24 209861 -185.238.191.0/24 39753 -185.238.196.0/22 3287 -185.238.200.0/22 204825 -185.238.204.0/22 207156 -185.238.208.0/24 62067 -185.238.210.0/23 62067 -185.238.216.0/24 60068 -185.238.218.0/23 210070 -185.238.220.0/22 7922 -185.238.224.0/22 134548 -185.238.228.0/22 201942 -185.238.232.0/22 204821 -185.238.236.0/22 207221 -185.238.240.0/23 35913 -185.238.242.0/24 35913 -185.238.243.0/24 57878 -185.238.244.0/22 204618 -185.238.248.0/24 40065 -185.238.249.0/24 8100 -185.238.250.0/24 40065 -185.238.251.0/24 8100 -185.238.252.0/22 12897 -185.239.0.0/24 60932 -185.239.4.0/22 58327 -185.239.8.0/22 35444 -185.239.12.0/22 200539 -185.239.16.0/22 50710 -185.239.24.0/22 266842 -185.239.28.0/22 204814 -185.239.36.0/22 204797 -185.239.40.0/23 200573 -185.239.42.0/24 200573 -185.239.43.0/24 200410 -185.239.44.0/22 208846 -185.239.48.0/23 204292 -185.239.50.0/23 202423 -185.239.56.0/22 204810 -185.239.60.0/22 57325 -185.239.64.0/22 204480 -185.239.68.0/22 25820 -185.239.72.0/22 204811 -185.239.80.0/22 59710 -185.239.84.0/22 55933 -185.239.88.0/22 39488 -185.239.92.0/22 204806 -185.239.96.0/22 21309 -185.239.100.0/22 209550 -185.239.104.0/22 34549 -185.239.108.0/22 204802 -185.239.112.0/24 209080 -185.239.116.0/22 48317 -185.239.120.0/22 48317 -185.239.128.0/21 48317 -185.239.136.0/22 204895 -185.239.140.0/22 201942 -185.239.144.0/23 62062 -185.239.146.0/23 204804 -185.239.152.0/22 43268 -185.239.161.0/24 51681 -185.239.162.0/23 51681 -185.239.164.0/22 51100 -185.239.168.0/22 41960 -185.239.172.0/22 55081 -185.239.180.0/22 200000 -185.239.184.0/24 43576 -185.239.185.0/24 204541 -185.239.188.0/22 205842 -185.239.192.0/22 1741 -185.239.196.0/22 47648 -185.239.200.0/22 57269 -185.239.208.0/22 46261 -185.239.212.0/22 3257 -185.239.216.0/22 24971 -185.239.220.0/22 61282 -185.239.224.0/24 55933 -185.239.225.0/24 134835 -185.239.226.0/23 134835 -185.239.228.0/22 204581 -185.239.232.0/22 204799 -185.239.236.0/22 197071 -185.239.245.0/24 25369 -185.239.246.0/23 62370 -185.239.248.0/22 35349 -185.239.252.0/22 201942 -185.240.0.0/22 204796 -185.240.4.0/24 9145 -185.240.8.0/22 51948 -185.240.12.0/22 204795 -185.240.16.0/22 204794 -185.240.20.0/22 48146 -185.240.24.0/22 35913 -185.240.28.0/22 56898 -185.240.32.0/23 204789 -185.240.34.0/23 61357 -185.240.40.0/22 204588 -185.240.44.0/22 209034 -185.240.48.0/22 204895 -185.240.52.0/22 204786 -185.240.60.0/22 8540 -185.240.64.0/23 204317 -185.240.67.0/24 204317 -185.240.68.0/22 62166 -185.240.72.0/22 8823 -185.240.76.0/22 206143 -185.240.80.0/22 202169 -185.240.84.0/22 9009 -185.240.88.0/23 43160 -185.240.90.0/24 43160 -185.240.91.0/24 200845 -185.240.92.0/22 57129 -185.240.96.0/22 204782 -185.240.100.0/23 197793 -185.240.104.0/22 204780 -185.240.108.0/22 49787 -185.240.112.0/22 51088 -185.240.116.0/22 5520 -185.240.120.0/22 201942 -185.240.128.0/22 9009 -185.240.132.0/22 204776 -185.240.136.0/23 203188 -185.240.138.0/23 9050 -185.240.140.0/22 204775 -185.240.144.0/22 44309 -185.240.148.0/22 200796 -185.240.152.0/22 204773 -185.240.156.0/22 201808 -185.240.160.0/22 204196 -185.240.164.0/24 43160 -185.240.165.0/24 200845 -185.240.166.0/23 200845 -185.240.168.0/22 59865 -185.240.172.0/22 13030 -185.240.176.0/23 25540 -185.240.178.0/24 209027 -185.240.179.0/24 25540 -185.240.180.0/22 204770 -185.240.186.0/24 394805 -185.240.188.0/22 42351 -185.240.192.0/22 9009 -185.240.200.0/22 56595 -185.240.204.0/22 59562 -185.240.208.0/22 34244 -185.240.220.0/22 204772 -185.240.224.0/22 58286 -185.240.228.0/22 204758 -185.240.232.0/22 44293 -185.240.236.0/22 54600 -185.240.240.0/22 29551 -185.240.244.0/24 35913 -185.240.245.0/24 40676 -185.240.246.0/23 40676 -185.240.248.0/22 39384 -185.240.252.0/24 64417 -185.240.253.0/24 42296 -185.240.254.0/24 51637 -185.240.255.0/24 64417 -185.241.0.0/22 20565 -185.241.4.0/23 44709 -185.241.6.0/24 12400 -185.241.7.0/24 44709 -185.241.10.0/23 60257 -185.241.12.0/22 9009 -185.241.16.0/22 202308 -185.241.20.0/22 266865 -185.241.24.0/22 204763 -185.241.28.0/22 199290 -185.241.36.0/22 39175 -185.241.40.0/24 135489 -185.241.43.0/24 137443 -185.241.44.0/22 50763 -185.241.48.0/24 204476 -185.241.50.0/24 204476 -185.241.52.0/22 204601 -185.241.56.0/23 30848 -185.241.64.0/22 204760 -185.241.68.0/24 204895 -185.241.70.0/23 9009 -185.241.76.0/22 206894 -185.241.80.0/22 39390 -185.241.84.0/23 15623 -185.241.86.0/24 15623 -185.241.88.0/24 64417 -185.241.91.0/24 64417 -185.241.92.0/22 3242 -185.241.96.0/22 43646 -185.241.100.0/22 204736 -185.241.104.0/22 204700 -185.241.116.0/22 206273 -185.241.120.0/23 203068 -185.241.122.0/23 50129 -185.241.136.0/22 56643 -185.241.140.0/22 57809 -185.241.144.0/22 201602 -185.241.148.0/22 42366 -185.241.152.0/22 47777 -185.241.160.0/22 1653 -185.241.168.0/22 204622 -185.241.172.0/22 205199 -185.241.176.0/22 204755 -185.241.180.0/22 200748 -185.241.184.0/23 204754 -185.241.186.0/24 204754 -185.241.188.0/22 204751 -185.241.196.0/22 41297 -185.241.204.0/22 31367 -185.241.212.0/22 61295 -185.241.220.0/22 200678 -185.241.224.0/22 204731 -185.241.232.0/22 202936 -185.241.236.0/22 200064 -185.241.240.0/22 204351 -185.241.244.0/22 35404 -185.241.252.0/22 47252 -185.242.0.0/22 208846 -185.242.4.0/22 9009 -185.242.8.0/22 204733 -185.242.16.0/22 12494 -185.242.20.0/24 31117 -185.242.21.0/24 57270 -185.242.22.0/23 56361 -185.242.24.0/22 204741 -185.242.28.0/22 12577 -185.242.32.0/22 15391 -185.242.36.0/22 204565 -185.242.40.0/22 204739 -185.242.44.0/23 50056 -185.242.47.0/24 6939 -185.242.48.0/22 204683 -185.242.52.0/22 204737 -185.242.56.0/22 31117 -185.242.60.0/23 12350 -185.242.64.0/22 57866 -185.242.68.0/23 204732 -185.242.72.0/22 207242 -185.242.84.0/22 28753 -185.242.88.0/22 49040 -185.242.92.0/22 207023 -185.242.96.0/22 200773 -185.242.100.0/22 204695 -185.242.104.0/22 43317 -185.242.108.0/22 62370 -185.242.112.0/22 31400 -185.242.116.0/22 42971 -185.242.120.0/22 204941 -185.242.124.0/24 41331 -185.242.125.0/24 60589 -185.242.126.0/23 60589 -185.242.128.0/22 45050 -185.242.132.0/22 50840 -185.242.136.0/24 206359 -185.242.138.0/24 204517 -185.242.140.0/22 39180 -185.242.144.0/24 64417 -185.242.147.0/24 64417 -185.242.148.0/22 57359 -185.242.152.0/22 197113 -185.242.156.0/22 42831 -185.242.160.0/22 42926 -185.242.164.0/22 209936 -185.242.168.0/23 42351 -185.242.170.0/24 49773 -185.242.171.0/24 207879 -185.242.172.0/24 202813 -185.242.173.0/24 203068 -185.242.174.0/24 203068 -185.242.175.0/24 3356 -185.242.180.0/23 60798 -185.242.182.0/24 60798 -185.242.184.0/22 58330 -185.242.188.0/24 204690 -185.242.189.0/24 204691 -185.242.190.0/23 204716 -185.242.196.0/22 204591 -185.242.200.0/22 15623 -185.242.204.0/22 3223 -185.242.208.0/22 202395 -185.242.212.0/24 204136 -185.242.217.0/24 203020 -185.242.218.0/24 201508 -185.242.220.0/22 8455 -185.242.224.0/24 207083 -185.242.225.0/24 8100 -185.242.226.0/24 62068 -185.242.227.0/24 202418 -185.242.228.0/22 197595 -185.242.232.0/22 55933 -185.242.236.0/22 197853 -185.242.240.0/22 9009 -185.242.244.0/22 204701 -185.242.248.0/22 210321 -185.242.252.0/22 49290 -185.243.4.0/23 138545 -185.243.6.0/24 58879 -185.243.7.0/24 132839 -185.243.8.0/22 197540 -185.243.12.0/24 206283 -185.243.13.0/24 198504 -185.243.14.0/24 206283 -185.243.15.0/24 198394 -185.243.16.0/24 16276 -185.243.17.0/24 25540 -185.243.20.0/23 200490 -185.243.22.0/24 200490 -185.243.23.0/24 203038 -185.243.24.0/22 29119 -185.243.28.0/22 204692 -185.243.32.0/22 204698 -185.243.36.0/22 34680 -185.243.40.0/24 136574 -185.243.41.0/24 49466 -185.243.42.0/24 134548 -185.243.43.0/24 137443 -185.243.44.0/22 3320 -185.243.48.0/22 204650 -185.243.52.0/22 41079 -185.243.56.0/23 35913 -185.243.60.0/22 5413 -185.243.64.0/22 31662 -185.243.68.0/22 13101 -185.243.72.0/23 204694 -185.243.74.0/24 204694 -185.243.75.0/24 56911 -185.243.76.0/22 200851 -185.243.84.0/22 60283 -185.243.88.0/22 39647 -185.243.92.0/22 202375 -185.243.100.0/22 206278 -185.243.104.0/22 58273 -185.243.108.0/24 64417 -185.243.111.0/24 64417 -185.243.112.0/23 205406 -185.243.114.0/23 31400 -185.243.116.0/24 35507 -185.243.120.0/22 44407 -185.243.124.0/22 59959 -185.243.132.0/22 15817 -185.243.136.0/22 202334 -185.243.140.0/22 206535 -185.243.144.0/24 210184 -185.243.148.0/22 204664 -185.243.152.0/22 202636 -185.243.156.0/22 208820 -185.243.161.0/24 15576 -185.243.164.0/22 204667 -185.243.168.0/22 12570 -185.243.172.0/22 198668 -185.243.176.0/22 35132 -185.243.181.0/24 209737 -185.243.182.0/24 60721 -185.243.183.0/24 57844 -185.243.184.0/22 204410 -185.243.188.0/22 204196 -185.243.192.0/22 204651 -185.243.196.0/22 9009 -185.243.205.0/24 48362 -185.243.208.0/22 204566 -185.243.212.0/24 395800 -185.243.214.0/24 202322 -185.243.216.0/23 56655 -185.243.219.0/24 208042 -185.243.224.0/22 42525 -185.243.228.0/22 201531 -185.243.232.0/23 34953 -185.243.236.0/22 42351 -185.243.240.0/22 55933 -185.243.252.0/22 42266 -185.244.0.0/22 57131 -185.244.4.0/22 34550 -185.244.8.0/24 60068 -185.244.9.0/24 9009 -185.244.10.0/24 13213 -185.244.11.0/24 46562 -185.244.12.0/22 204649 -185.244.16.0/22 174 -185.244.20.0/22 47895 -185.244.24.0/24 57944 -185.244.26.0/23 13830 -185.244.29.0/24 209623 -185.244.30.0/24 209623 -185.244.31.0/24 42831 -185.244.36.0/24 62068 -185.244.37.0/24 57695 -185.244.38.0/24 8100 -185.244.39.0/24 64425 -185.244.40.0/22 204490 -185.244.48.0/24 41011 -185.244.50.0/24 205220 -185.244.51.0/24 209401 -185.244.52.0/22 204454 -185.244.56.0/22 13157 -185.244.60.0/22 8767 -185.244.64.0/22 204630 -185.244.68.0/23 197886 -185.244.70.0/24 197886 -185.244.71.0/24 197112 -185.244.72.0/22 39405 -185.244.76.0/22 49821 -185.244.80.0/23 29066 -185.244.84.0/22 60552 -185.244.88.0/22 9009 -185.244.92.0/22 208764 -185.244.96.0/22 56324 -185.244.100.0/22 202635 -185.244.105.0/24 62370 -185.244.106.0/23 62370 -185.244.108.0/22 33977 -185.244.112.0/22 41622 -185.244.116.0/22 204647 -185.244.120.0/22 46261 -185.244.124.0/22 204642 -185.244.128.0/24 44901 -185.244.129.0/24 204641 -185.244.130.0/23 204641 -185.244.140.0/22 8870 -185.244.144.0/22 199608 -185.244.148.0/22 60117 -185.244.152.0/22 53856 -185.244.156.0/22 41985 -185.244.164.0/23 44066 -185.244.166.0/23 200303 -185.244.172.0/24 50214 -185.244.173.0/24 50113 -185.244.174.0/24 205507 -185.244.175.0/24 198338 -185.244.176.0/22 204794 -185.244.192.0/22 197540 -185.244.196.0/22 204635 -185.244.200.0/22 207253 -185.244.204.0/22 29256 -185.244.208.0/22 41011 -185.244.212.0/22 9009 -185.244.216.0/22 204601 -185.244.228.0/23 200845 -185.244.230.0/24 43160 -185.244.231.0/24 200845 -185.244.232.0/23 203068 -185.244.234.0/24 207091 -185.244.235.0/24 29119 -185.244.240.0/22 206666 -185.244.244.0/22 29240 -185.244.248.0/24 207452 -185.244.249.0/24 43463 -185.244.250.0/23 43463 -185.244.252.0/23 60016 -185.244.254.0/24 60016 -185.244.255.0/24 41872 -185.245.0.0/22 24000 -185.245.12.0/22 61094 -185.245.16.0/22 196997 -185.245.22.0/24 8823 -185.245.24.0/22 206070 -185.245.28.0/23 208175 -185.245.30.0/24 208175 -185.245.32.0/22 201942 -185.245.36.0/22 204623 -185.245.40.0/22 55933 -185.245.44.0/22 39507 -185.245.48.0/22 16245 -185.245.52.0/24 204616 -185.245.53.0/24 204184 -185.245.58.0/23 209014 -185.245.64.0/23 1764 -185.245.66.0/23 42473 -185.245.68.0/22 60441 -185.245.76.0/22 204614 -185.245.80.0/24 62240 -185.245.82.0/23 62240 -185.245.84.0/22 9009 -185.245.88.0/22 42707 -185.245.92.0/23 204818 -185.245.96.0/22 31400 -185.245.100.0/24 12337 -185.245.102.0/24 8972 -185.245.103.0/24 25291 -185.245.104.0/22 49024 -185.245.116.0/23 199542 -185.245.118.0/23 20860 -185.245.120.0/22 50316 -185.245.124.0/22 198047 -185.245.132.0/22 209451 -185.245.136.0/23 204599 -185.245.138.0/24 204599 -185.245.140.0/24 39405 -185.245.143.0/24 204516 -185.245.144.0/22 206602 -185.245.148.0/22 21367 -185.245.152.0/22 206283 -185.245.160.0/23 12329 -185.245.162.0/23 204594 -185.245.164.0/22 204593 -185.245.168.0/22 200615 -185.245.180.0/22 46261 -185.245.184.0/22 62241 -185.245.188.0/22 200810 -185.245.192.0/22 198498 -185.245.196.0/22 61205 -185.245.200.0/24 48564 -185.245.204.0/22 204538 -185.245.208.0/22 204542 -185.245.212.0/22 201508 -185.245.216.0/22 9009 -185.245.220.0/23 60199 -185.245.224.0/22 204425 -185.245.228.0/22 47692 -185.245.240.0/24 204562 -185.245.241.0/24 41847 -185.245.242.0/23 204562 -185.245.244.0/24 61204 -185.245.245.0/24 48095 -185.245.246.0/24 51024 -185.245.247.0/24 64417 -185.245.252.0/24 21211 -185.245.253.0/24 35913 -185.245.254.0/23 200064 -185.246.0.0/22 34624 -185.246.4.0/22 48944 -185.246.8.0/22 204578 -185.246.12.0/24 200845 -185.246.13.0/24 43160 -185.246.14.0/24 200845 -185.246.15.0/24 43160 -185.246.16.0/22 198545 -185.246.20.0/22 50782 -185.246.28.0/23 202918 -185.246.30.0/23 41960 -185.246.36.0/22 198090 -185.246.41.0/24 63440 -185.246.44.0/22 50474 -185.246.48.0/23 203128 -185.246.52.0/22 204556 -185.246.56.0/22 201942 -185.246.64.0/22 29182 -185.246.68.0/22 174 -185.246.72.0/22 204579 -185.246.76.0/22 29256 -185.246.80.0/22 2116 -185.246.84.0/22 21409 -185.246.88.0/23 204576 -185.246.90.0/24 204576 -185.246.92.0/22 3269 -185.246.96.0/22 39405 -185.246.100.0/22 205262 -185.246.108.0/22 9009 -185.246.112.0/22 201942 -185.246.116.0/24 59504 -185.246.120.0/22 3223 -185.246.124.0/22 29303 -185.246.128.0/22 42237 -185.246.132.0/24 206576 -185.246.136.0/22 9009 -185.246.140.0/22 204560 -185.246.144.0/22 204572 -185.246.148.0/22 204570 -185.246.152.0/22 56630 -185.246.156.0/22 49475 -185.246.160.0/22 203886 -185.246.164.0/24 204932 -185.246.168.0/22 202543 -185.246.176.0/22 203534 -185.246.180.0/22 50212 -185.246.184.0/22 34702 -185.246.188.0/23 3164 -185.246.192.0/22 204564 -185.246.196.0/22 203244 -185.246.200.0/24 31424 -185.246.204.0/22 204522 -185.246.208.0/22 60068 -185.246.216.0/22 9009 -185.246.224.0/22 205805 -185.246.228.0/22 58264 -185.246.236.0/22 62370 -185.246.240.0/22 43700 -185.246.244.0/22 9009 -185.246.248.0/22 200810 -185.247.0.0/23 207081 -185.247.2.0/24 200526 -185.247.3.0/24 210131 -185.247.8.0/22 46261 -185.247.12.0/22 50304 -185.247.16.0/22 61317 -185.247.20.0/22 6876 -185.247.24.0/22 201105 -185.247.28.0/22 200678 -185.247.32.0/23 25540 -185.247.34.0/24 198545 -185.247.36.0/22 264703 -185.247.40.0/22 12399 -185.247.44.0/22 42707 -185.247.48.0/22 42707 -185.247.52.0/22 25441 -185.247.56.0/22 39184 -185.247.60.0/24 64417 -185.247.61.0/24 3223 -185.247.62.0/24 20668 -185.247.63.0/24 64417 -185.247.64.0/22 56728 -185.247.72.0/22 9009 -185.247.76.0/22 25091 -185.247.84.0/22 39405 -185.247.88.0/22 48728 -185.247.92.0/23 204498 -185.247.94.0/23 208744 -185.247.116.0/24 62240 -185.247.117.0/24 60781 -185.247.118.0/24 47447 -185.247.119.0/24 62240 -185.247.120.0/22 35754 -185.247.124.0/23 13287 -185.247.126.0/24 8220 -185.247.127.0/24 13287 -185.247.128.0/22 42392 -185.247.132.0/22 201172 -185.247.136.0/22 60721 -185.247.140.0/22 204490 -185.247.144.0/22 39647 -185.247.148.0/23 15817 -185.247.150.0/24 201011 -185.247.151.0/24 15817 -185.247.152.0/22 52144 -185.247.156.0/22 43831 -185.247.160.0/22 202506 -185.247.164.0/22 202125 -185.247.168.0/22 204488 -185.247.176.0/23 204473 -185.247.179.0/24 204473 -185.247.180.0/22 55933 -185.247.184.0/24 8100 -185.247.185.0/24 205220 -185.247.186.0/24 47987 -185.247.187.0/24 209401 -185.247.192.0/23 206805 -185.247.194.0/24 206805 -185.247.196.0/22 61062 -185.247.200.0/22 206576 -185.247.204.0/22 59493 -185.247.208.0/22 42331 -185.247.212.0/22 200583 -185.247.216.0/22 205269 -185.247.220.0/22 58277 -185.247.224.0/23 200651 -185.247.228.0/24 12679 -185.247.229.0/24 23338 -185.247.230.0/23 133115 -185.247.232.0/22 49054 -185.247.236.0/22 34244 -185.247.240.0/22 3320 -185.247.244.0/22 57933 -185.247.248.0/22 16347 -185.247.252.0/24 200369 -185.248.0.0/22 206352 -185.248.4.0/22 204426 -185.248.8.0/22 208931 -185.248.12.0/22 204457 -185.248.20.0/22 205718 -185.248.25.0/24 204471 -185.248.28.0/22 200308 -185.248.44.0/22 34718 -185.248.48.0/22 203178 -185.248.52.0/22 204468 -185.248.56.0/22 43260 -185.248.60.0/24 41238 -185.248.64.0/22 21267 -185.248.68.0/22 202374 -185.248.72.0/22 209529 -185.248.76.0/22 203012 -185.248.84.0/23 57578 -185.248.86.0/24 54600 -185.248.87.0/24 6233 -185.248.88.0/22 47886 -185.248.92.0/22 43479 -185.248.96.0/22 204464 -185.248.100.0/22 44812 -185.248.108.0/23 9074 -185.248.112.0/22 204460 -185.248.116.0/22 2119 -185.248.120.0/22 209214 -185.248.124.0/22 205981 -185.248.128.0/22 31531 -185.248.137.0/24 8708 -185.248.138.0/24 9050 -185.248.140.0/24 31400 -185.248.141.0/24 44066 -185.248.142.0/23 31400 -185.248.148.0/22 201832 -185.248.152.0/24 204521 -185.248.156.0/22 20994 -185.248.160.0/22 43350 -185.248.164.0/23 6830 -185.248.167.0/24 6830 -185.248.168.0/22 43668 -185.248.176.0/22 48574 -185.248.180.0/22 42061 -185.248.184.0/22 45671 -185.248.188.0/23 49436 -185.248.190.0/24 49436 -185.248.191.0/24 50873 -185.248.192.0/22 50935 -185.248.196.0/22 50937 -185.248.200.0/22 201942 -185.248.204.0/22 205113 -185.248.208.0/22 29119 -185.248.212.0/22 15967 -185.248.216.0/22 204439 -185.248.220.0/22 59953 -185.248.228.0/22 42707 -185.248.232.0/22 9009 -185.248.236.0/22 58075 -185.248.240.0/22 59919 -185.248.244.0/22 200100 -185.248.252.0/24 12703 -185.248.254.0/24 206576 -185.249.0.0/22 48095 -185.249.4.0/24 5400 -185.249.5.0/24 3300 -185.249.6.0/24 3300 -185.249.8.0/22 3292 -185.249.12.0/22 199837 -185.249.16.0/22 204431 -185.249.24.0/22 199652 -185.249.28.0/22 202727 -185.249.32.0/22 198682 -185.249.36.0/22 39175 -185.249.40.0/22 41960 -185.249.44.0/22 39405 -185.249.48.0/22 203940 -185.249.52.0/24 204430 -185.249.56.0/22 513 -185.249.60.0/22 55933 -185.249.68.0/22 204413 -185.249.76.0/22 29119 -185.249.80.0/22 31631 -185.249.88.0/22 204209 -185.249.92.0/22 208877 -185.249.96.0/22 42366 -185.249.100.0/22 39184 -185.249.104.0/22 204352 -185.249.108.0/22 207174 -185.249.112.0/22 204409 -185.249.116.0/22 51169 -185.249.120.0/22 20860 -185.249.124.0/22 204419 -185.249.128.0/22 9009 -185.249.132.0/22 41011 -185.249.136.0/22 41960 -185.249.140.0/22 202140 -185.249.144.0/22 47169 -185.249.148.0/22 202513 -185.249.152.0/22 52080 -185.249.160.0/22 35297 -185.249.164.0/22 25885 -185.249.168.0/22 12329 -185.249.172.0/22 50113 -185.249.176.0/22 204414 -185.249.180.0/22 34081 -185.249.184.0/22 39405 -185.249.188.0/22 50476 -185.249.192.0/22 16509 -185.249.196.0/24 40676 -185.249.197.0/24 197071 -185.249.198.0/23 197071 -185.249.200.0/23 209737 -185.249.202.0/23 60721 -185.249.204.0/22 202636 -185.249.208.0/22 29119 -185.249.212.0/22 12658 -185.249.216.0/23 9009 -185.249.218.0/24 9009 -185.249.219.0/24 31762 -185.249.221.0/24 40065 -185.249.223.0/24 23738 -185.249.224.0/22 46261 -185.249.228.0/22 202393 -185.249.232.0/22 203603 -185.249.236.0/22 48095 -185.249.240.0/22 60129 -185.249.244.0/22 9009 -185.249.248.0/22 9009 -185.250.0.0/22 51092 -185.250.4.0/22 6758 -185.250.10.0/23 42330 -185.250.12.0/22 200355 -185.250.16.0/22 204403 -185.250.20.0/22 266865 -185.250.24.0/22 206368 -185.250.32.0/24 47474 -185.250.36.0/22 46261 -185.250.44.0/22 35624 -185.250.48.0/22 207133 -185.250.56.0/22 200601 -185.250.60.0/22 56690 -185.250.64.0/22 204366 -185.250.72.0/22 5610 -185.250.76.0/22 29119 -185.250.80.0/22 57799 -185.250.87.0/24 13237 -185.250.88.0/22 204368 -185.250.92.0/22 202583 -185.250.96.0/22 49645 -185.250.100.0/22 204394 -185.250.104.0/22 43927 -185.250.108.0/22 48918 -185.250.112.0/22 210182 -185.250.116.0/22 204391 -185.250.124.0/24 210248 -185.250.128.0/22 39101 -185.250.132.0/22 39278 -185.250.136.0/22 42707 -185.250.140.0/22 204389 -185.250.144.0/22 204379 -185.250.148.0/22 48430 -185.250.152.0/22 51504 -185.250.156.0/22 204386 -185.250.160.0/22 35467 -185.250.164.0/22 197075 -185.250.168.0/22 44592 -185.250.172.0/22 204383 -185.250.176.0/22 204382 -185.250.180.0/22 200320 -185.250.184.0/24 48611 -185.250.192.0/24 34984 -185.250.193.0/24 201079 -185.250.194.0/24 42910 -185.250.195.0/24 201079 -185.250.196.0/23 43833 -185.250.200.0/24 43350 -185.250.204.0/22 204601 -185.250.208.0/22 174 -185.250.212.0/23 196954 -185.250.214.0/23 35913 -185.250.220.0/22 35913 -185.250.224.0/22 48983 -185.250.228.0/22 41034 -185.250.232.0/22 206548 -185.250.236.0/22 200069 -185.250.240.0/24 43260 -185.250.241.0/24 61135 -185.250.242.0/23 43260 -185.250.248.0/24 31400 -185.250.249.0/24 44066 -185.250.250.0/23 31400 -185.250.252.0/22 200899 -185.251.0.0/22 202291 -185.251.4.0/22 12853 -185.251.8.0/22 202276 -185.251.28.0/22 48067 -185.251.32.0/22 48737 -185.251.36.0/22 48282 -185.251.44.0/23 133115 -185.251.46.0/23 23338 -185.251.48.0/22 28883 -185.251.52.0/22 59965 -185.251.60.0/22 204358 -185.251.64.0/22 44028 -185.251.76.0/22 204499 -185.251.80.0/22 203178 -185.251.84.0/23 204376 -185.251.87.0/24 204376 -185.251.88.0/22 35278 -185.251.92.0/22 35379 -185.251.96.0/22 47576 -185.251.100.0/22 13237 -185.251.104.0/22 206752 -185.251.108.0/22 49233 -185.251.116.0/23 40676 -185.251.118.0/24 40676 -185.251.124.0/22 202761 -185.251.128.0/22 50926 -185.251.132.0/22 34993 -185.251.136.0/22 200148 -185.251.144.0/22 49453 -185.251.148.0/22 197204 -185.251.152.0/22 41960 -185.251.156.0/22 9009 -185.251.160.0/22 24904 -185.251.164.0/22 204342 -185.251.168.0/22 9009 -185.251.172.0/24 61004 -185.251.176.0/22 204188 -185.251.188.0/23 51681 -185.251.190.0/24 51681 -185.251.191.0/24 15699 -185.251.192.0/22 61275 -185.251.196.0/22 48464 -185.251.200.0/22 59890 -185.251.204.0/22 60609 -185.251.208.0/22 47806 -185.251.212.0/22 200845 -185.251.216.0/22 202765 -185.251.220.0/22 42498 -185.251.224.0/24 57014 -185.251.225.0/24 59816 -185.251.226.0/24 59816 -185.251.227.0/24 57014 -185.251.228.0/22 197518 -185.251.232.0/24 209669 -185.251.233.0/24 9009 -185.251.234.0/23 9009 -185.251.236.0/22 60341 -185.251.240.0/22 204354 -185.251.248.0/23 133115 -185.251.250.0/23 23338 -185.251.252.0/22 29661 -185.252.2.0/23 199586 -185.252.8.0/22 60675 -185.252.12.0/22 29119 -185.252.16.0/22 206693 -185.252.20.0/24 39183 -185.252.22.0/23 39683 -185.252.24.0/22 56485 -185.252.28.0/24 41881 -185.252.29.0/24 201295 -185.252.30.0/24 209279 -185.252.31.0/24 201295 -185.252.32.0/22 47447 -185.252.36.0/22 48362 -185.252.40.0/23 204324 -185.252.43.0/24 34984 -185.252.44.0/22 202636 -185.252.48.0/22 204344 -185.252.52.0/22 31617 -185.252.56.0/22 204347 -185.252.60.0/22 48317 -185.252.68.0/22 210304 -185.252.72.0/22 44399 -185.252.80.0/22 203582 -185.252.84.0/22 204341 -185.252.88.0/22 204332 -185.252.92.0/22 48964 -185.252.96.0/22 49601 -185.252.100.0/24 43824 -185.252.101.0/24 204356 -185.252.102.0/23 204356 -185.252.104.0/22 9009 -185.252.108.0/22 43700 -185.252.112.0/22 204348 -185.252.116.0/22 201750 -185.252.120.0/23 49981 -185.252.124.0/22 42707 -185.252.128.0/22 49619 -185.252.136.0/22 12357 -185.252.144.0/24 200740 -185.252.145.0/24 42922 -185.252.146.0/23 50113 -185.252.148.0/22 42366 -185.252.152.0/22 206429 -185.252.156.0/24 24935 -185.252.157.0/24 35625 -185.252.158.0/23 24935 -185.252.160.0/22 52055 -185.252.167.0/24 57667 -185.252.168.0/22 48095 -185.252.172.0/22 34977 -185.252.176.0/22 52055 -185.252.180.0/22 199723 -185.252.184.0/22 208738 -185.252.188.0/22 49056 -185.252.196.0/22 51134 -185.252.204.0/22 43700 -185.252.216.0/22 12460 -185.252.220.0/22 197328 -185.252.224.0/22 205624 -185.252.228.0/22 48642 -185.252.232.0/22 46261 -185.252.236.0/22 49028 -185.252.248.0/24 204350 -185.252.250.0/23 204350 -185.252.252.0/23 58744 -185.253.12.0/22 13054 -185.253.16.0/22 49808 -185.253.20.0/24 48989 -185.253.21.0/24 21030 -185.253.22.0/23 21030 -185.253.24.0/22 9009 -185.253.28.0/22 50149 -185.253.32.0/22 29182 -185.253.36.0/22 60032 -185.253.40.0/22 204108 -185.253.48.0/22 41960 -185.253.60.0/22 204335 -185.253.64.0/22 39507 -185.253.69.0/24 42994 -185.253.70.0/24 35758 -185.253.71.0/24 47720 -185.253.72.0/23 203980 -185.253.74.0/24 203980 -185.253.75.0/24 203706 -185.253.76.0/22 204331 -185.253.80.0/22 201502 -185.253.84.0/22 204290 -185.253.88.0/24 51561 -185.253.89.0/24 210204 -185.253.90.0/23 208636 -185.253.92.0/22 39405 -185.253.96.0/22 9009 -185.253.100.0/22 12494 -185.253.104.0/22 31444 -185.253.112.0/22 204327 -185.253.117.0/24 202615 -185.253.118.0/24 202615 -185.253.120.0/24 13213 -185.253.121.0/24 9009 -185.253.122.0/24 9009 -185.253.123.0/24 42237 -185.253.124.0/22 209363 -185.253.132.0/22 61136 -185.253.144.0/22 203936 -185.253.148.0/24 204315 -185.253.149.0/24 202490 -185.253.150.0/24 210242 -185.253.151.0/24 209713 -185.253.156.0/23 39184 -185.253.158.0/24 39184 -185.253.159.0/24 42293 -185.253.160.0/22 269866 -185.253.164.0/22 203222 -185.253.168.0/22 64476 -185.253.172.0/22 204310 -185.253.176.0/22 43872 -185.253.180.0/22 204297 -185.253.184.0/22 48583 -185.253.188.0/22 62182 -185.253.192.0/22 15576 -185.253.196.0/22 50495 -185.253.200.0/22 204309 -185.253.204.0/22 30935 -185.253.208.0/22 39647 -185.253.212.0/22 48707 -185.253.216.0/24 210092 -185.253.217.0/24 34665 -185.253.218.0/24 202302 -185.253.219.0/24 50673 -185.253.224.0/22 29119 -185.253.228.0/22 201953 -185.253.232.0/24 35007 -185.253.233.0/24 203937 -185.253.234.0/24 199787 -185.253.235.0/24 209817 -185.253.240.0/22 61203 -185.253.248.0/23 54600 -185.253.250.0/24 208217 -185.253.251.0/24 9009 -185.253.252.0/22 39224 -185.254.0.0/24 57395 -185.254.8.0/22 57809 -185.254.12.0/22 397044 -185.254.16.0/24 51559 -185.254.18.0/24 43260 -185.254.20.0/24 204299 -185.254.24.0/22 60458 -185.254.28.0/24 203377 -185.254.29.0/24 60721 -185.254.30.0/24 43260 -185.254.31.0/24 209737 -185.254.32.0/23 48418 -185.254.34.0/24 48418 -185.254.35.0/24 42828 -185.254.36.0/22 34224 -185.254.40.0/24 62215 -185.254.44.0/22 43700 -185.254.48.0/22 42707 -185.254.52.0/22 29262 -185.254.56.0/22 58580 -185.254.60.0/23 204296 -185.254.63.0/24 204296 -185.254.64.0/22 48095 -185.254.68.0/22 46562 -185.254.72.0/24 35487 -185.254.73.0/24 54600 -185.254.74.0/23 54600 -185.254.76.0/22 15576 -185.254.80.0/22 43853 -185.254.84.0/24 197882 -185.254.87.0/24 50597 -185.254.88.0/22 57014 -185.254.92.0/23 29262 -185.254.94.0/24 29262 -185.254.95.0/24 206119 -185.254.96.0/22 44066 -185.254.100.0/22 202449 -185.254.104.0/23 266827 -185.254.106.0/23 265747 -185.254.108.0/22 29256 -185.254.116.0/22 204285 -185.254.124.0/22 57353 -185.254.132.0/22 8769 -185.254.136.0/22 43668 -185.254.140.0/22 1764 -185.254.144.0/22 31167 -185.254.148.0/22 210258 -185.254.152.0/22 46261 -185.254.156.0/22 210219 -185.254.160.0/22 203835 -185.254.168.0/22 202074 -185.254.172.0/22 50673 -185.254.176.0/22 203463 -185.254.180.0/22 29256 -185.254.184.0/22 9009 -185.254.188.0/24 208861 -185.254.189.0/24 59504 -185.254.190.0/24 59504 -185.254.191.0/24 208861 -185.254.196.0/22 49746 -185.254.200.0/22 266842 -185.254.204.0/22 203948 -185.254.208.0/22 3257 -185.254.212.0/22 203498 -185.254.216.0/22 197580 -185.254.220.0/22 200999 -185.254.224.0/22 48258 -185.254.228.0/22 204107 -185.254.232.0/22 204081 -185.254.236.0/24 203377 -185.254.237.0/24 43260 -185.254.238.0/23 209737 -185.254.240.0/24 137001 -185.254.241.0/24 136782 -185.254.242.0/24 136782 -185.254.243.0/24 43092 -185.254.244.0/22 204065 -185.254.248.0/22 204058 -185.254.252.0/22 204020 -185.255.0.0/24 3257 -185.255.4.0/22 20839 -185.255.8.0/22 43009 -185.255.12.0/22 200910 -185.255.16.0/24 48192 -185.255.19.0/24 48192 -185.255.20.0/22 202330 -185.255.24.0/22 207083 -185.255.32.0/23 16509 -185.255.34.0/23 47943 -185.255.40.0/22 197226 -185.255.44.0/22 205254 -185.255.48.0/22 44668 -185.255.52.0/23 54600 -185.255.54.0/24 54600 -185.255.55.0/24 3214 -185.255.64.0/22 16001 -185.255.68.0/22 203739 -185.255.72.0/22 48146 -185.255.76.0/22 209283 -185.255.80.0/22 57395 -185.255.84.0/22 200271 -185.255.88.0/24 61173 -185.255.89.0/24 60932 -185.255.90.0/24 61173 -185.255.92.0/22 43260 -185.255.96.0/23 204057 -185.255.98.0/23 20860 -185.255.104.0/22 3339 -185.255.108.0/22 786 -185.255.112.0/24 34962 -185.255.113.0/24 396881 -185.255.114.0/24 35913 -185.255.115.0/24 30475 -185.255.116.0/22 42477 -185.255.120.0/22 42237 -185.255.124.0/22 210219 -185.255.128.0/24 40676 -185.255.129.0/24 35913 -185.255.130.0/23 35913 -185.255.132.0/22 50113 -185.255.144.0/22 58286 -185.255.148.0/22 206487 -185.255.152.0/24 137882 -185.255.153.0/24 131477 -185.255.154.0/24 207983 -185.255.155.0/24 202365 -185.255.156.0/22 60111 -185.255.176.0/23 49107 -185.255.178.0/23 202933 -185.255.180.0/22 203872 -185.255.184.0/24 206476 -185.255.187.0/24 206476 -185.255.188.0/22 31518 -185.255.192.0/22 43463 -185.255.196.0/22 265747 -185.255.200.0/22 197518 -185.255.204.0/22 202655 -185.255.208.0/22 202391 -185.255.212.0/22 200475 -185.255.221.0/24 43019 -185.255.224.0/22 9009 -185.255.228.0/22 203824 -185.255.232.0/22 39530 -185.255.236.0/22 43668 -185.255.244.0/22 203602 -185.255.252.0/22 199390 -186.0.0.0/17 13489 -186.0.128.0/21 27953 -186.0.136.0/21 52251 -186.0.152.0/22 11392 -186.0.156.0/22 267770 -186.0.160.0/20 52255 -186.0.176.0/22 61510 -186.0.180.0/22 263244 -186.0.184.0/22 263776 -186.0.188.0/22 23201 -186.0.193.0/24 7049 -186.0.195.0/24 7049 -186.0.196.0/22 7049 -186.0.200.0/21 7049 -186.0.208.0/21 7049 -186.0.216.0/24 27735 -186.0.221.0/24 7049 -186.0.222.0/24 7049 -186.0.224.0/21 7049 -186.0.233.0/24 7049 -186.0.234.0/23 7049 -186.0.236.0/24 7049 -186.0.238.0/23 7049 -186.0.252.0/24 7049 -186.1.0.0/18 18840 -186.1.64.0/18 27887 -186.1.128.0/24 265705 -186.1.130.0/24 265705 -186.1.132.0/24 265705 -186.1.134.0/23 265705 -186.1.136.0/21 265705 -186.1.144.0/22 265705 -186.1.148.0/24 265705 -186.1.150.0/23 265705 -186.1.160.0/22 27837 -186.1.164.0/24 18678 -186.1.165.0/24 27837 -186.1.166.0/23 27837 -186.1.168.0/23 18678 -186.1.170.0/24 27837 -186.1.171.0/24 18678 -186.1.172.0/22 27837 -186.1.176.0/21 27837 -186.1.184.0/22 27837 -186.1.188.0/24 27837 -186.1.189.0/24 18678 -186.1.190.0/23 27837 -186.1.192.0/20 52260 -186.1.208.0/20 262189 -186.1.224.0/20 52251 -186.1.240.0/21 52251 -186.1.250.0/24 3549 -186.2.0.0/17 28024 -186.2.129.0/24 52262 -186.2.131.0/24 52262 -186.2.132.0/22 52262 -186.2.136.0/21 52262 -186.2.144.0/22 52262 -186.2.148.0/23 23383 -186.2.150.0/23 52262 -186.2.152.0/21 52262 -186.2.160.0/22 262254 -186.2.165.0/24 262254 -186.2.166.0/23 262254 -186.2.168.0/23 262254 -186.2.170.0/24 262254 -186.2.172.0/24 262254 -186.2.174.0/24 262254 -186.2.176.0/20 52233 -186.2.192.0/19 23201 -186.2.224.0/20 23201 -186.2.240.0/22 52408 -186.2.244.0/22 263175 -186.2.248.0/22 266163 -186.3.0.0/22 27947 -186.3.4.0/23 27947 -186.3.6.0/24 264668 -186.3.7.0/24 27947 -186.3.8.0/21 27947 -186.3.16.0/21 27947 -186.3.24.0/22 27947 -186.3.28.0/23 27947 -186.3.30.0/24 28097 -186.3.31.0/24 27947 -186.3.32.0/19 27947 -186.3.64.0/18 27947 -186.3.128.0/17 27947 -186.4.0.0/24 20299 -186.4.2.0/23 20299 -186.4.4.0/23 20299 -186.4.6.0/23 262197 -186.4.8.0/21 262197 -186.4.16.0/20 262197 -186.4.32.0/20 262197 -186.4.48.0/21 262197 -186.4.56.0/22 262197 -186.4.62.0/23 262197 -186.4.64.0/18 27964 -186.4.128.0/17 27947 -186.5.0.0/17 27947 -186.5.128.0/24 23520 -186.5.129.0/24 26426 -186.5.130.0/23 26426 -186.5.132.0/22 26426 -186.5.136.0/21 26426 -186.5.144.0/20 26426 -186.5.160.0/20 27876 -186.5.176.0/20 27971 -186.5.192.0/22 27997 -186.5.196.0/23 27997 -186.5.198.0/24 27997 -186.5.199.0/24 264691 -186.5.200.0/21 27997 -186.5.208.0/21 27997 -186.5.216.0/23 27997 -186.5.218.0/23 264691 -186.5.220.0/24 27997 -186.5.221.0/24 264691 -186.5.222.0/23 27997 -186.5.224.0/22 52384 -186.5.228.0/22 52372 -186.5.232.0/21 61466 -186.5.240.0/20 262229 -186.6.0.0/15 6400 -186.8.0.0/16 19422 -186.9.0.0/16 27925 -186.10.0.0/19 6471 -186.10.32.0/20 6471 -186.10.48.0/21 6471 -186.10.56.0/24 27651 -186.10.57.0/24 6471 -186.10.58.0/23 6471 -186.10.60.0/22 6471 -186.10.64.0/19 6471 -186.10.96.0/21 6471 -186.10.104.0/24 27651 -186.10.105.0/24 6471 -186.10.106.0/23 6471 -186.10.108.0/22 6471 -186.10.112.0/20 6471 -186.10.128.0/23 27651 -186.10.130.0/24 27651 -186.10.131.0/24 6471 -186.10.132.0/22 6471 -186.10.136.0/24 6471 -186.10.137.0/24 27986 -186.10.138.0/24 27986 -186.10.139.0/24 6471 -186.10.140.0/22 6471 -186.10.144.0/20 6471 -186.10.160.0/21 6471 -186.10.168.0/24 6471 -186.10.169.0/24 27651 -186.10.170.0/23 6471 -186.10.172.0/23 6471 -186.10.174.0/24 27651 -186.10.175.0/24 6471 -186.10.176.0/24 6471 -186.10.177.0/24 27651 -186.10.178.0/23 6471 -186.10.180.0/22 6471 -186.10.184.0/24 6471 -186.10.185.0/24 27651 -186.10.186.0/24 27651 -186.10.187.0/24 6471 -186.10.188.0/23 6471 -186.10.190.0/23 27651 -186.10.192.0/22 27651 -186.10.196.0/23 27651 -186.10.198.0/23 6471 -186.10.200.0/21 6471 -186.10.208.0/22 6471 -186.10.212.0/23 6471 -186.10.214.0/24 27651 -186.10.215.0/24 6471 -186.10.216.0/24 27651 -186.10.217.0/24 6471 -186.10.218.0/23 6471 -186.10.220.0/23 6471 -186.10.222.0/24 6471 -186.10.223.0/24 27651 -186.10.224.0/20 6471 -186.10.240.0/21 6471 -186.10.248.0/22 6471 -186.10.252.0/23 6471 -186.10.254.0/24 6471 -186.10.255.0/24 27651 -186.11.0.0/17 27651 -186.11.128.0/17 27925 -186.12.0.0/18 11664 -186.12.64.0/19 11664 -186.12.96.0/20 11664 -186.12.112.0/21 11664 -186.12.120.0/21 19037 -186.12.128.0/19 11664 -186.12.160.0/20 11664 -186.12.176.0/21 11664 -186.12.184.0/21 19037 -186.12.192.0/21 11664 -186.12.200.0/21 19037 -186.12.208.0/20 11664 -186.12.224.0/21 11664 -186.12.232.0/22 11664 -186.12.236.0/23 11664 -186.12.238.0/23 19037 -186.12.240.0/24 11664 -186.12.241.0/24 19037 -186.12.242.0/23 19037 -186.12.244.0/22 11664 -186.12.248.0/22 19037 -186.12.252.0/23 19037 -186.12.254.0/23 11664 -186.13.0.0/21 11664 -186.13.8.0/22 19037 -186.13.12.0/23 19037 -186.13.14.0/23 11664 -186.13.16.0/20 11664 -186.13.32.0/19 11664 -186.13.64.0/18 11664 -186.13.128.0/17 11664 -186.14.0.0/20 21826 -186.14.16.0/22 21826 -186.14.20.0/23 21826 -186.14.22.0/24 21826 -186.14.24.0/21 21826 -186.14.32.0/19 21826 -186.14.64.0/19 21826 -186.14.104.0/21 21826 -186.14.112.0/20 21826 -186.14.128.0/17 21826 -186.15.0.0/16 52228 -186.16.0.0/15 23201 -186.18.0.0/15 27747 -186.20.0.0/15 6535 -186.22.0.0/15 27747 -186.24.0.0/18 6306 -186.24.64.0/20 6306 -186.24.128.0/17 6306 -186.25.128.0/17 6306 -186.26.0.0/18 27889 -186.26.112.0/20 14754 -186.26.128.0/17 27889 -186.27.0.0/17 28024 -186.27.128.0/17 10299 -186.28.0.0/17 19429 -186.28.128.0/18 19429 -186.28.192.0/19 19429 -186.28.224.0/21 19429 -186.28.232.0/24 263710 -186.28.233.0/24 19429 -186.28.234.0/23 19429 -186.28.236.0/22 19429 -186.28.240.0/20 19429 -186.29.0.0/16 19429 -186.30.0.0/18 19429 -186.30.64.0/19 19429 -186.30.96.0/20 19429 -186.30.112.0/24 13489 -186.30.113.0/24 19429 -186.30.114.0/23 19429 -186.30.116.0/22 19429 -186.30.120.0/21 19429 -186.30.128.0/17 19429 -186.31.0.0/16 19429 -186.32.0.0/21 20299 -186.32.8.0/24 27742 -186.32.11.0/24 27742 -186.32.16.0/20 262197 -186.32.32.0/19 262197 -186.32.64.0/23 27773 -186.32.66.0/24 27773 -186.32.68.0/22 27773 -186.32.72.0/21 27773 -186.32.80.0/20 27773 -186.32.96.0/19 27773 -186.32.128.0/20 20299 -186.32.144.0/21 20299 -186.32.152.0/23 20299 -186.32.154.0/24 52262 -186.32.155.0/24 20299 -186.32.156.0/22 20299 -186.32.160.0/20 262197 -186.32.176.0/21 262197 -186.32.184.0/21 20299 -186.32.192.0/20 262197 -186.32.209.0/24 262197 -186.32.210.0/23 262197 -186.32.212.0/22 262197 -186.32.216.0/21 262197 -186.32.224.0/20 20299 -186.32.240.0/21 20299 -186.32.248.0/21 27773 -186.33.0.0/18 18747 -186.33.64.0/18 27887 -186.33.128.0/18 27947 -186.33.192.0/21 52361 -186.33.200.0/22 52361 -186.33.204.0/24 265705 -186.33.205.0/24 52361 -186.33.206.0/23 52361 -186.33.208.0/20 52361 -186.33.224.0/19 52361 -186.34.0.0/15 6535 -186.36.0.0/16 6535 -186.37.0.0/16 27925 -186.38.0.0/19 22927 -186.38.32.0/22 22927 -186.38.36.0/24 22927 -186.38.37.0/24 262231 -186.38.38.0/23 22927 -186.38.40.0/23 22927 -186.38.42.0/24 52444 -186.38.43.0/24 22927 -186.38.44.0/24 264656 -186.38.45.0/24 22927 -186.38.46.0/23 22927 -186.38.48.0/20 22927 -186.38.64.0/20 22927 -186.38.80.0/21 22927 -186.38.88.0/24 22927 -186.38.89.0/24 27754 -186.38.90.0/24 22927 -186.38.91.0/24 27754 -186.38.92.0/24 27754 -186.38.93.0/24 22927 -186.38.94.0/23 22927 -186.38.96.0/23 22927 -186.38.98.0/24 22927 -186.38.99.0/24 267786 -186.38.100.0/22 22927 -186.38.104.0/22 22927 -186.38.108.0/24 27754 -186.38.109.0/24 22927 -186.38.110.0/24 27754 -186.38.111.0/24 22927 -186.38.112.0/21 22927 -186.38.120.0/23 263778 -186.38.122.0/23 22927 -186.38.124.0/22 22927 -186.39.0.0/16 22927 -186.40.0.0/15 27680 -186.42.96.0/21 28006 -186.42.104.0/22 28006 -186.42.108.0/24 28006 -186.42.112.0/23 28006 -186.42.114.0/24 28006 -186.42.119.0/24 28006 -186.42.120.0/23 28006 -186.42.123.0/24 28006 -186.42.124.0/22 28006 -186.42.128.0/22 28006 -186.42.160.0/21 28006 -186.42.169.0/24 28006 -186.42.170.0/23 28006 -186.42.172.0/22 28006 -186.42.182.0/24 28006 -186.42.184.0/21 28006 -186.42.192.0/23 28006 -186.42.194.0/24 28006 -186.42.197.0/24 28006 -186.42.198.0/23 28006 -186.42.212.0/22 28006 -186.42.224.0/22 28006 -186.42.252.0/23 28006 -186.42.255.0/24 28006 -186.43.0.0/17 27695 -186.43.128.0/17 27668 -186.44.0.0/15 5639 -186.46.0.0/22 28006 -186.46.5.0/24 28006 -186.46.6.0/23 28006 -186.46.24.0/21 28006 -186.46.34.0/23 28006 -186.46.38.0/23 28006 -186.46.40.0/22 28006 -186.46.45.0/24 28006 -186.46.47.0/24 28006 -186.46.56.0/21 28006 -186.46.72.0/22 28006 -186.46.76.0/23 28006 -186.46.78.0/24 28006 -186.46.83.0/24 28006 -186.46.84.0/22 28006 -186.46.88.0/21 28006 -186.46.112.0/24 52331 -186.46.113.0/24 28006 -186.46.114.0/24 28006 -186.46.116.0/23 28006 -186.46.120.0/22 28006 -186.46.124.0/23 28006 -186.46.128.0/22 28006 -186.46.136.0/22 28006 -186.46.140.0/24 28006 -186.46.141.0/24 14420 -186.46.142.0/23 28006 -186.46.148.0/22 28006 -186.46.152.0/21 28006 -186.46.160.0/21 28006 -186.46.168.0/24 28006 -186.46.172.0/22 28006 -186.46.184.0/22 28006 -186.46.192.0/20 28006 -186.46.214.0/23 28006 -186.46.216.0/21 28006 -186.46.224.0/22 28006 -186.46.232.0/21 28006 -186.46.248.0/22 28006 -186.46.252.0/23 28006 -186.46.255.0/24 28006 -186.47.16.0/21 28006 -186.47.40.0/21 28006 -186.47.72.0/21 28006 -186.47.80.0/21 28006 -186.47.96.0/21 28006 -186.47.120.0/22 28006 -186.47.136.0/23 28006 -186.47.152.0/22 28006 -186.47.188.0/22 28006 -186.47.192.0/24 28006 -186.47.201.0/24 14420 -186.47.202.0/24 14420 -186.47.203.0/24 28006 -186.47.204.0/24 28006 -186.47.206.0/23 28006 -186.47.208.0/21 28006 -186.47.224.0/21 28006 -186.47.232.0/23 28006 -186.47.242.0/24 28006 -186.48.0.0/13 6057 -186.56.0.0/22 265877 -186.56.4.0/23 265877 -186.56.6.0/24 265877 -186.56.7.0/24 265689 -186.56.8.0/21 265877 -186.56.16.0/20 265877 -186.56.32.0/22 265877 -186.56.36.0/23 265877 -186.56.38.0/24 265877 -186.56.39.0/24 27754 -186.56.40.0/21 265877 -186.56.48.0/23 265877 -186.56.50.0/24 27754 -186.56.51.0/24 265877 -186.56.52.0/22 265877 -186.56.56.0/24 265877 -186.56.57.0/24 52367 -186.56.58.0/23 265877 -186.56.60.0/22 265877 -186.56.64.0/22 22927 -186.56.68.0/23 22927 -186.56.70.0/24 22927 -186.56.71.0/24 264830 -186.56.72.0/24 264830 -186.56.73.0/24 22927 -186.56.74.0/23 22927 -186.56.76.0/22 22927 -186.56.80.0/20 22927 -186.56.96.0/24 22927 -186.56.97.0/24 262231 -186.56.98.0/23 22927 -186.56.100.0/23 22927 -186.56.102.0/24 27997 -186.56.103.0/24 22927 -186.56.104.0/21 22927 -186.56.112.0/20 22927 -186.56.128.0/17 22927 -186.57.0.0/16 22927 -186.58.0.0/15 22927 -186.60.0.0/14 22927 -186.64.0.0/18 701 -186.64.64.0/19 27953 -186.64.96.0/21 52430 -186.64.104.0/21 262207 -186.64.112.0/21 52368 -186.64.120.0/22 52368 -186.64.124.0/22 32034 -186.64.128.0/17 52228 -186.65.0.0/18 19114 -186.65.64.0/21 52381 -186.65.72.0/21 16471 -186.65.80.0/22 52259 -186.65.84.0/22 52380 -186.65.88.0/22 262239 -186.65.96.0/22 52383 -186.65.100.0/23 52383 -186.65.102.0/24 263244 -186.65.103.0/24 52383 -186.65.104.0/22 266142 -186.65.108.0/22 22927 -186.65.112.0/20 263740 -186.65.128.0/17 27680 -186.66.0.0/16 14522 -186.67.0.0/17 6471 -186.67.128.0/18 6471 -186.67.192.0/20 6471 -186.67.208.0/24 6471 -186.67.209.0/24 27651 -186.67.210.0/24 6471 -186.67.211.0/24 27651 -186.67.212.0/22 27651 -186.67.216.0/22 27651 -186.67.220.0/24 27651 -186.67.221.0/24 6471 -186.67.222.0/23 6471 -186.67.224.0/21 6471 -186.67.232.0/23 6471 -186.67.234.0/23 27651 -186.67.236.0/23 27651 -186.67.238.0/24 6471 -186.67.239.0/24 27651 -186.67.240.0/24 27651 -186.67.241.0/24 6471 -186.67.242.0/24 27651 -186.67.243.0/24 6471 -186.67.244.0/23 27651 -186.67.246.0/24 6471 -186.67.247.0/24 27651 -186.67.248.0/24 6471 -186.67.249.0/24 27651 -186.67.250.0/23 27651 -186.67.252.0/23 27651 -186.67.254.0/23 6471 -186.68.0.0/14 14522 -186.72.0.0/14 11556 -186.76.0.0/15 14754 -186.78.0.0/15 7418 -186.80.0.0/20 10620 -186.80.16.0/21 10620 -186.80.25.0/24 10620 -186.80.26.0/23 10620 -186.80.28.0/22 10620 -186.80.32.0/19 10620 -186.80.64.0/20 10620 -186.80.80.0/23 10620 -186.80.83.0/24 10620 -186.80.84.0/22 10620 -186.80.88.0/21 10620 -186.80.96.0/19 10620 -186.80.128.0/18 10620 -186.80.192.0/19 10620 -186.80.228.0/22 10620 -186.80.232.0/21 10620 -186.80.240.0/20 10620 -186.81.0.0/19 10620 -186.81.32.0/22 10620 -186.81.36.0/23 10620 -186.81.38.0/24 10620 -186.81.40.0/22 10620 -186.81.48.0/20 10620 -186.81.64.0/19 10620 -186.81.96.0/22 10620 -186.81.100.0/23 10620 -186.81.102.0/23 14080 -186.81.104.0/21 10620 -186.81.112.0/20 10620 -186.81.128.0/21 10620 -186.81.136.0/22 10620 -186.81.144.0/20 10620 -186.81.160.0/20 10620 -186.81.176.0/21 10620 -186.81.184.0/22 10620 -186.81.192.0/22 10620 -186.81.196.0/22 14080 -186.81.200.0/21 10620 -186.81.208.0/20 10620 -186.81.224.0/20 10620 -186.81.240.0/22 10620 -186.81.248.0/21 10620 -186.82.0.0/16 10620 -186.83.0.0/20 10620 -186.83.16.0/21 10620 -186.83.28.0/22 10620 -186.83.32.0/19 10620 -186.83.64.0/23 10620 -186.83.66.0/24 10620 -186.83.68.0/22 10620 -186.83.72.0/21 10620 -186.83.80.0/20 10620 -186.83.96.0/19 10620 -186.83.128.0/17 10620 -186.84.0.0/16 10620 -186.85.0.0/18 10620 -186.85.64.0/19 10620 -186.85.100.0/22 10620 -186.85.104.0/21 10620 -186.85.112.0/20 10620 -186.85.128.0/19 10620 -186.85.160.0/20 10620 -186.85.176.0/21 10620 -186.85.184.0/22 10620 -186.85.189.0/24 10620 -186.85.192.0/23 10620 -186.85.196.0/22 10620 -186.85.200.0/21 10620 -186.85.208.0/20 10620 -186.85.224.0/19 10620 -186.86.0.0/18 10620 -186.86.64.0/21 10620 -186.86.72.0/23 10620 -186.86.76.0/22 10620 -186.86.80.0/20 10620 -186.86.96.0/19 10620 -186.86.128.0/20 10620 -186.86.144.0/23 10620 -186.86.146.0/24 10620 -186.86.148.0/22 10620 -186.86.152.0/21 10620 -186.86.160.0/19 10620 -186.86.192.0/22 10620 -186.86.197.0/24 10620 -186.86.198.0/24 14080 -186.86.199.0/24 10620 -186.86.200.0/21 10620 -186.86.208.0/20 10620 -186.86.224.0/20 10620 -186.86.240.0/21 10620 -186.86.250.0/23 10620 -186.86.252.0/24 10620 -186.86.255.0/24 14080 -186.87.0.0/17 10620 -186.87.128.0/20 10620 -186.87.144.0/21 10620 -186.87.152.0/22 10620 -186.87.156.0/23 10620 -186.87.158.0/24 10620 -186.87.160.0/20 10620 -186.87.178.0/23 10620 -186.87.180.0/22 10620 -186.87.184.0/21 10620 -186.87.192.0/18 10620 -186.88.0.0/18 8048 -186.88.64.0/19 8048 -186.88.128.0/17 8048 -186.89.0.0/16 8048 -186.90.0.0/16 8048 -186.91.32.0/19 8048 -186.91.64.0/18 8048 -186.91.128.0/17 8048 -186.92.0.0/15 8048 -186.94.0.0/19 8048 -186.94.64.0/18 8048 -186.94.128.0/17 8048 -186.95.0.0/16 8048 -186.96.0.0/18 11750 -186.96.64.0/20 28007 -186.96.80.0/20 262202 -186.96.96.0/19 262186 -186.96.128.0/18 11750 -186.96.192.0/21 52490 -186.96.200.0/21 11750 -186.96.208.0/20 27924 -186.96.224.0/20 11750 -186.96.240.0/21 11750 -186.96.252.0/22 262146 -186.97.0.0/16 27831 -186.100.0.0/17 11315 -186.101.0.0/21 27947 -186.101.8.0/23 27947 -186.101.10.0/24 64110 -186.101.11.0/24 27947 -186.101.12.0/22 27947 -186.101.16.0/20 27947 -186.101.32.0/19 27947 -186.101.64.0/18 27947 -186.101.128.0/17 27947 -186.102.0.0/17 3816 -186.102.128.0/19 3816 -186.102.160.0/20 3816 -186.102.186.0/23 3816 -186.102.188.0/22 3816 -186.102.192.0/19 3816 -186.103.128.0/20 15311 -186.103.144.0/21 15311 -186.103.152.0/23 15311 -186.103.154.0/24 15311 -186.103.155.0/24 7004 -186.103.156.0/22 7004 -186.103.160.0/19 15311 -186.103.192.0/19 15311 -186.103.224.0/20 15311 -186.103.240.0/20 7004 -186.104.0.0/14 7418 -186.108.64.0/18 7303 -186.108.144.0/20 7303 -186.108.160.0/19 7303 -186.108.192.0/18 7303 -186.109.0.0/19 7303 -186.109.80.0/20 7303 -186.109.96.0/19 7303 -186.109.128.0/19 7303 -186.109.160.0/20 7303 -186.109.184.0/21 7303 -186.109.192.0/18 7303 -186.110.0.0/17 7303 -186.110.176.0/20 7303 -186.110.192.0/18 7303 -186.111.0.0/20 7303 -186.111.128.0/19 7303 -186.111.160.0/20 7303 -186.111.240.0/20 7303 -186.112.0.0/17 3816 -186.112.128.0/18 3816 -186.112.192.0/20 3816 -186.112.208.0/21 3816 -186.112.216.0/22 3816 -186.112.220.0/23 3816 -186.112.224.0/19 3816 -186.113.0.0/21 3816 -186.113.8.0/24 3816 -186.113.10.0/23 3816 -186.113.12.0/24 27817 -186.113.14.0/24 3816 -186.113.16.0/21 3816 -186.113.24.0/22 3816 -186.113.28.0/23 3816 -186.113.30.0/24 3816 -186.113.32.0/19 3816 -186.113.64.0/18 3816 -186.113.128.0/20 3816 -186.113.160.0/21 3816 -186.113.168.0/23 3816 -186.113.172.0/22 3816 -186.113.176.0/20 3816 -186.113.192.0/18 3816 -186.114.0.0/15 3816 -186.116.0.0/14 3816 -186.120.0.0/22 28118 -186.120.4.0/23 28118 -186.120.6.0/24 12066 -186.120.7.0/24 28118 -186.120.8.0/22 28118 -186.120.12.0/23 28118 -186.120.14.0/23 12066 -186.120.16.0/22 28118 -186.120.20.0/22 12066 -186.120.24.0/23 12066 -186.120.26.0/23 28118 -186.120.28.0/22 28118 -186.120.32.0/22 12066 -186.120.36.0/24 12066 -186.120.37.0/24 28118 -186.120.38.0/23 12066 -186.120.40.0/23 28118 -186.120.42.0/23 12066 -186.120.44.0/23 12066 -186.120.46.0/23 28118 -186.120.48.0/22 12066 -186.120.52.0/23 12066 -186.120.54.0/23 28118 -186.120.56.0/22 12066 -186.120.60.0/23 12066 -186.120.62.0/23 28118 -186.120.64.0/21 12066 -186.120.72.0/22 12066 -186.120.76.0/24 12066 -186.120.77.0/24 28118 -186.120.78.0/23 12066 -186.120.80.0/22 28118 -186.120.84.0/22 12066 -186.120.88.0/21 28118 -186.120.96.0/22 12066 -186.120.100.0/24 28118 -186.120.101.0/24 12066 -186.120.102.0/23 28118 -186.120.104.0/21 12066 -186.120.112.0/21 12066 -186.120.120.0/22 28118 -186.120.124.0/22 12066 -186.120.128.0/22 12066 -186.120.132.0/22 28118 -186.120.136.0/22 12066 -186.120.140.0/22 28118 -186.120.144.0/20 12066 -186.120.160.0/21 12066 -186.120.168.0/23 28118 -186.120.170.0/23 12066 -186.120.172.0/22 12066 -186.120.176.0/22 12066 -186.120.180.0/23 12066 -186.120.182.0/24 28118 -186.120.183.0/24 12066 -186.120.184.0/21 12066 -186.120.192.0/21 12066 -186.120.200.0/22 12066 -186.120.204.0/24 28118 -186.120.205.0/24 12066 -186.120.206.0/23 12066 -186.120.208.0/23 12066 -186.120.210.0/24 12066 -186.120.211.0/24 28118 -186.120.212.0/22 28118 -186.120.216.0/22 12066 -186.120.220.0/23 12066 -186.120.222.0/23 28118 -186.120.224.0/22 28118 -186.120.228.0/22 12066 -186.120.232.0/21 12066 -186.120.240.0/22 28118 -186.120.244.0/22 12066 -186.120.248.0/23 12066 -186.120.250.0/23 28118 -186.120.252.0/22 28118 -186.121.0.0/17 8163 -186.121.168.0/23 3549 -186.121.171.0/24 27827 -186.121.180.0/23 3549 -186.121.182.0/24 27827 -186.121.191.0/24 3549 -186.121.192.0/18 26210 -186.122.0.0/19 11664 -186.122.32.0/23 19037 -186.122.34.0/23 11664 -186.122.36.0/23 19037 -186.122.38.0/23 11664 -186.122.40.0/22 11664 -186.122.44.0/22 19037 -186.122.48.0/23 11664 -186.122.50.0/24 11664 -186.122.51.0/24 19037 -186.122.52.0/22 19037 -186.122.56.0/21 11664 -186.122.64.0/20 11664 -186.122.80.0/21 11664 -186.122.88.0/21 19037 -186.122.96.0/21 11664 -186.122.104.0/21 19037 -186.122.112.0/20 11664 -186.122.128.0/23 11664 -186.122.130.0/23 19037 -186.122.132.0/22 11664 -186.122.136.0/22 11664 -186.122.140.0/23 11664 -186.122.142.0/23 19037 -186.122.144.0/20 11664 -186.122.160.0/21 11664 -186.122.168.0/23 11664 -186.122.170.0/23 19037 -186.122.172.0/22 11664 -186.122.176.0/24 11664 -186.122.177.0/24 19037 -186.122.178.0/23 19037 -186.122.180.0/22 19037 -186.122.184.0/22 11664 -186.122.188.0/22 19037 -186.122.192.0/18 11664 -186.123.0.0/21 11664 -186.123.8.0/21 19037 -186.123.16.0/21 19037 -186.123.24.0/21 11664 -186.123.32.0/19 11664 -186.123.64.0/21 19037 -186.123.72.0/21 11664 -186.123.80.0/20 11664 -186.123.96.0/20 11664 -186.123.112.0/20 19037 -186.123.128.0/22 11664 -186.123.132.0/24 19037 -186.123.133.0/24 11664 -186.123.134.0/23 11664 -186.123.136.0/21 11664 -186.123.144.0/20 11664 -186.123.160.0/19 11664 -186.123.192.0/18 11664 -186.124.0.0/18 7303 -186.124.112.0/20 7303 -186.124.128.0/20 7303 -186.124.144.0/21 7303 -186.124.160.0/19 7303 -186.124.192.0/18 7303 -186.125.0.0/19 7303 -186.125.32.0/20 7303 -186.125.48.0/21 7303 -186.125.56.0/22 7303 -186.125.60.0/23 7303 -186.125.62.0/23 52444 -186.125.64.0/18 7303 -186.125.128.0/20 7303 -186.125.152.0/21 7303 -186.125.160.0/24 264767 -186.125.161.0/24 52444 -186.125.162.0/23 7303 -186.125.164.0/22 7303 -186.125.168.0/21 7303 -186.125.176.0/20 7303 -186.125.192.0/22 7303 -186.125.196.0/23 7303 -186.125.198.0/24 7303 -186.125.199.0/24 264642 -186.125.200.0/23 264642 -186.125.202.0/23 7303 -186.125.204.0/22 7303 -186.125.208.0/20 7303 -186.125.224.0/20 7303 -186.125.240.0/22 7303 -186.125.244.0/23 7303 -186.125.246.0/24 264742 -186.125.247.0/24 7303 -186.125.248.0/21 7303 -186.126.0.0/15 7303 -186.128.0.0/13 22927 -186.136.0.0/17 10318 -186.136.128.0/18 10318 -186.136.192.0/19 10318 -186.136.224.0/20 10318 -186.136.240.0/20 10481 -186.137.0.0/16 10318 -186.138.0.0/20 10481 -186.138.16.0/20 10318 -186.138.32.0/19 10318 -186.138.64.0/18 10318 -186.138.128.0/17 10318 -186.139.0.0/17 10318 -186.139.128.0/18 10318 -186.139.192.0/20 10318 -186.139.208.0/20 10481 -186.139.224.0/19 10481 -186.140.0.0/16 11315 -186.141.0.0/17 11315 -186.141.128.0/18 11315 -186.141.192.0/19 11315 -186.141.224.0/24 11315 -186.141.225.0/24 22927 -186.141.226.0/23 22927 -186.141.228.0/22 22927 -186.141.232.0/24 22927 -186.141.233.0/24 11315 -186.141.234.0/23 11315 -186.141.236.0/22 11315 -186.141.240.0/20 11315 -186.142.0.0/15 11315 -186.144.0.0/19 10620 -186.144.32.0/22 14080 -186.144.36.0/22 10620 -186.144.40.0/21 10620 -186.144.48.0/20 10620 -186.144.64.0/19 10620 -186.144.96.0/20 10620 -186.144.112.0/21 10620 -186.144.120.0/22 10620 -186.144.128.0/17 10620 -186.145.0.0/17 10620 -186.145.128.0/19 10620 -186.145.160.0/20 10620 -186.145.176.0/23 10620 -186.145.180.0/22 10620 -186.145.184.0/21 10620 -186.145.192.0/19 10620 -186.145.224.0/21 10620 -186.145.232.0/22 10620 -186.145.236.0/24 14080 -186.145.237.0/24 10620 -186.145.238.0/23 10620 -186.145.240.0/20 10620 -186.146.0.0/16 10620 -186.147.0.0/17 10620 -186.147.128.0/18 10620 -186.147.192.0/20 10620 -186.147.212.0/22 10620 -186.147.216.0/21 10620 -186.147.224.0/22 10620 -186.147.228.0/23 10620 -186.147.231.0/24 10620 -186.147.232.0/21 10620 -186.147.240.0/20 10620 -186.148.0.0/22 7004 -186.148.4.0/23 7004 -186.148.6.0/24 61507 -186.148.7.0/24 7004 -186.148.8.0/22 27901 -186.148.12.0/23 27901 -186.148.14.0/23 7004 -186.148.16.0/20 7004 -186.148.32.0/19 7004 -186.148.64.0/23 22080 -186.148.66.0/24 22080 -186.148.68.0/22 22080 -186.148.72.0/22 22080 -186.148.76.0/23 22080 -186.148.80.0/21 263196 -186.148.88.0/24 23520 -186.148.89.0/24 52471 -186.148.90.0/23 52471 -186.148.92.0/22 52471 -186.148.96.0/21 52468 -186.148.105.0/24 52468 -186.148.106.0/24 52468 -186.148.108.0/22 52468 -186.148.112.0/21 52364 -186.148.120.0/21 52473 -186.148.128.0/19 52279 -186.148.160.0/19 262186 -186.148.200.0/21 52350 -186.148.208.0/22 262167 -186.148.212.0/22 52342 -186.148.216.0/22 262164 -186.148.220.0/22 27748 -186.148.232.0/22 27787 -186.148.237.0/24 27787 -186.148.238.0/23 27787 -186.148.240.0/21 52329 -186.148.248.0/21 52349 -186.149.0.0/20 28118 -186.149.16.0/21 28118 -186.149.24.0/23 28118 -186.149.26.0/23 12066 -186.149.28.0/24 28118 -186.149.29.0/24 12066 -186.149.30.0/24 12066 -186.149.31.0/24 28118 -186.149.32.0/20 28118 -186.149.48.0/21 28118 -186.149.56.0/23 12066 -186.149.58.0/23 28118 -186.149.60.0/22 28118 -186.149.64.0/19 28118 -186.149.96.0/21 28118 -186.149.104.0/22 28118 -186.149.108.0/23 28118 -186.149.110.0/24 12066 -186.149.111.0/24 28118 -186.149.112.0/20 28118 -186.149.128.0/19 28118 -186.149.160.0/23 28118 -186.149.162.0/24 12066 -186.149.163.0/24 28118 -186.149.164.0/22 28118 -186.149.168.0/21 28118 -186.149.176.0/21 28118 -186.149.184.0/23 28118 -186.149.186.0/24 28118 -186.149.187.0/24 12066 -186.149.188.0/22 28118 -186.149.192.0/19 28118 -186.149.224.0/22 28118 -186.149.228.0/22 12066 -186.149.232.0/21 12066 -186.149.240.0/20 28118 -186.150.0.0/20 28118 -186.150.16.0/20 12066 -186.150.32.0/22 28118 -186.150.36.0/22 12066 -186.150.40.0/22 12066 -186.150.44.0/23 28118 -186.150.46.0/23 12066 -186.150.48.0/22 12066 -186.150.52.0/22 28118 -186.150.56.0/22 12066 -186.150.60.0/22 28118 -186.150.64.0/22 28118 -186.150.68.0/22 12066 -186.150.72.0/21 12066 -186.150.80.0/24 28118 -186.150.81.0/24 12066 -186.150.82.0/23 12066 -186.150.84.0/23 28118 -186.150.86.0/24 12066 -186.150.87.0/24 28118 -186.150.88.0/23 12066 -186.150.90.0/24 28118 -186.150.91.0/24 12066 -186.150.92.0/22 12066 -186.150.96.0/20 12066 -186.150.112.0/24 12066 -186.150.113.0/24 28118 -186.150.114.0/23 12066 -186.150.116.0/22 12066 -186.150.120.0/21 12066 -186.150.128.0/20 12066 -186.150.144.0/23 12066 -186.150.146.0/23 28118 -186.150.148.0/23 12066 -186.150.150.0/23 28118 -186.150.152.0/22 12066 -186.150.156.0/22 28118 -186.150.160.0/21 12066 -186.150.168.0/22 12066 -186.150.172.0/23 28118 -186.150.174.0/23 12066 -186.150.176.0/20 12066 -186.150.192.0/22 28118 -186.150.196.0/22 12066 -186.150.200.0/24 12066 -186.150.201.0/24 28118 -186.150.202.0/24 28118 -186.150.203.0/24 12066 -186.150.204.0/22 12066 -186.150.208.0/24 28118 -186.150.209.0/24 12066 -186.150.210.0/23 12066 -186.150.212.0/22 12066 -186.150.216.0/21 28118 -186.150.224.0/23 12066 -186.150.226.0/24 28118 -186.150.227.0/24 12066 -186.150.228.0/22 12066 -186.150.232.0/21 28118 -186.150.240.0/20 12066 -186.151.0.0/16 14754 -186.152.0.0/16 7303 -186.153.0.0/20 7303 -186.153.16.0/21 7303 -186.153.32.0/19 7303 -186.153.64.0/21 7303 -186.153.80.0/20 7303 -186.153.96.0/20 7303 -186.153.112.0/21 7303 -186.153.120.0/22 7303 -186.153.124.0/23 7303 -186.153.126.0/23 52444 -186.153.128.0/22 264715 -186.153.132.0/22 7303 -186.153.136.0/21 7303 -186.153.144.0/21 7303 -186.153.160.0/19 7303 -186.153.192.0/18 7303 -186.154.0.0/17 19429 -186.154.128.0/18 19429 -186.154.192.0/19 19429 -186.154.224.0/21 19429 -186.154.232.0/24 32034 -186.154.233.0/24 19429 -186.154.234.0/23 19429 -186.154.236.0/23 19429 -186.154.238.0/24 262220 -186.154.239.0/24 19429 -186.154.240.0/20 19429 -186.155.0.0/17 19429 -186.155.128.0/18 19429 -186.155.192.0/19 19429 -186.155.224.0/20 19429 -186.155.240.0/21 19429 -186.155.248.0/23 32034 -186.155.250.0/23 19429 -186.155.252.0/22 19429 -186.156.0.0/16 22047 -186.157.0.0/20 11664 -186.157.16.0/21 11664 -186.157.24.0/21 19037 -186.157.32.0/19 19037 -186.157.64.0/18 19037 -186.157.128.0/17 19037 -186.158.0.0/18 11664 -186.158.64.0/19 11664 -186.158.96.0/20 19037 -186.158.112.0/20 11664 -186.158.128.0/22 19037 -186.158.132.0/23 19037 -186.158.134.0/24 19037 -186.158.135.0/24 11664 -186.158.136.0/21 11664 -186.158.144.0/20 11664 -186.158.160.0/20 11664 -186.158.176.0/22 19037 -186.158.180.0/22 11664 -186.158.184.0/22 11664 -186.158.188.0/23 11664 -186.158.190.0/24 19037 -186.158.191.0/24 11664 -186.158.192.0/21 11664 -186.158.200.0/22 11664 -186.158.204.0/24 11664 -186.158.205.0/24 19037 -186.158.206.0/23 11664 -186.158.208.0/23 11664 -186.158.210.0/23 19037 -186.158.212.0/23 11664 -186.158.214.0/23 19037 -186.158.216.0/21 11664 -186.158.224.0/21 11664 -186.158.232.0/24 19037 -186.158.233.0/24 11664 -186.158.234.0/23 19037 -186.158.236.0/22 19037 -186.158.240.0/22 19037 -186.158.244.0/22 11664 -186.158.248.0/22 11664 -186.158.252.0/23 11664 -186.158.254.0/24 19037 -186.158.255.0/24 11664 -186.159.0.0/18 27695 -186.159.64.0/19 27695 -186.159.96.0/22 27745 -186.159.100.0/24 11816 -186.159.101.0/24 27745 -186.159.102.0/23 27745 -186.159.104.0/21 27745 -186.159.112.0/22 262215 -186.159.116.0/22 262218 -186.159.120.0/22 52371 -186.159.124.0/23 7303 -186.159.128.0/17 52228 -186.160.0.0/19 21575 -186.160.32.0/20 21575 -186.160.48.0/21 21575 -186.160.56.0/23 19180 -186.160.58.0/24 19180 -186.160.59.0/24 262182 -186.160.60.0/22 19180 -186.160.64.0/21 21575 -186.160.72.0/21 19180 -186.160.80.0/20 19180 -186.160.96.0/21 19180 -186.160.104.0/21 21575 -186.160.112.0/20 21575 -186.160.128.0/17 21575 -186.161.0.0/16 21575 -186.162.0.0/15 21575 -186.166.0.0/16 6306 -186.167.0.0/17 27717 -186.167.240.0/24 27717 -186.167.241.0/24 264731 -186.167.242.0/23 264731 -186.167.244.0/22 264731 -186.167.248.0/22 264731 -186.168.0.0/20 3816 -186.168.32.0/19 3816 -186.168.64.0/20 3816 -186.168.80.0/21 3816 -186.168.88.0/23 3816 -186.168.92.0/22 3816 -186.168.96.0/19 3816 -186.168.128.0/18 3816 -186.168.192.0/20 3816 -186.168.208.0/21 3816 -186.168.232.0/21 3816 -186.168.240.0/20 3816 -186.169.128.0/17 3816 -186.170.0.0/16 3816 -186.176.0.0/24 20299 -186.176.3.0/24 262197 -186.176.4.0/24 20299 -186.176.6.0/23 20299 -186.176.8.0/23 20299 -186.176.11.0/24 262197 -186.176.12.0/22 262197 -186.176.16.0/20 262197 -186.176.32.0/19 262197 -186.176.64.0/18 262197 -186.176.128.0/18 262197 -186.176.192.0/22 20299 -186.176.196.0/23 20299 -186.176.199.0/24 20299 -186.176.200.0/24 20299 -186.176.203.0/24 20299 -186.176.204.0/23 20299 -186.176.206.0/24 20299 -186.176.208.0/20 262197 -186.176.224.0/24 262197 -186.176.225.0/24 20299 -186.176.226.0/23 20299 -186.176.228.0/23 20299 -186.176.230.0/24 20299 -186.176.231.0/24 262197 -186.176.232.0/21 262197 -186.176.240.0/20 262197 -186.177.0.0/20 262197 -186.177.16.0/20 20299 -186.177.32.0/19 262197 -186.177.64.0/24 20299 -186.177.65.0/24 262197 -186.177.66.0/24 262197 -186.177.67.0/24 20299 -186.177.68.0/22 20299 -186.177.72.0/21 20299 -186.177.80.0/20 20299 -186.177.96.0/22 20299 -186.177.100.0/24 262197 -186.177.101.0/24 20299 -186.177.102.0/23 20299 -186.177.104.0/22 262197 -186.177.109.0/24 262197 -186.177.110.0/23 262197 -186.177.112.0/20 262197 -186.177.128.0/18 262197 -186.177.192.0/19 263181 -186.177.228.0/22 52347 -186.177.232.0/21 52347 -186.177.240.0/23 52347 -186.177.242.0/24 52347 -186.178.0.0/23 14420 -186.178.2.0/24 14420 -186.178.3.0/24 28006 -186.178.4.0/22 28006 -186.178.8.0/23 28006 -186.178.10.0/24 28006 -186.178.16.0/23 14420 -186.178.18.0/23 28006 -186.178.20.0/24 28006 -186.178.21.0/24 14420 -186.178.22.0/23 28006 -186.178.36.0/22 28006 -186.178.40.0/21 28006 -186.178.48.0/22 28006 -186.178.52.0/24 28006 -186.178.56.0/21 28006 -186.178.64.0/23 14420 -186.178.66.0/23 28006 -186.178.68.0/24 28006 -186.178.104.0/22 28006 -186.178.108.0/23 28006 -186.178.110.0/24 28006 -186.178.112.0/22 28006 -186.178.116.0/23 28006 -186.178.128.0/24 28006 -186.178.168.0/22 28006 -186.178.200.0/21 28006 -186.179.0.0/18 52393 -186.179.64.0/24 52476 -186.179.65.0/24 52468 -186.179.66.0/23 52468 -186.179.68.0/22 52468 -186.179.72.0/21 52468 -186.179.80.0/20 15311 -186.179.96.0/20 262186 -186.179.112.0/24 27755 -186.179.113.0/24 18809 -186.179.114.0/23 27755 -186.179.116.0/23 27755 -186.179.118.0/24 18809 -186.179.119.0/24 27755 -186.179.120.0/23 18809 -186.179.122.0/24 18809 -186.179.123.0/24 27755 -186.179.124.0/24 18809 -186.179.125.0/24 27755 -186.179.126.0/23 27755 -186.179.128.0/17 27775 -186.180.0.0/15 27831 -186.182.0.0/20 11664 -186.182.16.0/23 11664 -186.182.18.0/24 11664 -186.182.19.0/24 19037 -186.182.20.0/24 19037 -186.182.21.0/24 11664 -186.182.22.0/23 11664 -186.182.24.0/22 11664 -186.182.28.0/24 11664 -186.182.29.0/24 19037 -186.182.30.0/24 11664 -186.182.31.0/24 19037 -186.182.32.0/23 19037 -186.182.34.0/24 11664 -186.182.35.0/24 19037 -186.182.36.0/22 19037 -186.182.40.0/23 19037 -186.182.42.0/24 11664 -186.182.43.0/24 19037 -186.182.44.0/22 11664 -186.182.48.0/23 11664 -186.182.50.0/24 11664 -186.182.51.0/24 19037 -186.182.52.0/23 11664 -186.182.54.0/24 19037 -186.182.55.0/24 11664 -186.182.56.0/24 19037 -186.182.57.0/24 11664 -186.182.58.0/24 19037 -186.182.59.0/24 11664 -186.182.60.0/24 11664 -186.182.61.0/24 19037 -186.182.62.0/23 19037 -186.182.64.0/24 19037 -186.182.65.0/24 11664 -186.182.66.0/24 19037 -186.182.67.0/24 11664 -186.182.68.0/23 19037 -186.182.70.0/23 11664 -186.182.72.0/23 19037 -186.182.74.0/23 11664 -186.182.76.0/23 19037 -186.182.78.0/24 11664 -186.182.79.0/24 19037 -186.182.80.0/23 19037 -186.182.82.0/23 11664 -186.182.84.0/23 11664 -186.182.86.0/24 11664 -186.182.87.0/24 19037 -186.182.88.0/22 19037 -186.182.92.0/24 19037 -186.182.93.0/24 11664 -186.182.94.0/24 19037 -186.182.95.0/24 11664 -186.182.96.0/21 19037 -186.182.104.0/21 11664 -186.182.112.0/20 11664 -186.182.128.0/23 11664 -186.182.130.0/23 19037 -186.182.132.0/23 19037 -186.182.134.0/24 19037 -186.182.135.0/24 11664 -186.182.136.0/23 11664 -186.182.138.0/24 19037 -186.182.139.0/24 11664 -186.182.140.0/23 19037 -186.182.142.0/24 19037 -186.182.143.0/24 11664 -186.182.144.0/21 19037 -186.182.152.0/24 19037 -186.182.153.0/24 11664 -186.182.154.0/23 11664 -186.182.156.0/24 19037 -186.182.157.0/24 11664 -186.182.158.0/23 19037 -186.182.160.0/22 11664 -186.182.164.0/23 11664 -186.182.166.0/23 19037 -186.182.168.0/22 11664 -186.182.172.0/23 11664 -186.182.174.0/23 19037 -186.182.176.0/21 11664 -186.182.184.0/22 11664 -186.182.188.0/23 11664 -186.182.190.0/23 19037 -186.182.192.0/20 11664 -186.182.208.0/23 11664 -186.182.210.0/23 19037 -186.182.212.0/22 11664 -186.182.216.0/21 11664 -186.182.224.0/21 11664 -186.182.232.0/23 11664 -186.182.234.0/24 19037 -186.182.235.0/24 11664 -186.182.236.0/22 11664 -186.182.240.0/23 11664 -186.182.242.0/24 19037 -186.182.243.0/24 11664 -186.182.244.0/22 11664 -186.182.248.0/24 19037 -186.182.249.0/24 11664 -186.182.250.0/23 19037 -186.182.252.0/23 11664 -186.182.254.0/24 11664 -186.182.255.0/24 19037 -186.183.0.0/17 28114 -186.183.128.0/17 22368 -186.184.128.0/17 6306 -186.185.0.0/16 6306 -186.186.64.0/18 6306 -186.188.0.0/17 21826 -186.188.128.0/17 18809 -186.189.64.0/23 28075 -186.189.66.0/24 28028 -186.189.67.0/24 28075 -186.189.68.0/22 28028 -186.189.72.0/21 28028 -186.189.80.0/20 28028 -186.189.96.0/19 28028 -186.189.128.0/18 11816 -186.189.192.0/21 23243 -186.189.200.0/24 23243 -186.189.216.0/24 23243 -186.189.224.0/20 16814 -186.189.240.0/22 61481 -186.189.248.0/22 16814 -186.190.0.0/17 27759 -186.190.128.0/19 264642 -186.190.160.0/20 27953 -186.190.176.0/22 27987 -186.190.180.0/23 264830 -186.190.182.0/23 27987 -186.190.184.0/23 27987 -186.190.186.0/23 264830 -186.190.188.0/23 264830 -186.190.190.0/23 27987 -186.190.192.0/20 52303 -186.190.208.0/20 33333 -186.190.224.0/21 262186 -186.190.232.0/24 264645 -186.190.233.0/24 27660 -186.190.235.0/24 27660 -186.190.236.0/22 52313 -186.190.240.0/21 26505 -186.190.248.0/22 26505 -186.190.252.0/23 26505 -186.190.254.0/23 262191 -186.191.0.0/17 11664 -186.191.128.0/18 11664 -186.191.192.0/18 19037 -186.192.0.0/20 262725 -186.192.16.0/20 262726 -186.192.32.0/20 53132 -186.192.48.0/20 53111 -186.192.64.0/20 262727 -186.192.80.0/20 28604 -186.192.96.0/19 262728 -186.192.128.0/19 22356 -186.192.160.0/20 262516 -186.192.176.0/20 53135 -186.192.192.0/20 53133 -186.192.208.0/20 262732 -186.192.224.0/20 28145 -186.192.240.0/20 53138 -186.193.0.0/20 53134 -186.193.16.0/20 53078 -186.193.32.0/20 262708 -186.193.48.0/20 53135 -186.193.64.0/19 28280 -186.193.96.0/20 28340 -186.193.112.0/20 53143 -186.193.128.0/19 262729 -186.193.160.0/20 53137 -186.193.176.0/20 28191 -186.193.192.0/20 262730 -186.193.208.0/20 28153 -186.193.224.0/20 262731 -186.193.240.0/20 28260 -186.194.16.0/20 53075 -186.194.32.0/19 28233 -186.194.64.0/20 28334 -186.194.80.0/24 36351 -186.194.81.0/24 54290 -186.194.82.0/23 54290 -186.194.84.0/23 36351 -186.194.86.0/23 3257 -186.194.88.0/24 54290 -186.194.89.0/24 36351 -186.194.90.0/23 36351 -186.194.92.0/22 36351 -186.194.96.0/20 28210 -186.194.112.0/20 262359 -186.194.140.0/22 22908 -186.194.144.0/20 262678 -186.194.176.0/20 53080 -186.194.192.0/20 53142 -186.194.208.0/20 262691 -186.194.224.0/20 53143 -186.194.240.0/20 262733 -186.195.0.0/20 262734 -186.195.16.0/20 53145 -186.195.32.0/20 53146 -186.195.48.0/20 53102 -186.195.64.0/20 262735 -186.195.80.0/20 263072 -186.195.96.0/20 262720 -186.195.112.0/20 262736 -186.195.128.0/20 262737 -186.195.144.0/20 28311 -186.195.160.0/20 262738 -186.195.176.0/20 263074 -186.195.192.0/20 53208 -186.195.208.0/20 262983 -186.195.224.0/20 52862 -186.196.0.0/14 26615 -186.200.0.0/15 10429 -186.202.0.0/16 27715 -186.203.0.0/18 26615 -186.203.64.0/23 17379 -186.203.66.0/23 26615 -186.203.68.0/22 26615 -186.203.72.0/21 26615 -186.203.80.0/20 26615 -186.203.96.0/22 26615 -186.203.100.0/22 17379 -186.203.104.0/21 17379 -186.203.112.0/20 17379 -186.203.128.0/20 17379 -186.203.144.0/22 17379 -186.203.148.0/22 26615 -186.203.152.0/21 26615 -186.203.160.0/22 17379 -186.203.164.0/22 26615 -186.203.168.0/21 26615 -186.203.176.0/21 26615 -186.203.184.0/23 17379 -186.203.186.0/23 26615 -186.203.188.0/22 26615 -186.203.192.0/18 26615 -186.204.0.0/14 28573 -186.208.0.0/20 262713 -186.208.16.0/20 53149 -186.208.32.0/20 4913 -186.208.48.0/20 53150 -186.208.64.0/20 262740 -186.208.80.0/21 263077 -186.208.88.0/21 52530 -186.208.96.0/20 262748 -186.208.112.0/20 53162 -186.208.128.0/20 28265 -186.208.144.0/20 52881 -186.208.160.0/20 53151 -186.208.176.0/20 262741 -186.208.192.0/20 28279 -186.208.209.0/24 53224 -186.208.210.0/23 53224 -186.208.214.0/23 53224 -186.208.216.0/21 28577 -186.208.224.0/20 28131 -186.208.240.0/22 263081 -186.208.244.0/22 262887 -186.208.248.0/22 263086 -186.208.252.0/22 263098 -186.209.0.0/20 53152 -186.209.16.0/20 28343 -186.209.32.0/22 53158 -186.209.36.0/23 265892 -186.209.38.0/23 53158 -186.209.40.0/24 265892 -186.209.41.0/24 53158 -186.209.42.0/24 53158 -186.209.43.0/24 265892 -186.209.44.0/22 265892 -186.209.48.0/23 53158 -186.209.50.0/23 265892 -186.209.52.0/23 53158 -186.209.54.0/23 265892 -186.209.56.0/24 265892 -186.209.57.0/24 53158 -186.209.58.0/23 53158 -186.209.60.0/23 53158 -186.209.62.0/23 265892 -186.209.64.0/23 265114 -186.209.66.0/23 262743 -186.209.68.0/22 262743 -186.209.72.0/21 262743 -186.209.80.0/21 263091 -186.209.88.0/22 28610 -186.209.96.0/20 53153 -186.209.112.0/21 28151 -186.209.128.0/20 53169 -186.209.144.0/20 262745 -186.209.160.0/20 28625 -186.209.176.0/21 262982 -186.209.184.0/21 53024 -186.209.192.0/20 262746 -186.209.216.0/22 28638 -186.209.220.0/22 263264 -186.209.224.0/20 53154 -186.209.240.0/20 53155 -186.210.0.0/16 53006 -186.211.0.0/20 53156 -186.211.16.0/20 262983 -186.211.32.0/20 262664 -186.211.48.0/20 262986 -186.211.64.0/19 26615 -186.211.96.0/20 53062 -186.211.112.0/20 262747 -186.211.128.0/20 14840 -186.211.144.0/21 14840 -186.211.152.0/22 14840 -186.211.160.0/21 14840 -186.211.168.0/22 14840 -186.211.176.0/20 14840 -186.211.192.0/22 14840 -186.211.196.0/24 14840 -186.211.197.0/24 20940 -186.211.198.0/23 14840 -186.211.200.0/22 14840 -186.211.208.0/21 14840 -186.211.216.0/22 14840 -186.211.224.0/21 14840 -186.211.232.0/22 14840 -186.211.240.0/21 14840 -186.211.248.0/22 14840 -186.212.0.0/14 18881 -186.216.0.0/18 262663 -186.216.64.0/18 28202 -186.216.128.0/20 28201 -186.216.144.0/21 7048 -186.216.152.0/21 262955 -186.216.160.0/19 262753 -186.216.192.0/20 52973 -186.216.208.0/22 262989 -186.216.213.0/24 262989 -186.216.214.0/23 262989 -186.216.216.0/21 52999 -186.216.224.0/20 28238 -186.216.240.0/20 53165 -186.217.0.0/16 53166 -186.218.24.0/22 28573 -186.218.112.0/20 28573 -186.218.176.0/21 28573 -186.218.192.0/20 28573 -186.218.220.0/22 28573 -186.218.224.0/20 28573 -186.218.240.0/22 28573 -186.218.248.0/21 28573 -186.219.0.0/19 262589 -186.219.32.0/20 262589 -186.219.56.0/22 263451 -186.219.60.0/22 263147 -186.219.64.0/20 28218 -186.219.80.0/20 52888 -186.219.96.0/20 262420 -186.219.112.0/21 262271 -186.219.120.0/21 61890 -186.219.128.0/20 53167 -186.219.144.0/20 262992 -186.219.160.0/20 262754 -186.219.176.0/21 262995 -186.219.184.0/21 262970 -186.219.192.0/20 53168 -186.219.208.0/21 262996 -186.219.216.0/21 61588 -186.219.240.0/20 262997 -186.220.0.0/15 28573 -186.222.0.0/18 28573 -186.222.64.0/19 28573 -186.222.112.0/20 28573 -186.222.128.0/17 28573 -186.223.0.0/16 28573 -186.224.0.0/20 262755 -186.224.16.0/21 262755 -186.224.24.0/21 263073 -186.224.32.0/20 262756 -186.224.48.0/20 53170 -186.224.64.0/20 28142 -186.224.80.0/21 262998 -186.224.88.0/21 262476 -186.224.96.0/19 262757 -186.224.128.0/18 28580 -186.224.192.0/19 28189 -186.224.224.0/20 53171 -186.224.240.0/20 262758 -186.225.0.0/20 262759 -186.225.16.0/20 262760 -186.225.32.0/19 28368 -186.225.64.0/20 53172 -186.225.80.0/20 53173 -186.225.96.0/19 28669 -186.225.128.0/19 262761 -186.225.160.0/20 262762 -186.225.176.0/21 263099 -186.225.184.0/21 262387 -186.225.192.0/20 53174 -186.225.208.0/21 263101 -186.225.216.0/21 52531 -186.225.224.0/19 53175 -186.226.0.0/20 53176 -186.226.16.0/23 16594 -186.226.18.0/24 262763 -186.226.19.0/24 16594 -186.226.20.0/22 262763 -186.226.24.0/21 262763 -186.226.32.0/20 28208 -186.226.48.0/21 262979 -186.226.56.0/21 262954 -186.226.64.0/20 28329 -186.226.80.0/21 28329 -186.226.88.0/23 28329 -186.226.92.0/22 28329 -186.226.96.0/20 52999 -186.226.112.0/20 53178 -186.226.128.0/20 28294 -186.226.144.0/20 262980 -186.226.160.0/20 53180 -186.226.176.0/20 262999 -186.226.192.0/21 262764 -186.226.200.0/21 262290 -186.226.208.0/21 263008 -186.226.216.0/22 262957 -186.226.220.0/22 52865 -186.226.224.0/20 28333 -186.226.240.0/20 263011 -186.227.0.0/20 262765 -186.227.16.0/20 53182 -186.227.32.0/20 262744 -186.227.48.0/20 53162 -186.227.64.0/20 262767 -186.227.80.0/20 53185 -186.227.96.0/20 28130 -186.227.112.0/21 263002 -186.227.120.0/22 52561 -186.227.124.0/22 263278 -186.227.128.0/20 53189 -186.227.144.0/21 263006 -186.227.152.0/22 262972 -186.227.156.0/22 263136 -186.227.160.0/20 262721 -186.227.176.0/21 263015 -186.227.184.0/22 262975 -186.227.188.0/23 263279 -186.227.190.0/23 263287 -186.227.192.0/20 33182 -186.227.208.0/21 263007 -186.227.216.0/21 262342 -186.227.224.0/20 53197 -186.227.240.0/20 262779 -186.228.0.0/14 26615 -186.232.0.0/21 53183 -186.232.8.0/21 263056 -186.232.16.0/20 262766 -186.232.32.0/21 262768 -186.232.40.0/21 263057 -186.232.48.0/21 53184 -186.232.56.0/22 262769 -186.232.60.0/24 262534 -186.232.61.0/24 262614 -186.232.62.0/23 53021 -186.232.64.0/21 262770 -186.232.72.0/22 52877 -186.232.76.0/22 262289 -186.232.80.0/22 53186 -186.232.84.0/22 263060 -186.232.88.0/21 263054 -186.232.96.0/22 53188 -186.232.108.0/22 263062 -186.232.112.0/21 53190 -186.232.120.0/21 263055 -186.232.128.0/21 53191 -186.232.136.0/21 263058 -186.232.144.0/21 262732 -186.232.152.0/23 263059 -186.232.154.0/24 263059 -186.232.158.0/23 263059 -186.232.160.0/20 53194 -186.232.176.0/22 262772 -186.232.180.0/22 263065 -186.232.184.0/22 53198 -186.232.188.0/22 263071 -186.232.192.0/21 262773 -186.232.200.0/21 52878 -186.232.208.0/21 53196 -186.232.224.0/21 262774 -186.232.232.0/21 52879 -186.232.240.0/24 53193 -186.232.241.0/24 53228 -186.232.243.0/24 262860 -186.232.245.0/24 262897 -186.232.246.0/24 53215 -186.232.247.0/24 52996 -186.232.248.0/21 262775 -186.233.8.0/22 262778 -186.233.12.0/22 263083 -186.233.16.0/21 262777 -186.233.32.0/20 53201 -186.233.48.0/23 262782 -186.233.50.0/24 262782 -186.233.52.0/23 262782 -186.233.55.0/24 262782 -186.233.56.0/22 263069 -186.233.60.0/22 53241 -186.233.64.0/21 262781 -186.233.72.0/21 263070 -186.233.80.0/21 53204 -186.233.88.0/22 262787 -186.233.92.0/22 263098 -186.233.96.0/22 262786 -186.233.100.0/23 262786 -186.233.102.0/24 262786 -186.233.103.0/24 268080 -186.233.104.0/21 263073 -186.233.112.0/21 266181 -186.233.120.0/21 263075 -186.233.128.0/21 262789 -186.233.141.0/24 262991 -186.233.142.0/24 262297 -186.233.143.0/24 52891 -186.233.144.0/21 262790 -186.233.152.0/21 263076 -186.233.160.0/21 53050 -186.233.168.0/22 263078 -186.233.172.0/22 262952 -186.233.176.0/21 53209 -186.233.184.0/22 262287 -186.233.188.0/22 262355 -186.233.192.0/21 262791 -186.233.200.0/22 52882 -186.233.204.0/22 262958 -186.233.208.0/21 262793 -186.233.216.0/22 263085 -186.233.220.0/22 52866 -186.233.224.0/22 53211 -186.233.228.0/22 262675 -186.233.236.0/22 262772 -186.233.242.0/23 28637 -186.233.244.0/22 28637 -186.233.248.0/22 263093 -186.233.252.0/22 262491 -186.234.0.0/18 7162 -186.234.64.0/20 7162 -186.234.80.0/24 7162 -186.234.127.0/24 7162 -186.234.128.0/18 7162 -186.234.192.0/19 13878 -186.234.224.0/22 7162 -186.234.228.0/22 19089 -186.234.232.0/22 19089 -186.234.238.0/24 19089 -186.234.240.0/21 19089 -186.234.248.0/22 19089 -186.234.252.0/23 18479 -186.234.254.0/23 19089 -186.235.0.0/20 262780 -186.235.16.0/20 262434 -186.235.32.0/20 53199 -186.235.48.0/21 263096 -186.235.56.0/22 53001 -186.235.60.0/22 263270 -186.235.64.0/20 262725 -186.235.80.0/21 263097 -186.235.88.0/22 262377 -186.235.92.0/22 52560 -186.235.96.0/20 28258 -186.235.112.0/21 28239 -186.235.120.0/21 262950 -186.235.128.0/19 53202 -186.235.160.0/20 262784 -186.235.176.0/22 28139 -186.235.180.0/23 28139 -186.235.182.0/24 28139 -186.235.184.0/21 61888 -186.235.192.0/19 262673 -186.235.224.0/20 53205 -186.235.240.0/21 263103 -186.235.248.0/22 262953 -186.235.252.0/22 263285 -186.236.0.0/19 53206 -186.236.32.0/20 262688 -186.236.48.0/20 262798 -186.236.64.0/19 27693 -186.236.96.0/19 53131 -186.236.128.0/18 22689 -186.236.192.0/19 28220 -186.236.224.0/20 28219 -186.237.0.0/20 262797 -186.237.16.0/21 263004 -186.237.24.0/22 262964 -186.237.28.0/22 262965 -186.237.32.0/20 28255 -186.237.48.0/21 263009 -186.237.56.0/22 262968 -186.237.60.0/22 262310 -186.237.64.0/19 262799 -186.237.112.0/21 263010 -186.237.120.0/21 262732 -186.237.128.0/20 28330 -186.237.144.0/21 267442 -186.237.152.0/21 263553 -186.237.160.0/20 262813 -186.237.176.0/20 263018 -186.237.192.0/21 262814 -186.237.200.0/22 262814 -186.237.204.0/23 262814 -186.237.207.0/24 262814 -186.237.208.0/21 263020 -186.237.216.0/21 263558 -186.237.224.0/20 53217 -186.237.240.0/21 61583 -186.237.248.0/21 263559 -186.238.0.0/15 10429 -186.240.0.0/13 7738 -186.248.0.0/16 23106 -186.249.0.0/24 28250 -186.249.1.0/24 25933 -186.249.2.0/23 25933 -186.249.4.0/22 28250 -186.249.8.0/24 28250 -186.249.9.0/24 25933 -186.249.10.0/24 25933 -186.249.11.0/24 28250 -186.249.12.0/24 25933 -186.249.13.0/24 28250 -186.249.14.0/23 28250 -186.249.16.0/21 263022 -186.249.24.0/21 262463 -186.249.32.0/20 28195 -186.249.48.0/20 263023 -186.249.64.0/20 262822 -186.249.80.0/20 263024 -186.249.96.0/19 28276 -186.249.128.0/19 28649 -186.249.160.0/22 53037 -186.249.164.0/23 53037 -186.249.166.0/24 53037 -186.249.170.0/24 53037 -186.249.176.0/20 262532 -186.249.192.0/20 28192 -186.249.208.0/21 263026 -186.249.216.0/22 263569 -186.249.220.0/24 263576 -186.249.221.0/24 61892 -186.249.222.0/24 263605 -186.249.223.0/24 263662 -186.249.224.0/20 21574 -186.249.240.0/21 263027 -186.249.248.0/21 263570 -186.250.0.0/21 262801 -186.250.8.0/21 262802 -186.250.16.0/21 262803 -186.250.24.0/22 263089 -186.250.28.0/22 262966 -186.250.36.0/22 263032 -186.250.40.0/21 262805 -186.250.48.0/21 262807 -186.250.56.0/22 262809 -186.250.64.0/21 53213 -186.250.72.0/21 263090 -186.250.80.0/21 262810 -186.250.88.0/22 263100 -186.250.92.0/22 262967 -186.250.96.0/21 264141 -186.250.104.0/21 262805 -186.250.112.0/22 262812 -186.250.116.0/22 262273 -186.250.120.0/22 262817 -186.250.124.0/22 262275 -186.250.128.0/21 262815 -186.250.136.0/22 262981 -186.250.140.0/22 52951 -186.250.152.0/23 55259 -186.250.154.0/24 1239 -186.250.155.0/24 55259 -186.250.156.0/22 262974 -186.250.160.0/22 262818 -186.250.164.0/22 52894 -186.250.168.0/21 53218 -186.250.176.0/21 53216 -186.250.184.0/22 262978 -186.250.188.0/22 263554 -186.250.192.0/20 28162 -186.250.208.0/21 262819 -186.250.220.0/22 263555 -186.250.224.0/22 53219 -186.250.228.0/22 52897 -186.250.232.0/21 262821 -186.250.240.0/21 53221 -186.250.248.0/22 262985 -186.250.252.0/22 263557 -186.251.0.0/21 262820 -186.251.8.0/22 262988 -186.251.12.0/22 263561 -186.251.16.0/21 53222 -186.251.24.0/22 262990 -186.251.28.0/22 262380 -186.251.38.0/24 52910 -186.251.39.0/24 52914 -186.251.40.0/21 262825 -186.251.48.0/21 262824 -186.251.56.0/22 262903 -186.251.60.0/24 52621 -186.251.61.0/24 52636 -186.251.62.0/23 52622 -186.251.64.0/21 262826 -186.251.72.0/21 262993 -186.251.80.0/21 53223 -186.251.88.0/22 262994 -186.251.92.0/22 52624 -186.251.96.0/21 262828 -186.251.104.0/22 262821 -186.251.108.0/22 263565 -186.251.112.0/24 53224 -186.251.114.0/23 53224 -186.251.116.0/24 53224 -186.251.118.0/24 53224 -186.251.120.0/22 262831 -186.251.124.0/22 52899 -186.251.128.0/20 53225 -186.251.144.0/21 28130 -186.251.152.0/22 262836 -186.251.156.0/22 52900 -186.251.160.0/21 53227 -186.251.168.0/22 262907 -186.251.172.0/22 53025 -186.251.176.0/21 262832 -186.251.184.0/22 263003 -186.251.188.0/23 263568 -186.251.190.0/23 263575 -186.251.192.0/21 262834 -186.251.200.0/23 28247 -186.251.202.0/24 28201 -186.251.203.0/24 28247 -186.251.204.0/22 263580 -186.251.208.0/22 262837 -186.251.212.0/23 262837 -186.251.214.0/24 262837 -186.251.216.0/21 263005 -186.251.224.0/22 262838 -186.251.228.0/22 52912 -186.251.232.0/22 53229 -186.251.240.0/21 262839 -186.251.248.0/21 267513 -186.252.0.0/14 26615 -187.0.0.0/20 28283 -187.0.16.0/24 262751 -187.0.28.0/22 262751 -187.0.48.0/20 28352 -187.0.64.0/18 22689 -187.0.128.0/21 28238 -187.0.136.0/22 28238 -187.0.144.0/20 28239 -187.0.160.0/22 28240 -187.0.164.0/22 263113 -187.0.168.0/21 263128 -187.0.176.0/20 28241 -187.0.192.0/19 26592 -187.0.224.0/20 28242 -187.0.248.0/21 28243 -187.1.0.0/20 28244 -187.1.16.0/20 28245 -187.1.32.0/20 28246 -187.1.48.0/24 28247 -187.1.49.0/24 28201 -187.1.50.0/24 28201 -187.1.51.0/24 28247 -187.1.52.0/23 28247 -187.1.54.0/24 28201 -187.1.55.0/24 28247 -187.1.56.0/22 28247 -187.1.60.0/24 28247 -187.1.61.0/24 28201 -187.1.62.0/24 28201 -187.1.63.0/24 28247 -187.1.64.0/20 28280 -187.1.80.0/24 28250 -187.1.81.0/24 25933 -187.1.82.0/23 28250 -187.1.84.0/24 28250 -187.1.85.0/24 25933 -187.1.86.0/24 28250 -187.1.87.0/24 25933 -187.1.88.0/23 25933 -187.1.90.0/24 25933 -187.1.91.0/24 28250 -187.1.92.0/22 28250 -187.1.96.0/20 28249 -187.1.112.0/20 53163 -187.1.128.0/20 28299 -187.1.144.0/20 28251 -187.1.160.0/20 28252 -187.1.176.0/20 21574 -187.1.192.0/18 26599 -187.2.0.0/15 28573 -187.4.0.0/19 8167 -187.4.32.0/20 8167 -187.4.48.0/22 8167 -187.4.52.0/23 8167 -187.4.54.0/24 8167 -187.4.55.0/24 20940 -187.4.56.0/21 8167 -187.4.64.0/18 8167 -187.4.128.0/17 8167 -187.5.0.0/16 8167 -187.6.0.0/15 8167 -187.8.0.0/15 10429 -187.10.0.0/15 27699 -187.12.0.0/14 7738 -187.16.0.0/23 263162 -187.16.3.0/24 263162 -187.16.4.0/24 263162 -187.16.6.0/24 263162 -187.16.8.0/23 263162 -187.16.10.0/24 263162 -187.16.12.0/23 263162 -187.16.16.0/22 19089 -187.16.20.0/23 19089 -187.16.22.0/24 19089 -187.16.23.0/24 18479 -187.16.24.0/21 19089 -187.16.32.0/19 11835 -187.16.64.0/18 17222 -187.16.128.0/20 28254 -187.16.144.0/20 28255 -187.16.160.0/21 28256 -187.16.168.0/23 28256 -187.16.172.0/22 28256 -187.16.176.0/20 28258 -187.16.224.0/20 262907 -187.16.240.0/20 28260 -187.17.0.0/22 28261 -187.17.5.0/24 28261 -187.17.8.0/23 28261 -187.17.12.0/24 28261 -187.17.16.0/20 28285 -187.17.32.0/20 28262 -187.17.48.0/20 262801 -187.17.64.0/21 18479 -187.17.72.0/23 18479 -187.17.74.0/24 18479 -187.17.75.0/24 7162 -187.17.76.0/24 18479 -187.17.77.0/24 7162 -187.17.78.0/23 7162 -187.17.80.0/22 19089 -187.17.84.0/22 7162 -187.17.88.0/22 7162 -187.17.92.0/23 7162 -187.17.94.0/24 7162 -187.17.95.0/24 19089 -187.17.96.0/19 7162 -187.17.144.0/20 28279 -187.17.160.0/20 28263 -187.17.176.0/20 28264 -187.17.192.0/20 28265 -187.17.208.0/20 28266 -187.17.224.0/20 28267 -187.17.240.0/20 28201 -187.18.0.0/20 28269 -187.18.16.0/20 28121 -187.18.32.0/20 7048 -187.18.48.0/20 21911 -187.18.64.0/18 22689 -187.18.128.0/17 28270 -187.19.0.0/20 28124 -187.19.16.0/20 28125 -187.19.32.0/20 28127 -187.19.48.0/20 28128 -187.19.80.0/20 28667 -187.19.96.0/20 28130 -187.19.112.0/20 53160 -187.19.128.0/17 28126 -187.20.0.0/14 28573 -187.24.0.0/14 22085 -187.28.0.0/15 4230 -187.30.0.0/16 4230 -187.31.0.0/16 14571 -187.32.0.0/16 16735 -187.33.0.0/20 26592 -187.33.16.0/21 26592 -187.33.24.0/23 26592 -187.33.29.0/24 26592 -187.33.30.0/23 26592 -187.33.32.0/20 262421 -187.33.48.0/21 263080 -187.33.56.0/21 28194 -187.33.64.0/19 28661 -187.33.96.0/20 53082 -187.33.112.0/20 53083 -187.33.129.0/24 262693 -187.33.130.0/23 262693 -187.33.132.0/24 262693 -187.33.135.0/24 262693 -187.33.142.0/23 262693 -187.33.144.0/20 53084 -187.33.160.0/20 53085 -187.33.176.0/20 262694 -187.33.192.0/22 53086 -187.33.196.0/22 265892 -187.33.200.0/21 53086 -187.33.208.0/20 53088 -187.33.224.0/19 53087 -187.34.0.0/15 27699 -187.36.0.0/14 28573 -187.40.0.0/14 7738 -187.44.0.0/18 28202 -187.44.64.0/20 28309 -187.44.80.0/20 28132 -187.44.96.0/19 28303 -187.44.128.0/17 28186 -187.45.0.0/19 28580 -187.45.32.0/20 28133 -187.45.48.0/20 268323 -187.45.64.0/20 28134 -187.45.80.0/20 28135 -187.45.96.0/19 28146 -187.45.128.0/20 28136 -187.45.144.0/20 28370 -187.45.160.0/20 263946 -187.45.176.0/21 33182 -187.45.184.0/22 33182 -187.45.188.0/23 33182 -187.45.190.0/24 33182 -187.45.191.0/24 3356 -187.45.192.0/18 27715 -187.46.0.0/15 26615 -187.48.0.0/20 17379 -187.48.16.0/20 26615 -187.48.32.0/21 26615 -187.48.40.0/21 17379 -187.48.48.0/22 17379 -187.48.52.0/22 26615 -187.48.56.0/21 17379 -187.48.64.0/19 17379 -187.48.96.0/19 26615 -187.48.128.0/20 17379 -187.48.144.0/22 17379 -187.48.148.0/23 26615 -187.48.150.0/24 26615 -187.48.151.0/24 17379 -187.48.152.0/21 17379 -187.48.160.0/19 26615 -187.48.192.0/19 17379 -187.48.224.0/20 17379 -187.48.240.0/22 17379 -187.48.244.0/23 17379 -187.48.246.0/24 26615 -187.48.247.0/24 17379 -187.48.248.0/23 17379 -187.48.250.0/23 26615 -187.48.252.0/22 26615 -187.49.0.0/20 28138 -187.49.16.0/20 28139 -187.49.32.0/20 28140 -187.49.48.0/20 262806 -187.49.64.0/20 28141 -187.49.80.0/20 28142 -187.49.96.0/20 28143 -187.49.112.0/20 28144 -187.49.128.0/20 28145 -187.49.192.0/20 53059 -187.49.208.0/20 28154 -187.49.224.0/20 7048 -187.49.240.0/21 53214 -187.49.248.0/21 262184 -187.50.0.0/15 10429 -187.52.0.0/14 8167 -187.56.0.0/15 27699 -187.58.0.0/15 18881 -187.60.16.0/21 28150 -187.60.24.0/23 28150 -187.60.28.0/22 28150 -187.60.32.0/20 28368 -187.60.48.0/24 28151 -187.60.50.0/23 28151 -187.60.52.0/23 28151 -187.60.54.0/24 28151 -187.60.56.0/23 28151 -187.60.58.0/24 28151 -187.60.60.0/24 28151 -187.60.62.0/24 28151 -187.60.64.0/19 28220 -187.60.96.0/20 265233 -187.60.112.0/20 28652 -187.60.128.0/20 28152 -187.60.144.0/20 28153 -187.60.160.0/20 28156 -187.60.176.0/20 262907 -187.60.192.0/24 28157 -187.60.208.0/20 28158 -187.60.224.0/20 28644 -187.60.240.0/20 28161 -187.61.0.0/20 19089 -187.61.16.0/22 19089 -187.61.20.0/23 19089 -187.61.22.0/23 18479 -187.61.24.0/23 18479 -187.61.26.0/23 19089 -187.61.28.0/22 19089 -187.61.32.0/22 19089 -187.61.36.0/23 19089 -187.61.39.0/24 19089 -187.61.40.0/21 19089 -187.61.48.0/20 18479 -187.61.64.0/20 28583 -187.61.96.0/20 53153 -187.61.112.0/21 263047 -187.61.120.0/21 262952 -187.61.128.0/17 28220 -187.62.0.0/18 22689 -187.62.64.0/22 269719 -187.62.68.0/22 270242 -187.62.72.0/22 269723 -187.62.80.0/22 269714 -187.62.84.0/23 269715 -187.62.87.0/24 269715 -187.62.88.0/23 270243 -187.62.90.0/24 270243 -187.62.96.0/22 269720 -187.62.100.0/22 270244 -187.62.112.0/22 269721 -187.62.120.0/22 28394 -187.62.128.0/20 28159 -187.62.144.0/20 28160 -187.62.160.0/20 53063 -187.62.176.0/20 262662 -187.62.192.0/20 262617 -187.62.208.0/20 28165 -187.62.224.0/19 262663 -187.63.0.0/20 28658 -187.63.16.0/20 28212 -187.63.32.0/20 28163 -187.63.48.0/20 28164 -187.63.64.0/20 262664 -187.63.80.0/20 262665 -187.63.96.0/20 53111 -187.63.113.0/24 262667 -187.63.114.0/24 262667 -187.63.116.0/24 262667 -187.63.128.0/20 28166 -187.63.144.0/20 28167 -187.63.160.0/19 28169 -187.63.192.0/20 53050 -187.63.208.0/20 53097 -187.63.240.0/20 28170 -187.64.0.0/17 28573 -187.64.128.0/18 28573 -187.64.192.0/19 28573 -187.65.0.0/16 28573 -187.66.0.0/15 28573 -187.68.0.0/14 22085 -187.72.0.0/16 16735 -187.73.0.0/20 28201 -187.73.16.0/20 262671 -187.73.32.0/22 262672 -187.73.48.0/20 262668 -187.73.64.0/19 262673 -187.73.96.0/20 53048 -187.73.112.0/20 263621 -187.73.128.0/21 28576 -187.73.136.0/22 28576 -187.73.140.0/23 28576 -187.73.144.0/20 28657 -187.73.160.0/20 28654 -187.73.192.0/19 53054 -187.73.224.0/20 262676 -187.73.240.0/20 262669 -187.74.0.0/15 27699 -187.76.0.0/17 7738 -187.76.128.0/18 7738 -187.76.192.0/19 7738 -187.76.224.0/21 7738 -187.76.232.0/22 7738 -187.76.236.0/24 7738 -187.76.237.0/24 28159 -187.76.238.0/23 7738 -187.76.240.0/20 7738 -187.77.0.0/16 7738 -187.78.0.0/15 7738 -187.80.0.0/14 26615 -187.84.0.0/20 28580 -187.84.16.0/20 53051 -187.84.32.0/22 53052 -187.84.37.0/24 53052 -187.84.43.0/24 53052 -187.84.44.0/22 53052 -187.84.48.0/20 53053 -187.84.64.0/20 53136 -187.84.80.0/20 52850 -187.84.96.0/20 8055 -187.84.128.0/20 28255 -187.84.144.0/20 53071 -187.84.160.0/20 28285 -187.84.176.0/20 262827 -187.84.192.0/19 25933 -187.84.224.0/20 53057 -187.84.240.0/20 53058 -187.85.0.0/19 262659 -187.85.32.0/20 28668 -187.85.48.0/21 262727 -187.85.56.0/22 262962 -187.85.60.0/22 262403 -187.85.64.0/20 53060 -187.85.80.0/20 262680 -187.85.96.0/20 262660 -187.85.112.0/20 28614 -187.85.128.0/20 53061 -187.85.144.0/20 53062 -187.85.160.0/19 28343 -187.85.192.0/21 267484 -187.85.200.0/21 28349 -187.85.208.0/21 28349 -187.85.216.0/22 267484 -187.85.220.0/22 28349 -187.85.224.0/19 28205 -187.86.0.0/20 28135 -187.86.16.0/22 28135 -187.86.24.0/21 28135 -187.86.32.0/21 53064 -187.86.40.0/22 53064 -187.86.48.0/20 53065 -187.86.64.0/20 28201 -187.86.80.0/20 262681 -187.86.96.0/20 262682 -187.86.112.0/20 53067 -187.86.128.0/19 53066 -187.86.176.0/20 262689 -187.86.192.0/23 53069 -187.86.194.0/24 53069 -187.86.200.0/21 263146 -187.86.208.0/20 53070 -187.86.224.0/20 262679 -187.86.240.0/20 53072 -187.87.0.0/20 262683 -187.87.16.0/20 28366 -187.87.32.0/20 53073 -187.87.48.0/20 262844 -187.87.64.0/21 53143 -187.87.72.0/21 262420 -187.87.80.0/20 262520 -187.87.96.0/20 28288 -187.87.112.0/20 53059 -187.87.128.0/20 28585 -187.87.144.0/20 262686 -187.87.160.0/20 53076 -187.87.176.0/20 52984 -187.87.192.0/20 262687 -187.87.208.0/20 262688 -187.87.224.0/20 262689 -187.87.240.0/20 262690 -187.88.0.0/14 26599 -187.92.0.0/17 10429 -187.92.128.0/18 10429 -187.92.192.0/20 10429 -187.92.208.0/24 10429 -187.92.209.0/24 262182 -187.92.210.0/23 10429 -187.92.212.0/22 10429 -187.92.216.0/21 10429 -187.92.224.0/19 10429 -187.93.0.0/16 10429 -187.94.16.0/20 53075 -187.94.32.0/20 262684 -187.94.48.0/20 53124 -187.94.64.0/20 53077 -187.94.80.0/20 28306 -187.94.96.0/20 28192 -187.94.112.0/20 28322 -187.94.128.0/19 28359 -187.94.160.0/19 28649 -187.94.192.0/20 262691 -187.94.208.0/20 53078 -187.94.224.0/20 53079 -187.94.240.0/20 262692 -187.95.0.0/20 53080 -187.95.16.0/20 53081 -187.95.32.0/20 28260 -187.95.48.0/20 53090 -187.95.64.0/20 262695 -187.95.80.0/20 262696 -187.95.96.0/19 14868 -187.95.128.0/22 265264 -187.95.132.0/22 262318 -187.95.136.0/21 262318 -187.95.144.0/24 52976 -187.95.145.0/24 262318 -187.95.146.0/23 262318 -187.95.148.0/22 262318 -187.95.152.0/21 262318 -187.95.160.0/20 53089 -187.95.176.0/20 53090 -187.95.192.0/20 21911 -187.95.224.0/19 53093 -187.96.0.0/14 26615 -187.100.0.0/15 27699 -187.102.0.0/20 28343 -187.102.16.0/20 53094 -187.102.32.0/20 262698 -187.102.48.0/20 53095 -187.102.64.0/20 262699 -187.102.80.0/20 53096 -187.102.96.0/20 28276 -187.102.112.0/20 262700 -187.102.128.0/18 17222 -187.103.0.0/20 53098 -187.103.32.0/20 53099 -187.103.48.0/20 262807 -187.103.64.0/20 53144 -187.103.80.0/20 262702 -187.103.96.0/19 14840 -187.103.128.0/20 53100 -187.103.144.0/20 53101 -187.103.160.0/20 53102 -187.103.176.0/23 53103 -187.103.178.0/24 53103 -187.103.180.0/24 53103 -187.103.182.0/24 53103 -187.103.184.0/23 53103 -187.103.187.0/24 53103 -187.103.190.0/23 53103 -187.103.208.0/20 28140 -187.103.224.0/19 28283 -187.104.0.0/18 28573 -187.104.64.0/20 28573 -187.104.96.0/19 28573 -187.104.128.0/18 28573 -187.104.192.0/19 28573 -187.105.0.0/18 28573 -187.105.64.0/20 28573 -187.105.80.0/21 28573 -187.105.88.0/23 28573 -187.105.93.0/24 28573 -187.105.94.0/23 28573 -187.105.96.0/19 28573 -187.105.128.0/17 28573 -187.106.0.0/15 28573 -187.108.0.0/22 28267 -187.108.4.0/24 28267 -187.108.5.0/24 265892 -187.108.6.0/23 265892 -187.108.8.0/23 265892 -187.108.10.0/24 28267 -187.108.11.0/24 262778 -187.108.12.0/23 28267 -187.108.14.0/24 28267 -187.108.15.0/24 265892 -187.108.16.0/20 53169 -187.108.32.0/20 28669 -187.108.48.0/20 28201 -187.108.64.0/20 53104 -187.108.80.0/20 262674 -187.108.96.0/20 53106 -187.108.112.0/20 53125 -187.108.128.0/18 262589 -187.108.192.0/20 53107 -187.108.208.0/20 28343 -187.108.224.0/23 53108 -187.108.226.0/24 53108 -187.108.227.0/24 28124 -187.108.228.0/22 53108 -187.108.232.0/21 53108 -187.108.240.0/20 53109 -187.109.0.0/21 53110 -187.109.8.0/22 53110 -187.109.12.0/24 3 -187.109.13.0/24 53110 -187.109.14.0/23 53110 -187.109.16.0/20 53112 -187.109.32.0/20 262706 -187.109.48.0/20 53113 -187.109.64.0/20 262666 -187.109.80.0/20 53139 -187.109.96.0/20 28158 -187.109.112.0/20 262767 -187.109.128.0/19 28668 -187.109.160.0/20 262707 -187.109.176.0/20 53114 -187.109.192.0/20 53115 -187.109.208.0/20 262498 -187.109.224.0/20 262732 -187.109.240.0/20 262497 -187.110.0.0/18 53116 -187.110.64.0/18 28624 -187.110.128.0/20 53127 -187.110.144.0/21 53117 -187.110.160.0/20 53118 -187.110.176.0/20 53122 -187.110.208.0/20 28331 -187.110.224.0/20 28598 -187.110.240.0/20 262730 -187.111.0.0/20 262709 -187.111.16.0/20 53120 -187.111.32.0/20 262710 -187.111.48.0/20 262711 -187.111.64.0/20 262712 -187.111.80.0/20 53147 -187.111.96.0/20 262714 -187.111.112.0/23 28364 -187.111.114.0/24 28364 -187.111.116.0/23 28364 -187.111.118.0/24 28364 -187.111.120.0/24 28364 -187.111.122.0/24 28364 -187.111.124.0/23 28364 -187.111.128.0/20 53121 -187.111.144.0/20 262715 -187.111.160.0/19 53122 -187.111.192.0/20 53123 -187.111.208.0/20 262717 -187.111.224.0/19 28220 -187.112.0.0/14 18881 -187.116.0.0/18 26599 -187.116.64.0/18 27699 -187.116.128.0/17 26599 -187.117.0.0/16 26599 -187.118.0.0/15 26599 -187.120.0.0/21 22381 -187.120.8.0/22 22381 -187.120.12.0/24 265303 -187.120.13.0/24 22381 -187.120.14.0/23 22381 -187.120.16.0/22 266181 -187.120.20.0/22 267463 -187.120.24.0/22 266181 -187.120.28.0/23 267463 -187.120.30.0/23 266181 -187.120.32.0/20 262685 -187.120.48.0/20 262716 -187.120.64.0/18 28202 -187.120.128.0/20 28245 -187.120.144.0/20 53126 -187.120.176.0/20 262719 -187.120.192.0/20 53140 -187.120.208.0/20 262721 -187.120.224.0/20 262722 -187.120.240.0/20 53130 -187.121.0.0/17 19182 -187.121.136.0/21 22689 -187.121.144.0/21 53195 -187.121.160.0/20 262704 -187.121.176.0/20 262723 -187.121.192.0/19 53131 -187.121.224.0/20 28296 -187.121.240.0/20 262724 -187.122.0.0/16 28573 -187.123.0.0/17 28573 -187.123.128.0/18 28573 -187.123.224.0/20 28573 -187.123.240.0/21 28573 -187.123.248.0/21 53128 -187.124.0.0/14 7738 -187.130.0.0/15 8151 -187.132.0.0/14 8151 -187.136.0.0/16 8151 -187.137.0.0/17 8151 -187.137.128.0/18 8151 -187.138.0.0/17 8151 -187.138.128.0/18 8151 -187.138.192.0/19 8151 -187.139.0.0/16 8151 -187.140.0.0/16 8151 -187.141.0.0/24 8151 -187.141.1.0/24 20940 -187.141.2.0/24 20940 -187.141.3.0/24 8151 -187.141.4.0/22 8151 -187.141.8.0/21 8151 -187.141.16.0/20 8151 -187.141.32.0/19 8151 -187.141.64.0/18 8151 -187.141.128.0/17 8151 -187.142.0.0/15 8151 -187.144.0.0/14 8151 -187.148.0.0/16 8151 -187.149.0.0/17 8151 -187.150.0.0/17 8151 -187.150.128.0/18 8151 -187.150.192.0/19 8151 -187.151.0.0/16 8151 -187.152.0.0/17 8151 -187.152.160.0/19 8151 -187.152.192.0/18 8151 -187.153.0.0/17 8151 -187.153.128.0/18 8151 -187.154.0.0/16 8151 -187.155.0.0/17 8151 -187.155.160.0/19 8151 -187.155.192.0/18 8151 -187.156.0.0/17 8151 -187.156.128.0/18 8151 -187.157.0.0/16 8151 -187.158.0.0/17 8151 -187.158.128.0/18 8151 -187.158.192.0/19 8151 -187.159.0.0/18 8151 -187.159.64.0/19 8151 -187.159.160.0/19 8151 -187.159.192.0/18 8151 -187.160.0.0/16 11888 -187.161.0.0/18 11888 -187.161.64.0/19 11888 -187.161.96.0/20 11888 -187.161.112.0/22 11888 -187.161.116.0/22 265594 -187.161.120.0/21 11888 -187.161.128.0/18 11888 -187.161.192.0/22 11888 -187.161.196.0/24 265594 -187.161.197.0/24 11888 -187.161.198.0/23 11888 -187.161.200.0/21 11888 -187.161.208.0/22 11888 -187.161.212.0/24 265594 -187.161.213.0/24 11888 -187.161.214.0/23 11888 -187.161.216.0/21 11888 -187.161.224.0/19 11888 -187.162.0.0/23 6503 -187.162.4.0/22 6503 -187.162.8.0/21 6503 -187.162.16.0/20 6503 -187.162.32.0/19 6503 -187.162.64.0/18 6503 -187.162.128.0/18 6503 -187.162.192.0/22 6503 -187.162.208.0/23 6503 -187.162.212.0/22 6503 -187.162.216.0/22 6503 -187.162.222.0/23 6503 -187.162.224.0/22 6503 -187.162.240.0/20 6503 -187.163.0.0/18 6503 -187.163.64.0/19 6503 -187.163.96.0/21 6503 -187.163.112.0/20 6503 -187.163.128.0/17 6503 -187.167.0.0/21 6503 -187.167.16.0/20 6503 -187.167.32.0/19 6503 -187.167.64.0/20 6503 -187.167.176.0/20 6503 -187.167.192.0/19 6503 -187.167.232.0/21 6503 -187.167.248.0/21 6503 -187.168.0.0/18 8151 -187.168.64.0/19 8151 -187.168.160.0/19 8151 -187.168.192.0/18 8151 -187.169.0.0/18 8151 -187.169.64.0/19 8151 -187.169.160.0/19 8151 -187.169.192.0/18 8151 -187.170.0.0/15 8151 -187.172.0.0/16 8151 -187.173.128.0/17 8151 -187.174.64.0/23 28513 -187.174.66.0/23 46090 -187.174.68.0/24 46090 -187.174.72.0/21 8151 -187.174.80.0/20 8151 -187.174.96.0/19 8151 -187.174.128.0/17 8151 -187.175.0.0/18 8151 -187.175.128.0/17 8151 -187.176.0.0/17 6503 -187.176.128.0/19 6503 -187.176.160.0/20 6503 -187.176.176.0/21 6503 -187.176.184.0/24 6503 -187.176.185.0/24 28506 -187.176.186.0/23 6503 -187.176.188.0/22 6503 -187.176.192.0/19 6503 -187.176.224.0/24 6503 -187.176.228.0/22 6503 -187.176.232.0/21 6503 -187.176.241.0/24 6503 -187.176.246.0/23 6503 -187.176.248.0/21 6503 -187.177.0.0/16 6503 -187.178.0.0/16 6503 -187.180.0.0/14 28573 -187.184.32.0/20 28555 -187.184.64.0/20 28554 -187.184.128.0/20 28554 -187.184.192.0/20 28554 -187.184.220.0/24 28554 -187.185.14.0/23 28509 -187.185.16.0/20 28509 -187.185.32.0/21 28509 -187.185.47.0/24 28509 -187.185.56.0/21 28509 -187.185.64.0/24 28512 -187.185.65.0/24 18734 -187.185.66.0/23 18734 -187.185.68.0/24 28555 -187.185.69.0/24 28509 -187.185.70.0/24 28509 -187.185.71.0/24 28512 -187.185.80.0/21 28509 -187.185.96.0/19 28509 -187.185.128.0/20 28509 -187.185.144.0/21 28509 -187.185.154.0/24 28556 -187.185.156.0/24 28509 -187.185.157.0/24 28512 -187.185.158.0/23 28512 -187.185.160.0/21 28509 -187.185.172.0/22 28509 -187.185.176.0/21 28509 -187.185.184.0/22 28509 -187.185.190.0/23 28509 -187.185.192.0/20 28509 -187.185.208.0/20 28512 -187.185.224.0/24 28545 -187.185.228.0/24 28509 -187.185.240.0/20 28509 -187.186.0.0/17 13591 -187.186.128.0/18 13591 -187.186.192.0/19 13591 -187.186.224.0/20 13591 -187.186.240.0/23 13591 -187.186.242.0/24 28536 -187.186.243.0/24 13591 -187.186.244.0/22 13591 -187.186.248.0/21 13591 -187.187.0.0/19 13591 -187.187.32.0/20 13591 -187.187.48.0/22 13591 -187.187.52.0/24 28532 -187.187.53.0/24 28535 -187.187.54.0/23 13591 -187.187.56.0/21 13591 -187.187.64.0/19 13591 -187.187.96.0/20 13591 -187.187.112.0/24 28537 -187.187.113.0/24 13591 -187.187.114.0/23 13591 -187.187.116.0/23 13591 -187.187.118.0/23 28534 -187.187.120.0/21 13591 -187.187.128.0/18 13591 -187.187.192.0/22 28532 -187.187.196.0/22 28535 -187.187.200.0/21 28534 -187.187.208.0/20 13591 -187.187.224.0/22 28530 -187.187.228.0/22 28533 -187.187.232.0/21 13591 -187.187.240.0/21 13591 -187.187.248.0/22 28534 -187.187.252.0/22 13591 -187.188.0.0/24 17072 -187.188.1.0/24 22884 -187.188.2.0/23 22884 -187.188.4.0/22 22884 -187.188.8.0/22 17072 -187.188.12.0/24 22884 -187.188.13.0/24 17072 -187.188.14.0/24 17072 -187.188.15.0/24 22884 -187.188.16.0/23 22884 -187.188.18.0/24 22884 -187.188.19.0/24 17072 -187.188.20.0/23 22884 -187.188.22.0/23 17072 -187.188.24.0/24 22884 -187.188.25.0/24 17072 -187.188.26.0/23 22884 -187.188.28.0/23 22884 -187.188.30.0/24 22884 -187.188.31.0/24 17072 -187.188.32.0/20 22884 -187.188.48.0/21 22884 -187.188.56.0/22 22884 -187.188.60.0/23 22884 -187.188.62.0/23 17072 -187.188.64.0/23 17072 -187.188.67.0/24 17072 -187.188.68.0/22 22884 -187.188.72.0/24 22884 -187.188.73.0/24 17072 -187.188.74.0/24 17072 -187.188.76.0/23 17072 -187.188.80.0/20 22884 -187.188.96.0/22 22884 -187.188.101.0/24 22884 -187.188.102.0/23 22884 -187.188.104.0/21 22884 -187.188.112.0/22 22884 -187.188.116.0/24 22884 -187.188.117.0/24 17072 -187.188.118.0/23 22884 -187.188.120.0/21 22884 -187.188.128.0/23 22884 -187.188.130.0/24 17072 -187.188.131.0/24 22884 -187.188.132.0/22 22884 -187.188.136.0/22 22884 -187.188.141.0/24 22884 -187.188.142.0/23 22884 -187.188.145.0/24 22884 -187.188.146.0/23 22884 -187.188.148.0/23 22884 -187.188.150.0/24 22884 -187.188.152.0/23 22884 -187.188.154.0/24 22884 -187.188.155.0/24 17072 -187.188.156.0/22 22884 -187.188.160.0/19 22884 -187.188.192.0/21 22884 -187.188.200.0/22 22884 -187.188.204.0/23 22884 -187.188.206.0/23 17072 -187.188.208.0/24 17072 -187.188.209.0/24 22884 -187.188.210.0/23 22884 -187.188.212.0/22 22884 -187.188.216.0/21 22884 -187.188.224.0/20 22884 -187.188.240.0/22 22884 -187.188.244.0/24 22884 -187.188.245.0/24 17072 -187.188.246.0/23 22884 -187.188.248.0/24 17072 -187.188.249.0/24 22884 -187.188.250.0/23 22884 -187.188.252.0/24 22884 -187.189.1.0/24 22884 -187.189.3.0/24 22884 -187.189.4.0/22 22884 -187.189.8.0/24 22884 -187.189.9.0/24 17072 -187.189.10.0/23 22884 -187.189.12.0/24 17072 -187.189.13.0/24 18846 -187.189.14.0/23 22884 -187.189.16.0/23 17072 -187.189.18.0/24 22884 -187.189.19.0/24 17072 -187.189.20.0/24 17072 -187.189.21.0/24 22884 -187.189.22.0/23 22884 -187.189.24.0/24 22884 -187.189.26.0/23 22884 -187.189.28.0/23 17072 -187.189.30.0/24 17072 -187.189.31.0/24 22884 -187.189.32.0/24 22884 -187.189.33.0/24 17072 -187.189.34.0/23 17072 -187.189.36.0/24 17072 -187.189.37.0/24 22884 -187.189.38.0/24 22884 -187.189.39.0/24 17072 -187.189.40.0/23 17072 -187.189.42.0/23 22884 -187.189.44.0/23 22884 -187.189.47.0/24 22884 -187.189.48.0/24 22884 -187.189.49.0/24 17072 -187.189.50.0/24 17072 -187.189.51.0/24 22884 -187.189.52.0/22 22884 -187.189.56.0/24 22884 -187.189.57.0/24 17072 -187.189.58.0/24 17072 -187.189.59.0/24 22884 -187.189.60.0/22 22884 -187.189.64.0/23 22884 -187.189.66.0/24 22884 -187.189.67.0/24 17072 -187.189.68.0/22 17072 -187.189.72.0/24 17072 -187.189.73.0/24 22884 -187.189.74.0/23 22884 -187.189.76.0/22 22884 -187.189.80.0/22 22884 -187.189.84.0/24 17072 -187.189.85.0/24 22884 -187.189.86.0/24 22884 -187.189.87.0/24 17072 -187.189.88.0/22 17072 -187.189.92.0/23 17072 -187.189.94.0/24 22884 -187.189.95.0/24 17072 -187.189.96.0/23 22884 -187.189.98.0/24 17072 -187.189.99.0/24 22884 -187.189.100.0/24 22884 -187.189.101.0/24 17072 -187.189.102.0/24 17072 -187.189.103.0/24 22884 -187.189.104.0/23 22884 -187.189.106.0/23 17072 -187.189.108.0/22 22884 -187.189.112.0/23 22884 -187.189.114.0/24 17072 -187.189.115.0/24 22884 -187.189.116.0/23 22884 -187.189.118.0/24 17072 -187.189.119.0/24 22884 -187.189.120.0/23 22884 -187.189.122.0/24 22884 -187.189.123.0/24 17072 -187.189.124.0/23 22884 -187.189.126.0/24 22884 -187.189.127.0/24 17072 -187.189.129.0/24 17072 -187.189.130.0/24 17072 -187.189.131.0/24 22884 -187.189.132.0/24 22884 -187.189.133.0/24 17072 -187.189.134.0/24 17072 -187.189.135.0/24 22884 -187.189.136.0/24 17072 -187.189.137.0/24 22884 -187.189.138.0/23 22884 -187.189.140.0/24 22884 -187.189.143.0/24 22884 -187.189.144.0/24 22884 -187.189.145.0/24 17072 -187.189.146.0/24 17072 -187.189.147.0/24 22884 -187.189.148.0/22 17072 -187.189.152.0/24 17072 -187.189.153.0/24 22884 -187.189.154.0/23 17072 -187.189.156.0/23 17072 -187.189.158.0/23 22884 -187.189.160.0/23 17072 -187.189.162.0/24 17072 -187.189.168.0/23 17072 -187.189.170.0/24 22884 -187.189.171.0/24 17072 -187.189.175.0/24 22884 -187.189.176.0/24 22884 -187.189.177.0/24 17072 -187.189.178.0/23 17072 -187.189.180.0/24 22884 -187.189.181.0/24 17072 -187.189.182.0/23 22884 -187.189.184.0/24 22884 -187.189.186.0/24 22884 -187.189.187.0/24 17072 -187.189.188.0/24 17072 -187.189.189.0/24 22884 -187.189.190.0/24 17072 -187.189.191.0/24 22884 -187.189.192.0/22 22884 -187.189.196.0/24 22884 -187.189.197.0/24 17072 -187.189.198.0/24 17072 -187.189.199.0/24 22884 -187.189.200.0/23 22884 -187.189.202.0/24 22884 -187.189.203.0/24 17072 -187.189.204.0/24 17072 -187.189.205.0/24 22884 -187.189.206.0/23 17072 -187.189.208.0/24 17072 -187.189.209.0/24 22884 -187.189.210.0/23 22884 -187.189.212.0/22 17072 -187.189.216.0/24 22884 -187.189.217.0/24 17072 -187.189.218.0/23 22884 -187.189.221.0/24 17072 -187.189.222.0/23 22884 -187.189.224.0/20 22884 -187.189.240.0/24 17072 -187.189.241.0/24 22884 -187.189.243.0/24 22884 -187.189.244.0/24 22884 -187.189.245.0/24 17072 -187.189.246.0/23 17072 -187.189.248.0/24 17072 -187.189.249.0/24 22884 -187.189.250.0/23 22884 -187.189.252.0/24 22884 -187.189.253.0/24 17072 -187.189.254.0/24 17072 -187.189.255.0/24 22884 -187.190.0.0/23 22884 -187.190.2.0/23 17072 -187.190.4.0/24 17072 -187.190.5.0/24 22884 -187.190.6.0/23 22884 -187.190.8.0/23 22884 -187.190.10.0/23 17072 -187.190.12.0/23 22884 -187.190.14.0/23 17072 -187.190.16.0/23 22884 -187.190.18.0/23 17072 -187.190.20.0/22 17072 -187.190.24.0/23 22884 -187.190.26.0/24 17072 -187.190.28.0/22 17072 -187.190.34.0/23 22884 -187.190.36.0/22 17072 -187.190.40.0/21 22884 -187.190.48.0/23 22884 -187.190.50.0/24 22884 -187.190.52.0/24 17072 -187.190.53.0/24 22884 -187.190.54.0/24 17072 -187.190.55.0/24 22884 -187.190.60.0/24 22884 -187.190.61.0/24 17072 -187.190.62.0/24 22884 -187.190.64.0/22 22884 -187.190.68.0/24 17072 -187.190.69.0/24 22884 -187.190.70.0/23 22884 -187.190.72.0/24 17072 -187.190.73.0/24 22884 -187.190.74.0/23 22884 -187.190.76.0/22 17072 -187.190.80.0/22 22884 -187.190.89.0/24 22884 -187.190.90.0/23 22884 -187.190.92.0/23 22884 -187.190.94.0/24 22884 -187.190.95.0/24 17072 -187.190.100.0/22 22884 -187.190.104.0/21 22884 -187.190.116.0/23 22884 -187.190.118.0/24 22884 -187.190.119.0/24 17072 -187.190.122.0/24 22884 -187.190.125.0/24 17072 -187.190.127.0/24 22884 -187.190.128.0/24 17072 -187.190.129.0/24 22884 -187.190.130.0/23 22884 -187.190.132.0/23 17072 -187.190.134.0/23 22884 -187.190.136.0/21 22884 -187.190.144.0/24 22884 -187.190.146.0/23 17072 -187.190.148.0/24 17072 -187.190.149.0/24 22884 -187.190.150.0/23 22884 -187.190.153.0/24 17072 -187.190.154.0/23 17072 -187.190.156.0/22 17072 -187.190.160.0/23 17072 -187.190.163.0/24 17072 -187.190.164.0/22 17072 -187.190.168.0/22 17072 -187.190.186.0/24 17072 -187.190.191.0/24 17072 -187.190.200.0/23 17072 -187.190.211.0/24 22884 -187.190.212.0/22 22884 -187.190.216.0/24 17072 -187.190.217.0/24 22884 -187.190.218.0/23 22884 -187.190.220.0/23 22884 -187.190.223.0/24 22884 -187.190.224.0/21 22884 -187.190.232.0/23 22884 -187.190.234.0/24 17072 -187.190.235.0/24 22884 -187.190.236.0/22 22884 -187.190.240.0/24 22884 -187.190.241.0/24 17072 -187.190.242.0/23 22884 -187.190.244.0/24 17072 -187.190.245.0/24 22884 -187.190.246.0/23 22884 -187.190.248.0/21 22884 -187.191.0.0/24 22884 -187.191.1.0/24 17072 -187.191.2.0/23 22884 -187.191.4.0/24 22884 -187.191.6.0/24 28469 -187.191.10.0/24 22884 -187.191.14.0/24 17072 -187.191.17.0/24 22884 -187.191.18.0/24 17072 -187.191.19.0/24 22884 -187.191.20.0/23 22884 -187.191.22.0/24 22884 -187.191.24.0/22 22884 -187.191.28.0/23 22884 -187.191.30.0/24 22884 -187.191.32.0/24 22884 -187.191.34.0/24 17072 -187.191.35.0/24 22884 -187.191.41.0/24 22884 -187.191.43.0/24 22884 -187.191.44.0/22 22884 -187.191.49.0/24 17072 -187.191.50.0/23 22884 -187.191.52.0/23 22884 -187.191.54.0/24 22884 -187.191.55.0/24 17072 -187.191.56.0/23 22884 -187.191.58.0/24 28469 -187.191.59.0/24 22884 -187.191.60.0/23 17072 -187.191.62.0/23 22884 -187.191.64.0/19 19373 -187.191.96.0/22 262545 -187.191.100.0/23 262545 -187.191.104.0/21 262545 -187.191.112.0/20 262545 -187.191.128.0/22 6503 -187.191.132.0/24 6503 -187.191.137.0/24 6503 -187.192.0.0/18 8151 -187.192.64.0/19 8151 -187.192.128.0/17 8151 -187.193.0.0/16 8151 -187.194.0.0/18 8151 -187.194.96.0/19 8151 -187.194.128.0/17 8151 -187.195.0.0/17 8151 -187.195.128.0/18 8151 -187.195.192.0/19 8151 -187.199.0.0/16 8151 -187.200.0.0/16 8151 -187.201.0.0/17 8151 -187.201.128.0/19 8151 -187.202.0.0/18 8151 -187.202.64.0/19 8151 -187.202.128.0/17 8151 -187.203.0.0/16 8151 -187.204.0.0/16 8151 -187.205.0.0/18 8151 -187.205.128.0/17 8151 -187.206.0.0/15 8151 -187.208.0.0/16 8151 -187.209.0.0/18 8151 -187.209.64.0/19 8151 -187.209.224.0/19 8151 -187.210.0.0/17 8151 -187.210.128.0/19 8151 -187.210.160.0/24 8151 -187.210.161.0/24 20940 -187.210.162.0/23 8151 -187.210.164.0/22 8151 -187.210.168.0/21 8151 -187.210.176.0/20 8151 -187.210.208.0/20 8151 -187.210.224.0/22 8151 -187.210.228.0/23 8151 -187.210.230.0/24 28403 -187.210.231.0/24 8151 -187.210.234.0/23 8151 -187.210.236.0/22 28513 -187.210.240.0/20 8151 -187.211.0.0/17 8151 -187.211.128.0/18 8151 -187.211.192.0/19 8151 -187.212.0.0/16 8151 -187.214.0.0/16 8151 -187.216.0.0/16 8151 -187.217.32.0/19 8151 -187.217.64.0/18 8151 -187.217.160.0/19 8151 -187.217.192.0/18 8151 -187.218.0.0/17 8151 -187.218.128.0/19 8151 -187.218.192.0/18 8151 -187.220.0.0/17 8151 -187.220.128.0/19 8151 -187.220.192.0/18 8151 -187.221.32.0/19 8151 -187.221.64.0/18 8151 -187.221.128.0/17 8151 -187.222.0.0/17 8151 -187.222.160.0/19 8151 -187.222.192.0/18 8151 -187.223.0.0/17 8151 -187.223.160.0/19 8151 -187.223.192.0/18 8151 -187.224.0.0/18 8151 -187.224.224.0/19 8151 -187.225.0.0/19 8151 -187.225.64.0/18 8151 -187.225.128.0/17 8151 -187.226.0.0/15 8151 -187.228.0.0/16 8151 -187.229.48.0/21 8151 -187.230.0.0/17 8151 -187.232.0.0/15 8151 -187.234.0.0/17 8151 -187.235.0.0/16 8151 -187.236.0.0/15 8151 -187.240.0.0/17 13999 -187.240.128.0/17 27672 -187.241.0.0/17 13999 -187.241.136.0/21 13999 -187.241.144.0/20 13999 -187.241.160.0/19 13999 -187.241.192.0/18 13999 -187.242.0.0/15 13999 -187.244.19.0/24 13999 -187.244.27.0/24 13999 -187.244.28.0/24 13999 -187.244.43.0/24 13999 -187.244.48.0/24 13999 -187.244.129.0/24 13999 -187.244.132.0/22 13999 -187.244.136.0/21 13999 -187.244.160.0/19 13999 -187.244.192.0/18 13999 -187.245.8.0/21 13999 -187.245.16.0/20 13999 -187.245.32.0/19 13999 -187.245.64.0/21 13999 -187.245.94.0/24 13999 -187.245.96.0/19 13999 -187.245.128.0/20 13999 -187.247.0.0/17 13999 -187.247.132.0/22 13999 -187.247.136.0/21 13999 -187.247.144.0/20 13999 -187.247.160.0/21 13999 -187.247.168.0/22 13999 -187.247.185.0/24 13999 -187.247.186.0/23 13999 -187.247.188.0/24 13999 -187.247.191.0/24 13999 -187.247.192.0/18 13999 -187.248.0.0/15 22566 -187.250.0.0/17 8151 -187.250.128.0/18 8151 -187.250.192.0/22 6332 -187.250.196.0/22 8151 -187.250.200.0/21 8151 -187.250.208.0/20 8151 -187.250.224.0/19 8151 -187.251.0.0/16 18592 -187.252.0.0/24 28545 -187.252.1.0/24 28509 -187.252.9.0/24 28556 -187.252.10.0/23 28509 -187.252.12.0/24 28555 -187.252.13.0/24 28509 -187.252.24.0/21 28509 -187.252.32.0/19 28512 -187.252.64.0/20 28509 -187.252.80.0/23 28509 -187.252.82.0/24 28554 -187.252.83.0/24 28545 -187.252.84.0/24 28545 -187.252.85.0/24 28509 -187.252.86.0/24 28509 -187.252.87.0/24 18734 -187.252.89.0/24 28549 -187.252.90.0/24 28509 -187.252.91.0/24 18734 -187.252.92.0/22 28545 -187.252.100.0/22 28509 -187.252.144.0/21 28509 -187.252.152.0/24 28509 -187.252.154.0/24 28545 -187.252.155.0/24 28509 -187.252.156.0/22 28509 -187.252.166.0/24 28556 -187.252.167.0/24 28545 -187.252.168.0/21 28509 -187.252.176.0/20 28509 -187.252.192.0/20 28509 -187.252.208.0/20 28554 -187.252.224.0/20 28509 -187.252.240.0/24 28555 -187.252.242.0/23 28509 -187.252.244.0/22 13591 -187.252.248.0/22 28556 -187.253.2.0/24 28512 -187.253.3.0/24 28509 -187.253.4.0/24 18734 -187.253.5.0/24 28509 -187.253.6.0/23 28509 -187.253.12.0/23 28509 -187.253.15.0/24 28509 -187.253.16.0/21 28509 -187.253.28.0/22 28509 -187.253.44.0/22 28509 -187.253.64.0/23 28509 -187.253.67.0/24 28509 -187.253.68.0/23 28509 -187.253.70.0/24 28509 -187.253.72.0/24 28509 -187.253.74.0/23 28509 -187.253.76.0/22 28509 -187.253.80.0/24 28509 -187.253.82.0/24 18734 -187.253.83.0/24 28509 -187.253.84.0/23 28509 -187.253.86.0/24 28509 -187.253.88.0/22 28509 -187.253.92.0/23 28509 -187.253.94.0/24 28509 -187.253.120.0/21 28509 -187.253.128.0/20 28509 -187.253.144.0/21 28512 -187.253.156.0/23 18734 -187.253.158.0/24 18734 -187.253.172.0/23 28509 -187.253.176.0/20 28512 -187.253.192.0/21 28509 -187.253.200.0/24 28554 -187.253.224.0/20 28509 -187.253.240.0/22 28509 -187.253.248.0/22 28509 -187.253.252.0/24 28509 -187.253.254.0/24 28509 -187.253.255.0/24 28555 -187.254.0.0/19 16960 -187.254.32.0/20 16960 -187.254.48.0/24 16960 -187.254.49.0/24 28523 -187.254.50.0/24 28523 -187.254.51.0/24 16960 -187.254.64.0/18 16960 -187.254.128.0/17 16960 -187.255.0.0/16 28573 -188.0.0.0/19 57261 -188.0.32.0/21 198007 -188.0.40.0/21 13259 -188.0.48.0/20 57201 -188.0.96.0/19 42430 -188.0.128.0/19 35104 -188.0.160.0/19 49724 -188.0.192.0/19 198541 -188.0.224.0/20 203912 -188.0.240.0/23 43754 -188.0.242.0/23 58224 -188.0.244.0/22 58224 -188.0.248.0/21 58224 -188.1.0.0/16 680 -188.2.0.0/16 31042 -188.3.0.0/20 8386 -188.3.16.0/21 8386 -188.3.24.0/24 15924 -188.3.26.0/23 8386 -188.3.28.0/22 8386 -188.3.32.0/19 8386 -188.3.64.0/18 8386 -188.3.128.0/20 8386 -188.3.144.0/21 8386 -188.3.152.0/22 8386 -188.3.160.0/19 8386 -188.3.192.0/19 8386 -188.3.224.0/21 8386 -188.3.236.0/22 8386 -188.3.242.0/23 8386 -188.3.244.0/22 8386 -188.3.248.0/23 8386 -188.3.251.0/24 8386 -188.3.252.0/22 8386 -188.4.0.0/16 1241 -188.5.0.0/16 5432 -188.6.0.0/17 5483 -188.6.128.0/18 5483 -188.6.192.0/19 5483 -188.6.224.0/20 5483 -188.6.240.0/24 5483 -188.6.241.0/24 29582 -188.6.242.0/23 5483 -188.6.244.0/22 5483 -188.6.248.0/21 5483 -188.7.0.0/16 41272 -188.8.0.0/13 3269 -188.16.0.0/14 12389 -188.20.0.0/16 8447 -188.21.0.0/22 8447 -188.21.4.0/23 8447 -188.21.6.0/24 199437 -188.21.7.0/24 8447 -188.21.8.0/21 8447 -188.21.16.0/20 8447 -188.21.32.0/19 8447 -188.21.64.0/18 8447 -188.21.128.0/17 8447 -188.22.0.0/15 8447 -188.24.0.0/15 8708 -188.26.0.0/17 8708 -188.26.128.0/18 8708 -188.26.192.0/19 57269 -188.26.224.0/19 8708 -188.27.0.0/16 8708 -188.28.0.0/18 60339 -188.28.64.0/18 206067 -188.28.128.0/18 60339 -188.28.192.0/18 206067 -188.29.0.0/17 206067 -188.29.128.0/19 206067 -188.29.160.0/19 60339 -188.29.192.0/19 206067 -188.29.224.0/19 60339 -188.30.0.0/17 60339 -188.30.128.0/18 60339 -188.30.192.0/19 60339 -188.30.224.0/20 206067 -188.30.240.0/21 206067 -188.30.248.0/21 60339 -188.31.0.0/19 60339 -188.31.32.0/19 206067 -188.31.64.0/19 60339 -188.31.96.0/19 206067 -188.31.128.0/18 60339 -188.31.192.0/21 60339 -188.31.200.0/21 206067 -188.31.208.0/20 60339 -188.31.224.0/20 206067 -188.31.240.0/20 60339 -188.32.0.0/16 42610 -188.33.0.0/16 201019 -188.34.0.0/17 49103 -188.34.128.0/17 24940 -188.35.0.0/22 34123 -188.35.4.0/22 59793 -188.35.8.0/24 34123 -188.35.9.0/24 206053 -188.35.10.0/23 34123 -188.35.12.0/22 34123 -188.35.16.0/21 42148 -188.35.24.0/22 34123 -188.35.28.0/22 34682 -188.35.32.0/19 34123 -188.35.64.0/18 34123 -188.35.128.0/17 34123 -188.36.0.0/16 5483 -188.37.0.0/16 12353 -188.38.0.0/16 15897 -188.39.0.0/16 8468 -188.40.0.0/16 24940 -188.41.0.0/17 20978 -188.41.128.0/18 20978 -188.41.192.0/19 20978 -188.41.224.0/20 20978 -188.41.240.0/22 20978 -188.41.247.0/24 20978 -188.41.248.0/23 20978 -188.41.250.0/24 20978 -188.41.252.0/22 20978 -188.42.28.0/22 7979 -188.42.32.0/19 7979 -188.42.96.0/22 58909 -188.42.112.0/20 7979 -188.42.128.0/20 7979 -188.42.144.0/24 7979 -188.42.148.0/22 7979 -188.42.160.0/21 35415 -188.42.168.0/21 7979 -188.42.176.0/20 7979 -188.42.192.0/20 7979 -188.42.208.0/22 7979 -188.42.212.0/24 7979 -188.42.216.0/22 7979 -188.42.220.0/22 45470 -188.42.224.0/21 35415 -188.42.232.0/22 35415 -188.42.236.0/24 35415 -188.42.237.0/24 46786 -188.42.238.0/24 46786 -188.42.239.0/24 35415 -188.42.252.0/22 45470 -188.43.0.0/16 20485 -188.44.8.0/21 57374 -188.44.16.0/20 57374 -188.44.32.0/19 2848 -188.44.64.0/19 6848 -188.44.96.0/23 21127 -188.44.98.0/24 21127 -188.44.99.0/24 15774 -188.44.100.0/22 21127 -188.44.104.0/21 21127 -188.44.112.0/23 21127 -188.44.114.0/23 15774 -188.44.116.0/22 21127 -188.44.120.0/21 21127 -188.44.128.0/17 8448 -188.45.0.0/16 8447 -188.46.0.0/16 6805 -188.47.0.0/17 5617 -188.47.128.0/18 5617 -188.47.192.0/18 21395 -188.48.0.0/13 25019 -188.56.0.0/18 16135 -188.56.192.0/18 16135 -188.57.0.0/16 16135 -188.58.0.0/17 16135 -188.58.128.0/18 16135 -188.58.192.0/19 16135 -188.58.224.0/20 16135 -188.59.0.0/17 16135 -188.59.128.0/18 16135 -188.59.192.0/20 16135 -188.59.208.0/22 16135 -188.59.212.0/24 16135 -188.59.215.0/24 16135 -188.59.216.0/23 16135 -188.59.220.0/23 16135 -188.59.222.0/24 16135 -188.59.224.0/23 16135 -188.59.229.0/24 16135 -188.59.230.0/23 16135 -188.59.239.0/24 16135 -188.59.246.0/24 16135 -188.59.248.0/23 16135 -188.59.250.0/24 16135 -188.59.252.0/23 16135 -188.59.255.0/24 16135 -188.60.0.0/14 3303 -188.64.0.0/21 20904 -188.64.8.0/21 15723 -188.64.16.0/24 21150 -188.64.17.0/24 5400 -188.64.18.0/24 5400 -188.64.24.0/21 21283 -188.64.32.0/21 174 -188.64.40.0/22 45031 -188.64.44.0/23 45031 -188.64.46.0/23 57739 -188.64.48.0/21 49621 -188.64.56.0/21 200062 -188.64.72.0/21 48517 -188.64.80.0/23 57811 -188.64.83.0/24 57811 -188.64.84.0/22 57811 -188.64.88.0/21 49653 -188.64.96.0/21 29119 -188.64.104.0/21 35471 -188.64.112.0/21 57214 -188.64.120.0/21 49640 -188.64.128.0/21 49641 -188.64.144.0/23 34574 -188.64.146.0/24 50378 -188.64.147.0/24 34574 -188.64.148.0/24 199185 -188.64.149.0/24 34574 -188.64.150.0/23 34574 -188.64.152.0/21 58282 -188.64.160.0/22 31626 -188.64.164.0/24 31626 -188.64.165.0/24 50473 -188.64.166.0/23 50473 -188.64.168.0/21 6870 -188.64.176.0/21 28843 -188.64.184.0/21 47625 -188.64.192.0/21 5521 -188.64.200.0/21 16116 -188.64.208.0/23 201076 -188.64.212.0/22 200683 -188.64.216.0/21 6844 -188.64.232.0/21 31237 -188.64.240.0/21 12727 -188.64.248.0/21 42184 -188.65.0.0/21 12906 -188.65.8.0/21 42132 -188.65.16.0/22 48095 -188.65.20.0/22 49650 -188.65.24.0/22 15679 -188.65.28.0/23 15679 -188.65.31.0/24 15679 -188.65.32.0/21 204167 -188.65.40.0/21 41421 -188.65.48.0/21 44347 -188.65.56.0/21 44009 -188.65.64.0/21 39102 -188.65.72.0/21 42473 -188.65.80.0/22 201950 -188.65.84.0/24 201950 -188.65.85.0/24 49605 -188.65.86.0/23 201950 -188.65.88.0/21 15704 -188.65.96.0/21 43013 -188.65.104.0/21 15886 -188.65.112.0/21 198047 -188.65.120.0/21 41690 -188.65.128.0/21 196695 -188.65.136.0/21 34263 -188.65.144.0/21 209480 -188.65.152.0/21 1257 -188.65.168.0/21 41765 -188.65.176.0/21 20860 -188.65.184.0/21 196640 -188.65.192.0/21 39244 -188.65.200.0/21 8292 -188.65.208.0/21 6719 -188.65.216.0/21 49677 -188.65.224.0/21 56500 -188.65.232.0/21 38984 -188.65.240.0/24 43275 -188.65.244.0/22 16345 -188.65.248.0/21 44791 -188.66.0.0/21 196743 -188.66.8.0/21 196755 -188.66.16.0/21 24586 -188.66.24.0/22 210046 -188.66.28.0/22 201278 -188.66.32.0/22 16345 -188.66.38.0/23 3216 -188.66.43.0/24 16815 -188.66.48.0/22 34244 -188.66.52.0/22 210264 -188.66.60.0/24 206170 -188.66.62.0/23 206170 -188.66.64.0/18 31655 -188.66.128.0/17 50010 -188.67.0.0/16 16086 -188.68.0.0/23 200557 -188.68.2.0/24 59924 -188.68.3.0/24 200557 -188.68.4.0/24 201112 -188.68.5.0/24 42042 -188.68.6.0/24 208604 -188.68.7.0/24 25436 -188.68.8.0/21 50596 -188.68.16.0/20 201952 -188.68.32.0/19 197540 -188.68.64.0/22 206819 -188.68.72.0/21 206819 -188.68.81.0/24 56947 -188.68.82.0/23 39406 -188.68.84.0/22 209746 -188.68.88.0/23 207103 -188.68.91.0/24 209788 -188.68.92.0/23 209788 -188.68.94.0/23 209746 -188.68.96.0/19 29124 -188.68.128.0/21 15774 -188.68.136.0/22 15774 -188.68.140.0/22 16285 -188.68.144.0/20 16285 -188.68.160.0/22 197078 -188.68.164.0/22 12703 -188.68.168.0/21 50596 -188.68.176.0/21 197078 -188.68.184.0/22 51178 -188.68.188.0/24 201800 -188.68.189.0/24 31261 -188.68.190.0/24 31261 -188.68.191.0/24 201800 -188.68.192.0/21 50596 -188.68.208.0/20 49505 -188.68.224.0/19 197226 -188.69.0.0/16 8764 -188.70.0.0/15 29357 -188.72.0.0/24 39216 -188.72.1.0/24 209565 -188.72.2.0/24 39216 -188.72.4.0/23 39216 -188.72.6.0/24 39216 -188.72.7.0/24 209565 -188.72.8.0/24 209565 -188.72.9.0/24 203735 -188.72.10.0/24 209565 -188.72.11.0/24 49571 -188.72.15.0/24 49571 -188.72.16.0/23 49571 -188.72.18.0/24 49571 -188.72.20.0/22 49571 -188.72.29.0/24 49571 -188.72.30.0/23 49571 -188.72.34.0/23 39216 -188.72.62.0/23 39216 -188.72.64.0/22 50673 -188.72.68.0/23 50673 -188.72.70.0/24 60362 -188.72.71.0/24 8818 -188.72.72.0/24 201569 -188.72.73.0/24 59504 -188.72.74.0/23 62143 -188.72.76.0/23 48096 -188.72.78.0/24 62010 -188.72.79.0/24 201571 -188.72.81.0/24 9009 -188.72.82.0/24 3223 -188.72.83.0/24 201011 -188.72.85.0/24 9009 -188.72.87.0/24 9009 -188.72.88.0/24 201011 -188.72.89.0/24 9009 -188.72.90.0/24 59253 -188.72.91.0/24 58272 -188.72.92.0/24 34006 -188.72.93.0/24 205502 -188.72.94.0/24 204402 -188.72.96.0/24 58272 -188.72.97.0/24 13213 -188.72.98.0/24 3223 -188.72.99.0/24 20860 -188.72.102.0/24 39122 -188.72.103.0/24 9009 -188.72.104.0/24 201011 -188.72.105.0/24 13213 -188.72.106.0/24 9009 -188.72.107.0/24 196689 -188.72.109.0/24 20860 -188.72.110.0/24 43289 -188.72.111.0/24 9009 -188.72.112.0/24 201924 -188.72.114.0/23 9009 -188.72.116.0/24 16125 -188.72.117.0/24 9009 -188.72.119.0/24 9009 -188.72.120.0/22 3269 -188.72.124.0/24 3223 -188.72.125.0/24 29278 -188.72.126.0/23 208356 -188.72.128.0/20 196821 -188.72.144.0/24 196821 -188.72.146.0/23 196821 -188.72.148.0/22 196821 -188.72.152.0/21 196821 -188.72.160.0/19 196821 -188.72.192.0/20 35415 -188.72.208.0/23 35415 -188.72.210.0/24 204006 -188.72.211.0/24 209180 -188.72.212.0/22 35415 -188.72.216.0/21 35415 -188.72.224.0/24 35415 -188.72.225.0/24 46786 -188.72.226.0/23 35415 -188.72.228.0/23 35415 -188.72.230.0/24 208561 -188.72.231.0/24 35415 -188.72.232.0/21 35415 -188.72.240.0/21 35415 -188.72.248.0/22 35415 -188.72.252.0/23 35415 -188.72.254.0/24 35415 -188.72.255.0/24 61107 -188.73.0.0/18 49594 -188.73.64.0/18 6833 -188.73.128.0/20 35154 -188.73.144.0/21 35154 -188.73.152.0/22 35154 -188.73.156.0/23 35154 -188.73.158.0/24 12389 -188.73.159.0/24 35154 -188.73.160.0/21 35154 -188.73.168.0/22 35154 -188.73.172.0/24 35154 -188.73.173.0/24 12389 -188.73.174.0/23 35154 -188.73.176.0/20 35154 -188.73.192.0/19 15617 -188.73.224.0/21 15617 -188.73.232.0/21 25472 -188.73.240.0/20 15617 -188.74.0.0/19 20810 -188.74.32.0/22 56912 -188.74.38.0/24 6830 -188.74.39.0/24 204320 -188.74.40.0/22 206452 -188.74.44.0/22 201396 -188.74.48.0/20 205042 -188.74.64.0/18 25178 -188.74.128.0/23 199552 -188.74.130.0/24 60901 -188.74.131.0/24 60882 -188.74.132.0/22 60901 -188.74.136.0/21 60741 -188.74.144.0/22 60901 -188.74.148.0/22 60741 -188.74.153.0/24 49687 -188.74.154.0/23 60882 -188.74.156.0/22 208068 -188.74.160.0/21 199552 -188.74.168.0/23 60882 -188.74.170.0/24 49687 -188.74.171.0/24 199552 -188.74.172.0/22 48161 -188.74.176.0/22 197476 -188.74.180.0/24 201909 -188.74.181.0/24 44374 -188.74.184.0/22 44374 -188.74.188.0/23 44626 -188.74.190.0/23 49687 -188.74.192.0/21 60741 -188.74.200.0/21 60901 -188.74.208.0/24 197476 -188.74.209.0/24 44374 -188.74.212.0/22 208068 -188.74.216.0/21 60741 -188.74.224.0/21 60231 -188.74.232.0/21 60741 -188.74.244.0/23 60901 -188.74.246.0/24 44374 -188.74.248.0/21 60231 -188.75.0.0/19 48209 -188.75.32.0/21 48209 -188.75.40.0/24 48209 -188.75.64.0/19 24631 -188.75.96.0/20 24631 -188.75.112.0/22 50795 -188.75.116.0/22 24631 -188.75.120.0/21 24631 -188.75.128.0/18 196735 -188.75.192.0/18 48212 -188.76.0.0/14 12479 -188.80.0.0/14 3243 -188.84.0.0/16 12430 -188.85.0.0/17 12430 -188.85.128.0/21 12430 -188.85.136.0/22 12430 -188.85.140.0/24 205888 -188.85.141.0/24 12430 -188.85.142.0/23 12430 -188.85.144.0/20 12430 -188.85.160.0/19 12430 -188.85.192.0/18 12430 -188.86.0.0/18 12430 -188.86.64.0/19 12430 -188.86.96.0/20 12430 -188.86.112.0/22 12430 -188.86.116.0/24 206487 -188.86.117.0/24 12430 -188.86.118.0/23 12430 -188.86.120.0/21 12430 -188.86.128.0/17 12430 -188.87.0.0/16 12430 -188.88.0.0/14 31615 -188.92.0.0/22 49039 -188.92.4.0/24 49039 -188.92.8.0/21 43070 -188.92.16.0/22 24651 -188.92.20.0/23 24651 -188.92.22.0/23 5528 -188.92.32.0/21 49081 -188.92.40.0/21 52130 -188.92.48.0/21 3303 -188.92.56.0/21 35332 -188.92.64.0/21 60032 -188.92.72.0/21 43513 -188.92.80.0/21 49574 -188.92.96.0/21 35236 -188.92.104.0/21 8595 -188.92.112.0/22 8222 -188.92.117.0/24 8222 -188.92.119.0/24 8222 -188.92.124.0/22 199435 -188.92.128.0/21 49220 -188.92.138.0/23 34079 -188.92.144.0/21 44919 -188.92.152.0/23 33915 -188.92.160.0/21 39823 -188.92.168.0/21 49222 -188.92.176.0/21 31240 -188.92.184.0/21 49284 -188.92.192.0/21 34703 -188.92.200.0/21 47815 -188.92.208.0/21 49254 -188.92.216.0/21 15454 -188.92.224.0/21 49237 -188.92.232.0/21 34555 -188.92.241.0/24 25227 -188.92.242.0/23 25227 -188.92.244.0/22 8595 -188.93.0.0/21 42227 -188.93.8.0/21 8972 -188.93.16.0/21 49505 -188.93.24.0/21 39256 -188.93.32.0/21 204821 -188.93.40.0/21 39180 -188.93.48.0/21 42678 -188.93.56.0/23 47764 -188.93.58.0/24 47764 -188.93.59.0/24 21051 -188.93.60.0/22 47764 -188.93.64.0/22 47626 -188.93.72.0/21 12338 -188.93.80.0/21 49285 -188.93.88.0/22 57814 -188.93.93.0/24 62403 -188.93.94.0/23 57814 -188.93.96.0/21 34762 -188.93.104.0/23 8409 -188.93.106.0/24 206337 -188.93.107.0/24 3058 -188.93.108.0/22 57011 -188.93.120.0/23 51859 -188.93.122.0/23 35779 -188.93.124.0/22 35779 -188.93.128.0/22 20485 -188.93.132.0/24 49301 -188.93.133.0/24 20485 -188.93.134.0/23 20485 -188.93.144.0/21 59980 -188.93.152.0/21 34762 -188.93.160.0/21 6830 -188.93.172.0/22 49624 -188.93.176.0/21 49318 -188.93.184.0/21 61275 -188.93.192.0/21 174 -188.93.200.0/21 12301 -188.93.208.0/23 49352 -188.93.210.0/23 197695 -188.93.212.0/24 197695 -188.93.213.0/24 49352 -188.93.214.0/23 49352 -188.93.216.0/21 29252 -188.93.224.0/21 8426 -188.93.232.0/22 47674 -188.93.237.0/24 47674 -188.93.238.0/23 47674 -188.93.240.0/21 31376 -188.94.0.0/23 52143 -188.94.8.0/21 49388 -188.94.16.0/22 44611 -188.94.20.0/24 44611 -188.94.21.0/24 21267 -188.94.22.0/23 44611 -188.94.24.0/21 20694 -188.94.32.0/21 49368 -188.94.40.0/21 49375 -188.94.48.0/21 49377 -188.94.56.0/22 25356 -188.94.64.0/21 16086 -188.94.72.0/21 49485 -188.94.80.0/21 43831 -188.94.88.0/24 49400 -188.94.90.0/23 49400 -188.94.96.0/21 9022 -188.94.104.0/21 34816 -188.94.112.0/21 49435 -188.94.120.0/21 49289 -188.94.128.0/21 19305 -188.94.136.0/21 31297 -188.94.144.0/21 196784 -188.94.152.0/21 41371 -188.94.160.0/21 49426 -188.94.168.0/21 29648 -188.94.176.0/21 9044 -188.94.184.0/23 15447 -188.94.192.0/21 49535 -188.94.200.0/21 34863 -188.94.208.0/22 49458 -188.94.212.0/23 49458 -188.94.214.0/24 49458 -188.94.215.0/24 198210 -188.94.216.0/23 56867 -188.94.218.0/24 50304 -188.94.219.0/24 56867 -188.94.220.0/22 56867 -188.94.224.0/21 196798 -188.94.232.0/21 6830 -188.94.240.0/23 49487 -188.94.242.0/24 49487 -188.94.248.0/21 15817 -188.95.0.0/21 28918 -188.95.8.0/21 49492 -188.95.16.0/22 198471 -188.95.20.0/23 198471 -188.95.24.0/21 48424 -188.95.32.0/21 49515 -188.95.40.0/21 56329 -188.95.48.0/23 49453 -188.95.50.0/24 57172 -188.95.51.0/24 49453 -188.95.52.0/23 49453 -188.95.54.0/24 49453 -188.95.55.0/24 57172 -188.95.56.0/21 57077 -188.95.64.0/24 50955 -188.95.72.0/21 47927 -188.95.80.0/22 31003 -188.95.92.0/24 3352 -188.95.93.0/24 209937 -188.95.94.0/23 56361 -188.95.96.0/21 15830 -188.95.104.0/21 44300 -188.95.112.0/21 50926 -188.95.120.0/21 16019 -188.95.128.0/21 13009 -188.95.136.0/22 49750 -188.95.140.0/23 16509 -188.95.148.0/23 205715 -188.95.150.0/24 210117 -188.95.151.0/24 60829 -188.95.152.0/24 31445 -188.95.154.0/24 61297 -188.95.156.0/24 49453 -188.95.160.0/21 34397 -188.95.168.0/21 34430 -188.95.176.0/21 49412 -188.95.184.0/21 196660 -188.95.194.0/23 49669 -188.95.196.0/23 49669 -188.95.200.0/21 204558 -188.95.208.0/21 51504 -188.95.216.0/21 3352 -188.95.224.0/21 42695 -188.95.232.0/21 56357 -188.95.240.0/21 49586 -188.95.248.0/21 197518 -188.96.0.0/12 3209 -188.112.0.0/18 42739 -188.112.64.0/18 8257 -188.112.128.0/18 20910 -188.112.192.0/20 49291 -188.112.208.0/21 49291 -188.112.216.0/22 49291 -188.112.220.0/24 49291 -188.112.222.0/23 49291 -188.112.224.0/19 49291 -188.113.0.0/18 12389 -188.113.64.0/18 49455 -188.113.128.0/18 51004 -188.113.192.0/18 49273 -188.114.0.0/18 12389 -188.114.64.0/24 207555 -188.114.65.0/24 207854 -188.114.66.0/24 201113 -188.114.67.0/24 203369 -188.114.68.0/24 207033 -188.114.69.0/24 206118 -188.114.70.0/23 31608 -188.114.72.0/22 31608 -188.114.76.0/22 203210 -188.114.80.0/22 198881 -188.114.87.0/24 205598 -188.114.88.0/23 205030 -188.114.94.0/24 201132 -188.114.95.0/24 43939 -188.114.96.0/21 13335 -188.114.104.0/24 13335 -188.114.106.0/23 13335 -188.114.108.0/22 13335 -188.114.112.0/21 56730 -188.114.120.0/23 201246 -188.114.128.0/18 43557 -188.114.192.0/20 201776 -188.114.208.0/20 204144 -188.114.224.0/19 200719 -188.115.0.0/18 6661 -188.115.64.0/18 20776 -188.115.128.0/18 6876 -188.115.192.0/18 44395 -188.116.0.0/23 43333 -188.116.2.0/23 50840 -188.116.4.0/24 50840 -188.116.7.0/24 50840 -188.116.8.0/24 50840 -188.116.10.0/24 43333 -188.116.11.0/24 50840 -188.116.12.0/24 50840 -188.116.15.0/24 50840 -188.116.17.0/24 50840 -188.116.18.0/24 50840 -188.116.21.0/24 43333 -188.116.23.0/24 43333 -188.116.25.0/24 43333 -188.116.27.0/24 43333 -188.116.33.0/24 43333 -188.116.34.0/23 43333 -188.116.37.0/24 43333 -188.116.38.0/23 43333 -188.116.40.0/24 43333 -188.116.42.0/23 43333 -188.116.44.0/24 43333 -188.116.46.0/24 43333 -188.116.52.0/22 50840 -188.116.56.0/24 50840 -188.116.57.0/24 43333 -188.116.61.0/24 43333 -188.116.62.0/24 43333 -188.116.64.0/18 196822 -188.116.128.0/18 34629 -188.116.192.0/19 51375 -188.116.224.0/20 51375 -188.116.252.0/24 51375 -188.116.255.0/24 51375 -188.117.0.0/18 29422 -188.117.64.0/18 41176 -188.117.128.0/18 31242 -188.117.192.0/21 57794 -188.117.200.0/22 25447 -188.117.204.0/22 41557 -188.117.208.0/22 25447 -188.117.212.0/22 41557 -188.117.216.0/22 57794 -188.117.220.0/22 25447 -188.117.224.0/20 57794 -188.117.240.0/22 57794 -188.117.244.0/22 25447 -188.117.248.0/22 57794 -188.117.252.0/22 25447 -188.118.0.0/18 48517 -188.118.64.0/18 29068 -188.118.128.0/18 9145 -188.118.192.0/18 8437 -188.119.0.0/24 12735 -188.119.2.0/23 12735 -188.119.4.0/23 12735 -188.119.7.0/24 12735 -188.119.8.0/21 12735 -188.119.16.0/21 12735 -188.119.24.0/22 12735 -188.119.28.0/24 34736 -188.119.29.0/24 64447 -188.119.30.0/23 12735 -188.119.32.0/22 12735 -188.119.36.0/24 12735 -188.119.38.0/24 12735 -188.119.41.0/24 12735 -188.119.42.0/23 12735 -188.119.44.0/22 12735 -188.119.48.0/23 12735 -188.119.50.0/24 12735 -188.119.52.0/22 12735 -188.119.56.0/22 12735 -188.119.62.0/23 12735 -188.119.64.0/23 49392 -188.119.66.0/24 209499 -188.119.67.0/24 9002 -188.119.72.0/24 31479 -188.119.73.0/24 35379 -188.119.74.0/24 31479 -188.119.75.0/24 35379 -188.119.76.0/22 34665 -188.119.80.0/22 35132 -188.119.84.0/22 29141 -188.119.88.0/22 48095 -188.119.92.0/22 12379 -188.119.96.0/22 42908 -188.119.100.0/22 9009 -188.119.108.0/22 208359 -188.119.120.0/21 48430 -188.119.128.0/21 208068 -188.119.136.0/21 60901 -188.119.144.0/22 60741 -188.119.148.0/23 61046 -188.119.150.0/23 6718 -188.119.152.0/24 21263 -188.119.153.0/24 48273 -188.119.154.0/24 62240 -188.119.155.0/24 48273 -188.119.158.0/23 201909 -188.119.160.0/24 44374 -188.119.161.0/24 60901 -188.119.162.0/24 60231 -188.119.163.0/24 201909 -188.119.164.0/24 60882 -188.119.165.0/24 44374 -188.119.166.0/23 60882 -188.119.168.0/21 60231 -188.119.176.0/22 60231 -188.119.184.0/22 208068 -188.119.188.0/22 60231 -188.119.192.0/18 49565 -188.120.0.0/19 49115 -188.120.32.0/22 50673 -188.120.36.0/22 201411 -188.120.40.0/22 201411 -188.120.44.0/22 50673 -188.120.48.0/20 44507 -188.120.64.0/20 28717 -188.120.80.0/21 31027 -188.120.88.0/21 28717 -188.120.96.0/21 49198 -188.120.112.0/22 49198 -188.120.116.0/22 44143 -188.120.120.0/24 49198 -188.120.121.0/24 205201 -188.120.122.0/23 205201 -188.120.124.0/23 49198 -188.120.126.0/24 49198 -188.120.127.0/24 13004 -188.120.128.0/19 47956 -188.120.160.0/19 45011 -188.120.192.0/19 49985 -188.120.224.0/19 29182 -188.121.0.0/19 49242 -188.121.32.0/21 20773 -188.121.40.0/21 21501 -188.121.48.0/22 21501 -188.121.52.0/22 20773 -188.121.56.0/21 21501 -188.121.64.0/19 49272 -188.121.96.0/19 47796 -188.121.128.0/19 34513 -188.121.160.0/19 43451 -188.121.192.0/19 16010 -188.121.224.0/19 29075 -188.122.0.0/19 49743 -188.122.32.0/19 13037 -188.122.64.0/19 49544 -188.122.96.0/19 50810 -188.122.128.0/19 45011 -188.122.160.0/19 3253 -188.122.192.0/19 6830 -188.122.224.0/19 8439 -188.123.0.0/19 44506 -188.123.32.0/19 29072 -188.123.64.0/19 49449 -188.123.96.0/20 58328 -188.123.112.0/22 201890 -188.123.116.0/22 58328 -188.123.120.0/24 201924 -188.123.121.0/24 6663 -188.123.122.0/24 6663 -188.123.123.0/24 201924 -188.123.124.0/22 201924 -188.123.128.0/19 35805 -188.123.160.0/19 47887 -188.123.192.0/22 35434 -188.123.196.0/23 35434 -188.123.198.0/24 35434 -188.123.199.0/24 199551 -188.123.200.0/22 35434 -188.123.204.0/22 199551 -188.123.208.0/22 35434 -188.123.212.0/23 199551 -188.123.214.0/24 35434 -188.123.215.0/24 202220 -188.123.216.0/21 35434 -188.123.224.0/19 15582 -188.124.0.0/21 44565 -188.124.8.0/22 44565 -188.124.12.0/24 44565 -188.124.14.0/23 44565 -188.124.16.0/22 44565 -188.124.20.0/23 44565 -188.124.22.0/24 44565 -188.124.24.0/22 44565 -188.124.28.0/23 44565 -188.124.30.0/24 44565 -188.124.32.0/20 49505 -188.124.56.0/21 51248 -188.124.64.0/20 34295 -188.124.80.0/21 34295 -188.124.88.0/22 34295 -188.124.92.0/22 13306 -188.124.96.0/19 48475 -188.124.128.0/19 41164 -188.124.160.0/19 34999 -188.124.192.0/22 198252 -188.124.196.0/22 25144 -188.124.200.0/23 198252 -188.124.202.0/24 25144 -188.124.203.0/24 198252 -188.124.204.0/22 198252 -188.124.208.0/21 198252 -188.124.216.0/23 198252 -188.124.218.0/24 198252 -188.124.219.0/24 25144 -188.124.220.0/22 198252 -188.124.240.0/22 44705 -188.125.0.0/20 12326 -188.125.16.0/20 1902 -188.125.32.0/19 8374 -188.125.64.0/21 34010 -188.125.72.0/22 34010 -188.125.80.0/21 34010 -188.125.88.0/23 10310 -188.125.90.0/24 10310 -188.125.92.0/24 10310 -188.125.94.0/23 10310 -188.125.96.0/19 29177 -188.125.128.0/20 44914 -188.125.144.0/21 44914 -188.125.152.0/22 44914 -188.125.156.0/24 209901 -188.125.157.0/24 44914 -188.125.160.0/20 49632 -188.125.176.0/20 4049 -188.125.192.0/19 15457 -188.125.224.0/19 35745 -188.126.0.0/23 42049 -188.126.2.0/23 199304 -188.126.4.0/22 42049 -188.126.8.0/21 42049 -188.126.16.0/21 42049 -188.126.24.0/23 199304 -188.126.26.0/23 42049 -188.126.28.0/22 42049 -188.126.32.0/19 49368 -188.126.64.0/19 42708 -188.126.96.0/19 201622 -188.126.128.0/19 12479 -188.126.160.0/19 12759 -188.126.192.0/19 41164 -188.126.224.0/19 34610 -188.127.0.0/19 41809 -188.127.32.0/21 35104 -188.127.40.0/23 35104 -188.127.64.0/19 35575 -188.127.96.0/19 42560 -188.127.128.0/19 44419 -188.127.160.0/19 15704 -188.127.192.0/19 16302 -188.127.224.0/20 56694 -188.127.240.0/21 56694 -188.127.248.0/22 56694 -188.127.252.0/24 206853 -188.127.253.0/24 56694 -188.127.254.0/23 56694 -188.128.0.0/17 12389 -188.128.128.0/17 12824 -188.129.0.0/21 29485 -188.129.8.0/22 29485 -188.129.12.0/22 15994 -188.129.16.0/20 29485 -188.129.32.0/19 29485 -188.129.64.0/18 29485 -188.129.128.0/17 16010 -188.130.0.0/17 35393 -188.130.128.0/23 35048 -188.130.131.0/24 44676 -188.130.132.0/22 204490 -188.130.136.0/23 35048 -188.130.138.0/23 204490 -188.130.140.0/24 61228 -188.130.141.0/24 207532 -188.130.142.0/23 35048 -188.130.144.0/21 40977 -188.130.152.0/24 203627 -188.130.153.0/24 204846 -188.130.154.0/24 203513 -188.130.155.0/24 203509 -188.130.156.0/22 8200 -188.130.162.0/24 61019 -188.130.163.0/24 60873 -188.130.166.0/24 203922 -188.130.167.0/24 203886 -188.130.168.0/24 200479 -188.130.170.0/24 56740 -188.130.171.0/24 206538 -188.130.172.0/24 202493 -188.130.173.0/24 203766 -188.130.174.0/24 31566 -188.130.175.0/24 203695 -188.130.176.0/22 39065 -188.130.180.0/23 57713 -188.130.182.0/24 30738 -188.130.183.0/24 13287 -188.130.184.0/22 35048 -188.130.188.0/23 35048 -188.130.190.0/23 44676 -188.130.192.0/22 209343 -188.130.196.0/22 200509 -188.130.200.0/23 200509 -188.130.202.0/24 200509 -188.130.204.0/22 200509 -188.130.210.0/23 35048 -188.130.212.0/22 204792 -188.130.216.0/23 44676 -188.130.218.0/23 35048 -188.130.220.0/23 35048 -188.130.222.0/24 202764 -188.130.223.0/24 60275 -188.130.224.0/21 196768 -188.130.232.0/23 51288 -188.130.234.0/24 61228 -188.130.235.0/24 203401 -188.130.236.0/23 196768 -188.130.238.0/24 61416 -188.130.239.0/24 208208 -188.130.240.0/22 47438 -188.130.246.0/24 197684 -188.130.247.0/24 61271 -188.130.248.0/24 30738 -188.130.249.0/24 57803 -188.130.251.0/24 56872 -188.130.252.0/23 203233 -188.130.254.0/24 48276 -188.130.255.0/24 205641 -188.131.0.0/17 25454 -188.131.128.0/17 45090 -188.132.0.0/18 35819 -188.132.64.0/19 35819 -188.132.96.0/19 34400 -188.132.128.0/21 42910 -188.132.141.0/24 42910 -188.132.142.0/23 42910 -188.132.144.0/22 42910 -188.132.148.0/23 42910 -188.132.150.0/24 42910 -188.132.153.0/24 42910 -188.132.154.0/24 42910 -188.132.157.0/24 42910 -188.132.158.0/23 42910 -188.132.163.0/24 20649 -188.132.164.0/23 20649 -188.132.167.0/24 20649 -188.132.168.0/23 20649 -188.132.170.0/24 42910 -188.132.172.0/23 42910 -188.132.175.0/24 42910 -188.132.176.0/23 42910 -188.132.178.0/24 42910 -188.132.179.0/24 20649 -188.132.180.0/22 42910 -188.132.184.0/24 59674 -188.132.187.0/24 42910 -188.132.190.0/24 42910 -188.132.194.0/23 42910 -188.132.198.0/24 42910 -188.132.200.0/24 42910 -188.132.204.0/22 42910 -188.132.208.0/20 42910 -188.132.224.0/20 42910 -188.132.241.0/24 42910 -188.132.242.0/23 42910 -188.132.244.0/24 42910 -188.132.246.0/24 42910 -188.132.250.0/23 42910 -188.132.252.0/22 42910 -188.133.0.0/17 29256 -188.133.128.0/24 21353 -188.133.129.0/24 12772 -188.133.130.0/23 12772 -188.133.132.0/22 12772 -188.133.136.0/22 21353 -188.133.140.0/23 21353 -188.133.142.0/24 12772 -188.133.143.0/24 21353 -188.133.144.0/21 12772 -188.133.152.0/21 21353 -188.133.160.0/19 12772 -188.133.192.0/19 12389 -188.133.224.0/19 56341 -188.134.0.0/17 41733 -188.134.128.0/17 15425 -188.135.0.0/17 50010 -188.135.128.0/19 48291 -188.135.160.0/21 48291 -188.135.168.0/22 48291 -188.135.172.0/23 48291 -188.135.175.0/24 48291 -188.135.176.0/20 48291 -188.135.192.0/18 48291 -188.136.0.0/17 12355 -188.136.128.0/19 48309 -188.136.160.0/21 48309 -188.136.168.0/22 48309 -188.136.172.0/23 48309 -188.136.174.0/24 50000 -188.136.175.0/24 48309 -188.136.176.0/21 48309 -188.136.184.0/22 51235 -188.136.188.0/23 51235 -188.136.190.0/23 48309 -188.136.192.0/22 48309 -188.136.196.0/22 51235 -188.136.200.0/21 51235 -188.136.208.0/21 51235 -188.136.216.0/22 48309 -188.136.220.0/22 51235 -188.136.224.0/19 15943 -188.137.0.0/18 13000 -188.137.64.0/19 13000 -188.137.96.0/20 13000 -188.137.112.0/22 13000 -188.137.116.0/23 13000 -188.137.118.0/24 61134 -188.137.119.0/24 13000 -188.137.120.0/21 13000 -188.137.128.0/17 35313 -188.138.0.0/18 8972 -188.138.64.0/22 61157 -188.138.68.0/22 8972 -188.138.72.0/21 8972 -188.138.80.0/24 61157 -188.138.81.0/24 8972 -188.138.82.0/23 8972 -188.138.84.0/22 8972 -188.138.88.0/21 8972 -188.138.96.0/19 8972 -188.138.128.0/17 31252 -188.139.128.0/17 29256 -188.140.0.0/17 42863 -188.140.128.0/17 28885 -188.141.0.0/17 6830 -188.141.128.0/17 35632 -188.142.0.0/17 49562 -188.142.128.0/19 12301 -188.142.160.0/19 6830 -188.142.192.0/18 6830 -188.143.0.0/17 20845 -188.143.128.0/18 44050 -188.143.192.0/19 44050 -188.143.224.0/21 44050 -188.143.232.0/22 34665 -188.143.236.0/22 44050 -188.143.240.0/20 44050 -188.146.0.0/15 12912 -188.148.0.0/24 39651 -188.148.1.0/24 2119 -188.148.2.0/23 39651 -188.148.4.0/24 39651 -188.148.5.0/24 2119 -188.148.6.0/23 2119 -188.148.8.0/22 39651 -188.148.12.0/24 39651 -188.148.13.0/24 2119 -188.148.14.0/23 39651 -188.148.16.0/20 39651 -188.148.32.0/19 39651 -188.148.64.0/18 39651 -188.148.128.0/18 39651 -188.148.192.0/19 39651 -188.148.224.0/22 39651 -188.148.228.0/24 2119 -188.148.229.0/24 39651 -188.148.230.0/24 39651 -188.148.231.0/24 2119 -188.148.232.0/23 2119 -188.148.234.0/23 39651 -188.148.236.0/22 39651 -188.148.240.0/20 39651 -188.149.0.0/16 39651 -188.150.0.0/16 39651 -188.151.0.0/17 39651 -188.151.128.0/18 39651 -188.151.192.0/19 39651 -188.151.224.0/20 39651 -188.151.240.0/22 39651 -188.151.244.0/23 2119 -188.151.246.0/24 39651 -188.151.247.0/24 2119 -188.151.248.0/22 39651 -188.151.252.0/24 3301 -188.151.253.0/24 2119 -188.151.254.0/23 39651 -188.152.0.0/15 30722 -188.154.0.0/15 6730 -188.156.0.0/15 5483 -188.158.0.0/15 39501 -188.160.0.0/16 29256 -188.161.0.0/18 12975 -188.161.64.0/19 12975 -188.161.96.0/20 12975 -188.161.112.0/22 208473 -188.161.116.0/22 12975 -188.161.120.0/21 12975 -188.161.128.0/17 12975 -188.162.0.0/23 47395 -188.162.2.0/23 31205 -188.162.4.0/22 47395 -188.162.8.0/23 31205 -188.162.10.0/23 47395 -188.162.12.0/23 47395 -188.162.14.0/23 31205 -188.162.32.0/19 31133 -188.162.64.0/23 31213 -188.162.72.0/22 31205 -188.162.76.0/23 31205 -188.162.78.0/24 31205 -188.162.80.0/23 31205 -188.162.84.0/24 31205 -188.162.86.0/24 31205 -188.162.130.0/23 31163 -188.162.132.0/24 31163 -188.162.138.0/23 31163 -188.162.140.0/22 31163 -188.162.144.0/23 31163 -188.162.160.0/24 47395 -188.162.161.0/24 31163 -188.162.162.0/23 31163 -188.162.164.0/22 31163 -188.162.168.0/21 31163 -188.162.176.0/20 31163 -188.162.192.0/20 31133 -188.162.220.0/22 31133 -188.162.225.0/24 31195 -188.162.226.0/23 31195 -188.162.228.0/22 31195 -188.162.232.0/24 31195 -188.162.234.0/23 31195 -188.162.236.0/22 31195 -188.162.240.0/20 31195 -188.163.0.0/17 15895 -188.163.128.0/17 12530 -188.164.0.0/17 39356 -188.164.128.0/21 34971 -188.164.136.0/21 43567 -188.164.144.0/21 31608 -188.164.152.0/21 199673 -188.164.160.0/19 43567 -188.164.192.0/21 50926 -188.164.200.0/21 50919 -188.164.208.0/24 205245 -188.164.209.0/24 31261 -188.164.210.0/24 204574 -188.164.211.0/24 204357 -188.164.212.0/24 31261 -188.164.213.0/24 44915 -188.164.214.0/23 31261 -188.164.216.0/21 21183 -188.164.224.0/21 48294 -188.164.232.0/21 198145 -188.164.240.0/21 48424 -188.164.248.0/22 35415 -188.164.252.0/24 46786 -188.164.253.0/24 35415 -188.164.254.0/23 35415 -188.165.0.0/16 16276 -188.166.0.0/16 14061 -188.167.0.0/16 6830 -188.168.0.0/19 15774 -188.168.32.0/23 15774 -188.168.34.0/23 20485 -188.168.36.0/22 15774 -188.168.40.0/21 15774 -188.168.48.0/20 15774 -188.168.64.0/20 15774 -188.168.80.0/21 15774 -188.168.88.0/22 20485 -188.168.92.0/22 15774 -188.168.96.0/22 15774 -188.168.100.0/22 20485 -188.168.104.0/21 15774 -188.168.112.0/20 15774 -188.168.128.0/21 15774 -188.168.136.0/22 20485 -188.168.140.0/22 15774 -188.168.144.0/20 15774 -188.168.160.0/20 15774 -188.168.176.0/21 15774 -188.168.184.0/23 20485 -188.168.186.0/24 20485 -188.168.187.0/24 15774 -188.168.188.0/22 15774 -188.168.192.0/20 15774 -188.168.208.0/22 20485 -188.168.212.0/22 15774 -188.168.216.0/21 15774 -188.168.224.0/20 15774 -188.168.240.0/21 15774 -188.168.248.0/22 20485 -188.168.252.0/22 15774 -188.169.0.0/16 35805 -188.170.0.0/19 25159 -188.170.32.0/20 25159 -188.170.48.0/21 31208 -188.170.56.0/24 31208 -188.170.62.0/23 31208 -188.170.65.0/24 31213 -188.170.67.0/24 31213 -188.170.72.0/21 31213 -188.170.80.0/22 31213 -188.170.92.0/22 31213 -188.170.96.0/21 29648 -188.170.104.0/23 29648 -188.170.107.0/24 29648 -188.170.108.0/22 29648 -188.170.112.0/20 29648 -188.170.128.0/22 31133 -188.170.132.0/24 31133 -188.170.136.0/22 31133 -188.170.140.0/23 31133 -188.170.142.0/24 31133 -188.170.144.0/22 31133 -188.170.149.0/24 31133 -188.170.150.0/23 31133 -188.170.152.0/22 31133 -188.170.156.0/23 31133 -188.170.159.0/24 31133 -188.170.160.0/21 31133 -188.170.168.0/21 31163 -188.170.176.0/20 31163 -188.170.192.0/19 31163 -188.170.224.0/23 31163 -188.170.228.0/22 31195 -188.170.232.0/21 31195 -188.170.240.0/22 31205 -188.170.244.0/23 50928 -188.170.247.0/24 31205 -188.170.248.0/21 50928 -188.171.0.0/16 12946 -188.172.0.0/18 33874 -188.172.64.0/19 33874 -188.172.96.0/21 50973 -188.172.104.0/22 50973 -188.172.108.0/23 50973 -188.172.110.0/23 30722 -188.172.112.0/20 28676 -188.172.135.0/24 61186 -188.172.137.0/24 16509 -188.172.138.0/24 16509 -188.172.144.0/20 56478 -188.172.192.0/22 42473 -188.172.196.0/24 8562 -188.172.197.0/24 9096 -188.172.198.0/23 42473 -188.172.200.0/21 42473 -188.172.208.0/20 42473 -188.172.224.0/22 42473 -188.172.228.0/24 42473 -188.172.229.0/24 1647 -188.172.230.0/23 42473 -188.172.232.0/23 42473 -188.172.234.0/24 14230 -188.172.235.0/24 42473 -188.172.236.0/22 42473 -188.172.240.0/21 42473 -188.172.248.0/24 42388 -188.172.249.0/24 42473 -188.172.250.0/23 42473 -188.172.252.0/22 42473 -188.173.0.0/16 48161 -188.174.0.0/16 8767 -188.175.0.0/16 16246 -188.176.0.0/13 3292 -188.184.0.0/15 513 -188.186.0.0/19 41682 -188.186.32.0/20 41682 -188.186.48.0/22 41661 -188.186.52.0/22 41682 -188.186.56.0/23 21442 -188.186.64.0/18 41682 -188.186.128.0/21 47911 -188.186.144.0/20 31483 -188.186.160.0/19 41682 -188.186.192.0/18 42683 -188.187.0.0/17 51570 -188.187.128.0/21 56981 -188.187.136.0/21 59713 -188.187.144.0/20 41786 -188.187.160.0/19 41786 -188.187.192.0/21 41786 -188.187.200.0/21 50544 -188.187.208.0/21 57378 -188.187.216.0/23 59713 -188.187.218.0/24 59713 -188.187.219.0/24 57378 -188.187.220.0/24 59713 -188.187.221.0/24 49048 -188.187.222.0/24 12768 -188.187.223.0/24 57026 -188.187.224.0/24 57044 -188.187.225.0/24 51645 -188.187.226.0/24 56981 -188.187.227.0/24 39028 -188.187.228.0/24 56420 -188.187.229.0/24 52207 -188.187.230.0/24 51035 -188.187.231.0/24 56377 -188.187.232.0/24 56330 -188.187.233.0/24 51819 -188.187.234.0/24 51570 -188.187.235.0/24 51604 -188.187.236.0/24 50498 -188.187.237.0/24 50542 -188.187.238.0/24 50544 -188.187.239.0/24 43478 -188.187.240.0/24 42682 -188.187.241.0/24 41843 -188.187.242.0/24 42683 -188.187.243.0/24 41661 -188.187.244.0/24 42116 -188.187.245.0/24 50512 -188.187.246.0/24 41668 -188.187.247.0/24 41786 -188.187.248.0/24 34590 -188.187.249.0/24 41727 -188.187.250.0/24 41754 -188.187.251.0/24 41682 -188.187.252.0/24 50543 -188.187.253.0/24 39435 -188.187.254.0/24 34533 -188.187.255.0/24 12768 -188.188.0.0/15 44944 -188.190.0.0/19 56370 -188.190.32.0/19 49332 -188.190.64.0/19 31725 -188.190.100.0/22 204948 -188.190.108.0/22 209582 -188.190.116.0/22 34241 -188.190.120.0/22 59447 -188.190.124.0/22 12357 -188.190.128.0/19 56407 -188.190.160.0/19 28773 -188.190.192.0/19 207744 -188.190.224.0/19 56433 -188.191.0.0/20 42742 -188.191.16.0/22 28761 -188.191.20.0/22 196705 -188.191.24.0/24 28761 -188.191.25.0/24 35381 -188.191.26.0/23 28761 -188.191.28.0/22 196705 -188.191.32.0/20 56429 -188.191.64.0/20 43258 -188.191.80.0/20 49350 -188.191.96.0/22 43310 -188.191.100.0/23 43310 -188.191.102.0/24 43310 -188.191.103.0/24 206907 -188.191.104.0/23 51824 -188.191.106.0/23 43310 -188.191.108.0/22 43310 -188.191.112.0/20 47119 -188.191.128.0/23 33806 -188.191.130.0/23 199220 -188.191.132.0/22 20712 -188.191.136.0/21 6758 -188.191.144.0/23 56446 -188.191.146.0/24 203706 -188.191.147.0/24 203980 -188.191.148.0/22 203980 -188.191.152.0/21 57148 -188.191.160.0/21 50577 -188.191.168.0/21 20730 -188.191.176.0/21 56461 -188.191.184.0/21 56463 -188.191.192.0/21 51153 -188.191.200.0/21 197620 -188.191.208.0/21 56491 -188.191.216.0/21 39507 -188.191.224.0/21 202940 -188.191.232.0/21 59497 -188.191.240.0/21 49665 -188.191.248.0/21 200443 -188.192.0.0/14 31334 -188.196.0.0/14 5603 -188.200.0.0/13 1136 -188.208.0.0/20 12479 -188.208.16.0/23 60020 -188.208.19.0/24 209897 -188.208.20.0/22 3348 -188.208.24.0/22 199380 -188.208.28.0/23 41055 -188.208.30.0/24 43938 -188.208.31.0/24 31207 -188.208.32.0/23 41011 -188.208.36.0/23 34762 -188.208.38.0/23 39855 -188.208.40.0/21 12479 -188.208.48.0/22 209574 -188.208.52.0/22 209559 -188.208.56.0/21 58224 -188.208.64.0/19 57218 -188.208.96.0/22 8926 -188.208.100.0/24 198454 -188.208.101.0/24 5588 -188.208.102.0/24 201341 -188.208.104.0/22 8926 -188.208.108.0/24 51568 -188.208.109.0/24 209574 -188.208.110.0/24 203574 -188.208.111.0/24 198144 -188.208.112.0/22 8926 -188.208.116.0/24 208913 -188.208.117.0/24 6830 -188.208.118.0/23 6830 -188.208.120.0/21 8926 -188.208.128.0/22 56654 -188.208.134.0/24 6910 -188.208.135.0/24 9050 -188.208.136.0/22 41852 -188.208.140.0/24 132335 -188.208.141.0/24 24768 -188.208.142.0/24 35916 -188.208.143.0/24 24768 -188.208.144.0/20 57218 -188.208.160.0/19 57218 -188.208.196.0/23 48456 -188.208.200.0/22 58224 -188.208.208.0/21 58224 -188.208.216.0/23 59607 -188.208.218.0/24 30937 -188.208.220.0/22 201117 -188.208.224.0/19 57218 -188.209.0.0/21 58224 -188.209.8.0/21 12880 -188.209.16.0/20 12880 -188.209.32.0/20 12880 -188.209.49.0/24 49349 -188.209.52.0/24 49349 -188.209.55.0/24 207778 -188.209.64.0/20 12880 -188.209.80.0/20 31638 -188.209.96.0/20 6910 -188.209.112.0/22 62064 -188.209.120.0/21 201117 -188.209.128.0/20 201150 -188.209.152.0/23 43212 -188.209.154.0/23 31732 -188.209.156.0/22 31732 -188.209.160.0/19 21032 -188.209.192.0/20 50810 -188.209.208.0/22 29256 -188.209.212.0/24 48881 -188.209.213.0/24 39572 -188.209.214.0/24 205275 -188.209.215.0/24 49918 -188.209.216.0/21 8926 -188.209.224.0/19 30873 -188.210.0.0/18 42652 -188.210.64.0/20 197207 -188.210.80.0/21 12880 -188.210.88.0/24 44682 -188.210.90.0/24 50322 -188.210.91.0/24 50614 -188.210.92.0/24 62383 -188.210.93.0/24 201665 -188.210.94.0/23 209519 -188.210.96.0/19 12880 -188.210.128.0/18 12880 -188.210.192.0/20 197207 -188.210.208.0/21 56478 -188.210.216.0/22 48846 -188.210.220.0/22 50599 -188.210.224.0/21 39277 -188.210.232.0/22 58224 -188.210.236.0/24 62388 -188.210.237.0/24 34353 -188.210.238.0/24 25097 -188.210.239.0/24 31638 -188.210.240.0/21 8926 -188.210.252.0/23 41496 -188.210.254.0/24 208913 -188.210.255.0/24 61102 -188.211.0.0/20 50810 -188.211.26.0/24 201341 -188.211.27.0/24 31362 -188.211.28.0/23 202743 -188.211.30.0/23 31362 -188.211.32.0/19 12880 -188.211.64.0/18 12880 -188.211.128.0/19 58224 -188.211.160.0/22 56478 -188.211.164.0/23 34304 -188.211.166.0/24 203589 -188.211.169.0/24 12637 -188.211.176.0/20 12880 -188.211.192.0/19 58224 -188.211.224.0/22 50336 -188.211.228.0/22 12430 -188.211.232.0/24 50275 -188.211.233.0/24 47148 -188.211.234.0/24 39205 -188.211.235.0/24 49252 -188.211.236.0/23 5588 -188.211.238.0/24 50150 -188.211.239.0/24 198144 -188.211.240.0/21 1653 -188.211.248.0/24 50769 -188.211.249.0/24 209706 -188.211.250.0/23 209706 -188.211.252.0/22 209706 -188.212.0.0/22 8926 -188.212.4.0/24 39855 -188.212.6.0/23 50530 -188.212.8.0/21 8926 -188.212.16.0/22 62235 -188.212.20.0/24 201168 -188.212.21.0/24 206124 -188.212.22.0/24 204213 -188.212.24.0/21 8926 -188.212.32.0/23 58327 -188.212.34.0/23 21396 -188.212.36.0/24 62388 -188.212.37.0/24 5588 -188.212.39.0/24 10929 -188.212.40.0/21 8926 -188.212.48.0/20 197207 -188.212.64.0/19 58224 -188.212.96.0/22 60932 -188.212.100.0/22 39383 -188.212.104.0/22 209706 -188.212.108.0/23 42695 -188.212.110.0/24 34304 -188.212.111.0/24 48881 -188.212.112.0/22 60405 -188.212.116.0/22 206883 -188.212.120.0/24 209519 -188.212.121.0/24 39668 -188.212.122.0/23 201838 -188.212.124.0/23 9050 -188.212.126.0/24 59995 -188.212.127.0/24 5588 -188.212.128.0/24 15471 -188.212.129.0/24 35664 -188.212.130.0/24 50637 -188.212.131.0/24 62448 -188.212.132.0/23 6910 -188.212.134.0/24 12310 -188.212.144.0/21 12880 -188.212.152.0/24 5588 -188.212.153.0/24 31638 -188.212.154.0/24 8751 -188.212.155.0/24 6910 -188.212.156.0/24 5588 -188.212.157.0/24 60405 -188.212.158.0/23 6910 -188.212.160.0/19 58224 -188.212.192.0/21 35267 -188.212.200.0/21 58224 -188.212.208.0/20 58224 -188.212.224.0/20 58224 -188.212.240.0/21 50810 -188.212.248.0/24 62074 -188.212.251.0/24 205362 -188.212.252.0/24 5588 -188.212.253.0/24 62235 -188.212.255.0/24 5588 -188.213.0.0/24 62302 -188.213.2.0/23 44682 -188.213.4.0/22 59432 -188.213.8.0/21 62064 -188.213.16.0/24 3269 -188.213.18.0/24 34450 -188.213.19.0/24 3223 -188.213.20.0/23 5588 -188.213.22.0/24 3223 -188.213.23.0/24 203320 -188.213.24.0/21 197922 -188.213.32.0/24 47134 -188.213.33.0/24 5588 -188.213.35.0/24 58074 -188.213.40.0/21 3269 -188.213.48.0/24 202637 -188.213.49.0/24 44220 -188.213.50.0/24 58074 -188.213.51.0/24 44277 -188.213.56.0/21 61205 -188.213.64.0/21 47330 -188.213.72.0/23 50810 -188.213.74.0/23 47330 -188.213.76.0/22 47330 -188.213.80.0/22 62235 -188.213.84.0/23 39758 -188.213.96.0/19 58224 -188.213.128.0/22 44605 -188.213.132.0/23 5588 -188.213.134.0/24 44220 -188.213.135.0/24 41496 -188.213.136.0/22 56478 -188.213.140.0/22 197922 -188.213.144.0/20 58224 -188.213.160.0/20 31034 -188.213.176.0/20 58224 -188.213.192.0/21 50810 -188.213.200.0/23 42568 -188.213.202.0/23 6910 -188.213.204.0/24 42831 -188.213.205.0/24 205275 -188.213.206.0/23 51490 -188.213.208.0/22 58224 -188.213.212.0/24 203145 -188.213.213.0/24 58074 -188.213.214.0/23 51490 -188.213.216.0/24 203145 -188.213.217.0/24 60033 -188.213.218.0/24 201341 -188.213.224.0/21 39647 -188.213.232.0/24 41011 -188.213.233.0/24 56871 -188.213.234.0/23 24971 -188.213.241.0/24 39855 -188.213.242.0/24 9009 -188.213.243.0/24 201665 -188.213.248.0/21 209574 -188.214.0.0/22 198721 -188.214.4.0/22 57218 -188.214.8.0/21 56478 -188.214.16.0/21 20616 -188.214.24.0/24 35661 -188.214.25.0/24 197922 -188.214.26.0/24 34416 -188.214.27.0/24 48852 -188.214.30.0/24 51177 -188.214.31.0/24 50887 -188.214.32.0/21 50886 -188.214.40.0/21 209519 -188.214.48.0/21 24654 -188.214.56.0/24 29119 -188.214.57.0/24 200492 -188.214.64.0/20 38466 -188.214.81.0/24 208913 -188.214.82.0/23 209897 -188.214.84.0/22 57218 -188.214.88.0/24 39345 -188.214.89.0/24 5588 -188.214.90.0/23 41496 -188.214.92.0/24 204156 -188.214.93.0/24 9009 -188.214.94.0/24 209574 -188.214.95.0/24 209559 -188.214.96.0/22 58224 -188.214.100.0/24 201425 -188.214.101.0/24 200621 -188.214.102.0/23 43142 -188.214.104.0/23 5588 -188.214.107.0/24 5588 -188.214.108.0/24 201603 -188.214.109.0/24 64417 -188.214.111.0/24 59765 -188.214.112.0/21 62235 -188.214.123.0/24 62032 -188.214.124.0/24 62030 -188.214.126.0/24 33977 -188.214.128.0/21 16125 -188.214.140.0/24 203320 -188.214.141.0/24 9050 -188.214.142.0/24 59854 -188.214.148.0/23 62388 -188.214.150.0/24 58074 -188.214.153.0/24 6830 -188.214.155.0/24 203320 -188.214.156.0/24 50667 -188.214.157.0/24 59878 -188.214.159.0/24 41011 -188.214.160.0/19 58224 -188.214.192.0/24 41011 -188.214.193.0/24 203320 -188.214.194.0/24 59854 -188.214.195.0/24 6830 -188.214.196.0/23 6830 -188.214.198.0/24 59862 -188.214.199.0/24 39737 -188.214.200.0/21 8926 -188.214.208.0/23 6910 -188.214.210.0/23 205275 -188.214.212.0/23 41055 -188.214.214.0/24 5588 -188.214.215.0/24 205275 -188.214.216.0/21 58224 -188.214.224.0/24 50129 -188.214.225.0/24 198934 -188.214.226.0/24 44277 -188.214.227.0/24 58074 -188.214.232.0/21 48592 -188.214.240.0/22 62412 -188.214.244.0/22 56654 -188.214.248.0/21 56654 -188.215.0.0/24 59999 -188.215.2.0/24 205275 -188.215.4.0/24 200492 -188.215.5.0/24 9050 -188.215.6.0/23 51024 -188.215.8.0/22 200738 -188.215.12.0/22 203872 -188.215.16.0/23 201838 -188.215.18.0/23 24971 -188.215.20.0/22 59862 -188.215.24.0/22 57218 -188.215.28.0/23 15692 -188.215.30.0/24 44252 -188.215.31.0/24 61204 -188.215.32.0/24 205362 -188.215.33.0/24 47546 -188.215.34.0/24 201341 -188.215.35.0/24 47546 -188.215.36.0/24 3223 -188.215.37.0/24 60761 -188.215.38.0/24 47388 -188.215.39.0/24 62042 -188.215.40.0/22 59784 -188.215.44.0/22 31638 -188.215.48.0/21 34358 -188.215.56.0/21 203600 -188.215.64.0/24 25116 -188.215.66.0/23 39855 -188.215.68.0/23 39737 -188.215.70.0/23 31102 -188.215.72.0/23 48453 -188.215.74.0/23 201838 -188.215.76.0/23 208913 -188.215.78.0/24 57790 -188.215.79.0/24 59747 -188.215.80.0/22 62055 -188.215.84.0/24 43885 -188.215.85.0/24 62055 -188.215.86.0/23 62055 -188.215.88.0/22 57218 -188.215.92.0/24 25369 -188.215.93.0/24 47388 -188.215.94.0/24 12874 -188.215.95.0/24 41537 -188.215.96.0/22 9009 -188.215.100.0/22 29256 -188.215.104.0/22 203600 -188.215.108.0/22 44466 -188.215.112.0/24 8751 -188.215.113.0/24 35222 -188.215.114.0/24 8751 -188.215.115.0/24 62053 -188.215.116.0/23 58052 -188.215.118.0/24 8751 -188.215.119.0/24 58052 -188.215.120.0/21 51737 -188.215.128.0/20 58224 -188.215.144.0/20 34740 -188.215.160.0/19 58224 -188.215.192.0/19 58224 -188.215.224.0/22 200738 -188.215.228.0/24 9125 -188.215.229.0/24 58073 -188.215.230.0/24 201168 -188.215.231.0/24 206124 -188.215.232.0/23 62151 -188.215.234.0/24 34416 -188.215.240.0/22 58224 -188.215.244.0/23 5588 -188.215.247.0/24 31638 -188.215.248.0/24 31638 -188.215.249.0/24 39855 -188.215.250.0/23 5588 -188.216.0.0/14 30722 -188.220.0.0/14 5607 -188.224.0.0/17 47206 -188.224.128.0/17 25019 -188.225.0.0/21 28840 -188.225.8.0/21 9123 -188.225.16.0/20 9123 -188.225.32.0/20 9123 -188.225.48.0/21 28840 -188.225.56.0/21 9123 -188.225.64.0/21 28840 -188.225.72.0/21 9123 -188.225.80.0/21 9123 -188.225.88.0/21 28840 -188.225.96.0/19 28840 -188.225.128.0/18 12754 -188.225.192.0/19 12754 -188.225.224.0/20 12754 -188.225.240.0/21 12754 -188.225.248.0/22 12754 -188.225.252.0/23 12754 -188.225.254.0/24 12754 -188.225.255.0/24 202145 -188.226.0.0/17 12668 -188.226.128.0/17 14061 -188.227.4.0/22 35000 -188.227.8.0/22 35000 -188.227.12.0/24 50418 -188.227.13.0/24 35000 -188.227.14.0/23 35000 -188.227.16.0/22 48096 -188.227.20.0/22 50306 -188.227.24.0/24 39749 -188.227.25.0/24 35000 -188.227.26.0/24 35000 -188.227.27.0/24 51376 -188.227.28.0/24 35000 -188.227.29.0/24 204077 -188.227.30.0/24 48308 -188.227.31.0/24 58191 -188.227.36.0/22 35000 -188.227.40.0/22 35000 -188.227.44.0/22 50258 -188.227.48.0/22 34268 -188.227.52.0/22 35000 -188.227.56.0/22 208951 -188.227.60.0/23 49304 -188.227.62.0/24 49304 -188.227.64.0/22 35000 -188.227.68.0/23 35000 -188.227.70.0/23 199879 -188.227.72.0/22 48096 -188.227.76.0/22 35000 -188.227.80.0/22 35000 -188.227.84.0/23 208951 -188.227.88.0/24 199866 -188.227.89.0/24 51376 -188.227.90.0/24 51376 -188.227.92.0/22 35000 -188.227.96.0/21 35000 -188.227.104.0/23 44811 -188.227.108.0/22 35000 -188.227.112.0/20 35000 -188.227.128.0/20 206819 -188.227.144.0/23 206819 -188.227.160.0/19 20860 -188.227.192.0/22 49628 -188.227.196.0/22 29256 -188.227.200.0/21 56510 -188.227.208.0/20 57304 -188.227.224.0/22 47381 -188.227.230.0/24 47381 -188.227.231.0/24 34655 -188.227.232.0/21 51440 -188.227.240.0/21 57307 -188.227.248.0/21 12757 -188.228.0.0/17 29695 -188.228.128.0/17 28929 -188.229.0.0/17 197207 -188.229.128.0/17 29256 -188.230.0.0/18 25229 -188.230.64.0/20 25229 -188.230.80.0/21 25229 -188.230.94.0/23 25229 -188.230.96.0/22 25229 -188.230.100.0/24 25229 -188.230.102.0/23 25229 -188.230.104.0/22 25229 -188.230.108.0/23 25229 -188.230.111.0/24 25229 -188.230.112.0/23 25229 -188.230.115.0/24 25229 -188.230.118.0/23 20850 -188.230.120.0/22 20850 -188.230.124.0/24 20850 -188.230.126.0/23 20850 -188.230.128.0/17 34779 -188.231.0.0/22 24627 -188.231.4.0/24 24627 -188.231.6.0/24 24627 -188.231.8.0/22 24627 -188.231.14.0/24 3225 -188.231.16.0/24 24627 -188.231.32.0/21 24627 -188.231.80.0/22 25122 -188.231.85.0/24 25122 -188.231.86.0/23 25122 -188.231.98.0/23 25122 -188.231.100.0/24 25122 -188.231.102.0/23 25122 -188.231.104.0/23 25122 -188.231.116.0/23 25122 -188.231.124.0/22 25122 -188.231.129.0/24 31148 -188.231.130.0/24 31148 -188.231.132.0/22 31148 -188.231.136.0/24 31148 -188.231.138.0/23 31148 -188.231.140.0/22 31148 -188.231.144.0/23 31148 -188.231.147.0/24 31148 -188.231.148.0/22 31148 -188.231.152.0/22 31148 -188.231.157.0/24 31148 -188.231.158.0/23 31148 -188.231.160.0/23 31148 -188.231.162.0/24 31148 -188.231.165.0/24 31148 -188.231.166.0/23 31148 -188.231.168.0/22 31148 -188.231.173.0/24 31148 -188.231.174.0/24 31148 -188.231.177.0/24 31148 -188.231.178.0/24 31148 -188.231.180.0/23 31148 -188.231.182.0/24 31148 -188.231.184.0/23 31148 -188.231.186.0/24 31148 -188.231.188.0/22 31148 -188.231.192.0/23 31148 -188.231.204.0/23 31148 -188.231.212.0/23 31148 -188.231.214.0/24 31148 -188.231.220.0/23 31148 -188.231.223.0/24 31148 -188.231.224.0/23 31148 -188.231.226.0/24 31148 -188.231.228.0/23 31148 -188.231.232.0/21 31148 -188.231.240.0/23 31148 -188.231.244.0/22 31148 -188.231.248.0/21 31148 -188.232.0.0/19 50543 -188.232.32.0/19 42683 -188.232.64.0/20 31363 -188.232.80.0/20 39435 -188.232.96.0/19 41843 -188.232.128.0/17 41843 -188.233.0.0/17 39435 -188.233.128.0/18 39435 -188.233.192.0/20 39028 -188.233.208.0/20 50512 -188.233.224.0/21 56420 -188.233.232.0/21 34590 -188.233.240.0/20 41843 -188.234.0.0/18 41668 -188.234.64.0/21 51035 -188.234.72.0/21 9049 -188.234.80.0/20 51604 -188.234.96.0/20 51604 -188.234.112.0/22 41843 -188.234.116.0/24 12772 -188.234.120.0/21 9049 -188.234.128.0/22 9049 -188.234.132.0/23 41682 -188.234.134.0/24 43478 -188.234.135.0/24 9049 -188.234.136.0/21 9049 -188.234.144.0/22 9049 -188.234.148.0/22 51035 -188.234.152.0/21 9049 -188.234.160.0/21 56981 -188.234.168.0/21 59713 -188.234.176.0/21 31363 -188.234.184.0/21 34590 -188.234.192.0/18 51604 -188.235.0.0/18 50542 -188.235.64.0/19 50498 -188.235.96.0/20 50498 -188.235.112.0/21 50543 -188.235.120.0/21 56981 -188.235.128.0/18 50543 -188.235.192.0/18 50544 -188.236.0.0/16 42961 -188.237.0.0/16 8926 -188.238.0.0/16 1759 -188.239.0.0/18 34743 -188.239.64.0/18 29013 -188.239.128.0/19 12479 -188.239.160.0/20 29424 -188.239.176.0/21 28685 -188.239.184.0/22 199380 -188.239.188.0/23 15372 -188.239.190.0/24 15372 -188.239.191.0/24 206075 -188.239.192.0/18 44416 -188.240.0.0/24 6910 -188.240.1.0/24 49013 -188.240.2.0/23 5588 -188.240.4.0/22 208913 -188.240.8.0/23 39205 -188.240.10.0/23 12310 -188.240.12.0/24 50667 -188.240.14.0/24 34450 -188.240.15.0/24 39855 -188.240.17.0/24 44626 -188.240.18.0/23 42695 -188.240.20.0/22 205275 -188.240.24.0/21 39647 -188.240.32.0/22 209519 -188.240.36.0/22 29119 -188.240.40.0/23 209706 -188.240.42.0/24 3269 -188.240.43.0/24 29119 -188.240.44.0/23 3269 -188.240.46.0/24 62107 -188.240.47.0/24 43927 -188.240.48.0/23 42800 -188.240.51.0/24 42800 -188.240.56.0/21 56482 -188.240.64.0/22 6830 -188.240.68.0/24 6910 -188.240.69.0/24 201341 -188.240.70.0/24 60405 -188.240.71.0/24 39105 -188.240.72.0/22 39855 -188.240.76.0/22 6910 -188.240.80.0/24 62307 -188.240.81.0/24 50944 -188.240.82.0/24 43376 -188.240.83.0/24 209706 -188.240.89.0/24 44875 -188.240.90.0/23 6910 -188.240.92.0/22 52192 -188.240.96.0/19 30873 -188.240.128.0/20 12479 -188.240.144.0/20 1653 -188.240.160.0/19 51561 -188.240.192.0/23 50563 -188.240.194.0/23 29119 -188.240.196.0/24 60932 -188.240.197.0/24 60819 -188.240.198.0/23 44277 -188.240.200.0/23 44252 -188.240.202.0/23 31102 -188.240.204.0/22 201337 -188.240.208.0/24 44220 -188.240.210.0/24 203523 -188.240.211.0/24 201341 -188.240.212.0/24 198357 -188.240.213.0/24 9050 -188.240.216.0/22 12310 -188.240.220.0/24 9009 -188.240.221.0/24 203523 -188.240.222.0/23 42695 -188.240.224.0/22 6910 -188.240.228.0/23 6910 -188.240.230.0/24 6910 -188.240.231.0/24 3164 -188.240.232.0/23 6910 -188.240.235.0/24 5588 -188.240.236.0/22 199770 -188.240.240.0/21 12442 -188.240.248.0/21 12880 -188.241.2.0/24 56397 -188.241.3.0/24 39569 -188.241.4.0/23 31638 -188.241.10.0/23 44682 -188.241.12.0/24 60194 -188.241.13.0/24 56430 -188.241.15.0/24 8708 -188.241.16.0/24 6910 -188.241.18.0/24 49471 -188.241.19.0/24 52159 -188.241.20.0/22 47516 -188.241.24.0/24 205384 -188.241.25.0/24 202805 -188.241.28.0/24 206186 -188.241.29.0/24 206762 -188.241.30.0/24 206594 -188.241.31.0/24 199451 -188.241.32.0/22 60907 -188.241.36.0/23 44682 -188.241.38.0/24 6910 -188.241.39.0/24 25369 -188.241.40.0/21 199335 -188.241.48.0/21 16192 -188.241.56.0/23 44605 -188.241.58.0/24 51177 -188.241.59.0/24 6830 -188.241.60.0/23 43578 -188.241.62.0/23 35017 -188.241.64.0/24 33829 -188.241.65.0/24 62352 -188.241.66.0/23 39737 -188.241.68.0/24 201630 -188.241.72.0/24 9050 -188.241.73.0/24 57673 -188.241.74.0/23 44605 -188.241.80.0/22 50369 -188.241.84.0/24 39492 -188.241.85.0/24 6910 -188.241.87.0/24 39572 -188.241.88.0/21 44826 -188.241.96.0/21 202147 -188.241.104.0/23 31362 -188.241.106.0/23 201838 -188.241.108.0/24 44277 -188.241.109.0/24 48556 -188.241.110.0/24 6910 -188.241.111.0/24 39425 -188.241.112.0/21 43927 -188.241.120.0/24 49626 -188.241.121.0/24 39425 -188.241.122.0/23 58022 -188.241.126.0/24 9050 -188.241.127.0/24 39016 -188.241.128.0/24 9050 -188.241.129.0/24 39737 -188.241.130.0/23 39737 -188.241.132.0/23 39737 -188.241.134.0/23 31102 -188.241.136.0/23 31207 -188.241.138.0/23 39737 -188.241.140.0/23 201602 -188.241.142.0/24 205275 -188.241.143.0/24 9050 -188.241.144.0/24 42800 -188.241.146.0/24 42800 -188.241.148.0/22 20857 -188.241.152.0/24 205275 -188.241.153.0/24 3269 -188.241.154.0/24 56550 -188.241.156.0/23 43443 -188.241.158.0/24 56885 -188.241.159.0/24 6910 -188.241.160.0/20 1653 -188.241.182.0/24 6910 -188.241.183.0/24 5588 -188.241.184.0/23 31362 -188.241.186.0/24 3269 -188.241.187.0/24 34549 -188.241.188.0/23 41749 -188.241.190.0/23 31638 -188.241.192.0/24 6830 -188.241.193.0/24 201665 -188.241.194.0/24 3164 -188.241.195.0/24 34416 -188.241.196.0/23 47516 -188.241.198.0/23 42695 -188.241.200.0/21 50604 -188.241.208.0/24 59590 -188.241.209.0/24 34450 -188.241.210.0/24 50369 -188.241.211.0/24 209686 -188.241.212.0/24 39861 -188.241.213.0/24 9050 -188.241.214.0/24 6910 -188.241.215.0/24 200492 -188.241.218.0/23 47148 -188.241.220.0/23 50357 -188.241.222.0/24 5588 -188.241.223.0/24 203872 -188.241.224.0/20 6910 -188.241.240.0/23 33911 -188.241.242.0/23 6910 -188.241.244.0/23 39312 -188.241.246.0/24 203872 -188.241.247.0/24 39758 -188.241.248.0/24 6910 -188.241.249.0/24 50757 -188.241.250.0/24 50757 -188.241.251.0/24 3269 -188.241.252.0/22 41852 -188.242.0.0/15 35807 -188.244.0.0/20 39709 -188.244.16.0/20 31252 -188.244.32.0/20 8334 -188.244.48.0/20 25424 -188.244.64.0/20 21060 -188.244.80.0/20 49851 -188.244.98.0/23 50069 -188.244.100.0/22 41998 -188.244.104.0/22 202932 -188.244.108.0/22 58011 -188.244.128.0/18 15774 -188.244.192.0/20 20485 -188.244.208.0/20 15774 -188.244.224.0/19 15774 -188.245.0.0/16 16322 -188.246.0.0/20 15987 -188.246.16.0/24 15987 -188.246.17.0/24 8820 -188.246.18.0/23 15987 -188.246.20.0/23 15987 -188.246.22.0/24 15987 -188.246.23.0/24 8820 -188.246.24.0/21 15987 -188.246.32.0/19 31042 -188.246.64.0/19 21107 -188.246.96.0/20 47114 -188.246.112.0/22 198813 -188.246.116.0/22 51331 -188.246.120.0/21 47114 -188.246.128.0/19 29553 -188.246.160.0/19 8595 -188.246.192.0/19 8916 -188.246.224.0/23 49505 -188.246.226.0/24 49505 -188.246.227.0/24 50340 -188.246.228.0/22 49505 -188.246.232.0/24 49505 -188.246.233.0/24 50340 -188.246.234.0/23 49505 -188.246.236.0/22 21299 -188.246.240.0/20 21299 -188.247.0.0/19 29256 -188.247.32.0/19 39442 -188.247.64.0/19 48832 -188.247.96.0/20 3326 -188.247.112.0/21 3326 -188.247.129.0/24 39737 -188.247.130.0/23 50515 -188.247.132.0/23 39737 -188.247.134.0/24 198099 -188.247.136.0/21 200773 -188.247.144.0/20 200773 -188.247.160.0/22 39629 -188.247.168.0/22 199380 -188.247.172.0/22 39263 -188.247.176.0/20 21299 -188.247.192.0/19 21299 -188.247.224.0/24 50515 -188.247.226.0/23 39737 -188.247.233.0/24 198173 -188.247.234.0/24 57444 -188.247.236.0/24 40785 -188.247.237.0/24 39629 -188.247.238.0/24 39737 -188.247.239.0/24 62380 -188.247.240.0/20 39737 -188.248.0.0/18 48695 -188.248.64.0/19 47794 -188.248.96.0/19 48695 -188.248.128.0/22 48695 -188.248.132.0/22 47794 -188.248.136.0/22 47794 -188.248.140.0/23 47794 -188.248.142.0/24 47794 -188.248.143.0/24 48695 -188.248.144.0/21 47794 -188.248.152.0/22 47794 -188.248.156.0/22 48695 -188.248.160.0/19 48695 -188.248.192.0/19 47794 -188.248.224.0/19 48695 -188.249.0.0/19 48695 -188.249.32.0/19 47794 -188.249.64.0/19 48695 -188.249.96.0/19 47794 -188.249.128.0/22 48695 -188.249.132.0/22 47794 -188.249.136.0/21 47794 -188.249.144.0/20 47794 -188.249.160.0/19 47794 -188.249.192.0/18 47794 -188.250.0.0/15 3243 -188.252.0.0/17 198881 -188.252.128.0/18 31012 -188.252.192.0/22 31012 -188.252.196.0/22 15994 -188.252.200.0/21 31012 -188.252.208.0/20 31012 -188.252.224.0/19 31012 -188.253.2.0/23 62048 -188.253.126.0/24 202391 -188.253.128.0/19 28787 -188.253.224.0/20 28787 -188.253.248.0/24 28787 -188.253.254.0/23 28787 -188.254.0.0/17 12389 -188.254.128.0/17 43205 -188.255.0.0/17 42610 -188.255.128.0/23 57207 -188.255.130.0/24 52116 -188.255.131.0/24 198961 -188.255.132.0/24 198961 -188.255.133.0/24 9125 -188.255.134.0/24 57207 -188.255.135.0/24 28964 -188.255.136.0/21 9125 -188.255.144.0/20 9125 -188.255.160.0/20 9125 -188.255.176.0/23 9125 -188.255.178.0/24 9125 -188.255.179.0/24 28964 -188.255.180.0/22 9125 -188.255.184.0/21 9125 -188.255.192.0/23 28964 -188.255.194.0/24 52116 -188.255.195.0/24 28964 -188.255.196.0/22 9125 -188.255.206.0/23 28964 -188.255.216.0/24 52116 -188.255.217.0/24 28964 -188.255.218.0/24 200923 -188.255.220.0/24 9125 -188.255.221.0/24 28964 -188.255.222.0/23 28964 -188.255.224.0/22 9125 -188.255.228.0/23 9125 -188.255.230.0/23 28964 -188.255.232.0/22 9125 -188.255.236.0/24 52116 -188.255.237.0/24 198961 -188.255.238.0/23 52116 -188.255.240.0/23 9125 -188.255.242.0/23 52116 -188.255.244.0/22 52116 -188.255.248.0/22 52116 -188.255.252.0/24 52116 -188.255.253.0/24 28964 -188.255.254.0/23 52116 -189.0.0.0/19 26599 -189.0.32.0/20 27699 -189.0.48.0/20 26599 -189.0.64.0/22 26599 -189.0.68.0/23 26599 -189.0.70.0/24 26599 -189.0.71.0/24 27699 -189.0.72.0/24 26599 -189.0.73.0/24 27699 -189.0.74.0/23 26599 -189.0.76.0/24 26599 -189.0.77.0/24 27699 -189.0.78.0/23 27699 -189.0.80.0/20 27699 -189.0.96.0/20 26599 -189.0.112.0/22 26599 -189.0.116.0/23 26599 -189.0.118.0/24 26599 -189.0.119.0/24 27699 -189.0.120.0/21 27699 -189.0.128.0/24 27699 -189.0.129.0/24 26599 -189.0.130.0/23 26599 -189.0.132.0/22 26599 -189.0.136.0/21 26599 -189.0.144.0/20 26599 -189.0.160.0/19 26599 -189.0.192.0/20 27699 -189.0.208.0/21 26599 -189.0.216.0/22 26599 -189.0.220.0/23 27699 -189.0.222.0/23 26599 -189.0.224.0/19 26599 -189.1.0.0/19 28661 -189.1.32.0/20 28663 -189.1.48.0/20 28658 -189.1.64.0/24 28641 -189.1.80.0/20 28664 -189.1.96.0/19 28272 -189.1.128.0/20 28665 -189.1.144.0/20 28668 -189.1.160.0/21 28666 -189.1.168.0/21 262287 -189.1.176.0/20 28667 -189.1.192.0/18 28583 -189.2.0.0/15 4230 -189.4.0.0/14 28573 -189.8.0.0/18 26609 -189.8.64.0/20 11419 -189.8.80.0/20 28669 -189.8.96.0/20 28670 -189.8.128.0/17 52950 -189.9.0.0/16 10954 -189.10.0.0/15 8167 -189.12.0.0/15 7738 -189.14.0.0/18 22689 -189.14.64.0/20 28276 -189.14.80.0/20 28277 -189.14.96.0/21 19089 -189.14.105.0/24 19089 -189.14.106.0/23 19089 -189.14.108.0/23 19089 -189.14.110.0/24 19089 -189.14.128.0/20 28573 -189.14.144.0/21 28573 -189.14.152.0/22 28573 -189.14.160.0/19 28573 -189.14.192.0/19 28328 -189.14.224.0/20 28283 -189.14.240.0/20 14282 -189.15.0.0/16 53006 -189.16.0.0/15 4230 -189.18.0.0/15 27699 -189.20.0.0/16 10429 -189.21.0.0/17 17379 -189.21.128.0/19 17379 -189.21.160.0/23 17379 -189.21.162.0/23 26615 -189.21.164.0/22 26615 -189.21.168.0/21 17379 -189.21.176.0/20 17379 -189.21.192.0/24 17379 -189.21.193.0/24 26615 -189.21.194.0/23 26615 -189.21.196.0/22 17379 -189.21.200.0/21 17379 -189.21.208.0/20 17379 -189.21.224.0/19 17379 -189.22.0.0/15 4230 -189.24.0.0/15 7738 -189.26.0.0/15 18881 -189.28.0.0/20 28279 -189.28.16.0/21 28298 -189.28.24.0/21 262366 -189.28.32.0/19 28293 -189.28.64.0/18 28583 -189.28.128.0/20 28291 -189.28.144.0/20 28311 -189.28.160.0/20 28300 -189.28.176.0/20 28292 -189.28.192.0/19 28288 -189.28.224.0/19 28580 -189.29.0.0/16 28573 -189.30.0.0/15 8167 -189.32.0.0/18 28573 -189.32.64.0/19 28573 -189.32.128.0/17 28573 -189.33.0.0/16 28573 -189.34.0.0/16 28573 -189.35.0.0/17 28573 -189.35.128.0/19 28573 -189.35.160.0/20 28573 -189.35.184.0/21 28573 -189.35.192.0/18 28573 -189.36.0.0/17 13878 -189.36.144.0/20 28294 -189.36.160.0/19 262589 -189.36.192.0/20 28308 -189.36.208.0/20 28296 -189.36.224.0/20 262983 -189.37.0.0/17 16735 -189.37.128.0/17 23106 -189.38.0.0/20 28306 -189.38.16.0/20 28576 -189.38.32.0/20 28309 -189.38.48.0/21 19089 -189.38.56.0/22 18479 -189.38.60.0/24 7162 -189.38.61.0/24 18479 -189.38.62.0/24 7162 -189.38.63.0/24 18479 -189.38.64.0/20 28301 -189.38.80.0/20 28299 -189.38.96.0/23 28303 -189.38.98.0/24 28303 -189.38.99.0/24 16735 -189.38.100.0/22 28303 -189.38.104.0/21 28303 -189.38.112.0/20 28304 -189.38.128.0/17 19182 -189.39.0.0/18 16735 -189.39.64.0/20 28295 -189.39.80.0/20 28307 -189.39.96.0/20 28305 -189.39.112.0/20 28310 -189.39.128.0/20 28183 -189.39.144.0/20 28573 -189.39.160.0/20 28313 -189.39.176.0/22 268940 -189.39.192.0/20 262669 -189.39.208.0/21 22381 -189.39.216.0/22 265303 -189.39.220.0/22 22381 -189.39.224.0/20 28321 -189.39.240.0/20 28322 -189.40.0.0/16 26615 -189.41.0.0/16 53006 -189.42.0.0/15 4230 -189.44.0.0/16 10429 -189.45.0.0/20 28338 -189.45.16.0/20 28340 -189.45.32.0/19 25933 -189.45.64.0/18 28270 -189.45.128.0/19 17222 -189.45.160.0/20 28341 -189.45.192.0/20 28343 -189.45.208.0/21 28344 -189.45.224.0/20 262704 -189.46.0.0/15 27699 -189.48.0.0/15 7738 -189.50.0.0/20 28323 -189.50.16.0/20 28324 -189.50.40.0/21 28326 -189.50.48.0/22 28326 -189.50.64.0/20 39784 -189.50.80.0/20 28327 -189.50.96.0/20 28668 -189.50.112.0/20 28329 -189.50.128.0/20 28330 -189.50.144.0/20 28331 -189.50.160.0/20 28332 -189.50.176.0/20 23105 -189.50.192.0/20 28333 -189.50.224.0/19 28334 -189.51.0.0/20 22177 -189.51.16.0/20 28348 -189.51.48.0/20 264144 -189.51.64.0/19 28640 -189.51.96.0/19 262750 -189.51.128.0/21 267484 -189.51.136.0/21 28349 -189.51.144.0/21 28349 -189.51.152.0/22 267484 -189.51.156.0/22 28349 -189.51.176.0/20 28351 -189.51.192.0/20 28352 -189.51.208.0/20 28580 -189.51.224.0/19 262589 -189.52.0.0/15 4230 -189.54.0.0/16 28573 -189.55.0.0/18 28573 -189.55.96.0/19 28573 -189.55.128.0/17 28573 -189.56.0.0/15 10429 -189.58.0.0/15 18881 -189.60.0.0/14 28573 -189.64.0.0/14 26615 -189.68.0.0/15 27699 -189.70.0.0/15 7738 -189.72.0.0/14 8167 -189.76.0.0/18 22689 -189.76.64.0/20 52752 -189.76.80.0/21 28355 -189.76.88.0/23 28355 -189.76.91.0/24 28355 -189.76.92.0/22 28355 -189.76.128.0/20 28667 -189.76.144.0/20 28357 -189.76.168.0/22 28358 -189.76.172.0/23 28358 -189.76.174.0/24 28358 -189.76.176.0/20 28359 -189.76.192.0/20 28359 -189.76.208.0/20 28360 -189.76.224.0/20 28360 -189.76.240.0/20 262407 -189.77.0.0/23 17379 -189.77.2.0/23 26615 -189.77.4.0/23 17379 -189.77.6.0/23 26615 -189.77.8.0/23 26615 -189.77.10.0/23 17379 -189.77.12.0/22 26615 -189.77.16.0/22 17379 -189.77.20.0/22 26615 -189.77.24.0/21 26615 -189.77.32.0/22 26615 -189.77.36.0/23 26615 -189.77.38.0/23 17379 -189.77.40.0/21 17379 -189.77.48.0/22 17379 -189.77.52.0/22 26615 -189.77.56.0/23 17379 -189.77.58.0/23 26615 -189.77.60.0/22 26615 -189.77.64.0/20 17379 -189.77.80.0/21 17379 -189.77.88.0/21 26615 -189.77.96.0/23 17379 -189.77.98.0/23 26615 -189.77.100.0/23 26615 -189.77.102.0/24 26615 -189.77.103.0/24 17379 -189.77.104.0/21 17379 -189.77.112.0/21 17379 -189.77.120.0/21 26615 -189.77.128.0/22 17379 -189.77.132.0/24 17379 -189.77.133.0/24 26615 -189.77.134.0/23 26615 -189.77.136.0/21 17379 -189.77.144.0/21 26615 -189.77.152.0/23 26615 -189.77.154.0/24 17379 -189.77.155.0/24 26615 -189.77.156.0/22 26615 -189.77.160.0/22 17379 -189.77.164.0/23 26615 -189.77.166.0/23 17379 -189.77.168.0/22 17379 -189.77.172.0/22 26615 -189.77.176.0/24 26615 -189.77.177.0/24 17379 -189.77.178.0/23 17379 -189.77.180.0/22 26615 -189.77.184.0/22 26615 -189.77.188.0/22 17379 -189.77.192.0/21 26615 -189.77.200.0/23 26615 -189.77.202.0/23 17379 -189.77.204.0/24 26615 -189.77.205.0/24 17379 -189.77.206.0/23 17379 -189.77.208.0/22 26615 -189.77.212.0/22 17379 -189.77.216.0/21 17379 -189.77.224.0/24 17379 -189.77.225.0/24 26615 -189.77.226.0/23 26615 -189.77.228.0/22 17379 -189.77.232.0/23 26615 -189.77.234.0/23 17379 -189.77.236.0/22 17379 -189.77.240.0/21 17379 -189.77.248.0/23 26615 -189.77.250.0/24 26615 -189.77.251.0/24 17379 -189.77.252.0/22 17379 -189.78.0.0/15 27699 -189.80.0.0/14 7738 -189.84.0.0/20 28362 -189.84.16.0/20 28271 -189.84.48.0/20 28364 -189.84.64.0/20 263260 -189.84.80.0/20 28366 -189.84.112.0/20 28368 -189.84.128.0/21 28369 -189.84.136.0/23 262989 -189.84.144.0/20 28370 -189.84.160.0/19 28171 -189.84.192.0/20 28172 -189.84.208.0/20 28173 -189.84.224.0/20 28174 -189.84.240.0/20 28658 -189.85.0.0/20 28176 -189.85.16.0/20 11835 -189.85.48.0/20 28175 -189.85.64.0/20 28177 -189.85.80.0/20 28178 -189.85.128.0/23 28180 -189.85.136.0/24 28180 -189.85.140.0/24 28180 -189.85.144.0/20 28305 -189.85.160.0/19 11844 -189.85.192.0/18 26609 -189.86.0.0/15 4230 -189.88.0.0/16 4230 -189.89.0.0/20 28182 -189.89.16.0/20 28183 -189.89.32.0/20 53124 -189.89.61.0/24 262751 -189.89.62.0/23 262751 -189.89.64.0/20 28184 -189.89.80.0/20 262749 -189.89.96.0/19 19089 -189.89.128.0/18 28186 -189.89.192.0/21 19089 -189.89.200.0/22 19089 -189.89.204.0/23 19089 -189.89.206.0/23 13878 -189.89.208.0/20 28187 -189.89.224.0/19 28188 -189.90.0.0/20 28189 -189.90.16.0/20 28190 -189.90.32.0/20 28191 -189.90.48.0/20 28192 -189.90.64.0/20 28193 -189.90.80.0/20 262700 -189.90.96.0/20 28634 -189.90.112.0/20 262808 -189.90.128.0/20 28195 -189.90.144.0/20 53112 -189.90.160.0/20 28197 -189.90.176.0/20 28652 -189.90.192.0/20 28198 -189.90.208.0/20 28199 -189.90.240.0/20 28201 -189.91.0.0/19 28202 -189.91.32.0/23 32613 -189.91.34.0/24 32613 -189.91.48.0/20 28204 -189.91.64.0/19 17222 -189.91.96.0/20 262589 -189.91.112.0/21 262589 -189.91.120.0/22 262589 -189.91.124.0/23 262589 -189.91.126.0/23 52993 -189.91.128.0/20 28205 -189.91.144.0/20 264485 -189.91.176.0/20 28207 -189.91.192.0/20 28208 -189.91.208.0/20 10938 -189.91.224.0/19 28668 -189.92.0.0/14 22085 -189.96.0.0/23 27699 -189.96.2.0/23 26599 -189.96.4.0/22 26599 -189.96.8.0/21 26599 -189.96.16.0/20 26599 -189.96.32.0/19 26599 -189.96.64.0/18 26599 -189.96.128.0/17 26599 -189.97.0.0/18 26599 -189.97.64.0/21 26599 -189.97.72.0/21 27699 -189.97.80.0/20 27699 -189.97.96.0/19 26599 -189.97.128.0/17 26599 -189.98.0.0/15 26599 -189.100.0.0/14 28573 -189.104.0.0/14 7738 -189.108.0.0/15 10429 -189.110.0.0/15 27699 -189.112.0.0/16 16735 -189.113.0.0/20 28209 -189.113.16.0/20 22431 -189.113.32.0/20 28347 -189.113.48.0/21 53065 -189.113.56.0/21 262727 -189.113.64.0/20 28210 -189.113.80.0/20 28211 -189.113.96.0/20 28212 -189.113.112.0/20 28213 -189.113.128.0/20 52662 -189.113.144.0/20 28215 -189.113.160.0/20 28216 -189.113.192.0/20 28647 -189.113.208.0/21 28647 -189.113.216.0/21 262420 -189.113.224.0/19 28288 -189.114.0.0/15 18881 -189.116.0.0/14 26615 -189.120.0.0/14 28573 -189.124.0.0/20 28218 -189.124.16.0/20 28219 -189.124.32.0/20 28649 -189.124.48.0/20 53161 -189.124.64.0/20 28649 -189.124.80.0/20 28287 -189.124.96.0/20 22356 -189.124.112.0/20 28292 -189.124.128.0/17 28220 -189.125.0.0/19 3549 -189.125.32.0/21 3549 -189.125.40.0/22 3549 -189.125.44.0/23 3549 -189.125.46.0/24 3549 -189.125.47.0/24 27471 -189.125.48.0/23 3549 -189.125.50.0/24 3549 -189.125.51.0/24 3356 -189.125.52.0/22 3549 -189.125.56.0/21 3549 -189.125.64.0/21 3549 -189.125.72.0/22 3549 -189.125.76.0/23 3549 -189.125.78.0/24 3549 -189.125.79.0/24 10753 -189.125.80.0/20 3549 -189.125.96.0/22 10753 -189.125.100.0/23 3549 -189.125.102.0/24 10753 -189.125.103.0/24 3549 -189.125.104.0/21 3549 -189.125.112.0/20 3549 -189.125.128.0/22 3549 -189.125.132.0/23 3549 -189.125.134.0/24 3549 -189.125.135.0/24 14781 -189.125.136.0/21 3549 -189.125.144.0/20 3549 -189.125.160.0/19 3549 -189.125.192.0/21 3549 -189.125.200.0/23 3549 -189.125.202.0/24 3549 -189.125.203.0/24 262357 -189.125.204.0/24 262357 -189.125.205.0/24 3549 -189.125.206.0/23 3549 -189.125.208.0/20 3549 -189.125.224.0/20 3549 -189.125.240.0/23 3356 -189.125.242.0/24 3549 -189.125.243.0/24 10753 -189.125.244.0/22 3549 -189.125.248.0/21 3549 -189.126.16.0/20 28573 -189.126.32.0/20 28223 -189.126.48.0/20 28224 -189.126.64.0/20 28225 -189.126.96.0/19 27715 -189.126.160.0/21 267484 -189.126.168.0/21 28349 -189.126.176.0/22 28349 -189.126.180.0/22 267484 -189.126.184.0/22 28349 -189.126.188.0/23 28349 -189.126.190.0/23 267484 -189.126.192.0/24 25933 -189.126.193.0/24 28226 -189.126.194.0/23 28226 -189.126.196.0/22 28226 -189.126.200.0/22 28226 -189.126.204.0/23 28226 -189.126.206.0/24 25933 -189.126.207.0/24 28226 -189.126.208.0/20 28227 -189.126.224.0/20 28229 -189.127.0.0/20 27693 -189.127.16.0/20 28231 -189.127.32.0/20 28232 -189.127.48.0/20 28233 -189.127.64.0/18 262589 -189.127.192.0/20 28234 -189.127.208.0/20 28235 -189.127.224.0/20 28236 -189.127.240.0/20 28229 -189.128.0.0/18 8151 -189.128.64.0/19 8151 -189.128.128.0/18 8151 -189.129.0.0/16 8151 -189.130.0.0/15 8151 -189.132.0.0/14 8151 -189.136.0.0/17 8151 -189.136.128.0/19 8151 -189.136.192.0/18 8151 -189.137.0.0/17 8151 -189.137.128.0/18 8151 -189.137.192.0/19 8151 -189.138.32.0/19 8151 -189.138.64.0/18 8151 -189.138.128.0/19 8151 -189.139.0.0/16 8151 -189.140.0.0/17 8151 -189.140.128.0/18 8151 -189.141.0.0/17 8151 -189.141.160.0/19 8151 -189.141.192.0/18 8151 -189.142.0.0/15 8151 -189.144.0.0/16 8151 -189.145.0.0/17 8151 -189.145.128.0/18 8151 -189.145.192.0/19 8151 -189.146.0.0/16 8151 -189.147.0.0/17 8151 -189.147.128.0/18 8151 -189.147.224.0/19 8151 -189.148.0.0/16 8151 -189.151.0.0/16 8151 -189.152.0.0/15 8151 -189.154.0.0/17 8151 -189.154.128.0/18 8151 -189.154.192.0/19 8151 -189.155.0.0/16 8151 -189.156.0.0/14 8151 -189.160.0.0/14 8151 -189.164.0.0/15 8151 -189.166.0.0/17 8151 -189.166.128.0/18 8151 -189.166.192.0/19 8151 -189.167.0.0/18 8151 -189.167.192.0/18 8151 -189.168.0.0/15 8151 -189.170.0.0/17 8151 -189.170.128.0/18 8151 -189.170.192.0/19 8151 -189.171.0.0/16 8151 -189.172.0.0/16 8151 -189.173.0.0/17 8151 -189.173.128.0/18 8151 -189.173.192.0/19 8151 -189.174.0.0/15 8151 -189.176.0.0/15 8151 -189.178.0.0/17 8151 -189.178.128.0/18 8151 -189.179.0.0/19 8151 -189.179.64.0/18 8151 -189.179.128.0/17 8151 -189.180.0.0/15 8151 -189.182.32.0/19 8151 -189.182.64.0/18 8151 -189.182.128.0/17 8151 -189.183.0.0/16 8151 -189.184.0.0/20 8151 -189.186.0.0/15 8151 -189.188.0.0/15 8151 -189.190.0.0/16 8151 -189.191.0.0/18 8151 -189.191.64.0/19 8151 -189.191.128.0/17 8151 -189.192.0.0/17 13999 -189.192.128.0/23 13999 -189.192.130.0/24 13999 -189.192.132.0/23 13999 -189.192.136.0/21 13999 -189.192.144.0/20 13999 -189.192.160.0/19 13999 -189.192.192.0/18 13999 -189.193.0.0/18 13999 -189.193.64.0/18 27672 -189.193.128.0/17 13999 -189.194.0.0/17 13999 -189.194.128.0/21 13999 -189.194.140.0/22 13999 -189.194.144.0/20 13999 -189.194.160.0/19 13999 -189.194.192.0/18 13999 -189.195.0.0/19 13999 -189.195.32.0/21 28481 -189.195.40.0/22 13999 -189.195.44.0/22 28481 -189.195.48.0/20 13999 -189.195.64.0/21 13999 -189.195.80.0/20 13999 -189.195.96.0/19 13999 -189.195.128.0/21 13999 -189.195.136.0/22 13999 -189.195.141.0/24 13999 -189.195.142.0/23 13999 -189.195.144.0/21 13999 -189.195.152.0/23 28481 -189.195.154.0/24 13999 -189.195.155.0/24 28481 -189.195.156.0/22 13999 -189.195.160.0/23 27672 -189.195.162.0/23 13999 -189.195.164.0/22 13999 -189.195.168.0/21 28481 -189.195.180.0/22 13999 -189.195.184.0/22 13999 -189.195.192.0/20 27672 -189.195.208.0/21 27672 -189.195.216.0/22 27672 -189.195.220.0/22 13999 -189.195.224.0/19 27672 -189.196.0.0/20 13999 -189.196.16.0/21 13999 -189.196.28.0/22 13999 -189.196.32.0/19 13999 -189.196.64.0/20 28541 -189.196.80.0/20 13999 -189.196.96.0/19 13999 -189.196.128.0/20 28541 -189.196.144.0/20 13999 -189.196.160.0/21 13999 -189.196.168.0/21 28481 -189.196.176.0/20 13999 -189.196.192.0/18 13999 -189.197.0.0/19 13999 -189.197.32.0/20 13999 -189.197.48.0/21 13999 -189.197.56.0/22 13999 -189.197.60.0/24 13999 -189.197.62.0/23 13999 -189.197.64.0/18 13999 -189.197.128.0/17 13999 -189.198.0.0/17 13999 -189.198.128.0/18 13999 -189.198.192.0/19 13999 -189.198.224.0/22 13999 -189.198.228.0/24 13999 -189.198.229.0/24 28541 -189.198.230.0/23 13999 -189.198.232.0/21 13999 -189.198.240.0/20 13999 -189.199.0.0/23 13999 -189.199.2.0/23 27672 -189.199.4.0/23 13999 -189.199.6.0/24 27672 -189.199.7.0/24 13999 -189.199.8.0/21 28481 -189.199.16.0/20 13999 -189.199.32.0/19 13999 -189.199.64.0/21 13999 -189.199.72.0/23 13999 -189.199.76.0/24 13999 -189.199.79.0/24 13999 -189.199.80.0/21 13999 -189.199.88.0/22 27672 -189.199.92.0/23 27672 -189.199.94.0/24 13999 -189.199.95.0/24 27672 -189.199.96.0/20 13999 -189.199.112.0/22 13999 -189.199.118.0/23 13999 -189.199.120.0/22 13999 -189.199.125.0/24 13999 -189.199.126.0/23 13999 -189.199.128.0/19 27672 -189.199.160.0/19 13999 -189.199.192.0/19 13999 -189.199.224.0/20 13999 -189.199.240.0/21 13999 -189.199.248.0/23 28481 -189.199.250.0/23 13999 -189.199.252.0/22 13999 -189.200.0.0/17 13591 -189.200.128.0/18 13591 -189.200.192.0/21 13591 -189.200.200.0/24 13591 -189.200.201.0/24 28525 -189.200.202.0/23 13591 -189.200.204.0/22 13591 -189.200.208.0/20 13591 -189.200.224.0/20 13591 -189.200.240.0/22 13591 -189.200.244.0/22 28544 -189.200.248.0/21 13591 -189.201.128.0/20 28438 -189.201.144.0/23 28438 -189.201.152.0/23 28438 -189.201.154.0/24 28438 -189.201.158.0/23 28438 -189.201.160.0/22 28438 -189.201.164.0/23 28438 -189.201.168.0/22 28438 -189.201.172.0/24 28438 -189.201.174.0/23 28438 -189.201.176.0/21 28438 -189.201.184.0/24 28492 -189.201.190.0/23 28438 -189.201.192.0/22 262944 -189.201.196.0/22 263253 -189.201.200.0/21 262421 -189.201.208.0/20 263080 -189.201.224.0/23 28415 -189.201.226.0/24 7155 -189.201.227.0/24 28415 -189.201.228.0/24 7155 -189.201.229.0/24 262182 -189.201.230.0/24 7155 -189.201.231.0/24 28415 -189.201.232.0/21 263252 -189.201.240.0/22 265575 -189.201.244.0/23 42 -189.201.252.0/22 28466 -189.202.0.0/20 28509 -189.202.16.0/22 28509 -189.202.20.0/22 28545 -189.202.24.0/21 28509 -189.202.32.0/19 28509 -189.202.64.0/20 28554 -189.202.80.0/21 28554 -189.202.96.0/21 28512 -189.202.112.0/20 28512 -189.202.128.0/18 18734 -189.202.192.0/19 18734 -189.202.224.0/22 18734 -189.202.228.0/23 18734 -189.202.230.0/23 28548 -189.202.232.0/21 18734 -189.202.240.0/20 18734 -189.203.4.0/23 22884 -189.203.8.0/23 22884 -189.203.10.0/24 22884 -189.203.11.0/24 17072 -189.203.14.0/23 22884 -189.203.18.0/24 22884 -189.203.19.0/24 28469 -189.203.20.0/23 28469 -189.203.23.0/24 22884 -189.203.24.0/24 17072 -189.203.25.0/24 22884 -189.203.27.0/24 17072 -189.203.28.0/22 17072 -189.203.32.0/24 22884 -189.203.35.0/24 17072 -189.203.41.0/24 17072 -189.203.43.0/24 17072 -189.203.44.0/24 22884 -189.203.45.0/24 17072 -189.203.48.0/20 28469 -189.203.64.0/24 22884 -189.203.66.0/24 22884 -189.203.67.0/24 17072 -189.203.68.0/24 22884 -189.203.71.0/24 22884 -189.203.72.0/21 22884 -189.203.128.0/23 22884 -189.203.130.0/24 22884 -189.203.131.0/24 17072 -189.203.132.0/23 17072 -189.203.134.0/23 22884 -189.203.136.0/24 22884 -189.203.138.0/24 17072 -189.203.139.0/24 22884 -189.203.140.0/24 17072 -189.203.141.0/24 22884 -189.203.142.0/23 22884 -189.203.144.0/24 22884 -189.203.147.0/24 22884 -189.203.148.0/22 17072 -189.203.152.0/23 22884 -189.203.154.0/23 17072 -189.203.156.0/23 22884 -189.203.158.0/24 17072 -189.203.159.0/24 22884 -189.203.160.0/22 22884 -189.203.164.0/24 22884 -189.203.165.0/24 17072 -189.203.166.0/23 17072 -189.203.168.0/23 17072 -189.203.170.0/24 22884 -189.203.172.0/24 22884 -189.203.173.0/24 17072 -189.203.174.0/24 17072 -189.203.175.0/24 22884 -189.203.176.0/22 22884 -189.203.180.0/24 22884 -189.203.181.0/24 17072 -189.203.182.0/24 17072 -189.203.183.0/24 22884 -189.203.184.0/24 22884 -189.203.185.0/24 17072 -189.203.186.0/24 22884 -189.203.187.0/24 17072 -189.203.188.0/24 17072 -189.203.189.0/24 22884 -189.203.190.0/23 22884 -189.203.194.0/24 22884 -189.203.195.0/24 17072 -189.203.196.0/23 22884 -189.203.198.0/24 22884 -189.203.199.0/24 17072 -189.203.200.0/24 17072 -189.203.201.0/24 22884 -189.203.202.0/24 22884 -189.203.208.0/24 22884 -189.203.211.0/24 22884 -189.203.212.0/23 22884 -189.203.214.0/23 17072 -189.203.216.0/24 17072 -189.203.217.0/24 28469 -189.203.219.0/24 17072 -189.203.224.0/23 22884 -189.203.226.0/24 17072 -189.203.229.0/24 17072 -189.203.230.0/24 22884 -189.203.232.0/24 17072 -189.203.233.0/24 22884 -189.203.234.0/24 22884 -189.203.238.0/24 22884 -189.203.240.0/24 28414 -189.203.241.0/24 22884 -189.203.242.0/24 17072 -189.203.245.0/24 22884 -189.203.246.0/23 22884 -189.203.248.0/24 17072 -189.203.249.0/24 22884 -189.203.250.0/23 22884 -189.203.253.0/24 22884 -189.203.254.0/23 22884 -189.204.0.0/19 13591 -189.204.32.0/22 13591 -189.204.36.0/24 22908 -189.204.37.0/24 13591 -189.204.38.0/23 13591 -189.204.40.0/21 13591 -189.204.48.0/20 13591 -189.204.64.0/23 13591 -189.204.66.0/24 13591 -189.204.67.0/24 22908 -189.204.68.0/24 22908 -189.204.69.0/24 13591 -189.204.70.0/24 13591 -189.204.71.0/24 22908 -189.204.72.0/21 13591 -189.204.80.0/20 13591 -189.204.96.0/23 13591 -189.204.98.0/23 28534 -189.204.100.0/22 13591 -189.204.104.0/21 13591 -189.204.112.0/20 13591 -189.204.128.0/19 18734 -189.204.160.0/22 18734 -189.204.164.0/23 265541 -189.204.166.0/23 18734 -189.204.168.0/21 18734 -189.204.176.0/20 18734 -189.204.192.0/20 18734 -189.204.208.0/24 265541 -189.204.209.0/24 18734 -189.204.210.0/23 18734 -189.204.212.0/22 18734 -189.204.216.0/21 18734 -189.204.224.0/21 18734 -189.204.232.0/24 13591 -189.204.233.0/24 18734 -189.204.234.0/23 18734 -189.204.236.0/22 18734 -189.204.240.0/20 18734 -189.205.0.0/19 6503 -189.205.32.0/21 6503 -189.205.40.0/23 6503 -189.205.44.0/22 6503 -189.205.48.0/20 6503 -189.205.64.0/21 6503 -189.205.72.0/22 6503 -189.205.76.0/24 6503 -189.205.77.0/24 13999 -189.205.78.0/23 6503 -189.205.80.0/20 6503 -189.205.96.0/20 6503 -189.205.112.0/21 6503 -189.205.120.0/24 6503 -189.205.121.0/24 22882 -189.205.122.0/23 6503 -189.205.124.0/22 6503 -189.205.128.0/20 6503 -189.205.144.0/21 6503 -189.205.152.0/22 6503 -189.205.156.0/23 6503 -189.205.159.0/24 6503 -189.205.160.0/20 6503 -189.205.176.0/23 6503 -189.205.181.0/24 6503 -189.205.182.0/24 6503 -189.205.184.0/23 6503 -189.205.187.0/24 6503 -189.205.188.0/22 6503 -189.205.192.0/21 6503 -189.205.200.0/24 6503 -189.205.202.0/23 6503 -189.205.204.0/24 6503 -189.205.206.0/23 6503 -189.205.208.0/20 6503 -189.205.224.0/19 6503 -189.206.0.0/19 11172 -189.206.32.0/20 11172 -189.206.48.0/21 11172 -189.206.56.0/22 11172 -189.206.60.0/23 11172 -189.206.62.0/24 11172 -189.206.63.0/24 65537 -189.206.64.0/18 11172 -189.206.128.0/17 11172 -189.207.0.0/18 6503 -189.207.128.0/17 6503 -189.208.0.0/20 6503 -189.208.19.0/24 6503 -189.208.20.0/22 6503 -189.208.24.0/23 6503 -189.208.32.0/19 6503 -189.208.64.0/20 6503 -189.208.80.0/21 6503 -189.208.91.0/24 6503 -189.208.93.0/24 6503 -189.208.96.0/21 6503 -189.208.108.0/24 6503 -189.208.110.0/23 6503 -189.208.112.0/23 6503 -189.208.116.0/22 6503 -189.208.120.0/22 6503 -189.208.124.0/23 6503 -189.208.126.0/24 6503 -189.208.128.0/19 6503 -189.208.160.0/24 6503 -189.208.162.0/23 6503 -189.208.164.0/22 6503 -189.208.168.0/21 6503 -189.208.176.0/21 6503 -189.208.188.0/22 6503 -189.208.192.0/20 6503 -189.208.208.0/21 6503 -189.208.220.0/22 6503 -189.208.224.0/20 6503 -189.208.240.0/23 6503 -189.208.242.0/24 6503 -189.208.244.0/23 6503 -189.208.247.0/24 6503 -189.208.248.0/21 6503 -189.209.0.0/22 6503 -189.209.6.0/23 6503 -189.209.8.0/21 6503 -189.209.16.0/21 6503 -189.209.26.0/23 6503 -189.209.28.0/22 6503 -189.209.48.0/21 6503 -189.209.60.0/22 6503 -189.209.64.0/19 6503 -189.209.96.0/21 6503 -189.209.112.0/20 6503 -189.209.132.0/22 6503 -189.209.136.0/21 6503 -189.209.144.0/20 6503 -189.209.164.0/22 6503 -189.209.168.0/21 6503 -189.209.176.0/20 6503 -189.209.192.0/19 6503 -189.209.224.0/22 6503 -189.209.228.0/23 6503 -189.209.230.0/24 28492 -189.209.231.0/24 6503 -189.209.232.0/21 6503 -189.209.240.0/20 6503 -189.210.0.0/20 6503 -189.210.16.0/22 6503 -189.210.24.0/23 6503 -189.210.26.0/24 6503 -189.210.28.0/22 6503 -189.210.32.0/20 6503 -189.210.48.0/22 6503 -189.210.52.0/23 6503 -189.210.56.0/23 6503 -189.210.60.0/22 6503 -189.210.72.0/23 6503 -189.210.76.0/22 6503 -189.210.80.0/20 6503 -189.210.96.0/19 6503 -189.210.128.0/17 6503 -189.211.0.0/22 6503 -189.211.8.0/21 6503 -189.211.16.0/20 6503 -189.211.32.0/19 6503 -189.211.64.0/20 6503 -189.211.80.0/21 6503 -189.211.88.0/22 6503 -189.211.95.0/24 6503 -189.211.96.0/19 6503 -189.211.128.0/20 6503 -189.211.144.0/22 6503 -189.211.160.0/19 6503 -189.211.192.0/20 6503 -189.211.212.0/22 6503 -189.211.218.0/23 6503 -189.211.224.0/19 6503 -189.212.0.0/20 6503 -189.212.16.0/22 6503 -189.212.24.0/21 6503 -189.212.32.0/19 6503 -189.212.64.0/20 6503 -189.212.80.0/21 6503 -189.212.90.0/23 6503 -189.212.92.0/23 6503 -189.212.96.0/21 6503 -189.212.104.0/22 6503 -189.212.108.0/23 6503 -189.212.111.0/24 6503 -189.212.112.0/20 6503 -189.212.128.0/18 6503 -189.212.192.0/21 6503 -189.212.204.0/23 6503 -189.212.208.0/20 6503 -189.212.224.0/20 6503 -189.212.248.0/21 6503 -189.213.0.0/20 6503 -189.213.16.0/21 6503 -189.213.24.0/22 6503 -189.213.30.0/23 6503 -189.213.32.0/20 6503 -189.213.48.0/22 6503 -189.213.52.0/23 6503 -189.213.54.0/24 6503 -189.213.56.0/22 6503 -189.213.62.0/23 6503 -189.213.64.0/21 6503 -189.213.74.0/24 6503 -189.213.77.0/24 6503 -189.213.78.0/23 6503 -189.213.80.0/20 6503 -189.213.96.0/19 6503 -189.213.128.0/20 6503 -189.213.144.0/21 6503 -189.213.152.0/23 6503 -189.213.156.0/22 6503 -189.213.160.0/19 6503 -189.213.192.0/19 6503 -189.213.224.0/21 6503 -189.213.232.0/24 6503 -189.213.233.0/24 11172 -189.213.234.0/23 6503 -189.213.236.0/22 6503 -189.213.240.0/20 6503 -189.214.0.0/21 28545 -189.214.16.0/20 28509 -189.214.32.0/19 28509 -189.214.64.0/21 28509 -189.214.72.0/23 28509 -189.214.80.0/20 28512 -189.214.96.0/20 28554 -189.214.112.0/21 28554 -189.214.128.0/20 28555 -189.214.159.0/24 28554 -189.214.160.0/21 28509 -189.214.172.0/24 28509 -189.214.175.0/24 28509 -189.214.176.0/20 28509 -189.214.208.0/20 28509 -189.214.224.0/20 28509 -189.214.252.0/22 28509 -189.215.0.0/21 28509 -189.215.12.0/22 28509 -189.215.16.0/21 28509 -189.215.32.0/21 28509 -189.215.48.0/21 28545 -189.215.64.0/20 28512 -189.215.80.0/21 28509 -189.215.88.0/22 28509 -189.215.96.0/20 28509 -189.215.126.0/23 28554 -189.215.128.0/24 28509 -189.215.129.0/24 28538 -189.215.130.0/24 28538 -189.215.131.0/24 18734 -189.215.132.0/24 28509 -189.215.134.0/24 28509 -189.215.135.0/24 28512 -189.215.136.0/21 28554 -189.215.144.0/21 28509 -189.215.172.0/22 28509 -189.215.192.0/22 28509 -189.215.200.0/24 28512 -189.215.201.0/24 28509 -189.215.202.0/24 28509 -189.215.208.0/20 28509 -189.215.240.0/22 28509 -189.215.246.0/23 28554 -189.216.0.0/21 28548 -189.216.8.0/22 28548 -189.216.16.0/20 28555 -189.216.48.0/20 28548 -189.216.64.0/18 28548 -189.216.128.0/19 28548 -189.216.160.0/21 28548 -189.216.176.0/20 28548 -189.216.192.0/20 28548 -189.216.208.0/20 18734 -189.216.240.0/20 28548 -189.217.0.0/19 28548 -189.217.32.0/20 28548 -189.217.64.0/20 28548 -189.217.96.0/19 28548 -189.217.136.0/21 28548 -189.218.0.0/18 11888 -189.218.64.0/19 11888 -189.218.96.0/21 11888 -189.218.104.0/22 11888 -189.218.108.0/23 11888 -189.218.110.0/24 11888 -189.218.111.0/24 265594 -189.218.112.0/20 11888 -189.218.128.0/21 11888 -189.218.136.0/22 11888 -189.218.140.0/23 265594 -189.218.142.0/23 11888 -189.218.144.0/22 11888 -189.218.148.0/23 265594 -189.218.150.0/23 11888 -189.218.152.0/21 11888 -189.218.160.0/23 11888 -189.218.162.0/23 265594 -189.218.164.0/23 11888 -189.218.166.0/24 265594 -189.218.167.0/24 11888 -189.218.168.0/22 11888 -189.218.172.0/23 265594 -189.218.174.0/23 11888 -189.218.176.0/20 11888 -189.218.192.0/19 11888 -189.218.224.0/21 11888 -189.218.232.0/23 265594 -189.218.234.0/23 11888 -189.218.236.0/22 11888 -189.218.240.0/21 11888 -189.218.248.0/22 11888 -189.218.252.0/23 11888 -189.218.254.0/23 265594 -189.219.0.0/20 11888 -189.219.16.0/23 265594 -189.219.18.0/23 11888 -189.219.20.0/22 11888 -189.219.24.0/21 11888 -189.219.32.0/20 11888 -189.219.48.0/22 11888 -189.219.52.0/22 265594 -189.219.56.0/21 11888 -189.219.64.0/22 265594 -189.219.68.0/22 11888 -189.219.72.0/21 11888 -189.219.80.0/20 11888 -189.219.96.0/21 11888 -189.219.104.0/23 265594 -189.219.106.0/23 11888 -189.219.108.0/22 11888 -189.219.112.0/22 265594 -189.219.116.0/22 11888 -189.219.120.0/21 11888 -189.219.128.0/18 11888 -189.219.192.0/23 11888 -189.219.194.0/24 265594 -189.219.195.0/24 11888 -189.219.196.0/22 11888 -189.219.200.0/21 11888 -189.219.208.0/20 11888 -189.219.224.0/19 11888 -189.220.0.0/20 28509 -189.220.16.0/23 28554 -189.220.18.0/24 28554 -189.220.64.0/20 28554 -189.220.96.0/20 28509 -189.220.128.0/23 28509 -189.220.138.0/23 28509 -189.220.160.0/19 28509 -189.220.192.0/20 28555 -189.220.208.0/20 28509 -189.220.224.0/21 28509 -189.220.232.0/22 28509 -189.220.236.0/23 28509 -189.220.239.0/24 28509 -189.220.240.0/20 28509 -189.221.0.0/20 28509 -189.221.32.0/20 28545 -189.221.48.0/20 28509 -189.221.72.0/21 28509 -189.221.80.0/20 28509 -189.221.96.0/20 28509 -189.221.112.0/20 28512 -189.221.128.0/20 28512 -189.221.144.0/21 28512 -189.221.153.0/24 28556 -189.221.154.0/23 28509 -189.221.156.0/23 28509 -189.221.160.0/23 18734 -189.221.162.0/24 18734 -189.221.163.0/24 28555 -189.221.164.0/22 18734 -189.221.168.0/21 18734 -189.221.176.0/20 28509 -189.221.192.0/21 28509 -189.221.200.0/22 28509 -189.221.208.0/21 28509 -189.221.224.0/22 28554 -189.221.233.0/24 28509 -189.221.235.0/24 28509 -189.221.248.0/21 28512 -189.222.0.0/17 8151 -189.222.128.0/22 8151 -189.222.132.0/23 6332 -189.222.134.0/23 8151 -189.222.136.0/21 8151 -189.222.144.0/20 8151 -189.222.160.0/19 8151 -189.222.192.0/19 8151 -189.222.224.0/20 8151 -189.222.240.0/21 8151 -189.222.248.0/22 8151 -189.222.252.0/24 6332 -189.222.253.0/24 8151 -189.222.254.0/24 8151 -189.222.255.0/24 6332 -189.223.0.0/18 8151 -189.223.64.0/19 8151 -189.223.96.0/20 8151 -189.223.112.0/21 8151 -189.223.120.0/22 8151 -189.223.124.0/22 6332 -189.223.128.0/22 6332 -189.223.132.0/22 8151 -189.223.136.0/21 8151 -189.223.144.0/20 8151 -189.223.160.0/21 8151 -189.223.168.0/21 6332 -189.223.176.0/20 8151 -189.223.192.0/19 8151 -189.223.224.0/20 8151 -189.223.240.0/21 8151 -189.223.248.0/21 6332 -189.224.0.0/17 8151 -189.224.128.0/18 8151 -189.224.192.0/19 8151 -189.225.0.0/16 8151 -189.226.0.0/15 8151 -189.228.0.0/16 8151 -189.229.0.0/18 8151 -189.229.64.0/19 8151 -189.229.128.0/18 8151 -189.229.224.0/19 8151 -189.230.32.0/19 8151 -189.230.128.0/19 8151 -189.230.224.0/19 8151 -189.231.0.0/16 8151 -189.232.0.0/17 8151 -189.232.128.0/19 8151 -189.233.0.0/22 8151 -189.233.4.0/23 8151 -189.233.8.0/21 8151 -189.233.96.0/19 8151 -189.234.0.0/15 8151 -189.236.0.0/14 8151 -189.240.0.0/15 8151 -189.242.0.0/18 8151 -189.242.128.0/17 8151 -189.243.0.0/16 8151 -189.244.0.0/16 8151 -189.247.0.0/20 8151 -189.247.16.0/21 8151 -189.247.24.0/23 8151 -189.247.26.0/24 8151 -189.247.28.0/24 8151 -189.247.30.0/23 8151 -189.247.32.0/24 8151 -189.247.35.0/24 8151 -189.247.37.0/24 8151 -189.247.38.0/23 8151 -189.247.40.0/21 8151 -189.247.48.0/24 8151 -189.247.51.0/24 8151 -189.247.55.0/24 8151 -189.247.59.0/24 8151 -189.247.66.0/24 8151 -189.247.71.0/24 8151 -189.247.72.0/24 8151 -189.247.75.0/24 8151 -189.247.76.0/22 8151 -189.247.80.0/24 8151 -189.247.82.0/23 8151 -189.247.95.0/24 8151 -189.247.96.0/22 8151 -189.247.100.0/24 8151 -189.247.102.0/23 8151 -189.247.104.0/23 8151 -189.247.109.0/24 8151 -189.247.110.0/24 8151 -189.247.130.0/24 8151 -189.247.131.0/24 3905 -189.247.132.0/22 8151 -189.247.136.0/21 8151 -189.247.144.0/20 8151 -189.247.160.0/22 8151 -189.247.164.0/23 8151 -189.247.166.0/24 8151 -189.247.168.0/22 8151 -189.247.174.0/23 8151 -189.247.192.0/23 20940 -189.247.194.0/24 20940 -189.247.195.0/24 8151 -189.247.196.0/22 8151 -189.247.202.0/23 8151 -189.247.204.0/22 20940 -189.247.208.0/21 8151 -189.247.216.0/24 20940 -189.247.217.0/24 8151 -189.247.218.0/23 8151 -189.247.220.0/22 8151 -189.247.224.0/22 8151 -189.247.228.0/23 8151 -189.247.230.0/24 8151 -189.247.236.0/23 8151 -189.247.241.0/24 28513 -189.247.245.0/24 28513 -189.247.246.0/23 28513 -189.247.249.0/24 28513 -189.247.253.0/24 8151 -189.248.0.0/17 8151 -189.248.128.0/18 8151 -189.248.192.0/19 8151 -189.249.0.0/16 8151 -189.250.0.0/15 8151 -189.252.0.0/17 8151 -189.252.128.0/18 8151 -189.252.192.0/19 8151 -189.253.0.0/16 8151 -189.254.0.0/18 8151 -189.254.64.0/24 3905 -189.254.65.0/24 8151 -189.254.66.0/24 20940 -189.254.67.0/24 8151 -189.254.68.0/22 8151 -189.254.72.0/21 8151 -189.254.80.0/24 8151 -189.254.81.0/24 20940 -189.254.82.0/23 8151 -189.254.84.0/22 8151 -189.254.88.0/21 8151 -189.254.96.0/20 8151 -189.254.112.0/21 8151 -189.254.120.0/22 8151 -189.254.124.0/24 8151 -189.254.125.0/24 20940 -189.254.126.0/23 8151 -189.254.128.0/17 8151 -190.0.0.0/18 13489 -190.0.64.0/19 27896 -190.0.96.0/19 28038 -190.0.128.0/19 6057 -190.0.160.0/22 28111 -190.0.164.0/24 28111 -190.0.166.0/24 28111 -190.0.168.0/21 28111 -190.0.176.0/20 28111 -190.0.192.0/19 27737 -190.0.224.0/22 263713 -190.0.228.0/24 203335 -190.0.229.0/24 263713 -190.0.230.0/23 263713 -190.0.232.0/21 28073 -190.0.240.0/21 27951 -190.0.248.0/21 6568 -190.1.0.0/18 27833 -190.1.64.0/19 14187 -190.1.96.0/19 13585 -190.1.128.0/18 8163 -190.1.192.0/18 10299 -190.2.0.0/20 16814 -190.2.16.0/24 16814 -190.2.17.0/24 264638 -190.2.18.0/24 16814 -190.2.19.0/24 27711 -190.2.20.0/22 16814 -190.2.24.0/21 16814 -190.2.32.0/19 16814 -190.2.72.0/21 61920 -190.2.80.0/21 28073 -190.2.88.0/21 28091 -190.2.96.0/19 27813 -190.2.128.0/24 49981 -190.2.129.0/24 262181 -190.2.130.0/23 49981 -190.2.132.0/22 49981 -190.2.136.0/21 49981 -190.2.144.0/20 49981 -190.2.192.0/20 23201 -190.2.208.0/23 262186 -190.2.216.0/21 265636 -190.2.224.0/21 27755 -190.2.232.0/22 27755 -190.2.236.0/22 18809 -190.2.240.0/20 52346 -190.3.0.0/21 19037 -190.3.8.0/22 19037 -190.3.12.0/23 19037 -190.3.14.0/24 19037 -190.3.15.0/24 52415 -190.3.16.0/23 19037 -190.3.18.0/24 19037 -190.3.19.0/24 11664 -190.3.20.0/23 11664 -190.3.22.0/24 27754 -190.3.23.0/24 19037 -190.3.24.0/22 19037 -190.3.28.0/24 11664 -190.3.29.0/24 19037 -190.3.30.0/23 19037 -190.3.32.0/23 19037 -190.3.34.0/23 11664 -190.3.36.0/24 11664 -190.3.37.0/24 19037 -190.3.38.0/23 19037 -190.3.40.0/21 19037 -190.3.48.0/23 11664 -190.3.50.0/23 19037 -190.3.52.0/22 19037 -190.3.56.0/24 19037 -190.3.57.0/24 11664 -190.3.58.0/23 19037 -190.3.60.0/23 11664 -190.3.62.0/24 11664 -190.3.63.0/24 19037 -190.3.64.0/21 19037 -190.3.72.0/24 11664 -190.3.73.0/24 52279 -190.3.74.0/23 11664 -190.3.76.0/22 11664 -190.3.80.0/24 11664 -190.3.81.0/24 19037 -190.3.82.0/24 11664 -190.3.83.0/24 19037 -190.3.84.0/23 11664 -190.3.86.0/24 11664 -190.3.87.0/24 19037 -190.3.88.0/24 19037 -190.3.89.0/24 263198 -190.3.90.0/23 19037 -190.3.92.0/22 19037 -190.3.96.0/23 19037 -190.3.98.0/23 11664 -190.3.100.0/23 19037 -190.3.102.0/24 19037 -190.3.103.0/24 11664 -190.3.104.0/21 19037 -190.3.112.0/21 19037 -190.3.120.0/24 11664 -190.3.121.0/24 19037 -190.3.122.0/24 19037 -190.3.123.0/24 11664 -190.3.124.0/24 19037 -190.3.125.0/24 11664 -190.3.126.0/23 11664 -190.3.128.0/19 19889 -190.3.168.0/21 28099 -190.3.176.0/21 28098 -190.3.184.0/21 6568 -190.3.192.0/18 27695 -190.4.0.0/21 23383 -190.4.8.0/23 23383 -190.4.11.0/24 23383 -190.4.12.0/22 23383 -190.4.16.0/23 23383 -190.4.18.0/24 23383 -190.4.19.0/24 267737 -190.4.20.0/22 23383 -190.4.25.0/24 23383 -190.4.26.0/23 23383 -190.4.28.0/22 23383 -190.4.32.0/20 23383 -190.4.48.0/21 23383 -190.4.56.0/23 23383 -190.4.58.0/24 23383 -190.4.59.0/24 267737 -190.4.60.0/22 23383 -190.4.64.0/20 27745 -190.4.80.0/21 265642 -190.4.88.0/21 16973 -190.4.96.0/22 6429 -190.4.101.0/24 6429 -190.4.102.0/23 6429 -190.4.105.0/24 6429 -190.4.106.0/23 6429 -190.4.108.0/22 6429 -190.4.112.0/20 262196 -190.4.128.0/18 11081 -190.4.192.0/19 16629 -190.4.224.0/19 7004 -190.5.0.0/22 27827 -190.5.4.0/23 27827 -190.5.6.0/24 27827 -190.5.7.0/24 7303 -190.5.8.0/22 27827 -190.5.12.0/24 27827 -190.5.13.0/24 3549 -190.5.14.0/23 3549 -190.5.17.0/24 27827 -190.5.18.0/23 27827 -190.5.20.0/23 3549 -190.5.22.0/24 27827 -190.5.30.0/23 3549 -190.5.32.0/19 27901 -190.5.64.0/22 27696 -190.5.68.0/24 263239 -190.5.69.0/24 27696 -190.5.70.0/23 27696 -190.5.72.0/21 27696 -190.5.80.0/20 27696 -190.5.96.0/19 27696 -190.5.128.0/19 16592 -190.5.160.0/20 28015 -190.5.176.0/21 28015 -190.5.184.0/22 28015 -190.5.188.0/23 28015 -190.5.191.0/24 28015 -190.5.192.0/20 27650 -190.5.212.0/22 262184 -190.5.216.0/21 52426 -190.5.224.0/21 21599 -190.5.232.0/22 21599 -190.5.236.0/23 21599 -190.5.238.0/23 18809 -190.5.240.0/21 21599 -190.5.248.0/24 21599 -190.5.249.0/24 18809 -190.5.250.0/24 21599 -190.5.251.0/24 28079 -190.5.252.0/22 18809 -190.6.0.0/20 11562 -190.6.16.0/23 11562 -190.6.19.0/24 11562 -190.6.20.0/22 11562 -190.6.24.0/21 11562 -190.6.32.0/19 11562 -190.6.64.0/19 27725 -190.6.96.0/20 27792 -190.6.112.0/21 27792 -190.6.120.0/21 262213 -190.6.128.0/24 28118 -190.6.129.0/24 12066 -190.6.130.0/24 12066 -190.6.131.0/24 28118 -190.6.132.0/22 12066 -190.6.136.0/24 28118 -190.6.137.0/24 12066 -190.6.138.0/23 12066 -190.6.140.0/22 12066 -190.6.144.0/23 12066 -190.6.146.0/23 28118 -190.6.148.0/24 28118 -190.6.149.0/24 12066 -190.6.150.0/23 12066 -190.6.152.0/21 12066 -190.6.160.0/24 27845 -190.6.162.0/23 27845 -190.6.164.0/22 27845 -190.6.168.0/22 27845 -190.6.172.0/24 27845 -190.6.174.0/23 27845 -190.6.176.0/20 27845 -190.6.192.0/20 27884 -190.6.208.0/20 28015 -190.6.224.0/20 27665 -190.6.240.0/20 27955 -190.7.0.0/18 20207 -190.7.64.0/19 27855 -190.7.96.0/20 27975 -190.7.112.0/22 262220 -190.7.116.0/24 262220 -190.7.120.0/21 262220 -190.7.128.0/19 13489 -190.7.160.0/20 27908 -190.7.176.0/20 262502 -190.7.192.0/19 27876 -190.7.224.0/19 27881 -190.8.0.0/20 27691 -190.8.32.0/20 27896 -190.8.48.0/20 52405 -190.8.64.0/23 14259 -190.8.66.0/23 18822 -190.8.68.0/24 18822 -190.8.69.0/24 14259 -190.8.70.0/24 14259 -190.8.71.0/24 18822 -190.8.72.0/23 18822 -190.8.74.0/24 264735 -190.8.75.0/24 14259 -190.8.76.0/23 18822 -190.8.78.0/24 18822 -190.8.79.0/24 14259 -190.8.80.0/24 14259 -190.8.81.0/24 18822 -190.8.82.0/23 14259 -190.8.84.0/24 14259 -190.8.85.0/24 18822 -190.8.86.0/23 18822 -190.8.88.0/21 18822 -190.8.96.0/22 18822 -190.8.100.0/23 14259 -190.8.102.0/23 18822 -190.8.104.0/22 18822 -190.8.108.0/23 18822 -190.8.110.0/23 14259 -190.8.112.0/23 18822 -190.8.114.0/24 18822 -190.8.115.0/24 14259 -190.8.116.0/23 18822 -190.8.118.0/24 18822 -190.8.119.0/24 14259 -190.8.120.0/22 18822 -190.8.124.0/24 18822 -190.8.125.0/24 14259 -190.8.126.0/23 18822 -190.8.128.0/19 19180 -190.8.164.0/22 264628 -190.8.168.0/22 269750 -190.8.176.0/22 52335 -190.8.180.0/22 262169 -190.8.184.0/21 52473 -190.8.192.0/20 10620 -190.8.208.0/21 10620 -190.8.220.0/22 10620 -190.8.224.0/19 10620 -190.9.0.0/19 22501 -190.9.32.0/20 8100 -190.9.48.0/21 262913 -190.9.56.0/22 28096 -190.9.60.0/23 28096 -190.9.62.0/24 28096 -190.9.64.0/21 11581 -190.9.72.0/22 11581 -190.9.76.0/23 11581 -190.9.78.0/24 19429 -190.9.79.0/24 11581 -190.9.80.0/24 11581 -190.9.82.0/23 11581 -190.9.84.0/24 11581 -190.9.85.0/24 19429 -190.9.86.0/24 11581 -190.9.87.0/24 264646 -190.9.88.0/23 11581 -190.9.90.0/24 19429 -190.9.91.0/24 11581 -190.9.92.0/22 11581 -190.9.96.0/23 11581 -190.9.100.0/24 264646 -190.9.101.0/24 11581 -190.9.102.0/23 11581 -190.9.104.0/24 11581 -190.9.105.0/24 264646 -190.9.106.0/23 264646 -190.9.108.0/22 11581 -190.9.112.0/23 19429 -190.9.114.0/23 11581 -190.9.116.0/22 11581 -190.9.120.0/23 11581 -190.9.125.0/24 11581 -190.9.127.0/24 11581 -190.9.128.0/19 8048 -190.9.160.0/19 28006 -190.9.192.0/18 13489 -190.10.0.0/20 3790 -190.10.16.0/23 3790 -190.10.18.0/24 11830 -190.10.19.0/24 3790 -190.10.20.0/22 3790 -190.10.24.0/24 11830 -190.10.25.0/24 3790 -190.10.26.0/23 3790 -190.10.28.0/22 3790 -190.10.32.0/22 3790 -190.10.36.0/24 11830 -190.10.37.0/24 3790 -190.10.38.0/23 11830 -190.10.40.0/22 11830 -190.10.44.0/24 11830 -190.10.45.0/24 3790 -190.10.46.0/23 11830 -190.10.48.0/24 3790 -190.10.49.0/24 11830 -190.10.50.0/24 3790 -190.10.51.0/24 11830 -190.10.52.0/22 11830 -190.10.56.0/24 3790 -190.10.57.0/24 11830 -190.10.58.0/23 11830 -190.10.60.0/22 11830 -190.10.64.0/21 3790 -190.10.72.0/23 3790 -190.10.74.0/23 11830 -190.10.76.0/22 3790 -190.10.80.0/20 11830 -190.10.96.0/21 11830 -190.10.104.0/23 11830 -190.10.106.0/24 3790 -190.10.107.0/24 11830 -190.10.108.0/22 11830 -190.10.112.0/21 11830 -190.10.120.0/24 11830 -190.10.121.0/24 3790 -190.10.122.0/23 3790 -190.10.124.0/22 11830 -190.10.128.0/17 14522 -190.11.0.0/21 28006 -190.11.10.0/23 28006 -190.11.12.0/22 28006 -190.11.16.0/20 28006 -190.11.32.0/19 11815 -190.11.64.0/19 27839 -190.11.96.0/19 27927 -190.11.128.0/20 13585 -190.11.144.0/21 13585 -190.11.152.0/22 13585 -190.11.156.0/23 13585 -190.11.158.0/24 52420 -190.11.159.0/24 13585 -190.11.160.0/20 13585 -190.11.176.0/22 13585 -190.11.180.0/24 52420 -190.11.181.0/24 13585 -190.11.182.0/23 13585 -190.11.184.0/22 13585 -190.11.188.0/24 52420 -190.11.189.0/24 13585 -190.11.190.0/23 13585 -190.11.192.0/20 27953 -190.11.224.0/20 27923 -190.11.240.0/21 27740 -190.11.248.0/24 27740 -190.11.250.0/23 27740 -190.11.252.0/22 27740 -190.12.0.0/20 22724 -190.12.16.0/22 22724 -190.12.20.0/23 22724 -190.12.22.0/24 22724 -190.12.23.0/24 266664 -190.12.24.0/21 22724 -190.12.32.0/19 22724 -190.12.64.0/19 27843 -190.12.96.0/20 11014 -190.12.112.0/22 11014 -190.12.116.0/24 11014 -190.12.119.0/24 11014 -190.12.120.0/21 11014 -190.12.160.0/19 28114 -190.13.0.0/18 22368 -190.13.64.0/24 13424 -190.13.66.0/23 13424 -190.13.69.0/24 13424 -190.13.71.0/24 13424 -190.13.76.0/24 13424 -190.13.80.0/21 262186 -190.13.88.0/21 52351 -190.13.96.0/24 27921 -190.13.97.0/24 3816 -190.13.98.0/23 3816 -190.13.100.0/22 3816 -190.13.104.0/22 3816 -190.13.108.0/23 27921 -190.13.110.0/23 3816 -190.13.112.0/22 52339 -190.13.116.0/22 61466 -190.13.120.0/22 52344 -190.13.124.0/23 27660 -190.13.126.0/24 52344 -190.13.127.0/24 61473 -190.13.128.0/18 14117 -190.13.192.0/22 22698 -190.13.197.0/24 22698 -190.13.198.0/23 22698 -190.13.201.0/24 22698 -190.13.202.0/24 22698 -190.13.204.0/23 22698 -190.13.206.0/24 22698 -190.13.208.0/21 262192 -190.13.216.0/21 262208 -190.13.224.0/19 27955 -190.14.0.0/24 262287 -190.14.1.0/24 9009 -190.14.2.0/23 262287 -190.14.4.0/23 262287 -190.14.8.0/24 262287 -190.14.10.0/24 262287 -190.14.11.0/24 64200 -190.14.12.0/23 262287 -190.14.14.0/24 64200 -190.14.15.0/24 8100 -190.14.16.0/23 262248 -190.14.18.0/24 265867 -190.14.19.0/24 6762 -190.14.20.0/22 6762 -190.14.24.0/21 6762 -190.14.32.0/22 52354 -190.14.36.0/22 52469 -190.14.40.0/21 52348 -190.14.48.0/20 27659 -190.14.64.0/24 22541 -190.14.66.0/23 22541 -190.14.71.0/24 22541 -190.14.126.0/23 22541 -190.14.129.0/24 52362 -190.14.130.0/23 52362 -190.14.132.0/23 52362 -190.14.134.0/24 52362 -190.14.141.0/24 52362 -190.14.142.0/24 52362 -190.14.144.0/21 264856 -190.14.152.0/22 52356 -190.14.156.0/22 52322 -190.14.160.0/19 52232 -190.14.192.0/20 27796 -190.14.208.0/21 27796 -190.14.216.0/21 27930 -190.14.224.0/19 27951 -190.15.0.0/19 27817 -190.15.32.0/19 53240 -190.15.68.0/22 18635 -190.15.80.0/20 52352 -190.15.96.0/19 61568 -190.15.128.0/23 61468 -190.15.130.0/24 27947 -190.15.132.0/22 61468 -190.15.136.0/23 61468 -190.15.138.0/24 61468 -190.15.139.0/24 22724 -190.15.140.0/24 27947 -190.15.141.0/24 61468 -190.15.143.0/24 52343 -190.15.144.0/20 27725 -190.15.168.0/21 52281 -190.15.176.0/20 52281 -190.15.192.0/19 27879 -190.15.224.0/19 27881 -190.16.0.0/16 10481 -190.17.0.0/19 10481 -190.17.32.0/19 10318 -190.17.64.0/18 10318 -190.17.128.0/17 10318 -190.18.0.0/15 10318 -190.20.0.0/15 7418 -190.22.0.0/16 7418 -190.23.0.0/16 27866 -190.24.0.0/17 19429 -190.24.128.0/21 19429 -190.24.136.0/22 19429 -190.24.140.0/24 267807 -190.24.141.0/24 19429 -190.24.142.0/23 19429 -190.24.144.0/20 19429 -190.24.160.0/19 19429 -190.24.192.0/18 19429 -190.25.0.0/17 19429 -190.25.128.0/19 19429 -190.25.160.0/20 19429 -190.25.176.0/21 19429 -190.25.184.0/24 19429 -190.25.185.0/24 267807 -190.25.186.0/23 19429 -190.25.188.0/22 19429 -190.25.192.0/18 19429 -190.26.0.0/17 19429 -190.26.128.0/18 19429 -190.26.192.0/21 19429 -190.26.200.0/22 19429 -190.26.204.0/24 32034 -190.26.205.0/24 19429 -190.26.206.0/23 19429 -190.26.208.0/20 19429 -190.26.224.0/19 19429 -190.27.0.0/17 19429 -190.27.128.0/18 19429 -190.27.192.0/19 19429 -190.27.224.0/20 19429 -190.27.240.0/23 19429 -190.27.242.0/24 19429 -190.27.243.0/24 266862 -190.27.244.0/22 19429 -190.27.248.0/21 19429 -190.28.0.0/15 13489 -190.30.0.0/18 7303 -190.30.72.0/21 7303 -190.30.80.0/20 7303 -190.30.96.0/19 7303 -190.30.128.0/18 7303 -190.30.200.0/21 7303 -190.30.208.0/20 7303 -190.30.224.0/20 7303 -190.30.240.0/23 7303 -190.30.242.0/24 27813 -190.30.243.0/24 7303 -190.30.244.0/22 7303 -190.30.248.0/22 7303 -190.30.252.0/23 7303 -190.30.254.0/24 264642 -190.30.255.0/24 7303 -190.31.0.0/16 7303 -190.32.0.0/15 11556 -190.34.0.0/17 11556 -190.34.128.0/19 11556 -190.34.160.0/20 11556 -190.34.176.0/22 11556 -190.34.180.0/23 11556 -190.34.182.0/24 11556 -190.34.183.0/24 28316 -190.34.184.0/21 11556 -190.34.192.0/18 11556 -190.35.0.0/16 11556 -190.36.0.0/17 8048 -190.36.128.0/18 8048 -190.36.224.0/19 8048 -190.37.0.0/17 8048 -190.37.192.0/18 8048 -190.38.0.0/15 8048 -190.40.0.0/14 6147 -190.44.0.0/17 22047 -190.44.128.0/18 22047 -190.44.192.0/19 22047 -190.44.224.0/20 22047 -190.44.240.0/21 22047 -190.44.248.0/22 22047 -190.44.252.0/23 22047 -190.44.254.0/24 22047 -190.44.255.0/24 12956 -190.45.0.0/16 22047 -190.46.0.0/15 22047 -190.48.0.0/14 22927 -190.52.0.0/19 3816 -190.52.32.0/21 52312 -190.52.40.0/21 28093 -190.52.48.0/21 27839 -190.52.56.0/21 52327 -190.52.64.0/21 3549 -190.52.80.0/20 262231 -190.52.96.0/20 28007 -190.52.112.0/22 262182 -190.52.116.0/23 262182 -190.52.118.0/24 7155 -190.52.119.0/24 262182 -190.52.120.0/24 7155 -190.52.121.0/24 262182 -190.52.122.0/24 7155 -190.52.123.0/24 262182 -190.52.124.0/24 7155 -190.52.125.0/24 262182 -190.52.126.0/23 262182 -190.52.128.0/18 27866 -190.52.192.0/20 264668 -190.52.208.0/20 52348 -190.52.224.0/19 28053 -190.53.0.0/19 27773 -190.53.32.0/21 27742 -190.53.40.0/24 27742 -190.53.41.0/24 52501 -190.53.42.0/23 27742 -190.53.44.0/23 27742 -190.53.46.0/24 27742 -190.53.47.0/24 263201 -190.53.48.0/20 20299 -190.53.64.0/19 20299 -190.53.96.0/19 27773 -190.53.128.0/18 27773 -190.53.192.0/18 20299 -190.54.0.0/24 6535 -190.54.1.0/24 6429 -190.54.2.0/24 6535 -190.54.3.0/24 6429 -190.54.4.0/23 6429 -190.54.6.0/23 16990 -190.54.8.0/21 6429 -190.54.16.0/21 6429 -190.54.24.0/22 6429 -190.54.28.0/23 6429 -190.54.30.0/24 52267 -190.54.31.0/24 6429 -190.54.32.0/19 6429 -190.54.64.0/19 6535 -190.54.96.0/20 6429 -190.54.112.0/23 263173 -190.54.114.0/23 6429 -190.54.116.0/22 6429 -190.54.120.0/22 6429 -190.54.124.0/24 6429 -190.54.125.0/24 6535 -190.54.126.0/24 6429 -190.54.127.0/24 6535 -190.54.128.0/19 6535 -190.54.160.0/20 6535 -190.54.176.0/22 6535 -190.54.180.0/23 6535 -190.54.182.0/23 6429 -190.54.184.0/22 6535 -190.54.188.0/23 6535 -190.54.190.0/24 6535 -190.54.191.0/24 6429 -190.54.192.0/18 6535 -190.55.0.0/16 27747 -190.56.0.0/16 14754 -190.57.0.0/22 263783 -190.57.4.0/23 263783 -190.57.6.0/24 263783 -190.57.8.0/21 263783 -190.57.16.0/24 12127 -190.57.20.0/23 12127 -190.57.22.0/24 12127 -190.57.23.0/24 263783 -190.57.24.0/24 12127 -190.57.27.0/24 12127 -190.57.30.0/23 12127 -190.57.32.0/20 14709 -190.57.63.0/24 12127 -190.57.64.0/21 12127 -190.57.72.0/22 12127 -190.57.76.0/23 12127 -190.57.79.0/24 12127 -190.57.80.0/21 263783 -190.57.104.0/22 263783 -190.57.108.0/22 12127 -190.57.113.0/24 263783 -190.57.114.0/24 263783 -190.57.120.0/22 263783 -190.57.128.0/18 22724 -190.57.192.0/19 19889 -190.57.224.0/19 20207 -190.58.0.0/15 5639 -190.60.0.0/17 18747 -190.60.128.0/19 18747 -190.60.160.0/21 18747 -190.60.168.0/22 18747 -190.60.172.0/23 18747 -190.60.174.0/24 18747 -190.60.175.0/24 262216 -190.60.176.0/20 18747 -190.60.192.0/18 18747 -190.61.0.0/19 18747 -190.61.32.0/24 52276 -190.61.33.0/24 52468 -190.61.34.0/23 52468 -190.61.37.0/24 52468 -190.61.38.0/23 52468 -190.61.40.0/21 52468 -190.61.48.0/22 52468 -190.61.52.0/23 52468 -190.61.55.0/24 52468 -190.61.56.0/23 52468 -190.61.58.0/24 52468 -190.61.60.0/22 52468 -190.61.80.0/22 52468 -190.61.84.0/24 52468 -190.61.88.0/24 52468 -190.61.128.0/18 18747 -190.61.192.0/21 18747 -190.61.200.0/22 18747 -190.61.204.0/23 52270 -190.61.206.0/23 18747 -190.61.208.0/24 52270 -190.61.209.0/24 18747 -190.61.210.0/23 18747 -190.61.212.0/22 18747 -190.61.216.0/21 18747 -190.61.224.0/19 18747 -190.62.0.0/16 14754 -190.63.0.0/19 23487 -190.63.32.0/20 23487 -190.63.48.0/21 23487 -190.63.56.0/23 27738 -190.63.58.0/24 27738 -190.63.59.0/24 23487 -190.63.60.0/22 23487 -190.63.64.0/18 23487 -190.63.128.0/18 23487 -190.63.192.0/20 23487 -190.63.208.0/22 23487 -190.63.212.0/23 27738 -190.63.214.0/23 23487 -190.63.216.0/21 23487 -190.63.224.0/19 23487 -190.64.0.0/16 6057 -190.65.0.0/16 3816 -190.66.0.0/22 3816 -190.66.4.0/24 12956 -190.66.5.0/24 3816 -190.66.6.0/23 3816 -190.66.8.0/21 3816 -190.66.16.0/20 3816 -190.66.32.0/19 3816 -190.66.80.0/20 3816 -190.66.96.0/19 3816 -190.66.128.0/20 3816 -190.66.160.0/19 3816 -190.66.192.0/18 3816 -190.67.0.0/16 3816 -190.68.0.0/17 3816 -190.68.128.0/18 3816 -190.68.192.0/19 3816 -190.68.224.0/20 3816 -190.68.240.0/21 3816 -190.68.248.0/22 3816 -190.68.252.0/23 3816 -190.68.254.0/24 21578 -190.68.255.0/24 3816 -190.69.0.0/16 3816 -190.70.0.0/15 13489 -190.72.0.0/16 8048 -190.73.0.0/18 8048 -190.73.96.0/19 8048 -190.73.224.0/19 8048 -190.74.0.0/19 8048 -190.74.64.0/18 8048 -190.74.128.0/19 8048 -190.74.192.0/18 8048 -190.75.0.0/16 8048 -190.76.0.0/19 8048 -190.76.32.0/20 8048 -190.76.48.0/21 8048 -190.76.56.0/22 8048 -190.76.60.0/23 8048 -190.76.62.0/24 8048 -190.76.63.0/24 27889 -190.76.64.0/19 8048 -190.76.96.0/20 8048 -190.76.112.0/21 8048 -190.76.120.0/22 8048 -190.76.124.0/23 8048 -190.76.126.0/24 8048 -190.76.127.0/24 27889 -190.76.192.0/19 27889 -190.76.224.0/20 27889 -190.76.240.0/24 27889 -190.76.241.0/24 8048 -190.76.242.0/23 8048 -190.76.244.0/24 27889 -190.76.245.0/24 8048 -190.76.246.0/23 8048 -190.76.248.0/24 27889 -190.76.249.0/24 8048 -190.76.250.0/24 8048 -190.76.251.0/24 27889 -190.76.252.0/24 27889 -190.76.253.0/24 8048 -190.76.254.0/23 8048 -190.77.0.0/17 8048 -190.77.128.0/18 8048 -190.77.224.0/19 8048 -190.78.0.0/15 8048 -190.80.0.0/17 19863 -190.80.128.0/17 6400 -190.81.0.0/16 12252 -190.82.0.0/18 7418 -190.82.64.0/19 15311 -190.82.96.0/20 15311 -190.82.112.0/23 15311 -190.82.114.0/23 7004 -190.82.116.0/22 15311 -190.82.120.0/21 15311 -190.82.128.0/17 7418 -190.83.20.0/22 270324 -190.83.128.0/17 27665 -190.84.0.0/22 10620 -190.84.4.0/23 10620 -190.84.8.0/21 10620 -190.84.16.0/20 10620 -190.84.32.0/19 10620 -190.84.64.0/20 10620 -190.84.80.0/21 10620 -190.84.88.0/23 10620 -190.84.92.0/22 10620 -190.84.96.0/22 10620 -190.84.104.0/21 10620 -190.84.112.0/20 10620 -190.84.128.0/17 10620 -190.85.0.0/16 14080 -190.86.0.0/15 14754 -190.88.0.0/19 11081 -190.88.32.0/24 11081 -190.88.33.0/24 27748 -190.88.34.0/23 11081 -190.88.36.0/22 11081 -190.88.40.0/21 11081 -190.88.48.0/20 11081 -190.88.64.0/18 11081 -190.88.128.0/17 11081 -190.90.0.0/21 18678 -190.90.8.0/23 18678 -190.90.10.0/24 18678 -190.90.11.0/24 262195 -190.90.12.0/24 18678 -190.90.13.0/24 262589 -190.90.14.0/23 18678 -190.90.16.0/22 18678 -190.90.20.0/23 18678 -190.90.22.0/24 18678 -190.90.23.0/24 28032 -190.90.24.0/24 18678 -190.90.25.0/24 26619 -190.90.26.0/23 26619 -190.90.28.0/23 18678 -190.90.30.0/24 28032 -190.90.31.0/24 18678 -190.90.32.0/24 26619 -190.90.33.0/24 18678 -190.90.34.0/24 18678 -190.90.35.0/24 26619 -190.90.36.0/22 18678 -190.90.40.0/21 27837 -190.90.48.0/22 27837 -190.90.52.0/22 18678 -190.90.56.0/22 26619 -190.90.60.0/22 18678 -190.90.64.0/23 18678 -190.90.66.0/24 27837 -190.90.67.0/24 18678 -190.90.68.0/22 18678 -190.90.72.0/24 18678 -190.90.73.0/24 27650 -190.90.74.0/23 27650 -190.90.76.0/23 27650 -190.90.78.0/24 27650 -190.90.79.0/24 267788 -190.90.80.0/22 18678 -190.90.84.0/23 18678 -190.90.86.0/24 18678 -190.90.87.0/24 27837 -190.90.88.0/21 18678 -190.90.96.0/20 18678 -190.90.112.0/24 266737 -190.90.113.0/24 27650 -190.90.114.0/23 18678 -190.90.116.0/22 18678 -190.90.120.0/24 262195 -190.90.121.0/24 18678 -190.90.122.0/23 27837 -190.90.124.0/24 27837 -190.90.125.0/24 27650 -190.90.126.0/24 27650 -190.90.127.0/24 18678 -190.90.128.0/24 18678 -190.90.129.0/24 52280 -190.90.130.0/23 18678 -190.90.132.0/22 18678 -190.90.136.0/23 18678 -190.90.138.0/24 264646 -190.90.139.0/24 18678 -190.90.140.0/22 18678 -190.90.144.0/22 18678 -190.90.148.0/24 262589 -190.90.149.0/24 18678 -190.90.150.0/23 18678 -190.90.152.0/23 18678 -190.90.154.0/24 18678 -190.90.155.0/24 26619 -190.90.156.0/22 26619 -190.90.160.0/21 26619 -190.90.168.0/24 18678 -190.90.169.0/24 26619 -190.90.170.0/23 26619 -190.90.172.0/22 18678 -190.90.176.0/23 18678 -190.90.178.0/23 26619 -190.90.180.0/22 26619 -190.90.184.0/23 26619 -190.90.186.0/24 26619 -190.90.187.0/24 18678 -190.90.188.0/22 18678 -190.90.192.0/23 18678 -190.90.194.0/24 18678 -190.90.195.0/24 27837 -190.90.196.0/23 27837 -190.90.198.0/23 18678 -190.90.200.0/22 18678 -190.90.204.0/23 18678 -190.90.206.0/24 18678 -190.90.207.0/24 262589 -190.90.208.0/21 18678 -190.90.216.0/23 26619 -190.90.218.0/23 18678 -190.90.220.0/22 18678 -190.90.224.0/23 18678 -190.90.226.0/23 27650 -190.90.228.0/24 27837 -190.90.229.0/24 18678 -190.90.230.0/24 27951 -190.90.231.0/24 18678 -190.90.232.0/23 18678 -190.90.234.0/24 18678 -190.90.235.0/24 262589 -190.90.236.0/22 18678 -190.90.240.0/22 18678 -190.90.244.0/23 18678 -190.90.246.0/23 27837 -190.90.248.0/21 18678 -190.91.0.0/16 27925 -190.92.0.0/18 27884 -190.92.64.0/19 27884 -190.92.96.0/21 52414 -190.92.104.0/22 52425 -190.92.109.0/24 52425 -190.92.110.0/24 52425 -190.92.111.0/24 263809 -190.92.112.0/20 27725 -190.93.0.0/19 27789 -190.93.36.0/23 174 -190.93.38.0/24 174 -190.93.39.0/24 19863 -190.93.40.0/22 52347 -190.93.44.0/23 52320 -190.93.46.0/24 52320 -190.93.48.0/20 28038 -190.93.64.0/18 27789 -190.93.128.0/19 19429 -190.93.160.0/21 262171 -190.93.168.0/24 393676 -190.93.169.0/24 262171 -190.93.170.0/23 262171 -190.93.172.0/22 262171 -190.93.176.0/22 262183 -190.93.188.0/22 269908 -190.93.192.0/19 28009 -190.93.224.0/20 27979 -190.93.240.0/20 13335 -190.94.0.0/21 12066 -190.94.8.0/23 28118 -190.94.10.0/24 12066 -190.94.11.0/24 28118 -190.94.12.0/22 12066 -190.94.16.0/21 12066 -190.94.24.0/21 28118 -190.94.32.0/22 12066 -190.94.36.0/23 12066 -190.94.38.0/24 12066 -190.94.39.0/24 28118 -190.94.40.0/21 12066 -190.94.48.0/22 12066 -190.94.52.0/23 12066 -190.94.54.0/23 28118 -190.94.56.0/23 12066 -190.94.58.0/23 28118 -190.94.60.0/23 12066 -190.94.62.0/23 28118 -190.94.64.0/23 28118 -190.94.66.0/23 12066 -190.94.68.0/24 12066 -190.94.69.0/24 28118 -190.94.70.0/23 12066 -190.94.72.0/22 12066 -190.94.76.0/22 28118 -190.94.80.0/20 12066 -190.94.96.0/20 12066 -190.94.112.0/24 12066 -190.94.113.0/24 28118 -190.94.114.0/23 12066 -190.94.116.0/23 12066 -190.94.118.0/24 28118 -190.94.119.0/24 12066 -190.94.120.0/23 12066 -190.94.122.0/24 12066 -190.94.123.0/24 28118 -190.94.124.0/22 12066 -190.94.128.0/20 27668 -190.94.144.0/21 27668 -190.94.155.0/24 27844 -190.94.156.0/22 27844 -190.94.160.0/20 52364 -190.94.176.0/23 262195 -190.94.178.0/24 262195 -190.94.180.0/22 262195 -190.94.184.0/24 262195 -190.94.186.0/23 262195 -190.94.188.0/24 20940 -190.94.192.0/18 8053 -190.95.0.0/17 14117 -190.95.128.0/17 27947 -190.96.0.0/24 14259 -190.96.1.0/24 18822 -190.96.2.0/23 14259 -190.96.4.0/22 14259 -190.96.8.0/23 14259 -190.96.10.0/23 18822 -190.96.12.0/22 14259 -190.96.16.0/24 14259 -190.96.17.0/24 18822 -190.96.18.0/23 14259 -190.96.20.0/24 14259 -190.96.21.0/24 18822 -190.96.22.0/24 18822 -190.96.23.0/24 14259 -190.96.24.0/22 18822 -190.96.28.0/23 18822 -190.96.30.0/24 18822 -190.96.31.0/24 14259 -190.96.32.0/23 18822 -190.96.34.0/24 18822 -190.96.35.0/24 14259 -190.96.36.0/23 18822 -190.96.38.0/24 14259 -190.96.39.0/24 18822 -190.96.40.0/22 18822 -190.96.44.0/23 18822 -190.96.46.0/24 18822 -190.96.47.0/24 14259 -190.96.48.0/21 14259 -190.96.56.0/21 18822 -190.96.64.0/21 14259 -190.96.72.0/24 27735 -190.96.73.0/24 14259 -190.96.74.0/23 14259 -190.96.76.0/22 14259 -190.96.80.0/22 14259 -190.96.84.0/24 14259 -190.96.85.0/24 265839 -190.96.86.0/24 18822 -190.96.87.0/24 14259 -190.96.88.0/24 18822 -190.96.89.0/24 14259 -190.96.90.0/23 14259 -190.96.92.0/23 14259 -190.96.94.0/24 14259 -190.96.95.0/24 18822 -190.96.96.0/21 262223 -190.96.104.0/21 262212 -190.96.112.0/23 262150 -190.96.114.0/24 52323 -190.96.115.0/24 264795 -190.96.116.0/22 262150 -190.96.120.0/21 262150 -190.96.128.0/18 22368 -190.96.192.0/19 22368 -190.96.224.0/20 22368 -190.96.240.0/21 22368 -190.96.248.0/21 3816 -190.97.0.0/18 27833 -190.97.64.0/22 27845 -190.97.68.0/23 27845 -190.97.71.0/24 27845 -190.97.72.0/21 27845 -190.97.80.0/23 27845 -190.97.83.0/24 27845 -190.97.84.0/24 27845 -190.97.89.0/24 27845 -190.97.90.0/24 27845 -190.97.95.0/24 27845 -190.97.97.0/24 26317 -190.97.98.0/23 26317 -190.97.100.0/24 26317 -190.97.109.0/24 26317 -190.97.111.0/24 26317 -190.97.112.0/21 262188 -190.97.120.0/21 52387 -190.97.128.0/19 27937 -190.97.160.0/21 27956 -190.97.168.0/22 267848 -190.97.176.0/20 27923 -190.97.193.0/24 27845 -190.97.194.0/23 27845 -190.97.196.0/22 27845 -190.97.200.0/23 27845 -190.97.202.0/24 27845 -190.97.204.0/24 27845 -190.97.206.0/23 27845 -190.97.208.0/20 27845 -190.97.224.0/21 263703 -190.97.232.0/22 263703 -190.97.236.0/24 263703 -190.97.238.0/23 263703 -190.97.240.0/23 263703 -190.97.243.0/24 263703 -190.97.244.0/22 263703 -190.97.248.0/22 263703 -190.97.252.0/24 269832 -190.97.253.0/24 263703 -190.97.254.0/23 263703 -190.98.0.0/17 27775 -190.98.128.0/24 265867 -190.98.129.0/24 60725 -190.98.130.0/23 12956 -190.98.132.0/22 12956 -190.98.136.0/22 28036 -190.98.140.0/22 12956 -190.98.144.0/20 12956 -190.98.160.0/20 12956 -190.98.176.0/21 12956 -190.98.184.0/22 262202 -190.98.188.0/23 262202 -190.98.190.0/24 262202 -190.98.191.0/24 262182 -190.98.192.0/20 14259 -190.98.208.0/21 14259 -190.98.216.0/22 14259 -190.98.220.0/23 14259 -190.98.222.0/23 18822 -190.98.224.0/23 14259 -190.98.226.0/24 18822 -190.98.227.0/24 14259 -190.98.228.0/22 14259 -190.98.232.0/23 14259 -190.98.234.0/23 18822 -190.98.236.0/22 14259 -190.98.240.0/22 14259 -190.98.244.0/23 14259 -190.98.246.0/24 18822 -190.98.247.0/24 14259 -190.98.248.0/23 14259 -190.98.250.0/23 18822 -190.98.252.0/23 18822 -190.98.254.0/23 14259 -190.99.0.0/20 20299 -190.99.16.0/21 20299 -190.99.24.0/21 27773 -190.99.32.0/21 27773 -190.99.40.0/23 27773 -190.99.43.0/24 27773 -190.99.44.0/22 27773 -190.99.48.0/20 27773 -190.99.64.0/21 52235 -190.99.72.0/21 52238 -190.99.80.0/23 64200 -190.99.83.0/24 37153 -190.99.84.0/22 64200 -190.99.88.0/22 52246 -190.99.92.0/22 6568 -190.99.96.0/21 52241 -190.99.104.0/24 52241 -190.99.105.0/24 52366 -190.99.106.0/23 52366 -190.99.108.0/22 52366 -190.99.112.0/22 262259 -190.99.116.0/24 22869 -190.99.117.0/24 52468 -190.99.118.0/24 52468 -190.99.119.0/24 52451 -190.99.120.0/21 52392 -190.99.128.0/17 10299 -190.100.0.0/15 22047 -190.102.0.0/19 27734 -190.102.32.0/20 30361 -190.102.56.0/21 28005 -190.102.64.0/19 52260 -190.102.96.0/23 35899 -190.102.98.0/24 393398 -190.102.100.0/22 35017 -190.102.113.0/24 20462 -190.102.114.0/23 20462 -190.102.118.0/24 20462 -190.102.120.0/24 18678 -190.102.123.0/24 18678 -190.102.124.0/24 269822 -190.102.128.0/19 27843 -190.102.160.0/19 27975 -190.102.192.0/19 27831 -190.102.224.0/19 27901 -190.103.0.0/20 13316 -190.103.16.0/21 28318 -190.103.24.0/22 265801 -190.103.28.0/22 264628 -190.103.32.0/24 22313 -190.103.36.0/24 22313 -190.103.40.0/24 22313 -190.103.42.0/24 22313 -190.103.46.0/24 22313 -190.103.50.0/23 22313 -190.103.52.0/24 22313 -190.103.54.0/23 22313 -190.103.56.0/21 22313 -190.103.64.0/20 52495 -190.103.80.0/22 27865 -190.103.84.0/22 263766 -190.103.96.0/19 27855 -190.103.128.0/21 27822 -190.103.136.0/22 27822 -190.103.140.0/23 27822 -190.103.142.0/24 27822 -190.103.160.0/20 262989 -190.103.177.0/24 7303 -190.103.178.0/23 263812 -190.103.180.0/22 263689 -190.103.184.0/22 20080 -190.103.188.0/22 30361 -190.103.192.0/20 27987 -190.103.208.0/20 264830 -190.103.224.0/22 27983 -190.103.228.0/24 27983 -190.103.230.0/23 27983 -190.103.232.0/22 27983 -190.103.238.0/23 263822 -190.103.240.0/23 27983 -190.103.242.0/24 61480 -190.103.243.0/24 27983 -190.103.244.0/23 27983 -190.103.247.0/24 27983 -190.103.248.0/24 27983 -190.103.252.0/22 27983 -190.104.0.0/19 27882 -190.104.32.0/20 52363 -190.104.48.0/20 52367 -190.104.64.0/20 52268 -190.104.80.0/21 52442 -190.104.96.0/21 264645 -190.104.104.0/21 52344 -190.104.112.0/24 52362 -190.104.113.0/24 26617 -190.104.114.0/23 52362 -190.104.116.0/24 52362 -190.104.117.0/24 26617 -190.104.118.0/23 52362 -190.104.120.0/21 52362 -190.104.128.0/21 27895 -190.104.136.0/23 27895 -190.104.138.0/24 27895 -190.104.142.0/23 27895 -190.104.144.0/20 27895 -190.104.160.0/19 27895 -190.104.194.0/23 11014 -190.104.196.0/23 11014 -190.104.198.0/24 11014 -190.104.199.0/24 264723 -190.104.200.0/21 11014 -190.104.208.0/20 11014 -190.104.224.0/20 11014 -190.104.241.0/24 11014 -190.104.242.0/23 11014 -190.104.244.0/22 11014 -190.104.248.0/22 11014 -190.104.252.0/23 11014 -190.104.254.0/24 11014 -190.104.255.0/24 267866 -190.105.0.0/17 27984 -190.105.128.0/21 14754 -190.105.144.0/21 20207 -190.105.152.0/22 52337 -190.105.157.0/24 174 -190.105.160.0/22 52307 -190.105.164.0/22 52290 -190.105.168.0/22 263795 -190.105.176.0/21 52308 -190.105.184.0/22 52308 -190.105.188.0/23 52308 -190.105.190.0/24 52308 -190.105.193.0/24 60781 -190.105.194.0/24 36351 -190.105.195.0/24 60781 -190.105.200.0/22 52270 -190.105.204.0/23 52270 -190.105.206.0/24 52270 -190.105.208.0/20 52444 -190.105.224.0/20 52270 -190.105.240.0/20 52278 -190.106.0.0/19 19447 -190.106.32.0/21 263244 -190.106.40.0/21 262230 -190.106.48.0/20 25607 -190.106.64.0/20 28022 -190.106.80.0/21 263764 -190.106.96.0/20 28026 -190.106.112.0/22 262221 -190.106.116.0/23 262221 -190.106.118.0/24 262221 -190.106.119.0/24 30542 -190.106.120.0/21 11815 -190.106.128.0/22 52236 -190.106.132.0/24 52236 -190.106.133.0/24 7303 -190.106.134.0/24 52236 -190.106.135.0/24 7303 -190.106.144.0/24 52236 -190.106.145.0/24 7303 -190.106.146.0/24 52236 -190.106.147.0/24 7303 -190.106.160.0/23 52236 -190.106.192.0/24 262206 -190.106.193.0/24 23243 -190.106.194.0/23 23243 -190.106.196.0/22 23243 -190.106.200.0/21 23243 -190.106.208.0/24 23243 -190.106.209.0/24 52362 -190.106.210.0/24 52362 -190.106.211.0/24 23243 -190.106.212.0/22 23243 -190.106.216.0/23 23243 -190.106.218.0/23 52362 -190.106.220.0/22 52362 -190.106.240.0/20 27839 -190.107.0.0/20 27725 -190.107.16.0/20 27951 -190.107.32.0/19 27839 -190.107.64.0/22 27902 -190.107.68.0/24 27947 -190.107.70.0/23 27902 -190.107.72.0/21 27902 -190.107.81.0/24 263243 -190.107.82.0/23 263243 -190.107.84.0/24 263243 -190.107.96.0/19 28015 -190.107.128.0/19 14754 -190.107.176.0/22 265831 -190.107.180.0/22 22411 -190.107.184.0/21 265748 -190.107.192.0/20 61925 -190.107.208.0/22 52468 -190.107.212.0/22 52339 -190.107.216.0/21 52339 -190.107.224.0/21 52341 -190.107.232.0/21 263245 -190.107.240.0/21 27964 -190.107.248.0/21 28104 -190.108.0.0/19 20255 -190.108.33.0/24 52308 -190.108.34.0/23 52308 -190.108.36.0/24 52308 -190.108.38.0/23 52308 -190.108.40.0/21 52308 -190.108.48.0/21 52308 -190.108.56.0/23 52308 -190.108.58.0/24 52308 -190.108.61.0/24 52308 -190.108.62.0/23 52308 -190.108.64.0/21 27740 -190.108.72.0/22 263246 -190.108.80.0/20 28032 -190.108.96.0/19 262680 -190.108.128.0/18 27680 -190.108.192.0/22 52259 -190.108.196.0/22 52253 -190.108.200.0/21 52253 -190.108.208.0/21 52253 -190.108.216.0/22 265751 -190.108.220.0/22 52395 -190.108.224.0/19 27751 -190.109.32.0/24 262194 -190.109.36.0/22 262194 -190.109.42.0/23 3549 -190.109.44.0/24 3549 -190.109.45.0/24 22927 -190.109.48.0/22 22927 -190.109.52.0/22 7303 -190.109.56.0/22 22927 -190.109.60.0/24 7303 -190.109.61.0/24 262194 -190.109.64.0/22 264228 -190.109.68.0/22 264226 -190.109.72.0/22 264231 -190.109.76.0/22 264227 -190.109.80.0/22 52913 -190.109.84.0/22 22085 -190.109.88.0/22 264230 -190.109.128.0/18 27695 -190.109.192.0/19 23383 -190.109.224.0/19 52495 -190.110.32.0/22 27847 -190.110.36.0/23 27847 -190.110.40.0/23 22724 -190.110.42.0/24 22724 -190.110.48.0/23 22724 -190.110.60.0/24 22724 -190.110.63.0/24 22724 -190.110.86.0/23 28083 -190.110.88.0/21 28083 -190.110.96.0/22 7049 -190.110.100.0/22 11340 -190.110.108.0/22 7049 -190.110.112.0/21 52369 -190.110.120.0/22 262256 -190.110.124.0/23 262256 -190.110.130.0/24 27995 -190.110.135.0/24 27995 -190.110.138.0/23 27995 -190.110.141.0/24 27995 -190.110.148.0/24 27995 -190.110.151.0/24 27995 -190.110.154.0/24 27995 -190.110.158.0/23 27995 -190.110.160.0/20 27901 -190.110.176.0/21 52300 -190.110.184.0/21 52372 -190.110.192.0/19 22724 -190.110.224.0/21 263834 -190.110.232.0/22 263834 -190.110.236.0/23 52312 -190.110.238.0/24 263834 -190.110.239.0/24 20207 -190.110.240.0/21 52312 -190.110.248.0/22 264797 -190.110.252.0/24 264797 -190.111.0.0/24 23243 -190.111.1.0/24 26617 -190.111.2.0/23 26617 -190.111.4.0/22 26617 -190.111.8.0/23 26617 -190.111.10.0/24 26617 -190.111.11.0/24 23243 -190.111.12.0/22 26617 -190.111.16.0/24 26617 -190.111.17.0/24 23243 -190.111.18.0/23 26617 -190.111.20.0/22 26617 -190.111.24.0/24 23243 -190.111.25.0/24 26617 -190.111.26.0/23 26617 -190.111.28.0/24 26617 -190.111.29.0/24 23243 -190.111.30.0/23 27742 -190.111.32.0/20 52347 -190.111.56.0/22 52347 -190.111.60.0/23 52347 -190.111.62.0/24 62490 -190.111.63.0/24 52347 -190.111.64.0/19 23487 -190.111.112.0/23 11514 -190.111.114.0/24 7049 -190.111.115.0/24 262195 -190.111.116.0/23 16814 -190.111.118.0/24 11514 -190.111.119.0/24 262195 -190.111.120.0/22 52285 -190.111.124.0/22 52291 -190.111.192.0/19 11014 -190.111.224.0/21 11014 -190.111.232.0/23 11014 -190.111.234.0/24 11014 -190.111.237.0/24 11014 -190.111.238.0/23 11014 -190.111.240.0/20 11014 -190.112.0.0/19 28111 -190.112.32.0/21 52273 -190.112.40.0/22 52317 -190.112.48.0/22 262213 -190.112.52.0/22 28000 -190.112.56.0/21 52271 -190.112.64.0/18 28048 -190.112.128.0/22 269718 -190.112.136.0/22 269897 -190.112.140.0/23 269708 -190.112.143.0/24 269708 -190.112.148.0/22 269710 -190.112.156.0/22 269712 -190.112.164.0/22 270306 -190.112.172.0/22 270241 -190.112.176.0/20 52363 -190.112.192.0/22 8001 -190.112.196.0/22 52268 -190.112.200.0/23 8001 -190.112.202.0/24 20473 -190.112.203.0/24 8001 -190.112.204.0/22 264592 -190.112.208.0/22 263228 -190.112.212.0/23 263228 -190.112.216.0/22 52465 -190.112.220.0/22 52423 -190.112.224.0/19 52233 -190.113.0.0/19 22860 -190.113.64.0/20 262178 -190.113.80.0/23 14754 -190.113.82.0/24 14754 -190.113.83.0/24 28007 -190.113.84.0/23 263698 -190.113.86.0/24 52476 -190.113.87.0/24 263698 -190.113.88.0/22 264637 -190.113.92.0/22 52455 -190.113.96.0/24 262217 -190.113.97.0/24 52263 -190.113.98.0/23 262217 -190.113.100.0/24 262217 -190.113.101.0/24 52263 -190.113.102.0/23 52263 -190.113.104.0/22 52263 -190.113.108.0/23 52263 -190.113.110.0/24 52263 -190.113.111.0/24 262217 -190.113.112.0/21 52263 -190.113.120.0/23 262217 -190.113.122.0/23 52263 -190.113.124.0/23 262217 -190.113.126.0/23 52263 -190.113.128.0/19 28075 -190.113.160.0/20 28075 -190.113.176.0/21 28075 -190.113.184.0/22 28075 -190.113.188.0/23 28075 -190.113.190.0/24 28075 -190.113.192.0/19 12252 -190.113.224.0/21 262216 -190.113.232.0/22 52388 -190.113.236.0/22 52268 -190.113.240.0/24 30542 -190.113.241.0/24 64249 -190.113.242.0/24 64249 -190.113.244.0/22 52439 -190.113.248.0/22 262241 -190.113.252.0/23 262241 -190.113.255.0/24 262241 -190.114.0.0/24 16626 -190.114.1.0/24 8100 -190.114.2.0/23 8100 -190.114.4.0/22 8100 -190.114.8.0/23 8100 -190.114.24.0/24 8100 -190.114.32.0/19 27901 -190.114.64.0/19 28038 -190.114.96.0/22 263699 -190.114.100.0/23 263699 -190.114.104.0/21 262932 -190.114.128.0/19 52232 -190.114.160.0/22 52232 -190.114.164.0/23 52232 -190.114.167.0/24 52232 -190.114.168.0/21 52232 -190.114.176.0/20 52232 -190.114.192.0/19 27883 -190.114.224.0/21 23201 -190.114.232.0/21 27996 -190.114.240.0/21 28007 -190.114.248.0/22 12252 -190.114.252.0/22 52368 -190.115.0.0/20 52468 -190.115.16.0/20 262254 -190.115.32.0/22 28114 -190.115.36.0/24 28114 -190.115.37.0/24 52468 -190.115.38.0/23 28114 -190.115.40.0/21 28114 -190.115.48.0/20 28114 -190.115.112.0/20 28038 -190.115.128.0/18 52260 -190.115.224.0/19 27650 -190.116.0.0/15 12252 -190.118.128.0/17 12252 -190.119.0.0/16 12252 -190.120.0.0/19 26617 -190.120.48.0/20 27927 -190.120.64.0/21 28025 -190.120.72.0/22 28025 -190.120.76.0/23 28025 -190.120.78.0/24 28025 -190.120.80.0/23 28025 -190.120.83.0/24 28025 -190.120.84.0/22 28025 -190.120.88.0/23 28025 -190.120.90.0/24 28025 -190.120.92.0/22 28025 -190.120.96.0/19 28100 -190.120.128.0/20 27831 -190.120.144.0/20 27927 -190.120.160.0/21 52435 -190.120.168.0/23 52435 -190.120.170.0/24 52435 -190.120.171.0/24 14117 -190.120.172.0/22 52435 -190.120.176.0/20 52409 -190.120.192.0/19 27759 -190.120.240.0/22 262252 -190.120.244.0/22 52436 -190.120.248.0/22 264628 -190.121.0.0/17 14117 -190.121.128.0/20 27951 -190.121.144.0/23 27951 -190.121.146.0/24 27951 -190.121.148.0/22 27951 -190.121.152.0/21 27951 -190.121.160.0/20 23201 -190.121.176.0/20 27751 -190.121.192.0/20 28049 -190.121.209.0/24 20860 -190.121.210.0/24 13213 -190.121.211.0/24 43948 -190.121.212.0/24 60781 -190.121.223.0/24 27762 -190.121.224.0/20 27717 -190.121.240.0/20 27762 -190.122.0.0/19 27964 -190.122.32.0/19 27960 -190.122.64.0/20 27940 -190.122.80.0/21 27988 -190.122.90.0/24 27988 -190.122.92.0/24 27988 -190.122.94.0/24 27988 -190.122.96.0/19 27887 -190.122.128.0/20 27953 -190.122.144.0/20 52354 -190.122.160.0/23 21599 -190.122.162.0/24 18809 -190.122.163.0/24 21599 -190.122.164.0/24 21599 -190.122.165.0/24 18809 -190.122.166.0/24 21599 -190.122.167.0/24 18809 -190.122.168.0/24 18809 -190.122.169.0/24 21599 -190.122.170.0/23 21599 -190.122.172.0/23 18809 -190.122.174.0/24 21599 -190.122.175.0/24 18809 -190.122.176.0/22 266686 -190.122.180.0/22 52436 -190.122.184.0/22 22869 -190.122.188.0/22 263759 -190.122.192.0/20 28066 -190.122.208.0/21 28066 -190.122.216.0/21 263223 -190.122.224.0/20 28068 -190.122.240.0/20 27993 -190.123.0.0/23 27868 -190.123.10.0/23 27868 -190.123.12.0/23 27868 -190.123.16.0/22 52389 -190.123.20.0/22 52391 -190.123.24.0/24 52390 -190.123.25.0/24 264719 -190.123.26.0/24 52390 -190.123.27.0/24 264719 -190.123.28.0/22 264719 -190.123.32.0/21 22724 -190.123.40.0/22 265540 -190.123.48.0/21 28025 -190.123.56.0/24 28025 -190.123.64.0/21 14117 -190.123.72.0/23 14117 -190.123.74.0/24 14117 -190.123.75.0/24 6471 -190.123.76.0/23 6471 -190.123.78.0/23 14117 -190.123.80.0/20 52444 -190.123.96.0/20 27877 -190.123.112.0/21 27877 -190.123.120.0/22 52321 -190.123.128.0/20 28086 -190.123.144.0/20 28073 -190.123.160.0/21 22313 -190.123.168.0/24 22313 -190.123.170.0/23 22313 -190.123.172.0/22 22313 -190.123.176.0/22 22313 -190.123.180.0/24 22313 -190.123.182.0/23 22313 -190.123.184.0/21 22313 -190.123.192.0/22 266253 -190.123.196.0/22 266204 -190.123.200.0/22 266195 -190.123.204.0/22 266214 -190.123.208.0/20 52485 -190.123.224.0/20 27928 -190.123.240.0/20 52486 -190.124.0.0/20 28051 -190.124.16.0/21 262262 -190.124.24.0/23 27678 -190.124.27.0/24 52304 -190.124.28.0/22 61461 -190.124.32.0/21 27742 -190.124.40.0/23 20462 -190.124.42.0/24 20462 -190.124.43.0/24 1435 -190.124.44.0/22 1435 -190.124.56.0/21 265776 -190.124.64.0/19 28118 -190.124.96.0/19 22368 -190.124.128.0/19 28015 -190.124.160.0/22 27932 -190.124.164.0/24 262234 -190.124.165.0/24 27932 -190.124.166.0/23 27932 -190.124.168.0/21 52447 -190.124.176.0/20 263616 -190.124.192.0/20 28109 -190.124.208.0/21 28109 -190.124.216.0/22 27781 -190.124.220.0/22 52253 -190.124.224.0/20 28107 -190.124.240.0/22 28107 -190.124.248.0/22 28110 -190.125.0.0/16 26611 -190.126.0.0/16 26611 -190.127.0.0/17 26611 -190.127.128.0/20 26611 -190.127.192.0/24 26611 -190.127.196.0/24 26611 -190.127.200.0/21 26611 -190.127.208.0/20 26611 -190.127.224.0/21 26611 -190.127.233.0/24 26611 -190.127.234.0/24 26611 -190.127.237.0/24 26611 -190.127.241.0/24 26611 -190.127.249.0/24 26611 -190.127.250.0/23 26611 -190.127.252.0/24 26611 -190.127.254.0/23 26611 -190.128.0.0/17 13489 -190.128.128.0/17 23201 -190.129.0.0/16 6568 -190.130.0.0/18 7727 -190.130.64.0/19 26611 -190.130.96.0/20 26611 -190.130.112.0/24 26611 -190.130.114.0/23 26611 -190.130.116.0/22 26611 -190.130.120.0/22 26611 -190.130.125.0/24 26611 -190.130.128.0/19 27738 -190.130.160.0/22 27738 -190.130.164.0/23 27738 -190.130.166.0/24 27738 -190.130.178.0/23 27738 -190.130.180.0/22 27738 -190.130.184.0/21 27738 -190.130.192.0/18 27738 -190.131.0.0/18 27738 -190.131.64.0/23 27738 -190.131.66.0/24 27738 -190.131.86.0/23 27738 -190.131.88.0/21 27738 -190.131.96.0/19 27738 -190.131.128.0/18 27738 -190.131.192.0/24 262191 -190.131.193.0/24 23520 -190.131.194.0/24 262191 -190.131.195.0/24 61498 -190.131.196.0/22 262191 -190.131.200.0/21 262191 -190.131.208.0/24 262191 -190.131.209.0/24 23520 -190.131.210.0/24 23520 -190.131.211.0/24 262191 -190.131.212.0/22 262191 -190.131.216.0/24 23520 -190.131.217.0/24 262191 -190.131.218.0/23 262191 -190.131.220.0/24 262191 -190.131.221.0/24 23520 -190.131.222.0/24 23520 -190.131.223.0/24 262191 -190.131.224.0/19 262191 -190.132.0.0/14 6057 -190.136.0.0/21 7303 -190.136.8.0/23 7303 -190.136.10.0/24 7303 -190.136.11.0/24 52444 -190.136.12.0/23 7303 -190.136.14.0/24 7303 -190.136.15.0/24 52271 -190.136.16.0/24 52271 -190.136.17.0/24 7303 -190.136.18.0/24 264767 -190.136.19.0/24 7303 -190.136.20.0/22 7303 -190.136.24.0/21 7303 -190.136.32.0/20 7303 -190.136.48.0/22 7303 -190.136.52.0/24 27976 -190.136.53.0/24 7303 -190.136.54.0/23 7303 -190.136.56.0/21 7303 -190.136.64.0/18 7303 -190.136.128.0/17 7303 -190.137.0.0/18 7303 -190.137.64.0/19 7303 -190.137.96.0/20 7303 -190.137.120.0/21 7303 -190.137.128.0/21 7303 -190.137.136.0/22 7303 -190.137.140.0/23 7303 -190.137.142.0/24 52271 -190.137.143.0/24 7303 -190.137.144.0/20 7303 -190.137.160.0/23 7303 -190.137.162.0/23 264642 -190.137.164.0/22 7303 -190.137.168.0/21 7303 -190.137.176.0/20 7303 -190.137.192.0/18 7303 -190.138.0.0/17 7303 -190.138.128.0/18 7303 -190.138.192.0/19 7303 -190.138.224.0/20 7303 -190.138.248.0/21 7303 -190.139.0.0/16 7303 -190.140.0.0/15 18809 -190.142.0.0/17 21826 -190.142.128.0/20 21826 -190.142.144.0/21 21826 -190.142.152.0/22 21826 -190.142.156.0/24 21826 -190.142.158.0/23 21826 -190.142.160.0/21 21826 -190.142.168.0/23 21826 -190.142.171.0/24 21826 -190.142.172.0/22 21826 -190.142.176.0/20 21826 -190.142.192.0/18 21826 -190.143.0.0/21 10620 -190.143.8.0/22 10620 -190.143.14.0/23 10620 -190.143.16.0/20 10620 -190.143.32.0/22 10620 -190.143.38.0/23 10620 -190.143.40.0/21 10620 -190.143.48.0/21 10620 -190.143.58.0/23 10620 -190.143.60.0/22 10620 -190.143.64.0/19 14080 -190.143.96.0/20 14080 -190.143.112.0/21 14080 -190.143.120.0/22 14080 -190.143.124.0/23 14080 -190.143.126.0/24 14080 -190.143.127.0/24 52269 -190.143.128.0/19 13682 -190.143.160.0/20 13682 -190.143.176.0/21 13682 -190.143.184.0/22 13682 -190.143.188.0/22 12127 -190.143.192.0/21 13682 -190.143.200.0/24 12127 -190.143.201.0/24 13682 -190.143.202.0/23 13682 -190.143.204.0/24 13682 -190.143.205.0/24 12127 -190.143.206.0/24 14754 -190.143.207.0/24 12127 -190.143.208.0/24 13682 -190.143.209.0/24 12127 -190.143.210.0/23 12127 -190.143.212.0/22 13682 -190.143.216.0/22 12127 -190.143.220.0/22 13682 -190.143.224.0/20 13682 -190.143.240.0/20 28036 -190.144.0.0/17 14080 -190.144.128.0/18 14080 -190.144.192.0/19 14080 -190.144.224.0/20 14080 -190.144.240.0/21 14080 -190.144.248.0/22 14080 -190.144.252.0/24 14080 -190.144.253.0/24 264714 -190.144.254.0/23 14080 -190.145.0.0/17 14080 -190.145.128.0/18 14080 -190.145.192.0/19 14080 -190.145.224.0/22 14080 -190.145.228.0/23 32787 -190.145.230.0/23 14080 -190.145.232.0/21 14080 -190.145.240.0/20 14080 -190.146.0.0/20 10620 -190.146.16.0/21 10620 -190.146.24.0/23 10620 -190.146.26.0/24 10620 -190.146.28.0/22 10620 -190.146.32.0/24 10620 -190.146.34.0/24 10620 -190.146.36.0/22 10620 -190.146.40.0/23 10620 -190.146.42.0/24 10620 -190.146.45.0/24 10620 -190.146.46.0/23 10620 -190.146.48.0/20 10620 -190.146.64.0/21 10620 -190.146.72.0/22 10620 -190.146.76.0/24 10620 -190.146.78.0/24 10620 -190.146.80.0/20 10620 -190.146.96.0/23 10620 -190.146.100.0/22 10620 -190.146.104.0/21 10620 -190.146.112.0/22 10620 -190.146.116.0/23 10620 -190.146.118.0/24 10620 -190.146.120.0/21 10620 -190.146.128.0/17 10620 -190.147.0.0/18 10620 -190.147.64.0/19 10620 -190.147.96.0/20 10620 -190.147.112.0/21 10620 -190.147.120.0/22 10620 -190.147.124.0/23 10620 -190.147.128.0/21 10620 -190.147.136.0/23 10620 -190.147.138.0/23 14080 -190.147.140.0/22 10620 -190.147.144.0/20 10620 -190.147.160.0/19 10620 -190.147.192.0/19 10620 -190.147.224.0/20 10620 -190.147.241.0/24 10620 -190.147.242.0/24 10620 -190.147.244.0/22 10620 -190.147.248.0/21 10620 -190.148.0.0/15 14754 -190.150.0.0/20 27773 -190.150.16.0/22 27773 -190.150.20.0/23 27773 -190.150.22.0/24 27773 -190.150.24.0/21 27773 -190.150.32.0/20 27773 -190.150.48.0/24 27773 -190.150.50.0/23 27773 -190.150.52.0/22 27773 -190.150.56.0/21 27773 -190.150.64.0/22 27773 -190.150.72.0/21 27773 -190.150.80.0/20 27773 -190.150.96.0/19 27773 -190.150.128.0/18 27773 -190.150.192.0/21 27773 -190.150.200.0/22 27773 -190.150.205.0/24 27773 -190.150.206.0/23 27773 -190.150.208.0/20 27773 -190.150.224.0/20 27773 -190.150.240.0/21 27773 -190.150.248.0/22 27773 -190.150.252.0/23 27773 -190.150.254.0/24 27773 -190.151.0.0/23 6471 -190.151.2.0/24 6471 -190.151.3.0/24 27651 -190.151.4.0/22 6471 -190.151.8.0/21 6471 -190.151.16.0/20 6471 -190.151.32.0/20 6471 -190.151.48.0/21 6471 -190.151.56.0/23 6471 -190.151.58.0/24 3257 -190.151.59.0/24 6471 -190.151.60.0/22 6471 -190.151.64.0/18 6471 -190.151.128.0/22 262207 -190.151.132.0/22 52325 -190.151.136.0/21 52326 -190.151.144.0/20 52339 -190.151.160.0/20 27813 -190.151.176.0/22 27708 -190.151.180.0/24 27708 -190.151.183.0/24 27708 -190.151.184.0/24 27708 -190.151.187.0/24 27708 -190.151.188.0/22 27708 -190.151.192.0/18 13489 -190.152.0.0/20 28006 -190.152.16.0/22 28006 -190.152.21.0/24 28006 -190.152.22.0/23 28006 -190.152.36.0/22 28006 -190.152.40.0/21 28006 -190.152.52.0/22 28006 -190.152.60.0/23 28006 -190.152.62.0/24 28006 -190.152.71.0/24 28006 -190.152.73.0/24 28006 -190.152.74.0/23 28006 -190.152.79.0/24 28006 -190.152.81.0/24 28006 -190.152.83.0/24 28006 -190.152.88.0/23 28006 -190.152.93.0/24 28006 -190.152.98.0/24 28006 -190.152.104.0/22 28006 -190.152.112.0/23 28006 -190.152.114.0/24 28006 -190.152.116.0/22 28006 -190.152.124.0/23 28006 -190.152.127.0/24 28006 -190.152.128.0/22 28006 -190.152.144.0/20 28006 -190.152.160.0/21 28006 -190.152.176.0/20 28006 -190.152.192.0/20 28006 -190.152.208.0/21 28006 -190.152.216.0/23 28006 -190.152.218.0/24 28006 -190.152.220.0/22 28006 -190.152.232.0/22 28006 -190.152.236.0/23 28006 -190.152.244.0/22 28006 -190.152.249.0/24 28006 -190.152.251.0/24 26613 -190.152.252.0/23 26613 -190.152.254.0/24 28006 -190.152.255.0/24 26613 -190.153.0.0/17 11562 -190.153.128.0/20 18822 -190.153.144.0/24 14259 -190.153.145.0/24 18822 -190.153.146.0/23 18822 -190.153.148.0/22 18822 -190.153.152.0/23 18822 -190.153.154.0/23 14259 -190.153.156.0/22 14259 -190.153.160.0/22 14259 -190.153.164.0/23 14259 -190.153.166.0/23 18822 -190.153.168.0/24 18822 -190.153.169.0/24 14259 -190.153.170.0/23 14259 -190.153.172.0/22 14259 -190.153.176.0/20 14259 -190.153.192.0/20 18822 -190.153.208.0/20 14259 -190.153.224.0/19 14259 -190.154.0.0/15 14522 -190.156.0.0/19 10620 -190.156.32.0/20 10620 -190.156.48.0/22 14080 -190.156.52.0/22 10620 -190.156.56.0/22 10620 -190.156.60.0/23 10620 -190.156.63.0/24 10620 -190.156.64.0/18 10620 -190.156.128.0/18 10620 -190.156.192.0/22 10620 -190.156.198.0/23 10620 -190.156.200.0/22 10620 -190.156.204.0/23 10620 -190.156.206.0/23 14080 -190.156.208.0/20 10620 -190.156.224.0/24 10620 -190.156.226.0/23 10620 -190.156.228.0/22 10620 -190.156.232.0/21 10620 -190.156.240.0/20 10620 -190.157.0.0/24 14080 -190.157.2.0/23 10620 -190.157.4.0/23 10620 -190.157.6.0/24 10620 -190.157.8.0/21 10620 -190.157.16.0/21 10620 -190.157.26.0/23 10620 -190.157.28.0/22 10620 -190.157.32.0/19 10620 -190.157.64.0/19 10620 -190.157.96.0/21 10620 -190.157.104.0/23 10620 -190.157.108.0/22 10620 -190.157.112.0/20 10620 -190.157.128.0/20 10620 -190.157.144.0/21 10620 -190.157.155.0/24 10620 -190.157.156.0/22 10620 -190.157.160.0/19 10620 -190.157.192.0/18 10620 -190.158.0.0/19 10620 -190.158.36.0/22 10620 -190.158.40.0/21 10620 -190.158.48.0/20 10620 -190.158.64.0/18 10620 -190.158.128.0/21 10620 -190.158.136.0/22 10620 -190.158.140.0/23 10620 -190.158.142.0/24 10620 -190.158.143.0/24 14080 -190.158.144.0/23 10620 -190.158.148.0/22 10620 -190.158.152.0/21 10620 -190.158.160.0/20 10620 -190.158.180.0/22 10620 -190.158.184.0/21 10620 -190.158.192.0/19 10620 -190.158.224.0/20 10620 -190.158.240.0/21 10620 -190.158.248.0/24 10620 -190.158.250.0/23 10620 -190.158.252.0/22 10620 -190.159.0.0/22 10620 -190.159.5.0/24 10620 -190.159.6.0/23 10620 -190.159.8.0/21 10620 -190.159.16.0/20 10620 -190.159.32.0/19 10620 -190.159.65.0/24 10620 -190.159.66.0/23 10620 -190.159.68.0/22 10620 -190.159.72.0/21 10620 -190.159.80.0/22 10620 -190.159.88.0/21 10620 -190.159.96.0/20 10620 -190.159.116.0/22 10620 -190.159.120.0/21 10620 -190.159.128.0/18 10620 -190.159.192.0/19 10620 -190.159.224.0/21 10620 -190.159.232.0/22 10620 -190.159.238.0/23 10620 -190.159.240.0/20 10620 -190.160.0.0/14 22047 -190.164.0.0/16 22047 -190.165.0.0/16 13489 -190.166.0.0/15 6400 -190.168.0.0/17 23007 -190.168.128.0/18 27890 -190.168.192.0/18 27891 -190.169.0.0/16 19192 -190.170.64.0/18 27893 -190.170.128.0/18 27771 -190.170.192.0/18 20312 -190.171.0.0/24 3790 -190.171.1.0/24 11830 -190.171.2.0/24 11830 -190.171.3.0/24 3790 -190.171.4.0/22 3790 -190.171.8.0/23 3790 -190.171.10.0/23 11830 -190.171.12.0/22 11830 -190.171.16.0/22 3790 -190.171.20.0/23 11830 -190.171.22.0/23 3790 -190.171.24.0/22 3790 -190.171.28.0/24 3790 -190.171.29.0/24 11830 -190.171.30.0/23 11830 -190.171.32.0/19 3790 -190.171.96.0/22 262217 -190.171.100.0/23 262217 -190.171.102.0/24 52263 -190.171.103.0/24 262217 -190.171.104.0/23 52263 -190.171.106.0/24 52263 -190.171.107.0/24 262217 -190.171.108.0/22 52263 -190.171.112.0/23 52263 -190.171.114.0/24 52263 -190.171.115.0/24 262217 -190.171.116.0/22 52263 -190.171.120.0/24 52263 -190.171.121.0/24 262217 -190.171.122.0/23 52263 -190.171.124.0/24 262217 -190.171.125.0/24 52263 -190.171.126.0/24 262217 -190.171.127.0/24 52263 -190.171.128.0/18 16629 -190.171.192.0/18 25620 -190.172.0.0/14 22927 -190.176.0.0/14 22927 -190.180.0.0/17 25620 -190.180.128.0/20 52930 -190.180.144.0/22 11750 -190.180.148.0/22 263255 -190.180.152.0/22 265634 -190.180.160.0/19 52993 -190.180.192.0/18 52489 -190.181.0.0/21 26210 -190.181.8.0/23 26210 -190.181.11.0/24 26210 -190.181.12.0/23 26210 -190.181.15.0/24 26210 -190.181.16.0/20 26210 -190.181.32.0/19 26210 -190.181.64.0/18 52251 -190.181.128.0/18 52242 -190.181.192.0/18 20299 -190.182.0.0/20 8163 -190.182.16.0/23 8163 -190.182.18.0/24 8163 -190.182.20.0/22 8163 -190.182.24.0/21 8163 -190.182.32.0/19 8163 -190.182.64.0/20 8163 -190.182.80.0/21 8163 -190.182.88.0/22 8163 -190.182.93.0/24 8163 -190.182.94.0/23 8163 -190.182.96.0/19 8163 -190.182.128.0/22 27983 -190.182.132.0/23 27983 -190.182.134.0/24 27983 -190.182.136.0/21 27983 -190.182.145.0/24 27983 -190.182.146.0/23 27983 -190.182.148.0/22 27983 -190.182.152.0/23 27983 -190.182.154.0/24 27983 -190.182.160.0/21 27983 -190.182.168.0/24 27983 -190.182.175.0/24 27983 -190.182.176.0/23 61518 -190.182.178.0/24 61518 -190.182.179.0/24 27983 -190.182.180.0/22 27983 -190.182.184.0/23 27983 -190.182.187.0/24 27983 -190.182.188.0/24 27983 -190.182.190.0/24 61518 -190.182.192.0/20 27983 -190.182.208.0/22 27983 -190.182.212.0/23 27983 -190.182.216.0/22 27983 -190.182.224.0/22 27983 -190.182.228.0/23 27983 -190.182.230.0/24 27983 -190.182.232.0/21 27983 -190.182.242.0/24 27983 -190.182.248.0/23 27983 -190.182.250.0/23 265719 -190.182.252.0/23 27983 -190.183.0.0/16 20207 -190.184.0.0/19 27761 -190.184.32.0/23 27761 -190.184.34.0/23 14754 -190.184.36.0/22 27761 -190.184.40.0/21 27761 -190.184.48.0/23 27761 -190.184.50.0/24 27761 -190.184.51.0/24 14754 -190.184.52.0/22 27761 -190.184.56.0/24 14754 -190.184.57.0/24 27761 -190.184.58.0/24 14754 -190.184.59.0/24 27761 -190.184.60.0/24 14754 -190.184.61.0/24 27761 -190.184.62.0/23 27761 -190.184.64.0/21 27761 -190.184.72.0/22 27761 -190.184.76.0/24 27761 -190.184.77.0/24 14754 -190.184.78.0/24 14754 -190.184.79.0/24 27761 -190.184.80.0/24 14754 -190.184.81.0/24 27761 -190.184.82.0/23 27761 -190.184.84.0/23 27761 -190.184.86.0/24 27761 -190.184.87.0/24 14754 -190.184.88.0/24 14754 -190.184.89.0/24 27761 -190.184.90.0/23 27761 -190.184.92.0/22 27761 -190.184.96.0/19 27761 -190.184.128.0/18 22368 -190.184.192.0/22 52290 -190.184.196.0/22 28110 -190.184.200.0/21 52330 -190.184.208.0/21 61510 -190.184.220.0/22 52307 -190.184.224.0/21 52369 -190.184.232.0/24 52369 -190.184.234.0/23 52369 -190.184.236.0/22 52369 -190.184.240.0/20 262196 -190.185.56.0/21 262181 -190.185.64.0/19 262181 -190.185.96.0/22 30361 -190.185.100.0/23 262222 -190.185.102.0/24 262222 -190.185.104.0/22 52438 -190.185.108.0/22 52393 -190.185.112.0/24 27932 -190.185.113.0/24 262234 -190.185.114.0/23 262234 -190.185.116.0/22 27932 -190.185.120.0/21 27932 -190.185.128.0/22 27983 -190.185.132.0/23 27983 -190.185.138.0/24 27983 -190.185.140.0/23 27983 -190.185.144.0/24 27983 -190.185.146.0/23 27983 -190.185.148.0/22 27983 -190.185.152.0/21 27983 -190.185.160.0/20 27983 -190.185.178.0/23 27983 -190.185.180.0/22 27983 -190.185.184.0/22 27983 -190.185.190.0/23 27983 -190.185.192.0/23 27983 -190.185.199.0/24 27983 -190.185.200.0/22 27983 -190.185.204.0/24 7303 -190.185.206.0/23 27983 -190.185.208.0/24 27983 -190.185.211.0/24 27983 -190.185.214.0/23 27983 -190.185.216.0/22 27983 -190.185.222.0/23 27983 -190.185.224.0/22 27983 -190.185.228.0/23 27983 -190.185.230.0/24 27983 -190.185.232.0/21 27983 -190.185.240.0/20 27983 -190.186.0.0/16 25620 -190.187.0.0/17 19180 -190.187.128.0/18 19180 -190.187.192.0/19 19180 -190.187.224.0/20 19180 -190.187.240.0/21 19180 -190.187.248.0/22 19180 -190.187.252.0/23 19180 -190.187.254.0/24 19180 -190.187.255.0/24 27855 -190.188.0.0/14 10481 -190.192.0.0/14 10481 -190.196.0.0/20 14259 -190.196.16.0/21 14259 -190.196.24.0/22 18822 -190.196.28.0/24 18822 -190.196.29.0/24 14259 -190.196.30.0/23 14259 -190.196.32.0/24 14259 -190.196.33.0/24 18822 -190.196.34.0/24 28044 -190.196.35.0/24 18822 -190.196.36.0/22 18822 -190.196.40.0/21 18822 -190.196.48.0/21 18822 -190.196.56.0/22 14259 -190.196.60.0/24 18822 -190.196.61.0/24 14259 -190.196.62.0/24 18822 -190.196.63.0/24 14259 -190.196.64.0/21 14259 -190.196.72.0/23 14259 -190.196.74.0/23 18822 -190.196.76.0/24 18822 -190.196.77.0/24 14259 -190.196.78.0/23 14259 -190.196.80.0/20 18822 -190.196.96.0/21 18822 -190.196.104.0/22 18822 -190.196.108.0/22 14259 -190.196.112.0/21 18822 -190.196.120.0/22 14259 -190.196.124.0/24 14259 -190.196.128.0/22 14259 -190.196.132.0/23 14259 -190.196.134.0/23 18822 -190.196.136.0/24 14259 -190.196.137.0/24 18822 -190.196.138.0/24 18822 -190.196.139.0/24 14259 -190.196.140.0/23 18822 -190.196.142.0/24 18822 -190.196.143.0/24 14259 -190.196.144.0/24 18822 -190.196.145.0/24 14259 -190.196.146.0/23 14259 -190.196.148.0/22 18822 -190.196.152.0/22 14259 -190.196.156.0/23 14259 -190.196.158.0/24 14259 -190.196.159.0/24 18822 -190.196.160.0/21 14259 -190.196.168.0/21 18822 -190.196.176.0/23 14259 -190.196.178.0/24 18822 -190.196.179.0/24 14259 -190.196.180.0/24 18822 -190.196.181.0/24 14259 -190.196.182.0/24 14259 -190.196.183.0/24 18822 -190.196.184.0/23 14259 -190.196.186.0/24 14259 -190.196.187.0/24 18822 -190.196.188.0/24 18822 -190.196.189.0/24 14259 -190.196.190.0/23 14259 -190.196.192.0/20 27759 -190.196.208.0/20 262237 -190.196.224.0/20 27964 -190.196.240.0/22 266153 -190.196.244.0/23 266176 -190.196.248.0/24 52484 -190.196.255.0/24 52484 -190.197.0.0/17 10269 -190.198.0.0/16 8048 -190.199.32.0/19 8048 -190.199.64.0/18 8048 -190.199.128.0/17 8048 -190.200.0.0/17 8048 -190.200.128.0/18 8048 -190.200.224.0/19 8048 -190.201.0.0/16 8048 -190.202.0.0/19 8048 -190.202.32.0/21 8048 -190.202.40.0/22 8048 -190.202.44.0/23 8048 -190.202.46.0/24 8048 -190.202.47.0/24 28012 -190.202.48.0/20 8048 -190.202.64.0/18 8048 -190.202.128.0/22 8048 -190.202.132.0/23 8048 -190.202.144.0/21 8048 -190.202.160.0/19 8048 -190.202.192.0/18 8048 -190.203.0.0/16 8048 -190.204.0.0/14 8048 -190.208.0.0/21 6429 -190.208.8.0/24 263173 -190.208.9.0/24 6429 -190.208.10.0/23 6429 -190.208.12.0/22 6429 -190.208.16.0/20 6429 -190.208.32.0/19 6429 -190.208.64.0/18 6535 -190.208.128.0/17 6535 -190.209.0.0/16 6535 -190.210.0.0/19 16814 -190.210.32.0/20 16814 -190.210.48.0/22 16814 -190.210.52.0/23 16814 -190.210.54.0/24 28035 -190.210.55.0/24 16814 -190.210.56.0/21 16814 -190.210.64.0/18 16814 -190.210.128.0/18 16814 -190.210.192.0/21 16814 -190.210.200.0/22 16814 -190.210.204.0/23 16814 -190.210.206.0/24 262264 -190.210.207.0/24 16814 -190.210.208.0/21 16814 -190.210.216.0/22 16814 -190.210.220.0/24 27730 -190.210.221.0/24 16814 -190.210.222.0/23 16814 -190.210.224.0/19 16814 -190.211.0.0/18 14117 -190.211.64.0/20 52328 -190.211.80.0/21 262187 -190.211.88.0/24 262187 -190.211.90.0/23 262187 -190.211.92.0/22 262184 -190.211.96.0/19 262145 -190.211.128.0/22 27953 -190.211.134.0/23 27953 -190.211.136.0/22 27884 -190.211.140.0/22 264659 -190.211.144.0/24 262170 -190.211.145.0/24 262239 -190.211.146.0/23 262239 -190.211.148.0/24 262239 -190.211.149.0/24 262170 -190.211.150.0/23 262170 -190.211.152.0/21 52292 -190.211.160.0/22 52280 -190.211.167.0/24 52280 -190.211.168.0/23 52280 -190.211.173.0/24 52280 -190.211.174.0/23 52280 -190.211.176.0/20 267853 -190.211.192.0/19 27833 -190.211.224.0/20 262159 -190.211.240.0/22 28103 -190.211.244.0/22 52295 -190.211.248.0/24 7049 -190.211.250.0/23 7049 -190.211.252.0/23 51852 -190.211.254.0/24 51852 -190.212.0.0/17 14754 -190.212.128.0/21 27761 -190.212.136.0/22 27761 -190.212.140.0/24 27761 -190.212.141.0/24 14754 -190.212.142.0/24 14754 -190.212.143.0/24 27761 -190.212.144.0/20 27761 -190.212.160.0/23 14754 -190.212.162.0/24 27761 -190.212.163.0/24 14754 -190.212.164.0/24 14754 -190.212.165.0/24 27761 -190.212.166.0/23 27761 -190.212.168.0/21 27761 -190.212.176.0/23 27761 -190.212.178.0/24 27761 -190.212.179.0/24 14754 -190.212.180.0/23 14754 -190.212.182.0/23 27761 -190.212.184.0/21 27761 -190.212.192.0/18 14754 -190.213.0.0/16 27665 -190.214.0.0/23 28006 -190.214.8.0/21 28006 -190.214.16.0/20 28006 -190.214.36.0/23 28006 -190.214.39.0/24 28006 -190.214.40.0/21 28006 -190.214.48.0/20 28006 -190.214.72.0/22 28006 -190.214.76.0/22 27948 -190.214.120.0/22 28006 -190.214.216.0/24 27948 -190.214.246.0/24 28006 -190.214.249.0/24 28006 -190.214.250.0/23 28006 -190.214.252.0/23 26613 -190.214.254.0/24 28006 -190.215.0.0/20 18822 -190.215.16.0/22 18822 -190.215.20.0/24 14259 -190.215.21.0/24 18822 -190.215.22.0/23 18822 -190.215.24.0/21 18822 -190.215.32.0/21 14259 -190.215.40.0/23 14259 -190.215.42.0/24 18822 -190.215.43.0/24 14259 -190.215.44.0/22 14259 -190.215.48.0/23 14259 -190.215.50.0/24 14259 -190.215.51.0/24 52479 -190.215.52.0/23 18822 -190.215.54.0/24 18822 -190.215.55.0/24 14259 -190.215.56.0/23 14259 -190.215.58.0/23 18822 -190.215.60.0/22 18822 -190.215.64.0/21 18822 -190.215.72.0/21 14259 -190.215.80.0/20 18822 -190.215.96.0/21 18822 -190.215.104.0/22 14259 -190.215.108.0/24 18822 -190.215.109.0/24 14259 -190.215.110.0/23 14259 -190.215.112.0/21 14259 -190.215.120.0/21 18822 -190.215.128.0/19 18822 -190.215.160.0/21 14259 -190.215.168.0/21 18822 -190.215.176.0/20 18822 -190.215.192.0/19 14259 -190.215.224.0/19 18822 -190.216.0.0/23 10753 -190.216.2.0/23 3549 -190.216.4.0/22 3549 -190.216.8.0/21 3549 -190.216.16.0/23 3549 -190.216.18.0/24 20207 -190.216.19.0/24 3549 -190.216.20.0/22 10753 -190.216.24.0/24 20207 -190.216.25.0/24 10753 -190.216.26.0/23 3549 -190.216.28.0/22 3549 -190.216.32.0/24 262187 -190.216.33.0/24 3549 -190.216.34.0/24 3549 -190.216.35.0/24 10753 -190.216.36.0/22 3549 -190.216.40.0/22 3549 -190.216.44.0/23 10753 -190.216.46.0/24 10753 -190.216.47.0/24 3549 -190.216.48.0/21 3549 -190.216.56.0/24 265758 -190.216.57.0/24 3549 -190.216.58.0/23 3549 -190.216.60.0/24 3549 -190.216.61.0/24 52444 -190.216.62.0/23 3549 -190.216.64.0/19 3549 -190.216.96.0/20 3549 -190.216.112.0/21 3549 -190.216.120.0/24 3549 -190.216.121.0/24 32590 -190.216.122.0/23 3549 -190.216.124.0/22 3549 -190.216.128.0/22 3549 -190.216.132.0/24 10753 -190.216.133.0/24 3549 -190.216.134.0/23 3549 -190.216.136.0/21 3549 -190.216.144.0/20 3549 -190.216.160.0/19 3549 -190.216.192.0/20 3549 -190.216.208.0/23 3549 -190.216.210.0/24 3549 -190.216.211.0/24 27998 -190.216.212.0/22 3549 -190.216.216.0/22 3549 -190.216.220.0/24 3549 -190.216.221.0/24 28097 -190.216.222.0/23 3549 -190.216.224.0/20 3549 -190.216.240.0/24 263223 -190.216.241.0/24 263771 -190.216.242.0/23 3549 -190.216.244.0/24 263771 -190.216.245.0/24 263223 -190.216.246.0/23 3549 -190.216.248.0/24 28012 -190.216.249.0/24 263223 -190.216.250.0/24 3549 -190.216.251.0/24 263771 -190.216.252.0/24 263223 -190.216.253.0/24 263771 -190.216.254.0/24 263771 -190.216.255.0/24 3549 -190.217.0.0/24 3549 -190.217.1.0/24 269832 -190.217.2.0/24 28012 -190.217.3.0/24 3549 -190.217.4.0/22 3549 -190.217.8.0/24 3549 -190.217.9.0/24 269832 -190.217.10.0/24 3549 -190.217.11.0/24 269832 -190.217.12.0/22 3549 -190.217.16.0/21 3549 -190.217.24.0/24 10753 -190.217.25.0/24 3549 -190.217.26.0/23 3549 -190.217.28.0/22 3549 -190.217.32.0/24 3549 -190.217.33.0/24 32590 -190.217.34.0/23 3549 -190.217.36.0/22 3549 -190.217.40.0/21 3549 -190.217.48.0/20 3549 -190.217.64.0/21 3549 -190.217.80.0/22 3549 -190.217.96.0/20 3549 -190.217.112.0/22 3549 -190.217.116.0/24 27951 -190.217.117.0/24 3549 -190.217.118.0/23 3549 -190.217.120.0/24 3549 -190.217.121.0/24 262217 -190.217.122.0/23 3549 -190.217.124.0/22 3549 -190.217.128.0/17 14117 -190.218.0.0/15 18809 -190.220.0.0/22 19037 -190.220.4.0/24 19037 -190.220.5.0/24 52319 -190.220.6.0/23 19037 -190.220.8.0/22 19037 -190.220.12.0/23 19037 -190.220.14.0/24 19037 -190.220.15.0/24 11664 -190.220.16.0/20 19037 -190.220.32.0/22 19037 -190.220.36.0/24 19037 -190.220.37.0/24 11664 -190.220.38.0/23 11664 -190.220.40.0/24 19037 -190.220.41.0/24 11664 -190.220.42.0/23 11664 -190.220.44.0/24 11664 -190.220.45.0/24 19037 -190.220.46.0/24 11664 -190.220.47.0/24 19037 -190.220.48.0/24 11664 -190.220.49.0/24 19037 -190.220.50.0/23 11664 -190.220.52.0/22 11664 -190.220.56.0/23 11664 -190.220.58.0/24 11664 -190.220.59.0/24 19037 -190.220.60.0/24 11664 -190.220.61.0/24 19037 -190.220.62.0/24 11664 -190.220.63.0/24 19037 -190.220.64.0/22 11664 -190.220.68.0/23 11664 -190.220.70.0/24 11664 -190.220.71.0/24 19037 -190.220.72.0/22 11664 -190.220.76.0/23 11664 -190.220.78.0/24 11664 -190.220.79.0/24 19037 -190.220.80.0/24 11664 -190.220.81.0/24 19037 -190.220.82.0/23 11664 -190.220.84.0/22 11664 -190.220.88.0/23 11664 -190.220.90.0/24 11664 -190.220.91.0/24 19037 -190.220.92.0/24 11664 -190.220.93.0/24 19037 -190.220.94.0/24 11664 -190.220.95.0/24 19037 -190.220.96.0/22 11664 -190.220.100.0/23 11664 -190.220.102.0/24 19037 -190.220.103.0/24 11664 -190.220.104.0/23 11664 -190.220.106.0/24 19037 -190.220.107.0/24 11664 -190.220.108.0/22 11664 -190.220.112.0/23 11664 -190.220.114.0/24 11664 -190.220.115.0/24 19037 -190.220.116.0/24 19037 -190.220.117.0/24 11664 -190.220.118.0/23 11664 -190.220.120.0/24 11664 -190.220.121.0/24 19037 -190.220.122.0/24 11664 -190.220.123.0/24 19037 -190.220.124.0/23 11664 -190.220.126.0/24 19037 -190.220.127.0/24 11664 -190.220.128.0/24 11664 -190.220.129.0/24 19037 -190.220.130.0/23 19037 -190.220.132.0/22 19037 -190.220.136.0/21 19037 -190.220.144.0/23 19037 -190.220.146.0/24 11664 -190.220.147.0/24 19037 -190.220.148.0/22 19037 -190.220.152.0/24 19037 -190.220.153.0/24 266708 -190.220.154.0/23 19037 -190.220.156.0/22 19037 -190.220.160.0/24 19037 -190.220.161.0/24 11664 -190.220.162.0/23 11664 -190.220.164.0/23 11664 -190.220.166.0/23 19037 -190.220.168.0/22 19037 -190.220.172.0/23 11664 -190.220.174.0/23 19037 -190.220.176.0/21 19037 -190.220.184.0/22 19037 -190.220.188.0/23 11664 -190.220.190.0/23 19037 -190.220.192.0/22 11664 -190.220.196.0/23 11664 -190.220.198.0/23 19037 -190.220.200.0/23 11664 -190.220.202.0/23 19037 -190.220.204.0/24 19037 -190.220.205.0/24 11664 -190.220.206.0/24 19037 -190.220.207.0/24 11664 -190.220.208.0/23 19037 -190.220.210.0/23 11664 -190.220.212.0/24 19037 -190.220.213.0/24 11664 -190.220.214.0/23 11664 -190.220.216.0/24 19037 -190.220.217.0/24 11664 -190.220.218.0/23 11664 -190.220.220.0/23 19037 -190.220.222.0/24 19037 -190.220.223.0/24 11664 -190.220.224.0/23 19037 -190.220.226.0/24 11664 -190.220.227.0/24 19037 -190.220.228.0/22 19037 -190.220.232.0/23 19037 -190.220.234.0/24 11664 -190.220.235.0/24 19037 -190.220.236.0/22 19037 -190.220.240.0/23 19037 -190.220.242.0/24 19037 -190.220.243.0/24 11664 -190.220.244.0/23 11664 -190.220.246.0/24 11664 -190.220.247.0/24 19037 -190.220.248.0/21 19037 -190.221.0.0/22 11664 -190.221.4.0/23 11664 -190.221.6.0/24 11664 -190.221.7.0/24 19037 -190.221.8.0/23 19037 -190.221.10.0/24 11664 -190.221.11.0/24 19037 -190.221.12.0/23 19037 -190.221.14.0/24 11664 -190.221.15.0/24 19037 -190.221.16.0/23 19037 -190.221.18.0/24 11664 -190.221.19.0/24 19037 -190.221.20.0/22 19037 -190.221.24.0/22 19037 -190.221.28.0/24 11664 -190.221.29.0/24 19037 -190.221.30.0/23 19037 -190.221.32.0/22 19037 -190.221.36.0/24 19037 -190.221.37.0/24 11664 -190.221.38.0/23 11664 -190.221.40.0/24 19037 -190.221.41.0/24 11664 -190.221.42.0/23 11664 -190.221.44.0/23 19037 -190.221.46.0/24 19037 -190.221.47.0/24 11664 -190.221.48.0/21 19037 -190.221.56.0/23 19037 -190.221.58.0/24 52299 -190.221.59.0/24 11664 -190.221.60.0/22 19037 -190.221.64.0/23 11664 -190.221.66.0/24 19037 -190.221.67.0/24 11664 -190.221.68.0/23 11664 -190.221.70.0/23 19037 -190.221.72.0/22 11664 -190.221.76.0/24 11664 -190.221.77.0/24 19037 -190.221.78.0/23 11664 -190.221.80.0/23 19037 -190.221.82.0/23 11664 -190.221.84.0/22 11664 -190.221.88.0/23 19037 -190.221.90.0/23 11664 -190.221.92.0/22 11664 -190.221.96.0/21 19037 -190.221.104.0/22 19037 -190.221.108.0/23 11664 -190.221.110.0/23 19037 -190.221.112.0/21 19037 -190.221.120.0/24 19037 -190.221.121.0/24 11664 -190.221.122.0/23 19037 -190.221.124.0/24 11664 -190.221.125.0/24 19037 -190.221.126.0/23 11664 -190.221.128.0/22 19037 -190.221.132.0/23 11664 -190.221.134.0/23 19037 -190.221.136.0/24 11664 -190.221.137.0/24 19037 -190.221.138.0/23 19037 -190.221.140.0/22 19037 -190.221.144.0/24 52277 -190.221.145.0/24 19037 -190.221.146.0/23 19037 -190.221.148.0/22 19037 -190.221.152.0/21 19037 -190.221.160.0/21 19037 -190.221.168.0/22 19037 -190.221.172.0/24 11664 -190.221.173.0/24 19037 -190.221.174.0/23 19037 -190.221.176.0/21 19037 -190.221.184.0/22 19037 -190.221.188.0/24 19037 -190.221.189.0/24 3356 -190.221.190.0/23 19037 -190.221.192.0/23 19037 -190.221.194.0/24 11664 -190.221.195.0/24 19037 -190.221.196.0/22 19037 -190.221.200.0/22 19037 -190.221.204.0/23 11664 -190.221.206.0/23 19037 -190.221.208.0/22 19037 -190.221.212.0/23 19037 -190.221.214.0/23 11664 -190.221.216.0/24 19037 -190.221.217.0/24 11664 -190.221.218.0/23 19037 -190.221.220.0/22 11664 -190.221.224.0/24 19037 -190.221.225.0/24 11664 -190.221.226.0/24 11664 -190.221.227.0/24 19037 -190.221.228.0/24 11664 -190.221.229.0/24 19037 -190.221.230.0/23 19037 -190.221.232.0/24 19037 -190.221.233.0/24 11664 -190.221.234.0/23 19037 -190.221.236.0/22 19037 -190.221.240.0/24 19037 -190.221.241.0/24 11664 -190.221.242.0/24 19037 -190.221.243.0/24 11664 -190.221.244.0/23 19037 -190.221.246.0/24 11664 -190.221.247.0/24 19037 -190.221.248.0/21 19037 -190.222.0.0/15 12252 -190.224.16.0/21 7303 -190.224.32.0/21 7303 -190.224.40.0/22 7303 -190.224.44.0/24 262194 -190.224.45.0/24 7303 -190.224.46.0/23 7303 -190.224.48.0/20 7303 -190.224.64.0/18 7303 -190.224.128.0/19 7303 -190.224.160.0/22 7303 -190.224.168.0/21 7303 -190.224.184.0/21 7303 -190.224.196.0/22 7303 -190.224.200.0/21 7303 -190.224.208.0/20 7303 -190.224.224.0/19 7303 -190.225.0.0/17 7303 -190.225.128.0/19 7303 -190.225.160.0/24 263198 -190.225.161.0/24 7303 -190.225.162.0/23 7303 -190.225.164.0/24 52323 -190.225.165.0/24 7303 -190.225.166.0/23 7303 -190.225.168.0/21 7303 -190.225.176.0/20 7303 -190.225.192.0/19 7303 -190.225.224.0/20 7303 -190.225.240.0/21 7303 -190.226.0.0/19 7303 -190.226.32.0/24 52371 -190.226.33.0/24 7303 -190.226.34.0/23 7303 -190.226.36.0/22 7303 -190.226.40.0/21 7303 -190.226.48.0/20 7303 -190.226.64.0/18 7303 -190.226.128.0/19 7303 -190.226.176.0/20 7303 -190.226.192.0/19 7303 -190.226.224.0/20 7303 -190.226.240.0/21 264691 -190.226.248.0/24 264691 -190.226.249.0/24 7303 -190.226.250.0/23 7303 -190.226.252.0/22 7303 -190.227.8.0/22 7303 -190.227.12.0/24 27787 -190.227.13.0/24 7303 -190.227.14.0/23 7303 -190.227.16.0/20 7303 -190.227.32.0/19 7303 -190.227.64.0/18 7303 -190.227.128.0/21 7303 -190.227.152.0/21 7303 -190.227.160.0/24 265663 -190.227.161.0/24 7303 -190.227.162.0/23 7303 -190.227.164.0/22 7303 -190.227.168.0/21 7303 -190.227.176.0/22 7303 -190.227.180.0/24 7303 -190.227.181.0/24 264742 -190.227.182.0/23 27813 -190.227.184.0/21 7303 -190.227.208.0/21 7303 -190.227.248.0/21 7303 -190.228.0.0/20 7303 -190.228.16.0/22 7303 -190.228.20.0/23 7303 -190.228.22.0/24 7303 -190.228.23.0/24 263808 -190.228.24.0/21 7303 -190.228.32.0/21 7303 -190.228.40.0/23 7303 -190.228.42.0/23 264642 -190.228.44.0/22 7303 -190.228.48.0/21 7303 -190.228.64.0/23 264642 -190.228.66.0/23 7303 -190.228.68.0/22 7303 -190.228.72.0/24 7303 -190.228.73.0/24 264767 -190.228.74.0/24 264767 -190.228.75.0/24 7303 -190.228.76.0/22 7303 -190.228.80.0/21 7303 -190.228.88.0/22 264642 -190.228.92.0/24 7303 -190.228.93.0/24 264642 -190.228.94.0/24 264642 -190.228.95.0/24 7303 -190.228.96.0/23 7303 -190.228.98.0/24 7303 -190.228.99.0/24 264767 -190.228.100.0/24 264767 -190.228.101.0/24 7303 -190.228.102.0/23 7303 -190.228.104.0/21 7303 -190.228.112.0/23 7303 -190.228.114.0/24 7303 -190.228.115.0/24 264642 -190.228.116.0/23 264642 -190.228.118.0/23 7303 -190.228.120.0/22 7303 -190.228.124.0/23 7303 -190.228.126.0/24 264767 -190.228.127.0/24 7303 -190.228.128.0/22 7303 -190.228.132.0/24 264767 -190.228.133.0/24 7303 -190.228.134.0/23 7303 -190.228.136.0/21 7303 -190.228.144.0/20 7303 -190.228.160.0/22 7303 -190.228.164.0/24 7303 -190.228.165.0/24 264642 -190.228.166.0/23 264642 -190.228.168.0/24 7303 -190.228.169.0/24 64099 -190.228.170.0/23 7303 -190.228.172.0/22 7303 -190.228.177.0/24 265686 -190.228.200.0/21 7303 -190.228.208.0/20 7303 -190.228.224.0/19 7303 -190.229.0.0/19 7303 -190.229.32.0/20 7303 -190.229.56.0/21 7303 -190.229.64.0/18 7303 -190.229.128.0/17 7303 -190.230.0.0/18 7303 -190.230.64.0/19 7303 -190.230.104.0/21 7303 -190.230.112.0/20 7303 -190.230.128.0/17 7303 -190.231.8.0/21 7303 -190.231.16.0/20 7303 -190.231.32.0/19 7303 -190.231.64.0/18 7303 -190.231.128.0/17 7303 -190.232.0.0/13 6147 -190.240.0.0/16 13489 -190.241.0.0/22 3790 -190.241.4.0/23 3790 -190.241.6.0/24 3790 -190.241.7.0/24 11830 -190.241.8.0/23 3790 -190.241.10.0/24 11830 -190.241.11.0/24 3790 -190.241.12.0/22 3790 -190.241.16.0/24 11830 -190.241.17.0/24 3790 -190.241.18.0/23 3790 -190.241.20.0/22 3790 -190.241.24.0/22 3790 -190.241.28.0/23 3790 -190.241.30.0/24 3790 -190.241.31.0/24 11830 -190.241.32.0/19 3790 -190.241.64.0/21 3790 -190.241.72.0/24 3790 -190.241.73.0/24 11830 -190.241.74.0/23 11830 -190.241.76.0/24 11830 -190.241.77.0/24 3790 -190.241.78.0/23 3790 -190.241.80.0/20 3790 -190.241.96.0/20 3790 -190.241.112.0/22 3790 -190.241.116.0/24 3790 -190.241.117.0/24 11830 -190.241.118.0/24 11830 -190.241.119.0/24 3790 -190.241.120.0/24 11830 -190.241.121.0/24 3790 -190.241.122.0/23 3790 -190.241.124.0/23 11830 -190.241.126.0/23 3790 -190.241.128.0/24 3790 -190.241.129.0/24 11830 -190.241.130.0/23 11830 -190.241.132.0/24 3790 -190.241.133.0/24 11830 -190.241.134.0/24 11830 -190.241.135.0/24 3790 -190.241.136.0/22 11830 -190.241.140.0/23 11830 -190.241.142.0/23 3790 -190.241.144.0/20 3790 -190.241.160.0/19 3790 -190.241.192.0/22 3790 -190.241.196.0/23 3790 -190.241.198.0/24 11830 -190.241.199.0/24 3790 -190.241.200.0/24 3790 -190.241.201.0/24 11830 -190.241.202.0/23 3790 -190.241.204.0/23 3790 -190.241.206.0/24 3790 -190.241.207.0/24 11830 -190.241.208.0/20 3790 -190.241.224.0/19 3790 -190.242.0.0/21 23520 -190.242.8.0/24 26426 -190.242.9.0/24 23520 -190.242.10.0/23 23520 -190.242.12.0/24 23520 -190.242.13.0/24 26426 -190.242.14.0/23 23520 -190.242.16.0/22 23520 -190.242.20.0/24 23520 -190.242.21.0/24 26426 -190.242.22.0/23 262191 -190.242.24.0/22 52262 -190.242.28.0/23 23520 -190.242.30.0/24 19905 -190.242.31.0/24 23520 -190.242.32.0/22 28094 -190.242.36.0/22 262191 -190.242.40.0/22 262191 -190.242.44.0/24 262191 -190.242.45.0/24 23520 -190.242.46.0/23 262191 -190.242.48.0/23 23520 -190.242.50.0/23 52286 -190.242.52.0/23 52286 -190.242.54.0/24 262191 -190.242.55.0/24 52434 -190.242.56.0/23 23520 -190.242.58.0/24 23520 -190.242.59.0/24 61498 -190.242.60.0/23 262191 -190.242.62.0/24 262191 -190.242.63.0/24 23520 -190.242.64.0/22 23520 -190.242.68.0/23 26426 -190.242.70.0/24 26426 -190.242.71.0/24 23520 -190.242.72.0/21 26611 -190.242.80.0/24 23520 -190.242.81.0/24 26611 -190.242.82.0/24 23520 -190.242.83.0/24 26611 -190.242.84.0/22 23520 -190.242.88.0/24 52468 -190.242.89.0/24 23520 -190.242.90.0/23 23520 -190.242.92.0/22 23520 -190.242.96.0/24 23520 -190.242.97.0/24 52286 -190.242.98.0/23 23520 -190.242.100.0/23 23520 -190.242.102.0/24 23520 -190.242.103.0/24 262191 -190.242.104.0/24 262191 -190.242.105.0/24 10299 -190.242.106.0/23 23520 -190.242.108.0/24 23520 -190.242.109.0/24 262191 -190.242.110.0/23 23520 -190.242.112.0/24 23520 -190.242.113.0/24 262191 -190.242.114.0/24 23520 -190.242.115.0/24 262191 -190.242.116.0/24 23520 -190.242.117.0/24 262191 -190.242.118.0/23 23520 -190.242.120.0/24 23520 -190.242.121.0/24 262199 -190.242.122.0/23 23520 -190.242.124.0/22 23520 -190.242.128.0/23 23520 -190.242.130.0/24 262191 -190.242.131.0/24 23520 -190.242.132.0/22 23520 -190.242.136.0/21 23520 -190.242.144.0/22 23520 -190.242.148.0/22 262199 -190.242.152.0/22 23520 -190.242.156.0/23 23520 -190.242.158.0/23 262199 -190.242.160.0/23 262199 -190.242.162.0/24 262199 -190.242.163.0/24 23520 -190.242.164.0/22 23520 -190.242.168.0/21 23520 -190.242.176.0/20 23520 -190.242.192.0/18 23520 -190.243.0.0/16 26611 -190.244.0.0/14 10481 -190.248.0.0/14 13489 -190.252.0.0/18 3816 -190.252.64.0/19 3816 -190.252.96.0/21 3816 -190.252.104.0/24 22368 -190.252.105.0/24 3816 -190.252.106.0/24 22368 -190.252.107.0/24 3816 -190.252.108.0/22 3816 -190.252.112.0/20 3816 -190.252.128.0/17 3816 -190.253.0.0/16 3816 -190.254.0.0/16 3816 -190.255.0.0/19 3816 -190.255.32.0/21 3816 -190.255.40.0/22 3816 -190.255.44.0/24 52256 -190.255.45.0/24 3816 -190.255.46.0/23 3816 -190.255.48.0/20 3816 -190.255.64.0/18 3816 -190.255.128.0/17 3816 -191.0.0.0/14 7738 -191.4.0.0/16 19611 -191.5.0.0/19 263077 -191.5.32.0/20 263531 -191.5.48.0/21 263532 -191.5.56.0/22 262372 -191.5.60.0/23 263533 -191.5.62.0/23 263547 -191.5.64.0/21 61901 -191.5.79.0/24 52583 -191.5.80.0/20 28201 -191.5.96.0/21 263535 -191.5.104.0/21 52935 -191.5.112.0/20 263537 -191.5.128.0/20 263536 -191.5.144.0/20 53085 -191.5.160.0/22 263538 -191.5.164.0/22 263541 -191.5.168.0/21 263539 -191.5.176.0/20 53238 -191.5.192.0/20 262468 -191.5.208.0/21 262832 -191.5.216.0/22 262459 -191.5.220.0/22 53218 -191.5.224.0/21 52908 -191.5.232.0/22 263542 -191.5.236.0/22 263543 -191.5.240.0/20 263544 -191.6.0.0/22 263545 -191.6.4.0/24 263550 -191.6.6.0/24 61903 -191.6.7.0/24 263312 -191.6.8.0/22 262495 -191.6.13.0/24 262495 -191.6.14.0/23 262495 -191.6.16.0/20 263546 -191.6.32.0/20 262288 -191.6.48.0/21 263073 -191.6.56.0/21 263549 -191.6.64.0/23 263548 -191.6.67.0/24 263548 -191.6.68.0/22 263548 -191.6.72.0/21 263548 -191.6.80.0/21 263070 -191.6.88.0/21 262980 -191.6.96.0/19 262753 -191.6.128.0/22 262825 -191.6.132.0/22 263305 -191.6.136.0/22 263297 -191.6.140.0/22 263140 -191.6.144.0/21 263071 -191.6.152.0/21 61915 -191.6.160.0/22 263298 -191.6.164.0/22 263164 -191.6.168.0/21 262732 -191.6.176.0/20 262428 -191.6.192.0/19 28299 -191.6.224.0/22 263299 -191.6.229.0/24 263299 -191.6.232.0/21 28639 -191.6.240.0/24 262706 -191.6.248.0/21 263302 -191.7.0.0/21 263304 -191.7.8.0/21 262595 -191.7.16.0/22 262485 -191.7.20.0/22 263307 -191.7.24.0/22 263308 -191.7.28.0/22 52940 -191.7.32.0/21 263309 -191.7.40.0/21 263310 -191.7.48.0/21 263311 -191.7.56.0/21 53233 -191.7.64.0/21 262404 -191.7.72.0/21 53130 -191.7.80.0/21 52901 -191.7.88.0/23 52901 -191.7.90.0/24 268451 -191.7.91.0/24 52901 -191.7.92.0/22 52901 -191.7.96.0/21 263596 -191.7.116.0/22 263331 -191.7.120.0/21 263317 -191.7.136.0/21 263321 -191.7.144.0/20 263320 -191.7.160.0/21 263322 -191.7.168.0/21 262861 -191.7.176.0/21 263326 -191.7.184.0/22 263328 -191.7.188.0/22 263329 -191.7.192.0/21 263327 -191.7.200.0/23 263327 -191.7.204.0/22 263327 -191.7.208.0/21 263327 -191.7.216.0/22 263327 -191.7.220.0/23 263327 -191.8.0.0/17 27699 -191.8.128.0/18 27699 -191.8.192.0/18 26599 -191.9.0.0/16 26599 -191.10.0.0/15 26599 -191.12.0.0/16 26599 -191.13.0.0/16 27699 -191.14.0.0/15 26599 -191.16.0.0/16 26599 -191.17.0.0/16 27699 -191.18.0.0/16 26599 -191.19.0.0/17 27699 -191.19.128.0/18 27699 -191.19.192.0/19 27699 -191.19.224.0/20 27699 -191.19.240.0/21 27699 -191.19.248.0/22 27699 -191.19.252.0/22 26599 -191.20.0.0/15 26599 -191.22.0.0/16 26599 -191.23.0.0/17 27699 -191.23.128.0/17 26599 -191.24.0.0/14 26599 -191.28.0.0/15 26599 -191.30.0.0/15 18881 -191.32.0.0/14 18881 -191.36.0.0/17 263325 -191.36.128.0/22 263332 -191.36.132.0/22 263334 -191.36.136.0/21 263335 -191.36.144.0/20 263333 -191.36.160.0/21 28125 -191.36.168.0/21 263336 -191.36.176.0/22 263337 -191.36.180.0/22 263341 -191.36.184.0/21 263338 -191.36.192.0/21 263339 -191.36.200.0/22 263339 -191.36.204.0/23 263339 -191.36.208.0/21 262643 -191.36.216.0/21 263340 -191.36.224.0/22 263342 -191.36.228.0/22 263343 -191.36.232.0/22 263344 -191.36.236.0/24 263358 -191.36.237.0/24 263364 -191.36.239.0/24 263381 -191.36.240.0/20 263345 -191.37.0.0/21 263346 -191.37.8.0/22 263348 -191.37.12.0/22 263350 -191.37.16.0/21 263349 -191.37.24.0/22 263351 -191.37.28.0/22 263352 -191.37.32.0/19 263347 -191.37.64.0/22 263353 -191.37.68.0/22 263355 -191.37.72.0/21 263356 -191.37.88.0/21 263354 -191.37.96.0/19 263357 -191.37.128.0/21 263359 -191.37.136.0/22 263360 -191.37.140.0/22 263367 -191.37.144.0/21 263361 -191.37.152.0/21 263362 -191.37.160.0/21 263363 -191.37.172.0/22 263368 -191.37.176.0/21 263369 -191.37.184.0/21 61904 -191.37.192.0/22 263370 -191.37.196.0/22 263404 -191.37.200.0/21 263371 -191.37.208.0/21 263372 -191.37.216.0/21 263373 -191.37.224.0/21 263374 -191.37.232.0/21 263375 -191.37.240.0/21 262481 -191.37.248.0/22 262481 -191.37.253.0/24 263417 -191.37.254.0/24 263273 -191.37.255.0/24 263257 -191.39.0.0/18 53037 -191.39.64.0/19 53037 -191.39.127.0/24 53037 -191.39.128.0/17 53037 -191.40.0.0/13 7738 -191.48.0.0/14 26615 -191.52.0.0/18 263410 -191.52.64.0/18 28193 -191.52.128.0/21 263282 -191.52.136.0/23 263282 -191.52.140.0/23 263282 -191.52.144.0/20 263282 -191.52.160.0/21 263282 -191.52.168.0/22 263282 -191.52.172.0/24 263282 -191.52.174.0/23 263282 -191.52.176.0/22 263282 -191.52.180.0/23 263282 -191.52.184.0/21 263282 -191.52.192.0/20 263282 -191.52.224.0/20 262716 -191.52.240.0/21 52693 -191.52.248.0/21 263165 -191.53.0.0/16 28202 -191.54.0.0/15 53006 -191.56.0.0/13 53037 -191.64.0.0/12 26611 -191.80.0.0/14 22927 -191.84.0.0/15 22927 -191.86.0.0/15 26615 -191.88.0.0/14 27831 -191.92.0.0/15 27831 -191.94.0.0/18 27805 -191.94.64.0/18 27831 -191.94.128.0/17 27831 -191.95.0.0/16 27831 -191.96.0.0/21 61317 -191.96.9.0/24 61317 -191.96.10.0/23 61317 -191.96.12.0/23 61317 -191.96.15.0/24 61317 -191.96.16.0/23 61317 -191.96.19.0/24 61317 -191.96.20.0/24 61317 -191.96.22.0/24 61317 -191.96.24.0/22 61317 -191.96.28.0/24 61317 -191.96.30.0/23 61317 -191.96.33.0/24 61317 -191.96.36.0/23 134121 -191.96.38.0/23 61317 -191.96.40.0/21 61317 -191.96.48.0/23 134121 -191.96.50.0/23 61317 -191.96.52.0/22 134121 -191.96.56.0/22 61317 -191.96.60.0/24 61317 -191.96.62.0/23 61317 -191.96.64.0/23 134121 -191.96.66.0/24 60458 -191.96.68.0/23 134121 -191.96.70.0/23 61440 -191.96.72.0/22 61317 -191.96.77.0/24 61440 -191.96.78.0/23 134121 -191.96.80.0/21 61317 -191.96.88.0/22 61317 -191.96.92.0/23 134121 -191.96.95.0/24 61317 -191.96.97.0/24 61317 -191.96.99.0/24 61317 -191.96.100.0/23 134121 -191.96.102.0/24 61317 -191.96.108.0/23 61317 -191.96.112.0/23 134121 -191.96.116.0/23 61317 -191.96.118.0/24 61317 -191.96.123.0/24 61317 -191.96.124.0/22 61317 -191.96.128.0/23 134121 -191.96.130.0/23 61317 -191.96.132.0/22 61317 -191.96.136.0/21 61317 -191.96.144.0/24 61317 -191.96.145.0/24 61440 -191.96.146.0/23 61317 -191.96.148.0/22 61317 -191.96.152.0/22 61317 -191.96.156.0/23 61317 -191.96.158.0/23 134121 -191.96.160.0/20 61317 -191.96.176.0/23 61317 -191.96.178.0/23 134121 -191.96.180.0/22 61317 -191.96.184.0/22 61317 -191.96.188.0/23 61317 -191.96.190.0/24 61440 -191.96.191.0/24 61317 -191.96.192.0/21 61317 -191.96.203.0/24 61317 -191.96.204.0/23 61317 -191.96.207.0/24 60458 -191.96.208.0/23 134121 -191.96.211.0/24 61317 -191.96.213.0/24 61317 -191.96.214.0/23 134121 -191.96.216.0/22 61317 -191.96.221.0/24 61317 -191.96.222.0/23 61317 -191.96.224.0/22 36217 -191.96.228.0/23 61317 -191.96.231.0/24 60458 -191.96.232.0/23 61317 -191.96.234.0/23 134121 -191.96.236.0/22 134121 -191.96.240.0/22 61317 -191.96.245.0/24 60458 -191.96.246.0/23 61317 -191.96.248.0/24 61317 -191.96.250.0/23 61317 -191.96.252.0/23 61317 -191.97.0.0/20 262186 -191.97.16.0/22 264844 -191.97.24.0/24 11014 -191.97.26.0/23 3549 -191.97.28.0/22 52498 -191.97.32.0/20 52322 -191.97.48.0/22 28032 -191.97.52.0/23 28032 -191.97.54.0/24 28032 -191.97.55.0/24 18678 -191.97.56.0/21 28032 -191.97.64.0/22 265775 -191.97.68.0/22 263209 -191.97.72.0/21 263209 -191.97.80.0/21 264663 -191.97.88.0/21 263212 -191.97.96.0/22 263213 -191.97.100.0/22 60725 -191.97.104.0/22 52471 -191.97.108.0/22 26621 -191.97.112.0/21 26621 -191.97.120.0/21 264733 -191.97.128.0/17 26608 -191.98.0.0/17 13489 -191.98.128.0/18 27843 -191.98.192.0/22 263218 -191.98.196.0/22 263215 -191.98.200.0/21 52439 -191.98.208.0/21 263216 -191.98.216.0/21 263219 -191.98.224.0/19 19447 -191.99.0.0/19 27738 -191.99.32.0/20 27738 -191.99.49.0/24 27738 -191.99.66.0/23 27738 -191.99.68.0/22 27738 -191.99.72.0/21 27738 -191.99.80.0/20 27738 -191.99.96.0/19 27738 -191.99.128.0/18 27738 -191.99.196.0/22 27738 -191.99.200.0/21 27738 -191.99.208.0/20 27738 -191.99.224.0/19 27738 -191.100.0.0/16 27668 -191.101.0.0/20 61317 -191.101.16.0/24 17216 -191.101.18.0/23 61317 -191.101.20.0/23 29802 -191.101.22.0/24 61317 -191.101.25.0/24 60458 -191.101.27.0/24 60458 -191.101.28.0/23 61317 -191.101.30.0/23 134121 -191.101.32.0/23 61317 -191.101.34.0/23 134121 -191.101.36.0/23 134121 -191.101.39.0/24 61317 -191.101.40.0/23 61317 -191.101.42.0/23 134121 -191.101.44.0/22 61317 -191.101.48.0/22 61317 -191.101.52.0/22 134121 -191.101.56.0/22 61317 -191.101.60.0/24 133398 -191.101.61.0/24 61317 -191.101.62.0/24 61317 -191.101.63.0/24 61440 -191.101.64.0/18 61317 -191.101.128.0/20 61317 -191.101.144.0/22 61317 -191.101.148.0/23 61317 -191.101.150.0/24 61317 -191.101.151.0/24 60458 -191.101.152.0/21 61317 -191.101.160.0/21 61317 -191.101.168.0/24 60458 -191.101.169.0/24 61317 -191.101.170.0/23 61317 -191.101.172.0/22 61317 -191.101.176.0/24 61317 -191.101.178.0/23 134121 -191.101.180.0/24 61317 -191.101.181.0/24 60458 -191.101.182.0/24 61317 -191.101.184.0/22 134121 -191.101.188.0/22 61317 -191.101.196.0/23 134121 -191.101.198.0/23 61317 -191.101.200.0/23 61317 -191.101.202.0/23 134121 -191.101.204.0/22 61317 -191.101.210.0/23 61317 -191.101.212.0/22 61317 -191.101.217.0/24 61317 -191.101.219.0/24 61317 -191.101.220.0/23 61317 -191.101.223.0/24 61317 -191.101.224.0/20 61317 -191.101.241.0/24 61317 -191.101.242.0/23 134121 -191.101.244.0/24 61317 -191.101.248.0/22 61317 -191.101.252.0/24 61440 -191.101.253.0/24 61317 -191.101.254.0/23 134121 -191.102.0.0/20 262220 -191.102.16.0/20 262259 -191.102.32.0/22 263249 -191.102.36.0/22 263698 -191.102.40.0/21 52364 -191.102.48.0/21 263177 -191.102.56.0/22 28317 -191.102.61.0/24 262929 -191.102.64.0/18 262186 -191.102.128.0/21 263179 -191.102.136.0/21 394474 -191.102.144.0/21 394474 -191.102.152.0/21 263179 -191.102.160.0/20 394474 -191.102.176.0/21 394474 -191.102.184.0/21 263179 -191.102.192.0/24 262928 -191.102.196.0/22 262928 -191.102.200.0/24 262928 -191.102.216.0/24 262928 -191.102.219.0/24 262928 -191.102.220.0/23 262928 -191.102.223.0/24 262928 -191.102.224.0/24 262928 -191.102.229.0/24 262928 -191.102.232.0/24 262928 -191.102.234.0/24 262928 -191.102.237.0/24 262928 -191.102.240.0/22 262931 -191.102.244.0/22 52477 -191.102.248.0/21 262934 -191.103.0.0/18 28048 -191.103.64.0/21 23383 -191.103.72.0/24 267737 -191.103.73.0/24 23383 -191.103.74.0/23 23383 -191.103.76.0/22 23383 -191.103.80.0/22 23383 -191.103.84.0/23 23383 -191.103.87.0/24 23383 -191.103.88.0/23 23383 -191.103.90.0/23 52262 -191.103.92.0/23 52262 -191.103.94.0/23 23383 -191.103.96.0/20 262932 -191.103.112.0/20 25607 -191.103.128.0/17 27695 -191.106.128.0/17 3816 -191.109.0.0/16 3816 -191.110.128.0/18 3816 -191.111.128.0/18 3816 -191.112.0.0/14 7418 -191.116.0.0/16 27995 -191.119.0.0/16 27995 -191.120.0.0/14 26615 -191.124.0.0/14 7418 -191.128.0.0/12 26615 -191.144.0.0/13 26611 -191.152.0.0/14 26611 -191.156.0.0/20 26611 -191.156.16.0/24 26611 -191.156.18.0/23 14080 -191.156.23.0/24 14080 -191.156.24.0/21 26611 -191.156.32.0/19 26611 -191.156.64.0/20 26611 -191.156.96.0/20 26611 -191.157.0.0/16 26611 -191.158.0.0/15 26611 -191.160.0.0/12 26615 -191.176.0.0/15 28573 -191.178.0.0/16 28573 -191.179.0.0/19 28573 -191.179.64.0/18 28573 -191.179.128.0/17 28573 -191.180.0.0/14 28573 -191.184.0.0/15 28573 -191.186.0.0/18 28573 -191.186.80.0/20 28573 -191.186.96.0/19 28573 -191.186.128.0/18 28573 -191.186.192.0/20 28573 -191.186.216.0/21 28573 -191.186.224.0/19 28573 -191.187.0.0/16 28573 -191.188.0.0/18 28573 -191.188.128.0/18 28573 -191.189.0.0/16 28573 -191.190.0.0/15 28573 -191.192.0.0/16 26599 -191.193.0.0/16 27699 -191.194.0.0/15 26599 -191.196.0.0/14 26599 -191.200.0.0/14 26599 -191.204.0.0/16 26599 -191.205.0.0/16 27699 -191.206.0.0/15 26599 -191.208.0.0/16 26599 -191.209.0.0/17 27699 -191.209.128.0/17 26599 -191.210.0.0/15 26599 -191.212.0.0/14 7738 -191.216.0.0/13 8167 -191.224.0.0/13 26615 -191.232.0.0/13 8075 -191.240.0.0/17 28202 -191.240.128.0/21 53178 -191.240.136.0/21 263657 -191.240.144.0/20 28165 -191.240.160.0/22 52700 -191.240.164.0/22 263042 -191.240.168.0/21 262496 -191.240.176.0/20 262901 -191.240.192.0/22 263659 -191.240.196.0/22 52818 -191.240.200.0/21 262851 -191.240.208.0/21 52670 -191.240.216.0/21 52693 -191.240.224.0/19 53142 -191.241.0.0/20 263663 -191.241.16.0/22 262775 -191.241.20.0/22 263541 -191.241.24.0/21 263664 -191.241.32.0/21 263665 -191.241.40.0/21 262726 -191.241.48.0/22 263666 -191.241.52.0/22 263667 -191.241.56.0/22 263668 -191.241.64.0/20 53181 -191.241.80.0/21 53076 -191.241.88.0/21 263288 -191.241.96.0/19 263034 -191.241.128.0/21 263671 -191.241.136.0/22 263674 -191.241.144.0/20 262784 -191.241.160.0/21 52904 -191.241.168.0/21 263675 -191.241.176.0/21 263676 -191.241.184.0/21 263677 -191.241.192.0/19 53061 -191.241.224.0/19 28669 -191.242.0.0/19 263466 -191.242.39.0/24 263469 -191.242.40.0/21 263469 -191.242.48.0/21 263470 -191.242.56.0/21 263472 -191.242.64.0/21 263473 -191.242.72.0/22 263474 -191.242.76.0/24 263474 -191.242.78.0/23 263474 -191.242.80.0/20 262612 -191.242.96.0/22 263475 -191.242.100.0/22 263477 -191.242.104.0/22 267463 -191.242.108.0/22 263476 -191.242.112.0/20 262851 -191.242.128.0/19 262730 -191.242.160.0/20 53246 -191.242.176.0/20 263151 -191.242.192.0/22 263478 -191.242.196.0/22 263143 -191.242.200.0/22 263479 -191.242.204.0/22 263480 -191.242.208.0/21 263481 -191.242.216.0/22 263482 -191.242.220.0/22 263144 -191.242.224.0/22 263483 -191.242.228.0/22 263485 -191.242.232.0/21 263484 -191.242.240.0/22 262318 -191.242.244.0/22 263155 -191.242.248.0/21 263486 -191.243.0.0/22 263487 -191.243.4.0/22 52751 -191.243.8.0/22 61900 -191.243.12.0/22 263489 -191.243.16.0/20 263490 -191.243.32.0/22 263491 -191.243.36.0/22 263492 -191.243.40.0/22 263493 -191.243.44.0/22 263494 -191.243.48.0/22 263495 -191.243.52.0/22 263498 -191.243.56.0/21 263496 -191.243.64.0/21 263497 -191.243.72.0/21 263499 -191.243.80.0/24 262706 -191.243.82.0/23 262706 -191.243.84.0/23 262706 -191.243.88.0/22 262271 -191.243.92.0/22 263504 -191.243.96.0/20 263501 -191.243.112.0/20 53135 -191.243.132.0/22 263156 -191.243.136.0/22 263507 -191.243.140.0/22 263062 -191.243.144.0/20 263047 -191.243.160.0/20 263508 -191.243.176.0/20 263509 -191.243.192.0/22 263510 -191.243.196.0/22 263511 -191.243.200.0/21 263512 -191.243.208.0/22 263513 -191.243.212.0/22 263518 -191.243.216.0/21 263515 -191.243.224.0/20 263517 -191.243.240.0/22 263519 -191.243.244.0/22 263521 -191.243.248.0/21 52980 -191.244.0.0/14 22085 -191.248.0.0/14 18881 -191.252.0.0/16 27715 -191.253.0.0/20 53080 -191.253.16.0/22 263523 -191.253.20.0/22 263526 -191.253.24.0/21 263524 -191.253.32.0/21 262353 -191.253.40.0/21 263527 -191.253.48.0/20 263525 -191.253.64.0/22 263528 -191.253.68.0/22 263530 -191.253.72.0/21 262891 -191.253.80.0/21 52768 -191.253.88.0/22 52768 -191.253.93.0/24 52768 -191.253.94.0/23 52768 -191.253.96.0/19 28343 -191.253.136.0/22 11338 -191.253.160.0/20 11338 -191.253.192.0/20 262907 -191.253.208.0/20 262808 -191.253.224.0/19 28580 -191.254.0.0/15 27699 -192.0.3.0/24 14660 -192.0.4.0/22 6639 -192.0.8.0/21 11203 -192.0.16.0/20 11282 -192.0.32.0/22 40528 -192.0.36.0/22 26711 -192.0.40.0/23 20144 -192.0.42.0/24 26710 -192.0.43.0/24 16876 -192.0.44.0/22 16876 -192.0.48.0/20 62659 -192.0.64.0/18 2635 -192.0.128.0/17 5645 -192.1.0.0/19 11488 -192.1.48.0/21 174 -192.1.90.0/24 11488 -192.1.100.0/23 11488 -192.1.114.0/23 11488 -192.1.118.0/24 11488 -192.1.120.0/23 11488 -192.1.122.0/24 11488 -192.1.124.0/22 11488 -192.1.128.0/23 11488 -192.1.130.0/24 11488 -192.1.132.0/24 11488 -192.1.140.0/23 11488 -192.1.142.0/24 11488 -192.1.144.0/21 11488 -192.1.202.0/24 11488 -192.1.240.0/22 11488 -192.1.247.0/24 174 -192.1.249.0/24 11488 -192.1.250.0/24 11488 -192.1.252.0/22 3356 -192.2.0.0/23 3356 -192.2.2.0/24 11172 -192.2.3.0/24 3356 -192.2.4.0/22 3356 -192.2.8.0/21 3356 -192.2.16.0/20 3356 -192.2.32.0/19 3356 -192.2.64.0/18 3356 -192.2.128.0/17 3356 -192.3.0.0/18 36352 -192.3.64.0/24 36352 -192.3.65.0/24 55286 -192.3.66.0/24 55286 -192.3.67.0/24 36352 -192.3.68.0/24 36352 -192.3.69.0/24 55286 -192.3.70.0/24 36352 -192.3.71.0/24 55286 -192.3.73.0/24 36352 -192.3.74.0/23 55286 -192.3.76.0/24 36352 -192.3.77.0/24 55286 -192.3.78.0/23 55286 -192.3.80.0/20 36352 -192.3.96.0/19 36352 -192.3.128.0/18 36352 -192.3.192.0/21 36352 -192.3.200.0/24 55286 -192.3.201.0/24 36352 -192.3.202.0/23 36352 -192.3.204.0/22 36352 -192.3.208.0/20 36352 -192.3.224.0/24 16628 -192.3.227.0/24 36352 -192.3.228.0/22 36352 -192.3.232.0/21 36352 -192.3.240.0/20 36352 -192.4.0.0/22 54735 -192.4.16.0/20 116 -192.4.32.0/24 116 -192.4.48.0/20 116 -192.4.64.0/18 116 -192.4.128.0/20 116 -192.4.144.0/21 116 -192.4.156.0/22 116 -192.4.160.0/20 116 -192.4.176.0/21 116 -192.4.200.0/21 116 -192.4.208.0/20 116 -192.4.224.0/20 116 -192.4.240.0/23 116 -192.4.243.0/24 14492 -192.4.244.0/22 116 -192.4.248.0/21 116 -192.5.0.0/23 40632 -192.5.2.0/24 6356 -192.5.3.0/24 35960 -192.5.4.0/23 3557 -192.5.6.0/24 20172 -192.5.7.0/24 22255 -192.5.8.0/24 19 -192.5.10.0/24 47 -192.5.11.0/24 63029 -192.5.12.0/24 17055 -192.5.14.0/24 21 -192.5.15.0/24 32064 -192.5.17.0/24 668 -192.5.18.0/24 22238 -192.5.19.0/24 299 -192.5.21.0/24 668 -192.5.22.0/23 668 -192.5.24.0/23 13 -192.5.27.0/24 84 -192.5.28.0/23 7 -192.5.30.0/24 7 -192.5.32.0/24 6 -192.5.36.0/24 3301 -192.5.38.0/24 264 -192.5.41.0/24 27064 -192.5.43.0/24 14 -192.5.44.0/24 55 -192.5.46.0/24 12081 -192.5.47.0/24 84 -192.5.49.0/24 21814 -192.5.50.0/24 2841 -192.5.51.0/24 32831 -192.5.53.0/24 20 -192.5.55.0/24 27064 -192.5.58.0/24 32418 -192.5.59.0/24 775 -192.5.60.0/24 10925 -192.5.66.0/24 1742 -192.5.67.0/24 264 -192.5.68.0/23 31956 -192.5.71.0/24 23192 -192.5.73.0/24 11978 -192.5.84.0/24 683 -192.5.85.0/24 160 -192.5.87.0/24 683 -192.5.89.0/24 10578 -192.5.90.0/24 9640 -192.5.93.0/24 264 -192.5.97.0/24 1267 -192.5.98.0/24 703 -192.5.99.0/24 45 -192.5.104.0/24 33154 -192.5.106.0/24 393412 -192.5.109.0/24 32666 -192.5.110.0/24 32666 -192.5.113.0/24 32666 -192.5.132.0/24 27064 -192.5.134.0/24 7834 -192.5.136.0/22 63 -192.5.140.0/23 63 -192.5.143.0/24 103 -192.5.146.0/24 9 -192.5.148.0/24 668 -192.5.154.0/23 36551 -192.5.156.0/24 243 -192.5.157.0/24 7018 -192.5.158.0/23 3999 -192.5.160.0/23 3999 -192.5.162.0/24 5403 -192.5.163.0/24 7834 -192.5.166.0/24 3431 -192.5.170.0/23 683 -192.5.172.0/22 683 -192.5.176.0/20 683 -192.5.192.0/21 683 -192.5.200.0/24 683 -192.5.203.0/24 63056 -192.5.206.0/23 111 -192.5.208.0/24 111 -192.5.209.0/24 19812 -192.5.211.0/24 62905 -192.5.212.0/24 19812 -192.5.215.0/24 11279 -192.5.216.0/24 2511 -192.5.219.0/24 12148 -192.5.221.0/24 16778 -192.5.222.0/24 393281 -192.5.241.0/24 29797 -192.5.244.0/23 19773 -192.5.247.0/24 19773 -192.5.248.0/22 19773 -192.5.252.0/23 19773 -192.5.255.0/24 62973 -192.6.2.0/24 71 -192.6.9.0/24 33383 -192.6.11.0/24 33383 -192.6.12.0/24 33383 -192.6.21.0/24 395266 -192.6.32.0/19 71 -192.6.64.0/20 71 -192.6.80.0/22 71 -192.6.84.0/23 71 -192.6.86.0/24 151 -192.6.87.0/24 71 -192.6.88.0/21 71 -192.6.96.0/20 71 -192.6.112.0/21 71 -192.6.120.0/22 71 -192.6.124.0/24 71 -192.6.125.0/24 9498 -192.6.126.0/23 71 -192.6.143.0/24 51964 -192.6.177.0/24 2129 -192.6.190.0/23 13979 -192.8.0.0/21 36224 -192.8.9.0/24 36224 -192.8.10.0/24 36224 -192.8.11.0/24 2386 -192.8.12.0/24 2386 -192.8.14.0/24 2386 -192.8.16.0/23 36224 -192.8.18.0/24 36224 -192.8.20.0/24 36224 -192.8.24.0/24 36224 -192.8.28.0/23 36224 -192.8.30.0/24 36224 -192.8.32.0/21 36224 -192.8.40.0/22 36224 -192.8.45.0/24 36224 -192.8.46.0/23 36224 -192.8.48.0/22 36224 -192.8.52.0/23 36224 -192.8.55.0/24 36224 -192.8.56.0/21 36224 -192.8.64.0/20 36224 -192.8.80.0/21 36224 -192.8.88.0/24 36224 -192.8.90.0/23 36224 -192.8.92.0/22 36224 -192.8.96.0/20 36224 -192.8.112.0/24 2856 -192.8.113.0/24 36224 -192.8.114.0/23 36224 -192.8.120.0/23 36224 -192.8.122.0/24 36224 -192.8.124.0/23 36224 -192.8.127.0/24 36224 -192.8.128.0/20 36224 -192.8.144.0/22 36224 -192.8.148.0/23 36224 -192.8.150.0/24 36224 -192.8.152.0/22 36224 -192.8.156.0/23 36224 -192.8.160.0/20 24084 -192.8.176.0/24 24084 -192.8.178.0/24 24084 -192.8.179.0/24 36224 -192.8.180.0/23 24084 -192.8.182.0/24 24084 -192.8.184.0/22 24084 -192.8.190.0/24 24084 -192.8.192.0/22 24084 -192.8.196.0/23 24084 -192.8.199.0/24 24084 -192.8.200.0/22 24084 -192.8.206.0/23 24084 -192.8.210.0/23 24084 -192.8.212.0/23 24084 -192.8.214.0/24 24084 -192.8.216.0/22 24084 -192.8.220.0/24 24084 -192.8.224.0/21 24084 -192.8.236.0/23 24084 -192.8.240.0/21 24084 -192.8.251.0/24 24084 -192.8.252.0/22 24084 -192.11.0.0/24 10455 -192.11.1.0/24 7345 -192.11.2.0/24 7345 -192.11.3.0/24 10455 -192.11.4.0/24 10455 -192.11.5.0/24 7345 -192.11.6.0/23 10455 -192.11.8.0/22 10455 -192.11.12.0/24 10455 -192.11.13.0/24 7345 -192.11.14.0/23 10455 -192.11.16.0/24 7345 -192.11.17.0/24 10455 -192.11.18.0/23 10455 -192.11.20.0/24 7345 -192.11.21.0/24 10455 -192.11.22.0/23 10455 -192.11.24.0/21 10455 -192.11.32.0/20 10455 -192.11.48.0/21 10455 -192.11.56.0/24 702 -192.11.57.0/24 10455 -192.11.58.0/23 10455 -192.11.60.0/22 10455 -192.11.64.0/19 10455 -192.11.96.0/20 10455 -192.11.112.0/23 10455 -192.11.114.0/24 10455 -192.11.115.0/24 7345 -192.11.116.0/22 10455 -192.11.120.0/21 10455 -192.11.128.0/19 10455 -192.11.160.0/21 10455 -192.11.168.0/22 10455 -192.11.172.0/23 10455 -192.11.174.0/24 10455 -192.11.175.0/24 24324 -192.11.176.0/20 10455 -192.11.192.0/19 10455 -192.11.224.0/22 10455 -192.11.228.0/24 702 -192.11.229.0/24 10455 -192.11.230.0/23 10455 -192.11.232.0/21 10455 -192.11.240.0/20 10455 -192.12.0.0/24 29861 -192.12.2.0/24 393379 -192.12.3.0/24 58453 -192.12.5.0/24 30 -192.12.10.0/24 6922 -192.12.11.0/24 396527 -192.12.12.0/24 397870 -192.12.13.0/24 5723 -192.12.14.0/24 5723 -192.12.15.0/24 43 -192.12.17.0/24 45 -192.12.19.0/24 31 -192.12.20.0/24 46762 -192.12.23.0/24 22793 -192.12.24.0/24 5691 -192.12.26.0/24 11948 -192.12.28.0/24 21556 -192.12.31.0/24 36131 -192.12.32.0/24 9 -192.12.33.0/24 30 -192.12.40.0/24 72 -192.12.43.0/24 72 -192.12.45.0/24 25703 -192.12.46.0/24 393344 -192.12.51.0/24 55088 -192.12.52.0/24 3549 -192.12.53.0/24 88 -192.12.54.0/24 1101 -192.12.55.0/24 6305 -192.12.64.0/24 383 -192.12.65.0/24 13 -192.12.66.0/24 1525 -192.12.67.0/24 13 -192.12.68.0/24 50 -192.12.69.0/24 1706 -192.12.72.0/24 786 -192.12.76.0/24 24436 -192.12.78.0/24 10725 -192.12.80.0/24 36375 -192.12.81.0/24 680 -192.12.82.0/24 14 -192.12.83.0/24 1852 -192.12.84.0/22 11293 -192.12.88.0/24 46 -192.12.89.0/24 5719 -192.12.90.0/24 5719 -192.12.94.0/24 22547 -192.12.95.0/24 32982 -192.12.103.0/24 54663 -192.12.104.0/22 22945 -192.12.108.0/24 26007 -192.12.109.0/24 9498 -192.12.111.0/24 328283 -192.12.112.0/22 266144 -192.12.116.0/24 328330 -192.12.117.0/24 328268 -192.12.118.0/24 266818 -192.12.120.0/24 5691 -192.12.121.0/24 11096 -192.12.124.0/24 668 -192.12.126.0/24 1461 -192.12.128.0/24 394851 -192.12.133.0/24 45 -192.12.134.0/24 45 -192.12.135.0/24 44 -192.12.136.0/23 44 -192.12.144.0/24 393382 -192.12.146.0/23 22788 -192.12.148.0/23 33726 -192.12.154.0/24 394924 -192.12.173.0/24 63331 -192.12.174.0/24 239 -192.12.175.0/24 549 -192.12.176.0/21 239 -192.12.184.0/24 68 -192.12.185.0/24 111 -192.12.186.0/23 111 -192.12.188.0/22 111 -192.12.192.0/23 2597 -192.12.194.0/24 2597 -192.12.205.0/24 159 -192.12.206.0/24 19782 -192.12.207.0/24 195 -192.12.208.0/24 68 -192.12.209.0/24 102 -192.12.210.0/24 27064 -192.12.221.0/24 26069 -192.12.222.0/24 62606 -192.12.232.0/24 5516 -192.12.234.0/24 25 -192.12.235.0/24 2843 -192.12.236.0/24 13697 -192.12.238.0/23 104 -192.12.240.0/22 104 -192.12.245.0/24 104 -192.12.246.0/24 104 -192.12.247.0/24 559 -192.12.248.0/24 55173 -192.12.251.0/24 78 -192.15.0.0/16 197207 -192.16.0.0/24 14153 -192.16.1.0/24 15133 -192.16.2.0/23 15133 -192.16.4.0/22 15133 -192.16.8.0/24 14210 -192.16.9.0/24 15133 -192.16.10.0/23 14210 -192.16.12.0/24 14210 -192.16.16.0/24 15133 -192.16.22.0/23 15133 -192.16.26.0/23 14210 -192.16.28.0/23 15133 -192.16.31.0/24 14153 -192.16.32.0/22 15133 -192.16.36.0/23 15133 -192.16.38.0/24 15133 -192.16.44.0/23 14210 -192.16.48.0/23 15133 -192.16.56.0/21 15133 -192.16.64.0/21 46489 -192.16.73.0/24 19348 -192.16.75.0/24 395164 -192.16.76.0/22 55244 -192.16.80.0/23 14537 -192.16.82.0/24 19905 -192.16.83.0/24 397688 -192.16.84.0/22 14537 -192.16.88.0/21 14537 -192.16.104.0/22 20283 -192.16.108.0/22 54578 -192.16.112.0/21 30612 -192.16.120.0/23 14291 -192.16.122.0/24 25766 -192.16.124.0/22 8973 -192.16.131.0/24 158 -192.16.132.0/23 158 -192.16.134.0/23 198538 -192.16.136.0/24 198538 -192.16.137.0/24 33843 -192.16.138.0/24 2846 -192.16.140.0/24 2839 -192.16.143.0/24 29217 -192.16.144.0/24 21195 -192.16.145.0/24 2839 -192.16.146.0/24 2839 -192.16.148.0/22 158 -192.16.152.0/23 3301 -192.16.155.0/24 513 -192.16.156.0/22 513 -192.16.160.0/22 513 -192.16.164.0/23 513 -192.16.166.0/24 513 -192.16.167.0/24 668 -192.16.174.0/24 32655 -192.16.175.0/24 1226 -192.16.176.0/24 2055 -192.16.177.0/24 33660 -192.16.178.0/24 4697 -192.16.179.0/24 2514 -192.16.184.0/24 1888 -192.16.185.0/24 1104 -192.16.186.0/24 1104 -192.16.188.0/23 1103 -192.16.190.0/24 702 -192.16.191.0/24 1888 -192.16.192.0/24 1104 -192.16.194.0/23 1104 -192.16.196.0/23 1888 -192.16.199.0/24 1104 -192.16.200.0/24 1101 -192.16.201.0/24 1888 -192.16.204.0/24 21976 -192.16.240.0/20 3766 -192.17.0.0/16 38 -192.18.0.0/17 43894 -192.18.192.0/23 4192 -192.18.195.0/24 786 -192.18.196.0/24 3457 -192.18.220.0/22 792 -192.18.240.0/20 7160 -192.19.140.0/22 19637 -192.19.191.0/24 19637 -192.19.202.0/23 19637 -192.19.206.0/24 19637 -192.19.208.0/24 19637 -192.19.210.0/23 19637 -192.19.212.0/24 19637 -192.19.214.0/23 19637 -192.19.216.0/23 19637 -192.19.218.0/23 36657 -192.19.220.0/22 19637 -192.19.224.0/23 19637 -192.19.227.0/24 19637 -192.19.228.0/22 19637 -192.19.232.0/23 19637 -192.19.234.0/24 19637 -192.19.236.0/23 19637 -192.19.243.0/24 19637 -192.19.247.0/24 19637 -192.19.248.0/22 19637 -192.19.252.0/23 19637 -192.19.254.0/24 19637 -192.20.14.0/24 7018 -192.20.15.0/24 5103 -192.20.122.0/23 8030 -192.20.124.0/22 8030 -192.20.128.0/21 8030 -192.20.225.0/24 6431 -192.20.246.0/24 2687 -192.23.0.0/21 72 -192.23.8.0/22 72 -192.23.12.0/24 8896 -192.23.13.0/24 72 -192.23.14.0/23 72 -192.23.16.0/20 72 -192.23.32.0/19 72 -192.23.64.0/24 32034 -192.23.65.0/24 72 -192.23.66.0/23 72 -192.23.68.0/23 19516 -192.23.70.0/24 701 -192.23.71.0/24 21000 -192.23.72.0/21 72 -192.23.80.0/21 72 -192.23.88.0/23 72 -192.23.90.0/24 19429 -192.23.91.0/24 52320 -192.23.92.0/22 72 -192.23.96.0/23 72 -192.23.98.0/24 72 -192.23.99.0/24 19366 -192.23.100.0/22 72 -192.23.104.0/23 72 -192.23.106.0/24 72 -192.23.107.0/24 7468 -192.23.108.0/22 72 -192.23.112.0/21 72 -192.23.120.0/22 72 -192.23.124.0/23 394437 -192.23.126.0/24 394437 -192.23.127.0/24 72 -192.23.128.0/20 72 -192.23.144.0/24 19429 -192.23.145.0/24 72 -192.23.146.0/24 35753 -192.23.147.0/24 72 -192.23.148.0/22 72 -192.23.152.0/22 72 -192.23.156.0/24 72 -192.23.157.0/24 5666 -192.23.158.0/24 19429 -192.23.159.0/24 72 -192.23.160.0/21 72 -192.23.168.0/23 72 -192.23.170.0/24 72 -192.23.171.0/24 3292 -192.23.172.0/22 72 -192.23.176.0/21 72 -192.23.184.0/24 72 -192.23.185.0/24 10094 -192.23.186.0/24 72 -192.23.187.0/24 5384 -192.23.188.0/23 72 -192.23.190.0/24 72 -192.23.191.0/24 59050 -192.23.192.0/23 72 -192.23.194.0/24 72 -192.23.195.0/24 8896 -192.23.196.0/23 72 -192.23.198.0/24 2119 -192.23.199.0/24 72 -192.23.200.0/21 72 -192.23.208.0/20 72 -192.23.224.0/20 72 -192.23.240.0/22 72 -192.23.244.0/24 3292 -192.23.245.0/24 72 -192.23.246.0/23 72 -192.23.248.0/22 72 -192.23.252.0/24 72 -192.23.253.0/24 2567 -192.23.254.0/24 2567 -192.23.255.0/24 72 -192.24.0.0/20 10355 -192.24.16.0/20 393844 -192.24.32.0/20 15024 -192.24.48.0/24 393632 -192.24.49.0/24 15024 -192.24.50.0/23 15024 -192.24.52.0/22 15024 -192.24.56.0/21 15024 -192.24.64.0/20 11492 -192.24.80.0/22 18812 -192.24.84.0/23 18812 -192.24.86.0/24 18812 -192.24.87.0/24 11492 -192.24.88.0/23 11492 -192.24.90.0/23 18812 -192.24.92.0/22 11492 -192.24.96.0/21 11492 -192.24.104.0/22 11492 -192.24.108.0/24 11492 -192.24.109.0/24 18812 -192.24.110.0/23 18812 -192.24.112.0/22 18812 -192.24.116.0/23 11492 -192.24.118.0/23 18812 -192.24.120.0/21 11492 -192.24.128.0/17 6181 -192.25.1.0/24 395266 -192.25.2.0/23 395266 -192.25.4.0/22 395266 -192.25.11.0/24 396885 -192.25.12.0/24 2386 -192.25.13.0/24 30080 -192.25.14.0/24 397666 -192.25.19.0/24 395266 -192.25.21.0/24 395266 -192.25.22.0/24 395266 -192.25.24.0/24 395266 -192.25.34.0/24 395266 -192.25.42.0/24 395266 -192.25.46.0/24 395266 -192.25.50.0/24 395266 -192.25.52.0/24 395266 -192.25.55.0/24 395266 -192.25.56.0/23 2129 -192.25.78.0/24 395266 -192.25.88.0/22 51964 -192.25.115.0/24 13655 -192.25.116.0/24 32680 -192.25.126.0/24 51964 -192.25.133.0/24 209 -192.25.139.0/24 2381 -192.25.142.0/24 51964 -192.25.149.0/24 51964 -192.25.160.0/21 25867 -192.25.169.0/24 51964 -192.25.218.0/24 51964 -192.25.230.0/24 51964 -192.25.240.0/24 51964 -192.26.8.0/24 188 -192.26.9.0/24 1315 -192.26.10.0/24 25631 -192.26.24.0/24 132266 -192.26.27.0/24 33466 -192.26.28.0/22 559 -192.26.32.0/21 559 -192.26.40.0/22 559 -192.26.44.0/24 559 -192.26.46.0/23 559 -192.26.83.0/24 36704 -192.26.85.0/24 103 -192.26.86.0/23 103 -192.26.89.0/24 5180 -192.26.91.0/24 7667 -192.26.92.0/24 20172 -192.26.93.0/24 4697 -192.26.94.0/24 2511 -192.26.98.0/23 54799 -192.26.100.0/23 7018 -192.26.102.0/24 7018 -192.26.104.0/24 32684 -192.26.110.0/24 133547 -192.26.111.0/24 51164 -192.26.119.0/24 790 -192.26.123.0/24 1741 -192.26.129.0/24 36714 -192.26.130.0/24 30620 -192.26.131.0/24 53410 -192.26.132.0/24 33681 -192.26.136.0/24 64247 -192.26.137.0/24 19309 -192.26.140.0/22 40702 -192.26.144.0/23 53617 -192.26.149.0/24 63 -192.26.150.0/24 63 -192.26.152.0/24 64200 -192.26.168.0/22 22683 -192.26.174.0/23 680 -192.26.176.0/20 680 -192.26.192.0/23 680 -192.26.194.0/23 10754 -192.26.196.0/22 10754 -192.26.200.0/23 10754 -192.26.210.0/24 376 -192.26.211.0/24 11032 -192.26.212.0/24 46156 -192.26.230.0/24 4739 -192.26.231.0/24 1930 -192.26.232.0/24 37978 -192.26.235.0/24 14661 -192.26.236.0/24 1930 -192.26.237.0/24 48984 -192.26.238.0/24 48984 -192.26.244.0/24 721 -192.26.245.0/24 12083 -192.26.248.0/24 27064 -192.26.250.0/24 2641 -192.26.251.0/24 46310 -192.26.252.0/23 2641 -192.26.254.0/24 2641 -192.27.4.0/24 12007 -192.27.7.0/24 12007 -192.27.19.0/24 12007 -192.27.224.0/24 12007 -192.27.255.0/24 12007 -192.28.0.0/18 7792 -192.28.64.0/24 7792 -192.28.65.0/24 2830 -192.28.66.0/24 2830 -192.28.67.0/24 7792 -192.28.68.0/22 7792 -192.28.72.0/21 7792 -192.28.80.0/21 7792 -192.28.88.0/22 7792 -192.28.92.0/23 397215 -192.28.94.0/23 397213 -192.28.96.0/22 7792 -192.28.120.0/21 6075 -192.28.128.0/24 2856 -192.28.135.0/24 6075 -192.28.136.0/24 6075 -192.28.144.0/23 15224 -192.28.146.0/23 53580 -192.28.148.0/23 53580 -192.28.150.0/23 15224 -192.28.152.0/22 15224 -192.28.156.0/22 53580 -192.28.160.0/19 53580 -192.29.0.0/18 31898 -192.29.64.0/20 31898 -192.29.80.0/21 31898 -192.29.96.0/20 31898 -192.29.128.0/19 31898 -192.29.160.0/20 31898 -192.29.176.0/21 31898 -192.29.192.0/21 31898 -192.29.208.0/21 31898 -192.29.224.0/21 31898 -192.29.240.0/21 31898 -192.30.1.0/24 14153 -192.30.11.0/24 14153 -192.30.14.0/24 14153 -192.30.19.0/24 14153 -192.30.20.0/24 14153 -192.30.24.0/23 15133 -192.30.27.0/24 14153 -192.30.28.0/23 14153 -192.30.31.0/24 14153 -192.30.32.0/22 3842 -192.30.36.0/24 32334 -192.30.37.0/24 15359 -192.30.38.0/24 27261 -192.30.39.0/24 63081 -192.30.40.0/22 11367 -192.30.45.0/24 10515 -192.30.49.0/24 26134 -192.30.51.0/24 53701 -192.30.52.0/24 16696 -192.30.54.0/23 393280 -192.30.56.0/22 26742 -192.30.60.0/24 31964 -192.30.62.0/23 30685 -192.30.64.0/23 23413 -192.30.68.0/22 23413 -192.30.72.0/23 23413 -192.30.74.0/24 23413 -192.30.80.0/22 16628 -192.30.84.0/24 16628 -192.30.86.0/24 16628 -192.30.88.0/23 394256 -192.30.90.0/24 1627 -192.30.91.0/24 10896 -192.30.95.0/24 393405 -192.30.97.0/24 29872 -192.30.98.0/23 54520 -192.30.100.0/24 10896 -192.30.101.0/24 63454 -192.30.102.0/23 393516 -192.30.109.0/24 21967 -192.30.112.0/24 33534 -192.30.113.0/24 10896 -192.30.115.0/24 6492 -192.30.116.0/22 54327 -192.30.122.0/24 10896 -192.30.123.0/24 21631 -192.30.124.0/24 393410 -192.30.126.0/24 19905 -192.30.127.0/24 46821 -192.30.128.0/23 14567 -192.30.130.0/24 62661 -192.30.131.0/24 14567 -192.30.132.0/22 14567 -192.30.136.0/22 53755 -192.30.140.0/23 56473 -192.30.142.0/24 23498 -192.30.143.0/24 18668 -192.30.144.0/23 393555 -192.30.146.0/24 14681 -192.30.149.0/24 23498 -192.30.150.0/23 10723 -192.30.152.0/21 27216 -192.30.176.0/21 32524 -192.30.184.0/22 54578 -192.30.188.0/23 10780 -192.30.190.0/24 39952 -192.30.192.0/21 54816 -192.30.201.0/24 32599 -192.30.202.0/24 23498 -192.30.203.0/24 36281 -192.30.204.0/23 393321 -192.30.208.0/24 14209 -192.30.209.0/24 10896 -192.30.210.0/23 3549 -192.30.212.0/23 54840 -192.30.216.0/23 23275 -192.30.218.0/24 23275 -192.30.220.0/23 23275 -192.30.222.0/24 23275 -192.30.224.0/23 32304 -192.30.226.0/24 23498 -192.30.227.0/24 19770 -192.30.228.0/22 10913 -192.30.232.0/21 30028 -192.30.240.0/22 39988 -192.30.244.0/23 54481 -192.30.249.0/24 20141 -192.30.250.0/23 46640 -192.30.252.0/22 36459 -192.31.0.0/24 17 -192.31.2.0/24 29 -192.31.4.0/24 7834 -192.31.7.0/24 109 -192.31.9.0/24 3555 -192.31.13.0/24 1516 -192.31.14.0/24 40971 -192.31.15.0/24 36729 -192.31.21.0/24 195 -192.31.22.0/24 6805 -192.31.23.0/24 2611 -192.31.26.0/24 42831 -192.31.31.0/24 13205 -192.31.32.0/24 72 -192.31.36.0/24 72 -192.31.37.0/24 4826 -192.31.41.0/24 11719 -192.31.43.0/24 31 -192.31.46.0/24 2552 -192.31.49.0/24 26988 -192.31.50.0/23 46789 -192.31.52.0/22 15127 -192.31.56.0/22 54190 -192.31.60.0/23 393512 -192.31.74.0/24 7834 -192.31.80.0/24 20172 -192.31.83.0/24 5078 -192.31.87.0/24 7018 -192.31.88.0/24 302 -192.31.89.0/24 4511 -192.31.91.0/24 393404 -192.31.93.0/24 393407 -192.31.94.0/24 16757 -192.31.95.0/24 393282 -192.31.96.0/24 50 -192.31.102.0/24 3320 -192.31.104.0/24 2738 -192.31.105.0/24 25 -192.31.106.0/24 6075 -192.31.107.0/24 3464 -192.31.108.0/24 7939 -192.31.110.0/24 21759 -192.31.112.0/24 3592 -192.31.114.0/24 3680 -192.31.121.0/24 2907 -192.31.125.0/24 30704 -192.31.126.0/23 23165 -192.31.128.0/22 54098 -192.31.132.0/24 54098 -192.31.133.0/24 26512 -192.31.134.0/24 62731 -192.31.135.0/24 54098 -192.31.136.0/23 54098 -192.31.138.0/24 54098 -192.31.141.0/24 62935 -192.31.142.0/23 54098 -192.31.144.0/24 10943 -192.31.146.0/24 6106 -192.31.147.0/24 668 -192.31.153.0/24 22213 -192.31.155.0/24 103 -192.31.156.0/24 11351 -192.31.157.0/24 393479 -192.31.158.0/24 27064 -192.31.161.0/24 393282 -192.31.163.0/24 40371 -192.31.165.0/24 7018 -192.31.168.0/22 1161 -192.31.177.0/24 40478 -192.31.178.0/23 393506 -192.31.180.0/24 394971 -192.31.182.0/23 46296 -192.31.184.0/22 32421 -192.31.188.0/23 54017 -192.31.190.0/24 22233 -192.31.192.0/24 26708 -192.31.196.0/24 112 -192.31.198.0/23 23793 -192.31.200.0/22 23793 -192.31.204.0/23 23793 -192.31.206.0/24 23793 -192.31.208.0/23 12165 -192.31.214.0/24 36200 -192.31.215.0/24 13476 -192.31.216.0/24 10430 -192.31.222.0/24 13951 -192.31.228.0/24 393523 -192.31.229.0/24 10753 -192.31.231.0/24 1103 -192.31.234.0/24 40566 -192.31.236.0/24 29 -192.31.237.0/24 18719 -192.31.242.0/24 27277 -192.31.243.0/24 14593 -192.31.244.0/24 393419 -192.31.248.0/24 1906 -192.31.253.0/24 103 -192.31.255.0/24 35943 -192.33.0.0/23 19393 -192.33.4.0/24 2149 -192.33.5.0/24 367 -192.33.6.0/23 1541 -192.33.8.0/24 1541 -192.33.9.0/24 1468 -192.33.10.0/24 2018 -192.33.11.0/24 36637 -192.33.12.0/24 396349 -192.33.13.0/24 13 -192.33.14.0/24 20172 -192.33.17.0/24 22461 -192.33.18.0/24 36362 -192.33.19.0/24 16411 -192.33.22.0/23 53998 -192.33.24.0/21 33047 -192.33.32.0/24 22802 -192.33.34.0/24 29838 -192.33.87.0/24 559 -192.33.88.0/21 559 -192.33.96.0/21 559 -192.33.104.0/22 559 -192.33.108.0/23 559 -192.33.110.0/24 559 -192.33.111.0/24 6776 -192.33.112.0/24 773 -192.33.115.0/24 225 -192.33.116.0/24 12118 -192.33.117.0/24 225 -192.33.118.0/23 559 -192.33.120.0/21 559 -192.33.128.0/24 43 -192.33.132.0/23 47762 -192.33.134.0/24 19 -192.33.135.0/24 23793 -192.33.136.0/24 40674 -192.33.139.0/24 53698 -192.33.140.0/23 1706 -192.33.146.0/24 3900 -192.33.147.0/24 3215 -192.33.153.0/24 1945 -192.33.156.0/24 2445 -192.33.158.0/24 777 -192.33.159.0/24 2200 -192.33.162.0/24 1945 -192.33.163.0/24 206853 -192.33.167.0/24 393990 -192.33.168.0/24 31788 -192.33.173.0/24 25625 -192.33.182.0/24 2445 -192.33.187.0/24 13546 -192.33.191.0/24 6141 -192.33.192.0/19 559 -192.33.224.0/21 559 -192.33.232.0/24 3955 -192.33.235.0/24 21286 -192.33.238.0/23 21286 -192.33.240.0/24 54297 -192.33.252.0/24 174 -192.33.253.0/24 11482 -192.33.255.0/24 12276 -192.34.0.0/20 52347 -192.34.16.0/23 393380 -192.34.18.0/24 36819 -192.34.20.0/23 32743 -192.34.22.0/24 32743 -192.34.23.0/24 21699 -192.34.24.0/24 14458 -192.34.26.0/24 54133 -192.34.28.0/22 17306 -192.34.34.0/24 18904 -192.34.35.0/24 33652 -192.34.40.0/21 14265 -192.34.48.0/23 26796 -192.34.51.0/24 393409 -192.34.52.0/23 14442 -192.34.54.0/24 14442 -192.34.55.0/24 23498 -192.34.56.0/21 14061 -192.34.64.0/22 20454 -192.34.70.0/24 6327 -192.34.73.0/24 46139 -192.34.74.0/23 393651 -192.34.76.0/24 20324 -192.34.80.0/21 33083 -192.34.88.0/23 63098 -192.34.91.0/24 33629 -192.34.92.0/22 54044 -192.34.100.0/22 13830 -192.34.104.0/23 18864 -192.34.106.0/24 26822 -192.34.107.0/24 3246 -192.34.108.0/23 23033 -192.34.110.0/24 23033 -192.34.111.0/24 62904 -192.34.112.0/22 394752 -192.34.117.0/24 23473 -192.34.118.0/23 63116 -192.34.120.0/21 53608 -192.34.128.0/20 395876 -192.34.144.0/24 17054 -192.34.146.0/23 2386 -192.34.148.0/22 32098 -192.34.156.0/22 396056 -192.34.160.0/21 4922 -192.34.168.0/24 54712 -192.34.170.0/23 12275 -192.34.172.0/22 54665 -192.34.176.0/23 47033 -192.34.178.0/24 22455 -192.34.179.0/24 1759 -192.34.180.0/24 393420 -192.34.182.0/23 46498 -192.34.184.0/22 22546 -192.34.188.0/22 16486 -192.34.196.0/23 12208 -192.34.198.0/24 53620 -192.34.199.0/24 31790 -192.34.200.0/21 18853 -192.34.208.0/22 25649 -192.34.213.0/24 393485 -192.34.215.0/24 16899 -192.34.216.0/21 22457 -192.34.224.0/21 803 -192.34.232.0/24 393482 -192.34.233.0/24 6075 -192.34.234.0/24 22547 -192.34.235.0/24 7342 -192.34.236.0/24 7342 -192.34.237.0/24 40717 -192.34.238.0/24 7342 -192.34.239.0/24 23317 -192.34.240.0/23 35914 -192.34.242.0/24 35914 -192.34.244.0/24 1541 -192.34.245.0/24 393435 -192.34.248.0/21 13415 -192.35.13.0/24 55480 -192.35.14.0/24 55480 -192.35.16.0/22 15465 -192.35.20.0/24 30437 -192.35.22.0/23 6075 -192.35.24.0/24 6075 -192.35.29.0/24 30437 -192.35.34.0/24 3921 -192.35.35.0/24 6075 -192.35.37.0/24 14531 -192.35.43.0/24 8767 -192.35.44.0/24 3921 -192.35.46.0/23 4503 -192.35.48.0/23 225 -192.35.50.0/24 714 -192.35.51.0/24 22547 -192.35.59.0/24 4637 -192.35.61.0/24 17342 -192.35.63.0/24 680 -192.35.64.0/24 680 -192.35.66.0/23 680 -192.35.68.0/22 680 -192.35.72.0/24 29484 -192.35.78.0/24 46887 -192.35.79.0/24 22093 -192.35.82.0/24 26 -192.35.83.0/24 12229 -192.35.84.0/24 1906 -192.35.85.0/24 21827 -192.35.86.0/24 57 -192.35.89.0/24 29 -192.35.94.0/24 7 -192.35.98.0/24 16922 -192.35.104.0/24 393454 -192.35.105.0/24 7018 -192.35.127.0/24 14833 -192.35.129.0/24 6629 -192.35.133.0/24 21286 -192.35.139.0/24 47082 -192.35.140.0/24 53378 -192.35.145.0/24 35889 -192.35.149.0/24 680 -192.35.150.0/23 680 -192.35.152.0/23 680 -192.35.156.0/24 11030 -192.35.157.0/24 40858 -192.35.158.0/24 36113 -192.35.171.0/24 1280 -192.35.172.0/24 786 -192.35.174.0/23 11791 -192.35.176.0/22 11791 -192.35.193.0/24 3428 -192.35.194.0/24 397495 -192.35.195.0/24 6373 -192.35.198.0/24 42831 -192.35.199.0/24 46363 -192.35.200.0/22 53610 -192.35.205.0/24 206853 -192.35.206.0/24 12586 -192.35.208.0/24 132 -192.35.209.0/24 25 -192.35.215.0/24 11293 -192.35.216.0/22 11293 -192.35.220.0/24 5739 -192.35.221.0/24 52 -192.35.222.0/24 131 -192.35.225.0/24 52 -192.35.226.0/24 52 -192.35.229.0/24 47610 -192.35.232.0/24 7018 -192.35.240.0/22 679 -192.35.246.0/24 35038 -192.35.249.0/24 11742 -192.35.250.0/24 63141 -192.35.252.0/24 393462 -192.35.255.0/24 14198 -192.36.0.0/24 35041 -192.36.1.0/24 12552 -192.36.4.0/24 35041 -192.36.5.0/24 1257 -192.36.6.0/24 35041 -192.36.7.0/24 9201 -192.36.8.0/23 8473 -192.36.10.0/24 25176 -192.36.11.0/24 42303 -192.36.13.0/24 3246 -192.36.14.0/24 3246 -192.36.16.0/24 3301 -192.36.17.0/24 35041 -192.36.18.0/24 3246 -192.36.19.0/24 1257 -192.36.21.0/24 12552 -192.36.22.0/24 2119 -192.36.23.0/24 51747 -192.36.24.0/24 51747 -192.36.25.0/24 45011 -192.36.28.0/24 205664 -192.36.29.0/24 207090 -192.36.30.0/24 47699 -192.36.31.0/24 197595 -192.36.32.0/23 12782 -192.36.34.0/24 12782 -192.36.35.0/24 12552 -192.36.36.0/24 198549 -192.36.37.0/24 2119 -192.36.38.0/23 57169 -192.36.40.0/24 25176 -192.36.42.0/24 1653 -192.36.43.0/24 1257 -192.36.44.0/23 5411 -192.36.49.0/24 2865 -192.36.52.0/23 51747 -192.36.55.0/24 9201 -192.36.56.0/24 57169 -192.36.57.0/24 50613 -192.36.58.0/24 29518 -192.36.59.0/24 158 -192.36.66.0/23 35041 -192.36.68.0/24 3246 -192.36.69.0/24 47171 -192.36.70.0/23 51747 -192.36.73.0/24 35100 -192.36.74.0/23 3301 -192.36.76.0/24 3301 -192.36.80.0/24 1257 -192.36.81.0/24 20626 -192.36.84.0/24 198476 -192.36.85.0/24 35041 -192.36.86.0/24 198476 -192.36.88.0/24 41105 -192.36.89.0/24 35041 -192.36.92.0/24 47171 -192.36.93.0/24 2843 -192.36.94.0/24 2843 -192.36.95.0/24 3301 -192.36.96.0/24 3301 -192.36.97.0/24 199902 -192.36.98.0/24 47171 -192.36.99.0/24 3301 -192.36.100.0/24 35041 -192.36.101.0/24 198840 -192.36.102.0/24 35041 -192.36.103.0/24 8473 -192.36.104.0/24 12782 -192.36.105.0/24 35041 -192.36.107.0/24 158 -192.36.108.0/24 158 -192.36.109.0/24 51747 -192.36.110.0/24 51747 -192.36.111.0/24 2841 -192.36.112.0/23 2833 -192.36.115.0/24 30880 -192.36.117.0/24 201013 -192.36.119.0/24 42708 -192.36.120.0/24 3301 -192.36.121.0/24 42708 -192.36.122.0/23 35041 -192.36.124.0/24 35041 -192.36.125.0/24 1653 -192.36.127.0/24 2838 -192.36.128.0/24 35041 -192.36.132.0/24 3246 -192.36.133.0/24 39871 -192.36.134.0/24 39870 -192.36.135.0/24 39840 -192.36.136.0/23 51747 -192.36.138.0/24 1257 -192.36.141.0/24 35041 -192.36.142.0/24 35041 -192.36.143.0/24 1880 -192.36.144.0/24 8674 -192.36.146.0/24 1881 -192.36.147.0/24 1880 -192.36.148.0/23 29216 -192.36.152.0/24 3246 -192.36.154.0/24 42708 -192.36.155.0/24 206774 -192.36.156.0/22 158 -192.36.160.0/22 158 -192.36.164.0/23 158 -192.36.166.0/24 42708 -192.36.168.0/24 35041 -192.36.169.0/24 197308 -192.36.170.0/24 35041 -192.36.171.0/24 1653 -192.36.172.0/23 51747 -192.36.177.0/24 51747 -192.36.178.0/24 51747 -192.36.179.0/24 35041 -192.36.182.0/24 35100 -192.36.185.0/24 2841 -192.36.187.0/24 2119 -192.36.189.0/24 57208 -192.36.190.0/23 3301 -192.36.192.0/24 1654 -192.36.193.0/24 41105 -192.36.194.0/24 35041 -192.36.195.0/24 8769 -192.36.196.0/23 35041 -192.36.198.0/24 42708 -192.36.199.0/24 197308 -192.36.201.0/24 19399 -192.36.202.0/24 19399 -192.36.203.0/24 8473 -192.36.204.0/24 8473 -192.36.205.0/24 35041 -192.36.207.0/24 42708 -192.36.208.0/24 197595 -192.36.209.0/24 35041 -192.36.213.0/24 61413 -192.36.214.0/23 198549 -192.36.216.0/24 3246 -192.36.217.0/24 42708 -192.36.219.0/24 35041 -192.36.220.0/23 3246 -192.36.222.0/23 158 -192.36.224.0/23 2841 -192.36.226.0/24 42708 -192.36.229.0/24 158 -192.36.230.0/24 45011 -192.36.232.0/24 43948 -192.36.233.0/24 51747 -192.36.234.0/24 51747 -192.36.236.0/24 5601 -192.36.239.0/24 21195 -192.36.240.0/24 35041 -192.36.241.0/24 42708 -192.36.243.0/24 35041 -192.36.244.0/24 3246 -192.36.245.0/24 2841 -192.36.246.0/24 205199 -192.36.247.0/24 208610 -192.36.248.0/24 42708 -192.36.249.0/24 35041 -192.36.251.0/24 9201 -192.36.253.0/24 5601 -192.36.254.0/24 45011 -192.36.255.0/24 35041 -192.38.0.0/17 1835 -192.38.128.0/17 9158 -192.40.0.0/22 3361 -192.40.4.0/23 394646 -192.40.6.0/24 393473 -192.40.23.0/24 18951 -192.40.24.0/24 22757 -192.40.26.0/23 20397 -192.40.28.0/24 25770 -192.40.30.0/23 19790 -192.40.32.0/22 27381 -192.40.36.0/23 27381 -192.40.39.0/24 27381 -192.40.40.0/23 23110 -192.40.42.0/24 393438 -192.40.44.0/23 63151 -192.40.46.0/24 393470 -192.40.49.0/24 53943 -192.40.52.0/24 54250 -192.40.55.0/24 20395 -192.40.56.0/22 46562 -192.40.60.0/24 13889 -192.40.62.0/23 26811 -192.40.64.0/24 53766 -192.40.66.0/23 63176 -192.40.68.0/24 32930 -192.40.69.0/24 12586 -192.40.70.0/23 51485 -192.40.72.0/23 5420 -192.40.74.0/24 8236 -192.40.75.0/24 5420 -192.40.76.0/22 5420 -192.40.80.0/24 198386 -192.40.82.0/23 17178 -192.40.86.0/23 3855 -192.40.88.0/24 52219 -192.40.89.0/24 46805 -192.40.90.0/23 46805 -192.40.92.0/23 46805 -192.40.94.0/24 206146 -192.40.95.0/24 52219 -192.40.96.0/21 30539 -192.40.104.0/23 54086 -192.40.107.0/24 54086 -192.40.108.0/24 63115 -192.40.109.0/24 11364 -192.40.110.0/23 25670 -192.40.112.0/22 33494 -192.40.116.0/24 14615 -192.40.117.0/24 35955 -192.40.118.0/23 39968 -192.40.120.0/22 46445 -192.40.125.0/24 46445 -192.40.126.0/23 46445 -192.40.128.0/23 3785 -192.40.132.0/24 3785 -192.40.133.0/24 396371 -192.40.134.0/24 30304 -192.40.136.0/22 36817 -192.40.140.0/23 32030 -192.40.142.0/24 14472 -192.40.144.0/21 29854 -192.40.152.0/23 63224 -192.40.154.0/24 40482 -192.40.157.0/24 7018 -192.40.158.0/24 393425 -192.40.164.0/22 19005 -192.40.168.0/21 19005 -192.40.176.0/20 19005 -192.40.192.0/21 62674 -192.40.200.0/24 8015 -192.40.202.0/23 63161 -192.40.204.0/22 46692 -192.40.208.0/21 22667 -192.40.216.0/24 63306 -192.40.218.0/23 18870 -192.40.220.0/22 54829 -192.40.224.0/22 25222 -192.40.229.0/24 63458 -192.40.230.0/23 29714 -192.40.232.0/21 15290 -192.40.240.0/22 33044 -192.40.244.0/24 395317 -192.40.247.0/24 63108 -192.40.252.0/23 32428 -192.41.0.0/20 13951 -192.41.16.0/21 13951 -192.41.24.0/22 13951 -192.41.28.0/23 13951 -192.41.30.0/24 13951 -192.41.31.0/24 17341 -192.41.32.0/19 13951 -192.41.64.0/23 13951 -192.41.66.0/24 13951 -192.41.67.0/24 29951 -192.41.68.0/23 13951 -192.41.70.0/24 29951 -192.41.71.0/24 13951 -192.41.72.0/21 13951 -192.41.80.0/20 13951 -192.41.96.0/22 13951 -192.41.100.0/23 13951 -192.41.103.0/24 786 -192.41.104.0/21 786 -192.41.112.0/20 786 -192.41.128.0/22 786 -192.41.132.0/22 559 -192.41.136.0/24 559 -192.41.140.0/24 1837 -192.41.148.0/24 16569 -192.41.149.0/24 559 -192.41.150.0/23 559 -192.41.152.0/21 559 -192.41.160.0/24 559 -192.41.162.0/24 20431 -192.41.168.0/23 6071 -192.41.170.0/24 4767 -192.41.172.0/24 7015 -192.41.177.0/24 393550 -192.41.192.0/24 2515 -192.41.200.0/24 33610 -192.41.202.0/24 721 -192.41.206.0/24 3382 -192.41.208.0/24 31 -192.41.211.0/24 11711 -192.41.213.0/24 1842 -192.41.214.0/24 16668 -192.41.216.0/24 198423 -192.41.218.0/24 137 -192.41.222.0/24 7752 -192.41.226.0/24 19950 -192.41.227.0/24 60824 -192.41.228.0/24 393533 -192.41.229.0/24 237 -192.41.230.0/23 229 -192.41.232.0/23 36375 -192.41.234.0/23 237 -192.41.236.0/23 229 -192.41.238.0/24 237 -192.41.245.0/24 29825 -192.41.248.0/24 46319 -192.42.0.0/24 20348 -192.42.2.0/24 14244 -192.42.3.0/24 12148 -192.42.4.0/24 7086 -192.42.5.0/24 23237 -192.42.6.0/24 23237 -192.42.7.0/24 13476 -192.42.41.0/24 721 -192.42.42.0/23 559 -192.42.44.0/22 559 -192.42.55.0/24 5719 -192.42.63.0/24 5501 -192.42.64.0/24 5501 -192.42.65.0/24 12586 -192.42.71.0/24 26660 -192.42.72.0/23 63126 -192.42.74.0/24 393690 -192.42.77.0/24 1254 -192.42.82.0/24 2641 -192.42.83.0/24 29825 -192.42.88.0/24 1600 -192.42.89.0/24 33022 -192.42.92.0/24 10674 -192.42.93.0/24 22547 -192.42.94.0/24 4249 -192.42.95.0/24 7015 -192.42.96.0/24 63067 -192.42.97.0/24 205054 -192.42.98.0/24 7018 -192.42.99.0/24 37520 -192.42.101.0/24 395073 -192.42.110.0/24 63147 -192.42.113.0/24 1103 -192.42.114.0/23 1103 -192.42.116.0/22 1101 -192.42.120.0/24 1103 -192.42.121.0/24 1102 -192.42.122.0/23 1103 -192.42.124.0/22 1103 -192.42.128.0/22 1101 -192.42.132.0/24 1102 -192.42.141.0/24 668 -192.42.142.0/24 22773 -192.42.143.0/24 553 -192.42.144.0/24 73 -192.42.147.0/24 393592 -192.42.152.0/24 57 -192.42.153.0/24 31921 -192.42.173.0/24 10515 -192.42.174.0/24 20172 -192.42.175.0/24 20431 -192.42.176.0/23 10515 -192.42.178.0/24 20172 -192.42.180.0/22 559 -192.42.184.0/21 559 -192.42.192.0/21 559 -192.42.200.0/23 559 -192.42.205.0/24 54556 -192.42.239.0/24 31967 -192.42.240.0/24 3549 -192.42.241.0/24 23019 -192.42.244.0/23 721 -192.42.246.0/24 393458 -192.42.247.0/24 721 -192.42.251.0/24 393566 -192.42.252.0/24 10690 -192.42.253.0/24 12586 -192.42.255.0/24 31940 -192.43.0.0/24 55115 -192.43.64.0/18 10846 -192.43.153.0/24 36228 -192.43.154.0/23 397956 -192.43.156.0/22 396905 -192.43.162.0/24 3301 -192.43.164.0/24 3301 -192.43.165.0/24 1729 -192.43.168.0/24 3301 -192.43.169.0/24 1729 -192.43.170.0/23 3301 -192.43.172.0/24 10515 -192.43.186.0/23 63197 -192.43.188.0/24 292 -192.43.190.0/24 35949 -192.43.191.0/24 32487 -192.43.192.0/22 559 -192.43.196.0/24 559 -192.43.205.0/24 19773 -192.43.206.0/24 12182 -192.43.207.0/24 10148 -192.43.208.0/23 10148 -192.43.210.0/24 34108 -192.43.212.0/24 1103 -192.43.215.0/24 62611 -192.43.217.0/24 14041 -192.43.218.0/24 2828 -192.43.219.0/24 20161 -192.43.220.0/24 78 -192.43.223.0/24 63165 -192.43.226.0/24 135520 -192.43.227.0/24 1851 -192.43.228.0/24 1851 -192.43.230.0/23 7014 -192.43.232.0/23 393536 -192.43.238.0/24 53677 -192.43.239.0/24 7575 -192.43.242.0/24 393563 -192.43.244.0/24 194 -192.43.245.0/24 5691 -192.43.246.0/24 393526 -192.43.248.0/24 3549 -192.43.249.0/24 55032 -192.43.251.0/24 3561 -192.43.252.0/24 6200 -192.43.253.0/24 385 -192.43.254.0/24 397734 -192.43.255.0/24 393554 -192.44.0.0/22 5501 -192.44.4.0/23 680 -192.44.6.0/24 680 -192.44.7.0/24 60824 -192.44.8.0/24 680 -192.44.9.0/24 200943 -192.44.10.0/24 5501 -192.44.11.0/24 47610 -192.44.12.0/24 680 -192.44.13.0/24 5501 -192.44.14.0/24 60824 -192.44.15.0/24 680 -192.44.16.0/24 60824 -192.44.17.0/24 5501 -192.44.18.0/24 680 -192.44.19.0/24 60824 -192.44.20.0/23 680 -192.44.22.0/24 60824 -192.44.23.0/24 680 -192.44.24.0/24 5501 -192.44.25.0/24 680 -192.44.26.0/24 680 -192.44.27.0/24 60824 -192.44.28.0/22 680 -192.44.32.0/22 12643 -192.44.36.0/24 680 -192.44.37.0/24 5501 -192.44.38.0/23 680 -192.44.40.0/24 680 -192.44.63.0/24 9159 -192.44.66.0/24 2200 -192.44.68.0/24 63194 -192.44.69.0/24 13414 -192.44.70.0/24 20099 -192.44.75.0/24 50897 -192.44.76.0/24 209136 -192.44.77.0/24 2263 -192.44.78.0/24 2269 -192.44.81.0/24 680 -192.44.82.0/23 680 -192.44.84.0/22 680 -192.44.88.0/23 680 -192.44.90.0/24 680 -192.44.92.0/22 11003 -192.44.104.0/22 11003 -192.44.112.0/22 11003 -192.44.116.0/23 11003 -192.44.120.0/22 11003 -192.44.124.0/24 11003 -192.44.126.0/24 11003 -192.44.128.0/20 11003 -192.44.144.0/21 11003 -192.44.156.0/23 11003 -192.44.162.0/24 11003 -192.44.168.0/21 11003 -192.44.176.0/23 11003 -192.44.180.0/22 11003 -192.44.184.0/22 11003 -192.44.188.0/23 11003 -192.44.190.0/24 11003 -192.44.195.0/24 11003 -192.44.196.0/22 11003 -192.44.200.0/23 11003 -192.44.204.0/22 11003 -192.44.209.0/24 11003 -192.44.210.0/23 11003 -192.44.212.0/23 11003 -192.44.214.0/24 11003 -192.44.240.0/21 19399 -192.44.248.0/22 19399 -192.44.255.0/24 19950 -192.45.0.0/16 1906 -192.46.6.0/24 51964 -192.46.8.0/22 51964 -192.46.16.0/24 51964 -192.46.18.0/24 51964 -192.46.20.0/23 51964 -192.46.52.0/23 17062 -192.46.71.0/24 1759 -192.46.80.0/24 17200 -192.46.82.0/23 25951 -192.46.108.0/24 6629 -192.46.110.0/23 25951 -192.46.174.0/23 3585 -192.46.176.0/24 3585 -192.47.1.0/24 2907 -192.47.2.0/23 2907 -192.47.16.0/22 2907 -192.47.64.0/21 17955 -192.47.97.0/24 2522 -192.47.144.0/20 131911 -192.47.160.0/24 7674 -192.47.161.0/24 2497 -192.47.162.0/23 4697 -192.47.164.0/23 4697 -192.47.167.0/24 2511 -192.47.168.0/23 173 -192.47.170.0/23 7674 -192.47.172.0/23 7674 -192.47.174.0/23 4710 -192.47.176.0/22 4710 -192.47.204.0/23 2907 -192.47.240.0/24 7661 -192.47.242.0/24 5691 -192.47.243.0/24 30 -192.47.244.0/22 559 -192.47.248.0/23 559 -192.47.253.0/24 54875 -192.47.255.0/24 852 -192.48.2.0/23 5400 -192.48.8.0/22 7474 -192.48.14.0/24 270 -192.48.15.0/24 2030 -192.48.16.0/23 5400 -192.48.18.0/23 2030 -192.48.20.0/24 2030 -192.48.22.0/24 5400 -192.48.23.0/24 2030 -192.48.24.0/24 5400 -192.48.25.0/24 2030 -192.48.26.0/24 5400 -192.48.32.0/24 46573 -192.48.35.0/24 206 -192.48.36.0/24 206 -192.48.40.0/21 206 -192.48.49.0/24 206 -192.48.54.0/24 206 -192.48.79.0/24 10515 -192.48.80.0/24 264 -192.48.82.0/23 14380 -192.48.84.0/22 53837 -192.48.88.0/22 14613 -192.48.95.0/24 22198 -192.48.96.0/24 701 -192.48.97.0/24 6062 -192.48.98.0/24 63087 -192.48.101.0/24 393531 -192.48.105.0/24 26365 -192.48.107.0/24 56357 -192.48.111.0/24 773 -192.48.112.0/24 23171 -192.48.113.0/24 397920 -192.48.114.0/23 5691 -192.48.118.0/23 393946 -192.48.120.0/23 393946 -192.48.122.0/24 393946 -192.48.124.0/24 1842 -192.48.125.0/24 16411 -192.48.134.0/23 1761 -192.48.136.0/24 22276 -192.48.138.0/24 7349 -192.48.140.0/24 62870 -192.48.142.0/24 100 -192.48.180.0/22 157 -192.48.184.0/21 157 -192.48.210.0/24 6305 -192.48.211.0/24 396258 -192.48.218.0/23 19838 -192.48.223.0/24 54054 -192.48.225.0/24 8075 -192.48.227.0/24 53420 -192.48.230.0/24 18636 -192.48.233.0/24 29764 -192.48.234.0/24 19662 -192.48.236.0/23 63179 -192.48.238.0/24 32982 -192.48.239.0/24 32607 -192.48.240.0/23 19682 -192.48.242.0/24 668 -192.48.243.0/24 31779 -192.48.255.0/24 393548 -192.49.0.0/21 375 -192.49.8.0/23 719 -192.49.10.0/24 375 -192.49.11.0/24 764 -192.49.12.0/24 764 -192.49.14.0/24 764 -192.49.16.0/23 764 -192.49.18.0/24 764 -192.49.19.0/24 375 -192.49.20.0/24 375 -192.49.21.0/24 764 -192.49.22.0/24 375 -192.49.23.0/24 764 -192.49.24.0/23 764 -192.49.26.0/24 764 -192.49.28.0/22 764 -192.49.32.0/24 719 -192.49.34.0/23 764 -192.49.36.0/22 375 -192.49.40.0/23 375 -192.49.50.0/24 719 -192.49.52.0/23 375 -192.49.55.0/24 375 -192.49.56.0/21 375 -192.49.64.0/22 375 -192.49.68.0/24 375 -192.49.69.0/24 719 -192.49.70.0/23 375 -192.49.72.0/23 375 -192.49.74.0/23 764 -192.49.76.0/23 764 -192.49.78.0/24 719 -192.49.79.0/24 764 -192.49.80.0/24 764 -192.49.82.0/23 764 -192.49.84.0/23 764 -192.49.86.0/23 375 -192.49.90.0/24 49422 -192.49.91.0/24 375 -192.49.92.0/22 375 -192.49.96.0/24 375 -192.49.98.0/23 375 -192.49.100.0/23 375 -192.49.102.0/24 719 -192.49.103.0/24 375 -192.49.104.0/24 375 -192.49.106.0/23 375 -192.49.108.0/22 375 -192.49.112.0/22 375 -192.49.116.0/24 764 -192.49.118.0/24 764 -192.49.119.0/24 375 -192.49.120.0/22 375 -192.49.124.0/23 375 -192.49.126.0/24 375 -192.49.127.0/24 764 -192.49.131.0/24 375 -192.49.134.0/24 375 -192.49.135.0/24 764 -192.49.136.0/23 375 -192.49.138.0/24 764 -192.49.139.0/24 375 -192.49.140.0/23 375 -192.49.144.0/24 375 -192.49.145.0/24 764 -192.49.146.0/24 375 -192.49.147.0/24 764 -192.49.148.0/22 375 -192.49.152.0/21 375 -192.49.160.0/23 375 -192.49.163.0/24 375 -192.49.164.0/22 375 -192.49.168.0/23 375 -192.49.170.0/24 375 -192.49.171.0/24 719 -192.49.172.0/24 719 -192.49.173.0/24 375 -192.49.174.0/23 375 -192.49.176.0/20 375 -192.49.192.0/20 375 -192.49.208.0/23 375 -192.49.210.0/24 719 -192.49.211.0/24 375 -192.49.212.0/22 375 -192.49.216.0/21 375 -192.49.224.0/19 375 -192.50.0.0/21 4730 -192.50.8.0/23 2504 -192.50.12.0/24 24287 -192.50.24.0/23 2504 -192.50.28.0/24 2907 -192.50.30.0/23 2907 -192.50.43.0/24 23634 -192.50.44.0/23 7500 -192.50.56.0/24 17687 -192.50.66.0/23 24261 -192.50.68.0/24 24261 -192.50.69.0/24 2907 -192.50.70.0/23 2907 -192.50.72.0/24 2907 -192.50.73.0/24 23793 -192.50.101.0/24 2907 -192.50.102.0/23 2907 -192.50.106.0/23 2907 -192.50.108.0/24 2907 -192.50.109.0/24 17932 -192.50.110.0/24 2519 -192.50.138.0/23 59118 -192.50.140.0/22 59118 -192.50.144.0/22 59118 -192.50.151.0/24 55396 -192.50.152.0/24 55396 -192.50.154.0/24 37914 -192.50.192.0/23 2907 -192.50.199.0/24 9597 -192.50.210.0/23 2907 -192.50.212.0/24 2907 -192.50.220.0/24 59128 -192.50.235.0/24 2522 -192.50.252.0/23 2497 -192.51.5.0/24 2116 -192.51.39.0/24 17944 -192.51.43.0/24 2510 -192.51.48.0/24 15356 -192.51.52.0/23 17676 -192.51.54.0/24 17676 -192.51.55.0/24 10021 -192.51.59.0/24 23720 -192.51.144.0/21 17511 -192.51.168.0/22 2907 -192.51.188.0/24 136038 -192.51.192.0/23 11094 -192.51.194.0/23 2907 -192.51.208.0/20 2501 -192.51.224.0/24 4680 -192.51.228.0/23 2516 -192.51.250.0/24 7661 -192.52.0.0/19 553 -192.52.32.0/20 553 -192.52.48.0/23 553 -192.52.50.0/24 553 -192.52.57.0/24 4983 -192.52.60.0/24 4983 -192.52.61.0/24 3 -192.52.62.0/23 3 -192.52.64.0/23 3 -192.52.67.0/24 7349 -192.52.69.0/24 6939 -192.52.70.0/24 68 -192.52.72.0/23 4739 -192.52.74.0/23 40608 -192.52.78.0/24 270 -192.52.80.0/23 270 -192.52.83.0/24 270 -192.52.86.0/23 270 -192.52.88.0/22 270 -192.52.92.0/24 270 -192.52.94.0/23 270 -192.52.98.0/24 270 -192.52.106.0/24 194 -192.52.109.0/24 36359 -192.52.114.0/23 22773 -192.52.117.0/24 1503 -192.52.158.0/24 393520 -192.52.162.0/24 31952 -192.52.163.0/24 4130 -192.52.164.0/23 4130 -192.52.166.0/23 8100 -192.52.168.0/23 30072 -192.52.177.0/24 26589 -192.52.178.0/24 20431 -192.52.179.0/24 11537 -192.52.183.0/24 3549 -192.52.188.0/22 25956 -192.52.192.0/24 398243 -192.52.194.0/24 120 -192.52.198.0/24 270 -192.52.207.0/24 270 -192.52.211.0/24 270 -192.52.216.0/23 270 -192.52.218.0/24 19999 -192.52.219.0/24 46356 -192.52.220.0/24 20337 -192.52.227.0/24 394861 -192.52.233.0/24 243 -192.52.234.0/23 243 -192.52.236.0/24 243 -192.52.240.0/24 4130 -192.52.241.0/24 63244 -192.52.242.0/23 17216 -192.52.247.0/24 394990 -192.52.248.0/23 394990 -192.52.250.0/23 397554 -192.53.24.0/21 203211 -192.53.35.0/24 19555 -192.53.40.0/22 2129 -192.53.44.0/23 19647 -192.53.80.0/20 54735 -192.53.97.0/24 1642 -192.53.103.0/24 680 -192.53.104.0/24 3303 -192.53.157.0/24 1759 -192.53.187.0/24 31790 -192.54.34.0/23 680 -192.54.36.0/24 8937 -192.54.39.0/24 8767 -192.54.41.0/24 680 -192.54.42.0/24 12816 -192.54.43.0/24 15743 -192.54.44.0/24 8687 -192.54.45.0/24 13039 -192.54.47.0/24 205736 -192.54.48.0/24 3320 -192.54.49.0/24 680 -192.54.53.0/24 393567 -192.54.54.0/23 41507 -192.54.56.0/22 9009 -192.54.60.0/24 680 -192.54.66.0/24 3320 -192.54.67.0/24 29037 -192.54.68.0/22 29037 -192.54.72.0/24 8220 -192.54.73.0/24 8767 -192.54.76.0/23 209307 -192.54.79.0/24 3320 -192.54.81.0/24 17294 -192.54.89.0/24 19773 -192.54.90.0/23 19773 -192.54.92.0/23 23433 -192.54.94.0/23 27 -192.54.96.0/21 27 -192.54.104.0/24 286 -192.54.105.0/24 6262 -192.54.106.0/24 6262 -192.54.107.0/24 15228 -192.54.112.0/24 10515 -192.54.122.0/24 6730 -192.54.123.0/24 46496 -192.54.124.0/24 55173 -192.54.135.0/24 4739 -192.54.136.0/24 27243 -192.54.139.0/24 2857 -192.54.140.0/24 393765 -192.54.143.0/24 777 -192.54.144.0/23 29104 -192.54.160.0/23 1303 -192.54.164.0/24 2269 -192.54.174.0/23 2200 -192.54.176.0/24 2200 -192.54.186.0/23 209307 -192.54.190.0/24 2200 -192.54.192.0/23 1301 -192.54.200.0/24 29104 -192.54.201.0/24 1303 -192.54.202.0/24 1303 -192.54.204.0/24 198773 -192.54.205.0/24 777 -192.54.206.0/23 777 -192.54.208.0/23 777 -192.54.210.0/24 781 -192.54.215.0/24 2200 -192.54.216.0/23 2200 -192.54.218.0/24 2200 -192.54.220.0/24 57367 -192.54.222.0/24 396527 -192.54.223.0/24 1742 -192.54.224.0/24 10961 -192.54.227.0/24 33695 -192.54.229.0/24 64239 -192.54.242.0/24 31782 -192.54.243.0/24 30629 -192.54.249.0/24 31 -192.54.252.0/24 54266 -192.54.255.0/24 397552 -192.55.2.0/23 18723 -192.55.4.0/23 18723 -192.55.6.0/24 398173 -192.55.14.0/23 18723 -192.55.16.0/22 18723 -192.55.27.0/24 1406 -192.55.28.0/24 1406 -192.55.35.0/24 4983 -192.55.42.0/24 1257 -192.55.44.0/23 4983 -192.55.46.0/24 55958 -192.55.48.0/21 4983 -192.55.60.0/23 4983 -192.55.62.0/24 4983 -192.55.64.0/22 4983 -192.55.68.0/22 55958 -192.55.72.0/22 4983 -192.55.78.0/23 4983 -192.55.82.0/24 4505 -192.55.83.0/24 20431 -192.55.85.0/24 40739 -192.55.86.0/24 7018 -192.55.87.0/24 14255 -192.55.90.0/23 270 -192.55.95.0/24 14397 -192.55.96.0/24 393395 -192.55.98.0/24 7575 -192.55.101.0/24 137 -192.55.105.0/24 2004 -192.55.106.0/24 3380 -192.55.108.0/24 1842 -192.55.109.0/24 199857 -192.55.112.0/24 17477 -192.55.117.0/24 668 -192.55.120.0/24 393557 -192.55.128.0/24 393553 -192.55.137.0/24 16761 -192.55.140.0/22 16761 -192.55.144.0/21 16761 -192.55.155.0/24 16761 -192.55.159.0/24 16761 -192.55.160.0/24 16761 -192.55.164.0/22 16761 -192.55.171.0/24 16761 -192.55.174.0/23 16761 -192.55.178.0/23 16761 -192.55.180.0/22 16761 -192.55.184.0/23 16761 -192.55.186.0/24 16761 -192.55.188.0/24 680 -192.55.191.0/24 62928 -192.55.192.0/24 16927 -192.55.193.0/24 5413 -192.55.195.0/24 33491 -192.55.197.0/24 12816 -192.55.200.0/24 393576 -192.55.205.0/24 63097 -192.55.208.0/24 26723 -192.55.210.0/24 7834 -192.55.215.0/24 393616 -192.55.217.0/24 393622 -192.55.228.0/24 11736 -192.55.229.0/24 36691 -192.55.231.0/24 26823 -192.55.234.0/24 30499 -192.55.236.0/24 4972 -192.55.240.0/24 22 -192.55.241.0/24 63171 -192.55.242.0/23 393639 -192.55.244.0/24 680 -192.55.245.0/24 26443 -192.55.247.0/24 63221 -192.55.248.0/24 36086 -192.55.250.0/23 23374 -192.55.252.0/23 64242 -192.55.254.0/23 31998 -192.56.8.0/24 262197 -192.56.9.0/24 7018 -192.56.10.0/23 7018 -192.56.12.0/23 7018 -192.56.20.0/24 2129 -192.56.22.0/24 2129 -192.56.25.0/24 2688 -192.56.26.0/24 6900 -192.56.28.0/24 7018 -192.56.30.0/24 7018 -192.56.31.0/24 2688 -192.56.37.0/24 2688 -192.56.38.0/23 2685 -192.56.40.0/23 7018 -192.56.42.0/24 7018 -192.56.43.0/24 2688 -192.56.44.0/23 7018 -192.56.46.0/24 13489 -192.56.47.0/24 2688 -192.56.53.0/24 7018 -192.56.58.0/23 33 -192.56.77.0/24 2687 -192.56.78.0/23 2687 -192.56.96.0/23 2687 -192.56.98.0/23 25888 -192.56.101.0/24 2687 -192.56.108.0/24 2687 -192.56.109.0/24 25888 -192.56.110.0/24 1226 -192.56.113.0/24 2687 -192.56.114.0/24 2687 -192.56.115.0/24 4765 -192.56.116.0/22 2687 -192.56.120.0/23 2687 -192.56.123.0/24 2687 -192.56.124.0/24 2687 -192.56.125.0/24 4800 -192.56.126.0/23 2687 -192.56.128.0/22 2687 -192.56.132.0/23 2687 -192.56.134.0/24 2687 -192.56.136.0/22 2687 -192.56.140.0/24 2687 -192.56.148.0/23 2686 -192.56.170.0/23 25888 -192.56.172.0/24 2686 -192.56.173.0/24 20804 -192.56.174.0/23 25888 -192.56.184.0/24 2686 -192.56.185.0/24 25888 -192.56.186.0/24 25888 -192.56.187.0/24 2686 -192.56.192.0/23 2686 -192.56.200.0/22 2686 -192.56.204.0/23 2686 -192.56.206.0/24 2686 -192.56.224.0/22 2686 -192.56.228.0/23 2686 -192.56.231.0/24 14381 -192.56.244.0/24 7122 -192.56.246.0/23 10430 -192.56.248.0/21 10430 -192.57.40.0/23 2161 -192.57.48.0/24 5714 -192.57.96.0/24 5714 -192.57.112.0/22 2158 -192.57.116.0/23 2158 -192.57.118.0/24 2158 -192.57.132.0/24 1293 -192.57.144.0/21 5714 -192.57.152.0/21 2159 -192.57.244.0/22 2160 -192.57.248.0/22 2160 -192.58.0.0/24 393593 -192.58.1.0/24 6629 -192.58.2.0/23 6629 -192.58.4.0/24 6629 -192.58.19.0/24 270 -192.58.21.0/24 270 -192.58.29.0/24 57702 -192.58.30.0/23 198737 -192.58.32.0/22 3264 -192.58.36.0/24 270 -192.58.38.0/24 72 -192.58.41.0/24 8837 -192.58.42.0/23 1759 -192.58.44.0/22 1759 -192.58.48.0/24 1759 -192.58.49.0/24 719 -192.58.50.0/23 1759 -192.58.52.0/22 1759 -192.58.56.0/22 29286 -192.58.60.0/22 1759 -192.58.64.0/20 1759 -192.58.80.0/21 1759 -192.58.88.0/23 1759 -192.58.90.0/23 32155 -192.58.92.0/22 29892 -192.58.96.0/24 19436 -192.58.107.0/24 9 -192.58.110.0/24 22782 -192.58.112.0/22 1970 -192.58.118.0/24 33239 -192.58.120.0/24 302 -192.58.122.0/24 13862 -192.58.123.0/24 21623 -192.58.125.0/24 10421 -192.58.127.0/24 6199 -192.58.128.0/24 10515 -192.58.131.0/24 7385 -192.58.132.0/24 63234 -192.58.134.0/23 703 -192.58.138.0/23 36525 -192.58.140.0/23 46408 -192.58.142.0/23 15344 -192.58.144.0/22 54473 -192.58.150.0/24 3957 -192.58.151.0/24 6629 -192.58.152.0/24 6629 -192.58.181.0/24 27066 -192.58.183.0/24 12229 -192.58.193.0/24 393522 -192.58.196.0/24 32601 -192.58.197.0/24 41175 -192.58.206.0/23 2165 -192.58.214.0/24 53336 -192.58.219.0/24 393672 -192.58.220.0/24 7961 -192.58.221.0/24 393282 -192.58.222.0/24 21623 -192.58.226.0/23 21286 -192.58.228.0/24 21286 -192.58.231.0/24 63331 -192.58.232.0/24 6629 -192.58.243.0/24 25975 -192.58.244.0/24 668 -192.58.246.0/24 26923 -192.58.247.0/24 4185 -192.58.248.0/24 30437 -192.58.252.0/23 3356 -192.58.255.0/24 46122 -192.59.0.0/19 6071 -192.59.32.0/22 15009 -192.59.36.0/22 25746 -192.59.40.0/24 24126 -192.59.44.0/23 6072 -192.59.48.0/22 6072 -192.59.54.0/23 24126 -192.59.56.0/22 2021 -192.59.64.0/20 6071 -192.59.84.0/24 24126 -192.59.86.0/23 6071 -192.59.96.0/19 6071 -192.59.128.0/19 6071 -192.59.160.0/21 6071 -192.59.168.0/22 6071 -192.59.172.0/23 6071 -192.59.174.0/24 6071 -192.59.175.0/24 24126 -192.59.176.0/24 24126 -192.59.177.0/24 6071 -192.59.178.0/23 6071 -192.59.180.0/22 6071 -192.59.184.0/23 6071 -192.59.186.0/24 6072 -192.59.187.0/24 6071 -192.59.188.0/22 6071 -192.59.192.0/24 6072 -192.59.193.0/24 6071 -192.59.194.0/23 6071 -192.59.196.0/22 6071 -192.59.200.0/21 6071 -192.59.208.0/21 6071 -192.59.216.0/23 6071 -192.59.218.0/24 17025 -192.59.219.0/24 6071 -192.59.220.0/22 6071 -192.59.224.0/19 6071 -192.64.0.0/24 29748 -192.64.1.0/24 10430 -192.64.2.0/23 26223 -192.64.4.0/22 22363 -192.64.8.0/22 19465 -192.64.12.0/24 397701 -192.64.14.0/24 396986 -192.64.20.0/22 21637 -192.64.24.0/24 53889 -192.64.25.0/24 6130 -192.64.26.0/23 53889 -192.64.30.0/23 63278 -192.64.32.0/22 22878 -192.64.36.0/23 62782 -192.64.39.0/24 35887 -192.64.40.0/22 54359 -192.64.44.0/23 210176 -192.64.52.0/22 36444 -192.64.56.0/21 30396 -192.64.64.0/23 46887 -192.64.66.0/24 46887 -192.64.67.0/24 55049 -192.64.69.0/24 6629 -192.64.70.0/23 63037 -192.64.72.0/21 19133 -192.64.80.0/21 19318 -192.64.89.0/24 7381 -192.64.90.0/23 2828 -192.64.92.0/23 25956 -192.64.94.0/24 25956 -192.64.95.0/24 33206 -192.64.97.0/24 15097 -192.64.100.0/24 577 -192.64.112.0/21 22612 -192.64.120.0/22 11139 -192.64.124.0/24 393683 -192.64.126.0/23 393716 -192.64.128.0/20 174 -192.64.144.0/21 19867 -192.64.152.0/22 26679 -192.64.156.0/24 393598 -192.64.159.0/24 20069 -192.64.166.0/23 63323 -192.64.168.0/21 6507 -192.64.176.0/21 62605 -192.64.184.0/22 62605 -192.64.188.0/23 62605 -192.64.190.0/24 62605 -192.64.191.0/24 396238 -192.64.192.0/22 46525 -192.64.199.0/24 393630 -192.64.200.0/24 40889 -192.64.203.0/24 36236 -192.64.204.0/24 36236 -192.64.205.0/24 12679 -192.64.208.0/20 21719 -192.64.224.0/23 53481 -192.64.236.0/22 11403 -192.64.244.0/23 35849 -192.64.246.0/24 35849 -192.64.248.0/24 6461 -192.64.252.0/24 35849 -192.65.0.0/24 393668 -192.65.39.0/24 10406 -192.65.40.0/23 10406 -192.65.42.0/24 10406 -192.65.77.0/24 40246 -192.65.78.0/24 3912 -192.65.79.0/24 3549 -192.65.88.0/22 7474 -192.65.92.0/23 559 -192.65.95.0/24 68 -192.65.130.0/24 134111 -192.65.131.0/24 2598 -192.65.133.0/24 393766 -192.65.134.0/24 17109 -192.65.138.0/24 63091 -192.65.141.0/24 393626 -192.65.143.0/24 2902 -192.65.153.0/24 13205 -192.65.154.0/23 54224 -192.65.156.0/22 17223 -192.65.160.0/23 46764 -192.65.162.0/24 55033 -192.65.163.0/24 46764 -192.65.164.0/22 46764 -192.65.168.0/23 19758 -192.65.170.0/24 22581 -192.65.172.0/24 46887 -192.65.176.0/24 2386 -192.65.177.0/24 16928 -192.65.182.0/24 9792 -192.65.183.0/24 513 -192.65.184.0/21 513 -192.65.192.0/22 513 -192.65.196.0/23 513 -192.65.213.0/24 40421 -192.65.215.0/24 13325 -192.65.219.0/24 2856 -192.65.220.0/24 51063 -192.65.221.0/24 2856 -192.65.222.0/23 2856 -192.65.224.0/22 2856 -192.65.228.0/24 2856 -192.65.229.0/24 62961 -192.65.230.0/23 25837 -192.65.232.0/21 812 -192.65.240.0/22 3800 -192.65.245.0/24 397644 -192.65.247.0/24 63245 -192.65.251.0/24 19773 -192.65.255.0/24 32092 -192.66.3.0/24 158 -192.66.5.0/24 158 -192.66.6.0/23 158 -192.66.8.0/22 158 -192.66.12.0/24 158 -192.66.25.0/24 3292 -192.66.33.0/24 3292 -192.66.36.0/24 3292 -192.66.38.0/24 3292 -192.66.41.0/24 158 -192.66.42.0/23 158 -192.66.44.0/22 158 -192.66.48.0/23 158 -192.66.60.0/22 31027 -192.66.64.0/23 5624 -192.66.100.0/23 39642 -192.66.102.0/24 39642 -192.66.103.0/24 3292 -192.66.104.0/21 3292 -192.66.112.0/22 3292 -192.66.119.0/24 34506 -192.66.163.0/24 58282 -192.66.172.0/24 44398 -192.66.175.0/24 3292 -192.66.180.0/23 3292 -192.67.2.0/24 32185 -192.67.4.0/24 39326 -192.67.7.0/24 12025 -192.67.10.0/24 11351 -192.67.11.0/24 6922 -192.67.14.0/24 11404 -192.67.24.0/21 19370 -192.67.32.0/22 30684 -192.67.36.0/23 393663 -192.67.38.0/24 14802 -192.67.40.0/24 63301 -192.67.43.0/24 7 -192.67.45.0/24 2665 -192.67.48.0/24 1766 -192.67.49.0/24 10753 -192.67.54.0/24 36010 -192.67.55.0/24 20676 -192.67.56.0/24 25676 -192.67.58.0/24 1880 -192.67.64.0/23 393681 -192.67.66.0/24 23104 -192.67.67.0/24 264 -192.67.68.0/24 30382 -192.67.72.0/24 22579 -192.67.75.0/24 53344 -192.67.76.0/24 1930 -192.67.78.0/24 2828 -192.67.80.0/24 668 -192.67.81.0/24 195 -192.67.82.0/24 195 -192.67.88.0/23 19819 -192.67.91.0/24 16966 -192.67.93.0/24 668 -192.67.109.0/24 12819 -192.67.110.0/24 270 -192.67.115.0/24 270 -192.67.118.0/24 270 -192.67.120.0/22 270 -192.67.131.0/24 393630 -192.67.132.0/23 40246 -192.67.134.0/24 20033 -192.67.157.0/24 19271 -192.67.159.0/24 394009 -192.67.161.0/24 55480 -192.67.164.0/24 32642 -192.67.166.0/24 55128 -192.67.167.0/24 3320 -192.67.169.0/24 393811 -192.67.172.0/24 63291 -192.67.185.0/24 393633 -192.67.186.0/24 12819 -192.67.188.0/24 393669 -192.67.189.0/24 553 -192.67.190.0/23 286 -192.67.197.0/24 6724 -192.67.198.0/24 6724 -192.67.200.0/21 12643 -192.67.208.0/24 553 -192.67.218.0/24 2857 -192.67.224.0/24 30171 -192.67.250.0/24 5769 -192.67.251.0/24 27046 -192.67.252.0/24 27046 -192.67.253.0/24 46446 -192.67.255.0/24 40676 -192.68.5.0/24 20488 -192.68.6.0/23 20488 -192.68.11.0/24 204911 -192.68.17.0/24 48777 -192.68.24.0/24 394384 -192.68.26.0/23 243 -192.68.28.0/24 243 -192.68.29.0/24 8002 -192.68.30.0/24 302 -192.68.39.0/24 22683 -192.68.40.0/23 202893 -192.68.42.0/24 202893 -192.68.51.0/24 198743 -192.68.67.0/24 4476 -192.68.68.0/22 4476 -192.68.72.0/24 4476 -192.68.73.0/24 271 -192.68.74.0/24 4476 -192.68.76.0/22 5619 -192.68.80.0/20 5619 -192.68.96.0/21 5619 -192.68.104.0/22 5619 -192.68.108.0/24 46887 -192.68.112.0/24 395464 -192.68.113.0/24 16983 -192.68.115.0/24 26698 -192.68.118.0/23 2013 -192.68.122.0/24 2013 -192.68.124.0/23 2013 -192.68.126.0/24 20431 -192.68.127.0/24 7342 -192.68.128.0/24 7342 -192.68.133.0/24 27198 -192.68.143.0/24 159 -192.68.145.0/24 4565 -192.68.149.0/24 63193 -192.68.150.0/24 54578 -192.68.151.0/24 205736 -192.68.152.0/24 205736 -192.68.153.0/24 786 -192.68.157.0/24 397402 -192.68.158.0/24 14149 -192.68.163.0/24 46641 -192.68.164.0/24 40111 -192.68.165.0/24 199578 -192.68.166.0/23 199578 -192.68.168.0/23 199578 -192.68.178.0/24 7018 -192.68.180.0/24 1239 -192.68.185.0/24 266869 -192.68.186.0/24 1930 -192.68.188.0/24 40788 -192.68.190.0/24 46694 -192.68.192.0/24 270 -192.68.194.0/24 270 -192.68.196.0/23 270 -192.68.202.0/24 3701 -192.68.203.0/24 3409 -192.68.205.0/24 19406 -192.68.208.0/24 15011 -192.68.209.0/24 1930 -192.68.211.0/24 12816 -192.68.212.0/22 12816 -192.68.217.0/24 7795 -192.68.221.0/24 1930 -192.68.223.0/24 600 -192.68.224.0/24 1930 -192.68.228.0/24 11360 -192.68.230.0/24 25599 -192.68.234.0/24 32444 -192.68.235.0/24 37918 -192.68.236.0/22 37918 -192.68.240.0/21 37918 -192.68.248.0/23 37918 -192.68.254.0/24 680 -192.68.255.0/24 25928 -192.69.1.0/24 11478 -192.69.2.0/23 393546 -192.69.4.0/22 26835 -192.69.8.0/21 39970 -192.69.16.0/22 16633 -192.69.20.0/24 53964 -192.69.21.0/24 21729 -192.69.22.0/23 393552 -192.69.24.0/21 14746 -192.69.32.0/21 20471 -192.69.40.0/22 14866 -192.69.44.0/23 27257 -192.69.47.0/24 47073 -192.69.48.0/20 11142 -192.69.65.0/24 393717 -192.69.66.0/23 7018 -192.69.68.0/22 39964 -192.69.72.0/23 33227 -192.69.75.0/24 63247 -192.69.76.0/22 32621 -192.69.81.0/24 394672 -192.69.82.0/23 10753 -192.69.85.0/24 30673 -192.69.86.0/23 393845 -192.69.88.0/21 25820 -192.69.96.0/23 32590 -192.69.100.0/24 20141 -192.69.102.0/23 54617 -192.69.104.0/21 33168 -192.69.112.0/24 15108 -192.69.113.0/24 12179 -192.69.114.0/24 53800 -192.69.115.0/24 394559 -192.69.116.0/24 9408 -192.69.117.0/24 174 -192.69.118.0/23 393676 -192.69.120.0/21 62943 -192.69.128.0/24 11364 -192.69.129.0/24 63289 -192.69.130.0/23 63280 -192.69.132.0/22 20161 -192.69.141.0/24 19663 -192.69.143.0/24 14012 -192.69.144.0/22 13576 -192.69.148.0/24 395361 -192.69.152.0/23 46498 -192.69.159.0/24 16509 -192.69.160.0/20 22898 -192.69.176.0/21 30600 -192.69.188.0/23 30604 -192.69.190.0/24 291 -192.69.191.0/24 7018 -192.69.192.0/19 18450 -192.69.228.0/24 393685 -192.69.232.0/23 46867 -192.69.235.0/24 33494 -192.69.236.0/22 7992 -192.69.240.0/22 54483 -192.69.244.0/23 55143 -192.69.246.0/24 46700 -192.69.247.0/24 6620 -192.69.248.0/21 53889 -192.70.0.0/18 2200 -192.70.64.0/20 2200 -192.70.80.0/21 2200 -192.70.88.0/24 2200 -192.70.89.0/24 199541 -192.70.90.0/24 199541 -192.70.91.0/24 2200 -192.70.92.0/22 2200 -192.70.96.0/21 2200 -192.70.104.0/23 2200 -192.70.106.0/24 57752 -192.70.107.0/24 2200 -192.70.108.0/22 2200 -192.70.112.0/21 2200 -192.70.120.0/24 270 -192.70.121.0/24 2200 -192.70.122.0/23 270 -192.70.124.0/23 270 -192.70.126.0/24 270 -192.70.127.0/24 2200 -192.70.131.0/24 2497 -192.70.135.0/24 58698 -192.70.141.0/24 20488 -192.70.142.0/24 20488 -192.70.144.0/24 20488 -192.70.149.0/24 204786 -192.70.150.0/23 20488 -192.70.152.0/21 20488 -192.70.161.0/24 3634 -192.70.163.0/24 19102 -192.70.164.0/24 23005 -192.70.172.0/24 25689 -192.70.174.0/24 1221 -192.70.175.0/24 36081 -192.70.178.0/24 546 -192.70.184.0/24 1239 -192.70.186.0/24 394170 -192.70.187.0/24 1312 -192.70.188.0/24 302 -192.70.190.0/24 209 -192.70.191.0/24 393745 -192.70.196.0/22 48399 -192.70.200.0/24 37314 -192.70.202.0/24 54393 -192.70.206.0/23 395333 -192.70.208.0/24 31783 -192.70.213.0/24 4565 -192.70.214.0/24 33191 -192.70.218.0/24 3900 -192.70.220.0/24 63300 -192.70.222.0/24 5050 -192.70.226.0/23 19773 -192.70.228.0/22 19773 -192.70.232.0/22 19773 -192.70.236.0/24 252 -192.70.238.0/24 33651 -192.70.242.0/24 5413 -192.70.243.0/24 54098 -192.70.245.0/24 6406 -192.70.246.0/23 32767 -192.70.249.0/24 174 -192.70.252.0/24 53568 -192.70.253.0/24 17207 -192.70.254.0/24 33154 -192.70.255.0/24 12083 -192.71.0.0/24 12381 -192.71.1.0/24 2841 -192.71.2.0/23 51747 -192.71.5.0/24 2119 -192.71.8.0/24 42708 -192.71.9.0/24 29518 -192.71.10.0/24 42708 -192.71.11.0/24 35041 -192.71.12.0/24 42708 -192.71.13.0/24 25072 -192.71.14.0/24 56736 -192.71.15.0/24 51747 -192.71.16.0/24 3246 -192.71.17.0/24 51747 -192.71.18.0/24 51747 -192.71.19.0/24 158 -192.71.20.0/24 158 -192.71.21.0/24 43065 -192.71.22.0/24 29518 -192.71.23.0/24 42708 -192.71.25.0/24 51747 -192.71.26.0/24 56630 -192.71.27.0/24 61102 -192.71.28.0/24 13189 -192.71.30.0/24 42708 -192.71.31.0/24 24605 -192.71.32.0/24 51747 -192.71.33.0/24 3301 -192.71.34.0/24 51747 -192.71.36.0/24 42708 -192.71.37.0/24 35041 -192.71.38.0/24 42708 -192.71.40.0/23 2119 -192.71.42.0/24 42708 -192.71.43.0/24 3257 -192.71.44.0/24 42708 -192.71.45.0/24 1257 -192.71.46.0/24 42708 -192.71.47.0/24 205841 -192.71.48.0/24 42708 -192.71.49.0/24 158 -192.71.50.0/24 42708 -192.71.51.0/24 30880 -192.71.52.0/24 42708 -192.71.53.0/24 8674 -192.71.54.0/23 51747 -192.71.56.0/24 12782 -192.71.57.0/24 42708 -192.71.58.0/24 43893 -192.71.59.0/24 42708 -192.71.60.0/24 12552 -192.71.61.0/24 42708 -192.71.62.0/23 51747 -192.71.64.0/23 51747 -192.71.66.0/23 56736 -192.71.68.0/23 28680 -192.71.70.0/23 51747 -192.71.73.0/24 12552 -192.71.74.0/24 42708 -192.71.76.0/24 3246 -192.71.80.0/24 8674 -192.71.81.0/24 42708 -192.71.82.0/24 158 -192.71.83.0/24 29518 -192.71.84.0/24 12381 -192.71.85.0/24 57208 -192.71.86.0/23 51747 -192.71.88.0/23 51747 -192.71.90.0/24 3246 -192.71.91.0/24 34244 -192.71.92.0/24 50572 -192.71.93.0/24 51747 -192.71.95.0/24 51747 -192.71.96.0/24 3166 -192.71.97.0/24 2119 -192.71.98.0/24 3301 -192.71.99.0/24 1257 -192.71.100.0/24 2839 -192.71.101.0/24 12552 -192.71.103.0/24 42708 -192.71.105.0/24 35041 -192.71.107.0/24 21195 -192.71.108.0/23 158 -192.71.110.0/24 1257 -192.71.112.0/24 29217 -192.71.122.0/24 198568 -192.71.123.0/24 19399 -192.71.125.0/24 43948 -192.71.126.0/24 42708 -192.71.128.0/24 1881 -192.71.129.0/24 16084 -192.71.130.0/24 16084 -192.71.132.0/23 5411 -192.71.136.0/24 9201 -192.71.137.0/24 158 -192.71.138.0/24 35041 -192.71.139.0/24 56736 -192.71.142.0/24 42708 -192.71.143.0/24 35041 -192.71.144.0/24 42708 -192.71.145.0/24 202296 -192.71.146.0/23 202296 -192.71.148.0/23 3301 -192.71.150.0/24 198054 -192.71.151.0/24 49981 -192.71.152.0/24 25072 -192.71.153.0/24 51747 -192.71.154.0/24 2841 -192.71.156.0/24 35041 -192.71.157.0/24 3257 -192.71.158.0/24 2119 -192.71.159.0/24 3246 -192.71.163.0/24 12552 -192.71.164.0/24 29518 -192.71.165.0/24 35041 -192.71.166.0/24 8280 -192.71.168.0/24 12552 -192.71.169.0/24 35041 -192.71.171.0/24 45011 -192.71.172.0/24 9009 -192.71.173.0/24 1257 -192.71.175.0/24 134237 -192.71.177.0/24 35041 -192.71.178.0/23 5411 -192.71.180.0/24 1257 -192.71.183.0/24 3246 -192.71.186.0/24 206320 -192.71.187.0/24 42303 -192.71.188.0/24 3301 -192.71.189.0/24 3246 -192.71.190.0/24 3301 -192.71.191.0/24 199902 -192.71.192.0/24 8473 -192.71.193.0/24 1653 -192.71.194.0/24 8473 -192.71.196.0/23 202296 -192.71.198.0/24 41105 -192.71.199.0/24 198549 -192.71.200.0/24 12552 -192.71.201.0/24 36352 -192.71.202.0/24 35041 -192.71.204.0/24 3301 -192.71.205.0/24 35599 -192.71.206.0/23 35599 -192.71.211.0/24 24851 -192.71.212.0/24 35041 -192.71.213.0/24 39020 -192.71.218.0/24 50613 -192.71.219.0/24 1257 -192.71.220.0/24 1257 -192.71.221.0/24 41105 -192.71.222.0/24 35041 -192.71.224.0/23 51747 -192.71.226.0/24 158 -192.71.227.0/24 174 -192.71.228.0/24 1257 -192.71.229.0/24 41340 -192.71.230.0/24 35041 -192.71.233.0/24 57169 -192.71.234.0/24 35041 -192.71.235.0/24 42303 -192.71.236.0/24 3301 -192.71.242.0/24 8523 -192.71.244.0/24 48894 -192.71.245.0/24 34971 -192.71.246.0/24 206170 -192.71.247.0/24 57169 -192.71.248.0/24 3301 -192.71.249.0/24 42160 -192.71.251.0/24 3246 -192.71.254.0/23 51452 -192.72.0.0/23 13767 -192.72.3.0/24 4780 -192.72.4.0/22 4780 -192.72.8.0/21 4780 -192.72.16.0/20 4780 -192.72.32.0/19 4780 -192.72.64.0/18 4780 -192.72.128.0/18 4780 -192.72.192.0/19 4780 -192.72.224.0/20 4780 -192.72.240.0/21 4780 -192.72.248.0/22 4780 -192.72.252.0/24 4780 -192.72.255.0/24 13827 -192.73.5.0/24 393249 -192.73.7.0/24 3431 -192.73.8.0/24 21933 -192.73.11.0/24 14363 -192.73.15.0/24 19773 -192.73.16.0/24 19773 -192.73.18.0/24 393423 -192.73.23.0/24 63274 -192.73.26.0/24 1585 -192.73.27.0/24 1569 -192.73.28.0/24 1569 -192.73.29.0/24 721 -192.73.31.0/24 11743 -192.73.34.0/24 680 -192.73.45.0/24 393700 -192.73.48.0/24 3807 -192.73.51.0/24 1341 -192.73.54.0/24 14599 -192.73.62.0/24 3431 -192.73.69.0/24 13649 -192.73.80.0/23 394735 -192.73.119.0/24 5769 -192.73.120.0/23 5769 -192.73.206.0/24 7046 -192.73.207.0/24 3562 -192.73.213.0/24 291 -192.73.214.0/24 19893 -192.73.215.0/24 687 -192.73.216.0/24 3356 -192.73.222.0/24 16920 -192.73.223.0/24 393783 -192.73.232.0/21 3842 -192.73.240.0/21 36236 -192.73.248.0/24 36236 -192.73.250.0/23 36236 -192.73.252.0/23 36236 -192.73.255.0/24 36236 -192.74.127.0/24 30359 -192.74.128.0/23 13739 -192.74.130.0/24 14569 -192.74.131.0/24 13739 -192.74.132.0/24 13739 -192.74.133.0/24 14569 -192.74.134.0/24 396191 -192.74.135.0/24 14569 -192.74.136.0/24 21997 -192.74.137.0/24 19406 -192.74.139.0/24 1221 -192.74.140.0/22 1221 -192.74.144.0/20 1221 -192.74.160.0/19 1221 -192.74.192.0/20 1221 -192.74.209.0/24 395577 -192.74.211.0/24 3425 -192.74.216.0/24 32982 -192.74.220.0/22 16545 -192.74.224.0/19 54600 -192.75.0.0/24 32643 -192.75.4.0/24 12252 -192.75.10.0/24 3633 -192.75.11.0/24 13329 -192.75.12.0/24 32638 -192.75.13.0/24 812 -192.75.14.0/24 25689 -192.75.17.0/24 2665 -192.75.18.0/24 802 -192.75.23.0/24 2579 -192.75.24.0/24 6579 -192.75.26.0/24 3633 -192.75.38.0/24 19752 -192.75.43.0/24 3848 -192.75.47.0/24 15290 -192.75.48.0/24 3848 -192.75.55.0/24 19752 -192.75.56.0/24 19752 -192.75.58.0/24 62 -192.75.63.0/24 22950 -192.75.68.0/24 806 -192.75.71.0/24 32156 -192.75.80.0/24 19752 -192.75.88.0/23 395592 -192.75.90.0/24 611 -192.75.94.0/24 5769 -192.75.95.0/24 8111 -192.75.96.0/23 8111 -192.75.99.0/24 2665 -192.75.101.0/24 29939 -192.75.106.0/24 19271 -192.75.114.0/24 577 -192.75.116.0/23 19752 -192.75.118.0/24 19752 -192.75.120.0/22 15290 -192.75.131.0/24 3848 -192.75.134.0/24 3848 -192.75.135.0/24 393606 -192.75.136.0/24 393707 -192.75.138.0/24 8111 -192.75.140.0/24 14426 -192.75.141.0/24 11486 -192.75.156.0/24 808 -192.75.158.0/24 46626 -192.75.165.0/24 30045 -192.75.171.0/24 22950 -192.75.172.0/24 15290 -192.75.184.0/24 577 -192.75.185.0/24 803 -192.75.187.0/24 63308 -192.75.191.0/24 396515 -192.75.192.0/22 30278 -192.75.196.0/23 63129 -192.75.199.0/24 47056 -192.75.200.0/23 26871 -192.75.202.0/24 26871 -192.75.203.0/24 812 -192.75.204.0/23 549 -192.75.206.0/24 14642 -192.75.207.0/24 50763 -192.75.209.0/24 63374 -192.75.211.0/24 15294 -192.75.213.0/24 15024 -192.75.238.0/24 812 -192.75.239.0/24 23498 -192.75.240.0/21 11105 -192.75.248.0/23 852 -192.75.250.0/24 21804 -192.75.251.0/24 803 -192.75.252.0/24 803 -192.75.253.0/24 14843 -192.75.254.0/24 239 -192.75.255.0/24 393549 -192.76.0.0/22 26375 -192.76.4.0/23 30174 -192.76.6.0/23 786 -192.76.8.0/21 786 -192.76.16.0/20 786 -192.76.32.0/22 786 -192.76.55.0/24 701 -192.76.60.0/24 6984 -192.76.66.0/23 6984 -192.76.68.0/24 6984 -192.76.80.0/24 6984 -192.76.82.0/24 6984 -192.76.84.0/23 6984 -192.76.88.0/24 6984 -192.76.117.0/24 11403 -192.76.120.0/24 63440 -192.76.122.0/24 7575 -192.76.124.0/24 13135 -192.76.129.0/24 48173 -192.76.134.0/24 13135 -192.76.135.0/24 47215 -192.76.137.0/24 3209 -192.76.138.0/24 200548 -192.76.140.0/24 21026 -192.76.144.0/24 12234 -192.76.145.0/24 680 -192.76.146.0/24 680 -192.76.147.0/24 702 -192.76.148.0/24 680 -192.76.151.0/24 15368 -192.76.154.0/24 680 -192.76.157.0/24 680 -192.76.161.0/24 15404 -192.76.162.0/24 24989 -192.76.166.0/23 61343 -192.76.168.0/23 61343 -192.76.172.0/24 1754 -192.76.175.0/24 14477 -192.76.176.0/24 680 -192.76.177.0/24 12 -192.76.178.0/24 46 -192.76.180.0/24 21749 -192.76.181.0/24 2637 -192.76.182.0/24 36427 -192.76.183.0/24 26891 -192.76.185.0/24 393732 -192.76.191.0/24 29904 -192.76.235.0/24 270 -192.76.239.0/24 33545 -192.76.241.0/24 680 -192.76.243.0/24 35052 -192.76.245.0/24 680 -192.76.246.0/23 680 -192.76.248.0/24 680 -192.76.249.0/24 1482 -192.76.255.0/24 27625 -192.77.9.0/24 4385 -192.77.10.0/24 7385 -192.77.15.0/24 17389 -192.77.20.0/23 394467 -192.77.22.0/24 32193 -192.77.26.0/23 1843 -192.77.28.0/22 1843 -192.77.32.0/21 1843 -192.77.40.0/22 1843 -192.77.44.0/23 1843 -192.77.46.0/24 376 -192.77.48.0/23 376 -192.77.50.0/23 11032 -192.77.52.0/24 376 -192.77.63.0/24 376 -192.77.69.0/24 376 -192.77.70.0/23 376 -192.77.77.0/24 372 -192.77.80.0/20 297 -192.77.102.0/23 27064 -192.77.104.0/24 427 -192.77.111.0/24 3356 -192.77.113.0/24 12042 -192.77.114.0/23 21263 -192.77.116.0/24 17369 -192.77.117.0/24 2048 -192.77.120.0/22 719 -192.77.125.0/24 6325 -192.77.126.0/24 30677 -192.77.128.0/24 394008 -192.77.139.0/24 26432 -192.77.142.0/24 3356 -192.77.143.0/24 7016 -192.77.145.0/24 7018 -192.77.147.0/24 7029 -192.77.171.0/24 174 -192.77.173.0/24 3755 -192.77.175.0/24 7018 -192.77.176.0/24 14860 -192.77.180.0/24 63273 -192.77.182.0/24 18501 -192.77.183.0/24 62656 -192.77.184.0/23 7828 -192.77.187.0/24 63455 -192.77.188.0/22 15108 -192.77.217.0/24 7018 -192.77.224.0/21 174 -192.77.235.0/24 26554 -192.77.236.0/22 19165 -192.77.240.0/24 53889 -192.77.241.0/24 36351 -192.77.242.0/23 53889 -192.77.244.0/22 53889 -192.77.248.0/21 53889 -192.78.0.0/24 46446 -192.78.4.0/24 5078 -192.78.8.0/22 30548 -192.78.12.0/23 14265 -192.78.14.0/24 14265 -192.78.28.0/22 30548 -192.78.72.0/22 30548 -192.78.99.0/24 12156 -192.78.112.0/22 30548 -192.78.137.0/24 3585 -192.78.182.0/24 5783 -192.78.216.0/23 33383 -192.80.0.0/21 19165 -192.80.8.0/24 54825 -192.80.10.0/24 394462 -192.80.12.0/22 2914 -192.80.16.0/23 2914 -192.80.20.0/24 1930 -192.80.24.0/24 23140 -192.80.26.0/24 394483 -192.80.27.0/24 210 -192.80.28.0/24 19367 -192.80.29.0/24 122 -192.80.43.0/24 1706 -192.80.49.0/24 11051 -192.80.52.0/24 6984 -192.80.53.0/24 2553 -192.80.55.0/24 5691 -192.80.58.0/24 7018 -192.80.60.0/24 394324 -192.80.61.0/24 55187 -192.80.63.0/24 11782 -192.80.64.0/24 16384 -192.80.65.0/24 27370 -192.80.66.0/24 396349 -192.80.67.0/24 16673 -192.80.68.0/24 16673 -192.80.70.0/24 63364 -192.80.73.0/24 16673 -192.80.74.0/23 63326 -192.80.76.0/24 54155 -192.80.80.0/24 15290 -192.80.83.0/24 1249 -192.80.85.0/24 396835 -192.80.88.0/22 54431 -192.80.92.0/23 3356 -192.80.94.0/24 3356 -192.80.95.0/24 396835 -192.80.96.0/20 12119 -192.80.112.0/20 54945 -192.80.128.0/19 18978 -192.80.160.0/20 18978 -192.80.176.0/21 18978 -192.80.184.0/22 18978 -192.80.188.0/23 18978 -192.80.190.0/24 18978 -192.80.191.0/24 17139 -192.80.192.0/21 54676 -192.80.200.0/22 174 -192.80.204.0/23 19331 -192.80.206.0/24 14148 -192.80.210.0/24 9 -192.80.224.0/24 2013 -192.80.251.0/24 2013 -192.81.0.0/21 393950 -192.81.9.0/24 11427 -192.81.10.0/23 63310 -192.81.12.0/22 39959 -192.81.16.0/20 21724 -192.81.32.0/20 30091 -192.81.49.0/24 46966 -192.81.52.0/23 53349 -192.81.54.0/24 53349 -192.81.55.0/24 396472 -192.81.56.0/23 30176 -192.81.60.0/24 393730 -192.81.63.0/24 35862 -192.81.64.0/23 53830 -192.81.66.0/24 40854 -192.81.67.0/24 7936 -192.81.68.0/23 7936 -192.81.70.0/23 393636 -192.81.72.0/23 393275 -192.81.75.0/24 3356 -192.81.76.0/22 54750 -192.81.80.0/22 54300 -192.81.84.0/24 30048 -192.81.85.0/24 15290 -192.81.86.0/23 17177 -192.81.89.0/24 393712 -192.81.92.0/22 36526 -192.81.96.0/24 3356 -192.81.98.0/24 63315 -192.81.99.0/24 3356 -192.81.100.0/23 53288 -192.81.102.0/24 53288 -192.81.104.0/22 19331 -192.81.110.0/23 57624 -192.81.112.0/23 22646 -192.81.115.0/24 393768 -192.81.116.0/22 33264 -192.81.120.0/24 12004 -192.81.121.0/24 21263 -192.81.123.0/24 61990 -192.81.128.0/21 63949 -192.81.139.0/24 36351 -192.81.140.0/24 393794 -192.81.142.0/23 63445 -192.81.144.0/22 23500 -192.81.148.0/24 23500 -192.81.161.0/24 63332 -192.81.162.0/23 32678 -192.81.164.0/23 16696 -192.81.167.0/24 6461 -192.81.168.0/21 53479 -192.81.176.0/22 23225 -192.81.180.0/23 3761 -192.81.184.0/24 719 -192.81.185.0/24 7342 -192.81.186.0/24 7342 -192.81.188.0/23 7342 -192.81.191.0/24 16980 -192.81.193.0/24 14820 -192.81.195.0/24 33519 -192.81.196.0/22 15083 -192.81.200.0/21 393442 -192.81.208.0/20 14061 -192.81.224.0/22 32678 -192.81.228.0/23 54102 -192.81.232.0/24 26718 -192.81.234.0/24 12878 -192.81.235.0/24 53750 -192.81.236.0/23 17351 -192.81.240.0/21 46555 -192.81.248.0/22 40676 -192.81.252.0/23 33460 -192.81.254.0/23 15188 -192.82.0.0/19 46293 -192.82.32.0/21 40232 -192.82.40.0/22 13624 -192.82.44.0/22 396905 -192.82.49.0/24 394962 -192.82.50.0/24 32281 -192.82.51.0/24 397413 -192.82.56.0/21 45352 -192.82.64.0/21 17882 -192.82.72.0/22 17882 -192.82.76.0/23 17882 -192.82.78.0/24 17882 -192.82.93.0/24 55408 -192.82.94.0/23 17882 -192.82.96.0/22 396878 -192.82.102.0/24 394916 -192.82.104.0/24 25946 -192.82.109.0/24 29713 -192.82.111.0/24 6192 -192.82.113.0/24 27064 -192.82.114.0/24 396372 -192.82.118.0/23 22773 -192.82.120.0/24 29984 -192.82.122.0/24 63365 -192.82.127.0/24 1930 -192.82.128.0/22 239 -192.82.133.0/24 20431 -192.82.134.0/24 10515 -192.82.144.0/23 63369 -192.82.146.0/24 33420 -192.82.150.0/24 23457 -192.82.152.0/24 7380 -192.82.153.0/24 786 -192.82.157.0/24 1112 -192.82.161.0/24 7575 -192.82.209.0/24 397820 -192.82.210.0/23 22075 -192.82.220.0/23 31638 -192.82.222.0/24 4739 -192.82.232.0/24 55140 -192.82.241.0/24 680 -192.82.242.0/23 62713 -192.82.245.0/24 33252 -192.82.248.0/21 30475 -192.83.0.0/18 1759 -192.83.64.0/19 1759 -192.83.96.0/22 1759 -192.83.100.0/24 1759 -192.83.103.0/24 63347 -192.83.110.0/24 25843 -192.83.111.0/24 32982 -192.83.112.0/23 393619 -192.83.118.0/24 4739 -192.83.126.0/23 63287 -192.83.128.0/21 19397 -192.83.138.0/23 19397 -192.83.140.0/22 19397 -192.83.144.0/24 40393 -192.83.146.0/23 40393 -192.83.148.0/22 40393 -192.83.152.0/22 6594 -192.83.156.0/24 393767 -192.83.160.0/24 12670 -192.83.161.0/24 32603 -192.83.164.0/24 25766 -192.83.165.0/24 199888 -192.83.166.0/23 1659 -192.83.168.0/21 1659 -192.83.176.0/20 1659 -192.83.192.0/22 1659 -192.83.196.0/24 1659 -192.83.201.0/24 397808 -192.83.203.0/24 1590 -192.83.207.0/24 268639 -192.83.209.0/24 328163 -192.83.211.0/24 328163 -192.83.212.0/22 328190 -192.83.220.0/24 54004 -192.83.222.0/24 46089 -192.83.223.0/24 3303 -192.83.228.0/24 22742 -192.83.230.0/24 3130 -192.83.231.0/24 4739 -192.83.232.0/24 29972 -192.83.237.0/24 7474 -192.83.238.0/24 6262 -192.83.242.0/24 7782 -192.83.245.0/24 394629 -192.83.248.0/24 1906 -192.83.249.0/24 6596 -192.83.252.0/24 26020 -192.83.253.0/24 33545 -192.83.254.0/23 3257 -192.84.0.0/23 62508 -192.84.2.0/24 55 -192.84.4.0/24 22051 -192.84.5.0/24 786 -192.84.6.0/24 46142 -192.84.9.0/24 394532 -192.84.10.0/24 4565 -192.84.11.0/24 14038 -192.84.13.0/24 1930 -192.84.15.0/24 1930 -192.84.16.0/22 32308 -192.84.21.0/24 22768 -192.84.23.0/24 12025 -192.84.33.0/24 3292 -192.84.34.0/23 12158 -192.84.36.0/23 55002 -192.84.38.0/24 19871 -192.84.39.0/24 6245 -192.84.45.0/24 7018 -192.84.46.0/23 7018 -192.84.48.0/23 20454 -192.84.52.0/23 16996 -192.84.54.0/24 393754 -192.84.63.0/24 3955 -192.84.65.0/24 3356 -192.84.66.0/24 3955 -192.84.67.0/24 7810 -192.84.68.0/24 3356 -192.84.70.0/24 3955 -192.84.75.0/24 786 -192.84.76.0/22 786 -192.84.80.0/22 786 -192.84.86.0/24 32361 -192.84.88.0/24 36442 -192.84.89.0/24 45226 -192.84.100.0/24 17313 -192.84.105.0/24 2108 -192.84.106.0/24 2108 -192.84.110.0/24 393703 -192.84.113.0/24 2902 -192.84.120.0/24 773 -192.84.121.0/24 55173 -192.84.126.0/24 10796 -192.84.127.0/24 137 -192.84.128.0/20 137 -192.84.144.0/21 137 -192.84.152.0/22 137 -192.84.156.0/24 137 -192.84.160.0/23 8075 -192.84.167.0/24 54592 -192.84.168.0/24 19512 -192.84.171.0/24 210 -192.84.176.0/20 1741 -192.84.192.0/21 1741 -192.84.209.0/24 26094 -192.84.212.0/24 786 -192.84.215.0/24 1798 -192.84.216.0/23 32982 -192.84.218.0/24 393501 -192.84.221.0/24 12337 -192.84.225.0/24 394193 -192.84.230.0/24 4637 -192.84.231.0/24 21769 -192.84.236.0/24 27168 -192.84.243.0/24 396480 -192.84.249.0/24 36464 -192.84.252.0/24 3549 -192.84.254.0/24 174 -192.84.255.0/24 62807 -192.85.0.0/23 1705 -192.85.6.0/24 1705 -192.85.16.0/23 6900 -192.85.23.0/24 1705 -192.85.24.0/24 1705 -192.85.28.0/24 1705 -192.85.30.0/24 5714 -192.85.45.0/24 7046 -192.85.47.0/24 5714 -192.85.51.0/24 5714 -192.85.58.0/24 5714 -192.85.59.0/24 2164 -192.85.60.0/24 6900 -192.85.71.0/24 7046 -192.85.75.0/24 1705 -192.85.78.0/23 23495 -192.85.88.0/23 5714 -192.85.90.0/24 5714 -192.85.94.0/24 702 -192.85.96.0/24 5714 -192.85.110.0/24 6900 -192.85.121.0/24 6900 -192.85.123.0/24 1705 -192.85.124.0/24 2158 -192.85.127.0/24 2173 -192.85.128.0/24 2173 -192.85.133.0/24 1705 -192.85.135.0/24 1705 -192.85.136.0/24 1705 -192.85.140.0/24 5714 -192.85.154.0/24 1705 -192.85.169.0/24 1705 -192.85.189.0/24 2173 -192.85.202.0/23 5714 -192.85.209.0/24 2164 -192.85.225.0/24 1705 -192.85.230.0/24 2164 -192.85.240.0/24 1705 -192.85.241.0/24 7046 -192.85.242.0/24 6900 -192.85.249.0/24 5714 -192.85.255.0/24 1705 -192.86.0.0/24 13692 -192.86.1.0/24 395592 -192.86.2.0/24 3356 -192.86.3.0/24 46679 -192.86.4.0/24 33282 -192.86.14.0/24 8267 -192.86.21.0/24 21681 -192.86.22.0/24 55114 -192.86.32.0/22 7018 -192.86.36.0/22 36351 -192.86.42.0/24 7018 -192.86.44.0/24 39982 -192.86.45.0/24 197832 -192.86.49.0/24 39982 -192.86.50.0/23 39982 -192.86.52.0/22 197832 -192.86.60.0/22 7018 -192.86.66.0/24 668 -192.86.67.0/24 1906 -192.86.68.0/22 1906 -192.86.72.0/22 1906 -192.86.76.0/24 1906 -192.86.77.0/24 190 -192.86.78.0/24 2152 -192.86.81.0/24 36741 -192.86.85.0/24 22494 -192.86.86.0/24 19099 -192.86.97.0/24 10497 -192.86.98.0/23 10497 -192.86.100.0/22 10497 -192.86.104.0/23 10497 -192.86.106.0/24 10497 -192.86.111.0/24 1482 -192.86.112.0/23 1482 -192.86.114.0/24 1482 -192.86.115.0/24 27064 -192.86.116.0/24 1479 -192.86.117.0/24 721 -192.86.118.0/24 1488 -192.86.119.0/24 721 -192.86.122.0/24 20303 -192.86.125.0/24 13237 -192.86.126.0/24 13237 -192.86.130.0/24 27253 -192.86.138.0/24 1930 -192.86.139.0/24 12 -192.86.160.0/23 393773 -192.86.228.0/23 27064 -192.86.230.0/23 1598 -192.86.232.0/23 1598 -192.86.234.0/24 1598 -192.86.235.0/24 721 -192.86.236.0/22 1598 -192.86.252.0/24 721 -192.86.255.0/24 393813 -192.87.0.0/16 1103 -192.88.0.0/24 53704 -192.88.4.0/24 3320 -192.88.7.0/24 1221 -192.88.9.0/24 786 -192.88.11.0/24 16600 -192.88.12.0/24 276 -192.88.15.0/24 393616 -192.88.16.0/24 393802 -192.88.17.0/24 1930 -192.88.18.0/23 63358 -192.88.20.0/24 29971 -192.88.21.0/24 209 -192.88.24.0/24 1853 -192.88.28.0/24 7018 -192.88.31.0/24 270 -192.88.32.0/23 270 -192.88.36.0/23 270 -192.88.40.0/23 270 -192.88.43.0/24 270 -192.88.44.0/24 270 -192.88.46.0/24 270 -192.88.48.0/23 270 -192.88.54.0/24 47000 -192.88.60.0/23 6419 -192.88.62.0/24 6419 -192.88.67.0/24 6419 -192.88.69.0/24 6419 -192.88.78.0/24 6419 -192.88.83.0/24 9179 -192.88.89.0/24 397353 -192.88.90.0/23 397353 -192.88.92.0/23 397353 -192.88.94.0/24 397353 -192.88.97.0/24 200943 -192.88.100.0/24 11722 -192.88.107.0/24 40220 -192.88.108.0/24 680 -192.88.109.0/24 19381 -192.88.110.0/24 668 -192.88.111.0/24 3479 -192.88.114.0/23 5050 -192.88.117.0/24 705 -192.88.121.0/24 393743 -192.88.123.0/24 15525 -192.88.124.0/24 4511 -192.88.125.0/24 1239 -192.88.126.0/23 36473 -192.88.132.0/24 12120 -192.88.134.0/23 30148 -192.88.137.0/24 3912 -192.88.138.0/23 3912 -192.88.140.0/24 40246 -192.88.142.0/24 54803 -192.88.147.0/24 14857 -192.88.148.0/22 14857 -192.88.152.0/23 14857 -192.88.154.0/24 14857 -192.88.155.0/24 19019 -192.88.156.0/22 14857 -192.88.160.0/23 14857 -192.88.163.0/24 14857 -192.88.164.0/24 14857 -192.88.165.0/24 3549 -192.88.168.0/24 3549 -192.88.173.0/24 14857 -192.88.174.0/24 14857 -192.88.175.0/24 9911 -192.88.178.0/23 63348 -192.88.186.0/24 393812 -192.88.187.0/24 9313 -192.88.189.0/24 396861 -192.88.190.0/24 9790 -192.88.191.0/24 3112 -192.88.192.0/24 3112 -192.88.193.0/24 600 -192.88.194.0/23 600 -192.88.198.0/24 21630 -192.88.199.0/24 7015 -192.88.205.0/24 396954 -192.88.209.0/24 36407 -192.88.210.0/24 36407 -192.88.212.0/24 30437 -192.88.236.0/24 209 -192.88.242.0/24 237 -192.88.243.0/24 158 -192.88.248.0/23 16411 -192.88.250.0/23 1930 -192.88.252.0/23 1930 -192.88.254.0/24 1930 -192.88.255.0/24 21764 -192.89.0.0/16 1759 -192.90.0.0/18 6 -192.90.64.0/19 3215 -192.90.96.0/20 6 -192.90.112.0/21 6 -192.90.120.0/22 6 -192.90.124.0/23 6 -192.90.126.0/24 6 -192.90.127.0/24 3215 -192.90.128.0/18 6 -192.90.192.0/20 6 -192.90.208.0/21 6 -192.90.216.0/23 6 -192.90.218.0/24 3215 -192.90.219.0/24 6 -192.90.220.0/22 6 -192.90.224.0/19 6 -192.91.0.0/24 1437 -192.91.60.0/24 12801 -192.91.61.0/24 2119 -192.91.62.0/24 12801 -192.91.63.0/24 29057 -192.91.64.0/24 12801 -192.91.73.0/24 12400 -192.91.75.0/24 161 -192.91.101.0/24 161 -192.91.108.0/23 2516 -192.91.135.0/24 393946 -192.91.138.0/24 84 -192.91.139.0/24 8008 -192.91.144.0/24 62830 -192.91.146.0/23 6075 -192.91.148.0/23 6075 -192.91.150.0/24 6075 -192.91.160.0/23 6075 -192.91.163.0/24 6075 -192.91.171.0/24 6075 -192.91.173.0/24 6075 -192.91.177.0/24 15525 -192.91.178.0/24 174 -192.91.184.0/24 3424 -192.91.185.0/24 2764 -192.91.186.0/24 2578 -192.91.191.0/24 15248 -192.91.193.0/24 19152 -192.91.198.0/24 33154 -192.91.199.0/24 56739 -192.91.204.0/24 393862 -192.91.214.0/23 56736 -192.91.216.0/21 56736 -192.91.224.0/21 56736 -192.91.232.0/23 56736 -192.91.234.0/24 17109 -192.91.235.0/24 11078 -192.91.236.0/22 513 -192.91.240.0/22 513 -192.91.244.0/23 513 -192.91.246.0/24 513 -192.91.247.0/24 8659 -192.91.249.0/24 17298 -192.91.251.0/24 7985 -192.91.253.0/24 3356 -192.91.254.0/24 268433 -192.91.255.0/24 63424 -192.92.0.0/21 11404 -192.92.8.0/24 394175 -192.92.10.0/24 3549 -192.92.13.0/24 3730 -192.92.14.0/24 2828 -192.92.17.0/24 54669 -192.92.62.0/24 3300 -192.92.78.0/23 3300 -192.92.87.0/24 46374 -192.92.92.0/24 27017 -192.92.94.0/24 35289 -192.92.97.0/24 14618 -192.92.99.0/24 33652 -192.92.102.0/24 393931 -192.92.104.0/23 12874 -192.92.106.0/24 12874 -192.92.114.0/24 18779 -192.92.115.0/24 18777 -192.92.117.0/24 393569 -192.92.118.0/23 17153 -192.92.122.0/24 12118 -192.92.124.0/24 16573 -192.92.125.0/24 35052 -192.92.126.0/24 1267 -192.92.129.0/24 3245 -192.92.133.0/24 1930 -192.92.138.0/24 8447 -192.92.140.0/24 395587 -192.92.142.0/24 1930 -192.92.144.0/24 1930 -192.92.147.0/24 1930 -192.92.148.0/23 1930 -192.92.152.0/24 1930 -192.92.154.0/24 267842 -192.92.155.0/24 3260 -192.92.156.0/24 3260 -192.92.157.0/24 394690 -192.92.158.0/24 22742 -192.92.159.0/24 396531 -192.92.160.0/22 2143 -192.92.164.0/22 10343 -192.92.168.0/23 2143 -192.92.176.0/24 63435 -192.92.182.0/24 54755 -192.92.184.0/23 270 -192.92.186.0/24 54159 -192.92.189.0/24 2143 -192.92.193.0/24 63393 -192.92.194.0/23 297 -192.92.196.0/24 62540 -192.92.200.0/21 13415 -192.92.208.0/22 40749 -192.92.214.0/24 63314 -192.92.236.0/22 55075 -192.92.240.0/23 14092 -192.92.242.0/23 14345 -192.92.244.0/23 40474 -192.92.246.0/24 40474 -192.92.248.0/21 45677 -192.93.0.0/24 2486 -192.93.1.0/24 775 -192.93.2.0/24 775 -192.93.3.0/24 2269 -192.93.8.0/24 781 -192.93.19.0/24 2259 -192.93.20.0/22 199541 -192.93.28.0/24 2200 -192.93.37.0/24 52039 -192.93.53.0/24 2089 -192.93.101.0/24 2187 -192.93.105.0/24 2200 -192.93.106.0/23 2200 -192.93.108.0/23 2200 -192.93.122.0/24 775 -192.93.124.0/24 777 -192.93.148.0/23 2200 -192.93.157.0/24 2269 -192.93.158.0/23 29104 -192.93.160.0/23 29104 -192.93.162.0/23 23288 -192.93.164.0/23 2856 -192.93.166.0/23 29104 -192.93.170.0/24 2200 -192.93.172.0/24 1715 -192.93.173.0/24 2200 -192.93.174.0/23 1942 -192.93.176.0/22 1942 -192.93.212.0/24 2187 -192.93.214.0/24 2072 -192.93.219.0/24 2462 -192.93.220.0/24 2200 -192.93.225.0/24 12670 -192.93.248.0/24 2259 -192.93.254.0/24 1715 -192.94.21.0/24 11827 -192.94.22.0/24 393564 -192.94.25.0/24 4193 -192.94.28.0/24 8220 -192.94.29.0/24 1222 -192.94.30.0/23 43484 -192.94.33.0/24 2687 -192.94.34.0/24 4755 -192.94.35.0/24 2687 -192.94.37.0/24 48406 -192.94.38.0/23 13541 -192.94.40.0/24 7018 -192.94.41.0/24 2764 -192.94.45.0/24 26450 -192.94.46.0/24 26881 -192.94.47.0/24 2386 -192.94.49.0/24 11522 -192.94.61.0/24 2018 -192.94.65.0/24 1254 -192.94.66.0/24 53620 -192.94.67.0/24 3260 -192.94.68.0/24 3260 -192.94.70.0/23 395134 -192.94.72.0/24 393992 -192.94.74.0/24 5726 -192.94.75.0/24 22801 -192.94.92.0/24 161 -192.94.94.0/24 161 -192.94.101.0/24 33668 -192.94.102.0/23 1252 -192.94.104.0/22 1252 -192.94.108.0/24 1252 -192.94.109.0/24 11714 -192.94.110.0/24 63253 -192.94.118.0/24 3680 -192.94.119.0/24 773 -192.94.120.0/24 701 -192.94.123.0/24 1239 -192.94.124.0/24 393728 -192.94.126.0/24 6327 -192.94.128.0/20 19773 -192.94.144.0/22 19773 -192.94.153.0/24 3356 -192.94.163.0/24 13041 -192.94.165.0/24 701 -192.94.166.0/24 393793 -192.94.168.0/24 188 -192.94.169.0/24 137217 -192.94.170.0/24 22302 -192.94.173.0/24 3477 -192.94.174.0/24 7577 -192.94.202.0/24 1258 -192.94.203.0/24 30622 -192.94.206.0/24 64198 -192.94.208.0/24 58611 -192.94.210.0/24 2018 -192.94.212.0/24 1267 -192.94.214.0/24 546 -192.94.216.0/24 11570 -192.94.226.0/24 6830 -192.94.227.0/24 7575 -192.94.233.0/24 58027 -192.94.235.0/24 786 -192.94.242.0/24 3741 -192.94.243.0/24 4739 -192.94.244.0/24 4739 -192.94.246.0/24 6083 -192.94.249.0/24 31924 -192.94.250.0/24 35999 -192.94.251.0/24 63372 -192.94.252.0/23 14073 -192.95.0.0/18 16276 -192.95.64.0/24 394161 -192.95.66.0/23 33256 -192.95.68.0/24 397422 -192.95.69.0/24 25899 -192.95.70.0/23 55246 -192.95.72.0/21 22925 -192.95.80.0/20 61161 -192.95.96.0/20 55106 -192.95.112.0/21 21782 -192.95.120.0/21 397833 -192.95.128.0/18 22995 -192.96.0.0/24 54826 -192.96.1.0/24 11845 -192.96.2.0/24 2018 -192.96.5.0/24 2018 -192.96.7.0/24 2018 -192.96.8.0/24 2018 -192.96.15.0/24 2018 -192.96.17.0/24 13427 -192.96.18.0/24 14352 -192.96.20.0/23 2018 -192.96.22.0/24 3741 -192.96.23.0/24 13635 -192.96.24.0/21 6083 -192.96.36.0/24 27536 -192.96.38.0/24 3741 -192.96.41.0/24 393815 -192.96.42.0/24 40317 -192.96.44.0/24 46437 -192.96.46.0/24 3741 -192.96.57.0/24 3741 -192.96.59.0/24 13995 -192.96.62.0/23 12208 -192.96.64.0/22 26076 -192.96.73.0/24 22718 -192.96.87.0/24 2905 -192.96.88.0/24 2905 -192.96.89.0/24 3741 -192.96.90.0/23 3741 -192.96.92.0/24 3741 -192.96.94.0/23 2018 -192.96.96.0/24 37153 -192.96.98.0/23 2905 -192.96.103.0/24 22564 -192.96.109.0/24 2018 -192.96.120.0/21 3741 -192.96.128.0/22 3741 -192.96.132.0/23 3741 -192.96.134.0/24 3741 -192.96.139.0/24 37315 -192.96.140.0/23 2018 -192.96.142.0/24 2018 -192.96.147.0/24 2905 -192.96.156.0/23 18949 -192.96.159.0/24 54548 -192.96.160.0/22 6128 -192.96.168.0/21 53259 -192.96.176.0/24 63380 -192.96.177.0/24 6083 -192.96.192.0/24 63402 -192.96.200.0/21 30633 -192.96.208.0/20 12129 -192.96.233.0/24 25615 -192.96.234.0/23 37130 -192.96.236.0/22 37130 -192.96.240.0/22 37130 -192.96.244.0/24 393971 -192.96.247.0/24 2018 -192.96.248.0/23 2018 -192.96.250.0/24 2018 -192.96.251.0/24 3741 -192.96.252.0/24 2018 -192.96.255.0/24 7018 -192.97.115.0/24 25886 -192.97.116.0/24 2158 -192.97.117.0/24 2164 -192.97.171.0/24 2158 -192.97.173.0/24 2164 -192.98.2.0/23 1759 -192.98.6.0/24 1741 -192.98.23.0/24 12582 -192.98.35.0/24 719 -192.98.38.0/24 1741 -192.98.42.0/23 790 -192.98.64.0/20 1741 -192.98.80.0/21 1741 -192.98.99.0/24 1759 -192.98.101.0/24 1739 -192.98.104.0/21 1741 -192.98.120.0/21 204279 -192.98.128.0/17 12180 -192.99.0.0/16 16276 -192.100.0.0/24 22230 -192.100.6.0/23 22473 -192.100.8.0/24 22473 -192.100.9.0/24 270 -192.100.12.0/24 297 -192.100.14.0/23 297 -192.100.16.0/24 55236 -192.100.21.0/24 22925 -192.100.29.0/24 5693 -192.100.51.0/24 11678 -192.100.53.0/24 9872 -192.100.55.0/24 20306 -192.100.59.0/24 397213 -192.100.60.0/24 20349 -192.100.64.0/24 21976 -192.100.70.0/24 367 -192.100.72.0/22 14881 -192.100.76.0/24 21508 -192.100.77.0/24 9464 -192.100.78.0/24 786 -192.100.80.0/24 4637 -192.100.82.0/24 47098 -192.100.87.0/24 53917 -192.100.92.0/24 668 -192.100.94.0/24 7013 -192.100.100.0/24 27064 -192.100.102.0/23 8068 -192.100.135.0/24 51946 -192.100.140.0/24 133084 -192.100.147.0/24 4010 -192.100.153.0/24 78 -192.100.154.0/24 786 -192.100.157.0/24 263226 -192.100.159.0/24 8151 -192.100.161.0/24 8151 -192.100.162.0/24 28390 -192.100.163.0/24 8151 -192.100.164.0/23 8151 -192.100.166.0/24 8151 -192.100.169.0/24 28454 -192.100.170.0/24 8151 -192.100.171.0/24 263234 -192.100.172.0/24 8151 -192.100.173.0/24 3968 -192.100.174.0/24 11172 -192.100.175.0/24 3968 -192.100.176.0/24 16762 -192.100.177.0/24 263261 -192.100.178.0/24 17090 -192.100.179.0/24 6503 -192.100.180.0/23 7974 -192.100.182.0/24 61479 -192.100.186.0/23 263235 -192.100.188.0/24 28414 -192.100.189.0/24 8151 -192.100.192.0/24 28382 -192.100.193.0/24 8151 -192.100.194.0/24 11172 -192.100.195.0/24 28382 -192.100.196.0/24 11172 -192.100.197.0/24 28382 -192.100.199.0/24 278 -192.100.200.0/24 278 -192.100.201.0/24 13679 -192.100.202.0/24 21603 -192.100.204.0/24 7408 -192.100.206.0/24 61866 -192.100.208.0/24 6927 -192.100.213.0/24 22884 -192.100.220.0/24 3968 -192.100.223.0/24 8151 -192.100.224.0/24 28499 -192.100.225.0/24 397215 -192.100.228.0/23 61867 -192.100.230.0/24 13679 -192.100.232.0/23 8151 -192.100.234.0/24 11519 -192.100.247.0/24 61749 -192.100.248.0/24 61881 -192.100.251.0/24 61841 -192.100.252.0/23 264476 -192.100.255.0/24 63431 -192.101.1.0/24 3352 -192.101.5.0/24 53934 -192.101.9.0/24 393846 -192.101.10.0/24 26487 -192.101.18.0/24 22845 -192.101.21.0/24 81 -192.101.22.0/23 81 -192.101.24.0/24 81 -192.101.32.0/24 19108 -192.101.33.0/24 3356 -192.101.42.0/24 393282 -192.101.45.0/24 393974 -192.101.64.0/21 12679 -192.101.72.0/24 396396 -192.101.73.0/24 394631 -192.101.74.0/24 63251 -192.101.75.0/24 44880 -192.101.77.0/24 22540 -192.101.79.0/24 21675 -192.101.80.0/24 5650 -192.101.81.0/24 22683 -192.101.82.0/23 22683 -192.101.85.0/24 22683 -192.101.86.0/23 22683 -192.101.88.0/23 22683 -192.101.90.0/24 22683 -192.101.93.0/24 19812 -192.101.100.0/22 3428 -192.101.104.0/22 3428 -192.101.108.0/23 3428 -192.101.111.0/24 21286 -192.101.112.0/23 21286 -192.101.119.0/24 395635 -192.101.120.0/21 5972 -192.101.128.0/22 5972 -192.101.132.0/23 5972 -192.101.135.0/24 11809 -192.101.136.0/24 11328 -192.101.138.0/24 63426 -192.101.139.0/24 1206 -192.101.140.0/24 1206 -192.101.143.0/24 395277 -192.101.146.0/24 27066 -192.101.150.0/23 174 -192.101.153.0/24 2572 -192.101.160.0/24 13855 -192.101.161.0/24 766 -192.101.162.0/24 13041 -192.101.163.0/24 766 -192.101.164.0/22 766 -192.101.168.0/24 766 -192.101.174.0/24 30390 -192.101.176.0/24 559 -192.101.184.0/24 1746 -192.101.185.0/24 1603 -192.101.186.0/24 54390 -192.101.188.0/24 396349 -192.101.197.0/24 13237 -192.101.198.0/24 13237 -192.101.250.0/24 237 -192.101.252.0/24 21489 -192.101.254.0/24 10148 -192.101.255.0/24 62867 -192.102.0.0/24 40702 -192.102.5.0/24 10430 -192.102.6.0/23 57682 -192.102.9.0/24 2018 -192.102.11.0/24 812 -192.102.15.0/24 27425 -192.102.16.0/24 54885 -192.102.17.0/24 8447 -192.102.19.0/24 719 -192.102.32.0/24 719 -192.102.36.0/22 719 -192.102.40.0/23 719 -192.102.42.0/24 719 -192.102.49.0/24 719 -192.102.50.0/24 719 -192.102.52.0/24 16086 -192.102.64.0/23 12582 -192.102.67.0/24 12582 -192.102.68.0/22 12582 -192.102.72.0/22 12582 -192.102.83.0/24 9411 -192.102.85.0/24 63006 -192.102.86.0/23 46353 -192.102.88.0/24 6629 -192.102.95.0/24 3303 -192.102.146.0/23 200943 -192.102.148.0/24 47610 -192.102.149.0/24 200943 -192.102.150.0/23 680 -192.102.152.0/23 680 -192.102.154.0/23 200943 -192.102.156.0/24 680 -192.102.157.0/24 200943 -192.102.158.0/23 680 -192.102.160.0/22 680 -192.102.164.0/23 5501 -192.102.166.0/24 200943 -192.102.167.0/24 680 -192.102.168.0/23 680 -192.102.170.0/24 680 -192.102.171.0/24 5501 -192.102.172.0/23 5501 -192.102.174.0/23 680 -192.102.176.0/23 680 -192.102.182.0/24 4983 -192.102.188.0/22 4983 -192.102.192.0/23 4983 -192.102.198.0/23 4983 -192.102.200.0/22 4983 -192.102.204.0/22 55958 -192.102.209.0/24 4983 -192.102.210.0/23 4983 -192.102.214.0/24 34178 -192.102.218.0/24 54375 -192.102.222.0/24 63449 -192.102.223.0/24 23207 -192.102.224.0/24 15557 -192.102.229.0/24 2643 -192.102.230.0/24 14834 -192.102.232.0/24 3356 -192.102.239.0/24 4822 -192.102.248.0/24 2914 -192.102.249.0/24 4266 -192.102.250.0/23 134111 -192.102.252.0/24 22825 -192.102.254.0/24 395152 -192.102.255.0/24 393755 -192.103.0.0/24 7385 -192.103.2.0/24 2602 -192.103.4.0/24 12042 -192.103.11.0/24 393775 -192.103.12.0/24 11512 -192.103.13.0/24 3380 -192.103.20.0/24 6867 -192.103.26.0/24 393790 -192.103.41.0/24 11232 -192.103.45.0/24 12133 -192.103.52.0/24 10021 -192.103.53.0/24 3549 -192.103.54.0/23 16920 -192.103.64.0/20 701 -192.103.84.0/24 7086 -192.103.85.0/24 205250 -192.103.86.0/24 205250 -192.103.87.0/24 719 -192.103.90.0/24 719 -192.103.91.0/24 205250 -192.103.92.0/24 205250 -192.103.102.0/23 198737 -192.103.104.0/24 198737 -192.103.105.0/24 205250 -192.103.106.0/24 205250 -192.103.110.0/23 205250 -192.103.112.0/22 1759 -192.103.116.0/24 205250 -192.103.131.0/24 11115 -192.103.144.0/24 13536 -192.103.148.0/23 33348 -192.103.151.0/24 33348 -192.103.152.0/23 33348 -192.103.154.0/23 30170 -192.103.179.0/24 30170 -192.103.180.0/22 30170 -192.103.184.0/23 30170 -192.103.186.0/24 30170 -192.103.188.0/24 30170 -192.103.190.0/23 30170 -192.103.194.0/23 14677 -192.103.196.0/22 14677 -192.103.200.0/22 14677 -192.103.205.0/24 30170 -192.103.206.0/23 30170 -192.103.208.0/23 30170 -192.103.218.0/23 30170 -192.103.220.0/23 30170 -192.103.238.0/23 396001 -192.103.248.0/24 396072 -192.103.249.0/24 14333 -192.103.250.0/23 393726 -192.103.252.0/24 54839 -192.104.0.0/24 29765 -192.104.1.0/24 29955 -192.104.4.0/23 62996 -192.104.13.0/24 395375 -192.104.15.0/24 7564 -192.104.18.0/24 46450 -192.104.20.0/24 63418 -192.104.23.0/24 1267 -192.104.24.0/24 53465 -192.104.31.0/24 10796 -192.104.37.0/24 43064 -192.104.39.0/24 395906 -192.104.41.0/24 12620 -192.104.42.0/24 14074 -192.104.43.0/24 17477 -192.104.44.0/23 17477 -192.104.48.0/24 1930 -192.104.49.0/24 36477 -192.104.54.0/24 4185 -192.104.59.0/24 7752 -192.104.61.0/24 7018 -192.104.67.0/24 11719 -192.104.77.0/24 9211 -192.104.107.0/24 10464 -192.104.108.0/23 10464 -192.104.110.0/24 10464 -192.104.111.0/24 63303 -192.104.112.0/20 26734 -192.104.128.0/21 54938 -192.104.140.0/24 1103 -192.104.146.0/24 1427 -192.104.147.0/24 5470 -192.104.148.0/24 393868 -192.104.151.0/24 64042 -192.104.157.0/24 16713 -192.104.159.0/24 23005 -192.104.162.0/24 32230 -192.104.166.0/24 2152 -192.104.169.0/24 10959 -192.104.174.0/24 5090 -192.104.181.0/24 26699 -192.104.182.0/23 10668 -192.104.185.0/24 10668 -192.104.192.0/19 10668 -192.104.224.0/21 10668 -192.104.234.0/24 395287 -192.104.242.0/24 25975 -192.104.243.0/24 398084 -192.104.244.0/24 11734 -192.104.245.0/24 25215 -192.104.254.0/24 18789 -192.104.255.0/24 23319 -192.105.10.0/24 24318 -192.105.106.0/24 3633 -192.105.205.0/24 13476 -192.106.0.0/17 1267 -192.106.128.0/18 1267 -192.106.192.0/24 3313 -192.106.193.0/24 1267 -192.106.194.0/23 1267 -192.106.196.0/23 5502 -192.106.198.0/23 1267 -192.106.200.0/21 1267 -192.106.208.0/20 1267 -192.106.224.0/21 1267 -192.106.232.0/23 1267 -192.106.234.0/24 137 -192.106.235.0/24 1267 -192.106.236.0/22 1267 -192.106.240.0/20 1267 -192.107.0.0/24 14507 -192.107.1.0/24 53613 -192.107.15.0/24 14733 -192.107.16.0/23 14733 -192.107.28.0/24 18971 -192.107.38.0/24 40149 -192.107.39.0/24 54004 -192.107.41.0/24 4364 -192.107.43.0/24 32450 -192.107.44.0/24 3479 -192.107.45.0/24 21976 -192.107.46.0/24 22721 -192.107.47.0/24 7050 -192.107.51.0/24 137 -192.107.52.0/22 137 -192.107.56.0/21 137 -192.107.64.0/19 137 -192.107.96.0/22 137 -192.107.100.0/24 137 -192.107.101.0/24 37978 -192.107.102.0/24 393282 -192.107.107.0/24 3728 -192.107.108.0/24 18794 -192.107.110.0/24 5466 -192.107.111.0/24 393937 -192.107.113.0/24 4768 -192.107.114.0/24 2116 -192.107.118.0/24 3561 -192.107.120.0/23 32145 -192.107.122.0/24 1930 -192.107.123.0/24 9083 -192.107.131.0/24 27628 -192.107.133.0/24 13768 -192.107.134.0/24 3592 -192.107.135.0/24 62503 -192.107.136.0/21 54933 -192.107.144.0/24 32586 -192.107.152.0/21 243 -192.107.160.0/22 243 -192.107.165.0/24 1480 -192.107.168.0/24 786 -192.107.171.0/24 681 -192.107.172.0/24 681 -192.107.173.0/24 36115 -192.107.175.0/24 293 -192.107.178.0/24 7 -192.107.180.0/23 210 -192.107.182.0/23 1479 -192.107.191.0/24 1749 -192.107.195.0/24 1848 -192.107.200.0/21 16086 -192.107.208.0/20 16086 -192.107.224.0/21 16086 -192.107.232.0/24 760 -192.107.235.0/24 60824 -192.107.236.0/24 60824 -192.107.241.0/24 396081 -192.107.242.0/24 394784 -192.107.243.0/24 36351 -192.107.244.0/24 395243 -192.107.245.0/24 27270 -192.107.246.0/24 17007 -192.107.248.0/22 17007 -192.107.252.0/24 17007 -192.107.253.0/24 7029 -192.107.254.0/24 7029 -192.107.255.0/24 393940 -192.108.2.0/23 5972 -192.108.4.0/22 5972 -192.108.8.0/21 5972 -192.108.16.0/24 395987 -192.108.19.0/24 19631 -192.108.23.0/24 680 -192.108.24.0/23 680 -192.108.26.0/24 680 -192.108.30.0/24 680 -192.108.31.0/24 3209 -192.108.32.0/23 680 -192.108.34.0/24 680 -192.108.35.0/24 553 -192.108.36.0/22 553 -192.108.40.0/22 553 -192.108.44.0/24 553 -192.108.45.0/24 58069 -192.108.46.0/23 58069 -192.108.48.0/24 680 -192.108.50.0/24 393831 -192.108.51.0/24 680 -192.108.52.0/22 680 -192.108.63.0/24 680 -192.108.64.0/22 680 -192.108.68.0/24 58069 -192.108.69.0/24 680 -192.108.70.0/23 680 -192.108.72.0/24 41969 -192.108.73.0/24 20488 -192.108.74.0/23 20488 -192.108.76.0/22 20488 -192.108.80.0/21 20488 -192.108.88.0/24 9083 -192.108.89.0/24 20488 -192.108.90.0/23 20488 -192.108.92.0/24 20488 -192.108.98.0/24 27066 -192.108.99.0/24 18055 -192.108.100.0/23 3292 -192.108.106.0/24 21976 -192.108.114.0/24 8253 -192.108.115.0/24 50897 -192.108.116.0/23 50897 -192.108.118.0/24 50897 -192.108.119.0/24 2263 -192.108.120.0/24 786 -192.108.124.0/24 1475 -192.108.125.0/24 34521 -192.108.127.0/24 393543 -192.108.130.0/23 2607 -192.108.132.0/23 2607 -192.108.138.0/24 2607 -192.108.149.0/24 2607 -192.108.175.0/24 1541 -192.108.176.0/22 721 -192.108.180.0/23 721 -192.108.182.0/24 721 -192.108.183.0/24 27064 -192.108.184.0/24 27064 -192.108.188.0/24 231 -192.108.190.0/23 231 -192.108.195.0/24 1880 -192.108.196.0/24 1880 -192.108.197.0/24 1878 -192.108.198.0/23 1880 -192.108.200.0/24 1880 -192.108.201.0/24 1878 -192.108.202.0/24 1880 -192.108.203.0/24 1878 -192.108.204.0/23 1880 -192.108.206.0/24 1880 -192.108.207.0/24 1878 -192.108.208.0/22 1880 -192.108.212.0/24 1878 -192.108.213.0/24 1880 -192.108.214.0/24 1880 -192.108.222.0/23 5972 -192.108.227.0/24 393820 -192.108.232.0/24 11509 -192.108.234.0/24 1836 -192.108.239.0/24 46489 -192.108.242.0/24 11773 -192.108.244.0/24 27064 -192.108.254.0/23 199524 -192.109.10.0/23 12796 -192.109.12.0/24 34531 -192.109.13.0/24 680 -192.109.14.0/24 24861 -192.109.15.0/24 46976 -192.109.16.0/24 20676 -192.109.17.0/24 46976 -192.109.19.0/24 680 -192.109.21.0/24 29670 -192.109.22.0/24 198967 -192.109.23.0/24 46976 -192.109.24.0/24 21385 -192.109.27.0/24 680 -192.109.29.0/24 702 -192.109.30.0/24 34615 -192.109.31.0/24 680 -192.109.36.0/24 13045 -192.109.37.0/24 34615 -192.109.38.0/24 34615 -192.109.40.0/23 12796 -192.109.42.0/24 29670 -192.109.44.0/24 680 -192.109.45.0/24 393495 -192.109.47.0/24 34615 -192.109.48.0/24 680 -192.109.50.0/23 12291 -192.109.53.0/24 12941 -192.109.54.0/24 3320 -192.109.56.0/24 8220 -192.109.61.0/24 32787 -192.109.63.0/24 8590 -192.109.67.0/24 32787 -192.109.68.0/23 32787 -192.109.75.0/24 21580 -192.109.76.0/24 553 -192.109.81.0/24 13237 -192.109.82.0/24 29670 -192.109.84.0/23 57121 -192.109.89.0/24 6830 -192.109.91.0/24 35751 -192.109.92.0/23 36601 -192.109.95.0/24 8767 -192.109.96.0/24 3320 -192.109.97.0/24 51724 -192.109.98.0/24 207967 -192.109.99.0/24 40459 -192.109.100.0/24 35751 -192.109.101.0/24 680 -192.109.102.0/24 12337 -192.109.103.0/24 63401 -192.109.104.0/24 393817 -192.109.105.0/24 49312 -192.109.108.0/24 16205 -192.109.109.0/24 61317 -192.109.110.0/24 61317 -192.109.111.0/24 12312 -192.109.115.0/24 680 -192.109.116.0/24 680 -192.109.117.0/24 61317 -192.109.119.0/24 61317 -192.109.120.0/24 63346 -192.109.121.0/24 3320 -192.109.122.0/24 3320 -192.109.123.0/24 61317 -192.109.124.0/24 3320 -192.109.125.0/24 61317 -192.109.126.0/24 8422 -192.109.129.0/24 3320 -192.109.130.0/24 3320 -192.109.131.0/24 61317 -192.109.132.0/23 57121 -192.109.134.0/23 680 -192.109.136.0/24 61317 -192.109.140.0/23 49690 -192.109.143.0/24 203926 -192.109.144.0/24 3741 -192.109.145.0/24 209677 -192.109.146.0/24 4755 -192.109.147.0/24 10429 -192.109.148.0/24 3549 -192.109.149.0/24 61317 -192.109.150.0/23 3320 -192.109.152.0/22 3320 -192.109.156.0/23 3320 -192.109.158.0/24 3320 -192.109.165.0/24 61317 -192.109.175.0/24 680 -192.109.176.0/24 3209 -192.109.177.0/24 680 -192.109.179.0/24 702 -192.109.184.0/22 32787 -192.109.188.0/24 32787 -192.109.190.0/24 8590 -192.109.195.0/24 52012 -192.109.197.0/24 13647 -192.109.199.0/24 8937 -192.109.202.0/24 680 -192.109.204.0/24 35701 -192.109.205.0/24 210176 -192.109.206.0/23 702 -192.109.209.0/24 3320 -192.109.210.0/24 207876 -192.109.211.0/24 6830 -192.109.213.0/24 8422 -192.109.216.0/24 3356 -192.109.218.0/24 33848 -192.109.222.0/24 15404 -192.109.223.0/24 200567 -192.109.227.0/24 15743 -192.109.231.0/24 200567 -192.109.232.0/23 4785 -192.109.234.0/24 680 -192.109.235.0/24 200567 -192.109.236.0/24 15854 -192.109.239.0/24 200567 -192.109.243.0/24 207875 -192.109.246.0/24 42691 -192.109.248.0/24 207875 -192.109.250.0/24 207875 -192.109.252.0/24 13039 -192.109.253.0/24 207875 -192.109.254.0/23 702 -192.110.0.0/24 46304 -192.110.19.0/24 40227 -192.110.64.0/22 40443 -192.110.68.0/24 7018 -192.110.69.0/24 40443 -192.110.70.0/23 40443 -192.110.72.0/21 40443 -192.110.144.0/22 14615 -192.110.150.0/23 32588 -192.110.153.0/24 10796 -192.110.155.0/24 393835 -192.110.156.0/22 11385 -192.110.160.0/21 53755 -192.110.169.0/24 12025 -192.110.170.0/23 32488 -192.110.172.0/22 54826 -192.110.176.0/20 31893 -192.110.192.0/20 26652 -192.110.208.0/21 3800 -192.110.216.0/22 25769 -192.110.220.0/23 33657 -192.110.255.0/24 54054 -192.111.0.0/24 25791 -192.111.1.0/24 397462 -192.111.4.0/24 14618 -192.111.5.0/24 16509 -192.111.10.0/23 33111 -192.111.12.0/24 397650 -192.111.13.0/24 3356 -192.111.16.0/22 393467 -192.111.20.0/22 13855 -192.111.24.0/22 395567 -192.111.28.0/24 21678 -192.111.31.0/24 36305 -192.111.33.0/24 224 -192.111.36.0/24 174 -192.111.37.0/24 40244 -192.111.38.0/24 13460 -192.111.39.0/24 2110 -192.111.47.0/24 3247 -192.111.49.0/24 46121 -192.111.54.0/23 53292 -192.111.56.0/21 22422 -192.111.64.0/20 26827 -192.111.84.0/24 11369 -192.111.86.0/24 65 -192.111.104.0/24 5403 -192.111.105.0/24 1221 -192.111.107.0/24 1280 -192.111.108.0/23 7212 -192.111.110.0/24 7212 -192.111.111.0/24 393830 -192.111.112.0/24 3464 -192.111.116.0/24 721 -192.111.117.0/24 190 -192.111.123.0/24 3477 -192.111.128.0/20 46562 -192.111.144.0/20 31863 -192.111.213.0/24 2152 -192.111.214.0/24 393999 -192.111.217.0/24 33544 -192.111.218.0/24 33657 -192.111.219.0/24 12271 -192.111.222.0/24 27412 -192.111.224.0/24 5006 -192.111.225.0/24 5972 -192.111.226.0/23 5972 -192.111.229.0/24 2715 -192.111.230.0/24 61721 -192.111.231.0/24 19773 -192.111.232.0/21 19773 -192.111.240.0/21 19773 -192.111.248.0/23 19773 -192.111.250.0/24 19773 -192.111.251.0/24 36201 -192.111.253.0/24 63446 -192.112.0.0/24 23005 -192.112.2.0/24 7046 -192.112.9.0/24 270 -192.112.10.0/23 270 -192.112.16.0/22 270 -192.112.20.0/24 297 -192.112.23.0/24 22773 -192.112.24.0/24 6528 -192.112.29.0/24 63327 -192.112.35.0/24 22364 -192.112.36.0/24 5927 -192.112.37.0/24 40692 -192.112.38.0/24 5927 -192.112.39.0/24 11327 -192.112.45.0/24 47784 -192.112.48.0/24 47010 -192.112.50.0/24 3356 -192.112.54.0/24 19395 -192.112.63.0/24 3549 -192.112.66.0/24 62812 -192.112.69.0/24 393714 -192.112.82.0/24 62523 -192.112.97.0/24 4046 -192.112.102.0/24 5050 -192.112.135.0/24 1998 -192.112.136.0/23 1998 -192.112.142.0/23 1906 -192.112.144.0/24 1906 -192.112.146.0/23 1906 -192.112.148.0/24 21537 -192.112.150.0/24 33132 -192.112.180.0/24 393843 -192.112.183.0/24 188 -192.112.208.0/24 21263 -192.112.211.0/24 7046 -192.112.215.0/24 10203 -192.112.219.0/24 7018 -192.112.220.0/22 297 -192.112.224.0/24 270 -192.112.226.0/23 297 -192.112.230.0/24 270 -192.112.240.0/24 701 -192.112.244.0/24 11427 -192.112.245.0/24 16410 -192.112.247.0/24 766 -192.112.251.0/24 7018 -192.112.253.0/24 3999 -192.112.254.0/24 34578 -192.112.255.0/24 33360 -192.113.0.0/18 16074 -192.113.65.0/24 10991 -192.113.66.0/23 10991 -192.113.68.0/22 10991 -192.113.72.0/24 10991 -192.113.80.0/20 16074 -192.113.96.0/19 16074 -192.113.128.0/17 16074 -192.114.0.0/21 378 -192.114.11.0/24 8551 -192.114.16.0/21 378 -192.114.36.0/22 8738 -192.114.40.0/21 8551 -192.114.48.0/21 378 -192.114.56.0/22 378 -192.114.60.0/23 378 -192.114.64.0/20 8551 -192.114.80.0/22 8551 -192.114.84.0/22 9116 -192.114.88.0/21 378 -192.114.96.0/20 378 -192.114.112.0/21 12400 -192.114.120.0/22 12400 -192.114.124.0/22 378 -192.114.128.0/20 378 -192.114.144.0/22 8551 -192.114.148.0/22 8894 -192.114.152.0/22 21363 -192.114.160.0/19 9116 -192.114.192.0/18 378 -192.115.0.0/21 31391 -192.115.8.0/22 8203 -192.115.16.0/20 8551 -192.115.32.0/20 378 -192.115.56.0/21 8551 -192.115.64.0/22 378 -192.115.68.0/22 1680 -192.115.72.0/21 9116 -192.115.80.0/22 12619 -192.115.84.0/22 1680 -192.115.88.0/21 3288 -192.115.96.0/21 3288 -192.115.104.0/22 8551 -192.115.112.0/20 1680 -192.115.128.0/21 8551 -192.115.136.0/22 35016 -192.115.140.0/22 1680 -192.115.144.0/20 1680 -192.115.160.0/22 1680 -192.115.164.0/22 378 -192.115.168.0/21 378 -192.115.176.0/22 12736 -192.115.180.0/22 15823 -192.115.184.0/21 8551 -192.115.192.0/21 378 -192.115.200.0/21 1680 -192.115.208.0/22 31391 -192.115.212.0/22 30744 -192.115.216.0/21 9116 -192.115.224.0/20 9116 -192.115.240.0/22 35553 -192.115.248.0/23 12753 -192.115.250.0/24 12753 -192.115.251.0/24 30228 -192.115.252.0/22 12802 -192.116.0.0/23 15975 -192.116.2.0/24 15975 -192.116.4.0/23 12975 -192.116.6.0/23 15975 -192.116.10.0/23 15975 -192.116.12.0/22 15975 -192.116.16.0/21 15975 -192.116.24.0/21 8203 -192.116.32.0/19 1680 -192.116.64.0/18 9116 -192.116.128.0/17 9116 -192.117.0.0/18 9116 -192.117.64.0/20 8347 -192.117.80.0/20 378 -192.117.96.0/19 8551 -192.117.128.0/18 9116 -192.117.208.0/20 8347 -192.117.232.0/21 8551 -192.117.240.0/20 9116 -192.118.0.0/24 29410 -192.118.2.0/23 29410 -192.118.8.0/22 12400 -192.118.12.0/22 16061 -192.118.20.0/22 8958 -192.118.24.0/22 9071 -192.118.28.0/22 1680 -192.118.32.0/22 21486 -192.118.36.0/22 12988 -192.118.40.0/22 12441 -192.118.48.0/22 16158 -192.118.60.0/22 13073 -192.118.64.0/22 16370 -192.118.68.0/22 13074 -192.118.72.0/22 13093 -192.118.76.0/22 109 -192.118.80.0/22 13074 -192.118.84.0/22 1680 -192.118.88.0/22 28783 -192.118.92.0/22 15976 -192.118.96.0/22 13240 -192.118.100.0/22 25565 -192.118.112.0/22 29149 -192.118.116.0/22 15526 -192.118.128.0/22 39213 -192.118.132.0/22 209876 -192.119.2.0/23 25853 -192.119.4.0/22 54804 -192.119.8.0/21 55081 -192.119.16.0/20 16591 -192.119.32.0/20 54434 -192.119.64.0/18 54290 -192.119.128.0/22 40098 -192.119.132.0/23 16521 -192.119.134.0/24 53949 -192.119.136.0/22 26658 -192.119.140.0/22 8100 -192.119.144.0/20 393892 -192.119.160.0/24 9009 -192.119.161.0/24 397423 -192.119.162.0/23 55154 -192.119.164.0/24 396356 -192.119.165.0/24 55154 -192.119.166.0/24 7203 -192.119.167.0/24 397423 -192.119.168.0/24 7203 -192.119.169.0/24 55154 -192.119.170.0/23 55154 -192.119.172.0/24 55154 -192.119.173.0/24 7203 -192.119.174.0/24 397423 -192.119.175.0/24 55154 -192.119.176.0/20 55083 -192.119.192.0/18 30036 -192.120.0.0/24 53338 -192.120.4.0/24 6620 -192.120.10.0/23 24008 -192.120.12.0/22 24008 -192.120.47.0/24 1759 -192.120.48.0/23 1759 -192.120.246.0/23 6620 -192.120.248.0/22 6620 -192.121.0.0/24 35041 -192.121.1.0/24 1257 -192.121.2.0/24 35041 -192.121.3.0/24 199902 -192.121.4.0/24 158 -192.121.5.0/24 29518 -192.121.6.0/23 29518 -192.121.8.0/24 29518 -192.121.9.0/24 197942 -192.121.10.0/24 12552 -192.121.11.0/24 205199 -192.121.12.0/24 8473 -192.121.13.0/24 43893 -192.121.16.0/23 43350 -192.121.18.0/24 3301 -192.121.19.0/24 1729 -192.121.20.0/24 48579 -192.121.22.0/23 47447 -192.121.24.0/24 12552 -192.121.25.0/24 35041 -192.121.26.0/24 42303 -192.121.27.0/24 9201 -192.121.28.0/24 43948 -192.121.29.0/24 3301 -192.121.30.0/24 2119 -192.121.31.0/24 12552 -192.121.32.0/23 1257 -192.121.34.0/24 1653 -192.121.35.0/24 12552 -192.121.36.0/23 35041 -192.121.38.0/24 12552 -192.121.39.0/24 45011 -192.121.40.0/24 3301 -192.121.41.0/24 198568 -192.121.42.0/24 198568 -192.121.43.0/24 158 -192.121.44.0/24 29518 -192.121.45.0/24 60269 -192.121.46.0/23 20836 -192.121.49.0/24 1257 -192.121.50.0/23 3301 -192.121.52.0/24 3301 -192.121.56.0/24 61207 -192.121.57.0/24 12552 -192.121.58.0/23 12552 -192.121.60.0/24 202064 -192.121.61.0/24 1257 -192.121.62.0/24 43893 -192.121.63.0/24 35100 -192.121.64.0/23 35041 -192.121.67.0/24 12552 -192.121.69.0/24 19399 -192.121.70.0/24 48171 -192.121.71.0/24 12552 -192.121.74.0/23 60238 -192.121.76.0/24 50989 -192.121.79.0/24 28726 -192.121.81.0/24 3246 -192.121.82.0/24 9009 -192.121.83.0/24 3166 -192.121.86.0/24 13214 -192.121.87.0/24 43289 -192.121.88.0/24 12552 -192.121.89.0/24 1257 -192.121.90.0/24 199544 -192.121.91.0/24 12552 -192.121.92.0/22 12552 -192.121.96.0/23 12552 -192.121.98.0/24 12552 -192.121.99.0/24 51815 -192.121.100.0/24 12381 -192.121.101.0/24 2119 -192.121.102.0/24 1299 -192.121.104.0/24 1257 -192.121.105.0/24 20626 -192.121.106.0/23 35041 -192.121.108.0/24 29518 -192.121.109.0/24 3301 -192.121.110.0/24 1257 -192.121.112.0/23 39326 -192.121.114.0/23 3301 -192.121.117.0/24 20626 -192.121.118.0/23 15869 -192.121.120.0/24 199902 -192.121.122.0/23 42708 -192.121.124.0/23 42708 -192.121.126.0/24 42708 -192.121.128.0/22 205199 -192.121.133.0/24 39806 -192.121.134.0/23 42708 -192.121.136.0/24 42708 -192.121.137.0/24 51815 -192.121.140.0/24 8403 -192.121.141.0/24 25176 -192.121.142.0/23 25176 -192.121.144.0/24 719 -192.121.145.0/24 198054 -192.121.146.0/23 42708 -192.121.148.0/23 42708 -192.121.150.0/23 158 -192.121.152.0/24 42708 -192.121.153.0/24 48171 -192.121.155.0/24 42708 -192.121.156.0/22 51747 -192.121.160.0/24 8473 -192.121.161.0/24 62463 -192.121.162.0/23 43350 -192.121.164.0/24 158 -192.121.165.0/24 48579 -192.121.166.0/23 20860 -192.121.168.0/24 30821 -192.121.169.0/24 51747 -192.121.170.0/24 57169 -192.121.172.0/24 2119 -192.121.173.0/24 57208 -192.121.175.0/24 12782 -192.121.176.0/23 35041 -192.121.178.0/24 35041 -192.121.179.0/24 12552 -192.121.180.0/24 199321 -192.121.181.0/24 35041 -192.121.184.0/24 51747 -192.121.185.0/24 42708 -192.121.186.0/24 42708 -192.121.187.0/24 35041 -192.121.188.0/23 35041 -192.121.191.0/24 51747 -192.121.192.0/24 2119 -192.121.193.0/24 3301 -192.121.194.0/24 47708 -192.121.195.0/24 20473 -192.121.196.0/23 35041 -192.121.199.0/24 158 -192.121.200.0/22 47171 -192.121.204.0/22 203052 -192.121.208.0/23 207700 -192.121.210.0/24 12552 -192.121.211.0/24 50273 -192.121.212.0/22 50273 -192.121.216.0/23 50273 -192.121.218.0/24 41884 -192.121.219.0/24 12552 -192.121.220.0/24 51747 -192.121.221.0/24 1653 -192.121.225.0/24 42708 -192.121.226.0/24 200606 -192.121.228.0/24 3166 -192.121.230.0/24 12552 -192.121.232.0/24 3301 -192.121.234.0/24 59951 -192.121.235.0/24 3246 -192.121.238.0/24 3301 -192.121.239.0/24 30893 -192.121.241.0/24 43948 -192.121.242.0/24 197942 -192.121.243.0/24 12552 -192.121.244.0/24 204896 -192.121.245.0/24 36351 -192.121.246.0/24 50304 -192.121.247.0/24 45671 -192.121.248.0/24 204179 -192.121.251.0/24 42708 -192.121.252.0/24 197308 -192.121.255.0/24 1257 -192.122.0.0/24 393825 -192.122.131.0/24 23767 -192.122.132.0/22 23767 -192.122.136.0/22 23767 -192.122.140.0/24 23767 -192.122.149.0/24 63456 -192.122.150.0/24 393849 -192.122.171.0/24 9503 -192.122.172.0/24 19817 -192.122.173.0/24 109 -192.122.174.0/24 109 -192.122.175.0/24 40220 -192.122.180.0/24 4768 -192.122.182.0/23 237 -192.122.184.0/21 237 -192.122.200.0/24 237 -192.122.201.0/24 393858 -192.122.202.0/23 27001 -192.122.204.0/23 12168 -192.122.206.0/24 33044 -192.122.209.0/24 1280 -192.122.212.0/24 209 -192.122.213.0/24 27066 -192.122.215.0/24 36191 -192.122.217.0/24 49182 -192.122.218.0/23 49182 -192.122.232.0/23 49182 -192.122.235.0/24 26 -192.122.236.0/24 26 -192.122.237.0/24 33629 -192.122.238.0/23 1930 -192.122.240.0/23 1930 -192.122.242.0/24 1930 -192.122.243.0/24 21718 -192.122.244.0/23 21718 -192.122.246.0/24 21718 -192.122.250.0/24 16673 -192.122.252.0/24 5659 -192.122.255.0/24 23319 -192.124.0.0/24 21777 -192.124.1.0/24 243 -192.124.2.0/23 243 -192.124.4.0/22 243 -192.124.8.0/24 243 -192.124.10.0/24 132029 -192.124.14.0/24 132029 -192.124.18.0/24 23033 -192.124.20.0/24 297 -192.124.23.0/24 393805 -192.124.25.0/24 42873 -192.124.26.0/23 42873 -192.124.28.0/24 42873 -192.124.29.0/24 62611 -192.124.30.0/24 36031 -192.124.34.0/24 33154 -192.124.35.0/24 589 -192.124.40.0/23 1734 -192.124.42.0/24 11916 -192.124.46.0/24 786 -192.124.57.0/24 3432 -192.124.90.0/24 1734 -192.124.98.0/24 31766 -192.124.100.0/24 226 -192.124.101.0/24 3944 -192.124.116.0/24 35686 -192.124.118.0/24 174 -192.124.119.0/24 29802 -192.124.126.0/24 13635 -192.124.127.0/24 16920 -192.124.129.0/24 27644 -192.124.132.0/24 36637 -192.124.153.0/24 14325 -192.124.156.0/24 393808 -192.124.159.0/24 7786 -192.124.160.0/24 4648 -192.124.165.0/24 63464 -192.124.166.0/23 27636 -192.124.168.0/23 20246 -192.124.170.0/24 2118 -192.124.171.0/24 15455 -192.124.172.0/24 2118 -192.124.174.0/24 60139 -192.124.176.0/24 2118 -192.124.178.0/23 2118 -192.124.184.0/21 3312 -192.124.193.0/24 56595 -192.124.198.0/24 56595 -192.124.199.0/24 210314 -192.124.200.0/22 56595 -192.124.204.0/24 56595 -192.124.205.0/24 210314 -192.124.206.0/23 56595 -192.124.208.0/24 60139 -192.124.209.0/24 2118 -192.124.216.0/24 15455 -192.124.220.0/24 6922 -192.124.223.0/24 6922 -192.124.224.0/24 63436 -192.124.225.0/24 6922 -192.124.226.0/23 6922 -192.124.228.0/24 6922 -192.124.232.0/23 6922 -192.124.236.0/24 35991 -192.124.237.0/24 680 -192.124.238.0/24 2857 -192.124.239.0/24 680 -192.124.240.0/22 680 -192.124.244.0/23 680 -192.124.246.0/24 680 -192.124.248.0/24 680 -192.124.249.0/24 30148 -192.124.250.0/23 680 -192.124.252.0/24 3320 -192.124.253.0/24 680 -192.124.254.0/24 680 -192.125.0.0/17 20868 -192.125.128.0/17 12663 -192.126.0.0/24 394122 -192.126.1.0/24 719 -192.126.23.0/24 719 -192.126.24.0/24 719 -192.126.35.0/24 719 -192.126.44.0/24 719 -192.126.46.0/24 719 -192.126.63.0/24 1759 -192.126.64.0/24 1759 -192.126.69.0/24 393799 -192.126.70.0/23 23526 -192.126.72.0/21 54952 -192.126.80.0/21 12001 -192.126.88.0/22 32244 -192.126.92.0/22 12001 -192.126.96.0/20 33657 -192.126.112.0/20 26484 -192.126.128.0/17 397731 -192.127.94.0/24 14962 -192.127.99.0/24 14962 -192.127.198.0/23 14962 -192.127.202.0/23 14962 -192.127.228.0/24 7018 -192.127.232.0/24 7018 -192.127.252.0/24 14962 -192.128.133.0/24 15259 -192.128.134.0/24 15259 -192.128.166.0/23 797 -192.129.0.0/24 40239 -192.129.1.0/24 680 -192.129.2.0/24 680 -192.129.3.0/24 2614 -192.129.4.0/24 2614 -192.129.7.0/24 680 -192.129.8.0/21 680 -192.129.16.0/23 680 -192.129.18.0/24 680 -192.129.23.0/24 680 -192.129.24.0/23 1142 -192.129.26.0/23 680 -192.129.28.0/23 680 -192.129.30.0/24 42873 -192.129.31.0/24 680 -192.129.32.0/23 517 -192.129.45.0/24 12731 -192.129.51.0/24 680 -192.129.55.0/24 15368 -192.129.58.0/24 3320 -192.129.64.0/24 27064 -192.129.65.0/24 721 -192.129.66.0/23 721 -192.129.70.0/24 26405 -192.129.76.0/24 40330 -192.129.78.0/24 13977 -192.129.84.0/24 14536 -192.129.85.0/24 7834 -192.129.97.0/24 11528 -192.129.99.0/24 30432 -192.129.112.0/20 53832 -192.129.128.0/17 54290 -192.130.0.0/20 1759 -192.130.16.0/21 1759 -192.130.24.0/22 1759 -192.130.28.0/23 1759 -192.130.30.0/24 1759 -192.130.31.0/24 29601 -192.130.32.0/19 1759 -192.130.64.0/18 1759 -192.130.128.0/20 1759 -192.130.144.0/21 1759 -192.130.152.0/22 1759 -192.130.156.0/24 1759 -192.130.157.0/24 29601 -192.130.158.0/23 1759 -192.130.160.0/19 1759 -192.130.192.0/18 1759 -192.131.0.0/24 23348 -192.131.4.0/23 63412 -192.131.13.0/24 4804 -192.131.21.0/24 7296 -192.131.22.0/24 2914 -192.131.25.0/24 1221 -192.131.32.0/21 30689 -192.131.40.0/22 12271 -192.131.44.0/24 394151 -192.131.46.0/24 6318 -192.131.51.0/24 6318 -192.131.55.0/24 6318 -192.131.56.0/21 21766 -192.131.64.0/22 6318 -192.131.68.0/22 5797 -192.131.72.0/23 6318 -192.131.76.0/24 6318 -192.131.79.0/24 51063 -192.131.83.0/24 1294 -192.131.85.0/24 1294 -192.131.86.0/23 1294 -192.131.88.0/24 13767 -192.131.93.0/24 14977 -192.131.97.0/24 40108 -192.131.99.0/24 26012 -192.131.102.0/24 1742 -192.131.107.0/24 395146 -192.131.109.0/24 396475 -192.131.110.0/24 63415 -192.131.112.0/24 701 -192.131.116.0/22 701 -192.131.121.0/24 683 -192.131.123.0/24 600 -192.131.125.0/24 19 -192.131.129.0/24 20442 -192.131.133.0/24 3356 -192.131.134.0/24 21538 -192.131.136.0/24 32521 -192.131.137.0/24 394731 -192.131.138.0/23 32521 -192.131.140.0/24 54747 -192.131.141.0/24 396433 -192.131.142.0/24 400 -192.131.146.0/24 12169 -192.131.150.0/24 4826 -192.131.151.0/24 19845 -192.131.152.0/24 4826 -192.131.153.0/24 19845 -192.131.155.0/24 23262 -192.131.182.0/24 3356 -192.131.183.0/24 3549 -192.131.184.0/23 30437 -192.131.188.0/22 30437 -192.131.192.0/22 30437 -192.131.215.0/24 30437 -192.131.223.0/24 30437 -192.131.232.0/24 225 -192.131.234.0/24 63396 -192.131.251.0/24 58698 -192.131.255.0/24 394060 -192.132.0.0/24 393879 -192.132.5.0/24 32281 -192.132.7.0/24 11714 -192.132.8.0/24 20419 -192.132.13.0/24 26785 -192.132.15.0/24 9858 -192.132.16.0/23 5972 -192.132.18.0/24 5972 -192.132.24.0/24 26395 -192.132.27.0/24 32468 -192.132.30.0/24 55189 -192.132.32.0/23 18568 -192.132.34.0/24 137 -192.132.35.0/24 2715 -192.132.44.0/24 46321 -192.132.53.0/24 1930 -192.132.58.0/24 20141 -192.132.59.0/24 393900 -192.132.61.0/24 62642 -192.132.62.0/23 21912 -192.132.64.0/24 394858 -192.132.79.0/24 367 -192.132.80.0/24 1451 -192.132.81.0/24 721 -192.132.82.0/23 721 -192.132.84.0/24 1510 -192.132.85.0/24 1541 -192.132.86.0/23 1541 -192.132.94.0/24 6939 -192.132.96.0/24 46755 -192.132.98.0/24 1226 -192.132.104.0/24 19 -192.132.205.0/24 7018 -192.132.206.0/24 3858 -192.132.208.0/24 22723 -192.132.210.0/24 3356 -192.132.212.0/24 63476 -192.132.213.0/24 47024 -192.132.214.0/23 12169 -192.132.216.0/24 12169 -192.132.217.0/24 14074 -192.132.218.0/23 14074 -192.132.221.0/24 14074 -192.132.222.0/23 14074 -192.132.225.0/24 14074 -192.132.227.0/24 14074 -192.132.228.0/23 14074 -192.132.230.0/24 14074 -192.132.235.0/24 26385 -192.132.236.0/23 26385 -192.132.243.0/24 396873 -192.132.245.0/24 201634 -192.132.247.0/24 9640 -192.132.253.0/24 58584 -192.132.255.0/24 393943 -192.133.0.0/23 63286 -192.133.2.0/24 23148 -192.133.7.0/24 8025 -192.133.12.0/24 14325 -192.133.15.0/24 15525 -192.133.16.0/24 397820 -192.133.23.0/24 13692 -192.133.26.0/24 53281 -192.133.28.0/24 137 -192.133.29.0/24 6629 -192.133.31.0/24 138348 -192.133.42.0/24 30449 -192.133.45.0/24 393877 -192.133.46.0/24 11101 -192.133.47.0/24 63465 -192.133.49.0/24 11075 -192.133.60.0/24 1998 -192.133.62.0/24 394705 -192.133.63.0/24 7828 -192.133.72.0/24 40892 -192.133.75.0/24 53495 -192.133.76.0/23 13414 -192.133.78.0/23 35995 -192.133.80.0/23 40065 -192.133.82.0/24 393911 -192.133.83.0/24 174 -192.133.84.0/24 7029 -192.133.90.0/24 23314 -192.133.91.0/24 2386 -192.133.95.0/24 19184 -192.133.97.0/24 2703 -192.133.99.0/24 2901 -192.133.101.0/24 7029 -192.133.105.0/24 33287 -192.133.106.0/23 33060 -192.133.109.0/24 12401 -192.133.110.0/23 719 -192.133.112.0/22 26794 -192.133.125.0/24 4185 -192.133.126.0/24 17327 -192.133.128.0/24 27282 -192.133.129.0/24 23404 -192.133.136.0/21 15317 -192.133.144.0/22 11017 -192.133.148.0/23 11017 -192.133.152.0/24 11017 -192.133.154.0/23 11017 -192.133.157.0/24 11017 -192.133.158.0/23 11017 -192.133.160.0/20 54533 -192.133.176.0/24 11017 -192.133.178.0/23 11017 -192.133.182.0/23 11017 -192.133.184.0/24 11017 -192.133.189.0/24 11017 -192.133.190.0/23 109 -192.133.192.0/19 109 -192.133.224.0/20 109 -192.133.240.0/22 109 -192.133.244.0/24 786 -192.133.247.0/24 16613 -192.133.248.0/23 29804 -192.133.254.0/24 7018 -192.134.0.0/22 2486 -192.134.4.0/22 2485 -192.134.8.0/21 2200 -192.134.16.0/20 2200 -192.134.32.0/19 2200 -192.134.64.0/20 2200 -192.134.80.0/21 2200 -192.134.88.0/22 2200 -192.134.92.0/22 2485 -192.134.96.0/19 2200 -192.134.128.0/22 2200 -192.134.132.0/22 3215 -192.134.136.0/23 60855 -192.134.138.0/23 3215 -192.134.140.0/23 3215 -192.134.142.0/24 3215 -192.134.148.0/22 2200 -192.134.152.0/21 2200 -192.134.164.0/24 2200 -192.134.216.0/21 2200 -192.134.240.0/20 2200 -192.135.0.0/24 30448 -192.135.4.0/23 7046 -192.135.6.0/24 7046 -192.135.7.0/24 8804 -192.135.8.0/21 137 -192.135.16.0/20 137 -192.135.32.0/23 137 -192.135.35.0/24 137 -192.135.36.0/23 137 -192.135.50.0/24 32319 -192.135.54.0/23 40063 -192.135.56.0/22 33339 -192.135.60.0/23 394176 -192.135.62.0/24 394124 -192.135.76.0/24 11994 -192.135.79.0/24 8122 -192.135.80.0/24 3599 -192.135.83.0/24 855 -192.135.86.0/24 17144 -192.135.87.0/24 15290 -192.135.88.0/24 30520 -192.135.90.0/23 55714 -192.135.95.0/24 3816 -192.135.109.0/24 12025 -192.135.110.0/23 14979 -192.135.112.0/23 4262 -192.135.118.0/23 4262 -192.135.120.0/23 4262 -192.135.122.0/24 27064 -192.135.123.0/24 394259 -192.135.129.0/24 35038 -192.135.131.0/24 23294 -192.135.136.0/24 11372 -192.135.141.0/24 5078 -192.135.150.0/23 559 -192.135.152.0/21 559 -192.135.166.0/24 8991 -192.135.167.0/24 2611 -192.135.168.0/24 2611 -192.135.174.0/24 7459 -192.135.176.0/24 14223 -192.135.181.0/24 46722 -192.135.183.0/24 6377 -192.135.185.0/24 268620 -192.135.186.0/24 26633 -192.135.187.0/24 1930 -192.135.188.0/24 7018 -192.135.189.0/24 6343 -192.135.191.0/24 1982 -192.135.193.0/24 5133 -192.135.194.0/23 30232 -192.135.196.0/24 17054 -192.135.198.0/24 11994 -192.135.199.0/24 46401 -192.135.200.0/22 53830 -192.135.204.0/24 14860 -192.135.206.0/24 394004 -192.135.208.0/24 1221 -192.135.209.0/24 21976 -192.135.211.0/24 1906 -192.135.212.0/24 1906 -192.135.213.0/24 8122 -192.135.217.0/24 158 -192.135.218.0/24 17105 -192.135.219.0/24 1930 -192.135.223.0/24 395403 -192.135.224.0/24 394139 -192.135.227.0/24 32253 -192.135.230.0/24 53543 -192.135.231.0/24 198864 -192.135.232.0/23 198864 -192.135.234.0/24 198864 -192.135.237.0/24 7377 -192.135.238.0/24 7377 -192.135.239.0/24 109 -192.135.248.0/24 40804 -192.135.250.0/24 109 -192.135.251.0/24 33099 -192.135.253.0/24 2116 -192.135.254.0/24 35686 -192.135.255.0/24 46573 -192.136.0.0/24 394017 -192.136.7.0/24 12046 -192.136.9.0/24 1759 -192.136.12.0/24 2714 -192.136.14.0/24 701 -192.136.15.0/24 26649 -192.136.16.0/24 13567 -192.136.19.0/24 6848 -192.136.22.0/24 32389 -192.136.24.0/24 2384 -192.136.27.0/24 3633 -192.136.30.0/24 8677 -192.136.36.0/24 11071 -192.136.49.0/24 35038 -192.136.52.0/24 1930 -192.136.53.0/24 46554 -192.136.55.0/24 25543 -192.136.62.0/24 1798 -192.136.66.0/24 10959 -192.136.67.0/24 20448 -192.136.70.0/24 36081 -192.136.71.0/24 15424 -192.136.73.0/24 6667 -192.136.74.0/24 6667 -192.136.103.0/24 393935 -192.136.104.0/23 26311 -192.136.109.0/24 22704 -192.136.110.0/24 3912 -192.136.111.0/24 7385 -192.136.113.0/24 63463 -192.136.114.0/23 394971 -192.136.116.0/24 397061 -192.136.117.0/24 27339 -192.136.118.0/24 393983 -192.136.130.0/24 1531 -192.136.135.0/24 11847 -192.136.136.0/24 10745 -192.136.140.0/24 46375 -192.136.144.0/22 8 -192.136.148.0/23 8 -192.136.153.0/24 1700 -192.136.157.0/24 394090 -192.136.158.0/23 36374 -192.136.160.0/20 33728 -192.136.176.0/21 29888 -192.136.184.0/23 29888 -192.136.190.0/23 29888 -192.136.192.0/18 11427 -192.137.21.0/24 7018 -192.137.44.0/23 2386 -192.137.57.0/24 33491 -192.137.107.0/24 33573 -192.137.109.0/24 33573 -192.137.114.0/24 33573 -192.137.158.0/24 19036 -192.137.161.0/24 1257 -192.137.162.0/23 1257 -192.137.164.0/24 1257 -192.137.186.0/24 3303 -192.137.210.0/24 81 -192.138.0.0/24 393902 -192.138.9.0/24 30354 -192.138.16.0/21 32244 -192.138.24.0/24 5972 -192.138.25.0/24 721 -192.138.26.0/23 5972 -192.138.28.0/22 5972 -192.138.32.0/22 5972 -192.138.36.0/24 5972 -192.138.37.0/24 721 -192.138.38.0/24 5972 -192.138.39.0/24 721 -192.138.40.0/22 5972 -192.138.44.0/24 721 -192.138.45.0/24 5972 -192.138.46.0/23 5972 -192.138.48.0/22 5972 -192.138.52.0/24 5972 -192.138.53.0/24 721 -192.138.54.0/24 5972 -192.138.55.0/24 721 -192.138.56.0/21 5972 -192.138.64.0/24 721 -192.138.65.0/24 5972 -192.138.66.0/24 5972 -192.138.67.0/24 721 -192.138.68.0/23 5972 -192.138.70.0/24 721 -192.138.71.0/24 5972 -192.138.72.0/22 5972 -192.138.76.0/23 5972 -192.138.78.0/24 721 -192.138.79.0/24 5972 -192.138.80.0/22 5972 -192.138.85.0/24 127 -192.138.86.0/24 1930 -192.138.87.0/24 668 -192.138.89.0/24 33019 -192.138.99.0/24 23516 -192.138.101.0/24 20115 -192.138.109.0/24 25252 -192.138.110.0/23 25252 -192.138.116.0/23 25252 -192.138.131.0/24 5006 -192.138.133.0/24 393873 -192.138.137.0/24 237 -192.138.148.0/24 394212 -192.138.161.0/24 63413 -192.138.162.0/24 397892 -192.138.164.0/24 53328 -192.138.168.0/24 3354 -192.138.169.0/24 188 -192.138.172.0/24 20001 -192.138.173.0/24 12036 -192.138.176.0/23 40043 -192.138.178.0/24 40043 -192.138.182.0/24 10430 -192.138.185.0/24 14875 -192.138.186.0/24 14875 -192.138.187.0/24 14091 -192.138.189.0/24 36236 -192.138.193.0/24 7276 -192.138.194.0/24 7276 -192.138.196.0/24 2828 -192.138.203.0/24 7834 -192.138.204.0/24 1930 -192.138.205.0/24 33668 -192.138.206.0/24 18853 -192.138.209.0/24 40584 -192.138.210.0/23 396881 -192.138.212.0/24 393918 -192.138.213.0/24 20143 -192.138.214.0/24 20143 -192.138.218.0/24 14332 -192.138.225.0/24 396835 -192.138.226.0/24 23028 -192.138.227.0/24 22994 -192.138.228.0/24 8971 -192.138.251.0/24 38590 -192.138.255.0/24 393933 -192.139.0.0/24 12137 -192.139.3.0/24 393888 -192.139.5.0/24 394382 -192.139.6.0/23 2665 -192.139.10.0/24 19350 -192.139.11.0/24 27628 -192.139.12.0/23 11032 -192.139.14.0/24 11032 -192.139.15.0/24 37054 -192.139.17.0/24 3561 -192.139.18.0/24 394121 -192.139.19.0/24 16796 -192.139.20.0/24 701 -192.139.21.0/24 25689 -192.139.26.0/24 14426 -192.139.27.0/24 19220 -192.139.30.0/24 852 -192.139.33.0/24 19423 -192.139.34.0/24 11507 -192.139.35.0/24 54841 -192.139.36.0/24 26037 -192.139.37.0/24 395087 -192.139.46.0/24 26227 -192.139.69.0/24 10965 -192.139.70.0/24 19842 -192.139.71.0/24 26221 -192.139.75.0/24 22950 -192.139.79.0/24 22652 -192.139.80.0/24 27381 -192.139.81.0/24 25706 -192.139.114.0/24 17001 -192.139.116.0/23 25689 -192.139.118.0/24 23314 -192.139.119.0/24 22652 -192.139.120.0/22 14642 -192.139.126.0/24 7122 -192.139.128.0/24 21956 -192.139.129.0/24 54738 -192.139.132.0/24 393922 -192.139.133.0/24 54743 -192.139.134.0/24 54105 -192.139.135.0/24 63251 -192.139.137.0/24 20115 -192.139.139.0/24 7795 -192.139.140.0/24 36031 -192.139.141.0/24 2665 -192.139.142.0/24 23498 -192.139.145.0/24 577 -192.139.148.0/24 11032 -192.139.149.0/24 376 -192.139.150.0/24 11032 -192.139.152.0/24 812 -192.139.153.0/24 19764 -192.139.154.0/24 22652 -192.139.156.0/23 14642 -192.139.158.0/24 14642 -192.139.160.0/22 803 -192.139.164.0/23 803 -192.139.166.0/24 14642 -192.139.167.0/24 803 -192.139.168.0/21 803 -192.139.176.0/21 803 -192.139.184.0/23 803 -192.139.187.0/24 36493 -192.139.188.0/24 36493 -192.139.190.0/23 25728 -192.139.192.0/24 393894 -192.139.194.0/23 2665 -192.139.196.0/24 3561 -192.139.198.0/24 25689 -192.139.205.0/24 17317 -192.139.213.0/24 25728 -192.139.214.0/24 25728 -192.139.216.0/23 25911 -192.139.219.0/24 819 -192.139.220.0/24 819 -192.139.221.0/24 577 -192.139.222.0/24 577 -192.139.224.0/24 32756 -192.139.231.0/24 577 -192.139.232.0/24 174 -192.139.233.0/24 11647 -192.139.237.0/24 26677 -192.139.245.0/24 395704 -192.139.255.0/24 398163 -192.140.1.0/24 267392 -192.140.2.0/23 35478 -192.140.4.0/24 7018 -192.140.5.0/24 40111 -192.140.6.0/24 393931 -192.140.7.0/24 54420 -192.140.8.0/22 266154 -192.140.12.0/22 266160 -192.140.16.0/22 265719 -192.140.20.0/22 28098 -192.140.24.0/22 266222 -192.140.28.0/22 266223 -192.140.32.0/22 266201 -192.140.36.0/22 266202 -192.140.40.0/22 266208 -192.140.44.0/22 266209 -192.140.48.0/22 266228 -192.140.52.0/22 266203 -192.140.56.0/23 262256 -192.140.60.0/22 265707 -192.140.64.0/22 266550 -192.140.68.0/22 266251 -192.140.76.0/22 266238 -192.140.80.0/22 266239 -192.140.88.0/22 266260 -192.140.92.0/22 265711 -192.140.96.0/22 266261 -192.140.100.0/22 266256 -192.140.104.0/22 266262 -192.140.108.0/22 266263 -192.140.112.0/22 266243 -192.140.116.0/22 266240 -192.140.120.0/22 266252 -192.140.126.0/24 265731 -192.140.127.0/24 265895 -192.140.144.0/21 9541 -192.140.152.0/22 133982 -192.140.208.0/21 23650 -192.140.216.0/24 136399 -192.140.220.0/22 45194 -192.140.224.0/23 56233 -192.140.226.0/23 135516 -192.140.228.0/22 133972 -192.140.248.0/22 63931 -192.140.252.0/22 135310 -192.141.0.0/22 267440 -192.141.4.0/22 263170 -192.141.9.0/24 264836 -192.141.10.0/24 266664 -192.141.11.0/24 264836 -192.141.12.0/22 267451 -192.141.16.0/22 267441 -192.141.24.0/22 267461 -192.141.28.0/22 267442 -192.141.32.0/22 267458 -192.141.36.0/24 265787 -192.141.37.0/24 264836 -192.141.38.0/24 264836 -192.141.39.0/24 265787 -192.141.40.0/22 265794 -192.141.44.0/22 265533 -192.141.48.0/23 265831 -192.141.50.0/24 265831 -192.141.51.0/24 262256 -192.141.52.0/22 267443 -192.141.56.0/22 267447 -192.141.60.0/22 267448 -192.141.64.0/22 21765 -192.141.68.0/22 267454 -192.141.72.0/22 267470 -192.141.76.0/22 267471 -192.141.80.0/22 267477 -192.141.84.0/22 267462 -192.141.88.0/22 267459 -192.141.92.0/22 265823 -192.141.96.0/24 267527 -192.141.98.0/23 267482 -192.141.100.0/22 267522 -192.141.104.0/22 267535 -192.141.108.0/22 267464 -192.141.112.0/22 267463 -192.141.116.0/22 267467 -192.141.120.0/22 267466 -192.141.124.0/22 265524 -192.141.128.0/22 264750 -192.141.132.0/22 267486 -192.141.136.0/22 267487 -192.141.140.0/22 267468 -192.141.144.0/22 267537 -192.141.148.0/22 265786 -192.141.152.0/22 267472 -192.141.156.0/22 267469 -192.141.160.0/22 267489 -192.141.164.0/22 265788 -192.141.168.0/22 16629 -192.141.172.0/22 267490 -192.141.176.0/22 265791 -192.141.180.0/22 265792 -192.141.184.0/22 267473 -192.141.188.0/22 267494 -192.141.192.0/22 267475 -192.141.196.0/22 267474 -192.141.200.0/22 267479 -192.141.204.0/22 267476 -192.141.208.0/22 265795 -192.141.212.0/22 28098 -192.141.216.0/22 267491 -192.141.220.0/22 267480 -192.141.224.0/22 267481 -192.141.228.0/22 265813 -192.141.232.0/22 267495 -192.141.236.0/22 267483 -192.141.240.0/22 267542 -192.141.244.0/22 265540 -192.141.248.0/22 267498 -192.141.252.0/22 267503 -192.142.0.0/16 36916 -192.143.0.0/16 37611 -192.144.0.0/24 29119 -192.144.2.0/23 29119 -192.144.4.0/24 56529 -192.144.5.0/24 35713 -192.144.6.0/24 64429 -192.144.7.0/24 45027 -192.144.8.0/22 34665 -192.144.12.0/22 48430 -192.144.16.0/22 12695 -192.144.24.0/22 48095 -192.144.28.0/24 57575 -192.144.30.0/24 42268 -192.144.31.0/24 34665 -192.144.33.0/24 57844 -192.144.34.0/23 57844 -192.144.36.0/23 59615 -192.144.44.0/22 204860 -192.144.48.0/24 56418 -192.144.52.0/22 204860 -192.144.56.0/22 208543 -192.144.60.0/24 209174 -192.144.62.0/24 209174 -192.144.64.0/22 266178 -192.144.68.0/22 266156 -192.144.72.0/23 267322 -192.144.77.0/24 2278 -192.144.79.0/24 55714 -192.144.80.0/22 58826 -192.144.84.0/22 132438 -192.144.92.0/22 55699 -192.144.96.0/22 266229 -192.144.100.0/22 266211 -192.144.104.0/22 266244 -192.144.108.0/22 266230 -192.144.116.0/22 266533 -192.144.120.0/22 266217 -192.144.124.0/22 266264 -192.144.128.0/17 45090 -192.145.0.0/22 209695 -192.145.4.0/22 209766 -192.145.8.0/23 3320 -192.145.10.0/24 3320 -192.145.11.0/24 209740 -192.145.12.0/22 209758 -192.145.16.0/24 44843 -192.145.20.0/22 132839 -192.145.24.0/22 60880 -192.145.28.0/22 43659 -192.145.32.0/22 209760 -192.145.36.0/22 35913 -192.145.40.0/22 3339 -192.145.44.0/22 197540 -192.145.48.0/22 196874 -192.145.52.0/22 40676 -192.145.56.0/22 201290 -192.145.64.0/22 59897 -192.145.68.0/24 64200 -192.145.69.0/24 9009 -192.145.72.0/22 134743 -192.145.80.0/22 35913 -192.145.84.0/22 41318 -192.145.88.0/22 40976 -192.145.96.0/24 56603 -192.145.97.0/24 29182 -192.145.98.0/23 50284 -192.145.100.0/22 34714 -192.145.116.0/22 204644 -192.145.120.0/22 57704 -192.145.124.0/22 9009 -192.145.128.0/19 328596 -192.145.168.0/24 37371 -192.145.180.0/22 328605 -192.145.188.0/22 328601 -192.145.192.0/22 266218 -192.145.196.0/22 266219 -192.145.200.0/22 266241 -192.145.204.0/22 266242 -192.145.208.0/22 266235 -192.145.212.0/22 266236 -192.145.216.0/22 266220 -192.145.224.0/22 9009 -192.145.231.0/24 395625 -192.145.232.0/21 22611 -192.145.240.0/20 14828 -192.146.0.0/24 19893 -192.146.1.0/24 19239 -192.146.5.0/24 19239 -192.146.6.0/23 19239 -192.146.8.0/24 19239 -192.146.11.0/24 19239 -192.146.14.0/24 19239 -192.146.15.0/24 8220 -192.146.16.0/24 19239 -192.146.21.0/24 19239 -192.146.24.0/23 19239 -192.146.50.0/24 19239 -192.146.101.0/24 1751 -192.146.105.0/24 11101 -192.146.106.0/23 11101 -192.146.108.0/24 11101 -192.146.112.0/24 40317 -192.146.118.0/24 14618 -192.146.124.0/23 766 -192.146.126.0/24 766 -192.146.127.0/24 29827 -192.146.129.0/24 701 -192.146.130.0/23 30404 -192.146.134.0/23 1955 -192.146.136.0/24 201773 -192.146.137.0/24 57672 -192.146.138.0/23 35478 -192.146.140.0/23 57671 -192.146.143.0/24 20077 -192.146.145.0/24 11529 -192.146.148.0/24 7018 -192.146.150.0/24 4648 -192.146.154.0/24 53736 -192.146.155.0/24 23005 -192.146.156.0/24 271 -192.146.163.0/24 5619 -192.146.170.0/24 5619 -192.146.172.0/24 39447 -192.146.186.0/24 394942 -192.146.190.0/24 394252 -192.146.191.0/24 396892 -192.146.192.0/24 396892 -192.146.199.0/24 393904 -192.146.206.0/24 5078 -192.146.215.0/24 14977 -192.146.216.0/24 14977 -192.146.217.0/24 7018 -192.146.226.0/24 21767 -192.146.229.0/24 61814 -192.146.230.0/23 393445 -192.146.238.0/23 224 -192.146.242.0/24 137 -192.146.243.0/24 19653 -192.146.255.0/24 63454 -192.147.1.0/24 12196 -192.147.2.0/24 396047 -192.147.12.0/24 20306 -192.147.13.0/24 18703 -192.147.16.0/23 11360 -192.147.19.0/24 15327 -192.147.20.0/24 15327 -192.147.24.0/24 19893 -192.147.25.0/24 8166 -192.147.26.0/24 302 -192.147.34.0/24 6677 -192.147.37.0/24 15164 -192.147.40.0/24 10538 -192.147.41.0/24 11499 -192.147.44.0/24 393513 -192.147.54.0/23 18211 -192.147.56.0/24 14733 -192.147.57.0/24 6303 -192.147.58.0/24 14733 -192.147.66.0/24 395745 -192.147.68.0/24 7046 -192.147.69.0/24 12037 -192.147.70.0/23 63481 -192.147.73.0/24 14278 -192.147.83.0/24 7046 -192.147.102.0/23 2386 -192.147.105.0/24 2386 -192.147.106.0/23 2386 -192.147.113.0/24 22192 -192.147.115.0/24 55173 -192.147.116.0/24 6181 -192.147.117.0/24 44786 -192.147.118.0/23 1313 -192.147.120.0/24 44786 -192.147.124.0/24 44786 -192.147.128.0/22 1313 -192.147.142.0/23 7018 -192.147.144.0/23 7018 -192.147.157.0/24 22262 -192.147.160.0/21 2914 -192.147.168.0/24 15562 -192.147.171.0/24 13857 -192.147.172.0/23 30335 -192.147.175.0/24 2914 -192.147.176.0/22 2914 -192.147.210.0/24 61840 -192.147.213.0/24 3848 -192.147.218.0/24 61742 -192.147.221.0/24 12236 -192.147.222.0/23 12236 -192.147.224.0/24 12236 -192.147.231.0/24 33576 -192.147.235.0/24 10223 -192.147.236.0/24 1280 -192.147.239.0/24 33490 -192.147.241.0/24 19381 -192.147.242.0/23 32982 -192.147.248.0/24 23513 -192.147.249.0/24 20074 -192.147.255.0/24 14244 -192.148.69.0/24 41076 -192.148.93.0/24 50 -192.148.94.0/23 683 -192.148.96.0/23 50 -192.148.104.0/24 40267 -192.148.105.0/24 13507 -192.148.106.0/24 393279 -192.148.112.0/22 26413 -192.148.116.0/22 1221 -192.148.120.0/21 1221 -192.148.128.0/19 1221 -192.148.160.0/22 1221 -192.148.164.0/23 1221 -192.148.166.0/24 2148 -192.148.167.0/24 3262 -192.148.173.0/24 394078 -192.148.174.0/24 3549 -192.148.193.0/24 137 -192.148.195.0/24 46084 -192.148.197.0/24 40331 -192.148.201.0/24 766 -192.148.202.0/23 766 -192.148.204.0/22 766 -192.148.208.0/22 200521 -192.148.212.0/23 200521 -192.148.215.0/24 200521 -192.148.218.0/24 22192 -192.148.219.0/24 393908 -192.148.221.0/24 23655 -192.148.223.0/24 137188 -192.148.224.0/22 137188 -192.148.228.0/23 137188 -192.148.234.0/24 22192 -192.148.235.0/24 600 -192.148.236.0/23 600 -192.148.238.0/24 3112 -192.148.239.0/24 600 -192.148.240.0/23 600 -192.148.242.0/24 13501 -192.148.243.0/24 600 -192.148.244.0/23 600 -192.148.246.0/24 600 -192.148.247.0/24 13501 -192.148.248.0/23 13501 -192.148.250.0/24 13501 -192.148.251.0/24 600 -192.148.252.0/23 16668 -192.149.0.0/24 40572 -192.149.2.0/24 46755 -192.149.3.0/24 201561 -192.149.9.0/24 7015 -192.149.10.0/24 62658 -192.149.11.0/24 2714 -192.149.12.0/24 3635 -192.149.13.0/24 16404 -192.149.15.0/24 8897 -192.149.16.0/24 1798 -192.149.17.0/24 16621 -192.149.21.0/24 701 -192.149.23.0/24 376 -192.149.26.0/24 3680 -192.149.28.0/24 243 -192.149.44.0/22 36511 -192.149.53.0/24 852 -192.149.55.0/24 393965 -192.149.56.0/24 4193 -192.149.58.0/24 14744 -192.149.62.0/24 21775 -192.149.63.0/24 13714 -192.149.67.0/24 393928 -192.149.68.0/22 26794 -192.149.72.0/24 393797 -192.149.74.0/24 31816 -192.149.76.0/24 393914 -192.149.81.0/24 14454 -192.149.84.0/24 3549 -192.149.88.0/24 394057 -192.149.89.0/24 270 -192.149.93.0/24 5757 -192.149.94.0/24 19138 -192.149.95.0/24 393680 -192.149.96.0/24 394160 -192.149.97.0/24 174 -192.149.104.0/24 14007 -192.149.107.0/24 270 -192.149.109.0/24 1351 -192.149.111.0/24 786 -192.149.115.0/24 394025 -192.149.117.0/24 39461 -192.149.119.0/24 198032 -192.149.120.0/24 7 -192.149.125.0/24 19366 -192.149.128.0/24 270 -192.149.129.0/24 372 -192.149.130.0/23 372 -192.149.140.0/24 12819 -192.149.141.0/24 270 -192.149.144.0/24 372 -192.149.147.0/24 30340 -192.149.148.0/24 2648 -192.149.150.0/24 7332 -192.149.151.0/24 5972 -192.149.202.0/24 395400 -192.149.204.0/24 5972 -192.149.205.0/24 8103 -192.149.206.0/23 8103 -192.149.210.0/24 14618 -192.149.219.0/24 46252 -192.149.224.0/24 16833 -192.149.225.0/24 29400 -192.149.230.0/24 11351 -192.149.231.0/24 395580 -192.149.232.0/24 1853 -192.149.234.0/24 2828 -192.149.235.0/24 209 -192.149.240.0/24 12129 -192.149.244.0/24 40628 -192.149.245.0/24 53355 -192.149.246.0/23 16695 -192.149.248.0/22 174 -192.149.253.0/24 10971 -192.149.254.0/23 35860 -192.150.0.0/24 30640 -192.150.1.0/24 44786 -192.150.5.0/24 1313 -192.150.8.0/24 44786 -192.150.9.0/24 1313 -192.150.10.0/23 14365 -192.150.12.0/23 14365 -192.150.14.0/24 14365 -192.150.18.0/23 14365 -192.150.22.0/24 1313 -192.150.23.0/24 14365 -192.150.28.0/24 1848 -192.150.32.0/21 270 -192.150.41.0/24 32743 -192.150.42.0/23 393798 -192.150.44.0/24 18530 -192.150.47.0/24 46246 -192.150.48.0/24 62798 -192.150.50.0/24 393688 -192.150.58.0/23 3301 -192.150.71.0/24 12597 -192.150.73.0/24 63125 -192.150.74.0/24 62578 -192.150.75.0/24 3301 -192.150.77.0/24 393997 -192.150.83.0/24 31242 -192.150.84.0/24 1729 -192.150.85.0/24 394242 -192.150.86.0/24 393822 -192.150.88.0/24 13476 -192.150.92.0/24 20712 -192.150.93.0/24 6922 -192.150.94.0/24 1101 -192.150.103.0/24 2033 -192.150.112.0/24 33154 -192.150.113.0/24 22773 -192.150.115.0/24 600 -192.150.116.0/24 20001 -192.150.121.0/24 6062 -192.150.129.0/24 9797 -192.150.137.0/24 24436 -192.150.140.0/24 51063 -192.150.142.0/24 36728 -192.150.143.0/24 4193 -192.150.149.0/24 1746 -192.150.150.0/24 21976 -192.150.152.0/21 21947 -192.150.160.0/24 394101 -192.150.169.0/24 797 -192.150.174.0/24 15164 -192.150.175.0/24 11714 -192.150.176.0/24 11714 -192.150.180.0/22 786 -192.150.184.0/24 786 -192.150.185.0/24 17188 -192.150.186.0/23 25 -192.150.194.0/23 137 -192.150.196.0/24 137 -192.150.201.0/24 1906 -192.150.204.0/24 34178 -192.150.207.0/24 2386 -192.150.209.0/24 2116 -192.150.210.0/24 36658 -192.150.211.0/24 11362 -192.150.213.0/24 14701 -192.150.214.0/23 13768 -192.150.216.0/23 131 -192.150.224.0/24 7872 -192.150.225.0/24 62989 -192.150.242.0/24 3431 -192.150.244.0/24 395274 -192.150.246.0/24 37998 -192.150.249.0/24 37992 -192.150.250.0/23 3836 -192.150.252.0/24 2116 -192.150.253.0/24 2901 -192.150.255.0/24 393865 -192.151.5.0/24 3356 -192.151.85.0/24 46875 -192.151.86.0/23 46875 -192.151.88.0/24 46875 -192.151.89.0/24 7018 -192.151.109.0/24 3633 -192.151.110.0/24 16868 -192.151.130.0/23 16816 -192.151.132.0/22 14500 -192.151.136.0/21 17216 -192.151.144.0/20 33387 -192.151.160.0/23 14828 -192.151.163.0/24 14828 -192.151.164.0/22 14828 -192.151.168.0/21 14828 -192.151.178.0/23 44444 -192.151.180.0/23 44444 -192.151.192.0/19 40065 -192.151.224.0/23 40065 -192.151.226.0/23 132839 -192.151.228.0/23 132839 -192.151.230.0/23 26484 -192.151.232.0/22 132839 -192.151.236.0/24 132839 -192.151.237.0/24 40065 -192.151.238.0/23 132839 -192.151.240.0/21 40065 -192.151.248.0/21 132839 -192.152.5.0/24 40159 -192.152.7.0/24 1798 -192.152.10.0/24 7296 -192.152.14.0/24 2856 -192.152.18.0/24 1904 -192.152.22.0/23 11403 -192.152.24.0/23 10242 -192.152.28.0/24 54548 -192.152.29.0/24 27304 -192.152.33.0/24 5795 -192.152.43.0/24 209 -192.152.45.0/24 25845 -192.152.54.0/24 5403 -192.152.79.0/24 812 -192.152.81.0/24 209 -192.152.83.0/24 30570 -192.152.84.0/23 30570 -192.152.88.0/24 32255 -192.152.91.0/24 62921 -192.152.95.0/24 397869 -192.152.97.0/24 577 -192.152.98.0/24 559 -192.152.100.0/24 36050 -192.152.103.0/24 10753 -192.152.110.0/24 55193 -192.152.118.0/24 40194 -192.152.127.0/24 22192 -192.152.130.0/23 393552 -192.152.132.0/23 16509 -192.152.134.0/24 393330 -192.152.135.0/24 394783 -192.152.138.0/24 4181 -192.152.140.0/24 18853 -192.152.143.0/24 29921 -192.152.147.0/24 22696 -192.152.148.0/23 20442 -192.152.150.0/24 20442 -192.152.152.0/23 22646 -192.152.160.0/24 4583 -192.152.168.0/24 13760 -192.152.169.0/24 4010 -192.152.180.0/23 17308 -192.152.183.0/24 3356 -192.152.192.0/23 18889 -192.152.195.0/24 26889 -192.152.200.0/23 6231 -192.152.203.0/24 15062 -192.152.212.0/24 2516 -192.152.213.0/24 53367 -192.152.214.0/24 20300 -192.152.242.0/24 36086 -192.152.243.0/24 394688 -192.152.249.0/24 2711 -192.152.255.0/24 394103 -192.153.0.0/24 22051 -192.153.4.0/24 6062 -192.153.5.0/24 22415 -192.153.6.0/24 393953 -192.153.12.0/24 268293 -192.153.14.0/24 19271 -192.153.18.0/24 2012 -192.153.23.0/24 33652 -192.153.26.0/24 159 -192.153.27.0/24 600 -192.153.28.0/22 600 -192.153.32.0/23 600 -192.153.34.0/24 36831 -192.153.35.0/24 600 -192.153.36.0/23 600 -192.153.38.0/23 3112 -192.153.40.0/24 3112 -192.153.41.0/24 13501 -192.153.46.0/24 27626 -192.153.51.0/24 11328 -192.153.52.0/24 14701 -192.153.53.0/24 30116 -192.153.88.0/24 28609 -192.153.93.0/24 10143 -192.153.95.0/24 2907 -192.153.96.0/21 2907 -192.153.104.0/24 2907 -192.153.105.0/24 37889 -192.153.106.0/23 37889 -192.153.108.0/22 37889 -192.153.112.0/24 2505 -192.153.114.0/24 2505 -192.153.117.0/24 53646 -192.153.118.0/24 394792 -192.153.120.0/24 264396 -192.153.123.0/24 62989 -192.153.124.0/24 7018 -192.153.127.0/24 8256 -192.153.129.0/24 20033 -192.153.132.0/24 721 -192.153.133.0/24 27064 -192.153.134.0/24 1541 -192.153.135.0/24 721 -192.153.136.0/23 721 -192.153.138.0/23 51 -192.153.140.0/23 51 -192.153.142.0/24 27064 -192.153.143.0/24 6034 -192.153.144.0/24 721 -192.153.145.0/24 6034 -192.153.146.0/24 721 -192.153.147.0/24 367 -192.153.148.0/23 721 -192.153.150.0/24 367 -192.153.151.0/24 721 -192.153.153.0/24 5500 -192.153.154.0/24 393667 -192.153.155.0/24 28492 -192.153.156.0/24 4266 -192.153.157.0/24 7018 -192.153.159.0/24 54690 -192.153.161.0/24 43 -192.153.163.0/24 1638 -192.153.166.0/24 5089 -192.153.171.0/24 60781 -192.153.173.0/24 1853 -192.153.174.0/24 1853 -192.153.177.0/24 1853 -192.153.186.0/24 18875 -192.153.187.0/24 22192 -192.153.191.0/24 7018 -192.153.192.0/24 12129 -192.153.194.0/24 24959 -192.153.213.0/24 786 -192.153.236.0/24 3356 -192.153.240.0/24 2562 -192.153.242.0/24 2562 -192.153.244.0/24 721 -192.153.245.0/24 27066 -192.153.255.0/24 19271 -192.154.0.0/24 62695 -192.154.1.0/24 7377 -192.154.2.0/24 52 -192.154.3.0/24 36001 -192.154.4.0/23 25 -192.154.6.0/24 25 -192.154.7.0/24 40003 -192.154.13.0/24 54172 -192.154.14.0/23 393238 -192.154.16.0/24 4637 -192.154.17.0/24 4628 -192.154.18.0/23 4628 -192.154.20.0/22 4628 -192.154.24.0/23 4637 -192.154.26.0/23 393882 -192.154.28.0/22 19117 -192.154.32.0/23 81 -192.154.34.0/24 81 -192.154.35.0/24 4637 -192.154.36.0/22 81 -192.154.40.0/22 81 -192.154.44.0/23 81 -192.154.46.0/23 14448 -192.154.48.0/22 81 -192.154.52.0/23 81 -192.154.54.0/24 11540 -192.154.55.0/24 81 -192.154.56.0/22 81 -192.154.60.0/23 81 -192.154.62.0/24 81 -192.154.63.0/24 396391 -192.154.64.0/24 81 -192.154.65.0/24 396391 -192.154.66.0/24 81 -192.154.76.0/23 81 -192.154.94.0/24 7029 -192.154.95.0/24 81 -192.154.96.0/20 53850 -192.154.112.0/24 55149 -192.154.113.0/24 46887 -192.154.114.0/23 46887 -192.154.116.0/23 46887 -192.154.118.0/24 13464 -192.154.119.0/24 46887 -192.154.120.0/22 53435 -192.154.124.0/23 4889 -192.154.126.0/24 62928 -192.154.128.0/23 21976 -192.154.130.0/24 21976 -192.154.131.0/24 393782 -192.154.132.0/22 14860 -192.154.136.0/22 10929 -192.154.140.0/24 55271 -192.154.141.0/24 10929 -192.154.142.0/23 10929 -192.154.144.0/20 10996 -192.154.160.0/20 19233 -192.154.176.0/20 11427 -192.154.196.0/23 64200 -192.154.200.0/24 13768 -192.154.201.0/24 14935 -192.154.202.0/24 397373 -192.154.203.0/24 13768 -192.154.204.0/24 13768 -192.154.205.0/24 14935 -192.154.206.0/24 14935 -192.154.207.0/24 13768 -192.154.208.0/22 64200 -192.154.212.0/24 64200 -192.154.213.0/24 40676 -192.154.214.0/24 137571 -192.154.215.0/24 64200 -192.154.216.0/21 395681 -192.154.224.0/21 40676 -192.154.234.0/24 395480 -192.154.235.0/24 395681 -192.154.236.0/22 64200 -192.154.240.0/24 395681 -192.154.241.0/24 13768 -192.154.242.0/24 64200 -192.154.243.0/24 395681 -192.154.244.0/22 64200 -192.154.248.0/24 40244 -192.154.250.0/24 13768 -192.154.253.0/24 17216 -192.154.254.0/23 17216 -192.155.0.0/24 394410 -192.155.8.0/24 1709 -192.155.42.0/23 19994 -192.155.44.0/24 19994 -192.155.48.0/22 19994 -192.155.52.0/23 27357 -192.155.54.0/24 27357 -192.155.57.0/24 209 -192.155.69.0/24 53414 -192.155.70.0/23 46513 -192.155.72.0/21 18712 -192.155.80.0/20 63949 -192.155.96.0/20 29066 -192.155.112.0/22 13511 -192.155.116.0/24 13511 -192.155.158.0/23 36423 -192.155.160.0/20 132721 -192.155.176.0/23 132422 -192.155.178.0/24 132422 -192.155.179.0/24 64021 -192.155.180.0/22 132422 -192.155.184.0/21 132422 -192.155.192.0/18 36351 -192.156.0.0/23 721 -192.156.2.0/24 721 -192.156.3.0/24 637 -192.156.4.0/22 721 -192.156.8.0/22 721 -192.156.12.0/23 721 -192.156.14.0/24 637 -192.156.15.0/24 721 -192.156.16.0/22 721 -192.156.20.0/24 721 -192.156.21.0/24 637 -192.156.22.0/23 721 -192.156.24.0/21 721 -192.156.32.0/22 721 -192.156.36.0/24 637 -192.156.37.0/24 721 -192.156.38.0/23 721 -192.156.40.0/21 721 -192.156.48.0/21 721 -192.156.56.0/23 721 -192.156.58.0/24 721 -192.156.59.0/24 637 -192.156.60.0/22 721 -192.156.64.0/21 721 -192.156.72.0/23 721 -192.156.74.0/24 637 -192.156.75.0/24 721 -192.156.76.0/22 721 -192.156.98.0/24 174 -192.156.101.0/24 11302 -192.156.102.0/24 197671 -192.156.104.0/21 11302 -192.156.112.0/24 395431 -192.156.114.0/24 11302 -192.156.122.0/24 11302 -192.156.124.0/24 11302 -192.156.132.0/24 2611 -192.156.133.0/24 2386 -192.156.134.0/24 54536 -192.156.137.0/24 32901 -192.156.145.0/24 2907 -192.156.146.0/23 2907 -192.156.148.0/23 2907 -192.156.151.0/24 7660 -192.156.157.0/24 394110 -192.156.158.0/24 2907 -192.156.162.0/24 786 -192.156.164.0/24 22507 -192.156.190.0/24 394086 -192.156.191.0/24 1998 -192.156.200.0/24 6939 -192.156.202.0/24 33504 -192.156.205.0/24 3580 -192.156.209.0/24 10753 -192.156.213.0/24 137 -192.156.214.0/24 7018 -192.156.215.0/24 13476 -192.156.217.0/24 60781 -192.156.218.0/24 30517 -192.156.219.0/24 19795 -192.156.225.0/24 23655 -192.156.228.0/24 10497 -192.156.230.0/24 2381 -192.156.232.0/23 209 -192.156.234.0/24 394988 -192.156.235.0/24 63060 -192.156.236.0/23 46186 -192.156.238.0/24 394210 -192.156.240.0/24 394042 -192.156.241.0/24 174 -192.156.245.0/24 20141 -192.156.247.0/24 20141 -192.156.251.0/24 11178 -192.156.252.0/24 4373 -192.156.255.0/24 13427 -192.157.0.0/24 21654 -192.157.5.0/24 13501 -192.157.8.0/22 25252 -192.157.12.0/24 138380 -192.157.14.0/23 58653 -192.157.16.0/23 53007 -192.157.18.0/23 393676 -192.157.20.0/22 18786 -192.157.24.0/22 3257 -192.157.28.0/23 63390 -192.157.30.0/24 36352 -192.157.32.0/22 7247 -192.157.36.0/23 7247 -192.157.39.0/24 393982 -192.157.40.0/21 14860 -192.157.48.0/21 55286 -192.157.56.0/22 55286 -192.157.60.0/22 62904 -192.157.74.0/23 13471 -192.157.76.0/22 12223 -192.157.80.0/24 31797 -192.157.81.0/24 22418 -192.157.82.0/23 22418 -192.157.84.0/22 22418 -192.157.88.0/21 22418 -192.157.96.0/19 174 -192.157.130.0/24 3300 -192.157.178.0/23 393946 -192.157.181.0/24 393946 -192.157.182.0/23 393946 -192.157.192.0/18 18978 -192.158.0.0/24 26364 -192.158.3.0/24 22768 -192.158.4.0/22 243 -192.158.8.0/22 243 -192.158.12.0/22 40028 -192.158.16.0/23 394792 -192.158.19.0/24 394792 -192.158.22.0/24 394792 -192.158.25.0/24 26213 -192.158.26.0/23 46208 -192.158.28.0/22 15169 -192.158.34.0/23 2686 -192.158.36.0/23 3758 -192.158.38.0/24 2717 -192.158.40.0/23 2386 -192.158.42.0/24 3758 -192.158.44.0/24 2386 -192.158.45.0/24 4637 -192.158.46.0/24 2717 -192.158.48.0/23 2717 -192.158.54.0/23 2686 -192.158.60.0/23 2717 -192.158.62.0/23 21944 -192.158.64.0/23 394920 -192.158.66.0/23 394919 -192.158.68.0/23 39404 -192.158.180.0/22 10406 -192.158.188.0/22 10406 -192.158.204.0/24 7018 -192.158.206.0/24 33490 -192.158.210.0/24 8190 -192.158.214.0/23 393733 -192.158.216.0/21 11776 -192.158.224.0/23 17216 -192.158.226.0/24 397373 -192.158.227.0/24 40676 -192.158.228.0/24 397373 -192.158.229.0/24 40676 -192.158.230.0/23 17216 -192.158.232.0/23 17216 -192.158.234.0/24 397423 -192.158.235.0/24 17216 -192.158.236.0/24 17216 -192.158.237.0/24 397373 -192.158.238.0/23 17216 -192.158.240.0/21 11179 -192.158.249.0/24 27321 -192.158.253.0/24 23528 -192.158.255.0/24 19827 -192.159.0.0/24 40281 -192.159.1.0/24 3356 -192.159.4.0/24 5659 -192.159.8.0/24 11948 -192.159.10.0/24 1734 -192.159.31.0/24 26549 -192.159.32.0/24 209 -192.159.37.0/24 7018 -192.159.38.0/23 21299 -192.159.40.0/21 23089 -192.159.48.0/20 14640 -192.159.64.0/22 21554 -192.159.68.0/23 12129 -192.159.83.0/24 209 -192.159.88.0/24 14051 -192.159.91.0/24 12163 -192.159.93.0/24 22005 -192.159.104.0/24 3356 -192.159.106.0/24 23060 -192.159.110.0/24 33299 -192.159.111.0/24 852 -192.159.116.0/23 264481 -192.159.119.0/24 394099 -192.159.120.0/24 23438 -192.159.123.0/24 14618 -192.159.124.0/24 23424 -192.159.132.0/23 127 -192.159.134.0/24 127 -192.159.138.0/24 127 -192.159.142.0/24 13886 -192.159.143.0/24 395923 -192.159.144.0/20 33422 -192.159.160.0/24 62901 -192.159.161.0/24 55011 -192.159.162.0/24 394511 -192.159.163.0/24 55011 -192.159.165.0/24 394511 -192.159.169.0/24 395030 -192.159.170.0/23 395565 -192.159.172.0/22 395565 -192.159.176.0/24 15024 -192.159.177.0/24 394233 -192.159.178.0/23 394233 -192.159.180.0/22 394233 -192.159.184.0/23 11278 -192.159.188.0/23 11278 -192.159.192.0/18 53732 -192.160.10.0/24 25577 -192.160.13.0/24 3366 -192.160.15.0/24 5435 -192.160.22.0/24 8632 -192.160.42.0/24 7843 -192.160.45.0/24 264363 -192.160.47.0/24 3807 -192.160.49.0/24 2902 -192.160.50.0/24 264370 -192.160.51.0/24 5691 -192.160.54.0/24 30027 -192.160.56.0/24 26513 -192.160.64.0/24 7029 -192.160.69.0/24 16983 -192.160.70.0/24 53292 -192.160.71.0/24 1851 -192.160.73.0/24 20381 -192.160.74.0/24 270 -192.160.78.0/24 270 -192.160.94.0/24 7795 -192.160.97.0/24 11714 -192.160.98.0/23 11714 -192.160.100.0/24 11714 -192.160.101.0/24 7046 -192.160.102.0/24 395089 -192.160.103.0/24 14265 -192.160.112.0/21 243 -192.160.120.0/24 243 -192.160.121.0/24 10381 -192.160.124.0/24 27508 -192.160.127.0/24 30379 -192.160.130.0/23 20306 -192.160.132.0/24 397018 -192.160.142.0/24 680 -192.160.145.0/24 16514 -192.160.146.0/24 18862 -192.160.156.0/24 137 -192.160.158.0/23 668 -192.160.161.0/24 23720 -192.160.165.0/24 29993 -192.160.166.0/24 7834 -192.160.167.0/24 395386 -192.160.169.0/24 17559 -192.160.171.0/24 17559 -192.160.172.0/24 1955 -192.160.188.0/24 264482 -192.160.191.0/24 36221 -192.160.192.0/24 237 -192.160.193.0/24 46375 -192.160.194.0/24 786 -192.160.196.0/24 16557 -192.160.198.0/24 23090 -192.160.204.0/24 237 -192.160.205.0/24 7575 -192.160.206.0/23 19773 -192.160.208.0/22 19773 -192.160.212.0/23 19773 -192.160.216.0/21 174 -192.160.224.0/24 58100 -192.160.227.0/24 377 -192.160.228.0/24 3562 -192.160.233.0/24 2643 -192.160.237.0/24 393667 -192.160.243.0/24 29867 -192.160.244.0/24 29867 -192.160.245.0/24 12353 -192.160.246.0/23 12353 -192.160.248.0/23 12353 -192.160.250.0/24 16437 -192.160.251.0/24 12353 -192.160.255.0/24 393990 -192.161.0.0/24 30148 -192.161.1.0/24 243 -192.161.2.0/23 243 -192.161.4.0/24 243 -192.161.6.0/23 206611 -192.161.38.0/23 23182 -192.161.40.0/21 19009 -192.161.48.0/20 8100 -192.161.66.0/23 16832 -192.161.68.0/22 30211 -192.161.72.0/22 25629 -192.161.76.0/22 4922 -192.161.80.0/20 40065 -192.161.96.0/19 11181 -192.161.132.0/22 54925 -192.161.136.0/23 54995 -192.161.140.0/23 54995 -192.161.148.0/23 14618 -192.161.150.0/24 14618 -192.161.151.0/24 16509 -192.161.158.0/23 21880 -192.161.160.0/19 8100 -192.161.192.0/20 18812 -192.161.208.0/21 18812 -192.161.216.0/23 18812 -192.161.218.0/23 11492 -192.161.220.0/23 18812 -192.161.222.0/23 11492 -192.161.224.0/21 11492 -192.161.232.0/21 18812 -192.161.240.0/20 11492 -192.162.0.0/22 29497 -192.162.4.0/24 35678 -192.162.8.0/22 35165 -192.162.12.0/22 44233 -192.162.16.0/24 3233 -192.162.17.0/24 15525 -192.162.19.0/24 57954 -192.162.20.0/22 51070 -192.162.24.0/22 29424 -192.162.28.0/22 31736 -192.162.32.0/22 49827 -192.162.36.0/22 57812 -192.162.40.0/22 50676 -192.162.44.0/22 197682 -192.162.48.0/22 12741 -192.162.52.0/22 56569 -192.162.56.0/22 205162 -192.162.60.0/24 197672 -192.162.61.0/24 204837 -192.162.62.0/24 197672 -192.162.63.0/24 204837 -192.162.64.0/22 34995 -192.162.68.0/22 16347 -192.162.72.0/22 15505 -192.162.76.0/22 29203 -192.162.80.0/22 29436 -192.162.84.0/22 45031 -192.162.88.0/22 15370 -192.162.92.0/22 197697 -192.162.96.0/22 42000 -192.162.100.0/22 50113 -192.162.104.0/22 8538 -192.162.108.0/22 39169 -192.162.112.0/22 31388 -192.162.116.0/22 39056 -192.162.120.0/22 56581 -192.162.124.0/22 49120 -192.162.128.0/22 197811 -192.162.132.0/22 12662 -192.162.136.0/22 60144 -192.162.140.0/22 56610 -192.162.144.0/22 197709 -192.162.148.0/22 56628 -192.162.152.0/22 56600 -192.162.156.0/22 21299 -192.162.160.0/22 56587 -192.162.164.0/22 197721 -192.162.168.0/22 60574 -192.162.172.0/22 50625 -192.162.176.0/22 13110 -192.162.180.0/22 15867 -192.162.184.0/22 209767 -192.162.188.0/22 56618 -192.162.192.0/22 56664 -192.162.196.0/22 265747 -192.162.200.0/22 39726 -192.162.204.0/24 25091 -192.162.208.0/22 47705 -192.162.212.0/22 56634 -192.162.216.0/22 56638 -192.162.220.0/22 8674 -192.162.224.0/22 43774 -192.162.228.0/23 197164 -192.162.230.0/24 197164 -192.162.231.0/24 203918 -192.162.232.0/21 21228 -192.162.240.0/21 16262 -192.162.248.0/24 197818 -192.162.249.0/24 197821 -192.162.252.0/22 56562 -192.163.0.0/24 394438 -192.163.5.0/24 136806 -192.163.11.0/24 4812 -192.163.14.0/24 133462 -192.163.15.0/24 137220 -192.163.16.0/24 136455 -192.163.17.0/24 137220 -192.163.20.0/24 136455 -192.163.22.0/23 22625 -192.163.32.0/19 719 -192.163.64.0/18 719 -192.163.128.0/20 719 -192.163.144.0/24 719 -192.163.145.0/24 375 -192.163.146.0/23 719 -192.163.148.0/22 719 -192.163.152.0/21 719 -192.163.160.0/19 395954 -192.163.192.0/18 46606 -192.164.0.0/19 8447 -192.164.32.0/22 8447 -192.164.38.0/24 44753 -192.164.39.0/24 8447 -192.164.40.0/21 8447 -192.164.48.0/20 8447 -192.164.64.0/21 8447 -192.164.72.0/21 16381 -192.164.80.0/20 8447 -192.164.96.0/19 8447 -192.164.128.0/19 8447 -192.164.161.0/24 47477 -192.164.164.0/24 47477 -192.164.167.0/24 47477 -192.164.172.0/23 47477 -192.164.174.0/24 47477 -192.164.176.0/20 5403 -192.164.192.0/20 5403 -192.164.208.0/20 8447 -192.164.224.0/19 8447 -192.165.0.0/24 12552 -192.165.1.0/24 35041 -192.165.2.0/24 35041 -192.165.5.0/24 1653 -192.165.6.0/24 1653 -192.165.7.0/24 3301 -192.165.8.0/24 3301 -192.165.9.0/24 206170 -192.165.10.0/24 1257 -192.165.12.0/24 25252 -192.165.16.0/24 197557 -192.165.17.0/24 29518 -192.165.19.0/24 197595 -192.165.20.0/22 198476 -192.165.24.0/23 198476 -192.165.26.0/24 209960 -192.165.29.0/24 12552 -192.165.30.0/24 43893 -192.165.33.0/24 35041 -192.165.34.0/23 35041 -192.165.36.0/23 35041 -192.165.38.0/24 3246 -192.165.40.0/24 35041 -192.165.41.0/24 3301 -192.165.44.0/24 3246 -192.165.45.0/24 51747 -192.165.46.0/23 20626 -192.165.48.0/24 42708 -192.165.51.0/24 35041 -192.165.52.0/23 35041 -192.165.54.0/24 35041 -192.165.56.0/24 3301 -192.165.58.0/24 3301 -192.165.60.0/24 3301 -192.165.65.0/24 2119 -192.165.66.0/24 43893 -192.165.67.0/24 34971 -192.165.68.0/24 8473 -192.165.69.0/24 28726 -192.165.72.0/24 33980 -192.165.73.0/24 57208 -192.165.75.0/24 43948 -192.165.76.0/24 202111 -192.165.77.0/24 43948 -192.165.78.0/24 34133 -192.165.79.0/24 2119 -192.165.81.0/24 1257 -192.165.82.0/24 8995 -192.165.83.0/24 202687 -192.165.84.0/24 35041 -192.165.85.0/24 51747 -192.165.86.0/24 25169 -192.165.95.0/24 3301 -192.165.96.0/22 3246 -192.165.101.0/24 34950 -192.165.102.0/23 12552 -192.165.105.0/24 35041 -192.165.106.0/24 35041 -192.165.107.0/24 203788 -192.165.108.0/24 35041 -192.165.109.0/24 8473 -192.165.111.0/24 12552 -192.165.112.0/24 3301 -192.165.113.0/24 51747 -192.165.115.0/24 48445 -192.165.117.0/24 28726 -192.165.118.0/24 28726 -192.165.120.0/24 3301 -192.165.121.0/24 42708 -192.165.122.0/24 3246 -192.165.123.0/24 42708 -192.165.124.0/23 158 -192.165.126.0/24 158 -192.165.130.0/24 31024 -192.165.133.0/24 31024 -192.165.140.0/23 9201 -192.165.142.0/24 1257 -192.165.146.0/24 3246 -192.165.147.0/24 12552 -192.165.148.0/22 12782 -192.165.152.0/22 49769 -192.165.156.0/24 49769 -192.165.158.0/23 49769 -192.165.164.0/23 158 -192.165.166.0/24 3301 -192.165.168.0/24 12782 -192.165.169.0/24 25176 -192.165.170.0/24 12381 -192.165.171.0/24 35041 -192.165.172.0/24 35041 -192.165.174.0/24 35041 -192.165.175.0/24 43948 -192.165.176.0/24 201154 -192.165.178.0/23 197595 -192.165.180.0/24 3301 -192.165.183.0/24 158 -192.165.184.0/24 9201 -192.165.185.0/24 35041 -192.165.186.0/23 35041 -192.165.195.0/24 12552 -192.165.196.0/24 35041 -192.165.197.0/24 31642 -192.165.198.0/24 42649 -192.165.199.0/24 29518 -192.165.200.0/24 12552 -192.165.201.0/24 35041 -192.165.203.0/24 199977 -192.165.204.0/24 199977 -192.165.205.0/24 42303 -192.165.206.0/24 29518 -192.165.210.0/23 16050 -192.165.213.0/24 16050 -192.165.214.0/23 24012 -192.165.219.0/24 32067 -192.165.220.0/22 16050 -192.165.224.0/22 203788 -192.165.228.0/24 39825 -192.165.231.0/24 35041 -192.165.232.0/24 64420 -192.165.233.0/24 3549 -192.165.238.0/24 3246 -192.165.239.0/24 35041 -192.165.240.0/23 35041 -192.165.242.0/24 35041 -192.165.243.0/24 8473 -192.165.244.0/24 41701 -192.165.245.0/24 29518 -192.165.246.0/24 12782 -192.165.247.0/24 3301 -192.165.248.0/23 3301 -192.165.250.0/24 50989 -192.165.252.0/24 202395 -192.165.255.0/24 1257 -192.166.2.0/23 8881 -192.166.4.0/24 8881 -192.166.8.0/22 203215 -192.166.12.0/22 41446 -192.166.36.0/22 210247 -192.166.40.0/22 59447 -192.166.44.0/22 61323 -192.166.56.0/21 680 -192.166.75.0/24 8881 -192.166.81.0/24 64249 -192.166.82.0/23 51765 -192.166.87.0/24 8881 -192.166.96.0/22 51088 -192.166.100.0/22 196638 -192.166.106.0/24 20570 -192.166.111.0/24 12316 -192.166.112.0/23 29436 -192.166.114.0/23 51765 -192.166.116.0/22 60554 -192.166.120.0/23 29314 -192.166.122.0/24 57275 -192.166.123.0/24 198039 -192.166.124.0/22 57244 -192.166.128.0/22 44910 -192.166.132.0/22 56526 -192.166.136.0/24 13009 -192.166.140.0/22 57977 -192.166.144.0/23 57093 -192.166.146.0/24 3320 -192.166.147.0/24 48918 -192.166.148.0/22 15364 -192.166.153.0/24 60781 -192.166.159.0/24 5529 -192.166.160.0/19 9007 -192.166.192.0/21 6786 -192.166.200.0/23 6786 -192.166.202.0/23 198146 -192.166.204.0/22 50796 -192.166.216.0/22 41508 -192.166.220.0/22 199899 -192.166.228.0/22 200788 -192.166.232.0/22 56574 -192.166.236.0/22 56542 -192.166.240.0/22 201240 -192.166.246.0/23 203380 -192.166.253.0/24 3320 -192.166.255.0/24 197701 -192.167.0.0/16 137 -192.169.0.0/23 3445 -192.169.5.0/24 394043 -192.169.6.0/23 8100 -192.169.10.0/23 32397 -192.169.12.0/22 39948 -192.169.19.0/24 46338 -192.169.20.0/22 30640 -192.169.24.0/21 25950 -192.169.32.0/24 4628 -192.169.34.0/24 4628 -192.169.37.0/24 4628 -192.169.38.0/24 4628 -192.169.41.0/24 4628 -192.169.42.0/23 7016 -192.169.44.0/22 26548 -192.169.48.0/20 46606 -192.169.66.0/23 393821 -192.169.68.0/22 23033 -192.169.72.0/21 33346 -192.169.80.0/20 46475 -192.169.128.0/17 26496 -192.170.1.0/24 3209 -192.170.4.0/24 37719 -192.170.48.0/22 151 -192.170.56.0/23 1273 -192.170.64.0/20 7430 -192.170.80.0/23 7430 -192.170.82.0/23 151 -192.170.84.0/23 7430 -192.170.86.0/24 10221 -192.170.87.0/24 7430 -192.170.88.0/24 151 -192.170.89.0/24 7018 -192.170.90.0/23 7430 -192.170.92.0/22 7430 -192.170.96.0/21 7430 -192.170.104.0/24 8220 -192.170.105.0/24 3758 -192.170.106.0/24 17819 -192.170.107.0/24 27272 -192.170.108.0/22 7430 -192.170.112.0/20 7430 -192.170.128.0/24 30715 -192.170.129.0/24 396335 -192.170.130.0/23 40317 -192.170.132.0/22 23481 -192.170.136.0/21 32286 -192.170.144.0/21 29791 -192.170.152.0/22 29791 -192.170.156.0/23 29791 -192.170.158.0/23 14636 -192.170.160.0/19 36315 -192.170.192.0/18 160 -192.171.0.0/24 10796 -192.171.1.0/24 288 -192.171.2.0/23 288 -192.171.4.0/23 288 -192.171.6.0/24 394220 -192.171.8.0/22 668 -192.171.12.0/24 668 -192.171.13.0/24 25769 -192.171.14.0/24 40813 -192.171.15.0/24 26312 -192.171.18.0/23 63452 -192.171.20.0/22 19009 -192.171.24.0/24 6130 -192.171.25.0/24 53889 -192.171.26.0/23 53889 -192.171.28.0/22 53889 -192.171.32.0/19 5645 -192.171.64.0/20 33647 -192.171.80.0/21 64267 -192.171.88.0/24 397630 -192.171.89.0/24 64267 -192.171.90.0/23 64267 -192.171.92.0/22 64267 -192.171.96.0/22 15359 -192.171.100.0/24 15359 -192.171.102.0/24 17158 -192.171.103.0/24 15359 -192.171.104.0/21 138179 -192.171.112.0/23 1907 -192.171.114.0/23 174 -192.171.116.0/22 16887 -192.171.120.0/21 55033 -192.171.128.0/18 786 -192.171.192.0/21 786 -192.171.200.0/21 14775 -192.171.208.0/24 5056 -192.171.209.0/24 46892 -192.171.210.0/23 5056 -192.171.212.0/22 5056 -192.171.216.0/22 5056 -192.171.220.0/23 22534 -192.171.222.0/23 5056 -192.171.224.0/23 53889 -192.171.226.0/24 6130 -192.171.227.0/24 53889 -192.171.228.0/22 53889 -192.171.232.0/24 63008 -192.171.233.0/24 53889 -192.171.234.0/23 53889 -192.171.236.0/24 6130 -192.171.237.0/24 53889 -192.171.238.0/23 53889 -192.171.240.0/23 53889 -192.171.242.0/24 53889 -192.171.243.0/24 6130 -192.171.244.0/22 53889 -192.171.248.0/21 53889 -192.172.0.0/23 721 -192.172.2.0/24 1541 -192.172.3.0/24 27064 -192.172.4.0/22 721 -192.172.8.0/24 27064 -192.172.9.0/24 721 -192.172.10.0/23 721 -192.172.12.0/24 721 -192.172.13.0/24 1590 -192.172.14.0/24 27064 -192.172.15.0/24 721 -192.172.16.0/24 721 -192.172.17.0/24 367 -192.172.18.0/23 721 -192.172.20.0/22 721 -192.172.24.0/21 721 -192.172.224.0/24 394653 -192.172.226.0/24 195 -192.172.233.0/24 394247 -192.172.236.0/24 2907 -192.172.237.0/24 4697 -192.172.240.0/24 394157 -192.172.244.0/24 64273 -192.172.250.0/24 3584 -192.172.255.0/24 394370 -192.173.0.0/24 20014 -192.173.1.0/24 786 -192.173.2.0/23 786 -192.173.4.0/24 786 -192.173.5.0/24 14911 -192.173.6.0/23 21832 -192.173.10.0/24 30304 -192.173.11.0/24 15347 -192.173.13.0/24 54853 -192.173.14.0/23 397324 -192.173.16.0/22 4768 -192.173.20.0/24 4768 -192.173.23.0/24 4768 -192.173.24.0/24 4768 -192.173.25.0/24 63343 -192.173.28.0/22 13360 -192.173.32.0/19 5078 -192.173.64.0/24 2906 -192.173.65.0/24 55095 -192.173.66.0/23 55095 -192.173.68.0/22 2906 -192.173.72.0/21 2906 -192.173.80.0/20 2906 -192.173.96.0/19 2906 -192.173.128.0/21 786 -192.173.144.0/22 25780 -192.173.148.0/23 25780 -192.173.160.0/20 14677 -192.173.176.0/20 29876 -192.173.192.0/18 3663 -192.174.0.0/23 4261 -192.174.2.0/23 2152 -192.174.4.0/22 54182 -192.174.8.0/22 19773 -192.174.15.0/24 40851 -192.174.16.0/23 19773 -192.174.24.0/21 32281 -192.174.32.0/20 16411 -192.174.48.0/21 16411 -192.174.56.0/23 16411 -192.174.58.0/24 12552 -192.174.59.0/24 16411 -192.174.60.0/22 16411 -192.174.64.0/22 760 -192.174.68.0/24 1921 -192.174.69.0/24 32932 -192.174.72.0/21 55028 -192.174.80.0/20 23528 -192.174.96.0/20 18812 -192.174.112.0/21 18812 -192.174.121.0/24 18812 -192.174.122.0/24 2386 -192.174.123.0/24 11492 -192.174.124.0/23 18812 -192.174.126.0/24 18812 -192.174.127.0/24 11492 -192.174.128.0/17 2907 -192.175.0.0/24 209 -192.175.6.0/24 19875 -192.175.13.0/24 26167 -192.175.14.0/23 21299 -192.175.16.0/22 17309 -192.175.20.0/23 17309 -192.175.22.0/23 40676 -192.175.24.0/21 11404 -192.175.37.0/24 48920 -192.175.38.0/23 48885 -192.175.40.0/22 198426 -192.175.45.0/24 6667 -192.175.48.0/24 112 -192.175.49.0/24 29933 -192.175.50.0/23 13692 -192.175.52.0/22 33695 -192.175.56.0/21 17223 -192.175.68.0/23 27064 -192.175.71.0/24 27064 -192.175.80.0/23 27064 -192.175.82.0/24 27064 -192.175.84.0/23 27064 -192.175.86.0/24 27064 -192.175.88.0/21 3397 -192.175.96.0/20 32613 -192.175.112.0/21 32613 -192.175.120.0/22 32613 -192.175.124.0/23 32613 -192.175.126.0/23 393544 -192.175.129.0/24 32701 -192.175.132.0/22 32701 -192.175.136.0/24 701 -192.175.141.0/24 32701 -192.175.142.0/24 32701 -192.175.145.0/24 32701 -192.175.146.0/23 32701 -192.175.149.0/24 32701 -192.175.150.0/24 32701 -192.175.160.0/22 32701 -192.175.164.0/23 32701 -192.175.167.0/24 32701 -192.175.169.0/24 32701 -192.175.173.0/24 32701 -192.175.176.0/23 701 -192.175.178.0/24 32701 -192.175.179.0/24 701 -192.175.180.0/24 32701 -192.175.182.0/24 32701 -192.175.184.0/21 32701 -192.175.192.0/21 32701 -192.175.200.0/22 32701 -192.175.204.0/23 32701 -192.175.206.0/24 32701 -192.175.213.0/24 32701 -192.175.214.0/24 32701 -192.175.223.0/24 32701 -192.175.224.0/24 32701 -192.175.226.0/24 32701 -192.175.232.0/24 32701 -192.175.236.0/22 32701 -192.175.241.0/24 32701 -192.175.242.0/23 32701 -192.175.244.0/23 32701 -192.175.247.0/24 32701 -192.175.254.0/24 32701 -192.176.0.0/24 202967 -192.176.1.0/24 158 -192.176.2.0/24 34950 -192.176.5.0/24 3246 -192.176.7.0/24 158 -192.176.24.0/24 51747 -192.176.26.0/24 51747 -192.176.27.0/24 42708 -192.176.28.0/24 42708 -192.176.29.0/24 3301 -192.176.30.0/23 3301 -192.176.33.0/24 3301 -192.176.42.0/24 13189 -192.176.44.0/24 34950 -192.176.45.0/24 206170 -192.176.47.0/24 158 -192.176.48.0/22 1257 -192.176.52.0/22 59913 -192.176.58.0/24 12552 -192.176.59.0/24 35041 -192.176.60.0/24 12552 -192.176.62.0/24 21195 -192.176.64.0/23 199973 -192.176.66.0/24 199973 -192.176.104.0/23 3246 -192.176.106.0/24 3246 -192.176.109.0/24 29217 -192.176.115.0/24 201013 -192.176.116.0/22 197623 -192.176.122.0/24 16150 -192.176.123.0/24 39369 -192.176.124.0/24 3301 -192.176.126.0/24 3301 -192.176.127.0/24 51747 -192.176.132.0/23 5411 -192.176.137.0/24 35041 -192.176.148.0/23 5411 -192.176.161.0/24 2119 -192.176.162.0/23 5411 -192.176.167.0/24 35041 -192.176.169.0/24 35041 -192.176.171.0/24 43948 -192.176.172.0/23 158 -192.176.174.0/24 51747 -192.176.175.0/24 35041 -192.176.196.0/22 3301 -192.176.200.0/22 10991 -192.176.204.0/23 35041 -192.176.206.0/24 3246 -192.176.207.0/24 35041 -192.176.208.0/23 1257 -192.176.210.0/24 1257 -192.176.211.0/24 3301 -192.176.212.0/24 1257 -192.176.215.0/24 1257 -192.176.216.0/23 1257 -192.176.218.0/24 1257 -192.176.219.0/24 3301 -192.176.220.0/23 1257 -192.176.222.0/24 1257 -192.176.223.0/24 13189 -192.176.224.0/22 203052 -192.176.228.0/24 41105 -192.176.229.0/24 49272 -192.176.230.0/24 49272 -192.176.232.0/23 28680 -192.176.234.0/24 3246 -192.176.235.0/24 3301 -192.176.236.0/24 35041 -192.176.237.0/24 38956 -192.176.238.0/24 38956 -192.176.239.0/24 1257 -192.176.240.0/24 197623 -192.176.241.0/24 43948 -192.176.242.0/24 8473 -192.176.243.0/24 29518 -192.176.244.0/24 201013 -192.176.245.0/24 3301 -192.176.246.0/24 201013 -192.176.249.0/24 51747 -192.176.253.0/24 201013 -192.177.0.0/16 18779 -192.178.0.0/15 15169 -192.180.0.0/15 10796 -192.182.0.0/18 5650 -192.182.64.0/20 7011 -192.182.80.0/20 5650 -192.182.96.0/19 5650 -192.182.128.0/19 27017 -192.182.160.0/19 5650 -192.182.192.0/18 5650 -192.183.0.0/17 5650 -192.183.128.0/19 5650 -192.183.160.0/20 27017 -192.183.176.0/24 23263 -192.183.177.0/24 27017 -192.183.178.0/23 27017 -192.183.180.0/22 27017 -192.183.184.0/21 27017 -192.183.192.0/21 27017 -192.183.200.0/23 27017 -192.183.202.0/24 27017 -192.183.203.0/24 53978 -192.183.204.0/22 27017 -192.183.208.0/20 27017 -192.183.224.0/19 5650 -192.184.0.0/24 396536 -192.184.1.0/24 13739 -192.184.2.0/23 13739 -192.184.5.0/24 22669 -192.184.6.0/23 54004 -192.184.8.0/21 32421 -192.184.16.0/20 21724 -192.184.32.0/19 40676 -192.184.67.0/24 27281 -192.184.68.0/22 27281 -192.184.72.0/24 27281 -192.184.73.0/24 14618 -192.184.74.0/23 27281 -192.184.76.0/23 27281 -192.184.80.0/20 3842 -192.184.96.0/22 54804 -192.184.100.0/23 54804 -192.184.105.0/24 54804 -192.184.106.0/23 54804 -192.184.108.0/23 54804 -192.184.110.0/24 54804 -192.184.111.0/24 11272 -192.184.112.0/24 17223 -192.184.113.0/24 395773 -192.184.114.0/23 17223 -192.184.116.0/22 17223 -192.184.120.0/21 17223 -192.184.128.0/17 7065 -192.185.0.0/24 46606 -192.185.1.0/24 30380 -192.185.2.0/23 46606 -192.185.4.0/22 46606 -192.185.8.0/21 46606 -192.185.16.0/20 46606 -192.185.32.0/20 46606 -192.185.48.0/22 46606 -192.185.52.0/24 26337 -192.185.53.0/24 46606 -192.185.54.0/23 46606 -192.185.56.0/21 46606 -192.185.64.0/18 46606 -192.185.128.0/24 46606 -192.185.129.0/24 26337 -192.185.130.0/23 46606 -192.185.132.0/22 46606 -192.185.136.0/21 46606 -192.185.144.0/20 46606 -192.185.160.0/22 46606 -192.185.164.0/23 46606 -192.185.166.0/24 26337 -192.185.167.0/24 46606 -192.185.168.0/21 46606 -192.185.176.0/20 46606 -192.185.192.0/18 46606 -192.186.0.0/24 132721 -192.186.1.0/24 395776 -192.186.2.0/23 395776 -192.186.4.0/22 395776 -192.186.8.0/21 395776 -192.186.16.0/20 395776 -192.186.32.0/20 395776 -192.186.48.0/21 395776 -192.186.56.0/24 395776 -192.186.58.0/23 132721 -192.186.60.0/22 395776 -192.186.64.0/18 7992 -192.186.128.0/19 55286 -192.186.160.0/21 55286 -192.186.168.0/23 55286 -192.186.170.0/24 36352 -192.186.171.0/24 55286 -192.186.172.0/22 55286 -192.186.176.0/20 55286 -192.186.192.0/18 26496 -192.187.0.0/22 27822 -192.187.4.0/24 5860 -192.187.5.0/24 721 -192.187.6.0/23 721 -192.187.8.0/24 22238 -192.187.15.0/24 1538 -192.187.18.0/23 200521 -192.187.20.0/23 200521 -192.187.22.0/24 200521 -192.187.24.0/23 766 -192.187.26.0/24 53831 -192.187.62.0/23 26223 -192.187.64.0/20 11420 -192.187.96.0/19 33387 -192.187.137.0/24 15404 -192.187.138.0/24 7018 -192.187.144.0/23 23005 -192.187.196.0/22 33302 -192.187.248.0/22 44901 -192.188.0.0/24 11312 -192.188.2.0/24 394085 -192.188.5.0/24 11351 -192.188.8.0/23 393833 -192.188.10.0/24 15525 -192.188.11.0/24 53164 -192.188.14.0/24 54072 -192.188.16.0/24 62625 -192.188.22.0/24 3443 -192.188.24.0/22 293 -192.188.35.0/24 45 -192.188.36.0/24 3443 -192.188.45.0/24 3549 -192.188.46.0/23 61468 -192.188.48.0/24 61468 -192.188.49.0/24 27947 -192.188.50.0/24 27820 -192.188.51.0/24 52343 -192.188.52.0/23 61468 -192.188.55.0/24 61468 -192.188.57.0/24 262212 -192.188.58.0/24 61468 -192.188.59.0/24 28027 -192.188.61.0/24 10835 -192.188.67.0/24 14464 -192.188.68.0/24 22773 -192.188.71.0/24 10022 -192.188.72.0/24 2828 -192.188.73.0/24 2907 -192.188.74.0/24 2907 -192.188.81.0/24 14618 -192.188.84.0/24 36201 -192.188.88.0/24 64236 -192.188.91.0/24 394426 -192.188.95.0/24 30293 -192.188.96.0/24 8282 -192.188.99.0/24 13691 -192.188.100.0/24 237 -192.188.101.0/24 38076 -192.188.104.0/24 2828 -192.188.106.0/24 3380 -192.188.107.0/24 7545 -192.188.108.0/24 2721 -192.188.119.0/24 7016 -192.188.120.0/24 63125 -192.188.121.0/24 1115 -192.188.123.0/24 394460 -192.188.126.0/24 27201 -192.188.130.0/24 54689 -192.188.131.0/24 7016 -192.188.136.0/24 12374 -192.188.148.0/24 1761 -192.188.151.0/24 136971 -192.188.155.0/24 39990 -192.188.156.0/24 3356 -192.188.157.0/24 786 -192.188.158.0/24 786 -192.188.159.0/24 2698 -192.188.160.0/22 2698 -192.188.170.0/24 1217 -192.188.176.0/24 10908 -192.188.177.0/24 50 -192.188.178.0/23 50 -192.188.180.0/24 50 -192.188.182.0/24 50 -192.188.183.0/24 7819 -192.188.185.0/24 23838 -192.188.189.0/24 5467 -192.188.192.0/24 46433 -192.188.193.0/24 21777 -192.188.196.0/24 61468 -192.188.199.0/24 6189 -192.188.201.0/24 30065 -192.188.202.0/24 40625 -192.188.203.0/24 27064 -192.188.204.0/23 721 -192.188.206.0/24 1467 -192.188.207.0/24 27064 -192.188.208.0/22 721 -192.188.212.0/24 721 -192.188.213.0/24 1504 -192.188.214.0/23 721 -192.188.216.0/21 721 -192.188.224.0/22 11550 -192.188.230.0/23 54294 -192.188.232.0/24 54294 -192.188.233.0/24 12346 -192.188.242.0/23 1955 -192.188.244.0/22 1955 -192.188.250.0/24 17207 -192.188.251.0/24 394201 -192.188.252.0/24 25778 -192.188.253.0/24 27325 -192.188.254.0/24 22137 -192.188.255.0/24 394164 -192.189.0.0/24 701 -192.189.2.0/24 8100 -192.189.3.0/24 1767 -192.189.4.0/24 22458 -192.189.6.0/24 395843 -192.189.12.0/24 394290 -192.189.14.0/24 8767 -192.189.21.0/24 17177 -192.189.26.0/24 33132 -192.189.27.0/24 20141 -192.189.28.0/23 393856 -192.189.36.0/22 19171 -192.189.40.0/24 46970 -192.189.45.0/24 2152 -192.189.46.0/23 2152 -192.189.48.0/24 2152 -192.189.51.0/24 1853 -192.189.54.0/24 2764 -192.189.58.0/24 7018 -192.189.59.0/24 7029 -192.189.72.0/24 394201 -192.189.81.0/24 393638 -192.189.83.0/24 23332 -192.189.85.0/24 19009 -192.189.96.0/24 21794 -192.189.98.0/24 21794 -192.189.100.0/24 270 -192.189.112.0/24 40238 -192.189.114.0/24 16526 -192.189.117.0/24 398070 -192.189.118.0/24 398070 -192.189.123.0/24 11714 -192.189.128.0/22 14381 -192.189.132.0/24 14381 -192.189.138.0/24 1249 -192.189.141.0/24 7046 -192.189.142.0/23 7046 -192.189.144.0/23 7046 -192.189.146.0/24 7046 -192.189.148.0/24 23727 -192.189.151.0/24 12337 -192.189.152.0/23 394377 -192.189.160.0/24 2856 -192.189.161.0/24 33651 -192.189.171.0/24 63452 -192.189.176.0/23 20115 -192.189.178.0/24 18788 -192.189.179.0/24 36149 -192.189.184.0/22 7726 -192.189.191.0/24 22773 -192.189.192.0/23 17054 -192.189.194.0/24 209 -192.189.197.0/24 22838 -192.189.200.0/23 54372 -192.189.204.0/24 393994 -192.189.205.0/24 40769 -192.189.207.0/24 7016 -192.189.208.0/22 9893 -192.189.212.0/23 17007 -192.189.214.0/24 17007 -192.189.215.0/24 393276 -192.189.216.0/22 393276 -192.189.220.0/24 393276 -192.189.224.0/24 4583 -192.189.226.0/24 4583 -192.189.228.0/24 4583 -192.189.234.0/24 174 -192.189.235.0/24 2828 -192.189.236.0/24 2828 -192.189.244.0/24 81 -192.189.247.0/24 22607 -192.189.248.0/24 8008 -192.189.249.0/24 46943 -192.189.252.0/24 13938 -192.189.253.0/24 36249 -192.189.255.0/24 394173 -192.190.0.0/24 63470 -192.190.7.0/24 29990 -192.190.8.0/24 395279 -192.190.19.0/24 174 -192.190.20.0/23 54833 -192.190.26.0/23 243 -192.190.28.0/23 243 -192.190.30.0/23 11172 -192.190.32.0/24 53305 -192.190.37.0/24 3549 -192.190.42.0/23 27640 -192.190.45.0/24 2152 -192.190.47.0/24 23352 -192.190.48.0/24 7235 -192.190.61.0/24 37978 -192.190.63.0/24 26801 -192.190.66.0/24 23913 -192.190.75.0/24 33318 -192.190.80.0/21 63410 -192.190.88.0/22 54665 -192.190.92.0/23 16653 -192.190.94.0/24 55293 -192.190.105.0/24 209 -192.190.106.0/24 36101 -192.190.107.0/24 385 -192.190.108.0/24 9503 -192.190.109.0/24 11030 -192.190.110.0/24 17032 -192.190.112.0/22 54806 -192.190.122.0/23 243 -192.190.124.0/22 243 -192.190.128.0/24 243 -192.190.154.0/23 394473 -192.190.156.0/22 394473 -192.190.173.0/24 1955 -192.190.174.0/24 1930 -192.190.177.0/24 10298 -192.190.180.0/24 7637 -192.190.186.0/24 7046 -192.190.187.0/24 397717 -192.190.188.0/23 12022 -192.190.190.0/24 8542 -192.190.192.0/24 8542 -192.190.201.0/24 786 -192.190.202.0/24 786 -192.190.204.0/23 59326 -192.190.206.0/23 13576 -192.190.216.0/22 3152 -192.190.220.0/22 32244 -192.190.225.0/24 46597 -192.190.226.0/23 16433 -192.190.228.0/23 668 -192.190.230.0/23 27553 -192.190.237.0/24 29848 -192.190.239.0/24 11829 -192.190.240.0/24 158 -192.190.243.0/24 32143 -192.190.244.0/23 32143 -192.190.246.0/24 32143 -192.190.252.0/24 27167 -192.190.254.0/24 7029 -192.190.255.0/24 6939 -192.191.14.0/24 2044 -192.191.240.0/21 32190 -192.191.248.0/22 32190 -192.191.252.0/23 32190 -192.191.254.0/23 133479 -192.192.0.0/16 1659 -192.193.0.0/22 10129 -192.193.8.0/24 25883 -192.193.18.0/24 3081 -192.193.20.0/23 3081 -192.193.22.0/24 3081 -192.193.35.0/24 3081 -192.193.36.0/24 3081 -192.193.56.0/24 3081 -192.193.66.0/24 2912 -192.193.70.0/23 2912 -192.193.72.0/24 2912 -192.193.79.0/24 32287 -192.193.81.0/24 23564 -192.193.82.0/24 24568 -192.193.83.0/24 23564 -192.193.86.0/24 32287 -192.193.89.0/24 26415 -192.193.90.0/23 26415 -192.193.95.0/24 26415 -192.193.98.0/24 26415 -192.193.102.0/23 25883 -192.193.104.0/24 25883 -192.193.115.0/24 1696 -192.193.116.0/22 1696 -192.193.127.0/24 24568 -192.193.128.0/24 24568 -192.193.132.0/22 24568 -192.193.154.0/24 32287 -192.193.156.0/23 2912 -192.193.158.0/24 4996 -192.193.160.0/21 2912 -192.193.168.0/24 2912 -192.193.171.0/24 25883 -192.193.172.0/23 3081 -192.193.174.0/24 3081 -192.193.178.0/23 25883 -192.193.181.0/24 32287 -192.193.182.0/23 32287 -192.193.185.0/24 25883 -192.193.186.0/24 32287 -192.193.193.0/24 3081 -192.193.200.0/24 32287 -192.193.202.0/23 32287 -192.193.204.0/23 30284 -192.193.206.0/24 30284 -192.193.216.0/24 32287 -192.193.218.0/23 32287 -192.193.220.0/24 32287 -192.193.222.0/24 25883 -192.193.224.0/23 32287 -192.193.226.0/24 32287 -192.193.231.0/24 4996 -192.193.243.0/24 1696 -192.193.244.0/24 1696 -192.193.245.0/24 38029 -192.193.246.0/24 38029 -192.194.0.0/17 1759 -192.194.128.0/23 1759 -192.194.130.0/24 1759 -192.194.131.0/24 12582 -192.194.132.0/22 29601 -192.194.136.0/21 29601 -192.194.144.0/20 29601 -192.194.160.0/24 29601 -192.194.161.0/24 1759 -192.194.162.0/23 1759 -192.194.164.0/22 1759 -192.194.168.0/21 1759 -192.194.176.0/20 1759 -192.194.192.0/18 1759 -192.195.3.0/24 174 -192.195.4.0/23 393517 -192.195.6.0/24 6157 -192.195.12.0/23 4771 -192.195.24.0/22 32016 -192.195.29.0/24 7018 -192.195.32.0/24 394199 -192.195.35.0/24 21933 -192.195.36.0/24 63242 -192.195.41.0/24 2152 -192.195.42.0/23 786 -192.195.44.0/22 18055 -192.195.48.0/22 18055 -192.195.53.0/24 38809 -192.195.54.0/24 38809 -192.195.55.0/24 18055 -192.195.65.0/24 25932 -192.195.66.0/24 29736 -192.195.67.0/24 36863 -192.195.72.0/24 15606 -192.195.74.0/24 25 -192.195.76.0/24 31861 -192.195.77.0/24 8560 -192.195.78.0/23 40181 -192.195.80.0/22 32329 -192.195.84.0/24 54665 -192.195.87.0/24 1970 -192.195.88.0/21 29384 -192.195.100.0/24 26002 -192.195.102.0/24 17496 -192.195.105.0/24 786 -192.195.106.0/24 198597 -192.195.109.0/24 395679 -192.195.111.0/24 15108 -192.195.116.0/23 786 -192.195.118.0/24 786 -192.195.135.0/24 33885 -192.195.136.0/24 8473 -192.195.142.0/24 42303 -192.195.145.0/24 64449 -192.195.146.0/24 64449 -192.195.148.0/24 29024 -192.195.149.0/24 7029 -192.195.153.0/24 14255 -192.195.154.0/23 14255 -192.195.169.0/24 30688 -192.195.173.0/24 394524 -192.195.174.0/24 11436 -192.195.176.0/24 7018 -192.195.177.0/24 54226 -192.195.192.0/23 721 -192.195.194.0/24 721 -192.195.195.0/24 1930 -192.195.196.0/24 1256 -192.195.197.0/24 1221 -192.195.203.0/24 393445 -192.195.204.0/24 11278 -192.195.206.0/24 16526 -192.195.212.0/24 21869 -192.195.220.0/24 11360 -192.195.225.0/24 397348 -192.195.226.0/23 397348 -192.195.228.0/23 397348 -192.195.230.0/24 397348 -192.195.234.0/24 1767 -192.195.237.0/24 264474 -192.195.240.0/24 22772 -192.195.242.0/24 397789 -192.195.243.0/24 19113 -192.195.248.0/23 1767 -192.195.250.0/24 1767 -192.195.253.0/24 63298 -192.195.255.0/24 46525 -192.196.0.0/24 36489 -192.196.12.0/23 1301 -192.196.36.0/22 1301 -192.196.40.0/22 1301 -192.196.70.0/23 1301 -192.196.72.0/23 1301 -192.196.90.0/23 1301 -192.196.92.0/23 1301 -192.196.98.0/23 1301 -192.196.114.0/23 1301 -192.196.118.0/23 1301 -192.196.120.0/22 1301 -192.196.124.0/23 1301 -192.196.140.0/22 1301 -192.196.148.0/23 1301 -192.196.156.0/22 63410 -192.196.161.0/24 36086 -192.196.163.0/24 36086 -192.196.164.0/22 36086 -192.196.168.0/21 36086 -192.196.176.0/21 36086 -192.196.184.0/22 36086 -192.196.208.0/21 54097 -192.196.218.0/24 396833 -192.196.220.0/23 396511 -192.196.222.0/24 26984 -192.196.223.0/24 32613 -192.196.224.0/20 19058 -192.196.240.0/20 62 -192.197.0.0/19 16598 -192.197.32.0/20 16598 -192.197.48.0/23 16598 -192.197.50.0/24 16598 -192.197.51.0/24 376 -192.197.54.0/24 32157 -192.197.58.0/23 17378 -192.197.60.0/24 26677 -192.197.61.0/24 812 -192.197.62.0/24 32250 -192.197.64.0/24 32817 -192.197.69.0/24 15290 -192.197.71.0/24 2665 -192.197.72.0/24 2665 -192.197.74.0/24 852 -192.197.76.0/23 2665 -192.197.82.0/23 2675 -192.197.88.0/24 812 -192.197.89.0/24 62813 -192.197.90.0/24 32762 -192.197.91.0/24 19167 -192.197.92.0/23 17117 -192.197.95.0/24 32347 -192.197.96.0/21 19062 -192.197.104.0/22 19062 -192.197.108.0/23 19062 -192.197.110.0/24 27272 -192.197.111.0/24 19062 -192.197.113.0/24 133115 -192.197.114.0/23 2665 -192.197.116.0/22 22652 -192.197.120.0/24 852 -192.197.121.0/24 15318 -192.197.122.0/23 63457 -192.197.124.0/22 5769 -192.197.128.0/24 40119 -192.197.129.0/24 53443 -192.197.130.0/23 53443 -192.197.132.0/24 53443 -192.197.135.0/24 397474 -192.197.136.0/23 397474 -192.197.142.0/24 611 -192.197.144.0/24 26391 -192.197.145.0/24 13837 -192.197.146.0/24 13329 -192.197.147.0/24 397099 -192.197.148.0/24 32347 -192.197.151.0/24 32638 -192.197.152.0/23 32638 -192.197.154.0/24 32638 -192.197.156.0/24 6461 -192.197.157.0/24 8075 -192.197.161.0/24 11489 -192.197.162.0/24 11489 -192.197.163.0/24 5769 -192.197.166.0/24 6280 -192.197.167.0/24 32820 -192.197.172.0/24 852 -192.197.174.0/24 852 -192.197.178.0/24 820 -192.197.180.0/23 820 -192.197.183.0/24 820 -192.197.184.0/24 820 -192.197.189.0/24 15024 -192.197.190.0/24 376 -192.197.196.0/24 7122 -192.197.201.0/24 603 -192.197.205.0/24 13733 -192.197.209.0/24 803 -192.197.212.0/23 19875 -192.197.214.0/24 13768 -192.197.216.0/22 852 -192.197.220.0/24 40953 -192.197.221.0/24 26512 -192.197.223.0/24 62642 -192.197.225.0/24 271 -192.197.226.0/24 271 -192.197.228.0/24 46156 -192.197.232.0/24 3848 -192.197.243.0/24 2665 -192.197.245.0/24 397452 -192.197.250.0/23 549 -192.197.253.0/24 7122 -192.197.255.0/24 394263 -192.198.0.0/22 53301 -192.198.4.0/22 395421 -192.198.8.0/21 263197 -192.198.25.0/24 3549 -192.198.26.0/23 26097 -192.198.28.0/24 393780 -192.198.29.0/24 395751 -192.198.30.0/24 396314 -192.198.31.0/24 393780 -192.198.32.0/20 1252 -192.198.48.0/21 1252 -192.198.56.0/21 30600 -192.198.64.0/24 1761 -192.198.79.0/24 394209 -192.198.80.0/20 31863 -192.198.96.0/20 55286 -192.198.112.0/21 55286 -192.198.120.0/24 9009 -192.198.121.0/24 55286 -192.198.122.0/23 55286 -192.198.124.0/22 55286 -192.198.138.0/23 4983 -192.198.144.0/22 4983 -192.198.151.0/24 4983 -192.198.160.0/21 4983 -192.198.168.0/24 4983 -192.198.171.0/24 4983 -192.198.172.0/23 4983 -192.198.176.0/23 4983 -192.198.178.0/23 394116 -192.198.180.0/24 5693 -192.198.181.0/24 29944 -192.198.184.0/24 14829 -192.198.192.0/21 20454 -192.198.200.0/22 20454 -192.198.204.0/22 19437 -192.198.208.0/21 55106 -192.198.216.0/22 55106 -192.198.220.0/24 55106 -192.198.224.0/21 53468 -192.198.232.0/23 53468 -192.198.240.0/20 11427 -192.199.0.0/24 63068 -192.199.8.0/24 10753 -192.199.10.0/23 63468 -192.199.12.0/22 23419 -192.199.32.0/21 17477 -192.199.48.0/21 19875 -192.199.56.0/24 19875 -192.199.57.0/24 13804 -192.199.58.0/23 13804 -192.199.60.0/24 13804 -192.199.61.0/24 19875 -192.199.62.0/23 19875 -192.199.109.0/24 12007 -192.199.178.0/23 53830 -192.199.180.0/22 393238 -192.199.184.0/21 19331 -192.199.192.0/20 53405 -192.199.208.0/20 40784 -192.199.224.0/20 1410 -192.199.240.0/20 30475 -192.200.0.0/24 10912 -192.200.1.0/24 18438 -192.200.2.0/23 18438 -192.200.5.0/24 18438 -192.200.6.0/23 18438 -192.200.8.0/24 18438 -192.200.9.0/24 394374 -192.200.10.0/23 11068 -192.200.12.0/22 36426 -192.200.16.0/21 53889 -192.200.24.0/23 53889 -192.200.26.0/24 53889 -192.200.27.0/24 6130 -192.200.28.0/22 53889 -192.200.62.0/24 20050 -192.200.63.0/24 3356 -192.200.64.0/20 45186 -192.200.80.0/20 14283 -192.200.96.0/19 53850 -192.200.128.0/21 16575 -192.200.136.0/21 36001 -192.200.144.0/21 22781 -192.200.152.0/22 12989 -192.200.156.0/22 13926 -192.200.160.0/22 36351 -192.200.172.0/22 36351 -192.200.176.0/20 36351 -192.200.192.0/19 46573 -192.200.224.0/19 16591 -192.203.0.0/24 63393 -192.203.12.0/22 19255 -192.203.16.0/20 19255 -192.203.32.0/22 19255 -192.203.36.0/24 19255 -192.203.37.0/24 33576 -192.203.40.0/24 54004 -192.203.41.0/24 29721 -192.203.48.0/21 701 -192.203.56.0/24 11829 -192.203.57.0/24 701 -192.203.58.0/23 701 -192.203.60.0/22 701 -192.203.80.0/24 58255 -192.203.97.0/24 31967 -192.203.98.0/24 22890 -192.203.100.0/22 25843 -192.203.106.0/24 812 -192.203.115.0/24 22388 -192.203.116.0/24 396390 -192.203.117.0/24 11470 -192.203.125.0/24 11470 -192.203.126.0/24 11470 -192.203.127.0/24 7018 -192.203.130.0/23 3549 -192.203.132.0/24 3549 -192.203.134.0/24 7018 -192.203.136.0/23 17196 -192.203.138.0/24 18026 -192.203.139.0/24 7560 -192.203.140.0/24 9640 -192.203.144.0/24 17862 -192.203.145.0/24 9459 -192.203.146.0/24 3786 -192.203.150.0/24 27064 -192.203.155.0/24 26729 -192.203.158.0/24 2924 -192.203.160.0/24 33465 -192.203.164.0/24 40628 -192.203.175.0/24 22801 -192.203.177.0/24 28382 -192.203.178.0/24 15065 -192.203.180.0/24 2711 -192.203.181.0/24 13499 -192.203.186.0/24 3549 -192.203.187.0/24 33657 -192.203.194.0/24 51964 -192.203.195.0/24 237 -192.203.196.0/24 46115 -192.203.199.0/24 26002 -192.203.200.0/24 26002 -192.203.201.0/24 11073 -192.203.204.0/24 22328 -192.203.206.0/24 18566 -192.203.211.0/24 11714 -192.203.213.0/24 3561 -192.203.216.0/24 10022 -192.203.218.0/24 43 -192.203.222.0/23 63242 -192.203.228.0/24 6140 -192.203.230.0/24 21556 -192.203.231.0/24 26667 -192.203.232.0/24 4609 -192.203.233.0/24 23102 -192.203.237.0/24 55232 -192.203.239.0/24 394235 -192.203.253.0/24 22147 -192.203.254.0/23 29996 -192.204.0.0/21 2914 -192.204.8.0/23 2914 -192.204.10.0/24 19271 -192.204.11.0/24 20940 -192.204.12.0/22 30103 -192.204.16.0/20 2914 -192.204.32.0/19 2914 -192.204.64.0/20 2914 -192.204.80.0/23 2914 -192.204.82.0/23 20940 -192.204.84.0/22 2914 -192.204.88.0/21 2914 -192.204.96.0/21 2914 -192.204.104.0/23 2914 -192.204.106.0/23 53577 -192.204.108.0/22 2914 -192.204.112.0/20 2914 -192.204.128.0/20 2914 -192.204.144.0/23 53577 -192.204.146.0/24 53577 -192.204.147.0/24 2914 -192.204.148.0/24 53577 -192.204.149.0/24 2914 -192.204.150.0/23 2914 -192.204.152.0/21 2914 -192.204.160.0/20 2914 -192.204.176.0/23 2914 -192.204.178.0/23 174 -192.204.180.0/23 174 -192.204.182.0/24 174 -192.204.183.0/24 2914 -192.204.184.0/21 2914 -192.204.192.0/18 2914 -192.205.31.0/24 7018 -192.205.32.0/22 7018 -192.205.36.0/23 7018 -192.205.195.0/24 7018 -192.206.0.0/24 30600 -192.206.4.0/22 46874 -192.206.8.0/24 23033 -192.206.9.0/24 46149 -192.206.10.0/23 46149 -192.206.19.0/24 33651 -192.206.21.0/24 396012 -192.206.28.0/24 812 -192.206.29.0/24 22192 -192.206.31.0/24 7046 -192.206.32.0/23 62681 -192.206.36.0/23 393853 -192.206.43.0/24 792 -192.206.44.0/24 30187 -192.206.45.0/24 394381 -192.206.46.0/23 36644 -192.206.48.0/24 2381 -192.206.50.0/24 11232 -192.206.54.0/23 63068 -192.206.56.0/24 3791 -192.206.58.0/24 22551 -192.206.63.0/24 21554 -192.206.64.0/24 16673 -192.206.65.0/24 5078 -192.206.70.0/23 25853 -192.206.72.0/24 33580 -192.206.73.0/24 19271 -192.206.87.0/24 3356 -192.206.88.0/23 3356 -192.206.95.0/24 200077 -192.206.100.0/24 26979 -192.206.105.0/24 26159 -192.206.106.0/24 11714 -192.206.110.0/23 393536 -192.206.112.0/24 7148 -192.206.115.0/24 14977 -192.206.119.0/24 13567 -192.206.135.0/24 32982 -192.206.136.0/24 393846 -192.206.141.0/24 64252 -192.206.142.0/23 7819 -192.206.144.0/21 10400 -192.206.152.0/24 4771 -192.206.154.0/24 4771 -192.206.156.0/24 4771 -192.206.158.0/23 1746 -192.206.161.0/24 1746 -192.206.163.0/24 158 -192.206.164.0/23 158 -192.206.166.0/24 158 -192.206.170.0/24 7349 -192.206.175.0/24 2386 -192.206.179.0/24 53595 -192.206.180.0/24 23005 -192.206.181.0/24 46630 -192.206.183.0/24 17320 -192.206.187.0/24 106 -192.206.195.0/24 26394 -192.206.196.0/22 26394 -192.206.200.0/24 26394 -192.206.201.0/24 10430 -192.206.202.0/23 395688 -192.206.204.0/24 53853 -192.206.211.0/24 31770 -192.206.212.0/24 31770 -192.206.216.0/24 31770 -192.206.230.0/24 33442 -192.206.231.0/24 47058 -192.206.235.0/24 10796 -192.206.238.0/23 26511 -192.206.240.0/24 19995 -192.206.243.0/24 46171 -192.206.244.0/22 46171 -192.206.249.0/24 22773 -192.206.252.0/24 22773 -192.206.255.0/24 62884 -192.207.0.0/24 6507 -192.207.12.0/24 14099 -192.207.13.0/24 27142 -192.207.16.0/24 394236 -192.207.20.0/24 10835 -192.207.21.0/24 7332 -192.207.23.0/24 10455 -192.207.26.0/24 17294 -192.207.34.0/23 6971 -192.207.45.0/24 54885 -192.207.46.0/23 1982 -192.207.49.0/24 26014 -192.207.55.0/24 46849 -192.207.56.0/23 32082 -192.207.58.0/24 32082 -192.207.59.0/24 394425 -192.207.62.0/24 394180 -192.207.64.0/24 3839 -192.207.67.0/24 23031 -192.207.69.0/24 21933 -192.207.70.0/23 21933 -192.207.72.0/24 21933 -192.207.73.0/24 36538 -192.207.74.0/24 1904 -192.207.76.0/24 611 -192.207.91.0/24 17764 -192.207.96.0/23 38302 -192.207.98.0/24 24126 -192.207.104.0/24 10430 -192.207.119.0/24 4739 -192.207.120.0/24 4764 -192.207.124.0/24 3807 -192.207.126.0/24 30312 -192.207.142.0/24 3347 -192.207.146.0/24 11340 -192.207.147.0/24 14762 -192.207.152.0/24 9543 -192.207.156.0/23 6262 -192.207.162.0/24 32533 -192.207.163.0/24 2046 -192.207.173.0/24 26002 -192.207.174.0/23 1767 -192.207.176.0/23 1767 -192.207.178.0/24 1767 -192.207.179.0/24 5972 -192.207.181.0/24 5972 -192.207.184.0/24 2152 -192.207.187.0/24 4739 -192.207.194.0/24 11097 -192.207.195.0/24 264506 -192.207.200.0/22 61773 -192.207.204.0/23 11172 -192.207.206.0/24 264507 -192.207.207.0/24 5972 -192.207.212.0/24 5972 -192.207.213.0/24 395073 -192.207.214.0/23 395073 -192.207.223.0/24 5972 -192.207.226.0/24 11570 -192.207.228.0/23 5972 -192.207.230.0/24 721 -192.207.231.0/24 5972 -192.207.234.0/24 33695 -192.207.235.0/24 5972 -192.207.244.0/24 27947 -192.207.247.0/24 26729 -192.207.248.0/24 9509 -192.207.252.0/24 22324 -192.207.255.0/24 62821 -192.208.10.0/24 36337 -192.208.18.0/23 32982 -192.208.20.0/23 46846 -192.208.23.0/24 11398 -192.208.24.0/22 32982 -192.208.29.0/24 16739 -192.208.30.0/23 29804 -192.208.37.0/24 2164 -192.208.44.0/23 19647 -192.208.46.0/24 19647 -192.208.52.0/22 47096 -192.208.56.0/21 40285 -192.208.114.0/23 11847 -192.208.116.0/22 54035 -192.208.120.0/21 6128 -192.208.128.0/20 10546 -192.208.144.0/21 10546 -192.208.152.0/22 10546 -192.208.156.0/23 10546 -192.208.160.0/20 14155 -192.208.176.0/21 53264 -192.208.184.0/24 20278 -192.208.185.0/24 53264 -192.208.186.0/23 53264 -192.208.188.0/22 53264 -192.208.192.0/19 6336 -192.208.224.0/19 14265 -192.209.0.0/24 11203 -192.209.17.0/24 33346 -192.209.18.0/23 40217 -192.209.20.0/22 3257 -192.209.24.0/21 40627 -192.209.32.0/20 4193 -192.209.48.0/21 4193 -192.209.56.0/22 4193 -192.209.60.0/23 4193 -192.209.62.0/24 138995 -192.209.63.0/24 13830 -192.210.0.0/24 19224 -192.210.4.0/23 852 -192.210.9.0/24 852 -192.210.10.0/24 852 -192.210.11.0/24 41625 -192.210.12.0/22 46456 -192.210.16.0/20 15081 -192.210.42.0/23 36374 -192.210.44.0/24 40161 -192.210.45.0/24 36469 -192.210.46.0/24 62505 -192.210.48.0/20 40676 -192.210.128.0/22 55286 -192.210.132.0/22 36352 -192.210.136.0/21 36352 -192.210.144.0/20 36352 -192.210.160.0/19 36352 -192.210.192.0/20 36352 -192.210.208.0/23 20278 -192.210.210.0/24 36352 -192.210.211.0/24 20278 -192.210.212.0/22 36352 -192.210.216.0/22 36352 -192.210.220.0/23 36352 -192.210.222.0/24 55286 -192.210.223.0/24 36352 -192.210.224.0/23 55286 -192.210.226.0/23 36352 -192.210.228.0/22 36352 -192.210.232.0/21 36352 -192.210.240.0/20 36352 -192.211.0.0/24 21485 -192.211.11.0/24 20205 -192.211.12.0/22 18888 -192.211.16.0/20 10430 -192.211.32.0/23 3464 -192.211.39.0/24 3464 -192.211.41.0/24 3464 -192.211.43.0/24 3464 -192.211.44.0/23 3464 -192.211.46.0/24 6327 -192.211.47.0/24 16696 -192.211.48.0/22 54540 -192.211.52.0/23 54540 -192.211.54.0/24 54540 -192.211.56.0/24 54540 -192.211.58.0/23 54540 -192.211.60.0/22 54540 -192.211.64.0/24 721 -192.211.65.0/24 27064 -192.211.66.0/23 721 -192.211.68.0/24 721 -192.211.69.0/24 27064 -192.211.70.0/24 27064 -192.211.71.0/24 721 -192.211.72.0/21 721 -192.211.80.0/20 721 -192.211.96.0/23 721 -192.211.98.0/24 721 -192.211.99.0/24 27064 -192.211.100.0/23 721 -192.211.102.0/24 668 -192.211.103.0/24 721 -192.211.104.0/21 721 -192.211.124.0/22 54412 -192.211.128.0/17 36327 -192.212.0.0/15 7127 -192.214.0.0/18 7127 -192.214.64.0/19 7127 -192.214.96.0/24 7127 -192.214.98.0/24 3356 -192.214.99.0/24 394514 -192.214.100.0/23 63052 -192.214.102.0/24 852 -192.214.103.0/24 63052 -192.214.104.0/21 54963 -192.214.112.0/23 11139 -192.214.114.0/24 11139 -192.214.115.0/24 14813 -192.214.116.0/22 46408 -192.214.120.0/22 14813 -192.214.124.0/23 14813 -192.214.126.0/23 46650 -192.214.128.0/17 22423 -192.215.0.0/24 7018 -192.215.1.0/24 4266 -192.215.2.0/24 7018 -192.215.3.0/24 4266 -192.215.4.0/23 4266 -192.215.6.0/23 7018 -192.215.8.0/23 4266 -192.215.10.0/24 4266 -192.215.11.0/24 4264 -192.215.12.0/23 7018 -192.215.14.0/24 4266 -192.215.15.0/24 7018 -192.215.16.0/23 4266 -192.215.18.0/23 7018 -192.215.20.0/24 7018 -192.215.21.0/24 4266 -192.215.22.0/23 4266 -192.215.24.0/23 7018 -192.215.26.0/24 4266 -192.215.27.0/24 7018 -192.215.28.0/22 7018 -192.215.32.0/24 4266 -192.215.33.0/24 7018 -192.215.34.0/23 7018 -192.215.36.0/22 7018 -192.215.40.0/23 7018 -192.215.42.0/24 7018 -192.215.43.0/24 4266 -192.215.44.0/22 7018 -192.215.48.0/24 4266 -192.215.49.0/24 7018 -192.215.50.0/23 4266 -192.215.52.0/22 7018 -192.215.56.0/23 7018 -192.215.58.0/24 4266 -192.215.59.0/24 7018 -192.215.60.0/24 2386 -192.215.61.0/24 7018 -192.215.62.0/23 7018 -192.215.64.0/23 4266 -192.215.66.0/23 7018 -192.215.68.0/23 7018 -192.215.70.0/23 4266 -192.215.72.0/22 4266 -192.215.76.0/23 7018 -192.215.78.0/23 4266 -192.215.80.0/24 7018 -192.215.81.0/24 4266 -192.215.82.0/23 7018 -192.215.84.0/22 7018 -192.215.88.0/21 7018 -192.215.96.0/21 7018 -192.215.104.0/23 7018 -192.215.106.0/24 7018 -192.215.107.0/24 4266 -192.215.108.0/22 7018 -192.215.112.0/20 7018 -192.215.128.0/21 4266 -192.215.136.0/22 7018 -192.215.140.0/22 4266 -192.215.144.0/24 7018 -192.215.145.0/24 4266 -192.215.146.0/23 4266 -192.215.148.0/22 7018 -192.215.152.0/21 7018 -192.215.160.0/23 4266 -192.215.162.0/24 4266 -192.215.163.0/24 7018 -192.215.164.0/22 7018 -192.215.168.0/22 7018 -192.215.172.0/23 7018 -192.215.174.0/24 7018 -192.215.175.0/24 4266 -192.215.176.0/24 4266 -192.215.177.0/24 7018 -192.215.178.0/23 7018 -192.215.180.0/23 4266 -192.215.182.0/23 7018 -192.215.184.0/21 7018 -192.215.192.0/22 7018 -192.215.196.0/23 7018 -192.215.198.0/24 4266 -192.215.199.0/24 7018 -192.215.200.0/23 4266 -192.215.202.0/24 2386 -192.215.203.0/24 4266 -192.215.204.0/22 4266 -192.215.208.0/22 7018 -192.215.212.0/24 4266 -192.215.213.0/24 7018 -192.215.214.0/23 7018 -192.215.216.0/23 4266 -192.215.218.0/23 7018 -192.215.220.0/24 4266 -192.215.221.0/24 7018 -192.215.222.0/23 7018 -192.215.224.0/21 7018 -192.215.232.0/23 7018 -192.215.234.0/23 4266 -192.215.236.0/22 7018 -192.215.240.0/24 7018 -192.215.241.0/24 4266 -192.215.242.0/23 7018 -192.215.244.0/22 7018 -192.215.248.0/23 4266 -192.215.250.0/23 7018 -192.215.252.0/23 7018 -192.215.254.0/24 4266 -192.215.255.0/24 7018 -192.216.0.0/19 3356 -192.216.32.0/20 3356 -192.216.48.0/21 3356 -192.216.56.0/22 3356 -192.216.60.0/24 3356 -192.216.61.0/24 12134 -192.216.62.0/23 3356 -192.216.64.0/23 3356 -192.216.66.0/23 22549 -192.216.68.0/22 3356 -192.216.72.0/21 3356 -192.216.80.0/23 3356 -192.216.82.0/24 16743 -192.216.83.0/24 3356 -192.216.84.0/23 3356 -192.216.86.0/24 3356 -192.216.87.0/24 16724 -192.216.88.0/22 3356 -192.216.92.0/24 3356 -192.216.93.0/24 10355 -192.216.94.0/23 3356 -192.216.96.0/21 3356 -192.216.104.0/23 3356 -192.216.106.0/24 40129 -192.216.107.0/24 16567 -192.216.108.0/22 3356 -192.216.112.0/21 3356 -192.216.120.0/24 30484 -192.216.121.0/24 22549 -192.216.122.0/23 3356 -192.216.124.0/22 3356 -192.216.128.0/22 3356 -192.216.132.0/24 14091 -192.216.133.0/24 3356 -192.216.134.0/23 3356 -192.216.136.0/23 16724 -192.216.138.0/23 3356 -192.216.140.0/22 3356 -192.216.144.0/21 3356 -192.216.152.0/22 3356 -192.216.156.0/23 22549 -192.216.158.0/23 3356 -192.216.160.0/19 3356 -192.216.192.0/21 3356 -192.216.200.0/24 3356 -192.216.201.0/24 7914 -192.216.202.0/23 3356 -192.216.204.0/22 3356 -192.216.208.0/23 3356 -192.216.210.0/23 22549 -192.216.212.0/22 3356 -192.216.216.0/21 3356 -192.216.224.0/21 3356 -192.216.232.0/22 3356 -192.216.236.0/24 46953 -192.216.237.0/24 3356 -192.216.238.0/23 3356 -192.216.240.0/20 3356 -192.217.0.0/18 2914 -192.217.64.0/20 2914 -192.217.80.0/22 2914 -192.217.84.0/24 395428 -192.217.85.0/24 2914 -192.217.86.0/23 2914 -192.217.88.0/21 2914 -192.217.96.0/19 2914 -192.217.128.0/21 2914 -192.217.136.0/22 33409 -192.217.140.0/22 2914 -192.217.144.0/20 2914 -192.217.160.0/19 2914 -192.217.192.0/18 2914 -192.218.1.0/24 2907 -192.218.8.0/23 7671 -192.218.12.0/23 17676 -192.218.14.0/24 7671 -192.218.15.0/24 17676 -192.218.65.0/24 37891 -192.218.66.0/24 37891 -192.218.88.0/24 2514 -192.218.92.0/22 2907 -192.218.112.0/21 2907 -192.218.128.0/23 131158 -192.218.136.0/23 4725 -192.218.140.0/24 4680 -192.218.160.0/20 2907 -192.218.200.0/22 18260 -192.218.228.0/24 2500 -192.218.230.0/23 23793 -192.218.240.0/21 2907 -192.219.0.0/24 394352 -192.219.29.0/24 11618 -192.219.30.0/24 14843 -192.219.31.0/24 6579 -192.219.32.0/19 577 -192.219.64.0/21 376 -192.219.72.0/22 376 -192.219.88.0/23 6407 -192.219.99.0/24 397681 -192.219.119.0/24 803 -192.219.215.0/24 6539 -192.219.216.0/21 16787 -192.219.228.0/23 20115 -192.219.231.0/24 3456 -192.219.236.0/22 31782 -192.219.240.0/24 31782 -192.219.241.0/24 803 -192.219.249.0/24 14453 -192.219.250.0/24 22051 -192.219.253.0/24 577 -192.219.254.0/24 395663 -192.219.255.0/24 393666 -192.220.0.0/16 2914 -192.221.0.0/18 3356 -192.221.64.0/21 3356 -192.221.72.0/22 3356 -192.221.76.0/23 3356 -192.221.78.0/24 8966 -192.221.79.0/24 3356 -192.221.80.0/22 3356 -192.221.84.0/23 17819 -192.221.86.0/23 3356 -192.221.88.0/21 3356 -192.221.96.0/19 3356 -192.221.128.0/18 3356 -192.221.192.0/19 3356 -192.221.224.0/20 3356 -192.221.240.0/21 3356 -192.221.248.0/21 3549 -192.222.0.0/24 33127 -192.222.1.0/24 812 -192.222.2.0/23 812 -192.222.4.0/22 812 -192.222.8.0/24 812 -192.222.9.0/24 19605 -192.222.10.0/23 23100 -192.222.12.0/22 54954 -192.222.16.0/20 21830 -192.222.32.0/20 396258 -192.222.102.0/23 62969 -192.222.104.0/22 55112 -192.222.108.0/24 55112 -192.222.110.0/23 55112 -192.222.128.0/17 1403 -192.223.2.0/24 393920 -192.223.7.0/24 393920 -192.223.8.0/24 2828 -192.223.9.0/24 53454 -192.223.10.0/23 46562 -192.223.12.0/22 19234 -192.223.24.0/24 13789 -192.223.25.0/24 32751 -192.223.26.0/24 14586 -192.223.27.0/24 13789 -192.223.28.0/24 14745 -192.223.29.0/24 12179 -192.223.30.0/24 14586 -192.223.31.0/24 13789 -192.223.37.0/24 6075 -192.223.38.0/24 6075 -192.223.40.0/24 6075 -192.223.42.0/24 6075 -192.223.44.0/23 6075 -192.223.48.0/24 6075 -192.223.53.0/24 6075 -192.223.54.0/24 6075 -192.223.56.0/23 6075 -192.223.63.0/24 6075 -192.223.64.0/18 25620 -192.223.128.0/24 136049 -192.223.130.0/24 12000 -192.223.134.0/24 136178 -192.223.136.0/23 40923 -192.223.138.0/24 40923 -192.223.140.0/24 200961 -192.223.143.0/24 136178 -192.223.144.0/24 136049 -192.223.149.0/24 13322 -192.223.150.0/23 200961 -192.223.156.0/23 200961 -192.223.158.0/24 200961 -192.223.160.0/23 40923 -192.223.170.0/24 13322 -192.223.172.0/23 13322 -192.223.178.0/24 13322 -192.223.187.0/24 13322 -192.223.189.0/24 13322 -192.223.190.0/24 13322 -192.223.198.0/23 40923 -192.223.232.0/23 13322 -192.223.236.0/24 40923 -192.223.241.0/24 13322 -192.223.242.0/24 13322 -192.223.245.0/24 12000 -192.223.249.0/24 40923 -192.224.101.0/24 7018 -192.225.24.0/23 393605 -192.225.26.0/23 19215 -192.225.28.0/23 46372 -192.225.57.0/24 21987 -192.225.58.0/23 63462 -192.225.60.0/22 32506 -192.225.64.0/19 297 -192.225.98.0/24 6143 -192.225.106.0/23 54149 -192.225.112.0/20 40866 -192.225.128.0/20 10674 -192.225.144.0/21 10674 -192.225.152.0/24 10674 -192.225.153.0/24 394240 -192.225.155.0/24 393880 -192.225.156.0/22 30286 -192.225.160.0/20 54301 -192.225.176.0/20 21947 -192.225.192.0/20 19233 -192.225.208.0/22 62660 -192.225.212.0/24 14618 -192.225.213.0/24 62660 -192.225.214.0/23 62660 -192.225.216.0/24 62660 -192.225.218.0/24 14618 -192.225.220.0/23 62660 -192.225.222.0/24 62660 -192.225.223.0/24 14618 -192.225.224.0/22 8100 -192.225.228.0/23 8100 -192.225.230.0/23 26665 -192.225.232.0/21 22552 -192.225.240.0/20 394111 -192.226.39.0/24 27272 -192.226.47.0/24 3602 -192.226.54.0/24 396306 -192.226.55.0/24 394085 -192.226.60.0/23 852 -192.226.62.0/23 62525 -192.226.64.0/18 16524 -192.226.128.0/17 5769 -192.227.0.0/24 22773 -192.227.2.0/23 7306 -192.227.32.0/19 36600 -192.227.64.0/19 13886 -192.227.96.0/21 13886 -192.227.104.0/23 13886 -192.227.106.0/24 13886 -192.227.107.0/24 3061 -192.227.108.0/22 13886 -192.227.112.0/20 13886 -192.227.128.0/20 36352 -192.227.144.0/22 36352 -192.227.148.0/24 55286 -192.227.149.0/24 36352 -192.227.150.0/23 55286 -192.227.152.0/22 36352 -192.227.156.0/23 55286 -192.227.158.0/24 36352 -192.227.159.0/24 55286 -192.227.160.0/19 36352 -192.227.192.0/18 36352 -192.228.0.0/24 25905 -192.228.1.0/24 10753 -192.228.5.0/24 10753 -192.228.6.0/24 10753 -192.228.18.0/24 10753 -192.228.19.0/24 5769 -192.228.20.0/24 5769 -192.228.21.0/24 27299 -192.228.22.0/23 27299 -192.228.24.0/22 27299 -192.228.29.0/24 27299 -192.228.31.0/24 27299 -192.228.79.0/24 394353 -192.228.83.0/24 30127 -192.228.84.0/24 30124 -192.228.85.0/24 30125 -192.228.86.0/24 30128 -192.228.87.0/24 30129 -192.228.89.0/24 33558 -192.228.93.0/24 17194 -192.228.94.0/23 395876 -192.228.96.0/23 53340 -192.228.98.0/24 397598 -192.228.99.0/24 21559 -192.228.100.0/22 53340 -192.228.104.0/22 53340 -192.228.108.0/24 36218 -192.228.109.0/24 53340 -192.228.110.0/23 64200 -192.228.128.0/17 9930 -192.229.0.0/24 21580 -192.229.3.0/24 11003 -192.229.8.0/21 11003 -192.229.19.0/24 2159 -192.229.21.0/24 394264 -192.229.22.0/23 46976 -192.229.24.0/21 30028 -192.229.64.0/18 395954 -192.229.130.0/23 15133 -192.229.133.0/24 15133 -192.229.138.0/23 15133 -192.229.141.0/24 15133 -192.229.144.0/23 15133 -192.229.149.0/24 15133 -192.229.150.0/23 15133 -192.229.152.0/22 15133 -192.229.156.0/24 15133 -192.229.159.0/24 15133 -192.229.160.0/24 14153 -192.229.162.0/23 15133 -192.229.166.0/23 15133 -192.229.168.0/24 14210 -192.229.169.0/24 15133 -192.229.170.0/23 15133 -192.229.172.0/24 14210 -192.229.173.0/24 15133 -192.229.178.0/23 15133 -192.229.180.0/23 14210 -192.229.182.0/24 15133 -192.229.183.0/24 14210 -192.229.184.0/24 14210 -192.229.186.0/24 14153 -192.229.189.0/24 15133 -192.229.208.0/22 15133 -192.229.212.0/23 15133 -192.229.214.0/24 15133 -192.229.216.0/24 14210 -192.229.218.0/23 15133 -192.229.220.0/23 15133 -192.229.222.0/24 15133 -192.229.224.0/23 15133 -192.229.227.0/24 15133 -192.229.231.0/24 15133 -192.229.232.0/23 15133 -192.229.234.0/24 15133 -192.229.235.0/24 14210 -192.229.236.0/22 15133 -192.229.242.0/23 15133 -192.229.246.0/23 15133 -192.229.248.0/21 15133 -192.230.0.0/20 4193 -192.230.32.0/24 6130 -192.230.33.0/24 53889 -192.230.34.0/23 53889 -192.230.36.0/22 53889 -192.230.40.0/21 53889 -192.230.48.0/20 53889 -192.230.64.0/21 19551 -192.230.72.0/23 19551 -192.230.74.0/24 19551 -192.230.75.0/24 62571 -192.230.76.0/24 62571 -192.230.77.0/24 19551 -192.230.78.0/23 19551 -192.230.80.0/21 19551 -192.230.88.0/24 19551 -192.230.91.0/24 19551 -192.230.92.0/23 19551 -192.230.95.0/24 19551 -192.230.96.0/21 19551 -192.230.105.0/24 19551 -192.230.106.0/24 19551 -192.230.108.0/22 19551 -192.230.112.0/20 19551 -192.230.128.0/20 5056 -192.230.144.0/20 12180 -192.230.160.0/20 19605 -192.230.176.0/20 55178 -192.230.192.0/20 55230 -192.230.224.0/20 22556 -192.230.240.0/20 26165 -192.231.0.0/24 2914 -192.231.21.0/24 47615 -192.231.29.0/24 397087 -192.231.35.0/24 394246 -192.231.36.0/24 19377 -192.231.40.0/24 395288 -192.231.41.0/24 11394 -192.231.59.0/24 132868 -192.231.63.0/24 2711 -192.231.68.0/23 395073 -192.231.71.0/24 395073 -192.231.72.0/24 395073 -192.231.78.0/23 6620 -192.231.80.0/24 6620 -192.231.83.0/24 30312 -192.231.84.0/23 393770 -192.231.86.0/24 29721 -192.231.91.0/24 395740 -192.231.92.0/24 16649 -192.231.93.0/24 2386 -192.231.95.0/24 2386 -192.231.96.0/24 2386 -192.231.98.0/23 55057 -192.231.106.0/24 14518 -192.231.110.0/24 16874 -192.231.113.0/24 231 -192.231.114.0/23 264372 -192.231.116.0/22 27951 -192.231.120.0/23 263718 -192.231.122.0/23 23191 -192.231.124.0/23 23191 -192.231.127.0/24 10148 -192.231.128.0/24 27066 -192.231.130.0/23 12153 -192.231.132.0/24 12153 -192.231.133.0/24 29721 -192.231.134.0/24 394027 -192.231.140.0/24 263249 -192.231.141.0/24 9738 -192.231.143.0/24 397410 -192.231.145.0/24 3527 -192.231.146.0/23 3527 -192.231.155.0/24 53433 -192.231.160.0/24 15336 -192.231.162.0/23 33575 -192.231.164.0/24 33575 -192.231.166.0/23 7575 -192.231.170.0/24 59326 -192.231.171.0/24 397087 -192.231.175.0/24 264532 -192.231.176.0/24 264534 -192.231.177.0/24 394761 -192.231.178.0/24 394761 -192.231.179.0/24 18795 -192.231.186.0/24 201106 -192.231.188.0/24 36493 -192.231.192.0/24 3807 -192.231.196.0/24 21777 -192.231.201.0/24 209 -192.231.202.0/24 21976 -192.231.203.0/24 4739 -192.231.204.0/23 1746 -192.231.207.0/24 21976 -192.231.213.0/24 40581 -192.231.214.0/24 393939 -192.231.215.0/24 18540 -192.231.219.0/24 19184 -192.231.220.0/24 62989 -192.231.224.0/22 10488 -192.231.228.0/23 10488 -192.231.231.0/24 17278 -192.231.233.0/24 19395 -192.231.234.0/24 395577 -192.231.238.0/24 30301 -192.231.243.0/24 1207 -192.231.244.0/24 5050 -192.231.246.0/24 11743 -192.231.249.0/24 13438 -192.231.250.0/23 40890 -192.231.253.0/24 36375 -192.231.254.0/24 2905 -192.231.255.0/24 29757 -192.232.0.0/24 40948 -192.232.11.0/24 394664 -192.232.12.0/22 19556 -192.232.16.0/22 600 -192.232.20.0/23 600 -192.232.22.0/24 3112 -192.232.23.0/24 600 -192.232.24.0/21 600 -192.232.64.0/24 15404 -192.232.66.0/24 15404 -192.232.67.0/24 9911 -192.232.69.0/24 9911 -192.232.70.0/23 5647 -192.232.81.0/24 12400 -192.232.95.0/24 5647 -192.232.97.0/24 4812 -192.232.99.0/24 5647 -192.232.100.0/24 5647 -192.232.117.0/24 5647 -192.232.118.0/23 5647 -192.232.120.0/21 5647 -192.232.128.0/22 23922 -192.232.141.0/24 23922 -192.232.145.0/24 23922 -192.232.146.0/24 23922 -192.232.148.0/24 23922 -192.232.154.0/23 23922 -192.232.164.0/24 209 -192.232.165.0/24 54119 -192.232.167.0/24 10835 -192.232.168.0/22 3549 -192.232.172.0/22 7018 -192.232.176.0/22 33132 -192.232.180.0/22 54119 -192.232.184.0/22 54119 -192.232.192.0/18 46606 -192.233.0.0/16 3356 -192.234.0.0/24 14176 -192.234.1.0/24 4549 -192.234.2.0/23 4549 -192.234.4.0/24 4549 -192.234.5.0/24 394533 -192.234.7.0/24 4196 -192.234.12.0/23 5078 -192.234.14.0/23 26255 -192.234.16.0/24 26255 -192.234.31.0/24 62711 -192.234.32.0/23 53738 -192.234.34.0/24 21757 -192.234.38.0/23 33657 -192.234.42.0/24 6461 -192.234.56.0/24 1798 -192.234.68.0/23 19882 -192.234.73.0/24 36092 -192.234.79.0/24 394144 -192.234.80.0/21 36426 -192.234.88.0/24 394298 -192.234.90.0/24 23067 -192.234.91.0/24 23538 -192.234.92.0/24 22696 -192.234.93.0/24 33491 -192.234.99.0/24 20069 -192.234.105.0/24 12179 -192.234.106.0/24 397369 -192.234.110.0/23 36291 -192.234.118.0/23 25961 -192.234.120.0/23 62643 -192.234.122.0/23 19113 -192.234.124.0/22 19113 -192.234.128.0/24 19113 -192.234.129.0/24 7018 -192.234.130.0/23 7018 -192.234.132.0/23 7018 -192.234.134.0/24 7018 -192.234.135.0/24 21693 -192.234.136.0/23 21693 -192.234.138.0/24 21693 -192.234.140.0/24 21693 -192.234.141.0/24 32328 -192.234.142.0/23 32328 -192.234.144.0/24 32328 -192.234.145.0/24 6290 -192.234.146.0/24 32328 -192.234.148.0/24 12169 -192.234.149.0/24 2031 -192.234.153.0/24 7782 -192.234.157.0/24 46424 -192.234.158.0/24 33616 -192.234.159.0/24 40716 -192.234.160.0/23 40716 -192.234.162.0/24 40716 -192.234.167.0/24 19113 -192.234.168.0/24 19113 -192.234.169.0/24 17087 -192.234.172.0/24 22192 -192.234.192.0/23 64227 -192.234.195.0/24 398062 -192.234.196.0/22 14007 -192.234.202.0/24 21699 -192.234.203.0/24 32743 -192.234.204.0/24 14007 -192.234.211.0/24 33652 -192.234.212.0/24 33652 -192.234.213.0/24 2642 -192.234.214.0/24 2642 -192.234.216.0/24 22172 -192.234.219.0/24 20115 -192.234.223.0/24 812 -192.234.226.0/24 14472 -192.234.227.0/24 852 -192.234.229.0/24 852 -192.234.235.0/24 30494 -192.234.237.0/24 17282 -192.234.241.0/24 2048 -192.234.245.0/24 7474 -192.234.247.0/24 1998 -192.234.249.0/24 10753 -192.234.253.0/24 10753 -192.234.254.0/24 5117 -192.234.255.0/24 53830 -192.235.0.0/20 23323 -192.235.16.0/21 11351 -192.235.24.0/21 3549 -192.235.32.0/20 54985 -192.235.48.0/20 14813 -192.235.65.0/24 36086 -192.235.66.0/23 36086 -192.235.68.0/24 36086 -192.235.75.0/24 36086 -192.235.76.0/23 36086 -192.235.79.0/24 36086 -192.235.80.0/24 36086 -192.235.87.0/24 36086 -192.235.88.0/21 36086 -192.235.96.0/23 36086 -192.235.100.0/23 36086 -192.235.102.0/24 30413 -192.235.103.0/24 36086 -192.235.112.0/22 36086 -192.235.116.0/24 13546 -192.235.117.0/24 36086 -192.235.118.0/23 36086 -192.235.120.0/22 36086 -192.235.128.0/18 15128 -192.235.192.0/21 15128 -192.235.200.0/24 15128 -192.235.202.0/23 15128 -192.235.206.0/23 15128 -192.235.210.0/23 15128 -192.235.212.0/22 15128 -192.235.216.0/22 15128 -192.235.220.0/24 15128 -192.235.222.0/23 15128 -192.235.224.0/19 15128 -192.236.0.0/24 393238 -192.236.1.0/24 4185 -192.236.2.0/24 394915 -192.236.3.0/24 4185 -192.236.4.0/22 4185 -192.236.8.0/24 4185 -192.236.9.0/24 394185 -192.236.10.0/23 14265 -192.236.12.0/22 54841 -192.236.16.0/21 25958 -192.236.24.0/24 20115 -192.236.25.0/24 25958 -192.236.26.0/24 209 -192.236.27.0/24 53407 -192.236.28.0/22 5683 -192.236.32.0/19 11736 -192.236.64.0/21 16657 -192.236.76.0/22 7016 -192.236.88.0/22 22909 -192.236.92.0/22 8025 -192.236.100.0/22 54119 -192.236.104.0/24 54119 -192.236.112.0/22 54119 -192.236.116.0/23 22909 -192.236.118.0/23 8025 -192.236.120.0/23 54119 -192.236.122.0/24 3257 -192.236.123.0/24 54119 -192.236.124.0/22 33132 -192.236.128.0/17 54290 -192.237.24.0/23 812 -192.237.29.0/24 812 -192.237.32.0/19 47049 -192.237.77.0/24 2386 -192.237.79.0/24 2687 -192.237.115.0/24 10264 -192.237.125.0/24 3300 -192.237.128.0/18 19994 -192.237.192.0/19 33070 -192.237.224.0/19 19994 -192.238.0.0/24 36143 -192.238.11.0/24 13768 -192.238.12.0/22 55017 -192.238.16.0/21 53559 -192.238.24.0/23 53559 -192.238.26.0/24 53559 -192.238.27.0/24 201665 -192.238.28.0/24 174 -192.238.29.0/24 53559 -192.238.30.0/24 53559 -192.238.56.0/23 5714 -192.238.58.0/24 5714 -192.238.64.0/18 6102 -192.238.128.0/17 395954 -192.239.50.0/24 27198 -192.239.136.0/23 209 -192.239.248.0/22 3681 -192.240.0.0/20 11363 -192.240.32.0/21 26385 -192.240.40.0/22 26385 -192.240.44.0/23 26385 -192.240.46.0/24 26385 -192.240.48.0/20 26727 -192.240.64.0/19 394744 -192.240.96.0/19 174 -192.240.128.0/22 721 -192.240.132.0/24 5927 -192.240.133.0/24 721 -192.240.134.0/23 721 -192.240.136.0/24 27064 -192.240.137.0/24 5927 -192.240.138.0/23 5927 -192.240.140.0/22 5927 -192.240.144.0/24 5927 -192.240.145.0/24 721 -192.240.146.0/24 721 -192.240.147.0/24 5927 -192.240.148.0/23 54971 -192.240.150.0/23 19893 -192.240.152.0/21 16276 -192.240.160.0/20 36444 -192.240.176.0/21 36444 -192.240.184.0/22 36444 -192.240.188.0/24 36444 -192.240.189.0/24 40819 -192.240.190.0/24 6188 -192.240.191.0/24 36444 -192.240.192.0/23 9009 -192.240.194.0/23 53889 -192.240.196.0/22 9009 -192.240.200.0/21 9009 -192.240.208.0/21 9009 -192.240.216.0/22 9009 -192.240.220.0/22 46261 -192.240.224.0/22 9009 -192.240.228.0/22 53889 -192.240.232.0/21 53889 -192.240.240.0/20 9009 -192.241.8.0/22 30475 -192.241.16.0/21 53398 -192.241.47.0/24 7018 -192.241.48.0/22 25660 -192.241.52.0/23 25660 -192.241.54.0/24 396330 -192.241.55.0/24 25660 -192.241.56.0/22 25660 -192.241.60.0/23 25660 -192.241.62.0/24 393635 -192.241.63.0/24 25660 -192.241.64.0/20 55286 -192.241.80.0/22 55286 -192.241.84.0/24 55286 -192.241.85.0/24 36352 -192.241.86.0/23 55286 -192.241.88.0/21 55286 -192.241.96.0/22 55286 -192.241.100.0/23 55286 -192.241.102.0/24 55081 -192.241.103.0/24 55286 -192.241.104.0/22 55286 -192.241.108.0/24 55286 -192.241.109.0/24 55081 -192.241.110.0/23 55286 -192.241.112.0/20 55286 -192.241.128.0/17 14061 -192.243.16.0/22 31951 -192.243.20.0/22 1221 -192.243.24.0/22 32889 -192.243.28.0/23 32889 -192.243.30.0/24 32889 -192.243.31.0/24 32098 -192.243.32.0/24 2044 -192.243.33.0/24 14265 -192.243.34.0/23 397307 -192.243.36.0/24 26223 -192.243.39.0/24 5693 -192.243.40.0/21 55034 -192.243.48.0/20 39572 -192.243.64.0/24 395148 -192.243.66.0/23 395148 -192.243.68.0/22 395148 -192.243.72.0/24 394074 -192.243.73.0/24 46761 -192.243.74.0/23 394592 -192.243.76.0/22 47027 -192.243.80.0/20 62575 -192.243.96.0/21 36454 -192.243.104.0/22 36454 -192.243.108.0/23 36454 -192.243.110.0/24 31463 -192.243.111.0/24 36454 -192.243.112.0/20 25820 -192.243.213.0/24 46887 -192.243.214.0/23 63297 -192.243.216.0/24 26718 -192.243.217.0/24 8084 -192.243.218.0/23 26718 -192.243.220.0/22 26718 -192.243.224.0/19 15224 -192.244.1.0/24 4725 -192.244.8.0/21 2497 -192.244.20.0/23 2907 -192.244.78.0/23 2907 -192.244.80.0/20 2907 -192.244.96.0/20 2514 -192.244.144.0/20 2907 -192.244.196.0/22 2907 -192.244.203.0/24 2512 -192.244.208.0/20 2907 -192.244.228.0/22 2907 -192.244.247.0/24 7687 -192.244.254.0/24 2907 -192.245.0.0/24 22773 -192.245.1.0/24 7029 -192.245.2.0/24 30545 -192.245.12.0/22 6373 -192.245.19.0/24 14477 -192.245.20.0/22 14477 -192.245.25.0/24 11351 -192.245.26.0/23 11351 -192.245.28.0/23 11351 -192.245.33.0/24 5006 -192.245.42.0/23 2572 -192.245.44.0/24 7782 -192.245.50.0/24 32744 -192.245.51.0/24 10965 -192.245.60.0/24 28116 -192.245.61.0/24 21803 -192.245.66.0/23 243 -192.245.68.0/22 243 -192.245.72.0/24 243 -192.245.86.0/24 21795 -192.245.87.0/24 14598 -192.245.88.0/24 393216 -192.245.89.0/24 25816 -192.245.91.0/24 29828 -192.245.105.0/24 134748 -192.245.108.0/24 38456 -192.245.109.0/24 9229 -192.245.110.0/24 9229 -192.245.111.0/24 23667 -192.245.112.0/24 38456 -192.245.118.0/24 27626 -192.245.119.0/24 7018 -192.245.136.0/24 29903 -192.245.140.0/24 63050 -192.245.143.0/24 54578 -192.245.153.0/24 14051 -192.245.157.0/24 36236 -192.245.158.0/23 63480 -192.245.160.0/23 26198 -192.245.162.0/24 136814 -192.245.165.0/24 8135 -192.245.169.0/24 8267 -192.245.171.0/24 7385 -192.245.179.0/24 2698 -192.245.181.0/24 5650 -192.245.185.0/24 17705 -192.245.186.0/24 7349 -192.245.187.0/24 10835 -192.245.193.0/24 26283 -192.245.194.0/24 32366 -192.245.196.0/24 3662 -192.245.200.0/22 721 -192.245.204.0/24 27064 -192.245.205.0/24 721 -192.245.206.0/23 721 -192.245.208.0/24 7651 -192.245.212.0/22 6262 -192.245.221.0/24 13760 -192.245.222.0/23 13760 -192.245.224.0/24 13760 -192.245.237.0/24 32982 -192.245.249.0/24 9318 -192.245.250.0/24 3786 -192.245.251.0/24 4766 -192.245.252.0/24 237 -192.245.253.0/24 26047 -192.245.254.0/24 237 -192.245.255.0/24 29854 -192.246.0.0/21 174 -192.246.8.0/24 174 -192.246.9.0/24 6195 -192.246.10.0/23 174 -192.246.12.0/22 174 -192.246.16.0/20 174 -192.246.32.0/22 174 -192.246.36.0/24 174 -192.246.37.0/24 3555 -192.246.38.0/23 174 -192.246.40.0/21 174 -192.246.48.0/20 174 -192.246.64.0/20 174 -192.246.80.0/23 174 -192.246.82.0/24 7834 -192.246.83.0/24 174 -192.246.84.0/22 174 -192.246.88.0/24 22691 -192.246.89.0/24 174 -192.246.90.0/23 174 -192.246.92.0/22 174 -192.246.96.0/22 174 -192.246.100.0/23 174 -192.246.102.0/24 174 -192.246.103.0/24 7868 -192.246.104.0/21 174 -192.246.112.0/20 174 -192.246.128.0/18 174 -192.246.192.0/19 174 -192.246.224.0/22 33545 -192.246.228.0/23 33545 -192.246.230.0/24 174 -192.246.231.0/24 33545 -192.246.232.0/22 33545 -192.246.236.0/22 174 -192.246.240.0/20 174 -192.247.0.0/24 394386 -192.247.12.0/22 19515 -192.247.16.0/21 30062 -192.247.24.0/23 30062 -192.247.26.0/24 64204 -192.247.27.0/24 30062 -192.247.28.0/24 1221 -192.247.29.0/24 30062 -192.247.30.0/23 64204 -192.247.33.0/24 21763 -192.247.36.0/24 21763 -192.247.41.0/24 7381 -192.247.43.0/24 21763 -192.247.60.0/24 21763 -192.247.64.0/19 14628 -192.247.96.0/19 11979 -192.247.128.0/17 10430 -192.248.0.0/17 38229 -192.248.128.0/20 20473 -192.248.192.0/19 53913 -192.248.224.0/20 62642 -192.248.248.0/24 33370 -192.249.0.0/20 3450 -192.249.16.0/20 1781 -192.249.33.0/24 15063 -192.249.36.0/24 31618 -192.249.38.0/23 31618 -192.249.41.0/24 4631 -192.249.42.0/23 135514 -192.249.44.0/24 16928 -192.249.46.0/23 16928 -192.249.48.0/22 16928 -192.249.52.0/22 55025 -192.249.56.0/21 3842 -192.249.64.0/20 23338 -192.249.80.0/23 134548 -192.249.83.0/24 134548 -192.249.84.0/22 134548 -192.249.88.0/24 134548 -192.249.89.0/24 134196 -192.249.90.0/23 134548 -192.249.92.0/23 134548 -192.249.94.0/24 134196 -192.249.95.0/24 55933 -192.249.96.0/20 5690 -192.249.112.0/20 22611 -192.249.128.0/17 11666 -192.250.0.0/24 6062 -192.250.1.0/24 40289 -192.250.2.0/24 18563 -192.250.3.0/24 6062 -192.250.4.0/22 6062 -192.250.8.0/21 6062 -192.250.16.0/22 15321 -192.250.20.0/23 394049 -192.250.22.0/23 46121 -192.250.24.0/22 23034 -192.250.28.0/24 36031 -192.250.29.0/24 62544 -192.250.46.0/24 3738 -192.250.48.0/23 3738 -192.250.56.0/22 3738 -192.250.69.0/24 3738 -192.250.72.0/22 3738 -192.250.78.0/24 3738 -192.250.80.0/22 3738 -192.250.85.0/24 3738 -192.250.87.0/24 3738 -192.250.90.0/23 3738 -192.250.96.0/22 3738 -192.250.100.0/24 3738 -192.250.112.0/23 3738 -192.250.114.0/24 3738 -192.250.120.0/21 3738 -192.250.128.0/23 3738 -192.250.130.0/24 3738 -192.250.132.0/23 3738 -192.250.135.0/24 3738 -192.250.137.0/24 3738 -192.250.144.0/24 3738 -192.250.146.0/23 3738 -192.250.148.0/23 3738 -192.250.152.0/23 3738 -192.250.154.0/24 3738 -192.250.156.0/23 3738 -192.250.158.0/24 3738 -192.250.162.0/23 3738 -192.250.165.0/24 3738 -192.250.166.0/23 3738 -192.250.171.0/24 3738 -192.250.172.0/24 3738 -192.250.175.0/24 3738 -192.250.177.0/24 3738 -192.250.178.0/23 3738 -192.250.180.0/23 3738 -192.250.182.0/24 3738 -192.250.192.0/22 395776 -192.250.196.0/23 40065 -192.250.198.0/24 40065 -192.250.200.0/21 395776 -192.250.208.0/20 13364 -192.250.224.0/21 36454 -192.250.232.0/22 36454 -192.250.236.0/24 36454 -192.250.237.0/24 46562 -192.250.238.0/23 36454 -192.251.0.0/24 394256 -192.251.4.0/24 4583 -192.251.6.0/23 4583 -192.251.13.0/24 21842 -192.251.14.0/24 21842 -192.251.15.0/24 20179 -192.251.17.0/24 22773 -192.251.18.0/24 397145 -192.251.26.0/23 812 -192.251.28.0/23 812 -192.251.30.0/24 812 -192.251.32.0/24 32244 -192.251.34.0/24 12113 -192.251.37.0/24 10753 -192.251.46.0/23 393251 -192.251.51.0/24 14299 -192.251.56.0/24 64223 -192.251.57.0/24 21710 -192.251.58.0/24 7086 -192.251.61.0/24 5080 -192.251.62.0/23 5080 -192.251.64.0/23 5080 -192.251.68.0/24 7922 -192.251.69.0/24 17035 -192.251.73.0/24 14049 -192.251.74.0/23 14049 -192.251.82.0/23 8008 -192.251.84.0/23 7332 -192.251.86.0/24 59252 -192.251.87.0/24 17272 -192.251.91.0/24 8100 -192.251.93.0/24 20390 -192.251.94.0/24 393238 -192.251.95.0/24 3356 -192.251.97.0/24 3356 -192.251.98.0/23 3356 -192.251.100.0/22 17244 -192.251.104.0/23 11199 -192.251.106.0/24 7018 -192.251.109.0/24 394411 -192.251.111.0/24 36174 -192.251.128.0/24 13760 -192.251.139.0/24 55113 -192.251.148.0/24 138206 -192.251.149.0/24 397142 -192.251.159.0/24 7018 -192.251.163.0/24 14192 -192.251.170.0/23 17020 -192.251.174.0/24 396312 -192.251.175.0/24 209 -192.251.181.0/24 20115 -192.251.183.0/24 395346 -192.251.189.0/24 40664 -192.251.193.0/24 23033 -192.251.194.0/24 3549 -192.251.197.0/24 27373 -192.251.198.0/23 46872 -192.251.200.0/24 394602 -192.251.207.0/24 7474 -192.251.219.0/24 17040 -192.251.220.0/22 17040 -192.251.224.0/24 17040 -192.251.226.0/24 49745 -192.251.230.0/24 60154 -192.251.238.0/23 63031 -192.251.240.0/20 23118 -192.252.0.0/23 21521 -192.252.2.0/24 21521 -192.252.3.0/24 5714 -192.252.4.0/22 21521 -192.252.8.0/23 393661 -192.252.32.0/19 36092 -192.252.72.0/21 3465 -192.252.112.0/22 3465 -192.252.120.0/22 3465 -192.252.128.0/23 22652 -192.252.130.0/24 46720 -192.252.131.0/24 22652 -192.252.132.0/24 1824 -192.252.133.0/24 22652 -192.252.134.0/24 22652 -192.252.135.0/24 36354 -192.252.136.0/21 22652 -192.252.144.0/20 3561 -192.252.160.0/20 36493 -192.252.176.0/20 64050 -192.252.192.0/20 13490 -192.252.208.0/20 46562 -192.252.224.0/20 5645 -192.252.240.0/20 19230 -192.253.0.0/24 394384 -192.253.202.0/23 11796 -192.253.204.0/22 40473 -192.253.208.0/22 54454 -192.253.212.0/22 393445 -192.253.216.0/24 54454 -192.253.218.0/23 54454 -192.253.220.0/24 54454 -192.253.222.0/23 54454 -192.253.224.0/20 64050 -192.253.240.0/24 36351 -192.253.241.0/24 45671 -192.253.242.0/24 36351 -192.253.243.0/24 3223 -192.253.245.0/24 3223 -192.253.246.0/24 396362 -192.253.247.0/24 9009 -192.253.248.0/24 45671 -192.253.249.0/24 38001 -192.253.250.0/24 50613 -192.253.252.0/24 36351 -192.253.253.0/24 9009 -192.253.254.0/24 38001 -192.253.255.0/24 9009 -192.254.0.0/23 32974 -192.254.6.0/23 32974 -192.254.8.0/24 32974 -192.254.16.0/20 6989 -192.254.64.0/24 64235 -192.254.65.0/24 31863 -192.254.66.0/23 31863 -192.254.68.0/22 31863 -192.254.72.0/21 31863 -192.254.80.0/22 21859 -192.254.84.0/23 21859 -192.254.86.0/24 3462 -192.254.87.0/24 21859 -192.254.88.0/21 21859 -192.254.96.0/21 21559 -192.254.104.0/22 21559 -192.254.108.0/24 10524 -192.254.109.0/24 63240 -192.254.110.0/24 393573 -192.254.111.0/24 21559 -192.254.112.0/20 11377 -192.254.128.0/17 46606 -192.255.0.0/18 36351 -192.255.64.0/20 9009 -192.255.80.0/22 33182 -192.255.84.0/22 9009 -192.255.88.0/21 9009 -192.255.96.0/21 46261 -192.255.104.0/22 53889 -192.255.108.0/22 46261 -192.255.112.0/21 53889 -192.255.120.0/21 46261 -192.255.128.0/17 54290 -193.0.0.0/21 3333 -193.0.9.0/24 197000 -193.0.10.0/23 3333 -193.0.12.0/23 3333 -193.0.14.0/23 25152 -193.0.18.0/23 3333 -193.0.20.0/22 3333 -193.0.24.0/21 2121 -193.0.57.0/24 25111 -193.0.58.0/23 25111 -193.0.60.0/24 25111 -193.0.61.0/24 57167 -193.0.63.0/24 3320 -193.0.64.0/18 8890 -193.0.128.0/24 198752 -193.0.130.0/23 43741 -193.0.132.0/22 3203 -193.0.136.0/22 57223 -193.0.140.0/23 57223 -193.0.142.0/23 198754 -193.0.144.0/24 198751 -193.0.145.0/24 3191 -193.0.148.0/22 48711 -193.0.152.0/22 198758 -193.0.156.0/24 58169 -193.0.157.0/24 15589 -193.0.158.0/24 3257 -193.0.159.0/24 39458 -193.0.160.0/24 54312 -193.0.161.0/24 49010 -193.0.162.0/23 198787 -193.0.166.0/23 59596 -193.0.168.0/23 59475 -193.0.170.0/23 58116 -193.0.172.0/22 198784 -193.0.176.0/23 25160 -193.0.178.0/23 35415 -193.0.185.0/24 58112 -193.0.186.0/23 35003 -193.0.188.0/24 8562 -193.0.189.0/24 41496 -193.0.191.0/24 49485 -193.0.192.0/22 199494 -193.0.196.0/23 199494 -193.0.198.0/24 58105 -193.0.199.0/24 48918 -193.0.200.0/24 50113 -193.0.201.0/24 14576 -193.0.202.0/23 50113 -193.0.204.0/22 34814 -193.0.208.0/22 30753 -193.0.212.0/24 60154 -193.0.213.0/24 42831 -193.0.214.0/23 58097 -193.0.216.0/22 42126 -193.0.220.0/23 42126 -193.0.222.0/24 49788 -193.0.223.0/24 34259 -193.0.224.0/24 9044 -193.0.225.0/24 24839 -193.0.226.0/24 34489 -193.0.227.0/24 34535 -193.0.228.0/24 25150 -193.0.229.0/24 34535 -193.0.230.0/24 34535 -193.0.231.0/24 15380 -193.0.232.0/23 24951 -193.0.234.0/23 51765 -193.0.237.0/24 3303 -193.0.239.0/24 24589 -193.0.240.0/24 25133 -193.0.241.0/24 25544 -193.0.242.0/24 24756 -193.0.243.0/24 34027 -193.0.244.0/24 25303 -193.0.245.0/24 49505 -193.0.246.0/24 49505 -193.0.247.0/24 35213 -193.0.248.0/24 57607 -193.0.251.0/24 25190 -193.0.252.0/24 25225 -193.0.253.0/24 41980 -193.0.254.0/24 29170 -193.0.255.0/24 8190 -193.1.0.0/16 1213 -193.2.0.0/16 2107 -193.3.1.0/24 31131 -193.3.2.0/23 31131 -193.3.5.0/24 31131 -193.3.6.0/24 31131 -193.3.8.0/22 31131 -193.3.12.0/24 31131 -193.3.39.0/24 31027 -193.3.60.0/23 58282 -193.3.62.0/24 3257 -193.3.64.0/18 41076 -193.3.130.0/23 3292 -193.3.140.0/23 3292 -193.3.142.0/24 3292 -193.3.157.0/24 41108 -193.3.224.0/22 3292 -193.3.234.0/23 31027 -193.3.238.0/24 1835 -193.3.252.0/23 31027 -193.3.254.0/24 31027 -193.4.0.0/19 12969 -193.4.32.0/20 12969 -193.4.48.0/21 12969 -193.4.56.0/23 12969 -193.4.58.0/23 1850 -193.4.60.0/22 12969 -193.4.64.0/18 12969 -193.4.128.0/21 12969 -193.4.136.0/22 12969 -193.4.140.0/23 12969 -193.4.142.0/24 57729 -193.4.143.0/24 12969 -193.4.144.0/20 12969 -193.4.160.0/19 12969 -193.4.192.0/18 12969 -193.5.0.0/24 3303 -193.5.1.0/24 49505 -193.5.2.0/24 6730 -193.5.3.0/24 3303 -193.5.4.0/23 3303 -193.5.8.0/23 29166 -193.5.10.0/23 51765 -193.5.16.0/22 210312 -193.5.22.0/24 559 -193.5.24.0/24 133744 -193.5.25.0/24 133073 -193.5.26.0/23 559 -193.5.28.0/24 49505 -193.5.30.0/24 8300 -193.5.36.0/24 3303 -193.5.38.0/24 3303 -193.5.42.0/23 29166 -193.5.44.0/24 6830 -193.5.46.0/23 133115 -193.5.48.0/24 57987 -193.5.52.0/24 3303 -193.5.54.0/23 559 -193.5.56.0/23 6830 -193.5.58.0/24 559 -193.5.59.0/24 3303 -193.5.60.0/24 559 -193.5.61.0/24 3303 -193.5.64.0/23 29066 -193.5.66.0/24 9042 -193.5.67.0/24 3303 -193.5.68.0/23 196621 -193.5.76.0/22 9042 -193.5.80.0/21 559 -193.5.88.0/21 8659 -193.5.104.0/23 8883 -193.5.110.0/23 8883 -193.5.116.0/23 52183 -193.5.118.0/24 52183 -193.5.121.0/24 6830 -193.5.123.0/24 15623 -193.5.124.0/24 35507 -193.5.125.0/24 64249 -193.5.152.0/22 559 -193.5.168.0/22 559 -193.5.173.0/24 8803 -193.5.174.0/24 8803 -193.5.176.0/23 3303 -193.5.178.0/24 3303 -193.5.180.0/23 196722 -193.5.182.0/24 196722 -193.5.185.0/24 196722 -193.5.186.0/23 196722 -193.5.188.0/24 196722 -193.5.216.0/21 33845 -193.5.224.0/20 3303 -193.5.240.0/21 15675 -193.5.248.0/23 15675 -193.5.250.0/23 29066 -193.5.253.0/24 12620 -193.5.254.0/24 3303 -193.5.255.0/24 398083 -193.6.0.0/16 1955 -193.7.128.0/19 12638 -193.7.160.0/21 30853 -193.7.168.0/21 30791 -193.7.176.0/21 3320 -193.7.184.0/21 13237 -193.7.192.0/23 197099 -193.7.194.0/24 197099 -193.7.195.0/24 20860 -193.7.196.0/22 49505 -193.7.200.0/22 61317 -193.7.204.0/24 42427 -193.7.207.0/24 30031 -193.7.208.0/24 207950 -193.7.216.0/22 47626 -193.7.220.0/22 199046 -193.7.224.0/19 12680 -193.8.0.0/24 51641 -193.8.1.0/24 398083 -193.8.2.0/23 199978 -193.8.4.0/23 35489 -193.8.6.0/23 50302 -193.8.8.0/24 398083 -193.8.16.0/20 21222 -193.8.32.0/22 34950 -193.8.36.0/23 3308 -193.8.38.0/24 16245 -193.8.39.0/24 3308 -193.8.40.0/22 208065 -193.8.44.0/24 208065 -193.8.45.0/24 198766 -193.8.46.0/23 58199 -193.8.50.0/23 39750 -193.8.54.0/23 199978 -193.8.56.0/24 60781 -193.8.57.0/24 57170 -193.8.58.0/23 6830 -193.8.60.0/24 6830 -193.8.61.0/24 197764 -193.8.62.0/23 34876 -193.8.64.0/22 15404 -193.8.68.0/23 15404 -193.8.72.0/23 34876 -193.8.76.0/23 6830 -193.8.78.0/23 197707 -193.8.80.0/22 133115 -193.8.84.0/23 48326 -193.8.86.0/23 197698 -193.8.92.0/23 48326 -193.8.94.0/24 60781 -193.8.106.0/23 29641 -193.8.108.0/23 29641 -193.8.116.0/22 60032 -193.8.120.0/24 202461 -193.8.121.0/24 202274 -193.8.126.0/24 39369 -193.8.127.0/24 60781 -193.8.128.0/23 3303 -193.8.130.0/23 59905 -193.8.132.0/22 24951 -193.8.136.0/23 559 -193.8.138.0/24 60781 -193.8.139.0/24 31182 -193.8.140.0/23 3303 -193.8.143.0/24 8528 -193.8.145.0/24 3303 -193.8.148.0/22 25289 -193.8.152.0/21 25289 -193.8.160.0/23 25289 -193.8.162.0/24 25289 -193.8.164.0/24 49505 -193.8.165.0/24 15600 -193.8.166.0/24 15600 -193.8.167.0/24 49505 -193.8.170.0/24 6830 -193.8.171.0/24 49505 -193.8.172.0/24 30475 -193.8.173.0/24 60945 -193.8.174.0/24 199802 -193.8.175.0/24 49505 -193.8.176.0/22 8803 -193.8.180.0/23 8803 -193.8.182.0/23 197764 -193.8.184.0/22 52055 -193.8.190.0/23 48038 -193.8.194.0/24 53340 -193.8.195.0/24 23422 -193.8.196.0/24 206567 -193.8.197.0/24 199819 -193.8.200.0/24 50405 -193.8.201.0/24 198505 -193.8.203.0/24 35722 -193.8.208.0/22 12494 -193.8.215.0/24 60781 -193.8.216.0/22 21009 -193.8.222.0/23 25090 -193.8.224.0/22 209498 -193.8.230.0/24 6830 -193.8.231.0/24 60781 -193.8.234.0/24 64249 -193.8.235.0/24 15623 -193.8.236.0/23 51290 -193.8.238.0/24 64249 -193.8.239.0/24 48776 -193.8.240.0/23 42010 -193.8.242.0/24 42010 -193.8.245.0/24 48776 -193.8.246.0/24 8892 -193.8.248.0/24 42814 -193.8.250.0/24 34397 -193.8.252.0/24 1836 -193.9.0.0/24 3549 -193.9.4.0/24 30311 -193.9.8.0/22 2611 -193.9.15.0/24 201702 -193.9.19.0/24 3212 -193.9.21.0/24 48894 -193.9.23.0/24 31477 -193.9.24.0/24 15623 -193.9.27.0/24 5588 -193.9.28.0/24 29802 -193.9.29.0/24 201702 -193.9.30.0/23 51290 -193.9.32.0/22 35913 -193.9.36.0/22 204860 -193.9.40.0/22 204860 -193.9.44.0/24 40065 -193.9.46.0/24 40065 -193.9.48.0/22 210041 -193.9.52.0/22 5603 -193.9.56.0/22 9009 -193.9.60.0/22 42632 -193.9.112.0/22 9009 -193.9.116.0/22 200395 -193.9.120.0/24 15392 -193.9.121.0/24 34845 -193.9.122.0/24 16509 -193.9.123.0/24 51960 -193.9.124.0/22 5554 -193.9.148.0/24 4184 -193.9.152.0/22 48095 -193.9.156.0/23 208092 -193.9.158.0/24 200557 -193.9.159.0/24 196727 -193.9.160.0/19 49362 -193.9.230.0/23 51510 -193.9.232.0/24 51510 -193.9.240.0/22 49311 -193.9.244.0/22 48720 -193.9.248.0/24 44574 -193.9.252.0/23 51265 -193.9.255.0/24 201702 -193.10.0.0/19 1653 -193.10.32.0/24 25176 -193.10.33.0/24 1653 -193.10.34.0/23 1653 -193.10.36.0/22 1653 -193.10.40.0/21 1653 -193.10.48.0/20 1653 -193.10.64.0/22 1653 -193.10.68.0/24 2603 -193.10.69.0/24 1653 -193.10.70.0/23 1653 -193.10.72.0/21 1653 -193.10.80.0/20 1653 -193.10.96.0/19 1653 -193.10.128.0/20 1653 -193.10.144.0/24 1257 -193.10.145.0/24 1653 -193.10.146.0/23 1653 -193.10.148.0/22 1653 -193.10.152.0/21 1653 -193.10.160.0/19 1653 -193.10.192.0/19 1653 -193.10.224.0/20 1653 -193.10.240.0/21 1653 -193.10.248.0/22 1653 -193.10.252.0/24 2603 -193.10.253.0/24 1653 -193.10.254.0/23 2603 -193.11.0.0/23 1653 -193.11.2.0/24 1653 -193.11.3.0/24 2603 -193.11.4.0/22 1653 -193.11.8.0/21 1653 -193.11.16.0/20 1653 -193.11.32.0/19 1653 -193.11.64.0/18 1653 -193.11.128.0/17 1653 -193.12.0.0/18 1257 -193.12.64.0/19 1257 -193.12.96.0/20 1257 -193.12.112.0/22 1257 -193.12.116.0/24 1257 -193.12.117.0/24 48503 -193.12.118.0/23 1257 -193.12.120.0/21 1257 -193.12.128.0/17 1257 -193.13.0.0/17 1257 -193.13.128.0/19 1257 -193.13.160.0/23 2119 -193.13.162.0/23 39651 -193.13.164.0/22 39651 -193.13.168.0/21 39651 -193.13.176.0/20 1257 -193.13.192.0/18 1257 -193.14.0.0/17 1257 -193.14.128.0/18 1257 -193.14.192.0/20 39651 -193.14.208.0/20 1257 -193.14.224.0/19 1257 -193.15.0.0/16 1257 -193.16.0.0/24 201702 -193.16.2.0/24 3213 -193.16.3.0/24 204612 -193.16.4.0/22 680 -193.16.8.0/24 54600 -193.16.9.0/24 35913 -193.16.10.0/23 35913 -193.16.12.0/22 57844 -193.16.16.0/22 5430 -193.16.20.0/23 3257 -193.16.28.0/23 5430 -193.16.36.0/23 200768 -193.16.40.0/23 208092 -193.16.42.0/24 3213 -193.16.43.0/24 29661 -193.16.45.0/24 34814 -193.16.46.0/24 197112 -193.16.47.0/24 1820 -193.16.48.0/20 8220 -193.16.64.0/21 20676 -193.16.72.0/21 47309 -193.16.80.0/20 9145 -193.16.96.0/24 47171 -193.16.97.0/24 209585 -193.16.98.0/24 208332 -193.16.99.0/24 33838 -193.16.100.0/24 27970 -193.16.101.0/24 31531 -193.16.102.0/24 31534 -193.16.103.0/24 31497 -193.16.104.0/24 39453 -193.16.105.0/24 13249 -193.16.106.0/24 3213 -193.16.107.0/24 31528 -193.16.108.0/24 48210 -193.16.109.0/24 31545 -193.16.110.0/24 3213 -193.16.111.0/24 31557 -193.16.112.0/20 680 -193.16.128.0/20 21473 -193.16.145.0/24 31392 -193.16.146.0/24 31393 -193.16.147.0/24 31417 -193.16.148.0/24 48161 -193.16.150.0/24 5089 -193.16.152.0/24 44823 -193.16.153.0/24 31428 -193.16.154.0/24 8312 -193.16.155.0/24 8220 -193.16.157.0/24 197053 -193.16.158.0/24 31468 -193.16.159.0/24 47608 -193.16.160.0/21 42312 -193.16.168.0/21 16108 -193.16.176.0/21 16108 -193.16.186.0/23 41233 -193.16.188.0/22 41233 -193.16.192.0/22 60209 -193.16.196.0/24 60209 -193.16.208.0/23 30831 -193.16.210.0/24 30831 -193.16.211.0/24 29655 -193.16.213.0/24 35280 -193.16.216.0/24 30937 -193.16.217.0/24 9044 -193.16.218.0/24 5483 -193.16.220.0/24 30935 -193.16.221.0/24 35280 -193.16.224.0/23 200291 -193.16.232.0/24 208058 -193.16.233.0/24 20971 -193.16.234.0/24 28788 -193.16.235.0/24 3320 -193.16.236.0/24 35280 -193.16.237.0/24 31446 -193.16.239.0/24 35280 -193.16.240.0/24 31599 -193.16.241.0/24 8220 -193.16.242.0/24 206031 -193.16.243.0/24 31627 -193.16.244.0/24 31457 -193.16.245.0/24 15404 -193.16.246.0/24 29343 -193.16.247.0/24 42195 -193.16.255.0/24 41508 -193.17.0.0/24 29673 -193.17.1.0/24 57517 -193.17.3.0/24 207572 -193.17.5.0/24 209737 -193.17.6.0/24 203377 -193.17.7.0/24 209737 -193.17.8.0/22 31705 -193.17.12.0/24 12613 -193.17.13.0/24 5610 -193.17.14.0/24 199265 -193.17.15.0/24 207572 -193.17.16.0/24 20677 -193.17.18.0/24 12460 -193.17.19.0/24 60855 -193.17.20.0/24 207572 -193.17.21.0/24 8859 -193.17.22.0/24 680 -193.17.23.0/24 207572 -193.17.24.0/24 39142 -193.17.25.0/24 15415 -193.17.27.0/24 35242 -193.17.28.0/22 33846 -193.17.36.0/24 204648 -193.17.41.0/24 31080 -193.17.42.0/24 31092 -193.17.43.0/24 57298 -193.17.44.0/24 198488 -193.17.45.0/24 31086 -193.17.46.0/24 31091 -193.17.47.0/24 20701 -193.17.48.0/24 51964 -193.17.52.0/24 30869 -193.17.53.0/24 208336 -193.17.54.0/24 50231 -193.17.60.0/23 29308 -193.17.62.0/23 702 -193.17.66.0/24 15704 -193.17.67.0/24 1257 -193.17.68.0/24 8100 -193.17.70.0/24 49239 -193.17.71.0/24 31573 -193.17.72.0/24 1257 -193.17.73.0/24 31564 -193.17.74.0/24 31578 -193.17.75.0/24 31589 -193.17.76.0/24 15576 -193.17.79.0/24 20634 -193.17.80.0/22 209418 -193.17.84.0/24 31045 -193.17.85.0/24 29691 -193.17.99.0/24 200520 -193.17.108.0/22 61153 -193.17.116.0/22 15442 -193.17.120.0/21 35163 -193.17.170.0/24 30952 -193.17.171.0/24 8928 -193.17.172.0/24 31026 -193.17.173.0/24 30945 -193.17.174.0/24 42374 -193.17.175.0/24 29278 -193.17.178.0/24 8220 -193.17.180.0/22 202636 -193.17.184.0/24 198414 -193.17.185.0/24 286 -193.17.186.0/24 286 -193.17.187.0/24 5089 -193.17.188.0/22 29256 -193.17.192.0/24 34019 -193.17.194.0/24 50262 -193.17.195.0/24 34022 -193.17.196.0/24 197732 -193.17.197.0/24 25220 -193.17.199.0/24 199003 -193.17.200.0/24 198451 -193.17.201.0/24 15404 -193.17.202.0/24 2119 -193.17.203.0/24 34045 -193.17.204.0/24 34460 -193.17.206.0/24 16245 -193.17.207.0/24 8473 -193.17.208.0/24 34065 -193.17.209.0/24 13193 -193.17.210.0/24 25180 -193.17.211.0/24 34228 -193.17.212.0/24 34069 -193.17.213.0/24 34077 -193.17.214.0/24 29620 -193.17.216.0/24 34278 -193.17.217.0/24 34094 -193.17.218.0/24 35041 -193.17.219.0/24 42366 -193.17.221.0/24 34549 -193.17.222.0/24 24708 -193.17.223.0/24 20804 -193.17.225.0/24 210176 -193.17.226.0/24 34745 -193.17.227.0/24 41716 -193.17.229.0/24 12815 -193.17.230.0/24 34154 -193.17.232.0/21 680 -193.17.240.0/23 680 -193.17.242.0/23 49234 -193.17.244.0/22 49234 -193.17.248.0/22 12570 -193.17.252.0/24 31125 -193.18.60.0/23 1273 -193.18.62.0/23 6660 -193.18.86.0/23 1273 -193.18.92.0/23 1273 -193.18.190.0/23 6660 -193.18.224.0/19 1273 -193.19.64.0/23 200163 -193.19.66.0/23 30749 -193.19.68.0/22 30749 -193.19.73.0/24 60268 -193.19.74.0/23 30779 -193.19.76.0/23 30741 -193.19.78.0/23 42876 -193.19.80.0/23 51747 -193.19.82.0/23 30768 -193.19.84.0/23 30859 -193.19.86.0/23 30771 -193.19.88.0/23 30769 -193.19.90.0/23 32787 -193.19.92.0/23 3356 -193.19.94.0/23 3303 -193.19.96.0/23 60268 -193.19.100.0/23 206805 -193.19.102.0/23 30871 -193.19.104.0/23 12741 -193.19.106.0/24 26804 -193.19.108.0/23 35913 -193.19.112.0/23 38927 -193.19.114.0/23 31285 -193.19.116.0/23 44665 -193.19.118.0/23 44812 -193.19.120.0/23 34798 -193.19.122.0/23 43939 -193.19.124.0/23 196890 -193.19.126.0/23 30911 -193.19.132.0/22 31387 -193.19.136.0/22 49866 -193.19.140.0/22 5527 -193.19.146.0/24 50572 -193.19.148.0/22 202833 -193.19.152.0/22 29335 -193.19.160.0/22 8767 -193.19.164.0/22 35199 -193.19.168.0/22 57319 -193.19.172.0/22 44805 -193.19.176.0/22 44770 -193.19.180.0/22 24637 -193.19.188.0/22 48666 -193.19.192.0/22 30890 -193.19.196.0/23 21346 -193.19.204.0/22 12679 -193.19.208.0/22 48813 -193.19.212.0/22 29596 -193.19.216.0/22 8487 -193.19.220.0/22 44377 -193.19.224.0/23 30148 -193.19.228.0/22 25143 -193.19.236.0/22 21385 -193.19.240.0/22 48964 -193.19.244.0/22 25019 -193.20.64.0/22 24134 -193.21.248.0/23 32787 -193.21.250.0/24 32787 -193.21.251.0/24 9022 -193.21.252.0/22 32787 -193.22.0.0/24 29682 -193.22.1.0/24 205072 -193.22.2.0/24 28748 -193.22.3.0/24 8881 -193.22.4.0/24 3209 -193.22.7.0/24 30761 -193.22.8.0/22 3209 -193.22.16.0/22 20570 -193.22.24.0/22 196954 -193.22.28.0/24 197285 -193.22.29.0/24 3320 -193.22.31.0/24 30841 -193.22.32.0/20 680 -193.22.48.0/23 680 -193.22.64.0/20 680 -193.22.80.0/24 205072 -193.22.81.0/24 57249 -193.22.82.0/24 28981 -193.22.83.0/24 44033 -193.22.84.0/24 31593 -193.22.85.0/24 15939 -193.22.86.0/24 205072 -193.22.89.0/24 25180 -193.22.90.0/24 35114 -193.22.91.0/24 31604 -193.22.92.0/24 12670 -193.22.93.0/24 31606 -193.22.94.0/24 2116 -193.22.95.0/24 57132 -193.22.96.0/22 42331 -193.22.100.0/23 8422 -193.22.103.0/24 8866 -193.22.104.0/23 34798 -193.22.106.0/24 207695 -193.22.107.0/24 29679 -193.22.108.0/24 21227 -193.22.110.0/24 3320 -193.22.111.0/24 3209 -193.22.112.0/22 680 -193.22.119.0/24 29680 -193.22.120.0/21 8881 -193.22.132.0/22 39647 -193.22.136.0/23 3257 -193.22.138.0/24 3257 -193.22.140.0/24 31009 -193.22.141.0/24 207864 -193.22.142.0/24 30973 -193.22.143.0/24 30972 -193.22.145.0/24 203380 -193.22.148.0/22 204895 -193.22.152.0/24 40065 -193.22.156.0/24 24000 -193.22.157.0/24 25369 -193.22.158.0/24 35913 -193.22.159.0/24 30823 -193.22.162.0/24 13232 -193.22.164.0/24 204119 -193.22.165.0/24 31332 -193.22.166.0/24 20686 -193.22.167.0/24 3209 -193.22.168.0/24 21227 -193.22.169.0/24 34209 -193.22.170.0/24 21227 -193.22.171.0/24 41003 -193.22.172.0/24 39682 -193.22.173.0/24 8708 -193.22.174.0/24 3320 -193.22.175.0/24 31310 -193.22.180.0/22 8881 -193.22.205.0/24 3320 -193.22.224.0/22 210255 -193.22.228.0/22 50340 -193.22.232.0/22 204591 -193.22.236.0/23 210326 -193.22.240.0/23 15391 -193.22.242.0/24 50645 -193.22.244.0/24 52194 -193.22.245.0/24 20163 -193.22.246.0/23 15391 -193.22.248.0/24 31140 -193.22.249.0/24 41594 -193.22.250.0/24 57660 -193.22.251.0/24 24961 -193.22.252.0/24 39133 -193.22.253.0/24 31184 -193.22.254.0/24 31103 -193.22.255.0/24 45031 -193.23.2.0/24 12329 -193.23.3.0/24 207083 -193.23.4.0/22 51799 -193.23.16.0/22 60906 -193.23.20.0/22 210252 -193.23.24.0/24 1257 -193.23.28.0/24 62242 -193.23.29.0/24 35616 -193.23.30.0/24 20766 -193.23.31.0/24 48920 -193.23.33.0/24 8590 -193.23.38.0/24 8767 -193.23.43.0/24 24442 -193.23.49.0/24 31060 -193.23.50.0/24 44676 -193.23.51.0/24 31129 -193.23.53.0/24 31072 -193.23.54.0/24 33868 -193.23.55.0/24 44676 -193.23.56.0/24 8422 -193.23.57.0/24 50989 -193.23.58.0/24 31113 -193.23.59.0/24 31114 -193.23.60.0/24 47869 -193.23.61.0/24 31434 -193.23.62.0/24 31134 -193.23.63.0/24 12741 -193.23.64.0/19 12886 -193.23.96.0/24 206618 -193.23.112.0/24 25148 -193.23.113.0/24 39591 -193.23.114.0/24 31617 -193.23.115.0/24 5463 -193.23.116.0/24 31632 -193.23.117.0/24 29468 -193.23.118.0/24 47869 -193.23.119.0/24 12611 -193.23.120.0/24 31637 -193.23.121.0/24 15830 -193.23.122.0/24 34180 -193.23.123.0/24 47494 -193.23.124.0/24 14630 -193.23.125.0/24 47869 -193.23.126.0/23 197071 -193.23.132.0/24 41581 -193.23.133.0/24 47869 -193.23.134.0/24 9188 -193.23.136.0/24 48993 -193.23.137.0/24 15889 -193.23.138.0/23 51275 -193.23.140.0/24 204608 -193.23.142.0/24 48890 -193.23.143.0/24 48635 -193.23.148.0/22 12886 -193.23.152.0/22 15404 -193.23.156.0/24 51695 -193.23.157.0/24 30849 -193.23.159.0/24 16234 -193.23.160.0/23 197071 -193.23.163.0/24 8422 -193.23.164.0/23 51083 -193.23.167.0/24 12348 -193.23.168.0/22 680 -193.23.172.0/24 8473 -193.23.174.0/24 41421 -193.23.175.0/24 60030 -193.23.176.0/22 203015 -193.23.180.0/24 25019 -193.23.181.0/24 30860 -193.23.182.0/24 30905 -193.23.186.0/24 12888 -193.23.224.0/24 41000 -193.23.225.0/24 31062 -193.23.226.0/24 3209 -193.23.228.0/24 12552 -193.23.229.0/24 3292 -193.23.230.0/24 43701 -193.23.243.0/24 25115 -193.23.244.0/24 50472 -193.23.245.0/24 60781 -193.23.246.0/23 51083 -193.23.249.0/24 64249 -193.23.250.0/24 64249 -193.23.251.0/24 41998 -193.23.253.0/24 60781 -193.23.254.0/24 680 -193.24.0.0/23 209161 -193.24.2.0/24 12466 -193.24.3.0/24 21267 -193.24.4.0/23 209161 -193.24.6.0/24 21267 -193.24.7.0/24 3320 -193.24.8.0/24 39678 -193.24.12.0/24 12399 -193.24.13.0/24 21267 -193.24.14.0/24 50355 -193.24.15.0/24 30787 -193.24.16.0/21 8937 -193.24.24.0/24 42118 -193.24.25.0/24 31148 -193.24.27.0/24 15096 -193.24.28.0/24 21077 -193.24.29.0/24 24796 -193.24.30.0/24 31187 -193.24.31.0/24 21267 -193.24.32.0/22 8549 -193.24.36.0/24 202709 -193.24.37.0/24 12888 -193.24.44.0/24 29119 -193.24.48.0/20 43978 -193.24.64.0/24 29601 -193.24.65.0/24 6904 -193.24.66.0/24 7018 -193.24.67.0/24 29601 -193.24.68.0/24 2686 -193.24.70.0/23 29601 -193.24.72.0/21 3320 -193.24.80.0/21 680 -193.24.88.0/21 57437 -193.24.128.0/18 49234 -193.24.192.0/22 31424 -193.24.196.0/22 49811 -193.24.200.0/22 48157 -193.24.204.0/22 30851 -193.24.208.0/22 12586 -193.24.212.0/22 265747 -193.24.216.0/22 31049 -193.24.220.0/22 50803 -193.24.224.0/22 31054 -193.24.228.0/24 51547 -193.24.232.0/22 202998 -193.24.236.0/22 31276 -193.24.240.0/22 43205 -193.24.244.0/22 198036 -193.24.248.0/24 31095 -193.24.249.0/24 34059 -193.24.251.0/24 31095 -193.24.252.0/22 29551 -193.25.0.0/21 59686 -193.25.8.0/21 30745 -193.25.16.0/20 680 -193.25.32.0/20 680 -193.25.64.0/19 21207 -193.25.98.0/23 48943 -193.25.100.0/23 41108 -193.25.102.0/23 15600 -193.25.104.0/23 36791 -193.25.106.0/23 208019 -193.25.108.0/23 208019 -193.25.110.0/23 33823 -193.25.112.0/23 31244 -193.25.114.0/23 45031 -193.25.116.0/23 29626 -193.25.118.0/23 35244 -193.25.120.0/23 51214 -193.25.124.0/23 31274 -193.25.126.0/23 51747 -193.25.160.0/23 21169 -193.25.162.0/23 31369 -193.25.164.0/23 31413 -193.25.170.0/23 24940 -193.25.173.0/24 60295 -193.25.176.0/23 31173 -193.25.178.0/23 28929 -193.25.182.0/23 205505 -193.25.184.0/23 31181 -193.25.186.0/23 13984 -193.25.190.0/24 39323 -193.25.191.0/24 48853 -193.25.192.0/24 31164 -193.25.193.0/24 210220 -193.25.194.0/24 202709 -193.25.195.0/24 31235 -193.25.196.0/24 202709 -193.25.197.0/24 31178 -193.25.198.0/24 39905 -193.25.199.0/24 8437 -193.25.203.0/24 207578 -193.25.207.0/24 26556 -193.25.208.0/23 3320 -193.25.212.0/23 42312 -193.25.214.0/23 25369 -193.25.220.0/24 51577 -193.25.221.0/24 30911 -193.25.222.0/24 196890 -193.25.223.0/24 202709 -193.25.224.0/20 15550 -193.25.240.0/22 3209 -193.25.244.0/23 3209 -193.25.247.0/24 3209 -193.25.248.0/22 49290 -193.25.252.0/23 25369 -193.25.254.0/24 3209 -193.25.255.0/24 202709 -193.26.0.0/24 202709 -193.26.1.0/24 3265 -193.26.2.0/24 202709 -193.26.3.0/24 15386 -193.26.4.0/24 29500 -193.26.6.0/24 3301 -193.26.7.0/24 33946 -193.26.8.0/24 44825 -193.26.9.0/24 15830 -193.26.10.0/24 33961 -193.26.11.0/24 15543 -193.26.12.0/24 202709 -193.26.13.0/24 56354 -193.26.14.0/24 51269 -193.26.15.0/24 8422 -193.26.16.0/24 49336 -193.26.17.0/24 33907 -193.26.18.0/24 12722 -193.26.19.0/24 61306 -193.26.20.0/24 209977 -193.26.21.0/24 51269 -193.26.22.0/24 51269 -193.26.23.0/24 60610 -193.26.24.0/24 12586 -193.26.25.0/24 33996 -193.26.26.0/24 34024 -193.26.27.0/24 12986 -193.26.28.0/24 12859 -193.26.29.0/24 3215 -193.26.30.0/24 12552 -193.26.31.0/24 8294 -193.26.32.0/23 16084 -193.26.34.0/23 1273 -193.26.36.0/22 16084 -193.26.40.0/21 16084 -193.26.48.0/20 16084 -193.26.96.0/20 39218 -193.26.112.0/23 54103 -193.26.114.0/23 46261 -193.26.120.0/24 206813 -193.26.121.0/24 51269 -193.26.122.0/24 47145 -193.26.123.0/24 43341 -193.26.124.0/24 3320 -193.26.125.0/24 16024 -193.26.126.0/24 21150 -193.26.128.0/24 31121 -193.26.129.0/24 31278 -193.26.130.0/24 6730 -193.26.131.0/24 39816 -193.26.134.0/24 31193 -193.26.135.0/24 31192 -193.26.136.0/21 8767 -193.26.148.0/22 200738 -193.26.152.0/22 201942 -193.26.192.0/21 15404 -193.26.200.0/22 15404 -193.26.204.0/23 15404 -193.26.206.0/24 8220 -193.26.207.0/24 15404 -193.26.210.0/23 35437 -193.26.212.0/23 35437 -193.26.214.0/24 43726 -193.26.216.0/24 33853 -193.26.217.0/24 42632 -193.26.218.0/24 8220 -193.26.220.0/24 56651 -193.26.221.0/24 29518 -193.26.222.0/24 31708 -193.26.224.0/20 21413 -193.26.240.0/22 8881 -193.26.244.0/23 8881 -193.26.246.0/23 15404 -193.26.248.0/21 15404 -193.27.1.0/24 35262 -193.27.2.0/23 42525 -193.27.6.0/24 30816 -193.27.7.0/24 57900 -193.27.10.0/24 60781 -193.27.11.0/24 31401 -193.27.18.0/24 8767 -193.27.19.0/24 60781 -193.27.20.0/24 202577 -193.27.21.0/24 60781 -193.27.22.0/24 3209 -193.27.23.0/24 60781 -193.27.24.0/22 205620 -193.27.28.0/22 12874 -193.27.32.0/22 31641 -193.27.36.0/23 47528 -193.27.40.0/24 48943 -193.27.41.0/24 31370 -193.27.43.0/24 9044 -193.27.44.0/24 60111 -193.27.45.0/24 50304 -193.27.46.0/24 50179 -193.27.48.0/21 15451 -193.27.56.0/21 3320 -193.27.66.0/23 197334 -193.27.68.0/23 50778 -193.27.70.0/23 31038 -193.27.72.0/23 60781 -193.27.78.0/23 31216 -193.27.80.0/23 31061 -193.27.82.0/23 15694 -193.27.84.0/23 31676 -193.27.86.0/23 30870 -193.27.88.0/23 31595 -193.27.92.0/23 31162 -193.27.94.0/23 57660 -193.27.96.0/19 8422 -193.27.128.0/18 60997 -193.27.192.0/23 35100 -193.27.195.0/24 12472 -193.27.196.0/23 57493 -193.27.198.0/23 206852 -193.27.200.0/23 30880 -193.27.202.0/23 13160 -193.27.204.0/23 21123 -193.27.208.0/23 30886 -193.27.210.0/23 50231 -193.27.212.0/23 60648 -193.27.214.0/23 3267 -193.27.218.0/23 204631 -193.27.220.0/23 30915 -193.27.222.0/23 30928 -193.27.225.0/24 64429 -193.27.232.0/23 202987 -193.27.234.0/24 202987 -193.27.236.0/22 30960 -193.27.240.0/23 30960 -193.27.242.0/23 28761 -193.27.244.0/23 31439 -193.27.246.0/23 206189 -193.27.248.0/23 206189 -193.27.252.0/23 197509 -193.27.254.0/23 12552 -193.28.0.0/24 30730 -193.28.1.0/24 50304 -193.28.4.0/24 50304 -193.28.5.0/24 34953 -193.28.7.0/24 50304 -193.28.8.0/24 29405 -193.28.9.0/24 25019 -193.28.10.0/24 25019 -193.28.12.0/24 48943 -193.28.13.0/24 203507 -193.28.15.0/24 3320 -193.28.16.0/20 6805 -193.28.34.0/23 3320 -193.28.36.0/22 202454 -193.28.40.0/23 15763 -193.28.44.0/24 31174 -193.28.45.0/24 31048 -193.28.46.0/24 58020 -193.28.47.0/24 3304 -193.28.48.0/23 3320 -193.28.50.0/24 3320 -193.28.52.0/23 9211 -193.28.56.0/24 3320 -193.28.61.0/24 202946 -193.28.64.0/24 3320 -193.28.71.0/24 15404 -193.28.72.0/22 8881 -193.28.76.0/23 8881 -193.28.78.0/23 51401 -193.28.80.0/24 3209 -193.28.82.0/24 8220 -193.28.84.0/24 49242 -193.28.86.0/24 47381 -193.28.87.0/24 31347 -193.28.88.0/24 198710 -193.28.89.0/24 29422 -193.28.91.0/24 50920 -193.28.92.0/24 31360 -193.28.94.0/24 44138 -193.28.95.0/24 5602 -193.28.96.0/21 28918 -193.28.130.0/23 62434 -193.28.132.0/24 62434 -193.28.146.0/24 31711 -193.28.147.0/24 41746 -193.28.149.0/24 31709 -193.28.150.0/24 8319 -193.28.151.0/24 31710 -193.28.152.0/24 15703 -193.28.153.0/24 34764 -193.28.154.0/24 197591 -193.28.155.0/24 43842 -193.28.158.0/24 31729 -193.28.159.0/24 14537 -193.28.162.0/23 41086 -193.28.167.0/24 41086 -193.28.169.0/24 41086 -193.28.172.0/23 41086 -193.28.174.0/24 41086 -193.28.177.0/24 2601 -193.28.180.0/24 31735 -193.28.181.0/24 16018 -193.28.182.0/24 26484 -193.28.184.0/24 33817 -193.28.185.0/24 34182 -193.28.186.0/24 33851 -193.28.187.0/24 33826 -193.28.188.0/24 31424 -193.28.189.0/24 49989 -193.28.190.0/24 33913 -193.28.191.0/24 26484 -193.28.192.0/21 24786 -193.28.200.0/24 31206 -193.28.202.0/24 137443 -193.28.204.0/24 35646 -193.28.205.0/24 21000 -193.28.207.0/24 3320 -193.28.208.0/22 15415 -193.28.212.0/22 48290 -193.28.216.0/22 206339 -193.28.224.0/24 3308 -193.28.225.0/24 6707 -193.28.227.0/24 3308 -193.28.228.0/24 34568 -193.28.229.0/24 50920 -193.28.230.0/24 42194 -193.28.231.0/24 41075 -193.28.232.0/24 2856 -193.28.233.0/24 42845 -193.28.234.0/24 31462 -193.28.235.0/24 31375 -193.28.236.0/24 30950 -193.28.237.0/24 137443 -193.28.238.0/24 30825 -193.28.240.0/23 3320 -193.28.249.0/24 8220 -193.28.250.0/24 31014 -193.28.251.0/24 12586 -193.28.254.0/24 31081 -193.28.255.0/24 207858 -193.29.1.0/24 207858 -193.29.2.0/24 34125 -193.29.3.0/24 2830 -193.29.4.0/24 207858 -193.29.5.0/24 51964 -193.29.8.0/24 207858 -193.29.9.0/24 3320 -193.29.12.0/24 41181 -193.29.13.0/24 42397 -193.29.14.0/24 34549 -193.29.15.0/24 42397 -193.29.16.0/24 44952 -193.29.19.0/24 59656 -193.29.22.0/23 3209 -193.29.25.0/24 15987 -193.29.28.0/23 43668 -193.29.30.0/23 43743 -193.29.32.0/22 39264 -193.29.38.0/24 50246 -193.29.39.0/24 30775 -193.29.43.0/24 8220 -193.29.44.0/22 209386 -193.29.48.0/24 202133 -193.29.49.0/24 12594 -193.29.51.0/24 31315 -193.29.52.0/24 15580 -193.29.53.0/24 35104 -193.29.54.0/24 8422 -193.29.55.0/24 28820 -193.29.56.0/22 31400 -193.29.60.0/23 203380 -193.29.62.0/23 63473 -193.29.64.0/19 12625 -193.29.96.0/22 34549 -193.29.108.0/24 395800 -193.29.115.0/24 3209 -193.29.116.0/24 3209 -193.29.132.0/24 35242 -193.29.139.0/24 47172 -193.29.152.0/21 3320 -193.29.184.0/23 208080 -193.29.186.0/24 28918 -193.29.187.0/24 51177 -193.29.188.0/24 29670 -193.29.189.0/24 61317 -193.29.190.0/23 208080 -193.29.192.0/21 20570 -193.29.200.0/24 197203 -193.29.201.0/24 205206 -193.29.202.0/24 31249 -193.29.203.0/24 31247 -193.29.204.0/24 21096 -193.29.206.0/24 25192 -193.29.207.0/24 201434 -193.29.220.0/24 29067 -193.29.222.0/24 60112 -193.29.223.0/24 12703 -193.29.226.0/23 20676 -193.29.228.0/24 20810 -193.29.232.0/22 8881 -193.29.236.0/23 8881 -193.29.238.0/24 8881 -193.29.239.0/24 174 -193.29.243.0/24 8881 -193.29.246.0/24 8881 -193.29.248.0/23 28997 -193.29.250.0/24 25394 -193.29.251.0/24 42831 -193.29.254.0/24 14037 -193.29.255.0/24 43803 -193.30.0.0/24 200163 -193.30.1.0/24 14037 -193.30.2.0/24 14037 -193.30.3.0/24 680 -193.30.5.0/24 14037 -193.30.6.0/23 28997 -193.30.8.0/22 205645 -193.30.12.0/22 203991 -193.30.16.0/23 199294 -193.30.18.0/24 8450 -193.30.20.0/24 204636 -193.30.24.0/24 21188 -193.30.28.0/24 58114 -193.30.29.0/24 34788 -193.30.32.0/23 42198 -193.30.34.0/23 49004 -193.30.36.0/23 8767 -193.30.38.0/24 8767 -193.30.39.0/24 30920 -193.30.41.0/24 30931 -193.30.42.0/24 31396 -193.30.44.0/22 3209 -193.30.48.0/20 3209 -193.30.64.0/21 9066 -193.30.72.0/22 9066 -193.30.76.0/23 9145 -193.30.78.0/23 9066 -193.30.93.0/24 3209 -193.30.96.0/22 201107 -193.30.100.0/24 20473 -193.30.104.0/23 21413 -193.30.106.0/24 21413 -193.30.110.0/24 39641 -193.30.111.0/24 52075 -193.30.112.0/24 680 -193.30.120.0/22 197540 -193.30.124.0/23 47806 -193.30.128.0/24 47806 -193.30.131.0/24 3320 -193.30.132.0/24 8881 -193.30.133.0/24 12337 -193.30.135.0/24 702 -193.30.136.0/22 3320 -193.30.140.0/24 15404 -193.30.141.0/24 30907 -193.30.143.0/24 47112 -193.30.160.0/24 31280 -193.30.161.0/24 8100 -193.30.163.0/24 49808 -193.30.164.0/24 8990 -193.30.170.0/24 28878 -193.30.192.0/19 3320 -193.30.224.0/22 29608 -193.30.228.0/22 31011 -193.30.232.0/22 31003 -193.30.236.0/22 41706 -193.30.240.0/23 31016 -193.30.242.0/23 62206 -193.30.244.0/24 43815 -193.30.245.0/24 39222 -193.30.246.0/23 31069 -193.30.248.0/22 39377 -193.30.252.0/24 59638 -193.30.253.0/24 59646 -193.30.254.0/24 209686 -193.31.1.0/24 3320 -193.31.2.0/24 13247 -193.31.3.0/24 15943 -193.31.4.0/23 49505 -193.31.6.0/24 209605 -193.31.7.0/24 8481 -193.31.8.0/23 34460 -193.31.14.0/24 62156 -193.31.15.0/24 43260 -193.31.16.0/24 12301 -193.31.18.0/24 39702 -193.31.20.0/22 207253 -193.31.24.0/22 197540 -193.31.28.0/22 46261 -193.31.32.0/22 18530 -193.31.36.0/22 200738 -193.31.40.0/24 61317 -193.31.41.0/24 133398 -193.31.42.0/23 61317 -193.31.44.0/22 207253 -193.31.48.0/22 43747 -193.31.60.0/24 43260 -193.31.61.0/24 201809 -193.31.62.0/24 43260 -193.31.63.0/24 8881 -193.31.64.0/22 203649 -193.31.68.0/22 62412 -193.31.72.0/22 9009 -193.31.76.0/22 210246 -193.31.96.0/22 42947 -193.31.100.0/22 49505 -193.31.104.0/22 206582 -193.31.112.0/22 46261 -193.31.116.0/22 42926 -193.31.120.0/22 201341 -193.31.124.0/22 9009 -193.31.128.0/19 3320 -193.31.160.0/19 16313 -193.31.192.0/21 48320 -193.31.200.0/21 61367 -193.31.208.0/21 14537 -193.31.216.0/22 14537 -193.31.220.0/24 14537 -193.31.221.0/24 206174 -193.31.222.0/23 14537 -193.31.240.0/21 16097 -193.31.248.0/23 3257 -193.31.252.0/23 29500 -193.31.254.0/24 12301 -193.32.0.0/23 42459 -193.32.2.0/24 398083 -193.32.4.0/23 42459 -193.32.6.0/23 5089 -193.32.8.0/24 64249 -193.32.12.0/22 50204 -193.32.16.0/24 64249 -193.32.18.0/24 25460 -193.32.19.0/24 199850 -193.32.20.0/24 41787 -193.32.21.0/24 34142 -193.32.22.0/24 786 -193.32.23.0/24 64249 -193.32.30.0/24 45008 -193.32.31.0/24 6307 -193.32.34.0/24 6307 -193.32.36.0/24 43073 -193.32.37.0/24 41004 -193.32.38.0/24 43079 -193.32.39.0/24 2856 -193.32.46.0/24 2856 -193.32.47.0/24 199555 -193.32.48.0/24 2856 -193.32.49.0/24 199555 -193.32.50.0/24 199034 -193.32.51.0/24 12577 -193.32.53.0/24 59487 -193.32.55.0/24 59490 -193.32.56.0/24 25248 -193.32.58.0/24 41496 -193.32.60.0/22 8484 -193.32.64.0/24 34953 -193.32.65.0/24 199041 -193.32.66.0/23 51490 -193.32.68.0/24 205127 -193.32.70.0/23 205127 -193.32.72.0/21 42947 -193.32.80.0/23 49100 -193.32.96.0/22 9009 -193.32.101.0/24 12696 -193.32.126.0/23 39351 -193.32.128.0/22 57395 -193.32.132.0/22 41729 -193.32.136.0/22 209820 -193.32.140.0/22 34714 -193.32.148.0/22 4785 -193.32.152.0/22 62415 -193.32.156.0/22 209803 -193.32.160.0/23 42397 -193.32.162.0/24 35478 -193.32.163.0/24 201912 -193.32.164.0/22 12695 -193.32.168.0/22 209754 -193.32.172.0/22 201341 -193.32.176.0/24 209357 -193.32.177.0/24 52125 -193.32.178.0/23 52125 -193.32.180.0/22 57608 -193.32.188.0/24 3175 -193.32.189.0/24 50308 -193.32.190.0/24 34665 -193.32.191.0/24 12722 -193.32.192.0/22 41952 -193.32.196.0/22 41535 -193.32.202.0/24 60731 -193.32.203.0/24 198580 -193.32.208.0/22 207083 -193.32.212.0/22 206318 -193.32.220.0/22 31400 -193.32.224.0/24 208187 -193.32.228.0/23 210245 -193.32.230.0/24 210245 -193.32.232.0/22 62292 -193.32.236.0/22 210225 -193.32.240.0/22 41705 -193.32.246.0/24 133664 -193.32.254.0/24 2856 -193.32.255.0/24 41367 -193.33.0.0/23 42832 -193.33.2.0/23 42211 -193.33.6.0/23 209535 -193.33.8.0/23 51373 -193.33.10.0/23 39055 -193.33.12.0/23 8218 -193.33.16.0/24 42243 -193.33.18.0/23 42665 -193.33.20.0/23 31100 -193.33.22.0/23 49580 -193.33.24.0/23 42264 -193.33.26.0/23 8369 -193.33.30.0/23 203882 -193.33.32.0/23 35577 -193.33.34.0/23 15694 -193.33.36.0/23 12807 -193.33.38.0/23 204288 -193.33.40.0/23 209492 -193.33.42.0/23 5588 -193.33.44.0/23 42327 -193.33.46.0/23 41765 -193.33.54.0/23 42379 -193.33.56.0/23 51083 -193.33.60.0/23 62370 -193.33.62.0/23 13056 -193.33.64.0/23 42372 -193.33.66.0/23 49392 -193.33.68.0/23 51592 -193.33.70.0/23 41095 -193.33.72.0/23 8190 -193.33.74.0/23 51245 -193.33.76.0/23 6908 -193.33.78.0/23 42392 -193.33.80.0/23 42393 -193.33.82.0/23 42608 -193.33.84.0/23 42394 -193.33.87.0/24 42632 -193.33.88.0/23 15428 -193.33.90.0/23 42404 -193.33.92.0/23 42424 -193.33.94.0/23 208913 -193.33.98.0/23 34650 -193.33.100.0/23 42574 -193.33.102.0/23 57163 -193.33.104.0/23 42434 -193.33.108.0/23 9009 -193.33.110.0/23 41508 -193.33.114.0/23 42473 -193.33.116.0/23 59455 -193.33.118.0/23 42336 -193.33.122.0/23 42554 -193.33.126.0/23 197353 -193.33.128.0/23 35206 -193.33.130.0/23 49945 -193.33.132.0/23 25490 -193.33.134.0/23 42707 -193.33.136.0/23 49945 -193.33.138.0/23 43948 -193.33.140.0/24 39392 -193.33.142.0/23 6730 -193.33.144.0/23 39264 -193.33.146.0/23 50972 -193.33.148.0/23 31027 -193.33.150.0/23 42729 -193.33.154.0/23 42712 -193.33.157.0/24 42733 -193.33.160.0/23 42740 -193.33.164.0/23 207983 -193.33.166.0/24 198755 -193.33.168.0/23 35344 -193.33.170.0/23 42775 -193.33.172.0/23 57171 -193.33.174.0/23 42763 -193.33.176.0/23 20853 -193.33.178.0/23 41000 -193.33.180.0/23 28878 -193.33.182.0/23 8220 -193.33.184.0/23 42787 -193.33.186.0/23 52148 -193.33.190.0/23 42789 -193.33.192.0/23 48343 -193.33.194.0/23 50619 -193.33.196.0/23 42799 -193.33.198.0/23 50300 -193.33.200.0/23 42800 -193.33.202.0/23 42802 -193.33.204.0/23 207983 -193.33.206.0/23 56321 -193.33.210.0/23 42858 -193.33.212.0/23 61316 -193.33.216.0/23 39878 -193.33.218.0/23 39369 -193.33.220.0/23 25151 -193.33.222.0/23 42929 -193.33.224.0/23 16060 -193.33.226.0/23 42920 -193.33.228.0/23 14537 -193.33.230.0/23 43038 -193.33.232.0/23 42897 -193.33.234.0/23 34852 -193.33.236.0/23 48004 -193.33.238.0/23 44468 -193.33.240.0/23 42922 -193.33.244.0/24 2856 -193.33.245.0/24 15404 -193.33.246.0/23 3301 -193.33.248.0/23 25180 -193.33.250.0/23 42939 -193.33.254.0/23 42958 -193.34.0.0/22 41865 -193.34.4.0/22 49685 -193.34.8.0/23 41854 -193.34.10.0/24 41854 -193.34.11.0/24 56420 -193.34.12.0/22 41855 -193.34.16.0/22 30781 -193.34.20.0/22 30779 -193.34.24.0/22 31078 -193.34.28.0/22 51871 -193.34.32.0/22 174 -193.34.40.0/22 1759 -193.34.44.0/22 199201 -193.34.48.0/24 251 -193.34.49.0/24 43350 -193.34.50.0/24 43350 -193.34.52.0/22 48626 -193.34.56.0/22 41923 -193.34.60.0/22 21131 -193.34.64.0/22 12301 -193.34.68.0/22 44592 -193.34.76.0/24 205212 -193.34.77.0/24 46841 -193.34.78.0/24 9178 -193.34.79.0/24 137443 -193.34.84.0/22 44246 -193.34.88.0/22 28747 -193.34.92.0/22 41967 -193.34.96.0/22 41987 -193.34.100.0/22 41926 -193.34.104.0/22 15389 -193.34.108.0/22 41984 -193.34.112.0/22 13000 -193.34.116.0/22 44180 -193.34.120.0/22 12732 -193.34.124.0/22 29363 -193.34.128.0/23 41914 -193.34.130.0/23 8218 -193.34.132.0/23 34755 -193.34.134.0/24 20473 -193.34.136.0/23 43800 -193.34.138.0/23 199510 -193.34.140.0/23 39862 -193.34.142.0/23 8270 -193.34.144.0/23 51167 -193.34.148.0/23 34243 -193.34.150.0/23 8315 -193.34.152.0/23 41992 -193.34.154.0/23 41781 -193.34.156.0/23 39569 -193.34.158.0/23 34844 -193.34.160.0/23 41794 -193.34.162.0/23 41796 -193.34.164.0/23 41826 -193.34.166.0/23 62370 -193.34.168.0/23 43896 -193.34.170.0/23 41847 -193.34.172.0/23 41820 -193.34.174.0/23 203574 -193.34.178.0/23 199265 -193.34.180.0/23 36791 -193.34.182.0/23 41858 -193.34.184.0/23 41771 -193.34.186.0/23 51055 -193.34.188.0/23 12786 -193.34.190.0/24 49880 -193.34.191.0/24 3167 -193.34.198.0/24 5511 -193.34.202.0/24 50986 -193.34.204.0/24 39041 -193.34.205.0/24 56650 -193.34.206.0/24 1764 -193.34.207.0/24 3209 -193.34.208.0/22 43670 -193.34.212.0/22 201814 -193.34.216.0/22 50856 -193.34.220.0/22 50231 -193.34.230.0/23 8435 -193.34.232.0/23 13213 -193.34.234.0/24 202402 -193.34.235.0/24 49452 -193.34.236.0/22 201116 -193.34.240.0/22 202766 -193.34.244.0/23 49099 -193.34.246.0/24 49099 -193.34.248.0/21 28846 -193.35.4.0/22 12874 -193.35.8.0/22 28846 -193.35.12.0/23 28846 -193.35.14.0/23 200738 -193.35.20.0/22 44213 -193.35.25.0/24 41684 -193.35.26.0/23 200738 -193.35.28.0/23 57022 -193.35.30.0/24 57022 -193.35.32.0/22 59404 -193.35.36.0/24 198937 -193.35.37.0/24 199027 -193.35.38.0/23 59423 -193.35.40.0/24 198938 -193.35.41.0/24 58334 -193.35.42.0/23 59418 -193.35.44.0/23 8827 -193.35.46.0/24 198941 -193.35.47.0/24 33807 -193.35.48.0/22 202984 -193.35.52.0/22 58302 -193.35.56.0/22 60945 -193.35.60.0/24 198979 -193.35.62.0/24 58333 -193.35.84.0/22 206841 -193.35.88.0/22 201942 -193.35.92.0/22 210306 -193.35.99.0/24 198029 -193.35.100.0/24 198062 -193.35.102.0/23 197694 -193.35.104.0/22 197694 -193.35.108.0/24 57299 -193.35.109.0/24 57303 -193.35.110.0/24 201814 -193.35.111.0/24 5603 -193.35.112.0/24 3356 -193.35.117.0/24 3549 -193.35.118.0/23 3356 -193.35.124.0/23 3549 -193.35.126.0/23 3356 -193.35.128.0/20 12576 -193.35.144.0/24 33967 -193.35.148.0/22 43997 -193.35.152.0/23 60721 -193.35.154.0/23 209737 -193.35.157.0/24 198047 -193.35.158.0/23 2856 -193.35.160.0/23 2856 -193.35.197.0/24 2856 -193.35.198.0/23 15743 -193.35.200.0/22 209154 -193.35.212.0/24 201066 -193.35.214.0/23 201066 -193.35.216.0/24 8405 -193.35.217.0/24 8468 -193.35.218.0/23 15743 -193.35.220.0/22 2856 -193.35.232.0/21 44403 -193.35.240.0/22 5413 -193.35.244.0/23 1273 -193.35.248.0/21 25421 -193.36.0.0/24 41686 -193.36.1.0/24 60538 -193.36.3.0/24 8405 -193.36.8.0/21 6908 -193.36.16.0/20 44008 -193.36.32.0/24 559 -193.36.35.0/24 48933 -193.36.36.0/24 6830 -193.36.37.0/24 49023 -193.36.38.0/24 48988 -193.36.39.0/24 34755 -193.36.40.0/24 49015 -193.36.41.0/24 49003 -193.36.42.0/24 8405 -193.36.43.0/24 39122 -193.36.44.0/24 208913 -193.36.45.0/24 35717 -193.36.46.0/24 48200 -193.36.47.0/24 3313 -193.36.51.0/24 5089 -193.36.52.0/22 34659 -193.36.56.0/22 34665 -193.36.60.0/23 210107 -193.36.62.0/23 29262 -193.36.64.0/21 2147 -193.36.72.0/23 23338 -193.36.74.0/24 8405 -193.36.76.0/24 201814 -193.36.77.0/24 12572 -193.36.78.0/23 12576 -193.36.80.0/22 12576 -193.36.84.0/23 23338 -193.36.86.0/24 201814 -193.36.96.0/22 29119 -193.36.100.0/22 210044 -193.36.104.0/23 210036 -193.36.108.0/23 201127 -193.36.110.0/23 39719 -193.36.112.0/22 132839 -193.36.116.0/22 206804 -193.36.120.0/22 15372 -193.36.124.0/22 9009 -193.36.128.0/22 16082 -193.36.132.0/24 201814 -193.36.134.0/23 34450 -193.36.136.0/21 702 -193.36.144.0/22 201466 -193.36.148.0/22 8896 -193.36.162.0/23 34450 -193.36.164.0/22 42707 -193.36.168.0/23 56984 -193.36.170.0/24 56984 -193.36.172.0/24 201814 -193.36.176.0/24 41924 -193.36.177.0/24 41960 -193.36.178.0/24 49193 -193.36.179.0/24 57844 -193.36.182.0/24 42929 -193.36.184.0/24 34398 -193.36.185.0/24 57844 -193.36.186.0/24 31477 -193.36.187.0/24 57844 -193.36.188.0/24 57190 -193.36.189.0/24 61201 -193.36.190.0/24 41708 -193.36.191.0/24 13243 -193.36.192.0/21 48266 -193.36.200.0/21 199429 -193.36.208.0/20 203785 -193.36.224.0/24 8100 -193.36.225.0/24 395954 -193.36.226.0/24 8437 -193.36.227.0/24 57844 -193.36.228.0/24 49392 -193.36.229.0/24 48522 -193.36.230.0/24 2830 -193.36.231.0/24 49392 -193.36.236.0/22 35913 -193.36.240.0/24 2856 -193.36.241.0/24 15404 -193.36.242.0/24 8220 -193.36.243.0/24 2856 -193.36.251.0/24 3561 -193.36.252.0/24 3561 -193.36.253.0/24 2856 -193.36.254.0/24 15404 -193.37.32.0/24 206092 -193.37.33.0/24 59253 -193.37.34.0/24 49392 -193.37.35.0/24 47264 -193.37.37.0/24 39915 -193.37.40.0/22 43659 -193.37.48.0/22 12695 -193.37.52.0/22 48095 -193.37.56.0/22 9009 -193.37.60.0/22 206366 -193.37.64.0/22 202636 -193.37.68.0/24 206873 -193.37.69.0/24 20803 -193.37.70.0/23 206873 -193.37.72.0/22 20860 -193.37.80.0/22 12658 -193.37.84.0/23 3352 -193.37.86.0/23 29119 -193.37.88.0/22 30560 -193.37.92.0/23 30560 -193.37.108.0/22 47179 -193.37.128.0/23 41714 -193.37.130.0/24 41714 -193.37.131.0/24 3209 -193.37.133.0/24 49392 -193.37.134.0/24 52052 -193.37.135.0/24 41735 -193.37.136.0/24 208913 -193.37.137.0/24 41217 -193.37.138.0/24 39306 -193.37.140.0/24 49761 -193.37.141.0/24 41762 -193.37.142.0/24 2856 -193.37.143.0/24 42182 -193.37.145.0/24 16347 -193.37.146.0/24 44521 -193.37.147.0/24 41766 -193.37.148.0/24 3320 -193.37.149.0/24 198333 -193.37.150.0/24 41765 -193.37.151.0/24 8489 -193.37.152.0/24 51167 -193.37.153.0/24 41345 -193.37.154.0/24 41755 -193.37.155.0/24 52052 -193.37.156.0/24 34814 -193.37.157.0/24 42024 -193.37.158.0/24 41527 -193.37.159.0/24 41768 -193.37.160.0/24 13205 -193.37.179.0/24 10753 -193.37.180.0/23 10753 -193.37.185.0/24 10753 -193.37.186.0/24 10753 -193.37.192.0/22 210037 -193.37.196.0/22 208485 -193.37.204.0/22 20559 -193.37.208.0/22 8468 -193.37.212.0/22 44901 -193.37.216.0/22 203929 -193.37.220.0/22 4686 -193.37.224.0/24 52052 -193.37.225.0/24 786 -193.37.229.0/24 52052 -193.37.232.0/24 56647 -193.37.235.0/24 56647 -193.37.237.0/24 42479 -193.37.238.0/24 39251 -193.37.240.0/21 786 -193.37.252.0/22 9009 -193.38.0.0/24 200832 -193.38.1.0/24 204015 -193.38.2.0/23 200587 -193.38.4.0/23 200587 -193.38.6.0/24 207090 -193.38.7.0/24 200587 -193.38.8.0/21 158 -193.38.16.0/20 158 -193.38.32.0/22 210197 -193.38.40.0/22 210183 -193.38.48.0/24 198199 -193.38.50.0/23 49392 -193.38.54.0/23 49392 -193.38.60.0/23 48397 -193.38.64.0/18 5089 -193.38.128.0/22 41628 -193.38.136.0/22 9009 -193.38.143.0/24 786 -193.38.144.0/22 29119 -193.38.156.0/22 47447 -193.38.168.0/23 5400 -193.38.171.0/24 2386 -193.38.176.0/23 5400 -193.38.178.0/23 3300 -193.38.180.0/23 3300 -193.38.183.0/24 7474 -193.38.192.0/19 2856 -193.38.228.0/22 9009 -193.38.232.0/23 59504 -193.38.234.0/23 208861 -193.38.240.0/22 48095 -193.38.248.0/24 34962 -193.38.249.0/24 46573 -193.38.250.0/24 9381 -193.38.251.0/24 57844 -193.39.4.0/23 62364 -193.39.8.0/24 29527 -193.39.12.0/22 62214 -193.39.16.0/20 60788 -193.39.32.0/19 5089 -193.39.66.0/24 41772 -193.39.69.0/24 41791 -193.39.71.0/24 41796 -193.39.72.0/24 41875 -193.39.74.0/24 30962 -193.39.75.0/24 41834 -193.39.76.0/23 41834 -193.39.80.0/21 786 -193.39.88.0/22 48095 -193.39.92.0/22 203936 -193.39.96.0/22 8689 -193.39.112.0/24 3257 -193.39.115.0/24 41814 -193.39.116.0/24 57487 -193.39.117.0/24 41832 -193.39.118.0/24 41867 -193.39.119.0/24 208913 -193.39.136.0/24 2856 -193.39.139.0/24 3292 -193.39.140.0/24 8586 -193.39.141.0/24 2856 -193.39.142.0/23 45671 -193.39.144.0/20 56595 -193.39.160.0/22 200754 -193.39.164.0/22 198682 -193.39.168.0/24 24961 -193.39.169.0/24 8100 -193.39.170.0/24 35029 -193.39.171.0/24 46573 -193.39.172.0/22 786 -193.39.182.0/23 5089 -193.39.184.0/23 64236 -193.39.186.0/24 64236 -193.39.187.0/24 40676 -193.39.188.0/22 204860 -193.39.196.0/22 48264 -193.39.200.0/23 3320 -193.39.202.0/23 6900 -193.39.204.0/23 15943 -193.39.208.0/23 45671 -193.39.210.0/23 29037 -193.39.212.0/24 786 -193.39.214.0/24 29037 -193.39.215.0/24 396164 -193.39.216.0/22 201435 -193.39.220.0/22 202765 -193.39.240.0/22 62416 -193.39.244.0/23 45671 -193.39.246.0/24 396164 -193.39.248.0/24 41845 -193.39.249.0/24 43410 -193.39.250.0/24 7922 -193.39.252.0/22 61323 -193.40.0.0/17 3221 -193.40.128.0/18 3221 -193.40.192.0/23 3221 -193.40.194.0/24 3221 -193.40.195.0/24 3332 -193.40.196.0/22 3221 -193.40.200.0/21 3221 -193.40.208.0/20 3221 -193.40.224.0/19 3221 -193.41.4.0/23 15821 -193.41.6.0/23 15923 -193.41.8.0/23 12731 -193.41.10.0/23 3320 -193.41.12.0/23 3292 -193.41.14.0/23 1257 -193.41.20.0/23 15572 -193.41.22.0/24 15572 -193.41.24.0/21 1257 -193.41.32.0/24 7922 -193.41.33.0/24 41424 -193.41.35.0/24 15946 -193.41.36.0/24 29273 -193.41.37.0/24 15644 -193.41.38.0/23 45671 -193.41.40.0/24 15908 -193.41.41.0/24 21362 -193.41.42.0/24 5400 -193.41.43.0/24 15608 -193.41.44.0/24 59579 -193.41.45.0/24 5518 -193.41.48.0/22 3326 -193.41.52.0/22 3303 -193.41.60.0/22 15895 -193.41.64.0/22 49699 -193.41.68.0/23 35913 -193.41.71.0/24 15404 -193.41.72.0/22 8554 -193.41.76.0/22 51904 -193.41.80.0/24 12933 -193.41.81.0/24 15911 -193.41.83.0/24 20675 -193.41.84.0/24 15981 -193.41.85.0/24 16052 -193.41.86.0/23 35913 -193.41.88.0/24 13032 -193.41.89.0/24 16104 -193.41.90.0/24 200713 -193.41.93.0/24 58217 -193.41.94.0/24 16049 -193.41.95.0/24 57928 -193.41.96.0/21 5413 -193.41.104.0/24 44940 -193.41.105.0/24 15840 -193.41.107.0/24 25497 -193.41.108.0/24 6686 -193.41.109.0/24 6688 -193.41.110.0/24 5623 -193.41.111.0/24 6742 -193.41.112.0/23 15855 -193.41.114.0/23 35913 -193.41.116.0/23 29014 -193.41.118.0/23 3246 -193.41.121.0/24 8469 -193.41.122.0/23 35913 -193.41.124.0/23 15925 -193.41.126.0/23 9176 -193.41.129.0/24 25193 -193.41.132.0/22 16107 -193.41.136.0/23 57260 -193.41.138.0/23 42060 -193.41.140.0/22 28800 -193.41.144.0/23 29551 -193.41.148.0/23 200713 -193.41.150.0/23 16013 -193.41.152.0/23 16050 -193.41.154.0/23 49095 -193.41.156.0/24 42525 -193.41.158.0/23 5488 -193.41.160.0/22 50926 -193.41.164.0/23 15951 -193.41.168.0/23 34950 -193.41.170.0/23 12552 -193.41.172.0/22 197146 -193.41.176.0/22 16177 -193.41.180.0/23 16077 -193.41.182.0/23 16226 -193.41.184.0/22 3255 -193.41.188.0/22 16193 -193.41.193.0/24 12350 -193.41.194.0/24 16101 -193.41.195.0/24 16062 -193.41.196.0/24 25411 -193.41.197.0/24 8314 -193.41.198.0/24 20942 -193.41.200.0/24 61157 -193.41.201.0/24 16105 -193.41.202.0/24 16116 -193.41.203.0/24 57250 -193.41.205.0/24 16161 -193.41.207.0/24 49808 -193.41.208.0/23 16116 -193.41.210.0/23 34209 -193.41.212.0/23 49095 -193.41.214.0/23 1257 -193.41.218.0/23 16181 -193.41.222.0/23 16189 -193.41.224.0/24 1257 -193.41.225.0/24 41296 -193.41.226.0/24 44066 -193.41.227.0/24 13137 -193.41.228.0/24 208441 -193.41.229.0/24 39245 -193.41.230.0/24 16167 -193.41.231.0/24 59977 -193.41.232.0/24 16049 -193.41.233.0/24 16194 -193.41.234.0/24 16289 -193.41.235.0/24 47217 -193.41.236.0/24 20942 -193.41.237.0/24 44066 -193.41.240.0/22 16168 -193.41.245.0/24 12439 -193.41.247.0/24 12439 -193.41.248.0/24 54574 -193.41.250.0/24 54574 -193.41.252.0/22 16148 -193.42.2.0/23 12797 -193.42.4.0/22 57236 -193.42.11.0/24 44066 -193.42.12.0/24 44066 -193.42.14.0/24 31034 -193.42.15.0/24 132839 -193.42.16.0/22 204643 -193.42.24.0/23 55933 -193.42.26.0/24 55933 -193.42.27.0/24 3214 -193.42.28.0/22 35699 -193.42.40.0/22 134823 -193.42.44.0/22 209336 -193.42.48.0/22 210002 -193.42.52.0/22 210027 -193.42.60.0/22 200615 -193.42.64.0/19 44831 -193.42.96.0/24 35913 -193.42.98.0/23 35913 -193.42.100.0/24 48737 -193.42.104.0/22 42331 -193.42.108.0/22 60144 -193.42.112.0/23 203714 -193.42.114.0/24 49392 -193.42.116.0/23 49505 -193.42.118.0/24 9002 -193.42.119.0/24 50340 -193.42.120.0/24 39901 -193.42.121.0/24 60781 -193.42.122.0/24 60366 -193.42.123.0/24 47418 -193.42.124.0/22 50340 -193.42.128.0/22 34093 -193.42.132.0/24 132839 -193.42.133.0/24 3269 -193.42.135.0/24 132839 -193.42.138.0/24 8968 -193.42.139.0/24 137 -193.42.142.0/24 198068 -193.42.143.0/24 21409 -193.42.144.0/24 203652 -193.42.145.0/24 57510 -193.42.146.0/24 15623 -193.42.147.0/24 197226 -193.42.148.0/24 47940 -193.42.149.0/24 132839 -193.42.150.0/24 48026 -193.42.151.0/24 24711 -193.42.152.0/24 48182 -193.42.153.0/24 48021 -193.42.154.0/24 50606 -193.42.156.0/24 29066 -193.42.157.0/24 50352 -193.42.158.0/24 47946 -193.42.159.0/24 3246 -193.42.160.0/19 13254 -193.42.192.0/20 13254 -193.42.208.0/23 13254 -193.42.211.0/24 9085 -193.42.212.0/24 60781 -193.42.213.0/24 8487 -193.42.215.0/24 50827 -193.42.218.0/24 201754 -193.42.219.0/24 205199 -193.42.220.0/24 25019 -193.42.221.0/24 12843 -193.42.222.0/24 34563 -193.42.223.0/24 21050 -193.42.224.0/22 50495 -193.42.228.0/22 8535 -193.42.238.0/24 12874 -193.42.240.0/22 198187 -193.42.247.0/24 393559 -193.42.252.0/22 16266 -193.43.2.0/23 8612 -193.43.4.0/22 13180 -193.43.8.0/24 43307 -193.43.10.0/23 202344 -193.43.12.0/23 204295 -193.43.14.0/24 205199 -193.43.15.0/24 3313 -193.43.16.0/23 12874 -193.43.18.0/23 137 -193.43.20.0/22 9009 -193.43.24.0/24 41497 -193.43.25.0/24 29664 -193.43.26.0/24 34340 -193.43.27.0/24 12350 -193.43.28.0/24 205199 -193.43.29.0/24 8450 -193.43.34.0/24 12835 -193.43.35.0/24 43279 -193.43.36.0/24 5535 -193.43.37.0/24 205199 -193.43.44.0/22 3269 -193.43.64.0/22 6739 -193.43.68.0/22 35913 -193.43.72.0/24 42994 -193.43.76.0/24 15404 -193.43.77.0/24 34330 -193.43.78.0/24 50859 -193.43.79.0/24 44676 -193.43.80.0/21 31638 -193.43.88.0/24 28747 -193.43.89.0/24 34430 -193.43.91.0/24 44676 -193.43.92.0/24 60781 -193.43.93.0/24 34290 -193.43.94.0/24 44676 -193.43.95.0/24 47898 -193.43.96.0/24 8816 -193.43.97.0/24 137 -193.43.100.0/24 203210 -193.43.101.0/24 137 -193.43.102.0/23 61160 -193.43.106.0/23 31319 -193.43.108.0/24 31319 -193.43.109.0/24 137 -193.43.110.0/24 203210 -193.43.116.0/23 137 -193.43.125.0/24 8220 -193.43.126.0/24 203210 -193.43.127.0/24 34389 -193.43.128.0/22 8978 -193.43.132.0/23 3242 -193.43.136.0/24 203210 -193.43.138.0/24 208122 -193.43.139.0/24 208794 -193.43.140.0/24 29256 -193.43.141.0/24 137 -193.43.142.0/23 208794 -193.43.144.0/24 48487 -193.43.145.0/24 29256 -193.43.146.0/23 48430 -193.43.148.0/24 31242 -193.43.149.0/24 29256 -193.43.150.0/24 49978 -193.43.151.0/24 12552 -193.43.158.0/24 28771 -193.43.159.0/24 29256 -193.43.160.0/20 44831 -193.43.176.0/22 44831 -193.43.180.0/24 51600 -193.43.181.0/24 34298 -193.43.182.0/24 13165 -193.43.184.0/21 31638 -193.43.192.0/20 31638 -193.43.210.0/23 51742 -193.43.212.0/24 3330 -193.43.213.0/24 8437 -193.43.214.0/24 44097 -193.43.215.0/24 34958 -193.43.216.0/23 35637 -193.43.218.0/23 49544 -193.43.220.0/23 35675 -193.43.224.0/22 13307 -193.43.228.0/22 35585 -193.43.232.0/22 47342 -193.43.240.0/22 21021 -193.43.244.0/22 34380 -193.43.252.0/22 24881 -193.44.0.0/18 3301 -193.44.64.0/21 3301 -193.44.72.0/22 3301 -193.44.76.0/22 2865 -193.44.80.0/20 3301 -193.44.96.0/19 3301 -193.44.128.0/19 3301 -193.44.160.0/21 3301 -193.44.168.0/22 3301 -193.44.172.0/22 2865 -193.44.176.0/20 3301 -193.44.192.0/18 3301 -193.45.0.0/22 1299 -193.45.4.0/23 3301 -193.45.6.0/24 1299 -193.45.7.0/24 3301 -193.45.8.0/23 3301 -193.45.10.0/23 1299 -193.45.12.0/23 3301 -193.45.14.0/23 1299 -193.45.16.0/20 3301 -193.45.32.0/20 3301 -193.45.48.0/22 3301 -193.45.52.0/24 1257 -193.45.53.0/24 3301 -193.45.54.0/23 3301 -193.45.56.0/21 3301 -193.45.64.0/18 3301 -193.45.128.0/21 3301 -193.45.136.0/22 3301 -193.45.140.0/23 3301 -193.45.142.0/23 1299 -193.45.144.0/20 3301 -193.45.160.0/19 3301 -193.45.192.0/18 3301 -193.46.2.0/24 49795 -193.46.4.0/22 8447 -193.46.8.0/22 8447 -193.46.24.0/22 200615 -193.46.28.0/22 200901 -193.46.32.0/22 200620 -193.46.36.0/22 43341 -193.46.40.0/22 9023 -193.46.45.0/24 8387 -193.46.46.0/24 44344 -193.46.47.0/24 44663 -193.46.48.0/21 199893 -193.46.56.0/23 48430 -193.46.58.0/23 6830 -193.46.60.0/24 43403 -193.46.62.0/24 56411 -193.46.63.0/24 43407 -193.46.64.0/24 43423 -193.46.66.0/24 43416 -193.46.68.0/24 43420 -193.46.69.0/24 62121 -193.46.70.0/24 43461 -193.46.71.0/24 43430 -193.46.72.0/24 43422 -193.46.73.0/24 44919 -193.46.75.0/24 43462 -193.46.77.0/24 43605 -193.46.80.0/24 49544 -193.46.82.0/24 43455 -193.46.83.0/24 43463 -193.46.84.0/24 43463 -193.46.85.0/24 34863 -193.46.86.0/24 43472 -193.46.87.0/24 43486 -193.46.88.0/24 15850 -193.46.89.0/24 43481 -193.46.91.0/24 43631 -193.46.100.0/22 28889 -193.46.104.0/21 30971 -193.46.112.0/20 30971 -193.46.128.0/21 30971 -193.46.176.0/22 202825 -193.46.180.0/24 5397 -193.46.181.0/24 43498 -193.46.182.0/24 200692 -193.46.183.0/24 54229 -193.46.184.0/24 43509 -193.46.186.0/24 43506 -193.46.187.0/24 200974 -193.46.188.0/23 8692 -193.46.190.0/24 44760 -193.46.192.0/22 199292 -193.46.196.0/22 47583 -193.46.200.0/24 60558 -193.46.201.0/24 34814 -193.46.202.0/24 207930 -193.46.203.0/24 8487 -193.46.204.0/24 64470 -193.46.206.0/24 29301 -193.46.207.0/24 6854 -193.46.208.0/24 43730 -193.46.209.0/24 47106 -193.46.210.0/24 43554 -193.46.211.0/24 64470 -193.46.212.0/24 198829 -193.46.213.0/24 43559 -193.46.214.0/24 64470 -193.46.215.0/24 196763 -193.46.216.0/22 201942 -193.46.220.0/24 64470 -193.46.224.0/21 44594 -193.46.232.0/23 50629 -193.46.234.0/23 42196 -193.46.236.0/24 43513 -193.46.237.0/24 43512 -193.46.238.0/24 43520 -193.46.239.0/24 43536 -193.46.240.0/24 35913 -193.46.241.0/24 40065 -193.46.242.0/24 21211 -193.46.243.0/24 200282 -193.46.244.0/22 200885 -193.46.248.0/24 29056 -193.46.250.0/23 50629 -193.46.252.0/24 29608 -193.46.254.0/23 35478 -193.47.28.0/22 25357 -193.47.32.0/24 198070 -193.47.33.0/24 56630 -193.47.34.0/24 51724 -193.47.35.0/24 52000 -193.47.36.0/22 9009 -193.47.40.0/24 56383 -193.47.41.0/24 57271 -193.47.42.0/23 64429 -193.47.44.0/22 50340 -193.47.48.0/22 17017 -193.47.56.0/22 59447 -193.47.63.0/24 138570 -193.47.68.0/23 35478 -193.47.70.0/24 29608 -193.47.71.0/24 58111 -193.47.72.0/24 35291 -193.47.73.0/24 35292 -193.47.74.0/24 35293 -193.47.75.0/24 29608 -193.47.76.0/24 35167 -193.47.77.0/24 35309 -193.47.78.0/24 35316 -193.47.81.0/24 31027 -193.47.82.0/24 35321 -193.47.83.0/24 35327 -193.47.85.0/24 35340 -193.47.86.0/24 29608 -193.47.87.0/24 12389 -193.47.88.0/22 44888 -193.47.99.0/24 24961 -193.47.100.0/24 20676 -193.47.101.0/24 8930 -193.47.102.0/24 35338 -193.47.103.0/24 15576 -193.47.104.0/21 6830 -193.47.112.0/20 6830 -193.47.128.0/21 6830 -193.47.136.0/24 35343 -193.47.137.0/24 35352 -193.47.138.0/24 35552 -193.47.139.0/24 8220 -193.47.140.0/24 15404 -193.47.141.0/24 35344 -193.47.142.0/24 9171 -193.47.143.0/24 35500 -193.47.144.0/24 35347 -193.47.145.0/24 25412 -193.47.146.0/24 197553 -193.47.147.0/24 30746 -193.47.148.0/24 35354 -193.47.151.0/24 35209 -193.47.152.0/24 12843 -193.47.153.0/24 13030 -193.47.154.0/24 35504 -193.47.155.0/24 16364 -193.47.156.0/24 39912 -193.47.157.0/24 16055 -193.47.161.0/24 29037 -193.47.162.0/24 25318 -193.47.163.0/24 199601 -193.47.165.0/24 35392 -193.47.166.0/24 41269 -193.47.167.0/24 1257 -193.47.168.0/21 44879 -193.47.176.0/21 44879 -193.47.185.0/24 35822 -193.47.186.0/24 42876 -193.47.190.0/24 15576 -193.47.191.0/24 39500 -193.47.192.0/24 3297 -193.47.236.0/22 48095 -193.47.240.0/22 48317 -193.47.246.0/24 35416 -193.47.247.0/24 35434 -193.47.248.0/24 35438 -193.47.249.0/24 35436 -193.48.0.0/18 2200 -193.48.64.0/20 2200 -193.48.80.0/23 2200 -193.48.82.0/24 2200 -193.48.83.0/24 1942 -193.48.84.0/22 2200 -193.48.88.0/22 2200 -193.48.92.0/24 2089 -193.48.93.0/24 2200 -193.48.94.0/23 2200 -193.48.96.0/23 2200 -193.48.98.0/24 2200 -193.48.99.0/24 789 -193.48.100.0/24 789 -193.48.101.0/24 2200 -193.48.102.0/23 2200 -193.48.104.0/21 2200 -193.48.112.0/20 2200 -193.48.128.0/19 2200 -193.48.160.0/24 2200 -193.48.161.0/24 2472 -193.48.162.0/24 2472 -193.48.163.0/24 2200 -193.48.164.0/22 2200 -193.48.168.0/21 2200 -193.48.176.0/20 2200 -193.48.192.0/18 2200 -193.49.0.0/20 2200 -193.49.16.0/22 2200 -193.49.20.0/23 2200 -193.49.22.0/24 2072 -193.49.23.0/24 2200 -193.49.24.0/21 2200 -193.49.32.0/19 2200 -193.49.64.0/18 2200 -193.49.128.0/19 2200 -193.49.160.0/23 2200 -193.49.162.0/24 2200 -193.49.163.0/24 2072 -193.49.164.0/22 2200 -193.49.168.0/21 2200 -193.49.176.0/20 2200 -193.49.192.0/19 2200 -193.49.224.0/22 2200 -193.49.228.0/23 2200 -193.49.230.0/24 2472 -193.49.231.0/24 2200 -193.49.232.0/21 2200 -193.49.240.0/20 2200 -193.50.0.0/23 2072 -193.50.2.0/24 2072 -193.50.3.0/24 2200 -193.50.4.0/22 2200 -193.50.8.0/21 2200 -193.50.16.0/20 2200 -193.50.32.0/19 2200 -193.50.64.0/23 2200 -193.50.66.0/24 2200 -193.50.67.0/24 2072 -193.50.68.0/24 2072 -193.50.69.0/24 2200 -193.50.70.0/23 2200 -193.50.72.0/21 2200 -193.50.80.0/20 2200 -193.50.96.0/19 2200 -193.50.128.0/22 2200 -193.50.132.0/23 2200 -193.50.134.0/24 2472 -193.50.135.0/24 2200 -193.50.136.0/21 2200 -193.50.144.0/20 2200 -193.50.160.0/19 2200 -193.50.192.0/21 2200 -193.50.200.0/24 2200 -193.50.201.0/24 2072 -193.50.202.0/23 2200 -193.50.204.0/23 2200 -193.50.206.0/24 2470 -193.50.207.0/24 2200 -193.50.208.0/20 2200 -193.50.224.0/19 2200 -193.51.0.0/21 2200 -193.51.8.0/23 2200 -193.51.10.0/24 2200 -193.51.11.0/24 2470 -193.51.12.0/22 2200 -193.51.16.0/20 2200 -193.51.32.0/20 2200 -193.51.48.0/21 2200 -193.51.56.0/23 2200 -193.51.58.0/24 2088 -193.51.59.0/24 2200 -193.51.60.0/22 2200 -193.51.64.0/24 2200 -193.51.65.0/24 2072 -193.51.66.0/24 2072 -193.51.67.0/24 2200 -193.51.68.0/22 2200 -193.51.72.0/21 2200 -193.51.80.0/20 2200 -193.51.96.0/20 2200 -193.51.112.0/24 2200 -193.51.113.0/24 2470 -193.51.114.0/24 2200 -193.51.115.0/24 2470 -193.51.116.0/23 2200 -193.51.118.0/24 2472 -193.51.119.0/24 2200 -193.51.120.0/21 2200 -193.51.128.0/22 2200 -193.51.132.0/23 2200 -193.51.134.0/23 2471 -193.51.136.0/21 2200 -193.51.144.0/20 2200 -193.51.160.0/19 2200 -193.51.192.0/19 2200 -193.51.224.0/20 2200 -193.51.240.0/21 2200 -193.51.248.0/24 2200 -193.51.249.0/24 2198 -193.51.250.0/23 2200 -193.51.252.0/22 2200 -193.52.0.0/19 2200 -193.52.32.0/23 2200 -193.52.34.0/24 2200 -193.52.35.0/24 2471 -193.52.36.0/22 2200 -193.52.40.0/21 2200 -193.52.48.0/20 2200 -193.52.64.0/18 2200 -193.52.128.0/17 2200 -193.53.2.0/24 397735 -193.53.3.0/24 2611 -193.53.4.0/24 27257 -193.53.5.0/24 397735 -193.53.7.0/24 397735 -193.53.8.0/23 60650 -193.53.10.0/23 51050 -193.53.12.0/24 397735 -193.53.16.0/22 174 -193.53.20.0/23 174 -193.53.22.0/24 12527 -193.53.23.0/24 203017 -193.53.29.0/24 58653 -193.53.35.0/24 197595 -193.53.36.0/24 59876 -193.53.37.0/24 39686 -193.53.39.0/24 202191 -193.53.40.0/24 197595 -193.53.48.0/24 21373 -193.53.50.0/24 21373 -193.53.53.0/24 21373 -193.53.54.0/23 21373 -193.53.56.0/22 21373 -193.53.80.0/24 13022 -193.53.81.0/24 197595 -193.53.82.0/24 197595 -193.53.83.0/24 196740 -193.53.85.0/24 35589 -193.53.86.0/24 8220 -193.53.88.0/24 2116 -193.53.89.0/24 205420 -193.53.90.0/23 51050 -193.53.92.0/24 3209 -193.53.93.0/24 3320 -193.53.96.0/23 34968 -193.53.99.0/24 48083 -193.53.100.0/24 48083 -193.53.101.0/24 201205 -193.53.102.0/24 201205 -193.53.104.0/23 34968 -193.53.106.0/24 12823 -193.53.109.0/24 202457 -193.53.110.0/23 202457 -193.53.112.0/24 202457 -193.53.113.0/24 2611 -193.53.114.0/23 2611 -193.53.116.0/22 2611 -193.53.120.0/22 2611 -193.53.124.0/24 2611 -193.53.125.0/24 43366 -193.53.126.0/23 49392 -193.53.128.0/19 12942 -193.53.160.0/22 15704 -193.53.164.0/22 43323 -193.53.168.0/23 49392 -193.53.174.0/24 15404 -193.53.185.0/24 15404 -193.53.186.0/24 15404 -193.53.188.0/24 15404 -193.53.207.0/24 39804 -193.53.216.0/22 39804 -193.53.220.0/23 39804 -193.53.224.0/22 39804 -193.53.235.0/24 39804 -193.53.236.0/23 39804 -193.53.238.0/24 39804 -193.53.242.0/24 39804 -193.53.246.0/23 15817 -193.53.250.0/23 15817 -193.53.252.0/24 44209 -193.53.255.0/24 34719 -193.54.0.0/19 2200 -193.54.32.0/24 2200 -193.54.33.0/24 2088 -193.54.34.0/23 2200 -193.54.36.0/22 2200 -193.54.40.0/21 2200 -193.54.48.0/21 2200 -193.54.56.0/24 2471 -193.54.57.0/24 2200 -193.54.58.0/23 2200 -193.54.60.0/22 2200 -193.54.64.0/18 2200 -193.54.128.0/21 2200 -193.54.136.0/24 2199 -193.54.137.0/24 2200 -193.54.138.0/23 2200 -193.54.140.0/22 2200 -193.54.144.0/20 2200 -193.54.160.0/19 2200 -193.54.192.0/23 2200 -193.54.194.0/24 2200 -193.54.195.0/24 2072 -193.54.196.0/22 2200 -193.54.200.0/21 2200 -193.54.208.0/20 2200 -193.54.224.0/24 2200 -193.54.225.0/24 2072 -193.54.226.0/23 2200 -193.54.228.0/22 2200 -193.54.232.0/21 2200 -193.54.240.0/20 2200 -193.55.0.0/22 2200 -193.55.4.0/24 2472 -193.55.5.0/24 2088 -193.55.6.0/23 2200 -193.55.8.0/21 2200 -193.55.16.0/20 2200 -193.55.32.0/19 2200 -193.55.64.0/18 2200 -193.55.128.0/17 2200 -193.56.4.0/22 2200 -193.56.13.0/24 44209 -193.56.15.0/24 198545 -193.56.21.0/24 393559 -193.56.23.0/24 393559 -193.56.24.0/22 203974 -193.56.28.0/24 197226 -193.56.29.0/24 210228 -193.56.32.0/24 12670 -193.56.33.0/24 15404 -193.56.35.0/24 206720 -193.56.36.0/24 10753 -193.56.37.0/24 12670 -193.56.38.0/24 3215 -193.56.39.0/24 10753 -193.56.43.0/24 3215 -193.56.45.0/24 10753 -193.56.46.0/24 8677 -193.56.53.0/24 3215 -193.56.58.0/24 28855 -193.56.60.0/24 13193 -193.56.62.0/23 62416 -193.56.64.0/22 35913 -193.56.68.0/23 25070 -193.56.70.0/24 25070 -193.56.71.0/24 205149 -193.56.72.0/22 35913 -193.56.76.0/24 210227 -193.56.80.0/22 203360 -193.56.87.0/24 44407 -193.56.104.0/23 62416 -193.56.106.0/24 158 -193.56.108.0/22 2202 -193.56.112.0/24 20473 -193.56.114.0/24 21000 -193.56.116.0/23 8100 -193.56.120.0/22 210297 -193.56.127.0/24 3215 -193.56.128.0/24 10753 -193.56.136.0/21 15846 -193.56.148.0/22 200814 -193.56.152.0/22 202639 -193.56.157.0/24 12670 -193.56.160.0/23 3215 -193.56.164.0/22 203709 -193.56.168.0/22 60032 -193.56.172.0/24 201932 -193.56.176.0/22 60257 -193.56.184.0/24 2830 -193.56.185.0/24 205853 -193.56.186.0/24 57271 -193.56.188.0/24 35751 -193.56.190.0/24 35751 -193.56.193.0/24 3215 -193.56.196.0/22 202407 -193.56.202.0/24 199024 -193.56.203.0/24 51110 -193.56.204.0/22 199216 -193.56.208.0/24 35007 -193.56.209.0/24 198060 -193.56.211.0/24 198060 -193.56.212.0/22 9009 -193.56.216.0/24 15415 -193.56.220.0/22 202328 -193.56.224.0/24 35007 -193.56.230.0/24 2202 -193.56.231.0/24 198060 -193.56.233.0/24 208746 -193.56.235.0/24 208746 -193.56.236.0/23 208746 -193.56.238.0/24 395800 -193.56.241.0/24 21000 -193.56.242.0/23 25117 -193.56.244.0/23 25117 -193.56.246.0/24 8255 -193.57.0.0/22 197637 -193.57.5.0/24 3215 -193.57.6.0/24 29150 -193.57.8.0/24 395800 -193.57.12.0/23 24954 -193.57.14.0/23 12996 -193.57.16.0/24 60015 -193.57.17.0/24 202574 -193.57.18.0/24 202574 -193.57.20.0/24 204227 -193.57.22.0/23 12996 -193.57.27.0/24 397770 -193.57.28.0/24 202515 -193.57.33.0/24 397770 -193.57.34.0/24 24954 -193.57.35.0/24 397770 -193.57.36.0/22 57910 -193.57.40.0/24 49453 -193.57.41.0/24 62206 -193.57.42.0/24 210068 -193.57.43.0/24 62206 -193.57.44.0/24 210241 -193.57.45.0/24 42174 -193.57.46.0/24 52114 -193.57.47.0/24 200787 -193.57.49.0/24 3215 -193.57.52.0/23 202475 -193.57.56.0/24 15404 -193.57.57.0/24 397770 -193.57.67.0/24 15557 -193.57.70.0/24 15557 -193.57.72.0/22 202460 -193.57.80.0/24 202517 -193.57.88.0/23 207083 -193.57.94.0/23 207083 -193.57.96.0/24 60226 -193.57.100.0/23 15557 -193.57.102.0/24 174 -193.57.103.0/24 15557 -193.57.106.0/23 21093 -193.57.109.0/24 21093 -193.57.110.0/24 21093 -193.57.112.0/21 8255 -193.57.120.0/23 25117 -193.57.122.0/23 8255 -193.57.124.0/23 25117 -193.57.126.0/24 8255 -193.57.128.0/22 24843 -193.57.136.0/22 48430 -193.57.141.0/24 20541 -193.57.145.0/24 20541 -193.57.146.0/23 29119 -193.57.156.0/23 15557 -193.57.158.0/24 15557 -193.57.159.0/24 207841 -193.57.160.0/22 206430 -193.57.164.0/23 29119 -193.57.172.0/24 4589 -193.57.176.0/22 24954 -193.57.180.0/24 24954 -193.57.184.0/24 15557 -193.57.185.0/24 201072 -193.57.186.0/23 201072 -193.57.188.0/23 201072 -193.57.190.0/24 201072 -193.57.199.0/24 201072 -193.57.201.0/24 2200 -193.57.204.0/24 201072 -193.57.205.0/24 12670 -193.57.206.0/23 60277 -193.57.208.0/22 57443 -193.57.212.0/22 48326 -193.57.216.0/23 60277 -193.57.218.0/23 198340 -193.57.220.0/23 198340 -193.57.225.0/24 8255 -193.57.226.0/23 208261 -193.57.228.0/22 204928 -193.57.241.0/24 198340 -193.57.244.0/23 198340 -193.57.247.0/24 198340 -193.57.249.0/24 10991 -193.58.1.0/24 25215 -193.58.3.0/24 25215 -193.58.4.0/23 25215 -193.58.6.0/24 15404 -193.58.7.0/24 199796 -193.58.8.0/21 41008 -193.58.19.0/24 199541 -193.58.21.0/24 199541 -193.58.31.0/24 199541 -193.58.36.0/22 62166 -193.58.40.0/23 6848 -193.58.42.0/24 208261 -193.58.44.0/22 28988 -193.58.48.0/20 9208 -193.58.64.0/22 25180 -193.58.68.0/23 25180 -193.58.70.0/23 15439 -193.58.72.0/21 21241 -193.58.80.0/21 8677 -193.58.88.0/23 21032 -193.58.90.0/24 21032 -193.58.91.0/24 209620 -193.58.96.0/22 201843 -193.58.104.0/22 61317 -193.58.108.0/22 60781 -193.58.112.0/22 210017 -193.58.116.0/22 39070 -193.58.127.0/24 29014 -193.58.128.0/23 21424 -193.58.130.0/23 5400 -193.58.132.0/22 46261 -193.58.144.0/22 197518 -193.58.148.0/23 2611 -193.58.150.0/23 208031 -193.58.152.0/23 208031 -193.58.156.0/22 2611 -193.58.160.0/22 6848 -193.58.164.0/22 202516 -193.58.168.0/22 204941 -193.58.172.0/24 2611 -193.58.176.0/22 20655 -193.58.180.0/23 200930 -193.58.184.0/22 202511 -193.58.188.0/22 18530 -193.58.192.0/22 16160 -193.58.196.0/23 16160 -193.58.200.0/23 34386 -193.58.203.0/24 34386 -193.58.204.0/22 9150 -193.58.208.0/24 9150 -193.58.209.0/24 6730 -193.58.216.0/23 203584 -193.58.220.0/23 8360 -193.58.222.0/23 2830 -193.58.229.0/24 5488 -193.58.230.0/24 5488 -193.58.232.0/24 43939 -193.58.233.0/24 35012 -193.58.234.0/24 34780 -193.58.235.0/24 34813 -193.58.238.0/24 8473 -193.58.239.0/24 31034 -193.58.240.0/24 207856 -193.58.241.0/24 34822 -193.58.242.0/24 3303 -193.58.243.0/24 39737 -193.58.244.0/24 34834 -193.58.245.0/24 25394 -193.58.246.0/24 51591 -193.58.247.0/24 43436 -193.58.250.0/24 50304 -193.58.251.0/24 51289 -193.58.252.0/24 34519 -193.58.253.0/24 3320 -193.58.255.0/24 50438 -193.59.0.0/21 8308 -193.59.8.0/22 8308 -193.59.12.0/23 206354 -193.59.14.0/23 8308 -193.59.16.0/20 8308 -193.59.32.0/22 8308 -193.59.36.0/23 8308 -193.59.38.0/24 8308 -193.59.39.0/24 28732 -193.59.40.0/21 8308 -193.59.48.0/21 8308 -193.59.56.0/22 8308 -193.59.60.0/22 42619 -193.59.64.0/21 8308 -193.59.72.0/22 8308 -193.59.76.0/24 204569 -193.59.77.0/24 8308 -193.59.78.0/23 8308 -193.59.80.0/24 210271 -193.59.81.0/24 8308 -193.59.82.0/23 8308 -193.59.84.0/22 8308 -193.59.88.0/23 198777 -193.59.90.0/23 8308 -193.59.92.0/22 8308 -193.59.96.0/24 201143 -193.59.97.0/24 8308 -193.59.98.0/23 8308 -193.59.100.0/22 8308 -193.59.104.0/21 8308 -193.59.112.0/21 8308 -193.59.120.0/23 210220 -193.59.122.0/23 8308 -193.59.124.0/22 8308 -193.59.128.0/22 8308 -193.59.132.0/22 209316 -193.59.136.0/21 8308 -193.59.144.0/20 8308 -193.59.160.0/20 8308 -193.59.176.0/24 199815 -193.59.177.0/24 8308 -193.59.178.0/24 202081 -193.59.179.0/24 8308 -193.59.180.0/22 8308 -193.59.184.0/21 8308 -193.59.192.0/21 8308 -193.59.200.0/22 8308 -193.59.204.0/23 8308 -193.59.206.0/24 8308 -193.59.207.0/24 199845 -193.59.208.0/20 8308 -193.59.224.0/19 8308 -193.60.0.0/14 786 -193.64.0.0/21 790 -193.64.8.0/23 790 -193.64.10.0/23 1759 -193.64.12.0/22 790 -193.64.16.0/20 790 -193.64.32.0/19 790 -193.64.64.0/18 790 -193.64.128.0/17 790 -193.65.0.0/17 790 -193.65.128.0/24 790 -193.65.129.0/24 719 -193.65.130.0/23 790 -193.65.132.0/22 790 -193.65.136.0/21 790 -193.65.144.0/20 790 -193.65.160.0/19 790 -193.65.192.0/18 790 -193.66.0.0/17 790 -193.66.128.0/19 790 -193.66.160.0/21 790 -193.66.168.0/22 790 -193.66.172.0/23 790 -193.66.174.0/24 1738 -193.66.175.0/24 790 -193.66.176.0/20 790 -193.66.192.0/18 790 -193.67.0.0/19 702 -193.67.32.0/20 702 -193.67.48.0/21 702 -193.67.56.0/22 702 -193.67.60.0/23 702 -193.67.62.0/23 1661 -193.67.64.0/21 702 -193.67.72.0/22 702 -193.67.76.0/23 1661 -193.67.78.0/23 702 -193.67.80.0/20 702 -193.67.96.0/19 702 -193.67.128.0/23 702 -193.67.130.0/24 200596 -193.67.131.0/24 702 -193.67.132.0/22 702 -193.67.136.0/21 702 -193.67.144.0/20 702 -193.67.160.0/19 702 -193.67.192.0/20 7046 -193.67.208.0/20 702 -193.67.224.0/19 702 -193.68.0.0/19 3245 -193.68.32.0/19 12301 -193.68.64.0/19 8285 -193.68.96.0/20 3245 -193.68.112.0/23 49699 -193.68.114.0/23 48584 -193.68.116.0/23 3245 -193.68.118.0/24 3245 -193.68.119.0/24 31083 -193.68.120.0/21 3245 -193.68.128.0/17 3245 -193.69.0.0/16 2116 -193.70.0.0/17 16276 -193.70.128.0/20 1267 -193.70.144.0/23 1267 -193.70.146.0/24 52030 -193.70.147.0/24 1267 -193.70.148.0/22 1267 -193.70.152.0/21 1267 -193.70.160.0/19 1267 -193.70.192.0/19 1267 -193.70.224.0/23 1267 -193.70.226.0/23 8968 -193.70.228.0/22 1267 -193.70.232.0/21 1267 -193.70.240.0/20 1267 -193.71.0.0/17 2116 -193.71.128.0/18 2116 -193.71.192.0/19 2116 -193.71.224.0/21 201627 -193.71.232.0/21 2116 -193.71.240.0/20 2116 -193.72.0.0/18 1836 -193.72.64.0/21 1836 -193.72.72.0/22 1836 -193.72.76.0/23 1836 -193.72.78.0/24 1836 -193.72.79.0/24 207856 -193.72.80.0/24 3303 -193.72.81.0/24 1836 -193.72.82.0/23 1836 -193.72.84.0/22 1836 -193.72.88.0/21 1836 -193.72.96.0/19 1836 -193.72.128.0/20 1836 -193.72.144.0/23 6830 -193.72.146.0/24 6830 -193.72.147.0/24 21217 -193.72.148.0/22 1836 -193.72.152.0/21 1836 -193.72.160.0/22 1836 -193.72.165.0/24 1836 -193.72.166.0/24 42491 -193.72.167.0/24 1836 -193.72.168.0/21 1836 -193.72.176.0/21 1836 -193.72.185.0/24 1836 -193.72.186.0/24 200601 -193.72.187.0/24 1836 -193.72.188.0/22 1836 -193.72.192.0/20 1836 -193.72.208.0/21 1836 -193.72.216.0/24 15096 -193.72.217.0/24 1836 -193.72.218.0/23 1836 -193.72.220.0/22 1836 -193.72.224.0/19 1836 -193.73.0.0/18 1836 -193.73.64.0/19 1836 -193.73.96.0/21 1836 -193.73.104.0/23 1836 -193.73.106.0/23 3303 -193.73.108.0/22 1836 -193.73.113.0/24 8220 -193.73.114.0/24 33965 -193.73.115.0/24 1836 -193.73.116.0/22 1836 -193.73.121.0/24 1836 -193.73.122.0/24 198385 -193.73.123.0/24 1836 -193.73.124.0/24 1836 -193.73.125.0/24 559 -193.73.126.0/23 1836 -193.73.128.0/18 1836 -193.73.192.0/20 1836 -193.73.208.0/24 48038 -193.73.209.0/24 1836 -193.73.210.0/24 1836 -193.73.211.0/24 8758 -193.73.212.0/22 1836 -193.73.216.0/21 1836 -193.73.224.0/21 1836 -193.73.232.0/22 1836 -193.73.236.0/23 1836 -193.73.238.0/24 6730 -193.73.239.0/24 1836 -193.73.240.0/23 1836 -193.73.242.0/23 3303 -193.73.244.0/22 1836 -193.73.249.0/24 1836 -193.73.251.0/24 3303 -193.73.252.0/22 1836 -193.74.0.0/16 5432 -193.75.0.0/17 2116 -193.75.128.0/17 5432 -193.76.0.0/16 1267 -193.77.0.0/19 5603 -193.77.32.0/21 5603 -193.77.40.0/23 5603 -193.77.42.0/24 197326 -193.77.43.0/24 5603 -193.77.44.0/22 5603 -193.77.48.0/20 5603 -193.77.64.0/18 5603 -193.77.128.0/17 5603 -193.78.0.0/18 702 -193.78.64.0/24 702 -193.78.65.0/24 1689 -193.78.66.0/23 702 -193.78.68.0/22 702 -193.78.72.0/21 702 -193.78.80.0/20 702 -193.78.96.0/19 702 -193.78.128.0/17 702 -193.79.0.0/16 702 -193.80.0.0/20 1901 -193.80.16.0/22 1901 -193.80.20.0/23 1901 -193.80.22.0/24 8971 -193.80.23.0/24 1901 -193.80.24.0/21 1901 -193.80.32.0/21 1901 -193.80.40.0/23 1901 -193.80.42.0/24 8971 -193.80.43.0/24 1901 -193.80.44.0/22 1901 -193.80.48.0/20 1901 -193.80.64.0/18 1901 -193.80.128.0/22 1901 -193.80.132.0/22 51066 -193.80.136.0/21 51066 -193.80.144.0/20 51066 -193.80.160.0/22 51066 -193.80.164.0/22 1901 -193.80.168.0/21 1901 -193.80.176.0/21 1901 -193.80.184.0/22 1901 -193.80.188.0/23 1901 -193.80.190.0/24 1901 -193.80.191.0/24 33917 -193.80.192.0/18 1901 -193.81.0.0/24 1901 -193.81.1.0/24 51066 -193.81.2.0/23 1901 -193.81.4.0/22 1901 -193.81.8.0/21 1901 -193.81.16.0/20 1901 -193.81.32.0/19 1901 -193.81.64.0/18 1901 -193.81.128.0/18 1901 -193.81.192.0/19 1901 -193.81.224.0/20 1901 -193.81.240.0/22 1901 -193.81.244.0/23 1901 -193.81.246.0/24 8971 -193.81.247.0/24 1901 -193.81.248.0/21 1901 -193.82.0.0/20 1290 -193.82.16.0/21 1290 -193.82.24.0/22 1290 -193.82.28.0/23 1290 -193.82.30.0/24 1290 -193.82.31.0/24 4637 -193.82.32.0/19 1290 -193.82.96.0/19 1290 -193.82.128.0/18 1290 -193.82.192.0/19 1290 -193.82.224.0/19 7545 -193.83.0.0/17 1901 -193.83.128.0/18 1901 -193.83.192.0/21 1901 -193.83.200.0/22 1901 -193.83.204.0/24 47477 -193.83.205.0/24 1901 -193.83.206.0/23 1901 -193.83.208.0/20 1901 -193.83.224.0/19 1901 -193.84.0.0/24 29527 -193.84.7.0/24 5588 -193.84.8.0/24 29329 -193.84.9.0/24 34427 -193.84.12.0/22 5588 -193.84.17.0/24 39331 -193.84.19.0/24 199478 -193.84.20.0/24 12586 -193.84.21.0/24 31579 -193.84.22.0/24 30886 -193.84.23.0/24 39348 -193.84.24.0/24 41035 -193.84.25.0/24 39457 -193.84.27.0/24 3292 -193.84.28.0/24 39372 -193.84.29.0/24 41442 -193.84.30.0/24 199478 -193.84.31.0/24 39379 -193.84.32.0/20 2852 -193.84.48.0/23 209910 -193.84.50.0/24 50633 -193.84.51.0/24 34437 -193.84.52.0/24 8437 -193.84.53.0/24 2852 -193.84.54.0/24 29551 -193.84.55.0/24 2852 -193.84.56.0/21 2852 -193.84.64.0/24 39383 -193.84.65.0/24 39394 -193.84.66.0/24 47435 -193.84.67.0/24 34108 -193.84.68.0/24 29208 -193.84.69.0/24 48067 -193.84.70.0/24 199478 -193.84.72.0/24 39851 -193.84.73.0/24 39405 -193.84.74.0/24 199478 -193.84.76.0/24 44478 -193.84.77.0/24 35524 -193.84.78.0/24 59796 -193.84.79.0/24 197300 -193.84.80.0/22 2852 -193.84.84.0/24 2611 -193.84.86.0/24 39357 -193.84.87.0/24 6315 -193.84.89.0/24 25540 -193.84.91.0/24 12886 -193.84.92.0/23 209910 -193.84.94.0/24 8447 -193.84.95.0/24 12676 -193.84.96.0/22 5588 -193.84.100.0/22 202476 -193.84.112.0/24 6830 -193.84.113.0/24 56340 -193.84.114.0/23 48847 -193.84.116.0/23 2852 -193.84.118.0/24 48847 -193.84.119.0/24 34763 -193.84.120.0/22 51262 -193.84.124.0/22 199584 -193.84.128.0/23 6830 -193.84.130.0/23 43928 -193.84.136.0/22 3320 -193.84.140.0/23 43928 -193.84.142.0/24 8897 -193.84.159.0/24 5588 -193.84.160.0/20 2852 -193.84.176.0/24 25525 -193.84.178.0/24 48918 -193.84.180.0/24 56340 -193.84.181.0/24 198296 -193.84.182.0/24 49715 -193.84.184.0/24 35036 -193.84.185.0/24 39464 -193.84.186.0/24 50301 -193.84.187.0/24 56340 -193.84.188.0/22 39647 -193.84.192.0/19 2852 -193.84.224.0/23 174 -193.84.240.0/22 207253 -193.84.244.0/24 56340 -193.84.245.0/24 5588 -193.84.246.0/24 39403 -193.84.251.0/24 39481 -193.84.252.0/24 199806 -193.84.253.0/24 39647 -193.84.254.0/24 39647 -193.84.255.0/24 39429 -193.85.0.0/16 5588 -193.86.0.0/19 5588 -193.86.32.0/19 6855 -193.86.64.0/18 5588 -193.86.128.0/17 5588 -193.87.0.0/16 2607 -193.88.0.0/15 3292 -193.90.0.0/16 2116 -193.91.0.0/24 47507 -193.91.1.0/24 5588 -193.91.2.0/23 34001 -193.91.6.0/23 5588 -193.91.8.0/23 203872 -193.91.11.0/24 199364 -193.91.14.0/23 34001 -193.91.16.0/20 12741 -193.91.32.0/20 15965 -193.91.48.0/20 15879 -193.91.64.0/19 12301 -193.91.96.0/19 5432 -193.91.128.0/17 2116 -193.92.0.0/22 1241 -193.92.4.0/24 1241 -193.92.5.0/24 209111 -193.92.6.0/23 1241 -193.92.8.0/22 29286 -193.92.12.0/22 1241 -193.92.16.0/20 1241 -193.92.32.0/19 1241 -193.92.64.0/18 1241 -193.92.128.0/19 1241 -193.92.160.0/21 1241 -193.92.168.0/22 1241 -193.92.172.0/24 1241 -193.92.173.0/24 16013 -193.92.174.0/23 1241 -193.92.176.0/20 1241 -193.92.192.0/18 1241 -193.93.0.0/22 24840 -193.93.4.0/22 39648 -193.93.8.0/22 25426 -193.93.12.0/22 15461 -193.93.16.0/22 39431 -193.93.20.0/22 31052 -193.93.24.0/23 39401 -193.93.26.0/24 49040 -193.93.27.0/24 39401 -193.93.28.0/22 202510 -193.93.32.0/22 39414 -193.93.36.0/22 41400 -193.93.40.0/22 208913 -193.93.44.0/22 8577 -193.93.48.0/22 39445 -193.93.52.0/22 42430 -193.93.56.0/22 39433 -193.93.60.0/23 34665 -193.93.64.0/22 33958 -193.93.68.0/22 42520 -193.93.72.0/22 43451 -193.93.76.0/22 39513 -193.93.84.0/22 33859 -193.93.88.0/22 39566 -193.93.92.0/22 13000 -193.93.100.0/22 20897 -193.93.104.0/22 39599 -193.93.108.0/22 202500 -193.93.112.0/22 3257 -193.93.116.0/22 24872 -193.93.120.0/22 49897 -193.93.124.0/22 41064 -193.93.128.0/22 203238 -193.93.132.0/22 51188 -193.93.136.0/23 39665 -193.93.138.0/24 39665 -193.93.139.0/24 51188 -193.93.140.0/22 6718 -193.93.152.0/24 39674 -193.93.153.0/24 201902 -193.93.154.0/23 39674 -193.93.156.0/22 2 -193.93.160.0/22 13121 -193.93.164.0/22 29229 -193.93.168.0/22 196864 -193.93.172.0/22 21155 -193.93.176.0/22 44225 -193.93.180.0/22 30781 -193.93.184.0/22 39742 -193.93.188.0/22 39748 -193.93.192.0/22 206485 -193.93.196.0/24 14778 -193.93.197.0/24 10310 -193.93.198.0/24 10310 -193.93.199.0/24 14778 -193.93.200.0/22 174 -193.93.204.0/22 39760 -193.93.208.0/22 39764 -193.93.212.0/22 44173 -193.93.216.0/22 49824 -193.93.220.0/22 39783 -193.93.224.0/23 24916 -193.93.226.0/23 15533 -193.93.228.0/22 39822 -193.93.232.0/22 202508 -193.93.236.0/22 49325 -193.93.240.0/22 39913 -193.93.244.0/22 39860 -193.93.248.0/22 35041 -193.93.252.0/22 8896 -193.94.0.0/16 790 -193.95.0.0/23 2609 -193.95.2.0/24 31245 -193.95.3.0/24 37671 -193.95.4.0/24 31245 -193.95.5.0/24 5438 -193.95.6.0/23 31245 -193.95.8.0/23 2609 -193.95.10.0/24 2609 -193.95.11.0/24 37551 -193.95.12.0/23 2609 -193.95.14.0/23 31245 -193.95.16.0/24 37671 -193.95.17.0/24 2609 -193.95.18.0/23 2609 -193.95.20.0/24 37551 -193.95.21.0/24 2609 -193.95.22.0/23 2609 -193.95.24.0/24 2609 -193.95.25.0/24 5438 -193.95.26.0/23 31245 -193.95.28.0/24 2609 -193.95.29.0/24 5438 -193.95.30.0/23 37717 -193.95.32.0/22 37717 -193.95.36.0/24 37717 -193.95.37.0/24 31245 -193.95.38.0/24 37717 -193.95.39.0/24 31245 -193.95.40.0/24 2609 -193.95.41.0/24 31245 -193.95.42.0/24 37671 -193.95.43.0/24 2609 -193.95.44.0/24 37671 -193.95.45.0/24 2609 -193.95.46.0/23 31245 -193.95.48.0/23 2609 -193.95.50.0/23 5438 -193.95.52.0/24 2609 -193.95.53.0/24 37671 -193.95.54.0/23 37671 -193.95.56.0/24 31245 -193.95.57.0/24 37671 -193.95.58.0/24 37717 -193.95.59.0/24 37671 -193.95.60.0/24 2609 -193.95.61.0/24 31245 -193.95.62.0/23 31245 -193.95.64.0/24 31245 -193.95.65.0/24 5438 -193.95.66.0/23 2609 -193.95.68.0/23 31245 -193.95.70.0/24 37492 -193.95.71.0/24 2609 -193.95.72.0/24 2609 -193.95.73.0/24 37671 -193.95.74.0/24 2609 -193.95.75.0/24 37671 -193.95.76.0/22 37671 -193.95.80.0/23 37671 -193.95.82.0/24 37671 -193.95.83.0/24 37492 -193.95.84.0/22 2609 -193.95.88.0/24 37492 -193.95.89.0/24 2609 -193.95.90.0/23 31245 -193.95.92.0/23 37492 -193.95.94.0/24 5438 -193.95.95.0/24 37492 -193.95.96.0/23 2609 -193.95.98.0/24 31245 -193.95.99.0/24 37671 -193.95.100.0/24 2609 -193.95.101.0/24 31245 -193.95.102.0/24 31245 -193.95.103.0/24 2609 -193.95.104.0/24 2609 -193.95.105.0/24 37492 -193.95.106.0/24 31245 -193.95.107.0/24 37492 -193.95.108.0/23 2609 -193.95.110.0/23 37492 -193.95.112.0/21 37492 -193.95.120.0/24 2609 -193.95.121.0/24 37492 -193.95.122.0/23 37492 -193.95.124.0/22 37492 -193.95.128.0/18 2110 -193.95.192.0/18 5603 -193.96.0.0/20 702 -193.96.16.0/21 702 -193.96.24.0/24 29670 -193.96.25.0/24 702 -193.96.26.0/23 702 -193.96.28.0/24 15743 -193.96.29.0/24 702 -193.96.30.0/23 702 -193.96.32.0/23 702 -193.96.34.0/23 2830 -193.96.36.0/22 702 -193.96.40.0/21 2830 -193.96.48.0/20 702 -193.96.64.0/19 702 -193.96.96.0/21 51964 -193.96.104.0/24 702 -193.96.105.0/24 21192 -193.96.106.0/23 702 -193.96.108.0/23 174 -193.96.110.0/23 702 -193.96.112.0/21 15486 -193.96.120.0/21 702 -193.96.128.0/20 20570 -193.96.144.0/21 702 -193.96.152.0/22 702 -193.96.156.0/23 2830 -193.96.158.0/23 702 -193.96.160.0/22 702 -193.96.164.0/23 702 -193.96.166.0/24 702 -193.96.167.0/24 20765 -193.96.168.0/22 702 -193.96.172.0/24 702 -193.96.173.0/24 25394 -193.96.174.0/23 702 -193.96.176.0/21 702 -193.96.184.0/22 702 -193.96.188.0/24 8928 -193.96.189.0/24 702 -193.96.190.0/23 702 -193.96.192.0/19 702 -193.96.224.0/24 49009 -193.96.225.0/24 702 -193.96.226.0/24 8767 -193.96.227.0/24 702 -193.96.228.0/23 702 -193.96.230.0/24 3209 -193.96.231.0/24 702 -193.96.232.0/23 3320 -193.96.234.0/23 702 -193.96.236.0/23 8426 -193.96.238.0/24 8881 -193.96.239.0/24 702 -193.96.240.0/24 9145 -193.96.241.0/24 702 -193.96.242.0/24 702 -193.96.243.0/24 12502 -193.96.244.0/22 702 -193.96.248.0/21 702 -193.97.0.0/17 702 -193.97.128.0/24 3209 -193.97.129.0/24 5539 -193.97.130.0/23 702 -193.97.132.0/22 702 -193.97.136.0/24 702 -193.97.137.0/24 9022 -193.97.138.0/23 702 -193.97.140.0/24 702 -193.97.141.0/24 2830 -193.97.142.0/24 702 -193.97.143.0/24 57224 -193.97.144.0/20 702 -193.97.160.0/21 702 -193.97.168.0/21 28940 -193.97.176.0/21 3209 -193.97.184.0/23 15404 -193.97.186.0/24 15404 -193.97.187.0/24 702 -193.97.188.0/22 702 -193.97.192.0/19 702 -193.97.224.0/22 702 -193.97.228.0/24 702 -193.97.229.0/24 15779 -193.97.230.0/23 702 -193.97.232.0/22 702 -193.97.236.0/23 702 -193.97.238.0/24 3320 -193.97.239.0/24 702 -193.97.240.0/20 702 -193.98.0.0/24 702 -193.98.1.0/24 15743 -193.98.2.0/23 702 -193.98.4.0/22 702 -193.98.8.0/22 702 -193.98.12.0/23 702 -193.98.14.0/24 702 -193.98.15.0/24 24989 -193.98.16.0/20 702 -193.98.32.0/21 702 -193.98.40.0/22 8881 -193.98.44.0/22 702 -193.98.48.0/20 702 -193.98.64.0/20 6833 -193.98.80.0/20 702 -193.98.96.0/21 702 -193.98.104.0/22 702 -193.98.108.0/24 2830 -193.98.109.0/24 702 -193.98.110.0/24 5605 -193.98.111.0/24 702 -193.98.112.0/21 21413 -193.98.120.0/21 702 -193.98.128.0/20 702 -193.98.144.0/21 702 -193.98.152.0/22 702 -193.98.156.0/24 8220 -193.98.157.0/24 702 -193.98.158.0/23 702 -193.98.160.0/22 702 -193.98.164.0/23 702 -193.98.166.0/24 702 -193.98.167.0/24 8767 -193.98.168.0/21 702 -193.98.176.0/22 702 -193.98.180.0/24 702 -193.98.181.0/24 3320 -193.98.182.0/23 702 -193.98.184.0/21 702 -193.98.192.0/20 702 -193.98.208.0/21 702 -193.98.216.0/22 702 -193.98.220.0/24 702 -193.98.221.0/24 2830 -193.98.222.0/23 702 -193.98.224.0/24 3320 -193.98.225.0/24 702 -193.98.226.0/23 702 -193.98.228.0/24 702 -193.98.229.0/24 8881 -193.98.230.0/23 702 -193.98.232.0/21 702 -193.98.240.0/20 702 -193.99.0.0/18 702 -193.99.64.0/21 702 -193.99.72.0/21 197491 -193.99.80.0/23 702 -193.99.82.0/24 702 -193.99.83.0/24 8767 -193.99.84.0/22 702 -193.99.88.0/21 702 -193.99.96.0/20 3320 -193.99.112.0/20 702 -193.99.128.0/20 702 -193.99.144.0/24 12306 -193.99.145.0/24 15743 -193.99.146.0/23 702 -193.99.148.0/22 702 -193.99.152.0/24 702 -193.99.153.0/24 20676 -193.99.154.0/23 702 -193.99.156.0/22 702 -193.99.160.0/21 8881 -193.99.168.0/21 702 -193.99.176.0/20 702 -193.99.192.0/20 702 -193.99.208.0/22 702 -193.99.212.0/23 702 -193.99.214.0/23 24926 -193.99.216.0/21 702 -193.99.224.0/20 702 -193.99.240.0/22 702 -193.99.244.0/23 702 -193.99.246.0/24 57911 -193.99.247.0/24 702 -193.99.248.0/24 702 -193.99.249.0/24 41699 -193.99.250.0/23 702 -193.99.252.0/22 702 -193.100.0.0/24 702 -193.100.1.0/24 3320 -193.100.2.0/23 3320 -193.100.4.0/22 702 -193.100.8.0/21 702 -193.100.16.0/22 702 -193.100.20.0/22 197491 -193.100.24.0/21 702 -193.100.32.0/19 12422 -193.100.64.0/19 60789 -193.100.96.0/20 702 -193.100.112.0/21 702 -193.100.120.0/22 702 -193.100.124.0/23 21063 -193.100.126.0/23 702 -193.100.128.0/19 702 -193.100.160.0/22 702 -193.100.164.0/23 702 -193.100.166.0/24 702 -193.100.167.0/24 8220 -193.100.168.0/21 702 -193.100.176.0/20 702 -193.100.192.0/20 702 -193.100.208.0/24 702 -193.100.209.0/24 20676 -193.100.210.0/23 702 -193.100.212.0/22 702 -193.100.216.0/21 702 -193.100.224.0/23 702 -193.100.226.0/24 702 -193.100.227.0/24 680 -193.100.228.0/22 702 -193.100.232.0/24 15743 -193.100.233.0/24 702 -193.100.234.0/23 702 -193.100.236.0/22 702 -193.100.240.0/22 702 -193.100.244.0/23 702 -193.100.246.0/23 6453 -193.100.248.0/22 3320 -193.100.252.0/24 3320 -193.100.253.0/24 702 -193.100.254.0/24 8220 -193.100.255.0/24 702 -193.101.0.0/22 702 -193.101.4.0/23 8881 -193.101.6.0/23 702 -193.101.8.0/23 702 -193.101.10.0/24 702 -193.101.11.0/24 15363 -193.101.12.0/22 3320 -193.101.16.0/21 702 -193.101.24.0/21 15363 -193.101.32.0/21 702 -193.101.40.0/22 702 -193.101.44.0/23 702 -193.101.46.0/24 702 -193.101.47.0/24 8893 -193.101.48.0/21 702 -193.101.56.0/24 702 -193.101.57.0/24 3320 -193.101.58.0/24 5605 -193.101.59.0/24 702 -193.101.60.0/22 702 -193.101.64.0/23 702 -193.101.66.0/24 702 -193.101.67.0/24 33846 -193.101.68.0/24 3320 -193.101.69.0/24 702 -193.101.70.0/23 702 -193.101.72.0/21 702 -193.101.80.0/20 702 -193.101.96.0/20 702 -193.101.112.0/21 702 -193.101.120.0/23 15943 -193.101.122.0/23 702 -193.101.124.0/22 702 -193.101.128.0/22 3320 -193.101.132.0/24 702 -193.101.133.0/24 2830 -193.101.134.0/23 702 -193.101.136.0/23 702 -193.101.138.0/24 702 -193.101.139.0/24 3320 -193.101.140.0/23 702 -193.101.142.0/24 2830 -193.101.143.0/24 702 -193.101.144.0/22 2830 -193.101.148.0/22 702 -193.101.152.0/21 702 -193.101.160.0/23 702 -193.101.162.0/23 3320 -193.101.164.0/23 702 -193.101.166.0/24 702 -193.101.167.0/24 8426 -193.101.168.0/21 13054 -193.101.176.0/23 702 -193.101.178.0/24 702 -193.101.179.0/24 48173 -193.101.180.0/22 702 -193.101.184.0/24 199421 -193.101.185.0/24 702 -193.101.186.0/23 702 -193.101.188.0/22 702 -193.101.192.0/20 702 -193.101.208.0/21 702 -193.101.216.0/22 702 -193.101.220.0/23 3209 -193.101.222.0/23 702 -193.101.224.0/20 702 -193.101.240.0/21 702 -193.101.248.0/23 702 -193.101.250.0/24 9145 -193.101.251.0/24 702 -193.101.252.0/22 702 -193.102.0.0/21 702 -193.102.8.0/23 702 -193.102.10.0/24 8881 -193.102.11.0/24 702 -193.102.12.0/23 15943 -193.102.14.0/24 15943 -193.102.15.0/24 702 -193.102.16.0/21 702 -193.102.24.0/24 702 -193.102.25.0/24 57154 -193.102.26.0/23 702 -193.102.28.0/22 702 -193.102.32.0/22 20765 -193.102.36.0/22 702 -193.102.40.0/22 702 -193.102.44.0/24 702 -193.102.45.0/24 8767 -193.102.46.0/23 702 -193.102.48.0/21 702 -193.102.56.0/23 702 -193.102.58.0/24 15943 -193.102.59.0/24 20740 -193.102.60.0/22 702 -193.102.64.0/21 702 -193.102.72.0/23 197491 -193.102.74.0/24 8220 -193.102.75.0/24 21263 -193.102.76.0/24 702 -193.102.77.0/24 58092 -193.102.78.0/23 58092 -193.102.80.0/21 702 -193.102.88.0/22 12638 -193.102.92.0/22 702 -193.102.96.0/19 702 -193.102.128.0/22 21192 -193.102.132.0/24 8220 -193.102.133.0/24 702 -193.102.134.0/23 702 -193.102.136.0/24 3320 -193.102.137.0/24 702 -193.102.138.0/23 702 -193.102.140.0/22 702 -193.102.144.0/23 24989 -193.102.146.0/23 702 -193.102.148.0/22 702 -193.102.152.0/24 702 -193.102.153.0/24 3320 -193.102.154.0/24 702 -193.102.155.0/24 9145 -193.102.156.0/23 702 -193.102.158.0/23 3209 -193.102.160.0/22 702 -193.102.164.0/23 702 -193.102.166.0/24 702 -193.102.167.0/24 3320 -193.102.168.0/22 702 -193.102.172.0/24 702 -193.102.173.0/24 3209 -193.102.174.0/24 29367 -193.102.175.0/24 702 -193.102.176.0/23 702 -193.102.178.0/24 702 -193.102.179.0/24 3320 -193.102.180.0/22 702 -193.102.184.0/24 24989 -193.102.185.0/24 702 -193.102.186.0/23 702 -193.102.188.0/24 702 -193.102.189.0/24 13039 -193.102.190.0/23 702 -193.102.192.0/21 702 -193.102.200.0/23 702 -193.102.202.0/24 2830 -193.102.203.0/24 702 -193.102.204.0/22 702 -193.102.208.0/24 9083 -193.102.209.0/24 702 -193.102.210.0/23 702 -193.102.212.0/22 702 -193.102.216.0/21 702 -193.102.224.0/23 702 -193.102.226.0/24 702 -193.102.227.0/24 5605 -193.102.228.0/22 702 -193.102.232.0/21 702 -193.102.240.0/22 9211 -193.102.244.0/22 702 -193.102.248.0/21 702 -193.103.0.0/24 702 -193.103.1.0/24 24926 -193.103.2.0/23 24926 -193.103.4.0/22 24926 -193.103.8.0/21 24926 -193.103.16.0/20 24926 -193.103.32.0/19 24926 -193.103.64.0/18 24926 -193.103.128.0/24 702 -193.103.129.0/24 29367 -193.103.130.0/23 702 -193.103.132.0/22 702 -193.103.136.0/21 702 -193.103.144.0/22 702 -193.103.148.0/24 51964 -193.103.149.0/24 702 -193.103.150.0/23 702 -193.103.152.0/21 702 -193.103.160.0/22 702 -193.103.164.0/24 8687 -193.103.165.0/24 3320 -193.103.166.0/23 702 -193.103.168.0/21 702 -193.103.176.0/20 702 -193.103.192.0/20 6453 -193.103.208.0/20 702 -193.103.224.0/19 702 -193.104.0.0/24 41072 -193.104.1.0/24 6830 -193.104.2.0/24 49708 -193.104.3.0/24 51053 -193.104.4.0/24 6461 -193.104.5.0/24 49884 -193.104.7.0/24 207886 -193.104.8.0/24 59943 -193.104.9.0/24 49871 -193.104.10.0/24 49927 -193.104.12.0/24 207886 -193.104.13.0/24 49875 -193.104.14.0/24 31430 -193.104.16.0/24 49883 -193.104.17.0/24 50097 -193.104.18.0/24 30742 -193.104.19.0/24 16276 -193.104.20.0/24 47644 -193.104.22.0/24 35088 -193.104.23.0/24 49896 -193.104.24.0/24 49955 -193.104.25.0/24 205237 -193.104.26.0/24 20755 -193.104.27.0/24 42322 -193.104.28.0/24 49939 -193.104.30.0/24 20703 -193.104.31.0/24 48426 -193.104.32.0/24 61162 -193.104.34.0/24 199994 -193.104.35.0/24 34119 -193.104.36.0/24 42929 -193.104.37.0/24 197690 -193.104.39.0/24 9149 -193.104.41.0/24 207886 -193.104.42.0/24 50185 -193.104.43.0/24 49930 -193.104.44.0/24 42976 -193.104.45.0/24 49946 -193.104.46.0/24 196806 -193.104.47.0/24 49938 -193.104.48.0/24 49923 -193.104.49.0/24 3209 -193.104.50.0/24 29649 -193.104.51.0/24 25412 -193.104.52.0/24 49941 -193.104.53.0/24 196732 -193.104.54.0/24 49881 -193.104.55.0/24 62363 -193.104.57.0/24 49953 -193.104.58.0/24 49982 -193.104.59.0/24 50197 -193.104.60.0/24 49960 -193.104.61.0/24 50117 -193.104.63.0/24 206166 -193.104.64.0/24 198419 -193.104.66.0/24 42652 -193.104.67.0/24 207886 -193.104.68.0/24 48164 -193.104.69.0/24 49994 -193.104.70.0/24 41551 -193.104.71.0/24 50014 -193.104.72.0/24 50036 -193.104.73.0/24 49990 -193.104.74.0/24 58091 -193.104.75.0/24 49996 -193.104.77.0/24 50006 -193.104.78.0/24 196839 -193.104.79.0/24 50020 -193.104.81.0/24 50028 -193.104.82.0/24 8447 -193.104.83.0/24 3308 -193.104.84.0/24 3320 -193.104.85.0/24 50012 -193.104.86.0/24 3269 -193.104.87.0/24 50038 -193.104.88.0/24 50426 -193.104.89.0/24 50078 -193.104.90.0/24 3320 -193.104.91.0/24 50039 -193.104.92.0/24 16351 -193.104.95.0/24 50034 -193.104.96.0/24 43411 -193.104.97.0/24 50051 -193.104.99.0/24 20853 -193.104.100.0/24 33885 -193.104.101.0/24 50053 -193.104.102.0/24 8706 -193.104.104.0/24 34141 -193.104.105.0/24 48598 -193.104.107.0/24 196674 -193.104.108.0/24 25577 -193.104.109.0/24 41077 -193.104.111.0/24 15879 -193.104.112.0/24 51368 -193.104.113.0/24 44574 -193.104.114.0/24 50062 -193.104.115.0/24 50079 -193.104.116.0/24 41622 -193.104.117.0/24 50865 -193.104.119.0/24 50081 -193.104.121.0/24 196783 -193.104.123.0/24 50080 -193.104.124.0/24 34984 -193.104.125.0/24 50143 -193.104.126.0/24 43864 -193.104.127.0/24 16173 -193.104.128.0/24 25086 -193.104.129.0/24 33915 -193.104.132.0/24 50110 -193.104.133.0/24 21437 -193.104.134.0/24 50093 -193.104.135.0/24 42541 -193.104.136.0/24 41973 -193.104.137.0/24 50112 -193.104.138.0/24 50111 -193.104.139.0/24 199063 -193.104.140.0/24 48210 -193.104.143.0/24 196850 -193.104.148.0/24 6730 -193.104.149.0/24 198523 -193.104.150.0/24 50137 -193.104.152.0/24 25546 -193.104.155.0/24 50145 -193.104.156.0/24 6873 -193.104.157.0/24 50268 -193.104.158.0/24 202213 -193.104.159.0/24 6848 -193.104.160.0/24 50171 -193.104.161.0/24 196855 -193.104.162.0/24 50172 -193.104.163.0/24 25552 -193.104.164.0/24 6461 -193.104.165.0/24 50194 -193.104.166.0/24 34986 -193.104.167.0/24 6830 -193.104.169.0/24 45019 -193.104.170.0/24 205216 -193.104.171.0/24 62319 -193.104.172.0/24 196687 -193.104.173.0/24 50209 -193.104.174.0/24 41969 -193.104.175.0/24 8619 -193.104.177.0/24 50225 -193.104.178.0/24 50221 -193.104.180.0/24 50220 -193.104.181.0/24 8566 -193.104.182.0/24 47795 -193.104.183.0/24 196825 -193.104.184.0/24 50243 -193.104.185.0/24 34617 -193.104.186.0/24 58073 -193.104.188.0/24 201172 -193.104.189.0/24 42824 -193.104.191.0/24 50279 -193.104.192.0/24 15084 -193.104.193.0/24 16294 -193.104.194.0/24 199421 -193.104.195.0/24 50248 -193.104.197.0/24 1299 -193.104.199.0/24 196869 -193.104.200.0/24 60144 -193.104.201.0/24 50264 -193.104.202.0/24 50346 -193.104.203.0/24 50288 -193.104.204.0/24 51549 -193.104.205.0/24 42845 -193.104.206.0/24 50320 -193.104.207.0/24 42974 -193.104.208.0/24 50305 -193.104.209.0/24 50298 -193.104.210.0/24 196877 -193.104.211.0/24 1299 -193.104.212.0/24 34837 -193.104.213.0/24 50303 -193.104.214.0/24 50989 -193.104.215.0/24 44786 -193.104.216.0/24 12748 -193.104.217.0/24 50420 -193.104.218.0/24 50335 -193.104.219.0/24 60781 -193.104.220.0/24 16075 -193.104.222.0/24 1299 -193.104.223.0/24 196880 -193.104.224.0/22 51583 -193.104.228.0/24 206606 -193.104.230.0/24 50353 -193.104.231.0/24 15422 -193.104.232.0/24 196913 -193.104.234.0/24 47470 -193.104.235.0/24 196882 -193.104.236.0/24 50344 -193.104.237.0/24 196884 -193.104.238.0/24 50350 -193.104.239.0/24 197220 -193.104.240.0/24 48894 -193.104.241.0/24 50356 -193.104.242.0/24 50361 -193.104.243.0/24 59434 -193.104.244.0/24 196887 -193.104.245.0/24 34504 -193.104.246.0/24 31027 -193.104.248.0/24 50687 -193.104.249.0/24 50375 -193.104.252.0/24 34596 -193.104.253.0/24 41798 -193.104.254.0/24 39249 -193.105.0.0/24 203924 -193.105.1.0/24 6758 -193.105.2.0/24 42915 -193.105.3.0/24 15879 -193.105.4.0/24 6799 -193.105.5.0/24 12553 -193.105.7.0/24 35614 -193.105.9.0/24 197742 -193.105.11.0/24 47456 -193.105.12.0/24 20559 -193.105.13.0/24 42987 -193.105.14.0/24 57767 -193.105.16.0/24 198655 -193.105.17.0/24 50407 -193.105.18.0/24 204599 -193.105.19.0/24 50441 -193.105.20.0/24 50423 -193.105.22.0/24 196895 -193.105.23.0/24 50410 -193.105.24.0/24 12741 -193.105.25.0/24 41552 -193.105.26.0/24 50982 -193.105.27.0/24 50425 -193.105.28.0/24 34596 -193.105.29.0/24 196909 -193.105.32.0/24 50584 -193.105.33.0/24 29396 -193.105.35.0/24 196802 -193.105.36.0/24 3257 -193.105.37.0/24 196914 -193.105.38.0/24 50455 -193.105.39.0/24 34291 -193.105.40.0/24 196923 -193.105.41.0/24 48385 -193.105.43.0/24 34173 -193.105.44.0/24 42525 -193.105.45.0/24 12774 -193.105.46.0/24 24898 -193.105.47.0/24 49882 -193.105.48.0/24 196902 -193.105.49.0/24 47205 -193.105.50.0/24 44858 -193.105.51.0/24 25577 -193.105.52.0/24 50462 -193.105.53.0/24 201788 -193.105.54.0/24 50468 -193.105.55.0/24 3320 -193.105.56.0/24 50475 -193.105.58.0/24 34596 -193.105.59.0/24 50473 -193.105.60.0/24 41764 -193.105.61.0/24 12703 -193.105.62.0/24 196906 -193.105.63.0/24 50493 -193.105.64.0/24 8976 -193.105.65.0/24 50483 -193.105.67.0/24 24728 -193.105.68.0/24 3320 -193.105.69.0/24 15463 -193.105.70.0/24 50494 -193.105.72.0/24 50663 -193.105.73.0/24 6696 -193.105.74.0/24 43009 -193.105.75.0/24 5588 -193.105.76.0/24 8236 -193.105.78.0/24 57185 -193.105.79.0/24 42392 -193.105.81.0/24 34596 -193.105.83.0/24 22769 -193.105.84.0/24 22769 -193.105.85.0/24 50501 -193.105.86.0/24 3330 -193.105.87.0/24 50508 -193.105.88.0/24 22769 -193.105.89.0/24 47805 -193.105.91.0/24 196783 -193.105.92.0/24 57194 -193.105.93.0/24 34665 -193.105.94.0/24 50587 -193.105.95.0/24 22769 -193.105.97.0/24 50585 -193.105.99.0/24 199391 -193.105.100.0/24 56577 -193.105.103.0/24 203441 -193.105.105.0/24 12502 -193.105.106.0/24 51462 -193.105.107.0/24 50674 -193.105.109.0/24 5408 -193.105.110.0/24 50557 -193.105.111.0/24 50737 -193.105.112.0/24 31005 -193.105.113.0/24 3246 -193.105.114.0/24 58096 -193.105.115.0/24 50592 -193.105.119.0/24 6453 -193.105.120.0/24 198047 -193.105.122.0/24 196935 -193.105.123.0/24 1759 -193.105.124.0/24 196939 -193.105.125.0/24 50599 -193.105.126.0/24 39121 -193.105.127.0/24 50634 -193.105.128.0/24 3257 -193.105.130.0/24 3301 -193.105.131.0/24 57842 -193.105.132.0/24 58289 -193.105.133.0/24 6696 -193.105.134.0/24 42237 -193.105.135.0/24 34665 -193.105.136.0/24 50609 -193.105.137.0/24 8351 -193.105.139.0/24 44786 -193.105.140.0/24 44786 -193.105.142.0/24 44185 -193.105.143.0/24 50638 -193.105.144.0/24 50622 -193.105.145.0/24 56778 -193.105.146.0/24 47205 -193.105.147.0/24 3209 -193.105.148.0/24 196876 -193.105.150.0/24 59676 -193.105.152.0/24 196947 -193.105.153.0/24 6798 -193.105.155.0/24 196948 -193.105.156.0/24 8369 -193.105.157.0/24 24806 -193.105.158.0/23 24806 -193.105.160.0/24 1342 -193.105.161.0/24 13154 -193.105.163.0/24 13004 -193.105.164.0/24 43384 -193.105.165.0/24 7489 -193.105.166.0/24 50731 -193.105.167.0/24 196951 -193.105.168.0/24 205584 -193.105.169.0/24 50654 -193.105.170.0/24 42044 -193.105.172.0/24 25577 -193.105.174.0/24 57518 -193.105.175.0/24 51031 -193.105.176.0/24 208913 -193.105.177.0/24 7489 -193.105.178.0/24 42963 -193.105.180.0/24 43939 -193.105.181.0/24 47692 -193.105.182.0/24 196962 -193.105.184.0/24 7489 -193.105.185.0/24 50680 -193.105.186.0/24 35676 -193.105.188.0/24 60945 -193.105.190.0/24 31027 -193.105.191.0/24 196982 -193.105.192.0/24 196972 -193.105.193.0/24 29647 -193.105.196.0/24 47697 -193.105.197.0/24 174 -193.105.198.0/24 50725 -193.105.199.0/24 50744 -193.105.201.0/24 50730 -193.105.202.0/24 197003 -193.105.204.0/24 50718 -193.105.205.0/24 50720 -193.105.206.0/24 50721 -193.105.207.0/24 7489 -193.105.209.0/24 196990 -193.105.210.0/24 57954 -193.105.211.0/24 196971 -193.105.212.0/24 50756 -193.105.215.0/24 31673 -193.105.216.0/24 50748 -193.105.219.0/24 196975 -193.105.220.0/24 31027 -193.105.221.0/24 50759 -193.105.222.0/24 50762 -193.105.223.0/24 51215 -193.105.224.0/24 196992 -193.105.225.0/24 50755 -193.105.226.0/24 3246 -193.105.227.0/24 50786 -193.105.228.0/24 196983 -193.105.229.0/24 50777 -193.105.230.0/24 8881 -193.105.231.0/24 42040 -193.105.233.0/24 51571 -193.105.235.0/24 200364 -193.105.236.0/24 50787 -193.105.237.0/24 197229 -193.105.238.0/24 50778 -193.105.239.0/24 50515 -193.105.241.0/24 50381 -193.105.242.0/24 5588 -193.105.243.0/24 15924 -193.105.246.0/24 3209 -193.105.247.0/24 50965 -193.105.248.0/24 196999 -193.105.249.0/24 50847 -193.105.251.0/24 196652 -193.105.252.0/24 50812 -193.105.253.0/24 50813 -193.105.254.0/24 50808 -193.105.255.0/24 197007 -193.106.0.0/22 59616 -193.106.4.0/22 50174 -193.106.8.0/22 200996 -193.106.16.0/22 25220 -193.106.20.0/22 49223 -193.106.24.0/22 48117 -193.106.28.0/22 50297 -193.106.32.0/22 207253 -193.106.36.0/22 35283 -193.106.40.0/22 44905 -193.106.44.0/22 49909 -193.106.48.0/22 50251 -193.106.52.0/22 50237 -193.106.56.0/22 42510 -193.106.60.0/22 50281 -193.106.64.0/23 34092 -193.106.66.0/24 57033 -193.106.67.0/24 60860 -193.106.68.0/22 50265 -193.106.72.0/22 50283 -193.106.76.0/22 21021 -193.106.80.0/22 3326 -193.106.84.0/22 30838 -193.106.88.0/22 48725 -193.106.92.0/22 48614 -193.106.96.0/23 9009 -193.106.100.0/22 42547 -193.106.104.0/22 47544 -193.106.108.0/22 196879 -193.106.116.0/22 34019 -193.106.120.0/22 62319 -193.106.124.0/22 50357 -193.106.128.0/22 61154 -193.106.132.0/22 50433 -193.106.136.0/22 50373 -193.106.140.0/22 5400 -193.106.144.0/22 50392 -193.106.148.0/22 49534 -193.106.152.0/22 206314 -193.106.156.0/22 196891 -193.106.160.0/22 43936 -193.106.164.0/22 42541 -193.106.168.0/22 50427 -193.106.172.0/22 50465 -193.106.176.0/22 50429 -193.106.180.0/22 50507 -193.106.184.0/22 42238 -193.106.192.0/22 196901 -193.106.196.0/22 9009 -193.106.200.0/22 50459 -193.106.204.0/22 50454 -193.106.208.0/23 50467 -193.106.211.0/24 29637 -193.106.212.0/22 50466 -193.106.216.0/22 50505 -193.106.220.0/22 50204 -193.106.224.0/22 60254 -193.106.228.0/22 50767 -193.106.232.0/22 47635 -193.106.236.0/23 47550 -193.106.238.0/24 57258 -193.106.240.0/22 8439 -193.106.244.0/22 50481 -193.106.248.0/22 50499 -193.106.252.0/23 28969 -193.106.254.0/23 6799 -193.107.0.0/22 50488 -193.107.4.0/22 28964 -193.107.8.0/22 196980 -193.107.16.0/22 21001 -193.107.20.0/22 197385 -193.107.24.0/22 34190 -193.107.28.0/22 50562 -193.107.32.0/22 50561 -193.107.36.0/24 201200 -193.107.37.0/24 31083 -193.107.39.0/24 31083 -193.107.40.0/22 48004 -193.107.52.0/22 50048 -193.107.56.0/22 50535 -193.107.60.0/22 42393 -193.107.64.0/22 47844 -193.107.68.0/22 201200 -193.107.72.0/22 50633 -193.107.76.0/22 202265 -193.107.80.0/23 50576 -193.107.82.0/24 34092 -193.107.83.0/24 60860 -193.107.84.0/22 50613 -193.107.88.0/22 48505 -193.107.92.0/22 13259 -193.107.96.0/22 48480 -193.107.100.0/22 50671 -193.107.104.0/22 50594 -193.107.108.0/24 50027 -193.107.109.0/24 51848 -193.107.110.0/23 51848 -193.107.112.0/22 48004 -193.107.116.0/22 786 -193.107.120.0/22 31400 -193.107.124.0/22 50620 -193.107.128.0/22 49465 -193.107.132.0/22 48748 -193.107.136.0/22 50574 -193.107.140.0/22 48470 -193.107.144.0/22 8649 -193.107.148.0/22 49120 -193.107.152.0/22 21367 -193.107.156.0/22 50657 -193.107.160.0/22 47232 -193.107.164.0/23 15694 -193.107.168.0/22 50648 -193.107.172.0/22 196957 -193.107.176.0/22 50662 -193.107.180.0/22 50750 -193.107.184.0/22 25415 -193.107.188.0/22 47378 -193.107.192.0/22 44041 -193.107.196.0/22 43939 -193.107.200.0/23 30860 -193.107.202.0/24 30860 -193.107.203.0/24 196860 -193.107.204.0/24 50763 -193.107.205.0/24 198362 -193.107.206.0/23 50763 -193.107.208.0/22 61317 -193.107.212.0/22 29649 -193.107.216.0/22 24000 -193.107.220.0/22 39647 -193.107.224.0/22 13121 -193.107.228.0/22 50727 -193.107.232.0/22 8359 -193.107.236.0/22 44128 -193.107.240.0/22 174 -193.107.244.0/24 197520 -193.107.245.0/24 209519 -193.107.246.0/23 209519 -193.107.248.0/22 50767 -193.107.252.0/22 196978 -193.108.0.0/22 197308 -193.108.4.0/23 197308 -193.108.6.0/24 197308 -193.108.8.0/21 20980 -193.108.16.0/24 43722 -193.108.17.0/24 4589 -193.108.18.0/24 20577 -193.108.19.0/24 21385 -193.108.21.0/24 20493 -193.108.24.0/24 20657 -193.108.27.0/24 12989 -193.108.29.0/24 20777 -193.108.31.0/24 34993 -193.108.32.0/23 16328 -193.108.34.0/23 20540 -193.108.36.0/23 48961 -193.108.38.0/23 20590 -193.108.42.0/23 20574 -193.108.44.0/23 25398 -193.108.46.0/23 132839 -193.108.48.0/22 3326 -193.108.52.0/22 208913 -193.108.56.0/22 20699 -193.108.60.0/22 35051 -193.108.68.0/23 206599 -193.108.70.0/24 6748 -193.108.71.0/24 8238 -193.108.72.0/21 20705 -193.108.80.0/21 20782 -193.108.88.0/24 21342 -193.108.89.0/24 20940 -193.108.90.0/24 20940 -193.108.91.0/24 21342 -193.108.92.0/24 23454 -193.108.93.0/24 34164 -193.108.94.0/24 20940 -193.108.95.0/24 34164 -193.108.96.0/23 132839 -193.108.100.0/23 16081 -193.108.102.0/23 20699 -193.108.104.0/23 20699 -193.108.106.0/23 20708 -193.108.108.0/23 20708 -193.108.110.0/23 202213 -193.108.112.0/22 2118 -193.108.116.0/23 61003 -193.108.118.0/24 61003 -193.108.120.0/22 20979 -193.108.124.0/22 34252 -193.108.128.0/24 3326 -193.108.129.0/24 21219 -193.108.130.0/23 49334 -193.108.132.0/23 5578 -193.108.134.0/23 51958 -193.108.136.0/23 42346 -193.108.138.0/23 28801 -193.108.140.0/23 3215 -193.108.142.0/23 50774 -193.108.144.0/23 12993 -193.108.146.0/24 12993 -193.108.148.0/22 21122 -193.108.152.0/23 34164 -193.108.154.0/24 20940 -193.108.155.0/24 35994 -193.108.157.0/24 17905 -193.108.158.0/24 22399 -193.108.159.0/24 15375 -193.108.160.0/23 20813 -193.108.162.0/23 20897 -193.108.164.0/23 21436 -193.108.166.0/23 43249 -193.108.168.0/23 8897 -193.108.170.0/23 21131 -193.108.172.0/23 1898 -193.108.174.0/24 20906 -193.108.175.0/24 15580 -193.108.176.0/24 6733 -193.108.179.0/24 24603 -193.108.180.0/24 3215 -193.108.181.0/24 42034 -193.108.182.0/24 5429 -193.108.184.0/24 20572 -193.108.185.0/24 12993 -193.108.186.0/24 12498 -193.108.188.0/24 3321 -193.108.190.0/24 12676 -193.108.191.0/24 39326 -193.108.192.0/24 10108 -193.108.193.0/24 21235 -193.108.194.0/24 20808 -193.108.195.0/24 20841 -193.108.196.0/24 43948 -193.108.197.0/24 16347 -193.108.199.0/24 8916 -193.108.201.0/24 6848 -193.108.202.0/24 20898 -193.108.203.0/24 16077 -193.108.204.0/24 21014 -193.108.205.0/24 21006 -193.108.206.0/23 58345 -193.108.209.0/24 20971 -193.108.210.0/24 60719 -193.108.212.0/24 25126 -193.108.213.0/24 20967 -193.108.214.0/24 20294 -193.108.215.0/24 202050 -193.108.216.0/24 198551 -193.108.217.0/24 9183 -193.108.218.0/24 29129 -193.108.219.0/24 202050 -193.108.220.0/24 199510 -193.108.221.0/24 41847 -193.108.222.0/24 9066 -193.108.226.0/23 20934 -193.108.230.0/23 58345 -193.108.232.0/23 21405 -193.108.234.0/23 35470 -193.108.236.0/23 20949 -193.108.238.0/24 51088 -193.108.239.0/24 199543 -193.108.240.0/24 209487 -193.108.241.0/24 51848 -193.108.242.0/23 201999 -193.108.244.0/22 20952 -193.108.248.0/22 12872 -193.108.252.0/22 20294 -193.109.0.0/24 203596 -193.109.1.0/24 12670 -193.109.2.0/24 198551 -193.109.3.0/24 12670 -193.109.4.0/22 20740 -193.109.8.0/22 21096 -193.109.14.0/23 44308 -193.109.16.0/20 24743 -193.109.32.0/21 21101 -193.109.40.0/21 21086 -193.109.48.0/23 3257 -193.109.50.0/23 29129 -193.109.52.0/23 8220 -193.109.54.0/23 8717 -193.109.56.0/23 3292 -193.109.58.0/23 198838 -193.109.60.0/24 52194 -193.109.61.0/24 59582 -193.109.63.0/24 16276 -193.109.68.0/23 57043 -193.109.70.0/23 49777 -193.109.72.0/23 21108 -193.109.74.0/23 29085 -193.109.76.0/23 25073 -193.109.78.0/23 50113 -193.109.80.0/24 21075 -193.109.81.0/24 18705 -193.109.82.0/24 17113 -193.109.83.0/24 21118 -193.109.84.0/24 50214 -193.109.85.0/24 9009 -193.109.86.0/24 21227 -193.109.87.0/24 15404 -193.109.88.0/24 44329 -193.109.89.0/24 25073 -193.109.90.0/24 1267 -193.109.91.0/24 21123 -193.109.92.0/24 202050 -193.109.93.0/24 12353 -193.109.94.0/24 202050 -193.109.95.0/24 49642 -193.109.96.0/22 20795 -193.109.100.0/22 9002 -193.109.104.0/22 21134 -193.109.112.0/24 5394 -193.109.113.0/24 25167 -193.109.114.0/24 21252 -193.109.115.0/24 21169 -193.109.116.0/24 21208 -193.109.119.0/24 21203 -193.109.120.0/24 49392 -193.109.121.0/24 15436 -193.109.122.0/24 12859 -193.109.123.0/24 21259 -193.109.124.0/24 16184 -193.109.125.0/24 15436 -193.109.127.0/24 21187 -193.109.128.0/23 21151 -193.109.130.0/23 21179 -193.109.132.0/23 21158 -193.109.134.0/23 196733 -193.109.138.0/23 21032 -193.109.140.0/23 50657 -193.109.142.0/23 21247 -193.109.144.0/22 21256 -193.109.148.0/24 200986 -193.109.151.0/24 200986 -193.109.160.0/22 45025 -193.109.164.0/22 3326 -193.109.168.0/22 12695 -193.109.172.0/22 43115 -193.109.176.0/21 39791 -193.109.184.0/21 50083 -193.109.192.0/21 21321 -193.109.200.0/21 21176 -193.109.208.0/24 204803 -193.109.212.0/24 21328 -193.109.213.0/24 49392 -193.109.214.0/24 20676 -193.109.215.0/24 57278 -193.109.216.0/24 50831 -193.109.217.0/24 49392 -193.109.218.0/24 44138 -193.109.221.0/24 49392 -193.109.222.0/24 8793 -193.109.224.0/24 207828 -193.109.225.0/24 21344 -193.109.226.0/24 207828 -193.109.227.0/24 21441 -193.109.228.0/24 34762 -193.109.229.0/24 16085 -193.109.230.0/24 207828 -193.109.231.0/24 21467 -193.109.232.0/24 21362 -193.109.234.0/24 21474 -193.109.235.0/24 21420 -193.109.236.0/24 49871 -193.109.237.0/24 59752 -193.109.238.0/24 202283 -193.109.239.0/24 200573 -193.109.240.0/24 21257 -193.109.241.0/24 13249 -193.109.242.0/23 2861 -193.109.244.0/23 20983 -193.109.246.0/23 204343 -193.109.248.0/23 21310 -193.109.250.0/23 12670 -193.109.254.0/23 21345 -193.110.0.0/22 202520 -193.110.6.0/23 24940 -193.110.8.0/23 21061 -193.110.10.0/23 8971 -193.110.14.0/23 21401 -193.110.16.0/22 21312 -193.110.20.0/22 21374 -193.110.24.0/22 21385 -193.110.28.0/22 24864 -193.110.32.0/21 1234 -193.110.40.0/21 198726 -193.110.48.0/23 24652 -193.110.51.0/24 24652 -193.110.52.0/24 24652 -193.110.56.0/21 20845 -193.110.64.0/22 21490 -193.110.68.0/22 33808 -193.110.72.0/22 196638 -193.110.76.0/22 42512 -193.110.80.0/24 5588 -193.110.82.0/24 207828 -193.110.84.0/24 3257 -193.110.85.0/24 21434 -193.110.86.0/24 35459 -193.110.87.0/24 24584 -193.110.88.0/24 21448 -193.110.89.0/24 24579 -193.110.90.0/24 25538 -193.110.91.0/24 34665 -193.110.92.0/24 6848 -193.110.94.0/24 16172 -193.110.95.0/24 15600 -193.110.96.0/23 41005 -193.110.98.0/23 24918 -193.110.100.0/23 1820 -193.110.102.0/23 3320 -193.110.104.0/23 37453 -193.110.106.0/23 21488 -193.110.108.0/23 16273 -193.110.110.0/23 719 -193.110.112.0/22 9205 -193.110.116.0/22 24989 -193.110.120.0/22 5617 -193.110.124.0/22 24610 -193.110.128.0/24 9052 -193.110.129.0/24 24708 -193.110.130.0/24 21489 -193.110.132.0/24 34272 -193.110.134.0/23 35913 -193.110.137.0/24 24597 -193.110.138.0/24 9096 -193.110.139.0/24 24637 -193.110.140.0/24 29605 -193.110.142.0/24 24619 -193.110.144.0/24 41737 -193.110.145.0/24 24629 -193.110.146.0/24 56693 -193.110.149.0/24 24650 -193.110.150.0/24 20676 -193.110.151.0/24 3269 -193.110.152.0/24 9159 -193.110.154.0/24 16085 -193.110.155.0/24 5532 -193.110.157.0/24 3265 -193.110.159.0/24 24770 -193.110.160.0/23 35913 -193.110.162.0/23 24593 -193.110.164.0/23 44575 -193.110.168.0/23 41737 -193.110.172.0/23 29534 -193.110.174.0/23 205028 -193.110.176.0/23 24609 -193.110.178.0/23 39257 -193.110.180.0/23 12628 -193.110.182.0/23 24656 -193.110.184.0/23 24681 -193.110.186.0/23 16160 -193.110.188.0/23 24664 -193.110.192.0/22 31517 -193.110.196.0/22 203825 -193.110.200.0/22 54574 -193.110.204.0/22 24694 -193.110.208.0/24 12891 -193.110.209.0/24 9121 -193.110.210.0/23 12891 -193.110.212.0/22 12891 -193.110.216.0/21 21230 -193.110.228.0/22 29649 -193.110.232.0/22 50072 -193.110.236.0/22 44899 -193.110.240.0/21 21422 -193.110.248.0/21 42160 -193.111.0.0/23 1820 -193.111.2.0/23 24758 -193.111.4.0/23 35913 -193.111.6.0/23 34312 -193.111.8.0/23 24703 -193.111.10.0/23 24722 -193.111.12.0/23 201984 -193.111.15.0/24 12818 -193.111.16.0/23 47774 -193.111.18.0/23 35913 -193.111.20.0/23 24717 -193.111.22.0/23 24740 -193.111.24.0/23 15404 -193.111.26.0/23 15728 -193.111.30.0/23 133752 -193.111.33.0/24 59455 -193.111.34.0/24 51114 -193.111.35.0/24 15533 -193.111.36.0/24 24748 -193.111.37.0/24 24724 -193.111.38.0/24 24724 -193.111.39.0/24 24732 -193.111.41.0/24 24738 -193.111.42.0/24 25005 -193.111.46.0/24 24802 -193.111.48.0/23 41540 -193.111.50.0/23 1820 -193.111.52.0/22 202503 -193.111.56.0/22 42274 -193.111.60.0/22 56851 -193.111.64.0/23 12483 -193.111.66.0/23 201099 -193.111.68.0/23 38998 -193.111.70.0/23 24780 -193.111.73.0/24 207629 -193.111.75.0/24 30894 -193.111.76.0/24 209737 -193.111.77.0/24 60721 -193.111.78.0/24 60721 -193.111.79.0/24 203377 -193.111.82.0/24 24784 -193.111.83.0/24 34259 -193.111.84.0/24 21208 -193.111.85.0/24 24995 -193.111.87.0/24 48943 -193.111.89.0/24 199282 -193.111.90.0/23 3214 -193.111.93.0/24 1759 -193.111.95.0/24 34762 -193.111.96.0/22 24791 -193.111.100.0/22 35710 -193.111.104.0/22 24819 -193.111.108.0/22 24632 -193.111.112.0/23 24632 -193.111.114.0/23 24872 -193.111.116.0/23 50113 -193.111.118.0/23 1759 -193.111.120.0/23 44682 -193.111.122.0/23 24920 -193.111.124.0/23 50113 -193.111.126.0/23 25118 -193.111.128.0/21 8518 -193.111.144.0/22 16263 -193.111.152.0/22 42159 -193.111.156.0/22 24881 -193.111.161.0/24 8708 -193.111.162.0/24 24853 -193.111.163.0/24 24836 -193.111.165.0/24 30880 -193.111.166.0/24 24879 -193.111.167.0/24 24909 -193.111.168.0/24 202208 -193.111.169.0/24 12316 -193.111.170.0/23 203641 -193.111.172.0/24 24957 -193.111.173.0/24 24882 -193.111.174.0/24 202208 -193.111.176.0/22 24924 -193.111.180.0/22 43355 -193.111.184.0/22 9009 -193.111.188.0/22 24579 -193.111.194.0/23 8880 -193.111.196.0/23 203641 -193.111.198.0/23 24961 -193.111.200.0/23 29676 -193.111.202.0/23 49113 -193.111.204.0/23 25199 -193.111.206.0/23 12598 -193.111.208.0/22 25504 -193.111.212.0/22 8881 -193.111.216.0/22 24939 -193.111.220.0/22 3212 -193.111.224.0/24 197889 -193.111.225.0/24 702 -193.111.226.0/24 202208 -193.111.227.0/24 24894 -193.111.228.0/24 3265 -193.111.229.0/24 202208 -193.111.230.0/23 5089 -193.111.233.0/24 29222 -193.111.234.0/24 208048 -193.111.235.0/24 44285 -193.111.236.0/24 24928 -193.111.237.0/24 25101 -193.111.238.0/24 25102 -193.111.239.0/24 34379 -193.111.240.0/22 24999 -193.111.244.0/22 24589 -193.111.248.0/24 8100 -193.111.249.0/24 60945 -193.111.250.0/24 24961 -193.111.251.0/24 8100 -193.111.252.0/22 43966 -193.112.0.0/16 45090 -193.113.0.0/16 2856 -193.114.0.0/19 59126 -193.114.32.0/19 138384 -193.114.96.0/19 7545 -193.114.128.0/19 7545 -193.114.160.0/19 1290 -193.115.0.0/19 138384 -193.115.32.0/19 17529 -193.115.64.0/18 7545 -193.115.192.0/18 47474 -193.116.0.0/19 1290 -193.116.32.0/19 17529 -193.116.64.0/18 7545 -193.116.128.0/18 8220 -193.116.192.0/18 7545 -193.117.56.0/24 35575 -193.117.57.0/24 34282 -193.117.64.0/19 9351 -193.117.96.0/19 138384 -193.117.128.0/17 47474 -193.118.0.0/19 138384 -193.118.32.0/24 21859 -193.118.33.0/24 133865 -193.118.34.0/23 21859 -193.118.36.0/22 21859 -193.118.40.0/21 21859 -193.118.48.0/20 21859 -193.118.64.0/19 138384 -193.118.96.0/19 21859 -193.118.128.0/19 48582 -193.118.193.0/24 48582 -193.118.196.0/24 48582 -193.118.199.0/24 48582 -193.118.200.0/21 48582 -193.118.208.0/21 48582 -193.118.216.0/22 48582 -193.118.220.0/24 48582 -193.118.224.0/19 8220 -193.119.0.0/24 134684 -193.119.9.0/24 134684 -193.119.12.0/22 134684 -193.119.16.0/23 133858 -193.119.20.0/23 133858 -193.119.25.0/24 133858 -193.119.26.0/24 133858 -193.119.28.0/22 133858 -193.119.32.0/19 7545 -193.119.64.0/18 7545 -193.119.128.0/17 138384 -193.120.0.0/20 2110 -193.120.16.0/22 2110 -193.120.20.0/23 2110 -193.120.22.0/24 199256 -193.120.23.0/24 2110 -193.120.24.0/21 2110 -193.120.32.0/21 2110 -193.120.40.0/23 199256 -193.120.42.0/23 2110 -193.120.44.0/22 2110 -193.120.48.0/22 2110 -193.120.52.0/23 2110 -193.120.54.0/24 2110 -193.120.55.0/24 199256 -193.120.56.0/21 2110 -193.120.64.0/18 2110 -193.120.128.0/19 2110 -193.120.160.0/24 2110 -193.120.161.0/24 24622 -193.120.162.0/23 2110 -193.120.164.0/23 199256 -193.120.166.0/23 2110 -193.120.168.0/21 2110 -193.120.176.0/20 2110 -193.120.192.0/18 2110 -193.121.0.0/16 5432 -193.122.0.0/15 31898 -193.124.0.0/24 48347 -193.124.1.0/24 12479 -193.124.3.0/24 2118 -193.124.4.0/24 204117 -193.124.6.0/24 201631 -193.124.7.0/24 203307 -193.124.8.0/24 2118 -193.124.9.0/24 203307 -193.124.14.0/24 59790 -193.124.15.0/24 197695 -193.124.16.0/22 197695 -193.124.20.0/23 209706 -193.124.22.0/23 2118 -193.124.24.0/24 2118 -193.124.25.0/24 12479 -193.124.30.0/24 2118 -193.124.31.0/24 12479 -193.124.32.0/24 12479 -193.124.33.0/24 2118 -193.124.34.0/23 2118 -193.124.36.0/24 2118 -193.124.37.0/24 12479 -193.124.40.0/24 2118 -193.124.41.0/24 48347 -193.124.42.0/24 203524 -193.124.43.0/24 12479 -193.124.44.0/22 197695 -193.124.49.0/24 2118 -193.124.50.0/24 2118 -193.124.51.0/24 12479 -193.124.55.0/24 48347 -193.124.56.0/22 48347 -193.124.60.0/24 2118 -193.124.61.0/24 12479 -193.124.64.0/22 48347 -193.124.70.0/23 12479 -193.124.76.0/22 59790 -193.124.80.0/24 2118 -193.124.81.0/24 12479 -193.124.84.0/24 59790 -193.124.85.0/24 12479 -193.124.88.0/21 197695 -193.124.112.0/22 48347 -193.124.117.0/24 48347 -193.124.118.0/24 49189 -193.124.119.0/24 48347 -193.124.120.0/24 12479 -193.124.121.0/24 2118 -193.124.124.0/23 2118 -193.124.128.0/22 48347 -193.124.132.0/24 12479 -193.124.133.0/24 2118 -193.124.135.0/24 12479 -193.124.136.0/21 51402 -193.124.144.0/21 59790 -193.124.158.0/23 29076 -193.124.160.0/20 29256 -193.124.176.0/20 35196 -193.124.200.0/21 197695 -193.124.208.0/20 29256 -193.124.224.0/22 2148 -193.124.240.0/22 209519 -193.124.244.0/22 39441 -193.124.248.0/22 47253 -193.124.254.0/24 2118 -193.124.255.0/24 12479 -193.125.0.0/16 12430 -193.126.0.0/16 2860 -193.127.132.0/22 2134 -193.127.136.0/21 2134 -193.127.160.0/19 2134 -193.127.192.0/20 2134 -193.127.208.0/21 2134 -193.127.216.0/22 2134 -193.127.220.0/23 2134 -193.127.223.0/24 2134 -193.127.224.0/23 2134 -193.127.226.0/24 2134 -193.127.229.0/24 2134 -193.127.230.0/24 2134 -193.127.232.0/24 2134 -193.127.234.0/23 2134 -193.127.238.0/23 2134 -193.127.240.0/22 2134 -193.127.244.0/23 2134 -193.127.246.0/24 25006 -193.127.250.0/23 2134 -193.127.252.0/23 2134 -193.127.255.0/24 2134 -193.128.0.0/22 702 -193.128.4.0/23 702 -193.128.6.0/24 702 -193.128.7.0/24 29222 -193.128.8.0/21 702 -193.128.16.0/21 702 -193.128.24.0/22 702 -193.128.28.0/23 702 -193.128.30.0/24 702 -193.128.31.0/24 15568 -193.128.32.0/24 702 -193.128.33.0/24 14600 -193.128.34.0/23 702 -193.128.36.0/22 702 -193.128.40.0/21 702 -193.128.48.0/22 702 -193.128.52.0/23 30756 -193.128.54.0/23 702 -193.128.56.0/21 702 -193.128.64.0/21 702 -193.128.72.0/22 702 -193.128.76.0/24 15568 -193.128.77.0/24 702 -193.128.78.0/23 702 -193.128.80.0/20 702 -193.128.96.0/19 702 -193.128.128.0/19 702 -193.128.160.0/21 702 -193.128.168.0/22 702 -193.128.172.0/23 702 -193.128.174.0/24 702 -193.128.175.0/24 23088 -193.128.176.0/20 702 -193.128.192.0/20 15568 -193.128.208.0/20 702 -193.128.224.0/19 702 -193.129.0.0/17 702 -193.129.128.0/19 702 -193.129.160.0/21 702 -193.129.168.0/24 21464 -193.129.169.0/24 702 -193.129.170.0/23 702 -193.129.172.0/22 702 -193.129.176.0/20 702 -193.129.192.0/18 702 -193.130.0.0/21 702 -193.130.8.0/22 702 -193.130.12.0/23 702 -193.130.14.0/24 702 -193.130.15.0/24 786 -193.130.16.0/20 702 -193.130.32.0/21 702 -193.130.42.0/23 702 -193.130.44.0/22 702 -193.130.48.0/20 702 -193.130.64.0/18 702 -193.130.128.0/19 702 -193.130.160.0/20 702 -193.130.176.0/22 702 -193.130.180.0/23 702 -193.130.182.0/24 2830 -193.130.183.0/24 702 -193.130.184.0/21 702 -193.130.195.0/24 33860 -193.130.196.0/23 33860 -193.130.199.0/24 15570 -193.130.224.0/21 702 -193.130.232.0/23 702 -193.130.234.0/24 199675 -193.130.235.0/24 702 -193.130.236.0/22 702 -193.130.240.0/20 702 -193.131.0.0/18 702 -193.131.64.0/19 702 -193.131.96.0/22 702 -193.131.100.0/22 3244 -193.131.104.0/21 702 -193.131.112.0/23 702 -193.131.116.0/22 702 -193.131.120.0/21 702 -193.131.128.0/18 702 -193.131.192.0/19 702 -193.131.224.0/20 702 -193.131.240.0/21 702 -193.131.248.0/22 4589 -193.131.252.0/22 702 -193.132.0.0/19 702 -193.132.32.0/20 702 -193.132.48.0/22 1675 -193.132.52.0/22 702 -193.132.56.0/21 702 -193.132.64.0/19 702 -193.132.96.0/20 702 -193.132.112.0/22 702 -193.132.116.0/22 8419 -193.132.120.0/21 702 -193.132.128.0/17 702 -193.133.0.0/20 702 -193.133.16.0/21 702 -193.133.24.0/22 702 -193.133.28.0/23 786 -193.133.30.0/23 702 -193.133.32.0/20 702 -193.133.48.0/22 702 -193.133.52.0/23 702 -193.133.54.0/24 1689 -193.133.55.0/24 702 -193.133.56.0/21 702 -193.133.64.0/19 702 -193.133.96.0/20 702 -193.133.112.0/21 702 -193.133.120.0/23 702 -193.133.122.0/24 702 -193.133.123.0/24 34099 -193.133.124.0/22 702 -193.133.128.0/17 702 -193.134.0.0/22 702 -193.134.4.0/22 35518 -193.134.8.0/21 198175 -193.134.32.0/21 3303 -193.134.64.0/20 48857 -193.134.92.0/24 6730 -193.134.93.0/24 29222 -193.134.94.0/24 48038 -193.134.111.0/24 8883 -193.134.128.0/23 59810 -193.134.130.0/24 59810 -193.134.132.0/24 3303 -193.134.134.0/24 59810 -193.134.159.0/24 8220 -193.134.160.0/23 29500 -193.134.162.0/24 27363 -193.134.163.0/24 201223 -193.134.164.0/22 29500 -193.134.168.0/21 29500 -193.134.176.0/20 21449 -193.134.192.0/21 28916 -193.134.200.0/21 559 -193.134.208.0/22 139659 -193.134.212.0/22 47866 -193.134.216.0/21 559 -193.134.240.0/22 43189 -193.134.248.0/23 8300 -193.134.250.0/24 29222 -193.134.251.0/24 16242 -193.134.252.0/24 6830 -193.134.254.0/24 8883 -193.134.255.0/24 3303 -193.135.0.0/23 3303 -193.135.2.0/24 41386 -193.135.3.0/24 3303 -193.135.4.0/23 25598 -193.135.8.0/22 31400 -193.135.12.0/23 49392 -193.135.25.0/24 6730 -193.135.30.0/24 31736 -193.135.31.0/24 29166 -193.135.40.0/21 49837 -193.135.50.0/23 59449 -193.135.52.0/23 59449 -193.135.56.0/23 61232 -193.135.58.0/24 207143 -193.135.59.0/24 31051 -193.135.64.0/19 29296 -193.135.100.0/24 3303 -193.135.102.0/23 29500 -193.135.104.0/23 15675 -193.135.106.0/24 6830 -193.135.108.0/24 3303 -193.135.109.0/24 28686 -193.135.112.0/22 29442 -193.135.116.0/22 46723 -193.135.124.0/22 31221 -193.135.128.0/22 3303 -193.135.132.0/24 3303 -193.135.136.0/24 3303 -193.135.137.0/24 51559 -193.135.138.0/24 15675 -193.135.142.0/23 3303 -193.135.144.0/23 3303 -193.135.150.0/24 2613 -193.135.152.0/23 6776 -193.135.157.0/24 51559 -193.135.162.0/23 702 -193.135.164.0/23 6776 -193.135.166.0/23 12333 -193.135.168.0/22 559 -193.135.172.0/24 202123 -193.135.173.0/24 3303 -193.135.174.0/24 29262 -193.135.182.0/24 6830 -193.135.214.0/23 3303 -193.135.216.0/22 3303 -193.135.220.0/22 9009 -193.135.240.0/21 559 -193.135.252.0/23 6776 -193.135.254.0/24 8220 -193.135.255.0/24 3303 -193.136.0.0/15 1930 -193.138.0.0/24 34885 -193.138.1.0/24 2107 -193.138.2.0/24 2107 -193.138.4.0/23 202803 -193.138.6.0/23 57202 -193.138.8.0/24 34729 -193.138.9.0/24 5603 -193.138.10.0/24 12337 -193.138.13.0/24 12337 -193.138.15.0/24 12337 -193.138.25.0/24 12337 -193.138.27.0/24 12337 -193.138.28.0/24 60552 -193.138.29.0/24 208378 -193.138.30.0/24 35407 -193.138.31.0/24 33843 -193.138.32.0/19 34779 -193.138.64.0/24 15543 -193.138.65.0/24 198962 -193.138.66.0/24 3209 -193.138.67.0/24 31522 -193.138.68.0/24 3209 -193.138.69.0/24 559 -193.138.72.0/24 60552 -193.138.73.0/24 28749 -193.138.74.0/24 1257 -193.138.75.0/24 60552 -193.138.76.0/24 28826 -193.138.77.0/24 395754 -193.138.78.0/24 29583 -193.138.79.0/24 47429 -193.138.80.0/24 25415 -193.138.81.0/24 34568 -193.138.82.0/24 28829 -193.138.83.0/24 21161 -193.138.85.0/24 60552 -193.138.86.0/24 786 -193.138.87.0/24 8788 -193.138.88.0/24 12581 -193.138.89.0/24 28899 -193.138.91.0/24 20676 -193.138.92.0/24 43842 -193.138.93.0/24 28830 -193.138.94.0/24 28839 -193.138.97.0/24 208913 -193.138.98.0/24 2614 -193.138.99.0/24 58074 -193.138.100.0/24 28867 -193.138.101.0/24 6696 -193.138.102.0/24 33885 -193.138.103.0/24 28853 -193.138.104.0/24 51114 -193.138.105.0/24 28848 -193.138.106.0/24 204113 -193.138.107.0/24 2856 -193.138.108.0/24 205071 -193.138.109.0/24 28942 -193.138.110.0/24 20763 -193.138.113.0/24 21150 -193.138.114.0/24 41941 -193.138.115.0/24 3292 -193.138.116.0/24 34984 -193.138.117.0/24 29507 -193.138.118.0/24 39288 -193.138.119.0/24 28864 -193.138.120.0/23 202803 -193.138.123.0/24 28960 -193.138.125.0/24 42864 -193.138.126.0/24 16302 -193.138.127.0/24 5588 -193.138.128.0/22 34241 -193.138.132.0/22 49223 -193.138.136.0/22 33838 -193.138.140.0/22 43939 -193.138.144.0/22 13188 -193.138.148.0/22 12958 -193.138.152.0/22 197393 -193.138.156.0/22 58265 -193.138.160.0/22 34216 -193.138.164.0/22 34225 -193.138.168.0/22 61205 -193.138.176.0/22 34241 -193.138.180.0/22 44569 -193.138.184.0/22 34265 -193.138.188.0/23 34326 -193.138.190.0/24 34326 -193.138.191.0/24 24645 -193.138.192.0/22 34304 -193.138.196.0/24 34279 -193.138.198.0/23 34279 -193.138.200.0/22 34273 -193.138.204.0/22 35470 -193.138.208.0/22 34284 -193.138.212.0/22 15576 -193.138.216.0/22 39351 -193.138.220.0/22 34305 -193.138.224.0/21 34305 -193.138.232.0/22 34320 -193.138.236.0/22 20971 -193.138.244.0/24 200337 -193.138.245.0/24 44863 -193.138.246.0/23 44863 -193.138.248.0/22 31477 -193.140.0.0/19 8517 -193.140.32.0/21 8517 -193.140.40.0/21 31689 -193.140.48.0/20 8517 -193.140.64.0/22 8517 -193.140.68.0/23 8517 -193.140.70.0/24 8517 -193.140.71.0/24 34478 -193.140.72.0/21 8517 -193.140.80.0/20 8517 -193.140.96.0/21 8517 -193.140.104.0/22 8517 -193.140.108.0/22 5474 -193.140.112.0/21 8517 -193.140.120.0/22 8517 -193.140.124.0/23 8517 -193.140.126.0/24 8517 -193.140.127.0/24 60881 -193.140.128.0/21 8517 -193.140.136.0/22 8517 -193.140.140.0/24 15390 -193.140.141.0/24 8517 -193.140.142.0/23 8517 -193.140.144.0/20 8517 -193.140.160.0/21 8517 -193.140.168.0/22 8517 -193.140.172.0/22 31689 -193.140.176.0/20 8517 -193.140.192.0/20 8456 -193.140.208.0/21 8456 -193.140.216.0/21 8517 -193.140.224.0/19 8517 -193.141.0.0/23 286 -193.141.2.0/24 286 -193.141.3.0/24 6724 -193.141.4.0/22 1136 -193.141.8.0/21 1136 -193.141.16.0/22 1136 -193.141.20.0/24 198967 -193.141.21.0/24 1136 -193.141.22.0/24 1136 -193.141.23.0/24 3320 -193.141.25.0/24 1136 -193.141.26.0/24 1136 -193.141.27.0/24 202040 -193.141.28.0/22 1136 -193.141.32.0/21 1136 -193.141.40.0/22 286 -193.141.46.0/23 1136 -193.141.48.0/22 1136 -193.141.52.0/24 1136 -193.141.54.0/24 1136 -193.141.55.0/24 12480 -193.141.56.0/24 1136 -193.141.57.0/24 9183 -193.141.58.0/24 25038 -193.141.59.0/24 1136 -193.141.61.0/24 3209 -193.141.62.0/23 1136 -193.141.66.0/24 1136 -193.141.67.0/24 205376 -193.141.68.0/22 1136 -193.141.72.0/21 1136 -193.141.80.0/21 1136 -193.141.88.0/23 1136 -193.141.90.0/24 1136 -193.141.91.0/24 3320 -193.141.93.0/24 1136 -193.141.94.0/23 1136 -193.141.96.0/23 3257 -193.141.98.0/23 15743 -193.141.100.0/24 1136 -193.141.101.0/24 8687 -193.141.102.0/23 1136 -193.141.104.0/24 8823 -193.141.105.0/24 1136 -193.141.106.0/24 1136 -193.141.107.0/24 12941 -193.141.108.0/24 1136 -193.141.109.0/24 205798 -193.141.110.0/24 8823 -193.141.111.0/24 1136 -193.141.112.0/21 1136 -193.141.120.0/24 1136 -193.141.121.0/24 205798 -193.141.122.0/23 1136 -193.141.124.0/23 1136 -193.141.128.0/21 1136 -193.141.136.0/23 1136 -193.141.138.0/24 1136 -193.141.139.0/24 8220 -193.141.142.0/24 1136 -193.141.143.0/24 3320 -193.141.144.0/20 1136 -193.141.160.0/20 1136 -193.141.176.0/24 12413 -193.141.177.0/24 205798 -193.141.178.0/23 1136 -193.141.182.0/24 12431 -193.141.183.0/24 8937 -193.141.188.0/24 8937 -193.141.189.0/24 1136 -193.141.190.0/23 1136 -193.141.192.0/19 5400 -193.141.224.0/24 205769 -193.141.225.0/24 200297 -193.141.226.0/24 61346 -193.141.227.0/24 1136 -193.141.228.0/23 1136 -193.141.232.0/21 1136 -193.141.240.0/20 1136 -193.142.0.0/24 42446 -193.142.1.0/24 29240 -193.142.2.0/24 200996 -193.142.3.0/24 205798 -193.142.4.0/24 51167 -193.142.6.0/24 51167 -193.142.8.0/22 1759 -193.142.13.0/24 1759 -193.142.14.0/23 1759 -193.142.16.0/23 29240 -193.142.18.0/24 51167 -193.142.19.0/24 197805 -193.142.22.0/24 51167 -193.142.23.0/24 196655 -193.142.26.0/24 1759 -193.142.30.0/24 59580 -193.142.31.0/24 57200 -193.142.32.0/22 210100 -193.142.36.0/22 33657 -193.142.40.0/22 31400 -193.142.50.0/23 719 -193.142.53.0/24 29430 -193.142.56.0/24 42558 -193.142.57.0/24 42559 -193.142.58.0/23 207083 -193.142.61.0/24 200144 -193.142.64.0/19 719 -193.142.96.0/24 719 -193.142.97.0/24 174 -193.142.99.0/24 719 -193.142.102.0/24 719 -193.142.104.0/22 34460 -193.142.108.0/23 5381 -193.142.110.0/24 5381 -193.142.111.0/24 47908 -193.142.112.0/24 42594 -193.142.113.0/24 42963 -193.142.114.0/24 35273 -193.142.115.0/24 48157 -193.142.116.0/24 42681 -193.142.118.0/24 48273 -193.142.119.0/24 199385 -193.142.121.0/24 41242 -193.142.122.0/23 1759 -193.142.124.0/24 62656 -193.142.125.0/24 6453 -193.142.127.0/24 51364 -193.142.128.0/22 42687 -193.142.132.0/22 24768 -193.142.136.0/21 719 -193.142.144.0/24 197793 -193.142.145.0/24 5594 -193.142.146.0/23 207083 -193.142.148.0/24 197793 -193.142.149.0/24 42948 -193.142.150.0/24 1759 -193.142.151.0/24 42647 -193.142.152.0/24 197793 -193.142.153.0/24 41075 -193.142.154.0/23 208683 -193.142.156.0/24 197793 -193.142.157.0/24 61303 -193.142.158.0/24 8399 -193.142.159.0/24 197688 -193.142.176.0/21 198024 -193.142.184.0/22 198024 -193.142.188.0/22 202499 -193.142.192.0/22 45014 -193.142.196.0/22 44939 -193.142.200.0/22 35913 -193.142.204.0/24 719 -193.142.205.0/24 39737 -193.142.206.0/23 208683 -193.142.208.0/24 47505 -193.142.209.0/24 12301 -193.142.210.0/24 42643 -193.142.211.0/24 199773 -193.142.212.0/24 16050 -193.142.214.0/24 12301 -193.142.215.0/24 21155 -193.142.217.0/24 42722 -193.142.219.0/24 42641 -193.142.221.0/24 34077 -193.142.222.0/24 25233 -193.142.223.0/24 39737 -193.142.224.0/21 719 -193.142.234.0/24 39737 -193.142.235.0/24 719 -193.142.236.0/24 719 -193.142.241.0/24 39737 -193.142.242.0/24 49392 -193.142.243.0/24 5588 -193.142.244.0/24 15395 -193.142.245.0/24 196962 -193.142.247.0/24 1759 -193.142.248.0/24 57647 -193.142.249.0/24 49392 -193.142.250.0/24 57646 -193.142.252.0/24 719 -193.143.0.0/24 42582 -193.143.1.0/24 49392 -193.143.2.0/23 13101 -193.143.4.0/24 1759 -193.143.5.0/24 719 -193.143.6.0/23 13101 -193.143.8.0/21 1759 -193.143.16.0/23 12830 -193.143.18.0/24 200602 -193.143.24.0/22 3320 -193.143.31.0/24 209877 -193.143.32.0/23 34086 -193.143.48.0/24 1759 -193.143.55.0/24 34086 -193.143.56.0/23 34086 -193.143.61.0/24 1299 -193.143.63.0/24 1759 -193.143.64.0/22 202498 -193.143.68.0/23 12830 -193.143.70.0/23 16086 -193.143.72.0/24 200602 -193.143.73.0/24 16086 -193.143.74.0/24 35175 -193.143.75.0/24 200602 -193.143.76.0/24 200602 -193.143.77.0/24 29522 -193.143.79.0/24 16086 -193.143.80.0/21 16086 -193.143.88.0/23 16086 -193.143.91.0/24 16086 -193.143.92.0/24 39539 -193.143.93.0/24 16086 -193.143.94.0/23 16086 -193.143.99.0/24 29240 -193.143.100.0/22 29240 -193.143.104.0/21 29240 -193.143.112.0/22 29240 -193.143.116.0/23 29240 -193.143.118.0/24 29240 -193.143.119.0/24 43396 -193.143.120.0/24 39474 -193.143.121.0/24 43333 -193.143.122.0/24 48152 -193.143.125.0/24 16086 -193.143.126.0/23 16086 -193.143.192.0/21 719 -193.143.200.0/22 719 -193.143.204.0/23 719 -193.143.206.0/24 62357 -193.143.207.0/24 719 -193.143.208.0/20 719 -193.143.224.0/24 39018 -193.143.227.0/24 39018 -193.143.230.0/24 61990 -193.143.231.0/24 39018 -193.143.232.0/21 200996 -193.143.240.0/24 43958 -193.143.241.0/24 1759 -193.143.242.0/23 1759 -193.143.244.0/22 1759 -193.143.248.0/24 39018 -193.143.249.0/24 3269 -193.143.253.0/24 62357 -193.144.0.0/14 766 -193.148.0.0/24 34740 -193.148.2.0/23 43655 -193.148.6.0/23 60350 -193.148.8.0/24 202495 -193.148.10.0/24 210196 -193.148.12.0/23 209702 -193.148.15.0/24 35013 -193.148.16.0/22 9009 -193.148.20.0/22 201975 -193.148.24.0/21 3324 -193.148.32.0/22 3324 -193.148.36.0/24 3324 -193.148.38.0/23 13180 -193.148.40.0/22 202494 -193.148.44.0/24 34851 -193.148.46.0/24 34791 -193.148.48.0/22 52055 -193.148.52.0/22 39134 -193.148.56.0/22 52055 -193.148.60.0/22 12695 -193.148.64.0/22 41152 -193.148.68.0/22 44220 -193.148.72.0/22 35913 -193.148.80.0/22 41114 -193.148.84.0/22 206702 -193.148.88.0/22 49223 -193.148.96.0/20 49576 -193.148.116.0/24 49576 -193.148.119.0/24 49576 -193.148.120.0/21 49576 -193.148.129.0/24 3352 -193.148.130.0/24 3352 -193.148.138.0/23 3352 -193.148.140.0/22 3352 -193.148.144.0/20 3352 -193.148.160.0/23 203759 -193.148.162.0/24 203759 -193.148.163.0/24 3352 -193.148.164.0/22 3352 -193.148.168.0/21 3352 -193.148.176.0/21 3352 -193.148.184.0/22 3352 -193.148.188.0/24 203759 -193.148.189.0/24 3352 -193.148.190.0/23 3352 -193.148.224.0/20 30892 -193.148.240.0/22 30892 -193.148.244.0/23 59447 -193.148.246.0/24 16373 -193.148.248.0/24 202479 -193.148.249.0/24 34927 -193.148.250.0/23 34927 -193.148.254.0/24 50429 -193.149.0.0/24 6895 -193.149.6.0/24 3352 -193.149.8.0/21 680 -193.149.16.0/22 20655 -193.149.20.0/22 9009 -193.149.24.0/22 15440 -193.149.32.0/19 5539 -193.149.64.0/19 8075 -193.149.96.0/19 5436 -193.149.128.0/18 15411 -193.149.192.0/24 12967 -193.149.193.0/24 20492 -193.149.194.0/24 9935 -193.149.217.0/24 8447 -193.149.225.0/24 61317 -193.149.240.0/20 6848 -193.150.0.0/23 29182 -193.150.2.0/23 198140 -193.150.4.0/23 25504 -193.150.6.0/24 197901 -193.150.7.0/24 31091 -193.150.8.0/22 13213 -193.150.12.0/22 196653 -193.150.16.0/22 42947 -193.150.20.0/24 42340 -193.150.21.0/24 50349 -193.150.22.0/23 57381 -193.150.24.0/23 198143 -193.150.26.0/23 198142 -193.150.28.0/22 57384 -193.150.32.0/23 41259 -193.150.34.0/24 44574 -193.150.35.0/24 57472 -193.150.36.0/23 13000 -193.150.38.0/23 57472 -193.150.40.0/24 199232 -193.150.41.0/24 197608 -193.150.42.0/23 50231 -193.150.44.0/22 50231 -193.150.48.0/24 3303 -193.150.49.0/24 57398 -193.150.50.0/23 198430 -193.150.52.0/23 59533 -193.150.54.0/23 61325 -193.150.56.0/22 12397 -193.150.60.0/22 57394 -193.150.64.0/24 8387 -193.150.65.0/24 48330 -193.150.67.0/24 198127 -193.150.68.0/24 35722 -193.150.69.0/24 198522 -193.150.70.0/23 41447 -193.150.72.0/22 57716 -193.150.76.0/22 57404 -193.150.80.0/22 50671 -193.150.84.0/22 31027 -193.150.88.0/24 197945 -193.150.90.0/24 6739 -193.150.91.0/24 12357 -193.150.92.0/22 48128 -193.150.96.0/23 198152 -193.150.98.0/23 49505 -193.150.100.0/22 57418 -193.150.105.0/24 41661 -193.150.106.0/24 198155 -193.150.107.0/24 57421 -193.150.108.0/22 51813 -193.150.112.0/24 8220 -193.150.113.0/24 198162 -193.150.114.0/23 196699 -193.150.116.0/24 57438 -193.150.117.0/24 57449 -193.150.118.0/23 57425 -193.150.120.0/24 61317 -193.150.121.0/24 57423 -193.150.122.0/24 198168 -193.150.123.0/24 198242 -193.150.124.0/24 198181 -193.150.125.0/24 57434 -193.150.126.0/24 57435 -193.150.127.0/24 56839 -193.150.128.0/23 50833 -193.150.130.0/23 60592 -193.150.132.0/23 60592 -193.150.134.0/24 42000 -193.150.144.0/21 201811 -193.150.152.0/21 51412 -193.150.160.0/22 51412 -193.150.164.0/24 51412 -193.150.165.0/24 31242 -193.150.166.0/23 8373 -193.150.168.0/24 61317 -193.150.169.0/24 8220 -193.150.170.0/23 49505 -193.150.172.0/23 13153 -193.150.188.0/22 12679 -193.150.192.0/19 39651 -193.150.224.0/21 39651 -193.150.232.0/22 39651 -193.150.236.0/22 2119 -193.150.240.0/22 39651 -193.150.244.0/23 39651 -193.150.246.0/24 3301 -193.150.247.0/24 39651 -193.150.248.0/21 39651 -193.151.0.0/22 31379 -193.151.4.0/22 204119 -193.151.12.0/22 31305 -193.151.16.0/23 8468 -193.151.18.0/23 24916 -193.151.20.0/23 31308 -193.151.22.0/23 60092 -193.151.24.0/22 196797 -193.151.28.0/22 31313 -193.151.32.0/22 31348 -193.151.36.0/23 34409 -193.151.38.0/24 34409 -193.151.39.0/24 204534 -193.151.40.0/22 31345 -193.151.44.0/23 15598 -193.151.46.0/23 204110 -193.151.48.0/22 51944 -193.151.52.0/22 31658 -193.151.56.0/22 31350 -193.151.60.0/22 50920 -193.151.64.0/22 43939 -193.151.68.0/22 31381 -193.151.76.0/22 31412 -193.151.80.0/22 31420 -193.151.84.0/24 30781 -193.151.87.0/24 30781 -193.151.88.0/22 29066 -193.151.92.0/22 43853 -193.151.96.0/22 31423 -193.151.100.0/22 31242 -193.151.104.0/22 34814 -193.151.108.0/22 31480 -193.151.112.0/22 35491 -193.151.116.0/22 8462 -193.151.120.0/22 24916 -193.151.124.0/24 39326 -193.151.125.0/24 30933 -193.151.126.0/23 30933 -193.151.160.0/22 210015 -193.151.165.0/24 209732 -193.151.166.0/24 209742 -193.151.167.0/24 35308 -193.151.168.0/22 48430 -193.151.172.0/22 35829 -193.151.176.0/22 209995 -193.151.184.0/22 12679 -193.151.188.0/23 9009 -193.151.192.0/19 59559 -193.151.225.0/24 43628 -193.151.226.0/24 39036 -193.151.227.0/24 34706 -193.151.228.0/24 205682 -193.151.229.0/24 208207 -193.151.230.0/24 57036 -193.151.232.0/21 49828 -193.151.240.0/22 25482 -193.151.244.0/23 21219 -193.151.246.0/24 34742 -193.151.247.0/24 21219 -193.151.248.0/22 50533 -193.151.252.0/22 34743 -193.152.0.0/15 3352 -193.154.0.0/17 1901 -193.154.128.0/20 1901 -193.154.144.0/20 8562 -193.154.160.0/19 1901 -193.154.192.0/18 1901 -193.155.0.0/22 702 -193.155.4.0/24 1689 -193.155.5.0/24 702 -193.155.6.0/23 702 -193.155.8.0/21 702 -193.155.16.0/20 702 -193.155.32.0/19 702 -193.155.64.0/20 702 -193.155.80.0/21 702 -193.155.88.0/24 702 -193.155.89.0/24 203617 -193.155.90.0/23 702 -193.155.92.0/22 702 -193.155.96.0/19 702 -193.155.128.0/19 702 -193.155.160.0/20 197491 -193.155.176.0/20 702 -193.155.192.0/18 702 -193.156.0.0/15 224 -193.158.0.0/15 3320 -193.160.0.0/24 1935 -193.160.1.0/24 2119 -193.160.2.0/23 2119 -193.160.4.0/22 2119 -193.160.8.0/24 395092 -193.160.9.0/24 2119 -193.160.10.0/23 208041 -193.160.12.0/23 51271 -193.160.14.0/23 208041 -193.160.24.0/22 44457 -193.160.28.0/24 2119 -193.160.34.0/23 206993 -193.160.36.0/23 206993 -193.160.38.0/24 206993 -193.160.39.0/24 57821 -193.160.48.0/21 43516 -193.160.64.0/22 47583 -193.160.68.0/23 9009 -193.160.72.0/23 9009 -193.160.76.0/22 9009 -193.160.80.0/24 13213 -193.160.84.0/22 207050 -193.160.88.0/23 57335 -193.160.92.0/22 209985 -193.160.97.0/24 43967 -193.160.98.0/23 8447 -193.160.100.0/24 42366 -193.160.104.0/21 44457 -193.160.115.0/24 2116 -193.160.118.0/23 42366 -193.160.120.0/22 202057 -193.160.128.0/23 202120 -193.160.131.0/24 51283 -193.160.134.0/23 202120 -193.160.138.0/24 44381 -193.160.140.0/24 60721 -193.160.141.0/24 209737 -193.160.142.0/23 209737 -193.160.144.0/22 9021 -193.160.148.0/22 29695 -193.160.152.0/23 60781 -193.160.156.0/23 35703 -193.160.158.0/24 197888 -193.160.160.0/20 2116 -193.160.176.0/24 2119 -193.160.181.0/24 2116 -193.160.192.0/21 2119 -193.160.200.0/22 2119 -193.160.204.0/23 58096 -193.160.206.0/23 158 -193.160.208.0/22 50340 -193.160.212.0/24 395800 -193.160.213.0/24 135330 -193.160.214.0/24 202365 -193.160.215.0/24 61135 -193.160.216.0/22 50340 -193.160.220.0/22 59447 -193.160.224.0/22 51273 -193.160.228.0/22 197120 -193.160.239.0/24 158 -193.160.240.0/22 60943 -193.160.244.0/22 35913 -193.160.248.0/24 3246 -193.160.252.0/24 3292 -193.160.255.0/24 197193 -193.161.0.0/24 51284 -193.161.4.0/22 25460 -193.161.8.0/24 51043 -193.161.9.0/24 51561 -193.161.10.0/24 51561 -193.161.12.0/22 197125 -193.161.16.0/21 2116 -193.161.30.0/23 207035 -193.161.32.0/19 2119 -193.161.64.0/20 8542 -193.161.80.0/22 8542 -193.161.84.0/22 51248 -193.161.88.0/21 61006 -193.161.96.0/22 2119 -193.161.100.0/24 2119 -193.161.102.0/24 2119 -193.161.112.0/22 31117 -193.161.120.0/21 43516 -193.161.128.0/22 34549 -193.161.132.0/23 39184 -193.161.134.0/24 174 -193.161.135.0/24 39184 -193.161.136.0/23 201787 -193.161.140.0/24 41785 -193.161.145.0/24 2116 -193.161.148.0/22 48295 -193.161.156.0/23 201787 -193.161.160.0/20 3292 -193.161.176.0/20 158 -193.161.192.0/24 198940 -193.161.193.0/24 198134 -193.161.196.0/22 48918 -193.161.200.0/23 206257 -193.161.204.0/23 202723 -193.161.206.0/24 200088 -193.161.208.0/22 2119 -193.161.212.0/22 202486 -193.161.216.0/22 3292 -193.161.220.0/22 206189 -193.161.232.0/24 43200 -193.161.233.0/24 41729 -193.161.234.0/23 41729 -193.161.245.0/24 200088 -193.161.246.0/23 202723 -193.161.248.0/22 61006 -193.161.252.0/24 43200 -193.161.253.0/24 13243 -193.162.11.0/24 25384 -193.162.16.0/21 49362 -193.162.24.0/22 49362 -193.162.32.0/23 3292 -193.162.34.0/24 12834 -193.162.48.0/21 3292 -193.162.75.0/24 3292 -193.162.98.0/23 3292 -193.162.108.0/22 3292 -193.162.112.0/23 3292 -193.162.114.0/23 210210 -193.162.116.0/22 210210 -193.162.142.0/24 197660 -193.162.145.0/24 3292 -193.162.146.0/24 3292 -193.162.152.0/21 3292 -193.162.192.0/19 25384 -193.162.252.0/23 31027 -193.163.1.0/24 3292 -193.163.10.0/24 3292 -193.163.24.0/22 3292 -193.163.32.0/24 3292 -193.163.36.0/22 31027 -193.163.46.0/24 1835 -193.163.56.0/21 39642 -193.163.78.0/24 34506 -193.163.84.0/22 31027 -193.163.88.0/21 31027 -193.163.96.0/23 43167 -193.163.100.0/24 3292 -193.163.102.0/24 39839 -193.163.110.0/24 3292 -193.163.111.0/24 34506 -193.163.118.0/24 3292 -193.163.131.0/24 31027 -193.163.132.0/23 3292 -193.163.134.0/23 44398 -193.163.136.0/21 3292 -193.163.158.0/23 3292 -193.163.160.0/21 3292 -193.163.174.0/24 34506 -193.163.208.0/21 50062 -193.163.220.0/24 3292 -193.163.221.0/24 5491 -193.163.222.0/24 31027 -193.163.223.0/24 210210 -193.163.224.0/20 44328 -193.163.240.0/24 13057 -193.163.248.0/22 15423 -193.163.252.0/24 15423 -193.163.255.0/24 25384 -193.164.0.0/24 34873 -193.164.1.0/24 200088 -193.164.4.0/24 43260 -193.164.5.0/24 61135 -193.164.6.0/24 60721 -193.164.7.0/24 43260 -193.164.8.0/24 15368 -193.164.9.0/24 34818 -193.164.10.0/24 200088 -193.164.13.0/24 13768 -193.164.14.0/24 31398 -193.164.15.0/24 8437 -193.164.16.0/22 47995 -193.164.24.0/22 31124 -193.164.28.0/24 210216 -193.164.80.0/23 41584 -193.164.85.0/24 49408 -193.164.86.0/23 200090 -193.164.88.0/24 34950 -193.164.89.0/24 2119 -193.164.94.0/23 61986 -193.164.96.0/20 5552 -193.164.112.0/23 5552 -193.164.114.0/24 13009 -193.164.115.0/24 5552 -193.164.116.0/22 5552 -193.164.120.0/21 5552 -193.164.128.0/24 9009 -193.164.129.0/24 41434 -193.164.130.0/24 41422 -193.164.131.0/24 51167 -193.164.132.0/23 51167 -193.164.134.0/23 202971 -193.164.136.0/24 41432 -193.164.137.0/24 41427 -193.164.138.0/23 41427 -193.164.140.0/23 41427 -193.164.142.0/24 41476 -193.164.144.0/24 31477 -193.164.146.0/24 41551 -193.164.147.0/24 15734 -193.164.148.0/24 21000 -193.164.149.0/24 9123 -193.164.150.0/24 9123 -193.164.151.0/24 29092 -193.164.152.0/24 9123 -193.164.153.0/24 34019 -193.164.154.0/24 12843 -193.164.155.0/24 41474 -193.164.156.0/24 41473 -193.164.157.0/24 41468 -193.164.158.0/24 41471 -193.164.159.0/24 200377 -193.164.160.0/19 1273 -193.164.192.0/23 31477 -193.164.194.0/23 49698 -193.164.196.0/23 49763 -193.164.199.0/24 55720 -193.164.200.0/23 24680 -193.164.202.0/23 15830 -193.164.204.0/23 50228 -193.164.206.0/23 15510 -193.164.208.0/23 202971 -193.164.212.0/23 9135 -193.164.214.0/23 39240 -193.164.216.0/23 39647 -193.164.218.0/23 200114 -193.164.220.0/23 50032 -193.164.222.0/23 132839 -193.164.224.0/23 24647 -193.164.226.0/23 15414 -193.164.228.0/22 13223 -193.164.238.0/24 21406 -193.164.242.0/23 24958 -193.164.244.0/23 15513 -193.164.246.0/23 50595 -193.164.248.0/22 62106 -193.164.252.0/23 34745 -193.164.254.0/23 49785 -193.165.0.0/16 30764 -193.166.0.0/15 1741 -193.168.0.0/24 3320 -193.168.1.0/24 2602 -193.168.3.0/24 9123 -193.168.4.0/23 132839 -193.168.6.0/23 8793 -193.168.11.0/24 15965 -193.168.15.0/24 6661 -193.168.41.0/24 201441 -193.168.42.0/24 201441 -193.168.45.0/24 201441 -193.168.46.0/23 198610 -193.168.48.0/23 198610 -193.168.50.0/24 34749 -193.168.52.0/23 28716 -193.168.54.0/24 198221 -193.168.56.0/23 28716 -193.168.60.0/23 44708 -193.168.62.0/23 6661 -193.168.64.0/18 2602 -193.168.128.0/23 35479 -193.168.136.0/22 50340 -193.168.144.0/24 51269 -193.168.146.0/23 62000 -193.168.152.0/22 209714 -193.168.156.0/22 12859 -193.168.164.0/22 209750 -193.168.168.0/22 35223 -193.168.172.0/22 197328 -193.168.176.0/22 48642 -193.168.180.0/22 48095 -193.168.184.0/23 42423 -193.168.186.0/24 33823 -193.168.187.0/24 42423 -193.168.188.0/22 197628 -193.168.192.0/22 47583 -193.168.196.0/22 43659 -193.168.200.0/22 197328 -193.168.204.0/22 56598 -193.168.208.0/22 61317 -193.168.212.0/23 208316 -193.168.214.0/24 208316 -193.168.220.0/22 262287 -193.168.224.0/24 207877 -193.168.225.0/24 209728 -193.168.226.0/23 47346 -193.168.228.0/22 48585 -193.168.232.0/22 3320 -193.168.248.0/22 8767 -193.168.252.0/22 47692 -193.169.0.0/23 59616 -193.169.2.0/23 24951 -193.169.4.0/23 49261 -193.169.6.0/23 31313 -193.169.8.0/23 208913 -193.169.10.0/23 19229 -193.169.12.0/23 51249 -193.169.14.0/23 25546 -193.169.16.0/23 5588 -193.169.18.0/23 57478 -193.169.20.0/24 12874 -193.169.21.0/24 31313 -193.169.22.0/23 39264 -193.169.24.0/23 49315 -193.169.28.0/23 49320 -193.169.30.0/24 196775 -193.169.31.0/24 44129 -193.169.32.0/23 49346 -193.169.34.0/23 49369 -193.169.36.0/23 49350 -193.169.38.0/23 49361 -193.169.40.0/24 40824 -193.169.41.0/24 35415 -193.169.42.0/23 198869 -193.169.44.0/23 49381 -193.169.46.0/23 199881 -193.169.48.0/23 49402 -193.169.50.0/24 29088 -193.169.51.0/24 57795 -193.169.52.0/23 49404 -193.169.54.0/23 49464 -193.169.56.0/23 47217 -193.169.60.0/23 196791 -193.169.62.0/23 49439 -193.169.64.0/23 38926 -193.169.66.0/23 49477 -193.169.68.0/23 42093 -193.169.70.0/23 49456 -193.169.72.0/23 8899 -193.169.74.0/23 62319 -193.169.76.0/23 49494 -193.169.78.0/23 50434 -193.169.80.0/23 49491 -193.169.82.0/23 49489 -193.169.86.0/23 48031 -193.169.88.0/23 49501 -193.169.90.0/23 49503 -193.169.94.0/23 49499 -193.169.96.0/23 49510 -193.169.98.0/23 43735 -193.169.100.0/23 6852 -193.169.102.0/23 41067 -193.169.108.0/23 51088 -193.169.110.0/23 49530 -193.169.112.0/22 197809 -193.169.116.0/23 197809 -193.169.118.0/23 49665 -193.169.122.0/23 49568 -193.169.124.0/23 25553 -193.169.126.0/23 49561 -193.169.128.0/23 47439 -193.169.130.0/23 21050 -193.169.132.0/24 199491 -193.169.133.0/24 48682 -193.169.134.0/24 49588 -193.169.135.0/24 205753 -193.169.136.0/23 20668 -193.169.138.0/23 49627 -193.169.142.0/23 49626 -193.169.144.0/23 38935 -193.169.146.0/24 35588 -193.169.148.0/23 196830 -193.169.150.0/23 49579 -193.169.152.0/23 44468 -193.169.154.0/23 3292 -193.169.156.0/23 49646 -193.169.158.0/23 198290 -193.169.160.0/23 24971 -193.169.162.0/23 196654 -193.169.164.0/23 49232 -193.169.166.0/23 43108 -193.169.168.0/23 25447 -193.169.172.0/23 48842 -193.169.176.0/23 9041 -193.169.178.0/23 12695 -193.169.180.0/23 48173 -193.169.182.0/23 48417 -193.169.184.0/23 58265 -193.169.186.0/23 8453 -193.169.188.0/23 196645 -193.169.190.0/23 12529 -193.169.192.0/23 15692 -193.169.194.0/23 196644 -193.169.196.0/23 42652 -193.169.198.0/23 12716 -193.169.200.0/23 269871 -193.169.202.0/23 20826 -193.169.204.0/23 3320 -193.169.206.0/23 34738 -193.169.210.0/23 24613 -193.169.214.0/23 29215 -193.169.216.0/23 39545 -193.169.218.0/23 269871 -193.169.220.0/23 44079 -193.169.222.0/23 12714 -193.169.224.0/23 34716 -193.169.226.0/23 34771 -193.169.228.0/23 34995 -193.169.230.0/23 39286 -193.169.232.0/23 197621 -193.169.234.0/23 62283 -193.169.238.0/23 208485 -193.169.240.0/23 39681 -193.169.242.0/23 47224 -193.169.244.0/23 42159 -193.169.246.0/23 41927 -193.169.248.0/23 49679 -193.169.250.0/23 208485 -193.169.252.0/24 197226 -193.169.253.0/24 59491 -193.169.254.0/24 197226 -193.169.255.0/24 210273 -193.170.0.0/16 1853 -193.171.0.0/17 1853 -193.171.128.0/18 1853 -193.171.192.0/19 1853 -193.171.224.0/20 1853 -193.171.240.0/21 1853 -193.171.248.0/22 1853 -193.171.252.0/23 1853 -193.171.254.0/24 1853 -193.171.255.0/24 1120 -193.172.0.0/18 1136 -193.172.64.0/19 1136 -193.172.96.0/20 1136 -193.172.112.0/21 1136 -193.172.120.0/22 1136 -193.172.124.0/23 1136 -193.172.126.0/24 8328 -193.172.127.0/24 1136 -193.172.128.0/18 1136 -193.172.192.0/24 1136 -193.172.193.0/24 8328 -193.172.194.0/23 1136 -193.172.196.0/22 1136 -193.172.200.0/21 1136 -193.172.208.0/20 1136 -193.172.224.0/19 1136 -193.173.0.0/18 1136 -193.173.64.0/19 1136 -193.173.96.0/22 1136 -193.173.100.0/24 8328 -193.173.101.0/24 1136 -193.173.102.0/23 1136 -193.173.104.0/21 1136 -193.173.112.0/20 1136 -193.173.128.0/17 1136 -193.174.0.0/15 680 -193.176.0.0/24 12926 -193.176.1.0/24 34056 -193.176.2.0/24 57682 -193.176.4.0/24 59597 -193.176.6.0/23 33915 -193.176.8.0/21 33915 -193.176.16.0/22 197328 -193.176.24.0/22 210222 -193.176.28.0/23 64474 -193.176.31.0/24 64474 -193.176.40.0/22 202478 -193.176.44.0/24 59597 -193.176.47.0/24 1759 -193.176.54.0/23 26556 -193.176.61.0/24 19229 -193.176.62.0/24 59597 -193.176.64.0/22 198682 -193.176.68.0/22 39053 -193.176.76.0/22 198610 -193.176.81.0/24 62040 -193.176.82.0/24 62040 -193.176.84.0/22 9009 -193.176.88.0/22 209994 -193.176.95.0/24 39048 -193.176.104.0/21 15542 -193.176.112.0/23 12878 -193.176.116.0/22 46261 -193.176.120.0/22 57353 -193.176.124.0/22 210012 -193.176.128.0/23 26556 -193.176.132.0/22 9150 -193.176.136.0/21 12315 -193.176.144.0/24 1140 -193.176.145.0/24 9134 -193.176.146.0/24 15372 -193.176.147.0/24 59597 -193.176.153.0/24 56971 -193.176.154.0/23 8219 -193.176.156.0/23 8219 -193.176.158.0/24 56971 -193.176.159.0/24 33915 -193.176.160.0/20 33915 -193.176.176.0/23 33915 -193.176.178.0/24 33915 -193.176.179.0/24 56971 -193.176.180.0/23 202090 -193.176.182.0/24 202090 -193.176.184.0/23 50673 -193.176.190.0/24 56971 -193.176.191.0/24 33915 -193.176.192.0/21 15830 -193.176.200.0/22 15830 -193.176.204.0/24 15830 -193.176.205.0/24 28878 -193.176.206.0/23 203242 -193.176.208.0/24 33915 -193.176.209.0/24 48240 -193.176.210.0/24 9009 -193.176.211.0/24 206092 -193.176.212.0/22 49628 -193.176.216.0/23 21286 -193.176.220.0/24 49392 -193.176.221.0/24 208240 -193.176.222.0/23 48037 -193.176.224.0/23 48037 -193.176.226.0/24 48037 -193.176.227.0/24 49392 -193.176.228.0/23 43388 -193.176.230.0/24 43388 -193.176.233.0/24 49392 -193.176.235.0/24 1103 -193.176.236.0/24 47829 -193.176.237.0/24 49392 -193.176.240.0/22 202468 -193.176.244.0/23 26804 -193.176.247.0/24 43957 -193.176.248.0/22 56932 -193.177.0.0/24 49434 -193.177.1.0/24 25377 -193.177.2.0/23 25377 -193.177.4.0/22 25377 -193.177.8.0/21 25377 -193.177.16.0/20 25377 -193.177.32.0/19 25377 -193.177.64.0/18 25377 -193.177.128.0/22 207063 -193.177.133.0/24 21217 -193.177.140.0/22 1136 -193.177.144.0/22 1136 -193.177.160.0/23 28878 -193.177.162.0/24 49434 -193.177.163.0/24 31477 -193.177.164.0/23 50840 -193.177.166.0/24 15542 -193.177.168.0/21 8694 -193.177.176.0/22 1103 -193.177.180.0/23 15404 -193.177.184.0/24 13205 -193.177.188.0/22 58340 -193.177.192.0/20 8694 -193.177.208.0/22 15701 -193.177.212.0/22 43833 -193.177.220.0/24 57578 -193.177.232.0/23 203170 -193.177.237.0/24 206249 -193.177.241.0/24 1136 -193.177.242.0/24 1136 -193.178.0.0/24 49434 -193.178.1.0/24 24675 -193.178.2.0/23 24675 -193.178.4.0/22 24675 -193.178.8.0/21 24675 -193.178.16.0/22 24675 -193.178.20.0/23 24675 -193.178.27.0/24 24675 -193.178.28.0/23 24675 -193.178.30.0/24 24675 -193.178.31.0/24 203178 -193.178.32.0/24 197282 -193.178.33.0/24 203178 -193.178.34.0/24 34776 -193.178.35.0/24 1257 -193.178.36.0/23 42652 -193.178.42.0/23 50840 -193.178.44.0/22 29119 -193.178.48.0/22 6876 -193.178.52.0/24 203178 -193.178.54.0/23 31631 -193.178.56.0/22 55933 -193.178.60.0/22 31337 -193.178.64.0/19 15806 -193.178.96.0/20 15806 -193.178.115.0/24 203178 -193.178.117.0/24 34765 -193.178.118.0/24 196673 -193.178.119.0/24 28924 -193.178.120.0/22 38934 -193.178.129.0/24 42303 -193.178.130.0/24 33885 -193.178.131.0/24 51748 -193.178.135.0/24 197880 -193.178.136.0/24 48140 -193.178.138.0/24 5410 -193.178.140.0/24 15404 -193.178.141.0/24 34353 -193.178.143.0/24 8308 -193.178.144.0/22 28907 -193.178.148.0/23 48339 -193.178.150.0/23 12965 -193.178.152.0/23 12591 -193.178.154.0/23 3296 -193.178.156.0/23 8220 -193.178.158.0/23 20499 -193.178.161.0/24 16288 -193.178.162.0/24 34720 -193.178.163.0/24 20647 -193.178.164.0/24 25439 -193.178.165.0/24 6830 -193.178.166.0/24 12962 -193.178.167.0/24 20656 -193.178.168.0/24 20624 -193.178.171.0/24 25012 -193.178.173.0/24 42228 -193.178.175.0/24 20681 -193.178.176.0/21 16279 -193.178.184.0/24 25445 -193.178.186.0/24 59427 -193.178.187.0/24 25174 -193.178.188.0/24 25149 -193.178.189.0/24 4589 -193.178.190.0/24 25155 -193.178.191.0/24 47061 -193.178.196.0/24 61349 -193.178.197.0/24 38965 -193.178.200.0/22 44375 -193.178.208.0/24 16364 -193.178.209.0/24 21424 -193.178.210.0/24 2914 -193.178.211.0/24 49152 -193.178.212.0/24 202766 -193.178.213.0/24 20486 -193.178.214.0/24 20909 -193.178.216.0/24 21176 -193.178.217.0/24 31672 -193.178.218.0/24 202766 -193.178.219.0/24 20501 -193.178.222.0/24 16328 -193.178.223.0/24 3213 -193.178.224.0/23 3269 -193.178.226.0/23 3320 -193.178.228.0/23 20539 -193.178.232.0/23 20509 -193.178.234.0/23 21176 -193.178.236.0/23 20515 -193.178.240.0/22 20491 -193.178.244.0/22 21176 -193.178.248.0/22 21437 -193.179.0.0/16 5588 -193.180.2.0/24 198568 -193.180.4.0/23 45011 -193.180.6.0/24 45011 -193.180.7.0/24 34610 -193.180.9.0/24 3246 -193.180.10.0/24 3301 -193.180.11.0/24 3246 -193.180.12.0/23 35041 -193.180.14.0/23 158 -193.180.16.0/23 158 -193.180.18.0/23 44136 -193.180.20.0/24 42649 -193.180.21.0/24 8473 -193.180.22.0/24 201171 -193.180.23.0/24 197595 -193.180.25.0/24 3301 -193.180.26.0/23 3301 -193.180.28.0/24 3301 -193.180.31.0/24 3301 -193.180.56.0/23 208639 -193.180.58.0/24 35100 -193.180.59.0/24 1257 -193.180.60.0/24 1257 -193.180.62.0/24 12552 -193.180.64.0/19 25387 -193.180.96.0/21 25387 -193.180.104.0/21 2119 -193.180.112.0/23 2119 -193.180.114.0/24 2119 -193.180.115.0/24 35041 -193.180.116.0/23 35041 -193.180.118.0/24 35041 -193.180.119.0/24 1299 -193.180.120.0/24 35041 -193.180.122.0/24 35041 -193.180.123.0/24 42708 -193.180.124.0/24 39658 -193.180.126.0/24 198476 -193.180.128.0/19 25176 -193.180.164.0/23 197595 -193.180.166.0/24 51747 -193.180.168.0/22 158 -193.180.172.0/24 3301 -193.180.173.0/24 8473 -193.180.174.0/24 1299 -193.180.176.0/24 3301 -193.180.177.0/24 35041 -193.180.178.0/24 35041 -193.180.182.0/23 35041 -193.180.184.0/22 25416 -193.180.188.0/23 25416 -193.180.192.0/23 205199 -193.180.197.0/24 1257 -193.180.199.0/24 3246 -193.180.200.0/24 3246 -193.180.201.0/24 35041 -193.180.204.0/23 29217 -193.180.206.0/24 51929 -193.180.207.0/24 1257 -193.180.208.0/21 158 -193.180.216.0/24 1257 -193.180.217.0/24 35100 -193.180.218.0/23 206799 -193.180.220.0/22 51747 -193.180.224.0/24 3301 -193.180.226.0/24 3301 -193.180.228.0/24 3301 -193.180.229.0/24 3246 -193.180.231.0/24 3246 -193.180.232.0/24 209315 -193.180.234.0/24 209315 -193.180.235.0/24 12381 -193.180.236.0/23 35041 -193.180.241.0/24 3301 -193.180.242.0/24 199150 -193.180.243.0/24 35041 -193.180.244.0/23 35041 -193.180.246.0/24 35041 -193.180.247.0/24 39651 -193.180.248.0/23 35041 -193.180.250.0/24 35041 -193.180.251.0/24 158 -193.180.252.0/24 35041 -193.180.253.0/24 3301 -193.180.254.0/24 3246 -193.181.0.0/24 2119 -193.181.1.0/24 1257 -193.181.3.0/24 35041 -193.181.13.0/24 51747 -193.181.14.0/24 158 -193.181.15.0/24 35041 -193.181.16.0/22 42708 -193.181.20.0/23 204850 -193.181.22.0/24 204850 -193.181.23.0/24 29518 -193.181.24.0/24 1257 -193.181.25.0/24 35041 -193.181.26.0/24 209454 -193.181.27.0/24 35041 -193.181.28.0/24 42303 -193.181.30.0/24 35041 -193.181.32.0/24 42303 -193.181.34.0/24 57630 -193.181.35.0/24 1299 -193.181.36.0/24 205199 -193.181.37.0/24 202296 -193.181.38.0/23 8681 -193.181.41.0/24 1299 -193.181.42.0/24 13189 -193.181.43.0/24 51132 -193.181.44.0/24 205199 -193.181.45.0/24 202395 -193.181.46.0/24 1299 -193.181.47.0/24 202395 -193.181.48.0/22 51132 -193.181.52.0/22 56946 -193.181.56.0/22 3301 -193.181.61.0/24 3246 -193.181.63.0/24 3301 -193.181.64.0/24 28726 -193.181.65.0/24 8473 -193.181.71.0/24 21195 -193.181.128.0/19 12552 -193.181.160.0/24 60213 -193.181.161.0/24 49079 -193.181.175.0/24 12552 -193.181.176.0/24 2119 -193.181.178.0/23 51747 -193.181.187.0/24 2119 -193.181.189.0/24 1257 -193.181.190.0/23 28726 -193.181.195.0/24 3301 -193.181.198.0/23 3301 -193.181.232.0/23 3246 -193.181.234.0/24 42708 -193.181.235.0/24 48171 -193.181.236.0/24 48171 -193.181.237.0/24 3301 -193.181.238.0/23 3301 -193.181.240.0/24 35041 -193.181.242.0/24 35041 -193.181.245.0/24 28852 -193.181.246.0/24 28852 -193.181.248.0/22 158 -193.181.252.0/24 158 -193.181.253.0/24 35041 -193.181.254.0/24 35041 -193.181.255.0/24 51747 -193.182.1.0/24 204896 -193.182.2.0/24 8473 -193.182.4.0/23 51747 -193.182.6.0/24 12552 -193.182.8.0/21 8403 -193.182.16.0/23 34971 -193.182.18.0/24 8473 -193.182.19.0/24 42708 -193.182.22.0/23 51747 -193.182.24.0/21 9201 -193.182.32.0/21 9201 -193.182.40.0/22 9201 -193.182.49.0/24 3246 -193.182.50.0/24 3246 -193.182.52.0/23 3246 -193.182.61.0/24 203038 -193.182.62.0/24 158 -193.182.63.0/24 8473 -193.182.96.0/21 3301 -193.182.104.0/24 12552 -193.182.105.0/24 8473 -193.182.107.0/24 3301 -193.182.109.0/24 50791 -193.182.111.0/24 197595 -193.182.112.0/24 51747 -193.182.115.0/24 3301 -193.182.116.0/24 3301 -193.182.118.0/23 35041 -193.182.120.0/24 35041 -193.182.121.0/24 43893 -193.182.122.0/24 35041 -193.182.123.0/24 34946 -193.182.125.0/24 3301 -193.182.127.0/24 3301 -193.182.144.0/23 61102 -193.182.146.0/24 35041 -193.182.147.0/24 28680 -193.182.148.0/22 35041 -193.182.154.0/23 35041 -193.182.156.0/24 35742 -193.182.157.0/24 12552 -193.182.158.0/23 12552 -193.182.160.0/24 35041 -193.182.162.0/23 35041 -193.182.164.0/23 35041 -193.182.166.0/24 42525 -193.182.167.0/24 43893 -193.182.173.0/24 35041 -193.182.174.0/23 202646 -193.182.176.0/23 202646 -193.182.178.0/24 202646 -193.182.179.0/24 35041 -193.182.180.0/24 198463 -193.182.181.0/24 12552 -193.182.182.0/24 35041 -193.182.183.0/24 29518 -193.182.185.0/24 12552 -193.182.186.0/23 3246 -193.182.188.0/24 33885 -193.182.189.0/24 51747 -193.182.190.0/24 3301 -193.182.224.0/22 57208 -193.182.228.0/23 57208 -193.182.230.0/23 1257 -193.182.232.0/23 1257 -193.182.234.0/23 204850 -193.182.236.0/23 204850 -193.182.239.0/24 19399 -193.182.240.0/24 35041 -193.182.241.0/24 1653 -193.182.242.0/24 8473 -193.182.244.0/24 8403 -193.182.245.0/24 41175 -193.182.246.0/24 35041 -193.182.247.0/24 19399 -193.182.248.0/23 35041 -193.182.250.0/24 35041 -193.182.254.0/24 35041 -193.183.0.0/24 207825 -193.183.1.0/24 44236 -193.183.2.0/24 3301 -193.183.3.0/24 2119 -193.183.4.0/24 1257 -193.183.5.0/24 35041 -193.183.6.0/24 51747 -193.183.15.0/24 3246 -193.183.16.0/24 3246 -193.183.17.0/24 35041 -193.183.18.0/24 21060 -193.183.19.0/24 198568 -193.183.22.0/24 3301 -193.183.24.0/24 58320 -193.183.26.0/24 58320 -193.183.45.0/24 35041 -193.183.46.0/24 35706 -193.183.54.0/24 3246 -193.183.56.0/24 28726 -193.183.57.0/24 35041 -193.183.58.0/24 35041 -193.183.59.0/24 12552 -193.183.60.0/24 43948 -193.183.61.0/24 3301 -193.183.64.0/22 51747 -193.183.68.0/23 2119 -193.183.70.0/24 34628 -193.183.71.0/24 12552 -193.183.72.0/23 51747 -193.183.76.0/23 51747 -193.183.78.0/24 204847 -193.183.79.0/24 2119 -193.183.80.0/24 204074 -193.183.81.0/24 8473 -193.183.82.0/23 42708 -193.183.84.0/24 42708 -193.183.85.0/24 35100 -193.183.86.0/23 42708 -193.183.88.0/23 42708 -193.183.90.0/24 51747 -193.183.92.0/23 2119 -193.183.95.0/24 51747 -193.183.96.0/24 8949 -193.183.97.0/24 1257 -193.183.98.0/23 34971 -193.183.100.0/22 51747 -193.183.104.0/24 2119 -193.183.105.0/24 1299 -193.183.106.0/23 51747 -193.183.108.0/22 42708 -193.183.112.0/24 206170 -193.183.113.0/24 201604 -193.183.114.0/24 201604 -193.183.115.0/24 60053 -193.183.116.0/24 197595 -193.183.117.0/24 3246 -193.183.118.0/24 2119 -193.183.119.0/24 34385 -193.183.120.0/22 42708 -193.183.124.0/23 51747 -193.183.126.0/23 34946 -193.183.128.0/22 21195 -193.183.132.0/23 3246 -193.183.134.0/24 3246 -193.183.135.0/24 35041 -193.183.136.0/22 35041 -193.183.143.0/24 8473 -193.183.144.0/24 30821 -193.183.145.0/24 12552 -193.183.146.0/24 12552 -193.183.148.0/22 48803 -193.183.155.0/24 35041 -193.183.158.0/24 43948 -193.183.159.0/24 1257 -193.183.160.0/24 1257 -193.183.161.0/24 42649 -193.183.162.0/23 42649 -193.183.164.0/24 43948 -193.183.165.0/24 3301 -193.183.166.0/23 35041 -193.183.168.0/23 35041 -193.183.170.0/23 51747 -193.183.172.0/23 51747 -193.183.174.0/23 29518 -193.183.177.0/24 29518 -193.183.178.0/23 29518 -193.183.180.0/24 41175 -193.183.182.0/24 1257 -193.183.183.0/24 35041 -193.183.184.0/24 35041 -193.183.185.0/24 8220 -193.183.186.0/23 51747 -193.183.192.0/22 48803 -193.183.196.0/22 43065 -193.183.200.0/22 51929 -193.183.204.0/24 35445 -193.183.206.0/24 206258 -193.183.207.0/24 3301 -193.183.208.0/22 35100 -193.183.212.0/22 48803 -193.183.216.0/24 36351 -193.183.217.0/24 9009 -193.183.218.0/23 35445 -193.183.220.0/22 13189 -193.183.224.0/22 30912 -193.183.228.0/22 25252 -193.183.236.0/23 25252 -193.183.238.0/24 202296 -193.183.239.0/24 42649 -193.183.240.0/21 20626 -193.183.249.0/24 205841 -193.183.250.0/23 48803 -193.183.252.0/24 1257 -193.183.253.0/24 44641 -193.184.0.0/15 719 -193.186.0.0/24 5403 -193.186.1.0/24 202766 -193.186.2.0/24 1680 -193.186.3.0/24 2861 -193.186.5.0/24 42061 -193.186.6.0/24 42061 -193.186.7.0/24 43910 -193.186.8.0/24 3215 -193.186.9.0/24 44209 -193.186.10.0/24 43891 -193.186.11.0/24 202766 -193.186.12.0/24 15743 -193.186.13.0/24 43392 -193.186.14.0/24 35415 -193.186.15.0/24 43384 -193.186.16.0/20 25056 -193.186.33.0/24 43899 -193.186.34.0/24 43900 -193.186.35.0/24 31027 -193.186.36.0/23 21155 -193.186.38.0/24 57622 -193.186.39.0/24 198263 -193.186.45.0/24 8437 -193.186.46.0/23 8437 -193.186.48.0/20 8437 -193.186.72.0/21 34785 -193.186.80.0/22 34785 -193.186.84.0/23 34785 -193.186.86.0/23 8447 -193.186.88.0/21 12762 -193.186.96.0/21 12762 -193.186.105.0/24 8447 -193.186.106.0/24 8447 -193.186.107.0/24 8881 -193.186.108.0/24 8881 -193.186.110.0/23 8447 -193.186.160.0/24 35415 -193.186.161.0/24 3330 -193.186.162.0/24 47716 -193.186.163.0/24 49921 -193.186.164.0/22 35369 -193.186.168.0/22 35369 -193.186.172.0/22 1205 -193.186.176.0/22 1205 -193.186.180.0/22 25069 -193.186.184.0/22 25069 -193.186.188.0/22 5403 -193.186.196.0/22 42705 -193.186.200.0/24 209608 -193.186.204.0/22 197697 -193.186.208.0/24 43322 -193.186.209.0/24 6830 -193.186.211.0/24 35415 -193.186.212.0/24 210077 -193.186.215.0/24 35415 -193.186.216.0/21 21039 -193.186.224.0/20 21039 -193.186.240.0/21 21039 -193.186.252.0/24 31662 -193.186.255.0/24 42746 -193.187.0.0/24 12586 -193.187.2.0/23 47515 -193.187.4.0/22 33872 -193.187.8.0/24 1764 -193.187.9.0/24 33872 -193.187.10.0/23 33872 -193.187.44.0/22 44594 -193.187.48.0/22 44594 -193.187.52.0/24 199043 -193.187.53.0/24 57524 -193.187.55.0/24 12703 -193.187.56.0/21 31117 -193.187.64.0/24 31229 -193.187.66.0/23 31229 -193.187.68.0/23 31229 -193.187.71.0/24 31229 -193.187.72.0/24 199066 -193.187.73.0/24 59509 -193.187.74.0/23 199039 -193.187.76.0/22 59492 -193.187.80.0/23 59494 -193.187.82.0/23 59549 -193.187.88.0/22 197595 -193.187.92.0/22 206485 -193.187.100.0/22 210003 -193.187.104.0/24 34665 -193.187.105.0/24 49505 -193.187.106.0/24 49505 -193.187.107.0/24 34665 -193.187.112.0/22 9009 -193.187.118.0/23 9312 -193.187.120.0/22 57866 -193.187.128.0/22 35913 -193.187.136.0/22 46261 -193.187.144.0/22 49505 -193.187.148.0/22 35505 -193.187.152.0/24 49367 -193.187.153.0/24 395800 -193.187.154.0/23 395800 -193.187.156.0/22 41743 -193.187.164.0/22 49010 -193.187.168.0/22 204860 -193.187.172.0/22 64439 -193.187.180.0/22 46261 -193.187.184.0/22 42947 -193.187.188.0/22 20559 -193.187.192.0/22 43598 -193.187.196.0/22 12766 -193.187.200.0/21 12766 -193.187.208.0/22 12766 -193.187.216.0/21 8447 -193.187.224.0/20 8447 -193.187.240.0/22 8447 -193.187.248.0/22 6830 -193.187.252.0/23 28889 -193.187.254.0/24 28889 -193.187.255.0/24 43632 -193.188.0.0/24 34789 -193.188.7.0/24 6713 -193.188.12.0/23 5416 -193.188.14.0/24 394256 -193.188.20.0/23 208861 -193.188.22.0/24 57043 -193.188.23.0/24 50673 -193.188.24.0/22 54290 -193.188.28.0/22 34081 -193.188.32.0/20 12046 -193.188.48.0/20 29029 -193.188.64.0/19 8934 -193.188.96.0/19 5416 -193.188.128.0/22 12812 -193.188.135.0/24 9051 -193.188.136.0/24 9051 -193.188.140.0/23 30836 -193.188.149.0/24 9155 -193.188.154.0/23 8405 -193.188.156.0/23 198008 -193.188.158.0/23 3209 -193.188.160.0/19 43080 -193.188.192.0/23 20922 -193.188.194.0/24 20922 -193.188.196.0/24 3320 -193.188.197.0/24 8956 -193.188.198.0/23 57263 -193.188.204.0/22 6717 -193.188.212.0/24 21406 -193.188.240.0/24 3303 -193.188.245.0/24 3303 -193.188.248.0/24 3301 -193.188.249.0/24 34973 -193.188.250.0/24 8735 -193.188.254.0/24 34990 -193.188.255.0/24 34422 -193.189.54.0/23 11355 -193.189.66.0/23 34815 -193.189.68.0/23 34508 -193.189.72.0/23 29593 -193.189.74.0/23 9009 -193.189.76.0/23 40969 -193.189.78.0/23 25486 -193.189.80.0/23 32787 -193.189.86.0/23 25190 -193.189.88.0/23 34983 -193.189.92.0/23 59701 -193.189.94.0/23 34906 -193.189.96.0/23 20850 -193.189.98.0/23 33925 -193.189.102.0/24 206335 -193.189.103.0/24 200543 -193.189.104.0/23 25358 -193.189.106.0/23 203098 -193.189.108.0/23 35044 -193.189.112.0/23 5602 -193.189.114.0/23 24961 -193.189.116.0/23 44124 -193.189.120.0/23 34998 -193.189.122.0/24 35285 -193.189.123.0/24 39200 -193.189.124.0/23 30781 -193.189.126.0/23 21310 -193.189.129.0/24 29474 -193.189.134.0/24 15879 -193.189.135.0/24 35001 -193.189.136.0/24 35150 -193.189.138.0/24 59640 -193.189.139.0/24 34942 -193.189.141.0/24 25525 -193.189.142.0/24 9121 -193.189.143.0/24 34948 -193.189.144.0/24 34961 -193.189.146.0/24 34964 -193.189.147.0/24 34958 -193.189.148.0/24 35282 -193.189.149.0/24 8312 -193.189.157.0/24 21382 -193.189.158.0/24 21382 -193.189.160.0/19 5603 -193.189.192.0/19 3257 -193.189.224.0/19 6805 -193.190.0.0/15 2611 -193.192.0.0/24 28685 -193.192.1.0/24 49392 -193.192.4.0/24 25060 -193.192.8.0/22 25060 -193.192.14.0/24 20902 -193.192.15.0/24 49392 -193.192.32.0/23 5089 -193.192.34.0/23 5413 -193.192.36.0/23 41709 -193.192.38.0/23 35446 -193.192.40.0/23 60955 -193.192.42.0/23 35450 -193.192.44.0/23 208913 -193.192.46.0/23 49383 -193.192.48.0/23 35480 -193.192.50.0/23 62136 -193.192.52.0/23 208913 -193.192.54.0/23 34950 -193.192.58.0/23 56876 -193.192.60.0/23 24989 -193.192.62.0/23 49715 -193.192.64.0/19 5413 -193.192.96.0/20 12735 -193.192.112.0/22 12735 -193.192.116.0/23 12735 -193.192.118.0/24 12735 -193.192.120.0/22 12735 -193.192.124.0/23 12735 -193.192.127.0/24 12735 -193.192.128.0/20 5461 -193.192.144.0/20 6880 -193.192.160.0/22 205708 -193.192.164.0/24 205342 -193.192.165.0/24 200745 -193.192.168.0/24 198851 -193.192.169.0/24 200504 -193.192.170.0/24 198777 -193.192.171.0/24 202133 -193.192.173.0/24 12741 -193.192.174.0/23 199980 -193.192.176.0/22 202050 -193.192.180.0/24 202050 -193.192.181.0/24 12741 -193.192.184.0/24 199538 -193.192.185.0/24 203613 -193.192.189.0/24 198115 -193.192.190.0/24 12741 -193.192.191.0/24 41097 -193.192.192.0/19 51320 -193.192.224.0/21 6730 -193.192.232.0/23 25164 -193.192.234.0/23 6730 -193.192.236.0/22 6730 -193.192.240.0/20 6730 -193.193.0.0/19 12874 -193.193.64.0/21 8267 -193.193.72.0/21 8323 -193.193.80.0/20 8323 -193.193.96.0/19 5089 -193.193.128.0/19 1836 -193.193.160.0/24 49392 -193.193.161.0/24 47973 -193.193.164.0/24 49392 -193.193.165.0/24 8312 -193.193.166.0/23 57243 -193.193.168.0/24 13110 -193.193.169.0/24 8426 -193.193.170.0/24 15962 -193.193.172.0/23 12428 -193.193.174.0/23 39892 -193.193.176.0/22 39892 -193.193.180.0/24 39892 -193.193.181.0/24 16274 -193.193.183.0/24 12498 -193.193.184.0/23 9128 -193.193.186.0/23 44734 -193.193.188.0/24 15404 -193.193.189.0/24 34253 -193.193.190.0/23 24961 -193.193.192.0/19 3254 -193.193.224.0/20 8393 -193.193.240.0/21 8393 -193.193.248.0/23 8393 -193.193.251.0/24 8393 -193.193.252.0/22 8393 -193.194.0.0/24 34794 -193.194.10.0/23 15580 -193.194.21.0/24 34795 -193.194.32.0/19 6713 -193.194.64.0/19 3208 -193.194.96.0/22 48123 -193.194.100.0/23 48123 -193.194.102.0/23 204560 -193.194.104.0/24 204560 -193.194.105.0/24 198028 -193.194.106.0/23 57270 -193.194.108.0/22 50479 -193.194.112.0/22 44668 -193.194.116.0/22 56683 -193.194.120.0/23 57291 -193.194.122.0/24 34397 -193.194.123.0/24 44962 -193.194.124.0/22 50633 -193.194.129.0/24 9211 -193.194.130.0/23 208023 -193.194.132.0/22 8528 -193.194.136.0/24 47717 -193.194.138.0/23 8659 -193.194.140.0/23 8880 -193.194.144.0/23 9175 -193.194.148.0/23 12460 -193.194.152.0/24 13812 -193.194.153.0/24 12500 -193.194.154.0/24 12500 -193.194.156.0/24 12982 -193.194.158.0/24 8476 -193.194.159.0/24 12301 -193.194.162.0/23 15825 -193.195.0.0/21 2529 -193.195.8.0/22 1273 -193.195.12.0/22 2529 -193.195.16.0/23 2529 -193.195.18.0/24 8468 -193.195.19.0/24 2529 -193.195.20.0/22 2529 -193.195.24.0/21 2529 -193.195.32.0/22 2529 -193.195.36.0/22 1273 -193.195.40.0/21 2529 -193.195.48.0/20 2529 -193.195.64.0/18 2529 -193.195.128.0/21 2529 -193.195.136.0/23 2529 -193.195.138.0/24 2856 -193.195.139.0/24 2529 -193.195.140.0/22 2529 -193.195.144.0/20 2529 -193.195.160.0/19 2529 -193.195.192.0/20 8950 -193.195.208.0/20 2529 -193.195.224.0/19 2529 -193.196.0.0/21 553 -193.196.8.0/22 553 -193.196.12.0/24 42873 -193.196.13.0/24 553 -193.196.14.0/23 553 -193.196.16.0/20 553 -193.196.32.0/20 34878 -193.196.48.0/20 553 -193.196.64.0/18 553 -193.196.128.0/17 553 -193.197.0.0/16 553 -193.198.0.0/16 2108 -193.199.0.0/16 719 -193.200.3.0/24 12637 -193.200.4.0/24 42208 -193.200.5.0/24 3303 -193.200.6.0/24 42257 -193.200.7.0/24 42212 -193.200.9.0/24 12905 -193.200.10.0/24 42231 -193.200.11.0/24 29518 -193.200.12.0/23 57844 -193.200.14.0/23 43205 -193.200.16.0/23 57844 -193.200.18.0/24 42224 -193.200.19.0/24 42234 -193.200.20.0/24 42246 -193.200.21.0/24 42276 -193.200.22.0/24 42238 -193.200.23.0/24 15404 -193.200.25.0/24 201467 -193.200.30.0/24 8100 -193.200.31.0/24 42251 -193.200.32.0/23 42590 -193.200.34.0/23 42809 -193.200.36.0/23 42620 -193.200.38.0/23 42714 -193.200.40.0/24 42606 -193.200.42.0/23 34019 -193.200.44.0/23 3292 -193.200.46.0/23 42643 -193.200.50.0/23 41297 -193.200.54.0/23 197717 -193.200.58.0/23 42630 -193.200.60.0/23 61205 -193.200.62.0/24 5588 -193.200.64.0/23 6681 -193.200.66.0/23 42503 -193.200.68.0/23 42510 -193.200.72.0/22 198610 -193.200.76.0/23 29496 -193.200.80.0/23 15510 -193.200.82.0/23 43153 -193.200.84.0/23 206907 -193.200.86.0/23 197603 -193.200.88.0/23 42534 -193.200.90.0/23 62121 -193.200.92.0/23 44654 -193.200.94.0/23 42589 -193.200.98.0/23 20860 -193.200.100.0/23 35327 -193.200.108.0/23 42564 -193.200.110.0/23 8218 -193.200.112.0/23 42572 -193.200.114.0/23 48888 -193.200.116.0/23 31235 -193.200.118.0/23 21021 -193.200.120.0/23 48157 -193.200.122.0/23 52020 -193.200.124.0/23 47205 -193.200.126.0/23 44186 -193.200.128.0/24 30962 -193.200.130.0/24 42960 -193.200.131.0/24 42849 -193.200.132.0/24 29028 -193.200.133.0/24 50467 -193.200.134.0/24 42960 -193.200.136.0/24 42854 -193.200.138.0/24 43329 -193.200.139.0/24 31178 -193.200.140.0/24 1136 -193.200.141.0/24 33906 -193.200.143.0/24 6855 -193.200.144.0/24 25598 -193.200.145.0/24 49728 -193.200.146.0/24 49102 -193.200.147.0/24 8608 -193.200.150.0/24 29066 -193.200.151.0/24 42905 -193.200.153.0/24 50072 -193.200.155.0/24 43406 -193.200.157.0/24 43572 -193.200.158.0/24 42831 -193.200.160.0/24 13237 -193.200.161.0/24 42918 -193.200.162.0/24 15830 -193.200.164.0/24 49981 -193.200.166.0/24 1273 -193.200.168.0/24 43102 -193.200.170.0/24 29434 -193.200.171.0/24 35393 -193.200.172.0/24 49836 -193.200.173.0/24 42331 -193.200.175.0/24 15596 -193.200.176.0/24 39584 -193.200.177.0/24 43014 -193.200.178.0/24 31477 -193.200.179.0/24 42982 -193.200.180.0/24 42967 -193.200.182.0/24 42970 -193.200.183.0/24 42975 -193.200.184.0/24 43217 -193.200.185.0/24 57265 -193.200.187.0/24 43015 -193.200.188.0/24 42999 -193.200.189.0/24 43042 -193.200.190.0/24 43078 -193.200.191.0/24 15404 -193.200.193.0/24 31147 -193.200.195.0/24 43033 -193.200.197.0/24 198909 -193.200.200.0/24 35584 -193.200.201.0/24 43028 -193.200.202.0/24 43018 -193.200.203.0/24 43804 -193.200.204.0/24 3292 -193.200.205.0/24 44461 -193.200.207.0/24 43034 -193.200.208.0/24 43021 -193.200.209.0/24 50297 -193.200.210.0/24 15657 -193.200.211.0/24 43287 -193.200.212.0/24 43051 -193.200.213.0/24 31638 -193.200.214.0/24 174 -193.200.215.0/24 43058 -193.200.216.0/24 43062 -193.200.218.0/24 48152 -193.200.219.0/24 43086 -193.200.220.0/24 34781 -193.200.223.0/24 43107 -193.200.224.0/24 43104 -193.200.225.0/24 43088 -193.200.227.0/24 43091 -193.200.228.0/24 31374 -193.200.230.0/24 201785 -193.200.231.0/24 3215 -193.200.234.0/24 43117 -193.200.236.0/24 3303 -193.200.237.0/24 51581 -193.200.238.0/24 56655 -193.200.239.0/24 42301 -193.200.240.0/24 8793 -193.200.241.0/24 51167 -193.200.242.0/24 28763 -193.200.247.0/24 44138 -193.200.248.0/24 43143 -193.200.249.0/24 61333 -193.200.250.0/24 3292 -193.200.253.0/24 47487 -193.200.254.0/24 58175 -193.200.255.0/24 25456 -193.201.0.0/23 15436 -193.201.2.0/24 15436 -193.201.6.0/23 15436 -193.201.16.0/23 59913 -193.201.18.0/23 29314 -193.201.20.0/23 8708 -193.201.24.0/23 41998 -193.201.26.0/23 9168 -193.201.30.0/23 25001 -193.201.32.0/24 198009 -193.201.33.0/24 6830 -193.201.34.0/24 15694 -193.201.35.0/24 39542 -193.201.36.0/24 15507 -193.201.37.0/24 39542 -193.201.38.0/24 39542 -193.201.39.0/24 3292 -193.201.40.0/24 24796 -193.201.41.0/24 1764 -193.201.42.0/24 25040 -193.201.43.0/24 39542 -193.201.44.0/24 60766 -193.201.45.0/24 25173 -193.201.47.0/24 25006 -193.201.48.0/22 34968 -193.201.52.0/22 24679 -193.201.56.0/24 5670 -193.201.60.0/22 24995 -193.201.64.0/23 6067 -193.201.66.0/23 24981 -193.201.68.0/23 25024 -193.201.70.0/23 25098 -193.201.74.0/23 198869 -193.201.76.0/23 8677 -193.201.78.0/23 25321 -193.201.80.0/23 16181 -193.201.82.0/24 51177 -193.201.83.0/24 16181 -193.201.84.0/22 4589 -193.201.88.0/22 44927 -193.201.97.0/24 29468 -193.201.98.0/24 25000 -193.201.101.0/24 25017 -193.201.102.0/24 38977 -193.201.104.0/24 25042 -193.201.105.0/24 198429 -193.201.106.0/24 47364 -193.201.107.0/24 39447 -193.201.109.0/24 25066 -193.201.110.0/24 5588 -193.201.111.0/24 57490 -193.201.114.0/23 12722 -193.201.116.0/24 28681 -193.201.118.0/23 20499 -193.201.120.0/23 25030 -193.201.122.0/23 3303 -193.201.124.0/23 49868 -193.201.126.0/23 49392 -193.201.128.0/22 43356 -193.201.132.0/23 13237 -193.201.136.0/22 25070 -193.201.140.0/22 12695 -193.201.153.0/24 205875 -193.201.158.0/24 58028 -193.201.162.0/24 41008 -193.201.163.0/24 2830 -193.201.164.0/24 25075 -193.201.166.0/24 203348 -193.201.167.0/24 25055 -193.201.168.0/24 21192 -193.201.169.0/24 25068 -193.201.170.0/24 3320 -193.201.171.0/24 3313 -193.201.172.0/24 25166 -193.201.173.0/24 210184 -193.201.175.0/24 25119 -193.201.176.0/21 25109 -193.201.184.0/21 25546 -193.201.192.0/22 43528 -193.201.196.0/23 30930 -193.201.200.0/23 20860 -193.201.204.0/24 47572 -193.201.205.0/24 42944 -193.201.208.0/22 31543 -193.201.212.0/22 25059 -193.201.216.0/22 43312 -193.201.220.0/22 57660 -193.201.228.0/22 25159 -193.201.232.0/24 44679 -193.201.233.0/24 5541 -193.201.234.0/23 44679 -193.201.236.0/22 25115 -193.201.240.0/22 41730 -193.201.244.0/22 41561 -193.201.249.0/24 40676 -193.201.250.0/23 40676 -193.201.252.0/24 10461 -193.201.255.0/24 10461 -193.202.8.0/21 206485 -193.202.17.0/24 35056 -193.202.18.0/24 34996 -193.202.19.0/24 31027 -193.202.20.0/24 29037 -193.202.21.0/24 48178 -193.202.22.0/24 35010 -193.202.23.0/24 35027 -193.202.25.0/24 3209 -193.202.26.0/24 3209 -193.202.28.0/24 3209 -193.202.30.0/24 3209 -193.202.32.0/23 21286 -193.202.40.0/24 210302 -193.202.44.0/23 35913 -193.202.65.0/24 25194 -193.202.66.0/24 25194 -193.202.70.0/24 25194 -193.202.72.0/24 25194 -193.202.74.0/23 8455 -193.202.80.0/22 200557 -193.202.84.0/22 206485 -193.202.88.0/23 8455 -193.202.91.0/24 197638 -193.202.92.0/22 197638 -193.202.96.0/21 206436 -193.202.105.0/24 197568 -193.202.106.0/24 13030 -193.202.107.0/24 50216 -193.202.108.0/24 49850 -193.202.109.0/24 31477 -193.202.110.0/24 51468 -193.202.111.0/24 42467 -193.202.115.0/24 49788 -193.202.116.0/24 50372 -193.202.117.0/24 35124 -193.202.118.0/24 47898 -193.202.119.0/24 12843 -193.202.120.0/24 51695 -193.202.121.0/24 197133 -193.202.122.0/24 62412 -193.202.123.0/24 50876 -193.202.124.0/24 15904 -193.202.125.0/24 31216 -193.202.127.0/24 50198 -193.202.128.0/19 13043 -193.202.160.0/20 201142 -193.202.176.0/21 394221 -193.202.184.0/21 133924 -193.202.226.0/24 205468 -193.202.232.0/24 205468 -193.202.240.0/20 21113 -193.203.2.0/23 50629 -193.203.5.0/24 8330 -193.203.7.0/24 59864 -193.203.8.0/22 200557 -193.203.12.0/22 35913 -193.203.16.0/23 50629 -193.203.18.0/23 8400 -193.203.20.0/23 29527 -193.203.24.0/24 208336 -193.203.26.0/23 62420 -193.203.32.0/22 41191 -193.203.36.0/24 20668 -193.203.37.0/24 35386 -193.203.38.0/24 57635 -193.203.39.0/24 35711 -193.203.40.0/22 12722 -193.203.44.0/22 41235 -193.203.48.0/22 48031 -193.203.52.0/22 49028 -193.203.56.0/22 196979 -193.203.60.0/22 41268 -193.203.64.0/19 5555 -193.203.96.0/23 47599 -193.203.99.0/24 47303 -193.203.100.0/23 29258 -193.203.102.0/23 47342 -193.203.104.0/23 47316 -193.203.106.0/23 15525 -193.203.108.0/23 47300 -193.203.112.0/23 47338 -193.203.114.0/23 47319 -193.203.116.0/23 42831 -193.203.118.0/23 15699 -193.203.120.0/23 31004 -193.203.122.0/23 50372 -193.203.124.0/23 16176 -193.203.128.0/19 2110 -193.203.192.0/23 39341 -193.203.194.0/23 38967 -193.203.196.0/23 3332 -193.203.198.0/23 51605 -193.203.200.0/23 200521 -193.203.204.0/23 39758 -193.203.206.0/23 41835 -193.203.208.0/23 60327 -193.203.210.0/23 21396 -193.203.212.0/24 39206 -193.203.213.0/24 6453 -193.203.214.0/23 137443 -193.203.216.0/23 16055 -193.203.218.0/23 38931 -193.203.220.0/23 38915 -193.203.222.0/23 42656 -193.203.225.0/24 39637 -193.203.226.0/24 39637 -193.203.228.0/22 12954 -193.203.232.0/22 20942 -193.203.238.0/24 24887 -193.203.240.0/20 31727 -193.204.0.0/15 137 -193.206.0.0/16 137 -193.207.0.0/17 8612 -193.207.128.0/18 8612 -193.207.192.0/19 3269 -193.207.224.0/20 3269 -193.207.240.0/21 3269 -193.207.248.0/21 8612 -193.208.0.0/14 1759 -193.212.0.0/14 2119 -193.216.0.0/15 1257 -193.218.0.0/24 35761 -193.218.1.0/24 1241 -193.218.8.0/22 203437 -193.218.12.0/22 31216 -193.218.16.0/20 28676 -193.218.36.0/24 5408 -193.218.38.0/23 137443 -193.218.44.0/22 35472 -193.218.48.0/20 35472 -193.218.80.0/23 3329 -193.218.84.0/22 8388 -193.218.88.0/22 8388 -193.218.92.0/23 8388 -193.218.94.0/24 49593 -193.218.95.0/24 49034 -193.218.96.0/23 5408 -193.218.98.0/24 8462 -193.218.99.0/24 9105 -193.218.100.0/22 49071 -193.218.104.0/24 49071 -193.218.112.0/24 12361 -193.218.113.0/24 12903 -193.218.114.0/24 22150 -193.218.115.0/24 12992 -193.218.116.0/24 52220 -193.218.117.0/24 24777 -193.218.118.0/23 207656 -193.218.124.0/23 5408 -193.218.126.0/24 205671 -193.218.127.0/24 61288 -193.218.132.0/22 44033 -193.218.136.0/22 42048 -193.218.140.0/22 42065 -193.218.144.0/22 197252 -193.218.148.0/22 38923 -193.218.152.0/22 41079 -193.218.156.0/22 43426 -193.218.160.0/20 203231 -193.218.176.0/22 43816 -193.218.180.0/22 44362 -193.218.192.0/21 8221 -193.218.202.0/24 34788 -193.218.203.0/24 205240 -193.218.204.0/24 61317 -193.218.206.0/24 198217 -193.218.208.0/21 20686 -193.218.216.0/22 20686 -193.218.220.0/23 20686 -193.218.222.0/24 61317 -193.218.223.0/24 24849 -193.218.224.0/19 24849 -193.219.0.0/24 61317 -193.219.1.0/24 24645 -193.219.2.0/23 24645 -193.219.4.0/24 24645 -193.219.5.0/24 21031 -193.219.6.0/24 21031 -193.219.7.0/24 61317 -193.219.8.0/23 35135 -193.219.10.0/23 6769 -193.219.12.0/23 6769 -193.219.14.0/24 6769 -193.219.15.0/24 8881 -193.219.16.0/21 3272 -193.219.24.0/22 3272 -193.219.28.0/24 8664 -193.219.31.0/24 20681 -193.219.32.0/21 2847 -193.219.40.0/21 5479 -193.219.48.0/21 5479 -193.219.56.0/22 5479 -193.219.60.0/22 2847 -193.219.64.0/20 2847 -193.219.80.0/20 5479 -193.219.96.0/24 41868 -193.219.100.0/24 41630 -193.219.102.0/24 41644 -193.219.103.0/24 29612 -193.219.104.0/24 41667 -193.219.105.0/24 3320 -193.219.106.0/24 41640 -193.219.107.0/24 41643 -193.219.109.0/24 41100 -193.219.110.0/24 5552 -193.219.111.0/24 44481 -193.219.114.0/24 41660 -193.219.115.0/24 12703 -193.219.116.0/24 41677 -193.219.118.0/24 8916 -193.219.119.0/24 35584 -193.219.120.0/24 49546 -193.219.123.0/24 9208 -193.219.124.0/24 41685 -193.219.125.0/24 41748 -193.219.126.0/24 41662 -193.219.127.0/24 41673 -193.219.128.0/20 5479 -193.219.144.0/21 5479 -193.219.152.0/21 2847 -193.219.160.0/19 2847 -193.219.192.0/18 5377 -193.220.0.0/17 5377 -193.220.128.0/19 5377 -193.220.160.0/20 5377 -193.220.176.0/21 5377 -193.220.184.0/22 5377 -193.220.188.0/24 44933 -193.220.189.0/24 5377 -193.220.190.0/24 5377 -193.220.191.0/24 44933 -193.220.192.0/20 44933 -193.220.208.0/21 8841 -193.220.216.0/22 8841 -193.220.220.0/22 5377 -193.220.224.0/19 5377 -193.221.2.0/24 199541 -193.221.14.0/24 199541 -193.221.28.0/24 25252 -193.221.32.0/22 25252 -193.221.36.0/23 25252 -193.221.38.0/24 25252 -193.221.40.0/24 4768 -193.221.47.0/24 25252 -193.221.52.0/23 25252 -193.221.54.0/23 25717 -193.221.56.0/24 25717 -193.221.58.0/24 25717 -193.221.59.0/24 25252 -193.221.61.0/24 3257 -193.221.63.0/24 4637 -193.221.64.0/22 4637 -193.221.68.0/24 25717 -193.221.72.0/23 25717 -193.221.74.0/24 3301 -193.221.75.0/24 25717 -193.221.76.0/23 25717 -193.221.78.0/24 3301 -193.221.79.0/24 25717 -193.221.80.0/24 25717 -193.221.82.0/23 48266 -193.221.84.0/23 21108 -193.221.87.0/24 21108 -193.221.89.0/24 21108 -193.221.90.0/24 6904 -193.221.93.0/24 34244 -193.221.96.0/22 3215 -193.221.100.0/23 3215 -193.221.110.0/24 58011 -193.221.112.0/24 35023 -193.221.113.0/24 8075 -193.221.114.0/24 57485 -193.221.115.0/24 35099 -193.221.116.0/24 34554 -193.221.117.0/24 209678 -193.221.118.0/24 8272 -193.221.119.0/24 35121 -193.221.120.0/24 34244 -193.221.121.0/24 12586 -193.221.122.0/24 41930 -193.221.123.0/24 34244 -193.221.124.0/24 16095 -193.221.126.0/24 31165 -193.221.127.0/24 29394 -193.221.128.0/19 35201 -193.221.170.0/24 199541 -193.221.181.0/24 199541 -193.221.192.0/24 208393 -193.221.193.0/24 40676 -193.221.194.0/23 40676 -193.221.196.0/22 199493 -193.221.200.0/22 9009 -193.221.212.0/22 9009 -193.221.219.0/24 34244 -193.221.220.0/24 199163 -193.222.48.0/23 59667 -193.222.51.0/24 58333 -193.222.52.0/22 29076 -193.222.56.0/24 198205 -193.222.57.0/24 57459 -193.222.58.0/24 57609 -193.222.59.0/24 3303 -193.222.61.0/24 200564 -193.222.63.0/24 35468 -193.222.64.0/19 3303 -193.222.100.0/24 40676 -193.222.101.0/24 35913 -193.222.102.0/23 40676 -193.222.106.0/23 3303 -193.222.109.0/24 35469 -193.222.112.0/20 559 -193.222.128.0/24 34019 -193.222.129.0/24 35532 -193.222.130.0/24 29208 -193.222.131.0/24 15694 -193.222.132.0/24 38975 -193.222.133.0/24 24751 -193.222.134.0/24 3215 -193.222.135.0/24 31080 -193.222.136.0/24 35514 -193.222.137.0/24 31477 -193.222.138.0/24 15576 -193.222.140.0/24 15683 -193.222.141.0/24 35542 -193.222.142.0/23 16347 -193.222.144.0/22 50537 -193.222.148.0/22 3303 -193.222.152.0/22 3303 -193.222.160.0/20 3303 -193.222.188.0/23 16347 -193.222.190.0/24 29396 -193.222.191.0/24 35527 -193.222.192.0/19 6730 -193.222.224.0/20 60059 -193.222.240.0/24 60059 -193.222.241.0/24 559 -193.222.242.0/23 559 -193.222.244.0/22 559 -193.222.248.0/23 559 -193.222.250.0/24 559 -193.222.251.0/24 39613 -193.222.252.0/23 203568 -193.222.254.0/24 3949 -193.222.255.0/24 13030 -193.223.0.0/24 35281 -193.223.16.0/20 3303 -193.223.32.0/19 3303 -193.223.64.0/22 9009 -193.223.68.0/24 206630 -193.223.69.0/24 39613 -193.223.70.0/23 203568 -193.223.76.0/24 198511 -193.223.77.0/24 24940 -193.223.78.0/24 21396 -193.223.79.0/24 42831 -193.223.80.0/23 3303 -193.223.82.0/23 13030 -193.223.84.0/22 13030 -193.223.88.0/21 13030 -193.223.98.0/24 35409 -193.223.99.0/24 48564 -193.223.100.0/24 260 -193.223.101.0/24 39756 -193.223.102.0/24 3303 -193.223.103.0/24 39613 -193.223.104.0/24 209737 -193.223.105.0/24 60721 -193.223.106.0/24 60721 -193.223.107.0/24 209737 -193.223.108.0/24 39613 -193.223.192.0/20 6830 -193.223.224.0/20 3303 -193.223.240.0/21 15623 -193.223.248.0/22 208310 -193.224.0.0/17 1955 -193.224.128.0/18 1955 -193.224.192.0/19 1955 -193.224.224.0/21 1955 -193.224.232.0/22 1955 -193.224.236.0/23 1955 -193.224.238.0/24 1955 -193.224.239.0/24 20523 -193.224.240.0/20 1955 -193.225.0.0/16 1955 -193.226.0.0/23 2614 -193.226.2.0/24 2614 -193.226.3.0/24 6830 -193.226.4.0/22 2614 -193.226.8.0/21 2614 -193.226.16.0/21 2614 -193.226.24.0/23 2614 -193.226.26.0/24 2614 -193.226.27.0/24 3233 -193.226.28.0/23 2614 -193.226.30.0/24 6830 -193.226.31.0/24 2614 -193.226.34.0/24 13210 -193.226.35.0/24 2614 -193.226.37.0/24 2614 -193.226.38.0/24 2614 -193.226.40.0/24 24839 -193.226.42.0/23 6830 -193.226.45.0/24 8953 -193.226.47.0/24 6830 -193.226.48.0/21 2614 -193.226.56.0/24 2614 -193.226.58.0/24 6830 -193.226.60.0/24 31017 -193.226.61.0/24 6663 -193.226.62.0/24 13210 -193.226.63.0/24 31017 -193.226.64.0/23 9199 -193.226.80.0/24 34201 -193.226.81.0/24 49052 -193.226.83.0/24 6830 -193.226.84.0/24 6830 -193.226.85.0/24 8751 -193.226.90.0/23 207129 -193.226.92.0/24 31554 -193.226.93.0/24 2614 -193.226.99.0/24 6830 -193.226.100.0/23 6830 -193.226.105.0/24 6830 -193.226.109.0/24 2614 -193.226.111.0/24 16121 -193.226.112.0/24 8708 -193.226.113.0/24 6663 -193.226.114.0/24 6663 -193.226.115.0/24 8708 -193.226.116.0/24 8708 -193.226.117.0/24 6663 -193.226.118.0/24 57136 -193.226.119.0/24 6663 -193.226.120.0/24 6663 -193.226.121.0/24 50252 -193.226.122.0/24 6663 -193.226.123.0/24 44649 -193.226.124.0/24 6663 -193.226.125.0/24 8708 -193.226.126.0/24 6663 -193.226.127.0/24 8708 -193.226.128.0/20 5588 -193.226.144.0/24 5588 -193.226.145.0/24 9064 -193.226.146.0/23 5588 -193.226.148.0/23 5588 -193.226.150.0/24 9064 -193.226.151.0/24 5588 -193.226.152.0/21 5588 -193.226.160.0/19 5588 -193.226.192.0/23 20845 -193.226.194.0/23 12301 -193.226.196.0/24 12301 -193.226.197.0/24 200964 -193.226.198.0/23 12301 -193.226.200.0/21 12301 -193.226.208.0/22 12301 -193.226.212.0/22 20845 -193.226.216.0/21 12301 -193.226.224.0/23 12301 -193.226.226.0/23 20845 -193.226.228.0/22 12301 -193.226.232.0/23 20845 -193.226.234.0/24 12301 -193.226.235.0/24 200964 -193.226.236.0/23 12301 -193.226.238.0/23 20845 -193.226.240.0/23 20845 -193.226.242.0/23 12301 -193.226.244.0/22 20845 -193.226.248.0/23 20845 -193.226.250.0/23 12301 -193.226.252.0/22 12301 -193.227.1.0/24 2561 -193.227.5.0/24 2561 -193.227.6.0/23 2561 -193.227.8.0/21 2561 -193.227.16.0/20 2561 -193.227.32.0/21 2561 -193.227.40.0/23 2561 -193.227.42.0/24 2561 -193.227.44.0/24 2561 -193.227.46.0/23 2561 -193.227.49.0/24 2561 -193.227.50.0/23 2561 -193.227.52.0/23 2561 -193.227.55.0/24 2561 -193.227.57.0/24 2561 -193.227.59.0/24 2561 -193.227.60.0/22 2561 -193.227.64.0/19 15553 -193.227.96.0/24 41485 -193.227.97.0/24 41478 -193.227.98.0/24 200662 -193.227.100.0/24 43939 -193.227.101.0/24 41482 -193.227.102.0/24 41506 -193.227.104.0/24 5602 -193.227.106.0/24 198047 -193.227.107.0/24 39781 -193.227.108.0/24 6830 -193.227.110.0/24 31278 -193.227.111.0/24 29017 -193.227.112.0/24 57478 -193.227.115.0/24 41510 -193.227.116.0/24 41508 -193.227.117.0/24 44569 -193.227.119.0/24 41583 -193.227.120.0/24 39299 -193.227.122.0/24 61317 -193.227.123.0/24 41519 -193.227.124.0/24 41698 -193.227.125.0/24 61317 -193.227.126.0/24 1257 -193.227.127.0/24 41594 -193.227.129.0/24 61317 -193.227.130.0/24 35101 -193.227.131.0/24 35126 -193.227.133.0/24 6453 -193.227.134.0/24 49352 -193.227.135.0/24 61317 -193.227.144.0/21 8794 -193.227.152.0/22 55303 -193.227.156.0/22 8794 -193.227.160.0/20 9051 -193.227.176.0/22 9051 -193.227.180.0/24 9051 -193.227.181.0/24 34370 -193.227.182.0/23 9051 -193.227.184.0/21 9051 -193.227.192.0/22 29037 -193.227.196.0/22 8462 -193.227.200.0/23 15845 -193.227.203.0/24 8735 -193.227.204.0/23 35703 -193.227.206.0/23 12998 -193.227.208.0/22 13023 -193.227.212.0/22 13253 -193.227.216.0/21 12966 -193.227.224.0/23 15513 -193.227.228.0/23 29608 -193.227.230.0/23 35731 -193.227.232.0/23 35764 -193.227.234.0/23 250 -193.227.238.0/23 8426 -193.227.244.0/23 35425 -193.227.246.0/23 44574 -193.227.248.0/23 8218 -193.227.250.0/23 35737 -193.227.252.0/23 38959 -193.227.254.0/23 24632 -193.228.0.0/24 8220 -193.228.2.0/24 44416 -193.228.3.0/24 200577 -193.228.4.0/22 8445 -193.228.8.0/23 8445 -193.228.12.0/22 48095 -193.228.16.0/20 24708 -193.228.32.0/21 1764 -193.228.40.0/22 1764 -193.228.46.0/23 50719 -193.228.48.0/22 45027 -193.228.52.0/22 42331 -193.228.56.0/22 204287 -193.228.60.0/24 200577 -193.228.61.0/24 48486 -193.228.62.0/24 48486 -193.228.72.0/22 24768 -193.228.76.0/22 200629 -193.228.80.0/24 21360 -193.228.84.0/22 29643 -193.228.90.0/24 133766 -193.228.93.0/24 6830 -193.228.94.0/23 41384 -193.228.96.0/22 41384 -193.228.100.0/24 16099 -193.228.101.0/24 200577 -193.228.104.0/22 30739 -193.228.108.0/22 12389 -193.228.112.0/21 34785 -193.228.120.0/23 34785 -193.228.122.0/24 34785 -193.228.123.0/24 34681 -193.228.132.0/22 196705 -193.228.141.0/24 198047 -193.228.144.0/24 12586 -193.228.149.0/24 43353 -193.228.150.0/24 30962 -193.228.151.0/24 43427 -193.228.152.0/24 31083 -193.228.153.0/24 43360 -193.228.154.0/24 43365 -193.228.155.0/24 174 -193.228.156.0/24 57642 -193.228.157.0/24 43504 -193.228.158.0/24 58306 -193.228.159.0/24 43374 -193.228.160.0/23 43201 -193.228.162.0/24 208890 -193.228.163.0/24 43201 -193.228.164.0/22 12494 -193.228.172.0/23 34754 -193.228.174.0/24 39330 -193.228.176.0/22 201809 -193.228.180.0/24 201809 -193.228.182.0/23 34754 -193.228.184.0/24 8445 -193.228.187.0/24 8220 -193.228.188.0/22 13039 -193.228.193.0/24 62240 -193.228.194.0/23 48146 -193.228.196.0/24 62240 -193.228.199.0/24 62240 -193.228.204.0/23 48146 -193.228.208.0/20 29161 -193.228.224.0/23 35913 -193.228.226.0/24 48330 -193.228.227.0/24 34477 -193.228.232.0/23 49808 -193.228.234.0/24 12767 -193.228.236.0/24 200417 -193.229.0.0/16 719 -193.230.0.0/17 3233 -193.230.129.0/24 6830 -193.230.132.0/24 6663 -193.230.133.0/24 6830 -193.230.134.0/23 6830 -193.230.137.0/24 41806 -193.230.138.0/24 12672 -193.230.141.0/24 12310 -193.230.142.0/24 12672 -193.230.143.0/24 201957 -193.230.151.0/24 31454 -193.230.152.0/24 9050 -193.230.155.0/24 8708 -193.230.156.0/24 34551 -193.230.158.0/24 8708 -193.230.159.0/24 6910 -193.230.160.0/23 12302 -193.230.162.0/24 12302 -193.230.164.0/23 8708 -193.230.166.0/23 12302 -193.230.168.0/23 12302 -193.230.171.0/24 6830 -193.230.172.0/24 6830 -193.230.173.0/24 8708 -193.230.174.0/24 6830 -193.230.176.0/24 6663 -193.230.177.0/24 6830 -193.230.178.0/24 6663 -193.230.181.0/24 6663 -193.230.183.0/24 6663 -193.230.184.0/24 34201 -193.230.185.0/24 8708 -193.230.188.0/24 2614 -193.230.189.0/24 29437 -193.230.191.0/24 13181 -193.230.192.0/24 41028 -193.230.193.0/24 6830 -193.230.194.0/24 3233 -193.230.197.0/24 12842 -193.230.198.0/24 25461 -193.230.199.0/24 6663 -193.230.200.0/23 6663 -193.230.202.0/23 6830 -193.230.204.0/23 8708 -193.230.207.0/24 41028 -193.230.208.0/24 34201 -193.230.212.0/24 8708 -193.230.215.0/24 39668 -193.230.217.0/24 8708 -193.230.219.0/24 39737 -193.230.225.0/24 13021 -193.230.227.0/24 12442 -193.230.228.0/24 12672 -193.230.230.0/24 8930 -193.230.231.0/24 6830 -193.230.232.0/24 16120 -193.230.233.0/24 24704 -193.230.235.0/24 2614 -193.230.238.0/24 2614 -193.230.239.0/24 15856 -193.230.240.0/24 6830 -193.230.241.0/24 9050 -193.230.244.0/24 6830 -193.230.245.0/24 12310 -193.230.247.0/24 6830 -193.230.248.0/24 43285 -193.231.0.0/23 2614 -193.231.2.0/24 2614 -193.231.3.0/24 16220 -193.231.4.0/23 16220 -193.231.6.0/23 2614 -193.231.8.0/21 2614 -193.231.16.0/20 2614 -193.231.32.0/20 2614 -193.231.48.0/20 8953 -193.231.65.0/24 6663 -193.231.66.0/24 25103 -193.231.67.0/24 31313 -193.231.68.0/23 6663 -193.231.70.0/24 16026 -193.231.71.0/24 6663 -193.231.72.0/24 34808 -193.231.73.0/24 6663 -193.231.74.0/24 6663 -193.231.75.0/24 47427 -193.231.76.0/24 6663 -193.231.77.0/24 47427 -193.231.78.0/24 6663 -193.231.79.0/24 56519 -193.231.80.0/24 6663 -193.231.81.0/24 6830 -193.231.83.0/24 13059 -193.231.84.0/24 9050 -193.231.93.0/24 24858 -193.231.96.0/24 6830 -193.231.100.0/24 9050 -193.231.102.0/24 9050 -193.231.104.0/22 9050 -193.231.108.0/24 8708 -193.231.111.0/24 47774 -193.231.112.0/24 8708 -193.231.113.0/24 50336 -193.231.114.0/24 34714 -193.231.116.0/23 6830 -193.231.119.0/24 6830 -193.231.120.0/23 6830 -193.231.122.0/24 15856 -193.231.123.0/24 6830 -193.231.124.0/23 6830 -193.231.126.0/24 6830 -193.231.127.0/24 5588 -193.231.128.0/24 2614 -193.231.129.0/24 43703 -193.231.130.0/23 2614 -193.231.132.0/24 2614 -193.231.133.0/24 8751 -193.231.134.0/23 2614 -193.231.136.0/24 2614 -193.231.137.0/24 6663 -193.231.138.0/23 2614 -193.231.140.0/22 2614 -193.231.144.0/20 2614 -193.231.161.0/24 205859 -193.231.162.0/24 44649 -193.231.163.0/24 6830 -193.231.166.0/24 60644 -193.231.167.0/24 61348 -193.231.168.0/24 8708 -193.231.169.0/24 8751 -193.231.170.0/24 8751 -193.231.172.0/24 8614 -193.231.173.0/24 15407 -193.231.174.0/23 15407 -193.231.176.0/24 31313 -193.231.178.0/24 8708 -193.231.181.0/24 6830 -193.231.182.0/24 6830 -193.231.184.0/21 8708 -193.231.192.0/24 6830 -193.231.193.0/24 8708 -193.231.194.0/23 8708 -193.231.197.0/24 42790 -193.231.199.0/24 12310 -193.231.202.0/24 9009 -193.231.204.0/24 8708 -193.231.205.0/24 12672 -193.231.208.0/20 6830 -193.231.224.0/20 8708 -193.231.240.0/24 9050 -193.231.242.0/24 31017 -193.231.243.0/24 6830 -193.231.246.0/24 6830 -193.231.247.0/24 8708 -193.231.249.0/24 8708 -193.231.250.0/24 6830 -193.231.251.0/24 39669 -193.231.254.0/24 8708 -193.231.255.0/24 6830 -193.232.0.0/19 3218 -193.232.32.0/22 31261 -193.232.36.0/24 50227 -193.232.37.0/24 8848 -193.232.38.0/24 50282 -193.232.39.0/24 48009 -193.232.40.0/22 56426 -193.232.44.0/24 60363 -193.232.45.0/24 62004 -193.232.46.0/24 201498 -193.232.47.0/24 38928 -193.232.48.0/24 50452 -193.232.49.0/24 50142 -193.232.50.0/24 50169 -193.232.51.0/24 50218 -193.232.52.0/22 25086 -193.232.56.0/23 50276 -193.232.58.0/24 49742 -193.232.60.0/22 34052 -193.232.64.0/24 8985 -193.232.65.0/24 3255 -193.232.66.0/23 42385 -193.232.68.0/23 3267 -193.232.70.0/24 59801 -193.232.72.0/23 205022 -193.232.74.0/24 42385 -193.232.75.0/24 57251 -193.232.76.0/24 15835 -193.232.77.0/24 38928 -193.232.78.0/24 204582 -193.232.79.0/24 41895 -193.232.80.0/22 42385 -193.232.84.0/24 42385 -193.232.85.0/24 3316 -193.232.88.0/22 2854 -193.232.92.0/24 12406 -193.232.93.0/24 43832 -193.232.94.0/24 8985 -193.232.95.0/24 62004 -193.232.96.0/23 50382 -193.232.98.0/23 50677 -193.232.100.0/24 39589 -193.232.101.0/24 50416 -193.232.102.0/24 60536 -193.232.104.0/24 50640 -193.232.105.0/24 50571 -193.232.106.0/24 8732 -193.232.107.0/24 51285 -193.232.108.0/24 44704 -193.232.109.0/24 50703 -193.232.110.0/24 50644 -193.232.111.0/24 50701 -193.232.112.0/24 58060 -193.232.113.0/24 206814 -193.232.114.0/24 200463 -193.232.115.0/24 41082 -193.232.116.0/24 61411 -193.232.117.0/24 61375 -193.232.118.0/24 199576 -193.232.119.0/24 61383 -193.232.120.0/24 61313 -193.232.121.0/24 50214 -193.232.122.0/24 50214 -193.232.123.0/24 33844 -193.232.124.0/24 44597 -193.232.126.0/23 42385 -193.232.128.0/23 43832 -193.232.130.0/24 48287 -193.232.131.0/24 3316 -193.232.132.0/24 45029 -193.232.133.0/24 44522 -193.232.134.0/24 44597 -193.232.137.0/24 45018 -193.232.139.0/24 47445 -193.232.141.0/24 31649 -193.232.142.0/23 42385 -193.232.144.0/22 48287 -193.232.148.0/22 48061 -193.232.152.0/23 199085 -193.232.154.0/24 199583 -193.232.155.0/24 59688 -193.232.156.0/23 42385 -193.232.158.0/23 48287 -193.232.161.0/24 64433 -193.232.162.0/24 34858 -193.232.163.0/24 60740 -193.232.164.0/24 206814 -193.232.165.0/24 56707 -193.232.167.0/24 56903 -193.232.168.0/24 60363 -193.232.169.0/24 64433 -193.232.170.0/23 58082 -193.232.172.0/23 3058 -193.232.174.0/24 5572 -193.232.175.0/24 45029 -193.232.176.0/24 47354 -193.232.182.0/24 57211 -193.232.183.0/24 64433 -193.232.184.0/24 39911 -193.232.185.0/24 52156 -193.232.186.0/23 57107 -193.232.188.0/24 45029 -193.232.192.0/19 3218 -193.232.224.0/24 20821 -193.232.226.0/23 15835 -193.232.230.0/24 42139 -193.232.231.0/24 42728 -193.232.234.0/23 57186 -193.232.237.0/24 42385 -193.232.238.0/23 59525 -193.232.240.0/23 48287 -193.232.243.0/24 42385 -193.232.246.0/24 57211 -193.232.247.0/24 34858 -193.232.248.0/22 6697 -193.232.252.0/24 200294 -193.232.254.0/24 8790 -193.232.255.0/24 56781 -193.233.0.0/22 2895 -193.233.4.0/24 2895 -193.233.5.0/24 204898 -193.233.6.0/24 204833 -193.233.7.0/24 204898 -193.233.8.0/24 2895 -193.233.9.0/24 202999 -193.233.10.0/23 2895 -193.233.12.0/23 2895 -193.233.14.0/24 2587 -193.233.15.0/24 51558 -193.233.16.0/21 8749 -193.233.24.0/22 56690 -193.233.28.0/23 56690 -193.233.30.0/23 202423 -193.233.32.0/20 2895 -193.233.48.0/22 8325 -193.233.52.0/23 207447 -193.233.54.0/23 2895 -193.233.56.0/23 202999 -193.233.58.0/23 2895 -193.233.60.0/24 12695 -193.233.61.0/24 201421 -193.233.62.0/24 12695 -193.233.63.0/24 51558 -193.233.64.0/21 20549 -193.233.72.0/24 202423 -193.233.73.0/24 56690 -193.233.74.0/24 35415 -193.233.75.0/24 202423 -193.233.76.0/23 8749 -193.233.78.0/24 202423 -193.233.79.0/24 201842 -193.233.80.0/20 2895 -193.233.96.0/19 2895 -193.233.128.0/21 8749 -193.233.136.0/21 2895 -193.233.144.0/22 8480 -193.233.148.0/24 205628 -193.233.149.0/24 202423 -193.233.150.0/23 206422 -193.233.152.0/24 6869 -193.233.153.0/24 203344 -193.233.154.0/24 49954 -193.233.155.0/24 203163 -193.233.156.0/22 203337 -193.233.160.0/24 49981 -193.233.161.0/24 2895 -193.233.162.0/24 206152 -193.233.163.0/24 206221 -193.233.164.0/24 206221 -193.233.165.0/24 206167 -193.233.166.0/23 2895 -193.233.168.0/21 8749 -193.233.176.0/20 8749 -193.233.192.0/18 2895 -193.234.0.0/24 35041 -193.234.1.0/24 3246 -193.234.2.0/24 42303 -193.234.3.0/24 1299 -193.234.4.0/24 8473 -193.234.5.0/24 204863 -193.234.6.0/24 205199 -193.234.7.0/24 8473 -193.234.8.0/22 12552 -193.234.12.0/24 29518 -193.234.14.0/24 25225 -193.234.15.0/24 50989 -193.234.16.0/24 1257 -193.234.17.0/24 43853 -193.234.18.0/24 8769 -193.234.19.0/24 43948 -193.234.20.0/23 43948 -193.234.22.0/24 43948 -193.234.23.0/24 42303 -193.234.24.0/24 1257 -193.234.25.0/24 204896 -193.234.26.0/24 3301 -193.234.27.0/24 44581 -193.234.28.0/23 202296 -193.234.30.0/24 43853 -193.234.31.0/24 3301 -193.234.32.0/21 50989 -193.234.40.0/22 59913 -193.234.44.0/23 8473 -193.234.46.0/24 197603 -193.234.47.0/24 8473 -193.234.48.0/22 200134 -193.234.52.0/23 43893 -193.234.54.0/24 12552 -193.234.55.0/24 9009 -193.234.56.0/22 35100 -193.234.60.0/24 3246 -193.234.61.0/24 204896 -193.234.62.0/24 29518 -193.234.63.0/24 3301 -193.234.64.0/22 1257 -193.234.68.0/23 2119 -193.234.70.0/24 197942 -193.234.71.0/24 42303 -193.234.72.0/22 48803 -193.234.77.0/24 200606 -193.234.79.0/24 12552 -193.234.80.0/24 21195 -193.234.81.0/24 197942 -193.234.82.0/24 8769 -193.234.83.0/24 42649 -193.234.84.0/23 12552 -193.234.86.0/24 42649 -193.234.87.0/24 39651 -193.234.88.0/24 200300 -193.234.89.0/24 202296 -193.234.90.0/23 8473 -193.234.92.0/24 29518 -193.234.93.0/24 197942 -193.234.94.0/24 59913 -193.234.95.0/24 50304 -193.234.96.0/24 3301 -193.234.97.0/24 205199 -193.234.98.0/24 29518 -193.234.99.0/24 8473 -193.234.100.0/23 60582 -193.234.102.0/23 51821 -193.234.104.0/24 8523 -193.234.105.0/24 41105 -193.234.106.0/24 12552 -193.234.107.0/24 42303 -193.234.108.0/22 48803 -193.234.112.0/22 205199 -193.234.116.0/22 57630 -193.234.120.0/22 208610 -193.234.128.0/21 203052 -193.234.136.0/22 13189 -193.234.140.0/23 13189 -193.234.142.0/24 1257 -193.234.145.0/24 198568 -193.234.146.0/24 198568 -193.234.147.0/24 202296 -193.234.148.0/24 206117 -193.234.149.0/24 12552 -193.234.150.0/24 201456 -193.234.152.0/22 203029 -193.234.156.0/23 60582 -193.234.158.0/24 21195 -193.234.159.0/24 3301 -193.234.160.0/24 2119 -193.234.165.0/24 51747 -193.234.166.0/24 43853 -193.234.167.0/24 35041 -193.234.168.0/24 3246 -193.234.169.0/24 1257 -193.234.170.0/23 1257 -193.234.172.0/22 1257 -193.234.176.0/24 1257 -193.234.179.0/24 35041 -193.234.180.0/24 2119 -193.234.181.0/24 199321 -193.234.184.0/24 201271 -193.234.185.0/24 2119 -193.234.186.0/23 2119 -193.234.189.0/24 2119 -193.234.191.0/24 2119 -193.234.193.0/24 2119 -193.234.194.0/24 1257 -193.234.195.0/24 2119 -193.234.196.0/23 35041 -193.234.198.0/24 37560 -193.234.199.0/24 35041 -193.234.200.0/23 35041 -193.234.202.0/23 12552 -193.234.204.0/23 12552 -193.234.208.0/21 158 -193.234.216.0/22 16086 -193.234.220.0/23 2119 -193.234.222.0/23 51747 -193.234.224.0/23 34971 -193.234.226.0/24 3246 -193.234.227.0/24 3301 -193.234.228.0/22 197623 -193.234.232.0/24 51747 -193.234.233.0/24 30821 -193.234.234.0/24 12552 -193.234.235.0/24 35041 -193.234.236.0/24 35041 -193.234.237.0/24 2119 -193.234.238.0/23 35041 -193.234.244.0/23 35041 -193.234.247.0/24 10991 -193.234.248.0/24 10991 -193.234.249.0/24 7018 -193.234.250.0/23 35041 -193.234.253.0/24 25176 -193.234.254.0/24 51747 -193.234.255.0/24 42649 -193.235.0.0/24 35041 -193.235.1.0/24 49769 -193.235.2.0/23 49769 -193.235.5.0/24 3246 -193.235.7.0/24 49096 -193.235.12.0/22 60238 -193.235.16.0/24 12552 -193.235.17.0/24 29518 -193.235.18.0/23 206799 -193.235.20.0/23 60582 -193.235.22.0/23 51747 -193.235.24.0/24 35041 -193.235.27.0/24 12552 -193.235.28.0/24 199768 -193.235.30.0/24 60586 -193.235.31.0/24 3301 -193.235.33.0/24 12552 -193.235.34.0/24 35041 -193.235.35.0/24 3301 -193.235.36.0/22 56805 -193.235.40.0/24 50904 -193.235.41.0/24 3301 -193.235.42.0/24 3301 -193.235.43.0/24 202296 -193.235.44.0/24 21195 -193.235.46.0/24 198054 -193.235.48.0/24 3301 -193.235.50.0/24 35041 -193.235.51.0/24 8403 -193.235.52.0/23 203426 -193.235.56.0/23 197332 -193.235.58.0/24 206941 -193.235.59.0/24 12552 -193.235.60.0/24 49408 -193.235.61.0/24 202296 -193.235.62.0/24 34309 -193.235.63.0/24 202296 -193.235.65.0/24 12552 -193.235.66.0/24 46844 -193.235.67.0/24 8473 -193.235.68.0/23 12552 -193.235.70.0/24 12552 -193.235.71.0/24 13189 -193.235.73.0/24 42649 -193.235.74.0/24 3246 -193.235.76.0/22 3301 -193.235.80.0/24 1257 -193.235.86.0/23 3301 -193.235.88.0/21 3301 -193.235.96.0/24 35041 -193.235.99.0/24 3301 -193.235.100.0/23 35041 -193.235.102.0/24 35041 -193.235.104.0/24 58653 -193.235.106.0/24 1299 -193.235.114.0/24 20836 -193.235.115.0/24 35041 -193.235.116.0/24 3246 -193.235.117.0/24 51747 -193.235.119.0/24 35041 -193.235.120.0/24 35041 -193.235.121.0/24 49949 -193.235.122.0/24 35041 -193.235.126.0/23 35041 -193.235.128.0/24 202671 -193.235.130.0/24 42649 -193.235.131.0/24 13189 -193.235.133.0/24 3301 -193.235.137.0/24 3301 -193.235.138.0/23 3301 -193.235.140.0/24 198568 -193.235.141.0/24 51747 -193.235.142.0/23 2119 -193.235.144.0/24 35041 -193.235.145.0/24 3246 -193.235.146.0/24 28099 -193.235.147.0/24 43350 -193.235.148.0/22 198568 -193.235.154.0/24 3301 -193.235.157.0/24 35041 -193.235.158.0/24 35041 -193.235.159.0/24 20514 -193.235.160.0/19 3246 -193.235.192.0/24 206408 -193.235.193.0/24 42649 -193.235.194.0/24 35041 -193.235.195.0/24 34946 -193.235.197.0/24 35041 -193.235.198.0/23 56946 -193.235.200.0/23 42708 -193.235.202.0/24 51747 -193.235.204.0/24 16084 -193.235.206.0/24 8403 -193.235.207.0/24 174 -193.235.215.0/24 201816 -193.235.216.0/22 201816 -193.235.222.0/24 3301 -193.235.223.0/24 35041 -193.235.225.0/24 201171 -193.235.226.0/24 201087 -193.235.227.0/24 35041 -193.235.228.0/24 12552 -193.235.229.0/24 3246 -193.235.230.0/23 35041 -193.235.236.0/24 20626 -193.235.237.0/24 12552 -193.235.238.0/23 51747 -193.236.32.0/19 199155 -193.236.64.0/19 199155 -193.236.100.0/23 12833 -193.236.120.0/22 15525 -193.236.132.0/22 8528 -193.236.152.0/24 43887 -193.237.0.0/16 5378 -193.238.0.0/23 29119 -193.238.2.0/24 29119 -193.238.3.0/24 35699 -193.238.4.0/22 1759 -193.238.8.0/22 3320 -193.238.12.0/22 34544 -193.238.16.0/22 39907 -193.238.20.0/22 25143 -193.238.24.0/24 6830 -193.238.25.0/24 43417 -193.238.26.0/24 34788 -193.238.27.0/24 15598 -193.238.28.0/22 29465 -193.238.36.0/22 29436 -193.238.40.0/22 43939 -193.238.44.0/24 201624 -193.238.45.0/24 58073 -193.238.46.0/23 49981 -193.238.48.0/22 47111 -193.238.52.0/22 29680 -193.238.56.0/22 34714 -193.238.60.0/22 34624 -193.238.64.0/22 31412 -193.238.68.0/22 35575 -193.238.72.0/22 196767 -193.238.76.0/22 34618 -193.238.80.0/22 44574 -193.238.92.0/22 20938 -193.238.96.0/22 21075 -193.238.100.0/22 6831 -193.238.104.0/22 204119 -193.238.108.0/24 41269 -193.238.109.0/24 28761 -193.238.110.0/23 28761 -193.238.118.0/24 208631 -193.238.119.0/24 57906 -193.238.120.0/22 206882 -193.238.124.0/22 12586 -193.238.128.0/22 34757 -193.238.132.0/22 48877 -193.238.136.0/22 34758 -193.238.140.0/22 16111 -193.238.144.0/22 4589 -193.238.148.0/22 35012 -193.238.152.0/23 15626 -193.238.154.0/23 34787 -193.238.156.0/22 35492 -193.238.164.0/22 8190 -193.238.168.0/23 31608 -193.238.170.0/23 34805 -193.238.176.0/22 25549 -193.238.180.0/22 34844 -193.238.185.0/24 31027 -193.238.188.0/23 39213 -193.238.190.0/24 39213 -193.238.191.0/24 44440 -193.238.192.0/22 9009 -193.238.196.0/22 8804 -193.238.200.0/22 35198 -193.238.208.0/22 29165 -193.238.212.0/22 24589 -193.238.216.0/21 24589 -193.238.224.0/22 34933 -193.238.228.0/22 24679 -193.238.232.0/23 8897 -193.238.234.0/23 5089 -193.238.240.0/22 34968 -193.238.244.0/22 41011 -193.238.248.0/22 4589 -193.238.252.0/22 34982 -193.239.0.0/22 35096 -193.239.4.0/22 60781 -193.239.8.0/22 35089 -193.239.12.0/22 35116 -193.239.16.0/22 40988 -193.239.20.0/22 3303 -193.239.24.0/22 29031 -193.239.28.0/22 35170 -193.239.32.0/22 202466 -193.239.36.0/22 47273 -193.239.40.0/22 35609 -193.239.44.0/22 60713 -193.239.48.0/22 31027 -193.239.52.0/22 47902 -193.239.56.0/22 35179 -193.239.60.0/22 15470 -193.239.64.0/22 8614 -193.239.68.0/22 39468 -193.239.72.0/22 35297 -193.239.76.0/22 29608 -193.239.80.0/22 35215 -193.239.88.0/22 25542 -193.239.92.0/22 35224 -193.239.96.0/22 207199 -193.239.100.0/22 20960 -193.239.104.0/22 25394 -193.239.108.0/22 35243 -193.239.120.0/22 8304 -193.239.124.0/22 35306 -193.239.128.0/23 35081 -193.239.130.0/23 34358 -193.239.132.0/24 3257 -193.239.133.0/24 8460 -193.239.134.0/23 35093 -193.239.136.0/23 42194 -193.239.138.0/23 13085 -193.239.140.0/23 20668 -193.239.142.0/23 205172 -193.239.144.0/23 51310 -193.239.146.0/23 35913 -193.239.148.0/23 12303 -193.239.152.0/23 35144 -193.239.156.0/23 35151 -193.239.158.0/23 34538 -193.239.162.0/23 51242 -193.239.164.0/23 43289 -193.239.168.0/23 31027 -193.239.170.0/23 43543 -193.239.172.0/23 208913 -193.239.174.0/23 20712 -193.239.176.0/23 3292 -193.239.180.0/23 35296 -193.239.182.0/23 25454 -193.239.184.0/24 198971 -193.239.185.0/24 15598 -193.239.186.0/23 35224 -193.239.188.0/23 35339 -193.239.192.0/23 29608 -193.239.194.0/23 31554 -193.239.198.0/23 12811 -193.239.200.0/23 3303 -193.239.204.0/24 198611 -193.239.205.0/24 197448 -193.239.206.0/23 33951 -193.239.210.0/23 34762 -193.239.212.0/23 35261 -193.239.214.0/23 34516 -193.239.216.0/23 35523 -193.239.218.0/23 42417 -193.239.220.0/23 48751 -193.239.222.0/23 35316 -193.239.224.0/23 43939 -193.239.226.0/24 35317 -193.239.227.0/24 24989 -193.239.228.0/23 35341 -193.239.230.0/23 35322 -193.239.232.0/24 51807 -193.239.233.0/24 59535 -193.239.234.0/23 35325 -193.239.238.0/23 35345 -193.239.240.0/23 12811 -193.239.242.0/23 35377 -193.239.246.0/23 208913 -193.239.248.0/23 42557 -193.239.250.0/23 35412 -193.239.252.0/23 35413 -193.239.254.0/23 35442 -193.240.0.0/19 3549 -193.240.32.0/23 3549 -193.240.34.0/24 202213 -193.240.35.0/24 3549 -193.240.36.0/22 3549 -193.240.40.0/23 3549 -193.240.42.0/24 3549 -193.240.43.0/24 200005 -193.240.44.0/22 3549 -193.240.48.0/21 3549 -193.240.56.0/22 3549 -193.240.60.0/23 3549 -193.240.62.0/24 3549 -193.240.63.0/24 202213 -193.240.64.0/19 3549 -193.240.96.0/20 3549 -193.240.112.0/23 3549 -193.240.114.0/24 208746 -193.240.115.0/24 3549 -193.240.116.0/22 3549 -193.240.120.0/21 3549 -193.240.128.0/19 3549 -193.240.160.0/24 3549 -193.240.161.0/24 46851 -193.240.162.0/23 3549 -193.240.164.0/22 3549 -193.240.168.0/24 3549 -193.240.169.0/24 21439 -193.240.170.0/24 32880 -193.240.171.0/24 3549 -193.240.172.0/23 3549 -193.240.174.0/24 10753 -193.240.175.0/24 3549 -193.240.176.0/24 22005 -193.240.177.0/24 3549 -193.240.178.0/23 3549 -193.240.180.0/22 3549 -193.240.184.0/24 4373 -193.240.185.0/24 3549 -193.240.186.0/23 3549 -193.240.188.0/24 3549 -193.240.189.0/24 11312 -193.240.190.0/24 202917 -193.240.191.0/24 16789 -193.240.192.0/22 3549 -193.240.196.0/23 3549 -193.240.198.0/24 3549 -193.240.199.0/24 13363 -193.240.200.0/21 3549 -193.240.208.0/24 3549 -193.240.209.0/24 11932 -193.240.210.0/23 3549 -193.240.212.0/24 3549 -193.240.213.0/24 10753 -193.240.214.0/24 3549 -193.240.215.0/24 14226 -193.240.216.0/24 395369 -193.240.217.0/24 10753 -193.240.218.0/23 3549 -193.240.220.0/22 3549 -193.240.224.0/20 3549 -193.240.240.0/21 3549 -193.240.248.0/24 21636 -193.240.249.0/24 3549 -193.240.250.0/23 3549 -193.240.252.0/22 3549 -193.241.0.0/17 9201 -193.241.128.0/18 9201 -193.241.192.0/20 9201 -193.241.208.0/22 9201 -193.241.212.0/24 3301 -193.241.213.0/24 9201 -193.241.214.0/23 9201 -193.241.216.0/21 9201 -193.241.224.0/20 9201 -193.241.240.0/24 9201 -193.241.241.0/24 2119 -193.241.242.0/23 9201 -193.241.244.0/23 3301 -193.241.246.0/23 9201 -193.241.248.0/24 9201 -193.241.249.0/24 2119 -193.241.250.0/24 1257 -193.241.251.0/24 9201 -193.241.252.0/23 3301 -193.241.254.0/23 9201 -193.242.5.0/24 21033 -193.242.6.0/23 21033 -193.242.8.0/24 3320 -193.242.9.0/24 21033 -193.242.17.0/24 21033 -193.242.42.0/24 21033 -193.242.78.0/24 3246 -193.242.80.0/20 286 -193.242.97.0/24 24875 -193.242.100.0/24 34199 -193.242.102.0/24 34437 -193.242.103.0/24 34950 -193.242.104.0/24 57252 -193.242.106.0/24 44676 -193.242.107.0/24 31027 -193.242.108.0/24 60781 -193.242.109.0/24 44676 -193.242.110.0/24 34253 -193.242.111.0/24 2128 -193.242.112.0/24 34256 -193.242.113.0/24 5413 -193.242.114.0/24 34280 -193.242.115.0/24 5413 -193.242.116.0/24 5413 -193.242.117.0/24 34345 -193.242.118.0/24 60521 -193.242.119.0/24 21155 -193.242.120.0/24 34358 -193.242.121.0/24 50179 -193.242.122.0/24 3301 -193.242.123.0/24 34378 -193.242.124.0/24 33813 -193.242.126.0/24 719 -193.242.128.0/22 12714 -193.242.132.0/23 12714 -193.242.134.0/24 198917 -193.242.135.0/24 198932 -193.242.136.0/23 29314 -193.242.138.0/23 200531 -193.242.140.0/24 205468 -193.242.141.0/24 35549 -193.242.142.0/23 198928 -193.242.144.0/24 58311 -193.242.145.0/24 44676 -193.242.146.0/23 41959 -193.242.148.0/22 58314 -193.242.152.0/24 198922 -193.242.153.0/24 44676 -193.242.154.0/24 60435 -193.242.155.0/24 16095 -193.242.156.0/22 52180 -193.242.160.0/22 51742 -193.242.164.0/23 60267 -193.242.166.0/24 57311 -193.242.167.0/24 34665 -193.242.168.0/23 58321 -193.242.170.0/23 57250 -193.242.172.0/24 198945 -193.242.173.0/24 198929 -193.242.174.0/23 47820 -193.242.176.0/22 31059 -193.242.182.0/24 49419 -193.242.183.0/24 28878 -193.242.184.0/22 49419 -193.242.188.0/23 58327 -193.242.190.0/23 59404 -193.242.192.0/24 2830 -193.242.193.0/24 59483 -193.242.194.0/23 58331 -193.242.196.0/22 49074 -193.242.200.0/23 59399 -193.242.202.0/23 51583 -193.242.204.0/22 35420 -193.242.208.0/23 58338 -193.242.210.0/23 58329 -193.242.212.0/23 50121 -193.242.214.0/24 198943 -193.242.215.0/24 58335 -193.242.218.0/23 24989 -193.242.224.0/24 11086 -193.242.234.0/24 11086 -193.242.240.0/22 13038 -193.242.244.0/23 13038 -193.242.246.0/24 13038 -193.242.248.0/22 13038 -193.242.254.0/24 13038 -193.243.130.0/23 28695 -193.243.132.0/23 25527 -193.243.136.0/23 28704 -193.243.138.0/23 21298 -193.243.140.0/23 28682 -193.243.142.0/23 28689 -193.243.144.0/24 3246 -193.243.145.0/24 209585 -193.243.148.0/23 12580 -193.243.150.0/23 134121 -193.243.152.0/23 15683 -193.243.154.0/23 203086 -193.243.156.0/23 43109 -193.243.158.0/23 28750 -193.243.160.0/24 35208 -193.243.162.0/23 6798 -193.243.167.0/24 50842 -193.243.168.0/22 51002 -193.243.172.0/22 197018 -193.243.192.0/20 15924 -193.243.208.0/21 15924 -193.243.216.0/23 15924 -193.243.218.0/24 202444 -193.243.219.0/24 15924 -193.243.220.0/22 15924 -193.243.224.0/19 5587 -193.244.1.0/24 60436 -193.244.4.0/22 60436 -193.244.12.0/24 60436 -193.244.20.0/23 60436 -193.244.22.0/24 60436 -193.244.25.0/24 60436 -193.244.27.0/24 60436 -193.244.32.0/23 60436 -193.244.47.0/24 60436 -193.244.71.0/24 60436 -193.244.74.0/23 60436 -193.244.76.0/22 60436 -193.244.104.0/24 60436 -193.244.110.0/24 60436 -193.244.112.0/24 60436 -193.244.118.0/23 60436 -193.244.122.0/24 60436 -193.244.125.0/24 60436 -193.244.126.0/23 60436 -193.244.128.0/23 60436 -193.244.134.0/23 60436 -193.244.136.0/23 60436 -193.244.142.0/24 60436 -193.244.224.0/23 60436 -193.244.238.0/23 60436 -193.244.240.0/22 60436 -193.244.253.0/24 60436 -193.245.3.0/24 60436 -193.245.32.0/21 5610 -193.245.40.0/21 202830 -193.245.72.0/21 15953 -193.245.80.0/20 15953 -193.246.0.0/23 3303 -193.246.12.0/22 28916 -193.246.16.0/21 3303 -193.246.24.0/24 6830 -193.246.28.0/22 6830 -193.246.32.0/20 3303 -193.246.50.0/24 3303 -193.246.56.0/24 205218 -193.246.57.0/24 3303 -193.246.62.0/23 3303 -193.246.64.0/19 9108 -193.246.96.0/23 15361 -193.246.99.0/24 3303 -193.246.100.0/24 3303 -193.246.101.0/24 42760 -193.246.104.0/24 3303 -193.246.106.0/23 201586 -193.246.108.0/23 49457 -193.246.110.0/23 25375 -193.246.113.0/24 3303 -193.246.120.0/24 42760 -193.246.121.0/24 559 -193.246.122.0/24 3303 -193.246.124.0/23 202123 -193.246.127.0/24 3303 -193.246.146.0/23 207830 -193.246.148.0/23 207830 -193.246.151.0/24 3303 -193.246.154.0/23 13287 -193.246.156.0/23 13287 -193.246.174.0/23 48359 -193.246.176.0/20 559 -193.246.192.0/22 14127 -193.246.200.0/23 48359 -193.246.202.0/23 3303 -193.246.207.0/24 12350 -193.246.208.0/20 60633 -193.246.224.0/20 29500 -193.246.240.0/23 702 -193.246.246.0/24 3303 -193.246.248.0/22 3303 -193.246.252.0/24 3303 -193.246.253.0/24 15623 -193.246.255.0/24 702 -193.247.0.0/19 35396 -193.247.32.0/22 39265 -193.247.36.0/22 3303 -193.247.40.0/23 3303 -193.247.42.0/24 3303 -193.247.44.0/22 3303 -193.247.48.0/21 206225 -193.247.56.0/23 206225 -193.247.58.0/24 3303 -193.247.59.0/24 206225 -193.247.60.0/23 3303 -193.247.62.0/23 206225 -193.247.66.0/24 12350 -193.247.72.0/24 15623 -193.247.76.0/24 49457 -193.247.78.0/23 6776 -193.247.83.0/24 3303 -193.247.84.0/24 3303 -193.247.86.0/24 3303 -193.247.87.0/24 49457 -193.247.88.0/24 49457 -193.247.90.0/24 3303 -193.247.93.0/24 6776 -193.247.95.0/24 31592 -193.247.100.0/24 6776 -193.247.102.0/24 6776 -193.247.107.0/24 41872 -193.247.108.0/23 41872 -193.247.110.0/23 3303 -193.247.117.0/24 6730 -193.247.118.0/23 6730 -193.247.120.0/22 6776 -193.247.124.0/23 3303 -193.247.128.0/22 3303 -193.247.132.0/24 3303 -193.247.133.0/24 6730 -193.247.134.0/23 6730 -193.247.146.0/24 6732 -193.247.147.0/24 9108 -193.247.148.0/23 8758 -193.247.150.0/24 6776 -193.247.151.0/24 3303 -193.247.162.0/24 8758 -193.247.163.0/24 21232 -193.247.166.0/23 3303 -193.247.168.0/21 3303 -193.247.180.0/24 9042 -193.247.181.0/24 31169 -193.247.183.0/24 31169 -193.247.184.0/23 6776 -193.247.189.0/24 6730 -193.247.190.0/23 559 -193.247.192.0/24 31169 -193.247.193.0/24 3303 -193.247.196.0/23 12859 -193.247.198.0/24 12414 -193.247.199.0/24 5524 -193.247.202.0/24 31169 -193.247.203.0/24 559 -193.247.205.0/24 15623 -193.247.208.0/22 9100 -193.247.213.0/24 34559 -193.247.216.0/24 34559 -193.247.217.0/24 3303 -193.247.218.0/23 3303 -193.247.224.0/21 3303 -193.247.236.0/23 204895 -193.247.238.0/24 6893 -193.247.239.0/24 6776 -193.247.240.0/22 559 -193.247.244.0/23 3303 -193.247.247.0/24 3303 -193.247.248.0/23 559 -193.247.251.0/24 6776 -193.247.252.0/23 6776 -193.247.254.0/24 559 -193.248.0.0/16 3215 -193.249.210.0/23 3215 -193.250.0.0/16 3215 -193.251.0.0/18 3215 -193.251.64.0/19 3215 -193.251.116.0/24 28708 -193.251.128.0/22 5511 -193.251.132.0/23 5511 -193.251.134.0/24 5511 -193.251.135.0/24 15829 -193.251.136.0/22 5511 -193.251.140.0/23 5511 -193.251.142.0/24 5511 -193.251.143.0/24 30990 -193.251.144.0/21 5511 -193.251.152.0/24 5511 -193.251.153.0/24 37173 -193.251.154.0/23 5511 -193.251.156.0/23 5511 -193.251.158.0/24 25113 -193.251.159.0/24 5511 -193.251.160.0/24 16028 -193.251.161.0/24 5511 -193.251.162.0/23 16028 -193.251.164.0/23 5511 -193.251.166.0/24 5511 -193.251.167.0/24 30990 -193.251.168.0/24 5511 -193.251.169.0/24 36947 -193.251.170.0/23 5511 -193.251.172.0/22 5511 -193.251.176.0/20 3215 -193.251.212.0/22 3215 -193.251.217.0/24 8723 -193.251.218.0/23 37173 -193.251.220.0/23 5511 -193.251.222.0/23 37173 -193.251.224.0/24 30990 -193.251.226.0/23 5511 -193.251.229.0/24 15436 -193.251.230.0/23 3215 -193.251.232.0/21 3215 -193.251.240.0/20 5511 -193.252.0.0/20 3215 -193.252.16.0/23 41951 -193.252.18.0/23 3215 -193.252.20.0/22 3215 -193.252.24.0/21 3215 -193.252.32.0/19 3215 -193.252.80.0/21 3215 -193.252.96.0/24 3215 -193.252.104.0/21 3215 -193.252.113.0/24 5511 -193.252.114.0/24 3215 -193.252.117.0/24 24600 -193.252.118.0/24 24600 -193.252.121.0/24 24600 -193.252.122.0/23 24600 -193.252.124.0/24 25113 -193.252.126.0/24 3215 -193.252.133.0/24 8891 -193.252.138.0/24 13034 -193.252.148.0/23 8891 -193.252.150.0/23 25113 -193.252.152.0/23 25113 -193.252.157.0/24 3215 -193.252.158.0/24 3215 -193.252.168.0/21 3215 -193.252.176.0/20 3215 -193.252.192.0/19 3215 -193.252.226.0/24 5511 -193.252.231.0/24 3215 -193.252.234.0/24 5377 -193.252.235.0/24 25113 -193.252.236.0/24 3215 -193.252.242.0/23 13034 -193.253.0.0/24 13034 -193.253.10.0/24 28708 -193.253.16.0/20 3215 -193.253.32.0/19 3215 -193.253.66.0/23 3215 -193.253.68.0/22 3215 -193.253.72.0/23 3215 -193.253.78.0/23 28708 -193.253.96.0/19 3215 -193.253.141.0/24 28708 -193.253.142.0/23 28708 -193.253.158.0/23 5511 -193.253.169.0/24 28708 -193.253.170.0/24 28708 -193.253.176.0/20 3215 -193.253.192.0/18 3215 -193.254.0.0/24 34559 -193.254.1.0/24 21183 -193.254.2.0/24 21183 -193.254.4.0/22 25176 -193.254.8.0/22 12479 -193.254.12.0/22 62275 -193.254.16.0/23 204895 -193.254.18.0/24 13045 -193.254.19.0/24 3209 -193.254.20.0/24 29691 -193.254.21.0/24 3320 -193.254.22.0/24 3320 -193.254.27.0/24 42831 -193.254.28.0/24 42831 -193.254.29.0/24 34224 -193.254.30.0/24 12726 -193.254.31.0/24 24958 -193.254.32.0/20 198760 -193.254.48.0/20 209686 -193.254.64.0/18 3320 -193.254.128.0/19 3320 -193.254.160.0/20 3320 -193.254.176.0/21 9175 -193.254.184.0/21 25504 -193.254.192.0/23 3246 -193.254.194.0/23 34253 -193.254.196.0/23 25133 -193.254.204.0/23 39560 -193.254.206.0/23 25237 -193.254.208.0/23 44542 -193.254.210.0/23 39451 -193.254.212.0/23 25220 -193.254.214.0/23 12315 -193.254.216.0/23 8461 -193.254.218.0/23 39560 -193.254.220.0/23 25526 -193.254.222.0/23 208552 -193.254.224.0/23 16323 -193.254.226.0/23 57812 -193.254.228.0/23 25323 -193.254.230.0/23 25304 -193.254.232.0/23 12773 -193.254.234.0/23 35913 -193.254.236.0/23 25486 -193.254.238.0/23 57254 -193.254.240.0/23 31034 -193.254.242.0/23 39737 -193.254.244.0/23 35913 -193.254.246.0/23 50095 -193.254.248.0/23 15599 -193.254.250.0/23 25349 -193.254.252.0/23 42926 -193.254.254.0/23 21315 -193.255.0.0/20 8517 -193.255.16.0/21 8517 -193.255.24.0/22 8517 -193.255.28.0/23 8517 -193.255.30.0/24 8456 -193.255.31.0/24 8517 -193.255.32.0/22 8517 -193.255.36.0/23 8517 -193.255.38.0/23 15390 -193.255.40.0/22 8517 -193.255.44.0/24 12777 -193.255.45.0/24 8517 -193.255.46.0/23 8517 -193.255.48.0/20 8517 -193.255.64.0/19 8517 -193.255.96.0/23 8517 -193.255.98.0/23 15390 -193.255.100.0/23 15390 -193.255.102.0/23 8517 -193.255.104.0/21 8517 -193.255.112.0/20 8517 -193.255.128.0/22 8517 -193.255.132.0/23 8517 -193.255.134.0/23 12908 -193.255.136.0/21 8517 -193.255.144.0/20 8517 -193.255.160.0/19 8517 -193.255.192.0/20 8517 -193.255.208.0/21 8517 -193.255.216.0/22 8517 -193.255.220.0/24 8517 -193.255.221.0/24 8678 -193.255.222.0/23 8678 -193.255.224.0/21 8678 -193.255.232.0/22 8678 -193.255.236.0/23 8678 -193.255.238.0/23 8517 -193.255.240.0/23 15390 -193.255.242.0/24 8517 -193.255.243.0/24 15390 -193.255.244.0/22 15390 -193.255.248.0/22 15390 -193.255.252.0/22 8517 -194.0.0.0/24 31529 -194.0.1.0/24 42909 -194.0.2.0/24 42909 -194.0.3.0/24 44358 -194.0.4.0/24 48053 -194.0.5.0/24 48283 -194.0.6.0/24 199670 -194.0.8.0/24 51955 -194.0.9.0/24 2484 -194.0.10.0/24 49488 -194.0.11.0/24 31529 -194.0.12.0/23 25192 -194.0.14.0/24 25192 -194.0.16.0/24 197440 -194.0.17.0/24 42 -194.0.18.0/23 44358 -194.0.20.0/24 44358 -194.0.21.0/24 51833 -194.0.23.0/24 51966 -194.0.24.0/24 201612 -194.0.25.0/24 1921 -194.0.26.0/24 201612 -194.0.27.0/24 42 -194.0.28.0/22 48283 -194.0.32.0/24 197997 -194.0.33.0/24 25354 -194.0.36.0/24 42 -194.0.37.0/24 199670 -194.0.38.0/23 57382 -194.0.40.0/23 198147 -194.0.42.0/24 42 -194.0.43.0/24 199670 -194.0.44.0/24 199670 -194.0.45.0/24 57801 -194.0.46.0/24 55195 -194.0.47.0/24 42 -194.0.48.0/23 51955 -194.0.50.0/24 51955 -194.0.51.0/24 12757 -194.0.52.0/22 56972 -194.0.56.0/23 56972 -194.0.58.0/24 16089 -194.0.59.0/24 16150 -194.0.60.0/24 61392 -194.0.61.0/24 198093 -194.0.62.0/24 199222 -194.0.63.0/24 59669 -194.0.64.0/22 15912 -194.0.68.0/22 60693 -194.0.72.0/22 1764 -194.0.77.0/24 39326 -194.0.78.0/23 39326 -194.0.84.0/22 28862 -194.0.88.0/22 29107 -194.0.92.0/22 42886 -194.0.96.0/22 16274 -194.0.100.0/22 41744 -194.0.108.0/22 41800 -194.0.112.0/22 12389 -194.0.120.0/22 8410 -194.0.124.0/24 35566 -194.0.125.0/24 21299 -194.0.126.0/23 21299 -194.0.128.0/24 42171 -194.0.129.0/24 42452 -194.0.130.0/24 34162 -194.0.131.0/24 42138 -194.0.133.0/24 42831 -194.0.135.0/24 61303 -194.0.136.0/24 42831 -194.0.137.0/24 42128 -194.0.138.0/24 42134 -194.0.140.0/24 42180 -194.0.142.0/24 29144 -194.0.143.0/24 49609 -194.0.144.0/24 42528 -194.0.145.0/24 42190 -194.0.148.0/24 42164 -194.0.149.0/24 42166 -194.0.150.0/24 42222 -194.0.151.0/24 3320 -194.0.153.0/24 16347 -194.0.154.0/24 41508 -194.0.155.0/24 51595 -194.0.157.0/24 25099 -194.0.158.0/24 6461 -194.0.160.0/24 42181 -194.0.161.0/24 200963 -194.0.162.0/24 42219 -194.0.163.0/24 12843 -194.0.164.0/24 42185 -194.0.165.0/24 57548 -194.0.166.0/24 48140 -194.0.167.0/24 42328 -194.0.169.0/24 2116 -194.0.171.0/24 42204 -194.0.173.0/24 198892 -194.0.174.0/23 50815 -194.0.176.0/24 8921 -194.0.177.0/24 49052 -194.0.181.0/24 42272 -194.0.182.0/24 44569 -194.0.184.0/24 20902 -194.0.185.0/24 1241 -194.0.187.0/24 42292 -194.0.190.0/24 42294 -194.0.191.0/24 198061 -194.0.192.0/24 2116 -194.0.193.0/24 207787 -194.0.195.0/24 204599 -194.0.196.0/24 16072 -194.0.197.0/24 60781 -194.0.198.0/24 21423 -194.0.199.0/24 42966 -194.0.200.0/24 42331 -194.0.201.0/24 47692 -194.0.202.0/24 42321 -194.0.203.0/24 42380 -194.0.204.0/24 42324 -194.0.205.0/24 9166 -194.0.206.0/24 42430 -194.0.207.0/24 207787 -194.0.208.0/24 29686 -194.0.209.0/24 42375 -194.0.210.0/24 42353 -194.0.211.0/24 15694 -194.0.212.0/24 41549 -194.0.214.0/24 42359 -194.0.215.0/24 48345 -194.0.216.0/24 9145 -194.0.218.0/24 47315 -194.0.219.0/24 199148 -194.0.221.0/24 207787 -194.0.222.0/24 39508 -194.0.223.0/24 207787 -194.0.224.0/24 42488 -194.0.226.0/24 200824 -194.0.229.0/24 5464 -194.0.230.0/24 42783 -194.0.232.0/24 3209 -194.0.233.0/24 5588 -194.0.234.0/24 9031 -194.0.235.0/24 206546 -194.0.236.0/24 29139 -194.0.237.0/24 42545 -194.0.238.0/24 51736 -194.0.239.0/24 2856 -194.0.240.0/24 198042 -194.0.242.0/24 197446 -194.0.246.0/24 3246 -194.0.247.0/24 9022 -194.0.249.0/24 42792 -194.0.251.0/24 31621 -194.0.252.0/24 62217 -194.0.253.0/24 42568 -194.0.254.0/24 42562 -194.0.255.0/24 8218 -194.1.0.0/17 2607 -194.1.128.0/20 6658 -194.1.144.0/24 43476 -194.1.146.0/24 42454 -194.1.147.0/24 210250 -194.1.149.0/24 42409 -194.1.150.0/24 20860 -194.1.151.0/24 59876 -194.1.153.0/24 42453 -194.1.154.0/24 12552 -194.1.156.0/24 57528 -194.1.157.0/24 16367 -194.1.158.0/24 34090 -194.1.159.0/24 57954 -194.1.161.0/24 35723 -194.1.163.0/24 25091 -194.1.164.0/23 8897 -194.1.166.0/24 9009 -194.1.167.0/24 42423 -194.1.168.0/24 42498 -194.1.169.0/24 50819 -194.1.170.0/23 42498 -194.1.172.0/22 6803 -194.1.176.0/24 42184 -194.1.178.0/24 42426 -194.1.180.0/24 49823 -194.1.181.0/24 41412 -194.1.182.0/24 43280 -194.1.183.0/24 6716 -194.1.184.0/24 210107 -194.1.185.0/24 15962 -194.1.186.0/23 19399 -194.1.188.0/23 3161 -194.1.192.0/24 210107 -194.1.193.0/24 42469 -194.1.194.0/24 25180 -194.1.195.0/24 42458 -194.1.196.0/24 49370 -194.1.197.0/24 3301 -194.1.198.0/24 44263 -194.1.199.0/24 42445 -194.1.200.0/24 16245 -194.1.201.0/24 16380 -194.1.202.0/24 198544 -194.1.203.0/24 42449 -194.1.204.0/24 29119 -194.1.205.0/24 6696 -194.1.206.0/24 42473 -194.1.207.0/24 42464 -194.1.208.0/24 5602 -194.1.209.0/24 42472 -194.1.210.0/24 5413 -194.1.211.0/24 42499 -194.1.212.0/24 8473 -194.1.213.0/24 200285 -194.1.214.0/24 57073 -194.1.215.0/24 16367 -194.1.216.0/24 16367 -194.1.217.0/24 57905 -194.1.218.0/24 29262 -194.1.219.0/24 57915 -194.1.220.0/23 25133 -194.1.222.0/23 16354 -194.1.224.0/21 16160 -194.1.232.0/22 49821 -194.1.236.0/22 42632 -194.1.240.0/22 57898 -194.1.244.0/24 29262 -194.1.245.0/24 6830 -194.1.246.0/24 210104 -194.1.247.0/24 59750 -194.1.248.0/22 15428 -194.1.252.0/24 50247 -194.1.253.0/24 204019 -194.1.255.0/24 44260 -194.2.0.0/19 3215 -194.2.32.0/24 3215 -194.2.33.0/24 206015 -194.2.34.0/24 3215 -194.2.35.0/24 21272 -194.2.36.0/22 3215 -194.2.40.0/23 3215 -194.2.42.0/24 47818 -194.2.43.0/24 3215 -194.2.44.0/22 3215 -194.2.48.0/21 3215 -194.2.56.0/23 16236 -194.2.58.0/23 3215 -194.2.60.0/22 3215 -194.2.64.0/22 3215 -194.2.68.0/24 3215 -194.2.69.0/24 27822 -194.2.70.0/23 3215 -194.2.72.0/23 3215 -194.2.74.0/23 24776 -194.2.76.0/24 3215 -194.2.77.0/24 60595 -194.2.78.0/23 3215 -194.2.80.0/23 3215 -194.2.82.0/24 206443 -194.2.83.0/24 3215 -194.2.84.0/24 206443 -194.2.85.0/24 3215 -194.2.86.0/24 16236 -194.2.87.0/24 3215 -194.2.88.0/22 3215 -194.2.92.0/23 3215 -194.2.94.0/24 10991 -194.2.95.0/24 3215 -194.2.96.0/19 3215 -194.2.128.0/23 3215 -194.2.130.0/23 199233 -194.2.132.0/22 3215 -194.2.136.0/21 3215 -194.2.144.0/21 3215 -194.2.152.0/23 3215 -194.2.155.0/24 8361 -194.2.156.0/22 3215 -194.2.160.0/19 3215 -194.2.192.0/18 3215 -194.3.0.0/22 3215 -194.3.4.0/24 16236 -194.3.5.0/24 3215 -194.3.6.0/23 3215 -194.3.8.0/21 3215 -194.3.16.0/20 3215 -194.3.32.0/19 3215 -194.3.64.0/19 3215 -194.3.96.0/20 3215 -194.3.112.0/22 3215 -194.3.116.0/23 3215 -194.3.118.0/24 34444 -194.3.119.0/24 3215 -194.3.120.0/22 3215 -194.3.124.0/23 24954 -194.3.126.0/23 3215 -194.3.128.0/21 3215 -194.3.136.0/24 24776 -194.3.137.0/24 3215 -194.3.138.0/23 3215 -194.3.140.0/22 3215 -194.3.144.0/20 3215 -194.3.160.0/20 3215 -194.3.176.0/21 3215 -194.3.184.0/22 3215 -194.3.188.0/23 3215 -194.3.190.0/24 9180 -194.3.191.0/24 3215 -194.3.192.0/21 3215 -194.3.200.0/22 3215 -194.3.204.0/24 3215 -194.3.205.0/24 24954 -194.3.206.0/23 24954 -194.3.208.0/20 3215 -194.3.224.0/19 3215 -194.4.7.0/24 34177 -194.4.8.0/23 19399 -194.4.10.0/24 34177 -194.4.12.0/24 34177 -194.4.14.0/23 50673 -194.4.40.0/22 200604 -194.4.48.0/22 48430 -194.4.52.0/22 203178 -194.4.56.0/22 202958 -194.4.60.0/22 43495 -194.4.64.0/22 47264 -194.4.68.0/24 56899 -194.4.72.0/21 39771 -194.4.80.0/20 39771 -194.4.96.0/22 39771 -194.4.100.0/22 209688 -194.4.120.0/24 44902 -194.4.122.0/24 44902 -194.4.140.0/22 21137 -194.4.144.0/22 200497 -194.4.148.0/22 12494 -194.4.154.0/23 50673 -194.4.156.0/22 42881 -194.4.160.0/22 198726 -194.4.164.0/22 49558 -194.4.168.0/22 48095 -194.4.172.0/22 20712 -194.4.208.0/22 51870 -194.4.212.0/23 3215 -194.4.214.0/24 208353 -194.4.215.0/24 51870 -194.4.216.0/22 208353 -194.4.220.0/24 208353 -194.4.221.0/24 51870 -194.4.222.0/24 3215 -194.4.223.0/24 51870 -194.4.224.0/22 3215 -194.4.228.0/23 3215 -194.4.230.0/24 10991 -194.4.231.0/24 3215 -194.4.232.0/21 51366 -194.4.240.0/23 51366 -194.4.242.0/24 12566 -194.4.243.0/24 51366 -194.4.244.0/23 12566 -194.4.246.0/24 12566 -194.4.247.0/24 51366 -194.5.0.0/22 9009 -194.5.4.0/23 210206 -194.5.7.0/24 210206 -194.5.8.0/22 49505 -194.5.12.0/22 197790 -194.5.24.0/23 39855 -194.5.27.0/24 39855 -194.5.28.0/23 48146 -194.5.30.0/23 29639 -194.5.32.0/23 48146 -194.5.36.0/22 29639 -194.5.40.0/22 200530 -194.5.44.0/23 206934 -194.5.48.0/23 206092 -194.5.51.0/24 24926 -194.5.52.0/23 206092 -194.5.55.0/24 3320 -194.5.56.0/22 42976 -194.5.60.0/23 49392 -194.5.63.0/24 24926 -194.5.64.0/22 197518 -194.5.68.0/22 198785 -194.5.72.0/24 35625 -194.5.74.0/23 24954 -194.5.76.0/23 24954 -194.5.78.0/23 49392 -194.5.80.0/23 25215 -194.5.82.0/23 35913 -194.5.84.0/23 35913 -194.5.87.0/24 57499 -194.5.92.0/23 205220 -194.5.94.0/23 43350 -194.5.97.0/24 208476 -194.5.99.0/24 208476 -194.5.100.0/24 202701 -194.5.101.0/24 208101 -194.5.102.0/23 202701 -194.5.104.0/24 202459 -194.5.106.0/24 202455 -194.5.108.0/22 3259 -194.5.112.0/21 3259 -194.5.120.0/22 3259 -194.5.124.0/23 3259 -194.5.134.0/24 12601 -194.5.146.0/23 26556 -194.5.148.0/23 26556 -194.5.150.0/23 24954 -194.5.152.0/22 35913 -194.5.156.0/22 47583 -194.5.160.0/22 29256 -194.5.166.0/23 24954 -194.5.170.0/23 60855 -194.5.172.0/23 60855 -194.5.175.0/24 60631 -194.5.176.0/22 200406 -194.5.180.0/23 39259 -194.5.182.0/24 39259 -194.5.183.0/24 60427 -194.5.188.0/24 60631 -194.5.189.0/24 5400 -194.5.190.0/23 3215 -194.5.192.0/23 208006 -194.5.195.0/24 60631 -194.5.202.0/23 3215 -194.5.206.0/23 208006 -194.5.208.0/22 34915 -194.5.216.0/23 33353 -194.5.218.0/24 33353 -194.5.220.0/22 60016 -194.5.224.0/24 9009 -194.5.225.0/24 50495 -194.5.226.0/23 50495 -194.5.228.0/22 51778 -194.5.232.0/24 34984 -194.5.235.0/24 207817 -194.5.238.0/23 3215 -194.5.240.0/22 200297 -194.5.244.0/22 197667 -194.5.248.0/24 39622 -194.5.249.0/24 64398 -194.5.250.0/23 64398 -194.5.252.0/24 207817 -194.5.254.0/23 204805 -194.6.0.0/18 1273 -194.6.96.0/19 4589 -194.6.128.0/23 8228 -194.6.160.0/21 3303 -194.6.168.0/23 3303 -194.6.170.0/24 206466 -194.6.171.0/24 3303 -194.6.172.0/24 3303 -194.6.173.0/24 206466 -194.6.174.0/23 3303 -194.6.176.0/23 3303 -194.6.178.0/24 3303 -194.6.179.0/24 35276 -194.6.180.0/22 3303 -194.6.184.0/22 3303 -194.6.188.0/24 31141 -194.6.189.0/24 3303 -194.6.190.0/23 3303 -194.6.192.0/22 39227 -194.6.196.0/22 51199 -194.6.200.0/24 38947 -194.6.201.0/24 58074 -194.6.202.0/23 39877 -194.6.204.0/22 43939 -194.6.208.0/22 47447 -194.6.216.0/22 38978 -194.6.220.0/22 197498 -194.6.225.0/24 15975 -194.6.226.0/24 206293 -194.6.227.0/24 6696 -194.6.228.0/24 29627 -194.6.229.0/24 12353 -194.6.230.0/24 33829 -194.6.231.0/24 33927 -194.6.232.0/23 33927 -194.6.234.0/24 207817 -194.6.235.0/24 20860 -194.6.236.0/24 3301 -194.6.237.0/24 33850 -194.6.238.0/24 49193 -194.6.239.0/24 8881 -194.6.240.0/24 33930 -194.6.241.0/24 33895 -194.6.242.0/24 33918 -194.6.243.0/24 209256 -194.6.246.0/24 33923 -194.6.247.0/24 207817 -194.6.248.0/24 48210 -194.6.249.0/24 31007 -194.6.250.0/24 62156 -194.6.251.0/24 43350 -194.6.252.0/24 43350 -194.6.254.0/24 43260 -194.6.255.0/24 42415 -194.7.0.0/16 702 -194.8.1.0/24 5538 -194.8.2.0/24 5538 -194.8.3.0/24 51955 -194.8.4.0/24 198283 -194.8.5.0/24 8285 -194.8.6.0/23 8285 -194.8.8.0/24 8285 -194.8.10.0/23 9091 -194.8.12.0/23 204805 -194.8.14.0/24 41621 -194.8.15.0/24 41623 -194.8.16.0/22 12578 -194.8.20.0/23 12578 -194.8.22.0/24 24921 -194.8.23.0/24 12578 -194.8.24.0/22 12578 -194.8.29.0/24 29468 -194.8.30.0/24 33876 -194.8.31.0/24 29468 -194.8.32.0/21 35108 -194.8.40.0/22 35108 -194.8.45.0/24 8323 -194.8.46.0/24 8323 -194.8.47.0/24 35723 -194.8.48.0/24 39122 -194.8.51.0/24 29599 -194.8.52.0/24 2611 -194.8.53.0/24 60168 -194.8.55.0/24 29603 -194.8.56.0/24 29597 -194.8.57.0/24 21083 -194.8.59.0/24 39122 -194.8.60.0/24 44872 -194.8.61.0/24 39057 -194.8.62.0/24 29595 -194.8.63.0/24 58131 -194.8.64.0/23 44616 -194.8.66.0/23 44415 -194.8.68.0/23 47329 -194.8.70.0/23 44560 -194.8.72.0/23 43237 -194.8.76.0/23 1680 -194.8.80.0/24 12325 -194.8.81.0/24 208913 -194.8.82.0/23 44580 -194.8.84.0/23 44587 -194.8.88.0/23 44669 -194.8.90.0/23 47309 -194.8.94.0/23 44632 -194.8.96.0/21 47696 -194.8.104.0/23 47696 -194.8.106.0/24 8735 -194.8.107.0/24 47696 -194.8.108.0/22 47696 -194.8.112.0/22 47696 -194.8.116.0/23 47696 -194.8.118.0/24 8735 -194.8.119.0/24 47696 -194.8.120.0/24 8735 -194.8.121.0/24 21026 -194.8.122.0/24 8735 -194.8.123.0/24 47696 -194.8.124.0/24 8735 -194.8.125.0/24 47696 -194.8.126.0/24 47696 -194.8.127.0/24 8735 -194.8.128.0/22 49107 -194.8.132.0/22 35815 -194.8.136.0/22 47117 -194.8.140.0/22 49629 -194.8.144.0/22 59497 -194.8.148.0/22 197485 -194.8.152.0/22 49311 -194.8.156.0/22 39399 -194.8.160.0/19 12714 -194.8.192.0/19 8422 -194.8.224.0/23 12686 -194.8.226.0/23 201172 -194.8.228.0/23 16323 -194.8.230.0/23 50863 -194.8.232.0/23 41774 -194.8.234.0/23 50850 -194.8.236.0/23 197016 -194.8.238.0/24 206683 -194.8.239.0/24 202654 -194.8.240.0/23 50899 -194.8.244.0/23 21060 -194.8.246.0/23 50918 -194.8.248.0/23 9213 -194.8.250.0/23 57348 -194.8.252.0/23 196653 -194.8.254.0/23 25160 -194.9.2.0/23 41337 -194.9.4.0/23 15404 -194.9.6.0/23 28873 -194.9.8.0/23 200497 -194.9.10.0/23 47215 -194.9.14.0/23 41360 -194.9.16.0/23 43939 -194.9.18.0/23 200497 -194.9.22.0/23 57130 -194.9.24.0/23 41406 -194.9.26.0/23 28761 -194.9.29.0/24 205509 -194.9.30.0/23 41413 -194.9.32.0/23 34931 -194.9.36.0/23 41435 -194.9.38.0/23 28965 -194.9.40.0/24 6461 -194.9.42.0/23 56599 -194.9.44.0/23 3303 -194.9.46.0/23 41464 -194.9.48.0/23 1136 -194.9.50.0/23 41724 -194.9.52.0/23 41522 -194.9.54.0/24 31424 -194.9.55.0/24 197352 -194.9.56.0/23 206495 -194.9.58.0/23 197770 -194.9.60.0/23 41486 -194.9.62.0/23 29608 -194.9.64.0/23 37166 -194.9.66.0/23 14037 -194.9.68.0/24 5588 -194.9.69.0/24 49506 -194.9.70.0/23 201094 -194.9.72.0/24 47215 -194.9.73.0/24 48918 -194.9.74.0/23 29468 -194.9.76.0/23 29474 -194.9.80.0/24 206495 -194.9.81.0/24 16235 -194.9.82.0/23 36915 -194.9.84.0/24 12859 -194.9.85.0/24 31424 -194.9.86.0/24 202914 -194.9.87.0/24 28717 -194.9.88.0/23 29494 -194.9.92.0/23 39629 -194.9.94.0/23 39570 -194.9.118.0/23 12312 -194.9.120.0/22 34261 -194.9.124.0/23 41585 -194.9.126.0/24 41585 -194.9.127.0/24 20676 -194.9.141.0/24 51964 -194.9.142.0/24 51964 -194.9.145.0/24 51964 -194.9.149.0/24 51964 -194.9.164.0/24 51964 -194.9.166.0/24 51964 -194.9.167.0/24 12310 -194.9.168.0/23 24632 -194.9.170.0/24 13244 -194.9.171.0/24 198918 -194.9.172.0/23 207992 -194.9.174.0/24 39122 -194.9.175.0/24 12993 -194.9.176.0/22 8100 -194.9.182.0/23 24961 -194.9.184.0/22 48173 -194.9.191.0/24 206119 -194.9.192.0/20 5669 -194.9.208.0/22 9009 -194.9.212.0/22 24589 -194.9.216.0/22 48173 -194.9.220.0/23 16177 -194.9.222.0/24 39122 -194.9.223.0/24 12743 -194.9.224.0/20 48166 -194.9.240.0/24 30437 -194.9.241.0/24 1273 -194.9.242.0/24 30437 -194.9.244.0/23 30437 -194.9.246.0/23 14541 -194.9.248.0/24 30437 -194.9.252.0/24 30437 -194.10.0.0/16 2686 -194.11.17.0/24 47367 -194.11.18.0/24 52215 -194.11.20.0/23 207992 -194.11.23.0/24 15525 -194.11.24.0/24 41966 -194.11.27.0/24 39564 -194.11.28.0/24 47349 -194.11.29.0/24 48914 -194.11.76.0/22 20984 -194.11.84.0/22 202440 -194.11.128.0/22 200776 -194.11.132.0/24 57608 -194.11.136.0/21 28928 -194.11.144.0/21 3303 -194.11.152.0/23 3303 -194.11.154.0/23 35478 -194.11.156.0/22 3303 -194.11.160.0/24 15576 -194.11.164.0/22 48038 -194.11.168.0/23 29430 -194.11.170.0/24 33843 -194.11.171.0/24 199205 -194.11.172.0/22 28928 -194.11.176.0/21 28928 -194.11.184.0/22 28928 -194.11.188.0/22 48173 -194.11.192.0/22 42407 -194.11.196.0/22 52055 -194.11.200.0/24 10991 -194.11.202.0/24 48857 -194.11.203.0/24 3303 -194.11.204.0/23 20700 -194.11.206.0/24 31097 -194.11.207.0/24 6830 -194.11.208.0/23 31097 -194.11.210.0/23 3303 -194.11.212.0/24 6830 -194.11.213.0/24 3303 -194.11.214.0/23 35478 -194.11.216.0/24 57608 -194.11.217.0/24 197352 -194.11.218.0/23 41549 -194.11.220.0/24 57608 -194.11.221.0/24 20932 -194.11.223.0/24 15532 -194.11.224.0/24 57608 -194.11.225.0/24 198647 -194.11.232.0/23 24951 -194.11.238.0/24 33965 -194.11.242.0/24 203080 -194.11.244.0/23 8676 -194.11.247.0/24 44550 -194.11.248.0/22 48173 -194.11.253.0/24 24989 -194.11.254.0/24 10991 -194.12.0.0/20 34555 -194.12.16.0/20 15547 -194.12.32.0/20 49985 -194.12.51.0/24 198028 -194.12.52.0/22 198028 -194.12.56.0/24 198028 -194.12.64.0/19 47283 -194.12.96.0/19 35816 -194.12.128.0/18 513 -194.12.192.0/19 12680 -194.12.224.0/21 8262 -194.12.232.0/24 49849 -194.12.233.0/24 8262 -194.12.234.0/23 8262 -194.12.236.0/24 8262 -194.12.237.0/24 204281 -194.12.238.0/23 8262 -194.12.240.0/23 8262 -194.12.242.0/24 8262 -194.12.243.0/24 197216 -194.12.244.0/23 8262 -194.12.246.0/24 8262 -194.12.247.0/24 41803 -194.12.248.0/21 8262 -194.13.7.0/24 1136 -194.13.8.0/22 31477 -194.13.12.0/23 31477 -194.13.14.0/24 31477 -194.13.16.0/20 1103 -194.13.66.0/24 1136 -194.13.68.0/22 48173 -194.13.72.0/21 1126 -194.13.80.0/22 197540 -194.13.84.0/22 200481 -194.13.104.0/22 24586 -194.13.108.0/23 8676 -194.13.111.0/24 29353 -194.13.116.0/22 1103 -194.13.120.0/22 61329 -194.13.124.0/22 48173 -194.13.133.0/24 1136 -194.13.135.0/24 3320 -194.13.136.0/22 48173 -194.13.144.0/20 48997 -194.13.160.0/20 205915 -194.13.176.0/24 1136 -194.13.224.0/21 205915 -194.13.232.0/22 48173 -194.13.238.0/23 48522 -194.13.240.0/20 15542 -194.14.0.0/24 50066 -194.14.2.0/24 8473 -194.14.3.0/24 12381 -194.14.5.0/24 13237 -194.14.6.0/24 1257 -194.14.9.0/24 29518 -194.14.10.0/24 3246 -194.14.11.0/24 42695 -194.14.14.0/24 204850 -194.14.15.0/24 1257 -194.14.16.0/22 12552 -194.14.20.0/23 12552 -194.14.22.0/23 44581 -194.14.25.0/24 41175 -194.14.27.0/24 199154 -194.14.28.0/23 42708 -194.14.30.0/24 204896 -194.14.32.0/24 1257 -194.14.33.0/24 198463 -194.14.35.0/24 12552 -194.14.36.0/23 8473 -194.14.38.0/23 12552 -194.14.42.0/24 1257 -194.14.44.0/24 1257 -194.14.45.0/24 42708 -194.14.46.0/24 201428 -194.14.47.0/24 13189 -194.14.48.0/24 12552 -194.14.49.0/24 2119 -194.14.50.0/24 12552 -194.14.51.0/24 3246 -194.14.52.0/24 35041 -194.14.56.0/24 51040 -194.14.57.0/24 49770 -194.14.58.0/23 3301 -194.14.60.0/24 3301 -194.14.63.0/24 28726 -194.14.66.0/23 5411 -194.14.70.0/23 5411 -194.14.74.0/23 51747 -194.14.76.0/24 1257 -194.14.77.0/24 16074 -194.14.78.0/24 3246 -194.14.79.0/24 20626 -194.14.80.0/23 12552 -194.14.83.0/24 2119 -194.14.84.0/24 8473 -194.14.85.0/24 42708 -194.14.86.0/24 3246 -194.14.87.0/24 42708 -194.14.88.0/21 206387 -194.14.96.0/24 2837 -194.14.97.0/24 48540 -194.14.98.0/24 3246 -194.14.99.0/24 3301 -194.14.104.0/24 50572 -194.14.106.0/23 35041 -194.14.108.0/24 35041 -194.14.111.0/24 33885 -194.14.121.0/24 12552 -194.14.122.0/24 12552 -194.14.126.0/23 12552 -194.14.129.0/24 2119 -194.14.130.0/24 197194 -194.14.131.0/24 35041 -194.14.132.0/24 43065 -194.14.133.0/24 60213 -194.14.134.0/24 3246 -194.14.160.0/24 1257 -194.14.165.0/24 50066 -194.14.166.0/24 1257 -194.14.168.0/24 60586 -194.14.169.0/24 30880 -194.14.170.0/23 1257 -194.14.172.0/23 29518 -194.14.176.0/24 20888 -194.14.178.0/24 3246 -194.14.179.0/24 34971 -194.14.180.0/24 35041 -194.14.181.0/24 39268 -194.14.182.0/23 19399 -194.14.184.0/23 3301 -194.14.186.0/24 3301 -194.14.187.0/24 12552 -194.14.188.0/23 3292 -194.14.191.0/24 12552 -194.14.196.0/23 8473 -194.14.200.0/23 29518 -194.14.203.0/24 3301 -194.14.205.0/24 1257 -194.14.206.0/24 42708 -194.14.207.0/24 206170 -194.14.208.0/24 9009 -194.14.210.0/24 206941 -194.14.211.0/24 3257 -194.14.212.0/24 2119 -194.14.213.0/24 29518 -194.14.216.0/24 1257 -194.14.217.0/24 9009 -194.14.218.0/24 197942 -194.14.219.0/24 199438 -194.14.222.0/23 42708 -194.14.224.0/21 3301 -194.14.232.0/23 3301 -194.14.234.0/23 56736 -194.14.236.0/24 31800 -194.14.237.0/24 50989 -194.14.238.0/24 3301 -194.14.239.0/24 51747 -194.14.240.0/24 35742 -194.14.241.0/24 12552 -194.14.242.0/24 35742 -194.14.243.0/24 12552 -194.14.244.0/24 12552 -194.14.246.0/23 50066 -194.14.248.0/24 46844 -194.14.251.0/24 12552 -194.14.252.0/24 57083 -194.14.254.0/23 51747 -194.15.16.0/24 15404 -194.15.18.0/24 15404 -194.15.32.0/22 40676 -194.15.36.0/24 24961 -194.15.37.0/24 35575 -194.15.38.0/24 60558 -194.15.39.0/24 133219 -194.15.40.0/22 20952 -194.15.48.0/22 25590 -194.15.52.0/23 9009 -194.15.55.0/24 210068 -194.15.56.0/24 43917 -194.15.57.0/24 39284 -194.15.58.0/24 60434 -194.15.59.0/24 57411 -194.15.60.0/23 3320 -194.15.64.0/21 3320 -194.15.72.0/22 3320 -194.15.76.0/22 48173 -194.15.80.0/20 60774 -194.15.96.0/22 201150 -194.15.100.0/22 209799 -194.15.104.0/22 48095 -194.15.108.0/22 35913 -194.15.112.0/24 50935 -194.15.113.0/24 48031 -194.15.114.0/24 48031 -194.15.115.0/24 50935 -194.15.116.0/22 49261 -194.15.120.0/22 197800 -194.15.124.0/24 197800 -194.15.126.0/23 28917 -194.15.128.0/21 8767 -194.15.137.0/24 15404 -194.15.138.0/23 680 -194.15.140.0/24 206930 -194.15.145.0/24 12664 -194.15.146.0/24 210097 -194.15.147.0/24 12408 -194.15.148.0/23 15372 -194.15.152.0/22 31130 -194.15.156.0/23 8422 -194.15.158.0/23 702 -194.15.160.0/20 8767 -194.15.176.0/23 25115 -194.15.178.0/23 208517 -194.15.180.0/24 8881 -194.15.181.0/24 208517 -194.15.182.0/24 206602 -194.15.183.0/24 12337 -194.15.185.0/24 9145 -194.15.187.0/24 205764 -194.15.190.0/24 16188 -194.15.191.0/24 39538 -194.15.194.0/24 3209 -194.15.196.0/23 197155 -194.15.208.0/22 15779 -194.15.212.0/24 201641 -194.15.213.0/24 30939 -194.15.214.0/24 34788 -194.15.215.0/24 30742 -194.15.216.0/23 197155 -194.15.218.0/24 8426 -194.15.219.0/24 209984 -194.15.220.0/22 29037 -194.15.224.0/22 202441 -194.15.228.0/22 51395 -194.15.232.0/24 209984 -194.15.233.0/24 8426 -194.15.236.0/24 209984 -194.15.237.0/24 6805 -194.15.241.0/24 11269 -194.15.242.0/23 15404 -194.15.244.0/22 15404 -194.15.248.0/24 42300 -194.16.0.0/15 3301 -194.18.0.0/16 3301 -194.19.0.0/17 2116 -194.19.128.0/18 3308 -194.19.192.0/19 3308 -194.19.224.0/19 5518 -194.20.0.0/21 3302 -194.20.8.0/21 3313 -194.20.16.0/21 3302 -194.20.24.0/24 1267 -194.20.25.0/24 3302 -194.20.26.0/23 3302 -194.20.28.0/22 3302 -194.20.32.0/21 3302 -194.20.40.0/23 3313 -194.20.42.0/24 3313 -194.20.43.0/24 3302 -194.20.44.0/22 3313 -194.20.48.0/24 3302 -194.20.49.0/24 3313 -194.20.50.0/24 3313 -194.20.51.0/24 3302 -194.20.52.0/22 3313 -194.20.56.0/23 3313 -194.20.58.0/24 3302 -194.20.59.0/24 201944 -194.20.60.0/22 3313 -194.20.64.0/20 201917 -194.20.80.0/20 3302 -194.20.96.0/21 5394 -194.20.104.0/22 3302 -194.20.108.0/22 3313 -194.20.112.0/21 3302 -194.20.120.0/21 3313 -194.20.128.0/21 3302 -194.20.136.0/22 3302 -194.20.140.0/23 3302 -194.20.142.0/23 29177 -194.20.144.0/23 29177 -194.20.146.0/23 3302 -194.20.148.0/22 3302 -194.20.152.0/23 3302 -194.20.154.0/24 3302 -194.20.155.0/24 3313 -194.20.156.0/22 3302 -194.20.160.0/19 3302 -194.20.192.0/22 3302 -194.20.196.0/23 3302 -194.20.198.0/24 3302 -194.20.199.0/24 3313 -194.20.200.0/21 3313 -194.20.208.0/21 3313 -194.20.216.0/22 3313 -194.20.220.0/23 3302 -194.20.222.0/24 3313 -194.20.223.0/24 3302 -194.20.224.0/23 3302 -194.20.226.0/24 3313 -194.20.227.0/24 3302 -194.20.228.0/24 3302 -194.20.229.0/24 3313 -194.20.230.0/23 3302 -194.20.232.0/21 6665 -194.20.240.0/21 6665 -194.20.248.0/24 3313 -194.20.249.0/24 3302 -194.20.250.0/23 3302 -194.20.252.0/22 3302 -194.21.0.0/22 3302 -194.21.4.0/22 3313 -194.21.8.0/22 3313 -194.21.12.0/22 3302 -194.21.16.0/23 3302 -194.21.18.0/24 3302 -194.21.19.0/24 3313 -194.21.20.0/22 3313 -194.21.24.0/24 3302 -194.21.25.0/24 3313 -194.21.26.0/23 3302 -194.21.28.0/22 3313 -194.21.32.0/20 3302 -194.21.48.0/21 3302 -194.21.56.0/23 28742 -194.21.58.0/23 3302 -194.21.60.0/22 3302 -194.21.64.0/18 3302 -194.21.128.0/17 3302 -194.22.0.0/15 3301 -194.24.0.0/21 49865 -194.24.8.0/24 51964 -194.24.9.0/24 2854 -194.24.10.0/24 51964 -194.24.128.0/19 25255 -194.24.160.0/23 12586 -194.24.164.0/23 13110 -194.24.166.0/23 41614 -194.24.168.0/23 41296 -194.24.170.0/23 3329 -194.24.174.0/23 35585 -194.24.178.0/23 41295 -194.24.180.0/23 35491 -194.24.182.0/23 41316 -194.24.184.0/23 41328 -194.24.186.0/23 41317 -194.24.188.0/24 199907 -194.24.190.0/23 41308 -194.24.192.0/19 4589 -194.24.224.0/23 31471 -194.24.226.0/23 20813 -194.24.228.0/23 41044 -194.24.230.0/24 12329 -194.24.231.0/24 209434 -194.24.234.0/23 208913 -194.24.236.0/23 47898 -194.24.238.0/23 31540 -194.24.240.0/23 25408 -194.24.242.0/23 12843 -194.24.244.0/23 201328 -194.24.246.0/23 31542 -194.24.248.0/23 51602 -194.24.250.0/23 9558 -194.24.252.0/23 25148 -194.24.254.0/23 30756 -194.25.0.0/16 3320 -194.26.0.0/24 1213 -194.26.1.0/24 209984 -194.26.4.0/22 9051 -194.26.8.0/21 1103 -194.26.22.0/23 15536 -194.26.24.0/24 34762 -194.26.26.0/24 2047 -194.26.28.0/24 3209 -194.26.29.0/24 23470 -194.26.32.0/19 31477 -194.26.68.0/24 13205 -194.26.69.0/24 174 -194.26.72.0/22 51488 -194.26.76.0/23 39146 -194.26.78.0/24 39146 -194.26.80.0/24 1136 -194.26.81.0/24 39647 -194.26.104.0/22 4589 -194.26.108.0/23 205399 -194.26.110.0/23 4589 -194.26.112.0/23 4589 -194.26.114.0/23 205399 -194.26.120.0/21 209721 -194.26.144.0/22 1136 -194.26.148.0/24 47543 -194.26.149.0/24 60721 -194.26.152.0/23 1136 -194.26.158.0/23 44819 -194.26.172.0/22 60609 -194.26.176.0/22 48095 -194.26.180.0/23 31400 -194.26.182.0/24 31400 -194.26.183.0/24 44066 -194.26.184.0/22 16266 -194.26.188.0/23 41955 -194.26.190.0/24 41955 -194.26.191.0/24 3320 -194.26.240.0/24 1136 -194.27.0.0/20 8517 -194.27.16.0/21 8517 -194.27.24.0/22 8678 -194.27.28.0/23 8678 -194.27.30.0/23 8517 -194.27.32.0/19 8517 -194.27.64.0/21 8517 -194.27.72.0/24 8517 -194.27.73.0/24 31689 -194.27.74.0/23 8517 -194.27.76.0/22 31689 -194.27.80.0/20 8517 -194.27.96.0/19 8517 -194.27.128.0/20 8517 -194.27.144.0/22 8517 -194.27.148.0/24 34478 -194.27.149.0/24 13102 -194.27.150.0/24 13102 -194.27.151.0/24 8517 -194.27.152.0/21 8517 -194.27.160.0/21 24922 -194.27.168.0/21 8517 -194.27.176.0/20 8517 -194.27.192.0/22 15843 -194.27.196.0/22 8517 -194.27.200.0/21 8517 -194.27.208.0/21 8517 -194.27.216.0/22 8517 -194.27.220.0/23 8517 -194.27.222.0/24 205782 -194.27.223.0/24 8517 -194.27.224.0/19 8517 -194.28.0.0/22 51188 -194.28.4.0/22 43656 -194.28.8.0/22 50882 -194.28.12.0/22 60399 -194.28.16.0/22 13107 -194.28.20.0/22 50917 -194.28.24.0/24 33796 -194.28.28.0/22 50911 -194.28.32.0/22 48712 -194.28.36.0/22 51522 -194.28.40.0/22 57643 -194.28.48.0/22 41508 -194.28.52.0/22 44482 -194.28.56.0/22 57803 -194.28.60.0/22 196638 -194.28.64.0/22 42723 -194.28.68.0/22 34065 -194.28.72.0/22 15868 -194.28.76.0/22 31252 -194.28.80.0/22 20960 -194.28.84.0/22 196645 -194.28.88.0/22 50949 -194.28.92.0/22 34241 -194.28.96.0/24 51699 -194.28.97.0/24 34872 -194.28.98.0/23 34872 -194.28.100.0/23 56716 -194.28.102.0/24 205957 -194.28.103.0/24 50956 -194.28.104.0/22 196890 -194.28.108.0/22 197045 -194.28.112.0/22 50968 -194.28.116.0/22 5602 -194.28.120.0/22 49770 -194.28.124.0/22 197409 -194.28.128.0/23 9125 -194.28.130.0/24 205201 -194.28.131.0/24 9125 -194.28.132.0/22 47434 -194.28.136.0/22 21448 -194.28.140.0/23 49444 -194.28.144.0/22 197058 -194.28.148.0/22 21413 -194.28.152.0/22 47397 -194.28.156.0/22 9009 -194.28.160.0/22 51015 -194.28.165.0/24 196674 -194.28.167.0/24 196674 -194.28.168.0/22 29245 -194.28.172.0/22 42655 -194.28.176.0/22 197073 -194.28.180.0/22 44695 -194.28.184.0/22 49568 -194.28.188.0/22 51068 -194.28.192.0/24 34665 -194.28.196.0/23 51016 -194.28.198.0/24 1820 -194.28.199.0/24 51016 -194.28.200.0/22 51068 -194.28.204.0/23 23528 -194.28.206.0/24 44661 -194.28.208.0/22 34665 -194.28.212.0/22 51158 -194.28.216.0/22 12714 -194.28.220.0/22 51068 -194.28.224.0/22 34995 -194.28.228.0/22 198430 -194.28.232.0/22 198345 -194.28.236.0/22 51186 -194.28.240.0/22 51086 -194.28.248.0/22 41795 -194.29.0.0/19 6830 -194.29.32.0/20 25046 -194.29.56.0/22 49871 -194.29.60.0/22 3326 -194.29.64.0/23 12763 -194.29.67.0/24 208485 -194.29.68.0/23 20958 -194.29.70.0/24 208485 -194.29.71.0/24 13037 -194.29.73.0/24 50862 -194.29.78.0/24 50862 -194.29.79.0/24 61114 -194.29.80.0/24 208485 -194.29.83.0/24 57515 -194.29.97.0/24 15681 -194.29.98.0/24 15681 -194.29.99.0/24 20537 -194.29.100.0/24 63473 -194.29.114.0/24 16081 -194.29.118.0/23 3301 -194.29.120.0/24 29224 -194.29.128.0/19 12464 -194.29.160.0/20 12464 -194.29.176.0/22 12464 -194.29.180.0/22 199551 -194.29.184.0/24 34788 -194.29.188.0/22 20740 -194.29.192.0/21 29422 -194.29.200.0/22 2116 -194.29.204.0/24 13253 -194.29.205.0/24 21029 -194.29.206.0/24 24776 -194.29.207.0/24 25384 -194.29.208.0/21 12903 -194.29.216.0/21 5089 -194.29.224.0/19 20647 -194.30.0.0/17 3262 -194.30.128.0/21 5504 -194.30.136.0/22 5504 -194.30.140.0/23 5504 -194.30.142.0/24 24655 -194.30.143.0/24 5504 -194.30.144.0/21 5504 -194.30.152.0/22 5504 -194.30.156.0/23 5504 -194.30.158.0/24 196984 -194.30.160.0/24 30870 -194.30.161.0/24 203704 -194.30.162.0/24 34722 -194.30.163.0/24 34792 -194.30.165.0/24 203704 -194.30.167.0/24 50978 -194.30.168.0/24 8708 -194.30.169.0/24 35041 -194.30.170.0/24 34870 -194.30.172.0/24 34877 -194.30.174.0/24 34966 -194.30.175.0/24 39647 -194.30.176.0/23 207991 -194.30.178.0/24 56910 -194.30.179.0/24 34891 -194.30.180.0/24 6830 -194.30.181.0/24 34893 -194.30.182.0/24 41038 -194.30.183.0/24 203704 -194.30.184.0/24 31727 -194.30.185.0/24 47815 -194.30.189.0/24 34922 -194.30.190.0/24 42069 -194.30.191.0/24 12793 -194.30.192.0/19 3329 -194.30.224.0/24 29241 -194.30.225.0/24 3329 -194.30.226.0/23 3329 -194.30.228.0/22 3329 -194.30.232.0/21 3329 -194.30.240.0/20 3329 -194.31.0.0/24 30311 -194.31.1.0/24 203704 -194.31.2.0/24 12337 -194.31.3.0/24 197208 -194.31.4.0/23 207991 -194.31.6.0/23 33873 -194.31.12.0/23 207874 -194.31.14.0/23 21355 -194.31.16.0/20 8881 -194.31.32.0/22 12741 -194.31.36.0/23 198431 -194.31.38.0/24 198431 -194.31.39.0/24 39029 -194.31.40.0/23 57723 -194.31.42.0/24 57713 -194.31.43.0/24 198164 -194.31.44.0/22 43967 -194.31.48.0/23 57715 -194.31.50.0/24 197107 -194.31.52.0/23 47583 -194.31.54.0/24 9009 -194.31.55.0/24 47583 -194.31.56.0/24 61328 -194.31.57.0/24 57719 -194.31.58.0/24 198425 -194.31.59.0/24 60721 -194.31.60.0/24 198424 -194.31.61.0/24 57729 -194.31.62.0/24 6908 -194.31.63.0/24 12741 -194.31.64.0/24 60721 -194.31.65.0/24 3320 -194.31.68.0/23 58055 -194.31.70.0/23 9145 -194.31.72.0/22 29256 -194.31.76.0/23 8469 -194.31.78.0/24 8469 -194.31.79.0/24 60721 -194.31.84.0/23 58055 -194.31.86.0/24 20676 -194.31.87.0/24 60721 -194.31.88.0/22 2830 -194.31.92.0/24 20676 -194.31.93.0/24 201749 -194.31.94.0/23 9145 -194.31.100.0/22 18530 -194.31.104.0/22 50129 -194.31.108.0/22 3269 -194.31.112.0/21 204146 -194.31.120.0/21 204155 -194.31.132.0/22 58024 -194.31.136.0/22 209815 -194.31.140.0/24 3280 -194.31.141.0/24 46664 -194.31.142.0/24 23470 -194.31.143.0/24 36352 -194.31.144.0/22 14701 -194.31.151.0/24 18530 -194.31.152.0/22 39728 -194.31.156.0/22 209652 -194.31.160.0/22 209811 -194.31.164.0/22 62113 -194.31.168.0/22 31531 -194.31.172.0/24 205220 -194.31.174.0/23 205220 -194.31.176.0/22 197328 -194.31.180.0/22 35415 -194.31.184.0/22 58273 -194.31.188.0/22 209810 -194.31.192.0/24 20676 -194.31.193.0/24 201749 -194.31.194.0/23 26636 -194.31.196.0/23 26636 -194.31.198.0/24 12748 -194.31.206.0/24 21272 -194.31.207.0/24 9100 -194.31.210.0/23 3320 -194.31.212.0/22 209548 -194.31.216.0/22 49767 -194.31.221.0/24 39538 -194.31.225.0/24 3320 -194.31.227.0/24 49609 -194.31.228.0/22 203329 -194.31.232.0/24 49352 -194.31.233.0/24 31550 -194.31.234.0/23 24926 -194.31.236.0/23 48693 -194.31.240.0/23 25481 -194.31.242.0/24 13132 -194.31.243.0/24 56942 -194.31.246.0/24 21413 -194.31.248.0/23 12639 -194.31.250.0/23 44331 -194.31.252.0/24 51310 -194.31.253.0/24 198902 -194.31.254.0/24 12649 -194.31.255.0/24 60193 -194.32.20.0/22 1273 -194.32.27.0/24 1273 -194.32.28.0/22 1273 -194.32.32.0/20 786 -194.32.48.0/22 56595 -194.32.68.0/24 60193 -194.32.69.0/24 7 -194.32.70.0/24 60193 -194.32.71.0/24 15562 -194.32.72.0/23 29400 -194.32.74.0/24 29400 -194.32.75.0/24 38862 -194.32.76.0/22 202448 -194.32.83.0/24 60193 -194.32.84.0/24 31645 -194.32.86.0/23 58036 -194.32.92.0/22 200439 -194.32.96.0/22 58330 -194.32.112.0/22 200845 -194.32.117.0/24 34962 -194.32.119.0/24 207083 -194.32.120.0/22 202511 -194.32.124.0/24 50340 -194.32.126.0/24 12722 -194.32.127.0/24 49392 -194.32.128.0/23 31525 -194.32.130.0/24 31525 -194.32.132.0/22 210048 -194.32.136.0/22 49223 -194.32.140.0/22 209612 -194.32.144.0/22 197595 -194.32.150.0/24 59609 -194.32.151.0/24 39806 -194.32.152.0/22 59943 -194.32.156.0/22 38917 -194.32.161.0/24 207661 -194.32.162.0/24 2856 -194.32.164.0/24 42831 -194.32.168.0/22 197036 -194.32.172.0/22 200409 -194.32.176.0/21 35707 -194.32.188.0/22 35707 -194.32.192.0/24 35707 -194.32.194.0/24 35707 -194.32.207.0/24 51551 -194.32.209.0/24 24232 -194.32.216.0/23 8220 -194.32.218.0/23 7 -194.32.222.0/23 49392 -194.32.224.0/22 9009 -194.32.229.0/24 35048 -194.32.230.0/24 208421 -194.32.231.0/24 43297 -194.32.232.0/22 35913 -194.32.236.0/23 12722 -194.32.238.0/23 34665 -194.32.240.0/24 12722 -194.32.241.0/24 62300 -194.32.242.0/24 50340 -194.32.243.0/24 49505 -194.32.244.0/23 54103 -194.32.246.0/24 54103 -194.32.247.0/24 39855 -194.32.248.0/23 49392 -194.32.250.0/24 12722 -194.32.251.0/24 206766 -194.32.252.0/23 209930 -194.33.0.0/24 51072 -194.33.8.0/23 49392 -194.33.11.0/24 8943 -194.33.12.0/24 198298 -194.33.13.0/24 51055 -194.33.14.0/24 41859 -194.33.15.0/24 41873 -194.33.17.0/24 201730 -194.33.18.0/23 201730 -194.33.20.0/22 202446 -194.33.28.0/24 24867 -194.33.29.0/24 60781 -194.33.32.0/24 64249 -194.33.33.0/24 15404 -194.33.36.0/22 35913 -194.33.40.0/22 206698 -194.33.44.0/22 62240 -194.33.52.0/22 22108 -194.33.56.0/23 22108 -194.33.61.0/24 60781 -194.33.62.0/24 64249 -194.33.63.0/24 31493 -194.33.64.0/22 203785 -194.33.68.0/24 62452 -194.33.69.0/24 59448 -194.33.70.0/23 62452 -194.33.72.0/22 58237 -194.33.76.0/23 203778 -194.33.78.0/24 199117 -194.33.79.0/24 57930 -194.33.80.0/24 57773 -194.33.81.0/24 198844 -194.33.82.0/24 207911 -194.33.83.0/24 198854 -194.33.84.0/22 58230 -194.33.88.0/22 9009 -194.33.92.0/22 58231 -194.33.96.0/24 62260 -194.33.97.0/24 58257 -194.33.98.0/23 41872 -194.33.100.0/22 203785 -194.33.104.0/23 58251 -194.33.106.0/24 34078 -194.33.107.0/24 47843 -194.33.108.0/24 48943 -194.33.110.0/24 198856 -194.33.111.0/24 204278 -194.33.112.0/23 12859 -194.33.114.0/24 34111 -194.33.115.0/24 3320 -194.33.116.0/22 50481 -194.33.120.0/23 3320 -194.33.122.0/23 49100 -194.33.124.0/23 58249 -194.33.126.0/24 43395 -194.33.127.0/24 58249 -194.33.128.0/20 5413 -194.33.149.0/24 61317 -194.33.152.0/22 49642 -194.33.156.0/22 24768 -194.33.163.0/24 5089 -194.33.164.0/22 5089 -194.33.168.0/23 5089 -194.33.170.0/24 5089 -194.33.172.0/23 5089 -194.33.180.0/24 12722 -194.33.181.0/24 41871 -194.33.182.0/24 61317 -194.33.183.0/24 2830 -194.33.185.0/24 43939 -194.33.186.0/24 6830 -194.33.187.0/24 57367 -194.33.188.0/24 41910 -194.33.189.0/24 39608 -194.33.190.0/24 12552 -194.33.192.0/18 206629 -194.34.0.0/21 204260 -194.34.8.0/23 32787 -194.34.10.0/24 32787 -194.34.11.0/24 24867 -194.34.12.0/24 41901 -194.34.56.0/24 2856 -194.34.67.0/24 10021 -194.34.69.0/24 4637 -194.34.76.0/22 10753 -194.34.80.0/21 10753 -194.34.88.0/22 10753 -194.34.96.0/22 210201 -194.34.100.0/23 210124 -194.34.106.0/24 136557 -194.34.107.0/24 13830 -194.34.128.0/22 24768 -194.34.132.0/22 51765 -194.34.138.0/24 7 -194.34.139.0/24 61317 -194.34.150.0/24 5089 -194.34.160.0/23 202368 -194.34.162.0/24 202368 -194.34.168.0/24 202443 -194.34.174.0/24 15580 -194.34.175.0/24 61317 -194.34.176.0/22 41570 -194.34.189.0/24 41570 -194.34.191.0/24 34243 -194.34.192.0/22 46261 -194.34.200.0/24 203836 -194.34.204.0/24 39326 -194.34.205.0/24 2856 -194.34.206.0/23 39326 -194.34.209.0/24 2856 -194.34.210.0/23 2856 -194.34.223.0/24 2856 -194.34.225.0/24 34432 -194.34.226.0/24 39912 -194.34.227.0/24 24953 -194.34.229.0/24 395800 -194.34.230.0/23 50841 -194.34.232.0/22 35913 -194.34.236.0/22 49335 -194.34.240.0/22 39647 -194.34.244.0/24 62300 -194.34.245.0/24 50673 -194.34.246.0/24 197071 -194.34.247.0/24 50673 -194.34.248.0/24 35048 -194.34.249.0/24 51724 -194.34.250.0/23 12722 -194.35.1.0/24 59836 -194.35.8.0/23 59836 -194.35.12.0/23 24940 -194.35.14.0/23 35913 -194.35.32.0/22 14630 -194.35.40.0/24 207046 -194.35.43.0/24 203178 -194.35.44.0/22 197826 -194.35.48.0/24 47481 -194.35.56.0/23 209981 -194.35.58.0/24 209981 -194.35.72.0/24 5089 -194.35.74.0/24 41978 -194.35.78.0/24 205199 -194.35.80.0/23 52200 -194.35.84.0/22 202442 -194.35.88.0/22 39281 -194.35.92.0/24 205199 -194.35.93.0/24 786 -194.35.95.0/24 205199 -194.35.96.0/22 41354 -194.35.100.0/22 209979 -194.35.104.0/22 209122 -194.35.108.0/22 47610 -194.35.112.0/24 62300 -194.35.113.0/24 35048 -194.35.114.0/23 9009 -194.35.116.0/22 60257 -194.35.120.0/24 204644 -194.35.121.0/24 35913 -194.35.122.0/23 35913 -194.35.161.0/24 2830 -194.35.162.0/24 2830 -194.35.176.0/22 45015 -194.35.180.0/23 52200 -194.35.182.0/24 205199 -194.35.183.0/24 12576 -194.35.184.0/23 9063 -194.35.186.0/24 786 -194.35.188.0/23 9063 -194.35.190.0/24 206166 -194.35.191.0/24 395854 -194.35.192.0/19 786 -194.35.224.0/22 43260 -194.35.228.0/22 50304 -194.35.232.0/22 62240 -194.35.236.0/23 49007 -194.35.238.0/23 197844 -194.35.241.0/24 786 -194.35.248.0/23 202433 -194.35.252.0/22 8758 -194.36.1.0/24 786 -194.36.2.0/23 786 -194.36.8.0/22 198864 -194.36.16.0/24 52163 -194.36.17.0/24 44479 -194.36.18.0/24 34788 -194.36.20.0/24 198656 -194.36.22.0/24 174 -194.36.23.0/24 2856 -194.36.24.0/24 4785 -194.36.25.0/24 54600 -194.36.26.0/23 54600 -194.36.28.0/22 210121 -194.36.32.0/22 207046 -194.36.36.0/22 18978 -194.36.42.0/23 42312 -194.36.44.0/24 210190 -194.36.45.0/24 61211 -194.36.46.0/23 61211 -194.36.50.0/23 15830 -194.36.52.0/24 19271 -194.36.54.0/24 15830 -194.36.56.0/24 15830 -194.36.57.0/24 2830 -194.36.58.0/23 39122 -194.36.60.0/22 197540 -194.36.64.0/23 39122 -194.36.66.0/23 28846 -194.36.68.0/24 2856 -194.36.70.0/23 28846 -194.36.72.0/22 201950 -194.36.82.0/24 34270 -194.36.84.0/24 42724 -194.36.85.0/24 43260 -194.36.86.0/23 42724 -194.36.88.0/23 41436 -194.36.90.0/23 12400 -194.36.92.0/24 196670 -194.36.93.0/24 47611 -194.36.96.0/22 204287 -194.36.100.0/23 35913 -194.36.102.0/23 40676 -194.36.104.0/22 48146 -194.36.108.0/22 9009 -194.36.112.0/23 19305 -194.36.114.0/24 49657 -194.36.115.0/24 19305 -194.36.121.0/24 786 -194.36.124.0/22 61998 -194.36.128.0/24 25180 -194.36.134.0/24 15533 -194.36.136.0/24 41367 -194.36.140.0/23 50939 -194.36.142.0/24 39383 -194.36.143.0/24 8708 -194.36.148.0/22 39238 -194.36.152.0/21 786 -194.36.160.0/24 41902 -194.36.161.0/24 41928 -194.36.162.0/24 42012 -194.36.163.0/24 31659 -194.36.164.0/24 41176 -194.36.165.0/24 41930 -194.36.166.0/24 198375 -194.36.168.0/24 42039 -194.36.172.0/23 44685 -194.36.174.0/24 43754 -194.36.175.0/24 49004 -194.36.176.0/24 209962 -194.36.177.0/24 210071 -194.36.178.0/23 198338 -194.36.180.0/22 209486 -194.36.184.0/23 196954 -194.36.188.0/22 60117 -194.36.192.0/22 44407 -194.36.196.0/22 56893 -194.36.200.0/22 42947 -194.36.204.0/22 56575 -194.36.212.0/23 12576 -194.36.214.0/24 12576 -194.36.216.0/22 2856 -194.36.220.0/24 48463 -194.36.222.0/23 3214 -194.36.224.0/20 15814 -194.36.240.0/23 197039 -194.36.242.0/24 55158 -194.36.243.0/24 9312 -194.36.244.0/22 15704 -194.37.0.0/24 8445 -194.37.2.0/23 204852 -194.37.4.0/22 1853 -194.37.8.0/21 1853 -194.37.56.0/21 43913 -194.37.64.0/22 43913 -194.37.72.0/21 41915 -194.37.80.0/24 47447 -194.37.85.0/24 15404 -194.37.86.0/23 15404 -194.37.88.0/22 8462 -194.37.92.0/22 34984 -194.37.100.0/22 49223 -194.37.104.0/21 8692 -194.37.112.0/20 8387 -194.37.128.0/18 8387 -194.37.224.0/21 8387 -194.37.240.0/21 24708 -194.37.248.0/24 43485 -194.37.249.0/24 3246 -194.37.250.0/23 41728 -194.37.252.0/24 43756 -194.37.253.0/24 9023 -194.37.255.0/24 12878 -194.38.0.0/22 209789 -194.38.4.0/22 12125 -194.38.8.0/23 199669 -194.38.12.0/22 61145 -194.38.16.0/22 262287 -194.38.20.0/22 209941 -194.38.24.0/22 262287 -194.38.28.0/22 48095 -194.38.32.0/22 24904 -194.38.36.0/22 60349 -194.38.44.0/22 200773 -194.38.48.0/21 197328 -194.38.56.0/22 201942 -194.38.64.0/21 12350 -194.38.72.0/23 12350 -194.38.91.0/24 12350 -194.38.92.0/22 12350 -194.38.96.0/19 5483 -194.38.128.0/23 5626 -194.38.130.0/24 210221 -194.38.131.0/24 5626 -194.38.132.0/22 5626 -194.38.136.0/21 5626 -194.38.144.0/20 5626 -194.38.160.0/19 12350 -194.38.192.0/19 3303 -194.38.224.0/19 4657 -194.39.0.0/20 15404 -194.39.16.0/21 15404 -194.39.28.0/22 205483 -194.39.32.0/22 50495 -194.39.36.0/22 35615 -194.39.40.0/22 201290 -194.39.44.0/22 206892 -194.39.62.0/23 5400 -194.39.64.0/22 50113 -194.39.68.0/22 204860 -194.39.72.0/22 30941 -194.39.76.0/24 20676 -194.39.78.0/23 41728 -194.39.80.0/23 6830 -194.39.82.0/23 207980 -194.39.84.0/24 15525 -194.39.85.0/24 9119 -194.39.87.0/24 8881 -194.39.88.0/21 3320 -194.39.97.0/24 3320 -194.39.102.0/23 207980 -194.39.104.0/22 9136 -194.39.121.0/24 5539 -194.39.124.0/22 9186 -194.39.128.0/24 60181 -194.39.129.0/24 12510 -194.39.130.0/24 3271 -194.39.131.0/24 12510 -194.39.132.0/24 6830 -194.39.133.0/24 12510 -194.39.135.0/24 12510 -194.39.140.0/24 31098 -194.39.141.0/24 51466 -194.39.143.0/24 3213 -194.39.144.0/22 44219 -194.39.150.0/24 58106 -194.39.160.0/22 209986 -194.39.164.0/22 61323 -194.39.175.0/24 3209 -194.39.177.0/24 199574 -194.39.180.0/22 680 -194.39.184.0/24 44716 -194.39.185.0/24 8881 -194.39.186.0/24 29339 -194.39.187.0/24 199938 -194.39.189.0/24 3320 -194.39.190.0/24 8881 -194.39.192.0/22 8422 -194.39.196.0/22 202434 -194.39.200.0/23 200342 -194.39.204.0/22 202401 -194.39.208.0/23 202381 -194.39.210.0/24 202381 -194.39.214.0/24 3257 -194.39.215.0/24 199938 -194.39.218.0/23 9183 -194.39.220.0/24 15404 -194.39.224.0/22 41820 -194.39.228.0/22 210194 -194.39.236.0/22 210098 -194.40.0.0/17 24949 -194.40.144.0/23 206891 -194.40.192.0/21 6830 -194.40.200.0/23 57987 -194.40.204.0/22 56887 -194.40.208.0/23 198772 -194.40.210.0/24 57815 -194.40.211.0/24 196846 -194.40.212.0/22 29166 -194.40.216.0/21 29166 -194.40.224.0/21 29166 -194.40.232.0/24 29166 -194.40.233.0/24 3303 -194.40.234.0/23 29166 -194.40.236.0/22 202419 -194.40.240.0/23 200313 -194.40.242.0/24 200313 -194.40.243.0/24 48693 -194.40.244.0/24 199938 -194.40.245.0/24 199567 -194.41.0.0/24 15894 -194.41.1.0/24 199938 -194.41.2.0/23 57195 -194.41.4.0/22 8528 -194.41.8.0/24 64249 -194.41.9.0/24 30311 -194.41.12.0/22 25495 -194.41.36.0/23 133199 -194.41.38.0/24 64249 -194.41.39.0/24 20570 -194.41.40.0/22 198252 -194.41.44.0/23 12301 -194.41.46.0/24 29657 -194.41.47.0/24 42864 -194.41.52.0/22 200389 -194.41.56.0/24 64249 -194.41.58.0/24 133199 -194.41.60.0/23 201117 -194.41.96.0/20 5488 -194.41.112.0/23 209854 -194.41.114.0/24 209854 -194.41.116.0/22 202636 -194.41.120.0/22 59447 -194.41.124.0/22 42947 -194.41.128.0/17 12511 -194.42.0.0/19 3268 -194.42.32.0/21 3268 -194.42.40.0/24 15902 -194.42.41.0/24 20487 -194.42.42.0/24 20487 -194.42.44.0/23 44906 -194.42.50.0/23 5408 -194.42.56.0/22 1759 -194.42.60.0/23 1759 -194.42.63.0/24 1759 -194.42.64.0/19 3257 -194.42.96.0/23 16509 -194.42.98.0/23 24611 -194.42.100.0/23 208913 -194.42.102.0/23 31554 -194.42.104.0/23 16509 -194.42.107.0/24 31598 -194.42.108.0/23 8881 -194.42.110.0/23 200001 -194.42.112.0/23 42441 -194.42.114.0/23 31614 -194.42.116.0/23 31646 -194.42.118.0/23 12741 -194.42.120.0/23 31604 -194.42.122.0/23 51849 -194.42.124.0/23 41012 -194.42.126.0/23 59505 -194.42.128.0/21 16229 -194.42.136.0/23 16229 -194.42.138.0/24 16229 -194.42.139.0/24 8544 -194.42.140.0/22 16229 -194.42.144.0/23 16229 -194.42.146.0/24 8544 -194.42.147.0/24 16229 -194.42.148.0/24 8544 -194.42.149.0/24 16229 -194.42.150.0/23 16229 -194.42.152.0/21 16229 -194.42.160.0/23 6830 -194.42.176.0/22 12886 -194.42.180.0/22 24940 -194.42.184.0/22 24940 -194.42.188.0/22 12886 -194.42.192.0/20 12545 -194.42.224.0/19 8190 -194.43.0.0/16 3292 -194.44.1.0/24 3255 -194.44.2.0/23 3255 -194.44.4.0/24 3255 -194.44.7.0/24 3255 -194.44.8.0/22 3255 -194.44.12.0/23 3255 -194.44.15.0/24 3255 -194.44.16.0/22 3255 -194.44.20.0/23 3255 -194.44.22.0/23 31556 -194.44.24.0/24 3255 -194.44.25.0/24 31305 -194.44.26.0/23 3255 -194.44.28.0/24 50569 -194.44.29.0/24 3255 -194.44.30.0/23 3255 -194.44.32.0/22 3255 -194.44.36.0/23 3255 -194.44.38.0/23 15461 -194.44.40.0/21 3255 -194.44.48.0/23 3255 -194.44.50.0/24 3255 -194.44.52.0/23 3255 -194.44.54.0/24 3255 -194.44.55.0/24 29375 -194.44.56.0/23 3255 -194.44.58.0/24 3255 -194.44.59.0/24 31556 -194.44.60.0/22 3255 -194.44.64.0/23 3255 -194.44.66.0/24 12706 -194.44.67.0/24 3255 -194.44.69.0/24 3255 -194.44.70.0/23 3255 -194.44.72.0/21 3255 -194.44.80.0/21 3255 -194.44.90.0/23 3255 -194.44.92.0/22 3255 -194.44.96.0/23 59497 -194.44.98.0/23 3255 -194.44.100.0/22 3255 -194.44.104.0/21 3255 -194.44.112.0/20 3255 -194.44.128.0/21 3255 -194.44.136.0/22 3255 -194.44.140.0/23 3255 -194.44.142.0/23 28804 -194.44.144.0/21 3255 -194.44.152.0/24 31145 -194.44.153.0/24 3255 -194.44.154.0/23 3255 -194.44.156.0/22 3255 -194.44.160.0/22 3255 -194.44.164.0/24 3255 -194.44.166.0/23 3255 -194.44.168.0/21 3255 -194.44.176.0/23 3255 -194.44.178.0/24 3255 -194.44.179.0/24 201039 -194.44.180.0/22 3255 -194.44.184.0/21 3255 -194.44.192.0/21 3255 -194.44.200.0/23 3255 -194.44.202.0/24 3255 -194.44.203.0/24 197348 -194.44.204.0/22 3255 -194.44.208.0/22 3255 -194.44.213.0/24 3255 -194.44.214.0/23 3255 -194.44.216.0/24 3255 -194.44.217.0/24 50569 -194.44.218.0/23 3255 -194.44.220.0/22 3255 -194.44.224.0/19 3255 -194.45.0.0/22 20765 -194.45.6.0/23 20765 -194.45.8.0/22 1136 -194.45.12.0/24 286 -194.45.13.0/24 25038 -194.45.14.0/23 1136 -194.45.16.0/22 1136 -194.45.20.0/24 8881 -194.45.21.0/24 1136 -194.45.22.0/24 12480 -194.45.23.0/24 1136 -194.45.24.0/23 1136 -194.45.26.0/24 15844 -194.45.27.0/24 8859 -194.45.28.0/22 1136 -194.45.32.0/24 1136 -194.45.33.0/24 24861 -194.45.34.0/24 64249 -194.45.35.0/24 1136 -194.45.36.0/23 31400 -194.45.38.0/23 1136 -194.45.40.0/22 1136 -194.45.44.0/24 1136 -194.45.45.0/24 57022 -194.45.46.0/24 286 -194.45.48.0/24 3209 -194.45.49.0/24 1136 -194.45.52.0/22 6453 -194.45.57.0/24 1136 -194.45.58.0/23 1136 -194.45.60.0/22 1136 -194.45.64.0/22 1136 -194.45.68.0/23 1136 -194.45.70.0/24 1136 -194.45.71.0/24 205376 -194.45.72.0/22 1136 -194.45.80.0/21 1136 -194.45.88.0/22 1136 -194.45.92.0/23 1136 -194.45.94.0/24 43354 -194.45.95.0/24 1136 -194.45.97.0/24 6724 -194.45.100.0/24 5669 -194.45.101.0/24 8881 -194.45.102.0/24 1136 -194.45.104.0/23 47777 -194.45.106.0/24 57022 -194.45.107.0/24 1136 -194.45.108.0/22 1136 -194.45.112.0/21 1136 -194.45.120.0/22 1136 -194.45.124.0/23 1136 -194.45.126.0/24 8687 -194.45.127.0/24 15743 -194.45.128.0/22 1136 -194.45.132.0/23 1136 -194.45.134.0/24 1136 -194.45.135.0/24 24956 -194.45.136.0/22 1136 -194.45.140.0/23 1136 -194.45.144.0/21 3320 -194.45.152.0/23 15404 -194.45.154.0/24 43341 -194.45.155.0/24 1136 -194.45.156.0/22 1136 -194.45.160.0/22 1136 -194.45.164.0/24 1136 -194.45.165.0/24 3209 -194.45.166.0/24 1136 -194.45.168.0/24 1136 -194.45.170.0/23 1136 -194.45.172.0/22 1136 -194.45.176.0/22 1136 -194.45.180.0/24 1136 -194.45.182.0/24 517 -194.45.183.0/24 12469 -194.45.184.0/24 42652 -194.45.185.0/24 1136 -194.45.186.0/23 1136 -194.45.188.0/22 1136 -194.45.192.0/22 1136 -194.45.196.0/23 31400 -194.45.198.0/23 1136 -194.45.201.0/24 1136 -194.45.202.0/23 1136 -194.45.204.0/22 1136 -194.45.208.0/21 35242 -194.45.216.0/24 1136 -194.45.218.0/23 1136 -194.45.220.0/22 1136 -194.45.224.0/23 1136 -194.45.226.0/24 1136 -194.45.227.0/24 15404 -194.45.228.0/22 1136 -194.45.232.0/24 12348 -194.45.234.0/23 1136 -194.45.236.0/23 12510 -194.45.238.0/23 1136 -194.45.240.0/20 1136 -194.46.0.0/19 41678 -194.46.32.0/19 12513 -194.46.64.0/19 12513 -194.46.126.0/23 16032 -194.46.128.0/20 16032 -194.46.144.0/21 16032 -194.46.152.0/22 41678 -194.46.156.0/22 16032 -194.46.160.0/24 41678 -194.46.164.0/22 41678 -194.46.192.0/18 2110 -194.47.0.0/16 1653 -194.48.4.0/22 12991 -194.48.32.0/19 12991 -194.48.64.0/22 12991 -194.48.68.0/22 29143 -194.48.72.0/21 29143 -194.48.80.0/22 29143 -194.48.84.0/22 25053 -194.48.88.0/22 8447 -194.48.95.0/24 202427 -194.48.96.0/22 48096 -194.48.104.0/24 28749 -194.48.106.0/23 28749 -194.48.108.0/22 8447 -194.48.112.0/21 8447 -194.48.120.0/22 8447 -194.48.124.0/22 16305 -194.48.128.0/21 16305 -194.48.136.0/24 8447 -194.48.137.0/24 16305 -194.48.138.0/23 16305 -194.48.140.0/22 201942 -194.48.144.0/22 47295 -194.48.148.0/22 204396 -194.48.152.0/22 35196 -194.48.156.0/22 8447 -194.48.160.0/22 8447 -194.48.164.0/22 25369 -194.48.168.0/22 31400 -194.48.172.0/24 52220 -194.48.173.0/24 8447 -194.48.176.0/22 29119 -194.48.180.0/22 202709 -194.48.184.0/22 8245 -194.48.190.0/24 31146 -194.48.192.0/23 15965 -194.48.198.0/24 6830 -194.48.199.0/24 207804 -194.48.203.0/24 6830 -194.48.205.0/24 12552 -194.48.206.0/24 44396 -194.48.207.0/24 8426 -194.48.209.0/24 197221 -194.48.210.0/24 44426 -194.48.212.0/24 44434 -194.48.213.0/24 51815 -194.48.214.0/24 25151 -194.48.215.0/24 3303 -194.48.216.0/24 29522 -194.48.217.0/24 6908 -194.48.218.0/24 44478 -194.48.219.0/24 44523 -194.48.220.0/22 202426 -194.48.224.0/22 200319 -194.48.228.0/23 206356 -194.48.230.0/24 208727 -194.48.231.0/24 206356 -194.48.236.0/22 34183 -194.48.241.0/24 5588 -194.48.244.0/22 202424 -194.48.252.0/23 15965 -194.49.0.0/22 206487 -194.49.4.0/23 33657 -194.49.7.0/24 9211 -194.49.8.0/22 200387 -194.49.12.0/22 206347 -194.49.16.0/23 33657 -194.49.19.0/24 208508 -194.49.21.0/24 3303 -194.49.22.0/24 42184 -194.49.24.0/21 21413 -194.49.32.0/24 34086 -194.49.34.0/23 34086 -194.49.40.0/21 25394 -194.49.48.0/24 3320 -194.49.50.0/24 48566 -194.49.51.0/24 48547 -194.49.54.0/24 3320 -194.49.56.0/22 202384 -194.49.60.0/24 12337 -194.49.61.0/24 680 -194.49.64.0/23 20694 -194.49.71.0/24 208172 -194.49.72.0/24 3320 -194.49.73.0/24 3209 -194.49.74.0/23 3320 -194.49.77.0/24 25394 -194.49.80.0/24 202315 -194.49.82.0/23 202315 -194.49.85.0/24 3320 -194.49.88.0/22 42707 -194.49.96.0/22 12679 -194.49.104.0/22 56373 -194.49.108.0/24 134526 -194.49.109.0/24 132422 -194.49.110.0/24 3320 -194.49.112.0/24 132422 -194.49.113.0/24 54600 -194.49.114.0/24 12292 -194.49.117.0/24 3320 -194.49.118.0/23 3320 -194.49.124.0/24 198696 -194.49.125.0/24 3320 -194.49.126.0/24 198970 -194.49.127.0/24 201593 -194.49.171.0/24 62434 -194.49.178.0/24 62434 -194.49.205.0/24 62434 -194.49.218.0/24 62434 -194.49.220.0/23 62434 -194.50.2.0/24 56891 -194.50.6.0/24 33842 -194.50.9.0/24 39529 -194.50.10.0/24 39589 -194.50.11.0/24 39502 -194.50.12.0/22 202765 -194.50.16.0/23 7489 -194.50.18.0/24 6233 -194.50.19.0/24 205591 -194.50.20.0/24 200382 -194.50.22.0/23 200382 -194.50.24.0/24 198933 -194.50.28.0/24 44329 -194.50.29.0/24 39495 -194.50.30.0/23 40992 -194.50.32.0/24 40992 -194.50.33.0/24 48152 -194.50.34.0/24 20560 -194.50.35.0/24 57863 -194.50.36.0/24 209480 -194.50.37.0/24 20889 -194.50.38.0/24 39534 -194.50.39.0/24 39542 -194.50.40.0/24 16095 -194.50.41.0/24 28786 -194.50.43.0/24 1241 -194.50.44.0/24 39516 -194.50.45.0/24 47469 -194.50.47.0/24 8422 -194.50.49.0/24 24906 -194.50.50.0/24 39531 -194.50.51.0/24 15713 -194.50.53.0/24 39547 -194.50.54.0/24 25577 -194.50.55.0/24 41379 -194.50.56.0/24 41379 -194.50.57.0/24 31027 -194.50.58.0/24 200093 -194.50.60.0/24 197914 -194.50.61.0/24 39914 -194.50.62.0/24 39579 -194.50.63.0/24 39581 -194.50.64.0/22 25248 -194.50.68.0/24 41552 -194.50.69.0/24 3356 -194.50.70.0/24 41552 -194.50.71.0/24 35532 -194.50.72.0/23 49392 -194.50.76.0/24 39601 -194.50.77.0/24 39606 -194.50.78.0/24 34970 -194.50.79.0/24 48560 -194.50.80.0/24 35327 -194.50.81.0/24 33817 -194.50.83.0/24 15694 -194.50.84.0/24 24944 -194.50.85.0/24 39608 -194.50.86.0/24 22775 -194.50.87.0/24 39711 -194.50.88.0/24 39617 -194.50.89.0/24 201908 -194.50.90.0/24 39621 -194.50.91.0/24 39641 -194.50.92.0/24 35619 -194.50.93.0/24 40967 -194.50.94.0/24 58057 -194.50.95.0/24 39754 -194.50.96.0/24 31477 -194.50.97.0/24 39628 -194.50.98.0/24 39644 -194.50.99.0/24 34800 -194.50.101.0/24 12301 -194.50.102.0/24 47112 -194.50.103.0/24 39713 -194.50.104.0/24 39850 -194.50.105.0/24 2877 -194.50.106.0/24 12552 -194.50.107.0/24 39658 -194.50.108.0/24 8838 -194.50.109.0/24 39057 -194.50.110.0/24 39661 -194.50.111.0/24 58057 -194.50.112.0/24 9150 -194.50.113.0/24 41637 -194.50.114.0/24 39666 -194.50.115.0/24 201459 -194.50.116.0/24 34241 -194.50.117.0/24 42547 -194.50.118.0/24 8296 -194.50.119.0/24 39695 -194.50.120.0/24 39688 -194.50.121.0/24 39717 -194.50.122.0/24 13306 -194.50.123.0/24 39698 -194.50.125.0/24 39685 -194.50.126.0/24 5588 -194.50.127.0/24 34241 -194.50.128.0/22 59793 -194.50.132.0/22 43091 -194.50.136.0/23 24629 -194.50.138.0/24 24629 -194.50.139.0/24 42033 -194.50.140.0/24 198513 -194.50.141.0/24 198539 -194.50.142.0/23 198539 -194.50.144.0/22 51738 -194.50.148.0/23 57861 -194.50.150.0/24 57856 -194.50.151.0/24 43957 -194.50.152.0/24 198526 -194.50.155.0/24 13110 -194.50.156.0/22 57896 -194.50.160.0/24 5400 -194.50.161.0/24 39722 -194.50.162.0/24 35724 -194.50.163.0/24 39704 -194.50.164.0/24 42442 -194.50.166.0/24 42273 -194.50.167.0/24 39726 -194.50.168.0/24 1759 -194.50.169.0/24 39769 -194.50.170.0/23 49392 -194.50.172.0/24 21434 -194.50.173.0/24 6830 -194.50.174.0/24 20929 -194.50.175.0/24 39768 -194.50.177.0/24 39923 -194.50.178.0/24 43393 -194.50.179.0/24 43425 -194.50.180.0/24 34241 -194.50.181.0/24 33886 -194.50.182.0/24 47706 -194.50.183.0/24 21079 -194.50.184.0/23 203025 -194.50.186.0/24 31229 -194.50.187.0/24 44569 -194.50.188.0/23 203025 -194.50.190.0/24 34241 -194.50.191.0/24 13187 -194.50.192.0/22 46261 -194.50.198.0/24 20473 -194.50.200.0/23 8474 -194.50.202.0/24 201163 -194.50.204.0/24 207796 -194.50.205.0/24 25093 -194.50.208.0/24 16095 -194.50.209.0/24 207796 -194.50.214.0/24 39794 -194.50.215.0/24 12767 -194.50.216.0/24 207796 -194.50.218.0/24 207796 -194.50.219.0/24 201163 -194.50.222.0/24 200646 -194.50.226.0/23 201163 -194.50.228.0/22 39817 -194.50.234.0/23 46261 -194.50.236.0/22 206278 -194.50.240.0/24 25093 -194.50.241.0/24 56688 -194.50.244.0/22 42965 -194.50.248.0/23 5610 -194.50.250.0/23 46261 -194.50.252.0/24 39800 -194.50.253.0/24 198537 -194.50.254.0/24 39862 -194.50.255.0/24 39843 -194.51.0.0/19 3215 -194.51.32.0/23 3215 -194.51.34.0/24 3215 -194.51.35.0/24 206713 -194.51.36.0/22 3215 -194.51.40.0/21 3215 -194.51.48.0/20 3215 -194.51.64.0/20 3215 -194.51.80.0/22 3215 -194.51.84.0/24 3215 -194.51.85.0/24 8362 -194.51.86.0/23 3215 -194.51.88.0/21 3215 -194.51.96.0/19 3215 -194.51.128.0/19 3215 -194.51.160.0/20 3215 -194.51.176.0/21 3215 -194.51.184.0/23 3215 -194.51.186.0/24 3215 -194.51.187.0/24 24763 -194.51.188.0/22 3215 -194.51.192.0/18 3215 -194.52.0.0/16 51964 -194.53.0.0/24 12859 -194.53.1.0/24 198537 -194.53.2.0/24 198537 -194.53.3.0/24 48997 -194.53.4.0/22 197883 -194.53.10.0/24 33915 -194.53.12.0/22 205915 -194.53.16.0/20 47886 -194.53.32.0/24 28878 -194.53.33.0/24 33915 -194.53.34.0/23 33915 -194.53.36.0/22 33915 -194.53.40.0/21 33915 -194.53.48.0/22 200379 -194.53.52.0/22 50113 -194.53.56.0/23 1136 -194.53.60.0/24 2830 -194.53.61.0/24 198537 -194.53.62.0/23 1136 -194.53.64.0/22 200374 -194.53.68.0/22 24768 -194.53.72.0/22 28878 -194.53.76.0/22 702 -194.53.84.0/24 29396 -194.53.86.0/23 47273 -194.53.88.0/23 1103 -194.53.92.0/24 1103 -194.53.104.0/22 210214 -194.53.108.0/24 35913 -194.53.109.0/24 40676 -194.53.110.0/23 40676 -194.53.114.0/23 47273 -194.53.116.0/23 39686 -194.53.124.0/22 201236 -194.53.128.0/23 7155 -194.53.130.0/23 9166 -194.53.132.0/23 9166 -194.53.134.0/24 9166 -194.53.136.0/22 8100 -194.53.140.0/22 61317 -194.53.148.0/22 210181 -194.53.152.0/22 202074 -194.53.156.0/22 197328 -194.53.160.0/22 61013 -194.53.164.0/23 61013 -194.53.166.0/23 59543 -194.53.168.0/22 59543 -194.53.175.0/24 5089 -194.53.176.0/22 210172 -194.53.180.0/22 209572 -194.53.184.0/22 60257 -194.53.188.0/22 9009 -194.53.192.0/23 42927 -194.53.194.0/23 207668 -194.53.196.0/22 210186 -194.53.200.0/22 200088 -194.53.204.0/22 39647 -194.53.208.0/22 57090 -194.53.214.0/23 7155 -194.53.216.0/21 35467 -194.53.224.0/19 5524 -194.54.0.0/23 35803 -194.54.2.0/24 35803 -194.54.8.0/22 38966 -194.54.12.0/23 44408 -194.54.14.0/24 35237 -194.54.15.0/24 44408 -194.54.16.0/22 38923 -194.54.20.0/22 29596 -194.54.24.0/22 24929 -194.54.28.0/22 47234 -194.54.32.0/19 9121 -194.54.64.0/22 8941 -194.54.68.0/22 3292 -194.54.72.0/22 35721 -194.54.76.0/22 49956 -194.54.80.0/22 41018 -194.54.84.0/22 44415 -194.54.88.0/22 41665 -194.54.92.0/22 41692 -194.54.96.0/19 2116 -194.54.132.0/22 31620 -194.54.136.0/22 202414 -194.54.140.0/22 24750 -194.54.144.0/22 34968 -194.54.148.0/22 13174 -194.54.152.0/22 8654 -194.54.160.0/22 50115 -194.54.164.0/22 43948 -194.54.168.0/22 39343 -194.54.172.0/24 28914 -194.54.175.0/24 28914 -194.54.176.0/24 31707 -194.54.178.0/24 31707 -194.54.180.0/22 31716 -194.54.184.0/23 30790 -194.54.186.0/23 21500 -194.54.188.0/22 29314 -194.54.192.0/19 3225 -194.54.224.0/21 3225 -194.54.232.0/22 3225 -194.54.236.0/22 25122 -194.54.240.0/20 3225 -194.55.1.0/24 42652 -194.55.2.0/23 15830 -194.55.4.0/23 42598 -194.55.12.0/22 197540 -194.55.16.0/21 200777 -194.55.24.0/23 200777 -194.55.26.0/24 20886 -194.55.27.0/24 200777 -194.55.28.0/22 200777 -194.55.39.0/24 43623 -194.55.42.0/24 3320 -194.55.44.0/22 12874 -194.55.48.0/20 20570 -194.55.64.0/20 3320 -194.55.80.0/22 48095 -194.55.84.0/23 3209 -194.55.86.0/24 3209 -194.55.87.0/24 3320 -194.55.88.0/24 15830 -194.55.90.0/24 12510 -194.55.91.0/24 397464 -194.55.92.0/22 34718 -194.55.96.0/22 202373 -194.55.100.0/23 12502 -194.55.102.0/23 49505 -194.55.104.0/23 49505 -194.55.106.0/23 12611 -194.55.108.0/22 21150 -194.55.112.0/20 3209 -194.55.132.0/23 35913 -194.55.136.0/23 18978 -194.55.138.0/24 12360 -194.55.140.0/22 205460 -194.55.144.0/22 15943 -194.55.148.0/22 200148 -194.55.152.0/22 48571 -194.55.156.0/24 13135 -194.55.159.0/24 29236 -194.55.161.0/24 8410 -194.55.162.0/24 9063 -194.55.163.0/24 8410 -194.55.164.0/22 48430 -194.55.168.0/24 8410 -194.55.169.0/24 57269 -194.55.171.0/24 8410 -194.55.172.0/22 47826 -194.55.180.0/24 3320 -194.55.183.0/24 3320 -194.55.184.0/22 52055 -194.55.188.0/23 18978 -194.55.191.0/24 44438 -194.55.192.0/19 3320 -194.55.228.0/22 396319 -194.55.232.0/23 60393 -194.55.234.0/23 34959 -194.55.236.0/22 202406 -194.55.240.0/22 209620 -194.55.244.0/23 34959 -194.55.246.0/23 8520 -194.56.0.0/18 3303 -194.56.64.0/21 3303 -194.56.72.0/23 61094 -194.56.74.0/24 61094 -194.56.75.0/24 200440 -194.56.76.0/22 35913 -194.56.80.0/22 210185 -194.56.88.0/22 204760 -194.56.96.0/22 3303 -194.56.100.0/22 21190 -194.56.104.0/21 3303 -194.56.112.0/21 3303 -194.56.120.0/22 3303 -194.56.124.0/23 42346 -194.56.126.0/24 42346 -194.56.127.0/24 3303 -194.56.132.0/22 30862 -194.56.165.0/24 12776 -194.56.166.0/24 12776 -194.56.178.0/24 6830 -194.56.179.0/24 15576 -194.56.192.0/22 200336 -194.56.196.0/22 44212 -194.56.208.0/23 6772 -194.56.210.0/24 43284 -194.56.211.0/24 35337 -194.56.215.0/24 50463 -194.56.218.0/24 202035 -194.56.219.0/24 43284 -194.56.221.0/24 209943 -194.56.224.0/24 204662 -194.56.225.0/24 7489 -194.56.226.0/24 40065 -194.56.227.0/24 205203 -194.56.228.0/23 50405 -194.56.232.0/24 60781 -194.56.233.0/24 201807 -194.56.234.0/24 3303 -194.56.235.0/24 60781 -194.56.236.0/22 57910 -194.56.240.0/24 60781 -194.56.244.0/24 6830 -194.56.245.0/24 60781 -194.56.248.0/23 3303 -194.56.250.0/23 15675 -194.56.252.0/23 60187 -194.56.255.0/24 49392 -194.57.0.0/17 2200 -194.57.128.0/19 2200 -194.57.160.0/21 2200 -194.57.168.0/23 2200 -194.57.170.0/24 2199 -194.57.171.0/24 2200 -194.57.172.0/22 2200 -194.57.176.0/22 2200 -194.57.180.0/23 2200 -194.57.182.0/24 2200 -194.57.183.0/24 2072 -194.57.184.0/21 2200 -194.57.192.0/19 2200 -194.57.224.0/21 2200 -194.57.232.0/22 2200 -194.57.236.0/23 2471 -194.57.238.0/23 2200 -194.57.240.0/24 2200 -194.57.241.0/24 2072 -194.57.242.0/23 2200 -194.57.244.0/22 2200 -194.57.248.0/21 2200 -194.58.0.0/20 29256 -194.58.24.0/22 209519 -194.58.28.0/23 12479 -194.58.30.0/24 12479 -194.58.31.0/24 9111 -194.58.32.0/24 9111 -194.58.34.0/24 2118 -194.58.35.0/24 12479 -194.58.36.0/23 2118 -194.58.38.0/23 197695 -194.58.40.0/24 197695 -194.58.41.0/24 48758 -194.58.42.0/23 197695 -194.58.44.0/22 197695 -194.58.56.0/22 197695 -194.58.60.0/23 197695 -194.58.64.0/23 209706 -194.58.66.0/24 2118 -194.58.67.0/24 202127 -194.58.68.0/24 205735 -194.58.69.0/24 48347 -194.58.70.0/23 48347 -194.58.72.0/22 47253 -194.58.76.0/23 47253 -194.58.79.0/24 25227 -194.58.80.0/23 12479 -194.58.82.0/23 2118 -194.58.84.0/22 12479 -194.58.88.0/21 197695 -194.58.96.0/20 197695 -194.58.112.0/21 197695 -194.58.120.0/22 197695 -194.58.124.0/24 43146 -194.58.125.0/24 197695 -194.58.126.0/23 197695 -194.58.152.0/23 47253 -194.58.154.0/23 2118 -194.58.160.0/21 44507 -194.58.168.0/21 50477 -194.58.176.0/21 44507 -194.58.184.0/21 50477 -194.58.192.0/22 8674 -194.58.196.0/24 8674 -194.58.198.0/23 56908 -194.58.200.0/24 57021 -194.58.202.0/23 57021 -194.58.204.0/23 57021 -194.58.216.0/22 209519 -194.58.220.0/23 47253 -194.58.222.0/23 2118 -194.58.240.0/24 47253 -194.58.241.0/24 2118 -194.58.242.0/23 47253 -194.58.244.0/23 47253 -194.58.246.0/24 2118 -194.58.247.0/24 47253 -194.59.0.0/23 60187 -194.59.2.0/24 24989 -194.59.3.0/24 3320 -194.59.4.0/24 20676 -194.59.5.0/24 49392 -194.59.10.0/23 50324 -194.59.12.0/24 49392 -194.59.13.0/24 12480 -194.59.14.0/23 203536 -194.59.16.0/23 8351 -194.59.18.0/23 12843 -194.59.20.0/22 12843 -194.59.24.0/22 200076 -194.59.32.0/23 203536 -194.59.34.0/23 8881 -194.59.36.0/22 50964 -194.59.40.0/24 49392 -194.59.46.0/24 56630 -194.59.47.0/24 3549 -194.59.48.0/23 3320 -194.59.51.0/24 3320 -194.59.52.0/22 43012 -194.59.58.0/24 3320 -194.59.59.0/24 56630 -194.59.60.0/24 2686 -194.59.62.0/23 24989 -194.59.119.0/24 15404 -194.59.120.0/24 15404 -194.59.128.0/22 9145 -194.59.132.0/22 25481 -194.59.136.0/24 28878 -194.59.137.0/24 8220 -194.59.139.0/24 8220 -194.59.140.0/23 50840 -194.59.142.0/24 56630 -194.59.152.0/23 3303 -194.59.154.0/24 3303 -194.59.155.0/24 56630 -194.59.156.0/24 51483 -194.59.158.0/23 50840 -194.59.160.0/22 3209 -194.59.164.0/22 47583 -194.59.169.0/24 34172 -194.59.172.0/22 28918 -194.59.177.0/24 12453 -194.59.178.0/24 24953 -194.59.179.0/24 8222 -194.59.180.0/24 16347 -194.59.182.0/24 48774 -194.59.184.0/24 44126 -194.59.185.0/24 28850 -194.59.187.0/24 49505 -194.59.188.0/24 2856 -194.59.192.0/22 35684 -194.59.196.0/22 48146 -194.59.200.0/22 48095 -194.59.204.0/22 197540 -194.59.208.0/22 12874 -194.59.213.0/24 12470 -194.59.220.0/23 18978 -194.59.222.0/24 49392 -194.59.236.0/24 41886 -194.59.240.0/22 29321 -194.59.244.0/23 18978 -194.59.246.0/24 48031 -194.59.248.0/21 9009 -194.60.38.0/23 29214 -194.60.40.0/23 29214 -194.60.60.0/24 29214 -194.60.62.0/23 29214 -194.60.64.0/22 39286 -194.60.68.0/24 12586 -194.60.69.0/24 39608 -194.60.70.0/24 43136 -194.60.71.0/24 60781 -194.60.72.0/24 34740 -194.60.73.0/24 41933 -194.60.74.0/24 41970 -194.60.75.0/24 42022 -194.60.76.0/24 62240 -194.60.77.0/24 41940 -194.60.78.0/24 41961 -194.60.79.0/24 42021 -194.60.80.0/24 35706 -194.60.82.0/24 41971 -194.60.83.0/24 41988 -194.60.84.0/23 34930 -194.60.88.0/22 5089 -194.60.92.0/23 5089 -194.60.94.0/24 22787 -194.60.95.0/24 5089 -194.60.105.0/24 21188 -194.60.106.0/23 21188 -194.60.108.0/22 21188 -194.60.120.0/21 4445 -194.60.130.0/24 4445 -194.60.134.0/24 202396 -194.60.136.0/24 2856 -194.60.160.0/19 33953 -194.60.192.0/22 60297 -194.60.196.0/22 8282 -194.60.203.0/24 20712 -194.60.204.0/24 41961 -194.60.206.0/24 41471 -194.60.207.0/24 35470 -194.60.208.0/22 200370 -194.60.212.0/22 200311 -194.60.217.0/24 31736 -194.60.218.0/24 786 -194.60.226.0/23 57520 -194.60.232.0/22 57466 -194.60.236.0/22 52040 -194.60.240.0/23 57468 -194.60.242.0/24 57470 -194.60.243.0/24 198194 -194.60.244.0/23 51011 -194.60.247.0/24 41082 -194.60.248.0/23 41082 -194.60.250.0/24 57473 -194.60.252.0/24 57479 -194.60.253.0/24 199351 -194.60.254.0/23 196777 -194.61.0.0/22 43263 -194.61.4.0/22 35467 -194.61.8.0/24 62300 -194.61.9.0/24 196955 -194.61.10.0/23 60257 -194.61.16.0/22 44293 -194.61.20.0/23 209045 -194.61.24.0/23 38994 -194.61.26.0/24 38994 -194.61.28.0/23 35913 -194.61.30.0/24 35913 -194.61.32.0/23 210166 -194.61.36.0/24 200383 -194.61.40.0/22 46261 -194.61.44.0/24 47244 -194.61.48.0/22 198814 -194.61.52.0/23 9009 -194.61.57.0/24 59551 -194.61.58.0/24 44118 -194.61.59.0/24 49544 -194.61.60.0/22 58210 -194.61.64.0/24 21155 -194.61.65.0/24 20857 -194.61.66.0/24 15694 -194.61.67.0/24 58155 -194.61.68.0/22 33985 -194.61.76.0/23 49505 -194.61.78.0/24 15404 -194.61.79.0/24 199713 -194.61.80.0/24 60026 -194.61.82.0/24 62329 -194.61.83.0/24 49171 -194.61.84.0/22 41960 -194.61.88.0/22 201986 -194.61.92.0/23 7 -194.61.94.0/24 7 -194.61.112.0/22 34549 -194.61.116.0/23 201978 -194.61.118.0/24 201978 -194.61.119.0/24 208425 -194.61.120.0/23 49392 -194.61.122.0/23 25050 -194.61.124.0/22 29256 -194.61.128.0/22 60341 -194.61.136.0/22 210179 -194.61.140.0/22 210178 -194.61.153.0/24 209991 -194.61.154.0/23 209991 -194.61.158.0/24 41980 -194.61.162.0/23 5089 -194.61.173.0/24 5089 -194.61.174.0/24 5089 -194.61.176.0/20 24775 -194.61.192.0/19 49324 -194.61.224.0/22 209154 -194.61.232.0/22 20655 -194.61.236.0/23 3214 -194.61.238.0/23 4785 -194.61.249.0/24 203652 -194.61.250.0/24 203652 -194.61.251.0/24 47978 -194.62.0.0/24 34464 -194.62.1.0/24 44592 -194.62.6.0/24 44592 -194.62.7.0/24 2856 -194.62.10.0/23 28846 -194.62.20.0/24 58092 -194.62.22.0/24 49052 -194.62.23.0/24 48200 -194.62.28.0/24 47480 -194.62.29.0/24 44592 -194.62.30.0/23 60781 -194.62.32.0/24 5413 -194.62.44.0/22 8897 -194.62.52.0/24 43260 -194.62.53.0/24 60721 -194.62.54.0/23 60721 -194.62.56.0/22 60267 -194.62.60.0/22 3257 -194.62.64.0/24 51365 -194.62.65.0/24 50202 -194.62.66.0/23 60781 -194.62.70.0/23 28846 -194.62.103.0/24 29037 -194.62.104.0/22 62423 -194.62.118.0/24 34657 -194.62.124.0/24 20712 -194.62.131.0/24 200020 -194.62.132.0/22 12695 -194.62.136.0/22 210177 -194.62.144.0/22 15404 -194.62.148.0/24 202392 -194.62.152.0/22 42523 -194.62.157.0/24 44592 -194.62.158.0/23 199478 -194.62.165.0/24 393559 -194.62.167.0/24 393559 -194.62.168.0/22 197301 -194.62.173.0/24 8902 -194.62.174.0/24 41090 -194.62.180.0/22 29997 -194.62.184.0/22 202282 -194.62.188.0/24 41090 -194.62.190.0/23 199478 -194.62.200.0/22 202382 -194.62.210.0/24 5089 -194.62.214.0/23 22769 -194.62.216.0/23 42541 -194.62.220.0/24 41698 -194.62.224.0/22 50919 -194.62.232.0/24 25135 -194.62.233.0/24 41090 -194.62.234.0/24 24807 -194.62.238.0/24 25135 -194.62.240.0/22 8426 -194.62.244.0/22 48031 -194.62.248.0/22 62336 -194.62.252.0/22 29119 -194.63.0.0/24 1273 -194.63.4.0/24 1273 -194.63.9.0/24 1273 -194.63.11.0/24 1273 -194.63.16.0/24 1273 -194.63.20.0/22 1273 -194.63.50.0/24 1273 -194.63.66.0/23 39584 -194.63.68.0/23 39584 -194.63.76.0/24 1273 -194.63.85.0/24 1273 -194.63.88.0/24 1273 -194.63.110.0/23 1273 -194.63.112.0/21 1273 -194.63.124.0/23 1273 -194.63.128.0/22 31242 -194.63.132.0/22 33951 -194.63.136.0/22 31460 -194.63.140.0/22 50113 -194.63.148.0/22 42346 -194.63.152.0/22 43542 -194.63.156.0/22 49880 -194.63.160.0/19 8248 -194.63.192.0/19 8248 -194.63.224.0/20 8248 -194.63.240.0/21 8388 -194.63.248.0/21 12996 -194.64.0.0/20 6659 -194.64.16.0/23 6659 -194.64.18.0/24 3257 -194.64.19.0/24 6659 -194.64.20.0/24 3257 -194.64.21.0/24 6659 -194.64.22.0/23 6659 -194.64.24.0/22 6659 -194.64.28.0/23 6659 -194.64.30.0/24 6659 -194.64.31.0/24 8469 -194.64.32.0/19 4589 -194.64.64.0/20 6659 -194.64.80.0/21 6659 -194.64.88.0/22 6659 -194.64.92.0/23 64252 -194.64.94.0/23 6659 -194.64.96.0/21 51862 -194.64.104.0/24 4589 -194.64.105.0/24 8391 -194.64.106.0/23 4589 -194.64.108.0/22 4589 -194.64.112.0/21 4589 -194.64.120.0/21 6659 -194.64.128.0/22 6659 -194.64.132.0/22 4589 -194.64.136.0/22 4589 -194.64.140.0/23 4589 -194.64.142.0/24 8469 -194.64.143.0/24 4589 -194.64.144.0/20 4589 -194.64.160.0/20 6659 -194.64.176.0/22 6659 -194.64.180.0/23 6659 -194.64.182.0/24 6659 -194.64.183.0/24 8469 -194.64.184.0/21 6659 -194.64.192.0/18 6659 -194.65.0.0/16 3243 -194.66.0.0/16 786 -194.67.0.0/20 3216 -194.67.16.0/21 3216 -194.67.24.0/22 3216 -194.67.28.0/24 3216 -194.67.29.0/24 35102 -194.67.30.0/23 3216 -194.67.32.0/21 3216 -194.67.40.0/24 3216 -194.67.41.0/24 34698 -194.67.42.0/23 3216 -194.67.44.0/22 3216 -194.67.48.0/20 3216 -194.67.69.0/24 2683 -194.67.70.0/24 2683 -194.67.72.0/24 197695 -194.67.75.0/24 49352 -194.67.78.0/24 197695 -194.67.80.0/22 2683 -194.67.84.0/24 197695 -194.67.86.0/23 197695 -194.67.90.0/23 197695 -194.67.92.0/23 197695 -194.67.94.0/24 197695 -194.67.95.0/24 2683 -194.67.104.0/23 197695 -194.67.107.0/24 43146 -194.67.112.0/23 197695 -194.67.114.0/24 197695 -194.67.117.0/24 197695 -194.67.128.0/18 5523 -194.67.192.0/19 35196 -194.67.224.0/19 5523 -194.68.0.0/24 50066 -194.68.2.0/24 48540 -194.68.4.0/23 20514 -194.68.6.0/24 35041 -194.68.7.0/24 12552 -194.68.12.0/24 1273 -194.68.13.0/24 2603 -194.68.14.0/23 3301 -194.68.16.0/22 51747 -194.68.20.0/24 12552 -194.68.22.0/23 35100 -194.68.24.0/23 12552 -194.68.26.0/23 9009 -194.68.33.0/24 1257 -194.68.35.0/24 204302 -194.68.36.0/24 43098 -194.68.37.0/24 42708 -194.68.38.0/24 42708 -194.68.40.0/22 34971 -194.68.44.0/24 9009 -194.68.45.0/24 31800 -194.68.46.0/24 35041 -194.68.48.0/24 12381 -194.68.49.0/24 203661 -194.68.51.0/24 200871 -194.68.52.0/23 21195 -194.68.54.0/24 209997 -194.68.55.0/24 12552 -194.68.56.0/23 2119 -194.68.58.0/24 197603 -194.68.59.0/24 206170 -194.68.60.0/24 9891 -194.68.64.0/24 202671 -194.68.66.0/24 29518 -194.68.70.0/24 43948 -194.68.71.0/24 3301 -194.68.78.0/24 28726 -194.68.80.0/24 3246 -194.68.81.0/24 60582 -194.68.82.0/24 3246 -194.68.84.0/24 51747 -194.68.85.0/24 1257 -194.68.86.0/24 39806 -194.68.87.0/24 35041 -194.68.88.0/22 3246 -194.68.92.0/23 3246 -194.68.94.0/24 3301 -194.68.95.0/24 3246 -194.68.96.0/24 42708 -194.68.97.0/24 3166 -194.68.98.0/24 3246 -194.68.99.0/24 2119 -194.68.102.0/24 3301 -194.68.103.0/24 35041 -194.68.104.0/23 206387 -194.68.106.0/24 29518 -194.68.107.0/24 3301 -194.68.108.0/24 3301 -194.68.110.0/24 3246 -194.68.112.0/23 42708 -194.68.115.0/24 50420 -194.68.117.0/24 48803 -194.68.118.0/24 16150 -194.68.119.0/24 200090 -194.68.121.0/24 2863 -194.68.122.0/24 204847 -194.68.123.0/24 12552 -194.68.124.0/24 3246 -194.68.125.0/24 198463 -194.68.126.0/24 2119 -194.68.127.0/24 3301 -194.68.132.0/24 8674 -194.68.133.0/24 12552 -194.68.134.0/24 20943 -194.68.135.0/24 12552 -194.68.138.0/23 3301 -194.68.140.0/22 3301 -194.68.144.0/22 3301 -194.68.148.0/23 3301 -194.68.155.0/24 3246 -194.68.156.0/24 35041 -194.68.159.0/24 42649 -194.68.160.0/24 42649 -194.68.161.0/24 51701 -194.68.164.0/24 206258 -194.68.166.0/23 50168 -194.68.168.0/24 207166 -194.68.169.0/24 8403 -194.68.170.0/23 197595 -194.68.172.0/24 208822 -194.68.173.0/24 35041 -194.68.174.0/23 3246 -194.68.182.0/24 206320 -194.68.184.0/24 206320 -194.68.185.0/24 35041 -194.68.187.0/24 206258 -194.68.188.0/24 35041 -194.68.189.0/24 39806 -194.68.190.0/24 8473 -194.68.191.0/24 16375 -194.68.192.0/24 1257 -194.68.193.0/24 35041 -194.68.194.0/23 2119 -194.68.198.0/24 198568 -194.68.199.0/24 202967 -194.68.209.0/24 3301 -194.68.212.0/24 12552 -194.68.213.0/24 35041 -194.68.215.0/24 198568 -194.68.216.0/23 21195 -194.68.218.0/24 3301 -194.68.219.0/24 44581 -194.68.222.0/24 3246 -194.68.223.0/24 49419 -194.68.225.0/24 56630 -194.68.228.0/24 1257 -194.68.229.0/24 20861 -194.68.231.0/24 42303 -194.68.235.0/24 21195 -194.68.236.0/24 8473 -194.68.237.0/24 1257 -194.68.238.0/24 1257 -194.68.239.0/24 35041 -194.69.0.0/24 6735 -194.69.1.0/24 51182 -194.69.6.0/23 25176 -194.69.8.0/21 25176 -194.69.16.0/20 48886 -194.69.36.0/23 61183 -194.69.42.0/23 21160 -194.69.60.0/22 198349 -194.69.80.0/24 40841 -194.69.81.0/24 40481 -194.69.82.0/24 40841 -194.69.85.0/24 48553 -194.69.86.0/24 62346 -194.69.87.0/24 40841 -194.69.96.0/21 6584 -194.69.104.0/23 35106 -194.69.106.0/23 6584 -194.69.108.0/22 6584 -194.69.112.0/20 6584 -194.69.128.0/21 3320 -194.69.136.0/22 3320 -194.69.140.0/23 3320 -194.69.142.0/24 3320 -194.69.145.0/24 2687 -194.69.146.0/24 2686 -194.69.147.0/24 2687 -194.69.148.0/24 2386 -194.69.149.0/24 4466 -194.69.160.0/21 20890 -194.69.177.0/24 12312 -194.69.192.0/23 47217 -194.69.194.0/23 197133 -194.69.196.0/23 16242 -194.69.198.0/23 198949 -194.69.200.0/22 39024 -194.69.205.0/24 8767 -194.69.206.0/24 41090 -194.69.207.0/24 25443 -194.69.208.0/20 62225 -194.69.224.0/23 3352 -194.69.248.0/22 15450 -194.69.253.0/24 49392 -194.69.254.0/24 25354 -194.70.0.0/23 2529 -194.70.2.0/24 2529 -194.70.3.0/24 20712 -194.70.4.0/22 2529 -194.70.8.0/21 2529 -194.70.16.0/20 2529 -194.70.32.0/22 2529 -194.70.36.0/24 8282 -194.70.37.0/24 2529 -194.70.38.0/23 2529 -194.70.40.0/21 2529 -194.70.48.0/20 2529 -194.70.64.0/20 2529 -194.70.80.0/21 2529 -194.70.88.0/22 2529 -194.70.92.0/23 2529 -194.70.94.0/24 2856 -194.70.95.0/24 2529 -194.70.96.0/19 2529 -194.70.128.0/20 2529 -194.70.144.0/21 2529 -194.70.152.0/24 57014 -194.70.153.0/24 2529 -194.70.154.0/23 2529 -194.70.156.0/22 2529 -194.70.160.0/20 2529 -194.70.176.0/22 2529 -194.70.180.0/24 2529 -194.70.181.0/24 198472 -194.70.182.0/23 2529 -194.70.184.0/21 2529 -194.70.192.0/19 2529 -194.70.224.0/21 2529 -194.70.232.0/23 2529 -194.70.234.0/24 13213 -194.70.235.0/24 2529 -194.70.236.0/23 2529 -194.70.238.0/23 1273 -194.70.240.0/21 2529 -194.70.248.0/22 2529 -194.70.252.0/22 1273 -194.71.0.0/23 57630 -194.71.2.0/24 12381 -194.71.3.0/24 45011 -194.71.5.0/24 204398 -194.71.6.0/23 3301 -194.71.8.0/24 200675 -194.71.9.0/24 34971 -194.71.10.0/24 1880 -194.71.11.0/24 1653 -194.71.12.0/23 202641 -194.71.14.0/23 3246 -194.71.18.0/23 206889 -194.71.20.0/24 35041 -194.71.21.0/24 1257 -194.71.22.0/23 51747 -194.71.24.0/24 62463 -194.71.25.0/24 12381 -194.71.27.0/24 51634 -194.71.28.0/23 20765 -194.71.30.0/24 1257 -194.71.31.0/24 12552 -194.71.32.0/19 199355 -194.71.64.0/21 197942 -194.71.80.0/24 197942 -194.71.83.0/24 2119 -194.71.84.0/24 56961 -194.71.85.0/24 1257 -194.71.86.0/24 197603 -194.71.87.0/24 719 -194.71.88.0/23 204850 -194.71.90.0/24 200591 -194.71.91.0/24 29695 -194.71.92.0/24 44838 -194.71.94.0/24 13189 -194.71.95.0/24 34971 -194.71.96.0/24 3301 -194.71.97.0/24 35073 -194.71.99.0/24 201428 -194.71.100.0/22 51747 -194.71.104.0/23 15782 -194.71.106.0/24 15782 -194.71.107.0/24 39326 -194.71.108.0/24 8873 -194.71.110.0/24 1257 -194.71.111.0/24 30893 -194.71.112.0/24 8473 -194.71.114.0/24 12552 -194.71.116.0/24 3301 -194.71.117.0/24 12381 -194.71.122.0/24 12552 -194.71.123.0/24 29672 -194.71.126.0/24 9009 -194.71.127.0/24 20513 -194.71.128.0/23 2846 -194.71.130.0/24 5483 -194.71.131.0/24 3246 -194.71.132.0/22 3301 -194.71.138.0/23 47467 -194.71.140.0/23 2119 -194.71.142.0/24 3246 -194.71.144.0/23 200134 -194.71.146.0/23 203245 -194.71.152.0/24 3246 -194.71.153.0/24 49079 -194.71.154.0/24 3301 -194.71.155.0/24 199564 -194.71.156.0/24 3301 -194.71.157.0/24 16150 -194.71.158.0/24 3301 -194.71.159.0/24 3246 -194.71.160.0/24 3301 -194.71.161.0/24 43893 -194.71.162.0/24 43893 -194.71.163.0/24 3301 -194.71.164.0/24 3306 -194.71.165.0/24 16150 -194.71.166.0/24 3301 -194.71.169.0/24 19133 -194.71.170.0/24 19133 -194.71.171.0/24 3246 -194.71.172.0/23 3246 -194.71.176.0/22 1257 -194.71.180.0/23 209570 -194.71.182.0/24 24668 -194.71.183.0/24 35041 -194.71.186.0/24 3301 -194.71.187.0/24 35041 -194.71.189.0/24 21250 -194.71.190.0/23 21250 -194.71.192.0/22 49217 -194.71.196.0/24 205841 -194.71.197.0/24 13189 -194.71.198.0/23 60205 -194.71.202.0/23 51747 -194.71.204.0/24 8473 -194.71.205.0/24 12552 -194.71.207.0/24 3301 -194.71.208.0/22 51747 -194.71.212.0/23 12552 -194.71.214.0/24 12552 -194.71.216.0/23 197595 -194.71.220.0/24 3301 -194.71.221.0/24 200341 -194.71.222.0/23 24668 -194.71.224.0/23 34971 -194.71.227.0/24 42160 -194.71.228.0/22 51747 -194.71.236.0/22 199150 -194.71.242.0/24 45011 -194.71.243.0/24 206889 -194.71.244.0/24 3301 -194.71.245.0/24 200606 -194.71.246.0/23 51747 -194.71.248.0/21 2119 -194.72.0.0/15 2856 -194.74.0.0/18 2856 -194.74.64.0/20 2856 -194.74.80.0/21 5400 -194.74.88.0/21 2856 -194.74.96.0/21 2856 -194.74.104.0/21 5400 -194.74.112.0/20 2856 -194.74.128.0/17 2856 -194.75.0.0/19 6871 -194.75.32.0/19 2856 -194.75.64.0/20 2856 -194.75.80.0/20 6871 -194.75.96.0/19 2856 -194.75.128.0/23 32787 -194.75.130.0/23 2856 -194.75.132.0/22 2856 -194.75.136.0/21 2856 -194.75.144.0/20 2856 -194.75.160.0/19 2856 -194.75.192.0/20 2856 -194.75.208.0/21 2856 -194.75.216.0/22 2856 -194.75.220.0/22 6871 -194.75.224.0/19 2856 -194.76.0.0/23 22769 -194.76.2.0/23 48918 -194.76.4.0/22 48918 -194.76.8.0/23 15404 -194.76.10.0/23 41332 -194.76.12.0/23 41332 -194.76.14.0/24 13039 -194.76.15.0/24 49392 -194.76.18.0/24 49392 -194.76.28.0/24 49392 -194.76.29.0/24 197208 -194.76.30.0/23 3320 -194.76.32.0/22 48095 -194.76.38.0/23 50964 -194.76.40.0/24 5400 -194.76.41.0/24 204444 -194.76.42.0/24 50629 -194.76.43.0/24 680 -194.76.44.0/24 204444 -194.76.45.0/24 3320 -194.76.48.0/22 3320 -194.76.52.0/24 3320 -194.76.53.0/24 204444 -194.76.54.0/24 3209 -194.76.55.0/24 3320 -194.76.58.0/23 207673 -194.76.60.0/24 2830 -194.76.61.0/24 5605 -194.76.62.0/23 9211 -194.76.64.0/19 6687 -194.76.102.0/23 42464 -194.76.107.0/24 8881 -194.76.108.0/23 200019 -194.76.110.0/23 3320 -194.76.112.0/24 57342 -194.76.116.0/22 202675 -194.76.120.0/23 200019 -194.76.122.0/23 15404 -194.76.124.0/22 12695 -194.76.128.0/22 39647 -194.76.132.0/23 54103 -194.76.134.0/23 46261 -194.76.136.0/22 35913 -194.76.142.0/24 3320 -194.76.143.0/24 204444 -194.76.144.0/24 3320 -194.76.145.0/24 47869 -194.76.146.0/23 18978 -194.76.149.0/24 47869 -194.76.150.0/24 47869 -194.76.151.0/24 8881 -194.76.154.0/23 18978 -194.76.156.0/22 20676 -194.76.160.0/24 20570 -194.76.171.0/24 12531 -194.76.174.0/23 3320 -194.76.176.0/21 3320 -194.76.186.0/24 47869 -194.76.187.0/24 42652 -194.76.188.0/22 28974 -194.76.192.0/24 174 -194.76.193.0/24 44177 -194.76.200.0/22 39204 -194.76.208.0/24 1299 -194.76.210.0/24 31473 -194.76.211.0/24 9145 -194.76.212.0/22 3320 -194.76.217.0/24 174 -194.76.218.0/24 174 -194.76.219.0/24 12531 -194.76.222.0/24 41998 -194.76.223.0/24 31705 -194.76.224.0/24 42708 -194.76.225.0/24 58329 -194.76.232.0/22 680 -194.76.238.0/24 174 -194.76.239.0/24 31473 -194.76.240.0/23 33806 -194.76.242.0/24 20676 -194.76.243.0/24 24989 -194.76.244.0/24 58043 -194.76.245.0/24 58038 -194.76.246.0/24 198204 -194.76.247.0/24 15830 -194.76.248.0/22 204287 -194.76.253.0/24 21413 -194.76.254.0/23 205149 -194.77.0.0/19 5669 -194.77.32.0/21 5669 -194.77.40.0/24 5669 -194.77.41.0/24 3320 -194.77.42.0/24 3320 -194.77.43.0/24 5669 -194.77.44.0/23 5669 -194.77.46.0/23 21192 -194.77.48.0/22 21192 -194.77.52.0/23 21192 -194.77.54.0/23 8561 -194.77.56.0/21 5669 -194.77.64.0/24 5669 -194.77.65.0/24 3257 -194.77.66.0/23 5669 -194.77.68.0/22 5669 -194.77.72.0/21 5669 -194.77.80.0/22 5669 -194.77.84.0/23 5669 -194.77.88.0/21 5669 -194.77.96.0/19 5669 -194.77.128.0/23 5669 -194.77.130.0/24 204673 -194.77.131.0/24 5669 -194.77.132.0/24 5669 -194.77.134.0/23 5669 -194.77.136.0/21 5669 -194.77.144.0/24 5669 -194.77.145.0/24 8859 -194.77.146.0/23 5669 -194.77.148.0/24 5669 -194.77.149.0/24 3320 -194.77.150.0/23 5669 -194.77.152.0/23 5669 -194.77.155.0/24 5669 -194.77.156.0/23 39795 -194.77.158.0/24 702 -194.77.159.0/24 5669 -194.77.160.0/20 5669 -194.77.176.0/21 5669 -194.77.184.0/24 5669 -194.77.185.0/24 3320 -194.77.186.0/23 5669 -194.77.188.0/22 5669 -194.77.192.0/20 5669 -194.77.208.0/21 5669 -194.77.216.0/23 5669 -194.77.219.0/24 5669 -194.77.220.0/22 5669 -194.77.224.0/21 5669 -194.77.232.0/22 5669 -194.77.236.0/22 48049 -194.77.240.0/20 48049 -194.78.0.0/16 5432 -194.79.0.0/22 35721 -194.79.4.0/22 42742 -194.79.8.0/22 35714 -194.79.12.0/22 20657 -194.79.16.0/22 29422 -194.79.20.0/22 21151 -194.79.24.0/22 35720 -194.79.28.0/22 9009 -194.79.32.0/22 38959 -194.79.36.0/22 202438 -194.79.40.0/22 35796 -194.79.44.0/22 49545 -194.79.52.0/22 38952 -194.79.56.0/22 39217 -194.79.60.0/22 35804 -194.79.64.0/19 2860 -194.79.96.0/19 15475 -194.79.128.0/18 13193 -194.79.192.0/19 5394 -194.79.240.0/22 5413 -194.79.244.0/23 34386 -194.79.247.0/24 34386 -194.79.250.0/23 48876 -194.80.0.0/14 786 -194.84.0.0/21 2854 -194.84.8.0/22 2854 -194.84.12.0/24 2854 -194.84.13.0/24 204696 -194.84.14.0/23 2854 -194.84.16.0/23 2854 -194.84.18.0/24 201195 -194.84.19.0/24 2854 -194.84.20.0/22 2854 -194.84.24.0/21 2854 -194.84.32.0/21 2854 -194.84.40.0/22 2854 -194.84.44.0/23 2854 -194.84.46.0/24 205750 -194.84.47.0/24 2854 -194.84.48.0/20 2854 -194.84.64.0/23 2854 -194.84.66.0/24 2854 -194.84.67.0/24 208811 -194.84.68.0/22 2854 -194.84.72.0/21 2854 -194.84.80.0/21 2854 -194.84.88.0/22 2854 -194.84.92.0/24 43042 -194.84.93.0/24 2854 -194.84.94.0/23 2854 -194.84.96.0/21 2854 -194.84.104.0/24 51213 -194.84.105.0/24 2854 -194.84.106.0/23 2854 -194.84.108.0/22 2854 -194.84.112.0/20 2854 -194.84.128.0/20 2854 -194.84.144.0/23 2854 -194.84.146.0/24 2854 -194.84.147.0/24 34291 -194.84.148.0/22 2854 -194.84.152.0/21 2854 -194.84.160.0/19 2854 -194.84.192.0/22 2854 -194.84.196.0/24 59792 -194.84.197.0/24 2854 -194.84.198.0/23 2854 -194.84.200.0/21 2854 -194.84.208.0/20 2854 -194.84.224.0/19 2854 -194.85.0.0/24 21416 -194.85.1.0/24 31324 -194.85.2.0/24 57628 -194.85.4.0/24 3277 -194.85.6.0/24 57645 -194.85.7.0/24 44310 -194.85.8.0/23 12938 -194.85.10.0/24 58019 -194.85.11.0/24 34862 -194.85.14.0/23 3058 -194.85.16.0/24 8985 -194.85.17.0/24 203514 -194.85.18.0/24 198607 -194.85.19.0/24 57078 -194.85.20.0/24 59446 -194.85.21.0/24 204067 -194.85.22.0/24 57658 -194.85.23.0/24 12819 -194.85.24.0/24 201804 -194.85.25.0/24 201052 -194.85.26.0/24 5495 -194.85.27.0/24 42548 -194.85.28.0/23 62261 -194.85.30.0/24 57580 -194.85.31.0/24 3316 -194.85.32.0/20 3267 -194.85.58.0/24 207634 -194.85.59.0/24 56488 -194.85.60.0/24 57368 -194.85.61.0/24 48287 -194.85.62.0/24 57579 -194.85.63.0/24 57680 -194.85.64.0/21 2148 -194.85.76.0/24 42385 -194.85.80.0/22 5467 -194.85.84.0/23 42385 -194.85.86.0/23 57186 -194.85.88.0/21 48287 -194.85.96.0/24 41688 -194.85.97.0/24 49050 -194.85.99.0/24 209701 -194.85.103.0/24 210113 -194.85.104.0/24 43832 -194.85.105.0/24 3316 -194.85.106.0/24 3316 -194.85.108.0/24 43832 -194.85.109.0/24 42385 -194.85.111.0/24 41082 -194.85.112.0/24 61011 -194.85.113.0/24 34584 -194.85.114.0/23 41082 -194.85.116.0/24 3216 -194.85.117.0/24 3316 -194.85.118.0/23 3316 -194.85.120.0/22 5495 -194.85.124.0/24 41148 -194.85.125.0/24 59957 -194.85.126.0/24 8848 -194.85.127.0/24 5387 -194.85.128.0/19 3216 -194.85.160.0/21 3267 -194.85.168.0/22 3267 -194.85.172.0/23 8790 -194.85.174.0/23 3267 -194.85.178.0/24 56820 -194.85.183.0/24 3267 -194.85.184.0/24 8749 -194.85.192.0/21 47595 -194.85.200.0/21 57867 -194.85.208.0/20 3218 -194.85.224.0/20 3351 -194.85.252.0/23 42385 -194.86.0.0/16 719 -194.87.0.0/22 2118 -194.87.4.0/23 2118 -194.87.6.0/24 2118 -194.87.7.0/24 25227 -194.87.8.0/21 2118 -194.87.16.0/20 2118 -194.87.32.0/21 2118 -194.87.40.0/24 2118 -194.87.41.0/24 21453 -194.87.42.0/23 21453 -194.87.44.0/24 21453 -194.87.45.0/24 2118 -194.87.46.0/23 2118 -194.87.48.0/21 2118 -194.87.56.0/22 2118 -194.87.60.0/23 2118 -194.87.62.0/24 25227 -194.87.63.0/24 2118 -194.87.66.0/23 2118 -194.87.68.0/22 21453 -194.87.72.0/22 21453 -194.87.76.0/24 208637 -194.87.77.0/24 2118 -194.87.78.0/23 21453 -194.87.80.0/23 21453 -194.87.82.0/24 200175 -194.87.83.0/24 25561 -194.87.84.0/22 7979 -194.87.88.0/23 29258 -194.87.90.0/24 206465 -194.87.91.0/24 2118 -194.87.92.0/22 48347 -194.87.96.0/23 9002 -194.87.98.0/23 48347 -194.87.100.0/24 2118 -194.87.101.0/24 48347 -194.87.102.0/23 48347 -194.87.104.0/24 43146 -194.87.105.0/24 197695 -194.87.106.0/23 197695 -194.87.108.0/24 2118 -194.87.109.0/24 9002 -194.87.110.0/23 48347 -194.87.120.0/21 197695 -194.87.128.0/21 21453 -194.87.136.0/21 2118 -194.87.144.0/22 48347 -194.87.148.0/24 205094 -194.87.149.0/24 48758 -194.87.150.0/23 205094 -194.87.152.0/21 2118 -194.87.160.0/22 48347 -194.87.164.0/23 48940 -194.87.166.0/24 48758 -194.87.167.0/24 59881 -194.87.169.0/24 41082 -194.87.170.0/23 41082 -194.87.172.0/24 48758 -194.87.173.0/24 41082 -194.87.174.0/23 41082 -194.87.176.0/24 197695 -194.87.177.0/24 43146 -194.87.178.0/24 197695 -194.87.179.0/24 43146 -194.87.180.0/22 197695 -194.87.184.0/23 197695 -194.87.187.0/24 197695 -194.87.188.0/24 9009 -194.87.190.0/23 49352 -194.87.192.0/22 197695 -194.87.196.0/24 49352 -194.87.197.0/24 197695 -194.87.198.0/23 49352 -194.87.200.0/22 197695 -194.87.204.0/23 49352 -194.87.206.0/23 197695 -194.87.208.0/20 197695 -194.87.224.0/23 197695 -194.87.226.0/24 43146 -194.87.227.0/24 197695 -194.87.228.0/22 197695 -194.87.232.0/24 48347 -194.87.233.0/24 208099 -194.87.234.0/23 48347 -194.87.236.0/22 48347 -194.87.240.0/20 2118 -194.88.0.0/24 48152 -194.88.1.0/24 34214 -194.88.2.0/24 57146 -194.88.3.0/24 34208 -194.88.4.0/24 41680 -194.88.5.0/24 42525 -194.88.6.0/23 39767 -194.88.9.0/24 21217 -194.88.10.0/24 21385 -194.88.12.0/23 39767 -194.88.14.0/24 12768 -194.88.15.0/24 198598 -194.88.16.0/21 3320 -194.88.24.0/23 3320 -194.88.26.0/24 3320 -194.88.28.0/23 3320 -194.88.30.0/23 3303 -194.88.32.0/23 5588 -194.88.34.0/24 202738 -194.88.35.0/24 5588 -194.88.36.0/22 5588 -194.88.40.0/24 24690 -194.88.41.0/24 5588 -194.88.42.0/23 5588 -194.88.44.0/24 5588 -194.88.45.0/24 12589 -194.88.46.0/23 5588 -194.88.48.0/21 5588 -194.88.56.0/24 49180 -194.88.57.0/24 5588 -194.88.58.0/23 5588 -194.88.60.0/22 5588 -194.88.64.0/19 3356 -194.88.96.0/21 209706 -194.88.104.0/22 49981 -194.88.108.0/23 12400 -194.88.112.0/20 209706 -194.88.128.0/23 35752 -194.88.130.0/23 35792 -194.88.132.0/23 8426 -194.88.134.0/23 208913 -194.88.138.0/23 35780 -194.88.140.0/24 62426 -194.88.141.0/24 35774 -194.88.142.0/24 203020 -194.88.143.0/24 49367 -194.88.144.0/23 38990 -194.88.146.0/23 35772 -194.88.148.0/23 35775 -194.88.150.0/23 35781 -194.88.152.0/23 35800 -194.88.154.0/23 35787 -194.88.156.0/23 34913 -194.88.158.0/23 41005 -194.88.160.0/19 6735 -194.88.194.0/23 48907 -194.88.196.0/23 35507 -194.88.200.0/23 35522 -194.88.202.0/23 35512 -194.88.204.0/23 35640 -194.88.206.0/23 13307 -194.88.210.0/23 35526 -194.88.212.0/23 197439 -194.88.214.0/23 196979 -194.88.216.0/23 59701 -194.88.218.0/23 34633 -194.88.220.0/23 31504 -194.88.222.0/23 15557 -194.88.224.0/23 197217 -194.88.228.0/23 41234 -194.88.230.0/23 20857 -194.88.232.0/23 42318 -194.88.234.0/23 41240 -194.88.236.0/23 28788 -194.88.238.0/23 8317 -194.88.240.0/23 2128 -194.88.242.0/23 30967 -194.88.244.0/23 41508 -194.88.246.0/23 34177 -194.88.248.0/23 34353 -194.88.250.0/23 13306 -194.88.255.0/24 3301 -194.89.0.0/16 1759 -194.90.0.0/18 1680 -194.90.64.0/20 1680 -194.90.80.0/22 1680 -194.90.84.0/22 49391 -194.90.88.0/21 1680 -194.90.96.0/19 1680 -194.90.128.0/17 1680 -194.91.0.0/16 9597 -194.92.0.0/16 8308 -194.93.0.0/24 56630 -194.93.1.0/24 34665 -194.93.2.0/24 204941 -194.93.3.0/24 12722 -194.93.4.0/22 21769 -194.93.12.0/23 209795 -194.93.16.0/22 56595 -194.93.20.0/24 209792 -194.93.24.0/22 34665 -194.93.28.0/22 41719 -194.93.32.0/22 9009 -194.93.36.0/22 48095 -194.93.40.0/23 28716 -194.93.44.0/22 197077 -194.93.52.0/22 18530 -194.93.56.0/24 197071 -194.93.58.0/24 56910 -194.93.59.0/24 49981 -194.93.68.0/22 209014 -194.93.75.0/24 44398 -194.93.76.0/23 61438 -194.93.78.0/24 43957 -194.93.79.0/24 202703 -194.93.84.0/22 3246 -194.93.96.0/23 20570 -194.93.98.0/24 3303 -194.93.100.0/24 57464 -194.93.112.0/22 3303 -194.93.116.0/22 6830 -194.93.124.0/23 198043 -194.93.126.0/23 12741 -194.93.128.0/19 5587 -194.93.160.0/19 8445 -194.93.192.0/19 11757 -194.93.224.0/23 11757 -194.93.226.0/24 11757 -194.93.227.0/24 2856 -194.93.228.0/22 11757 -194.93.232.0/21 11757 -194.93.240.0/20 11757 -194.94.0.0/15 680 -194.96.0.0/16 1901 -194.97.0.0/18 5430 -194.97.64.0/19 5539 -194.97.96.0/19 5430 -194.97.128.0/19 5539 -194.97.160.0/19 5430 -194.97.192.0/18 5430 -194.98.0.0/19 702 -194.98.32.0/21 702 -194.98.40.0/24 702 -194.98.41.0/24 29118 -194.98.42.0/23 702 -194.98.44.0/22 702 -194.98.48.0/20 702 -194.98.64.0/18 702 -194.98.128.0/18 702 -194.98.192.0/19 702 -194.98.224.0/20 702 -194.98.240.0/24 12696 -194.98.241.0/24 702 -194.98.242.0/23 702 -194.98.244.0/22 702 -194.98.248.0/21 702 -194.99.0.0/21 8881 -194.99.12.0/24 15404 -194.99.14.0/23 42652 -194.99.16.0/22 197328 -194.99.20.0/22 202448 -194.99.24.0/22 57129 -194.99.28.0/22 198605 -194.99.40.0/22 50304 -194.99.48.0/24 20570 -194.99.49.0/24 16017 -194.99.56.0/24 197208 -194.99.60.0/22 9009 -194.99.73.0/24 34928 -194.99.75.0/24 199574 -194.99.76.0/23 3320 -194.99.82.0/24 8893 -194.99.83.0/24 3320 -194.99.85.0/24 8893 -194.99.88.0/23 21355 -194.99.90.0/24 34213 -194.99.91.0/24 8893 -194.99.92.0/22 3320 -194.99.104.0/22 9009 -194.99.108.0/23 200657 -194.99.110.0/24 8893 -194.99.111.0/24 3209 -194.99.112.0/24 7922 -194.99.113.0/24 8881 -194.99.116.0/24 48548 -194.99.117.0/24 48565 -194.99.118.0/23 204681 -194.99.120.0/21 15404 -194.99.130.0/24 6453 -194.99.139.0/24 32382 -194.99.140.0/24 3327 -194.99.144.0/21 60123 -194.99.152.0/22 60123 -194.99.160.0/19 8569 -194.99.192.0/20 8569 -194.99.208.0/21 8569 -194.99.216.0/22 34381 -194.99.220.0/22 8569 -194.99.224.0/20 8569 -194.99.240.0/21 8569 -194.99.248.0/22 35474 -194.99.252.0/22 8569 -194.100.0.0/16 16086 -194.101.2.0/24 5413 -194.101.56.0/21 4637 -194.101.68.0/24 25180 -194.101.82.0/23 25180 -194.102.0.0/19 2856 -194.102.32.0/23 2614 -194.102.34.0/24 2614 -194.102.35.0/24 50944 -194.102.40.0/24 2614 -194.102.42.0/23 2614 -194.102.44.0/24 2614 -194.102.45.0/24 25278 -194.102.57.0/24 2614 -194.102.58.0/23 2614 -194.102.61.0/24 2614 -194.102.62.0/23 199513 -194.102.64.0/23 2614 -194.102.67.0/24 31313 -194.102.69.0/24 2614 -194.102.70.0/24 2614 -194.102.73.0/24 2614 -194.102.74.0/24 8708 -194.102.77.0/24 15873 -194.102.79.0/24 12302 -194.102.81.0/24 8708 -194.102.85.0/24 44875 -194.102.86.0/24 31454 -194.102.90.0/24 6830 -194.102.93.0/24 9064 -194.102.98.0/24 8708 -194.102.99.0/24 6830 -194.102.100.0/24 39803 -194.102.101.0/24 12446 -194.102.102.0/23 8708 -194.102.104.0/24 6910 -194.102.106.0/24 21220 -194.102.108.0/24 33839 -194.102.113.0/24 12310 -194.102.117.0/24 57136 -194.102.118.0/24 9064 -194.102.124.0/23 12842 -194.102.126.0/24 6830 -194.102.127.0/24 12302 -194.102.128.0/24 51656 -194.102.129.0/24 8708 -194.102.131.0/24 43046 -194.102.134.0/23 8708 -194.102.138.0/23 16026 -194.102.140.0/23 50252 -194.102.143.0/24 6663 -194.102.146.0/24 6830 -194.102.147.0/24 62285 -194.102.154.0/24 6663 -194.102.157.0/24 8708 -194.102.160.0/23 6830 -194.102.162.0/24 6910 -194.102.173.0/24 6830 -194.102.176.0/24 8930 -194.102.177.0/24 8708 -194.102.182.0/24 6663 -194.102.183.0/24 8708 -194.102.185.0/24 6663 -194.102.188.0/24 20722 -194.102.189.0/24 43807 -194.102.190.0/24 8708 -194.102.192.0/24 12302 -194.102.193.0/24 42280 -194.102.194.0/24 31017 -194.102.199.0/24 6830 -194.102.200.0/24 15882 -194.102.201.0/24 9064 -194.102.202.0/23 12310 -194.102.204.0/24 39011 -194.102.208.0/24 30885 -194.102.215.0/24 34517 -194.102.219.0/24 8953 -194.102.220.0/24 21294 -194.102.221.0/24 39737 -194.102.223.0/24 6830 -194.102.229.0/24 8708 -194.102.234.0/24 20930 -194.102.235.0/24 6830 -194.102.238.0/24 12310 -194.102.239.0/24 7922 -194.102.241.0/24 9009 -194.102.243.0/24 8930 -194.102.244.0/23 8708 -194.102.247.0/24 8708 -194.102.248.0/21 6830 -194.103.0.0/24 39806 -194.103.2.0/24 51747 -194.103.3.0/24 12552 -194.103.4.0/24 43893 -194.103.6.0/24 51747 -194.103.7.0/24 35041 -194.103.8.0/24 8949 -194.103.9.0/24 42708 -194.103.10.0/24 8403 -194.103.11.0/24 42708 -194.103.14.0/23 3301 -194.103.16.0/24 13189 -194.103.17.0/24 43893 -194.103.18.0/24 13189 -194.103.19.0/24 43948 -194.103.20.0/24 202967 -194.103.21.0/24 13189 -194.103.29.0/24 199768 -194.103.31.0/24 199768 -194.103.33.0/24 42708 -194.103.34.0/24 199781 -194.103.35.0/24 25417 -194.103.40.0/24 204896 -194.103.41.0/24 51815 -194.103.43.0/24 50989 -194.103.44.0/24 203158 -194.103.45.0/24 3301 -194.103.46.0/24 13189 -194.103.47.0/24 1257 -194.103.48.0/24 203158 -194.103.50.0/24 2119 -194.103.51.0/24 51747 -194.103.52.0/24 198568 -194.103.55.0/24 1257 -194.103.56.0/24 12552 -194.103.58.0/24 49217 -194.103.59.0/24 3246 -194.103.60.0/24 12552 -194.103.61.0/24 3246 -194.103.62.0/24 197308 -194.103.63.0/24 30821 -194.103.85.0/24 12552 -194.103.88.0/24 56946 -194.103.90.0/24 43948 -194.103.91.0/24 42303 -194.103.92.0/24 51747 -194.103.93.0/24 8473 -194.103.94.0/24 3301 -194.103.95.0/24 50989 -194.103.96.0/23 203605 -194.103.98.0/24 3301 -194.103.99.0/24 203373 -194.103.100.0/23 205332 -194.103.104.0/21 59913 -194.103.112.0/24 200018 -194.103.118.0/23 12552 -194.103.120.0/24 8473 -194.103.122.0/24 42303 -194.103.124.0/24 203383 -194.103.125.0/24 3301 -194.103.126.0/23 3301 -194.103.128.0/23 197332 -194.103.132.0/24 62305 -194.103.133.0/24 43948 -194.103.134.0/23 56946 -194.103.136.0/22 51747 -194.103.140.0/24 1257 -194.103.141.0/24 51747 -194.103.142.0/23 12552 -194.103.144.0/24 12552 -194.103.145.0/24 57630 -194.103.148.0/23 197557 -194.103.150.0/23 12552 -194.103.154.0/23 3301 -194.103.156.0/24 50989 -194.103.157.0/24 206774 -194.103.158.0/24 204896 -194.103.159.0/24 3246 -194.103.162.0/24 199470 -194.103.176.0/24 199470 -194.103.180.0/24 199470 -194.103.182.0/23 199470 -194.103.184.0/23 199470 -194.103.187.0/24 1257 -194.103.188.0/22 34576 -194.103.192.0/24 60696 -194.103.194.0/23 197557 -194.103.200.0/22 3166 -194.103.204.0/23 3166 -194.103.206.0/24 12381 -194.103.207.0/24 42708 -194.103.210.0/24 34622 -194.103.211.0/24 42708 -194.103.212.0/23 42708 -194.103.214.0/24 12552 -194.103.215.0/24 8554 -194.103.216.0/24 1257 -194.103.217.0/24 3301 -194.103.218.0/23 3301 -194.103.220.0/24 12552 -194.103.221.0/24 43893 -194.103.222.0/24 51747 -194.103.223.0/24 1257 -194.103.224.0/22 3301 -194.103.228.0/22 50572 -194.103.233.0/24 3301 -194.103.234.0/23 41701 -194.103.236.0/23 12552 -194.103.240.0/20 3301 -194.104.0.0/24 1102 -194.104.1.0/24 396164 -194.104.4.0/22 9009 -194.104.8.0/22 36352 -194.104.12.0/22 26654 -194.104.16.0/22 34659 -194.104.20.0/22 200357 -194.104.24.0/22 1136 -194.104.32.0/24 21286 -194.104.59.0/24 21286 -194.104.64.0/20 33915 -194.104.80.0/24 1136 -194.104.85.0/24 396164 -194.104.97.0/24 31169 -194.104.98.0/24 31169 -194.104.99.0/24 20847 -194.104.100.0/22 1136 -194.104.108.0/24 42427 -194.104.111.0/24 30031 -194.104.112.0/24 31169 -194.104.113.0/24 1136 -194.104.124.0/23 1103 -194.104.126.0/24 31169 -194.104.144.0/24 4785 -194.104.145.0/24 35487 -194.104.146.0/23 35487 -194.104.148.0/23 44592 -194.104.152.0/24 207193 -194.104.153.0/24 54600 -194.104.154.0/23 54600 -194.104.156.0/24 26556 -194.104.157.0/24 38915 -194.104.158.0/24 26556 -194.104.188.0/23 16236 -194.104.190.0/23 201874 -194.104.194.0/24 13127 -194.104.224.0/19 1103 -194.105.1.0/24 5588 -194.105.3.0/24 8708 -194.105.4.0/24 41818 -194.105.5.0/24 26556 -194.105.6.0/24 3233 -194.105.7.0/24 6830 -194.105.11.0/24 21462 -194.105.12.0/23 16121 -194.105.16.0/24 3233 -194.105.17.0/24 6830 -194.105.19.0/24 8708 -194.105.20.0/24 8953 -194.105.21.0/24 26556 -194.105.24.0/21 6830 -194.105.32.0/21 5532 -194.105.40.0/22 5532 -194.105.44.0/23 5532 -194.105.46.0/24 5532 -194.105.47.0/24 12709 -194.105.48.0/21 12835 -194.105.56.0/24 12525 -194.105.57.0/24 21176 -194.105.60.0/24 48031 -194.105.61.0/24 12922 -194.105.64.0/19 8851 -194.105.96.0/21 35244 -194.105.104.0/21 21299 -194.105.112.0/23 6905 -194.105.114.0/23 2687 -194.105.116.0/22 17229 -194.105.120.0/23 2686 -194.105.122.0/24 2687 -194.105.123.0/24 2386 -194.105.124.0/23 2386 -194.105.127.0/24 2686 -194.105.128.0/23 8315 -194.105.130.0/23 44014 -194.105.132.0/23 206559 -194.105.134.0/23 9009 -194.105.136.0/23 43139 -194.105.138.0/23 15879 -194.105.140.0/23 39203 -194.105.142.0/23 57136 -194.105.144.0/23 39223 -194.105.146.0/23 8893 -194.105.149.0/24 201126 -194.105.150.0/23 34756 -194.105.152.0/23 41653 -194.105.154.0/23 42004 -194.105.156.0/23 39269 -194.105.158.0/23 49392 -194.105.160.0/19 8902 -194.105.192.0/19 6820 -194.105.224.0/21 6677 -194.105.232.0/24 43892 -194.105.233.0/24 6677 -194.105.234.0/23 6677 -194.105.236.0/22 6677 -194.105.240.0/20 6677 -194.106.0.0/19 6739 -194.106.32.0/19 9105 -194.106.64.0/22 15735 -194.106.68.0/24 15735 -194.106.69.0/24 5532 -194.106.70.0/23 15735 -194.106.72.0/21 15735 -194.106.80.0/21 15735 -194.106.88.0/23 15735 -194.106.90.0/24 5532 -194.106.91.0/24 15735 -194.106.92.0/22 15735 -194.106.96.0/19 3249 -194.106.128.0/19 5466 -194.106.160.0/19 6700 -194.106.192.0/23 31628 -194.106.194.0/23 9124 -194.106.196.0/23 49392 -194.106.198.0/24 60546 -194.106.199.0/24 53973 -194.106.200.0/23 6830 -194.106.204.0/23 208913 -194.106.206.0/23 29083 -194.106.208.0/23 31448 -194.106.210.0/23 31412 -194.106.212.0/23 208913 -194.106.214.0/23 31423 -194.106.216.0/23 21257 -194.106.218.0/23 31427 -194.106.220.0/23 21345 -194.106.222.0/23 47571 -194.106.224.0/19 8559 -194.107.0.0/20 24824 -194.107.16.0/24 43323 -194.107.17.0/24 43307 -194.107.18.0/24 199341 -194.107.20.0/24 204410 -194.107.21.0/24 34052 -194.107.22.0/24 43300 -194.107.23.0/24 43805 -194.107.24.0/21 31152 -194.107.32.0/21 31152 -194.107.40.0/21 28960 -194.107.56.0/22 8437 -194.107.60.0/22 5403 -194.107.64.0/22 5403 -194.107.68.0/23 5403 -194.107.77.0/24 50673 -194.107.79.0/24 50673 -194.107.80.0/24 39843 -194.107.81.0/24 12886 -194.107.82.0/23 39508 -194.107.84.0/22 8447 -194.107.88.0/22 8447 -194.107.92.0/24 48031 -194.107.93.0/24 198211 -194.107.94.0/23 198211 -194.107.98.0/24 52220 -194.107.106.0/23 52220 -194.107.108.0/23 52220 -194.107.112.0/24 43283 -194.107.114.0/24 13205 -194.107.115.0/24 56918 -194.107.116.0/24 44192 -194.107.118.0/24 30931 -194.107.119.0/24 12552 -194.107.120.0/24 44262 -194.107.121.0/24 51849 -194.107.122.0/24 51474 -194.107.123.0/24 47377 -194.107.124.0/24 59561 -194.107.125.0/24 49392 -194.107.127.0/24 49941 -194.107.130.0/23 8445 -194.107.136.0/22 202367 -194.107.140.0/23 56672 -194.107.142.0/23 25089 -194.107.144.0/24 49808 -194.107.148.0/23 44594 -194.107.150.0/24 44594 -194.107.151.0/24 1764 -194.107.152.0/21 8447 -194.107.160.0/22 207046 -194.107.164.0/24 198996 -194.107.165.0/24 39519 -194.107.166.0/24 209144 -194.107.167.0/24 8339 -194.107.176.0/22 200354 -194.107.184.0/21 43579 -194.107.192.0/21 8445 -194.107.200.0/24 49505 -194.107.201.0/24 8562 -194.107.202.0/23 8562 -194.107.204.0/22 41981 -194.107.224.0/24 6830 -194.107.228.0/24 42473 -194.107.230.0/23 44894 -194.107.232.0/21 49014 -194.107.240.0/21 49014 -194.107.248.0/22 39208 -194.107.252.0/22 210303 -194.108.0.0/16 5588 -194.109.0.0/16 3265 -194.110.0.0/24 34029 -194.110.4.0/23 12679 -194.110.6.0/24 57686 -194.110.8.0/22 201211 -194.110.12.0/24 133398 -194.110.13.0/24 61317 -194.110.14.0/23 61317 -194.110.16.0/23 12679 -194.110.18.0/24 42674 -194.110.22.0/24 58075 -194.110.23.0/24 16302 -194.110.25.0/24 48572 -194.110.26.0/24 43363 -194.110.27.0/24 58075 -194.110.30.0/24 58075 -194.110.38.0/24 719 -194.110.44.0/22 719 -194.110.48.0/22 24768 -194.110.52.0/22 200343 -194.110.62.0/23 1759 -194.110.64.0/23 198413 -194.110.67.0/24 47869 -194.110.69.0/24 48879 -194.110.70.0/24 43948 -194.110.72.0/24 58075 -194.110.73.0/24 30850 -194.110.74.0/24 199286 -194.110.76.0/24 47784 -194.110.77.0/24 42832 -194.110.78.0/24 29056 -194.110.79.0/24 15785 -194.110.85.0/24 207193 -194.110.86.0/24 23470 -194.110.88.0/22 9009 -194.110.92.0/22 18530 -194.110.116.0/24 12741 -194.110.117.0/24 199286 -194.110.120.0/22 24904 -194.110.127.0/24 31242 -194.110.128.0/24 43122 -194.110.129.0/24 42711 -194.110.132.0/24 199286 -194.110.133.0/24 3320 -194.110.136.0/24 42659 -194.110.137.0/24 199286 -194.110.140.0/23 205285 -194.110.142.0/24 50585 -194.110.144.0/22 39485 -194.110.148.0/23 205285 -194.110.151.0/24 6848 -194.110.152.0/23 57364 -194.110.154.0/24 208678 -194.110.155.0/24 198398 -194.110.156.0/22 57684 -194.110.160.0/22 210236 -194.110.164.0/22 39072 -194.110.168.0/23 42926 -194.110.170.0/24 42926 -194.110.172.0/22 57844 -194.110.176.0/20 3238 -194.110.192.0/24 35393 -194.110.195.0/24 3292 -194.110.196.0/24 21161 -194.110.198.0/24 42680 -194.110.199.0/24 42700 -194.110.201.0/24 206954 -194.110.202.0/24 42693 -194.110.205.0/24 42721 -194.110.206.0/24 31027 -194.110.207.0/24 12670 -194.110.208.0/24 43121 -194.110.211.0/24 15703 -194.110.212.0/24 42731 -194.110.213.0/24 42736 -194.110.217.0/24 25934 -194.110.218.0/24 29052 -194.110.219.0/24 42195 -194.110.220.0/24 42774 -194.110.221.0/24 42755 -194.110.222.0/24 42757 -194.110.223.0/24 42758 -194.110.224.0/21 199508 -194.110.232.0/22 199508 -194.110.237.0/24 43041 -194.110.238.0/24 42981 -194.110.239.0/24 42932 -194.110.240.0/24 42778 -194.110.241.0/24 42040 -194.110.243.0/24 41000 -194.110.245.0/24 42795 -194.110.246.0/23 24768 -194.110.248.0/24 56485 -194.110.249.0/24 42793 -194.110.250.0/24 30933 -194.110.253.0/24 47379 -194.110.254.0/24 56485 -194.111.0.0/16 1759 -194.112.0.0/20 3238 -194.112.16.0/20 12312 -194.112.32.0/19 8426 -194.112.64.0/18 1273 -194.112.128.0/17 3330 -194.113.0.0/20 43292 -194.113.16.0/22 43292 -194.113.20.0/23 43292 -194.113.22.0/23 15404 -194.113.24.0/24 199236 -194.113.26.0/23 203501 -194.113.28.0/22 201942 -194.113.32.0/24 56485 -194.113.34.0/24 6681 -194.113.35.0/24 59504 -194.113.36.0/23 52055 -194.113.38.0/24 52055 -194.113.39.0/24 9009 -194.113.40.0/23 24845 -194.113.44.0/22 58273 -194.113.48.0/22 30941 -194.113.52.0/23 30941 -194.113.56.0/24 8881 -194.113.57.0/24 34308 -194.113.58.0/24 56485 -194.113.59.0/24 41581 -194.113.60.0/24 3320 -194.113.62.0/23 209031 -194.113.64.0/22 46261 -194.113.68.0/23 209031 -194.113.71.0/24 21413 -194.113.76.0/22 21413 -194.113.80.0/23 197706 -194.113.88.0/22 41974 -194.113.93.0/24 3320 -194.113.94.0/23 197706 -194.113.96.0/22 60824 -194.113.104.0/24 59504 -194.113.105.0/24 208861 -194.113.106.0/24 208861 -194.113.107.0/24 59504 -194.113.108.0/23 200328 -194.113.115.0/24 20810 -194.113.116.0/24 8220 -194.113.117.0/24 6735 -194.113.120.0/21 15372 -194.113.136.0/23 8426 -194.113.139.0/24 207794 -194.113.140.0/24 207794 -194.113.141.0/24 31518 -194.113.142.0/24 207794 -194.113.143.0/24 200969 -194.113.144.0/22 43341 -194.113.154.0/24 6830 -194.113.155.0/24 207794 -194.113.156.0/22 12357 -194.113.160.0/22 3320 -194.113.164.0/24 62468 -194.113.165.0/24 39797 -194.113.166.0/23 44409 -194.113.169.0/24 62468 -194.113.170.0/24 62468 -194.113.172.0/24 133441 -194.113.173.0/24 3209 -194.113.174.0/23 44409 -194.113.176.0/22 28932 -194.113.194.0/23 43260 -194.113.196.0/22 205473 -194.113.208.0/24 680 -194.113.209.0/24 44676 -194.113.210.0/23 43260 -194.113.212.0/22 47474 -194.113.216.0/23 30962 -194.113.220.0/24 24989 -194.113.222.0/23 26556 -194.113.225.0/24 3320 -194.113.226.0/23 26556 -194.113.228.0/22 200925 -194.113.232.0/23 56694 -194.113.234.0/23 206873 -194.113.236.0/22 12494 -194.113.240.0/23 202462 -194.113.242.0/24 15943 -194.113.244.0/24 20676 -194.113.245.0/24 44676 -194.113.246.0/24 8220 -194.113.247.0/24 3209 -194.113.248.0/23 198857 -194.113.250.0/23 9145 -194.113.252.0/22 60305 -194.114.32.0/23 206618 -194.114.40.0/23 206618 -194.114.44.0/22 206618 -194.114.48.0/21 206618 -194.114.56.0/22 206618 -194.114.61.0/24 206618 -194.114.62.0/23 206618 -194.114.64.0/22 206618 -194.114.70.0/23 206618 -194.114.76.0/24 13130 -194.114.77.0/24 206618 -194.114.78.0/23 206618 -194.114.80.0/23 206618 -194.114.82.0/24 204357 -194.114.85.0/24 206618 -194.114.94.0/23 206618 -194.114.96.0/20 206618 -194.114.125.0/24 206618 -194.114.126.0/24 206618 -194.114.128.0/22 48711 -194.114.132.0/22 29012 -194.114.136.0/24 4785 -194.114.137.0/24 35487 -194.114.138.0/23 35487 -194.114.144.0/24 35346 -194.114.145.0/24 57581 -194.114.146.0/23 57666 -194.114.148.0/22 33869 -194.114.192.0/21 3301 -194.114.230.0/23 3301 -194.114.234.0/23 3301 -194.114.236.0/22 3301 -194.114.240.0/24 3301 -194.114.243.0/24 3301 -194.115.0.0/24 702 -194.115.1.0/24 3320 -194.115.2.0/23 702 -194.115.4.0/24 20765 -194.115.5.0/24 702 -194.115.6.0/23 702 -194.115.8.0/21 702 -194.115.16.0/21 702 -194.115.24.0/23 702 -194.115.26.0/24 3209 -194.115.27.0/24 702 -194.115.28.0/22 702 -194.115.32.0/22 702 -194.115.36.0/23 702 -194.115.38.0/23 1661 -194.115.40.0/21 702 -194.115.48.0/22 702 -194.115.52.0/24 3320 -194.115.53.0/24 702 -194.115.54.0/23 702 -194.115.56.0/21 702 -194.115.64.0/23 702 -194.115.66.0/24 3320 -194.115.67.0/24 702 -194.115.68.0/22 702 -194.115.72.0/21 702 -194.115.80.0/21 702 -194.115.88.0/21 3320 -194.115.96.0/20 702 -194.115.112.0/22 702 -194.115.116.0/23 1661 -194.115.118.0/23 702 -194.115.120.0/24 3320 -194.115.121.0/24 702 -194.115.122.0/23 702 -194.115.124.0/22 702 -194.115.128.0/19 702 -194.115.160.0/24 702 -194.115.161.0/24 201809 -194.115.162.0/24 702 -194.115.163.0/24 3320 -194.115.164.0/22 201809 -194.115.168.0/21 201809 -194.115.176.0/22 702 -194.115.180.0/23 702 -194.115.182.0/23 3320 -194.115.184.0/21 702 -194.115.192.0/22 6453 -194.115.196.0/22 702 -194.115.200.0/21 702 -194.115.208.0/22 702 -194.115.212.0/22 8220 -194.115.216.0/22 702 -194.115.220.0/24 702 -194.115.221.0/24 50524 -194.115.222.0/24 702 -194.115.223.0/24 50524 -194.115.224.0/19 702 -194.116.0.0/20 2595 -194.116.16.0/21 2595 -194.116.24.0/23 2595 -194.116.26.0/23 2596 -194.116.28.0/22 2595 -194.116.32.0/19 34606 -194.116.72.0/21 41364 -194.116.80.0/20 41364 -194.116.99.0/24 25309 -194.116.100.0/22 41364 -194.116.104.0/21 41364 -194.116.112.0/21 209631 -194.116.120.0/21 41364 -194.116.128.0/23 48152 -194.116.130.0/24 39816 -194.116.132.0/23 21021 -194.116.134.0/23 34392 -194.116.136.0/23 51098 -194.116.138.0/23 33869 -194.116.142.0/23 30781 -194.116.144.0/23 34493 -194.116.147.0/24 56732 -194.116.148.0/23 208379 -194.116.150.0/23 44949 -194.116.154.0/23 198857 -194.116.156.0/23 198612 -194.116.158.0/23 35369 -194.116.160.0/23 8276 -194.116.162.0/23 202423 -194.116.164.0/23 31121 -194.116.166.0/24 201637 -194.116.167.0/24 198063 -194.116.168.0/24 198365 -194.116.169.0/24 57410 -194.116.170.0/23 34448 -194.116.172.0/23 48430 -194.116.174.0/23 15510 -194.116.176.0/23 12645 -194.116.180.0/23 43549 -194.116.182.0/23 42986 -194.116.186.0/23 45031 -194.116.190.0/23 48430 -194.116.192.0/23 44033 -194.116.194.0/23 29128 -194.116.196.0/23 34514 -194.116.198.0/23 34523 -194.116.200.0/23 39629 -194.116.202.0/23 39072 -194.116.204.0/23 28850 -194.116.206.0/23 34839 -194.116.208.0/23 29083 -194.116.210.0/23 31004 -194.116.212.0/23 1257 -194.116.214.0/23 44676 -194.116.216.0/23 44676 -194.116.218.0/23 4589 -194.116.222.0/24 21060 -194.116.223.0/24 49309 -194.116.224.0/23 24708 -194.116.226.0/23 34583 -194.116.228.0/23 209737 -194.116.232.0/23 34633 -194.116.234.0/23 34568 -194.116.236.0/23 209737 -194.116.238.0/23 34603 -194.116.240.0/23 206954 -194.116.242.0/23 44865 -194.116.246.0/23 12310 -194.116.248.0/22 50495 -194.116.252.0/23 34688 -194.116.254.0/23 34649 -194.117.0.0/20 1930 -194.117.16.0/21 1930 -194.117.24.0/21 35038 -194.117.32.0/22 5516 -194.117.36.0/22 2860 -194.117.40.0/21 1930 -194.117.48.0/23 1930 -194.117.51.0/24 197024 -194.117.56.0/23 35160 -194.117.58.0/24 42 -194.117.59.0/24 35160 -194.117.64.0/21 6673 -194.117.72.0/24 200515 -194.117.73.0/24 28989 -194.117.74.0/23 6673 -194.117.76.0/22 6673 -194.117.80.0/20 6673 -194.117.128.0/19 5089 -194.117.160.0/22 3301 -194.117.164.0/23 3301 -194.117.166.0/24 3301 -194.117.167.0/24 6782 -194.117.168.0/23 6782 -194.117.170.0/24 6782 -194.117.171.0/24 3301 -194.117.172.0/22 3301 -194.117.176.0/22 3301 -194.117.180.0/23 3301 -194.117.182.0/24 3301 -194.117.184.0/22 3301 -194.117.188.0/24 3301 -194.117.192.0/20 5410 -194.117.208.0/20 8784 -194.117.226.0/23 35559 -194.117.228.0/23 31267 -194.117.230.0/23 39277 -194.117.232.0/23 35678 -194.117.234.0/23 35577 -194.117.236.0/23 31244 -194.117.240.0/23 35601 -194.117.242.0/23 35597 -194.117.244.0/23 30781 -194.117.246.0/23 35600 -194.117.248.0/23 21396 -194.117.250.0/23 3175 -194.117.252.0/23 198323 -194.117.254.0/23 199753 -194.118.0.0/16 1901 -194.119.0.0/23 3299 -194.119.2.0/23 3295 -194.119.4.0/24 4755 -194.119.5.0/24 198949 -194.119.6.0/24 55410 -194.119.7.0/24 198949 -194.119.8.0/22 3295 -194.119.12.0/24 45888 -194.119.13.0/24 139061 -194.119.14.0/24 45888 -194.119.15.0/24 139061 -194.119.16.0/23 26083 -194.119.20.0/24 3297 -194.119.22.0/24 3295 -194.119.24.0/23 3299 -194.119.26.0/24 3295 -194.119.27.0/24 3299 -194.119.28.0/22 3299 -194.119.32.0/22 3298 -194.119.36.0/24 3298 -194.119.39.0/24 3299 -194.119.40.0/22 3299 -194.119.45.0/24 3299 -194.119.46.0/23 3299 -194.119.48.0/24 3299 -194.119.49.0/24 3298 -194.119.50.0/24 3299 -194.119.51.0/24 3296 -194.119.52.0/24 3296 -194.119.82.0/23 3296 -194.119.84.0/22 3296 -194.119.88.0/23 3296 -194.119.93.0/24 3296 -194.119.105.0/24 3296 -194.119.106.0/24 3296 -194.119.128.0/18 8426 -194.119.192.0/19 137 -194.119.224.0/19 5432 -194.120.0.0/24 286 -194.120.1.0/24 1136 -194.120.2.0/23 1136 -194.120.4.0/22 1136 -194.120.8.0/21 1136 -194.120.18.0/23 1136 -194.120.20.0/23 1136 -194.120.22.0/23 3320 -194.120.24.0/24 56971 -194.120.25.0/24 1136 -194.120.26.0/23 1136 -194.120.28.0/22 1136 -194.120.32.0/21 1136 -194.120.40.0/24 42652 -194.120.41.0/24 1136 -194.120.42.0/24 1136 -194.120.43.0/24 286 -194.120.44.0/22 1136 -194.120.48.0/22 1136 -194.120.52.0/23 1136 -194.120.54.0/24 1136 -194.120.55.0/24 8874 -194.120.56.0/21 1136 -194.120.64.0/23 1136 -194.120.67.0/24 1136 -194.120.68.0/22 1136 -194.120.72.0/21 1136 -194.120.84.0/23 47340 -194.120.88.0/24 47340 -194.120.104.0/23 3175 -194.120.106.0/23 1136 -194.120.108.0/24 1136 -194.120.109.0/24 48918 -194.120.116.0/24 56971 -194.120.117.0/24 1136 -194.120.118.0/24 1136 -194.120.119.0/24 8928 -194.120.124.0/23 1136 -194.120.126.0/24 3209 -194.120.127.0/24 1136 -194.120.128.0/22 1136 -194.120.132.0/24 1136 -194.120.133.0/24 207645 -194.120.134.0/23 1136 -194.120.136.0/21 1136 -194.120.144.0/24 133115 -194.120.145.0/24 1136 -194.120.146.0/23 1136 -194.120.148.0/23 1136 -194.120.150.0/24 8767 -194.120.151.0/24 1136 -194.120.152.0/21 1136 -194.120.160.0/22 1136 -194.120.164.0/24 133115 -194.120.165.0/24 1136 -194.120.166.0/23 1136 -194.120.168.0/23 1136 -194.120.171.0/24 133115 -194.120.172.0/24 1136 -194.120.173.0/24 12480 -194.120.174.0/23 1136 -194.120.176.0/22 1136 -194.120.180.0/23 1136 -194.120.182.0/23 8881 -194.120.185.0/24 1136 -194.120.186.0/23 1136 -194.120.188.0/24 1136 -194.120.189.0/24 6786 -194.120.190.0/23 1136 -194.120.192.0/20 8569 -194.120.208.0/22 8569 -194.120.212.0/22 35466 -194.120.216.0/21 8569 -194.120.228.0/23 1136 -194.120.230.0/24 133115 -194.120.232.0/23 1136 -194.120.234.0/24 24956 -194.120.235.0/24 1136 -194.120.236.0/22 1136 -194.120.240.0/21 1136 -194.120.249.0/24 3320 -194.120.250.0/23 1136 -194.120.252.0/22 1136 -194.121.0.0/24 21413 -194.121.1.0/24 1136 -194.121.2.0/24 20570 -194.121.3.0/24 1136 -194.121.4.0/22 1136 -194.121.8.0/23 1136 -194.121.10.0/24 1136 -194.121.11.0/24 21161 -194.121.12.0/22 1136 -194.121.16.0/22 1136 -194.121.20.0/23 1136 -194.121.24.0/23 1136 -194.121.26.0/24 205376 -194.121.27.0/24 1136 -194.121.28.0/22 1136 -194.121.32.0/21 1136 -194.121.40.0/22 1136 -194.121.44.0/23 1136 -194.121.46.0/24 3320 -194.121.47.0/24 1136 -194.121.48.0/24 15492 -194.121.50.0/24 6786 -194.121.51.0/24 43260 -194.121.56.0/24 203329 -194.121.57.0/24 1136 -194.121.58.0/24 1136 -194.121.59.0/24 43260 -194.121.60.0/23 1136 -194.121.62.0/23 3320 -194.121.64.0/23 1136 -194.121.66.0/24 202694 -194.121.67.0/24 1136 -194.121.68.0/22 1136 -194.121.72.0/21 1136 -194.121.80.0/21 1136 -194.121.88.0/23 1136 -194.121.90.0/24 3320 -194.121.91.0/24 1136 -194.121.92.0/22 1136 -194.121.96.0/21 1136 -194.121.106.0/23 1136 -194.121.108.0/22 1136 -194.121.112.0/21 1136 -194.121.120.0/23 1136 -194.121.122.0/24 1136 -194.121.123.0/24 286 -194.121.124.0/22 1136 -194.121.128.0/19 1136 -194.121.160.0/21 1136 -194.121.168.0/22 1136 -194.121.172.0/22 3320 -194.121.176.0/20 1136 -194.121.192.0/21 1136 -194.121.200.0/23 1136 -194.121.202.0/24 1136 -194.121.203.0/24 286 -194.121.204.0/22 1136 -194.121.208.0/21 1136 -194.121.216.0/22 1136 -194.121.224.0/20 1136 -194.121.240.0/21 1136 -194.121.248.0/22 1136 -194.121.252.0/23 1136 -194.121.254.0/24 205769 -194.121.255.0/24 1136 -194.122.0.0/18 1136 -194.122.64.0/21 1136 -194.122.72.0/22 1136 -194.122.76.0/22 286 -194.122.80.0/20 1136 -194.122.96.0/19 1136 -194.122.128.0/18 1136 -194.122.192.0/19 1136 -194.122.224.0/20 286 -194.122.240.0/21 1136 -194.122.248.0/22 286 -194.122.252.0/22 1136 -194.123.0.0/18 1136 -194.123.64.0/19 1136 -194.123.96.0/20 1136 -194.123.112.0/21 1136 -194.123.120.0/23 1136 -194.123.122.0/24 286 -194.123.123.0/24 1136 -194.123.124.0/22 1136 -194.123.128.0/19 1136 -194.123.160.0/22 1136 -194.123.164.0/24 286 -194.123.165.0/24 1136 -194.123.166.0/23 1136 -194.123.168.0/21 1136 -194.123.176.0/20 1136 -194.123.192.0/18 1136 -194.124.32.0/22 9009 -194.124.36.0/23 201971 -194.124.40.0/24 393559 -194.124.42.0/24 393559 -194.124.48.0/22 50340 -194.124.52.0/22 9009 -194.124.56.0/22 62235 -194.124.64.0/24 35913 -194.124.65.0/24 40676 -194.124.66.0/23 40676 -194.124.68.0/22 201942 -194.124.72.0/22 202346 -194.124.78.0/23 15585 -194.124.80.0/20 15585 -194.124.96.0/19 15585 -194.124.128.0/21 15585 -194.124.136.0/22 15585 -194.124.140.0/23 15585 -194.124.142.0/23 3303 -194.124.144.0/24 43260 -194.124.145.0/24 6830 -194.124.146.0/23 6830 -194.124.148.0/22 210018 -194.124.152.0/22 51934 -194.124.156.0/23 51934 -194.124.176.0/21 3303 -194.124.187.0/24 6730 -194.124.188.0/24 9255 -194.124.192.0/22 60994 -194.124.196.0/22 30925 -194.124.200.0/24 43260 -194.124.201.0/24 203702 -194.124.202.0/23 203702 -194.124.208.0/24 9044 -194.124.209.0/24 33965 -194.124.217.0/24 8803 -194.124.220.0/22 50411 -194.124.229.0/24 202015 -194.124.230.0/23 48849 -194.124.232.0/23 3303 -194.124.234.0/23 207936 -194.124.236.0/23 207936 -194.124.239.0/24 42831 -194.124.240.0/24 42831 -194.124.241.0/24 206567 -194.124.242.0/24 206567 -194.124.243.0/24 3303 -194.124.244.0/23 18978 -194.124.246.0/24 6830 -194.124.247.0/24 42831 -194.124.248.0/24 42831 -194.124.249.0/24 3303 -194.124.250.0/23 18978 -194.124.252.0/24 34549 -194.124.254.0/24 3303 -194.124.255.0/24 34549 -194.125.0.0/17 2110 -194.125.128.0/18 5466 -194.125.192.0/19 5466 -194.125.224.0/22 50106 -194.125.228.0/22 51933 -194.125.232.0/22 9121 -194.125.236.0/22 50241 -194.125.240.0/23 20777 -194.125.242.0/23 25002 -194.125.244.0/23 20660 -194.125.246.0/23 21346 -194.125.248.0/22 204035 -194.125.252.0/23 6799 -194.125.254.0/23 43274 -194.126.0.0/19 9051 -194.126.32.0/24 25122 -194.126.37.0/24 3225 -194.126.40.0/24 3225 -194.126.42.0/24 24627 -194.126.46.0/24 25122 -194.126.47.0/24 24627 -194.126.48.0/23 24627 -194.126.53.0/24 29357 -194.126.54.0/24 25122 -194.126.63.0/24 3225 -194.126.64.0/19 5413 -194.126.96.0/19 3249 -194.126.128.0/24 48613 -194.126.130.0/24 2830 -194.126.131.0/24 34549 -194.126.136.0/21 9051 -194.126.144.0/23 34960 -194.126.146.0/23 42424 -194.126.148.0/23 31034 -194.126.152.0/22 201508 -194.126.156.0/23 12771 -194.126.158.0/23 35003 -194.126.160.0/22 39337 -194.126.164.0/22 12642 -194.126.168.0/22 35025 -194.126.172.0/23 29802 -194.126.175.0/24 29802 -194.126.176.0/22 44902 -194.126.180.0/22 35004 -194.126.194.0/24 34549 -194.126.195.0/24 29037 -194.126.196.0/24 31400 -194.126.197.0/24 34488 -194.126.198.0/24 3209 -194.126.200.0/24 47302 -194.126.201.0/24 31424 -194.126.203.0/24 34508 -194.126.204.0/24 34605 -194.126.205.0/24 57136 -194.126.206.0/24 51862 -194.126.207.0/24 44033 -194.126.208.0/24 34548 -194.126.209.0/24 28959 -194.126.210.0/24 35596 -194.126.211.0/24 29479 -194.126.212.0/24 1759 -194.126.213.0/24 34522 -194.126.214.0/24 34540 -194.126.216.0/24 34530 -194.126.217.0/24 31216 -194.126.218.0/24 34532 -194.126.220.0/24 34543 -194.126.221.0/24 34635 -194.126.222.0/24 34546 -194.126.223.0/24 51049 -194.126.224.0/24 25256 -194.126.225.0/24 29109 -194.126.226.0/24 30390 -194.126.228.0/24 34564 -194.126.229.0/24 41959 -194.126.230.0/24 33910 -194.126.231.0/24 39358 -194.126.232.0/24 198115 -194.126.233.0/24 50606 -194.126.234.0/24 42553 -194.126.235.0/24 13030 -194.126.236.0/24 12601 -194.126.237.0/24 42366 -194.126.238.0/24 14037 -194.126.239.0/24 34568 -194.126.241.0/24 12945 -194.126.242.0/24 8426 -194.126.243.0/24 39828 -194.126.244.0/24 201805 -194.126.245.0/24 50606 -194.126.246.0/24 34793 -194.126.248.0/24 34735 -194.126.249.0/24 206104 -194.126.250.0/24 3308 -194.126.251.0/24 50606 -194.126.252.0/24 34842 -194.126.253.0/24 39756 -194.126.255.0/24 1241 -194.127.1.0/24 15580 -194.127.2.0/24 15580 -194.127.5.0/24 15580 -194.127.9.0/24 15580 -194.127.11.0/24 15580 -194.127.12.0/24 15580 -194.127.15.0/24 15580 -194.127.19.0/24 15580 -194.127.20.0/22 15580 -194.127.24.0/22 15580 -194.127.28.0/23 15580 -194.127.31.0/24 15580 -194.127.64.0/22 15580 -194.127.80.0/20 15580 -194.127.96.0/24 3209 -194.127.97.0/24 50606 -194.127.102.0/24 33873 -194.127.103.0/24 9145 -194.127.106.0/24 29148 -194.127.107.0/24 3320 -194.127.108.0/22 202354 -194.127.112.0/22 8219 -194.127.120.0/23 3320 -194.127.122.0/24 8767 -194.127.130.0/23 28954 -194.127.132.0/23 8881 -194.127.134.0/24 3320 -194.127.136.0/24 5617 -194.127.138.0/24 48545 -194.127.139.0/24 43916 -194.127.140.0/22 8881 -194.127.144.0/21 8881 -194.127.152.0/23 28954 -194.127.157.0/24 8426 -194.127.158.0/23 57910 -194.127.162.0/23 57910 -194.127.164.0/24 3204 -194.127.165.0/24 35487 -194.127.166.0/24 35487 -194.127.167.0/24 3204 -194.127.171.0/24 16277 -194.127.172.0/23 62240 -194.127.175.0/24 34646 -194.127.176.0/24 3320 -194.127.177.0/24 138698 -194.127.178.0/23 62240 -194.127.180.0/24 41040 -194.127.182.0/24 3320 -194.127.184.0/21 20676 -194.127.195.0/24 3320 -194.127.196.0/24 50782 -194.127.202.0/24 50782 -194.127.203.0/24 8881 -194.127.204.0/23 201339 -194.127.206.0/24 50782 -194.127.208.0/22 20570 -194.127.214.0/24 50782 -194.127.216.0/21 28979 -194.127.224.0/23 31352 -194.127.226.0/24 31352 -194.127.227.0/24 33920 -194.127.228.0/24 8220 -194.127.230.0/24 33920 -194.127.232.0/24 33920 -194.127.234.0/23 41332 -194.127.236.0/23 41332 -194.127.240.0/24 33920 -194.127.248.0/22 202321 -194.127.252.0/23 41332 -194.127.254.0/24 3320 -194.128.0.0/18 702 -194.128.64.0/20 702 -194.128.80.0/22 4589 -194.128.84.0/22 702 -194.128.88.0/21 702 -194.128.96.0/19 702 -194.128.128.0/17 702 -194.129.0.0/16 702 -194.130.0.0/18 702 -194.130.64.0/19 702 -194.130.96.0/21 702 -194.130.104.0/22 30914 -194.130.108.0/22 702 -194.130.112.0/20 702 -194.130.128.0/17 702 -194.131.0.0/16 702 -194.132.6.0/24 198568 -194.132.8.0/24 202188 -194.132.9.0/24 197595 -194.132.11.0/24 42708 -194.132.12.0/22 41340 -194.132.16.0/23 198054 -194.132.18.0/24 198054 -194.132.19.0/24 199520 -194.132.20.0/24 12552 -194.132.22.0/24 3246 -194.132.23.0/24 35041 -194.132.24.0/23 2856 -194.132.26.0/24 12552 -194.132.29.0/24 8473 -194.132.30.0/24 43893 -194.132.31.0/24 42708 -194.132.32.0/24 37560 -194.132.33.0/24 204850 -194.132.34.0/23 204850 -194.132.44.0/23 1257 -194.132.49.0/24 12552 -194.132.50.0/23 12552 -194.132.52.0/24 203471 -194.132.53.0/24 43948 -194.132.54.0/23 1257 -194.132.56.0/24 3246 -194.132.58.0/24 209454 -194.132.61.0/24 12552 -194.132.62.0/23 12552 -194.132.64.0/24 43948 -194.132.65.0/24 3301 -194.132.66.0/23 12552 -194.132.68.0/22 1257 -194.132.76.0/22 203788 -194.132.80.0/22 43893 -194.132.85.0/24 12552 -194.132.87.0/24 3301 -194.132.95.0/24 3301 -194.132.104.0/23 3301 -194.132.106.0/24 3301 -194.132.107.0/24 35041 -194.132.108.0/23 2119 -194.132.110.0/23 12552 -194.132.112.0/24 42708 -194.132.113.0/24 35041 -194.132.114.0/24 3301 -194.132.115.0/24 42708 -194.132.116.0/22 3301 -194.132.120.0/24 43948 -194.132.121.0/24 1299 -194.132.122.0/24 53007 -194.132.123.0/24 36351 -194.132.126.0/23 3246 -194.132.128.0/22 1257 -194.132.132.0/24 34950 -194.132.137.0/24 3301 -194.132.138.0/23 12552 -194.132.143.0/24 62463 -194.132.144.0/23 200134 -194.132.147.0/24 3301 -194.132.148.0/24 204850 -194.132.149.0/24 3246 -194.132.150.0/24 2865 -194.132.156.0/23 47467 -194.132.159.0/24 62463 -194.132.160.0/23 21195 -194.132.164.0/24 57630 -194.132.165.0/24 50989 -194.132.166.0/24 57630 -194.132.174.0/24 51634 -194.132.175.0/24 2119 -194.132.180.0/23 47467 -194.132.182.0/24 3246 -194.132.183.0/24 1257 -194.132.184.0/24 3301 -194.132.186.0/24 57630 -194.132.187.0/24 35041 -194.132.190.0/23 48445 -194.132.192.0/22 5601 -194.132.200.0/22 42708 -194.132.208.0/24 42303 -194.132.209.0/24 8473 -194.132.210.0/23 202296 -194.132.212.0/23 47467 -194.132.214.0/24 198463 -194.132.215.0/24 43948 -194.132.216.0/21 197623 -194.132.224.0/21 48803 -194.132.232.0/21 1257 -194.132.240.0/20 48171 -194.133.0.0/22 5511 -194.133.4.0/24 5511 -194.133.5.0/24 4005 -194.133.6.0/24 5511 -194.133.7.0/24 51964 -194.133.8.0/23 5511 -194.133.10.0/24 51964 -194.133.11.0/24 5511 -194.133.12.0/23 5511 -194.133.14.0/24 5511 -194.133.15.0/24 51964 -194.133.16.0/23 51964 -194.133.18.0/23 6619 -194.133.20.0/23 51964 -194.133.22.0/23 5511 -194.133.24.0/23 5511 -194.133.26.0/24 5511 -194.133.27.0/24 51964 -194.133.28.0/22 5511 -194.133.32.0/21 5511 -194.133.40.0/23 5511 -194.133.42.0/24 5511 -194.133.43.0/24 51964 -194.133.44.0/22 51964 -194.133.48.0/21 5511 -194.133.56.0/23 5511 -194.133.58.0/24 5511 -194.133.59.0/24 51964 -194.133.60.0/23 5511 -194.133.62.0/24 51964 -194.133.63.0/24 5511 -194.133.64.0/24 51964 -194.133.65.0/24 5511 -194.133.66.0/23 5511 -194.133.68.0/22 5511 -194.133.72.0/21 5511 -194.133.80.0/24 5511 -194.133.81.0/24 51964 -194.133.82.0/23 5511 -194.133.84.0/22 5511 -194.133.88.0/21 5511 -194.133.96.0/21 5511 -194.133.104.0/23 5511 -194.133.106.0/24 51964 -194.133.107.0/24 5511 -194.133.108.0/22 5511 -194.133.112.0/23 5511 -194.133.114.0/24 5511 -194.133.115.0/24 51964 -194.133.116.0/22 5511 -194.133.120.0/23 5511 -194.133.122.0/24 37204 -194.133.123.0/24 51964 -194.133.124.0/22 5511 -194.133.128.0/21 5511 -194.133.136.0/23 5511 -194.133.138.0/24 51964 -194.133.139.0/24 5511 -194.133.140.0/22 5511 -194.133.144.0/21 5511 -194.133.152.0/22 5511 -194.133.156.0/23 5511 -194.133.158.0/24 5511 -194.133.159.0/24 37204 -194.133.160.0/19 5511 -194.133.192.0/23 51964 -194.133.194.0/23 5511 -194.133.196.0/22 5511 -194.133.200.0/21 5511 -194.133.208.0/20 5511 -194.133.224.0/19 5511 -194.134.0.0/16 5390 -194.135.0.0/24 12479 -194.135.1.0/24 47203 -194.135.2.0/24 47203 -194.135.3.0/24 12479 -194.135.4.0/22 25513 -194.135.8.0/21 25513 -194.135.16.0/23 47203 -194.135.18.0/24 47203 -194.135.19.0/24 12479 -194.135.20.0/24 47203 -194.135.22.0/24 2118 -194.135.23.0/24 47203 -194.135.24.0/24 47203 -194.135.25.0/24 2118 -194.135.26.0/23 209706 -194.135.28.0/23 12479 -194.135.30.0/24 2118 -194.135.31.0/24 12479 -194.135.32.0/23 47203 -194.135.34.0/24 47203 -194.135.35.0/24 2118 -194.135.36.0/23 47203 -194.135.38.0/24 2118 -194.135.39.0/24 47203 -194.135.40.0/22 25513 -194.135.44.0/23 47203 -194.135.46.0/24 2118 -194.135.47.0/24 59790 -194.135.48.0/22 209519 -194.135.52.0/22 25513 -194.135.56.0/22 12479 -194.135.60.0/22 25513 -194.135.64.0/21 25513 -194.135.72.0/22 25513 -194.135.76.0/22 12479 -194.135.80.0/20 62282 -194.135.96.0/22 25513 -194.135.100.0/24 15756 -194.135.101.0/24 12479 -194.135.102.0/24 12479 -194.135.103.0/24 25227 -194.135.104.0/23 2118 -194.135.108.0/22 25513 -194.135.112.0/22 25513 -194.135.118.0/24 59790 -194.135.119.0/24 16509 -194.135.120.0/22 25513 -194.135.124.0/24 2118 -194.135.125.0/24 12479 -194.135.126.0/23 12479 -194.135.128.0/22 51402 -194.135.132.0/23 209706 -194.135.134.0/24 12479 -194.135.135.0/24 25227 -194.135.136.0/21 60098 -194.135.144.0/21 60098 -194.135.160.0/19 28787 -194.135.192.0/22 60098 -194.135.196.0/22 12479 -194.135.200.0/21 59790 -194.135.208.0/20 25513 -194.135.224.0/20 25513 -194.135.240.0/21 25513 -194.136.0.0/16 719 -194.137.0.0/16 1759 -194.138.12.0/24 8971 -194.138.14.0/24 198573 -194.138.16.0/22 15465 -194.138.20.0/23 198573 -194.138.35.0/24 15465 -194.138.36.0/22 15465 -194.138.40.0/24 15465 -194.138.137.0/24 29063 -194.138.184.0/24 7908 -194.138.185.0/24 9890 -194.138.202.0/24 9805 -194.138.203.0/24 17621 -194.138.240.0/24 9890 -194.138.244.0/24 9890 -194.138.245.0/24 9805 -194.138.248.0/24 56114 -194.139.0.0/23 702 -194.139.2.0/24 702 -194.139.3.0/24 20676 -194.139.4.0/24 3209 -194.139.5.0/24 702 -194.139.6.0/23 198333 -194.139.8.0/21 702 -194.139.16.0/21 702 -194.139.24.0/22 702 -194.139.28.0/23 702 -194.139.30.0/24 8391 -194.139.31.0/24 702 -194.139.32.0/23 702 -194.139.34.0/24 702 -194.139.35.0/24 20647 -194.139.36.0/22 702 -194.139.40.0/21 702 -194.139.48.0/22 702 -194.139.52.0/23 702 -194.139.54.0/24 702 -194.139.55.0/24 8881 -194.139.56.0/21 702 -194.139.64.0/18 702 -194.139.128.0/17 702 -194.140.0.0/20 3324 -194.140.16.0/21 3324 -194.140.32.0/19 3324 -194.140.64.0/19 8216 -194.140.96.0/20 20676 -194.140.112.0/20 41998 -194.140.128.0/19 6739 -194.140.160.0/21 6739 -194.140.168.0/22 6739 -194.140.172.0/24 6739 -194.140.173.0/24 12357 -194.140.174.0/23 6739 -194.140.176.0/20 6739 -194.140.192.0/21 197523 -194.140.208.0/20 57356 -194.140.225.0/24 39899 -194.140.226.0/24 8190 -194.140.227.0/24 41077 -194.140.228.0/24 44341 -194.140.230.0/24 56738 -194.140.231.0/24 58234 -194.140.232.0/24 2860 -194.140.233.0/24 47252 -194.140.235.0/24 208913 -194.140.238.0/24 41159 -194.140.239.0/24 197781 -194.140.240.0/24 41136 -194.140.243.0/24 1257 -194.140.245.0/24 41151 -194.140.246.0/24 41153 -194.140.247.0/24 41156 -194.140.248.0/24 41183 -194.140.250.0/24 41959 -194.140.251.0/24 25180 -194.140.252.0/24 3257 -194.140.254.0/24 41198 -194.140.255.0/24 41178 -194.141.0.0/16 6802 -194.142.0.0/16 1759 -194.143.0.0/17 2119 -194.143.130.0/23 27970 -194.143.132.0/23 197133 -194.143.134.0/23 31400 -194.143.136.0/23 34661 -194.143.138.0/23 34662 -194.143.140.0/23 42867 -194.143.142.0/23 31617 -194.143.144.0/23 13307 -194.143.146.0/23 43668 -194.143.148.0/23 47909 -194.143.150.0/23 42511 -194.143.154.0/23 42004 -194.143.156.0/23 34701 -194.143.158.0/23 34728 -194.143.160.0/19 5413 -194.143.192.0/20 8311 -194.143.208.0/21 8311 -194.143.216.0/22 8311 -194.143.220.0/24 8311 -194.143.221.0/24 203178 -194.143.222.0/23 203178 -194.143.224.0/19 12301 -194.144.0.0/16 12969 -194.145.0.0/20 14340 -194.145.16.0/21 14340 -194.145.24.0/24 24121 -194.145.25.0/24 47886 -194.145.26.0/24 10912 -194.145.27.0/24 7381 -194.145.28.0/24 23686 -194.145.29.0/24 394808 -194.145.30.0/24 21371 -194.145.31.0/24 394808 -194.145.32.0/20 1759 -194.145.48.0/22 1759 -194.145.52.0/24 1759 -194.145.53.0/24 8723 -194.145.54.0/23 8723 -194.145.56.0/23 8723 -194.145.58.0/24 8723 -194.145.63.0/24 197216 -194.145.64.0/20 8735 -194.145.80.0/22 8735 -194.145.84.0/24 47696 -194.145.86.0/24 8735 -194.145.87.0/24 21026 -194.145.88.0/21 21026 -194.145.96.0/20 8766 -194.145.112.0/23 41332 -194.145.114.0/24 25220 -194.145.116.0/24 29108 -194.145.117.0/24 34118 -194.145.118.0/24 34124 -194.145.119.0/24 25525 -194.145.120.0/24 34130 -194.145.121.0/24 9118 -194.145.122.0/23 9182 -194.145.124.0/24 9182 -194.145.125.0/24 39063 -194.145.126.0/24 48210 -194.145.128.0/21 2110 -194.145.136.0/23 29262 -194.145.138.0/24 15924 -194.145.139.0/24 29262 -194.145.140.0/23 6750 -194.145.142.0/23 132422 -194.145.144.0/24 12523 -194.145.146.0/24 12316 -194.145.150.0/23 12817 -194.145.153.0/24 34131 -194.145.154.0/24 59952 -194.145.156.0/24 41509 -194.145.157.0/24 6830 -194.145.158.0/24 34147 -194.145.159.0/24 34176 -194.145.160.0/22 43205 -194.145.164.0/24 49419 -194.145.165.0/24 41063 -194.145.167.0/24 43948 -194.145.168.0/22 25073 -194.145.172.0/22 33907 -194.145.176.0/22 33917 -194.145.180.0/22 24971 -194.145.184.0/22 33923 -194.145.188.0/22 33920 -194.145.194.0/23 39647 -194.145.196.0/23 132422 -194.145.198.0/23 34715 -194.145.200.0/23 29028 -194.145.202.0/24 204453 -194.145.203.0/24 41656 -194.145.204.0/23 35323 -194.145.206.0/23 57547 -194.145.208.0/23 43350 -194.145.214.0/23 34792 -194.145.216.0/23 34786 -194.145.218.0/23 31572 -194.145.220.0/23 41737 -194.145.222.0/23 8190 -194.145.224.0/24 3257 -194.145.225.0/24 200822 -194.145.226.0/24 45012 -194.145.228.0/24 15694 -194.145.229.0/24 34212 -194.145.230.0/24 8881 -194.145.231.0/24 5394 -194.145.232.0/23 34172 -194.145.234.0/24 34172 -194.145.235.0/24 57226 -194.145.238.0/24 34184 -194.145.239.0/24 34191 -194.145.240.0/22 9009 -194.145.244.0/22 202016 -194.145.248.0/22 33837 -194.145.252.0/24 3320 -194.146.4.0/22 59460 -194.146.8.0/22 3292 -194.146.13.0/24 203380 -194.146.14.0/23 35913 -194.146.24.0/23 210329 -194.146.26.0/24 209737 -194.146.28.0/22 49173 -194.146.32.0/22 202352 -194.146.36.0/24 209737 -194.146.37.0/24 3209 -194.146.38.0/23 41436 -194.146.40.0/22 202958 -194.146.47.0/24 209737 -194.146.50.0/24 209737 -194.146.51.0/24 208746 -194.146.54.0/24 8528 -194.146.55.0/24 200555 -194.146.56.0/22 35779 -194.146.62.0/24 197653 -194.146.63.0/24 200555 -194.146.66.0/23 198575 -194.146.68.0/23 34294 -194.146.70.0/24 200555 -194.146.78.0/24 3215 -194.146.84.0/22 132839 -194.146.88.0/22 202862 -194.146.96.0/24 15557 -194.146.99.0/24 200555 -194.146.105.0/24 8674 -194.146.106.0/23 8674 -194.146.109.0/24 15994 -194.146.110.0/24 29496 -194.146.112.0/24 29508 -194.146.113.0/24 30733 -194.146.115.0/24 29546 -194.146.119.0/24 29561 -194.146.120.0/24 29536 -194.146.121.0/24 29533 -194.146.125.0/24 31074 -194.146.126.0/24 51269 -194.146.127.0/24 29396 -194.146.128.0/22 43939 -194.146.132.0/22 29576 -194.146.136.0/22 48006 -194.146.140.0/22 29574 -194.146.148.0/22 29577 -194.146.152.0/24 35197 -194.146.154.0/24 35197 -194.146.156.0/22 202254 -194.146.160.0/22 64451 -194.146.164.0/22 202347 -194.146.168.0/22 29468 -194.146.172.0/22 8426 -194.146.180.0/22 16327 -194.146.184.0/22 8562 -194.146.188.0/24 6768 -194.146.189.0/24 60159 -194.146.190.0/24 6768 -194.146.191.0/24 60159 -194.146.192.0/24 48918 -194.146.196.0/23 3326 -194.146.200.0/22 42574 -194.146.204.0/24 29608 -194.146.205.0/24 201080 -194.146.206.0/23 201080 -194.146.212.0/22 25164 -194.146.216.0/22 29596 -194.146.220.0/22 210219 -194.146.224.0/22 13193 -194.146.228.0/22 20539 -194.146.232.0/22 24750 -194.146.236.0/23 25369 -194.146.238.0/24 25369 -194.146.239.0/24 207655 -194.146.240.0/22 30749 -194.146.244.0/22 2116 -194.146.248.0/22 50606 -194.146.252.0/22 30753 -194.147.0.0/22 24904 -194.147.4.0/22 47987 -194.147.8.0/22 202511 -194.147.12.0/22 28725 -194.147.24.0/22 200345 -194.147.28.0/22 39191 -194.147.32.0/24 51659 -194.147.33.0/24 49392 -194.147.34.0/23 51659 -194.147.36.0/22 210253 -194.147.40.0/22 202332 -194.147.44.0/24 51269 -194.147.46.0/24 206779 -194.147.47.0/24 51269 -194.147.48.0/22 203561 -194.147.52.0/22 3303 -194.147.60.0/23 22744 -194.147.64.0/23 60508 -194.147.66.0/24 6730 -194.147.67.0/24 51269 -194.147.68.0/23 6830 -194.147.70.0/24 48060 -194.147.71.0/24 209916 -194.147.72.0/24 51873 -194.147.74.0/23 49392 -194.147.76.0/23 6730 -194.147.78.0/23 49392 -194.147.80.0/22 210167 -194.147.84.0/22 61400 -194.147.88.0/22 61400 -194.147.92.0/24 58040 -194.147.96.0/24 33965 -194.147.97.0/24 209916 -194.147.102.0/23 3303 -194.147.104.0/24 6730 -194.147.105.0/24 209916 -194.147.106.0/24 51812 -194.147.107.0/24 35387 -194.147.108.0/24 198547 -194.147.109.0/24 209916 -194.147.110.0/23 57380 -194.147.112.0/24 6830 -194.147.113.0/24 21232 -194.147.115.0/24 52000 -194.147.116.0/22 202345 -194.147.120.0/23 59816 -194.147.122.0/24 59816 -194.147.123.0/24 57014 -194.147.124.0/22 39190 -194.147.128.0/22 31276 -194.147.133.0/24 28918 -194.147.134.0/23 3303 -194.147.136.0/24 202261 -194.147.138.0/24 207465 -194.147.139.0/24 10494 -194.147.140.0/24 47987 -194.147.141.0/24 3303 -194.147.142.0/24 47987 -194.147.144.0/22 48146 -194.147.149.0/24 52000 -194.147.152.0/22 29075 -194.147.156.0/22 44075 -194.147.160.0/22 205393 -194.147.164.0/22 202391 -194.147.168.0/23 205393 -194.147.172.0/24 206120 -194.147.174.0/23 12897 -194.147.176.0/23 197312 -194.147.192.0/22 28686 -194.147.196.0/22 202405 -194.147.200.0/21 202405 -194.147.208.0/23 42662 -194.147.227.0/24 206120 -194.147.228.0/24 206120 -194.147.229.0/24 3303 -194.147.234.0/23 60221 -194.147.236.0/23 60221 -194.147.238.0/23 12897 -194.147.241.0/24 59455 -194.147.242.0/23 205199 -194.147.244.0/24 59455 -194.147.245.0/24 39381 -194.147.246.0/24 197733 -194.147.247.0/24 209794 -194.147.249.0/24 198667 -194.147.250.0/23 205199 -194.147.254.0/24 197312 -194.147.255.0/24 59455 -194.148.0.0/16 12350 -194.149.0.0/20 5588 -194.149.16.0/21 5588 -194.149.24.0/23 21186 -194.149.26.0/23 5588 -194.149.28.0/22 5588 -194.149.32.0/22 5483 -194.149.36.0/23 5483 -194.149.38.0/23 30723 -194.149.40.0/22 5483 -194.149.44.0/23 5483 -194.149.46.0/24 16015 -194.149.47.0/24 5483 -194.149.48.0/23 16280 -194.149.50.0/24 16280 -194.149.51.0/24 5483 -194.149.52.0/22 5483 -194.149.56.0/21 5483 -194.149.66.0/24 9056 -194.149.72.0/22 9192 -194.149.76.0/22 12415 -194.149.80.0/21 30800 -194.149.88.0/24 42986 -194.149.89.0/24 59455 -194.149.90.0/24 33842 -194.149.92.0/24 197222 -194.149.94.0/24 51270 -194.149.95.0/24 8662 -194.149.96.0/19 5588 -194.149.128.0/22 5379 -194.149.132.0/23 5379 -194.149.134.0/24 5379 -194.149.135.0/24 52188 -194.149.136.0/23 52188 -194.149.138.0/24 52188 -194.149.139.0/24 5379 -194.149.140.0/22 5379 -194.149.144.0/20 5379 -194.149.192.0/19 6739 -194.149.224.0/22 15508 -194.149.228.0/22 8535 -194.149.232.0/23 15515 -194.149.234.0/23 15672 -194.149.240.0/24 21021 -194.149.241.0/24 201674 -194.149.242.0/24 199194 -194.149.243.0/24 15404 -194.149.246.0/23 15590 -194.149.248.0/21 15590 -194.150.0.0/18 3257 -194.150.64.0/22 2586 -194.150.68.0/22 206495 -194.150.72.0/24 60140 -194.150.73.0/24 43789 -194.150.74.0/23 43789 -194.150.80.0/22 31450 -194.150.84.0/22 39543 -194.150.88.0/22 31656 -194.150.92.0/22 25091 -194.150.100.0/22 33838 -194.150.104.0/22 50790 -194.150.108.0/22 31590 -194.150.112.0/22 48854 -194.150.116.0/22 31293 -194.150.120.0/22 29527 -194.150.128.0/21 12846 -194.150.136.0/22 12846 -194.150.140.0/24 12389 -194.150.141.0/24 12846 -194.150.142.0/23 12846 -194.150.144.0/20 12846 -194.150.160.0/23 47538 -194.150.164.0/23 29619 -194.150.168.0/23 250 -194.150.170.0/23 198035 -194.150.172.0/23 31352 -194.150.174.0/23 33978 -194.150.176.0/23 33967 -194.150.179.0/24 34665 -194.150.182.0/23 33981 -194.150.184.0/23 24709 -194.150.186.0/23 33971 -194.150.188.0/23 25260 -194.150.190.0/23 33988 -194.150.194.0/23 12703 -194.150.196.0/23 199846 -194.150.200.0/23 48294 -194.150.202.0/23 33888 -194.150.206.0/23 33869 -194.150.208.0/23 21155 -194.150.212.0/23 25225 -194.150.214.0/23 206873 -194.150.216.0/23 50369 -194.150.219.0/24 33914 -194.150.220.0/23 12695 -194.150.222.0/23 52194 -194.150.224.0/23 34762 -194.150.226.0/23 12611 -194.150.228.0/23 8972 -194.150.230.0/23 15694 -194.150.232.0/23 31664 -194.150.234.0/23 206873 -194.150.236.0/23 44976 -194.150.238.0/23 43939 -194.150.240.0/23 31671 -194.150.242.0/23 31676 -194.150.244.0/23 31004 -194.150.246.0/23 31683 -194.150.248.0/23 35206 -194.150.250.0/23 41508 -194.150.252.0/23 33854 -194.150.254.0/23 49478 -194.151.0.0/21 1136 -194.151.8.0/24 1136 -194.151.9.0/24 31537 -194.151.10.0/23 1136 -194.151.12.0/24 197727 -194.151.13.0/24 1136 -194.151.14.0/23 1136 -194.151.16.0/20 1136 -194.151.32.0/19 1136 -194.151.64.0/20 1136 -194.151.80.0/22 1136 -194.151.84.0/24 1136 -194.151.85.0/24 197727 -194.151.86.0/24 197727 -194.151.87.0/24 1136 -194.151.88.0/21 1136 -194.151.96.0/19 1136 -194.151.128.0/18 1136 -194.151.192.0/21 1136 -194.151.200.0/23 1136 -194.151.202.0/24 1136 -194.151.203.0/24 286 -194.151.204.0/22 1136 -194.151.208.0/20 1136 -194.151.224.0/19 1136 -194.152.0.0/19 3212 -194.152.32.0/23 12993 -194.152.34.0/23 47655 -194.152.36.0/23 47237 -194.152.38.0/23 3292 -194.152.40.0/23 702 -194.152.42.0/23 47220 -194.152.44.0/23 47869 -194.152.46.0/23 47223 -194.152.48.0/23 47224 -194.152.50.0/23 47275 -194.152.52.0/24 51430 -194.152.53.0/24 205353 -194.152.54.0/23 47488 -194.152.56.0/23 199428 -194.152.58.0/23 200999 -194.152.60.0/23 47281 -194.152.62.0/23 47243 -194.152.64.0/19 1273 -194.152.96.0/19 12793 -194.152.128.0/21 3244 -194.152.136.0/22 3244 -194.152.140.0/23 197248 -194.152.142.0/23 3244 -194.152.144.0/24 29278 -194.152.145.0/24 3244 -194.152.146.0/23 3244 -194.152.148.0/22 3244 -194.152.152.0/21 3244 -194.152.160.0/19 1901 -194.152.192.0/24 5391 -194.152.193.0/24 207541 -194.152.194.0/23 5391 -194.152.196.0/22 5391 -194.152.200.0/21 5391 -194.152.208.0/22 5391 -194.152.212.0/24 5391 -194.152.213.0/24 204163 -194.152.214.0/24 5391 -194.152.215.0/24 197823 -194.152.216.0/24 5391 -194.152.217.0/24 206997 -194.152.218.0/23 5391 -194.152.220.0/22 5391 -194.152.224.0/21 5391 -194.152.232.0/23 15719 -194.152.234.0/23 5391 -194.152.236.0/23 5391 -194.152.238.0/24 204163 -194.152.239.0/24 5391 -194.152.240.0/20 5391 -194.153.0.0/19 5413 -194.153.32.0/19 25176 -194.153.64.0/21 25176 -194.153.74.0/24 12666 -194.153.78.0/24 47632 -194.153.79.0/24 12509 -194.153.83.0/24 48468 -194.153.85.0/24 5532 -194.153.86.0/24 3320 -194.153.87.0/24 29551 -194.153.88.0/23 12566 -194.153.90.0/24 12566 -194.153.91.0/24 38982 -194.153.92.0/24 12566 -194.153.93.0/24 24953 -194.153.94.0/24 15576 -194.153.96.0/24 559 -194.153.97.0/24 12566 -194.153.98.0/24 15830 -194.153.99.0/24 208164 -194.153.100.0/24 9145 -194.153.101.0/24 34886 -194.153.106.0/24 43236 -194.153.107.0/24 59471 -194.153.108.0/24 51366 -194.153.110.0/24 49566 -194.153.111.0/24 197458 -194.153.112.0/24 41184 -194.153.113.0/24 41958 -194.153.114.0/24 41961 -194.153.115.0/24 15618 -194.153.117.0/24 31477 -194.153.118.0/24 41990 -194.153.119.0/24 41966 -194.153.120.0/21 25522 -194.153.128.0/24 12986 -194.153.129.0/24 13027 -194.153.131.0/24 13060 -194.153.132.0/24 13200 -194.153.133.0/24 208164 -194.153.134.0/24 24748 -194.153.136.0/21 9090 -194.153.144.0/24 9090 -194.153.145.0/24 13147 -194.153.146.0/24 20849 -194.153.147.0/24 12843 -194.153.148.0/23 13202 -194.153.150.0/24 16151 -194.153.151.0/24 8319 -194.153.155.0/24 208164 -194.153.170.0/24 208164 -194.153.171.0/24 13244 -194.153.172.0/22 21176 -194.153.176.0/21 15600 -194.153.184.0/24 198567 -194.153.186.0/24 198018 -194.153.187.0/24 48769 -194.153.188.0/23 31736 -194.153.190.0/23 28801 -194.153.192.0/20 15589 -194.153.208.0/22 15589 -194.153.212.0/23 15589 -194.153.214.0/24 8784 -194.153.217.0/24 16099 -194.153.218.0/24 44934 -194.153.219.0/24 6733 -194.153.224.0/24 8708 -194.153.226.0/23 8708 -194.153.230.0/23 8708 -194.153.232.0/24 15471 -194.153.234.0/24 12302 -194.153.237.0/24 6663 -194.153.238.0/24 9050 -194.153.239.0/24 8708 -194.153.240.0/24 12842 -194.153.242.0/23 8708 -194.153.244.0/24 6830 -194.153.245.0/24 8708 -194.153.246.0/24 6663 -194.153.247.0/24 39737 -194.153.248.0/23 8708 -194.153.251.0/24 49023 -194.153.254.0/24 8751 -194.154.0.0/19 5503 -194.154.32.0/23 34649 -194.154.34.0/23 8897 -194.154.36.0/22 8897 -194.154.40.0/21 8897 -194.154.48.0/20 8897 -194.154.64.0/19 3216 -194.154.96.0/19 4589 -194.154.128.0/21 5425 -194.154.136.0/24 8544 -194.154.137.0/24 5425 -194.154.138.0/23 5425 -194.154.140.0/23 5425 -194.154.142.0/23 8544 -194.154.144.0/24 8544 -194.154.145.0/24 5425 -194.154.146.0/24 5425 -194.154.147.0/24 8544 -194.154.148.0/23 5425 -194.154.150.0/24 5425 -194.154.151.0/24 16229 -194.154.152.0/22 5425 -194.154.156.0/24 8544 -194.154.157.0/24 5425 -194.154.158.0/24 8544 -194.154.159.0/24 5425 -194.154.160.0/19 5413 -194.154.192.0/21 6661 -194.154.200.0/22 6661 -194.154.204.0/24 6661 -194.154.205.0/24 25094 -194.154.206.0/23 6661 -194.154.208.0/20 6661 -194.154.224.0/19 6855 -194.155.130.0/23 25180 -194.156.0.0/24 49505 -194.156.1.0/24 34665 -194.156.3.0/24 42312 -194.156.7.0/24 200969 -194.156.8.0/22 201333 -194.156.12.0/24 2386 -194.156.14.0/24 2687 -194.156.16.0/22 197295 -194.156.20.0/23 29008 -194.156.24.0/24 206086 -194.156.26.0/24 34665 -194.156.27.0/24 49505 -194.156.28.0/22 202336 -194.156.32.0/21 8569 -194.156.40.0/22 39290 -194.156.44.0/22 28879 -194.156.48.0/21 39290 -194.156.56.0/22 39290 -194.156.60.0/22 23985 -194.156.64.0/24 200904 -194.156.67.0/24 209482 -194.156.68.0/23 5578 -194.156.72.0/22 209764 -194.156.80.0/23 47116 -194.156.84.0/22 58269 -194.156.88.0/24 199775 -194.156.92.0/24 34665 -194.156.93.0/24 12722 -194.156.94.0/24 12722 -194.156.95.0/24 51167 -194.156.96.0/22 49392 -194.156.100.0/22 48430 -194.156.104.0/22 49505 -194.156.108.0/24 41327 -194.156.109.0/24 12874 -194.156.110.0/24 41327 -194.156.111.0/24 12874 -194.156.112.0/22 23338 -194.156.116.0/22 34665 -194.156.120.0/23 49392 -194.156.122.0/24 34665 -194.156.123.0/24 204941 -194.156.124.0/23 35624 -194.156.126.0/24 49981 -194.156.127.0/24 12722 -194.156.128.0/22 3320 -194.156.132.0/23 40065 -194.156.135.0/24 3320 -194.156.136.0/24 42366 -194.156.137.0/24 18530 -194.156.138.0/23 18530 -194.156.140.0/22 200312 -194.156.145.0/24 3320 -194.156.146.0/23 8319 -194.156.148.0/24 3320 -194.156.152.0/23 41514 -194.156.154.0/24 207193 -194.156.155.0/24 57695 -194.156.156.0/24 200325 -194.156.157.0/24 64021 -194.156.158.0/24 202301 -194.156.159.0/24 60945 -194.156.161.0/24 15590 -194.156.162.0/23 57695 -194.156.165.0/24 38920 -194.156.166.0/23 57641 -194.156.172.0/24 41587 -194.156.175.0/24 29405 -194.156.176.0/22 62416 -194.156.180.0/22 60501 -194.156.186.0/23 3320 -194.156.188.0/24 29405 -194.156.189.0/24 9211 -194.156.190.0/23 56911 -194.156.198.0/23 56911 -194.156.200.0/23 12668 -194.156.202.0/23 47314 -194.156.204.0/23 12668 -194.156.206.0/24 8767 -194.156.207.0/24 29405 -194.156.208.0/24 42652 -194.156.209.0/24 21272 -194.156.210.0/23 209081 -194.156.212.0/22 202333 -194.156.216.0/21 8881 -194.156.224.0/22 35913 -194.156.228.0/22 9009 -194.156.232.0/23 3209 -194.156.234.0/24 12843 -194.156.235.0/24 29405 -194.156.236.0/22 206163 -194.156.240.0/22 29239 -194.156.244.0/23 29239 -194.156.246.0/24 15404 -194.156.247.0/24 29239 -194.156.248.0/22 200333 -194.156.252.0/22 196838 -194.157.0.0/16 719 -194.158.0.0/20 3257 -194.158.16.0/21 3257 -194.158.24.0/23 3257 -194.158.26.0/24 3291 -194.158.27.0/24 3257 -194.158.28.0/22 3257 -194.158.32.0/19 5532 -194.158.64.0/19 6752 -194.158.96.0/19 5410 -194.158.128.0/19 5403 -194.158.160.0/19 8426 -194.158.192.0/23 6697 -194.158.194.0/23 12406 -194.158.196.0/22 6697 -194.158.200.0/21 6697 -194.158.208.0/20 6697 -194.158.224.0/19 6730 -194.159.0.0/23 2529 -194.159.2.0/24 1273 -194.159.3.0/24 2529 -194.159.4.0/22 2529 -194.159.8.0/21 2529 -194.159.16.0/20 2529 -194.159.32.0/19 2529 -194.159.64.0/21 2529 -194.159.72.0/23 5417 -194.159.74.0/23 2529 -194.159.76.0/22 2529 -194.159.80.0/20 2529 -194.159.96.0/21 2529 -194.159.104.0/23 2529 -194.159.106.0/23 1273 -194.159.108.0/22 2529 -194.159.112.0/20 2529 -194.159.128.0/24 1273 -194.159.129.0/24 2529 -194.159.130.0/23 2529 -194.159.132.0/22 1273 -194.159.136.0/23 1273 -194.159.138.0/23 2529 -194.159.140.0/22 2529 -194.159.144.0/20 2529 -194.159.160.0/20 2529 -194.159.176.0/21 2529 -194.159.184.0/22 2529 -194.159.188.0/22 1273 -194.159.192.0/18 2529 -194.160.0.0/16 2607 -194.161.154.0/24 2686 -194.161.200.0/23 20057 -194.161.216.0/22 2686 -194.162.0.0/16 12312 -194.163.0.0/16 6659 -194.164.0.0/16 8897 -194.165.0.0/23 30768 -194.165.2.0/23 48677 -194.165.6.0/23 25269 -194.165.8.0/23 51068 -194.165.12.0/23 56670 -194.165.14.0/23 43702 -194.165.18.0/23 48725 -194.165.20.0/23 25513 -194.165.22.0/23 196641 -194.165.24.0/23 5531 -194.165.28.0/23 52215 -194.165.30.0/23 35162 -194.165.34.0/24 8315 -194.165.36.0/24 2830 -194.165.40.0/24 39209 -194.165.41.0/24 39219 -194.165.42.0/24 42976 -194.165.44.0/24 51529 -194.165.45.0/24 25221 -194.165.46.0/24 39222 -194.165.47.0/24 5610 -194.165.48.0/24 48534 -194.165.49.0/24 31178 -194.165.50.0/24 198274 -194.165.51.0/24 34762 -194.165.52.0/24 5404 -194.165.53.0/24 57313 -194.165.54.0/24 39243 -194.165.55.0/24 49522 -194.165.57.0/24 5610 -194.165.59.0/24 1257 -194.165.60.0/24 29676 -194.165.61.0/24 39254 -194.165.62.0/24 39248 -194.165.63.0/24 29632 -194.165.64.0/19 4589 -194.165.96.0/19 5603 -194.165.128.0/23 8376 -194.165.130.0/24 8376 -194.165.131.0/24 59451 -194.165.132.0/22 8376 -194.165.136.0/23 8376 -194.165.138.0/24 8376 -194.165.140.0/22 8376 -194.165.144.0/20 8376 -194.165.160.0/19 2110 -194.165.192.0/19 8897 -194.165.224.0/19 12501 -194.166.0.0/16 1901 -194.167.0.0/18 2200 -194.167.64.0/19 2200 -194.167.96.0/22 2200 -194.167.100.0/23 2200 -194.167.102.0/24 2200 -194.167.103.0/24 2470 -194.167.104.0/21 2200 -194.167.112.0/20 2200 -194.167.128.0/21 2200 -194.167.136.0/22 2200 -194.167.140.0/23 2200 -194.167.142.0/24 2470 -194.167.143.0/24 2200 -194.167.144.0/20 2200 -194.167.160.0/19 2200 -194.167.192.0/18 2200 -194.168.0.0/16 5089 -194.169.0.0/22 29575 -194.169.18.0/24 703 -194.169.22.0/24 17916 -194.169.32.0/20 8190 -194.169.51.0/24 208764 -194.169.52.0/24 3209 -194.169.54.0/23 3204 -194.169.56.0/22 48642 -194.169.60.0/22 200318 -194.169.69.0/24 2856 -194.169.79.0/24 2856 -194.169.80.0/24 42831 -194.169.84.0/22 61400 -194.169.88.0/23 35761 -194.169.90.0/24 35761 -194.169.98.0/23 10753 -194.169.103.0/24 4445 -194.169.104.0/23 10753 -194.169.110.0/24 3356 -194.169.120.0/23 42724 -194.169.122.0/23 51559 -194.169.126.0/24 61134 -194.169.129.0/24 5089 -194.169.130.0/23 5089 -194.169.132.0/22 5089 -194.169.136.0/21 5089 -194.169.144.0/21 5089 -194.169.152.0/22 5089 -194.169.156.0/23 5089 -194.169.158.0/24 5089 -194.169.160.0/22 61400 -194.169.164.0/22 39237 -194.169.176.0/22 34659 -194.169.180.0/23 3214 -194.169.184.0/22 202047 -194.169.190.0/24 204861 -194.169.191.0/24 39815 -194.169.192.0/24 31147 -194.169.193.0/24 204861 -194.169.194.0/24 31273 -194.169.195.0/24 15533 -194.169.196.0/24 204861 -194.169.197.0/24 41866 -194.169.198.0/24 61333 -194.169.200.0/24 16051 -194.169.201.0/24 49928 -194.169.203.0/24 47833 -194.169.204.0/24 44723 -194.169.205.0/24 42051 -194.169.206.0/24 42054 -194.169.207.0/24 42052 -194.169.208.0/24 12859 -194.169.209.0/24 42026 -194.169.210.0/24 34877 -194.169.211.0/24 199610 -194.169.213.0/24 204861 -194.169.214.0/24 49537 -194.169.215.0/24 50271 -194.169.216.0/24 50943 -194.169.218.0/24 199330 -194.169.219.0/24 3303 -194.169.220.0/24 8308 -194.169.221.0/24 42046 -194.169.223.0/24 39251 -194.169.224.0/24 5588 -194.169.225.0/24 49232 -194.169.226.0/24 202860 -194.169.227.0/24 41079 -194.169.228.0/24 49715 -194.169.229.0/24 15694 -194.169.230.0/24 39251 -194.169.231.0/24 41901 -194.169.232.0/24 42070 -194.169.233.0/24 42073 -194.169.235.0/24 42094 -194.169.236.0/24 12831 -194.169.237.0/24 39251 -194.169.238.0/24 41834 -194.169.239.0/24 3209 -194.169.240.0/24 43311 -194.169.241.0/24 42107 -194.169.242.0/24 39251 -194.169.243.0/24 30880 -194.169.245.0/24 47987 -194.169.246.0/24 5404 -194.169.247.0/24 30855 -194.169.248.0/24 24957 -194.169.249.0/24 8361 -194.169.250.0/24 34629 -194.169.251.0/24 12611 -194.169.252.0/24 197376 -194.169.253.0/24 47987 -194.169.254.0/24 6908 -194.169.255.0/24 199161 -194.170.0.0/16 5384 -194.171.0.0/16 1103 -194.172.0.0/19 702 -194.172.32.0/20 702 -194.172.48.0/21 702 -194.172.56.0/23 702 -194.172.58.0/24 12480 -194.172.59.0/24 702 -194.172.60.0/22 702 -194.172.64.0/18 702 -194.172.128.0/19 702 -194.172.160.0/24 197269 -194.172.161.0/24 702 -194.172.162.0/23 702 -194.172.164.0/22 702 -194.172.168.0/21 702 -194.172.176.0/20 702 -194.172.192.0/18 702 -194.173.0.0/19 702 -194.173.32.0/21 702 -194.173.40.0/22 702 -194.173.44.0/23 702 -194.173.46.0/24 702 -194.173.47.0/24 15404 -194.173.48.0/20 702 -194.173.64.0/22 702 -194.173.68.0/23 702 -194.173.70.0/24 3209 -194.173.71.0/24 702 -194.173.72.0/21 702 -194.173.80.0/20 702 -194.173.96.0/19 702 -194.173.128.0/20 702 -194.173.144.0/21 702 -194.173.152.0/22 702 -194.173.156.0/23 702 -194.173.158.0/24 702 -194.173.159.0/24 197491 -194.173.160.0/21 702 -194.173.168.0/24 702 -194.173.169.0/24 8426 -194.173.170.0/23 702 -194.173.172.0/23 702 -194.173.174.0/23 12655 -194.173.176.0/24 702 -194.173.177.0/24 197491 -194.173.178.0/23 702 -194.173.180.0/22 702 -194.173.184.0/21 702 -194.173.192.0/18 702 -194.174.0.0/18 702 -194.174.64.0/21 702 -194.174.72.0/22 198311 -194.174.76.0/23 198311 -194.174.78.0/24 8881 -194.174.79.0/24 198311 -194.174.80.0/20 702 -194.174.96.0/19 702 -194.174.128.0/19 702 -194.174.160.0/21 702 -194.174.168.0/22 8881 -194.174.172.0/22 43978 -194.174.176.0/20 702 -194.174.192.0/20 702 -194.174.208.0/22 702 -194.174.212.0/23 197491 -194.174.214.0/23 702 -194.174.216.0/21 197491 -194.174.224.0/19 702 -194.175.0.0/18 702 -194.175.64.0/19 702 -194.175.96.0/21 702 -194.175.104.0/22 702 -194.175.108.0/23 702 -194.175.110.0/24 197491 -194.175.111.0/24 702 -194.175.112.0/21 702 -194.175.120.0/23 197491 -194.175.122.0/23 702 -194.175.124.0/22 702 -194.175.128.0/17 702 -194.176.0.0/19 5517 -194.176.32.0/23 43811 -194.176.34.0/24 8764 -194.176.35.0/24 43811 -194.176.36.0/24 43811 -194.176.37.0/24 8764 -194.176.38.0/23 8764 -194.176.40.0/21 8764 -194.176.48.0/22 8764 -194.176.52.0/23 8764 -194.176.54.0/23 43811 -194.176.57.0/24 8764 -194.176.58.0/24 15995 -194.176.59.0/24 8764 -194.176.60.0/24 24984 -194.176.61.0/24 8764 -194.176.62.0/23 8764 -194.176.64.0/19 6067 -194.176.96.0/24 13116 -194.176.97.0/24 41305 -194.176.100.0/24 199825 -194.176.103.0/24 12582 -194.176.104.0/24 41294 -194.176.105.0/24 41373 -194.176.107.0/24 47987 -194.176.108.0/24 199526 -194.176.109.0/24 48461 -194.176.110.0/24 41035 -194.176.111.0/24 41329 -194.176.112.0/24 15822 -194.176.113.0/24 20506 -194.176.114.0/24 21087 -194.176.116.0/24 15576 -194.176.117.0/24 47987 -194.176.118.0/24 49352 -194.176.119.0/24 15954 -194.176.121.0/24 3320 -194.176.123.0/24 62214 -194.176.124.0/24 60610 -194.176.125.0/24 197282 -194.176.126.0/24 34606 -194.176.128.0/19 1273 -194.176.162.0/24 20879 -194.176.164.0/22 12675 -194.176.168.0/22 15520 -194.176.172.0/24 15520 -194.176.173.0/24 8708 -194.176.176.0/24 41806 -194.176.185.0/24 16157 -194.176.186.0/24 28743 -194.176.189.0/24 21462 -194.176.190.0/24 42731 -194.176.191.0/24 6830 -194.176.192.0/19 49572 -194.176.224.0/19 5483 -194.177.0.0/24 48664 -194.177.1.0/24 43880 -194.177.2.0/23 48664 -194.177.4.0/22 29305 -194.177.8.0/22 48518 -194.177.12.0/22 50035 -194.177.16.0/22 35560 -194.177.20.0/22 199274 -194.177.24.0/22 20934 -194.177.28.0/22 48790 -194.177.32.0/19 30889 -194.177.64.0/19 16076 -194.177.96.0/19 3313 -194.177.128.0/19 6798 -194.177.160.0/19 1273 -194.177.192.0/19 5408 -194.177.224.0/19 8818 -194.178.0.0/16 702 -194.179.0.0/19 3352 -194.179.32.0/22 3352 -194.179.36.0/24 43697 -194.179.37.0/24 3352 -194.179.38.0/23 3352 -194.179.40.0/24 3352 -194.179.41.0/24 25508 -194.179.42.0/23 3352 -194.179.44.0/22 3352 -194.179.48.0/20 3352 -194.179.64.0/19 3352 -194.179.96.0/23 3352 -194.179.98.0/23 6813 -194.179.100.0/22 3352 -194.179.104.0/21 3352 -194.179.112.0/21 3352 -194.179.120.0/23 3352 -194.179.122.0/24 3352 -194.179.123.0/24 209774 -194.179.124.0/22 3352 -194.179.128.0/17 5382 -194.180.0.0/22 3278 -194.180.4.0/24 702 -194.180.8.0/22 202326 -194.180.12.0/24 62214 -194.180.14.0/24 60400 -194.180.15.0/24 51402 -194.180.16.0/24 62214 -194.180.18.0/24 13101 -194.180.19.0/24 62214 -194.180.21.0/24 3320 -194.180.28.0/22 9022 -194.180.32.0/24 43350 -194.180.36.0/24 393559 -194.180.40.0/22 51018 -194.180.44.0/22 210163 -194.180.48.0/22 52055 -194.180.53.0/24 8881 -194.180.54.0/24 3320 -194.180.56.0/22 49651 -194.180.80.0/24 199877 -194.180.84.0/23 199877 -194.180.86.0/24 199877 -194.180.108.0/23 200750 -194.180.110.0/24 57844 -194.180.114.0/24 3320 -194.180.115.0/24 57844 -194.180.116.0/22 50796 -194.180.128.0/23 20676 -194.180.130.0/24 3209 -194.180.131.0/24 20676 -194.180.132.0/22 20676 -194.180.136.0/24 197965 -194.180.137.0/24 8447 -194.180.142.0/23 20676 -194.180.150.0/24 57844 -194.180.152.0/23 3320 -194.180.154.0/24 57844 -194.180.155.0/24 25394 -194.180.156.0/24 3320 -194.180.157.0/24 39798 -194.180.158.0/24 39798 -194.180.160.0/21 9063 -194.180.169.0/24 20677 -194.180.170.0/23 200750 -194.180.173.0/24 3320 -194.180.174.0/24 39798 -194.180.175.0/24 3320 -194.180.176.0/22 35913 -194.180.180.0/22 200331 -194.180.184.0/22 21396 -194.180.190.0/24 3320 -194.180.191.0/24 39798 -194.180.194.0/24 20676 -194.180.199.0/24 8823 -194.180.201.0/24 3246 -194.180.204.0/24 12843 -194.180.208.0/23 47987 -194.180.210.0/23 3320 -194.180.212.0/22 3320 -194.180.217.0/24 206899 -194.180.218.0/24 206899 -194.180.220.0/22 39507 -194.180.224.0/24 44685 -194.180.225.0/24 3257 -194.180.228.0/22 29513 -194.180.232.0/23 33657 -194.180.236.0/23 33657 -194.180.239.0/24 16205 -194.180.252.0/22 15590 -194.181.0.0/20 8308 -194.181.16.0/21 8308 -194.181.24.0/22 8308 -194.181.28.0/23 8308 -194.181.30.0/24 8308 -194.181.31.0/24 60877 -194.181.32.0/23 8308 -194.181.34.0/24 199436 -194.181.35.0/24 197494 -194.181.36.0/23 8308 -194.181.38.0/24 201448 -194.181.39.0/24 8308 -194.181.40.0/22 8308 -194.181.44.0/24 202600 -194.181.45.0/24 203508 -194.181.46.0/24 203291 -194.181.47.0/24 207105 -194.181.48.0/20 8308 -194.181.64.0/23 8308 -194.181.66.0/24 8308 -194.181.67.0/24 202854 -194.181.68.0/22 8308 -194.181.72.0/21 8308 -194.181.80.0/20 8308 -194.181.96.0/20 8308 -194.181.112.0/23 8308 -194.181.114.0/24 202226 -194.181.115.0/24 8308 -194.181.116.0/22 8308 -194.181.120.0/21 8308 -194.181.128.0/21 8308 -194.181.136.0/22 8308 -194.181.140.0/23 8308 -194.181.142.0/24 8308 -194.181.143.0/24 210220 -194.181.144.0/20 8308 -194.181.160.0/20 8308 -194.181.176.0/24 8308 -194.181.177.0/24 199648 -194.181.178.0/23 8308 -194.181.180.0/22 8308 -194.181.184.0/21 8308 -194.181.192.0/18 8308 -194.182.0.0/18 42525 -194.182.64.0/19 24806 -194.182.96.0/21 42525 -194.182.104.0/22 200185 -194.182.108.0/24 3240 -194.182.109.0/24 58282 -194.182.110.0/23 31034 -194.182.112.0/20 60032 -194.182.128.0/20 3292 -194.182.144.0/21 3292 -194.182.152.0/22 31027 -194.182.160.0/19 61098 -194.182.192.0/19 51978 -194.182.224.0/21 2116 -194.182.232.0/21 3292 -194.182.240.0/20 3292 -194.183.0.0/19 5394 -194.183.32.0/22 20804 -194.183.36.0/23 41809 -194.183.38.0/23 20804 -194.183.40.0/22 20804 -194.183.44.0/22 60468 -194.183.48.0/21 20804 -194.183.56.0/22 20804 -194.183.60.0/23 50625 -194.183.62.0/24 41809 -194.183.63.0/24 20804 -194.183.64.0/19 15433 -194.183.96.0/21 3257 -194.183.104.0/22 8928 -194.183.108.0/22 3257 -194.183.112.0/20 3257 -194.183.128.0/19 5385 -194.183.160.0/20 12963 -194.183.176.0/21 12963 -194.183.184.0/23 12963 -194.183.186.0/24 201920 -194.183.187.0/24 202221 -194.183.188.0/23 12963 -194.183.190.0/24 60298 -194.183.191.0/24 12963 -194.183.192.0/19 15557 -194.183.224.0/19 5463 -194.184.0.0/17 3269 -194.184.128.0/18 3269 -194.184.192.0/21 3269 -194.184.200.0/22 3269 -194.184.204.0/24 3269 -194.184.205.0/24 20746 -194.184.206.0/23 3269 -194.184.208.0/20 3269 -194.184.224.0/19 3269 -194.185.0.0/19 3313 -194.185.32.0/21 3313 -194.185.40.0/23 43602 -194.185.42.0/23 3313 -194.185.44.0/22 3313 -194.185.48.0/20 3313 -194.185.64.0/18 3313 -194.185.128.0/17 3313 -194.186.0.0/21 3216 -194.186.8.0/22 3216 -194.186.12.0/23 3216 -194.186.14.0/24 35580 -194.186.15.0/24 3216 -194.186.16.0/20 3216 -194.186.32.0/20 3216 -194.186.48.0/24 56679 -194.186.49.0/24 3216 -194.186.50.0/23 3216 -194.186.52.0/22 3216 -194.186.56.0/23 3216 -194.186.58.0/24 3216 -194.186.59.0/24 59986 -194.186.60.0/23 3216 -194.186.62.0/24 3216 -194.186.63.0/24 47764 -194.186.64.0/21 3216 -194.186.72.0/22 3216 -194.186.76.0/23 3216 -194.186.78.0/24 16345 -194.186.79.0/24 3216 -194.186.80.0/23 3216 -194.186.82.0/24 33908 -194.186.83.0/24 34098 -194.186.84.0/22 3216 -194.186.88.0/21 3216 -194.186.96.0/21 3216 -194.186.104.0/23 3216 -194.186.106.0/24 21483 -194.186.107.0/24 3216 -194.186.108.0/22 3216 -194.186.112.0/22 3216 -194.186.116.0/22 21483 -194.186.120.0/21 3216 -194.186.128.0/21 3216 -194.186.136.0/23 3216 -194.186.138.0/24 3216 -194.186.139.0/24 199463 -194.186.140.0/22 3216 -194.186.144.0/20 3216 -194.186.160.0/22 3216 -194.186.164.0/23 3216 -194.186.166.0/24 34802 -194.186.167.0/24 3216 -194.186.168.0/21 3216 -194.186.176.0/20 3216 -194.186.192.0/21 3216 -194.186.200.0/22 3216 -194.186.204.0/23 3216 -194.186.206.0/24 3216 -194.186.207.0/24 35237 -194.186.208.0/21 3216 -194.186.216.0/22 3216 -194.186.220.0/24 3216 -194.186.221.0/24 16345 -194.186.222.0/23 3216 -194.186.224.0/20 3216 -194.186.240.0/23 3216 -194.186.242.0/24 198502 -194.186.243.0/24 3216 -194.186.244.0/22 3216 -194.186.248.0/21 3216 -194.187.0.0/20 61006 -194.187.16.0/22 47195 -194.187.20.0/22 35307 -194.187.24.0/22 209568 -194.187.28.0/24 31069 -194.187.29.0/24 60225 -194.187.30.0/24 57498 -194.187.32.0/22 204486 -194.187.36.0/22 9009 -194.187.44.0/22 21315 -194.187.48.0/22 35365 -194.187.52.0/22 35355 -194.187.60.0/22 35565 -194.187.64.0/22 44946 -194.187.68.0/22 35373 -194.187.72.0/22 34688 -194.187.76.0/22 35383 -194.187.80.0/23 35385 -194.187.82.0/24 35385 -194.187.84.0/22 35435 -194.187.88.0/22 15576 -194.187.92.0/22 21362 -194.187.96.0/22 35415 -194.187.104.0/22 21256 -194.187.108.0/22 29491 -194.187.112.0/24 35350 -194.187.114.0/23 35350 -194.187.120.0/24 43260 -194.187.121.0/24 40824 -194.187.122.0/24 43260 -194.187.123.0/24 202423 -194.187.124.0/22 35519 -194.187.128.0/22 35530 -194.187.132.0/22 13124 -194.187.136.0/22 21299 -194.187.140.0/22 58211 -194.187.144.0/22 5000 -194.187.148.0/22 35533 -194.187.152.0/22 35325 -194.187.156.0/22 4589 -194.187.160.0/22 35739 -194.187.164.0/22 31400 -194.187.168.0/22 199064 -194.187.172.0/22 35574 -194.187.180.0/22 43939 -194.187.184.0/22 3209 -194.187.188.0/22 3352 -194.187.192.0/22 24776 -194.187.196.0/22 47761 -194.187.200.0/22 41057 -194.187.204.0/22 35598 -194.187.208.0/22 15577 -194.187.212.0/22 15830 -194.187.216.0/22 20950 -194.187.220.0/22 35618 -194.187.224.0/22 34197 -194.187.232.0/22 199122 -194.187.236.0/22 200142 -194.187.240.0/22 8495 -194.187.244.0/22 35673 -194.187.248.0/22 9009 -194.187.252.0/22 35666 -194.188.0.0/17 719 -194.188.128.0/20 719 -194.188.144.0/24 719 -194.188.145.0/24 1759 -194.188.146.0/23 719 -194.188.148.0/22 719 -194.188.152.0/21 719 -194.188.160.0/19 719 -194.188.192.0/18 719 -194.189.27.0/24 25180 -194.190.1.0/24 49316 -194.190.2.0/23 61368 -194.190.4.0/24 49358 -194.190.5.0/24 56342 -194.190.6.0/24 60034 -194.190.8.0/24 47213 -194.190.9.0/24 52184 -194.190.11.0/24 64433 -194.190.12.0/24 41615 -194.190.13.0/24 49668 -194.190.14.0/24 43287 -194.190.15.0/24 50001 -194.190.16.0/22 49810 -194.190.20.0/24 49886 -194.190.21.0/24 52016 -194.190.22.0/24 50002 -194.190.24.0/22 49925 -194.190.28.0/22 49963 -194.190.32.0/22 50003 -194.190.36.0/24 200065 -194.190.38.0/24 62439 -194.190.39.0/24 50666 -194.190.40.0/23 50082 -194.190.42.0/23 44391 -194.190.44.0/22 34017 -194.190.48.0/22 50435 -194.190.53.0/24 203794 -194.190.54.0/24 203794 -194.190.55.0/24 59513 -194.190.56.0/22 21365 -194.190.60.0/22 50626 -194.190.64.0/21 50804 -194.190.72.0/23 60691 -194.190.74.0/23 61206 -194.190.76.0/23 48061 -194.190.78.0/24 50822 -194.190.79.0/24 39058 -194.190.80.0/22 50776 -194.190.84.0/24 202342 -194.190.85.0/24 50885 -194.190.86.0/23 21020 -194.190.88.0/24 197080 -194.190.89.0/24 51039 -194.190.92.0/22 50946 -194.190.96.0/22 50958 -194.190.100.0/24 51125 -194.190.101.0/24 197986 -194.190.102.0/24 51170 -194.190.103.0/24 51051 -194.190.104.0/22 49810 -194.190.110.0/24 51200 -194.190.111.0/24 49886 -194.190.112.0/24 51129 -194.190.113.0/24 48755 -194.190.114.0/23 51230 -194.190.116.0/23 204600 -194.190.124.0/23 42385 -194.190.127.0/24 42385 -194.190.128.0/23 57107 -194.190.130.0/24 50169 -194.190.132.0/22 3316 -194.190.138.0/24 3316 -194.190.140.0/24 200078 -194.190.141.0/24 3316 -194.190.142.0/24 3316 -194.190.143.0/24 60928 -194.190.144.0/24 41615 -194.190.145.0/24 3316 -194.190.146.0/24 15835 -194.190.147.0/24 49521 -194.190.148.0/24 3316 -194.190.149.0/24 59973 -194.190.157.0/24 52016 -194.190.158.0/23 51523 -194.190.160.0/21 2643 -194.190.168.0/24 43832 -194.190.169.0/24 56564 -194.190.170.0/23 34230 -194.190.172.0/24 51771 -194.190.173.0/24 52085 -194.190.174.0/23 51339 -194.190.176.0/20 8580 -194.190.192.0/21 2118 -194.190.200.0/22 2118 -194.190.204.0/23 2118 -194.190.206.0/24 2118 -194.190.207.0/24 25227 -194.190.208.0/20 2118 -194.190.224.0/23 3267 -194.190.226.0/24 3267 -194.190.227.0/24 8480 -194.190.228.0/22 3267 -194.190.232.0/21 3267 -194.190.240.0/21 3267 -194.190.248.0/23 3267 -194.190.250.0/23 39131 -194.190.252.0/23 39131 -194.190.254.0/23 3267 -194.191.0.0/18 1836 -194.191.64.0/19 1836 -194.191.96.0/21 1836 -194.191.104.0/22 1836 -194.191.108.0/24 12649 -194.191.109.0/24 1836 -194.191.110.0/23 1836 -194.191.112.0/20 1836 -194.191.128.0/17 1836 -194.192.0.0/16 3292 -194.193.0.0/19 17477 -194.193.32.0/19 7545 -194.193.96.0/19 10019 -194.193.128.0/18 7545 -194.193.192.0/19 7545 -194.194.0.0/16 2686 -194.195.0.0/17 6659 -194.195.128.0/22 4589 -194.195.132.0/23 4589 -194.195.134.0/23 3257 -194.195.136.0/24 4589 -194.195.137.0/24 3257 -194.195.138.0/23 4589 -194.195.140.0/22 4589 -194.195.144.0/20 4589 -194.195.160.0/19 4589 -194.195.192.0/18 6659 -194.196.0.0/16 2686 -194.197.0.0/16 1759 -194.198.0.0/16 51964 -194.199.0.0/21 2200 -194.199.8.0/22 2200 -194.199.12.0/24 2199 -194.199.13.0/24 2200 -194.199.14.0/23 2200 -194.199.16.0/20 2200 -194.199.32.0/19 2200 -194.199.64.0/23 2200 -194.199.66.0/23 2470 -194.199.68.0/22 2470 -194.199.72.0/23 2470 -194.199.74.0/24 2199 -194.199.75.0/24 2200 -194.199.76.0/23 2200 -194.199.78.0/24 2470 -194.199.79.0/24 2200 -194.199.80.0/23 2200 -194.199.82.0/24 2200 -194.199.83.0/24 2072 -194.199.84.0/22 2072 -194.199.88.0/23 2072 -194.199.90.0/24 2072 -194.199.91.0/24 2200 -194.199.92.0/24 2200 -194.199.93.0/24 2471 -194.199.94.0/24 2471 -194.199.95.0/24 2199 -194.199.96.0/24 2471 -194.199.97.0/24 2199 -194.199.98.0/24 2199 -194.199.99.0/24 2200 -194.199.100.0/22 2200 -194.199.104.0/21 2200 -194.199.112.0/20 2200 -194.199.128.0/19 2200 -194.199.160.0/21 2200 -194.199.168.0/23 2200 -194.199.170.0/24 2269 -194.199.171.0/24 2200 -194.199.172.0/24 2450 -194.199.173.0/24 2200 -194.199.174.0/23 2200 -194.199.176.0/20 2200 -194.199.192.0/18 2200 -194.200.0.0/15 702 -194.202.0.0/17 702 -194.202.128.0/21 702 -194.202.136.0/23 702 -194.202.138.0/23 1699 -194.202.140.0/24 1699 -194.202.141.0/24 702 -194.202.142.0/23 702 -194.202.144.0/21 702 -194.202.152.0/22 702 -194.202.156.0/23 702 -194.202.158.0/23 1661 -194.202.160.0/19 702 -194.202.192.0/20 702 -194.202.208.0/22 702 -194.202.212.0/24 702 -194.202.213.0/24 24677 -194.202.214.0/23 702 -194.202.216.0/21 702 -194.202.224.0/19 702 -194.203.0.0/20 702 -194.203.16.0/23 1661 -194.203.18.0/23 702 -194.203.20.0/22 702 -194.203.24.0/21 702 -194.203.32.0/21 702 -194.203.40.0/24 34253 -194.203.41.0/24 702 -194.203.42.0/23 702 -194.203.44.0/22 702 -194.203.48.0/20 702 -194.203.64.0/18 702 -194.203.128.0/19 702 -194.203.160.0/20 702 -194.203.176.0/22 702 -194.203.180.0/24 1699 -194.203.181.0/24 702 -194.203.182.0/24 702 -194.203.183.0/24 1699 -194.203.184.0/24 702 -194.203.185.0/24 1699 -194.203.186.0/24 702 -194.203.187.0/24 1699 -194.203.188.0/22 702 -194.203.192.0/20 702 -194.203.208.0/22 702 -194.203.212.0/22 5586 -194.203.216.0/21 702 -194.203.224.0/19 702 -194.204.0.0/18 2586 -194.204.64.0/19 30862 -194.204.96.0/24 5532 -194.204.97.0/24 15735 -194.204.98.0/24 15735 -194.204.99.0/24 5532 -194.204.100.0/22 5532 -194.204.104.0/21 5532 -194.204.112.0/20 5532 -194.204.128.0/18 5617 -194.204.192.0/20 6713 -194.204.208.0/21 6713 -194.204.216.0/24 6713 -194.204.217.0/24 36956 -194.204.218.0/23 6713 -194.204.220.0/22 6713 -194.204.224.0/19 6713 -194.205.0.0/16 1273 -194.206.0.0/18 3215 -194.206.64.0/21 3215 -194.206.72.0/22 3215 -194.206.76.0/23 3215 -194.206.78.0/24 3215 -194.206.79.0/24 8362 -194.206.80.0/20 3215 -194.206.96.0/20 3215 -194.206.112.0/21 3215 -194.206.120.0/24 9180 -194.206.121.0/24 3215 -194.206.122.0/23 3215 -194.206.124.0/23 3215 -194.206.126.0/24 8362 -194.206.127.0/24 3215 -194.206.128.0/18 3215 -194.206.192.0/19 3215 -194.206.224.0/20 3215 -194.206.240.0/21 3215 -194.206.248.0/22 3215 -194.206.252.0/23 3215 -194.206.254.0/24 15422 -194.206.255.0/24 3215 -194.207.0.0/19 206509 -194.207.64.0/18 12390 -194.207.128.0/17 12390 -194.208.0.0/17 5385 -194.208.128.0/21 5385 -194.208.136.0/21 59890 -194.208.144.0/20 59890 -194.208.160.0/20 5385 -194.208.176.0/21 59890 -194.208.184.0/21 5385 -194.208.192.0/18 5385 -194.209.0.0/23 3303 -194.209.2.0/24 3303 -194.209.3.0/24 29058 -194.209.4.0/24 204510 -194.209.5.0/24 3303 -194.209.6.0/24 208813 -194.209.7.0/24 3303 -194.209.8.0/21 3303 -194.209.16.0/22 3303 -194.209.20.0/23 3303 -194.209.22.0/24 3303 -194.209.23.0/24 41503 -194.209.24.0/22 3303 -194.209.28.0/24 204510 -194.209.29.0/24 3303 -194.209.30.0/24 3303 -194.209.31.0/24 206466 -194.209.32.0/21 3303 -194.209.40.0/24 3303 -194.209.41.0/24 61042 -194.209.42.0/23 3303 -194.209.44.0/22 3303 -194.209.48.0/22 3303 -194.209.52.0/24 35610 -194.209.53.0/24 3303 -194.209.54.0/24 204970 -194.209.55.0/24 41521 -194.209.56.0/21 3303 -194.209.64.0/23 3303 -194.209.66.0/24 3303 -194.209.67.0/24 51820 -194.209.68.0/24 3303 -194.209.69.0/24 41521 -194.209.70.0/23 3303 -194.209.72.0/23 3303 -194.209.74.0/24 8300 -194.209.75.0/24 3303 -194.209.76.0/23 3303 -194.209.78.0/24 50734 -194.209.79.0/24 3303 -194.209.80.0/24 205492 -194.209.81.0/24 3303 -194.209.82.0/23 3303 -194.209.84.0/22 3303 -194.209.88.0/21 3303 -194.209.96.0/20 3303 -194.209.112.0/21 3303 -194.209.120.0/24 3303 -194.209.121.0/24 205815 -194.209.122.0/23 3303 -194.209.124.0/22 3303 -194.209.128.0/20 3303 -194.209.144.0/23 3303 -194.209.146.0/24 24949 -194.209.147.0/24 3303 -194.209.148.0/22 3303 -194.209.152.0/21 3303 -194.209.160.0/21 3303 -194.209.168.0/23 3303 -194.209.170.0/24 51817 -194.209.171.0/24 3303 -194.209.172.0/22 3303 -194.209.176.0/20 3303 -194.209.192.0/22 3303 -194.209.196.0/23 3303 -194.209.198.0/24 3303 -194.209.199.0/24 206466 -194.209.200.0/21 3303 -194.209.208.0/22 3303 -194.209.212.0/23 3303 -194.209.214.0/24 199802 -194.209.215.0/24 3303 -194.209.216.0/21 3303 -194.209.224.0/20 3303 -194.209.240.0/24 3303 -194.209.241.0/24 16114 -194.209.242.0/23 3303 -194.209.244.0/22 3303 -194.209.248.0/21 3303 -194.210.0.0/16 1930 -194.211.0.0/17 719 -194.211.128.0/18 719 -194.211.192.0/19 719 -194.211.224.0/22 719 -194.211.228.0/23 719 -194.211.230.0/24 719 -194.211.231.0/24 764 -194.211.232.0/21 719 -194.211.240.0/20 719 -194.212.0.0/16 5588 -194.213.0.0/24 58211 -194.213.1.0/24 35187 -194.213.2.0/24 8422 -194.213.3.0/24 49182 -194.213.4.0/24 12400 -194.213.5.0/24 29686 -194.213.6.0/24 199797 -194.213.9.0/24 29466 -194.213.11.0/24 1764 -194.213.12.0/24 35304 -194.213.14.0/24 7155 -194.213.16.0/24 6663 -194.213.18.0/24 49485 -194.213.19.0/24 8220 -194.213.21.0/24 20619 -194.213.22.0/24 28732 -194.213.23.0/24 35588 -194.213.29.0/24 39233 -194.213.30.0/24 35625 -194.213.31.0/24 35265 -194.213.32.0/19 5588 -194.213.64.0/19 5400 -194.213.96.0/23 41812 -194.213.98.0/23 21467 -194.213.100.0/23 48870 -194.213.102.0/23 197185 -194.213.104.0/23 51314 -194.213.106.0/23 50879 -194.213.110.0/23 48143 -194.213.112.0/23 20559 -194.213.114.0/23 34762 -194.213.116.0/23 51316 -194.213.118.0/23 51307 -194.213.120.0/23 51315 -194.213.122.0/23 38958 -194.213.124.0/23 51335 -194.213.192.0/19 5588 -194.213.224.0/19 29208 -194.214.0.0/19 2200 -194.214.32.0/20 2200 -194.214.48.0/22 2200 -194.214.52.0/23 2200 -194.214.54.0/24 2200 -194.214.55.0/24 2198 -194.214.56.0/21 2200 -194.214.64.0/18 2200 -194.214.128.0/18 2200 -194.214.192.0/20 2200 -194.214.208.0/22 2200 -194.214.212.0/23 2200 -194.214.214.0/24 2472 -194.214.215.0/24 2200 -194.214.216.0/21 2200 -194.214.224.0/19 2200 -194.215.0.0/16 1759 -194.216.0.0/17 702 -194.216.128.0/18 702 -194.216.192.0/20 702 -194.216.208.0/21 702 -194.216.216.0/23 1699 -194.216.218.0/23 702 -194.216.220.0/22 702 -194.216.224.0/19 702 -194.217.0.0/20 2529 -194.217.16.0/24 1273 -194.217.17.0/24 2529 -194.217.18.0/23 2529 -194.217.20.0/22 2529 -194.217.24.0/21 2529 -194.217.32.0/19 2529 -194.217.64.0/18 2529 -194.217.128.0/19 2529 -194.217.160.0/21 2529 -194.217.168.0/22 2529 -194.217.172.0/23 1273 -194.217.174.0/23 2529 -194.217.176.0/20 2529 -194.217.192.0/19 2529 -194.217.224.0/21 2529 -194.217.232.0/22 2529 -194.217.236.0/23 1273 -194.217.238.0/23 2529 -194.217.240.0/20 2529 -194.218.0.0/16 3301 -194.219.0.0/18 1241 -194.219.64.0/21 1241 -194.219.72.0/22 1241 -194.219.76.0/23 1241 -194.219.78.0/24 1241 -194.219.79.0/24 197746 -194.219.80.0/20 1241 -194.219.96.0/19 1241 -194.219.128.0/17 1241 -194.220.0.0/16 12430 -194.221.0.0/19 1273 -194.221.32.0/20 1273 -194.221.48.0/21 1273 -194.221.56.0/24 1273 -194.221.57.0/24 20940 -194.221.58.0/23 20940 -194.221.60.0/22 1273 -194.221.64.0/19 1273 -194.221.96.0/20 1273 -194.221.112.0/21 1273 -194.221.120.0/22 1273 -194.221.124.0/23 20940 -194.221.126.0/23 1273 -194.221.128.0/19 1273 -194.221.160.0/20 1273 -194.221.176.0/21 1273 -194.221.184.0/23 1273 -194.221.186.0/24 286 -194.221.187.0/24 1273 -194.221.188.0/22 1273 -194.221.192.0/18 1273 -194.223.0.0/18 7545 -194.223.64.0/19 7545 -194.223.128.0/20 8220 -194.223.160.0/19 7545 -194.224.0.0/19 3352 -194.224.32.0/20 3352 -194.224.48.0/23 3352 -194.224.50.0/23 201976 -194.224.52.0/22 3352 -194.224.56.0/21 3352 -194.224.64.0/21 3352 -194.224.72.0/24 204993 -194.224.73.0/24 3352 -194.224.74.0/23 3352 -194.224.76.0/22 3352 -194.224.80.0/20 3352 -194.224.96.0/19 3352 -194.224.128.0/20 3352 -194.224.144.0/21 3352 -194.224.152.0/22 3352 -194.224.156.0/23 3352 -194.224.158.0/24 6813 -194.224.159.0/24 3352 -194.224.160.0/22 3352 -194.224.164.0/24 3352 -194.224.165.0/24 204993 -194.224.166.0/23 3352 -194.224.168.0/24 35264 -194.224.169.0/24 3352 -194.224.170.0/23 3352 -194.224.172.0/22 3352 -194.224.176.0/20 3352 -194.224.192.0/19 3352 -194.224.224.0/22 3352 -194.224.228.0/24 3352 -194.224.229.0/24 197478 -194.224.230.0/23 3352 -194.224.232.0/21 3352 -194.224.240.0/20 3352 -194.225.0.0/20 29068 -194.225.16.0/21 6736 -194.225.24.0/21 56765 -194.225.32.0/22 59794 -194.225.36.0/22 6736 -194.225.40.0/21 12660 -194.225.48.0/20 43965 -194.225.64.0/19 6736 -194.225.96.0/21 6736 -194.225.104.0/22 6736 -194.225.108.0/22 59794 -194.225.112.0/20 6736 -194.225.128.0/20 6736 -194.225.144.0/22 6736 -194.225.148.0/23 34592 -194.225.150.0/23 6736 -194.225.152.0/21 6736 -194.225.160.0/22 6736 -194.225.164.0/23 6736 -194.225.166.0/23 57745 -194.225.168.0/22 57745 -194.225.172.0/23 57745 -194.225.174.0/23 6736 -194.225.176.0/20 6736 -194.225.192.0/19 43965 -194.225.224.0/20 41620 -194.225.240.0/20 6736 -194.226.4.0/24 56486 -194.226.6.0/23 51764 -194.226.8.0/22 47104 -194.226.12.0/22 31620 -194.226.16.0/23 3316 -194.226.18.0/24 3316 -194.226.19.0/24 25513 -194.226.21.0/24 5429 -194.226.24.0/24 15835 -194.226.25.0/24 3316 -194.226.26.0/24 62422 -194.226.27.0/24 62236 -194.226.29.0/24 3316 -194.226.31.0/24 48035 -194.226.32.0/24 41127 -194.226.33.0/24 49668 -194.226.34.0/23 51408 -194.226.36.0/24 3316 -194.226.38.0/23 3316 -194.226.40.0/24 57211 -194.226.41.0/24 15835 -194.226.42.0/24 41082 -194.226.43.0/24 39321 -194.226.44.0/24 3316 -194.226.45.0/24 57645 -194.226.46.0/23 3316 -194.226.49.0/24 201211 -194.226.51.0/24 201312 -194.226.53.0/24 201037 -194.226.55.0/24 205004 -194.226.56.0/22 8985 -194.226.60.0/24 43287 -194.226.61.0/24 201285 -194.226.62.0/24 56384 -194.226.63.0/24 34858 -194.226.64.0/22 3316 -194.226.68.0/24 5568 -194.226.69.0/24 3316 -194.226.70.0/23 3316 -194.226.72.0/23 3316 -194.226.74.0/24 3316 -194.226.75.0/24 43832 -194.226.76.0/22 3316 -194.226.80.0/21 8291 -194.226.88.0/21 43797 -194.226.96.0/24 48287 -194.226.98.0/23 56384 -194.226.104.0/22 47595 -194.226.108.0/24 205735 -194.226.109.0/24 51200 -194.226.110.0/24 48061 -194.226.111.0/24 49925 -194.226.114.0/24 205442 -194.226.116.0/22 8291 -194.226.120.0/22 6697 -194.226.124.0/23 6697 -194.226.127.0/24 42121 -194.226.128.0/24 51334 -194.226.129.0/24 51200 -194.226.130.0/23 52016 -194.226.132.0/24 207940 -194.226.133.0/24 7979 -194.226.136.0/24 60928 -194.226.137.0/24 51408 -194.226.138.0/24 51994 -194.226.144.0/20 3253 -194.226.160.0/24 62253 -194.226.161.0/24 57211 -194.226.162.0/24 56342 -194.226.164.0/24 47213 -194.226.166.0/24 30797 -194.226.167.0/24 60988 -194.226.168.0/24 60837 -194.226.170.0/24 62029 -194.226.171.0/24 62004 -194.226.172.0/24 61382 -194.226.173.0/24 30952 -194.226.174.0/24 60040 -194.226.175.0/24 202156 -194.226.176.0/24 57530 -194.226.177.0/24 51219 -194.226.179.0/24 205822 -194.226.180.0/24 60151 -194.226.181.0/24 201994 -194.226.182.0/24 61378 -194.226.183.0/24 35813 -194.226.185.0/24 60024 -194.226.186.0/24 201778 -194.226.188.0/24 201820 -194.226.189.0/24 59928 -194.226.191.0/24 57529 -194.226.192.0/19 3267 -194.226.224.0/19 5468 -194.227.110.0/23 1273 -194.227.208.0/23 5089 -194.228.0.0/16 5610 -194.229.0.0/20 702 -194.229.16.0/21 702 -194.229.24.0/22 702 -194.229.28.0/24 702 -194.229.29.0/24 42517 -194.229.30.0/23 702 -194.229.32.0/19 702 -194.229.64.0/18 702 -194.229.128.0/17 702 -194.230.0.0/18 6730 -194.230.64.0/19 6730 -194.230.96.0/21 6730 -194.230.104.0/22 6730 -194.230.108.0/23 6730 -194.230.110.0/24 42168 -194.230.111.0/24 6730 -194.230.112.0/20 6730 -194.230.128.0/17 6730 -194.231.0.0/18 5669 -194.231.64.0/19 5669 -194.231.96.0/21 5669 -194.231.104.0/24 5669 -194.231.105.0/24 5605 -194.231.106.0/23 5669 -194.231.108.0/22 5669 -194.231.112.0/20 5669 -194.231.128.0/17 5669 -194.232.0.0/16 5403 -194.233.0.0/16 6659 -194.234.0.0/16 51964 -194.235.0.0/19 51964 -194.235.32.0/22 5511 -194.235.36.0/22 51964 -194.235.40.0/21 51964 -194.235.48.0/20 51964 -194.235.64.0/19 51964 -194.235.96.0/23 5511 -194.235.98.0/23 51964 -194.235.100.0/23 5511 -194.235.102.0/24 51964 -194.235.103.0/24 5511 -194.235.104.0/23 51964 -194.235.106.0/24 5511 -194.235.107.0/24 51964 -194.235.108.0/23 5511 -194.235.110.0/23 51964 -194.235.112.0/20 51964 -194.235.128.0/21 51964 -194.235.136.0/22 51964 -194.235.140.0/24 51964 -194.235.141.0/24 5511 -194.235.142.0/24 51964 -194.235.143.0/24 5511 -194.235.144.0/21 51964 -194.235.152.0/21 5511 -194.235.160.0/19 51964 -194.235.192.0/20 51964 -194.235.208.0/23 5511 -194.235.210.0/23 51964 -194.235.212.0/22 51964 -194.235.216.0/21 51964 -194.235.224.0/23 51964 -194.235.226.0/24 51964 -194.235.227.0/24 5511 -194.235.228.0/22 5511 -194.235.232.0/22 51964 -194.235.236.0/22 5511 -194.235.240.0/23 5511 -194.235.242.0/24 51964 -194.235.243.0/24 5511 -194.235.244.0/23 5511 -194.235.246.0/23 51964 -194.235.248.0/21 51964 -194.236.0.0/18 3301 -194.236.64.0/19 3301 -194.236.96.0/20 3301 -194.236.112.0/21 3301 -194.236.120.0/22 3301 -194.236.124.0/24 30880 -194.236.125.0/24 3301 -194.236.126.0/23 3301 -194.236.128.0/17 3301 -194.237.0.0/17 3301 -194.237.128.0/21 3301 -194.237.136.0/22 3301 -194.237.140.0/23 3301 -194.237.142.0/24 158 -194.237.143.0/24 3301 -194.237.144.0/20 3301 -194.237.160.0/19 3301 -194.237.192.0/18 3301 -194.238.0.0/16 5503 -194.239.0.0/16 3292 -194.240.0.0/18 719 -194.240.64.0/22 719 -194.240.68.0/24 719 -194.240.69.0/24 28883 -194.240.70.0/23 719 -194.240.72.0/21 719 -194.240.80.0/20 719 -194.240.96.0/19 719 -194.240.128.0/17 719 -194.241.0.0/16 719 -194.242.0.0/23 43939 -194.242.2.0/23 35913 -194.242.4.0/23 13077 -194.242.6.0/23 49723 -194.242.8.0/23 49841 -194.242.10.0/23 34989 -194.242.12.0/23 197160 -194.242.14.0/23 35913 -194.242.16.0/23 1764 -194.242.18.0/23 49750 -194.242.20.0/23 49756 -194.242.22.0/23 205301 -194.242.24.0/23 49771 -194.242.26.0/23 9009 -194.242.28.0/23 205301 -194.242.30.0/23 196764 -194.242.32.0/24 9121 -194.242.34.0/24 20612 -194.242.35.0/24 8437 -194.242.36.0/24 20526 -194.242.37.0/24 8971 -194.242.39.0/24 39487 -194.242.40.0/24 31590 -194.242.41.0/24 20684 -194.242.42.0/24 25384 -194.242.43.0/24 20672 -194.242.44.0/24 30781 -194.242.47.0/24 20585 -194.242.52.0/24 25557 -194.242.54.0/24 28878 -194.242.55.0/24 34253 -194.242.58.0/24 6848 -194.242.60.0/24 20790 -194.242.61.0/24 24994 -194.242.62.0/24 21344 -194.242.63.0/24 39616 -194.242.64.0/19 2686 -194.242.96.0/24 62206 -194.242.97.0/24 203430 -194.242.98.0/24 62206 -194.242.99.0/24 35478 -194.242.100.0/22 31685 -194.242.104.0/22 41508 -194.242.108.0/22 31574 -194.242.112.0/22 13193 -194.242.116.0/22 28858 -194.242.124.0/22 34665 -194.242.128.0/19 4589 -194.242.160.0/20 12849 -194.242.176.0/20 15557 -194.242.192.0/19 5396 -194.242.224.0/19 5397 -194.243.0.0/16 3269 -194.244.0.0/16 3302 -194.245.0.0/16 5517 -194.246.0.0/22 3257 -194.246.4.0/23 12301 -194.246.6.0/24 3301 -194.246.7.0/24 8767 -194.246.8.0/23 2119 -194.246.10.0/23 8767 -194.246.12.0/23 8767 -194.246.14.0/23 2119 -194.246.16.0/22 8767 -194.246.20.0/24 12301 -194.246.21.0/24 8767 -194.246.22.0/23 8767 -194.246.24.0/24 24863 -194.246.25.0/24 8767 -194.246.26.0/23 8767 -194.246.28.0/22 8767 -194.246.32.0/22 202271 -194.246.40.0/22 136782 -194.246.44.0/22 47826 -194.246.48.0/20 47826 -194.246.72.0/23 8220 -194.246.74.0/24 206513 -194.246.75.0/24 198215 -194.246.76.0/24 50134 -194.246.77.0/24 57545 -194.246.78.0/24 2856 -194.246.79.0/24 198222 -194.246.80.0/24 200398 -194.246.85.0/24 41431 -194.246.86.0/23 41431 -194.246.88.0/22 39402 -194.246.92.0/22 41709 -194.246.96.0/24 31529 -194.246.97.0/24 31424 -194.246.99.0/24 31035 -194.246.101.0/24 8487 -194.246.102.0/24 30942 -194.246.104.0/23 31000 -194.246.108.0/24 34816 -194.246.109.0/24 35008 -194.246.110.0/23 12795 -194.246.112.0/23 25408 -194.246.114.0/23 43209 -194.246.116.0/23 21488 -194.246.118.0/23 8758 -194.246.120.0/24 41540 -194.246.121.0/24 24685 -194.246.122.0/23 33824 -194.246.126.0/23 15779 -194.246.128.0/20 24845 -194.246.144.0/21 24845 -194.246.152.0/22 24845 -194.246.156.0/24 24845 -194.246.159.0/24 197874 -194.246.160.0/19 24845 -194.246.192.0/18 24845 -194.247.0.0/23 34252 -194.247.2.0/23 50829 -194.247.4.0/23 201886 -194.247.6.0/23 3301 -194.247.8.0/23 9100 -194.247.10.0/23 207203 -194.247.12.0/23 200000 -194.247.14.0/23 50846 -194.247.16.0/23 197335 -194.247.18.0/23 50848 -194.247.20.0/23 42136 -194.247.22.0/23 50852 -194.247.24.0/24 50854 -194.247.25.0/24 60971 -194.247.26.0/23 16509 -194.247.28.0/23 50891 -194.247.30.0/23 48635 -194.247.33.0/24 52052 -194.247.34.0/24 30781 -194.247.35.0/24 52071 -194.247.37.0/24 52066 -194.247.38.0/24 50673 -194.247.40.0/24 52069 -194.247.41.0/24 52203 -194.247.42.0/24 44894 -194.247.46.0/24 197586 -194.247.47.0/24 8387 -194.247.48.0/24 35687 -194.247.49.0/24 51043 -194.247.50.0/24 52160 -194.247.52.0/24 52097 -194.247.53.0/24 49505 -194.247.54.0/24 52108 -194.247.55.0/24 42740 -194.247.56.0/24 52109 -194.247.57.0/24 57216 -194.247.59.0/24 15924 -194.247.60.0/24 8870 -194.247.61.0/24 47527 -194.247.62.0/24 52106 -194.247.63.0/24 52186 -194.247.64.0/19 5564 -194.247.96.0/19 702 -194.247.128.0/19 6694 -194.247.160.0/23 59943 -194.247.162.0/23 44549 -194.247.164.0/24 8 -194.247.165.0/24 50084 -194.247.166.0/23 33802 -194.247.170.0/23 60045 -194.247.172.0/23 48230 -194.247.174.0/23 196831 -194.247.176.0/23 50127 -194.247.178.0/23 196851 -194.247.180.0/23 50123 -194.247.184.0/23 50158 -194.247.188.0/23 3292 -194.247.190.0/23 50182 -194.247.192.0/19 8771 -194.247.224.0/19 9105 -194.248.0.0/16 2119 -194.249.0.0/16 2107 -194.250.0.0/18 3215 -194.250.64.0/19 3215 -194.250.96.0/23 3215 -194.250.98.0/24 16236 -194.250.99.0/24 3215 -194.250.100.0/22 3215 -194.250.104.0/21 3215 -194.250.112.0/22 3215 -194.250.116.0/23 3215 -194.250.118.0/24 9180 -194.250.119.0/24 3215 -194.250.120.0/21 3215 -194.250.128.0/23 3215 -194.250.130.0/24 3215 -194.250.131.0/24 28708 -194.250.132.0/22 3215 -194.250.136.0/21 3215 -194.250.144.0/20 3215 -194.250.160.0/19 3215 -194.250.192.0/20 3215 -194.250.208.0/23 3215 -194.250.210.0/24 3215 -194.250.211.0/24 12826 -194.250.212.0/22 3215 -194.250.216.0/21 3215 -194.250.224.0/19 3215 -194.251.0.0/16 1759 -194.252.0.0/17 1759 -194.252.128.0/18 1759 -194.252.192.0/19 1759 -194.252.224.0/24 1759 -194.252.225.0/24 29601 -194.252.226.0/23 1759 -194.252.228.0/22 1759 -194.252.232.0/21 1759 -194.252.240.0/20 1759 -194.254.0.0/18 2200 -194.254.64.0/19 2200 -194.254.96.0/24 2200 -194.254.97.0/24 2199 -194.254.98.0/24 2471 -194.254.99.0/24 2200 -194.254.100.0/22 2200 -194.254.104.0/21 2200 -194.254.112.0/20 2200 -194.254.128.0/19 2200 -194.254.160.0/20 2200 -194.254.176.0/21 2200 -194.254.184.0/22 2200 -194.254.188.0/24 2088 -194.254.189.0/24 2198 -194.254.190.0/23 2200 -194.254.192.0/22 2200 -194.254.196.0/24 2200 -194.254.197.0/24 2471 -194.254.198.0/23 2200 -194.254.200.0/21 2200 -194.254.208.0/24 2472 -194.254.209.0/24 2200 -194.254.210.0/23 2200 -194.254.212.0/22 2200 -194.254.216.0/21 2200 -194.254.224.0/19 2200 -194.255.0.0/16 3308 -195.0.0.0/17 5432 -195.0.128.0/17 2116 -195.1.0.0/16 2116 -195.2.0.0/19 1273 -195.2.32.0/22 20676 -195.2.36.0/22 25181 -195.2.40.0/21 702 -195.2.48.0/20 702 -195.2.64.0/23 6903 -195.2.66.0/23 48282 -195.2.68.0/23 6903 -195.2.70.0/23 48282 -195.2.72.0/24 6903 -195.2.77.0/24 6903 -195.2.82.0/23 6903 -195.2.86.0/24 48282 -195.2.87.0/24 6903 -195.2.88.0/22 6903 -195.2.92.0/23 48282 -195.2.94.0/23 6903 -195.2.96.0/19 12578 -195.2.128.0/23 29219 -195.2.130.0/24 29219 -195.2.131.0/24 8897 -195.2.132.0/22 8897 -195.2.136.0/24 8897 -195.2.137.0/24 29219 -195.2.138.0/24 8897 -195.2.139.0/24 29219 -195.2.140.0/22 8897 -195.2.144.0/23 8897 -195.2.146.0/23 29219 -195.2.148.0/22 29219 -195.2.152.0/21 29219 -195.2.160.0/19 5409 -195.2.192.0/23 48530 -195.2.196.0/23 208913 -195.2.198.0/23 48561 -195.2.200.0/23 1764 -195.2.202.0/23 44196 -195.2.204.0/23 196638 -195.2.206.0/23 43209 -195.2.208.0/23 48707 -195.2.210.0/23 24683 -195.2.212.0/23 50411 -195.2.214.0/23 13029 -195.2.216.0/23 48604 -195.2.218.0/23 3269 -195.2.220.0/23 47692 -195.2.222.0/23 197031 -195.2.224.0/23 44052 -195.2.228.0/23 48971 -195.2.230.0/24 43999 -195.2.232.0/23 44030 -195.2.236.0/23 44032 -195.2.238.0/23 44056 -195.2.240.0/23 44050 -195.2.242.0/23 50411 -195.2.244.0/23 34523 -195.2.246.0/23 39277 -195.2.248.0/23 8312 -195.2.250.0/23 20645 -195.2.254.0/23 41079 -195.3.0.0/18 15557 -195.3.64.0/19 8447 -195.3.96.0/21 8447 -195.3.104.0/22 8447 -195.3.108.0/23 15824 -195.3.110.0/23 8447 -195.3.112.0/20 8447 -195.3.128.0/22 34251 -195.3.132.0/22 29031 -195.3.136.0/22 9009 -195.3.140.0/22 41377 -195.3.144.0/22 41390 -195.3.148.0/22 34743 -195.3.152.0/22 52106 -195.3.156.0/22 12998 -195.3.164.0/22 41458 -195.3.168.0/22 15962 -195.3.172.0/22 41433 -195.3.176.0/22 15879 -195.3.180.0/23 49392 -195.3.182.0/24 50806 -195.3.183.0/24 35526 -195.3.184.0/22 31220 -195.3.188.0/22 42506 -195.3.192.0/22 201011 -195.3.196.0/22 31072 -195.3.200.0/22 13000 -195.3.204.0/22 35409 -195.3.212.0/22 41504 -195.3.220.0/22 201814 -195.3.224.0/23 41513 -195.3.228.0/22 41558 -195.3.232.0/22 58321 -195.3.236.0/22 25019 -195.3.240.0/22 41681 -195.3.244.0/22 28761 -195.3.248.0/22 15657 -195.3.252.0/22 41599 -195.4.0.0/17 5430 -195.4.128.0/19 60175 -195.4.160.0/20 60175 -195.4.176.0/20 5430 -195.4.192.0/18 5430 -195.5.0.0/18 6849 -195.5.64.0/19 8239 -195.5.98.0/23 200374 -195.5.100.0/23 42525 -195.5.102.0/23 39675 -195.5.104.0/24 51795 -195.5.106.0/23 39680 -195.5.108.0/23 34180 -195.5.110.0/24 35476 -195.5.111.0/24 49079 -195.5.112.0/23 39787 -195.5.118.0/23 8473 -195.5.120.0/23 57739 -195.5.122.0/23 44009 -195.5.124.0/23 39130 -195.5.126.0/24 44668 -195.5.127.0/24 57351 -195.5.128.0/19 20632 -195.5.160.0/24 200997 -195.5.161.0/24 205072 -195.5.162.0/24 34665 -195.5.163.0/24 47207 -195.5.164.0/24 5603 -195.5.165.0/24 44968 -195.5.167.0/24 60382 -195.5.168.0/24 205072 -195.5.170.0/24 205072 -195.5.171.0/24 29655 -195.5.173.0/24 44189 -195.5.174.0/24 2116 -195.5.176.0/24 205072 -195.5.177.0/24 47381 -195.5.178.0/24 45003 -195.5.179.0/24 9144 -195.5.181.0/24 45026 -195.5.182.0/24 45016 -195.5.184.0/24 45022 -195.5.186.0/24 20884 -195.5.187.0/24 201011 -195.5.191.0/24 206293 -195.5.192.0/21 13193 -195.5.200.0/23 50059 -195.5.202.0/24 50059 -195.5.203.0/24 13193 -195.5.204.0/23 13193 -195.5.206.0/24 13193 -195.5.207.0/24 50059 -195.5.208.0/20 13193 -195.5.224.0/21 13193 -195.5.232.0/23 13193 -195.5.234.0/23 50858 -195.5.236.0/24 51335 -195.5.237.0/24 13193 -195.5.238.0/23 13193 -195.5.240.0/22 13193 -195.5.244.0/23 13193 -195.5.246.0/24 13193 -195.5.247.0/24 50059 -195.5.248.0/23 50059 -195.5.250.0/23 13193 -195.5.252.0/22 13193 -195.6.0.0/17 3215 -195.6.128.0/18 3215 -195.6.192.0/19 3215 -195.6.224.0/20 3215 -195.6.240.0/22 3215 -195.6.244.0/22 8362 -195.6.248.0/21 3215 -195.7.0.0/24 208217 -195.7.2.0/24 40676 -195.7.3.0/24 35913 -195.7.4.0/22 200282 -195.7.8.0/22 210162 -195.7.12.0/23 210148 -195.7.14.0/24 210073 -195.7.16.0/22 13018 -195.7.20.0/22 13120 -195.7.24.0/21 13120 -195.7.32.0/19 5466 -195.7.64.0/19 3257 -195.7.96.0/19 9003 -195.7.128.0/19 1136 -195.7.160.0/19 8359 -195.7.192.0/19 3257 -195.7.224.0/19 8622 -195.8.0.0/19 8657 -195.8.32.0/23 2119 -195.8.36.0/23 48905 -195.8.38.0/23 41929 -195.8.40.0/23 48650 -195.8.42.0/24 48649 -195.8.44.0/23 48651 -195.8.48.0/23 60458 -195.8.50.0/23 41965 -195.8.52.0/23 48659 -195.8.54.0/23 719 -195.8.58.0/23 33876 -195.8.60.0/23 16086 -195.8.62.0/24 42929 -195.8.64.0/19 8426 -195.8.96.0/24 34407 -195.8.97.0/24 197457 -195.8.99.0/24 34409 -195.8.100.0/24 41811 -195.8.101.0/24 34424 -195.8.103.0/24 16509 -195.8.104.0/24 13045 -195.8.105.0/24 12592 -195.8.106.0/24 34431 -195.8.108.0/24 3303 -195.8.109.0/24 35331 -195.8.111.0/24 34433 -195.8.113.0/24 34438 -195.8.115.0/24 8538 -195.8.116.0/24 34442 -195.8.117.0/24 13030 -195.8.118.0/23 60458 -195.8.120.0/24 34451 -195.8.121.0/24 44018 -195.8.122.0/23 44018 -195.8.124.0/24 203984 -195.8.126.0/24 15510 -195.8.127.0/24 50099 -195.8.128.0/19 15443 -195.8.160.0/20 2529 -195.8.192.0/23 42004 -195.8.194.0/24 50630 -195.8.195.0/24 20857 -195.8.196.0/23 9009 -195.8.198.0/23 41655 -195.8.200.0/23 39169 -195.8.204.0/23 42016 -195.8.206.0/23 41807 -195.8.208.0/23 31477 -195.8.210.0/23 13030 -195.8.212.0/23 42061 -195.8.214.0/23 41690 -195.8.216.0/23 41777 -195.8.218.0/23 51172 -195.8.220.0/23 41790 -195.8.222.0/23 8739 -195.8.224.0/20 8820 -195.8.240.0/22 8820 -195.8.244.0/24 8820 -195.8.245.0/24 208545 -195.8.246.0/23 8820 -195.8.248.0/21 8820 -195.9.0.0/16 25513 -195.10.0.0/23 1273 -195.10.2.0/24 42816 -195.10.3.0/24 1273 -195.10.4.0/23 1273 -195.10.6.0/24 42816 -195.10.7.0/24 1273 -195.10.8.0/23 1273 -195.10.10.0/24 42816 -195.10.11.0/24 1273 -195.10.12.0/22 1273 -195.10.16.0/20 1273 -195.10.32.0/22 1273 -195.10.36.0/23 1273 -195.10.38.0/24 42816 -195.10.39.0/24 1273 -195.10.40.0/21 1273 -195.10.48.0/20 1273 -195.10.64.0/23 6891 -195.10.96.0/19 13122 -195.10.128.0/18 16086 -195.10.192.0/24 20521 -195.10.193.0/24 35756 -195.10.194.0/24 50463 -195.10.195.0/24 34549 -195.10.196.0/24 57280 -195.10.197.0/24 25233 -195.10.198.0/24 35802 -195.10.199.0/24 35799 -195.10.200.0/24 33001 -195.10.201.0/24 200521 -195.10.203.0/24 25486 -195.10.204.0/24 35734 -195.10.205.0/24 35813 -195.10.206.0/24 48943 -195.10.207.0/24 31027 -195.10.208.0/24 199118 -195.10.210.0/24 35795 -195.10.211.0/24 43770 -195.10.212.0/24 50673 -195.10.213.0/24 35425 -195.10.214.0/24 59558 -195.10.216.0/24 5518 -195.10.217.0/24 59268 -195.10.218.0/24 29632 -195.10.221.0/24 8190 -195.10.223.0/24 44684 -195.10.224.0/20 8553 -195.10.240.0/23 8553 -195.10.242.0/24 8553 -195.10.243.0/24 34119 -195.10.244.0/23 8553 -195.10.246.0/24 8553 -195.10.247.0/24 34119 -195.10.248.0/21 8553 -195.11.0.0/19 2529 -195.11.32.0/20 2529 -195.11.48.0/21 2529 -195.11.56.0/23 2529 -195.11.58.0/24 2529 -195.11.59.0/24 4913 -195.11.60.0/23 5666 -195.11.62.0/23 2529 -195.11.64.0/18 2529 -195.11.128.0/17 2529 -195.12.0.0/19 8586 -195.12.32.0/22 35785 -195.12.38.0/24 680 -195.12.40.0/22 41872 -195.12.44.0/22 9044 -195.12.48.0/22 9009 -195.12.52.0/22 33823 -195.12.56.0/22 48648 -195.12.60.0/22 59929 -195.12.64.0/19 3253 -195.12.97.0/24 9198 -195.12.100.0/24 9198 -195.12.103.0/24 9198 -195.12.111.0/24 9198 -195.12.113.0/24 15549 -195.12.114.0/23 15549 -195.12.122.0/23 15549 -195.12.124.0/23 15549 -195.12.128.0/21 16160 -195.12.136.0/24 16160 -195.12.137.0/24 39456 -195.12.138.0/23 16160 -195.12.140.0/22 16160 -195.12.144.0/21 16160 -195.12.152.0/22 16160 -195.12.156.0/23 16160 -195.12.158.0/24 16160 -195.12.159.0/24 57801 -195.12.160.0/20 8764 -195.12.176.0/23 8764 -195.12.178.0/24 24984 -195.12.179.0/24 8764 -195.12.180.0/24 43811 -195.12.181.0/24 8764 -195.12.182.0/24 50065 -195.12.183.0/24 8764 -195.12.186.0/24 47205 -195.12.188.0/22 198651 -195.12.192.0/19 8547 -195.12.224.0/19 1299 -195.13.0.0/19 5432 -195.13.32.0/23 47332 -195.13.34.0/24 47332 -195.13.36.0/24 12318 -195.13.38.0/23 20938 -195.13.40.0/22 38914 -195.13.48.0/23 208913 -195.13.50.0/24 58319 -195.13.52.0/23 12350 -195.13.56.0/24 34762 -195.13.58.0/23 8304 -195.13.60.0/23 43350 -195.13.62.0/24 43350 -195.13.64.0/18 5587 -195.13.128.0/19 12578 -195.13.160.0/22 12578 -195.13.164.0/24 12578 -195.13.165.0/24 48680 -195.13.166.0/23 12578 -195.13.168.0/22 12578 -195.13.172.0/23 12578 -195.13.174.0/23 44658 -195.13.176.0/20 12578 -195.13.192.0/20 12578 -195.13.208.0/22 12578 -195.13.212.0/24 44658 -195.13.213.0/24 12578 -195.13.214.0/23 12578 -195.13.216.0/22 12578 -195.13.220.0/23 12578 -195.13.222.0/24 12578 -195.13.223.0/24 12525 -195.13.224.0/19 12578 -195.14.0.0/24 35393 -195.14.1.0/24 31477 -195.14.2.0/24 60781 -195.14.3.0/24 38991 -195.14.4.0/24 39008 -195.14.5.0/24 8218 -195.14.6.0/24 58058 -195.14.8.0/24 30962 -195.14.11.0/24 39014 -195.14.12.0/24 5433 -195.14.13.0/24 2614 -195.14.14.0/24 39026 -195.14.16.0/24 15533 -195.14.17.0/24 44952 -195.14.18.0/24 61063 -195.14.19.0/24 49610 -195.14.20.0/24 39287 -195.14.21.0/24 60781 -195.14.22.0/24 41653 -195.14.23.0/24 39037 -195.14.24.0/24 61063 -195.14.25.0/24 1257 -195.14.26.0/23 198537 -195.14.29.0/24 41008 -195.14.31.0/24 39923 -195.14.32.0/22 8402 -195.14.36.0/24 3216 -195.14.37.0/24 8402 -195.14.38.0/23 8402 -195.14.40.0/21 8402 -195.14.48.0/20 8402 -195.14.64.0/19 6894 -195.14.96.0/23 12456 -195.14.100.0/23 49063 -195.14.102.0/23 49976 -195.14.104.0/23 56504 -195.14.106.0/23 51360 -195.14.108.0/23 51860 -195.14.112.0/23 198537 -195.14.114.0/23 51372 -195.14.116.0/23 50231 -195.14.118.0/23 51396 -195.14.122.0/23 25521 -195.14.126.0/23 50849 -195.14.128.0/19 6866 -195.14.160.0/19 15440 -195.14.192.0/18 8422 -195.15.0.0/16 12350 -195.16.0.0/19 6848 -195.16.32.0/19 3216 -195.16.64.0/22 3257 -195.16.76.0/22 35067 -195.16.80.0/22 35065 -195.16.84.0/22 31064 -195.16.88.0/22 59939 -195.16.92.0/24 47905 -195.16.93.0/24 58207 -195.16.94.0/24 44131 -195.16.95.0/24 42529 -195.16.96.0/19 25159 -195.16.128.0/19 3262 -195.16.160.0/19 3356 -195.16.192.0/19 790 -195.16.224.0/19 39912 -195.17.0.0/17 51964 -195.17.192.0/18 51964 -195.18.0.0/22 2119 -195.18.12.0/22 196638 -195.18.16.0/22 48004 -195.18.20.0/22 51153 -195.18.28.0/22 44668 -195.18.32.0/19 8557 -195.18.64.0/18 8608 -195.18.128.0/17 2116 -195.19.3.0/24 60740 -195.19.6.0/24 50586 -195.19.7.0/24 202988 -195.19.8.0/24 3316 -195.19.9.0/24 15835 -195.19.10.0/23 51408 -195.19.12.0/24 62295 -195.19.14.0/23 8985 -195.19.16.0/24 3283 -195.19.17.0/24 62115 -195.19.18.0/24 60177 -195.19.19.0/24 58060 -195.19.20.0/24 48035 -195.19.21.0/24 50003 -195.19.22.0/24 34858 -195.19.23.0/24 60691 -195.19.24.0/24 64441 -195.19.25.0/24 207025 -195.19.26.0/24 3316 -195.19.27.0/24 57211 -195.19.28.0/24 44587 -195.19.29.0/24 3316 -195.19.30.0/24 44429 -195.19.31.0/24 206871 -195.19.32.0/19 6868 -195.19.64.0/24 49316 -195.19.65.0/24 56686 -195.19.66.0/24 199572 -195.19.68.0/23 56777 -195.19.70.0/23 44310 -195.19.72.0/24 49132 -195.19.73.0/24 56854 -195.19.74.0/23 60034 -195.19.76.0/23 47503 -195.19.78.0/24 44093 -195.19.80.0/24 41082 -195.19.81.0/24 51642 -195.19.82.0/23 52038 -195.19.84.0/22 51578 -195.19.88.0/23 51593 -195.19.90.0/23 51621 -195.19.92.0/23 34629 -195.19.94.0/23 51721 -195.19.128.0/20 6699 -195.19.144.0/21 6699 -195.19.152.0/22 6699 -195.19.156.0/23 6699 -195.19.158.0/24 61382 -195.19.159.0/24 6699 -195.19.160.0/19 6874 -195.19.192.0/24 39741 -195.19.193.0/24 61378 -195.19.194.0/24 61382 -195.19.197.0/24 61041 -195.19.198.0/24 41082 -195.19.200.0/21 5433 -195.19.208.0/24 200847 -195.19.209.0/24 61379 -195.19.210.0/24 199602 -195.19.211.0/24 34561 -195.19.212.0/24 61291 -195.19.213.0/24 61325 -195.19.214.0/24 61197 -195.19.215.0/24 199572 -195.19.216.0/24 60363 -195.19.217.0/24 39811 -195.19.218.0/24 199546 -195.19.219.0/24 61305 -195.19.220.0/24 44310 -195.19.221.0/24 200463 -195.19.222.0/23 61285 -195.19.224.0/19 5495 -195.20.0.0/22 41322 -195.20.4.0/22 51380 -195.20.8.0/22 48635 -195.20.12.0/22 43424 -195.20.16.0/22 42297 -195.20.20.0/22 48918 -195.20.24.0/22 41352 -195.20.28.0/22 8654 -195.20.32.0/24 48921 -195.20.34.0/24 31624 -195.20.40.0/21 31624 -195.20.48.0/21 31624 -195.20.64.0/19 12312 -195.20.96.0/23 13307 -195.20.98.0/23 50113 -195.20.102.0/23 57803 -195.20.104.0/23 50113 -195.20.106.0/24 31079 -195.20.108.0/23 25369 -195.20.110.0/23 25410 -195.20.112.0/23 12312 -195.20.116.0/23 25391 -195.20.118.0/24 204144 -195.20.119.0/24 25437 -195.20.120.0/23 5401 -195.20.122.0/24 61063 -195.20.123.0/24 197396 -195.20.124.0/23 25403 -195.20.126.0/23 25444 -195.20.128.0/24 52163 -195.20.129.0/24 52111 -195.20.130.0/24 197512 -195.20.131.0/24 197513 -195.20.132.0/24 6830 -195.20.133.0/24 52113 -195.20.134.0/24 52123 -195.20.135.0/24 52118 -195.20.136.0/24 52196 -195.20.137.0/24 49558 -195.20.138.0/24 205288 -195.20.139.0/24 56424 -195.20.140.0/24 3253 -195.20.141.0/24 44592 -195.20.142.0/24 197511 -195.20.144.0/24 52144 -195.20.145.0/24 39737 -195.20.146.0/24 208316 -195.20.147.0/24 197525 -195.20.148.0/24 52151 -195.20.149.0/24 199508 -195.20.150.0/24 196926 -195.20.151.0/24 197517 -195.20.152.0/24 197523 -195.20.153.0/24 197521 -195.20.154.0/24 197520 -195.20.155.0/24 197320 -195.20.156.0/24 52149 -195.20.157.0/24 15404 -195.20.158.0/24 199015 -195.20.159.0/24 20647 -195.20.160.0/19 8264 -195.20.192.0/23 6758 -195.20.194.0/23 201224 -195.20.196.0/23 41938 -195.20.198.0/23 15847 -195.20.200.0/23 59611 -195.20.202.0/23 48161 -195.20.204.0/23 62370 -195.20.206.0/23 43948 -195.20.210.0/23 42063 -195.20.212.0/23 61134 -195.20.216.0/23 60295 -195.20.218.0/23 44124 -195.20.220.0/23 42249 -195.20.223.0/24 8220 -195.20.224.0/19 8560 -195.21.0.0/16 3257 -195.22.0.0/19 8426 -195.22.32.0/19 5588 -195.22.64.0/19 3246 -195.22.96.0/22 30731 -195.22.100.0/22 42093 -195.22.104.0/22 42104 -195.22.108.0/22 56489 -195.22.112.0/22 24893 -195.22.116.0/22 42153 -195.22.120.0/24 197763 -195.22.121.0/24 56640 -195.22.123.0/24 197808 -195.22.128.0/23 9153 -195.22.130.0/23 25498 -195.22.132.0/23 25503 -195.22.136.0/23 28932 -195.22.140.0/23 25385 -195.22.142.0/23 8489 -195.22.144.0/23 8361 -195.22.146.0/24 29084 -195.22.148.0/24 47196 -195.22.150.0/23 20955 -195.22.152.0/23 47196 -195.22.154.0/23 42365 -195.22.158.0/24 21346 -195.22.160.0/21 8764 -195.22.168.0/22 8764 -195.22.172.0/24 8764 -195.22.173.0/24 24825 -195.22.174.0/23 8764 -195.22.176.0/21 8764 -195.22.184.0/22 8764 -195.22.188.0/23 8764 -195.22.191.0/24 8764 -195.22.192.0/19 6762 -195.22.224.0/19 25454 -195.23.0.0/16 2860 -195.24.0.0/21 702 -195.24.8.0/24 702 -195.24.9.0/24 27311 -195.24.10.0/23 702 -195.24.12.0/22 702 -195.24.16.0/20 702 -195.24.32.0/20 8717 -195.24.48.0/22 8717 -195.24.52.0/23 8717 -195.24.54.0/24 41313 -195.24.55.0/24 8717 -195.24.56.0/24 8717 -195.24.57.0/24 29580 -195.24.58.0/23 8717 -195.24.60.0/22 8717 -195.24.64.0/21 48287 -195.24.72.0/21 5577 -195.24.88.0/21 25374 -195.24.96.0/19 5539 -195.24.128.0/22 6702 -195.24.132.0/24 60746 -195.24.133.0/24 6702 -195.24.134.0/23 6702 -195.24.136.0/22 6702 -195.24.140.0/24 6702 -195.24.141.0/24 199440 -195.24.142.0/23 6702 -195.24.144.0/20 6702 -195.24.160.0/19 39648 -195.24.192.0/19 15964 -195.24.224.0/23 29468 -195.24.226.0/23 62121 -195.24.228.0/23 21275 -195.24.230.0/23 20860 -195.24.234.0/23 35144 -195.24.236.0/23 29652 -195.24.238.0/23 44983 -195.24.240.0/23 8317 -195.24.242.0/23 20833 -195.24.246.0/23 15422 -195.24.248.0/23 59670 -195.24.252.0/23 45042 -195.24.254.0/23 16323 -195.25.0.0/18 3215 -195.25.64.0/21 3215 -195.25.72.0/22 3215 -195.25.76.0/23 3215 -195.25.78.0/24 3215 -195.25.79.0/24 24954 -195.25.80.0/24 24954 -195.25.81.0/24 3215 -195.25.82.0/23 3215 -195.25.84.0/22 3215 -195.25.88.0/21 3215 -195.25.96.0/19 3215 -195.25.128.0/17 3215 -195.26.0.0/23 16150 -195.26.2.0/23 25428 -195.26.4.0/23 5577 -195.26.12.0/23 48559 -195.26.14.0/23 208778 -195.26.16.0/23 25448 -195.26.20.0/23 64421 -195.26.22.0/23 20938 -195.26.25.0/24 47232 -195.26.26.0/23 34007 -195.26.28.0/23 12939 -195.26.30.0/23 28736 -195.26.32.0/19 21267 -195.26.64.0/22 41285 -195.26.68.0/22 202311 -195.26.72.0/22 29314 -195.26.76.0/22 41266 -195.26.80.0/22 28761 -195.26.84.0/22 41288 -195.26.88.0/22 198047 -195.26.92.0/23 51903 -195.26.94.0/23 41320 -195.26.96.0/23 20952 -195.26.98.0/23 50056 -195.26.100.0/22 20952 -195.26.104.0/21 20952 -195.26.112.0/20 20952 -195.26.128.0/19 6821 -195.26.160.0/21 8507 -195.26.168.0/24 8507 -195.26.169.0/24 56631 -195.26.170.0/23 8507 -195.26.172.0/22 8507 -195.26.176.0/23 8507 -195.26.178.0/24 56631 -195.26.179.0/24 8507 -195.26.180.0/22 8507 -195.26.184.0/21 8507 -195.26.192.0/19 8245 -195.26.224.0/19 8897 -195.27.0.0/17 1273 -195.27.128.0/19 1273 -195.27.160.0/23 1273 -195.27.162.0/23 12888 -195.27.164.0/22 1273 -195.27.168.0/21 1273 -195.27.176.0/20 1273 -195.27.192.0/19 1273 -195.27.224.0/21 1273 -195.27.232.0/22 1273 -195.27.236.0/24 1273 -195.27.237.0/24 286 -195.27.238.0/23 1273 -195.27.240.0/20 1273 -195.28.0.0/23 198460 -195.28.2.0/23 39543 -195.28.4.0/23 44738 -195.28.8.0/23 198102 -195.28.10.0/23 201689 -195.28.12.0/23 31400 -195.28.14.0/23 44772 -195.28.16.0/23 44758 -195.28.18.0/23 44761 -195.28.22.0/23 43366 -195.28.24.0/23 28743 -195.28.26.0/23 43108 -195.28.28.0/23 47467 -195.28.30.0/23 44800 -195.28.32.0/20 8629 -195.28.48.0/20 60459 -195.28.64.0/19 8778 -195.28.96.0/19 8620 -195.28.128.0/19 8290 -195.28.160.0/23 5577 -195.28.162.0/23 60615 -195.28.164.0/23 31669 -195.28.166.0/23 33802 -195.28.168.0/23 201689 -195.28.170.0/23 29314 -195.28.172.0/23 25148 -195.28.174.0/23 33810 -195.28.176.0/23 33821 -195.28.178.0/23 207915 -195.28.180.0/23 12400 -195.28.182.0/23 15626 -195.28.184.0/23 33823 -195.28.186.0/23 56801 -195.28.188.0/23 33827 -195.28.190.0/23 1273 -195.28.192.0/19 197036 -195.28.224.0/19 8640 -195.29.0.0/18 5391 -195.29.64.0/20 5391 -195.29.80.0/21 5391 -195.29.88.0/23 5391 -195.29.90.0/24 5391 -195.29.91.0/24 21323 -195.29.92.0/22 5391 -195.29.96.0/19 5391 -195.29.128.0/21 5391 -195.29.136.0/23 5391 -195.29.138.0/24 5391 -195.29.139.0/24 15719 -195.29.140.0/22 5391 -195.29.144.0/20 5391 -195.29.160.0/19 5391 -195.29.192.0/20 5391 -195.29.208.0/21 5391 -195.29.216.0/24 39663 -195.29.217.0/24 5391 -195.29.218.0/23 5391 -195.29.220.0/22 5391 -195.29.224.0/19 5391 -195.30.0.0/16 5539 -195.31.0.0/16 3269 -195.32.12.0/22 45015 -195.32.16.0/21 60559 -195.32.24.0/22 202870 -195.32.28.0/22 20992 -195.32.32.0/19 205005 -195.32.64.0/22 202870 -195.32.68.0/24 3269 -195.32.69.0/24 21034 -195.32.72.0/21 45015 -195.32.80.0/20 21034 -195.32.96.0/21 204809 -195.32.106.0/24 3269 -195.32.107.0/24 20972 -195.32.108.0/22 20972 -195.32.128.0/17 20676 -195.33.0.0/19 2686 -195.33.32.0/23 6905 -195.33.34.0/23 2686 -195.33.48.0/20 2686 -195.33.64.0/18 2686 -195.33.128.0/23 2686 -195.33.130.0/24 2686 -195.33.131.0/24 6905 -195.33.132.0/22 2686 -195.33.136.0/22 2686 -195.33.140.0/24 6905 -195.33.141.0/24 2686 -195.33.142.0/23 2686 -195.33.144.0/21 2686 -195.33.152.0/22 2686 -195.33.156.0/24 6905 -195.33.157.0/24 2686 -195.33.158.0/23 2686 -195.33.160.0/19 2686 -195.33.192.0/23 34984 -195.33.194.0/24 34984 -195.33.198.0/24 197654 -195.33.200.0/23 34984 -195.33.202.0/24 49027 -195.33.203.0/24 34984 -195.33.204.0/22 34984 -195.33.208.0/22 34984 -195.33.213.0/24 34984 -195.33.215.0/24 34984 -195.33.216.0/24 34984 -195.33.218.0/23 34984 -195.33.220.0/22 34984 -195.33.224.0/22 34984 -195.33.228.0/24 34984 -195.33.233.0/24 34984 -195.33.236.0/23 34984 -195.33.238.0/24 34984 -195.33.239.0/24 52117 -195.33.240.0/21 34984 -195.33.248.0/24 34984 -195.33.250.0/23 34984 -195.33.253.0/24 34984 -195.34.0.0/20 8359 -195.34.16.0/23 8359 -195.34.18.0/23 41209 -195.34.20.0/24 8359 -195.34.21.0/24 44386 -195.34.22.0/23 8359 -195.34.24.0/21 8359 -195.34.32.0/19 8359 -195.34.64.0/23 12306 -195.34.66.0/23 207915 -195.34.68.0/23 42591 -195.34.70.0/23 199051 -195.34.72.0/23 41562 -195.34.74.0/23 41586 -195.34.76.0/23 44960 -195.34.78.0/23 41578 -195.34.80.0/23 24709 -195.34.82.0/23 45031 -195.34.84.0/23 42251 -195.34.86.0/23 41589 -195.34.88.0/23 41590 -195.34.90.0/23 43139 -195.34.92.0/24 25180 -195.34.94.0/23 30823 -195.34.96.0/24 8717 -195.34.97.0/24 51383 -195.34.98.0/23 62418 -195.34.100.0/22 8717 -195.34.104.0/22 8717 -195.34.108.0/24 8717 -195.34.109.0/24 29286 -195.34.110.0/23 8717 -195.34.112.0/24 21337 -195.34.113.0/24 8717 -195.34.114.0/23 8717 -195.34.116.0/22 43548 -195.34.120.0/22 8717 -195.34.124.0/23 29580 -195.34.126.0/23 8717 -195.34.128.0/19 6830 -195.34.160.0/19 8495 -195.34.192.0/22 39167 -195.34.196.0/22 20934 -195.34.200.0/22 30879 -195.34.204.0/22 39199 -195.34.212.0/22 43883 -195.34.216.0/22 31242 -195.34.220.0/22 47650 -195.34.224.0/19 8570 -195.35.64.0/24 21424 -195.35.66.0/24 15525 -195.35.68.0/22 15508 -195.35.72.0/21 15698 -195.35.80.0/24 15993 -195.35.81.0/24 57205 -195.35.82.0/23 1257 -195.35.84.0/24 196807 -195.35.85.0/24 51440 -195.35.86.0/24 44786 -195.35.87.0/24 15590 -195.35.88.0/23 15590 -195.35.90.0/23 15768 -195.35.98.0/24 49688 -195.35.99.0/24 15660 -195.35.100.0/24 34029 -195.35.101.0/24 13189 -195.35.102.0/24 49688 -195.35.103.0/24 41399 -195.35.105.0/24 6799 -195.35.106.0/24 48934 -195.35.107.0/24 12587 -195.35.108.0/24 49688 -195.35.109.0/24 50304 -195.35.110.0/23 15776 -195.35.114.0/23 201791 -195.35.116.0/23 15508 -195.35.120.0/24 8330 -195.35.121.0/24 3303 -195.35.122.0/24 15767 -195.35.123.0/24 2856 -195.35.124.0/23 15677 -195.35.126.0/24 15853 -195.35.128.0/17 33915 -195.36.0.0/18 5392 -195.36.64.0/20 15499 -195.36.80.0/24 15499 -195.36.81.0/24 3320 -195.36.82.0/23 15499 -195.36.84.0/22 15499 -195.36.88.0/23 15499 -195.36.90.0/23 3320 -195.36.92.0/22 15499 -195.36.96.0/21 15499 -195.36.104.0/24 3215 -195.36.105.0/24 15499 -195.36.106.0/23 15499 -195.36.108.0/22 15499 -195.36.112.0/21 56474 -195.36.120.0/22 198041 -195.36.124.0/22 15499 -195.36.128.0/17 5410 -195.37.0.0/16 680 -195.38.0.0/22 18530 -195.38.8.0/22 43312 -195.38.12.0/22 8886 -195.38.16.0/23 15458 -195.38.18.0/24 15458 -195.38.20.0/24 33933 -195.38.21.0/24 49688 -195.38.22.0/24 33878 -195.38.23.0/24 33903 -195.38.27.0/24 15590 -195.38.28.0/23 15773 -195.38.30.0/24 20521 -195.38.32.0/19 12389 -195.38.64.0/19 5413 -195.38.96.0/19 20845 -195.38.128.0/19 8426 -195.38.160.0/19 8511 -195.38.192.0/18 8426 -195.39.0.0/17 5588 -195.39.128.0/18 9155 -195.39.192.0/24 5413 -195.39.196.0/23 28907 -195.39.198.0/24 31083 -195.39.199.0/24 57344 -195.39.200.0/24 28880 -195.39.201.0/24 1764 -195.39.206.0/23 28912 -195.39.210.0/23 28926 -195.39.212.0/23 25374 -195.39.216.0/23 28978 -195.39.220.0/23 207921 -195.39.222.0/23 29010 -195.39.224.0/23 28967 -195.39.226.0/23 28961 -195.39.228.0/23 28991 -195.39.230.0/23 40976 -195.39.232.0/23 28974 -195.39.234.0/23 24868 -195.39.236.0/23 28953 -195.39.239.0/24 206613 -195.39.241.0/24 29618 -195.39.242.0/23 25526 -195.39.246.0/23 207921 -195.39.248.0/23 29128 -195.39.250.0/23 49088 -195.39.252.0/23 49088 -195.40.0.0/24 4589 -195.40.1.0/24 8190 -195.40.2.0/23 4589 -195.40.4.0/22 4589 -195.40.8.0/21 4589 -195.40.16.0/20 4589 -195.40.32.0/21 4589 -195.40.40.0/23 4589 -195.40.42.0/24 4589 -195.40.43.0/24 8190 -195.40.44.0/22 4589 -195.40.48.0/20 4589 -195.40.64.0/20 4589 -195.40.80.0/24 3257 -195.40.81.0/24 4589 -195.40.82.0/23 4589 -195.40.84.0/22 4589 -195.40.88.0/23 4589 -195.40.90.0/24 4589 -195.40.91.0/24 3257 -195.40.92.0/24 3257 -195.40.93.0/24 4589 -195.40.94.0/23 4589 -195.40.96.0/19 4589 -195.40.128.0/19 4589 -195.40.160.0/20 4589 -195.40.176.0/22 4589 -195.40.180.0/24 4589 -195.40.181.0/24 8190 -195.40.182.0/23 4589 -195.40.184.0/21 4589 -195.40.192.0/18 4589 -195.41.0.0/16 3292 -195.42.0.0/18 39771 -195.42.64.0/19 8359 -195.42.96.0/23 44704 -195.42.98.0/23 44732 -195.42.100.0/24 24603 -195.42.101.0/24 13101 -195.42.102.0/23 47143 -195.42.104.0/23 50168 -195.42.106.0/23 29081 -195.42.108.0/23 3209 -195.42.112.0/23 50434 -195.42.114.0/23 204119 -195.42.116.0/23 44719 -195.42.118.0/23 51288 -195.42.120.0/23 45031 -195.42.122.0/23 50214 -195.42.124.0/23 44726 -195.42.126.0/23 25229 -195.42.128.0/23 44605 -195.42.130.0/23 44629 -195.42.134.0/23 29063 -195.42.136.0/23 44628 -195.42.138.0/23 42094 -195.42.140.0/23 43118 -195.42.142.0/23 8739 -195.42.146.0/23 15673 -195.42.148.0/23 197161 -195.42.150.0/23 48854 -195.42.152.0/23 44959 -195.42.154.0/23 44693 -195.42.156.0/24 44688 -195.42.157.0/24 209666 -195.42.158.0/23 49436 -195.42.160.0/19 8515 -195.42.192.0/19 3246 -195.42.224.0/22 42707 -195.42.228.0/23 42707 -195.42.231.0/24 60855 -195.42.232.0/22 397044 -195.42.236.0/22 16365 -195.42.240.0/22 200279 -195.42.244.0/22 197637 -195.42.249.0/24 13274 -195.42.250.0/24 20675 -195.42.251.0/24 15422 -195.43.0.0/21 6879 -195.43.8.0/23 6879 -195.43.11.0/24 6879 -195.43.12.0/22 6879 -195.43.16.0/22 6879 -195.43.20.0/24 6879 -195.43.22.0/24 6879 -195.43.25.0/24 6879 -195.43.26.0/23 6879 -195.43.32.0/22 49966 -195.43.36.0/22 35041 -195.43.40.0/22 25505 -195.43.45.0/24 25464 -195.43.46.0/24 25464 -195.43.48.0/22 2134 -195.43.52.0/22 25516 -195.43.56.0/22 41872 -195.43.60.0/22 16175 -195.43.64.0/23 197114 -195.43.66.0/23 51101 -195.43.68.0/23 44315 -195.43.70.0/23 51197 -195.43.72.0/23 197091 -195.43.74.0/24 51090 -195.43.75.0/24 51354 -195.43.78.0/23 41795 -195.43.80.0/23 50873 -195.43.82.0/23 43513 -195.43.84.0/23 197099 -195.43.86.0/23 51349 -195.43.88.0/23 201785 -195.43.90.0/23 51136 -195.43.94.0/23 49505 -195.43.96.0/19 15965 -195.43.129.0/24 47353 -195.43.130.0/24 8220 -195.43.131.0/24 47360 -195.43.132.0/24 6799 -195.43.133.0/24 48222 -195.43.135.0/24 35769 -195.43.137.0/24 29684 -195.43.138.0/24 47869 -195.43.139.0/24 6830 -195.43.140.0/24 8652 -195.43.141.0/24 29686 -195.43.143.0/24 47466 -195.43.144.0/24 47457 -195.43.146.0/24 47475 -195.43.148.0/24 47415 -195.43.149.0/24 3330 -195.43.151.0/24 3301 -195.43.152.0/24 47411 -195.43.153.0/24 6830 -195.43.155.0/24 47490 -195.43.156.0/24 28978 -195.43.157.0/24 34282 -195.43.158.0/24 8455 -195.43.160.0/19 5602 -195.43.192.0/18 2119 -195.44.0.0/16 1273 -195.45.0.0/16 1267 -195.46.0.0/19 12361 -195.46.32.0/22 196953 -195.46.36.0/23 48659 -195.46.38.0/24 8315 -195.46.39.0/24 57926 -195.46.40.0/22 28815 -195.46.44.0/22 35244 -195.46.48.0/22 28786 -195.46.52.0/22 29163 -195.46.56.0/22 28790 -195.46.60.0/22 28792 -195.46.64.0/19 16160 -195.46.96.0/20 12389 -195.46.112.0/21 12389 -195.46.120.0/22 12389 -195.46.124.0/23 12389 -195.46.126.0/24 8382 -195.46.127.0/24 12389 -195.46.128.0/23 15924 -195.46.130.0/24 34117 -195.46.131.0/24 15924 -195.46.132.0/22 15924 -195.46.136.0/22 15924 -195.46.140.0/24 15924 -195.46.141.0/24 16069 -195.46.142.0/23 15924 -195.46.144.0/20 15924 -195.46.160.0/19 3216 -195.46.192.0/19 8784 -195.46.224.0/19 6661 -195.47.0.0/17 5588 -195.47.128.0/18 9158 -195.47.192.0/24 28912 -195.47.193.0/24 29366 -195.47.194.0/24 35758 -195.47.195.0/24 196624 -195.47.196.0/24 48347 -195.47.197.0/24 28933 -195.47.198.0/24 28934 -195.47.199.0/24 28929 -195.47.200.0/24 28998 -195.47.201.0/24 28950 -195.47.202.0/24 28975 -195.47.203.0/24 28793 -195.47.204.0/24 197010 -195.47.205.0/24 39648 -195.47.206.0/24 28935 -195.47.207.0/24 31398 -195.47.208.0/24 29162 -195.47.211.0/24 28985 -195.47.213.0/24 28951 -195.47.214.0/24 50402 -195.47.215.0/24 34762 -195.47.217.0/24 28981 -195.47.219.0/24 31445 -195.47.220.0/24 198200 -195.47.221.0/24 28977 -195.47.222.0/24 199213 -195.47.223.0/24 29016 -195.47.224.0/24 28984 -195.47.225.0/24 29026 -195.47.226.0/24 29051 -195.47.227.0/24 12741 -195.47.228.0/24 44667 -195.47.229.0/24 24679 -195.47.231.0/24 3303 -195.47.232.0/24 31043 -195.47.233.0/24 30850 -195.47.234.0/24 57968 -195.47.235.0/24 6881 -195.47.236.0/24 3352 -195.47.237.0/24 29019 -195.47.238.0/24 30893 -195.47.241.0/24 29092 -195.47.243.0/24 197663 -195.47.244.0/24 12703 -195.47.245.0/24 6730 -195.47.246.0/24 12741 -195.47.247.0/24 51468 -195.47.248.0/24 29130 -195.47.249.0/24 13043 -195.47.250.0/24 35196 -195.47.251.0/24 2830 -195.47.253.0/24 29067 -195.47.254.0/24 47698 -195.47.255.0/24 29355 -195.48.0.0/18 1836 -195.48.64.0/22 1836 -195.48.68.0/23 1836 -195.48.70.0/24 12649 -195.48.71.0/24 1836 -195.48.72.0/21 1836 -195.48.80.0/20 1836 -195.48.96.0/19 1836 -195.48.128.0/17 1836 -195.49.0.0/19 1836 -195.49.32.0/21 1836 -195.49.40.0/24 1836 -195.49.41.0/24 12649 -195.49.42.0/23 1836 -195.49.44.0/22 1836 -195.49.48.0/20 1836 -195.49.64.0/18 1836 -195.49.128.0/22 201626 -195.49.132.0/22 39473 -195.49.136.0/22 59752 -195.49.140.0/22 31216 -195.49.144.0/22 21472 -195.49.148.0/22 29074 -195.49.152.0/22 44946 -195.49.156.0/22 28932 -195.49.160.0/22 198612 -195.49.164.0/22 25529 -195.49.168.0/22 25549 -195.49.172.0/22 48871 -195.49.176.0/22 49650 -195.49.180.0/22 5413 -195.49.184.0/22 42516 -195.49.188.0/22 25373 -195.49.200.0/21 12507 -195.49.208.0/21 8430 -195.49.216.0/21 12777 -195.49.224.0/21 28674 -195.49.232.0/22 200292 -195.49.236.0/23 34984 -195.49.238.0/24 198325 -195.49.240.0/21 28854 -195.49.248.0/21 40984 -195.50.0.0/22 5498 -195.50.4.0/22 60330 -195.50.8.0/21 60330 -195.50.32.0/19 6834 -195.50.64.0/21 3356 -195.50.72.0/22 3356 -195.50.76.0/23 3356 -195.50.78.0/23 3549 -195.50.80.0/20 3356 -195.50.96.0/23 3356 -195.50.98.0/24 10753 -195.50.99.0/24 3356 -195.50.100.0/22 3356 -195.50.104.0/22 3356 -195.50.108.0/24 3356 -195.50.109.0/24 24867 -195.50.110.0/23 3356 -195.50.112.0/20 3356 -195.50.128.0/18 3209 -195.50.192.0/18 3249 -195.52.0.0/16 12312 -195.53.0.0/19 3352 -195.53.32.0/21 3352 -195.53.40.0/22 201976 -195.53.44.0/22 3352 -195.53.48.0/20 3352 -195.53.64.0/18 3352 -195.53.128.0/23 31418 -195.53.130.0/23 3352 -195.53.132.0/22 3352 -195.53.136.0/21 3352 -195.53.144.0/20 3352 -195.53.160.0/20 3352 -195.53.176.0/24 3352 -195.53.177.0/24 204705 -195.53.178.0/23 3352 -195.53.180.0/22 3352 -195.53.184.0/21 3352 -195.53.192.0/20 3352 -195.53.208.0/22 3352 -195.53.212.0/24 3352 -195.53.213.0/24 25261 -195.53.214.0/23 3352 -195.53.216.0/24 3352 -195.53.217.0/24 30846 -195.53.218.0/23 3352 -195.53.220.0/22 3352 -195.53.224.0/19 3352 -195.54.0.0/21 12389 -195.54.8.0/23 12389 -195.54.10.0/23 34291 -195.54.12.0/22 12389 -195.54.16.0/20 12389 -195.54.32.0/23 28753 -195.54.34.0/23 61157 -195.54.36.0/23 51222 -195.54.38.0/23 61147 -195.54.40.0/23 47656 -195.54.42.0/23 197152 -195.54.44.0/23 51189 -195.54.46.0/23 196980 -195.54.48.0/24 12516 -195.54.50.0/23 51203 -195.54.52.0/23 197131 -195.54.54.0/23 51474 -195.54.60.0/23 51233 -195.54.62.0/23 13273 -195.54.64.0/19 702 -195.54.96.0/19 2119 -195.54.128.0/19 3246 -195.54.162.0/24 21100 -195.54.163.0/24 15626 -195.54.164.0/23 50472 -195.54.166.0/23 49505 -195.54.168.0/23 51171 -195.54.172.0/23 199236 -195.54.176.0/23 51147 -195.54.180.0/23 197118 -195.54.182.0/23 3301 -195.54.184.0/22 196969 -195.54.188.0/23 196969 -195.54.190.0/23 52152 -195.54.192.0/19 8331 -195.54.224.0/19 8607 -195.55.0.0/20 3352 -195.55.16.0/21 3352 -195.55.24.0/22 3352 -195.55.28.0/24 3352 -195.55.29.0/24 174 -195.55.30.0/23 3352 -195.55.32.0/21 3352 -195.55.40.0/22 3352 -195.55.44.0/24 206046 -195.55.45.0/24 3352 -195.55.46.0/23 3352 -195.55.48.0/20 3352 -195.55.64.0/24 8659 -195.55.65.0/24 3352 -195.55.66.0/23 3352 -195.55.68.0/22 3352 -195.55.72.0/23 3352 -195.55.74.0/24 6813 -195.55.75.0/24 3352 -195.55.76.0/22 3352 -195.55.80.0/20 3352 -195.55.96.0/21 3352 -195.55.104.0/22 16371 -195.55.108.0/22 3352 -195.55.112.0/20 3352 -195.55.128.0/19 3352 -195.55.160.0/21 3352 -195.55.168.0/22 3352 -195.55.172.0/23 3352 -195.55.174.0/24 44585 -195.55.175.0/24 3352 -195.55.176.0/20 3352 -195.55.192.0/21 3352 -195.55.200.0/22 3352 -195.55.204.0/24 3352 -195.55.205.0/24 44585 -195.55.206.0/23 3352 -195.55.208.0/20 3352 -195.55.224.0/19 3352 -195.56.0.0/19 5588 -195.56.32.0/21 5588 -195.56.40.0/22 5588 -195.56.44.0/24 28924 -195.56.45.0/24 5588 -195.56.46.0/23 5588 -195.56.48.0/20 5588 -195.56.64.0/22 5588 -195.56.68.0/24 25539 -195.56.69.0/24 5588 -195.56.70.0/23 5588 -195.56.72.0/21 5588 -195.56.80.0/20 5588 -195.56.96.0/22 5588 -195.56.100.0/24 5588 -195.56.101.0/24 30836 -195.56.102.0/23 5588 -195.56.104.0/21 5588 -195.56.112.0/21 5588 -195.56.120.0/22 5588 -195.56.124.0/23 47324 -195.56.126.0/23 5588 -195.56.128.0/21 5588 -195.56.136.0/22 5588 -195.56.140.0/24 5588 -195.56.141.0/24 30917 -195.56.142.0/23 5588 -195.56.144.0/23 5588 -195.56.146.0/24 5588 -195.56.147.0/24 28924 -195.56.148.0/22 5588 -195.56.152.0/21 5588 -195.56.160.0/21 5588 -195.56.168.0/23 5588 -195.56.170.0/24 43711 -195.56.171.0/24 5588 -195.56.172.0/24 43711 -195.56.173.0/24 5588 -195.56.174.0/23 5588 -195.56.176.0/20 5588 -195.56.192.0/22 5588 -195.56.196.0/23 5588 -195.56.198.0/24 5588 -195.56.199.0/24 41694 -195.56.200.0/21 5588 -195.56.208.0/20 5588 -195.56.224.0/19 5588 -195.57.0.0/19 3352 -195.57.32.0/21 3352 -195.57.40.0/23 3352 -195.57.42.0/24 3352 -195.57.43.0/24 197478 -195.57.44.0/22 3352 -195.57.48.0/20 3352 -195.57.64.0/18 3352 -195.57.128.0/24 43697 -195.57.129.0/24 3352 -195.57.130.0/23 3352 -195.57.132.0/22 3352 -195.57.136.0/21 3352 -195.57.144.0/20 3352 -195.57.160.0/19 3352 -195.57.192.0/19 3352 -195.57.224.0/20 3352 -195.57.240.0/21 3352 -195.57.248.0/22 3352 -195.57.252.0/24 3352 -195.57.253.0/24 43697 -195.57.254.0/23 3352 -195.58.0.0/19 3253 -195.58.33.0/24 48347 -195.58.34.0/23 21453 -195.58.37.0/24 21453 -195.58.38.0/23 21453 -195.58.40.0/21 21453 -195.58.48.0/23 21453 -195.58.50.0/24 21453 -195.58.51.0/24 2118 -195.58.56.0/21 44391 -195.58.96.0/19 2119 -195.58.128.0/19 2529 -195.58.160.0/19 6830 -195.58.192.0/19 8426 -195.58.224.0/19 8343 -195.59.0.0/16 1273 -195.60.0.0/19 8689 -195.60.64.0/23 196826 -195.60.66.0/23 39747 -195.60.68.0/23 39731 -195.60.70.0/23 39762 -195.60.72.0/23 39732 -195.60.74.0/24 35268 -195.60.75.0/24 39734 -195.60.76.0/23 3223 -195.60.78.0/23 39745 -195.60.86.0/24 12658 -195.60.96.0/19 12371 -195.60.128.0/19 9104 -195.60.160.0/23 3292 -195.60.162.0/23 8339 -195.60.164.0/23 62217 -195.60.168.0/23 198395 -195.60.174.0/23 34814 -195.60.178.0/23 39082 -195.60.180.0/23 8767 -195.60.182.0/24 34086 -195.60.183.0/24 39268 -195.60.184.0/23 39127 -195.60.186.0/23 39100 -195.60.188.0/23 39104 -195.60.190.0/23 39120 -195.60.192.0/22 42346 -195.60.196.0/23 39097 -195.60.200.0/23 39096 -195.60.204.0/22 57732 -195.60.212.0/22 20847 -195.60.216.0/22 41299 -195.60.220.0/22 57268 -195.60.224.0/23 39528 -195.60.226.0/24 24940 -195.60.227.0/24 197498 -195.60.228.0/22 29074 -195.60.232.0/22 39159 -195.60.240.0/23 198232 -195.60.242.0/24 198232 -195.60.244.0/22 25549 -195.60.248.0/22 16062 -195.60.252.0/22 41369 -195.61.0.0/17 51964 -195.61.128.0/20 51964 -195.61.144.0/20 5511 -195.61.160.0/19 51964 -195.61.192.0/18 51964 -195.62.0.0/21 31738 -195.62.10.0/23 20860 -195.62.12.0/23 48760 -195.62.14.0/23 31725 -195.62.16.0/23 16160 -195.62.18.0/23 43842 -195.62.20.0/23 30962 -195.62.24.0/24 62206 -195.62.25.0/24 50751 -195.62.26.0/23 20751 -195.62.28.0/23 198047 -195.62.30.0/23 49794 -195.62.32.0/23 44592 -195.62.34.0/24 199901 -195.62.35.0/24 58183 -195.62.36.0/23 41867 -195.62.38.0/23 24811 -195.62.40.0/23 44856 -195.62.42.0/23 8487 -195.62.44.0/23 47215 -195.62.46.0/24 207842 -195.62.47.0/24 207918 -195.62.48.0/23 44804 -195.62.50.0/23 43424 -195.62.52.0/23 44812 -195.62.54.0/23 29497 -195.62.56.0/23 44830 -195.62.58.0/23 44849 -195.62.60.0/23 44848 -195.62.62.0/23 34739 -195.62.64.0/23 47329 -195.62.66.0/23 47287 -195.62.68.0/23 31511 -195.62.70.0/23 47257 -195.62.72.0/23 35189 -195.62.74.0/23 204371 -195.62.76.0/23 47953 -195.62.78.0/23 47259 -195.62.80.0/23 47274 -195.62.82.0/23 20847 -195.62.84.0/23 43002 -195.62.88.0/23 47263 -195.62.92.0/23 42394 -195.62.94.0/23 47291 -195.62.96.0/19 8648 -195.62.128.0/19 20910 -195.62.160.0/19 31638 -195.62.192.0/19 6717 -195.62.224.0/19 15589 -195.63.0.0/16 12312 -195.64.0.0/19 1901 -195.64.32.0/19 4589 -195.64.64.0/20 12871 -195.64.80.0/20 3265 -195.64.96.0/19 8805 -195.64.130.0/23 202860 -195.64.132.0/23 35371 -195.64.134.0/23 42059 -195.64.136.0/23 42095 -195.64.138.0/23 42085 -195.64.140.0/23 25408 -195.64.142.0/23 29128 -195.64.144.0/23 8473 -195.64.146.0/23 8437 -195.64.148.0/23 42126 -195.64.150.0/23 29649 -195.64.152.0/24 39737 -195.64.154.0/23 197726 -195.64.156.0/23 48711 -195.64.160.0/23 41093 -195.64.162.0/23 48892 -195.64.164.0/23 34173 -195.64.166.0/23 41115 -195.64.170.0/23 44958 -195.64.172.0/23 41125 -195.64.174.0/23 59444 -195.64.176.0/23 8881 -195.64.178.0/23 34711 -195.64.180.0/23 41293 -195.64.182.0/23 197144 -195.64.184.0/23 49570 -195.64.186.0/23 41140 -195.64.188.0/23 41169 -195.64.190.0/23 41150 -195.64.192.0/21 5563 -195.64.200.0/22 5563 -195.64.204.0/23 5563 -195.64.206.0/24 5563 -195.64.207.0/24 207093 -195.64.208.0/24 5563 -195.64.209.0/24 39267 -195.64.210.0/23 5563 -195.64.212.0/22 5563 -195.64.216.0/21 5563 -195.64.224.0/22 8258 -195.64.228.0/23 8258 -195.64.230.0/24 205459 -195.64.231.0/24 8258 -195.64.232.0/22 50115 -195.64.236.0/23 199313 -195.64.238.0/23 8258 -195.64.240.0/20 8258 -195.65.0.0/24 199642 -195.65.1.0/24 3303 -195.65.2.0/23 3303 -195.65.4.0/22 3303 -195.65.8.0/21 3303 -195.65.16.0/21 3303 -195.65.24.0/24 201870 -195.65.25.0/24 3303 -195.65.26.0/23 3303 -195.65.28.0/22 3303 -195.65.32.0/24 3303 -195.65.33.0/24 201870 -195.65.34.0/23 3303 -195.65.36.0/24 3303 -195.65.37.0/24 47299 -195.65.38.0/23 3303 -195.65.40.0/23 3303 -195.65.42.0/24 3303 -195.65.43.0/24 209494 -195.65.44.0/23 3303 -195.65.46.0/24 3303 -195.65.47.0/24 51820 -195.65.48.0/20 3303 -195.65.64.0/20 3303 -195.65.80.0/21 3303 -195.65.88.0/22 3303 -195.65.92.0/24 3303 -195.65.93.0/24 50476 -195.65.94.0/23 3303 -195.65.96.0/22 3303 -195.65.100.0/23 3303 -195.65.102.0/24 3303 -195.65.103.0/24 30934 -195.65.104.0/21 3303 -195.65.112.0/20 3303 -195.65.128.0/21 3303 -195.65.136.0/22 3303 -195.65.140.0/23 3303 -195.65.142.0/24 206466 -195.65.143.0/24 3303 -195.65.144.0/22 3303 -195.65.148.0/24 29166 -195.65.149.0/24 3303 -195.65.150.0/23 3303 -195.65.152.0/21 3303 -195.65.160.0/19 3303 -195.65.192.0/18 3303 -195.66.0.0/21 9063 -195.66.8.0/21 24869 -195.66.16.0/21 31242 -195.66.24.0/21 35575 -195.66.32.0/19 2119 -195.66.64.0/24 39094 -195.66.65.0/24 39056 -195.66.66.0/24 39071 -195.66.67.0/24 199126 -195.66.68.0/24 39085 -195.66.69.0/24 43351 -195.66.70.0/24 5400 -195.66.72.0/24 39073 -195.66.73.0/24 13000 -195.66.74.0/24 12843 -195.66.75.0/24 39157 -195.66.76.0/24 39077 -195.66.77.0/24 39092 -195.66.78.0/24 39266 -195.66.79.0/24 39084 -195.66.80.0/24 39086 -195.66.81.0/24 4637 -195.66.82.0/24 197205 -195.66.83.0/24 3209 -195.66.84.0/24 39119 -195.66.85.0/24 24951 -195.66.86.0/24 39109 -195.66.87.0/24 35196 -195.66.88.0/24 39112 -195.66.89.0/24 39121 -195.66.90.0/24 42836 -195.66.91.0/24 197999 -195.66.92.0/24 39460 -195.66.93.0/24 29693 -195.66.94.0/24 39137 -195.66.95.0/24 8473 -195.66.96.0/24 44810 -195.66.97.0/24 44829 -195.66.98.0/24 44855 -195.66.99.0/24 198333 -195.66.100.0/24 25233 -195.66.101.0/24 44852 -195.66.102.0/24 61157 -195.66.104.0/24 207577 -195.66.105.0/24 44837 -195.66.106.0/24 44839 -195.66.107.0/24 5488 -195.66.108.0/24 49913 -195.66.109.0/24 33796 -195.66.110.0/24 198085 -195.66.112.0/24 197914 -195.66.113.0/24 44867 -195.66.114.0/24 50113 -195.66.115.0/24 47377 -195.66.116.0/24 44860 -195.66.117.0/24 15559 -195.66.119.0/24 29092 -195.66.120.0/24 60781 -195.66.121.0/24 42184 -195.66.122.0/24 12312 -195.66.123.0/24 6830 -195.66.124.0/24 44909 -195.66.125.0/24 44886 -195.66.126.0/24 34629 -195.66.127.0/24 47310 -195.66.128.0/23 15505 -195.66.130.0/23 13189 -195.66.132.0/24 36057 -195.66.133.0/24 60281 -195.66.134.0/23 39022 -195.66.136.0/23 39049 -195.66.138.0/23 39047 -195.66.140.0/23 39027 -195.66.142.0/23 36791 -195.66.144.0/23 44856 -195.66.146.0/23 8870 -195.66.148.0/23 61337 -195.66.150.0/23 200521 -195.66.152.0/23 16281 -195.66.154.0/24 49871 -195.66.156.0/23 39043 -195.66.158.0/23 39062 -195.66.160.0/19 8585 -195.66.192.0/20 8192 -195.66.208.0/22 8192 -195.66.212.0/22 34661 -195.66.216.0/21 34661 -195.66.232.0/22 5459 -195.66.240.0/22 5459 -195.66.248.0/22 5459 -195.66.254.0/23 5459 -195.67.0.0/16 3301 -195.68.0.0/17 8220 -195.68.128.0/19 3216 -195.68.160.0/24 3216 -195.68.161.0/24 21483 -195.68.162.0/23 3216 -195.68.164.0/22 3216 -195.68.168.0/21 3216 -195.68.176.0/20 3216 -195.68.192.0/23 29023 -195.68.194.0/23 56774 -195.68.196.0/23 29044 -195.68.198.0/24 29042 -195.68.200.0/23 29080 -195.68.202.0/23 29074 -195.68.204.0/23 3320 -195.68.206.0/24 9153 -195.68.208.0/23 29310 -195.68.210.0/23 29095 -195.68.212.0/23 29395 -195.68.214.0/23 20657 -195.68.216.0/23 29187 -195.68.218.0/23 16281 -195.68.222.0/23 29146 -195.68.224.0/22 52212 -195.68.228.0/23 12703 -195.68.230.0/23 16160 -195.68.232.0/23 34937 -195.68.234.0/23 35328 -195.68.236.0/23 29178 -195.68.238.0/23 34253 -195.68.240.0/23 57233 -195.68.242.0/23 20473 -195.68.244.0/24 44953 -195.68.245.0/24 48051 -195.68.246.0/23 29141 -195.68.250.0/23 29246 -195.68.252.0/24 43797 -195.69.0.0/18 2119 -195.69.64.0/23 199945 -195.69.66.0/24 199945 -195.69.67.0/24 44423 -195.69.68.0/22 29082 -195.69.72.0/22 31673 -195.69.76.0/24 29116 -195.69.77.0/24 209709 -195.69.78.0/24 209709 -195.69.84.0/22 29107 -195.69.88.0/22 24589 -195.69.92.0/22 21448 -195.69.96.0/22 29121 -195.69.102.0/24 61323 -195.69.108.0/22 24750 -195.69.112.0/22 8767 -195.69.120.0/22 29210 -195.69.124.0/22 29227 -195.69.128.0/22 207199 -195.69.132.0/22 6703 -195.69.136.0/22 200327 -195.69.140.0/22 207640 -195.69.144.0/22 1200 -195.69.148.0/22 28927 -195.69.156.0/22 8775 -195.69.160.0/22 30823 -195.69.164.0/22 49699 -195.69.168.0/22 196797 -195.69.172.0/24 1764 -195.69.174.0/24 1764 -195.69.175.0/24 19905 -195.69.176.0/23 3326 -195.69.178.0/24 21219 -195.69.179.0/24 3326 -195.69.180.0/22 200501 -195.69.184.0/23 21500 -195.69.186.0/24 21500 -195.69.187.0/24 60455 -195.69.188.0/23 28910 -195.69.190.0/24 28910 -195.69.192.0/22 25011 -195.69.196.0/22 34668 -195.69.200.0/22 29031 -195.69.204.0/22 198384 -195.69.208.0/22 25070 -195.69.212.0/22 29016 -195.69.216.0/22 29196 -195.69.220.0/22 28996 -195.69.224.0/22 56510 -195.69.228.0/23 202316 -195.69.230.0/24 202316 -195.69.236.0/22 196797 -195.69.240.0/22 29066 -195.69.246.0/24 3255 -195.69.248.0/22 50204 -195.69.252.0/22 210007 -195.70.0.0/20 12333 -195.70.16.0/21 12333 -195.70.24.0/22 12333 -195.70.28.0/24 12333 -195.70.29.0/24 48590 -195.70.30.0/23 12333 -195.70.32.0/19 5588 -195.70.64.0/19 5413 -195.70.96.0/19 8445 -195.70.128.0/19 5588 -195.70.160.0/19 3292 -195.70.192.0/19 5495 -195.70.224.0/19 8437 -195.71.0.0/16 6805 -195.72.0.0/19 16160 -195.72.32.0/19 8457 -195.72.64.0/19 3257 -195.72.96.0/20 50595 -195.72.112.0/24 15534 -195.72.113.0/24 5500 -195.72.115.0/24 29129 -195.72.118.0/24 204501 -195.72.119.0/24 204500 -195.72.120.0/23 51942 -195.72.122.0/23 51849 -195.72.124.0/22 8283 -195.72.128.0/22 6908 -195.72.132.0/22 13008 -195.72.136.0/22 8426 -195.72.140.0/22 39303 -195.72.144.0/22 39247 -195.72.148.0/22 39255 -195.72.152.0/22 39286 -195.72.156.0/22 39300 -195.72.160.0/19 8844 -195.72.192.0/19 8224 -195.72.224.0/19 8443 -195.73.0.0/16 1136 -195.74.0.0/19 790 -195.74.32.0/22 3292 -195.74.36.0/22 35041 -195.74.40.0/22 31184 -195.74.44.0/22 42197 -195.74.48.0/22 42177 -195.74.52.0/22 60945 -195.74.56.0/22 43939 -195.74.60.0/23 29676 -195.74.62.0/23 48527 -195.74.64.0/24 59471 -195.74.65.0/24 209637 -195.74.66.0/24 15830 -195.74.67.0/24 41283 -195.74.68.0/24 41246 -195.74.69.0/24 44080 -195.74.70.0/24 205186 -195.74.71.0/24 39464 -195.74.72.0/24 35004 -195.74.73.0/24 198296 -195.74.74.0/24 41258 -195.74.76.0/24 198605 -195.74.77.0/24 50213 -195.74.78.0/24 42890 -195.74.79.0/24 41312 -195.74.80.0/24 35625 -195.74.81.0/24 41277 -195.74.82.0/24 41892 -195.74.83.0/24 15768 -195.74.84.0/24 41279 -195.74.85.0/24 13306 -195.74.87.0/24 28685 -195.74.90.0/24 60781 -195.74.91.0/24 41297 -195.74.92.0/24 41358 -195.74.93.0/24 57315 -195.74.94.0/24 42652 -195.74.95.0/24 41389 -195.74.96.0/19 8468 -195.74.128.0/19 8586 -195.74.160.0/19 8519 -195.74.192.0/19 5432 -195.74.224.0/19 1241 -195.75.0.0/16 2686 -195.76.0.0/21 3352 -195.76.8.0/24 3352 -195.76.9.0/24 31627 -195.76.10.0/23 3352 -195.76.12.0/22 3352 -195.76.16.0/23 3352 -195.76.18.0/24 3352 -195.76.19.0/24 2134 -195.76.20.0/22 3352 -195.76.24.0/21 3352 -195.76.32.0/19 3352 -195.76.64.0/18 3352 -195.76.128.0/17 3352 -195.77.0.0/24 60493 -195.77.1.0/24 3352 -195.77.2.0/23 3352 -195.77.4.0/22 3352 -195.77.8.0/21 3352 -195.77.16.0/20 3352 -195.77.32.0/19 3352 -195.77.64.0/18 3352 -195.77.128.0/19 3352 -195.77.160.0/23 204748 -195.77.162.0/23 3352 -195.77.164.0/22 3352 -195.77.168.0/21 3352 -195.77.176.0/20 3352 -195.77.192.0/22 3352 -195.77.196.0/24 3352 -195.77.197.0/24 202233 -195.77.198.0/23 3352 -195.77.200.0/21 3352 -195.77.208.0/20 3352 -195.77.224.0/20 3352 -195.77.240.0/23 3352 -195.77.242.0/24 208726 -195.77.243.0/24 3352 -195.77.244.0/22 3352 -195.77.248.0/21 3352 -195.78.0.0/19 6758 -195.78.32.0/23 25277 -195.78.34.0/23 43540 -195.78.36.0/24 1257 -195.78.37.0/24 205788 -195.78.38.0/23 28773 -195.78.40.0/23 12581 -195.78.42.0/23 59485 -195.78.44.0/23 15962 -195.78.46.0/23 49808 -195.78.50.0/23 8220 -195.78.52.0/23 28857 -195.78.58.0/23 28858 -195.78.60.0/23 12714 -195.78.62.0/23 24694 -195.78.64.0/23 41492 -195.78.66.0/23 41079 -195.78.68.0/23 41502 -195.78.70.0/23 41561 -195.78.72.0/23 41512 -195.78.74.0/23 9155 -195.78.76.0/23 5464 -195.78.78.0/23 41558 -195.78.80.0/23 41538 -195.78.82.0/24 20900 -195.78.83.0/24 208243 -195.78.84.0/23 41552 -195.78.86.0/23 6674 -195.78.88.0/23 41534 -195.78.90.0/23 203872 -195.78.92.0/23 41544 -195.78.94.0/23 12703 -195.78.96.0/23 196638 -195.78.98.0/23 205584 -195.78.100.0/23 50772 -195.78.102.0/23 49899 -195.78.104.0/23 50015 -195.78.106.0/23 50413 -195.78.108.0/23 202205 -195.78.110.0/23 49819 -195.78.112.0/23 49971 -195.78.114.0/23 196789 -195.78.116.0/23 31088 -195.78.118.0/23 202205 -195.78.122.0/23 12570 -195.78.124.0/23 41236 -195.78.126.0/23 47618 -195.78.128.0/22 3246 -195.78.132.0/24 3246 -195.78.160.0/19 12312 -195.78.192.0/19 5396 -195.78.224.0/22 45011 -195.78.228.0/22 39020 -195.78.232.0/22 25019 -195.78.236.0/22 51619 -195.78.240.0/22 174 -195.78.244.0/22 39065 -195.78.249.0/24 3320 -195.78.251.0/24 3320 -195.78.252.0/22 39066 -195.80.1.0/24 8468 -195.80.2.0/24 8468 -195.80.3.0/24 200994 -195.80.4.0/24 200994 -195.80.5.0/24 8468 -195.80.6.0/24 8468 -195.80.7.0/24 200994 -195.80.8.0/24 200994 -195.80.10.0/23 8468 -195.80.13.0/24 200994 -195.80.14.0/23 8468 -195.80.16.0/24 200994 -195.80.17.0/24 8468 -195.80.18.0/23 200994 -195.80.21.0/24 200994 -195.80.22.0/24 8468 -195.80.23.0/24 200994 -195.80.24.0/24 200994 -195.80.25.0/24 8468 -195.80.26.0/23 8468 -195.80.28.0/22 8468 -195.80.32.0/22 208770 -195.80.36.0/22 209175 -195.80.40.0/22 60893 -195.80.44.0/22 209085 -195.80.48.0/24 8100 -195.80.49.0/24 205220 -195.80.50.0/23 35029 -195.80.52.0/22 12897 -195.80.60.0/22 44466 -195.80.64.0/19 1273 -195.80.96.0/19 8240 -195.80.128.0/21 197227 -195.80.136.0/24 44661 -195.80.137.0/24 3301 -195.80.138.0/24 39410 -195.80.139.0/24 57191 -195.80.140.0/23 39315 -195.80.142.0/23 203785 -195.80.144.0/22 50947 -195.80.148.0/24 206804 -195.80.150.0/23 206804 -195.80.152.0/24 198545 -195.80.153.0/24 29152 -195.80.154.0/23 29152 -195.80.156.0/22 29152 -195.80.160.0/19 8778 -195.80.192.0/19 20676 -195.80.224.0/24 41636 -195.80.225.0/24 35186 -195.80.226.0/24 34427 -195.80.227.0/24 21050 -195.80.228.0/24 35195 -195.80.229.0/24 41959 -195.80.230.0/23 35913 -195.80.232.0/24 35245 -195.80.233.0/24 64462 -195.80.235.0/24 6730 -195.80.236.0/24 35232 -195.80.237.0/24 34209 -195.80.239.0/24 35242 -195.81.0.0/18 3257 -195.81.64.0/23 3257 -195.81.66.0/24 210238 -195.81.67.0/24 3257 -195.81.68.0/22 3257 -195.81.72.0/22 3257 -195.81.76.0/24 3257 -195.81.77.0/24 3291 -195.81.78.0/23 3257 -195.81.80.0/20 3257 -195.81.96.0/19 3257 -195.81.128.0/17 3257 -195.82.0.0/19 9198 -195.82.32.0/19 8375 -195.82.64.0/19 8469 -195.82.96.0/24 33941 -195.82.97.0/24 16509 -195.82.98.0/23 62235 -195.82.100.0/22 34977 -195.82.104.0/23 43160 -195.82.106.0/24 43160 -195.82.107.0/24 33941 -195.82.108.0/23 199391 -195.82.110.0/24 205941 -195.82.111.0/24 199391 -195.82.112.0/21 34977 -195.82.120.0/22 201337 -195.82.124.0/24 200845 -195.82.126.0/23 34977 -195.82.128.0/23 44846 -195.82.130.0/23 44861 -195.82.132.0/23 35913 -195.82.134.0/23 44941 -195.82.136.0/23 44857 -195.82.140.0/24 62358 -195.82.142.0/23 16176 -195.82.144.0/23 9006 -195.82.146.0/23 47105 -195.82.148.0/23 44875 -195.82.150.0/23 44892 -195.82.152.0/23 57739 -195.82.154.0/23 44905 -195.82.156.0/23 41787 -195.82.158.0/23 199610 -195.82.160.0/21 35434 -195.82.168.0/22 35434 -195.82.172.0/22 15744 -195.82.176.0/21 62031 -195.82.184.0/22 15744 -195.82.188.0/22 35434 -195.82.192.0/19 9158 -195.83.0.0/17 2200 -195.83.128.0/19 2200 -195.83.160.0/22 2200 -195.83.164.0/23 2200 -195.83.166.0/24 2072 -195.83.167.0/24 2200 -195.83.168.0/21 2200 -195.83.176.0/21 2200 -195.83.184.0/22 2200 -195.83.188.0/24 2470 -195.83.189.0/24 2471 -195.83.190.0/24 2199 -195.83.191.0/24 2200 -195.83.192.0/20 2200 -195.83.208.0/22 2200 -195.83.212.0/23 2200 -195.83.214.0/24 2199 -195.83.215.0/24 2200 -195.83.216.0/22 2200 -195.83.220.0/24 2200 -195.83.221.0/24 2072 -195.83.222.0/24 2072 -195.83.223.0/24 2200 -195.83.224.0/20 2200 -195.83.240.0/21 2200 -195.83.248.0/22 2200 -195.83.252.0/23 2200 -195.83.254.0/23 2199 -195.84.0.0/16 3246 -195.85.0.0/17 15411 -195.85.128.0/18 33915 -195.85.193.0/24 44268 -195.85.194.0/24 60781 -195.85.196.0/24 21328 -195.85.197.0/24 60781 -195.85.198.0/24 29102 -195.85.199.0/24 29103 -195.85.201.0/24 207709 -195.85.202.0/24 21032 -195.85.204.0/24 29139 -195.85.205.0/24 207709 -195.85.206.0/24 48349 -195.85.207.0/24 207709 -195.85.208.0/24 198491 -195.85.211.0/24 29267 -195.85.214.0/24 29181 -195.85.215.0/24 31287 -195.85.216.0/24 207709 -195.85.218.0/24 207786 -195.85.219.0/24 29186 -195.85.220.0/24 8426 -195.85.221.0/24 13200 -195.85.222.0/24 29192 -195.85.223.0/24 207786 -195.85.224.0/24 6453 -195.85.226.0/24 207786 -195.85.228.0/24 8652 -195.85.230.0/24 48859 -195.85.231.0/24 48347 -195.85.232.0/24 3257 -195.85.237.0/24 21080 -195.85.239.0/24 29324 -195.85.240.0/24 13039 -195.85.242.0/24 29221 -195.85.243.0/24 29223 -195.85.245.0/24 28792 -195.85.246.0/24 21474 -195.85.247.0/24 29199 -195.85.249.0/24 12877 -195.85.250.0/24 29249 -195.85.251.0/24 3292 -195.85.252.0/24 47404 -195.85.254.0/24 250 -195.85.255.0/24 29434 -195.86.0.0/18 4589 -195.86.64.0/19 4589 -195.86.96.0/20 4589 -195.86.112.0/21 4589 -195.86.120.0/24 4589 -195.86.121.0/24 3257 -195.86.122.0/23 4589 -195.86.124.0/22 4589 -195.86.128.0/17 4589 -195.87.0.0/20 15924 -195.87.16.0/23 15924 -195.87.18.0/24 58203 -195.87.19.0/24 15924 -195.87.20.0/23 15924 -195.87.22.0/24 43331 -195.87.23.0/24 15924 -195.87.24.0/21 15924 -195.87.32.0/21 15924 -195.87.40.0/22 15924 -195.87.44.0/23 15924 -195.87.46.0/24 15924 -195.87.47.0/24 34684 -195.87.48.0/24 15924 -195.87.49.0/24 34684 -195.87.50.0/23 15924 -195.87.52.0/22 15924 -195.87.56.0/21 15924 -195.87.64.0/20 15924 -195.87.80.0/22 15924 -195.87.84.0/23 15924 -195.87.86.0/24 8386 -195.87.87.0/24 15924 -195.87.88.0/22 15924 -195.87.92.0/24 199812 -195.87.93.0/24 15924 -195.87.94.0/23 15924 -195.87.96.0/20 15924 -195.87.112.0/24 8386 -195.87.113.0/24 15924 -195.87.114.0/23 15924 -195.87.116.0/22 15924 -195.87.120.0/21 15924 -195.87.128.0/21 15924 -195.87.136.0/22 15924 -195.87.140.0/23 15924 -195.87.142.0/24 8386 -195.87.143.0/24 15924 -195.87.144.0/21 15924 -195.87.152.0/24 15924 -195.87.153.0/24 8386 -195.87.154.0/23 15924 -195.87.156.0/23 8386 -195.87.158.0/23 15924 -195.87.160.0/24 15924 -195.87.161.0/24 8386 -195.87.162.0/23 15924 -195.87.164.0/22 15924 -195.87.168.0/21 15924 -195.87.176.0/20 15924 -195.87.192.0/20 15924 -195.87.208.0/22 15924 -195.87.212.0/22 43331 -195.87.216.0/21 15924 -195.87.224.0/21 15924 -195.87.232.0/22 15924 -195.87.236.0/24 15924 -195.87.237.0/24 43331 -195.87.238.0/24 15924 -195.87.239.0/24 58203 -195.87.240.0/20 15924 -195.88.0.0/23 24602 -195.88.2.0/23 59583 -195.88.4.0/23 34971 -195.88.6.0/23 48815 -195.88.8.0/23 62262 -195.88.10.0/23 8787 -195.88.12.0/23 34299 -195.88.14.0/23 204161 -195.88.16.0/23 41143 -195.88.18.0/23 21155 -195.88.20.0/23 44110 -195.88.22.0/23 48738 -195.88.24.0/23 197328 -195.88.26.0/23 48748 -195.88.28.0/23 49528 -195.88.34.0/23 1764 -195.88.36.0/23 3292 -195.88.38.0/23 49203 -195.88.40.0/23 196657 -195.88.42.0/23 48420 -195.88.44.0/23 41108 -195.88.46.0/23 48567 -195.88.48.0/23 8447 -195.88.50.0/23 48896 -195.88.52.0/23 196665 -195.88.54.0/23 2116 -195.88.56.0/23 197328 -195.88.58.0/23 44056 -195.88.60.0/23 48387 -195.88.62.0/23 48978 -195.88.64.0/23 15619 -195.88.66.0/23 48861 -195.88.68.0/23 196686 -195.88.70.0/23 48902 -195.88.72.0/23 48897 -195.88.74.0/23 48900 -195.88.76.0/23 48911 -195.88.78.0/23 48915 -195.88.80.0/23 50939 -195.88.82.0/23 5603 -195.88.84.0/23 48920 -195.88.86.0/23 16315 -195.88.90.0/23 196776 -195.88.92.0/23 196691 -195.88.94.0/24 29104 -195.88.96.0/23 48928 -195.88.98.0/23 48930 -195.88.100.0/23 48954 -195.88.102.0/23 48938 -195.88.106.0/23 206897 -195.88.108.0/23 57407 -195.88.110.0/23 51747 -195.88.112.0/23 196705 -195.88.114.0/23 48956 -195.88.116.0/23 12337 -195.88.118.0/23 49216 -195.88.120.0/23 48969 -195.88.122.0/23 199969 -195.88.124.0/23 48962 -195.88.126.0/23 49124 -195.88.128.0/23 13000 -195.88.130.0/23 43809 -195.88.132.0/23 48986 -195.88.136.0/23 48997 -195.88.138.0/23 48323 -195.88.140.0/24 48982 -195.88.141.0/24 31298 -195.88.142.0/23 44489 -195.88.144.0/23 198317 -195.88.148.0/23 49008 -195.88.152.0/23 15699 -195.88.154.0/23 49842 -195.88.156.0/24 206664 -195.88.158.0/23 49029 -195.88.160.0/23 43366 -195.88.164.0/23 5588 -195.88.166.0/23 48943 -195.88.170.0/23 34739 -195.88.174.0/23 47602 -195.88.176.0/23 196736 -195.88.178.0/23 49098 -195.88.180.0/24 29665 -195.88.182.0/24 35584 -195.88.183.0/24 49078 -195.88.184.0/23 49153 -195.88.186.0/23 49143 -195.88.192.0/23 49140 -195.88.194.0/23 30972 -195.88.196.0/24 204305 -195.88.197.0/24 203167 -195.88.198.0/23 49156 -195.88.200.0/23 49155 -195.88.202.0/23 56510 -195.88.204.0/23 201484 -195.88.208.0/23 44812 -195.88.214.0/23 49146 -195.88.216.0/23 49167 -195.88.220.0/23 49166 -195.88.222.0/23 49205 -195.88.228.0/23 39173 -195.88.236.0/23 49229 -195.88.238.0/23 29056 -195.88.240.0/23 49231 -195.88.242.0/23 197726 -195.88.244.0/23 49240 -195.88.248.0/23 196754 -195.88.250.0/24 57500 -195.88.251.0/24 198223 -195.88.252.0/23 49238 -195.88.254.0/23 210315 -195.89.0.0/22 1273 -195.89.4.0/23 1273 -195.89.6.0/24 1273 -195.89.7.0/24 202917 -195.89.8.0/22 1273 -195.89.12.0/24 1273 -195.89.13.0/24 51318 -195.89.14.0/23 1273 -195.89.16.0/20 1273 -195.89.32.0/19 1273 -195.89.64.0/18 1273 -195.89.128.0/17 1273 -195.90.0.0/19 20676 -195.90.32.0/19 7148 -195.90.64.0/19 5400 -195.90.98.0/24 62214 -195.90.100.0/23 3292 -195.90.102.0/23 199831 -195.90.104.0/23 206258 -195.90.106.0/23 39310 -195.90.108.0/23 5602 -195.90.110.0/23 39312 -195.90.112.0/23 41872 -195.90.116.0/22 35625 -195.90.120.0/23 39326 -195.90.122.0/23 207909 -195.90.124.0/23 39327 -195.90.126.0/23 31608 -195.90.128.0/18 6863 -195.90.193.0/24 42730 -195.90.194.0/23 42730 -195.90.196.0/22 42730 -195.90.200.0/21 42730 -195.90.208.0/20 42730 -195.90.224.0/19 42730 -195.91.0.0/17 6855 -195.91.128.0/21 8331 -195.91.136.0/22 8331 -195.91.140.0/23 43176 -195.91.142.0/23 42031 -195.91.144.0/22 43176 -195.91.148.0/22 8331 -195.91.152.0/21 8331 -195.91.160.0/19 8331 -195.91.192.0/18 8331 -195.92.0.0/18 1273 -195.92.64.0/20 1273 -195.92.80.0/21 1273 -195.92.88.0/24 49694 -195.92.89.0/24 1273 -195.92.90.0/23 1273 -195.92.92.0/22 1273 -195.92.96.0/19 1273 -195.92.128.0/17 1273 -195.93.128.0/23 21087 -195.93.130.0/23 20886 -195.93.132.0/23 44196 -195.93.134.0/23 21021 -195.93.136.0/23 44211 -195.93.138.0/23 31000 -195.93.140.0/23 208913 -195.93.142.0/23 41959 -195.93.144.0/23 51623 -195.93.148.0/23 44248 -195.93.150.0/23 44254 -195.93.152.0/23 48716 -195.93.154.0/23 44255 -195.93.156.0/23 44548 -195.93.158.0/23 8881 -195.93.160.0/23 207909 -195.93.162.0/23 44284 -195.93.164.0/23 42516 -195.93.166.0/23 50978 -195.93.168.0/23 198399 -195.93.170.0/23 44280 -195.93.174.0/23 12453 -195.93.176.0/23 28717 -195.93.180.0/23 48614 -195.93.182.0/23 28717 -195.93.184.0/24 43885 -195.93.186.0/23 44310 -195.93.188.0/23 44315 -195.93.190.0/23 15713 -195.93.192.0/23 44338 -195.93.194.0/23 44353 -195.93.196.0/24 41493 -195.93.197.0/24 48967 -195.93.198.0/23 198311 -195.93.200.0/23 44335 -195.93.202.0/23 31628 -195.93.204.0/23 44336 -195.93.206.0/23 44380 -195.93.210.0/23 44127 -195.93.212.0/23 207802 -195.93.216.0/23 48091 -195.93.218.0/23 31252 -195.93.220.0/23 44392 -195.93.222.0/23 21021 -195.93.224.0/23 49820 -195.93.228.0/23 44420 -195.93.230.0/24 34845 -195.93.231.0/24 5588 -195.93.232.0/23 2116 -195.93.234.0/23 44435 -195.93.238.0/23 30870 -195.93.240.0/23 44470 -195.93.244.0/23 44450 -195.93.246.0/23 44479 -195.93.250.0/23 41522 -195.93.254.0/23 44485 -195.94.0.0/20 12486 -195.94.16.0/21 12486 -195.94.24.0/23 12486 -195.94.26.0/24 198504 -195.94.27.0/24 198394 -195.94.28.0/24 198247 -195.94.29.0/24 198394 -195.94.30.0/23 12486 -195.94.32.0/19 3257 -195.94.64.0/19 8469 -195.94.96.0/21 12330 -195.94.104.0/22 12330 -195.94.108.0/22 201365 -195.94.112.0/20 39537 -195.94.128.0/18 5394 -195.94.192.0/21 5588 -195.94.200.0/23 5588 -195.94.202.0/24 42402 -195.94.203.0/24 5588 -195.94.204.0/22 5588 -195.94.208.0/20 5588 -195.94.224.0/19 8595 -195.95.0.0/17 5432 -195.95.129.0/24 34719 -195.95.131.0/24 25180 -195.95.132.0/24 34288 -195.95.135.0/24 30781 -195.95.137.0/24 40976 -195.95.138.0/24 39935 -195.95.139.0/24 41081 -195.95.142.0/24 39926 -195.95.143.0/24 22775 -195.95.144.0/24 25313 -195.95.145.0/24 39930 -195.95.146.0/24 41163 -195.95.147.0/24 57049 -195.95.148.0/24 3257 -195.95.150.0/24 3265 -195.95.152.0/24 35161 -195.95.153.0/24 6895 -195.95.156.0/24 57337 -195.95.157.0/24 40978 -195.95.158.0/24 41543 -195.95.159.0/24 48759 -195.95.160.0/24 30734 -195.95.161.0/24 49590 -195.95.162.0/24 6830 -195.95.163.0/24 24953 -195.95.164.0/24 31242 -195.95.165.0/24 47898 -195.95.167.0/24 40998 -195.95.168.0/24 35625 -195.95.171.0/24 41084 -195.95.172.0/24 41016 -195.95.173.0/24 41104 -195.95.174.0/24 41037 -195.95.175.0/24 41038 -195.95.176.0/24 199166 -195.95.177.0/24 8315 -195.95.178.0/24 41494 -195.95.179.0/24 43210 -195.95.181.0/24 3292 -195.95.183.0/24 41116 -195.95.184.0/24 51747 -195.95.186.0/24 5629 -195.95.187.0/24 41103 -195.95.188.0/24 41097 -195.95.191.0/24 41265 -195.95.192.0/22 16625 -195.95.196.0/23 34167 -195.95.198.0/23 35705 -195.95.200.0/23 34631 -195.95.202.0/23 13307 -195.95.204.0/23 58056 -195.95.206.0/23 34312 -195.95.208.0/23 16086 -195.95.210.0/23 34190 -195.95.212.0/23 34166 -195.95.214.0/23 34192 -195.95.216.0/23 49392 -195.95.218.0/24 57274 -195.95.219.0/24 48039 -195.95.220.0/23 3209 -195.95.222.0/23 34204 -195.95.224.0/23 34197 -195.95.226.0/23 34239 -195.95.228.0/23 12310 -195.95.230.0/23 51616 -195.95.232.0/23 25133 -195.95.234.0/23 34208 -195.95.236.0/23 33876 -195.95.238.0/23 42525 -195.95.240.0/22 42525 -195.95.244.0/22 24642 -195.95.248.0/23 24642 -195.95.252.0/23 34241 -195.95.255.0/24 3210 -195.96.0.0/19 8437 -195.96.32.0/19 8354 -195.96.64.0/20 8359 -195.96.80.0/23 8359 -195.96.82.0/24 208853 -195.96.83.0/24 8359 -195.96.84.0/22 8359 -195.96.88.0/21 8359 -195.96.96.0/19 5390 -195.96.160.0/19 6863 -195.96.192.0/19 8265 -195.96.224.0/19 8745 -195.97.0.0/19 3329 -195.97.32.0/20 3329 -195.97.48.0/22 3329 -195.97.52.0/24 12361 -195.97.53.0/24 3329 -195.97.54.0/23 3329 -195.97.56.0/21 3329 -195.97.64.0/18 3329 -195.97.128.0/18 3292 -195.97.192.0/18 6067 -195.98.0.0/19 5578 -195.98.32.0/19 8371 -195.98.64.0/19 6856 -195.98.96.0/19 15557 -195.98.128.0/19 6862 -195.98.160.0/19 8334 -195.98.192.0/19 8351 -195.98.224.0/23 2200 -195.98.226.0/23 2472 -195.98.228.0/23 2200 -195.98.230.0/24 2200 -195.98.231.0/24 2470 -195.98.232.0/24 2470 -195.98.233.0/24 2200 -195.98.234.0/23 2200 -195.98.236.0/22 2200 -195.98.240.0/20 2200 -195.99.0.0/21 2856 -195.99.8.0/21 6871 -195.99.16.0/20 2856 -195.99.32.0/19 6871 -195.99.64.0/20 5400 -195.99.80.0/21 2856 -195.99.88.0/21 6871 -195.99.96.0/19 2856 -195.99.128.0/18 2856 -195.99.192.0/19 2856 -195.99.224.0/20 6871 -195.99.240.0/20 2856 -195.100.0.0/20 5400 -195.100.16.0/22 5400 -195.100.20.0/23 197752 -195.100.22.0/23 5400 -195.100.24.0/22 5400 -195.100.28.0/24 206046 -195.100.29.0/24 5400 -195.100.30.0/23 5400 -195.100.32.0/19 5400 -195.100.64.0/18 5400 -195.100.128.0/17 5400 -195.101.0.0/23 3215 -195.101.2.0/24 3215 -195.101.3.0/24 5377 -195.101.4.0/24 3215 -195.101.5.0/24 5377 -195.101.6.0/23 3215 -195.101.8.0/21 3215 -195.101.16.0/20 3215 -195.101.32.0/20 3215 -195.101.48.0/21 3215 -195.101.56.0/22 3215 -195.101.60.0/24 5377 -195.101.61.0/24 3215 -195.101.62.0/23 3215 -195.101.64.0/24 9180 -195.101.65.0/24 3215 -195.101.66.0/23 3215 -195.101.68.0/22 3215 -195.101.72.0/21 3215 -195.101.80.0/20 3215 -195.101.96.0/19 3215 -195.101.128.0/20 3215 -195.101.144.0/21 3215 -195.101.152.0/22 3215 -195.101.156.0/24 3215 -195.101.157.0/24 12826 -195.101.158.0/24 12826 -195.101.159.0/24 3215 -195.101.160.0/22 3215 -195.101.164.0/22 12601 -195.101.168.0/21 3215 -195.101.176.0/21 3215 -195.101.184.0/22 3215 -195.101.188.0/23 9180 -195.101.190.0/23 3215 -195.101.192.0/18 3215 -195.102.0.0/16 8426 -195.103.0.0/16 3269 -195.108.0.0/18 702 -195.108.64.0/19 702 -195.108.96.0/21 702 -195.108.104.0/22 702 -195.108.108.0/23 702 -195.108.110.0/23 12859 -195.108.112.0/20 702 -195.108.128.0/17 702 -195.109.0.0/16 702 -195.110.0.0/22 208524 -195.110.4.0/23 42142 -195.110.6.0/23 42239 -195.110.8.0/23 9009 -195.110.10.0/23 3549 -195.110.12.0/23 39104 -195.110.14.0/23 12586 -195.110.16.0/23 3308 -195.110.18.0/23 8767 -195.110.20.0/23 41108 -195.110.24.0/23 42191 -195.110.26.0/23 15925 -195.110.28.0/23 2116 -195.110.30.0/23 16276 -195.110.32.0/23 39061 -195.110.34.0/23 16347 -195.110.40.0/23 50995 -195.110.42.0/23 45031 -195.110.44.0/23 49949 -195.110.46.0/23 56420 -195.110.48.0/23 34688 -195.110.50.0/23 200414 -195.110.52.0/23 49848 -195.110.54.0/23 8368 -195.110.56.0/23 49903 -195.110.58.0/23 47583 -195.110.60.0/23 49885 -195.110.62.0/23 49891 -195.110.64.0/19 8220 -195.110.96.0/23 12363 -195.110.99.0/24 12363 -195.110.100.0/22 39729 -195.110.104.0/23 39729 -195.110.107.0/24 39729 -195.110.108.0/22 203461 -195.110.112.0/24 39729 -195.110.116.0/24 206191 -195.110.118.0/23 39729 -195.110.120.0/21 39729 -195.110.128.0/19 5396 -195.110.160.0/20 9161 -195.110.176.0/22 9161 -195.110.180.0/23 9161 -195.110.182.0/23 209049 -195.110.184.0/23 60670 -195.110.186.0/23 9161 -195.110.188.0/23 9161 -195.110.190.0/24 59809 -195.110.191.0/24 9161 -195.110.192.0/19 12971 -195.110.227.0/24 3356 -195.110.230.0/24 42172 -195.111.0.0/16 1955 -195.112.0.0/18 9105 -195.112.64.0/19 6730 -195.112.96.0/19 8636 -195.112.128.0/19 12296 -195.112.192.0/21 24634 -195.112.200.0/24 24634 -195.112.201.0/24 9051 -195.112.202.0/23 24634 -195.112.204.0/22 24634 -195.112.208.0/23 24634 -195.112.210.0/23 9051 -195.112.212.0/22 24634 -195.112.216.0/21 24634 -195.112.224.0/19 5573 -195.113.0.0/16 2852 -195.114.0.0/23 41079 -195.114.2.0/23 41098 -195.114.4.0/24 48551 -195.114.6.0/23 41161 -195.114.9.0/24 48551 -195.114.10.0/23 29551 -195.114.12.0/24 8283 -195.114.13.0/24 8943 -195.114.16.0/23 48893 -195.114.18.0/23 35393 -195.114.20.0/23 43237 -195.114.22.0/23 20570 -195.114.24.0/23 50370 -195.114.26.0/23 6738 -195.114.28.0/23 41346 -195.114.32.0/19 12578 -195.114.64.0/19 4589 -195.114.96.0/23 39128 -195.114.98.0/23 201222 -195.114.100.0/23 50673 -195.114.102.0/23 42689 -195.114.104.0/23 57306 -195.114.106.0/23 39358 -195.114.108.0/23 202310 -195.114.110.0/23 26338 -195.114.112.0/24 199146 -195.114.114.0/23 38926 -195.114.116.0/22 210033 -195.114.120.0/23 34399 -195.114.124.0/23 49575 -195.114.128.0/23 8207 -195.114.130.0/24 8207 -195.114.135.0/24 8207 -195.114.141.0/24 3326 -195.114.142.0/23 3326 -195.114.144.0/20 3326 -195.114.160.0/19 12741 -195.114.192.0/22 203178 -195.114.196.0/23 203178 -195.114.198.0/24 203178 -195.114.199.0/24 8311 -195.114.200.0/22 203178 -195.114.204.0/23 203178 -195.114.206.0/24 8311 -195.114.207.0/24 203178 -195.114.208.0/20 57286 -195.114.224.0/20 8587 -195.114.240.0/20 12997 -195.115.0.0/16 8228 -195.116.0.0/15 5617 -195.119.0.0/19 51964 -195.119.64.0/18 51964 -195.119.128.0/19 51964 -195.119.202.0/24 51964 -195.120.0.0/16 3269 -195.121.0.0/16 8737 -195.122.0.0/19 12578 -195.122.32.0/19 4589 -195.122.64.0/23 42411 -195.122.66.0/24 42411 -195.122.68.0/22 42411 -195.122.74.0/24 42411 -195.122.92.0/24 206433 -195.122.96.0/19 8221 -195.122.128.0/22 3356 -195.122.132.0/23 3356 -195.122.134.0/23 20473 -195.122.136.0/21 3356 -195.122.144.0/21 3356 -195.122.152.0/23 3356 -195.122.154.0/23 202167 -195.122.156.0/22 3356 -195.122.160.0/21 3356 -195.122.168.0/22 3356 -195.122.172.0/23 3356 -195.122.174.0/24 3356 -195.122.175.0/24 26667 -195.122.176.0/21 3356 -195.122.184.0/23 3356 -195.122.186.0/24 21734 -195.122.187.0/24 3356 -195.122.188.0/22 3356 -195.122.192.0/19 29208 -195.122.224.0/19 8580 -195.123.1.0/24 49227 -195.123.3.0/24 198720 -195.123.6.0/24 49227 -195.123.7.0/24 44407 -195.123.8.0/22 198720 -195.123.96.0/20 15943 -195.123.112.0/21 208473 -195.123.124.0/23 25174 -195.123.126.0/23 328449 -195.123.160.0/23 12975 -195.123.162.0/23 208473 -195.123.164.0/22 208473 -195.123.173.0/24 206462 -195.123.174.0/23 206540 -195.123.176.0/22 197726 -195.123.180.0/24 59536 -195.123.182.0/23 203332 -195.123.184.0/21 197726 -195.123.192.0/21 197726 -195.123.208.0/21 50979 -195.123.216.0/21 21100 -195.123.224.0/21 59729 -195.123.232.0/21 204957 -195.123.240.0/21 204957 -195.123.252.0/22 197726 -195.124.0.0/22 702 -195.124.4.0/23 702 -195.124.6.0/24 1661 -195.124.7.0/24 702 -195.124.8.0/21 702 -195.124.16.0/20 702 -195.124.32.0/20 702 -195.124.48.0/24 20694 -195.124.49.0/24 702 -195.124.50.0/23 702 -195.124.52.0/22 702 -195.124.56.0/21 702 -195.124.64.0/18 702 -195.124.128.0/17 702 -195.125.0.0/16 702 -195.126.0.0/16 702 -195.127.0.0/17 702 -195.127.128.0/23 702 -195.127.130.0/24 702 -195.127.131.0/24 29224 -195.127.132.0/22 702 -195.127.136.0/21 702 -195.127.144.0/20 702 -195.127.160.0/19 702 -195.127.192.0/18 702 -195.128.0.0/22 31614 -195.128.4.0/22 55303 -195.128.8.0/22 1142 -195.128.16.0/22 24703 -195.128.20.0/22 61157 -195.128.28.0/22 31604 -195.128.33.0/24 42926 -195.128.34.0/24 42926 -195.128.36.0/24 42926 -195.128.37.0/24 209727 -195.128.38.0/23 42926 -195.128.40.0/21 29105 -195.128.48.0/24 29076 -195.128.49.0/24 3175 -195.128.50.0/24 12616 -195.128.51.0/24 3175 -195.128.52.0/22 29076 -195.128.56.0/21 29069 -195.128.64.0/19 8470 -195.128.96.0/22 31566 -195.128.100.0/22 197540 -195.128.104.0/21 35765 -195.128.112.0/21 199978 -195.128.120.0/21 47196 -195.128.128.0/24 56695 -195.128.129.0/24 28878 -195.128.130.0/24 56585 -195.128.131.0/24 56604 -195.128.132.0/24 197719 -195.128.134.0/24 8717 -195.128.135.0/24 5588 -195.128.136.0/24 210176 -195.128.137.0/24 56613 -195.128.138.0/24 8851 -195.128.139.0/24 56607 -195.128.140.0/24 56590 -195.128.141.0/24 51790 -195.128.142.0/24 43941 -195.128.143.0/24 197462 -195.128.144.0/24 48885 -195.128.145.0/24 56596 -195.128.146.0/24 56921 -195.128.147.0/24 197737 -195.128.148.0/24 56609 -195.128.149.0/24 197744 -195.128.150.0/24 56612 -195.128.151.0/24 56619 -195.128.153.0/24 56621 -195.128.154.0/24 201814 -195.128.156.0/24 1299 -195.128.157.0/24 56631 -195.128.158.0/24 62010 -195.128.159.0/24 48098 -195.128.160.0/23 29141 -195.128.164.0/23 42336 -195.128.166.0/23 51342 -195.128.170.0/23 31361 -195.128.174.0/23 48854 -195.128.177.0/24 1680 -195.128.180.0/23 43939 -195.128.182.0/23 31343 -195.128.184.0/23 49981 -195.128.186.0/23 47886 -195.128.188.0/23 208913 -195.128.190.0/24 4589 -195.128.191.0/24 8190 -195.128.192.0/19 29208 -195.128.225.0/24 31440 -195.128.226.0/23 31445 -195.128.228.0/23 31431 -195.128.230.0/23 35748 -195.128.232.0/23 8462 -195.128.234.0/23 31034 -195.128.238.0/23 24916 -195.128.240.0/23 197595 -195.128.242.0/23 31242 -195.128.244.0/23 31470 -195.128.248.0/23 31469 -195.128.250.0/23 5500 -195.128.252.0/23 31504 -195.128.254.0/23 197595 -195.129.0.0/18 702 -195.129.64.0/20 702 -195.129.80.0/21 702 -195.129.88.0/22 702 -195.129.92.0/23 702 -195.129.94.0/24 24951 -195.129.95.0/24 702 -195.129.96.0/23 702 -195.129.98.0/24 702 -195.129.99.0/24 24951 -195.129.100.0/22 702 -195.129.104.0/23 24951 -195.129.106.0/23 702 -195.129.108.0/22 702 -195.129.112.0/20 702 -195.129.128.0/17 702 -195.130.3.0/24 2856 -195.130.6.0/24 2856 -195.130.28.0/22 206747 -195.130.32.0/19 8670 -195.130.64.0/23 5408 -195.130.66.0/24 199399 -195.130.67.0/24 5408 -195.130.68.0/22 5408 -195.130.72.0/21 5408 -195.130.80.0/20 5408 -195.130.96.0/20 5408 -195.130.112.0/21 5408 -195.130.120.0/23 5408 -195.130.122.0/24 50148 -195.130.123.0/24 5408 -195.130.124.0/22 5408 -195.130.128.0/19 6848 -195.130.160.0/19 1836 -195.130.193.0/24 42888 -195.130.194.0/24 49754 -195.130.195.0/24 5396 -195.130.196.0/24 49983 -195.130.197.0/24 48712 -195.130.198.0/24 48735 -195.130.199.0/24 39637 -195.130.200.0/24 57773 -195.130.201.0/24 48718 -195.130.203.0/24 48829 -195.130.205.0/24 5528 -195.130.207.0/24 48799 -195.130.209.0/24 48733 -195.130.210.0/24 19806 -195.130.212.0/24 16291 -195.130.213.0/24 41986 -195.130.214.0/24 30920 -195.130.216.0/24 44165 -195.130.217.0/24 42427 -195.130.218.0/24 5529 -195.130.219.0/24 5530 -195.130.220.0/24 5602 -195.130.221.0/24 50076 -195.130.222.0/24 35798 -195.130.223.0/24 33915 -195.130.224.0/19 8612 -195.131.0.0/16 12714 -195.132.0.0/16 21502 -195.133.0.0/24 2118 -195.133.1.0/24 48347 -195.133.2.0/24 2118 -195.133.3.0/24 29076 -195.133.4.0/24 202760 -195.133.5.0/24 21453 -195.133.6.0/23 21453 -195.133.8.0/24 21453 -195.133.9.0/24 2118 -195.133.10.0/23 21453 -195.133.12.0/23 197695 -195.133.14.0/24 197695 -195.133.15.0/24 9009 -195.133.16.0/22 197695 -195.133.20.0/24 21453 -195.133.21.0/24 2118 -195.133.22.0/24 2118 -195.133.23.0/24 21453 -195.133.24.0/22 21453 -195.133.32.0/21 208637 -195.133.40.0/21 21453 -195.133.48.0/23 48347 -195.133.50.0/23 43628 -195.133.52.0/23 21453 -195.133.54.0/23 2118 -195.133.56.0/24 2118 -195.133.62.0/24 2118 -195.133.65.0/24 2118 -195.133.72.0/22 48347 -195.133.76.0/24 2118 -195.133.77.0/24 21453 -195.133.78.0/23 21453 -195.133.82.0/24 49352 -195.133.83.0/24 9009 -195.133.87.0/24 2118 -195.133.88.0/24 2118 -195.133.89.0/24 41082 -195.133.90.0/23 41082 -195.133.92.0/23 197695 -195.133.94.0/24 197695 -195.133.95.0/24 43146 -195.133.96.0/19 12479 -195.133.128.0/20 18106 -195.133.144.0/22 48347 -195.133.160.0/19 12479 -195.133.194.0/23 60511 -195.133.196.0/23 48347 -195.133.198.0/23 5553 -195.133.200.0/24 29076 -195.133.201.0/24 48347 -195.133.202.0/23 209706 -195.133.204.0/22 42666 -195.133.208.0/23 209706 -195.133.212.0/22 42666 -195.133.216.0/22 29226 -195.133.220.0/22 203217 -195.133.224.0/21 196695 -195.133.232.0/22 196695 -195.133.236.0/23 196695 -195.133.240.0/24 206968 -195.133.241.0/24 201509 -195.133.242.0/23 29226 -195.133.244.0/22 29226 -195.133.248.0/21 29226 -195.134.0.0/19 5587 -195.134.32.0/19 2119 -195.134.64.0/18 8643 -195.134.128.0/19 16221 -195.134.160.0/21 198545 -195.134.168.0/21 39647 -195.134.176.0/21 31115 -195.134.184.0/21 198254 -195.134.192.0/20 3257 -195.134.208.0/21 3257 -195.134.216.0/22 5580 -195.134.220.0/22 3257 -195.134.224.0/19 8070 -195.135.0.0/19 8399 -195.135.32.0/20 8399 -195.135.48.0/24 8399 -195.135.49.0/24 57877 -195.135.50.0/23 57877 -195.135.52.0/22 57877 -195.135.56.0/21 57877 -195.135.64.0/18 8399 -195.135.128.0/18 8469 -195.135.192.0/23 208913 -195.135.194.0/24 39149 -195.135.195.0/24 20857 -195.135.196.0/22 25165 -195.135.200.0/22 44936 -195.135.208.0/22 33859 -195.135.212.0/22 8774 -195.135.216.0/22 15516 -195.135.220.0/22 29298 -195.135.224.0/22 25220 -195.135.228.0/22 198035 -195.135.232.0/22 29329 -195.135.236.0/22 38984 -195.135.240.0/22 50802 -195.135.244.0/22 34204 -195.135.248.0/22 57269 -195.136.0.0/23 20804 -195.136.2.0/23 51393 -195.136.4.0/22 205608 -195.136.8.0/23 20804 -195.136.10.0/23 201439 -195.136.12.0/23 199260 -195.136.14.0/23 20804 -195.136.16.0/21 20804 -195.136.24.0/23 20804 -195.136.26.0/24 20804 -195.136.27.0/24 204744 -195.136.28.0/22 20804 -195.136.32.0/23 35787 -195.136.34.0/23 20804 -195.136.36.0/23 20804 -195.136.38.0/23 205608 -195.136.40.0/21 20804 -195.136.48.0/22 20804 -195.136.52.0/22 200539 -195.136.56.0/21 200539 -195.136.64.0/24 20804 -195.136.65.0/24 204744 -195.136.66.0/23 201893 -195.136.68.0/23 35115 -195.136.70.0/23 20804 -195.136.72.0/23 35787 -195.136.74.0/23 35115 -195.136.76.0/24 202403 -195.136.77.0/24 20804 -195.136.78.0/23 20804 -195.136.80.0/21 20804 -195.136.88.0/22 20804 -195.136.92.0/22 206948 -195.136.96.0/22 35115 -195.136.100.0/22 200539 -195.136.104.0/22 43073 -195.136.108.0/22 20804 -195.136.112.0/21 20804 -195.136.120.0/24 20804 -195.136.121.0/24 204412 -195.136.122.0/23 20804 -195.136.124.0/22 203389 -195.136.128.0/21 20804 -195.136.136.0/22 57101 -195.136.140.0/23 34963 -195.136.142.0/23 20804 -195.136.144.0/23 20804 -195.136.146.0/24 20804 -195.136.147.0/24 206948 -195.136.148.0/22 20804 -195.136.152.0/23 206948 -195.136.154.0/23 204953 -195.136.156.0/23 205608 -195.136.158.0/23 199260 -195.136.160.0/23 43153 -195.136.162.0/23 201113 -195.136.164.0/22 20804 -195.136.168.0/22 43372 -195.136.172.0/24 198984 -195.136.173.0/24 198595 -195.136.174.0/24 20804 -195.136.175.0/24 198984 -195.136.176.0/22 199390 -195.136.180.0/22 20804 -195.136.184.0/23 198984 -195.136.186.0/23 20804 -195.136.188.0/22 20804 -195.136.192.0/22 20804 -195.136.196.0/23 20804 -195.136.198.0/23 35281 -195.136.200.0/24 199389 -195.136.201.0/24 20804 -195.136.202.0/23 20804 -195.136.204.0/22 206442 -195.136.208.0/20 199715 -195.136.224.0/21 199389 -195.136.232.0/21 20804 -195.136.240.0/20 20804 -195.137.0.0/17 9105 -195.137.144.0/21 60822 -195.137.160.0/24 6697 -195.137.161.0/24 35601 -195.137.162.0/24 20804 -195.137.163.0/24 8422 -195.137.165.0/24 31477 -195.137.166.0/24 35604 -195.137.167.0/24 35633 -195.137.169.0/24 31477 -195.137.170.0/24 42442 -195.137.171.0/24 35683 -195.137.172.0/24 15576 -195.137.173.0/24 35620 -195.137.174.0/24 49104 -195.137.175.0/24 9044 -195.137.176.0/24 48294 -195.137.178.0/24 3292 -195.137.181.0/24 3215 -195.137.183.0/24 35789 -195.137.184.0/24 35717 -195.137.185.0/24 35688 -195.137.187.0/24 35730 -195.137.189.0/24 15694 -195.137.190.0/24 56680 -195.137.191.0/24 35684 -195.137.194.0/23 29266 -195.137.196.0/23 29275 -195.137.198.0/23 29316 -195.137.200.0/23 29303 -195.137.202.0/23 29491 -195.137.206.0/24 209787 -195.137.208.0/23 43173 -195.137.210.0/23 29317 -195.137.212.0/23 8972 -195.137.214.0/23 15830 -195.137.216.0/23 9066 -195.137.218.0/23 8870 -195.137.220.0/23 8100 -195.137.222.0/23 29399 -195.137.224.0/23 57667 -195.137.226.0/23 29376 -195.137.228.0/23 34683 -195.137.232.0/23 29382 -195.137.234.0/23 29373 -195.137.236.0/23 59701 -195.137.238.0/23 39912 -195.137.240.0/23 29389 -195.137.242.0/24 8455 -195.137.243.0/24 48260 -195.137.244.0/23 29443 -195.137.246.0/23 31409 -195.137.248.0/23 59853 -195.137.250.0/23 29421 -195.138.0.0/19 6773 -195.138.32.0/22 8391 -195.138.36.0/24 15763 -195.138.37.0/24 8391 -195.138.38.0/23 8391 -195.138.40.0/23 8391 -195.138.42.0/23 15763 -195.138.44.0/22 15763 -195.138.48.0/22 15763 -195.138.52.0/24 15763 -195.138.53.0/24 8391 -195.138.54.0/23 8391 -195.138.56.0/23 8391 -195.138.58.0/24 8391 -195.138.59.0/24 15763 -195.138.60.0/22 8391 -195.138.64.0/19 6876 -195.138.96.0/21 8474 -195.138.104.0/22 8474 -195.138.108.0/24 8474 -195.138.111.0/24 8474 -195.138.112.0/24 8474 -195.138.114.0/24 8474 -195.138.118.0/24 8474 -195.138.120.0/24 8474 -195.138.128.0/19 8390 -195.138.160.0/19 8601 -195.138.192.0/24 41530 -195.138.193.0/24 41588 -195.138.195.0/24 41548 -195.138.196.0/24 41916 -195.138.198.0/24 41550 -195.138.199.0/24 199339 -195.138.200.0/24 41580 -195.138.201.0/24 41582 -195.138.202.0/24 13001 -195.138.203.0/24 41547 -195.138.205.0/24 41553 -195.138.206.0/24 41554 -195.138.207.0/24 198344 -195.138.208.0/24 41567 -195.138.209.0/24 41569 -195.138.210.0/24 41617 -195.138.211.0/24 41618 -195.138.212.0/24 43893 -195.138.213.0/24 719 -195.138.214.0/24 40975 -195.138.215.0/24 41632 -195.138.216.0/24 41577 -195.138.218.0/24 41600 -195.138.221.0/24 2865 -195.138.222.0/24 41638 -195.138.223.0/24 3320 -195.138.232.0/21 48257 -195.138.240.0/21 51191 -195.138.248.0/21 201011 -195.139.0.0/16 2116 -195.140.0.0/17 9099 -195.140.128.0/22 59415 -195.140.132.0/22 31027 -195.140.136.0/22 39912 -195.140.140.0/22 43646 -195.140.144.0/22 29182 -195.140.148.0/22 25358 -195.140.152.0/22 41026 -195.140.156.0/22 15450 -195.140.160.0/22 48964 -195.140.164.0/22 29453 -195.140.168.0/22 13307 -195.140.172.0/22 3301 -195.140.176.0/22 47926 -195.140.180.0/22 8410 -195.140.184.0/22 15960 -195.140.188.0/22 50421 -195.140.192.0/22 29432 -195.140.201.0/24 39369 -195.140.202.0/23 39369 -195.140.204.0/22 25073 -195.140.208.0/22 29471 -195.140.212.0/22 25369 -195.140.220.0/22 41319 -195.140.224.0/22 56465 -195.140.228.0/22 39399 -195.140.232.0/22 205071 -195.140.236.0/22 29512 -195.140.240.0/22 60781 -195.140.244.0/22 29534 -195.140.248.0/22 37110 -195.140.252.0/22 24971 -195.141.0.0/18 6730 -195.141.64.0/19 6730 -195.141.96.0/20 6730 -195.141.112.0/21 6730 -195.141.120.0/22 6730 -195.141.124.0/24 200167 -195.141.125.0/24 6730 -195.141.126.0/23 6730 -195.141.128.0/18 6730 -195.141.192.0/19 6730 -195.141.224.0/20 6730 -195.141.240.0/21 6730 -195.141.248.0/24 6730 -195.141.249.0/24 39419 -195.141.250.0/23 6730 -195.141.252.0/22 6730 -195.142.0.0/22 199484 -195.142.4.0/24 34984 -195.142.6.0/23 34984 -195.142.8.0/22 34984 -195.142.12.0/24 34984 -195.142.14.0/23 34984 -195.142.17.0/24 34984 -195.142.18.0/23 34984 -195.142.20.0/24 34984 -195.142.22.0/23 34984 -195.142.24.0/24 34984 -195.142.27.0/24 34984 -195.142.28.0/24 34984 -195.142.31.0/24 34984 -195.142.32.0/19 34984 -195.142.64.0/20 34984 -195.142.80.0/21 34984 -195.142.88.0/22 34984 -195.142.96.0/21 34984 -195.142.104.0/21 199484 -195.142.112.0/20 34984 -195.142.128.0/22 34984 -195.142.132.0/22 199484 -195.142.139.0/24 34984 -195.142.141.0/24 34984 -195.142.142.0/23 34984 -195.142.144.0/24 34984 -195.142.146.0/23 34984 -195.142.149.0/24 34984 -195.142.151.0/24 34984 -195.142.152.0/22 199484 -195.142.156.0/22 55303 -195.142.161.0/24 34984 -195.142.162.0/24 34984 -195.142.164.0/22 34984 -195.142.168.0/23 34984 -195.142.170.0/24 34984 -195.142.172.0/24 34984 -195.142.174.0/23 34984 -195.142.176.0/24 34984 -195.142.178.0/24 34984 -195.142.181.0/24 34984 -195.142.183.0/24 34984 -195.142.184.0/22 199484 -195.142.188.0/22 34984 -195.142.196.0/22 34984 -195.142.200.0/23 39095 -195.142.204.0/24 34984 -195.142.206.0/24 34984 -195.142.208.0/23 34984 -195.142.211.0/24 34984 -195.142.212.0/22 55303 -195.142.216.0/22 34984 -195.142.220.0/24 34984 -195.142.222.0/23 34984 -195.142.224.0/23 34984 -195.142.227.0/24 34984 -195.142.229.0/24 34984 -195.142.230.0/23 34984 -195.142.232.0/23 34984 -195.142.234.0/24 34984 -195.142.236.0/24 34984 -195.142.238.0/23 34984 -195.142.240.0/23 34984 -195.142.244.0/22 39095 -195.142.249.0/24 34984 -195.142.251.0/24 34984 -195.142.254.0/24 34984 -195.143.0.0/18 3257 -195.143.64.0/22 3257 -195.143.68.0/22 5580 -195.143.72.0/21 3257 -195.143.80.0/20 3257 -195.143.96.0/19 3257 -195.143.128.0/17 3257 -195.144.0.0/24 47813 -195.144.1.0/24 39058 -195.144.3.0/24 8319 -195.144.4.0/24 35100 -195.144.5.0/24 702 -195.144.6.0/24 34052 -195.144.7.0/24 24951 -195.144.8.0/24 20629 -195.144.9.0/24 24929 -195.144.10.0/24 21155 -195.144.11.0/24 35393 -195.144.13.0/24 3301 -195.144.14.0/24 49389 -195.144.15.0/24 3320 -195.144.16.0/24 3329 -195.144.17.0/24 35414 -195.144.18.0/23 35414 -195.144.20.0/24 12301 -195.144.21.0/24 174 -195.144.25.0/24 38961 -195.144.26.0/24 49618 -195.144.27.0/24 207784 -195.144.28.0/24 38960 -195.144.29.0/24 38954 -195.144.30.0/24 31736 -195.144.31.0/24 51567 -195.144.32.0/19 3303 -195.144.64.0/19 8201 -195.144.96.0/19 5588 -195.144.160.0/19 15623 -195.144.192.0/20 8249 -195.144.208.0/22 8249 -195.144.214.0/23 8249 -195.144.216.0/21 8249 -195.144.224.0/20 20632 -195.144.240.0/23 20632 -195.144.242.0/24 20632 -195.144.243.0/24 201016 -195.144.244.0/22 20632 -195.144.248.0/21 20632 -195.145.0.0/16 3320 -195.146.0.0/21 201924 -195.146.8.0/23 6663 -195.146.10.0/24 34820 -195.146.11.0/24 6663 -195.146.12.0/22 6663 -195.146.16.0/20 6663 -195.146.32.0/22 12880 -195.146.36.0/24 12880 -195.146.37.0/24 60148 -195.146.38.0/23 12880 -195.146.40.0/22 12880 -195.146.44.0/23 12880 -195.146.46.0/23 58224 -195.146.48.0/23 12880 -195.146.50.0/24 58224 -195.146.51.0/24 12880 -195.146.52.0/22 12880 -195.146.56.0/23 12880 -195.146.58.0/24 12880 -195.146.59.0/24 60148 -195.146.60.0/24 202735 -195.146.61.0/24 12880 -195.146.62.0/24 12880 -195.146.63.0/24 49666 -195.146.64.0/19 8241 -195.146.96.0/19 25512 -195.146.128.0/22 6855 -195.146.132.0/23 6855 -195.146.134.0/24 6855 -195.146.135.0/24 201841 -195.146.136.0/21 6855 -195.146.144.0/24 201841 -195.146.145.0/24 6855 -195.146.146.0/23 6855 -195.146.148.0/22 6855 -195.146.152.0/21 6855 -195.146.160.0/19 8897 -195.146.192.0/19 15557 -195.146.224.0/19 8362 -195.147.0.0/16 5413 -195.148.0.0/16 1741 -195.149.0.0/18 9105 -195.149.64.0/24 29272 -195.149.66.0/24 29301 -195.149.69.0/24 5089 -195.149.70.0/24 29325 -195.149.71.0/24 199871 -195.149.74.0/24 8972 -195.149.75.0/24 3330 -195.149.76.0/24 15404 -195.149.77.0/24 48428 -195.149.78.0/24 29331 -195.149.79.0/24 16097 -195.149.80.0/23 8881 -195.149.82.0/24 44946 -195.149.83.0/24 719 -195.149.84.0/24 43081 -195.149.85.0/24 29399 -195.149.86.0/24 30925 -195.149.88.0/24 35689 -195.149.89.0/24 29363 -195.149.91.0/24 34397 -195.149.92.0/23 44780 -195.149.94.0/24 29374 -195.149.95.0/24 29445 -195.149.96.0/24 39249 -195.149.97.0/24 29394 -195.149.98.0/24 202220 -195.149.99.0/24 21461 -195.149.101.0/24 43948 -195.149.102.0/24 29408 -195.149.103.0/24 5089 -195.149.104.0/24 29426 -195.149.105.0/24 29425 -195.149.107.0/24 393410 -195.149.108.0/24 29436 -195.149.110.0/24 29450 -195.149.111.0/24 29648 -195.149.112.0/24 29663 -195.149.113.0/24 29464 -195.149.114.0/24 31044 -195.149.115.0/24 200759 -195.149.117.0/24 197751 -195.149.118.0/24 29620 -195.149.119.0/24 34420 -195.149.120.0/24 50508 -195.149.121.0/24 50807 -195.149.122.0/24 12726 -195.149.123.0/24 43948 -195.149.124.0/24 29501 -195.149.125.0/24 29475 -195.149.128.0/18 3257 -195.149.192.0/22 39377 -195.149.196.0/24 43321 -195.149.197.0/24 197760 -195.149.198.0/23 42503 -195.149.200.0/21 29407 -195.149.208.0/21 2134 -195.149.216.0/21 34347 -195.149.224.0/21 29522 -195.149.235.0/24 29535 -195.149.236.0/22 29535 -195.149.240.0/21 29560 -195.149.248.0/21 8717 -195.150.0.0/21 8323 -195.150.8.0/24 8323 -195.150.9.0/24 197427 -195.150.10.0/23 8323 -195.150.12.0/22 8323 -195.150.16.0/20 8323 -195.150.32.0/19 8323 -195.150.64.0/19 8323 -195.150.96.0/22 8323 -195.150.100.0/24 206687 -195.150.101.0/24 8323 -195.150.102.0/23 8323 -195.150.104.0/21 8323 -195.150.112.0/20 8323 -195.150.128.0/18 8323 -195.150.192.0/22 203890 -195.150.224.0/19 8267 -195.151.0.0/20 2854 -195.151.16.0/21 2854 -195.151.24.0/22 2854 -195.151.28.0/24 56533 -195.151.29.0/24 2854 -195.151.30.0/23 2854 -195.151.32.0/23 2854 -195.151.34.0/24 2854 -195.151.35.0/24 204910 -195.151.36.0/22 2854 -195.151.40.0/21 2854 -195.151.48.0/24 199537 -195.151.49.0/24 2854 -195.151.50.0/23 2854 -195.151.52.0/22 2854 -195.151.56.0/21 2854 -195.151.64.0/18 2854 -195.151.128.0/18 2854 -195.151.192.0/23 2854 -195.151.194.0/24 202378 -195.151.195.0/24 2854 -195.151.196.0/22 2854 -195.151.200.0/21 2854 -195.151.208.0/20 2854 -195.151.224.0/22 2854 -195.151.228.0/23 2854 -195.151.230.0/24 200830 -195.151.231.0/24 2854 -195.151.232.0/21 2854 -195.151.240.0/20 2854 -195.152.0.0/23 1290 -195.152.2.0/24 1290 -195.152.3.0/24 4637 -195.152.4.0/22 1290 -195.152.8.0/21 1290 -195.152.16.0/20 1290 -195.152.32.0/19 1290 -195.152.64.0/18 1290 -195.152.128.0/17 1290 -195.153.0.0/20 1290 -195.153.16.0/23 1290 -195.153.18.0/24 1290 -195.153.19.0/24 31712 -195.153.20.0/22 1290 -195.153.24.0/21 1290 -195.153.32.0/19 1290 -195.153.64.0/21 1290 -195.153.72.0/23 1290 -195.153.74.0/24 4637 -195.153.75.0/24 1290 -195.153.76.0/22 1290 -195.153.80.0/20 1290 -195.153.96.0/21 1290 -195.153.104.0/22 1290 -195.153.108.0/22 4637 -195.153.112.0/21 1290 -195.153.120.0/22 1290 -195.153.124.0/24 31742 -195.153.125.0/24 1290 -195.153.126.0/23 1290 -195.153.128.0/18 1290 -195.153.192.0/20 1290 -195.153.208.0/21 1290 -195.153.216.0/23 4637 -195.153.218.0/23 1290 -195.153.220.0/22 1290 -195.153.224.0/19 1290 -195.154.0.0/16 12876 -195.155.0.0/18 33548 -195.155.64.0/22 47123 -195.155.68.0/23 47123 -195.155.70.0/24 47123 -195.155.96.0/22 199484 -195.155.100.0/23 34984 -195.155.103.0/24 34984 -195.155.106.0/24 34984 -195.155.111.0/24 34984 -195.155.112.0/24 34984 -195.155.116.0/23 34984 -195.155.118.0/24 34984 -195.155.121.0/24 34984 -195.155.122.0/23 34984 -195.155.124.0/23 34984 -195.155.126.0/24 34984 -195.155.128.0/22 43352 -195.155.132.0/23 43352 -195.155.134.0/24 43352 -195.155.135.0/24 60369 -195.155.136.0/21 43352 -195.155.144.0/20 43352 -195.155.160.0/20 34984 -195.155.176.0/21 34984 -195.155.185.0/24 34984 -195.155.187.0/24 34984 -195.155.188.0/22 34984 -195.155.192.0/19 34984 -195.155.224.0/20 34984 -195.155.240.0/21 34984 -195.155.248.0/22 34984 -195.155.252.0/24 34984 -195.155.255.0/24 34984 -195.156.0.0/16 1759 -195.157.0.0/16 8426 -195.158.0.0/19 8193 -195.158.32.0/20 8319 -195.158.48.0/22 8319 -195.158.52.0/23 8319 -195.158.54.0/24 29471 -195.158.55.0/24 8319 -195.158.56.0/21 8319 -195.158.64.0/19 15735 -195.158.96.0/20 15735 -195.158.112.0/24 5532 -195.158.113.0/24 15735 -195.158.114.0/23 15735 -195.158.116.0/22 15735 -195.158.120.0/21 15735 -195.158.128.0/19 3209 -195.158.160.0/19 20676 -195.158.192.0/22 60781 -195.158.196.0/24 1001 -195.158.197.0/24 43967 -195.158.198.0/23 43967 -195.158.204.0/22 201341 -195.158.208.0/22 23338 -195.158.212.0/23 29259 -195.158.220.0/22 43201 -195.158.224.0/23 45027 -195.158.226.0/23 20960 -195.158.228.0/23 45046 -195.158.230.0/23 24989 -195.158.232.0/23 47104 -195.158.234.0/23 45035 -195.158.236.0/23 34764 -195.158.238.0/23 44780 -195.158.240.0/23 45050 -195.158.242.0/23 59701 -195.158.244.0/24 56599 -195.158.246.0/23 47229 -195.158.250.0/23 47117 -195.158.252.0/23 204796 -195.158.254.0/23 47161 -195.159.0.0/16 2116 -195.160.0.0/18 1293 -195.160.64.0/20 203211 -195.160.96.0/19 1293 -195.160.148.0/23 1293 -195.160.160.0/23 47208 -195.160.162.0/23 35622 -195.160.164.0/23 49775 -195.160.166.0/24 35627 -195.160.167.0/24 50156 -195.160.168.0/23 31371 -195.160.171.0/24 35636 -195.160.172.0/24 49225 -195.160.173.0/24 50472 -195.160.176.0/23 41980 -195.160.178.0/23 44959 -195.160.180.0/23 13110 -195.160.182.0/23 16354 -195.160.184.0/23 35007 -195.160.188.0/23 35665 -195.160.190.0/23 35663 -195.160.192.0/22 34118 -195.160.196.0/22 34154 -195.160.200.0/22 44949 -195.160.204.0/22 49480 -195.160.208.0/24 12954 -195.160.212.0/22 34134 -195.160.216.0/22 34215 -195.160.220.0/22 31148 -195.160.224.0/22 15704 -195.160.228.0/22 31103 -195.160.232.0/22 28776 -195.160.236.0/24 21547 -195.160.237.0/24 33517 -195.160.238.0/23 33517 -195.160.240.0/22 43381 -195.160.244.0/22 12389 -195.160.248.0/22 3320 -195.160.252.0/22 34311 -195.161.0.0/19 8342 -195.161.32.0/20 8342 -195.161.48.0/22 8342 -195.161.52.0/23 199922 -195.161.54.0/23 8342 -195.161.56.0/21 8342 -195.161.64.0/18 8342 -195.161.128.0/19 8342 -195.161.160.0/23 8342 -195.161.162.0/24 12389 -195.161.163.0/24 8342 -195.161.164.0/22 8342 -195.161.168.0/21 8342 -195.161.176.0/20 8342 -195.161.192.0/18 8342 -195.162.4.0/23 12586 -195.162.8.0/23 44622 -195.162.10.0/23 48499 -195.162.12.0/23 3213 -195.162.14.0/23 48502 -195.162.16.0/23 48487 -195.162.18.0/23 15699 -195.162.20.0/23 34790 -195.162.22.0/23 48508 -195.162.24.0/23 48505 -195.162.26.0/23 48503 -195.162.28.0/23 48513 -195.162.30.0/23 15960 -195.162.32.0/19 12389 -195.162.64.0/23 51738 -195.162.67.0/24 1680 -195.162.68.0/23 57043 -195.162.70.0/23 51622 -195.162.72.0/23 197304 -195.162.76.0/23 197310 -195.162.78.0/23 197315 -195.162.80.0/22 35004 -195.162.84.0/22 15405 -195.162.88.0/22 50864 -195.162.92.0/22 210278 -195.162.96.0/19 31655 -195.162.128.0/19 47617 -195.162.160.0/22 15547 -195.162.164.0/23 15547 -195.162.166.0/24 33965 -195.162.167.0/24 15547 -195.162.168.0/21 15547 -195.162.176.0/20 15547 -195.162.192.0/19 6848 -195.162.224.0/19 5669 -195.163.0.0/16 5400 -195.164.0.0/17 8308 -195.164.128.0/18 204679 -195.164.192.0/21 8308 -195.164.200.0/21 204679 -195.164.208.0/20 204679 -195.164.224.0/19 8308 -195.165.0.0/16 1759 -195.166.0.0/18 3549 -195.166.64.0/19 3549 -195.166.96.0/20 3549 -195.166.112.0/21 3549 -195.166.120.0/22 3549 -195.166.124.0/24 18900 -195.166.125.0/24 10753 -195.166.126.0/24 47931 -195.166.127.0/24 3549 -195.166.128.0/19 6871 -195.166.160.0/20 8568 -195.166.176.0/21 8568 -195.166.184.0/22 8568 -195.166.188.0/23 8568 -195.166.192.0/19 34803 -195.167.0.0/19 6799 -195.167.32.0/21 6799 -195.167.40.0/24 6799 -195.167.41.0/24 29353 -195.167.42.0/23 6799 -195.167.44.0/22 6799 -195.167.48.0/20 6799 -195.167.64.0/24 6799 -195.167.65.0/24 29247 -195.167.66.0/23 6799 -195.167.68.0/22 6799 -195.167.72.0/21 6799 -195.167.80.0/20 6799 -195.167.96.0/19 6799 -195.167.128.0/20 5631 -195.167.144.0/22 15694 -195.167.148.0/23 206838 -195.167.150.0/23 15694 -195.167.152.0/24 202081 -195.167.153.0/24 205419 -195.167.154.0/23 15694 -195.167.156.0/23 57367 -195.167.158.0/24 15694 -195.167.159.0/24 57367 -195.167.160.0/21 46378 -195.167.176.0/20 5631 -195.167.192.0/20 12670 -195.167.208.0/20 8881 -195.167.224.0/20 12670 -195.167.240.0/21 29457 -195.167.248.0/23 29457 -195.167.252.0/24 29457 -195.168.0.0/18 5578 -195.168.64.0/19 5578 -195.168.96.0/21 5578 -195.168.104.0/22 5578 -195.168.108.0/23 5578 -195.168.110.0/24 49659 -195.168.111.0/24 5578 -195.168.112.0/20 5578 -195.168.128.0/18 5578 -195.168.192.0/20 5578 -195.168.208.0/24 41318 -195.168.209.0/24 5578 -195.168.210.0/23 5578 -195.168.212.0/22 5578 -195.168.216.0/23 5578 -195.168.218.0/24 209251 -195.168.219.0/24 209250 -195.168.220.0/22 5578 -195.168.224.0/20 5578 -195.168.240.0/24 30898 -195.168.241.0/24 5578 -195.168.242.0/23 5578 -195.168.244.0/22 5578 -195.168.248.0/21 5578 -195.169.0.0/16 1103 -195.170.0.0/19 6799 -195.170.32.0/19 8395 -195.170.64.0/19 1901 -195.170.96.0/19 8426 -195.170.128.0/19 790 -195.170.160.0/24 59824 -195.170.161.0/24 39809 -195.170.162.0/24 34913 -195.170.164.0/24 39899 -195.170.165.0/24 34420 -195.170.166.0/24 39833 -195.170.167.0/24 34420 -195.170.168.0/24 2860 -195.170.169.0/24 39849 -195.170.171.0/24 50921 -195.170.172.0/24 34420 -195.170.173.0/24 41000 -195.170.174.0/24 47924 -195.170.175.0/24 39865 -195.170.177.0/24 39872 -195.170.178.0/24 56593 -195.170.179.0/24 50362 -195.170.180.0/24 49474 -195.170.181.0/24 196852 -195.170.182.0/24 39883 -195.170.183.0/24 41404 -195.170.184.0/24 47169 -195.170.185.0/24 41699 -195.170.187.0/24 13189 -195.170.188.0/24 41036 -195.170.189.0/24 39656 -195.170.191.0/24 39897 -195.170.192.0/19 8299 -195.170.224.0/19 5386 -195.171.0.0/19 2856 -195.171.32.0/22 2856 -195.171.36.0/22 5400 -195.171.40.0/21 2856 -195.171.48.0/20 2856 -195.171.64.0/18 2856 -195.171.128.0/18 2856 -195.171.192.0/23 2856 -195.171.194.0/24 2856 -195.171.195.0/24 32787 -195.171.196.0/22 2856 -195.171.200.0/21 2856 -195.171.208.0/20 2856 -195.171.224.0/19 2856 -195.172.0.0/16 4589 -195.173.0.0/17 2529 -195.173.128.0/20 1273 -195.173.144.0/21 1273 -195.173.152.0/24 2529 -195.173.153.0/24 1273 -195.173.154.0/23 1273 -195.173.156.0/22 1273 -195.173.160.0/19 2529 -195.173.192.0/18 2529 -195.174.0.0/15 9121 -195.176.0.0/17 559 -195.176.128.0/19 3303 -195.176.160.0/19 559 -195.176.192.0/19 3303 -195.176.224.0/19 559 -195.177.0.0/19 4589 -195.177.32.0/23 4589 -195.177.34.0/24 3257 -195.177.35.0/24 4589 -195.177.36.0/22 4589 -195.177.40.0/21 4589 -195.177.48.0/20 4589 -195.177.64.0/22 34393 -195.177.68.0/23 3252 -195.177.70.0/24 31445 -195.177.71.0/24 3252 -195.177.72.0/22 29062 -195.177.76.0/22 202292 -195.177.80.0/22 31154 -195.177.84.0/22 34393 -195.177.88.0/22 13287 -195.177.92.0/22 34549 -195.177.96.0/23 41729 -195.177.98.0/24 2119 -195.177.99.0/24 41729 -195.177.100.0/22 24929 -195.177.104.0/22 30877 -195.177.108.0/22 44407 -195.177.112.0/22 56911 -195.177.116.0/22 28907 -195.177.120.0/22 25408 -195.177.124.0/22 20714 -195.177.128.0/18 12371 -195.177.192.0/23 20860 -195.177.196.0/23 41931 -195.177.198.0/24 29677 -195.177.199.0/24 39508 -195.177.202.0/23 1770 -195.177.204.0/23 29572 -195.177.206.0/23 29549 -195.177.208.0/23 29559 -195.177.212.0/23 29669 -195.177.216.0/23 50599 -195.177.218.0/23 60168 -195.177.220.0/23 34114 -195.177.222.0/23 31023 -195.177.224.0/23 33925 -195.177.226.0/23 29634 -195.177.228.0/23 44757 -195.177.230.0/23 210289 -195.177.232.0/23 29014 -195.177.234.0/23 25164 -195.177.236.0/23 29683 -195.177.238.0/23 29688 -195.177.240.0/23 30735 -195.177.242.0/23 25542 -195.177.246.0/23 31511 -195.177.248.0/23 8866 -195.177.250.0/23 1853 -195.177.252.0/23 60036 -195.178.0.0/23 8220 -195.178.2.0/23 49916 -195.178.4.0/23 35415 -195.178.6.0/23 49937 -195.178.8.0/23 48698 -195.178.10.0/23 49995 -195.178.12.0/23 49992 -195.178.14.0/23 48854 -195.178.16.0/23 49997 -195.178.18.0/23 50005 -195.178.20.0/23 50473 -195.178.22.0/23 43465 -195.178.24.0/23 50029 -195.178.26.0/23 43769 -195.178.28.0/24 6831 -195.178.30.0/23 50052 -195.178.32.0/19 8400 -195.178.64.0/19 2852 -195.178.96.0/23 39352 -195.178.102.0/23 39345 -195.178.106.0/24 44388 -195.178.107.0/24 57938 -195.178.108.0/23 39415 -195.178.112.0/23 31564 -195.178.114.0/23 199409 -195.178.116.0/23 48264 -195.178.118.0/23 39387 -195.178.122.0/23 41650 -195.178.124.0/22 206610 -195.178.128.0/20 3319 -195.178.144.0/22 3319 -195.178.148.0/23 209845 -195.178.150.0/24 21219 -195.178.151.0/24 209845 -195.178.152.0/23 3319 -195.178.154.0/24 3319 -195.178.155.0/24 6807 -195.178.156.0/24 3319 -195.178.157.0/24 208643 -195.178.158.0/23 3319 -195.178.160.0/19 8473 -195.178.192.0/19 5429 -195.178.224.0/19 1653 -195.179.0.0/16 6659 -195.180.0.0/21 4589 -195.180.8.0/22 6659 -195.180.12.0/23 6659 -195.180.14.0/23 4589 -195.180.16.0/20 4589 -195.180.32.0/21 4589 -195.180.40.0/21 6659 -195.180.48.0/20 4589 -195.180.64.0/18 4589 -195.180.128.0/18 6659 -195.180.192.0/19 6659 -195.180.224.0/20 6659 -195.180.240.0/21 6659 -195.180.248.0/24 6659 -195.180.249.0/24 4589 -195.180.250.0/23 6659 -195.180.252.0/22 6659 -195.181.0.0/19 12880 -195.181.32.0/19 58224 -195.181.64.0/18 58224 -195.181.128.0/19 203424 -195.181.160.0/21 60068 -195.181.168.0/23 60068 -195.181.170.0/24 60068 -195.181.172.0/22 60068 -195.181.176.0/20 44513 -195.181.192.0/20 43016 -195.181.208.0/20 24806 -195.181.224.0/20 206815 -195.181.240.0/21 62282 -195.181.248.0/22 48689 -195.181.252.0/23 50129 -195.181.254.0/24 206825 -195.181.255.0/24 201153 -195.182.0.0/24 39230 -195.182.1.0/24 50673 -195.182.2.0/24 39138 -195.182.3.0/24 59412 -195.182.4.0/24 42689 -195.182.5.0/24 2863 -195.182.6.0/24 60951 -195.182.8.0/24 39150 -195.182.9.0/24 39171 -195.182.11.0/24 39170 -195.182.12.0/24 39166 -195.182.14.0/24 29522 -195.182.17.0/24 39162 -195.182.18.0/24 47432 -195.182.20.0/24 58288 -195.182.21.0/24 203654 -195.182.22.0/24 39297 -195.182.23.0/24 39198 -195.182.26.0/24 15655 -195.182.28.0/24 39267 -195.182.30.0/24 24772 -195.182.31.0/24 196848 -195.182.33.0/24 47256 -195.182.34.0/24 47301 -195.182.35.0/24 47290 -195.182.36.0/24 196724 -195.182.39.0/24 47249 -195.182.40.0/24 47305 -195.182.41.0/24 9127 -195.182.42.0/24 51021 -195.182.43.0/24 8220 -195.182.44.0/24 47928 -195.182.45.0/24 3209 -195.182.46.0/24 196622 -195.182.47.0/24 47284 -195.182.48.0/24 9145 -195.182.49.0/24 198822 -195.182.50.0/24 42821 -195.182.51.0/24 199197 -195.182.52.0/24 47322 -195.182.53.0/24 47337 -195.182.55.0/24 6830 -195.182.58.0/24 29066 -195.182.59.0/24 3356 -195.182.60.0/24 3209 -195.182.61.0/24 47336 -195.182.62.0/24 2856 -195.182.63.0/24 47306 -195.182.64.0/19 6769 -195.182.96.0/19 5400 -195.182.128.0/19 6858 -195.182.192.0/23 39399 -195.182.194.0/23 42590 -195.182.196.0/23 3209 -195.182.198.0/23 35913 -195.182.200.0/23 35913 -195.182.202.0/23 39422 -195.182.206.0/23 31683 -195.182.208.0/23 29306 -195.182.210.0/23 12637 -195.182.212.0/23 34517 -195.182.214.0/23 49486 -195.182.222.0/23 35206 -195.182.224.0/23 8822 -195.182.226.0/24 8822 -195.182.227.0/24 31263 -195.182.228.0/23 8822 -195.182.230.0/24 8822 -195.182.231.0/24 31263 -195.182.232.0/21 31263 -195.182.240.0/24 8822 -195.182.241.0/24 31263 -195.182.242.0/23 31263 -195.182.244.0/22 31263 -195.182.248.0/21 31263 -195.183.0.0/16 2686 -195.184.0.0/22 12301 -195.184.4.0/24 197889 -195.184.5.0/24 200964 -195.184.6.0/24 210244 -195.184.7.0/24 12301 -195.184.8.0/24 200964 -195.184.9.0/24 12301 -195.184.10.0/23 12301 -195.184.12.0/22 12301 -195.184.16.0/21 12301 -195.184.24.0/23 12301 -195.184.26.0/24 12301 -195.184.27.0/24 200900 -195.184.28.0/22 12301 -195.184.32.0/19 3292 -195.184.64.0/23 42755 -195.184.66.0/24 39671 -195.184.67.0/24 201306 -195.184.68.0/23 15830 -195.184.70.0/23 44117 -195.184.76.0/23 49503 -195.184.78.0/23 44172 -195.184.80.0/23 44235 -195.184.82.0/23 44175 -195.184.84.0/23 197543 -195.184.86.0/23 41960 -195.184.88.0/23 44183 -195.184.90.0/23 41960 -195.184.92.0/23 5464 -195.184.94.0/23 44207 -195.184.96.0/19 9167 -195.184.160.0/19 6830 -195.184.192.0/20 41039 -195.184.208.0/24 3261 -195.184.209.0/24 41039 -195.184.210.0/23 41039 -195.184.212.0/23 3261 -195.184.214.0/24 41039 -195.184.215.0/24 3261 -195.184.216.0/24 41039 -195.184.217.0/24 3261 -195.184.218.0/24 41039 -195.184.219.0/24 3261 -195.184.220.0/22 3261 -195.184.224.0/19 8897 -195.185.0.0/16 12312 -195.186.0.0/16 3303 -195.187.0.0/19 8308 -195.187.32.0/21 8308 -195.187.40.0/24 8308 -195.187.41.0/24 60877 -195.187.42.0/24 204388 -195.187.43.0/24 8308 -195.187.44.0/22 8308 -195.187.48.0/20 8308 -195.187.64.0/18 1887 -195.187.128.0/23 8308 -195.187.130.0/24 34826 -195.187.131.0/24 8308 -195.187.132.0/24 8308 -195.187.133.0/24 21324 -195.187.134.0/24 25390 -195.187.135.0/24 8308 -195.187.136.0/22 8308 -195.187.140.0/24 8308 -195.187.141.0/24 48690 -195.187.142.0/24 34826 -195.187.143.0/24 8308 -195.187.144.0/21 8308 -195.187.152.0/22 8308 -195.187.156.0/23 49035 -195.187.158.0/24 49035 -195.187.159.0/24 8308 -195.187.160.0/24 201202 -195.187.161.0/24 8308 -195.187.162.0/23 8308 -195.187.164.0/22 8308 -195.187.168.0/21 8308 -195.187.176.0/20 8308 -195.187.192.0/18 8308 -195.188.0.0/17 5089 -195.188.128.0/18 5089 -195.188.192.0/19 5089 -195.188.224.0/20 5089 -195.188.240.0/21 5089 -195.188.248.0/23 5089 -195.188.250.0/24 5089 -195.188.251.0/24 42010 -195.188.252.0/24 5089 -195.188.253.0/24 42010 -195.188.254.0/23 5089 -195.189.0.0/22 39904 -195.189.4.0/22 49808 -195.189.8.0/22 25150 -195.189.12.0/23 25896 -195.189.16.0/22 42975 -195.189.20.0/22 29396 -195.189.24.0/22 39889 -195.189.28.0/22 35104 -195.189.32.0/22 40961 -195.189.36.0/22 209519 -195.189.40.0/22 50231 -195.189.44.0/22 30822 -195.189.52.0/22 41056 -195.189.60.0/22 41009 -195.189.64.0/22 41090 -195.189.68.0/23 41007 -195.189.70.0/24 35104 -195.189.71.0/24 41007 -195.189.76.0/22 41023 -195.189.80.0/22 197216 -195.189.85.0/24 34284 -195.189.86.0/23 34284 -195.189.88.0/22 50153 -195.189.92.0/22 41040 -195.189.96.0/22 59642 -195.189.100.0/22 41085 -195.189.104.0/22 41096 -195.189.108.0/22 41082 -195.189.112.0/22 51747 -195.189.116.0/22 25148 -195.189.120.0/22 41095 -195.189.128.0/23 34815 -195.189.130.0/23 62121 -195.189.132.0/23 209519 -195.189.134.0/23 39805 -195.189.136.0/23 44401 -195.189.138.0/23 39803 -195.189.140.0/23 12400 -195.189.142.0/23 39832 -195.189.144.0/24 43500 -195.189.145.0/24 49437 -195.189.146.0/23 39624 -195.189.148.0/23 200987 -195.189.150.0/23 39829 -195.189.154.0/24 21195 -195.189.155.0/24 44418 -195.189.156.0/23 12586 -195.189.160.0/23 51747 -195.189.162.0/23 39867 -195.189.166.0/23 50180 -195.189.170.0/23 40982 -195.189.172.0/23 39884 -195.189.176.0/24 208913 -195.189.177.0/24 1273 -195.189.178.0/23 60350 -195.189.180.0/23 49608 -195.189.182.0/23 39889 -195.189.184.0/23 207906 -195.189.186.0/23 208913 -195.189.190.0/23 207906 -195.189.192.0/23 49484 -195.189.194.0/23 39903 -195.189.196.0/23 39908 -195.189.198.0/23 56672 -195.189.200.0/23 39916 -195.189.202.0/23 39923 -195.189.204.0/23 15978 -195.189.206.0/23 205347 -195.189.208.0/23 50563 -195.189.210.0/23 41347 -195.189.212.0/24 25233 -195.189.213.0/24 8895 -195.189.214.0/23 50579 -195.189.216.0/23 40985 -195.189.218.0/23 41024 -195.189.220.0/24 12696 -195.189.221.0/24 206726 -195.189.222.0/24 42524 -195.189.223.0/24 44174 -195.189.224.0/23 39683 -195.189.226.0/23 41018 -195.189.228.0/23 41027 -195.189.230.0/23 41023 -195.189.232.0/23 41014 -195.189.234.0/23 56354 -195.189.236.0/23 60220 -195.189.238.0/23 41654 -195.189.240.0/23 41168 -195.189.246.0/23 41062 -195.189.248.0/23 35562 -195.189.250.0/23 208913 -195.189.252.0/23 15576 -195.189.254.0/23 31283 -195.190.0.0/24 8587 -195.190.2.0/24 3320 -195.190.3.0/24 47612 -195.190.4.0/24 60454 -195.190.6.0/24 41788 -195.190.8.0/24 20572 -195.190.9.0/24 31400 -195.190.10.0/24 47107 -195.190.11.0/24 204796 -195.190.12.0/24 45027 -195.190.13.0/24 208945 -195.190.14.0/24 47183 -195.190.15.0/24 47130 -195.190.16.0/24 47120 -195.190.18.0/24 48854 -195.190.19.0/24 47135 -195.190.20.0/24 47387 -195.190.21.0/24 5602 -195.190.22.0/24 51551 -195.190.23.0/24 199391 -195.190.24.0/24 47401 -195.190.25.0/24 16095 -195.190.26.0/24 21013 -195.190.27.0/24 35625 -195.190.28.0/24 47172 -195.190.29.0/24 28810 -195.190.30.0/24 198614 -195.190.31.0/24 47715 -195.190.32.0/19 8499 -195.190.64.0/19 3257 -195.190.96.0/20 3216 -195.190.112.0/21 3216 -195.190.120.0/22 3216 -195.190.124.0/24 33908 -195.190.125.0/24 3216 -195.190.126.0/23 3216 -195.190.128.0/24 25352 -195.190.129.0/24 8727 -195.190.131.0/24 6830 -195.190.132.0/24 39240 -195.190.133.0/24 51815 -195.190.135.0/24 12878 -195.190.136.0/24 25365 -195.190.137.0/24 25286 -195.190.138.0/24 25419 -195.190.140.0/24 39392 -195.190.141.0/24 21147 -195.190.142.0/24 28748 -195.190.143.0/24 13298 -195.190.146.0/24 60781 -195.190.147.0/24 25475 -195.190.148.0/24 25411 -195.190.149.0/24 39806 -195.190.150.0/24 39806 -195.190.151.0/24 20867 -195.190.152.0/24 198033 -195.190.153.0/24 16245 -195.190.154.0/24 39806 -195.190.155.0/24 3257 -195.190.156.0/24 9003 -195.190.157.0/24 39806 -195.190.158.0/24 28850 -195.190.159.0/24 15882 -195.190.160.0/19 12620 -195.190.192.0/21 42708 -195.190.200.0/24 12552 -195.190.201.0/24 42708 -195.190.202.0/23 42708 -195.190.204.0/22 42708 -195.190.208.0/20 42708 -195.191.1.0/24 15879 -195.191.2.0/23 8767 -195.191.4.0/23 50257 -195.191.6.0/23 50280 -195.191.8.0/23 50253 -195.191.10.0/23 12714 -195.191.12.0/23 196777 -195.191.14.0/23 196870 -195.191.16.0/23 50266 -195.191.21.0/24 203947 -195.191.24.0/23 196645 -195.191.26.0/23 15891 -195.191.28.0/23 50326 -195.191.30.0/23 44381 -195.191.32.0/23 50317 -195.191.36.0/23 50341 -195.191.38.0/23 50325 -195.191.40.0/23 48866 -195.191.42.0/23 8442 -195.191.46.0/23 50347 -195.191.50.0/23 50358 -195.191.52.0/24 50365 -195.191.54.0/23 136620 -195.191.56.0/23 136620 -195.191.58.0/23 34814 -195.191.62.0/23 50444 -195.191.65.0/24 51167 -195.191.66.0/23 60187 -195.191.68.0/23 50407 -195.191.70.0/23 50445 -195.191.72.0/23 51367 -195.191.74.0/23 50460 -195.191.76.0/23 50464 -195.191.78.0/23 51234 -195.191.80.0/23 205365 -195.191.82.0/23 50676 -195.191.84.0/23 43731 -195.191.86.0/23 196809 -195.191.88.0/23 8595 -195.191.92.0/23 25504 -195.191.94.0/23 50506 -195.191.96.0/24 199177 -195.191.100.0/23 50496 -195.191.102.0/23 12327 -195.191.104.0/23 50487 -195.191.106.0/23 42689 -195.191.108.0/23 198206 -195.191.110.0/23 50351 -195.191.114.0/23 30962 -195.191.118.0/24 51695 -195.191.119.0/24 30840 -195.191.120.0/23 15693 -195.191.122.0/23 50603 -195.191.126.0/23 196924 -195.191.130.0/23 50536 -195.191.132.0/23 50262 -195.191.134.0/23 50547 -195.191.136.0/23 50545 -195.191.138.0/23 35731 -195.191.142.0/23 61045 -195.191.144.0/23 202955 -195.191.146.0/23 44380 -195.191.148.0/23 201200 -195.191.150.0/23 3185 -195.191.152.0/23 50570 -195.191.154.0/23 50623 -195.191.156.0/23 50632 -195.191.158.0/23 50577 -195.191.160.0/23 43046 -195.191.162.0/23 29314 -195.191.164.0/23 39164 -195.191.166.0/23 47955 -195.191.168.0/23 50579 -195.191.172.0/23 50583 -195.191.174.0/23 196938 -195.191.178.0/23 196934 -195.191.180.0/23 50661 -195.191.182.0/23 50688 -195.191.184.0/23 44175 -195.191.186.0/23 50635 -195.191.188.0/23 6830 -195.191.190.0/23 48470 -195.191.195.0/24 50649 -195.191.196.0/23 50629 -195.191.200.0/23 50643 -195.191.202.0/23 196952 -195.191.204.0/23 50695 -195.191.208.0/23 50775 -195.191.211.0/24 50697 -195.191.212.0/24 1299 -195.191.214.0/23 29491 -195.191.216.0/23 50696 -195.191.218.0/23 60945 -195.191.220.0/23 50916 -195.191.222.0/23 50689 -195.191.224.0/23 196636 -195.191.226.0/24 50690 -195.191.227.0/24 41775 -195.191.232.0/23 48896 -195.191.234.0/23 6681 -195.191.236.0/23 31430 -195.191.238.0/23 6679 -195.191.240.0/23 39142 -195.191.244.0/23 174 -195.191.246.0/23 43822 -195.191.248.0/23 50728 -195.191.250.0/23 50717 -195.191.252.0/23 50719 -195.191.254.0/23 60823 -195.192.0.0/17 8445 -195.192.128.0/18 25291 -195.192.192.0/20 31317 -195.192.208.0/21 5404 -195.192.216.0/21 60522 -195.192.224.0/21 8948 -195.192.232.0/22 203953 -195.192.236.0/22 199441 -195.192.240.0/22 47544 -195.192.244.0/22 41897 -195.192.248.0/23 60876 -195.192.250.0/23 199508 -195.192.252.0/24 206825 -195.192.254.0/24 3320 -195.192.255.0/24 198066 -195.193.0.0/16 702 -195.194.0.0/15 786 -195.196.0.0/21 3301 -195.196.8.0/24 3301 -195.196.9.0/24 6782 -195.196.10.0/23 3301 -195.196.12.0/22 3301 -195.196.16.0/23 3301 -195.196.18.0/24 6782 -195.196.19.0/24 3301 -195.196.20.0/22 3301 -195.196.24.0/21 3301 -195.196.32.0/22 3301 -195.196.36.0/24 3301 -195.196.37.0/24 6782 -195.196.38.0/23 6782 -195.196.40.0/21 3301 -195.196.48.0/20 3301 -195.196.64.0/23 3301 -195.196.66.0/23 6782 -195.196.68.0/22 3301 -195.196.72.0/21 3301 -195.196.80.0/20 3301 -195.196.96.0/19 3301 -195.196.128.0/20 3301 -195.196.144.0/20 6782 -195.196.160.0/19 6782 -195.196.192.0/20 6782 -195.196.208.0/20 3301 -195.196.224.0/20 6782 -195.196.240.0/20 3301 -195.197.0.0/16 790 -195.198.0.0/16 3301 -195.199.0.0/16 1955 -195.200.0.0/19 8897 -195.200.32.0/19 15590 -195.200.64.0/23 198402 -195.200.66.0/23 41075 -195.200.70.0/23 3209 -195.200.72.0/23 41884 -195.200.74.0/23 44653 -195.200.76.0/23 41919 -195.200.78.0/23 41894 -195.200.80.0/23 29551 -195.200.82.0/23 60781 -195.200.84.0/23 34305 -195.200.86.0/23 50369 -195.200.88.0/23 61078 -195.200.90.0/23 35524 -195.200.94.0/23 12637 -195.200.96.0/19 8304 -195.200.128.0/19 8613 -195.200.160.0/19 56844 -195.200.192.0/24 12586 -195.200.194.0/24 34309 -195.200.196.0/24 41375 -195.200.198.0/24 41380 -195.200.199.0/24 41385 -195.200.200.0/24 198572 -195.200.201.0/24 24989 -195.200.202.0/24 44721 -195.200.204.0/24 42817 -195.200.205.0/24 41394 -195.200.206.0/24 33806 -195.200.207.0/24 3320 -195.200.208.0/24 42356 -195.200.209.0/24 41430 -195.200.211.0/24 60610 -195.200.212.0/24 197231 -195.200.213.0/24 41428 -195.200.214.0/24 41945 -195.200.217.0/24 41405 -195.200.219.0/24 199780 -195.200.220.0/24 3301 -195.200.222.0/24 41417 -195.200.224.0/23 50156 -195.200.226.0/23 52193 -195.200.228.0/23 50172 -195.200.230.0/23 16509 -195.200.232.0/23 41075 -195.200.236.0/23 50212 -195.200.238.0/23 49921 -195.200.240.0/23 9008 -195.200.242.0/24 15830 -195.200.243.0/24 198433 -195.200.244.0/23 50211 -195.200.246.0/23 43227 -195.200.248.0/23 51229 -195.200.250.0/24 12803 -195.200.252.0/23 43652 -195.200.254.0/23 196670 -195.201.0.0/16 24940 -195.202.0.0/24 197033 -195.202.32.0/19 8881 -195.202.64.0/19 9129 -195.202.96.0/19 3257 -195.202.128.0/18 8339 -195.202.192.0/18 6830 -195.203.0.0/18 15854 -195.203.64.0/19 15854 -195.203.96.0/20 15854 -195.203.112.0/21 15854 -195.203.120.0/22 15854 -195.203.124.0/23 15854 -195.203.126.0/24 15854 -195.203.127.0/24 6900 -195.203.128.0/23 15854 -195.203.130.0/23 199306 -195.203.132.0/22 15854 -195.203.136.0/21 15854 -195.203.144.0/21 15854 -195.203.152.0/22 15854 -195.203.156.0/22 6900 -195.203.160.0/20 15854 -195.203.176.0/22 6900 -195.203.180.0/22 15854 -195.203.184.0/21 15854 -195.203.192.0/20 15854 -195.203.208.0/22 15854 -195.203.212.0/24 6900 -195.203.213.0/24 15854 -195.203.214.0/23 15854 -195.203.216.0/21 15854 -195.203.224.0/19 15854 -195.204.0.0/16 2116 -195.205.0.0/16 5617 -195.206.0.0/19 12445 -195.206.32.0/19 8345 -195.206.65.0/24 36937 -195.206.69.0/24 3300 -195.206.70.0/24 3300 -195.206.96.0/21 13022 -195.206.104.0/22 9009 -195.206.108.0/23 9009 -195.206.110.0/23 19437 -195.206.112.0/22 38923 -195.206.116.0/22 51960 -195.206.120.0/24 58180 -195.206.121.0/24 51468 -195.206.122.0/23 58217 -195.206.124.0/23 42092 -195.206.126.0/23 39914 -195.206.128.0/19 6659 -195.206.160.0/23 8669 -195.206.162.0/24 8669 -195.206.163.0/24 5413 -195.206.164.0/24 5413 -195.206.165.0/24 25369 -195.206.166.0/23 25369 -195.206.168.0/24 8669 -195.206.169.0/24 25369 -195.206.170.0/23 25369 -195.206.172.0/22 43915 -195.206.176.0/23 205098 -195.206.178.0/24 205098 -195.206.180.0/22 25369 -195.206.184.0/21 31472 -195.206.192.0/19 5500 -195.206.224.0/23 197040 -195.206.226.0/23 48642 -195.206.228.0/23 48894 -195.206.230.0/23 200088 -195.206.232.0/23 197035 -195.206.234.0/23 200088 -195.206.238.0/24 6849 -195.206.240.0/23 34241 -195.206.248.0/23 49770 -195.206.250.0/23 50996 -195.206.252.0/23 50968 -195.206.254.0/23 29363 -195.207.0.0/16 5432 -195.208.0.0/21 48287 -195.208.8.0/21 5547 -195.208.16.0/24 64433 -195.208.17.0/24 57211 -195.208.20.0/24 206814 -195.208.22.0/23 3316 -195.208.24.0/21 15835 -195.208.32.0/22 57038 -195.208.36.0/24 51200 -195.208.37.0/24 57139 -195.208.38.0/24 13075 -195.208.39.0/24 57251 -195.208.40.0/22 57186 -195.208.44.0/23 57211 -195.208.46.0/23 57251 -195.208.48.0/22 49810 -195.208.57.0/24 57139 -195.208.58.0/23 199624 -195.208.60.0/23 57257 -195.208.62.0/24 57296 -195.208.64.0/19 8359 -195.208.96.0/24 16249 -195.208.97.0/24 50451 -195.208.98.0/24 15754 -195.208.99.0/24 62272 -195.208.101.0/24 209415 -195.208.102.0/24 8742 -195.208.103.0/24 200190 -195.208.105.0/24 203832 -195.208.106.0/24 60691 -195.208.107.0/24 203514 -195.208.108.0/24 49925 -195.208.109.0/24 50339 -195.208.110.0/24 203597 -195.208.111.0/24 42558 -195.208.112.0/20 3277 -195.208.128.0/19 12499 -195.208.160.0/22 56707 -195.208.164.0/22 34858 -195.208.170.0/23 199624 -195.208.172.0/23 200513 -195.208.174.0/24 56939 -195.208.175.0/24 56881 -195.208.176.0/23 197896 -195.208.178.0/24 39843 -195.208.179.0/24 56952 -195.208.180.0/23 56958 -195.208.182.0/24 205822 -195.208.184.0/22 56994 -195.208.188.0/24 49954 -195.208.189.0/24 12695 -195.208.190.0/24 25449 -195.208.191.0/24 25231 -195.208.192.0/21 34862 -195.208.200.0/22 51764 -195.208.204.0/22 57529 -195.208.216.0/22 56384 -195.208.220.0/23 51408 -195.208.222.0/24 15835 -195.208.223.0/24 60343 -195.208.224.0/22 5480 -195.208.228.0/22 3267 -195.208.232.0/23 5480 -195.208.234.0/23 3267 -195.208.236.0/24 3267 -195.208.237.0/24 5480 -195.208.238.0/24 3267 -195.208.239.0/24 5480 -195.208.240.0/23 5480 -195.208.242.0/24 3267 -195.208.243.0/24 5480 -195.208.244.0/22 5480 -195.208.248.0/21 5480 -195.209.3.0/24 5568 -195.209.4.0/24 3316 -195.209.6.0/24 43213 -195.209.8.0/24 3316 -195.209.9.0/24 44597 -195.209.11.0/24 45018 -195.209.12.0/24 47445 -195.209.14.0/23 5568 -195.209.16.0/24 42403 -195.209.17.0/24 42385 -195.209.18.0/24 45029 -195.209.32.0/20 12722 -195.209.48.0/24 12722 -195.209.49.0/24 203803 -195.209.50.0/23 12722 -195.209.52.0/22 12722 -195.209.56.0/24 206407 -195.209.57.0/24 12722 -195.209.58.0/23 12722 -195.209.60.0/22 12722 -195.209.96.0/23 34858 -195.209.99.0/24 56634 -195.209.100.0/23 51764 -195.209.102.0/23 51921 -195.209.104.0/24 60375 -195.209.105.0/24 62128 -195.209.106.0/23 39034 -195.209.108.0/22 52007 -195.209.112.0/22 56374 -195.209.116.0/23 57503 -195.209.118.0/23 56336 -195.209.120.0/22 41554 -195.209.124.0/22 56580 -195.209.128.0/24 200575 -195.209.129.0/24 201669 -195.209.130.0/24 209520 -195.209.131.0/24 44587 -195.209.132.0/24 201211 -195.209.134.0/24 21292 -195.209.136.0/24 35572 -195.209.138.0/24 3200 -195.209.139.0/24 29114 -195.209.140.0/24 3316 -195.209.141.0/24 208991 -195.209.142.0/24 204237 -195.209.143.0/24 204219 -195.209.144.0/24 201914 -195.209.146.0/24 3316 -195.209.147.0/24 8985 -195.209.148.0/24 15835 -195.209.150.0/24 49002 -195.209.151.0/24 59833 -195.209.160.0/20 3216 -195.209.176.0/24 199521 -195.209.177.0/24 61187 -195.209.178.0/24 199459 -195.209.180.0/24 34155 -195.209.181.0/24 21292 -195.209.182.0/24 51613 -195.209.183.0/24 200452 -195.209.184.0/24 199394 -195.209.185.0/24 200779 -195.209.186.0/24 199583 -195.209.187.0/24 201285 -195.209.188.0/24 35572 -195.209.189.0/24 24797 -195.209.190.0/24 60740 -195.209.192.0/19 12724 -195.209.224.0/20 3267 -195.209.240.0/22 3267 -195.209.244.0/22 13077 -195.209.248.0/23 8790 -195.209.250.0/23 8630 -195.209.252.0/22 3267 -195.210.0.0/23 50689 -195.210.2.0/23 49994 -195.210.4.0/23 44418 -195.210.6.0/23 24989 -195.210.10.0/23 43509 -195.210.12.0/23 51111 -195.210.14.0/23 48417 -195.210.18.0/23 51000 -195.210.20.0/23 197062 -195.210.22.0/23 44745 -195.210.24.0/23 43888 -195.210.26.0/23 48344 -195.210.28.0/23 51013 -195.210.32.0/23 25549 -195.210.36.0/23 8473 -195.210.40.0/23 198102 -195.210.42.0/23 39506 -195.210.44.0/23 208913 -195.210.46.0/23 48716 -195.210.48.0/23 60522 -195.210.50.0/23 16055 -195.210.52.0/23 34244 -195.210.54.0/23 25577 -195.210.56.0/23 8312 -195.210.58.0/23 203098 -195.210.60.0/23 51619 -195.210.64.0/19 1267 -195.210.96.0/19 207088 -195.210.128.0/18 8359 -195.210.192.0/18 5603 -195.211.0.0/22 49753 -195.211.4.0/22 50166 -195.211.8.0/22 49761 -195.211.12.0/23 35030 -195.211.14.0/23 33849 -195.211.16.0/22 49762 -195.211.20.0/23 21051 -195.211.22.0/24 51286 -195.211.23.0/24 47764 -195.211.28.0/22 51604 -195.211.32.0/22 13030 -195.211.36.0/22 52163 -195.211.40.0/22 49803 -195.211.60.0/23 49889 -195.211.62.0/24 49889 -195.211.63.0/24 50581 -195.211.64.0/22 49839 -195.211.72.0/22 51696 -195.211.76.0/22 49825 -195.211.80.0/22 8595 -195.211.84.0/22 49827 -195.211.88.0/22 15428 -195.211.92.0/24 5089 -195.211.93.0/24 3549 -195.211.100.0/22 16262 -195.211.108.0/22 48533 -195.211.112.0/22 42001 -195.211.116.0/23 48004 -195.211.118.0/24 48004 -195.211.120.0/23 34832 -195.211.122.0/24 34832 -195.211.128.0/22 21051 -195.211.132.0/22 49969 -195.211.136.0/23 1001 -195.211.138.0/24 1001 -195.211.139.0/24 43967 -195.211.140.0/22 43967 -195.211.144.0/22 43967 -195.211.148.0/22 47359 -195.211.152.0/22 59564 -195.211.156.0/22 57223 -195.211.160.0/22 44341 -195.211.168.0/22 199736 -195.211.172.0/22 50004 -195.211.176.0/22 199213 -195.211.180.0/22 50025 -195.211.184.0/22 42714 -195.211.188.0/22 62206 -195.211.192.0/22 35640 -195.211.196.0/22 49977 -195.211.200.0/22 50148 -195.211.204.0/22 44634 -195.211.208.0/22 50074 -195.211.212.0/22 31149 -195.211.216.0/22 50105 -195.211.220.0/22 50098 -195.211.224.0/22 50088 -195.211.228.0/22 47898 -195.211.232.0/22 50092 -195.211.236.0/22 44172 -195.211.240.0/22 50161 -195.211.244.0/22 50712 -195.211.248.0/23 58136 -195.211.250.0/24 56533 -195.211.251.0/24 49932 -195.211.252.0/22 50204 -195.212.0.0/17 2686 -195.212.128.0/19 2686 -195.212.160.0/21 2686 -195.212.168.0/22 2686 -195.212.172.0/23 2686 -195.212.174.0/23 20057 -195.212.176.0/20 2686 -195.212.192.0/18 2686 -195.213.0.0/16 6871 -195.214.52.0/22 5427 -195.214.79.0/24 15968 -195.214.102.0/23 5427 -195.214.104.0/23 5427 -195.214.107.0/24 5427 -195.214.108.0/23 5427 -195.214.128.0/20 34984 -195.214.144.0/21 34984 -195.214.152.0/24 200006 -195.214.154.0/24 60027 -195.214.155.0/24 34984 -195.214.156.0/22 34984 -195.214.160.0/24 57886 -195.214.161.0/24 34984 -195.214.162.0/23 34984 -195.214.164.0/22 34984 -195.214.168.0/22 34984 -195.214.172.0/23 34984 -195.214.174.0/24 34984 -195.214.176.0/23 34984 -195.214.178.0/24 34984 -195.214.181.0/24 34984 -195.214.183.0/24 34984 -195.214.184.0/21 34984 -195.214.192.0/22 8856 -195.214.196.0/22 20714 -195.214.200.0/21 57660 -195.214.208.0/22 29632 -195.214.212.0/24 39249 -195.214.213.0/24 29632 -195.214.214.0/23 29632 -195.214.216.0/22 3257 -195.214.220.0/22 15713 -195.214.224.0/21 9180 -195.214.233.0/24 203660 -195.214.234.0/24 43621 -195.214.235.0/24 205712 -195.214.240.0/21 30889 -195.214.248.0/21 35773 -195.215.0.0/16 3292 -195.216.0.0/19 8426 -195.216.32.0/19 57084 -195.216.64.0/19 16242 -195.216.96.0/19 8364 -195.216.128.0/22 59447 -195.216.132.0/22 49505 -195.216.136.0/22 29119 -195.216.140.0/22 57809 -195.216.148.0/22 46261 -195.216.152.0/24 38974 -195.216.153.0/24 200081 -195.216.154.0/24 62300 -195.216.155.0/24 196955 -195.216.160.0/22 46723 -195.216.164.0/22 9009 -195.216.168.0/24 46723 -195.216.172.0/22 9009 -195.216.180.0/23 9009 -195.216.184.0/22 9009 -195.216.192.0/23 8218 -195.216.194.0/23 44492 -195.216.196.0/23 47625 -195.216.198.0/23 44499 -195.216.204.0/23 41165 -195.216.206.0/23 44526 -195.216.208.0/23 41075 -195.216.210.0/23 44884 -195.216.212.0/23 204161 -195.216.214.0/23 25057 -195.216.216.0/23 49392 -195.216.218.0/24 56629 -195.216.220.0/23 9175 -195.216.222.0/23 44544 -195.216.224.0/24 47167 -195.216.225.0/24 29207 -195.216.226.0/24 47170 -195.216.227.0/24 15576 -195.216.228.0/24 47174 -195.216.229.0/24 47186 -195.216.231.0/24 8473 -195.216.232.0/24 47190 -195.216.233.0/24 47205 -195.216.234.0/24 205697 -195.216.235.0/24 20676 -195.216.236.0/24 12993 -195.216.237.0/24 47237 -195.216.238.0/24 205697 -195.216.239.0/24 47230 -195.216.240.0/24 5588 -195.216.241.0/24 41842 -195.216.243.0/24 57724 -195.216.244.0/24 47278 -195.216.245.0/24 205697 -195.216.246.0/24 39704 -195.216.247.0/24 39020 -195.216.248.0/24 47235 -195.216.249.0/24 47268 -195.216.250.0/24 47396 -195.216.251.0/24 197248 -195.216.252.0/24 1680 -195.216.253.0/24 197843 -195.216.254.0/24 47281 -195.216.255.0/24 12337 -195.217.0.0/24 1699 -195.217.1.0/24 702 -195.217.2.0/23 702 -195.217.4.0/22 702 -195.217.8.0/21 702 -195.217.16.0/20 702 -195.217.32.0/21 702 -195.217.40.0/22 702 -195.217.44.0/23 702 -195.217.46.0/24 702 -195.217.47.0/24 1699 -195.217.48.0/20 702 -195.217.64.0/18 702 -195.217.128.0/18 702 -195.217.192.0/22 702 -195.217.196.0/23 702 -195.217.198.0/23 15572 -195.217.200.0/24 37893 -195.217.201.0/24 702 -195.217.202.0/23 702 -195.217.204.0/22 702 -195.217.208.0/20 702 -195.217.224.0/19 702 -195.218.0.0/19 8632 -195.218.32.0/19 2856 -195.218.64.0/19 790 -195.218.96.0/19 15502 -195.218.128.0/19 3216 -195.218.160.0/22 21483 -195.218.164.0/22 3216 -195.218.168.0/24 47764 -195.218.169.0/24 3216 -195.218.170.0/23 3216 -195.218.172.0/22 3216 -195.218.176.0/22 3216 -195.218.180.0/24 3216 -195.218.181.0/24 21483 -195.218.182.0/23 3216 -195.218.184.0/22 3216 -195.218.188.0/23 3216 -195.218.190.0/23 60863 -195.218.192.0/23 43001 -195.218.194.0/23 3216 -195.218.196.0/22 3216 -195.218.200.0/22 3216 -195.218.204.0/24 21483 -195.218.205.0/24 3216 -195.218.206.0/23 21483 -195.218.208.0/20 3216 -195.218.224.0/19 3216 -195.219.0.0/19 6453 -195.219.32.0/22 6453 -195.219.36.0/23 6453 -195.219.38.0/24 6453 -195.219.39.0/24 43123 -195.219.40.0/21 6453 -195.219.48.0/20 6453 -195.219.64.0/18 6453 -195.219.128.0/17 6453 -195.220.0.0/17 2200 -195.220.128.0/20 2200 -195.220.144.0/22 2200 -195.220.148.0/24 2200 -195.220.149.0/24 2470 -195.220.150.0/23 2470 -195.220.152.0/21 2200 -195.220.160.0/19 2200 -195.220.192.0/18 2200 -195.221.0.0/18 2200 -195.221.64.0/20 2200 -195.221.80.0/22 2200 -195.221.84.0/24 2198 -195.221.85.0/24 2200 -195.221.86.0/23 2200 -195.221.88.0/21 2200 -195.221.96.0/19 2200 -195.221.128.0/20 2200 -195.221.144.0/21 2200 -195.221.152.0/22 2200 -195.221.156.0/24 2200 -195.221.157.0/24 2072 -195.221.158.0/23 2072 -195.221.160.0/23 2072 -195.221.162.0/24 2072 -195.221.163.0/24 2200 -195.221.164.0/22 2200 -195.221.168.0/24 2200 -195.221.169.0/24 2471 -195.221.170.0/23 2200 -195.221.172.0/24 2471 -195.221.173.0/24 2200 -195.221.174.0/23 2200 -195.221.176.0/20 2200 -195.221.192.0/18 2200 -195.222.0.0/19 3327 -195.222.32.0/19 9146 -195.222.64.0/19 42772 -195.222.96.0/22 42186 -195.222.100.0/22 43939 -195.222.104.0/22 28925 -195.222.108.0/22 42227 -195.222.112.0/22 52020 -195.222.116.0/22 35224 -195.222.120.0/22 8339 -195.222.124.0/22 39130 -195.222.128.0/20 15640 -195.222.144.0/22 15640 -195.222.148.0/24 15640 -195.222.149.0/24 201582 -195.222.150.0/24 201582 -195.222.151.0/24 15640 -195.222.152.0/21 15640 -195.222.160.0/21 3216 -195.222.168.0/23 3216 -195.222.170.0/23 21483 -195.222.172.0/22 3216 -195.222.176.0/23 21483 -195.222.178.0/23 3216 -195.222.180.0/23 3216 -195.222.182.0/24 3216 -195.222.183.0/24 21483 -195.222.184.0/24 21483 -195.222.185.0/24 3216 -195.222.186.0/23 3216 -195.222.188.0/22 21483 -195.222.192.0/18 20783 -195.223.0.0/16 3269 -195.224.0.0/16 5413 -195.225.0.0/19 25148 -195.225.32.0/23 41481 -195.225.34.0/23 35024 -195.225.36.0/23 35007 -195.225.38.0/23 35022 -195.225.40.0/23 198102 -195.225.42.0/23 34723 -195.225.44.0/23 35034 -195.225.46.0/23 12400 -195.225.48.0/23 51357 -195.225.50.0/24 197864 -195.225.51.0/24 62037 -195.225.52.0/23 35123 -195.225.54.0/24 40824 -195.225.55.0/24 35415 -195.225.56.0/23 35257 -195.225.58.0/23 43046 -195.225.61.0/24 198433 -195.225.68.0/23 5588 -195.225.70.0/23 12741 -195.225.76.0/22 34402 -195.225.84.0/22 8423 -195.225.88.0/22 31709 -195.225.92.0/22 29314 -195.225.100.0/22 29462 -195.225.104.0/22 8972 -195.225.108.0/22 50473 -195.225.116.0/24 48971 -195.225.117.0/24 51395 -195.225.118.0/23 51395 -195.225.120.0/22 34494 -195.225.124.0/23 209337 -195.225.127.0/24 13172 -195.225.130.0/24 31560 -195.225.131.0/24 197498 -195.225.132.0/24 29018 -195.225.133.0/24 45031 -195.225.134.0/24 35548 -195.225.135.0/24 32787 -195.225.136.0/22 29305 -195.225.140.0/22 31102 -195.225.144.0/22 34359 -195.225.148.0/22 3163 -195.225.152.0/22 31481 -195.225.156.0/22 13106 -195.225.160.0/22 12714 -195.225.164.0/22 59943 -195.225.168.0/22 31034 -195.225.172.0/22 31158 -195.225.176.0/22 29240 -195.225.180.0/22 202277 -195.225.184.0/22 51701 -195.225.188.0/22 31256 -195.225.196.0/22 29551 -195.225.200.0/22 206478 -195.225.204.0/22 39480 -195.225.208.0/22 29471 -195.225.212.0/22 15470 -195.225.216.0/22 31220 -195.225.220.0/23 5488 -195.225.224.0/22 34758 -195.225.228.0/22 31234 -195.225.232.0/24 54600 -195.225.233.0/24 209339 -195.225.234.0/23 47623 -195.225.236.0/22 31239 -195.225.240.0/22 30962 -195.225.244.0/22 41319 -195.225.248.0/22 43939 -195.225.252.0/22 28820 -195.226.0.0/19 15623 -195.226.32.0/19 5413 -195.226.64.0/19 9197 -195.226.96.0/19 8881 -195.226.128.0/19 8681 -195.226.160.0/19 8881 -195.226.192.0/24 201094 -195.226.193.0/24 21115 -195.226.195.0/24 41363 -195.226.196.0/24 34984 -195.226.197.0/24 54600 -195.226.198.0/24 51305 -195.226.199.0/24 197190 -195.226.200.0/24 48951 -195.226.201.0/24 31463 -195.226.202.0/24 204452 -195.226.203.0/24 47579 -195.226.204.0/24 50878 -195.226.206.0/24 51328 -195.226.207.0/24 41959 -195.226.208.0/24 51363 -195.226.209.0/24 51348 -195.226.210.0/24 41879 -195.226.212.0/24 51322 -195.226.213.0/24 197192 -195.226.214.0/24 51325 -195.226.215.0/24 54600 -195.226.217.0/24 51278 -195.226.220.0/24 54600 -195.226.221.0/24 51361 -195.226.222.0/24 60600 -195.226.224.0/19 9155 -195.227.0.0/16 8469 -195.228.0.0/24 5483 -195.228.1.0/24 29582 -195.228.2.0/23 5483 -195.228.4.0/22 5483 -195.228.8.0/23 5483 -195.228.10.0/24 5483 -195.228.11.0/24 41313 -195.228.12.0/22 5483 -195.228.16.0/21 5483 -195.228.24.0/22 5483 -195.228.28.0/24 5483 -195.228.29.0/24 203583 -195.228.30.0/23 5483 -195.228.32.0/21 5483 -195.228.40.0/23 5483 -195.228.42.0/24 5483 -195.228.43.0/24 41313 -195.228.44.0/22 5483 -195.228.48.0/22 5483 -195.228.52.0/24 5483 -195.228.53.0/24 33954 -195.228.54.0/23 5483 -195.228.56.0/23 5483 -195.228.58.0/24 209455 -195.228.59.0/24 44277 -195.228.60.0/22 5483 -195.228.64.0/21 5483 -195.228.72.0/24 5483 -195.228.73.0/24 200940 -195.228.74.0/23 5483 -195.228.76.0/22 5483 -195.228.80.0/21 5483 -195.228.88.0/22 5483 -195.228.92.0/23 5483 -195.228.94.0/23 200940 -195.228.96.0/22 5483 -195.228.100.0/23 5483 -195.228.102.0/24 5483 -195.228.103.0/24 200940 -195.228.104.0/21 5483 -195.228.112.0/20 5483 -195.228.128.0/19 5483 -195.228.160.0/20 5483 -195.228.176.0/22 5483 -195.228.180.0/24 203583 -195.228.181.0/24 5483 -195.228.182.0/23 5483 -195.228.184.0/21 5483 -195.228.192.0/19 5483 -195.228.224.0/23 15555 -195.228.226.0/23 5483 -195.228.228.0/22 5483 -195.228.232.0/21 5483 -195.228.240.0/22 15555 -195.228.244.0/24 15555 -195.228.245.0/24 15545 -195.228.246.0/24 15555 -195.228.247.0/24 5483 -195.228.248.0/22 15555 -195.228.252.0/23 15555 -195.228.254.0/23 5483 -195.229.0.0/21 8966 -195.229.8.0/22 8966 -195.229.12.0/23 8966 -195.229.14.0/24 8966 -195.229.15.0/24 44703 -195.229.16.0/20 8966 -195.229.32.0/23 5384 -195.229.34.0/24 8966 -195.229.35.0/24 5384 -195.229.36.0/22 5384 -195.229.40.0/21 5384 -195.229.48.0/20 5384 -195.229.64.0/18 5384 -195.229.128.0/17 5384 -195.230.0.0/20 8431 -195.230.16.0/23 8431 -195.230.18.0/24 8431 -195.230.24.0/23 50360 -195.230.32.0/19 1901 -195.230.64.0/22 6854 -195.230.68.0/23 6854 -195.230.70.0/23 25159 -195.230.72.0/21 6854 -195.230.80.0/21 6854 -195.230.88.0/23 6854 -195.230.90.0/24 6854 -195.230.91.0/24 25159 -195.230.92.0/24 25159 -195.230.93.0/24 6854 -195.230.94.0/23 6854 -195.230.96.0/24 44897 -195.230.98.0/24 15440 -195.230.99.0/24 198021 -195.230.100.0/24 33965 -195.230.101.0/24 44900 -195.230.102.0/24 41372 -195.230.103.0/24 44930 -195.230.104.0/24 6848 -195.230.106.0/24 44991 -195.230.108.0/24 8893 -195.230.109.0/24 44988 -195.230.110.0/24 34756 -195.230.111.0/24 44915 -195.230.112.0/24 44917 -195.230.113.0/24 199550 -195.230.115.0/24 44921 -195.230.116.0/24 3320 -195.230.117.0/24 6830 -195.230.119.0/24 44950 -195.230.120.0/24 12774 -195.230.121.0/24 45002 -195.230.122.0/24 49962 -195.230.125.0/24 16213 -195.230.126.0/24 48152 -195.230.128.0/20 6846 -195.230.144.0/22 6846 -195.230.148.0/24 205364 -195.230.149.0/24 6846 -195.230.150.0/23 6846 -195.230.152.0/21 6846 -195.230.160.0/19 8559 -195.230.192.0/22 8244 -195.230.200.0/21 8244 -195.231.0.0/18 202242 -195.231.64.0/19 202242 -195.231.128.0/17 3240 -195.232.128.0/20 12663 -195.232.144.0/23 12663 -195.232.146.0/23 201917 -195.232.148.0/22 12663 -195.232.152.0/21 12663 -195.232.160.0/19 12663 -195.232.192.0/18 12663 -195.233.0.0/19 12663 -195.233.32.0/20 12663 -195.233.48.0/23 12663 -195.233.50.0/23 1273 -195.233.52.0/24 12663 -195.233.53.0/24 1273 -195.233.54.0/23 12663 -195.233.56.0/21 12663 -195.233.64.0/18 12663 -195.233.128.0/20 12663 -195.233.144.0/22 12663 -195.233.148.0/24 12663 -195.233.149.0/24 201917 -195.233.150.0/24 12663 -195.233.151.0/24 1273 -195.233.152.0/23 12663 -195.233.154.0/24 12663 -195.233.155.0/24 201917 -195.233.156.0/22 12663 -195.233.160.0/19 12663 -195.233.192.0/18 12663 -195.234.0.0/23 20546 -195.234.2.0/23 50037 -195.234.4.0/23 51734 -195.234.7.0/24 50027 -195.234.8.0/23 49102 -195.234.10.0/23 198047 -195.234.12.0/23 50061 -195.234.14.0/23 45011 -195.234.16.0/23 43862 -195.234.18.0/24 35369 -195.234.19.0/24 8447 -195.234.20.0/23 30782 -195.234.22.0/23 31215 -195.234.24.0/24 6774 -195.234.26.0/23 41075 -195.234.30.0/23 25326 -195.234.32.0/24 6848 -195.234.33.0/24 39035 -195.234.34.0/24 8220 -195.234.35.0/24 30781 -195.234.36.0/24 35676 -195.234.38.0/24 48482 -195.234.39.0/24 30931 -195.234.40.0/24 31628 -195.234.41.0/24 12670 -195.234.42.0/24 41526 -195.234.43.0/24 15576 -195.234.44.0/24 35698 -195.234.45.0/24 35701 -195.234.46.0/24 8554 -195.234.47.0/24 38993 -195.234.48.0/24 42973 -195.234.50.0/24 25394 -195.234.51.0/24 14537 -195.234.54.0/23 35726 -195.234.56.0/24 29124 -195.234.58.0/24 20935 -195.234.60.0/24 44776 -195.234.61.0/24 29117 -195.234.64.0/22 24951 -195.234.68.0/22 13307 -195.234.72.0/22 33999 -195.234.76.0/22 34136 -195.234.80.0/23 35652 -195.234.84.0/22 42844 -195.234.92.0/22 56911 -195.234.96.0/23 41787 -195.234.100.0/22 41363 -195.234.104.0/22 31572 -195.234.108.0/22 2635 -195.234.116.0/22 39925 -195.234.124.0/24 62240 -195.234.126.0/24 47264 -195.234.127.0/24 202246 -195.234.128.0/24 35244 -195.234.129.0/24 49871 -195.234.132.0/24 25183 -195.234.133.0/24 25254 -195.234.134.0/24 25253 -195.234.135.0/24 29093 -195.234.136.0/24 6907 -195.234.137.0/24 25020 -195.234.138.0/24 199132 -195.234.139.0/24 20676 -195.234.141.0/24 59977 -195.234.142.0/24 8236 -195.234.144.0/24 25241 -195.234.145.0/24 5488 -195.234.148.0/24 25282 -195.234.149.0/24 24909 -195.234.150.0/24 1257 -195.234.151.0/24 25268 -195.234.152.0/24 286 -195.234.155.0/24 16509 -195.234.158.0/24 25235 -195.234.160.0/24 41240 -195.234.162.0/24 8476 -195.234.163.0/24 15398 -195.234.164.0/24 204953 -195.234.165.0/24 13278 -195.234.167.0/24 25297 -195.234.171.0/24 31034 -195.234.172.0/24 6830 -195.234.173.0/24 25525 -195.234.174.0/24 25315 -195.234.175.0/24 15404 -195.234.176.0/24 25342 -195.234.177.0/24 25318 -195.234.178.0/24 15495 -195.234.180.0/24 15404 -195.234.182.0/24 31354 -195.234.183.0/24 25068 -195.234.184.0/24 34762 -195.234.186.0/24 25344 -195.234.187.0/24 48729 -195.234.188.0/24 25409 -195.234.190.0/24 20872 -195.234.191.0/24 201689 -195.234.192.0/22 15404 -195.234.196.0/22 8236 -195.234.200.0/22 25203 -195.234.204.0/22 25238 -195.234.208.0/22 20655 -195.234.212.0/22 24703 -195.234.216.0/23 12843 -195.234.218.0/24 12843 -195.234.220.0/22 21500 -195.234.224.0/22 25275 -195.234.228.0/22 25260 -195.234.232.0/22 25300 -195.234.236.0/22 13236 -195.234.240.0/22 12789 -195.234.244.0/22 21371 -195.234.248.0/22 29137 -195.235.0.0/20 3352 -195.235.16.0/21 3352 -195.235.24.0/22 202997 -195.235.28.0/23 202997 -195.235.30.0/24 202997 -195.235.31.0/24 3352 -195.235.32.0/21 3352 -195.235.40.0/23 3352 -195.235.42.0/24 204654 -195.235.43.0/24 3352 -195.235.44.0/22 3352 -195.235.48.0/21 3352 -195.235.56.0/23 3352 -195.235.58.0/24 3352 -195.235.59.0/24 6813 -195.235.60.0/22 3352 -195.235.64.0/19 3352 -195.235.96.0/20 3352 -195.235.112.0/24 35264 -195.235.113.0/24 3352 -195.235.114.0/23 3352 -195.235.116.0/22 3352 -195.235.120.0/21 3352 -195.235.128.0/19 3352 -195.235.160.0/22 3352 -195.235.164.0/24 200165 -195.235.165.0/24 3352 -195.235.166.0/23 3352 -195.235.168.0/23 202997 -195.235.170.0/23 3352 -195.235.172.0/22 3352 -195.235.176.0/20 3352 -195.235.192.0/19 3352 -195.235.224.0/22 3352 -195.235.228.0/22 202997 -195.235.232.0/24 6813 -195.235.233.0/24 3352 -195.235.234.0/23 6813 -195.235.236.0/22 3352 -195.235.240.0/21 3352 -195.235.248.0/24 30846 -195.235.249.0/24 3352 -195.235.250.0/23 3352 -195.235.252.0/22 3352 -195.236.0.0/16 719 -195.237.0.0/18 719 -195.237.64.0/20 719 -195.237.80.0/24 28883 -195.237.81.0/24 719 -195.237.82.0/23 719 -195.237.84.0/22 719 -195.237.88.0/21 719 -195.237.96.0/19 719 -195.237.128.0/17 719 -195.238.0.0/19 5432 -195.238.32.0/19 12440 -195.238.64.0/23 43883 -195.238.66.0/23 31242 -195.238.70.0/23 39330 -195.238.72.0/23 31174 -195.238.74.0/23 50673 -195.238.76.0/23 43948 -195.238.80.0/23 198102 -195.238.82.0/23 50447 -195.238.84.0/23 39251 -195.238.86.0/23 41960 -195.238.88.0/23 39260 -195.238.90.0/23 39276 -195.238.92.0/23 39299 -195.238.96.0/22 34493 -195.238.100.0/22 42323 -195.238.104.0/22 29256 -195.238.108.0/22 49204 -195.238.112.0/22 24881 -195.238.116.0/22 44482 -195.238.120.0/24 201660 -195.238.124.0/22 12679 -195.238.128.0/19 8442 -195.238.160.0/22 28932 -195.238.164.0/22 47252 -195.238.168.0/22 56709 -195.238.172.0/22 198047 -195.238.176.0/22 41165 -195.238.180.0/24 41166 -195.238.184.0/22 24723 -195.238.188.0/22 34065 -195.238.192.0/19 790 -195.238.224.0/24 34966 -195.238.226.0/24 3215 -195.238.227.0/24 34656 -195.238.231.0/24 201689 -195.238.232.0/24 39326 -195.238.233.0/24 8881 -195.238.234.0/24 50272 -195.238.235.0/24 12779 -195.238.236.0/24 15694 -195.238.238.0/24 12897 -195.238.239.0/24 34662 -195.238.240.0/24 201689 -195.238.241.0/24 34675 -195.238.244.0/24 15695 -195.238.245.0/24 34730 -195.238.246.0/24 34858 -195.238.247.0/24 201689 -195.238.248.0/24 206316 -195.238.250.0/24 35083 -195.238.251.0/24 35012 -195.238.252.0/24 206316 -195.238.253.0/24 28959 -195.238.254.0/24 35073 -195.238.255.0/24 50989 -195.239.0.0/19 3216 -195.239.32.0/20 3216 -195.239.48.0/22 3216 -195.239.52.0/23 3216 -195.239.54.0/24 41258 -195.239.55.0/24 3216 -195.239.56.0/21 3216 -195.239.64.0/24 34838 -195.239.65.0/24 3216 -195.239.66.0/23 3216 -195.239.68.0/22 3216 -195.239.72.0/21 3216 -195.239.80.0/20 3216 -195.239.96.0/19 3216 -195.239.128.0/21 3216 -195.239.136.0/22 3216 -195.239.140.0/23 3216 -195.239.142.0/24 199316 -195.239.143.0/24 3216 -195.239.144.0/20 3216 -195.239.160.0/19 3216 -195.239.192.0/21 3216 -195.239.200.0/22 3216 -195.239.204.0/23 3216 -195.239.206.0/23 21483 -195.239.208.0/20 3216 -195.239.224.0/19 3216 -195.240.0.0/15 1136 -195.242.0.0/19 8377 -195.242.32.0/19 702 -195.242.64.0/23 51948 -195.242.66.0/23 34247 -195.242.68.0/23 31242 -195.242.70.0/23 34253 -195.242.72.0/22 201466 -195.242.76.0/23 34258 -195.242.80.0/23 34280 -195.242.84.0/23 60384 -195.242.86.0/23 34344 -195.242.88.0/23 34301 -195.242.92.0/23 34324 -195.242.95.0/24 34321 -195.242.96.0/23 34430 -195.242.98.0/23 60781 -195.242.100.0/22 9211 -195.242.104.0/23 29037 -195.242.106.0/23 34340 -195.242.108.0/23 51960 -195.242.112.0/23 34046 -195.242.114.0/23 34355 -195.242.116.0/23 41079 -195.242.120.0/23 34848 -195.242.122.0/23 202 -195.242.124.0/23 39716 -195.242.126.0/23 41799 -195.242.128.0/23 35434 -195.242.130.0/23 62121 -195.242.132.0/23 8473 -195.242.134.0/23 49787 -195.242.138.0/23 197704 -195.242.140.0/23 6830 -195.242.142.0/23 42151 -195.242.144.0/23 41929 -195.242.150.0/23 42068 -195.242.153.0/24 29802 -195.242.154.0/23 60610 -195.242.156.0/23 44980 -195.242.158.0/23 31074 -195.242.160.0/24 47112 -195.242.161.0/24 47434 -195.242.162.0/24 42652 -195.242.163.0/24 61232 -195.242.164.0/23 61232 -195.242.166.0/24 43957 -195.242.167.0/24 200297 -195.242.168.0/24 8437 -195.242.169.0/24 47451 -195.242.171.0/24 34756 -195.242.173.0/24 12312 -195.242.174.0/24 47461 -195.242.175.0/24 3330 -195.242.176.0/24 47468 -195.242.177.0/24 206316 -195.242.178.0/24 206316 -195.242.179.0/24 47517 -195.242.180.0/24 47472 -195.242.181.0/24 31686 -195.242.182.0/24 56572 -195.242.183.0/24 20983 -195.242.184.0/24 1764 -195.242.185.0/24 47483 -195.242.186.0/24 47476 -195.242.187.0/24 56572 -195.242.188.0/24 43977 -195.242.189.0/24 35041 -195.242.190.0/24 47491 -195.242.191.0/24 43646 -195.242.192.0/22 33916 -195.242.196.0/22 25019 -195.242.200.0/22 51194 -195.242.204.0/22 12830 -195.242.208.0/22 48095 -195.242.212.0/22 9009 -195.242.216.0/23 50916 -195.242.218.0/23 6849 -195.242.220.0/24 34953 -195.242.223.0/24 205468 -195.242.224.0/24 201685 -195.242.226.0/23 201685 -195.242.228.0/22 12312 -195.242.232.0/22 202281 -195.242.236.0/22 42831 -195.242.240.0/22 203178 -195.242.244.0/22 31313 -195.242.252.0/22 29314 -195.243.0.0/16 3320 -195.244.0.0/23 39538 -195.244.4.0/23 39558 -195.244.6.0/23 61207 -195.244.8.0/23 39546 -195.244.10.0/23 24833 -195.244.20.0/23 39583 -195.244.23.0/24 35532 -195.244.24.0/23 47566 -195.244.30.0/23 63140 -195.244.32.0/19 43391 -195.244.64.0/20 1759 -195.244.88.0/23 200444 -195.244.96.0/19 5521 -195.244.128.0/20 20910 -195.244.144.0/23 8194 -195.244.146.0/24 210213 -195.244.147.0/24 8194 -195.244.148.0/22 8194 -195.244.152.0/21 8194 -195.244.160.0/19 15383 -195.244.192.0/19 8301 -195.244.224.0/21 5605 -195.244.232.0/22 5605 -195.244.236.0/23 5605 -195.244.238.0/24 5605 -195.244.239.0/24 199273 -195.244.240.0/20 5605 -195.245.0.0/18 6735 -195.245.64.0/23 34015 -195.245.68.0/23 33990 -195.245.70.0/23 50114 -195.245.74.0/23 46261 -195.245.76.0/23 34052 -195.245.78.0/23 5578 -195.245.80.0/23 34046 -195.245.82.0/23 34043 -195.245.86.0/23 29551 -195.245.90.0/23 30864 -195.245.92.0/23 29429 -195.245.94.0/23 29620 -195.245.96.0/22 202293 -195.245.100.0/23 34099 -195.245.102.0/24 48031 -195.245.103.0/24 49505 -195.245.104.0/23 198408 -195.245.106.0/23 34367 -195.245.110.0/24 34665 -195.245.111.0/24 62240 -195.245.112.0/23 21100 -195.245.114.0/23 250 -195.245.116.0/23 206867 -195.245.118.0/23 34187 -195.245.120.0/23 34251 -195.245.122.0/23 2830 -195.245.124.0/24 35994 -195.245.125.0/24 20940 -195.245.126.0/23 34164 -195.245.128.0/18 9186 -195.245.193.0/24 41240 -195.245.194.0/24 43877 -195.245.197.0/24 13134 -195.245.199.0/24 203507 -195.245.200.0/24 31148 -195.245.201.0/24 8426 -195.245.202.0/24 13243 -195.245.204.0/24 41959 -195.245.205.0/24 5548 -195.245.206.0/24 15707 -195.245.208.0/24 25499 -195.245.209.0/24 28892 -195.245.210.0/24 34848 -195.245.211.0/24 12389 -195.245.213.0/24 25506 -195.245.214.0/24 48975 -195.245.216.0/24 25541 -195.245.217.0/24 25523 -195.245.218.0/24 57210 -195.245.220.0/24 25536 -195.245.221.0/24 24685 -195.245.222.0/24 25552 -195.245.223.0/24 28861 -195.245.224.0/24 25557 -195.245.225.0/24 51350 -195.245.226.0/24 21288 -195.245.227.0/24 25566 -195.245.230.0/23 21345 -195.245.232.0/24 28741 -195.245.233.0/24 25373 -195.245.234.0/24 28672 -195.245.236.0/24 47121 -195.245.237.0/24 25598 -195.245.238.0/23 49392 -195.245.243.0/24 28693 -195.245.244.0/24 200513 -195.245.245.0/24 25415 -195.245.247.0/24 8220 -195.245.248.0/24 3352 -195.245.249.0/24 50619 -195.245.250.0/24 29015 -195.245.251.0/24 28763 -195.245.253.0/24 28724 -195.245.254.0/24 8489 -195.245.255.0/24 28766 -195.246.0.0/19 6764 -195.246.32.0/22 2561 -195.246.39.0/24 2561 -195.246.40.0/21 2561 -195.246.48.0/21 2561 -195.246.56.0/22 2561 -195.246.61.0/24 2561 -195.246.63.0/24 2561 -195.246.64.0/19 702 -195.246.96.0/23 5610 -195.246.98.0/23 27970 -195.246.100.0/23 47137 -195.246.102.0/23 47139 -195.246.104.0/24 41739 -195.246.106.0/23 47166 -195.246.108.0/23 44403 -195.246.110.0/23 49392 -195.246.112.0/23 16050 -195.246.114.0/23 47532 -195.246.116.0/23 47179 -195.246.118.0/23 34389 -195.246.120.0/23 43948 -195.246.122.0/23 20485 -195.246.124.0/23 197171 -195.246.126.0/23 60713 -195.246.158.0/24 3257 -195.246.160.0/19 8520 -195.246.192.0/22 15714 -195.246.196.0/24 15714 -195.246.198.0/24 3292 -195.246.199.0/24 41075 -195.246.200.0/22 205804 -195.246.204.0/24 39080 -195.246.206.0/24 51699 -195.246.207.0/24 39080 -195.246.208.0/21 15607 -195.246.216.0/24 41647 -195.246.217.0/24 41649 -195.246.218.0/24 51293 -195.246.220.0/22 15746 -195.246.224.0/23 206957 -195.246.228.0/23 3356 -195.246.230.0/23 39600 -195.246.232.0/23 16276 -195.246.234.0/23 44003 -195.246.236.0/23 39637 -195.246.238.0/23 9186 -195.246.240.0/23 39635 -195.246.242.0/23 20616 -195.246.244.0/23 196651 -195.246.250.0/23 39646 -195.246.252.0/23 39645 -195.246.254.0/23 207753 -195.247.0.0/16 12312 -195.248.32.0/19 8437 -195.248.64.0/24 33867 -195.248.65.0/24 41210 -195.248.66.0/24 41180 -195.248.67.0/24 47369 -195.248.68.0/24 41182 -195.248.69.0/24 41226 -195.248.70.0/24 12703 -195.248.72.0/24 41188 -195.248.73.0/24 6830 -195.248.74.0/24 198296 -195.248.75.0/24 49485 -195.248.76.0/24 39737 -195.248.77.0/24 209590 -195.248.78.0/24 16150 -195.248.79.0/24 59938 -195.248.80.0/24 198949 -195.248.81.0/24 41342 -195.248.82.0/24 41217 -195.248.83.0/24 8652 -195.248.85.0/24 21013 -195.248.86.0/24 1759 -195.248.87.0/24 8455 -195.248.88.0/24 197217 -195.248.89.0/24 3320 -195.248.91.0/24 59810 -195.248.92.0/24 15576 -195.248.93.0/24 41260 -195.248.94.0/24 48788 -195.248.95.0/24 41251 -195.248.96.0/19 8419 -195.248.128.0/22 3320 -195.248.132.0/24 3320 -195.248.136.0/23 13157 -195.248.140.0/23 3320 -195.248.142.0/23 5669 -195.248.160.0/19 6703 -195.248.224.0/24 24940 -195.248.225.0/24 42648 -195.248.226.0/23 48559 -195.248.228.0/23 42640 -195.248.230.0/23 199581 -195.248.232.0/23 42677 -195.248.234.0/23 42655 -195.248.236.0/23 39293 -195.248.238.0/23 47886 -195.248.240.0/22 202269 -195.248.244.0/23 207753 -195.248.246.0/23 42673 -195.248.248.0/23 39264 -195.248.250.0/23 43311 -195.248.252.0/23 42698 -195.248.254.0/23 42717 -195.249.0.0/16 3292 -195.250.0.0/21 6737 -195.250.10.0/24 21056 -195.250.12.0/22 6737 -195.250.16.0/20 57276 -195.250.33.0/24 39274 -195.250.34.0/24 31034 -195.250.35.0/24 8426 -195.250.36.0/24 39262 -195.250.37.0/24 39261 -195.250.38.0/24 202962 -195.250.39.0/24 34489 -195.250.40.0/24 31576 -195.250.42.0/24 42027 -195.250.43.0/24 29342 -195.250.44.0/24 3303 -195.250.45.0/24 6730 -195.250.46.0/24 15404 -195.250.47.0/24 59602 -195.250.48.0/24 3320 -195.250.50.0/24 3320 -195.250.51.0/24 39428 -195.250.52.0/24 39296 -195.250.53.0/24 39474 -195.250.54.0/24 199831 -195.250.56.0/24 39350 -195.250.57.0/24 3320 -195.250.58.0/24 39320 -195.250.59.0/24 16199 -195.250.60.0/24 198228 -195.250.61.0/24 45011 -195.250.62.0/24 39329 -195.250.64.0/19 49800 -195.250.96.0/19 8534 -195.250.128.0/19 29208 -195.250.160.0/19 3249 -195.250.192.0/24 8307 -195.250.193.0/24 5603 -195.250.194.0/23 5603 -195.250.196.0/22 5603 -195.250.200.0/21 5603 -195.250.208.0/21 5603 -195.250.224.0/19 5394 -195.251.0.0/19 5408 -195.251.32.0/24 201374 -195.251.33.0/24 5408 -195.251.34.0/23 5408 -195.251.36.0/22 5408 -195.251.40.0/21 5408 -195.251.48.0/20 5408 -195.251.64.0/18 5408 -195.251.128.0/18 5408 -195.251.192.0/19 5408 -195.251.224.0/20 5408 -195.251.240.0/22 5408 -195.251.244.0/23 31563 -195.251.246.0/24 31563 -195.251.247.0/24 5408 -195.251.248.0/21 5408 -195.252.0.0/19 12782 -195.252.32.0/19 3301 -195.252.64.0/18 6700 -195.252.128.0/17 61157 -195.253.0.0/21 8391 -195.253.8.0/21 15763 -195.253.16.0/22 15763 -195.253.20.0/24 8391 -195.253.21.0/24 15763 -195.253.22.0/23 8391 -195.253.24.0/22 15763 -195.253.28.0/23 15763 -195.253.30.0/24 15763 -195.253.31.0/24 8391 -195.253.32.0/20 8391 -195.253.48.0/22 48519 -195.253.52.0/23 48519 -195.253.54.0/23 8391 -195.253.56.0/21 8391 -195.253.64.0/24 8561 -195.253.65.0/24 8391 -195.253.66.0/24 8561 -195.253.67.0/24 8391 -195.253.68.0/22 8391 -195.253.72.0/21 8391 -195.253.80.0/22 8391 -195.253.84.0/22 48519 -195.253.88.0/21 8391 -195.253.96.0/22 8561 -195.253.100.0/24 8561 -195.253.101.0/24 48519 -195.253.102.0/24 8561 -195.253.103.0/24 50611 -195.253.104.0/22 50611 -195.253.108.0/23 8561 -195.253.110.0/23 8391 -195.253.112.0/20 8391 -195.253.128.0/17 8391 -195.254.0.0/17 12312 -195.254.128.0/23 49652 -195.254.133.0/24 39385 -195.254.134.0/23 38935 -195.254.138.0/23 30731 -195.254.140.0/23 208913 -195.254.144.0/23 35635 -195.254.146.0/23 16189 -195.254.148.0/23 200521 -195.254.150.0/24 34068 -195.254.151.0/24 209647 -195.254.156.0/23 61078 -195.254.158.0/23 38989 -195.254.160.0/23 51038 -195.254.162.0/23 8804 -195.254.166.0/23 51029 -195.254.168.0/23 51073 -195.254.170.0/23 56753 -195.254.172.0/23 200168 -195.254.174.0/23 51060 -195.254.176.0/23 198467 -195.254.178.0/24 20577 -195.254.180.0/23 197085 -195.254.182.0/23 47734 -195.254.184.0/23 50434 -195.254.188.0/23 51070 -195.254.190.0/23 51066 -195.254.192.0/19 13243 -195.254.224.0/19 44512 -195.255.0.0/16 719 -196.0.0.0/16 21491 -196.1.0.0/24 37708 -196.1.4.0/24 36948 -196.1.15.0/24 36936 -196.1.28.0/22 33763 -196.1.32.0/24 3741 -196.1.56.0/21 22355 -196.1.69.0/24 6412 -196.1.70.0/24 9155 -196.1.71.0/24 5713 -196.1.75.0/24 5713 -196.1.76.0/22 5713 -196.1.85.0/24 5713 -196.1.86.0/24 5713 -196.1.92.0/22 8346 -196.1.96.0/22 8346 -196.1.100.0/24 8346 -196.1.102.0/24 2905 -196.1.103.0/24 3741 -196.1.105.0/24 55446 -196.1.106.0/24 55446 -196.1.107.0/24 23021 -196.1.109.0/24 55433 -196.1.110.0/23 55446 -196.1.113.0/24 55433 -196.1.114.0/24 55847 -196.1.115.0/24 3741 -196.1.116.0/23 327977 -196.1.120.0/21 36867 -196.1.128.0/23 2905 -196.1.130.0/24 37053 -196.1.131.0/24 37247 -196.1.132.0/24 37274 -196.1.133.0/24 37258 -196.1.138.0/23 30689 -196.1.142.0/24 10278 -196.1.143.0/24 36929 -196.1.144.0/20 25818 -196.1.160.0/24 11139 -196.1.161.0/24 46408 -196.1.162.0/24 11139 -196.1.167.0/24 11139 -196.1.168.0/24 11139 -196.1.169.0/24 46408 -196.1.170.0/24 14813 -196.1.171.0/24 11139 -196.1.176.0/20 37629 -196.1.192.0/18 15706 -196.2.0.0/23 3586 -196.2.2.0/24 14988 -196.2.3.0/24 33764 -196.2.8.0/21 25429 -196.2.16.0/20 10474 -196.2.32.0/22 10474 -196.2.36.0/23 10474 -196.2.38.0/23 12258 -196.2.40.0/23 12258 -196.2.42.0/24 12258 -196.2.43.0/24 10474 -196.2.44.0/24 12258 -196.2.45.0/24 10474 -196.2.46.0/23 12258 -196.2.48.0/20 12258 -196.2.64.0/20 37183 -196.2.80.0/20 36941 -196.2.96.0/19 33762 -196.2.128.0/21 12258 -196.2.136.0/21 10474 -196.2.144.0/22 10474 -196.2.148.0/23 10474 -196.2.150.0/24 10474 -196.2.151.0/24 12258 -196.2.152.0/21 12258 -196.2.160.0/19 10803 -196.2.193.0/24 33777 -196.3.0.0/21 3586 -196.3.8.0/22 18895 -196.3.12.0/23 18895 -196.3.14.0/23 36978 -196.3.35.0/24 2047 -196.3.36.0/22 2047 -196.3.43.0/24 2047 -196.3.46.0/23 2047 -196.3.48.0/23 2047 -196.3.50.0/24 2047 -196.3.52.0/24 8612 -196.3.54.0/23 27681 -196.3.56.0/24 2047 -196.3.74.0/23 6400 -196.3.76.0/22 6400 -196.3.80.0/21 6400 -196.3.88.0/23 6400 -196.3.94.0/24 37009 -196.3.95.0/24 10278 -196.3.96.0/21 31960 -196.3.105.0/24 11845 -196.3.110.0/24 16637 -196.3.111.0/24 2905 -196.3.113.0/24 5713 -196.3.114.0/23 5713 -196.3.132.0/22 5639 -196.3.136.0/21 5639 -196.3.144.0/22 5639 -196.3.151.0/24 11157 -196.3.155.0/24 5713 -196.3.156.0/23 3741 -196.3.159.0/24 3741 -196.3.161.0/24 5713 -196.3.162.0/23 3741 -196.3.164.0/22 11845 -196.3.168.0/21 11845 -196.3.176.0/22 11845 -196.3.184.0/21 22306 -196.3.192.0/21 35900 -196.3.200.0/22 35900 -196.3.204.0/23 35900 -196.3.224.0/19 2905 -196.4.0.0/24 11744 -196.4.2.0/23 11744 -196.4.4.0/24 11744 -196.4.10.0/23 11744 -196.4.17.0/24 36937 -196.4.18.0/24 6453 -196.4.30.0/23 2905 -196.4.32.0/22 2905 -196.4.56.0/23 49362 -196.4.68.0/23 49362 -196.4.70.0/24 2905 -196.4.71.0/24 3741 -196.4.72.0/22 3741 -196.4.76.0/24 3741 -196.4.78.0/24 2905 -196.4.79.0/24 5713 -196.4.80.0/24 327863 -196.4.81.0/24 2018 -196.4.83.0/24 3741 -196.4.84.0/24 327701 -196.4.86.0/23 2905 -196.4.88.0/22 2905 -196.4.92.0/24 2905 -196.4.93.0/24 16637 -196.4.95.0/24 2018 -196.4.97.0/24 3741 -196.4.100.0/22 2905 -196.4.104.0/22 2905 -196.4.140.0/22 2905 -196.4.144.0/22 2905 -196.4.148.0/24 2905 -196.4.160.0/23 3741 -196.4.163.0/24 17148 -196.4.164.0/23 17148 -196.4.168.0/24 3741 -196.4.172.0/23 3741 -196.4.174.0/24 3741 -196.4.175.0/24 5713 -196.4.176.0/24 5713 -196.4.177.0/24 3741 -196.4.178.0/23 3741 -196.4.180.0/22 3741 -196.4.184.0/22 3741 -196.4.188.0/24 3741 -196.4.212.0/22 3741 -196.4.216.0/21 3741 -196.4.224.0/20 3741 -196.4.250.0/23 7020 -196.4.255.0/24 33567 -196.5.5.0/24 3067 -196.5.8.0/24 3067 -196.5.38.0/23 3067 -196.5.42.0/23 3067 -196.5.50.0/24 3067 -196.5.52.0/24 3067 -196.5.54.0/24 3067 -196.5.58.0/24 3067 -196.5.60.0/22 3067 -196.5.66.0/24 3067 -196.5.69.0/24 3067 -196.5.88.0/23 3067 -196.5.102.0/24 3067 -196.5.105.0/24 3067 -196.5.108.0/23 3067 -196.5.116.0/24 3067 -196.5.120.0/22 3067 -196.5.124.0/23 3067 -196.5.126.0/24 3067 -196.5.128.0/23 3067 -196.5.131.0/24 3067 -196.5.134.0/24 3067 -196.5.145.0/24 3067 -196.5.148.0/23 3067 -196.5.193.0/24 3067 -196.5.195.0/24 3067 -196.5.196.0/22 3067 -196.5.207.0/24 3067 -196.5.208.0/23 3067 -196.5.227.0/24 3067 -196.5.231.0/24 3067 -196.6.103.0/24 37567 -196.6.104.0/21 327761 -196.6.112.0/21 36874 -196.6.122.0/24 37639 -196.6.129.0/24 29975 -196.6.130.0/24 36994 -196.6.133.0/24 3741 -196.6.136.0/23 3741 -196.6.141.0/24 37457 -196.6.142.0/24 3741 -196.6.143.0/24 37457 -196.6.147.0/24 3741 -196.6.149.0/24 3741 -196.6.150.0/23 3741 -196.6.153.0/24 3741 -196.6.160.0/23 3741 -196.6.162.0/24 3741 -196.6.167.0/24 37457 -196.6.172.0/24 37100 -196.6.174.0/23 327749 -196.6.184.0/24 23058 -196.6.185.0/24 37583 -196.6.186.0/23 37555 -196.6.188.0/22 37588 -196.6.192.0/22 37591 -196.6.198.0/24 2018 -196.6.199.0/24 49699 -196.6.202.0/23 37579 -196.6.204.0/22 37587 -196.6.208.0/22 23058 -196.6.212.0/23 3741 -196.6.215.0/24 37601 -196.6.216.0/23 327953 -196.6.220.0/24 37578 -196.6.221.0/24 8094 -196.6.222.0/23 3741 -196.6.224.0/24 327949 -196.6.225.0/24 327958 -196.6.226.0/24 327973 -196.6.227.0/24 328018 -196.6.228.0/24 37025 -196.6.229.0/24 328192 -196.6.230.0/24 328065 -196.6.231.0/24 328135 -196.6.232.0/22 328009 -196.6.236.0/24 37585 -196.6.237.0/24 3741 -196.6.238.0/23 37667 -196.6.240.0/23 3741 -196.6.242.0/24 37356 -196.6.243.0/24 37179 -196.6.251.0/24 3741 -196.6.255.0/24 37590 -196.7.0.0/18 2905 -196.7.64.0/20 2905 -196.7.80.0/21 2905 -196.7.88.0/22 2905 -196.7.92.0/24 2905 -196.7.93.0/24 37353 -196.7.94.0/23 2905 -196.7.96.0/20 2905 -196.7.112.0/21 2905 -196.7.120.0/22 2905 -196.7.124.0/23 2905 -196.7.126.0/24 2905 -196.7.127.0/24 37353 -196.7.128.0/17 2905 -196.8.6.0/24 10798 -196.8.11.0/24 10798 -196.8.12.0/24 10798 -196.8.26.0/24 10798 -196.8.37.0/24 10798 -196.8.38.0/24 10798 -196.8.85.0/24 10798 -196.8.86.0/23 10798 -196.8.88.0/23 10798 -196.8.90.0/24 10798 -196.8.94.0/23 10798 -196.8.99.0/24 10798 -196.8.100.0/22 10798 -196.8.104.0/22 10798 -196.8.108.0/23 10798 -196.8.110.0/24 10798 -196.8.112.0/24 10798 -196.8.114.0/23 10798 -196.8.117.0/24 10798 -196.8.118.0/23 10798 -196.8.123.0/24 10798 -196.8.124.0/23 10798 -196.8.126.0/24 10798 -196.8.128.0/22 10798 -196.8.132.0/24 10798 -196.8.136.0/24 10798 -196.8.141.0/24 10798 -196.8.142.0/23 10798 -196.8.145.0/24 10798 -196.8.147.0/24 10798 -196.8.152.0/24 10798 -196.8.161.0/24 10798 -196.8.178.0/23 10798 -196.8.202.0/23 10798 -196.8.204.0/24 10798 -196.8.206.0/23 10798 -196.8.208.0/24 10798 -196.8.210.0/23 10798 -196.8.212.0/22 10798 -196.8.216.0/23 10798 -196.8.218.0/24 10798 -196.8.219.0/24 19711 -196.8.221.0/24 10798 -196.8.222.0/24 10798 -196.8.224.0/24 43256 -196.8.225.0/24 23889 -196.8.226.0/23 10798 -196.8.229.0/24 10798 -196.8.231.0/24 10798 -196.8.233.0/24 10798 -196.8.237.0/24 10798 -196.8.238.0/24 10798 -196.8.245.0/24 10798 -196.9.8.0/24 3067 -196.9.24.0/21 3067 -196.9.32.0/24 3067 -196.9.88.0/24 3067 -196.9.108.0/24 3067 -196.9.110.0/23 3067 -196.9.112.0/23 3067 -196.9.114.0/24 3067 -196.9.119.0/24 3067 -196.9.124.0/24 3067 -196.9.141.0/24 3067 -196.9.161.0/24 3067 -196.9.163.0/24 3067 -196.9.164.0/23 3067 -196.9.200.0/24 3067 -196.9.209.0/24 3067 -196.9.210.0/24 3067 -196.9.236.0/24 3067 -196.9.239.0/24 3067 -196.9.244.0/24 3067 -196.10.1.0/24 7020 -196.10.2.0/23 7020 -196.10.4.0/22 7020 -196.10.8.0/21 7020 -196.10.16.0/20 7020 -196.10.32.0/20 7020 -196.10.48.0/23 7020 -196.10.50.0/24 7020 -196.10.52.0/23 37474 -196.10.54.0/24 37663 -196.10.55.0/24 37668 -196.10.56.0/22 37018 -196.10.64.0/22 136782 -196.10.68.0/24 43092 -196.10.69.0/24 136782 -196.10.70.0/23 136782 -196.10.72.0/24 136782 -196.10.97.0/24 37664 -196.10.98.0/23 37599 -196.10.101.0/24 12091 -196.10.104.0/24 3741 -196.10.112.0/22 17148 -196.10.116.0/23 17148 -196.10.118.0/24 3741 -196.10.119.0/24 37610 -196.10.120.0/24 327838 -196.10.121.0/24 2018 -196.10.122.0/23 327773 -196.10.124.0/22 3741 -196.10.130.0/23 3741 -196.10.132.0/22 3741 -196.10.138.0/23 37683 -196.10.147.0/24 37592 -196.10.148.0/24 37697 -196.10.150.0/23 3741 -196.10.152.0/21 3741 -196.10.160.0/19 3741 -196.10.192.0/21 3741 -196.10.203.0/24 2018 -196.10.204.0/22 3741 -196.10.208.0/22 3741 -196.10.212.0/23 3741 -196.10.214.0/24 33769 -196.10.215.0/24 327845 -196.10.216.0/22 21271 -196.10.224.0/24 5713 -196.10.228.0/24 37679 -196.10.229.0/24 3741 -196.10.248.0/23 3741 -196.11.1.0/24 5713 -196.11.2.0/23 5713 -196.11.4.0/22 5713 -196.11.8.0/21 5713 -196.11.16.0/21 5713 -196.11.24.0/23 5713 -196.11.26.0/24 5713 -196.11.27.0/24 37457 -196.11.28.0/24 5713 -196.11.29.0/24 37457 -196.11.30.0/24 5713 -196.11.31.0/24 3741 -196.11.48.0/22 37691 -196.11.52.0/24 37691 -196.11.55.0/24 37691 -196.11.56.0/23 2905 -196.11.58.0/24 3741 -196.11.62.0/24 37644 -196.11.63.0/24 37356 -196.11.69.0/24 3741 -196.11.70.0/24 3741 -196.11.72.0/24 3741 -196.11.76.0/22 2018 -196.11.80.0/21 327941 -196.11.88.0/23 37298 -196.11.90.0/24 37647 -196.11.98.0/24 2018 -196.11.102.0/24 37656 -196.11.103.0/24 328272 -196.11.104.0/24 37660 -196.11.105.0/24 2905 -196.11.106.0/23 2905 -196.11.108.0/24 2905 -196.11.109.0/24 3741 -196.11.110.0/23 3741 -196.11.112.0/23 3741 -196.11.114.0/24 3741 -196.11.116.0/24 3741 -196.11.117.0/24 2905 -196.11.118.0/23 2905 -196.11.120.0/23 2905 -196.11.122.0/24 3741 -196.11.125.0/24 17148 -196.11.126.0/23 17148 -196.11.128.0/22 17148 -196.11.132.0/23 17148 -196.11.134.0/24 17148 -196.11.135.0/24 327759 -196.11.136.0/21 2018 -196.11.146.0/24 29975 -196.11.147.0/24 12258 -196.11.148.0/23 3741 -196.11.150.0/24 36979 -196.11.152.0/21 37353 -196.11.170.0/23 3741 -196.11.172.0/23 3741 -196.11.174.0/24 3741 -196.11.175.0/24 37505 -196.11.176.0/21 327996 -196.11.188.0/24 3741 -196.11.190.0/24 9129 -196.11.191.0/24 327748 -196.11.192.0/23 36994 -196.11.194.0/24 36994 -196.11.195.0/24 37179 -196.11.196.0/24 36994 -196.11.197.0/24 37179 -196.11.205.0/24 3741 -196.11.206.0/24 327848 -196.11.209.0/24 3741 -196.11.211.0/24 2905 -196.11.212.0/24 2905 -196.11.231.0/24 327729 -196.11.233.0/24 3741 -196.11.235.0/24 2018 -196.11.238.0/24 2905 -196.11.239.0/24 12091 -196.11.240.0/22 12091 -196.11.244.0/23 12091 -196.11.246.0/24 2905 -196.11.255.0/24 327730 -196.12.0.0/21 18895 -196.12.8.0/23 18895 -196.12.10.0/24 37513 -196.12.11.0/24 37003 -196.12.12.0/22 36959 -196.12.16.0/24 3741 -196.12.32.0/19 7633 -196.12.69.0/24 4515 -196.12.70.0/24 4515 -196.12.72.0/24 4515 -196.12.128.0/24 21174 -196.12.129.0/24 37006 -196.12.130.0/23 21174 -196.12.132.0/24 37006 -196.12.133.0/24 21174 -196.12.134.0/23 37006 -196.12.136.0/24 21174 -196.12.137.0/24 37006 -196.12.138.0/23 37006 -196.12.140.0/23 21174 -196.12.142.0/24 21174 -196.12.143.0/24 30844 -196.12.144.0/23 37006 -196.12.146.0/24 37006 -196.12.147.0/24 21174 -196.12.148.0/23 37006 -196.12.150.0/24 37006 -196.12.151.0/24 21174 -196.12.152.0/23 21174 -196.12.154.0/24 37006 -196.12.155.0/24 21174 -196.12.156.0/23 21174 -196.12.158.0/24 21174 -196.12.159.0/24 37006 -196.12.160.0/22 11367 -196.12.164.0/23 11367 -196.12.166.0/24 393573 -196.12.167.0/24 11367 -196.12.168.0/21 11367 -196.12.176.0/20 11367 -196.12.192.0/18 36884 -196.13.0.0/24 328043 -196.13.35.0/24 3741 -196.13.63.0/24 37179 -196.13.70.0/24 5713 -196.13.72.0/24 37179 -196.13.73.0/24 3741 -196.13.74.0/23 3741 -196.13.76.0/24 3741 -196.13.77.0/24 37179 -196.13.78.0/24 37179 -196.13.79.0/24 5713 -196.13.80.0/24 3741 -196.13.93.0/24 3741 -196.13.97.0/24 3741 -196.13.101.0/24 327951 -196.13.103.0/24 37347 -196.13.104.0/24 327904 -196.13.105.0/24 327912 -196.13.106.0/24 327811 -196.13.107.0/24 327923 -196.13.108.0/24 327917 -196.13.109.0/24 328273 -196.13.110.0/24 43256 -196.13.111.0/24 327942 -196.13.112.0/24 37222 -196.13.113.0/24 36994 -196.13.115.0/24 2018 -196.13.116.0/22 2018 -196.13.121.0/24 327766 -196.13.122.0/24 328102 -196.13.123.0/24 29614 -196.13.125.0/24 23889 -196.13.126.0/24 36937 -196.13.127.0/24 37630 -196.13.129.0/24 37630 -196.13.131.0/24 37630 -196.13.132.0/24 3741 -196.13.133.0/24 327774 -196.13.134.0/23 37312 -196.13.136.0/23 327753 -196.13.138.0/23 3067 -196.13.140.0/22 3067 -196.13.144.0/22 3067 -196.13.150.0/24 2018 -196.13.151.0/24 3067 -196.13.152.0/21 3067 -196.13.160.0/24 3067 -196.13.161.0/24 327784 -196.13.163.0/24 3741 -196.13.164.0/23 3741 -196.13.169.0/24 327787 -196.13.173.0/24 327793 -196.13.174.0/23 327928 -196.13.176.0/21 327939 -196.13.185.0/24 2018 -196.13.187.0/24 2018 -196.13.188.0/23 2018 -196.13.190.0/24 2018 -196.13.192.0/21 37373 -196.13.200.0/24 2018 -196.13.201.0/24 327967 -196.13.202.0/24 36948 -196.13.203.0/24 37476 -196.13.204.0/24 327801 -196.13.207.0/24 327871 -196.13.208.0/24 37343 -196.13.209.0/24 327884 -196.13.213.0/24 3741 -196.13.214.0/23 3741 -196.13.216.0/23 3741 -196.13.220.0/24 33769 -196.13.223.0/24 327734 -196.13.225.0/24 3741 -196.13.226.0/23 3741 -196.13.228.0/23 2905 -196.13.230.0/23 12091 -196.13.232.0/24 3741 -196.13.243.0/24 327918 -196.13.244.0/24 328405 -196.13.250.0/24 2018 -196.13.251.0/24 3741 -196.13.253.0/24 37583 -196.13.254.0/24 37675 -196.13.255.0/24 327927 -196.14.0.0/16 3741 -196.15.5.0/24 2905 -196.15.6.0/23 2905 -196.15.9.0/24 18922 -196.15.12.0/23 37428 -196.15.14.0/23 37438 -196.15.16.0/20 38538 -196.15.32.0/19 25019 -196.15.104.0/21 62355 -196.15.112.0/20 62355 -196.15.128.0/24 5713 -196.15.129.0/24 37457 -196.15.130.0/23 5713 -196.15.132.0/22 5713 -196.15.136.0/21 5713 -196.15.144.0/20 5713 -196.15.160.0/19 5713 -196.15.192.0/19 5713 -196.15.224.0/20 5713 -196.15.240.0/24 5713 -196.15.241.0/24 37457 -196.15.242.0/23 5713 -196.15.244.0/22 5713 -196.15.248.0/21 5713 -196.16.0.0/21 202425 -196.16.8.0/22 202425 -196.16.12.0/22 57717 -196.16.16.0/20 202425 -196.16.32.0/19 202425 -196.16.64.0/22 63956 -196.16.68.0/22 19969 -196.16.72.0/22 63956 -196.16.76.0/22 19969 -196.16.80.0/22 9009 -196.16.84.0/22 19969 -196.16.88.0/22 9009 -196.16.92.0/22 19969 -196.16.96.0/22 9009 -196.16.100.0/22 202425 -196.16.104.0/22 9009 -196.16.108.0/22 19969 -196.16.112.0/22 56611 -196.16.116.0/22 202425 -196.16.120.0/23 9009 -196.16.122.0/23 49335 -196.16.124.0/22 202425 -196.16.128.0/20 19969 -196.16.144.0/21 19969 -196.16.152.0/22 19969 -196.16.156.0/22 202425 -196.16.160.0/21 19969 -196.16.168.0/22 202425 -196.16.172.0/22 19969 -196.16.176.0/22 202425 -196.16.180.0/22 19969 -196.16.184.0/24 9009 -196.16.185.0/24 23470 -196.16.186.0/23 9009 -196.16.188.0/22 19969 -196.16.192.0/23 204655 -196.16.194.0/23 202425 -196.16.196.0/23 202425 -196.16.198.0/23 17216 -196.16.200.0/24 9009 -196.16.201.0/24 202425 -196.16.202.0/23 202425 -196.16.204.0/22 202425 -196.16.208.0/21 19969 -196.16.216.0/22 63956 -196.16.220.0/24 44066 -196.16.221.0/24 9009 -196.16.222.0/24 19969 -196.16.223.0/24 53999 -196.16.224.0/24 9009 -196.16.225.0/24 19969 -196.16.226.0/24 19969 -196.16.227.0/24 202425 -196.16.228.0/24 19969 -196.16.229.0/24 49335 -196.16.230.0/24 19969 -196.16.231.0/24 49335 -196.16.232.0/21 19969 -196.16.240.0/22 19969 -196.16.244.0/24 9009 -196.16.245.0/24 19969 -196.16.246.0/24 9009 -196.16.247.0/24 19969 -196.16.248.0/24 134451 -196.16.249.0/24 19969 -196.16.250.0/24 9009 -196.16.251.0/24 19969 -196.16.252.0/22 19969 -196.17.0.0/22 202425 -196.17.4.0/22 36351 -196.17.8.0/22 202425 -196.17.12.0/23 204655 -196.17.14.0/23 49367 -196.17.16.0/20 202425 -196.17.32.0/19 202425 -196.17.64.0/22 202425 -196.17.68.0/22 63956 -196.17.72.0/22 19969 -196.17.76.0/22 63956 -196.17.80.0/22 19969 -196.17.84.0/22 9009 -196.17.88.0/22 19969 -196.17.92.0/24 202425 -196.17.93.0/24 49367 -196.17.94.0/24 202425 -196.17.95.0/24 9009 -196.17.96.0/21 202425 -196.17.104.0/23 9009 -196.17.106.0/24 9009 -196.17.107.0/24 202425 -196.17.108.0/22 202425 -196.17.112.0/23 9009 -196.17.114.0/23 42831 -196.17.116.0/22 43092 -196.17.120.0/21 202425 -196.17.128.0/20 19969 -196.17.144.0/21 19969 -196.17.152.0/22 19969 -196.17.156.0/22 56611 -196.17.160.0/22 56611 -196.17.164.0/22 19969 -196.17.168.0/22 9009 -196.17.172.0/22 19969 -196.17.176.0/22 9009 -196.17.180.0/22 19969 -196.17.184.0/22 9009 -196.17.188.0/22 19969 -196.17.192.0/21 202425 -196.17.200.0/24 9009 -196.17.201.0/24 202425 -196.17.202.0/23 202425 -196.17.204.0/22 202425 -196.17.208.0/21 19969 -196.17.216.0/22 63956 -196.17.220.0/24 49367 -196.17.221.0/24 20860 -196.17.222.0/24 202425 -196.17.223.0/24 9009 -196.17.224.0/24 19969 -196.17.225.0/24 202425 -196.17.226.0/24 45382 -196.17.227.0/24 134451 -196.17.228.0/24 44066 -196.17.229.0/24 45382 -196.17.230.0/24 9009 -196.17.231.0/24 134451 -196.17.232.0/21 19969 -196.17.240.0/20 19969 -196.18.0.0/22 9009 -196.18.4.0/22 202425 -196.18.8.0/21 9009 -196.18.16.0/20 202425 -196.18.32.0/19 202425 -196.18.64.0/20 202425 -196.18.80.0/20 19969 -196.18.96.0/21 202425 -196.18.104.0/23 9009 -196.18.106.0/23 63956 -196.18.108.0/22 202425 -196.18.112.0/22 9009 -196.18.116.0/22 202425 -196.18.120.0/22 63956 -196.18.124.0/22 202425 -196.18.128.0/20 19969 -196.18.144.0/22 19969 -196.18.148.0/22 202425 -196.18.152.0/22 19969 -196.18.156.0/23 9009 -196.18.158.0/23 42831 -196.18.160.0/22 19969 -196.18.164.0/22 9009 -196.18.168.0/22 19969 -196.18.172.0/23 134451 -196.18.174.0/24 9009 -196.18.175.0/24 203833 -196.18.176.0/22 19969 -196.18.180.0/22 63956 -196.18.184.0/22 19969 -196.18.188.0/22 63956 -196.18.192.0/22 202425 -196.18.196.0/24 136782 -196.18.197.0/24 202425 -196.18.198.0/23 262287 -196.18.200.0/24 9009 -196.18.201.0/24 202425 -196.18.202.0/23 202425 -196.18.204.0/22 202425 -196.18.208.0/22 19969 -196.18.212.0/23 202425 -196.18.214.0/24 202425 -196.18.215.0/24 20860 -196.18.216.0/24 9009 -196.18.217.0/24 43092 -196.18.218.0/24 9009 -196.18.219.0/24 46562 -196.18.220.0/22 63956 -196.18.224.0/24 19969 -196.18.225.0/24 53999 -196.18.226.0/24 19969 -196.18.227.0/24 9009 -196.18.228.0/24 19969 -196.18.229.0/24 38001 -196.18.230.0/23 19969 -196.18.232.0/22 19969 -196.18.236.0/23 19969 -196.18.238.0/23 202425 -196.18.240.0/20 19969 -196.19.0.0/22 202425 -196.19.4.0/24 19969 -196.19.5.0/24 202425 -196.19.6.0/23 202425 -196.19.8.0/22 9009 -196.19.12.0/22 19969 -196.19.16.0/20 202425 -196.19.32.0/19 202425 -196.19.64.0/19 19969 -196.19.96.0/22 202425 -196.19.100.0/22 36351 -196.19.104.0/23 9009 -196.19.106.0/23 38001 -196.19.108.0/22 202425 -196.19.112.0/21 202425 -196.19.120.0/22 9009 -196.19.124.0/22 202425 -196.19.128.0/21 19969 -196.19.136.0/21 202425 -196.19.144.0/22 19969 -196.19.148.0/22 202425 -196.19.152.0/21 19969 -196.19.160.0/22 9009 -196.19.164.0/22 19969 -196.19.168.0/24 19969 -196.19.169.0/24 202425 -196.19.170.0/23 202425 -196.19.172.0/22 202425 -196.19.176.0/22 19969 -196.19.180.0/22 9009 -196.19.184.0/22 19969 -196.19.188.0/22 202425 -196.19.192.0/22 202425 -196.19.196.0/24 136782 -196.19.197.0/24 57717 -196.19.198.0/23 63018 -196.19.200.0/24 9009 -196.19.201.0/24 202425 -196.19.202.0/23 202425 -196.19.204.0/22 202425 -196.19.208.0/22 19969 -196.19.212.0/22 263812 -196.19.216.0/23 202425 -196.19.218.0/24 9009 -196.19.219.0/24 202425 -196.19.220.0/22 202425 -196.19.224.0/24 9009 -196.19.225.0/24 46562 -196.19.226.0/24 9009 -196.19.227.0/24 43092 -196.19.228.0/22 63956 -196.19.232.0/22 19969 -196.19.236.0/24 63956 -196.19.237.0/24 9009 -196.19.238.0/23 31122 -196.19.240.0/24 134451 -196.19.241.0/24 9009 -196.19.242.0/23 9009 -196.19.244.0/24 63956 -196.19.245.0/24 19969 -196.19.246.0/23 9009 -196.19.248.0/24 134451 -196.19.249.0/24 38001 -196.19.250.0/23 9009 -196.19.252.0/22 19969 -196.20.0.0/19 2905 -196.20.32.0/24 20484 -196.20.37.0/24 20484 -196.20.41.0/24 20484 -196.20.42.0/23 20484 -196.20.44.0/24 20484 -196.20.47.0/24 20484 -196.20.48.0/23 20484 -196.20.51.0/24 20484 -196.20.52.0/24 20484 -196.20.60.0/23 30993 -196.20.62.0/24 30993 -196.20.63.0/24 20484 -196.20.64.0/18 36947 -196.20.128.0/17 23889 -196.21.0.0/19 2018 -196.21.32.0/21 2018 -196.21.40.0/24 37501 -196.21.41.0/24 2018 -196.21.42.0/23 2018 -196.21.44.0/22 2018 -196.21.48.0/20 2018 -196.21.64.0/18 2018 -196.21.128.0/20 2018 -196.21.144.0/21 2018 -196.21.152.0/22 2018 -196.21.156.0/23 2018 -196.21.158.0/23 37501 -196.21.160.0/22 2018 -196.21.164.0/22 8094 -196.21.168.0/21 2018 -196.21.176.0/22 2018 -196.21.180.0/22 37501 -196.21.184.0/24 37501 -196.21.185.0/24 2018 -196.21.186.0/23 2018 -196.21.188.0/22 2018 -196.21.192.0/18 2018 -196.22.0.0/22 3741 -196.22.5.0/24 36870 -196.22.6.0/24 37005 -196.22.7.0/24 36870 -196.22.12.0/22 11300 -196.22.32.0/20 3741 -196.22.48.0/20 36865 -196.22.64.0/18 2905 -196.22.132.0/22 37153 -196.22.136.0/21 37153 -196.22.144.0/20 36868 -196.22.160.0/19 10474 -196.22.192.0/19 11845 -196.22.224.0/20 11845 -196.22.240.0/20 36874 -196.23.0.0/16 3741 -196.24.0.0/19 2018 -196.24.32.0/21 2018 -196.24.40.0/24 36982 -196.24.41.0/24 2018 -196.24.42.0/23 2018 -196.24.44.0/22 2018 -196.24.48.0/20 2018 -196.24.64.0/18 2018 -196.24.128.0/18 36982 -196.24.192.0/18 2018 -196.25.0.0/18 5713 -196.25.64.0/22 5713 -196.25.68.0/24 5713 -196.25.69.0/24 37457 -196.25.70.0/23 5713 -196.25.72.0/21 5713 -196.25.80.0/20 5713 -196.25.96.0/19 5713 -196.25.128.0/18 5713 -196.25.192.0/24 5713 -196.25.193.0/24 37457 -196.25.194.0/23 5713 -196.25.196.0/22 5713 -196.25.200.0/21 5713 -196.25.208.0/24 5713 -196.25.209.0/24 37457 -196.25.210.0/23 37457 -196.25.212.0/22 5713 -196.25.216.0/21 5713 -196.25.224.0/19 5713 -196.26.0.0/16 3741 -196.27.0.0/23 8376 -196.27.2.0/23 5511 -196.27.4.0/22 5511 -196.27.8.0/22 5511 -196.27.12.0/24 5511 -196.27.13.0/24 51964 -196.27.14.0/24 5511 -196.27.15.0/24 51964 -196.27.16.0/20 5511 -196.27.32.0/24 51964 -196.27.33.0/24 5511 -196.27.34.0/23 5511 -196.27.36.0/22 5511 -196.27.40.0/21 5511 -196.27.48.0/20 5511 -196.27.64.0/19 23889 -196.27.96.0/19 30969 -196.27.128.0/17 37297 -196.28.5.0/24 37153 -196.28.7.0/24 32398 -196.28.8.0/24 10474 -196.28.10.0/24 36980 -196.28.11.0/24 36975 -196.28.12.0/23 5713 -196.28.14.0/24 5713 -196.28.16.0/20 10474 -196.28.32.0/20 10474 -196.28.48.0/20 10396 -196.28.64.0/20 10474 -196.28.80.0/21 10474 -196.28.88.0/23 10474 -196.28.90.0/24 10474 -196.28.91.0/24 12258 -196.28.92.0/23 12258 -196.28.94.0/23 10474 -196.28.96.0/19 10474 -196.28.128.0/19 12258 -196.28.160.0/22 12258 -196.28.164.0/23 12258 -196.28.166.0/24 12258 -196.28.167.0/24 10474 -196.28.168.0/24 10474 -196.28.169.0/24 12258 -196.28.170.0/23 12258 -196.28.172.0/22 12258 -196.28.176.0/20 12258 -196.28.192.0/19 10474 -196.28.224.0/20 30619 -196.28.240.0/20 25543 -196.29.6.0/24 3741 -196.29.31.0/24 5713 -196.29.32.0/21 37183 -196.29.40.0/23 327931 -196.29.44.0/22 37565 -196.29.48.0/21 31810 -196.29.56.0/21 6968 -196.29.64.0/19 11947 -196.29.99.0/24 33780 -196.29.104.0/24 33780 -196.29.120.0/24 33780 -196.29.122.0/24 33780 -196.29.124.0/23 33780 -196.29.128.0/20 7020 -196.29.144.0/22 7020 -196.29.148.0/23 7020 -196.29.150.0/24 7020 -196.29.151.0/24 2905 -196.29.152.0/21 7020 -196.29.160.0/19 33788 -196.29.192.0/20 17400 -196.29.224.0/20 33786 -196.29.240.0/20 22386 -196.30.0.0/16 2905 -196.31.0.0/19 2905 -196.31.32.0/20 2905 -196.31.48.0/21 2905 -196.31.56.0/24 12091 -196.31.57.0/24 2905 -196.31.58.0/23 2905 -196.31.60.0/22 2905 -196.31.64.0/18 2905 -196.31.128.0/17 2905 -196.32.0.0/21 30689 -196.32.8.0/21 25818 -196.32.32.0/19 11947 -196.32.64.0/19 26608 -196.32.96.0/20 327984 -196.32.128.0/22 11992 -196.32.132.0/24 14974 -196.32.133.0/24 11992 -196.32.134.0/23 11992 -196.32.136.0/21 11992 -196.32.144.0/21 11992 -196.32.152.0/24 11992 -196.32.153.0/24 14974 -196.32.154.0/23 11992 -196.32.156.0/22 11992 -196.32.192.0/21 36881 -196.32.208.0/21 36944 -196.32.216.0/23 327989 -196.32.218.0/24 327989 -196.32.219.0/24 36666 -196.32.220.0/24 36666 -196.32.221.0/24 327989 -196.32.222.0/23 327989 -196.32.224.0/23 37178 -196.32.226.0/23 37210 -196.32.230.0/23 37402 -196.32.232.0/21 37266 -196.32.240.0/21 37364 -196.32.248.0/21 37049 -196.33.0.0/16 3741 -196.34.0.0/15 3741 -196.36.0.0/14 3741 -196.40.0.0/19 3790 -196.40.32.0/23 11830 -196.40.34.0/23 3790 -196.40.36.0/22 3790 -196.40.40.0/21 3790 -196.40.48.0/24 11830 -196.40.49.0/24 3790 -196.40.50.0/23 3790 -196.40.52.0/22 3790 -196.40.56.0/21 3790 -196.40.64.0/21 3790 -196.40.72.0/24 3790 -196.40.73.0/24 11830 -196.40.74.0/23 3790 -196.40.76.0/22 3790 -196.40.80.0/20 3790 -196.40.96.0/20 37153 -196.40.112.0/20 42235 -196.40.144.0/20 37570 -196.40.160.0/20 37676 -196.40.176.0/20 37150 -196.41.0.0/19 11845 -196.41.32.0/21 30844 -196.41.40.0/24 30844 -196.41.41.0/24 12143 -196.41.42.0/23 30844 -196.41.44.0/22 30844 -196.41.48.0/22 30844 -196.41.52.0/23 198247 -196.41.54.0/23 198381 -196.41.56.0/21 30844 -196.41.64.0/24 36919 -196.41.65.0/24 327961 -196.41.66.0/24 327976 -196.41.67.0/24 13126 -196.41.68.0/24 327994 -196.41.70.0/24 327998 -196.41.74.0/24 328007 -196.41.75.0/24 327074 -196.41.76.0/24 328017 -196.41.78.0/24 328023 -196.41.80.0/24 328027 -196.41.81.0/24 328030 -196.41.82.0/24 328046 -196.41.83.0/24 328052 -196.41.84.0/24 328053 -196.41.85.0/24 2635 -196.41.86.0/24 328545 -196.41.87.0/24 328087 -196.41.88.0/24 328088 -196.41.89.0/24 328090 -196.41.91.0/24 328094 -196.41.94.0/24 328080 -196.41.95.0/24 2609 -196.41.96.0/19 36874 -196.41.128.0/19 12258 -196.41.160.0/19 2905 -196.41.192.0/19 11845 -196.41.224.0/19 36891 -196.42.0.0/18 10396 -196.42.64.0/18 36982 -196.43.0.0/18 5713 -196.43.64.0/19 33765 -196.43.96.0/19 37183 -196.43.128.0/18 327687 -196.43.192.0/24 37261 -196.43.194.0/24 37350 -196.43.195.0/24 36943 -196.43.196.0/24 327695 -196.43.197.0/24 37267 -196.43.199.0/24 37204 -196.43.201.0/24 37279 -196.43.202.0/24 37261 -196.43.203.0/24 5713 -196.43.204.0/24 36983 -196.43.205.0/24 37307 -196.43.206.0/23 37304 -196.43.208.0/24 37312 -196.43.209.0/24 37316 -196.43.210.0/24 37318 -196.43.212.0/24 37354 -196.43.213.0/24 37523 -196.43.214.0/24 21042 -196.43.215.0/24 37328 -196.43.218.0/24 37338 -196.43.219.0/24 37339 -196.43.220.0/24 37346 -196.43.221.0/24 37362 -196.43.223.0/24 37366 -196.43.225.0/24 37392 -196.43.226.0/24 37408 -196.43.228.0/24 12556 -196.43.229.0/24 37418 -196.43.230.0/24 37419 -196.43.231.0/24 5713 -196.43.232.0/24 37426 -196.43.234.0/24 30619 -196.43.235.0/24 327763 -196.43.237.0/24 37444 -196.43.238.0/24 37466 -196.43.239.0/24 37470 -196.43.240.0/24 37548 -196.43.241.0/24 37477 -196.43.243.0/24 37488 -196.43.244.0/24 37490 -196.43.246.0/24 37499 -196.43.247.0/24 25543 -196.43.248.0/24 36904 -196.43.249.0/24 37505 -196.43.250.0/24 327811 -196.43.252.0/24 327869 -196.43.254.0/24 327855 -196.44.0.0/19 2905 -196.44.32.0/20 15022 -196.44.64.0/19 22750 -196.44.97.0/24 327814 -196.44.98.0/23 327814 -196.44.100.0/22 327814 -196.44.104.0/21 327814 -196.44.112.0/23 327814 -196.44.115.0/24 327814 -196.44.116.0/24 327814 -196.44.119.0/24 327814 -196.44.128.0/19 36996 -196.44.160.0/20 22354 -196.44.176.0/22 31856 -196.44.180.0/24 37189 -196.44.181.0/24 31856 -196.44.182.0/23 31856 -196.44.184.0/24 31856 -196.44.185.0/24 37189 -196.44.186.0/23 31856 -196.44.188.0/22 31856 -196.44.192.0/20 10474 -196.44.224.0/20 22750 -196.44.240.0/20 36890 -196.45.16.0/20 37266 -196.45.32.0/24 39356 -196.45.33.0/24 37084 -196.45.34.0/23 37084 -196.45.36.0/23 37084 -196.45.38.0/24 29259 -196.45.39.0/24 37084 -196.45.40.0/24 13126 -196.45.41.0/24 37084 -196.45.42.0/23 37084 -196.45.44.0/22 37084 -196.45.48.0/20 37170 -196.45.96.0/20 3741 -196.45.112.0/22 30827 -196.45.123.0/24 36351 -196.45.124.0/23 198381 -196.45.126.0/23 198394 -196.45.128.0/19 32860 -196.45.160.0/22 32717 -196.45.164.0/22 33781 -196.45.168.0/21 7020 -196.45.176.0/21 11845 -196.45.184.0/22 31810 -196.45.188.0/24 36969 -196.45.190.0/24 36969 -196.45.192.0/20 22351 -196.45.208.0/20 7020 -196.45.224.0/22 7020 -196.46.0.0/20 25139 -196.46.16.0/24 37244 -196.46.18.0/23 22150 -196.46.20.0/24 37144 -196.46.21.0/24 37147 -196.46.22.0/24 37193 -196.46.23.0/24 37180 -196.46.27.0/24 37207 -196.46.28.0/24 37201 -196.46.30.0/24 37180 -196.46.31.0/24 37053 -196.46.32.0/19 36868 -196.46.64.0/21 33762 -196.46.72.0/21 32717 -196.46.96.0/20 33765 -196.46.113.0/24 32842 -196.46.114.0/23 32842 -196.46.120.0/22 37133 -196.46.124.0/23 37146 -196.46.127.0/24 30844 -196.46.128.0/21 31810 -196.46.136.0/21 29918 -196.46.144.0/22 37420 -196.46.148.0/22 36902 -196.46.153.0/24 37292 -196.46.160.0/20 29975 -196.46.176.0/21 37150 -196.46.184.0/22 26422 -196.46.188.0/22 33785 -196.46.192.0/20 7420 -196.46.208.0/22 7420 -196.46.212.0/24 7420 -196.46.214.0/23 7420 -196.46.216.0/22 7420 -196.46.220.0/23 7420 -196.46.222.0/24 7420 -196.46.224.0/21 37179 -196.46.232.0/21 37309 -196.46.240.0/21 36873 -196.47.0.0/18 2905 -196.47.64.0/20 36877 -196.47.96.0/19 37676 -196.47.128.0/18 36974 -196.47.192.0/18 36982 -196.49.0.0/24 36946 -196.49.1.0/24 327719 -196.49.2.0/24 33763 -196.49.5.0/24 327844 -196.49.6.0/24 327775 -196.49.7.0/24 328014 -196.49.8.0/24 327818 -196.49.9.0/24 327821 -196.49.10.0/24 327831 -196.49.11.0/24 36867 -196.49.12.0/24 33791 -196.49.13.0/24 37054 -196.49.14.0/24 30997 -196.49.15.0/24 37386 -196.49.16.0/24 37715 -196.49.17.0/24 327796 -196.49.19.0/24 37577 -196.49.20.0/24 37769 -196.49.22.0/24 327740 -196.49.28.0/24 36932 -196.49.42.0/24 328147 -196.49.46.0/24 328235 -196.49.48.0/24 36864 -196.49.64.0/24 37665 -196.49.68.0/23 328452 -196.49.72.0/24 37187 -196.50.2.0/24 37674 -196.50.3.0/24 328374 -196.50.4.0/22 37682 -196.50.8.0/21 37649 -196.50.16.0/22 21271 -196.50.20.0/24 328139 -196.50.21.0/24 328149 -196.50.22.0/24 37664 -196.50.24.0/22 37647 -196.50.28.0/22 37087 -196.50.32.0/19 328124 -196.50.64.0/18 37650 -196.50.192.0/18 327782 -196.52.0.0/24 398252 -196.52.1.0/24 63018 -196.52.2.0/24 32780 -196.52.4.0/22 12025 -196.52.8.0/23 49367 -196.52.10.0/24 36351 -196.52.11.0/24 62240 -196.52.12.0/22 12025 -196.52.16.0/21 174 -196.52.24.0/22 14935 -196.52.28.0/22 32181 -196.52.32.0/24 6327 -196.52.33.0/24 174 -196.52.34.0/24 36351 -196.52.36.0/24 12025 -196.52.37.0/24 62240 -196.52.38.0/24 36351 -196.52.39.0/24 46562 -196.52.40.0/23 6327 -196.52.42.0/24 62240 -196.52.43.0/24 60781 -196.52.44.0/24 17511 -196.52.45.0/24 131455 -196.52.46.0/24 174 -196.52.48.0/24 40676 -196.52.49.0/24 12025 -196.52.50.0/24 42831 -196.52.51.0/24 62240 -196.52.52.0/24 47869 -196.52.53.0/24 62240 -196.52.55.0/24 54578 -196.52.56.0/24 46562 -196.52.59.0/24 12025 -196.52.60.0/24 36351 -196.52.62.0/24 12025 -196.52.63.0/24 50919 -196.52.64.0/24 12025 -196.52.66.0/24 63018 -196.52.67.0/24 395800 -196.52.68.0/23 35554 -196.52.71.0/24 12025 -196.52.72.0/24 12025 -196.52.73.0/24 395800 -196.52.74.0/23 393670 -196.52.78.0/23 12025 -196.52.81.0/24 262239 -196.52.82.0/24 12025 -196.52.83.0/24 59953 -196.52.84.0/24 13213 -196.52.91.0/24 204591 -196.52.92.0/24 395800 -196.52.93.0/24 174 -196.52.94.0/24 12025 -196.52.95.0/24 17511 -196.52.96.0/24 36351 -196.52.97.0/24 174 -196.52.105.0/24 40676 -196.52.107.0/24 28458 -196.52.108.0/22 397373 -196.52.112.0/22 204591 -196.52.124.0/22 32181 -196.52.148.0/22 49367 -196.52.160.0/22 36445 -196.52.176.0/20 395800 -196.52.249.0/24 12025 -196.52.250.0/24 49981 -196.52.252.0/22 397373 -196.53.0.0/24 396356 -196.53.2.0/24 395800 -196.53.3.0/24 12025 -196.53.4.0/22 12025 -196.53.9.0/24 35554 -196.53.10.0/24 396356 -196.53.12.0/22 12025 -196.53.16.0/22 36290 -196.53.20.0/24 209014 -196.53.22.0/23 12025 -196.53.24.0/24 12025 -196.53.25.0/24 19437 -196.53.26.0/24 174 -196.53.28.0/23 46562 -196.53.30.0/24 13213 -196.53.32.0/19 1273 -196.53.64.0/23 13213 -196.53.66.0/24 6461 -196.53.67.0/24 265515 -196.53.68.0/24 32780 -196.53.69.0/24 52356 -196.53.70.0/23 397582 -196.53.72.0/24 46562 -196.53.74.0/24 46562 -196.53.76.0/24 46562 -196.53.77.0/24 139355 -196.53.78.0/23 36290 -196.53.80.0/24 13213 -196.53.81.0/24 62240 -196.53.82.0/23 12025 -196.53.84.0/24 12025 -196.53.85.0/24 62240 -196.53.86.0/23 54769 -196.53.88.0/22 395800 -196.53.96.0/22 397026 -196.53.100.0/22 13768 -196.53.104.0/22 36290 -196.53.108.0/24 62240 -196.53.109.0/24 36217 -196.53.110.0/24 396356 -196.53.111.0/24 17511 -196.53.112.0/24 12025 -196.53.113.0/24 30277 -196.53.114.0/23 12025 -196.53.116.0/22 395800 -196.53.120.0/22 36290 -196.53.132.0/24 174 -196.53.144.0/22 13768 -196.53.156.0/22 32181 -196.53.160.0/23 36217 -196.53.162.0/24 14333 -196.53.164.0/22 42831 -196.53.192.0/24 7018 -196.53.193.0/24 62240 -196.53.195.0/24 49981 -196.53.199.0/24 174 -196.53.204.0/22 40676 -196.53.208.0/22 36290 -196.53.212.0/22 395800 -196.53.224.0/24 265515 -196.53.226.0/23 265515 -196.53.228.0/23 265515 -196.53.236.0/22 395800 -196.54.0.0/24 174 -196.54.3.0/24 12025 -196.54.4.0/22 12025 -196.54.10.0/24 17676 -196.54.12.0/22 12025 -196.54.16.0/24 62904 -196.54.17.0/24 20473 -196.54.18.0/24 6327 -196.54.19.0/24 46562 -196.54.20.0/24 17511 -196.54.21.0/24 12025 -196.54.22.0/23 35554 -196.54.24.0/24 27362 -196.54.27.0/24 12025 -196.54.31.0/24 133393 -196.54.32.0/24 42831 -196.54.33.0/24 5742 -196.54.34.0/24 28317 -196.54.35.0/24 7018 -196.54.36.0/22 17676 -196.54.43.0/24 133393 -196.54.44.0/24 46562 -196.54.45.0/24 396459 -196.54.46.0/24 396356 -196.54.47.0/24 62240 -196.54.48.0/24 133120 -196.54.53.0/24 42831 -196.54.54.0/24 13213 -196.54.58.0/24 133393 -196.54.59.0/24 17511 -196.54.62.0/24 59955 -196.54.64.0/22 17941 -196.54.71.0/24 13213 -196.54.72.0/23 26341 -196.54.84.0/22 62217 -196.54.88.0/22 395800 -196.54.96.0/22 13768 -196.54.100.0/22 204591 -196.54.112.0/22 35554 -196.54.116.0/22 36445 -196.54.120.0/22 14935 -196.54.132.0/22 395800 -196.54.152.0/22 133847 -196.54.157.0/24 17511 -196.54.172.0/22 395800 -196.54.176.0/20 395800 -196.54.224.0/19 35554 -196.55.2.0/24 33182 -196.55.4.0/24 262239 -196.55.5.0/24 46562 -196.55.8.0/21 12025 -196.55.20.0/22 265515 -196.55.26.0/24 397336 -196.55.27.0/24 13213 -196.55.29.0/24 174 -196.55.30.0/23 54900 -196.55.32.0/24 395800 -196.55.33.0/24 397336 -196.55.35.0/24 3223 -196.55.48.0/20 35554 -196.55.70.0/24 209181 -196.55.72.0/24 209181 -196.55.73.0/24 12025 -196.55.74.0/24 397256 -196.55.75.0/24 12025 -196.55.76.0/22 39535 -196.55.80.0/22 397373 -196.55.84.0/22 12025 -196.55.96.0/22 36217 -196.55.102.0/23 3223 -196.55.104.0/22 133393 -196.55.108.0/22 395800 -196.55.112.0/22 395800 -196.55.120.0/24 49981 -196.55.128.0/22 395800 -196.55.140.0/22 395800 -196.55.144.0/20 35554 -196.55.164.0/22 395800 -196.55.192.0/19 1273 -196.55.224.0/22 62217 -196.55.229.0/24 62240 -196.55.231.0/24 6327 -196.55.232.0/22 137199 -196.55.236.0/22 39535 -196.55.240.0/20 35554 -196.61.8.0/21 328075 -196.61.16.0/20 37356 -196.61.32.0/22 37012 -196.61.36.0/23 37012 -196.61.38.0/24 37012 -196.61.39.0/24 328571 -196.61.52.0/24 328089 -196.61.56.0/21 37627 -196.61.64.0/22 7489 -196.61.68.0/23 328086 -196.61.72.0/22 37414 -196.61.76.0/22 37272 -196.61.80.0/20 328082 -196.61.96.0/19 37363 -196.61.128.0/18 41095 -196.61.192.0/20 18013 -196.61.208.0/21 16637 -196.61.216.0/21 328081 -196.61.224.0/21 328068 -196.61.232.0/21 328066 -196.61.240.0/20 328029 -196.62.0.0/17 58895 -196.62.128.0/17 132165 -196.64.0.0/15 36903 -196.66.0.0/15 6713 -196.68.0.0/15 6713 -196.70.0.0/17 36903 -196.70.128.0/18 36903 -196.70.192.0/19 36903 -196.70.224.0/20 36903 -196.70.240.0/21 36903 -196.70.248.0/21 6713 -196.71.0.0/16 6713 -196.72.0.0/15 6713 -196.74.0.0/15 36903 -196.76.0.0/16 6713 -196.77.0.0/16 36903 -196.78.0.0/15 6713 -196.80.0.0/13 6713 -196.88.0.0/16 6713 -196.89.0.0/16 36903 -196.90.0.0/15 6713 -196.92.0.0/21 6713 -196.92.8.0/21 36903 -196.92.16.0/20 36903 -196.92.32.0/19 36903 -196.92.64.0/18 36903 -196.92.128.0/17 36903 -196.93.0.0/16 6713 -196.94.0.0/15 6713 -196.96.0.0/12 33771 -196.112.0.0/12 36925 -196.128.0.0/12 36935 -196.144.0.0/14 36935 -196.148.0.0/15 36935 -196.150.0.0/17 36935 -196.150.128.0/20 36935 -196.150.144.0/21 36935 -196.150.152.0/21 24835 -196.150.160.0/19 24835 -196.150.192.0/18 24835 -196.151.0.0/16 36935 -196.152.0.0/19 36935 -196.152.32.0/19 24835 -196.152.64.0/19 36935 -196.152.96.0/20 24835 -196.152.112.0/21 24835 -196.152.120.0/21 36935 -196.152.128.0/20 36935 -196.152.144.0/21 36935 -196.152.152.0/21 24835 -196.152.160.0/19 24835 -196.152.192.0/20 36935 -196.152.208.0/20 24835 -196.152.224.0/20 24835 -196.152.240.0/21 24835 -196.152.248.0/21 36935 -196.153.0.0/20 36935 -196.153.16.0/21 36935 -196.153.24.0/21 24835 -196.153.32.0/19 24835 -196.153.64.0/18 24835 -196.153.128.0/20 36935 -196.153.144.0/21 36935 -196.153.152.0/21 24835 -196.153.160.0/19 24835 -196.153.192.0/19 36935 -196.153.224.0/21 36935 -196.153.232.0/21 24835 -196.153.240.0/21 24835 -196.153.248.0/21 36935 -196.154.0.0/19 36935 -196.154.32.0/20 36935 -196.154.48.0/20 24835 -196.154.64.0/18 36935 -196.154.128.0/20 36935 -196.154.144.0/21 36935 -196.154.152.0/21 24835 -196.154.160.0/19 24835 -196.154.192.0/18 36935 -196.155.0.0/20 36935 -196.155.16.0/21 36935 -196.155.24.0/21 24835 -196.155.32.0/19 24835 -196.155.64.0/18 36935 -196.155.128.0/17 36935 -196.156.0.0/16 36935 -196.157.0.0/19 36935 -196.157.32.0/19 24835 -196.157.64.0/20 36935 -196.157.80.0/21 36935 -196.157.88.0/21 24835 -196.157.96.0/20 24835 -196.157.112.0/21 24835 -196.157.120.0/21 36935 -196.157.128.0/19 36935 -196.157.160.0/21 36935 -196.157.168.0/21 24835 -196.157.176.0/20 24835 -196.157.192.0/19 24835 -196.157.224.0/20 24835 -196.157.240.0/21 24835 -196.157.248.0/21 36935 -196.158.0.0/19 36935 -196.158.32.0/19 24835 -196.158.64.0/19 36935 -196.158.96.0/20 24835 -196.158.112.0/21 24835 -196.158.120.0/21 36935 -196.158.128.0/20 36935 -196.158.144.0/21 36935 -196.158.152.0/21 24835 -196.158.160.0/19 24835 -196.158.192.0/20 36935 -196.158.208.0/20 24835 -196.158.224.0/20 24835 -196.158.240.0/21 24835 -196.158.248.0/21 36935 -196.159.0.0/20 36935 -196.159.16.0/21 36935 -196.159.24.0/21 24835 -196.159.32.0/19 24835 -196.159.64.0/20 36935 -196.159.80.0/20 24835 -196.159.96.0/20 24835 -196.159.112.0/21 24835 -196.159.120.0/21 36935 -196.159.128.0/19 36935 -196.159.160.0/20 36935 -196.159.176.0/20 24835 -196.159.192.0/19 24835 -196.159.224.0/20 24835 -196.159.240.0/21 24835 -196.159.248.0/21 36935 -196.160.0.0/14 328065 -196.164.128.0/20 328065 -196.165.0.0/16 328065 -196.166.0.0/15 328065 -196.168.0.0/14 24691 -196.174.0.0/16 37140 -196.175.0.0/24 37030 -196.175.128.0/19 37140 -196.175.224.0/23 37140 -196.175.240.0/22 37140 -196.175.248.0/22 37140 -196.176.0.0/15 37693 -196.178.0.0/16 37693 -196.179.0.0/17 37693 -196.179.128.0/18 37693 -196.179.224.0/20 37693 -196.179.240.0/23 37693 -196.179.244.0/22 37693 -196.179.248.0/21 37693 -196.180.0.0/14 36974 -196.184.0.0/14 5438 -196.188.0.0/14 24757 -196.192.0.0/20 23889 -196.192.16.0/20 28683 -196.192.32.0/20 37054 -196.192.48.0/20 327892 -196.192.64.0/21 36882 -196.192.72.0/21 327795 -196.192.80.0/22 30999 -196.192.84.0/22 327988 -196.192.88.0/21 328001 -196.192.96.0/20 23889 -196.192.112.0/23 37708 -196.192.114.0/23 33764 -196.192.116.0/22 328610 -196.192.124.0/24 37301 -196.192.140.0/24 37708 -196.192.141.0/24 33764 -196.192.142.0/24 37301 -196.192.143.0/24 37708 -196.192.144.0/20 328520 -196.192.160.0/19 327782 -196.194.0.0/19 58895 -196.194.32.0/20 58895 -196.194.48.0/21 58895 -196.194.56.0/22 58895 -196.194.60.0/23 38713 -196.194.62.0/23 58895 -196.194.64.0/18 58895 -196.194.128.0/20 132165 -196.194.144.0/22 132165 -196.194.150.0/23 132165 -196.194.152.0/21 132165 -196.194.160.0/19 132165 -196.194.192.0/18 136384 -196.195.1.0/24 131284 -196.195.2.0/23 131284 -196.195.4.0/22 131284 -196.195.8.0/21 131284 -196.195.16.0/20 136525 -196.195.32.0/19 132165 -196.195.64.0/20 136525 -196.195.80.0/21 136525 -196.195.88.0/23 136525 -196.195.90.0/23 139043 -196.195.92.0/22 139043 -196.195.96.0/21 139043 -196.195.104.0/22 139043 -196.195.108.0/23 139043 -196.195.110.0/23 133933 -196.195.112.0/24 198504 -196.195.113.0/24 198381 -196.195.117.0/24 35074 -196.195.128.0/23 132116 -196.195.130.0/23 137085 -196.195.132.0/24 132116 -196.195.133.0/24 137085 -196.195.134.0/24 132116 -196.195.136.0/24 132116 -196.195.138.0/23 132116 -196.195.140.0/24 132116 -196.195.156.0/22 132116 -196.195.161.0/24 132116 -196.195.163.0/24 132116 -196.195.164.0/23 132116 -196.195.168.0/23 135223 -196.195.172.0/22 132116 -196.195.186.0/23 137085 -196.195.188.0/22 137085 -196.195.192.0/19 58895 -196.195.224.0/22 37200 -196.195.232.0/23 328096 -196.195.236.0/23 198381 -196.195.238.0/23 198394 -196.195.240.0/23 198504 -196.195.242.0/23 198247 -196.195.244.0/23 198504 -196.195.246.0/24 131284 -196.195.248.0/21 131284 -196.196.0.0/24 41564 -196.196.1.0/24 58065 -196.196.2.0/23 57972 -196.196.4.0/24 57858 -196.196.5.0/24 60485 -196.196.6.0/24 60485 -196.196.7.0/24 64435 -196.196.9.0/24 47536 -196.196.10.0/24 57858 -196.196.11.0/24 63119 -196.196.12.0/23 63119 -196.196.14.0/24 63119 -196.196.15.0/24 57858 -196.196.16.0/24 57858 -196.196.18.0/24 64435 -196.196.19.0/24 63119 -196.196.20.0/24 63119 -196.196.21.0/24 64435 -196.196.22.0/24 60485 -196.196.23.0/24 57858 -196.196.24.0/23 57972 -196.196.28.0/23 64435 -196.196.30.0/24 64435 -196.196.31.0/24 57858 -196.196.33.0/24 64435 -196.196.34.0/24 57858 -196.196.36.0/23 57858 -196.196.38.0/24 64435 -196.196.39.0/24 57858 -196.196.40.0/23 64435 -196.196.42.0/24 64435 -196.196.43.0/24 41204 -196.196.44.0/23 41204 -196.196.46.0/24 58065 -196.196.47.0/24 41204 -196.196.48.0/24 41564 -196.196.49.0/24 58065 -196.196.50.0/24 57858 -196.196.51.0/24 41204 -196.196.52.0/23 41204 -196.196.54.0/24 41204 -196.196.55.0/24 57858 -196.196.56.0/23 41204 -196.196.58.0/23 58065 -196.196.60.0/22 58065 -196.196.64.0/23 58065 -196.196.66.0/24 41564 -196.196.67.0/24 58065 -196.196.72.0/24 58065 -196.196.81.0/24 57858 -196.196.82.0/23 57858 -196.196.84.0/22 57858 -196.196.88.0/24 41564 -196.196.89.0/24 57858 -196.196.90.0/24 41564 -196.196.91.0/24 57858 -196.196.92.0/24 41564 -196.196.93.0/24 57858 -196.196.94.0/24 41564 -196.196.95.0/24 57858 -196.196.96.0/23 57858 -196.196.98.0/24 41564 -196.196.99.0/24 57858 -196.196.100.0/24 41564 -196.196.101.0/24 204353 -196.196.102.0/24 204353 -196.196.103.0/24 41204 -196.196.104.0/23 41204 -196.196.106.0/24 41204 -196.196.108.0/24 41204 -196.196.110.0/23 58065 -196.196.112.0/20 58065 -196.196.128.0/20 58065 -196.196.144.0/23 58065 -196.196.146.0/24 57858 -196.196.147.0/24 58065 -196.196.148.0/24 58065 -196.196.149.0/24 41564 -196.196.150.0/23 41564 -196.196.152.0/22 41204 -196.196.156.0/24 41204 -196.196.160.0/24 57858 -196.196.162.0/23 57858 -196.196.167.0/24 58065 -196.196.171.0/24 41204 -196.196.185.0/24 63119 -196.196.190.0/24 57858 -196.196.192.0/22 41564 -196.196.196.0/24 58065 -196.196.197.0/24 41564 -196.196.198.0/23 41564 -196.196.203.0/24 58065 -196.196.204.0/23 58065 -196.196.206.0/24 58065 -196.196.207.0/24 64435 -196.196.210.0/23 41204 -196.196.216.0/21 47536 -196.196.224.0/24 41204 -196.196.227.0/24 204353 -196.196.228.0/22 204353 -196.196.232.0/23 52219 -196.196.234.0/23 204353 -196.196.238.0/24 41204 -196.196.239.0/24 41564 -196.196.240.0/22 64435 -196.196.244.0/24 42607 -196.196.245.0/24 58065 -196.196.246.0/23 58065 -196.196.248.0/21 58065 -196.200.0.0/23 7020 -196.200.16.0/20 15808 -196.200.32.0/20 15399 -196.200.48.0/20 36864 -196.200.64.0/20 30984 -196.200.80.0/20 30985 -196.200.96.0/20 30987 -196.200.112.0/22 30988 -196.200.116.0/24 37350 -196.200.117.0/24 30988 -196.200.118.0/23 30988 -196.200.121.0/24 30988 -196.200.122.0/23 30988 -196.200.124.0/23 30988 -196.200.126.0/24 30988 -196.200.127.0/24 37350 -196.200.128.0/18 30983 -196.200.224.0/20 37349 -196.200.240.0/20 204810 -196.201.1.0/24 30969 -196.201.3.0/24 36870 -196.201.4.0/23 327965 -196.201.6.0/23 36953 -196.201.8.0/23 37406 -196.201.10.0/23 12684 -196.201.16.0/21 30969 -196.201.24.0/21 33778 -196.201.32.0/19 30986 -196.201.64.0/19 29571 -196.201.96.0/19 37515 -196.201.128.0/19 5713 -196.201.192.0/21 30990 -196.201.200.0/22 30990 -196.201.204.0/23 30990 -196.201.206.0/24 30990 -196.201.207.0/24 37473 -196.201.208.0/20 33771 -196.201.224.0/22 36866 -196.201.228.0/22 30844 -196.201.232.0/21 327901 -196.201.240.0/22 24863 -196.201.244.0/23 24863 -196.201.246.0/24 30993 -196.202.0.0/17 8452 -196.202.128.0/22 15706 -196.202.132.0/24 327756 -196.202.133.0/24 15706 -196.202.134.0/23 15706 -196.202.136.0/21 15706 -196.202.144.0/22 15706 -196.202.148.0/23 15706 -196.202.150.0/24 15706 -196.202.151.0/24 37211 -196.202.152.0/21 15706 -196.202.160.0/23 15399 -196.202.162.0/24 15399 -196.202.163.0/24 48137 -196.202.164.0/22 37027 -196.202.168.0/24 37027 -196.202.169.0/24 15399 -196.202.170.0/23 15399 -196.202.172.0/22 15399 -196.202.176.0/24 15399 -196.202.177.0/24 37027 -196.202.178.0/24 15399 -196.202.179.0/24 37027 -196.202.180.0/24 37027 -196.202.181.0/24 15399 -196.202.182.0/24 15399 -196.202.183.0/24 39356 -196.202.184.0/24 15399 -196.202.185.0/24 37027 -196.202.186.0/23 15399 -196.202.188.0/23 15399 -196.202.190.0/24 37027 -196.202.191.0/24 37052 -196.202.192.0/19 12455 -196.202.224.0/21 327999 -196.202.232.0/21 30992 -196.202.240.0/21 33567 -196.202.250.0/23 21739 -196.202.252.0/22 36907 -196.203.0.0/24 37492 -196.203.1.0/24 2609 -196.203.2.0/24 37492 -196.203.3.0/24 37551 -196.203.4.0/22 37492 -196.203.8.0/24 2609 -196.203.9.0/24 37492 -196.203.10.0/23 37492 -196.203.12.0/22 37492 -196.203.16.0/20 37671 -196.203.32.0/21 37719 -196.203.40.0/24 37719 -196.203.41.0/24 2609 -196.203.42.0/23 37719 -196.203.44.0/24 37719 -196.203.45.0/24 2609 -196.203.46.0/23 37719 -196.203.48.0/23 2609 -196.203.50.0/23 37705 -196.203.52.0/24 2609 -196.203.53.0/24 37705 -196.203.54.0/23 37705 -196.203.56.0/21 37693 -196.203.64.0/22 31245 -196.203.68.0/24 2609 -196.203.69.0/24 31245 -196.203.70.0/23 31245 -196.203.72.0/24 37705 -196.203.73.0/24 2609 -196.203.74.0/23 2609 -196.203.76.0/24 37693 -196.203.77.0/24 37705 -196.203.78.0/23 37717 -196.203.80.0/24 5438 -196.203.81.0/24 2609 -196.203.82.0/23 5438 -196.203.84.0/22 2609 -196.203.88.0/23 37705 -196.203.90.0/24 5438 -196.203.91.0/24 37492 -196.203.92.0/22 5438 -196.203.96.0/22 5438 -196.203.100.0/23 2609 -196.203.102.0/23 37693 -196.203.104.0/23 31245 -196.203.106.0/24 31245 -196.203.107.0/24 2609 -196.203.108.0/22 37705 -196.203.112.0/22 2609 -196.203.116.0/24 2609 -196.203.117.0/24 37717 -196.203.118.0/23 2609 -196.203.120.0/22 2609 -196.203.124.0/24 2609 -196.203.125.0/24 37717 -196.203.126.0/23 2609 -196.203.128.0/21 37717 -196.203.136.0/22 2609 -196.203.140.0/23 2609 -196.203.142.0/24 2609 -196.203.143.0/24 37671 -196.203.144.0/22 37671 -196.203.148.0/23 37671 -196.203.150.0/23 2609 -196.203.152.0/21 37671 -196.203.160.0/22 2609 -196.203.164.0/24 31245 -196.203.165.0/24 2609 -196.203.166.0/23 31245 -196.203.168.0/22 2609 -196.203.172.0/24 2609 -196.203.173.0/24 37693 -196.203.174.0/23 2609 -196.203.176.0/22 2609 -196.203.180.0/24 2609 -196.203.181.0/24 37705 -196.203.182.0/23 37705 -196.203.184.0/22 37717 -196.203.188.0/23 37671 -196.203.190.0/24 37717 -196.203.191.0/24 2609 -196.203.192.0/21 37719 -196.203.200.0/24 37492 -196.203.201.0/24 31245 -196.203.202.0/23 31245 -196.203.204.0/24 37492 -196.203.205.0/24 2609 -196.203.206.0/23 37705 -196.203.208.0/22 2609 -196.203.212.0/24 37705 -196.203.213.0/24 2609 -196.203.214.0/23 37705 -196.203.216.0/22 37705 -196.203.220.0/24 31245 -196.203.221.0/24 2609 -196.203.222.0/24 31245 -196.203.223.0/24 37492 -196.203.224.0/24 37492 -196.203.225.0/24 31245 -196.203.226.0/23 31245 -196.203.228.0/24 31245 -196.203.229.0/24 2609 -196.203.230.0/23 2609 -196.203.232.0/22 2609 -196.203.236.0/24 327934 -196.203.237.0/24 29286 -196.203.238.0/23 2609 -196.203.240.0/21 5438 -196.203.248.0/24 37705 -196.203.249.0/24 2609 -196.203.250.0/24 2609 -196.203.251.0/24 37705 -196.203.252.0/24 37705 -196.203.253.0/24 2609 -196.203.254.0/23 2609 -196.204.0.0/23 24835 -196.204.2.0/24 36935 -196.204.3.0/24 24835 -196.204.4.0/23 24835 -196.204.6.0/24 36935 -196.204.7.0/24 24835 -196.204.8.0/21 24835 -196.204.16.0/20 24835 -196.204.32.0/19 24835 -196.204.64.0/18 24835 -196.204.128.0/19 24835 -196.204.160.0/19 33782 -196.204.192.0/21 24835 -196.204.200.0/22 24835 -196.204.204.0/23 24835 -196.204.206.0/24 24835 -196.204.207.0/24 36935 -196.204.208.0/22 24835 -196.204.212.0/23 24835 -196.204.214.0/24 24835 -196.204.215.0/24 36935 -196.204.216.0/21 24835 -196.204.224.0/19 24835 -196.205.0.0/19 24863 -196.205.32.0/20 24863 -196.205.48.0/21 24863 -196.205.56.0/22 6127 -196.205.60.0/22 24863 -196.205.64.0/18 24863 -196.205.128.0/17 24863 -196.206.0.0/21 6713 -196.206.8.0/21 36903 -196.206.16.0/20 36903 -196.206.32.0/19 36903 -196.206.64.0/18 36903 -196.206.128.0/21 6713 -196.206.136.0/21 36903 -196.206.144.0/21 36903 -196.206.152.0/21 6713 -196.206.160.0/21 36903 -196.206.168.0/21 6713 -196.206.176.0/20 36903 -196.206.192.0/21 6713 -196.206.200.0/21 36903 -196.206.208.0/20 36903 -196.206.224.0/19 6713 -196.207.2.0/24 30998 -196.207.4.0/23 30998 -196.207.7.0/24 30998 -196.207.11.0/24 30998 -196.207.14.0/23 30998 -196.207.16.0/20 15808 -196.207.32.0/20 29975 -196.207.48.0/20 36882 -196.207.64.0/23 132116 -196.207.66.0/24 132116 -196.207.67.0/24 137085 -196.207.68.0/22 132116 -196.207.72.0/21 132116 -196.207.80.0/21 132116 -196.207.88.0/24 137085 -196.207.89.0/24 132116 -196.207.90.0/23 132116 -196.207.92.0/23 132116 -196.207.94.0/24 137085 -196.207.95.0/24 132116 -196.207.96.0/22 132116 -196.207.100.0/24 132116 -196.207.102.0/23 132116 -196.207.104.0/21 132116 -196.207.112.0/21 132116 -196.207.120.0/22 132116 -196.207.124.0/24 137085 -196.207.125.0/24 132116 -196.207.126.0/24 132116 -196.207.127.0/24 137085 -196.207.128.0/18 15399 -196.207.192.0/18 8346 -196.208.0.0/13 3741 -196.216.2.0/23 33764 -196.216.4.0/22 37528 -196.216.8.0/21 37294 -196.216.16.0/21 11845 -196.216.24.0/21 24863 -196.216.32.0/19 33763 -196.216.64.0/19 30844 -196.216.96.0/19 327935 -196.216.128.0/22 36886 -196.216.132.0/22 327781 -196.216.136.0/22 327782 -196.216.140.0/22 36906 -196.216.144.0/22 36922 -196.216.149.0/24 36932 -196.216.154.0/24 55002 -196.216.155.0/24 13854 -196.216.156.0/24 3491 -196.216.157.0/24 37351 -196.216.158.0/24 3741 -196.216.159.0/24 37351 -196.216.160.0/24 5511 -196.216.161.0/24 37036 -196.216.162.0/24 37045 -196.216.163.0/24 37051 -196.216.164.0/22 37513 -196.216.168.0/24 37177 -196.216.169.0/24 37181 -196.216.172.0/22 37160 -196.216.176.0/22 37206 -196.216.180.0/22 37212 -196.216.188.0/22 37288 -196.216.192.0/22 37399 -196.216.196.0/23 37446 -196.216.200.0/23 37452 -196.216.202.0/24 37452 -196.216.205.0/24 327832 -196.216.206.0/24 327846 -196.216.207.0/24 327842 -196.216.208.0/22 37495 -196.216.212.0/24 327820 -196.216.213.0/24 327919 -196.216.215.0/24 327791 -196.216.216.0/23 327875 -196.216.218.0/23 327888 -196.216.220.0/23 327903 -196.216.222.0/23 328093 -196.216.224.0/23 327971 -196.216.226.0/23 327074 -196.216.228.0/23 37534 -196.216.230.0/23 6968 -196.216.232.0/23 37514 -196.216.234.0/23 37496 -196.216.236.0/23 37312 -196.216.238.0/24 44444 -196.216.240.0/23 37348 -196.216.242.0/23 37298 -196.216.245.0/24 328301 -196.216.246.0/24 37091 -196.216.247.0/24 37085 -196.216.248.0/23 37062 -196.216.250.0/24 23058 -196.216.251.0/24 37058 -196.216.252.0/24 37003 -196.216.253.0/24 37222 -196.216.255.0/24 37058 -196.217.0.0/19 36903 -196.217.32.0/21 6713 -196.217.40.0/21 36903 -196.217.48.0/20 36903 -196.217.64.0/18 36903 -196.217.128.0/18 36903 -196.217.192.0/19 36903 -196.217.224.0/20 36903 -196.217.240.0/20 6713 -196.218.0.0/16 8452 -196.219.0.0/17 8452 -196.219.128.0/18 8452 -196.219.192.0/19 8452 -196.219.224.0/20 8452 -196.219.240.0/22 8452 -196.219.244.0/23 8452 -196.219.246.0/24 65550 -196.219.247.0/24 8452 -196.219.248.0/21 8452 -196.220.12.0/24 30998 -196.220.16.0/24 30998 -196.220.28.0/24 30998 -196.220.32.0/19 36943 -196.220.66.0/23 37686 -196.220.96.0/23 37568 -196.220.100.0/22 37568 -196.220.120.0/21 37568 -196.220.128.0/19 327705 -196.220.160.0/19 37564 -196.220.192.0/20 37369 -196.220.240.0/20 37170 -196.221.0.0/24 24835 -196.221.1.0/24 36893 -196.221.2.0/23 24835 -196.221.4.0/22 24835 -196.221.8.0/21 24835 -196.221.16.0/20 24835 -196.221.32.0/19 24835 -196.221.64.0/18 24835 -196.221.128.0/17 24835 -196.222.0.0/16 37405 -196.223.4.0/24 29571 -196.223.13.0/24 327691 -196.223.14.0/24 37053 -196.223.16.0/23 37252 -196.223.18.0/24 327694 -196.223.19.0/24 37384 -196.223.22.0/24 37053 -196.223.27.0/24 37294 -196.223.34.0/24 327719 -196.223.47.0/24 37577 -196.223.48.0/21 37153 -196.223.56.0/21 37673 -196.223.64.0/19 15022 -196.223.96.0/20 37055 -196.223.112.0/20 327942 -196.223.128.0/20 328232 -196.223.144.0/21 328140 -196.223.152.0/21 37211 -196.223.160.0/21 37109 -196.223.168.0/22 37109 -196.223.172.0/23 37109 -196.223.174.0/24 37109 -196.223.175.0/24 328354 -196.223.176.0/20 36941 -196.223.192.0/19 327850 -196.223.224.0/21 327950 -196.223.232.0/21 328074 -196.223.240.0/21 22690 -196.223.248.0/23 328120 -196.223.250.0/24 328120 -196.223.251.0/24 328314 -196.223.252.0/24 201935 -196.223.253.0/24 328103 -196.223.254.0/23 36975 -196.224.0.0/12 37492 -196.240.50.0/24 58065 -196.240.54.0/24 41564 -196.240.57.0/24 58065 -196.240.60.0/24 41564 -196.240.107.0/24 41564 -196.240.249.0/24 58065 -196.240.255.0/24 61133 -196.242.11.0/24 58065 -196.242.244.0/23 58065 -196.244.71.0/24 41564 -196.244.191.0/24 61133 -196.244.192.0/24 61133 -196.244.199.0/24 41564 -196.245.7.0/24 52219 -196.245.9.0/24 41564 -196.245.52.0/22 41204 -196.245.56.0/22 41204 -196.245.60.0/23 41204 -196.245.150.0/23 41564 -196.245.152.0/22 41204 -196.245.156.0/24 58065 -196.245.157.0/24 204353 -196.245.158.0/23 204353 -196.245.160.0/24 58065 -196.245.161.0/24 204353 -196.245.162.0/24 41204 -196.245.163.0/24 58065 -196.245.165.0/24 58065 -196.245.172.0/24 41204 -196.245.173.0/24 41564 -196.245.174.0/23 41564 -196.245.184.0/22 50304 -196.245.204.0/24 58065 -196.245.216.0/22 58065 -196.245.228.0/22 58065 -196.245.232.0/22 41564 -196.245.236.0/23 58065 -196.245.239.0/24 58065 -196.245.240.0/24 58065 -196.245.241.0/24 41564 -196.245.242.0/23 41564 -196.245.244.0/22 204353 -196.245.248.0/21 204353 -196.246.0.0/20 132165 -196.246.16.0/21 132165 -196.246.24.0/23 132165 -196.246.26.0/24 132165 -196.246.32.0/20 132165 -196.246.48.0/22 132165 -196.246.64.0/19 132165 -196.246.96.0/20 132165 -196.246.112.0/21 132165 -196.246.120.0/22 133495 -196.246.128.0/20 136525 -196.246.144.0/21 136525 -196.246.152.0/21 132165 -196.246.160.0/19 132165 -196.246.192.0/21 132165 -196.246.200.0/21 136384 -196.246.208.0/22 136384 -196.246.213.0/24 136384 -196.246.214.0/23 136384 -196.246.216.0/21 136525 -196.246.224.0/19 136525 -196.247.1.0/24 41564 -196.247.2.0/23 41564 -196.247.4.0/23 41564 -196.247.16.0/22 52219 -196.247.24.0/21 41204 -196.247.32.0/24 41204 -196.247.46.0/23 58065 -196.247.48.0/22 58065 -196.247.54.0/24 41564 -196.247.56.0/22 41564 -196.247.144.0/23 58065 -196.247.162.0/23 57858 -196.247.172.0/24 58065 -196.247.192.0/24 58065 -196.247.204.0/24 58065 -196.247.208.0/24 58065 -196.247.212.0/23 58065 -196.247.220.0/24 57858 -196.247.224.0/23 50304 -196.247.228.0/23 58065 -196.247.232.0/24 41564 -196.247.234.0/23 41564 -196.247.236.0/24 58065 -196.247.240.0/22 41564 -196.247.244.0/24 58065 -196.247.246.0/23 58065 -196.248.0.0/16 2018 -196.249.0.0/18 2018 -196.249.64.0/18 327885 -196.249.128.0/18 19232 -196.249.193.0/24 17400 -196.249.194.0/24 17400 -196.249.240.0/21 17400 -196.250.0.0/18 37515 -196.250.64.0/18 36924 -196.250.128.0/19 327872 -196.250.160.0/20 37684 -196.250.176.0/20 328136 -196.250.192.0/21 327987 -196.250.200.0/22 328259 -196.250.204.0/22 328173 -196.250.208.0/21 327972 -196.250.216.0/21 328409 -196.250.224.0/21 328125 -196.250.232.0/21 37662 -196.250.240.0/21 37172 -196.250.248.0/22 36994 -196.250.252.0/22 715 -196.251.0.0/18 37417 -196.251.65.0/24 61317 -196.251.66.0/24 61317 -196.251.67.0/24 327813 -196.251.68.0/22 327813 -196.251.72.0/22 327813 -196.251.76.0/23 327813 -196.251.78.0/24 327813 -196.251.88.0/22 327813 -196.251.92.0/23 327813 -196.251.94.0/23 37153 -196.251.96.0/22 37153 -196.251.100.0/22 37684 -196.251.104.0/21 37684 -196.251.112.0/24 61317 -196.251.113.0/24 37153 -196.251.114.0/23 37153 -196.251.116.0/22 37153 -196.251.120.0/21 61317 -196.251.128.0/21 327996 -196.251.137.0/24 37411 -196.251.140.0/24 328113 -196.251.144.0/22 328201 -196.251.148.0/22 23889 -196.251.152.0/23 37292 -196.251.154.0/24 328133 -196.251.156.0/22 328253 -196.251.192.0/19 37403 -196.251.228.0/22 328128 -196.251.232.0/21 327926 -196.251.240.0/22 328207 -196.251.248.0/22 61317 -196.251.252.0/22 715 -196.252.0.0/15 8094 -196.254.0.0/15 37501 -197.0.0.0/15 37705 -197.2.0.0/17 2609 -197.2.128.0/17 37705 -197.3.0.0/16 2609 -197.4.0.0/14 5438 -197.8.0.0/15 5438 -197.10.0.0/15 2609 -197.12.0.0/16 37703 -197.13.0.0/16 37504 -197.14.0.0/24 2609 -197.14.1.0/24 37693 -197.14.2.0/24 37693 -197.14.3.0/24 2609 -197.14.4.0/22 2609 -197.14.8.0/21 37693 -197.14.16.0/20 37693 -197.14.32.0/20 37693 -197.14.48.0/21 37693 -197.14.56.0/22 37693 -197.14.60.0/22 2609 -197.14.64.0/18 2609 -197.14.128.0/17 2609 -197.15.0.0/16 37671 -197.16.0.0/13 37693 -197.24.0.0/16 37693 -197.25.0.0/17 37492 -197.25.128.0/17 37671 -197.26.0.0/19 37492 -197.26.32.0/19 37671 -197.26.64.0/18 37671 -197.26.128.0/18 2609 -197.26.192.0/18 37492 -197.27.0.0/17 37492 -197.27.128.0/18 37492 -197.27.192.0/19 37492 -197.27.224.0/19 2609 -197.28.0.0/16 37492 -197.29.0.0/18 37492 -197.29.64.0/19 37492 -197.29.96.0/20 37492 -197.29.112.0/21 37492 -197.29.120.0/24 37492 -197.29.121.0/24 328126 -197.29.122.0/24 37447 -197.29.123.0/24 328126 -197.29.124.0/23 328126 -197.29.126.0/24 328126 -197.29.127.0/24 37492 -197.29.128.0/17 37492 -197.30.0.0/16 37492 -197.31.0.0/18 2609 -197.31.64.0/18 37492 -197.31.128.0/17 37492 -197.32.0.0/11 8452 -197.64.0.0/13 2905 -197.72.0.0/14 2905 -197.76.0.0/15 2905 -197.78.0.0/17 2905 -197.78.128.0/17 12091 -197.79.0.0/16 2905 -197.80.0.0/12 10474 -197.96.0.0/13 3741 -197.104.0.0/13 37168 -197.112.0.0/13 36947 -197.120.0.0/13 36992 -197.128.0.0/14 6713 -197.132.0.0/14 24835 -197.136.0.0/14 36914 -197.140.0.0/14 36891 -197.144.0.0/14 36884 -197.148.0.0/18 36907 -197.148.64.0/21 37497 -197.148.72.0/21 37524 -197.148.80.0/21 37506 -197.148.88.0/22 198381 -197.148.92.0/22 198394 -197.148.96.0/19 24691 -197.148.128.0/18 37303 -197.148.224.0/19 36961 -197.149.0.0/18 37054 -197.149.64.0/20 35074 -197.149.80.0/22 35074 -197.149.85.0/24 35074 -197.149.86.0/23 35074 -197.149.88.0/21 35074 -197.149.96.0/24 35074 -197.149.101.0/24 35074 -197.149.118.0/23 35074 -197.149.120.0/22 37480 -197.149.124.0/24 37480 -197.149.125.0/24 37521 -197.149.126.0/24 37308 -197.149.127.0/24 35074 -197.149.128.0/22 37462 -197.149.136.0/22 37463 -197.149.144.0/22 16637 -197.149.148.0/22 37468 -197.149.160.0/22 37438 -197.149.168.0/22 37512 -197.149.176.0/22 327795 -197.149.180.0/22 37356 -197.149.184.0/22 37453 -197.149.188.0/22 37088 -197.149.192.0/20 37461 -197.149.208.0/22 37461 -197.149.216.0/21 37461 -197.149.224.0/22 37461 -197.149.228.0/24 37461 -197.149.230.0/23 37461 -197.149.232.0/23 37461 -197.149.236.0/23 37461 -197.149.238.0/24 37461 -197.150.0.0/15 37069 -197.152.0.0/16 37133 -197.153.0.0/16 36925 -197.155.0.0/19 37199 -197.155.32.0/19 37484 -197.155.64.0/19 30844 -197.155.96.0/19 37357 -197.155.128.0/18 30985 -197.155.192.0/20 33567 -197.155.224.0/20 30844 -197.155.248.0/21 37479 -197.156.0.0/18 37525 -197.156.64.0/18 24757 -197.156.128.0/18 12455 -197.156.227.0/24 30988 -197.156.228.0/22 30988 -197.156.232.0/22 30988 -197.156.240.0/20 30988 -197.157.0.0/18 36991 -197.157.64.0/19 37271 -197.157.96.0/19 36958 -197.157.128.0/21 327707 -197.157.136.0/23 327707 -197.157.138.0/23 37075 -197.157.140.0/24 37075 -197.157.141.0/24 327707 -197.157.142.0/23 327707 -197.157.144.0/24 37075 -197.157.145.0/24 327707 -197.157.146.0/23 37075 -197.157.148.0/22 37075 -197.157.152.0/23 37075 -197.157.154.0/24 37075 -197.157.155.0/24 327707 -197.157.156.0/22 37075 -197.157.160.0/22 37075 -197.157.164.0/24 37075 -197.157.165.0/24 327707 -197.157.166.0/23 37075 -197.157.168.0/21 37075 -197.157.176.0/22 37075 -197.157.180.0/24 327707 -197.157.181.0/24 37075 -197.157.182.0/23 37075 -197.157.184.0/21 37075 -197.157.192.0/22 37429 -197.157.208.0/22 37447 -197.157.216.0/24 36920 -197.157.217.0/24 37433 -197.157.218.0/24 37433 -197.157.219.0/24 36920 -197.157.220.0/22 37439 -197.157.228.0/23 37129 -197.157.232.0/22 37449 -197.157.242.0/23 37055 -197.157.244.0/22 37473 -197.157.252.0/22 37451 -197.158.0.0/18 30619 -197.158.64.0/18 21042 -197.158.192.0/19 37343 -197.158.224.0/20 37343 -197.158.247.0/24 37343 -197.158.248.0/21 37343 -197.159.0.0/20 15964 -197.159.16.0/24 37544 -197.159.17.0/24 15964 -197.159.18.0/23 15964 -197.159.20.0/22 15964 -197.159.24.0/21 15964 -197.159.32.0/19 37413 -197.159.64.0/24 37018 -197.159.68.0/22 37018 -197.159.88.0/21 327966 -197.159.96.0/20 37421 -197.159.128.0/21 37012 -197.159.136.0/22 37012 -197.159.140.0/23 37012 -197.159.142.0/24 37012 -197.159.144.0/20 37037 -197.159.160.0/19 328191 -197.159.192.0/21 37381 -197.159.200.0/22 37381 -197.159.204.0/23 37381 -197.159.206.0/24 37381 -197.159.207.0/24 36864 -197.159.208.0/20 37381 -197.160.0.0/13 24863 -197.168.0.0/13 37168 -197.176.0.0/13 33771 -197.184.0.0/15 37105 -197.186.0.0/15 37133 -197.188.0.0/16 36996 -197.189.0.0/17 37598 -197.189.128.0/18 37057 -197.189.192.0/18 37153 -197.190.0.0/15 37140 -197.192.0.0/13 36992 -197.200.0.0/13 36947 -197.208.0.0/15 36998 -197.210.0.0/16 29465 -197.211.0.0/24 37027 -197.211.1.0/24 15399 -197.211.2.0/23 15399 -197.211.4.0/22 15399 -197.211.8.0/24 37027 -197.211.9.0/24 15399 -197.211.10.0/23 15399 -197.211.12.0/23 15399 -197.211.14.0/24 15399 -197.211.15.0/24 198394 -197.211.16.0/24 15399 -197.211.17.0/24 198247 -197.211.18.0/24 15399 -197.211.19.0/24 37027 -197.211.20.0/23 15399 -197.211.22.0/24 37027 -197.211.23.0/24 15399 -197.211.24.0/21 15399 -197.211.32.0/19 37148 -197.211.64.0/19 29918 -197.211.96.0/19 37187 -197.211.128.0/23 22750 -197.211.130.0/24 206283 -197.211.131.0/24 22750 -197.211.132.0/22 22750 -197.211.136.0/21 22750 -197.211.144.0/20 22750 -197.211.160.0/19 22750 -197.211.192.0/18 30969 -197.212.0.0/15 37287 -197.214.1.0/24 37531 -197.214.2.0/24 36873 -197.214.3.0/24 37531 -197.214.4.0/22 37531 -197.214.8.0/21 37531 -197.214.16.0/24 37531 -197.214.64.0/20 37529 -197.214.80.0/20 37559 -197.214.96.0/22 198504 -197.214.100.0/24 198504 -197.214.101.0/24 198394 -197.214.102.0/23 198394 -197.214.112.0/21 37276 -197.214.128.0/17 37550 -197.215.0.0/17 37164 -197.215.128.0/24 37558 -197.215.130.0/24 37558 -197.215.136.0/24 37558 -197.215.140.0/24 37558 -197.215.144.0/24 37558 -197.215.149.0/24 37558 -197.215.154.0/24 37558 -197.215.157.0/24 37558 -197.215.158.0/23 37558 -197.215.160.0/19 327936 -197.215.192.0/20 37037 -197.215.208.0/21 37276 -197.215.216.0/22 37580 -197.215.220.0/23 327870 -197.215.222.0/24 327870 -197.215.240.0/20 327692 -197.216.0.0/15 11259 -197.218.0.0/15 37342 -197.220.0.0/19 36959 -197.220.64.0/21 37326 -197.220.72.0/23 37326 -197.220.74.0/24 37326 -197.220.80.0/23 37326 -197.220.84.0/24 37371 -197.220.88.0/24 37371 -197.220.96.0/23 15399 -197.220.98.0/24 15399 -197.220.99.0/24 37027 -197.220.100.0/24 15399 -197.220.101.0/24 37027 -197.220.102.0/23 15399 -197.220.104.0/24 15399 -197.220.105.0/24 198247 -197.220.106.0/23 15399 -197.220.108.0/22 15399 -197.220.112.0/21 15399 -197.220.120.0/24 198381 -197.220.121.0/24 15399 -197.220.122.0/24 198394 -197.220.123.0/24 15399 -197.220.124.0/23 15399 -197.220.126.0/24 15399 -197.220.127.0/24 37027 -197.220.128.0/19 33567 -197.220.160.0/23 37341 -197.220.162.0/24 37341 -197.220.163.0/24 37148 -197.220.164.0/22 37341 -197.220.168.0/21 37341 -197.220.176.0/20 37341 -197.220.192.0/18 37214 -197.221.0.0/18 37153 -197.221.80.0/22 37350 -197.221.84.0/23 37350 -197.221.86.0/24 30988 -197.221.87.0/24 37350 -197.221.88.0/21 37350 -197.221.96.0/20 37236 -197.221.112.0/22 37236 -197.221.116.0/23 37334 -197.221.118.0/23 37236 -197.221.120.0/21 37236 -197.221.128.0/19 36977 -197.221.160.0/19 37357 -197.221.192.0/19 36930 -197.221.224.0/19 37204 -197.222.0.0/15 37069 -197.224.0.0/14 23889 -197.228.0.0/17 37457 -197.228.128.0/23 37251 -197.228.130.0/23 37457 -197.228.132.0/22 37457 -197.228.136.0/21 37457 -197.228.144.0/20 37457 -197.228.160.0/19 37457 -197.228.192.0/18 37457 -197.229.0.0/16 37457 -197.230.0.0/19 36925 -197.230.32.0/22 36925 -197.230.36.0/24 36925 -197.230.37.0/24 328126 -197.230.38.0/23 36925 -197.230.40.0/21 36925 -197.230.48.0/20 36925 -197.230.64.0/18 36925 -197.230.128.0/18 36925 -197.230.192.0/19 36925 -197.230.224.0/21 36925 -197.230.232.0/22 36925 -197.230.236.0/24 36925 -197.230.237.0/24 328126 -197.230.238.0/23 36925 -197.230.240.0/20 36925 -197.231.0.0/19 37541 -197.231.32.0/19 37057 -197.231.64.0/22 37582 -197.231.68.0/24 37582 -197.231.70.0/24 37582 -197.231.73.0/24 37582 -197.231.74.0/23 37582 -197.231.80.0/22 37582 -197.231.84.0/23 37582 -197.231.86.0/24 37582 -197.231.115.0/24 37582 -197.231.126.0/23 37582 -197.231.128.0/21 37503 -197.231.144.0/21 37172 -197.231.152.0/21 37410 -197.231.160.0/21 25818 -197.231.168.0/21 37055 -197.231.176.0/21 37305 -197.231.184.0/21 37455 -197.231.192.0/22 37604 -197.231.196.0/22 37549 -197.231.200.0/23 37563 -197.231.203.0/24 37563 -197.231.204.0/22 37552 -197.231.208.0/22 22769 -197.231.216.0/23 37556 -197.231.218.0/24 37556 -197.231.220.0/22 37560 -197.231.228.0/22 37566 -197.231.232.0/22 37564 -197.231.236.0/22 37594 -197.231.244.0/22 37569 -197.231.248.0/22 37586 -197.231.252.0/22 37571 -197.232.0.0/16 36866 -197.233.0.0/16 36999 -197.234.0.0/20 36902 -197.234.16.0/20 37239 -197.234.32.0/21 37308 -197.234.41.0/24 29286 -197.234.42.0/23 29286 -197.234.44.0/22 29286 -197.234.48.0/22 37308 -197.234.52.0/24 37308 -197.234.53.0/24 29286 -197.234.54.0/23 29286 -197.234.56.0/24 29286 -197.234.57.0/24 37308 -197.234.58.0/24 37308 -197.234.64.0/18 33763 -197.234.128.0/18 37315 -197.234.192.0/21 37358 -197.234.200.0/21 37317 -197.234.208.0/24 37537 -197.234.212.0/23 37537 -197.234.216.0/21 37424 -197.234.224.0/23 198394 -197.234.232.0/22 37546 -197.234.236.0/22 37354 -197.234.240.0/22 13335 -197.234.244.0/22 37547 -197.235.0.0/16 37223 -197.236.0.0/16 5713 -197.237.0.0/16 15399 -197.238.0.0/16 37705 -197.239.0.0/18 37075 -197.239.64.0/19 37577 -197.239.128.0/18 36982 -197.240.0.0/16 37705 -197.241.0.0/18 30990 -197.241.64.0/24 30990 -197.241.112.0/21 30990 -197.241.128.0/17 37081 -197.242.0.0/19 37390 -197.242.32.0/19 6453 -197.242.64.0/20 37153 -197.242.80.0/22 37153 -197.242.84.0/22 24940 -197.242.88.0/21 37153 -197.242.96.0/19 37340 -197.242.128.0/20 37309 -197.242.144.0/20 37611 -197.242.160.0/20 42235 -197.242.176.0/21 37460 -197.242.184.0/21 37455 -197.242.192.0/21 37454 -197.242.200.0/21 37353 -197.242.240.0/22 37308 -197.242.244.0/23 37308 -197.242.248.0/22 37308 -197.242.253.0/24 29286 -197.243.0.0/18 37228 -197.243.64.0/19 37228 -197.243.96.0/20 37228 -197.243.112.0/21 37228 -197.243.120.0/22 37228 -197.243.124.0/22 327899 -197.243.128.0/17 37009 -197.245.0.0/16 11845 -197.246.0.0/16 20928 -197.247.0.0/16 36925 -197.248.0.0/16 37061 -197.249.0.0/16 25139 -197.250.0.0/16 36908 -197.251.0.0/17 37197 -197.251.128.0/17 29614 -197.252.0.0/16 15706 -197.253.0.0/18 37282 -197.253.64.0/18 37313 -197.253.128.0/17 36925 -197.254.0.0/17 15808 -197.254.128.0/18 37057 -197.254.192.0/18 33788 -197.255.0.0/18 35074 -197.255.64.0/18 37074 -197.255.128.0/20 37517 -197.255.144.0/20 15022 -197.255.160.0/20 37340 -197.255.176.0/20 37322 -197.255.192.0/20 37323 -197.255.208.0/20 37200 -197.255.224.0/20 36939 -197.255.240.0/22 37542 -197.255.244.0/23 37445 -197.255.246.0/24 37445 -197.255.248.0/23 22351 -197.255.252.0/22 37521 -198.0.0.0/16 7922 -198.1.0.0/21 55140 -198.1.26.0/23 22567 -198.1.28.0/22 19893 -198.1.32.0/22 13456 -198.1.36.0/24 13456 -198.1.37.0/24 3549 -198.1.38.0/24 10835 -198.1.39.0/24 13456 -198.1.40.0/21 13456 -198.1.48.0/22 13456 -198.1.52.0/22 53981 -198.1.56.0/21 15247 -198.1.64.0/18 46606 -198.1.128.0/18 11282 -198.1.192.0/18 30236 -198.2.4.0/22 30510 -198.2.14.0/23 397749 -198.2.32.0/19 20001 -198.2.64.0/18 40788 -198.2.128.0/18 14782 -198.2.192.0/18 54600 -198.3.0.0/19 701 -198.3.32.0/21 701 -198.3.40.0/22 701 -198.3.44.0/22 12129 -198.3.48.0/20 701 -198.3.64.0/18 701 -198.3.128.0/21 701 -198.3.136.0/21 11784 -198.3.144.0/20 701 -198.3.160.0/24 3257 -198.3.161.0/24 701 -198.3.162.0/23 701 -198.3.164.0/22 701 -198.3.168.0/21 701 -198.3.176.0/20 701 -198.3.192.0/20 701 -198.3.208.0/21 701 -198.3.216.0/22 701 -198.3.220.0/24 701 -198.3.221.0/24 10754 -198.3.222.0/23 701 -198.3.224.0/19 701 -198.4.0.0/22 701 -198.4.4.0/22 3378 -198.4.8.0/23 3378 -198.4.10.0/23 701 -198.4.12.0/22 701 -198.4.16.0/20 701 -198.4.32.0/19 701 -198.4.64.0/24 7270 -198.4.65.0/24 701 -198.4.66.0/24 7270 -198.4.67.0/24 701 -198.4.68.0/22 701 -198.4.72.0/21 701 -198.4.80.0/21 701 -198.4.88.0/22 701 -198.4.92.0/24 10455 -198.4.93.0/24 701 -198.4.94.0/23 701 -198.4.96.0/19 701 -198.4.128.0/17 701 -198.5.0.0/22 701 -198.5.4.0/24 701 -198.5.5.0/24 10255 -198.5.6.0/23 701 -198.5.8.0/21 701 -198.5.16.0/20 701 -198.5.32.0/19 701 -198.5.64.0/18 701 -198.5.128.0/19 11486 -198.5.160.0/20 701 -198.5.176.0/22 701 -198.5.180.0/24 705 -198.5.181.0/24 701 -198.5.182.0/23 701 -198.5.184.0/21 701 -198.5.192.0/19 701 -198.5.224.0/20 701 -198.5.240.0/21 701 -198.5.248.0/22 701 -198.5.252.0/23 701 -198.5.254.0/24 11092 -198.5.255.0/24 701 -198.6.0.0/19 701 -198.6.32.0/24 16733 -198.6.33.0/24 701 -198.6.34.0/24 16733 -198.6.35.0/24 701 -198.6.36.0/22 701 -198.6.40.0/22 701 -198.6.44.0/23 26282 -198.6.46.0/23 701 -198.6.48.0/24 26282 -198.6.49.0/24 701 -198.6.50.0/23 701 -198.6.52.0/22 701 -198.6.56.0/22 701 -198.6.60.0/23 701 -198.6.62.0/24 16733 -198.6.63.0/24 701 -198.6.64.0/21 701 -198.6.72.0/24 701 -198.6.73.0/24 11165 -198.6.74.0/23 701 -198.6.76.0/22 701 -198.6.80.0/20 701 -198.6.96.0/19 701 -198.6.128.0/18 701 -198.6.192.0/22 701 -198.6.196.0/24 16668 -198.6.197.0/24 701 -198.6.198.0/23 701 -198.6.200.0/23 701 -198.6.202.0/24 14151 -198.6.203.0/24 701 -198.6.204.0/22 701 -198.6.208.0/20 701 -198.6.224.0/20 701 -198.6.240.0/21 701 -198.6.248.0/22 701 -198.6.252.0/23 701 -198.6.254.0/24 701 -198.6.255.0/24 3944 -198.7.0.0/21 2033 -198.7.16.0/22 15133 -198.7.20.0/24 15133 -198.7.22.0/24 15133 -198.7.26.0/23 15133 -198.7.29.0/24 15133 -198.7.30.0/23 14153 -198.7.38.0/23 21896 -198.7.42.0/23 21896 -198.7.44.0/22 21896 -198.7.56.0/21 30633 -198.7.64.0/19 4193 -198.7.96.0/20 21099 -198.7.128.0/22 7018 -198.7.132.0/24 36565 -198.7.133.0/24 7018 -198.7.134.0/23 7018 -198.7.136.0/22 7018 -198.7.140.0/24 7018 -198.7.141.0/24 36565 -198.7.142.0/23 7018 -198.7.144.0/20 7018 -198.7.160.0/19 7018 -198.7.192.0/19 14038 -198.7.224.0/19 14325 -198.8.0.0/21 18819 -198.8.10.0/23 6614 -198.8.12.0/22 6614 -198.8.16.0/20 1415 -198.8.32.0/22 11787 -198.8.57.0/24 174 -198.8.60.0/23 62755 -198.8.62.0/23 62756 -198.8.64.0/24 6181 -198.8.67.0/24 6181 -198.8.70.0/23 54312 -198.8.72.0/24 397953 -198.8.74.0/24 397140 -198.8.80.0/21 46562 -198.8.88.0/22 46562 -198.8.92.0/23 46562 -198.8.94.0/24 46562 -198.8.95.0/24 13213 -198.8.96.0/19 17054 -198.8.128.0/22 13540 -198.8.132.0/23 3455 -198.8.134.0/23 13540 -198.8.136.0/21 200104 -198.8.144.0/21 3455 -198.8.152.0/21 13540 -198.8.160.0/23 3455 -198.8.168.0/23 3455 -198.8.200.0/24 9255 -198.8.232.0/21 3455 -198.8.240.0/21 13540 -198.9.0.0/16 10343 -198.10.0.0/16 24 -198.11.0.0/22 25019 -198.11.4.0/22 5078 -198.11.8.0/22 46887 -198.11.12.0/24 54132 -198.11.13.0/24 46887 -198.11.14.0/24 46887 -198.11.15.0/24 27241 -198.11.16.0/20 104 -198.11.32.0/19 2015 -198.11.114.0/23 26109 -198.11.116.0/23 32984 -198.11.118.0/24 4293 -198.11.120.0/21 53301 -198.11.128.0/21 45102 -198.11.136.0/22 45102 -198.11.140.0/24 45102 -198.11.141.0/24 6453 -198.11.142.0/23 45102 -198.11.144.0/20 45102 -198.11.160.0/19 45102 -198.11.192.0/18 36351 -198.12.10.0/23 22871 -198.12.12.0/22 40065 -198.12.16.0/21 17195 -198.12.24.0/24 17195 -198.12.26.0/24 393851 -198.12.28.0/24 395541 -198.12.30.0/24 46398 -198.12.32.0/23 61452 -198.12.34.0/24 61452 -198.12.35.0/24 23027 -198.12.36.0/23 61452 -198.12.38.0/24 23097 -198.12.39.0/24 61452 -198.12.41.0/24 61452 -198.12.42.0/23 61452 -198.12.58.0/23 61452 -198.12.61.0/24 23014 -198.12.62.0/23 61452 -198.12.64.0/18 36352 -198.12.128.0/17 26496 -198.13.16.0/20 21719 -198.13.32.0/19 20473 -198.13.76.0/22 36374 -198.13.80.0/21 10279 -198.13.88.0/22 10279 -198.13.92.0/24 10279 -198.13.94.0/23 10279 -198.13.96.0/19 40676 -198.13.128.0/18 19397 -198.14.16.0/20 16976 -198.14.32.0/19 668 -198.14.128.0/18 14206 -198.14.192.0/18 7029 -198.15.0.0/21 53823 -198.15.8.0/21 5703 -198.15.64.0/18 20454 -198.15.128.0/17 11282 -198.16.0.0/22 17025 -198.16.4.0/22 54825 -198.16.16.0/21 1603 -198.16.24.0/24 1603 -198.16.26.0/23 40639 -198.16.28.0/22 23314 -198.16.32.0/19 40065 -198.16.64.0/19 174 -198.16.96.0/20 174 -198.16.112.0/23 174 -198.16.114.0/23 2914 -198.16.116.0/22 174 -198.16.120.0/21 174 -198.16.128.0/17 1403 -198.17.0.0/24 13951 -198.17.3.0/24 62480 -198.17.4.0/24 13649 -198.17.5.0/24 11404 -198.17.11.0/24 36673 -198.17.13.0/24 11827 -198.17.19.0/24 14501 -198.17.20.0/23 33268 -198.17.22.0/23 1612 -198.17.30.0/24 11834 -198.17.32.0/24 62546 -198.17.34.0/24 16582 -198.17.39.0/24 7018 -198.17.40.0/24 53577 -198.17.42.0/24 32649 -198.17.44.0/24 46727 -198.17.46.0/23 195 -198.17.50.0/24 47870 -198.17.52.0/24 396052 -198.17.57.0/24 18703 -198.17.60.0/23 11720 -198.17.62.0/24 7795 -198.17.67.0/24 397604 -198.17.68.0/24 397604 -198.17.70.0/24 1217 -198.17.75.0/24 17389 -198.17.80.0/24 394738 -198.17.84.0/24 46700 -198.17.86.0/24 4010 -198.17.89.0/24 55205 -198.17.95.0/24 18864 -198.17.96.0/24 30648 -198.17.97.0/24 209 -198.17.99.0/24 3555 -198.17.101.0/24 195 -198.17.103.0/24 19773 -198.17.104.0/23 19773 -198.17.109.0/24 32732 -198.17.110.0/23 22666 -198.17.112.0/24 13913 -198.17.119.0/24 11765 -198.17.120.0/23 264581 -198.17.126.0/24 36537 -198.17.127.0/24 14618 -198.17.128.0/24 11404 -198.17.130.0/23 237 -198.17.132.0/23 237 -198.17.134.0/24 237 -198.17.139.0/24 21600 -198.17.145.0/24 14128 -198.17.147.0/24 1906 -198.17.154.0/24 11499 -198.17.160.0/24 46665 -198.17.168.0/24 13969 -198.17.169.0/24 14477 -198.17.178.0/24 54034 -198.17.179.0/24 53263 -198.17.191.0/24 27064 -198.17.195.0/24 11394 -198.17.196.0/24 1224 -198.17.199.0/24 33145 -198.17.210.0/24 792 -198.17.211.0/24 7046 -198.17.212.0/24 32887 -198.17.215.0/24 20473 -198.17.216.0/24 54970 -198.17.219.0/24 14582 -198.17.220.0/24 3356 -198.17.222.0/24 7018 -198.17.223.0/24 5078 -198.17.225.0/24 22958 -198.17.231.0/24 264583 -198.17.232.0/24 264095 -198.17.233.0/24 55151 -198.17.243.0/24 2914 -198.17.248.0/24 26036 -198.17.251.0/24 11322 -198.17.255.0/24 55146 -198.20.0.0/22 54473 -198.20.4.0/24 54473 -198.20.5.0/24 55181 -198.20.6.0/23 54473 -198.20.8.0/24 19152 -198.20.9.0/24 3848 -198.20.32.0/19 819 -198.20.64.0/18 32475 -198.20.128.0/20 30475 -198.20.144.0/21 30475 -198.20.160.0/21 55286 -198.20.168.0/24 55286 -198.20.169.0/24 55081 -198.20.170.0/23 55286 -198.20.172.0/22 55286 -198.20.176.0/20 55286 -198.20.192.0/20 54947 -198.20.216.0/23 18733 -198.20.218.0/24 18733 -198.20.220.0/23 18733 -198.20.222.0/24 18733 -198.20.224.0/19 46606 -198.21.0.0/21 11377 -198.21.16.0/24 2047 -198.21.19.0/24 2047 -198.21.20.0/23 2047 -198.21.22.0/23 18535 -198.21.24.0/23 18535 -198.21.31.0/24 2047 -198.21.32.0/19 7046 -198.21.64.0/20 7046 -198.21.80.0/23 7046 -198.21.82.0/23 62467 -198.21.88.0/21 55183 -198.21.96.0/19 11979 -198.21.128.0/17 12148 -198.22.2.0/24 62479 -198.22.10.0/24 55238 -198.22.14.0/23 7046 -198.22.17.0/24 22826 -198.22.19.0/24 8148 -198.22.21.0/24 54063 -198.22.23.0/24 54063 -198.22.24.0/23 54063 -198.22.26.0/24 7834 -198.22.28.0/24 27066 -198.22.36.0/24 395569 -198.22.40.0/24 33468 -198.22.41.0/24 36153 -198.22.44.0/24 13536 -198.22.46.0/24 55210 -198.22.51.0/24 47215 -198.22.60.0/24 54269 -198.22.61.0/24 9792 -198.22.62.0/23 32695 -198.22.66.0/24 32695 -198.22.91.0/24 11481 -198.22.92.0/24 25906 -198.22.98.0/24 53699 -198.22.99.0/24 2828 -198.22.100.0/24 33415 -198.22.102.0/24 22532 -198.22.106.0/23 62520 -198.22.122.0/23 11596 -198.22.125.0/24 54048 -198.22.126.0/24 33095 -198.22.127.0/24 13979 -198.22.129.0/24 21976 -198.22.130.0/24 26376 -198.22.131.0/24 13649 -198.22.135.0/24 62565 -198.22.136.0/24 13785 -198.22.137.0/24 21943 -198.22.138.0/24 3356 -198.22.144.0/24 54882 -198.22.145.0/24 7819 -198.22.146.0/24 5972 -198.22.152.0/24 3555 -198.22.153.0/24 33058 -198.22.156.0/23 3356 -198.22.159.0/24 11003 -198.22.162.0/24 36007 -198.22.170.0/24 14860 -198.22.174.0/24 8047 -198.22.176.0/24 40166 -198.22.178.0/24 55284 -198.22.180.0/24 40572 -198.22.181.0/24 4583 -198.22.184.0/24 5026 -198.22.193.0/24 46631 -198.22.194.0/24 53462 -198.22.195.0/24 54583 -198.22.197.0/24 25770 -198.22.201.0/24 701 -198.22.202.0/23 62530 -198.22.204.0/23 55288 -198.22.206.0/24 62631 -198.22.216.0/24 62572 -198.22.224.0/24 53889 -198.22.225.0/24 53364 -198.22.228.0/24 62569 -198.22.236.0/24 26854 -198.22.249.0/24 18460 -198.22.250.0/24 16990 -198.22.253.0/24 62608 -198.23.0.0/24 4390 -198.23.5.0/24 4390 -198.23.6.0/24 4390 -198.23.9.0/24 4390 -198.23.20.0/24 4390 -198.23.26.0/24 33052 -198.23.27.0/24 394322 -198.23.28.0/22 53271 -198.23.32.0/24 40676 -198.23.48.0/20 32748 -198.23.64.0/18 36351 -198.23.128.0/19 36352 -198.23.160.0/23 36352 -198.23.162.0/23 55286 -198.23.164.0/22 36352 -198.23.168.0/21 36352 -198.23.176.0/20 36352 -198.23.192.0/19 36352 -198.23.224.0/20 36352 -198.23.240.0/22 36352 -198.23.244.0/24 36352 -198.23.245.0/24 20278 -198.23.246.0/23 36352 -198.23.248.0/21 36352 -198.24.4.0/23 28628 -198.24.6.0/23 8147 -198.24.8.0/24 8147 -198.24.10.0/23 62541 -198.24.12.0/22 17216 -198.24.28.0/22 3926 -198.24.32.0/24 36086 -198.24.34.0/23 36086 -198.24.36.0/22 36086 -198.24.40.0/23 36086 -198.24.44.0/22 36086 -198.24.48.0/22 36086 -198.24.52.0/23 36086 -198.24.56.0/24 36086 -198.24.59.0/24 36086 -198.24.62.0/23 36086 -198.24.64.0/19 11426 -198.24.96.0/19 10796 -198.24.128.0/19 20454 -198.24.160.0/19 19437 -198.24.192.0/19 14265 -198.24.224.0/20 14265 -198.24.240.0/21 14265 -198.24.248.0/23 14265 -198.24.250.0/24 54763 -198.24.251.0/24 14265 -198.24.252.0/22 14265 -198.25.0.0/19 721 -198.25.32.0/20 721 -198.25.48.0/21 721 -198.25.56.0/22 721 -198.25.60.0/23 721 -198.25.62.0/24 721 -198.25.63.0/24 385 -198.25.64.0/18 721 -198.25.128.0/19 721 -198.25.160.0/21 367 -198.25.168.0/23 367 -198.25.170.0/24 367 -198.25.171.0/24 721 -198.25.172.0/22 721 -198.25.176.0/20 721 -198.25.192.0/20 721 -198.25.208.0/21 721 -198.25.216.0/22 721 -198.25.220.0/23 721 -198.25.222.0/24 27064 -198.25.223.0/24 721 -198.25.224.0/21 721 -198.25.232.0/22 721 -198.25.236.0/24 27066 -198.25.237.0/24 721 -198.25.238.0/23 721 -198.25.240.0/20 721 -198.26.0.0/17 721 -198.26.128.0/20 721 -198.26.144.0/22 721 -198.26.148.0/24 27066 -198.26.149.0/24 721 -198.26.150.0/23 721 -198.26.152.0/21 721 -198.26.160.0/21 721 -198.26.168.0/23 721 -198.26.170.0/24 721 -198.26.171.0/24 27066 -198.26.172.0/22 27066 -198.26.176.0/24 721 -198.26.177.0/24 27066 -198.26.178.0/23 721 -198.26.180.0/22 27066 -198.26.184.0/22 721 -198.26.188.0/23 27066 -198.26.190.0/24 27066 -198.26.191.0/24 721 -198.26.192.0/18 721 -198.27.0.0/24 393252 -198.27.1.0/24 7743 -198.27.4.0/23 56171 -198.27.6.0/24 45177 -198.27.7.0/24 56171 -198.27.9.0/24 40107 -198.27.10.0/23 394065 -198.27.12.0/22 33130 -198.27.28.0/22 20325 -198.27.34.0/24 270 -198.27.37.0/24 270 -198.27.39.0/24 270 -198.27.40.0/21 270 -198.27.49.0/24 270 -198.27.57.0/24 54798 -198.27.58.0/23 7018 -198.27.60.0/22 4150 -198.27.64.0/18 16276 -198.27.128.0/17 46375 -198.28.13.0/24 393451 -198.28.14.0/23 62557 -198.28.16.0/21 19773 -198.28.24.0/22 19773 -198.28.28.0/23 22576 -198.28.30.0/24 22576 -198.28.31.0/24 54215 -198.28.32.0/19 19138 -198.28.69.0/24 5635 -198.28.92.0/24 3902 -198.28.128.0/23 20402 -198.28.130.0/24 20402 -198.28.132.0/22 396420 -198.29.0.0/22 22441 -198.29.7.0/24 25857 -198.29.16.0/20 158 -198.29.32.0/21 15191 -198.29.40.0/23 15191 -198.29.44.0/22 15191 -198.29.48.0/21 21565 -198.29.56.0/24 21565 -198.29.58.0/23 21565 -198.29.60.0/23 21565 -198.29.62.0/24 21565 -198.29.65.0/24 393941 -198.29.128.0/18 26425 -198.29.192.0/19 26425 -198.29.224.0/20 26425 -198.29.252.0/23 26425 -198.29.255.0/24 62517 -198.30.0.0/21 600 -198.30.8.0/22 600 -198.30.12.0/24 600 -198.30.13.0/24 17135 -198.30.14.0/23 600 -198.30.16.0/20 600 -198.30.32.0/20 600 -198.30.48.0/21 600 -198.30.56.0/21 36831 -198.30.64.0/20 600 -198.30.80.0/24 600 -198.30.81.0/24 394061 -198.30.82.0/23 600 -198.30.84.0/22 600 -198.30.88.0/23 3112 -198.30.90.0/23 600 -198.30.92.0/22 600 -198.30.96.0/19 600 -198.30.128.0/20 600 -198.30.144.0/21 600 -198.30.152.0/23 600 -198.30.154.0/23 17135 -198.30.156.0/22 600 -198.30.160.0/21 36831 -198.30.168.0/21 600 -198.30.176.0/22 600 -198.30.180.0/23 2025 -198.30.182.0/24 396381 -198.30.183.0/24 3112 -198.30.184.0/21 600 -198.30.192.0/21 600 -198.30.200.0/22 159 -198.30.204.0/22 600 -198.30.208.0/20 600 -198.30.224.0/22 600 -198.30.228.0/23 11446 -198.30.230.0/24 11446 -198.30.231.0/24 600 -198.30.232.0/21 600 -198.30.240.0/20 600 -198.31.0.0/21 3356 -198.31.8.0/24 3356 -198.31.9.0/24 14045 -198.31.10.0/23 3356 -198.31.12.0/22 3356 -198.31.16.0/21 3356 -198.31.24.0/23 16724 -198.31.26.0/24 16724 -198.31.27.0/24 3356 -198.31.28.0/22 3356 -198.31.32.0/23 16743 -198.31.34.0/23 3356 -198.31.36.0/22 3356 -198.31.40.0/21 3356 -198.31.48.0/23 3356 -198.31.50.0/23 22549 -198.31.52.0/22 3356 -198.31.56.0/22 3356 -198.31.60.0/23 3356 -198.31.62.0/23 19137 -198.31.64.0/20 3356 -198.31.80.0/22 3356 -198.31.84.0/23 3356 -198.31.86.0/24 3356 -198.31.87.0/24 10944 -198.31.88.0/21 3356 -198.31.96.0/19 3356 -198.31.128.0/20 3356 -198.31.144.0/22 3356 -198.31.148.0/23 3356 -198.31.150.0/23 21889 -198.31.152.0/21 3356 -198.31.160.0/23 3356 -198.31.162.0/24 3356 -198.31.163.0/24 16743 -198.31.164.0/22 3356 -198.31.168.0/21 3356 -198.31.176.0/20 3356 -198.31.192.0/22 14091 -198.31.196.0/23 14091 -198.31.198.0/23 3356 -198.31.200.0/21 3356 -198.31.208.0/20 3356 -198.31.224.0/20 3356 -198.31.240.0/21 3356 -198.31.248.0/24 22549 -198.31.249.0/24 3356 -198.31.250.0/23 3356 -198.31.252.0/22 3356 -198.32.0.0/22 8038 -198.32.7.0/24 3944 -198.32.8.0/21 11537 -198.32.16.0/24 4 -198.32.18.0/24 4 -198.32.43.0/24 32361 -198.32.44.0/23 32361 -198.32.67.0/24 36948 -198.32.104.0/24 27330 -198.32.105.0/24 54588 -198.32.106.0/24 19930 -198.32.107.0/24 12085 -198.32.108.0/24 27224 -198.32.109.0/24 29884 -198.32.110.0/24 27566 -198.32.111.0/24 32550 -198.32.122.0/24 268042 -198.32.126.0/24 24474 -198.32.132.0/24 22549 -198.32.154.0/24 11537 -198.32.160.0/23 39326 -198.32.165.0/24 10511 -198.32.224.0/20 4557 -198.32.248.0/23 2152 -198.32.251.0/24 2152 -198.32.252.0/24 20080 -198.33.16.0/22 3848 -198.33.40.0/23 3848 -198.33.44.0/23 3848 -198.33.104.0/21 3848 -198.33.112.0/20 3848 -198.33.128.0/18 3848 -198.33.192.0/20 3848 -198.33.208.0/24 3848 -198.33.246.0/24 812 -198.34.104.0/21 3848 -198.34.112.0/20 3848 -198.34.128.0/18 3848 -198.34.192.0/20 3848 -198.34.246.0/24 812 -198.35.0.0/20 3380 -198.35.16.0/22 394437 -198.35.20.0/23 15324 -198.35.24.0/23 53559 -198.35.26.0/23 14907 -198.35.28.0/22 33606 -198.35.42.0/23 26320 -198.35.44.0/22 25820 -198.35.48.0/21 36086 -198.35.56.0/23 36086 -198.35.59.0/24 23247 -198.35.65.0/24 395228 -198.35.72.0/22 395228 -198.35.116.0/24 17113 -198.35.117.0/24 54132 -198.35.118.0/24 33378 -198.35.119.0/24 17113 -198.35.120.0/23 36667 -198.36.12.0/22 54822 -198.36.16.0/21 395534 -198.36.24.0/22 395534 -198.36.28.0/22 14434 -198.36.33.0/24 5080 -198.36.36.0/22 5080 -198.36.40.0/24 5080 -198.36.44.0/24 5080 -198.36.46.0/24 5080 -198.36.47.0/24 27214 -198.36.48.0/20 33250 -198.36.75.0/24 4725 -198.36.76.0/23 26395 -198.36.82.0/23 395228 -198.36.84.0/22 395228 -198.36.88.0/24 26395 -198.36.89.0/24 7046 -198.36.90.0/23 26395 -198.36.92.0/22 26395 -198.36.110.0/24 26395 -198.36.112.0/23 26395 -198.36.114.0/23 36711 -198.36.116.0/22 36493 -198.36.120.0/22 46903 -198.36.124.0/22 36738 -198.36.128.0/23 209 -198.36.130.0/24 209 -198.36.131.0/24 3909 -198.36.132.0/24 3909 -198.36.133.0/24 209 -198.36.134.0/23 209 -198.36.136.0/21 209 -198.36.144.0/22 13904 -198.36.148.0/22 209 -198.36.152.0/21 209 -198.36.160.0/22 209 -198.36.164.0/23 209 -198.36.166.0/24 209 -198.36.167.0/24 13923 -198.36.168.0/22 209 -198.36.172.0/23 209 -198.36.174.0/24 46663 -198.36.175.0/24 209 -198.36.176.0/23 209 -198.36.178.0/24 11378 -198.36.179.0/24 209 -198.36.180.0/22 209 -198.36.184.0/24 209 -198.36.185.0/24 5705 -198.36.186.0/23 209 -198.36.188.0/22 209 -198.36.192.0/20 209 -198.36.208.0/21 209 -198.36.216.0/24 33274 -198.36.217.0/24 209 -198.36.218.0/23 209 -198.36.220.0/24 209 -198.36.221.0/24 32326 -198.36.222.0/23 209 -198.36.224.0/19 209 -198.37.4.0/23 19773 -198.37.6.0/24 19773 -198.37.7.0/24 33413 -198.37.16.0/21 29825 -198.37.24.0/22 29825 -198.37.28.0/22 33515 -198.37.36.0/24 10633 -198.37.47.0/24 55279 -198.37.55.0/24 19691 -198.37.56.0/23 19691 -198.37.94.0/23 14903 -198.37.96.0/22 17216 -198.37.100.0/24 17216 -198.37.101.0/24 14935 -198.37.102.0/24 17216 -198.37.103.0/24 397373 -198.37.104.0/22 17216 -198.37.108.0/24 40676 -198.37.109.0/24 17216 -198.37.110.0/23 17216 -198.37.112.0/21 17216 -198.37.120.0/23 17216 -198.37.122.0/24 17216 -198.37.123.0/24 40676 -198.37.124.0/24 17216 -198.37.125.0/24 53340 -198.37.126.0/24 17216 -198.37.127.0/24 53340 -198.37.133.0/24 17054 -198.37.134.0/23 14860 -198.37.136.0/21 55076 -198.37.144.0/20 11377 -198.37.160.0/19 30336 -198.37.192.0/18 10796 -198.38.0.0/22 19117 -198.38.4.0/23 32953 -198.38.6.0/24 32953 -198.38.7.0/24 18637 -198.38.8.0/22 394169 -198.38.12.0/24 394169 -198.38.14.0/23 393241 -198.38.16.0/20 3140 -198.38.48.0/20 54512 -198.38.76.0/23 53292 -198.38.79.0/24 12129 -198.38.80.0/20 23352 -198.38.96.0/19 2906 -198.39.0.0/16 11857 -198.40.7.0/24 3549 -198.40.16.0/20 18555 -198.40.40.0/22 26854 -198.40.44.0/22 53641 -198.40.48.0/20 54288 -198.40.80.0/24 3320 -198.40.90.0/24 3320 -198.40.99.0/24 21758 -198.40.100.0/24 21758 -198.40.109.0/24 21758 -198.40.116.0/23 21758 -198.40.119.0/24 21758 -198.40.120.0/24 21758 -198.40.129.0/24 21758 -198.40.130.0/24 21758 -198.40.150.0/24 21758 -198.40.224.0/19 30036 -198.41.0.0/23 20172 -198.41.2.0/24 10515 -198.41.3.0/24 26134 -198.41.5.0/24 3561 -198.41.14.0/23 19314 -198.41.28.0/22 54412 -198.41.32.0/21 16874 -198.41.40.0/23 16874 -198.41.42.0/23 52441 -198.41.44.0/23 52441 -198.41.46.0/24 52441 -198.41.47.0/24 26477 -198.41.48.0/20 54646 -198.41.64.0/20 22773 -198.41.80.0/21 36327 -198.41.88.0/22 36327 -198.41.92.0/23 36327 -198.41.94.0/24 36327 -198.41.95.0/24 394860 -198.41.128.0/24 13335 -198.41.129.0/24 394536 -198.41.130.0/24 395747 -198.41.132.0/22 395747 -198.41.136.0/22 395747 -198.41.144.0/22 132892 -198.41.148.0/22 202623 -198.41.152.0/22 202623 -198.41.192.0/20 13335 -198.41.208.0/23 13335 -198.41.211.0/24 13335 -198.41.212.0/22 13335 -198.41.220.0/22 13335 -198.41.224.0/21 13335 -198.41.232.0/23 13335 -198.41.235.0/24 13335 -198.41.236.0/22 13335 -198.41.240.0/23 13335 -198.41.242.0/24 13335 -198.41.244.0/22 132892 -198.41.248.0/23 132892 -198.41.250.0/24 132892 -198.41.252.0/23 202623 -198.41.254.0/23 132892 -198.44.0.0/17 54290 -198.44.128.0/19 11878 -198.44.160.0/20 62468 -198.44.176.0/22 62468 -198.44.180.0/23 62468 -198.44.182.0/24 40676 -198.44.183.0/24 62468 -198.44.184.0/21 62468 -198.44.192.0/24 26465 -198.44.200.0/24 398207 -198.44.204.0/22 55077 -198.44.208.0/20 23316 -198.44.224.0/22 26484 -198.44.228.0/24 54600 -198.44.229.0/24 134548 -198.44.230.0/23 26484 -198.44.232.0/22 134548 -198.44.236.0/22 138571 -198.44.241.0/24 26484 -198.44.242.0/23 26484 -198.44.244.0/22 134548 -198.44.248.0/22 26484 -198.44.252.0/23 26484 -198.44.254.0/23 134548 -198.45.0.0/24 5766 -198.45.3.0/24 5766 -198.45.6.0/24 5766 -198.45.9.0/24 5766 -198.45.10.0/24 5766 -198.45.12.0/22 394708 -198.45.16.0/21 4546 -198.45.24.0/23 4546 -198.45.26.0/24 4546 -198.45.30.0/24 4546 -198.45.48.0/20 2906 -198.45.116.0/22 206026 -198.45.120.0/21 55160 -198.45.128.0/18 7155 -198.45.192.0/19 7155 -198.45.224.0/20 7155 -198.45.240.0/21 7155 -198.45.248.0/23 40311 -198.45.250.0/24 40311 -198.45.251.0/24 7155 -198.45.252.0/22 7155 -198.46.12.0/22 18859 -198.46.16.0/20 39970 -198.46.39.0/24 7018 -198.46.48.0/21 27435 -198.46.56.0/23 27435 -198.46.60.0/22 27435 -198.46.65.0/24 33662 -198.46.67.0/24 19366 -198.46.75.0/24 22442 -198.46.80.0/21 54641 -198.46.88.0/22 54641 -198.46.92.0/22 22611 -198.46.96.0/22 6128 -198.46.100.0/24 62614 -198.46.101.0/24 6128 -198.46.102.0/24 54004 -198.46.103.0/24 6128 -198.46.104.0/24 6128 -198.46.105.0/24 22904 -198.46.106.0/23 6128 -198.46.108.0/22 6128 -198.46.112.0/21 6128 -198.46.120.0/23 6128 -198.46.122.0/24 6128 -198.46.123.0/24 16770 -198.46.124.0/24 54004 -198.46.125.0/24 6128 -198.46.126.0/23 6128 -198.46.128.0/19 36352 -198.46.160.0/22 36352 -198.46.164.0/24 55286 -198.46.165.0/24 36352 -198.46.166.0/23 36352 -198.46.168.0/21 36352 -198.46.176.0/20 36352 -198.46.192.0/18 36352 -198.47.0.0/22 3356 -198.47.8.0/22 23371 -198.47.12.0/24 23371 -198.47.13.0/24 11737 -198.47.14.0/23 36244 -198.47.19.0/24 161 -198.47.20.0/22 161 -198.47.24.0/22 161 -198.47.28.0/23 161 -198.47.31.0/24 62673 -198.47.43.0/24 62536 -198.47.44.0/22 40029 -198.47.48.0/20 22200 -198.47.64.0/20 209 -198.47.80.0/21 209 -198.47.88.0/23 209 -198.47.90.0/24 19353 -198.47.91.0/24 397151 -198.47.92.0/22 46138 -198.47.96.0/24 54600 -198.47.97.0/24 13722 -198.47.98.0/24 3257 -198.47.99.0/24 25973 -198.47.100.0/22 3257 -198.47.104.0/21 3257 -198.47.112.0/23 3257 -198.47.114.0/24 30079 -198.47.115.0/24 3257 -198.47.116.0/24 20940 -198.47.117.0/24 3257 -198.47.118.0/24 3257 -198.47.119.0/24 23420 -198.47.120.0/24 3257 -198.47.121.0/24 40065 -198.47.122.0/24 3257 -198.47.123.0/24 23420 -198.47.124.0/23 3257 -198.47.126.0/24 3257 -198.47.127.0/24 62713 -198.47.128.0/17 10405 -198.48.0.0/23 132040 -198.48.2.0/24 132001 -198.48.3.0/24 132040 -198.48.44.0/22 21779 -198.48.48.0/20 40244 -198.48.64.0/20 73 -198.48.80.0/21 73 -198.48.88.0/22 73 -198.48.92.0/22 64247 -198.48.96.0/22 396362 -198.48.100.0/22 396190 -198.48.104.0/22 394380 -198.48.108.0/22 395954 -198.48.112.0/22 393886 -198.48.128.0/17 5645 -198.49.0.0/24 62589 -198.49.1.0/24 715 -198.49.4.0/24 29858 -198.49.6.0/24 25825 -198.49.8.0/24 8075 -198.49.9.0/24 11926 -198.49.22.0/24 2572 -198.49.23.0/24 53831 -198.49.27.0/24 22310 -198.49.28.0/23 54578 -198.49.30.0/24 54578 -198.49.31.0/24 3464 -198.49.41.0/24 3257 -198.49.43.0/24 19819 -198.49.44.0/24 10381 -198.49.45.0/24 7018 -198.49.46.0/23 62647 -198.49.48.0/20 30325 -198.49.64.0/20 33182 -198.49.80.0/24 62711 -198.49.81.0/24 15116 -198.49.82.0/24 15116 -198.49.86.0/24 26716 -198.49.89.0/24 54818 -198.49.90.0/24 62709 -198.49.94.0/24 14371 -198.49.95.0/24 15359 -198.49.96.0/24 6653 -198.49.99.0/24 393261 -198.49.100.0/24 18741 -198.49.102.0/24 55266 -198.49.103.0/24 4565 -198.49.112.0/23 4274 -198.49.114.0/23 22773 -198.49.120.0/23 27142 -198.49.123.0/24 27142 -198.49.125.0/24 33683 -198.49.126.0/24 32150 -198.49.128.0/22 263691 -198.49.132.0/23 263909 -198.49.135.0/24 18993 -198.49.138.0/23 7795 -198.49.140.0/24 22645 -198.49.143.0/24 62533 -198.49.144.0/23 2572 -198.49.146.0/24 120 -198.49.148.0/24 23363 -198.49.150.0/24 10987 -198.49.154.0/23 6620 -198.49.156.0/24 6620 -198.49.157.0/24 46695 -198.49.160.0/24 2901 -198.49.161.0/24 7342 -198.49.162.0/24 56473 -198.49.164.0/24 18916 -198.49.167.0/24 29828 -198.49.177.0/24 87 -198.49.178.0/24 62745 -198.49.180.0/24 14110 -198.49.182.0/24 3676 -198.49.184.0/23 1461 -198.49.186.0/23 721 -198.49.188.0/22 721 -198.49.192.0/24 494 -198.49.208.0/24 3152 -198.49.214.0/24 27198 -198.49.217.0/24 10381 -198.49.219.0/24 394814 -198.49.220.0/24 6954 -198.49.222.0/24 2544 -198.49.223.0/24 13649 -198.49.226.0/23 5972 -198.49.228.0/23 5972 -198.49.230.0/24 5972 -198.49.232.0/23 5972 -198.49.234.0/23 721 -198.49.236.0/22 5972 -198.49.240.0/24 5972 -198.49.241.0/24 16983 -198.49.243.0/24 46461 -198.49.244.0/24 40715 -198.49.247.0/24 6653 -198.49.249.0/24 1906 -198.49.250.0/24 10255 -198.50.0.0/21 209 -198.50.16.0/23 263233 -198.50.18.0/24 263233 -198.50.20.0/24 263233 -198.50.22.0/24 263233 -198.50.24.0/21 53264 -198.50.32.0/22 16801 -198.50.60.0/24 16801 -198.50.64.0/23 25984 -198.50.73.0/24 25984 -198.50.74.0/24 25984 -198.50.94.0/24 25984 -198.50.96.0/19 32613 -198.50.128.0/17 16276 -198.51.0.0/24 62604 -198.51.2.0/24 393344 -198.51.8.0/24 30382 -198.51.9.0/24 26554 -198.51.11.0/24 7046 -198.51.13.0/24 10538 -198.51.14.0/24 23271 -198.51.16.0/22 62630 -198.51.20.0/23 62630 -198.51.22.0/24 21814 -198.51.38.0/24 11479 -198.51.42.0/23 1599 -198.51.44.0/23 62597 -198.51.49.0/24 11714 -198.51.50.0/23 11714 -198.51.52.0/24 15164 -198.51.61.0/24 54063 -198.51.72.0/24 33177 -198.51.74.0/24 36092 -198.51.76.0/24 53934 -198.51.77.0/24 7029 -198.51.88.0/24 62779 -198.51.92.0/24 32440 -198.51.93.0/24 20449 -198.51.94.0/24 62571 -198.51.96.0/24 36131 -198.51.97.0/24 395175 -198.51.98.0/24 20473 -198.51.104.0/22 22457 -198.51.111.0/24 3671 -198.51.118.0/23 46542 -198.51.121.0/24 26297 -198.51.125.0/24 36673 -198.51.126.0/23 36673 -198.51.128.0/24 36673 -198.51.130.0/24 14192 -198.51.131.0/24 22447 -198.51.132.0/24 33445 -198.51.135.0/24 33445 -198.51.136.0/22 8304 -198.51.140.0/24 62735 -198.51.158.0/24 46916 -198.51.162.0/24 53781 -198.51.167.0/24 2386 -198.51.168.0/23 55143 -198.51.170.0/23 209 -198.51.172.0/24 209 -198.51.174.0/24 15695 -198.51.179.0/24 29888 -198.51.192.0/24 3356 -198.51.194.0/24 18530 -198.51.197.0/24 32971 -198.51.208.0/24 225 -198.51.210.0/24 38583 -198.51.212.0/24 11813 -198.51.214.0/24 11188 -198.51.223.0/24 26763 -198.51.225.0/24 20234 -198.51.226.0/23 20234 -198.51.228.0/23 20234 -198.51.230.0/24 394022 -198.51.231.0/24 14027 -198.51.232.0/24 32899 -198.51.233.0/24 395409 -198.51.238.0/23 46846 -198.51.240.0/24 14222 -198.51.243.0/24 22966 -198.51.244.0/24 22966 -198.51.245.0/24 3356 -198.51.249.0/24 10381 -198.51.250.0/24 6289 -198.51.254.0/24 59 -198.51.255.0/24 62772 -198.52.0.0/22 8148 -198.52.8.0/24 23391 -198.52.9.0/24 36790 -198.52.10.0/23 36790 -198.52.12.0/23 32448 -198.52.14.0/24 32448 -198.52.15.0/24 21688 -198.52.27.0/24 62690 -198.52.28.0/22 23657 -198.52.32.0/24 53889 -198.52.33.0/24 6130 -198.52.34.0/23 53889 -198.52.36.0/22 53889 -198.52.40.0/24 394823 -198.52.42.0/23 395061 -198.52.44.0/24 203902 -198.52.45.0/24 56595 -198.52.46.0/23 60241 -198.52.48.0/20 16532 -198.52.89.0/24 62803 -198.52.90.0/23 32192 -198.52.92.0/22 397347 -198.52.96.0/19 35916 -198.52.128.0/18 395965 -198.52.192.0/19 22987 -198.52.244.0/23 46176 -198.52.246.0/23 394065 -198.53.0.0/20 852 -198.53.16.0/21 852 -198.53.24.0/23 852 -198.53.26.0/23 4470 -198.53.28.0/22 852 -198.53.32.0/19 852 -198.53.64.0/18 852 -198.53.128.0/17 852 -198.54.1.0/24 37130 -198.54.7.0/24 37130 -198.54.8.0/23 37130 -198.54.10.0/24 37130 -198.54.11.0/24 16697 -198.54.12.0/23 62693 -198.54.14.0/24 3356 -198.54.20.0/22 3741 -198.54.24.0/21 3741 -198.54.32.0/21 3741 -198.54.40.0/23 3741 -198.54.42.0/24 3741 -198.54.58.0/24 2018 -198.54.62.0/23 11730 -198.54.64.0/24 3741 -198.54.65.0/24 2018 -198.54.66.0/24 2018 -198.54.68.0/24 2018 -198.54.71.0/24 3741 -198.54.72.0/22 3741 -198.54.80.0/24 327701 -198.54.81.0/24 46946 -198.54.82.0/24 33304 -198.54.83.0/24 2018 -198.54.84.0/24 3741 -198.54.90.0/24 12163 -198.54.91.0/24 2018 -198.54.92.0/22 14155 -198.54.96.0/23 62698 -198.54.100.0/22 53424 -198.54.104.0/22 46811 -198.54.108.0/23 46811 -198.54.110.0/24 46811 -198.54.111.0/24 396447 -198.54.112.0/20 22612 -198.54.128.0/23 46844 -198.54.130.0/23 11878 -198.54.132.0/22 11878 -198.54.136.0/22 19786 -198.54.148.0/24 2905 -198.54.149.0/24 3741 -198.54.152.0/23 25644 -198.54.154.0/24 3741 -198.54.155.0/24 2018 -198.54.156.0/22 3741 -198.54.160.0/23 3741 -198.54.163.0/24 3741 -198.54.164.0/24 62767 -198.54.165.0/24 3741 -198.54.166.0/23 62663 -198.54.170.0/24 3741 -198.54.171.0/24 14862 -198.54.172.0/24 10248 -198.54.173.0/24 2018 -198.54.174.0/24 2018 -198.54.182.0/24 62807 -198.54.184.0/22 3741 -198.54.188.0/23 3741 -198.54.192.0/22 3741 -198.54.196.0/24 3741 -198.54.200.0/23 41690 -198.54.202.0/24 5713 -198.54.204.0/22 5734 -198.54.208.0/24 5734 -198.54.211.0/24 62736 -198.54.212.0/22 18988 -198.54.216.0/23 26444 -198.54.218.0/24 62562 -198.54.219.0/24 3741 -198.54.221.0/24 393260 -198.54.222.0/24 62797 -198.54.223.0/24 2018 -198.54.228.0/24 3741 -198.54.230.0/24 395133 -198.54.234.0/24 2018 -198.54.236.0/23 19878 -198.54.239.0/24 19878 -198.54.240.0/22 22576 -198.54.244.0/23 30347 -198.54.246.0/24 26215 -198.54.249.0/24 2018 -198.54.250.0/23 2018 -198.54.253.0/24 3741 -198.54.255.0/24 3728 -198.55.8.0/21 122 -198.55.24.0/23 64200 -198.55.26.0/23 62644 -198.55.28.0/22 59447 -198.55.42.0/23 20391 -198.55.44.0/22 30666 -198.55.48.0/20 12212 -198.55.92.0/24 721 -198.55.93.0/24 27066 -198.55.94.0/23 53603 -198.55.96.0/19 8100 -198.55.192.0/20 14495 -198.55.208.0/21 14495 -198.55.216.0/23 14495 -198.55.218.0/23 22246 -198.55.220.0/24 14495 -198.55.221.0/24 54572 -198.55.222.0/23 13836 -198.55.224.0/22 14495 -198.55.228.0/22 62969 -198.55.232.0/22 55145 -198.55.236.0/23 55145 -198.55.239.0/24 55145 -198.55.242.0/24 40561 -198.55.243.0/24 11989 -198.55.244.0/22 11989 -198.55.248.0/21 11989 -198.56.9.0/24 5668 -198.56.10.0/23 25794 -198.56.12.0/23 25794 -198.56.26.0/23 19068 -198.56.28.0/22 40090 -198.56.40.0/24 8103 -198.56.52.0/22 55037 -198.56.56.0/22 11139 -198.56.60.0/22 14813 -198.56.128.0/17 18978 -198.57.0.0/24 21832 -198.57.2.0/23 21832 -198.57.4.0/22 21832 -198.57.8.0/24 27876 -198.57.10.0/24 3320 -198.57.11.0/24 7046 -198.57.12.0/24 3356 -198.57.13.0/24 7046 -198.57.14.0/24 3356 -198.57.15.0/24 1221 -198.57.16.0/22 6157 -198.57.26.0/23 62563 -198.57.41.0/24 5723 -198.57.46.0/24 30475 -198.57.47.0/24 40065 -198.57.48.0/20 46957 -198.57.80.0/20 26827 -198.57.96.0/19 36315 -198.57.128.0/17 46606 -198.58.0.0/23 3586 -198.58.2.0/23 15562 -198.58.4.0/23 3727 -198.58.7.0/24 62875 -198.58.8.0/22 263256 -198.58.14.0/23 21961 -198.58.16.0/21 3762 -198.58.24.0/22 3762 -198.58.28.0/22 54821 -198.58.40.0/22 36234 -198.58.44.0/23 36234 -198.58.48.0/20 39970 -198.58.64.0/22 19011 -198.58.68.0/23 19317 -198.58.70.0/23 19011 -198.58.72.0/24 62 -198.58.74.0/23 62 -198.58.76.0/22 62 -198.58.80.0/24 36351 -198.58.81.0/24 46606 -198.58.82.0/23 46606 -198.58.84.0/24 36351 -198.58.85.0/24 46606 -198.58.86.0/24 36351 -198.58.87.0/24 46606 -198.58.88.0/21 46606 -198.58.96.0/19 63949 -198.58.128.0/17 1403 -198.59.0.0/23 209 -198.59.2.0/24 14041 -198.59.3.0/24 17207 -198.59.4.0/23 17207 -198.59.6.0/24 17207 -198.59.7.0/24 104 -198.59.8.0/21 209 -198.59.16.0/20 209 -198.59.32.0/21 209 -198.59.40.0/22 209 -198.59.44.0/23 209 -198.59.46.0/23 394748 -198.59.48.0/24 394748 -198.59.49.0/24 209 -198.59.50.0/24 209 -198.59.51.0/24 104 -198.59.52.0/24 104 -198.59.53.0/24 209 -198.59.54.0/23 104 -198.59.56.0/21 209 -198.59.64.0/20 209 -198.59.80.0/24 209 -198.59.81.0/24 104 -198.59.82.0/23 104 -198.59.84.0/22 209 -198.59.88.0/24 17294 -198.59.89.0/24 209 -198.59.90.0/23 209 -198.59.92.0/22 209 -198.59.96.0/24 2901 -198.59.97.0/24 40498 -198.59.98.0/23 2901 -198.59.100.0/22 2901 -198.59.104.0/23 2901 -198.59.106.0/23 11570 -198.59.108.0/24 11570 -198.59.109.0/24 2901 -198.59.110.0/23 2901 -198.59.112.0/23 2901 -198.59.114.0/24 2901 -198.59.115.0/24 10381 -198.59.116.0/22 2901 -198.59.120.0/21 2901 -198.59.128.0/24 22523 -198.59.129.0/24 2901 -198.59.130.0/24 3388 -198.59.131.0/24 2901 -198.59.132.0/24 2901 -198.59.133.0/24 3388 -198.59.134.0/24 3388 -198.59.135.0/24 13332 -198.59.136.0/21 13332 -198.59.144.0/24 13332 -198.59.145.0/24 3388 -198.59.146.0/23 13332 -198.59.148.0/22 13332 -198.59.152.0/24 40498 -198.59.153.0/24 3912 -198.59.154.0/23 3388 -198.59.156.0/22 13332 -198.59.160.0/20 13332 -198.59.176.0/23 13332 -198.59.178.0/24 13332 -198.59.187.0/24 3912 -198.59.188.0/23 11570 -198.59.190.0/24 11570 -198.59.191.0/24 4181 -198.59.192.0/23 2902 -198.60.1.0/24 210 -198.60.2.0/24 210 -198.60.3.0/24 11809 -198.60.4.0/23 210 -198.60.8.0/21 210 -198.60.16.0/24 210 -198.60.22.0/24 6315 -198.60.24.0/24 26211 -198.60.30.0/23 17055 -198.60.41.0/24 19648 -198.60.42.0/24 19648 -198.60.80.0/23 6315 -198.60.86.0/24 3257 -198.60.90.0/24 3257 -198.60.92.0/24 3257 -198.60.102.0/24 3833 -198.60.105.0/24 6315 -198.60.109.0/24 6315 -198.60.110.0/24 6315 -198.60.113.0/24 6315 -198.60.114.0/24 6315 -198.60.117.0/24 1746 -198.60.118.0/23 1746 -198.60.120.0/24 1746 -198.60.121.0/24 62600 -198.60.122.0/23 62600 -198.60.124.0/22 62600 -198.60.128.0/24 62600 -198.60.132.0/24 2900 -198.60.152.0/24 1706 -198.60.159.0/24 1706 -198.60.160.0/24 1706 -198.60.163.0/24 209 -198.60.164.0/22 209 -198.60.168.0/21 209 -198.60.176.0/22 209 -198.60.180.0/23 209 -198.60.182.0/24 209 -198.60.183.0/24 20001 -198.60.189.0/24 21582 -198.60.192.0/24 15305 -198.60.193.0/24 14230 -198.60.194.0/24 14230 -198.60.195.0/24 21947 -198.60.196.0/22 14230 -198.60.200.0/21 14230 -198.60.208.0/22 14230 -198.60.212.0/23 14230 -198.60.214.0/23 15305 -198.60.216.0/21 14230 -198.60.224.0/23 14230 -198.60.226.0/23 32269 -198.60.228.0/22 397285 -198.60.232.0/24 14230 -198.60.233.0/24 17380 -198.60.234.0/23 397285 -198.60.236.0/24 14230 -198.60.237.0/24 397285 -198.60.238.0/23 397285 -198.60.240.0/21 30543 -198.60.248.0/22 397285 -198.60.252.0/22 14230 -198.61.0.0/24 23527 -198.61.5.0/24 11528 -198.61.6.0/24 11528 -198.61.7.0/24 393279 -198.61.16.0/20 31822 -198.61.48.0/22 395860 -198.61.57.0/24 11285 -198.61.58.0/23 15062 -198.61.60.0/22 36204 -198.61.118.0/24 11492 -198.61.119.0/24 18812 -198.61.120.0/22 11492 -198.61.124.0/23 11492 -198.61.126.0/24 11492 -198.61.128.0/18 19994 -198.61.192.0/19 33070 -198.61.224.0/19 19994 -198.62.2.0/23 46893 -198.62.6.0/23 46893 -198.62.9.0/24 2646 -198.62.16.0/20 7309 -198.62.62.0/23 14197 -198.62.68.0/24 21924 -198.62.72.0/24 33401 -198.62.73.0/24 26554 -198.62.77.0/24 26582 -198.62.78.0/24 1239 -198.62.79.0/24 394987 -198.62.80.0/24 394987 -198.62.86.0/24 33597 -198.62.88.0/24 54311 -198.62.89.0/24 32440 -198.62.92.0/24 18566 -198.62.98.0/24 1767 -198.62.100.0/24 33586 -198.62.101.0/24 32912 -198.62.108.0/24 6122 -198.62.109.0/24 62821 -198.62.116.0/24 31821 -198.62.118.0/24 13692 -198.62.120.0/23 53869 -198.62.122.0/24 11278 -198.62.124.0/22 15111 -198.62.132.0/24 395943 -198.62.135.0/24 7753 -198.62.137.0/24 11121 -198.62.138.0/24 11121 -198.62.142.0/24 2152 -198.62.148.0/22 17207 -198.62.154.0/24 54140 -198.62.158.0/23 20010 -198.62.161.0/24 62800 -198.62.163.0/24 62903 -198.62.164.0/24 62758 -198.62.169.0/24 46424 -198.62.176.0/24 32440 -198.62.179.0/24 19319 -198.62.181.0/24 10958 -198.62.196.0/24 812 -198.62.201.0/24 62830 -198.62.202.0/23 62634 -198.62.207.0/24 22290 -198.62.209.0/24 7381 -198.62.210.0/24 7381 -198.62.217.0/24 35847 -198.62.218.0/23 35847 -198.62.229.0/24 7381 -198.62.233.0/24 39334 -198.62.236.0/24 4193 -198.62.239.0/24 21941 -198.62.255.0/24 62506 -198.63.0.0/18 2914 -198.63.64.0/19 2914 -198.63.96.0/22 2914 -198.63.100.0/24 14375 -198.63.101.0/24 2914 -198.63.102.0/23 2914 -198.63.104.0/21 2914 -198.63.112.0/20 2914 -198.63.128.0/18 2914 -198.63.192.0/21 2914 -198.63.200.0/23 174 -198.63.202.0/23 2914 -198.63.204.0/22 2914 -198.63.208.0/22 14585 -198.63.212.0/22 2914 -198.63.216.0/21 2914 -198.63.224.0/23 2914 -198.63.226.0/24 2914 -198.63.227.0/24 19993 -198.63.228.0/22 2914 -198.63.232.0/21 2914 -198.63.240.0/20 2914 -198.64.0.0/22 2914 -198.64.4.0/23 2914 -198.64.6.0/24 2914 -198.64.7.0/24 25977 -198.64.8.0/21 25977 -198.64.16.0/21 25977 -198.64.24.0/22 25977 -198.64.28.0/23 25977 -198.64.30.0/23 2914 -198.64.32.0/20 25977 -198.64.48.0/21 2914 -198.64.56.0/24 2914 -198.64.57.0/24 25977 -198.64.58.0/23 2914 -198.64.60.0/22 2914 -198.64.64.0/18 2914 -198.64.128.0/19 2914 -198.64.160.0/21 2914 -198.64.168.0/22 2914 -198.64.172.0/23 2914 -198.64.174.0/24 20940 -198.64.175.0/24 2914 -198.64.176.0/20 2914 -198.64.192.0/19 2914 -198.64.224.0/20 2914 -198.64.240.0/21 2914 -198.64.248.0/22 46785 -198.64.252.0/22 2914 -198.65.0.0/17 2914 -198.65.128.0/18 2914 -198.65.192.0/21 2914 -198.65.200.0/22 2914 -198.65.204.0/24 174 -198.65.205.0/24 2914 -198.65.206.0/23 2914 -198.65.208.0/21 2914 -198.65.216.0/22 2914 -198.65.220.0/24 2914 -198.65.221.0/24 23395 -198.65.222.0/23 2914 -198.65.224.0/19 2914 -198.66.0.0/16 2914 -198.67.0.0/21 1239 -198.67.8.0/22 1239 -198.67.12.0/23 1239 -198.67.14.0/24 1239 -198.67.15.0/24 29838 -198.67.16.0/20 1239 -198.67.32.0/19 1239 -198.67.64.0/18 1239 -198.67.128.0/17 1239 -198.68.0.0/20 1239 -198.68.16.0/21 1239 -198.68.24.0/22 1239 -198.68.28.0/23 1239 -198.68.30.0/24 26556 -198.68.31.0/24 1239 -198.68.32.0/19 1239 -198.68.64.0/18 1239 -198.68.128.0/18 1239 -198.68.192.0/24 1239 -198.68.193.0/24 32880 -198.68.194.0/23 1239 -198.68.196.0/22 1239 -198.68.200.0/21 1239 -198.68.208.0/23 18618 -198.68.210.0/23 1239 -198.68.212.0/22 1239 -198.68.216.0/21 1239 -198.68.224.0/20 1239 -198.68.240.0/21 3816 -198.68.248.0/21 1239 -198.69.0.0/21 1239 -198.69.8.0/22 1239 -198.69.12.0/23 30873 -198.69.14.0/23 1239 -198.69.16.0/20 1239 -198.69.32.0/21 1239 -198.69.40.0/21 14979 -198.69.48.0/20 1239 -198.69.64.0/19 1239 -198.69.96.0/21 1239 -198.69.104.0/22 1239 -198.69.108.0/23 1239 -198.69.110.0/24 19271 -198.69.111.0/24 1239 -198.69.112.0/21 1239 -198.69.120.0/23 1239 -198.69.122.0/24 1239 -198.69.123.0/24 40340 -198.69.124.0/22 1239 -198.69.128.0/19 1239 -198.69.160.0/20 1239 -198.69.176.0/22 1239 -198.69.180.0/24 27013 -198.69.181.0/24 1239 -198.69.182.0/23 1239 -198.69.184.0/21 1239 -198.69.192.0/19 1239 -198.69.224.0/20 1239 -198.69.240.0/21 1239 -198.69.248.0/21 27288 -198.70.0.0/24 1239 -198.70.1.0/24 46536 -198.70.2.0/23 25813 -198.70.4.0/22 1239 -198.70.8.0/21 1239 -198.70.16.0/23 1239 -198.70.18.0/23 25692 -198.70.20.0/22 1239 -198.70.24.0/21 1239 -198.70.32.0/19 1239 -198.70.64.0/18 1239 -198.70.128.0/20 1239 -198.70.144.0/21 1239 -198.70.152.0/24 1239 -198.70.153.0/24 19201 -198.70.154.0/23 1239 -198.70.156.0/22 1239 -198.70.160.0/22 1239 -198.70.164.0/23 19201 -198.70.166.0/24 1790 -198.70.167.0/24 1239 -198.70.168.0/21 1239 -198.70.176.0/20 1239 -198.70.192.0/23 1239 -198.70.194.0/24 19825 -198.70.195.0/24 1239 -198.70.196.0/22 1239 -198.70.200.0/24 1239 -198.70.201.0/24 25836 -198.70.202.0/23 1239 -198.70.204.0/22 1239 -198.70.208.0/22 1239 -198.70.212.0/24 209 -198.70.213.0/24 1239 -198.70.214.0/23 1239 -198.70.216.0/21 1239 -198.70.224.0/24 1239 -198.70.225.0/24 11722 -198.70.226.0/23 1239 -198.70.228.0/22 1239 -198.70.232.0/21 1239 -198.70.240.0/20 1239 -198.71.6.0/23 26287 -198.71.20.0/23 209 -198.71.24.0/24 209 -198.71.26.0/24 209 -198.71.28.0/22 13451 -198.71.32.0/24 701 -198.71.36.0/24 36031 -198.71.40.0/22 701 -198.71.45.0/24 11537 -198.71.46.0/24 11537 -198.71.47.0/24 11164 -198.71.48.0/20 8560 -198.71.64.0/24 30520 -198.71.65.0/24 3356 -198.71.66.0/24 30520 -198.71.72.0/22 14783 -198.71.76.0/22 54155 -198.71.80.0/20 18978 -198.71.112.0/22 11492 -198.71.116.0/23 11492 -198.71.118.0/24 11492 -198.71.119.0/24 26253 -198.71.120.0/21 26253 -198.71.128.0/17 26496 -198.72.0.0/22 14967 -198.72.6.0/24 40138 -198.72.7.0/24 209 -198.72.8.0/22 46887 -198.72.12.0/24 46887 -198.72.13.0/24 7029 -198.72.14.0/23 30281 -198.72.24.0/21 30549 -198.72.42.0/23 35909 -198.72.44.0/24 11575 -198.72.45.0/24 33132 -198.72.46.0/23 33132 -198.72.48.0/20 19397 -198.72.64.0/22 3480 -198.72.72.0/22 3479 -198.72.78.0/23 3967 -198.72.80.0/23 14744 -198.72.82.0/24 14744 -198.72.88.0/23 14744 -198.72.96.0/19 32613 -198.72.128.0/17 20001 -198.73.0.0/22 395567 -198.73.4.0/24 395567 -198.73.6.0/23 55091 -198.73.8.0/21 55091 -198.73.16.0/22 55011 -198.73.20.0/24 55011 -198.73.21.0/24 394511 -198.73.22.0/24 394511 -198.73.23.0/24 19875 -198.73.24.0/22 13825 -198.73.28.0/23 36674 -198.73.30.0/24 62885 -198.73.32.0/24 14313 -198.73.50.0/23 54489 -198.73.54.0/24 4143 -198.73.55.0/24 21804 -198.73.59.0/24 14642 -198.73.60.0/22 803 -198.73.64.0/22 803 -198.73.68.0/24 803 -198.73.69.0/24 6171 -198.73.70.0/23 803 -198.73.72.0/21 803 -198.73.80.0/23 803 -198.73.82.0/24 803 -198.73.96.0/21 20285 -198.73.104.0/24 53868 -198.73.110.0/23 393952 -198.73.112.0/23 393952 -198.73.115.0/24 393952 -198.73.118.0/24 16583 -198.73.119.0/24 5769 -198.73.123.0/24 36004 -198.73.124.0/22 36004 -198.73.128.0/22 36004 -198.73.134.0/24 19764 -198.73.135.0/24 806 -198.73.136.0/24 806 -198.73.139.0/24 15290 -198.73.148.0/24 17371 -198.73.152.0/24 15290 -198.73.164.0/24 376 -198.73.177.0/24 13911 -198.73.178.0/24 3359 -198.73.180.0/24 22639 -198.73.181.0/24 11647 -198.73.186.0/24 54044 -198.73.209.0/24 11820 -198.73.210.0/24 393304 -198.73.212.0/22 13773 -198.73.222.0/24 18584 -198.73.223.0/24 33144 -198.73.224.0/24 19855 -198.73.225.0/24 40530 -198.73.226.0/23 62839 -198.73.240.0/24 11647 -198.73.241.0/24 53503 -198.73.242.0/23 53503 -198.73.244.0/23 53503 -198.73.247.0/24 53503 -198.73.248.0/23 53503 -198.73.250.0/24 53503 -198.73.251.0/24 64258 -198.73.252.0/24 15290 -198.73.254.0/24 32517 -198.73.255.0/24 62857 -198.74.0.0/22 35350 -198.74.4.0/22 10242 -198.74.16.0/24 10837 -198.74.20.0/24 10837 -198.74.22.0/24 10837 -198.74.25.0/24 10837 -198.74.28.0/22 13576 -198.74.32.0/22 57976 -198.74.36.0/24 57976 -198.74.38.0/23 16966 -198.74.40.0/24 16966 -198.74.42.0/23 62877 -198.74.44.0/22 54972 -198.74.48.0/20 63949 -198.74.74.0/23 62891 -198.74.76.0/22 26166 -198.74.80.0/22 54775 -198.74.88.0/22 54775 -198.74.96.0/19 35916 -198.74.135.0/24 4563 -198.74.136.0/24 4563 -198.74.176.0/23 4563 -198.74.228.0/22 11288 -198.74.232.0/22 14527 -198.74.240.0/20 23314 -198.76.0.0/20 3356 -198.76.16.0/21 3356 -198.76.24.0/23 20464 -198.76.26.0/23 3356 -198.76.28.0/22 3356 -198.76.32.0/19 3356 -198.76.64.0/18 3356 -198.76.128.0/19 3356 -198.76.160.0/24 3356 -198.76.161.0/24 18705 -198.76.162.0/23 3356 -198.76.164.0/22 3356 -198.76.168.0/21 3356 -198.76.176.0/20 3356 -198.76.192.0/20 3356 -198.76.208.0/21 23131 -198.76.216.0/21 3356 -198.76.224.0/19 3356 -198.77.0.0/22 3356 -198.77.4.0/22 23131 -198.77.8.0/22 23131 -198.77.12.0/24 23131 -198.77.13.0/24 29838 -198.77.14.0/23 23131 -198.77.16.0/20 3356 -198.77.32.0/19 3356 -198.77.64.0/19 3356 -198.77.96.0/20 3356 -198.77.112.0/22 3356 -198.77.116.0/23 6621 -198.77.118.0/23 3356 -198.77.120.0/21 3356 -198.77.128.0/20 3356 -198.77.144.0/21 3356 -198.77.152.0/23 3356 -198.77.154.0/23 7914 -198.77.156.0/22 3356 -198.77.160.0/19 3356 -198.77.192.0/21 3356 -198.77.200.0/22 3356 -198.77.204.0/23 3356 -198.77.206.0/23 17116 -198.77.208.0/21 3356 -198.77.216.0/22 3356 -198.77.220.0/23 3356 -198.77.222.0/23 23479 -198.77.224.0/21 21889 -198.77.232.0/24 21889 -198.77.233.0/24 3356 -198.77.234.0/23 3356 -198.77.236.0/23 3356 -198.77.238.0/23 40911 -198.77.240.0/20 3356 -198.78.0.0/21 3356 -198.78.8.0/21 10355 -198.78.16.0/22 3356 -198.78.20.0/24 3356 -198.78.21.0/24 20060 -198.78.22.0/23 3356 -198.78.24.0/22 16567 -198.78.28.0/22 3356 -198.78.32.0/19 3356 -198.78.64.0/19 3356 -198.78.96.0/20 10355 -198.78.112.0/20 3356 -198.78.128.0/21 23131 -198.78.136.0/21 3356 -198.78.144.0/20 3356 -198.78.160.0/20 3356 -198.78.176.0/21 3356 -198.78.184.0/22 3356 -198.78.188.0/24 11799 -198.78.189.0/24 3356 -198.78.190.0/23 3356 -198.78.192.0/18 3356 -198.79.0.0/18 3356 -198.79.64.0/20 3356 -198.79.80.0/21 3356 -198.79.88.0/21 10355 -198.79.96.0/19 3356 -198.79.128.0/17 3356 -198.80.6.0/24 21973 -198.80.11.0/24 3364 -198.80.16.0/23 33665 -198.80.42.0/23 2559 -198.80.52.0/22 852 -198.80.129.0/24 23940 -198.80.132.0/24 3145 -198.80.134.0/24 21931 -198.80.138.0/24 26542 -198.80.148.0/24 32067 -198.80.162.0/24 4583 -198.80.163.0/24 3145 -198.80.164.0/23 4583 -198.80.176.0/24 4583 -198.80.184.0/24 23109 -198.80.187.0/24 26542 -198.80.208.0/23 23010 -198.80.210.0/24 23010 -198.80.248.0/22 25716 -198.81.44.0/24 10615 -198.81.96.0/19 22775 -198.81.128.0/18 7046 -198.81.193.0/24 7018 -198.81.200.0/24 3356 -198.81.230.0/24 5662 -198.81.233.0/24 3605 -198.82.0.0/16 1312 -198.83.0.0/16 701 -198.84.8.0/24 32970 -198.84.13.0/24 62863 -198.84.14.0/23 53583 -198.84.16.0/20 2914 -198.84.56.0/21 54876 -198.84.64.0/18 54290 -198.84.128.0/17 5645 -198.85.0.0/18 81 -198.85.64.0/19 81 -198.85.96.0/20 81 -198.85.112.0/22 81 -198.85.116.0/24 81 -198.85.117.0/24 6559 -198.85.118.0/23 81 -198.85.120.0/21 81 -198.85.128.0/18 81 -198.85.192.0/20 81 -198.85.208.0/21 81 -198.85.216.0/22 81 -198.85.220.0/24 394165 -198.85.221.0/24 81 -198.85.222.0/23 81 -198.85.224.0/22 81 -198.85.228.0/24 32711 -198.85.229.0/24 81 -198.85.230.0/23 36850 -198.85.232.0/21 81 -198.85.240.0/20 81 -198.86.0.0/20 81 -198.86.16.0/21 81 -198.86.24.0/22 81 -198.86.28.0/24 81 -198.86.29.0/24 13371 -198.86.30.0/23 81 -198.86.32.0/20 81 -198.86.48.0/21 81 -198.86.56.0/22 81 -198.86.60.0/23 6629 -198.86.62.0/23 81 -198.86.64.0/18 81 -198.86.128.0/17 81 -198.87.0.0/19 2914 -198.87.32.0/20 2914 -198.87.48.0/22 2914 -198.87.52.0/23 2914 -198.87.54.0/24 20940 -198.87.55.0/24 2914 -198.87.56.0/21 2914 -198.87.64.0/20 2914 -198.87.80.0/21 19271 -198.87.88.0/21 2914 -198.87.96.0/19 2914 -198.87.128.0/18 2914 -198.87.192.0/20 2914 -198.87.208.0/21 19693 -198.87.216.0/21 2914 -198.87.224.0/19 2914 -198.88.0.0/18 2914 -198.88.64.0/19 2914 -198.88.96.0/20 2914 -198.88.112.0/21 2914 -198.88.120.0/23 12119 -198.88.122.0/23 2914 -198.88.124.0/22 2914 -198.88.128.0/18 2914 -198.88.192.0/20 2914 -198.88.208.0/21 2914 -198.88.216.0/24 12119 -198.88.217.0/24 2914 -198.88.218.0/23 2914 -198.88.220.0/22 2914 -198.88.224.0/19 2914 -198.89.7.0/24 20339 -198.89.15.0/24 29762 -198.89.28.0/22 16433 -198.89.32.0/21 7018 -198.89.40.0/22 7018 -198.89.44.0/24 46786 -198.89.46.0/23 200449 -198.89.48.0/20 395172 -198.89.64.0/21 396151 -198.89.72.0/22 396151 -198.89.77.0/24 396151 -198.89.78.0/23 396151 -198.89.83.0/24 396151 -198.89.86.0/23 14693 -198.89.88.0/21 21299 -198.89.96.0/21 46261 -198.89.104.0/24 8038 -198.89.105.0/24 36352 -198.89.106.0/23 46261 -198.89.108.0/22 13332 -198.89.112.0/22 13332 -198.89.116.0/24 20454 -198.89.117.0/24 9009 -198.89.118.0/23 9009 -198.89.120.0/21 62729 -198.89.128.0/20 21595 -198.89.144.0/23 21595 -198.89.147.0/24 21595 -198.89.148.0/24 21595 -198.89.151.0/24 21595 -198.89.152.0/21 21595 -198.89.160.0/24 22855 -198.89.162.0/24 26651 -198.89.164.0/24 3356 -198.89.170.0/23 22855 -198.89.186.0/23 36279 -198.89.190.0/24 393325 -198.89.196.0/23 21595 -198.89.199.0/24 21595 -198.89.200.0/21 21595 -198.89.208.0/24 21595 -198.89.210.0/23 21595 -198.89.212.0/24 21595 -198.89.214.0/23 21595 -198.89.216.0/24 21595 -198.89.218.0/23 21595 -198.89.220.0/22 21595 -198.89.226.0/24 21595 -198.89.228.0/22 32228 -198.89.232.0/21 49808 -198.89.240.0/20 46231 -198.90.5.0/24 62939 -198.90.6.0/23 36031 -198.90.8.0/22 32897 -198.90.14.0/23 22334 -198.90.20.0/22 35914 -198.90.24.0/22 30090 -198.90.28.0/23 30090 -198.90.31.0/24 30090 -198.90.32.0/20 6603 -198.90.48.0/20 24199 -198.90.65.0/24 18816 -198.90.66.0/24 18816 -198.90.68.0/24 18816 -198.90.73.0/24 19408 -198.90.74.0/23 14533 -198.90.76.0/22 40108 -198.90.80.0/20 11260 -198.90.96.0/22 6461 -198.90.100.0/24 22773 -198.90.101.0/24 7029 -198.90.102.0/24 209 -198.90.103.0/24 54119 -198.90.104.0/22 3549 -198.90.108.0/23 54119 -198.90.110.0/23 8025 -198.90.112.0/22 21508 -198.90.116.0/24 54119 -198.90.118.0/23 54119 -198.90.120.0/22 209 -198.90.126.0/24 209 -198.90.127.0/24 54119 -198.91.7.0/24 32975 -198.91.8.0/22 10441 -198.91.14.0/23 393309 -198.91.21.0/24 13649 -198.91.22.0/23 16693 -198.91.24.0/21 32647 -198.91.32.0/21 29903 -198.91.41.0/24 29903 -198.91.42.0/23 393362 -198.91.48.0/20 54329 -198.91.64.0/24 37 -198.91.67.0/24 37 -198.91.70.0/23 37 -198.91.72.0/24 37 -198.91.74.0/23 22337 -198.91.76.0/22 26312 -198.91.80.0/20 32475 -198.91.96.0/22 14265 -198.91.100.0/24 14265 -198.91.101.0/24 55215 -198.91.102.0/23 14265 -198.91.104.0/21 14265 -198.91.112.0/20 14265 -198.91.128.0/17 11814 -198.92.0.0/18 109 -198.92.64.0/19 3356 -198.92.96.0/21 21889 -198.92.104.0/21 3356 -198.92.112.0/20 3356 -198.92.128.0/21 3356 -198.92.136.0/22 3356 -198.92.140.0/23 3356 -198.92.142.0/24 16724 -198.92.143.0/24 3356 -198.92.144.0/20 3356 -198.92.160.0/19 3356 -198.92.192.0/21 16559 -198.92.200.0/21 3356 -198.92.208.0/22 3356 -198.92.212.0/24 22921 -198.92.213.0/24 3356 -198.92.214.0/23 3356 -198.92.216.0/21 3356 -198.92.224.0/19 3356 -198.93.0.0/19 3356 -198.93.32.0/24 6352 -198.93.33.0/24 3356 -198.93.34.0/24 6352 -198.93.35.0/24 3356 -198.93.36.0/22 6352 -198.93.40.0/21 3356 -198.93.48.0/22 11081 -198.93.52.0/22 3356 -198.93.56.0/21 3356 -198.93.64.0/21 16559 -198.93.72.0/21 3356 -198.93.80.0/20 3356 -198.93.96.0/19 3356 -198.93.128.0/19 3356 -198.93.160.0/20 3356 -198.93.176.0/21 11081 -198.93.184.0/21 3356 -198.93.192.0/18 3356 -198.94.0.0/19 3356 -198.94.32.0/20 3356 -198.94.48.0/22 16567 -198.94.52.0/22 3356 -198.94.56.0/21 3356 -198.94.64.0/18 3356 -198.94.128.0/20 3356 -198.94.144.0/21 3356 -198.94.152.0/22 3356 -198.94.156.0/23 10944 -198.94.158.0/24 10944 -198.94.159.0/24 3356 -198.94.160.0/19 3356 -198.94.192.0/18 3356 -198.95.0.0/21 3356 -198.95.8.0/23 3356 -198.95.10.0/24 7914 -198.95.11.0/24 3356 -198.95.12.0/22 3356 -198.95.16.0/20 3356 -198.95.32.0/19 3356 -198.95.64.0/19 3356 -198.95.96.0/20 33302 -198.95.112.0/20 3356 -198.95.128.0/18 3356 -198.95.192.0/19 3356 -198.95.224.0/22 17394 -198.95.228.0/22 3356 -198.95.232.0/21 3356 -198.95.240.0/20 3356 -198.96.2.0/23 2665 -198.96.18.0/23 819 -198.96.22.0/24 393332 -198.96.29.0/24 62934 -198.96.32.0/21 802 -198.96.44.0/23 852 -198.96.46.0/23 6327 -198.96.48.0/21 6327 -198.96.56.0/22 6327 -198.96.60.0/24 6327 -198.96.62.0/24 2665 -198.96.63.0/24 46887 -198.96.76.0/22 32820 -198.96.80.0/22 819 -198.96.84.0/22 53566 -198.96.88.0/21 8100 -198.96.113.0/24 11077 -198.96.114.0/23 62824 -198.96.117.0/24 14843 -198.96.118.0/23 14843 -198.96.127.0/24 812 -198.96.129.0/24 16730 -198.96.130.0/23 19416 -198.96.135.0/24 32176 -198.96.136.0/24 32176 -198.96.142.0/24 26221 -198.96.155.0/24 12093 -198.96.168.0/24 17371 -198.96.170.0/24 17371 -198.96.172.0/24 33593 -198.96.174.0/24 15160 -198.96.176.0/22 15160 -198.96.180.0/23 17371 -198.96.183.0/24 17371 -198.96.185.0/24 3848 -198.96.186.0/24 14843 -198.96.187.0/24 23498 -198.96.191.0/24 577 -198.96.210.0/24 14843 -198.96.212.0/23 812 -198.96.215.0/24 62933 -198.96.220.0/24 30601 -198.96.221.0/24 22297 -198.96.222.0/24 53436 -198.96.223.0/24 6327 -198.96.241.0/24 47097 -198.96.243.0/24 22202 -198.96.245.0/24 3549 -198.96.246.0/24 6327 -198.96.251.0/24 6327 -198.97.4.0/23 43620 -198.97.13.0/24 62854 -198.97.14.0/23 22003 -198.97.30.0/23 25714 -198.97.37.0/24 16394 -198.97.38.0/24 268313 -198.97.41.0/24 394990 -198.97.42.0/23 394990 -198.97.44.0/24 398119 -198.97.46.0/24 10753 -198.97.51.0/24 7018 -198.97.53.0/24 393378 -198.97.56.0/24 3549 -198.97.62.0/24 14382 -198.97.64.0/24 54803 -198.97.67.0/24 132 -198.97.70.0/24 721 -198.97.71.0/24 27046 -198.97.72.0/24 721 -198.97.73.0/24 27046 -198.97.74.0/23 27046 -198.97.76.0/24 27046 -198.97.77.0/24 721 -198.97.78.0/24 721 -198.97.79.0/24 84 -198.97.80.0/24 721 -198.97.81.0/24 89 -198.97.82.0/23 89 -198.97.84.0/22 89 -198.97.88.0/24 89 -198.97.89.0/24 721 -198.97.90.0/23 721 -198.97.92.0/23 721 -198.97.94.0/24 721 -198.97.95.0/24 27066 -198.97.96.0/24 721 -198.97.97.0/24 27066 -198.97.98.0/24 721 -198.97.99.0/24 27064 -198.97.100.0/22 721 -198.97.104.0/21 721 -198.97.112.0/20 721 -198.97.128.0/22 721 -198.97.132.0/24 721 -198.97.133.0/24 5972 -198.97.134.0/23 721 -198.97.136.0/23 721 -198.97.138.0/24 190 -198.97.139.0/24 721 -198.97.140.0/22 721 -198.97.144.0/23 721 -198.97.146.0/23 5180 -198.97.148.0/22 721 -198.97.152.0/24 721 -198.97.153.0/24 5972 -198.97.154.0/23 721 -198.97.156.0/22 721 -198.97.160.0/22 721 -198.97.164.0/23 721 -198.97.166.0/24 721 -198.97.167.0/24 5972 -198.97.168.0/21 721 -198.97.176.0/22 721 -198.97.180.0/24 1526 -198.97.181.0/24 1503 -198.97.182.0/23 1503 -198.97.184.0/22 721 -198.97.188.0/24 721 -198.97.189.0/24 531 -198.97.190.0/24 1508 -198.97.191.0/24 721 -198.97.192.0/22 721 -198.97.196.0/22 1503 -198.97.200.0/24 166 -198.97.201.0/24 62965 -198.97.202.0/23 394314 -198.97.204.0/24 62884 -198.97.206.0/24 33132 -198.97.211.0/24 62993 -198.97.212.0/22 55101 -198.97.224.0/24 14035 -198.97.225.0/24 27307 -198.97.226.0/24 393310 -198.97.228.0/24 55127 -198.97.230.0/23 55127 -198.97.232.0/24 26264 -198.97.233.0/24 393369 -198.97.234.0/23 668 -198.97.236.0/24 668 -198.97.237.0/24 62726 -198.97.238.0/23 16653 -198.97.240.0/20 721 -198.98.7.0/24 19404 -198.98.8.0/22 62474 -198.98.12.0/24 62474 -198.98.13.0/24 23166 -198.98.14.0/24 30382 -198.98.15.0/24 12243 -198.98.22.0/23 23539 -198.98.24.0/21 30029 -198.98.32.0/20 18712 -198.98.48.0/20 53667 -198.98.64.0/20 27064 -198.98.80.0/22 27064 -198.98.84.0/22 19754 -198.98.88.0/21 11152 -198.98.96.0/19 18978 -198.98.180.0/22 29889 -198.98.184.0/23 393242 -198.98.192.0/18 396853 -198.99.16.0/21 8047 -198.99.24.0/23 8047 -198.99.26.0/24 54992 -198.99.28.0/22 395965 -198.99.32.0/24 25984 -198.99.40.0/24 25984 -198.99.48.0/20 7309 -198.99.65.0/24 16833 -198.99.67.0/24 29400 -198.99.68.0/24 29400 -198.99.76.0/24 20001 -198.99.80.0/22 397142 -198.99.88.0/23 54294 -198.99.90.0/24 54294 -198.99.91.0/24 54072 -198.99.92.0/24 54072 -198.99.96.0/24 11714 -198.99.100.0/23 4193 -198.99.104.0/24 22349 -198.99.107.0/24 19449 -198.99.118.0/23 6102 -198.99.120.0/23 6102 -198.99.122.0/24 6102 -198.99.123.0/24 46841 -198.99.125.0/24 3549 -198.99.128.0/23 243 -198.99.130.0/24 11590 -198.99.138.0/24 54540 -198.99.143.0/24 22473 -198.99.144.0/23 22473 -198.99.146.0/24 7029 -198.99.156.0/22 46309 -198.99.169.0/24 6527 -198.99.171.0/24 14977 -198.99.173.0/24 4058 -198.99.182.0/24 46375 -198.99.185.0/24 7046 -198.99.187.0/24 209 -198.99.188.0/24 32440 -198.99.189.0/24 21547 -198.99.190.0/24 7018 -198.99.191.0/24 2828 -198.99.193.0/24 32657 -198.99.194.0/23 33596 -198.99.196.0/24 62991 -198.99.208.0/24 18932 -198.99.209.0/24 209 -198.99.224.0/22 11408 -198.99.228.0/24 21673 -198.99.241.0/24 36046 -198.99.244.0/24 22773 -198.99.247.0/24 32982 -198.99.249.0/24 46846 -198.99.250.0/23 20234 -198.99.252.0/23 20234 -198.99.254.0/24 20234 -198.99.255.0/24 40371 -198.100.0.0/22 23339 -198.100.4.0/23 17195 -198.100.6.0/24 17195 -198.100.16.0/24 22773 -198.100.18.0/24 3356 -198.100.22.0/23 46411 -198.100.24.0/21 29998 -198.100.42.0/23 22263 -198.100.44.0/22 55293 -198.100.48.0/20 40197 -198.100.94.0/23 19771 -198.100.96.0/19 53850 -198.100.136.0/21 13692 -198.100.144.0/20 16276 -198.100.160.0/19 9009 -198.100.192.0/18 36327 -198.101.4.0/23 721 -198.101.6.0/24 721 -198.101.7.0/24 62971 -198.101.8.0/21 13886 -198.101.28.0/22 11139 -198.101.32.0/20 31871 -198.101.48.0/20 15081 -198.101.64.0/18 14265 -198.101.128.0/18 19994 -198.101.192.0/18 33070 -198.102.1.0/24 13536 -198.102.2.0/23 13536 -198.102.4.0/24 19193 -198.102.8.0/21 395111 -198.102.28.0/22 54839 -198.102.32.0/24 10411 -198.102.33.0/24 10753 -198.102.34.0/24 10411 -198.102.36.0/22 7018 -198.102.40.0/22 7018 -198.102.45.0/24 10411 -198.102.46.0/24 10411 -198.102.60.0/22 10411 -198.102.67.0/24 7834 -198.102.68.0/24 64242 -198.102.70.0/23 393376 -198.102.73.0/24 6939 -198.102.76.0/22 1444 -198.102.80.0/23 23198 -198.102.82.0/24 63011 -198.102.91.0/24 7872 -198.102.103.0/24 2152 -198.102.128.0/24 21993 -198.102.129.0/24 16983 -198.102.144.0/23 17477 -198.102.147.0/24 32867 -198.102.151.0/24 377 -198.102.152.0/22 377 -198.102.159.0/24 5078 -198.102.161.0/24 14995 -198.102.172.0/24 1256 -198.102.176.0/21 3356 -198.102.184.0/23 3356 -198.102.186.0/23 3762 -198.102.188.0/22 3762 -198.102.192.0/22 3762 -198.102.196.0/23 3762 -198.102.198.0/24 209 -198.102.199.0/24 33650 -198.102.206.0/24 393251 -198.102.213.0/24 29207 -198.102.218.0/24 26810 -198.102.219.0/24 30311 -198.102.221.0/24 852 -198.102.223.0/24 46854 -198.102.232.0/21 7018 -198.102.241.0/24 15250 -198.102.244.0/24 6939 -198.102.247.0/24 30100 -198.102.250.0/24 14995 -198.102.252.0/24 32702 -198.102.255.0/24 63032 -198.103.0.0/22 2675 -198.103.4.0/23 2675 -198.103.6.0/24 2665 -198.103.7.0/24 2675 -198.103.8.0/23 2675 -198.103.10.0/23 2665 -198.103.12.0/24 2665 -198.103.13.0/24 2675 -198.103.14.0/24 2675 -198.103.15.0/24 2665 -198.103.16.0/23 2675 -198.103.18.0/24 2665 -198.103.19.0/24 2675 -198.103.20.0/24 2675 -198.103.21.0/24 2665 -198.103.22.0/23 2675 -198.103.24.0/21 2675 -198.103.32.0/23 2665 -198.103.34.0/24 2665 -198.103.35.0/24 2675 -198.103.36.0/23 2675 -198.103.38.0/24 2665 -198.103.39.0/24 2675 -198.103.40.0/23 2665 -198.103.42.0/23 2675 -198.103.44.0/24 2675 -198.103.45.0/24 2665 -198.103.46.0/24 2675 -198.103.47.0/24 2665 -198.103.48.0/24 2665 -198.103.49.0/24 2675 -198.103.50.0/23 2675 -198.103.52.0/22 2665 -198.103.56.0/24 2653 -198.103.57.0/24 2665 -198.103.58.0/24 2665 -198.103.59.0/24 2675 -198.103.60.0/24 2675 -198.103.61.0/24 2665 -198.103.62.0/23 2675 -198.103.64.0/22 2675 -198.103.68.0/24 2675 -198.103.69.0/24 2665 -198.103.70.0/23 2675 -198.103.72.0/21 2675 -198.103.80.0/21 2675 -198.103.88.0/24 2675 -198.103.89.0/24 2653 -198.103.90.0/23 2675 -198.103.92.0/22 2665 -198.103.96.0/22 2665 -198.103.100.0/23 2675 -198.103.102.0/24 2675 -198.103.103.0/24 2665 -198.103.104.0/24 2665 -198.103.105.0/24 2675 -198.103.106.0/23 2675 -198.103.108.0/23 2665 -198.103.110.0/24 2675 -198.103.111.0/24 2665 -198.103.112.0/23 2665 -198.103.114.0/24 2665 -198.103.115.0/24 2675 -198.103.116.0/22 2675 -198.103.120.0/21 2675 -198.103.128.0/22 2675 -198.103.132.0/23 2675 -198.103.134.0/24 2653 -198.103.135.0/24 2675 -198.103.136.0/24 2675 -198.103.137.0/24 2665 -198.103.138.0/24 2665 -198.103.139.0/24 2675 -198.103.140.0/24 2653 -198.103.141.0/24 2675 -198.103.142.0/24 2675 -198.103.143.0/24 2665 -198.103.144.0/24 2675 -198.103.145.0/24 2665 -198.103.146.0/23 2665 -198.103.148.0/24 2665 -198.103.149.0/24 2675 -198.103.150.0/23 2675 -198.103.152.0/23 2665 -198.103.154.0/23 2675 -198.103.156.0/23 2675 -198.103.158.0/24 2675 -198.103.159.0/24 2665 -198.103.160.0/24 2675 -198.103.161.0/24 2665 -198.103.162.0/24 2653 -198.103.163.0/24 2675 -198.103.164.0/23 2675 -198.103.166.0/24 2675 -198.103.167.0/24 2665 -198.103.168.0/24 2675 -198.103.169.0/24 2665 -198.103.170.0/23 2675 -198.103.172.0/24 2665 -198.103.173.0/24 2675 -198.103.174.0/24 2665 -198.103.175.0/24 2675 -198.103.176.0/24 2665 -198.103.177.0/24 2675 -198.103.178.0/23 2675 -198.103.180.0/24 2665 -198.103.181.0/24 2675 -198.103.182.0/23 2665 -198.103.184.0/24 2675 -198.103.185.0/24 2665 -198.103.186.0/23 2675 -198.103.188.0/22 2675 -198.103.192.0/24 2675 -198.103.193.0/24 2665 -198.103.194.0/24 2665 -198.103.195.0/24 11079 -198.103.196.0/24 2665 -198.103.197.0/24 2675 -198.103.198.0/24 2665 -198.103.199.0/24 2675 -198.103.200.0/22 2675 -198.103.204.0/24 2675 -198.103.205.0/24 2665 -198.103.206.0/24 2665 -198.103.207.0/24 2675 -198.103.208.0/24 2665 -198.103.209.0/24 2675 -198.103.210.0/24 2675 -198.103.211.0/24 2665 -198.103.212.0/24 2675 -198.103.213.0/24 2653 -198.103.214.0/23 2675 -198.103.216.0/24 2675 -198.103.217.0/24 2665 -198.103.218.0/24 2665 -198.103.219.0/24 2675 -198.103.220.0/24 2675 -198.103.221.0/24 2653 -198.103.222.0/24 2675 -198.103.223.0/24 2665 -198.103.224.0/21 2675 -198.103.232.0/23 2675 -198.103.234.0/24 2665 -198.103.235.0/24 2653 -198.103.236.0/24 2675 -198.103.237.0/24 2665 -198.103.238.0/24 2665 -198.103.239.0/24 2675 -198.103.240.0/22 2675 -198.103.244.0/23 2665 -198.103.246.0/24 2675 -198.103.247.0/24 2665 -198.103.248.0/24 2675 -198.103.249.0/24 2665 -198.103.250.0/23 2675 -198.103.252.0/23 2675 -198.103.254.0/24 2653 -198.103.255.0/24 2675 -198.104.0.0/16 2914 -198.105.2.0/23 18639 -198.105.7.0/24 62995 -198.105.8.0/22 395474 -198.105.12.0/24 395474 -198.105.13.0/24 62992 -198.105.14.0/24 13978 -198.105.16.0/21 243 -198.105.24.0/23 243 -198.105.26.0/24 40657 -198.105.27.0/24 394619 -198.105.28.0/22 15121 -198.105.32.0/24 23484 -198.105.34.0/24 23484 -198.105.36.0/23 23484 -198.105.41.0/24 23484 -198.105.42.0/23 23484 -198.105.44.0/22 23484 -198.105.48.0/20 54711 -198.105.64.0/21 19236 -198.105.72.0/24 19236 -198.105.73.0/24 47833 -198.105.74.0/23 19236 -198.105.76.0/22 19236 -198.105.80.0/20 23089 -198.105.96.0/22 43350 -198.105.100.0/22 58305 -198.105.104.0/22 43350 -198.105.110.0/23 43350 -198.105.112.0/23 43350 -198.105.124.0/24 58305 -198.105.128.0/20 4193 -198.105.158.0/23 7455 -198.105.160.0/19 11282 -198.105.196.0/24 8137 -198.105.200.0/21 36776 -198.105.208.0/21 29854 -198.105.216.0/22 29854 -198.105.220.0/24 29854 -198.105.221.0/24 36351 -198.105.222.0/23 36351 -198.105.224.0/21 54869 -198.105.232.0/22 3598 -198.105.236.0/22 32508 -198.105.240.0/21 36029 -198.105.248.0/23 36029 -198.105.250.0/24 13768 -198.105.251.0/24 36029 -198.105.252.0/22 36029 -198.106.0.0/15 2914 -198.108.0.0/21 237 -198.108.8.0/21 36375 -198.108.16.0/20 237 -198.108.32.0/19 237 -198.108.64.0/18 237 -198.108.128.0/21 237 -198.108.136.0/22 237 -198.108.140.0/23 40044 -198.108.142.0/23 237 -198.108.144.0/20 237 -198.108.160.0/19 237 -198.108.192.0/18 237 -198.109.0.0/16 237 -198.110.0.0/15 237 -198.112.0.0/15 3356 -198.114.0.0/17 3356 -198.114.128.0/19 3356 -198.114.160.0/21 3356 -198.114.168.0/22 3356 -198.114.172.0/23 3356 -198.114.174.0/24 19563 -198.114.175.0/24 3356 -198.114.176.0/20 3356 -198.114.192.0/18 3356 -198.115.0.0/18 3356 -198.115.64.0/20 3356 -198.115.80.0/22 11207 -198.115.84.0/23 11207 -198.115.86.0/23 3356 -198.115.88.0/21 3356 -198.115.96.0/19 3356 -198.115.128.0/19 3356 -198.115.160.0/21 3356 -198.115.168.0/23 3356 -198.115.170.0/24 54367 -198.115.171.0/24 3356 -198.115.172.0/22 3356 -198.115.176.0/20 3356 -198.115.192.0/18 3356 -198.116.0.0/15 297 -198.118.0.0/17 297 -198.118.128.0/18 297 -198.118.192.0/21 1848 -198.118.200.0/23 1848 -198.118.202.0/23 297 -198.118.204.0/22 297 -198.118.208.0/20 297 -198.118.224.0/24 1848 -198.118.225.0/24 297 -198.118.226.0/23 297 -198.118.228.0/24 297 -198.118.229.0/24 1848 -198.118.230.0/23 297 -198.118.232.0/24 297 -198.118.233.0/24 1848 -198.118.234.0/23 1848 -198.118.236.0/23 1848 -198.118.238.0/23 297 -198.118.240.0/22 1848 -198.118.244.0/22 297 -198.118.248.0/22 297 -198.118.252.0/23 297 -198.118.254.0/23 1848 -198.119.0.0/16 297 -198.120.0.0/14 297 -198.124.0.0/14 291 -198.128.0.0/14 292 -198.132.2.0/23 132451 -198.132.5.0/24 132095 -198.132.147.0/24 26983 -198.132.193.0/24 5714 -198.133.0.0/21 7046 -198.133.8.0/23 23391 -198.133.10.0/23 32448 -198.133.12.0/22 32448 -198.133.16.0/23 7018 -198.133.18.0/24 7018 -198.133.19.0/24 2685 -198.133.20.0/22 7018 -198.133.24.0/21 7018 -198.133.32.0/24 22964 -198.133.33.0/24 701 -198.133.34.0/24 22964 -198.133.35.0/24 701 -198.133.36.0/24 701 -198.133.37.0/24 813 -198.133.38.0/23 701 -198.133.40.0/21 701 -198.133.48.0/20 701 -198.133.74.0/24 7018 -198.133.75.0/24 26323 -198.133.77.0/24 46115 -198.133.79.0/24 6181 -198.133.87.0/24 3549 -198.133.128.0/23 27439 -198.133.139.0/24 25984 -198.133.143.0/24 62920 -198.133.148.0/24 7385 -198.133.150.0/24 22891 -198.133.156.0/24 188 -198.133.157.0/24 19360 -198.133.158.0/23 2914 -198.133.161.0/24 11045 -198.133.167.0/24 11847 -198.133.170.0/24 21976 -198.133.171.0/24 62570 -198.133.173.0/24 11332 -198.133.174.0/24 15024 -198.133.178.0/23 4869 -198.133.180.0/22 4869 -198.133.187.0/24 36600 -198.133.188.0/23 36600 -198.133.192.0/24 7018 -198.133.199.0/24 397213 -198.133.201.0/24 19773 -198.133.204.0/24 21708 -198.133.206.0/24 203274 -198.133.214.0/23 32190 -198.133.219.0/24 109 -198.133.220.0/24 26113 -198.133.224.0/23 59 -198.133.234.0/23 1982 -198.133.238.0/24 22559 -198.133.241.0/24 166 -198.133.242.0/24 26431 -198.133.244.0/23 11714 -198.133.246.0/24 11714 -198.133.248.0/24 54482 -198.133.255.0/24 22643 -198.134.2.0/23 19738 -198.134.4.0/24 19738 -198.134.5.0/24 393324 -198.134.6.0/23 63063 -198.134.8.0/22 397367 -198.134.12.0/23 397367 -198.134.14.0/23 36500 -198.134.28.0/22 30500 -198.134.48.0/24 7014 -198.134.51.0/24 7014 -198.134.52.0/24 7014 -198.134.54.0/23 132055 -198.134.56.0/24 132055 -198.134.64.0/23 32027 -198.134.69.0/24 32027 -198.134.84.0/24 32027 -198.134.96.0/21 32027 -198.134.104.0/21 11990 -198.134.112.0/22 27257 -198.134.116.0/24 27257 -198.134.117.0/24 20264 -198.134.118.0/23 27257 -198.134.120.0/23 27257 -198.134.122.0/24 27257 -198.134.123.0/24 20264 -198.134.124.0/22 20264 -198.134.135.0/24 7377 -198.134.138.0/24 393238 -198.134.142.0/24 394453 -198.134.143.0/24 13536 -198.134.145.0/24 53811 -198.134.152.0/24 30415 -198.134.153.0/24 22742 -198.134.154.0/23 22742 -198.134.156.0/23 22742 -198.134.158.0/23 6062 -198.134.208.0/24 393348 -198.134.212.0/24 26827 -198.134.255.0/24 63054 -198.135.0.0/21 109 -198.135.28.0/22 30595 -198.135.47.0/24 393352 -198.135.74.0/24 54156 -198.135.78.0/24 6181 -198.135.80.0/24 32887 -198.135.116.0/23 22652 -198.135.118.0/23 46892 -198.135.121.0/24 4193 -198.135.129.0/24 13715 -198.135.131.0/24 36341 -198.135.140.0/24 32595 -198.135.142.0/23 62642 -198.135.144.0/21 26269 -198.135.188.0/22 15085 -198.135.192.0/24 11115 -198.135.193.0/24 13649 -198.135.196.0/24 46424 -198.135.199.0/24 11493 -198.135.201.0/24 30070 -198.135.202.0/24 46391 -198.135.203.0/24 31937 -198.135.204.0/24 32440 -198.135.207.0/24 18816 -198.135.208.0/24 18816 -198.135.210.0/24 33090 -198.135.212.0/24 2386 -198.135.216.0/24 6058 -198.135.221.0/24 23196 -198.135.222.0/24 29809 -198.135.224.0/24 2642 -198.135.226.0/24 26159 -198.135.229.0/24 40588 -198.135.233.0/24 17341 -198.135.234.0/24 33650 -198.135.235.0/24 396028 -198.135.236.0/24 25948 -198.135.245.0/24 26261 -198.135.249.0/24 55082 -198.135.255.0/24 30424 -198.136.8.0/21 122 -198.136.24.0/21 53850 -198.136.32.0/21 19329 -198.136.40.0/23 19329 -198.136.42.0/23 55143 -198.136.44.0/22 11807 -198.136.48.0/20 33182 -198.136.64.0/18 7046 -198.136.130.0/24 32440 -198.136.134.0/24 26649 -198.136.143.0/24 21938 -198.136.146.0/24 30626 -198.136.149.0/24 7381 -198.136.150.0/24 11652 -198.136.153.0/24 32228 -198.136.154.0/24 33465 -198.136.155.0/24 53698 -198.136.156.0/24 3549 -198.136.160.0/23 3356 -198.136.162.0/23 53722 -198.136.164.0/24 53722 -198.136.165.0/24 14618 -198.136.166.0/24 394437 -198.136.167.0/24 3561 -198.136.170.0/24 6181 -198.136.175.0/24 5691 -198.136.182.0/24 3549 -198.136.184.0/24 17223 -198.136.190.0/24 33363 -198.136.201.0/24 26159 -198.136.211.0/24 18712 -198.136.212.0/24 11610 -198.136.217.0/24 10753 -198.136.220.0/24 30066 -198.136.223.0/24 5026 -198.136.226.0/24 10823 -198.136.229.0/24 5650 -198.136.232.0/24 701 -198.136.233.0/24 10823 -198.136.234.0/24 19473 -198.136.238.0/24 53275 -198.136.250.0/24 62 -198.136.255.0/24 54235 -198.137.16.0/20 36441 -198.137.62.0/23 6318 -198.137.70.0/24 10264 -198.137.75.0/24 3300 -198.137.142.0/24 40824 -198.137.145.0/24 209 -198.137.146.0/24 30068 -198.137.147.0/24 2152 -198.137.148.0/23 3356 -198.137.151.0/24 2152 -198.137.152.0/23 2152 -198.137.154.0/24 14810 -198.137.161.0/24 11776 -198.137.167.0/24 32440 -198.137.184.0/23 14625 -198.137.189.0/24 4373 -198.137.190.0/23 4373 -198.137.194.0/24 16668 -198.137.201.0/24 31831 -198.137.202.0/24 7247 -198.137.214.0/23 3585 -198.137.224.0/24 5783 -198.137.225.0/24 15359 -198.137.226.0/24 15359 -198.137.227.0/24 17158 -198.137.231.0/24 1982 -198.137.232.0/23 62918 -198.137.234.0/23 3555 -198.137.238.0/24 62483 -198.137.240.0/24 4185 -198.137.246.0/23 63266 -198.137.248.0/24 32852 -198.137.252.0/23 7922 -198.137.254.0/24 13352 -198.138.0.0/19 2914 -198.138.32.0/21 2914 -198.138.40.0/23 53577 -198.138.42.0/23 2914 -198.138.44.0/22 2914 -198.138.48.0/24 174 -198.138.49.0/24 2914 -198.138.50.0/23 2914 -198.138.52.0/22 2914 -198.138.56.0/21 2914 -198.138.64.0/22 2914 -198.138.68.0/23 18973 -198.138.70.0/23 2914 -198.138.72.0/21 2914 -198.138.80.0/20 2914 -198.138.96.0/19 2914 -198.138.128.0/22 2914 -198.138.132.0/22 53577 -198.138.136.0/21 2914 -198.138.144.0/20 2914 -198.138.160.0/19 2914 -198.138.192.0/21 2914 -198.138.200.0/22 2914 -198.138.204.0/23 2914 -198.138.206.0/24 2914 -198.138.207.0/24 18794 -198.138.208.0/23 18794 -198.138.210.0/24 18794 -198.138.211.0/24 2914 -198.138.212.0/22 2914 -198.138.216.0/21 2914 -198.138.224.0/19 2914 -198.139.0.0/16 2914 -198.140.0.0/22 7726 -198.140.4.0/23 7726 -198.140.6.0/23 27480 -198.140.26.0/23 36119 -198.140.28.0/22 55122 -198.140.32.0/24 393226 -198.140.62.0/23 393226 -198.140.114.0/23 53249 -198.140.116.0/22 55121 -198.140.128.0/24 54056 -198.140.134.0/24 21548 -198.140.135.0/24 21938 -198.140.147.0/24 2828 -198.140.152.0/24 30421 -198.140.154.0/23 36136 -198.140.156.0/24 62464 -198.140.164.0/24 23331 -198.140.170.0/24 209 -198.140.178.0/24 22001 -198.140.180.0/24 22001 -198.140.181.0/24 11438 -198.140.182.0/24 33651 -198.140.183.0/24 36011 -198.140.184.0/24 36011 -198.140.189.0/24 27632 -198.140.195.0/24 36373 -198.140.197.0/24 36092 -198.140.198.0/23 36092 -198.140.202.0/23 36145 -198.140.204.0/24 36145 -198.140.210.0/24 55237 -198.140.211.0/24 393351 -198.140.213.0/24 7800 -198.140.216.0/24 54043 -198.140.218.0/24 5647 -198.140.222.0/24 19693 -198.140.227.0/24 3549 -198.140.228.0/24 46119 -198.140.239.0/24 32481 -198.140.240.0/24 32481 -198.140.242.0/24 62510 -198.140.255.0/24 29745 -198.141.4.0/23 2571 -198.141.6.0/24 19905 -198.141.7.0/24 2571 -198.141.8.0/22 2571 -198.141.94.0/23 2571 -198.141.96.0/21 2571 -198.141.244.0/23 19905 -198.142.0.0/16 4804 -198.143.0.0/21 54301 -198.143.8.0/24 54301 -198.143.9.0/24 36352 -198.143.10.0/24 54301 -198.143.11.0/24 18990 -198.143.12.0/24 36352 -198.143.13.0/24 54301 -198.143.14.0/24 20077 -198.143.15.0/24 54301 -198.143.16.0/20 54301 -198.143.32.0/22 19551 -198.143.36.0/24 62571 -198.143.37.0/24 19551 -198.143.38.0/23 19551 -198.143.41.0/24 19551 -198.143.43.0/24 19551 -198.143.44.0/22 19551 -198.143.48.0/20 19551 -198.143.64.0/19 7350 -198.143.96.0/19 54290 -198.143.128.0/18 32475 -198.143.192.0/18 7029 -198.144.0.0/20 12042 -198.144.16.0/20 36351 -198.144.32.0/20 19261 -198.144.48.0/20 30035 -198.144.68.0/24 4208 -198.144.80.0/20 26339 -198.144.96.0/22 3257 -198.144.100.0/24 3257 -198.144.101.0/24 46887 -198.144.102.0/23 3257 -198.144.104.0/22 3257 -198.144.108.0/22 13739 -198.144.112.0/21 3257 -198.144.120.0/23 206264 -198.144.122.0/23 3257 -198.144.124.0/24 3257 -198.144.125.0/24 36589 -198.144.126.0/24 54829 -198.144.127.0/24 3257 -198.144.128.0/20 55900 -198.144.144.0/24 7040 -198.144.145.0/24 22923 -198.144.146.0/24 22923 -198.144.147.0/24 7040 -198.144.148.0/24 13851 -198.144.149.0/24 7040 -198.144.150.0/24 23498 -198.144.151.0/24 7040 -198.144.152.0/23 22923 -198.144.154.0/24 22923 -198.144.155.0/24 7040 -198.144.156.0/23 7040 -198.144.158.0/24 22923 -198.144.159.0/24 7040 -198.144.160.0/20 2527 -198.144.176.0/20 36352 -198.144.192.0/19 7961 -198.144.224.0/20 5702 -198.144.240.0/20 20248 -198.145.0.0/17 2044 -198.145.128.0/18 2044 -198.145.192.0/22 2044 -198.145.196.0/23 2044 -198.145.198.0/24 2044 -198.145.199.0/24 53752 -198.145.200.0/21 2044 -198.145.208.0/20 2044 -198.145.224.0/19 2044 -198.146.0.0/16 19956 -198.147.0.0/21 2631 -198.147.8.0/23 2631 -198.147.14.0/23 2631 -198.147.16.0/23 2631 -198.147.19.0/24 2631 -198.147.20.0/22 46562 -198.147.24.0/21 55081 -198.147.32.0/24 16464 -198.147.34.0/24 16464 -198.147.37.0/24 1294 -198.147.41.0/24 1294 -198.147.44.0/22 1294 -198.147.48.0/24 36351 -198.147.64.0/23 226 -198.147.66.0/24 226 -198.147.67.0/24 16573 -198.147.68.0/22 226 -198.147.72.0/23 226 -198.147.74.0/24 226 -198.147.75.0/24 5726 -198.147.76.0/24 3832 -198.147.77.0/24 226 -198.147.78.0/23 226 -198.147.80.0/24 226 -198.147.81.0/24 3832 -198.147.82.0/23 226 -198.147.84.0/22 226 -198.147.88.0/23 226 -198.147.90.0/24 226 -198.147.91.0/24 3832 -198.147.92.0/22 226 -198.147.96.0/20 226 -198.147.112.0/22 226 -198.147.116.0/24 226 -198.147.117.0/24 3832 -198.147.118.0/23 127 -198.147.120.0/21 226 -198.147.135.0/24 7029 -198.147.136.0/24 35931 -198.147.138.0/23 36450 -198.147.146.0/24 393267 -198.147.147.0/24 394477 -198.147.152.0/24 302 -198.147.156.0/24 63050 -198.147.160.0/24 4410 -198.147.161.0/24 11398 -198.147.162.0/24 15309 -198.147.168.0/23 54877 -198.147.175.0/24 20466 -198.147.176.0/24 25810 -198.147.191.0/24 40817 -198.147.192.0/24 46097 -198.147.194.0/23 394328 -198.147.197.0/24 11610 -198.147.198.0/24 54772 -198.147.202.0/24 63038 -198.147.206.0/23 35855 -198.147.208.0/22 22557 -198.147.212.0/23 11235 -198.147.219.0/24 393350 -198.147.221.0/24 4358 -198.147.226.0/24 15248 -198.147.243.0/24 19099 -198.147.245.0/24 19099 -198.147.246.0/24 46846 -198.147.247.0/24 46865 -198.147.255.0/24 55156 -198.148.6.0/23 55243 -198.148.15.0/24 7415 -198.148.20.0/24 3549 -198.148.24.0/23 19849 -198.148.26.0/23 19189 -198.148.28.0/22 21725 -198.148.32.0/20 6603 -198.148.48.0/20 7309 -198.148.64.0/21 7018 -198.148.72.0/22 7018 -198.148.76.0/24 7018 -198.148.77.0/24 39971 -198.148.78.0/23 55219 -198.148.80.0/20 46844 -198.148.96.0/19 35916 -198.148.129.0/24 14566 -198.148.149.0/24 53368 -198.148.151.0/24 3832 -198.148.152.0/23 55209 -198.148.155.0/24 18867 -198.148.166.0/24 18920 -198.148.169.0/24 27607 -198.148.170.0/23 54778 -198.148.173.0/24 31754 -198.148.174.0/24 62840 -198.148.180.0/24 19997 -198.148.189.0/24 133873 -198.148.192.0/22 55303 -198.148.196.0/23 133873 -198.148.204.0/24 7016 -198.148.205.0/24 3257 -198.148.206.0/24 26159 -198.148.207.0/24 394216 -198.148.210.0/24 16826 -198.148.217.0/24 557 -198.148.227.0/24 36259 -198.148.240.0/24 36092 -198.148.241.0/24 398145 -198.148.242.0/23 36092 -198.148.244.0/22 36092 -198.148.248.0/24 36092 -198.148.250.0/24 36092 -198.148.255.0/24 62780 -198.150.0.0/20 2381 -198.150.16.0/22 2381 -198.150.20.0/23 2381 -198.150.22.0/23 395963 -198.150.24.0/23 395963 -198.150.26.0/23 2381 -198.150.28.0/22 2381 -198.150.32.0/21 2381 -198.150.40.0/22 2381 -198.150.44.0/24 53355 -198.150.45.0/24 2381 -198.150.46.0/23 2381 -198.150.48.0/20 2381 -198.150.64.0/20 2381 -198.150.80.0/21 2381 -198.150.88.0/22 2381 -198.150.92.0/24 2381 -198.150.93.0/24 14192 -198.150.94.0/23 14192 -198.150.96.0/23 2381 -198.150.98.0/24 394316 -198.150.99.0/24 2381 -198.150.100.0/22 2381 -198.150.104.0/22 2381 -198.150.108.0/24 2381 -198.150.109.0/24 3136 -198.150.110.0/24 3136 -198.150.111.0/24 2381 -198.150.112.0/20 2381 -198.150.128.0/19 2381 -198.150.160.0/21 2381 -198.150.168.0/22 2381 -198.150.172.0/24 395963 -198.150.173.0/24 2381 -198.150.174.0/23 2381 -198.150.176.0/21 2381 -198.150.184.0/22 2381 -198.150.188.0/23 395963 -198.150.190.0/23 2381 -198.150.192.0/19 2381 -198.150.224.0/21 2381 -198.150.232.0/23 2381 -198.150.234.0/24 53355 -198.150.235.0/24 3136 -198.150.236.0/22 2381 -198.150.240.0/20 2381 -198.151.8.0/21 188 -198.151.32.0/24 19631 -198.151.34.0/24 30239 -198.151.39.0/24 54053 -198.151.41.0/24 20029 -198.151.42.0/24 54053 -198.151.46.0/23 20029 -198.151.50.0/24 19631 -198.151.53.0/24 397089 -198.151.56.0/23 19631 -198.151.128.0/24 6062 -198.151.130.0/24 46 -198.151.137.0/24 393308 -198.151.144.0/24 62859 -198.151.161.0/24 3549 -198.151.179.0/24 53575 -198.151.180.0/24 53575 -198.151.187.0/24 22810 -198.151.199.0/24 46887 -198.151.200.0/22 46887 -198.151.206.0/24 393306 -198.151.212.0/24 1706 -198.151.216.0/24 394059 -198.151.217.0/24 22671 -198.151.218.0/24 22671 -198.151.224.0/23 1341 -198.151.226.0/24 1341 -198.151.235.0/24 39966 -198.151.236.0/23 39966 -198.151.247.0/24 26817 -198.151.248.0/24 8146 -198.151.249.0/24 32354 -198.151.251.0/24 3561 -198.151.252.0/24 62675 -198.151.255.0/24 55265 -198.152.0.0/17 18676 -198.152.128.0/18 18676 -198.152.192.0/21 18676 -198.152.200.0/23 18676 -198.152.202.0/24 6904 -198.152.203.0/24 18676 -198.152.204.0/22 18676 -198.152.208.0/20 18676 -198.152.224.0/19 18676 -198.153.8.0/21 21573 -198.153.16.0/21 174 -198.153.24.0/23 174 -198.153.26.0/24 174 -198.153.58.0/23 36424 -198.153.60.0/22 13427 -198.153.67.0/24 22089 -198.153.68.0/24 22773 -198.153.69.0/24 209 -198.153.70.0/24 174 -198.153.72.0/24 701 -198.153.73.0/24 22089 -198.153.74.0/23 55295 -198.153.76.0/22 55022 -198.153.80.0/20 62943 -198.153.96.0/19 5056 -198.153.128.0/24 36092 -198.153.129.0/24 3549 -198.153.131.0/24 7018 -198.153.132.0/24 395804 -198.153.143.0/24 12153 -198.153.145.0/24 19997 -198.153.148.0/24 33299 -198.153.152.0/24 2900 -198.153.153.0/24 30643 -198.153.154.0/23 30643 -198.153.156.0/23 25885 -198.153.158.0/24 30643 -198.153.160.0/22 15111 -198.153.169.0/24 3354 -198.153.170.0/23 36092 -198.153.172.0/22 36092 -198.153.176.0/21 36092 -198.153.184.0/22 25647 -198.153.188.0/24 55221 -198.153.189.0/24 19866 -198.153.192.0/24 397215 -198.153.194.0/24 397213 -198.153.196.0/24 35289 -198.153.201.0/24 36416 -198.153.202.0/24 3356 -198.153.205.0/24 3914 -198.153.219.0/24 7018 -198.153.223.0/24 25936 -198.153.224.0/24 13499 -198.153.225.0/24 3356 -198.153.231.0/24 7018 -198.153.238.0/23 393906 -198.153.240.0/23 393906 -198.153.242.0/23 5702 -198.153.244.0/23 5702 -198.153.253.0/24 26159 -198.154.7.0/24 32586 -198.154.8.0/21 385 -198.154.16.0/21 668 -198.154.24.0/23 668 -198.154.26.0/23 46739 -198.154.31.0/24 55124 -198.154.60.0/23 14043 -198.154.64.0/23 1904 -198.154.66.0/24 1904 -198.154.67.0/24 721 -198.154.68.0/23 1904 -198.154.70.0/24 721 -198.154.71.0/24 1904 -198.154.72.0/23 1904 -198.154.74.0/24 1904 -198.154.75.0/24 721 -198.154.79.0/24 7975 -198.154.80.0/21 55286 -198.154.88.0/22 55286 -198.154.92.0/24 36352 -198.154.93.0/24 55286 -198.154.94.0/24 36352 -198.154.95.0/24 55286 -198.154.96.0/19 13354 -198.154.160.0/21 721 -198.154.168.0/22 721 -198.154.172.0/24 721 -198.154.173.0/24 668 -198.154.174.0/23 668 -198.154.178.0/23 18550 -198.154.180.0/22 54046 -198.154.184.0/21 22652 -198.154.192.0/18 46606 -198.155.0.0/16 7246 -198.159.128.0/17 3369 -198.160.5.0/24 46451 -198.160.6.0/23 11782 -198.160.9.0/24 3356 -198.160.12.0/24 3356 -198.160.14.0/24 8037 -198.160.15.0/24 46887 -198.160.29.0/24 46746 -198.160.30.0/23 46746 -198.160.34.0/23 21504 -198.160.38.0/23 21504 -198.160.40.0/23 21504 -198.160.42.0/24 21504 -198.160.44.0/23 21504 -198.160.54.0/23 21504 -198.160.56.0/23 21504 -198.160.58.0/23 18961 -198.160.60.0/24 27475 -198.160.61.0/24 22147 -198.160.62.0/23 27552 -198.160.64.0/22 19229 -198.160.70.0/24 19229 -198.160.77.0/24 19229 -198.160.80.0/20 19229 -198.160.96.0/20 15026 -198.160.112.0/21 15026 -198.160.124.0/24 19430 -198.160.127.0/24 15026 -198.160.128.0/24 3620 -198.160.134.0/23 30606 -198.160.136.0/24 30606 -198.160.139.0/24 10796 -198.160.147.0/24 4867 -198.160.148.0/23 16760 -198.160.150.0/24 16760 -198.160.157.0/24 209 -198.160.161.0/24 30449 -198.160.171.0/24 33246 -198.160.173.0/24 26980 -198.160.190.0/24 22001 -198.160.191.0/24 16569 -198.160.192.0/24 7018 -198.160.193.0/24 26854 -198.160.194.0/24 7018 -198.160.197.0/24 393359 -198.160.202.0/24 16868 -198.160.208.0/23 13516 -198.160.211.0/24 27383 -198.160.217.0/24 62848 -198.160.242.0/23 13491 -198.160.244.0/24 27186 -198.160.245.0/24 31761 -198.160.248.0/24 20339 -198.160.249.0/24 40742 -198.160.250.0/24 209 -198.160.252.0/24 11090 -198.160.253.0/24 11272 -198.161.0.0/24 55228 -198.161.2.0/23 16623 -198.161.4.0/24 16623 -198.161.6.0/24 393952 -198.161.8.0/22 36534 -198.161.12.0/23 16623 -198.161.18.0/23 852 -198.161.21.0/24 19662 -198.161.22.0/24 30500 -198.161.24.0/22 33594 -198.161.28.0/22 27275 -198.161.32.0/19 14426 -198.161.64.0/20 14875 -198.161.81.0/24 393952 -198.161.82.0/24 6327 -198.161.84.0/23 6171 -198.161.86.0/24 25925 -198.161.87.0/24 36399 -198.161.88.0/23 852 -198.161.90.0/23 18750 -198.161.92.0/24 22773 -198.161.93.0/24 6539 -198.161.94.0/24 6539 -198.161.96.0/21 6171 -198.161.104.0/22 6171 -198.161.108.0/23 6171 -198.161.110.0/24 6171 -198.161.116.0/23 852 -198.161.119.0/24 26871 -198.161.120.0/23 15296 -198.161.126.0/24 22684 -198.161.127.0/24 33091 -198.161.132.0/22 1435 -198.161.136.0/21 46811 -198.161.144.0/22 21817 -198.161.148.0/22 852 -198.161.156.0/23 852 -198.161.166.0/23 55024 -198.161.168.0/24 32034 -198.161.172.0/22 14817 -198.161.176.0/22 14817 -198.161.182.0/23 812 -198.161.200.0/24 54977 -198.161.201.0/24 395444 -198.161.202.0/24 40532 -198.161.203.0/24 27623 -198.161.205.0/24 26546 -198.161.206.0/24 13911 -198.161.208.0/22 23229 -198.161.212.0/23 15296 -198.161.214.0/23 852 -198.161.218.0/24 3359 -198.161.220.0/24 6327 -198.161.222.0/23 852 -198.161.227.0/24 2685 -198.161.228.0/23 852 -198.161.230.0/24 36534 -198.161.231.0/24 16623 -198.161.232.0/24 6327 -198.161.234.0/23 852 -198.161.237.0/24 55240 -198.161.238.0/24 19351 -198.161.243.0/24 33091 -198.161.246.0/24 200946 -198.161.247.0/24 12257 -198.161.248.0/24 577 -198.161.250.0/23 6171 -198.161.254.0/24 852 -198.161.255.0/24 31949 -198.162.0.0/24 394251 -198.162.1.0/24 395991 -198.162.3.0/24 852 -198.162.5.0/24 852 -198.162.9.0/24 6539 -198.162.12.0/24 53532 -198.162.13.0/24 23181 -198.162.16.0/22 19662 -198.162.20.0/22 271 -198.162.28.0/22 3602 -198.162.32.0/19 393249 -198.162.67.0/24 393249 -198.162.68.0/23 852 -198.162.71.0/24 852 -198.162.77.0/24 17377 -198.162.78.0/23 17377 -198.162.82.0/23 17377 -198.162.87.0/24 6327 -198.162.92.0/23 55069 -198.162.96.0/20 271 -198.162.112.0/21 271 -198.162.124.0/23 30715 -198.162.126.0/24 30715 -198.162.133.0/24 852 -198.162.156.0/23 397070 -198.162.158.0/24 27272 -198.162.160.0/19 852 -198.162.192.0/20 46231 -198.162.208.0/21 30715 -198.162.216.0/22 30715 -198.162.220.0/24 30715 -198.162.221.0/24 852 -198.162.222.0/24 27272 -198.162.223.0/24 30715 -198.162.225.0/24 54957 -198.162.226.0/23 393242 -198.162.228.0/23 393242 -198.162.234.0/23 30715 -198.162.255.0/24 26189 -198.163.3.0/24 16796 -198.163.6.0/23 16796 -198.163.8.0/24 7122 -198.163.9.0/24 684 -198.163.10.0/23 684 -198.163.12.0/22 684 -198.163.32.0/21 7782 -198.163.40.0/21 53443 -198.163.48.0/20 53443 -198.163.64.0/22 53443 -198.163.68.0/23 53443 -198.163.74.0/24 19518 -198.163.75.0/24 26370 -198.163.92.0/24 14290 -198.163.95.0/24 13931 -198.163.118.0/23 18534 -198.163.125.0/24 16796 -198.163.127.0/24 16796 -198.163.128.0/23 684 -198.163.136.0/24 577 -198.163.144.0/21 10965 -198.163.152.0/24 16796 -198.163.154.0/23 54949 -198.163.157.0/24 11262 -198.163.158.0/23 16796 -198.163.167.0/24 7122 -198.163.176.0/24 33746 -198.163.177.0/24 15290 -198.163.178.0/24 64204 -198.163.179.0/24 16796 -198.163.180.0/24 812 -198.163.181.0/24 46135 -198.163.182.0/23 55089 -198.163.184.0/21 7029 -198.163.192.0/20 7029 -198.163.208.0/24 19041 -198.163.212.0/23 16796 -198.163.221.0/24 394522 -198.163.222.0/23 394522 -198.163.227.0/24 16543 -198.163.228.0/23 10286 -198.163.232.0/22 7122 -198.163.237.0/24 54655 -198.163.239.0/24 54655 -198.163.255.0/24 46716 -198.164.0.0/23 855 -198.164.2.0/24 855 -198.164.3.0/24 2665 -198.164.4.0/22 855 -198.164.8.0/23 855 -198.164.10.0/24 395431 -198.164.11.0/24 855 -198.164.12.0/22 855 -198.164.16.0/21 855 -198.164.24.0/22 855 -198.164.28.0/24 855 -198.164.29.0/24 611 -198.164.30.0/23 855 -198.164.32.0/23 3367 -198.164.34.0/24 855 -198.164.35.0/24 611 -198.164.36.0/22 611 -198.164.40.0/22 611 -198.164.44.0/24 611 -198.164.45.0/24 855 -198.164.46.0/24 855 -198.164.47.0/24 611 -198.164.48.0/20 855 -198.164.64.0/21 855 -198.164.72.0/24 611 -198.164.73.0/24 855 -198.164.74.0/23 855 -198.164.76.0/22 855 -198.164.80.0/24 855 -198.164.81.0/24 611 -198.164.82.0/23 611 -198.164.84.0/22 855 -198.164.88.0/21 855 -198.164.96.0/22 855 -198.164.100.0/24 17170 -198.164.101.0/24 855 -198.164.102.0/23 855 -198.164.104.0/23 611 -198.164.106.0/23 855 -198.164.108.0/22 855 -198.164.112.0/23 855 -198.164.114.0/24 3367 -198.164.115.0/24 855 -198.164.116.0/23 855 -198.164.118.0/24 855 -198.164.119.0/24 611 -198.164.120.0/24 611 -198.164.121.0/24 855 -198.164.122.0/24 855 -198.164.123.0/24 611 -198.164.124.0/23 855 -198.164.126.0/24 611 -198.164.127.0/24 855 -198.164.128.0/23 611 -198.164.130.0/24 611 -198.164.131.0/24 855 -198.164.132.0/23 855 -198.164.134.0/23 611 -198.164.136.0/22 855 -198.164.140.0/22 611 -198.164.144.0/21 611 -198.164.152.0/22 611 -198.164.156.0/23 611 -198.164.158.0/23 855 -198.164.160.0/23 855 -198.164.162.0/24 855 -198.164.163.0/24 611 -198.164.164.0/22 855 -198.164.168.0/21 855 -198.164.176.0/20 855 -198.164.192.0/22 855 -198.164.196.0/24 3367 -198.164.197.0/24 855 -198.164.198.0/23 855 -198.164.200.0/21 855 -198.164.208.0/20 855 -198.164.224.0/21 855 -198.164.232.0/22 855 -198.164.236.0/23 855 -198.164.238.0/23 611 -198.164.240.0/21 855 -198.164.248.0/22 855 -198.164.252.0/23 855 -198.164.254.0/24 611 -198.164.255.0/24 855 -198.165.161.0/24 10972 -198.166.0.0/24 852 -198.166.1.0/24 8111 -198.166.2.0/23 852 -198.166.4.0/22 8111 -198.166.8.0/21 852 -198.166.16.0/20 852 -198.166.32.0/19 852 -198.166.64.0/18 852 -198.166.128.0/18 852 -198.166.192.0/20 852 -198.166.208.0/22 852 -198.166.212.0/22 21564 -198.166.216.0/21 852 -198.166.224.0/21 852 -198.166.232.0/24 852 -198.166.233.0/24 8111 -198.166.234.0/23 852 -198.166.236.0/22 852 -198.166.240.0/20 852 -198.167.0.0/24 55085 -198.167.1.0/24 7456 -198.167.18.0/24 855 -198.167.32.0/24 17238 -198.167.33.0/24 855 -198.167.34.0/23 855 -198.167.36.0/22 855 -198.167.40.0/21 855 -198.167.48.0/20 855 -198.167.64.0/18 855 -198.167.129.0/24 53702 -198.167.130.0/23 55088 -198.167.132.0/22 29802 -198.167.136.0/24 32875 -198.167.137.0/24 23033 -198.167.138.0/23 32875 -198.167.140.0/24 32875 -198.167.142.0/23 32875 -198.167.144.0/20 36315 -198.167.160.0/24 15290 -198.167.162.0/24 15290 -198.167.164.0/22 10980 -198.167.168.0/21 30666 -198.167.176.0/23 14230 -198.167.179.0/24 14230 -198.167.180.0/22 14230 -198.167.184.0/21 14230 -198.167.192.0/19 37560 -198.167.224.0/21 395357 -198.167.238.0/23 55106 -198.167.240.0/21 11904 -198.167.248.0/23 55099 -198.168.0.0/24 30372 -198.168.2.0/24 397681 -198.168.8.0/23 22652 -198.168.16.0/24 11489 -198.168.17.0/24 852 -198.168.27.0/24 21548 -198.168.28.0/24 22652 -198.168.31.0/24 55189 -198.168.32.0/22 54989 -198.168.36.0/23 54989 -198.168.38.0/23 13536 -198.168.40.0/23 54981 -198.168.43.0/24 54967 -198.168.44.0/23 11032 -198.168.46.0/24 376 -198.168.47.0/24 11032 -198.168.48.0/22 376 -198.168.52.0/23 376 -198.168.54.0/24 3378 -198.168.73.0/24 3378 -198.168.94.0/23 55068 -198.168.96.0/24 5769 -198.168.97.0/24 577 -198.168.100.0/23 22639 -198.168.102.0/23 376 -198.168.105.0/24 55063 -198.168.106.0/23 55179 -198.168.112.0/22 62656 -198.168.116.0/23 21594 -198.168.121.0/24 852 -198.168.124.0/23 14697 -198.168.126.0/24 55153 -198.168.128.0/18 15318 -198.168.207.0/24 21548 -198.168.208.0/23 393311 -198.168.228.0/24 603 -198.168.229.0/24 174 -198.168.230.0/24 174 -198.168.233.0/24 603 -198.168.234.0/24 11489 -198.168.235.0/24 397188 -198.168.236.0/24 11489 -198.168.237.0/24 397421 -198.168.238.0/23 397188 -198.168.240.0/22 397421 -198.168.250.0/24 15290 -198.168.251.0/24 603 -198.168.252.0/23 3584 -198.168.254.0/24 5769 -198.168.255.0/24 40884 -198.169.4.0/23 803 -198.169.6.0/24 393891 -198.169.10.0/23 62962 -198.169.12.0/22 22950 -198.169.16.0/22 22950 -198.169.20.0/24 26206 -198.169.21.0/24 26806 -198.169.23.0/24 26806 -198.169.24.0/24 803 -198.169.28.0/22 803 -198.169.32.0/22 803 -198.169.36.0/22 14336 -198.169.40.0/21 803 -198.169.48.0/22 803 -198.169.52.0/24 803 -198.169.54.0/23 803 -198.169.56.0/22 803 -198.169.61.0/24 18885 -198.169.62.0/23 393492 -198.169.64.0/22 803 -198.169.97.0/24 55071 -198.169.99.0/24 30340 -198.169.106.0/24 21804 -198.169.107.0/24 803 -198.169.108.0/24 6327 -198.169.110.0/24 17300 -198.169.111.0/24 803 -198.169.112.0/23 803 -198.169.115.0/24 803 -198.169.125.0/24 27628 -198.169.126.0/24 393607 -198.169.127.0/24 27628 -198.169.128.0/24 32894 -198.169.129.0/24 16796 -198.169.132.0/23 27628 -198.169.134.0/24 27628 -198.169.136.0/22 397335 -198.169.140.0/22 803 -198.169.144.0/22 803 -198.169.148.0/23 803 -198.169.152.0/23 395270 -198.169.169.0/24 803 -198.169.174.0/24 852 -198.169.180.0/24 27628 -198.169.188.0/23 30560 -198.169.194.0/23 62897 -198.169.198.0/24 803 -198.169.204.0/23 46612 -198.169.207.0/24 46612 -198.169.208.0/23 26176 -198.169.230.0/23 393322 -198.169.236.0/23 393316 -198.169.238.0/23 803 -198.169.241.0/24 803 -198.169.242.0/23 803 -198.169.244.0/22 803 -198.169.248.0/24 803 -198.169.253.0/24 54980 -198.169.254.0/24 54980 -198.169.255.0/24 32538 -198.170.0.0/17 2914 -198.170.128.0/19 2914 -198.170.160.0/20 2914 -198.170.176.0/21 2914 -198.170.184.0/23 22442 -198.170.186.0/23 2914 -198.170.188.0/24 2914 -198.170.189.0/24 22442 -198.170.190.0/23 2914 -198.170.192.0/24 54772 -198.170.193.0/24 22442 -198.170.194.0/23 2914 -198.170.196.0/22 2914 -198.170.200.0/21 2914 -198.170.208.0/20 2914 -198.170.224.0/19 2914 -198.171.0.0/16 2914 -198.172.0.0/17 2914 -198.172.128.0/21 2914 -198.172.136.0/23 2914 -198.172.138.0/24 174 -198.172.139.0/24 2914 -198.172.140.0/22 2914 -198.172.144.0/20 2914 -198.172.160.0/19 2914 -198.172.192.0/18 2914 -198.173.0.0/22 2914 -198.173.4.0/23 14585 -198.173.6.0/23 2914 -198.173.8.0/22 2914 -198.173.12.0/24 2914 -198.173.13.0/24 174 -198.173.14.0/24 174 -198.173.15.0/24 2914 -198.173.16.0/20 2914 -198.173.32.0/19 2914 -198.173.64.0/18 2914 -198.173.128.0/19 2914 -198.173.160.0/23 2914 -198.173.162.0/24 11884 -198.173.163.0/24 2914 -198.173.164.0/22 2914 -198.173.168.0/21 2914 -198.173.176.0/20 2914 -198.173.192.0/21 2914 -198.173.200.0/24 2914 -198.173.201.0/24 46746 -198.173.202.0/23 46746 -198.173.204.0/22 2914 -198.173.208.0/22 2914 -198.173.212.0/24 2914 -198.173.213.0/24 174 -198.173.214.0/23 2914 -198.173.216.0/21 2914 -198.173.224.0/19 2914 -198.174.0.0/24 33455 -198.174.1.0/24 32068 -198.174.2.0/23 5006 -198.174.4.0/22 5006 -198.174.8.0/21 5006 -198.174.16.0/20 5006 -198.174.32.0/22 5006 -198.174.36.0/23 6461 -198.174.38.0/24 5006 -198.174.39.0/24 7821 -198.174.40.0/22 5006 -198.174.44.0/23 7821 -198.174.46.0/23 5006 -198.174.48.0/21 5006 -198.174.56.0/24 5006 -198.174.57.0/24 1347 -198.174.58.0/23 5006 -198.174.60.0/22 5006 -198.174.64.0/19 5006 -198.174.96.0/21 5006 -198.174.104.0/22 5006 -198.174.108.0/22 21573 -198.174.112.0/22 5006 -198.174.116.0/24 5006 -198.174.117.0/24 7821 -198.174.118.0/23 5006 -198.174.120.0/21 5006 -198.174.128.0/18 5006 -198.174.192.0/21 5006 -198.174.200.0/23 5006 -198.174.202.0/24 5006 -198.174.203.0/24 7821 -198.174.204.0/22 5006 -198.174.208.0/22 5006 -198.174.212.0/22 33362 -198.174.216.0/21 5006 -198.174.224.0/19 5006 -198.175.33.0/24 395280 -198.175.35.0/24 395280 -198.175.38.0/24 395280 -198.175.41.0/24 395280 -198.175.44.0/24 54053 -198.175.50.0/23 30664 -198.175.52.0/23 30664 -198.175.54.0/24 30664 -198.175.62.0/23 15279 -198.175.64.0/23 4983 -198.175.68.0/24 4983 -198.175.72.0/21 4983 -198.175.80.0/22 18473 -198.175.84.0/23 18473 -198.175.86.0/24 4983 -198.175.87.0/24 18473 -198.175.88.0/23 3356 -198.175.96.0/22 4983 -198.175.100.0/22 55958 -198.175.104.0/23 4983 -198.175.112.0/22 4983 -198.175.116.0/23 4983 -198.175.124.0/24 23033 -198.175.126.0/23 32875 -198.175.140.0/23 15263 -198.175.151.0/24 4637 -198.175.152.0/22 3585 -198.175.161.0/24 18880 -198.175.166.0/24 3585 -198.175.167.0/24 7784 -198.175.168.0/24 19528 -198.175.170.0/24 7784 -198.175.173.0/24 26439 -198.175.175.0/24 26439 -198.175.176.0/23 26439 -198.175.178.0/24 26439 -198.175.184.0/24 3549 -198.175.202.0/24 33544 -198.175.204.0/24 2734 -198.175.205.0/24 32505 -198.175.206.0/24 53420 -198.175.228.0/24 8100 -198.175.229.0/24 394328 -198.175.230.0/24 40817 -198.175.232.0/23 10668 -198.175.236.0/24 53292 -198.175.242.0/24 3549 -198.175.243.0/24 209 -198.175.248.0/24 6059 -198.175.249.0/24 31816 -198.175.250.0/24 2152 -198.175.251.0/24 17369 -198.175.252.0/24 13649 -198.175.253.0/24 26817 -198.175.254.0/24 5716 -198.175.255.0/24 29821 -198.176.0.0/21 1798 -198.176.28.0/22 46785 -198.176.39.0/24 396062 -198.176.43.0/24 46950 -198.176.44.0/24 55079 -198.176.46.0/23 55079 -198.176.49.0/24 135330 -198.176.50.0/23 21859 -198.176.52.0/24 21859 -198.176.53.0/24 26484 -198.176.54.0/23 21859 -198.176.56.0/21 21859 -198.176.64.0/22 3356 -198.176.76.0/22 3356 -198.176.80.0/23 63263 -198.176.82.0/23 59724 -198.176.84.0/23 133782 -198.176.120.0/24 10753 -198.176.121.0/24 2830 -198.176.122.0/24 10753 -198.176.123.0/24 7046 -198.176.124.0/24 10753 -198.176.125.0/24 9466 -198.176.126.0/24 16509 -198.176.127.0/24 14618 -198.176.133.0/24 4583 -198.176.136.0/24 7029 -198.176.149.0/24 26189 -198.176.154.0/24 55093 -198.176.160.0/24 8148 -198.176.166.0/24 397973 -198.176.170.0/24 2571 -198.176.174.0/24 2897 -198.176.183.0/24 11250 -198.176.184.0/24 14792 -198.176.185.0/24 36416 -198.176.186.0/23 36416 -198.176.188.0/22 14762 -198.176.194.0/23 22473 -198.176.196.0/24 22473 -198.176.204.0/24 21745 -198.176.208.0/22 4318 -198.176.212.0/24 11486 -198.176.213.0/24 1790 -198.176.214.0/23 1790 -198.176.219.0/24 21782 -198.176.229.0/24 1798 -198.176.232.0/24 174 -198.176.240.0/22 11250 -198.176.244.0/23 11250 -198.176.247.0/24 26159 -198.176.250.0/24 6122 -198.177.1.0/24 19677 -198.177.2.0/23 19677 -198.177.6.0/23 63061 -198.177.8.0/21 3719 -198.177.16.0/21 1798 -198.177.24.0/22 1798 -198.177.28.0/22 11280 -198.177.52.0/22 54665 -198.177.56.0/21 11282 -198.177.64.0/19 40479 -198.177.116.0/22 46506 -198.177.120.0/24 395681 -198.177.121.0/24 135343 -198.177.122.0/23 395681 -198.177.124.0/24 395681 -198.177.126.0/23 395681 -198.177.146.0/24 19406 -198.177.147.0/24 36649 -198.177.148.0/24 36649 -198.177.152.0/24 16833 -198.177.154.0/24 22215 -198.177.158.0/23 40292 -198.177.160.0/24 40292 -198.177.181.0/24 20355 -198.177.184.0/23 22582 -198.177.186.0/24 394724 -198.177.190.0/24 19631 -198.177.191.0/24 393753 -198.177.192.0/22 393753 -198.177.196.0/23 393753 -198.177.199.0/24 395811 -198.177.207.0/24 2386 -198.177.226.0/24 10753 -198.177.227.0/24 2714 -198.177.230.0/24 33248 -198.177.232.0/24 36153 -198.177.241.0/24 26242 -198.177.251.0/24 25975 -198.177.252.0/23 25975 -198.177.254.0/24 25975 -198.177.255.0/24 14618 -198.178.8.0/21 7922 -198.178.16.0/21 7029 -198.178.24.0/22 7029 -198.178.28.0/22 15108 -198.178.32.0/20 3762 -198.178.48.0/22 3356 -198.178.52.0/22 3762 -198.178.56.0/22 27250 -198.178.60.0/23 27250 -198.178.69.0/24 19254 -198.178.113.0/24 7018 -198.178.114.0/23 14618 -198.178.116.0/23 40028 -198.178.118.0/24 36445 -198.178.119.0/24 40028 -198.178.120.0/21 29802 -198.178.132.0/24 40642 -198.178.136.0/24 32915 -198.178.139.0/24 26633 -198.178.140.0/24 26633 -198.178.145.0/24 62533 -198.178.147.0/24 40017 -198.178.148.0/24 55047 -198.178.155.0/24 30180 -198.178.162.0/24 11395 -198.178.167.0/24 53347 -198.178.182.0/23 23039 -198.178.184.0/23 23039 -198.178.187.0/24 25932 -198.178.188.0/24 25932 -198.178.190.0/24 18537 -198.178.191.0/24 54684 -198.178.192.0/24 702 -198.178.194.0/24 11897 -198.178.200.0/24 19893 -198.178.216.0/24 6289 -198.178.218.0/23 14762 -198.178.220.0/24 14762 -198.178.223.0/24 26524 -198.178.231.0/24 40715 -198.178.232.0/24 14272 -198.178.234.0/24 33042 -198.178.235.0/24 24677 -198.178.236.0/24 22108 -198.178.237.0/24 7695 -198.178.238.0/23 33042 -198.178.249.0/24 13352 -198.178.250.0/23 13352 -198.178.254.0/24 209 -198.178.255.0/24 55078 -198.179.0.0/23 26810 -198.179.2.0/24 26810 -198.179.3.0/24 19050 -198.179.4.0/24 19050 -198.179.5.0/24 54928 -198.179.6.0/24 40098 -198.179.10.0/24 30098 -198.179.30.0/23 54303 -198.179.56.0/21 30436 -198.179.64.0/19 12271 -198.179.96.0/19 11351 -198.179.130.0/24 8135 -198.179.134.0/24 54920 -198.179.136.0/23 4583 -198.179.138.0/24 4583 -198.179.140.0/24 4583 -198.179.143.0/24 7018 -198.179.144.0/23 7018 -198.179.147.0/24 1350 -198.179.148.0/24 1350 -198.179.150.0/24 13507 -198.179.152.0/24 21693 -198.179.156.0/24 21693 -198.179.157.0/24 36364 -198.179.158.0/23 36364 -198.179.163.0/24 29851 -198.179.164.0/22 29851 -198.179.168.0/24 14135 -198.179.172.0/23 395155 -198.179.177.0/24 46178 -198.179.181.0/24 46846 -198.179.189.0/24 22773 -198.179.204.0/24 26844 -198.179.208.0/24 14572 -198.179.209.0/24 7018 -198.179.210.0/24 394800 -198.179.214.0/24 394790 -198.179.219.0/24 46135 -198.179.220.0/24 55104 -198.179.225.0/24 36236 -198.179.226.0/23 395485 -198.179.228.0/24 394153 -198.179.229.0/24 13496 -198.179.232.0/24 19125 -198.179.234.0/24 4884 -198.179.243.0/24 26587 -198.179.248.0/24 394790 -198.179.255.0/24 16585 -198.180.0.0/22 11714 -198.180.4.0/22 4193 -198.180.16.0/20 33614 -198.180.32.0/20 2828 -198.180.48.0/24 2828 -198.180.49.0/24 11893 -198.180.50.0/23 2828 -198.180.52.0/22 2828 -198.180.56.0/21 2828 -198.180.74.0/24 8068 -198.180.129.0/24 32360 -198.180.131.0/24 27311 -198.180.132.0/22 18682 -198.180.140.0/24 3736 -198.180.141.0/24 31822 -198.180.147.0/24 6629 -198.180.150.0/24 3927 -198.180.151.0/24 3130 -198.180.152.0/24 4128 -198.180.153.0/24 3130 -198.180.155.0/24 32505 -198.180.156.0/23 36166 -198.180.159.0/24 40071 -198.180.160.0/24 17025 -198.180.162.0/24 10625 -198.180.164.0/24 26585 -198.180.165.0/24 19773 -198.180.167.0/24 8100 -198.180.181.0/24 20478 -198.180.182.0/24 22695 -198.180.183.0/24 6181 -198.180.184.0/24 19355 -198.180.186.0/23 33047 -198.180.188.0/24 7773 -198.180.195.0/24 30311 -198.180.197.0/24 6524 -198.180.198.0/24 26658 -198.180.199.0/24 8103 -198.180.200.0/24 3900 -198.180.203.0/24 22943 -198.180.206.0/24 19594 -198.180.207.0/24 1747 -198.180.213.0/24 3561 -198.180.218.0/24 1906 -198.180.219.0/24 797 -198.180.225.0/24 21817 -198.180.229.0/24 22851 -198.180.240.0/23 12253 -198.180.251.0/24 33668 -198.180.254.0/24 394898 -198.180.255.0/24 54950 -198.181.4.0/23 36844 -198.181.6.0/24 36844 -198.181.8.0/24 14521 -198.181.10.0/23 14521 -198.181.12.0/23 14521 -198.181.15.0/24 14521 -198.181.16.0/21 19774 -198.181.24.0/23 19774 -198.181.28.0/22 62975 -198.181.32.0/20 25820 -198.181.48.0/21 393676 -198.181.56.0/22 25820 -198.181.60.0/23 174 -198.181.62.0/23 18808 -198.181.112.0/24 701 -198.181.114.0/23 27375 -198.181.116.0/22 2635 -198.181.120.0/22 23197 -198.181.124.0/22 40596 -198.181.140.0/24 26844 -198.181.153.0/24 10753 -198.181.154.0/24 10753 -198.181.156.0/23 21547 -198.181.159.0/24 26591 -198.181.161.0/24 11267 -198.181.163.0/24 174 -198.181.165.0/24 10717 -198.181.166.0/24 21808 -198.181.167.0/24 14230 -198.181.168.0/24 54957 -198.181.178.0/24 29762 -198.181.199.0/24 395611 -198.181.200.0/23 33695 -198.181.202.0/24 1239 -198.181.203.0/24 6091 -198.181.204.0/24 6091 -198.181.205.0/24 3356 -198.181.214.0/24 6528 -198.181.218.0/24 27383 -198.181.219.0/24 1239 -198.181.220.0/24 32873 -198.181.223.0/24 395226 -198.181.224.0/23 395226 -198.181.226.0/24 395226 -198.181.229.0/24 32425 -198.181.231.0/24 102 -198.181.240.0/24 40581 -198.181.250.0/24 27195 -198.181.251.0/24 4193 -198.181.252.0/24 46887 -198.181.253.0/24 13536 -198.181.254.0/24 13536 -198.181.255.0/24 33132 -198.182.8.0/22 22900 -198.182.12.0/24 40285 -198.182.13.0/24 12042 -198.182.14.0/24 3549 -198.182.15.0/24 11235 -198.182.28.0/24 270 -198.182.30.0/23 270 -198.182.36.0/22 7809 -198.182.40.0/21 27269 -198.182.50.0/23 10209 -198.182.52.0/23 24539 -198.182.55.0/24 3356 -198.182.56.0/21 27269 -198.182.64.0/19 22772 -198.182.96.0/20 22772 -198.182.112.0/22 23477 -198.182.116.0/22 22772 -198.182.120.0/21 22772 -198.182.130.0/23 16983 -198.182.132.0/23 16983 -198.182.134.0/24 16983 -198.182.140.0/24 3446 -198.182.149.0/24 7752 -198.182.154.0/23 30000 -198.182.157.0/24 40722 -198.182.159.0/24 26439 -198.182.161.0/24 557 -198.182.162.0/23 557 -198.182.167.0/24 42 -198.182.170.0/24 11269 -198.182.175.0/24 6977 -198.182.191.0/24 22891 -198.182.192.0/24 209 -198.182.194.0/24 22891 -198.182.196.0/24 15290 -198.182.205.0/24 30564 -198.182.207.0/24 13831 -198.182.208.0/24 13831 -198.182.213.0/24 46120 -198.182.214.0/24 15290 -198.182.215.0/24 38809 -198.182.216.0/22 8038 -198.182.225.0/24 6140 -198.182.229.0/24 3356 -198.182.230.0/24 2687 -198.182.240.0/22 15116 -198.182.247.0/24 3737 -198.182.248.0/24 1747 -198.182.254.0/23 396917 -198.183.0.0/23 15108 -198.183.3.0/24 15108 -198.183.4.0/22 15108 -198.183.8.0/21 6079 -198.183.17.0/24 714 -198.183.18.0/24 2700 -198.183.134.0/24 174 -198.183.137.0/24 174 -198.183.138.0/24 174 -198.183.141.0/24 26585 -198.183.143.0/24 26585 -198.183.157.0/24 7018 -198.183.158.0/24 7018 -198.183.164.0/22 13702 -198.183.169.0/24 46932 -198.183.172.0/24 19201 -198.183.178.0/23 32958 -198.183.184.0/22 53426 -198.183.197.0/24 12253 -198.183.202.0/24 3292 -198.183.203.0/24 27383 -198.183.217.0/24 5650 -198.183.218.0/24 5650 -198.183.219.0/24 54969 -198.183.220.0/23 11230 -198.183.223.0/24 11230 -198.183.226.0/24 54927 -198.183.227.0/24 27304 -198.183.241.0/24 62924 -198.183.248.0/23 5078 -198.183.255.0/24 36709 -198.184.0.0/22 132414 -198.184.4.0/22 132413 -198.184.8.0/24 3655 -198.184.13.0/24 62978 -198.184.14.0/24 20454 -198.184.20.0/23 30020 -198.184.26.0/24 393241 -198.184.28.0/22 30536 -198.184.32.0/20 13990 -198.184.56.0/22 13990 -198.184.62.0/23 62909 -198.184.64.0/22 17274 -198.184.128.0/24 701 -198.184.142.0/24 1294 -198.184.145.0/24 40626 -198.184.147.0/24 122 -198.184.150.0/24 33287 -198.184.151.0/24 30331 -198.184.152.0/23 19421 -198.184.154.0/24 18745 -198.184.157.0/24 6461 -198.184.158.0/24 6461 -198.184.170.0/24 14747 -198.184.177.0/24 188 -198.184.180.0/22 15110 -198.184.197.0/24 23005 -198.184.201.0/24 33287 -198.184.209.0/24 13760 -198.184.220.0/24 21611 -198.184.222.0/24 26358 -198.184.227.0/24 23251 -198.184.231.0/24 10991 -198.184.232.0/23 10991 -198.184.245.0/24 63370 -198.184.246.0/23 63370 -198.184.248.0/23 63370 -198.184.250.0/24 7018 -198.184.251.0/24 397093 -198.184.252.0/23 397093 -198.184.254.0/24 397093 -198.184.255.0/24 46889 -198.185.0.0/22 7029 -198.185.9.0/24 395972 -198.185.10.0/24 395972 -198.185.12.0/24 33693 -198.185.15.0/24 33693 -198.185.16.0/23 1757 -198.185.18.0/23 3356 -198.185.21.0/24 3356 -198.185.23.0/24 3356 -198.185.24.0/23 3356 -198.185.26.0/23 572 -198.185.28.0/22 5690 -198.185.62.0/23 16455 -198.185.64.0/19 14437 -198.185.96.0/20 14437 -198.185.112.0/24 55007 -198.185.113.0/24 14437 -198.185.114.0/23 14437 -198.185.116.0/22 14437 -198.185.120.0/21 14437 -198.185.128.0/24 16555 -198.185.133.0/24 30076 -198.185.134.0/23 30076 -198.185.136.0/23 30076 -198.185.140.0/24 7016 -198.185.154.0/24 396018 -198.185.159.0/24 53831 -198.185.162.0/23 3769 -198.185.164.0/24 3769 -198.185.165.0/24 15299 -198.185.166.0/24 13997 -198.185.173.0/24 22473 -198.185.174.0/23 22473 -198.185.176.0/24 22473 -198.185.178.0/23 7016 -198.185.180.0/23 7016 -198.185.190.0/24 7029 -198.185.205.0/24 27301 -198.185.207.0/24 7029 -198.185.210.0/24 393998 -198.185.213.0/24 51200 -198.185.215.0/24 22460 -198.185.217.0/24 395569 -198.185.218.0/23 53488 -198.185.221.0/24 10753 -198.185.222.0/23 10753 -198.185.224.0/24 10753 -198.185.228.0/24 8047 -198.185.241.0/24 394612 -198.185.252.0/24 13760 -198.185.254.0/24 13760 -198.186.0.0/24 26010 -198.186.1.0/24 7018 -198.186.6.0/24 1632 -198.186.7.0/24 29875 -198.186.8.0/21 10392 -198.186.32.0/24 2386 -198.186.64.0/18 7332 -198.186.128.0/24 63418 -198.186.129.0/24 63057 -198.186.137.0/24 32293 -198.186.138.0/24 32293 -198.186.140.0/23 40524 -198.186.149.0/24 22934 -198.186.151.0/24 2033 -198.186.156.0/22 19002 -198.186.162.0/23 53602 -198.186.167.0/24 40860 -198.186.174.0/23 14320 -198.186.182.0/24 22213 -198.186.189.0/24 54918 -198.186.190.0/23 6450 -198.186.192.0/23 6450 -198.186.194.0/24 6450 -198.186.196.0/24 209 -198.186.200.0/22 7091 -198.186.207.0/24 263713 -198.186.220.0/23 4193 -198.186.229.0/24 11109 -198.186.236.0/24 21754 -198.186.238.0/23 26582 -198.186.241.0/24 53528 -198.186.242.0/24 26633 -198.186.246.0/23 26633 -198.186.248.0/22 26633 -198.186.252.0/24 26633 -198.186.255.0/24 22804 -198.187.0.0/22 4193 -198.187.4.0/22 1226 -198.187.12.0/24 21439 -198.187.28.0/22 22612 -198.187.32.0/19 2828 -198.187.129.0/24 3356 -198.187.130.0/23 3356 -198.187.135.0/24 22732 -198.187.137.0/24 15346 -198.187.138.0/23 40062 -198.187.140.0/24 54921 -198.187.147.0/24 32403 -198.187.148.0/23 33373 -198.187.154.0/24 5078 -198.187.160.0/23 8103 -198.187.172.0/22 17195 -198.187.188.0/24 23175 -198.187.190.0/24 53578 -198.187.194.0/24 13450 -198.187.195.0/24 18712 -198.187.196.0/24 13450 -198.187.200.0/24 8161 -198.187.203.0/24 11427 -198.187.206.0/24 7381 -198.187.211.0/24 40326 -198.187.212.0/23 40326 -198.187.214.0/24 40326 -198.187.215.0/24 22732 -198.187.216.0/24 22732 -198.187.222.0/24 195 -198.187.232.0/22 27282 -198.187.236.0/24 27282 -198.187.239.0/24 22096 -198.187.247.0/24 46887 -198.187.248.0/23 54375 -198.187.250.0/24 7046 -198.187.251.0/24 3912 -198.187.253.0/24 7850 -198.187.255.0/24 26094 -198.188.0.0/22 2152 -198.188.4.0/23 2152 -198.188.6.0/24 2152 -198.188.7.0/24 2920 -198.188.8.0/21 2152 -198.188.16.0/20 2152 -198.188.32.0/20 2152 -198.188.48.0/24 2152 -198.188.49.0/24 2920 -198.188.50.0/24 2920 -198.188.51.0/24 2152 -198.188.52.0/22 2152 -198.188.56.0/22 2152 -198.188.60.0/23 54192 -198.188.62.0/24 54192 -198.188.63.0/24 2152 -198.188.64.0/20 2152 -198.188.80.0/21 2152 -198.188.88.0/22 2152 -198.188.92.0/23 2152 -198.188.94.0/24 2152 -198.188.95.0/24 18558 -198.188.96.0/19 2152 -198.188.128.0/20 2152 -198.188.144.0/21 2152 -198.188.152.0/22 2152 -198.188.156.0/23 2152 -198.188.158.0/24 2152 -198.188.159.0/24 7960 -198.188.160.0/19 2920 -198.188.192.0/24 2152 -198.188.193.0/24 2920 -198.188.194.0/24 2920 -198.188.195.0/24 2152 -198.188.196.0/22 2152 -198.188.200.0/22 2152 -198.188.204.0/23 2152 -198.188.206.0/23 2920 -198.188.208.0/23 2920 -198.188.210.0/24 2152 -198.188.211.0/24 2920 -198.188.212.0/22 2920 -198.188.216.0/21 2920 -198.188.224.0/20 2920 -198.188.240.0/21 2920 -198.188.248.0/22 2152 -198.188.252.0/23 2920 -198.188.254.0/23 2152 -198.189.0.0/17 2152 -198.189.128.0/18 2152 -198.189.192.0/19 2152 -198.189.224.0/20 2152 -198.189.240.0/24 14212 -198.189.241.0/24 2152 -198.189.242.0/23 2152 -198.189.244.0/22 2152 -198.189.248.0/21 2152 -198.190.14.0/23 16844 -198.190.25.0/24 32510 -198.190.28.0/24 32510 -198.190.31.0/24 26850 -198.190.32.0/24 20001 -198.190.33.0/24 23005 -198.190.34.0/23 20001 -198.190.38.0/24 20001 -198.190.50.0/24 23005 -198.190.53.0/24 20001 -198.190.55.0/24 20001 -198.190.59.0/24 20001 -198.190.60.0/22 54755 -198.190.64.0/18 3663 -198.190.131.0/24 54909 -198.190.134.0/23 397822 -198.190.136.0/23 396899 -198.190.149.0/24 46376 -198.190.150.0/24 46376 -198.190.156.0/23 16868 -198.190.160.0/24 15120 -198.190.164.0/24 209 -198.190.166.0/24 7834 -198.190.167.0/24 11696 -198.190.169.0/24 54469 -198.190.171.0/24 13621 -198.190.179.0/24 3914 -198.190.180.0/23 3914 -198.190.186.0/24 33112 -198.190.187.0/24 19149 -198.190.190.0/24 40619 -198.190.195.0/24 17232 -198.190.198.0/24 36796 -198.190.199.0/24 10796 -198.190.201.0/24 47096 -198.190.204.0/24 6389 -198.190.212.0/24 396358 -198.190.213.0/24 40877 -198.190.214.0/24 40877 -198.190.219.0/24 27195 -198.190.222.0/23 10674 -198.190.225.0/24 2386 -198.190.226.0/24 13333 -198.190.229.0/24 11716 -198.190.230.0/24 54347 -198.190.231.0/24 53595 -198.190.233.0/24 30554 -198.190.234.0/24 19569 -198.190.245.0/24 40615 -198.190.246.0/24 32120 -198.190.251.0/24 7973 -198.190.252.0/24 7973 -198.190.255.0/24 40878 -198.199.6.0/24 2386 -198.199.7.0/24 1645 -198.199.13.0/24 7018 -198.199.20.0/23 11493 -198.199.24.0/23 11493 -198.199.32.0/20 397458 -198.199.48.0/22 397458 -198.199.52.0/22 22625 -198.199.56.0/21 54769 -198.199.64.0/18 14061 -198.199.129.0/24 17022 -198.199.134.0/24 30330 -198.199.136.0/24 14801 -198.199.140.0/24 3549 -198.199.145.0/24 22773 -198.199.151.0/24 15305 -198.199.152.0/23 15305 -198.199.154.0/24 33163 -198.199.165.0/24 2386 -198.199.171.0/24 46642 -198.199.172.0/24 33668 -198.199.175.0/24 21622 -198.199.176.0/24 21622 -198.199.180.0/24 3356 -198.199.181.0/24 25935 -198.199.185.0/24 40211 -198.199.186.0/24 33347 -198.199.187.0/24 12156 -198.199.188.0/24 12156 -198.199.189.0/24 7018 -198.199.190.0/24 47078 -198.199.191.0/24 15303 -198.199.195.0/24 10551 -198.199.198.0/24 12279 -198.199.199.0/24 40464 -198.199.203.0/24 54348 -198.199.206.0/24 46576 -198.199.208.0/22 29935 -198.199.219.0/24 16983 -198.199.222.0/24 54545 -198.199.224.0/24 10796 -198.199.225.0/24 36406 -198.199.226.0/24 22330 -198.199.233.0/24 17378 -198.199.236.0/24 33163 -198.199.241.0/24 15013 -198.199.242.0/23 30600 -198.199.247.0/24 21893 -198.199.255.0/24 13887 -198.200.0.0/21 62445 -198.200.8.0/23 62445 -198.200.10.0/23 1974 -198.200.12.0/22 18853 -198.200.32.0/19 54600 -198.200.64.0/18 11814 -198.200.130.0/24 8075 -198.200.132.0/24 40619 -198.200.137.0/24 11716 -198.200.139.0/24 32824 -198.200.141.0/24 54125 -198.200.146.0/24 53597 -198.200.148.0/24 40932 -198.200.158.0/24 3464 -198.200.163.0/24 10921 -198.200.170.0/23 1399 -198.200.172.0/24 1399 -198.200.174.0/24 1399 -198.200.177.0/24 16758 -198.200.181.0/24 393650 -198.200.185.0/24 397735 -198.200.194.0/24 11716 -198.200.195.0/24 11304 -198.200.198.0/24 22255 -198.200.201.0/24 40619 -198.200.204.0/24 47059 -198.200.213.0/24 10985 -198.200.214.0/24 10985 -198.200.215.0/24 14431 -198.200.216.0/24 14431 -198.200.236.0/24 22330 -198.200.238.0/24 17365 -198.200.244.0/24 30185 -198.200.246.0/24 25813 -198.200.250.0/24 26827 -198.201.4.0/22 5972 -198.201.23.0/24 3916 -198.201.84.0/23 209 -198.201.86.0/24 209 -198.202.0.0/21 6059 -198.202.16.0/21 1982 -198.202.24.0/21 10594 -198.202.33.0/24 15279 -198.202.36.0/24 19631 -198.202.64.0/24 195 -198.202.65.0/24 22213 -198.202.66.0/23 22213 -198.202.68.0/23 22213 -198.202.70.0/24 22213 -198.202.71.0/24 195 -198.202.72.0/21 195 -198.202.80.0/20 195 -198.202.96.0/20 195 -198.202.112.0/21 195 -198.202.120.0/22 195 -198.202.124.0/23 46985 -198.202.126.0/23 195 -198.202.128.0/23 36562 -198.202.130.0/24 15296 -198.202.137.0/24 7772 -198.202.141.0/24 21930 -198.202.142.0/23 25774 -198.202.144.0/23 2152 -198.202.146.0/24 10753 -198.202.148.0/24 16668 -198.202.151.0/24 557 -198.202.156.0/23 22182 -198.202.160.0/24 22182 -198.202.162.0/24 22182 -198.202.168.0/24 10835 -198.202.175.0/24 3356 -198.202.177.0/24 18509 -198.202.178.0/23 7086 -198.202.180.0/23 7086 -198.202.182.0/24 18509 -198.202.183.0/24 16158 -198.202.184.0/24 1906 -198.202.186.0/24 397932 -198.202.191.0/24 26585 -198.202.192.0/24 10625 -198.202.199.0/24 11994 -198.202.200.0/22 209 -198.202.204.0/24 7786 -198.202.208.0/24 23459 -198.202.210.0/24 33179 -198.202.213.0/24 23226 -198.202.219.0/24 33651 -198.202.228.0/23 2939 -198.202.235.0/24 2015 -198.202.240.0/23 16719 -198.202.242.0/24 23294 -198.202.243.0/24 7786 -198.202.247.0/24 51964 -198.202.252.0/23 12253 -198.202.255.0/24 11376 -198.203.0.0/22 14860 -198.203.16.0/23 36844 -198.203.18.0/24 36844 -198.203.20.0/22 36844 -198.203.26.0/23 46302 -198.203.28.0/24 25780 -198.203.30.0/23 25780 -198.203.32.0/23 27483 -198.203.34.0/24 27483 -198.203.47.0/24 27483 -198.203.59.0/24 27483 -198.203.60.0/24 27483 -198.203.62.0/23 27483 -198.203.131.0/24 22255 -198.203.136.0/24 19803 -198.203.145.0/24 33177 -198.203.146.0/24 27307 -198.203.147.0/24 33372 -198.203.148.0/24 33372 -198.203.154.0/24 6984 -198.203.169.0/24 27000 -198.203.174.0/23 10879 -198.203.176.0/23 10879 -198.203.181.0/24 10879 -198.203.191.0/24 11609 -198.203.192.0/24 11609 -198.203.196.0/24 46957 -198.203.197.0/24 10753 -198.203.198.0/23 10753 -198.203.200.0/22 10753 -198.203.204.0/23 10753 -198.203.213.0/24 46084 -198.203.214.0/24 2828 -198.203.221.0/24 6077 -198.203.222.0/24 29701 -198.203.223.0/24 25899 -198.203.224.0/24 13507 -198.203.231.0/24 3914 -198.203.232.0/24 54882 -198.203.238.0/23 6527 -198.203.240.0/23 6527 -198.203.242.0/23 19060 -198.203.244.0/23 19060 -198.203.250.0/23 40844 -198.203.255.0/24 33596 -198.204.8.0/24 209 -198.204.10.0/24 14230 -198.204.13.0/24 14230 -198.204.14.0/23 209 -198.204.30.0/24 54943 -198.204.31.0/24 19271 -198.204.32.0/20 16714 -198.204.48.0/23 16714 -198.204.62.0/23 54900 -198.204.66.0/24 40413 -198.204.74.0/23 22330 -198.204.76.0/23 22330 -198.204.78.0/24 22330 -198.204.80.0/24 393247 -198.204.81.0/24 30361 -198.204.88.0/22 395872 -198.204.92.0/24 2711 -198.204.100.0/22 3464 -198.204.105.0/24 23099 -198.204.111.0/24 46596 -198.204.112.0/23 393235 -198.204.115.0/24 393235 -198.204.116.0/23 209 -198.204.118.0/24 209 -198.204.120.0/23 209 -198.204.122.0/24 209 -198.204.123.0/24 7029 -198.204.126.0/24 5078 -198.204.129.0/24 11313 -198.204.133.0/24 11313 -198.204.134.0/23 11313 -198.204.136.0/24 11313 -198.204.138.0/24 11313 -198.204.141.0/24 11313 -198.204.142.0/24 11313 -198.204.151.0/24 11313 -198.204.152.0/24 11313 -198.204.155.0/24 11313 -198.204.162.0/24 11313 -198.204.164.0/22 11313 -198.204.169.0/24 11313 -198.204.170.0/23 11313 -198.204.172.0/23 11313 -198.204.176.0/24 11313 -198.204.178.0/23 11313 -198.204.181.0/24 11313 -198.204.183.0/24 11313 -198.204.184.0/24 11313 -198.204.186.0/23 11313 -198.204.189.0/24 11313 -198.204.190.0/23 11313 -198.204.192.0/24 11313 -198.204.202.0/24 11313 -198.204.203.0/24 39976 -198.204.204.0/22 29804 -198.204.208.0/20 27288 -198.204.224.0/19 33387 -198.205.0.0/23 11911 -198.205.5.0/24 54426 -198.205.8.0/24 11383 -198.205.9.0/24 17113 -198.205.10.0/24 15404 -198.205.11.0/24 43984 -198.205.13.0/24 16657 -198.205.15.0/24 32447 -198.205.16.0/20 40910 -198.205.92.0/22 62762 -198.205.100.0/24 394597 -198.205.102.0/24 1277 -198.205.103.0/24 394903 -198.205.104.0/21 13604 -198.205.112.0/21 19844 -198.205.120.0/22 19844 -198.205.124.0/24 19844 -198.205.126.0/23 19844 -198.206.8.0/21 36352 -198.206.16.0/20 20031 -198.206.32.0/19 3477 -198.206.130.0/23 32467 -198.206.132.0/22 21554 -198.206.150.0/24 22773 -198.206.157.0/24 395732 -198.206.158.0/23 7992 -198.206.160.0/24 394384 -198.206.162.0/24 23138 -198.206.164.0/24 8075 -198.206.188.0/24 8161 -198.206.191.0/24 22192 -198.206.194.0/24 2711 -198.206.219.0/24 3562 -198.206.221.0/24 3562 -198.206.222.0/24 393399 -198.206.223.0/24 377 -198.206.224.0/24 14200 -198.206.226.0/24 47068 -198.206.237.0/24 26439 -198.206.238.0/24 26439 -198.206.239.0/24 11714 -198.206.240.0/23 11714 -198.206.242.0/24 11714 -198.206.243.0/24 5056 -198.206.246.0/24 14381 -198.206.248.0/22 36394 -198.206.255.0/24 11009 -198.207.0.0/21 17007 -198.207.16.0/21 3855 -198.207.24.0/21 22925 -198.207.129.0/24 30512 -198.207.136.0/24 23513 -198.207.140.0/24 10461 -198.207.145.0/24 18480 -198.207.146.0/23 16653 -198.207.148.0/22 25649 -198.207.152.0/24 30251 -198.207.157.0/24 6130 -198.207.182.0/24 32538 -198.207.185.0/24 11520 -198.207.187.0/24 13718 -198.207.188.0/24 209 -198.207.189.0/24 7385 -198.207.193.0/24 7029 -198.207.194.0/24 31911 -198.207.195.0/24 7381 -198.207.196.0/24 6315 -198.207.200.0/23 53292 -198.207.202.0/23 63251 -198.207.204.0/24 11404 -198.207.210.0/24 62943 -198.207.217.0/24 26681 -198.207.218.0/24 46193 -198.207.221.0/24 26114 -198.207.222.0/24 17236 -198.207.223.0/24 40817 -198.207.237.0/24 32982 -198.207.238.0/23 291 -198.207.240.0/24 32982 -198.207.244.0/23 29808 -198.207.255.0/24 23066 -198.208.3.0/24 30383 -198.208.4.0/23 30383 -198.208.6.0/24 30383 -198.208.8.0/24 30383 -198.208.9.0/24 3038 -198.208.11.0/24 30383 -198.208.12.0/24 30383 -198.208.14.0/23 30383 -198.208.16.0/24 24024 -198.208.17.0/24 4812 -198.208.19.0/24 4812 -198.208.21.0/24 30383 -198.208.23.0/24 30383 -198.208.24.0/23 30383 -198.208.27.0/24 30383 -198.208.29.0/24 30383 -198.208.31.0/24 56274 -198.208.32.0/23 30383 -198.208.36.0/23 30383 -198.208.38.0/24 56274 -198.208.39.0/24 30383 -198.208.42.0/23 30383 -198.208.46.0/23 30383 -198.208.50.0/23 30383 -198.208.53.0/24 30383 -198.208.55.0/24 30383 -198.208.56.0/22 30383 -198.208.62.0/24 30383 -198.208.64.0/24 30383 -198.208.68.0/23 30383 -198.208.72.0/22 30383 -198.208.76.0/24 30383 -198.208.79.0/24 30383 -198.208.80.0/23 30383 -198.208.82.0/24 30383 -198.208.84.0/22 30383 -198.208.88.0/22 30383 -198.208.92.0/23 30383 -198.208.96.0/21 56274 -198.208.104.0/21 45445 -198.208.114.0/23 30383 -198.208.120.0/23 30383 -198.208.123.0/24 30383 -198.208.124.0/22 30383 -198.208.129.0/24 30383 -198.208.130.0/24 30383 -198.208.132.0/24 30383 -198.208.133.0/24 56274 -198.208.134.0/24 56274 -198.208.141.0/24 30383 -198.208.142.0/23 30383 -198.208.148.0/22 30383 -198.208.154.0/23 30383 -198.208.156.0/23 30383 -198.208.159.0/24 30383 -198.208.161.0/24 30383 -198.208.162.0/23 30383 -198.208.165.0/24 30383 -198.208.166.0/23 30383 -198.208.170.0/24 30383 -198.208.171.0/24 132380 -198.208.172.0/23 30383 -198.208.175.0/24 30383 -198.208.176.0/24 30383 -198.208.178.0/23 30383 -198.208.180.0/24 30383 -198.208.182.0/23 30383 -198.208.185.0/24 30383 -198.208.186.0/24 30383 -198.208.190.0/23 30383 -198.208.198.0/23 30383 -198.208.201.0/24 30383 -198.208.202.0/23 30383 -198.208.208.0/24 3038 -198.208.209.0/24 45241 -198.208.212.0/23 30383 -198.208.216.0/24 56274 -198.208.217.0/24 30383 -198.208.218.0/23 30383 -198.208.220.0/24 30383 -198.208.223.0/24 30383 -198.208.224.0/24 30383 -198.208.226.0/23 30383 -198.208.232.0/22 30383 -198.208.238.0/23 30383 -198.208.242.0/24 30383 -198.208.244.0/22 30383 -198.208.248.0/24 30383 -198.208.251.0/24 30383 -198.208.252.0/24 30383 -198.208.254.0/24 30383 -198.208.255.0/24 45241 -198.209.0.0/19 2572 -198.209.32.0/20 2572 -198.209.48.0/20 26934 -198.209.64.0/18 2572 -198.209.128.0/17 2572 -198.210.0.0/22 54836 -198.210.14.0/23 19482 -198.210.16.0/21 27357 -198.210.24.0/21 33695 -198.210.32.0/19 395111 -198.210.64.0/18 14155 -198.211.0.0/19 35916 -198.211.32.0/24 35916 -198.211.33.0/24 395681 -198.211.34.0/23 35916 -198.211.36.0/22 35916 -198.211.40.0/21 35916 -198.211.48.0/20 35916 -198.211.64.0/24 3549 -198.211.65.0/24 7029 -198.211.66.0/23 7029 -198.211.68.0/22 7029 -198.211.72.0/21 7029 -198.211.80.0/21 7029 -198.211.88.0/22 7029 -198.211.92.0/23 7029 -198.211.94.0/23 31881 -198.211.96.0/19 14061 -198.211.144.0/20 7029 -198.211.160.0/19 7029 -198.211.192.0/19 11915 -198.211.224.0/19 7029 -198.212.7.0/24 26856 -198.212.16.0/21 3549 -198.212.24.0/22 3549 -198.212.28.0/22 11560 -198.212.44.0/24 1239 -198.212.50.0/23 33719 -198.212.52.0/22 1819 -198.212.56.0/21 11690 -198.212.64.0/23 26131 -198.212.68.0/23 26131 -198.212.99.0/24 26131 -198.212.128.0/23 23389 -198.212.135.0/24 46887 -198.212.136.0/22 46887 -198.212.140.0/24 46887 -198.212.141.0/24 10674 -198.212.142.0/24 10674 -198.212.146.0/24 20438 -198.212.148.0/24 20438 -198.212.151.0/24 396151 -198.212.157.0/24 394453 -198.212.160.0/24 7029 -198.212.162.0/23 395216 -198.212.164.0/24 8103 -198.212.166.0/24 2386 -198.212.171.0/24 11796 -198.212.176.0/24 395216 -198.212.183.0/24 16640 -198.212.186.0/23 16928 -198.212.188.0/24 16928 -198.212.199.0/24 16439 -198.212.202.0/24 395102 -198.212.205.0/24 2386 -198.212.208.0/23 25966 -198.212.210.0/24 19893 -198.212.213.0/24 18725 -198.212.214.0/24 3356 -198.212.215.0/24 18725 -198.212.218.0/24 33177 -198.212.219.0/24 53559 -198.212.220.0/24 53559 -198.212.222.0/24 4515 -198.212.224.0/24 53595 -198.212.225.0/24 397779 -198.212.226.0/24 7015 -198.212.227.0/24 397779 -198.212.228.0/23 397779 -198.212.230.0/23 7015 -198.212.237.0/24 33372 -198.212.238.0/23 33372 -198.212.251.0/24 7018 -198.213.0.0/19 3354 -198.213.32.0/20 3354 -198.213.48.0/21 3354 -198.213.56.0/22 14104 -198.213.60.0/22 3354 -198.213.64.0/18 3354 -198.213.128.0/18 3354 -198.213.192.0/18 18 -198.214.0.0/18 3354 -198.214.64.0/20 3354 -198.214.80.0/20 18 -198.214.96.0/19 3354 -198.214.128.0/18 3354 -198.214.192.0/19 3354 -198.214.224.0/20 3354 -198.214.240.0/21 3354 -198.214.248.0/23 3354 -198.214.250.0/23 18 -198.214.252.0/22 3354 -198.215.0.0/20 3354 -198.215.16.0/23 3354 -198.215.18.0/24 3354 -198.215.19.0/24 14104 -198.215.20.0/22 3354 -198.215.24.0/21 3354 -198.215.32.0/23 3354 -198.215.34.0/24 6922 -198.215.35.0/24 3354 -198.215.36.0/22 13998 -198.215.40.0/21 3354 -198.215.48.0/20 13998 -198.215.64.0/19 3354 -198.215.96.0/20 13998 -198.215.112.0/20 3354 -198.215.128.0/19 3354 -198.215.160.0/20 3354 -198.215.176.0/20 13998 -198.215.192.0/18 3354 -198.216.0.0/16 3354 -198.217.6.0/23 23247 -198.217.8.0/22 19774 -198.217.16.0/24 54099 -198.217.18.0/23 54099 -198.217.24.0/22 26451 -198.217.28.0/24 7029 -198.217.29.0/24 62646 -198.217.30.0/24 62646 -198.217.31.0/24 16613 -198.217.36.0/23 21807 -198.217.45.0/24 21807 -198.217.63.0/24 21807 -198.217.64.0/24 46256 -198.217.68.0/22 46441 -198.217.72.0/21 46648 -198.217.96.0/20 46648 -198.217.112.0/24 46256 -198.217.114.0/23 25985 -198.217.116.0/22 40029 -198.217.120.0/21 23423 -198.217.136.0/22 2559 -198.217.216.0/22 2559 -198.217.224.0/23 2559 -198.217.240.0/21 2559 -198.217.248.0/24 135858 -198.217.251.0/24 13335 -198.218.0.0/24 721 -198.218.1.0/24 27138 -198.218.2.0/23 721 -198.218.4.0/22 721 -198.218.8.0/22 721 -198.218.12.0/23 721 -198.218.14.0/24 721 -198.218.15.0/24 27138 -198.218.16.0/20 721 -198.218.32.0/21 721 -198.218.40.0/24 721 -198.218.41.0/24 399 -198.218.42.0/24 310 -198.218.43.0/24 721 -198.218.44.0/22 721 -198.218.48.0/23 721 -198.218.50.0/24 27137 -198.218.51.0/24 27138 -198.218.52.0/24 27138 -198.218.53.0/24 721 -198.218.54.0/24 721 -198.218.55.0/24 27138 -198.218.56.0/21 721 -198.218.64.0/24 721 -198.218.65.0/24 27138 -198.218.66.0/23 721 -198.218.68.0/22 721 -198.218.72.0/23 27138 -198.218.74.0/23 721 -198.218.76.0/22 721 -198.218.80.0/21 721 -198.218.88.0/23 721 -198.218.90.0/24 721 -198.218.91.0/24 27137 -198.218.92.0/24 27137 -198.218.93.0/24 27138 -198.218.94.0/23 721 -198.218.96.0/22 721 -198.218.100.0/24 27138 -198.218.101.0/24 721 -198.218.102.0/23 721 -198.218.104.0/22 721 -198.218.108.0/24 4021 -198.218.109.0/24 721 -198.218.110.0/23 721 -198.218.112.0/20 721 -198.218.128.0/19 721 -198.218.160.0/21 721 -198.218.168.0/22 721 -198.218.172.0/24 27138 -198.218.173.0/24 721 -198.218.174.0/24 721 -198.218.175.0/24 27138 -198.218.176.0/20 721 -198.218.192.0/21 721 -198.218.200.0/24 27138 -198.218.201.0/24 721 -198.218.202.0/23 721 -198.218.204.0/24 427 -198.218.205.0/24 721 -198.218.206.0/23 721 -198.218.208.0/20 721 -198.218.224.0/20 721 -198.218.240.0/21 721 -198.218.248.0/23 721 -198.218.250.0/24 27138 -198.218.251.0/24 721 -198.218.252.0/22 721 -198.219.0.0/17 721 -198.219.128.0/20 721 -198.219.144.0/23 721 -198.219.146.0/24 721 -198.219.147.0/24 310 -198.219.148.0/22 721 -198.219.152.0/21 721 -198.219.160.0/19 721 -198.219.192.0/18 721 -198.220.0.0/18 721 -198.220.64.0/20 721 -198.220.80.0/24 27138 -198.220.81.0/24 721 -198.220.82.0/23 721 -198.220.84.0/24 721 -198.220.85.0/24 27138 -198.220.86.0/23 721 -198.220.88.0/21 721 -198.220.96.0/19 721 -198.220.128.0/23 721 -198.220.130.0/24 721 -198.220.131.0/24 385 -198.220.132.0/22 721 -198.220.136.0/21 721 -198.220.144.0/21 721 -198.220.152.0/22 721 -198.220.156.0/24 721 -198.220.157.0/24 27138 -198.220.158.0/23 721 -198.220.160.0/19 721 -198.220.192.0/18 721 -198.222.0.0/16 721 -198.223.0.0/16 6167 -198.224.8.0/24 25993 -198.224.9.0/24 7018 -198.224.10.0/23 7018 -198.224.12.0/22 7018 -198.224.16.0/20 25993 -198.224.49.0/24 7287 -198.224.50.0/23 7287 -198.224.80.0/21 5672 -198.224.88.0/21 5671 -198.224.96.0/21 7287 -198.224.115.0/24 7287 -198.224.116.0/24 7287 -198.224.119.0/24 7287 -198.224.128.0/17 6167 -198.225.64.0/21 5672 -198.225.72.0/22 5672 -198.225.80.0/24 5672 -198.225.126.0/23 16967 -198.225.128.0/19 5671 -198.225.165.0/24 6167 -198.225.167.0/24 6167 -198.225.168.0/21 6167 -198.225.176.0/21 6167 -198.225.184.0/22 6167 -198.225.188.0/24 6167 -198.225.192.0/23 6167 -198.225.195.0/24 6167 -198.225.197.0/24 6167 -198.225.198.0/23 6167 -198.225.201.0/24 6167 -198.225.202.0/23 6167 -198.225.224.0/19 6167 -198.226.0.0/16 6167 -198.227.0.0/19 18933 -198.227.32.0/21 18933 -198.227.40.0/22 6614 -198.227.44.0/23 18933 -198.227.46.0/24 18933 -198.227.47.0/24 6614 -198.227.48.0/21 18933 -198.227.56.0/23 18933 -198.227.58.0/23 6614 -198.227.60.0/23 18933 -198.227.62.0/23 6614 -198.227.64.0/19 18933 -198.227.96.0/21 18933 -198.227.104.0/22 6614 -198.227.108.0/23 18933 -198.227.110.0/24 18933 -198.227.111.0/24 6614 -198.227.112.0/21 18933 -198.227.120.0/23 18933 -198.227.122.0/23 6614 -198.227.124.0/24 6614 -198.227.125.0/24 18933 -198.227.126.0/23 6614 -198.227.128.0/19 18933 -198.227.160.0/21 18933 -198.227.168.0/22 6614 -198.227.172.0/23 18933 -198.227.174.0/24 18933 -198.227.175.0/24 6614 -198.227.176.0/21 18933 -198.227.184.0/23 18933 -198.227.186.0/23 6614 -198.227.188.0/23 18933 -198.227.190.0/23 6614 -198.227.192.0/19 18933 -198.227.224.0/21 18933 -198.227.232.0/22 6614 -198.227.236.0/23 18933 -198.227.238.0/24 18933 -198.227.239.0/24 6614 -198.227.240.0/21 18933 -198.227.248.0/23 18933 -198.227.250.0/23 6614 -198.227.252.0/24 6614 -198.227.253.0/24 18933 -198.227.254.0/23 6614 -198.228.32.0/21 46723 -198.228.40.0/23 46723 -198.228.43.0/24 46723 -198.228.44.0/24 46723 -198.228.47.0/24 701 -198.228.48.0/20 701 -198.228.64.0/22 701 -198.228.68.0/23 701 -198.228.70.0/23 46723 -198.228.72.0/23 46723 -198.228.74.0/23 701 -198.228.76.0/22 701 -198.228.80.0/23 701 -198.228.83.0/24 701 -198.228.84.0/22 46723 -198.228.90.0/24 26611 -198.228.128.0/19 701 -198.228.160.0/21 46723 -198.228.168.0/22 46723 -198.228.172.0/23 701 -198.228.174.0/23 46723 -198.228.176.0/20 46723 -198.228.192.0/19 20057 -198.228.224.0/20 20057 -198.228.248.0/21 25993 -198.229.64.0/24 855 -198.229.66.0/24 855 -198.229.68.0/23 855 -198.229.70.0/24 855 -198.229.72.0/23 855 -198.229.75.0/24 855 -198.229.77.0/24 855 -198.229.78.0/23 855 -198.229.80.0/24 855 -198.229.84.0/22 855 -198.229.88.0/23 855 -198.229.90.0/24 855 -198.229.92.0/24 855 -198.229.94.0/24 855 -198.229.98.0/23 855 -198.229.100.0/24 855 -198.229.160.0/22 36522 -198.229.170.0/24 36522 -198.229.174.0/23 6167 -198.229.176.0/22 6167 -198.229.180.0/23 6167 -198.229.210.0/23 11062 -198.229.212.0/22 11062 -198.229.216.0/22 11062 -198.229.230.0/23 11062 -198.229.232.0/21 11062 -198.229.240.0/20 11062 -198.230.96.0/20 11062 -198.230.224.0/20 6614 -198.231.8.0/22 18469 -198.231.12.0/24 20464 -198.231.14.0/23 54833 -198.231.16.0/24 22460 -198.231.20.0/24 22460 -198.231.22.0/23 22460 -198.231.24.0/24 51200 -198.231.26.0/23 54013 -198.231.28.0/22 11758 -198.231.64.0/18 701 -198.232.8.0/22 3644 -198.232.12.0/22 1239 -198.232.16.0/24 4713 -198.232.18.0/24 40140 -198.232.27.0/24 33674 -198.232.29.0/24 33674 -198.232.30.0/23 33674 -198.232.35.0/24 22283 -198.232.36.0/23 22283 -198.232.43.0/24 2856 -198.232.44.0/22 22283 -198.232.48.0/22 22283 -198.232.52.0/23 22283 -198.232.54.0/24 22283 -198.232.56.0/21 22283 -198.232.64.0/19 396028 -198.232.96.0/21 396028 -198.232.104.0/21 21565 -198.232.112.0/22 1828 -198.232.118.0/23 1828 -198.232.120.0/21 1828 -198.232.129.0/24 7834 -198.232.133.0/24 13558 -198.232.139.0/24 54489 -198.232.159.0/24 3561 -198.232.160.0/24 396208 -198.232.165.0/24 15154 -198.232.166.0/24 15154 -198.232.168.0/24 54991 -198.232.169.0/24 2386 -198.232.183.0/24 19861 -198.232.185.0/24 36847 -198.232.186.0/23 36847 -198.232.188.0/23 36847 -198.232.191.0/24 36847 -198.232.198.0/23 1798 -198.232.200.0/22 1798 -198.232.218.0/24 54823 -198.232.219.0/24 30718 -198.232.220.0/24 29762 -198.232.221.0/24 30358 -198.232.222.0/23 54800 -198.232.228.0/24 5716 -198.232.231.0/24 23294 -198.232.242.0/24 36044 -198.232.247.0/24 11994 -198.232.249.0/24 29906 -198.232.250.0/23 29906 -198.232.252.0/24 29906 -198.232.253.0/24 7018 -198.232.254.0/23 21989 -198.233.0.0/20 209 -198.233.16.0/22 209 -198.233.20.0/23 209 -198.233.22.0/24 13649 -198.233.23.0/24 209 -198.233.24.0/21 209 -198.233.32.0/21 209 -198.233.40.0/24 209 -198.233.41.0/24 14439 -198.233.42.0/23 209 -198.233.44.0/22 209 -198.233.48.0/20 209 -198.233.64.0/23 209 -198.233.66.0/23 3257 -198.233.68.0/22 209 -198.233.72.0/21 209 -198.233.80.0/22 3257 -198.233.84.0/22 209 -198.233.88.0/23 209 -198.233.90.0/24 12050 -198.233.91.0/24 209 -198.233.92.0/22 209 -198.233.96.0/20 209 -198.233.112.0/21 209 -198.233.120.0/22 209 -198.233.124.0/22 63217 -198.233.128.0/19 209 -198.233.160.0/20 209 -198.233.176.0/24 26324 -198.233.177.0/24 40744 -198.233.178.0/23 209 -198.233.180.0/23 209 -198.233.182.0/24 209 -198.233.183.0/24 394219 -198.233.184.0/22 209 -198.233.188.0/23 209 -198.233.190.0/24 16974 -198.233.191.0/24 209 -198.233.192.0/18 209 -198.234.0.0/17 19902 -198.234.128.0/18 19902 -198.234.192.0/19 19902 -198.234.224.0/21 19902 -198.234.232.0/22 19902 -198.234.236.0/23 19902 -198.234.238.0/24 19902 -198.234.239.0/24 7018 -198.234.240.0/20 19902 -198.235.0.0/24 13997 -198.235.12.0/24 3549 -198.235.13.0/24 33651 -198.235.14.0/24 20115 -198.235.15.0/24 3549 -198.235.16.0/21 15290 -198.235.24.0/24 812 -198.235.28.0/24 26321 -198.235.54.0/23 14973 -198.235.57.0/24 54910 -198.235.59.0/24 13768 -198.235.60.0/23 54910 -198.235.63.0/24 812 -198.235.69.0/24 577 -198.235.128.0/24 53857 -198.235.130.0/23 14950 -198.235.132.0/22 54611 -198.235.143.0/24 19152 -198.235.146.0/24 15290 -198.235.155.0/24 22652 -198.235.156.0/22 395913 -198.235.160.0/21 7018 -198.235.180.0/22 11647 -198.235.184.0/24 852 -198.235.198.0/24 53910 -198.235.200.0/23 22573 -198.235.202.0/24 12188 -198.235.210.0/23 577 -198.235.212.0/22 577 -198.235.217.0/24 577 -198.235.218.0/24 577 -198.235.255.0/24 11494 -198.236.0.0/18 36416 -198.236.64.0/18 32522 -198.236.128.0/19 3933 -198.236.184.0/21 40583 -198.236.192.0/20 36416 -198.236.208.0/22 36416 -198.236.212.0/23 36416 -198.236.214.0/24 36416 -198.236.215.0/24 36222 -198.236.216.0/24 36222 -198.236.217.0/24 36416 -198.236.218.0/23 36416 -198.236.220.0/22 36416 -198.236.224.0/19 36416 -198.237.0.0/21 3701 -198.237.8.0/23 3701 -198.237.10.0/24 13692 -198.237.11.0/24 3701 -198.237.12.0/22 3701 -198.237.16.0/20 13692 -198.237.32.0/20 46159 -198.237.48.0/22 35929 -198.237.52.0/24 397963 -198.237.53.0/24 3933 -198.237.54.0/23 3933 -198.237.56.0/21 3933 -198.237.64.0/19 3701 -198.237.96.0/20 3701 -198.237.112.0/21 32522 -198.237.120.0/21 3701 -198.237.128.0/20 3701 -198.237.144.0/20 36416 -198.237.160.0/22 36416 -198.237.164.0/22 32522 -198.237.168.0/21 32522 -198.237.176.0/20 32522 -198.237.192.0/22 25899 -198.237.196.0/22 3933 -198.237.200.0/21 13692 -198.237.208.0/22 20115 -198.237.212.0/23 20115 -198.237.214.0/24 20328 -198.237.215.0/24 20115 -198.237.216.0/21 20115 -198.237.224.0/20 20115 -198.237.240.0/20 3933 -198.238.0.0/17 4193 -198.238.128.0/18 4193 -198.238.192.0/20 4193 -198.238.208.0/22 4193 -198.238.212.0/23 14827 -198.238.214.0/23 4193 -198.238.216.0/21 4193 -198.238.224.0/19 4193 -198.239.0.0/16 4193 -198.240.64.0/24 53723 -198.240.65.0/24 204472 -198.240.66.0/23 204472 -198.240.68.0/22 204472 -198.240.72.0/21 204472 -198.240.80.0/21 204472 -198.240.88.0/22 204472 -198.240.92.0/22 200494 -198.240.96.0/22 200494 -198.240.100.0/22 204472 -198.240.104.0/23 204472 -198.240.106.0/24 204472 -198.240.107.0/24 53723 -198.240.108.0/24 203999 -198.240.109.0/24 53723 -198.240.110.0/23 53723 -198.240.112.0/24 203999 -198.240.113.0/24 204472 -198.240.114.0/23 204472 -198.240.116.0/24 204472 -198.240.117.0/24 203999 -198.240.118.0/23 53723 -198.240.120.0/21 204472 -198.240.128.0/24 3096 -198.240.129.0/24 8729 -198.240.130.0/24 3412 -198.240.131.0/24 3095 -198.240.133.0/24 4410 -198.240.135.0/24 4410 -198.240.136.0/24 4410 -198.240.138.0/24 3083 -198.240.139.0/24 3096 -198.240.141.0/24 3084 -198.240.143.0/24 3095 -198.240.144.0/24 4410 -198.240.146.0/24 3108 -198.240.148.0/24 3107 -198.240.150.0/24 8729 -198.240.151.0/24 3107 -198.240.161.0/24 8729 -198.240.209.0/24 8729 -198.240.210.0/24 8729 -198.240.212.0/22 8729 -198.240.216.0/23 8729 -198.240.220.0/24 8729 -198.241.0.0/21 14242 -198.241.10.0/23 32771 -198.241.12.0/22 54829 -198.241.16.0/20 13998 -198.241.44.0/22 29889 -198.241.48.0/21 27425 -198.241.56.0/22 27425 -198.241.60.0/24 396347 -198.241.61.0/24 27425 -198.241.62.0/23 27425 -198.241.128.0/23 2559 -198.241.130.0/24 15992 -198.241.131.0/24 2559 -198.241.132.0/22 2559 -198.241.136.0/21 2559 -198.241.144.0/20 2559 -198.241.160.0/20 2559 -198.241.176.0/22 2559 -198.241.180.0/24 19500 -198.241.181.0/24 2559 -198.241.182.0/23 2559 -198.241.184.0/22 2559 -198.241.188.0/24 19500 -198.241.189.0/24 2559 -198.241.190.0/23 2559 -198.241.192.0/21 2559 -198.241.200.0/24 2559 -198.241.201.0/24 15992 -198.241.202.0/23 15992 -198.241.204.0/24 15992 -198.241.205.0/24 2559 -198.241.206.0/23 2559 -198.241.208.0/20 2559 -198.241.224.0/19 2559 -198.242.0.0/20 174 -198.242.16.0/22 174 -198.242.20.0/23 174 -198.242.22.0/24 174 -198.242.23.0/24 11086 -198.242.24.0/21 174 -198.242.32.0/21 174 -198.242.40.0/23 174 -198.242.42.0/24 27003 -198.242.43.0/24 174 -198.242.44.0/22 174 -198.242.48.0/22 174 -198.242.52.0/23 174 -198.242.54.0/24 174 -198.242.55.0/24 6128 -198.242.56.0/24 36378 -198.242.57.0/24 174 -198.242.58.0/23 174 -198.242.60.0/22 174 -198.242.64.0/19 174 -198.242.96.0/21 174 -198.242.104.0/22 174 -198.242.108.0/23 174 -198.242.110.0/24 174 -198.242.111.0/24 63007 -198.242.112.0/20 174 -198.242.128.0/18 174 -198.242.192.0/20 174 -198.242.208.0/22 46887 -198.242.212.0/24 46887 -198.242.213.0/24 174 -198.242.214.0/23 174 -198.242.216.0/21 174 -198.242.224.0/19 174 -198.243.0.0/20 209 -198.243.16.0/21 209 -198.243.24.0/23 209 -198.243.26.0/24 10835 -198.243.27.0/24 209 -198.243.28.0/22 209 -198.243.32.0/23 209 -198.243.34.0/24 209 -198.243.35.0/24 36442 -198.243.36.0/22 209 -198.243.40.0/21 209 -198.243.48.0/21 209 -198.243.56.0/22 209 -198.243.60.0/24 209 -198.243.61.0/24 53598 -198.243.62.0/23 53598 -198.243.64.0/23 53598 -198.243.66.0/23 209 -198.243.68.0/22 209 -198.243.72.0/21 209 -198.243.80.0/20 209 -198.243.96.0/19 209 -198.243.128.0/17 209 -198.244.0.0/21 18630 -198.244.8.0/23 18630 -198.244.10.0/23 45638 -198.244.12.0/22 1442 -198.244.16.0/23 13990 -198.244.24.0/23 13990 -198.244.47.0/24 27029 -198.244.48.0/20 13768 -198.244.80.0/20 54932 -198.244.96.0/20 54858 -198.244.112.0/20 32614 -198.245.0.0/21 29892 -198.245.11.0/24 701 -198.245.13.0/24 46568 -198.245.14.0/23 396915 -198.245.16.0/23 5655 -198.245.19.0/24 5655 -198.245.21.0/24 5655 -198.245.23.0/24 5655 -198.245.25.0/24 5655 -198.245.26.0/23 5655 -198.245.29.0/24 5655 -198.245.30.0/24 5655 -198.245.32.0/21 55292 -198.245.40.0/23 55292 -198.245.42.0/23 54430 -198.245.44.0/22 46632 -198.245.48.0/20 16276 -198.245.64.0/21 55286 -198.245.72.0/23 55286 -198.245.75.0/24 55286 -198.245.76.0/24 55286 -198.245.77.0/24 55081 -198.245.78.0/23 55286 -198.245.80.0/21 22606 -198.245.88.0/23 22606 -198.245.90.0/24 22606 -198.245.92.0/22 22606 -198.245.96.0/20 36423 -198.245.112.0/20 803 -198.245.128.0/22 18995 -198.245.132.0/23 18995 -198.245.134.0/23 2048 -198.245.136.0/24 2048 -198.245.140.0/24 7018 -198.245.141.0/24 2048 -198.245.142.0/23 7996 -198.245.144.0/23 7996 -198.245.146.0/24 7996 -198.245.150.0/24 40458 -198.245.157.0/24 32625 -198.245.158.0/24 55043 -198.245.174.0/23 22840 -198.245.176.0/23 27367 -198.245.178.0/24 18513 -198.245.187.0/24 35960 -198.245.188.0/23 35960 -198.245.190.0/24 394206 -198.245.192.0/24 3356 -198.245.193.0/24 394446 -198.245.194.0/23 394446 -198.245.196.0/23 394446 -198.245.198.0/24 394446 -198.245.202.0/24 22868 -198.245.206.0/24 20001 -198.245.210.0/23 3719 -198.245.214.0/24 5650 -198.245.215.0/24 394708 -198.245.240.0/24 46732 -198.245.241.0/24 16640 -198.245.242.0/24 16640 -198.245.245.0/24 14630 -198.245.246.0/24 14630 -198.245.254.0/24 7018 -198.245.255.0/24 54848 -198.246.0.0/21 16489 -198.246.21.0/24 395765 -198.246.22.0/23 395765 -198.246.25.0/24 2828 -198.246.26.0/23 16622 -198.246.28.0/22 14102 -198.246.32.0/24 11999 -198.246.44.0/22 31798 -198.246.75.0/24 701 -198.246.96.0/21 13611 -198.246.106.0/24 13611 -198.246.109.0/24 13611 -198.246.110.0/24 13611 -198.246.112.0/24 13611 -198.246.115.0/24 13611 -198.246.116.0/23 13611 -198.246.119.0/24 13611 -198.246.120.0/23 13611 -198.246.124.0/22 13611 -198.246.135.0/24 701 -198.246.136.0/22 701 -198.246.149.0/24 13892 -198.246.150.0/23 13892 -198.246.152.0/24 13892 -198.246.153.0/24 3356 -198.246.154.0/24 6318 -198.246.155.0/24 21869 -198.246.159.0/24 2020 -198.246.160.0/24 13423 -198.246.161.0/24 7018 -198.246.162.0/23 7018 -198.246.164.0/24 53499 -198.246.165.0/24 7018 -198.246.166.0/24 7018 -198.246.167.0/24 53499 -198.246.168.0/24 53499 -198.246.169.0/24 7018 -198.246.170.0/23 35962 -198.246.172.0/22 35962 -198.246.176.0/24 33491 -198.246.177.0/24 11692 -198.246.186.0/24 46150 -198.246.188.0/22 53834 -198.246.196.0/24 40619 -198.246.200.0/24 21737 -198.246.204.0/22 54178 -198.246.208.0/24 13649 -198.246.210.0/24 53595 -198.246.217.0/24 29712 -198.246.218.0/24 29712 -198.246.222.0/24 14299 -198.246.223.0/24 9234 -198.246.229.0/24 31794 -198.246.230.0/24 31794 -198.246.243.0/24 27259 -198.246.244.0/23 4358 -198.246.246.0/24 18527 -198.246.249.0/24 33085 -198.246.250.0/23 33085 -198.246.252.0/23 33085 -198.246.254.0/24 7834 -198.246.255.0/24 19010 -198.247.0.0/17 2914 -198.247.128.0/19 2914 -198.247.160.0/21 2914 -198.247.168.0/22 2914 -198.247.172.0/22 22576 -198.247.176.0/20 2914 -198.247.192.0/18 2914 -198.248.0.0/19 20177 -198.248.32.0/22 2495 -198.248.36.0/23 2495 -198.248.38.0/24 16826 -198.248.39.0/24 2495 -198.248.40.0/21 2495 -198.248.48.0/21 2495 -198.248.56.0/22 2495 -198.248.60.0/24 2495 -198.248.61.0/24 16826 -198.248.62.0/23 2495 -198.248.64.0/19 2495 -198.248.96.0/20 16826 -198.248.112.0/20 2495 -198.248.128.0/17 2495 -198.249.200.0/24 40227 -198.250.0.0/23 27086 -198.250.64.0/19 27086 -198.250.128.0/18 5972 -198.250.192.0/20 5972 -198.250.208.0/21 5972 -198.250.216.0/24 721 -198.250.217.0/24 5972 -198.250.218.0/23 5972 -198.250.220.0/23 721 -198.250.222.0/24 5972 -198.250.223.0/24 721 -198.250.224.0/20 5972 -198.250.240.0/21 5972 -198.250.248.0/22 5972 -198.250.252.0/24 5972 -198.250.253.0/24 721 -198.250.254.0/23 721 -198.251.0.0/22 19774 -198.251.4.0/23 62975 -198.251.7.0/24 62975 -198.251.8.0/23 2386 -198.251.15.0/24 22039 -198.251.23.0/24 26912 -198.251.24.0/23 26912 -198.251.26.0/24 26912 -198.251.30.0/24 26912 -198.251.31.0/24 40521 -198.251.40.0/21 21668 -198.251.48.0/20 54198 -198.251.64.0/20 8560 -198.251.80.0/22 53667 -198.251.84.0/24 53667 -198.251.86.0/23 53667 -198.251.88.0/23 53667 -198.251.90.0/24 53667 -198.251.92.0/22 46261 -198.251.96.0/20 54923 -198.251.112.0/20 13866 -198.251.128.0/17 53732 -198.252.8.0/21 29955 -198.252.32.0/24 203999 -198.252.33.0/24 3502 -198.252.34.0/24 203999 -198.252.35.0/24 3502 -198.252.36.0/24 3502 -198.252.37.0/24 203999 -198.252.38.0/24 3502 -198.252.39.0/24 203999 -198.252.40.0/23 3502 -198.252.42.0/24 203999 -198.252.43.0/24 3502 -198.252.44.0/24 203999 -198.252.45.0/24 3502 -198.252.46.0/23 203999 -198.252.48.0/24 3502 -198.252.49.0/24 204472 -198.252.50.0/24 204472 -198.252.51.0/24 3502 -198.252.52.0/23 3502 -198.252.54.0/24 204472 -198.252.55.0/24 3502 -198.252.56.0/24 3502 -198.252.57.0/24 204472 -198.252.58.0/24 3502 -198.252.59.0/24 204472 -198.252.60.0/23 3502 -198.252.62.0/24 204472 -198.252.63.0/24 3502 -198.252.64.0/20 46606 -198.252.80.0/20 36518 -198.252.96.0/23 20473 -198.252.98.0/23 20068 -198.252.100.0/24 20068 -198.252.101.0/24 36351 -198.252.102.0/24 20068 -198.252.103.0/24 36351 -198.252.104.0/22 20068 -198.252.108.0/23 20068 -198.252.110.0/24 59253 -198.252.111.0/24 36351 -198.252.112.0/21 2386 -198.252.120.0/24 2386 -198.252.121.0/24 54934 -198.252.122.0/23 54934 -198.252.124.0/22 54934 -198.252.136.0/24 23491 -198.252.138.0/24 11520 -198.252.143.0/24 683 -198.252.144.0/24 16557 -198.252.153.0/24 16652 -198.252.155.0/24 12253 -198.252.156.0/23 12253 -198.252.159.0/24 53292 -198.252.160.0/24 22673 -198.252.162.0/23 46330 -198.252.165.0/24 395761 -198.252.166.0/23 394933 -198.252.168.0/24 397013 -198.252.172.0/23 7016 -198.252.182.0/24 27325 -198.252.191.0/24 32857 -198.252.192.0/24 32857 -198.252.196.0/22 11114 -198.252.200.0/24 13500 -198.252.201.0/24 3144 -198.252.203.0/24 25945 -198.252.206.0/24 25791 -198.252.208.0/23 33660 -198.252.211.0/24 1798 -198.252.222.0/24 26682 -198.252.227.0/24 394058 -198.252.228.0/24 394058 -198.252.230.0/24 12088 -198.252.231.0/24 1798 -198.252.232.0/24 13702 -198.252.240.0/23 62507 -198.252.242.0/23 701 -198.252.244.0/23 20047 -198.252.246.0/24 22773 -198.253.16.0/20 668 -198.253.40.0/21 668 -198.253.48.0/20 22 -198.253.64.0/21 668 -198.253.98.0/23 668 -198.253.108.0/22 668 -198.253.128.0/19 668 -198.253.168.0/21 668 -198.253.176.0/20 668 -198.253.192.0/20 668 -198.253.252.0/23 668 -198.253.254.0/24 668 -198.254.16.0/24 31750 -198.254.26.0/23 394858 -198.254.28.0/22 2386 -198.254.64.0/21 33070 -198.254.72.0/21 19994 -198.254.80.0/20 26827 -198.254.96.0/20 40430 -198.254.112.0/20 18616 -198.254.144.0/20 22995 -198.254.160.0/19 22995 -198.254.192.0/18 22995 -198.255.0.0/17 174 -198.255.128.0/17 11351 -199.0.0.0/19 1239 -199.0.32.0/20 1239 -199.0.48.0/22 1239 -199.0.52.0/24 1789 -199.0.53.0/24 1239 -199.0.54.0/23 1239 -199.0.56.0/21 1239 -199.0.64.0/23 1239 -199.0.66.0/24 1239 -199.0.67.0/24 1789 -199.0.68.0/22 1239 -199.0.72.0/22 1239 -199.0.76.0/22 396485 -199.0.80.0/20 1239 -199.0.96.0/19 1239 -199.0.128.0/20 1239 -199.0.144.0/24 1790 -199.0.145.0/24 1789 -199.0.146.0/23 1239 -199.0.148.0/22 1239 -199.0.152.0/22 1239 -199.0.156.0/23 1239 -199.0.158.0/23 1789 -199.0.160.0/20 1239 -199.0.176.0/21 1239 -199.0.184.0/22 22885 -199.0.188.0/22 1239 -199.0.192.0/20 14174 -199.0.208.0/20 1239 -199.0.224.0/21 1239 -199.0.232.0/23 1789 -199.0.234.0/24 1789 -199.0.235.0/24 1239 -199.0.236.0/23 1789 -199.0.238.0/24 1789 -199.0.239.0/24 1239 -199.0.240.0/20 1239 -199.1.0.0/24 1239 -199.1.1.0/24 22822 -199.1.2.0/23 1239 -199.1.4.0/22 1239 -199.1.8.0/21 1239 -199.1.16.0/24 23508 -199.1.17.0/24 1239 -199.1.18.0/23 1239 -199.1.20.0/22 1239 -199.1.24.0/21 1239 -199.1.32.0/22 1239 -199.1.36.0/23 6157 -199.1.38.0/23 1239 -199.1.40.0/21 1239 -199.1.48.0/20 1239 -199.1.64.0/21 1239 -199.1.72.0/23 36550 -199.1.74.0/23 1239 -199.1.76.0/22 1239 -199.1.80.0/21 395800 -199.1.88.0/23 1239 -199.1.90.0/24 1239 -199.1.91.0/24 2828 -199.1.92.0/22 1239 -199.1.96.0/19 1239 -199.1.128.0/20 26133 -199.1.144.0/24 1239 -199.1.145.0/24 29717 -199.1.146.0/24 11030 -199.1.147.0/24 33198 -199.1.148.0/22 1239 -199.1.152.0/21 14979 -199.1.160.0/19 1239 -199.1.192.0/22 32614 -199.1.196.0/22 1239 -199.1.200.0/21 1239 -199.1.208.0/20 1239 -199.1.224.0/19 1239 -199.2.0.0/18 1239 -199.2.64.0/19 1239 -199.2.96.0/20 1239 -199.2.112.0/21 11816 -199.2.120.0/21 1239 -199.2.128.0/22 1239 -199.2.132.0/23 1239 -199.2.134.0/24 1239 -199.2.135.0/24 11924 -199.2.136.0/24 1239 -199.2.137.0/24 3598 -199.2.138.0/23 1239 -199.2.140.0/22 1239 -199.2.144.0/20 1239 -199.2.160.0/19 1239 -199.2.192.0/19 1239 -199.2.224.0/20 1239 -199.2.240.0/22 1239 -199.2.244.0/23 1239 -199.2.246.0/24 1239 -199.2.247.0/24 11539 -199.2.248.0/24 11676 -199.2.249.0/24 1239 -199.2.250.0/23 1239 -199.2.252.0/22 1239 -199.3.0.0/21 1239 -199.3.8.0/22 1239 -199.3.12.0/24 2828 -199.3.13.0/24 1239 -199.3.14.0/23 1239 -199.3.16.0/23 1239 -199.3.18.0/24 395834 -199.3.19.0/24 1239 -199.3.20.0/22 1239 -199.3.24.0/21 1239 -199.3.32.0/19 1239 -199.3.64.0/19 1239 -199.3.96.0/21 1239 -199.3.104.0/22 1239 -199.3.108.0/23 15157 -199.3.110.0/23 1239 -199.3.112.0/20 1239 -199.3.128.0/18 1239 -199.3.192.0/20 1239 -199.3.208.0/22 1239 -199.3.212.0/24 14174 -199.3.213.0/24 1239 -199.3.214.0/23 1239 -199.3.216.0/21 1239 -199.3.224.0/23 1239 -199.3.226.0/23 1789 -199.3.228.0/22 1239 -199.3.232.0/22 1239 -199.3.236.0/23 1239 -199.3.238.0/24 1239 -199.3.239.0/24 26556 -199.3.240.0/22 1239 -199.3.244.0/24 1239 -199.3.245.0/24 1789 -199.3.246.0/23 1239 -199.3.248.0/21 1239 -199.4.18.0/24 21717 -199.4.20.0/24 21717 -199.4.23.0/24 31743 -199.4.27.0/24 31743 -199.4.28.0/24 40528 -199.4.29.0/24 16876 -199.4.31.0/24 26710 -199.4.32.0/19 3549 -199.4.64.0/19 2914 -199.4.96.0/21 2914 -199.4.104.0/22 2914 -199.4.108.0/23 2914 -199.4.110.0/24 174 -199.4.111.0/24 2914 -199.4.112.0/20 2914 -199.4.130.0/23 243 -199.4.132.0/24 7018 -199.4.133.0/24 395580 -199.4.134.0/24 395580 -199.4.137.0/24 42 -199.4.138.0/24 26710 -199.4.140.0/22 2711 -199.4.144.0/24 55195 -199.4.146.0/23 2711 -199.4.150.0/24 6939 -199.4.151.0/24 62900 -199.4.152.0/24 33083 -199.4.159.0/24 701 -199.4.160.0/24 14783 -199.4.161.0/24 394296 -199.4.162.0/24 32329 -199.4.163.0/24 11403 -199.4.164.0/22 2711 -199.4.189.0/24 13352 -199.4.190.0/24 394232 -199.4.191.0/24 10835 -199.4.192.0/24 7385 -199.4.205.0/24 19631 -199.4.216.0/23 19063 -199.4.218.0/24 7091 -199.4.220.0/24 22691 -199.4.223.0/24 46652 -199.4.225.0/24 2711 -199.4.235.0/24 29838 -199.4.236.0/22 46164 -199.4.240.0/24 46164 -199.4.246.0/23 2711 -199.4.249.0/24 2711 -199.4.250.0/23 7872 -199.4.255.0/24 53543 -199.5.0.0/24 21439 -199.5.8.0/21 22732 -199.5.26.0/24 394018 -199.5.28.0/24 55227 -199.5.30.0/23 40578 -199.5.32.0/20 3458 -199.5.48.0/23 3458 -199.5.50.0/24 3458 -199.5.51.0/24 26827 -199.5.52.0/24 7046 -199.5.53.0/24 3458 -199.5.54.0/23 3458 -199.5.56.0/23 3458 -199.5.58.0/24 16792 -199.5.59.0/24 19409 -199.5.60.0/23 19409 -199.5.62.0/24 3458 -199.5.63.0/24 19409 -199.5.64.0/18 18756 -199.5.132.0/24 2686 -199.5.133.0/24 20473 -199.5.137.0/24 7782 -199.5.148.0/22 2828 -199.5.154.0/23 3464 -199.5.156.0/23 3736 -199.5.163.0/24 7029 -199.5.171.0/24 19092 -199.5.172.0/24 33588 -199.5.179.0/24 3549 -199.5.180.0/23 3549 -199.5.182.0/24 3549 -199.5.184.0/24 13768 -199.5.189.0/24 20001 -199.5.193.0/24 13337 -199.5.197.0/24 29848 -199.5.199.0/24 22192 -199.5.200.0/24 22192 -199.5.201.0/24 32840 -199.5.204.0/22 2711 -199.5.210.0/23 2711 -199.5.213.0/24 7385 -199.5.214.0/23 7385 -199.5.221.0/24 15305 -199.5.223.0/24 394306 -199.5.231.0/24 19108 -199.5.232.0/24 22925 -199.5.253.0/24 397138 -199.5.255.0/24 21777 -199.6.0.0/24 33071 -199.6.1.0/24 30132 -199.6.4.0/24 30134 -199.6.5.0/24 33072 -199.6.7.0/24 33075 -199.6.8.0/24 33076 -199.6.9.0/24 33077 -199.6.12.0/24 33080 -199.6.14.0/24 33082 -199.6.15.0/24 394489 -199.6.18.0/24 14267 -199.6.20.0/24 3561 -199.6.26.0/24 209 -199.6.27.0/24 14267 -199.6.28.0/24 14019 -199.6.30.0/23 14267 -199.6.32.0/19 6977 -199.6.94.0/24 6453 -199.6.98.0/24 3300 -199.6.128.0/21 29063 -199.6.139.0/24 32382 -199.6.154.0/24 29063 -199.6.158.0/24 72 -199.6.160.0/19 72 -199.6.194.0/24 72 -199.6.197.0/24 2567 -199.6.198.0/23 2567 -199.6.200.0/21 72 -199.6.208.0/22 72 -199.6.214.0/23 2567 -199.6.216.0/22 2567 -199.6.221.0/24 2567 -199.6.222.0/23 2567 -199.6.232.0/24 72 -199.6.236.0/22 2567 -199.6.240.0/22 72 -199.6.247.0/24 72 -199.6.248.0/24 72 -199.7.20.0/24 396143 -199.7.47.0/24 394343 -199.7.52.0/24 7342 -199.7.59.0/24 7342 -199.7.60.0/23 7342 -199.7.63.0/24 26415 -199.7.66.0/24 397215 -199.7.67.0/24 397213 -199.7.68.0/24 397215 -199.7.69.0/24 397213 -199.7.73.0/24 7342 -199.7.75.0/24 26415 -199.7.76.0/24 26415 -199.7.78.0/23 26415 -199.7.82.0/23 20144 -199.7.85.0/24 36598 -199.7.87.0/24 12041 -199.7.91.0/24 10886 -199.7.95.0/24 20144 -199.7.98.0/24 26631 -199.7.99.0/24 33193 -199.7.100.0/24 19159 -199.7.101.0/24 16546 -199.7.104.0/24 32592 -199.7.105.0/24 3962 -199.7.106.0/23 3962 -199.7.108.0/23 32592 -199.7.110.0/23 53997 -199.7.112.0/22 14813 -199.7.116.0/23 14813 -199.7.118.0/24 14813 -199.7.120.0/21 395172 -199.7.128.0/21 53536 -199.7.136.0/22 33044 -199.7.148.0/22 13974 -199.7.152.0/23 6653 -199.7.154.0/24 6653 -199.7.155.0/24 398163 -199.7.156.0/22 20365 -199.7.164.0/22 395336 -199.7.168.0/22 5106 -199.7.172.0/22 40185 -199.7.176.0/21 7366 -199.7.184.0/23 32402 -199.7.192.0/21 21817 -199.7.200.0/23 15334 -199.7.202.0/23 16474 -199.7.204.0/22 16474 -199.7.208.0/22 46869 -199.7.212.0/23 17378 -199.7.214.0/24 17378 -199.7.215.0/24 12025 -199.7.216.0/22 19052 -199.7.220.0/22 26670 -199.7.224.0/23 13729 -199.7.227.0/24 13729 -199.7.228.0/22 13729 -199.7.232.0/23 20161 -199.7.234.0/24 20161 -199.7.235.0/24 30406 -199.7.236.0/22 20161 -199.7.240.0/22 14539 -199.7.244.0/22 15294 -199.8.0.0/20 1767 -199.8.16.0/21 397534 -199.8.24.0/22 397534 -199.8.28.0/22 396892 -199.8.32.0/22 396892 -199.8.36.0/22 1767 -199.8.40.0/21 1767 -199.8.48.0/22 1767 -199.8.52.0/23 1767 -199.8.54.0/23 395395 -199.8.56.0/23 1767 -199.8.58.0/24 1767 -199.8.59.0/24 396947 -199.8.60.0/22 396947 -199.8.64.0/21 395395 -199.8.72.0/24 396947 -199.8.73.0/24 1767 -199.8.74.0/23 1767 -199.8.76.0/22 1767 -199.8.80.0/21 1767 -199.8.88.0/22 1767 -199.8.92.0/22 46149 -199.8.96.0/19 1767 -199.8.128.0/21 1767 -199.8.136.0/22 46149 -199.8.140.0/22 1767 -199.8.144.0/20 1767 -199.8.160.0/21 1767 -199.8.168.0/22 46149 -199.8.172.0/22 1767 -199.8.176.0/20 1767 -199.8.192.0/19 1767 -199.8.224.0/21 1767 -199.8.232.0/21 22966 -199.8.240.0/20 1767 -199.9.0.0/23 668 -199.9.2.0/24 668 -199.9.3.0/24 32264 -199.9.13.0/24 394092 -199.9.14.0/23 394353 -199.9.57.0/24 271 -199.9.60.0/22 1818 -199.9.64.0/23 27064 -199.9.66.0/23 721 -199.9.68.0/24 721 -199.9.69.0/24 3474 -199.9.70.0/24 3474 -199.9.71.0/24 3472 -199.9.72.0/23 3472 -199.9.74.0/23 3474 -199.9.76.0/23 721 -199.9.78.0/23 3474 -199.9.80.0/22 3474 -199.9.84.0/23 3474 -199.9.86.0/24 3471 -199.9.87.0/24 3474 -199.9.88.0/24 3474 -199.9.89.0/24 3471 -199.9.90.0/23 3471 -199.9.92.0/23 721 -199.9.94.0/24 3471 -199.9.95.0/24 310 -199.9.96.0/19 721 -199.9.178.0/23 518 -199.9.180.0/22 518 -199.9.224.0/23 518 -199.9.228.0/23 518 -199.9.230.0/24 518 -199.9.232.0/21 518 -199.9.240.0/21 518 -199.9.248.0/21 46489 -199.10.4.0/22 393238 -199.10.8.0/24 37 -199.10.10.0/23 37 -199.10.16.0/22 668 -199.10.20.0/24 668 -199.10.28.0/22 36483 -199.10.32.0/24 6040 -199.10.33.0/24 367 -199.10.34.0/24 6041 -199.10.35.0/24 367 -199.10.36.0/22 6041 -199.10.59.0/24 1504 -199.10.61.0/24 1590 -199.10.62.0/24 668 -199.10.64.0/24 397086 -199.10.66.0/24 198260 -199.10.68.0/23 27046 -199.10.70.0/24 27046 -199.10.84.0/24 16696 -199.10.86.0/24 27142 -199.10.87.0/24 62738 -199.10.105.0/24 46401 -199.10.120.0/23 27064 -199.10.122.0/24 27064 -199.10.123.0/24 394274 -199.10.125.0/24 1778 -199.10.127.0/24 668 -199.10.136.0/23 27064 -199.10.140.0/24 27064 -199.10.148.0/24 668 -199.10.150.0/23 7015 -199.10.152.0/22 5972 -199.10.156.0/24 5972 -199.10.160.0/22 5972 -199.10.187.0/24 5972 -199.10.188.0/22 5972 -199.10.192.0/24 5972 -199.10.194.0/24 5972 -199.10.231.0/24 27064 -199.10.233.0/24 668 -199.10.235.0/24 5979 -199.10.239.0/24 5972 -199.10.245.0/24 5972 -199.10.246.0/23 5972 -199.10.253.0/24 394499 -199.11.0.0/21 3648 -199.11.8.0/22 3648 -199.11.12.0/24 3648 -199.11.15.0/24 3648 -199.11.18.0/24 1790 -199.11.19.0/24 3648 -199.11.20.0/22 1790 -199.11.24.0/21 1790 -199.15.0.0/21 6325 -199.15.28.0/22 46490 -199.15.72.0/23 2636 -199.15.80.0/21 21775 -199.15.88.0/24 21775 -199.15.89.0/24 174 -199.15.92.0/22 18612 -199.15.99.0/24 20201 -199.15.100.0/24 20201 -199.15.102.0/23 20201 -199.15.104.0/21 11492 -199.15.112.0/21 40676 -199.15.120.0/22 33069 -199.15.128.0/21 14238 -199.15.136.0/23 11826 -199.15.138.0/24 11826 -199.15.140.0/23 11826 -199.15.142.0/24 11826 -199.15.144.0/22 3565 -199.15.148.0/23 3565 -199.15.150.0/24 3565 -199.15.151.0/24 511 -199.15.152.0/21 53567 -199.15.164.0/23 25956 -199.15.166.0/24 25956 -199.15.167.0/24 15192 -199.15.168.0/21 15085 -199.15.176.0/22 53582 -199.15.180.0/22 15092 -199.15.184.0/22 7029 -199.15.192.0/21 25865 -199.15.206.0/24 41095 -199.15.212.0/23 15224 -199.15.214.0/23 53580 -199.15.216.0/21 21577 -199.15.228.0/22 19626 -199.15.232.0/21 48101 -199.15.244.0/22 19988 -199.15.248.0/21 29713 -199.16.0.0/22 3379 -199.16.4.0/23 3379 -199.16.8.0/21 53264 -199.16.29.0/24 3356 -199.16.30.0/24 17054 -199.16.31.0/24 31863 -199.16.32.0/24 18540 -199.16.33.0/24 40565 -199.16.34.0/23 18540 -199.16.36.0/22 54069 -199.16.40.0/23 1616 -199.16.42.0/23 13649 -199.16.44.0/22 1616 -199.16.48.0/21 17185 -199.16.56.0/24 11139 -199.16.57.0/24 15344 -199.16.58.0/23 11139 -199.16.60.0/22 46655 -199.16.64.0/20 54521 -199.16.80.0/23 26415 -199.16.84.0/24 11840 -199.16.88.0/23 26415 -199.16.92.0/24 26415 -199.16.96.0/21 53646 -199.16.108.0/22 54523 -199.16.112.0/22 26357 -199.16.116.0/24 53811 -199.16.118.0/24 53811 -199.16.120.0/22 23089 -199.16.124.0/22 26375 -199.16.128.0/22 53589 -199.16.132.0/22 27227 -199.16.136.0/21 11641 -199.16.144.0/23 4898 -199.16.146.0/24 15570 -199.16.148.0/22 46601 -199.16.152.0/23 53525 -199.16.155.0/24 53525 -199.16.156.0/22 13414 -199.16.160.0/22 26958 -199.16.164.0/23 26958 -199.16.168.0/22 16784 -199.16.172.0/22 2635 -199.16.176.0/22 40076 -199.16.180.0/22 14820 -199.16.184.0/21 53292 -199.16.192.0/24 394563 -199.16.194.0/24 394563 -199.16.196.0/22 17330 -199.16.200.0/21 14379 -199.16.208.0/22 14224 -199.16.212.0/22 21835 -199.16.216.0/21 393227 -199.16.236.0/22 14960 -199.16.240.0/22 397525 -199.16.248.0/22 23313 -199.16.252.0/22 17364 -199.17.0.0/16 675 -199.18.0.0/19 600 -199.18.32.0/20 3112 -199.18.48.0/21 600 -199.18.56.0/24 600 -199.18.57.0/24 11446 -199.18.58.0/23 600 -199.18.60.0/22 600 -199.18.64.0/18 600 -199.18.128.0/21 600 -199.18.136.0/23 600 -199.18.138.0/24 600 -199.18.139.0/24 3112 -199.18.140.0/22 600 -199.18.144.0/20 600 -199.18.160.0/19 600 -199.18.192.0/21 600 -199.18.200.0/22 600 -199.18.204.0/22 3112 -199.18.208.0/22 3112 -199.18.212.0/22 600 -199.18.216.0/21 600 -199.18.224.0/21 600 -199.18.232.0/23 600 -199.18.234.0/23 3112 -199.18.236.0/22 3112 -199.18.240.0/23 600 -199.18.242.0/24 600 -199.18.243.0/24 13501 -199.18.244.0/22 600 -199.18.248.0/21 600 -199.19.0.0/24 33517 -199.19.1.0/24 15135 -199.19.2.0/23 15135 -199.19.5.0/24 15135 -199.19.6.0/23 15135 -199.19.8.0/23 32703 -199.19.43.0/24 5650 -199.19.48.0/24 12287 -199.19.49.0/24 40490 -199.19.50.0/24 12287 -199.19.51.0/24 63403 -199.19.52.0/24 13901 -199.19.53.0/24 12041 -199.19.54.0/23 12041 -199.19.56.0/23 12041 -199.19.60.0/22 46300 -199.19.64.0/21 14244 -199.19.76.0/23 53340 -199.19.78.0/24 62710 -199.19.79.0/24 53340 -199.19.80.0/23 3800 -199.19.82.0/24 3800 -199.19.84.0/22 54112 -199.19.88.0/22 54105 -199.19.92.0/24 7040 -199.19.94.0/23 7040 -199.19.96.0/23 54098 -199.19.98.0/24 54876 -199.19.99.0/24 54098 -199.19.100.0/23 1222 -199.19.102.0/23 32098 -199.19.104.0/21 25820 -199.19.112.0/21 26223 -199.19.120.0/22 32478 -199.19.124.0/22 14745 -199.19.128.0/22 23500 -199.19.132.0/22 14526 -199.19.136.0/22 10717 -199.19.140.0/24 14199 -199.19.141.0/24 10717 -199.19.143.0/24 10717 -199.19.144.0/22 10558 -199.19.156.0/22 36363 -199.19.160.0/21 22060 -199.19.168.0/21 11439 -199.19.176.0/21 22725 -199.19.186.0/23 46185 -199.19.192.0/24 14618 -199.19.195.0/24 21534 -199.19.196.0/24 21534 -199.19.198.0/24 13813 -199.19.200.0/21 27589 -199.19.208.0/22 11734 -199.19.212.0/22 33028 -199.19.216.0/21 30500 -199.19.224.0/22 53667 -199.19.228.0/22 30650 -199.19.232.0/21 22464 -199.19.240.0/23 7955 -199.19.242.0/24 7955 -199.19.243.0/24 19256 -199.19.244.0/23 62 -199.19.246.0/24 32280 -199.19.247.0/24 62 -199.19.248.0/24 27471 -199.19.250.0/24 27471 -199.19.252.0/22 27471 -199.20.2.0/23 3549 -199.20.6.0/23 3549 -199.20.8.0/21 394026 -199.20.16.0/20 3464 -199.20.32.0/24 25956 -199.20.36.0/23 11074 -199.20.43.0/24 33516 -199.20.44.0/22 33516 -199.20.54.0/24 174 -199.20.59.0/24 21949 -199.20.61.0/24 7018 -199.20.62.0/24 33651 -199.20.64.0/18 394417 -199.20.128.0/17 18756 -199.21.15.0/24 394144 -199.21.18.0/24 10962 -199.21.23.0/24 10962 -199.21.28.0/22 10962 -199.21.32.0/22 3356 -199.21.44.0/23 3356 -199.21.56.0/22 3356 -199.21.60.0/23 3356 -199.21.64.0/21 11274 -199.21.72.0/24 26974 -199.21.73.0/24 54441 -199.21.74.0/23 26974 -199.21.76.0/22 29791 -199.21.80.0/22 14742 -199.21.84.0/22 19165 -199.21.88.0/21 62943 -199.21.96.0/22 13238 -199.21.100.0/22 53805 -199.21.104.0/22 18771 -199.21.108.0/23 18771 -199.21.111.0/24 18771 -199.21.112.0/22 36352 -199.21.116.0/22 54144 -199.21.120.0/21 36315 -199.21.128.0/22 14103 -199.21.132.0/22 21651 -199.21.136.0/21 22121 -199.21.144.0/22 16412 -199.21.148.0/24 7040 -199.21.149.0/24 22923 -199.21.150.0/24 22423 -199.21.151.0/24 7040 -199.21.152.0/21 20419 -199.21.160.0/23 39996 -199.21.162.0/24 64294 -199.21.163.0/24 394603 -199.21.164.0/22 36290 -199.21.168.0/22 12273 -199.21.172.0/24 58507 -199.21.176.0/22 46188 -199.21.180.0/24 30336 -199.21.181.0/24 5769 -199.21.182.0/24 19515 -199.21.183.0/24 36255 -199.21.184.0/22 35906 -199.21.188.0/22 32682 -199.21.192.0/21 16698 -199.21.200.0/23 46309 -199.21.202.0/24 17206 -199.21.203.0/24 46309 -199.21.204.0/23 46309 -199.21.206.0/24 46309 -199.21.207.0/24 32575 -199.21.208.0/23 10583 -199.21.210.0/23 14653 -199.21.212.0/22 14653 -199.21.216.0/22 23299 -199.21.220.0/22 23394 -199.21.224.0/21 22006 -199.21.232.0/21 33353 -199.21.240.0/21 47096 -199.21.248.0/22 53537 -199.21.252.0/22 19321 -199.22.0.0/16 16624 -199.26.8.0/21 14615 -199.26.33.0/24 1906 -199.26.34.0/23 1906 -199.26.36.0/22 1906 -199.26.50.0/24 1906 -199.26.56.0/23 17306 -199.26.60.0/22 19463 -199.26.68.0/22 46546 -199.26.72.0/24 22472 -199.26.73.0/24 33132 -199.26.74.0/24 33132 -199.26.75.0/24 16695 -199.26.76.0/22 33132 -199.26.80.0/23 16523 -199.26.82.0/24 16523 -199.26.83.0/24 33164 -199.26.84.0/22 393398 -199.26.88.0/21 19993 -199.26.96.0/21 133772 -199.26.104.0/23 32819 -199.26.106.0/23 396296 -199.26.112.0/20 394117 -199.26.143.0/24 174 -199.26.151.0/24 16557 -199.26.152.0/24 16557 -199.26.159.0/24 22848 -199.26.164.0/24 63391 -199.26.167.0/24 10753 -199.26.169.0/24 393848 -199.26.170.0/24 7752 -199.26.172.0/24 13868 -199.26.177.0/24 600 -199.26.183.0/24 62731 -199.26.184.0/24 55236 -199.26.190.0/23 803 -199.26.192.0/24 32475 -199.26.202.0/24 3356 -199.26.210.0/24 31887 -199.26.212.0/24 31887 -199.26.219.0/24 10796 -199.26.223.0/24 7029 -199.26.225.0/24 11403 -199.26.230.0/24 2828 -199.26.232.0/23 2828 -199.26.244.0/22 12097 -199.26.254.0/24 11279 -199.26.255.0/24 19730 -199.27.8.0/21 40628 -199.27.16.0/21 7936 -199.27.24.0/22 18970 -199.27.28.0/23 18970 -199.27.64.0/22 40608 -199.27.68.0/24 395196 -199.27.69.0/24 15047 -199.27.70.0/23 394478 -199.27.72.0/24 54113 -199.27.74.0/23 54113 -199.27.76.0/22 54113 -199.27.80.0/21 22071 -199.27.88.0/22 36327 -199.27.92.0/22 31841 -199.27.96.0/21 36423 -199.27.104.0/21 11404 -199.27.112.0/24 15113 -199.27.113.0/24 9583 -199.27.114.0/23 15113 -199.27.116.0/24 7014 -199.27.117.0/24 15113 -199.27.118.0/24 15113 -199.27.119.0/24 7014 -199.27.120.0/22 33284 -199.27.124.0/22 16604 -199.27.132.0/24 13335 -199.27.144.0/23 15228 -199.27.146.0/24 15228 -199.27.148.0/23 14999 -199.27.151.0/24 394574 -199.27.152.0/22 16520 -199.27.156.0/22 23546 -199.27.160.0/21 30536 -199.27.168.0/22 14042 -199.27.172.0/22 7194 -199.27.176.0/22 19975 -199.27.180.0/22 19117 -199.27.184.0/22 20019 -199.27.188.0/24 36112 -199.27.189.0/24 29838 -199.27.192.0/22 22398 -199.27.196.0/22 53586 -199.27.200.0/21 17248 -199.27.208.0/23 53590 -199.27.211.0/24 53590 -199.27.212.0/22 49544 -199.27.216.0/22 19053 -199.27.220.0/23 19053 -199.27.222.0/24 19053 -199.27.223.0/24 394255 -199.27.225.0/24 27377 -199.27.226.0/23 27377 -199.27.228.0/24 18656 -199.27.230.0/23 18656 -199.27.232.0/22 13767 -199.27.236.0/23 13767 -199.27.238.0/24 13767 -199.27.239.0/24 22571 -199.27.240.0/23 33132 -199.27.242.0/24 6931 -199.27.243.0/24 33132 -199.27.244.0/22 33132 -199.27.248.0/21 30600 -199.29.0.0/24 174 -199.29.1.0/24 11086 -199.29.2.0/23 174 -199.29.4.0/23 174 -199.29.6.0/23 54294 -199.29.8.0/24 54294 -199.29.9.0/24 174 -199.29.10.0/23 174 -199.29.12.0/22 174 -199.29.16.0/20 174 -199.29.32.0/19 174 -199.29.64.0/18 174 -199.29.128.0/22 174 -199.29.132.0/24 2386 -199.29.133.0/24 174 -199.29.134.0/23 174 -199.29.136.0/22 174 -199.29.140.0/23 174 -199.29.142.0/24 174 -199.29.143.0/24 16409 -199.29.144.0/20 174 -199.29.160.0/19 174 -199.29.192.0/24 11351 -199.29.193.0/24 174 -199.29.194.0/23 174 -199.29.196.0/22 174 -199.29.200.0/22 174 -199.29.204.0/23 174 -199.29.206.0/23 15320 -199.29.208.0/23 15320 -199.29.210.0/24 174 -199.29.211.0/24 7018 -199.29.212.0/22 7018 -199.29.216.0/22 174 -199.29.220.0/22 13536 -199.29.224.0/23 174 -199.29.226.0/24 174 -199.29.227.0/24 6195 -199.29.228.0/22 174 -199.29.232.0/21 174 -199.29.240.0/22 174 -199.29.244.0/23 174 -199.29.246.0/24 174 -199.29.247.0/24 33598 -199.29.248.0/21 174 -199.30.0.0/22 7018 -199.30.16.0/20 8075 -199.30.48.0/21 53755 -199.30.58.0/24 397484 -199.30.60.0/22 40702 -199.30.64.0/22 46841 -199.30.68.0/22 13415 -199.30.72.0/21 54142 -199.30.84.0/22 21782 -199.30.96.0/21 36374 -199.30.104.0/22 31849 -199.30.112.0/22 40749 -199.30.116.0/22 22038 -199.30.120.0/21 19201 -199.30.128.0/22 40715 -199.30.136.0/23 10753 -199.30.140.0/22 32278 -199.30.148.0/23 33583 -199.30.150.0/24 33583 -199.30.152.0/22 13532 -199.30.156.0/22 17269 -199.30.160.0/21 46699 -199.30.168.0/21 13337 -199.30.176.0/24 14618 -199.30.184.0/22 19045 -199.30.188.0/22 11591 -199.30.192.0/22 40026 -199.30.200.0/24 396268 -199.30.204.0/24 30615 -199.30.205.0/24 22172 -199.30.206.0/24 22172 -199.30.207.0/24 54962 -199.30.208.0/22 53568 -199.30.212.0/22 17348 -199.30.216.0/21 20115 -199.30.224.0/23 25665 -199.30.228.0/22 17318 -199.30.232.0/21 13380 -199.30.240.0/21 36529 -199.30.248.0/21 11038 -199.31.2.0/23 385 -199.31.8.0/24 5972 -199.31.9.0/24 721 -199.31.10.0/23 5972 -199.31.12.0/24 5972 -199.31.16.0/20 668 -199.31.107.0/24 668 -199.32.128.0/24 721 -199.32.129.0/24 1479 -199.32.130.0/23 721 -199.32.132.0/22 721 -199.32.136.0/21 721 -199.32.144.0/20 721 -199.32.160.0/19 721 -199.33.28.0/23 46504 -199.33.30.0/24 46504 -199.33.32.0/19 397295 -199.33.64.0/24 209 -199.33.65.0/24 1341 -199.33.66.0/23 393832 -199.33.72.0/23 22772 -199.33.74.0/23 21777 -199.33.76.0/23 62658 -199.33.78.0/24 20001 -199.33.79.0/24 209 -199.33.80.0/24 12019 -199.33.82.0/23 394404 -199.33.84.0/23 27393 -199.33.86.0/23 32578 -199.33.88.0/24 1341 -199.33.89.0/24 30048 -199.33.90.0/23 11272 -199.33.92.0/24 1341 -199.33.93.0/24 3356 -199.33.94.0/23 29974 -199.33.96.0/21 19331 -199.33.104.0/21 46632 -199.33.112.0/22 23498 -199.33.116.0/23 394244 -199.33.119.0/24 393513 -199.33.120.0/21 26481 -199.33.128.0/24 16392 -199.33.130.0/23 13760 -199.33.132.0/23 13760 -199.33.134.0/24 13760 -199.33.135.0/24 35962 -199.33.137.0/24 11086 -199.33.140.0/24 395258 -199.33.141.0/24 557 -199.33.143.0/24 13649 -199.33.144.0/24 10653 -199.33.145.0/24 63391 -199.33.161.0/24 174 -199.33.162.0/24 702 -199.33.164.0/23 7015 -199.33.166.0/24 7015 -199.33.167.0/24 3685 -199.33.168.0/22 33177 -199.33.172.0/23 33177 -199.33.208.0/24 54600 -199.33.210.0/24 7029 -199.33.216.0/24 25884 -199.33.218.0/24 32444 -199.33.224.0/23 11875 -199.33.234.0/23 3549 -199.33.236.0/24 32992 -199.33.240.0/24 7782 -199.33.243.0/24 22772 -199.33.244.0/24 54380 -199.33.245.0/24 11893 -199.33.248.0/24 19044 -199.33.255.0/24 7018 -199.34.0.0/21 36026 -199.34.8.0/24 22494 -199.34.10.0/24 132852 -199.34.11.0/24 40369 -199.34.12.0/23 394840 -199.34.14.0/23 29696 -199.34.16.0/23 13886 -199.34.19.0/24 46071 -199.34.20.0/23 18229 -199.34.22.0/24 18229 -199.34.23.0/24 13886 -199.34.24.0/22 33734 -199.34.32.0/19 2828 -199.34.64.0/24 2828 -199.34.66.0/24 2828 -199.34.67.0/24 30549 -199.34.68.0/22 30549 -199.34.72.0/21 30549 -199.34.82.0/24 30549 -199.34.83.0/24 64267 -199.34.84.0/22 64267 -199.34.88.0/23 64267 -199.34.90.0/24 64267 -199.34.91.0/24 55140 -199.34.92.0/22 14525 -199.34.96.0/23 11215 -199.34.98.0/23 396420 -199.34.100.0/22 396420 -199.34.104.0/23 396420 -199.34.106.0/24 33174 -199.34.120.0/21 15083 -199.34.228.0/22 27647 -199.34.232.0/21 11045 -199.34.240.0/21 32505 -199.34.252.0/24 32467 -199.34.254.0/24 32467 -199.35.48.0/20 7029 -199.35.64.0/19 7029 -199.35.99.0/24 14913 -199.36.0.0/23 11528 -199.36.2.0/24 11528 -199.36.4.0/24 11528 -199.36.7.0/24 11528 -199.36.12.0/22 29781 -199.36.16.0/21 17007 -199.36.25.0/24 209 -199.36.28.0/23 40633 -199.36.30.0/24 40633 -199.36.31.0/24 4775 -199.36.35.0/24 36745 -199.36.37.0/24 36745 -199.36.38.0/24 36745 -199.36.40.0/24 36745 -199.36.41.0/24 7018 -199.36.43.0/24 36745 -199.36.45.0/24 36745 -199.36.47.0/24 36745 -199.36.48.0/23 36745 -199.36.54.0/24 36745 -199.36.64.0/22 53256 -199.36.68.0/24 36365 -199.36.71.0/24 36365 -199.36.72.0/21 11976 -199.36.80.0/22 54579 -199.36.84.0/22 14265 -199.36.88.0/21 13370 -199.36.96.0/22 4880 -199.36.104.0/21 13739 -199.36.116.0/23 16851 -199.36.118.0/24 100 -199.36.119.0/24 16851 -199.36.124.0/22 11290 -199.36.128.0/22 13938 -199.36.132.0/22 23248 -199.36.136.0/23 26405 -199.36.138.0/24 26405 -199.36.140.0/22 26405 -199.36.144.0/22 13907 -199.36.150.0/24 13907 -199.36.154.0/23 15169 -199.36.156.0/24 15169 -199.36.160.0/22 47074 -199.36.164.0/23 12068 -199.36.166.0/24 12068 -199.36.172.0/22 7018 -199.36.176.0/21 21817 -199.36.184.0/22 30410 -199.36.188.0/22 22326 -199.36.192.0/21 12155 -199.36.200.0/22 36645 -199.36.204.0/22 22495 -199.36.208.0/21 62482 -199.36.216.0/24 40014 -199.36.218.0/24 27257 -199.36.219.0/24 40014 -199.36.220.0/22 46562 -199.36.224.0/21 25715 -199.36.232.0/21 27400 -199.36.240.0/22 13238 -199.36.244.0/23 35958 -199.36.248.0/22 6643 -199.36.252.0/22 16713 -199.37.112.0/24 7018 -199.37.123.0/24 7018 -199.37.170.0/23 5728 -199.37.180.0/23 5728 -199.38.8.0/21 40116 -199.38.25.0/24 394299 -199.38.28.0/22 27337 -199.38.33.0/24 21650 -199.38.38.0/23 32880 -199.38.52.0/22 27015 -199.38.56.0/21 46523 -199.38.64.0/21 40898 -199.38.72.0/21 394708 -199.38.80.0/21 21554 -199.38.96.0/21 22748 -199.38.104.0/23 1378 -199.38.106.0/23 8057 -199.38.108.0/23 8057 -199.38.111.0/24 8057 -199.38.112.0/22 7203 -199.38.116.0/22 30633 -199.38.120.0/22 35862 -199.38.124.0/22 21725 -199.38.132.0/24 47019 -199.38.133.0/24 17215 -199.38.143.0/24 23166 -199.38.147.0/24 5078 -199.38.148.0/24 53334 -199.38.149.0/24 12147 -199.38.150.0/24 12147 -199.38.151.0/24 16432 -199.38.152.0/24 16432 -199.38.153.0/24 12147 -199.38.154.0/24 12147 -199.38.155.0/24 16432 -199.38.160.0/22 13649 -199.38.164.0/24 54312 -199.38.167.0/24 54312 -199.38.168.0/22 32003 -199.38.172.0/24 53918 -199.38.174.0/24 53918 -199.38.180.0/24 27267 -199.38.181.0/24 36236 -199.38.182.0/23 36236 -199.38.184.0/21 54006 -199.38.196.0/23 14813 -199.38.198.0/23 8014 -199.38.200.0/22 32524 -199.38.204.0/22 13638 -199.38.216.0/21 53914 -199.38.224.0/21 39970 -199.38.232.0/23 1421 -199.38.234.0/24 22468 -199.38.235.0/24 1421 -199.38.236.0/22 396125 -199.38.240.0/21 394625 -199.38.250.0/24 13951 -199.40.0.0/16 2571 -199.41.252.0/23 2571 -199.42.4.0/24 5466 -199.42.12.0/22 6900 -199.42.102.0/23 6900 -199.42.104.0/23 6900 -199.42.189.0/24 5714 -199.42.240.0/23 6900 -199.43.0.0/24 10745 -199.43.4.0/24 209 -199.43.12.0/23 10794 -199.43.32.0/20 10998 -199.43.48.0/23 10998 -199.43.54.0/23 10998 -199.43.56.0/23 10998 -199.43.60.0/23 10998 -199.43.64.0/20 10998 -199.43.108.0/24 15290 -199.43.119.0/24 812 -199.43.131.0/24 36031 -199.43.133.0/24 26710 -199.43.134.0/24 12041 -199.43.135.0/24 26710 -199.43.146.0/24 17159 -199.43.148.0/24 12188 -199.43.172.0/22 63419 -199.43.176.0/21 63419 -199.43.184.0/24 14265 -199.43.185.0/24 200614 -199.43.186.0/24 200614 -199.43.188.0/24 45161 -199.43.189.0/24 18872 -199.43.190.0/24 18872 -199.43.195.0/24 3848 -199.43.198.0/24 40702 -199.43.199.0/24 31863 -199.43.200.0/22 19693 -199.43.204.0/24 31863 -199.43.205.0/24 14453 -199.43.206.0/24 53340 -199.43.207.0/24 40676 -199.43.208.0/22 577 -199.43.225.0/24 26700 -199.44.0.0/21 2379 -199.44.8.0/22 2379 -199.44.12.0/23 2379 -199.44.14.0/24 2379 -199.44.15.0/24 209 -199.44.16.0/22 54427 -199.44.20.0/24 54427 -199.44.21.0/24 2379 -199.44.22.0/23 2379 -199.44.24.0/24 2379 -199.44.25.0/24 54427 -199.44.26.0/23 54427 -199.44.28.0/22 2379 -199.44.32.0/23 2379 -199.44.34.0/24 54427 -199.44.35.0/24 2379 -199.44.36.0/22 2379 -199.44.40.0/24 53940 -199.44.41.0/24 393313 -199.44.42.0/23 2379 -199.44.44.0/22 2379 -199.44.48.0/24 54427 -199.44.49.0/24 2379 -199.44.50.0/23 54427 -199.44.52.0/23 54427 -199.44.54.0/23 2379 -199.44.56.0/23 2379 -199.44.58.0/24 2379 -199.44.59.0/24 54427 -199.44.60.0/24 2379 -199.44.61.0/24 209 -199.44.62.0/23 2379 -199.44.64.0/24 54427 -199.44.65.0/24 2379 -199.44.66.0/23 2379 -199.44.68.0/22 2379 -199.44.72.0/22 2379 -199.44.76.0/23 54427 -199.44.78.0/23 2379 -199.44.80.0/22 54427 -199.44.84.0/24 54427 -199.44.85.0/24 2379 -199.44.86.0/23 54427 -199.44.88.0/22 2379 -199.44.92.0/24 2379 -199.44.93.0/24 54427 -199.44.94.0/24 54427 -199.44.95.0/24 2379 -199.44.96.0/20 2379 -199.44.112.0/23 2379 -199.44.114.0/24 54427 -199.44.115.0/24 2379 -199.44.116.0/24 2379 -199.44.117.0/24 54427 -199.44.118.0/24 209 -199.44.119.0/24 2379 -199.44.120.0/22 2379 -199.44.124.0/23 2379 -199.44.126.0/24 2379 -199.44.127.0/24 7000 -199.44.128.0/19 2379 -199.44.160.0/24 209 -199.44.161.0/24 2379 -199.44.162.0/23 2379 -199.44.164.0/23 2379 -199.44.166.0/23 36467 -199.44.168.0/21 2379 -199.44.176.0/20 2379 -199.44.192.0/23 2379 -199.44.194.0/24 54427 -199.44.195.0/24 209 -199.44.196.0/23 209 -199.44.198.0/23 2379 -199.44.200.0/22 2379 -199.44.204.0/24 54427 -199.44.205.0/24 2379 -199.44.206.0/23 2379 -199.44.208.0/21 2379 -199.44.216.0/22 2379 -199.44.220.0/23 29943 -199.44.222.0/23 2379 -199.44.224.0/24 2379 -199.44.225.0/24 209 -199.44.226.0/23 7453 -199.44.228.0/22 2379 -199.44.232.0/22 54427 -199.44.236.0/22 2379 -199.44.240.0/23 55272 -199.44.242.0/23 2379 -199.44.244.0/24 2379 -199.44.245.0/24 209 -199.44.246.0/23 2379 -199.44.248.0/24 54427 -199.44.249.0/24 2379 -199.44.250.0/23 2379 -199.44.252.0/24 2379 -199.44.253.0/24 396482 -199.44.254.0/23 2379 -199.45.12.0/22 46653 -199.45.28.0/22 46188 -199.45.32.0/19 701 -199.45.64.0/18 701 -199.45.146.0/24 22658 -199.45.152.0/24 21777 -199.45.166.0/24 16618 -199.45.236.0/22 21777 -199.45.240.0/24 16618 -199.45.255.0/24 22658 -199.46.8.0/21 2386 -199.46.20.0/23 5535 -199.46.96.0/22 40749 -199.46.100.0/22 14265 -199.46.104.0/22 23415 -199.46.108.0/23 393951 -199.46.110.0/23 23415 -199.46.112.0/22 53543 -199.46.116.0/22 46887 -199.46.124.0/22 46506 -199.46.128.0/22 12007 -199.46.132.0/23 19610 -199.46.134.0/23 12007 -199.46.136.0/22 12007 -199.46.140.0/23 19610 -199.46.142.0/23 12007 -199.46.144.0/20 12007 -199.46.160.0/19 12007 -199.46.192.0/18 12007 -199.47.15.0/24 33461 -199.47.32.0/22 4193 -199.47.36.0/24 4193 -199.47.37.0/24 62475 -199.47.39.0/24 40676 -199.47.40.0/21 26938 -199.47.48.0/22 54191 -199.47.52.0/22 35900 -199.47.56.0/23 54233 -199.47.62.0/23 54233 -199.47.64.0/22 32307 -199.47.68.0/23 20398 -199.47.71.0/24 20398 -199.47.72.0/22 54201 -199.47.77.0/24 54201 -199.47.78.0/23 54201 -199.47.80.0/21 46851 -199.47.88.0/22 13767 -199.47.92.0/23 13767 -199.47.94.0/24 13767 -199.47.95.0/24 17216 -199.47.96.0/21 26512 -199.47.104.0/21 53869 -199.47.112.0/22 46632 -199.47.116.0/22 11976 -199.47.120.0/22 14935 -199.47.124.0/22 33164 -199.47.128.0/23 14618 -199.47.130.0/24 16509 -199.47.137.0/24 40342 -199.47.138.0/23 40342 -199.47.140.0/22 32401 -199.47.144.0/22 14701 -199.47.150.0/24 204631 -199.47.151.0/24 29802 -199.47.153.0/24 6318 -199.47.154.0/23 6318 -199.47.156.0/22 6318 -199.47.167.0/24 14902 -199.47.168.0/22 32546 -199.47.174.0/23 12110 -199.47.176.0/22 19404 -199.47.180.0/22 27434 -199.47.188.0/22 30432 -199.47.192.0/22 1421 -199.47.196.0/24 1421 -199.47.198.0/23 1421 -199.47.200.0/21 26196 -199.47.208.0/22 53340 -199.47.216.0/22 19679 -199.47.220.0/22 35914 -199.47.224.0/21 17216 -199.47.232.0/21 13341 -199.47.240.0/22 31798 -199.47.244.0/22 27292 -199.47.248.0/21 16803 -199.48.0.0/24 398192 -199.48.3.0/24 398192 -199.48.4.0/22 11277 -199.48.8.0/22 11714 -199.48.12.0/24 11714 -199.48.13.0/24 394523 -199.48.18.0/24 23251 -199.48.20.0/23 23251 -199.48.23.0/24 23251 -199.48.24.0/23 23251 -199.48.32.0/20 1798 -199.48.48.0/22 32016 -199.48.52.0/22 46540 -199.48.56.0/22 21817 -199.48.60.0/24 40191 -199.48.61.0/24 394066 -199.48.62.0/24 11232 -199.48.63.0/24 395241 -199.48.64.0/22 53877 -199.48.68.0/22 18978 -199.48.72.0/21 36327 -199.48.80.0/22 22625 -199.48.84.0/22 25956 -199.48.88.0/24 2727 -199.48.90.0/23 2727 -199.48.92.0/22 30600 -199.48.96.0/23 16841 -199.48.98.0/24 16841 -199.48.100.0/22 36731 -199.48.104.0/24 54107 -199.48.105.0/24 14824 -199.48.106.0/23 54107 -199.48.108.0/22 54326 -199.48.112.0/22 46698 -199.48.116.0/23 54119 -199.48.118.0/24 209 -199.48.119.0/24 36149 -199.48.120.0/22 7194 -199.48.125.0/24 23442 -199.48.128.0/21 36236 -199.48.136.0/21 17211 -199.48.144.0/22 40475 -199.48.148.0/22 47089 -199.48.152.0/23 18541 -199.48.154.0/24 393490 -199.48.155.0/24 18541 -199.48.156.0/22 31773 -199.48.160.0/23 19531 -199.48.163.0/24 19531 -199.48.164.0/22 19531 -199.48.169.0/24 394830 -199.48.170.0/23 394830 -199.48.172.0/22 394889 -199.48.176.0/22 20473 -199.48.183.0/24 20473 -199.48.184.0/23 33316 -199.48.186.0/24 33316 -199.48.187.0/24 40511 -199.48.190.0/23 33316 -199.48.192.0/21 23175 -199.48.200.0/23 40457 -199.48.202.0/23 30171 -199.48.206.0/23 3356 -199.48.208.0/22 63210 -199.48.212.0/22 10580 -199.48.216.0/21 33040 -199.48.224.0/24 204170 -199.48.225.0/24 395565 -199.48.226.0/23 395565 -199.48.228.0/23 64231 -199.48.230.0/23 203872 -199.48.232.0/21 33260 -199.48.240.0/24 30094 -199.48.241.0/24 22363 -199.48.242.0/23 22363 -199.48.244.0/24 30094 -199.48.245.0/24 22363 -199.48.246.0/24 22363 -199.48.247.0/24 30094 -199.48.248.0/22 40346 -199.48.252.0/22 36444 -199.49.0.0/22 201204 -199.49.7.0/24 3571 -199.49.8.0/24 3571 -199.49.9.0/24 40810 -199.49.10.0/24 40810 -199.49.12.0/23 7014 -199.49.14.0/23 40810 -199.49.16.0/23 3571 -199.49.18.0/24 3571 -199.49.32.0/23 40810 -199.49.55.0/24 138180 -199.51.126.0/23 2854 -199.51.128.0/23 2854 -199.51.132.0/23 2854 -199.52.8.0/21 3571 -199.52.101.0/24 3571 -199.53.16.0/24 3104 -199.53.17.0/24 3097 -199.53.18.0/24 3083 -199.53.20.0/24 3084 -199.53.21.0/24 3083 -199.53.22.0/24 3108 -199.53.24.0/24 3096 -199.53.25.0/24 3412 -199.53.27.0/24 4410 -199.53.69.0/24 3095 -199.53.79.0/24 3097 -199.53.107.0/24 3104 -199.53.108.0/24 3104 -199.53.168.0/24 8729 -199.53.170.0/24 8729 -199.53.183.0/24 3104 -199.53.184.0/24 3097 -199.53.185.0/24 3087 -199.53.186.0/24 3104 -199.53.188.0/24 3084 -199.53.189.0/24 3108 -199.53.195.0/24 3087 -199.57.0.0/16 721 -199.58.0.0/24 3303 -199.58.4.0/24 17766 -199.58.26.0/24 209 -199.58.28.0/24 63435 -199.58.52.0/24 7782 -199.58.55.0/24 8047 -199.58.56.0/23 32059 -199.58.59.0/24 32059 -199.58.60.0/22 32059 -199.58.64.0/21 23230 -199.58.72.0/22 54276 -199.58.76.0/22 40317 -199.58.80.0/22 7765 -199.58.84.0/22 30633 -199.58.92.0/23 54302 -199.58.94.0/23 21886 -199.58.96.0/21 25961 -199.58.104.0/22 26407 -199.58.108.0/22 22576 -199.58.112.0/22 12208 -199.58.116.0/22 33007 -199.58.120.0/21 397268 -199.58.128.0/24 23486 -199.58.129.0/24 20280 -199.58.130.0/23 23486 -199.58.132.0/22 23486 -199.58.136.0/24 16851 -199.58.137.0/24 54022 -199.58.138.0/23 54022 -199.58.140.0/22 36257 -199.58.144.0/22 26269 -199.58.148.0/22 46511 -199.58.160.0/21 29889 -199.58.168.0/21 27256 -199.58.176.0/22 53292 -199.58.180.0/22 22725 -199.58.184.0/22 46562 -199.58.188.0/23 283 -199.58.191.0/24 15450 -199.58.192.0/23 5071 -199.58.194.0/23 26968 -199.58.196.0/22 11798 -199.58.200.0/22 32740 -199.58.204.0/24 32740 -199.58.206.0/24 6939 -199.58.207.0/24 32740 -199.58.208.0/23 54098 -199.58.210.0/24 54876 -199.58.211.0/24 54098 -199.58.212.0/22 54098 -199.58.216.0/22 53652 -199.58.220.0/24 100 -199.58.221.0/24 53652 -199.58.222.0/23 53652 -199.58.226.0/24 3257 -199.58.232.0/23 16438 -199.58.235.0/24 16438 -199.58.236.0/22 16438 -199.58.240.0/22 32152 -199.58.244.0/23 32152 -199.58.246.0/24 32152 -199.58.247.0/24 29801 -199.58.248.0/22 1403 -199.58.252.0/23 64200 -199.58.255.0/24 46562 -199.59.1.0/24 20384 -199.59.2.0/23 20384 -199.59.4.0/23 20384 -199.59.17.0/24 26371 -199.59.18.0/24 26371 -199.59.26.0/24 26371 -199.59.30.0/24 26371 -199.59.31.0/24 21832 -199.59.33.0/24 16886 -199.59.34.0/23 16886 -199.59.37.0/24 16886 -199.59.41.0/24 16886 -199.59.44.0/22 62914 -199.59.48.0/24 54251 -199.59.52.0/22 32546 -199.59.56.0/21 54290 -199.59.64.0/21 21534 -199.59.72.0/24 53274 -199.59.73.0/24 27631 -199.59.74.0/23 27631 -199.59.76.0/22 395965 -199.59.80.0/22 16724 -199.59.84.0/22 1640 -199.59.88.0/21 27589 -199.59.96.0/22 33724 -199.59.100.0/22 12231 -199.59.104.0/22 19975 -199.59.108.0/22 23005 -199.59.112.0/22 54665 -199.59.116.0/22 20283 -199.59.120.0/22 35891 -199.59.124.0/22 14554 -199.59.128.0/21 29907 -199.59.136.0/22 53676 -199.59.140.0/22 36489 -199.59.144.0/22 29802 -199.59.148.0/22 13414 -199.59.152.0/22 53687 -199.59.156.0/23 53674 -199.59.159.0/24 53674 -199.59.160.0/21 32421 -199.59.168.0/21 30676 -199.59.176.0/23 33277 -199.59.179.0/24 33277 -199.59.180.0/22 11527 -199.59.184.0/21 53661 -199.59.192.0/22 62622 -199.59.196.0/24 17303 -199.59.197.0/24 62622 -199.59.198.0/23 62622 -199.59.200.0/22 30418 -199.59.204.0/22 46786 -199.59.208.0/22 40217 -199.59.212.0/22 29901 -199.59.216.0/22 36056 -199.59.223.0/24 7018 -199.59.224.0/21 11179 -199.59.234.0/23 22803 -199.59.236.0/22 26123 -199.59.241.0/24 395082 -199.59.242.0/24 395082 -199.59.244.0/24 53589 -199.59.246.0/23 53589 -199.59.248.0/21 32408 -199.60.0.0/20 11105 -199.60.16.0/23 11105 -199.60.18.0/24 11105 -199.60.19.0/24 19662 -199.60.20.0/22 19323 -199.60.24.0/23 16696 -199.60.28.0/24 8075 -199.60.30.0/24 852 -199.60.32.0/23 852 -199.60.34.0/24 852 -199.60.36.0/24 852 -199.60.40.0/23 852 -199.60.43.0/24 852 -199.60.44.0/24 852 -199.60.47.0/24 852 -199.60.63.0/24 63297 -199.60.96.0/24 23181 -199.60.97.0/24 15290 -199.60.99.0/24 852 -199.60.101.0/24 63018 -199.60.104.0/21 6327 -199.60.112.0/22 14190 -199.60.116.0/24 23286 -199.60.118.0/24 23181 -199.60.119.0/24 271 -199.60.120.0/24 271 -199.60.123.0/24 30640 -199.60.124.0/22 14007 -199.60.144.0/21 395807 -199.60.180.0/23 46383 -199.60.188.0/24 46383 -199.60.190.0/24 46383 -199.60.218.0/23 577 -199.60.220.0/23 577 -199.60.222.0/24 23181 -199.60.226.0/23 271 -199.60.230.0/23 19662 -199.60.232.0/24 13830 -199.60.237.0/24 852 -199.60.239.0/24 852 -199.60.252.0/24 25999 -199.60.255.0/24 54983 -199.61.12.0/24 36136 -199.61.16.0/20 125 -199.62.24.0/22 125 -199.62.28.0/23 125 -199.62.32.0/21 125 -199.62.60.0/22 125 -199.62.71.0/24 36136 -199.62.84.0/24 36136 -199.62.111.0/24 125 -199.62.146.0/23 59865 -199.62.148.0/22 59865 -199.63.0.0/24 19807 -199.63.140.0/24 18101 -199.63.142.0/24 125 -199.64.0.0/24 125 -199.64.6.0/23 125 -199.64.13.0/24 125 -199.64.48.0/23 36351 -199.64.72.0/22 34774 -199.64.78.0/23 34774 -199.64.99.0/24 125 -199.64.100.0/24 209 -199.64.114.0/23 59865 -199.64.172.0/22 125 -199.64.176.0/22 125 -199.64.196.0/22 125 -199.64.219.0/24 125 -199.64.220.0/23 125 -199.64.222.0/24 125 -199.65.0.0/23 13778 -199.65.16.0/20 54282 -199.65.64.0/24 13778 -199.65.124.0/22 13778 -199.65.128.0/23 13778 -199.65.130.0/24 13778 -199.65.192.0/20 13778 -199.65.208.0/21 13778 -199.65.224.0/24 13778 -199.66.0.0/22 7018 -199.66.6.0/23 22773 -199.66.8.0/24 174 -199.66.9.0/24 394161 -199.66.10.0/23 394161 -199.66.12.0/22 397790 -199.66.64.0/21 30600 -199.66.72.0/22 25694 -199.66.76.0/22 23368 -199.66.80.0/22 53830 -199.66.84.0/22 20115 -199.66.88.0/24 22923 -199.66.90.0/24 13851 -199.66.91.0/24 22923 -199.66.92.0/24 7040 -199.66.93.0/24 22923 -199.66.94.0/24 22423 -199.66.95.0/24 53594 -199.66.96.0/22 13635 -199.66.100.0/22 25843 -199.66.104.0/22 26223 -199.66.108.0/22 54014 -199.66.112.0/22 395570 -199.66.116.0/22 11071 -199.66.120.0/21 395172 -199.66.128.0/22 40669 -199.66.132.0/22 53830 -199.66.136.0/23 14409 -199.66.140.0/22 18530 -199.66.144.0/21 13943 -199.66.152.0/23 19754 -199.66.154.0/24 27192 -199.66.155.0/24 19754 -199.66.156.0/22 19754 -199.66.160.0/21 36327 -199.66.168.0/21 209 -199.66.176.0/22 14334 -199.66.180.0/22 20081 -199.66.184.0/22 15234 -199.66.188.0/24 11017 -199.66.190.0/24 11017 -199.66.192.0/22 16619 -199.66.196.0/22 13857 -199.66.200.0/21 35838 -199.66.208.0/21 36521 -199.66.216.0/21 14193 -199.66.224.0/22 16841 -199.66.232.0/22 18560 -199.66.236.0/22 29834 -199.66.240.0/24 54596 -199.66.241.0/24 53285 -199.66.242.0/23 54596 -199.66.244.0/23 54596 -199.66.246.0/23 53285 -199.66.248.0/22 7839 -199.66.252.0/23 21722 -199.66.254.0/24 21722 -199.66.255.0/24 397811 -199.67.16.0/20 393724 -199.67.51.0/24 14930 -199.67.129.0/24 4996 -199.67.130.0/24 35967 -199.67.131.0/24 3081 -199.67.132.0/24 21587 -199.67.133.0/24 4996 -199.67.136.0/24 4996 -199.67.137.0/24 3081 -199.67.138.0/23 4996 -199.67.140.0/23 4996 -199.67.160.0/23 10129 -199.67.172.0/24 33463 -199.67.175.0/24 1696 -199.67.180.0/24 25883 -199.67.181.0/24 32287 -199.67.182.0/23 4996 -199.67.184.0/23 4996 -199.67.191.0/24 10129 -199.67.194.0/24 10129 -199.67.198.0/24 2386 -199.67.203.0/24 1696 -199.67.204.0/23 1696 -199.67.207.0/24 1696 -199.67.229.0/24 35967 -199.67.248.0/21 11190 -199.68.13.0/24 33491 -199.68.16.0/23 10753 -199.68.18.0/24 10753 -199.68.28.0/22 30166 -199.68.35.0/24 30046 -199.68.38.0/24 30046 -199.68.40.0/24 30046 -199.68.50.0/24 30046 -199.68.53.0/24 394449 -199.68.56.0/21 36515 -199.68.72.0/21 53398 -199.68.102.0/23 46945 -199.68.104.0/21 46685 -199.68.112.0/21 17306 -199.68.120.0/21 21949 -199.68.128.0/21 18614 -199.68.136.0/21 11667 -199.68.144.0/21 36610 -199.68.152.0/22 54531 -199.68.157.0/24 16509 -199.68.160.0/21 46632 -199.68.168.0/21 53429 -199.68.176.0/21 20161 -199.68.184.0/22 17285 -199.68.188.0/22 22319 -199.68.192.0/22 19626 -199.68.196.0/22 1426 -199.68.200.0/21 11080 -199.68.208.0/22 23295 -199.68.212.0/22 40627 -199.68.220.0/22 2386 -199.68.224.0/21 13635 -199.68.232.0/21 27006 -199.68.240.0/22 47020 -199.68.244.0/22 32144 -199.68.248.0/22 23314 -199.68.252.0/22 19233 -199.69.0.0/16 7018 -199.70.0.0/16 7018 -199.71.0.0/24 393220 -199.71.2.0/24 819 -199.71.4.0/22 32157 -199.71.12.0/24 11700 -199.71.36.0/22 18588 -199.71.40.0/24 18588 -199.71.43.0/24 18588 -199.71.52.0/22 395127 -199.71.64.0/22 23498 -199.71.68.0/24 174 -199.71.80.0/22 395817 -199.71.93.0/24 62627 -199.71.106.0/23 26234 -199.71.113.0/24 396367 -199.71.115.0/24 6280 -199.71.120.0/24 16751 -199.71.124.0/24 15290 -199.71.126.0/23 577 -199.71.128.0/21 25636 -199.71.136.0/24 577 -199.71.141.0/24 11700 -199.71.142.0/23 21827 -199.71.147.0/24 36235 -199.71.154.0/24 577 -199.71.159.0/24 394250 -199.71.168.0/24 3411 -199.71.172.0/22 3411 -199.71.176.0/22 22445 -199.71.182.0/23 11647 -199.71.186.0/24 17378 -199.71.187.0/24 209 -199.71.188.0/24 5764 -199.71.189.0/24 6407 -199.71.190.0/24 812 -199.71.209.0/24 394325 -199.71.210.0/23 6082 -199.71.212.0/22 40676 -199.71.216.0/23 29771 -199.71.219.0/24 29771 -199.71.220.0/22 29771 -199.71.224.0/22 17306 -199.71.228.0/23 46238 -199.71.230.0/24 46455 -199.71.231.0/24 396122 -199.71.232.0/22 47869 -199.71.236.0/22 46746 -199.71.240.0/22 36235 -199.71.244.0/22 1730 -199.71.248.0/22 1730 -199.71.252.0/24 11647 -199.71.255.0/24 393442 -199.72.0.0/16 7029 -199.73.1.0/24 29823 -199.73.2.0/23 29823 -199.73.10.0/23 16783 -199.73.12.0/22 12282 -199.73.20.0/23 396143 -199.73.22.0/24 396143 -199.73.25.0/24 209 -199.73.26.0/23 17075 -199.73.28.0/22 26886 -199.73.32.0/21 2914 -199.73.42.0/24 17397 -199.73.44.0/22 13751 -199.73.48.0/21 33695 -199.73.56.0/22 13438 -199.73.60.0/22 35878 -199.73.81.0/24 62954 -199.73.82.0/23 10908 -199.73.84.0/24 11696 -199.73.85.0/24 17184 -199.73.86.0/23 46191 -199.73.88.0/21 36820 -199.73.96.0/21 54328 -199.73.104.0/22 23314 -199.73.108.0/22 33089 -199.73.112.0/22 22397 -199.73.116.0/22 36688 -199.73.120.0/22 53850 -199.73.124.0/24 19755 -199.73.128.0/24 8103 -199.73.152.0/24 8103 -199.73.164.0/22 8103 -199.73.169.0/24 8103 -199.73.242.0/24 8103 -199.73.253.0/24 8103 -199.74.0.0/21 1798 -199.74.8.0/22 2711 -199.74.12.0/23 2711 -199.74.14.0/24 2711 -199.74.15.0/24 2722 -199.74.64.0/18 103 -199.74.128.0/22 19773 -199.74.132.0/24 19773 -199.74.141.0/24 30475 -199.74.153.0/24 6167 -199.74.154.0/23 6167 -199.74.156.0/23 6167 -199.74.162.0/24 394364 -199.74.172.0/24 13760 -199.74.173.0/24 209 -199.74.174.0/24 33666 -199.74.175.0/24 13649 -199.74.187.0/24 1443 -199.74.205.0/24 394532 -199.74.211.0/24 174 -199.74.213.0/24 20286 -199.74.216.0/22 18434 -199.74.220.0/23 64260 -199.74.222.0/24 12161 -199.74.230.0/23 54072 -199.74.236.0/23 13496 -199.74.244.0/24 3555 -199.74.248.0/24 6939 -199.74.249.0/24 10255 -199.74.254.0/24 7046 -199.75.0.0/20 3356 -199.75.16.0/21 3356 -199.75.24.0/23 3356 -199.75.26.0/24 22962 -199.75.27.0/24 3356 -199.75.28.0/22 3356 -199.75.32.0/19 3356 -199.75.64.0/18 3356 -199.75.128.0/17 3356 -199.76.0.0/22 3549 -199.76.4.0/23 3549 -199.76.6.0/24 3549 -199.76.7.0/24 3356 -199.76.8.0/22 3549 -199.76.12.0/22 393275 -199.76.16.0/21 3549 -199.76.24.0/23 54560 -199.76.26.0/23 3549 -199.76.28.0/22 3549 -199.76.32.0/24 3549 -199.76.33.0/24 10753 -199.76.34.0/23 3549 -199.76.36.0/23 3549 -199.76.38.0/23 393275 -199.76.40.0/24 3549 -199.76.41.0/24 19007 -199.76.42.0/23 3549 -199.76.44.0/24 3549 -199.76.45.0/24 12053 -199.76.46.0/23 3549 -199.76.48.0/20 3549 -199.76.64.0/21 3549 -199.76.72.0/24 3356 -199.76.73.0/24 3549 -199.76.74.0/24 3549 -199.76.75.0/24 3356 -199.76.76.0/23 3549 -199.76.78.0/24 3549 -199.76.79.0/24 9304 -199.76.80.0/21 3549 -199.76.88.0/22 3549 -199.76.92.0/24 3549 -199.76.93.0/24 3356 -199.76.94.0/23 3549 -199.76.96.0/24 30219 -199.76.97.0/24 3549 -199.76.98.0/24 3549 -199.76.99.0/24 30219 -199.76.100.0/24 3549 -199.76.101.0/24 30219 -199.76.102.0/23 30219 -199.76.104.0/22 30219 -199.76.108.0/24 3549 -199.76.109.0/24 30219 -199.76.110.0/23 30219 -199.76.112.0/24 30219 -199.76.113.0/24 3549 -199.76.114.0/23 3549 -199.76.116.0/23 30219 -199.76.118.0/24 30219 -199.76.119.0/24 3549 -199.76.120.0/23 30219 -199.76.122.0/24 3549 -199.76.123.0/24 30219 -199.76.124.0/24 3549 -199.76.125.0/24 30219 -199.76.126.0/23 3549 -199.76.128.0/20 3356 -199.76.144.0/20 23162 -199.76.160.0/19 3356 -199.76.192.0/18 3356 -199.77.0.0/18 3549 -199.77.64.0/18 3356 -199.77.128.0/22 3549 -199.77.132.0/22 393275 -199.77.136.0/23 3549 -199.77.138.0/23 28007 -199.77.140.0/23 3549 -199.77.142.0/24 36776 -199.77.143.0/24 3549 -199.77.144.0/20 3549 -199.77.160.0/19 3549 -199.77.192.0/24 3549 -199.77.193.0/24 54508 -199.77.194.0/24 3549 -199.77.195.0/24 395898 -199.77.196.0/24 33259 -199.77.197.0/24 3549 -199.77.198.0/23 3549 -199.77.200.0/23 3549 -199.77.202.0/24 395088 -199.77.203.0/24 3549 -199.77.204.0/22 393275 -199.77.208.0/20 3549 -199.77.224.0/19 3549 -199.78.0.0/18 3356 -199.78.64.0/19 3356 -199.78.96.0/20 3356 -199.78.112.0/22 7212 -199.78.116.0/22 3356 -199.78.120.0/21 3356 -199.78.128.0/17 3356 -199.79.0.0/20 18756 -199.79.28.0/22 32289 -199.79.32.0/20 3701 -199.79.48.0/22 35914 -199.79.52.0/22 46309 -199.79.56.0/22 1970 -199.79.60.0/23 40034 -199.79.62.0/23 394695 -199.79.64.0/19 396402 -199.79.96.0/22 33650 -199.79.112.0/21 396402 -199.79.152.0/24 6373 -199.79.154.0/24 7029 -199.79.155.0/24 46755 -199.79.156.0/24 394019 -199.79.165.0/24 26582 -199.79.166.0/24 26582 -199.79.167.0/24 46425 -199.79.168.0/23 46887 -199.79.170.0/24 46887 -199.79.172.0/24 394350 -199.79.176.0/22 2576 -199.79.180.0/24 2576 -199.79.184.0/24 11746 -199.79.185.0/24 54237 -199.79.190.0/24 25956 -199.79.199.0/24 20115 -199.79.201.0/24 11893 -199.79.202.0/24 54380 -199.79.203.0/24 3549 -199.79.216.0/24 3555 -199.79.217.0/24 26479 -199.79.222.0/24 23496 -199.79.225.0/24 14135 -199.79.227.0/24 14110 -199.79.228.0/24 1761 -199.79.231.0/24 11351 -199.79.237.0/24 174 -199.79.250.0/23 2711 -199.79.254.0/24 2711 -199.79.255.0/24 63116 -199.80.8.0/21 3464 -199.80.28.0/22 29765 -199.80.52.0/22 40824 -199.80.56.0/21 13909 -199.80.64.0/24 32592 -199.80.70.0/24 7018 -199.80.74.0/24 7018 -199.80.75.0/24 13760 -199.80.78.0/24 7018 -199.80.88.0/24 7018 -199.80.96.0/23 6389 -199.80.100.0/24 6389 -199.80.104.0/23 7018 -199.80.111.0/24 6389 -199.80.112.0/24 6389 -199.80.117.0/24 7018 -199.80.118.0/24 6389 -199.80.125.0/24 7018 -199.80.126.0/24 6389 -199.80.128.0/17 397342 -199.81.0.0/16 7726 -199.82.0.0/16 7726 -199.83.14.0/23 17245 -199.83.26.0/23 54657 -199.83.28.0/23 26571 -199.83.30.0/24 36272 -199.83.34.0/23 11724 -199.83.38.0/23 11724 -199.83.40.0/23 11724 -199.83.42.0/23 26131 -199.83.44.0/22 18742 -199.83.48.0/22 40065 -199.83.52.0/22 54313 -199.83.56.0/22 53703 -199.83.60.0/22 11403 -199.83.64.0/22 33226 -199.83.68.0/24 33226 -199.83.69.0/24 31897 -199.83.70.0/23 33226 -199.83.72.0/21 33226 -199.83.80.0/22 54305 -199.83.84.0/22 22995 -199.83.88.0/21 40676 -199.83.96.0/22 54098 -199.83.100.0/23 54046 -199.83.102.0/24 17139 -199.83.103.0/24 54046 -199.83.104.0/21 13490 -199.83.112.0/22 32413 -199.83.116.0/22 53266 -199.83.120.0/23 14992 -199.83.123.0/24 14633 -199.83.128.0/21 19551 -199.83.136.0/22 11468 -199.83.140.0/22 63264 -199.83.152.0/21 22995 -199.83.160.0/21 26932 -199.83.176.0/22 1612 -199.83.180.0/24 20383 -199.83.182.0/24 20383 -199.83.184.0/21 32413 -199.83.192.0/21 46650 -199.83.200.0/21 19465 -199.83.208.0/21 14935 -199.83.216.0/23 20160 -199.83.218.0/24 18777 -199.83.219.0/24 20160 -199.83.220.0/22 32329 -199.83.224.0/22 14832 -199.83.228.0/24 14832 -199.83.230.0/23 14832 -199.83.232.0/23 36321 -199.83.236.0/22 32458 -199.83.240.0/21 33361 -199.83.248.0/21 22237 -199.84.4.0/24 5645 -199.84.5.0/24 53414 -199.84.38.0/24 4470 -199.84.42.0/23 22639 -199.84.44.0/23 22639 -199.84.46.0/23 5769 -199.84.48.0/22 22652 -199.84.52.0/23 6280 -199.84.54.0/24 6280 -199.84.62.0/23 376 -199.84.96.0/19 36315 -199.84.128.0/22 19515 -199.84.132.0/23 376 -199.84.134.0/24 376 -199.84.136.0/23 36329 -199.84.138.0/23 852 -199.84.140.0/24 376 -199.84.141.0/24 29909 -199.84.142.0/23 5769 -199.84.144.0/24 22652 -199.84.157.0/24 3584 -199.84.158.0/23 3584 -199.84.162.0/24 376 -199.84.164.0/24 376 -199.84.173.0/24 22652 -199.84.174.0/23 13768 -199.84.183.0/24 40191 -199.84.233.0/24 395997 -199.84.234.0/24 395997 -199.84.236.0/23 395997 -199.84.241.0/24 852 -199.84.242.0/24 852 -199.84.243.0/24 5769 -199.84.244.0/23 5769 -199.84.248.0/22 5769 -199.84.255.0/24 29744 -199.85.1.0/24 40317 -199.85.7.0/24 394436 -199.85.19.0/24 23498 -199.85.22.0/24 18670 -199.85.63.0/24 46437 -199.85.66.0/23 53829 -199.85.68.0/24 577 -199.85.69.0/24 53829 -199.85.71.0/24 53829 -199.85.72.0/22 53829 -199.85.76.0/22 27646 -199.85.80.0/23 35986 -199.85.82.0/24 35986 -199.85.84.0/22 13776 -199.85.88.0/24 209 -199.85.89.0/24 395192 -199.85.90.0/24 395498 -199.85.92.0/22 22458 -199.85.97.0/24 32937 -199.85.98.0/24 394186 -199.85.101.0/24 701 -199.85.102.0/24 32006 -199.85.104.0/23 32006 -199.85.106.0/24 32006 -199.85.107.0/24 577 -199.85.116.0/23 29765 -199.85.118.0/23 11647 -199.85.124.0/24 20139 -199.85.125.0/24 35289 -199.85.126.0/24 397215 -199.85.127.0/24 397213 -199.85.192.0/24 812 -199.85.193.0/24 15290 -199.85.200.0/24 394487 -199.85.204.0/22 40414 -199.85.208.0/21 15189 -199.85.216.0/24 22773 -199.85.218.0/23 12151 -199.85.221.0/24 53910 -199.85.224.0/23 22573 -199.85.226.0/24 6058 -199.85.227.0/24 53910 -199.85.228.0/23 22573 -199.85.230.0/24 22573 -199.85.232.0/23 22573 -199.85.236.0/22 46650 -199.85.240.0/22 31808 -199.85.244.0/24 22370 -199.85.245.0/24 6407 -199.85.251.0/24 15290 -199.85.252.0/23 394821 -199.85.255.0/24 64218 -199.86.0.0/20 5006 -199.86.16.0/22 15011 -199.86.20.0/22 5006 -199.86.24.0/21 5006 -199.86.32.0/19 5006 -199.86.64.0/21 5006 -199.86.72.0/21 33455 -199.86.80.0/20 5006 -199.86.96.0/19 5006 -199.86.128.0/17 5006 -199.87.0.0/24 63249 -199.87.1.0/24 394962 -199.87.2.0/23 21849 -199.87.8.0/21 17381 -199.87.16.0/21 26814 -199.87.24.0/23 26814 -199.87.26.0/24 19445 -199.87.28.0/22 29778 -199.87.45.0/24 30097 -199.87.46.0/23 30097 -199.87.48.0/22 22457 -199.87.52.0/22 6461 -199.87.56.0/22 21913 -199.87.60.0/22 33693 -199.87.76.0/22 13607 -199.87.80.0/21 19165 -199.87.88.0/21 7018 -199.87.96.0/24 14753 -199.87.98.0/24 1605 -199.87.100.0/22 21565 -199.87.104.0/21 27197 -199.87.117.0/24 62 -199.87.118.0/23 62 -199.87.120.0/22 6643 -199.87.124.0/22 18712 -199.87.128.0/22 27326 -199.87.132.0/23 27326 -199.87.134.0/24 27326 -199.87.136.0/21 32281 -199.87.144.0/21 27537 -199.87.152.0/22 18451 -199.87.156.0/24 394352 -199.87.157.0/24 18451 -199.87.158.0/24 394081 -199.87.159.0/24 18451 -199.87.160.0/22 22517 -199.87.164.0/22 394976 -199.87.168.0/24 395952 -199.87.169.0/24 36558 -199.87.170.0/23 395838 -199.87.172.0/23 396878 -199.87.174.0/24 26979 -199.87.175.0/24 22222 -199.87.176.0/21 23497 -199.87.184.0/21 32524 -199.87.192.0/22 397347 -199.87.196.0/22 36797 -199.87.200.0/21 47022 -199.87.208.0/24 29863 -199.87.209.0/24 14515 -199.87.210.0/23 395092 -199.87.212.0/24 40018 -199.87.213.0/24 19722 -199.87.214.0/24 17194 -199.87.216.0/22 33459 -199.87.220.0/22 16978 -199.87.224.0/22 22487 -199.87.228.0/22 46841 -199.87.232.0/21 22552 -199.87.240.0/22 22873 -199.87.244.0/22 19467 -199.88.16.0/20 3464 -199.88.52.0/22 393731 -199.88.64.0/21 10309 -199.88.72.0/22 10309 -199.88.76.0/23 10309 -199.88.79.0/24 10309 -199.88.80.0/21 10309 -199.88.88.0/22 10309 -199.88.94.0/23 23489 -199.88.96.0/23 23489 -199.88.99.0/24 23489 -199.88.100.0/24 23489 -199.88.112.0/24 23489 -199.88.113.0/24 10309 -199.88.114.0/23 10309 -199.88.116.0/23 10309 -199.88.118.0/24 10309 -199.88.119.0/24 23489 -199.88.120.0/23 10309 -199.88.122.0/24 23489 -199.88.124.0/23 23489 -199.88.134.0/23 14932 -199.88.136.0/23 54768 -199.88.139.0/24 32592 -199.88.143.0/24 3549 -199.88.158.0/24 6939 -199.88.161.0/24 7029 -199.88.171.0/24 46887 -199.88.177.0/24 4565 -199.88.179.0/24 6315 -199.88.182.0/24 174 -199.88.184.0/24 14325 -199.88.191.0/24 14589 -199.88.194.0/24 40051 -199.88.205.0/24 13779 -199.88.208.0/23 21286 -199.88.241.0/24 209 -199.88.242.0/24 209 -199.88.243.0/24 20310 -199.88.245.0/24 394359 -199.88.246.0/23 54765 -199.88.250.0/24 396954 -199.88.253.0/24 16898 -199.88.255.0/24 394598 -199.89.0.0/23 8100 -199.89.3.0/24 8100 -199.89.49.0/24 17267 -199.89.51.0/24 20333 -199.89.52.0/22 27640 -199.89.56.0/21 46449 -199.89.64.0/18 5049 -199.89.128.0/24 11563 -199.89.130.0/24 3424 -199.89.132.0/23 3555 -199.89.139.0/24 394332 -199.89.145.0/24 3356 -199.89.147.0/24 4565 -199.89.149.0/24 395640 -199.89.158.0/23 3555 -199.89.160.0/24 3555 -199.89.162.0/24 397171 -199.89.169.0/24 62865 -199.89.170.0/24 62865 -199.89.174.0/23 23317 -199.89.177.0/24 33555 -199.89.180.0/24 393302 -199.89.192.0/23 7963 -199.89.194.0/24 397698 -199.89.196.0/24 11215 -199.89.206.0/23 397062 -199.89.209.0/24 18920 -199.89.212.0/24 3585 -199.89.214.0/24 20 -199.89.219.0/24 701 -199.89.221.0/24 22773 -199.89.222.0/24 25683 -199.89.224.0/24 15011 -199.89.229.0/24 7018 -199.89.247.0/24 20001 -199.89.249.0/24 12223 -199.89.250.0/23 12223 -199.89.254.0/24 395518 -199.89.255.0/24 27474 -199.90.0.0/16 6559 -199.91.8.0/23 9466 -199.91.10.0/23 19512 -199.91.13.0/24 19512 -199.91.14.0/24 19512 -199.91.32.0/23 14626 -199.91.34.0/24 14626 -199.91.36.0/22 14626 -199.91.40.0/24 14626 -199.91.43.0/24 19097 -199.91.44.0/22 36163 -199.91.52.0/23 12269 -199.91.56.0/21 32040 -199.91.64.0/21 10480 -199.91.72.0/22 21859 -199.91.76.0/22 14979 -199.91.80.0/21 15247 -199.91.91.0/24 11320 -199.91.94.0/23 36460 -199.91.96.0/21 54288 -199.91.105.0/24 13649 -199.91.107.0/24 18731 -199.91.108.0/22 54342 -199.91.112.0/22 33044 -199.91.116.0/22 35911 -199.91.120.0/22 4497 -199.91.124.0/22 54020 -199.91.128.0/22 32281 -199.91.135.0/24 27471 -199.91.136.0/23 16839 -199.91.139.0/24 16839 -199.91.140.0/23 16839 -199.91.144.0/23 393585 -199.91.147.0/24 393585 -199.91.148.0/24 32876 -199.91.149.0/24 14618 -199.91.150.0/24 11153 -199.91.151.0/24 396982 -199.91.152.0/21 46179 -199.91.160.0/24 63351 -199.91.162.0/24 63351 -199.91.164.0/22 55083 -199.91.172.0/22 64236 -199.91.176.0/22 393713 -199.91.180.0/22 21951 -199.91.184.0/23 20324 -199.91.192.0/21 27500 -199.91.200.0/22 26076 -199.91.204.0/22 40727 -199.91.208.0/21 36493 -199.91.216.0/24 29838 -199.91.218.0/24 40015 -199.91.224.0/24 394832 -199.91.225.0/24 25899 -199.91.226.0/24 25899 -199.91.227.0/24 25961 -199.91.228.0/24 397422 -199.91.229.0/24 11404 -199.91.230.0/23 25961 -199.91.232.0/22 46897 -199.91.236.0/22 25995 -199.91.240.0/21 63134 -199.91.248.0/22 4150 -199.91.252.0/22 33044 -199.92.0.0/17 3356 -199.92.128.0/19 3356 -199.92.160.0/21 11499 -199.92.168.0/23 11499 -199.92.170.0/24 11499 -199.92.171.0/24 3356 -199.92.172.0/22 3356 -199.92.176.0/20 3356 -199.92.192.0/18 3356 -199.93.0.0/18 3356 -199.93.64.0/20 3356 -199.93.80.0/24 3356 -199.93.81.0/24 30054 -199.93.82.0/23 3356 -199.93.84.0/24 54383 -199.93.85.0/24 3356 -199.93.86.0/23 3356 -199.93.88.0/21 3356 -199.93.96.0/19 3356 -199.93.128.0/17 3356 -199.94.0.0/19 13315 -199.94.32.0/20 13315 -199.94.48.0/24 13315 -199.94.49.0/24 3356 -199.94.50.0/23 3356 -199.94.52.0/22 3356 -199.94.56.0/22 3356 -199.94.60.0/22 1742 -199.94.64.0/19 13838 -199.94.96.0/19 3356 -199.94.128.0/17 3356 -199.95.0.0/16 3356 -199.96.0.0/21 19065 -199.96.8.0/23 19065 -199.96.10.0/24 54767 -199.96.12.0/23 14787 -199.96.14.0/24 14787 -199.96.15.0/24 35941 -199.96.16.0/21 22629 -199.96.24.0/22 22629 -199.96.28.0/22 32536 -199.96.34.0/23 19092 -199.96.36.0/22 46798 -199.96.44.0/22 36486 -199.96.48.0/22 22861 -199.96.52.0/22 53507 -199.96.56.0/21 13414 -199.96.64.0/22 3855 -199.96.72.0/24 22351 -199.96.78.0/24 22351 -199.96.79.0/24 46982 -199.96.80.0/21 53264 -199.96.88.0/21 54359 -199.96.96.0/21 39970 -199.96.104.0/24 11737 -199.96.105.0/24 17335 -199.96.106.0/23 46887 -199.96.108.0/22 11362 -199.96.112.0/22 20419 -199.96.116.0/22 13415 -199.96.120.0/22 11550 -199.96.124.0/22 12025 -199.96.128.0/21 19740 -199.96.136.0/22 32682 -199.96.140.0/24 26745 -199.96.141.0/24 53311 -199.96.142.0/24 46468 -199.96.143.0/24 46421 -199.96.144.0/22 7029 -199.96.148.0/24 54015 -199.96.149.0/24 393804 -199.96.150.0/23 7029 -199.96.152.0/22 22062 -199.96.161.0/24 26941 -199.96.162.0/23 26941 -199.96.168.0/22 36069 -199.96.172.0/22 26139 -199.96.176.0/21 14928 -199.96.184.0/21 26661 -199.96.192.0/23 29813 -199.96.194.0/24 29813 -199.96.196.0/22 62969 -199.96.200.0/21 11976 -199.96.208.0/22 26300 -199.96.214.0/24 17184 -199.96.215.0/24 46191 -199.96.216.0/21 16501 -199.96.224.0/22 1414 -199.96.228.0/22 26135 -199.96.232.0/22 20187 -199.96.236.0/22 21823 -199.96.240.0/22 13776 -199.96.244.0/22 40317 -199.96.248.0/21 17378 -199.97.0.0/18 174 -199.97.64.0/19 174 -199.97.96.0/20 174 -199.97.112.0/21 174 -199.97.120.0/24 174 -199.97.121.0/24 25987 -199.97.122.0/23 174 -199.97.124.0/22 174 -199.97.128.0/18 174 -199.97.192.0/19 174 -199.97.224.0/22 174 -199.97.228.0/24 40177 -199.97.229.0/24 174 -199.97.230.0/23 174 -199.97.232.0/21 174 -199.97.240.0/20 174 -199.98.0.0/20 174 -199.98.16.0/20 6199 -199.98.32.0/19 174 -199.98.64.0/18 174 -199.98.128.0/17 174 -199.99.0.0/23 174 -199.99.2.0/24 18593 -199.99.3.0/24 174 -199.99.4.0/22 174 -199.99.8.0/22 174 -199.99.12.0/23 174 -199.99.14.0/24 18593 -199.99.15.0/24 174 -199.99.16.0/24 18593 -199.99.17.0/24 174 -199.99.18.0/23 174 -199.99.20.0/23 174 -199.99.22.0/24 18593 -199.99.23.0/24 174 -199.99.24.0/22 174 -199.99.28.0/24 18593 -199.99.29.0/24 174 -199.99.30.0/23 174 -199.99.32.0/21 174 -199.99.40.0/22 174 -199.99.44.0/23 174 -199.99.46.0/24 174 -199.99.47.0/24 33598 -199.99.48.0/20 174 -199.99.64.0/19 174 -199.99.96.0/22 174 -199.99.100.0/23 174 -199.99.102.0/24 27064 -199.99.103.0/24 174 -199.99.104.0/21 174 -199.99.112.0/20 174 -199.99.128.0/19 174 -199.99.160.0/20 174 -199.99.176.0/21 174 -199.99.184.0/22 174 -199.99.188.0/24 174 -199.99.189.0/24 21547 -199.99.190.0/23 174 -199.99.192.0/19 174 -199.99.224.0/20 174 -199.99.240.0/21 174 -199.99.248.0/21 46110 -199.100.0.0/16 174 -199.101.0.0/21 395446 -199.101.8.0/21 46110 -199.101.26.0/23 33411 -199.101.28.0/22 26008 -199.101.32.0/21 19185 -199.101.40.0/23 19185 -199.101.44.0/22 33312 -199.101.48.0/22 23535 -199.101.52.0/22 16212 -199.101.56.0/22 30028 -199.101.60.0/24 30028 -199.101.61.0/24 394989 -199.101.62.0/24 394989 -199.101.63.0/24 30028 -199.101.64.0/21 29758 -199.101.72.0/22 14007 -199.101.76.0/24 54370 -199.101.78.0/24 14622 -199.101.80.0/21 26128 -199.101.88.0/22 54240 -199.101.92.0/22 1421 -199.101.96.0/21 46261 -199.101.105.0/24 18649 -199.101.107.0/24 18649 -199.101.108.0/23 58580 -199.101.110.0/23 19271 -199.101.112.0/22 56473 -199.101.116.0/22 31972 -199.101.120.0/21 22709 -199.101.128.0/22 22450 -199.101.132.0/22 40824 -199.101.140.0/24 55259 -199.101.142.0/23 41107 -199.101.144.0/22 46506 -199.101.148.0/22 16939 -199.101.152.0/22 13713 -199.101.156.0/22 30286 -199.101.161.0/24 14413 -199.101.164.0/22 33329 -199.101.168.0/23 19039 -199.101.171.0/24 13213 -199.101.172.0/22 27014 -199.101.176.0/22 36316 -199.101.180.0/23 22179 -199.101.184.0/22 31863 -199.101.188.0/22 36511 -199.101.192.0/24 7203 -199.101.200.0/22 14410 -199.101.204.0/22 32490 -199.101.208.0/22 13767 -199.101.212.0/22 30539 -199.101.220.0/22 14583 -199.101.224.0/21 23205 -199.101.232.0/22 12272 -199.101.236.0/22 20267 -199.101.240.0/21 19366 -199.102.0.0/23 19512 -199.102.8.0/21 16774 -199.102.38.0/24 13499 -199.102.40.0/22 13499 -199.102.44.0/22 14935 -199.102.48.0/22 35937 -199.102.52.0/22 20135 -199.102.56.0/22 31849 -199.102.60.0/22 15177 -199.102.64.0/22 19844 -199.102.68.0/22 53292 -199.102.72.0/22 396061 -199.102.76.0/22 36236 -199.102.80.0/21 17223 -199.102.88.0/22 22804 -199.102.92.0/22 19174 -199.102.96.0/21 14102 -199.102.104.0/22 20093 -199.102.108.0/23 54446 -199.102.112.0/24 36682 -199.102.113.0/24 26172 -199.102.114.0/23 46887 -199.102.116.0/22 46887 -199.102.120.0/22 20154 -199.102.124.0/23 20154 -199.102.126.0/24 20154 -199.102.127.0/24 22180 -199.102.128.0/22 32586 -199.102.132.0/22 31751 -199.102.136.0/21 11135 -199.102.144.0/22 10333 -199.102.148.0/22 14330 -199.102.152.0/22 23188 -199.102.156.0/22 6280 -199.102.160.0/22 1610 -199.102.164.0/23 1610 -199.102.166.0/24 6428 -199.102.167.0/24 1610 -199.102.168.0/21 11783 -199.102.176.0/23 30109 -199.102.178.0/24 30109 -199.102.180.0/22 19331 -199.102.184.0/22 26479 -199.102.188.0/22 15146 -199.102.192.0/21 25877 -199.102.200.0/21 30466 -199.102.208.0/21 33029 -199.102.216.0/22 23093 -199.102.220.0/22 32823 -199.102.224.0/21 30633 -199.102.232.0/22 32286 -199.102.236.0/22 21554 -199.102.240.0/22 7403 -199.102.244.0/23 22994 -199.102.254.0/24 19403 -199.103.0.0/21 22663 -199.103.15.0/24 7810 -199.103.16.0/22 397453 -199.103.22.0/24 3356 -199.103.23.0/24 46894 -199.103.24.0/24 396986 -199.103.28.0/23 23520 -199.103.32.0/20 7018 -199.103.48.0/22 22759 -199.103.52.0/22 46826 -199.103.56.0/23 36218 -199.103.58.0/24 19693 -199.103.59.0/24 36218 -199.103.60.0/22 36218 -199.103.85.0/24 54830 -199.103.90.0/23 8075 -199.103.96.0/24 54860 -199.103.108.0/24 54824 -199.103.111.0/24 25357 -199.103.112.0/24 25357 -199.103.122.0/24 8075 -199.103.128.0/20 2914 -199.103.144.0/23 2914 -199.103.146.0/24 11729 -199.103.147.0/24 2914 -199.103.148.0/22 2914 -199.103.152.0/21 2914 -199.103.160.0/21 2914 -199.103.168.0/23 2914 -199.103.170.0/24 26168 -199.103.171.0/24 2914 -199.103.172.0/22 2914 -199.103.176.0/20 2914 -199.103.192.0/18 2914 -199.104.0.0/21 14230 -199.104.8.0/24 14230 -199.104.9.0/24 30543 -199.104.10.0/23 14230 -199.104.12.0/22 14230 -199.104.16.0/22 14230 -199.104.20.0/23 14230 -199.104.22.0/24 14230 -199.104.23.0/24 32922 -199.104.24.0/21 14230 -199.104.32.0/19 14230 -199.104.64.0/23 13739 -199.104.70.0/24 13415 -199.104.76.0/23 210 -199.104.83.0/24 3833 -199.104.84.0/24 3833 -199.104.91.0/24 13415 -199.104.92.0/24 13415 -199.104.93.0/24 17055 -199.104.95.0/24 11319 -199.104.97.0/24 1746 -199.104.98.0/24 1746 -199.104.104.0/24 6629 -199.104.120.0/21 6315 -199.104.128.0/21 19773 -199.104.136.0/23 19773 -199.104.138.0/23 209 -199.104.140.0/22 209 -199.104.144.0/23 209 -199.104.148.0/22 1706 -199.104.152.0/21 1706 -199.104.207.0/24 5650 -199.104.208.0/21 209 -199.104.216.0/23 209 -199.104.253.0/24 11809 -199.105.0.0/18 7018 -199.105.64.0/20 7018 -199.105.80.0/22 7018 -199.105.84.0/22 10844 -199.105.88.0/24 10455 -199.105.89.0/24 7018 -199.105.90.0/23 7018 -199.105.92.0/22 7018 -199.105.96.0/21 7018 -199.105.104.0/24 7018 -199.105.105.0/24 25777 -199.105.106.0/23 7018 -199.105.108.0/22 7018 -199.105.112.0/21 7018 -199.105.120.0/21 10868 -199.105.128.0/21 17229 -199.105.136.0/21 7018 -199.105.144.0/20 7018 -199.105.160.0/19 7018 -199.105.192.0/22 4268 -199.105.196.0/23 4268 -199.105.198.0/24 32216 -199.105.199.0/24 4268 -199.105.200.0/21 4268 -199.105.208.0/20 7018 -199.105.224.0/21 17232 -199.105.232.0/21 7018 -199.105.240.0/20 7018 -199.106.0.0/19 7018 -199.106.32.0/21 7018 -199.106.40.0/21 17228 -199.106.48.0/20 7018 -199.106.64.0/24 4265 -199.106.65.0/24 7018 -199.106.66.0/23 4265 -199.106.68.0/23 4265 -199.106.70.0/24 54981 -199.106.71.0/24 4265 -199.106.72.0/22 4265 -199.106.76.0/22 7018 -199.106.80.0/21 7018 -199.106.88.0/21 4264 -199.106.96.0/19 11030 -199.106.128.0/21 4266 -199.106.136.0/22 16967 -199.106.140.0/22 7018 -199.106.144.0/21 16966 -199.106.152.0/22 4267 -199.106.156.0/22 2386 -199.106.160.0/22 4262 -199.106.164.0/23 4262 -199.106.166.0/24 4262 -199.106.167.0/24 11167 -199.106.168.0/22 2386 -199.106.172.0/24 2386 -199.106.173.0/24 7105 -199.106.174.0/23 2386 -199.106.176.0/22 17231 -199.106.180.0/24 7018 -199.106.181.0/24 17231 -199.106.182.0/23 17231 -199.106.184.0/21 7018 -199.106.192.0/21 7018 -199.106.200.0/21 17233 -199.106.208.0/20 4264 -199.106.224.0/21 7018 -199.106.232.0/22 4264 -199.106.236.0/23 7172 -199.106.238.0/23 4264 -199.106.240.0/20 7018 -199.107.0.0/23 2386 -199.107.2.0/23 17232 -199.107.4.0/24 17232 -199.107.5.0/24 2386 -199.107.6.0/23 17232 -199.107.8.0/21 7018 -199.107.16.0/21 13788 -199.107.24.0/23 17232 -199.107.26.0/24 2386 -199.107.27.0/24 17232 -199.107.28.0/24 7018 -199.107.29.0/24 17232 -199.107.30.0/23 17232 -199.107.32.0/22 17231 -199.107.36.0/23 17231 -199.107.38.0/24 13788 -199.107.39.0/24 17231 -199.107.40.0/23 17231 -199.107.42.0/24 17231 -199.107.43.0/24 7018 -199.107.44.0/24 17231 -199.107.45.0/24 7018 -199.107.46.0/24 17231 -199.107.47.0/24 2687 -199.107.48.0/24 7018 -199.107.49.0/24 2687 -199.107.50.0/24 2687 -199.107.51.0/24 7018 -199.107.52.0/22 7018 -199.107.56.0/21 7018 -199.107.64.0/22 17231 -199.107.68.0/23 17231 -199.107.70.0/24 17231 -199.107.71.0/24 7018 -199.107.72.0/21 7018 -199.107.80.0/20 7018 -199.107.96.0/20 7018 -199.107.112.0/21 7018 -199.107.120.0/24 36157 -199.107.121.0/24 17227 -199.107.122.0/23 17227 -199.107.124.0/22 17227 -199.107.128.0/21 17231 -199.107.136.0/21 7018 -199.107.144.0/21 7018 -199.107.152.0/21 4265 -199.107.160.0/21 11045 -199.107.168.0/21 7018 -199.107.176.0/21 4267 -199.107.184.0/21 4264 -199.107.192.0/19 54690 -199.107.224.0/21 17225 -199.107.232.0/21 4264 -199.107.240.0/20 7018 -199.108.0.0/20 7018 -199.108.16.0/24 7018 -199.108.17.0/24 16967 -199.108.18.0/23 16967 -199.108.20.0/22 16967 -199.108.24.0/22 16967 -199.108.28.0/24 16967 -199.108.29.0/24 7018 -199.108.30.0/23 16967 -199.108.32.0/20 17233 -199.108.48.0/20 17229 -199.108.64.0/20 7018 -199.108.80.0/24 16967 -199.108.81.0/24 7018 -199.108.82.0/24 7018 -199.108.83.0/24 16967 -199.108.84.0/22 16967 -199.108.88.0/22 16967 -199.108.92.0/22 4269 -199.108.96.0/23 7018 -199.108.98.0/23 16967 -199.108.100.0/22 4269 -199.108.104.0/22 4269 -199.108.108.0/24 16967 -199.108.109.0/24 393415 -199.108.110.0/23 16967 -199.108.112.0/21 7018 -199.108.120.0/24 4269 -199.108.121.0/24 7018 -199.108.122.0/24 4269 -199.108.123.0/24 7018 -199.108.124.0/24 393415 -199.108.125.0/24 16967 -199.108.126.0/23 16967 -199.108.128.0/19 7018 -199.108.160.0/21 46627 -199.108.168.0/21 7018 -199.108.176.0/20 7018 -199.108.192.0/24 17231 -199.108.193.0/24 7018 -199.108.194.0/24 17231 -199.108.195.0/24 7018 -199.108.196.0/24 7018 -199.108.197.0/24 17231 -199.108.198.0/23 17231 -199.108.200.0/21 17231 -199.108.208.0/20 7018 -199.108.224.0/22 11045 -199.108.228.0/23 11045 -199.108.230.0/23 7018 -199.108.232.0/21 7018 -199.108.240.0/24 7018 -199.108.241.0/24 17226 -199.108.242.0/23 17226 -199.108.244.0/22 17226 -199.108.248.0/21 7018 -199.109.3.0/24 3754 -199.109.4.0/23 3754 -199.109.8.0/22 3754 -199.109.16.0/21 3756 -199.109.32.0/22 3756 -199.109.44.0/22 5719 -199.109.64.0/24 3755 -199.109.66.0/24 3754 -199.109.94.0/24 3630 -199.109.99.0/24 3630 -199.109.192.0/22 3685 -199.110.240.0/20 3755 -199.111.0.0/20 225 -199.111.16.0/23 40220 -199.111.18.0/23 225 -199.111.20.0/24 25680 -199.111.21.0/24 7795 -199.111.22.0/23 225 -199.111.24.0/21 225 -199.111.32.0/19 225 -199.111.64.0/19 397644 -199.111.96.0/22 23339 -199.111.100.0/22 225 -199.111.104.0/21 225 -199.111.112.0/20 7795 -199.111.128.0/21 7795 -199.111.136.0/22 397644 -199.111.140.0/23 397644 -199.111.142.0/23 22773 -199.111.144.0/20 394533 -199.111.160.0/24 225 -199.111.161.0/24 40220 -199.111.162.0/23 225 -199.111.164.0/22 225 -199.111.168.0/21 225 -199.111.176.0/20 225 -199.111.192.0/18 225 -199.112.0.0/22 721 -199.112.4.0/23 721 -199.112.6.0/24 313 -199.112.7.0/24 721 -199.112.8.0/21 721 -199.112.16.0/22 721 -199.112.20.0/23 721 -199.112.22.0/24 721 -199.112.23.0/24 6034 -199.112.24.0/24 6034 -199.112.25.0/24 721 -199.112.26.0/23 721 -199.112.28.0/22 721 -199.112.32.0/19 721 -199.112.64.0/21 721 -199.112.72.0/22 721 -199.112.76.0/24 5306 -199.112.77.0/24 721 -199.112.78.0/23 721 -199.112.80.0/20 721 -199.112.96.0/19 721 -199.112.128.0/20 5982 -199.112.144.0/20 721 -199.112.160.0/20 721 -199.112.176.0/21 721 -199.112.184.0/22 721 -199.112.188.0/22 5819 -199.112.192.0/18 721 -199.113.0.0/17 721 -199.113.128.0/19 721 -199.113.160.0/20 721 -199.113.176.0/22 721 -199.113.180.0/23 721 -199.113.182.0/24 3471 -199.113.183.0/24 312 -199.113.184.0/21 721 -199.113.192.0/18 721 -199.114.0.0/22 721 -199.114.4.0/23 721 -199.114.6.0/24 721 -199.114.7.0/24 11372 -199.114.8.0/23 5972 -199.114.10.0/23 721 -199.114.13.0/24 15164 -199.114.32.0/21 721 -199.114.40.0/22 721 -199.114.44.0/23 721 -199.114.46.0/24 6040 -199.114.47.0/24 721 -199.114.57.0/24 367 -199.114.62.0/24 1538 -199.114.201.0/24 19893 -199.114.204.0/22 19964 -199.114.208.0/22 27577 -199.114.216.0/21 54455 -199.114.228.0/22 46193 -199.114.232.0/22 33209 -199.114.236.0/24 36079 -199.114.238.0/24 36079 -199.114.240.0/21 11084 -199.114.248.0/24 27552 -199.114.249.0/24 25623 -199.114.250.0/24 27552 -199.114.251.0/24 25623 -199.114.252.0/22 11239 -199.115.6.0/23 19774 -199.115.12.0/24 7046 -199.115.16.0/22 32369 -199.115.20.0/24 19271 -199.115.21.0/24 32369 -199.115.22.0/23 32369 -199.115.24.0/23 32369 -199.115.28.0/23 30689 -199.115.30.0/24 46806 -199.115.31.0/24 395017 -199.115.40.0/21 3455 -199.115.56.0/21 26181 -199.115.64.0/21 53661 -199.115.72.0/21 54090 -199.115.80.0/22 46937 -199.115.88.0/21 33130 -199.115.96.0/21 46844 -199.115.110.0/23 394275 -199.115.112.0/21 30633 -199.115.120.0/22 40076 -199.115.124.0/22 8304 -199.115.128.0/22 394991 -199.115.132.0/24 394991 -199.115.133.0/24 5650 -199.115.134.0/23 394991 -199.115.136.0/21 18794 -199.115.144.0/22 16708 -199.115.148.0/23 19160 -199.115.151.0/24 19160 -199.115.152.0/22 12041 -199.115.156.0/23 42 -199.115.158.0/24 393246 -199.115.159.0/24 54871 -199.115.160.0/22 46449 -199.115.164.0/22 53857 -199.115.168.0/24 53659 -199.115.169.0/24 25956 -199.115.170.0/23 25956 -199.115.172.0/22 26322 -199.115.184.0/21 17306 -199.115.192.0/23 11798 -199.115.196.0/22 14403 -199.115.201.0/24 54116 -199.115.202.0/23 54116 -199.115.204.0/22 36436 -199.115.208.0/22 22645 -199.115.212.0/23 21719 -199.115.214.0/24 33514 -199.115.215.0/24 21719 -199.115.216.0/21 13438 -199.115.228.0/22 25820 -199.115.232.0/21 36315 -199.115.240.0/22 36210 -199.115.244.0/22 13415 -199.115.248.0/22 29838 -199.115.252.0/22 17306 -199.116.8.0/21 33751 -199.116.52.0/23 46588 -199.116.56.0/21 39963 -199.116.72.0/22 32329 -199.116.76.0/22 54456 -199.116.80.0/22 53610 -199.116.84.0/24 3257 -199.116.85.0/24 54103 -199.116.86.0/23 54103 -199.116.88.0/21 54328 -199.116.96.0/23 12083 -199.116.100.0/22 53707 -199.116.104.0/22 17306 -199.116.108.0/22 26375 -199.116.112.0/21 46562 -199.116.120.0/23 54491 -199.116.122.0/23 396974 -199.116.124.0/22 54483 -199.116.128.0/24 394563 -199.116.132.0/22 25843 -199.116.136.0/21 36489 -199.116.148.0/23 20077 -199.116.152.0/21 1640 -199.116.161.0/24 40428 -199.116.162.0/24 40428 -199.116.163.0/24 22518 -199.116.164.0/23 40428 -199.116.167.0/24 22518 -199.116.168.0/22 27471 -199.116.172.0/23 27471 -199.116.174.0/24 27471 -199.116.180.0/22 32867 -199.116.184.0/23 53690 -199.116.187.0/24 53690 -199.116.188.0/24 53690 -199.116.191.0/24 53690 -199.116.192.0/21 16717 -199.116.208.0/22 36301 -199.116.216.0/21 53732 -199.116.224.0/21 395172 -199.116.232.0/22 15296 -199.116.236.0/22 29914 -199.116.240.0/22 40029 -199.116.244.0/22 18812 -199.116.248.0/21 46549 -199.117.0.0/20 209 -199.117.16.0/21 209 -199.117.24.0/22 209 -199.117.28.0/23 209 -199.117.30.0/24 36329 -199.117.31.0/24 209 -199.117.32.0/20 209 -199.117.48.0/22 209 -199.117.52.0/24 22658 -199.117.53.0/24 209 -199.117.54.0/23 209 -199.117.56.0/21 209 -199.117.64.0/19 209 -199.117.96.0/23 26819 -199.117.98.0/23 209 -199.117.100.0/22 209 -199.117.104.0/23 209 -199.117.106.0/24 36289 -199.117.107.0/24 209 -199.117.108.0/22 209 -199.117.112.0/20 209 -199.117.128.0/20 209 -199.117.144.0/21 209 -199.117.152.0/22 209 -199.117.156.0/22 46663 -199.117.160.0/22 209 -199.117.164.0/23 209 -199.117.166.0/24 209 -199.117.167.0/24 12244 -199.117.168.0/24 21639 -199.117.169.0/24 209 -199.117.170.0/23 209 -199.117.172.0/22 209 -199.117.176.0/22 209 -199.117.180.0/24 13993 -199.117.181.0/24 209 -199.117.182.0/23 209 -199.117.184.0/21 209 -199.117.192.0/21 209 -199.117.200.0/22 209 -199.117.204.0/24 209 -199.117.205.0/24 36329 -199.117.206.0/23 209 -199.117.208.0/22 209 -199.117.212.0/24 31900 -199.117.213.0/24 209 -199.117.214.0/23 209 -199.117.216.0/22 209 -199.117.220.0/24 10835 -199.117.221.0/24 209 -199.117.222.0/23 209 -199.117.224.0/21 209 -199.117.232.0/23 209 -199.117.234.0/24 16825 -199.117.235.0/24 209 -199.117.236.0/22 209 -199.117.240.0/21 209 -199.117.248.0/22 209 -199.117.252.0/23 209 -199.117.254.0/24 209 -199.117.255.0/24 16491 -199.118.0.0/18 10455 -199.118.64.0/19 10455 -199.118.96.0/20 10455 -199.118.112.0/24 10455 -199.118.113.0/24 702 -199.118.114.0/23 10455 -199.118.116.0/22 10455 -199.118.120.0/21 10455 -199.118.128.0/17 10455 -199.119.0.0/21 394576 -199.119.13.0/24 701 -199.119.25.0/24 40910 -199.119.28.0/22 46830 -199.119.64.0/23 57695 -199.119.66.0/24 11351 -199.119.68.0/22 33362 -199.119.76.0/22 53857 -199.119.80.0/22 27195 -199.119.84.0/22 30247 -199.119.92.0/24 55106 -199.119.95.0/24 55106 -199.119.96.0/22 13825 -199.119.100.0/22 29802 -199.119.104.0/21 53830 -199.119.112.0/21 22925 -199.119.120.0/21 1610 -199.119.128.0/22 53424 -199.119.132.0/22 26512 -199.119.136.0/21 53727 -199.119.144.0/21 53703 -199.119.152.0/21 53707 -199.119.160.0/22 6461 -199.119.168.0/21 32758 -199.119.176.0/22 13354 -199.119.180.0/22 396300 -199.119.186.0/24 46977 -199.119.192.0/21 17184 -199.119.200.0/21 40676 -199.119.208.0/22 25769 -199.119.212.0/23 62 -199.119.214.0/24 62 -199.119.215.0/24 396497 -199.119.216.0/22 25999 -199.119.220.0/22 17204 -199.119.228.0/22 14193 -199.119.232.0/22 20365 -199.119.236.0/22 22150 -199.119.240.0/21 7029 -199.119.248.0/22 53764 -199.119.252.0/22 10929 -199.120.16.0/20 2711 -199.120.32.0/20 22489 -199.120.48.0/24 394161 -199.120.55.0/24 22489 -199.120.57.0/24 22489 -199.120.64.0/23 5056 -199.120.66.0/24 5056 -199.120.67.0/24 396461 -199.120.68.0/24 5056 -199.120.69.0/24 53347 -199.120.70.0/23 5056 -199.120.72.0/23 5056 -199.120.74.0/24 63033 -199.120.75.0/24 5056 -199.120.76.0/22 5056 -199.120.80.0/24 62825 -199.120.81.0/24 5056 -199.120.82.0/23 18883 -199.120.84.0/23 5056 -199.120.86.0/24 397475 -199.120.87.0/24 5056 -199.120.88.0/24 5056 -199.120.89.0/24 63394 -199.120.90.0/23 30325 -199.120.92.0/24 63394 -199.120.93.0/24 5056 -199.120.94.0/23 5056 -199.120.96.0/24 30325 -199.120.97.0/24 5056 -199.120.98.0/23 5056 -199.120.100.0/24 5056 -199.120.101.0/24 18883 -199.120.102.0/23 5056 -199.120.104.0/21 5056 -199.120.112.0/22 5056 -199.120.116.0/24 62825 -199.120.117.0/24 30325 -199.120.118.0/23 5056 -199.120.120.0/24 18883 -199.120.121.0/24 62825 -199.120.122.0/24 63394 -199.120.123.0/24 5056 -199.120.124.0/23 63394 -199.120.126.0/24 18883 -199.120.127.0/24 5056 -199.120.128.0/24 395518 -199.120.131.0/24 398010 -199.120.141.0/24 715 -199.120.142.0/23 42 -199.120.144.0/24 715 -199.120.152.0/24 11351 -199.120.153.0/24 131 -199.120.154.0/24 3714 -199.120.157.0/24 4927 -199.120.166.0/23 11777 -199.120.172.0/23 3356 -199.120.181.0/24 600 -199.120.188.0/24 15237 -199.120.189.0/24 15112 -199.120.190.0/24 209 -199.120.191.0/24 395999 -199.120.202.0/24 33155 -199.120.203.0/24 23177 -199.120.209.0/24 54854 -199.120.223.0/24 46291 -199.120.228.0/23 10753 -199.120.230.0/24 10753 -199.120.239.0/24 19202 -199.120.242.0/24 26842 -199.120.243.0/24 62766 -199.120.249.0/24 394907 -199.120.252.0/24 7018 -199.121.0.0/18 721 -199.121.64.0/22 721 -199.121.68.0/23 721 -199.121.70.0/24 721 -199.121.71.0/24 27064 -199.121.72.0/21 721 -199.121.80.0/20 721 -199.121.96.0/20 721 -199.121.112.0/22 721 -199.121.116.0/24 27064 -199.121.117.0/24 721 -199.121.118.0/23 721 -199.121.120.0/21 721 -199.121.128.0/23 721 -199.121.130.0/24 27064 -199.121.131.0/24 721 -199.121.132.0/22 721 -199.121.136.0/21 721 -199.121.144.0/20 721 -199.121.160.0/22 721 -199.121.164.0/24 721 -199.121.165.0/24 27064 -199.121.166.0/24 27064 -199.121.167.0/24 721 -199.121.168.0/22 721 -199.121.172.0/23 721 -199.121.174.0/23 637 -199.121.176.0/21 721 -199.121.184.0/24 721 -199.121.185.0/24 637 -199.121.186.0/23 721 -199.121.188.0/22 721 -199.121.192.0/19 721 -199.121.224.0/20 721 -199.121.240.0/24 637 -199.121.241.0/24 721 -199.121.242.0/23 721 -199.121.244.0/22 721 -199.121.248.0/21 721 -199.122.0.0/23 721 -199.122.2.0/24 721 -199.122.3.0/24 25956 -199.122.4.0/24 721 -199.122.5.0/24 5972 -199.122.6.0/24 5972 -199.122.7.0/24 33169 -199.122.28.0/22 12025 -199.122.32.0/22 721 -199.122.36.0/24 721 -199.122.37.0/24 367 -199.122.38.0/24 721 -199.122.39.0/24 27064 -199.122.40.0/24 27064 -199.122.41.0/24 1480 -199.122.42.0/24 1461 -199.122.43.0/24 721 -199.122.44.0/23 721 -199.122.46.0/24 721 -199.122.47.0/24 27064 -199.122.52.0/23 1461 -199.122.104.0/21 46687 -199.122.112.0/22 54381 -199.122.116.0/22 10929 -199.122.120.0/21 22606 -199.123.0.0/22 15108 -199.123.13.0/24 54762 -199.123.16.0/21 5972 -199.123.24.0/22 5972 -199.123.28.0/23 5972 -199.123.30.0/23 721 -199.123.71.0/24 1526 -199.123.72.0/22 1526 -199.123.76.0/24 1590 -199.123.77.0/24 721 -199.123.78.0/23 1494 -199.123.80.0/22 721 -199.123.84.0/24 1461 -199.123.85.0/24 721 -199.123.86.0/23 668 -199.123.88.0/23 668 -199.123.90.0/24 668 -199.123.91.0/24 721 -199.123.92.0/24 5961 -199.123.104.0/24 721 -199.123.105.0/24 668 -199.123.106.0/24 1562 -199.123.107.0/24 721 -199.123.108.0/22 721 -199.123.112.0/24 27064 -199.123.113.0/24 721 -199.123.114.0/24 721 -199.123.115.0/24 1511 -199.123.116.0/24 1511 -199.123.117.0/24 1494 -199.123.118.0/23 721 -199.123.121.0/24 1503 -199.123.122.0/24 1541 -199.123.123.0/24 721 -199.124.3.0/24 54760 -199.124.16.0/21 721 -199.124.24.0/24 12076 -199.124.25.0/24 54799 -199.124.28.0/23 7381 -199.124.30.0/23 19366 -199.124.60.0/22 46506 -199.125.8.0/24 12154 -199.125.10.0/23 12154 -199.125.12.0/23 12154 -199.125.14.0/24 12154 -199.125.15.0/24 46089 -199.125.16.0/23 31770 -199.125.18.0/24 31770 -199.125.20.0/24 31770 -199.125.30.0/23 31770 -199.125.45.0/24 13858 -199.125.55.0/24 396011 -199.125.56.0/24 396011 -199.125.64.0/24 33748 -199.125.65.0/24 14265 -199.125.66.0/24 25808 -199.125.67.0/24 33748 -199.125.68.0/24 25808 -199.125.69.0/24 14265 -199.125.70.0/23 14265 -199.125.72.0/21 14265 -199.125.80.0/20 14265 -199.125.96.0/22 33748 -199.125.100.0/24 14265 -199.125.101.0/24 33748 -199.125.102.0/23 33748 -199.125.104.0/21 14265 -199.125.112.0/20 14265 -199.125.128.0/18 2828 -199.125.192.0/19 2828 -199.125.224.0/20 2828 -199.125.240.0/21 2828 -199.125.248.0/22 2828 -199.125.252.0/23 2828 -199.125.254.0/24 17361 -199.125.255.0/24 2828 -199.126.0.0/16 852 -199.127.8.0/22 26815 -199.127.13.0/24 26815 -199.127.32.0/24 19271 -199.127.34.0/24 3549 -199.127.36.0/24 19271 -199.127.37.0/24 15290 -199.127.38.0/23 53420 -199.127.40.0/23 3549 -199.127.44.0/22 29802 -199.127.48.0/21 10750 -199.127.56.0/22 53340 -199.127.60.0/22 23470 -199.127.64.0/22 27435 -199.127.80.0/23 54503 -199.127.82.0/24 54503 -199.127.88.0/22 36204 -199.127.92.0/24 36596 -199.127.94.0/24 3549 -199.127.99.0/24 54444 -199.127.102.0/23 54444 -199.127.104.0/22 11404 -199.127.108.0/24 55053 -199.127.109.0/24 36493 -199.127.110.0/23 36493 -199.127.112.0/22 31857 -199.127.116.0/22 27501 -199.127.120.0/23 13415 -199.127.122.0/24 54637 -199.127.123.0/24 13415 -199.127.124.0/22 13415 -199.127.128.0/22 13851 -199.127.132.0/22 13555 -199.127.136.0/21 36436 -199.127.146.0/24 53770 -199.127.148.0/22 8001 -199.127.152.0/24 53773 -199.127.153.0/24 54930 -199.127.154.0/24 53773 -199.127.155.0/24 54930 -199.127.160.0/21 53739 -199.127.168.0/22 32506 -199.127.172.0/22 18988 -199.127.176.0/22 53586 -199.127.180.0/22 31829 -199.127.184.0/21 22728 -199.127.192.0/22 11483 -199.127.196.0/24 40945 -199.127.197.0/24 33582 -199.127.198.0/24 40945 -199.127.199.0/24 33582 -199.127.200.0/22 21777 -199.127.204.0/22 26120 -199.127.208.0/21 36610 -199.127.216.0/22 53628 -199.127.220.0/22 19201 -199.127.224.0/22 14613 -199.127.228.0/22 36687 -199.127.232.0/22 16509 -199.127.236.0/22 17456 -199.127.240.0/21 53797 -199.127.248.0/21 12989 -199.128.0.0/11 4152 -199.160.192.0/24 1239 -199.161.127.0/24 19997 -199.164.8.0/21 20048 -199.164.17.0/24 701 -199.164.21.0/24 3356 -199.164.25.0/24 3356 -199.164.26.0/24 174 -199.164.27.0/24 46887 -199.164.28.0/24 20141 -199.164.32.0/22 1226 -199.164.36.0/22 25753 -199.164.44.0/22 7385 -199.164.56.0/21 25753 -199.164.64.0/18 33363 -199.164.135.0/24 40610 -199.164.138.0/24 16989 -199.164.141.0/24 25992 -199.164.142.0/24 25992 -199.164.143.0/24 17378 -199.164.149.0/24 1747 -199.164.150.0/23 25919 -199.164.159.0/24 23095 -199.164.160.0/23 23095 -199.164.165.0/24 25648 -199.164.166.0/24 393507 -199.164.167.0/24 20271 -199.164.174.0/24 2386 -199.164.176.0/23 2939 -199.164.186.0/24 36587 -199.164.192.0/24 54807 -199.164.210.0/24 2914 -199.164.217.0/24 4373 -199.164.227.0/24 13868 -199.164.237.0/24 3734 -199.164.248.0/23 6939 -199.164.253.0/24 5078 -199.164.254.0/24 11486 -199.164.255.0/24 14933 -199.165.12.0/22 26654 -199.165.16.0/20 195 -199.165.64.0/18 7774 -199.165.128.0/24 29748 -199.165.137.0/24 62983 -199.165.138.0/24 394020 -199.165.146.0/23 1906 -199.165.148.0/24 1906 -199.165.149.0/24 17129 -199.165.152.0/23 13998 -199.165.154.0/24 13998 -199.165.155.0/24 18779 -199.165.158.0/24 10497 -199.165.161.0/24 63252 -199.165.168.0/22 22891 -199.165.177.0/24 4600 -199.165.179.0/24 19255 -199.165.203.0/24 11170 -199.165.204.0/23 3549 -199.165.206.0/24 7018 -199.165.212.0/24 29861 -199.165.223.0/24 14110 -199.165.233.0/24 22658 -199.165.246.0/24 394318 -199.166.0.0/24 7415 -199.166.3.0/24 1617 -199.166.5.0/24 25999 -199.166.6.0/24 7794 -199.166.9.0/24 10264 -199.166.10.0/23 10264 -199.166.12.0/22 10264 -199.166.16.0/23 577 -199.166.24.0/24 3257 -199.166.25.0/24 203999 -199.166.26.0/23 203999 -199.166.28.0/22 203999 -199.166.32.0/24 2386 -199.166.33.0/24 32379 -199.166.34.0/23 36351 -199.166.36.0/23 36351 -199.166.96.0/23 852 -199.166.110.0/23 23229 -199.166.120.0/21 23229 -199.166.128.0/22 23229 -199.166.136.0/22 23229 -199.166.184.0/22 23229 -199.166.188.0/23 23229 -199.166.204.0/24 16751 -199.166.206.0/24 7381 -199.166.210.0/24 7794 -199.166.216.0/23 62575 -199.166.219.0/24 54777 -199.166.224.0/23 11342 -199.166.227.0/24 19662 -199.166.228.0/24 19662 -199.166.230.0/23 852 -199.166.248.0/22 26744 -199.166.252.0/24 577 -199.166.254.0/24 13773 -199.167.16.0/21 54527 -199.167.24.0/22 54182 -199.167.28.0/24 8100 -199.167.29.0/24 54561 -199.167.30.0/23 54561 -199.167.32.0/21 7381 -199.167.40.0/22 30633 -199.167.44.0/24 60781 -199.167.45.0/24 30633 -199.167.46.0/23 7203 -199.167.48.0/22 23370 -199.167.52.0/23 54538 -199.167.54.0/24 396421 -199.167.57.0/24 53988 -199.167.59.0/24 395853 -199.167.60.0/24 62 -199.167.61.0/24 395273 -199.167.62.0/23 62 -199.167.64.0/22 23393 -199.167.68.0/24 62917 -199.167.69.0/24 62504 -199.167.71.0/24 62917 -199.167.72.0/21 36473 -199.167.80.0/22 36327 -199.167.84.0/23 36327 -199.167.86.0/24 36327 -199.167.87.0/24 395925 -199.167.88.0/22 26253 -199.167.92.0/23 54413 -199.167.95.0/24 54413 -199.167.96.0/22 46353 -199.167.100.0/24 33132 -199.167.101.0/24 18440 -199.167.102.0/23 33132 -199.167.104.0/21 22652 -199.167.112.0/22 22101 -199.167.116.0/22 13319 -199.167.120.0/22 46887 -199.167.124.0/24 46887 -199.167.125.0/24 26150 -199.167.126.0/23 46887 -199.167.128.0/23 14442 -199.167.130.0/24 14442 -199.167.131.0/24 23498 -199.167.132.0/22 53755 -199.167.136.0/23 22923 -199.167.138.0/24 7040 -199.167.140.0/22 19271 -199.167.144.0/21 29802 -199.167.152.0/21 21949 -199.167.160.0/21 16605 -199.167.168.0/22 32597 -199.167.172.0/23 7160 -199.167.175.0/24 7160 -199.167.176.0/22 29748 -199.167.184.0/22 395826 -199.167.188.0/22 394729 -199.167.192.0/21 395685 -199.167.200.0/22 63410 -199.167.204.0/22 46131 -199.167.208.0/22 40943 -199.167.212.0/22 36001 -199.167.216.0/21 26646 -199.167.224.0/24 33597 -199.167.225.0/24 174 -199.167.226.0/24 36351 -199.167.227.0/24 174 -199.167.229.0/24 13576 -199.167.232.0/22 14632 -199.167.236.0/22 16841 -199.167.240.0/24 32278 -199.167.241.0/24 19159 -199.167.242.0/24 19159 -199.167.244.0/23 397331 -199.167.246.0/24 32556 -199.167.248.0/23 3549 -199.167.250.0/24 3549 -199.167.251.0/24 395189 -199.167.252.0/22 30242 -199.168.0.0/21 72 -199.168.8.0/23 19516 -199.168.12.0/24 395060 -199.168.14.0/24 14575 -199.168.15.0/24 395060 -199.168.16.0/23 396286 -199.168.18.0/24 5767 -199.168.19.0/24 396286 -199.168.20.0/22 396286 -199.168.24.0/24 396286 -199.168.25.0/24 51830 -199.168.28.0/22 14701 -199.168.32.0/24 7359 -199.168.33.0/24 209 -199.168.41.0/24 17105 -199.168.44.0/22 46852 -199.168.48.0/21 54507 -199.168.59.0/24 54593 -199.168.60.0/24 3257 -199.168.61.0/24 394977 -199.168.62.0/24 394977 -199.168.63.0/24 3257 -199.168.64.0/22 1442 -199.168.68.0/22 17306 -199.168.72.0/21 30600 -199.168.80.0/22 46721 -199.168.84.0/22 13555 -199.168.88.0/22 54054 -199.168.92.0/22 53586 -199.168.96.0/22 33387 -199.168.100.0/24 33387 -199.168.101.0/24 12186 -199.168.102.0/23 33387 -199.168.104.0/22 13855 -199.168.108.0/22 33339 -199.168.112.0/21 32181 -199.168.120.0/22 21769 -199.168.128.0/22 14333 -199.168.132.0/23 14745 -199.168.134.0/23 14742 -199.168.136.0/21 25820 -199.168.145.0/24 54086 -199.168.146.0/24 54086 -199.168.148.0/24 53444 -199.168.149.0/24 62907 -199.168.150.0/24 62907 -199.168.151.0/24 32921 -199.168.159.0/24 27002 -199.168.160.0/22 46562 -199.168.164.0/23 46562 -199.168.168.0/22 36529 -199.168.172.0/22 35914 -199.168.176.0/21 26001 -199.168.184.0/21 33182 -199.168.200.0/23 53274 -199.168.202.0/24 53274 -199.168.207.0/24 53274 -199.168.208.0/21 15265 -199.168.216.0/21 26413 -199.168.224.0/22 17056 -199.168.228.0/22 13746 -199.168.232.0/21 27595 -199.168.240.0/21 18708 -199.168.248.0/22 11239 -199.168.252.0/22 20021 -199.169.140.0/22 40410 -199.169.144.0/23 40410 -199.169.146.0/24 40410 -199.169.192.0/21 22906 -199.169.200.0/22 40410 -199.169.204.0/23 40410 -199.169.208.0/20 40410 -199.169.226.0/24 40410 -199.169.232.0/21 40410 -199.169.240.0/20 40410 -199.170.0.0/20 701 -199.170.16.0/21 701 -199.170.24.0/24 701 -199.170.25.0/24 20447 -199.170.26.0/23 701 -199.170.28.0/23 20447 -199.170.30.0/23 701 -199.170.32.0/19 701 -199.170.64.0/19 701 -199.170.96.0/20 701 -199.170.112.0/24 3371 -199.170.113.0/24 701 -199.170.114.0/23 701 -199.170.116.0/23 4208 -199.170.118.0/23 701 -199.170.120.0/21 701 -199.170.128.0/22 701 -199.170.132.0/24 395853 -199.170.133.0/24 701 -199.170.134.0/23 701 -199.170.136.0/21 701 -199.170.144.0/20 701 -199.170.160.0/19 701 -199.170.192.0/18 701 -199.171.0.0/21 701 -199.171.8.0/24 27600 -199.171.9.0/24 701 -199.171.10.0/23 701 -199.171.12.0/23 701 -199.171.14.0/24 27600 -199.171.15.0/24 701 -199.171.16.0/20 701 -199.171.32.0/24 11486 -199.171.33.0/24 701 -199.171.34.0/23 701 -199.171.36.0/22 701 -199.171.40.0/21 701 -199.171.48.0/20 701 -199.171.64.0/19 701 -199.171.96.0/24 12097 -199.171.97.0/24 701 -199.171.98.0/23 701 -199.171.100.0/22 701 -199.171.104.0/21 701 -199.171.112.0/20 701 -199.171.128.0/22 701 -199.171.132.0/23 701 -199.171.134.0/24 10453 -199.171.135.0/24 701 -199.171.136.0/21 701 -199.171.144.0/20 701 -199.171.160.0/19 701 -199.171.192.0/20 701 -199.171.208.0/24 10690 -199.171.209.0/24 701 -199.171.210.0/23 10690 -199.171.212.0/23 10690 -199.171.214.0/23 701 -199.171.216.0/21 701 -199.171.224.0/19 701 -199.172.0.0/21 701 -199.172.8.0/23 6220 -199.172.10.0/23 701 -199.172.12.0/22 701 -199.172.16.0/20 701 -199.172.32.0/19 701 -199.172.64.0/18 701 -199.172.128.0/21 701 -199.172.136.0/24 13462 -199.172.137.0/24 701 -199.172.138.0/23 701 -199.172.140.0/22 701 -199.172.144.0/20 701 -199.172.160.0/21 701 -199.172.168.0/24 701 -199.172.169.0/24 10361 -199.172.170.0/23 701 -199.172.172.0/22 701 -199.172.176.0/20 701 -199.172.192.0/18 3855 -199.173.0.0/17 701 -199.173.128.0/20 701 -199.173.144.0/22 701 -199.173.148.0/24 701 -199.173.149.0/24 393570 -199.173.150.0/23 701 -199.173.152.0/21 701 -199.173.160.0/19 701 -199.173.192.0/19 701 -199.173.224.0/21 11985 -199.173.232.0/22 4459 -199.173.236.0/22 701 -199.173.240.0/20 701 -199.174.0.0/16 7029 -199.175.0.0/24 6562 -199.175.7.0/24 396990 -199.175.16.0/21 852 -199.175.26.0/23 852 -199.175.28.0/22 852 -199.175.33.0/24 30715 -199.175.36.0/24 3633 -199.175.43.0/24 30414 -199.175.44.0/22 11767 -199.175.48.0/21 36454 -199.175.56.0/22 53281 -199.175.60.0/22 53494 -199.175.96.0/23 3633 -199.175.101.0/24 54851 -199.175.106.0/23 53943 -199.175.111.0/24 36031 -199.175.112.0/24 23005 -199.175.124.0/22 852 -199.175.128.0/21 852 -199.175.137.0/24 62947 -199.175.138.0/23 852 -199.175.157.0/24 25668 -199.175.162.0/24 40028 -199.175.163.0/24 271 -199.175.169.0/24 852 -199.175.184.0/23 17259 -199.175.187.0/24 17259 -199.175.188.0/24 27277 -199.175.200.0/21 852 -199.175.216.0/24 5110 -199.175.218.0/23 5110 -199.175.225.0/24 6539 -199.175.241.0/24 6327 -199.175.242.0/23 6327 -199.175.244.0/24 6327 -199.175.255.0/24 55248 -199.176.108.0/22 7132 -199.176.124.0/23 394446 -199.176.126.0/24 394446 -199.176.177.0/24 7018 -199.176.178.0/23 7018 -199.176.181.0/24 7018 -199.176.182.0/23 7018 -199.176.195.0/24 7018 -199.176.224.0/21 394446 -199.176.232.0/22 394446 -199.176.240.0/24 7018 -199.177.0.0/19 7132 -199.177.32.0/22 7132 -199.177.36.0/23 7132 -199.177.38.0/24 13337 -199.177.39.0/24 7132 -199.177.40.0/22 7132 -199.177.44.0/24 7132 -199.177.45.0/24 7018 -199.177.46.0/23 7132 -199.177.48.0/20 7132 -199.178.32.0/20 7132 -199.178.48.0/24 7132 -199.178.49.0/24 7018 -199.178.50.0/23 7132 -199.178.52.0/22 7132 -199.178.56.0/22 7132 -199.178.60.0/23 7132 -199.178.62.0/24 7018 -199.178.63.0/24 7132 -199.178.144.0/20 7132 -199.178.180.0/24 7132 -199.178.192.0/22 7132 -199.178.196.0/23 7132 -199.178.198.0/24 7018 -199.178.199.0/24 7132 -199.178.200.0/24 7132 -199.178.201.0/24 393673 -199.178.202.0/23 7132 -199.178.204.0/22 7132 -199.178.208.0/21 7132 -199.178.216.0/24 7018 -199.178.217.0/24 7132 -199.178.218.0/23 7132 -199.178.220.0/23 7132 -199.178.222.0/24 7018 -199.178.223.0/24 7132 -199.178.224.0/19 7132 -199.179.128.0/19 7132 -199.179.160.0/20 7132 -199.179.176.0/23 7132 -199.179.178.0/24 7132 -199.179.179.0/24 7018 -199.179.180.0/22 7132 -199.179.184.0/21 7132 -199.179.228.0/24 7018 -199.179.240.0/24 7018 -199.180.0.0/21 6976 -199.180.15.0/24 54778 -199.180.16.0/24 31801 -199.180.18.0/23 31801 -199.180.20.0/24 31801 -199.180.24.0/24 31801 -199.180.28.0/22 32536 -199.180.52.0/22 5769 -199.180.56.0/21 19368 -199.180.64.0/21 26914 -199.180.72.0/21 53767 -199.180.80.0/22 33260 -199.180.84.0/24 13329 -199.180.86.0/23 13329 -199.180.88.0/24 53983 -199.180.89.0/24 10835 -199.180.90.0/23 10835 -199.180.92.0/22 10835 -199.180.96.0/22 7403 -199.180.100.0/22 54600 -199.180.104.0/21 54142 -199.180.112.0/21 25820 -199.180.120.0/21 54938 -199.180.128.0/24 32875 -199.180.130.0/24 32875 -199.180.133.0/24 32875 -199.180.134.0/24 32875 -199.180.136.0/23 2386 -199.180.138.0/23 54934 -199.180.140.0/22 23094 -199.180.144.0/22 46887 -199.180.148.0/22 22324 -199.180.152.0/21 19257 -199.180.160.0/23 13480 -199.180.163.0/24 13480 -199.180.164.0/22 32508 -199.180.168.0/21 22457 -199.180.176.0/22 11240 -199.180.180.0/23 53535 -199.180.182.0/24 53535 -199.180.184.0/22 35914 -199.180.188.0/23 32529 -199.180.194.0/23 35906 -199.180.196.0/23 23005 -199.180.198.0/24 22911 -199.180.199.0/24 23005 -199.180.200.0/21 14193 -199.180.208.0/22 53429 -199.180.212.0/23 26292 -199.180.214.0/24 26292 -199.180.215.0/24 19034 -199.180.216.0/22 36466 -199.180.220.0/22 53872 -199.180.232.0/24 13329 -199.180.233.0/24 54057 -199.180.234.0/24 395281 -199.180.237.0/24 395165 -199.180.238.0/23 395165 -199.180.240.0/21 30359 -199.180.248.0/22 3800 -199.180.252.0/23 3800 -199.180.254.0/23 8100 -199.181.16.0/20 26633 -199.181.32.0/23 22770 -199.181.34.0/24 22770 -199.181.67.0/24 19634 -199.181.77.0/24 14839 -199.181.80.0/24 16668 -199.181.81.0/24 54764 -199.181.88.0/22 5078 -199.181.92.0/22 11563 -199.181.96.0/24 13913 -199.181.107.0/24 40475 -199.181.110.0/24 394059 -199.181.122.0/23 19355 -199.181.130.0/24 40051 -199.181.136.0/23 22043 -199.181.138.0/24 22043 -199.181.140.0/24 47032 -199.181.141.0/24 21627 -199.181.148.0/24 22609 -199.181.149.0/24 1747 -199.181.152.0/24 53571 -199.181.163.0/24 6062 -199.181.164.0/22 18530 -199.181.168.0/24 18530 -199.181.175.0/24 4543 -199.181.176.0/24 7018 -199.181.178.0/24 20115 -199.181.179.0/24 3549 -199.181.183.0/24 33374 -199.181.192.0/23 63026 -199.181.196.0/24 396072 -199.181.201.0/24 33593 -199.181.202.0/24 33593 -199.181.205.0/24 3549 -199.181.220.0/24 27632 -199.181.231.0/24 7029 -199.181.238.0/23 54540 -199.181.243.0/24 11042 -199.181.246.0/24 10286 -199.181.247.0/24 27577 -199.182.0.0/23 12041 -199.182.16.0/23 12041 -199.182.32.0/24 42 -199.182.40.0/24 42 -199.182.48.0/24 54618 -199.182.50.0/23 54618 -199.182.52.0/22 26531 -199.182.56.0/22 31877 -199.182.60.0/23 54636 -199.182.64.0/21 54539 -199.182.72.0/22 54635 -199.182.76.0/24 396980 -199.182.77.0/24 22768 -199.182.78.0/23 22768 -199.182.80.0/20 7029 -199.182.104.0/21 27589 -199.182.112.0/24 25907 -199.182.114.0/24 397526 -199.182.115.0/24 64267 -199.182.116.0/22 14500 -199.182.124.0/22 3549 -199.182.128.0/23 14442 -199.182.131.0/24 397626 -199.182.132.0/22 54110 -199.182.136.0/21 8008 -199.182.144.0/20 7029 -199.182.160.0/23 15317 -199.182.162.0/24 50245 -199.182.163.0/24 15317 -199.182.164.0/22 15317 -199.182.168.0/21 395111 -199.182.176.0/23 32263 -199.182.184.0/22 27223 -199.182.188.0/22 40460 -199.182.192.0/22 23520 -199.182.196.0/24 22911 -199.182.197.0/24 12225 -199.182.200.0/24 25899 -199.182.201.0/24 55246 -199.182.202.0/23 55246 -199.182.204.0/24 54133 -199.182.208.0/21 16816 -199.182.216.0/22 54652 -199.182.220.0/22 19171 -199.182.224.0/21 54634 -199.182.232.0/24 27418 -199.182.240.0/20 7029 -199.183.0.0/20 7029 -199.183.144.0/20 7029 -199.184.14.0/23 62809 -199.184.16.0/20 13972 -199.184.35.0/24 51964 -199.184.36.0/24 51964 -199.184.38.0/24 51964 -199.184.64.0/22 23207 -199.184.68.0/24 23207 -199.184.69.0/24 3909 -199.184.71.0/24 3909 -199.184.83.0/24 7018 -199.184.85.0/24 54558 -199.184.88.0/23 22709 -199.184.104.0/24 5078 -199.184.105.0/24 30986 -199.184.108.0/24 4549 -199.184.112.0/22 209 -199.184.116.0/23 209 -199.184.119.0/24 11610 -199.184.120.0/22 11126 -199.184.125.0/24 13801 -199.184.126.0/23 394136 -199.184.142.0/24 1246 -199.184.144.0/21 19324 -199.184.152.0/21 17216 -199.184.160.0/23 395169 -199.184.163.0/24 7046 -199.184.165.0/24 6079 -199.184.169.0/24 263713 -199.184.171.0/24 53292 -199.184.172.0/24 53292 -199.184.176.0/24 6482 -199.184.177.0/24 701 -199.184.178.0/24 701 -199.184.181.0/24 715 -199.184.182.0/23 42 -199.184.184.0/24 715 -199.184.189.0/24 7872 -199.184.194.0/24 19203 -199.184.195.0/24 40610 -199.184.196.0/24 40610 -199.184.200.0/23 22773 -199.184.202.0/24 22773 -199.184.203.0/24 40628 -199.184.205.0/24 5090 -199.184.207.0/24 15305 -199.184.208.0/23 23207 -199.184.211.0/24 19793 -199.184.215.0/24 13703 -199.184.222.0/24 174 -199.184.227.0/24 25711 -199.184.228.0/24 25711 -199.184.232.0/22 13691 -199.184.236.0/23 36101 -199.184.238.0/24 36101 -199.184.241.0/24 53529 -199.184.245.0/24 20473 -199.184.246.0/24 12161 -199.184.247.0/24 14464 -199.184.252.0/24 15290 -199.184.253.0/24 46186 -199.184.255.0/24 14584 -199.185.0.0/24 21592 -199.185.1.0/24 19662 -199.185.2.0/23 3359 -199.185.5.0/24 6327 -199.185.6.0/24 577 -199.185.7.0/24 27272 -199.185.10.0/23 852 -199.185.14.0/23 63236 -199.185.26.0/24 19152 -199.185.30.0/23 577 -199.185.32.0/19 40119 -199.185.64.0/19 26871 -199.185.97.0/24 54662 -199.185.98.0/24 6539 -199.185.100.0/23 23157 -199.185.102.0/23 32792 -199.185.104.0/24 394650 -199.185.105.0/24 396951 -199.185.106.0/24 396960 -199.185.108.0/23 23229 -199.185.111.0/24 395156 -199.185.112.0/23 395156 -199.185.120.0/23 393468 -199.185.122.0/24 393468 -199.185.123.0/24 19423 -199.185.124.0/23 19423 -199.185.126.0/24 852 -199.185.130.0/23 10242 -199.185.132.0/23 33096 -199.185.136.0/23 22512 -199.185.138.0/24 40473 -199.185.139.0/24 25999 -199.185.174.0/23 2728 -199.185.176.0/23 852 -199.185.178.0/24 22512 -199.185.182.0/24 26076 -199.185.188.0/24 14453 -199.185.191.0/24 852 -199.185.208.0/24 13699 -199.185.209.0/24 6171 -199.185.210.0/23 6171 -199.185.215.0/24 40473 -199.185.220.0/23 852 -199.185.223.0/24 852 -199.185.224.0/23 852 -199.185.226.0/23 6327 -199.185.228.0/23 25983 -199.185.230.0/23 22512 -199.185.233.0/24 852 -199.185.234.0/23 25983 -199.185.236.0/24 25983 -199.185.238.0/24 6539 -199.185.240.0/22 6327 -199.185.244.0/24 852 -199.185.248.0/24 852 -199.185.249.0/24 36181 -199.185.250.0/24 54363 -199.186.0.0/20 7018 -199.186.16.0/21 7018 -199.186.24.0/22 7018 -199.186.28.0/24 14795 -199.186.29.0/24 7018 -199.186.30.0/24 6429 -199.186.31.0/24 7018 -199.186.32.0/24 6429 -199.186.33.0/24 7018 -199.186.34.0/23 7018 -199.186.36.0/22 7018 -199.186.40.0/21 7018 -199.186.48.0/21 7018 -199.186.56.0/23 7018 -199.186.58.0/24 7018 -199.186.59.0/24 36297 -199.186.60.0/22 7018 -199.186.64.0/18 7018 -199.186.128.0/17 7018 -199.187.8.0/22 32667 -199.187.12.0/23 32667 -199.187.14.0/24 32667 -199.187.15.0/24 54666 -199.187.28.0/22 22485 -199.187.64.0/21 395778 -199.187.114.0/23 15108 -199.187.116.0/22 11054 -199.187.120.0/21 17090 -199.187.128.0/22 53834 -199.187.132.0/22 27429 -199.187.136.0/23 32592 -199.187.138.0/24 398126 -199.187.139.0/24 32592 -199.187.140.0/24 32592 -199.187.141.0/24 397103 -199.187.142.0/23 397103 -199.187.144.0/22 53897 -199.187.148.0/22 21817 -199.187.152.0/23 14436 -199.187.154.0/23 11641 -199.187.156.0/24 14436 -199.187.157.0/24 11641 -199.187.158.0/24 14436 -199.187.160.0/22 4581 -199.187.164.0/22 53780 -199.187.168.0/22 53844 -199.187.172.0/22 36351 -199.187.176.0/21 13377 -199.187.184.0/22 33260 -199.187.192.0/22 47043 -199.187.196.0/22 394708 -199.187.200.0/21 19331 -199.187.208.0/22 46562 -199.187.212.0/22 11492 -199.187.216.0/21 19230 -199.187.228.0/22 35911 -199.187.232.0/22 25649 -199.187.236.0/23 53838 -199.187.239.0/24 53838 -199.187.240.0/21 33695 -199.187.248.0/21 19201 -199.188.0.0/22 2048 -199.188.5.0/24 18890 -199.188.14.0/23 30513 -199.188.28.0/22 46802 -199.188.32.0/24 10264 -199.188.42.0/24 10264 -199.188.44.0/22 33116 -199.188.48.0/21 13578 -199.188.56.0/22 29804 -199.188.60.0/22 40424 -199.188.64.0/22 393238 -199.188.68.0/22 20161 -199.188.72.0/22 18978 -199.188.76.0/22 11597 -199.188.80.0/21 22646 -199.188.88.0/22 64200 -199.188.92.0/23 64200 -199.188.94.0/23 21623 -199.188.96.0/22 54380 -199.188.100.0/22 36352 -199.188.104.0/21 54600 -199.188.112.0/22 22457 -199.188.116.0/24 8038 -199.188.117.0/24 46261 -199.188.118.0/23 46261 -199.188.120.0/22 19556 -199.188.124.0/22 23314 -199.188.128.0/23 32576 -199.188.132.0/22 53871 -199.188.136.0/21 53836 -199.188.144.0/22 1625 -199.188.148.0/23 19969 -199.188.150.0/23 19853 -199.188.152.0/22 53830 -199.188.156.0/24 14618 -199.188.157.0/24 54260 -199.188.158.0/24 40646 -199.188.159.0/24 29838 -199.188.160.0/21 7018 -199.188.168.0/22 40715 -199.188.172.0/22 47027 -199.188.176.0/21 11589 -199.188.184.0/22 14940 -199.188.188.0/22 40224 -199.188.192.0/22 32329 -199.188.200.0/21 22612 -199.188.208.0/22 27467 -199.188.212.0/22 16977 -199.188.220.0/22 53589 -199.188.224.0/22 35895 -199.188.228.0/22 29838 -199.188.232.0/24 53880 -199.188.233.0/24 46887 -199.188.234.0/24 46887 -199.188.235.0/24 54077 -199.188.240.0/22 46719 -199.188.244.0/22 46785 -199.188.248.0/21 17306 -199.189.0.0/23 26574 -199.189.6.0/23 20115 -199.189.18.0/23 36431 -199.189.20.0/23 36431 -199.189.26.0/23 32489 -199.189.28.0/22 21777 -199.189.32.0/21 396206 -199.189.40.0/22 5650 -199.189.44.0/22 396206 -199.189.48.0/21 396206 -199.189.56.0/22 396206 -199.189.60.0/23 396206 -199.189.62.0/23 394102 -199.189.64.0/22 11734 -199.189.68.0/22 53347 -199.189.72.0/22 40749 -199.189.76.0/22 22423 -199.189.80.0/22 19470 -199.189.84.0/22 30083 -199.189.88.0/21 803 -199.189.96.0/21 11404 -199.189.104.0/21 29854 -199.189.112.0/24 11139 -199.189.113.0/24 15344 -199.189.114.0/24 15344 -199.189.115.0/24 11139 -199.189.116.0/22 22911 -199.189.120.0/22 46635 -199.189.124.0/23 54661 -199.189.126.0/24 64255 -199.189.127.0/24 54661 -199.189.128.0/22 53942 -199.189.133.0/24 11115 -199.189.134.0/24 26856 -199.189.136.0/23 53909 -199.189.140.0/23 53909 -199.189.144.0/22 3900 -199.189.148.0/22 46937 -199.189.160.0/22 53941 -199.189.168.0/22 53827 -199.189.176.0/24 18540 -199.189.177.0/24 32410 -199.189.178.0/24 32410 -199.189.180.0/22 31832 -199.189.184.0/22 11966 -199.189.188.0/22 14244 -199.189.192.0/23 33132 -199.189.194.0/24 33132 -199.189.195.0/24 13886 -199.189.196.0/22 33132 -199.189.204.0/22 33309 -199.189.208.0/21 20338 -199.189.216.0/22 26428 -199.189.222.0/23 26428 -199.189.224.0/22 32244 -199.189.228.0/22 393238 -199.189.232.0/22 14297 -199.189.240.0/21 21766 -199.189.248.0/21 53889 -199.190.6.0/23 11326 -199.190.8.0/24 11326 -199.190.10.0/23 11326 -199.190.12.0/23 11082 -199.190.14.0/23 397308 -199.190.44.0/22 21859 -199.190.48.0/21 39938 -199.190.56.0/21 33339 -199.190.128.0/23 40628 -199.190.131.0/24 54656 -199.190.134.0/24 20271 -199.190.140.0/24 18760 -199.190.150.0/24 18920 -199.190.151.0/24 3833 -199.190.152.0/23 3833 -199.190.154.0/24 3833 -199.190.155.0/24 395750 -199.190.159.0/24 32117 -199.190.167.0/24 398122 -199.190.170.0/23 11052 -199.190.174.0/24 33636 -199.190.175.0/24 20271 -199.190.181.0/24 4648 -199.190.183.0/24 174 -199.190.194.0/23 12025 -199.190.196.0/23 40545 -199.190.201.0/24 12116 -199.190.209.0/24 394349 -199.190.211.0/24 23398 -199.190.212.0/24 23398 -199.190.222.0/23 32360 -199.190.224.0/23 32360 -199.190.226.0/24 47024 -199.190.228.0/23 46561 -199.190.230.0/24 46561 -199.190.235.0/24 10599 -199.190.236.0/24 10599 -199.190.237.0/24 63414 -199.190.238.0/23 63414 -199.190.240.0/23 63414 -199.190.242.0/24 63414 -199.190.249.0/24 26303 -199.190.250.0/24 2055 -199.190.252.0/24 2055 -199.191.0.0/20 11847 -199.191.38.0/24 1341 -199.191.40.0/21 1341 -199.191.49.0/24 33553 -199.191.50.0/23 40034 -199.191.53.0/24 30150 -199.191.56.0/22 31863 -199.191.61.0/24 54714 -199.191.62.0/24 7752 -199.191.64.0/23 209 -199.191.74.0/24 19023 -199.191.81.0/24 19023 -199.191.82.0/23 19023 -199.191.84.0/24 19023 -199.191.87.0/24 19023 -199.191.88.0/24 19023 -199.191.101.0/24 19023 -199.191.102.0/23 394746 -199.191.104.0/21 26076 -199.191.112.0/21 13490 -199.191.120.0/21 15177 -199.191.128.0/23 7018 -199.192.0.0/21 19713 -199.192.8.0/22 19713 -199.192.12.0/22 53717 -199.192.16.0/20 22612 -199.192.32.0/24 35917 -199.192.40.0/22 35917 -199.192.48.0/23 35917 -199.192.64.0/23 8149 -199.192.67.0/24 8149 -199.192.68.0/23 398230 -199.192.70.0/23 32281 -199.192.72.0/23 25761 -199.192.74.0/24 25761 -199.192.75.0/24 46562 -199.192.76.0/23 25761 -199.192.78.0/23 46562 -199.192.80.0/21 33544 -199.192.88.0/22 46883 -199.192.92.0/22 33055 -199.192.96.0/21 54329 -199.192.104.0/22 16696 -199.192.108.0/22 40405 -199.192.112.0/22 15169 -199.192.116.0/22 27294 -199.192.120.0/22 1640 -199.192.124.0/22 26223 -199.192.128.0/23 53975 -199.192.131.0/24 53975 -199.192.132.0/22 53975 -199.192.136.0/22 14928 -199.192.140.0/22 16700 -199.192.144.0/22 6939 -199.192.148.0/22 27262 -199.192.152.0/21 21737 -199.192.160.0/22 33133 -199.192.164.0/22 30247 -199.192.168.0/21 13730 -199.192.180.0/22 20101 -199.192.184.0/21 15247 -199.192.192.0/22 11090 -199.192.200.0/21 53264 -199.192.208.0/22 11597 -199.192.212.0/22 46525 -199.192.223.0/24 39470 -199.192.224.0/23 46408 -199.192.226.0/23 15344 -199.192.228.0/23 11320 -199.192.232.0/21 14102 -199.192.244.0/22 23486 -199.192.248.0/22 14243 -199.192.255.0/24 23005 -199.193.6.0/23 22612 -199.193.14.0/23 55229 -199.193.31.0/24 17018 -199.193.33.0/24 19216 -199.193.39.0/24 19216 -199.193.48.0/23 53525 -199.193.50.0/24 53525 -199.193.56.0/24 394825 -199.193.57.0/24 394696 -199.193.58.0/24 855 -199.193.59.0/24 396226 -199.193.64.0/23 15011 -199.193.66.0/24 62674 -199.193.67.0/24 15011 -199.193.68.0/22 15011 -199.193.72.0/21 27257 -199.193.80.0/22 33725 -199.193.84.0/22 29979 -199.193.88.0/21 15247 -199.193.96.0/22 209 -199.193.100.0/23 14526 -199.193.102.0/24 14526 -199.193.103.0/24 19271 -199.193.112.0/21 29802 -199.193.120.0/22 23005 -199.193.124.0/22 25820 -199.193.128.0/21 7055 -199.193.136.0/24 54048 -199.193.137.0/24 397701 -199.193.138.0/24 53928 -199.193.140.0/22 17113 -199.193.144.0/23 7795 -199.193.146.0/24 7795 -199.193.147.0/24 396983 -199.193.148.0/22 7795 -199.193.152.0/22 64236 -199.193.156.0/22 53991 -199.193.160.0/22 62913 -199.193.164.0/22 1423 -199.193.168.0/21 30466 -199.193.176.0/22 11274 -199.193.180.0/22 18786 -199.193.184.0/22 32880 -199.193.188.0/22 53911 -199.193.192.0/21 1610 -199.193.200.0/21 16406 -199.193.208.0/22 53948 -199.193.212.0/22 46328 -199.193.216.0/23 16887 -199.193.218.0/23 62516 -199.193.220.0/22 16887 -199.193.224.0/22 40187 -199.193.228.0/22 11269 -199.193.232.0/22 397422 -199.193.236.0/22 25899 -199.193.240.0/22 26027 -199.193.244.0/22 54020 -199.193.248.0/21 18978 -199.194.74.0/24 15290 -199.195.1.0/24 3257 -199.195.6.0/23 393676 -199.195.14.0/23 13760 -199.195.16.0/20 13692 -199.195.46.0/23 3369 -199.195.52.0/22 25830 -199.195.56.0/22 16837 -199.195.60.0/23 16837 -199.195.62.0/23 32757 -199.195.64.0/19 62600 -199.195.96.0/20 22773 -199.195.112.0/23 22773 -199.195.114.0/23 53757 -199.195.116.0/23 55293 -199.195.118.0/24 32244 -199.195.119.0/24 55293 -199.195.120.0/21 21947 -199.195.128.0/22 53340 -199.195.132.0/22 26881 -199.195.136.0/22 33055 -199.195.140.0/23 54046 -199.195.142.0/23 17139 -199.195.144.0/22 21554 -199.195.148.0/22 40029 -199.195.152.0/22 32458 -199.195.156.0/22 32748 -199.195.160.0/21 30028 -199.195.168.0/23 32889 -199.195.170.0/24 32098 -199.195.171.0/24 32889 -199.195.172.0/22 32889 -199.195.176.0/21 26375 -199.195.184.0/22 21779 -199.195.188.0/23 16738 -199.195.192.0/23 36351 -199.195.194.0/23 29854 -199.195.196.0/22 29854 -199.195.200.0/22 40511 -199.195.204.0/22 40727 -199.195.208.0/22 19331 -199.195.212.0/22 33544 -199.195.216.0/22 19747 -199.195.220.0/22 35878 -199.195.224.0/22 12208 -199.195.228.0/22 53363 -199.195.232.0/21 2730 -199.195.240.0/23 7029 -199.195.242.0/24 7029 -199.195.243.0/24 7252 -199.195.244.0/22 7029 -199.195.248.0/21 53667 -199.196.5.0/24 18925 -199.196.6.0/23 63213 -199.196.8.0/21 32667 -199.196.16.0/20 26854 -199.196.56.0/24 21877 -199.196.63.0/24 21877 -199.196.169.0/24 32475 -199.196.189.0/24 54504 -199.196.190.0/24 54504 -199.196.191.0/24 21681 -199.196.224.0/23 25768 -199.197.0.0/22 10753 -199.197.4.0/24 10753 -199.197.5.0/24 132576 -199.197.8.0/23 10753 -199.197.10.0/23 32743 -199.197.12.0/22 27630 -199.197.16.0/20 394841 -199.197.64.0/18 2381 -199.197.144.0/23 20115 -199.197.149.0/24 7018 -199.197.150.0/23 9466 -199.197.156.0/23 16638 -199.197.177.0/24 16638 -199.197.178.0/24 16638 -199.197.194.0/23 16638 -199.197.198.0/24 7046 -199.197.199.0/24 16638 -199.197.200.0/24 9466 -199.197.201.0/24 7046 -199.197.236.0/22 16638 -199.197.240.0/21 7046 -199.198.134.0/23 10808 -199.198.136.0/22 10808 -199.198.210.0/23 394098 -199.198.212.0/24 1634 -199.198.213.0/24 54722 -199.198.216.0/23 7992 -199.198.220.0/24 4199 -199.198.223.0/24 14121 -199.198.225.0/24 4199 -199.198.234.0/24 14121 -199.198.238.0/24 7741 -199.198.239.0/24 2386 -199.198.250.0/24 4205 -199.198.251.0/24 7741 -199.198.254.0/24 4205 -199.198.255.0/24 11458 -199.199.0.0/21 5006 -199.199.8.0/23 5006 -199.199.10.0/23 5715 -199.199.12.0/24 5715 -199.199.13.0/24 5006 -199.199.14.0/23 5006 -199.199.16.0/23 5006 -199.199.18.0/24 5715 -199.199.19.0/24 5006 -199.199.20.0/23 5715 -199.199.22.0/24 5715 -199.199.23.0/24 5006 -199.199.24.0/23 5715 -199.199.26.0/23 5006 -199.199.28.0/22 5006 -199.199.32.0/22 5006 -199.199.36.0/24 7821 -199.199.37.0/24 5006 -199.199.38.0/23 5006 -199.199.40.0/21 7821 -199.199.48.0/21 7821 -199.199.56.0/21 5006 -199.199.64.0/18 5006 -199.199.128.0/20 5006 -199.199.144.0/23 5006 -199.199.146.0/24 5006 -199.199.147.0/24 15011 -199.199.148.0/23 5006 -199.199.150.0/24 5006 -199.199.151.0/24 15011 -199.199.152.0/23 32264 -199.199.154.0/23 5006 -199.199.156.0/22 5006 -199.199.160.0/22 5006 -199.199.164.0/24 7821 -199.199.165.0/24 5006 -199.199.166.0/23 5006 -199.199.168.0/23 5006 -199.199.170.0/24 5006 -199.199.171.0/24 7821 -199.199.172.0/22 5006 -199.199.176.0/20 5006 -199.199.192.0/20 5006 -199.199.208.0/21 25720 -199.199.216.0/21 5006 -199.199.224.0/21 21730 -199.199.232.0/22 5006 -199.199.236.0/23 5006 -199.199.238.0/23 7821 -199.199.240.0/21 15100 -199.199.248.0/21 5006 -199.200.5.0/24 11651 -199.200.6.0/23 395401 -199.200.8.0/23 1399 -199.200.14.0/23 54154 -199.200.20.0/23 30680 -199.200.22.0/24 30680 -199.200.24.0/22 18434 -199.200.28.0/22 23175 -199.200.50.0/23 23286 -199.200.56.0/21 54543 -199.200.96.0/22 17359 -199.200.100.0/22 7819 -199.200.104.0/22 19045 -199.200.108.0/22 26785 -199.200.112.0/22 21817 -199.200.116.0/24 21635 -199.200.120.0/24 55229 -199.200.121.0/24 40198 -199.200.122.0/23 40198 -199.200.124.0/22 40198 -199.200.199.0/24 7046 -199.200.222.0/23 7046 -199.200.224.0/24 7046 -199.200.243.0/24 7046 -199.200.244.0/24 7046 -199.200.253.0/24 7046 -199.200.254.0/24 7046 -199.201.3.0/24 7105 -199.201.6.0/23 14611 -199.201.43.0/24 10794 -199.201.47.0/24 10794 -199.201.56.0/23 10794 -199.201.63.0/24 10794 -199.201.64.0/22 54115 -199.201.68.0/22 17049 -199.201.72.0/22 29934 -199.201.76.0/22 19201 -199.201.80.0/22 27298 -199.201.84.0/22 6639 -199.201.88.0/22 6188 -199.201.92.0/22 36222 -199.201.96.0/21 21637 -199.201.104.0/22 53605 -199.201.108.0/23 53605 -199.201.110.0/24 22612 -199.201.111.0/24 12259 -199.201.112.0/22 35906 -199.201.116.0/24 35906 -199.201.120.0/24 397949 -199.201.122.0/23 397814 -199.201.125.0/24 395213 -199.201.128.0/24 4927 -199.201.131.0/24 26257 -199.201.139.0/24 4201 -199.201.143.0/24 3549 -199.201.145.0/24 10255 -199.201.153.0/24 291 -199.201.154.0/23 291 -199.201.156.0/24 32982 -199.201.157.0/24 291 -199.201.158.0/24 291 -199.201.159.0/24 6433 -199.201.174.0/24 18760 -199.201.181.0/24 16983 -199.201.184.0/24 26751 -199.201.190.0/24 21710 -199.201.191.0/24 21769 -199.201.193.0/24 7834 -199.201.203.0/24 6122 -199.201.205.0/24 3677 -199.201.216.0/24 46153 -199.201.217.0/24 397607 -199.201.218.0/24 397607 -199.201.222.0/24 26323 -199.201.223.0/24 33662 -199.201.242.0/24 13686 -199.201.245.0/24 26094 -199.201.255.0/24 11804 -199.202.0.0/19 14866 -199.202.32.0/19 6453 -199.202.64.0/24 26480 -199.202.72.0/21 376 -199.202.80.0/22 15318 -199.202.84.0/23 15318 -199.202.86.0/23 376 -199.202.88.0/24 376 -199.202.91.0/24 397681 -199.202.95.0/24 11489 -199.202.96.0/24 11489 -199.202.98.0/23 15318 -199.202.100.0/23 22652 -199.202.104.0/21 13552 -199.202.114.0/23 26304 -199.202.116.0/24 3371 -199.202.117.0/24 701 -199.202.118.0/23 701 -199.202.120.0/21 701 -199.202.128.0/21 701 -199.202.137.0/24 3584 -199.202.138.0/23 3584 -199.202.145.0/24 396367 -199.202.147.0/24 22652 -199.202.148.0/24 22652 -199.202.192.0/23 22652 -199.202.200.0/24 54777 -199.202.204.0/24 54777 -199.202.213.0/24 32735 -199.202.216.0/21 20371 -199.202.232.0/23 62809 -199.202.234.0/23 11486 -199.202.236.0/22 701 -199.203.0.0/18 1680 -199.203.64.0/19 1680 -199.203.96.0/21 1680 -199.203.104.0/23 1680 -199.203.106.0/24 56804 -199.203.107.0/24 1680 -199.203.108.0/22 1680 -199.203.112.0/20 1680 -199.203.128.0/17 1680 -199.204.4.0/23 14063 -199.204.6.0/24 14063 -199.204.7.0/24 16491 -199.204.10.0/23 203689 -199.204.12.0/22 48328 -199.204.16.0/21 20454 -199.204.24.0/22 18609 -199.204.28.0/22 14215 -199.204.32.0/21 25905 -199.204.40.0/22 17099 -199.204.44.0/22 33028 -199.204.48.0/21 13625 -199.204.56.0/22 10359 -199.204.60.0/22 7029 -199.204.64.0/21 23523 -199.204.72.0/21 53363 -199.204.80.0/21 30600 -199.204.88.0/23 26994 -199.204.90.0/23 13767 -199.204.92.0/23 20081 -199.204.94.0/24 20081 -199.204.95.0/24 53713 -199.204.96.0/22 32514 -199.204.100.0/22 22768 -199.204.109.0/24 17038 -199.204.110.0/24 17038 -199.204.112.0/21 11189 -199.204.120.0/23 46157 -199.204.124.0/24 19463 -199.204.125.0/24 17306 -199.204.126.0/23 17306 -199.204.128.0/22 32659 -199.204.132.0/24 22150 -199.204.134.0/23 22150 -199.204.136.0/22 35914 -199.204.140.0/22 174 -199.204.152.0/22 10255 -199.204.156.0/23 40107 -199.204.158.0/24 36018 -199.204.159.0/24 20141 -199.204.160.0/22 396864 -199.204.164.0/22 14222 -199.204.168.0/22 19750 -199.204.172.0/22 46990 -199.204.176.0/21 36315 -199.204.188.0/22 40035 -199.204.192.0/21 29994 -199.204.200.0/21 27577 -199.204.208.0/21 36077 -199.204.216.0/21 46160 -199.204.224.0/22 40059 -199.204.228.0/23 22596 -199.204.230.0/24 22596 -199.204.232.0/21 22069 -199.204.240.0/21 63457 -199.204.248.0/21 17054 -199.206.0.0/21 7227 -199.206.8.0/23 7227 -199.206.28.0/24 7227 -199.206.30.0/24 7227 -199.206.128.0/18 7227 -199.206.192.0/22 7227 -199.207.24.0/24 7227 -199.207.28.0/24 7227 -199.207.30.0/24 7227 -199.207.64.0/22 7227 -199.207.131.0/24 7227 -199.207.132.0/22 7227 -199.207.144.0/20 7227 -199.207.160.0/20 7227 -199.207.176.0/21 7227 -199.207.224.0/21 7227 -199.207.237.0/24 7227 -199.207.240.0/24 7227 -199.207.242.0/23 7227 -199.207.244.0/22 7227 -199.207.248.0/22 7227 -199.207.253.0/24 7227 -199.207.254.0/24 7227 -199.208.0.0/24 1778 -199.208.1.0/24 721 -199.208.2.0/23 721 -199.208.4.0/22 721 -199.208.8.0/21 721 -199.208.16.0/20 721 -199.208.32.0/21 668 -199.208.40.0/21 721 -199.208.48.0/20 721 -199.208.64.0/22 5972 -199.208.68.0/24 721 -199.208.69.0/24 5972 -199.208.70.0/23 5972 -199.208.72.0/22 5972 -199.208.76.0/23 5972 -199.208.78.0/24 5972 -199.208.79.0/24 721 -199.208.80.0/20 5972 -199.208.96.0/22 5972 -199.208.100.0/23 721 -199.208.102.0/23 5972 -199.208.104.0/23 5972 -199.208.106.0/24 5972 -199.208.107.0/24 721 -199.208.108.0/23 5972 -199.208.110.0/24 721 -199.208.111.0/24 5972 -199.208.112.0/22 5972 -199.208.116.0/24 5972 -199.208.117.0/24 721 -199.208.118.0/23 5972 -199.208.120.0/23 721 -199.208.122.0/24 721 -199.208.123.0/24 5972 -199.208.124.0/22 5972 -199.208.128.0/20 721 -199.208.144.0/21 721 -199.208.152.0/24 721 -199.208.153.0/24 27066 -199.208.154.0/23 721 -199.208.156.0/24 385 -199.208.157.0/24 190 -199.208.158.0/24 668 -199.208.159.0/24 721 -199.208.160.0/22 721 -199.208.164.0/23 721 -199.208.166.0/24 1959 -199.208.167.0/24 721 -199.208.168.0/22 721 -199.208.172.0/24 27064 -199.208.173.0/24 721 -199.208.174.0/23 721 -199.208.176.0/21 721 -199.208.184.0/23 721 -199.208.186.0/24 2749 -199.208.187.0/24 721 -199.208.188.0/22 721 -199.208.192.0/20 721 -199.208.208.0/22 721 -199.208.212.0/24 721 -199.208.213.0/24 27064 -199.208.214.0/23 721 -199.208.216.0/21 721 -199.208.224.0/23 721 -199.208.226.0/24 5972 -199.208.227.0/24 721 -199.208.228.0/22 721 -199.208.232.0/22 721 -199.208.236.0/23 721 -199.208.238.0/24 721 -199.208.239.0/24 27086 -199.208.240.0/20 721 -199.209.0.0/18 721 -199.209.64.0/22 721 -199.209.68.0/22 1590 -199.209.72.0/21 1590 -199.209.80.0/22 1590 -199.209.84.0/22 1494 -199.209.88.0/22 1494 -199.209.92.0/23 1590 -199.209.94.0/24 1590 -199.209.95.0/24 721 -199.209.96.0/19 721 -199.209.128.0/20 721 -199.209.144.0/21 668 -199.209.152.0/23 721 -199.209.154.0/23 1494 -199.209.156.0/22 1494 -199.209.160.0/19 1494 -199.209.192.0/20 1494 -199.209.208.0/21 721 -199.209.216.0/21 1541 -199.209.224.0/21 1494 -199.209.232.0/21 721 -199.209.240.0/20 668 -199.210.0.0/17 721 -199.210.128.0/19 721 -199.210.160.0/21 721 -199.210.168.0/23 1491 -199.210.170.0/23 721 -199.210.172.0/22 721 -199.210.176.0/20 721 -199.210.192.0/18 721 -199.211.16.0/23 721 -199.211.64.0/24 6527 -199.211.65.0/24 5972 -199.211.66.0/23 721 -199.211.68.0/22 721 -199.211.72.0/22 5972 -199.211.76.0/24 5972 -199.211.77.0/24 721 -199.211.78.0/23 721 -199.211.80.0/23 721 -199.211.82.0/24 5972 -199.211.83.0/24 1778 -199.211.84.0/24 1778 -199.211.85.0/24 721 -199.211.86.0/23 721 -199.211.88.0/21 721 -199.211.96.0/22 721 -199.211.100.0/24 721 -199.211.101.0/24 27064 -199.211.102.0/23 721 -199.211.104.0/22 721 -199.211.108.0/24 721 -199.211.109.0/24 27066 -199.211.110.0/24 27066 -199.211.111.0/24 721 -199.211.112.0/20 721 -199.211.128.0/23 721 -199.211.130.0/24 721 -199.211.131.0/24 27066 -199.211.132.0/24 721 -199.211.133.0/24 27064 -199.211.134.0/24 27066 -199.211.135.0/24 721 -199.211.136.0/21 721 -199.211.144.0/21 721 -199.211.152.0/24 721 -199.211.153.0/24 300 -199.211.154.0/23 721 -199.211.156.0/24 721 -199.211.157.0/24 5978 -199.211.158.0/24 27064 -199.211.159.0/24 721 -199.211.160.0/23 721 -199.211.162.0/24 5978 -199.211.163.0/24 721 -199.211.164.0/23 721 -199.211.166.0/23 664 -199.211.168.0/23 664 -199.211.170.0/23 721 -199.211.172.0/22 721 -199.211.176.0/24 721 -199.211.177.0/24 5972 -199.211.178.0/23 5972 -199.211.180.0/22 721 -199.211.184.0/22 721 -199.211.188.0/22 5972 -199.211.192.0/23 721 -199.211.194.0/23 5972 -199.211.196.0/24 5972 -199.211.197.0/24 721 -199.211.198.0/24 687 -199.211.199.0/24 721 -199.211.200.0/21 721 -199.211.208.0/23 721 -199.211.210.0/24 5939 -199.211.211.0/24 721 -199.211.212.0/23 721 -199.211.214.0/24 721 -199.211.215.0/24 27030 -199.211.216.0/23 27030 -199.211.218.0/24 27030 -199.211.219.0/24 190 -199.211.220.0/22 721 -199.211.224.0/20 721 -199.211.240.0/22 721 -199.211.244.0/24 721 -199.211.245.0/24 5972 -199.211.246.0/23 5972 -199.211.248.0/23 5972 -199.211.250.0/24 721 -199.211.251.0/24 5972 -199.211.252.0/22 721 -199.212.0.0/24 393225 -199.212.1.0/24 54397 -199.212.2.0/23 19764 -199.212.4.0/22 30045 -199.212.8.0/22 32157 -199.212.12.0/23 852 -199.212.15.0/24 26677 -199.212.16.0/22 806 -199.212.20.0/23 806 -199.212.24.0/24 6509 -199.212.26.0/23 19350 -199.212.30.0/24 19350 -199.212.32.0/22 32157 -199.212.36.0/24 13895 -199.212.37.0/24 19350 -199.212.38.0/23 19350 -199.212.41.0/24 17181 -199.212.44.0/24 35911 -199.212.45.0/24 33389 -199.212.46.0/24 25636 -199.212.48.0/24 812 -199.212.51.0/24 812 -199.212.53.0/24 15158 -199.212.54.0/23 15158 -199.212.57.0/24 133115 -199.212.58.0/23 852 -199.212.60.0/23 19350 -199.212.63.0/24 395593 -199.212.64.0/20 802 -199.212.80.0/23 812 -199.212.84.0/23 26677 -199.212.86.0/24 27630 -199.212.87.0/24 40676 -199.212.88.0/23 395704 -199.212.93.0/24 9327 -199.212.95.0/24 13374 -199.212.114.0/23 577 -199.212.116.0/24 577 -199.212.117.0/24 549 -199.212.118.0/24 21992 -199.212.120.0/22 3848 -199.212.124.0/24 16881 -199.212.132.0/24 852 -199.212.134.0/23 11647 -199.212.138.0/24 812 -199.212.140.0/23 23498 -199.212.142.0/24 23498 -199.212.143.0/24 55053 -199.212.145.0/24 395741 -199.212.146.0/24 395741 -199.212.150.0/24 837 -199.212.152.0/21 852 -199.212.200.0/24 2665 -199.212.212.0/24 2665 -199.212.215.0/24 2665 -199.212.216.0/24 2665 -199.212.218.0/24 25923 -199.212.219.0/24 7018 -199.212.224.0/21 31765 -199.212.232.0/24 25946 -199.212.238.0/23 26198 -199.212.244.0/24 32789 -199.212.246.0/23 32789 -199.212.250.0/23 26677 -199.212.252.0/23 26677 -199.212.254.0/24 26677 -199.212.255.0/24 25948 -199.213.0.0/16 393952 -199.214.0.0/16 393952 -199.215.12.0/24 393952 -199.216.34.0/23 15296 -199.216.36.0/23 15296 -199.216.38.0/24 15296 -199.216.40.0/24 852 -199.216.41.0/24 15296 -199.216.42.0/24 852 -199.216.43.0/24 6327 -199.216.44.0/24 852 -199.216.45.0/24 15296 -199.216.46.0/24 54520 -199.216.47.0/24 852 -199.216.48.0/21 852 -199.216.56.0/22 852 -199.216.60.0/24 15296 -199.216.61.0/24 852 -199.216.62.0/24 15296 -199.216.63.0/24 852 -199.216.64.0/22 852 -199.216.68.0/24 6327 -199.216.69.0/24 852 -199.216.70.0/24 852 -199.216.71.0/24 15296 -199.216.72.0/21 852 -199.216.80.0/23 15296 -199.216.82.0/24 15296 -199.216.83.0/24 852 -199.216.84.0/22 852 -199.216.88.0/22 852 -199.216.92.0/24 852 -199.216.93.0/24 6327 -199.216.94.0/23 852 -199.216.96.0/24 15296 -199.216.97.0/24 852 -199.216.98.0/23 15296 -199.216.100.0/24 15296 -199.216.101.0/24 852 -199.216.102.0/24 852 -199.216.103.0/24 15296 -199.216.104.0/22 25872 -199.216.108.0/23 852 -199.216.110.0/24 15296 -199.216.111.0/24 852 -199.216.112.0/24 15296 -199.216.113.0/24 852 -199.216.114.0/23 852 -199.216.116.0/24 54477 -199.216.117.0/24 852 -199.216.118.0/23 852 -199.216.120.0/24 852 -199.216.121.0/24 394831 -199.216.122.0/23 852 -199.216.124.0/23 852 -199.216.126.0/24 15296 -199.216.127.0/24 852 -199.216.128.0/24 852 -199.216.129.0/24 15296 -199.216.130.0/23 852 -199.216.132.0/22 852 -199.216.136.0/21 393952 -199.216.144.0/21 852 -199.216.152.0/22 852 -199.216.156.0/23 852 -199.216.158.0/24 15296 -199.216.159.0/24 852 -199.216.160.0/23 852 -199.216.162.0/24 852 -199.216.163.0/24 15296 -199.216.164.0/24 54182 -199.216.165.0/24 15296 -199.216.166.0/24 852 -199.216.167.0/24 15296 -199.216.168.0/21 852 -199.216.176.0/24 6327 -199.216.177.0/24 852 -199.216.178.0/24 852 -199.216.179.0/24 6327 -199.216.180.0/22 852 -199.216.184.0/23 852 -199.216.186.0/24 852 -199.216.187.0/24 29747 -199.216.188.0/24 15296 -199.216.189.0/24 852 -199.216.190.0/23 852 -199.216.192.0/23 15296 -199.216.194.0/24 15296 -199.216.195.0/24 852 -199.216.196.0/23 15296 -199.216.198.0/23 852 -199.216.200.0/22 15296 -199.216.204.0/24 19166 -199.216.205.0/24 852 -199.216.206.0/23 852 -199.216.208.0/24 852 -199.216.209.0/24 15296 -199.216.210.0/24 852 -199.216.211.0/24 15296 -199.216.212.0/23 54453 -199.216.214.0/24 15296 -199.216.215.0/24 54453 -199.216.216.0/24 15296 -199.216.217.0/24 852 -199.216.218.0/24 54182 -199.216.219.0/24 852 -199.216.220.0/22 15296 -199.216.224.0/24 6327 -199.216.225.0/24 852 -199.216.226.0/23 852 -199.216.228.0/24 15296 -199.216.229.0/24 54182 -199.216.230.0/23 852 -199.216.232.0/21 15296 -199.216.240.0/24 55206 -199.216.241.0/24 27272 -199.216.242.0/23 55206 -199.216.244.0/24 15296 -199.216.245.0/24 852 -199.216.246.0/24 54182 -199.216.247.0/24 852 -199.216.248.0/23 852 -199.216.250.0/24 54884 -199.216.251.0/24 852 -199.216.252.0/24 15296 -199.216.253.0/24 852 -199.216.254.0/24 6327 -199.216.255.0/24 852 -199.217.0.0/21 14200 -199.217.15.0/24 10625 -199.217.32.0/19 32142 -199.217.64.0/19 3561 -199.217.96.0/21 54455 -199.217.104.0/22 33083 -199.217.112.0/21 30083 -199.217.120.0/22 26300 -199.217.124.0/22 21766 -199.217.128.0/21 2914 -199.217.136.0/23 2914 -199.217.138.0/24 2914 -199.217.139.0/24 174 -199.217.140.0/24 174 -199.217.141.0/24 2914 -199.217.142.0/23 2914 -199.217.144.0/21 2914 -199.217.152.0/24 2914 -199.217.153.0/24 174 -199.217.154.0/23 2914 -199.217.156.0/22 2914 -199.217.160.0/19 2914 -199.217.192.0/18 2914 -199.218.0.0/16 600 -199.219.3.0/24 15572 -199.219.12.0/24 7046 -199.219.28.0/24 1339 -199.219.128.0/23 701 -199.219.130.0/24 701 -199.219.161.0/24 3369 -199.219.192.0/24 701 -199.221.0.0/17 701 -199.221.128.0/21 3364 -199.221.136.0/21 701 -199.221.144.0/20 701 -199.221.160.0/19 701 -199.221.192.0/18 701 -199.222.0.0/21 701 -199.222.8.0/22 701 -199.222.12.0/23 701 -199.222.14.0/24 3729 -199.222.15.0/24 701 -199.222.16.0/20 701 -199.222.32.0/19 701 -199.222.64.0/19 701 -199.222.96.0/20 701 -199.222.112.0/21 701 -199.222.120.0/23 701 -199.222.122.0/24 701 -199.222.123.0/24 21973 -199.222.124.0/22 701 -199.222.128.0/20 2711 -199.222.144.0/20 701 -199.222.160.0/20 2711 -199.222.176.0/20 701 -199.222.192.0/18 701 -199.223.16.0/20 3713 -199.223.36.0/24 22537 -199.223.38.0/23 4725 -199.223.40.0/24 22537 -199.223.43.0/24 22537 -199.223.47.0/24 5488 -199.223.60.0/24 5488 -199.223.62.0/24 5488 -199.223.63.0/24 50857 -199.223.64.0/19 6167 -199.223.112.0/23 6167 -199.223.114.0/23 54641 -199.223.116.0/22 53889 -199.223.120.0/21 36687 -199.223.128.0/23 26043 -199.223.130.0/24 26043 -199.223.131.0/24 209 -199.223.134.0/24 209 -199.223.139.0/24 26043 -199.223.140.0/24 209 -199.223.143.0/24 7018 -199.223.147.0/24 209 -199.223.157.0/24 209 -199.223.161.0/24 209 -199.223.165.0/24 209 -199.223.172.0/24 209 -199.223.175.0/24 209 -199.223.208.0/22 7203 -199.223.212.0/24 60781 -199.223.214.0/23 60781 -199.223.216.0/23 46887 -199.223.218.0/23 395402 -199.223.220.0/22 36724 -199.223.224.0/21 53513 -199.223.232.0/22 15169 -199.223.236.0/23 15169 -199.223.238.0/24 19527 -199.223.239.0/24 15169 -199.223.240.0/21 46379 -199.223.248.0/22 26886 -199.223.252.0/22 40244 -199.224.0.0/23 22691 -199.224.2.0/23 2914 -199.224.4.0/23 2914 -199.224.6.0/24 22691 -199.224.7.0/24 2914 -199.224.8.0/24 2914 -199.224.9.0/24 22691 -199.224.10.0/24 14672 -199.224.11.0/24 2914 -199.224.12.0/22 22691 -199.224.16.0/23 54559 -199.224.21.0/24 17172 -199.224.22.0/23 54559 -199.224.24.0/24 54559 -199.224.32.0/19 6167 -199.224.64.0/19 3593 -199.224.96.0/21 3593 -199.224.104.0/24 22580 -199.224.105.0/24 3593 -199.224.106.0/23 3593 -199.224.108.0/22 3593 -199.224.112.0/20 3593 -199.224.136.0/22 4583 -199.224.156.0/24 26542 -199.224.157.0/24 3145 -199.224.161.0/24 26542 -199.224.162.0/24 26542 -199.224.164.0/24 26542 -199.224.166.0/24 26542 -199.225.0.0/22 721 -199.225.4.0/24 721 -199.225.5.0/24 452 -199.225.6.0/23 5972 -199.225.8.0/23 721 -199.225.10.0/23 5972 -199.225.12.0/23 721 -199.225.14.0/24 5972 -199.225.15.0/24 721 -199.226.4.0/22 5972 -199.226.8.0/24 721 -199.226.9.0/24 5972 -199.226.10.0/23 5972 -199.226.12.0/22 5972 -199.226.64.0/19 5972 -199.226.96.0/20 5972 -199.226.112.0/24 5972 -199.226.113.0/24 721 -199.226.114.0/23 5972 -199.226.116.0/24 5972 -199.226.117.0/24 721 -199.226.118.0/23 721 -199.226.120.0/23 721 -199.226.122.0/23 5972 -199.226.124.0/22 5972 -199.226.128.0/18 1489 -199.227.0.0/23 3549 -199.227.2.0/24 26646 -199.227.3.0/24 3549 -199.227.4.0/22 3549 -199.227.8.0/21 3549 -199.227.16.0/20 3549 -199.227.32.0/24 19855 -199.227.33.0/24 26831 -199.227.34.0/23 3549 -199.227.36.0/23 3549 -199.227.38.0/24 3549 -199.227.39.0/24 26831 -199.227.40.0/24 55287 -199.227.41.0/24 3549 -199.227.42.0/23 3549 -199.227.44.0/22 3549 -199.227.48.0/23 3549 -199.227.50.0/24 3549 -199.227.51.0/24 11278 -199.227.52.0/22 3549 -199.227.56.0/21 3549 -199.227.64.0/20 3549 -199.227.80.0/22 3549 -199.227.84.0/23 3549 -199.227.86.0/24 397855 -199.227.87.0/24 3549 -199.227.88.0/23 3549 -199.227.90.0/24 3549 -199.227.91.0/24 13887 -199.227.92.0/23 3549 -199.227.94.0/24 3549 -199.227.95.0/24 62632 -199.227.96.0/20 3549 -199.227.112.0/24 63066 -199.227.113.0/24 30509 -199.227.114.0/23 3549 -199.227.116.0/22 3549 -199.227.120.0/21 3549 -199.227.128.0/23 3549 -199.227.130.0/24 33623 -199.227.131.0/24 3549 -199.227.132.0/22 3549 -199.227.136.0/21 3549 -199.227.144.0/20 3549 -199.227.160.0/23 3549 -199.227.162.0/24 53634 -199.227.163.0/24 3549 -199.227.164.0/22 3549 -199.227.168.0/21 3549 -199.227.176.0/24 26831 -199.227.177.0/24 3549 -199.227.178.0/23 3549 -199.227.180.0/22 3549 -199.227.184.0/21 3549 -199.227.192.0/21 3549 -199.227.200.0/23 3549 -199.227.202.0/24 397281 -199.227.203.0/24 3549 -199.227.204.0/22 3549 -199.227.208.0/22 3549 -199.227.212.0/23 3549 -199.227.214.0/24 3549 -199.227.215.0/24 26831 -199.227.216.0/23 3549 -199.227.218.0/24 16695 -199.227.219.0/24 3549 -199.227.220.0/22 3549 -199.227.224.0/19 3549 -199.228.61.0/24 5714 -199.228.76.0/24 1873 -199.228.82.0/23 5714 -199.228.84.0/24 5714 -199.228.98.0/24 1873 -199.228.142.0/23 5714 -199.228.159.0/24 5714 -199.228.162.0/24 5714 -199.228.165.0/24 5714 -199.228.169.0/24 6900 -199.228.174.0/24 6900 -199.228.190.0/24 25867 -199.228.255.0/24 5714 -199.229.46.0/24 21949 -199.229.56.0/23 34253 -199.229.150.0/24 7018 -199.229.159.0/24 6848 -199.229.190.0/24 34253 -199.229.208.0/24 133412 -199.229.210.0/24 9410 -199.229.216.0/24 139914 -199.229.220.0/22 46920 -199.229.224.0/24 394977 -199.229.225.0/24 3257 -199.229.226.0/23 3257 -199.229.228.0/22 3257 -199.229.232.0/22 18978 -199.229.236.0/23 62754 -199.229.238.0/23 21782 -199.229.240.0/22 11492 -199.229.244.0/22 26027 -199.229.248.0/21 46562 -199.230.10.0/23 32329 -199.230.12.0/22 32662 -199.230.17.0/24 21622 -199.230.18.0/23 21622 -199.230.20.0/22 21622 -199.230.27.0/24 21622 -199.230.28.0/23 21622 -199.230.30.0/23 394010 -199.230.32.0/20 2152 -199.230.48.0/22 2152 -199.230.52.0/22 30633 -199.230.56.0/23 16940 -199.230.58.0/23 4882 -199.230.60.0/23 16940 -199.230.62.0/23 4882 -199.230.104.0/21 19740 -199.230.112.0/21 22925 -199.230.120.0/21 209 -199.230.128.0/23 22855 -199.230.136.0/24 22855 -199.230.138.0/23 22855 -199.230.150.0/24 22855 -199.230.151.0/24 14639 -199.230.164.0/24 7018 -199.230.170.0/23 14639 -199.230.172.0/24 3356 -199.230.200.0/23 14639 -199.230.203.0/24 14639 -199.230.209.0/24 14639 -199.230.212.0/23 14639 -199.230.249.0/24 22855 -199.230.252.0/22 22855 -199.231.6.0/23 6461 -199.231.16.0/23 11047 -199.231.21.0/24 11047 -199.231.26.0/23 11047 -199.231.28.0/23 11047 -199.231.31.0/24 11047 -199.231.32.0/22 11086 -199.231.36.0/24 11086 -199.231.40.0/23 11086 -199.231.43.0/24 11086 -199.231.44.0/23 11086 -199.231.49.0/24 11086 -199.231.50.0/24 11086 -199.231.52.0/22 12129 -199.231.64.0/21 11282 -199.231.72.0/22 32845 -199.231.76.0/22 36024 -199.231.80.0/22 36100 -199.231.84.0/22 53755 -199.231.88.0/23 54671 -199.231.90.0/24 54671 -199.231.92.0/22 29757 -199.231.96.0/22 33459 -199.231.104.0/22 16908 -199.231.108.0/22 54707 -199.231.112.0/21 46353 -199.231.120.0/23 54749 -199.231.122.0/24 14244 -199.231.123.0/24 54749 -199.231.124.0/22 54465 -199.231.128.0/20 20021 -199.231.144.0/22 20021 -199.231.151.0/24 6079 -199.231.152.0/22 46838 -199.231.160.0/23 10480 -199.231.162.0/23 29802 -199.231.164.0/23 29802 -199.231.166.0/24 29802 -199.231.168.0/21 23314 -199.231.176.0/21 16958 -199.231.184.0/21 19318 -199.231.192.0/23 3356 -199.231.195.0/24 11463 -199.231.196.0/22 62 -199.231.200.0/21 852 -199.231.208.0/21 18978 -199.231.216.0/22 54473 -199.231.220.0/22 12132 -199.231.224.0/22 3800 -199.231.228.0/22 46506 -199.231.232.0/24 20278 -199.231.234.0/23 54046 -199.231.236.0/24 15053 -199.231.238.0/24 15053 -199.231.240.0/21 21743 -199.231.252.0/23 209 -199.231.255.0/24 393670 -199.232.0.0/16 54113 -199.233.14.0/24 395141 -199.233.15.0/24 16696 -199.233.18.0/23 36179 -199.233.28.0/22 40633 -199.233.32.0/20 2381 -199.233.58.0/23 18718 -199.233.60.0/22 54417 -199.233.68.0/24 32294 -199.233.74.0/24 54350 -199.233.77.0/24 3549 -199.233.80.0/24 26031 -199.233.81.0/24 7905 -199.233.84.0/24 2381 -199.233.86.0/24 2381 -199.233.87.0/24 33058 -199.233.90.0/24 6939 -199.233.91.0/24 23345 -199.233.95.0/24 18686 -199.233.104.0/24 11114 -199.233.111.0/24 19108 -199.233.116.0/24 7385 -199.233.118.0/24 54575 -199.233.119.0/24 11394 -199.233.125.0/24 30498 -199.233.129.0/24 397045 -199.233.132.0/24 397795 -199.233.135.0/24 63063 -199.233.142.0/24 2381 -199.233.144.0/24 395241 -199.233.154.0/23 7018 -199.233.157.0/24 17054 -199.233.159.0/24 22561 -199.233.162.0/24 20230 -199.233.179.0/24 11855 -199.233.181.0/24 36024 -199.233.182.0/24 3734 -199.233.183.0/24 36493 -199.233.184.0/24 36493 -199.233.192.0/24 209 -199.233.202.0/23 40467 -199.233.204.0/24 26743 -199.233.210.0/24 36445 -199.233.216.0/24 3561 -199.233.217.0/24 23310 -199.233.218.0/23 26343 -199.233.220.0/22 8001 -199.233.224.0/22 7349 -199.233.228.0/22 36236 -199.233.232.0/21 46261 -199.233.240.0/22 19988 -199.233.248.0/22 16904 -199.233.252.0/22 14415 -199.234.0.0/18 2914 -199.234.64.0/21 32634 -199.234.72.0/21 2914 -199.234.80.0/21 2914 -199.234.88.0/24 2914 -199.234.89.0/24 7795 -199.234.90.0/24 7795 -199.234.91.0/24 2914 -199.234.92.0/22 2914 -199.234.96.0/19 2914 -199.234.128.0/18 2914 -199.234.192.0/19 2914 -199.234.224.0/20 2914 -199.234.240.0/22 2914 -199.234.244.0/22 174 -199.234.248.0/21 2914 -199.235.0.0/16 33105 -199.236.0.0/16 2914 -199.237.0.0/19 2914 -199.237.32.0/20 2914 -199.237.48.0/20 19271 -199.237.64.0/18 2914 -199.237.128.0/17 2914 -199.238.0.0/16 2914 -199.239.0.0/18 2914 -199.239.64.0/19 2914 -199.239.96.0/22 2914 -199.239.100.0/24 2914 -199.239.101.0/24 174 -199.239.102.0/23 2914 -199.239.104.0/21 2914 -199.239.112.0/20 2914 -199.239.128.0/19 2914 -199.239.160.0/20 2914 -199.239.176.0/22 2914 -199.239.180.0/23 2914 -199.239.182.0/23 20940 -199.239.184.0/24 20940 -199.239.185.0/24 2914 -199.239.186.0/23 2914 -199.239.188.0/22 2914 -199.239.192.0/18 2914 -199.240.0.0/17 2914 -199.240.128.0/23 2914 -199.240.130.0/23 8159 -199.240.132.0/22 2914 -199.240.136.0/22 2914 -199.240.140.0/23 8159 -199.240.142.0/23 2914 -199.240.144.0/20 2914 -199.240.160.0/19 2914 -199.240.192.0/18 2914 -199.241.8.0/22 3549 -199.241.12.0/23 3549 -199.241.14.0/24 7018 -199.241.15.0/24 23005 -199.241.26.0/23 31775 -199.241.28.0/22 3842 -199.241.34.0/24 5056 -199.241.96.0/22 27589 -199.241.100.0/23 27589 -199.241.102.0/24 27589 -199.241.103.0/24 27229 -199.241.104.0/24 13581 -199.241.113.0/24 30047 -199.241.117.0/24 30047 -199.241.118.0/23 30047 -199.241.120.0/23 53889 -199.241.122.0/24 53889 -199.241.123.0/24 63008 -199.241.124.0/22 53889 -199.241.128.0/21 22423 -199.241.136.0/21 53340 -199.241.146.0/24 25780 -199.241.148.0/22 22746 -199.241.152.0/21 2764 -199.241.160.0/21 46757 -199.241.168.0/22 14928 -199.241.172.0/22 26076 -199.241.176.0/21 22820 -199.241.184.0/21 31863 -199.241.193.0/24 25761 -199.241.194.0/23 25761 -199.241.196.0/24 25761 -199.241.198.0/23 25761 -199.241.200.0/22 32329 -199.241.204.0/22 36529 -199.241.208.0/21 22646 -199.241.218.0/23 18501 -199.241.220.0/22 26269 -199.241.224.0/21 209 -199.241.232.0/23 11862 -199.241.236.0/23 11862 -199.241.238.0/24 21676 -199.241.239.0/24 6190 -199.241.240.0/22 11597 -199.241.244.0/24 62548 -199.241.245.0/24 22742 -199.241.246.0/23 22742 -199.241.248.0/21 25956 -199.242.0.0/23 31747 -199.242.4.0/23 31747 -199.242.6.0/24 31747 -199.242.16.0/21 3561 -199.242.24.0/23 3561 -199.242.26.0/23 17150 -199.242.28.0/22 46970 -199.242.48.0/21 8075 -199.242.56.0/21 22702 -199.242.64.0/18 22472 -199.242.135.0/24 40425 -199.242.144.0/24 54615 -199.242.168.0/24 13930 -199.242.174.0/24 54547 -199.242.176.0/24 2381 -199.242.177.0/24 46651 -199.242.192.0/24 4581 -199.242.201.0/24 394917 -199.242.206.0/23 33490 -199.242.208.0/24 1136 -199.242.209.0/24 394533 -199.242.211.0/24 3719 -199.242.230.0/24 22773 -199.242.231.0/24 3477 -199.242.232.0/23 3477 -199.242.234.0/23 13998 -199.242.236.0/22 13998 -199.242.242.0/24 4043 -199.242.244.0/24 18530 -199.242.245.0/24 11852 -199.242.250.0/24 54600 -199.242.255.0/24 17216 -199.243.0.0/18 577 -199.243.64.0/24 577 -199.243.65.0/24 32564 -199.243.66.0/23 577 -199.243.68.0/22 577 -199.243.72.0/21 577 -199.243.80.0/20 577 -199.243.96.0/20 577 -199.243.112.0/22 577 -199.243.116.0/22 3804 -199.243.120.0/21 577 -199.243.128.0/20 577 -199.243.144.0/22 577 -199.243.148.0/22 3561 -199.243.152.0/21 577 -199.243.160.0/19 577 -199.243.192.0/21 577 -199.243.200.0/23 577 -199.243.202.0/24 577 -199.243.203.0/24 12132 -199.243.204.0/24 577 -199.243.205.0/24 12132 -199.243.206.0/23 577 -199.243.208.0/20 577 -199.243.224.0/24 577 -199.243.225.0/24 25946 -199.243.226.0/23 577 -199.243.228.0/22 577 -199.243.232.0/21 577 -199.243.240.0/21 577 -199.243.248.0/22 577 -199.243.252.0/24 577 -199.243.253.0/24 12132 -199.243.254.0/23 577 -199.244.0.0/23 23251 -199.244.3.0/24 23251 -199.244.5.0/24 23251 -199.244.10.0/24 23251 -199.244.12.0/24 23251 -199.244.14.0/23 15305 -199.244.16.0/21 53421 -199.244.24.0/23 53421 -199.244.26.0/23 394200 -199.244.28.0/22 13370 -199.244.32.0/24 17223 -199.244.48.0/23 36007 -199.244.50.0/23 396948 -199.244.52.0/22 62917 -199.244.56.0/24 200366 -199.244.57.0/24 203999 -199.244.58.0/23 200494 -199.244.60.0/24 203999 -199.244.61.0/24 200494 -199.244.62.0/24 21983 -199.244.63.0/24 200494 -199.244.68.0/22 42976 -199.244.72.0/22 36351 -199.244.76.0/22 36354 -199.244.80.0/22 55135 -199.244.84.0/22 25687 -199.244.88.0/22 40355 -199.244.92.0/23 53306 -199.244.96.0/22 54732 -199.244.100.0/22 54563 -199.244.104.0/21 27409 -199.244.120.0/23 22652 -199.244.122.0/24 54859 -199.244.123.0/24 23471 -199.244.124.0/22 16391 -199.244.133.0/24 7018 -199.244.134.0/24 7018 -199.244.140.0/24 30560 -199.244.142.0/24 30560 -199.244.144.0/24 4847 -199.244.166.0/24 16542 -199.244.171.0/24 7385 -199.244.172.0/24 7385 -199.244.186.0/23 26844 -199.244.198.0/23 21570 -199.244.200.0/22 30354 -199.244.205.0/24 23099 -199.244.206.0/23 23099 -199.244.208.0/24 23099 -199.244.212.0/24 7086 -199.244.214.0/24 19769 -199.244.218.0/23 19769 -199.244.223.0/24 13367 -199.244.245.0/24 11123 -199.244.248.0/24 7029 -199.244.249.0/24 26833 -199.244.252.0/22 12179 -199.245.0.0/23 2830 -199.245.2.0/24 2830 -199.245.3.0/24 16875 -199.245.14.0/23 16875 -199.245.16.0/20 2914 -199.245.32.0/24 3356 -199.245.52.0/22 54020 -199.245.56.0/23 21859 -199.245.58.0/24 21859 -199.245.60.0/23 21859 -199.245.63.0/24 21859 -199.245.84.0/24 33748 -199.245.85.0/24 54864 -199.245.86.0/23 22348 -199.245.88.0/23 22348 -199.245.98.0/24 394088 -199.245.103.0/24 3549 -199.245.105.0/24 6939 -199.245.131.0/24 394917 -199.245.140.0/24 395914 -199.245.141.0/24 54464 -199.245.142.0/23 394135 -199.245.144.0/24 54577 -199.245.155.0/24 2152 -199.245.156.0/24 209 -199.245.162.0/24 394294 -199.245.163.0/24 11897 -199.245.164.0/23 11897 -199.245.166.0/24 11897 -199.245.170.0/24 14615 -199.245.172.0/24 10653 -199.245.177.0/24 7385 -199.245.178.0/23 7029 -199.245.187.0/24 3832 -199.245.188.0/24 16582 -199.245.189.0/24 40758 -199.245.195.0/24 22120 -199.245.197.0/24 23352 -199.245.199.0/24 393572 -199.245.200.0/24 393572 -199.245.201.0/24 18581 -199.245.204.0/24 18867 -199.245.206.0/24 55030 -199.245.208.0/23 10796 -199.245.214.0/24 18530 -199.245.216.0/23 3147 -199.245.218.0/24 3147 -199.245.219.0/24 394964 -199.245.220.0/24 394964 -199.245.225.0/24 2711 -199.245.227.0/24 4358 -199.245.228.0/23 4358 -199.245.230.0/24 4358 -199.245.233.0/24 13768 -199.245.234.0/24 13768 -199.245.235.0/24 12257 -199.245.238.0/24 10430 -199.245.241.0/24 209 -199.245.242.0/24 23138 -199.245.244.0/23 3549 -199.245.253.0/24 393228 -199.245.255.0/24 17101 -199.246.2.0/23 13468 -199.246.4.0/23 852 -199.246.24.0/24 26198 -199.246.25.0/24 54412 -199.246.30.0/23 23498 -199.246.36.0/23 11647 -199.246.38.0/23 6407 -199.246.40.0/24 577 -199.246.50.0/23 13319 -199.246.72.0/23 812 -199.246.74.0/24 812 -199.246.76.0/24 13895 -199.246.80.0/23 46556 -199.246.82.0/23 54366 -199.246.102.0/24 603 -199.246.103.0/24 27272 -199.246.106.0/24 31790 -199.246.110.0/23 14843 -199.246.116.0/24 47102 -199.246.133.0/24 21949 -199.246.139.0/24 54522 -199.246.150.0/24 40341 -199.246.151.0/24 12188 -199.246.153.0/24 174 -199.246.155.0/24 40341 -199.246.159.0/24 15290 -199.246.160.0/23 3411 -199.246.162.0/24 3411 -199.246.168.0/23 13319 -199.246.211.0/24 577 -199.246.218.0/23 25864 -199.246.221.0/24 25864 -199.246.227.0/24 3848 -199.246.228.0/23 3848 -199.246.231.0/24 2665 -199.246.232.0/21 2665 -199.246.240.0/21 2665 -199.246.248.0/22 2665 -199.246.252.0/23 2665 -199.246.255.0/24 54337 -199.247.0.0/19 20473 -199.247.34.0/23 27471 -199.247.36.0/22 27471 -199.247.40.0/21 27471 -199.247.48.0/24 16696 -199.247.49.0/24 397136 -199.247.50.0/24 395257 -199.247.51.0/24 22684 -199.247.52.0/22 22573 -199.247.56.0/21 196968 -199.247.64.0/20 32867 -199.247.80.0/22 53764 -199.247.84.0/24 22684 -199.247.85.0/24 22483 -199.247.86.0/23 27239 -199.247.88.0/21 30630 -199.247.96.0/20 31939 -199.247.113.0/24 31939 -199.247.114.0/24 31939 -199.247.115.0/24 54154 -199.247.116.0/22 54154 -199.247.120.0/21 54154 -199.247.128.0/18 841 -199.247.206.0/23 33549 -199.247.208.0/20 22867 -199.247.224.0/19 18988 -199.248.8.0/23 33499 -199.248.10.0/24 27237 -199.248.31.0/24 35907 -199.248.62.0/24 15340 -199.248.63.0/24 21554 -199.248.64.0/23 23005 -199.248.138.0/24 40676 -199.248.164.0/23 26517 -199.248.166.0/24 26517 -199.248.168.0/24 26517 -199.248.172.0/24 1226 -199.248.173.0/24 3464 -199.248.174.0/23 3464 -199.248.176.0/23 3464 -199.248.178.0/24 3464 -199.248.185.0/24 393456 -199.248.186.0/24 2381 -199.248.197.0/24 209 -199.248.199.0/24 54601 -199.248.200.0/24 393709 -199.248.201.0/24 397940 -199.248.203.0/24 396352 -199.248.208.0/24 16932 -199.248.209.0/24 2048 -199.248.216.0/24 395243 -199.248.223.0/24 30673 -199.248.225.0/24 21512 -199.248.226.0/24 3549 -199.248.230.0/24 16582 -199.248.232.0/24 16859 -199.248.238.0/24 4583 -199.248.239.0/24 6565 -199.248.241.0/24 2828 -199.248.251.0/24 3549 -199.249.0.0/21 12129 -199.249.16.0/20 3378 -199.249.109.0/24 54371 -199.249.110.0/23 394146 -199.249.112.0/20 42 -199.249.150.0/24 15290 -199.249.155.0/24 7795 -199.249.156.0/23 7795 -199.249.159.0/24 13536 -199.249.161.0/24 397082 -199.249.162.0/24 54550 -199.249.165.0/24 103 -199.249.166.0/23 103 -199.249.168.0/23 103 -199.249.175.0/24 7018 -199.249.176.0/24 5696 -199.249.180.0/23 54548 -199.249.182.0/24 8100 -199.249.183.0/24 7381 -199.249.184.0/24 40040 -199.249.185.0/24 15314 -199.249.186.0/24 14265 -199.249.187.0/24 3356 -199.249.188.0/24 174 -199.249.190.0/24 2711 -199.249.195.0/24 6062 -199.249.196.0/23 6062 -199.249.198.0/24 7753 -199.249.199.0/24 7784 -199.249.200.0/23 26431 -199.249.205.0/24 23209 -199.249.207.0/24 18673 -199.249.208.0/22 18673 -199.249.214.0/24 13998 -199.249.223.0/24 62744 -199.249.224.0/24 62744 -199.249.227.0/24 22742 -199.249.228.0/24 47024 -199.249.230.0/24 62744 -199.249.232.0/22 32880 -199.249.236.0/24 47041 -199.249.237.0/24 11052 -199.249.238.0/24 11052 -199.249.240.0/24 11052 -199.249.243.0/24 32982 -199.249.253.0/24 2386 -199.249.255.0/24 19281 -199.250.0.0/21 395789 -199.250.8.0/24 11544 -199.250.9.0/24 16731 -199.250.10.0/24 16731 -199.250.12.0/24 11544 -199.250.14.0/23 25692 -199.250.16.0/24 16509 -199.250.17.0/24 8103 -199.250.18.0/23 8103 -199.250.20.0/22 8103 -199.250.24.0/22 8103 -199.250.28.0/24 8103 -199.250.30.0/23 8103 -199.250.32.0/20 209 -199.250.48.0/21 209 -199.250.56.0/22 209 -199.250.61.0/24 32421 -199.250.65.0/24 19124 -199.250.66.0/23 19124 -199.250.68.0/23 19124 -199.250.75.0/24 19124 -199.250.80.0/23 19124 -199.250.91.0/24 19124 -199.250.92.0/22 19124 -199.250.96.0/19 19124 -199.250.128.0/19 15975 -199.250.160.0/24 26459 -199.250.174.0/23 26459 -199.250.176.0/21 63457 -199.250.184.0/22 63109 -199.250.188.0/23 64267 -199.250.191.0/24 7029 -199.250.192.0/20 54641 -199.250.208.0/21 22611 -199.250.216.0/21 54641 -199.250.224.0/20 394473 -199.250.240.0/23 8104 -199.250.242.0/24 8104 -199.250.243.0/24 22773 -199.250.244.0/23 23172 -199.250.246.0/24 23172 -199.250.247.0/24 22773 -199.250.248.0/24 54993 -199.250.250.0/24 394893 -199.250.251.0/24 394473 -199.250.252.0/23 394473 -199.250.254.0/24 33282 -199.250.255.0/24 397053 -199.251.0.0/22 721 -199.251.4.0/23 721 -199.251.6.0/24 386 -199.251.7.0/24 721 -199.251.8.0/21 721 -199.251.16.0/23 721 -199.251.18.0/24 385 -199.251.19.0/24 721 -199.251.20.0/24 721 -199.251.21.0/24 385 -199.251.22.0/23 721 -199.251.24.0/22 721 -199.251.28.0/23 721 -199.251.30.0/23 385 -199.251.32.0/24 385 -199.251.33.0/24 721 -199.251.34.0/23 721 -199.251.36.0/22 721 -199.251.40.0/21 721 -199.251.48.0/21 721 -199.251.56.0/22 721 -199.251.60.0/23 385 -199.251.62.0/24 385 -199.251.63.0/24 721 -199.251.64.0/20 721 -199.251.80.0/24 721 -199.251.81.0/24 385 -199.251.82.0/23 385 -199.251.84.0/22 385 -199.251.88.0/23 399 -199.251.90.0/23 721 -199.251.92.0/22 721 -199.251.96.0/23 721 -199.251.98.0/24 721 -199.251.99.0/24 385 -199.251.100.0/22 721 -199.251.104.0/21 721 -199.251.112.0/21 721 -199.251.120.0/24 721 -199.251.121.0/24 385 -199.251.122.0/24 721 -199.251.123.0/24 385 -199.251.124.0/22 721 -199.251.128.0/20 721 -199.251.144.0/21 721 -199.251.152.0/23 721 -199.251.154.0/24 721 -199.251.155.0/24 385 -199.251.156.0/24 385 -199.251.157.0/24 721 -199.251.158.0/23 721 -199.251.160.0/19 721 -199.251.192.0/24 721 -199.251.193.0/24 385 -199.251.194.0/24 385 -199.251.195.0/24 721 -199.251.196.0/22 721 -199.251.200.0/21 721 -199.251.208.0/22 721 -199.251.212.0/24 132 -199.251.213.0/24 721 -199.251.214.0/24 132 -199.251.215.0/24 721 -199.251.216.0/21 721 -199.251.224.0/21 721 -199.251.232.0/24 385 -199.251.233.0/24 721 -199.251.234.0/23 721 -199.251.236.0/22 721 -199.251.240.0/22 721 -199.251.244.0/23 385 -199.251.246.0/23 721 -199.251.248.0/22 721 -199.251.252.0/24 721 -199.251.253.0/24 386 -199.251.254.0/23 721 -199.252.8.0/22 5972 -199.252.12.0/24 5972 -199.252.16.0/21 5972 -199.252.24.0/24 5972 -199.252.32.0/24 721 -199.252.33.0/24 367 -199.252.34.0/23 367 -199.252.36.0/24 367 -199.252.37.0/24 721 -199.252.38.0/24 721 -199.252.39.0/24 367 -199.252.40.0/24 721 -199.252.41.0/24 367 -199.252.42.0/23 721 -199.252.44.0/23 721 -199.252.46.0/24 721 -199.252.47.0/24 745 -199.252.48.0/23 721 -199.252.50.0/24 6042 -199.252.51.0/24 721 -199.252.128.0/18 721 -199.253.0.0/21 8025 -199.253.8.0/23 8025 -199.253.10.0/23 19515 -199.253.12.0/22 29744 -199.253.16.0/22 19311 -199.253.20.0/23 19311 -199.253.25.0/24 19311 -199.253.26.0/23 394197 -199.253.30.0/23 397172 -199.253.56.0/23 12041 -199.253.59.0/24 12041 -199.253.60.0/23 12041 -199.253.96.0/21 60269 -199.253.104.0/22 60269 -199.253.108.0/23 60269 -199.253.110.0/24 60269 -199.253.111.0/24 7474 -199.253.112.0/20 393568 -199.253.128.0/21 13660 -199.253.136.0/21 394453 -199.253.173.0/24 3738 -199.253.174.0/24 3738 -199.253.176.0/22 394077 -199.253.180.0/24 394077 -199.253.182.0/23 26710 -199.253.184.0/21 40200 -199.253.200.0/21 19335 -199.253.216.0/24 20001 -199.253.240.0/24 3549 -199.253.241.0/24 32066 -199.253.242.0/24 17929 -199.253.243.0/24 7743 -199.253.244.0/23 7743 -199.253.246.0/24 32066 -199.253.247.0/24 17929 -199.253.248.0/24 10934 -199.253.249.0/24 53535 -199.253.250.0/24 25192 -199.253.251.0/24 55195 -199.253.252.0/22 6594 -199.254.0.0/24 20001 -199.254.2.0/23 35960 -199.254.4.0/23 35960 -199.254.6.0/23 20001 -199.254.8.0/21 7834 -199.254.16.0/22 10753 -199.254.26.0/24 10753 -199.254.27.0/24 53459 -199.254.28.0/22 12041 -199.254.48.0/20 12041 -199.254.65.0/24 16980 -199.254.66.0/23 16980 -199.254.87.0/24 16980 -199.254.92.0/23 16980 -199.254.96.0/21 16700 -199.254.104.0/21 14813 -199.254.112.0/22 46358 -199.254.116.0/23 46358 -199.254.118.0/24 46358 -199.254.120.0/22 16406 -199.254.124.0/22 35891 -199.254.137.0/24 7018 -199.254.141.0/24 40715 -199.254.149.0/24 54452 -199.254.156.0/24 13977 -199.254.157.0/24 4314 -199.254.160.0/24 3914 -199.254.162.0/24 701 -199.254.165.0/24 396344 -199.254.168.0/24 46664 -199.254.170.0/24 22458 -199.254.171.0/24 42 -199.254.175.0/24 13649 -199.254.176.0/24 11716 -199.254.177.0/24 395943 -199.254.197.0/24 11403 -199.254.202.0/24 14033 -199.254.204.0/24 7332 -199.254.212.0/24 395589 -199.254.216.0/24 10753 -199.254.222.0/24 23148 -199.254.228.0/24 36012 -199.254.229.0/24 4319 -199.254.236.0/24 7018 -199.254.238.0/24 16652 -199.254.253.0/24 13536 -199.255.0.0/22 39954 -199.255.8.0/22 16391 -199.255.12.0/23 26820 -199.255.14.0/23 64233 -199.255.24.0/22 32524 -199.255.28.0/22 40108 -199.255.32.0/22 36351 -199.255.36.0/22 5787 -199.255.40.0/22 4356 -199.255.44.0/22 33045 -199.255.48.0/21 13572 -199.255.60.0/22 22489 -199.255.64.0/21 22408 -199.255.72.0/23 54800 -199.255.80.0/22 13410 -199.255.84.0/22 14230 -199.255.88.0/21 27541 -199.255.96.0/22 35916 -199.255.100.0/22 22200 -199.255.104.0/21 32719 -199.255.112.0/22 46138 -199.255.116.0/22 46941 -199.255.120.0/22 40627 -199.255.126.0/23 13834 -199.255.128.0/21 22913 -199.255.136.0/22 31863 -199.255.140.0/24 46340 -199.255.141.0/24 24867 -199.255.142.0/24 46340 -199.255.143.0/24 24867 -199.255.144.0/22 36024 -199.255.152.0/24 53498 -199.255.154.0/24 53498 -199.255.156.0/23 31863 -199.255.158.0/24 64235 -199.255.159.0/24 31863 -199.255.160.0/22 55056 -199.255.164.0/22 1420 -199.255.168.0/22 53504 -199.255.172.0/23 53504 -199.255.175.0/24 53504 -199.255.176.0/21 11763 -199.255.184.0/22 46883 -199.255.188.0/22 33445 -199.255.192.0/22 16509 -199.255.196.0/24 32542 -199.255.198.0/23 32542 -199.255.200.0/22 21818 -199.255.204.0/22 11719 -199.255.216.0/21 11260 -199.255.228.0/22 27240 -199.255.232.0/22 17359 -199.255.236.0/22 1612 -199.255.240.0/22 53542 -199.255.244.0/22 15209 -199.255.248.0/24 13816 -199.255.250.0/23 13816 -199.255.252.0/22 11978 -200.0.8.0/21 263251 -200.0.16.0/24 11960 -200.0.21.0/24 28017 -200.0.23.0/24 27781 -200.0.24.0/22 27725 -200.0.28.0/22 27820 -200.0.32.0/20 61889 -200.0.48.0/21 262434 -200.0.56.0/22 52739 -200.0.60.0/23 263821 -200.0.62.0/24 61760 -200.0.63.0/24 198949 -200.0.66.0/24 6429 -200.0.68.0/24 61455 -200.0.70.0/24 11097 -200.0.72.0/24 61843 -200.0.73.0/24 23031 -200.0.81.0/24 61656 -200.0.85.0/24 264102 -200.0.88.0/24 52224 -200.0.89.0/24 61571 -200.0.90.0/23 28394 -200.0.92.0/23 28394 -200.0.100.0/23 262559 -200.0.102.0/24 264198 -200.0.111.0/24 8151 -200.0.112.0/23 8151 -200.0.114.0/24 264185 -200.0.116.0/24 16629 -200.0.118.0/23 12252 -200.0.126.0/24 3549 -200.0.129.0/24 8151 -200.0.132.0/24 8151 -200.0.134.0/23 264261 -200.0.144.0/23 11340 -200.0.148.0/23 6429 -200.0.156.0/24 16874 -200.0.158.0/24 16874 -200.0.160.0/24 13774 -200.0.163.0/24 13774 -200.0.166.0/24 22411 -200.0.167.0/24 19180 -200.0.174.0/24 27946 -200.0.175.0/24 27779 -200.0.176.0/23 27654 -200.0.178.0/24 27972 -200.0.180.0/24 12127 -200.0.182.0/23 27981 -200.0.184.0/24 10753 -200.0.185.0/24 7340 -200.0.187.0/24 28039 -200.0.188.0/22 267909 -200.0.192.0/23 10834 -200.0.194.0/23 3549 -200.0.196.0/23 3549 -200.0.201.0/24 27663 -200.0.202.0/23 270308 -200.0.204.0/22 27750 -200.0.208.0/22 7005 -200.0.212.0/23 7005 -200.0.214.0/24 7005 -200.0.216.0/21 2688 -200.0.224.0/20 10834 -200.0.240.0/21 10834 -200.0.248.0/22 10834 -200.0.252.0/24 20305 -200.0.253.0/24 10834 -200.0.254.0/23 10834 -200.1.7.0/24 27980 -200.1.8.0/21 27782 -200.1.16.0/20 26610 -200.1.32.0/20 10834 -200.1.48.0/21 10834 -200.1.56.0/22 10834 -200.1.60.0/23 10834 -200.1.62.0/24 10834 -200.1.63.0/24 6121 -200.1.64.0/24 10753 -200.1.66.0/24 10753 -200.1.73.0/24 10753 -200.1.81.0/24 10753 -200.1.86.0/24 14080 -200.1.87.0/24 10753 -200.1.88.0/23 10753 -200.1.95.0/24 10753 -200.1.103.0/24 10753 -200.1.104.0/21 27665 -200.1.113.0/24 52240 -200.1.115.0/24 27677 -200.1.116.0/24 16701 -200.1.117.0/24 21756 -200.1.118.0/24 27655 -200.1.119.0/24 8053 -200.1.120.0/24 27678 -200.1.122.0/23 27678 -200.1.124.0/24 27731 -200.1.125.0/24 266161 -200.1.126.0/24 27753 -200.1.127.0/24 27731 -200.1.128.0/24 16874 -200.1.129.0/24 3549 -200.1.131.0/24 18492 -200.1.143.0/24 21753 -200.1.148.0/24 8048 -200.1.154.0/24 207036 -200.1.155.0/24 6400 -200.1.156.0/22 27775 -200.1.161.0/24 27947 -200.1.169.0/24 3496 -200.1.171.0/24 3496 -200.1.173.0/24 52247 -200.1.174.0/24 27838 -200.1.175.0/24 27989 -200.1.176.0/24 3132 -200.1.177.0/24 262253 -200.1.178.0/24 3132 -200.1.179.0/24 262253 -200.1.180.0/22 262253 -200.1.200.0/21 27795 -200.1.208.0/21 27775 -200.1.216.0/21 263258 -200.1.224.0/19 4387 -200.2.0.0/21 27676 -200.2.8.0/21 7965 -200.2.28.0/22 27963 -200.2.32.0/19 6057 -200.2.64.0/24 27975 -200.2.65.0/24 3816 -200.2.66.0/24 27817 -200.2.67.0/24 27975 -200.2.75.0/24 16874 -200.2.91.0/24 14966 -200.2.92.0/23 16471 -200.2.100.0/22 262286 -200.2.112.0/21 11340 -200.2.120.0/21 27792 -200.2.128.0/19 27759 -200.2.160.0/19 27775 -200.2.192.0/22 10778 -200.2.196.0/24 4995 -200.2.197.0/24 10778 -200.2.198.0/23 10778 -200.2.200.0/22 10778 -200.2.204.0/23 20015 -200.2.206.0/23 10778 -200.2.208.0/20 10778 -200.2.224.0/19 10778 -200.3.0.0/24 263182 -200.3.1.0/24 27957 -200.3.2.0/23 27957 -200.3.4.0/23 27957 -200.3.8.0/24 27957 -200.3.12.0/22 28001 -200.3.16.0/20 52689 -200.3.48.0/24 7303 -200.3.76.0/24 7303 -200.3.78.0/24 7303 -200.3.84.0/24 7303 -200.3.90.0/23 7303 -200.3.94.0/23 7303 -200.3.96.0/24 26594 -200.3.98.0/24 26594 -200.3.100.0/24 26594 -200.3.102.0/24 26594 -200.3.104.0/24 11664 -200.3.107.0/24 10834 -200.3.108.0/24 26594 -200.3.110.0/24 26594 -200.3.113.0/24 10753 -200.3.116.0/22 7908 -200.3.120.0/21 262156 -200.3.144.0/23 52488 -200.3.146.0/24 28069 -200.3.147.0/24 28070 -200.3.148.0/22 19429 -200.3.152.0/22 19429 -200.3.160.0/22 14080 -200.3.164.0/22 3816 -200.3.168.0/21 11815 -200.3.176.0/21 26317 -200.3.184.0/21 27935 -200.3.192.0/23 10299 -200.3.194.0/24 28084 -200.3.195.0/24 28101 -200.3.200.0/21 27755 -200.3.208.0/21 17126 -200.3.216.0/21 27813 -200.3.241.0/24 27809 -200.3.242.0/24 28102 -200.3.243.0/24 28117 -200.3.244.0/23 262191 -200.3.246.0/24 19429 -200.3.248.0/21 27895 -200.4.0.0/21 8151 -200.4.8.0/24 8151 -200.4.16.0/20 8026 -200.4.48.0/24 14249 -200.4.56.0/23 20173 -200.4.59.0/24 27830 -200.4.68.0/23 22699 -200.4.70.0/23 20173 -200.4.81.0/24 18532 -200.4.82.0/23 18532 -200.4.84.0/23 18532 -200.4.86.0/24 18532 -200.4.128.0/20 5708 -200.4.144.0/23 3905 -200.4.158.0/23 3905 -200.4.160.0/19 27774 -200.4.192.0/18 6147 -200.5.3.0/24 23534 -200.5.4.0/23 23534 -200.5.7.0/24 23534 -200.5.9.0/24 264256 -200.5.10.0/24 23148 -200.5.12.0/22 27725 -200.5.32.0/22 262326 -200.5.36.0/22 53119 -200.5.41.0/24 8048 -200.5.48.0/20 263762 -200.5.64.0/21 10834 -200.5.72.0/22 10834 -200.5.76.0/23 10834 -200.5.78.0/23 20117 -200.5.80.0/21 10834 -200.5.88.0/22 10834 -200.5.92.0/24 27730 -200.5.93.0/24 10834 -200.5.94.0/23 10834 -200.5.96.0/19 10834 -200.5.129.0/24 8048 -200.5.167.0/24 3549 -200.5.168.0/24 3549 -200.5.192.0/20 10834 -200.5.208.0/22 10834 -200.5.212.0/23 5648 -200.5.214.0/23 10834 -200.5.216.0/21 10834 -200.5.224.0/19 10834 -200.6.8.0/24 28006 -200.6.13.0/24 27947 -200.6.14.0/24 23031 -200.6.17.0/24 23031 -200.6.18.0/24 27856 -200.6.25.0/24 27947 -200.6.27.0/24 27862 -200.6.35.0/24 263881 -200.6.36.0/22 262377 -200.6.40.0/24 19723 -200.6.41.0/24 2715 -200.6.42.0/23 1251 -200.6.44.0/22 262628 -200.6.52.0/24 27873 -200.6.53.0/24 27899 -200.6.54.0/24 27904 -200.6.55.0/24 27905 -200.6.56.0/21 11081 -200.6.65.0/24 16874 -200.6.66.0/23 16874 -200.6.71.0/24 16874 -200.6.73.0/24 16874 -200.6.74.0/24 16874 -200.6.77.0/24 16874 -200.6.78.0/24 16874 -200.6.79.0/24 6193 -200.6.96.0/19 27659 -200.6.128.0/22 52694 -200.6.132.0/23 264314 -200.6.136.0/21 263262 -200.6.144.0/21 27745 -200.6.152.0/21 8100 -200.6.160.0/19 13489 -200.6.192.0/18 14754 -200.7.0.0/22 262657 -200.7.4.0/24 52234 -200.7.5.0/24 52305 -200.7.6.0/23 27678 -200.7.8.0/22 61922 -200.7.12.0/23 264339 -200.7.14.0/24 28033 -200.7.15.0/24 28034 -200.7.16.0/20 6471 -200.7.32.0/19 27734 -200.7.75.0/24 23031 -200.7.82.0/24 61468 -200.7.84.0/23 28000 -200.7.86.0/24 28001 -200.7.87.0/24 28000 -200.7.88.0/21 27800 -200.7.112.0/20 61923 -200.7.128.0/20 27770 -200.7.144.0/22 52397 -200.7.148.0/22 52398 -200.7.152.0/21 52399 -200.7.160.0/20 27828 -200.7.176.0/21 27953 -200.7.184.0/24 55259 -200.7.186.0/23 55259 -200.7.190.0/23 55259 -200.7.192.0/21 19114 -200.7.200.0/24 19114 -200.7.201.0/24 263792 -200.7.202.0/24 263792 -200.7.203.0/24 19114 -200.7.204.0/22 19114 -200.7.208.0/23 19114 -200.7.210.0/24 19114 -200.7.211.0/24 263738 -200.7.212.0/24 27947 -200.7.213.0/24 19114 -200.7.214.0/23 19114 -200.7.216.0/22 19114 -200.7.220.0/24 19114 -200.7.221.0/24 27947 -200.7.222.0/23 19114 -200.7.224.0/20 19114 -200.7.240.0/23 19114 -200.7.243.0/24 19114 -200.7.244.0/22 19114 -200.7.248.0/23 19114 -200.7.251.0/24 19114 -200.7.252.0/22 19114 -200.8.0.0/23 21826 -200.8.3.0/24 21826 -200.8.4.0/22 21826 -200.8.8.0/21 21826 -200.8.16.0/20 21826 -200.8.32.0/19 21826 -200.8.64.0/18 21826 -200.8.128.0/18 21826 -200.8.193.0/24 21826 -200.8.194.0/23 21826 -200.8.196.0/22 21826 -200.8.200.0/21 21826 -200.8.208.0/20 21826 -200.8.224.0/19 21826 -200.9.2.0/24 264291 -200.9.3.0/24 263773 -200.9.4.0/22 23201 -200.9.16.0/22 266224 -200.9.20.0/22 266190 -200.9.24.0/22 266215 -200.9.28.0/22 266205 -200.9.32.0/19 11830 -200.9.65.0/24 264304 -200.9.67.0/24 263859 -200.9.68.0/22 61921 -200.9.72.0/24 28085 -200.9.73.0/24 14259 -200.9.75.0/24 10671 -200.9.76.0/23 264347 -200.9.78.0/24 264313 -200.9.80.0/24 3549 -200.9.84.0/24 52888 -200.9.85.0/24 263850 -200.9.86.0/23 263892 -200.9.88.0/22 52689 -200.9.92.0/23 263550 -200.9.94.0/24 263804 -200.9.95.0/24 28571 -200.9.96.0/24 61468 -200.9.97.0/24 23140 -200.9.98.0/24 23140 -200.9.99.0/24 264671 -200.9.100.0/24 23140 -200.9.102.0/23 264029 -200.9.108.0/22 28059 -200.9.112.0/23 2635 -200.9.114.0/24 264620 -200.9.115.0/24 40143 -200.9.116.0/22 52325 -200.9.120.0/23 264655 -200.9.122.0/24 264670 -200.9.123.0/24 263923 -200.9.124.0/22 61929 -200.9.128.0/24 263249 -200.9.129.0/24 263889 -200.9.130.0/23 265212 -200.9.132.0/22 263416 -200.9.136.0/22 52541 -200.9.140.0/24 264061 -200.9.142.0/24 6429 -200.9.143.0/24 263890 -200.9.147.0/24 27875 -200.9.148.0/24 264044 -200.9.149.0/24 2715 -200.9.151.0/24 6429 -200.9.157.0/24 52376 -200.9.158.0/24 264653 -200.9.160.0/22 268323 -200.9.164.0/24 263953 -200.9.169.0/24 7303 -200.9.170.0/23 28393 -200.9.172.0/24 7155 -200.9.174.0/24 265165 -200.9.175.0/24 2715 -200.9.176.0/24 28027 -200.9.181.0/24 264623 -200.9.182.0/23 28396 -200.9.184.0/24 28396 -200.9.185.0/24 12684 -200.9.186.0/24 28253 -200.9.187.0/24 18840 -200.9.199.0/24 15256 -200.9.200.0/24 264037 -200.9.201.0/24 11340 -200.9.202.0/23 265193 -200.9.206.0/23 265235 -200.9.214.0/24 264040 -200.9.215.0/24 16629 -200.9.220.0/22 262458 -200.9.224.0/24 264019 -200.9.227.0/24 27907 -200.9.229.0/24 21756 -200.9.234.0/24 264664 -200.9.235.0/24 10834 -200.9.237.0/24 3549 -200.9.242.0/23 4387 -200.9.244.0/23 4387 -200.9.249.0/24 264083 -200.9.252.0/24 264080 -200.9.255.0/24 27933 -200.10.0.0/24 27853 -200.10.4.0/22 262396 -200.10.9.0/24 16990 -200.10.12.0/23 16990 -200.10.14.0/24 16990 -200.10.15.0/24 27936 -200.10.16.0/21 11340 -200.10.24.0/22 11340 -200.10.32.0/20 264850 -200.10.48.0/21 263259 -200.10.56.0/22 61930 -200.10.60.0/23 28001 -200.10.62.0/23 28000 -200.10.64.0/19 6147 -200.10.96.0/22 10834 -200.10.100.0/24 10834 -200.10.101.0/24 7049 -200.10.102.0/24 10834 -200.10.103.0/24 7049 -200.10.104.0/21 10834 -200.10.112.0/20 10834 -200.10.130.0/23 12252 -200.10.132.0/22 61934 -200.10.138.0/24 264087 -200.10.144.0/24 28043 -200.10.146.0/24 52740 -200.10.147.0/24 28027 -200.10.148.0/24 27947 -200.10.149.0/24 28027 -200.10.150.0/23 28027 -200.10.152.0/24 10292 -200.10.153.0/24 264661 -200.10.154.0/24 263710 -200.10.155.0/24 209 -200.10.156.0/23 264690 -200.10.158.0/24 52315 -200.10.159.0/24 4230 -200.10.161.0/24 10753 -200.10.164.0/24 264648 -200.10.166.0/24 11269 -200.10.167.0/24 64113 -200.10.168.0/22 64113 -200.10.172.0/24 64113 -200.10.173.0/24 263231 -200.10.174.0/23 264718 -200.10.177.0/24 263779 -200.10.178.0/23 1251 -200.10.180.0/23 264727 -200.10.182.0/24 27952 -200.10.183.0/24 265149 -200.10.184.0/24 6471 -200.10.185.0/24 265179 -200.10.186.0/24 10481 -200.10.187.0/24 265218 -200.10.188.0/24 6147 -200.10.189.0/24 265202 -200.10.191.0/24 264650 -200.10.192.0/23 265073 -200.10.196.0/24 262266 -200.10.199.0/24 27949 -200.10.200.0/24 20173 -200.10.201.0/24 7303 -200.10.202.0/24 3597 -200.10.204.0/24 16814 -200.10.205.0/24 27999 -200.10.206.0/24 265236 -200.10.209.0/24 198949 -200.10.210.0/24 265502 -200.10.221.0/24 6471 -200.10.224.0/24 7004 -200.10.225.0/24 7418 -200.10.226.0/24 7418 -200.10.227.0/24 265284 -200.10.228.0/22 27733 -200.10.233.0/24 13679 -200.10.234.0/24 16471 -200.10.236.0/23 16471 -200.10.239.0/24 265273 -200.10.243.0/24 21603 -200.10.244.0/24 11172 -200.10.245.0/24 265325 -200.10.247.0/24 11519 -200.10.248.0/24 11519 -200.10.251.0/24 15208 -200.10.252.0/23 15208 -200.10.255.0/24 3549 -200.11.0.0/21 2715 -200.11.8.0/21 52547 -200.11.16.0/23 28248 -200.11.30.0/24 14754 -200.11.31.0/24 28074 -200.11.34.0/23 12252 -200.11.40.0/21 19429 -200.11.48.0/20 6147 -200.11.64.0/20 6471 -200.11.80.0/21 6471 -200.11.88.0/22 6471 -200.11.92.0/23 6471 -200.11.94.0/24 27925 -200.11.95.0/24 6471 -200.11.96.0/23 6471 -200.11.99.0/24 6471 -200.11.100.0/22 6471 -200.11.112.0/21 13316 -200.11.128.0/17 8048 -200.12.0.0/20 61928 -200.12.17.0/24 6471 -200.12.18.0/24 7004 -200.12.19.0/24 14259 -200.12.20.0/24 18941 -200.12.22.0/24 18941 -200.12.23.0/24 7004 -200.12.24.0/24 14259 -200.12.25.0/24 6471 -200.12.26.0/24 7004 -200.12.27.0/24 6429 -200.12.28.0/22 264780 -200.12.36.0/23 6487 -200.12.38.0/24 6487 -200.12.41.0/24 6487 -200.12.44.0/23 6487 -200.12.46.0/24 6487 -200.12.56.0/24 6487 -200.12.64.0/21 28524 -200.12.72.0/21 7080 -200.12.80.0/20 7080 -200.12.96.0/19 7080 -200.12.130.0/24 10753 -200.12.131.0/24 265362 -200.12.133.0/24 27875 -200.12.134.0/23 27875 -200.12.136.0/23 27875 -200.12.138.0/24 27875 -200.12.140.0/23 27874 -200.12.146.0/24 52227 -200.12.157.0/24 265353 -200.12.158.0/23 3968 -200.12.160.0/22 3968 -200.12.166.0/24 262920 -200.12.169.0/24 61468 -200.12.171.0/24 6 -200.12.176.0/21 11237 -200.12.184.0/22 11237 -200.12.188.0/23 11237 -200.12.192.0/24 52293 -200.12.194.0/23 52248 -200.12.196.0/23 52274 -200.12.199.0/24 52274 -200.12.200.0/21 27691 -200.12.208.0/23 27796 -200.12.210.0/24 27796 -200.12.211.0/24 27860 -200.12.212.0/22 27796 -200.12.216.0/21 27822 -200.12.224.0/23 20299 -200.12.226.0/24 27773 -200.12.227.0/24 52262 -200.12.229.0/24 27773 -200.12.230.0/24 27773 -200.12.231.0/24 20299 -200.12.232.0/24 27773 -200.12.234.0/24 27773 -200.12.237.0/24 27773 -200.12.238.0/23 3790 -200.12.240.0/21 27789 -200.12.248.0/21 263242 -200.13.0.0/21 11340 -200.13.8.0/21 262464 -200.13.16.0/20 19332 -200.13.34.0/24 20173 -200.13.38.0/23 13591 -200.13.40.0/24 28475 -200.13.41.0/24 11664 -200.13.42.0/23 52275 -200.13.44.0/22 52296 -200.13.49.0/24 8151 -200.13.50.0/23 8151 -200.13.52.0/22 8151 -200.13.56.0/21 8151 -200.13.64.0/20 24199 -200.13.89.0/24 21603 -200.13.90.0/23 21603 -200.13.92.0/22 21603 -200.13.98.0/23 28382 -200.13.100.0/23 28382 -200.13.103.0/24 28382 -200.13.104.0/23 28382 -200.13.106.0/24 28382 -200.13.110.0/24 28382 -200.13.111.0/24 11172 -200.13.115.0/24 17249 -200.13.116.0/23 17249 -200.13.120.0/22 17249 -200.13.124.0/23 17249 -200.13.132.0/22 52287 -200.13.136.0/21 27806 -200.13.144.0/21 27725 -200.13.152.0/21 6568 -200.13.160.0/24 26617 -200.13.161.0/24 27773 -200.13.162.0/24 23383 -200.13.163.0/24 17086 -200.13.164.0/22 23383 -200.13.168.0/22 27773 -200.13.172.0/23 27773 -200.13.174.0/24 27773 -200.13.175.0/24 23383 -200.13.176.0/24 23383 -200.13.178.0/24 23383 -200.13.180.0/24 27773 -200.13.183.0/24 23383 -200.13.184.0/23 27773 -200.13.186.0/24 27773 -200.13.187.0/24 23383 -200.13.188.0/24 23383 -200.13.189.0/24 27773 -200.13.190.0/24 27773 -200.13.192.0/19 18747 -200.13.224.0/19 13489 -200.14.11.0/24 23148 -200.14.18.0/23 28547 -200.14.32.0/23 11751 -200.14.34.0/24 3549 -200.14.36.0/24 263748 -200.14.40.0/22 27810 -200.14.44.0/24 20940 -200.14.45.0/24 27810 -200.14.46.0/24 20940 -200.14.47.0/24 27810 -200.14.48.0/21 27725 -200.14.64.0/24 16629 -200.14.66.0/24 263816 -200.14.67.0/24 264670 -200.14.68.0/22 11340 -200.14.79.0/24 262148 -200.14.80.0/24 10778 -200.14.82.0/24 52353 -200.14.83.0/24 262157 -200.14.84.0/22 10753 -200.14.89.0/24 27735 -200.14.96.0/23 16629 -200.14.104.0/23 27746 -200.14.106.0/24 27766 -200.14.107.0/24 27746 -200.14.108.0/23 7004 -200.14.111.0/24 52315 -200.14.112.0/23 10299 -200.14.114.0/23 14259 -200.14.116.0/24 52314 -200.14.119.0/24 27726 -200.14.130.0/24 22975 -200.14.132.0/23 22975 -200.14.135.0/24 22975 -200.14.137.0/24 6471 -200.14.138.0/24 14259 -200.14.140.0/24 22975 -200.14.155.0/24 6471 -200.14.192.0/24 6429 -200.14.193.0/24 18941 -200.14.203.0/24 263173 -200.14.204.0/24 6535 -200.14.205.0/24 14080 -200.14.206.0/23 14080 -200.14.208.0/23 6429 -200.14.211.0/24 6535 -200.14.215.0/24 6429 -200.14.216.0/22 6429 -200.14.226.0/23 263173 -200.14.228.0/23 6535 -200.14.230.0/24 6535 -200.14.231.0/24 14080 -200.14.232.0/24 264714 -200.14.233.0/24 14080 -200.14.234.0/23 14080 -200.14.236.0/22 14080 -200.14.240.0/22 12252 -200.14.245.0/24 263173 -200.14.246.0/23 263173 -200.14.248.0/22 263173 -200.14.252.0/24 263173 -200.14.253.0/24 14080 -200.14.254.0/23 263173 -200.15.0.0/23 2914 -200.15.2.0/24 2914 -200.15.3.0/24 6220 -200.15.4.0/22 2914 -200.15.8.0/21 2914 -200.15.16.0/20 2914 -200.15.32.0/19 2914 -200.15.64.0/18 2914 -200.15.128.0/17 2914 -200.16.0.0/21 12252 -200.16.16.0/20 27790 -200.16.32.0/19 6495 -200.16.66.0/23 262152 -200.16.68.0/22 52320 -200.16.76.0/23 11014 -200.16.78.0/24 7303 -200.16.79.0/24 52334 -200.16.80.0/23 10671 -200.16.82.0/24 10671 -200.16.86.0/24 10834 -200.16.89.0/24 52318 -200.16.90.0/23 262178 -200.16.92.0/24 262173 -200.16.93.0/24 262162 -200.16.94.0/24 52345 -200.16.95.0/24 262176 -200.16.96.0/20 676 -200.16.112.0/24 52306 -200.16.113.0/24 27678 -200.16.116.0/24 27674 -200.16.117.0/24 26605 -200.16.118.0/23 26605 -200.16.128.0/21 10834 -200.16.136.0/22 10834 -200.16.140.0/23 10834 -200.16.142.0/24 10834 -200.16.143.0/24 7049 -200.16.144.0/24 7049 -200.16.145.0/24 10834 -200.16.146.0/24 10834 -200.16.147.0/24 7049 -200.16.148.0/22 10834 -200.16.152.0/21 10834 -200.16.160.0/20 10834 -200.16.176.0/21 10834 -200.16.184.0/22 10834 -200.16.188.0/23 10834 -200.16.190.0/24 10834 -200.16.191.0/24 7049 -200.16.192.0/19 10834 -200.16.224.0/20 10834 -200.16.240.0/22 10834 -200.16.244.0/23 10834 -200.16.246.0/24 7049 -200.16.247.0/24 10834 -200.16.248.0/21 10834 -200.17.0.0/20 1916 -200.17.16.0/20 28571 -200.17.32.0/19 1916 -200.17.64.0/20 1916 -200.17.80.0/20 2716 -200.17.96.0/20 10881 -200.17.112.0/20 1916 -200.17.128.0/19 1916 -200.17.160.0/20 2716 -200.17.176.0/20 1916 -200.17.192.0/18 10881 -200.18.0.0/20 10715 -200.18.16.0/22 61807 -200.18.32.0/20 268118 -200.18.48.0/22 1251 -200.18.52.0/24 1251 -200.18.53.0/24 28571 -200.18.54.0/23 1251 -200.18.56.0/21 1251 -200.18.64.0/20 2716 -200.18.80.0/20 1916 -200.18.96.0/21 52888 -200.18.104.0/23 52888 -200.18.106.0/23 28571 -200.18.108.0/23 28571 -200.18.110.0/23 1251 -200.18.112.0/20 53145 -200.18.128.0/19 1916 -200.18.160.0/20 1916 -200.18.192.0/19 1916 -200.18.240.0/20 1251 -200.19.0.0/21 2716 -200.19.32.0/20 1916 -200.19.48.0/20 28596 -200.19.64.0/20 10881 -200.19.80.0/21 52992 -200.19.88.0/21 1251 -200.19.96.0/20 10715 -200.19.112.0/20 1916 -200.19.128.0/18 1916 -200.19.192.0/19 11802 -200.19.224.0/22 1251 -200.19.228.0/23 1251 -200.19.230.0/23 52888 -200.19.232.0/21 52992 -200.19.240.0/20 2716 -200.20.0.0/20 2715 -200.20.16.0/21 2715 -200.20.24.0/22 2715 -200.20.28.0/23 2715 -200.20.30.0/24 28159 -200.20.31.0/24 2715 -200.20.32.0/20 28159 -200.20.48.0/20 2715 -200.20.64.0/18 2715 -200.20.128.0/17 2715 -200.21.0.0/16 3816 -200.23.0.0/24 397213 -200.23.1.0/24 28498 -200.23.5.0/24 8151 -200.23.6.0/24 8151 -200.23.7.0/24 18734 -200.23.8.0/23 27673 -200.23.10.0/24 27673 -200.23.18.0/23 11172 -200.23.23.0/24 28475 -200.23.24.0/22 8151 -200.23.28.0/24 8151 -200.23.29.0/24 22882 -200.23.30.0/24 28496 -200.23.31.0/24 264895 -200.23.32.0/24 28438 -200.23.34.0/23 8151 -200.23.36.0/23 19259 -200.23.38.0/24 8151 -200.23.39.0/24 11172 -200.23.40.0/22 6503 -200.23.47.0/24 18734 -200.23.51.0/24 13999 -200.23.52.0/23 32098 -200.23.55.0/24 32098 -200.23.57.0/24 8151 -200.23.59.0/24 6503 -200.23.60.0/24 18592 -200.23.64.0/24 8151 -200.23.65.0/24 262247 -200.23.68.0/22 61931 -200.23.72.0/23 6503 -200.23.76.0/23 26620 -200.23.78.0/23 28378 -200.23.80.0/23 28378 -200.23.84.0/24 264695 -200.23.87.0/24 6503 -200.23.90.0/24 11172 -200.23.91.0/24 18846 -200.23.92.0/23 19259 -200.23.94.0/24 6503 -200.23.96.0/24 7408 -200.23.100.0/23 7408 -200.23.102.0/24 8151 -200.23.103.0/24 7408 -200.23.107.0/24 13579 -200.23.108.0/23 28375 -200.23.110.0/24 28390 -200.23.112.0/24 28390 -200.23.113.0/24 28493 -200.23.114.0/24 28414 -200.23.115.0/24 264693 -200.23.116.0/24 264958 -200.23.118.0/24 265449 -200.23.119.0/24 265392 -200.23.120.0/24 8151 -200.23.123.0/24 6503 -200.23.125.0/24 8151 -200.23.129.0/24 28396 -200.23.130.0/24 11172 -200.23.132.0/24 8151 -200.23.134.0/23 8151 -200.23.139.0/24 6342 -200.23.143.0/24 8151 -200.23.144.0/24 28425 -200.23.145.0/24 6342 -200.23.146.0/24 6342 -200.23.147.0/24 6503 -200.23.148.0/24 265071 -200.23.149.0/24 6342 -200.23.150.0/24 11172 -200.23.152.0/23 265064 -200.23.157.0/24 11172 -200.23.158.0/24 11172 -200.23.160.0/22 8151 -200.23.166.0/24 13579 -200.23.168.0/24 8151 -200.23.169.0/24 32098 -200.23.170.0/23 8151 -200.23.176.0/24 8151 -200.23.180.0/22 61932 -200.23.184.0/24 28390 -200.23.186.0/23 8151 -200.23.188.0/24 28414 -200.23.189.0/24 264979 -200.23.192.0/22 22011 -200.23.196.0/23 22011 -200.23.198.0/23 28438 -200.23.200.0/23 28438 -200.23.206.0/24 7049 -200.23.207.0/24 264792 -200.23.212.0/23 28475 -200.23.214.0/24 28475 -200.23.217.0/24 11172 -200.23.218.0/23 28475 -200.23.220.0/23 28475 -200.23.222.0/23 8151 -200.23.224.0/20 262711 -200.23.240.0/23 8151 -200.23.242.0/24 8151 -200.23.243.0/24 6332 -200.23.244.0/22 8151 -200.23.248.0/22 6332 -200.23.252.0/24 6342 -200.23.253.0/24 8151 -200.23.254.0/24 52754 -200.23.255.0/24 265433 -200.24.0.0/23 18678 -200.24.2.0/24 18678 -200.24.4.0/24 18678 -200.24.8.0/24 5722 -200.24.10.0/23 263876 -200.24.12.0/23 262256 -200.24.14.0/24 262256 -200.24.16.0/20 10753 -200.24.32.0/19 13489 -200.24.64.0/21 61768 -200.24.72.0/21 61766 -200.24.80.0/21 61790 -200.24.88.0/22 61877 -200.24.96.0/22 11581 -200.24.100.0/23 11581 -200.24.102.0/24 11581 -200.24.103.0/24 264646 -200.24.104.0/24 19429 -200.24.105.0/24 11581 -200.24.106.0/23 11581 -200.24.108.0/23 11581 -200.24.110.0/24 11581 -200.24.111.0/24 264646 -200.24.112.0/21 11581 -200.24.120.0/24 19429 -200.24.122.0/24 11581 -200.24.123.0/24 264646 -200.24.124.0/24 264646 -200.24.125.0/24 11581 -200.24.126.0/23 11581 -200.24.128.0/19 27765 -200.24.160.0/19 12252 -200.24.192.0/19 19114 -200.24.224.0/20 22860 -200.24.240.0/21 27934 -200.24.248.0/21 52381 -200.25.0.0/22 7195 -200.25.4.0/23 7195 -200.25.8.0/22 7195 -200.25.12.0/24 7195 -200.25.20.0/22 7195 -200.25.24.0/22 7195 -200.25.30.0/23 7195 -200.25.48.0/23 7195 -200.25.52.0/23 7195 -200.25.58.0/23 7195 -200.25.60.0/23 7195 -200.25.128.0/18 14522 -200.25.192.0/19 23487 -200.25.224.0/22 27763 -200.25.228.0/23 27763 -200.25.243.0/24 27763 -200.25.254.0/23 27763 -200.26.0.0/18 10834 -200.26.64.0/19 10834 -200.26.96.0/21 10834 -200.26.104.0/22 10834 -200.26.108.0/23 10834 -200.26.110.0/24 10834 -200.26.111.0/24 5648 -200.26.112.0/20 10834 -200.26.128.0/19 14080 -200.26.160.0/21 52281 -200.26.168.0/21 27887 -200.26.176.0/21 23201 -200.26.184.0/22 262170 -200.26.188.0/24 262170 -200.26.189.0/24 18747 -200.26.191.0/24 262170 -200.26.192.0/22 11081 -200.26.196.0/24 52301 -200.26.197.0/24 11081 -200.26.198.0/23 11081 -200.26.200.0/21 11081 -200.26.208.0/20 11081 -200.26.232.0/22 269907 -200.27.0.0/21 6429 -200.27.8.0/23 6429 -200.27.10.0/24 6429 -200.27.11.0/24 19244 -200.27.12.0/22 6429 -200.27.16.0/20 6429 -200.27.32.0/19 6429 -200.27.64.0/21 6429 -200.27.72.0/23 264724 -200.27.74.0/23 6429 -200.27.76.0/22 6429 -200.27.80.0/20 6429 -200.27.96.0/20 6429 -200.27.112.0/23 6429 -200.27.114.0/24 6429 -200.27.115.0/24 27678 -200.27.116.0/22 6429 -200.27.120.0/23 6429 -200.27.122.0/24 6429 -200.27.123.0/24 26604 -200.27.124.0/22 6429 -200.27.128.0/24 6535 -200.27.129.0/24 6429 -200.27.130.0/23 6429 -200.27.132.0/22 6429 -200.27.136.0/21 6429 -200.27.144.0/21 6429 -200.27.152.0/22 6429 -200.27.156.0/24 25718 -200.27.157.0/24 6429 -200.27.158.0/23 6429 -200.27.160.0/22 6429 -200.27.164.0/23 6429 -200.27.166.0/24 27735 -200.27.167.0/24 6429 -200.27.168.0/21 6429 -200.27.176.0/20 6429 -200.27.192.0/18 6429 -200.28.0.0/21 7418 -200.28.8.0/22 7418 -200.28.12.0/23 7418 -200.28.14.0/24 7004 -200.28.15.0/24 7418 -200.28.16.0/20 7418 -200.28.32.0/19 7418 -200.28.64.0/20 7418 -200.28.80.0/23 7418 -200.28.82.0/24 16629 -200.28.83.0/24 7418 -200.28.84.0/22 7418 -200.28.88.0/21 7418 -200.28.96.0/19 7418 -200.28.128.0/19 7418 -200.28.160.0/20 7418 -200.28.176.0/21 16629 -200.28.184.0/21 7418 -200.28.192.0/18 7418 -200.29.0.0/22 10778 -200.29.4.0/23 10778 -200.29.6.0/24 10778 -200.29.7.0/24 4995 -200.29.8.0/22 4995 -200.29.12.0/22 10778 -200.29.16.0/21 10778 -200.29.24.0/24 4995 -200.29.25.0/24 10778 -200.29.26.0/24 6429 -200.29.27.0/24 10778 -200.29.28.0/24 4995 -200.29.29.0/24 10778 -200.29.30.0/23 10778 -200.29.32.0/24 7004 -200.29.34.0/24 7004 -200.29.35.0/24 7418 -200.29.36.0/22 7418 -200.29.40.0/24 7004 -200.29.42.0/24 7004 -200.29.43.0/24 7418 -200.29.44.0/24 7004 -200.29.46.0/23 7418 -200.29.48.0/20 7418 -200.29.64.0/21 10778 -200.29.72.0/22 10778 -200.29.76.0/24 4995 -200.29.77.0/24 10778 -200.29.78.0/23 10778 -200.29.80.0/23 10778 -200.29.82.0/24 4995 -200.29.83.0/24 10778 -200.29.84.0/22 10778 -200.29.88.0/23 6429 -200.29.90.0/23 10778 -200.29.92.0/22 10778 -200.29.96.0/19 10299 -200.29.128.0/19 6429 -200.29.160.0/21 6429 -200.29.168.0/22 6429 -200.29.172.0/24 6429 -200.29.173.0/24 263173 -200.29.174.0/23 6429 -200.29.176.0/21 6429 -200.29.184.0/22 6429 -200.29.188.0/23 6429 -200.29.190.0/24 6429 -200.29.191.0/24 263173 -200.29.192.0/21 6429 -200.29.200.0/21 6535 -200.29.208.0/20 6429 -200.29.224.0/21 14708 -200.29.232.0/21 27941 -200.29.240.0/22 263174 -200.29.244.0/24 263174 -200.29.245.0/24 22724 -200.29.247.0/24 263174 -200.29.248.0/21 27997 -200.30.0.0/21 5511 -200.30.8.0/22 5511 -200.30.12.0/23 5511 -200.30.14.0/24 51964 -200.30.15.0/24 5511 -200.30.16.0/20 5511 -200.30.32.0/22 6505 -200.30.36.0/22 5511 -200.30.40.0/21 5511 -200.30.48.0/21 5511 -200.30.56.0/22 5511 -200.30.60.0/22 6505 -200.30.64.0/20 13489 -200.30.80.0/21 13489 -200.30.88.0/23 13489 -200.30.90.0/24 52464 -200.30.91.0/24 13489 -200.30.92.0/22 13489 -200.30.96.0/19 3816 -200.30.128.0/24 27742 -200.30.129.0/24 23383 -200.30.130.0/24 27742 -200.30.131.0/24 27773 -200.30.132.0/24 27742 -200.30.133.0/24 20299 -200.30.134.0/24 17086 -200.30.135.0/24 23383 -200.30.136.0/23 23383 -200.30.138.0/24 27773 -200.30.139.0/24 20299 -200.30.140.0/22 20299 -200.30.144.0/22 20299 -200.30.148.0/23 20299 -200.30.150.0/24 23243 -200.30.152.0/23 27773 -200.30.154.0/24 20299 -200.30.155.0/24 23383 -200.30.156.0/24 23383 -200.30.157.0/24 20299 -200.30.159.0/24 20299 -200.30.160.0/24 20299 -200.30.163.0/24 23383 -200.30.164.0/24 23383 -200.30.165.0/24 27742 -200.30.166.0/23 20299 -200.30.168.0/24 23383 -200.30.170.0/24 27742 -200.30.171.0/24 27773 -200.30.172.0/24 20299 -200.30.174.0/23 20299 -200.30.176.0/24 20299 -200.30.177.0/24 27742 -200.30.178.0/24 23383 -200.30.179.0/24 27773 -200.30.181.0/24 20299 -200.30.182.0/24 27742 -200.30.185.0/24 23383 -200.30.186.0/24 20299 -200.30.188.0/23 20299 -200.30.190.0/23 52262 -200.30.192.0/18 22047 -200.31.0.0/23 3549 -200.31.2.0/24 3549 -200.31.3.0/24 263736 -200.31.4.0/22 3549 -200.31.8.0/21 3549 -200.31.16.0/23 3549 -200.31.18.0/24 22698 -200.31.19.0/24 3549 -200.31.20.0/22 3549 -200.31.24.0/21 3549 -200.31.32.0/19 6429 -200.31.64.0/19 27975 -200.31.96.0/19 19180 -200.31.128.0/20 6306 -200.31.160.0/19 16906 -200.31.192.0/19 13489 -200.31.224.0/20 10964 -200.31.240.0/20 52419 -200.32.0.0/19 10481 -200.32.32.0/19 10834 -200.32.64.0/24 3549 -200.32.65.0/24 13591 -200.32.66.0/23 13591 -200.32.68.0/22 3549 -200.32.72.0/23 3549 -200.32.74.0/24 3549 -200.32.76.0/23 3549 -200.32.79.0/24 3549 -200.32.80.0/20 3549 -200.32.96.0/20 3549 -200.32.112.0/22 3549 -200.32.116.0/24 3549 -200.32.117.0/24 28075 -200.32.118.0/23 3549 -200.32.120.0/21 3549 -200.32.128.0/19 10834 -200.32.160.0/19 6429 -200.32.192.0/18 10269 -200.33.0.0/23 55002 -200.33.3.0/24 28457 -200.33.4.0/24 7049 -200.33.6.0/24 11519 -200.33.7.0/24 8151 -200.33.8.0/24 8151 -200.33.9.0/24 18734 -200.33.10.0/23 18734 -200.33.12.0/23 18734 -200.33.14.0/24 8151 -200.33.18.0/24 32098 -200.33.20.0/24 28399 -200.33.25.0/24 8151 -200.33.26.0/24 8151 -200.33.28.0/24 61453 -200.33.29.0/24 13579 -200.33.30.0/24 8151 -200.33.31.0/24 21692 -200.33.32.0/24 8151 -200.33.34.0/24 8151 -200.33.40.0/24 28395 -200.33.42.0/24 6342 -200.33.48.0/24 18532 -200.33.49.0/24 6503 -200.33.51.0/24 264662 -200.33.54.0/24 13591 -200.33.60.0/24 8151 -200.33.61.0/24 22908 -200.33.65.0/24 8151 -200.33.67.0/24 61465 -200.33.70.0/23 6503 -200.33.72.0/24 8151 -200.33.74.0/24 13440 -200.33.79.0/24 22884 -200.33.80.0/24 22894 -200.33.81.0/24 264995 -200.33.82.0/24 52275 -200.33.83.0/24 265431 -200.33.84.0/24 13440 -200.33.85.0/24 263831 -200.33.86.0/23 28492 -200.33.88.0/21 61927 -200.33.96.0/24 61585 -200.33.97.0/24 21603 -200.33.98.0/24 21603 -200.33.99.0/24 11172 -200.33.100.0/22 21603 -200.33.108.0/24 265012 -200.33.109.0/24 27673 -200.33.111.0/24 28504 -200.33.112.0/24 8151 -200.33.113.0/24 264747 -200.33.114.0/24 28371 -200.33.115.0/24 265101 -200.33.116.0/24 22884 -200.33.117.0/24 52740 -200.33.119.0/24 32098 -200.33.120.0/24 32098 -200.33.125.0/24 11556 -200.33.126.0/23 265456 -200.33.128.0/21 263263 -200.33.136.0/23 8151 -200.33.140.0/22 6332 -200.33.144.0/21 8151 -200.33.152.0/21 262398 -200.33.160.0/24 13591 -200.33.161.0/24 18734 -200.33.162.0/24 13591 -200.33.163.0/24 18734 -200.33.164.0/22 61947 -200.33.171.0/24 8151 -200.33.174.0/24 265450 -200.33.175.0/24 266212 -200.33.176.0/24 28539 -200.33.178.0/24 14178 -200.33.186.0/24 7974 -200.33.188.0/22 7399 -200.33.192.0/24 28545 -200.33.193.0/24 6503 -200.33.194.0/23 6503 -200.33.196.0/22 6503 -200.33.200.0/23 11519 -200.33.202.0/24 22908 -200.33.203.0/24 264745 -200.33.208.0/20 6503 -200.33.224.0/21 6503 -200.33.232.0/24 8151 -200.33.240.0/23 28414 -200.33.242.0/23 18734 -200.33.244.0/24 28414 -200.33.245.0/24 18734 -200.33.246.0/23 6503 -200.33.249.0/24 28492 -200.34.0.0/24 61457 -200.34.1.0/24 6342 -200.34.2.0/23 6342 -200.34.4.0/22 6342 -200.34.8.0/21 6342 -200.34.16.0/22 6342 -200.34.22.0/24 22894 -200.34.23.0/24 6342 -200.34.32.0/20 8151 -200.34.48.0/23 26595 -200.34.51.0/24 26595 -200.34.64.0/23 6503 -200.34.66.0/24 28506 -200.34.67.0/24 6503 -200.34.68.0/24 13579 -200.34.69.0/24 6503 -200.34.70.0/23 6503 -200.34.72.0/22 6503 -200.34.76.0/24 6503 -200.34.78.0/23 6503 -200.34.80.0/22 6503 -200.34.84.0/23 6503 -200.34.86.0/24 6503 -200.34.87.0/24 28509 -200.34.88.0/21 6503 -200.34.96.0/20 10479 -200.34.112.0/20 7120 -200.34.128.0/24 8151 -200.34.141.0/24 28506 -200.34.142.0/24 28545 -200.34.152.0/22 10479 -200.34.157.0/24 7908 -200.34.159.0/24 6342 -200.34.160.0/22 262715 -200.34.164.0/22 8140 -200.34.168.0/24 11172 -200.34.169.0/24 22884 -200.34.170.0/24 7399 -200.34.171.0/24 61463 -200.34.173.0/24 265502 -200.34.174.0/24 8151 -200.34.175.0/24 21692 -200.34.176.0/20 10479 -200.34.194.0/24 8151 -200.34.195.0/24 6503 -200.34.200.0/24 6342 -200.34.201.0/24 19551 -200.34.202.0/23 6342 -200.34.204.0/24 28539 -200.34.205.0/24 265508 -200.34.206.0/24 28421 -200.34.208.0/23 6503 -200.34.210.0/24 28406 -200.34.215.0/24 263722 -200.34.216.0/22 61689 -200.34.220.0/24 28448 -200.34.221.0/24 28469 -200.34.222.0/24 22884 -200.34.224.0/19 53137 -200.35.0.0/19 8048 -200.35.32.0/19 27695 -200.35.64.0/18 6306 -200.35.128.0/23 28089 -200.35.130.0/23 8048 -200.35.132.0/24 28089 -200.35.133.0/24 8048 -200.35.134.0/23 8048 -200.35.136.0/22 8048 -200.35.140.0/23 8048 -200.35.142.0/23 21980 -200.35.152.0/24 8001 -200.35.153.0/24 20473 -200.35.154.0/23 8001 -200.35.156.0/22 14259 -200.35.160.0/23 26617 -200.35.162.0/24 26617 -200.35.163.0/24 23243 -200.35.164.0/24 23243 -200.35.165.0/24 23383 -200.35.167.0/24 26617 -200.35.168.0/21 26617 -200.35.176.0/22 26617 -200.35.180.0/23 26617 -200.35.182.0/24 26617 -200.35.183.0/24 27742 -200.35.184.0/22 26617 -200.35.188.0/23 26617 -200.35.190.0/24 26617 -200.35.191.0/24 27742 -200.35.192.0/24 22313 -200.35.194.0/23 22313 -200.35.196.0/22 22313 -200.35.200.0/21 22313 -200.35.208.0/20 22313 -200.35.224.0/19 22313 -200.36.0.0/19 10847 -200.36.32.0/21 8151 -200.36.40.0/22 8151 -200.36.44.0/24 8151 -200.36.45.0/24 7399 -200.36.46.0/23 8151 -200.36.48.0/20 8151 -200.36.96.0/21 6503 -200.36.104.0/22 6503 -200.36.108.0/23 6503 -200.36.110.0/24 28545 -200.36.111.0/24 6503 -200.36.112.0/24 28509 -200.36.113.0/24 6503 -200.36.114.0/23 6503 -200.36.117.0/24 6503 -200.36.119.0/24 6503 -200.36.120.0/21 6503 -200.36.160.0/19 7438 -200.36.224.0/19 11136 -200.37.0.0/16 6147 -200.38.0.0/24 6332 -200.38.1.0/24 8151 -200.38.2.0/23 6332 -200.38.4.0/22 6332 -200.38.8.0/22 6332 -200.38.12.0/24 8151 -200.38.13.0/24 6332 -200.38.14.0/23 6332 -200.38.16.0/22 6332 -200.38.20.0/24 6332 -200.38.21.0/24 8151 -200.38.22.0/24 8151 -200.38.23.0/24 6332 -200.38.24.0/21 6332 -200.38.33.0/24 14249 -200.38.34.0/23 14249 -200.38.36.0/24 14249 -200.38.38.0/24 14249 -200.38.41.0/24 14249 -200.38.44.0/24 14249 -200.38.46.0/24 14249 -200.38.50.0/24 14249 -200.38.55.0/24 14249 -200.38.56.0/24 14249 -200.38.58.0/23 14249 -200.38.60.0/23 14249 -200.38.62.0/24 14249 -200.38.64.0/19 6503 -200.38.96.0/23 28517 -200.38.98.0/24 28517 -200.38.100.0/23 28517 -200.38.102.0/24 16689 -200.38.103.0/24 28517 -200.38.105.0/24 28517 -200.38.108.0/24 16689 -200.38.109.0/24 28517 -200.38.110.0/24 28517 -200.38.111.0/24 16689 -200.38.112.0/24 16689 -200.38.113.0/24 28517 -200.38.115.0/24 28517 -200.38.116.0/24 28517 -200.38.117.0/24 17072 -200.38.119.0/24 28517 -200.38.120.0/22 28517 -200.38.124.0/24 28517 -200.38.126.0/24 16689 -200.38.127.0/24 28517 -200.38.128.0/19 8151 -200.38.160.0/19 13579 -200.38.200.0/21 8151 -200.38.208.0/20 8151 -200.38.224.0/23 6503 -200.38.227.0/24 6503 -200.38.228.0/22 6503 -200.38.232.0/21 6503 -200.38.240.0/20 6503 -200.39.0.0/19 7438 -200.39.64.0/19 53046 -200.39.96.0/19 19332 -200.39.160.0/19 2549 -200.39.200.0/21 11172 -200.39.224.0/20 6503 -200.39.240.0/21 6503 -200.39.248.0/23 6503 -200.39.251.0/24 6503 -200.39.252.0/22 6503 -200.40.0.0/16 6057 -200.41.0.0/22 3549 -200.41.4.0/24 27941 -200.41.5.0/24 3549 -200.41.6.0/23 3549 -200.41.8.0/24 3356 -200.41.9.0/24 3549 -200.41.10.0/23 3549 -200.41.12.0/22 3549 -200.41.16.0/22 3549 -200.41.20.0/24 3549 -200.41.21.0/24 52444 -200.41.22.0/23 3549 -200.41.24.0/21 3549 -200.41.32.0/23 3549 -200.41.34.0/23 263230 -200.41.36.0/23 263230 -200.41.38.0/23 3549 -200.41.40.0/21 3549 -200.41.48.0/20 3549 -200.41.64.0/20 3549 -200.41.80.0/22 3549 -200.41.84.0/23 22411 -200.41.86.0/24 22411 -200.41.87.0/24 3549 -200.41.88.0/22 3549 -200.41.92.0/24 3549 -200.41.94.0/23 3549 -200.41.96.0/22 3549 -200.41.100.0/24 22411 -200.41.101.0/24 3549 -200.41.102.0/23 3549 -200.41.104.0/21 3549 -200.41.112.0/22 3549 -200.41.116.0/24 3549 -200.41.117.0/24 263771 -200.41.118.0/23 3549 -200.41.120.0/24 3549 -200.41.121.0/24 52444 -200.41.122.0/23 3549 -200.41.124.0/22 3549 -200.41.128.0/19 10834 -200.41.160.0/22 10834 -200.41.164.0/23 10834 -200.41.166.0/24 10834 -200.41.167.0/24 10277 -200.41.168.0/21 10834 -200.41.176.0/20 10834 -200.41.192.0/20 10834 -200.41.208.0/22 10834 -200.41.212.0/23 10834 -200.41.214.0/24 7049 -200.41.215.0/24 10834 -200.41.216.0/21 10834 -200.41.224.0/19 10834 -200.42.0.0/21 10481 -200.42.8.0/22 10481 -200.42.12.0/24 10481 -200.42.13.0/24 28052 -200.42.14.0/23 10481 -200.42.16.0/20 10481 -200.42.32.0/19 10481 -200.42.64.0/18 10481 -200.42.128.0/19 10481 -200.42.160.0/21 7418 -200.42.168.0/22 7418 -200.42.172.0/22 15311 -200.42.176.0/22 15311 -200.42.180.0/22 7418 -200.42.184.0/22 7418 -200.42.189.0/24 7418 -200.42.190.0/23 15311 -200.42.192.0/21 12066 -200.42.200.0/23 12066 -200.42.202.0/24 28118 -200.42.203.0/24 12066 -200.42.204.0/24 12066 -200.42.205.0/24 28118 -200.42.206.0/23 12066 -200.42.208.0/22 12066 -200.42.212.0/23 12066 -200.42.214.0/24 28118 -200.42.215.0/24 12066 -200.42.216.0/21 12066 -200.42.224.0/22 12066 -200.42.228.0/24 12066 -200.42.229.0/24 28118 -200.42.230.0/23 28118 -200.42.232.0/21 28118 -200.42.240.0/22 28118 -200.42.244.0/23 28118 -200.42.246.0/23 12066 -200.42.248.0/21 12066 -200.43.0.0/21 7303 -200.43.8.0/22 7303 -200.43.12.0/24 27976 -200.43.13.0/24 7303 -200.43.14.0/23 7303 -200.43.16.0/20 7303 -200.43.32.0/20 7303 -200.43.48.0/24 27827 -200.43.49.0/24 7303 -200.43.50.0/23 7303 -200.43.52.0/23 7303 -200.43.54.0/24 7303 -200.43.55.0/24 264691 -200.43.56.0/21 7303 -200.43.64.0/20 7303 -200.43.80.0/24 7303 -200.43.81.0/24 262231 -200.43.82.0/23 7303 -200.43.84.0/22 7303 -200.43.88.0/21 7303 -200.43.96.0/21 7303 -200.43.104.0/24 7303 -200.43.105.0/24 52279 -200.43.106.0/23 52279 -200.43.108.0/22 7303 -200.43.112.0/24 7303 -200.43.113.0/24 27787 -200.43.114.0/23 7303 -200.43.116.0/22 7303 -200.43.120.0/21 7303 -200.43.128.0/21 7303 -200.43.136.0/22 7303 -200.43.140.0/24 264691 -200.43.141.0/24 7303 -200.43.142.0/23 7303 -200.43.152.0/21 7303 -200.43.160.0/19 7303 -200.43.192.0/20 7303 -200.43.216.0/21 7303 -200.43.224.0/19 7303 -200.44.0.0/17 8048 -200.44.144.0/20 8048 -200.44.164.0/22 8048 -200.44.168.0/21 8048 -200.44.176.0/20 8048 -200.44.192.0/18 8048 -200.45.0.0/18 7303 -200.45.64.0/19 7303 -200.45.96.0/20 7303 -200.45.112.0/21 7303 -200.45.120.0/24 52279 -200.45.121.0/24 27976 -200.45.122.0/23 7303 -200.45.124.0/22 7303 -200.45.128.0/17 7303 -200.46.0.0/24 21599 -200.46.1.0/24 18809 -200.46.2.0/24 21599 -200.46.3.0/24 18809 -200.46.4.0/22 18809 -200.46.8.0/22 21599 -200.46.12.0/24 28112 -200.46.13.0/24 21599 -200.46.14.0/24 21599 -200.46.15.0/24 18809 -200.46.16.0/24 18809 -200.46.17.0/24 21599 -200.46.18.0/23 21599 -200.46.20.0/22 21599 -200.46.24.0/21 21599 -200.46.32.0/22 21599 -200.46.36.0/24 23360 -200.46.37.0/24 21599 -200.46.38.0/23 21599 -200.46.40.0/21 21599 -200.46.48.0/22 21599 -200.46.52.0/23 21599 -200.46.54.0/24 21599 -200.46.55.0/24 18809 -200.46.56.0/22 21599 -200.46.60.0/23 21599 -200.46.62.0/24 18809 -200.46.63.0/24 21599 -200.46.64.0/23 21599 -200.46.66.0/23 18809 -200.46.68.0/23 18809 -200.46.70.0/24 18809 -200.46.71.0/24 21599 -200.46.72.0/24 18809 -200.46.73.0/24 21599 -200.46.74.0/23 21599 -200.46.76.0/22 21599 -200.46.80.0/24 21599 -200.46.81.0/24 28061 -200.46.82.0/24 18809 -200.46.83.0/24 21599 -200.46.84.0/22 21599 -200.46.88.0/21 21599 -200.46.96.0/21 21599 -200.46.104.0/24 18809 -200.46.105.0/24 21599 -200.46.106.0/24 18809 -200.46.107.0/24 21599 -200.46.108.0/23 21599 -200.46.110.0/24 21599 -200.46.111.0/24 18809 -200.46.112.0/22 21599 -200.46.116.0/24 21599 -200.46.117.0/24 18809 -200.46.118.0/23 21599 -200.46.120.0/21 21599 -200.46.128.0/23 21599 -200.46.130.0/24 21599 -200.46.131.0/24 27749 -200.46.132.0/24 21599 -200.46.133.0/24 18809 -200.46.134.0/23 21599 -200.46.136.0/24 18809 -200.46.137.0/24 21599 -200.46.138.0/23 21599 -200.46.140.0/23 21599 -200.46.142.0/23 18809 -200.46.144.0/24 21599 -200.46.145.0/24 22010 -200.46.146.0/23 21599 -200.46.148.0/24 18809 -200.46.149.0/24 21599 -200.46.150.0/23 21599 -200.46.152.0/22 21599 -200.46.156.0/23 21599 -200.46.158.0/24 22227 -200.46.159.0/24 21599 -200.46.160.0/22 21599 -200.46.164.0/23 21599 -200.46.166.0/24 21599 -200.46.167.0/24 28005 -200.46.168.0/23 21599 -200.46.170.0/24 21599 -200.46.171.0/24 18809 -200.46.172.0/24 21599 -200.46.173.0/24 18809 -200.46.174.0/23 21599 -200.46.176.0/20 21599 -200.46.192.0/21 21599 -200.46.200.0/24 21599 -200.46.201.0/24 28062 -200.46.202.0/24 18809 -200.46.203.0/24 21599 -200.46.204.0/24 21599 -200.46.205.0/24 18809 -200.46.206.0/23 21599 -200.46.208.0/22 21599 -200.46.212.0/23 21599 -200.46.214.0/24 21599 -200.46.215.0/24 18809 -200.46.216.0/21 21599 -200.46.224.0/22 21599 -200.46.228.0/24 21599 -200.46.229.0/24 27760 -200.46.230.0/23 21599 -200.46.232.0/22 18809 -200.46.236.0/24 27783 -200.46.237.0/24 21599 -200.46.238.0/23 21599 -200.46.240.0/24 27679 -200.46.241.0/24 21599 -200.46.242.0/24 27802 -200.46.243.0/24 21599 -200.46.244.0/23 21599 -200.46.246.0/24 27788 -200.46.247.0/24 21599 -200.46.248.0/21 21599 -200.47.0.0/24 7908 -200.47.2.0/24 7908 -200.47.3.0/24 14339 -200.47.4.0/24 7908 -200.47.6.0/23 7908 -200.47.8.0/21 7908 -200.47.16.0/21 7908 -200.47.24.0/24 10964 -200.47.26.0/23 7908 -200.47.29.0/24 7908 -200.47.30.0/23 7908 -200.47.32.0/24 52427 -200.47.33.0/24 7908 -200.47.34.0/24 7908 -200.47.37.0/24 7049 -200.47.40.0/22 7908 -200.47.45.0/24 11514 -200.47.46.0/24 11514 -200.47.47.0/24 7908 -200.47.49.0/24 7908 -200.47.50.0/23 7908 -200.47.52.0/22 7908 -200.47.56.0/21 7908 -200.47.64.0/21 7908 -200.47.74.0/24 7908 -200.47.78.0/23 7908 -200.47.80.0/22 7908 -200.47.85.0/24 7908 -200.47.86.0/23 7908 -200.47.90.0/23 7908 -200.47.92.0/22 7908 -200.47.96.0/24 7908 -200.47.97.0/24 10964 -200.47.98.0/24 7908 -200.47.99.0/24 10964 -200.47.100.0/22 7908 -200.47.104.0/21 7908 -200.47.112.0/22 7908 -200.47.116.0/23 7908 -200.47.118.0/24 27961 -200.47.119.0/24 7908 -200.47.121.0/24 7908 -200.47.122.0/23 7908 -200.47.124.0/22 7908 -200.47.128.0/21 7908 -200.47.140.0/22 7908 -200.47.144.0/23 7908 -200.47.148.0/24 7908 -200.47.150.0/23 7908 -200.47.156.0/23 14187 -200.47.158.0/24 14187 -200.47.159.0/24 7908 -200.47.160.0/22 7908 -200.47.165.0/24 7908 -200.47.167.0/24 7908 -200.47.168.0/24 7908 -200.47.170.0/23 14187 -200.47.172.0/23 14187 -200.47.175.0/24 14187 -200.47.176.0/23 14187 -200.47.178.0/23 7908 -200.47.180.0/22 7908 -200.47.184.0/24 7908 -200.47.188.0/22 7908 -200.47.192.0/20 7908 -200.47.212.0/24 7908 -200.47.216.0/23 14187 -200.47.219.0/24 14187 -200.47.222.0/23 7908 -200.47.224.0/22 7908 -200.47.232.0/21 7908 -200.47.240.0/20 7908 -200.48.0.0/16 6147 -200.49.0.0/24 3549 -200.49.1.0/24 52444 -200.49.2.0/23 3549 -200.49.4.0/22 3549 -200.49.8.0/21 3549 -200.49.16.0/21 52435 -200.49.32.0/21 28226 -200.49.40.0/23 28226 -200.49.42.0/24 28226 -200.49.43.0/24 25933 -200.49.44.0/22 28226 -200.49.48.0/23 28226 -200.49.50.0/24 25933 -200.49.51.0/24 28226 -200.49.52.0/24 28226 -200.49.53.0/24 25933 -200.49.54.0/23 28226 -200.49.56.0/21 28226 -200.49.64.0/23 19037 -200.49.66.0/24 19037 -200.49.67.0/24 11664 -200.49.68.0/22 19037 -200.49.72.0/23 19037 -200.49.74.0/24 19037 -200.49.75.0/24 11664 -200.49.76.0/24 19037 -200.49.77.0/24 11664 -200.49.78.0/24 11664 -200.49.79.0/24 19037 -200.49.80.0/24 19037 -200.49.81.0/24 11664 -200.49.82.0/24 11664 -200.49.83.0/24 19037 -200.49.84.0/22 19037 -200.49.88.0/21 19037 -200.49.96.0/20 26608 -200.49.112.0/21 27950 -200.49.120.0/21 27960 -200.49.128.0/21 10318 -200.49.136.0/21 10481 -200.49.144.0/20 10481 -200.49.160.0/19 23243 -200.49.192.0/19 11315 -200.49.224.0/20 14845 -200.49.240.0/21 3549 -200.49.248.0/23 19244 -200.49.250.0/24 19244 -200.49.251.0/24 396966 -200.49.252.0/23 19244 -200.49.254.0/24 396966 -200.49.255.0/24 19244 -200.50.0.0/20 11992 -200.50.16.0/22 11992 -200.50.20.0/23 11992 -200.50.22.0/24 14974 -200.50.23.0/24 11992 -200.50.24.0/21 11992 -200.50.32.0/19 7418 -200.50.66.0/24 14813 -200.50.67.0/24 11139 -200.50.68.0/23 11139 -200.50.70.0/24 14813 -200.50.71.0/24 46650 -200.50.72.0/24 46650 -200.50.75.0/24 14813 -200.50.76.0/23 11139 -200.50.78.0/23 14813 -200.50.83.0/24 14813 -200.50.84.0/23 11139 -200.50.86.0/23 14813 -200.50.89.0/24 22933 -200.50.90.0/24 22933 -200.50.91.0/24 14813 -200.50.92.0/24 14813 -200.50.93.0/24 11139 -200.50.94.0/24 14813 -200.50.95.0/24 11139 -200.50.96.0/22 15311 -200.50.100.0/22 16629 -200.50.104.0/22 7418 -200.50.108.0/22 15311 -200.50.112.0/21 7418 -200.50.120.0/22 7418 -200.50.124.0/22 15311 -200.50.128.0/23 12180 -200.50.130.0/23 27229 -200.50.132.0/22 27229 -200.50.136.0/21 27229 -200.50.144.0/21 14259 -200.50.160.0/22 10697 -200.50.164.0/23 10697 -200.50.166.0/24 264797 -200.50.167.0/24 263766 -200.50.168.0/24 10697 -200.50.169.0/24 264797 -200.50.170.0/23 264797 -200.50.172.0/24 264797 -200.50.173.0/24 10697 -200.50.174.0/23 264797 -200.50.176.0/22 264797 -200.50.180.0/23 264797 -200.50.182.0/23 52507 -200.50.184.0/22 264797 -200.50.188.0/23 264797 -200.50.190.0/24 263766 -200.50.224.0/21 30361 -200.50.236.0/24 27958 -200.50.237.0/24 19114 -200.50.240.0/21 27964 -200.50.248.0/21 61510 -200.51.0.0/17 10834 -200.51.128.0/19 10834 -200.51.160.0/21 10834 -200.51.168.0/22 10834 -200.51.172.0/24 16471 -200.51.173.0/24 10834 -200.51.174.0/23 10834 -200.51.176.0/20 10834 -200.51.192.0/20 10834 -200.51.208.0/21 22927 -200.51.216.0/21 10834 -200.51.224.0/21 10834 -200.51.232.0/22 10834 -200.51.236.0/22 22927 -200.51.240.0/21 10834 -200.51.248.0/22 10834 -200.51.252.0/22 22927 -200.52.0.0/20 6503 -200.52.16.0/20 262659 -200.52.32.0/20 6503 -200.52.49.0/24 6503 -200.52.50.0/23 6503 -200.52.52.0/22 6503 -200.52.56.0/21 6503 -200.52.64.0/19 14178 -200.52.96.0/24 3073 -200.52.97.0/24 30284 -200.52.98.0/24 30284 -200.52.103.0/24 3073 -200.52.106.0/23 3073 -200.52.108.0/24 3073 -200.52.109.0/24 6503 -200.52.112.0/20 11172 -200.52.128.0/20 16531 -200.52.144.0/20 27932 -200.52.160.0/19 13999 -200.52.192.0/20 13999 -200.52.208.0/21 13999 -200.52.216.0/23 13999 -200.52.218.0/24 13999 -200.52.220.0/22 13999 -200.52.240.0/20 3968 -200.53.4.0/22 270263 -200.53.8.0/21 52977 -200.53.16.0/20 262391 -200.53.32.0/19 19332 -200.53.96.0/20 19332 -200.53.112.0/20 13591 -200.53.128.0/19 22011 -200.53.160.0/20 22011 -200.53.176.0/21 22011 -200.53.184.0/22 22011 -200.53.188.0/24 22011 -200.53.190.0/24 22011 -200.53.192.0/19 262807 -200.53.224.0/20 8151 -200.53.240.0/20 16960 -200.54.0.0/18 16629 -200.54.64.0/19 16629 -200.54.96.0/21 16629 -200.54.104.0/22 16629 -200.54.108.0/24 52310 -200.54.109.0/24 16629 -200.54.110.0/23 16629 -200.54.112.0/23 16629 -200.54.114.0/24 11340 -200.54.115.0/24 52230 -200.54.116.0/22 16629 -200.54.120.0/24 27880 -200.54.121.0/24 16629 -200.54.122.0/24 16629 -200.54.123.0/24 27680 -200.54.124.0/22 16629 -200.54.128.0/20 7418 -200.54.144.0/23 15311 -200.54.146.0/24 15311 -200.54.147.0/24 7418 -200.54.148.0/22 16629 -200.54.152.0/24 16629 -200.54.153.0/24 15311 -200.54.154.0/23 15311 -200.54.156.0/22 15311 -200.54.160.0/20 15311 -200.54.176.0/22 15311 -200.54.180.0/24 16629 -200.54.181.0/24 15311 -200.54.182.0/23 15311 -200.54.184.0/22 15311 -200.54.188.0/24 15311 -200.54.189.0/24 16629 -200.54.190.0/23 16629 -200.54.192.0/24 16629 -200.54.193.0/24 15311 -200.54.194.0/24 15311 -200.54.195.0/24 16629 -200.54.196.0/23 15311 -200.54.198.0/24 16629 -200.54.199.0/24 15311 -200.54.200.0/21 16629 -200.54.208.0/20 16629 -200.54.224.0/19 16629 -200.55.0.0/20 3549 -200.55.16.0/21 3549 -200.55.24.0/23 3549 -200.55.26.0/24 20207 -200.55.27.0/24 3549 -200.55.28.0/24 20207 -200.55.29.0/24 3549 -200.55.30.0/23 3549 -200.55.32.0/19 3549 -200.55.64.0/18 10481 -200.55.128.0/18 27725 -200.55.192.0/21 14259 -200.55.200.0/23 14259 -200.55.202.0/24 14259 -200.55.203.0/24 27732 -200.55.204.0/22 14259 -200.55.208.0/20 14259 -200.55.224.0/20 27668 -200.55.240.0/21 27988 -200.55.248.0/21 262154 -200.56.0.0/20 6503 -200.56.16.0/23 6503 -200.56.18.0/24 6503 -200.56.20.0/22 6503 -200.56.24.0/21 6503 -200.56.32.0/22 6503 -200.56.36.0/23 6503 -200.56.40.0/21 6503 -200.56.48.0/20 6503 -200.56.64.0/23 6503 -200.56.68.0/22 6503 -200.56.72.0/21 6503 -200.56.80.0/21 6503 -200.56.88.0/24 6503 -200.56.90.0/23 6503 -200.56.92.0/22 6503 -200.56.96.0/23 6332 -200.56.98.0/24 6332 -200.56.99.0/24 8151 -200.56.100.0/23 6332 -200.56.102.0/24 6332 -200.56.103.0/24 8151 -200.56.104.0/21 8151 -200.56.112.0/22 11172 -200.56.116.0/24 11172 -200.56.117.0/24 265504 -200.56.118.0/23 11172 -200.56.120.0/21 11172 -200.56.128.0/20 13999 -200.56.144.0/23 13999 -200.56.146.0/24 13999 -200.56.152.0/21 13999 -200.56.160.0/19 13999 -200.56.192.0/22 16960 -200.56.196.0/23 16960 -200.56.198.0/24 16960 -200.56.200.0/21 16960 -200.56.208.0/20 16960 -200.56.224.0/20 19332 -200.56.240.0/20 13591 -200.57.0.0/23 18734 -200.57.2.0/24 18734 -200.57.3.0/24 13440 -200.57.4.0/22 18734 -200.57.8.0/21 18734 -200.57.16.0/20 18734 -200.57.32.0/20 22011 -200.57.48.0/20 8151 -200.57.64.0/20 13591 -200.57.80.0/20 22011 -200.57.96.0/19 6503 -200.57.128.0/18 19373 -200.57.192.0/23 6503 -200.57.195.0/24 6503 -200.57.196.0/22 6503 -200.57.200.0/21 6503 -200.57.208.0/20 6503 -200.57.224.0/24 6503 -200.57.226.0/23 6503 -200.57.228.0/22 6503 -200.57.232.0/21 6503 -200.57.240.0/20 6503 -200.58.0.0/18 14551 -200.58.64.0/19 27839 -200.58.96.0/19 27823 -200.58.128.0/19 19422 -200.58.160.0/19 25620 -200.58.192.0/19 13489 -200.58.224.0/20 13489 -200.58.240.0/21 265721 -200.59.0.0/20 12150 -200.59.16.0/21 262149 -200.59.24.0/21 28088 -200.59.32.0/24 7049 -200.59.33.0/24 16732 -200.59.34.0/23 16732 -200.59.36.0/22 16732 -200.59.40.0/23 16732 -200.59.42.0/23 7049 -200.59.44.0/23 16732 -200.59.46.0/24 7049 -200.59.47.0/24 16732 -200.59.48.0/23 7049 -200.59.50.0/24 16732 -200.59.51.0/24 7049 -200.59.52.0/23 7049 -200.59.54.0/24 7049 -200.59.55.0/24 16732 -200.59.56.0/22 7049 -200.59.60.0/24 7049 -200.59.63.0/24 7049 -200.59.64.0/18 10617 -200.59.128.0/23 19037 -200.59.130.0/24 19037 -200.59.131.0/24 19315 -200.59.132.0/24 19037 -200.59.133.0/24 11664 -200.59.134.0/23 19037 -200.59.136.0/22 11664 -200.59.140.0/24 11664 -200.59.141.0/24 19037 -200.59.142.0/23 11664 -200.59.144.0/22 11664 -200.59.148.0/23 19037 -200.59.150.0/24 11664 -200.59.151.0/24 19037 -200.59.152.0/24 19037 -200.59.153.0/24 11498 -200.59.154.0/23 11664 -200.59.156.0/22 11664 -200.59.160.0/24 22699 -200.59.161.0/24 11664 -200.59.162.0/23 11664 -200.59.164.0/22 19037 -200.59.168.0/24 11664 -200.59.169.0/24 19037 -200.59.170.0/24 19037 -200.59.171.0/24 11664 -200.59.172.0/22 19037 -200.59.176.0/23 27994 -200.59.179.0/24 27994 -200.59.184.0/24 27717 -200.59.185.0/24 264778 -200.59.186.0/23 264778 -200.59.188.0/22 264778 -200.59.192.0/23 7049 -200.59.194.0/24 7049 -200.59.196.0/22 7049 -200.59.200.0/22 16732 -200.59.204.0/23 7049 -200.59.206.0/24 7049 -200.59.207.0/24 16732 -200.59.224.0/19 27751 -200.60.0.0/17 6147 -200.60.128.0/18 6147 -200.60.192.0/19 6147 -200.60.240.0/20 6147 -200.61.0.0/22 11193 -200.61.5.0/24 11193 -200.61.6.0/23 11193 -200.61.8.0/22 11193 -200.61.12.0/22 7049 -200.61.16.0/23 7049 -200.61.20.0/23 27997 -200.61.22.0/24 27997 -200.61.23.0/24 7049 -200.61.25.0/24 7049 -200.61.26.0/23 7049 -200.61.28.0/22 7049 -200.61.32.0/23 19037 -200.61.34.0/23 11664 -200.61.36.0/24 19037 -200.61.37.0/24 11664 -200.61.38.0/24 20305 -200.61.39.0/24 19037 -200.61.40.0/23 11664 -200.61.42.0/23 19037 -200.61.44.0/23 19037 -200.61.46.0/24 27754 -200.61.47.0/24 19037 -200.61.48.0/24 19037 -200.61.49.0/24 11664 -200.61.50.0/23 19037 -200.61.52.0/24 19037 -200.61.53.0/24 11664 -200.61.54.0/23 11664 -200.61.56.0/24 19037 -200.61.57.0/24 11664 -200.61.58.0/24 19037 -200.61.59.0/24 11664 -200.61.60.0/23 11664 -200.61.62.0/23 19037 -200.61.64.0/24 15034 -200.61.66.0/23 15034 -200.61.68.0/24 15034 -200.61.70.0/24 15034 -200.61.75.0/24 15034 -200.61.96.0/23 15034 -200.61.128.0/20 18747 -200.61.144.0/24 18747 -200.61.145.0/24 52270 -200.61.146.0/23 18747 -200.61.148.0/22 18747 -200.61.152.0/21 18747 -200.61.160.0/20 16814 -200.61.176.0/21 16814 -200.61.184.0/24 52394 -200.61.185.0/24 16814 -200.61.186.0/23 16814 -200.61.188.0/22 16814 -200.61.192.0/21 21590 -200.61.200.0/22 21590 -200.61.204.0/22 7303 -200.61.208.0/20 7303 -200.61.224.0/20 27727 -200.61.240.0/21 12150 -200.61.248.0/22 52424 -200.61.254.0/23 262174 -200.62.0.0/22 18747 -200.62.4.0/24 18747 -200.62.5.0/24 27928 -200.62.6.0/23 18747 -200.62.8.0/23 52468 -200.62.10.0/23 18747 -200.62.12.0/22 18747 -200.62.16.0/20 18747 -200.62.32.0/19 18747 -200.62.64.0/18 14754 -200.62.128.0/17 12252 -200.63.0.0/19 26608 -200.63.32.0/21 28015 -200.63.40.0/21 52284 -200.63.48.0/21 27969 -200.63.56.0/21 27925 -200.63.64.0/20 52431 -200.63.80.0/21 52431 -200.63.92.0/24 7303 -200.63.94.0/23 52431 -200.63.96.0/21 265831 -200.63.104.0/22 263238 -200.63.108.0/22 265804 -200.63.112.0/24 27971 -200.63.113.0/24 7 -200.63.114.0/23 27971 -200.63.116.0/24 27971 -200.63.117.0/24 7 -200.63.118.0/23 27971 -200.63.120.0/21 27976 -200.63.128.0/23 22927 -200.63.130.0/23 10834 -200.63.132.0/22 10834 -200.63.136.0/21 10834 -200.63.144.0/21 10834 -200.63.152.0/23 10834 -200.63.154.0/24 10834 -200.63.155.0/24 22927 -200.63.156.0/22 22927 -200.63.160.0/21 22927 -200.63.168.0/21 10834 -200.63.176.0/20 10834 -200.63.192.0/18 14522 -200.64.0.0/17 8151 -200.64.192.0/18 8151 -200.65.0.0/17 8151 -200.66.0.0/21 13999 -200.66.8.0/22 13999 -200.66.12.0/23 13999 -200.66.16.0/20 13999 -200.66.32.0/19 13999 -200.66.64.0/19 14178 -200.66.96.0/20 22566 -200.66.112.0/20 262812 -200.66.128.0/17 8151 -200.67.0.0/16 8151 -200.68.0.0/24 16629 -200.68.1.0/24 15311 -200.68.2.0/23 16629 -200.68.4.0/22 16629 -200.68.8.0/21 16629 -200.68.16.0/20 16629 -200.68.32.0/20 16629 -200.68.48.0/21 16629 -200.68.56.0/23 16629 -200.68.58.0/24 15311 -200.68.59.0/24 16629 -200.68.60.0/22 16629 -200.68.64.0/19 16814 -200.68.96.0/20 16814 -200.68.112.0/23 16814 -200.68.114.0/24 265807 -200.68.115.0/24 16814 -200.68.116.0/22 16814 -200.68.120.0/21 16814 -200.68.128.0/24 28403 -200.68.129.0/24 8151 -200.68.130.0/23 8151 -200.68.132.0/22 28403 -200.68.136.0/22 28403 -200.68.140.0/24 8151 -200.68.141.0/24 28403 -200.68.142.0/23 28403 -200.68.146.0/24 28403 -200.68.148.0/22 28403 -200.68.158.0/23 8151 -200.68.175.0/24 28403 -200.68.176.0/22 28403 -200.68.180.0/23 28403 -200.68.182.0/24 28403 -200.68.228.0/22 11315 -200.68.232.0/22 11315 -200.68.240.0/21 11315 -200.68.248.0/23 11315 -200.68.255.0/24 11315 -200.69.0.0/23 10986 -200.69.2.0/24 10986 -200.69.4.0/22 10986 -200.69.8.0/23 10986 -200.69.10.0/23 27898 -200.69.12.0/22 10986 -200.69.16.0/20 10986 -200.69.32.0/20 10617 -200.69.48.0/21 10617 -200.69.60.0/22 10617 -200.69.64.0/19 262186 -200.69.96.0/21 19429 -200.69.104.0/22 19429 -200.69.108.0/23 11581 -200.69.110.0/23 19429 -200.69.112.0/21 19429 -200.69.120.0/22 19429 -200.69.124.0/24 21578 -200.69.125.0/24 19429 -200.69.126.0/24 19429 -200.69.127.0/24 22368 -200.69.128.0/23 19037 -200.69.130.0/24 21756 -200.69.131.0/24 19037 -200.69.132.0/23 11664 -200.69.134.0/23 19037 -200.69.136.0/21 19037 -200.69.144.0/21 19037 -200.69.152.0/22 19037 -200.69.156.0/23 19037 -200.69.158.0/24 19037 -200.69.159.0/24 28065 -200.69.160.0/19 14522 -200.69.192.0/18 16814 -200.70.0.0/17 10834 -200.70.128.0/18 22927 -200.70.192.0/18 10834 -200.71.0.0/24 20002 -200.71.1.0/24 11664 -200.71.2.0/23 20002 -200.71.4.0/22 20002 -200.71.8.0/21 20002 -200.71.16.0/22 20002 -200.71.20.0/24 20002 -200.71.21.0/24 11664 -200.71.22.0/23 20002 -200.71.24.0/22 20002 -200.71.28.0/23 20002 -200.71.30.0/24 20002 -200.71.31.0/24 11664 -200.71.32.0/19 10620 -200.71.64.0/22 266191 -200.71.68.0/22 266206 -200.71.72.0/22 266216 -200.71.76.0/22 61599 -200.71.88.0/21 27996 -200.71.112.0/22 263771 -200.71.116.0/22 61787 -200.71.120.0/22 61765 -200.71.124.0/22 263821 -200.71.136.0/21 6306 -200.71.144.0/20 6306 -200.71.160.0/19 6306 -200.71.192.0/19 20015 -200.71.224.0/20 7303 -200.71.240.0/21 27717 -200.71.248.0/21 27694 -200.72.0.0/17 6471 -200.72.128.0/20 6471 -200.72.144.0/21 6471 -200.72.152.0/22 6471 -200.72.156.0/23 6471 -200.72.158.0/24 27651 -200.72.159.0/24 6471 -200.72.160.0/20 6471 -200.72.176.0/21 6471 -200.72.184.0/23 6471 -200.72.186.0/24 27651 -200.72.187.0/24 6471 -200.72.188.0/22 6471 -200.72.192.0/20 6471 -200.72.208.0/23 6471 -200.72.210.0/24 6471 -200.72.211.0/24 27925 -200.72.212.0/22 6471 -200.72.216.0/21 6471 -200.72.224.0/22 6471 -200.72.228.0/24 6471 -200.72.229.0/24 27651 -200.72.230.0/23 6471 -200.72.232.0/21 6471 -200.72.240.0/20 6471 -200.73.0.0/21 18747 -200.73.8.0/23 18747 -200.73.10.0/24 27965 -200.73.11.0/24 18747 -200.73.12.0/22 18747 -200.73.16.0/20 18747 -200.73.32.0/19 18747 -200.73.64.0/19 18747 -200.73.96.0/21 27882 -200.73.104.0/21 27900 -200.73.112.0/21 263237 -200.73.120.0/21 27901 -200.73.128.0/18 10481 -200.73.192.0/21 26194 -200.73.208.0/21 27979 -200.73.224.0/19 22047 -200.74.0.0/17 22047 -200.74.128.0/19 14080 -200.74.160.0/23 14259 -200.74.162.0/24 14259 -200.74.163.0/24 18822 -200.74.164.0/22 14259 -200.74.168.0/24 18822 -200.74.169.0/24 14259 -200.74.170.0/23 14259 -200.74.172.0/24 14259 -200.74.173.0/24 18822 -200.74.174.0/24 18822 -200.74.175.0/24 14259 -200.74.176.0/23 18822 -200.74.178.0/24 14259 -200.74.179.0/24 18822 -200.74.180.0/22 18822 -200.74.184.0/24 18822 -200.74.185.0/24 14259 -200.74.186.0/23 18822 -200.74.188.0/22 14259 -200.74.192.0/19 21980 -200.74.224.0/20 21980 -200.74.240.0/21 27956 -200.74.248.0/21 28050 -200.75.0.0/19 14259 -200.75.32.0/19 19429 -200.75.64.0/19 13489 -200.75.96.0/19 21826 -200.75.128.0/19 11562 -200.75.160.0/20 22541 -200.75.176.0/21 61939 -200.75.184.0/21 52390 -200.75.192.0/18 18809 -200.76.0.0/18 11172 -200.76.66.0/23 28469 -200.76.68.0/23 28469 -200.76.70.0/24 17072 -200.76.77.0/24 17072 -200.76.79.0/24 22884 -200.76.80.0/20 7438 -200.76.96.0/19 16531 -200.76.128.0/18 11172 -200.76.192.0/21 6503 -200.76.200.0/22 6503 -200.76.204.0/23 6503 -200.76.206.0/24 6503 -200.76.208.0/20 6503 -200.76.224.0/22 6332 -200.76.228.0/22 8151 -200.76.232.0/21 6332 -200.76.240.0/20 6332 -200.77.0.0/19 13999 -200.77.32.0/20 13999 -200.77.48.0/22 13999 -200.77.52.0/22 28541 -200.77.56.0/22 13999 -200.77.60.0/22 28541 -200.77.64.0/19 13999 -200.77.96.0/20 13999 -200.77.112.0/21 13999 -200.77.120.0/22 13999 -200.77.124.0/22 27672 -200.77.128.0/22 27672 -200.77.132.0/23 27672 -200.77.134.0/24 27672 -200.77.135.0/24 13999 -200.77.136.0/23 13999 -200.77.138.0/23 27672 -200.77.140.0/22 27672 -200.77.144.0/24 27672 -200.77.145.0/24 13999 -200.77.146.0/24 27672 -200.77.147.0/24 13999 -200.77.148.0/22 27672 -200.77.152.0/22 11172 -200.77.156.0/22 27672 -200.77.160.0/24 22908 -200.77.161.0/24 18734 -200.77.162.0/24 28548 -200.77.163.0/24 18734 -200.77.164.0/22 18734 -200.77.169.0/24 18734 -200.77.170.0/23 18734 -200.77.174.0/23 18734 -200.77.176.0/22 61782 -200.77.180.0/22 61767 -200.77.184.0/22 61444 -200.77.188.0/23 28006 -200.77.193.0/24 28554 -200.77.194.0/23 28554 -200.77.200.0/24 18734 -200.77.208.0/20 28554 -200.77.224.0/20 22908 -200.77.240.0/20 13591 -200.78.0.0/18 8151 -200.78.72.0/21 8151 -200.78.80.0/20 8151 -200.78.96.0/19 8151 -200.78.128.0/21 6503 -200.78.136.0/23 6503 -200.78.138.0/24 28506 -200.78.139.0/24 6503 -200.78.140.0/22 6503 -200.78.144.0/20 6503 -200.78.160.0/21 6503 -200.78.168.0/24 28506 -200.78.169.0/24 6503 -200.78.170.0/23 6503 -200.78.172.0/22 6503 -200.78.176.0/20 6503 -200.78.192.0/23 6503 -200.78.194.0/24 6503 -200.78.196.0/22 6503 -200.78.200.0/22 6503 -200.78.206.0/23 6503 -200.78.208.0/20 6503 -200.78.224.0/19 6503 -200.79.0.0/18 8151 -200.79.64.0/19 8151 -200.79.96.0/20 8151 -200.79.112.0/22 8151 -200.79.118.0/23 8151 -200.79.120.0/21 8151 -200.79.128.0/21 8151 -200.79.136.0/22 6332 -200.79.140.0/22 8151 -200.79.144.0/20 8151 -200.79.160.0/21 11172 -200.79.168.0/24 11172 -200.79.172.0/24 14178 -200.79.174.0/24 11172 -200.79.176.0/21 28381 -200.79.184.0/21 262444 -200.79.192.0/19 28509 -200.79.224.0/19 28512 -200.80.0.0/21 18747 -200.80.8.0/23 262216 -200.80.10.0/23 18747 -200.80.12.0/22 18747 -200.80.16.0/22 18747 -200.80.20.0/23 18747 -200.80.22.0/23 262216 -200.80.24.0/21 18747 -200.80.32.0/21 18747 -200.80.40.0/22 18747 -200.80.44.0/24 52270 -200.80.45.0/24 18747 -200.80.46.0/23 18747 -200.80.48.0/20 18747 -200.80.64.0/20 26608 -200.80.128.0/24 22678 -200.80.129.0/24 19037 -200.80.130.0/23 19037 -200.80.132.0/22 19037 -200.80.136.0/23 11664 -200.80.138.0/23 19037 -200.80.140.0/22 19037 -200.80.144.0/22 19037 -200.80.148.0/24 19037 -200.80.149.0/24 11664 -200.80.150.0/24 11664 -200.80.151.0/24 19037 -200.80.152.0/22 19037 -200.80.156.0/24 11571 -200.80.157.0/24 19037 -200.80.158.0/23 11664 -200.80.160.0/22 19037 -200.80.164.0/23 19037 -200.80.166.0/24 19037 -200.80.167.0/24 11664 -200.80.168.0/23 19037 -200.80.170.0/23 11664 -200.80.172.0/23 19037 -200.80.174.0/24 19037 -200.80.175.0/24 11664 -200.80.176.0/24 11664 -200.80.177.0/24 19037 -200.80.178.0/23 19037 -200.80.180.0/23 19037 -200.80.182.0/24 11664 -200.80.183.0/24 19037 -200.80.184.0/22 19037 -200.80.188.0/23 19037 -200.80.190.0/23 11664 -200.80.192.0/21 19037 -200.80.200.0/22 19037 -200.80.204.0/24 19037 -200.80.205.0/24 27711 -200.80.206.0/23 19037 -200.80.208.0/24 19037 -200.80.209.0/24 11664 -200.80.210.0/23 19037 -200.80.212.0/23 19037 -200.80.214.0/23 11664 -200.80.216.0/24 19037 -200.80.217.0/24 61443 -200.80.218.0/23 19037 -200.80.220.0/24 19037 -200.80.221.0/24 11664 -200.80.222.0/24 21756 -200.80.223.0/24 19037 -200.80.224.0/24 27754 -200.80.225.0/24 19037 -200.80.226.0/24 28065 -200.80.227.0/24 19037 -200.80.228.0/22 19037 -200.80.232.0/21 19037 -200.80.240.0/23 19037 -200.80.242.0/23 11664 -200.80.244.0/24 27754 -200.80.245.0/24 19037 -200.80.246.0/23 19037 -200.80.248.0/24 19037 -200.80.249.0/24 11664 -200.80.250.0/23 19037 -200.80.252.0/22 11664 -200.81.0.0/23 19037 -200.81.2.0/23 17401 -200.81.4.0/24 19037 -200.81.5.0/24 17401 -200.81.6.0/24 11664 -200.81.7.0/24 19037 -200.81.8.0/24 17401 -200.81.9.0/24 11664 -200.81.10.0/23 17401 -200.81.12.0/22 17401 -200.81.16.0/24 17401 -200.81.17.0/24 19037 -200.81.18.0/23 17401 -200.81.20.0/23 17401 -200.81.22.0/24 17401 -200.81.23.0/24 19037 -200.81.24.0/21 17401 -200.81.32.0/22 11315 -200.81.36.0/23 262175 -200.81.40.0/23 11315 -200.81.42.0/23 262175 -200.81.44.0/22 11315 -200.81.56.0/21 52258 -200.81.94.0/24 22080 -200.81.96.0/24 15034 -200.81.112.0/23 16921 -200.81.115.0/24 16921 -200.81.116.0/22 16921 -200.81.120.0/21 27813 -200.81.130.0/24 22185 -200.81.136.0/24 22185 -200.81.152.0/21 27851 -200.81.160.0/20 10617 -200.81.176.0/21 10617 -200.81.184.0/22 10617 -200.81.188.0/23 10617 -200.81.191.0/24 10617 -200.81.192.0/20 17401 -200.81.208.0/22 17401 -200.81.212.0/23 17401 -200.81.214.0/24 19037 -200.81.215.0/24 17401 -200.81.216.0/21 17401 -200.81.224.0/22 17401 -200.81.228.0/24 19037 -200.81.229.0/24 17401 -200.81.230.0/24 17401 -200.81.231.0/24 19037 -200.81.232.0/21 17401 -200.81.240.0/20 17401 -200.82.0.0/17 7303 -200.82.128.0/19 21826 -200.82.160.0/21 21826 -200.82.168.0/22 21826 -200.82.172.0/24 21826 -200.82.174.0/23 21826 -200.82.176.0/20 21826 -200.82.192.0/19 21826 -200.82.224.0/24 21826 -200.82.226.0/23 21826 -200.82.228.0/22 21826 -200.82.232.0/21 21826 -200.82.240.0/20 21826 -200.83.0.0/16 22047 -200.84.0.0/16 8048 -200.85.0.0/23 17079 -200.85.4.0/22 17079 -200.85.8.0/21 17079 -200.85.16.0/20 17079 -200.85.32.0/19 23201 -200.85.64.0/24 52358 -200.85.65.0/24 52386 -200.85.66.0/23 7908 -200.85.68.0/22 7908 -200.85.72.0/21 7908 -200.85.80.0/24 28006 -200.85.83.0/24 28006 -200.85.84.0/23 28006 -200.85.88.0/21 27953 -200.85.96.0/19 19889 -200.85.128.0/21 27714 -200.85.136.0/22 265708 -200.85.140.0/22 27714 -200.85.144.0/21 28024 -200.85.152.0/21 52270 -200.85.160.0/20 25607 -200.85.176.0/21 28009 -200.85.184.0/21 28037 -200.85.192.0/19 14117 -200.85.224.0/20 14187 -200.85.240.0/23 14187 -200.85.243.0/24 14187 -200.85.244.0/22 14187 -200.85.248.0/21 14187 -200.86.0.0/16 22047 -200.87.0.0/16 6568 -200.88.0.0/16 6400 -200.89.0.0/22 7908 -200.89.4.0/23 7908 -200.89.6.0/23 14187 -200.89.8.0/22 14187 -200.89.12.0/24 7908 -200.89.13.0/24 14187 -200.89.14.0/24 14187 -200.89.15.0/24 7908 -200.89.16.0/21 7908 -200.89.24.0/22 7908 -200.89.30.0/23 7908 -200.89.32.0/19 7418 -200.89.64.0/20 23140 -200.89.80.0/21 27903 -200.89.88.0/21 28053 -200.89.96.0/19 8163 -200.89.128.0/18 10481 -200.89.192.0/19 3816 -200.89.232.0/21 10620 -200.89.240.0/20 10620 -200.90.0.0/21 8048 -200.90.8.0/24 8048 -200.90.10.0/23 8048 -200.90.12.0/22 8048 -200.90.16.0/20 8048 -200.90.32.0/20 8048 -200.90.48.0/21 8048 -200.90.60.0/23 8048 -200.90.64.0/18 8048 -200.90.128.0/21 21599 -200.90.136.0/23 21599 -200.90.138.0/24 18809 -200.90.139.0/24 21599 -200.90.140.0/24 21599 -200.90.141.0/24 18809 -200.90.142.0/24 21599 -200.90.143.0/24 18809 -200.90.144.0/21 27839 -200.90.152.0/21 28021 -200.90.160.0/20 7418 -200.90.176.0/23 15311 -200.90.178.0/24 7418 -200.90.179.0/24 15311 -200.90.180.0/22 7418 -200.90.184.0/22 7418 -200.90.188.0/24 15311 -200.90.189.0/24 7418 -200.90.190.0/24 15311 -200.90.191.0/24 7418 -200.90.192.0/18 7418 -200.91.0.0/24 7004 -200.91.1.0/24 27680 -200.91.2.0/24 7004 -200.91.3.0/24 13424 -200.91.4.0/22 7004 -200.91.8.0/21 7004 -200.91.16.0/21 7004 -200.91.24.0/22 7004 -200.91.28.0/24 13424 -200.91.29.0/24 7004 -200.91.30.0/23 7004 -200.91.32.0/21 28048 -200.91.40.0/22 14259 -200.91.44.0/23 27962 -200.91.47.0/24 22860 -200.91.48.0/21 28023 -200.91.56.0/21 52486 -200.91.64.0/18 11830 -200.91.128.0/18 11830 -200.91.192.0/18 18747 -200.92.0.0/17 13999 -200.92.128.0/18 13999 -200.92.192.0/20 13999 -200.92.208.0/21 13999 -200.92.216.0/22 13999 -200.92.220.0/22 28541 -200.92.224.0/21 13999 -200.92.232.0/22 28541 -200.92.236.0/22 13999 -200.92.240.0/23 13999 -200.92.242.0/24 13999 -200.92.244.0/22 13999 -200.92.248.0/22 13999 -200.92.252.0/22 28541 -200.93.0.0/17 8048 -200.93.128.0/22 19429 -200.93.132.0/23 19429 -200.93.134.0/24 11581 -200.93.135.0/24 19429 -200.93.136.0/21 19429 -200.93.144.0/22 19429 -200.93.148.0/23 19429 -200.93.150.0/23 22368 -200.93.152.0/23 11581 -200.93.154.0/23 19429 -200.93.156.0/22 19429 -200.93.160.0/19 19429 -200.93.192.0/19 27947 -200.93.224.0/20 27947 -200.93.245.0/24 52243 -200.93.246.0/24 52289 -200.93.247.0/24 61447 -200.93.248.0/21 27902 -200.94.0.0/18 11172 -200.94.64.0/19 11172 -200.94.96.0/21 11172 -200.94.104.0/23 11172 -200.94.106.0/24 265504 -200.94.107.0/24 11172 -200.94.108.0/22 11172 -200.94.112.0/20 11172 -200.94.128.0/19 11172 -200.94.160.0/23 28509 -200.94.162.0/23 32098 -200.94.164.0/24 32098 -200.94.165.0/24 28509 -200.94.166.0/23 28509 -200.94.168.0/21 28509 -200.94.176.0/24 28498 -200.94.177.0/24 397215 -200.94.180.0/23 55002 -200.94.182.0/23 22894 -200.94.192.0/21 6503 -200.94.200.0/22 6503 -200.94.208.0/20 6503 -200.94.224.0/22 13999 -200.94.228.0/22 28481 -200.94.232.0/22 28481 -200.94.236.0/24 28481 -200.94.238.0/23 13999 -200.94.240.0/22 262489 -200.94.244.0/22 262591 -200.94.249.0/24 23243 -200.94.251.0/24 23243 -200.95.0.0/17 8151 -200.95.130.0/23 28555 -200.95.142.0/24 28555 -200.95.144.0/20 28509 -200.95.161.0/24 8151 -200.95.162.0/23 8151 -200.95.164.0/22 8151 -200.95.168.0/23 8151 -200.95.170.0/24 8151 -200.95.172.0/22 27720 -200.95.176.0/22 52549 -200.95.180.0/22 61772 -200.95.184.0/22 264859 -200.95.188.0/22 26592 -200.95.192.0/19 61937 -200.95.224.0/21 27672 -200.95.232.0/22 27672 -200.95.236.0/24 27672 -200.95.237.0/24 13999 -200.95.238.0/23 13999 -200.95.240.0/20 27672 -200.96.0.0/16 8167 -200.97.0.0/16 7738 -200.98.0.0/21 19089 -200.98.8.0/21 7162 -200.98.16.0/22 7162 -200.98.20.0/23 7162 -200.98.22.0/24 7162 -200.98.23.0/24 19089 -200.98.24.0/22 7162 -200.98.28.0/22 19089 -200.98.32.0/19 19089 -200.98.64.0/18 7162 -200.98.128.0/19 7162 -200.98.160.0/20 7162 -200.98.176.0/22 7162 -200.98.180.0/24 18479 -200.98.181.0/24 7162 -200.98.182.0/23 7162 -200.98.184.0/21 7162 -200.98.192.0/23 7162 -200.98.194.0/24 19089 -200.98.195.0/24 7162 -200.98.196.0/22 7162 -200.98.200.0/21 7162 -200.98.208.0/20 18479 -200.98.224.0/23 7162 -200.98.226.0/23 18479 -200.98.228.0/22 18479 -200.98.232.0/21 18479 -200.98.240.0/24 18479 -200.98.241.0/24 7162 -200.98.242.0/23 7162 -200.98.244.0/24 18479 -200.98.245.0/24 7162 -200.98.246.0/23 7162 -200.98.248.0/22 7162 -200.98.252.0/24 7162 -200.98.253.0/24 19089 -200.98.254.0/23 7162 -200.99.0.0/23 15180 -200.99.2.0/24 10429 -200.99.3.0/24 15180 -200.99.4.0/22 15180 -200.99.8.0/21 15180 -200.99.16.0/20 15180 -200.99.32.0/21 15180 -200.99.40.0/24 10429 -200.99.41.0/24 15180 -200.99.42.0/23 15180 -200.99.44.0/22 15180 -200.99.48.0/20 15180 -200.99.64.0/21 15180 -200.99.72.0/22 15180 -200.99.76.0/23 15180 -200.99.78.0/24 15180 -200.99.79.0/24 10429 -200.99.80.0/20 15180 -200.99.96.0/19 15180 -200.99.128.0/23 15180 -200.99.130.0/24 15180 -200.99.131.0/24 10429 -200.99.132.0/24 15180 -200.99.133.0/24 10429 -200.99.134.0/23 15180 -200.99.136.0/23 15180 -200.99.138.0/24 10429 -200.99.139.0/24 15180 -200.99.140.0/22 15180 -200.99.144.0/23 15180 -200.99.146.0/24 15180 -200.99.147.0/24 10429 -200.99.148.0/24 15180 -200.99.149.0/24 10429 -200.99.150.0/23 15180 -200.99.152.0/21 15180 -200.99.160.0/19 15180 -200.99.192.0/19 15180 -200.99.224.0/22 15180 -200.99.228.0/24 15180 -200.99.229.0/24 10429 -200.99.230.0/23 15180 -200.99.232.0/21 15180 -200.99.240.0/20 15180 -200.100.0.0/16 27699 -200.101.0.0/16 8167 -200.102.0.0/15 8167 -200.104.0.0/16 22047 -200.105.0.0/18 26608 -200.105.64.0/19 10481 -200.105.96.0/24 262217 -200.105.97.0/24 52263 -200.105.98.0/23 52263 -200.105.100.0/23 262217 -200.105.102.0/24 262217 -200.105.103.0/24 52263 -200.105.104.0/23 262150 -200.105.107.0/24 262150 -200.105.108.0/22 262150 -200.105.112.0/21 28058 -200.105.120.0/23 27744 -200.105.122.0/24 27744 -200.105.126.0/23 27744 -200.105.128.0/18 26210 -200.105.192.0/21 26210 -200.105.200.0/22 26210 -200.105.205.0/24 26210 -200.105.206.0/23 26210 -200.105.208.0/20 26210 -200.105.224.0/19 22724 -200.106.0.0/17 6147 -200.106.144.0/22 266155 -200.106.148.0/22 266177 -200.106.224.0/24 23383 -200.106.226.0/24 17086 -200.106.227.0/24 23383 -200.106.228.0/24 23383 -200.106.230.0/23 23383 -200.106.232.0/23 27773 -200.106.234.0/24 27773 -200.106.235.0/24 23383 -200.106.236.0/24 23383 -200.106.237.0/24 52262 -200.106.238.0/24 52262 -200.106.239.0/24 23383 -200.106.240.0/22 262175 -200.106.244.0/23 52355 -200.106.247.0/24 262185 -200.106.248.0/21 264630 -200.107.2.0/23 28006 -200.107.4.0/24 28006 -200.107.7.0/24 28006 -200.107.9.0/24 28006 -200.107.10.0/23 28006 -200.107.12.0/22 28006 -200.107.17.0/24 28006 -200.107.18.0/24 28006 -200.107.20.0/22 28006 -200.107.24.0/24 28006 -200.107.29.0/24 28006 -200.107.34.0/23 28006 -200.107.37.0/24 28006 -200.107.38.0/24 28006 -200.107.48.0/23 28006 -200.107.55.0/24 28006 -200.107.56.0/24 28006 -200.107.58.0/23 28006 -200.107.60.0/22 28006 -200.107.64.0/20 16849 -200.107.80.0/24 28055 -200.107.81.0/24 28020 -200.107.82.0/24 263779 -200.107.84.0/22 27694 -200.107.88.0/21 52381 -200.107.96.0/20 27787 -200.107.112.0/22 270249 -200.107.120.0/21 14754 -200.107.128.0/20 6147 -200.107.144.0/21 6147 -200.107.152.0/24 6147 -200.107.153.0/24 264684 -200.107.154.0/23 6147 -200.107.156.0/22 6147 -200.107.160.0/19 6147 -200.107.200.0/22 27898 -200.107.208.0/22 27912 -200.107.212.0/23 27912 -200.107.215.0/24 27912 -200.107.216.0/22 270250 -200.107.224.0/21 27926 -200.107.232.0/21 27932 -200.107.240.0/21 27839 -200.107.248.0/22 264668 -200.107.252.0/23 264668 -200.107.254.0/24 264668 -200.107.255.0/24 27919 -200.108.0.0/19 5639 -200.108.32.0/19 14709 -200.108.64.0/19 26593 -200.108.96.0/20 12252 -200.108.112.0/21 52283 -200.108.120.0/23 16921 -200.108.122.0/24 16921 -200.108.124.0/22 16921 -200.108.129.0/24 27669 -200.108.130.0/23 27669 -200.108.132.0/22 27669 -200.108.136.0/21 27669 -200.108.144.0/22 262249 -200.108.148.0/24 42 -200.108.149.0/24 262249 -200.108.150.0/23 262249 -200.108.155.0/24 262249 -200.108.176.0/22 270257 -200.108.180.0/22 270264 -200.108.192.0/18 20255 -200.109.0.0/16 8048 -200.110.0.0/22 21575 -200.110.4.0/22 19180 -200.110.8.0/21 19180 -200.110.16.0/21 19180 -200.110.24.0/24 21575 -200.110.25.0/24 19180 -200.110.26.0/23 19180 -200.110.28.0/22 19180 -200.110.32.0/22 19180 -200.110.36.0/23 19180 -200.110.38.0/23 21575 -200.110.40.0/21 19180 -200.110.48.0/20 27839 -200.110.64.0/19 27947 -200.110.100.0/22 270260 -200.110.108.0/22 270252 -200.110.112.0/21 27814 -200.110.121.0/24 27814 -200.110.122.0/23 27814 -200.110.124.0/22 27814 -200.110.128.0/19 18747 -200.110.160.0/21 27877 -200.110.168.0/21 27951 -200.110.176.0/21 27881 -200.110.184.0/21 27851 -200.110.192.0/21 27940 -200.110.200.0/23 270261 -200.110.204.0/22 270253 -200.110.208.0/21 27870 -200.110.216.0/22 11014 -200.110.220.0/23 11014 -200.110.223.0/24 11014 -200.110.224.0/21 27871 -200.110.232.0/21 27868 -200.110.240.0/24 46614 -200.110.250.0/23 46614 -200.110.252.0/24 7908 -200.110.255.0/24 46614 -200.111.0.0/18 6471 -200.111.64.0/20 6471 -200.111.80.0/22 6471 -200.111.84.0/23 6471 -200.111.86.0/23 27925 -200.111.88.0/22 6471 -200.111.92.0/24 27651 -200.111.93.0/24 6471 -200.111.94.0/23 6471 -200.111.96.0/20 6471 -200.111.112.0/21 6471 -200.111.120.0/22 6471 -200.111.124.0/24 27651 -200.111.125.0/24 6471 -200.111.126.0/23 6471 -200.111.128.0/19 6471 -200.111.160.0/21 6471 -200.111.168.0/23 6471 -200.111.170.0/24 6471 -200.111.171.0/24 27651 -200.111.172.0/22 6471 -200.111.176.0/20 6471 -200.111.192.0/21 6471 -200.111.200.0/21 27925 -200.111.208.0/22 27925 -200.111.212.0/22 6471 -200.111.216.0/22 6471 -200.111.220.0/23 6471 -200.111.222.0/24 6471 -200.111.223.0/24 27651 -200.111.224.0/24 6471 -200.111.225.0/24 27651 -200.111.226.0/24 6471 -200.111.227.0/24 27651 -200.111.228.0/24 27651 -200.111.229.0/24 6471 -200.111.230.0/24 6471 -200.111.231.0/24 27651 -200.111.232.0/23 6471 -200.111.234.0/24 27651 -200.111.235.0/24 6471 -200.111.236.0/22 6471 -200.111.240.0/20 6471 -200.112.0.0/18 7418 -200.112.64.0/19 7418 -200.112.96.0/20 7418 -200.112.112.0/22 7418 -200.112.116.0/23 16629 -200.112.118.0/23 7418 -200.112.120.0/21 7418 -200.112.128.0/20 22080 -200.112.144.0/21 22080 -200.112.152.0/24 22080 -200.112.154.0/23 22080 -200.112.156.0/22 22080 -200.112.160.0/22 22080 -200.112.164.0/23 22080 -200.112.166.0/24 22080 -200.112.168.0/21 22080 -200.112.176.0/20 22080 -200.112.192.0/21 263227 -200.112.200.0/22 263227 -200.112.204.0/23 265554 -200.112.206.0/23 263227 -200.112.208.0/21 27941 -200.112.216.0/21 52377 -200.112.224.0/19 13381 -200.113.0.0/22 15311 -200.113.4.0/22 16629 -200.113.8.0/23 15311 -200.113.10.0/24 15311 -200.113.11.0/24 7418 -200.113.12.0/22 15311 -200.113.16.0/21 15311 -200.113.24.0/21 7418 -200.113.32.0/22 15311 -200.113.36.0/22 7418 -200.113.40.0/22 7418 -200.113.44.0/23 15311 -200.113.46.0/24 15311 -200.113.47.0/24 7418 -200.113.48.0/22 16629 -200.113.52.0/23 15311 -200.113.54.0/24 7418 -200.113.55.0/24 15311 -200.113.56.0/23 7418 -200.113.58.0/23 15311 -200.113.60.0/22 16629 -200.113.64.0/20 7418 -200.113.80.0/21 15311 -200.113.88.0/22 15311 -200.113.92.0/24 15311 -200.113.93.0/24 7418 -200.113.94.0/23 15311 -200.113.96.0/20 15311 -200.113.112.0/21 7418 -200.113.120.0/23 7418 -200.113.122.0/24 7418 -200.113.123.0/24 15311 -200.113.124.0/24 15311 -200.113.125.0/24 7418 -200.113.126.0/24 7418 -200.113.127.0/24 15311 -200.113.128.0/20 7418 -200.113.144.0/21 15311 -200.113.152.0/23 15311 -200.113.154.0/23 7418 -200.113.156.0/23 7418 -200.113.158.0/23 15311 -200.113.160.0/23 7418 -200.113.162.0/23 15311 -200.113.164.0/23 15311 -200.113.166.0/24 7004 -200.113.167.0/24 15311 -200.113.168.0/24 7418 -200.113.169.0/24 15311 -200.113.170.0/24 7418 -200.113.171.0/24 15311 -200.113.172.0/22 15311 -200.113.176.0/23 15311 -200.113.178.0/24 7418 -200.113.179.0/24 15311 -200.113.180.0/22 15311 -200.113.184.0/22 15311 -200.113.188.0/24 15311 -200.113.189.0/24 7418 -200.113.190.0/24 7418 -200.113.191.0/24 15311 -200.113.192.0/18 27653 -200.114.0.0/18 13489 -200.114.64.0/22 6471 -200.114.78.0/24 27651 -200.114.81.0/24 28065 -200.114.82.0/23 28065 -200.114.84.0/22 28065 -200.114.88.0/21 28120 -200.114.96.0/21 28080 -200.114.104.0/21 28093 -200.114.112.0/21 28087 -200.114.120.0/21 28114 -200.114.128.0/17 10481 -200.115.0.0/21 27756 -200.115.8.0/22 27756 -200.115.12.0/23 27756 -200.115.14.0/24 27756 -200.115.15.0/24 265844 -200.115.16.0/24 52418 -200.115.17.0/24 262250 -200.115.18.0/24 52429 -200.115.19.0/24 52437 -200.115.20.0/22 262168 -200.115.24.0/24 7005 -200.115.25.0/24 263684 -200.115.26.0/24 263684 -200.115.27.0/24 7303 -200.115.28.0/22 7005 -200.115.32.0/21 19582 -200.115.40.0/22 19582 -200.115.44.0/23 19582 -200.115.47.0/24 19582 -200.115.48.0/21 52428 -200.115.56.0/23 52428 -200.115.58.0/24 52428 -200.115.59.0/24 265707 -200.115.60.0/22 52428 -200.115.72.0/21 18667 -200.115.86.0/24 52359 -200.115.87.0/24 52370 -200.115.88.0/24 52360 -200.115.89.0/24 52375 -200.115.90.0/24 52324 -200.115.91.0/24 52403 -200.115.92.0/24 52374 -200.115.93.0/24 52294 -200.115.94.0/23 52376 -200.115.100.0/22 270268 -200.115.104.0/22 270266 -200.115.108.0/22 270287 -200.115.124.0/22 270272 -200.115.128.0/20 21599 -200.115.144.0/21 21599 -200.115.152.0/22 21599 -200.115.156.0/23 21599 -200.115.158.0/24 21599 -200.115.159.0/24 18809 -200.115.160.0/23 23520 -200.115.162.0/23 26426 -200.115.164.0/24 23520 -200.115.165.0/24 26426 -200.115.166.0/23 26426 -200.115.168.0/23 23520 -200.115.170.0/24 23520 -200.115.171.0/24 27956 -200.115.172.0/24 264734 -200.115.173.0/24 27956 -200.115.174.0/24 27956 -200.115.175.0/24 23520 -200.115.176.0/24 262205 -200.115.177.0/24 262225 -200.115.178.0/24 14080 -200.115.179.0/24 262238 -200.115.180.0/24 27731 -200.115.181.0/24 262226 -200.115.182.0/23 52382 -200.115.184.0/24 262233 -200.115.185.0/24 52406 -200.115.186.0/23 52410 -200.115.188.0/22 52422 -200.115.192.0/18 27747 -200.116.0.0/16 13489 -200.117.0.0/18 7303 -200.117.80.0/20 7303 -200.117.96.0/19 7303 -200.117.128.0/18 7303 -200.117.192.0/19 7303 -200.117.224.0/21 7303 -200.117.237.0/24 7303 -200.117.238.0/23 7303 -200.117.240.0/20 7303 -200.118.0.0/19 10620 -200.118.32.0/20 10620 -200.118.48.0/21 10620 -200.118.57.0/24 10620 -200.118.58.0/23 10620 -200.118.60.0/22 10620 -200.118.64.0/19 10620 -200.118.96.0/21 10620 -200.118.104.0/22 10620 -200.118.108.0/24 10620 -200.118.112.0/22 10620 -200.118.116.0/23 10620 -200.118.118.0/24 10620 -200.118.122.0/23 10620 -200.118.127.0/24 10620 -200.118.128.0/18 10620 -200.118.193.0/24 10620 -200.118.194.0/23 10620 -200.118.196.0/22 10620 -200.118.200.0/21 10620 -200.118.208.0/20 10620 -200.118.224.0/19 10620 -200.119.0.0/24 19429 -200.119.1.0/24 22368 -200.119.2.0/23 19429 -200.119.4.0/22 19429 -200.119.8.0/21 19429 -200.119.16.0/20 19429 -200.119.32.0/19 19429 -200.119.64.0/18 19429 -200.119.128.0/20 13682 -200.119.144.0/22 14754 -200.119.148.0/23 14754 -200.119.150.0/23 13682 -200.119.152.0/21 13682 -200.119.160.0/20 13682 -200.119.184.0/21 262202 -200.119.192.0/19 25620 -200.119.224.0/23 18822 -200.119.226.0/24 14259 -200.119.227.0/24 18822 -200.119.228.0/22 18822 -200.119.232.0/22 18822 -200.119.236.0/23 18822 -200.119.238.0/24 18822 -200.119.239.0/24 14259 -200.119.240.0/24 14259 -200.119.241.0/24 18822 -200.119.242.0/24 18822 -200.119.243.0/24 14259 -200.119.244.0/24 14259 -200.119.245.0/24 18822 -200.119.246.0/24 14259 -200.119.247.0/24 18822 -200.119.248.0/23 18822 -200.119.250.0/24 18822 -200.119.251.0/24 14259 -200.119.252.0/22 18822 -200.120.0.0/16 22047 -200.121.0.0/16 6147 -200.122.0.0/17 10481 -200.122.128.0/18 3790 -200.122.192.0/18 13489 -200.123.0.0/19 22411 -200.123.32.0/22 10697 -200.123.36.0/22 263699 -200.123.40.0/21 263699 -200.123.48.0/24 263834 -200.123.49.0/24 264797 -200.123.50.0/24 7303 -200.123.51.0/24 264797 -200.123.52.0/22 264797 -200.123.56.0/23 263834 -200.123.58.0/24 263834 -200.123.59.0/24 265689 -200.123.60.0/23 265689 -200.123.62.0/23 264716 -200.123.64.0/22 11664 -200.123.68.0/24 11664 -200.123.69.0/24 19037 -200.123.70.0/24 19037 -200.123.71.0/24 11664 -200.123.72.0/21 11664 -200.123.80.0/20 11664 -200.123.96.0/21 19037 -200.123.104.0/23 19037 -200.123.106.0/24 19037 -200.123.107.0/24 11664 -200.123.108.0/22 19037 -200.123.112.0/23 11664 -200.123.114.0/24 11664 -200.123.115.0/24 19037 -200.123.116.0/24 19037 -200.123.117.0/24 11664 -200.123.118.0/23 11664 -200.123.120.0/23 11664 -200.123.122.0/24 11664 -200.123.123.0/24 19037 -200.123.124.0/22 19037 -200.123.128.0/20 16814 -200.123.144.0/24 27692 -200.123.145.0/24 16814 -200.123.146.0/23 16814 -200.123.148.0/22 16814 -200.123.152.0/21 16814 -200.123.160.0/19 16814 -200.123.192.0/21 6762 -200.123.200.0/24 265867 -200.123.201.0/24 6762 -200.123.202.0/23 6762 -200.123.204.0/23 6762 -200.123.206.0/24 6762 -200.123.207.0/24 6461 -200.123.208.0/21 28094 -200.123.216.0/21 263230 -200.123.236.0/22 270270 -200.123.240.0/20 52402 -200.124.0.0/19 18809 -200.124.32.0/19 18822 -200.124.84.0/22 270274 -200.124.96.0/21 22080 -200.124.112.0/21 52378 -200.124.120.0/24 262200 -200.124.121.0/24 8053 -200.124.122.0/24 52357 -200.124.123.0/24 52427 -200.124.124.0/23 262214 -200.124.126.0/24 262201 -200.124.127.0/24 52365 -200.124.128.0/19 26505 -200.124.172.0/22 270279 -200.124.176.0/21 52314 -200.124.184.0/22 52401 -200.124.192.0/20 14234 -200.124.208.0/21 14234 -200.124.224.0/21 27738 -200.124.232.0/23 27738 -200.124.235.0/24 27738 -200.124.236.0/22 27738 -200.124.240.0/20 27738 -200.125.0.0/18 6057 -200.125.64.0/18 27747 -200.125.128.0/24 28006 -200.125.130.0/23 28006 -200.125.133.0/24 28006 -200.125.134.0/24 28006 -200.125.136.0/22 28006 -200.125.140.0/24 28006 -200.125.141.0/24 27947 -200.125.142.0/24 28006 -200.125.143.0/24 27947 -200.125.144.0/23 28006 -200.125.146.0/24 27947 -200.125.147.0/24 28006 -200.125.148.0/24 27947 -200.125.149.0/24 28006 -200.125.150.0/23 28006 -200.125.152.0/22 28006 -200.125.156.0/24 27947 -200.125.157.0/24 28006 -200.125.158.0/23 28006 -200.125.160.0/21 27924 -200.125.184.0/21 28007 -200.125.193.0/24 28006 -200.125.202.0/24 28006 -200.125.204.0/24 28006 -200.125.206.0/24 28006 -200.125.208.0/23 28006 -200.125.210.0/24 28006 -200.125.213.0/24 28006 -200.125.216.0/21 28006 -200.125.225.0/24 14420 -200.125.228.0/22 28006 -200.125.232.0/21 28006 -200.125.244.0/23 28006 -200.125.247.0/24 28006 -200.125.248.0/22 28006 -200.126.0.0/19 28027 -200.126.32.0/23 264780 -200.126.34.0/24 264780 -200.126.36.0/22 264780 -200.126.40.0/22 264780 -200.126.44.0/23 6471 -200.126.48.0/24 262257 -200.126.49.0/24 61459 -200.126.50.0/23 263214 -200.126.52.0/22 61482 -200.126.56.0/24 61482 -200.126.58.0/23 61483 -200.126.60.0/24 61482 -200.126.62.0/23 61484 -200.126.64.0/18 14117 -200.126.128.0/17 10481 -200.127.0.0/16 10481 -200.128.0.0/17 53164 -200.128.128.0/18 1916 -200.128.240.0/20 2716 -200.129.0.0/16 1916 -200.130.0.0/15 1916 -200.132.0.0/16 2716 -200.133.0.0/17 1916 -200.133.128.0/18 1916 -200.133.192.0/19 1916 -200.133.224.0/20 52888 -200.133.240.0/20 1916 -200.134.0.0/16 10881 -200.135.0.0/16 10715 -200.136.0.0/20 28571 -200.136.16.0/20 1251 -200.136.32.0/22 1251 -200.136.36.0/24 20940 -200.136.37.0/24 1251 -200.136.38.0/23 1251 -200.136.40.0/21 1251 -200.136.48.0/24 1251 -200.136.49.0/24 28571 -200.136.50.0/23 1251 -200.136.52.0/23 28571 -200.136.54.0/24 28571 -200.136.55.0/24 1251 -200.136.56.0/21 1251 -200.136.64.0/19 1251 -200.136.96.0/21 52992 -200.136.104.0/22 1251 -200.136.108.0/23 1251 -200.136.110.0/24 1251 -200.136.111.0/24 11097 -200.136.112.0/20 52992 -200.136.128.0/19 52992 -200.136.160.0/20 1251 -200.136.176.0/21 1251 -200.136.184.0/22 1251 -200.136.188.0/24 1251 -200.136.189.0/24 52888 -200.136.190.0/23 52888 -200.136.192.0/18 52888 -200.137.0.0/16 1916 -200.138.0.0/16 8167 -200.139.0.0/18 1916 -200.139.64.0/18 18881 -200.139.128.0/18 23106 -200.139.192.0/20 53037 -200.139.232.0/21 53037 -200.140.0.0/16 8167 -200.141.0.0/16 7738 -200.142.0.0/22 26118 -200.142.4.0/24 26118 -200.142.6.0/23 26118 -200.142.8.0/22 26118 -200.142.12.0/24 26118 -200.142.14.0/23 26118 -200.142.16.0/24 26118 -200.142.32.0/19 26118 -200.142.64.0/19 8167 -200.142.96.0/19 17222 -200.142.128.0/20 26599 -200.142.144.0/20 28591 -200.142.160.0/20 26104 -200.142.176.0/21 61949 -200.142.184.0/22 53049 -200.142.188.0/22 61950 -200.142.192.0/20 26607 -200.142.240.0/20 14204 -200.143.0.0/18 13878 -200.143.68.0/22 14840 -200.143.72.0/21 14840 -200.143.80.0/22 14840 -200.143.88.0/21 14840 -200.143.96.0/21 14840 -200.143.104.0/22 14840 -200.143.112.0/22 14840 -200.143.120.0/21 14840 -200.143.128.0/19 26609 -200.143.160.0/19 16397 -200.143.192.0/18 1916 -200.144.0.0/19 28637 -200.144.32.0/20 1251 -200.144.48.0/20 28571 -200.144.64.0/21 1251 -200.144.72.0/23 28571 -200.144.74.0/23 28637 -200.144.76.0/22 1251 -200.144.80.0/24 52703 -200.144.81.0/24 1251 -200.144.82.0/24 1251 -200.144.83.0/24 28571 -200.144.84.0/22 1251 -200.144.88.0/23 1251 -200.144.90.0/24 1251 -200.144.91.0/24 1916 -200.144.92.0/23 1916 -200.144.94.0/24 1916 -200.144.95.0/24 1251 -200.144.96.0/22 1251 -200.144.100.0/24 1916 -200.144.101.0/24 1251 -200.144.102.0/23 1251 -200.144.104.0/21 52992 -200.144.112.0/22 1916 -200.144.116.0/23 1916 -200.144.118.0/23 1251 -200.144.120.0/21 1251 -200.144.128.0/20 1251 -200.144.144.0/20 52703 -200.144.160.0/19 28571 -200.144.192.0/18 28571 -200.145.0.0/16 53166 -200.146.0.0/17 18881 -200.146.128.0/18 27652 -200.146.192.0/18 16735 -200.147.0.0/16 7162 -200.148.0.0/17 27699 -200.148.128.0/17 10429 -200.149.0.0/16 7738 -200.150.0.0/22 26415 -200.150.4.0/22 23106 -200.150.8.0/21 26415 -200.150.16.0/20 26415 -200.150.32.0/19 23106 -200.150.64.0/20 14868 -200.150.80.0/21 14868 -200.150.96.0/19 14868 -200.150.128.0/20 11921 -200.150.144.0/20 26592 -200.150.160.0/22 22381 -200.150.166.0/24 22381 -200.150.167.0/24 265303 -200.150.168.0/24 22381 -200.150.171.0/24 22381 -200.150.173.0/24 22381 -200.150.174.0/23 265303 -200.150.176.0/22 19182 -200.150.180.0/23 27699 -200.150.182.0/23 19182 -200.150.184.0/22 19182 -200.150.188.0/24 19182 -200.150.189.0/24 27699 -200.150.190.0/24 19182 -200.150.191.0/24 27699 -200.150.192.0/20 263511 -200.150.208.0/20 26598 -200.150.224.0/20 26609 -200.151.0.0/16 7738 -200.152.0.0/19 28590 -200.152.32.0/20 26218 -200.152.48.0/20 26616 -200.152.64.0/21 14463 -200.152.72.0/23 14463 -200.152.74.0/24 14463 -200.152.78.0/23 14463 -200.152.80.0/20 22706 -200.152.96.0/19 21571 -200.152.160.0/23 10310 -200.152.162.0/23 28122 -200.152.164.0/22 10310 -200.152.168.0/22 10310 -200.152.172.0/23 10310 -200.152.174.0/24 32345 -200.152.175.0/24 10310 -200.152.176.0/20 28589 -200.152.192.0/19 8167 -200.152.224.0/20 23128 -200.152.240.0/20 25933 -200.153.0.0/17 10429 -200.153.128.0/17 27699 -200.154.56.0/23 11706 -200.155.0.0/20 16397 -200.155.16.0/20 26592 -200.155.32.0/19 22689 -200.155.64.0/20 16397 -200.155.80.0/21 28586 -200.155.88.0/22 28586 -200.155.92.0/23 28586 -200.155.96.0/20 23002 -200.155.112.0/20 23105 -200.155.128.0/21 11432 -200.155.136.0/22 11432 -200.155.140.0/23 11432 -200.155.142.0/24 11432 -200.155.143.0/24 18747 -200.155.144.0/20 11432 -200.155.160.0/19 11432 -200.156.0.0/19 2715 -200.156.32.0/24 2715 -200.156.33.0/24 28159 -200.156.34.0/23 2715 -200.156.36.0/22 2715 -200.156.40.0/21 2715 -200.156.48.0/20 2715 -200.156.64.0/18 2715 -200.156.128.0/17 2715 -200.157.0.0/18 17379 -200.157.64.0/19 17379 -200.157.96.0/20 17379 -200.157.112.0/21 26615 -200.157.120.0/21 17379 -200.157.128.0/22 17379 -200.157.132.0/22 26615 -200.157.136.0/22 17379 -200.157.140.0/23 26615 -200.157.142.0/23 17379 -200.157.144.0/22 17379 -200.157.148.0/23 17379 -200.157.150.0/23 26615 -200.157.152.0/21 17379 -200.157.160.0/22 17379 -200.157.164.0/22 26615 -200.157.168.0/21 26615 -200.157.176.0/21 26615 -200.157.184.0/21 17379 -200.157.192.0/23 17379 -200.157.194.0/23 26615 -200.157.196.0/22 26615 -200.157.200.0/23 17379 -200.157.202.0/24 26615 -200.157.203.0/24 17379 -200.157.204.0/22 26615 -200.157.208.0/23 17379 -200.157.210.0/23 26615 -200.157.212.0/22 17379 -200.157.216.0/21 17379 -200.157.224.0/23 26615 -200.157.226.0/23 17379 -200.157.228.0/24 26615 -200.157.229.0/24 17379 -200.157.230.0/23 17379 -200.157.232.0/22 26615 -200.157.236.0/23 26615 -200.157.238.0/23 17379 -200.157.240.0/20 26615 -200.158.0.0/16 27699 -200.159.0.0/17 10429 -200.159.128.0/19 27688 -200.159.160.0/22 28605 -200.159.164.0/23 28605 -200.159.166.0/24 28584 -200.159.167.0/24 28605 -200.159.168.0/22 28605 -200.159.172.0/23 28605 -200.159.174.0/24 28605 -200.159.175.0/24 28584 -200.159.176.0/20 28584 -200.159.192.0/19 23106 -200.159.224.0/20 23002 -200.159.240.0/20 1916 -200.160.0.0/20 22548 -200.160.16.0/20 22148 -200.160.48.0/20 8055 -200.160.64.0/22 19182 -200.160.68.0/24 19182 -200.160.69.0/24 27699 -200.160.70.0/24 27699 -200.160.71.0/24 19182 -200.160.72.0/24 27699 -200.160.73.0/24 19182 -200.160.74.0/23 19182 -200.160.76.0/22 19182 -200.160.80.0/23 19182 -200.160.82.0/24 27699 -200.160.83.0/24 19182 -200.160.84.0/22 19182 -200.160.88.0/21 19182 -200.160.96.0/20 28573 -200.160.112.0/20 16735 -200.160.128.0/20 22819 -200.160.144.0/20 22128 -200.160.160.0/20 22341 -200.160.176.0/20 7298 -200.160.192.0/20 22356 -200.160.224.0/19 8167 -200.161.0.0/16 27699 -200.162.0.0/22 15180 -200.162.4.0/23 10429 -200.162.6.0/23 15180 -200.162.8.0/24 10429 -200.162.9.0/24 15180 -200.162.10.0/24 15180 -200.162.11.0/24 10429 -200.162.12.0/22 15180 -200.162.16.0/22 15180 -200.162.20.0/23 15180 -200.162.22.0/24 10429 -200.162.23.0/24 15180 -200.162.24.0/21 15180 -200.162.32.0/22 15180 -200.162.36.0/24 10429 -200.162.37.0/24 15180 -200.162.38.0/23 15180 -200.162.40.0/24 10429 -200.162.41.0/24 15180 -200.162.42.0/23 15180 -200.162.44.0/24 10429 -200.162.45.0/24 15180 -200.162.46.0/23 15180 -200.162.48.0/24 10429 -200.162.49.0/24 15180 -200.162.50.0/23 15180 -200.162.52.0/24 10429 -200.162.53.0/24 15180 -200.162.54.0/24 10429 -200.162.55.0/24 15180 -200.162.56.0/22 15180 -200.162.60.0/23 15180 -200.162.62.0/24 15180 -200.162.63.0/24 10429 -200.162.64.0/19 15180 -200.162.96.0/20 15180 -200.162.112.0/22 15180 -200.162.116.0/24 15180 -200.162.117.0/24 10429 -200.162.118.0/23 15180 -200.162.120.0/21 15180 -200.162.128.0/20 22177 -200.162.160.0/20 22431 -200.162.176.0/20 22129 -200.162.192.0/21 19182 -200.162.200.0/23 19182 -200.162.202.0/24 19182 -200.162.203.0/24 27699 -200.162.204.0/22 19182 -200.162.208.0/21 19182 -200.162.216.0/23 27699 -200.162.218.0/23 19182 -200.162.220.0/23 27699 -200.162.222.0/23 19182 -200.162.224.0/24 27699 -200.162.225.0/24 19182 -200.162.226.0/23 27699 -200.162.228.0/24 27699 -200.162.229.0/24 19182 -200.162.230.0/24 19182 -200.162.231.0/24 27699 -200.162.232.0/23 19182 -200.162.234.0/24 19182 -200.162.235.0/24 27699 -200.162.236.0/22 19182 -200.162.240.0/23 19182 -200.162.242.0/24 27699 -200.162.243.0/24 19182 -200.162.244.0/24 19182 -200.162.245.0/24 27699 -200.162.246.0/23 19182 -200.162.248.0/23 27699 -200.162.250.0/23 19182 -200.162.252.0/22 19182 -200.163.0.0/16 8167 -200.164.0.0/15 7738 -200.166.0.0/15 4230 -200.168.0.0/17 27699 -200.168.128.0/19 27699 -200.168.160.0/19 10429 -200.168.192.0/18 10429 -200.169.0.0/20 21574 -200.169.16.0/21 26606 -200.169.24.0/22 26606 -200.169.29.0/24 26606 -200.169.31.0/24 26606 -200.169.32.0/20 22515 -200.169.48.0/20 19763 -200.169.80.0/23 21741 -200.169.82.0/24 21741 -200.169.84.0/22 21741 -200.169.88.0/21 21741 -200.169.96.0/20 21911 -200.169.112.0/20 22085 -200.169.128.0/17 8167 -200.170.64.0/21 22250 -200.170.72.0/22 22250 -200.170.76.0/22 264592 -200.170.80.0/20 22356 -200.170.96.0/21 19182 -200.170.104.0/23 19182 -200.170.106.0/23 27699 -200.170.108.0/24 19182 -200.170.109.0/24 27699 -200.170.110.0/24 27699 -200.170.111.0/24 19182 -200.170.112.0/24 19182 -200.170.113.0/24 27699 -200.170.114.0/24 19182 -200.170.115.0/24 27699 -200.170.116.0/22 19182 -200.170.120.0/23 19182 -200.170.122.0/24 27699 -200.170.123.0/24 19182 -200.170.124.0/22 19182 -200.170.128.0/18 16735 -200.170.192.0/21 11432 -200.170.200.0/22 11432 -200.170.204.0/23 11432 -200.170.206.0/23 18747 -200.170.208.0/22 11432 -200.170.212.0/24 18747 -200.170.213.0/24 11432 -200.170.214.0/23 11432 -200.170.216.0/21 11432 -200.170.224.0/19 11432 -200.171.0.0/17 27699 -200.171.128.0/18 27699 -200.171.192.0/19 10429 -200.171.224.0/19 27699 -200.172.0.0/16 4230 -200.173.0.0/16 13353 -200.174.0.0/16 4230 -200.175.0.0/16 18881 -200.177.0.0/16 11706 -200.178.0.0/15 4230 -200.180.0.0/15 8167 -200.182.0.0/15 4230 -200.184.0.0/17 17379 -200.184.128.0/18 17379 -200.185.0.0/17 16685 -200.185.128.0/18 16685 -200.185.192.0/19 28169 -200.185.224.0/21 19182 -200.185.232.0/24 19182 -200.185.233.0/24 27699 -200.185.234.0/23 19182 -200.185.236.0/22 19182 -200.185.240.0/21 19182 -200.185.248.0/22 19182 -200.185.252.0/24 19182 -200.185.253.0/24 27699 -200.185.254.0/23 19182 -200.186.0.0/23 3549 -200.186.2.0/24 3549 -200.186.3.0/24 10753 -200.186.4.0/22 3549 -200.186.8.0/21 3549 -200.186.16.0/20 3549 -200.186.32.0/22 3549 -200.186.36.0/23 3549 -200.186.38.0/24 3549 -200.186.39.0/24 10753 -200.186.40.0/21 3549 -200.186.48.0/20 3549 -200.186.64.0/23 3549 -200.186.66.0/24 3549 -200.186.67.0/24 10753 -200.186.68.0/22 3549 -200.186.72.0/21 3549 -200.186.80.0/20 3549 -200.186.96.0/19 3549 -200.186.128.0/24 27471 -200.186.129.0/24 3549 -200.186.130.0/23 3549 -200.186.132.0/22 3549 -200.186.136.0/21 3549 -200.186.144.0/20 3549 -200.186.160.0/24 10753 -200.186.161.0/24 3549 -200.186.162.0/23 3549 -200.186.164.0/22 3549 -200.186.168.0/21 3549 -200.186.176.0/23 3549 -200.186.178.0/24 3549 -200.186.179.0/24 10753 -200.186.180.0/24 10753 -200.186.181.0/24 3549 -200.186.182.0/23 3549 -200.186.184.0/21 3549 -200.186.192.0/18 3549 -200.187.0.0/18 25832 -200.187.64.0/24 265262 -200.187.70.0/24 265262 -200.187.74.0/24 265262 -200.187.78.0/23 265262 -200.187.80.0/20 28580 -200.187.112.0/21 27697 -200.187.120.0/22 27697 -200.187.126.0/24 27697 -200.187.128.0/19 7738 -200.187.160.0/19 16735 -200.187.192.0/18 7162 -200.188.0.0/19 11172 -200.188.48.0/24 11172 -200.188.50.0/24 11172 -200.188.52.0/23 11172 -200.188.54.0/24 11172 -200.188.56.0/24 11172 -200.188.128.0/19 11888 -200.188.160.0/20 19611 -200.188.176.0/20 20044 -200.188.192.0/20 18836 -200.188.208.0/20 28590 -200.188.224.0/19 11844 -200.189.0.0/21 13914 -200.189.8.0/21 52689 -200.189.40.0/23 10906 -200.189.44.0/22 263821 -200.189.48.0/21 28663 -200.189.56.0/21 14282 -200.189.80.0/20 28573 -200.189.96.0/20 18739 -200.189.112.0/20 19723 -200.189.128.0/19 7465 -200.189.160.0/19 13878 -200.189.192.0/18 3549 -200.190.0.0/16 13353 -200.191.0.0/16 4230 -200.192.0.0/18 13353 -200.192.64.0/20 11802 -200.192.80.0/20 14886 -200.192.96.0/21 13357 -200.192.104.0/24 14026 -200.192.105.0/24 21575 -200.192.106.0/24 264762 -200.192.107.0/24 262477 -200.192.112.0/20 13522 -200.192.130.0/23 19089 -200.192.132.0/24 19089 -200.192.134.0/23 19089 -200.192.137.0/24 19089 -200.192.139.0/24 19089 -200.192.140.0/24 19089 -200.192.142.0/23 19089 -200.192.144.0/20 28572 -200.192.160.0/20 19089 -200.192.208.0/21 11835 -200.192.216.0/21 14723 -200.192.232.0/23 11284 -200.192.236.0/22 263248 -200.192.240.0/21 14463 -200.192.248.0/21 11835 -200.193.0.0/16 8167 -200.194.0.0/18 6503 -200.194.64.0/19 13495 -200.194.96.0/20 11921 -200.194.112.0/20 16594 -200.194.128.0/24 14026 -200.194.148.0/24 14026 -200.194.160.0/20 28582 -200.194.176.0/20 12135 -200.194.192.0/19 3549 -200.194.232.0/21 11844 -200.194.248.0/23 11432 -200.194.250.0/24 11432 -200.194.254.0/24 11432 -200.195.0.0/17 7738 -200.195.128.0/18 14868 -200.195.192.0/22 262318 -200.195.196.0/22 12140 -200.195.200.0/21 262318 -200.195.208.0/20 262318 -200.196.0.0/19 10733 -200.196.32.0/20 52532 -200.196.48.0/20 17222 -200.196.64.0/19 3549 -200.196.96.0/19 11338 -200.196.129.0/24 61804 -200.196.130.0/23 61804 -200.196.132.0/22 61583 -200.196.136.0/22 61776 -200.196.140.0/22 52790 -200.196.144.0/20 15256 -200.196.160.0/19 10938 -200.196.192.0/19 14346 -200.196.224.0/19 11419 -200.198.0.0/18 10670 -200.198.64.0/22 15180 -200.198.68.0/23 10429 -200.198.70.0/23 15180 -200.198.72.0/24 15180 -200.198.73.0/24 10429 -200.198.74.0/24 15180 -200.198.75.0/24 10429 -200.198.76.0/22 15180 -200.198.80.0/23 15180 -200.198.82.0/24 10429 -200.198.83.0/24 15180 -200.198.84.0/22 15180 -200.198.88.0/21 15180 -200.198.96.0/21 15180 -200.198.104.0/22 15180 -200.198.108.0/23 15180 -200.198.110.0/24 15180 -200.198.111.0/24 10429 -200.198.112.0/24 15180 -200.198.113.0/24 10429 -200.198.114.0/24 10429 -200.198.115.0/24 15180 -200.198.116.0/22 15180 -200.198.120.0/21 15180 -200.198.128.0/19 7465 -200.198.160.0/20 7465 -200.198.176.0/20 16397 -200.198.192.0/18 10954 -200.199.0.0/17 7738 -200.199.128.0/18 7738 -200.199.192.0/18 8167 -200.201.0.0/21 10412 -200.201.8.0/24 264471 -200.201.9.0/24 10412 -200.201.10.0/23 10412 -200.201.12.0/22 10412 -200.201.16.0/20 10412 -200.201.32.0/19 10412 -200.201.64.0/20 10412 -200.201.80.0/21 264471 -200.201.88.0/23 264471 -200.201.90.0/23 10412 -200.201.92.0/22 10412 -200.201.96.0/19 10412 -200.201.128.0/19 11432 -200.201.160.0/20 20116 -200.201.176.0/20 17222 -200.201.192.0/18 10733 -200.202.0.0/19 10733 -200.202.32.0/21 8141 -200.202.42.0/23 8141 -200.202.48.0/21 8141 -200.202.96.0/20 7063 -200.202.112.0/22 15180 -200.202.116.0/24 10429 -200.202.117.0/24 15180 -200.202.118.0/23 15180 -200.202.120.0/21 15180 -200.202.128.0/18 11097 -200.202.192.0/18 7738 -200.203.0.0/16 8167 -200.204.0.0/16 27699 -200.205.0.0/16 10429 -200.206.0.0/17 10429 -200.206.128.0/17 27699 -200.207.0.0/16 27699 -200.208.0.0/14 4230 -200.212.0.0/15 4230 -200.214.0.0/16 4230 -200.215.0.0/17 8167 -200.215.128.0/19 10688 -200.215.160.0/22 263656 -200.215.164.0/22 28244 -200.215.168.0/22 28310 -200.215.172.0/22 262698 -200.215.176.0/20 13878 -200.215.193.0/24 10531 -200.215.194.0/24 10531 -200.215.197.0/24 10531 -200.215.198.0/23 10531 -200.215.200.0/24 10531 -200.215.208.0/20 14840 -200.216.0.0/15 7738 -200.218.0.0/19 10362 -200.218.128.0/24 19905 -200.218.129.0/24 11271 -200.218.130.0/23 11271 -200.218.132.0/23 11271 -200.218.134.0/24 11271 -200.218.135.0/24 19905 -200.218.136.0/21 11271 -200.218.144.0/20 11271 -200.218.160.0/23 11271 -200.218.162.0/24 11271 -200.218.163.0/24 19905 -200.218.164.0/22 11271 -200.218.168.0/22 11271 -200.218.172.0/24 11271 -200.218.173.0/24 19905 -200.218.174.0/23 11271 -200.218.176.0/21 11271 -200.218.184.0/24 11271 -200.218.185.0/24 19905 -200.218.186.0/23 11271 -200.218.188.0/22 11271 -200.218.192.0/23 22407 -200.218.196.0/23 22407 -200.218.199.0/24 22407 -200.218.200.0/24 22407 -200.218.203.0/24 22407 -200.218.204.0/24 22407 -200.218.208.0/21 22055 -200.218.224.0/20 28590 -200.218.240.0/20 28594 -200.219.64.0/18 8167 -200.219.128.0/23 7313 -200.219.132.0/22 10897 -200.219.148.0/24 53035 -200.219.149.0/24 264971 -200.219.150.0/23 11835 -200.219.152.0/23 11835 -200.219.154.0/23 11644 -200.219.158.0/23 14650 -200.219.160.0/24 19905 -200.219.161.0/24 11271 -200.219.162.0/23 11271 -200.219.164.0/23 11271 -200.219.166.0/24 11271 -200.219.167.0/24 19905 -200.219.168.0/22 11271 -200.219.172.0/24 19905 -200.219.173.0/24 11271 -200.219.174.0/23 11271 -200.219.176.0/24 19905 -200.219.177.0/24 11271 -200.219.178.0/23 11271 -200.219.180.0/22 11271 -200.219.184.0/21 11271 -200.219.192.0/18 16397 -200.220.0.0/17 5772 -200.220.128.0/20 27693 -200.220.144.0/20 28576 -200.220.160.0/20 27712 -200.220.176.0/20 28581 -200.220.192.0/19 262589 -200.220.224.0/19 26599 -200.221.0.0/17 7162 -200.221.128.0/19 7162 -200.221.160.0/20 19089 -200.221.176.0/20 7162 -200.221.192.0/19 19089 -200.221.224.0/19 7162 -200.222.0.0/20 7738 -200.222.16.0/21 7738 -200.222.24.0/23 7738 -200.222.26.0/24 7738 -200.222.27.0/24 28159 -200.222.28.0/22 7738 -200.222.32.0/19 7738 -200.222.64.0/18 7738 -200.222.128.0/17 7738 -200.223.0.0/16 7738 -200.224.0.0/16 51964 -200.225.0.0/19 11888 -200.225.32.0/19 7365 -200.225.64.0/20 8167 -200.225.80.0/20 19089 -200.225.104.0/22 61773 -200.225.108.0/22 263441 -200.225.112.0/22 61788 -200.225.120.0/22 52862 -200.225.128.0/22 61770 -200.225.132.0/22 61771 -200.225.136.0/22 61774 -200.225.140.0/22 61797 -200.225.144.0/20 14571 -200.225.160.0/19 8167 -200.225.192.0/18 16735 -200.226.123.0/24 14571 -200.227.0.0/16 4230 -200.228.0.0/16 4230 -200.229.0.0/20 16712 -200.229.32.0/20 16891 -200.229.48.0/20 28588 -200.229.64.0/22 11751 -200.229.68.0/23 11751 -200.229.70.0/24 11751 -200.229.71.0/24 266989 -200.229.73.0/24 266989 -200.229.78.0/23 266989 -200.229.80.0/22 61798 -200.229.84.0/22 61775 -200.229.88.0/22 53158 -200.229.92.0/22 28188 -200.229.96.0/20 26599 -200.229.112.0/24 264560 -200.229.114.0/23 28151 -200.229.116.0/22 28151 -200.229.128.0/20 18547 -200.229.144.0/22 52468 -200.229.148.0/22 20207 -200.229.152.0/22 21826 -200.229.156.0/22 61805 -200.229.160.0/20 26616 -200.229.176.0/20 262688 -200.229.192.0/20 11419 -200.229.208.0/22 61778 -200.229.212.0/22 52968 -200.229.217.0/24 264628 -200.229.218.0/24 267781 -200.229.220.0/22 52873 -200.229.224.0/20 28165 -200.229.248.0/23 12136 -200.229.250.0/24 265458 -200.229.251.0/24 266336 -200.229.252.0/22 52465 -200.230.0.0/15 4230 -200.232.0.0/17 10429 -200.232.128.0/17 27699 -200.233.0.0/20 7465 -200.233.16.0/20 22819 -200.233.48.0/21 19182 -200.233.56.0/22 19182 -200.233.60.0/23 27699 -200.233.62.0/23 19182 -200.233.64.0/20 11921 -200.233.80.0/20 262682 -200.233.96.0/19 22689 -200.233.128.0/17 16735 -200.234.0.0/23 28613 -200.234.2.0/23 14571 -200.234.4.0/22 14571 -200.234.8.0/21 14571 -200.234.16.0/20 14571 -200.234.32.0/19 14571 -200.234.64.0/18 14571 -200.234.128.0/18 10704 -200.234.192.0/19 27715 -200.234.224.0/20 23105 -200.234.240.0/23 28597 -200.234.250.0/23 28597 -200.234.255.0/24 28597 -200.235.0.0/16 1916 -200.236.0.0/19 10881 -200.236.32.0/19 2716 -200.236.64.0/18 6503 -200.236.128.0/18 10417 -200.236.192.0/20 28649 -200.236.208.0/20 28166 -200.236.224.0/19 28649 -200.237.0.0/20 1916 -200.237.64.0/20 28583 -200.237.80.0/20 262660 -200.237.96.0/20 14886 -200.237.112.0/20 28141 -200.237.128.0/19 28624 -200.237.160.0/19 262318 -200.237.192.0/19 11242 -200.237.248.0/21 28579 -200.238.0.0/18 2716 -200.238.64.0/18 10938 -200.238.128.0/18 10881 -200.238.192.0/18 10417 -200.239.0.0/18 11888 -200.239.64.0/18 262511 -200.239.128.0/18 1916 -200.239.192.0/18 10704 -200.240.0.0/17 51964 -200.240.128.0/18 51964 -200.240.192.0/19 51964 -200.240.224.0/19 28283 -200.241.0.0/16 4230 -200.242.0.0/15 4230 -200.244.0.0/14 4230 -200.248.0.0/13 4230 -201.0.0.0/15 27699 -201.2.0.0/15 8167 -201.4.0.0/15 7738 -201.6.0.0/16 28573 -201.7.0.0/17 8167 -201.7.128.0/24 26606 -201.7.130.0/23 26606 -201.7.132.0/22 26606 -201.7.140.0/22 26606 -201.7.144.0/20 28627 -201.7.160.0/22 28593 -201.7.164.0/22 263290 -201.7.168.0/22 263291 -201.7.172.0/22 262668 -201.7.176.0/20 28604 -201.7.192.0/21 28595 -201.7.200.0/21 264555 -201.7.208.0/23 61808 -201.7.210.0/24 61808 -201.7.211.0/24 3356 -201.7.212.0/22 61697 -201.7.216.0/22 61836 -201.7.220.0/22 61799 -201.7.224.0/20 28599 -201.8.0.0/15 7738 -201.10.0.0/17 8167 -201.10.128.0/18 8167 -201.11.0.0/16 8167 -201.12.0.0/21 17379 -201.12.8.0/24 17379 -201.12.9.0/24 26615 -201.12.10.0/23 17379 -201.12.12.0/22 17379 -201.12.16.0/20 17379 -201.12.32.0/19 17379 -201.12.64.0/22 17379 -201.12.68.0/22 26615 -201.12.72.0/21 17379 -201.12.80.0/20 17379 -201.12.96.0/20 17379 -201.12.112.0/22 17379 -201.12.116.0/24 61568 -201.12.117.0/24 17379 -201.12.118.0/23 17379 -201.12.120.0/21 17379 -201.12.128.0/21 17379 -201.12.136.0/22 26615 -201.12.140.0/22 17379 -201.12.144.0/23 17379 -201.12.146.0/24 17379 -201.12.147.0/24 26615 -201.12.148.0/22 26615 -201.12.152.0/21 17379 -201.12.160.0/19 17379 -201.12.223.0/24 26615 -201.13.0.0/16 27699 -201.14.0.0/15 8167 -201.16.8.0/24 14840 -201.16.48.0/23 14840 -201.16.50.0/24 20940 -201.16.53.0/24 14840 -201.16.54.0/24 14840 -201.16.56.0/23 14840 -201.16.59.0/24 14840 -201.16.60.0/24 14840 -201.16.128.0/17 16735 -201.17.0.0/16 28573 -201.18.0.0/15 7738 -201.20.0.0/20 16397 -201.20.16.0/20 26592 -201.20.32.0/19 16397 -201.20.64.0/18 28598 -201.20.128.0/20 28619 -201.20.144.0/20 28605 -201.20.160.0/20 28606 -201.20.176.0/20 11835 -201.20.192.0/18 19182 -201.21.0.0/16 28573 -201.22.0.0/16 18881 -201.23.0.0/17 28590 -201.23.128.0/19 22689 -201.23.160.0/19 22085 -201.23.192.0/19 262589 -201.23.224.0/19 21571 -201.24.0.0/15 8167 -201.26.0.0/15 27699 -201.28.0.0/16 10429 -201.29.0.0/16 7738 -201.30.0.0/15 4230 -201.32.0.0/16 7738 -201.33.0.0/24 28273 -201.33.8.0/21 28273 -201.33.16.0/20 28271 -201.33.32.0/19 28624 -201.33.64.0/20 262983 -201.33.80.0/20 23105 -201.33.96.0/20 28275 -201.33.112.0/20 28640 -201.33.128.0/20 28274 -201.33.144.0/22 11993 -201.33.148.0/23 11993 -201.33.151.0/24 11993 -201.33.152.0/24 11993 -201.33.160.0/20 53181 -201.33.176.0/20 262589 -201.33.192.0/20 28284 -201.33.208.0/22 28278 -201.33.213.0/24 28278 -201.33.214.0/23 28278 -201.33.216.0/24 28278 -201.33.221.0/24 28278 -201.33.223.0/24 28278 -201.33.224.0/20 28285 -201.33.240.0/20 28280 -201.34.0.0/15 8167 -201.36.0.0/18 17379 -201.36.64.0/20 17379 -201.36.80.0/20 26615 -201.36.96.0/24 17379 -201.36.97.0/24 26615 -201.36.98.0/23 17379 -201.36.100.0/22 17379 -201.36.104.0/21 17379 -201.36.112.0/20 17379 -201.36.128.0/20 17379 -201.36.144.0/21 17379 -201.36.152.0/23 17379 -201.36.154.0/23 26615 -201.36.156.0/22 17379 -201.36.160.0/19 17379 -201.36.192.0/20 17379 -201.36.208.0/21 17379 -201.36.216.0/24 26615 -201.36.217.0/24 17379 -201.36.218.0/23 17379 -201.36.220.0/22 17379 -201.36.224.0/20 17379 -201.36.240.0/21 17379 -201.36.248.0/21 26615 -201.37.64.0/18 28573 -201.37.128.0/18 28573 -201.38.0.0/15 4230 -201.40.0.0/15 8167 -201.42.0.0/15 27699 -201.44.0.0/15 4230 -201.46.0.0/20 28603 -201.46.16.0/20 28669 -201.46.32.0/19 28580 -201.46.64.0/20 28609 -201.46.84.0/24 265621 -201.46.96.0/19 40311 -201.46.128.0/18 28615 -201.46.192.0/19 28615 -201.46.224.0/20 28615 -201.46.240.0/20 28573 -201.47.0.0/16 18881 -201.48.0.0/17 16735 -201.48.128.0/21 16735 -201.48.136.0/22 16735 -201.48.140.0/22 262814 -201.48.144.0/20 16735 -201.48.160.0/19 16735 -201.48.192.0/18 16735 -201.49.0.0/18 11921 -201.49.64.0/19 28263 -201.49.96.0/19 28303 -201.49.144.0/21 53159 -201.49.152.0/23 264468 -201.49.154.0/23 264467 -201.49.156.0/23 264469 -201.49.158.0/23 61569 -201.49.160.0/20 28602 -201.49.176.0/20 28645 -201.49.192.0/20 28287 -201.49.208.0/20 26592 -201.49.224.0/20 52532 -201.50.0.0/15 7738 -201.52.0.0/16 28573 -201.53.192.0/18 28573 -201.54.0.0/19 28590 -201.54.32.0/20 28613 -201.54.48.0/20 28629 -201.54.64.0/18 22689 -201.54.128.0/19 28623 -201.54.160.0/20 28624 -201.54.192.0/20 28614 -201.54.208.0/20 28616 -201.54.224.0/19 28618 -201.55.0.0/18 28637 -201.55.64.0/20 28630 -201.55.80.0/20 28644 -201.55.96.0/19 28303 -201.55.128.0/19 28620 -201.55.160.0/20 262585 -201.55.176.0/20 28620 -201.55.192.0/22 52955 -201.55.196.0/22 61792 -201.55.200.0/22 61784 -201.55.204.0/22 52641 -201.55.208.0/21 28626 -201.55.216.0/22 28626 -201.55.224.0/20 28573 -201.55.240.0/20 28631 -201.56.0.0/15 4230 -201.58.0.0/15 7738 -201.60.0.0/15 27699 -201.62.14.0/23 11271 -201.62.28.0/24 11271 -201.62.32.0/20 53203 -201.62.48.0/20 262785 -201.62.64.0/19 28634 -201.62.96.0/22 28573 -201.62.101.0/24 28573 -201.62.104.0/21 28573 -201.62.112.0/20 28573 -201.62.128.0/18 23106 -201.62.192.0/19 23106 -201.62.224.0/20 23106 -201.62.240.0/20 263452 -201.63.0.0/16 10429 -201.64.0.0/15 4230 -201.66.0.0/15 8167 -201.68.0.0/15 27699 -201.70.0.0/18 17379 -201.70.64.0/19 17379 -201.70.96.0/20 17379 -201.70.112.0/21 17379 -201.70.120.0/21 26615 -201.70.128.0/22 17379 -201.70.132.0/23 17379 -201.70.134.0/24 17379 -201.70.135.0/24 26615 -201.70.136.0/21 17379 -201.70.144.0/24 17379 -201.70.145.0/24 26615 -201.70.146.0/23 17379 -201.70.148.0/22 17379 -201.70.152.0/21 17379 -201.70.160.0/21 17379 -201.70.168.0/24 17379 -201.70.169.0/24 26615 -201.70.170.0/23 17379 -201.70.172.0/22 17379 -201.70.176.0/23 17379 -201.70.178.0/23 26615 -201.70.180.0/23 17379 -201.70.182.0/24 17379 -201.70.183.0/24 61568 -201.70.184.0/21 17379 -201.71.32.0/20 262785 -201.71.64.0/19 27652 -201.71.96.0/21 27652 -201.71.108.0/22 27652 -201.71.112.0/21 27652 -201.71.128.0/18 28635 -201.71.196.0/22 270293 -201.71.224.0/20 28640 -201.71.240.0/20 28657 -201.72.0.0/15 4230 -201.74.0.0/15 28573 -201.76.0.0/20 28642 -201.76.16.0/20 28573 -201.76.32.0/19 27715 -201.76.64.0/19 28573 -201.76.112.0/20 262794 -201.76.128.0/20 28652 -201.76.144.0/20 27656 -201.76.160.0/19 17222 -201.76.192.0/22 22356 -201.76.196.0/23 22356 -201.76.200.0/21 22356 -201.76.208.0/20 28653 -201.76.224.0/19 28647 -201.77.0.0/23 28650 -201.77.8.0/21 264096 -201.77.16.0/20 19723 -201.77.32.0/19 28583 -201.77.64.0/20 28573 -201.77.80.0/20 28646 -201.77.100.0/22 270294 -201.77.112.0/20 28649 -201.77.128.0/20 28654 -201.77.152.0/22 270295 -201.77.160.0/20 28656 -201.77.176.0/20 28649 -201.77.192.0/18 13878 -201.78.0.0/15 7738 -201.80.0.0/17 28573 -201.80.128.0/18 28573 -201.80.192.0/19 28573 -201.80.240.0/20 28573 -201.81.0.0/16 28573 -201.82.0.0/15 28573 -201.84.0.0/16 15180 -201.85.0.0/21 15180 -201.85.8.0/23 15180 -201.85.10.0/24 15180 -201.85.11.0/24 10429 -201.85.12.0/22 15180 -201.85.16.0/23 15180 -201.85.18.0/23 10429 -201.85.20.0/24 15180 -201.85.21.0/24 10429 -201.85.22.0/23 10429 -201.85.24.0/21 15180 -201.85.32.0/20 15180 -201.85.48.0/21 15180 -201.85.56.0/22 15180 -201.85.60.0/23 15180 -201.85.62.0/23 10429 -201.85.64.0/23 15180 -201.85.66.0/23 10429 -201.85.68.0/24 15180 -201.85.69.0/24 10429 -201.85.70.0/24 15180 -201.85.71.0/24 10429 -201.85.72.0/21 15180 -201.85.80.0/23 15180 -201.85.82.0/23 10429 -201.85.84.0/24 10429 -201.85.85.0/24 15180 -201.85.86.0/23 15180 -201.85.88.0/21 15180 -201.85.96.0/23 15180 -201.85.98.0/24 15180 -201.85.99.0/24 10429 -201.85.100.0/22 15180 -201.85.104.0/21 15180 -201.85.112.0/22 15180 -201.85.116.0/23 10429 -201.85.118.0/23 15180 -201.85.120.0/21 15180 -201.85.128.0/20 15180 -201.85.144.0/23 15180 -201.85.146.0/24 10429 -201.85.147.0/24 15180 -201.85.148.0/22 15180 -201.85.152.0/21 15180 -201.85.160.0/19 15180 -201.85.192.0/18 15180 -201.86.0.0/16 18881 -201.87.0.0/17 19182 -201.87.128.0/24 265303 -201.87.129.0/24 22381 -201.87.130.0/24 22381 -201.87.132.0/24 22381 -201.87.133.0/24 265303 -201.87.134.0/23 265303 -201.87.136.0/23 265303 -201.87.138.0/24 22381 -201.87.139.0/24 265303 -201.87.140.0/23 265303 -201.87.143.0/24 22381 -201.87.145.0/24 22381 -201.87.146.0/23 265303 -201.87.148.0/23 265303 -201.87.150.0/24 265303 -201.87.151.0/24 22381 -201.87.152.0/23 265303 -201.87.154.0/23 22381 -201.87.156.0/24 22381 -201.87.157.0/24 265303 -201.87.158.0/23 22381 -201.87.160.0/19 28595 -201.87.192.0/20 22128 -201.87.208.0/20 262589 -201.87.224.0/21 28660 -201.87.232.0/21 61910 -201.87.240.0/20 53195 -201.88.0.0/15 8167 -201.90.0.0/16 4230 -201.91.0.0/16 10429 -201.92.0.0/15 27699 -201.94.0.0/17 14571 -201.94.129.0/24 28662 -201.94.130.0/23 28662 -201.94.132.0/22 28662 -201.94.136.0/22 28662 -201.94.141.0/24 28662 -201.94.142.0/24 28662 -201.94.144.0/20 28625 -201.94.160.0/21 28573 -201.94.168.0/22 28573 -201.94.176.0/20 28573 -201.94.192.0/18 22689 -201.95.0.0/16 27699 -201.96.0.0/15 8151 -201.99.0.0/16 8151 -201.100.0.0/14 8151 -201.104.0.0/17 8151 -201.105.0.0/16 8151 -201.106.0.0/17 8151 -201.107.0.0/20 19373 -201.107.16.0/22 19373 -201.107.32.0/19 8151 -201.107.64.0/23 8151 -201.108.0.0/14 8151 -201.113.0.0/18 8151 -201.114.0.0/16 8151 -201.116.0.0/15 8151 -201.119.0.0/17 8151 -201.119.160.0/19 8151 -201.119.192.0/18 8151 -201.120.0.0/16 8151 -201.122.0.0/15 8151 -201.124.0.0/16 8151 -201.125.120.0/24 8151 -201.127.0.0/16 8151 -201.128.0.0/17 8151 -201.128.160.0/19 8151 -201.128.192.0/18 8151 -201.130.0.0/21 10706 -201.130.8.0/22 10706 -201.130.12.0/23 27705 -201.130.14.0/24 27705 -201.130.15.0/24 11172 -201.130.20.0/22 61822 -201.130.28.0/22 61793 -201.130.32.0/21 28469 -201.130.40.0/22 28469 -201.130.44.0/24 28469 -201.130.45.0/24 36180 -201.130.46.0/24 28469 -201.130.47.0/24 28521 -201.130.49.0/24 28469 -201.130.50.0/23 28469 -201.130.52.0/23 28469 -201.130.54.0/24 28469 -201.130.56.0/23 28521 -201.130.58.0/23 28469 -201.130.60.0/22 28469 -201.130.64.0/20 13591 -201.130.80.0/24 28550 -201.130.82.0/23 61471 -201.130.84.0/22 61938 -201.130.88.0/21 61924 -201.130.96.0/19 8151 -201.130.128.0/22 6332 -201.130.132.0/22 8151 -201.130.136.0/22 8151 -201.130.140.0/22 6332 -201.130.144.0/20 8151 -201.130.160.0/22 6332 -201.130.164.0/22 8151 -201.130.168.0/22 6332 -201.130.172.0/22 8151 -201.130.176.0/23 6332 -201.130.178.0/24 8151 -201.130.179.0/24 6332 -201.130.180.0/22 8151 -201.130.184.0/22 8151 -201.130.188.0/24 6332 -201.130.189.0/24 8151 -201.130.190.0/23 6332 -201.130.192.0/18 16960 -201.131.0.0/24 27704 -201.131.1.0/24 263115 -201.131.2.0/24 263161 -201.131.3.0/24 24940 -201.131.4.0/24 7438 -201.131.6.0/23 28392 -201.131.8.0/24 28480 -201.131.12.0/24 28478 -201.131.13.0/24 263138 -201.131.14.0/24 263158 -201.131.15.0/24 28416 -201.131.16.0/24 22884 -201.131.17.0/24 8151 -201.131.18.0/23 8151 -201.131.20.0/22 28399 -201.131.24.0/21 262519 -201.131.32.0/24 11172 -201.131.33.0/24 28449 -201.131.34.0/24 11172 -201.131.36.0/24 28515 -201.131.37.0/24 61464 -201.131.38.0/23 263688 -201.131.40.0/24 8151 -201.131.41.0/24 61475 -201.131.44.0/24 27780 -201.131.45.0/24 263709 -201.131.47.0/24 263707 -201.131.48.0/24 28520 -201.131.49.0/24 27989 -201.131.50.0/24 263723 -201.131.51.0/24 263727 -201.131.56.0/22 28563 -201.131.60.0/22 262927 -201.131.66.0/24 61513 -201.131.67.0/24 263229 -201.131.68.0/22 61942 -201.131.72.0/24 11172 -201.131.73.0/24 263714 -201.131.74.0/23 263721 -201.131.77.0/24 263685 -201.131.78.0/24 263731 -201.131.79.0/24 16701 -201.131.80.0/21 28134 -201.131.88.0/24 8151 -201.131.90.0/23 27817 -201.131.92.0/22 61944 -201.131.96.0/24 28567 -201.131.97.0/24 263680 -201.131.100.0/24 28553 -201.131.101.0/24 262925 -201.131.102.0/24 263217 -201.131.104.0/23 28561 -201.131.106.0/24 263788 -201.131.107.0/24 263748 -201.131.108.0/23 28372 -201.131.110.0/23 61502 -201.131.112.0/24 28560 -201.131.113.0/24 262926 -201.131.114.0/24 262158 -201.131.115.0/24 27999 -201.131.116.0/23 28374 -201.131.118.0/24 263810 -201.131.119.0/24 263825 -201.131.120.0/24 11172 -201.131.121.0/24 21575 -201.131.122.0/23 263695 -201.131.124.0/22 33182 -201.131.128.0/21 13999 -201.131.136.0/21 262396 -201.131.148.0/22 262227 -201.131.152.0/22 61785 -201.131.156.0/22 28192 -201.131.160.0/22 61824 -201.131.164.0/22 61829 -201.131.168.0/22 61819 -201.131.172.0/22 61842 -201.131.176.0/22 61820 -201.131.180.0/22 61821 -201.131.184.0/22 52912 -201.131.188.0/22 262215 -201.131.192.0/21 28373 -201.131.200.0/22 28387 -201.131.204.0/23 18592 -201.131.208.0/22 61801 -201.131.212.0/22 61800 -201.131.216.0/22 262186 -201.131.220.0/22 6147 -201.131.224.0/21 262958 -201.131.236.0/22 28432 -201.131.240.0/21 52758 -201.131.248.0/23 22894 -201.131.252.0/23 397213 -201.132.0.0/17 13999 -201.132.128.0/22 13999 -201.132.132.0/22 28481 -201.132.136.0/21 28481 -201.132.144.0/21 28481 -201.132.152.0/22 13999 -201.132.156.0/22 28541 -201.132.160.0/19 13999 -201.132.192.0/18 13999 -201.133.16.0/21 8151 -201.133.32.0/21 8151 -201.133.64.0/18 8151 -201.133.192.0/18 8151 -201.134.0.0/16 8151 -201.136.0.0/15 8151 -201.138.0.0/18 8151 -201.138.64.0/19 8151 -201.138.128.0/18 8151 -201.138.192.0/19 8151 -201.139.0.0/24 11172 -201.139.1.0/24 18449 -201.139.2.0/23 18449 -201.139.4.0/22 11172 -201.139.8.0/21 11172 -201.139.16.0/22 11172 -201.139.21.0/24 11172 -201.139.22.0/23 11172 -201.139.24.0/21 11172 -201.139.68.0/22 28554 -201.139.76.0/22 28549 -201.139.80.0/22 61449 -201.139.84.0/22 262752 -201.139.88.0/22 61833 -201.139.92.0/22 61802 -201.139.96.0/21 263114 -201.139.104.0/24 263114 -201.139.105.0/24 32098 -201.139.106.0/23 263114 -201.139.108.0/24 263114 -201.139.110.0/23 263114 -201.139.112.0/20 263114 -201.139.128.0/19 28509 -201.139.168.0/22 265535 -201.139.172.0/22 61762 -201.139.176.0/23 18592 -201.139.184.0/21 61946 -201.139.192.0/20 28503 -201.139.208.0/21 28503 -201.139.216.0/21 61941 -201.139.224.0/20 28502 -201.139.252.0/22 28506 -201.140.0.0/21 6503 -201.140.8.0/23 6503 -201.140.10.0/24 6503 -201.140.14.0/23 6503 -201.140.20.0/22 6503 -201.140.24.0/21 6503 -201.140.32.0/19 6503 -201.140.64.0/20 28509 -201.140.80.0/20 18734 -201.140.96.0/19 18734 -201.140.128.0/19 28502 -201.140.160.0/20 28502 -201.140.176.0/22 28502 -201.140.180.0/22 28506 -201.140.184.0/21 28506 -201.140.192.0/20 28509 -201.140.208.0/22 262895 -201.140.212.0/22 61795 -201.140.220.0/22 61794 -201.140.224.0/22 52312 -201.140.228.0/22 61826 -201.140.232.0/22 61827 -201.140.236.0/22 266148 -201.140.240.0/22 61830 -201.140.244.0/22 61853 -201.140.248.0/22 61696 -201.140.252.0/22 61831 -201.141.8.0/21 28548 -201.141.32.0/19 28548 -201.141.80.0/20 28548 -201.141.160.0/20 28548 -201.141.192.0/20 28548 -201.141.208.0/21 28548 -201.141.224.0/20 28548 -201.142.60.0/24 11172 -201.142.128.0/17 8151 -201.143.0.0/20 8151 -201.143.16.0/22 6332 -201.143.20.0/22 8151 -201.143.24.0/21 8151 -201.143.32.0/22 6332 -201.143.36.0/22 8151 -201.143.40.0/21 8151 -201.143.48.0/20 8151 -201.143.64.0/18 8151 -201.143.128.0/20 8151 -201.143.144.0/23 6332 -201.143.146.0/23 8151 -201.143.148.0/23 8151 -201.143.150.0/24 6332 -201.143.151.0/24 8151 -201.143.152.0/21 8151 -201.143.160.0/20 8151 -201.143.176.0/22 8151 -201.143.180.0/22 6332 -201.143.184.0/24 8151 -201.143.185.0/24 6332 -201.143.186.0/23 6332 -201.143.188.0/22 8151 -201.143.192.0/18 8151 -201.144.0.0/15 8151 -201.146.0.0/16 8151 -201.147.0.0/20 8151 -201.147.16.0/21 8151 -201.147.24.0/22 8151 -201.147.28.0/24 8151 -201.147.29.0/24 28513 -201.147.30.0/24 28513 -201.147.32.0/19 8151 -201.147.64.0/19 8151 -201.147.96.0/20 8151 -201.147.112.0/21 8151 -201.147.120.0/23 28513 -201.147.124.0/22 8151 -201.147.128.0/18 8151 -201.147.192.0/21 8151 -201.147.200.0/22 8151 -201.147.204.0/24 8151 -201.147.205.0/24 28513 -201.147.206.0/23 8151 -201.147.208.0/20 8151 -201.147.224.0/19 8151 -201.148.0.0/18 18734 -201.148.64.0/19 18734 -201.148.96.0/22 61854 -201.148.100.0/22 61832 -201.148.104.0/22 265839 -201.148.108.0/22 52604 -201.148.116.0/22 61863 -201.148.120.0/22 61837 -201.148.124.0/22 61844 -201.148.128.0/19 13591 -201.148.160.0/22 61864 -201.148.168.0/22 265645 -201.148.172.0/22 262622 -201.148.176.0/22 61703 -201.148.180.0/22 61858 -201.148.184.0/22 61845 -201.148.188.0/22 262780 -201.148.192.0/20 7908 -201.148.208.0/22 61803 -201.148.212.0/22 61466 -201.148.216.0/22 262952 -201.148.220.0/22 61779 -201.148.224.0/22 61838 -201.148.228.0/22 61839 -201.148.236.0/22 61860 -201.148.240.0/22 262557 -201.148.244.0/22 61846 -201.148.248.0/22 61847 -201.148.252.0/22 28153 -201.149.0.0/18 14178 -201.149.64.0/19 14178 -201.149.100.0/22 61872 -201.149.104.0/22 61849 -201.149.108.0/22 61873 -201.149.112.0/22 61850 -201.149.116.0/22 61859 -201.149.120.0/22 262547 -201.149.124.0/22 61851 -201.149.128.0/18 28469 -201.149.192.0/19 28469 -201.149.224.0/20 28469 -201.149.240.0/21 28469 -201.149.248.0/24 28469 -201.149.249.0/24 17072 -201.149.250.0/23 28469 -201.149.252.0/23 28469 -201.149.254.0/23 17072 -201.150.0.0/21 28539 -201.150.8.0/22 28539 -201.150.12.0/22 61948 -201.150.16.0/22 61825 -201.150.20.0/22 262955 -201.150.24.0/22 52963 -201.150.28.0/22 16629 -201.150.32.0/20 28546 -201.150.48.0/22 61786 -201.150.52.0/22 61699 -201.150.56.0/22 61720 -201.150.60.0/24 56389 -201.150.61.0/24 200617 -201.150.62.0/23 60974 -201.150.80.0/22 262544 -201.150.84.0/22 262199 -201.150.88.0/22 263090 -201.150.92.0/22 16397 -201.150.96.0/22 14080 -201.150.100.0/22 28580 -201.150.104.0/22 27759 -201.150.108.0/22 52544 -201.150.112.0/22 52944 -201.150.120.0/22 61862 -201.150.124.0/22 61876 -201.150.140.0/22 28555 -201.150.144.0/22 61816 -201.150.148.0/22 61817 -201.150.152.0/22 61834 -201.150.156.0/22 61806 -201.150.160.0/19 27839 -201.150.192.0/21 8151 -201.150.200.0/22 8151 -201.150.205.0/24 8151 -201.150.206.0/23 8151 -201.150.208.0/20 8151 -201.150.224.0/19 28378 -201.151.0.0/16 11172 -201.152.0.0/16 8151 -201.154.128.0/19 8151 -201.154.192.0/19 8151 -201.155.0.0/17 8151 -201.155.128.0/19 8151 -201.155.160.0/20 8151 -201.155.178.0/23 8151 -201.155.180.0/22 8151 -201.155.184.0/21 8151 -201.155.192.0/18 8151 -201.156.0.0/20 6503 -201.156.16.0/22 6503 -201.156.21.0/24 6503 -201.156.22.0/23 6503 -201.156.24.0/21 6503 -201.156.32.0/20 6503 -201.156.64.0/20 6503 -201.156.80.0/21 6503 -201.156.88.0/22 6503 -201.156.101.0/24 6503 -201.156.102.0/23 6503 -201.156.104.0/21 6503 -201.156.112.0/21 6503 -201.156.120.0/22 6503 -201.156.128.0/20 6503 -201.156.144.0/24 6503 -201.156.149.0/24 6503 -201.156.151.0/24 6503 -201.156.152.0/21 6503 -201.156.160.0/20 6503 -201.156.176.0/21 6503 -201.156.184.0/23 6503 -201.156.187.0/24 6503 -201.156.188.0/23 6503 -201.156.191.0/24 6503 -201.156.192.0/18 6503 -201.157.0.0/17 22566 -201.157.128.0/18 28376 -201.157.192.0/18 52871 -201.158.0.0/21 28514 -201.158.8.0/21 61936 -201.158.20.0/22 61761 -201.158.24.0/21 53176 -201.158.32.0/21 28524 -201.158.40.0/21 262466 -201.158.48.0/22 27884 -201.158.52.0/22 32034 -201.158.56.0/22 61810 -201.158.60.0/22 61811 -201.158.64.0/19 11888 -201.158.100.0/22 269696 -201.158.104.0/22 263167 -201.158.108.0/22 61943 -201.158.112.0/21 28378 -201.158.120.0/21 264657 -201.158.128.0/17 6503 -201.159.0.0/21 13591 -201.159.8.0/21 263778 -201.159.16.0/21 262913 -201.159.24.0/21 61935 -201.159.32.0/21 28378 -201.159.40.0/22 28378 -201.159.48.0/22 28376 -201.159.52.0/22 19990 -201.159.56.0/21 52255 -201.159.64.0/21 28529 -201.159.72.0/21 61763 -201.159.84.0/22 61764 -201.159.88.0/21 61945 -201.159.96.0/20 28539 -201.159.112.0/22 52468 -201.159.116.0/22 262535 -201.159.120.0/22 61812 -201.159.124.0/22 28539 -201.159.128.0/20 22011 -201.159.144.0/22 52603 -201.159.148.0/22 22092 -201.159.152.0/22 265911 -201.159.156.0/23 61813 -201.159.158.0/24 61813 -201.159.159.0/24 20940 -201.159.169.0/24 262256 -201.159.170.0/23 262256 -201.159.174.0/24 262256 -201.159.176.0/22 28373 -201.159.180.0/22 61796 -201.159.184.0/21 61940 -201.159.192.0/20 28541 -201.159.208.0/21 28541 -201.159.216.0/22 52328 -201.159.220.0/22 61468 -201.159.224.0/20 28552 -201.159.240.0/21 28552 -201.159.248.0/22 262759 -201.159.252.0/22 262568 -201.160.12.0/22 28509 -201.160.16.0/20 28509 -201.160.32.0/19 28509 -201.160.64.0/20 28509 -201.160.96.0/21 28509 -201.160.104.0/23 28509 -201.160.106.0/24 28509 -201.160.108.0/22 28554 -201.160.128.0/20 28545 -201.160.152.0/21 28509 -201.160.160.0/20 28509 -201.160.176.0/23 28509 -201.160.179.0/24 28509 -201.160.184.0/24 28509 -201.160.185.0/24 18734 -201.160.187.0/24 28509 -201.160.189.0/24 18734 -201.160.192.0/20 28509 -201.160.210.0/24 28554 -201.160.216.0/21 28509 -201.160.224.0/20 28554 -201.160.245.0/24 28554 -201.160.247.0/24 28554 -201.160.248.0/21 28554 -201.161.0.0/18 22566 -201.161.64.0/18 19373 -201.161.128.0/23 16960 -201.161.130.0/24 16960 -201.161.131.0/24 28525 -201.161.132.0/22 16960 -201.161.136.0/21 16960 -201.161.144.0/20 16960 -201.161.160.0/21 16960 -201.161.168.0/23 16960 -201.161.172.0/22 16960 -201.161.176.0/23 16960 -201.161.179.0/24 16960 -201.161.180.0/22 16960 -201.161.184.0/21 16960 -201.161.192.0/18 28549 -201.162.0.0/18 11888 -201.162.64.0/18 262673 -201.162.128.0/17 7438 -201.163.0.0/18 11172 -201.163.64.0/19 11172 -201.163.96.0/20 11172 -201.163.112.0/21 11172 -201.163.120.0/24 11172 -201.163.121.0/24 265504 -201.163.122.0/23 11172 -201.163.124.0/22 11172 -201.163.128.0/17 11172 -201.164.0.0/19 13999 -201.164.32.0/20 13999 -201.164.48.0/21 28481 -201.164.56.0/21 13999 -201.164.64.0/21 13999 -201.164.80.0/20 13999 -201.164.96.0/19 13999 -201.164.128.0/17 13999 -201.165.0.0/18 13999 -201.165.64.0/20 13999 -201.165.80.0/22 28541 -201.165.84.0/22 13999 -201.165.88.0/22 13999 -201.165.96.0/19 13999 -201.165.128.0/18 13999 -201.165.192.0/20 13999 -201.165.216.0/22 13999 -201.165.221.0/24 13999 -201.165.222.0/24 13999 -201.165.224.0/20 13999 -201.165.240.0/21 13999 -201.165.248.0/22 13999 -201.165.252.0/24 13999 -201.165.254.0/23 13999 -201.166.0.0/20 28509 -201.166.16.0/20 28512 -201.166.44.0/22 28555 -201.166.48.0/20 28555 -201.166.64.0/19 28509 -201.166.96.0/20 28554 -201.166.116.0/23 28555 -201.166.128.0/18 7438 -201.166.192.0/18 11888 -201.167.0.0/20 16960 -201.167.16.0/24 28525 -201.167.17.0/24 28523 -201.167.20.0/22 16960 -201.167.24.0/21 16960 -201.167.32.0/20 16960 -201.167.48.0/21 16960 -201.167.56.0/23 16960 -201.167.58.0/24 16960 -201.167.60.0/22 16960 -201.167.64.0/22 16960 -201.167.72.0/21 16960 -201.167.80.0/20 16960 -201.167.96.0/19 16960 -201.167.128.0/17 16960 -201.168.0.0/16 19332 -201.170.0.0/18 8151 -201.170.64.0/19 8151 -201.170.96.0/20 8151 -201.170.112.0/21 8151 -201.170.120.0/23 6332 -201.170.122.0/24 6332 -201.170.123.0/24 8151 -201.170.124.0/22 6332 -201.170.128.0/20 8151 -201.170.144.0/22 8151 -201.170.148.0/23 8151 -201.170.150.0/23 6332 -201.170.152.0/21 8151 -201.170.160.0/19 8151 -201.170.192.0/20 8151 -201.170.208.0/22 8151 -201.170.212.0/24 8151 -201.170.213.0/24 6332 -201.170.214.0/23 6332 -201.170.216.0/22 8151 -201.170.220.0/22 6332 -201.170.224.0/22 8151 -201.170.228.0/22 6332 -201.170.232.0/21 8151 -201.170.240.0/22 8151 -201.170.244.0/23 8151 -201.170.246.0/24 8151 -201.170.247.0/24 6332 -201.170.248.0/22 6332 -201.170.252.0/23 6332 -201.170.254.0/24 6332 -201.170.255.0/24 8151 -201.171.0.0/18 8151 -201.171.64.0/19 8151 -201.171.96.0/20 8151 -201.171.112.0/22 8151 -201.171.116.0/22 6332 -201.171.120.0/22 8151 -201.171.124.0/22 6332 -201.171.128.0/18 8151 -201.171.192.0/19 8151 -201.171.224.0/20 8151 -201.171.240.0/22 8151 -201.171.244.0/22 6332 -201.171.248.0/24 8151 -201.171.249.0/24 6332 -201.171.250.0/24 6332 -201.171.251.0/24 8151 -201.171.252.0/24 8151 -201.171.253.0/24 6332 -201.171.254.0/23 6332 -201.172.0.0/22 11888 -201.172.4.0/23 11888 -201.172.6.0/24 11888 -201.172.7.0/24 265594 -201.172.8.0/21 11888 -201.172.16.0/22 11888 -201.172.20.0/24 11888 -201.172.21.0/24 265594 -201.172.22.0/23 11888 -201.172.24.0/21 11888 -201.172.32.0/19 11888 -201.172.64.0/18 11888 -201.172.128.0/19 11888 -201.172.160.0/24 265594 -201.172.161.0/24 11888 -201.172.162.0/23 11888 -201.172.164.0/22 11888 -201.172.168.0/21 11888 -201.172.176.0/20 11888 -201.172.192.0/18 11888 -201.173.0.0/21 11888 -201.173.8.0/23 11888 -201.173.10.0/24 265594 -201.173.11.0/24 11888 -201.173.12.0/22 11888 -201.173.16.0/20 11888 -201.173.32.0/19 11888 -201.173.64.0/22 265594 -201.173.68.0/22 11888 -201.173.72.0/21 11888 -201.173.80.0/20 11888 -201.173.96.0/19 11888 -201.173.128.0/17 11888 -201.174.0.0/20 32098 -201.174.16.0/21 32098 -201.174.24.0/22 32098 -201.174.28.0/23 32098 -201.174.30.0/23 30167 -201.174.32.0/21 32098 -201.174.40.0/23 32098 -201.174.42.0/24 32098 -201.174.43.0/24 30167 -201.174.44.0/24 30167 -201.174.45.0/24 32098 -201.174.46.0/23 32098 -201.174.48.0/21 32098 -201.174.56.0/22 32098 -201.174.60.0/24 262913 -201.174.61.0/24 32098 -201.174.62.0/24 32098 -201.174.63.0/24 265575 -201.174.64.0/19 32098 -201.174.96.0/22 32098 -201.174.100.0/24 30167 -201.174.101.0/24 32098 -201.174.102.0/23 32098 -201.174.104.0/23 32098 -201.174.106.0/24 30167 -201.174.107.0/24 32098 -201.174.108.0/22 32098 -201.174.112.0/20 32098 -201.174.128.0/18 32098 -201.174.192.0/21 32098 -201.174.200.0/21 28509 -201.174.208.0/20 32098 -201.174.224.0/20 32098 -201.174.240.0/22 32098 -201.174.244.0/24 32098 -201.174.245.0/24 30167 -201.174.246.0/23 32098 -201.174.248.0/21 32098 -201.175.0.0/23 22908 -201.175.2.0/24 22908 -201.175.4.0/24 22908 -201.175.6.0/23 22908 -201.175.9.0/24 22908 -201.175.10.0/23 22908 -201.175.14.0/24 22908 -201.175.16.0/22 22908 -201.175.21.0/24 22908 -201.175.22.0/23 22908 -201.175.24.0/22 22908 -201.175.28.0/24 46071 -201.175.29.0/24 22908 -201.175.30.0/23 22908 -201.175.32.0/22 22908 -201.175.36.0/24 22908 -201.175.38.0/23 22908 -201.175.40.0/21 22908 -201.175.48.0/22 262437 -201.175.52.0/22 262905 -201.175.56.0/22 8167 -201.175.60.0/22 61818 -201.175.64.0/18 11888 -201.175.128.0/18 28469 -201.175.192.0/21 28469 -201.175.201.0/24 28469 -201.175.202.0/23 28469 -201.175.204.0/23 28469 -201.175.206.0/24 28469 -201.175.208.0/22 28469 -201.175.213.0/24 28469 -201.175.215.0/24 28469 -201.175.216.0/22 28469 -201.176.0.0/14 22927 -201.180.0.0/15 22927 -201.182.0.0/22 265810 -201.182.4.0/22 267496 -201.182.8.0/22 267497 -201.182.12.0/22 267492 -201.182.16.0/22 265793 -201.182.20.0/22 265524 -201.182.24.0/23 265811 -201.182.26.0/24 265811 -201.182.27.0/24 264635 -201.182.28.0/22 267493 -201.182.32.0/22 267504 -201.182.36.0/22 267505 -201.182.40.0/22 267514 -201.182.44.0/22 267520 -201.182.48.0/22 267521 -201.182.52.0/24 267515 -201.182.53.0/24 267509 -201.182.54.0/24 267525 -201.182.55.0/24 52468 -201.182.56.0/22 267499 -201.182.60.0/22 267500 -201.182.64.0/22 267501 -201.182.68.0/22 267502 -201.182.72.0/22 267506 -201.182.76.0/22 265797 -201.182.80.0/22 52327 -201.182.84.0/22 265799 -201.182.88.0/22 267516 -201.182.92.0/22 267510 -201.182.96.0/22 267507 -201.182.100.0/22 267511 -201.182.104.0/22 267508 -201.182.108.0/22 265800 -201.182.112.0/22 265808 -201.182.116.0/22 267512 -201.182.120.0/22 267517 -201.182.124.0/22 267518 -201.182.129.0/24 61441 -201.182.130.0/24 61521 -201.182.137.0/24 64104 -201.182.138.0/24 61553 -201.182.139.0/24 52509 -201.182.140.0/24 52376 -201.182.141.0/24 52332 -201.182.142.0/24 52500 -201.182.143.0/24 52508 -201.182.144.0/22 267539 -201.182.148.0/23 265815 -201.182.150.0/23 264668 -201.182.152.0/23 267519 -201.182.154.0/24 267519 -201.182.160.0/22 267523 -201.182.164.0/22 267554 -201.182.168.0/22 267536 -201.182.172.0/22 267524 -201.182.176.0/22 267528 -201.182.180.0/22 267529 -201.182.184.0/22 267548 -201.182.188.0/22 265805 -201.182.192.0/22 267530 -201.182.196.0/22 267531 -201.182.200.0/22 267532 -201.182.204.0/22 267555 -201.182.208.0/22 267533 -201.182.212.0/22 267564 -201.182.216.0/22 267540 -201.182.220.0/22 267541 -201.182.224.0/23 267534 -201.182.226.0/23 52468 -201.182.228.0/22 267571 -201.182.232.0/22 267538 -201.182.236.0/22 267549 -201.182.240.0/23 264668 -201.182.242.0/24 3549 -201.182.243.0/24 264668 -201.182.244.0/22 267550 -201.182.248.0/22 267708 -201.182.252.0/22 267613 -201.183.0.0/19 27738 -201.183.32.0/21 27738 -201.183.40.0/22 27738 -201.183.46.0/23 27738 -201.183.48.0/20 27738 -201.183.64.0/18 27738 -201.183.128.0/17 27738 -201.184.0.0/15 13489 -201.186.0.0/16 14117 -201.187.0.0/17 14117 -201.187.128.0/17 27680 -201.188.0.0/17 7418 -201.188.128.0/18 7418 -201.188.192.0/19 7418 -201.188.224.0/20 7418 -201.188.240.0/20 16629 -201.189.0.0/16 7418 -201.190.0.0/18 14754 -201.190.64.0/18 13489 -201.190.128.0/19 28075 -201.190.160.0/21 28075 -201.190.168.0/22 28075 -201.190.174.0/23 28075 -201.190.176.0/21 28075 -201.190.184.0/23 28075 -201.190.188.0/22 28075 -201.190.192.0/20 28075 -201.190.208.0/21 28075 -201.190.216.0/22 28075 -201.190.220.0/24 28075 -201.190.222.0/23 28075 -201.190.224.0/20 28075 -201.190.240.0/21 28075 -201.190.248.0/22 28075 -201.190.252.0/23 28075 -201.191.0.0/16 11830 -201.192.0.0/12 11830 -201.208.0.0/14 8048 -201.212.0.0/18 10481 -201.212.64.0/20 10481 -201.212.80.0/21 10481 -201.212.88.0/23 10481 -201.212.90.0/24 10481 -201.212.91.0/24 10318 -201.212.92.0/22 10481 -201.212.96.0/19 10481 -201.212.128.0/19 10481 -201.212.160.0/20 10481 -201.212.176.0/22 10481 -201.212.180.0/24 10318 -201.212.181.0/24 10481 -201.212.182.0/24 10318 -201.212.183.0/24 10481 -201.212.184.0/21 10481 -201.212.192.0/21 10481 -201.212.200.0/22 10481 -201.212.204.0/24 10481 -201.212.205.0/24 10318 -201.212.206.0/23 10318 -201.212.208.0/20 10481 -201.212.224.0/19 10481 -201.213.0.0/16 10481 -201.214.0.0/15 22047 -201.216.0.0/23 10620 -201.216.4.0/22 10620 -201.216.8.0/21 10620 -201.216.16.0/21 10620 -201.216.26.0/23 10620 -201.216.28.0/22 10620 -201.216.32.0/20 10620 -201.216.48.0/21 10620 -201.216.56.0/22 10620 -201.216.60.0/23 10620 -201.216.128.0/18 14754 -201.216.192.0/19 16814 -201.216.224.0/22 16814 -201.216.228.0/23 16814 -201.216.230.0/24 20321 -201.216.231.0/24 16814 -201.216.232.0/21 16814 -201.216.240.0/20 16814 -201.217.0.0/21 27768 -201.217.8.0/22 27768 -201.217.12.0/24 27866 -201.217.13.0/24 27768 -201.217.14.0/23 27768 -201.217.16.0/22 263228 -201.217.20.0/22 27768 -201.217.24.0/22 27768 -201.217.28.0/24 27866 -201.217.29.0/24 27768 -201.217.30.0/23 27768 -201.217.32.0/22 27768 -201.217.36.0/22 27866 -201.217.40.0/21 27768 -201.217.48.0/24 27866 -201.217.49.0/24 27768 -201.217.50.0/24 27768 -201.217.51.0/24 27866 -201.217.52.0/23 27768 -201.217.54.0/23 27866 -201.217.56.0/23 27866 -201.217.58.0/23 27768 -201.217.60.0/23 27866 -201.217.62.0/23 27768 -201.217.64.0/18 14522 -201.217.128.0/18 6057 -201.217.192.0/19 18747 -201.217.224.0/20 28015 -201.217.240.0/22 263237 -201.217.244.0/22 52373 -201.218.0.0/18 27947 -201.218.64.0/18 18809 -201.218.128.0/19 52439 -201.218.192.0/20 21599 -201.218.208.0/24 18809 -201.218.209.0/24 21599 -201.218.210.0/24 27860 -201.218.211.0/24 21599 -201.218.212.0/24 28031 -201.218.213.0/24 21599 -201.218.214.0/23 21599 -201.218.216.0/24 262198 -201.218.217.0/24 21599 -201.218.218.0/23 21599 -201.218.220.0/22 21599 -201.218.224.0/24 28018 -201.218.225.0/24 21599 -201.218.226.0/24 18809 -201.218.227.0/24 21599 -201.218.228.0/23 21599 -201.218.230.0/24 18809 -201.218.231.0/24 21599 -201.218.232.0/24 27915 -201.218.233.0/24 21599 -201.218.234.0/24 18809 -201.218.235.0/24 21599 -201.218.236.0/23 21599 -201.218.238.0/24 18809 -201.218.239.0/24 21599 -201.218.240.0/24 27944 -201.218.241.0/24 21599 -201.218.242.0/23 21599 -201.218.244.0/24 19905 -201.218.245.0/24 21599 -201.218.246.0/24 18809 -201.218.247.0/24 21599 -201.218.248.0/24 18809 -201.218.249.0/24 21599 -201.218.250.0/23 21599 -201.218.252.0/24 21599 -201.218.253.0/24 18809 -201.218.254.0/24 27959 -201.218.255.0/24 21599 -201.219.0.0/19 28006 -201.219.32.0/20 28006 -201.219.48.0/21 28006 -201.219.56.0/24 26613 -201.219.57.0/24 28006 -201.219.58.0/23 28006 -201.219.60.0/22 28006 -201.219.64.0/19 14232 -201.219.96.0/20 14232 -201.219.112.0/22 19429 -201.219.116.0/24 19429 -201.219.117.0/24 60725 -201.219.118.0/23 19429 -201.219.120.0/21 19429 -201.219.128.0/19 20015 -201.219.160.0/19 28015 -201.219.193.0/24 262215 -201.219.194.0/23 262215 -201.219.196.0/22 262215 -201.219.200.0/22 262215 -201.219.204.0/23 262215 -201.219.206.0/24 262215 -201.219.208.0/20 262215 -201.219.232.0/21 52341 -201.219.240.0/21 27941 -201.219.248.0/22 61951 -201.220.0.0/21 27781 -201.220.8.0/23 27781 -201.220.10.0/24 20940 -201.220.11.0/24 27781 -201.220.12.0/22 27781 -201.220.16.0/21 52413 -201.220.24.0/24 262258 -201.220.25.0/24 52445 -201.220.26.0/24 52450 -201.220.27.0/24 52452 -201.220.28.0/24 262151 -201.220.29.0/24 52463 -201.220.30.0/23 52456 -201.220.32.0/21 14187 -201.220.44.0/22 14187 -201.220.48.0/20 14187 -201.220.65.0/24 8163 -201.220.66.0/23 8163 -201.220.68.0/22 8163 -201.220.72.0/21 8163 -201.220.80.0/20 8163 -201.220.96.0/20 14117 -201.220.112.0/22 14117 -201.220.116.0/23 14259 -201.220.118.0/23 14117 -201.220.120.0/21 14117 -201.220.128.0/20 27884 -201.220.144.0/20 52420 -201.220.160.0/19 27818 -201.220.192.0/19 27725 -201.220.224.0/21 27680 -201.220.232.0/23 27680 -201.220.235.0/24 27680 -201.220.241.0/24 27680 -201.220.242.0/23 27680 -201.220.244.0/24 27680 -201.220.245.0/24 7418 -201.220.246.0/23 27680 -201.221.0.0/19 20255 -201.221.32.0/19 6057 -201.221.64.0/20 27789 -201.221.80.0/21 27789 -201.221.88.0/22 393629 -201.221.92.0/22 27789 -201.221.97.0/24 10617 -201.221.98.0/23 10617 -201.221.100.0/23 10617 -201.221.103.0/24 10617 -201.221.104.0/22 10617 -201.221.109.0/24 10617 -201.221.110.0/23 10617 -201.221.112.0/21 6471 -201.221.120.0/24 52394 -201.221.121.0/24 52407 -201.221.122.0/24 262245 -201.221.123.0/24 52411 -201.221.124.0/23 27989 -201.221.126.0/24 262247 -201.221.127.0/24 52417 -201.221.128.0/23 22368 -201.221.131.0/24 22368 -201.221.132.0/22 22368 -201.221.136.0/22 22368 -201.221.140.0/23 22368 -201.221.143.0/24 22368 -201.221.144.0/22 22368 -201.221.148.0/23 22368 -201.221.151.0/24 22368 -201.221.152.0/21 22368 -201.221.160.0/19 10620 -201.221.192.0/19 14117 -201.221.224.0/21 27928 -201.221.232.0/22 27928 -201.221.237.0/24 27928 -201.221.238.0/23 27928 -201.221.240.0/21 27928 -201.221.251.0/24 27928 -201.221.252.0/22 27928 -201.222.0.0/21 27648 -201.222.8.0/22 27648 -201.222.12.0/23 27648 -201.222.14.0/24 267923 -201.222.15.0/24 27648 -201.222.20.0/22 61902 -201.222.24.0/22 61823 -201.222.28.0/22 61828 -201.222.48.0/21 28103 -201.222.56.0/22 52440 -201.222.60.0/22 52454 -201.222.64.0/18 25620 -201.222.128.0/17 7418 -201.223.0.0/16 7418 -201.224.0.0/14 11556 -201.228.0.0/17 3816 -201.228.128.0/18 3816 -201.228.208.0/20 3816 -201.228.224.0/19 3816 -201.229.0.0/23 11816 -201.229.4.0/22 11816 -201.229.8.0/21 11816 -201.229.32.0/19 11816 -201.229.64.0/21 11816 -201.229.74.0/23 11816 -201.229.80.0/23 11816 -201.229.84.0/22 11816 -201.229.90.0/23 11816 -201.229.92.0/22 11816 -201.229.96.0/21 11816 -201.229.104.0/22 11816 -201.229.108.0/23 11816 -201.229.112.0/22 11816 -201.229.116.0/23 11816 -201.229.120.0/21 11816 -201.229.128.0/17 6400 -201.230.0.0/16 6147 -201.231.0.0/16 10481 -201.232.0.0/15 13489 -201.234.0.0/23 3549 -201.234.2.0/24 3549 -201.234.3.0/24 262208 -201.234.4.0/23 3549 -201.234.6.0/24 262208 -201.234.7.0/24 3549 -201.234.8.0/24 3549 -201.234.9.0/24 262208 -201.234.10.0/23 3549 -201.234.12.0/22 3549 -201.234.16.0/23 3549 -201.234.18.0/24 3549 -201.234.19.0/24 52255 -201.234.20.0/22 3549 -201.234.24.0/24 265758 -201.234.25.0/24 3549 -201.234.26.0/23 3549 -201.234.28.0/22 3549 -201.234.32.0/24 52444 -201.234.33.0/24 3549 -201.234.34.0/23 3549 -201.234.36.0/23 3549 -201.234.38.0/24 21756 -201.234.39.0/24 3549 -201.234.40.0/22 3549 -201.234.44.0/24 10753 -201.234.45.0/24 3549 -201.234.46.0/23 3549 -201.234.48.0/20 3549 -201.234.64.0/24 10753 -201.234.65.0/24 3549 -201.234.66.0/23 3549 -201.234.68.0/22 3549 -201.234.72.0/21 3549 -201.234.80.0/24 10753 -201.234.81.0/24 3549 -201.234.82.0/23 3549 -201.234.84.0/22 3549 -201.234.88.0/23 3549 -201.234.90.0/24 52444 -201.234.91.0/24 3549 -201.234.92.0/22 3549 -201.234.96.0/22 3549 -201.234.100.0/24 3549 -201.234.101.0/24 52255 -201.234.102.0/23 10753 -201.234.104.0/24 52444 -201.234.105.0/24 3549 -201.234.106.0/23 3549 -201.234.108.0/22 3549 -201.234.112.0/24 3549 -201.234.113.0/24 267815 -201.234.114.0/23 3549 -201.234.116.0/22 3549 -201.234.120.0/21 3549 -201.234.128.0/19 3549 -201.234.160.0/20 3549 -201.234.176.0/22 3549 -201.234.180.0/24 3549 -201.234.181.0/24 10753 -201.234.182.0/23 3549 -201.234.184.0/23 3549 -201.234.186.0/24 3549 -201.234.187.0/24 22698 -201.234.188.0/24 22698 -201.234.189.0/24 3549 -201.234.190.0/23 3549 -201.234.192.0/21 3549 -201.234.200.0/22 3549 -201.234.204.0/23 3549 -201.234.206.0/24 19582 -201.234.207.0/24 3549 -201.234.208.0/20 3549 -201.234.224.0/24 263771 -201.234.225.0/24 3549 -201.234.226.0/23 3549 -201.234.228.0/24 3549 -201.234.229.0/24 27872 -201.234.230.0/23 3549 -201.234.232.0/23 3549 -201.234.234.0/24 3549 -201.234.235.0/24 263771 -201.234.236.0/23 3549 -201.234.238.0/24 3549 -201.234.239.0/24 263223 -201.234.240.0/21 3549 -201.234.248.0/24 3549 -201.234.249.0/24 27953 -201.234.250.0/24 3549 -201.234.251.0/24 27953 -201.234.252.0/24 3549 -201.234.253.0/24 263756 -201.234.254.0/23 3549 -201.235.0.0/16 10481 -201.236.20.0/22 15311 -201.236.28.0/24 15311 -201.236.52.0/22 15311 -201.236.64.0/19 15311 -201.236.96.0/20 15311 -201.236.128.0/19 15311 -201.236.160.0/21 15311 -201.236.168.0/21 16629 -201.236.176.0/21 16629 -201.236.184.0/21 15311 -201.236.192.0/18 13489 -201.237.0.0/16 11830 -201.238.0.0/18 27889 -201.238.64.0/18 5639 -201.238.128.0/18 27668 -201.238.192.0/20 14259 -201.238.208.0/24 27888 -201.238.209.0/24 14259 -201.238.210.0/23 14259 -201.238.212.0/22 14259 -201.238.216.0/23 14259 -201.238.218.0/24 18822 -201.238.219.0/24 14259 -201.238.220.0/24 27909 -201.238.221.0/24 14259 -201.238.222.0/23 14259 -201.238.224.0/24 14259 -201.238.225.0/24 18822 -201.238.226.0/23 14259 -201.238.228.0/24 18822 -201.238.229.0/24 14259 -201.238.230.0/23 14259 -201.238.232.0/22 14259 -201.238.236.0/23 14259 -201.238.239.0/24 14259 -201.238.240.0/21 14259 -201.238.248.0/22 14259 -201.238.252.0/24 18822 -201.238.253.0/24 14259 -201.238.254.0/24 14259 -201.238.255.0/24 18822 -201.239.0.0/16 22047 -201.240.0.0/16 6147 -201.241.0.0/16 22047 -201.242.0.0/16 8048 -201.243.0.0/18 8048 -201.243.64.0/20 8048 -201.243.80.0/24 8048 -201.243.88.0/21 8048 -201.243.96.0/19 8048 -201.243.128.0/17 8048 -201.244.0.0/16 19429 -201.245.0.0/17 19429 -201.245.128.0/19 19429 -201.245.160.0/20 19429 -201.245.176.0/21 19429 -201.245.184.0/23 19429 -201.245.186.0/24 21578 -201.245.187.0/24 19429 -201.245.188.0/22 19429 -201.245.192.0/18 19429 -201.246.0.0/17 7418 -201.246.128.0/19 7418 -201.246.160.0/20 7418 -201.246.176.0/21 7418 -201.246.184.0/22 7418 -201.246.188.0/22 16629 -201.246.192.0/18 7418 -201.247.0.0/16 14754 -201.248.0.0/18 8048 -201.248.64.0/21 8048 -201.248.72.0/22 8048 -201.248.76.0/24 8048 -201.248.80.0/20 8048 -201.248.96.0/19 8048 -201.248.128.0/19 8048 -201.248.192.0/18 8048 -201.249.0.0/17 8048 -201.249.128.0/23 8048 -201.249.130.0/24 8048 -201.249.132.0/22 8048 -201.249.136.0/21 8048 -201.249.146.0/24 8048 -201.249.150.0/23 8048 -201.249.152.0/23 8048 -201.249.156.0/22 8048 -201.249.160.0/22 8048 -201.249.166.0/23 8048 -201.249.168.0/22 8048 -201.249.172.0/24 8048 -201.249.174.0/23 8048 -201.249.176.0/20 8048 -201.249.192.0/18 8048 -201.250.0.0/16 22927 -201.251.0.0/21 22927 -201.251.8.0/22 22927 -201.251.12.0/24 22927 -201.251.13.0/24 27927 -201.251.14.0/23 27927 -201.251.16.0/23 27927 -201.251.18.0/23 22927 -201.251.20.0/24 27927 -201.251.21.0/24 22927 -201.251.22.0/23 22927 -201.251.24.0/24 27927 -201.251.25.0/24 22927 -201.251.26.0/23 27927 -201.251.28.0/24 27927 -201.251.29.0/24 22927 -201.251.30.0/23 22927 -201.251.32.0/23 27927 -201.251.34.0/24 27927 -201.251.35.0/24 22927 -201.251.36.0/22 22927 -201.251.40.0/21 22927 -201.251.48.0/20 22927 -201.251.64.0/20 22927 -201.251.80.0/21 22927 -201.251.88.0/23 22927 -201.251.90.0/24 22927 -201.251.91.0/24 264634 -201.251.92.0/23 22927 -201.251.94.0/24 22927 -201.251.95.0/24 263778 -201.251.96.0/24 263778 -201.251.97.0/24 22927 -201.251.98.0/23 22927 -201.251.100.0/23 22927 -201.251.102.0/24 263742 -201.251.103.0/24 22927 -201.251.104.0/21 22927 -201.251.112.0/20 22927 -201.251.128.0/23 264634 -201.251.130.0/23 22927 -201.251.132.0/22 22927 -201.251.136.0/22 22927 -201.251.140.0/24 52367 -201.251.141.0/24 22927 -201.251.142.0/23 22927 -201.251.144.0/23 22927 -201.251.146.0/24 267786 -201.251.147.0/24 22927 -201.251.148.0/22 22927 -201.251.152.0/21 22927 -201.251.160.0/20 22927 -201.251.176.0/23 22927 -201.251.178.0/24 22927 -201.251.179.0/24 11315 -201.251.180.0/23 22927 -201.251.182.0/23 262175 -201.251.184.0/23 262175 -201.251.186.0/23 22927 -201.251.188.0/24 22927 -201.251.189.0/24 11315 -201.251.190.0/23 22927 -201.251.192.0/21 22927 -201.251.200.0/22 22927 -201.251.204.0/23 22927 -201.251.206.0/23 267786 -201.251.208.0/22 22927 -201.251.212.0/23 22927 -201.251.214.0/24 22927 -201.251.215.0/24 264830 -201.251.216.0/22 264830 -201.251.220.0/24 264830 -201.251.221.0/24 22927 -201.251.222.0/23 22927 -201.251.224.0/21 22927 -201.251.232.0/23 22927 -201.251.234.0/24 22927 -201.251.235.0/24 264830 -201.251.236.0/24 264830 -201.251.237.0/24 22927 -201.251.238.0/24 265784 -201.251.239.0/24 269823 -201.251.240.0/21 22927 -201.251.248.0/24 263786 -201.251.249.0/24 27754 -201.251.250.0/23 264656 -201.251.252.0/22 22927 -201.252.0.0/17 7303 -201.252.128.0/18 7303 -201.252.192.0/19 7303 -201.252.224.0/22 7303 -201.252.228.0/24 7303 -201.252.229.0/24 52371 -201.252.230.0/23 7303 -201.252.232.0/21 7303 -201.252.240.0/20 7303 -201.253.0.0/17 7303 -201.253.128.0/18 7303 -201.253.192.0/20 7303 -201.253.216.0/21 7303 -201.253.224.0/19 7303 -201.254.0.0/17 22927 -201.254.128.0/18 22927 -201.254.192.0/20 22927 -201.254.208.0/21 22927 -201.254.216.0/23 22927 -201.254.218.0/24 22927 -201.254.219.0/24 262231 -201.254.220.0/24 262231 -201.254.221.0/24 22927 -201.254.222.0/24 22927 -201.254.223.0/24 28048 -201.254.224.0/19 22927 -201.255.0.0/16 22927 -202.0.0.0/20 136518 -202.0.32.0/19 4768 -202.0.64.0/24 9519 -202.0.65.0/24 2516 -202.0.66.0/24 2516 -202.0.69.0/24 9555 -202.0.70.0/24 9555 -202.0.73.0/24 2500 -202.0.74.0/24 1221 -202.0.77.0/24 198321 -202.0.78.0/24 58418 -202.0.79.0/24 55324 -202.0.82.0/24 4764 -202.0.85.0/24 1221 -202.0.86.0/24 4826 -202.0.88.0/23 55694 -202.0.90.0/24 7575 -202.0.92.0/23 55695 -202.0.94.0/24 63914 -202.0.95.0/24 10234 -202.0.97.0/24 134267 -202.0.99.0/24 7474 -202.0.103.0/24 56110 -202.0.106.0/24 132868 -202.0.107.0/24 55697 -202.0.108.0/24 10203 -202.0.109.0/24 56211 -202.0.110.0/24 56192 -202.0.112.0/24 9498 -202.0.115.0/24 56283 -202.0.116.0/24 56193 -202.0.117.0/24 7693 -202.0.118.0/24 7693 -202.0.124.0/24 4768 -202.0.127.0/24 17617 -202.0.144.0/22 24079 -202.0.148.0/24 133279 -202.0.149.0/24 9255 -202.0.150.0/24 132394 -202.0.153.0/24 55359 -202.0.154.0/24 4739 -202.0.155.0/24 24395 -202.0.156.0/24 4638 -202.0.157.0/24 56089 -202.0.158.0/24 45355 -202.0.159.0/24 56089 -202.0.164.0/24 17814 -202.0.167.0/24 17554 -202.0.168.0/24 17554 -202.0.172.0/24 17554 -202.0.174.0/23 17554 -202.0.179.0/24 17554 -202.0.180.0/24 24058 -202.0.181.0/24 9289 -202.0.182.0/24 9520 -202.0.183.0/24 133852 -202.0.188.0/22 56182 -202.1.2.0/24 56195 -202.1.4.0/24 56312 -202.1.6.0/24 9468 -202.1.32.0/20 17828 -202.1.48.0/22 17828 -202.1.52.0/24 45924 -202.1.53.0/24 17828 -202.1.54.0/23 58460 -202.1.56.0/21 17828 -202.1.64.0/23 10100 -202.1.67.0/24 10100 -202.1.68.0/22 10100 -202.1.96.0/24 10100 -202.1.98.0/23 10100 -202.1.105.0/24 10100 -202.1.106.0/24 10100 -202.1.108.0/23 10100 -202.1.114.0/23 23964 -202.1.116.0/22 9266 -202.1.128.0/19 51964 -202.1.160.0/21 45891 -202.1.168.0/23 45891 -202.1.170.0/24 45891 -202.1.171.0/24 134525 -202.1.172.0/22 45891 -202.1.176.0/23 45891 -202.1.178.0/24 45891 -202.1.179.0/24 134525 -202.1.180.0/22 45891 -202.1.184.0/21 45891 -202.1.192.0/20 7642 -202.1.208.0/20 38634 -202.1.232.0/24 45908 -202.1.233.0/24 131225 -202.1.234.0/23 1221 -202.1.236.0/24 45723 -202.1.237.0/24 133105 -202.1.238.0/24 9723 -202.1.239.0/24 55426 -202.1.240.0/20 1221 -202.2.0.0/22 10203 -202.2.8.0/21 45787 -202.2.56.0/22 9564 -202.2.64.0/20 133038 -202.2.88.0/22 37900 -202.2.96.0/24 5666 -202.2.104.0/21 5666 -202.2.112.0/23 23917 -202.3.0.0/23 137470 -202.3.2.0/24 328579 -202.3.4.0/24 137470 -202.3.6.0/23 7540 -202.3.8.0/22 132279 -202.3.12.0/24 132279 -202.3.14.0/24 55698 -202.3.15.0/24 45927 -202.3.16.0/21 9530 -202.3.27.0/24 9530 -202.3.28.0/22 9530 -202.3.32.0/21 38170 -202.3.54.0/24 138466 -202.3.64.0/24 9653 -202.3.65.0/24 23938 -202.3.66.0/24 55563 -202.3.67.0/24 45347 -202.3.68.0/22 9335 -202.3.72.0/23 133309 -202.3.74.0/24 1221 -202.3.75.0/24 135553 -202.3.76.0/24 135376 -202.3.77.0/24 55479 -202.3.78.0/24 132696 -202.3.79.0/24 7471 -202.3.80.0/21 56186 -202.3.88.0/21 9790 -202.3.96.0/20 9652 -202.3.114.0/23 17394 -202.3.119.0/24 17394 -202.3.121.0/24 24477 -202.3.124.0/23 24477 -202.3.127.0/24 24477 -202.3.130.0/23 18173 -202.3.133.0/24 10223 -202.3.134.0/24 133115 -202.3.137.0/24 17473 -202.3.140.0/22 23661 -202.3.144.0/20 45672 -202.3.160.0/21 17408 -202.3.168.0/23 17408 -202.3.170.0/24 17408 -202.3.171.0/24 132738 -202.3.172.0/22 17408 -202.3.176.0/21 17408 -202.3.185.0/24 36421 -202.3.186.0/23 17408 -202.3.188.0/23 17408 -202.3.190.0/23 9831 -202.3.192.0/20 10097 -202.3.208.0/20 23693 -202.3.224.0/20 9471 -202.3.240.0/24 9471 -202.3.241.0/24 55943 -202.3.242.0/23 9471 -202.3.244.0/22 9471 -202.3.248.0/21 9471 -202.4.0.0/21 7306 -202.4.8.0/22 7306 -202.4.12.0/23 7306 -202.4.25.0/24 24574 -202.4.26.0/23 10232 -202.4.31.0/24 4764 -202.4.32.0/21 17993 -202.4.40.0/22 17993 -202.4.44.0/23 17993 -202.4.46.0/23 23657 -202.4.48.0/20 17993 -202.4.64.0/19 9443 -202.4.96.0/19 23956 -202.4.128.0/19 4538 -202.4.160.0/23 18355 -202.4.164.0/24 45915 -202.4.165.0/24 45917 -202.4.166.0/24 55326 -202.4.167.0/24 45939 -202.4.168.0/24 45901 -202.4.169.0/24 137653 -202.4.170.0/23 45726 -202.4.172.0/24 45154 -202.4.173.0/24 45925 -202.4.174.0/24 45936 -202.4.175.0/24 45937 -202.4.176.0/24 45902 -202.4.177.0/24 4755 -202.4.178.0/24 45526 -202.4.179.0/24 46017 -202.4.180.0/24 131265 -202.4.181.0/24 1221 -202.4.182.0/24 38233 -202.4.183.0/24 55337 -202.4.184.0/24 132406 -202.4.185.0/24 20940 -202.4.186.0/24 63510 -202.4.187.0/24 132768 -202.4.188.0/24 131268 -202.4.189.0/24 38320 -202.4.190.0/24 17535 -202.4.191.0/24 55343 -202.4.192.0/19 9444 -202.4.224.0/20 55803 -202.4.244.0/22 37900 -202.4.248.0/23 24291 -202.4.250.0/24 23642 -202.4.251.0/24 45495 -202.4.252.0/22 4808 -202.5.6.0/23 9435 -202.5.12.0/22 18183 -202.5.16.0/21 7489 -202.5.24.0/24 26548 -202.5.25.0/24 7489 -202.5.26.0/24 7489 -202.5.27.0/24 30707 -202.5.28.0/23 7489 -202.5.30.0/24 7489 -202.5.31.0/24 201106 -202.5.36.0/23 45326 -202.5.38.0/24 45326 -202.5.40.0/22 45326 -202.5.46.0/23 45326 -202.5.48.0/21 45326 -202.5.56.0/22 45326 -202.5.60.0/23 45326 -202.5.62.0/24 45326 -202.5.64.0/20 17707 -202.5.80.0/20 7654 -202.5.96.0/24 58929 -202.5.107.0/24 58929 -202.5.108.0/23 58929 -202.5.112.0/20 135409 -202.5.128.0/23 58626 -202.5.130.0/24 58626 -202.5.131.0/24 58895 -202.5.133.0/24 58626 -202.5.136.0/21 132165 -202.5.144.0/20 132165 -202.5.162.0/23 38456 -202.5.164.0/24 132160 -202.5.165.0/24 38456 -202.5.166.0/24 38456 -202.5.167.0/24 17659 -202.5.168.0/23 38456 -202.5.175.0/24 17659 -202.5.176.0/24 17659 -202.5.180.0/22 17659 -202.5.184.0/23 17659 -202.5.191.0/24 17659 -202.5.192.0/20 10076 -202.5.220.0/22 4785 -202.6.2.0/24 24035 -202.6.8.0/22 18097 -202.6.12.0/22 17676 -202.6.16.0/20 24299 -202.6.68.0/22 55376 -202.6.74.0/24 9342 -202.6.75.0/24 56026 -202.6.77.0/24 7573 -202.6.78.0/24 4739 -202.6.80.0/24 133883 -202.6.84.0/24 132695 -202.6.85.0/24 56212 -202.6.90.0/24 3839 -202.6.91.0/24 4822 -202.6.94.0/24 23875 -202.6.95.0/24 3786 -202.6.96.0/23 7552 -202.6.99.0/24 23901 -202.6.100.0/23 4274 -202.6.102.0/24 45494 -202.6.104.0/23 18421 -202.6.107.0/24 9931 -202.6.112.0/24 7575 -202.6.113.0/24 4739 -202.6.115.0/24 24434 -202.6.116.0/23 38477 -202.6.118.0/24 136557 -202.6.119.0/24 37893 -202.6.120.0/22 134783 -202.6.124.0/22 9745 -202.6.128.0/19 4739 -202.6.160.0/20 18228 -202.6.208.0/20 17450 -202.6.224.0/20 23756 -202.6.240.0/22 23767 -202.6.244.0/22 23620 -202.6.252.0/22 4774 -202.7.8.0/21 37978 -202.7.16.0/20 7687 -202.7.34.0/23 4830 -202.7.37.0/24 4830 -202.7.38.0/23 4830 -202.7.40.0/23 4830 -202.7.44.0/23 4830 -202.7.50.0/23 4830 -202.7.52.0/22 24441 -202.7.58.0/24 23658 -202.7.96.0/20 10021 -202.7.112.0/20 18144 -202.7.144.0/21 4802 -202.7.152.0/22 4802 -202.7.156.0/23 4802 -202.7.158.0/24 4802 -202.7.159.0/24 7545 -202.7.160.0/19 7545 -202.7.192.0/19 7545 -202.7.224.0/20 38285 -202.7.240.0/20 10113 -202.8.1.0/24 3758 -202.8.6.0/23 18272 -202.8.8.0/22 17477 -202.8.13.0/24 135047 -202.8.14.0/23 9924 -202.8.16.0/21 10006 -202.8.25.0/24 135280 -202.8.26.0/23 23885 -202.8.28.0/23 45724 -202.8.30.0/24 38722 -202.8.32.0/21 134111 -202.8.44.0/22 132040 -202.8.48.0/20 17511 -202.8.64.0/24 7604 -202.8.72.0/22 131331 -202.8.76.0/24 55923 -202.8.78.0/23 18356 -202.8.80.0/22 23639 -202.8.84.0/22 23884 -202.8.88.0/22 17630 -202.8.92.0/24 1221 -202.8.93.0/24 17555 -202.8.100.0/23 131303 -202.8.102.0/24 131303 -202.8.104.0/22 134705 -202.8.108.0/22 136530 -202.8.112.0/21 23860 -202.8.120.0/22 135357 -202.8.124.0/22 45117 -202.8.160.0/22 9530 -202.8.164.0/23 9530 -202.8.166.0/24 9530 -202.8.171.0/24 9530 -202.8.172.0/22 9530 -202.8.176.0/22 9530 -202.8.180.0/24 9530 -202.8.191.0/24 9530 -202.8.208.0/20 7524 -202.8.224.0/19 9386 -202.9.0.0/21 6262 -202.9.8.0/22 134111 -202.9.12.0/23 134111 -202.9.16.0/21 23762 -202.9.24.0/22 23762 -202.9.28.0/24 9268 -202.9.29.0/24 23762 -202.9.30.0/23 23762 -202.9.33.0/24 7545 -202.9.36.0/22 55720 -202.9.40.0/21 10219 -202.9.55.0/24 24126 -202.9.60.0/22 26658 -202.9.64.0/24 133276 -202.9.65.0/24 55509 -202.9.69.0/24 46047 -202.9.72.0/23 46048 -202.9.74.0/24 134096 -202.9.75.0/24 55510 -202.9.76.0/23 55508 -202.9.78.0/24 17477 -202.9.79.0/24 55310 -202.9.80.0/24 55311 -202.9.81.0/24 55522 -202.9.82.0/24 51113 -202.9.84.0/24 131128 -202.9.85.0/24 46052 -202.9.87.0/24 4786 -202.9.88.0/24 9399 -202.9.89.0/24 63989 -202.9.90.0/24 63989 -202.9.91.0/24 55529 -202.9.94.0/23 55532 -202.9.96.0/21 17666 -202.9.104.0/22 17666 -202.9.112.0/22 23918 -202.9.116.0/22 18159 -202.9.120.0/22 134316 -202.9.124.0/22 58659 -202.9.128.0/24 17908 -202.9.144.0/24 17908 -202.9.145.0/24 4755 -202.9.148.0/24 17908 -202.9.150.0/24 4755 -202.9.159.0/24 17908 -202.9.165.0/24 4755 -202.9.166.0/24 17908 -202.9.167.0/24 4755 -202.9.168.0/24 4755 -202.9.170.0/24 4755 -202.9.178.0/24 17908 -202.9.180.0/23 4755 -202.9.186.0/24 4755 -202.9.188.0/24 4755 -202.9.189.0/24 17908 -202.9.190.0/23 17908 -202.9.192.0/22 9238 -202.9.196.0/23 9238 -202.9.205.0/24 4797 -202.9.208.0/22 23637 -202.9.212.0/23 23637 -202.9.224.0/20 9627 -202.9.240.0/21 9627 -202.9.248.0/22 9627 -202.9.252.0/24 2764 -202.9.253.0/24 9627 -202.9.254.0/23 9627 -202.10.6.0/23 2764 -202.10.9.0/24 2764 -202.10.13.0/24 2764 -202.10.14.0/23 2764 -202.10.16.0/21 2764 -202.10.32.0/19 9462 -202.10.73.0/24 9584 -202.10.74.0/23 58466 -202.10.76.0/22 58466 -202.10.80.0/20 23871 -202.10.96.0/20 18383 -202.10.255.0/24 133414 -202.11.0.0/21 2907 -202.11.8.0/22 2907 -202.11.12.0/24 2907 -202.11.16.0/23 18149 -202.11.62.0/23 2514 -202.11.64.0/24 59121 -202.11.96.0/20 2907 -202.11.120.0/22 23826 -202.11.138.0/24 2907 -202.11.160.0/22 7522 -202.11.166.0/23 2907 -202.11.168.0/21 2497 -202.11.192.0/20 18267 -202.11.212.0/24 2907 -202.11.214.0/24 4713 -202.11.216.0/22 2907 -202.11.252.0/24 4686 -202.12.0.0/24 18021 -202.12.3.0/24 132255 -202.12.4.0/22 10118 -202.12.8.0/21 24286 -202.12.16.0/24 23984 -202.12.24.0/24 24007 -202.12.25.0/24 38809 -202.12.26.0/24 10094 -202.12.27.0/24 7500 -202.12.28.0/24 4777 -202.12.29.0/24 4608 -202.12.30.0/24 2515 -202.12.31.0/24 18366 -202.12.68.0/24 1221 -202.12.69.0/24 18220 -202.12.71.0/24 9297 -202.12.73.0/24 9464 -202.12.74.0/24 9464 -202.12.76.0/22 131149 -202.12.80.0/22 56224 -202.12.89.0/24 7545 -202.12.90.0/24 38195 -202.12.91.0/24 9503 -202.12.92.0/24 7573 -202.12.94.0/23 17617 -202.12.97.0/24 9546 -202.12.102.0/24 38559 -202.12.103.0/24 56056 -202.12.104.0/24 58666 -202.12.105.0/24 2687 -202.12.107.0/24 7575 -202.12.108.0/24 137472 -202.12.109.0/24 1221 -202.12.117.0/24 24060 -202.12.118.0/24 24060 -202.12.127.0/24 5716 -202.12.128.0/18 1221 -202.12.192.0/19 1221 -202.12.224.0/20 1221 -202.12.240.0/23 1221 -202.12.242.0/24 1221 -202.12.245.0/24 4686 -202.12.246.0/24 4686 -202.12.248.0/21 24074 -202.13.0.0/22 2907 -202.13.4.0/23 2907 -202.13.8.0/21 2907 -202.13.16.0/21 2907 -202.13.60.0/24 2907 -202.13.82.0/23 2907 -202.13.87.0/24 2907 -202.13.124.0/22 9999 -202.13.128.0/19 59096 -202.13.160.0/20 24264 -202.13.180.0/23 37915 -202.13.183.0/24 7500 -202.13.192.0/19 2505 -202.13.224.0/21 37915 -202.13.240.0/21 2516 -202.14.0.0/22 6262 -202.14.4.0/22 26658 -202.14.8.0/21 56197 -202.14.20.0/22 10022 -202.14.24.0/21 10022 -202.14.32.0/23 45249 -202.14.35.0/24 45249 -202.14.42.0/23 45249 -202.14.44.0/24 45249 -202.14.53.0/24 45249 -202.14.63.0/24 45249 -202.14.67.0/24 2706 -202.14.68.0/24 2706 -202.14.70.0/23 45748 -202.14.72.0/24 24222 -202.14.80.0/24 3363 -202.14.81.0/24 45442 -202.14.82.0/23 131239 -202.14.85.0/24 24081 -202.14.86.0/23 24079 -202.14.90.0/23 9647 -202.14.92.0/23 55680 -202.14.94.0/24 56058 -202.14.95.0/24 4739 -202.14.96.0/24 18353 -202.14.98.0/24 7471 -202.14.100.0/24 4770 -202.14.101.0/24 10203 -202.14.102.0/24 9303 -202.14.103.0/24 4766 -202.14.107.0/24 4648 -202.14.112.0/24 7545 -202.14.116.0/24 135398 -202.14.117.0/24 17827 -202.14.120.0/22 133661 -202.14.128.0/24 17559 -202.14.130.0/23 7474 -202.14.133.0/24 136612 -202.14.134.0/24 9667 -202.14.138.0/23 23669 -202.14.141.0/24 22640 -202.14.145.0/24 58929 -202.14.147.0/24 7474 -202.14.148.0/24 9913 -202.14.150.0/24 56062 -202.14.152.0/24 135880 -202.14.155.0/24 17434 -202.14.156.0/24 17434 -202.14.160.0/22 131458 -202.14.164.0/24 9533 -202.14.165.0/24 4766 -202.14.166.0/24 133930 -202.14.182.0/24 7545 -202.14.186.0/24 9509 -202.14.196.0/23 24543 -202.14.198.0/24 24543 -202.14.200.0/23 4657 -202.14.202.0/24 4657 -202.14.210.0/24 9443 -202.14.215.0/24 55766 -202.14.216.0/24 10110 -202.14.217.0/24 45179 -202.14.229.0/24 9893 -202.14.235.0/24 17964 -202.14.236.0/23 17964 -202.14.238.0/24 17964 -202.14.247.0/24 133061 -202.14.248.0/24 133061 -202.14.250.0/24 7718 -202.14.252.0/24 24189 -202.14.255.0/24 24057 -202.15.16.0/20 2907 -202.15.32.0/21 17509 -202.15.44.0/23 2497 -202.15.64.0/19 7687 -202.15.106.0/23 2907 -202.15.110.0/24 2907 -202.15.112.0/22 2506 -202.15.128.0/18 2516 -202.16.104.0/21 2497 -202.16.122.0/23 2907 -202.16.124.0/23 2907 -202.16.128.0/20 2907 -202.16.155.0/24 23829 -202.16.156.0/24 23829 -202.16.159.0/24 23829 -202.16.192.0/21 2516 -202.16.200.0/22 17676 -202.16.204.0/23 2514 -202.16.208.0/20 2907 -202.16.224.0/24 2907 -202.16.225.0/24 10010 -202.17.16.0/20 2907 -202.17.96.0/23 37915 -202.17.104.0/21 2907 -202.17.120.0/23 2907 -202.17.128.0/19 2514 -202.17.164.0/22 4713 -202.17.171.0/24 2907 -202.17.182.0/24 2907 -202.17.184.0/22 2907 -202.17.189.0/24 7529 -202.17.200.0/21 2907 -202.17.208.0/22 2907 -202.17.236.0/24 4680 -202.17.254.0/24 2907 -202.18.0.0/19 7687 -202.18.32.0/19 2907 -202.18.64.0/18 55910 -202.18.128.0/20 4725 -202.18.160.0/20 2907 -202.18.182.0/24 2907 -202.18.184.0/21 2907 -202.18.209.0/24 4713 -202.18.210.0/24 4713 -202.18.224.0/20 7687 -202.18.254.0/24 2907 -202.19.16.0/24 4725 -202.19.18.0/23 4725 -202.19.32.0/24 4680 -202.19.104.0/23 2907 -202.19.112.0/24 17676 -202.19.120.0/24 17676 -202.19.124.0/24 11408 -202.19.126.0/24 11408 -202.19.136.0/21 2907 -202.19.144.0/21 2907 -202.19.152.0/24 4713 -202.19.159.0/24 17511 -202.19.179.0/24 2907 -202.19.222.0/23 131940 -202.19.224.0/21 2497 -202.20.0.0/21 24183 -202.20.16.0/20 38809 -202.20.32.0/19 45186 -202.20.65.0/24 9303 -202.20.69.0/24 132345 -202.20.71.0/24 10234 -202.20.72.0/23 10234 -202.20.74.0/24 10234 -202.20.76.0/24 7714 -202.20.83.0/24 45366 -202.20.84.0/24 45366 -202.20.85.0/24 9858 -202.20.91.0/24 136157 -202.20.92.0/24 9303 -202.20.93.0/24 4768 -202.20.97.0/24 38437 -202.20.99.0/24 18164 -202.20.100.0/23 7577 -202.20.102.0/23 38473 -202.20.104.0/24 38473 -202.20.106.0/23 133166 -202.20.109.0/24 133166 -202.20.119.0/24 55627 -202.20.128.0/18 6619 -202.20.192.0/19 6619 -202.21.0.0/21 4668 -202.21.8.0/24 2764 -202.21.9.0/24 7545 -202.21.10.0/23 7545 -202.21.12.0/23 2764 -202.21.14.0/23 7545 -202.21.32.0/22 132717 -202.21.37.0/24 132717 -202.21.38.0/23 132717 -202.21.64.0/19 45186 -202.21.96.0/19 9484 -202.21.128.0/24 9834 -202.21.129.0/24 56175 -202.21.130.0/24 17792 -202.21.134.0/23 23976 -202.21.136.0/23 18119 -202.21.140.0/24 55545 -202.21.149.0/24 38589 -202.21.157.0/24 9303 -202.21.158.0/23 23728 -202.21.160.0/20 17676 -202.21.176.0/20 24016 -202.21.192.0/22 24467 -202.21.220.0/22 24467 -202.21.224.0/22 24467 -202.22.11.0/24 4750 -202.22.13.0/24 55642 -202.22.14.0/23 55642 -202.22.16.0/21 58421 -202.22.24.0/22 58421 -202.22.28.0/23 58421 -202.22.30.0/24 58421 -202.22.128.0/19 56089 -202.22.176.0/20 703 -202.22.192.0/20 17469 -202.22.208.0/20 2497 -202.22.224.0/20 56055 -202.22.240.0/22 24002 -202.22.244.0/22 23648 -202.23.64.0/22 2907 -202.23.72.0/21 2907 -202.23.86.0/24 2907 -202.23.128.0/18 18267 -202.23.192.0/21 2907 -202.23.200.0/24 2514 -202.23.247.0/24 2907 -202.24.80.0/21 2907 -202.24.92.0/22 2907 -202.24.122.0/23 2497 -202.24.124.0/23 2497 -202.24.140.0/22 2497 -202.24.144.0/21 2907 -202.24.160.0/21 2907 -202.24.184.0/22 4725 -202.24.192.0/22 2497 -202.24.196.0/24 2497 -202.24.240.0/21 2907 -202.25.68.0/22 2907 -202.25.80.0/21 23799 -202.25.99.0/24 2907 -202.25.113.0/24 2907 -202.25.155.0/24 2907 -202.25.156.0/24 2907 -202.25.192.0/20 7670 -202.25.209.0/24 2497 -202.25.213.0/24 2497 -202.25.214.0/24 17676 -202.25.222.0/24 2497 -202.25.224.0/20 2907 -202.26.64.0/19 2907 -202.26.139.0/24 2907 -202.26.144.0/20 2907 -202.26.160.0/20 2907 -202.26.187.0/24 17937 -202.26.188.0/22 2907 -202.26.196.0/22 2907 -202.26.200.0/21 4725 -202.26.224.0/24 2907 -202.26.228.0/22 17511 -202.26.248.0/23 2907 -202.27.8.0/24 7599 -202.27.9.0/24 20868 -202.27.13.0/24 1221 -202.27.15.0/24 55920 -202.27.16.0/20 56039 -202.27.34.0/24 24324 -202.27.38.0/23 55719 -202.27.40.0/21 4768 -202.27.51.0/24 4648 -202.27.52.0/22 4648 -202.27.57.0/24 4648 -202.27.58.0/24 4648 -202.27.64.0/23 10022 -202.27.67.0/24 4648 -202.27.72.0/24 131239 -202.27.76.0/23 10022 -202.27.78.0/24 55502 -202.27.83.0/24 10200 -202.27.104.0/23 23655 -202.27.106.0/24 23655 -202.27.113.0/24 9790 -202.27.124.0/22 134118 -202.27.128.0/23 4637 -202.27.134.0/23 4049 -202.27.140.0/24 24074 -202.27.146.0/24 4648 -202.27.156.0/24 2570 -202.27.158.0/24 2570 -202.27.160.0/24 4648 -202.27.171.0/24 24324 -202.27.184.0/24 2570 -202.27.186.0/23 23655 -202.27.188.0/24 4648 -202.27.192.0/21 9303 -202.27.200.0/22 9303 -202.27.209.0/24 9303 -202.27.210.0/23 9303 -202.27.212.0/22 9303 -202.27.216.0/22 9303 -202.27.222.0/24 9303 -202.27.236.0/24 9303 -202.27.239.0/24 38305 -202.27.240.0/22 38479 -202.27.247.0/24 9303 -202.27.250.0/24 24324 -202.27.251.0/24 9303 -202.27.252.0/24 4648 -202.27.255.0/24 4648 -202.28.0.0/24 4621 -202.28.1.0/24 17823 -202.28.2.0/23 4621 -202.28.4.0/22 9551 -202.28.8.0/21 139657 -202.28.16.0/24 38589 -202.28.17.0/24 9533 -202.28.18.0/23 4621 -202.28.20.0/22 4621 -202.28.24.0/22 17479 -202.28.28.0/22 4621 -202.28.32.0/22 9562 -202.28.36.0/22 4621 -202.28.40.0/22 55545 -202.28.44.0/24 4621 -202.28.45.0/24 137850 -202.28.46.0/23 137850 -202.28.48.0/22 132514 -202.28.52.0/23 4621 -202.28.54.0/24 137394 -202.28.55.0/24 4621 -202.28.56.0/21 4621 -202.28.64.0/22 4621 -202.28.68.0/22 9475 -202.28.72.0/21 4621 -202.28.80.0/21 4621 -202.28.88.0/22 37992 -202.28.92.0/22 9546 -202.28.96.0/22 4621 -202.28.100.0/22 17827 -202.28.104.0/21 4621 -202.28.112.0/22 4621 -202.28.116.0/22 9546 -202.28.120.0/21 4621 -202.28.128.0/18 4762 -202.28.192.0/19 4621 -202.28.224.0/20 4621 -202.28.240.0/22 4621 -202.28.244.0/22 17479 -202.28.248.0/22 17479 -202.28.252.0/22 4621 -202.29.0.0/22 4621 -202.29.4.0/24 55488 -202.29.5.0/24 4621 -202.29.6.0/24 131246 -202.29.7.0/24 4621 -202.29.8.0/22 4621 -202.29.12.0/24 24475 -202.29.13.0/24 4621 -202.29.14.0/23 4621 -202.29.16.0/23 4621 -202.29.18.0/24 131257 -202.29.19.0/24 4621 -202.29.20.0/24 138547 -202.29.21.0/24 4621 -202.29.22.0/24 132879 -202.29.23.0/24 56277 -202.29.24.0/24 136624 -202.29.25.0/24 4621 -202.29.26.0/24 137198 -202.29.27.0/24 4621 -202.29.28.0/22 4621 -202.29.32.0/24 24328 -202.29.33.0/24 45847 -202.29.34.0/23 4621 -202.29.36.0/24 4621 -202.29.37.0/24 135528 -202.29.38.0/23 4621 -202.29.40.0/21 4621 -202.29.48.0/22 4621 -202.29.52.0/24 132701 -202.29.53.0/24 4621 -202.29.54.0/23 4621 -202.29.56.0/24 4621 -202.29.57.0/24 38265 -202.29.58.0/24 132493 -202.29.59.0/24 4621 -202.29.60.0/24 24344 -202.29.61.0/24 4621 -202.29.62.0/23 4621 -202.29.64.0/23 131221 -202.29.66.0/24 133042 -202.29.67.0/24 4621 -202.29.68.0/23 4621 -202.29.70.0/24 132250 -202.29.71.0/24 4621 -202.29.72.0/22 4621 -202.29.76.0/24 4621 -202.29.77.0/24 23687 -202.29.78.0/23 4621 -202.29.80.0/23 137241 -202.29.82.0/24 135012 -202.29.83.0/24 10227 -202.29.84.0/22 4621 -202.29.88.0/21 4621 -202.29.96.0/23 4621 -202.29.98.0/24 134690 -202.29.99.0/24 4621 -202.29.100.0/23 4621 -202.29.102.0/24 4621 -202.29.103.0/24 138003 -202.29.104.0/24 133919 -202.29.105.0/24 4621 -202.29.106.0/24 134064 -202.29.107.0/24 4621 -202.29.108.0/23 38589 -202.29.110.0/23 4621 -202.29.112.0/20 4621 -202.29.128.0/20 4621 -202.29.144.0/21 9464 -202.29.152.0/21 4621 -202.29.160.0/21 4621 -202.29.168.0/22 4621 -202.29.172.0/22 133042 -202.29.176.0/22 133042 -202.29.180.0/22 4621 -202.29.184.0/21 4621 -202.29.192.0/18 4621 -202.30.0.0/19 4766 -202.30.32.0/23 9318 -202.30.34.0/24 9318 -202.30.36.0/23 1237 -202.30.38.0/24 9459 -202.30.40.0/22 1237 -202.30.44.0/24 9962 -202.30.45.0/24 23600 -202.30.46.0/23 10045 -202.30.48.0/24 18034 -202.30.49.0/24 38131 -202.30.54.0/24 9775 -202.30.55.0/24 9954 -202.30.58.0/24 4766 -202.30.59.0/24 3786 -202.30.60.0/22 1237 -202.30.64.0/20 9494 -202.30.80.0/22 9494 -202.30.84.0/23 9494 -202.30.86.0/24 9494 -202.30.88.0/24 9494 -202.30.90.0/23 9494 -202.30.92.0/22 9494 -202.30.96.0/20 4766 -202.30.112.0/21 9318 -202.30.124.0/24 23596 -202.30.128.0/19 4670 -202.30.160.0/21 4670 -202.30.168.0/23 4670 -202.30.170.0/24 4670 -202.30.171.0/24 9980 -202.30.172.0/23 9980 -202.30.174.0/24 9980 -202.30.175.0/24 4670 -202.30.176.0/24 9980 -202.30.177.0/24 4670 -202.30.178.0/23 4670 -202.30.180.0/23 9980 -202.30.182.0/23 4670 -202.30.184.0/22 4670 -202.30.188.0/23 4670 -202.30.190.0/24 4670 -202.30.191.0/24 9980 -202.30.192.0/21 4670 -202.30.200.0/22 4670 -202.30.204.0/23 4670 -202.30.206.0/24 9980 -202.30.207.0/24 4670 -202.30.208.0/22 4670 -202.30.212.0/23 4670 -202.30.214.0/24 4670 -202.30.215.0/24 9980 -202.30.216.0/24 9980 -202.30.217.0/24 4670 -202.30.218.0/24 4670 -202.30.219.0/24 9980 -202.30.220.0/23 9980 -202.30.222.0/24 4670 -202.30.223.0/24 9980 -202.30.224.0/20 4670 -202.30.240.0/21 4670 -202.30.248.0/22 4670 -202.30.252.0/23 4670 -202.30.254.0/24 4670 -202.30.255.0/24 9980 -202.31.0.0/17 3786 -202.31.128.0/20 17603 -202.31.144.0/21 9954 -202.31.152.0/24 18320 -202.31.153.0/24 7627 -202.31.176.0/22 4766 -202.31.180.0/24 4766 -202.31.182.0/24 1237 -202.31.184.0/23 9952 -202.31.186.0/24 9952 -202.31.187.0/24 17848 -202.31.188.0/24 23600 -202.31.190.0/24 23600 -202.31.192.0/20 17603 -202.31.212.0/22 4766 -202.31.224.0/19 7624 -202.32.0.0/16 2497 -202.33.0.0/16 4725 -202.34.8.0/23 7529 -202.34.10.0/23 17511 -202.34.12.0/23 17511 -202.34.14.0/24 59124 -202.34.15.0/24 7529 -202.34.64.0/22 2497 -202.34.68.0/24 2497 -202.34.70.0/24 2497 -202.34.80.0/22 4713 -202.34.90.0/24 4713 -202.34.92.0/23 4713 -202.34.94.0/24 4713 -202.34.96.0/24 2497 -202.34.98.0/23 2497 -202.34.100.0/24 4713 -202.34.102.0/24 4713 -202.34.104.0/24 4713 -202.34.106.0/23 4713 -202.34.108.0/23 4713 -202.34.150.0/23 2519 -202.34.191.0/24 2519 -202.34.192.0/20 2907 -202.34.232.0/21 2907 -202.34.242.0/23 2907 -202.34.246.0/23 2907 -202.35.16.0/20 2516 -202.35.120.0/21 58784 -202.35.192.0/19 2907 -202.35.224.0/24 2907 -202.35.226.0/23 2907 -202.35.228.0/24 2907 -202.35.248.0/22 2907 -202.36.8.0/22 10022 -202.36.12.0/24 10022 -202.36.14.0/24 1221 -202.36.16.0/21 9898 -202.36.24.0/22 9898 -202.36.29.0/24 18378 -202.36.30.0/23 18353 -202.36.32.0/24 4768 -202.36.33.0/24 37999 -202.36.36.0/22 4770 -202.36.43.0/24 9303 -202.36.44.0/24 4768 -202.36.45.0/24 56174 -202.36.47.0/24 134099 -202.36.48.0/20 64050 -202.36.68.0/23 45215 -202.36.70.0/24 9889 -202.36.75.0/24 45267 -202.36.76.0/23 4831 -202.36.85.0/24 38479 -202.36.86.0/24 38479 -202.36.96.0/21 55516 -202.36.110.0/24 17705 -202.36.121.0/24 9245 -202.36.126.0/23 55926 -202.36.133.0/24 9790 -202.36.134.0/23 17542 -202.36.137.0/24 23904 -202.36.141.0/24 23905 -202.36.149.0/24 4049 -202.36.150.0/23 4049 -202.36.152.0/23 4049 -202.36.154.0/24 10200 -202.36.155.0/24 64073 -202.36.158.0/24 139275 -202.36.162.0/24 18400 -202.36.163.0/24 45164 -202.36.164.0/22 9790 -202.36.168.0/23 55719 -202.36.170.0/24 56304 -202.36.172.0/23 134099 -202.36.174.0/24 9559 -202.36.175.0/24 136500 -202.36.178.0/23 9432 -202.36.181.0/24 4768 -202.36.182.0/24 4768 -202.36.199.0/24 10022 -202.36.204.0/23 9872 -202.36.214.0/23 17705 -202.36.218.0/24 38437 -202.36.219.0/24 23655 -202.36.220.0/24 23655 -202.36.221.0/24 131196 -202.36.224.0/23 23878 -202.36.227.0/24 55785 -202.36.230.0/24 23737 -202.36.231.0/24 4768 -202.36.233.0/24 10022 -202.36.244.0/23 9431 -202.36.248.0/23 131239 -202.36.251.0/24 131239 -202.36.252.0/23 131239 -202.36.254.0/24 131239 -202.36.255.0/24 17492 -202.37.0.0/20 131272 -202.37.17.0/24 4648 -202.37.23.0/24 10022 -202.37.26.0/24 4648 -202.37.28.0/23 9503 -202.37.31.0/24 9503 -202.37.32.0/21 24318 -202.37.43.0/24 55747 -202.37.48.0/23 9503 -202.37.50.0/24 9503 -202.37.51.0/24 135047 -202.37.54.0/24 4768 -202.37.60.0/22 9896 -202.37.64.0/23 131239 -202.37.70.0/23 9303 -202.37.72.0/24 9889 -202.37.74.0/24 137707 -202.37.75.0/24 17492 -202.37.78.0/24 9790 -202.37.86.0/23 131130 -202.37.88.0/24 9431 -202.37.93.0/24 131323 -202.37.96.0/23 23655 -202.37.100.0/23 23655 -202.37.106.0/23 23655 -202.37.114.0/24 45140 -202.37.117.0/24 9303 -202.37.118.0/24 9303 -202.37.127.0/24 23655 -202.37.129.0/24 24459 -202.37.132.0/24 45186 -202.37.137.0/24 4648 -202.37.138.0/24 4768 -202.37.140.0/22 4770 -202.37.144.0/21 4770 -202.37.156.0/22 45186 -202.37.160.0/24 4768 -202.37.162.0/24 4768 -202.37.168.0/24 45267 -202.37.170.0/24 4648 -202.37.179.0/24 45177 -202.37.181.0/24 9889 -202.37.187.0/24 4768 -202.37.194.0/24 45177 -202.37.197.0/24 4770 -202.37.198.0/24 9245 -202.37.200.0/22 4770 -202.37.204.0/24 23916 -202.37.205.0/24 18353 -202.37.206.0/23 23916 -202.37.220.0/24 23655 -202.37.224.0/21 4770 -202.37.232.0/24 9889 -202.37.242.0/24 4648 -202.37.244.0/22 4648 -202.38.2.0/23 4538 -202.38.4.0/22 56196 -202.38.8.0/21 4808 -202.38.16.0/22 17485 -202.38.28.0/23 17485 -202.38.64.0/19 4538 -202.38.96.0/21 4538 -202.38.104.0/22 4538 -202.38.108.0/24 4538 -202.38.109.0/24 24348 -202.38.110.0/23 4538 -202.38.112.0/21 4538 -202.38.120.0/24 23910 -202.38.121.0/24 4538 -202.38.122.0/23 4538 -202.38.124.0/22 4538 -202.38.128.0/23 7497 -202.38.132.0/23 4812 -202.38.134.0/24 4812 -202.38.139.0/24 56072 -202.38.140.0/23 4538 -202.38.144.0/23 56065 -202.38.147.0/24 4808 -202.38.148.0/24 17473 -202.38.152.0/23 17964 -202.38.157.0/24 23921 -202.38.161.0/24 4808 -202.38.162.0/23 23993 -202.38.164.0/22 4837 -202.38.172.0/22 56202 -202.38.180.0/22 56268 -202.38.184.0/21 4538 -202.38.192.0/18 24357 -202.39.0.0/18 3462 -202.39.64.0/20 3462 -202.39.80.0/20 9680 -202.39.96.0/20 4783 -202.39.128.0/17 3462 -202.40.0.0/22 132586 -202.40.13.0/24 18211 -202.40.137.0/24 17793 -202.40.138.0/23 3363 -202.40.141.0/24 4637 -202.40.147.0/24 4058 -202.40.148.0/23 4637 -202.40.151.0/24 9304 -202.40.152.0/23 9304 -202.40.157.0/24 17764 -202.40.163.0/24 59346 -202.40.164.0/22 9268 -202.40.168.0/22 4642 -202.40.176.0/20 23991 -202.40.192.0/20 7651 -202.40.208.0/21 7577 -202.40.216.0/24 3661 -202.40.217.0/24 7650 -202.40.218.0/24 3662 -202.40.219.0/24 17764 -202.40.220.0/24 17764 -202.40.221.0/24 3662 -202.40.222.0/23 17764 -202.40.224.0/20 9911 -202.40.240.0/21 9911 -202.40.248.0/22 9911 -202.40.252.0/23 9911 -202.40.254.0/24 9911 -202.41.0.0/23 10225 -202.41.2.0/23 24109 -202.41.10.0/24 138155 -202.41.14.0/23 24110 -202.41.33.0/24 4755 -202.41.71.0/24 2697 -202.41.72.0/24 2697 -202.41.76.0/22 2697 -202.41.80.0/24 2697 -202.41.85.0/24 2697 -202.41.88.0/22 2697 -202.41.94.0/24 4755 -202.41.95.0/24 2697 -202.41.96.0/21 2697 -202.41.105.0/24 2697 -202.41.107.0/24 2697 -202.41.108.0/23 2697 -202.41.111.0/24 2697 -202.41.112.0/22 2697 -202.41.116.0/24 2697 -202.41.119.0/24 2697 -202.41.120.0/24 2697 -202.41.134.0/24 23761 -202.41.135.0/24 23760 -202.41.136.0/22 4770 -202.41.140.0/24 23710 -202.41.141.0/24 23711 -202.41.143.0/24 23709 -202.41.144.0/24 23708 -202.41.145.0/24 23713 -202.41.146.0/24 23712 -202.41.147.0/24 24081 -202.41.148.0/22 24103 -202.41.152.0/21 17816 -202.41.160.0/19 4621 -202.41.193.0/24 9672 -202.41.204.0/24 17825 -202.41.206.0/24 24041 -202.41.208.0/20 18126 -202.41.224.0/20 4637 -202.41.241.0/24 37942 -202.41.242.0/23 37942 -202.41.244.0/22 37942 -202.41.248.0/21 37942 -202.42.5.0/24 4637 -202.42.32.0/22 4628 -202.42.36.0/23 4628 -202.42.38.0/24 4637 -202.42.39.0/24 4628 -202.42.40.0/24 4628 -202.42.41.0/24 4637 -202.42.42.0/24 4637 -202.42.43.0/24 4628 -202.42.44.0/24 4628 -202.42.45.0/24 4637 -202.42.46.0/24 4637 -202.42.47.0/24 4628 -202.42.48.0/23 4628 -202.42.51.0/24 4628 -202.42.52.0/24 4637 -202.42.54.0/24 4628 -202.42.56.0/24 4628 -202.42.59.0/24 4628 -202.42.62.0/24 4637 -202.42.64.0/23 4637 -202.42.67.0/24 4628 -202.42.70.0/24 4628 -202.42.96.0/21 4628 -202.42.128.0/21 4628 -202.42.141.0/24 4628 -202.42.142.0/23 4628 -202.42.144.0/22 4628 -202.42.149.0/24 4628 -202.42.152.0/24 4628 -202.42.154.0/23 4628 -202.42.157.0/24 4628 -202.42.158.0/23 4628 -202.42.161.0/24 4628 -202.42.163.0/24 4637 -202.42.165.0/24 4628 -202.42.166.0/24 4628 -202.42.170.0/24 4628 -202.42.173.0/24 4628 -202.42.175.0/24 4628 -202.42.176.0/24 4628 -202.42.182.0/24 4628 -202.42.190.0/23 4628 -202.42.192.0/21 4628 -202.42.200.0/23 4628 -202.42.203.0/24 4628 -202.42.205.0/24 4628 -202.42.206.0/24 4637 -202.42.208.0/22 4628 -202.42.213.0/24 4637 -202.42.215.0/24 4628 -202.42.219.0/24 4628 -202.42.220.0/23 4628 -202.42.226.0/24 4628 -202.42.228.0/24 4628 -202.42.231.0/24 4628 -202.42.233.0/24 4628 -202.42.234.0/23 4637 -202.42.236.0/23 4628 -202.42.239.0/24 4628 -202.42.240.0/20 4628 -202.43.0.0/24 24541 -202.43.2.0/23 56035 -202.43.4.0/22 137907 -202.43.8.0/22 38198 -202.43.12.0/23 38198 -202.43.14.0/24 38198 -202.43.15.0/24 45355 -202.43.16.0/20 4721 -202.43.32.0/20 24299 -202.43.48.0/20 3786 -202.43.64.0/24 58482 -202.43.65.0/24 38776 -202.43.66.0/24 9268 -202.43.67.0/24 45154 -202.43.68.0/22 4721 -202.43.72.0/23 45298 -202.43.74.0/24 45298 -202.43.80.0/23 45793 -202.43.82.0/24 202917 -202.43.83.0/24 131184 -202.43.84.0/22 1221 -202.43.88.0/23 16625 -202.43.90.0/24 24222 -202.43.91.0/24 137443 -202.43.92.0/22 45705 -202.43.96.0/22 18068 -202.43.100.0/23 45785 -202.43.102.0/24 45785 -202.43.108.0/22 45552 -202.43.112.0/23 45325 -202.43.114.0/23 45706 -202.43.116.0/23 45707 -202.43.118.0/24 45748 -202.43.128.0/22 17802 -202.43.136.0/21 17802 -202.43.144.0/20 4808 -202.43.160.0/20 18059 -202.43.176.0/22 23947 -202.43.180.0/24 131111 -202.43.181.0/24 23947 -202.43.182.0/23 23947 -202.43.184.0/22 23947 -202.43.188.0/24 131111 -202.43.189.0/24 23947 -202.43.190.0/23 23947 -202.43.192.0/21 10229 -202.43.200.0/23 10229 -202.43.212.0/22 10229 -202.43.240.0/21 18076 -202.43.248.0/23 58381 -202.43.250.0/23 138074 -202.43.252.0/22 138074 -202.44.0.0/21 55403 -202.44.8.0/21 9551 -202.44.32.0/20 9533 -202.44.52.0/22 23932 -202.44.56.0/22 17541 -202.44.60.0/23 56214 -202.44.62.0/24 38477 -202.44.63.0/24 45475 -202.44.64.0/23 45629 -202.44.68.0/22 46079 -202.44.72.0/23 38589 -202.44.75.0/24 17741 -202.44.76.0/22 24120 -202.44.80.0/24 45446 -202.44.82.0/24 45446 -202.44.90.0/24 45446 -202.44.98.0/23 17732 -202.44.100.0/23 17433 -202.44.103.0/24 17433 -202.44.104.0/22 38011 -202.44.108.0/24 38614 -202.44.109.0/24 38011 -202.44.110.0/23 38011 -202.44.112.0/22 22351 -202.44.116.0/22 24303 -202.44.128.0/24 4621 -202.44.130.0/23 9903 -202.44.134.0/24 7575 -202.44.135.0/24 4621 -202.44.136.0/24 4621 -202.44.137.0/24 55323 -202.44.139.0/24 4621 -202.44.140.0/23 131293 -202.44.144.0/24 7693 -202.44.160.0/21 2764 -202.44.168.0/23 2764 -202.44.170.0/24 63850 -202.44.171.0/24 2764 -202.44.172.0/22 2764 -202.44.176.0/22 2764 -202.44.180.0/23 23857 -202.44.182.0/23 2764 -202.44.184.0/21 2764 -202.44.192.0/21 4618 -202.44.200.0/22 4618 -202.44.204.0/24 7588 -202.44.205.0/24 4618 -202.44.206.0/23 4618 -202.44.208.0/20 4618 -202.44.224.0/19 4618 -202.45.3.0/24 17928 -202.45.4.0/23 4058 -202.45.6.0/23 23901 -202.45.8.0/23 4058 -202.45.10.0/23 24327 -202.45.12.0/24 24256 -202.45.13.0/24 24375 -202.45.14.0/24 24112 -202.45.32.0/19 7650 -202.45.64.0/24 131280 -202.45.68.0/24 131280 -202.45.69.0/24 9304 -202.45.82.0/23 17794 -202.45.85.0/24 17794 -202.45.86.0/23 9304 -202.45.88.0/24 17794 -202.45.89.0/24 10118 -202.45.90.0/23 10118 -202.45.92.0/22 10118 -202.45.96.0/21 4802 -202.45.104.0/22 4739 -202.45.108.0/22 4802 -202.45.112.0/21 4802 -202.45.120.0/23 4739 -202.45.122.0/23 4802 -202.45.124.0/22 4802 -202.45.128.0/24 4528 -202.45.129.0/24 23885 -202.45.132.0/22 24314 -202.45.136.0/21 38005 -202.45.144.0/22 45353 -202.45.148.0/24 45247 -202.45.149.0/24 38567 -202.45.150.0/23 7545 -202.45.152.0/22 7490 -202.45.156.0/24 38264 -202.45.159.0/24 45268 -202.45.160.0/21 23661 -202.45.168.0/21 17698 -202.45.176.0/20 4641 -202.45.240.0/24 9304 -202.45.241.0/24 10032 -202.45.247.0/24 9304 -202.45.248.0/23 9304 -202.46.0.0/20 3583 -202.46.19.0/24 24236 -202.46.22.0/23 17624 -202.46.24.0/21 63491 -202.46.32.0/21 24413 -202.46.40.0/22 24413 -202.46.45.0/24 24413 -202.46.46.0/23 24413 -202.46.48.0/20 55967 -202.46.64.0/19 4855 -202.46.112.0/20 24028 -202.46.129.0/24 38331 -202.46.130.0/23 58481 -202.46.132.0/22 45671 -202.46.136.0/21 18111 -202.46.144.0/20 18056 -202.46.176.0/24 38037 -202.46.177.0/24 133532 -202.46.178.0/24 133745 -202.46.179.0/24 133532 -202.46.180.0/24 23869 -202.46.181.0/24 45285 -202.46.182.0/23 133532 -202.46.184.0/23 38064 -202.46.187.0/24 38064 -202.46.188.0/23 38064 -202.46.190.0/23 23869 -202.46.192.0/21 17453 -202.46.200.0/22 17453 -202.46.205.0/24 17453 -202.46.206.0/24 17453 -202.46.241.0/24 3583 -202.46.243.0/24 3583 -202.46.244.0/22 3583 -202.46.248.0/21 3583 -202.47.0.0/21 24446 -202.47.8.0/21 17676 -202.47.16.0/20 2914 -202.47.32.0/20 9541 -202.47.48.0/21 9541 -202.47.56.0/24 9541 -202.47.59.0/24 9541 -202.47.60.0/22 9541 -202.47.64.0/20 17671 -202.47.80.0/24 46018 -202.47.81.0/24 4768 -202.47.84.0/23 38597 -202.47.86.0/24 1221 -202.47.87.0/24 135916 -202.47.88.0/24 45289 -202.47.90.0/23 46020 -202.47.94.0/24 55541 -202.47.95.0/24 9290 -202.47.112.0/21 56209 -202.47.120.0/22 17551 -202.47.124.0/24 139360 -202.47.125.0/24 9658 -202.47.127.0/24 24222 -202.47.136.0/22 17514 -202.47.144.0/20 21996 -202.47.192.0/20 4637 -202.47.208.0/24 4637 -202.47.212.0/22 4637 -202.47.216.0/24 4637 -202.47.220.0/24 4637 -202.47.222.0/24 4637 -202.47.224.0/20 9931 -202.47.240.0/21 9931 -202.47.248.0/23 9931 -202.47.250.0/24 9931 -202.47.253.0/24 4651 -202.48.48.0/23 2907 -202.48.50.0/24 2907 -202.48.96.0/22 17504 -202.48.108.0/23 2497 -202.48.112.0/21 2907 -202.48.128.0/23 2907 -202.48.160.0/22 2907 -202.48.192.0/24 2514 -202.48.202.0/23 24280 -202.48.204.0/22 24280 -202.48.208.0/24 4725 -202.48.210.0/23 4725 -202.48.214.0/24 4725 -202.48.216.0/23 4725 -202.48.228.0/22 2907 -202.49.0.0/21 38906 -202.49.16.0/20 4049 -202.49.34.0/23 9790 -202.49.41.0/24 9503 -202.49.48.0/24 4648 -202.49.58.0/24 9889 -202.49.59.0/24 24226 -202.49.62.0/24 23838 -202.49.64.0/21 9559 -202.49.72.0/22 45164 -202.49.80.0/23 56068 -202.49.83.0/24 4648 -202.49.88.0/23 24466 -202.49.96.0/21 17472 -202.49.106.0/24 132255 -202.49.115.0/24 23655 -202.49.116.0/22 4049 -202.49.120.0/23 23655 -202.49.125.0/24 23655 -202.49.127.0/24 4648 -202.49.128.0/21 24324 -202.49.136.0/23 135069 -202.49.140.0/24 9559 -202.49.141.0/24 9303 -202.49.143.0/24 4648 -202.49.144.0/24 18119 -202.49.148.0/24 134436 -202.49.149.0/24 4768 -202.49.152.0/21 9872 -202.49.160.0/24 18353 -202.49.163.0/24 4648 -202.49.164.0/23 23735 -202.49.168.0/24 23735 -202.49.172.0/22 45359 -202.49.183.0/24 9303 -202.49.187.0/24 56304 -202.49.189.0/24 9303 -202.49.200.0/24 4768 -202.49.202.0/23 4768 -202.49.206.0/24 24183 -202.49.208.0/21 58421 -202.49.240.0/22 24226 -202.49.249.0/24 18119 -202.49.252.0/22 4768 -202.50.0.0/21 134692 -202.50.8.0/22 134692 -202.50.49.0/24 11719 -202.50.52.0/22 56204 -202.50.79.0/24 4049 -202.50.84.0/24 133480 -202.50.88.0/23 55561 -202.50.90.0/24 55747 -202.50.95.0/24 9303 -202.50.102.0/24 23838 -202.50.104.0/24 23655 -202.50.109.0/24 132003 -202.50.110.0/24 23655 -202.50.111.0/24 135495 -202.50.116.0/24 4648 -202.50.117.0/24 23655 -202.50.119.0/24 4648 -202.50.121.0/24 9503 -202.50.137.0/24 4768 -202.50.140.0/22 133915 -202.50.144.0/21 38626 -202.50.160.0/22 4648 -202.50.165.0/24 135047 -202.50.169.0/24 23655 -202.50.170.0/24 9790 -202.50.176.0/24 45179 -202.50.180.0/23 20868 -202.50.184.0/22 10022 -202.50.192.0/23 17792 -202.50.196.0/23 55878 -202.50.202.0/23 55696 -202.50.208.0/21 133928 -202.50.216.0/22 133928 -202.50.231.0/24 2570 -202.50.239.0/24 4648 -202.50.245.0/24 4648 -202.50.246.0/24 55454 -202.50.247.0/24 9503 -202.50.252.0/24 55702 -202.51.0.0/22 24504 -202.51.8.0/21 23661 -202.51.16.0/20 23950 -202.51.32.0/20 10003 -202.51.48.0/21 9993 -202.51.56.0/22 38509 -202.51.60.0/22 201341 -202.51.64.0/24 45650 -202.51.65.0/24 45845 -202.51.66.0/24 23647 -202.51.67.0/24 45845 -202.51.68.0/24 45650 -202.51.69.0/24 4007 -202.51.70.0/23 45845 -202.51.72.0/24 63991 -202.51.73.0/24 45845 -202.51.74.0/23 23647 -202.51.76.0/24 45650 -202.51.77.0/24 45845 -202.51.78.0/23 45845 -202.51.80.0/24 4007 -202.51.81.0/24 23647 -202.51.82.0/23 45845 -202.51.84.0/22 45650 -202.51.88.0/23 4007 -202.51.90.0/23 45650 -202.51.92.0/24 4007 -202.51.93.0/24 45845 -202.51.94.0/23 45845 -202.51.96.0/19 17995 -202.51.128.0/20 56190 -202.51.144.0/21 56190 -202.51.152.0/22 56190 -202.51.156.0/24 56190 -202.51.158.0/23 56190 -202.51.171.0/24 45671 -202.51.172.0/23 45671 -202.51.176.0/20 38203 -202.51.192.0/24 10220 -202.51.195.0/24 10220 -202.51.198.0/23 10220 -202.51.200.0/23 10220 -202.51.202.0/24 10220 -202.51.206.0/24 10220 -202.51.214.0/24 10220 -202.51.222.0/23 10220 -202.51.224.0/20 38144 -202.51.240.0/21 7610 -202.51.252.0/22 18052 -202.52.0.0/23 45170 -202.52.4.0/22 23932 -202.52.8.0/22 133808 -202.52.12.0/22 55653 -202.52.16.0/20 9622 -202.52.32.0/24 55534 -202.52.35.0/24 131234 -202.52.36.0/24 55543 -202.52.38.0/24 17941 -202.52.39.0/24 55312 -202.52.40.0/24 136156 -202.52.41.0/24 4826 -202.52.42.0/24 55552 -202.52.43.0/24 16509 -202.52.44.0/24 38204 -202.52.45.0/24 56307 -202.52.46.0/24 55795 -202.52.48.0/23 46055 -202.52.50.0/24 46056 -202.52.51.0/24 55562 -202.52.52.0/24 46057 -202.52.53.0/24 55566 -202.52.54.0/23 134555 -202.52.56.0/23 55448 -202.52.58.0/23 46058 -202.52.60.0/24 55920 -202.52.61.0/24 55571 -202.52.63.0/24 55570 -202.52.72.0/21 134078 -202.52.80.0/21 134078 -202.52.88.0/24 134078 -202.52.96.0/19 134078 -202.52.128.0/24 55574 -202.52.129.0/24 55575 -202.52.130.0/24 55578 -202.52.131.0/24 24213 -202.52.132.0/24 17725 -202.52.133.0/24 4637 -202.52.134.0/24 4755 -202.52.135.0/24 10106 -202.52.136.0/24 55639 -202.52.137.0/24 46059 -202.52.138.0/24 45273 -202.52.140.0/23 46061 -202.52.142.0/24 55848 -202.52.144.0/24 133115 -202.52.145.0/24 58414 -202.52.146.0/23 45324 -202.52.148.0/24 55709 -202.52.149.0/24 55710 -202.52.150.0/24 55712 -202.52.151.0/24 55377 -202.52.152.0/24 55715 -202.52.153.0/24 55717 -202.52.154.0/24 17941 -202.52.155.0/24 45620 -202.52.156.0/24 17996 -202.52.158.0/24 131581 -202.52.159.0/24 17477 -202.52.160.0/20 17894 -202.52.176.0/20 2514 -202.52.224.0/19 4613 -202.53.0.0/22 38217 -202.53.4.0/22 135247 -202.53.8.0/21 18209 -202.53.16.0/20 17941 -202.53.32.0/23 7545 -202.53.34.0/24 7545 -202.53.35.0/24 2764 -202.53.36.0/22 7545 -202.53.40.0/21 7545 -202.53.48.0/21 7545 -202.53.56.0/23 7545 -202.53.58.0/24 2764 -202.53.59.0/24 7545 -202.53.60.0/23 7545 -202.53.62.0/24 2764 -202.53.63.0/24 7545 -202.53.64.0/21 10225 -202.53.72.0/24 10225 -202.53.73.0/24 19318 -202.53.74.0/23 10225 -202.53.76.0/23 10225 -202.53.78.0/24 10225 -202.53.80.0/23 10225 -202.53.82.0/24 10225 -202.53.84.0/22 10225 -202.53.88.0/21 10225 -202.53.96.0/21 9501 -202.53.104.0/22 9501 -202.53.108.0/24 9501 -202.53.110.0/23 9501 -202.53.112.0/20 9615 -202.53.128.0/24 7540 -202.53.129.0/24 9381 -202.53.130.0/24 7540 -202.53.133.0/24 4058 -202.53.134.0/23 137093 -202.53.136.0/22 138415 -202.53.142.0/24 9584 -202.53.144.0/22 55769 -202.53.148.0/22 55639 -202.53.152.0/24 137008 -202.53.154.0/23 26704 -202.53.156.0/22 134976 -202.53.160.0/20 23923 -202.53.176.0/20 9503 -202.53.192.0/20 17916 -202.53.208.0/20 18097 -202.53.224.0/21 9340 -202.53.232.0/22 9340 -202.53.236.0/23 9340 -202.53.238.0/24 9340 -202.53.239.0/24 38525 -202.53.240.0/23 9340 -202.53.242.0/23 38525 -202.53.244.0/22 9340 -202.53.248.0/21 9340 -202.54.0.0/19 4755 -202.54.32.0/20 4755 -202.54.48.0/24 17908 -202.54.49.0/24 4755 -202.54.50.0/23 4755 -202.54.52.0/22 4755 -202.54.56.0/21 4755 -202.54.64.0/18 4755 -202.54.128.0/23 4755 -202.54.130.0/24 4755 -202.54.131.0/24 17908 -202.54.132.0/22 4755 -202.54.136.0/21 4755 -202.54.144.0/20 4755 -202.54.160.0/19 4755 -202.54.192.0/18 4755 -202.55.0.0/23 4809 -202.55.2.0/24 36678 -202.55.3.0/24 4809 -202.55.4.0/22 4809 -202.55.8.0/21 4809 -202.55.16.0/20 4809 -202.55.32.0/19 9304 -202.55.64.0/19 18106 -202.55.96.0/21 18353 -202.55.104.0/22 18353 -202.55.108.0/23 18353 -202.55.111.0/24 18353 -202.55.112.0/20 7676 -202.55.128.0/22 135523 -202.55.132.0/22 45540 -202.55.136.0/22 38643 -202.55.140.0/22 38886 -202.55.144.0/22 7718 -202.55.148.0/23 7718 -202.55.150.0/24 45447 -202.55.151.0/24 7718 -202.55.152.0/24 7718 -202.55.153.0/24 45447 -202.55.154.0/24 7718 -202.55.155.0/24 7545 -202.55.156.0/22 7718 -202.55.160.0/20 17769 -202.55.176.0/21 10219 -202.55.184.0/23 10219 -202.55.186.0/24 10219 -202.55.188.0/22 10219 -202.55.192.0/19 23635 -202.55.224.0/21 17408 -202.55.232.0/23 17408 -202.55.234.0/24 134522 -202.55.235.0/24 17408 -202.55.236.0/22 17408 -202.55.240.0/20 17408 -202.56.4.0/22 24389 -202.56.8.0/22 24246 -202.56.12.0/24 24246 -202.56.13.0/24 64022 -202.56.14.0/23 24246 -202.56.16.0/20 18075 -202.56.32.0/20 9876 -202.56.48.0/21 9876 -202.56.57.0/24 135916 -202.56.58.0/23 45885 -202.56.60.0/23 18234 -202.56.62.0/23 1221 -202.56.64.0/20 24251 -202.56.80.0/20 45960 -202.56.117.0/24 45528 -202.56.118.0/23 45528 -202.56.120.0/23 45528 -202.56.123.0/24 45528 -202.56.124.0/24 45528 -202.56.126.0/23 45528 -202.56.128.0/19 9656 -202.56.160.0/22 45287 -202.56.164.0/22 45305 -202.56.168.0/23 3 -202.56.170.0/23 131758 -202.56.172.0/22 138532 -202.56.176.0/20 7494 -202.56.192.0/20 9498 -202.56.208.0/22 9498 -202.56.212.0/23 9498 -202.56.214.0/24 9498 -202.56.215.0/24 24560 -202.56.216.0/22 9498 -202.56.220.0/24 9498 -202.56.221.0/24 24560 -202.56.222.0/23 9498 -202.56.224.0/24 24560 -202.56.225.0/24 9498 -202.56.226.0/23 9498 -202.56.228.0/22 9498 -202.56.232.0/21 9498 -202.56.240.0/20 9498 -202.57.0.0/22 17658 -202.57.4.0/23 17658 -202.57.6.0/24 17658 -202.57.7.0/24 9326 -202.57.8.0/24 9326 -202.57.9.0/24 17658 -202.57.10.0/24 17658 -202.57.11.0/24 9326 -202.57.12.0/22 17658 -202.57.16.0/20 18112 -202.57.32.0/20 9927 -202.57.48.0/21 9927 -202.57.56.0/24 59235 -202.57.57.0/24 9927 -202.57.58.0/24 9927 -202.57.59.0/24 58884 -202.57.60.0/24 58706 -202.57.61.0/24 134687 -202.57.62.0/23 9927 -202.57.64.0/19 7629 -202.57.96.0/21 7629 -202.57.104.0/22 7629 -202.57.108.0/23 7629 -202.57.111.0/24 7629 -202.57.114.0/23 7629 -202.57.116.0/22 7629 -202.57.120.0/21 7629 -202.57.128.0/18 7654 -202.57.209.0/24 131203 -202.57.210.0/23 139797 -202.57.224.0/20 18134 -202.58.1.0/24 4694 -202.58.2.0/24 24383 -202.58.3.0/24 18110 -202.58.8.0/21 24247 -202.58.16.0/22 58424 -202.58.20.0/24 9311 -202.58.21.0/24 9919 -202.58.22.0/24 9311 -202.58.23.0/24 9919 -202.58.24.0/23 9919 -202.58.26.0/23 9311 -202.58.32.0/19 9667 -202.58.80.0/21 24020 -202.58.88.0/22 24020 -202.58.95.0/24 24020 -202.58.96.0/22 131178 -202.58.101.0/24 133115 -202.58.102.0/23 45644 -202.58.104.0/23 137443 -202.58.106.0/24 137443 -202.58.107.0/24 21859 -202.58.108.0/22 134740 -202.58.116.0/22 23828 -202.58.124.0/24 45658 -202.58.126.0/24 45537 -202.58.128.0/22 17828 -202.58.132.0/22 24109 -202.58.136.0/22 24245 -202.58.140.0/24 134584 -202.58.141.0/24 24245 -202.58.142.0/24 134584 -202.58.143.0/24 24245 -202.58.144.0/20 23778 -202.58.160.0/20 24526 -202.58.176.0/21 24526 -202.58.184.0/24 17653 -202.58.192.0/21 45701 -202.58.200.0/24 45701 -202.58.202.0/23 45701 -202.58.204.0/22 45701 -202.58.216.0/21 17671 -202.58.224.0/24 9417 -202.58.225.0/24 55358 -202.58.226.0/24 1221 -202.58.227.0/24 17925 -202.58.229.0/24 55366 -202.58.231.0/24 134096 -202.58.232.0/24 55474 -202.58.233.0/24 135323 -202.58.234.0/24 45678 -202.58.235.0/24 55365 -202.58.236.0/23 55402 -202.58.238.0/23 46027 -202.58.240.0/23 45931 -202.58.242.0/24 4800 -202.58.243.0/24 59149 -202.58.244.0/24 24060 -202.58.245.0/24 45900 -202.58.247.0/24 45949 -202.58.248.0/23 134783 -202.58.250.0/24 134783 -202.58.251.0/24 38456 -202.58.252.0/24 9441 -202.59.2.0/23 24003 -202.59.4.0/22 10025 -202.59.8.0/24 49981 -202.59.9.0/24 55720 -202.59.10.0/24 55720 -202.59.11.0/24 23470 -202.59.12.0/22 45814 -202.59.16.0/21 17668 -202.59.24.0/22 17668 -202.59.28.0/23 17668 -202.59.31.0/24 17668 -202.59.32.0/19 9667 -202.59.64.0/23 17563 -202.59.66.0/24 17563 -202.59.68.0/24 17563 -202.59.70.0/24 17563 -202.59.72.0/24 17563 -202.59.74.0/23 17563 -202.59.76.0/22 17563 -202.59.80.0/24 17563 -202.59.85.0/24 17563 -202.59.86.0/24 17563 -202.59.88.0/22 17563 -202.59.94.0/24 17563 -202.59.96.0/20 4802 -202.59.112.0/20 23624 -202.59.128.0/20 38017 -202.59.144.0/21 23633 -202.59.152.0/21 38186 -202.59.160.0/20 17727 -202.59.176.0/20 9351 -202.59.208.0/22 9825 -202.59.213.0/24 4809 -202.59.214.0/24 4134 -202.59.215.0/24 58520 -202.59.216.0/21 45396 -202.59.224.0/24 55729 -202.59.225.0/24 133419 -202.59.226.0/23 55731 -202.59.228.0/24 55574 -202.59.229.0/24 45762 -202.59.230.0/24 45259 -202.59.231.0/24 55757 -202.59.232.0/23 55743 -202.59.234.0/23 17941 -202.59.238.0/23 55315 -202.59.241.0/24 55773 -202.59.242.0/23 133121 -202.59.244.0/24 55779 -202.59.245.0/24 55780 -202.59.246.0/24 56307 -202.59.247.0/24 18055 -202.59.248.0/24 45635 -202.59.249.0/24 45753 -202.59.250.0/23 55789 -202.59.252.0/23 55318 -202.59.254.0/24 55816 -202.60.0.0/21 23889 -202.60.8.0/23 24298 -202.60.10.0/24 24298 -202.60.11.0/24 136961 -202.60.12.0/22 24298 -202.60.16.0/20 18097 -202.60.32.0/20 17511 -202.60.56.0/22 38044 -202.60.60.0/24 38174 -202.60.62.0/23 38174 -202.60.64.0/20 45671 -202.60.81.0/24 45671 -202.60.82.0/23 45671 -202.60.84.0/23 45671 -202.60.88.0/23 45671 -202.60.90.0/24 45671 -202.60.94.0/23 45671 -202.60.104.0/21 24088 -202.60.112.0/20 37970 -202.60.128.0/22 23768 -202.60.132.0/22 137689 -202.60.160.0/19 9351 -202.60.192.0/21 17887 -202.60.200.0/22 17887 -202.60.204.0/23 17887 -202.60.206.0/24 45667 -202.60.207.0/24 17887 -202.60.224.0/22 7468 -202.60.228.0/22 134705 -202.60.232.0/22 134705 -202.60.236.0/23 134705 -202.60.240.0/23 134705 -202.60.243.0/24 26484 -202.60.244.0/23 26484 -202.60.248.0/22 134705 -202.60.254.0/23 134705 -202.61.0.0/24 17828 -202.61.1.0/24 23833 -202.61.2.0/23 18119 -202.61.4.0/22 4825 -202.61.8.0/23 38174 -202.61.12.0/23 9443 -202.61.16.0/20 2514 -202.61.32.0/24 23966 -202.61.33.0/24 136974 -202.61.34.0/24 23966 -202.61.35.0/24 136974 -202.61.36.0/23 136974 -202.61.38.0/24 38713 -202.61.39.0/24 136974 -202.61.40.0/24 136974 -202.61.41.0/24 23966 -202.61.42.0/23 23966 -202.61.44.0/24 23966 -202.61.45.0/24 45779 -202.61.46.0/23 23966 -202.61.48.0/23 23966 -202.61.50.0/24 136974 -202.61.51.0/24 23966 -202.61.52.0/22 23966 -202.61.56.0/21 23966 -202.61.64.0/22 134974 -202.61.72.0/22 9749 -202.61.84.0/22 133201 -202.61.88.0/22 63561 -202.61.92.0/22 9268 -202.61.96.0/24 133354 -202.61.97.0/24 45753 -202.61.98.0/23 45786 -202.61.100.0/23 45786 -202.61.102.0/24 55804 -202.61.103.0/24 55807 -202.61.104.0/23 55656 -202.61.106.0/23 132429 -202.61.109.0/24 9555 -202.61.110.0/24 134078 -202.61.111.0/24 45753 -202.61.112.0/23 55825 -202.61.114.0/23 132255 -202.61.116.0/24 135024 -202.61.117.0/24 55741 -202.61.118.0/24 55833 -202.61.119.0/24 7575 -202.61.120.0/23 133000 -202.61.122.0/24 55567 -202.61.124.0/23 55661 -202.61.126.0/24 45732 -202.61.208.0/21 10113 -202.61.216.0/22 10113 -202.61.220.0/23 10113 -202.61.222.0/24 10113 -202.61.224.0/23 10113 -202.61.226.0/24 38714 -202.61.229.0/24 10113 -202.61.230.0/23 10113 -202.61.234.0/24 10113 -202.61.235.0/24 38714 -202.61.237.0/24 38714 -202.61.238.0/23 10113 -202.61.240.0/24 10113 -202.61.243.0/24 10113 -202.61.245.0/24 38714 -202.61.247.0/24 38714 -202.61.248.0/24 10113 -202.61.249.0/24 38714 -202.61.251.0/24 10113 -202.61.252.0/24 10113 -202.61.255.0/24 38714 -202.62.0.0/21 9241 -202.62.8.0/22 9341 -202.62.12.0/22 24523 -202.62.32.0/19 23673 -202.62.64.0/22 17483 -202.62.68.0/23 17483 -202.62.70.0/24 17483 -202.62.71.0/24 138755 -202.62.72.0/21 17483 -202.62.80.0/20 17483 -202.62.96.0/20 10226 -202.62.112.0/22 137689 -202.62.116.0/23 9941 -202.62.118.0/23 4638 -202.62.120.0/21 4638 -202.62.128.0/23 9482 -202.62.130.0/23 10113 -202.62.132.0/23 9482 -202.62.134.0/23 10113 -202.62.136.0/21 9482 -202.62.144.0/22 9482 -202.62.148.0/24 9482 -202.62.149.0/24 10113 -202.62.150.0/23 9482 -202.62.152.0/22 9482 -202.62.156.0/23 9482 -202.62.158.0/24 9482 -202.62.159.0/24 10113 -202.62.160.0/20 18126 -202.62.176.0/20 7671 -202.62.192.0/24 9906 -202.62.194.0/23 9906 -202.62.196.0/22 9906 -202.62.200.0/24 9906 -202.62.215.0/24 9906 -202.62.216.0/22 9906 -202.62.220.0/23 9906 -202.62.222.0/24 9906 -202.62.224.0/20 23772 -202.62.244.0/24 45850 -202.62.245.0/24 23878 -202.62.246.0/24 45851 -202.62.247.0/24 45853 -202.62.253.0/24 17511 -202.62.254.0/24 10213 -202.63.4.0/22 10138 -202.63.16.0/22 10074 -202.63.23.0/24 10138 -202.63.32.0/19 10113 -202.63.64.0/20 9499 -202.63.84.0/22 23650 -202.63.96.0/20 17771 -202.63.112.0/22 17771 -202.63.116.0/23 17771 -202.63.118.0/24 17771 -202.63.120.0/21 17771 -202.63.128.0/19 17547 -202.63.160.0/20 4837 -202.63.192.0/21 38584 -202.63.200.0/23 38584 -202.63.203.0/24 38584 -202.63.204.0/23 38584 -202.63.206.0/24 38584 -202.63.208.0/24 62998 -202.63.209.0/24 46785 -202.63.210.0/23 46785 -202.63.212.0/22 38584 -202.63.216.0/21 38584 -202.63.224.0/21 7700 -202.63.232.0/22 7700 -202.63.236.0/23 7700 -202.63.238.0/24 1 -202.63.239.0/24 7700 -202.63.240.0/21 4007 -202.63.254.0/23 132468 -202.64.0.0/24 2706 -202.64.1.0/24 9381 -202.64.2.0/24 9381 -202.64.3.0/24 2706 -202.64.4.0/23 2706 -202.64.6.0/24 2706 -202.64.7.0/24 9381 -202.64.8.0/23 9381 -202.64.10.0/23 2706 -202.64.12.0/24 2706 -202.64.13.0/24 202 -202.64.14.0/23 2706 -202.64.16.0/23 2706 -202.64.18.0/24 2706 -202.64.19.0/24 9381 -202.64.20.0/23 2706 -202.64.22.0/24 2706 -202.64.23.0/24 9381 -202.64.24.0/24 2706 -202.64.26.0/23 2706 -202.64.28.0/23 2706 -202.64.30.0/24 2706 -202.64.31.0/24 9381 -202.64.32.0/22 2706 -202.64.36.0/24 9381 -202.64.37.0/24 2706 -202.64.38.0/23 2706 -202.64.40.0/23 2706 -202.64.42.0/24 9381 -202.64.43.0/24 2706 -202.64.44.0/23 9381 -202.64.46.0/23 2706 -202.64.48.0/24 9381 -202.64.49.0/24 2706 -202.64.50.0/24 9381 -202.64.51.0/24 2706 -202.64.52.0/24 2706 -202.64.53.0/24 9381 -202.64.54.0/23 2706 -202.64.56.0/23 2706 -202.64.58.0/24 9381 -202.64.59.0/24 2706 -202.64.60.0/24 9381 -202.64.61.0/24 2706 -202.64.62.0/24 9381 -202.64.63.0/24 2706 -202.64.64.0/22 2706 -202.64.68.0/24 9381 -202.64.69.0/24 2706 -202.64.70.0/23 9381 -202.64.72.0/24 2706 -202.64.73.0/24 9381 -202.64.74.0/24 9381 -202.64.75.0/24 2706 -202.64.76.0/24 2706 -202.64.77.0/24 9381 -202.64.78.0/24 2706 -202.64.79.0/24 9381 -202.64.80.0/24 2706 -202.64.81.0/24 9381 -202.64.82.0/24 2706 -202.64.83.0/24 9381 -202.64.84.0/24 2706 -202.64.85.0/24 9381 -202.64.86.0/24 9381 -202.64.88.0/23 2706 -202.64.90.0/23 9381 -202.64.92.0/24 9381 -202.64.93.0/24 2706 -202.64.94.0/23 9381 -202.64.96.0/22 2706 -202.64.101.0/24 2706 -202.64.104.0/23 2706 -202.64.106.0/24 2706 -202.64.107.0/24 9381 -202.64.108.0/23 2706 -202.64.110.0/24 7468 -202.64.111.0/24 2706 -202.64.112.0/23 2706 -202.64.114.0/24 2706 -202.64.115.0/24 9381 -202.64.116.0/23 9381 -202.64.118.0/24 2706 -202.64.119.0/24 9381 -202.64.120.0/24 9381 -202.64.121.0/24 2706 -202.64.122.0/24 2706 -202.64.124.0/23 2706 -202.64.126.0/24 2706 -202.64.127.0/24 9381 -202.64.128.0/24 4637 -202.64.129.0/24 2706 -202.64.130.0/23 2706 -202.64.132.0/22 2706 -202.64.136.0/24 2706 -202.64.137.0/24 4637 -202.64.138.0/24 2706 -202.64.139.0/24 4637 -202.64.140.0/24 2706 -202.64.141.0/24 9381 -202.64.142.0/24 9381 -202.64.143.0/24 2706 -202.64.144.0/21 2706 -202.64.152.0/22 2706 -202.64.156.0/24 4637 -202.64.157.0/24 2706 -202.64.158.0/24 9381 -202.64.159.0/24 2706 -202.64.160.0/24 2706 -202.64.161.0/24 9381 -202.64.162.0/24 2706 -202.64.163.0/24 9381 -202.64.164.0/24 2706 -202.64.165.0/24 9381 -202.64.166.0/24 2706 -202.64.167.0/24 9381 -202.64.168.0/23 2706 -202.64.170.0/24 9381 -202.64.171.0/24 2706 -202.64.172.0/23 2706 -202.64.174.0/24 4637 -202.64.175.0/24 2706 -202.64.176.0/23 2706 -202.64.178.0/23 4637 -202.64.180.0/23 2706 -202.64.182.0/24 2706 -202.64.183.0/24 9381 -202.64.184.0/24 2706 -202.64.185.0/24 136501 -202.64.186.0/23 2706 -202.64.188.0/23 9381 -202.64.190.0/23 2706 -202.64.192.0/24 4637 -202.64.193.0/24 2706 -202.64.194.0/23 2706 -202.64.196.0/23 2706 -202.64.198.0/24 9381 -202.64.199.0/24 2706 -202.64.200.0/24 2706 -202.64.201.0/24 9381 -202.64.202.0/24 9381 -202.64.203.0/24 2706 -202.64.204.0/24 2706 -202.64.205.0/24 9381 -202.64.206.0/24 9381 -202.64.207.0/24 2706 -202.64.208.0/22 2706 -202.64.212.0/23 9381 -202.64.214.0/23 2706 -202.64.216.0/22 2706 -202.64.220.0/24 2706 -202.64.221.0/24 9381 -202.64.222.0/24 9381 -202.64.223.0/24 2706 -202.64.224.0/24 9381 -202.64.225.0/24 2706 -202.64.226.0/24 2706 -202.64.227.0/24 9381 -202.64.228.0/23 9381 -202.64.230.0/23 2706 -202.64.232.0/23 2706 -202.64.235.0/24 9381 -202.64.236.0/24 2706 -202.64.237.0/24 9381 -202.64.238.0/23 2706 -202.64.241.0/24 9381 -202.64.242.0/23 2706 -202.64.244.0/24 9381 -202.64.245.0/24 2706 -202.64.246.0/23 2706 -202.64.248.0/23 2706 -202.64.250.0/24 9381 -202.64.251.0/24 2706 -202.64.252.0/23 9381 -202.64.254.0/23 2706 -202.65.10.0/23 17641 -202.65.14.0/23 38796 -202.65.18.0/24 17812 -202.65.20.0/24 17812 -202.65.32.0/22 10131 -202.65.36.0/23 10131 -202.65.39.0/24 10131 -202.65.40.0/21 10131 -202.65.48.0/21 10131 -202.65.56.0/24 38456 -202.65.57.0/24 10131 -202.65.58.0/23 10131 -202.65.60.0/24 10131 -202.65.61.0/24 38456 -202.65.62.0/23 38456 -202.65.64.0/19 38195 -202.65.112.0/21 23951 -202.65.121.0/24 23951 -202.65.122.0/23 23951 -202.65.124.0/22 46051 -202.65.128.0/19 18229 -202.65.160.0/23 18017 -202.65.162.0/23 55872 -202.65.164.0/22 55872 -202.65.168.0/21 38592 -202.65.176.0/20 18360 -202.65.192.0/19 9584 -202.65.240.0/21 4773 -202.66.0.0/17 4058 -202.66.128.0/19 9584 -202.66.160.0/22 133389 -202.66.164.0/22 134337 -202.66.168.0/22 134401 -202.66.172.0/22 17439 -202.66.176.0/22 132566 -202.66.190.0/23 9829 -202.66.192.0/21 4058 -202.66.200.0/22 4058 -202.66.204.0/23 4058 -202.66.206.0/23 5018 -202.66.208.0/20 4058 -202.66.224.0/19 4058 -202.67.3.0/24 4809 -202.67.4.0/23 17825 -202.67.7.0/24 17825 -202.67.8.0/21 24195 -202.67.16.0/20 7522 -202.67.32.0/20 45727 -202.67.48.0/20 23784 -202.67.64.0/18 9443 -202.67.128.0/21 9293 -202.67.136.0/22 9293 -202.67.140.0/23 9293 -202.67.142.0/24 4645 -202.67.143.0/24 9293 -202.67.144.0/20 9293 -202.67.160.0/21 9293 -202.67.168.0/22 9293 -202.67.172.0/24 9293 -202.67.173.0/24 4645 -202.67.174.0/23 9293 -202.67.176.0/20 9293 -202.67.192.0/18 9293 -202.68.64.0/21 2914 -202.68.72.0/24 3949 -202.68.73.0/24 2914 -202.68.74.0/23 2914 -202.68.76.0/22 2914 -202.68.80.0/20 24183 -202.68.96.0/19 10113 -202.68.160.0/20 17559 -202.68.176.0/22 17927 -202.68.180.0/23 17927 -202.68.182.0/24 17927 -202.68.183.0/24 135065 -202.68.184.0/21 17927 -202.68.192.0/20 17554 -202.68.208.0/24 24038 -202.68.209.0/24 55781 -202.68.210.0/23 55781 -202.68.220.0/24 55781 -202.68.221.0/24 24038 -202.68.222.0/23 55781 -202.68.224.0/19 38086 -202.69.6.0/23 134700 -202.69.8.0/22 24499 -202.69.12.0/23 24499 -202.69.15.0/24 24499 -202.69.16.0/20 23848 -202.69.32.0/22 23750 -202.69.36.0/24 23750 -202.69.38.0/23 23750 -202.69.40.0/21 23750 -202.69.48.0/22 23750 -202.69.52.0/23 23750 -202.69.54.0/24 23750 -202.69.56.0/24 23750 -202.69.58.0/24 38193 -202.69.59.0/24 23750 -202.69.60.0/22 23750 -202.69.64.0/24 4515 -202.69.65.0/24 9381 -202.69.66.0/23 9381 -202.69.68.0/22 9381 -202.69.72.0/22 9381 -202.69.77.0/24 4515 -202.69.78.0/23 4515 -202.69.80.0/20 4515 -202.69.96.0/20 9785 -202.69.112.0/20 23798 -202.69.132.0/23 9893 -202.69.135.0/24 9893 -202.69.144.0/20 23939 -202.69.160.0/23 17639 -202.69.162.0/24 17639 -202.69.163.0/24 135345 -202.69.164.0/22 17639 -202.69.168.0/21 17639 -202.69.176.0/20 17639 -202.69.192.0/20 18001 -202.69.208.0/23 9219 -202.69.216.0/23 9219 -202.69.219.0/24 9219 -202.69.240.0/20 18779 -202.70.0.0/19 17623 -202.70.33.0/24 17882 -202.70.34.0/23 17882 -202.70.36.0/22 17882 -202.70.40.0/21 17882 -202.70.48.0/20 18004 -202.70.64.0/19 23752 -202.70.112.0/20 23657 -202.70.128.0/24 17477 -202.70.129.0/24 55411 -202.70.130.0/24 23977 -202.70.131.0/24 55296 -202.70.132.0/23 45719 -202.70.134.0/23 45298 -202.70.136.0/24 46034 -202.70.137.0/24 24130 -202.70.138.0/24 46035 -202.70.139.0/24 38068 -202.70.140.0/24 55373 -202.70.141.0/24 38216 -202.70.142.0/24 58414 -202.70.143.0/24 1221 -202.70.144.0/24 17557 -202.70.145.0/24 9557 -202.70.146.0/23 17557 -202.70.160.0/23 17990 -202.70.162.0/24 55649 -202.70.163.0/24 17990 -202.70.164.0/22 17990 -202.70.168.0/23 17990 -202.70.170.0/24 17990 -202.70.172.0/23 17990 -202.70.174.0/24 55649 -202.70.175.0/24 17990 -202.70.176.0/20 23775 -202.70.208.0/20 7522 -202.70.224.0/19 18129 -202.71.0.0/19 56209 -202.71.48.0/20 58650 -202.71.64.0/19 7671 -202.71.96.0/20 17971 -202.71.112.0/22 24128 -202.71.116.0/24 24128 -202.71.120.0/24 24128 -202.71.123.0/24 24128 -202.71.124.0/24 24128 -202.71.128.0/22 17447 -202.71.132.0/23 17447 -202.71.135.0/24 17447 -202.71.136.0/21 17447 -202.71.144.0/21 17447 -202.71.152.0/23 17447 -202.71.154.0/24 17447 -202.71.160.0/24 4802 -202.71.161.0/24 7545 -202.71.163.0/24 7545 -202.71.164.0/22 4802 -202.71.168.0/23 4802 -202.71.171.0/24 4802 -202.71.172.0/22 4802 -202.71.176.0/20 23887 -202.71.192.0/18 9293 -202.72.0.0/19 4058 -202.72.32.0/21 24443 -202.72.48.0/20 23820 -202.72.64.0/20 4721 -202.72.96.0/20 22351 -202.72.128.0/21 9543 -202.72.136.0/22 9543 -202.72.140.0/24 9543 -202.72.141.0/24 4739 -202.72.142.0/23 9543 -202.72.144.0/20 9543 -202.72.160.0/20 9543 -202.72.176.0/21 9543 -202.72.184.0/24 4802 -202.72.185.0/24 9543 -202.72.186.0/23 9543 -202.72.188.0/22 9543 -202.72.192.0/23 18153 -202.72.195.0/24 18153 -202.72.196.0/24 18153 -202.72.198.0/24 58552 -202.72.201.0/24 18153 -202.72.202.0/24 18153 -202.72.204.0/23 58552 -202.72.206.0/24 18153 -202.72.208.0/21 23953 -202.72.216.0/24 23953 -202.72.217.0/24 56060 -202.72.218.0/23 23953 -202.72.220.0/23 23953 -202.72.223.0/24 23953 -202.72.224.0/22 134312 -202.72.228.0/22 134795 -202.72.232.0/21 38210 -202.72.240.0/21 24320 -202.72.248.0/22 18120 -202.73.0.0/22 4058 -202.73.4.0/23 38030 -202.73.7.0/24 47023 -202.73.8.0/21 24321 -202.73.16.0/22 58816 -202.73.21.0/24 58816 -202.73.22.0/23 58816 -202.73.24.0/24 55701 -202.73.25.0/24 139457 -202.73.26.0/24 139457 -202.73.27.0/24 55701 -202.73.28.0/22 46062 -202.73.32.0/19 18106 -202.73.64.0/19 4675 -202.73.96.0/22 23700 -202.73.100.0/23 9326 -202.73.104.0/22 45735 -202.73.108.0/24 138899 -202.73.128.0/22 4134 -202.73.136.0/21 23828 -202.73.144.0/20 4788 -202.73.184.0/24 132199 -202.73.192.0/20 9500 -202.73.208.0/20 18290 -202.73.224.0/22 18004 -202.73.228.0/23 18004 -202.73.231.0/24 18004 -202.74.0.0/22 4594 -202.74.4.0/22 23639 -202.74.16.0/20 9597 -202.74.32.0/24 55845 -202.74.33.0/24 55850 -202.74.34.0/24 9911 -202.74.35.0/24 55852 -202.74.37.0/24 55854 -202.74.38.0/24 55857 -202.74.39.0/24 55860 -202.74.40.0/24 55858 -202.74.44.0/24 55870 -202.74.45.0/24 16625 -202.74.47.0/24 55873 -202.74.48.0/24 58890 -202.74.49.0/24 55876 -202.74.50.0/24 9468 -202.74.53.0/24 131265 -202.74.54.0/24 131265 -202.74.55.0/24 137443 -202.74.56.0/24 55319 -202.74.57.0/24 17477 -202.74.58.0/23 55317 -202.74.60.0/24 55887 -202.74.61.0/24 9556 -202.74.64.0/21 9723 -202.74.72.0/21 24522 -202.74.96.0/19 2687 -202.74.128.0/20 9463 -202.74.147.0/24 9463 -202.74.148.0/24 9463 -202.74.160.0/19 7604 -202.74.192.0/19 45177 -202.74.224.0/21 4770 -202.74.233.0/24 18013 -202.74.235.0/24 18013 -202.74.236.0/22 131775 -202.74.240.0/21 24323 -202.74.250.0/24 132505 -202.74.252.0/24 1221 -202.74.253.0/24 24263 -202.75.0.0/22 4658 -202.75.4.0/22 17564 -202.75.8.0/21 24250 -202.75.16.0/24 23948 -202.75.17.0/24 38784 -202.75.18.0/24 23948 -202.75.19.0/24 38784 -202.75.20.0/24 38784 -202.75.22.0/23 23948 -202.75.24.0/22 23948 -202.75.32.0/19 17971 -202.75.64.0/21 7651 -202.75.72.0/22 7651 -202.75.76.0/22 7650 -202.75.80.0/21 7577 -202.75.88.0/22 7577 -202.75.92.0/23 7577 -202.75.96.0/20 45710 -202.75.112.0/20 10001 -202.75.128.0/18 9534 -202.75.192.0/21 703 -202.75.200.0/24 703 -202.75.201.0/24 395228 -202.75.202.0/23 703 -202.75.204.0/22 703 -202.75.208.0/21 4837 -202.75.216.0/21 4134 -202.75.224.0/20 10013 -202.75.248.0/23 4609 -202.75.250.0/24 4609 -202.75.251.0/24 136167 -202.76.0.0/18 4058 -202.76.64.0/20 4058 -202.76.80.0/22 4058 -202.76.84.0/23 4058 -202.76.86.0/24 5018 -202.76.87.0/24 4058 -202.76.88.0/21 4058 -202.76.96.0/19 4058 -202.76.128.0/18 10113 -202.76.192.0/19 23805 -202.76.224.0/20 24218 -202.76.240.0/22 24331 -202.76.244.0/24 24331 -202.76.247.0/24 24331 -202.76.248.0/22 38220 -202.77.0.0/24 4623 -202.77.2.0/24 4623 -202.77.4.0/22 9269 -202.77.10.0/23 4623 -202.77.12.0/23 4623 -202.77.15.0/24 4623 -202.77.16.0/21 10099 -202.77.24.0/21 9269 -202.77.32.0/19 10103 -202.77.96.0/19 9905 -202.77.128.0/21 9925 -202.77.136.0/24 24488 -202.77.137.0/24 24501 -202.77.140.0/22 9925 -202.77.144.0/20 9925 -202.77.160.0/19 9925 -202.77.192.0/18 9925 -202.78.16.0/21 23703 -202.78.24.0/24 132850 -202.78.25.0/24 23703 -202.78.26.0/24 23703 -202.78.27.0/24 7474 -202.78.28.0/24 7474 -202.78.29.0/24 23703 -202.78.30.0/23 23703 -202.78.32.0/20 18111 -202.78.52.0/22 3758 -202.78.56.0/23 45143 -202.78.58.0/24 45143 -202.78.64.0/23 59348 -202.78.66.0/23 6648 -202.78.68.0/22 6648 -202.78.72.0/22 6648 -202.78.76.0/23 6648 -202.78.78.0/24 6648 -202.78.79.0/24 132716 -202.78.80.0/20 6648 -202.78.96.0/19 6648 -202.78.128.0/19 4768 -202.78.176.0/20 4721 -202.78.192.0/20 18059 -202.78.209.0/24 7671 -202.78.213.0/24 7671 -202.78.215.0/24 7671 -202.78.216.0/22 7671 -202.78.224.0/23 24085 -202.78.227.0/24 24085 -202.78.228.0/22 24085 -202.78.232.0/21 23860 -202.78.240.0/21 24226 -202.78.248.0/23 24283 -202.78.250.0/24 24283 -202.78.251.0/24 38874 -202.78.252.0/22 4515 -202.79.0.0/20 4713 -202.79.16.0/21 24481 -202.79.24.0/24 24492 -202.79.25.0/24 133378 -202.79.26.0/23 133378 -202.79.28.0/22 133378 -202.79.32.0/19 17501 -202.79.128.0/19 17698 -202.79.160.0/20 64050 -202.79.176.0/20 23939 -202.79.192.0/22 9989 -202.79.196.0/24 9989 -202.79.200.0/23 9989 -202.79.202.0/24 9989 -202.79.203.0/24 25605 -202.79.204.0/22 9989 -202.79.208.0/20 9989 -202.79.240.0/21 24253 -202.80.0.0/21 4058 -202.80.8.0/22 4058 -202.80.12.0/23 4058 -202.80.14.0/23 5018 -202.80.16.0/20 4058 -202.80.32.0/20 9249 -202.80.48.0/22 703 -202.80.52.0/24 703 -202.80.53.0/24 395753 -202.80.54.0/23 703 -202.80.56.0/21 703 -202.80.64.0/22 133414 -202.80.68.0/23 133414 -202.80.70.0/23 9716 -202.80.72.0/21 133414 -202.80.80.0/20 133414 -202.80.96.0/21 24259 -202.80.104.0/22 7532 -202.80.108.0/24 7532 -202.80.109.0/24 45761 -202.80.110.0/24 45761 -202.80.111.0/24 7532 -202.80.112.0/20 23699 -202.80.128.0/20 9304 -202.80.144.0/21 38195 -202.80.160.0/20 5666 -202.80.176.0/22 4826 -202.80.180.0/23 4826 -202.80.182.0/24 4826 -202.80.183.0/24 23877 -202.80.184.0/23 4826 -202.80.186.0/24 45881 -202.80.187.0/24 4826 -202.80.188.0/22 4826 -202.80.192.0/22 4134 -202.80.208.0/21 17670 -202.80.216.0/22 17670 -202.80.220.0/24 23946 -202.80.222.0/24 17670 -202.80.224.0/22 45458 -202.80.228.0/23 45458 -202.80.230.0/24 45806 -202.80.231.0/24 45458 -202.80.232.0/24 45458 -202.80.233.0/24 55476 -202.80.234.0/23 45458 -202.80.236.0/22 45458 -202.80.240.0/24 45458 -202.80.241.0/24 45430 -202.80.242.0/24 45430 -202.80.243.0/24 45458 -202.80.244.0/23 45458 -202.80.246.0/24 45959 -202.80.247.0/24 45458 -202.80.248.0/24 45458 -202.80.249.0/24 45430 -202.80.250.0/23 45458 -202.80.252.0/24 45458 -202.80.253.0/24 45430 -202.80.254.0/24 45430 -202.80.255.0/24 136605 -202.81.4.0/24 131476 -202.81.5.0/24 36351 -202.81.6.0/23 131476 -202.81.8.0/21 9621 -202.81.16.0/24 4826 -202.81.18.0/24 4826 -202.81.20.0/24 4826 -202.81.23.0/24 4826 -202.81.24.0/23 4826 -202.81.31.0/24 4826 -202.81.32.0/24 9326 -202.81.34.0/23 23692 -202.81.36.0/23 23692 -202.81.49.0/24 45312 -202.81.52.0/24 45312 -202.81.63.0/24 45312 -202.81.64.0/20 133612 -202.81.80.0/20 23624 -202.81.131.0/24 4797 -202.81.132.0/23 4797 -202.81.160.0/24 24306 -202.81.161.0/24 17970 -202.81.162.0/24 24306 -202.81.163.0/24 17970 -202.81.164.0/23 24306 -202.81.166.0/24 24306 -202.81.167.0/24 17970 -202.81.168.0/21 17970 -202.81.208.0/20 18065 -202.81.224.0/22 4658 -202.81.228.0/24 137969 -202.81.229.0/24 4658 -202.81.230.0/23 4658 -202.81.232.0/21 4658 -202.81.240.0/20 4658 -202.82.0.0/21 4515 -202.82.8.0/22 4515 -202.82.12.0/23 4515 -202.82.14.0/24 4515 -202.82.15.0/24 9538 -202.82.16.0/20 4515 -202.82.32.0/19 4515 -202.82.64.0/20 4515 -202.82.80.0/21 4515 -202.82.88.0/24 4760 -202.82.89.0/24 9409 -202.82.90.0/23 4515 -202.82.92.0/22 4515 -202.82.96.0/22 4515 -202.82.101.0/24 4515 -202.82.102.0/23 4515 -202.82.104.0/21 4515 -202.82.112.0/20 4515 -202.82.128.0/17 4515 -202.83.8.0/23 18779 -202.83.10.0/24 9919 -202.83.11.0/24 18779 -202.83.16.0/21 24309 -202.83.24.0/23 24309 -202.83.26.0/24 24309 -202.83.27.0/24 131269 -202.83.28.0/24 131269 -202.83.29.0/24 24309 -202.83.30.0/23 131269 -202.83.32.0/19 17465 -202.83.64.0/19 9723 -202.83.96.0/20 18106 -202.83.112.0/21 10023 -202.83.120.0/22 131745 -202.83.124.0/22 134146 -202.83.128.0/20 9993 -202.83.144.0/21 24270 -202.83.152.0/21 9993 -202.83.160.0/20 23888 -202.83.176.0/21 45838 -202.83.184.0/21 4721 -202.83.192.0/20 17888 -202.83.208.0/22 17888 -202.83.212.0/23 17888 -202.83.214.0/24 17888 -202.83.215.0/24 45932 -202.83.216.0/24 17888 -202.83.217.0/24 45932 -202.83.218.0/24 7473 -202.83.219.0/24 17888 -202.83.220.0/22 17888 -202.83.224.0/20 10013 -202.83.240.0/21 24334 -202.83.248.0/22 23767 -202.84.0.0/22 17781 -202.84.16.0/23 17781 -202.84.18.0/23 24263 -202.84.20.0/24 63956 -202.84.21.0/24 45671 -202.84.23.0/24 17476 -202.84.32.0/20 9230 -202.84.48.0/20 23827 -202.84.72.0/21 24441 -202.84.80.0/20 7522 -202.84.96.0/23 18396 -202.84.104.0/24 18396 -202.84.106.0/23 18396 -202.84.111.0/24 18396 -202.84.113.0/24 18396 -202.84.114.0/23 18396 -202.84.119.0/24 18396 -202.84.124.0/23 18396 -202.84.127.0/24 18396 -202.84.128.0/17 4637 -202.85.0.0/18 4515 -202.85.64.0/21 4515 -202.85.72.0/22 4515 -202.85.76.0/23 4515 -202.85.78.0/24 4760 -202.85.79.0/24 4515 -202.85.80.0/20 4515 -202.85.96.0/22 4515 -202.85.100.0/23 4515 -202.85.102.0/23 4760 -202.85.104.0/21 4515 -202.85.112.0/21 4515 -202.85.120.0/22 4515 -202.85.124.0/24 4515 -202.85.125.0/24 9925 -202.85.126.0/23 4515 -202.85.128.0/19 9729 -202.85.164.0/22 9729 -202.85.168.0/21 9729 -202.85.180.0/22 9729 -202.85.184.0/22 9729 -202.85.188.0/24 9729 -202.85.190.0/23 9729 -202.85.192.0/22 10231 -202.85.196.0/23 10231 -202.85.200.0/24 4760 -202.85.201.0/24 10231 -202.85.208.0/23 4808 -202.85.210.0/24 4847 -202.85.211.0/24 4808 -202.85.212.0/22 4808 -202.85.216.0/21 4808 -202.85.224.0/20 17619 -202.85.240.0/24 38333 -202.85.241.0/24 17734 -202.85.242.0/23 38333 -202.85.244.0/22 38333 -202.85.248.0/21 4058 -202.86.4.0/22 17457 -202.86.8.0/21 4766 -202.86.32.0/23 18255 -202.86.34.0/24 18255 -202.86.48.0/21 10023 -202.86.56.0/21 17676 -202.86.64.0/23 17554 -202.86.66.0/24 17814 -202.86.67.0/24 17554 -202.86.68.0/22 17554 -202.86.72.0/22 17554 -202.86.76.0/23 17554 -202.86.96.0/20 18021 -202.86.112.0/24 38195 -202.86.113.0/24 9443 -202.86.114.0/23 9443 -202.86.116.0/23 9443 -202.86.118.0/24 9443 -202.86.119.0/24 38195 -202.86.120.0/21 7670 -202.86.128.0/18 4609 -202.86.192.0/21 4775 -202.86.208.0/21 9268 -202.86.216.0/23 63969 -202.86.218.0/24 63969 -202.86.219.0/24 58715 -202.86.220.0/22 63969 -202.86.240.0/21 17698 -202.86.250.0/24 59346 -202.86.251.0/24 37934 -202.86.252.0/22 4748 -202.87.0.0/22 9293 -202.87.4.0/23 1221 -202.87.6.0/23 9268 -202.87.8.0/23 24395 -202.87.10.0/24 24395 -202.87.12.0/24 24395 -202.87.14.0/23 24395 -202.87.16.0/24 38220 -202.87.21.0/24 38220 -202.87.22.0/24 38220 -202.87.24.0/24 38220 -202.87.25.0/24 45671 -202.87.31.0/24 38220 -202.87.32.0/19 17439 -202.87.96.0/19 17666 -202.87.128.0/19 18200 -202.87.160.0/20 18390 -202.87.178.0/23 38496 -202.87.180.0/22 38496 -202.87.184.0/21 38496 -202.87.208.0/22 38800 -202.87.212.0/22 38249 -202.87.216.0/21 24321 -202.87.224.0/20 23829 -202.87.240.0/21 24202 -202.87.248.0/21 24201 -202.88.0.0/20 4058 -202.88.16.0/22 4058 -202.88.20.0/23 5018 -202.88.22.0/23 4058 -202.88.24.0/23 4058 -202.88.26.0/24 4058 -202.88.27.0/24 5018 -202.88.28.0/22 4058 -202.88.36.0/22 26658 -202.88.40.0/22 134824 -202.88.48.0/20 2519 -202.88.64.0/19 7131 -202.88.96.0/19 4058 -202.88.129.0/24 17488 -202.88.130.0/23 17488 -202.88.132.0/22 17488 -202.88.136.0/23 17488 -202.88.138.0/24 17488 -202.88.140.0/22 17488 -202.88.144.0/23 17488 -202.88.147.0/24 17488 -202.88.148.0/22 17488 -202.88.152.0/21 17488 -202.88.160.0/23 17488 -202.88.163.0/24 17488 -202.88.164.0/23 17488 -202.88.166.0/24 17488 -202.88.168.0/23 17488 -202.88.170.0/24 17488 -202.88.174.0/23 17488 -202.88.176.0/22 17488 -202.88.180.0/23 17488 -202.88.182.0/24 17488 -202.88.184.0/24 17488 -202.88.186.0/23 17488 -202.88.188.0/22 17488 -202.88.192.0/21 24255 -202.88.208.0/24 17488 -202.88.211.0/24 17488 -202.88.212.0/24 17488 -202.88.214.0/24 17488 -202.88.216.0/23 17488 -202.88.222.0/23 17488 -202.88.224.0/19 17465 -202.89.0.0/22 38197 -202.89.4.0/22 37999 -202.89.16.0/23 1273 -202.89.18.0/24 1273 -202.89.19.0/24 8576 -202.89.20.0/23 8576 -202.89.22.0/24 1273 -202.89.23.0/24 8576 -202.89.24.0/21 38004 -202.89.32.0/20 9889 -202.89.48.0/21 9889 -202.89.56.0/24 9889 -202.89.57.0/24 45459 -202.89.58.0/23 9889 -202.89.60.0/22 9889 -202.89.64.0/22 18002 -202.89.71.0/24 18002 -202.89.73.0/24 133647 -202.89.76.0/23 18002 -202.89.78.0/24 18002 -202.89.79.0/24 133647 -202.89.80.0/20 23822 -202.89.96.0/24 4812 -202.89.100.0/22 45666 -202.89.104.0/22 45663 -202.89.112.0/22 7682 -202.89.116.0/23 45320 -202.89.118.0/24 45670 -202.89.121.0/24 45501 -202.89.122.0/23 10229 -202.89.124.0/22 17587 -202.89.128.0/19 9790 -202.89.160.0/19 9822 -202.89.192.0/20 4775 -202.89.224.0/21 8075 -202.89.232.0/21 59067 -202.89.240.0/21 24259 -202.90.4.0/22 18409 -202.90.8.0/22 16625 -202.90.15.0/24 20940 -202.90.20.0/22 138950 -202.90.32.0/24 134994 -202.90.33.0/24 55764 -202.90.34.0/23 23992 -202.90.36.0/24 45259 -202.90.38.0/24 55366 -202.90.39.0/24 1221 -202.90.40.0/24 45264 -202.90.41.0/24 56081 -202.90.44.0/22 9245 -202.90.48.0/21 9336 -202.90.56.0/21 9245 -202.90.64.0/24 55943 -202.90.65.0/24 9471 -202.90.66.0/23 9471 -202.90.68.0/22 9471 -202.90.72.0/21 9471 -202.90.80.0/21 9471 -202.90.88.0/23 55943 -202.90.90.0/23 9471 -202.90.92.0/22 9471 -202.90.128.0/19 9821 -202.90.168.0/24 138337 -202.90.170.0/23 138337 -202.90.172.0/24 138342 -202.90.174.0/23 138342 -202.90.176.0/20 23967 -202.90.192.0/24 45264 -202.90.194.0/23 38776 -202.90.197.0/24 45277 -202.90.198.0/23 38779 -202.90.200.0/22 45273 -202.90.204.0/24 24222 -202.90.206.0/23 38195 -202.90.208.0/20 58650 -202.90.240.0/21 4764 -202.90.248.0/24 45165 -202.90.250.0/24 7695 -202.90.252.0/22 17589 -202.91.8.0/24 38150 -202.91.9.0/24 136079 -202.91.10.0/23 38150 -202.91.14.0/23 38150 -202.91.16.0/23 17724 -202.91.18.0/23 24378 -202.91.20.0/22 17724 -202.91.24.0/21 24528 -202.91.32.0/24 8100 -202.91.33.0/24 40065 -202.91.34.0/23 40065 -202.91.36.0/22 137443 -202.91.40.0/23 136224 -202.91.42.0/24 136224 -202.91.43.0/24 134404 -202.91.44.0/22 136000 -202.91.48.0/20 23632 -202.91.64.0/23 9830 -202.91.66.0/24 9830 -202.91.68.0/22 9830 -202.91.72.0/21 9830 -202.91.80.0/20 9830 -202.91.128.0/22 17964 -202.91.132.0/22 38058 -202.91.136.0/22 24391 -202.91.140.0/23 24391 -202.91.142.0/24 38461 -202.91.143.0/24 38015 -202.91.144.0/20 10019 -202.91.160.0/20 17452 -202.91.176.0/24 4808 -202.91.177.0/24 4847 -202.91.178.0/23 4808 -202.91.180.0/23 4808 -202.91.182.0/24 4808 -202.91.183.0/24 4847 -202.91.184.0/23 4808 -202.91.186.0/24 4808 -202.91.188.0/24 4847 -202.91.190.0/23 4808 -202.91.192.0/20 7545 -202.91.208.0/20 9351 -202.91.224.0/20 4837 -202.91.240.0/21 4134 -202.91.248.0/23 4134 -202.91.250.0/24 4134 -202.91.251.0/24 58461 -202.92.4.0/22 45899 -202.92.16.0/22 38547 -202.92.20.0/23 38547 -202.92.22.0/24 55453 -202.92.23.0/24 38547 -202.92.24.0/24 38547 -202.92.26.0/23 38547 -202.92.28.0/22 38547 -202.92.34.0/24 2764 -202.92.35.0/24 9443 -202.92.36.0/22 9443 -202.92.41.0/24 9443 -202.92.64.0/20 2764 -202.92.80.0/21 2764 -202.92.88.0/22 2764 -202.92.92.0/23 2764 -202.92.94.0/23 134355 -202.92.96.0/23 2764 -202.92.98.0/24 2764 -202.92.99.0/24 7545 -202.92.100.0/22 2764 -202.92.104.0/23 7545 -202.92.106.0/23 2764 -202.92.108.0/24 7545 -202.92.109.0/24 2764 -202.92.110.0/23 7545 -202.92.112.0/22 2764 -202.92.116.0/23 7545 -202.92.118.0/24 7545 -202.92.119.0/24 2764 -202.92.120.0/24 2764 -202.92.121.0/24 7545 -202.92.122.0/24 7545 -202.92.123.0/24 2764 -202.92.124.0/22 2764 -202.92.128.0/22 23862 -202.92.132.0/24 23862 -202.92.133.0/24 131245 -202.92.134.0/24 23862 -202.92.136.0/22 23862 -202.92.140.0/23 135162 -202.92.144.0/22 45209 -202.92.148.0/22 45600 -202.92.152.0/24 132792 -202.92.153.0/24 131281 -202.92.154.0/24 132795 -202.92.156.0/24 132796 -202.92.159.0/24 23862 -202.92.160.0/19 9304 -202.92.192.0/21 56239 -202.92.200.0/21 55679 -202.92.208.0/21 18065 -202.92.216.0/21 56186 -202.92.233.0/24 9498 -202.92.240.0/21 18111 -202.93.8.0/21 24441 -202.93.16.0/20 23952 -202.93.32.0/20 4761 -202.93.48.0/20 7470 -202.93.64.0/19 23816 -202.93.96.0/20 45510 -202.93.112.0/21 23696 -202.93.120.0/23 23696 -202.93.123.0/24 23696 -202.93.124.0/24 23696 -202.93.128.0/20 4382 -202.93.144.0/21 24251 -202.93.152.0/24 38724 -202.93.153.0/24 45498 -202.93.154.0/24 38799 -202.93.155.0/24 1221 -202.93.156.0/22 24088 -202.93.160.0/20 23669 -202.93.176.0/22 23669 -202.93.180.0/24 23669 -202.93.181.0/24 2764 -202.93.182.0/23 23669 -202.93.184.0/21 23669 -202.93.196.0/24 4637 -202.93.205.0/24 4637 -202.93.206.0/23 4637 -202.93.208.0/20 10094 -202.93.224.0/22 38758 -202.93.228.0/23 38758 -202.93.231.0/24 38758 -202.93.236.0/22 7713 -202.93.240.0/24 38778 -202.93.243.0/24 24198 -202.93.246.0/23 38778 -202.93.248.0/24 17669 -202.93.252.0/24 4808 -202.93.253.0/24 4847 -202.93.254.0/24 4847 -202.93.255.0/24 4808 -202.94.1.0/24 4808 -202.94.32.0/20 23727 -202.94.48.0/20 24249 -202.94.64.0/24 24093 -202.94.65.0/24 3949 -202.94.66.0/24 55915 -202.94.67.0/24 55918 -202.94.68.0/24 133115 -202.94.69.0/24 7545 -202.94.70.0/24 55919 -202.94.72.0/24 132077 -202.94.73.0/24 55925 -202.94.75.0/24 55940 -202.94.76.0/23 55938 -202.94.78.0/23 55941 -202.94.80.0/24 16625 -202.94.83.0/24 55672 -202.94.86.0/24 55949 -202.94.87.0/24 45561 -202.94.88.0/23 38252 -202.94.90.0/23 45530 -202.94.96.0/19 703 -202.94.128.0/19 9600 -202.94.160.0/22 133001 -202.94.164.0/23 135000 -202.94.166.0/24 63989 -202.94.167.0/24 17736 -202.94.172.0/23 132335 -202.94.174.0/23 136557 -202.94.176.0/22 18068 -202.94.180.0/23 18068 -202.94.182.0/23 7506 -202.94.184.0/21 18068 -202.94.192.0/19 18068 -202.94.224.0/20 18218 -202.95.0.0/22 64050 -202.95.4.0/23 64050 -202.95.6.0/23 4808 -202.95.8.0/21 64050 -202.95.16.0/21 64050 -202.95.24.0/21 4808 -202.95.32.0/19 7511 -202.95.64.0/19 703 -202.95.96.0/21 703 -202.95.104.0/24 395753 -202.95.105.0/24 703 -202.95.106.0/23 703 -202.95.108.0/22 703 -202.95.112.0/20 703 -202.95.128.0/21 9875 -202.95.136.0/23 9875 -202.95.138.0/24 9875 -202.95.139.0/24 58478 -202.95.140.0/23 9875 -202.95.143.0/24 9875 -202.95.144.0/21 9875 -202.95.152.0/22 9875 -202.95.156.0/24 58478 -202.95.157.0/24 9875 -202.95.158.0/23 9875 -202.95.160.0/20 18075 -202.95.176.0/20 23778 -202.95.192.0/20 55792 -202.95.208.0/20 10021 -202.95.224.0/21 17894 -202.95.232.0/24 17894 -202.95.233.0/24 62500 -202.95.235.0/24 17894 -202.95.236.0/22 17894 -202.95.248.0/23 37897 -202.95.250.0/24 133455 -202.95.251.0/24 38261 -202.96.0.0/18 4808 -202.96.64.0/19 4837 -202.96.96.0/19 4134 -202.96.128.0/21 4134 -202.96.136.0/22 4134 -202.96.140.0/24 58543 -202.96.141.0/24 4134 -202.96.142.0/23 4134 -202.96.144.0/20 4134 -202.96.160.0/21 4134 -202.96.168.0/24 4813 -202.96.169.0/24 4134 -202.96.170.0/23 4134 -202.96.172.0/22 4134 -202.96.176.0/20 4134 -202.96.192.0/18 4812 -202.97.0.0/18 4134 -202.97.80.0/20 4134 -202.97.96.0/19 4134 -202.97.128.0/17 4837 -202.98.0.0/19 4837 -202.98.32.0/19 4134 -202.98.64.0/19 4134 -202.98.96.0/20 4134 -202.98.112.0/21 4134 -202.98.120.0/23 4134 -202.98.122.0/24 4134 -202.98.123.0/24 38283 -202.98.124.0/22 4134 -202.98.128.0/18 4134 -202.98.192.0/24 58571 -202.98.193.0/24 4134 -202.98.194.0/23 58519 -202.98.196.0/22 4134 -202.98.200.0/21 4134 -202.98.208.0/20 4134 -202.98.224.0/19 4134 -202.99.0.0/24 4808 -202.99.1.0/24 17964 -202.99.2.0/23 4808 -202.99.4.0/22 4808 -202.99.8.0/21 4808 -202.99.16.0/22 4808 -202.99.20.0/24 4808 -202.99.21.0/24 4837 -202.99.22.0/23 4808 -202.99.24.0/21 4808 -202.99.32.0/20 4808 -202.99.48.0/21 4808 -202.99.56.0/24 4837 -202.99.57.0/24 4808 -202.99.58.0/23 4808 -202.99.60.0/23 4808 -202.99.62.0/24 4808 -202.99.63.0/24 17964 -202.99.64.0/18 4837 -202.99.128.0/18 4837 -202.99.192.0/20 4837 -202.99.208.0/21 4837 -202.99.216.0/22 4837 -202.99.220.0/24 4837 -202.99.221.0/24 9929 -202.99.222.0/23 4837 -202.99.224.0/21 4837 -202.99.232.0/22 4837 -202.99.236.0/24 4837 -202.99.237.0/24 139007 -202.99.238.0/23 4837 -202.99.240.0/23 4837 -202.99.242.0/24 139007 -202.99.243.0/24 4837 -202.99.244.0/22 4837 -202.99.248.0/21 4837 -202.100.0.0/16 4134 -202.101.0.0/18 4812 -202.101.64.0/18 4134 -202.101.128.0/17 4134 -202.102.0.0/23 4134 -202.102.2.0/24 23650 -202.102.3.0/24 4134 -202.102.4.0/22 4134 -202.102.8.0/21 4134 -202.102.16.0/20 4134 -202.102.32.0/20 4134 -202.102.48.0/22 4134 -202.102.52.0/22 137702 -202.102.56.0/21 137702 -202.102.64.0/22 137702 -202.102.68.0/23 137702 -202.102.70.0/24 137702 -202.102.71.0/24 4134 -202.102.72.0/21 137702 -202.102.80.0/20 137702 -202.102.96.0/22 137702 -202.102.100.0/22 4134 -202.102.104.0/21 4134 -202.102.112.0/23 4134 -202.102.114.0/23 137702 -202.102.116.0/22 4134 -202.102.120.0/21 4134 -202.102.128.0/18 4837 -202.102.192.0/19 4134 -202.102.224.0/19 4837 -202.103.0.0/17 4134 -202.103.128.0/19 4134 -202.103.160.0/24 134764 -202.103.161.0/24 4134 -202.103.162.0/23 4134 -202.103.164.0/22 4134 -202.103.168.0/21 4134 -202.103.176.0/23 4134 -202.103.178.0/24 58543 -202.103.179.0/24 4134 -202.103.180.0/23 4134 -202.103.182.0/24 4813 -202.103.183.0/24 4134 -202.103.184.0/21 4134 -202.103.192.0/20 4134 -202.103.208.0/22 4134 -202.103.212.0/23 4134 -202.103.214.0/23 134419 -202.103.216.0/21 4134 -202.103.224.0/20 4134 -202.103.240.0/22 4134 -202.103.244.0/23 4134 -202.103.246.0/24 4134 -202.103.247.0/24 134419 -202.103.248.0/21 4134 -202.104.0.0/20 4134 -202.104.16.0/23 4134 -202.104.18.0/24 4134 -202.104.19.0/24 134764 -202.104.20.0/22 4134 -202.104.24.0/21 4134 -202.104.32.0/19 4134 -202.104.64.0/18 4134 -202.104.128.0/24 4816 -202.104.129.0/24 4134 -202.104.130.0/23 4134 -202.104.132.0/22 4134 -202.104.136.0/23 4134 -202.104.138.0/24 4134 -202.104.139.0/24 4816 -202.104.140.0/22 4134 -202.104.144.0/20 4134 -202.104.160.0/20 4134 -202.104.176.0/21 4134 -202.104.184.0/23 4134 -202.104.186.0/23 58543 -202.104.188.0/24 58543 -202.104.189.0/24 4134 -202.104.190.0/23 4134 -202.104.192.0/19 4134 -202.104.224.0/21 4134 -202.104.232.0/22 4134 -202.104.236.0/22 58543 -202.104.240.0/23 58543 -202.104.242.0/24 58543 -202.104.243.0/24 4134 -202.104.244.0/22 4134 -202.104.248.0/21 4134 -202.105.0.0/22 4134 -202.105.4.0/24 4134 -202.105.5.0/24 4813 -202.105.6.0/24 4134 -202.105.7.0/24 4813 -202.105.8.0/22 4134 -202.105.12.0/24 4134 -202.105.13.0/24 134764 -202.105.14.0/23 4134 -202.105.16.0/23 4134 -202.105.18.0/24 4134 -202.105.19.0/24 134764 -202.105.20.0/24 4134 -202.105.21.0/24 134764 -202.105.22.0/23 4134 -202.105.24.0/21 4134 -202.105.32.0/19 4134 -202.105.64.0/20 4134 -202.105.80.0/22 4813 -202.105.84.0/22 4134 -202.105.88.0/21 4134 -202.105.96.0/19 4134 -202.105.128.0/19 4134 -202.105.160.0/20 4134 -202.105.176.0/24 58543 -202.105.177.0/24 4134 -202.105.178.0/23 58543 -202.105.180.0/23 4134 -202.105.182.0/24 58543 -202.105.183.0/24 4134 -202.105.184.0/21 4134 -202.105.192.0/20 4134 -202.105.208.0/22 4134 -202.105.212.0/22 4813 -202.105.216.0/21 4134 -202.105.224.0/21 4134 -202.105.232.0/23 58543 -202.105.234.0/23 4134 -202.105.236.0/22 4134 -202.105.240.0/22 4813 -202.105.244.0/23 4134 -202.105.246.0/24 4134 -202.105.247.0/24 58543 -202.105.248.0/21 4134 -202.106.0.0/18 4808 -202.106.64.0/19 4808 -202.106.96.0/20 4808 -202.106.112.0/21 4808 -202.106.120.0/22 4808 -202.106.124.0/24 4808 -202.106.125.0/24 9401 -202.106.126.0/24 9401 -202.106.127.0/24 9811 -202.106.128.0/22 4808 -202.106.132.0/24 4808 -202.106.133.0/24 4837 -202.106.134.0/23 4808 -202.106.136.0/22 4808 -202.106.140.0/23 4808 -202.106.142.0/24 4808 -202.106.143.0/24 4837 -202.106.144.0/20 4808 -202.106.160.0/19 4808 -202.106.192.0/18 4808 -202.107.0.0/17 4837 -202.107.128.0/23 4134 -202.107.130.0/23 137694 -202.107.132.0/22 4134 -202.107.136.0/23 4134 -202.107.138.0/23 137694 -202.107.140.0/22 137694 -202.107.144.0/20 4134 -202.107.160.0/19 4134 -202.107.192.0/24 58461 -202.107.193.0/24 4134 -202.107.194.0/23 4134 -202.107.196.0/22 4134 -202.107.200.0/21 4134 -202.107.208.0/20 4134 -202.107.224.0/24 4134 -202.107.225.0/24 58461 -202.107.226.0/23 4134 -202.107.228.0/22 4134 -202.107.232.0/21 4134 -202.107.240.0/20 4134 -202.108.0.0/17 4808 -202.108.128.0/20 4808 -202.108.144.0/23 4808 -202.108.146.0/23 4837 -202.108.148.0/22 4808 -202.108.152.0/21 4808 -202.108.160.0/19 4808 -202.108.192.0/18 4808 -202.109.0.0/17 4812 -202.109.128.0/17 4134 -202.110.0.0/17 4837 -202.110.128.0/18 4134 -202.110.192.0/18 4837 -202.111.0.0/18 4809 -202.111.64.0/19 4134 -202.111.96.0/20 4134 -202.111.112.0/21 4134 -202.111.120.0/22 4134 -202.111.124.0/23 4134 -202.111.126.0/23 137702 -202.111.128.0/18 4837 -202.111.192.0/19 4809 -202.111.224.0/19 4134 -202.112.0.0/21 4538 -202.112.8.0/22 4538 -202.112.12.0/23 4538 -202.112.14.0/23 24355 -202.112.16.0/24 24355 -202.112.17.0/24 24357 -202.112.18.0/24 24357 -202.112.19.0/24 4538 -202.112.20.0/23 4538 -202.112.22.0/24 4538 -202.112.23.0/24 24361 -202.112.24.0/23 4538 -202.112.26.0/23 24364 -202.112.28.0/24 24364 -202.112.29.0/24 4538 -202.112.30.0/23 4538 -202.112.32.0/22 4538 -202.112.36.0/23 4538 -202.112.38.0/24 4538 -202.112.39.0/24 23910 -202.112.40.0/22 4538 -202.112.44.0/24 24348 -202.112.45.0/24 23910 -202.112.46.0/24 4538 -202.112.47.0/24 23910 -202.112.48.0/24 4538 -202.112.49.0/24 23910 -202.112.50.0/23 23910 -202.112.52.0/24 23910 -202.112.53.0/24 4538 -202.112.54.0/23 23910 -202.112.56.0/23 23910 -202.112.58.0/24 23910 -202.112.59.0/24 4538 -202.112.60.0/22 4538 -202.112.64.0/18 4538 -202.112.128.0/17 4538 -202.113.0.0/16 4538 -202.114.0.0/16 4538 -202.115.0.0/19 24355 -202.115.32.0/19 4538 -202.115.64.0/20 24355 -202.115.80.0/20 4538 -202.115.96.0/19 4538 -202.115.128.0/17 4538 -202.116.0.0/16 4538 -202.117.0.0/18 4538 -202.117.64.0/24 24353 -202.117.65.0/24 4538 -202.117.66.0/23 4538 -202.117.68.0/22 4538 -202.117.72.0/21 4538 -202.117.80.0/20 24353 -202.117.96.0/19 4538 -202.117.128.0/17 4538 -202.118.0.0/15 4538 -202.120.0.0/15 4538 -202.122.7.0/24 4812 -202.122.8.0/21 24209 -202.122.16.0/21 45769 -202.122.24.0/21 17957 -202.122.32.0/21 7497 -202.122.40.0/21 9931 -202.122.48.0/20 17534 -202.122.96.0/21 23749 -202.122.104.0/22 23749 -202.122.108.0/23 23749 -202.122.110.0/24 23749 -202.122.111.0/24 132499 -202.122.112.0/21 45061 -202.122.128.0/24 4837 -202.122.129.0/24 24317 -202.122.131.0/24 24540 -202.122.133.0/24 24222 -202.122.134.0/24 38615 -202.122.136.0/21 24262 -202.122.144.0/20 9534 -202.122.176.0/20 17939 -202.122.192.0/19 23791 -202.122.224.0/19 9622 -202.123.0.0/19 23889 -202.123.34.0/24 9498 -202.123.39.0/24 9498 -202.123.43.0/24 9498 -202.123.44.0/23 9498 -202.123.48.0/20 17721 -202.123.64.0/19 10098 -202.123.96.0/21 17781 -202.123.104.0/23 17781 -202.123.106.0/24 17781 -202.123.107.0/24 4611 -202.123.108.0/23 17781 -202.123.110.0/24 4611 -202.123.111.0/24 17781 -202.123.124.0/22 131597 -202.123.128.0/19 7131 -202.123.160.0/20 9925 -202.123.176.0/21 24337 -202.123.184.0/21 23613 -202.123.192.0/19 9925 -202.123.224.0/21 18379 -202.123.232.0/22 18379 -202.123.236.0/24 18379 -202.123.237.0/24 17910 -202.123.238.0/23 18379 -202.123.240.0/24 38488 -202.123.241.0/24 702 -202.123.242.0/24 38488 -202.123.244.0/24 38488 -202.123.245.0/24 24435 -202.123.246.0/24 38488 -202.123.248.0/23 38488 -202.123.250.0/24 38488 -202.124.0.0/20 18126 -202.124.28.0/23 10127 -202.124.30.0/24 10127 -202.124.32.0/20 9902 -202.124.48.0/20 9614 -202.124.96.0/24 23655 -202.124.97.0/24 4049 -202.124.98.0/23 23655 -202.124.100.0/24 18159 -202.124.101.0/24 23655 -202.124.102.0/23 23655 -202.124.104.0/21 23655 -202.124.112.0/20 23655 -202.124.128.0/19 17895 -202.124.160.0/19 18001 -202.124.192.0/24 7545 -202.124.193.0/24 55437 -202.124.194.0/24 45625 -202.124.195.0/24 55444 -202.124.196.0/23 46037 -202.124.198.0/23 46042 -202.124.200.0/23 9797 -202.124.203.0/24 46039 -202.124.204.0/24 55307 -202.124.205.0/24 17553 -202.124.206.0/23 24110 -202.124.208.0/20 18126 -202.124.224.0/20 17893 -202.124.240.0/21 24446 -202.124.248.0/24 132721 -202.124.249.0/24 136209 -202.124.250.0/23 136209 -202.124.252.0/22 134996 -202.125.0.0/21 9466 -202.125.8.0/24 9555 -202.125.12.0/23 9466 -202.125.17.0/24 7545 -202.125.18.0/23 7545 -202.125.20.0/22 7545 -202.125.24.0/21 7545 -202.125.32.0/20 45671 -202.125.48.0/20 7672 -202.125.64.0/20 17471 -202.125.80.0/23 131111 -202.125.82.0/23 45719 -202.125.84.0/23 55451 -202.125.86.0/23 55456 -202.125.88.0/24 134429 -202.125.90.0/23 10205 -202.125.92.0/24 55459 -202.125.93.0/24 55469 -202.125.94.0/23 46042 -202.125.96.0/24 131107 -202.125.97.0/24 45192 -202.125.98.0/24 55472 -202.125.100.0/23 24213 -202.125.102.0/24 18188 -202.125.103.0/24 55477 -202.125.104.0/23 55478 -202.125.106.0/24 131265 -202.125.108.0/24 136156 -202.125.110.0/24 55485 -202.125.111.0/24 132038 -202.125.128.0/24 17557 -202.125.129.0/24 9557 -202.125.130.0/23 9557 -202.125.132.0/24 9557 -202.125.133.0/24 17557 -202.125.134.0/23 17557 -202.125.136.0/24 9557 -202.125.137.0/24 17557 -202.125.138.0/24 9557 -202.125.139.0/24 17557 -202.125.140.0/23 17557 -202.125.142.0/24 9557 -202.125.143.0/24 17557 -202.125.144.0/23 17557 -202.125.146.0/24 17557 -202.125.147.0/24 9557 -202.125.148.0/24 17557 -202.125.149.0/24 9557 -202.125.150.0/23 17557 -202.125.152.0/23 17557 -202.125.154.0/24 9557 -202.125.155.0/24 17557 -202.125.156.0/23 9557 -202.125.158.0/24 9557 -202.125.159.0/24 17557 -202.125.164.0/23 9797 -202.125.167.0/24 139337 -202.125.168.0/21 45201 -202.125.176.0/20 4134 -202.125.192.0/20 4616 -202.125.208.0/21 4616 -202.125.216.0/21 4158 -202.125.224.0/21 3363 -202.125.232.0/21 17764 -202.125.240.0/21 9381 -202.125.248.0/22 9381 -202.125.252.0/22 4158 -202.126.0.0/21 3561 -202.126.8.0/22 3561 -202.126.12.0/24 3561 -202.126.13.0/24 54538 -202.126.14.0/23 3561 -202.126.16.0/21 24229 -202.126.24.0/21 7670 -202.126.32.0/20 17894 -202.126.48.0/20 9253 -202.126.64.0/21 3462 -202.126.72.0/22 3462 -202.126.76.0/24 3462 -202.126.80.0/22 24347 -202.126.84.0/22 18119 -202.126.88.0/22 55805 -202.126.92.0/22 9484 -202.126.96.0/20 23871 -202.126.112.0/21 4766 -202.126.120.0/21 38313 -202.126.128.0/18 4637 -202.126.192.0/20 17492 -202.126.208.0/20 9381 -202.126.224.0/20 4725 -202.126.240.0/20 18092 -202.127.0.0/21 7497 -202.127.12.0/22 9929 -202.127.16.0/20 7497 -202.127.32.0/21 46030 -202.127.40.0/21 4808 -202.127.48.0/23 4847 -202.127.69.0/24 4637 -202.127.70.0/23 4637 -202.127.72.0/21 4637 -202.127.80.0/20 24255 -202.127.96.0/20 17910 -202.127.112.0/22 9801 -202.127.116.0/24 9801 -202.127.117.0/24 4837 -202.127.118.0/23 4837 -202.127.120.0/21 4837 -202.127.144.0/20 7497 -202.127.168.0/21 24396 -202.127.176.0/20 24259 -202.127.200.0/21 7497 -202.127.208.0/24 4808 -202.127.209.0/24 4837 -202.127.210.0/23 56098 -202.127.216.0/21 4538 -202.127.224.0/19 4538 -202.128.0.0/19 3605 -202.128.32.0/20 9386 -202.128.48.0/21 23944 -202.128.56.0/23 23944 -202.128.58.0/23 9386 -202.128.60.0/22 23944 -202.128.64.0/19 3605 -202.128.97.0/24 45484 -202.128.98.0/24 55487 -202.128.99.0/24 55489 -202.128.100.0/23 45992 -202.128.102.0/24 38236 -202.128.104.0/23 10202 -202.128.106.0/24 4851 -202.128.107.0/24 55494 -202.128.108.0/24 9583 -202.128.109.0/24 134684 -202.128.110.0/23 55494 -202.128.114.0/23 9443 -202.128.128.0/19 4637 -202.128.160.0/19 17547 -202.128.192.0/19 17547 -202.128.224.0/19 9732 -202.129.0.0/19 9931 -202.129.32.0/20 9931 -202.129.48.0/21 9931 -202.129.56.0/22 9931 -202.129.60.0/23 9931 -202.129.62.0/24 4652 -202.129.63.0/24 9931 -202.129.79.0/24 4802 -202.129.80.0/21 4802 -202.129.88.0/23 4802 -202.129.91.0/24 4739 -202.129.92.0/23 4739 -202.129.94.0/24 4739 -202.129.96.0/23 4802 -202.129.98.0/23 4739 -202.129.100.0/22 4739 -202.129.104.0/24 4739 -202.129.106.0/23 4739 -202.129.108.0/22 4802 -202.129.112.0/24 4802 -202.129.114.0/24 4739 -202.129.115.0/24 4802 -202.129.116.0/24 4739 -202.129.117.0/24 4802 -202.129.118.0/24 4739 -202.129.119.0/24 4802 -202.129.120.0/24 4739 -202.129.121.0/24 4802 -202.129.122.0/23 4739 -202.129.124.0/24 4739 -202.129.125.0/24 4802 -202.129.126.0/24 4739 -202.129.128.0/19 17732 -202.129.160.0/21 9655 -202.129.169.0/24 9655 -202.129.170.0/23 9655 -202.129.172.0/22 9655 -202.129.176.0/21 9615 -202.129.184.0/21 24532 -202.129.192.0/24 45282 -202.129.194.0/23 45282 -202.129.196.0/22 45284 -202.129.202.0/23 45655 -202.129.205.0/24 45328 -202.129.206.0/23 45328 -202.129.209.0/24 45340 -202.129.210.0/24 56315 -202.129.211.0/24 45117 -202.129.212.0/23 45350 -202.129.214.0/24 45347 -202.129.215.0/24 45337 -202.129.218.0/24 7474 -202.129.219.0/24 45357 -202.129.220.0/22 18018 -202.129.224.0/22 38781 -202.129.228.0/22 45355 -202.129.232.0/22 45356 -202.129.236.0/24 45498 -202.129.238.0/24 9254 -202.129.239.0/24 45417 -202.129.240.0/23 45469 -202.129.242.0/23 14340 -202.129.244.0/22 38880 -202.129.248.0/22 17501 -202.129.252.0/24 45768 -202.129.253.0/24 4768 -202.129.254.0/24 37893 -202.129.255.0/24 3949 -202.130.0.0/19 4808 -202.130.32.0/22 45671 -202.130.36.0/23 45548 -202.130.38.0/24 45737 -202.130.40.0/23 45760 -202.130.44.0/22 55803 -202.130.54.0/23 4787 -202.130.56.0/22 23767 -202.130.60.0/22 17693 -202.130.68.0/22 9381 -202.130.72.0/21 9381 -202.130.80.0/20 9381 -202.130.96.0/19 9381 -202.130.128.0/22 703 -202.130.132.0/24 24010 -202.130.133.0/24 703 -202.130.134.0/23 703 -202.130.136.0/21 703 -202.130.144.0/24 703 -202.130.145.0/24 4828 -202.130.146.0/23 703 -202.130.148.0/22 703 -202.130.152.0/21 703 -202.130.160.0/21 703 -202.130.168.0/22 703 -202.130.172.0/24 23088 -202.130.173.0/24 703 -202.130.174.0/23 703 -202.130.176.0/20 703 -202.130.192.0/23 38195 -202.130.194.0/24 38195 -202.130.195.0/24 9443 -202.130.196.0/22 38195 -202.130.200.0/23 38195 -202.130.202.0/24 38195 -202.130.203.0/24 9443 -202.130.204.0/24 38195 -202.130.205.0/24 9443 -202.130.206.0/24 9443 -202.130.207.0/24 38195 -202.130.208.0/22 38195 -202.130.212.0/23 38195 -202.130.214.0/24 9443 -202.130.215.0/24 38195 -202.130.216.0/24 38195 -202.130.217.0/24 9443 -202.130.218.0/24 38195 -202.130.219.0/24 9499 -202.130.220.0/22 38195 -202.130.224.0/20 4808 -202.130.240.0/21 4808 -202.130.248.0/22 4134 -202.130.252.0/22 4812 -202.131.0.0/24 45237 -202.131.1.0/24 63962 -202.131.2.0/24 63962 -202.131.4.0/24 45237 -202.131.6.0/23 9789 -202.131.8.0/21 18085 -202.131.32.0/20 4515 -202.131.48.0/22 58730 -202.131.55.0/24 8100 -202.131.64.0/20 9381 -202.131.80.0/21 17981 -202.131.88.0/22 45671 -202.131.92.0/24 45671 -202.131.94.0/24 45671 -202.131.95.0/24 24446 -202.131.96.0/20 17625 -202.131.112.0/23 17625 -202.131.115.0/24 17625 -202.131.117.0/24 17625 -202.131.119.0/24 17625 -202.131.120.0/23 17625 -202.131.123.0/24 17625 -202.131.125.0/24 17625 -202.131.126.0/24 17625 -202.131.127.0/24 17423 -202.131.129.0/24 45769 -202.131.130.0/24 45769 -202.131.131.0/24 45582 -202.131.132.0/24 45769 -202.131.134.0/23 45769 -202.131.137.0/24 45769 -202.131.138.0/23 45769 -202.131.140.0/22 45769 -202.131.144.0/23 45769 -202.131.147.0/24 45769 -202.131.148.0/23 45769 -202.131.150.0/24 45769 -202.131.152.0/24 45769 -202.131.153.0/24 17443 -202.131.154.0/24 17443 -202.131.155.0/24 18105 -202.131.156.0/23 45769 -202.131.158.0/24 17443 -202.131.160.0/19 3605 -202.131.192.0/20 17941 -202.131.224.0/19 9484 -202.132.0.0/16 9924 -202.133.0.0/21 24200 -202.133.8.0/21 24399 -202.133.16.0/20 4766 -202.133.48.0/21 17754 -202.133.56.0/22 17754 -202.133.60.0/23 17754 -202.133.62.0/24 17754 -202.133.72.0/23 135706 -202.133.80.0/24 134847 -202.133.81.0/24 24028 -202.133.82.0/24 24028 -202.133.83.0/24 24068 -202.133.88.0/22 134180 -202.133.96.0/21 23678 -202.133.104.0/22 23678 -202.133.108.0/22 45121 -202.133.112.0/20 9597 -202.133.144.0/20 7470 -202.133.192.0/19 135600 -202.133.224.0/19 17408 -202.134.0.0/24 7713 -202.134.1.0/24 17974 -202.134.2.0/23 17974 -202.134.4.0/23 7713 -202.134.6.0/24 17974 -202.134.7.0/24 7713 -202.134.8.0/21 24432 -202.134.16.0/22 45903 -202.134.20.0/23 45903 -202.134.22.0/24 45550 -202.134.23.0/24 45903 -202.134.24.0/21 38201 -202.134.32.0/20 4049 -202.134.48.0/24 45950 -202.134.49.0/24 24436 -202.134.50.0/24 7467 -202.134.52.0/24 45955 -202.134.53.0/24 55435 -202.134.54.0/24 131125 -202.134.59.0/24 38810 -202.134.60.0/22 38802 -202.134.64.0/18 9584 -202.134.144.0/24 18196 -202.134.145.0/24 132296 -202.134.146.0/24 18196 -202.134.147.0/24 132296 -202.134.148.0/23 132296 -202.134.150.0/24 132296 -202.134.151.0/24 18196 -202.134.152.0/24 132296 -202.134.153.0/24 18196 -202.134.154.0/23 18196 -202.134.156.0/23 18196 -202.134.158.0/23 132296 -202.134.160.0/23 18196 -202.134.162.0/24 132296 -202.134.163.0/24 18196 -202.134.164.0/23 18196 -202.134.166.0/24 18196 -202.134.167.0/24 132296 -202.134.168.0/24 132296 -202.134.169.0/24 18196 -202.134.170.0/23 18196 -202.134.172.0/24 18196 -202.134.173.0/24 132296 -202.134.174.0/24 132296 -202.134.175.0/24 18196 -202.134.176.0/23 18196 -202.134.178.0/24 18196 -202.134.179.0/24 132296 -202.134.180.0/24 18196 -202.134.181.0/24 132296 -202.134.182.0/23 18196 -202.134.184.0/21 18196 -202.134.192.0/20 17648 -202.134.224.0/19 23871 -202.135.0.0/18 2687 -202.135.64.0/19 2687 -202.135.96.0/20 2687 -202.135.112.0/24 134531 -202.135.113.0/24 2687 -202.135.114.0/23 2687 -202.135.116.0/22 2687 -202.135.120.0/21 2687 -202.135.128.0/20 2687 -202.135.144.0/23 2687 -202.135.146.0/24 134531 -202.135.147.0/24 2687 -202.135.148.0/22 2687 -202.135.152.0/21 2687 -202.135.160.0/19 2687 -202.135.192.0/18 2687 -202.136.0.0/20 9656 -202.136.16.0/20 134078 -202.136.32.0/20 38285 -202.136.48.0/20 24143 -202.136.68.0/22 132770 -202.136.84.0/22 59165 -202.136.88.0/22 134371 -202.136.92.0/22 135025 -202.136.96.0/20 4739 -202.136.112.0/20 9712 -202.136.128.0/19 9943 -202.136.160.0/24 17645 -202.136.161.0/24 45794 -202.136.162.0/23 17645 -202.136.164.0/22 17645 -202.136.168.0/21 17645 -202.136.176.0/20 17645 -202.136.192.0/20 10010 -202.136.208.0/21 4812 -202.136.216.0/23 4812 -202.136.218.0/24 24141 -202.136.220.0/24 24141 -202.136.222.0/23 24141 -202.136.240.0/21 23900 -202.136.255.0/24 4808 -202.137.0.0/19 9905 -202.137.32.0/19 9351 -202.137.64.0/19 7637 -202.137.96.0/20 38285 -202.137.112.0/21 38553 -202.137.120.0/22 38553 -202.137.124.0/23 38553 -202.137.127.0/24 38553 -202.137.128.0/19 9873 -202.137.160.0/23 18201 -202.137.162.0/23 38195 -202.137.164.0/24 38195 -202.137.165.0/24 18201 -202.137.166.0/23 38195 -202.137.168.0/22 38195 -202.137.172.0/24 38195 -202.137.173.0/24 24341 -202.137.174.0/23 38195 -202.137.176.0/23 45349 -202.137.179.0/24 45349 -202.137.180.0/22 45349 -202.137.184.0/21 17698 -202.137.192.0/20 9328 -202.137.208.0/20 23772 -202.137.224.0/24 131254 -202.137.225.0/24 45733 -202.137.226.0/23 131255 -202.137.228.0/23 131256 -202.137.230.0/24 45732 -202.137.232.0/21 38224 -202.137.240.0/21 9876 -202.137.248.0/23 38241 -202.137.250.0/24 38241 -202.138.0.0/18 9443 -202.138.64.0/21 45838 -202.138.72.0/22 45838 -202.138.78.0/23 45838 -202.138.96.0/19 18101 -202.138.176.0/21 9299 -202.138.184.0/23 9299 -202.138.192.0/19 2764 -202.138.224.0/19 9657 -202.139.0.0/18 7474 -202.139.64.0/21 7474 -202.139.72.0/22 4804 -202.139.76.0/22 7474 -202.139.80.0/20 7474 -202.139.96.0/19 7474 -202.139.128.0/18 7474 -202.139.192.0/22 9335 -202.139.223.0/24 9335 -202.139.224.0/19 7496 -202.140.32.0/20 45769 -202.140.48.0/21 45769 -202.140.56.0/23 45582 -202.140.58.0/23 45769 -202.140.60.0/23 45769 -202.140.62.0/24 45769 -202.140.63.0/24 9498 -202.140.64.0/18 9474 -202.140.128.0/22 9829 -202.140.160.0/19 24167 -202.140.192.0/19 23808 -202.140.230.0/23 137927 -202.140.232.0/22 137927 -202.140.236.0/24 137927 -202.141.1.0/24 2697 -202.141.2.0/23 2697 -202.141.4.0/22 2697 -202.141.8.0/24 2697 -202.141.10.0/24 2697 -202.141.12.0/22 2697 -202.141.18.0/23 2697 -202.141.20.0/22 2697 -202.141.25.0/24 2697 -202.141.27.0/24 2697 -202.141.30.0/24 2697 -202.141.36.0/23 2697 -202.141.38.0/24 2697 -202.141.46.0/23 2697 -202.141.48.0/24 2697 -202.141.51.0/24 2697 -202.141.52.0/22 2697 -202.141.56.0/23 2697 -202.141.58.0/24 2697 -202.141.64.0/24 2697 -202.141.67.0/24 2697 -202.141.70.0/24 2697 -202.141.78.0/24 2697 -202.141.82.0/23 2697 -202.141.85.0/24 2697 -202.141.88.0/22 2697 -202.141.94.0/24 2697 -202.141.96.0/23 2697 -202.141.98.0/24 2697 -202.141.100.0/24 2697 -202.141.102.0/23 2697 -202.141.104.0/23 18101 -202.141.110.0/24 2697 -202.141.115.0/24 2697 -202.141.116.0/23 2697 -202.141.118.0/24 2697 -202.141.120.0/24 2697 -202.141.122.0/24 2697 -202.141.124.0/24 2697 -202.141.127.0/24 2697 -202.141.129.0/24 2697 -202.141.130.0/24 2697 -202.141.133.0/24 2697 -202.141.136.0/23 2697 -202.141.138.0/24 2697 -202.141.140.0/23 2697 -202.141.145.0/24 2697 -202.141.156.0/24 2697 -202.141.160.0/20 4134 -202.141.176.0/20 9808 -202.141.192.0/20 2497 -202.141.208.0/20 9714 -202.141.224.0/22 9260 -202.141.228.0/23 9260 -202.141.230.0/24 135523 -202.141.231.0/24 9260 -202.141.232.0/22 9260 -202.141.236.0/24 135523 -202.141.237.0/24 9260 -202.141.238.0/23 9260 -202.141.240.0/20 9260 -202.142.4.0/24 139066 -202.142.5.0/24 136034 -202.142.7.0/24 134793 -202.142.8.0/21 23836 -202.142.16.0/20 4808 -202.142.32.0/19 7545 -202.142.64.0/20 17747 -202.142.80.0/22 17747 -202.142.85.0/24 17747 -202.142.86.0/23 17747 -202.142.89.0/24 17747 -202.142.90.0/23 17747 -202.142.92.0/23 17747 -202.142.95.0/24 17747 -202.142.96.0/19 17747 -202.142.128.0/20 4764 -202.142.144.0/21 23750 -202.142.152.0/23 23750 -202.142.154.0/24 23750 -202.142.155.0/24 136969 -202.142.157.0/24 23750 -202.142.158.0/23 23750 -202.142.160.0/20 9260 -202.142.176.0/23 9260 -202.142.178.0/24 135523 -202.142.179.0/24 9260 -202.142.180.0/24 9260 -202.142.181.0/24 135523 -202.142.182.0/24 9260 -202.142.183.0/24 135523 -202.142.184.0/22 9260 -202.142.188.0/23 9260 -202.142.190.0/23 135523 -202.142.192.0/19 7654 -202.142.224.0/19 18126 -202.143.2.0/23 18272 -202.143.8.0/21 23829 -202.143.16.0/23 17638 -202.143.48.0/21 134065 -202.143.64.0/19 17941 -202.143.96.0/22 18229 -202.143.100.0/22 63590 -202.143.108.0/22 56158 -202.143.112.0/23 38713 -202.143.115.0/24 38713 -202.143.120.0/22 38713 -202.143.125.0/24 38713 -202.143.126.0/23 38713 -202.143.128.0/18 4621 -202.143.192.0/19 23786 -202.143.224.0/19 24336 -202.144.1.0/24 9583 -202.144.3.0/24 9583 -202.144.4.0/22 9583 -202.144.8.0/24 9583 -202.144.10.0/23 9583 -202.144.12.0/22 9583 -202.144.16.0/23 9583 -202.144.18.0/24 9583 -202.144.20.0/23 9583 -202.144.22.0/24 9583 -202.144.24.0/21 9583 -202.144.32.0/23 9583 -202.144.34.0/24 9583 -202.144.37.0/24 9583 -202.144.38.0/23 9583 -202.144.40.0/21 9583 -202.144.48.0/20 9583 -202.144.64.0/22 9583 -202.144.68.0/24 9583 -202.144.70.0/23 9583 -202.144.72.0/21 9583 -202.144.80.0/22 9583 -202.144.84.0/24 9583 -202.144.86.0/23 9583 -202.144.88.0/24 9583 -202.144.90.0/23 9583 -202.144.93.0/24 9583 -202.144.94.0/23 9583 -202.144.96.0/23 9583 -202.144.99.0/24 9583 -202.144.101.0/24 9583 -202.144.102.0/24 9583 -202.144.104.0/22 9583 -202.144.108.0/23 9583 -202.144.112.0/21 9583 -202.144.120.0/23 9583 -202.144.122.0/24 9583 -202.144.124.0/22 9583 -202.144.128.0/19 18024 -202.144.160.0/22 24233 -202.144.164.0/24 24233 -202.144.165.0/24 38195 -202.144.166.0/23 24233 -202.144.168.0/24 38195 -202.144.169.0/24 24233 -202.144.170.0/23 38195 -202.144.172.0/22 24233 -202.144.176.0/21 38298 -202.144.184.0/21 55511 -202.144.192.0/22 134520 -202.144.196.0/22 42962 -202.144.200.0/24 133854 -202.144.201.0/24 137483 -202.144.202.0/24 133854 -202.144.203.0/24 137478 -202.144.208.0/20 24157 -202.144.224.0/19 17941 -202.145.0.0/20 17884 -202.145.16.0/22 2907 -202.145.24.0/23 2907 -202.145.32.0/19 9924 -202.145.64.0/18 9924 -202.145.128.0/17 9924 -202.146.0.0/22 18365 -202.146.6.0/23 18000 -202.146.8.0/21 23721 -202.146.16.0/21 18088 -202.146.24.0/23 136612 -202.146.28.0/23 56318 -202.146.31.0/24 56318 -202.146.34.0/24 18059 -202.146.37.0/24 38754 -202.146.38.0/23 38754 -202.146.40.0/24 38754 -202.146.64.0/19 9534 -202.146.128.0/21 24212 -202.146.136.0/23 24212 -202.146.139.0/24 24212 -202.146.142.0/23 24212 -202.146.144.0/24 24212 -202.146.176.0/21 24536 -202.146.187.0/24 1221 -202.146.192.0/22 23957 -202.146.208.0/21 38719 -202.146.216.0/22 38197 -202.146.220.0/23 38197 -202.146.222.0/24 38197 -202.146.224.0/19 9326 -202.147.0.0/18 4637 -202.147.64.0/19 17819 -202.147.96.0/20 4857 -202.147.112.0/21 4857 -202.147.120.0/24 4857 -202.147.121.0/24 18107 -202.147.122.0/23 4857 -202.147.124.0/22 4857 -202.147.128.0/20 18107 -202.147.160.0/19 23966 -202.147.192.0/20 17670 -202.147.208.0/20 9614 -202.147.224.0/19 18156 -202.148.0.0/22 9794 -202.148.4.0/23 9794 -202.148.6.0/23 38778 -202.148.8.0/21 38778 -202.148.16.0/21 9794 -202.148.24.0/23 38778 -202.148.26.0/23 9794 -202.148.28.0/23 9794 -202.148.30.0/23 38778 -202.148.52.0/24 132090 -202.148.53.0/24 133296 -202.148.54.0/23 133296 -202.148.60.0/22 24554 -202.148.96.0/19 18239 -202.148.128.0/19 7496 -202.148.160.0/20 134078 -202.148.192.0/24 10201 -202.148.202.0/24 10201 -202.148.224.0/20 9738 -202.148.240.0/20 23788 -202.149.0.0/20 9604 -202.149.16.0/21 9604 -202.149.24.0/21 38444 -202.149.64.0/20 17826 -202.149.80.0/21 17826 -202.149.88.0/23 17826 -202.149.90.0/23 131706 -202.149.92.0/24 131706 -202.149.93.0/24 17826 -202.149.94.0/23 17826 -202.149.96.0/21 7693 -202.149.104.0/24 24465 -202.149.105.0/24 7693 -202.149.106.0/23 7693 -202.149.108.0/22 7693 -202.149.112.0/20 7693 -202.149.128.0/21 4833 -202.149.148.0/22 4833 -202.149.192.0/22 17762 -202.149.196.0/24 17762 -202.149.197.0/24 134540 -202.149.198.0/23 17762 -202.149.200.0/24 134540 -202.149.201.0/24 17762 -202.149.202.0/23 17762 -202.149.204.0/22 17762 -202.149.208.0/23 17762 -202.149.210.0/24 17762 -202.149.211.0/24 134540 -202.149.212.0/23 17762 -202.149.214.0/24 17762 -202.149.215.0/24 134540 -202.149.216.0/24 134540 -202.149.217.0/24 17762 -202.149.218.0/23 17762 -202.149.220.0/22 17762 -202.149.224.0/19 9811 -202.150.0.0/22 38623 -202.150.4.0/23 24574 -202.150.6.0/24 24574 -202.150.8.0/22 17726 -202.150.12.0/22 15695 -202.150.16.0/20 23771 -202.150.48.0/21 18126 -202.150.60.0/24 38813 -202.150.62.0/24 38812 -202.150.63.0/24 9822 -202.150.96.0/19 9790 -202.150.128.0/22 23949 -202.150.132.0/24 23949 -202.150.133.0/24 2 -202.150.134.0/23 2 -202.150.136.0/21 2 -202.150.144.0/23 2 -202.150.146.0/24 23949 -202.150.147.0/24 2 -202.150.148.0/22 2 -202.150.152.0/21 2 -202.150.160.0/22 45725 -202.150.165.0/24 45725 -202.150.166.0/23 45725 -202.150.168.0/21 45725 -202.150.176.0/20 9762 -202.150.208.0/20 38001 -202.151.4.0/22 133193 -202.151.8.0/22 9785 -202.151.12.0/22 55699 -202.151.16.0/20 45355 -202.151.32.0/24 24480 -202.151.34.0/23 18018 -202.151.36.0/22 38242 -202.151.40.0/21 24453 -202.151.48.0/20 9416 -202.151.64.0/19 9246 -202.151.96.0/19 18278 -202.151.160.0/20 24173 -202.151.176.0/24 24573 -202.151.192.0/18 9534 -202.152.0.0/18 4800 -202.152.64.0/19 10101 -202.152.96.0/21 10013 -202.152.105.0/24 10013 -202.152.106.0/24 10013 -202.152.108.0/22 10013 -202.152.112.0/22 10013 -202.152.118.0/23 10013 -202.152.120.0/23 10013 -202.152.124.0/22 10013 -202.152.128.0/19 23951 -202.152.160.0/20 4761 -202.152.176.0/22 4847 -202.152.180.0/22 4808 -202.152.184.0/22 4847 -202.152.188.0/24 24134 -202.152.189.0/24 4808 -202.152.190.0/23 24134 -202.152.192.0/20 38149 -202.152.208.0/20 17534 -202.152.224.0/23 17885 -202.152.230.0/23 17885 -202.152.233.0/24 17885 -202.152.237.0/24 17885 -202.152.240.0/24 24203 -202.152.243.0/24 24203 -202.152.244.0/24 17885 -202.152.248.0/22 17885 -202.152.252.0/23 17885 -202.152.254.0/24 17885 -202.153.4.0/23 134823 -202.153.8.0/21 24449 -202.153.16.0/20 23666 -202.153.32.0/20 17754 -202.153.64.0/20 37933 -202.153.80.0/21 55944 -202.153.88.0/21 24077 -202.153.96.0/19 9925 -202.153.128.0/20 10208 -202.153.144.0/21 10208 -202.153.152.0/22 10208 -202.153.160.0/23 17408 -202.153.162.0/24 17408 -202.153.163.0/24 131600 -202.153.164.0/23 17408 -202.153.167.0/24 17408 -202.153.168.0/23 17408 -202.153.170.0/24 17408 -202.153.171.0/24 131627 -202.153.172.0/22 17408 -202.153.178.0/23 17408 -202.153.180.0/24 17408 -202.153.182.0/23 17408 -202.153.184.0/21 17408 -202.153.193.0/24 17408 -202.153.194.0/23 17408 -202.153.196.0/22 17408 -202.153.202.0/23 17408 -202.153.204.0/22 17408 -202.153.208.0/20 4764 -202.153.224.0/19 9340 -202.154.0.0/18 4434 -202.154.64.0/18 9443 -202.154.128.0/19 9872 -202.154.160.0/21 18225 -202.154.169.0/24 18225 -202.154.170.0/23 4755 -202.154.172.0/22 18225 -202.154.178.0/24 9341 -202.154.180.0/23 9341 -202.154.182.0/24 9341 -202.154.184.0/21 9422 -202.154.192.0/19 9216 -202.154.224.0/19 23966 -202.155.0.0/17 4795 -202.155.128.0/19 4795 -202.155.160.0/20 9797 -202.155.176.0/21 1221 -202.155.184.0/22 1221 -202.155.188.0/22 61327 -202.155.192.0/20 9381 -202.155.208.0/21 9381 -202.155.216.0/22 9381 -202.155.220.0/24 9381 -202.155.221.0/24 198949 -202.155.222.0/23 9381 -202.155.224.0/19 9381 -202.156.0.0/22 10091 -202.156.4.0/24 4657 -202.156.5.0/24 10091 -202.156.6.0/23 10091 -202.156.8.0/23 4657 -202.156.10.0/24 4657 -202.156.11.0/24 10091 -202.156.12.0/22 10091 -202.156.16.0/20 10091 -202.156.32.0/19 10091 -202.156.64.0/18 10091 -202.156.128.0/23 10091 -202.156.130.0/24 55430 -202.156.131.0/24 10091 -202.156.132.0/22 10091 -202.156.136.0/21 10091 -202.156.144.0/20 10091 -202.156.160.0/19 10091 -202.156.192.0/18 10091 -202.157.0.0/18 23790 -202.157.64.0/24 17753 -202.157.67.0/24 17753 -202.157.68.0/22 17753 -202.157.72.0/21 17753 -202.157.80.0/20 17753 -202.157.96.0/22 17691 -202.157.100.0/22 4713 -202.157.104.0/21 17691 -202.157.112.0/21 4713 -202.157.120.0/22 4713 -202.157.124.0/23 4713 -202.157.128.0/19 9892 -202.157.160.0/20 9892 -202.157.176.0/23 136170 -202.157.178.0/24 55736 -202.157.179.0/24 136735 -202.157.182.0/23 55405 -202.157.184.0/23 136170 -202.157.186.0/24 55405 -202.157.187.0/24 4769 -202.157.188.0/23 55405 -202.157.224.0/19 9354 -202.158.0.0/17 4787 -202.158.132.0/24 38147 -202.158.138.0/23 38147 -202.158.144.0/20 38661 -202.158.160.0/19 9812 -202.158.192.0/19 7575 -202.158.224.0/20 24249 -202.158.240.0/24 15695 -202.158.241.0/24 45460 -202.158.243.0/24 9564 -202.158.244.0/22 135918 -202.158.253.0/24 45118 -202.158.254.0/23 45118 -202.159.0.0/21 9340 -202.159.8.0/22 9340 -202.159.12.0/24 38525 -202.159.13.0/24 9340 -202.159.14.0/23 9340 -202.159.16.0/22 9340 -202.159.20.0/24 38525 -202.159.21.0/24 9340 -202.159.22.0/23 9340 -202.159.24.0/24 38525 -202.159.25.0/24 9340 -202.159.26.0/23 9340 -202.159.28.0/24 38525 -202.159.29.0/24 9340 -202.159.30.0/23 9340 -202.159.32.0/23 38525 -202.159.34.0/23 9340 -202.159.36.0/24 38525 -202.159.37.0/24 9340 -202.159.38.0/23 9340 -202.159.40.0/23 9340 -202.159.42.0/24 9340 -202.159.43.0/24 38525 -202.159.44.0/24 9340 -202.159.45.0/24 38525 -202.159.46.0/23 9340 -202.159.48.0/21 9340 -202.159.56.0/22 9340 -202.159.60.0/23 9340 -202.159.62.0/24 38525 -202.159.63.0/24 9340 -202.159.64.0/19 134631 -202.159.96.0/24 38525 -202.159.100.0/24 9340 -202.159.105.0/24 9340 -202.159.106.0/24 38525 -202.159.107.0/24 9340 -202.159.109.0/24 38525 -202.159.112.0/23 9340 -202.159.115.0/24 9340 -202.159.116.0/24 9340 -202.159.118.0/23 9340 -202.159.121.0/24 9340 -202.159.122.0/24 9340 -202.159.123.0/24 38525 -202.159.126.0/23 9340 -202.159.128.0/18 4739 -202.159.192.0/18 17813 -202.160.0.0/19 10094 -202.160.32.0/20 10094 -202.160.48.0/20 9503 -202.160.96.0/20 9328 -202.160.112.0/23 132456 -202.160.114.0/24 132456 -202.160.115.0/24 24226 -202.160.116.0/24 132456 -202.160.117.0/24 24226 -202.160.118.0/24 132456 -202.160.119.0/24 24226 -202.160.120.0/22 9892 -202.160.124.0/23 38251 -202.160.126.0/24 4826 -202.160.127.0/24 4637 -202.160.128.0/22 13414 -202.160.132.0/22 134341 -202.160.140.0/24 63689 -202.160.141.0/24 132168 -202.160.142.0/23 132168 -202.160.144.0/22 133674 -202.160.148.0/22 132881 -202.160.152.0/22 26658 -202.160.160.0/20 134855 -202.160.224.0/21 3758 -202.160.232.0/21 7473 -202.160.240.0/20 7473 -202.161.0.0/19 7545 -202.161.32.0/19 17733 -202.161.64.0/18 7545 -202.161.128.0/19 11919 -202.161.176.0/20 38030 -202.161.192.0/18 2516 -202.162.0.0/19 18206 -202.162.32.0/21 17996 -202.162.40.0/22 17996 -202.162.44.0/24 17996 -202.162.48.0/20 18167 -202.162.64.0/23 45610 -202.162.66.0/24 45278 -202.162.68.0/22 45452 -202.162.72.0/23 9834 -202.162.76.0/22 23884 -202.162.80.0/20 24279 -202.162.96.0/21 64050 -202.162.104.0/23 64050 -202.162.106.0/24 64050 -202.162.108.0/24 64050 -202.162.111.0/24 135026 -202.162.112.0/20 23786 -202.162.128.0/19 23788 -202.162.163.0/24 23732 -202.162.164.0/24 23732 -202.162.172.0/22 23732 -202.162.176.0/21 23934 -202.162.185.0/24 9590 -202.162.186.0/23 9590 -202.162.188.0/23 38746 -202.162.192.0/21 23679 -202.162.200.0/23 138841 -202.162.202.0/24 23679 -202.162.203.0/24 138841 -202.162.204.0/23 23679 -202.162.206.0/23 138841 -202.162.208.0/20 9341 -202.162.224.0/22 9583 -202.162.228.0/24 9583 -202.162.229.0/24 4755 -202.162.230.0/24 4755 -202.162.231.0/24 133296 -202.162.232.0/23 4755 -202.162.234.0/24 133296 -202.162.235.0/24 33480 -202.162.236.0/24 133296 -202.162.237.0/24 33480 -202.162.238.0/23 33480 -202.162.240.0/21 33480 -202.162.248.0/22 33480 -202.162.252.0/23 33480 -202.162.254.0/24 33480 -202.163.0.0/20 1299 -202.163.16.0/21 1299 -202.163.24.0/22 1299 -202.163.28.0/23 1299 -202.163.30.0/23 7589 -202.163.64.0/18 9541 -202.163.128.0/19 9765 -202.163.160.0/19 18282 -202.163.192.0/18 7629 -202.164.16.0/21 58740 -202.164.25.0/24 38834 -202.164.26.0/24 38825 -202.164.27.0/24 23875 -202.164.28.0/22 24107 -202.164.32.0/19 17917 -202.164.64.0/19 2516 -202.164.125.0/24 134117 -202.164.128.0/19 17465 -202.164.160.0/19 9658 -202.164.192.0/20 10113 -202.164.208.0/21 38026 -202.164.216.0/21 45288 -202.164.224.0/19 9597 -202.165.0.0/19 18206 -202.165.32.0/20 17538 -202.165.48.0/21 18260 -202.165.56.0/22 9774 -202.165.60.0/23 18018 -202.165.63.0/24 134796 -202.165.80.0/20 10113 -202.165.97.0/24 10880 -202.165.100.0/22 56173 -202.165.104.0/22 56173 -202.165.110.0/23 24506 -202.165.112.0/21 9374 -202.165.120.0/22 132839 -202.165.124.0/23 19437 -202.165.126.0/24 19437 -202.165.127.0/24 30456 -202.165.128.0/19 4845 -202.165.160.0/20 38715 -202.165.176.0/24 37957 -202.165.178.0/23 37957 -202.165.183.0/24 37957 -202.165.184.0/21 37957 -202.165.192.0/20 17828 -202.165.208.0/20 4808 -202.165.224.0/24 9260 -202.165.225.0/24 23674 -202.165.227.0/24 9260 -202.165.228.0/24 9260 -202.165.230.0/24 9260 -202.165.231.0/24 23674 -202.165.232.0/23 9260 -202.165.234.0/24 9260 -202.165.235.0/24 23674 -202.165.236.0/24 9260 -202.165.238.0/24 9260 -202.165.242.0/24 23674 -202.165.244.0/24 23674 -202.165.247.0/24 23674 -202.165.248.0/23 23674 -202.165.250.0/24 9260 -202.166.0.0/17 9506 -202.166.128.0/19 9506 -202.166.160.0/20 55501 -202.166.176.0/21 56089 -202.166.184.0/24 38857 -202.166.185.0/24 38636 -202.166.186.0/24 136020 -202.166.187.0/24 38859 -202.166.192.0/19 17501 -202.167.0.0/21 5511 -202.167.8.0/23 5511 -202.167.10.0/24 5511 -202.167.11.0/24 51964 -202.167.12.0/23 5511 -202.167.14.0/23 51964 -202.167.16.0/22 5511 -202.167.20.0/24 5511 -202.167.21.0/24 51964 -202.167.22.0/23 51964 -202.167.24.0/22 5511 -202.167.28.0/23 5511 -202.167.30.0/24 5511 -202.167.31.0/24 51964 -202.167.32.0/20 51964 -202.167.48.0/23 51964 -202.167.50.0/23 5511 -202.167.52.0/24 5511 -202.167.53.0/24 51964 -202.167.54.0/24 5511 -202.167.55.0/24 51964 -202.167.56.0/24 51964 -202.167.57.0/24 5511 -202.167.58.0/23 5511 -202.167.60.0/23 51964 -202.167.62.0/23 5511 -202.167.64.0/21 5511 -202.167.72.0/23 5511 -202.167.74.0/24 51964 -202.167.75.0/24 5511 -202.167.76.0/22 5511 -202.167.80.0/24 5511 -202.167.81.0/24 51964 -202.167.82.0/23 5511 -202.167.84.0/22 5511 -202.167.88.0/22 5511 -202.167.92.0/24 5511 -202.167.93.0/24 51964 -202.167.94.0/24 51964 -202.167.95.0/24 5511 -202.167.96.0/19 5511 -202.167.128.0/20 51964 -202.167.144.0/23 5511 -202.167.146.0/24 51964 -202.167.147.0/24 5511 -202.167.148.0/24 5511 -202.167.149.0/24 51964 -202.167.150.0/23 5511 -202.167.152.0/22 5511 -202.167.156.0/24 51964 -202.167.157.0/24 5511 -202.167.158.0/24 5511 -202.167.159.0/24 51964 -202.167.160.0/24 5511 -202.167.161.0/24 51964 -202.167.162.0/24 51964 -202.167.163.0/24 5511 -202.167.164.0/22 5511 -202.167.168.0/21 5511 -202.167.176.0/20 5511 -202.167.192.0/20 51964 -202.167.208.0/22 9712 -202.167.212.0/23 9712 -202.167.214.0/24 9712 -202.167.215.0/24 55615 -202.167.216.0/21 9712 -202.167.224.0/22 17819 -202.167.229.0/24 56065 -202.167.230.0/23 17819 -202.167.232.0/24 17819 -202.167.233.0/24 18382 -202.167.234.0/23 17819 -202.167.236.0/22 17819 -202.167.240.0/21 17819 -202.167.248.0/23 17819 -202.167.250.0/24 25605 -202.167.252.0/22 17819 -202.168.0.0/23 9942 -202.168.2.0/23 7545 -202.168.4.0/24 7545 -202.168.5.0/24 9942 -202.168.6.0/24 7545 -202.168.7.0/24 9942 -202.168.8.0/24 7545 -202.168.9.0/24 9942 -202.168.10.0/23 7545 -202.168.12.0/23 7545 -202.168.14.0/23 9942 -202.168.16.0/21 7545 -202.168.24.0/22 9942 -202.168.28.0/24 9942 -202.168.29.0/24 7545 -202.168.30.0/24 9942 -202.168.31.0/24 7545 -202.168.32.0/23 9942 -202.168.34.0/24 9942 -202.168.35.0/24 7545 -202.168.36.0/22 9942 -202.168.40.0/23 9942 -202.168.42.0/24 9942 -202.168.43.0/24 7545 -202.168.44.0/22 9942 -202.168.48.0/23 7545 -202.168.50.0/24 55504 -202.168.51.0/24 7545 -202.168.52.0/22 9942 -202.168.56.0/21 7545 -202.168.64.0/20 45410 -202.168.88.0/22 45655 -202.168.92.0/23 38862 -202.168.94.0/24 10125 -202.168.95.0/24 38866 -202.168.96.0/20 10113 -202.168.112.0/23 10113 -202.168.114.0/24 10113 -202.168.116.0/22 10113 -202.168.144.0/22 55352 -202.168.152.0/22 4766 -202.168.156.0/22 134021 -202.168.160.0/20 17816 -202.168.176.0/20 58834 -202.168.192.0/20 10135 -202.168.208.0/21 24043 -202.168.216.0/21 17698 -202.168.224.0/19 24342 -202.169.0.0/20 7484 -202.169.16.0/21 9224 -202.169.24.0/21 38278 -202.169.32.0/19 17451 -202.169.64.0/19 10000 -202.169.96.0/20 9310 -202.169.112.0/21 9310 -202.169.120.0/22 9310 -202.169.124.0/24 9310 -202.169.126.0/23 9310 -202.169.128.0/19 23635 -202.169.160.0/21 9264 -202.169.168.0/22 24167 -202.169.172.0/22 9264 -202.169.176.0/22 17734 -202.169.180.0/23 17734 -202.169.182.0/23 38333 -202.169.184.0/21 23629 -202.169.192.0/21 18199 -202.169.200.0/24 18199 -202.169.202.0/23 18199 -202.169.204.0/24 18199 -202.169.206.0/23 18199 -202.169.208.0/20 18199 -202.169.224.0/21 23671 -202.169.232.0/22 23671 -202.169.236.0/24 23671 -202.169.238.0/23 23671 -202.169.240.0/20 38143 -202.170.0.0/19 7581 -202.170.32.0/20 9241 -202.170.48.0/24 4788 -202.170.50.0/23 4788 -202.170.52.0/24 24514 -202.170.56.0/21 24090 -202.170.64.0/21 45237 -202.170.72.0/24 45237 -202.170.80.0/22 45237 -202.170.84.0/23 45237 -202.170.93.0/24 45237 -202.170.94.0/24 45237 -202.170.96.0/20 17939 -202.170.112.0/20 23884 -202.170.128.0/19 17623 -202.170.160.0/20 24005 -202.170.176.0/20 17698 -202.170.192.0/23 33549 -202.170.195.0/24 33549 -202.170.196.0/22 36351 -202.170.208.0/21 23791 -202.170.216.0/21 24427 -202.171.0.0/19 10217 -202.171.32.0/22 23659 -202.171.36.0/24 23659 -202.171.38.0/23 23659 -202.171.41.0/24 23659 -202.171.42.0/23 23659 -202.171.45.0/24 23659 -202.171.46.0/23 23659 -202.171.48.0/21 24068 -202.171.56.0/23 24068 -202.171.58.0/24 24068 -202.171.59.0/24 24028 -202.171.60.0/24 24028 -202.171.61.0/24 24068 -202.171.62.0/23 24068 -202.171.64.0/20 17480 -202.171.80.0/20 18075 -202.171.96.0/20 24033 -202.171.112.0/20 9622 -202.171.128.0/19 2514 -202.171.160.0/22 24093 -202.171.164.0/23 24093 -202.171.166.0/24 38195 -202.171.167.0/24 24093 -202.171.168.0/22 24093 -202.171.172.0/23 24093 -202.171.174.0/24 38195 -202.171.175.0/24 24093 -202.171.176.0/20 24093 -202.171.208.0/21 24334 -202.171.224.0/21 4686 -202.171.237.0/24 16625 -202.171.238.0/24 45852 -202.171.240.0/21 45924 -202.171.248.0/22 23579 -202.171.252.0/22 4609 -202.172.4.0/23 38247 -202.172.6.0/24 59383 -202.172.10.0/24 2764 -202.172.12.0/22 1221 -202.172.16.0/22 58930 -202.172.22.0/23 55636 -202.172.24.0/21 37907 -202.172.32.0/19 17547 -202.172.64.0/19 7676 -202.172.96.0/19 18390 -202.172.128.0/19 134189 -202.172.160.0/19 9226 -202.172.192.0/20 9226 -202.172.216.0/21 9226 -202.172.224.0/19 9226 -202.173.4.0/24 38279 -202.173.5.0/24 37905 -202.173.7.0/24 38291 -202.173.8.0/21 38345 -202.173.16.0/22 24210 -202.173.20.0/23 24210 -202.173.22.0/24 24210 -202.173.25.0/24 21866 -202.173.27.0/24 16815 -202.173.28.0/23 16815 -202.173.30.0/24 16815 -202.173.32.0/19 9671 -202.173.64.0/19 23695 -202.173.96.0/20 18274 -202.173.116.0/22 64056 -202.173.120.0/23 134180 -202.173.122.0/24 134180 -202.173.124.0/22 133982 -202.173.128.0/21 9543 -202.173.136.0/21 4739 -202.173.144.0/20 4739 -202.173.160.0/20 7545 -202.173.176.0/21 4739 -202.173.184.0/22 9543 -202.173.188.0/22 4739 -202.173.192.0/20 9648 -202.173.208.0/20 24187 -202.173.224.0/19 134772 -202.174.0.0/22 4609 -202.174.4.0/24 10229 -202.174.5.0/24 38312 -202.174.6.0/23 9245 -202.174.32.0/20 9268 -202.174.48.0/21 17683 -202.174.56.0/22 55385 -202.174.60.0/22 17683 -202.174.80.0/21 24192 -202.174.88.0/22 7624 -202.174.92.0/22 38902 -202.174.96.0/20 4851 -202.174.112.0/22 24192 -202.174.116.0/24 45459 -202.174.117.0/24 24192 -202.174.118.0/23 24192 -202.174.120.0/24 38872 -202.174.121.0/24 38873 -202.174.122.0/23 45119 -202.174.128.0/24 4913 -202.174.129.0/24 9229 -202.174.130.0/23 9229 -202.174.132.0/22 9229 -202.174.136.0/21 9229 -202.174.144.0/20 9229 -202.174.160.0/20 131583 -202.174.176.0/20 24183 -202.174.192.0/19 4725 -202.174.224.0/19 9714 -202.175.0.0/17 4609 -202.175.128.0/21 10022 -202.175.137.0/24 10022 -202.175.138.0/23 10022 -202.175.140.0/22 10022 -202.175.144.0/20 2907 -202.175.160.0/19 4609 -202.175.192.0/18 9658 -202.176.4.0/23 55720 -202.176.8.0/22 23616 -202.176.12.0/24 38891 -202.176.14.0/24 45762 -202.176.15.0/24 9738 -202.176.16.0/20 4704 -202.176.32.0/19 10012 -202.176.64.0/18 7470 -202.176.128.0/19 7470 -202.176.160.0/20 7470 -202.176.176.0/22 7470 -202.176.180.0/23 7470 -202.176.182.0/24 7470 -202.176.183.0/24 17552 -202.176.184.0/24 17552 -202.176.185.0/24 7470 -202.176.186.0/23 7470 -202.176.188.0/22 7470 -202.176.192.0/19 9911 -202.177.0.0/21 7479 -202.177.8.0/24 7479 -202.177.10.0/23 7479 -202.177.12.0/22 7479 -202.177.16.0/21 7479 -202.177.24.0/22 7479 -202.177.28.0/24 7479 -202.177.31.0/24 7479 -202.177.32.0/21 17689 -202.177.40.0/22 38195 -202.177.44.0/22 9285 -202.177.48.0/20 23629 -202.177.64.0/18 24271 -202.177.128.0/22 9796 -202.177.136.0/22 9796 -202.177.144.0/24 9583 -202.177.146.0/24 9583 -202.177.148.0/22 9583 -202.177.152.0/21 9583 -202.177.160.0/22 9583 -202.177.164.0/23 9583 -202.177.167.0/24 9583 -202.177.168.0/23 9583 -202.177.170.0/24 9583 -202.177.172.0/22 9583 -202.177.176.0/24 9583 -202.177.179.0/24 9583 -202.177.180.0/24 9583 -202.177.182.0/23 9583 -202.177.184.0/22 9583 -202.177.190.0/23 9583 -202.177.192.0/23 17819 -202.177.195.0/24 17819 -202.177.196.0/22 17819 -202.177.200.0/22 17819 -202.177.204.0/23 17819 -202.177.207.0/24 17819 -202.177.208.0/21 17819 -202.177.216.0/23 17819 -202.177.219.0/24 17819 -202.177.221.0/24 17819 -202.177.222.0/23 17819 -202.177.224.0/19 24554 -202.178.80.0/20 4721 -202.178.96.0/20 18259 -202.178.112.0/20 38235 -202.178.128.0/19 17709 -202.178.160.0/20 17709 -202.178.176.0/22 17709 -202.178.180.0/24 7482 -202.178.181.0/24 17709 -202.178.182.0/24 7482 -202.178.183.0/24 17709 -202.178.184.0/21 17709 -202.178.192.0/18 17709 -202.179.0.0/21 9934 -202.179.8.0/22 9934 -202.179.12.0/23 9934 -202.179.14.0/24 9934 -202.179.16.0/20 9934 -202.179.32.0/19 9354 -202.179.64.0/24 24392 -202.179.67.0/24 55410 -202.179.69.0/24 138311 -202.179.70.0/24 138296 -202.179.71.0/24 135817 -202.179.72.0/22 138296 -202.179.76.0/24 138296 -202.179.77.0/24 58659 -202.179.78.0/23 58659 -202.179.80.0/22 58659 -202.179.84.0/23 58659 -202.179.86.0/24 138296 -202.179.87.0/24 58659 -202.179.88.0/23 58659 -202.179.90.0/23 138296 -202.179.92.0/22 138296 -202.179.96.0/19 9534 -202.179.128.0/22 134090 -202.179.132.0/22 136001 -202.179.136.0/23 136170 -202.179.138.0/23 138077 -202.179.140.0/22 64073 -202.179.144.0/22 133407 -202.179.152.0/22 38197 -202.179.156.0/22 135261 -202.179.184.0/21 38750 -202.179.203.0/24 17505 -202.179.204.0/24 17505 -202.179.207.0/24 4725 -202.179.224.0/20 9378 -202.179.240.0/21 24489 -202.179.248.0/21 24490 -202.180.0.0/19 7587 -202.180.32.0/20 17934 -202.180.48.0/22 38145 -202.180.53.0/24 38145 -202.180.54.0/23 38145 -202.180.56.0/21 24512 -202.180.64.0/21 9790 -202.180.72.0/22 9790 -202.180.76.0/23 9790 -202.180.78.0/24 9790 -202.180.79.0/24 136494 -202.180.80.0/20 9790 -202.180.96.0/23 9790 -202.180.98.0/24 9790 -202.180.99.0/24 55561 -202.180.100.0/24 9790 -202.180.101.0/24 55561 -202.180.102.0/24 55561 -202.180.103.0/24 9790 -202.180.104.0/21 9790 -202.180.112.0/20 9790 -202.180.128.0/19 4134 -202.180.160.0/22 4515 -202.180.164.0/24 4515 -202.180.165.0/24 132585 -202.180.166.0/23 4515 -202.180.168.0/21 4515 -202.180.192.0/20 10002 -202.180.216.0/21 24496 -202.180.224.0/20 1221 -202.180.240.0/21 1221 -202.180.248.0/22 1221 -202.180.252.0/24 1221 -202.180.253.0/24 38472 -202.180.254.0/24 1221 -202.180.255.0/24 38472 -202.181.4.0/23 136395 -202.181.6.0/24 136395 -202.181.7.0/24 134146 -202.181.12.0/22 134983 -202.181.16.0/22 64075 -202.181.20.0/22 133542 -202.181.24.0/23 55933 -202.181.26.0/24 55933 -202.181.27.0/24 134196 -202.181.96.0/20 9370 -202.181.112.0/20 4134 -202.181.132.0/22 23881 -202.181.136.0/24 136897 -202.181.137.0/24 7540 -202.181.138.0/23 7540 -202.181.140.0/22 7540 -202.181.144.0/24 136897 -202.181.146.0/23 7540 -202.181.148.0/24 7540 -202.181.149.0/24 136897 -202.181.150.0/23 7540 -202.181.152.0/23 7540 -202.181.154.0/24 7540 -202.181.155.0/24 136897 -202.181.156.0/22 7540 -202.181.160.0/19 7540 -202.181.192.0/20 7540 -202.181.208.0/21 7540 -202.181.216.0/23 7540 -202.181.219.0/24 7540 -202.181.220.0/22 7540 -202.181.224.0/20 7540 -202.181.240.0/21 7540 -202.181.248.0/23 7540 -202.182.0.0/20 38888 -202.182.16.0/21 38888 -202.182.24.0/22 38888 -202.182.28.0/22 23927 -202.182.48.0/24 38511 -202.182.49.0/24 56242 -202.182.50.0/23 38511 -202.182.52.0/22 38511 -202.182.56.0/21 24213 -202.182.64.0/19 10113 -202.182.96.0/19 20473 -202.182.128.0/24 9627 -202.182.130.0/23 9627 -202.182.132.0/22 9627 -202.182.136.0/24 9627 -202.182.140.0/22 9627 -202.182.144.0/22 9627 -202.182.148.0/24 2764 -202.182.149.0/24 9627 -202.182.150.0/23 9627 -202.182.159.0/24 9627 -202.182.160.0/21 9875 -202.182.168.0/23 9875 -202.182.172.0/24 9875 -202.182.174.0/24 58478 -202.182.175.0/24 9875 -202.182.177.0/24 58478 -202.182.178.0/23 9875 -202.182.181.0/24 9875 -202.182.182.0/23 9875 -202.182.184.0/23 9875 -202.182.189.0/24 9875 -202.182.190.0/23 9875 -202.182.224.0/23 9536 -202.182.240.0/20 7499 -202.183.32.0/23 23988 -202.183.35.0/24 23988 -202.183.37.0/24 23988 -202.183.38.0/24 23988 -202.183.39.0/24 3491 -202.183.48.0/20 24295 -202.183.64.0/23 6421 -202.183.66.0/23 6453 -202.183.68.0/24 6453 -202.183.69.0/24 6421 -202.183.70.0/24 6421 -202.183.71.0/24 6453 -202.183.72.0/24 6421 -202.183.73.0/24 6453 -202.183.74.0/23 6421 -202.183.76.0/24 6453 -202.183.77.0/24 6421 -202.183.78.0/23 6453 -202.183.80.0/20 23794 -202.183.96.0/20 9723 -202.183.112.0/23 9723 -202.183.114.0/24 9723 -202.183.115.0/24 38309 -202.183.116.0/22 9723 -202.183.120.0/21 9723 -202.183.128.0/23 4750 -202.183.130.0/24 4750 -202.183.131.0/24 17427 -202.183.132.0/24 55634 -202.183.133.0/24 4750 -202.183.134.0/24 24465 -202.183.135.0/24 4750 -202.183.136.0/22 7568 -202.183.140.0/22 4750 -202.183.144.0/23 4750 -202.183.146.0/24 38448 -202.183.147.0/24 4750 -202.183.148.0/24 131460 -202.183.149.0/24 4750 -202.183.150.0/23 4750 -202.183.152.0/21 4750 -202.183.160.0/22 4750 -202.183.164.0/22 9891 -202.183.168.0/21 4750 -202.183.176.0/20 4750 -202.183.192.0/23 9891 -202.183.194.0/23 4750 -202.183.196.0/24 24237 -202.183.197.0/24 4750 -202.183.198.0/24 9891 -202.183.199.0/24 4750 -202.183.200.0/23 4750 -202.183.202.0/24 38815 -202.183.203.0/24 4750 -202.183.204.0/23 4750 -202.183.206.0/24 4750 -202.183.207.0/24 24455 -202.183.208.0/24 4750 -202.183.209.0/24 24217 -202.183.210.0/23 4750 -202.183.212.0/22 4750 -202.183.216.0/21 4750 -202.183.224.0/23 4750 -202.183.226.0/24 4750 -202.183.227.0/24 17475 -202.183.228.0/22 4750 -202.183.232.0/23 4750 -202.183.234.0/24 135511 -202.183.235.0/24 4750 -202.183.236.0/22 4750 -202.183.240.0/22 4750 -202.183.244.0/23 4750 -202.183.246.0/24 4750 -202.183.247.0/24 9891 -202.183.248.0/21 4750 -202.184.0.0/14 9930 -202.188.0.0/16 4788 -202.189.0.0/22 4847 -202.189.4.0/22 23724 -202.189.8.0/22 23724 -202.189.64.0/20 9822 -202.189.96.0/19 4528 -202.189.128.0/22 7473 -202.189.132.0/24 7473 -202.189.133.0/24 54538 -202.189.134.0/24 9498 -202.189.135.0/24 7473 -202.189.136.0/21 7473 -202.189.144.0/20 2514 -202.189.160.0/20 9790 -202.189.176.0/21 7671 -202.189.192.0/19 2519 -202.189.224.0/24 17762 -202.189.225.0/24 134540 -202.189.226.0/23 17762 -202.189.228.0/24 17762 -202.189.229.0/24 134540 -202.189.230.0/23 134540 -202.189.232.0/23 134540 -202.189.234.0/24 134540 -202.189.235.0/24 17762 -202.189.236.0/23 134540 -202.189.238.0/24 134540 -202.189.239.0/24 17762 -202.189.240.0/23 134540 -202.189.242.0/24 134540 -202.189.243.0/24 17762 -202.189.244.0/23 134540 -202.189.246.0/24 17762 -202.189.247.0/24 134540 -202.189.248.0/23 17762 -202.189.250.0/24 17762 -202.189.251.0/24 134540 -202.189.252.0/23 134540 -202.189.254.0/24 134540 -202.189.255.0/24 17762 -202.190.0.0/16 9930 -202.191.1.0/24 133000 -202.191.2.0/23 24205 -202.191.4.0/22 7604 -202.191.8.0/21 9224 -202.191.16.0/20 4713 -202.191.32.0/20 9790 -202.191.48.0/21 55455 -202.191.56.0/22 38727 -202.191.60.0/22 24446 -202.191.64.0/22 131262 -202.191.96.0/23 136255 -202.191.112.0/21 10006 -202.191.120.0/21 24556 -202.191.128.0/19 9583 -202.191.160.0/20 9583 -202.191.176.0/22 9583 -202.191.182.0/23 9583 -202.191.184.0/22 9583 -202.191.190.0/23 9583 -202.191.192.0/20 9583 -202.191.208.0/21 9583 -202.191.216.0/23 9583 -202.191.218.0/24 9583 -202.191.220.0/22 9583 -202.191.224.0/20 9583 -202.191.240.0/24 9583 -202.191.244.0/22 9583 -202.191.248.0/21 9583 -202.192.0.0/15 4538 -202.194.0.0/16 4538 -202.195.0.0/17 4538 -202.195.128.0/24 4538 -202.195.129.0/24 24361 -202.195.130.0/23 24361 -202.195.132.0/22 24361 -202.195.136.0/21 24361 -202.195.144.0/20 4538 -202.195.160.0/19 4538 -202.195.192.0/18 4538 -202.196.0.0/14 4538 -202.200.0.0/14 4538 -202.204.0.0/24 4538 -202.204.1.0/24 23910 -202.204.2.0/23 4538 -202.204.4.0/22 4538 -202.204.8.0/21 4538 -202.204.16.0/20 4538 -202.204.32.0/19 4538 -202.204.64.0/18 4538 -202.204.128.0/17 4538 -202.205.0.0/16 4538 -202.206.0.0/15 4538 -202.208.8.0/23 2907 -202.208.16.0/22 2907 -202.208.25.0/24 2907 -202.208.32.0/19 2510 -202.208.64.0/19 2514 -202.208.112.0/20 18144 -202.208.128.0/19 4685 -202.208.160.0/19 7511 -202.208.192.0/19 10010 -202.208.224.0/19 3949 -202.209.0.0/16 2907 -202.210.0.0/22 2907 -202.210.47.0/24 10010 -202.210.56.0/22 2522 -202.210.128.0/18 4686 -202.210.192.0/18 17506 -202.211.0.0/19 2907 -202.211.32.0/23 23637 -202.211.34.0/23 7523 -202.211.36.0/22 7523 -202.211.40.0/21 7523 -202.211.48.0/20 7523 -202.211.64.0/20 23817 -202.211.80.0/20 9997 -202.211.114.0/23 7671 -202.211.116.0/22 7671 -202.211.124.0/23 7671 -202.211.128.0/22 4725 -202.211.156.0/22 4725 -202.211.192.0/22 4725 -202.211.200.0/21 4725 -202.211.212.0/22 4725 -202.211.216.0/21 4725 -202.211.240.0/21 4725 -202.212.0.0/16 2514 -202.213.0.0/22 2907 -202.213.4.0/22 4725 -202.213.16.0/22 4713 -202.213.24.0/23 2907 -202.213.32.0/20 23785 -202.213.48.0/20 23627 -202.213.64.0/20 55385 -202.213.96.0/19 7668 -202.213.128.0/19 4685 -202.213.160.0/20 2907 -202.213.176.0/20 18283 -202.213.192.0/18 2527 -202.214.0.0/16 2497 -202.215.0.0/16 2519 -202.216.0.0/19 4704 -202.216.48.0/20 17511 -202.216.76.0/22 10010 -202.216.80.0/20 7524 -202.216.96.0/19 7505 -202.216.128.0/19 9615 -202.216.160.0/20 18086 -202.216.176.0/20 18281 -202.216.192.0/19 2510 -202.216.224.0/19 10013 -202.217.0.0/17 4673 -202.217.128.0/17 4725 -202.218.0.0/24 4694 -202.218.1.0/24 2554 -202.218.2.0/23 2554 -202.218.4.0/22 4694 -202.218.8.0/22 4694 -202.218.12.0/23 4694 -202.218.14.0/24 4725 -202.218.15.0/24 4694 -202.218.16.0/20 4694 -202.218.32.0/22 2554 -202.218.36.0/22 4694 -202.218.40.0/21 4694 -202.218.48.0/22 2554 -202.218.52.0/22 4694 -202.218.56.0/22 4725 -202.218.60.0/22 4694 -202.218.64.0/21 4694 -202.218.72.0/22 4694 -202.218.76.0/23 4694 -202.218.78.0/23 2554 -202.218.80.0/20 4694 -202.218.96.0/21 4694 -202.218.104.0/22 4694 -202.218.108.0/23 2554 -202.218.110.0/23 4694 -202.218.112.0/22 4694 -202.218.116.0/23 4694 -202.218.118.0/23 2554 -202.218.120.0/21 4694 -202.218.128.0/22 4694 -202.218.132.0/23 4694 -202.218.134.0/24 4694 -202.218.135.0/24 2554 -202.218.136.0/21 4694 -202.218.144.0/20 4694 -202.218.160.0/19 4694 -202.218.192.0/19 4694 -202.218.224.0/20 2554 -202.218.240.0/21 4694 -202.218.248.0/22 4694 -202.218.252.0/23 2554 -202.218.254.0/23 4694 -202.219.0.0/16 2510 -202.220.0.0/22 2907 -202.220.17.0/24 2907 -202.220.21.0/24 2907 -202.220.40.0/21 7679 -202.220.56.0/22 2907 -202.220.62.0/23 2907 -202.220.64.0/22 2907 -202.220.70.0/23 17689 -202.220.72.0/22 2907 -202.220.80.0/24 2907 -202.220.104.0/23 2907 -202.220.116.0/23 2907 -202.220.118.0/24 2907 -202.220.124.0/22 2907 -202.220.160.0/19 9614 -202.220.192.0/19 2514 -202.220.224.0/19 23628 -202.221.0.0/16 2497 -202.222.0.0/21 10010 -202.222.8.0/23 10013 -202.222.10.0/23 59120 -202.222.12.0/22 59103 -202.222.16.0/20 9370 -202.222.32.0/19 18121 -202.222.64.0/19 4711 -202.222.96.0/20 4711 -202.222.112.0/20 9374 -202.222.128.0/19 18085 -202.222.160.0/19 7514 -202.222.192.0/20 59109 -202.222.208.0/21 59109 -202.222.216.0/23 59109 -202.222.220.0/22 59109 -202.222.224.0/22 59109 -202.222.230.0/23 59109 -202.222.232.0/21 59109 -202.222.240.0/20 59109 -202.223.0.0/22 7514 -202.223.4.0/22 24251 -202.223.8.0/22 38634 -202.223.12.0/22 131937 -202.223.16.0/22 7513 -202.223.20.0/22 131943 -202.223.24.0/22 55376 -202.223.28.0/22 7524 -202.223.32.0/22 24289 -202.223.36.0/22 131933 -202.223.48.0/22 17511 -202.223.52.0/22 23820 -202.223.56.0/22 63771 -202.223.60.0/22 45687 -202.223.64.0/18 2527 -202.223.128.0/18 2907 -202.223.192.0/19 2907 -202.223.224.0/22 2907 -202.223.228.0/23 2907 -202.223.230.0/23 24260 -202.223.232.0/21 2907 -202.223.240.0/20 2907 -202.224.16.0/20 18281 -202.224.32.0/19 4685 -202.224.64.0/19 9374 -202.224.96.0/20 2510 -202.224.112.0/20 9615 -202.224.128.0/19 2497 -202.224.160.0/20 2497 -202.224.176.0/21 2497 -202.224.184.0/22 2497 -202.224.188.0/24 2497 -202.224.189.0/24 18071 -202.224.190.0/23 2497 -202.224.192.0/18 2514 -202.225.0.0/16 2518 -202.226.0.0/22 63774 -202.226.4.0/22 59105 -202.226.8.0/22 131949 -202.226.12.0/22 131954 -202.226.16.0/22 10010 -202.226.20.0/22 2527 -202.226.24.0/22 131950 -202.226.40.0/22 63773 -202.226.48.0/22 17676 -202.226.64.0/18 4677 -202.226.128.0/18 17506 -202.226.192.0/19 7505 -202.226.224.0/19 7679 -202.227.32.0/20 4725 -202.227.48.0/22 4725 -202.227.56.0/22 4725 -202.227.64.0/19 17683 -202.227.96.0/20 17683 -202.227.128.0/18 4637 -202.228.0.0/18 4680 -202.228.128.0/18 4678 -202.228.192.0/24 2554 -202.228.193.0/24 4694 -202.228.194.0/23 4694 -202.228.196.0/24 4694 -202.228.197.0/24 2554 -202.228.198.0/23 4694 -202.228.200.0/23 4694 -202.228.202.0/24 4694 -202.228.203.0/24 4725 -202.228.204.0/22 2554 -202.228.208.0/20 4694 -202.228.224.0/22 4694 -202.228.228.0/23 4694 -202.228.230.0/24 2554 -202.228.231.0/24 4694 -202.228.232.0/24 4694 -202.228.233.0/24 2554 -202.228.234.0/23 4694 -202.228.236.0/22 4694 -202.228.240.0/20 10000 -202.229.0.0/16 2514 -202.230.0.0/20 4694 -202.230.16.0/23 4694 -202.230.18.0/24 4694 -202.230.19.0/24 4725 -202.230.20.0/22 4694 -202.230.24.0/21 4694 -202.230.32.0/20 4694 -202.230.48.0/21 4694 -202.230.56.0/23 4694 -202.230.58.0/24 4694 -202.230.59.0/24 4725 -202.230.60.0/22 4694 -202.230.64.0/18 4694 -202.230.128.0/18 4694 -202.230.192.0/21 4694 -202.230.200.0/22 4694 -202.230.204.0/23 4694 -202.230.206.0/24 17676 -202.230.207.0/24 4694 -202.230.208.0/20 4694 -202.230.224.0/19 4694 -202.231.0.0/18 2907 -202.231.64.0/18 2519 -202.231.128.0/19 4695 -202.231.160.0/20 4695 -202.231.176.0/20 18278 -202.231.192.0/18 4686 -202.232.0.0/16 2497 -202.233.0.0/19 4675 -202.233.32.0/20 4675 -202.233.48.0/23 4675 -202.233.50.0/24 2519 -202.233.51.0/24 4675 -202.233.52.0/22 4675 -202.233.56.0/23 4675 -202.233.58.0/24 2519 -202.233.59.0/24 4675 -202.233.60.0/22 4675 -202.233.68.0/22 131952 -202.233.80.0/22 18268 -202.233.84.0/22 131957 -202.233.192.0/18 2510 -202.234.0.0/19 4694 -202.234.32.0/20 4694 -202.234.48.0/21 4694 -202.234.56.0/21 4725 -202.234.64.0/18 17676 -202.234.128.0/24 4725 -202.234.129.0/24 4694 -202.234.130.0/24 17676 -202.234.131.0/24 4725 -202.234.132.0/24 4725 -202.234.133.0/24 4694 -202.234.134.0/23 4694 -202.234.136.0/24 4725 -202.234.137.0/24 4694 -202.234.138.0/24 4725 -202.234.139.0/24 4694 -202.234.140.0/22 4694 -202.234.144.0/24 4694 -202.234.145.0/24 4725 -202.234.146.0/24 4725 -202.234.147.0/24 4694 -202.234.148.0/24 4725 -202.234.149.0/24 4694 -202.234.150.0/23 4694 -202.234.152.0/24 4725 -202.234.153.0/24 4694 -202.234.154.0/24 4725 -202.234.155.0/24 4694 -202.234.156.0/22 4694 -202.234.160.0/19 4694 -202.234.192.0/18 4713 -202.235.64.0/19 4673 -202.235.96.0/20 4673 -202.235.112.0/20 132084 -202.235.128.0/18 2907 -202.235.192.0/18 4686 -202.236.2.0/24 2907 -202.236.16.0/24 2907 -202.236.33.0/24 2907 -202.236.44.0/24 2907 -202.236.60.0/23 2907 -202.236.70.0/24 2907 -202.236.76.0/22 18123 -202.236.88.0/21 38634 -202.236.100.0/22 2907 -202.236.106.0/23 2907 -202.236.109.0/24 2497 -202.236.110.0/24 2497 -202.236.111.0/24 2907 -202.236.112.0/22 17676 -202.236.116.0/24 23783 -202.236.120.0/24 2907 -202.236.124.0/24 2907 -202.236.128.0/20 2907 -202.236.150.0/23 2907 -202.236.157.0/24 37908 -202.236.168.0/21 2907 -202.236.176.0/22 2907 -202.236.182.0/23 2516 -202.236.187.0/24 2516 -202.236.188.0/22 2907 -202.237.2.0/23 2907 -202.237.6.0/23 2907 -202.237.10.0/24 2497 -202.237.15.0/24 2907 -202.237.24.0/24 2907 -202.237.27.0/24 2907 -202.237.40.0/24 2907 -202.237.50.0/24 17941 -202.237.52.0/22 2907 -202.237.73.0/24 4725 -202.237.80.0/20 2516 -202.237.114.0/24 2510 -202.237.132.0/24 2497 -202.237.148.0/24 17941 -202.237.149.0/24 131921 -202.237.168.0/23 2907 -202.237.174.0/24 2907 -202.237.176.0/22 3949 -202.237.183.0/24 17676 -202.237.192.0/19 4680 -202.237.244.0/24 2914 -202.237.254.0/23 2907 -202.238.0.0/20 18282 -202.238.16.0/20 2518 -202.238.32.0/20 10001 -202.238.48.0/20 17961 -202.238.64.0/18 2527 -202.238.128.0/17 2497 -202.239.0.0/20 23816 -202.239.16.0/22 4694 -202.239.20.0/23 4694 -202.239.22.0/24 17676 -202.239.23.0/24 4694 -202.239.24.0/21 4694 -202.239.32.0/19 4694 -202.239.64.0/18 2514 -202.239.128.0/18 2516 -202.239.192.0/18 2519 -202.240.8.0/21 2907 -202.240.52.0/22 17676 -202.240.66.0/23 23783 -202.240.72.0/21 2907 -202.240.84.0/23 7690 -202.240.96.0/22 2907 -202.240.108.0/23 131946 -202.240.112.0/22 2907 -202.240.117.0/24 2907 -202.240.128.0/22 59109 -202.240.137.0/24 2907 -202.240.176.0/23 7522 -202.240.180.0/22 2516 -202.240.192.0/19 4725 -202.240.224.0/24 2907 -202.240.232.0/24 2907 -202.240.242.0/24 17819 -202.240.244.0/22 23781 -202.241.0.0/17 2907 -202.241.128.0/22 2514 -202.241.132.0/22 2512 -202.241.136.0/22 2514 -202.241.140.0/22 2512 -202.241.144.0/21 2514 -202.241.152.0/22 2514 -202.241.156.0/22 2512 -202.241.160.0/20 2519 -202.241.176.0/22 2512 -202.241.180.0/22 2514 -202.241.184.0/21 2519 -202.241.192.0/20 4694 -202.241.208.0/21 4694 -202.241.216.0/23 4694 -202.241.218.0/24 4694 -202.241.219.0/24 17676 -202.241.220.0/22 4694 -202.241.224.0/21 4694 -202.241.232.0/24 4694 -202.241.233.0/24 4725 -202.241.234.0/23 4694 -202.241.236.0/23 4694 -202.241.238.0/24 4694 -202.241.239.0/24 4725 -202.241.240.0/20 4694 -202.242.1.0/24 135401 -202.242.2.0/24 135401 -202.242.5.0/24 2907 -202.242.7.0/24 2907 -202.242.8.0/21 2907 -202.242.16.0/23 2497 -202.242.18.0/23 17678 -202.242.21.0/24 2907 -202.242.34.0/24 7668 -202.242.38.0/23 2907 -202.242.53.0/24 4713 -202.242.55.0/24 2907 -202.242.64.0/21 2907 -202.242.101.0/24 2907 -202.242.115.0/24 2516 -202.242.120.0/23 2907 -202.242.127.0/24 2907 -202.242.131.0/24 2907 -202.242.136.0/24 2516 -202.242.160.0/19 2907 -202.242.192.0/22 2907 -202.242.231.0/24 2907 -202.242.240.0/23 4725 -202.242.245.0/24 7671 -202.243.16.0/20 2907 -202.243.64.0/19 59108 -202.243.104.0/23 17676 -202.243.120.0/21 23631 -202.243.128.0/20 2907 -202.243.144.0/21 7687 -202.243.152.0/23 7687 -202.243.154.0/24 7687 -202.243.156.0/22 7687 -202.243.162.0/23 2907 -202.243.185.0/24 2907 -202.243.186.0/24 2519 -202.243.187.0/24 7522 -202.243.196.0/22 59109 -202.243.216.0/24 4713 -202.243.220.0/23 2907 -202.243.222.0/24 2907 -202.243.223.0/24 9999 -202.243.234.0/23 2907 -202.244.3.0/24 2907 -202.244.32.0/21 2500 -202.244.52.0/22 2907 -202.244.62.0/24 2907 -202.244.76.0/22 2907 -202.244.84.0/23 18123 -202.244.90.0/23 2907 -202.244.96.0/22 2516 -202.244.104.0/23 2907 -202.244.112.0/20 2907 -202.244.138.0/23 17511 -202.244.160.0/19 2907 -202.244.192.0/21 2907 -202.244.205.0/24 2907 -202.244.210.0/24 2907 -202.244.222.0/24 2497 -202.244.224.0/21 4686 -202.244.236.0/22 4713 -202.244.240.0/20 2907 -202.245.2.0/23 2907 -202.245.11.0/24 2907 -202.245.13.0/24 2907 -202.245.24.0/23 2907 -202.245.30.0/24 2907 -202.245.31.0/24 38629 -202.245.32.0/19 2516 -202.245.64.0/19 2907 -202.245.96.0/22 7687 -202.245.100.0/22 2907 -202.245.104.0/23 2907 -202.245.115.0/24 2516 -202.245.116.0/23 2516 -202.245.118.0/24 2516 -202.245.124.0/24 2907 -202.245.136.0/23 2907 -202.245.142.0/24 2519 -202.245.144.0/24 2506 -202.245.148.0/23 4713 -202.245.153.0/24 3488 -202.245.159.0/24 7502 -202.245.160.0/24 7502 -202.245.162.0/24 2516 -202.245.165.0/24 2907 -202.245.168.0/22 2907 -202.245.176.0/20 2497 -202.245.196.0/23 7668 -202.245.212.0/22 2907 -202.245.226.0/23 2907 -202.246.9.0/24 2907 -202.246.44.0/22 4725 -202.246.63.0/24 2907 -202.246.68.0/24 2907 -202.246.106.0/23 2907 -202.246.114.0/24 7522 -202.246.122.0/23 4713 -202.246.128.0/19 2907 -202.246.160.0/24 17511 -202.246.165.0/24 17511 -202.246.176.0/22 2516 -202.246.180.0/23 18077 -202.246.244.0/22 7670 -202.246.248.0/21 2526 -202.247.0.0/17 2518 -202.247.128.0/22 59103 -202.247.136.0/21 131916 -202.247.160.0/21 59125 -202.247.168.0/21 131925 -202.247.176.0/21 131918 -202.247.184.0/21 131916 -202.247.192.0/18 17955 -202.248.0.0/16 2510 -202.249.0.0/18 2500 -202.249.192.0/18 2506 -202.250.0.0/20 2907 -202.250.16.0/20 2516 -202.250.32.0/24 37888 -202.250.37.0/24 37888 -202.250.38.0/24 37888 -202.250.64.0/21 2907 -202.250.120.0/21 2907 -202.250.129.0/24 2907 -202.250.148.0/23 2907 -202.250.150.0/24 2907 -202.250.154.0/23 2497 -202.250.160.0/20 2907 -202.250.176.0/22 2907 -202.250.184.0/21 2907 -202.250.208.0/21 2907 -202.250.224.0/22 2907 -202.250.232.0/24 2510 -202.250.238.0/23 2907 -202.251.0.0/19 2497 -202.251.32.0/22 2907 -202.251.88.0/22 2907 -202.251.136.0/22 17676 -202.251.140.0/24 2907 -202.251.141.0/24 17676 -202.251.142.0/23 17676 -202.251.144.0/20 23781 -202.251.177.0/24 3488 -202.251.180.0/22 2907 -202.251.184.0/21 2907 -202.251.200.0/22 2497 -202.251.224.0/20 2907 -202.251.244.0/22 2907 -202.251.248.0/22 4686 -202.252.0.0/18 4673 -202.252.64.0/19 58647 -202.252.104.0/22 2497 -202.252.128.0/18 2907 -202.252.197.0/24 37914 -202.252.210.0/24 2516 -202.252.214.0/24 2907 -202.252.246.0/23 2907 -202.253.0.0/18 2907 -202.253.88.0/22 2907 -202.253.96.0/22 17505 -202.253.106.0/23 2514 -202.253.108.0/22 18091 -202.253.115.0/24 131912 -202.253.138.0/23 2907 -202.253.160.0/22 2497 -202.253.168.0/21 7687 -202.253.192.0/21 2907 -202.253.200.0/22 2907 -202.253.224.0/20 2907 -202.253.244.0/22 55890 -202.253.248.0/22 2907 -202.253.252.0/24 2907 -202.254.0.0/19 2907 -202.254.32.0/20 18143 -202.254.88.0/22 2907 -202.254.96.0/21 2907 -202.254.111.0/24 37908 -202.254.128.0/24 37906 -202.254.152.0/24 7516 -202.254.153.0/24 2907 -202.254.162.0/23 2907 -202.254.164.0/22 23614 -202.254.192.0/22 4713 -202.254.196.0/22 2907 -202.254.200.0/21 23781 -202.254.212.0/24 2907 -202.254.218.0/24 2907 -202.254.227.0/24 2907 -202.254.230.0/24 2907 -202.254.232.0/21 9371 -202.255.16.0/21 7522 -202.255.24.0/24 2907 -202.255.27.0/24 4713 -202.255.28.0/23 4713 -202.255.44.0/23 7667 -202.255.46.0/24 7667 -202.255.47.0/24 131078 -202.255.48.0/22 4725 -202.255.56.0/22 4713 -202.255.60.0/23 4713 -202.255.62.0/24 4713 -202.255.63.0/24 7677 -202.255.101.0/24 10021 -202.255.102.0/24 10021 -202.255.103.0/24 7671 -202.255.152.0/22 2907 -202.255.184.0/22 2907 -202.255.192.0/21 2907 -202.255.200.0/22 2907 -202.255.229.0/24 2907 -202.255.237.0/24 9371 -202.255.244.0/22 2907 -203.0.1.0/24 1221 -203.0.2.0/23 45226 -203.0.13.0/24 4739 -203.0.19.0/24 7575 -203.0.25.0/24 7545 -203.0.26.0/24 9328 -203.0.27.0/24 135668 -203.0.31.0/24 7545 -203.0.35.0/24 1221 -203.0.36.0/24 158 -203.0.37.0/24 18363 -203.0.40.0/24 10148 -203.0.72.0/24 64240 -203.0.76.0/23 7474 -203.0.78.0/24 7474 -203.0.80.0/24 9913 -203.0.89.0/24 7575 -203.0.98.0/24 4739 -203.0.103.0/24 59246 -203.0.104.0/21 58563 -203.0.116.0/22 18361 -203.0.120.0/24 4764 -203.0.124.0/22 23722 -203.0.129.0/24 4739 -203.0.139.0/24 4739 -203.0.141.0/24 56132 -203.0.143.0/24 4739 -203.0.149.0/24 24008 -203.0.153.0/24 134347 -203.0.155.0/24 45570 -203.0.156.0/22 9408 -203.0.160.0/21 7474 -203.0.170.0/24 7545 -203.0.171.0/24 9268 -203.0.172.0/22 136518 -203.0.176.0/24 4739 -203.0.178.0/24 4739 -203.0.194.0/24 2764 -203.0.196.0/24 2764 -203.0.200.0/23 9435 -203.0.205.0/24 9435 -203.0.213.0/24 9435 -203.0.214.0/23 9435 -203.0.216.0/23 9435 -203.0.218.0/24 2764 -203.0.219.0/24 9435 -203.0.220.0/22 9435 -203.0.226.0/24 9443 -203.0.228.0/23 133787 -203.0.230.0/24 133787 -203.0.232.0/23 132728 -203.0.234.0/24 7545 -203.0.235.0/24 132728 -203.0.236.0/23 132728 -203.0.238.0/24 2764 -203.0.239.0/24 132728 -203.0.241.0/24 10234 -203.0.243.0/24 10234 -203.0.248.0/24 10234 -203.0.252.0/22 56227 -203.1.8.0/23 56270 -203.1.14.0/23 56270 -203.1.16.0/24 134096 -203.1.21.0/24 137906 -203.1.24.0/24 58713 -203.1.28.0/23 7575 -203.1.30.0/24 7575 -203.1.32.0/19 7575 -203.1.64.0/24 7575 -203.1.68.0/23 9913 -203.1.78.0/24 4739 -203.1.80.0/24 7474 -203.1.104.0/23 38534 -203.1.107.0/24 38534 -203.1.110.0/24 7575 -203.1.183.0/24 9443 -203.1.203.0/24 7575 -203.1.204.0/24 7575 -203.1.208.0/24 38263 -203.1.209.0/24 24553 -203.1.210.0/23 38263 -203.1.212.0/23 38263 -203.1.214.0/24 38263 -203.1.218.0/24 133787 -203.1.221.0/24 133787 -203.1.223.0/24 10143 -203.1.224.0/20 7575 -203.1.240.0/21 9792 -203.1.248.0/22 9797 -203.1.252.0/24 4739 -203.2.1.0/24 138180 -203.2.2.0/23 138180 -203.2.4.0/22 138180 -203.2.8.0/21 138180 -203.2.16.0/20 138180 -203.2.32.0/22 7575 -203.2.36.0/24 7575 -203.2.39.0/24 7575 -203.2.40.0/23 7575 -203.2.48.0/22 7575 -203.2.60.0/23 7575 -203.2.64.0/21 58563 -203.2.75.0/24 4804 -203.2.76.0/23 1221 -203.2.80.0/20 4739 -203.2.112.0/21 63835 -203.2.120.0/23 9555 -203.2.122.0/24 7496 -203.2.124.0/24 4739 -203.2.125.0/24 1221 -203.2.130.0/23 135409 -203.2.133.0/24 7474 -203.2.134.0/24 4739 -203.2.144.0/24 2764 -203.2.149.0/24 9266 -203.2.158.0/23 37978 -203.2.160.0/21 134418 -203.2.168.0/21 133081 -203.2.182.0/23 55924 -203.2.184.0/21 132279 -203.2.192.0/22 703 -203.2.199.0/24 7545 -203.2.208.0/24 9555 -203.2.210.0/24 9652 -203.2.216.0/24 10221 -203.2.217.0/24 9268 -203.2.218.0/24 9342 -203.2.220.0/22 4826 -203.2.224.0/24 1221 -203.2.228.0/24 7543 -203.2.231.0/24 7474 -203.2.239.0/24 9443 -203.2.240.0/20 132029 -203.3.24.0/23 9822 -203.3.64.0/23 38863 -203.3.69.0/24 4739 -203.3.70.0/24 38831 -203.3.71.0/24 7474 -203.3.76.0/24 9746 -203.3.78.0/24 9449 -203.3.79.0/24 7545 -203.3.80.0/21 134418 -203.3.104.0/24 1221 -203.3.107.0/24 23686 -203.3.108.0/23 23686 -203.3.111.0/24 24233 -203.3.112.0/21 63835 -203.3.124.0/23 9652 -203.3.126.0/24 9652 -203.3.132.0/24 58895 -203.3.133.0/24 17477 -203.3.137.0/24 1221 -203.3.138.0/24 7545 -203.3.142.0/24 17477 -203.3.150.0/23 7474 -203.3.152.0/22 7474 -203.3.160.0/22 9449 -203.3.166.0/24 4786 -203.3.176.0/24 4820 -203.3.178.0/23 56307 -203.3.188.0/23 56307 -203.3.192.0/22 17668 -203.3.196.0/24 17668 -203.3.200.0/24 17668 -203.3.220.0/22 17461 -203.3.224.0/22 17668 -203.3.232.0/22 17461 -203.3.254.0/24 17668 -203.4.130.0/24 1221 -203.4.136.0/21 18390 -203.4.145.0/24 7575 -203.4.146.0/23 7575 -203.4.148.0/24 12025 -203.4.149.0/24 58929 -203.4.160.0/24 24060 -203.4.162.0/24 4739 -203.4.165.0/24 7474 -203.4.166.0/24 7474 -203.4.168.0/22 37990 -203.4.172.0/23 4739 -203.4.182.0/23 138390 -203.4.187.0/24 137871 -203.4.189.0/24 17765 -203.4.190.0/24 17819 -203.4.191.0/24 17765 -203.4.192.0/22 1221 -203.4.196.0/24 1221 -203.4.200.0/22 4822 -203.4.206.0/24 9449 -203.4.216.0/21 136392 -203.4.224.0/24 138201 -203.4.228.0/24 7545 -203.4.232.0/21 24007 -203.4.240.0/23 9449 -203.4.243.0/24 9449 -203.4.244.0/23 9449 -203.4.248.0/21 9648 -203.5.0.0/24 4764 -203.5.1.0/24 10143 -203.5.6.0/24 10143 -203.5.10.0/24 9650 -203.5.13.0/24 7600 -203.5.19.0/24 7545 -203.5.26.0/24 9443 -203.5.28.0/24 56101 -203.5.30.0/24 9443 -203.5.31.0/24 10143 -203.5.32.0/23 1221 -203.5.36.0/24 4826 -203.5.37.0/24 1221 -203.5.40.0/22 7545 -203.5.45.0/24 18037 -203.5.48.0/23 58713 -203.5.58.0/24 1221 -203.5.59.0/24 38831 -203.5.64.0/21 10148 -203.5.76.0/24 7575 -203.5.80.0/24 1221 -203.5.81.0/24 134096 -203.5.82.0/24 134096 -203.5.88.0/24 1221 -203.5.104.0/23 134096 -203.5.106.0/24 134096 -203.5.107.0/24 1221 -203.5.108.0/22 134096 -203.5.112.0/24 24436 -203.5.119.0/24 4739 -203.5.121.0/24 37978 -203.5.124.0/23 7575 -203.5.126.0/24 4739 -203.5.127.0/24 10083 -203.5.128.0/19 17983 -203.5.165.0/24 10143 -203.5.167.0/24 10143 -203.5.176.0/23 1221 -203.5.184.0/24 4802 -203.5.192.0/24 17477 -203.5.193.0/24 9449 -203.5.194.0/24 9738 -203.5.200.0/21 10203 -203.5.210.0/24 23871 -203.5.216.0/24 7474 -203.5.217.0/24 9466 -203.5.220.0/22 7474 -203.5.224.0/20 7474 -203.5.240.0/22 7474 -203.5.244.0/24 9266 -203.5.252.0/22 7545 -203.6.0.0/21 7474 -203.6.8.0/22 7575 -203.6.12.0/22 7474 -203.6.16.0/21 7474 -203.6.24.0/22 7474 -203.6.28.0/23 7474 -203.6.30.0/24 7474 -203.6.31.0/24 9466 -203.6.32.0/23 9466 -203.6.34.0/23 7474 -203.6.36.0/22 9466 -203.6.40.0/21 7474 -203.6.48.0/20 7474 -203.6.64.0/20 9466 -203.6.80.0/20 7474 -203.6.96.0/20 7474 -203.6.112.0/23 7474 -203.6.114.0/24 18220 -203.6.115.0/24 7474 -203.6.116.0/23 7474 -203.6.118.0/23 9466 -203.6.120.0/21 7474 -203.6.141.0/24 56132 -203.6.143.0/24 1221 -203.6.144.0/23 7575 -203.6.146.0/23 4739 -203.6.148.0/23 55684 -203.6.160.0/21 18431 -203.6.168.0/23 18431 -203.6.170.0/23 1221 -203.6.172.0/22 18431 -203.6.176.0/20 18431 -203.6.193.0/24 46073 -203.6.197.0/24 46073 -203.6.198.0/24 46073 -203.6.200.0/24 46073 -203.6.204.0/23 46073 -203.6.206.0/24 46073 -203.6.208.0/22 135003 -203.6.217.0/24 7474 -203.6.222.0/23 7474 -203.6.224.0/20 58519 -203.6.241.0/24 4764 -203.6.244.0/24 1221 -203.6.245.0/24 7474 -203.6.250.0/24 10143 -203.6.251.0/24 23854 -203.6.255.0/24 7575 -203.7.0.0/19 18371 -203.7.32.0/20 4739 -203.7.48.0/21 4739 -203.7.64.0/19 7545 -203.7.96.0/19 4739 -203.7.130.0/23 10203 -203.7.132.0/23 7722 -203.7.140.0/22 9555 -203.7.148.0/23 135653 -203.7.155.0/24 4764 -203.7.160.0/22 58451 -203.7.164.0/24 8100 -203.7.165.0/24 58451 -203.7.166.0/23 58451 -203.7.171.0/24 55691 -203.7.172.0/24 38809 -203.7.176.0/20 703 -203.7.196.0/23 4739 -203.7.198.0/24 139612 -203.7.199.0/24 17559 -203.7.202.0/23 9449 -203.7.204.0/24 9449 -203.7.205.0/24 55359 -203.7.224.0/23 7604 -203.7.227.0/24 7545 -203.8.2.0/24 7545 -203.8.4.0/22 17662 -203.8.12.0/22 23646 -203.8.16.0/23 45333 -203.8.18.0/23 10150 -203.8.24.0/23 4809 -203.8.27.0/24 4809 -203.8.28.0/23 4809 -203.8.31.0/24 4809 -203.8.32.0/19 10235 -203.8.68.0/24 4826 -203.8.71.0/24 17477 -203.8.78.0/24 2687 -203.8.81.0/24 17669 -203.8.90.0/24 133930 -203.8.92.0/23 9449 -203.8.107.0/24 1221 -203.8.108.0/24 7545 -203.8.109.0/24 45466 -203.8.113.0/24 1221 -203.8.116.0/23 56108 -203.8.118.0/23 132868 -203.8.124.0/24 4739 -203.8.127.0/24 56142 -203.8.128.0/19 9650 -203.8.160.0/24 9822 -203.8.161.0/24 58612 -203.8.163.0/24 4826 -203.8.176.0/22 2764 -203.8.180.0/23 7545 -203.8.182.0/23 2764 -203.8.188.0/23 7496 -203.8.194.0/24 9443 -203.8.195.0/24 7545 -203.8.201.0/24 56107 -203.8.205.0/24 17477 -203.8.206.0/23 135409 -203.8.208.0/24 45780 -203.8.221.0/24 4764 -203.8.222.0/24 17434 -203.9.0.0/22 136019 -203.9.4.0/22 138460 -203.9.8.0/22 138460 -203.9.12.0/22 136019 -203.9.16.0/20 7175 -203.9.35.0/24 7474 -203.9.40.0/23 137945 -203.9.42.0/24 137945 -203.9.44.0/22 137945 -203.9.49.0/24 23669 -203.9.52.0/22 10203 -203.9.58.0/24 55775 -203.9.59.0/24 7575 -203.9.60.0/23 9443 -203.9.64.0/24 9738 -203.9.73.0/24 38809 -203.9.74.0/24 131476 -203.9.78.0/23 14381 -203.9.80.0/20 6603 -203.9.109.0/24 17477 -203.9.111.0/24 4764 -203.9.113.0/24 1273 -203.9.114.0/24 139661 -203.9.117.0/24 139661 -203.9.118.0/24 18549 -203.9.119.0/24 7474 -203.9.121.0/24 7474 -203.9.122.0/23 7474 -203.9.124.0/22 7474 -203.9.128.0/23 2764 -203.9.144.0/23 18057 -203.9.146.0/23 1221 -203.9.148.0/24 10113 -203.9.149.0/24 7575 -203.9.151.0/24 55542 -203.9.152.0/22 9797 -203.9.156.0/24 1851 -203.9.157.0/24 9443 -203.9.160.0/23 132029 -203.9.163.0/24 132029 -203.9.184.0/22 9650 -203.9.188.0/23 18117 -203.9.190.0/23 7543 -203.9.192.0/23 9555 -203.9.194.0/24 9555 -203.9.200.0/21 9555 -203.9.218.0/24 9555 -203.9.221.0/24 9555 -203.9.222.0/23 9555 -203.9.224.0/23 9449 -203.9.239.0/24 45671 -203.9.246.0/23 9797 -203.9.248.0/23 9797 -203.10.0.0/23 4739 -203.10.3.0/24 45665 -203.10.6.0/23 9723 -203.10.8.0/24 9723 -203.10.16.0/21 24461 -203.10.24.0/23 24046 -203.10.26.0/24 24046 -203.10.31.0/24 24046 -203.10.33.0/24 137188 -203.10.36.0/22 136931 -203.10.40.0/21 137188 -203.10.48.0/24 23859 -203.10.54.0/23 134096 -203.10.58.0/24 24218 -203.10.59.0/24 17807 -203.10.60.0/24 4739 -203.10.68.0/24 4804 -203.10.72.0/23 7637 -203.10.76.0/24 55803 -203.10.77.0/24 24129 -203.10.78.0/24 267 -203.10.89.0/24 9313 -203.10.90.0/23 58698 -203.10.92.0/24 58532 -203.10.103.0/24 137907 -203.10.106.0/24 7575 -203.10.110.0/24 4802 -203.10.111.0/24 2823 -203.10.112.0/21 7474 -203.10.121.0/24 9650 -203.10.124.0/24 9266 -203.10.128.0/18 7474 -203.10.192.0/20 7474 -203.10.208.0/21 7474 -203.10.216.0/24 7474 -203.10.217.0/24 9466 -203.10.218.0/23 7474 -203.10.220.0/22 7474 -203.10.224.0/21 7474 -203.10.232.0/23 7474 -203.10.234.0/24 18220 -203.10.235.0/24 7474 -203.10.236.0/22 7474 -203.10.240.0/20 7474 -203.11.0.0/24 1221 -203.11.1.0/24 7474 -203.11.2.0/23 7474 -203.11.4.0/24 1221 -203.11.5.0/24 7474 -203.11.6.0/23 7474 -203.11.8.0/21 7474 -203.11.16.0/20 7474 -203.11.32.0/19 7474 -203.11.64.0/24 1221 -203.11.65.0/24 58895 -203.11.66.0/23 7575 -203.11.69.0/24 9822 -203.11.71.0/24 45447 -203.11.72.0/24 17446 -203.11.73.0/24 1221 -203.11.74.0/24 56117 -203.11.75.0/24 45665 -203.11.80.0/24 7575 -203.11.81.0/24 7474 -203.11.83.0/24 7545 -203.11.88.0/24 1221 -203.11.90.0/24 703 -203.11.92.0/23 17559 -203.11.104.0/22 9652 -203.11.108.0/24 136518 -203.11.110.0/23 58698 -203.11.112.0/24 1221 -203.11.118.0/24 136518 -203.11.121.0/24 131462 -203.11.125.0/24 134096 -203.11.127.0/24 7545 -203.11.128.0/24 10794 -203.11.130.0/23 10794 -203.11.134.0/24 10794 -203.11.140.0/24 9893 -203.11.159.0/24 7545 -203.11.166.0/23 132581 -203.11.170.0/23 16477 -203.11.172.0/23 16477 -203.11.174.0/24 16477 -203.11.184.0/24 2687 -203.11.185.0/24 7474 -203.11.186.0/24 9656 -203.11.188.0/24 9656 -203.11.190.0/24 9989 -203.11.218.0/24 45665 -203.11.224.0/19 17906 -203.12.1.0/24 25542 -203.12.4.0/24 4826 -203.12.5.0/24 17819 -203.12.6.0/24 6939 -203.12.20.0/23 58497 -203.12.22.0/24 4739 -203.12.28.0/23 17763 -203.12.30.0/24 45654 -203.12.31.0/24 2764 -203.12.36.0/24 7545 -203.12.39.0/24 7575 -203.12.42.0/24 7543 -203.12.45.0/24 45657 -203.12.48.0/22 58509 -203.12.52.0/23 4802 -203.12.60.0/22 56105 -203.12.64.0/24 7575 -203.12.68.0/24 4826 -203.12.75.0/24 4237 -203.12.77.0/24 4237 -203.12.80.0/23 133612 -203.12.84.0/23 59246 -203.12.88.0/23 63527 -203.12.91.0/24 4809 -203.12.95.0/24 4809 -203.12.97.0/24 7543 -203.12.104.0/21 58713 -203.12.112.0/23 9443 -203.12.115.0/24 24130 -203.12.116.0/24 9266 -203.12.117.0/24 55766 -203.12.119.0/24 24346 -203.12.129.0/24 9412 -203.12.131.0/24 9443 -203.12.132.0/22 18000 -203.12.136.0/24 4764 -203.12.139.0/24 7474 -203.12.140.0/24 7474 -203.12.144.0/21 7543 -203.12.152.0/21 58713 -203.12.160.0/21 7545 -203.12.170.0/24 7575 -203.12.171.0/24 9421 -203.12.172.0/23 4768 -203.12.174.0/23 3949 -203.12.176.0/20 703 -203.12.194.0/23 9893 -203.12.204.0/23 4809 -203.12.209.0/24 1221 -203.12.216.0/23 38809 -203.12.220.0/24 38044 -203.12.221.0/24 45912 -203.12.223.0/24 45150 -203.12.228.0/24 7545 -203.12.229.0/24 137442 -203.12.230.0/24 137442 -203.12.231.0/24 1221 -203.12.234.0/24 9797 -203.12.235.0/24 38830 -203.12.237.0/24 9266 -203.12.238.0/23 9266 -203.12.244.0/22 17496 -203.12.248.0/24 17463 -203.12.249.0/24 45838 -203.12.251.0/24 9820 -203.13.0.0/20 18055 -203.13.16.0/24 2764 -203.13.21.0/24 1221 -203.13.22.0/24 45158 -203.13.23.0/24 45240 -203.13.32.0/24 209242 -203.13.33.0/24 55884 -203.13.34.0/24 9942 -203.13.35.0/24 10113 -203.13.36.0/24 10143 -203.13.37.0/24 4739 -203.13.40.0/24 394695 -203.13.41.0/24 64090 -203.13.43.0/24 18055 -203.13.56.0/21 10223 -203.13.66.0/23 17477 -203.13.68.0/22 9313 -203.13.74.0/24 4739 -203.13.76.0/23 1221 -203.13.78.0/23 9443 -203.13.80.0/23 4809 -203.13.90.0/24 10218 -203.13.96.0/24 7474 -203.13.98.0/24 7474 -203.13.123.0/24 7474 -203.13.125.0/24 7474 -203.13.126.0/23 7474 -203.13.128.0/23 7474 -203.13.133.0/24 7474 -203.13.134.0/24 7474 -203.13.145.0/24 7468 -203.13.146.0/24 45491 -203.13.151.0/24 12510 -203.13.156.0/24 133767 -203.13.161.0/24 7575 -203.13.164.0/24 7703 -203.13.165.0/24 4764 -203.13.166.0/24 138154 -203.13.168.0/24 38557 -203.13.171.0/24 135569 -203.13.174.0/24 10113 -203.13.192.0/22 136247 -203.13.203.0/24 136247 -203.13.204.0/22 136247 -203.13.208.0/23 9822 -203.13.210.0/24 9822 -203.13.222.0/24 2764 -203.13.226.0/24 9555 -203.13.236.0/24 134984 -203.13.240.0/20 135879 -203.14.0.0/20 1221 -203.14.20.0/24 56228 -203.14.28.0/24 63850 -203.14.29.0/24 17559 -203.14.35.0/24 45692 -203.14.36.0/23 38809 -203.14.38.0/23 38858 -203.14.40.0/21 9893 -203.14.50.0/24 1221 -203.14.52.0/23 55766 -203.14.54.0/24 45158 -203.14.59.0/24 7575 -203.14.65.0/24 24015 -203.14.69.0/24 4643 -203.14.70.0/23 24015 -203.14.72.0/24 24015 -203.14.81.0/24 4643 -203.14.82.0/24 4643 -203.14.87.0/24 4643 -203.14.91.0/24 4643 -203.14.95.0/24 4643 -203.14.96.0/23 1221 -203.14.103.0/24 17559 -203.14.105.0/24 17635 -203.14.106.0/24 9266 -203.14.108.0/24 17559 -203.14.116.0/23 1221 -203.14.124.0/24 58780 -203.14.125.0/24 7474 -203.14.127.0/24 7474 -203.14.128.0/24 7546 -203.14.129.0/24 9449 -203.14.147.0/24 24130 -203.14.153.0/24 38220 -203.14.156.0/22 7545 -203.14.160.0/24 1221 -203.14.161.0/24 18371 -203.14.165.0/24 139050 -203.14.168.0/23 4802 -203.14.170.0/24 4739 -203.14.171.0/24 4802 -203.14.172.0/24 4802 -203.14.174.0/23 4739 -203.14.176.0/24 38567 -203.14.180.0/24 2764 -203.14.183.0/24 45770 -203.14.184.0/22 36678 -203.14.188.0/23 36678 -203.14.193.0/24 9266 -203.14.198.0/24 9822 -203.14.199.0/24 131466 -203.14.201.0/24 9313 -203.14.203.0/24 24065 -203.14.204.0/24 139607 -203.14.205.0/24 9746 -203.14.206.0/23 9746 -203.14.208.0/24 38195 -203.14.210.0/23 55803 -203.14.212.0/24 10229 -203.14.213.0/24 45158 -203.14.220.0/22 1221 -203.14.228.0/23 7575 -203.14.230.0/24 24129 -203.14.240.0/23 10203 -203.14.242.0/24 10203 -203.14.243.0/24 9822 -203.14.245.0/24 17559 -203.15.0.0/20 133774 -203.15.32.0/19 24436 -203.15.64.0/24 18165 -203.15.65.0/24 6262 -203.15.68.0/24 7543 -203.15.69.0/24 4826 -203.15.70.0/24 4826 -203.15.71.0/24 10223 -203.15.92.0/24 24541 -203.15.93.0/24 4739 -203.15.95.0/24 137214 -203.15.96.0/21 7550 -203.15.104.0/24 17477 -203.15.107.0/24 4739 -203.15.109.0/24 7575 -203.15.111.0/24 7545 -203.15.120.0/23 24516 -203.15.122.0/24 24433 -203.15.123.0/24 7570 -203.15.124.0/22 9650 -203.15.134.0/23 9313 -203.15.140.0/24 9822 -203.15.141.0/24 45926 -203.15.144.0/22 18361 -203.15.148.0/24 17559 -203.15.155.0/24 2764 -203.15.160.0/21 703 -203.15.168.0/23 9650 -203.15.172.0/23 38858 -203.15.176.0/24 139322 -203.15.177.0/24 139323 -203.15.178.0/24 139324 -203.15.208.0/23 51964 -203.15.226.0/24 4822 -203.15.236.0/24 58517 -203.15.237.0/24 58518 -203.15.242.0/24 4802 -203.15.244.0/24 38170 -203.15.247.0/24 9443 -203.15.249.0/24 137945 -203.15.254.0/24 1221 -203.16.6.0/23 37978 -203.16.8.0/24 7545 -203.16.24.0/24 2764 -203.16.25.0/24 23652 -203.16.28.0/22 9518 -203.16.32.0/23 38534 -203.16.36.0/24 38809 -203.16.39.0/24 9547 -203.16.40.0/22 10148 -203.16.48.0/24 2764 -203.16.53.0/24 9893 -203.16.56.0/24 9893 -203.16.60.0/23 45454 -203.16.67.0/24 7474 -203.16.69.0/24 7474 -203.16.71.0/24 7474 -203.16.75.0/24 7474 -203.16.76.0/23 7474 -203.16.78.0/24 7474 -203.16.80.0/24 7474 -203.16.108.0/23 10223 -203.16.128.0/22 133081 -203.16.132.0/24 7545 -203.16.140.0/24 1221 -203.16.141.0/24 7474 -203.16.164.0/24 7545 -203.16.165.0/24 9498 -203.16.167.0/24 4764 -203.16.169.0/24 9443 -203.16.170.0/24 9443 -203.16.173.0/24 7474 -203.16.175.0/24 7474 -203.16.176.0/24 137558 -203.16.185.0/24 7474 -203.16.196.0/24 17477 -203.16.199.0/24 9266 -203.16.200.0/23 133876 -203.16.203.0/24 133876 -203.16.206.0/24 10143 -203.16.208.0/21 4739 -203.16.225.0/24 45780 -203.16.227.0/24 45852 -203.16.229.0/24 2764 -203.16.230.0/23 24565 -203.16.232.0/23 58929 -203.16.234.0/24 9723 -203.16.236.0/24 24436 -203.16.239.0/24 55807 -203.16.243.0/24 4739 -203.16.246.0/23 7575 -203.17.1.0/24 24516 -203.17.8.0/24 7545 -203.17.11.0/24 9449 -203.17.12.0/24 9942 -203.17.14.0/23 7175 -203.17.16.0/23 17496 -203.17.26.0/23 24017 -203.17.29.0/24 7703 -203.17.31.0/24 10215 -203.17.33.0/24 24543 -203.17.34.0/23 24543 -203.17.36.0/24 38719 -203.17.37.0/24 23310 -203.17.54.0/24 1221 -203.17.58.0/23 4826 -203.17.60.0/22 4802 -203.17.64.0/24 4739 -203.17.65.0/24 63996 -203.17.66.0/24 10455 -203.17.70.0/24 17807 -203.17.73.0/24 9268 -203.17.76.0/22 9797 -203.17.90.0/24 4739 -203.17.93.0/24 4826 -203.17.95.0/24 4826 -203.17.96.0/20 4802 -203.17.112.0/23 7575 -203.17.114.0/24 9443 -203.17.116.0/23 4826 -203.17.120.0/24 9893 -203.17.126.0/24 209242 -203.17.148.0/22 38611 -203.17.154.0/24 137060 -203.17.156.0/22 24436 -203.17.162.0/24 7543 -203.17.163.0/24 9942 -203.17.165.0/24 45601 -203.17.166.0/24 45158 -203.17.167.0/24 38790 -203.17.168.0/21 9893 -203.17.179.0/24 7575 -203.17.184.0/24 4739 -203.17.185.0/24 45867 -203.17.193.0/24 4739 -203.17.194.0/24 131302 -203.17.200.0/22 7575 -203.17.204.0/22 38809 -203.17.212.0/24 7579 -203.17.213.0/24 17734 -203.17.214.0/24 136518 -203.17.215.0/24 7637 -203.17.216.0/24 9555 -203.17.217.0/24 38809 -203.17.218.0/23 18154 -203.17.220.0/24 38809 -203.17.221.0/24 18154 -203.17.223.0/24 18154 -203.17.225.0/24 45570 -203.17.226.0/24 38424 -203.17.234.0/24 9627 -203.17.235.0/24 7474 -203.17.236.0/24 17632 -203.17.238.0/24 7474 -203.17.240.0/22 45168 -203.17.251.0/24 7545 -203.17.253.0/24 45240 -203.17.254.0/24 4739 -203.18.1.0/24 7575 -203.18.8.0/23 9543 -203.18.11.0/24 1221 -203.18.12.0/23 136132 -203.18.14.0/23 45333 -203.18.17.0/24 133480 -203.18.20.0/23 9461 -203.18.22.0/24 23669 -203.18.23.0/24 7600 -203.18.24.0/24 9443 -203.18.26.0/24 24222 -203.18.27.0/24 4739 -203.18.28.0/24 7545 -203.18.32.0/24 58980 -203.18.33.0/24 1221 -203.18.34.0/23 1221 -203.18.38.0/24 7543 -203.18.50.0/24 38564 -203.18.51.0/24 56166 -203.18.53.0/24 9443 -203.18.54.0/24 11274 -203.18.56.0/24 4826 -203.18.58.0/24 17477 -203.18.59.0/24 9303 -203.18.63.0/24 7575 -203.18.78.0/24 7647 -203.18.79.0/24 10143 -203.18.88.0/24 17477 -203.18.94.0/24 9268 -203.18.96.0/23 37978 -203.18.108.0/23 9650 -203.18.112.0/20 1221 -203.18.128.0/24 4739 -203.18.130.0/24 4739 -203.18.137.0/24 45765 -203.18.146.0/24 134984 -203.18.151.0/24 9266 -203.18.155.0/24 36351 -203.18.160.0/24 17477 -203.18.162.0/23 7545 -203.18.174.0/24 7474 -203.18.176.0/24 55157 -203.18.177.0/24 2687 -203.18.178.0/24 55157 -203.18.180.0/24 55157 -203.18.183.0/24 55157 -203.18.184.0/23 10203 -203.18.186.0/24 138499 -203.18.187.0/24 7474 -203.18.194.0/24 9667 -203.18.196.0/24 7474 -203.18.200.0/24 134096 -203.18.212.0/24 9820 -203.18.213.0/24 45167 -203.18.216.0/21 17763 -203.18.232.0/23 9443 -203.18.235.0/24 45570 -203.18.236.0/22 24017 -203.18.240.0/24 7720 -203.18.241.0/24 4826 -203.18.245.0/24 7578 -203.18.248.0/21 24315 -203.19.0.0/24 17477 -203.19.2.0/24 137562 -203.19.3.0/24 24222 -203.19.7.0/24 18371 -203.19.12.0/24 7604 -203.19.16.0/23 9518 -203.19.23.0/24 7545 -203.19.32.0/21 36678 -203.19.43.0/24 4739 -203.19.52.0/24 9266 -203.19.59.0/24 55803 -203.19.66.0/24 9268 -203.19.67.0/24 9449 -203.19.70.0/24 4802 -203.19.73.0/24 7545 -203.19.75.0/24 10143 -203.19.79.0/24 7604 -203.19.80.0/22 7575 -203.19.87.0/24 7575 -203.19.88.0/21 7545 -203.19.96.0/22 9823 -203.19.106.0/24 132029 -203.19.107.0/24 4739 -203.19.110.0/24 7575 -203.19.117.0/24 17477 -203.19.128.0/24 7545 -203.19.132.0/24 135425 -203.19.140.0/24 1221 -203.19.141.0/24 38809 -203.19.142.0/23 56307 -203.19.145.0/24 24233 -203.19.157.0/24 9738 -203.19.158.0/24 1221 -203.19.159.0/24 63850 -203.19.160.0/22 45434 -203.19.167.0/24 7474 -203.19.168.0/21 18380 -203.19.190.0/23 7496 -203.19.209.0/24 136518 -203.19.211.0/24 2764 -203.19.214.0/23 9797 -203.19.216.0/22 7575 -203.19.220.0/23 9266 -203.19.222.0/24 37931 -203.19.224.0/23 38809 -203.19.226.0/23 2764 -203.19.232.0/24 10218 -203.19.234.0/24 7474 -203.19.236.0/24 2764 -203.19.241.0/24 2764 -203.19.243.0/24 63850 -203.19.244.0/22 9797 -203.19.252.0/24 18371 -203.19.254.0/24 4739 -203.20.0.0/20 6603 -203.20.16.0/24 9461 -203.20.18.0/24 136013 -203.20.20.0/22 1221 -203.20.26.0/23 10223 -203.20.28.0/22 133612 -203.20.32.0/21 133612 -203.20.43.0/24 1221 -203.20.50.0/24 136518 -203.20.52.0/24 7175 -203.20.54.0/23 38012 -203.20.60.0/24 4846 -203.20.62.0/24 18111 -203.20.63.0/24 135553 -203.20.64.0/24 137273 -203.20.68.0/24 45577 -203.20.69.0/24 38583 -203.20.70.0/24 4826 -203.20.74.0/23 23992 -203.20.76.0/24 4739 -203.20.78.0/23 4826 -203.20.81.0/24 17477 -203.20.87.0/24 1221 -203.20.94.0/24 135880 -203.20.95.0/24 2764 -203.20.100.0/23 38809 -203.20.102.0/23 17907 -203.20.104.0/24 10113 -203.20.105.0/24 24546 -203.20.108.0/23 7545 -203.20.110.0/23 9266 -203.20.114.0/24 2764 -203.20.125.0/24 38195 -203.20.128.0/22 17477 -203.20.136.0/22 4809 -203.20.148.0/24 38858 -203.20.149.0/24 9443 -203.20.160.0/19 37998 -203.20.192.0/24 1221 -203.20.195.0/24 1221 -203.20.196.0/24 1221 -203.20.199.0/24 1221 -203.20.208.0/21 4778 -203.20.216.0/23 4778 -203.20.226.0/23 7600 -203.20.228.0/23 4739 -203.20.238.0/23 1221 -203.20.241.0/24 138466 -203.20.244.0/23 24436 -203.20.246.0/24 4739 -203.20.247.0/24 7600 -203.20.249.0/24 10203 -203.20.250.0/23 10203 -203.20.252.0/22 10203 -203.21.3.0/24 9328 -203.21.5.0/24 4739 -203.21.7.0/24 24448 -203.21.9.0/24 2764 -203.21.12.0/24 9650 -203.21.15.0/24 7545 -203.21.17.0/24 18037 -203.21.20.0/24 9543 -203.21.22.0/24 9266 -203.21.24.0/21 703 -203.21.32.0/24 9822 -203.21.37.0/24 7575 -203.21.40.0/24 133015 -203.21.42.0/23 56118 -203.21.47.0/24 10113 -203.21.49.0/24 1221 -203.21.50.0/23 1221 -203.21.52.0/22 1221 -203.21.56.0/23 1221 -203.21.58.0/24 1221 -203.21.63.0/24 1221 -203.21.65.0/24 17728 -203.21.67.0/24 23763 -203.21.69.0/24 4739 -203.21.70.0/24 4739 -203.21.76.0/23 38549 -203.21.79.0/24 2764 -203.21.83.0/24 7647 -203.21.86.0/24 9443 -203.21.88.0/23 4739 -203.21.90.0/24 4739 -203.21.91.0/24 132093 -203.21.94.0/24 4739 -203.21.95.0/24 2764 -203.21.105.0/24 4739 -203.21.106.0/24 4739 -203.21.108.0/22 133612 -203.21.112.0/21 133612 -203.21.121.0/24 7575 -203.21.125.0/24 45671 -203.21.128.0/23 7545 -203.21.130.0/23 10148 -203.21.134.0/24 58716 -203.21.140.0/22 135409 -203.21.150.0/23 137896 -203.21.153.0/24 17916 -203.21.154.0/24 9435 -203.21.160.0/24 138337 -203.21.182.0/23 1221 -203.21.186.0/23 1221 -203.21.188.0/24 1221 -203.21.192.0/22 9942 -203.21.196.0/22 1221 -203.21.200.0/22 135415 -203.21.207.0/24 10143 -203.22.0.0/20 9716 -203.22.16.0/23 9716 -203.22.20.0/24 9723 -203.22.21.0/24 4739 -203.22.22.0/24 10113 -203.22.23.0/24 4739 -203.22.27.0/24 4739 -203.22.30.0/24 139612 -203.22.32.0/23 2764 -203.22.34.0/24 2764 -203.22.43.0/24 2764 -203.22.44.0/23 2764 -203.22.64.0/24 7575 -203.22.65.0/24 4739 -203.22.67.0/24 7545 -203.22.70.0/23 9652 -203.22.72.0/23 17889 -203.22.75.0/24 4739 -203.22.77.0/24 18117 -203.22.78.0/24 18117 -203.22.80.0/23 9650 -203.22.83.0/24 1221 -203.22.86.0/24 7476 -203.22.96.0/24 7585 -203.22.100.0/22 9266 -203.22.107.0/24 137214 -203.22.118.0/24 10143 -203.22.124.0/22 9313 -203.22.128.0/24 58528 -203.22.129.0/24 1221 -203.22.132.0/24 17551 -203.22.164.0/23 17496 -203.22.168.0/24 17668 -203.22.169.0/24 9266 -203.22.171.0/24 4739 -203.22.186.0/24 9266 -203.22.188.0/24 4786 -203.22.193.0/24 136518 -203.22.195.0/24 4826 -203.22.196.0/24 7647 -203.22.197.0/24 9822 -203.22.200.0/23 10203 -203.22.202.0/24 7647 -203.22.203.0/24 137900 -203.22.208.0/22 136522 -203.22.214.0/24 7575 -203.22.215.0/24 1221 -203.22.216.0/24 4739 -203.22.223.0/24 209242 -203.22.224.0/23 7575 -203.22.234.0/23 132576 -203.22.236.0/22 18111 -203.22.254.0/24 9443 -203.22.255.0/24 4764 -203.23.7.0/24 4739 -203.23.9.0/24 9543 -203.23.10.0/24 4739 -203.23.11.0/24 9648 -203.23.16.0/23 9648 -203.23.18.0/24 9555 -203.23.20.0/23 1221 -203.23.22.0/24 4739 -203.23.23.0/24 1221 -203.23.24.0/22 4826 -203.23.30.0/24 4739 -203.23.31.0/24 55506 -203.23.36.0/24 2764 -203.23.38.0/24 58528 -203.23.39.0/24 11274 -203.23.41.0/24 1221 -203.23.44.0/24 9547 -203.23.50.0/24 9266 -203.23.54.0/24 10143 -203.23.56.0/24 58528 -203.23.57.0/24 7545 -203.23.59.0/24 9652 -203.23.60.0/24 24069 -203.23.67.0/24 9942 -203.23.68.0/23 133898 -203.23.71.0/24 9266 -203.23.76.0/24 134688 -203.23.78.0/23 10223 -203.23.82.0/24 9443 -203.23.86.0/24 1221 -203.23.87.0/24 23857 -203.23.90.0/24 17668 -203.23.96.0/24 1221 -203.23.97.0/24 38809 -203.23.101.0/24 2764 -203.23.102.0/24 2764 -203.23.104.0/24 209242 -203.23.105.0/24 137864 -203.23.106.0/24 209242 -203.23.109.0/24 59262 -203.23.111.0/24 135894 -203.23.116.0/24 9443 -203.23.118.0/24 9268 -203.23.119.0/24 7575 -203.23.120.0/23 9544 -203.23.127.0/24 9266 -203.23.128.0/24 133752 -203.23.129.0/24 18000 -203.23.131.0/24 4764 -203.23.136.0/24 56132 -203.23.138.0/24 4739 -203.23.139.0/24 7545 -203.23.142.0/24 9749 -203.23.152.0/21 9648 -203.23.168.0/24 9443 -203.23.173.0/24 4764 -203.23.175.0/24 7545 -203.23.176.0/23 17914 -203.23.178.0/24 10113 -203.23.183.0/24 9443 -203.23.190.0/24 4739 -203.23.191.0/24 7545 -203.23.194.0/24 9268 -203.23.196.0/24 10143 -203.23.208.0/20 7604 -203.23.225.0/24 9543 -203.23.236.0/22 18390 -203.23.245.0/24 7545 -203.23.246.0/24 4739 -203.23.250.0/24 10145 -203.23.253.0/24 38858 -203.24.1.0/24 9426 -203.24.2.0/23 9426 -203.24.4.0/24 45228 -203.24.5.0/24 9426 -203.24.6.0/23 9426 -203.24.9.0/24 7575 -203.24.11.0/24 24233 -203.24.16.0/24 134217 -203.24.17.0/24 9667 -203.24.19.0/24 18349 -203.24.22.0/24 9268 -203.24.26.0/24 17473 -203.24.32.0/23 1221 -203.24.35.0/24 7545 -203.24.36.0/24 1221 -203.24.40.0/24 17477 -203.24.49.0/24 7545 -203.24.50.0/23 55687 -203.24.52.0/23 9544 -203.24.54.0/24 7604 -203.24.61.0/24 18111 -203.24.62.0/24 2764 -203.24.63.0/24 23727 -203.24.66.0/24 7545 -203.24.69.0/24 45213 -203.24.70.0/24 24479 -203.24.71.0/24 7474 -203.24.72.0/24 1221 -203.24.73.0/24 7545 -203.24.75.0/24 9266 -203.24.76.0/23 45315 -203.24.87.0/24 24222 -203.24.93.0/24 56035 -203.24.97.0/24 24437 -203.24.100.0/23 10113 -203.24.104.0/22 135409 -203.24.108.0/24 209242 -203.24.110.0/24 4739 -203.24.113.0/24 131480 -203.24.117.0/24 58713 -203.24.120.0/24 4764 -203.24.121.0/24 10143 -203.24.125.0/24 9443 -203.24.126.0/24 1221 -203.24.137.0/24 37993 -203.24.148.0/23 58980 -203.24.163.0/24 1221 -203.24.164.0/24 7575 -203.24.166.0/24 23863 -203.24.170.0/24 1221 -203.24.171.0/24 38858 -203.24.174.0/23 9266 -203.24.181.0/24 7545 -203.24.182.0/24 38195 -203.24.189.0/24 4739 -203.24.190.0/24 7545 -203.24.194.0/24 1221 -203.24.196.0/24 2764 -203.24.201.0/24 7545 -203.24.206.0/24 55762 -203.24.207.0/24 4739 -203.24.208.0/24 7545 -203.24.209.0/24 10143 -203.24.210.0/24 1221 -203.24.211.0/24 10143 -203.24.238.0/24 1221 -203.24.240.0/24 10143 -203.24.245.0/24 4739 -203.24.251.0/24 9443 -203.24.253.0/24 9443 -203.25.0.0/20 9650 -203.25.17.0/24 7545 -203.25.22.0/24 4739 -203.25.26.0/23 7604 -203.25.32.0/22 17763 -203.25.40.0/22 55506 -203.25.48.0/24 4809 -203.25.50.0/24 36678 -203.25.53.0/24 36678 -203.25.54.0/24 36678 -203.25.67.0/24 24436 -203.25.68.0/22 9266 -203.25.75.0/24 7575 -203.25.79.0/24 2764 -203.25.82.0/24 136423 -203.25.83.0/24 9543 -203.25.84.0/23 38458 -203.25.97.0/24 7474 -203.25.98.0/24 1221 -203.25.102.0/24 24093 -203.25.109.0/24 36351 -203.25.111.0/24 7722 -203.25.118.0/24 9449 -203.25.120.0/24 9738 -203.25.123.0/24 9266 -203.25.124.0/24 9443 -203.25.126.0/23 9797 -203.25.128.0/24 7474 -203.25.132.0/24 20473 -203.25.134.0/24 7600 -203.25.141.0/24 9650 -203.25.142.0/24 4739 -203.25.144.0/24 4739 -203.25.149.0/24 7545 -203.25.150.0/24 45158 -203.25.151.0/24 7545 -203.25.156.0/23 1221 -203.25.158.0/24 9266 -203.25.159.0/24 8100 -203.25.163.0/24 38809 -203.25.167.0/24 1221 -203.25.170.0/23 55803 -203.25.172.0/24 7545 -203.25.173.0/24 55532 -203.25.176.0/24 136518 -203.25.185.0/24 7600 -203.25.193.0/24 18165 -203.25.195.0/24 38858 -203.25.204.0/24 4739 -203.25.208.0/20 4134 -203.25.224.0/23 9443 -203.25.226.0/24 4739 -203.25.227.0/24 45922 -203.25.230.0/23 132619 -203.25.234.0/24 7474 -203.25.238.0/24 55803 -203.25.239.0/24 4739 -203.25.240.0/24 11274 -203.25.241.0/24 7699 -203.25.245.0/24 1221 -203.25.247.0/24 4739 -203.25.254.0/23 38809 -203.26.2.0/24 24436 -203.26.6.0/24 24541 -203.26.8.0/22 7543 -203.26.13.0/24 38858 -203.26.14.0/24 4739 -203.26.16.0/20 7545 -203.26.32.0/24 4739 -203.26.37.0/24 7575 -203.26.38.0/24 38858 -203.26.40.0/24 9266 -203.26.41.0/24 38719 -203.26.51.0/24 23854 -203.26.52.0/24 7545 -203.26.69.0/24 24516 -203.26.70.0/24 4739 -203.26.72.0/24 131088 -203.26.73.0/24 38809 -203.26.75.0/24 38809 -203.26.77.0/24 18212 -203.26.78.0/24 9930 -203.26.79.0/24 9745 -203.26.81.0/24 9443 -203.26.82.0/23 45186 -203.26.86.0/24 7545 -203.26.87.0/24 2764 -203.26.88.0/24 31863 -203.26.91.0/24 24502 -203.26.94.0/23 4739 -203.26.96.0/24 4739 -203.26.98.0/24 9461 -203.26.100.0/24 10203 -203.26.106.0/24 9543 -203.26.107.0/24 4826 -203.26.112.0/24 4826 -203.26.113.0/24 23727 -203.26.118.0/24 10148 -203.26.120.0/22 4739 -203.26.124.0/23 58414 -203.26.136.0/24 4739 -203.26.138.0/23 9797 -203.26.142.0/24 55525 -203.26.145.0/24 4739 -203.26.146.0/24 4739 -203.26.147.0/24 38809 -203.26.153.0/24 9822 -203.26.156.0/24 9822 -203.26.171.0/24 9266 -203.26.177.0/24 23854 -203.26.178.0/24 1221 -203.26.184.0/24 1221 -203.26.188.0/24 137273 -203.26.190.0/24 23706 -203.26.192.0/22 7175 -203.26.196.0/23 45671 -203.26.199.0/24 45671 -203.26.200.0/23 135350 -203.26.206.0/24 4739 -203.26.208.0/24 4739 -203.26.211.0/24 40395 -203.26.219.0/24 24233 -203.26.225.0/24 9745 -203.26.226.0/23 9266 -203.26.233.0/24 10113 -203.26.235.0/24 2764 -203.26.236.0/24 9443 -203.26.242.0/24 17535 -203.26.245.0/24 1221 -203.26.248.0/21 23965 -203.27.3.0/24 4739 -203.27.5.0/24 4826 -203.27.6.0/23 16625 -203.27.8.0/24 2764 -203.27.11.0/24 135893 -203.27.18.0/24 9384 -203.27.21.0/24 55922 -203.27.24.0/23 132581 -203.27.26.0/24 36351 -203.27.27.0/24 2764 -203.27.30.0/24 2764 -203.27.31.0/24 1221 -203.27.35.0/24 7545 -203.27.38.0/24 58723 -203.27.39.0/24 10223 -203.27.42.0/23 136154 -203.27.44.0/24 23727 -203.27.47.0/24 7637 -203.27.52.0/24 4826 -203.27.56.0/24 4826 -203.27.58.0/24 4764 -203.27.60.0/24 45780 -203.27.62.0/24 38572 -203.27.63.0/24 7575 -203.27.67.0/24 9627 -203.27.68.0/24 38333 -203.27.69.0/24 7543 -203.27.70.0/24 1221 -203.27.72.0/24 1221 -203.27.74.0/23 9449 -203.27.77.0/24 136518 -203.27.78.0/24 10113 -203.27.79.0/24 9443 -203.27.82.0/23 7474 -203.27.87.0/24 56113 -203.27.90.0/23 9544 -203.27.92.0/24 133758 -203.27.93.0/24 7575 -203.27.96.0/23 135409 -203.27.98.0/24 17807 -203.27.99.0/24 9822 -203.27.101.0/24 4764 -203.27.104.0/23 58734 -203.27.106.0/23 132018 -203.27.111.0/24 4739 -203.27.114.0/23 7545 -203.27.116.0/24 24129 -203.27.118.0/24 1221 -203.27.124.0/24 10113 -203.27.127.0/24 55467 -203.27.128.0/18 1221 -203.27.193.0/24 1221 -203.27.199.0/24 134982 -203.27.205.0/24 9443 -203.27.216.0/24 45671 -203.27.220.0/24 7575 -203.27.221.0/24 24433 -203.27.223.0/24 10143 -203.27.225.0/24 4739 -203.27.226.0/23 7496 -203.27.228.0/24 7545 -203.27.231.0/24 17551 -203.27.235.0/24 17436 -203.27.237.0/24 1221 -203.27.238.0/23 135399 -203.27.244.0/23 133853 -203.27.246.0/24 133853 -203.27.247.0/24 1221 -203.27.248.0/24 58868 -203.27.253.0/24 1221 -203.28.8.0/23 209242 -203.28.14.0/24 23886 -203.28.17.0/24 4764 -203.28.18.0/24 23028 -203.28.21.0/24 2764 -203.28.22.0/24 58713 -203.28.27.0/24 2764 -203.28.28.0/24 131998 -203.28.31.0/24 10223 -203.28.36.0/24 136518 -203.28.37.0/24 4826 -203.28.38.0/24 18390 -203.28.46.0/23 4739 -203.28.48.0/23 38719 -203.28.50.0/24 38719 -203.28.51.0/24 45671 -203.28.52.0/24 58696 -203.28.55.0/24 4739 -203.28.58.0/24 135104 -203.28.62.0/24 133536 -203.28.63.0/24 38809 -203.28.64.0/21 17763 -203.28.75.0/24 4739 -203.28.79.0/24 58611 -203.28.81.0/24 7474 -203.28.82.0/24 7474 -203.28.85.0/24 17477 -203.28.90.0/24 38880 -203.28.106.0/24 4637 -203.28.113.0/24 4846 -203.28.115.0/24 9822 -203.28.116.0/23 7474 -203.28.120.0/24 9266 -203.28.121.0/24 9797 -203.28.122.0/24 4739 -203.28.124.0/23 17559 -203.28.126.0/24 17559 -203.28.128.0/23 56134 -203.28.142.0/24 17535 -203.28.143.0/24 135553 -203.28.150.0/24 7575 -203.28.155.0/24 9443 -203.28.156.0/24 4826 -203.28.159.0/24 4739 -203.28.160.0/24 17498 -203.28.162.0/24 2764 -203.28.166.0/24 7474 -203.28.167.0/24 1221 -203.28.168.0/24 4739 -203.28.171.0/24 10145 -203.28.172.0/24 4739 -203.28.173.0/24 2764 -203.28.174.0/24 4739 -203.28.176.0/24 4739 -203.28.180.0/24 38220 -203.28.181.0/24 9449 -203.28.184.0/24 9893 -203.28.188.0/23 9650 -203.28.190.0/24 1221 -203.28.191.0/24 133930 -203.28.193.0/24 7545 -203.28.195.0/24 17728 -203.28.200.0/24 2764 -203.28.202.0/23 138390 -203.28.205.0/24 10143 -203.28.213.0/24 9449 -203.28.214.0/23 4826 -203.28.217.0/24 2764 -203.28.219.0/24 1221 -203.28.222.0/23 137054 -203.28.224.0/24 10143 -203.28.228.0/24 1221 -203.28.234.0/24 1221 -203.28.238.0/24 45671 -203.28.240.0/22 10148 -203.28.244.0/24 10148 -203.28.245.0/24 135247 -203.28.246.0/24 398088 -203.28.247.0/24 135069 -203.28.248.0/23 7545 -203.28.250.0/23 10148 -203.29.0.0/24 9661 -203.29.5.0/24 17987 -203.29.10.0/24 45922 -203.29.11.0/24 55762 -203.29.16.0/24 10113 -203.29.18.0/23 10113 -203.29.21.0/24 9266 -203.29.26.0/23 45289 -203.29.36.0/24 17559 -203.29.38.0/24 9648 -203.29.49.0/24 136518 -203.29.53.0/24 209242 -203.29.58.0/24 4739 -203.29.62.0/24 7545 -203.29.65.0/24 18390 -203.29.67.0/24 38858 -203.29.68.0/24 1221 -203.29.70.0/24 7474 -203.29.75.0/24 6062 -203.29.76.0/24 4739 -203.29.77.0/24 7545 -203.29.78.0/24 7545 -203.29.84.0/24 9268 -203.29.86.0/24 7545 -203.29.87.0/24 4739 -203.29.88.0/24 7720 -203.29.91.0/24 9384 -203.29.94.0/24 1221 -203.29.96.0/24 7545 -203.29.97.0/24 45447 -203.29.101.0/24 58729 -203.29.104.0/21 7575 -203.29.114.0/23 18385 -203.29.119.0/24 9443 -203.29.124.0/23 18390 -203.29.127.0/24 9266 -203.29.128.0/19 7545 -203.29.160.0/20 1221 -203.29.180.0/24 9652 -203.29.181.0/24 38195 -203.29.191.0/24 38611 -203.29.214.0/23 7575 -203.29.221.0/24 7545 -203.29.222.0/24 23875 -203.29.224.0/23 45671 -203.29.232.0/24 7474 -203.29.237.0/24 7703 -203.29.240.0/22 133159 -203.29.244.0/22 7575 -203.29.253.0/24 38195 -203.30.0.0/20 136994 -203.30.18.0/24 55467 -203.30.19.0/24 7604 -203.30.24.0/24 1221 -203.30.33.0/24 45481 -203.30.34.0/24 7604 -203.30.35.0/24 10143 -203.30.38.0/23 23855 -203.30.44.0/22 24541 -203.30.50.0/24 4739 -203.30.56.0/24 7703 -203.30.57.0/24 56178 -203.30.62.0/24 2764 -203.30.64.0/24 1221 -203.30.68.0/24 17551 -203.30.72.0/24 17559 -203.30.75.0/24 4739 -203.30.78.0/24 9266 -203.30.79.0/24 23863 -203.30.82.0/23 133930 -203.30.88.0/24 9268 -203.30.90.0/23 38170 -203.30.92.0/22 1221 -203.30.96.0/24 9543 -203.30.97.0/24 7637 -203.30.98.0/23 18111 -203.30.100.0/22 24316 -203.30.104.0/23 2764 -203.30.109.0/24 1221 -203.30.131.0/24 17559 -203.30.132.0/23 9449 -203.30.135.0/24 135880 -203.30.136.0/24 38302 -203.30.137.0/24 9313 -203.30.138.0/24 38195 -203.30.140.0/24 4647 -203.30.145.0/24 7545 -203.30.155.0/24 4739 -203.30.157.0/24 7545 -203.30.164.0/23 9797 -203.30.171.0/24 703 -203.30.174.0/24 38586 -203.30.176.0/24 1221 -203.30.177.0/24 7545 -203.30.180.0/24 18110 -203.30.184.0/23 2764 -203.30.193.0/24 38835 -203.30.195.0/24 4739 -203.30.197.0/24 63850 -203.30.199.0/24 9797 -203.30.200.0/23 1221 -203.30.202.0/23 9449 -203.30.205.0/24 4802 -203.30.206.0/23 9543 -203.30.213.0/24 17907 -203.30.216.0/24 45780 -203.30.228.0/23 10143 -203.30.231.0/24 9543 -203.30.234.0/24 135880 -203.30.236.0/23 55666 -203.30.243.0/24 158 -203.30.244.0/24 1221 -203.30.245.0/24 55580 -203.30.252.0/24 24446 -203.30.254.0/23 45325 -203.31.4.0/23 1221 -203.31.7.0/24 4764 -203.31.8.0/23 10215 -203.31.10.0/23 10080 -203.31.18.0/23 1221 -203.31.23.0/24 7545 -203.31.32.0/24 38574 -203.31.33.0/24 38603 -203.31.34.0/23 38835 -203.31.40.0/24 4764 -203.31.41.0/24 7575 -203.31.42.0/24 2764 -203.31.44.0/24 2764 -203.31.48.0/24 18111 -203.31.52.0/24 2764 -203.31.56.0/24 7594 -203.31.57.0/24 10083 -203.31.58.0/24 7545 -203.31.62.0/23 1221 -203.31.64.0/24 9822 -203.31.70.0/24 9822 -203.31.71.0/24 9449 -203.31.75.0/24 23854 -203.31.76.0/24 4058 -203.31.77.0/24 45510 -203.31.79.0/24 133175 -203.31.81.0/24 7545 -203.31.82.0/24 9723 -203.31.84.0/24 7545 -203.31.90.0/24 9893 -203.31.93.0/24 24130 -203.31.95.0/24 45838 -203.31.96.0/24 4764 -203.31.100.0/24 4739 -203.31.101.0/24 10083 -203.31.103.0/24 4739 -203.31.110.0/23 9913 -203.31.114.0/23 7490 -203.31.116.0/22 9797 -203.31.125.0/24 2764 -203.31.126.0/24 4739 -203.31.164.0/23 38498 -203.31.170.0/24 7474 -203.31.183.0/24 23921 -203.31.184.0/24 2764 -203.31.197.0/24 9443 -203.31.198.0/23 7496 -203.31.202.0/23 18390 -203.31.205.0/24 4739 -203.31.214.0/24 9266 -203.31.216.0/24 38220 -203.31.218.0/24 17477 -203.31.219.0/24 4739 -203.31.234.0/24 134078 -203.31.239.0/24 7545 -203.31.240.0/24 38809 -203.31.241.0/24 4739 -203.31.242.0/23 9449 -203.31.246.0/24 2764 -203.31.252.0/24 10080 -203.31.255.0/24 4739 -203.32.4.0/23 23994 -203.32.6.0/24 9443 -203.32.8.0/21 7496 -203.32.16.0/22 1221 -203.32.21.0/24 9443 -203.32.22.0/23 9443 -203.32.24.0/24 55762 -203.32.25.0/24 9443 -203.32.26.0/24 9443 -203.32.27.0/24 138657 -203.32.28.0/22 9443 -203.32.32.0/24 9443 -203.32.33.0/24 9652 -203.32.34.0/23 9443 -203.32.36.0/23 9443 -203.32.38.0/24 9443 -203.32.39.0/24 55762 -203.32.40.0/23 9443 -203.32.44.0/23 9266 -203.32.47.0/24 9266 -203.32.48.0/23 58543 -203.32.55.0/24 17728 -203.32.58.0/24 4739 -203.32.61.0/24 45577 -203.32.64.0/23 2764 -203.32.66.0/24 9822 -203.32.68.0/23 58543 -203.32.71.0/24 7545 -203.32.77.0/24 45654 -203.32.78.0/23 7545 -203.32.82.0/24 17829 -203.32.84.0/23 58543 -203.32.93.0/24 9461 -203.32.94.0/24 2764 -203.32.103.0/24 9745 -203.32.104.0/24 9942 -203.32.107.0/24 23719 -203.32.110.0/23 9443 -203.32.119.0/24 138537 -203.32.123.0/24 7575 -203.32.124.0/22 7604 -203.32.132.0/24 4764 -203.32.136.0/24 2764 -203.32.137.0/24 4739 -203.32.142.0/24 134096 -203.32.147.0/24 38809 -203.32.150.0/23 38809 -203.32.153.0/24 45924 -203.32.159.0/24 9746 -203.32.160.0/20 9797 -203.32.176.0/24 17907 -203.32.177.0/24 7545 -203.32.178.0/24 137529 -203.32.180.0/24 1221 -203.32.183.0/24 4739 -203.32.184.0/24 55871 -203.32.185.0/24 17755 -203.32.186.0/23 58543 -203.32.190.0/23 9266 -203.32.201.0/24 2764 -203.32.204.0/23 58543 -203.32.207.0/24 7545 -203.32.208.0/22 9449 -203.32.218.0/24 38195 -203.32.221.0/24 38219 -203.32.223.0/24 1221 -203.32.224.0/20 133885 -203.32.245.0/24 133885 -203.32.246.0/23 133885 -203.32.248.0/24 133885 -203.32.250.0/24 133885 -203.33.6.0/24 2764 -203.33.8.0/22 36678 -203.33.15.0/24 36678 -203.33.18.0/23 4739 -203.33.20.0/24 7545 -203.33.22.0/24 134808 -203.33.28.0/24 9266 -203.33.30.0/24 4739 -203.33.42.0/24 1221 -203.33.46.0/24 4739 -203.33.55.0/24 38195 -203.33.58.0/23 9266 -203.33.60.0/23 9268 -203.33.65.0/24 7474 -203.33.69.0/24 9313 -203.33.70.0/24 45448 -203.33.71.0/24 10083 -203.33.77.0/24 7474 -203.33.85.0/24 7545 -203.33.86.0/23 10113 -203.33.89.0/24 10113 -203.33.90.0/23 10113 -203.33.92.0/23 10113 -203.33.94.0/24 10113 -203.33.96.0/22 18385 -203.33.102.0/24 45852 -203.33.107.0/24 9723 -203.33.108.0/23 9266 -203.33.110.0/24 2764 -203.33.111.0/24 134181 -203.33.112.0/24 9543 -203.33.115.0/24 10143 -203.33.117.0/24 10143 -203.33.118.0/24 10143 -203.33.121.0/24 38220 -203.33.126.0/24 9443 -203.33.128.0/24 45158 -203.33.133.0/24 24510 -203.33.136.0/22 58929 -203.33.140.0/23 9880 -203.33.143.0/24 9443 -203.33.150.0/24 9797 -203.33.152.0/24 6130 -203.33.153.0/24 53889 -203.33.154.0/24 4826 -203.33.158.0/23 58543 -203.33.160.0/21 7545 -203.33.168.0/24 2764 -203.33.171.0/24 18111 -203.33.178.0/24 10143 -203.33.180.0/23 45768 -203.33.189.0/24 9744 -203.33.190.0/24 7474 -203.33.192.0/24 7474 -203.33.193.0/24 1221 -203.33.194.0/24 7474 -203.33.195.0/24 138503 -203.33.196.0/24 38291 -203.33.198.0/23 24178 -203.33.202.0/23 58519 -203.33.205.0/24 9650 -203.33.206.0/23 58519 -203.33.214.0/23 58519 -203.33.220.0/23 4739 -203.33.223.0/24 4826 -203.33.224.0/23 58519 -203.33.228.0/23 9652 -203.33.230.0/24 136518 -203.33.231.0/24 11274 -203.33.236.0/24 38611 -203.33.240.0/24 45581 -203.33.241.0/24 4739 -203.33.243.0/24 4134 -203.33.246.0/24 58534 -203.33.247.0/24 9822 -203.33.249.0/24 24541 -203.33.251.0/24 1221 -203.33.252.0/23 7720 -203.33.254.0/24 17829 -203.33.255.0/24 4739 -203.34.0.0/24 7545 -203.34.2.0/23 7545 -203.34.4.0/24 4134 -203.34.6.0/24 4739 -203.34.8.0/23 17829 -203.34.11.0/24 10080 -203.34.16.0/23 9822 -203.34.21.0/24 4134 -203.34.22.0/24 7545 -203.34.23.0/24 4826 -203.34.24.0/23 9544 -203.34.27.0/24 4134 -203.34.29.0/24 1221 -203.34.30.0/23 7604 -203.34.34.0/23 703 -203.34.37.0/24 38818 -203.34.39.0/24 4134 -203.34.40.0/24 7474 -203.34.41.0/24 1221 -203.34.43.0/24 7496 -203.34.44.0/24 1221 -203.34.46.0/23 7545 -203.34.48.0/23 58519 -203.34.51.0/24 7474 -203.34.52.0/24 2764 -203.34.54.0/24 4134 -203.34.56.0/23 58519 -203.34.58.0/24 7545 -203.34.60.0/24 17434 -203.34.63.0/24 9893 -203.34.67.0/24 4134 -203.34.69.0/24 4134 -203.34.72.0/24 1221 -203.34.76.0/24 4134 -203.34.78.0/23 1221 -203.34.83.0/24 24541 -203.34.85.0/24 4739 -203.34.87.0/24 9745 -203.34.92.0/24 58519 -203.34.97.0/24 17477 -203.34.100.0/24 135358 -203.34.104.0/24 24130 -203.34.106.0/24 4134 -203.34.109.0/24 63850 -203.34.113.0/24 4134 -203.34.114.0/24 1221 -203.34.115.0/24 4739 -203.34.116.0/24 24222 -203.34.117.0/24 38314 -203.34.118.0/23 38775 -203.34.122.0/23 17829 -203.34.131.0/24 1221 -203.34.132.0/24 10143 -203.34.135.0/24 10143 -203.34.137.0/24 17473 -203.34.140.0/24 18111 -203.34.141.0/24 7545 -203.34.144.0/24 45551 -203.34.145.0/24 2764 -203.34.147.0/24 4134 -203.34.148.0/24 38858 -203.34.150.0/24 4134 -203.34.152.0/23 58519 -203.34.154.0/24 135553 -203.34.155.0/24 7545 -203.34.156.0/23 7545 -203.34.158.0/24 7545 -203.34.160.0/24 2764 -203.34.161.0/24 4134 -203.34.162.0/24 4134 -203.34.164.0/23 7545 -203.34.167.0/24 9266 -203.34.168.0/23 17734 -203.34.170.0/24 17734 -203.34.171.0/24 38333 -203.34.172.0/23 38333 -203.34.174.0/24 38333 -203.34.175.0/24 17734 -203.34.177.0/24 2764 -203.34.181.0/24 7545 -203.34.186.0/24 4802 -203.34.187.0/24 4134 -203.34.190.0/24 17728 -203.34.200.0/24 45411 -203.34.212.0/24 4739 -203.34.214.0/23 132815 -203.34.216.0/24 7545 -203.34.218.0/24 9543 -203.34.220.0/23 9313 -203.34.223.0/24 1221 -203.34.228.0/23 1221 -203.34.232.0/24 4134 -203.34.235.0/24 20473 -203.34.239.0/24 9543 -203.34.240.0/24 4134 -203.34.242.0/24 4134 -203.34.244.0/24 4739 -203.34.245.0/24 4134 -203.34.246.0/24 9414 -203.34.248.0/23 23871 -203.34.251.0/24 4134 -203.34.254.0/23 56178 -203.35.0.0/16 1221 -203.36.0.0/14 1221 -203.40.0.0/13 1221 -203.48.0.0/14 1221 -203.52.0.0/15 1221 -203.54.0.0/16 1221 -203.55.1.0/24 9797 -203.55.2.0/23 58519 -203.55.4.0/24 58519 -203.55.9.0/24 2764 -203.55.10.0/24 58519 -203.55.13.0/24 58519 -203.55.14.0/23 1221 -203.55.16.0/24 10113 -203.55.18.0/24 10083 -203.55.21.0/24 55819 -203.55.22.0/24 58519 -203.55.25.0/24 55752 -203.55.27.0/24 132740 -203.55.28.0/23 23769 -203.55.31.0/24 10113 -203.55.32.0/24 7545 -203.55.35.0/24 55567 -203.55.36.0/24 55567 -203.55.38.0/24 9652 -203.55.39.0/24 46562 -203.55.40.0/24 4739 -203.55.42.0/24 4739 -203.55.44.0/24 4739 -203.55.46.0/23 4739 -203.55.54.0/23 10148 -203.55.60.0/24 7718 -203.55.62.0/23 4739 -203.55.65.0/24 4826 -203.55.67.0/24 132826 -203.55.80.0/24 55762 -203.55.82.0/24 7545 -203.55.83.0/24 2764 -203.55.89.0/24 63919 -203.55.106.0/24 4739 -203.55.108.0/24 56287 -203.55.112.0/24 9421 -203.55.114.0/24 4739 -203.55.115.0/24 136044 -203.55.116.0/23 58519 -203.55.120.0/23 18111 -203.55.124.0/24 4739 -203.55.128.0/23 133775 -203.55.130.0/24 4739 -203.55.131.0/24 23669 -203.55.132.0/23 7722 -203.55.134.0/23 23727 -203.55.137.0/24 18111 -203.55.138.0/24 55819 -203.55.140.0/23 7545 -203.55.142.0/23 24446 -203.55.155.0/24 9648 -203.55.157.0/24 4739 -203.55.158.0/24 9652 -203.55.160.0/24 45830 -203.55.164.0/23 9449 -203.55.166.0/24 24130 -203.55.167.0/24 1221 -203.55.171.0/24 4826 -203.55.172.0/24 4826 -203.55.173.0/24 38594 -203.55.174.0/23 9268 -203.55.179.0/24 1221 -203.55.180.0/24 1221 -203.55.181.0/24 38582 -203.55.182.0/23 38232 -203.55.184.0/22 1221 -203.55.188.0/24 38611 -203.55.191.0/24 7545 -203.55.194.0/23 9266 -203.55.197.0/24 45824 -203.55.198.0/24 7604 -203.55.199.0/24 7545 -203.55.202.0/24 137400 -203.55.203.0/24 4739 -203.55.208.0/24 38438 -203.55.210.0/23 38438 -203.55.214.0/23 7701 -203.55.225.0/24 1221 -203.55.228.0/23 4739 -203.55.230.0/23 4802 -203.55.237.0/24 7703 -203.55.240.0/21 703 -203.55.248.0/23 4739 -203.55.250.0/24 45931 -203.55.254.0/24 9652 -203.56.0.0/24 7545 -203.56.2.0/24 4826 -203.56.3.0/24 45527 -203.56.4.0/24 58519 -203.56.7.0/24 9723 -203.56.13.0/24 24542 -203.56.17.0/24 4739 -203.56.22.0/24 17477 -203.56.23.0/24 38595 -203.56.24.0/24 58519 -203.56.26.0/24 9797 -203.56.29.0/24 7545 -203.56.30.0/24 4802 -203.56.31.0/24 4739 -203.56.34.0/24 4826 -203.56.36.0/24 1221 -203.56.37.0/24 7701 -203.56.38.0/24 58519 -203.56.39.0/24 45186 -203.56.40.0/24 58519 -203.56.42.0/24 1221 -203.56.44.0/24 8283 -203.56.45.0/24 45665 -203.56.46.0/24 58519 -203.56.48.0/23 36678 -203.56.56.0/22 38269 -203.56.63.0/24 4802 -203.56.68.0/23 58519 -203.56.70.0/23 7545 -203.56.80.0/24 45158 -203.56.81.0/24 60725 -203.56.82.0/23 58519 -203.56.84.0/23 58519 -203.56.88.0/23 9449 -203.56.90.0/23 59241 -203.56.92.0/24 17463 -203.56.93.0/24 17766 -203.56.94.0/24 1221 -203.56.95.0/24 58519 -203.56.97.0/24 7545 -203.56.99.0/24 1221 -203.56.102.0/24 4826 -203.56.118.0/24 9650 -203.56.119.0/24 17463 -203.56.122.0/23 4739 -203.56.125.0/24 4739 -203.56.126.0/23 133085 -203.56.128.0/19 136994 -203.56.162.0/23 38220 -203.56.165.0/24 4826 -203.56.170.0/24 4739 -203.56.176.0/24 45962 -203.56.177.0/24 4739 -203.56.181.0/24 17473 -203.56.182.0/24 9650 -203.56.186.0/24 18111 -203.56.188.0/22 38220 -203.56.193.0/24 7545 -203.56.195.0/24 45158 -203.56.199.0/24 9443 -203.56.204.0/22 7545 -203.56.210.0/24 58519 -203.56.213.0/24 1221 -203.56.214.0/24 58519 -203.56.216.0/24 58519 -203.56.224.0/24 4739 -203.56.226.0/24 4764 -203.56.227.0/24 58519 -203.56.228.0/24 58519 -203.56.232.0/24 58519 -203.56.233.0/24 18255 -203.56.240.0/24 58519 -203.56.241.0/24 38596 -203.56.244.0/22 18390 -203.56.250.0/24 45671 -203.56.252.0/24 58519 -203.56.253.0/24 38591 -203.56.254.0/24 58519 -203.56.255.0/24 7703 -203.57.4.0/24 38049 -203.57.5.0/24 58519 -203.57.6.0/24 58519 -203.57.8.0/24 45692 -203.57.11.0/24 4739 -203.57.12.0/23 58519 -203.57.15.0/24 38611 -203.57.23.0/24 9913 -203.57.24.0/23 131739 -203.57.27.0/24 1221 -203.57.28.0/24 58519 -203.57.29.0/24 4739 -203.57.36.0/24 10145 -203.57.38.0/24 1221 -203.57.39.0/24 58519 -203.57.44.0/23 38220 -203.57.46.0/24 58519 -203.57.48.0/23 18390 -203.57.56.0/23 9443 -203.57.58.0/24 58519 -203.57.62.0/24 1221 -203.57.66.0/24 58543 -203.57.69.0/24 58543 -203.57.70.0/23 58519 -203.57.73.0/24 58543 -203.57.74.0/23 36351 -203.57.78.0/23 10083 -203.57.84.0/24 136142 -203.57.88.0/24 4739 -203.57.90.0/24 58543 -203.57.91.0/24 17559 -203.57.101.0/24 58519 -203.57.109.0/24 58519 -203.57.120.0/24 7545 -203.57.123.0/24 58519 -203.57.124.0/23 9443 -203.57.128.0/20 17635 -203.57.144.0/24 10143 -203.57.145.0/24 9834 -203.57.147.0/24 24436 -203.57.152.0/22 23646 -203.57.156.0/24 9268 -203.57.157.0/24 58519 -203.57.159.0/24 7722 -203.57.160.0/19 7575 -203.57.192.0/23 1221 -203.57.200.0/24 58519 -203.57.202.0/24 58519 -203.57.203.0/24 55561 -203.57.204.0/24 45427 -203.57.206.0/24 58519 -203.57.207.0/24 55422 -203.57.208.0/21 7545 -203.57.219.0/24 1221 -203.57.222.0/24 58519 -203.57.223.0/24 7474 -203.57.224.0/20 58519 -203.57.240.0/23 10235 -203.57.246.0/23 58519 -203.57.249.0/24 58519 -203.57.253.0/24 58543 -203.57.254.0/23 58519 -203.58.0.0/19 7545 -203.58.32.0/19 1221 -203.58.64.0/18 1221 -203.58.128.0/17 1221 -203.59.0.0/24 4802 -203.59.1.0/24 4739 -203.59.2.0/23 7545 -203.59.4.0/23 4802 -203.59.6.0/24 4739 -203.59.7.0/24 4802 -203.59.8.0/23 4802 -203.59.10.0/23 7545 -203.59.12.0/24 4802 -203.59.13.0/24 4739 -203.59.14.0/23 4802 -203.59.16.0/23 4802 -203.59.18.0/24 7545 -203.59.19.0/24 4802 -203.59.20.0/23 4739 -203.59.22.0/23 4802 -203.59.24.0/24 4739 -203.59.25.0/24 4802 -203.59.26.0/24 4802 -203.59.27.0/24 4739 -203.59.28.0/22 4802 -203.59.32.0/20 4802 -203.59.48.0/23 4802 -203.59.50.0/23 4739 -203.59.52.0/23 4739 -203.59.54.0/23 4802 -203.59.56.0/23 4802 -203.59.58.0/24 4802 -203.59.59.0/24 4739 -203.59.60.0/22 4802 -203.59.64.0/20 4802 -203.59.80.0/23 4802 -203.59.82.0/23 4739 -203.59.84.0/22 4739 -203.59.88.0/22 4739 -203.59.92.0/22 4802 -203.59.96.0/22 4802 -203.59.100.0/23 4739 -203.59.102.0/24 4802 -203.59.103.0/24 4739 -203.59.104.0/21 4739 -203.59.112.0/21 4802 -203.59.120.0/24 4802 -203.59.121.0/24 4739 -203.59.122.0/24 4739 -203.59.123.0/24 4802 -203.59.124.0/24 4739 -203.59.125.0/24 4802 -203.59.126.0/24 4739 -203.59.127.0/24 4802 -203.59.128.0/22 4802 -203.59.132.0/24 4802 -203.59.133.0/24 4739 -203.59.134.0/23 4802 -203.59.136.0/24 4802 -203.59.137.0/24 4739 -203.59.138.0/23 4739 -203.59.140.0/23 4802 -203.59.142.0/24 4739 -203.59.143.0/24 4802 -203.59.144.0/23 4802 -203.59.146.0/24 4739 -203.59.147.0/24 4802 -203.59.148.0/23 4802 -203.59.150.0/24 4802 -203.59.151.0/24 4739 -203.59.152.0/21 4739 -203.59.160.0/23 4739 -203.59.162.0/24 4802 -203.59.163.0/24 4739 -203.59.164.0/22 4739 -203.59.168.0/24 4739 -203.59.169.0/24 4802 -203.59.170.0/24 4802 -203.59.171.0/24 4739 -203.59.172.0/22 4739 -203.59.176.0/20 7545 -203.59.192.0/20 7545 -203.59.208.0/21 7545 -203.59.216.0/23 4739 -203.59.218.0/24 4739 -203.59.219.0/24 4802 -203.59.220.0/22 4802 -203.59.224.0/21 4802 -203.59.232.0/24 7545 -203.59.233.0/24 4802 -203.59.234.0/23 4802 -203.59.236.0/22 4802 -203.59.240.0/23 4739 -203.59.242.0/24 7545 -203.59.243.0/24 4802 -203.59.244.0/22 4802 -203.59.248.0/23 4802 -203.59.250.0/23 7545 -203.59.252.0/23 7545 -203.59.254.0/23 4802 -203.60.0.0/21 45187 -203.60.8.0/24 45187 -203.60.9.0/24 9381 -203.60.10.0/23 45187 -203.60.12.0/22 45187 -203.60.16.0/20 45187 -203.60.32.0/19 45187 -203.60.64.0/18 45187 -203.60.128.0/20 136892 -203.60.144.0/20 58982 -203.61.0.0/16 703 -203.62.0.0/24 7575 -203.62.1.0/24 38044 -203.62.2.0/24 4134 -203.62.3.0/24 7575 -203.62.4.0/22 7575 -203.62.8.0/21 7575 -203.62.16.0/20 7575 -203.62.32.0/19 7575 -203.62.64.0/18 7575 -203.62.131.0/24 4134 -203.62.132.0/23 133125 -203.62.134.0/24 45158 -203.62.135.0/24 10113 -203.62.139.0/24 4134 -203.62.142.0/24 10113 -203.62.147.0/24 9266 -203.62.148.0/22 7543 -203.62.152.0/22 7470 -203.62.157.0/24 7545 -203.62.158.0/23 23871 -203.62.160.0/24 7545 -203.62.166.0/23 23733 -203.62.170.0/24 9443 -203.62.172.0/22 38573 -203.62.177.0/24 137900 -203.62.179.0/24 7545 -203.62.180.0/24 32824 -203.62.182.0/24 32824 -203.62.183.0/24 53252 -203.62.184.0/22 9268 -203.62.192.0/24 4739 -203.62.193.0/24 7496 -203.62.195.0/24 33517 -203.62.196.0/24 10455 -203.62.199.0/24 9822 -203.62.202.0/24 1221 -203.62.205.0/24 1221 -203.62.208.0/21 4749 -203.62.216.0/22 9650 -203.62.220.0/22 9749 -203.62.232.0/23 10148 -203.62.235.0/24 9822 -203.62.236.0/23 136518 -203.62.238.0/24 9822 -203.62.239.0/24 136518 -203.62.248.0/21 1221 -203.63.0.0/23 2764 -203.63.2.0/24 2764 -203.63.3.0/24 7545 -203.63.4.0/23 2764 -203.63.6.0/23 7545 -203.63.8.0/24 2764 -203.63.9.0/24 7545 -203.63.10.0/24 7545 -203.63.11.0/24 2764 -203.63.12.0/24 2764 -203.63.13.0/24 7545 -203.63.14.0/23 7545 -203.63.16.0/21 2764 -203.63.24.0/22 7545 -203.63.28.0/22 2764 -203.63.32.0/20 2764 -203.63.48.0/21 2764 -203.63.56.0/24 7545 -203.63.57.0/24 2764 -203.63.58.0/23 7545 -203.63.60.0/23 2764 -203.63.62.0/24 2764 -203.63.63.0/24 7545 -203.63.64.0/23 2764 -203.63.66.0/24 2764 -203.63.67.0/24 7545 -203.63.68.0/22 2764 -203.63.72.0/23 2764 -203.63.74.0/24 2764 -203.63.75.0/24 7545 -203.63.76.0/23 2764 -203.63.78.0/24 46069 -203.63.79.0/24 2764 -203.63.80.0/21 2764 -203.63.88.0/24 7545 -203.63.89.0/24 2764 -203.63.90.0/23 2764 -203.63.92.0/24 2764 -203.63.93.0/24 7545 -203.63.94.0/24 7545 -203.63.95.0/24 2764 -203.63.96.0/22 2764 -203.63.100.0/24 7545 -203.63.101.0/24 2764 -203.63.102.0/24 2764 -203.63.103.0/24 7545 -203.63.104.0/24 2764 -203.63.105.0/24 7545 -203.63.106.0/23 2764 -203.63.108.0/22 2764 -203.63.112.0/22 2764 -203.63.116.0/24 2764 -203.63.117.0/24 7545 -203.63.118.0/23 2764 -203.63.120.0/24 2764 -203.63.121.0/24 7545 -203.63.122.0/23 7545 -203.63.124.0/23 7545 -203.63.126.0/24 2764 -203.63.127.0/24 7545 -203.63.128.0/22 2764 -203.63.132.0/23 2764 -203.63.134.0/24 2764 -203.63.135.0/24 7545 -203.63.136.0/22 7545 -203.63.140.0/22 2764 -203.63.144.0/24 2764 -203.63.145.0/24 7545 -203.63.146.0/23 7545 -203.63.148.0/24 2764 -203.63.149.0/24 7545 -203.63.150.0/24 7545 -203.63.151.0/24 2764 -203.63.152.0/24 7545 -203.63.153.0/24 2764 -203.63.154.0/24 2764 -203.63.155.0/24 7545 -203.63.156.0/23 2764 -203.63.158.0/23 7545 -203.63.160.0/23 7545 -203.63.162.0/24 2764 -203.63.163.0/24 7545 -203.63.164.0/24 2764 -203.63.165.0/24 7545 -203.63.166.0/24 7545 -203.63.167.0/24 2764 -203.63.168.0/23 7545 -203.63.170.0/23 2764 -203.63.172.0/22 2764 -203.63.176.0/21 2764 -203.63.184.0/21 7545 -203.63.192.0/24 7545 -203.63.193.0/24 2764 -203.63.194.0/23 7545 -203.63.196.0/24 7545 -203.63.197.0/24 2764 -203.63.198.0/24 7545 -203.63.199.0/24 2764 -203.63.200.0/23 7545 -203.63.202.0/24 7545 -203.63.203.0/24 2764 -203.63.204.0/23 17535 -203.63.206.0/23 7545 -203.63.208.0/23 2764 -203.63.210.0/24 2764 -203.63.211.0/24 7545 -203.63.212.0/23 2764 -203.63.214.0/24 2764 -203.63.215.0/24 7545 -203.63.216.0/24 2764 -203.63.217.0/24 7545 -203.63.218.0/24 7545 -203.63.219.0/24 45671 -203.63.220.0/22 2764 -203.63.224.0/22 7545 -203.63.228.0/22 2764 -203.63.232.0/21 2764 -203.63.240.0/23 2764 -203.63.242.0/24 45922 -203.63.243.0/24 2764 -203.63.244.0/22 2764 -203.63.248.0/21 2764 -203.64.0.0/16 1659 -203.65.0.0/17 4782 -203.65.128.0/19 4782 -203.65.160.0/21 4662 -203.65.168.0/22 4662 -203.65.172.0/24 24164 -203.65.173.0/24 4662 -203.65.174.0/24 24164 -203.65.175.0/24 4662 -203.65.176.0/20 4662 -203.65.192.0/19 9924 -203.65.224.0/22 7482 -203.65.228.0/23 7482 -203.65.230.0/24 7482 -203.65.231.0/24 9924 -203.65.232.0/24 9924 -203.65.240.0/22 4808 -203.66.0.0/16 3462 -203.67.0.0/16 4780 -203.68.0.0/17 1659 -203.68.128.0/19 1659 -203.68.160.0/21 1659 -203.68.168.0/24 38844 -203.68.169.0/24 1659 -203.68.170.0/23 1659 -203.68.172.0/22 1659 -203.68.176.0/20 1659 -203.68.192.0/18 1659 -203.69.0.0/17 3462 -203.69.128.0/21 3462 -203.69.136.0/23 3462 -203.69.138.0/24 20940 -203.69.139.0/24 3462 -203.69.140.0/24 3462 -203.69.141.0/24 20940 -203.69.142.0/23 3462 -203.69.144.0/20 3462 -203.69.160.0/19 3462 -203.69.192.0/18 3462 -203.70.0.0/16 4780 -203.71.0.0/16 1659 -203.72.0.0/16 1659 -203.73.0.0/16 4780 -203.74.0.0/15 3462 -203.76.0.0/18 9797 -203.76.64.0/19 9622 -203.76.96.0/19 23688 -203.76.128.0/21 45528 -203.76.136.0/23 45528 -203.76.138.0/24 45528 -203.76.140.0/24 45528 -203.76.142.0/23 45528 -203.76.144.0/21 17469 -203.76.164.0/22 38648 -203.76.172.0/22 45470 -203.76.176.0/21 23682 -203.76.184.0/24 23682 -203.76.186.0/24 134012 -203.76.187.0/24 23682 -203.76.188.0/23 23682 -203.76.190.0/24 133661 -203.76.192.0/20 17970 -203.76.208.0/21 4812 -203.76.216.0/22 4812 -203.76.220.0/22 134204 -203.76.224.0/22 23704 -203.76.228.0/22 19318 -203.76.232.0/21 26658 -203.76.240.0/22 23650 -203.76.244.0/23 134835 -203.76.246.0/24 134835 -203.76.247.0/24 17676 -203.76.248.0/22 133680 -203.76.252.0/22 132335 -203.77.0.0/19 4662 -203.77.32.0/21 24164 -203.77.40.0/21 4662 -203.77.48.0/20 24164 -203.77.64.0/22 24164 -203.77.68.0/23 24164 -203.77.70.0/24 24164 -203.77.71.0/24 4662 -203.77.72.0/21 24164 -203.77.80.0/23 24164 -203.77.82.0/23 4662 -203.77.84.0/22 4662 -203.77.88.0/21 4662 -203.77.96.0/19 4662 -203.77.128.0/19 9660 -203.77.160.0/20 18385 -203.77.176.0/24 24509 -203.77.177.0/24 24558 -203.77.178.0/24 24174 -203.77.179.0/24 9942 -203.77.184.0/21 22822 -203.77.192.0/24 17913 -203.77.195.0/24 17913 -203.77.196.0/23 17913 -203.77.198.0/24 17913 -203.77.200.0/23 17913 -203.77.202.0/24 17913 -203.77.206.0/24 17913 -203.77.208.0/22 18393 -203.77.214.0/23 18393 -203.77.216.0/23 18393 -203.77.223.0/24 18393 -203.77.224.0/21 9228 -203.77.232.0/23 9228 -203.77.234.0/24 9228 -203.77.236.0/22 9228 -203.77.240.0/21 9228 -203.77.248.0/22 9228 -203.77.252.0/24 9228 -203.77.254.0/23 9228 -203.78.4.0/24 24080 -203.78.5.0/24 9590 -203.78.6.0/24 9590 -203.78.8.0/21 18402 -203.78.16.0/24 2756 -203.78.32.0/21 17924 -203.78.40.0/22 17924 -203.78.48.0/20 58519 -203.78.64.0/19 10098 -203.78.96.0/20 18362 -203.78.112.0/24 24203 -203.78.114.0/24 24203 -203.78.116.0/22 24203 -203.78.120.0/22 24203 -203.78.124.0/23 24203 -203.78.126.0/24 24203 -203.78.128.0/22 36351 -203.78.132.0/22 2519 -203.78.136.0/22 133054 -203.78.140.0/22 135386 -203.78.144.0/22 134749 -203.78.148.0/22 9234 -203.78.152.0/22 24439 -203.78.160.0/21 18395 -203.78.169.0/24 18395 -203.78.176.0/20 9505 -203.78.192.0/20 2914 -203.78.208.0/20 703 -203.78.224.0/19 7671 -203.79.0.0/20 23839 -203.79.16.0/21 17481 -203.79.24.0/23 45825 -203.79.29.0/24 45718 -203.79.31.0/24 45874 -203.79.32.0/24 3257 -203.79.33.0/24 15412 -203.79.34.0/23 15412 -203.79.36.0/24 63112 -203.79.37.0/24 15412 -203.79.38.0/23 15412 -203.79.40.0/21 15412 -203.79.48.0/22 23818 -203.79.52.0/22 2519 -203.79.56.0/22 2519 -203.79.60.0/24 23818 -203.79.61.0/24 2519 -203.79.62.0/24 2519 -203.79.63.0/24 23818 -203.79.64.0/24 17472 -203.79.65.0/24 9345 -203.79.66.0/23 9345 -203.79.68.0/23 4768 -203.79.70.0/23 9345 -203.79.72.0/21 9345 -203.79.80.0/21 9345 -203.79.88.0/22 9345 -203.79.92.0/23 9345 -203.79.94.0/23 4768 -203.79.96.0/20 4768 -203.79.112.0/22 9345 -203.79.116.0/22 4768 -203.79.120.0/22 4768 -203.79.124.0/22 9345 -203.79.128.0/18 7482 -203.79.192.0/22 7482 -203.79.196.0/23 7482 -203.79.198.0/24 7482 -203.79.199.0/24 24154 -203.79.200.0/24 24154 -203.79.201.0/24 7482 -203.79.202.0/23 7482 -203.79.204.0/23 131142 -203.79.206.0/23 131591 -203.79.208.0/23 24154 -203.79.210.0/24 24154 -203.79.211.0/24 7482 -203.79.212.0/22 7482 -203.79.216.0/22 7482 -203.79.220.0/24 7482 -203.79.221.0/24 9311 -203.79.222.0/24 7482 -203.79.223.0/24 9311 -203.79.224.0/24 9311 -203.79.225.0/24 7482 -203.79.226.0/23 7482 -203.79.228.0/22 7482 -203.79.232.0/23 7482 -203.79.234.0/24 7482 -203.79.235.0/24 9311 -203.79.236.0/22 7482 -203.79.240.0/21 7482 -203.79.248.0/23 7482 -203.79.250.0/23 17709 -203.79.252.0/22 17709 -203.80.0.0/22 4655 -203.80.4.0/23 58519 -203.80.6.0/23 9999 -203.80.8.0/21 24204 -203.80.16.0/21 24514 -203.80.28.0/22 24284 -203.80.32.0/20 58519 -203.80.48.0/21 56055 -203.80.56.0/24 38886 -203.80.57.0/24 58519 -203.80.58.0/23 18055 -203.80.60.0/22 45280 -203.80.64.0/19 9269 -203.80.96.0/23 9269 -203.80.98.0/24 9269 -203.80.99.0/24 10103 -203.80.100.0/22 9269 -203.80.104.0/21 9269 -203.80.112.0/20 9269 -203.80.128.0/24 58893 -203.80.130.0/24 58893 -203.80.136.0/22 36678 -203.80.144.0/20 4837 -203.80.160.0/21 9902 -203.80.168.0/24 38611 -203.80.170.0/23 133070 -203.80.172.0/22 133333 -203.80.176.0/21 24399 -203.80.184.0/22 24399 -203.80.188.0/22 38592 -203.80.192.0/18 9269 -203.81.8.0/23 9693 -203.81.11.0/24 9693 -203.81.12.0/22 23616 -203.81.16.0/20 9298 -203.81.34.0/24 4628 -203.81.36.0/24 4628 -203.81.37.0/24 4637 -203.81.41.0/24 4637 -203.81.44.0/23 4637 -203.81.46.0/24 4637 -203.81.56.0/24 4637 -203.81.62.0/24 4637 -203.81.64.0/19 9988 -203.81.96.0/20 45224 -203.81.112.0/20 24289 -203.81.128.0/19 17608 -203.81.160.0/22 18399 -203.81.164.0/23 18399 -203.81.166.0/23 131322 -203.81.168.0/23 18399 -203.81.170.0/23 131322 -203.81.172.0/22 131322 -203.81.176.0/22 45250 -203.81.180.0/23 24545 -203.81.182.0/24 24545 -203.81.183.0/24 45250 -203.81.184.0/24 24538 -203.81.186.0/23 24538 -203.81.188.0/22 24538 -203.81.192.0/21 38710 -203.81.200.0/21 38616 -203.81.208.0/20 38616 -203.81.224.0/22 38616 -203.81.228.0/23 38616 -203.81.230.0/24 38710 -203.81.231.0/24 38616 -203.81.232.0/21 38616 -203.81.240.0/22 17747 -203.81.252.0/22 4656 -203.82.0.0/23 58519 -203.82.5.0/24 23994 -203.82.8.0/24 9381 -203.82.9.0/24 24462 -203.82.10.0/23 24462 -203.82.12.0/22 24462 -203.82.24.0/24 202595 -203.82.26.0/24 202595 -203.82.28.0/22 26658 -203.82.32.0/20 18187 -203.82.48.0/20 23674 -203.82.64.0/19 10030 -203.82.96.0/20 9519 -203.82.128.0/19 3561 -203.82.160.0/19 4857 -203.82.192.0/20 17469 -203.82.208.0/22 24541 -203.82.212.0/23 24541 -203.82.214.0/24 24541 -203.82.216.0/23 38884 -203.82.218.0/24 58890 -203.82.219.0/24 38677 -203.82.220.0/23 38424 -203.82.222.0/23 23730 -203.82.240.0/21 3786 -203.82.249.0/24 23994 -203.82.250.0/23 23901 -203.82.252.0/23 4515 -203.82.254.0/23 9304 -203.83.4.0/22 38330 -203.83.16.0/21 58460 -203.83.48.0/21 22351 -203.83.56.0/21 7497 -203.83.64.0/19 9513 -203.83.96.0/20 9513 -203.83.112.0/21 9513 -203.83.120.0/22 9513 -203.83.124.0/23 9513 -203.83.126.0/24 9513 -203.83.127.0/24 17540 -203.83.159.0/24 23599 -203.83.160.0/19 17471 -203.83.192.0/21 24380 -203.83.200.0/23 24380 -203.83.202.0/24 24380 -203.83.203.0/24 16164 -203.83.204.0/22 24380 -203.83.208.0/21 136900 -203.83.216.0/23 10229 -203.83.219.0/24 9290 -203.83.220.0/22 16509 -203.83.224.0/20 58519 -203.83.240.0/21 63997 -203.83.248.0/23 24236 -203.83.250.0/24 9892 -203.84.0.0/19 4748 -203.84.104.0/23 7722 -203.84.132.0/24 38447 -203.84.133.0/24 38452 -203.84.134.0/23 38451 -203.84.136.0/21 24206 -203.84.152.0/21 24523 -203.84.160.0/19 10139 -203.84.192.0/20 10229 -203.84.208.0/22 10310 -203.84.212.0/23 10310 -203.84.216.0/23 17457 -203.84.224.0/20 45177 -203.84.240.0/20 9286 -203.85.0.0/19 4058 -203.85.32.0/20 4058 -203.85.48.0/21 4058 -203.85.56.0/24 4058 -203.85.57.0/24 10087 -203.85.58.0/23 4058 -203.85.60.0/22 4058 -203.85.64.0/18 4058 -203.85.128.0/17 4058 -203.86.0.0/20 4134 -203.86.16.0/21 4134 -203.86.24.0/22 24138 -203.86.28.0/22 4134 -203.86.32.0/21 4847 -203.86.40.0/21 24147 -203.86.48.0/21 24147 -203.86.56.0/22 4847 -203.86.60.0/24 4847 -203.86.61.0/24 24147 -203.86.62.0/24 24147 -203.86.63.0/24 4847 -203.86.64.0/23 4847 -203.86.66.0/24 23844 -203.86.67.0/24 4847 -203.86.68.0/22 4847 -203.86.72.0/21 4847 -203.86.80.0/20 4847 -203.86.96.0/19 4755 -203.86.128.0/21 4515 -203.86.136.0/22 4515 -203.86.140.0/23 4515 -203.86.142.0/24 4760 -203.86.143.0/24 4515 -203.86.144.0/23 40513 -203.86.146.0/23 4515 -203.86.148.0/22 4515 -203.86.152.0/21 4515 -203.86.160.0/20 9925 -203.86.176.0/23 4760 -203.86.178.0/23 9925 -203.86.180.0/22 9925 -203.86.184.0/21 9925 -203.86.192.0/20 23655 -203.86.208.0/20 38456 -203.86.224.0/21 23641 -203.86.232.0/23 133380 -203.86.235.0/24 133380 -203.86.236.0/22 133380 -203.86.240.0/21 37912 -203.86.248.0/23 38462 -203.86.252.0/23 4515 -203.86.254.0/23 58519 -203.87.0.0/17 7545 -203.87.128.0/17 10139 -203.88.0.0/19 38266 -203.88.32.0/19 17962 -203.88.64.0/19 9229 -203.88.104.0/22 7490 -203.88.108.0/22 26658 -203.88.128.0/22 18207 -203.88.133.0/24 18207 -203.88.135.0/24 18207 -203.88.137.0/24 18207 -203.88.138.0/23 18207 -203.88.140.0/22 18207 -203.88.144.0/23 18207 -203.88.147.0/24 18207 -203.88.148.0/23 18207 -203.88.154.0/23 18207 -203.88.157.0/24 18207 -203.88.158.0/24 18207 -203.88.160.0/21 54994 -203.88.176.0/20 7672 -203.88.192.0/19 4134 -203.88.228.0/24 7722 -203.88.231.0/24 7722 -203.88.232.0/23 7722 -203.88.234.0/24 7722 -203.89.4.0/24 24222 -203.89.5.0/24 37931 -203.89.6.0/23 38475 -203.89.8.0/23 4809 -203.89.24.0/21 24521 -203.89.32.0/19 4721 -203.89.64.0/20 18037 -203.89.80.0/24 2764 -203.89.81.0/24 18037 -203.89.82.0/23 18037 -203.89.84.0/22 18037 -203.89.88.0/22 18037 -203.89.92.0/24 4826 -203.89.93.0/24 18037 -203.89.94.0/23 18037 -203.89.96.0/22 135031 -203.89.104.0/23 394298 -203.89.106.0/24 394298 -203.89.108.0/22 136207 -203.89.120.0/22 136214 -203.89.124.0/23 136215 -203.89.127.0/24 136215 -203.89.128.0/22 9999 -203.89.132.0/24 45749 -203.89.134.0/23 45747 -203.89.145.0/24 9417 -203.89.146.0/23 45298 -203.89.148.0/23 45702 -203.89.150.0/24 45755 -203.89.152.0/22 45767 -203.89.160.0/20 9889 -203.89.176.0/23 9889 -203.89.178.0/24 45459 -203.89.179.0/24 9889 -203.89.180.0/22 9889 -203.89.184.0/23 9889 -203.89.186.0/24 9889 -203.89.187.0/24 45459 -203.89.188.0/22 9889 -203.89.192.0/18 9328 -203.90.4.0/23 10215 -203.90.6.0/23 38486 -203.90.16.0/21 10013 -203.90.24.0/22 4858 -203.90.29.0/24 4858 -203.90.30.0/24 10113 -203.90.31.0/24 55581 -203.90.32.0/19 18310 -203.90.64.0/23 45528 -203.90.66.0/24 45528 -203.90.68.0/23 45528 -203.90.76.0/22 45528 -203.90.80.0/24 45528 -203.90.82.0/24 45528 -203.90.85.0/24 45528 -203.90.87.0/24 45528 -203.90.88.0/22 45528 -203.90.92.0/24 45528 -203.90.94.0/23 45528 -203.90.96.0/21 45528 -203.90.104.0/23 45528 -203.90.109.0/24 45528 -203.90.110.0/23 45528 -203.90.112.0/24 45528 -203.90.114.0/23 45528 -203.90.116.0/22 45528 -203.90.120.0/24 45528 -203.90.123.0/24 45528 -203.90.124.0/23 45528 -203.90.127.0/24 45528 -203.90.128.0/18 17968 -203.90.192.0/19 17968 -203.90.224.0/22 23881 -203.90.228.0/23 23881 -203.90.230.0/24 23881 -203.90.231.0/24 9304 -203.90.232.0/22 9304 -203.90.236.0/23 9304 -203.90.238.0/24 9304 -203.90.239.0/24 55355 -203.90.240.0/22 9304 -203.90.244.0/24 9304 -203.90.245.0/24 55355 -203.90.246.0/24 55355 -203.90.247.0/24 9304 -203.90.248.0/23 55355 -203.90.250.0/24 55355 -203.90.251.0/24 9304 -203.90.252.0/24 23881 -203.90.253.0/24 19905 -203.90.254.0/24 23881 -203.90.255.0/24 55355 -203.91.32.0/19 23842 -203.91.80.0/20 10113 -203.91.112.0/21 24559 -203.91.120.0/22 24575 -203.91.124.0/22 4538 -203.91.128.0/19 9237 -203.91.160.0/19 17529 -203.91.193.0/24 23664 -203.91.194.0/23 23664 -203.91.196.0/22 23664 -203.91.200.0/21 23664 -203.91.208.0/21 23664 -203.91.216.0/23 23664 -203.91.218.0/24 23664 -203.91.224.0/20 9443 -203.91.240.0/21 9443 -203.91.248.0/21 10113 -203.92.4.0/23 18212 -203.92.7.0/24 38541 -203.92.8.0/21 132199 -203.92.16.0/21 18264 -203.92.24.0/23 38900 -203.92.27.0/24 23921 -203.92.28.0/22 4826 -203.92.32.0/19 10029 -203.92.64.0/18 10024 -203.92.128.0/19 10081 -203.92.192.0/22 17817 -203.92.196.0/24 17817 -203.92.198.0/23 17817 -203.92.208.0/20 2687 -203.92.248.0/24 1221 -203.92.252.0/24 1221 -203.93.0.0/24 4837 -203.93.1.0/24 4808 -203.93.2.0/23 4808 -203.93.4.0/22 4808 -203.93.8.0/21 4808 -203.93.16.0/20 4808 -203.93.32.0/19 9929 -203.93.64.0/19 9929 -203.93.96.0/20 9929 -203.93.117.0/24 4808 -203.93.120.0/21 4808 -203.93.128.0/20 9929 -203.93.144.0/20 4837 -203.93.160.0/20 4837 -203.93.208.0/20 9929 -203.93.224.0/19 9929 -203.94.0.0/19 17739 -203.94.32.0/19 55850 -203.94.64.0/19 9329 -203.94.96.0/19 17904 -203.94.128.0/18 10223 -203.94.192.0/18 17813 -203.95.0.0/23 17775 -203.95.2.0/24 4812 -203.95.3.0/24 17621 -203.95.4.0/24 17621 -203.95.5.0/24 4812 -203.95.6.0/24 4812 -203.95.7.0/24 17621 -203.95.8.0/21 17456 -203.95.16.0/24 23816 -203.95.24.0/21 24295 -203.95.32.0/19 10010 -203.95.64.0/21 9890 -203.95.80.0/20 9890 -203.95.96.0/22 4847 -203.95.104.0/21 4847 -203.95.192.0/22 63888 -203.95.196.0/22 135005 -203.95.208.0/22 18243 -203.95.212.0/22 5580 -203.95.216.0/22 17439 -203.95.220.0/22 63996 -203.96.16.0/20 9872 -203.96.48.0/20 9872 -203.96.64.0/23 4648 -203.96.68.0/22 4648 -203.96.72.0/21 4648 -203.96.80.0/21 4648 -203.96.88.0/23 4648 -203.96.91.0/24 4771 -203.96.113.0/24 4648 -203.96.115.0/24 4648 -203.96.116.0/23 4648 -203.96.118.0/24 4648 -203.96.119.0/24 4771 -203.96.121.0/24 4648 -203.96.123.0/24 133124 -203.96.127.0/24 4648 -203.96.128.0/20 9872 -203.96.144.0/20 4768 -203.96.179.0/24 135100 -203.96.184.0/23 133410 -203.96.187.0/24 133410 -203.96.188.0/22 136434 -203.96.192.0/19 9500 -203.96.224.0/22 136435 -203.96.232.0/23 17473 -203.96.236.0/22 4785 -203.96.242.0/23 136442 -203.96.248.0/22 45267 -203.97.0.0/17 4768 -203.97.128.0/18 4768 -203.97.192.0/19 4768 -203.97.224.0/22 17649 -203.97.228.0/24 4768 -203.97.229.0/24 17649 -203.97.230.0/23 4768 -203.97.232.0/21 4768 -203.97.240.0/20 4768 -203.98.0.0/20 4768 -203.98.16.0/22 4768 -203.98.20.0/23 4768 -203.98.22.0/24 4768 -203.98.23.0/24 7714 -203.98.24.0/23 7714 -203.98.26.0/23 4768 -203.98.28.0/22 4768 -203.98.32.0/21 4768 -203.98.40.0/23 4768 -203.98.42.0/23 9500 -203.98.44.0/22 4768 -203.98.48.0/23 4768 -203.98.50.0/24 9901 -203.98.51.0/24 4768 -203.98.52.0/23 4768 -203.98.54.0/24 4768 -203.98.55.0/24 7714 -203.98.56.0/21 4768 -203.98.64.0/24 8100 -203.98.65.0/24 10145 -203.98.66.0/24 38220 -203.98.67.0/24 10145 -203.98.68.0/23 10145 -203.98.72.0/24 137907 -203.98.73.0/24 55803 -203.98.74.0/24 38220 -203.98.75.0/24 55803 -203.98.76.0/23 17882 -203.98.78.0/24 32786 -203.98.80.0/24 45152 -203.98.81.0/24 56106 -203.98.82.0/24 38220 -203.98.84.0/24 55803 -203.98.85.0/24 10145 -203.98.87.0/24 10145 -203.98.88.0/24 55803 -203.98.89.0/24 38220 -203.98.90.0/24 10145 -203.98.91.0/24 55803 -203.98.92.0/24 36351 -203.98.94.0/24 38220 -203.98.95.0/24 55803 -203.98.96.0/19 23772 -203.98.128.0/20 17444 -203.98.144.0/22 17444 -203.98.148.0/24 10103 -203.98.149.0/24 17444 -203.98.150.0/23 17444 -203.98.152.0/21 17444 -203.98.160.0/19 17444 -203.98.192.0/19 1239 -203.98.224.0/23 55722 -203.98.226.0/24 55722 -203.98.227.0/24 55723 -203.98.228.0/22 55722 -203.98.232.0/21 55722 -203.98.240.0/20 55722 -203.99.0.0/21 24288 -203.99.20.0/22 38345 -203.99.24.0/21 38345 -203.99.40.0/23 2471 -203.99.42.0/23 24471 -203.99.44.0/22 24471 -203.99.48.0/20 23674 -203.99.64.0/23 4648 -203.99.66.0/23 9511 -203.99.68.0/24 4648 -203.99.69.0/24 4768 -203.99.71.0/24 4648 -203.99.72.0/22 2497 -203.99.76.0/24 131909 -203.99.77.0/24 2497 -203.99.78.0/24 131909 -203.99.79.0/24 2497 -203.99.96.0/20 10137 -203.99.113.0/24 10137 -203.99.114.0/23 10137 -203.99.116.0/22 10137 -203.99.120.0/21 10137 -203.99.128.0/23 45473 -203.99.130.0/23 45287 -203.99.132.0/22 45475 -203.99.136.0/22 38891 -203.99.140.0/23 45806 -203.99.143.0/24 45485 -203.99.152.0/22 38903 -203.99.156.0/22 38800 -203.99.160.0/19 45595 -203.99.192.0/20 17903 -203.99.208.0/21 17903 -203.99.216.0/22 17903 -203.99.221.0/24 17903 -203.99.224.0/21 23836 -203.99.232.0/21 23930 -203.99.240.0/21 24270 -203.99.252.0/23 24190 -203.99.254.0/24 10229 -203.99.255.0/24 17993 -203.100.0.0/19 24436 -203.100.50.0/23 4809 -203.100.52.0/24 4809 -203.100.54.0/24 4809 -203.100.56.0/24 38905 -203.100.59.0/24 38911 -203.100.61.0/24 45118 -203.100.65.0/24 9430 -203.100.66.0/23 9430 -203.100.68.0/23 9430 -203.100.70.0/24 9430 -203.100.72.0/23 24515 -203.100.74.0/24 24515 -203.100.75.0/24 38536 -203.100.76.0/23 24515 -203.100.78.0/23 9430 -203.100.80.0/21 4847 -203.100.88.0/23 4847 -203.100.92.0/22 23724 -203.100.96.0/19 23839 -203.100.135.0/24 4637 -203.100.160.0/19 17839 -203.100.192.0/20 23724 -203.100.208.0/20 9790 -203.100.224.0/19 7543 -203.101.0.0/19 9498 -203.101.32.0/21 9498 -203.101.40.0/22 24560 -203.101.44.0/23 24560 -203.101.46.0/23 9498 -203.101.48.0/21 9498 -203.101.56.0/22 9498 -203.101.60.0/24 9498 -203.101.61.0/24 24560 -203.101.62.0/24 9498 -203.101.63.0/24 24560 -203.101.64.0/20 9498 -203.101.80.0/22 9498 -203.101.84.0/24 24560 -203.101.85.0/24 9498 -203.101.86.0/23 9498 -203.101.88.0/21 9498 -203.101.96.0/23 9498 -203.101.98.0/24 9498 -203.101.99.0/24 9730 -203.101.100.0/22 9498 -203.101.104.0/24 24560 -203.101.105.0/24 9498 -203.101.106.0/23 9498 -203.101.108.0/22 9498 -203.101.112.0/21 9498 -203.101.120.0/22 9498 -203.101.124.0/23 9498 -203.101.126.0/24 24560 -203.101.127.0/24 9498 -203.101.128.0/19 4637 -203.101.160.0/20 9541 -203.101.176.0/21 9541 -203.101.184.0/22 9541 -203.101.188.0/23 9541 -203.101.191.0/24 9541 -203.101.224.0/19 24436 -203.102.0.0/18 703 -203.102.64.0/19 703 -203.102.96.0/20 703 -203.102.112.0/22 703 -203.102.116.0/23 703 -203.102.118.0/24 703 -203.102.119.0/24 56080 -203.102.120.0/21 703 -203.102.128.0/21 703 -203.102.136.0/24 703 -203.102.137.0/24 23992 -203.102.138.0/23 703 -203.102.140.0/22 703 -203.102.144.0/20 703 -203.102.160.0/19 703 -203.102.192.0/18 703 -203.103.0.0/16 703 -203.104.0.0/20 9650 -203.104.24.0/21 7642 -203.104.32.0/20 133774 -203.104.64.0/19 10096 -203.104.96.0/20 17707 -203.104.112.0/20 17936 -203.104.128.0/20 38631 -203.104.144.0/21 38631 -203.104.152.0/22 38631 -203.104.156.0/23 38631 -203.104.158.0/24 38631 -203.104.159.0/24 17661 -203.104.160.0/20 23576 -203.104.176.0/23 23576 -203.104.178.0/23 135354 -203.104.180.0/22 135354 -203.104.184.0/21 135354 -203.104.192.0/18 17707 -203.105.0.0/18 9925 -203.105.64.0/21 2914 -203.105.72.0/22 2914 -203.105.76.0/23 3949 -203.105.78.0/24 58879 -203.105.79.0/24 2914 -203.105.80.0/20 2914 -203.105.160.0/23 24084 -203.105.162.0/24 24084 -203.105.170.0/24 24084 -203.105.180.0/23 24084 -203.105.185.0/24 24084 -203.105.186.0/24 24084 -203.105.192.0/21 132789 -203.105.207.0/24 132789 -203.105.208.0/20 132789 -203.105.224.0/19 4662 -203.106.0.0/19 4788 -203.106.32.0/20 4788 -203.106.48.0/21 4788 -203.106.56.0/21 24514 -203.106.64.0/22 24514 -203.106.68.0/22 4788 -203.106.72.0/21 4788 -203.106.80.0/20 4788 -203.106.96.0/19 4788 -203.106.128.0/17 4788 -203.107.0.0/23 37963 -203.107.6.0/24 37963 -203.107.20.0/22 37963 -203.107.32.0/20 37963 -203.107.48.0/23 134963 -203.107.50.0/23 37963 -203.107.52.0/22 37963 -203.107.64.0/22 45102 -203.107.68.0/24 45102 -203.107.128.0/19 7693 -203.107.160.0/20 7693 -203.107.176.0/24 7693 -203.107.177.0/24 46079 -203.107.178.0/23 7693 -203.107.180.0/22 7693 -203.107.184.0/21 7693 -203.107.192.0/19 7693 -203.107.224.0/21 7693 -203.107.232.0/22 7693 -203.107.236.0/24 55498 -203.107.237.0/24 7693 -203.107.238.0/23 7693 -203.107.240.0/20 7693 -203.108.0.0/18 703 -203.108.64.0/19 703 -203.108.96.0/21 703 -203.108.104.0/22 703 -203.108.108.0/24 703 -203.108.109.0/24 12234 -203.108.110.0/23 703 -203.108.112.0/20 703 -203.108.128.0/18 703 -203.108.192.0/19 703 -203.108.224.0/21 703 -203.108.232.0/23 703 -203.108.234.0/24 703 -203.108.235.0/24 12234 -203.108.236.0/22 703 -203.108.240.0/20 703 -203.109.0.0/19 4766 -203.109.40.0/22 58895 -203.109.44.0/22 135777 -203.109.52.0/22 13886 -203.109.56.0/22 59371 -203.109.60.0/22 13886 -203.109.64.0/24 18207 -203.109.66.0/23 18207 -203.109.68.0/22 18207 -203.109.73.0/24 18207 -203.109.74.0/23 18207 -203.109.76.0/23 18207 -203.109.79.0/24 18207 -203.109.80.0/22 18207 -203.109.86.0/23 18207 -203.109.88.0/23 18207 -203.109.91.0/24 18207 -203.109.92.0/24 18207 -203.109.95.0/24 18207 -203.109.96.0/23 18207 -203.109.99.0/24 18207 -203.109.100.0/23 18207 -203.109.103.0/24 18207 -203.109.104.0/22 18207 -203.109.108.0/23 18207 -203.109.110.0/24 18207 -203.109.112.0/20 18207 -203.109.128.0/17 9500 -203.110.0.0/18 703 -203.110.80.0/20 23872 -203.110.128.0/19 17477 -203.110.160.0/19 4812 -203.110.193.0/24 17659 -203.110.195.0/24 17659 -203.110.196.0/22 17659 -203.110.200.0/22 17659 -203.110.204.0/24 38456 -203.110.205.0/24 17659 -203.110.206.0/24 17659 -203.110.208.0/20 4134 -203.110.224.0/21 17936 -203.110.232.0/23 4134 -203.110.235.0/24 9564 -203.110.237.0/24 45501 -203.110.239.0/24 45502 -203.110.240.0/24 55847 -203.110.242.0/23 55847 -203.110.244.0/22 55847 -203.111.0.0/22 2764 -203.111.4.0/22 7545 -203.111.8.0/21 2764 -203.111.16.0/21 2764 -203.111.24.0/23 2764 -203.111.26.0/23 7545 -203.111.28.0/22 2764 -203.111.32.0/21 2764 -203.111.40.0/22 2764 -203.111.44.0/23 2764 -203.111.46.0/24 18117 -203.111.47.0/24 2764 -203.111.48.0/20 2764 -203.111.64.0/20 2764 -203.111.80.0/21 2764 -203.111.88.0/24 2764 -203.111.89.0/24 7545 -203.111.90.0/23 2764 -203.111.92.0/23 7545 -203.111.94.0/24 2764 -203.111.95.0/24 7545 -203.111.96.0/22 2764 -203.111.100.0/23 2764 -203.111.102.0/24 18117 -203.111.103.0/24 2764 -203.111.104.0/24 18117 -203.111.105.0/24 2764 -203.111.106.0/23 2764 -203.111.108.0/22 2764 -203.111.112.0/20 2764 -203.111.128.0/19 2764 -203.111.160.0/20 2764 -203.111.176.0/24 7545 -203.111.177.0/24 2764 -203.111.178.0/23 7545 -203.111.180.0/22 2764 -203.111.184.0/22 7545 -203.111.188.0/22 2764 -203.111.192.0/20 7511 -203.111.208.0/20 9676 -203.111.224.0/20 10139 -203.111.240.0/21 9993 -203.111.248.0/23 24485 -203.112.0.0/19 17677 -203.112.32.0/19 7522 -203.112.64.0/21 2907 -203.112.72.0/21 38031 -203.112.80.0/20 9221 -203.112.111.0/24 7474 -203.112.113.0/24 7474 -203.112.114.0/24 4739 -203.112.116.0/22 7474 -203.112.120.0/23 7474 -203.112.127.0/24 7474 -203.112.128.0/24 59179 -203.112.129.0/24 45536 -203.112.130.0/24 45536 -203.112.136.0/21 17439 -203.112.144.0/21 17439 -203.112.152.0/22 59179 -203.112.160.0/19 9226 -203.112.192.0/24 17494 -203.112.193.0/24 45588 -203.112.194.0/23 17494 -203.112.196.0/22 17494 -203.112.200.0/22 45588 -203.112.204.0/23 17494 -203.112.206.0/24 45588 -203.112.207.0/24 17494 -203.112.208.0/21 45588 -203.112.216.0/22 17494 -203.112.220.0/23 56031 -203.112.222.0/23 17494 -203.112.224.0/19 4637 -203.113.0.0/22 131293 -203.113.4.0/24 134166 -203.113.5.0/24 23969 -203.113.6.0/24 134166 -203.113.7.0/24 23969 -203.113.8.0/22 134166 -203.113.12.0/23 23969 -203.113.14.0/24 134166 -203.113.15.0/24 131293 -203.113.16.0/23 131293 -203.113.18.0/23 23969 -203.113.20.0/24 23969 -203.113.21.0/24 134086 -203.113.22.0/23 23969 -203.113.24.0/24 131293 -203.113.25.0/24 134166 -203.113.26.0/24 23969 -203.113.27.0/24 131293 -203.113.28.0/23 23969 -203.113.30.0/24 23969 -203.113.31.0/24 131293 -203.113.32.0/20 23969 -203.113.48.0/21 23969 -203.113.56.0/22 23969 -203.113.60.0/23 23969 -203.113.62.0/24 23969 -203.113.63.0/24 38040 -203.113.64.0/24 38040 -203.113.65.0/24 23969 -203.113.66.0/23 23969 -203.113.68.0/22 23969 -203.113.72.0/21 23969 -203.113.80.0/21 23969 -203.113.88.0/22 23969 -203.113.92.0/23 23969 -203.113.94.0/24 23969 -203.113.95.0/24 134166 -203.113.96.0/21 131293 -203.113.104.0/24 131293 -203.113.105.0/24 23969 -203.113.106.0/23 23969 -203.113.108.0/24 131293 -203.113.109.0/24 23969 -203.113.110.0/24 131293 -203.113.111.0/24 23969 -203.113.112.0/21 131293 -203.113.120.0/22 131293 -203.113.124.0/24 131293 -203.113.125.0/24 23969 -203.113.126.0/24 134166 -203.113.127.0/24 131293 -203.113.128.0/18 7552 -203.113.192.0/19 4802 -203.113.224.0/22 4802 -203.113.228.0/23 4802 -203.113.230.0/24 4739 -203.113.231.0/24 4802 -203.113.232.0/21 4802 -203.113.240.0/24 4739 -203.113.241.0/24 4802 -203.113.242.0/23 4802 -203.113.244.0/24 4739 -203.113.245.0/24 4802 -203.113.246.0/23 4802 -203.113.248.0/24 4802 -203.113.249.0/24 4739 -203.113.250.0/23 4739 -203.113.252.0/22 4802 -203.114.0.0/18 2519 -203.114.64.0/22 7611 -203.114.68.0/24 138691 -203.114.69.0/24 38794 -203.114.70.0/23 38794 -203.114.72.0/24 134451 -203.114.73.0/24 63956 -203.114.74.0/24 134451 -203.114.75.0/24 38001 -203.114.76.0/22 9268 -203.114.96.0/24 23969 -203.114.97.0/24 134166 -203.114.98.0/24 134166 -203.114.99.0/24 23969 -203.114.100.0/23 23969 -203.114.102.0/24 134166 -203.114.103.0/24 131293 -203.114.104.0/21 131293 -203.114.112.0/22 131293 -203.114.116.0/24 131293 -203.114.117.0/24 23969 -203.114.118.0/23 23969 -203.114.120.0/22 131293 -203.114.124.0/23 131293 -203.114.126.0/24 23969 -203.114.127.0/24 131293 -203.114.128.0/18 17705 -203.114.192.0/19 7679 -203.114.224.0/23 45697 -203.114.226.0/23 45703 -203.114.228.0/22 10010 -203.114.232.0/22 45769 -203.114.240.0/22 131181 -203.114.244.0/22 45110 -203.114.248.0/22 4721 -203.114.252.0/22 136800 -203.115.0.0/19 9329 -203.115.32.0/19 17904 -203.115.64.0/24 23682 -203.115.68.0/22 23682 -203.115.72.0/24 23682 -203.115.74.0/23 23682 -203.115.76.0/24 23682 -203.115.79.0/24 23682 -203.115.80.0/23 23682 -203.115.84.0/23 23682 -203.115.87.0/24 45804 -203.115.88.0/22 23682 -203.115.92.0/24 55410 -203.115.95.0/24 23682 -203.115.96.0/19 17426 -203.115.128.0/18 6648 -203.115.192.0/18 10204 -203.116.0.0/20 4657 -203.116.16.0/22 4657 -203.116.20.0/23 4657 -203.116.22.0/24 9874 -203.116.23.0/24 4657 -203.116.24.0/21 4657 -203.116.32.0/19 4657 -203.116.64.0/19 4657 -203.116.96.0/21 4657 -203.116.104.0/23 4657 -203.116.106.0/24 4657 -203.116.107.0/24 9874 -203.116.108.0/22 4657 -203.116.112.0/22 4657 -203.116.116.0/24 9874 -203.116.117.0/24 4657 -203.116.118.0/24 4657 -203.116.119.0/24 9874 -203.116.120.0/21 4657 -203.116.128.0/22 4657 -203.116.132.0/24 4657 -203.116.133.0/24 9874 -203.116.134.0/23 4657 -203.116.136.0/21 4657 -203.116.144.0/22 4657 -203.116.148.0/24 4657 -203.116.149.0/24 9874 -203.116.150.0/24 9874 -203.116.151.0/24 4657 -203.116.152.0/21 4657 -203.116.160.0/20 4657 -203.116.176.0/22 4657 -203.116.180.0/24 4657 -203.116.181.0/24 9874 -203.116.182.0/23 4657 -203.116.184.0/22 4657 -203.116.188.0/23 38861 -203.116.190.0/23 4657 -203.116.192.0/21 4657 -203.116.200.0/24 38861 -203.116.201.0/24 4657 -203.116.202.0/23 4657 -203.116.204.0/22 4657 -203.116.208.0/23 4657 -203.116.210.0/24 38861 -203.116.211.0/24 9874 -203.116.212.0/24 56289 -203.116.213.0/24 4657 -203.116.214.0/23 4657 -203.116.216.0/22 4657 -203.116.220.0/23 4657 -203.116.222.0/24 9874 -203.116.223.0/24 4657 -203.116.224.0/22 4657 -203.116.228.0/23 4657 -203.116.230.0/24 28959 -203.116.231.0/24 4657 -203.116.232.0/21 4657 -203.116.240.0/20 4657 -203.117.0.0/19 4657 -203.117.32.0/23 4657 -203.117.34.0/23 38861 -203.117.36.0/23 38861 -203.117.38.0/23 4657 -203.117.40.0/23 9874 -203.117.42.0/23 4657 -203.117.44.0/22 4657 -203.117.48.0/21 4657 -203.117.56.0/21 9874 -203.117.64.0/19 4657 -203.117.96.0/23 4657 -203.117.98.0/24 136169 -203.117.99.0/24 4657 -203.117.100.0/22 4657 -203.117.104.0/21 4657 -203.117.112.0/20 4657 -203.117.128.0/18 4657 -203.117.192.0/19 4657 -203.117.224.0/20 4657 -203.117.240.0/22 4657 -203.117.244.0/23 4657 -203.117.246.0/23 9874 -203.117.248.0/22 9874 -203.117.252.0/23 9874 -203.117.254.0/23 4657 -203.118.0.0/18 4657 -203.118.64.0/18 7470 -203.118.128.0/18 9500 -203.118.224.0/20 9416 -203.118.240.0/24 55504 -203.118.241.0/24 23650 -203.118.242.0/24 45498 -203.118.244.0/22 45499 -203.118.248.0/22 45071 -203.119.0.0/24 4608 -203.119.1.0/24 23774 -203.119.2.0/24 9735 -203.119.3.0/24 17408 -203.119.4.0/22 23660 -203.119.8.0/22 23902 -203.119.12.0/24 60725 -203.119.13.0/24 4622 -203.119.14.0/24 4826 -203.119.15.0/24 12008 -203.119.16.0/24 24047 -203.119.17.0/24 24048 -203.119.18.0/24 24049 -203.119.25.0/24 24151 -203.119.26.0/24 24406 -203.119.27.0/24 24151 -203.119.28.0/24 24151 -203.119.29.0/24 24406 -203.119.30.0/23 24406 -203.119.33.0/24 24151 -203.119.36.0/22 24066 -203.119.40.0/24 24252 -203.119.44.0/22 24089 -203.119.52.0/23 4622 -203.119.57.0/24 45220 -203.119.60.0/22 38736 -203.119.64.0/22 131415 -203.119.68.0/22 38737 -203.119.72.0/22 23902 -203.119.76.0/23 4608 -203.119.78.0/24 135412 -203.119.79.0/24 55440 -203.119.80.0/23 38345 -203.119.83.0/24 38345 -203.119.84.0/24 60725 -203.119.85.0/24 55439 -203.119.86.0/24 18368 -203.119.87.0/24 9735 -203.119.88.0/23 187 -203.119.90.0/23 56266 -203.119.92.0/23 4608 -203.119.94.0/24 9311 -203.119.95.0/24 18369 -203.119.100.0/22 4608 -203.119.104.0/21 4608 -203.119.112.0/24 56088 -203.119.114.0/23 4134 -203.119.128.0/19 37963 -203.119.160.0/24 37963 -203.119.168.0/21 37963 -203.119.176.0/20 37963 -203.119.192.0/18 37963 -203.120.0.0/24 4628 -203.120.7.0/24 4628 -203.120.8.0/21 4628 -203.120.16.0/24 4628 -203.120.17.0/24 4637 -203.120.18.0/23 4628 -203.120.23.0/24 4637 -203.120.24.0/23 4628 -203.120.26.0/24 4628 -203.120.27.0/24 4637 -203.120.34.0/23 4628 -203.120.40.0/24 4628 -203.120.42.0/24 4637 -203.120.43.0/24 4628 -203.120.44.0/24 4628 -203.120.46.0/24 4637 -203.120.48.0/23 4637 -203.120.52.0/24 4637 -203.120.53.0/24 4628 -203.120.54.0/24 4628 -203.120.58.0/24 4628 -203.120.60.0/24 4637 -203.120.62.0/24 4628 -203.120.63.0/24 4637 -203.120.64.0/24 4637 -203.120.68.0/24 4637 -203.120.69.0/24 4628 -203.120.71.0/24 4628 -203.120.77.0/24 4628 -203.120.81.0/24 4628 -203.120.86.0/24 4628 -203.120.89.0/24 4628 -203.120.90.0/24 4628 -203.120.92.0/23 4628 -203.120.94.0/23 4637 -203.120.96.0/24 4637 -203.120.100.0/24 4637 -203.120.101.0/24 4628 -203.120.102.0/24 4637 -203.120.103.0/24 4628 -203.120.106.0/23 4637 -203.120.110.0/24 4628 -203.120.112.0/21 4628 -203.120.121.0/24 4628 -203.120.124.0/24 9255 -203.120.126.0/24 4628 -203.120.128.0/23 4628 -203.120.132.0/22 4628 -203.120.137.0/24 4628 -203.120.140.0/23 4628 -203.120.142.0/24 4637 -203.120.144.0/23 4628 -203.120.149.0/24 4628 -203.120.150.0/24 4637 -203.120.152.0/23 4628 -203.120.156.0/24 4637 -203.120.157.0/24 4628 -203.120.159.0/24 4628 -203.120.160.0/23 4637 -203.120.165.0/24 4628 -203.120.168.0/23 4628 -203.120.170.0/23 4637 -203.120.172.0/24 4628 -203.120.174.0/24 4637 -203.120.175.0/24 4628 -203.120.176.0/24 4628 -203.120.178.0/23 4628 -203.120.181.0/24 4628 -203.120.183.0/24 4628 -203.120.185.0/24 4637 -203.120.187.0/24 4628 -203.120.188.0/24 4637 -203.120.189.0/24 4628 -203.120.192.0/24 4628 -203.120.196.0/24 4628 -203.120.198.0/24 4628 -203.120.201.0/24 4628 -203.120.202.0/23 4628 -203.120.206.0/24 4628 -203.120.208.0/24 4628 -203.120.210.0/24 4628 -203.120.212.0/24 4628 -203.120.213.0/24 4637 -203.120.214.0/23 4628 -203.120.216.0/24 4628 -203.120.218.0/23 4628 -203.120.221.0/24 4637 -203.120.222.0/23 4628 -203.120.228.0/22 4628 -203.120.232.0/23 4628 -203.120.234.0/24 4628 -203.120.236.0/24 4628 -203.120.238.0/24 4637 -203.120.239.0/24 4628 -203.120.242.0/23 4628 -203.120.244.0/24 4628 -203.120.245.0/24 4637 -203.120.247.0/24 4628 -203.120.248.0/23 4628 -203.120.251.0/24 4628 -203.120.252.0/23 4628 -203.120.254.0/24 4628 -203.121.0.0/17 9930 -203.121.128.0/20 4765 -203.121.144.0/23 4765 -203.121.148.0/22 4765 -203.121.152.0/23 4765 -203.121.159.0/24 4765 -203.121.160.0/22 4765 -203.121.164.0/23 4765 -203.121.166.0/24 4765 -203.121.168.0/23 4765 -203.121.171.0/24 4765 -203.121.172.0/23 4765 -203.121.174.0/24 4765 -203.121.178.0/23 4765 -203.121.180.0/24 4765 -203.121.182.0/24 4765 -203.121.185.0/24 4765 -203.121.186.0/24 4765 -203.121.188.0/24 4765 -203.121.192.0/23 45763 -203.121.196.0/22 45763 -203.121.200.0/21 45763 -203.121.208.0/20 45763 -203.121.224.0/19 18419 -203.122.0.0/18 10029 -203.122.64.0/18 7722 -203.122.128.0/20 17734 -203.122.144.0/21 38333 -203.122.152.0/23 7579 -203.122.154.0/24 38333 -203.122.155.0/24 7579 -203.122.156.0/24 7579 -203.122.157.0/24 38333 -203.122.158.0/23 7579 -203.122.160.0/20 38333 -203.122.176.0/22 38333 -203.122.180.0/23 17734 -203.122.182.0/23 38333 -203.122.184.0/22 17734 -203.122.188.0/24 38333 -203.122.189.0/24 17734 -203.122.190.0/23 38333 -203.122.192.0/18 4739 -203.123.0.0/19 17547 -203.123.32.0/22 10029 -203.123.36.0/24 10029 -203.123.38.0/23 10029 -203.123.40.0/21 10029 -203.123.48.0/22 37989 -203.123.55.0/24 45736 -203.123.56.0/23 38320 -203.123.59.0/24 55803 -203.123.60.0/22 38755 -203.123.64.0/19 10113 -203.123.96.0/19 38195 -203.123.128.0/18 4637 -203.123.192.0/19 17597 -203.123.224.0/19 4855 -203.124.0.0/22 3758 -203.124.4.0/23 38489 -203.124.6.0/23 23885 -203.124.8.0/21 38277 -203.124.16.0/21 136795 -203.124.25.0/24 45127 -203.124.26.0/23 38196 -203.124.28.0/24 45127 -203.124.30.0/23 45127 -203.124.32.0/20 7590 -203.124.48.0/22 7590 -203.124.52.0/23 7590 -203.124.56.0/21 7590 -203.124.64.0/19 4721 -203.124.96.0/19 26496 -203.124.128.0/24 17495 -203.124.131.0/24 17495 -203.124.134.0/23 17495 -203.124.136.0/24 17495 -203.124.140.0/22 17495 -203.124.144.0/20 17495 -203.124.160.0/20 17495 -203.124.176.0/21 7604 -203.124.184.0/22 7604 -203.124.188.0/23 7604 -203.124.190.0/23 132873 -203.124.192.0/22 9238 -203.124.196.0/24 9238 -203.124.197.0/24 4755 -203.124.198.0/23 9238 -203.124.200.0/22 9238 -203.124.204.0/23 9238 -203.124.206.0/24 9238 -203.124.207.0/24 4755 -203.124.208.0/24 4755 -203.124.209.0/24 9238 -203.124.210.0/23 4755 -203.124.212.0/22 9238 -203.124.216.0/22 9238 -203.124.220.0/23 4755 -203.124.222.0/24 4755 -203.124.223.0/24 9238 -203.124.224.0/21 9238 -203.124.232.0/23 9238 -203.124.234.0/24 9238 -203.124.235.0/24 4755 -203.124.236.0/24 9238 -203.124.237.0/24 4755 -203.124.238.0/24 4755 -203.124.239.0/24 9238 -203.124.240.0/24 4755 -203.124.241.0/24 9238 -203.124.242.0/24 9238 -203.124.243.0/24 4755 -203.124.244.0/22 9238 -203.124.248.0/21 9238 -203.125.0.0/17 3758 -203.125.128.0/24 9255 -203.125.129.0/24 3758 -203.125.130.0/23 3758 -203.125.132.0/22 3758 -203.125.136.0/21 3758 -203.125.144.0/20 3758 -203.125.160.0/19 3758 -203.125.192.0/18 3758 -203.126.0.0/21 3758 -203.126.8.0/24 9255 -203.126.9.0/24 3758 -203.126.10.0/23 3758 -203.126.12.0/22 3758 -203.126.16.0/20 3758 -203.126.32.0/19 3758 -203.126.64.0/24 6619 -203.126.65.0/24 3758 -203.126.66.0/23 3758 -203.126.68.0/22 3758 -203.126.72.0/21 3758 -203.126.80.0/20 3758 -203.126.96.0/19 3758 -203.126.128.0/22 3758 -203.126.132.0/24 3758 -203.126.133.0/24 9255 -203.126.134.0/23 3758 -203.126.136.0/21 3758 -203.126.144.0/23 3758 -203.126.146.0/24 3758 -203.126.147.0/24 9255 -203.126.148.0/22 3758 -203.126.152.0/21 3758 -203.126.160.0/19 3758 -203.126.192.0/19 3758 -203.126.224.0/23 3758 -203.126.226.0/24 3758 -203.126.227.0/24 134515 -203.126.228.0/22 3758 -203.126.232.0/21 3758 -203.126.240.0/20 3758 -203.127.0.0/23 3758 -203.127.2.0/24 56289 -203.127.3.0/24 9255 -203.127.4.0/22 3758 -203.127.8.0/23 3758 -203.127.10.0/24 9255 -203.127.11.0/24 3758 -203.127.12.0/22 3758 -203.127.16.0/20 3758 -203.127.32.0/19 3758 -203.127.64.0/19 3758 -203.127.96.0/21 3758 -203.127.104.0/24 9255 -203.127.105.0/24 3758 -203.127.106.0/23 3758 -203.127.108.0/24 7473 -203.127.109.0/24 3758 -203.127.110.0/24 3758 -203.127.111.0/24 9255 -203.127.112.0/20 3758 -203.127.128.0/22 3758 -203.127.132.0/23 3758 -203.127.134.0/24 3758 -203.127.135.0/24 9255 -203.127.136.0/21 3758 -203.127.144.0/23 3758 -203.127.146.0/24 9255 -203.127.147.0/24 3758 -203.127.148.0/24 9255 -203.127.149.0/24 3758 -203.127.150.0/23 3758 -203.127.152.0/21 3758 -203.127.160.0/19 3758 -203.127.192.0/21 3758 -203.127.200.0/23 9255 -203.127.202.0/24 9255 -203.127.203.0/24 3758 -203.127.204.0/23 3758 -203.127.206.0/24 9890 -203.127.207.0/24 3758 -203.127.208.0/20 3758 -203.127.224.0/24 3758 -203.127.225.0/24 17894 -203.127.226.0/23 3758 -203.127.228.0/22 3758 -203.127.232.0/21 3758 -203.127.240.0/20 3758 -203.128.0.0/20 17911 -203.128.16.0/21 17911 -203.128.24.0/22 17911 -203.128.28.0/23 17911 -203.128.30.0/24 135523 -203.128.31.0/24 17911 -203.128.64.0/19 18103 -203.128.96.0/19 17623 -203.128.160.0/19 9976 -203.128.192.0/19 17608 -203.128.236.0/22 9647 -203.128.240.0/21 24088 -203.128.248.0/23 133798 -203.128.250.0/23 18004 -203.128.252.0/22 17557 -203.129.4.0/23 24079 -203.129.6.0/23 38424 -203.129.8.0/21 4809 -203.129.16.0/20 4764 -203.129.32.0/20 7718 -203.129.48.0/20 4739 -203.129.64.0/19 10032 -203.129.96.0/20 10000 -203.129.112.0/20 18126 -203.129.128.0/19 38285 -203.129.192.0/24 9430 -203.129.193.0/24 7633 -203.129.194.0/23 7633 -203.129.196.0/22 7633 -203.129.200.0/23 24515 -203.129.202.0/23 7633 -203.129.204.0/22 7633 -203.129.208.0/24 9430 -203.129.209.0/24 7633 -203.129.210.0/24 7633 -203.129.213.0/24 7633 -203.129.214.0/24 7633 -203.129.216.0/22 7633 -203.129.220.0/24 9430 -203.129.221.0/24 7633 -203.129.222.0/23 7633 -203.129.224.0/20 7633 -203.129.240.0/22 7633 -203.129.244.0/24 7633 -203.129.245.0/24 4755 -203.129.246.0/24 7633 -203.129.247.0/24 38536 -203.129.248.0/24 7633 -203.129.250.0/23 7633 -203.129.252.0/22 7633 -203.130.0.0/19 24435 -203.130.40.0/21 4808 -203.130.48.0/24 54994 -203.130.50.0/24 54994 -203.130.52.0/24 54994 -203.130.62.0/23 54994 -203.130.64.0/19 9756 -203.130.96.0/19 9943 -203.130.128.0/21 7616 -203.130.136.0/24 24042 -203.130.137.0/24 7616 -203.130.138.0/23 7616 -203.130.140.0/22 7616 -203.130.144.0/23 24455 -203.130.146.0/23 7616 -203.130.148.0/22 7616 -203.130.152.0/24 55423 -203.130.153.0/24 7616 -203.130.154.0/23 7616 -203.130.156.0/22 7616 -203.130.160.0/20 18111 -203.130.176.0/20 38109 -203.130.192.0/20 17974 -203.130.208.0/21 17974 -203.130.216.0/24 17974 -203.130.217.0/24 7713 -203.130.218.0/23 7713 -203.130.220.0/23 7713 -203.130.222.0/23 17974 -203.130.224.0/19 17974 -203.131.40.0/24 2764 -203.131.54.0/24 2764 -203.131.64.0/18 7629 -203.131.128.0/18 7629 -203.131.192.0/20 17707 -203.131.208.0/20 37992 -203.131.224.0/21 9293 -203.131.232.0/23 9293 -203.131.234.0/24 9293 -203.131.235.0/24 4645 -203.131.236.0/23 9293 -203.131.238.0/24 9293 -203.131.239.0/24 4645 -203.131.240.0/20 2914 -203.132.0.0/20 45671 -203.132.16.0/20 22634 -203.132.32.0/19 58834 -203.132.64.0/22 38195 -203.132.68.0/23 24233 -203.132.70.0/23 38195 -203.132.72.0/23 38195 -203.132.74.0/23 24233 -203.132.76.0/22 24233 -203.132.80.0/21 24233 -203.132.88.0/21 38195 -203.132.139.0/24 9498 -203.132.152.0/24 9498 -203.132.156.0/23 9498 -203.132.158.0/24 9498 -203.132.160.0/19 17839 -203.132.192.0/20 10238 -203.132.208.0/23 17903 -203.132.214.0/24 17903 -203.132.224.0/23 9443 -203.132.255.0/24 9942 -203.133.0.0/20 9416 -203.133.16.0/22 132046 -203.133.20.0/22 9416 -203.133.24.0/21 9416 -203.133.32.0/20 9416 -203.133.48.0/21 9416 -203.133.56.0/24 38851 -203.133.57.0/24 132046 -203.133.58.0/23 9416 -203.133.60.0/22 9416 -203.133.64.0/21 9416 -203.133.72.0/24 9416 -203.133.73.0/24 132046 -203.133.74.0/23 132046 -203.133.76.0/22 9416 -203.133.80.0/21 9416 -203.133.88.0/24 9416 -203.133.89.0/24 132046 -203.133.90.0/23 9416 -203.133.92.0/22 9416 -203.133.96.0/19 9416 -203.133.128.0/19 9351 -203.133.160.0/19 9764 -203.133.192.0/19 7524 -203.133.224.0/20 7524 -203.133.240.0/21 10003 -203.133.248.0/23 4608 -203.134.0.0/17 9443 -203.134.128.0/18 9443 -203.134.192.0/19 17917 -203.134.232.0/21 18059 -203.134.240.0/21 23724 -203.134.248.0/23 58678 -203.134.250.0/24 17830 -203.135.0.0/24 45595 -203.135.1.0/24 15347 -203.135.2.0/23 17557 -203.135.4.0/22 17557 -203.135.8.0/23 9557 -203.135.10.0/23 45595 -203.135.12.0/22 45595 -203.135.16.0/22 45595 -203.135.20.0/23 45595 -203.135.22.0/23 17557 -203.135.24.0/23 17557 -203.135.26.0/23 45595 -203.135.28.0/24 45595 -203.135.29.0/24 17557 -203.135.30.0/23 45595 -203.135.32.0/24 17557 -203.135.33.0/24 45595 -203.135.34.0/23 45595 -203.135.36.0/23 45595 -203.135.38.0/24 45595 -203.135.39.0/24 9557 -203.135.40.0/24 9557 -203.135.41.0/24 45595 -203.135.42.0/23 45595 -203.135.44.0/22 56167 -203.135.48.0/22 45595 -203.135.52.0/24 45595 -203.135.53.0/24 9557 -203.135.54.0/23 45595 -203.135.56.0/23 17557 -203.135.58.0/24 45595 -203.135.59.0/24 9557 -203.135.60.0/23 45595 -203.135.62.0/23 17557 -203.135.64.0/19 9216 -203.135.128.0/19 23881 -203.135.176.0/21 38211 -203.135.184.0/22 45797 -203.135.188.0/24 45801 -203.135.190.0/23 45808 -203.135.192.0/18 7679 -203.136.0.0/16 2518 -203.137.0.0/18 2554 -203.137.64.0/20 4694 -203.137.80.0/20 2554 -203.137.96.0/20 2554 -203.137.112.0/21 2554 -203.137.120.0/21 4694 -203.137.128.0/19 4694 -203.137.160.0/21 4694 -203.137.168.0/22 4694 -203.137.172.0/24 4694 -203.137.173.0/24 4725 -203.137.174.0/23 4694 -203.137.176.0/20 4694 -203.137.192.0/18 4694 -203.138.0.0/16 2514 -203.139.0.0/18 4725 -203.139.64.0/19 4725 -203.139.128.0/20 7505 -203.139.160.0/19 4713 -203.139.192.0/19 7522 -203.139.224.0/19 2497 -203.140.0.0/19 4693 -203.140.32.0/19 2519 -203.140.64.0/19 17511 -203.140.96.0/19 4713 -203.140.128.0/19 2516 -203.140.160.0/20 7511 -203.140.176.0/20 59108 -203.140.192.0/20 17509 -203.140.208.0/20 17939 -203.140.224.0/20 23637 -203.140.240.0/20 9622 -203.141.32.0/20 23816 -203.141.48.0/22 9607 -203.141.52.0/23 9607 -203.141.54.0/24 55898 -203.141.55.0/24 9607 -203.141.56.0/21 9607 -203.141.80.0/20 18289 -203.141.112.0/20 9615 -203.141.128.0/19 2514 -203.141.160.0/19 2516 -203.141.192.0/19 17518 -203.141.224.0/21 4680 -203.141.232.0/21 10006 -203.141.240.0/20 2514 -203.142.0.0/22 55405 -203.142.4.0/22 4769 -203.142.8.0/24 136735 -203.142.9.0/24 55736 -203.142.16.0/21 9892 -203.142.24.0/23 9892 -203.142.26.0/24 136733 -203.142.27.0/24 9892 -203.142.32.0/19 24028 -203.142.64.0/20 17451 -203.142.80.0/21 17451 -203.142.88.0/21 24334 -203.142.96.0/24 9231 -203.142.98.0/24 9231 -203.142.100.0/22 9231 -203.142.104.0/21 9231 -203.142.112.0/20 9231 -203.142.128.0/19 9443 -203.142.160.0/19 17608 -203.142.192.0/20 24282 -203.142.208.0/21 24282 -203.142.216.0/23 9647 -203.142.218.0/24 58895 -203.142.221.0/24 45168 -203.142.222.0/24 45160 -203.142.223.0/24 1221 -203.143.0.0/18 5087 -203.143.64.0/19 10105 -203.143.96.0/19 2514 -203.143.158.0/23 10120 -203.143.160.0/20 6262 -203.143.176.0/24 17825 -203.143.178.0/24 17825 -203.143.184.0/22 17825 -203.143.188.0/24 17825 -203.143.192.0/18 7543 -203.144.0.0/19 9313 -203.144.32.0/20 17649 -203.144.50.0/24 16838 -203.144.53.0/24 16838 -203.144.59.0/24 26415 -203.144.64.0/20 17976 -203.144.80.0/22 17976 -203.144.84.0/23 17976 -203.144.86.0/24 17976 -203.144.88.0/21 17976 -203.144.96.0/19 4755 -203.144.128.0/24 7470 -203.144.129.0/24 55476 -203.144.130.0/24 7470 -203.144.131.0/24 23891 -203.144.132.0/22 7470 -203.144.136.0/21 7470 -203.144.144.0/23 7470 -203.144.146.0/24 7470 -203.144.147.0/24 24042 -203.144.148.0/22 7470 -203.144.152.0/23 7470 -203.144.154.0/24 133791 -203.144.155.0/24 7470 -203.144.156.0/22 7470 -203.144.160.0/20 7470 -203.144.176.0/22 7470 -203.144.180.0/23 7470 -203.144.182.0/24 7470 -203.144.183.0/24 23717 -203.144.184.0/21 7470 -203.144.192.0/20 7470 -203.144.208.0/22 7470 -203.144.212.0/24 7470 -203.144.213.0/24 131460 -203.144.214.0/23 7470 -203.144.216.0/21 7470 -203.144.224.0/20 7470 -203.144.240.0/24 7470 -203.144.241.0/24 37977 -203.144.242.0/23 7470 -203.144.244.0/24 7470 -203.144.245.0/24 9287 -203.144.246.0/23 7470 -203.144.248.0/21 7470 -203.145.64.0/22 10116 -203.145.68.0/23 10116 -203.145.70.0/24 10116 -203.145.71.0/24 17794 -203.145.72.0/23 17794 -203.145.74.0/24 17794 -203.145.75.0/24 10118 -203.145.76.0/23 17794 -203.145.78.0/24 17794 -203.145.79.0/24 10118 -203.145.80.0/23 10118 -203.145.82.0/24 17794 -203.145.83.0/24 10118 -203.145.84.0/22 10118 -203.145.88.0/21 10118 -203.145.96.0/20 7511 -203.145.112.0/21 23932 -203.145.120.0/21 17948 -203.145.128.0/20 9498 -203.145.144.0/21 9498 -203.145.152.0/23 24560 -203.145.154.0/23 9498 -203.145.156.0/22 9498 -203.145.160.0/24 24560 -203.145.161.0/24 9498 -203.145.162.0/23 9498 -203.145.164.0/24 9498 -203.145.165.0/24 24560 -203.145.166.0/23 24560 -203.145.168.0/24 24560 -203.145.169.0/24 9498 -203.145.170.0/24 9498 -203.145.171.0/24 24560 -203.145.172.0/22 9498 -203.145.176.0/22 9498 -203.145.180.0/23 9498 -203.145.182.0/24 9498 -203.145.183.0/24 24560 -203.145.184.0/24 24560 -203.145.185.0/24 9498 -203.145.186.0/24 9498 -203.145.187.0/24 24560 -203.145.188.0/22 9498 -203.145.192.0/21 18426 -203.145.200.0/21 7539 -203.145.208.0/20 7539 -203.145.224.0/19 2554 -203.146.0.0/21 4750 -203.146.8.0/22 4750 -203.146.12.0/24 4750 -203.146.13.0/24 9339 -203.146.14.0/23 4750 -203.146.16.0/23 4750 -203.146.18.0/24 7630 -203.146.19.0/24 4750 -203.146.20.0/24 4750 -203.146.21.0/24 9891 -203.146.22.0/23 4750 -203.146.24.0/23 4750 -203.146.26.0/24 9891 -203.146.27.0/24 4750 -203.146.28.0/22 4750 -203.146.32.0/21 4750 -203.146.40.0/23 4750 -203.146.42.0/24 4750 -203.146.43.0/24 9891 -203.146.44.0/22 4750 -203.146.48.0/21 4750 -203.146.56.0/22 4750 -203.146.60.0/24 4750 -203.146.61.0/24 9891 -203.146.62.0/23 38444 -203.146.64.0/21 4750 -203.146.72.0/23 4750 -203.146.74.0/24 45265 -203.146.75.0/24 4750 -203.146.76.0/22 4750 -203.146.80.0/20 4750 -203.146.96.0/22 4750 -203.146.100.0/24 4750 -203.146.101.0/24 9891 -203.146.102.0/24 9891 -203.146.103.0/24 4750 -203.146.104.0/24 134682 -203.146.105.0/24 4750 -203.146.106.0/23 4750 -203.146.108.0/23 4750 -203.146.110.0/24 4750 -203.146.111.0/24 9891 -203.146.112.0/22 4750 -203.146.116.0/24 4750 -203.146.117.0/24 9891 -203.146.118.0/23 4750 -203.146.120.0/22 4750 -203.146.124.0/23 4750 -203.146.126.0/24 4750 -203.146.127.0/24 9891 -203.146.128.0/24 4750 -203.146.129.0/24 9891 -203.146.130.0/23 4750 -203.146.132.0/22 4750 -203.146.136.0/22 4750 -203.146.140.0/24 9891 -203.146.141.0/24 4750 -203.146.142.0/23 4750 -203.146.144.0/22 4750 -203.146.148.0/23 4750 -203.146.150.0/24 4750 -203.146.151.0/24 9891 -203.146.152.0/21 4750 -203.146.160.0/24 4750 -203.146.161.0/24 9891 -203.146.162.0/23 4750 -203.146.164.0/22 4750 -203.146.168.0/23 4750 -203.146.170.0/24 9891 -203.146.171.0/24 4750 -203.146.172.0/22 4750 -203.146.176.0/22 4750 -203.146.180.0/24 9891 -203.146.181.0/24 4750 -203.146.182.0/24 23873 -203.146.183.0/24 4750 -203.146.184.0/21 4750 -203.146.192.0/21 4750 -203.146.200.0/22 4750 -203.146.204.0/24 38448 -203.146.205.0/24 4750 -203.146.206.0/23 4750 -203.146.208.0/22 4750 -203.146.212.0/23 4750 -203.146.214.0/24 4750 -203.146.215.0/24 9891 -203.146.216.0/22 4750 -203.146.220.0/23 4750 -203.146.222.0/24 17565 -203.146.223.0/24 4750 -203.146.224.0/23 7630 -203.146.226.0/23 4750 -203.146.228.0/22 4750 -203.146.232.0/21 4750 -203.146.240.0/21 4750 -203.146.248.0/22 9891 -203.146.252.0/24 4750 -203.146.253.0/24 9891 -203.146.254.0/23 4750 -203.147.0.0/22 7616 -203.147.4.0/23 7616 -203.147.6.0/24 55423 -203.147.7.0/24 7616 -203.147.8.0/21 7616 -203.147.16.0/20 7616 -203.147.32.0/24 7616 -203.147.33.0/24 10151 -203.147.34.0/23 7616 -203.147.36.0/22 7616 -203.147.40.0/21 7616 -203.147.48.0/20 7616 -203.147.64.0/20 17480 -203.147.80.0/21 17480 -203.147.88.0/22 45804 -203.147.92.0/22 58434 -203.147.96.0/21 17551 -203.147.104.0/22 45155 -203.147.110.0/23 45165 -203.147.112.0/20 7511 -203.147.128.0/19 7496 -203.147.160.0/21 7496 -203.147.168.0/22 7496 -203.147.172.0/24 24446 -203.147.173.0/24 7496 -203.147.174.0/23 7496 -203.147.176.0/20 7496 -203.147.192.0/18 7496 -203.148.0.0/18 9939 -203.148.64.0/20 56012 -203.148.84.0/23 45289 -203.148.86.0/23 4134 -203.148.88.0/24 9832 -203.148.92.0/24 4637 -203.148.93.0/24 1221 -203.148.94.0/23 18000 -203.148.96.0/19 9374 -203.148.128.0/21 4776 -203.148.136.0/22 4776 -203.148.140.0/24 4776 -203.148.141.0/24 24040 -203.148.142.0/23 133167 -203.148.160.0/24 4776 -203.148.161.0/24 24040 -203.148.162.0/23 7630 -203.148.164.0/22 4776 -203.148.168.0/21 4776 -203.148.176.0/22 4776 -203.148.180.0/23 4776 -203.148.182.0/24 133167 -203.148.183.0/24 4776 -203.148.184.0/22 4776 -203.148.188.0/23 24040 -203.148.190.0/23 4776 -203.148.192.0/22 4776 -203.148.200.0/21 4776 -203.148.208.0/20 4776 -203.148.224.0/19 4776 -203.149.0.0/18 4741 -203.149.64.0/20 17766 -203.149.80.0/21 17766 -203.149.88.0/24 45162 -203.149.89.0/24 132581 -203.149.91.0/24 132581 -203.149.96.0/20 7687 -203.149.112.0/20 18310 -203.149.128.0/24 134078 -203.149.140.0/23 134078 -203.149.168.0/22 134078 -203.149.184.0/21 134078 -203.149.224.0/20 137468 -203.149.254.0/23 134078 -203.150.0.0/20 4618 -203.150.16.0/22 4618 -203.150.20.0/23 4618 -203.150.22.0/24 38718 -203.150.23.0/24 4618 -203.150.24.0/24 4618 -203.150.25.0/24 4827 -203.150.26.0/24 4618 -203.150.27.0/24 132201 -203.150.28.0/23 4618 -203.150.30.0/24 9931 -203.150.31.0/24 4618 -203.150.32.0/23 4618 -203.150.34.0/24 4618 -203.150.35.0/24 38184 -203.150.36.0/22 4618 -203.150.40.0/23 4618 -203.150.42.0/24 56018 -203.150.43.0/24 4618 -203.150.44.0/23 7715 -203.150.46.0/23 4618 -203.150.48.0/20 4618 -203.150.64.0/18 4618 -203.150.128.0/19 4618 -203.150.160.0/20 4618 -203.150.176.0/21 4618 -203.150.184.0/24 135419 -203.150.185.0/24 4618 -203.150.186.0/23 4618 -203.150.188.0/22 4618 -203.150.192.0/19 4618 -203.150.224.0/20 4618 -203.150.240.0/22 4618 -203.150.244.0/23 4618 -203.150.246.0/24 38448 -203.150.247.0/24 46013 -203.150.248.0/23 4618 -203.150.250.0/24 56223 -203.150.251.0/24 4618 -203.150.252.0/22 4618 -203.151.0.0/24 4618 -203.151.1.0/24 133529 -203.151.2.0/23 4618 -203.151.4.0/22 4618 -203.151.8.0/23 4618 -203.151.10.0/23 133163 -203.151.12.0/22 4618 -203.151.16.0/23 4618 -203.151.18.0/24 23644 -203.151.19.0/24 4618 -203.151.20.0/22 4618 -203.151.24.0/24 4618 -203.151.25.0/24 38184 -203.151.26.0/23 4618 -203.151.28.0/22 4618 -203.151.32.0/19 4618 -203.151.64.0/19 4618 -203.151.96.0/21 4618 -203.151.104.0/23 38296 -203.151.106.0/23 4618 -203.151.108.0/23 4618 -203.151.110.0/24 4618 -203.151.111.0/24 56223 -203.151.112.0/20 4618 -203.151.128.0/20 4618 -203.151.144.0/21 4618 -203.151.152.0/22 4618 -203.151.156.0/23 4618 -203.151.158.0/24 4618 -203.151.159.0/24 55932 -203.151.160.0/19 4618 -203.151.192.0/20 4618 -203.151.208.0/23 4618 -203.151.210.0/24 4618 -203.151.211.0/24 133113 -203.151.212.0/22 4618 -203.151.216.0/21 4618 -203.151.224.0/19 4618 -203.152.0.0/22 4765 -203.152.4.0/24 4765 -203.152.6.0/23 4765 -203.152.8.0/23 4765 -203.152.11.0/24 4765 -203.152.12.0/23 4765 -203.152.14.0/24 4765 -203.152.16.0/22 4765 -203.152.20.0/24 4765 -203.152.22.0/24 4765 -203.152.24.0/21 4765 -203.152.32.0/22 4765 -203.152.36.0/23 4765 -203.152.39.0/24 4765 -203.152.40.0/24 4765 -203.152.42.0/23 4765 -203.152.44.0/24 4765 -203.152.47.0/24 4765 -203.152.48.0/23 4765 -203.152.50.0/24 4765 -203.152.53.0/24 4765 -203.152.55.0/24 4765 -203.152.56.0/23 4765 -203.152.58.0/24 4765 -203.152.62.0/23 4765 -203.152.64.0/19 23771 -203.152.96.0/19 9245 -203.152.160.0/19 10036 -203.152.192.0/19 2514 -203.152.224.0/19 703 -203.153.4.0/23 38578 -203.153.6.0/23 38609 -203.153.10.0/24 18214 -203.153.12.0/22 18214 -203.153.16.0/22 38195 -203.153.20.0/22 131769 -203.153.24.0/21 24525 -203.153.32.0/21 24186 -203.153.40.0/24 24186 -203.153.41.0/24 135750 -203.153.42.0/23 135750 -203.153.44.0/22 24186 -203.153.48.0/24 45519 -203.153.49.0/24 45293 -203.153.50.0/23 38040 -203.153.52.0/24 36086 -203.153.53.0/24 45513 -203.153.56.0/22 4721 -203.153.60.0/22 135628 -203.153.64.0/20 17931 -203.153.80.0/20 18206 -203.153.96.0/20 24207 -203.153.112.0/21 24207 -203.153.120.0/21 38505 -203.153.144.0/20 3786 -203.153.160.0/20 7654 -203.153.176.0/21 7654 -203.153.184.0/23 7654 -203.153.186.0/24 7654 -203.153.187.0/24 45254 -203.153.188.0/22 7654 -203.153.192.0/20 38790 -203.153.208.0/24 132781 -203.153.210.0/23 45518 -203.153.212.0/22 131728 -203.153.216.0/22 45291 -203.153.220.0/24 45517 -203.153.221.0/24 132045 -203.153.222.0/23 132045 -203.153.224.0/19 9822 -203.154.0.0/17 4618 -203.154.128.0/21 4618 -203.154.136.0/24 4618 -203.154.137.0/24 132063 -203.154.138.0/23 4618 -203.154.140.0/22 4618 -203.154.144.0/20 4618 -203.154.160.0/19 4618 -203.154.192.0/19 4618 -203.154.224.0/23 4618 -203.154.226.0/24 4618 -203.154.227.0/24 38231 -203.154.228.0/22 4618 -203.154.232.0/21 4618 -203.154.240.0/20 4618 -203.155.0.0/19 7693 -203.155.32.0/21 7693 -203.155.40.0/22 7693 -203.155.44.0/24 135620 -203.155.45.0/24 7693 -203.155.46.0/24 7693 -203.155.47.0/24 17460 -203.155.48.0/20 7693 -203.155.64.0/19 7693 -203.155.96.0/21 7693 -203.155.104.0/22 7693 -203.155.108.0/24 24083 -203.155.109.0/24 7693 -203.155.110.0/23 7693 -203.155.112.0/23 7693 -203.155.114.0/24 133764 -203.155.115.0/24 7693 -203.155.116.0/22 7693 -203.155.120.0/21 7693 -203.155.128.0/20 7693 -203.155.144.0/22 7693 -203.155.148.0/23 7693 -203.155.150.0/24 7470 -203.155.151.0/24 7693 -203.155.152.0/22 7693 -203.155.156.0/24 55844 -203.155.157.0/24 7693 -203.155.158.0/23 7693 -203.155.160.0/20 7693 -203.155.176.0/23 7693 -203.155.178.0/24 7693 -203.155.179.0/24 23683 -203.155.180.0/22 7693 -203.155.184.0/23 7693 -203.155.186.0/24 55498 -203.155.187.0/24 7693 -203.155.188.0/22 7693 -203.155.192.0/20 7693 -203.155.208.0/21 7693 -203.155.216.0/24 7693 -203.155.217.0/24 45197 -203.155.218.0/23 7693 -203.155.220.0/23 17478 -203.155.222.0/24 17478 -203.155.223.0/24 7693 -203.155.224.0/21 7693 -203.155.232.0/22 7693 -203.155.236.0/23 7693 -203.155.238.0/24 23644 -203.155.239.0/24 7693 -203.155.240.0/20 7693 -203.156.0.0/18 7616 -203.156.64.0/19 7616 -203.156.96.0/20 7616 -203.156.112.0/22 7616 -203.156.116.0/23 24455 -203.156.118.0/24 45455 -203.156.119.0/24 55423 -203.156.120.0/21 55423 -203.156.128.0/20 7616 -203.156.144.0/22 7616 -203.156.148.0/23 7616 -203.156.150.0/24 55423 -203.156.151.0/24 7616 -203.156.152.0/23 7616 -203.156.154.0/24 24042 -203.156.155.0/24 7616 -203.156.156.0/22 7616 -203.156.160.0/20 7616 -203.156.176.0/22 7616 -203.156.180.0/23 7616 -203.156.182.0/24 7616 -203.156.183.0/24 55423 -203.156.184.0/21 7616 -203.156.192.0/18 4812 -203.157.0.0/16 9649 -203.158.0.0/21 55545 -203.158.8.0/23 23665 -203.158.11.0/24 23665 -203.158.15.0/24 23665 -203.158.16.0/21 4847 -203.158.24.0/23 37997 -203.158.26.0/23 45960 -203.158.28.0/23 37997 -203.158.30.0/24 37997 -203.158.31.0/24 45960 -203.158.32.0/19 7545 -203.158.96.0/20 9903 -203.158.112.0/22 9903 -203.158.116.0/23 9903 -203.158.118.0/24 137546 -203.158.119.0/24 9903 -203.158.120.0/21 9903 -203.158.128.0/20 4621 -203.158.144.0/22 133919 -203.158.148.0/23 133919 -203.158.150.0/23 4621 -203.158.152.0/24 133919 -203.158.153.0/24 4621 -203.158.154.0/23 4621 -203.158.156.0/22 4621 -203.158.160.0/20 135141 -203.158.176.0/20 45575 -203.158.192.0/20 37932 -203.158.208.0/21 136737 -203.158.216.0/21 132482 -203.158.224.0/21 132866 -203.158.232.0/21 133919 -203.158.240.0/22 9903 -203.158.244.0/22 137546 -203.158.248.0/21 9903 -203.159.0.0/18 4767 -203.159.64.0/24 17823 -203.159.65.0/24 135586 -203.159.70.0/23 63528 -203.159.72.0/22 17887 -203.159.76.0/22 137856 -203.159.80.0/24 46261 -203.159.81.0/24 43350 -203.159.82.0/23 46261 -203.159.84.0/24 39855 -203.159.85.0/24 54103 -203.159.86.0/24 39855 -203.159.87.0/24 54103 -203.159.88.0/24 39855 -203.159.89.0/24 54103 -203.159.90.0/24 46261 -203.159.91.0/24 54103 -203.159.92.0/22 46261 -203.159.96.0/19 17887 -203.159.128.0/19 4621 -203.159.160.0/24 133042 -203.159.161.0/24 4621 -203.159.162.0/23 4621 -203.159.164.0/24 133042 -203.159.165.0/24 4621 -203.159.166.0/23 4621 -203.159.168.0/21 4621 -203.159.176.0/20 4621 -203.159.192.0/18 4621 -203.160.0.0/23 45899 -203.160.2.0/23 24517 -203.160.4.0/22 45229 -203.160.8.0/21 38835 -203.160.16.0/20 24277 -203.160.32.0/23 14923 -203.160.35.0/24 14923 -203.160.36.0/23 14923 -203.160.38.0/24 14923 -203.160.48.0/23 58491 -203.160.50.0/23 24225 -203.160.52.0/22 55933 -203.160.56.0/21 24527 -203.160.64.0/19 10099 -203.160.104.0/22 4809 -203.160.109.0/24 4809 -203.160.110.0/23 4809 -203.160.112.0/20 9790 -203.160.128.0/24 45292 -203.160.132.0/22 45899 -203.160.136.0/24 45525 -203.160.137.0/24 45530 -203.160.141.0/24 4637 -203.160.143.0/24 4637 -203.160.144.0/20 24160 -203.160.160.0/20 18233 -203.160.176.0/21 18233 -203.160.184.0/24 18233 -203.160.185.0/24 38909 -203.160.186.0/23 18233 -203.160.188.0/22 18233 -203.160.192.0/19 137692 -203.160.224.0/20 9505 -203.160.240.0/20 10126 -203.161.4.0/22 4748 -203.161.8.0/21 38809 -203.161.16.0/21 17884 -203.161.24.0/21 138823 -203.161.64.0/18 9822 -203.161.128.0/22 24130 -203.161.132.0/23 24130 -203.161.134.0/23 38195 -203.161.136.0/22 24130 -203.161.140.0/22 38195 -203.161.144.0/20 24130 -203.161.160.0/21 9443 -203.161.168.0/22 10113 -203.161.176.0/23 45893 -203.161.178.0/24 45556 -203.161.179.0/24 58895 -203.161.181.0/24 131217 -203.161.182.0/24 7575 -203.161.184.0/23 46050 -203.161.187.0/24 56228 -203.161.188.0/24 45221 -203.161.189.0/24 9223 -203.161.190.0/23 16625 -203.161.192.0/19 4134 -203.161.224.0/19 9925 -203.162.0.0/23 45899 -203.162.2.0/24 7643 -203.162.3.0/24 45899 -203.162.4.0/22 45899 -203.162.8.0/21 45899 -203.162.16.0/20 45899 -203.162.32.0/23 45899 -203.162.34.0/24 7643 -203.162.35.0/24 45899 -203.162.36.0/23 7643 -203.162.38.0/23 45899 -203.162.40.0/21 45899 -203.162.48.0/24 45899 -203.162.49.0/24 7643 -203.162.50.0/24 45899 -203.162.51.0/24 7643 -203.162.52.0/24 45899 -203.162.53.0/24 7643 -203.162.54.0/23 45899 -203.162.56.0/24 7643 -203.162.57.0/24 45899 -203.162.58.0/24 45899 -203.162.59.0/24 7643 -203.162.60.0/22 45899 -203.162.64.0/22 45899 -203.162.68.0/23 7643 -203.162.70.0/23 45899 -203.162.72.0/22 45899 -203.162.76.0/24 45899 -203.162.77.0/24 7643 -203.162.78.0/23 7643 -203.162.80.0/23 7643 -203.162.82.0/23 45899 -203.162.84.0/22 45899 -203.162.88.0/21 45899 -203.162.96.0/24 7643 -203.162.97.0/24 45899 -203.162.98.0/23 45899 -203.162.100.0/24 45899 -203.162.101.0/24 7643 -203.162.102.0/23 7643 -203.162.104.0/23 45899 -203.162.106.0/24 7643 -203.162.107.0/24 45899 -203.162.108.0/22 45899 -203.162.112.0/20 45899 -203.162.128.0/20 45899 -203.162.144.0/21 45899 -203.162.152.0/24 45899 -203.162.153.0/24 7643 -203.162.154.0/24 45899 -203.162.155.0/24 7643 -203.162.156.0/22 45899 -203.162.160.0/23 45899 -203.162.162.0/24 45899 -203.162.163.0/24 7643 -203.162.164.0/22 45899 -203.162.168.0/21 45899 -203.162.176.0/20 45899 -203.162.200.0/21 45899 -203.162.224.0/19 45899 -203.163.64.0/20 2687 -203.163.80.0/21 2687 -203.163.88.0/22 2687 -203.163.92.0/23 2687 -203.163.94.0/24 134531 -203.163.95.0/24 2687 -203.163.96.0/23 2687 -203.163.98.0/24 134531 -203.163.99.0/24 2687 -203.163.100.0/22 2687 -203.163.104.0/21 2687 -203.163.112.0/20 2687 -203.163.192.0/24 17408 -203.163.193.0/24 131607 -203.163.194.0/23 10085 -203.163.196.0/22 10085 -203.163.201.0/24 9831 -203.163.202.0/23 10085 -203.163.204.0/22 10085 -203.163.208.0/22 10085 -203.163.214.0/24 10085 -203.163.216.0/24 63199 -203.163.220.0/23 17408 -203.163.222.0/23 10133 -203.163.225.0/24 17488 -203.163.226.0/23 17488 -203.163.228.0/22 17488 -203.163.232.0/21 17488 -203.163.240.0/20 17488 -203.164.0.0/16 4804 -203.165.0.0/16 9824 -203.166.0.0/19 703 -203.166.32.0/21 703 -203.166.40.0/24 703 -203.166.41.0/24 1689 -203.166.42.0/23 703 -203.166.44.0/22 703 -203.166.48.0/22 703 -203.166.52.0/23 1699 -203.166.54.0/24 1699 -203.166.55.0/24 703 -203.166.56.0/21 703 -203.166.64.0/21 12234 -203.166.72.0/23 703 -203.166.74.0/24 12234 -203.166.75.0/24 703 -203.166.76.0/23 703 -203.166.78.0/24 703 -203.166.79.0/24 12234 -203.166.80.0/20 703 -203.166.96.0/22 703 -203.166.100.0/24 703 -203.166.101.0/24 23992 -203.166.102.0/23 703 -203.166.104.0/21 703 -203.166.112.0/20 703 -203.166.128.0/20 10031 -203.166.160.0/22 17621 -203.166.165.0/24 17621 -203.166.166.0/24 17621 -203.166.168.0/24 138421 -203.166.172.0/24 17621 -203.166.176.0/23 17621 -203.166.180.0/24 17621 -203.166.186.0/23 17621 -203.166.188.0/23 17621 -203.166.191.0/24 17621 -203.166.192.0/20 9326 -203.166.208.0/21 18033 -203.166.216.0/24 133736 -203.166.217.0/24 45319 -203.166.218.0/24 38597 -203.166.219.0/24 45657 -203.166.220.0/22 63981 -203.166.224.0/19 7545 -203.167.0.0/22 9334 -203.167.4.0/23 9334 -203.167.6.0/24 9334 -203.167.7.0/24 32613 -203.167.8.0/22 63741 -203.167.12.0/22 63761 -203.167.16.0/24 133200 -203.167.17.0/24 9902 -203.167.18.0/23 9902 -203.167.20.0/24 62468 -203.167.22.0/23 62468 -203.167.32.0/19 10021 -203.167.64.0/18 9658 -203.167.128.0/17 4768 -203.168.0.0/19 137692 -203.168.32.0/24 24395 -203.168.34.0/23 24395 -203.168.36.0/24 24395 -203.168.38.0/23 24395 -203.168.40.0/22 24395 -203.168.44.0/23 24395 -203.168.46.0/24 24395 -203.168.48.0/21 24395 -203.168.56.0/22 24395 -203.168.60.0/24 24395 -203.168.62.0/23 24395 -203.168.64.0/18 18144 -203.168.128.0/19 9513 -203.168.160.0/19 9908 -203.168.192.0/18 9908 -203.169.4.0/23 38427 -203.169.6.0/23 9892 -203.169.8.0/21 17675 -203.169.16.0/21 38172 -203.169.24.0/21 38315 -203.169.32.0/24 17975 -203.169.34.0/23 17975 -203.169.47.0/24 17975 -203.169.48.0/22 4850 -203.169.56.0/23 1273 -203.169.58.0/23 6660 -203.169.60.0/24 1273 -203.169.61.0/24 8576 -203.169.62.0/23 1273 -203.169.64.0/18 3758 -203.169.128.0/18 9293 -203.169.192.0/19 9293 -203.169.224.0/23 9293 -203.169.226.0/24 4645 -203.169.227.0/24 9293 -203.169.228.0/22 9293 -203.169.232.0/21 9293 -203.169.240.0/24 9293 -203.169.241.0/24 4645 -203.169.242.0/24 4645 -203.169.243.0/24 9293 -203.169.244.0/22 9293 -203.169.248.0/22 9293 -203.169.252.0/23 4645 -203.169.254.0/23 9293 -203.170.2.0/23 24479 -203.170.8.0/21 24479 -203.170.16.0/22 45533 -203.170.22.0/24 4637 -203.170.24.0/24 56038 -203.170.25.0/24 45535 -203.170.26.0/23 38247 -203.170.32.0/20 10000 -203.170.48.0/24 17912 -203.170.49.0/24 45561 -203.170.50.0/23 23883 -203.170.52.0/22 3491 -203.170.56.0/24 24183 -203.170.57.0/24 45626 -203.170.58.0/23 4134 -203.170.62.0/24 45466 -203.170.64.0/22 17539 -203.170.68.0/24 17539 -203.170.69.0/24 135632 -203.170.70.0/23 17539 -203.170.72.0/21 17539 -203.170.80.0/21 38719 -203.170.88.0/23 55765 -203.170.90.0/23 7619 -203.170.96.0/19 9569 -203.170.128.0/24 4750 -203.170.129.0/24 9891 -203.170.130.0/24 4750 -203.170.131.0/24 18215 -203.170.132.0/22 4750 -203.170.136.0/21 4750 -203.170.144.0/24 4750 -203.170.145.0/24 9891 -203.170.146.0/23 4750 -203.170.148.0/22 4750 -203.170.152.0/21 4750 -203.170.160.0/23 9891 -203.170.162.0/23 4750 -203.170.164.0/22 4750 -203.170.168.0/24 4750 -203.170.169.0/24 45265 -203.170.170.0/23 4750 -203.170.172.0/23 45265 -203.170.174.0/24 45265 -203.170.175.0/24 136581 -203.170.176.0/21 4750 -203.170.184.0/22 4750 -203.170.188.0/23 4750 -203.170.190.0/24 9891 -203.170.191.0/24 4750 -203.170.192.0/23 9891 -203.170.194.0/24 133163 -203.170.195.0/24 4750 -203.170.196.0/24 133163 -203.170.197.0/24 4750 -203.170.198.0/23 4750 -203.170.200.0/23 4750 -203.170.202.0/24 4750 -203.170.203.0/24 9891 -203.170.204.0/24 9891 -203.170.205.0/24 4750 -203.170.206.0/23 4750 -203.170.208.0/20 4750 -203.170.224.0/22 4750 -203.170.228.0/22 38444 -203.170.232.0/21 4750 -203.170.240.0/20 4750 -203.171.4.0/24 38605 -203.171.5.0/24 17756 -203.171.8.0/21 9997 -203.171.16.0/20 45903 -203.171.32.0/19 18400 -203.171.64.0/18 10113 -203.171.160.0/19 17839 -203.171.192.0/21 133612 -203.171.200.0/24 18291 -203.171.201.0/24 133612 -203.171.202.0/23 133612 -203.171.204.0/22 133612 -203.171.209.0/24 45573 -203.171.210.0/23 17436 -203.171.212.0/22 10010 -203.171.220.0/24 45583 -203.171.221.0/24 45298 -203.171.222.0/24 45574 -203.171.223.0/24 4771 -203.171.224.0/20 37943 -203.171.240.0/21 23860 -203.171.248.0/22 60725 -203.171.252.0/24 38172 -203.171.253.0/24 5666 -203.171.254.0/23 5666 -203.172.0.0/19 7629 -203.172.32.0/21 4750 -203.172.40.0/22 9891 -203.172.44.0/22 4750 -203.172.48.0/20 4750 -203.172.64.0/21 4750 -203.172.72.0/24 4750 -203.172.73.0/24 137392 -203.172.74.0/23 4750 -203.172.76.0/22 4750 -203.172.80.0/20 4750 -203.172.96.0/21 4750 -203.172.104.0/22 4750 -203.172.108.0/24 13660 -203.172.109.0/24 4750 -203.172.110.0/23 4750 -203.172.112.0/20 4750 -203.172.128.0/17 4621 -203.173.0.0/21 7545 -203.173.8.0/21 4739 -203.173.16.0/20 7545 -203.173.36.0/24 4739 -203.173.37.0/24 4802 -203.173.39.0/24 4739 -203.173.40.0/22 4739 -203.173.44.0/22 4802 -203.173.48.0/22 4802 -203.173.53.0/24 4739 -203.173.54.0/23 4739 -203.173.56.0/24 4802 -203.173.57.0/24 4739 -203.173.58.0/24 4739 -203.173.59.0/24 4802 -203.173.60.0/23 4739 -203.173.62.0/24 4739 -203.173.63.0/24 4802 -203.173.80.0/21 38715 -203.173.91.0/24 55669 -203.173.92.0/22 18059 -203.173.96.0/19 38676 -203.173.128.0/17 9500 -203.174.4.0/24 58519 -203.174.5.0/24 133798 -203.174.7.0/24 38834 -203.174.8.0/21 24523 -203.174.24.0/24 45171 -203.174.26.0/24 38818 -203.174.27.0/24 45178 -203.174.28.0/23 136271 -203.174.30.0/23 4648 -203.174.32.0/24 24462 -203.174.33.0/24 9381 -203.174.34.0/23 9381 -203.174.36.0/22 9381 -203.174.40.0/21 9381 -203.174.48.0/20 9381 -203.174.64.0/20 17707 -203.174.80.0/21 38001 -203.174.88.0/21 24290 -203.174.96.0/19 24495 -203.174.128.0/20 2764 -203.174.144.0/22 2764 -203.174.148.0/24 2764 -203.174.149.0/24 17463 -203.174.150.0/23 2764 -203.174.152.0/21 2764 -203.174.160.0/19 2764 -203.174.192.0/19 17698 -203.174.224.0/19 45675 -203.175.0.0/22 23930 -203.175.4.0/22 38000 -203.175.9.0/24 131303 -203.175.10.0/23 131303 -203.175.12.0/22 64021 -203.175.16.0/20 24290 -203.175.32.0/19 17573 -203.175.64.0/24 38710 -203.175.65.0/24 23674 -203.175.66.0/23 23674 -203.175.68.0/22 23674 -203.175.72.0/23 23674 -203.175.74.0/24 55501 -203.175.75.0/24 23674 -203.175.76.0/23 55501 -203.175.78.0/23 23674 -203.175.80.0/20 17511 -203.175.112.0/21 4768 -203.175.120.0/22 23731 -203.175.128.0/19 23842 -203.175.160.0/20 24482 -203.175.176.0/24 45189 -203.175.177.0/24 45591 -203.175.178.0/24 45627 -203.175.179.0/24 58606 -203.175.180.0/24 38271 -203.175.184.0/24 38275 -203.175.185.0/24 9836 -203.175.186.0/23 45763 -203.175.188.0/22 9693 -203.175.192.0/18 4134 -203.176.64.0/19 58519 -203.176.96.0/20 38809 -203.176.112.0/23 45596 -203.176.114.0/24 45597 -203.176.120.0/23 45601 -203.176.122.0/23 135400 -203.176.124.0/22 26658 -203.176.128.0/20 38235 -203.176.144.0/22 18227 -203.176.148.0/23 18227 -203.176.150.0/24 18227 -203.176.151.0/24 9930 -203.176.152.0/24 45875 -203.176.153.0/24 9227 -203.176.154.0/23 10110 -203.176.156.0/23 38874 -203.176.158.0/23 45881 -203.176.168.0/23 24141 -203.176.170.0/24 24141 -203.176.176.0/22 38758 -203.176.180.0/22 23947 -203.176.184.0/22 45269 -203.176.188.0/24 45190 -203.176.190.0/24 45195 -203.176.191.0/24 37973 -203.176.192.0/18 17444 -203.177.0.0/19 4775 -203.177.32.0/21 4775 -203.177.40.0/22 4775 -203.177.44.0/23 132229 -203.177.46.0/23 4775 -203.177.48.0/21 4775 -203.177.56.0/22 4775 -203.177.60.0/24 4775 -203.177.61.0/24 132199 -203.177.62.0/23 4775 -203.177.64.0/20 4775 -203.177.80.0/24 132595 -203.177.81.0/24 24451 -203.177.82.0/23 4775 -203.177.84.0/23 4775 -203.177.86.0/24 17550 -203.177.87.0/24 139798 -203.177.88.0/21 4775 -203.177.96.0/20 4775 -203.177.112.0/21 4775 -203.177.120.0/22 4775 -203.177.124.0/24 132199 -203.177.125.0/24 4775 -203.177.126.0/23 4775 -203.177.128.0/21 4775 -203.177.136.0/22 4775 -203.177.140.0/23 4775 -203.177.142.0/23 132199 -203.177.144.0/23 132199 -203.177.146.0/24 4775 -203.177.147.0/24 132199 -203.177.148.0/24 132199 -203.177.149.0/24 4775 -203.177.150.0/24 4775 -203.177.151.0/24 24179 -203.177.152.0/21 4775 -203.177.160.0/21 4775 -203.177.168.0/23 4775 -203.177.170.0/24 15347 -203.177.171.0/24 132199 -203.177.172.0/22 132199 -203.177.176.0/22 132199 -203.177.180.0/24 132199 -203.177.181.0/24 4775 -203.177.182.0/23 4775 -203.177.184.0/21 4775 -203.177.192.0/21 4775 -203.177.200.0/21 132199 -203.177.208.0/21 4775 -203.177.216.0/23 4775 -203.177.218.0/24 4775 -203.177.219.0/24 45343 -203.177.220.0/22 4775 -203.177.224.0/23 132199 -203.177.226.0/23 4775 -203.177.228.0/24 18115 -203.177.229.0/24 4775 -203.177.230.0/23 4775 -203.177.232.0/21 132199 -203.177.240.0/21 132199 -203.177.248.0/22 132199 -203.177.252.0/23 4775 -203.177.254.0/24 4775 -203.177.255.0/24 17894 -203.178.6.0/24 17511 -203.178.8.0/24 2522 -203.178.12.0/24 10010 -203.178.33.0/24 2516 -203.178.36.0/22 2907 -203.178.44.0/24 2907 -203.178.64.0/18 4680 -203.178.128.0/17 2500 -203.179.0.0/20 9622 -203.179.16.0/20 23776 -203.179.32.0/19 4693 -203.179.64.0/20 2522 -203.179.80.0/20 9600 -203.179.128.0/20 23624 -203.179.192.0/19 7679 -203.179.224.0/20 17947 -203.179.240.0/20 18266 -203.180.0.0/16 2497 -203.181.0.0/18 4685 -203.181.64.0/19 10013 -203.181.96.0/19 2516 -203.181.192.0/23 2907 -203.181.194.0/23 7660 -203.181.196.0/22 2907 -203.181.200.0/21 2907 -203.181.208.0/20 2907 -203.181.224.0/20 2907 -203.181.240.0/21 2907 -203.181.248.0/23 7660 -203.181.250.0/23 2907 -203.181.252.0/22 2907 -203.182.0.0/16 4673 -203.183.0.0/20 4694 -203.183.16.0/21 4694 -203.183.24.0/22 4694 -203.183.28.0/23 4694 -203.183.30.0/23 2554 -203.183.32.0/20 2554 -203.183.48.0/20 4694 -203.183.64.0/19 2554 -203.183.96.0/19 4694 -203.183.128.0/20 4694 -203.183.144.0/21 4694 -203.183.152.0/24 4694 -203.183.153.0/24 4725 -203.183.154.0/23 4725 -203.183.156.0/22 4694 -203.183.160.0/19 4694 -203.183.192.0/21 4694 -203.183.200.0/21 2554 -203.183.208.0/21 4694 -203.183.216.0/22 2554 -203.183.220.0/22 4694 -203.183.224.0/22 4694 -203.183.228.0/22 2554 -203.183.232.0/21 4694 -203.183.240.0/20 2554 -203.184.0.0/18 9790 -203.184.64.0/20 9460 -203.184.96.0/19 7671 -203.184.128.0/23 10032 -203.184.130.0/23 9304 -203.184.132.0/22 9304 -203.184.136.0/21 9304 -203.184.144.0/23 9304 -203.184.146.0/24 9304 -203.184.147.0/24 17794 -203.184.148.0/22 9304 -203.184.152.0/21 9304 -203.184.160.0/19 9304 -203.184.192.0/21 9304 -203.184.200.0/22 9304 -203.184.204.0/22 10032 -203.184.208.0/23 10032 -203.184.210.0/23 9304 -203.184.212.0/22 9304 -203.184.216.0/21 9304 -203.184.224.0/19 9304 -203.185.0.0/18 9269 -203.185.64.0/22 7588 -203.185.68.0/24 3836 -203.185.69.0/24 7588 -203.185.70.0/23 7588 -203.185.72.0/21 7588 -203.185.80.0/21 7588 -203.185.88.0/22 7588 -203.185.92.0/23 3836 -203.185.94.0/23 7588 -203.185.96.0/19 3836 -203.185.129.0/24 38296 -203.185.131.0/24 38296 -203.185.132.0/22 38296 -203.185.137.0/24 38296 -203.185.138.0/24 38296 -203.185.144.0/24 9835 -203.185.160.0/23 55943 -203.185.162.0/23 9471 -203.185.164.0/22 9471 -203.185.168.0/21 9471 -203.185.176.0/24 55943 -203.185.177.0/24 9471 -203.185.178.0/23 9471 -203.185.180.0/22 9471 -203.185.184.0/22 1239 -203.185.188.0/24 9891 -203.185.190.0/24 45188 -203.185.191.0/24 45189 -203.185.192.0/22 2764 -203.185.196.0/24 2764 -203.185.197.0/24 7545 -203.185.198.0/23 7545 -203.185.200.0/23 2764 -203.185.202.0/23 7545 -203.185.204.0/22 7545 -203.185.208.0/24 7545 -203.185.209.0/24 2764 -203.185.210.0/23 2764 -203.185.212.0/22 2764 -203.185.216.0/23 2764 -203.185.218.0/24 7545 -203.185.219.0/24 2764 -203.185.220.0/24 7545 -203.185.221.0/24 2764 -203.185.222.0/23 2764 -203.185.224.0/21 9652 -203.185.232.0/22 9652 -203.185.236.0/22 2764 -203.185.240.0/22 7545 -203.185.244.0/24 7545 -203.185.245.0/24 2764 -203.185.246.0/23 2764 -203.185.248.0/24 2764 -203.185.249.0/24 7545 -203.185.250.0/23 2764 -203.185.252.0/22 2764 -203.186.0.0/19 9269 -203.186.32.0/20 9269 -203.186.48.0/22 9269 -203.186.52.0/23 9269 -203.186.54.0/24 10103 -203.186.55.0/24 9269 -203.186.56.0/21 9269 -203.186.64.0/20 9269 -203.186.80.0/21 9269 -203.186.88.0/22 9269 -203.186.92.0/24 10103 -203.186.93.0/24 9269 -203.186.94.0/23 9269 -203.186.96.0/20 9269 -203.186.112.0/22 9269 -203.186.116.0/23 15290 -203.186.118.0/24 9269 -203.186.119.0/24 15290 -203.186.120.0/21 9269 -203.186.128.0/18 9269 -203.186.192.0/19 9269 -203.186.224.0/20 9269 -203.186.240.0/21 9269 -203.186.248.0/22 9269 -203.186.252.0/23 9269 -203.186.254.0/23 10103 -203.187.0.0/20 9416 -203.187.16.0/21 9416 -203.187.24.0/23 132046 -203.187.26.0/23 9416 -203.187.28.0/22 9416 -203.187.32.0/19 9416 -203.187.64.0/18 9416 -203.187.128.0/19 3300 -203.187.160.0/19 4847 -203.187.192.0/22 18207 -203.187.197.0/24 18207 -203.187.200.0/24 18207 -203.187.202.0/24 18207 -203.187.204.0/24 18207 -203.187.206.0/24 18207 -203.187.208.0/23 18207 -203.187.211.0/24 18207 -203.187.212.0/22 18207 -203.187.216.0/22 18207 -203.187.220.0/23 18207 -203.187.225.0/24 18207 -203.187.226.0/23 18207 -203.187.228.0/24 18207 -203.187.230.0/23 18207 -203.187.232.0/23 18207 -203.187.235.0/24 18207 -203.187.238.0/24 18207 -203.187.240.0/20 18207 -203.188.0.0/20 7693 -203.188.16.0/20 7485 -203.188.32.0/20 7693 -203.188.48.0/20 7485 -203.188.64.0/20 3661 -203.188.80.0/21 4158 -203.188.88.0/22 4158 -203.188.92.0/22 7650 -203.188.96.0/21 7651 -203.188.104.0/21 3363 -203.188.112.0/24 3662 -203.188.113.0/24 7650 -203.188.114.0/23 7650 -203.188.116.0/24 7650 -203.188.117.0/24 3662 -203.188.118.0/24 3662 -203.188.120.0/21 7651 -203.188.128.0/19 9820 -203.188.192.0/20 24506 -203.188.208.0/21 24259 -203.188.216.0/21 9519 -203.188.224.0/21 38207 -203.188.232.0/21 38182 -203.188.240.0/20 9832 -203.189.0.0/23 133775 -203.189.2.0/24 17632 -203.189.3.0/24 9517 -203.189.4.0/24 7631 -203.189.5.0/24 38204 -203.189.6.0/23 133775 -203.189.10.0/24 18194 -203.189.12.0/23 18194 -203.189.15.0/24 18194 -203.189.16.0/21 38006 -203.189.26.0/23 41625 -203.189.28.0/22 38730 -203.189.32.0/19 4685 -203.189.64.0/20 18001 -203.189.80.0/23 55354 -203.189.82.0/24 55354 -203.189.84.0/23 55354 -203.189.87.0/24 55354 -203.189.88.0/23 38765 -203.189.90.0/24 45202 -203.189.91.0/24 45205 -203.189.92.0/24 17436 -203.189.93.0/24 45207 -203.189.94.0/24 7545 -203.189.95.0/24 10106 -203.189.96.0/20 7506 -203.189.116.0/22 134707 -203.189.120.0/22 45304 -203.189.124.0/24 7474 -203.189.125.0/24 133407 -203.189.126.0/23 133407 -203.189.128.0/19 23673 -203.189.160.0/20 17537 -203.189.176.0/22 38015 -203.189.180.0/22 38174 -203.189.184.0/21 17470 -203.189.192.0/19 58519 -203.189.224.0/22 18230 -203.189.228.0/23 18230 -203.189.230.0/24 18230 -203.189.232.0/22 55933 -203.189.236.0/22 24000 -203.189.240.0/22 58852 -203.189.244.0/22 55879 -203.189.248.0/22 58966 -203.189.252.0/22 134375 -203.190.0.0/22 134552 -203.190.4.0/24 55609 -203.190.8.0/21 58768 -203.190.16.0/21 9919 -203.190.24.0/24 45211 -203.190.25.0/24 23921 -203.190.26.0/23 9871 -203.190.32.0/22 59340 -203.190.36.0/23 38510 -203.190.40.0/22 45317 -203.190.44.0/24 45317 -203.190.46.0/23 45317 -203.190.48.0/21 24530 -203.190.56.0/21 54058 -203.190.64.0/19 4637 -203.190.112.0/21 38156 -203.190.120.0/24 24246 -203.190.121.0/24 29791 -203.190.122.0/24 29791 -203.190.123.0/24 24246 -203.190.124.0/22 24246 -203.190.128.0/21 9430 -203.190.136.0/23 9430 -203.190.139.0/24 9430 -203.190.144.0/24 9730 -203.190.145.0/24 9430 -203.190.146.0/23 24397 -203.190.148.0/23 24515 -203.190.150.0/24 9430 -203.190.151.0/24 7633 -203.190.153.0/24 9430 -203.190.154.0/24 9430 -203.190.159.0/24 9430 -203.190.160.0/22 7552 -203.190.164.0/23 7552 -203.190.166.0/23 24086 -203.190.168.0/23 24086 -203.190.170.0/23 7552 -203.190.172.0/23 7552 -203.190.174.0/24 24086 -203.190.175.0/24 7552 -203.190.180.0/24 1217 -203.190.181.0/24 200981 -203.190.192.0/20 9443 -203.190.208.0/21 132161 -203.190.216.0/24 45355 -203.190.218.0/23 45218 -203.190.220.0/24 17748 -203.190.221.0/24 17723 -203.190.222.0/23 24039 -203.190.224.0/23 17819 -203.190.226.0/24 17819 -203.190.228.0/23 17819 -203.190.232.0/21 17819 -203.190.240.0/21 24211 -203.190.248.0/24 38021 -203.190.250.0/23 38040 -203.190.252.0/23 38050 -203.190.254.0/23 24323 -203.191.0.0/23 133775 -203.191.3.0/24 38166 -203.191.4.0/24 38658 -203.191.6.0/24 3949 -203.191.8.0/21 18403 -203.191.17.0/24 56082 -203.191.18.0/23 56082 -203.191.20.0/24 9535 -203.191.21.0/24 56082 -203.191.22.0/24 9535 -203.191.23.0/24 134117 -203.191.24.0/24 58779 -203.191.25.0/24 4134 -203.191.26.0/23 58779 -203.191.28.0/24 134117 -203.191.30.0/24 9535 -203.191.32.0/23 17471 -203.191.34.0/23 38174 -203.191.36.0/22 7699 -203.191.48.0/21 24175 -203.191.56.0/24 17754 -203.191.60.0/22 134334 -203.191.128.0/22 45935 -203.191.132.0/24 4841 -203.191.136.0/21 17931 -203.191.144.0/21 4134 -203.191.160.0/19 9443 -203.191.192.0/20 7545 -203.191.208.0/20 9622 -203.191.224.0/19 17941 -203.192.0.0/24 17781 -203.192.1.0/24 4611 -203.192.2.0/24 4611 -203.192.3.0/24 17781 -203.192.4.0/24 4611 -203.192.5.0/24 17781 -203.192.6.0/23 4611 -203.192.8.0/23 4611 -203.192.10.0/24 4611 -203.192.11.0/24 17781 -203.192.12.0/22 17781 -203.192.16.0/20 17781 -203.192.32.0/20 63951 -203.192.48.0/21 63951 -203.192.56.0/22 63951 -203.192.60.0/23 63951 -203.192.62.0/24 63951 -203.192.63.0/24 42475 -203.192.64.0/21 24130 -203.192.72.0/23 24130 -203.192.74.0/24 24130 -203.192.75.0/24 7545 -203.192.76.0/22 7545 -203.192.80.0/24 24130 -203.192.81.0/24 7545 -203.192.82.0/23 7545 -203.192.84.0/22 24130 -203.192.88.0/23 24130 -203.192.90.0/24 24130 -203.192.91.0/24 7545 -203.192.92.0/22 7545 -203.192.96.0/22 23804 -203.192.100.0/23 23804 -203.192.102.0/24 10013 -203.192.103.0/24 23804 -203.192.104.0/23 10013 -203.192.106.0/24 23804 -203.192.107.0/24 10013 -203.192.108.0/22 10013 -203.192.112.0/20 10013 -203.192.128.0/18 4637 -203.192.192.0/18 17665 -203.193.0.0/21 703 -203.193.8.0/24 395375 -203.193.9.0/24 703 -203.193.10.0/23 703 -203.193.12.0/22 703 -203.193.16.0/23 703 -203.193.18.0/24 703 -203.193.19.0/24 18692 -203.193.20.0/22 703 -203.193.24.0/23 703 -203.193.26.0/24 24304 -203.193.27.0/24 703 -203.193.28.0/22 703 -203.193.32.0/19 703 -203.193.64.0/20 703 -203.193.80.0/24 703 -203.193.81.0/24 1699 -203.193.82.0/23 703 -203.193.84.0/22 703 -203.193.88.0/21 703 -203.193.96.0/22 703 -203.193.100.0/23 703 -203.193.102.0/24 703 -203.193.103.0/24 1699 -203.193.104.0/24 1689 -203.193.105.0/24 703 -203.193.106.0/23 703 -203.193.108.0/22 703 -203.193.112.0/23 1699 -203.193.114.0/24 1699 -203.193.115.0/24 703 -203.193.116.0/22 703 -203.193.120.0/21 703 -203.193.128.0/22 7633 -203.193.132.0/24 9430 -203.193.133.0/24 7633 -203.193.134.0/23 7633 -203.193.136.0/22 7633 -203.193.140.0/23 7633 -203.193.142.0/24 7633 -203.193.143.0/24 24397 -203.193.144.0/21 7633 -203.193.152.0/22 7633 -203.193.156.0/23 7633 -203.193.158.0/24 7633 -203.193.159.0/24 38536 -203.193.160.0/22 7633 -203.193.164.0/23 7633 -203.193.166.0/24 9430 -203.193.167.0/24 7633 -203.193.168.0/23 7633 -203.193.170.0/24 9430 -203.193.171.0/24 7633 -203.193.172.0/23 7633 -203.193.174.0/24 7633 -203.193.175.0/24 132215 -203.193.176.0/23 7633 -203.193.178.0/24 9730 -203.193.179.0/24 9430 -203.193.181.0/24 7633 -203.193.182.0/23 7633 -203.193.184.0/21 7633 -203.193.192.0/19 38611 -203.193.224.0/19 58519 -203.194.0.0/22 9942 -203.194.4.0/24 9942 -203.194.5.0/24 7545 -203.194.6.0/23 7545 -203.194.8.0/22 7545 -203.194.12.0/23 7545 -203.194.14.0/23 9942 -203.194.16.0/22 9942 -203.194.20.0/24 9942 -203.194.21.0/24 7545 -203.194.22.0/23 9942 -203.194.24.0/21 9942 -203.194.32.0/23 9942 -203.194.34.0/23 7545 -203.194.36.0/23 7545 -203.194.38.0/23 9942 -203.194.40.0/21 7545 -203.194.48.0/21 7545 -203.194.56.0/22 9942 -203.194.60.0/23 9942 -203.194.62.0/23 7545 -203.194.64.0/19 2687 -203.194.96.0/20 17665 -203.194.112.0/24 131303 -203.194.114.0/23 131303 -203.194.116.0/22 38203 -203.194.120.0/21 4809 -203.194.128.0/18 9729 -203.194.192.0/19 9729 -203.194.224.0/20 9729 -203.194.240.0/21 9729 -203.194.248.0/22 9729 -203.194.252.0/23 45485 -203.194.254.0/23 9729 -203.195.64.0/19 58519 -203.195.96.0/20 7693 -203.195.112.0/21 4809 -203.195.120.0/22 7979 -203.195.125.0/24 47523 -203.195.127.0/24 38859 -203.195.128.0/17 45090 -203.196.0.0/22 9308 -203.196.4.0/24 4835 -203.196.5.0/24 4808 -203.196.6.0/24 4808 -203.196.7.0/24 4835 -203.196.16.0/21 2514 -203.196.24.0/22 7602 -203.196.32.0/19 45510 -203.196.64.0/20 17534 -203.196.80.0/21 17534 -203.196.90.0/24 131762 -203.196.92.0/22 7604 -203.196.96.0/20 2687 -203.196.112.0/22 2687 -203.196.116.0/23 2687 -203.196.118.0/24 2687 -203.196.119.0/24 134531 -203.196.120.0/21 2687 -203.196.128.0/20 17820 -203.196.150.0/23 17820 -203.196.152.0/22 17820 -203.196.157.0/24 17820 -203.196.159.0/24 17820 -203.196.161.0/24 17820 -203.196.162.0/23 17820 -203.196.164.0/22 17820 -203.196.168.0/22 17820 -203.196.174.0/23 17820 -203.196.176.0/23 17820 -203.196.180.0/22 17820 -203.196.184.0/21 17820 -203.196.192.0/24 9238 -203.196.193.0/24 4755 -203.196.194.0/23 9238 -203.196.196.0/24 4755 -203.196.197.0/24 9238 -203.196.198.0/23 9238 -203.196.200.0/22 9238 -203.196.204.0/23 9238 -203.196.206.0/24 9238 -203.196.207.0/24 4755 -203.196.208.0/20 9238 -203.196.224.0/20 9238 -203.196.240.0/23 9238 -203.196.242.0/23 4755 -203.196.244.0/22 9238 -203.196.248.0/24 9238 -203.196.249.0/24 4755 -203.196.250.0/23 9238 -203.196.252.0/23 9238 -203.196.254.0/24 9238 -203.196.255.0/24 4755 -203.197.0.0/16 4755 -203.198.0.0/20 4760 -203.198.16.0/22 4760 -203.198.20.0/24 20940 -203.198.21.0/24 4760 -203.198.22.0/23 4760 -203.198.24.0/21 4760 -203.198.32.0/21 4760 -203.198.40.0/21 4515 -203.198.48.0/20 4515 -203.198.64.0/20 4515 -203.198.80.0/20 4760 -203.198.96.0/19 4760 -203.198.128.0/20 4760 -203.198.144.0/21 4760 -203.198.152.0/21 4515 -203.198.160.0/19 4515 -203.198.192.0/19 4515 -203.198.224.0/21 4760 -203.198.232.0/22 4760 -203.198.236.0/22 4515 -203.198.240.0/20 4760 -203.199.0.0/19 4755 -203.199.32.0/21 4755 -203.199.40.0/24 4755 -203.199.41.0/24 38529 -203.199.42.0/23 4755 -203.199.44.0/22 4755 -203.199.48.0/20 4755 -203.199.64.0/18 4755 -203.199.128.0/19 4755 -203.199.160.0/20 4755 -203.199.176.0/24 4755 -203.199.177.0/24 38874 -203.199.178.0/23 4755 -203.199.180.0/22 4755 -203.199.184.0/21 4755 -203.199.192.0/19 4755 -203.199.224.0/23 4755 -203.199.226.0/24 4755 -203.199.227.0/24 17908 -203.199.228.0/24 17908 -203.199.229.0/24 4755 -203.199.230.0/23 4755 -203.199.232.0/21 4755 -203.199.240.0/20 4755 -203.200.0.0/18 4755 -203.200.64.0/19 4755 -203.200.96.0/21 4755 -203.200.104.0/22 4755 -203.200.108.0/24 40009 -203.200.109.0/24 4755 -203.200.110.0/23 4755 -203.200.112.0/20 4755 -203.200.128.0/17 4755 -203.201.32.0/22 24155 -203.201.37.0/24 24155 -203.201.39.0/24 24155 -203.201.40.0/24 24155 -203.201.42.0/24 24155 -203.201.48.0/23 45268 -203.201.50.0/23 18103 -203.201.52.0/22 23780 -203.201.56.0/22 45541 -203.201.60.0/22 45648 -203.201.64.0/18 4857 -203.201.128.0/19 9652 -203.201.160.0/22 9794 -203.201.164.0/24 9794 -203.201.166.0/23 9794 -203.201.170.0/23 38778 -203.201.172.0/22 38778 -203.201.176.0/22 18351 -203.201.183.0/24 10143 -203.201.184.0/22 45630 -203.201.188.0/22 17941 -203.201.192.0/21 9238 -203.201.200.0/24 9238 -203.201.201.0/24 4755 -203.201.202.0/23 9238 -203.201.204.0/22 9238 -203.201.208.0/20 9238 -203.201.224.0/19 9238 -203.202.0.0/24 56307 -203.202.1.0/24 7474 -203.202.2.0/23 7474 -203.202.4.0/22 7474 -203.202.8.0/21 7474 -203.202.16.0/20 7474 -203.202.32.0/20 7474 -203.202.48.0/22 7474 -203.202.52.0/23 4804 -203.202.54.0/23 7474 -203.202.56.0/21 7474 -203.202.64.0/18 7474 -203.202.128.0/18 7474 -203.202.192.0/19 7524 -203.202.224.0/21 38176 -203.202.232.0/23 133309 -203.202.234.0/24 14398 -203.202.235.0/24 9241 -203.202.236.0/23 133775 -203.202.240.0/20 24323 -203.203.0.0/17 9416 -203.203.128.0/18 9416 -203.203.192.0/20 9416 -203.203.208.0/21 9416 -203.203.216.0/22 9416 -203.203.220.0/22 38851 -203.203.224.0/19 38851 -203.204.0.0/16 9416 -203.205.0.0/18 45903 -203.205.64.0/19 58519 -203.205.96.0/20 18092 -203.205.112.0/20 2914 -203.205.128.0/19 132203 -203.205.176.0/22 132591 -203.205.188.0/24 132203 -203.205.191.0/24 132203 -203.205.193.0/24 132203 -203.205.194.0/23 132203 -203.205.208.0/22 132203 -203.205.218.0/23 132203 -203.205.220.0/22 132203 -203.205.224.0/24 132203 -203.205.232.0/21 132203 -203.205.240.0/24 132203 -203.205.242.0/24 132203 -203.205.244.0/23 132203 -203.205.248.0/21 132203 -203.206.0.0/19 7545 -203.206.36.0/22 4739 -203.206.40.0/22 4739 -203.206.62.0/24 4802 -203.206.96.0/19 7545 -203.206.128.0/23 4802 -203.206.130.0/24 4802 -203.206.131.0/24 4739 -203.206.132.0/24 4739 -203.206.133.0/24 4802 -203.206.134.0/23 4802 -203.206.136.0/24 4802 -203.206.137.0/24 4739 -203.206.138.0/23 4739 -203.206.140.0/24 4739 -203.206.141.0/24 4802 -203.206.142.0/23 4739 -203.206.144.0/24 4802 -203.206.145.0/24 4739 -203.206.146.0/23 4802 -203.206.148.0/23 4739 -203.206.150.0/24 4739 -203.206.151.0/24 4802 -203.206.152.0/24 4802 -203.206.153.0/24 4739 -203.206.154.0/23 4739 -203.206.156.0/24 4802 -203.206.157.0/24 4739 -203.206.158.0/23 4739 -203.206.160.0/23 4739 -203.206.162.0/24 4739 -203.206.163.0/24 4802 -203.206.164.0/23 4739 -203.206.166.0/23 4802 -203.206.168.0/22 4739 -203.206.172.0/22 4802 -203.206.176.0/22 4802 -203.206.180.0/23 4802 -203.206.182.0/23 4739 -203.206.184.0/22 4739 -203.206.188.0/23 4739 -203.206.190.0/24 4739 -203.206.192.0/22 4739 -203.206.196.0/22 4802 -203.206.200.0/23 4802 -203.206.202.0/23 4739 -203.206.204.0/23 4739 -203.206.206.0/24 4739 -203.206.207.0/24 4802 -203.206.208.0/23 4739 -203.206.210.0/23 4802 -203.206.212.0/23 4739 -203.206.214.0/24 4739 -203.206.217.0/24 4802 -203.206.218.0/23 4739 -203.206.220.0/24 4802 -203.206.221.0/24 4739 -203.206.223.0/24 4802 -203.206.224.0/22 4739 -203.206.228.0/22 4802 -203.206.232.0/21 4802 -203.206.240.0/20 7545 -203.207.16.0/20 18401 -203.207.32.0/22 24155 -203.207.36.0/24 24155 -203.207.38.0/24 24155 -203.207.44.0/22 24154 -203.207.48.0/22 10013 -203.207.52.0/22 18351 -203.207.56.0/22 55699 -203.207.60.0/23 131168 -203.207.62.0/24 45624 -203.207.63.0/24 9891 -203.207.64.0/19 17964 -203.207.96.0/21 4859 -203.207.104.0/22 4859 -203.207.112.0/20 17964 -203.207.128.0/18 17964 -203.207.192.0/21 17964 -203.207.200.0/22 4134 -203.207.208.0/20 17964 -203.207.224.0/19 17964 -203.208.0.0/20 4808 -203.208.21.0/24 45476 -203.208.22.0/24 132204 -203.208.23.0/24 18149 -203.208.24.0/21 23930 -203.208.32.0/19 24424 -203.208.64.0/19 18371 -203.208.96.0/20 18371 -203.208.112.0/23 18371 -203.208.116.0/22 18371 -203.208.120.0/21 18371 -203.208.128.0/24 9911 -203.208.129.0/24 7473 -203.208.130.0/23 7473 -203.208.132.0/22 7473 -203.208.136.0/21 7473 -203.208.144.0/24 9911 -203.208.145.0/24 7473 -203.208.146.0/23 7473 -203.208.148.0/22 7473 -203.208.152.0/22 7473 -203.208.156.0/24 7473 -203.208.157.0/24 63673 -203.208.158.0/23 7473 -203.208.160.0/21 7473 -203.208.168.0/23 7473 -203.208.170.0/24 63673 -203.208.171.0/24 7473 -203.208.172.0/22 7473 -203.208.176.0/21 7473 -203.208.184.0/24 7473 -203.208.185.0/24 7700 -203.208.186.0/23 7473 -203.208.188.0/22 7473 -203.208.192.0/24 7473 -203.208.193.0/24 7700 -203.208.194.0/23 7473 -203.208.196.0/22 7473 -203.208.200.0/24 7473 -203.208.201.0/24 38385 -203.208.202.0/23 7473 -203.208.204.0/22 7473 -203.208.208.0/20 7473 -203.208.224.0/20 9911 -203.208.240.0/21 9911 -203.208.248.0/22 9911 -203.208.252.0/23 9911 -203.208.254.0/24 9911 -203.208.255.0/24 7473 -203.209.0.0/19 7693 -203.209.32.0/20 7693 -203.209.48.0/21 7485 -203.209.56.0/21 7693 -203.209.64.0/20 7693 -203.209.80.0/21 7693 -203.209.88.0/23 7693 -203.209.90.0/24 55514 -203.209.91.0/24 7693 -203.209.92.0/22 7693 -203.209.96.0/24 7693 -203.209.97.0/24 55407 -203.209.98.0/24 55407 -203.209.99.0/24 17980 -203.209.100.0/22 7693 -203.209.104.0/21 7693 -203.209.112.0/21 7693 -203.209.120.0/24 7693 -203.209.121.0/24 133376 -203.209.122.0/23 7693 -203.209.124.0/24 55325 -203.209.125.0/24 7693 -203.209.126.0/23 7693 -203.209.144.0/24 38043 -203.209.145.0/24 23620 -203.209.146.0/24 38043 -203.209.147.0/24 23620 -203.209.148.0/24 38043 -203.209.149.0/24 23620 -203.209.150.0/23 38043 -203.209.152.0/22 38043 -203.209.156.0/23 38043 -203.209.158.0/24 23620 -203.209.159.0/24 38043 -203.209.160.0/20 7604 -203.209.176.0/22 18126 -203.209.180.0/22 24088 -203.209.184.0/22 9621 -203.209.190.0/24 45298 -203.209.191.0/24 45629 -203.209.192.0/22 23681 -203.209.196.0/23 23681 -203.209.198.0/24 23681 -203.209.199.0/24 9667 -203.209.200.0/22 23681 -203.209.204.0/24 23681 -203.209.205.0/24 9667 -203.209.206.0/24 9667 -203.209.207.0/24 23681 -203.209.208.0/22 23681 -203.209.212.0/23 23681 -203.209.214.0/24 23681 -203.209.215.0/24 9667 -203.209.216.0/24 23681 -203.209.217.0/24 9667 -203.209.218.0/24 9667 -203.209.219.0/24 23681 -203.209.220.0/24 23681 -203.209.221.0/24 56163 -203.209.222.0/24 56163 -203.209.223.0/24 23681 -203.209.224.0/19 37963 -203.210.0.0/20 38819 -203.210.16.0/20 18328 -203.210.32.0/19 10164 -203.210.64.0/23 17802 -203.210.66.0/24 17802 -203.210.68.0/23 17802 -203.210.72.0/24 17802 -203.210.76.0/23 17802 -203.210.79.0/24 17802 -203.210.82.0/24 45616 -203.210.83.0/24 45314 -203.210.84.0/22 55699 -203.210.88.0/22 7676 -203.210.96.0/19 7496 -203.210.128.0/17 45899 -203.211.0.0/19 9924 -203.211.32.0/20 18135 -203.211.48.0/21 18135 -203.211.56.0/22 9821 -203.211.64.0/18 45177 -203.211.128.0/19 17547 -203.211.160.0/19 7671 -203.211.192.0/18 7671 -203.212.0.0/21 4808 -203.212.8.0/22 4808 -203.212.16.0/21 24233 -203.212.24.0/22 45243 -203.212.28.0/22 136525 -203.212.32.0/19 4685 -203.212.64.0/23 131256 -203.212.67.0/24 17810 -203.212.68.0/24 17439 -203.212.69.0/24 17810 -203.212.70.0/23 17439 -203.212.73.0/24 17810 -203.212.74.0/24 17810 -203.212.80.0/23 4812 -203.212.96.0/19 9976 -203.212.128.0/19 9443 -203.212.192.0/22 17488 -203.212.197.0/24 17488 -203.212.199.0/24 17488 -203.212.200.0/24 17488 -203.212.202.0/23 17488 -203.212.204.0/22 17488 -203.212.208.0/23 17488 -203.212.210.0/24 17488 -203.212.212.0/22 17488 -203.212.216.0/21 17488 -203.212.224.0/21 17488 -203.212.232.0/23 17488 -203.212.235.0/24 17488 -203.212.236.0/22 17488 -203.212.240.0/22 17488 -203.212.248.0/21 17488 -203.213.0.0/17 7545 -203.213.128.0/19 4804 -203.213.160.0/19 9614 -203.213.224.0/19 24033 -203.214.0.0/23 4739 -203.214.8.0/24 4739 -203.214.9.0/24 4802 -203.214.22.0/23 4739 -203.214.24.0/24 4739 -203.214.32.0/20 4739 -203.214.48.0/20 7545 -203.214.64.0/21 4739 -203.214.72.0/21 7545 -203.214.80.0/20 7545 -203.214.96.0/19 4739 -203.214.130.0/23 18371 -203.214.132.0/22 18371 -203.214.136.0/22 18371 -203.214.140.0/23 18371 -203.214.142.0/23 7545 -203.214.144.0/20 7545 -203.214.160.0/22 9328 -203.214.164.0/24 9328 -203.214.165.0/24 137395 -203.214.166.0/23 58735 -203.214.168.0/21 9328 -203.214.176.0/23 17545 -203.214.178.0/23 9328 -203.214.180.0/22 9328 -203.214.184.0/21 9328 -203.214.192.0/22 9328 -203.214.196.0/24 9328 -203.214.197.0/24 133321 -203.214.198.0/23 133321 -203.214.200.0/22 10022 -203.214.204.0/24 10022 -203.214.205.0/24 9328 -203.214.206.0/23 9328 -203.214.208.0/24 10022 -203.214.209.0/24 9328 -203.214.210.0/23 9328 -203.214.212.0/22 9328 -203.214.216.0/21 9328 -203.214.224.0/19 9328 -203.215.0.0/22 4802 -203.215.4.0/23 4802 -203.215.6.0/23 4739 -203.215.8.0/22 4739 -203.215.12.0/23 4739 -203.215.14.0/24 4739 -203.215.15.0/24 4802 -203.215.16.0/22 4802 -203.215.20.0/24 4802 -203.215.21.0/24 4739 -203.215.22.0/23 4739 -203.215.24.0/23 4802 -203.215.26.0/24 4802 -203.215.27.0/24 4739 -203.215.28.0/24 4739 -203.215.29.0/24 4802 -203.215.30.0/24 4802 -203.215.31.0/24 4739 -203.215.32.0/23 55330 -203.215.34.0/24 55330 -203.215.35.0/24 38056 -203.215.36.0/22 38056 -203.215.40.0/21 38056 -203.215.48.0/24 45315 -203.215.49.0/24 58909 -203.215.50.0/24 45696 -203.215.51.0/24 45635 -203.215.52.0/22 56200 -203.215.56.0/22 10000 -203.215.60.0/22 45558 -203.215.64.0/18 6648 -203.215.128.0/20 17978 -203.215.144.0/21 17978 -203.215.152.0/24 17978 -203.215.153.0/24 6421 -203.215.154.0/23 17978 -203.215.156.0/22 17978 -203.215.160.0/22 17787 -203.215.164.0/24 17787 -203.215.165.0/24 7590 -203.215.166.0/24 17787 -203.215.168.0/22 17787 -203.215.172.0/23 17787 -203.215.174.0/24 7590 -203.215.175.0/24 17787 -203.215.176.0/23 17787 -203.215.178.0/24 7590 -203.215.179.0/24 38713 -203.215.180.0/22 17787 -203.215.184.0/23 38713 -203.215.186.0/24 17787 -203.215.187.0/24 38713 -203.215.188.0/22 38713 -203.215.192.0/19 9710 -203.215.224.0/21 23786 -203.215.232.0/23 4134 -203.215.235.0/24 4134 -203.215.236.0/24 4134 -203.215.240.0/20 9925 -203.216.0.0/17 23720 -203.216.128.0/19 4694 -203.216.160.0/19 38661 -203.216.192.0/19 9607 -203.216.224.0/19 23816 -203.217.0.0/22 4802 -203.217.4.0/24 4739 -203.217.5.0/24 4802 -203.217.6.0/23 4802 -203.217.8.0/22 4739 -203.217.12.0/23 4739 -203.217.15.0/24 4802 -203.217.16.0/21 4802 -203.217.28.0/22 4739 -203.217.32.0/20 7545 -203.217.48.0/21 4739 -203.217.56.0/22 4739 -203.217.60.0/23 4739 -203.217.64.0/19 7545 -203.217.96.0/19 17809 -203.217.128.0/22 45810 -203.217.132.0/23 38505 -203.217.134.0/23 16625 -203.217.136.0/24 132329 -203.217.137.0/24 45813 -203.217.138.0/23 17882 -203.217.140.0/24 45293 -203.217.141.0/24 7545 -203.217.142.0/23 38022 -203.217.144.0/22 45884 -203.217.148.0/23 45828 -203.217.150.0/23 18055 -203.217.156.0/22 10000 -203.217.160.0/23 45827 -203.217.162.0/23 135150 -203.217.168.0/22 131207 -203.217.172.0/23 45711 -203.217.174.0/24 10125 -203.217.176.0/22 17564 -203.217.180.0/22 18134 -203.217.184.0/24 131195 -203.217.186.0/23 131195 -203.217.188.0/22 45712 -203.217.204.0/22 45996 -203.217.208.0/20 45996 -203.217.224.0/19 9764 -203.218.0.0/16 4760 -203.219.0.0/16 7545 -203.220.0.0/24 9942 -203.220.1.0/24 7545 -203.220.2.0/23 9942 -203.220.4.0/24 7545 -203.220.5.0/24 9942 -203.220.6.0/23 9942 -203.220.8.0/24 7545 -203.220.9.0/24 9942 -203.220.10.0/23 17668 -203.220.12.0/22 7545 -203.220.16.0/23 7545 -203.220.18.0/24 17668 -203.220.19.0/24 9942 -203.220.20.0/24 9942 -203.220.21.0/24 7545 -203.220.22.0/23 9942 -203.220.24.0/23 9942 -203.220.26.0/23 7545 -203.220.28.0/22 7545 -203.220.32.0/24 9942 -203.220.33.0/24 7545 -203.220.34.0/24 7545 -203.220.35.0/24 9942 -203.220.36.0/24 7545 -203.220.37.0/24 9942 -203.220.38.0/23 9942 -203.220.40.0/22 7545 -203.220.44.0/23 7545 -203.220.46.0/24 9942 -203.220.47.0/24 7545 -203.220.48.0/24 7545 -203.220.49.0/24 9942 -203.220.50.0/23 9942 -203.220.52.0/23 7545 -203.220.54.0/23 9942 -203.220.56.0/23 7545 -203.220.58.0/24 9942 -203.220.59.0/24 7545 -203.220.60.0/23 9942 -203.220.62.0/23 7545 -203.220.64.0/24 9942 -203.220.65.0/24 7545 -203.220.66.0/23 9942 -203.220.68.0/22 7545 -203.220.72.0/23 7545 -203.220.74.0/23 9942 -203.220.76.0/23 7545 -203.220.78.0/23 9942 -203.220.80.0/22 7545 -203.220.84.0/23 7545 -203.220.86.0/24 7545 -203.220.87.0/24 9942 -203.220.88.0/21 7545 -203.220.96.0/21 7545 -203.220.104.0/22 7545 -203.220.108.0/23 7545 -203.220.110.0/23 17668 -203.220.112.0/22 9942 -203.220.116.0/22 7545 -203.220.120.0/21 7545 -203.220.128.0/19 7545 -203.220.160.0/24 9942 -203.220.161.0/24 7545 -203.220.162.0/23 7545 -203.220.164.0/22 7545 -203.220.168.0/21 7545 -203.220.176.0/20 7545 -203.220.192.0/20 7545 -203.220.208.0/23 7545 -203.220.210.0/23 9942 -203.220.212.0/22 7545 -203.220.216.0/24 9942 -203.220.217.0/24 7545 -203.220.218.0/23 7545 -203.220.220.0/22 7545 -203.220.224.0/21 7545 -203.220.232.0/22 7545 -203.220.236.0/22 9942 -203.220.240.0/20 9942 -203.221.0.0/22 9942 -203.221.4.0/23 7545 -203.221.6.0/24 7545 -203.221.7.0/24 9942 -203.221.8.0/22 9942 -203.221.12.0/22 7545 -203.221.16.0/22 7545 -203.221.20.0/23 7545 -203.221.22.0/24 9942 -203.221.23.0/24 7545 -203.221.24.0/23 7545 -203.221.26.0/23 9942 -203.221.28.0/22 7545 -203.221.32.0/23 7545 -203.221.34.0/23 9942 -203.221.36.0/23 9942 -203.221.38.0/23 7545 -203.221.40.0/24 9942 -203.221.41.0/24 7545 -203.221.42.0/23 7545 -203.221.44.0/24 9942 -203.221.45.0/24 7545 -203.221.46.0/24 9942 -203.221.47.0/24 7545 -203.221.48.0/23 7545 -203.221.50.0/24 9942 -203.221.51.0/24 7545 -203.221.52.0/22 7545 -203.221.56.0/22 7545 -203.221.60.0/24 7545 -203.221.61.0/24 9942 -203.221.62.0/23 7545 -203.221.64.0/22 7545 -203.221.68.0/23 9942 -203.221.70.0/23 7545 -203.221.72.0/23 7545 -203.221.74.0/24 9942 -203.221.75.0/24 7545 -203.221.76.0/23 9942 -203.221.78.0/23 7545 -203.221.80.0/22 9942 -203.221.84.0/23 7545 -203.221.86.0/24 7545 -203.221.87.0/24 9942 -203.221.88.0/23 7545 -203.221.90.0/23 9942 -203.221.92.0/23 7545 -203.221.94.0/23 9942 -203.221.96.0/24 9942 -203.221.97.0/24 7545 -203.221.98.0/24 9942 -203.221.99.0/24 7545 -203.221.100.0/22 9942 -203.221.104.0/23 7545 -203.221.106.0/24 7545 -203.221.107.0/24 9942 -203.221.108.0/24 7545 -203.221.109.0/24 9942 -203.221.110.0/23 7545 -203.221.112.0/23 7545 -203.221.114.0/24 9942 -203.221.115.0/24 7545 -203.221.116.0/22 7545 -203.221.120.0/23 7545 -203.221.122.0/24 7545 -203.221.123.0/24 9942 -203.221.124.0/22 7545 -203.221.128.0/23 7545 -203.221.130.0/24 9942 -203.221.131.0/24 7545 -203.221.132.0/22 7545 -203.221.136.0/22 7545 -203.221.140.0/22 9942 -203.221.144.0/22 7545 -203.221.148.0/24 7545 -203.221.149.0/24 9942 -203.221.150.0/23 7545 -203.221.152.0/22 7545 -203.221.156.0/23 7545 -203.221.158.0/23 9942 -203.221.160.0/23 7545 -203.221.162.0/23 9942 -203.221.164.0/24 9942 -203.221.165.0/24 7545 -203.221.166.0/23 7545 -203.221.168.0/24 9942 -203.221.169.0/24 7545 -203.221.170.0/24 7545 -203.221.171.0/24 9942 -203.221.172.0/23 9942 -203.221.174.0/24 9942 -203.221.175.0/24 7545 -203.221.176.0/23 7545 -203.221.178.0/24 9942 -203.221.179.0/24 7545 -203.221.180.0/24 7545 -203.221.181.0/24 9942 -203.221.182.0/24 7545 -203.221.183.0/24 9942 -203.221.184.0/23 9942 -203.221.186.0/24 9942 -203.221.187.0/24 7545 -203.221.188.0/22 7545 -203.221.192.0/21 7545 -203.221.200.0/23 9942 -203.221.202.0/23 7545 -203.221.204.0/23 7545 -203.221.206.0/24 9942 -203.221.207.0/24 7545 -203.221.208.0/23 9942 -203.221.210.0/23 7545 -203.221.212.0/22 7545 -203.221.216.0/23 9942 -203.221.218.0/24 7545 -203.221.219.0/24 9942 -203.221.220.0/24 7545 -203.221.221.0/24 9942 -203.221.222.0/23 9942 -203.221.224.0/23 7545 -203.221.226.0/23 9942 -203.221.228.0/23 7545 -203.221.230.0/24 9942 -203.221.231.0/24 7545 -203.221.232.0/23 9942 -203.221.234.0/24 9942 -203.221.235.0/24 7545 -203.221.236.0/24 7545 -203.221.237.0/24 9942 -203.221.238.0/23 7545 -203.221.240.0/24 7545 -203.221.241.0/24 9942 -203.221.242.0/23 7545 -203.221.244.0/23 9942 -203.221.246.0/23 7545 -203.221.248.0/24 7545 -203.221.249.0/24 9942 -203.221.250.0/23 9942 -203.221.252.0/23 9942 -203.221.254.0/24 9942 -203.221.255.0/24 17668 -203.222.0.0/19 17809 -203.222.32.0/20 1239 -203.222.48.0/23 1239 -203.222.50.0/24 1239 -203.222.51.0/24 24304 -203.222.52.0/22 1239 -203.222.56.0/21 1239 -203.222.64.0/22 17734 -203.222.68.0/22 38333 -203.222.72.0/22 7579 -203.222.76.0/23 17734 -203.222.78.0/24 7579 -203.222.79.0/24 38333 -203.222.80.0/23 38333 -203.222.82.0/24 38333 -203.222.83.0/24 17734 -203.222.84.0/23 7579 -203.222.86.0/23 38333 -203.222.88.0/24 17734 -203.222.89.0/24 38333 -203.222.90.0/23 17734 -203.222.92.0/22 17734 -203.222.96.0/21 17734 -203.222.104.0/21 38333 -203.222.112.0/22 17734 -203.222.116.0/22 7579 -203.222.120.0/21 17734 -203.222.128.0/19 7545 -203.222.160.0/19 1239 -203.222.192.0/20 17988 -203.222.208.0/20 18092 -203.222.224.0/19 4723 -203.223.17.0/24 136167 -203.223.18.0/23 136167 -203.223.20.0/24 136167 -203.223.21.0/24 4809 -203.223.23.0/24 4809 -203.223.24.0/21 9999 -203.223.32.0/20 17726 -203.223.48.0/20 17955 -203.223.80.0/21 17673 -203.223.90.0/23 16625 -203.223.92.0/22 45245 -203.223.96.0/19 18313 -203.223.128.0/19 24218 -203.223.160.0/20 23966 -203.223.176.0/24 45636 -203.223.177.0/24 4766 -203.223.178.0/24 45640 -203.223.179.0/24 4826 -203.223.180.0/22 17698 -203.223.184.0/23 1221 -203.223.188.0/22 45536 -203.224.0.0/16 9273 -203.225.0.0/16 4766 -203.226.0.0/19 45385 -203.226.33.0/24 45385 -203.226.34.0/23 45385 -203.226.36.0/22 45385 -203.226.40.0/21 45385 -203.226.49.0/24 45385 -203.226.50.0/23 45385 -203.226.52.0/22 45385 -203.226.56.0/21 45385 -203.226.64.0/18 10194 -203.226.128.0/23 23582 -203.226.130.0/24 23582 -203.226.135.0/24 23582 -203.226.136.0/21 23582 -203.226.144.0/23 23582 -203.226.151.0/24 23582 -203.226.154.0/24 23582 -203.226.167.0/24 23582 -203.226.173.0/24 23582 -203.226.177.0/24 23582 -203.226.190.0/23 23582 -203.226.192.0/19 9644 -203.226.224.0/20 9644 -203.226.240.0/21 9644 -203.226.248.0/22 9644 -203.226.253.0/24 4792 -203.226.254.0/23 4792 -203.227.0.0/21 9848 -203.227.8.0/22 18300 -203.227.12.0/22 9848 -203.227.16.0/23 9848 -203.227.18.0/24 9848 -203.227.19.0/24 9493 -203.227.20.0/22 9848 -203.227.24.0/21 9848 -203.227.32.0/19 9848 -203.227.64.0/20 9848 -203.227.80.0/23 9848 -203.227.82.0/24 38092 -203.227.83.0/24 9848 -203.227.84.0/22 9848 -203.227.88.0/21 9848 -203.227.96.0/20 9848 -203.227.112.0/23 9848 -203.227.114.0/23 9319 -203.227.116.0/22 9319 -203.227.120.0/21 9319 -203.227.128.0/21 9848 -203.227.136.0/23 9848 -203.227.138.0/23 9319 -203.227.140.0/23 9319 -203.227.142.0/23 9848 -203.227.144.0/20 9848 -203.227.160.0/22 9319 -203.227.164.0/22 9848 -203.227.168.0/21 9848 -203.227.176.0/20 38669 -203.227.192.0/21 9848 -203.227.200.0/24 9848 -203.227.201.0/24 9697 -203.227.202.0/23 23584 -203.227.204.0/22 23584 -203.227.208.0/20 23584 -203.227.224.0/23 23584 -203.227.226.0/23 9848 -203.227.228.0/22 9848 -203.227.232.0/24 17592 -203.227.233.0/24 9848 -203.227.234.0/23 9848 -203.227.236.0/22 9848 -203.227.240.0/20 9848 -203.228.0.0/18 4766 -203.228.64.0/19 4766 -203.228.96.0/21 4766 -203.228.104.0/24 18324 -203.228.105.0/24 4766 -203.228.106.0/23 4766 -203.228.108.0/22 4766 -203.228.112.0/20 4766 -203.228.128.0/21 4670 -203.228.136.0/22 7562 -203.228.140.0/23 7562 -203.228.142.0/23 4670 -203.228.144.0/22 4670 -203.228.148.0/23 4664 -203.228.150.0/23 4670 -203.228.152.0/24 9319 -203.228.153.0/24 4670 -203.228.154.0/23 4670 -203.228.156.0/22 4670 -203.228.160.0/21 4670 -203.228.168.0/22 4670 -203.228.172.0/23 18294 -203.228.174.0/23 4670 -203.228.176.0/23 4670 -203.228.178.0/24 4670 -203.228.179.0/24 9319 -203.228.180.0/22 4670 -203.228.184.0/21 4670 -203.228.192.0/21 4670 -203.228.200.0/22 4670 -203.228.204.0/23 4670 -203.228.206.0/24 38098 -203.228.207.0/24 4670 -203.228.208.0/21 4670 -203.228.216.0/24 9842 -203.228.217.0/24 4670 -203.228.218.0/23 4670 -203.228.220.0/22 4670 -203.228.224.0/23 4670 -203.228.226.0/24 9842 -203.228.227.0/24 4670 -203.228.228.0/22 4670 -203.228.232.0/21 4670 -203.228.240.0/20 4670 -203.229.0.0/19 9689 -203.229.32.0/23 9689 -203.229.34.0/24 9689 -203.229.35.0/24 38103 -203.229.36.0/22 9689 -203.229.40.0/21 9689 -203.229.48.0/22 9689 -203.229.52.0/23 9689 -203.229.54.0/24 38097 -203.229.55.0/24 9689 -203.229.56.0/21 9689 -203.229.64.0/18 38095 -203.229.128.0/20 10162 -203.229.144.0/20 4766 -203.229.160.0/20 4766 -203.229.176.0/21 4766 -203.229.184.0/22 4766 -203.229.188.0/23 4766 -203.229.190.0/24 4766 -203.229.191.0/24 38676 -203.229.192.0/21 4766 -203.229.200.0/21 55586 -203.229.208.0/22 4766 -203.229.212.0/23 4766 -203.229.214.0/24 4766 -203.229.215.0/24 9696 -203.229.216.0/21 4766 -203.229.224.0/22 4766 -203.229.228.0/24 38676 -203.229.229.0/24 4766 -203.229.230.0/23 4766 -203.229.232.0/21 4766 -203.229.240.0/24 4766 -203.229.241.0/24 17599 -203.229.242.0/24 17599 -203.229.243.0/24 4766 -203.229.244.0/24 4766 -203.229.245.0/24 18325 -203.229.246.0/23 4766 -203.229.248.0/24 4766 -203.229.249.0/24 45989 -203.229.250.0/23 4766 -203.229.252.0/23 17599 -203.229.254.0/23 4766 -203.230.4.0/23 45363 -203.230.6.0/24 1237 -203.230.8.0/22 1237 -203.230.12.0/22 45363 -203.230.16.0/23 1237 -203.230.18.0/23 45363 -203.230.20.0/23 45363 -203.230.22.0/23 1237 -203.230.24.0/21 1237 -203.230.32.0/20 17595 -203.230.48.0/23 18297 -203.230.52.0/22 18297 -203.230.56.0/22 18297 -203.230.60.0/22 1237 -203.230.64.0/20 1237 -203.230.80.0/20 9318 -203.230.96.0/21 10045 -203.230.104.0/22 10045 -203.230.108.0/22 1237 -203.230.112.0/23 17868 -203.230.114.0/24 9318 -203.230.115.0/24 17868 -203.230.116.0/22 1237 -203.230.120.0/21 1237 -203.230.128.0/21 4766 -203.230.136.0/21 9523 -203.230.144.0/21 9523 -203.230.152.0/22 10046 -203.230.156.0/22 3786 -203.230.160.0/19 45377 -203.230.192.0/22 18329 -203.230.196.0/23 18329 -203.230.198.0/24 18329 -203.230.199.0/24 3786 -203.230.200.0/21 4766 -203.230.208.0/23 10053 -203.230.210.0/23 4766 -203.230.212.0/22 4766 -203.230.216.0/23 4766 -203.230.218.0/24 3786 -203.230.219.0/24 4766 -203.230.220.0/22 4766 -203.230.224.0/21 23714 -203.230.232.0/22 23714 -203.230.236.0/22 9782 -203.230.240.0/21 18023 -203.230.248.0/22 18023 -203.230.252.0/23 18023 -203.230.254.0/23 4766 -203.231.0.0/21 9848 -203.231.8.0/22 9848 -203.231.12.0/23 18309 -203.231.14.0/23 9848 -203.231.16.0/23 9848 -203.231.18.0/24 3608 -203.231.19.0/24 9848 -203.231.20.0/22 9848 -203.231.24.0/21 9848 -203.231.32.0/20 9848 -203.231.48.0/23 9684 -203.231.50.0/23 17837 -203.231.52.0/22 9848 -203.231.56.0/21 9848 -203.231.64.0/18 9848 -203.231.128.0/20 9848 -203.231.144.0/24 18305 -203.231.145.0/24 9848 -203.231.146.0/23 18305 -203.231.148.0/24 9848 -203.231.149.0/24 18305 -203.231.150.0/23 9848 -203.231.152.0/23 18300 -203.231.154.0/23 9848 -203.231.156.0/22 9848 -203.231.160.0/19 9848 -203.231.192.0/19 9848 -203.231.224.0/20 17881 -203.231.240.0/20 9848 -203.232.0.0/17 4766 -203.232.128.0/21 10071 -203.232.136.0/22 10071 -203.232.140.0/22 9859 -203.232.144.0/22 4766 -203.232.148.0/22 18331 -203.232.152.0/21 4766 -203.232.160.0/24 4766 -203.232.161.0/24 55611 -203.232.162.0/23 55611 -203.232.164.0/22 4766 -203.232.168.0/22 4766 -203.232.172.0/23 10073 -203.232.174.0/24 10073 -203.232.175.0/24 3786 -203.232.176.0/22 10073 -203.232.180.0/23 55611 -203.232.182.0/23 4766 -203.232.184.0/23 4766 -203.232.186.0/24 55611 -203.232.187.0/24 4766 -203.232.188.0/22 7560 -203.232.192.0/20 4766 -203.232.208.0/21 10198 -203.232.216.0/21 4766 -203.232.224.0/20 9572 -203.232.240.0/21 9274 -203.232.248.0/22 38131 -203.232.252.0/23 38131 -203.232.254.0/23 4766 -203.233.0.0/21 3786 -203.233.8.0/24 3786 -203.233.9.0/24 18373 -203.233.10.0/23 3786 -203.233.12.0/22 3786 -203.233.16.0/22 3786 -203.233.20.0/23 3786 -203.233.22.0/24 23573 -203.233.23.0/24 3786 -203.233.24.0/24 3786 -203.233.25.0/24 38707 -203.233.26.0/23 3786 -203.233.28.0/22 3786 -203.233.32.0/21 3786 -203.233.40.0/23 3786 -203.233.42.0/24 3786 -203.233.43.0/24 18295 -203.233.44.0/24 18295 -203.233.45.0/24 3786 -203.233.46.0/23 3786 -203.233.48.0/24 38707 -203.233.49.0/24 3786 -203.233.50.0/23 3786 -203.233.52.0/23 3786 -203.233.54.0/23 17841 -203.233.56.0/23 17841 -203.233.58.0/23 3786 -203.233.60.0/22 3786 -203.233.64.0/21 3786 -203.233.72.0/24 38428 -203.233.73.0/24 3786 -203.233.74.0/24 38428 -203.233.75.0/24 3786 -203.233.76.0/22 3786 -203.233.80.0/23 3786 -203.233.82.0/24 9684 -203.233.83.0/24 3786 -203.233.84.0/24 3786 -203.233.85.0/24 9968 -203.233.86.0/23 3786 -203.233.88.0/23 3786 -203.233.90.0/24 3786 -203.233.91.0/24 9693 -203.233.92.0/22 3786 -203.233.96.0/20 3786 -203.233.112.0/22 3786 -203.233.116.0/24 38707 -203.233.117.0/24 3786 -203.233.118.0/23 3786 -203.233.120.0/22 3786 -203.233.124.0/24 38707 -203.233.125.0/24 3786 -203.233.126.0/23 3786 -203.233.128.0/24 3786 -203.233.156.0/24 1237 -203.233.165.0/24 3786 -203.233.192.0/19 7557 -203.233.224.0/20 7557 -203.234.0.0/21 4766 -203.234.8.0/21 9782 -203.234.16.0/20 18164 -203.234.32.0/23 4766 -203.234.34.0/24 4766 -203.234.35.0/24 3786 -203.234.36.0/23 10156 -203.234.38.0/23 4766 -203.234.40.0/22 4766 -203.234.44.0/22 17599 -203.234.48.0/20 9954 -203.234.64.0/23 3786 -203.234.66.0/23 4766 -203.234.68.0/22 3786 -203.234.72.0/21 18035 -203.234.80.0/24 4766 -203.234.81.0/24 3786 -203.234.82.0/24 3786 -203.234.83.0/24 4766 -203.234.84.0/22 9859 -203.234.88.0/22 4766 -203.234.92.0/22 18023 -203.234.96.0/22 4766 -203.234.100.0/24 4766 -203.234.101.0/24 38692 -203.234.102.0/23 4766 -203.234.104.0/23 4766 -203.234.106.0/24 4766 -203.234.107.0/24 38692 -203.234.108.0/22 4766 -203.234.112.0/22 4766 -203.234.116.0/23 3786 -203.234.118.0/24 3786 -203.234.119.0/24 4766 -203.234.120.0/22 55622 -203.234.124.0/23 55622 -203.234.126.0/23 3786 -203.234.128.0/22 4766 -203.234.132.0/24 10185 -203.234.133.0/24 4766 -203.234.134.0/23 4766 -203.234.136.0/21 4766 -203.234.144.0/21 4766 -203.234.152.0/24 17863 -203.234.153.0/24 4766 -203.234.154.0/23 4766 -203.234.156.0/22 4766 -203.234.160.0/23 4766 -203.234.162.0/24 4766 -203.234.163.0/24 9522 -203.234.164.0/22 4766 -203.234.168.0/22 4766 -203.234.172.0/23 4766 -203.234.174.0/23 17855 -203.234.176.0/20 4766 -203.234.192.0/21 4766 -203.234.200.0/24 4766 -203.234.201.0/24 55592 -203.234.202.0/23 4766 -203.234.204.0/22 4766 -203.234.208.0/24 55599 -203.234.209.0/24 4766 -203.234.210.0/23 4766 -203.234.212.0/23 9491 -203.234.214.0/23 4766 -203.234.216.0/24 55592 -203.234.217.0/24 4766 -203.234.218.0/24 4766 -203.234.219.0/24 38663 -203.234.220.0/22 4766 -203.234.224.0/21 4766 -203.234.232.0/22 4766 -203.234.236.0/24 9318 -203.234.237.0/24 4766 -203.234.238.0/23 4766 -203.234.240.0/24 55592 -203.234.241.0/24 9318 -203.234.242.0/24 4766 -203.234.243.0/24 55592 -203.234.244.0/22 4766 -203.234.248.0/21 4766 -203.235.0.0/23 9959 -203.235.2.0/24 9959 -203.235.3.0/24 9848 -203.235.4.0/22 9959 -203.235.8.0/24 9848 -203.235.9.0/24 9959 -203.235.10.0/23 9959 -203.235.12.0/24 9526 -203.235.13.0/24 9848 -203.235.14.0/24 9848 -203.235.15.0/24 38686 -203.235.16.0/24 9697 -203.235.17.0/24 9848 -203.235.18.0/23 9848 -203.235.20.0/23 9848 -203.235.22.0/23 9973 -203.235.24.0/21 9848 -203.235.32.0/20 9848 -203.235.48.0/24 9979 -203.235.49.0/24 9848 -203.235.50.0/23 9848 -203.235.52.0/23 9848 -203.235.54.0/24 45968 -203.235.55.0/24 9848 -203.235.56.0/21 9848 -203.235.64.0/23 9848 -203.235.66.0/24 9848 -203.235.67.0/24 17592 -203.235.68.0/24 17592 -203.235.69.0/24 9848 -203.235.70.0/23 9848 -203.235.72.0/24 17592 -203.235.73.0/24 9848 -203.235.74.0/23 9848 -203.235.76.0/23 9848 -203.235.78.0/24 9959 -203.235.79.0/24 9848 -203.235.80.0/24 9848 -203.235.81.0/24 38092 -203.235.82.0/23 9848 -203.235.84.0/22 9848 -203.235.88.0/21 9848 -203.235.96.0/20 9848 -203.235.112.0/22 9848 -203.235.116.0/24 17881 -203.235.117.0/24 9848 -203.235.118.0/23 9848 -203.235.120.0/24 9848 -203.235.121.0/24 17881 -203.235.122.0/24 17881 -203.235.123.0/24 9848 -203.235.124.0/22 9848 -203.235.128.0/18 9848 -203.235.192.0/21 10049 -203.235.200.0/23 9318 -203.235.204.0/22 9318 -203.235.208.0/20 10049 -203.235.224.0/19 10049 -203.236.0.0/19 9644 -203.236.32.0/21 9644 -203.236.40.0/22 9644 -203.236.44.0/22 4766 -203.236.48.0/24 55592 -203.236.49.0/24 4766 -203.236.50.0/23 4766 -203.236.52.0/22 4766 -203.236.56.0/21 4766 -203.236.64.0/21 9696 -203.236.72.0/23 9696 -203.236.74.0/24 9490 -203.236.75.0/24 4766 -203.236.76.0/22 9696 -203.236.80.0/24 9575 -203.236.81.0/24 4766 -203.236.82.0/23 4766 -203.236.84.0/24 45399 -203.236.85.0/24 4766 -203.236.86.0/23 4766 -203.236.88.0/21 4766 -203.236.96.0/20 4766 -203.236.112.0/21 4766 -203.236.120.0/24 45989 -203.236.121.0/24 4766 -203.236.122.0/23 4766 -203.236.124.0/22 4766 -203.236.128.0/22 9848 -203.236.132.0/23 9848 -203.236.134.0/24 9848 -203.236.135.0/24 9845 -203.236.136.0/24 9848 -203.236.137.0/24 9770 -203.236.138.0/23 9848 -203.236.140.0/22 9848 -203.236.144.0/20 9848 -203.236.160.0/20 9848 -203.236.176.0/21 9848 -203.236.184.0/22 9848 -203.236.188.0/22 23584 -203.236.192.0/18 9286 -203.237.0.0/19 10166 -203.237.32.0/19 18297 -203.237.64.0/19 9778 -203.237.96.0/19 9754 -203.237.128.0/20 23983 -203.237.144.0/21 23983 -203.237.152.0/23 23983 -203.237.154.0/23 4766 -203.237.156.0/22 4766 -203.237.160.0/21 4766 -203.237.168.0/21 18031 -203.237.176.0/21 18329 -203.237.184.0/22 17614 -203.237.188.0/23 18319 -203.237.190.0/24 4766 -203.237.191.0/24 3786 -203.237.192.0/21 3786 -203.237.200.0/24 9318 -203.237.201.0/24 18329 -203.237.202.0/23 18026 -203.237.204.0/22 4766 -203.237.208.0/20 4766 -203.237.224.0/21 4766 -203.237.232.0/21 3786 -203.237.240.0/21 9318 -203.237.248.0/23 9318 -203.237.250.0/24 4766 -203.237.251.0/24 23586 -203.237.252.0/23 4766 -203.237.254.0/23 38694 -203.238.0.0/19 9848 -203.238.32.0/22 9848 -203.238.36.0/24 17837 -203.238.37.0/24 9571 -203.238.38.0/23 9848 -203.238.40.0/21 9848 -203.238.48.0/21 23584 -203.238.56.0/24 23584 -203.238.57.0/24 9492 -203.238.58.0/24 9492 -203.238.59.0/24 23584 -203.238.60.0/22 23584 -203.238.64.0/20 9848 -203.238.80.0/22 23584 -203.238.84.0/23 23584 -203.238.86.0/24 23584 -203.238.87.0/24 9848 -203.238.88.0/21 9848 -203.238.96.0/19 9848 -203.238.128.0/22 4669 -203.238.133.0/24 4669 -203.238.134.0/23 4669 -203.238.136.0/22 4669 -203.238.140.0/24 4669 -203.238.144.0/23 4669 -203.238.148.0/24 4669 -203.238.150.0/24 4669 -203.238.160.0/20 17841 -203.238.176.0/24 9286 -203.238.177.0/24 46003 -203.238.178.0/23 9286 -203.238.180.0/24 45991 -203.238.181.0/24 9286 -203.238.182.0/23 46003 -203.238.184.0/21 9286 -203.238.192.0/21 18305 -203.238.200.0/22 18305 -203.238.220.0/22 18305 -203.238.224.0/19 10174 -203.239.0.0/22 9848 -203.239.4.0/23 9848 -203.239.6.0/24 9848 -203.239.7.0/24 45373 -203.239.8.0/21 9848 -203.239.16.0/21 9848 -203.239.24.0/24 9848 -203.239.25.0/24 38686 -203.239.26.0/23 9848 -203.239.28.0/22 9848 -203.239.32.0/23 9848 -203.239.34.0/24 9577 -203.239.35.0/24 9848 -203.239.36.0/22 9848 -203.239.40.0/21 9848 -203.239.48.0/21 9848 -203.239.56.0/23 4766 -203.239.58.0/23 9848 -203.239.60.0/24 10193 -203.239.61.0/24 9848 -203.239.62.0/23 9848 -203.239.64.0/19 9848 -203.239.96.0/22 9848 -203.239.100.0/24 9527 -203.239.101.0/24 9848 -203.239.102.0/23 9848 -203.239.104.0/21 9848 -203.239.112.0/22 9848 -203.239.116.0/22 9697 -203.239.120.0/21 9848 -203.239.128.0/18 4663 -203.239.192.0/20 9524 -203.239.208.0/21 9524 -203.239.216.0/21 9953 -203.239.251.0/24 4766 -203.239.254.0/24 4766 -203.240.64.0/23 17865 -203.240.67.0/24 17865 -203.240.68.0/24 17865 -203.240.69.0/24 9320 -203.240.71.0/24 9320 -203.240.73.0/24 17865 -203.240.74.0/23 17865 -203.240.80.0/23 17869 -203.240.82.0/23 9320 -203.240.96.0/23 17865 -203.240.128.0/24 9645 -203.240.129.0/24 4670 -203.240.130.0/23 4670 -203.240.132.0/22 4670 -203.240.136.0/21 4670 -203.240.144.0/22 4670 -203.240.148.0/24 4670 -203.240.149.0/24 45977 -203.240.150.0/23 45977 -203.240.152.0/22 4670 -203.240.156.0/23 4670 -203.240.158.0/24 4670 -203.240.159.0/24 9980 -203.240.191.0/24 3786 -203.240.192.0/18 4670 -203.241.0.0/19 18305 -203.241.32.0/21 9775 -203.241.40.0/21 1237 -203.241.52.0/24 17841 -203.241.54.0/23 10044 -203.241.57.0/24 10044 -203.241.59.0/24 10044 -203.241.60.0/23 10044 -203.241.70.0/24 10044 -203.241.84.0/22 1237 -203.241.88.0/21 1237 -203.241.96.0/20 1237 -203.241.112.0/21 1237 -203.241.120.0/22 1237 -203.241.124.0/22 9949 -203.241.128.0/22 9949 -203.241.132.0/24 6619 -203.241.134.0/23 6619 -203.241.144.0/21 6619 -203.241.154.0/24 6619 -203.241.160.0/22 6619 -203.241.164.0/23 1237 -203.241.170.0/23 1237 -203.241.172.0/23 1237 -203.241.174.0/24 1237 -203.241.176.0/20 9774 -203.241.192.0/20 9870 -203.241.209.0/24 4766 -203.241.214.0/23 18401 -203.241.220.0/22 1237 -203.241.224.0/19 9780 -203.242.0.0/22 17841 -203.242.4.0/24 17841 -203.242.32.0/20 10189 -203.242.48.0/21 10189 -203.242.56.0/22 10189 -203.242.60.0/23 10189 -203.242.62.0/24 10189 -203.242.63.0/24 4766 -203.242.64.0/19 10049 -203.242.120.0/21 10049 -203.242.128.0/17 7557 -203.243.0.0/24 4766 -203.243.1.0/24 17841 -203.243.2.0/23 4766 -203.243.4.0/22 4766 -203.243.8.0/22 4766 -203.243.12.0/23 4766 -203.243.14.0/24 4766 -203.243.15.0/24 23575 -203.243.16.0/24 23575 -203.243.17.0/24 4766 -203.243.18.0/23 4766 -203.243.20.0/22 4766 -203.243.24.0/21 4766 -203.243.32.0/22 4766 -203.243.36.0/23 4766 -203.243.38.0/24 4766 -203.243.39.0/24 9783 -203.243.40.0/21 4766 -203.243.48.0/20 4766 -203.243.128.0/21 23584 -203.243.136.0/24 9848 -203.243.137.0/24 23584 -203.243.138.0/23 23584 -203.243.140.0/22 23584 -203.243.144.0/22 9697 -203.243.148.0/22 23584 -203.243.152.0/22 23584 -203.243.156.0/24 23584 -203.243.157.0/24 9848 -203.243.158.0/23 9848 -203.243.160.0/20 9848 -203.243.176.0/23 9848 -203.243.178.0/23 23584 -203.243.180.0/23 23584 -203.243.182.0/23 9848 -203.243.184.0/23 9848 -203.243.186.0/23 9770 -203.243.188.0/23 9770 -203.243.190.0/24 9770 -203.243.191.0/24 9848 -203.243.192.0/21 9848 -203.243.200.0/23 9848 -203.243.202.0/24 9848 -203.243.203.0/24 9697 -203.243.204.0/22 9697 -203.243.208.0/21 9848 -203.243.216.0/24 9848 -203.243.217.0/24 23584 -203.243.218.0/23 23584 -203.243.220.0/23 23584 -203.243.222.0/24 9848 -203.243.223.0/24 23584 -203.243.224.0/23 23584 -203.243.226.0/23 9848 -203.243.228.0/22 9848 -203.243.232.0/22 9848 -203.243.236.0/24 9848 -203.243.237.0/24 18300 -203.243.238.0/23 9848 -203.243.240.0/20 9848 -203.244.0.0/19 9273 -203.244.32.0/19 18305 -203.244.64.0/19 18305 -203.244.120.0/21 6619 -203.244.128.0/18 18401 -203.244.192.0/19 6619 -203.245.0.0/18 4766 -203.245.64.0/18 3786 -203.245.128.0/17 18305 -203.246.0.0/19 9318 -203.246.32.0/21 9318 -203.246.40.0/21 4766 -203.246.48.0/21 4766 -203.246.56.0/21 3786 -203.246.64.0/21 10046 -203.246.72.0/23 3786 -203.246.74.0/23 4766 -203.246.76.0/22 18315 -203.246.80.0/21 3786 -203.246.88.0/21 4766 -203.246.96.0/22 46012 -203.246.100.0/22 3786 -203.246.104.0/21 9962 -203.246.112.0/22 18176 -203.246.116.0/24 18176 -203.246.117.0/24 3786 -203.246.118.0/24 17591 -203.246.119.0/24 4766 -203.246.120.0/21 24027 -203.246.128.0/20 4766 -203.246.144.0/24 17606 -203.246.145.0/24 4766 -203.246.146.0/23 4766 -203.246.148.0/22 4766 -203.246.152.0/21 4766 -203.246.160.0/22 9286 -203.246.164.0/23 9286 -203.246.166.0/24 9286 -203.246.167.0/24 46003 -203.246.168.0/22 9286 -203.246.172.0/24 45991 -203.246.173.0/24 9526 -203.246.174.0/23 9526 -203.246.176.0/21 9272 -203.246.184.0/22 18305 -203.246.188.0/23 18305 -203.246.192.0/18 6619 -203.247.0.0/19 23714 -203.247.32.0/19 9775 -203.247.64.0/24 1237 -203.247.66.0/24 10063 -203.247.69.0/24 1237 -203.247.73.0/24 1237 -203.247.75.0/24 10063 -203.247.77.0/24 10063 -203.247.79.0/24 10063 -203.247.80.0/24 10063 -203.247.90.0/23 10063 -203.247.92.0/24 10063 -203.247.101.0/24 10063 -203.247.128.0/21 4668 -203.247.136.0/22 4668 -203.247.140.0/24 3786 -203.247.141.0/24 4668 -203.247.142.0/23 4668 -203.247.144.0/20 4668 -203.247.160.0/22 1237 -203.247.164.0/23 1237 -203.247.166.0/24 9708 -203.247.167.0/24 1237 -203.247.168.0/23 45363 -203.247.170.0/23 1237 -203.247.172.0/22 1237 -203.247.176.0/22 1237 -203.247.180.0/23 1237 -203.247.182.0/24 45963 -203.247.183.0/24 1237 -203.247.184.0/23 1237 -203.247.186.0/24 38696 -203.247.187.0/24 1237 -203.247.188.0/22 1237 -203.247.192.0/20 1237 -203.247.208.0/22 9982 -203.247.212.0/22 9775 -203.247.216.0/22 1237 -203.247.220.0/22 45363 -203.247.224.0/19 3786 -203.248.0.0/21 9848 -203.248.8.0/22 23584 -203.248.12.0/22 9848 -203.248.16.0/20 9952 -203.248.32.0/21 9848 -203.248.40.0/22 9848 -203.248.44.0/24 18300 -203.248.45.0/24 9848 -203.248.46.0/23 9848 -203.248.48.0/20 9848 -203.248.64.0/19 9848 -203.248.96.0/20 9848 -203.248.112.0/22 9848 -203.248.116.0/22 9578 -203.248.120.0/21 9848 -203.248.128.0/22 3786 -203.248.132.0/24 3786 -203.248.133.0/24 18169 -203.248.134.0/24 18169 -203.248.135.0/24 3786 -203.248.136.0/21 3786 -203.248.144.0/20 3786 -203.248.160.0/21 18169 -203.248.168.0/22 3786 -203.248.172.0/23 3786 -203.248.174.0/24 9841 -203.248.175.0/24 3786 -203.248.176.0/21 3786 -203.248.184.0/22 3786 -203.248.188.0/24 10196 -203.248.189.0/24 3786 -203.248.190.0/23 3786 -203.248.192.0/19 3786 -203.248.224.0/22 3786 -203.248.228.0/24 4202 -203.248.229.0/24 3786 -203.248.230.0/23 3786 -203.248.232.0/21 3786 -203.248.240.0/20 3786 -203.249.0.0/22 7621 -203.249.4.0/22 4766 -203.249.8.0/21 4766 -203.249.16.0/23 4766 -203.249.18.0/23 7621 -203.249.20.0/24 7621 -203.249.21.0/24 4766 -203.249.22.0/24 4766 -203.249.23.0/24 7621 -203.249.24.0/24 7621 -203.249.25.0/24 4766 -203.249.26.0/23 7621 -203.249.28.0/22 7621 -203.249.32.0/23 4766 -203.249.34.0/24 10073 -203.249.35.0/24 9867 -203.249.36.0/24 10073 -203.249.37.0/24 4766 -203.249.38.0/24 55611 -203.249.39.0/24 4766 -203.249.40.0/22 10073 -203.249.44.0/23 10073 -203.249.46.0/24 4766 -203.249.47.0/24 10071 -203.249.48.0/20 9271 -203.249.64.0/20 18330 -203.249.80.0/22 18330 -203.249.84.0/22 9318 -203.249.88.0/21 9318 -203.249.96.0/20 9978 -203.249.112.0/23 55621 -203.249.114.0/23 9523 -203.249.116.0/22 9523 -203.249.120.0/23 4766 -203.249.122.0/23 45983 -203.249.124.0/23 4766 -203.249.126.0/23 9318 -203.249.128.0/20 4791 -203.249.144.0/23 4791 -203.249.146.0/24 4791 -203.249.147.0/24 4766 -203.249.148.0/24 4766 -203.249.149.0/24 4791 -203.249.150.0/23 4791 -203.249.152.0/22 4791 -203.249.156.0/24 4766 -203.249.157.0/24 4791 -203.249.158.0/24 4791 -203.249.159.0/24 4766 -203.249.160.0/20 17593 -203.249.176.0/22 17593 -203.249.191.0/24 17593 -203.249.224.0/19 4766 -203.250.0.0/19 1237 -203.250.32.0/19 9868 -203.250.64.0/19 55618 -203.250.96.0/21 1237 -203.250.104.0/22 55589 -203.250.108.0/23 55589 -203.250.111.0/24 55589 -203.250.112.0/21 1237 -203.250.120.0/21 9708 -203.250.128.0/20 9982 -203.250.144.0/22 9982 -203.250.148.0/23 9769 -203.250.150.0/23 4766 -203.250.152.0/23 4766 -203.250.154.0/24 4766 -203.250.155.0/24 1237 -203.250.156.0/22 1237 -203.250.160.0/21 1237 -203.250.168.0/22 17595 -203.250.172.0/22 1237 -203.250.176.0/21 1237 -203.250.184.0/22 9521 -203.250.188.0/22 9982 -203.250.192.0/18 1237 -203.251.0.0/22 4766 -203.251.4.0/24 4766 -203.251.5.0/24 45399 -203.251.6.0/23 4766 -203.251.8.0/21 4766 -203.251.16.0/20 4766 -203.251.32.0/20 4766 -203.251.48.0/21 4766 -203.251.56.0/22 4766 -203.251.60.0/24 55617 -203.251.61.0/24 4766 -203.251.62.0/23 4766 -203.251.64.0/21 4766 -203.251.72.0/22 4766 -203.251.76.0/24 4766 -203.251.77.0/24 38124 -203.251.78.0/23 4766 -203.251.80.0/20 4766 -203.251.96.0/19 4766 -203.251.128.0/20 4766 -203.251.144.0/22 4766 -203.251.148.0/23 4766 -203.251.150.0/24 4766 -203.251.151.0/24 45399 -203.251.152.0/23 45399 -203.251.154.0/24 45399 -203.251.155.0/24 4766 -203.251.156.0/22 4766 -203.251.160.0/20 4766 -203.251.176.0/23 4766 -203.251.178.0/24 18308 -203.251.179.0/24 4766 -203.251.180.0/22 4766 -203.251.184.0/21 4766 -203.251.192.0/22 9980 -203.251.196.0/23 9980 -203.251.198.0/23 4670 -203.251.200.0/23 4670 -203.251.202.0/24 4670 -203.251.203.0/24 9980 -203.251.204.0/23 4670 -203.251.206.0/24 4670 -203.251.207.0/24 7562 -203.251.208.0/23 4670 -203.251.210.0/24 9980 -203.251.211.0/24 4670 -203.251.212.0/22 4670 -203.251.216.0/23 4664 -203.251.218.0/23 4670 -203.251.220.0/22 4670 -203.251.224.0/21 4670 -203.251.232.0/22 4670 -203.251.236.0/24 4670 -203.251.237.0/24 7562 -203.251.238.0/23 7562 -203.251.240.0/22 7562 -203.251.244.0/22 4670 -203.251.248.0/23 4670 -203.251.250.0/24 4670 -203.251.251.0/24 9980 -203.251.252.0/23 4670 -203.251.254.0/24 9980 -203.251.255.0/24 4670 -203.252.0.0/20 3786 -203.252.16.0/21 9318 -203.252.27.0/24 17591 -203.252.32.0/19 9686 -203.252.64.0/19 17862 -203.252.96.0/19 4766 -203.252.128.0/19 9459 -203.252.160.0/21 9459 -203.252.168.0/24 9459 -203.252.169.0/24 4766 -203.252.170.0/23 4766 -203.252.172.0/23 4766 -203.252.174.0/24 4766 -203.252.175.0/24 9459 -203.252.176.0/21 9459 -203.252.184.0/24 9459 -203.252.185.0/24 4766 -203.252.186.0/23 4766 -203.252.188.0/23 4766 -203.252.190.0/24 4766 -203.252.191.0/24 9459 -203.252.192.0/20 3786 -203.252.208.0/20 10180 -203.252.224.0/19 17615 -203.253.0.0/20 9318 -203.253.16.0/21 9318 -203.253.24.0/22 9318 -203.253.28.0/23 9318 -203.253.30.0/24 9318 -203.253.31.0/24 4766 -203.253.32.0/20 4766 -203.253.64.0/19 9572 -203.253.96.0/20 1237 -203.253.128.0/22 4766 -203.253.132.0/22 1237 -203.253.136.0/21 1237 -203.253.144.0/20 10159 -203.253.160.0/19 3786 -203.253.192.0/19 18026 -203.253.224.0/23 1237 -203.253.226.0/24 1237 -203.253.227.0/24 45984 -203.253.228.0/23 45984 -203.253.230.0/23 1237 -203.253.232.0/24 17576 -203.253.234.0/23 1237 -203.253.236.0/24 1237 -203.253.237.0/24 9275 -203.253.238.0/23 1237 -203.253.240.0/21 1237 -203.253.248.0/23 4766 -203.253.250.0/24 4766 -203.253.251.0/24 3786 -203.253.252.0/23 3786 -203.253.254.0/23 4766 -203.254.1.0/24 9849 -203.254.2.0/24 9849 -203.254.9.0/24 3786 -203.254.40.0/24 1237 -203.254.46.0/23 9849 -203.254.50.0/24 17590 -203.254.51.0/24 9494 -203.254.52.0/24 9494 -203.254.96.0/23 17841 -203.254.98.0/23 4766 -203.254.100.0/22 4766 -203.254.104.0/22 4766 -203.254.108.0/23 4766 -203.254.110.0/24 17841 -203.254.111.0/24 4766 -203.254.112.0/22 4766 -203.254.116.0/24 4766 -203.254.117.0/24 10051 -203.254.118.0/23 10051 -203.254.120.0/24 4766 -203.254.121.0/24 17841 -203.254.122.0/24 4766 -203.254.123.0/24 45400 -203.254.124.0/22 4766 -203.254.128.0/19 7560 -203.254.160.0/21 10070 -203.254.168.0/23 1237 -203.254.170.0/24 17861 -203.254.171.0/24 4766 -203.254.172.0/23 4766 -203.254.176.0/20 1237 -203.254.192.0/19 6619 -203.254.224.0/21 6619 -203.254.232.0/22 6619 -203.254.236.0/23 6619 -203.254.238.0/24 6619 -203.254.239.0/24 138380 -203.254.240.0/24 138380 -203.254.241.0/24 6619 -203.254.242.0/23 6619 -203.254.244.0/22 6619 -203.254.248.0/21 6619 -203.255.0.0/18 18028 -203.255.64.0/19 18158 -203.255.96.0/20 4790 -203.255.112.0/23 9848 -203.255.116.0/22 9848 -203.255.128.0/20 9848 -203.255.144.0/22 9848 -203.255.148.0/22 38669 -203.255.152.0/21 38669 -203.255.160.0/19 9322 -203.255.192.0/20 9318 -203.255.212.0/22 18023 -203.255.216.0/22 18034 -203.255.220.0/23 9970 -203.255.224.0/21 23975 -203.255.232.0/23 9975 -203.255.234.0/24 3786 -203.255.236.0/22 38426 -203.255.240.0/21 9273 -203.255.248.0/21 9270 -204.0.0.0/19 2914 -204.0.32.0/20 2914 -204.0.48.0/22 2914 -204.0.52.0/23 2914 -204.0.54.0/23 20940 -204.0.56.0/21 2914 -204.0.64.0/22 2914 -204.0.68.0/24 2914 -204.0.69.0/24 14881 -204.0.70.0/23 2914 -204.0.72.0/21 2914 -204.0.80.0/20 2914 -204.0.96.0/19 2914 -204.0.128.0/17 2914 -204.1.0.0/16 2914 -204.2.0.0/20 16700 -204.2.16.0/23 19683 -204.2.18.0/24 2914 -204.2.19.0/24 397111 -204.2.20.0/24 22442 -204.2.21.0/24 36640 -204.2.22.0/23 2914 -204.2.24.0/23 2914 -204.2.26.0/24 2914 -204.2.27.0/24 63306 -204.2.28.0/23 2914 -204.2.30.0/23 15562 -204.2.32.0/23 26114 -204.2.34.0/23 2914 -204.2.36.0/24 16986 -204.2.37.0/24 22442 -204.2.38.0/24 2914 -204.2.39.0/24 397192 -204.2.40.0/21 2914 -204.2.48.0/22 393259 -204.2.52.0/22 2914 -204.2.56.0/24 2914 -204.2.57.0/24 64277 -204.2.58.0/23 2914 -204.2.60.0/23 2914 -204.2.62.0/23 40676 -204.2.64.0/20 64404 -204.2.80.0/20 2914 -204.2.96.0/19 2914 -204.2.128.0/24 2914 -204.2.129.0/24 62668 -204.2.130.0/24 2914 -204.2.131.0/24 393259 -204.2.132.0/24 2914 -204.2.133.0/24 393259 -204.2.134.0/24 2914 -204.2.135.0/24 46582 -204.2.136.0/23 20940 -204.2.138.0/24 393259 -204.2.139.0/24 2914 -204.2.140.0/22 2914 -204.2.144.0/22 2914 -204.2.148.0/23 2914 -204.2.150.0/24 30640 -204.2.151.0/24 2914 -204.2.152.0/23 2914 -204.2.154.0/24 2914 -204.2.155.0/24 26970 -204.2.156.0/23 64233 -204.2.158.0/23 2914 -204.2.160.0/20 2914 -204.2.176.0/22 2914 -204.2.180.0/23 2914 -204.2.182.0/23 393536 -204.2.184.0/23 2914 -204.2.186.0/24 397341 -204.2.187.0/24 2914 -204.2.188.0/22 2914 -204.2.192.0/23 2914 -204.2.194.0/23 40676 -204.2.196.0/24 20940 -204.2.197.0/24 1422 -204.2.198.0/24 395563 -204.2.199.0/24 20940 -204.2.200.0/23 2914 -204.2.202.0/23 29788 -204.2.204.0/23 2914 -204.2.206.0/24 2914 -204.2.207.0/24 12888 -204.2.208.0/24 2914 -204.2.209.0/24 393259 -204.2.210.0/24 18586 -204.2.211.0/24 2914 -204.2.212.0/22 2914 -204.2.216.0/22 2914 -204.2.220.0/24 46785 -204.2.221.0/24 2914 -204.2.222.0/23 2914 -204.2.224.0/24 396273 -204.2.225.0/24 2914 -204.2.226.0/23 2914 -204.2.228.0/23 2914 -204.2.230.0/24 397550 -204.2.231.0/24 2914 -204.2.232.0/21 2914 -204.2.240.0/23 2914 -204.2.242.0/24 2914 -204.2.243.0/24 20940 -204.2.244.0/22 19271 -204.2.248.0/23 20940 -204.2.250.0/24 2914 -204.2.251.0/24 20940 -204.2.252.0/23 32538 -204.2.254.0/24 20940 -204.2.255.0/24 2914 -204.3.0.0/16 2914 -204.4.0.0/21 174 -204.4.8.0/22 174 -204.4.12.0/24 174 -204.4.13.0/24 6111 -204.4.14.0/23 174 -204.4.16.0/20 174 -204.4.32.0/19 174 -204.4.64.0/24 54407 -204.4.65.0/24 174 -204.4.66.0/23 174 -204.4.68.0/24 174 -204.4.69.0/24 54407 -204.4.70.0/24 54407 -204.4.71.0/24 174 -204.4.72.0/24 174 -204.4.73.0/24 54407 -204.4.74.0/23 54407 -204.4.76.0/23 54407 -204.4.78.0/23 174 -204.4.80.0/20 174 -204.4.96.0/22 174 -204.4.100.0/24 174 -204.4.101.0/24 6111 -204.4.102.0/24 6111 -204.4.103.0/24 174 -204.4.104.0/21 174 -204.4.112.0/20 174 -204.4.128.0/23 174 -204.4.130.0/23 9084 -204.4.132.0/22 174 -204.4.136.0/22 174 -204.4.140.0/23 174 -204.4.142.0/23 9084 -204.4.144.0/21 174 -204.4.152.0/23 9084 -204.4.154.0/23 174 -204.4.156.0/22 174 -204.4.160.0/24 174 -204.4.161.0/24 9084 -204.4.162.0/23 174 -204.4.164.0/22 174 -204.4.168.0/23 174 -204.4.170.0/24 9084 -204.4.171.0/24 174 -204.4.172.0/23 174 -204.4.174.0/24 174 -204.4.175.0/24 9084 -204.4.176.0/23 174 -204.4.178.0/24 33598 -204.4.179.0/24 6195 -204.4.180.0/23 174 -204.4.182.0/24 33598 -204.4.183.0/24 174 -204.4.184.0/24 174 -204.4.185.0/24 33598 -204.4.186.0/24 174 -204.4.187.0/24 6195 -204.4.188.0/22 174 -204.4.192.0/19 174 -204.4.224.0/21 174 -204.4.232.0/24 31877 -204.4.233.0/24 174 -204.4.234.0/24 31877 -204.4.235.0/24 174 -204.4.236.0/22 174 -204.4.240.0/22 174 -204.4.244.0/24 31877 -204.4.245.0/24 174 -204.4.246.0/23 174 -204.4.248.0/21 174 -204.5.0.0/16 174 -204.6.0.0/18 174 -204.6.64.0/20 174 -204.6.80.0/21 174 -204.6.88.0/23 174 -204.6.90.0/24 174 -204.6.91.0/24 13372 -204.6.92.0/22 174 -204.6.96.0/19 174 -204.6.128.0/19 174 -204.6.160.0/24 49657 -204.6.161.0/24 174 -204.6.162.0/24 49657 -204.6.163.0/24 174 -204.6.164.0/22 174 -204.6.168.0/21 13750 -204.6.176.0/20 174 -204.6.192.0/18 4991 -204.7.0.0/16 174 -204.8.0.0/23 4540 -204.8.4.0/22 27443 -204.8.8.0/21 11525 -204.8.16.0/24 32205 -204.8.22.0/23 3356 -204.8.24.0/22 11248 -204.8.28.0/23 14618 -204.8.30.0/24 14618 -204.8.32.0/24 25700 -204.8.33.0/24 10557 -204.8.34.0/24 25700 -204.8.35.0/24 10557 -204.8.36.0/22 26017 -204.8.40.0/24 22218 -204.8.41.0/24 64294 -204.8.42.0/23 22218 -204.8.44.0/22 30513 -204.8.48.0/24 35994 -204.8.52.0/22 32641 -204.8.59.0/24 20454 -204.8.60.0/22 32641 -204.8.64.0/22 22581 -204.8.68.0/22 32641 -204.8.72.0/22 18968 -204.8.76.0/22 32641 -204.8.80.0/22 20208 -204.8.84.0/22 32641 -204.8.88.0/22 32746 -204.8.92.0/22 32641 -204.8.100.0/23 32641 -204.8.102.0/24 32641 -204.8.104.0/23 16818 -204.8.106.0/24 16818 -204.8.108.0/22 32641 -204.8.112.0/23 32540 -204.8.114.0/24 32540 -204.8.116.0/22 32641 -204.8.120.0/21 26914 -204.8.128.0/21 4546 -204.8.136.0/21 23470 -204.8.144.0/23 32861 -204.8.146.0/24 32861 -204.8.148.0/22 32861 -204.8.152.0/21 111 -204.8.160.0/21 54240 -204.8.168.0/23 36204 -204.8.170.0/24 54516 -204.8.172.0/23 30574 -204.8.174.0/23 31776 -204.8.176.0/24 5056 -204.8.178.0/23 397941 -204.8.181.0/24 5056 -204.8.183.0/24 7018 -204.8.184.0/22 27419 -204.8.188.0/22 22914 -204.8.192.0/21 31950 -204.8.200.0/22 29879 -204.8.204.0/24 328165 -204.8.205.0/24 328241 -204.8.207.0/24 328221 -204.8.208.0/21 32825 -204.8.216.0/21 14037 -204.8.224.0/21 32890 -204.8.232.0/24 62821 -204.8.233.0/24 395338 -204.8.234.0/24 395412 -204.8.235.0/24 62958 -204.8.236.0/24 395664 -204.8.239.0/24 22458 -204.8.240.0/22 32782 -204.8.244.0/24 26784 -204.8.248.0/21 13750 -204.9.0.0/22 6128 -204.9.4.0/22 16433 -204.9.8.0/21 32584 -204.9.16.0/21 20303 -204.9.24.0/22 27425 -204.9.28.0/22 394765 -204.9.32.0/22 25617 -204.9.36.0/23 16584 -204.9.39.0/24 16724 -204.9.40.0/23 62935 -204.9.42.0/24 62935 -204.9.43.0/24 10913 -204.9.44.0/22 62935 -204.9.48.0/23 19255 -204.9.50.0/24 19255 -204.9.51.0/24 26943 -204.9.52.0/22 19255 -204.9.56.0/21 30259 -204.9.64.0/22 33724 -204.9.68.0/22 30496 -204.9.72.0/21 6461 -204.9.80.0/22 21548 -204.9.84.0/22 35852 -204.9.88.0/24 46537 -204.9.89.0/24 19830 -204.9.91.0/24 396202 -204.9.92.0/22 16409 -204.9.96.0/23 11143 -204.9.98.0/23 393536 -204.9.100.0/22 23458 -204.9.104.0/21 18913 -204.9.112.0/24 23505 -204.9.116.0/23 40300 -204.9.119.0/24 40300 -204.9.120.0/22 22561 -204.9.124.0/23 22561 -204.9.126.0/24 22561 -204.9.127.0/24 23447 -204.9.128.0/21 77 -204.9.136.0/21 36236 -204.9.144.0/21 33254 -204.9.152.0/21 33125 -204.9.160.0/21 23498 -204.9.172.0/24 10554 -204.9.174.0/23 10554 -204.9.180.0/22 29804 -204.9.186.0/24 7018 -204.9.187.0/24 13984 -204.9.188.0/24 19994 -204.9.192.0/24 25674 -204.9.193.0/24 5650 -204.9.200.0/21 32743 -204.9.208.0/21 33133 -204.9.216.0/22 54733 -204.9.220.0/22 15038 -204.9.224.0/22 33397 -204.9.232.0/22 4497 -204.9.236.0/22 32760 -204.9.240.0/21 33132 -204.9.248.0/21 26747 -204.10.0.0/22 17113 -204.10.4.0/22 14043 -204.10.8.0/22 18628 -204.10.15.0/24 18628 -204.10.16.0/22 22154 -204.10.20.0/22 26225 -204.10.24.0/22 6653 -204.10.30.0/24 35994 -204.10.31.0/24 209 -204.10.36.0/22 33322 -204.10.44.0/22 29888 -204.10.48.0/21 21750 -204.10.60.0/22 22324 -204.10.64.0/21 33260 -204.10.72.0/22 6465 -204.10.76.0/22 31953 -204.10.84.0/22 23351 -204.10.88.0/24 397813 -204.10.89.0/24 11051 -204.10.90.0/23 397432 -204.10.92.0/22 30097 -204.10.96.0/21 19942 -204.10.104.0/21 15083 -204.10.120.0/22 62217 -204.10.124.0/22 6653 -204.10.128.0/22 22408 -204.10.132.0/24 26470 -204.10.134.0/24 11057 -204.10.135.0/24 26470 -204.10.136.0/24 22169 -204.10.137.0/24 19237 -204.10.138.0/23 19237 -204.10.140.0/22 19237 -204.10.144.0/22 16861 -204.10.148.0/23 20229 -204.10.151.0/24 20229 -204.10.152.0/24 1 -204.10.154.0/23 1 -204.10.156.0/24 1 -204.10.158.0/23 30016 -204.10.160.0/22 64236 -204.10.169.0/24 32205 -204.10.171.0/24 32205 -204.10.176.0/21 1819 -204.10.185.0/24 36155 -204.10.186.0/24 397841 -204.10.187.0/24 16541 -204.10.188.0/24 15165 -204.10.189.0/24 20145 -204.10.190.0/24 396077 -204.10.191.0/24 397424 -204.10.192.0/22 14871 -204.10.196.0/22 14454 -204.10.201.0/24 30048 -204.10.202.0/23 30048 -204.10.204.0/23 30048 -204.10.206.0/24 30048 -204.10.207.0/24 16932 -204.10.208.0/24 33499 -204.10.210.0/24 33499 -204.10.211.0/24 209 -204.10.213.0/24 33499 -204.10.216.0/21 26247 -204.10.224.0/23 22351 -204.10.227.0/24 22351 -204.10.228.0/22 19893 -204.10.232.0/21 11597 -204.10.240.0/22 14453 -204.10.244.0/22 32511 -204.10.248.0/21 10835 -204.11.0.0/23 398127 -204.11.2.0/23 8100 -204.11.4.0/22 30673 -204.11.8.0/21 32470 -204.11.16.0/22 19133 -204.11.20.0/23 33365 -204.11.23.0/24 33365 -204.11.24.0/22 15054 -204.11.28.0/22 17306 -204.11.32.0/22 53292 -204.11.36.0/22 30398 -204.11.40.0/21 20194 -204.11.48.0/21 30176 -204.11.56.0/23 40034 -204.11.58.0/23 394695 -204.11.60.0/22 3800 -204.11.65.0/24 27597 -204.11.68.0/22 35895 -204.11.72.0/21 25660 -204.11.80.0/21 11776 -204.11.88.0/21 20009 -204.11.96.0/21 19133 -204.11.104.0/22 32354 -204.11.108.0/22 33419 -204.11.112.0/22 23308 -204.11.116.0/22 7922 -204.11.120.0/22 11814 -204.11.124.0/22 22107 -204.11.128.0/24 33125 -204.11.129.0/24 46262 -204.11.130.0/23 46262 -204.11.133.0/24 33125 -204.11.134.0/24 46262 -204.11.135.0/24 53597 -204.11.136.0/23 19578 -204.11.138.0/24 11021 -204.11.139.0/24 393340 -204.11.142.0/23 22768 -204.11.148.0/22 14265 -204.11.152.0/21 22581 -204.11.160.0/21 20071 -204.11.168.0/24 11166 -204.11.169.0/24 23211 -204.11.170.0/23 11166 -204.11.172.0/24 11166 -204.11.173.0/24 19392 -204.11.174.0/24 19392 -204.11.175.0/24 62947 -204.11.176.0/22 26451 -204.11.180.0/24 26451 -204.11.183.0/24 26451 -204.11.184.0/21 29709 -204.11.192.0/22 27537 -204.11.196.0/22 22351 -204.11.200.0/21 32016 -204.11.208.0/22 33693 -204.11.212.0/22 36536 -204.11.216.0/23 395647 -204.11.218.0/24 395570 -204.11.219.0/24 11492 -204.11.220.0/22 396319 -204.11.224.0/21 30640 -204.11.232.0/21 33724 -204.11.240.0/22 11753 -204.11.244.0/22 21947 -204.11.253.0/24 17009 -204.11.254.0/24 17009 -204.12.0.0/17 20021 -204.12.144.0/21 25983 -204.12.152.0/24 16583 -204.12.153.0/24 25983 -204.12.154.0/23 25983 -204.12.156.0/22 25983 -204.12.160.0/20 64242 -204.12.176.0/22 64242 -204.12.181.0/24 64242 -204.12.182.0/23 64242 -204.12.184.0/21 64242 -204.12.192.0/18 32097 -204.13.0.0/21 33724 -204.13.8.0/22 32915 -204.13.12.0/22 32952 -204.13.16.0/21 22268 -204.13.32.0/21 27298 -204.13.40.0/21 33604 -204.13.48.0/22 36077 -204.13.52.0/22 27589 -204.13.56.0/22 17350 -204.13.60.0/22 19786 -204.13.64.0/21 23338 -204.13.72.0/23 14495 -204.13.77.0/24 394698 -204.13.78.0/23 394618 -204.13.89.0/24 40630 -204.13.90.0/23 40630 -204.13.92.0/22 18938 -204.13.96.0/21 22571 -204.13.104.0/22 22933 -204.13.108.0/22 35914 -204.13.112.0/21 33556 -204.13.120.0/21 8070 -204.13.128.0/21 17306 -204.13.136.0/24 13736 -204.13.138.0/23 13736 -204.13.140.0/22 7270 -204.13.144.0/22 33743 -204.13.152.0/22 35916 -204.13.156.0/23 393613 -204.13.159.0/24 395984 -204.13.164.0/24 16652 -204.13.165.0/24 25700 -204.13.166.0/23 25700 -204.13.168.0/23 11281 -204.13.176.0/22 22265 -204.13.180.0/22 53830 -204.13.184.0/24 35967 -204.13.186.0/23 35967 -204.13.188.0/23 35967 -204.13.192.0/21 29990 -204.13.200.0/23 33151 -204.13.202.0/23 3561 -204.13.204.0/22 36253 -204.13.208.0/22 36536 -204.13.212.0/23 22395 -204.13.214.0/24 22395 -204.13.216.0/23 35934 -204.13.220.0/22 35934 -204.13.224.0/24 31920 -204.13.225.0/24 54239 -204.13.226.0/23 6939 -204.13.230.0/24 11215 -204.13.231.0/24 16427 -204.13.232.0/21 55106 -204.13.240.0/22 46408 -204.13.244.0/24 394339 -204.13.245.0/24 394479 -204.13.246.0/24 394480 -204.13.247.0/24 394836 -204.13.248.0/22 33517 -204.13.252.0/22 62593 -204.14.0.0/22 40123 -204.14.4.0/24 12265 -204.14.5.0/24 40123 -204.14.6.0/23 40123 -204.14.8.0/23 36349 -204.14.10.0/24 62606 -204.14.12.0/22 30405 -204.14.16.0/22 33554 -204.14.20.0/22 32808 -204.14.24.0/21 35935 -204.14.36.0/22 17210 -204.14.40.0/21 32034 -204.14.56.0/21 33176 -204.14.64.0/22 33748 -204.14.68.0/23 33748 -204.14.70.0/24 33748 -204.14.71.0/24 14265 -204.14.72.0/23 32780 -204.14.74.0/24 32780 -204.14.75.0/24 30633 -204.14.77.0/24 30633 -204.14.78.0/23 19039 -204.14.80.0/22 6939 -204.14.84.0/22 30513 -204.14.88.0/21 33552 -204.14.96.0/21 26088 -204.14.104.0/21 23470 -204.14.112.0/21 42 -204.14.120.0/23 33569 -204.14.122.0/23 25700 -204.14.124.0/23 15137 -204.14.126.0/24 15137 -204.14.128.0/23 18862 -204.14.132.0/22 18540 -204.14.136.0/21 23308 -204.14.144.0/21 32592 -204.14.152.0/21 19165 -204.14.160.0/21 11681 -204.14.168.0/21 33190 -204.14.176.0/23 27223 -204.14.180.0/24 8068 -204.14.184.0/21 23100 -204.14.192.0/21 20071 -204.14.200.0/22 36107 -204.14.204.0/22 13447 -204.14.208.0/22 32952 -204.14.212.0/24 32952 -204.14.213.0/24 40067 -204.14.214.0/23 32952 -204.14.224.0/21 15176 -204.14.232.0/21 14340 -204.14.240.0/22 18612 -204.14.244.0/22 18918 -204.14.248.0/23 33576 -204.14.250.0/24 2740 -204.14.251.0/24 33576 -204.14.252.0/23 33576 -204.14.254.0/24 398228 -204.14.255.0/24 33576 -204.15.0.0/22 30686 -204.15.4.0/23 20208 -204.15.6.0/24 20208 -204.15.8.0/21 13331 -204.15.16.0/22 14949 -204.15.20.0/22 32934 -204.15.24.0/21 46262 -204.15.32.0/21 33361 -204.15.40.0/24 29754 -204.15.42.0/24 396893 -204.15.46.0/24 29754 -204.15.48.0/22 33606 -204.15.52.0/22 36024 -204.15.56.0/21 4181 -204.15.64.0/22 13448 -204.15.68.0/23 13448 -204.15.71.0/24 43251 -204.15.72.0/21 35916 -204.15.84.0/22 29933 -204.15.88.0/23 31961 -204.15.90.0/24 31961 -204.15.95.0/24 31961 -204.15.96.0/22 29765 -204.15.100.0/22 33693 -204.15.104.0/22 33125 -204.15.108.0/23 33125 -204.15.110.0/23 53597 -204.15.112.0/22 19586 -204.15.116.0/22 13626 -204.15.120.0/21 33260 -204.15.128.0/22 36536 -204.15.132.0/22 33322 -204.15.136.0/21 21904 -204.15.144.0/21 30526 -204.15.152.0/21 4497 -204.15.160.0/24 26700 -204.15.163.0/24 19271 -204.15.164.0/22 35937 -204.15.169.0/24 53699 -204.15.170.0/23 40089 -204.15.172.0/22 31931 -204.15.176.0/22 19609 -204.15.184.0/21 14387 -204.15.192.0/21 30176 -204.15.200.0/24 3257 -204.15.204.0/23 32682 -204.15.206.0/24 32682 -204.15.207.0/24 174 -204.15.216.0/22 14949 -204.15.220.0/22 31915 -204.15.224.0/21 25700 -204.15.232.0/22 14712 -204.15.236.0/22 32991 -204.15.240.0/22 36212 -204.15.244.0/22 32257 -204.15.248.0/21 46562 -204.16.0.0/21 262706 -204.16.8.0/22 36290 -204.16.12.0/22 25853 -204.16.16.0/22 14949 -204.16.20.0/22 17306 -204.16.24.0/23 30680 -204.16.26.0/24 30680 -204.16.28.0/24 1239 -204.16.32.0/22 33739 -204.16.36.0/22 18812 -204.16.40.0/22 10835 -204.16.44.0/23 395821 -204.16.46.0/24 396107 -204.16.47.0/24 54164 -204.16.48.0/24 10397 -204.16.50.0/24 25645 -204.16.58.0/23 394330 -204.16.60.0/22 62 -204.16.64.0/22 36022 -204.16.68.0/23 36180 -204.16.76.0/22 32091 -204.16.80.0/22 17306 -204.16.84.0/24 33377 -204.16.86.0/23 33377 -204.16.88.0/21 36071 -204.16.96.0/22 19972 -204.16.100.0/22 19167 -204.16.104.0/22 22107 -204.16.108.0/22 17113 -204.16.112.0/22 11139 -204.16.116.0/22 54335 -204.16.124.0/22 26452 -204.16.128.0/21 13734 -204.16.136.0/22 16391 -204.16.140.0/22 23308 -204.16.144.0/21 23523 -204.16.152.0/21 30686 -204.16.160.0/22 26735 -204.16.164.0/22 40154 -204.16.176.0/22 18851 -204.16.180.0/22 17088 -204.16.185.0/24 20171 -204.16.186.0/23 20171 -204.16.188.0/24 20171 -204.16.190.0/24 20171 -204.16.192.0/21 23338 -204.16.200.0/21 33554 -204.16.212.0/22 33322 -204.16.224.0/22 6653 -204.16.228.0/22 32654 -204.16.232.0/22 32132 -204.16.236.0/22 14312 -204.16.240.0/21 20326 -204.16.248.0/22 16939 -204.16.253.0/24 29997 -204.16.254.0/23 29997 -204.17.8.0/21 11733 -204.17.16.0/20 35904 -204.17.32.0/19 22772 -204.17.64.0/18 7029 -204.17.130.0/23 397410 -204.17.132.0/24 1239 -204.17.133.0/24 7905 -204.17.134.0/23 3580 -204.17.136.0/23 3580 -204.17.139.0/24 7782 -204.17.140.0/24 7782 -204.17.143.0/24 54626 -204.17.145.0/24 3599 -204.17.150.0/24 19542 -204.17.156.0/24 13649 -204.17.157.0/24 72 -204.17.158.0/23 72 -204.17.160.0/23 72 -204.17.162.0/24 72 -204.17.163.0/24 22773 -204.17.166.0/24 4546 -204.17.169.0/24 3724 -204.17.177.0/24 11071 -204.17.178.0/24 62988 -204.17.179.0/24 2152 -204.17.195.0/24 257 -204.17.196.0/24 3724 -204.17.197.0/24 19693 -204.17.204.0/24 11834 -204.17.205.0/24 63069 -204.17.210.0/24 40796 -204.17.220.0/24 13647 -204.17.223.0/24 17129 -204.17.228.0/24 4583 -204.17.231.0/24 394059 -204.17.232.0/24 7018 -204.17.245.0/24 19511 -204.17.246.0/24 19511 -204.17.249.0/24 397417 -204.17.255.0/24 53702 -204.18.0.0/16 197207 -204.19.2.0/23 376 -204.19.4.0/23 376 -204.19.6.0/24 376 -204.19.10.0/24 376 -204.19.12.0/24 376 -204.19.14.0/24 53792 -204.19.15.0/24 30392 -204.19.17.0/24 29820 -204.19.18.0/23 11727 -204.19.20.0/23 15290 -204.19.23.0/24 376 -204.19.30.0/23 376 -204.19.32.0/24 376 -204.19.34.0/23 26480 -204.19.42.0/24 376 -204.19.44.0/22 19515 -204.19.48.0/20 376 -204.19.64.0/21 376 -204.19.72.0/22 376 -204.19.76.0/23 376 -204.19.79.0/24 376 -204.19.80.0/21 376 -204.19.104.0/24 577 -204.19.117.0/24 22423 -204.19.119.0/24 42 -204.19.122.0/24 852 -204.19.128.0/24 5769 -204.19.129.0/24 25989 -204.19.131.0/24 5769 -204.19.134.0/24 32613 -204.19.138.0/24 13768 -204.19.141.0/24 22652 -204.19.142.0/24 22652 -204.19.144.0/21 395759 -204.19.162.0/24 53754 -204.19.164.0/24 6327 -204.19.165.0/24 22652 -204.19.168.0/23 852 -204.19.170.0/23 4470 -204.19.172.0/24 577 -204.19.174.0/24 22652 -204.19.175.0/24 577 -204.19.176.0/24 54672 -204.19.188.0/22 22639 -204.19.198.0/23 3848 -204.19.200.0/22 36290 -204.19.204.0/23 29995 -204.19.206.0/23 6280 -204.19.208.0/24 22187 -204.19.212.0/22 11435 -204.19.223.0/24 40599 -204.19.228.0/24 577 -204.19.231.0/24 21548 -204.19.232.0/23 5769 -204.19.242.0/24 32839 -204.19.244.0/24 53794 -204.19.247.0/24 30336 -204.19.248.0/22 393457 -204.19.252.0/23 393457 -204.19.254.0/24 393457 -204.22.0.0/15 13325 -204.24.0.0/15 13325 -204.26.0.0/24 21874 -204.26.8.0/24 63451 -204.26.16.0/20 36319 -204.26.32.0/20 18558 -204.26.48.0/21 18558 -204.26.56.0/24 18558 -204.26.57.0/24 42 -204.26.58.0/23 53951 -204.26.60.0/22 46786 -204.26.64.0/19 209 -204.26.96.0/20 209 -204.26.112.0/24 393901 -204.26.113.0/24 209 -204.26.114.0/23 209 -204.26.116.0/22 209 -204.26.120.0/21 209 -204.26.153.0/24 5714 -204.26.253.0/24 26983 -204.27.17.0/24 54855 -204.27.23.0/24 54855 -204.27.24.0/24 54855 -204.27.27.0/24 30592 -204.27.52.0/22 262181 -204.27.56.0/21 19969 -204.27.129.0/24 21602 -204.27.132.0/24 40475 -204.27.140.0/24 19773 -204.27.143.0/24 47066 -204.27.147.0/24 11012 -204.27.149.0/24 6373 -204.27.156.0/24 16500 -204.27.160.0/24 31877 -204.27.169.0/24 17223 -204.27.178.0/24 33714 -204.27.179.0/24 7752 -204.27.182.0/24 40798 -204.27.185.0/24 46943 -204.27.190.0/24 3701 -204.27.195.0/24 7806 -204.27.197.0/24 23023 -204.27.210.0/24 20182 -204.27.213.0/24 26879 -204.27.217.0/24 18682 -204.27.224.0/24 23534 -204.27.229.0/24 13536 -204.27.231.0/24 53515 -204.27.239.0/24 20001 -204.27.249.0/24 1438 -204.27.250.0/24 1706 -204.28.1.0/24 20115 -204.28.10.0/23 53321 -204.28.12.0/22 19366 -204.28.27.0/24 2856 -204.28.29.0/24 22155 -204.28.31.0/24 22155 -204.28.64.0/19 32592 -204.28.96.0/23 32592 -204.28.98.0/24 32592 -204.28.99.0/24 16438 -204.28.100.0/22 15085 -204.28.104.0/21 33132 -204.28.112.0/20 19165 -204.28.136.0/24 3356 -204.28.138.0/23 21543 -204.28.140.0/23 21543 -204.28.142.0/24 21543 -204.28.160.0/24 7381 -204.28.223.0/24 53789 -204.28.224.0/20 13750 -204.28.240.0/20 23205 -204.29.11.0/24 16927 -204.29.12.0/22 11758 -204.29.16.0/20 1982 -204.29.60.0/23 55046 -204.29.64.0/18 3464 -204.29.131.0/24 3456 -204.29.132.0/24 1880 -204.29.133.0/24 1878 -204.29.134.0/24 22809 -204.29.139.0/24 63069 -204.29.142.0/24 14462 -204.29.154.0/24 2033 -204.29.160.0/24 174 -204.29.161.0/24 14843 -204.29.162.0/24 21875 -204.29.163.0/24 18751 -204.29.171.0/24 12246 -204.29.174.0/23 3724 -204.29.185.0/24 54156 -204.29.189.0/24 6423 -204.29.196.0/23 32525 -204.29.205.0/24 23486 -204.29.209.0/24 19014 -204.29.215.0/24 20337 -204.29.236.0/24 10381 -204.29.239.0/24 6066 -204.29.243.0/24 14278 -204.29.247.0/24 17054 -204.30.0.0/24 50360 -204.30.1.0/24 3356 -204.30.2.0/23 3356 -204.30.4.0/22 3356 -204.30.8.0/23 3356 -204.30.10.0/24 50360 -204.30.11.0/24 3356 -204.30.12.0/22 3356 -204.30.16.0/20 3356 -204.30.32.0/20 7029 -204.31.0.0/20 7029 -204.31.80.0/20 7029 -204.31.128.0/19 11426 -204.31.192.0/21 7029 -204.31.200.0/23 7029 -204.31.202.0/24 7029 -204.31.203.0/24 31880 -204.31.204.0/22 7029 -204.31.208.0/20 7029 -204.32.128.0/20 7029 -204.32.224.0/19 7029 -204.33.64.0/19 7029 -204.33.160.0/20 7029 -204.34.0.0/20 721 -204.34.16.0/22 5972 -204.34.20.0/23 5972 -204.34.22.0/24 1778 -204.34.23.0/24 5972 -204.34.24.0/22 5972 -204.34.28.0/24 5972 -204.34.29.0/24 721 -204.34.30.0/23 721 -204.34.32.0/19 721 -204.34.64.0/21 721 -204.34.72.0/21 5180 -204.34.80.0/22 721 -204.34.84.0/22 5180 -204.34.88.0/21 5180 -204.34.96.0/22 5180 -204.34.100.0/23 721 -204.34.102.0/24 721 -204.34.103.0/24 3954 -204.34.104.0/22 721 -204.34.108.0/23 3954 -204.34.110.0/24 721 -204.34.111.0/24 5180 -204.34.112.0/22 721 -204.34.116.0/22 5180 -204.34.120.0/22 5180 -204.34.124.0/23 5180 -204.34.126.0/24 5180 -204.34.127.0/24 721 -204.34.128.0/20 721 -204.34.144.0/21 721 -204.34.152.0/24 721 -204.34.153.0/24 27064 -204.34.154.0/23 721 -204.34.156.0/22 721 -204.34.160.0/21 1540 -204.34.168.0/22 1540 -204.34.172.0/24 1540 -204.34.173.0/24 721 -204.34.174.0/24 1540 -204.34.175.0/24 27064 -204.34.176.0/22 1540 -204.34.180.0/24 721 -204.34.181.0/24 1540 -204.34.182.0/23 1540 -204.34.184.0/23 1540 -204.34.186.0/23 721 -204.34.188.0/24 1540 -204.34.189.0/24 721 -204.34.190.0/23 721 -204.34.192.0/22 721 -204.34.196.0/23 721 -204.34.198.0/24 27064 -204.34.199.0/24 6026 -204.34.200.0/24 5972 -204.34.201.0/24 721 -204.34.202.0/24 721 -204.34.203.0/24 27064 -204.34.204.0/22 721 -204.34.208.0/23 721 -204.34.210.0/24 1540 -204.34.211.0/24 385 -204.34.212.0/23 1540 -204.34.214.0/23 721 -204.34.216.0/24 721 -204.34.217.0/24 385 -204.34.218.0/23 721 -204.34.220.0/22 721 -204.34.224.0/21 721 -204.34.232.0/24 721 -204.34.233.0/24 27064 -204.34.234.0/23 721 -204.34.236.0/22 721 -204.34.240.0/24 27064 -204.34.241.0/24 721 -204.34.242.0/23 721 -204.34.244.0/23 721 -204.34.246.0/24 721 -204.34.247.0/24 27064 -204.34.248.0/23 721 -204.34.250.0/24 721 -204.34.251.0/24 27064 -204.34.252.0/22 721 -204.36.0.0/24 721 -204.36.1.0/24 6040 -204.36.2.0/23 721 -204.36.4.0/24 721 -204.36.5.0/24 6040 -204.36.6.0/24 6040 -204.36.7.0/24 721 -204.36.8.0/22 721 -204.36.12.0/24 6040 -204.36.13.0/24 721 -204.36.14.0/24 6040 -204.36.15.0/24 721 -204.36.18.0/23 627 -204.36.32.0/23 27064 -204.36.45.0/24 27064 -204.36.46.0/23 27064 -204.37.8.0/23 27064 -204.37.10.0/24 27064 -204.37.11.0/24 721 -204.37.12.0/23 721 -204.37.14.0/24 27064 -204.37.15.0/24 721 -204.37.16.0/21 252 -204.37.24.0/24 252 -204.37.128.0/23 721 -204.37.130.0/23 1580 -204.37.132.0/24 1580 -204.37.133.0/24 721 -204.37.134.0/24 1580 -204.37.135.0/24 721 -204.37.136.0/22 721 -204.37.140.0/23 1541 -204.37.142.0/24 1541 -204.37.143.0/24 721 -204.37.144.0/20 721 -204.37.160.0/23 721 -204.37.162.0/24 6041 -204.37.163.0/24 721 -204.37.164.0/22 721 -204.37.168.0/23 721 -204.37.170.0/24 1600 -204.37.171.0/24 721 -204.37.172.0/22 721 -204.37.176.0/24 721 -204.37.177.0/24 1494 -204.37.178.0/24 1494 -204.37.179.0/24 721 -204.37.180.0/22 721 -204.37.184.0/22 721 -204.37.188.0/23 721 -204.37.190.0/23 1580 -204.37.192.0/24 1580 -204.37.193.0/24 721 -204.37.194.0/23 721 -204.37.196.0/22 721 -204.37.200.0/21 721 -204.37.208.0/22 721 -204.37.212.0/24 721 -204.37.213.0/24 1479 -204.37.214.0/23 1479 -204.37.216.0/22 721 -204.37.220.0/24 1453 -204.37.221.0/24 721 -204.37.222.0/23 721 -204.37.224.0/19 721 -204.38.0.0/15 237 -204.40.0.0/15 808 -204.42.0.0/20 2914 -204.42.16.0/20 12119 -204.42.32.0/19 2914 -204.42.64.0/18 2914 -204.42.128.0/17 2914 -204.43.0.0/18 62600 -204.43.64.0/18 22773 -204.43.128.0/17 6172 -204.44.5.0/24 18709 -204.44.6.0/24 18709 -204.44.8.0/21 18709 -204.44.16.0/21 29954 -204.44.24.0/23 29954 -204.44.26.0/24 29954 -204.44.28.0/22 29954 -204.44.57.0/24 36737 -204.44.64.0/18 8100 -204.44.136.0/23 668 -204.44.138.0/23 40345 -204.44.140.0/22 63052 -204.44.157.0/24 53883 -204.44.158.0/23 33159 -204.44.160.0/20 46778 -204.44.184.0/22 27376 -204.44.188.0/22 3605 -204.44.192.0/20 8100 -204.44.245.0/24 26280 -204.44.246.0/23 26280 -204.44.248.0/24 26280 -204.44.252.0/22 26280 -204.45.0.0/16 174 -204.46.0.0/15 14298 -204.48.0.0/21 6407 -204.48.16.0/20 14061 -204.48.34.0/24 53847 -204.48.35.0/24 3549 -204.48.36.0/22 3549 -204.48.40.0/24 3549 -204.48.41.0/24 14095 -204.48.42.0/23 36539 -204.48.44.0/23 54067 -204.48.46.0/24 53874 -204.48.48.0/23 3549 -204.48.51.0/24 3549 -204.48.52.0/24 3549 -204.48.53.0/24 30278 -204.48.54.0/23 13438 -204.48.56.0/24 53274 -204.48.58.0/23 53274 -204.48.60.0/24 23439 -204.48.61.0/24 3549 -204.48.62.0/23 3549 -204.48.64.0/19 5769 -204.48.96.0/21 40232 -204.48.104.0/23 40232 -204.48.108.0/23 40232 -204.48.110.0/23 62943 -204.48.120.0/21 30259 -204.48.128.0/21 23065 -204.48.136.0/21 14237 -204.48.144.0/20 23065 -204.48.160.0/19 23065 -204.48.192.0/18 23065 -204.49.0.0/20 2379 -204.49.16.0/23 2379 -204.49.18.0/24 2379 -204.49.19.0/24 209 -204.49.20.0/22 209 -204.49.24.0/21 2379 -204.49.32.0/21 2379 -204.49.40.0/22 2379 -204.49.44.0/23 2379 -204.49.46.0/24 2379 -204.49.47.0/24 395918 -204.49.48.0/20 2379 -204.49.64.0/21 2379 -204.49.72.0/24 2379 -204.49.73.0/24 209 -204.49.74.0/23 2379 -204.49.76.0/22 2379 -204.49.80.0/20 2379 -204.49.96.0/20 2379 -204.49.112.0/24 2379 -204.49.113.0/24 209 -204.49.114.0/23 2379 -204.49.116.0/22 2379 -204.49.120.0/21 2379 -204.49.128.0/20 2379 -204.49.144.0/23 2379 -204.49.146.0/24 2379 -204.49.147.0/24 209 -204.49.148.0/22 2379 -204.49.152.0/21 2379 -204.49.160.0/23 2379 -204.49.162.0/24 209 -204.49.163.0/24 2379 -204.49.164.0/22 2379 -204.49.168.0/21 2379 -204.49.176.0/23 2379 -204.49.178.0/23 394859 -204.49.180.0/22 394859 -204.49.184.0/24 394859 -204.49.185.0/24 2379 -204.49.186.0/24 209 -204.49.187.0/24 2379 -204.49.188.0/22 2379 -204.49.192.0/18 2379 -204.50.0.0/21 3602 -204.50.8.0/22 3602 -204.50.12.0/24 3602 -204.50.13.0/24 46482 -204.50.14.0/23 3602 -204.50.16.0/20 3602 -204.50.32.0/20 3602 -204.50.48.0/22 3602 -204.50.52.0/23 3602 -204.50.54.0/23 812 -204.50.56.0/21 3602 -204.50.64.0/23 11342 -204.50.66.0/23 3602 -204.50.68.0/23 3602 -204.50.70.0/24 21610 -204.50.71.0/24 3602 -204.50.72.0/21 3602 -204.50.80.0/20 3602 -204.50.96.0/20 3602 -204.50.112.0/24 3602 -204.50.113.0/24 21610 -204.50.114.0/23 3602 -204.50.116.0/22 3602 -204.50.120.0/21 3602 -204.50.128.0/22 3602 -204.50.132.0/24 3602 -204.50.133.0/24 812 -204.50.134.0/23 3602 -204.50.136.0/22 3602 -204.50.140.0/24 3602 -204.50.141.0/24 32277 -204.50.142.0/24 3602 -204.50.143.0/24 812 -204.50.144.0/23 3602 -204.50.146.0/24 19821 -204.50.147.0/24 3602 -204.50.148.0/22 3602 -204.50.152.0/21 3602 -204.50.160.0/24 32277 -204.50.161.0/24 3602 -204.50.162.0/24 3602 -204.50.163.0/24 395677 -204.50.164.0/23 3602 -204.50.166.0/24 3602 -204.50.167.0/24 812 -204.50.168.0/21 3602 -204.50.176.0/22 3602 -204.50.180.0/23 3602 -204.50.182.0/24 3602 -204.50.183.0/24 32277 -204.50.184.0/24 812 -204.50.185.0/24 3602 -204.50.186.0/23 3602 -204.50.188.0/22 3602 -204.50.192.0/23 812 -204.50.194.0/23 3602 -204.50.196.0/22 3602 -204.50.200.0/21 3602 -204.50.208.0/20 3602 -204.50.224.0/22 3602 -204.50.228.0/23 3602 -204.50.230.0/23 812 -204.50.232.0/21 3602 -204.50.240.0/20 3602 -204.51.64.0/20 23148 -204.51.80.0/24 23148 -204.51.82.0/23 23148 -204.51.84.0/22 23148 -204.51.88.0/22 23148 -204.51.92.0/23 23148 -204.51.94.0/24 62669 -204.51.95.0/24 23148 -204.51.96.0/19 11303 -204.51.128.0/19 26228 -204.51.160.0/21 26228 -204.51.168.0/23 26228 -204.51.170.0/24 19994 -204.51.171.0/24 26228 -204.51.172.0/22 26228 -204.51.176.0/20 26228 -204.51.192.0/19 26228 -204.51.224.0/24 27357 -204.51.225.0/24 26228 -204.51.226.0/23 26228 -204.51.228.0/22 26228 -204.51.232.0/23 26228 -204.51.234.0/24 26228 -204.51.235.0/24 27357 -204.51.236.0/22 26228 -204.51.240.0/20 26228 -204.52.10.0/23 54130 -204.52.12.0/22 46708 -204.52.32.0/19 17 -204.52.94.0/23 36350 -204.52.96.0/19 13886 -204.52.128.0/22 6059 -204.52.138.0/24 19773 -204.52.167.0/24 26011 -204.52.168.0/24 29823 -204.52.175.0/24 26931 -204.52.176.0/23 26931 -204.52.179.0/24 32031 -204.52.186.0/24 33657 -204.52.188.0/24 22108 -204.52.196.0/24 40360 -204.52.204.0/23 393572 -204.52.206.0/24 33363 -204.52.209.0/24 13951 -204.52.215.0/24 46 -204.52.218.0/24 6373 -204.52.219.0/24 1982 -204.52.223.0/24 27195 -204.52.224.0/24 18867 -204.52.227.0/24 2033 -204.52.232.0/24 7018 -204.52.234.0/23 393920 -204.52.237.0/24 393390 -204.52.243.0/24 11071 -204.52.244.0/24 62944 -204.52.245.0/24 23138 -204.52.246.0/23 23138 -204.52.248.0/23 2033 -204.52.250.0/24 18581 -204.52.252.0/24 14263 -204.53.0.0/16 10846 -204.54.0.0/17 10846 -204.54.128.0/19 10846 -204.54.192.0/19 10846 -204.55.47.0/24 10846 -204.55.54.0/23 10846 -204.55.56.0/24 10846 -204.55.64.0/19 10846 -204.55.128.0/23 264823 -204.55.146.0/23 133750 -204.55.160.0/24 23724 -204.55.176.0/24 1221 -204.56.0.0/21 3390 -204.56.16.0/20 7309 -204.56.65.0/24 21778 -204.56.84.0/24 21778 -204.56.86.0/24 19339 -204.56.87.0/24 21778 -204.56.94.0/23 21778 -204.56.98.0/24 701 -204.56.100.0/23 12025 -204.56.102.0/23 3549 -204.56.108.0/23 3549 -204.56.112.0/21 174 -204.56.122.0/23 174 -204.56.124.0/22 174 -204.56.128.0/17 1970 -204.57.0.0/21 47 -204.57.8.0/23 3549 -204.57.11.0/24 3549 -204.57.12.0/23 3549 -204.57.32.0/19 2914 -204.57.64.0/22 3549 -204.57.68.0/24 46413 -204.57.69.0/24 3549 -204.57.70.0/24 26648 -204.57.71.0/24 3549 -204.57.72.0/22 3549 -204.57.76.0/24 11667 -204.57.77.0/24 26995 -204.57.78.0/23 3549 -204.57.80.0/24 3549 -204.57.81.0/24 3356 -204.57.82.0/23 3549 -204.57.84.0/23 11667 -204.57.86.0/23 3549 -204.57.88.0/22 7029 -204.57.92.0/22 3549 -204.57.96.0/21 3549 -204.57.104.0/22 393769 -204.57.108.0/24 3549 -204.57.109.0/24 62738 -204.57.110.0/23 3549 -204.57.112.0/23 22403 -204.57.114.0/24 22403 -204.57.115.0/24 3549 -204.57.116.0/22 3549 -204.57.120.0/21 22218 -204.57.128.0/21 1982 -204.57.136.0/22 1982 -204.57.140.0/23 1982 -204.57.142.0/24 12256 -204.57.143.0/24 1982 -204.57.144.0/20 1982 -204.57.160.0/19 1982 -204.57.192.0/18 1982 -204.58.2.0/23 396151 -204.58.15.0/24 32586 -204.58.32.0/20 6527 -204.58.48.0/21 6527 -204.58.56.0/22 6527 -204.58.60.0/23 6527 -204.58.62.0/23 33056 -204.58.80.0/22 2048 -204.58.100.0/22 2048 -204.58.108.0/22 2048 -204.58.112.0/23 2048 -204.58.117.0/24 2048 -204.58.122.0/23 2048 -204.58.124.0/23 2048 -204.58.135.0/24 394770 -204.58.147.0/24 53960 -204.58.152.0/22 7029 -204.58.156.0/22 36861 -204.58.160.0/21 36861 -204.58.168.0/22 393247 -204.58.180.0/24 7018 -204.58.196.0/22 13825 -204.58.204.0/22 395490 -204.58.216.0/24 8103 -204.58.220.0/24 209 -204.58.221.0/24 397551 -204.58.222.0/23 209 -204.58.224.0/22 3719 -204.58.232.0/22 14888 -204.58.240.0/22 1798 -204.58.244.0/24 33173 -204.58.245.0/24 199557 -204.58.246.0/24 22696 -204.58.248.0/24 22696 -204.58.249.0/24 32057 -204.58.250.0/24 3369 -204.58.254.0/23 22229 -204.59.0.0/24 5511 -204.59.1.0/24 51964 -204.59.2.0/24 51964 -204.59.3.0/24 5511 -204.59.4.0/24 5511 -204.59.5.0/24 51964 -204.59.6.0/24 51964 -204.59.7.0/24 5511 -204.59.8.0/24 51964 -204.59.9.0/24 5511 -204.59.10.0/23 5511 -204.59.12.0/24 51964 -204.59.13.0/24 5511 -204.59.14.0/23 5511 -204.59.16.0/22 5511 -204.59.20.0/24 51964 -204.59.21.0/24 5511 -204.59.22.0/23 5511 -204.59.24.0/21 5511 -204.59.32.0/19 5511 -204.59.64.0/24 51964 -204.59.65.0/24 5511 -204.59.66.0/23 5511 -204.59.68.0/22 5511 -204.59.72.0/21 5511 -204.59.80.0/24 51964 -204.59.81.0/24 5511 -204.59.82.0/23 5511 -204.59.84.0/22 5511 -204.59.88.0/23 51964 -204.59.90.0/23 5511 -204.59.92.0/22 5511 -204.59.96.0/21 5511 -204.59.104.0/23 5511 -204.59.106.0/23 51964 -204.59.108.0/24 5511 -204.59.109.0/24 51964 -204.59.110.0/23 5511 -204.59.112.0/20 5511 -204.59.128.0/20 5511 -204.59.144.0/21 5511 -204.59.152.0/21 51964 -204.59.160.0/19 5511 -204.59.192.0/23 5511 -204.59.194.0/24 51964 -204.59.195.0/24 5511 -204.59.196.0/22 5511 -204.59.200.0/23 5511 -204.59.202.0/24 51964 -204.59.203.0/24 5511 -204.59.204.0/22 5511 -204.59.208.0/20 5511 -204.59.224.0/20 5511 -204.59.240.0/21 5511 -204.59.248.0/23 5511 -204.59.250.0/23 51964 -204.59.252.0/24 5511 -204.59.253.0/24 51964 -204.59.254.0/23 5511 -204.60.0.0/19 7018 -204.60.32.0/20 7018 -204.60.48.0/23 7018 -204.60.50.0/23 20442 -204.60.52.0/22 7018 -204.60.56.0/21 7018 -204.60.64.0/20 7018 -204.60.80.0/22 7018 -204.60.84.0/24 54420 -204.60.85.0/24 7018 -204.60.86.0/23 7018 -204.60.88.0/21 7018 -204.60.96.0/19 7018 -204.60.128.0/20 7018 -204.60.144.0/22 7018 -204.60.148.0/23 7018 -204.60.150.0/24 7018 -204.60.151.0/24 27025 -204.60.152.0/21 7018 -204.60.160.0/20 7018 -204.60.176.0/24 26341 -204.60.177.0/24 7018 -204.60.178.0/23 7018 -204.60.180.0/22 7018 -204.60.184.0/22 20442 -204.60.188.0/22 7018 -204.60.192.0/18 7018 -204.61.0.0/21 40628 -204.61.8.0/22 40628 -204.61.12.0/23 40628 -204.61.14.0/23 54159 -204.61.30.0/23 23409 -204.61.56.0/21 10632 -204.61.132.0/22 40502 -204.61.192.0/21 18694 -204.61.200.0/22 18694 -204.61.204.0/23 18694 -204.61.206.0/24 18694 -204.61.207.0/24 33595 -204.61.208.0/21 715 -204.61.216.0/23 42 -204.61.218.0/23 26330 -204.61.220.0/22 46785 -204.61.224.0/19 23431 -204.62.0.0/21 393222 -204.62.8.0/23 393222 -204.62.10.0/23 54209 -204.62.12.0/22 46636 -204.62.16.0/21 40628 -204.62.24.0/22 40628 -204.62.28.0/22 15041 -204.62.32.0/20 394395 -204.62.48.0/22 394395 -204.62.52.0/22 40089 -204.62.56.0/22 18786 -204.62.60.0/23 18786 -204.62.62.0/24 18786 -204.62.63.0/24 10796 -204.62.64.0/19 22773 -204.62.96.0/20 22773 -204.62.112.0/24 22773 -204.62.113.0/24 11398 -204.62.114.0/23 25657 -204.62.116.0/22 19247 -204.62.120.0/24 53889 -204.62.121.0/24 6130 -204.62.122.0/23 53889 -204.62.124.0/22 53889 -204.62.128.0/22 23248 -204.62.132.0/23 394741 -204.62.140.0/23 26554 -204.62.142.0/24 26554 -204.62.145.0/24 46375 -204.62.150.0/23 22490 -204.62.155.0/24 63331 -204.62.157.0/24 6939 -204.62.159.0/24 6565 -204.62.192.0/23 174 -204.62.194.0/23 17091 -204.62.196.0/24 17091 -204.62.200.0/24 3356 -204.62.201.0/24 54327 -204.62.203.0/24 3807 -204.62.204.0/23 54327 -204.62.206.0/24 174 -204.62.231.0/24 22773 -204.62.233.0/24 8047 -204.62.251.0/24 20033 -204.63.0.0/20 32335 -204.63.16.0/20 36514 -204.63.35.0/24 19769 -204.63.38.0/23 33070 -204.63.40.0/24 395609 -204.63.41.0/24 395615 -204.63.42.0/24 16419 -204.63.43.0/24 16660 -204.63.44.0/22 393361 -204.63.55.0/24 393361 -204.63.130.0/23 19511 -204.63.133.0/24 26336 -204.63.134.0/23 33482 -204.63.136.0/22 36149 -204.63.140.0/23 36149 -204.63.143.0/24 36149 -204.63.152.0/22 6181 -204.63.156.0/22 3573 -204.63.160.0/24 27583 -204.63.162.0/24 27583 -204.63.165.0/24 27583 -204.63.167.0/24 27583 -204.63.171.0/24 33016 -204.63.172.0/24 393788 -204.63.173.0/24 6327 -204.63.176.0/21 11686 -204.63.190.0/23 40028 -204.63.192.0/21 23099 -204.63.200.0/21 40200 -204.63.209.0/24 393274 -204.63.210.0/24 393274 -204.63.214.0/23 26801 -204.63.216.0/21 54214 -204.63.232.0/21 33338 -204.63.248.0/21 35911 -204.64.0.0/14 1761 -204.68.16.0/20 14454 -204.68.32.0/20 25792 -204.68.48.0/23 25792 -204.68.50.0/24 3549 -204.68.51.0/24 25792 -204.68.52.0/22 25792 -204.68.56.0/21 25792 -204.68.64.0/19 4511 -204.68.96.0/21 6130 -204.68.104.0/22 53559 -204.68.108.0/22 6130 -204.68.112.0/22 6130 -204.68.116.0/23 6130 -204.68.118.0/23 53559 -204.68.120.0/23 6130 -204.68.122.0/24 6130 -204.68.123.0/24 395367 -204.68.124.0/22 6130 -204.68.128.0/24 396218 -204.68.130.0/24 396218 -204.68.140.0/24 6075 -204.68.151.0/24 19280 -204.68.152.0/24 36410 -204.68.170.0/24 19740 -204.68.171.0/24 36324 -204.68.180.0/23 3952 -204.68.184.0/24 33369 -204.68.186.0/23 46887 -204.68.194.0/23 2576 -204.68.196.0/23 2576 -204.68.202.0/24 2576 -204.68.207.0/24 2650 -204.68.208.0/24 22009 -204.68.210.0/24 394411 -204.68.216.0/24 393826 -204.68.226.0/24 6077 -204.68.227.0/24 3801 -204.68.228.0/24 3801 -204.68.231.0/24 36445 -204.68.232.0/23 63201 -204.68.234.0/24 396058 -204.68.241.0/24 33491 -204.68.242.0/24 394516 -204.68.243.0/24 2048 -204.68.244.0/23 2048 -204.68.254.0/23 20109 -204.69.0.0/22 2152 -204.69.4.0/24 2152 -204.69.6.0/23 2152 -204.69.8.0/21 73 -204.69.17.0/24 396522 -204.69.31.0/24 396522 -204.69.32.0/24 36259 -204.69.33.0/24 23049 -204.69.37.0/24 23049 -204.69.38.0/23 23049 -204.69.40.0/23 23049 -204.69.64.0/18 1648 -204.69.132.0/23 36410 -204.69.145.0/24 12047 -204.69.146.0/23 12047 -204.69.148.0/23 12047 -204.69.150.0/24 40051 -204.69.154.0/24 11328 -204.69.166.0/23 25862 -204.69.168.0/24 40337 -204.69.171.0/24 19510 -204.69.181.0/24 22255 -204.69.182.0/24 22255 -204.69.190.0/24 209 -204.69.191.0/24 14200 -204.69.198.0/23 109 -204.69.200.0/24 109 -204.69.206.0/24 10255 -204.69.207.0/24 17113 -204.69.210.0/24 31839 -204.69.214.0/24 14915 -204.69.220.0/24 852 -204.69.229.0/24 32477 -204.69.230.0/24 54189 -204.69.232.0/24 7033 -204.69.233.0/24 7905 -204.69.234.0/24 397215 -204.69.235.0/24 394333 -204.69.250.0/23 12076 -204.69.252.0/24 2576 -204.70.0.0/16 3561 -204.71.0.0/18 3561 -204.71.64.0/20 3561 -204.71.80.0/21 3561 -204.71.88.0/23 11012 -204.71.90.0/23 3561 -204.71.92.0/22 3561 -204.71.96.0/22 3561 -204.71.100.0/24 11255 -204.71.101.0/24 3561 -204.71.102.0/23 3561 -204.71.104.0/21 3561 -204.71.112.0/20 3561 -204.71.128.0/22 3561 -204.71.132.0/23 3561 -204.71.134.0/24 3561 -204.71.135.0/24 14011 -204.71.136.0/21 3561 -204.71.144.0/20 3561 -204.71.160.0/19 3561 -204.71.192.0/18 3561 -204.72.0.0/17 5006 -204.72.128.0/20 5006 -204.72.144.0/21 5006 -204.72.152.0/22 5006 -204.72.156.0/22 7821 -204.72.160.0/21 5006 -204.72.168.0/23 5006 -204.72.170.0/24 5006 -204.72.171.0/24 7821 -204.72.172.0/23 5006 -204.72.174.0/24 5006 -204.72.175.0/24 1347 -204.72.176.0/21 5006 -204.72.184.0/23 5006 -204.72.186.0/24 5006 -204.72.187.0/24 7821 -204.72.188.0/22 5006 -204.72.192.0/18 5006 -204.73.0.0/19 5006 -204.73.32.0/23 5006 -204.73.34.0/24 5006 -204.73.35.0/24 7821 -204.73.36.0/22 5006 -204.73.40.0/21 5006 -204.73.48.0/22 5006 -204.73.52.0/23 5006 -204.73.54.0/24 5006 -204.73.55.0/24 7821 -204.73.56.0/21 5006 -204.73.64.0/19 5006 -204.73.96.0/22 5006 -204.73.100.0/23 5006 -204.73.102.0/24 7821 -204.73.103.0/24 5006 -204.73.104.0/21 5006 -204.73.112.0/20 5006 -204.73.128.0/18 5006 -204.73.192.0/21 21730 -204.73.200.0/21 5006 -204.73.208.0/21 5006 -204.73.216.0/23 5006 -204.73.218.0/24 1347 -204.73.219.0/24 5006 -204.73.220.0/22 5006 -204.73.224.0/19 5006 -204.74.0.0/21 6079 -204.74.8.0/23 6079 -204.74.12.0/22 17306 -204.74.19.0/24 32062 -204.74.20.0/24 32062 -204.74.22.0/24 32062 -204.74.24.0/24 32062 -204.74.26.0/23 32062 -204.74.28.0/24 32062 -204.74.30.0/23 32062 -204.74.48.0/20 24199 -204.74.64.0/24 23028 -204.74.65.0/24 36324 -204.74.66.0/24 397215 -204.74.67.0/24 397213 -204.74.75.0/24 13361 -204.74.76.0/23 13361 -204.74.78.0/24 36324 -204.74.96.0/24 12008 -204.74.99.0/24 397213 -204.74.101.0/24 397213 -204.74.108.0/24 397215 -204.74.109.0/24 397213 -204.74.110.0/23 397213 -204.74.112.0/24 397215 -204.74.113.0/24 397213 -204.74.114.0/23 397213 -204.74.128.0/18 23068 -204.74.192.0/21 23068 -204.74.200.0/22 33668 -204.74.205.0/24 23068 -204.74.206.0/24 23068 -204.74.208.0/20 20248 -204.74.224.0/19 7979 -204.75.12.0/22 14313 -204.75.32.0/19 7961 -204.75.64.0/23 26245 -204.75.67.0/24 26245 -204.75.68.0/24 26245 -204.75.80.0/23 26245 -204.75.84.0/24 26245 -204.75.89.0/24 26245 -204.75.91.0/24 26245 -204.75.92.0/22 26245 -204.75.96.0/23 26245 -204.75.99.0/24 26245 -204.75.100.0/24 26245 -204.75.105.0/24 26245 -204.75.120.0/22 26245 -204.75.125.0/24 26245 -204.75.126.0/23 26245 -204.75.140.0/24 11089 -204.75.142.0/24 55819 -204.75.143.0/24 1428 -204.75.144.0/23 53878 -204.75.154.0/24 7735 -204.75.156.0/24 174 -204.75.157.0/24 54013 -204.75.158.0/24 16679 -204.75.162.0/24 12116 -204.75.164.0/24 4565 -204.75.169.0/24 46571 -204.75.170.0/24 46571 -204.75.172.0/23 53796 -204.75.178.0/24 22638 -204.75.185.0/24 394790 -204.75.186.0/24 3257 -204.75.187.0/24 21886 -204.75.188.0/24 36351 -204.75.189.0/24 14618 -204.75.190.0/23 11250 -204.75.192.0/24 11250 -204.75.197.0/24 18867 -204.75.198.0/23 18867 -204.75.207.0/24 11809 -204.75.238.0/24 3845 -204.75.249.0/24 2152 -204.75.250.0/23 2152 -204.75.252.0/22 2152 -204.76.0.0/21 62943 -204.76.9.0/24 701 -204.76.11.0/24 701 -204.76.13.0/24 3257 -204.76.29.0/24 40883 -204.76.30.0/23 18662 -204.76.64.0/20 20314 -204.76.81.0/24 20314 -204.76.82.0/24 20314 -204.76.84.0/24 20314 -204.76.88.0/21 20314 -204.76.96.0/21 20314 -204.76.112.0/23 20314 -204.76.115.0/24 20314 -204.76.116.0/23 20314 -204.76.129.0/24 13996 -204.76.134.0/23 53858 -204.76.144.0/21 63254 -204.76.158.0/23 396336 -204.76.160.0/22 396336 -204.76.164.0/23 396336 -204.76.167.0/24 13620 -204.76.169.0/24 13620 -204.76.170.0/24 3561 -204.76.172.0/24 13620 -204.76.173.0/24 4264 -204.76.174.0/23 13566 -204.76.179.0/24 33490 -204.76.180.0/23 33490 -204.76.182.0/23 3390 -204.76.184.0/22 3390 -204.76.188.0/23 3390 -204.76.190.0/23 16957 -204.76.192.0/22 16957 -204.76.196.0/23 22866 -204.76.211.0/24 40525 -204.76.212.0/23 19950 -204.76.220.0/23 32019 -204.76.222.0/23 91 -204.76.224.0/22 91 -204.76.228.0/23 91 -204.76.238.0/24 33363 -204.76.240.0/23 33363 -204.76.242.0/24 33363 -204.76.245.0/24 33363 -204.76.254.0/23 26876 -204.77.0.0/21 53340 -204.77.8.0/23 53340 -204.77.10.0/23 21559 -204.77.12.0/22 53340 -204.77.16.0/24 35918 -204.77.17.0/24 2828 -204.77.18.0/24 174 -204.77.19.0/24 35918 -204.77.20.0/22 35918 -204.77.24.0/24 35918 -204.77.27.0/24 55044 -204.77.32.0/19 675 -204.77.134.0/23 30532 -204.77.136.0/22 46760 -204.77.145.0/24 54068 -204.77.148.0/23 40096 -204.77.151.0/24 54079 -204.77.153.0/24 21672 -204.77.161.0/24 54061 -204.77.162.0/23 26324 -204.77.164.0/22 13807 -204.77.171.0/24 26521 -204.77.174.0/24 13807 -204.77.178.0/24 13807 -204.77.182.0/24 12042 -204.77.185.0/24 7029 -204.77.189.0/24 54047 -204.77.195.0/24 14344 -204.77.206.0/24 35938 -204.77.216.0/23 46550 -204.77.218.0/23 10835 -204.77.220.0/23 11610 -204.77.222.0/23 53767 -204.77.224.0/19 35985 -204.78.0.0/20 19576 -204.78.32.0/19 23287 -204.78.64.0/18 394126 -204.78.160.0/19 31923 -204.78.228.0/22 31923 -204.78.232.0/23 30457 -204.79.84.0/24 3300 -204.79.135.0/24 8075 -204.79.138.0/23 27313 -204.79.142.0/24 394990 -204.79.147.0/24 12510 -204.79.172.0/24 27313 -204.79.179.0/24 8075 -204.79.180.0/24 62540 -204.79.195.0/24 8075 -204.79.197.0/24 8068 -204.79.252.0/24 8075 -204.80.0.0/21 16438 -204.80.32.0/19 394712 -204.80.64.0/24 46252 -204.80.86.0/23 22804 -204.80.88.0/21 18590 -204.80.104.0/23 30103 -204.80.108.0/23 30103 -204.80.112.0/20 36105 -204.80.128.0/24 20473 -204.80.132.0/24 54864 -204.80.136.0/24 27575 -204.80.149.0/24 3549 -204.80.150.0/24 29422 -204.80.157.0/24 13576 -204.80.158.0/24 27284 -204.80.159.0/24 54091 -204.80.161.0/24 23496 -204.80.184.0/24 2386 -204.80.187.0/24 11080 -204.80.191.0/24 53713 -204.80.194.0/24 54195 -204.80.211.0/24 16647 -204.80.212.0/24 2386 -204.80.217.0/24 7385 -204.80.222.0/24 7018 -204.80.226.0/24 7046 -204.80.232.0/24 62727 -204.80.242.0/24 54169 -204.80.245.0/24 26554 -204.80.248.0/24 22658 -204.81.0.0/16 17120 -204.82.0.0/16 17120 -204.83.0.0/23 803 -204.83.2.0/24 803 -204.83.3.0/24 26806 -204.83.4.0/22 803 -204.83.8.0/21 803 -204.83.16.0/22 803 -204.83.20.0/24 803 -204.83.21.0/24 30324 -204.83.22.0/23 30324 -204.83.24.0/21 803 -204.83.32.0/22 803 -204.83.36.0/24 803 -204.83.37.0/24 26806 -204.83.38.0/23 803 -204.83.40.0/21 803 -204.83.48.0/20 803 -204.83.64.0/18 803 -204.83.128.0/20 803 -204.83.144.0/22 803 -204.83.148.0/23 803 -204.83.150.0/24 26806 -204.83.151.0/24 803 -204.83.152.0/23 803 -204.83.154.0/23 27628 -204.83.156.0/22 803 -204.83.160.0/23 803 -204.83.162.0/24 803 -204.83.163.0/24 397894 -204.83.164.0/24 803 -204.83.165.0/24 11568 -204.83.166.0/23 803 -204.83.168.0/21 803 -204.83.176.0/22 803 -204.83.180.0/23 803 -204.83.182.0/24 803 -204.83.183.0/24 27628 -204.83.184.0/22 803 -204.83.188.0/24 803 -204.83.189.0/24 26806 -204.83.190.0/24 803 -204.83.191.0/24 30580 -204.83.192.0/20 803 -204.83.208.0/23 803 -204.83.210.0/24 803 -204.83.211.0/24 26806 -204.83.212.0/22 803 -204.83.216.0/21 803 -204.83.224.0/20 803 -204.83.240.0/23 26806 -204.83.242.0/23 803 -204.83.244.0/22 803 -204.83.248.0/24 803 -204.83.249.0/24 393607 -204.83.250.0/23 803 -204.83.252.0/22 803 -204.84.0.0/22 81 -204.84.4.0/22 20197 -204.84.8.0/22 36850 -204.84.12.0/22 81 -204.84.16.0/20 81 -204.84.32.0/20 27446 -204.84.48.0/20 81 -204.84.64.0/18 81 -204.84.128.0/18 81 -204.84.192.0/19 81 -204.84.224.0/21 81 -204.84.232.0/22 81 -204.84.236.0/23 81 -204.84.238.0/23 6559 -204.84.240.0/22 81 -204.84.244.0/22 11442 -204.84.248.0/22 81 -204.84.252.0/22 36850 -204.85.0.0/17 81 -204.85.128.0/19 81 -204.85.160.0/20 81 -204.85.176.0/20 36850 -204.85.192.0/18 81 -204.86.14.0/23 21551 -204.86.34.0/23 18703 -204.86.41.0/24 19603 -204.86.42.0/24 19603 -204.86.50.0/24 23173 -204.86.64.0/23 30305 -204.86.66.0/24 30305 -204.86.68.0/24 30305 -204.86.70.0/23 30305 -204.86.116.0/22 22625 -204.86.130.0/23 46668 -204.86.132.0/23 17085 -204.86.134.0/23 10753 -204.86.168.0/24 33132 -204.86.170.0/24 33132 -204.86.184.0/21 2576 -204.86.192.0/23 2576 -204.86.194.0/24 53954 -204.86.195.0/24 27360 -204.86.196.0/23 14372 -204.86.198.0/23 33058 -204.86.202.0/24 32382 -204.86.203.0/24 31865 -204.86.208.0/21 31865 -204.86.216.0/23 396843 -204.86.231.0/24 3599 -204.86.250.0/24 11811 -204.86.252.0/22 17256 -204.87.16.0/20 3930 -204.87.32.0/23 174 -204.87.34.0/24 174 -204.87.40.0/24 3549 -204.87.41.0/24 174 -204.87.62.0/23 174 -204.87.64.0/18 40628 -204.87.133.0/24 18566 -204.87.135.0/24 53559 -204.87.142.0/24 54059 -204.87.149.0/24 14051 -204.87.151.0/24 394968 -204.87.157.0/24 13871 -204.87.158.0/24 11351 -204.87.160.0/24 18517 -204.87.167.0/24 13676 -204.87.169.0/24 26610 -204.87.172.0/24 54330 -204.87.181.0/24 5036 -204.87.182.0/24 7029 -204.87.183.0/24 7247 -204.87.187.0/24 30170 -204.87.189.0/24 54058 -204.87.192.0/24 5036 -204.87.198.0/24 7018 -204.87.204.0/24 3701 -204.87.205.0/24 21575 -204.87.211.0/24 13536 -204.87.213.0/24 46594 -204.87.225.0/24 14361 -204.87.226.0/24 14361 -204.87.227.0/24 11215 -204.87.243.0/24 397728 -204.87.244.0/24 11716 -204.87.246.0/24 21932 -204.87.249.0/24 393977 -204.87.251.0/24 46939 -204.87.253.0/24 11716 -204.87.255.0/24 32941 -204.88.8.0/23 393674 -204.88.10.0/24 393674 -204.88.28.0/22 33132 -204.88.64.0/19 31929 -204.88.96.0/19 6527 -204.88.128.0/19 3734 -204.88.180.0/24 53647 -204.88.186.0/23 53647 -204.88.188.0/24 53647 -204.88.190.0/23 46101 -204.88.192.0/19 6099 -204.88.224.0/19 40248 -204.89.8.0/21 5108 -204.89.16.0/22 11307 -204.89.22.0/24 33360 -204.89.23.0/24 7018 -204.89.24.0/22 40181 -204.89.28.0/22 17348 -204.89.32.0/22 32342 -204.89.36.0/24 32342 -204.89.48.0/22 32342 -204.89.57.0/24 54164 -204.89.58.0/23 6095 -204.89.60.0/22 25843 -204.89.64.0/23 8103 -204.89.66.0/24 8103 -204.89.68.0/22 8103 -204.89.72.0/21 8103 -204.89.80.0/23 8103 -204.89.84.0/24 8103 -204.89.88.0/22 8103 -204.89.92.0/23 8103 -204.89.94.0/24 8103 -204.89.96.0/24 8103 -204.89.98.0/23 8103 -204.89.100.0/22 8103 -204.89.104.0/23 8103 -204.89.106.0/24 8103 -204.89.108.0/22 8103 -204.89.112.0/21 8103 -204.89.122.0/24 8103 -204.89.124.0/22 8103 -204.89.128.0/24 11404 -204.89.129.0/24 17054 -204.89.131.0/24 396260 -204.89.132.0/23 7872 -204.89.138.0/24 17054 -204.89.139.0/24 14278 -204.89.143.0/24 30521 -204.89.144.0/24 10596 -204.89.152.0/24 25786 -204.89.153.0/24 3555 -204.89.154.0/24 3555 -204.89.158.0/23 22406 -204.89.160.0/23 22406 -204.89.169.0/24 36194 -204.89.170.0/24 26854 -204.89.186.0/24 7828 -204.89.188.0/24 3356 -204.89.192.0/24 2495 -204.89.196.0/24 54167 -204.89.198.0/24 6491 -204.89.211.0/24 32928 -204.89.213.0/24 11020 -204.89.220.0/24 394427 -204.89.222.0/24 3724 -204.89.225.0/24 3549 -204.89.234.0/24 13367 -204.89.238.0/24 53436 -204.89.239.0/24 600 -204.89.241.0/24 19271 -204.89.249.0/24 56065 -204.89.252.0/24 201106 -204.89.253.0/24 11550 -204.90.2.0/24 18594 -204.90.10.0/23 14062 -204.90.12.0/24 15258 -204.90.13.0/24 23148 -204.90.14.0/24 23148 -204.90.15.0/24 15258 -204.90.18.0/23 8103 -204.90.20.0/23 8103 -204.90.24.0/21 8103 -204.90.32.0/20 2055 -204.90.48.0/22 2055 -204.90.52.0/22 46670 -204.90.56.0/21 40170 -204.90.69.0/24 7018 -204.90.71.0/24 13352 -204.90.74.0/24 13496 -204.90.78.0/24 2033 -204.90.81.0/24 20442 -204.90.84.0/24 53819 -204.90.85.0/24 18440 -204.90.88.0/24 46354 -204.90.92.0/24 12025 -204.90.98.0/24 53970 -204.90.101.0/24 23177 -204.90.102.0/24 14091 -204.90.103.0/24 3724 -204.90.106.0/24 46412 -204.90.111.0/24 4324 -204.90.115.0/24 7018 -204.90.118.0/24 29964 -204.90.123.0/24 395176 -204.90.130.0/24 6524 -204.90.138.0/24 6524 -204.90.140.0/22 16751 -204.90.156.0/24 6524 -204.90.172.0/23 16751 -204.90.181.0/24 8232 -204.90.182.0/24 8232 -204.90.187.0/24 6524 -204.90.230.0/24 6524 -204.91.0.0/21 2828 -204.91.8.0/22 2828 -204.91.12.0/23 2828 -204.91.14.0/24 46403 -204.91.15.0/24 2828 -204.91.16.0/20 2828 -204.91.32.0/20 2828 -204.91.48.0/24 19860 -204.91.49.0/24 2828 -204.91.50.0/23 2828 -204.91.52.0/22 2828 -204.91.56.0/21 2828 -204.91.64.0/18 2828 -204.91.128.0/23 2828 -204.91.130.0/24 46914 -204.91.131.0/24 2828 -204.91.132.0/22 2828 -204.91.136.0/21 2828 -204.91.144.0/21 2828 -204.91.152.0/22 2828 -204.91.156.0/24 11893 -204.91.157.0/24 2828 -204.91.158.0/23 2828 -204.91.160.0/19 2828 -204.91.192.0/18 2828 -204.92.0.0/20 701 -204.92.16.0/24 701 -204.92.17.0/24 32339 -204.92.18.0/24 701 -204.92.19.0/24 7160 -204.92.20.0/23 701 -204.92.22.0/24 7160 -204.92.23.0/24 11486 -204.92.24.0/24 11486 -204.92.25.0/24 701 -204.92.26.0/24 7160 -204.92.27.0/24 701 -204.92.28.0/23 701 -204.92.30.0/24 701 -204.92.31.0/24 7160 -204.92.32.0/21 701 -204.92.40.0/22 701 -204.92.44.0/22 852 -204.92.48.0/21 701 -204.92.56.0/23 701 -204.92.58.0/24 17397 -204.92.59.0/24 701 -204.92.60.0/22 701 -204.92.64.0/21 701 -204.92.72.0/23 701 -204.92.74.0/24 701 -204.92.75.0/24 22863 -204.92.76.0/22 701 -204.92.80.0/20 701 -204.92.96.0/22 11486 -204.92.100.0/24 11486 -204.92.101.0/24 813 -204.92.102.0/23 11486 -204.92.104.0/21 701 -204.92.112.0/24 701 -204.92.113.0/24 11486 -204.92.114.0/24 7160 -204.92.115.0/24 701 -204.92.116.0/24 701 -204.92.117.0/24 11486 -204.92.118.0/23 701 -204.92.120.0/23 701 -204.92.122.0/24 701 -204.92.123.0/24 11486 -204.92.124.0/22 701 -204.92.128.0/19 701 -204.92.160.0/20 701 -204.92.176.0/21 701 -204.92.184.0/24 813 -204.92.185.0/24 701 -204.92.186.0/23 701 -204.92.188.0/22 701 -204.92.192.0/19 701 -204.92.224.0/21 701 -204.92.232.0/23 701 -204.92.234.0/23 14843 -204.92.236.0/22 701 -204.92.240.0/20 701 -204.93.0.0/19 698 -204.93.32.0/22 3257 -204.93.36.0/24 23420 -204.93.37.0/24 3257 -204.93.38.0/23 20940 -204.93.40.0/21 3257 -204.93.48.0/20 3257 -204.93.64.0/19 13364 -204.93.96.0/19 26827 -204.93.128.0/21 23352 -204.93.136.0/23 23352 -204.93.138.0/24 23352 -204.93.139.0/24 48851 -204.93.140.0/23 23352 -204.93.142.0/23 30081 -204.93.144.0/22 23352 -204.93.148.0/23 23352 -204.93.150.0/24 30081 -204.93.151.0/24 23352 -204.93.152.0/22 23352 -204.93.156.0/23 23352 -204.93.158.0/24 46221 -204.93.159.0/24 23352 -204.93.160.0/20 23352 -204.93.176.0/23 23352 -204.93.178.0/24 23352 -204.93.179.0/24 16790 -204.93.180.0/22 23352 -204.93.184.0/24 23352 -204.93.185.0/24 29789 -204.93.186.0/23 23352 -204.93.188.0/22 23352 -204.93.192.0/21 23352 -204.93.200.0/24 23352 -204.93.201.0/24 32771 -204.93.202.0/23 23352 -204.93.204.0/22 23352 -204.93.208.0/21 23352 -204.93.216.0/22 23352 -204.93.220.0/24 23352 -204.93.221.0/24 56468 -204.93.222.0/23 23352 -204.93.224.0/24 48851 -204.93.225.0/24 23352 -204.93.226.0/23 23352 -204.93.228.0/22 23352 -204.93.232.0/21 23352 -204.93.240.0/20 23352 -204.94.0.0/19 1239 -204.94.32.0/22 1239 -204.94.36.0/23 1239 -204.94.38.0/24 1239 -204.94.39.0/24 12104 -204.94.40.0/21 1239 -204.94.48.0/20 1239 -204.94.64.0/20 1239 -204.94.80.0/20 19893 -204.94.96.0/19 1239 -204.94.128.0/19 1239 -204.94.160.0/22 1239 -204.94.164.0/23 26556 -204.94.166.0/23 1239 -204.94.168.0/22 1239 -204.94.172.0/23 1239 -204.94.174.0/24 1239 -204.94.175.0/24 22773 -204.94.176.0/20 1239 -204.94.192.0/19 1239 -204.94.224.0/22 1239 -204.94.228.0/24 22034 -204.94.229.0/24 1239 -204.94.230.0/23 1239 -204.94.232.0/22 1239 -204.94.236.0/23 1239 -204.94.238.0/24 36134 -204.94.239.0/24 1239 -204.94.240.0/20 1239 -204.95.0.0/21 1239 -204.95.8.0/22 26725 -204.95.12.0/22 1239 -204.95.16.0/20 1239 -204.95.32.0/20 1239 -204.95.48.0/22 26724 -204.95.52.0/22 7046 -204.95.56.0/21 1239 -204.95.64.0/19 1239 -204.95.96.0/20 8075 -204.95.112.0/20 1239 -204.95.128.0/20 1239 -204.95.144.0/22 1239 -204.95.148.0/23 1239 -204.95.150.0/24 6318 -204.95.151.0/24 1239 -204.95.152.0/21 1239 -204.95.160.0/24 3549 -204.95.161.0/24 1239 -204.95.162.0/23 1239 -204.95.164.0/22 1239 -204.95.168.0/21 1239 -204.95.176.0/20 1239 -204.95.192.0/18 1239 -204.96.0.0/22 1239 -204.96.4.0/24 1239 -204.96.5.0/24 16560 -204.96.6.0/23 1239 -204.96.8.0/21 1239 -204.96.16.0/23 19201 -204.96.18.0/23 1239 -204.96.20.0/22 1239 -204.96.24.0/23 1239 -204.96.26.0/24 32854 -204.96.27.0/24 1239 -204.96.28.0/22 1239 -204.96.32.0/19 1239 -204.96.64.0/19 1239 -204.96.96.0/24 33717 -204.96.97.0/24 1239 -204.96.98.0/23 1239 -204.96.100.0/22 1239 -204.96.104.0/21 1239 -204.96.112.0/20 1239 -204.96.128.0/19 1239 -204.96.160.0/20 1239 -204.96.176.0/22 1239 -204.96.180.0/23 26451 -204.96.182.0/23 1239 -204.96.184.0/22 1239 -204.96.188.0/22 26451 -204.96.192.0/18 1239 -204.97.0.0/20 1239 -204.97.16.0/21 21547 -204.97.24.0/21 1239 -204.97.32.0/19 1239 -204.97.64.0/20 1239 -204.97.80.0/21 1239 -204.97.88.0/22 1239 -204.97.92.0/22 3257 -204.97.96.0/21 3257 -204.97.104.0/24 397932 -204.97.105.0/24 1239 -204.97.106.0/23 1239 -204.97.108.0/22 1239 -204.97.112.0/20 1239 -204.97.128.0/18 3931 -204.97.192.0/20 1239 -204.97.208.0/21 1239 -204.97.216.0/22 1239 -204.97.220.0/23 1239 -204.97.222.0/23 4133 -204.97.224.0/22 1239 -204.97.228.0/23 1239 -204.97.230.0/23 7381 -204.97.232.0/21 21547 -204.97.240.0/20 1239 -204.98.0.0/17 209 -204.98.128.0/18 209 -204.98.192.0/20 209 -204.98.208.0/21 3910 -204.98.216.0/23 3910 -204.98.218.0/24 16930 -204.98.219.0/24 3910 -204.98.220.0/22 3910 -204.98.224.0/24 33307 -204.98.225.0/24 209 -204.98.226.0/23 209 -204.98.228.0/22 209 -204.98.232.0/21 209 -204.98.240.0/20 209 -204.99.0.0/17 2386 -204.99.128.0/24 17055 -204.99.129.0/24 6521 -204.99.132.0/24 15096 -204.99.140.0/24 15096 -204.99.153.0/24 15305 -204.99.154.0/23 15305 -204.99.160.0/20 17055 -204.99.178.0/23 209 -204.99.180.0/22 209 -204.99.184.0/23 209 -204.99.192.0/22 16403 -204.99.196.0/23 16403 -204.99.199.0/24 16403 -204.99.200.0/24 16403 -204.99.204.0/22 16403 -204.99.208.0/23 54056 -204.99.210.0/24 54056 -204.99.223.0/24 54056 -204.100.0.0/16 18558 -204.101.0.0/24 577 -204.101.1.0/24 36522 -204.101.2.0/23 577 -204.101.4.0/23 577 -204.101.6.0/23 36522 -204.101.8.0/24 577 -204.101.9.0/24 395198 -204.101.10.0/23 577 -204.101.12.0/23 577 -204.101.14.0/24 577 -204.101.15.0/24 3848 -204.101.16.0/22 577 -204.101.20.0/24 577 -204.101.21.0/24 36522 -204.101.22.0/24 36522 -204.101.23.0/24 395198 -204.101.24.0/22 577 -204.101.28.0/24 577 -204.101.29.0/24 36522 -204.101.30.0/23 577 -204.101.32.0/24 21724 -204.101.33.0/24 577 -204.101.34.0/24 577 -204.101.35.0/24 19905 -204.101.36.0/24 577 -204.101.37.0/24 21724 -204.101.38.0/23 577 -204.101.40.0/22 21724 -204.101.44.0/24 21552 -204.101.45.0/24 577 -204.101.46.0/23 577 -204.101.48.0/23 577 -204.101.50.0/24 577 -204.101.51.0/24 19324 -204.101.52.0/24 577 -204.101.53.0/24 21724 -204.101.54.0/23 577 -204.101.56.0/22 577 -204.101.60.0/24 21552 -204.101.61.0/24 577 -204.101.62.0/24 3848 -204.101.63.0/24 577 -204.101.64.0/21 577 -204.101.72.0/22 577 -204.101.76.0/24 577 -204.101.77.0/24 33017 -204.101.78.0/23 577 -204.101.80.0/24 577 -204.101.81.0/24 36522 -204.101.82.0/23 36522 -204.101.84.0/24 577 -204.101.85.0/24 36522 -204.101.86.0/24 21552 -204.101.87.0/24 577 -204.101.88.0/23 577 -204.101.90.0/24 577 -204.101.91.0/24 16487 -204.101.92.0/23 16487 -204.101.94.0/23 577 -204.101.96.0/23 36522 -204.101.98.0/24 36522 -204.101.99.0/24 577 -204.101.100.0/22 577 -204.101.104.0/23 577 -204.101.106.0/24 10264 -204.101.107.0/24 577 -204.101.108.0/24 21552 -204.101.109.0/24 36522 -204.101.110.0/24 36522 -204.101.111.0/24 10264 -204.101.112.0/24 36522 -204.101.113.0/24 10264 -204.101.114.0/24 21552 -204.101.115.0/24 10264 -204.101.116.0/23 577 -204.101.118.0/24 10264 -204.101.119.0/24 577 -204.101.120.0/24 577 -204.101.121.0/24 25946 -204.101.122.0/23 36522 -204.101.124.0/23 577 -204.101.126.0/24 577 -204.101.127.0/24 36522 -204.101.128.0/24 577 -204.101.129.0/24 36522 -204.101.130.0/23 577 -204.101.132.0/22 577 -204.101.136.0/22 577 -204.101.140.0/23 577 -204.101.142.0/24 36522 -204.101.143.0/24 577 -204.101.144.0/22 577 -204.101.148.0/23 577 -204.101.150.0/24 577 -204.101.151.0/24 3848 -204.101.152.0/22 577 -204.101.156.0/24 397168 -204.101.157.0/24 36522 -204.101.158.0/23 577 -204.101.160.0/24 2568 -204.101.161.0/24 577 -204.101.162.0/24 577 -204.101.163.0/24 36522 -204.101.164.0/23 577 -204.101.166.0/24 577 -204.101.167.0/24 21552 -204.101.168.0/23 577 -204.101.170.0/24 577 -204.101.171.0/24 21552 -204.101.172.0/24 577 -204.101.173.0/24 36522 -204.101.174.0/24 36522 -204.101.175.0/24 54788 -204.101.176.0/24 36522 -204.101.177.0/24 577 -204.101.178.0/24 25946 -204.101.179.0/24 577 -204.101.180.0/24 577 -204.101.181.0/24 36522 -204.101.182.0/23 577 -204.101.184.0/22 577 -204.101.188.0/24 36522 -204.101.189.0/24 577 -204.101.190.0/23 577 -204.101.192.0/21 577 -204.101.200.0/23 36522 -204.101.202.0/23 577 -204.101.204.0/24 36522 -204.101.205.0/24 577 -204.101.206.0/23 577 -204.101.208.0/24 577 -204.101.209.0/24 36522 -204.101.210.0/23 36522 -204.101.212.0/24 577 -204.101.213.0/24 36522 -204.101.214.0/23 577 -204.101.216.0/23 577 -204.101.218.0/24 577 -204.101.219.0/24 21552 -204.101.220.0/22 577 -204.101.224.0/22 577 -204.101.228.0/23 577 -204.101.230.0/24 395479 -204.101.231.0/24 33017 -204.101.232.0/24 577 -204.101.233.0/24 36522 -204.101.234.0/24 577 -204.101.235.0/24 36522 -204.101.236.0/24 3848 -204.101.237.0/24 36522 -204.101.238.0/24 46872 -204.101.239.0/24 36522 -204.101.240.0/23 577 -204.101.242.0/24 40788 -204.101.243.0/24 577 -204.101.244.0/24 577 -204.101.245.0/24 40788 -204.101.246.0/24 40788 -204.101.247.0/24 577 -204.101.248.0/24 40788 -204.101.249.0/24 577 -204.101.250.0/23 577 -204.101.252.0/22 577 -204.102.0.0/21 2152 -204.102.8.0/23 2152 -204.102.10.0/23 2920 -204.102.12.0/22 2920 -204.102.16.0/20 2920 -204.102.32.0/21 2920 -204.102.40.0/24 2920 -204.102.41.0/24 2152 -204.102.42.0/23 2152 -204.102.44.0/22 2152 -204.102.48.0/23 2152 -204.102.50.0/23 2920 -204.102.52.0/22 2920 -204.102.56.0/22 2920 -204.102.60.0/23 2920 -204.102.62.0/24 2920 -204.102.63.0/24 2152 -204.102.64.0/19 2152 -204.102.96.0/20 2152 -204.102.112.0/22 2152 -204.102.116.0/23 2152 -204.102.118.0/24 2920 -204.102.119.0/24 2152 -204.102.120.0/21 2152 -204.102.128.0/18 2152 -204.102.192.0/19 2152 -204.102.224.0/22 2152 -204.102.228.0/24 2152 -204.102.229.0/24 257 -204.102.230.0/23 2152 -204.102.232.0/21 2152 -204.102.240.0/20 2152 -204.103.8.0/24 1705 -204.103.17.0/24 1705 -204.103.18.0/24 1705 -204.103.23.0/24 1705 -204.103.29.0/24 1705 -204.103.30.0/24 1705 -204.103.46.0/23 2129 -204.103.54.0/24 5466 -204.103.55.0/24 30715 -204.103.104.0/21 2173 -204.103.112.0/21 6900 -204.103.157.0/24 6900 -204.103.158.0/24 6900 -204.103.160.0/24 27272 -204.103.164.0/23 19647 -204.103.198.0/23 5714 -204.104.10.0/23 5714 -204.104.12.0/22 5714 -204.104.16.0/23 5714 -204.104.42.0/24 5714 -204.104.50.0/24 5714 -204.104.55.0/24 6900 -204.104.67.0/24 5714 -204.104.132.0/23 25867 -204.104.140.0/24 25867 -204.104.199.0/24 5714 -204.104.206.0/23 5714 -204.104.208.0/24 5714 -204.104.243.0/24 5714 -204.105.17.0/24 5714 -204.105.32.0/24 5714 -204.105.44.0/23 5714 -204.105.47.0/24 5714 -204.105.65.0/24 2173 -204.105.88.0/22 3549 -204.105.100.0/22 2160 -204.105.104.0/22 2160 -204.105.117.0/24 2164 -204.105.118.0/24 2164 -204.105.144.0/21 19647 -204.105.162.0/24 19647 -204.106.7.0/24 5650 -204.106.16.0/24 397040 -204.106.17.0/24 237 -204.106.18.0/24 174 -204.106.19.0/24 22925 -204.106.21.0/24 22925 -204.106.28.0/23 237 -204.106.30.0/24 33657 -204.106.31.0/24 237 -204.106.228.0/22 23314 -204.106.232.0/21 26088 -204.106.240.0/20 47038 -204.107.10.0/23 46678 -204.107.12.0/22 12025 -204.107.27.0/24 54303 -204.107.40.0/22 36092 -204.107.60.0/22 36092 -204.107.64.0/24 13460 -204.107.69.0/24 11404 -204.107.73.0/24 53747 -204.107.75.0/24 19833 -204.107.76.0/24 21728 -204.107.78.0/24 11020 -204.107.82.0/24 27511 -204.107.85.0/24 397172 -204.107.86.0/24 6216 -204.107.87.0/24 23196 -204.107.90.0/24 20473 -204.107.93.0/24 53748 -204.107.95.0/24 8047 -204.107.103.0/24 32524 -204.107.104.0/24 4565 -204.107.105.0/24 10984 -204.107.111.0/24 15026 -204.107.115.0/24 27296 -204.107.117.0/24 4515 -204.107.120.0/24 1399 -204.107.128.0/24 11288 -204.107.130.0/24 6203 -204.107.133.0/24 174 -204.107.135.0/24 7018 -204.107.136.0/24 10796 -204.107.138.0/24 7843 -204.107.140.0/24 23342 -204.107.141.0/24 22024 -204.107.145.0/24 30667 -204.107.153.0/24 19086 -204.107.154.0/24 54459 -204.107.168.0/24 33070 -204.107.173.0/24 19685 -204.107.174.0/24 4261 -204.107.177.0/24 1427 -204.107.178.0/24 6315 -204.107.184.0/24 397142 -204.107.191.0/24 47698 -204.107.192.0/24 46943 -204.107.200.0/24 10255 -204.107.204.0/24 63447 -204.107.209.0/24 243 -204.107.218.0/24 26449 -204.107.221.0/24 32592 -204.107.223.0/24 20473 -204.107.230.0/24 54881 -204.107.232.0/24 3061 -204.107.235.0/24 63204 -204.107.242.0/24 21518 -204.107.246.0/24 20473 -204.107.248.0/24 12161 -204.107.250.0/24 21646 -204.107.252.0/24 10271 -204.108.2.0/23 4046 -204.108.4.0/22 4046 -204.108.9.0/24 4046 -204.108.10.0/24 4046 -204.108.11.0/24 36401 -204.108.12.0/23 16953 -204.108.15.0/24 29742 -204.108.16.0/24 20001 -204.108.18.0/24 20001 -204.108.26.0/23 5098 -204.108.28.0/22 13480 -204.108.48.0/24 36373 -204.108.59.0/24 36373 -204.108.60.0/22 36373 -204.108.64.0/18 30193 -204.108.128.0/20 20413 -204.108.144.0/22 20413 -204.108.148.0/24 394258 -204.108.149.0/24 20413 -204.108.150.0/23 20413 -204.108.152.0/21 20413 -204.108.160.0/22 29848 -204.108.164.0/23 22192 -204.108.168.0/23 22192 -204.108.172.0/22 22192 -204.108.176.0/23 62989 -204.108.178.0/23 22192 -204.108.182.0/23 22192 -204.108.184.0/22 22192 -204.108.188.0/23 22192 -204.108.192.0/19 20413 -204.108.224.0/20 20413 -204.108.240.0/23 26801 -204.108.242.0/23 20413 -204.108.244.0/22 20413 -204.108.248.0/24 14020 -204.108.249.0/24 20413 -204.108.250.0/24 20413 -204.108.251.0/24 46224 -204.108.252.0/24 54481 -204.108.253.0/24 20413 -204.108.254.0/23 20413 -204.109.13.0/24 22510 -204.109.14.0/24 6079 -204.109.15.0/24 26076 -204.109.17.0/24 33723 -204.109.18.0/23 33723 -204.109.20.0/23 33723 -204.109.41.0/24 396940 -204.109.42.0/24 396940 -204.109.49.0/24 396936 -204.109.50.0/24 396936 -204.109.52.0/22 14713 -204.109.56.0/21 36236 -204.109.64.0/18 5101 -204.110.0.0/21 33177 -204.110.8.0/21 17057 -204.110.16.0/23 19558 -204.110.18.0/24 19558 -204.110.26.0/24 19558 -204.110.32.0/20 27009 -204.110.48.0/22 27009 -204.110.52.0/23 22150 -204.110.55.0/24 22150 -204.110.56.0/21 33576 -204.110.65.0/24 25836 -204.110.68.0/24 25836 -204.110.71.0/24 25836 -204.110.112.0/20 23258 -204.110.128.0/23 19269 -204.110.132.0/24 19269 -204.110.135.0/24 4309 -204.110.136.0/23 4309 -204.110.139.0/24 4309 -204.110.160.0/22 22838 -204.110.165.0/24 22838 -204.110.166.0/24 22838 -204.110.168.0/23 22838 -204.110.170.0/24 22838 -204.110.172.0/24 22838 -204.110.186.0/23 395135 -204.110.188.0/22 393837 -204.110.197.0/24 14052 -204.110.198.0/24 14052 -204.110.200.0/24 14052 -204.110.203.0/24 14052 -204.110.208.0/21 8103 -204.110.216.0/23 8103 -204.110.219.0/24 36230 -204.110.220.0/24 16509 -204.110.224.0/20 19477 -204.111.0.0/18 4922 -204.111.64.0/19 4922 -204.111.96.0/20 4922 -204.111.112.0/21 4922 -204.111.120.0/24 21759 -204.111.121.0/24 4922 -204.111.122.0/23 4922 -204.111.124.0/22 4922 -204.111.128.0/17 4922 -204.112.0.0/16 7122 -204.113.0.0/22 11663 -204.113.4.0/23 210 -204.113.6.0/23 11663 -204.113.8.0/21 11663 -204.113.16.0/20 11663 -204.113.32.0/19 210 -204.113.64.0/18 210 -204.113.128.0/17 210 -204.114.0.0/21 15205 -204.114.8.0/24 15205 -204.114.9.0/24 11345 -204.114.10.0/23 23424 -204.114.12.0/22 17099 -204.114.24.0/21 26498 -204.114.32.0/19 395323 -204.114.176.0/23 4847 -204.114.196.0/23 18113 -204.114.198.0/24 18113 -204.114.199.0/24 7474 -204.114.220.0/23 18113 -204.114.248.0/24 4766 -204.114.250.0/23 18113 -204.114.252.0/22 18113 -204.115.6.0/24 7018 -204.115.7.0/24 62 -204.115.14.0/23 35910 -204.115.22.0/23 53700 -204.115.87.0/24 16882 -204.115.88.0/21 14572 -204.115.101.0/24 17032 -204.115.102.0/23 26701 -204.115.110.0/23 53709 -204.115.117.0/24 30505 -204.115.118.0/23 15275 -204.115.121.0/24 14687 -204.115.122.0/24 2828 -204.115.126.0/23 30595 -204.115.144.0/22 13337 -204.115.150.0/23 22228 -204.115.168.0/21 226 -204.115.176.0/21 19 -204.115.188.0/23 8103 -204.115.190.0/23 22385 -204.115.192.0/21 21964 -204.115.206.0/23 12057 -204.115.216.0/21 63016 -204.115.224.0/21 32619 -204.115.254.0/23 32086 -204.116.0.0/24 2711 -204.116.1.0/24 23118 -204.116.2.0/24 2711 -204.116.3.0/24 12208 -204.116.4.0/24 18671 -204.116.5.0/24 2711 -204.116.6.0/23 2711 -204.116.8.0/22 2711 -204.116.12.0/24 2711 -204.116.13.0/24 19212 -204.116.14.0/23 14615 -204.116.16.0/22 2711 -204.116.20.0/24 7250 -204.116.21.0/24 22646 -204.116.22.0/24 22646 -204.116.23.0/24 19635 -204.116.24.0/24 7250 -204.116.25.0/24 18671 -204.116.26.0/24 2711 -204.116.27.0/24 18671 -204.116.28.0/23 2711 -204.116.30.0/24 18671 -204.116.31.0/24 21766 -204.116.32.0/24 2711 -204.116.33.0/24 19635 -204.116.34.0/23 2711 -204.116.36.0/22 2711 -204.116.40.0/24 12208 -204.116.41.0/24 7250 -204.116.42.0/23 16863 -204.116.44.0/22 2711 -204.116.48.0/24 2711 -204.116.49.0/24 19635 -204.116.50.0/23 2711 -204.116.52.0/24 2711 -204.116.53.0/24 18671 -204.116.54.0/24 23118 -204.116.55.0/24 2711 -204.116.56.0/24 14615 -204.116.57.0/24 2711 -204.116.58.0/23 2711 -204.116.60.0/23 2711 -204.116.62.0/24 12208 -204.116.63.0/24 2711 -204.116.64.0/23 16863 -204.116.66.0/24 2711 -204.116.67.0/24 7250 -204.116.68.0/23 2711 -204.116.70.0/23 19635 -204.116.72.0/24 16863 -204.116.73.0/24 2711 -204.116.74.0/24 2711 -204.116.75.0/24 19635 -204.116.76.0/24 12208 -204.116.77.0/24 2711 -204.116.78.0/24 12208 -204.116.79.0/24 2711 -204.116.80.0/24 10279 -204.116.81.0/24 2711 -204.116.82.0/24 2711 -204.116.83.0/24 18671 -204.116.84.0/24 2711 -204.116.85.0/24 12208 -204.116.86.0/23 2711 -204.116.88.0/24 2711 -204.116.89.0/24 12208 -204.116.90.0/24 19635 -204.116.91.0/24 2711 -204.116.92.0/24 19635 -204.116.93.0/24 12208 -204.116.94.0/23 18671 -204.116.96.0/24 21766 -204.116.97.0/24 18671 -204.116.98.0/23 2711 -204.116.100.0/24 2711 -204.116.101.0/24 18671 -204.116.102.0/24 2711 -204.116.103.0/24 23118 -204.116.104.0/23 2711 -204.116.106.0/24 2711 -204.116.107.0/24 395437 -204.116.108.0/22 2711 -204.116.112.0/22 2711 -204.116.116.0/24 2711 -204.116.117.0/24 18671 -204.116.118.0/23 2711 -204.116.120.0/24 2711 -204.116.121.0/24 36397 -204.116.122.0/23 2711 -204.116.124.0/24 7250 -204.116.125.0/24 2711 -204.116.126.0/24 7250 -204.116.127.0/24 2711 -204.116.128.0/24 19635 -204.116.129.0/24 19212 -204.116.130.0/24 19212 -204.116.131.0/24 2711 -204.116.132.0/24 22646 -204.116.133.0/24 2711 -204.116.134.0/24 18671 -204.116.135.0/24 2711 -204.116.136.0/24 2711 -204.116.137.0/24 22646 -204.116.138.0/24 7250 -204.116.139.0/24 19212 -204.116.140.0/24 2711 -204.116.141.0/24 7250 -204.116.142.0/23 7250 -204.116.144.0/24 7250 -204.116.145.0/24 2711 -204.116.146.0/23 2711 -204.116.148.0/23 16863 -204.116.150.0/24 2711 -204.116.151.0/24 19635 -204.116.152.0/21 15153 -204.116.160.0/24 2711 -204.116.161.0/24 18671 -204.116.162.0/23 7250 -204.116.164.0/24 18671 -204.116.165.0/24 2711 -204.116.166.0/23 2711 -204.116.168.0/24 2711 -204.116.169.0/24 12208 -204.116.170.0/23 2711 -204.116.172.0/22 14615 -204.116.176.0/24 22646 -204.116.177.0/24 2711 -204.116.178.0/24 26081 -204.116.179.0/24 2711 -204.116.180.0/23 16863 -204.116.182.0/23 2711 -204.116.184.0/22 2711 -204.116.188.0/23 2711 -204.116.190.0/24 2711 -204.116.191.0/24 23118 -204.116.192.0/21 23118 -204.116.200.0/23 21830 -204.116.202.0/24 19635 -204.116.203.0/24 2711 -204.116.204.0/23 2711 -204.116.206.0/23 23118 -204.116.208.0/20 2711 -204.116.224.0/20 10279 -204.116.240.0/22 18671 -204.116.244.0/22 21830 -204.116.248.0/24 18671 -204.116.249.0/24 2711 -204.116.250.0/24 2711 -204.116.251.0/24 397068 -204.116.252.0/22 2711 -204.117.0.0/21 1239 -204.117.8.0/24 62768 -204.117.9.0/24 1239 -204.117.10.0/23 1239 -204.117.12.0/22 1239 -204.117.16.0/20 1239 -204.117.32.0/23 1239 -204.117.34.0/23 13776 -204.117.36.0/24 13776 -204.117.37.0/24 1239 -204.117.38.0/23 1239 -204.117.40.0/21 1239 -204.117.48.0/23 1239 -204.117.50.0/24 1239 -204.117.51.0/24 18618 -204.117.52.0/23 18618 -204.117.54.0/23 1239 -204.117.56.0/21 1239 -204.117.64.0/24 13354 -204.117.65.0/24 1239 -204.117.66.0/23 1239 -204.117.68.0/22 1239 -204.117.72.0/22 1239 -204.117.76.0/23 1239 -204.117.78.0/24 25602 -204.117.79.0/24 1239 -204.117.80.0/21 1239 -204.117.88.0/23 1239 -204.117.90.0/24 1239 -204.117.91.0/24 46347 -204.117.92.0/22 1239 -204.117.96.0/19 1239 -204.117.128.0/18 1239 -204.117.192.0/20 2379 -204.117.208.0/20 1239 -204.117.224.0/19 1239 -204.118.0.0/22 1239 -204.118.4.0/23 1239 -204.118.6.0/24 1239 -204.118.7.0/24 1906 -204.118.8.0/21 1239 -204.118.16.0/23 1239 -204.118.18.0/24 1239 -204.118.19.0/24 6939 -204.118.20.0/22 1239 -204.118.24.0/21 1239 -204.118.32.0/24 3734 -204.118.33.0/24 1239 -204.118.34.0/23 1239 -204.118.36.0/22 1239 -204.118.40.0/21 1239 -204.118.48.0/24 40056 -204.118.49.0/24 1239 -204.118.50.0/23 1239 -204.118.52.0/22 1239 -204.118.56.0/22 1239 -204.118.60.0/23 1239 -204.118.62.0/24 1239 -204.118.63.0/24 4972 -204.118.64.0/20 26133 -204.118.80.0/20 1239 -204.118.96.0/24 32032 -204.118.97.0/24 1239 -204.118.98.0/23 1239 -204.118.100.0/23 1239 -204.118.102.0/24 7912 -204.118.103.0/24 20001 -204.118.104.0/21 1239 -204.118.112.0/21 1239 -204.118.120.0/23 15227 -204.118.122.0/23 1239 -204.118.124.0/22 1239 -204.118.128.0/17 1239 -204.119.0.0/23 11404 -204.119.2.0/24 1239 -204.119.3.0/24 12044 -204.119.4.0/22 1239 -204.119.8.0/21 1239 -204.119.16.0/21 1239 -204.119.24.0/23 1239 -204.119.26.0/24 1239 -204.119.27.0/24 12044 -204.119.28.0/22 1239 -204.119.32.0/19 1239 -204.119.64.0/20 2828 -204.119.80.0/21 2828 -204.119.88.0/22 2828 -204.119.92.0/23 2828 -204.119.94.0/24 2828 -204.119.95.0/24 23181 -204.119.96.0/19 2828 -204.119.128.0/21 1239 -204.119.136.0/23 1239 -204.119.138.0/23 394601 -204.119.140.0/22 1239 -204.119.144.0/20 1239 -204.119.160.0/19 1239 -204.119.192.0/19 1239 -204.119.224.0/21 1239 -204.119.232.0/23 1239 -204.119.234.0/23 62802 -204.119.236.0/22 1239 -204.119.240.0/20 1239 -204.120.0.0/17 1239 -204.120.128.0/23 1239 -204.120.130.0/24 1239 -204.120.131.0/24 4972 -204.120.132.0/22 1239 -204.120.136.0/21 1239 -204.120.144.0/20 1239 -204.120.160.0/19 1239 -204.120.192.0/21 26909 -204.120.200.0/21 1239 -204.120.208.0/20 1239 -204.120.224.0/19 1239 -204.121.0.0/16 68 -204.122.8.0/22 6461 -204.122.12.0/23 3356 -204.122.16.0/22 18530 -204.122.20.0/22 53971 -204.122.24.0/21 62943 -204.122.110.0/23 46334 -204.122.128.0/17 39999 -204.123.0.0/16 7018 -204.124.11.0/24 16480 -204.124.12.0/23 22473 -204.124.14.0/24 22473 -204.124.15.0/24 40763 -204.124.16.0/23 54843 -204.124.18.0/24 54843 -204.124.19.0/24 22590 -204.124.66.0/23 11679 -204.124.80.0/23 10753 -204.124.82.0/24 10753 -204.124.84.0/23 11273 -204.124.87.0/24 11339 -204.124.88.0/22 53837 -204.124.95.0/24 46203 -204.124.99.0/24 33315 -204.124.100.0/22 7016 -204.124.104.0/24 3905 -204.124.106.0/23 3905 -204.124.115.0/24 53694 -204.124.116.0/22 33539 -204.124.120.0/22 12092 -204.124.132.0/22 11296 -204.124.136.0/23 14964 -204.124.138.0/24 22773 -204.124.140.0/22 36394 -204.124.150.0/23 7748 -204.124.152.0/22 393256 -204.124.159.0/24 53697 -204.124.160.0/22 397793 -204.124.166.0/24 40691 -204.124.167.0/24 15172 -204.124.171.0/24 53714 -204.124.172.0/24 46984 -204.124.174.0/23 46984 -204.124.180.0/22 25820 -204.124.191.0/24 53718 -204.124.192.0/22 11334 -204.124.196.0/24 3257 -204.124.208.0/24 7018 -204.124.210.0/24 3356 -204.124.211.0/24 15830 -204.124.216.0/24 26524 -204.124.222.0/23 19319 -204.124.236.0/23 13977 -204.124.238.0/24 13977 -204.124.239.0/24 393244 -204.124.240.0/22 3549 -204.124.244.0/24 27495 -204.124.247.0/24 27495 -204.124.250.0/24 36351 -204.124.251.0/24 23147 -204.124.252.0/22 36092 -204.126.2.0/23 7018 -204.126.6.0/23 201341 -204.126.8.0/24 27301 -204.126.10.0/23 33120 -204.126.12.0/23 8151 -204.126.22.0/23 32867 -204.126.26.0/23 20473 -204.126.62.0/23 396352 -204.126.64.0/24 7018 -204.126.65.0/24 13990 -204.126.73.0/24 46921 -204.126.80.0/23 22076 -204.126.84.0/23 19631 -204.126.92.0/23 18788 -204.126.94.0/23 26182 -204.126.98.0/24 22364 -204.126.99.0/24 2828 -204.126.106.0/23 13933 -204.126.116.0/23 8103 -204.126.118.0/23 3724 -204.126.120.0/23 17184 -204.126.122.0/23 397776 -204.126.124.0/23 26805 -204.126.128.0/24 6400 -204.126.129.0/24 27887 -204.126.132.0/23 32971 -204.126.134.0/23 40088 -204.126.138.0/23 5078 -204.126.140.0/23 20173 -204.126.143.0/24 4583 -204.126.144.0/23 5078 -204.126.146.0/23 30425 -204.126.150.0/24 605 -204.126.151.0/24 14003 -204.126.156.0/23 577 -204.126.162.0/23 5078 -204.126.166.0/23 21955 -204.126.172.0/24 3561 -204.126.173.0/24 19125 -204.126.178.0/23 7029 -204.126.186.0/23 5078 -204.126.188.0/22 5078 -204.126.194.0/23 23435 -204.126.204.0/24 6092 -204.126.206.0/23 13760 -204.126.208.0/22 13760 -204.126.212.0/23 7792 -204.126.229.0/24 7029 -204.126.230.0/24 63153 -204.126.240.0/23 40042 -204.126.253.0/24 26830 -204.127.96.0/21 5731 -204.127.128.0/20 4466 -204.127.144.0/21 4466 -204.127.152.0/22 4466 -204.127.156.0/24 7018 -204.127.157.0/24 4466 -204.127.158.0/23 4466 -204.127.160.0/20 7018 -204.127.176.0/21 4466 -204.127.184.0/22 4466 -204.127.188.0/24 4466 -204.127.189.0/24 7018 -204.127.190.0/23 4466 -204.127.192.0/21 4466 -204.127.200.0/21 7018 -204.127.208.0/20 7018 -204.127.224.0/21 5731 -204.127.232.0/23 2386 -204.127.234.0/23 7018 -204.127.236.0/24 7018 -204.127.237.0/24 2386 -204.127.238.0/23 2386 -204.127.240.0/22 4468 -204.127.244.0/24 7018 -204.127.245.0/24 4468 -204.127.246.0/23 4468 -204.127.248.0/22 4468 -204.127.252.0/24 7018 -204.127.253.0/24 2386 -204.127.254.0/24 2386 -204.127.255.0/24 7018 -204.128.2.0/24 20235 -204.128.4.0/23 20235 -204.128.8.0/21 8103 -204.128.16.0/21 3356 -204.128.24.0/23 54703 -204.128.26.0/24 54703 -204.128.27.0/24 209 -204.128.28.0/22 54703 -204.128.52.0/22 40841 -204.128.56.0/21 17213 -204.128.64.0/18 26713 -204.128.130.0/24 394934 -204.128.141.0/24 40548 -204.128.145.0/24 26846 -204.128.146.0/24 21914 -204.128.147.0/24 19855 -204.128.154.0/24 10255 -204.128.175.0/24 26404 -204.128.183.0/24 18473 -204.128.189.0/24 40164 -204.128.192.0/24 25932 -204.128.204.0/24 3549 -204.128.208.0/24 7018 -204.128.210.0/24 30334 -204.128.217.0/24 600 -204.128.222.0/24 11272 -204.128.226.0/24 7018 -204.128.227.0/24 13647 -204.128.228.0/24 13647 -204.128.232.0/24 11823 -204.128.233.0/24 2381 -204.128.234.0/23 2381 -204.128.236.0/23 2381 -204.128.238.0/24 2381 -204.128.240.0/23 2381 -204.128.242.0/24 2381 -204.128.243.0/24 14034 -204.128.249.0/24 4261 -204.128.250.0/24 3361 -204.128.252.0/24 23148 -204.129.0.0/16 13940 -204.130.0.0/23 30283 -204.130.3.0/24 30283 -204.130.5.0/24 30283 -204.130.8.0/24 46887 -204.130.12.0/22 395519 -204.130.64.0/18 6527 -204.130.130.0/24 14767 -204.130.132.0/24 13367 -204.130.133.0/24 63311 -204.130.146.0/24 27259 -204.130.154.0/24 36149 -204.130.155.0/24 20001 -204.130.158.0/24 174 -204.130.165.0/24 6565 -204.130.172.0/24 7018 -204.130.175.0/24 10835 -204.130.176.0/24 19009 -204.130.180.0/24 26394 -204.130.187.0/24 395982 -204.130.200.0/24 46887 -204.130.205.0/24 36092 -204.130.214.0/24 32440 -204.130.224.0/24 22773 -204.130.226.0/23 20352 -204.130.228.0/22 20352 -204.130.232.0/22 20352 -204.130.236.0/23 20352 -204.130.240.0/24 53262 -204.130.244.0/24 394973 -204.130.247.0/24 19954 -204.130.249.0/24 14051 -204.130.252.0/24 54346 -204.130.253.0/24 8103 -204.130.255.0/24 7385 -204.131.0.0/19 209 -204.131.32.0/21 209 -204.131.40.0/22 209 -204.131.44.0/23 209 -204.131.46.0/24 36207 -204.131.47.0/24 209 -204.131.48.0/24 36207 -204.131.49.0/24 209 -204.131.50.0/23 209 -204.131.52.0/22 209 -204.131.56.0/21 209 -204.131.64.0/18 209 -204.131.128.0/19 209 -204.131.160.0/23 209 -204.131.162.0/24 209 -204.131.163.0/24 53663 -204.131.164.0/22 209 -204.131.168.0/21 209 -204.131.176.0/24 209 -204.131.177.0/24 63461 -204.131.178.0/23 209 -204.131.180.0/22 209 -204.131.184.0/21 209 -204.131.192.0/20 209 -204.131.208.0/23 209 -204.131.210.0/24 31756 -204.131.211.0/24 209 -204.131.212.0/22 209 -204.131.216.0/22 209 -204.131.220.0/23 209 -204.131.222.0/24 11091 -204.131.223.0/24 209 -204.131.224.0/19 209 -204.132.0.0/19 209 -204.132.32.0/20 393869 -204.132.48.0/21 209 -204.132.56.0/24 209 -204.132.57.0/24 13330 -204.132.58.0/23 209 -204.132.60.0/22 209 -204.132.64.0/21 17015 -204.132.72.0/23 209 -204.132.74.0/24 17015 -204.132.75.0/24 209 -204.132.76.0/24 209 -204.132.77.0/24 17015 -204.132.78.0/24 17015 -204.132.79.0/24 209 -204.132.80.0/20 209 -204.132.96.0/19 209 -204.132.128.0/18 209 -204.132.192.0/19 209 -204.132.224.0/20 209 -204.132.240.0/23 209 -204.132.242.0/24 209 -204.132.243.0/24 10835 -204.132.244.0/22 209 -204.132.248.0/21 209 -204.133.0.0/19 209 -204.133.32.0/22 209 -204.133.36.0/23 209 -204.133.38.0/24 209 -204.133.39.0/24 19076 -204.133.40.0/21 19076 -204.133.48.0/22 19076 -204.133.52.0/23 19076 -204.133.54.0/23 209 -204.133.56.0/21 209 -204.133.64.0/19 209 -204.133.96.0/20 209 -204.133.112.0/23 209 -204.133.114.0/24 209 -204.133.115.0/24 10835 -204.133.116.0/22 209 -204.133.120.0/21 209 -204.133.128.0/17 209 -204.134.0.0/20 209 -204.134.16.0/20 22523 -204.134.32.0/23 22523 -204.134.34.0/23 209 -204.134.36.0/22 209 -204.134.40.0/21 209 -204.134.48.0/23 3912 -204.134.50.0/24 3912 -204.134.51.0/24 209 -204.134.52.0/23 209 -204.134.54.0/24 17153 -204.134.55.0/24 3912 -204.134.56.0/23 3912 -204.134.58.0/23 209 -204.134.60.0/22 209 -204.134.64.0/23 209 -204.134.66.0/24 3912 -204.134.67.0/24 40498 -204.134.68.0/24 40498 -204.134.69.0/24 209 -204.134.70.0/23 209 -204.134.72.0/21 209 -204.134.80.0/22 209 -204.134.84.0/24 209 -204.134.85.0/24 11570 -204.134.86.0/23 209 -204.134.88.0/21 209 -204.134.96.0/23 209 -204.134.98.0/23 19437 -204.134.100.0/23 209 -204.134.102.0/23 3912 -204.134.104.0/21 209 -204.134.112.0/20 209 -204.134.128.0/20 209 -204.134.144.0/21 209 -204.134.152.0/24 397024 -204.134.153.0/24 209 -204.134.154.0/23 209 -204.134.156.0/22 209 -204.134.160.0/19 209 -204.134.192.0/23 209 -204.134.194.0/23 395846 -204.134.196.0/22 209 -204.134.200.0/21 14230 -204.134.208.0/24 14230 -204.134.209.0/24 209 -204.134.210.0/24 209 -204.134.211.0/24 14230 -204.134.212.0/23 209 -204.134.214.0/24 209 -204.134.215.0/24 14230 -204.134.216.0/22 209 -204.134.220.0/23 209 -204.134.222.0/23 14230 -204.134.224.0/21 17380 -204.134.232.0/23 209 -204.134.234.0/24 397157 -204.134.235.0/24 209 -204.134.236.0/22 209 -204.134.240.0/20 209 -204.135.0.0/16 7726 -204.136.7.0/24 17215 -204.136.10.0/23 46296 -204.136.12.0/22 603 -204.136.16.0/23 18438 -204.136.20.0/23 18438 -204.136.23.0/24 702 -204.136.26.0/23 18438 -204.136.28.0/24 18438 -204.136.30.0/24 18438 -204.136.32.0/19 11465 -204.136.64.0/20 22460 -204.136.80.0/20 51200 -204.136.96.0/20 22460 -204.136.112.0/23 22460 -204.136.116.0/24 22460 -204.136.118.0/24 22460 -204.136.167.0/24 1678 -204.136.182.0/24 1678 -204.136.184.0/24 1678 -204.136.186.0/24 1678 -204.136.203.0/24 1678 -204.136.206.0/23 1678 -204.136.218.0/24 1678 -204.136.241.0/24 1678 -204.136.242.0/24 1678 -204.137.0.0/21 6077 -204.137.26.0/24 18955 -204.137.31.0/24 33016 -204.137.40.0/21 3147 -204.137.64.0/18 11714 -204.137.128.0/18 174 -204.137.192.0/19 174 -204.137.224.0/21 395461 -204.137.232.0/23 557 -204.137.234.0/24 557 -204.137.239.0/24 62523 -204.137.240.0/23 33128 -204.137.242.0/24 33128 -204.137.248.0/21 46273 -204.138.1.0/24 26677 -204.138.2.0/24 15024 -204.138.3.0/24 7311 -204.138.4.0/23 7311 -204.138.6.0/24 7311 -204.138.27.0/24 36436 -204.138.33.0/24 32881 -204.138.40.0/22 16570 -204.138.44.0/23 16570 -204.138.46.0/24 32710 -204.138.47.0/24 16570 -204.138.48.0/22 16570 -204.138.52.0/23 16570 -204.138.54.0/23 32710 -204.138.56.0/22 32710 -204.138.68.0/24 15290 -204.138.71.0/24 3736 -204.138.84.0/22 812 -204.138.94.0/24 33113 -204.138.100.0/24 22489 -204.138.101.0/24 19110 -204.138.102.0/24 10908 -204.138.103.0/24 6407 -204.138.104.0/24 46908 -204.138.108.0/24 11647 -204.138.110.0/24 14472 -204.138.111.0/24 812 -204.138.113.0/24 15024 -204.138.114.0/24 19297 -204.138.115.0/24 16751 -204.138.122.0/23 19276 -204.138.124.0/22 19276 -204.138.128.0/21 3848 -204.138.138.0/23 53390 -204.138.140.0/24 53390 -204.138.153.0/24 30559 -204.138.156.0/23 14843 -204.138.165.0/24 13657 -204.138.167.0/24 16434 -204.138.179.0/24 53656 -204.138.180.0/23 47057 -204.138.208.0/24 15290 -204.138.232.0/24 23498 -204.138.240.0/23 12098 -204.138.242.0/24 12098 -204.138.244.0/24 21537 -204.138.255.0/24 15080 -204.139.0.0/21 14325 -204.139.8.0/24 6994 -204.139.9.0/24 4565 -204.139.10.0/23 4565 -204.139.12.0/22 4565 -204.139.38.0/24 395711 -204.139.40.0/24 395711 -204.139.45.0/24 395711 -204.139.49.0/24 395711 -204.139.52.0/22 22342 -204.139.56.0/21 36236 -204.139.64.0/18 18964 -204.140.3.0/24 36032 -204.140.5.0/24 36032 -204.140.6.0/23 36032 -204.140.8.0/23 36032 -204.140.10.0/24 36032 -204.140.17.0/24 55106 -204.140.19.0/24 64252 -204.140.20.0/23 55106 -204.140.25.0/24 64252 -204.140.26.0/24 64252 -204.140.27.0/24 55106 -204.140.31.0/24 55106 -204.140.32.0/19 32982 -204.140.128.0/19 226 -204.140.160.0/21 226 -204.140.168.0/22 226 -204.140.172.0/24 3832 -204.140.173.0/24 226 -204.140.174.0/24 226 -204.140.175.0/24 3832 -204.140.176.0/21 226 -204.140.184.0/24 226 -204.140.185.0/24 16573 -204.140.186.0/23 226 -204.140.188.0/22 226 -204.140.192.0/19 226 -204.140.224.0/20 226 -204.140.240.0/24 85 -204.140.241.0/24 226 -204.140.242.0/23 226 -204.140.244.0/22 226 -204.140.248.0/23 226 -204.140.250.0/24 20001 -204.140.251.0/24 226 -204.140.252.0/22 226 -204.141.0.0/21 2914 -204.141.8.0/21 11935 -204.141.16.0/22 2914 -204.141.20.0/22 8029 -204.141.24.0/22 2914 -204.141.28.0/22 30103 -204.141.32.0/23 2639 -204.141.34.0/24 23395 -204.141.35.0/24 22691 -204.141.36.0/24 22691 -204.141.37.0/24 2914 -204.141.38.0/24 23395 -204.141.39.0/24 2914 -204.141.40.0/24 22691 -204.141.41.0/24 2914 -204.141.42.0/23 2639 -204.141.44.0/22 2914 -204.141.48.0/21 2914 -204.141.56.0/22 36136 -204.141.60.0/22 12119 -204.141.64.0/20 2914 -204.141.80.0/21 2914 -204.141.88.0/23 393259 -204.141.90.0/24 23395 -204.141.91.0/24 2914 -204.141.92.0/24 30031 -204.141.93.0/24 2914 -204.141.94.0/23 2914 -204.141.96.0/24 22691 -204.141.97.0/24 2914 -204.141.98.0/24 33531 -204.141.99.0/24 46582 -204.141.100.0/24 23395 -204.141.101.0/24 2914 -204.141.102.0/23 2914 -204.141.104.0/21 6210 -204.141.112.0/22 2914 -204.141.116.0/22 8029 -204.141.120.0/21 2914 -204.141.128.0/21 17005 -204.141.136.0/21 6210 -204.141.144.0/21 6210 -204.141.152.0/22 6210 -204.141.156.0/22 6209 -204.141.160.0/24 2639 -204.141.161.0/24 2914 -204.141.162.0/24 23395 -204.141.163.0/24 2914 -204.141.164.0/22 46974 -204.141.168.0/22 2914 -204.141.172.0/23 2914 -204.141.174.0/24 23395 -204.141.175.0/24 2914 -204.141.176.0/21 395662 -204.141.184.0/21 14717 -204.141.192.0/21 19893 -204.141.200.0/22 14672 -204.141.204.0/24 2914 -204.141.205.0/24 174 -204.141.206.0/23 2914 -204.141.208.0/24 40676 -204.141.209.0/24 393434 -204.141.210.0/23 2914 -204.141.212.0/22 393238 -204.141.216.0/22 2914 -204.141.220.0/22 31769 -204.141.224.0/22 2914 -204.141.228.0/23 2914 -204.141.230.0/24 26114 -204.141.231.0/24 2914 -204.141.232.0/22 2914 -204.141.236.0/23 2914 -204.141.238.0/24 2914 -204.141.239.0/24 20940 -204.141.240.0/20 2914 -204.142.0.0/17 2914 -204.142.128.0/19 2914 -204.142.160.0/20 2914 -204.142.176.0/22 2914 -204.142.180.0/24 395988 -204.142.181.0/24 174 -204.142.182.0/23 2914 -204.142.184.0/21 2914 -204.142.192.0/18 2914 -204.143.0.0/19 2914 -204.143.32.0/20 2914 -204.143.48.0/21 2914 -204.143.56.0/22 2914 -204.143.60.0/24 2914 -204.143.61.0/24 18794 -204.143.62.0/23 18794 -204.143.64.0/22 18794 -204.143.68.0/24 18794 -204.143.69.0/24 2914 -204.143.70.0/23 2914 -204.143.72.0/21 2914 -204.143.80.0/20 2914 -204.143.96.0/19 2914 -204.143.128.0/17 2914 -204.144.0.0/24 8103 -204.144.3.0/24 8103 -204.144.4.0/23 8103 -204.144.7.0/24 8103 -204.144.10.0/23 8103 -204.144.12.0/22 46563 -204.144.16.0/21 2828 -204.144.24.0/22 2828 -204.144.32.0/20 20352 -204.144.48.0/21 20352 -204.144.56.0/24 20352 -204.144.57.0/24 32305 -204.144.58.0/23 35912 -204.144.60.0/22 35911 -204.144.74.0/24 4454 -204.144.76.0/24 2939 -204.144.80.0/24 1798 -204.144.97.0/24 395001 -204.144.104.0/24 54885 -204.144.113.0/24 1226 -204.144.118.0/23 13346 -204.144.120.0/22 40142 -204.144.124.0/24 40142 -204.144.126.0/24 40142 -204.144.128.0/22 21777 -204.144.132.0/23 21777 -204.144.134.0/24 21777 -204.144.140.0/23 21777 -204.144.146.0/24 22658 -204.144.148.0/22 22658 -204.144.179.0/24 21777 -204.144.180.0/22 21777 -204.144.184.0/24 21777 -204.145.0.0/24 17639 -204.145.1.0/24 14882 -204.145.2.0/23 17639 -204.145.4.0/22 17639 -204.145.8.0/21 397405 -204.145.32.0/19 8103 -204.145.64.0/20 29838 -204.145.80.0/22 29838 -204.145.84.0/23 29838 -204.145.86.0/23 62469 -204.145.88.0/24 63334 -204.145.89.0/24 29838 -204.145.90.0/23 29838 -204.145.92.0/22 29838 -204.145.96.0/24 33360 -204.145.97.0/24 26347 -204.145.98.0/23 394697 -204.145.100.0/22 394133 -204.145.104.0/22 29804 -204.145.108.0/22 23427 -204.145.112.0/22 36092 -204.145.116.0/23 30413 -204.145.118.0/24 27626 -204.145.119.0/24 14858 -204.145.120.0/21 46656 -204.145.129.0/24 7018 -204.145.130.0/23 7018 -204.145.132.0/23 20001 -204.145.134.0/24 20001 -204.145.135.0/24 7018 -204.145.147.0/24 33576 -204.145.157.0/24 4511 -204.145.158.0/24 17010 -204.145.171.0/24 19280 -204.145.176.0/24 21974 -204.145.181.0/24 53302 -204.145.182.0/24 27026 -204.145.183.0/24 396168 -204.145.186.0/24 11427 -204.145.192.0/23 20437 -204.145.202.0/24 6629 -204.145.205.0/24 91 -204.145.210.0/24 54223 -204.145.219.0/24 26549 -204.145.225.0/24 18566 -204.145.226.0/24 13700 -204.145.230.0/24 23138 -204.145.232.0/24 2381 -204.145.235.0/24 13649 -204.145.237.0/24 55001 -204.145.241.0/24 21802 -204.145.244.0/24 395617 -204.145.245.0/24 33651 -204.145.248.0/24 11240 -204.146.0.0/20 7018 -204.146.16.0/21 7018 -204.146.24.0/22 18703 -204.146.28.0/23 7018 -204.146.30.0/24 18703 -204.146.31.0/24 7018 -204.146.32.0/20 7018 -204.146.48.0/23 7018 -204.146.50.0/24 12169 -204.146.51.0/24 7018 -204.146.52.0/22 7018 -204.146.56.0/22 7018 -204.146.60.0/24 12169 -204.146.61.0/24 7018 -204.146.62.0/23 7018 -204.146.64.0/18 7018 -204.146.128.0/22 7018 -204.146.132.0/24 7018 -204.146.133.0/24 706 -204.146.134.0/23 7018 -204.146.136.0/21 7018 -204.146.144.0/21 7018 -204.146.152.0/22 7018 -204.146.156.0/23 7018 -204.146.158.0/24 7018 -204.146.159.0/24 15048 -204.146.160.0/22 7018 -204.146.164.0/23 7018 -204.146.166.0/24 7018 -204.146.167.0/24 19604 -204.146.168.0/21 7018 -204.146.176.0/20 7018 -204.146.192.0/20 7018 -204.146.208.0/24 7018 -204.146.209.0/24 26704 -204.146.210.0/23 7018 -204.146.212.0/22 7018 -204.146.216.0/21 7018 -204.146.224.0/19 7018 -204.147.0.0/20 25979 -204.147.16.0/20 396979 -204.147.32.0/19 6167 -204.147.76.0/22 10929 -204.147.80.0/20 209 -204.147.113.0/24 4367 -204.147.127.0/24 2386 -204.147.152.0/21 23038 -204.147.160.0/22 5647 -204.147.176.0/20 13576 -204.147.202.0/23 25891 -204.147.204.0/22 14645 -204.147.208.0/20 25845 -204.147.224.0/20 4565 -204.148.0.0/17 701 -204.148.128.0/23 701 -204.148.130.0/24 14551 -204.148.131.0/24 701 -204.148.132.0/22 701 -204.148.136.0/21 701 -204.148.144.0/20 701 -204.148.160.0/21 701 -204.148.168.0/22 701 -204.148.172.0/24 701 -204.148.173.0/24 30593 -204.148.174.0/23 701 -204.148.176.0/20 701 -204.148.192.0/18 701 -204.149.0.0/16 701 -204.150.0.0/16 701 -204.151.0.0/19 11303 -204.151.32.0/21 11303 -204.151.40.0/23 11303 -204.151.42.0/24 11303 -204.151.43.0/24 3364 -204.151.44.0/22 11303 -204.151.48.0/20 11303 -204.151.64.0/18 11303 -204.151.128.0/18 701 -204.151.192.0/20 11303 -204.151.208.0/20 701 -204.151.224.0/20 11303 -204.151.240.0/21 701 -204.151.248.0/24 701 -204.151.249.0/24 32520 -204.151.250.0/23 701 -204.151.252.0/22 701 -204.152.0.0/23 40288 -204.152.2.0/23 11777 -204.152.7.0/24 46671 -204.152.12.0/23 20466 -204.152.18.0/23 8075 -204.152.24.0/23 33177 -204.152.32.0/23 393366 -204.152.34.0/23 53746 -204.152.38.0/23 25861 -204.152.42.0/23 11951 -204.152.44.0/23 2576 -204.152.46.0/23 7133 -204.152.48.0/23 17089 -204.152.50.0/23 15095 -204.152.60.0/23 396890 -204.152.62.0/23 23134 -204.152.68.0/23 201341 -204.152.80.0/23 33576 -204.152.90.0/23 26160 -204.152.92.0/22 16893 -204.152.96.0/23 10595 -204.152.104.0/24 1239 -204.152.105.0/24 29875 -204.152.110.0/23 397323 -204.152.114.0/24 7963 -204.152.115.0/24 30600 -204.152.118.0/24 32746 -204.152.119.0/24 23491 -204.152.128.0/24 4566 -204.152.129.0/24 63251 -204.152.130.0/23 26335 -204.152.134.0/23 23262 -204.152.140.0/23 8075 -204.152.142.0/23 396228 -204.152.148.0/23 21976 -204.152.150.0/24 27542 -204.152.152.0/22 22773 -204.152.156.0/24 33491 -204.152.157.0/24 209 -204.152.158.0/24 7018 -204.152.164.0/24 396875 -204.152.176.0/24 26881 -204.152.177.0/24 12062 -204.152.180.0/23 36535 -204.152.184.0/21 1280 -204.152.192.0/23 46446 -204.152.194.0/23 8100 -204.152.196.0/22 8100 -204.152.200.0/21 8100 -204.152.208.0/21 8100 -204.152.216.0/22 8100 -204.152.220.0/23 8100 -204.152.222.0/23 29761 -204.152.232.0/21 13716 -204.152.240.0/20 33055 -204.153.0.0/22 26794 -204.153.4.0/23 26124 -204.153.7.0/24 32054 -204.153.8.0/22 22056 -204.153.12.0/22 90 -204.153.16.0/24 33562 -204.153.24.0/23 13579 -204.153.26.0/23 26893 -204.153.35.0/24 22977 -204.153.36.0/23 22773 -204.153.38.0/24 22773 -204.153.39.0/24 13768 -204.153.40.0/22 3356 -204.153.44.0/22 55126 -204.153.48.0/22 88 -204.153.52.0/23 22773 -204.153.54.0/24 22773 -204.153.56.0/22 19621 -204.153.60.0/22 10991 -204.153.67.0/24 23245 -204.153.72.0/23 35967 -204.153.74.0/24 40016 -204.153.76.0/22 393650 -204.153.80.0/24 18867 -204.153.81.0/24 6946 -204.153.82.0/23 7368 -204.153.96.0/24 13536 -204.153.98.0/23 14424 -204.153.102.0/24 14495 -204.153.104.0/24 3660 -204.153.120.0/23 11403 -204.153.122.0/24 14175 -204.153.123.0/24 10978 -204.153.128.0/22 23175 -204.153.135.0/24 18721 -204.153.136.0/23 174 -204.153.138.0/24 174 -204.153.139.0/24 14689 -204.153.143.0/24 22662 -204.153.148.0/24 8103 -204.153.154.0/23 3356 -204.153.162.0/23 31744 -204.153.176.0/22 20298 -204.153.188.0/22 397884 -204.153.192.0/22 6994 -204.153.212.0/23 11746 -204.153.214.0/24 11746 -204.153.215.0/24 5743 -204.153.219.0/24 14618 -204.153.228.0/22 7046 -204.153.240.0/22 23290 -204.153.244.0/22 7753 -204.154.40.0/21 22588 -204.154.48.0/21 15225 -204.154.56.0/23 395446 -204.154.58.0/23 3303 -204.154.60.0/23 17766 -204.154.69.0/24 12510 -204.154.71.0/24 6979 -204.154.80.0/21 19923 -204.154.94.0/23 53635 -204.154.102.0/23 47079 -204.154.109.0/24 16946 -204.154.110.0/23 36062 -204.154.112.0/21 5078 -204.154.121.0/24 19404 -204.154.122.0/23 32215 -204.154.124.0/22 18859 -204.154.128.0/23 3952 -204.154.131.0/24 3952 -204.154.132.0/22 3952 -204.154.136.0/23 32982 -204.154.139.0/24 32982 -204.154.140.0/24 32982 -204.154.141.0/24 22817 -204.154.142.0/23 55270 -204.154.173.0/24 18578 -204.154.174.0/23 18499 -204.154.176.0/21 7018 -204.154.185.0/24 7018 -204.154.186.0/24 22773 -204.154.192.0/21 14498 -204.154.200.0/22 852 -204.154.204.0/23 852 -204.154.207.0/24 852 -204.154.216.0/21 14051 -204.154.228.0/24 14920 -204.154.229.0/24 17351 -204.154.231.0/24 12057 -204.154.240.0/21 46719 -204.154.248.0/24 395291 -204.154.250.0/24 395291 -204.155.0.0/20 21828 -204.155.16.0/21 8116 -204.155.24.0/23 8116 -204.155.28.0/22 14576 -204.155.32.0/20 3356 -204.155.48.0/21 54062 -204.155.56.0/22 54062 -204.155.60.0/24 25913 -204.155.61.0/24 30620 -204.155.62.0/24 53410 -204.155.63.0/24 54023 -204.155.64.0/20 3561 -204.155.95.0/24 16394 -204.155.96.0/24 53571 -204.155.97.0/24 7018 -204.155.101.0/24 53571 -204.155.102.0/23 53571 -204.155.106.0/24 53571 -204.155.108.0/24 53571 -204.155.110.0/23 53571 -204.155.112.0/23 5790 -204.155.118.0/23 394927 -204.155.120.0/21 5790 -204.155.129.0/24 209 -204.155.137.0/24 209 -204.155.140.0/24 209 -204.155.144.0/22 40824 -204.155.148.0/23 40824 -204.155.150.0/24 40824 -204.155.151.0/24 46786 -204.155.152.0/24 40824 -204.155.153.0/24 46786 -204.155.154.0/24 40824 -204.155.155.0/24 46786 -204.155.156.0/24 40824 -204.155.157.0/24 46786 -204.155.158.0/23 40824 -204.155.160.0/20 14446 -204.155.176.0/20 7795 -204.155.192.0/24 394927 -204.155.224.0/20 16492 -204.156.0.0/22 2914 -204.156.4.0/23 2914 -204.156.6.0/24 2914 -204.156.7.0/24 20940 -204.156.8.0/21 2914 -204.156.16.0/21 2914 -204.156.24.0/24 17054 -204.156.25.0/24 2914 -204.156.26.0/23 2914 -204.156.28.0/22 2914 -204.156.64.0/22 35950 -204.156.69.0/24 35950 -204.156.72.0/24 35950 -204.156.76.0/22 35950 -204.156.80.0/22 35950 -204.156.84.0/23 35950 -204.156.93.0/24 35950 -204.156.94.0/23 35950 -204.156.96.0/20 18964 -204.156.112.0/21 6111 -204.156.120.0/24 18964 -204.156.122.0/23 13349 -204.156.124.0/22 13625 -204.156.128.0/19 2914 -204.156.160.0/21 393731 -204.156.168.0/21 62642 -204.156.176.0/23 393648 -204.156.178.0/24 393648 -204.156.179.0/24 17018 -204.156.180.0/23 36180 -204.156.182.0/24 36180 -204.156.184.0/22 40948 -204.156.188.0/24 396885 -204.156.189.0/24 40948 -204.156.190.0/23 40948 -204.156.224.0/19 8103 -204.157.0.0/16 174 -204.158.0.0/22 3354 -204.158.4.0/24 14104 -204.158.5.0/24 3354 -204.158.6.0/23 3354 -204.158.8.0/21 3354 -204.158.16.0/21 3354 -204.158.24.0/22 3354 -204.158.28.0/24 6922 -204.158.29.0/24 3354 -204.158.30.0/23 3354 -204.158.32.0/19 3354 -204.158.64.0/18 3354 -204.158.128.0/20 3354 -204.158.144.0/20 10812 -204.158.160.0/19 10812 -204.158.192.0/18 3354 -204.159.108.0/22 7018 -204.160.0.0/14 3356 -204.164.0.0/16 3356 -204.165.0.0/20 3356 -204.165.16.0/24 3356 -204.165.17.0/24 3738 -204.165.18.0/24 3738 -204.165.19.0/24 3356 -204.165.20.0/22 3356 -204.165.24.0/21 3356 -204.165.32.0/19 3356 -204.165.64.0/18 3356 -204.165.128.0/18 3356 -204.165.192.0/19 3356 -204.165.224.0/20 3356 -204.165.240.0/22 3356 -204.165.244.0/23 3356 -204.165.246.0/23 19563 -204.165.248.0/21 3356 -204.166.0.0/16 3356 -204.167.0.0/19 3356 -204.167.32.0/20 3356 -204.167.48.0/22 3356 -204.167.52.0/24 156 -204.167.53.0/24 3356 -204.167.54.0/23 3356 -204.167.56.0/21 3356 -204.167.64.0/20 3356 -204.167.80.0/21 3356 -204.167.88.0/24 27370 -204.167.89.0/24 3356 -204.167.90.0/23 3356 -204.167.92.0/23 3356 -204.167.94.0/24 3356 -204.167.95.0/24 1650 -204.167.96.0/19 3356 -204.167.128.0/19 3356 -204.167.160.0/20 3356 -204.167.176.0/21 3356 -204.167.184.0/22 3356 -204.167.188.0/24 3356 -204.167.189.0/24 395800 -204.167.190.0/23 3356 -204.167.192.0/18 3356 -204.168.0.0/20 4544 -204.168.16.0/22 5061 -204.168.20.0/24 5061 -204.168.21.0/24 4544 -204.168.22.0/23 5061 -204.168.24.0/21 5061 -204.168.32.0/19 4544 -204.168.64.0/21 5061 -204.168.72.0/24 5061 -204.168.73.0/24 4544 -204.168.74.0/24 4544 -204.168.75.0/24 5061 -204.168.76.0/22 4544 -204.168.80.0/22 4544 -204.168.84.0/23 4544 -204.168.86.0/24 5061 -204.168.87.0/24 4544 -204.168.88.0/23 4544 -204.168.90.0/23 5061 -204.168.92.0/22 4544 -204.168.96.0/20 4544 -204.168.112.0/22 5061 -204.168.116.0/23 5061 -204.168.118.0/24 4544 -204.168.119.0/24 5061 -204.168.120.0/21 4544 -204.168.128.0/17 4544 -204.169.0.0/16 8148 -204.170.0.0/20 2914 -204.170.16.0/22 2914 -204.170.20.0/23 174 -204.170.22.0/23 2914 -204.170.24.0/21 2914 -204.170.32.0/24 12062 -204.170.33.0/24 2914 -204.170.34.0/24 2914 -204.170.35.0/24 174 -204.170.36.0/22 2914 -204.170.40.0/21 2914 -204.170.48.0/20 2914 -204.170.64.0/18 2914 -204.170.128.0/18 2914 -204.170.192.0/20 2914 -204.170.208.0/24 36035 -204.170.209.0/24 2914 -204.170.210.0/23 2914 -204.170.212.0/22 2914 -204.170.216.0/21 2914 -204.170.224.0/20 2914 -204.170.240.0/22 2914 -204.170.244.0/24 2914 -204.170.245.0/24 174 -204.170.246.0/23 2914 -204.170.248.0/21 2914 -204.171.0.0/19 2914 -204.171.32.0/20 2914 -204.171.48.0/22 14088 -204.171.52.0/22 2914 -204.171.56.0/21 2914 -204.171.64.0/18 2914 -204.171.128.0/17 2914 -204.173.27.0/24 6900 -204.173.29.0/24 6900 -204.173.234.0/24 6900 -204.174.0.0/24 14683 -204.174.12.0/24 852 -204.174.14.0/24 852 -204.174.16.0/24 10397 -204.174.17.0/24 19108 -204.174.18.0/24 10397 -204.174.23.0/24 10397 -204.174.24.0/24 10397 -204.174.35.0/24 19662 -204.174.36.0/24 19662 -204.174.40.0/23 40029 -204.174.42.0/24 3549 -204.174.47.0/24 17315 -204.174.56.0/21 62692 -204.174.64.0/22 852 -204.174.68.0/23 852 -204.174.75.0/24 54368 -204.174.76.0/22 54368 -204.174.80.0/20 19662 -204.174.96.0/22 19662 -204.174.100.0/24 394368 -204.174.103.0/24 25689 -204.174.104.0/21 40555 -204.174.112.0/24 19662 -204.174.113.0/24 23181 -204.174.115.0/24 22512 -204.174.116.0/23 23181 -204.174.118.0/24 852 -204.174.119.0/24 22799 -204.174.120.0/24 852 -204.174.123.0/24 852 -204.174.128.0/20 852 -204.174.144.0/22 852 -204.174.148.0/23 852 -204.174.150.0/24 852 -204.174.152.0/21 852 -204.174.161.0/24 852 -204.174.162.0/23 852 -204.174.164.0/22 852 -204.174.168.0/23 852 -204.174.171.0/24 852 -204.174.172.0/22 852 -204.174.176.0/22 852 -204.174.180.0/23 852 -204.174.182.0/24 852 -204.174.184.0/24 852 -204.174.186.0/23 852 -204.174.188.0/24 852 -204.174.204.0/23 19662 -204.174.212.0/22 852 -204.174.216.0/22 852 -204.174.222.0/24 19662 -204.174.223.0/24 14280 -204.174.224.0/24 20247 -204.174.230.0/24 23181 -204.174.232.0/23 14696 -204.174.236.0/24 852 -204.174.240.0/21 13773 -204.174.248.0/22 13773 -204.174.252.0/23 13773 -204.174.255.0/24 17383 -204.176.0.0/24 23380 -204.176.1.0/24 701 -204.176.2.0/23 701 -204.176.4.0/22 701 -204.176.8.0/21 701 -204.176.16.0/20 701 -204.176.32.0/21 701 -204.176.40.0/23 701 -204.176.42.0/24 15297 -204.176.43.0/24 701 -204.176.44.0/22 701 -204.176.48.0/24 701 -204.176.49.0/24 10982 -204.176.50.0/23 701 -204.176.52.0/22 701 -204.176.56.0/21 701 -204.176.64.0/21 701 -204.176.72.0/23 7046 -204.176.74.0/23 701 -204.176.76.0/22 701 -204.176.80.0/20 701 -204.176.96.0/24 22574 -204.176.97.0/24 701 -204.176.98.0/23 701 -204.176.100.0/22 701 -204.176.104.0/21 701 -204.176.112.0/20 701 -204.176.128.0/18 701 -204.176.192.0/23 701 -204.176.194.0/24 10796 -204.176.195.0/24 701 -204.176.196.0/22 701 -204.176.200.0/22 701 -204.176.204.0/24 6220 -204.176.205.0/24 701 -204.176.206.0/23 701 -204.176.208.0/20 701 -204.176.224.0/19 701 -204.177.0.0/18 701 -204.177.64.0/19 701 -204.177.96.0/20 7795 -204.177.112.0/20 701 -204.177.128.0/19 701 -204.177.160.0/20 701 -204.177.176.0/22 701 -204.177.180.0/24 701 -204.177.181.0/24 13666 -204.177.182.0/23 701 -204.177.184.0/21 4208 -204.177.192.0/19 701 -204.177.224.0/21 701 -204.177.232.0/24 6620 -204.177.233.0/24 701 -204.177.234.0/23 701 -204.177.236.0/22 701 -204.177.240.0/20 701 -204.178.0.0/20 6431 -204.178.16.0/20 701 -204.178.32.0/19 701 -204.178.64.0/20 701 -204.178.80.0/22 701 -204.178.84.0/23 701 -204.178.86.0/24 25869 -204.178.87.0/24 701 -204.178.88.0/21 701 -204.178.96.0/19 701 -204.178.128.0/18 701 -204.178.192.0/20 701 -204.178.208.0/23 21596 -204.178.210.0/23 701 -204.178.212.0/22 701 -204.178.216.0/21 701 -204.178.224.0/19 701 -204.179.0.0/18 701 -204.179.64.0/24 701 -204.179.65.0/24 32806 -204.179.66.0/23 701 -204.179.68.0/22 701 -204.179.72.0/21 701 -204.179.80.0/20 701 -204.179.96.0/24 23170 -204.179.97.0/24 701 -204.179.98.0/23 701 -204.179.100.0/22 701 -204.179.104.0/21 701 -204.179.112.0/20 701 -204.179.128.0/18 701 -204.179.192.0/19 29878 -204.179.224.0/22 701 -204.179.228.0/24 701 -204.179.229.0/24 12184 -204.179.230.0/23 701 -204.179.232.0/21 701 -204.179.240.0/24 10361 -204.179.241.0/24 701 -204.179.242.0/23 701 -204.179.244.0/22 701 -204.179.248.0/21 701 -204.180.0.0/18 1239 -204.180.64.0/23 17043 -204.180.66.0/23 1239 -204.180.68.0/22 1239 -204.180.72.0/22 1239 -204.180.76.0/23 1239 -204.180.78.0/24 14543 -204.180.79.0/24 1239 -204.180.80.0/20 1239 -204.180.96.0/19 1239 -204.180.128.0/23 1239 -204.180.130.0/24 53866 -204.180.131.0/24 1239 -204.180.132.0/22 1239 -204.180.136.0/21 1239 -204.180.144.0/20 1239 -204.180.160.0/19 1239 -204.180.192.0/19 1239 -204.180.224.0/22 1239 -204.180.228.0/24 200946 -204.180.229.0/24 11309 -204.180.230.0/23 1239 -204.180.232.0/24 16526 -204.180.233.0/24 32068 -204.180.234.0/23 32068 -204.180.236.0/22 32068 -204.180.240.0/20 1239 -204.181.0.0/21 32068 -204.181.8.0/21 1239 -204.181.16.0/20 1239 -204.181.32.0/21 1239 -204.181.40.0/22 7029 -204.181.44.0/22 1239 -204.181.48.0/22 1239 -204.181.52.0/22 27696 -204.181.56.0/21 1239 -204.181.64.0/18 1239 -204.181.128.0/20 1239 -204.181.144.0/21 1239 -204.181.152.0/21 3364 -204.181.160.0/19 1239 -204.181.192.0/18 1239 -204.182.0.0/19 1239 -204.182.32.0/23 1239 -204.182.34.0/24 1239 -204.182.35.0/24 19055 -204.182.36.0/22 1239 -204.182.40.0/21 1239 -204.182.48.0/21 1239 -204.182.56.0/23 1239 -204.182.58.0/24 25953 -204.182.59.0/24 1239 -204.182.60.0/22 1239 -204.182.64.0/18 1239 -204.182.128.0/20 1239 -204.182.144.0/24 3598 -204.182.145.0/24 1239 -204.182.146.0/23 1239 -204.182.148.0/22 1239 -204.182.152.0/21 1239 -204.182.160.0/20 63252 -204.182.176.0/20 1239 -204.182.192.0/19 1239 -204.182.224.0/21 1239 -204.182.232.0/21 46536 -204.182.240.0/20 1239 -204.183.0.0/19 1239 -204.183.32.0/24 1239 -204.183.33.0/24 14330 -204.183.34.0/23 1239 -204.183.36.0/22 1239 -204.183.40.0/21 1239 -204.183.48.0/20 1239 -204.183.64.0/20 1239 -204.183.80.0/20 6372 -204.183.96.0/19 1239 -204.183.128.0/17 1239 -204.184.0.0/15 2572 -204.186.0.0/18 3737 -204.186.64.0/19 3737 -204.186.96.0/21 3737 -204.186.104.0/23 3737 -204.186.106.0/24 3737 -204.186.107.0/24 16548 -204.186.108.0/22 3737 -204.186.112.0/20 3737 -204.186.128.0/17 3737 -204.187.0.0/24 27396 -204.187.11.0/24 51113 -204.187.12.0/22 36483 -204.187.16.0/20 32820 -204.187.34.0/24 812 -204.187.36.0/24 812 -204.187.38.0/23 812 -204.187.48.0/24 2665 -204.187.55.0/24 14456 -204.187.59.0/24 7057 -204.187.62.0/23 25946 -204.187.64.0/24 30295 -204.187.65.0/24 22808 -204.187.66.0/24 22652 -204.187.67.0/24 23498 -204.187.68.0/24 14453 -204.187.69.0/24 29862 -204.187.70.0/23 577 -204.187.76.0/24 5690 -204.187.78.0/24 812 -204.187.84.0/24 852 -204.187.87.0/24 11647 -204.187.88.0/23 5690 -204.187.93.0/24 36452 -204.187.100.0/23 32489 -204.187.103.0/24 812 -204.187.104.0/24 15290 -204.187.105.0/24 12188 -204.187.136.0/24 15290 -204.187.137.0/24 22652 -204.187.138.0/24 25747 -204.187.140.0/24 14456 -204.187.144.0/24 13319 -204.187.148.0/22 18588 -204.187.154.0/24 18588 -204.187.255.0/24 46619 -204.188.0.0/19 3561 -204.188.32.0/22 3561 -204.188.36.0/23 3561 -204.188.38.0/23 209 -204.188.40.0/21 3561 -204.188.48.0/20 3561 -204.188.64.0/19 3561 -204.188.96.0/20 21777 -204.188.112.0/20 3561 -204.188.128.0/21 3561 -204.188.136.0/21 1273 -204.188.144.0/20 3561 -204.188.160.0/19 3561 -204.188.192.0/18 46844 -204.189.0.0/18 3561 -204.189.64.0/19 3561 -204.189.96.0/20 3561 -204.189.112.0/23 3561 -204.189.114.0/24 3561 -204.189.115.0/24 27455 -204.189.116.0/22 3561 -204.189.120.0/21 3561 -204.189.128.0/17 3561 -204.190.16.0/23 23498 -204.190.24.0/23 54811 -204.190.48.0/23 12211 -204.190.64.0/23 54811 -204.190.128.0/23 133017 -204.191.0.0/23 852 -204.191.2.0/24 7861 -204.191.3.0/24 852 -204.191.4.0/23 7861 -204.191.6.0/23 852 -204.191.8.0/21 852 -204.191.16.0/20 852 -204.191.32.0/19 852 -204.191.64.0/18 852 -204.191.128.0/19 852 -204.191.160.0/21 852 -204.191.168.0/22 852 -204.191.172.0/23 852 -204.191.174.0/24 852 -204.191.175.0/24 7861 -204.191.176.0/20 852 -204.191.192.0/20 852 -204.191.208.0/21 852 -204.191.216.0/23 852 -204.191.218.0/23 33549 -204.191.220.0/22 852 -204.191.224.0/19 852 -204.192.0.0/16 2828 -204.193.0.0/20 30415 -204.193.16.0/21 30415 -204.193.24.0/22 30415 -204.193.28.0/23 53937 -204.193.30.0/23 30415 -204.193.32.0/24 20077 -204.193.33.0/24 9466 -204.193.34.0/23 7046 -204.193.36.0/23 20077 -204.193.38.0/23 26651 -204.193.40.0/24 26651 -204.193.42.0/23 26651 -204.193.44.0/22 26651 -204.193.48.0/21 26651 -204.193.56.0/22 26651 -204.193.60.0/23 7046 -204.193.62.0/23 26651 -204.193.64.0/20 19721 -204.193.80.0/23 19721 -204.193.82.0/23 1239 -204.193.84.0/22 19721 -204.193.88.0/21 19721 -204.193.112.0/20 30415 -204.193.128.0/22 20141 -204.193.132.0/24 20141 -204.193.133.0/24 54697 -204.193.134.0/23 20141 -204.193.136.0/21 20141 -204.193.144.0/21 20141 -204.193.152.0/24 393340 -204.193.153.0/24 20141 -204.193.154.0/23 20141 -204.193.156.0/22 20141 -204.193.160.0/19 1226 -204.193.208.0/20 3909 -204.193.224.0/21 10616 -204.193.232.0/21 33343 -204.193.240.0/20 33343 -204.194.5.0/24 4181 -204.194.7.0/24 53417 -204.194.8.0/21 3561 -204.194.22.0/24 6450 -204.194.23.0/24 54145 -204.194.28.0/22 9 -204.194.32.0/24 6913 -204.194.33.0/24 6912 -204.194.34.0/24 6912 -204.194.35.0/24 6913 -204.194.36.0/22 6912 -204.194.40.0/22 7046 -204.194.47.0/24 21508 -204.194.56.0/22 33155 -204.194.63.0/24 33155 -204.194.72.0/21 10298 -204.194.80.0/21 2928 -204.194.88.0/21 32592 -204.194.96.0/23 7018 -204.194.98.0/24 174 -204.194.99.0/24 7018 -204.194.100.0/24 7018 -204.194.101.0/24 7381 -204.194.102.0/23 7018 -204.194.111.0/24 40171 -204.194.122.0/24 10390 -204.194.138.0/24 11273 -204.194.141.0/24 11273 -204.194.143.0/24 40466 -204.194.168.0/21 7029 -204.194.176.0/21 2914 -204.194.184.0/24 397394 -204.194.186.0/23 397394 -204.194.188.0/22 397394 -204.194.207.0/24 27195 -204.194.214.0/23 11928 -204.194.216.0/22 397161 -204.194.220.0/23 20055 -204.194.222.0/23 11810 -204.194.232.0/24 30607 -204.194.234.0/24 30607 -204.194.237.0/24 30607 -204.194.238.0/23 30607 -204.194.248.0/22 46788 -204.194.253.0/24 46788 -204.194.254.0/23 5767 -204.195.0.0/18 11404 -204.195.64.0/20 11404 -204.195.80.0/23 11397 -204.195.82.0/23 11404 -204.195.84.0/22 11404 -204.195.88.0/22 11404 -204.195.92.0/24 11404 -204.195.93.0/24 40411 -204.195.94.0/23 11404 -204.195.96.0/19 11404 -204.195.128.0/18 11776 -204.196.0.0/24 2048 -204.196.5.0/24 2048 -204.196.7.0/24 2048 -204.196.10.0/23 2048 -204.196.17.0/24 2048 -204.196.18.0/24 2048 -204.196.20.0/24 2048 -204.196.70.0/24 2048 -204.196.88.0/23 2048 -204.196.91.0/24 2048 -204.196.92.0/22 2048 -204.196.102.0/23 2048 -204.196.104.0/24 2048 -204.196.134.0/23 2048 -204.196.138.0/23 2048 -204.196.140.0/24 2048 -204.196.146.0/24 2048 -204.196.148.0/24 2048 -204.196.150.0/23 2048 -204.196.153.0/24 2048 -204.196.156.0/24 2048 -204.196.159.0/24 2048 -204.196.188.0/22 2048 -204.196.192.0/23 32592 -204.196.194.0/24 32592 -204.196.197.0/24 2048 -204.196.202.0/23 2048 -204.196.210.0/24 2048 -204.196.212.0/23 2048 -204.196.215.0/24 2048 -204.196.221.0/24 2048 -204.196.222.0/23 2048 -204.196.229.0/24 2048 -204.196.230.0/24 2048 -204.196.234.0/23 2048 -204.196.236.0/23 2048 -204.196.239.0/24 2048 -204.196.240.0/24 2048 -204.196.242.0/24 2048 -204.196.244.0/23 2048 -204.196.253.0/24 2048 -204.196.254.0/24 2048 -204.197.0.0/17 557 -204.197.128.0/20 21922 -204.197.144.0/20 26097 -204.197.176.0/20 54614 -204.197.192.0/20 14676 -204.197.208.0/24 46977 -204.197.220.0/24 46977 -204.197.224.0/23 11696 -204.197.228.0/22 63466 -204.197.232.0/22 63466 -204.197.240.0/20 63410 -204.198.249.0/24 7219 -204.200.0.0/20 2914 -204.200.16.0/21 2914 -204.200.24.0/23 2914 -204.200.26.0/23 13857 -204.200.28.0/22 2914 -204.200.32.0/19 2914 -204.200.64.0/18 2914 -204.200.128.0/17 2914 -204.201.0.0/16 2914 -204.202.0.0/16 2914 -204.203.0.0/19 2914 -204.203.32.0/20 2914 -204.203.48.0/23 13857 -204.203.50.0/24 13857 -204.203.51.0/24 2914 -204.203.52.0/22 2914 -204.203.56.0/21 2914 -204.203.64.0/20 2914 -204.203.80.0/21 2914 -204.203.88.0/22 2914 -204.203.92.0/24 12204 -204.203.93.0/24 2914 -204.203.94.0/23 2914 -204.203.96.0/19 2914 -204.203.128.0/17 2914 -204.206.249.0/24 6327 -204.208.0.0/17 5972 -204.208.128.0/21 5972 -204.208.136.0/22 5972 -204.208.140.0/23 5972 -204.208.142.0/24 721 -204.208.143.0/24 5972 -204.208.144.0/21 5972 -204.208.152.0/24 5972 -204.208.153.0/24 721 -204.208.154.0/23 5972 -204.208.156.0/22 5972 -204.208.160.0/22 5972 -204.208.164.0/24 5972 -204.208.165.0/24 721 -204.208.166.0/23 5972 -204.208.168.0/24 721 -204.208.169.0/24 5972 -204.208.170.0/23 5972 -204.208.172.0/23 721 -204.208.174.0/24 721 -204.208.175.0/24 5972 -204.208.176.0/21 5972 -204.208.184.0/23 721 -204.208.186.0/24 5972 -204.208.187.0/24 721 -204.208.188.0/22 5972 -204.208.192.0/19 5972 -204.208.224.0/20 5972 -204.208.240.0/21 5972 -204.208.248.0/24 721 -204.208.249.0/24 5972 -204.208.250.0/23 721 -204.208.252.0/22 5972 -204.209.0.0/24 22321 -204.209.5.0/24 26546 -204.209.8.0/24 852 -204.209.10.0/23 852 -204.209.13.0/24 10242 -204.209.14.0/23 10242 -204.209.16.0/22 26037 -204.209.20.0/24 30500 -204.209.21.0/24 14426 -204.209.22.0/23 14426 -204.209.24.0/23 23163 -204.209.28.0/24 54182 -204.209.29.0/24 396125 -204.209.35.0/24 812 -204.209.36.0/23 54182 -204.209.38.0/23 852 -204.209.44.0/23 30500 -204.209.46.0/23 6171 -204.209.48.0/22 10242 -204.209.56.0/23 13911 -204.209.58.0/23 15296 -204.209.60.0/24 15296 -204.209.62.0/24 15296 -204.209.76.0/23 15296 -204.209.78.0/24 15296 -204.209.81.0/24 6171 -204.209.91.0/24 15296 -204.209.92.0/23 15296 -204.209.111.0/24 3561 -204.209.113.0/24 11568 -204.209.114.0/24 40902 -204.209.117.0/24 62596 -204.209.118.0/24 852 -204.209.119.0/24 64200 -204.209.120.0/23 6171 -204.209.122.0/23 852 -204.209.125.0/24 852 -204.209.128.0/24 6327 -204.209.130.0/24 19760 -204.209.132.0/24 6327 -204.209.136.0/24 64200 -204.209.148.0/24 64200 -204.209.149.0/24 25983 -204.209.150.0/24 19662 -204.209.159.0/24 19760 -204.209.162.0/23 63236 -204.209.164.0/23 30500 -204.209.166.0/24 6327 -204.209.167.0/24 25983 -204.209.168.0/24 26546 -204.209.169.0/24 64200 -204.209.176.0/23 16696 -204.209.192.0/20 852 -204.209.208.0/21 6327 -204.209.216.0/22 18587 -204.209.220.0/23 852 -204.209.222.0/24 393810 -204.209.224.0/20 852 -204.209.240.0/21 852 -204.209.248.0/23 17389 -204.209.251.0/24 852 -204.209.252.0/23 22512 -204.209.255.0/24 63373 -204.210.0.0/18 20001 -204.210.64.0/19 11351 -204.210.96.0/19 20001 -204.210.128.0/19 12271 -204.210.160.0/19 10796 -204.210.192.0/18 10796 -204.211.0.0/16 6559 -204.212.0.0/19 1239 -204.212.32.0/22 1239 -204.212.36.0/23 1239 -204.212.38.0/24 7733 -204.212.39.0/24 1239 -204.212.40.0/22 1239 -204.212.44.0/22 234 -204.212.48.0/20 1239 -204.212.64.0/19 1239 -204.212.96.0/20 1239 -204.212.112.0/21 1239 -204.212.120.0/21 11816 -204.212.128.0/19 1239 -204.212.160.0/22 16586 -204.212.164.0/22 1239 -204.212.168.0/23 1239 -204.212.170.0/24 30021 -204.212.171.0/24 1239 -204.212.172.0/23 1239 -204.212.174.0/24 1239 -204.212.175.0/24 13431 -204.212.176.0/21 19893 -204.212.184.0/24 19893 -204.212.185.0/24 15334 -204.212.186.0/24 16474 -204.212.187.0/24 19893 -204.212.188.0/22 19893 -204.212.192.0/19 1239 -204.212.224.0/20 1239 -204.212.240.0/21 14813 -204.212.248.0/21 1239 -204.213.0.0/17 1239 -204.213.128.0/19 1239 -204.213.160.0/20 1239 -204.213.176.0/20 6062 -204.213.192.0/23 1239 -204.213.194.0/24 18632 -204.213.195.0/24 1239 -204.213.196.0/23 1239 -204.213.198.0/23 10461 -204.213.200.0/21 1239 -204.213.208.0/20 1239 -204.213.224.0/21 1239 -204.213.232.0/22 6062 -204.213.236.0/22 1239 -204.213.240.0/20 1239 -204.214.0.0/19 1239 -204.214.32.0/20 1239 -204.214.48.0/23 1239 -204.214.50.0/24 54573 -204.214.51.0/24 1239 -204.214.52.0/22 15347 -204.214.56.0/21 1239 -204.214.64.0/18 1239 -204.214.128.0/20 1239 -204.214.144.0/20 7810 -204.214.160.0/19 1239 -204.214.192.0/18 1239 -204.215.0.0/19 1239 -204.215.32.0/24 209 -204.215.33.0/24 2379 -204.215.34.0/23 2379 -204.215.36.0/24 2379 -204.215.37.0/24 209 -204.215.38.0/23 2379 -204.215.40.0/24 209 -204.215.41.0/24 2379 -204.215.42.0/23 2379 -204.215.44.0/22 2379 -204.215.48.0/20 1239 -204.215.64.0/18 1239 -204.215.128.0/18 1239 -204.215.192.0/19 1239 -204.215.224.0/20 1239 -204.215.240.0/20 2379 -204.216.0.0/19 4544 -204.216.32.0/23 4544 -204.216.34.0/24 4544 -204.216.35.0/24 53985 -204.216.36.0/22 4544 -204.216.40.0/21 4544 -204.216.48.0/20 4544 -204.216.64.0/21 4544 -204.216.72.0/22 4544 -204.216.76.0/24 4544 -204.216.77.0/24 33449 -204.216.78.0/23 4544 -204.216.80.0/20 4544 -204.216.96.0/19 4544 -204.216.128.0/17 4544 -204.217.0.0/16 174 -204.218.0.0/18 209 -204.218.64.0/18 6595 -204.219.0.0/16 6595 -204.220.0.0/20 5006 -204.220.16.0/21 5006 -204.220.24.0/22 5006 -204.220.28.0/23 5006 -204.220.30.0/24 7821 -204.220.31.0/24 5006 -204.220.32.0/19 5006 -204.220.64.0/18 5006 -204.220.128.0/17 5006 -204.221.0.0/21 5006 -204.221.8.0/23 5006 -204.221.10.0/24 7821 -204.221.11.0/24 5006 -204.221.12.0/22 5006 -204.221.16.0/24 5006 -204.221.17.0/24 33362 -204.221.18.0/23 33362 -204.221.20.0/24 7821 -204.221.21.0/24 5006 -204.221.22.0/23 5006 -204.221.24.0/23 5006 -204.221.26.0/24 7821 -204.221.27.0/24 5006 -204.221.28.0/22 5006 -204.221.32.0/19 5006 -204.221.64.0/24 7821 -204.221.65.0/24 5006 -204.221.66.0/23 5006 -204.221.68.0/22 5006 -204.221.72.0/22 5006 -204.221.76.0/24 14738 -204.221.77.0/24 5006 -204.221.78.0/23 5006 -204.221.80.0/20 5006 -204.221.96.0/19 5006 -204.221.128.0/20 5006 -204.221.144.0/22 33362 -204.221.148.0/23 7821 -204.221.150.0/23 5006 -204.221.152.0/21 5006 -204.221.160.0/21 7821 -204.221.168.0/21 5006 -204.221.176.0/20 5006 -204.221.192.0/18 5006 -204.222.0.0/22 721 -204.222.4.0/23 721 -204.222.6.0/23 668 -204.222.8.0/23 668 -204.222.10.0/23 721 -204.222.12.0/22 721 -204.222.16.0/22 5972 -204.222.20.0/22 721 -204.222.24.0/21 721 -204.222.32.0/20 5972 -204.222.48.0/20 721 -204.222.64.0/21 668 -204.222.72.0/21 721 -204.222.80.0/20 721 -204.222.96.0/20 721 -204.222.112.0/21 721 -204.222.120.0/22 5972 -204.222.124.0/22 721 -204.222.128.0/20 721 -204.222.144.0/23 721 -204.222.146.0/23 27066 -204.222.148.0/23 27066 -204.222.150.0/23 721 -204.222.152.0/21 721 -204.222.160.0/21 721 -204.222.168.0/22 721 -204.222.172.0/23 721 -204.222.174.0/23 5972 -204.222.176.0/24 721 -204.222.177.0/24 5957 -204.222.178.0/23 5957 -204.222.180.0/22 721 -204.222.184.0/22 721 -204.222.188.0/22 5972 -204.222.192.0/20 721 -204.222.208.0/22 721 -204.222.212.0/24 300 -204.222.213.0/24 721 -204.222.214.0/23 721 -204.222.216.0/24 721 -204.222.217.0/24 27065 -204.222.218.0/23 721 -204.222.220.0/22 721 -204.222.224.0/22 721 -204.222.228.0/23 5978 -204.222.230.0/23 721 -204.222.232.0/21 721 -204.222.240.0/21 721 -204.222.248.0/23 385 -204.222.250.0/23 27064 -204.222.252.0/22 721 -204.223.0.0/19 721 -204.223.32.0/23 721 -204.223.34.0/24 721 -204.223.35.0/24 1540 -204.223.36.0/22 1540 -204.223.40.0/21 1540 -204.223.48.0/20 1540 -204.223.64.0/21 1540 -204.223.72.0/24 721 -204.223.73.0/24 1540 -204.223.74.0/24 721 -204.223.75.0/24 1540 -204.223.76.0/23 721 -204.223.78.0/23 637 -204.223.80.0/21 1540 -204.223.88.0/22 1540 -204.223.92.0/23 1540 -204.223.94.0/24 1540 -204.223.95.0/24 721 -204.223.96.0/20 1540 -204.223.112.0/22 721 -204.223.116.0/24 637 -204.223.117.0/24 721 -204.223.118.0/23 721 -204.223.120.0/22 721 -204.223.124.0/24 721 -204.223.125.0/24 1540 -204.223.126.0/23 1540 -204.223.128.0/20 721 -204.223.144.0/21 721 -204.223.152.0/22 1540 -204.223.156.0/24 1540 -204.223.157.0/24 721 -204.223.158.0/23 721 -204.223.160.0/20 721 -204.223.176.0/24 1540 -204.223.177.0/24 721 -204.223.178.0/23 721 -204.223.180.0/22 721 -204.223.184.0/22 721 -204.223.188.0/23 721 -204.223.190.0/24 721 -204.223.191.0/24 1540 -204.223.192.0/18 721 -204.225.0.0/24 36152 -204.225.1.0/24 812 -204.225.2.0/23 812 -204.225.4.0/23 812 -204.225.6.0/24 174 -204.225.7.0/24 11700 -204.225.8.0/21 32638 -204.225.32.0/22 23498 -204.225.42.0/23 267346 -204.225.44.0/23 394678 -204.225.46.0/23 15290 -204.225.60.0/22 33326 -204.225.65.0/24 30147 -204.225.67.0/24 30147 -204.225.68.0/24 30147 -204.225.69.0/24 577 -204.225.70.0/24 577 -204.225.72.0/22 17170 -204.225.76.0/22 54300 -204.225.80.0/22 395462 -204.225.84.0/22 33326 -204.225.88.0/21 812 -204.225.96.0/24 396900 -204.225.103.0/24 812 -204.225.107.0/24 577 -204.225.113.0/24 395219 -204.225.117.0/24 577 -204.225.119.0/24 40028 -204.225.122.0/23 5764 -204.225.124.0/24 5764 -204.225.126.0/23 5764 -204.225.128.0/24 18637 -204.225.129.0/24 577 -204.225.133.0/24 3561 -204.225.134.0/23 32489 -204.225.136.0/24 23134 -204.225.138.0/24 30684 -204.225.142.0/24 25932 -204.225.144.0/24 2665 -204.225.145.0/24 19225 -204.225.146.0/23 7820 -204.225.150.0/24 22123 -204.225.158.0/24 54002 -204.225.161.0/24 23498 -204.225.163.0/24 397264 -204.225.173.0/24 11399 -204.225.174.0/23 63447 -204.225.177.0/24 15290 -204.225.178.0/24 14707 -204.225.187.0/24 577 -204.225.188.0/23 54672 -204.225.191.0/24 21552 -204.225.194.0/23 13441 -204.225.208.0/23 27453 -204.225.211.0/24 21992 -204.225.212.0/22 53338 -204.225.218.0/24 201341 -204.225.220.0/24 393457 -204.225.221.0/24 13319 -204.225.232.0/24 19842 -204.225.248.0/24 393845 -204.225.249.0/24 22652 -204.227.66.0/24 6461 -204.227.70.0/24 6461 -204.227.96.0/24 6629 -204.227.127.0/24 32878 -204.227.128.0/21 29766 -204.227.136.0/24 7381 -204.227.137.0/24 29766 -204.227.140.0/22 29766 -204.227.192.0/19 3833 -204.227.225.0/24 11941 -204.227.226.0/23 11941 -204.227.228.0/24 11941 -204.227.230.0/23 11941 -204.227.232.0/23 11941 -204.227.236.0/22 11941 -204.227.240.0/22 11941 -204.227.245.0/24 11941 -204.227.246.0/23 11941 -204.227.251.0/24 11941 -204.227.252.0/24 11941 -204.227.254.0/23 11941 -204.228.23.0/24 22773 -204.228.64.0/23 209 -204.228.66.0/24 209 -204.228.67.0/24 104 -204.228.68.0/22 62671 -204.228.72.0/22 209 -204.228.76.0/23 209 -204.228.78.0/24 13555 -204.228.79.0/24 209 -204.228.80.0/24 104 -204.228.81.0/24 33652 -204.228.82.0/23 209 -204.228.84.0/22 17207 -204.228.88.0/23 209 -204.228.90.0/24 6461 -204.228.91.0/24 209 -204.228.92.0/22 209 -204.228.96.0/19 30136 -204.228.128.0/19 6315 -204.228.161.0/24 1746 -204.228.170.0/24 6629 -204.228.175.0/24 6629 -204.228.176.0/20 6629 -204.228.192.0/22 14230 -204.228.196.0/23 14230 -204.228.198.0/23 40266 -204.228.200.0/21 14230 -204.228.208.0/20 14230 -204.228.224.0/23 14230 -204.228.226.0/24 40266 -204.228.227.0/24 14230 -204.228.228.0/22 14230 -204.228.232.0/21 14230 -204.228.240.0/20 14230 -204.229.0.0/20 397285 -204.229.16.0/20 14230 -204.229.39.0/24 1706 -204.229.96.0/19 14230 -204.229.219.0/24 20001 -204.229.220.0/22 20001 -204.229.234.0/24 20001 -204.229.236.0/22 1706 -204.230.0.0/22 2166 -204.230.44.0/22 2166 -204.230.248.0/21 19647 -204.231.24.0/24 3300 -204.231.108.0/22 3300 -204.231.178.0/23 17126 -204.231.180.0/23 17126 -204.231.241.0/24 32630 -204.232.64.0/20 21570 -204.232.80.0/20 12129 -204.232.96.0/24 29866 -204.232.98.0/23 29866 -204.232.100.0/23 29866 -204.232.102.0/24 29866 -204.232.103.0/24 46147 -204.232.104.0/21 29866 -204.232.112.0/20 29866 -204.232.128.0/18 27357 -204.232.192.0/19 33070 -204.232.224.0/19 27357 -204.233.0.0/17 2914 -204.233.128.0/18 2914 -204.233.192.0/19 2914 -204.233.224.0/21 2914 -204.233.232.0/23 2914 -204.233.234.0/24 2914 -204.233.235.0/24 174 -204.233.236.0/22 2914 -204.233.240.0/20 2914 -204.234.0.0/16 11714 -204.235.32.0/21 3741 -204.235.40.0/22 3741 -204.235.44.0/22 17306 -204.235.48.0/21 1226 -204.235.56.0/22 1226 -204.235.60.0/22 13706 -204.235.64.0/20 668 -204.235.96.0/22 19151 -204.235.100.0/22 35900 -204.235.104.0/24 19151 -204.235.106.0/23 26881 -204.235.108.0/22 46101 -204.235.112.0/21 3456 -204.235.120.0/23 3456 -204.235.124.0/22 30030 -204.235.143.0/24 33508 -204.235.144.0/20 22192 -204.235.160.0/21 22192 -204.235.168.0/22 22192 -204.235.172.0/23 22192 -204.235.176.0/24 12083 -204.235.196.0/24 35950 -204.235.208.0/20 47027 -204.235.224.0/24 32457 -204.235.225.0/24 32626 -204.235.226.0/23 32457 -204.235.228.0/22 32457 -204.235.232.0/21 32457 -204.236.32.0/19 20097 -204.236.64.0/18 8014 -204.236.128.0/18 16509 -204.236.192.0/18 14618 -204.237.0.0/17 22995 -204.237.128.0/23 1828 -204.237.130.0/24 19222 -204.237.131.0/24 54040 -204.237.132.0/24 3257 -204.237.133.0/24 62713 -204.237.134.0/23 3257 -204.237.136.0/22 3257 -204.237.140.0/23 3257 -204.237.142.0/23 20940 -204.237.144.0/20 3257 -204.237.160.0/19 3257 -204.237.192.0/19 3257 -204.237.224.0/20 3257 -204.237.240.0/24 393981 -204.237.241.0/24 3257 -204.237.242.0/24 13628 -204.237.243.0/24 135391 -204.237.244.0/22 3257 -204.237.248.0/23 17035 -204.237.250.0/24 395407 -204.237.251.0/24 395369 -204.237.252.0/24 3257 -204.237.253.0/24 205615 -204.237.254.0/24 395276 -204.237.255.0/24 3257 -204.238.2.0/24 63018 -204.238.5.0/24 46943 -204.238.8.0/24 16713 -204.238.15.0/24 7018 -204.238.19.0/24 2576 -204.238.24.0/23 7782 -204.238.26.0/24 7782 -204.238.34.0/24 29706 -204.238.37.0/24 396345 -204.238.44.0/24 396240 -204.238.46.0/24 25932 -204.238.49.0/24 6939 -204.238.50.0/24 11227 -204.238.52.0/24 53828 -204.238.56.0/24 20082 -204.238.58.0/24 27368 -204.238.65.0/24 3562 -204.238.72.0/24 11427 -204.238.76.0/24 11834 -204.238.82.0/24 40275 -204.238.95.0/24 5783 -204.238.98.0/24 13779 -204.238.101.0/24 5783 -204.238.104.0/24 6289 -204.238.107.0/24 1982 -204.238.109.0/24 7018 -204.238.112.0/24 20115 -204.238.114.0/24 33265 -204.238.120.0/24 2828 -204.238.128.0/24 2386 -204.238.129.0/24 668 -204.238.141.0/24 54617 -204.238.146.0/24 13760 -204.238.150.0/24 11855 -204.238.153.0/24 21745 -204.238.168.0/24 16470 -204.238.176.0/24 174 -204.238.177.0/24 8057 -204.238.181.0/24 26341 -204.238.187.0/24 13823 -204.238.192.0/24 32807 -204.238.193.0/24 22925 -204.238.197.0/24 14932 -204.238.198.0/24 32096 -204.238.209.0/24 21516 -204.238.213.0/24 29962 -204.238.214.0/24 16608 -204.238.218.0/24 13823 -204.238.225.0/24 13647 -204.238.227.0/24 701 -204.238.229.0/24 32748 -204.238.232.0/24 395166 -204.238.234.0/24 7018 -204.238.236.0/24 33132 -204.238.237.0/24 7872 -204.238.247.0/24 25956 -204.238.252.0/24 32186 -204.238.254.0/24 33390 -204.238.255.0/24 209 -204.239.0.0/24 16653 -204.239.3.0/24 23425 -204.239.4.0/22 14007 -204.239.8.0/23 22424 -204.239.10.0/24 22424 -204.239.11.0/24 53637 -204.239.12.0/24 22424 -204.239.14.0/23 32562 -204.239.17.0/24 23301 -204.239.18.0/24 11105 -204.239.19.0/24 23181 -204.239.26.0/23 40029 -204.239.28.0/23 14007 -204.239.30.0/24 19662 -204.239.40.0/23 19662 -204.239.42.0/24 19662 -204.239.67.0/24 3633 -204.239.70.0/23 3633 -204.239.72.0/24 3633 -204.239.83.0/24 271 -204.239.84.0/23 271 -204.239.86.0/24 271 -204.239.88.0/24 3848 -204.239.90.0/24 3848 -204.239.92.0/22 852 -204.239.96.0/20 852 -204.239.112.0/21 852 -204.239.122.0/24 852 -204.239.124.0/24 21934 -204.239.125.0/24 852 -204.239.129.0/24 852 -204.239.130.0/23 19662 -204.239.136.0/23 54442 -204.239.138.0/23 14007 -204.239.140.0/24 14007 -204.239.141.0/24 852 -204.239.146.0/24 53549 -204.239.148.0/23 852 -204.239.150.0/24 852 -204.239.152.0/22 393966 -204.239.156.0/24 6327 -204.239.157.0/24 25668 -204.239.159.0/24 852 -204.239.160.0/22 852 -204.239.166.0/24 19662 -204.239.167.0/24 62969 -204.239.182.0/24 40236 -204.239.183.0/24 812 -204.239.198.0/24 852 -204.239.204.0/23 19009 -204.239.206.0/24 6327 -204.239.207.0/24 23181 -204.239.211.0/24 62969 -204.239.216.0/24 23181 -204.239.220.0/22 397423 -204.239.240.0/24 23181 -204.239.243.0/24 852 -204.239.248.0/22 40808 -204.239.252.0/23 40808 -204.240.0.0/16 174 -204.241.0.0/20 174 -204.241.16.0/23 174 -204.241.18.0/24 27514 -204.241.19.0/24 174 -204.241.20.0/22 174 -204.241.24.0/21 174 -204.241.32.0/19 174 -204.241.64.0/18 174 -204.241.128.0/17 174 -204.242.0.0/15 174 -204.244.0.0/16 5071 -204.245.0.0/24 27377 -204.245.1.0/24 3549 -204.245.2.0/23 3549 -204.245.4.0/22 3549 -204.245.8.0/24 3549 -204.245.9.0/24 263771 -204.245.10.0/23 3549 -204.245.12.0/22 3549 -204.245.16.0/22 3549 -204.245.20.0/24 3549 -204.245.21.0/24 63406 -204.245.22.0/23 3549 -204.245.24.0/23 3549 -204.245.26.0/24 3549 -204.245.27.0/24 46799 -204.245.28.0/22 3549 -204.245.32.0/20 3549 -204.245.48.0/21 3549 -204.245.56.0/23 3549 -204.245.58.0/24 3356 -204.245.59.0/24 3549 -204.245.60.0/22 3549 -204.245.64.0/19 209 -204.245.96.0/21 209 -204.245.104.0/24 23332 -204.245.105.0/24 209 -204.245.106.0/23 209 -204.245.108.0/23 209 -204.245.110.0/24 209 -204.245.111.0/24 10939 -204.245.112.0/20 209 -204.245.128.0/19 2914 -204.245.160.0/20 2914 -204.245.176.0/21 2914 -204.245.184.0/22 2914 -204.245.188.0/24 174 -204.245.189.0/24 2914 -204.245.190.0/23 2914 -204.245.192.0/22 2914 -204.245.196.0/24 22892 -204.245.197.0/24 2914 -204.245.198.0/23 2914 -204.245.200.0/21 2914 -204.245.208.0/20 2914 -204.245.224.0/24 2914 -204.245.225.0/24 18604 -204.245.226.0/23 2914 -204.245.228.0/22 2914 -204.245.232.0/21 2914 -204.245.240.0/21 2914 -204.245.248.0/22 2914 -204.245.252.0/23 2914 -204.245.254.0/24 2914 -204.245.255.0/24 12044 -204.246.0.0/20 4181 -204.246.16.0/22 36614 -204.246.20.0/24 36614 -204.246.22.0/23 36614 -204.246.24.0/22 36614 -204.246.28.0/24 36614 -204.246.30.0/23 36614 -204.246.32.0/19 40728 -204.246.64.0/18 25720 -204.246.128.0/20 13649 -204.246.144.0/21 13649 -204.246.152.0/21 11973 -204.246.160.0/22 16509 -204.246.164.0/24 16509 -204.246.166.0/24 16509 -204.246.168.0/23 16509 -204.246.172.0/24 16509 -204.246.174.0/24 16509 -204.246.176.0/24 16509 -204.246.179.0/24 16509 -204.246.180.0/24 16509 -204.246.185.0/24 16509 -204.246.186.0/24 16509 -204.246.188.0/23 16509 -204.246.191.0/24 16509 -204.246.192.0/19 3549 -204.246.224.0/23 3549 -204.246.226.0/24 3356 -204.246.227.0/24 3549 -204.246.228.0/24 3549 -204.246.229.0/24 36309 -204.246.230.0/23 3549 -204.246.232.0/21 3549 -204.246.240.0/20 3549 -204.247.0.0/16 2914 -204.248.0.0/24 22713 -204.248.1.0/24 1239 -204.248.2.0/23 1239 -204.248.4.0/22 1239 -204.248.8.0/21 1239 -204.248.16.0/20 1239 -204.248.32.0/22 1239 -204.248.36.0/23 1239 -204.248.38.0/24 1239 -204.248.39.0/24 23392 -204.248.40.0/21 1239 -204.248.48.0/20 4358 -204.248.64.0/19 1239 -204.248.96.0/20 1239 -204.248.112.0/20 14828 -204.248.128.0/20 1239 -204.248.144.0/21 1239 -204.248.152.0/24 1239 -204.248.153.0/24 395800 -204.248.154.0/23 1239 -204.248.156.0/24 1239 -204.248.157.0/24 11403 -204.248.158.0/23 1239 -204.248.160.0/21 1239 -204.248.168.0/24 17046 -204.248.169.0/24 1239 -204.248.170.0/23 1239 -204.248.172.0/22 1239 -204.248.176.0/20 1239 -204.248.192.0/18 1239 -204.249.0.0/19 1239 -204.249.32.0/20 4133 -204.249.48.0/20 1239 -204.249.64.0/21 29968 -204.249.72.0/21 1239 -204.249.80.0/20 1239 -204.249.96.0/22 1239 -204.249.100.0/23 27696 -204.249.102.0/24 27696 -204.249.103.0/24 1239 -204.249.104.0/23 6062 -204.249.106.0/23 1239 -204.249.108.0/22 1239 -204.249.112.0/21 1239 -204.249.120.0/22 1239 -204.249.124.0/22 6367 -204.249.128.0/19 1239 -204.249.160.0/20 1239 -204.249.176.0/23 1239 -204.249.178.0/23 26909 -204.249.180.0/24 26909 -204.249.181.0/24 1239 -204.249.182.0/23 1239 -204.249.184.0/21 1239 -204.249.192.0/21 8025 -204.249.200.0/24 395168 -204.249.201.0/24 8025 -204.249.202.0/23 8025 -204.249.204.0/22 8025 -204.249.208.0/20 1239 -204.249.224.0/21 1239 -204.249.232.0/22 1239 -204.249.236.0/23 1239 -204.249.238.0/23 21547 -204.249.240.0/21 6062 -204.249.248.0/21 1239 -204.250.0.0/21 1239 -204.250.8.0/22 1239 -204.250.12.0/24 21638 -204.250.13.0/24 1239 -204.250.14.0/24 1239 -204.250.15.0/24 36639 -204.250.16.0/21 1239 -204.250.24.0/24 18632 -204.250.25.0/24 1239 -204.250.26.0/23 1239 -204.250.28.0/22 1239 -204.250.32.0/19 1239 -204.250.64.0/21 1239 -204.250.72.0/22 1239 -204.250.76.0/24 1239 -204.250.77.0/24 46678 -204.250.78.0/23 1239 -204.250.80.0/22 11924 -204.250.84.0/24 11924 -204.250.85.0/24 22485 -204.250.86.0/23 22485 -204.250.88.0/21 1239 -204.250.96.0/20 3734 -204.250.112.0/22 1239 -204.250.116.0/23 1239 -204.250.118.0/24 1239 -204.250.119.0/24 40370 -204.250.120.0/23 1239 -204.250.122.0/24 14045 -204.250.123.0/24 1239 -204.250.124.0/22 1239 -204.250.128.0/20 1239 -204.250.144.0/21 1239 -204.250.152.0/23 1239 -204.250.154.0/24 1239 -204.250.155.0/24 8151 -204.250.156.0/22 1239 -204.250.160.0/19 1239 -204.250.192.0/19 1239 -204.250.224.0/20 1239 -204.250.240.0/21 1239 -204.250.248.0/23 1239 -204.250.250.0/24 6939 -204.250.251.0/24 54239 -204.250.252.0/22 1239 -204.251.0.0/19 1239 -204.251.32.0/22 2933 -204.251.36.0/22 1239 -204.251.40.0/21 1239 -204.251.48.0/20 1239 -204.251.64.0/18 1239 -204.251.128.0/19 1239 -204.251.160.0/21 1239 -204.251.168.0/22 1239 -204.251.172.0/23 1239 -204.251.174.0/24 1239 -204.251.175.0/24 19994 -204.251.176.0/20 1239 -204.251.192.0/21 1239 -204.251.200.0/22 1239 -204.251.204.0/24 1239 -204.251.205.0/24 26556 -204.251.206.0/23 1239 -204.251.208.0/21 1239 -204.251.216.0/23 1239 -204.251.218.0/23 26909 -204.251.220.0/22 1239 -204.251.224.0/22 1239 -204.251.228.0/23 1239 -204.251.230.0/24 20325 -204.251.231.0/24 1239 -204.251.232.0/22 7029 -204.251.236.0/22 1239 -204.251.240.0/21 1239 -204.251.248.0/22 1239 -204.251.252.0/23 1239 -204.251.254.0/24 1239 -204.251.255.0/24 46853 -204.252.0.0/17 701 -204.252.128.0/19 701 -204.252.160.0/20 701 -204.252.176.0/22 701 -204.252.180.0/22 4497 -204.252.184.0/21 701 -204.252.192.0/21 701 -204.252.200.0/24 22883 -204.252.201.0/24 701 -204.252.202.0/23 701 -204.252.204.0/22 701 -204.252.208.0/20 701 -204.252.224.0/19 701 -204.253.0.0/19 701 -204.253.32.0/20 701 -204.253.48.0/24 11160 -204.253.49.0/24 701 -204.253.50.0/23 701 -204.253.52.0/23 701 -204.253.54.0/24 701 -204.253.55.0/24 20447 -204.253.56.0/21 701 -204.253.64.0/20 701 -204.253.80.0/23 701 -204.253.82.0/24 16831 -204.253.83.0/24 701 -204.253.84.0/22 701 -204.253.88.0/21 701 -204.253.96.0/19 701 -204.253.128.0/19 701 -204.253.160.0/22 701 -204.253.164.0/24 10455 -204.253.165.0/24 701 -204.253.166.0/23 701 -204.253.168.0/21 701 -204.253.176.0/20 701 -204.253.192.0/19 701 -204.253.224.0/20 701 -204.253.240.0/22 701 -204.253.244.0/24 701 -204.253.245.0/24 54363 -204.253.246.0/23 701 -204.253.248.0/21 701 -204.254.0.0/17 701 -204.254.128.0/20 701 -204.254.144.0/21 6620 -204.254.152.0/21 701 -204.254.160.0/21 701 -204.254.168.0/22 701 -204.254.172.0/23 701 -204.254.174.0/24 701 -204.254.175.0/24 26442 -204.254.176.0/20 701 -204.254.192.0/19 701 -204.254.224.0/21 701 -204.254.232.0/23 33203 -204.254.234.0/23 701 -204.254.236.0/22 701 -204.254.240.0/20 701 -204.255.0.0/21 701 -204.255.8.0/23 701 -204.255.10.0/24 11859 -204.255.11.0/24 701 -204.255.12.0/22 701 -204.255.16.0/21 701 -204.255.24.0/21 11606 -204.255.32.0/19 395800 -204.255.64.0/19 701 -204.255.96.0/24 701 -204.255.97.0/24 396477 -204.255.98.0/23 701 -204.255.100.0/22 701 -204.255.104.0/21 701 -204.255.112.0/20 701 -204.255.128.0/18 701 -204.255.192.0/19 701 -204.255.224.0/20 701 -204.255.240.0/22 701 -204.255.244.0/23 3598 -204.255.246.0/23 701 -204.255.248.0/21 701 -205.14.192.0/21 7029 -205.55.67.0/24 132826 -205.56.0.0/19 647 -205.56.32.0/20 721 -205.56.48.0/21 721 -205.56.56.0/22 721 -205.56.60.0/24 721 -205.56.61.0/24 647 -205.56.62.0/23 721 -205.56.64.0/18 721 -205.56.128.0/19 721 -205.56.160.0/20 721 -205.56.176.0/22 721 -205.56.180.0/24 721 -205.56.181.0/24 647 -205.56.182.0/23 721 -205.56.184.0/21 721 -205.56.192.0/20 721 -205.56.208.0/24 721 -205.56.209.0/24 5237 -205.56.210.0/24 5237 -205.56.211.0/24 721 -205.56.212.0/22 721 -205.56.216.0/21 721 -205.56.224.0/24 721 -205.56.225.0/24 1539 -205.56.226.0/23 721 -205.56.228.0/22 721 -205.56.232.0/21 647 -205.56.240.0/22 721 -205.56.244.0/23 721 -205.56.246.0/23 5839 -205.56.248.0/22 5839 -205.56.252.0/23 5839 -205.56.254.0/23 721 -205.57.0.0/19 3475 -205.57.32.0/20 721 -205.57.48.0/22 27064 -205.57.52.0/22 721 -205.57.56.0/22 721 -205.57.60.0/24 721 -205.57.61.0/24 3475 -205.57.62.0/24 3475 -205.57.63.0/24 721 -205.57.64.0/20 721 -205.57.80.0/23 647 -205.57.82.0/24 647 -205.57.83.0/24 721 -205.57.84.0/22 721 -205.57.88.0/23 721 -205.57.90.0/23 647 -205.57.92.0/24 647 -205.57.93.0/24 721 -205.57.94.0/23 721 -205.57.96.0/20 721 -205.57.112.0/21 721 -205.57.120.0/22 647 -205.57.124.0/22 721 -205.57.128.0/22 721 -205.57.132.0/23 721 -205.57.134.0/23 647 -205.57.136.0/24 647 -205.57.137.0/24 721 -205.57.138.0/23 721 -205.57.140.0/22 721 -205.57.144.0/20 721 -205.57.160.0/19 721 -205.57.192.0/18 721 -205.58.0.0/19 647 -205.58.32.0/19 721 -205.58.64.0/21 721 -205.58.72.0/22 721 -205.58.76.0/24 721 -205.58.77.0/24 27064 -205.58.78.0/23 721 -205.58.80.0/23 721 -205.58.82.0/23 3475 -205.58.84.0/23 3475 -205.58.86.0/23 721 -205.58.88.0/23 721 -205.58.90.0/24 637 -205.58.91.0/24 721 -205.58.92.0/22 721 -205.58.96.0/22 721 -205.58.100.0/23 3471 -205.58.102.0/24 721 -205.58.103.0/24 310 -205.58.104.0/23 310 -205.58.106.0/24 310 -205.58.107.0/24 721 -205.58.108.0/22 721 -205.58.112.0/20 721 -205.58.128.0/23 721 -205.58.130.0/24 1539 -205.58.131.0/24 721 -205.58.132.0/22 721 -205.58.136.0/21 721 -205.58.144.0/20 721 -205.58.160.0/20 721 -205.58.176.0/20 647 -205.58.192.0/23 647 -205.58.194.0/24 721 -205.58.195.0/24 647 -205.58.196.0/22 721 -205.58.200.0/21 721 -205.58.208.0/20 721 -205.58.224.0/21 721 -205.58.232.0/24 1539 -205.58.233.0/24 721 -205.58.234.0/23 721 -205.58.236.0/22 721 -205.58.240.0/20 721 -205.59.0.0/19 647 -205.59.32.0/19 3475 -205.59.64.0/18 721 -205.59.128.0/18 721 -205.59.192.0/20 721 -205.59.208.0/21 721 -205.59.216.0/22 721 -205.59.220.0/23 721 -205.59.222.0/24 1539 -205.59.223.0/24 721 -205.59.224.0/20 721 -205.59.240.0/21 721 -205.59.248.0/24 721 -205.59.249.0/24 1539 -205.59.250.0/23 721 -205.59.252.0/22 721 -205.60.0.0/19 647 -205.60.32.0/19 721 -205.60.64.0/21 665 -205.60.72.0/21 721 -205.60.80.0/20 721 -205.60.96.0/19 721 -205.60.128.0/18 721 -205.60.192.0/19 721 -205.60.224.0/23 721 -205.60.226.0/24 721 -205.60.227.0/24 647 -205.60.228.0/22 721 -205.60.232.0/21 721 -205.60.240.0/20 721 -205.61.0.0/19 721 -205.61.32.0/21 721 -205.61.40.0/22 721 -205.61.44.0/23 721 -205.61.46.0/24 721 -205.61.47.0/24 1539 -205.61.48.0/20 721 -205.61.64.0/18 721 -205.61.128.0/17 721 -205.62.0.0/19 3475 -205.62.32.0/19 721 -205.62.64.0/18 721 -205.62.128.0/18 721 -205.62.192.0/22 721 -205.62.196.0/23 721 -205.62.198.0/24 1539 -205.62.199.0/24 721 -205.62.200.0/21 721 -205.62.208.0/20 721 -205.62.224.0/19 721 -205.63.0.0/19 5237 -205.63.32.0/19 721 -205.63.64.0/18 721 -205.63.128.0/17 721 -205.64.0.0/19 647 -205.64.32.0/19 721 -205.64.64.0/18 721 -205.64.128.0/17 721 -205.65.0.0/17 721 -205.65.128.0/21 3475 -205.65.136.0/22 647 -205.65.140.0/22 721 -205.65.144.0/22 3475 -205.65.148.0/22 5237 -205.65.152.0/22 647 -205.65.156.0/24 721 -205.65.157.0/24 5237 -205.65.158.0/23 721 -205.65.160.0/22 721 -205.65.164.0/24 721 -205.65.165.0/24 647 -205.65.166.0/23 721 -205.65.168.0/22 647 -205.65.172.0/22 3475 -205.65.176.0/24 721 -205.65.177.0/24 3475 -205.65.178.0/23 721 -205.65.180.0/22 647 -205.65.184.0/21 721 -205.65.192.0/18 721 -205.66.0.0/18 721 -205.66.64.0/19 721 -205.66.96.0/22 721 -205.66.100.0/22 668 -205.66.104.0/23 5972 -205.66.106.0/24 5972 -205.66.107.0/24 721 -205.66.108.0/22 721 -205.66.112.0/22 721 -205.66.116.0/24 27065 -205.66.117.0/24 721 -205.66.118.0/24 721 -205.66.119.0/24 27065 -205.66.120.0/23 721 -205.66.122.0/24 721 -205.66.123.0/24 27064 -205.66.124.0/22 721 -205.66.128.0/18 721 -205.66.192.0/21 721 -205.66.200.0/21 310 -205.66.208.0/21 310 -205.66.216.0/21 721 -205.66.224.0/24 27137 -205.66.225.0/24 721 -205.66.226.0/23 721 -205.66.228.0/22 721 -205.66.232.0/21 27139 -205.66.240.0/20 721 -205.67.0.0/20 3475 -205.67.16.0/20 721 -205.67.32.0/19 721 -205.67.64.0/18 721 -205.67.128.0/18 721 -205.67.192.0/20 721 -205.67.208.0/21 721 -205.67.216.0/23 721 -205.67.218.0/24 721 -205.67.219.0/24 27064 -205.67.220.0/22 721 -205.67.224.0/23 721 -205.67.226.0/23 5972 -205.67.228.0/24 5972 -205.67.229.0/24 721 -205.67.230.0/24 721 -205.67.231.0/24 27064 -205.67.232.0/24 668 -205.67.233.0/24 721 -205.67.234.0/23 721 -205.67.236.0/22 721 -205.67.240.0/21 721 -205.67.248.0/22 721 -205.67.252.0/24 721 -205.67.253.0/24 5972 -205.67.254.0/23 721 -205.68.0.0/20 647 -205.68.16.0/21 647 -205.68.24.0/23 647 -205.68.26.0/23 721 -205.68.28.0/22 721 -205.68.32.0/19 721 -205.68.64.0/24 27066 -205.68.65.0/24 721 -205.68.66.0/24 1539 -205.68.67.0/24 721 -205.68.68.0/23 721 -205.68.70.0/24 5972 -205.68.71.0/24 721 -205.68.72.0/21 721 -205.68.80.0/22 721 -205.68.84.0/24 5972 -205.68.85.0/24 721 -205.68.86.0/24 27064 -205.68.87.0/24 721 -205.68.88.0/22 721 -205.68.92.0/23 721 -205.68.94.0/24 721 -205.68.95.0/24 668 -205.68.96.0/24 721 -205.68.97.0/24 27064 -205.68.98.0/24 721 -205.68.99.0/24 5972 -205.68.100.0/24 5972 -205.68.101.0/24 721 -205.68.102.0/23 721 -205.68.104.0/24 721 -205.68.105.0/24 5972 -205.68.106.0/23 5972 -205.68.108.0/22 721 -205.68.112.0/24 721 -205.68.113.0/24 2749 -205.68.114.0/24 2749 -205.68.115.0/24 721 -205.68.116.0/22 721 -205.68.120.0/22 721 -205.68.124.0/23 721 -205.68.126.0/24 3475 -205.68.127.0/24 647 -205.68.128.0/18 721 -205.68.192.0/20 3475 -205.68.208.0/20 647 -205.68.224.0/20 3475 -205.68.240.0/20 5237 -205.69.0.0/20 647 -205.69.16.0/20 3475 -205.69.32.0/19 647 -205.69.64.0/19 721 -205.69.96.0/20 721 -205.69.112.0/21 721 -205.69.120.0/23 721 -205.69.122.0/24 721 -205.69.123.0/24 1539 -205.69.124.0/22 721 -205.69.128.0/18 721 -205.69.192.0/20 721 -205.69.208.0/21 721 -205.69.216.0/22 721 -205.69.220.0/23 721 -205.69.222.0/24 5237 -205.69.223.0/24 721 -205.69.224.0/22 721 -205.69.228.0/23 721 -205.69.230.0/24 721 -205.69.231.0/24 5237 -205.69.232.0/24 721 -205.69.233.0/24 5972 -205.69.234.0/24 5972 -205.69.235.0/24 721 -205.69.236.0/24 5972 -205.69.237.0/24 5839 -205.69.238.0/23 721 -205.69.240.0/21 627 -205.69.248.0/21 721 -205.70.0.0/18 721 -205.70.64.0/19 721 -205.70.96.0/20 627 -205.70.112.0/23 721 -205.70.114.0/24 27064 -205.70.115.0/24 721 -205.70.116.0/22 721 -205.70.120.0/23 721 -205.70.122.0/23 6034 -205.70.124.0/22 6034 -205.70.128.0/20 3475 -205.70.144.0/21 3475 -205.70.152.0/21 721 -205.70.160.0/19 721 -205.70.192.0/20 3475 -205.70.208.0/20 647 -205.70.224.0/19 647 -205.71.0.0/19 647 -205.71.32.0/19 721 -205.71.64.0/19 647 -205.71.96.0/20 647 -205.71.112.0/22 721 -205.71.116.0/23 3475 -205.71.118.0/24 721 -205.71.119.0/24 3475 -205.71.120.0/23 3475 -205.71.122.0/24 3475 -205.71.123.0/24 721 -205.71.124.0/22 721 -205.71.128.0/19 3475 -205.71.160.0/23 721 -205.71.162.0/24 721 -205.71.163.0/24 3475 -205.71.164.0/24 3475 -205.71.165.0/24 721 -205.71.166.0/23 721 -205.71.168.0/21 721 -205.71.176.0/21 721 -205.71.184.0/22 721 -205.71.188.0/23 721 -205.71.190.0/24 721 -205.71.191.0/24 1539 -205.71.192.0/20 647 -205.71.208.0/20 3475 -205.71.224.0/20 647 -205.71.240.0/20 5237 -205.72.0.0/19 647 -205.72.32.0/24 721 -205.72.33.0/24 647 -205.72.34.0/24 647 -205.72.35.0/24 721 -205.72.36.0/22 721 -205.72.40.0/21 721 -205.72.48.0/20 721 -205.72.64.0/20 5237 -205.72.80.0/20 647 -205.72.96.0/19 647 -205.72.128.0/19 5237 -205.72.160.0/19 721 -205.72.192.0/18 647 -205.73.0.0/19 647 -205.73.32.0/21 5972 -205.73.40.0/21 721 -205.73.48.0/20 721 -205.73.64.0/20 3475 -205.73.80.0/22 721 -205.73.84.0/22 647 -205.73.88.0/24 647 -205.73.89.0/24 721 -205.73.90.0/23 721 -205.73.92.0/22 721 -205.73.96.0/20 721 -205.73.112.0/20 647 -205.73.128.0/19 3475 -205.73.160.0/23 721 -205.73.162.0/24 721 -205.73.163.0/24 1539 -205.73.164.0/22 721 -205.73.168.0/21 721 -205.73.176.0/20 721 -205.73.192.0/21 721 -205.73.200.0/23 721 -205.73.202.0/23 5972 -205.73.204.0/22 5972 -205.73.208.0/21 5972 -205.73.216.0/24 5972 -205.73.217.0/24 721 -205.73.218.0/23 5972 -205.73.220.0/22 5972 -205.73.224.0/22 5972 -205.73.228.0/24 5972 -205.73.229.0/24 721 -205.73.230.0/24 721 -205.73.231.0/24 5972 -205.73.232.0/24 721 -205.73.233.0/24 27066 -205.73.234.0/23 721 -205.73.236.0/24 27064 -205.73.237.0/24 721 -205.73.238.0/23 721 -205.73.240.0/22 721 -205.73.244.0/23 721 -205.73.246.0/23 5972 -205.73.248.0/21 721 -205.74.0.0/19 721 -205.74.32.0/22 668 -205.74.36.0/23 668 -205.74.38.0/23 721 -205.74.40.0/22 721 -205.74.44.0/24 721 -205.74.45.0/24 5972 -205.74.46.0/23 721 -205.74.48.0/20 721 -205.74.64.0/18 721 -205.74.128.0/20 721 -205.74.144.0/21 721 -205.74.152.0/22 721 -205.74.156.0/23 721 -205.74.158.0/23 5972 -205.74.160.0/22 5972 -205.74.164.0/24 5972 -205.74.165.0/24 721 -205.74.166.0/24 721 -205.74.167.0/24 5972 -205.74.168.0/21 5972 -205.74.176.0/20 5972 -205.74.192.0/18 647 -205.75.0.0/18 721 -205.75.64.0/19 721 -205.75.96.0/21 647 -205.75.104.0/21 721 -205.75.112.0/20 3475 -205.75.128.0/20 3475 -205.75.144.0/20 721 -205.75.160.0/19 721 -205.75.192.0/19 721 -205.75.224.0/20 721 -205.75.240.0/21 721 -205.75.248.0/22 721 -205.75.252.0/23 721 -205.75.254.0/24 721 -205.75.255.0/24 1539 -205.76.0.0/19 647 -205.76.32.0/19 721 -205.76.64.0/23 721 -205.76.66.0/24 721 -205.76.67.0/24 647 -205.76.68.0/22 647 -205.76.72.0/22 647 -205.76.76.0/24 647 -205.76.77.0/24 721 -205.76.78.0/23 721 -205.76.80.0/23 721 -205.76.82.0/23 647 -205.76.84.0/24 647 -205.76.85.0/24 721 -205.76.86.0/23 721 -205.76.88.0/21 721 -205.76.96.0/19 721 -205.76.128.0/19 5839 -205.76.160.0/19 721 -205.76.192.0/21 5972 -205.76.200.0/23 5972 -205.76.202.0/23 721 -205.76.204.0/22 721 -205.76.208.0/22 721 -205.76.212.0/24 5237 -205.76.213.0/24 721 -205.76.214.0/23 721 -205.76.216.0/21 721 -205.76.224.0/20 721 -205.76.240.0/21 5972 -205.76.248.0/22 721 -205.76.252.0/23 721 -205.76.254.0/24 721 -205.76.255.0/24 5972 -205.77.0.0/18 721 -205.77.64.0/19 27064 -205.77.96.0/22 27064 -205.77.100.0/22 721 -205.77.104.0/22 721 -205.77.108.0/24 721 -205.77.109.0/24 1539 -205.77.110.0/23 721 -205.77.112.0/20 721 -205.77.128.0/17 721 -205.78.0.0/20 3475 -205.78.16.0/23 3475 -205.78.18.0/24 721 -205.78.19.0/24 3475 -205.78.20.0/23 721 -205.78.22.0/23 3475 -205.78.24.0/24 3475 -205.78.25.0/24 721 -205.78.26.0/23 3475 -205.78.28.0/24 721 -205.78.29.0/24 3475 -205.78.30.0/23 721 -205.78.32.0/19 721 -205.78.64.0/18 721 -205.78.128.0/18 721 -205.78.192.0/20 647 -205.78.208.0/20 721 -205.78.224.0/20 721 -205.78.240.0/21 721 -205.78.248.0/22 721 -205.78.252.0/23 721 -205.78.254.0/24 721 -205.78.255.0/24 1539 -205.79.0.0/19 5237 -205.79.32.0/23 721 -205.79.34.0/24 721 -205.79.35.0/24 1539 -205.79.36.0/22 721 -205.79.40.0/21 721 -205.79.48.0/20 721 -205.79.64.0/20 647 -205.79.80.0/20 721 -205.79.96.0/19 721 -205.79.128.0/22 647 -205.79.132.0/22 721 -205.79.136.0/21 721 -205.79.144.0/20 721 -205.79.160.0/19 721 -205.79.192.0/19 3475 -205.79.224.0/19 721 -205.80.0.0/20 647 -205.80.16.0/20 721 -205.80.32.0/19 721 -205.80.64.0/20 647 -205.80.80.0/20 721 -205.80.96.0/19 721 -205.80.128.0/17 721 -205.81.0.0/20 721 -205.81.16.0/22 721 -205.81.20.0/23 721 -205.81.22.0/24 721 -205.81.23.0/24 1539 -205.81.24.0/21 721 -205.81.32.0/19 721 -205.81.64.0/18 721 -205.81.128.0/17 721 -205.82.0.0/17 721 -205.82.128.0/20 721 -205.82.144.0/21 5972 -205.82.152.0/22 5972 -205.82.156.0/23 5972 -205.82.158.0/24 5972 -205.82.159.0/24 1539 -205.82.160.0/24 721 -205.82.161.0/24 1539 -205.82.162.0/23 721 -205.82.164.0/22 721 -205.82.168.0/21 721 -205.82.176.0/20 721 -205.82.192.0/18 721 -205.83.0.0/18 721 -205.83.64.0/19 721 -205.83.96.0/20 3475 -205.83.112.0/22 5237 -205.83.116.0/22 3475 -205.83.120.0/21 3475 -205.83.128.0/19 647 -205.83.160.0/19 721 -205.83.192.0/19 647 -205.83.224.0/19 721 -205.84.0.0/24 647 -205.84.1.0/24 721 -205.84.2.0/23 721 -205.84.4.0/22 721 -205.84.8.0/21 721 -205.84.16.0/20 721 -205.84.32.0/24 647 -205.84.33.0/24 721 -205.84.34.0/23 721 -205.84.36.0/22 721 -205.84.40.0/21 721 -205.84.48.0/20 721 -205.84.64.0/18 721 -205.84.128.0/19 721 -205.84.160.0/24 1539 -205.84.161.0/24 721 -205.84.162.0/23 721 -205.84.164.0/22 721 -205.84.168.0/21 721 -205.84.176.0/20 721 -205.84.192.0/18 721 -205.85.0.0/21 665 -205.85.8.0/21 721 -205.85.16.0/23 665 -205.85.18.0/23 721 -205.85.20.0/23 721 -205.85.22.0/23 665 -205.85.24.0/21 665 -205.85.32.0/23 665 -205.85.34.0/23 721 -205.85.36.0/23 721 -205.85.38.0/24 721 -205.85.39.0/24 665 -205.85.40.0/23 665 -205.85.42.0/23 721 -205.85.44.0/24 665 -205.85.45.0/24 721 -205.85.46.0/23 721 -205.85.48.0/22 665 -205.85.52.0/24 665 -205.85.53.0/24 721 -205.85.54.0/23 721 -205.85.56.0/22 665 -205.85.60.0/23 721 -205.85.62.0/24 721 -205.85.63.0/24 665 -205.85.64.0/20 721 -205.85.80.0/22 721 -205.85.84.0/22 665 -205.85.88.0/21 721 -205.85.96.0/21 721 -205.85.104.0/23 721 -205.85.106.0/23 665 -205.85.108.0/22 665 -205.85.112.0/20 665 -205.85.128.0/17 721 -205.86.0.0/19 647 -205.86.32.0/20 647 -205.86.48.0/23 721 -205.86.50.0/23 647 -205.86.52.0/22 721 -205.86.56.0/22 721 -205.86.60.0/24 647 -205.86.61.0/24 721 -205.86.62.0/23 721 -205.86.64.0/20 721 -205.86.80.0/24 721 -205.86.81.0/24 3475 -205.86.82.0/24 3475 -205.86.83.0/24 721 -205.86.84.0/22 721 -205.86.88.0/21 721 -205.86.96.0/22 647 -205.86.100.0/22 721 -205.86.104.0/21 721 -205.86.112.0/20 721 -205.86.128.0/23 647 -205.86.130.0/24 647 -205.86.131.0/24 721 -205.86.132.0/22 721 -205.86.136.0/21 721 -205.86.144.0/23 647 -205.86.146.0/24 647 -205.86.147.0/24 721 -205.86.148.0/22 721 -205.86.152.0/21 721 -205.86.160.0/19 721 -205.86.192.0/18 721 -205.87.0.0/18 721 -205.87.64.0/23 647 -205.87.66.0/24 647 -205.87.67.0/24 721 -205.87.68.0/22 721 -205.87.72.0/21 721 -205.87.80.0/20 721 -205.87.96.0/19 721 -205.87.128.0/18 721 -205.87.192.0/21 721 -205.87.200.0/24 721 -205.87.201.0/24 647 -205.87.202.0/23 647 -205.87.204.0/22 721 -205.87.208.0/20 721 -205.87.224.0/19 721 -205.88.0.0/17 721 -205.88.128.0/19 647 -205.88.160.0/20 721 -205.88.176.0/20 647 -205.88.192.0/19 5839 -205.88.224.0/20 3475 -205.88.240.0/24 721 -205.88.241.0/24 647 -205.88.242.0/24 721 -205.88.243.0/24 647 -205.88.244.0/22 721 -205.88.248.0/21 721 -205.89.0.0/20 647 -205.89.16.0/20 721 -205.89.32.0/20 647 -205.89.48.0/20 721 -205.89.64.0/20 647 -205.89.80.0/20 721 -205.89.96.0/20 647 -205.89.112.0/20 721 -205.89.128.0/20 647 -205.89.144.0/20 721 -205.89.160.0/20 3475 -205.89.176.0/20 721 -205.89.192.0/20 3475 -205.89.208.0/20 721 -205.89.224.0/20 647 -205.89.240.0/20 721 -205.90.0.0/20 647 -205.90.16.0/20 721 -205.90.32.0/20 5237 -205.90.48.0/20 721 -205.90.64.0/20 647 -205.90.80.0/20 721 -205.90.96.0/20 647 -205.90.112.0/20 721 -205.90.128.0/20 5237 -205.90.144.0/20 721 -205.90.160.0/20 647 -205.90.176.0/20 721 -205.90.192.0/20 3475 -205.90.208.0/20 721 -205.90.224.0/20 3475 -205.90.240.0/20 721 -205.91.0.0/20 3475 -205.91.16.0/20 721 -205.91.32.0/20 647 -205.91.48.0/20 721 -205.91.64.0/20 647 -205.91.80.0/20 721 -205.91.96.0/20 5839 -205.91.112.0/20 721 -205.91.128.0/20 3475 -205.91.144.0/20 721 -205.91.160.0/20 647 -205.91.176.0/20 721 -205.91.192.0/20 3475 -205.91.208.0/20 721 -205.91.224.0/20 5839 -205.91.240.0/20 721 -205.92.0.0/20 647 -205.92.16.0/20 721 -205.92.32.0/20 647 -205.92.48.0/20 721 -205.92.64.0/18 721 -205.92.128.0/17 721 -205.93.0.0/19 721 -205.93.32.0/19 647 -205.93.64.0/18 647 -205.93.128.0/19 3475 -205.93.160.0/19 647 -205.93.192.0/20 647 -205.93.208.0/20 721 -205.93.224.0/20 3475 -205.93.240.0/20 721 -205.94.0.0/19 647 -205.94.32.0/19 5237 -205.94.64.0/19 3475 -205.94.96.0/19 647 -205.94.128.0/20 647 -205.94.144.0/20 721 -205.94.160.0/19 721 -205.94.192.0/18 721 -205.95.0.0/19 647 -205.95.32.0/19 721 -205.95.64.0/19 721 -205.95.96.0/19 647 -205.95.128.0/18 721 -205.95.192.0/19 647 -205.95.224.0/20 721 -205.95.240.0/21 721 -205.95.248.0/24 721 -205.95.249.0/24 1539 -205.95.250.0/23 721 -205.95.252.0/22 721 -205.96.0.0/16 721 -205.97.0.0/17 721 -205.97.128.0/18 721 -205.97.192.0/21 5237 -205.97.200.0/22 5237 -205.97.204.0/22 3475 -205.97.208.0/21 5237 -205.97.216.0/22 721 -205.97.220.0/22 5237 -205.97.224.0/21 5237 -205.97.232.0/22 721 -205.97.236.0/22 3475 -205.97.240.0/22 3475 -205.97.244.0/22 721 -205.97.248.0/21 721 -205.98.0.0/19 721 -205.98.32.0/23 3475 -205.98.34.0/24 721 -205.98.35.0/24 3475 -205.98.36.0/24 3475 -205.98.37.0/24 721 -205.98.38.0/23 3475 -205.98.40.0/21 721 -205.98.48.0/20 721 -205.98.64.0/20 647 -205.98.80.0/20 721 -205.98.96.0/20 3475 -205.98.112.0/20 721 -205.98.128.0/20 3475 -205.98.144.0/20 721 -205.98.160.0/20 647 -205.98.176.0/20 721 -205.98.192.0/20 3475 -205.98.208.0/20 721 -205.98.224.0/20 647 -205.98.240.0/20 721 -205.99.0.0/20 647 -205.99.16.0/20 721 -205.99.32.0/20 647 -205.99.48.0/20 721 -205.99.64.0/20 3475 -205.99.80.0/20 721 -205.99.96.0/20 5237 -205.99.112.0/20 721 -205.99.128.0/20 647 -205.99.144.0/20 721 -205.99.160.0/19 721 -205.99.192.0/18 721 -205.100.0.0/20 721 -205.100.16.0/21 721 -205.100.24.0/23 721 -205.100.26.0/24 1539 -205.100.27.0/24 721 -205.100.28.0/22 721 -205.100.32.0/19 721 -205.100.64.0/18 721 -205.100.128.0/17 721 -205.101.0.0/21 721 -205.101.8.0/23 721 -205.101.10.0/24 721 -205.101.11.0/24 1539 -205.101.12.0/22 721 -205.101.16.0/20 721 -205.101.32.0/21 721 -205.101.40.0/24 1539 -205.101.41.0/24 721 -205.101.42.0/23 721 -205.101.44.0/22 721 -205.101.48.0/20 721 -205.101.64.0/19 721 -205.101.96.0/22 637 -205.101.100.0/24 637 -205.101.101.0/24 721 -205.101.102.0/23 721 -205.101.104.0/21 721 -205.101.112.0/20 721 -205.101.128.0/18 721 -205.101.192.0/19 721 -205.101.224.0/24 637 -205.101.225.0/24 721 -205.101.226.0/23 721 -205.101.228.0/22 721 -205.101.232.0/21 721 -205.101.240.0/20 721 -205.102.0.0/18 721 -205.102.64.0/19 721 -205.102.96.0/20 721 -205.102.112.0/21 721 -205.102.120.0/22 721 -205.102.124.0/23 721 -205.102.126.0/24 721 -205.102.127.0/24 637 -205.102.128.0/22 637 -205.102.132.0/24 637 -205.102.133.0/24 721 -205.102.134.0/23 721 -205.102.136.0/21 721 -205.102.144.0/22 721 -205.102.148.0/23 721 -205.102.150.0/24 721 -205.102.151.0/24 637 -205.102.152.0/21 721 -205.102.160.0/19 721 -205.102.192.0/22 721 -205.102.196.0/23 721 -205.102.198.0/24 721 -205.102.199.0/24 1539 -205.102.200.0/21 721 -205.102.208.0/20 721 -205.102.224.0/24 721 -205.102.225.0/24 1539 -205.102.226.0/23 721 -205.102.228.0/22 721 -205.102.232.0/21 721 -205.102.240.0/20 721 -205.103.0.0/22 721 -205.103.4.0/24 3475 -205.103.5.0/24 721 -205.103.6.0/23 721 -205.103.8.0/22 721 -205.103.12.0/24 647 -205.103.13.0/24 721 -205.103.14.0/23 721 -205.103.16.0/24 647 -205.103.17.0/24 721 -205.103.18.0/23 721 -205.103.20.0/24 3475 -205.103.21.0/24 721 -205.103.22.0/23 721 -205.103.24.0/24 3475 -205.103.25.0/24 721 -205.103.26.0/23 721 -205.103.28.0/22 721 -205.103.32.0/24 647 -205.103.33.0/24 721 -205.103.34.0/23 721 -205.103.36.0/22 721 -205.103.40.0/21 721 -205.103.48.0/24 3475 -205.103.49.0/24 721 -205.103.50.0/23 721 -205.103.52.0/24 3475 -205.103.53.0/24 721 -205.103.54.0/23 721 -205.103.56.0/24 1539 -205.103.57.0/24 721 -205.103.58.0/23 721 -205.103.60.0/24 3475 -205.103.61.0/24 721 -205.103.62.0/23 721 -205.103.64.0/20 721 -205.103.80.0/24 647 -205.103.81.0/24 721 -205.103.82.0/23 721 -205.103.84.0/24 647 -205.103.85.0/24 721 -205.103.86.0/23 721 -205.103.88.0/21 721 -205.103.96.0/19 721 -205.103.128.0/17 721 -205.106.0.0/19 721 -205.106.32.0/20 721 -205.106.48.0/21 721 -205.106.56.0/22 5237 -205.106.60.0/22 721 -205.106.64.0/22 721 -205.106.68.0/22 5237 -205.106.72.0/21 647 -205.106.80.0/21 647 -205.106.88.0/22 5237 -205.106.92.0/22 647 -205.106.96.0/22 721 -205.106.100.0/22 647 -205.106.104.0/21 721 -205.106.112.0/20 721 -205.106.128.0/18 721 -205.106.192.0/21 721 -205.106.200.0/24 721 -205.106.201.0/24 647 -205.106.202.0/23 721 -205.106.204.0/22 721 -205.106.208.0/21 721 -205.106.216.0/22 721 -205.106.220.0/24 27064 -205.106.221.0/24 721 -205.106.222.0/23 721 -205.106.224.0/19 721 -205.107.0.0/20 721 -205.107.16.0/24 647 -205.107.17.0/24 721 -205.107.18.0/23 721 -205.107.20.0/22 721 -205.107.24.0/22 721 -205.107.28.0/24 647 -205.107.29.0/24 721 -205.107.30.0/23 721 -205.107.32.0/21 721 -205.107.40.0/24 647 -205.107.41.0/24 721 -205.107.42.0/23 721 -205.107.44.0/24 647 -205.107.45.0/24 721 -205.107.46.0/23 721 -205.107.48.0/24 3475 -205.107.49.0/24 721 -205.107.50.0/23 721 -205.107.52.0/22 721 -205.107.56.0/24 721 -205.107.57.0/24 3475 -205.107.58.0/23 721 -205.107.60.0/24 3475 -205.107.61.0/24 721 -205.107.62.0/23 721 -205.107.64.0/22 721 -205.107.68.0/24 647 -205.107.69.0/24 721 -205.107.70.0/23 721 -205.107.72.0/22 721 -205.107.76.0/24 647 -205.107.77.0/24 721 -205.107.78.0/23 721 -205.107.80.0/24 647 -205.107.81.0/24 721 -205.107.82.0/23 721 -205.107.84.0/24 647 -205.107.85.0/24 721 -205.107.86.0/23 721 -205.107.88.0/24 647 -205.107.89.0/24 721 -205.107.90.0/23 721 -205.107.92.0/24 647 -205.107.93.0/24 721 -205.107.94.0/23 721 -205.107.96.0/24 647 -205.107.97.0/24 721 -205.107.98.0/23 721 -205.107.100.0/24 3475 -205.107.101.0/24 721 -205.107.102.0/23 721 -205.107.104.0/22 721 -205.107.108.0/24 721 -205.107.109.0/24 3475 -205.107.110.0/23 721 -205.107.112.0/24 3475 -205.107.113.0/24 721 -205.107.114.0/23 721 -205.107.116.0/24 647 -205.107.117.0/24 721 -205.107.118.0/23 721 -205.107.120.0/22 721 -205.107.124.0/24 3475 -205.107.125.0/24 721 -205.107.126.0/23 721 -205.107.128.0/24 721 -205.107.129.0/24 3475 -205.107.130.0/23 721 -205.107.132.0/24 647 -205.107.133.0/24 721 -205.107.134.0/23 721 -205.107.136.0/22 721 -205.107.140.0/24 647 -205.107.141.0/24 721 -205.107.142.0/23 721 -205.107.144.0/22 721 -205.107.148.0/24 647 -205.107.149.0/24 721 -205.107.150.0/23 721 -205.107.152.0/24 647 -205.107.153.0/24 721 -205.107.154.0/23 721 -205.107.156.0/24 5839 -205.107.157.0/24 721 -205.107.158.0/23 721 -205.107.160.0/21 721 -205.107.168.0/24 647 -205.107.169.0/24 721 -205.107.170.0/23 721 -205.107.172.0/24 3475 -205.107.173.0/24 721 -205.107.174.0/23 721 -205.107.176.0/22 721 -205.107.180.0/24 3475 -205.107.181.0/24 721 -205.107.182.0/23 721 -205.107.184.0/24 647 -205.107.185.0/24 721 -205.107.186.0/23 721 -205.107.188.0/22 721 -205.107.192.0/24 647 -205.107.193.0/24 721 -205.107.194.0/23 721 -205.107.196.0/22 721 -205.107.200.0/22 721 -205.107.204.0/24 3475 -205.107.205.0/24 721 -205.107.206.0/23 721 -205.107.208.0/20 647 -205.107.224.0/22 721 -205.107.228.0/22 3475 -205.107.232.0/21 721 -205.107.240.0/20 721 -205.108.0.0/21 721 -205.108.8.0/24 647 -205.108.9.0/24 721 -205.108.10.0/23 721 -205.108.12.0/22 647 -205.108.16.0/24 647 -205.108.17.0/24 721 -205.108.18.0/23 721 -205.108.20.0/22 647 -205.108.24.0/21 721 -205.108.32.0/21 721 -205.108.40.0/24 5237 -205.108.41.0/24 721 -205.108.42.0/23 721 -205.108.44.0/22 721 -205.108.48.0/20 721 -205.108.64.0/18 721 -205.108.128.0/18 721 -205.108.192.0/19 721 -205.108.224.0/20 721 -205.108.240.0/22 721 -205.108.244.0/22 647 -205.108.248.0/21 721 -205.109.0.0/22 721 -205.109.4.0/23 637 -205.109.6.0/23 721 -205.109.8.0/21 721 -205.109.16.0/22 721 -205.109.20.0/23 1540 -205.109.22.0/24 1540 -205.109.23.0/24 721 -205.109.24.0/23 637 -205.109.26.0/23 1540 -205.109.28.0/22 721 -205.109.32.0/20 1540 -205.109.48.0/22 721 -205.109.52.0/24 721 -205.109.53.0/24 310 -205.109.54.0/23 721 -205.109.56.0/21 721 -205.109.64.0/22 1540 -205.109.68.0/23 1540 -205.109.70.0/23 721 -205.109.72.0/21 721 -205.109.80.0/21 1540 -205.109.88.0/21 721 -205.109.96.0/19 1540 -205.109.128.0/18 1540 -205.109.192.0/19 1540 -205.109.224.0/19 637 -205.110.0.0/19 637 -205.110.32.0/23 637 -205.110.34.0/24 637 -205.110.35.0/24 721 -205.110.36.0/23 1540 -205.110.38.0/24 721 -205.110.39.0/24 1540 -205.110.40.0/21 721 -205.110.48.0/22 721 -205.110.52.0/23 721 -205.110.54.0/23 637 -205.110.56.0/23 1540 -205.110.58.0/24 1540 -205.110.59.0/24 721 -205.110.60.0/23 1540 -205.110.62.0/24 721 -205.110.63.0/24 1540 -205.110.64.0/20 721 -205.110.80.0/22 721 -205.110.84.0/24 721 -205.110.85.0/24 637 -205.110.86.0/24 1540 -205.110.87.0/24 637 -205.110.88.0/21 721 -205.110.96.0/21 721 -205.110.104.0/22 637 -205.110.108.0/22 721 -205.110.112.0/20 721 -205.110.128.0/21 721 -205.110.136.0/24 721 -205.110.137.0/24 1540 -205.110.138.0/23 721 -205.110.140.0/23 1540 -205.110.142.0/23 721 -205.110.144.0/20 721 -205.110.160.0/21 721 -205.110.168.0/22 721 -205.110.172.0/23 1540 -205.110.174.0/24 1540 -205.110.175.0/24 721 -205.110.176.0/24 637 -205.110.177.0/24 721 -205.110.178.0/23 721 -205.110.180.0/22 721 -205.110.184.0/23 721 -205.110.186.0/24 721 -205.110.187.0/24 637 -205.110.188.0/22 721 -205.110.192.0/21 1540 -205.110.200.0/21 721 -205.110.208.0/23 721 -205.110.210.0/23 637 -205.110.212.0/23 721 -205.110.214.0/23 637 -205.110.216.0/24 1540 -205.110.217.0/24 721 -205.110.218.0/24 1540 -205.110.219.0/24 721 -205.110.220.0/22 721 -205.110.224.0/21 721 -205.110.232.0/23 637 -205.110.234.0/23 721 -205.110.236.0/22 637 -205.110.240.0/23 721 -205.110.242.0/24 1540 -205.110.243.0/24 721 -205.110.244.0/23 1540 -205.110.246.0/24 721 -205.110.247.0/24 1540 -205.110.248.0/23 637 -205.110.250.0/23 1540 -205.110.252.0/22 1540 -205.111.227.0/24 27064 -205.111.228.0/22 27064 -205.111.232.0/24 27064 -205.111.250.0/24 1541 -205.112.10.0/24 1539 -205.113.0.0/21 5972 -205.113.8.0/23 5972 -205.113.72.0/24 1539 -205.113.233.0/24 1539 -205.115.0.0/20 5972 -205.115.16.0/22 5972 -205.115.20.0/24 721 -205.115.21.0/24 5972 -205.115.22.0/23 5972 -205.115.24.0/21 5972 -205.115.32.0/20 5972 -205.115.48.0/23 721 -205.115.50.0/24 3475 -205.115.51.0/24 721 -205.115.52.0/22 5972 -205.115.56.0/23 721 -205.115.58.0/24 5972 -205.115.59.0/24 721 -205.115.60.0/22 5972 -205.115.64.0/18 5972 -205.115.128.0/24 721 -205.115.129.0/24 5972 -205.115.130.0/23 5972 -205.115.132.0/22 5972 -205.115.136.0/22 5972 -205.115.140.0/24 721 -205.115.141.0/24 5972 -205.115.142.0/24 721 -205.115.143.0/24 5972 -205.115.144.0/20 721 -205.115.160.0/22 721 -205.115.164.0/23 721 -205.115.166.0/23 5972 -205.115.168.0/21 5972 -205.115.176.0/21 5972 -205.115.184.0/22 5972 -205.115.188.0/23 5972 -205.115.190.0/24 721 -205.115.191.0/24 5972 -205.115.192.0/23 5972 -205.115.194.0/23 721 -205.115.196.0/23 721 -205.115.198.0/24 721 -205.115.199.0/24 5972 -205.115.200.0/22 5972 -205.115.204.0/23 5972 -205.115.206.0/24 5972 -205.115.207.0/24 721 -205.115.208.0/21 5972 -205.115.216.0/22 5972 -205.115.220.0/22 721 -205.115.224.0/21 721 -205.115.232.0/22 721 -205.115.236.0/22 5972 -205.115.240.0/21 5972 -205.115.248.0/22 5972 -205.115.252.0/24 5972 -205.115.253.0/24 721 -205.115.254.0/23 721 -205.116.0.0/21 5972 -205.116.8.0/22 5972 -205.116.20.0/22 5972 -205.116.24.0/21 5972 -205.116.32.0/20 5972 -205.116.48.0/23 5972 -205.116.60.0/22 5972 -205.116.64.0/22 5972 -205.118.0.0/15 210 -205.120.0.0/13 210 -205.128.0.0/17 3356 -205.128.128.0/18 3356 -205.128.192.0/19 3356 -205.128.224.0/20 6566 -205.128.240.0/20 3356 -205.129.0.0/16 3356 -205.130.0.0/15 3356 -205.132.0.0/22 54735 -205.132.4.0/24 7381 -205.132.5.0/24 116 -205.132.9.0/24 7046 -205.132.12.0/24 7046 -205.132.16.0/21 13649 -205.132.32.0/23 13649 -205.132.34.0/23 23005 -205.132.36.0/23 398247 -205.132.40.0/22 25680 -205.132.44.0/24 25680 -205.132.45.0/24 54440 -205.132.46.0/23 42 -205.132.72.0/21 26072 -205.132.80.0/21 397093 -205.132.94.0/23 7234 -205.132.107.0/24 29733 -205.132.108.0/22 29733 -205.132.112.0/21 19254 -205.132.129.0/24 32728 -205.132.139.0/24 33429 -205.132.140.0/22 33429 -205.132.144.0/21 7453 -205.132.162.0/24 10879 -205.132.165.0/24 10879 -205.132.166.0/24 10879 -205.132.173.0/24 33478 -205.132.175.0/24 33478 -205.132.216.0/21 395130 -205.132.248.0/21 2152 -205.133.0.0/17 600 -205.133.128.0/20 600 -205.133.144.0/21 600 -205.133.152.0/21 36831 -205.133.160.0/20 36831 -205.133.176.0/21 36831 -205.133.184.0/21 600 -205.133.192.0/18 600 -205.134.0.0/24 12142 -205.134.2.0/24 12142 -205.134.4.0/24 701 -205.134.6.0/24 32048 -205.134.7.0/24 32049 -205.134.9.0/24 32047 -205.134.10.0/24 12142 -205.134.16.0/24 32050 -205.134.18.0/23 32052 -205.134.20.0/24 32050 -205.134.21.0/24 32051 -205.134.24.0/23 32053 -205.134.27.0/24 38531 -205.134.29.0/24 32053 -205.134.47.0/24 62568 -205.134.48.0/24 62568 -205.134.54.0/23 54353 -205.134.62.0/23 62568 -205.134.84.0/24 4255 -205.134.112.0/20 10263 -205.134.128.0/19 19043 -205.134.160.0/19 6405 -205.134.192.0/19 20394 -205.134.224.0/21 17139 -205.134.232.0/23 17139 -205.134.234.0/24 22611 -205.134.235.0/24 17139 -205.134.236.0/23 17139 -205.134.238.0/23 22611 -205.134.240.0/24 17139 -205.134.241.0/24 22611 -205.134.242.0/23 17139 -205.134.244.0/22 17139 -205.134.248.0/24 17139 -205.134.249.0/24 22611 -205.134.250.0/23 22611 -205.134.252.0/22 22611 -205.135.128.0/21 29826 -205.135.136.0/23 29826 -205.135.139.0/24 29826 -205.135.144.0/23 40289 -205.135.152.0/21 29826 -205.135.160.0/21 26456 -205.135.251.0/24 40289 -205.135.255.0/24 18563 -205.136.0.0/17 3561 -205.136.128.0/18 3561 -205.136.192.0/19 3561 -205.136.224.0/21 3561 -205.136.232.0/22 3561 -205.136.236.0/23 3561 -205.136.238.0/23 6639 -205.136.240.0/24 6639 -205.136.241.0/24 3561 -205.136.242.0/23 3561 -205.136.244.0/22 3561 -205.136.248.0/21 3561 -205.137.32.0/20 32709 -205.137.48.0/20 174 -205.137.76.0/22 36291 -205.137.80.0/20 377 -205.137.96.0/20 14381 -205.137.120.0/24 4255 -205.137.126.0/23 26334 -205.137.144.0/24 701 -205.137.161.0/24 7018 -205.137.162.0/24 2386 -205.137.181.0/24 7381 -205.137.187.0/24 7029 -205.137.190.0/24 7029 -205.137.208.0/20 7046 -205.137.232.0/21 58532 -205.137.240.0/20 11686 -205.138.0.0/17 3561 -205.138.128.0/19 3561 -205.138.160.0/21 7991 -205.138.168.0/21 3561 -205.138.176.0/20 3561 -205.138.192.0/19 3561 -205.138.224.0/20 209 -205.138.240.0/23 3561 -205.138.242.0/24 13458 -205.138.243.0/24 3561 -205.138.244.0/23 3561 -205.138.246.0/24 3561 -205.138.247.0/24 396167 -205.138.248.0/21 3561 -205.139.0.0/20 3561 -205.139.16.0/22 6640 -205.139.20.0/22 3561 -205.139.24.0/24 3561 -205.139.25.0/24 63362 -205.139.26.0/23 3561 -205.139.28.0/22 3561 -205.139.32.0/20 3561 -205.139.48.0/21 3561 -205.139.56.0/22 3561 -205.139.60.0/23 3356 -205.139.62.0/23 3561 -205.139.64.0/19 3561 -205.139.96.0/21 3561 -205.139.104.0/22 3561 -205.139.108.0/23 3561 -205.139.110.0/23 30031 -205.139.112.0/20 3561 -205.139.128.0/21 3561 -205.139.136.0/22 3561 -205.139.140.0/23 3561 -205.139.142.0/24 22013 -205.139.143.0/24 3561 -205.139.144.0/22 19701 -205.139.148.0/22 3561 -205.139.152.0/23 3561 -205.139.154.0/24 22013 -205.139.155.0/24 3561 -205.139.156.0/22 3561 -205.139.160.0/19 3561 -205.139.192.0/19 3561 -205.139.224.0/20 3561 -205.139.240.0/23 3561 -205.139.242.0/24 7991 -205.139.243.0/24 3561 -205.139.244.0/22 3561 -205.139.248.0/21 3561 -205.140.0.0/24 3561 -205.140.1.0/24 25934 -205.140.2.0/23 3561 -205.140.4.0/22 3561 -205.140.8.0/21 3561 -205.140.16.0/20 3561 -205.140.32.0/19 3561 -205.140.64.0/18 3561 -205.140.128.0/20 3561 -205.140.144.0/23 3561 -205.140.146.0/24 25650 -205.140.147.0/24 3561 -205.140.148.0/22 3561 -205.140.152.0/21 3561 -205.140.160.0/20 3561 -205.140.192.0/19 3561 -205.140.224.0/23 3561 -205.140.226.0/24 3561 -205.140.227.0/24 22013 -205.140.228.0/22 3561 -205.140.232.0/21 3561 -205.140.240.0/20 3561 -205.141.0.0/19 32629 -205.141.32.0/23 32629 -205.141.34.0/24 32629 -205.141.35.0/24 3549 -205.141.36.0/24 3549 -205.141.37.0/24 32629 -205.141.38.0/23 32629 -205.141.40.0/21 32629 -205.141.48.0/21 32629 -205.141.56.0/22 32629 -205.141.60.0/23 32629 -205.141.62.0/23 3549 -205.141.66.0/23 7046 -205.141.128.0/18 26059 -205.141.192.0/20 5714 -205.141.208.0/24 5714 -205.141.219.0/24 2158 -205.141.232.0/22 14893 -205.141.236.0/22 33459 -205.141.247.0/24 18434 -205.142.7.0/24 54485 -205.142.14.0/23 54629 -205.142.20.0/23 13782 -205.142.52.0/22 4546 -205.142.56.0/22 33414 -205.142.61.0/24 7018 -205.142.62.0/24 7018 -205.142.64.0/24 19366 -205.142.65.0/24 395268 -205.142.66.0/23 23531 -205.142.76.0/22 15129 -205.142.93.0/24 20384 -205.142.94.0/23 20384 -205.142.96.0/22 33238 -205.142.109.0/24 54832 -205.142.110.0/24 20001 -205.142.112.0/22 2386 -205.142.116.0/22 36015 -205.142.140.0/22 394516 -205.142.148.0/22 7828 -205.142.164.0/22 26252 -205.142.176.0/22 20441 -205.142.190.0/24 17223 -205.142.196.0/22 17089 -205.142.216.0/24 33701 -205.142.217.0/24 32592 -205.142.218.0/23 32592 -205.142.224.0/24 26575 -205.142.227.0/24 26575 -205.142.232.0/22 8025 -205.142.240.0/23 3356 -205.142.242.0/24 3356 -205.142.243.0/24 3549 -205.142.248.0/22 33606 -205.142.252.0/23 7046 -205.142.254.0/24 7046 -205.143.0.0/21 32682 -205.143.32.0/21 22703 -205.143.40.0/23 63362 -205.143.44.0/23 27580 -205.143.46.0/24 53360 -205.143.47.0/24 393238 -205.143.48.0/21 39334 -205.143.64.0/24 38809 -205.143.65.0/24 55203 -205.143.66.0/24 55203 -205.143.67.0/24 46913 -205.143.68.0/24 46913 -205.143.69.0/24 55203 -205.143.70.0/23 46913 -205.143.72.0/22 393222 -205.143.76.0/23 393222 -205.143.78.0/24 393222 -205.143.79.0/24 13037 -205.143.120.0/21 22773 -205.143.129.0/24 10347 -205.143.136.0/21 396334 -205.143.144.0/22 7018 -205.143.152.0/24 31911 -205.143.154.0/23 31911 -205.143.156.0/24 31911 -205.143.157.0/24 701 -205.143.158.0/24 701 -205.143.159.0/24 209 -205.143.200.0/24 14450 -205.143.201.0/24 14451 -205.143.202.0/24 14450 -205.143.204.0/24 14450 -205.143.205.0/24 29913 -205.143.206.0/24 29913 -205.143.207.0/24 14451 -205.143.216.0/21 5078 -205.143.224.0/21 1798 -205.143.232.0/23 62983 -205.143.236.0/23 62983 -205.143.240.0/24 8103 -205.143.242.0/23 8103 -205.143.244.0/23 8103 -205.143.246.0/24 8103 -205.143.248.0/21 53598 -205.144.16.0/20 398022 -205.144.32.0/20 7341 -205.144.50.0/23 13919 -205.144.52.0/23 13919 -205.144.54.0/24 13919 -205.144.55.0/24 14566 -205.144.56.0/24 14566 -205.144.57.0/24 16983 -205.144.60.0/22 13919 -205.144.64.0/23 29954 -205.144.66.0/24 29954 -205.144.68.0/22 29954 -205.144.73.0/24 29954 -205.144.74.0/24 29954 -205.144.76.0/23 29954 -205.144.80.0/24 62732 -205.144.96.0/24 10753 -205.144.100.0/22 10753 -205.144.105.0/24 10753 -205.144.106.0/24 10753 -205.144.110.0/24 10753 -205.144.112.0/24 10718 -205.144.114.0/23 10718 -205.144.125.0/24 10718 -205.144.127.0/24 10718 -205.144.128.0/20 40619 -205.144.144.0/24 7018 -205.144.146.0/23 46895 -205.144.157.0/24 46895 -205.144.159.0/24 14207 -205.144.160.0/20 7296 -205.144.176.0/20 36092 -205.144.208.0/20 30165 -205.144.224.0/20 7086 -205.145.1.0/24 16758 -205.145.2.0/23 16758 -205.145.4.0/23 16758 -205.145.6.0/24 16758 -205.145.11.0/24 21886 -205.145.14.0/23 16758 -205.145.16.0/23 16758 -205.145.18.0/24 16758 -205.145.19.0/24 2828 -205.145.21.0/24 21886 -205.145.22.0/23 16758 -205.145.24.0/23 16758 -205.145.26.0/24 16758 -205.145.31.0/24 16758 -205.145.33.0/24 16758 -205.145.40.0/24 33544 -205.145.50.0/24 16758 -205.145.58.0/23 16758 -205.145.64.0/18 19510 -205.145.128.0/20 11115 -205.145.144.0/21 62819 -205.145.153.0/24 46344 -205.145.154.0/24 46352 -205.145.156.0/23 30172 -205.145.159.0/24 18962 -205.145.163.0/24 62958 -205.145.176.0/24 18757 -205.145.180.0/24 396323 -205.145.181.0/24 62958 -205.145.182.0/24 18757 -205.145.184.0/23 18757 -205.145.186.0/24 18757 -205.145.188.0/24 396323 -205.145.192.0/19 15106 -205.145.224.0/19 8103 -205.146.0.0/19 2914 -205.146.32.0/20 2914 -205.146.48.0/21 23102 -205.146.56.0/23 23102 -205.146.58.0/24 23102 -205.146.59.0/24 2914 -205.146.60.0/22 2914 -205.146.64.0/18 2914 -205.146.128.0/17 2914 -205.147.0.0/18 7397 -205.147.64.0/20 7385 -205.147.80.0/22 10753 -205.147.88.0/21 393676 -205.147.96.0/21 17439 -205.147.104.0/22 36236 -205.147.108.0/22 17439 -205.147.160.0/19 11951 -205.147.200.0/23 7029 -205.147.202.0/24 7349 -205.147.203.0/24 7029 -205.147.204.0/22 7029 -205.147.208.0/24 7349 -205.147.209.0/24 7029 -205.147.210.0/23 7029 -205.147.212.0/22 7029 -205.147.216.0/23 7029 -205.147.218.0/24 7349 -205.147.219.0/24 7029 -205.147.220.0/22 7029 -205.147.224.0/21 7029 -205.147.232.0/23 7029 -205.147.234.0/24 7029 -205.147.235.0/24 7349 -205.147.236.0/24 7029 -205.147.237.0/24 27344 -205.147.238.0/23 7029 -205.147.240.0/20 7029 -205.148.0.0/18 394417 -205.149.0.0/21 7235 -205.149.8.0/21 11046 -205.149.16.0/22 22097 -205.149.22.0/23 22097 -205.149.24.0/22 22097 -205.149.28.0/23 22097 -205.149.30.0/24 22097 -205.149.64.0/19 22192 -205.149.128.0/20 10453 -205.149.144.0/20 14371 -205.149.160.0/19 2914 -205.150.0.0/22 701 -205.150.4.0/24 11486 -205.150.5.0/24 701 -205.150.6.0/23 701 -205.150.8.0/21 701 -205.150.16.0/24 40676 -205.150.17.0/24 701 -205.150.18.0/23 701 -205.150.20.0/22 701 -205.150.24.0/21 701 -205.150.32.0/19 701 -205.150.64.0/19 701 -205.150.96.0/20 701 -205.150.112.0/24 16751 -205.150.113.0/24 701 -205.150.114.0/23 701 -205.150.116.0/22 701 -205.150.120.0/22 701 -205.150.124.0/24 36698 -205.150.125.0/24 701 -205.150.126.0/23 701 -205.150.128.0/20 701 -205.150.144.0/22 701 -205.150.148.0/22 11486 -205.150.152.0/21 701 -205.150.160.0/24 3371 -205.150.161.0/24 3378 -205.150.162.0/24 3371 -205.150.163.0/24 3378 -205.150.164.0/22 701 -205.150.168.0/21 701 -205.150.176.0/20 701 -205.150.192.0/18 701 -205.151.0.0/24 54451 -205.151.1.0/24 376 -205.151.2.0/23 376 -205.151.4.0/22 376 -205.151.16.0/24 30336 -205.151.17.0/24 852 -205.151.18.0/24 852 -205.151.43.0/24 11489 -205.151.44.0/24 11489 -205.151.45.0/24 376 -205.151.46.0/24 11290 -205.151.50.0/23 852 -205.151.54.0/24 3584 -205.151.55.0/24 5769 -205.151.56.0/24 16532 -205.151.61.0/24 11290 -205.151.62.0/23 11290 -205.151.64.0/22 11290 -205.151.68.0/23 11290 -205.151.70.0/23 376 -205.151.72.0/21 376 -205.151.83.0/24 22652 -205.151.103.0/24 13768 -205.151.108.0/22 10929 -205.151.112.0/24 376 -205.151.113.0/24 54445 -205.151.114.0/23 54649 -205.151.116.0/22 22639 -205.151.120.0/24 16532 -205.151.124.0/23 852 -205.151.126.0/24 22652 -205.151.127.0/24 21548 -205.151.162.0/23 21548 -205.151.168.0/24 22639 -205.151.192.0/22 4470 -205.151.196.0/23 4470 -205.151.198.0/24 11342 -205.151.199.0/24 4470 -205.151.200.0/24 4470 -205.151.201.0/24 11342 -205.151.202.0/23 4470 -205.151.204.0/22 4470 -205.151.208.0/23 30336 -205.151.210.0/23 394137 -205.151.212.0/23 54633 -205.151.222.0/23 5769 -205.151.226.0/24 30336 -205.151.227.0/24 852 -205.151.228.0/23 852 -205.151.230.0/24 852 -205.151.232.0/21 852 -205.151.240.0/22 852 -205.151.244.0/23 852 -205.151.246.0/24 852 -205.151.250.0/23 376 -205.151.252.0/23 376 -205.151.254.0/24 376 -205.151.255.0/24 14746 -205.152.0.0/19 6389 -205.152.32.0/20 6389 -205.152.48.0/23 6389 -205.152.50.0/24 6389 -205.152.51.0/24 2386 -205.152.52.0/22 6389 -205.152.56.0/21 6389 -205.152.64.0/21 6389 -205.152.72.0/24 8103 -205.152.73.0/24 6389 -205.152.74.0/23 6389 -205.152.76.0/22 6389 -205.152.80.0/22 6389 -205.152.84.0/24 17067 -205.152.85.0/24 6389 -205.152.86.0/23 6389 -205.152.88.0/21 6389 -205.152.96.0/19 6389 -205.152.128.0/20 6389 -205.152.144.0/21 6389 -205.152.152.0/22 6389 -205.152.156.0/24 6389 -205.152.157.0/24 33328 -205.152.158.0/23 33328 -205.152.160.0/21 6389 -205.152.168.0/22 6389 -205.152.172.0/23 6389 -205.152.174.0/24 6384 -205.152.175.0/24 6389 -205.152.176.0/20 6389 -205.152.192.0/19 6389 -205.152.224.0/21 6389 -205.152.232.0/22 6389 -205.152.236.0/23 6389 -205.152.238.0/24 22083 -205.152.239.0/24 6389 -205.152.240.0/20 6389 -205.153.8.0/22 209 -205.153.28.0/22 12082 -205.153.32.0/22 13760 -205.153.36.0/22 25755 -205.153.48.0/22 54355 -205.153.60.0/22 2711 -205.153.76.0/22 4306 -205.153.84.0/22 54986 -205.153.88.0/24 40886 -205.153.90.0/23 40886 -205.153.92.0/24 23003 -205.153.95.0/24 23003 -205.153.101.0/24 32988 -205.153.104.0/24 17044 -205.153.108.0/22 7792 -205.153.112.0/22 26263 -205.153.116.0/22 36363 -205.153.120.0/23 20384 -205.153.122.0/24 20384 -205.153.128.0/23 19857 -205.153.130.0/24 19857 -205.153.140.0/22 21852 -205.153.144.0/21 33363 -205.153.152.0/22 21769 -205.153.156.0/22 6492 -205.153.177.0/24 11486 -205.153.180.0/22 33714 -205.153.192.0/22 18566 -205.153.204.0/23 18772 -205.153.208.0/22 63475 -205.153.222.0/23 395932 -205.153.224.0/24 54532 -205.153.230.0/24 394076 -205.153.231.0/24 6461 -205.153.232.0/24 40588 -205.153.240.0/22 19 -205.153.244.0/22 22773 -205.153.248.0/22 13981 -205.153.252.0/24 17378 -205.154.0.0/21 2152 -205.154.8.0/24 2920 -205.154.9.0/24 2152 -205.154.10.0/23 2152 -205.154.12.0/22 2152 -205.154.16.0/22 2152 -205.154.20.0/24 2152 -205.154.21.0/24 2920 -205.154.22.0/23 2920 -205.154.24.0/23 2920 -205.154.26.0/23 2152 -205.154.28.0/23 2152 -205.154.30.0/24 2152 -205.154.31.0/24 2920 -205.154.32.0/21 2152 -205.154.40.0/23 2152 -205.154.42.0/23 2920 -205.154.44.0/24 2152 -205.154.45.0/24 2920 -205.154.46.0/23 2152 -205.154.48.0/20 2152 -205.154.64.0/18 2152 -205.154.128.0/19 2152 -205.154.160.0/21 2152 -205.154.168.0/22 2152 -205.154.172.0/23 2152 -205.154.174.0/23 2920 -205.154.176.0/21 2920 -205.154.184.0/21 2152 -205.154.192.0/19 2152 -205.154.224.0/20 2152 -205.154.240.0/21 2152 -205.154.248.0/24 63435 -205.154.249.0/24 2152 -205.154.250.0/24 2152 -205.154.251.0/24 46985 -205.154.252.0/22 2152 -205.155.0.0/19 14212 -205.155.32.0/19 2152 -205.155.64.0/24 2152 -205.155.65.0/24 257 -205.155.66.0/23 2152 -205.155.68.0/22 2152 -205.155.72.0/21 2152 -205.155.80.0/20 2152 -205.155.96.0/19 2152 -205.155.128.0/17 2152 -205.156.0.0/23 6629 -205.156.2.0/24 3477 -205.156.3.0/24 6629 -205.156.4.0/22 6629 -205.156.8.0/23 6629 -205.156.10.0/24 6629 -205.156.12.0/23 6629 -205.156.14.0/24 3477 -205.156.15.0/24 6629 -205.156.16.0/21 6629 -205.156.24.0/23 6629 -205.156.27.0/24 6629 -205.156.28.0/22 6629 -205.156.32.0/21 6629 -205.156.40.0/22 6629 -205.156.44.0/24 6629 -205.156.45.0/24 3477 -205.156.46.0/23 6629 -205.156.48.0/24 3477 -205.156.49.0/24 6629 -205.156.50.0/23 6629 -205.156.52.0/23 6629 -205.156.54.0/24 6629 -205.156.56.0/22 26100 -205.156.60.0/24 26100 -205.156.61.0/24 6629 -205.156.62.0/24 6629 -205.156.64.0/19 17161 -205.156.96.0/22 17161 -205.156.100.0/23 17161 -205.156.104.0/21 17161 -205.156.112.0/22 17161 -205.156.117.0/24 17161 -205.156.128.0/20 17161 -205.156.144.0/21 17161 -205.156.152.0/22 17161 -205.156.160.0/23 17161 -205.156.164.0/24 17161 -205.156.174.0/23 21874 -205.156.176.0/24 21874 -205.156.184.0/21 21874 -205.157.65.0/24 10753 -205.157.66.0/24 14898 -205.157.74.0/24 14898 -205.157.100.0/22 14898 -205.157.104.0/23 14898 -205.157.106.0/24 14898 -205.157.108.0/24 14898 -205.157.110.0/24 14898 -205.157.112.0/23 14898 -205.157.114.0/24 14898 -205.157.120.0/23 14898 -205.157.124.0/23 14898 -205.157.128.0/21 2914 -205.157.136.0/24 54121 -205.157.137.0/24 2914 -205.157.138.0/23 2914 -205.157.140.0/22 2914 -205.157.144.0/20 33548 -205.157.160.0/19 11963 -205.157.193.0/24 16410 -205.157.194.0/24 16410 -205.157.199.0/24 16410 -205.157.203.0/24 16410 -205.157.204.0/24 16410 -205.157.205.0/24 397004 -205.157.208.0/23 397004 -205.157.216.0/24 14618 -205.157.224.0/24 394926 -205.157.225.0/24 396065 -205.157.226.0/24 395104 -205.157.228.0/24 397738 -205.157.232.0/24 396138 -205.157.240.0/24 16410 -205.157.242.0/24 16410 -205.157.245.0/24 16410 -205.157.246.0/23 16410 -205.157.248.0/22 16410 -205.157.254.0/23 16410 -205.158.0.0/17 2828 -205.158.128.0/19 2828 -205.158.160.0/22 14311 -205.158.164.0/22 2828 -205.158.168.0/21 2828 -205.158.176.0/21 2828 -205.158.184.0/24 13649 -205.158.185.0/24 2828 -205.158.186.0/23 2828 -205.158.188.0/22 2828 -205.158.192.0/18 2828 -205.159.15.0/24 7018 -205.159.21.0/24 54004 -205.159.25.0/24 2386 -205.159.27.0/24 3734 -205.159.28.0/24 8047 -205.159.31.0/24 22773 -205.159.40.0/24 26385 -205.159.43.0/24 1616 -205.159.44.0/24 397556 -205.159.47.0/24 395553 -205.159.67.0/24 5693 -205.159.71.0/24 397791 -205.159.72.0/24 53814 -205.159.75.0/24 54330 -205.159.76.0/24 3257 -205.159.83.0/24 6653 -205.159.85.0/24 5026 -205.159.86.0/24 5026 -205.159.88.0/24 33288 -205.159.89.0/24 3724 -205.159.91.0/24 3724 -205.159.94.0/24 30113 -205.159.98.0/24 15305 -205.159.99.0/24 7018 -205.159.101.0/24 394064 -205.159.116.0/24 17184 -205.159.118.0/24 6223 -205.159.121.0/24 6528 -205.159.125.0/24 32350 -205.159.128.0/24 394968 -205.159.133.0/24 30333 -205.159.140.0/24 3561 -205.159.142.0/24 36128 -205.159.145.0/24 62642 -205.159.150.0/24 174 -205.159.151.0/24 7018 -205.159.154.0/24 393460 -205.159.178.0/24 396358 -205.159.182.0/24 6582 -205.159.188.0/24 11796 -205.159.189.0/24 18779 -205.159.194.0/24 6428 -205.159.195.0/24 36236 -205.159.223.0/24 18712 -205.159.237.0/24 8025 -205.159.239.0/24 6939 -205.159.243.0/24 40587 -205.159.248.0/24 16956 -205.159.249.0/24 11015 -205.159.250.0/24 54399 -205.159.253.0/24 31884 -205.160.0.0/22 1239 -205.160.4.0/23 1239 -205.160.6.0/24 19643 -205.160.7.0/24 1239 -205.160.8.0/22 1239 -205.160.12.0/24 1239 -205.160.13.0/24 1790 -205.160.14.0/23 1239 -205.160.16.0/20 1239 -205.160.32.0/19 1239 -205.160.64.0/19 1239 -205.160.96.0/21 5778 -205.160.104.0/22 1239 -205.160.108.0/23 1239 -205.160.110.0/23 30873 -205.160.112.0/20 1239 -205.160.128.0/19 1239 -205.160.160.0/21 1239 -205.160.168.0/23 4373 -205.160.170.0/24 4373 -205.160.171.0/24 1239 -205.160.172.0/24 18618 -205.160.173.0/24 1239 -205.160.174.0/23 1239 -205.160.176.0/20 2379 -205.160.192.0/24 2379 -205.160.193.0/24 32855 -205.160.194.0/23 32855 -205.160.196.0/23 32855 -205.160.198.0/24 6222 -205.160.199.0/24 32855 -205.160.200.0/22 1239 -205.160.204.0/24 1239 -205.160.205.0/24 25612 -205.160.206.0/23 1239 -205.160.208.0/20 1239 -205.160.224.0/21 1239 -205.160.232.0/24 1239 -205.160.233.0/24 11139 -205.160.234.0/23 1239 -205.160.236.0/22 1239 -205.160.240.0/24 2379 -205.160.241.0/24 12090 -205.160.242.0/23 2379 -205.160.244.0/22 2379 -205.160.248.0/24 12172 -205.160.249.0/24 2379 -205.160.250.0/23 2379 -205.160.252.0/22 2379 -205.161.0.0/21 1239 -205.161.8.0/22 1239 -205.161.12.0/23 1239 -205.161.14.0/23 9751 -205.161.16.0/20 14174 -205.161.32.0/19 40676 -205.161.64.0/19 1239 -205.161.96.0/20 1239 -205.161.112.0/21 1239 -205.161.120.0/22 1239 -205.161.124.0/23 32182 -205.161.126.0/23 1239 -205.161.128.0/19 1239 -205.161.160.0/20 1239 -205.161.176.0/21 1239 -205.161.184.0/22 1239 -205.161.188.0/24 10586 -205.161.189.0/24 1239 -205.161.190.0/23 1239 -205.161.192.0/21 1239 -205.161.200.0/22 1239 -205.161.204.0/24 1239 -205.161.205.0/24 18593 -205.161.206.0/23 1239 -205.161.208.0/20 1239 -205.161.224.0/22 2379 -205.161.228.0/24 2379 -205.161.229.0/24 209 -205.161.230.0/23 2379 -205.161.232.0/21 2379 -205.161.240.0/21 1239 -205.161.248.0/21 27288 -205.162.0.0/19 1239 -205.162.32.0/21 1239 -205.162.40.0/21 53866 -205.162.48.0/20 1239 -205.162.64.0/20 1239 -205.162.80.0/20 63252 -205.162.96.0/19 1239 -205.162.128.0/21 1239 -205.162.136.0/24 1239 -205.162.137.0/24 394360 -205.162.138.0/23 1239 -205.162.140.0/22 1239 -205.162.144.0/20 1239 -205.162.160.0/22 1239 -205.162.164.0/22 27288 -205.162.168.0/21 1239 -205.162.176.0/20 1239 -205.162.192.0/21 14921 -205.162.200.0/24 14921 -205.162.201.0/24 11404 -205.162.202.0/24 11404 -205.162.203.0/24 14921 -205.162.204.0/22 14921 -205.162.208.0/24 1239 -205.162.209.0/24 15065 -205.162.210.0/23 1239 -205.162.212.0/22 1239 -205.162.216.0/21 1239 -205.162.224.0/20 8025 -205.162.240.0/20 1239 -205.163.0.0/18 1239 -205.163.64.0/19 1239 -205.163.96.0/21 1239 -205.163.104.0/21 40676 -205.163.112.0/20 1239 -205.163.128.0/22 1239 -205.163.132.0/23 1239 -205.163.134.0/24 55139 -205.163.135.0/24 1239 -205.163.136.0/21 1239 -205.163.144.0/20 1239 -205.163.160.0/19 1239 -205.163.192.0/18 1239 -205.164.0.0/19 18779 -205.164.32.0/23 18779 -205.164.34.0/24 18779 -205.164.35.0/24 60311 -205.164.36.0/24 60311 -205.164.37.0/24 18779 -205.164.38.0/23 18779 -205.164.40.0/24 26481 -205.164.41.0/24 18779 -205.164.42.0/24 18779 -205.164.43.0/24 60311 -205.164.44.0/22 18779 -205.164.48.0/21 18779 -205.164.56.0/22 18779 -205.164.60.0/23 18779 -205.164.62.0/24 60311 -205.164.63.0/24 18779 -205.164.64.0/18 174 -205.164.128.0/17 174 -205.165.0.0/16 3354 -205.166.9.0/24 8057 -205.166.14.0/24 396090 -205.166.20.0/24 12042 -205.166.21.0/24 7046 -205.166.22.0/24 394419 -205.166.26.0/24 3724 -205.166.33.0/24 6629 -205.166.36.0/24 12152 -205.166.37.0/24 30692 -205.166.42.0/24 13536 -205.166.51.0/24 6079 -205.166.53.0/24 22747 -205.166.61.0/24 11590 -205.166.65.0/24 33555 -205.166.66.0/24 396121 -205.166.75.0/24 46887 -205.166.76.0/24 11278 -205.166.80.0/24 12244 -205.166.91.0/24 4565 -205.166.94.0/24 14361 -205.166.123.0/24 54419 -205.166.125.0/24 7029 -205.166.145.0/24 394784 -205.166.146.0/24 14536 -205.166.158.0/24 54410 -205.166.159.0/24 14363 -205.166.161.0/24 30187 -205.166.162.0/24 3356 -205.166.166.0/24 11277 -205.166.171.0/24 26845 -205.166.172.0/24 16980 -205.166.175.0/24 18874 -205.166.177.0/24 55819 -205.166.205.0/24 6360 -205.166.214.0/24 13649 -205.166.216.0/24 7332 -205.166.218.0/24 29915 -205.166.221.0/24 18818 -205.166.226.0/24 33302 -205.166.230.0/24 395447 -205.166.231.0/24 397135 -205.166.235.0/24 397251 -205.166.241.0/24 23496 -205.166.246.0/24 8166 -205.166.247.0/24 54447 -205.166.250.0/24 13645 -205.166.253.0/24 13768 -205.166.255.0/24 30587 -205.167.2.0/23 32885 -205.167.4.0/23 11404 -205.167.7.0/24 31328 -205.167.10.0/24 26916 -205.167.18.0/23 20442 -205.167.22.0/23 10753 -205.167.24.0/23 20033 -205.167.34.0/23 40844 -205.167.37.0/24 10355 -205.167.40.0/24 15580 -205.167.41.0/24 18581 -205.167.42.0/23 11327 -205.167.46.0/23 3734 -205.167.50.0/23 395315 -205.167.52.0/23 54986 -205.167.58.0/23 11427 -205.167.70.0/24 18581 -205.167.71.0/24 15580 -205.167.78.0/23 26151 -205.167.80.0/23 19261 -205.167.85.0/24 18445 -205.167.86.0/23 36184 -205.167.90.0/23 19280 -205.167.96.0/24 20203 -205.167.101.0/24 32787 -205.167.104.0/23 13825 -205.167.106.0/23 46846 -205.167.110.0/23 46137 -205.167.120.0/23 30688 -205.167.122.0/24 30369 -205.167.123.0/24 3549 -205.167.124.0/23 11979 -205.167.126.0/23 17099 -205.167.128.0/23 21712 -205.167.138.0/23 7795 -205.167.140.0/24 11486 -205.167.142.0/23 35894 -205.167.156.0/23 1798 -205.167.158.0/23 7725 -205.167.162.0/23 21947 -205.167.170.0/23 1427 -205.167.174.0/23 14265 -205.167.180.0/23 14736 -205.167.182.0/23 395982 -205.167.184.0/24 6181 -205.167.185.0/24 10796 -205.167.186.0/23 46575 -205.167.188.0/24 7046 -205.167.189.0/24 3549 -205.167.198.0/23 20479 -205.167.206.0/23 6389 -205.167.215.0/24 40041 -205.167.233.0/24 53901 -205.167.239.0/24 25960 -205.168.0.0/21 209 -205.168.8.0/22 209 -205.168.12.0/24 209 -205.168.13.0/24 63333 -205.168.14.0/23 209 -205.168.16.0/23 209 -205.168.18.0/24 209 -205.168.19.0/24 22273 -205.168.20.0/23 209 -205.168.22.0/24 209 -205.168.23.0/24 3910 -205.168.24.0/22 209 -205.168.28.0/23 209 -205.168.30.0/24 7818 -205.168.31.0/24 209 -205.168.32.0/21 209 -205.168.40.0/24 209 -205.168.41.0/24 26058 -205.168.42.0/23 209 -205.168.44.0/22 209 -205.168.48.0/23 209 -205.168.50.0/24 14230 -205.168.51.0/24 209 -205.168.52.0/22 209 -205.168.56.0/23 209 -205.168.58.0/24 54193 -205.168.59.0/24 209 -205.168.60.0/22 209 -205.168.64.0/19 209 -205.168.96.0/22 209 -205.168.100.0/23 209 -205.168.102.0/24 10835 -205.168.103.0/24 209 -205.168.104.0/21 209 -205.168.112.0/20 209 -205.168.128.0/19 209 -205.168.160.0/20 209 -205.168.176.0/22 209 -205.168.180.0/23 209 -205.168.182.0/24 32932 -205.168.183.0/24 209 -205.168.184.0/21 209 -205.168.192.0/19 209 -205.168.224.0/20 209 -205.168.240.0/21 209 -205.168.248.0/23 209 -205.168.250.0/24 209 -205.168.251.0/24 39984 -205.168.252.0/22 209 -205.169.0.0/18 209 -205.169.64.0/19 209 -205.169.96.0/21 209 -205.169.104.0/23 209 -205.169.106.0/24 209 -205.169.107.0/24 394459 -205.169.108.0/22 209 -205.169.112.0/21 209 -205.169.120.0/23 209 -205.169.122.0/24 209 -205.169.123.0/24 26959 -205.169.124.0/22 209 -205.169.128.0/17 209 -205.170.0.0/20 17207 -205.170.16.0/20 209 -205.170.32.0/20 209 -205.170.48.0/23 209 -205.170.50.0/24 209 -205.170.51.0/24 10835 -205.170.52.0/22 209 -205.170.56.0/21 209 -205.170.64.0/19 209 -205.170.96.0/21 209 -205.170.104.0/24 209 -205.170.105.0/24 3910 -205.170.106.0/23 209 -205.170.108.0/22 209 -205.170.112.0/20 209 -205.170.128.0/21 209 -205.170.136.0/23 209 -205.170.138.0/23 26959 -205.170.140.0/22 209 -205.170.144.0/20 209 -205.170.160.0/20 209 -205.170.176.0/21 209 -205.170.184.0/22 209 -205.170.188.0/23 209 -205.170.190.0/24 22561 -205.170.191.0/24 209 -205.170.192.0/21 209 -205.170.200.0/22 209 -205.170.204.0/23 209 -205.170.206.0/24 209 -205.170.207.0/24 18808 -205.170.208.0/20 209 -205.170.224.0/24 209 -205.170.225.0/24 32075 -205.170.226.0/23 209 -205.170.228.0/22 209 -205.170.232.0/23 209 -205.170.234.0/24 209 -205.170.235.0/24 23458 -205.170.236.0/22 209 -205.170.240.0/20 209 -205.171.0.0/16 209 -205.172.0.0/22 40300 -205.172.12.0/22 32509 -205.172.16.0/22 6534 -205.172.20.0/22 7015 -205.172.24.0/22 174 -205.172.43.0/24 7312 -205.172.45.0/24 47101 -205.172.48.0/23 2048 -205.172.52.0/23 7018 -205.172.54.0/24 397908 -205.172.55.0/24 7018 -205.172.68.0/22 40585 -205.172.72.0/21 18756 -205.172.80.0/20 18756 -205.172.96.0/21 18756 -205.172.104.0/22 18756 -205.172.116.0/24 13375 -205.172.118.0/24 13375 -205.172.119.0/24 64246 -205.172.120.0/21 26413 -205.172.133.0/24 23494 -205.172.134.0/24 23494 -205.172.136.0/22 7018 -205.172.145.0/24 13996 -205.172.147.0/24 18570 -205.172.164.0/22 88 -205.172.168.0/22 1929 -205.172.172.0/24 33363 -205.172.173.0/24 36295 -205.172.174.0/23 33363 -205.172.176.0/22 35916 -205.172.187.0/24 40588 -205.172.192.0/22 1436 -205.172.200.0/24 51964 -205.172.229.0/24 7018 -205.172.232.0/22 20385 -205.172.236.0/22 8103 -205.172.240.0/22 7153 -205.173.0.0/24 21633 -205.173.4.0/24 21633 -205.173.8.0/21 17270 -205.173.16.0/23 32139 -205.173.24.0/21 23050 -205.173.32.0/22 36548 -205.173.36.0/23 36548 -205.173.38.0/24 36548 -205.173.40.0/21 3734 -205.173.58.0/24 25993 -205.173.71.0/24 32443 -205.173.78.0/23 46353 -205.173.93.0/24 3655 -205.173.95.0/24 4366 -205.173.96.0/21 20289 -205.173.104.0/21 26394 -205.173.118.0/23 7018 -205.173.126.0/23 393972 -205.173.129.0/24 63284 -205.173.130.0/23 63284 -205.173.132.0/23 63284 -205.173.152.0/21 7015 -205.173.168.0/21 53296 -205.173.176.0/21 3599 -205.173.200.0/21 7046 -205.173.208.0/22 25850 -205.173.212.0/23 25850 -205.173.215.0/24 25850 -205.173.216.0/21 54355 -205.173.224.0/22 30175 -205.173.228.0/24 30175 -205.173.229.0/24 3549 -205.173.230.0/23 30175 -205.173.240.0/22 395220 -205.173.248.0/22 46471 -205.173.252.0/22 40470 -205.174.0.0/24 14630 -205.174.3.0/24 14630 -205.174.4.0/23 14630 -205.174.6.0/24 14630 -205.174.8.0/24 14630 -205.174.17.0/24 10753 -205.174.18.0/23 14925 -205.174.20.0/23 7046 -205.174.22.0/24 26034 -205.174.23.0/24 7046 -205.174.24.0/22 21679 -205.174.28.0/22 46522 -205.174.32.0/24 393784 -205.174.33.0/24 11016 -205.174.34.0/23 14799 -205.174.36.0/24 14799 -205.174.37.0/24 393784 -205.174.38.0/23 14799 -205.174.40.0/23 132720 -205.174.42.0/24 14799 -205.174.43.0/24 136492 -205.174.44.0/24 132720 -205.174.45.0/24 136492 -205.174.46.0/23 14799 -205.174.48.0/20 40204 -205.174.80.0/20 32755 -205.174.96.0/20 26801 -205.174.112.0/24 62705 -205.174.113.0/24 701 -205.174.114.0/23 62705 -205.174.116.0/22 62705 -205.174.120.0/21 62705 -205.174.143.0/24 7018 -205.174.160.0/20 3367 -205.174.179.0/24 25934 -205.174.180.0/23 25934 -205.174.182.0/24 25934 -205.174.184.0/24 25934 -205.174.186.0/23 25934 -205.174.188.0/23 25934 -205.174.208.0/20 54179 -205.174.240.0/20 3734 -205.175.96.0/21 73 -205.175.104.0/22 73 -205.175.108.0/22 22972 -205.175.112.0/20 73 -205.175.128.0/19 26748 -205.175.192.0/23 3715 -205.175.194.0/24 3715 -205.175.197.0/24 59248 -205.175.199.0/24 62377 -205.175.202.0/23 62377 -205.175.204.0/23 59248 -205.175.206.0/24 1239 -205.175.207.0/24 59248 -205.175.209.0/24 40677 -205.175.210.0/23 5555 -205.175.212.0/22 21949 -205.175.216.0/23 22925 -205.175.218.0/24 19352 -205.175.219.0/24 22925 -205.175.220.0/22 22925 -205.175.225.0/24 1341 -205.175.226.0/23 1341 -205.175.228.0/23 1341 -205.175.238.0/24 3549 -205.175.239.0/24 1239 -205.175.240.0/23 2386 -205.175.242.0/24 2386 -205.175.243.0/24 3549 -205.175.244.0/23 2386 -205.175.246.0/24 2386 -205.175.250.0/24 2386 -205.176.1.0/24 8103 -205.176.2.0/23 8103 -205.176.4.0/22 8103 -205.176.8.0/21 8103 -205.176.16.0/20 8103 -205.176.32.0/20 8103 -205.176.48.0/24 8103 -205.176.50.0/23 8103 -205.176.52.0/22 8103 -205.176.56.0/21 8103 -205.176.64.0/19 8103 -205.176.96.0/23 8103 -205.176.99.0/24 8103 -205.176.100.0/22 8103 -205.176.104.0/21 8103 -205.176.112.0/20 8103 -205.176.128.0/18 8103 -205.176.192.0/20 8103 -205.176.208.0/22 8103 -205.176.213.0/24 8103 -205.176.214.0/23 8103 -205.176.216.0/21 8103 -205.176.224.0/20 8103 -205.176.240.0/22 8103 -205.176.245.0/24 8103 -205.176.246.0/23 8103 -205.176.248.0/22 8103 -205.176.252.0/23 8103 -205.176.254.0/24 8103 -205.177.0.0/19 3491 -205.177.32.0/20 3491 -205.177.48.0/21 3491 -205.177.56.0/22 3491 -205.177.60.0/23 3491 -205.177.62.0/24 6621 -205.177.63.0/24 3491 -205.177.64.0/23 3491 -205.177.66.0/24 3491 -205.177.67.0/24 42475 -205.177.68.0/24 42475 -205.177.69.0/24 3491 -205.177.70.0/23 3491 -205.177.72.0/21 3491 -205.177.80.0/22 3491 -205.177.84.0/24 3491 -205.177.85.0/24 63199 -205.177.86.0/24 63199 -205.177.87.0/24 3491 -205.177.88.0/21 3491 -205.177.96.0/20 3491 -205.177.112.0/24 20263 -205.177.113.0/24 3491 -205.177.114.0/23 3491 -205.177.116.0/22 3491 -205.177.120.0/21 3491 -205.177.128.0/19 3491 -205.177.160.0/20 3491 -205.177.176.0/24 3491 -205.177.177.0/24 37146 -205.177.178.0/23 3491 -205.177.180.0/23 42003 -205.177.182.0/23 3491 -205.177.184.0/21 3491 -205.177.192.0/20 3491 -205.177.208.0/22 3491 -205.177.212.0/23 3491 -205.177.214.0/24 38385 -205.177.215.0/24 3491 -205.177.216.0/21 3491 -205.177.224.0/24 25938 -205.177.225.0/24 3491 -205.177.226.0/23 3491 -205.177.228.0/22 3491 -205.177.232.0/21 3491 -205.177.240.0/20 3491 -205.178.0.0/17 6079 -205.178.128.0/23 19871 -205.178.130.0/24 36476 -205.178.131.0/24 55002 -205.178.132.0/23 55002 -205.178.134.0/24 55002 -205.178.135.0/24 19871 -205.178.136.0/21 19871 -205.178.144.0/23 55002 -205.178.146.0/23 19871 -205.178.148.0/22 19871 -205.178.152.0/23 55002 -205.178.154.0/23 13910 -205.178.156.0/22 19871 -205.178.160.0/21 19871 -205.178.168.0/23 19871 -205.178.170.0/24 55002 -205.178.171.0/24 19871 -205.178.172.0/22 19871 -205.178.176.0/22 19871 -205.178.180.0/24 14441 -205.178.181.0/24 19871 -205.178.182.0/23 19871 -205.178.184.0/23 19871 -205.178.186.0/24 19871 -205.178.187.0/24 55002 -205.178.188.0/24 19871 -205.178.189.0/24 55002 -205.178.190.0/23 19871 -205.178.192.0/18 8148 -205.179.0.0/21 4565 -205.179.8.0/23 18566 -205.179.10.0/23 4565 -205.179.12.0/22 4565 -205.179.16.0/23 4565 -205.179.18.0/23 18566 -205.179.20.0/22 4565 -205.179.24.0/23 4565 -205.179.26.0/23 18566 -205.179.28.0/23 18566 -205.179.30.0/23 4565 -205.179.32.0/23 4565 -205.179.34.0/23 18566 -205.179.36.0/22 4565 -205.179.40.0/21 4565 -205.179.48.0/20 4565 -205.179.64.0/20 4565 -205.179.80.0/22 4565 -205.179.84.0/23 4565 -205.179.86.0/23 18566 -205.179.88.0/21 4565 -205.179.96.0/20 4565 -205.179.112.0/21 4565 -205.179.120.0/23 4565 -205.179.122.0/23 18566 -205.179.124.0/22 4565 -205.179.128.0/20 4565 -205.179.144.0/21 4565 -205.179.152.0/23 18566 -205.179.154.0/23 4565 -205.179.156.0/22 4565 -205.179.160.0/23 18566 -205.179.162.0/23 4565 -205.179.164.0/22 4565 -205.179.168.0/22 4565 -205.179.172.0/23 18566 -205.179.174.0/23 4565 -205.179.176.0/21 4565 -205.179.184.0/22 4565 -205.179.188.0/23 18566 -205.179.190.0/23 4565 -205.179.192.0/19 4565 -205.179.224.0/23 18566 -205.179.226.0/23 4565 -205.179.228.0/23 4565 -205.179.230.0/23 18566 -205.179.232.0/21 4565 -205.179.240.0/21 4565 -205.179.248.0/23 18566 -205.179.250.0/23 4565 -205.179.252.0/22 4565 -205.180.0.0/21 3356 -205.180.8.0/22 3356 -205.180.12.0/23 3356 -205.180.14.0/24 3356 -205.180.15.0/24 7914 -205.180.16.0/20 3356 -205.180.32.0/19 3356 -205.180.64.0/20 3356 -205.180.80.0/22 3356 -205.180.84.0/24 3356 -205.180.85.0/24 25751 -205.180.86.0/23 25751 -205.180.88.0/21 3356 -205.180.96.0/19 3356 -205.180.128.0/19 3356 -205.180.160.0/21 3356 -205.180.168.0/22 3356 -205.180.172.0/23 3356 -205.180.174.0/24 3356 -205.180.175.0/24 714 -205.180.176.0/21 3356 -205.180.184.0/22 3356 -205.180.188.0/23 3356 -205.180.190.0/24 2164 -205.180.191.0/24 3356 -205.180.192.0/18 3356 -205.181.0.0/18 3356 -205.181.64.0/21 3356 -205.181.72.0/24 3738 -205.181.73.0/24 3356 -205.181.74.0/23 3356 -205.181.76.0/22 3356 -205.181.80.0/20 3356 -205.181.96.0/22 3356 -205.181.100.0/23 3356 -205.181.102.0/24 26478 -205.181.103.0/24 3356 -205.181.104.0/21 3356 -205.181.112.0/20 3356 -205.181.128.0/18 3356 -205.181.192.0/19 3356 -205.181.224.0/20 3356 -205.181.240.0/24 3738 -205.181.241.0/24 3356 -205.181.242.0/24 3738 -205.181.243.0/24 3356 -205.181.244.0/22 3356 -205.181.248.0/21 3356 -205.182.0.0/16 3356 -205.183.0.0/17 3356 -205.183.128.0/18 3356 -205.183.192.0/19 3356 -205.183.224.0/20 3356 -205.183.240.0/21 3356 -205.183.248.0/22 3356 -205.183.252.0/23 3356 -205.183.254.0/24 3356 -205.183.255.0/24 27495 -205.184.48.0/20 7029 -205.184.64.0/19 7029 -205.184.208.0/20 7029 -205.184.224.0/20 7029 -205.185.0.0/21 46231 -205.185.8.0/22 46231 -205.185.12.0/24 19112 -205.185.13.0/24 46231 -205.185.14.0/23 46231 -205.185.16.0/20 7029 -205.185.32.0/19 7029 -205.185.64.0/19 6594 -205.185.96.0/20 395846 -205.185.112.0/20 53667 -205.185.128.0/19 40328 -205.185.160.0/19 7029 -205.185.192.0/23 12989 -205.185.194.0/24 32590 -205.185.195.0/24 26769 -205.185.196.0/22 12989 -205.185.200.0/22 11588 -205.185.204.0/23 26769 -205.185.206.0/24 12989 -205.185.208.0/24 20446 -205.185.209.0/24 12989 -205.185.212.0/24 12989 -205.185.214.0/23 12989 -205.185.216.0/24 20446 -205.185.217.0/24 12989 -205.185.218.0/23 12989 -205.185.220.0/22 12989 -205.185.224.0/20 19006 -205.185.240.0/20 7029 -205.186.0.0/19 7029 -205.186.32.0/19 2722 -205.186.64.0/18 46339 -205.186.128.0/18 31815 -205.186.192.0/20 7029 -205.186.208.0/20 14265 -205.186.224.0/19 2721 -205.187.0.0/19 7029 -205.187.33.0/24 226 -205.187.48.0/20 7029 -205.187.64.0/20 7029 -205.187.96.0/19 7029 -205.187.160.0/20 7029 -205.189.0.0/24 54372 -205.189.1.0/24 823 -205.189.2.0/23 32250 -205.189.5.0/24 806 -205.189.6.0/23 806 -205.189.8.0/22 806 -205.189.16.0/20 31782 -205.189.32.0/24 6509 -205.189.33.0/24 53904 -205.189.35.0/24 54332 -205.189.36.0/23 393898 -205.189.38.0/24 22491 -205.189.40.0/24 393845 -205.189.41.0/24 46525 -205.189.42.0/24 35964 -205.189.44.0/24 394238 -205.189.47.0/24 812 -205.189.48.0/23 23252 -205.189.51.0/24 3848 -205.189.56.0/22 30045 -205.189.68.0/24 36493 -205.189.76.0/24 36493 -205.189.88.0/24 812 -205.189.92.0/24 577 -205.189.93.0/24 12188 -205.189.94.0/23 23498 -205.189.96.0/24 23498 -205.189.99.0/24 32170 -205.189.102.0/23 21893 -205.189.117.0/24 393845 -205.189.134.0/24 54352 -205.189.135.0/24 14843 -205.189.139.0/24 30528 -205.189.141.0/24 20139 -205.189.149.0/24 577 -205.189.151.0/24 6407 -205.189.152.0/24 6407 -205.189.158.0/24 812 -205.189.162.0/23 23498 -205.189.164.0/22 23498 -205.189.168.0/21 23498 -205.189.176.0/20 23498 -205.189.192.0/22 23498 -205.189.196.0/24 23498 -205.189.200.0/23 54362 -205.189.202.0/24 53625 -205.189.205.0/24 394554 -205.189.208.0/23 30176 -205.189.240.0/21 10329 -205.189.255.0/24 30618 -205.191.40.0/21 19647 -205.191.171.0/24 25886 -205.191.194.0/24 6900 -205.191.208.0/24 7657 -205.193.0.0/24 2675 -205.193.1.0/24 2665 -205.193.2.0/24 2675 -205.193.3.0/24 2665 -205.193.4.0/24 2675 -205.193.5.0/24 2665 -205.193.6.0/23 2665 -205.193.8.0/22 2675 -205.193.12.0/24 2665 -205.193.13.0/24 2675 -205.193.14.0/23 2675 -205.193.16.0/20 2675 -205.193.32.0/22 2675 -205.193.36.0/23 2665 -205.193.38.0/24 2675 -205.193.39.0/24 2665 -205.193.40.0/24 2665 -205.193.41.0/24 2675 -205.193.42.0/24 2665 -205.193.43.0/24 2675 -205.193.44.0/23 2665 -205.193.46.0/23 2675 -205.193.48.0/23 2675 -205.193.50.0/23 2665 -205.193.52.0/22 2675 -205.193.56.0/22 2675 -205.193.60.0/23 2665 -205.193.62.0/24 2675 -205.193.63.0/24 2665 -205.193.64.0/24 2665 -205.193.65.0/24 2675 -205.193.66.0/24 2675 -205.193.67.0/24 2665 -205.193.68.0/22 2675 -205.193.72.0/24 2665 -205.193.73.0/24 2675 -205.193.74.0/23 2675 -205.193.76.0/23 2675 -205.193.78.0/24 2665 -205.193.79.0/24 2675 -205.193.80.0/24 2675 -205.193.81.0/24 2665 -205.193.82.0/24 2665 -205.193.83.0/24 2675 -205.193.84.0/24 2675 -205.193.85.0/24 2653 -205.193.86.0/24 2665 -205.193.87.0/24 2675 -205.193.88.0/23 2675 -205.193.90.0/24 2675 -205.193.91.0/24 2665 -205.193.92.0/24 2675 -205.193.93.0/24 2665 -205.193.94.0/24 2665 -205.193.95.0/24 2675 -205.193.96.0/24 11079 -205.193.97.0/24 2665 -205.193.98.0/24 2665 -205.193.99.0/24 2675 -205.193.100.0/24 2675 -205.193.101.0/24 2665 -205.193.102.0/24 2675 -205.193.103.0/24 2665 -205.193.104.0/24 2675 -205.193.105.0/24 2665 -205.193.106.0/24 2675 -205.193.107.0/24 2665 -205.193.108.0/24 2675 -205.193.109.0/24 2665 -205.193.110.0/23 2675 -205.193.112.0/24 2653 -205.193.113.0/24 2675 -205.193.114.0/24 2653 -205.193.115.0/24 11079 -205.193.116.0/22 2665 -205.193.120.0/24 2653 -205.193.121.0/24 2675 -205.193.122.0/23 2665 -205.193.124.0/23 2665 -205.193.126.0/23 2675 -205.193.128.0/24 2665 -205.193.129.0/24 2675 -205.193.130.0/23 2675 -205.193.132.0/22 2675 -205.193.136.0/23 2675 -205.193.138.0/23 2665 -205.193.140.0/22 2675 -205.193.144.0/24 2665 -205.193.145.0/24 2675 -205.193.146.0/23 2665 -205.193.148.0/24 2665 -205.193.149.0/24 2653 -205.193.150.0/24 2665 -205.193.151.0/24 2675 -205.193.152.0/24 2665 -205.193.153.0/24 2675 -205.193.154.0/23 2675 -205.193.156.0/23 2653 -205.193.158.0/24 2665 -205.193.159.0/24 2675 -205.193.160.0/23 2675 -205.193.162.0/24 2675 -205.193.163.0/24 2665 -205.193.164.0/24 2665 -205.193.165.0/24 2675 -205.193.166.0/24 2665 -205.193.167.0/24 2653 -205.193.168.0/24 2665 -205.193.169.0/24 2675 -205.193.170.0/24 2665 -205.193.171.0/24 2675 -205.193.172.0/23 2665 -205.193.174.0/24 2665 -205.193.175.0/24 2675 -205.193.176.0/24 2675 -205.193.177.0/24 2653 -205.193.178.0/23 2675 -205.193.180.0/24 2665 -205.193.181.0/24 2675 -205.193.182.0/23 2665 -205.193.184.0/23 2675 -205.193.186.0/24 2675 -205.193.187.0/24 2665 -205.193.188.0/24 2665 -205.193.189.0/24 2675 -205.193.190.0/23 2665 -205.193.192.0/24 2665 -205.193.193.0/24 2675 -205.193.194.0/23 2675 -205.193.196.0/23 2675 -205.193.198.0/23 2665 -205.193.200.0/24 2665 -205.193.201.0/24 2675 -205.193.202.0/24 2675 -205.193.203.0/24 2665 -205.193.204.0/24 2653 -205.193.205.0/24 2675 -205.193.206.0/24 2653 -205.193.207.0/24 2675 -205.193.208.0/23 2653 -205.193.210.0/24 2665 -205.193.211.0/24 2675 -205.193.212.0/22 2665 -205.193.216.0/23 2665 -205.193.218.0/24 2665 -205.193.219.0/24 2675 -205.193.220.0/24 2665 -205.193.221.0/24 2675 -205.193.222.0/23 2665 -205.193.224.0/22 2665 -205.193.228.0/23 2665 -205.193.230.0/24 2665 -205.193.231.0/24 2675 -205.193.232.0/24 2665 -205.193.233.0/24 2675 -205.193.234.0/23 2665 -205.193.236.0/24 2665 -205.193.237.0/24 2675 -205.193.238.0/23 2675 -205.193.240.0/20 2675 -205.194.7.0/24 2665 -205.194.20.0/23 2665 -205.194.25.0/24 2665 -205.194.26.0/23 2682 -205.194.30.0/23 2682 -205.194.32.0/23 2682 -205.194.124.0/24 2665 -205.194.127.0/24 2665 -205.196.0.0/24 36776 -205.196.1.0/24 397558 -205.196.2.0/23 11124 -205.196.4.0/24 4902 -205.196.5.0/24 7784 -205.196.6.0/24 32590 -205.196.12.0/23 54391 -205.196.15.0/24 11874 -205.196.16.0/21 46562 -205.196.24.0/24 18478 -205.196.26.0/24 18478 -205.196.50.0/24 54409 -205.196.63.0/24 53337 -205.196.64.0/24 26977 -205.196.66.0/24 7029 -205.196.70.0/24 53890 -205.196.77.0/24 54424 -205.196.78.0/24 4182 -205.196.80.0/22 33724 -205.196.84.0/22 29748 -205.196.88.0/21 29748 -205.196.117.0/24 18629 -205.196.118.0/23 15248 -205.196.120.0/22 46179 -205.196.124.0/22 36162 -205.196.128.0/20 7029 -205.196.144.0/23 7029 -205.196.146.0/24 16842 -205.196.147.0/24 2886 -205.196.148.0/22 7029 -205.196.152.0/22 7029 -205.196.156.0/23 7029 -205.196.158.0/24 33393 -205.196.159.0/24 7029 -205.196.166.0/23 20326 -205.196.168.0/21 20340 -205.196.176.0/22 22442 -205.196.180.0/24 22442 -205.196.181.0/24 394437 -205.196.182.0/24 394437 -205.196.183.0/24 22442 -205.196.184.0/22 22442 -205.196.188.0/23 22442 -205.196.190.0/24 394437 -205.196.191.0/24 55007 -205.196.201.0/24 54293 -205.196.202.0/23 53973 -205.196.206.0/23 15354 -205.196.208.0/20 26347 -205.196.224.0/19 25712 -205.197.0.0/18 2828 -205.197.64.0/19 2828 -205.197.96.0/20 2828 -205.197.112.0/21 2828 -205.197.120.0/22 2828 -205.197.124.0/24 18821 -205.197.125.0/24 2828 -205.197.126.0/23 2828 -205.197.128.0/20 2828 -205.197.144.0/24 2828 -205.197.145.0/24 26997 -205.197.146.0/23 2828 -205.197.148.0/22 2828 -205.197.152.0/21 2828 -205.197.160.0/19 2828 -205.197.192.0/21 54396 -205.197.200.0/21 2828 -205.197.208.0/20 36103 -205.197.224.0/19 2828 -205.198.0.0/19 133847 -205.198.32.0/20 174 -205.198.48.0/20 133613 -205.198.64.0/18 174 -205.198.128.0/17 174 -205.199.0.0/16 174 -205.200.0.0/18 7122 -205.200.64.0/20 7122 -205.200.80.0/21 7122 -205.200.88.0/22 7122 -205.200.92.0/23 7122 -205.200.94.0/24 396870 -205.200.95.0/24 7122 -205.200.96.0/24 7122 -205.200.97.0/24 10965 -205.200.98.0/23 7122 -205.200.100.0/22 7122 -205.200.104.0/21 7122 -205.200.112.0/21 7122 -205.200.120.0/22 7122 -205.200.124.0/24 7122 -205.200.125.0/24 10965 -205.200.126.0/23 7122 -205.200.128.0/19 7122 -205.200.160.0/20 7122 -205.200.176.0/21 7122 -205.200.184.0/22 7122 -205.200.188.0/23 7122 -205.200.190.0/24 394422 -205.200.191.0/24 7122 -205.200.192.0/18 7122 -205.201.0.0/21 133772 -205.201.8.0/23 133772 -205.201.12.0/22 139739 -205.201.16.0/21 395354 -205.201.24.0/22 395247 -205.201.28.0/23 395301 -205.201.30.0/23 55254 -205.201.32.0/21 26253 -205.201.40.0/22 3549 -205.201.44.0/24 3549 -205.201.45.0/24 16509 -205.201.46.0/23 3549 -205.201.48.0/23 36243 -205.201.50.0/23 17043 -205.201.52.0/23 11191 -205.201.54.0/24 11821 -205.201.55.0/24 203435 -205.201.56.0/24 15129 -205.201.57.0/24 7029 -205.201.58.0/24 395905 -205.201.59.0/24 395827 -205.201.60.0/24 22147 -205.201.61.0/24 33496 -205.201.62.0/24 22697 -205.201.63.0/24 395823 -205.201.64.0/22 19108 -205.201.68.0/23 19108 -205.201.70.0/23 21615 -205.201.72.0/21 19108 -205.201.80.0/23 19108 -205.201.82.0/24 21615 -205.201.83.0/24 19108 -205.201.84.0/22 19108 -205.201.88.0/21 19108 -205.201.96.0/21 19108 -205.201.104.0/22 19108 -205.201.108.0/24 21615 -205.201.109.0/24 19108 -205.201.110.0/24 19108 -205.201.111.0/24 7018 -205.201.112.0/22 19108 -205.201.116.0/23 19108 -205.201.118.0/24 19108 -205.201.119.0/24 21615 -205.201.120.0/21 19108 -205.201.128.0/21 14782 -205.201.136.0/23 14782 -205.201.138.0/24 36351 -205.201.139.0/24 14782 -205.201.140.0/22 14782 -205.201.144.0/20 21889 -205.201.160.0/23 3257 -205.201.162.0/24 3257 -205.201.163.0/24 18990 -205.201.164.0/24 3257 -205.201.165.0/24 18990 -205.201.166.0/23 3257 -205.201.168.0/22 3257 -205.201.172.0/23 18990 -205.201.174.0/24 18990 -205.201.175.0/24 3257 -205.201.176.0/20 18990 -205.201.192.0/23 6653 -205.201.194.0/24 6653 -205.201.195.0/24 23042 -205.201.196.0/22 6653 -205.201.200.0/21 6653 -205.201.208.0/20 6653 -205.201.224.0/20 7314 -205.201.240.0/21 22925 -205.201.248.0/23 22925 -205.201.250.0/24 22835 -205.201.251.0/24 22925 -205.201.252.0/23 22925 -205.201.254.0/24 22925 -205.201.255.0/24 14072 -205.202.0.0/16 11714 -205.203.34.0/24 20467 -205.203.38.0/24 20467 -205.203.44.0/24 20467 -205.203.52.0/24 20467 -205.203.58.0/24 20467 -205.203.60.0/24 20467 -205.203.63.0/24 20467 -205.203.64.0/21 13567 -205.203.72.0/23 13567 -205.203.74.0/23 137504 -205.203.76.0/22 13567 -205.203.80.0/20 13567 -205.203.99.0/24 15951 -205.203.100.0/23 7105 -205.203.108.0/23 7105 -205.203.110.0/24 10753 -205.203.116.0/24 7105 -205.203.117.0/24 15951 -205.203.120.0/24 15951 -205.203.128.0/21 7105 -205.203.136.0/23 7105 -205.203.139.0/24 7105 -205.203.140.0/23 7105 -205.203.143.0/24 7105 -205.203.144.0/21 7105 -205.203.152.0/23 7105 -205.203.154.0/24 7105 -205.203.160.0/24 26314 -205.203.169.0/24 26314 -205.203.170.0/24 26314 -205.203.176.0/20 26314 -205.203.201.0/24 20473 -205.204.1.0/24 36490 -205.204.2.0/23 36490 -205.204.5.0/24 36490 -205.204.12.0/24 53711 -205.204.16.0/20 23314 -205.204.32.0/20 13415 -205.204.48.0/20 19653 -205.204.64.0/21 10929 -205.204.72.0/22 10929 -205.204.76.0/24 46874 -205.204.77.0/24 10929 -205.204.78.0/23 10929 -205.204.80.0/20 10929 -205.204.96.0/21 45102 -205.204.104.0/22 45102 -205.204.108.0/23 45102 -205.204.110.0/24 45102 -205.204.111.0/24 1273 -205.204.112.0/20 45102 -205.204.128.0/17 10921 -205.205.0.0/20 701 -205.205.16.0/22 701 -205.205.20.0/23 701 -205.205.22.0/24 22964 -205.205.23.0/24 701 -205.205.24.0/21 701 -205.205.32.0/22 701 -205.205.36.0/24 22964 -205.205.37.0/24 701 -205.205.38.0/23 701 -205.205.40.0/21 701 -205.205.48.0/21 701 -205.205.56.0/22 701 -205.205.60.0/23 701 -205.205.62.0/24 17397 -205.205.63.0/24 701 -205.205.64.0/22 701 -205.205.68.0/24 701 -205.205.69.0/24 22964 -205.205.70.0/24 701 -205.205.71.0/24 17397 -205.205.72.0/24 22964 -205.205.73.0/24 701 -205.205.74.0/24 22964 -205.205.75.0/24 701 -205.205.76.0/23 701 -205.205.78.0/24 701 -205.205.79.0/24 14112 -205.205.80.0/22 701 -205.205.84.0/23 701 -205.205.86.0/24 22964 -205.205.87.0/24 701 -205.205.88.0/21 701 -205.205.96.0/21 701 -205.205.104.0/23 701 -205.205.106.0/24 701 -205.205.107.0/24 22964 -205.205.108.0/22 701 -205.205.112.0/24 22964 -205.205.113.0/24 701 -205.205.114.0/23 701 -205.205.116.0/22 701 -205.205.120.0/21 701 -205.205.128.0/22 701 -205.205.132.0/24 701 -205.205.133.0/24 22964 -205.205.134.0/24 22964 -205.205.135.0/24 701 -205.205.136.0/21 701 -205.205.144.0/23 701 -205.205.146.0/24 701 -205.205.147.0/24 17397 -205.205.148.0/22 701 -205.205.152.0/21 701 -205.205.160.0/21 701 -205.205.168.0/22 701 -205.205.172.0/23 701 -205.205.174.0/24 701 -205.205.175.0/24 32613 -205.205.176.0/23 701 -205.205.178.0/24 701 -205.205.179.0/24 32613 -205.205.180.0/22 701 -205.205.184.0/21 701 -205.205.192.0/20 701 -205.205.208.0/23 701 -205.205.210.0/23 22964 -205.205.212.0/22 701 -205.205.216.0/24 32613 -205.205.217.0/24 701 -205.205.218.0/23 701 -205.205.220.0/22 701 -205.205.224.0/21 701 -205.205.232.0/24 22705 -205.205.233.0/24 701 -205.205.234.0/23 701 -205.205.236.0/24 701 -205.205.237.0/24 30180 -205.205.238.0/23 701 -205.205.240.0/20 701 -205.206.0.0/16 852 -205.207.0.0/24 393347 -205.207.26.0/24 393457 -205.207.27.0/24 63018 -205.207.28.0/24 54184 -205.207.65.0/24 7311 -205.207.66.0/24 30496 -205.207.69.0/24 174 -205.207.71.0/24 1604 -205.207.78.0/23 3848 -205.207.80.0/22 3848 -205.207.84.0/24 3848 -205.207.88.0/23 6407 -205.207.90.0/24 6407 -205.207.95.0/24 40763 -205.207.98.0/24 812 -205.207.100.0/22 63060 -205.207.104.0/22 40444 -205.207.108.0/23 54496 -205.207.115.0/24 396126 -205.207.120.0/21 21570 -205.207.128.0/23 26321 -205.207.133.0/24 19752 -205.207.134.0/24 62900 -205.207.141.0/24 54095 -205.207.142.0/24 394367 -205.207.144.0/23 19900 -205.207.146.0/23 393845 -205.207.148.0/23 30261 -205.207.150.0/24 63018 -205.207.154.0/24 53539 -205.207.155.0/24 715 -205.207.156.0/23 46779 -205.207.159.0/24 46779 -205.207.160.0/21 21570 -205.207.168.0/23 21570 -205.207.170.0/23 174 -205.207.175.0/24 812 -205.207.178.0/24 54307 -205.207.179.0/24 33007 -205.207.180.0/24 812 -205.207.184.0/23 5690 -205.207.189.0/24 11700 -205.207.190.0/23 11700 -205.207.192.0/21 11700 -205.207.200.0/22 11700 -205.207.205.0/24 5645 -205.207.214.0/24 7046 -205.207.216.0/23 577 -205.207.219.0/24 577 -205.207.220.0/23 577 -205.207.223.0/24 855 -205.207.224.0/24 12212 -205.207.226.0/24 20274 -205.207.232.0/24 23498 -205.207.236.0/24 23498 -205.207.237.0/24 577 -205.207.255.0/24 11051 -205.208.0.0/17 160 -205.208.128.0/22 14383 -205.208.134.0/24 30568 -205.208.152.0/21 14383 -205.208.160.0/22 30568 -205.208.226.0/24 14383 -205.209.1.0/24 6407 -205.209.2.0/23 6327 -205.209.7.0/24 14332 -205.209.10.0/23 54461 -205.209.12.0/22 32490 -205.209.16.0/21 394073 -205.209.24.0/21 394065 -205.209.32.0/19 29863 -205.209.64.0/19 5760 -205.209.96.0/19 19318 -205.209.128.0/24 23338 -205.209.129.0/24 17213 -205.209.130.0/23 23338 -205.209.132.0/23 23338 -205.209.134.0/24 17213 -205.209.135.0/24 23338 -205.209.136.0/21 23338 -205.209.144.0/20 23338 -205.209.160.0/19 23338 -205.209.193.0/24 17025 -205.209.195.0/24 46887 -205.209.196.0/24 46887 -205.209.224.0/19 13693 -205.210.0.0/24 22657 -205.210.7.0/24 393845 -205.210.17.0/24 396367 -205.210.20.0/22 54755 -205.210.27.0/24 23034 -205.210.30.0/23 21992 -205.210.32.0/22 21992 -205.210.40.0/24 11666 -205.210.42.0/24 16686 -205.210.43.0/24 54587 -205.210.47.0/24 23498 -205.210.52.0/23 23252 -205.210.64.0/22 3356 -205.210.68.0/23 3356 -205.210.85.0/24 812 -205.210.86.0/24 14472 -205.210.87.0/24 812 -205.210.88.0/22 812 -205.210.92.0/24 812 -205.210.94.0/23 812 -205.210.104.0/24 6407 -205.210.107.0/24 62900 -205.210.128.0/24 30045 -205.210.132.0/23 32564 -205.210.140.0/24 23498 -205.210.141.0/24 11647 -205.210.142.0/24 577 -205.210.143.0/24 812 -205.210.145.0/24 22130 -205.210.146.0/24 14843 -205.210.148.0/24 15290 -205.210.150.0/24 15290 -205.210.156.0/23 7794 -205.210.158.0/23 577 -205.210.162.0/24 30147 -205.210.164.0/23 9009 -205.210.176.0/22 21813 -205.210.180.0/22 21992 -205.210.186.0/23 54312 -205.210.188.0/22 13438 -205.210.217.0/24 13441 -205.210.218.0/24 13441 -205.210.222.0/23 13441 -205.210.225.0/24 15290 -205.210.228.0/22 174 -205.210.234.0/24 54231 -205.210.236.0/22 21813 -205.210.240.0/23 21813 -205.210.246.0/24 812 -205.210.248.0/24 13649 -205.210.252.0/23 53829 -205.210.254.0/24 53829 -205.210.255.0/24 32796 -205.211.0.0/24 40372 -205.211.2.0/24 32817 -205.211.8.0/23 10388 -205.211.11.0/24 812 -205.211.16.0/21 33389 -205.211.24.0/23 54525 -205.211.26.0/23 812 -205.211.28.0/22 812 -205.211.48.0/20 812 -205.211.64.0/21 812 -205.211.72.0/22 812 -205.211.76.0/23 812 -205.211.78.0/24 812 -205.211.88.0/23 11700 -205.211.91.0/24 29716 -205.211.94.0/23 549 -205.211.96.0/20 17353 -205.211.112.0/24 63359 -205.211.113.0/24 394567 -205.211.114.0/23 812 -205.211.116.0/22 17353 -205.211.120.0/22 17353 -205.211.124.0/24 17353 -205.211.125.0/24 394567 -205.211.126.0/23 394567 -205.211.130.0/23 13768 -205.211.132.0/23 806 -205.211.134.0/24 806 -205.211.136.0/24 21552 -205.211.140.0/22 819 -205.211.144.0/23 819 -205.211.148.0/24 54093 -205.211.156.0/22 32157 -205.211.160.0/24 30045 -205.211.162.0/24 33300 -205.211.163.0/24 54397 -205.211.164.0/23 11647 -205.211.166.0/23 33044 -205.211.168.0/23 54070 -205.211.178.0/24 16751 -205.211.180.0/22 32157 -205.211.192.0/20 20299 -205.211.218.0/23 20299 -205.211.220.0/23 20299 -205.211.224.0/24 20299 -205.211.226.0/23 27773 -205.211.228.0/24 27773 -205.211.233.0/24 20299 -205.211.234.0/24 20299 -205.211.235.0/24 27773 -205.211.243.0/24 27773 -205.211.244.0/22 20299 -205.211.248.0/21 20299 -205.212.0.0/16 2914 -205.213.0.0/23 2381 -205.213.2.0/24 2381 -205.213.3.0/24 395963 -205.213.4.0/22 2381 -205.213.8.0/21 2381 -205.213.16.0/24 2381 -205.213.17.0/24 36723 -205.213.18.0/23 2381 -205.213.20.0/22 2381 -205.213.24.0/23 2381 -205.213.26.0/23 40347 -205.213.28.0/22 2381 -205.213.32.0/19 2381 -205.213.64.0/20 2381 -205.213.80.0/21 2381 -205.213.88.0/24 395514 -205.213.89.0/24 2381 -205.213.90.0/23 395963 -205.213.92.0/24 395963 -205.213.93.0/24 2381 -205.213.94.0/23 2381 -205.213.96.0/22 2381 -205.213.100.0/24 2381 -205.213.101.0/24 397171 -205.213.102.0/23 2381 -205.213.104.0/21 2381 -205.213.112.0/20 2381 -205.213.128.0/19 2381 -205.213.160.0/24 397171 -205.213.161.0/24 2381 -205.213.162.0/23 2381 -205.213.164.0/23 2381 -205.213.166.0/23 22066 -205.213.168.0/21 2381 -205.213.176.0/20 2381 -205.213.192.0/21 2381 -205.213.200.0/24 64243 -205.213.201.0/24 2381 -205.213.202.0/24 64243 -205.213.203.0/24 53599 -205.213.204.0/22 2381 -205.213.208.0/22 2381 -205.213.212.0/23 2381 -205.213.214.0/24 2381 -205.213.215.0/24 64251 -205.213.216.0/21 2381 -205.213.224.0/20 2381 -205.213.240.0/24 2381 -205.213.241.0/24 55133 -205.213.242.0/23 2381 -205.213.244.0/22 2381 -205.213.248.0/21 2381 -205.214.0.0/19 6220 -205.214.32.0/19 4565 -205.214.64.0/21 29863 -205.214.72.0/21 3595 -205.214.80.0/23 29863 -205.214.82.0/23 13345 -205.214.84.0/23 4565 -205.214.86.0/23 29863 -205.214.88.0/23 13345 -205.214.90.0/23 29863 -205.214.92.0/22 29863 -205.214.160.0/20 20283 -205.214.176.0/21 25869 -205.214.188.0/24 26381 -205.214.190.0/23 26381 -205.214.192.0/23 11139 -205.214.194.0/24 11139 -205.214.195.0/24 22933 -205.214.196.0/24 14813 -205.214.197.0/24 11139 -205.214.198.0/24 11139 -205.214.199.0/24 22933 -205.214.200.0/24 11139 -205.214.201.0/24 14813 -205.214.202.0/23 11139 -205.214.204.0/24 11139 -205.214.205.0/24 46408 -205.214.206.0/24 11139 -205.214.207.0/24 46650 -205.214.209.0/24 14813 -205.214.210.0/23 46650 -205.214.213.0/24 11139 -205.214.214.0/23 11139 -205.214.216.0/24 11139 -205.214.217.0/24 14813 -205.214.219.0/24 11139 -205.214.221.0/24 11139 -205.214.222.0/24 11139 -205.214.224.0/20 7829 -205.214.240.0/20 33003 -205.215.0.0/19 4609 -205.215.32.0/19 174 -205.215.64.0/18 17 -205.215.128.0/18 26638 -205.215.192.0/24 16497 -205.215.193.0/24 32621 -205.215.194.0/23 209 -205.215.196.0/22 209 -205.215.200.0/21 209 -205.215.208.0/23 209 -205.215.210.0/23 14161 -205.215.212.0/24 14161 -205.215.213.0/24 209 -205.215.214.0/23 209 -205.215.216.0/24 46361 -205.215.217.0/24 209 -205.215.218.0/23 209 -205.215.220.0/22 209 -205.215.229.0/24 209 -205.215.232.0/23 3925 -205.215.240.0/20 32829 -205.216.0.0/21 3561 -205.216.8.0/23 3561 -205.216.10.0/23 19905 -205.216.12.0/22 3561 -205.216.16.0/21 3561 -205.216.24.0/22 3561 -205.216.28.0/23 26584 -205.216.30.0/23 3561 -205.216.32.0/20 3561 -205.216.48.0/23 3561 -205.216.50.0/24 3561 -205.216.51.0/24 62827 -205.216.52.0/22 3561 -205.216.56.0/21 3561 -205.216.64.0/19 3561 -205.216.96.0/20 3561 -205.216.112.0/24 10361 -205.216.113.0/24 3561 -205.216.114.0/23 3561 -205.216.116.0/22 3561 -205.216.120.0/21 3561 -205.216.128.0/17 3561 -205.217.0.0/18 3561 -205.217.64.0/19 3561 -205.217.96.0/21 3561 -205.217.104.0/22 3561 -205.217.108.0/24 3561 -205.217.109.0/24 10584 -205.217.110.0/23 3561 -205.217.112.0/20 3561 -205.217.128.0/18 3561 -205.217.192.0/19 3561 -205.217.224.0/22 11139 -205.217.228.0/22 15344 -205.217.232.0/21 11139 -205.217.240.0/20 11139 -205.218.0.0/19 3561 -205.218.32.0/22 3561 -205.218.36.0/24 3561 -205.218.37.0/24 53316 -205.218.38.0/23 3561 -205.218.40.0/21 3561 -205.218.48.0/24 3561 -205.218.49.0/24 16276 -205.218.50.0/23 3561 -205.218.52.0/22 3561 -205.218.56.0/21 3561 -205.218.64.0/18 3561 -205.218.128.0/17 3561 -205.219.0.0/18 3561 -205.219.64.0/20 3561 -205.219.80.0/21 3561 -205.219.88.0/22 3561 -205.219.92.0/24 3561 -205.219.93.0/24 19905 -205.219.94.0/23 3561 -205.219.96.0/20 3561 -205.219.112.0/23 3561 -205.219.114.0/24 21563 -205.219.115.0/24 3561 -205.219.116.0/23 3561 -205.219.118.0/23 395505 -205.219.120.0/21 3561 -205.219.128.0/22 3561 -205.219.132.0/24 3561 -205.219.133.0/24 22056 -205.219.134.0/23 3561 -205.219.136.0/21 3561 -205.219.144.0/20 3561 -205.219.160.0/19 3561 -205.219.192.0/19 3561 -205.219.224.0/21 3561 -205.219.232.0/22 3561 -205.219.236.0/23 3561 -205.219.238.0/24 62827 -205.219.239.0/24 3561 -205.219.240.0/21 3561 -205.219.248.0/22 3561 -205.219.252.0/23 62827 -205.219.254.0/23 3561 -205.220.0.0/17 396016 -205.220.128.0/22 64294 -205.220.136.0/23 64294 -205.220.160.0/22 26211 -205.220.164.0/23 26211 -205.220.166.0/24 26211 -205.220.167.0/24 22843 -205.220.171.0/24 26211 -205.220.172.0/22 22843 -205.220.176.0/23 22843 -205.220.178.0/24 22843 -205.220.189.0/24 14618 -205.220.190.0/24 22843 -205.220.192.0/20 55254 -205.220.208.0/23 55039 -205.220.212.0/22 55039 -205.220.216.0/23 203872 -205.220.218.0/24 396938 -205.220.219.0/24 394195 -205.220.220.0/22 393455 -205.220.224.0/21 396998 -205.220.232.0/21 397005 -205.220.240.0/21 46592 -205.220.248.0/24 16858 -205.220.249.0/24 54849 -205.220.252.0/23 32922 -205.220.254.0/23 11894 -205.221.0.0/20 6122 -205.221.16.0/22 26946 -205.221.20.0/22 6122 -205.221.24.0/21 6122 -205.221.32.0/19 6122 -205.221.64.0/21 6122 -205.221.72.0/22 6122 -205.221.76.0/23 6122 -205.221.78.0/23 27316 -205.221.80.0/20 6122 -205.221.96.0/22 6122 -205.221.100.0/23 6122 -205.221.102.0/24 6122 -205.221.103.0/24 36634 -205.221.104.0/21 6122 -205.221.112.0/20 6122 -205.221.128.0/17 6122 -205.222.0.0/16 32073 -205.223.10.0/23 63427 -205.223.19.0/24 21508 -205.223.27.0/24 701 -205.223.80.0/21 7160 -205.223.110.0/24 702 -205.223.122.0/23 13698 -205.223.124.0/22 13698 -205.223.144.0/20 7970 -205.223.160.0/19 7970 -205.223.192.0/19 7970 -205.223.228.0/24 10991 -205.223.229.0/24 51964 -205.223.230.0/24 10991 -205.223.231.0/24 51964 -205.223.232.0/24 6848 -205.223.239.0/24 10991 -205.223.240.0/20 122 -205.224.0.0/16 7155 -205.225.0.0/17 3356 -205.225.128.0/17 1226 -205.226.0.0/16 3356 -205.227.0.0/18 3356 -205.227.64.0/20 3356 -205.227.80.0/21 3356 -205.227.88.0/22 13546 -205.227.92.0/22 3356 -205.227.96.0/19 3356 -205.227.128.0/21 3356 -205.227.136.0/21 7754 -205.227.144.0/21 3356 -205.227.152.0/22 3356 -205.227.156.0/24 3356 -205.227.157.0/24 6653 -205.227.158.0/23 3356 -205.227.160.0/21 3356 -205.227.168.0/22 3356 -205.227.172.0/23 3356 -205.227.174.0/24 395800 -205.227.175.0/24 3356 -205.227.176.0/20 3356 -205.227.192.0/18 3356 -205.228.0.0/18 5049 -205.228.64.0/19 21439 -205.228.96.0/23 18258 -205.228.98.0/24 18258 -205.228.99.0/24 10082 -205.228.100.0/24 18258 -205.228.101.0/24 10082 -205.228.102.0/24 10082 -205.228.103.0/24 18258 -205.228.104.0/21 18258 -205.228.112.0/20 18258 -205.228.128.0/18 701 -205.228.192.0/19 701 -205.228.224.0/20 701 -205.228.240.0/22 701 -205.228.244.0/24 701 -205.228.245.0/24 7270 -205.228.246.0/23 701 -205.228.248.0/21 701 -205.229.0.0/18 701 -205.229.64.0/19 701 -205.229.96.0/22 701 -205.229.100.0/24 701 -205.229.101.0/24 21759 -205.229.102.0/23 701 -205.229.104.0/21 701 -205.229.112.0/20 701 -205.229.128.0/17 701 -205.230.0.0/16 701 -205.231.0.0/18 701 -205.231.64.0/20 701 -205.231.80.0/21 701 -205.231.88.0/21 4208 -205.231.96.0/20 4195 -205.231.112.0/20 701 -205.231.128.0/22 16804 -205.231.132.0/22 701 -205.231.136.0/21 701 -205.231.144.0/20 701 -205.231.160.0/19 701 -205.231.192.0/18 701 -205.232.0.0/20 7029 -205.232.16.0/23 7029 -205.232.18.0/23 3685 -205.232.20.0/22 7029 -205.232.24.0/22 7029 -205.232.28.0/23 20337 -205.232.30.0/23 7029 -205.232.32.0/22 7029 -205.232.36.0/23 7029 -205.232.38.0/24 32019 -205.232.39.0/24 7029 -205.232.40.0/21 7029 -205.232.48.0/22 7029 -205.232.52.0/23 7029 -205.232.54.0/23 29922 -205.232.56.0/21 7029 -205.232.64.0/18 7029 -205.232.128.0/21 7029 -205.232.136.0/22 7029 -205.232.140.0/22 40399 -205.232.144.0/20 7029 -205.232.160.0/19 7029 -205.232.192.0/18 7029 -205.233.0.0/24 54125 -205.233.2.0/24 5769 -205.233.4.0/22 577 -205.233.8.0/22 11114 -205.233.12.0/24 46458 -205.233.13.0/24 21649 -205.233.14.0/24 54212 -205.233.15.0/24 26546 -205.233.17.0/24 14662 -205.233.22.0/24 4466 -205.233.24.0/21 2685 -205.233.33.0/24 40470 -205.233.35.0/24 36811 -205.233.39.0/24 54229 -205.233.40.0/22 5009 -205.233.50.0/23 32881 -205.233.52.0/22 32881 -205.233.56.0/22 32881 -205.233.64.0/24 32424 -205.233.71.0/24 26380 -205.233.73.0/24 11605 -205.233.76.0/22 46198 -205.233.80.0/21 7403 -205.233.88.0/23 7403 -205.233.93.0/24 26531 -205.233.96.0/21 852 -205.233.104.0/23 852 -205.233.106.0/24 812 -205.233.108.0/22 852 -205.233.121.0/24 852 -205.233.124.0/23 16532 -205.233.126.0/23 54517 -205.233.128.0/24 45633 -205.233.139.0/24 54181 -205.233.140.0/23 32442 -205.233.142.0/24 32442 -205.233.147.0/24 3952 -205.233.150.0/24 22423 -205.233.151.0/24 12059 -205.233.152.0/23 22652 -205.233.157.0/24 53756 -205.233.178.0/24 852 -205.233.186.0/23 4470 -205.233.199.0/24 32277 -205.233.201.0/24 19009 -205.233.210.0/24 10865 -205.233.212.0/24 4540 -205.233.216.0/24 19117 -205.233.243.0/24 9327 -205.233.244.0/22 22446 -205.234.0.0/21 40913 -205.234.8.0/23 40913 -205.234.10.0/24 40913 -205.234.11.0/24 394161 -205.234.12.0/22 40913 -205.234.16.0/20 40913 -205.234.32.0/22 22573 -205.234.44.0/24 6058 -205.234.46.0/23 6058 -205.234.48.0/21 6058 -205.234.56.0/23 22573 -205.234.58.0/23 6058 -205.234.62.0/23 6058 -205.234.64.0/20 6295 -205.234.80.0/20 36041 -205.234.96.0/20 14383 -205.234.112.0/24 10819 -205.234.113.0/24 14355 -205.234.114.0/24 394163 -205.234.115.0/24 395097 -205.234.116.0/24 394510 -205.234.117.0/24 394893 -205.234.118.0/23 394073 -205.234.120.0/23 53889 -205.234.122.0/24 6130 -205.234.123.0/24 53889 -205.234.124.0/23 53889 -205.234.126.0/24 6130 -205.234.127.0/24 63008 -205.234.128.0/20 23352 -205.234.144.0/21 23352 -205.234.152.0/23 36352 -205.234.154.0/23 23352 -205.234.156.0/23 23352 -205.234.158.0/24 23352 -205.234.159.0/24 36352 -205.234.160.0/22 23352 -205.234.164.0/24 23352 -205.234.165.0/24 11019 -205.234.166.0/23 23352 -205.234.168.0/22 23352 -205.234.172.0/23 23352 -205.234.174.0/24 23352 -205.234.175.0/24 30081 -205.234.176.0/23 393713 -205.234.178.0/23 23352 -205.234.180.0/22 23352 -205.234.184.0/21 23352 -205.234.192.0/22 23352 -205.234.196.0/23 23352 -205.234.198.0/24 23352 -205.234.199.0/24 10625 -205.234.200.0/23 23352 -205.234.202.0/24 23352 -205.234.203.0/24 36352 -205.234.204.0/22 23352 -205.234.208.0/21 23352 -205.234.216.0/24 30081 -205.234.217.0/24 23352 -205.234.218.0/23 23352 -205.234.220.0/22 23352 -205.234.224.0/19 23352 -205.235.5.0/24 28006 -205.235.24.0/21 18710 -205.235.32.0/19 31763 -205.235.80.0/24 62947 -205.235.81.0/24 33504 -205.235.82.0/23 62947 -205.235.84.0/22 62947 -205.235.88.0/21 62947 -205.235.96.0/24 32382 -205.235.104.0/24 32382 -205.235.112.0/22 14951 -205.235.116.0/23 14951 -205.235.118.0/24 14951 -205.235.119.0/24 18486 -205.235.127.0/24 14951 -205.235.128.0/20 1982 -205.235.160.0/24 21806 -205.235.173.0/24 21806 -205.235.175.0/24 21806 -205.235.192.0/20 1798 -205.235.208.0/24 40391 -205.235.210.0/23 40391 -205.235.212.0/24 40391 -205.235.214.0/23 40391 -205.235.216.0/24 40391 -205.235.218.0/24 40391 -205.235.220.0/22 40391 -205.235.224.0/23 40181 -205.235.226.0/24 40181 -205.235.229.0/24 40181 -205.235.230.0/24 40181 -205.235.232.0/24 40181 -205.235.238.0/24 23025 -205.235.239.0/24 40181 -205.236.0.0/24 19707 -205.236.1.0/24 3584 -205.236.2.0/23 376 -205.236.4.0/24 376 -205.236.7.0/24 376 -205.236.8.0/23 376 -205.236.12.0/24 376 -205.236.14.0/24 812 -205.236.15.0/24 577 -205.236.16.0/24 53757 -205.236.17.0/24 201106 -205.236.20.0/23 13942 -205.236.22.0/24 13942 -205.236.24.0/23 852 -205.236.27.0/24 11478 -205.236.31.0/24 21548 -205.236.34.0/24 32613 -205.236.35.0/24 376 -205.236.40.0/24 10929 -205.236.41.0/24 14112 -205.236.42.0/24 11290 -205.236.44.0/23 376 -205.236.51.0/24 3952 -205.236.54.0/24 53756 -205.236.56.0/24 54264 -205.236.58.0/24 53757 -205.236.65.0/24 813 -205.236.70.0/24 53757 -205.236.71.0/24 53488 -205.236.73.0/24 376 -205.236.75.0/24 3952 -205.236.76.0/23 376 -205.236.78.0/24 62 -205.236.79.0/24 3393 -205.236.80.0/24 54777 -205.236.81.0/24 54261 -205.236.93.0/24 376 -205.236.94.0/23 376 -205.236.99.0/24 30236 -205.236.102.0/24 577 -205.236.104.0/22 54777 -205.236.110.0/23 26198 -205.236.112.0/23 26198 -205.236.114.0/24 26198 -205.236.117.0/24 30336 -205.236.120.0/22 54777 -205.236.126.0/24 35911 -205.236.127.0/24 54267 -205.236.128.0/24 11478 -205.236.134.0/23 5769 -205.236.136.0/22 5769 -205.236.144.0/24 376 -205.236.147.0/24 14112 -205.236.148.0/24 4540 -205.236.149.0/24 11478 -205.236.150.0/24 14112 -205.236.153.0/24 5769 -205.236.154.0/23 5769 -205.236.163.0/24 3584 -205.236.166.0/23 6280 -205.236.172.0/24 4540 -205.236.174.0/24 22652 -205.236.184.0/24 22639 -205.236.190.0/24 577 -205.236.192.0/19 30348 -205.236.224.0/24 10865 -205.236.226.0/24 54777 -205.236.230.0/24 16532 -205.236.240.0/22 11478 -205.236.245.0/24 201106 -205.236.246.0/23 201106 -205.236.248.0/22 40676 -205.236.252.0/23 201106 -205.236.255.0/24 54289 -205.237.0.0/24 13610 -205.237.9.0/24 376 -205.237.20.0/24 19515 -205.237.21.0/24 701 -205.237.22.0/23 376 -205.237.24.0/24 376 -205.237.25.0/24 54279 -205.237.27.0/24 376 -205.237.29.0/24 54783 -205.237.30.0/23 376 -205.237.32.0/23 376 -205.237.34.0/24 21548 -205.237.35.0/24 11290 -205.237.36.0/22 11290 -205.237.40.0/21 11290 -205.237.48.0/20 11290 -205.237.64.0/21 11290 -205.237.72.0/22 376 -205.237.76.0/23 376 -205.237.78.0/24 376 -205.237.79.0/24 16565 -205.237.80.0/21 376 -205.237.88.0/24 134450 -205.237.89.0/24 204472 -205.237.90.0/24 134450 -205.237.91.0/24 204472 -205.237.92.0/24 204472 -205.237.93.0/24 203999 -205.237.94.0/23 203999 -205.237.96.0/20 26914 -205.237.112.0/20 2698 -205.237.128.0/19 13927 -205.237.160.0/19 26793 -205.237.192.0/20 32415 -205.237.208.0/23 26532 -205.237.210.0/23 376 -205.237.212.0/22 376 -205.237.216.0/21 376 -205.237.224.0/24 376 -205.237.227.0/24 3584 -205.237.228.0/23 3584 -205.237.230.0/24 852 -205.237.231.0/24 376 -205.237.232.0/22 5769 -205.237.238.0/23 3584 -205.237.242.0/24 4470 -205.237.243.0/24 376 -205.237.244.0/22 376 -205.237.248.0/23 35911 -205.237.250.0/24 40191 -205.237.251.0/24 35911 -205.237.252.0/24 5769 -205.237.253.0/24 40191 -205.238.0.0/20 2914 -205.238.16.0/21 2914 -205.238.24.0/24 2914 -205.238.25.0/24 12204 -205.238.26.0/23 12204 -205.238.28.0/23 2914 -205.238.30.0/24 13857 -205.238.31.0/24 2914 -205.238.32.0/19 2914 -205.238.184.0/22 8166 -205.238.192.0/20 3593 -205.238.208.0/23 3593 -205.238.210.0/24 3593 -205.238.211.0/24 5650 -205.238.212.0/23 5650 -205.238.214.0/24 5650 -205.238.215.0/24 3593 -205.238.216.0/21 3593 -205.238.224.0/21 3593 -205.238.232.0/22 3593 -205.238.236.0/24 3593 -205.238.237.0/24 5650 -205.238.238.0/24 5650 -205.238.239.0/24 3593 -205.238.240.0/20 3593 -205.239.0.0/22 2166 -205.239.39.0/24 2164 -205.239.71.0/24 2159 -205.239.80.0/24 2686 -205.239.98.0/23 2159 -205.239.100.0/23 2166 -205.239.158.0/23 2166 -205.239.171.0/24 25886 -205.239.185.0/24 25886 -205.239.187.0/24 25886 -205.239.207.0/24 5714 -205.240.0.0/20 3364 -205.240.16.0/20 1239 -205.240.32.0/23 5778 -205.240.34.0/23 209 -205.240.36.0/22 209 -205.240.40.0/23 18494 -205.240.42.0/23 6222 -205.240.44.0/23 5778 -205.240.46.0/24 209 -205.240.47.0/24 5778 -205.240.48.0/20 1239 -205.240.64.0/24 22353 -205.240.65.0/24 18618 -205.240.66.0/23 18618 -205.240.68.0/22 1239 -205.240.72.0/22 1239 -205.240.76.0/24 1239 -205.240.77.0/24 20081 -205.240.78.0/23 1239 -205.240.80.0/20 1239 -205.240.96.0/19 1239 -205.240.128.0/20 8025 -205.240.144.0/22 1239 -205.240.148.0/23 1239 -205.240.150.0/24 1239 -205.240.151.0/24 16823 -205.240.152.0/21 1239 -205.240.160.0/19 1239 -205.240.192.0/21 1239 -205.240.200.0/21 27884 -205.240.208.0/20 1239 -205.240.224.0/19 1239 -205.241.0.0/20 1239 -205.241.16.0/21 1239 -205.241.24.0/23 7029 -205.241.26.0/24 7029 -205.241.27.0/24 7300 -205.241.28.0/22 1239 -205.241.32.0/21 1239 -205.241.40.0/24 17032 -205.241.41.0/24 1239 -205.241.42.0/23 1239 -205.241.44.0/23 3549 -205.241.46.0/24 3549 -205.241.47.0/24 1239 -205.241.48.0/20 1239 -205.241.64.0/18 1239 -205.241.128.0/17 1239 -205.242.0.0/21 1239 -205.242.8.0/23 1239 -205.242.10.0/24 395930 -205.242.11.0/24 1239 -205.242.12.0/22 1239 -205.242.16.0/22 1239 -205.242.20.0/23 53739 -205.242.22.0/23 1239 -205.242.24.0/21 1239 -205.242.32.0/19 1239 -205.242.64.0/20 1239 -205.242.80.0/23 1239 -205.242.82.0/23 40157 -205.242.84.0/22 1239 -205.242.88.0/22 1239 -205.242.92.0/23 6428 -205.242.94.0/23 1239 -205.242.96.0/19 1239 -205.242.128.0/19 1239 -205.242.160.0/20 1239 -205.242.176.0/20 6428 -205.242.192.0/19 1239 -205.242.224.0/22 1239 -205.242.228.0/23 1239 -205.242.230.0/23 13676 -205.242.232.0/21 1239 -205.242.240.0/20 1239 -205.243.0.0/20 1239 -205.243.16.0/22 1239 -205.243.20.0/23 1239 -205.243.22.0/24 1239 -205.243.23.0/24 19105 -205.243.24.0/21 1239 -205.243.32.0/19 1239 -205.243.64.0/21 40508 -205.243.72.0/24 22485 -205.243.73.0/24 11924 -205.243.74.0/23 1239 -205.243.76.0/23 1239 -205.243.78.0/24 1239 -205.243.79.0/24 36050 -205.243.80.0/20 1239 -205.243.96.0/20 1239 -205.243.112.0/23 17301 -205.243.114.0/23 14828 -205.243.116.0/22 14828 -205.243.120.0/22 14828 -205.243.124.0/23 62759 -205.243.126.0/23 14828 -205.243.128.0/19 4358 -205.243.160.0/19 1239 -205.243.192.0/20 1239 -205.243.208.0/21 1239 -205.243.216.0/22 1239 -205.243.220.0/23 1239 -205.243.222.0/24 3549 -205.243.223.0/24 1239 -205.243.224.0/21 1239 -205.243.232.0/23 1239 -205.243.234.0/24 1239 -205.243.235.0/24 40676 -205.243.236.0/22 1239 -205.243.240.0/21 1239 -205.243.248.0/22 1239 -205.243.252.0/22 17046 -205.244.0.0/19 1239 -205.244.32.0/22 1239 -205.244.36.0/22 26724 -205.244.40.0/21 1239 -205.244.48.0/20 1239 -205.244.64.0/19 1239 -205.244.96.0/19 5778 -205.244.128.0/20 1239 -205.244.144.0/22 1239 -205.244.148.0/22 14813 -205.244.152.0/21 1239 -205.244.160.0/19 1239 -205.244.192.0/23 1239 -205.244.194.0/23 209 -205.244.196.0/22 1239 -205.244.200.0/21 5778 -205.244.208.0/20 1239 -205.244.224.0/19 1239 -205.245.0.0/23 2379 -205.245.2.0/24 209 -205.245.3.0/24 2379 -205.245.4.0/22 2379 -205.245.8.0/24 13363 -205.245.9.0/24 2379 -205.245.10.0/23 2379 -205.245.12.0/22 2379 -205.245.16.0/20 2379 -205.245.32.0/21 2379 -205.245.40.0/24 2379 -205.245.41.0/24 209 -205.245.42.0/23 2379 -205.245.44.0/22 2379 -205.245.48.0/20 2379 -205.245.64.0/23 1239 -205.245.66.0/24 1239 -205.245.67.0/24 11309 -205.245.68.0/22 1239 -205.245.72.0/24 30385 -205.245.73.0/24 1239 -205.245.74.0/23 1239 -205.245.76.0/22 1239 -205.245.80.0/24 7018 -205.245.81.0/24 1239 -205.245.82.0/23 1239 -205.245.84.0/22 1239 -205.245.88.0/24 1239 -205.245.89.0/24 18571 -205.245.90.0/23 1239 -205.245.92.0/22 1239 -205.245.96.0/21 5778 -205.245.104.0/22 5778 -205.245.108.0/22 1239 -205.245.112.0/20 1239 -205.245.128.0/19 1239 -205.245.160.0/21 1239 -205.245.168.0/24 12241 -205.245.169.0/24 1239 -205.245.170.0/23 1239 -205.245.172.0/22 1239 -205.245.176.0/20 1239 -205.245.192.0/18 1239 -205.246.0.0/21 1239 -205.246.8.0/22 46536 -205.246.12.0/23 46536 -205.246.14.0/24 1239 -205.246.15.0/24 46536 -205.246.16.0/23 17054 -205.246.18.0/24 19643 -205.246.19.0/24 1239 -205.246.20.0/22 1239 -205.246.24.0/22 1239 -205.246.28.0/24 46567 -205.246.29.0/24 1239 -205.246.30.0/23 1239 -205.246.32.0/21 20082 -205.246.40.0/21 1239 -205.246.48.0/20 1239 -205.246.64.0/21 1239 -205.246.72.0/21 6062 -205.246.80.0/20 1239 -205.246.96.0/19 1239 -205.246.128.0/17 1239 -205.247.0.0/20 3257 -205.247.16.0/22 1239 -205.247.20.0/22 21547 -205.247.24.0/22 11140 -205.247.28.0/23 1239 -205.247.30.0/24 1239 -205.247.31.0/24 15065 -205.247.32.0/19 1239 -205.247.64.0/19 1239 -205.247.96.0/20 1239 -205.247.112.0/22 21547 -205.247.116.0/22 1239 -205.247.120.0/21 1239 -205.247.128.0/22 1239 -205.247.132.0/24 1239 -205.247.133.0/24 1132 -205.247.134.0/23 1239 -205.247.136.0/21 1239 -205.247.144.0/20 1239 -205.247.160.0/20 6062 -205.247.176.0/20 1239 -205.247.192.0/21 1239 -205.247.200.0/22 1239 -205.247.204.0/24 26451 -205.247.205.0/24 1239 -205.247.206.0/23 1239 -205.247.208.0/21 1239 -205.247.216.0/23 1239 -205.247.218.0/24 1239 -205.247.219.0/24 7381 -205.247.220.0/22 1239 -205.247.224.0/20 32855 -205.247.240.0/22 32855 -205.247.244.0/23 32855 -205.247.246.0/24 32855 -205.247.247.0/24 6222 -205.247.248.0/23 32855 -205.247.250.0/24 32855 -205.247.251.0/24 6222 -205.247.252.0/22 32855 -205.248.174.0/24 3300 -205.250.0.0/17 852 -205.250.128.0/19 852 -205.250.160.0/21 852 -205.250.168.0/22 852 -205.250.172.0/22 25668 -205.250.176.0/20 852 -205.250.192.0/23 852 -205.250.194.0/24 376 -205.250.195.0/24 852 -205.250.196.0/22 25668 -205.250.200.0/21 852 -205.250.208.0/20 852 -205.250.224.0/19 852 -205.251.0.0/18 33597 -205.251.64.0/19 33597 -205.251.96.0/22 33597 -205.251.100.0/24 33597 -205.251.101.0/24 46579 -205.251.102.0/23 33597 -205.251.104.0/24 209496 -205.251.105.0/24 33597 -205.251.106.0/23 33597 -205.251.108.0/22 33597 -205.251.112.0/23 33597 -205.251.114.0/23 29934 -205.251.116.0/22 33597 -205.251.120.0/21 33597 -205.251.136.0/21 11042 -205.251.144.0/23 40900 -205.251.146.0/23 63421 -205.251.148.0/22 11042 -205.251.152.0/21 11042 -205.251.160.0/20 16617 -205.251.176.0/20 12129 -205.251.192.0/21 16509 -205.251.200.0/24 16509 -205.251.206.0/23 16509 -205.251.208.0/24 16509 -205.251.211.0/24 16509 -205.251.212.0/23 16509 -205.251.218.0/23 16509 -205.251.221.0/24 16509 -205.251.223.0/24 16509 -205.251.224.0/21 16509 -205.251.232.0/22 16509 -205.251.236.0/22 8987 -205.251.240.0/22 16509 -205.251.244.0/23 16509 -205.251.247.0/24 16509 -205.251.248.0/24 16509 -205.251.250.0/23 16509 -205.251.252.0/24 16509 -205.252.0.0/19 3491 -205.252.32.0/21 3491 -205.252.40.0/24 3491 -205.252.41.0/24 7262 -205.252.42.0/24 7262 -205.252.43.0/24 3491 -205.252.44.0/22 3491 -205.252.48.0/20 3491 -205.252.64.0/18 3491 -205.252.128.0/20 3491 -205.252.144.0/21 4760 -205.252.152.0/21 3491 -205.252.160.0/19 3491 -205.252.192.0/19 3491 -205.252.224.0/21 3491 -205.252.232.0/24 3491 -205.252.233.0/24 30967 -205.252.234.0/23 3491 -205.252.236.0/24 53345 -205.252.237.0/24 3491 -205.252.238.0/24 3491 -205.252.239.0/24 54994 -205.252.240.0/20 3491 -205.253.0.0/16 55836 -205.254.8.0/22 36120 -205.254.12.0/23 36120 -205.254.14.0/24 2707 -205.254.15.0/24 36120 -205.254.16.0/20 2707 -205.254.128.0/19 32982 -205.254.160.0/19 174 -205.254.192.0/19 174 -205.254.224.0/19 4927 -205.255.0.0/22 10801 -205.255.20.0/22 10801 -205.255.24.0/22 10801 -205.255.32.0/22 10801 -205.255.40.0/21 10801 -205.255.48.0/21 10801 -205.255.56.0/23 10801 -205.255.60.0/22 10801 -205.255.64.0/22 10801 -205.255.80.0/22 10801 -205.255.96.0/22 10801 -205.255.100.0/23 19905 -205.255.102.0/24 10801 -205.255.103.0/24 19905 -205.255.104.0/24 10801 -205.255.108.0/22 10801 -205.255.116.0/23 10801 -205.255.118.0/24 10801 -205.255.174.0/24 10801 -205.255.176.0/22 10801 -205.255.200.0/23 19905 -205.255.202.0/24 10801 -205.255.203.0/24 19905 -205.255.204.0/24 10801 -205.255.208.0/22 10801 -205.255.212.0/24 10801 -205.255.216.0/23 10801 -205.255.218.0/24 10801 -205.255.224.0/19 10801 -206.0.0.0/15 174 -206.2.0.0/18 174 -206.2.64.0/21 174 -206.2.72.0/22 174 -206.2.76.0/24 64244 -206.2.77.0/24 174 -206.2.78.0/23 174 -206.2.80.0/20 174 -206.2.96.0/19 174 -206.2.128.0/17 174 -206.3.0.0/19 4694 -206.3.32.0/21 174 -206.3.40.0/23 174 -206.3.42.0/24 3512 -206.3.43.0/24 174 -206.3.44.0/22 174 -206.3.48.0/20 174 -206.3.64.0/18 174 -206.3.128.0/17 174 -206.4.0.0/16 174 -206.5.0.0/21 174 -206.5.8.0/22 174 -206.5.12.0/22 6494 -206.5.16.0/20 174 -206.5.32.0/19 174 -206.5.64.0/18 174 -206.5.128.0/17 174 -206.6.0.0/15 174 -206.8.0.0/23 5006 -206.8.2.0/24 15011 -206.8.3.0/24 5006 -206.8.4.0/22 5006 -206.8.8.0/21 5006 -206.8.16.0/20 5006 -206.8.32.0/19 5006 -206.8.64.0/20 5006 -206.8.80.0/21 5006 -206.8.88.0/24 7821 -206.8.89.0/24 5006 -206.8.90.0/23 5006 -206.8.92.0/22 5006 -206.8.96.0/19 5006 -206.8.128.0/19 5006 -206.8.160.0/21 5006 -206.8.168.0/24 7821 -206.8.169.0/24 5006 -206.8.170.0/23 5006 -206.8.172.0/22 5006 -206.8.176.0/20 5006 -206.8.192.0/23 40160 -206.8.194.0/24 40160 -206.8.195.0/24 5006 -206.8.196.0/22 5006 -206.8.200.0/21 5006 -206.8.208.0/20 5006 -206.8.224.0/20 5006 -206.8.240.0/21 5006 -206.8.248.0/22 5006 -206.8.252.0/23 5006 -206.8.254.0/24 5006 -206.8.255.0/24 40160 -206.9.0.0/18 5006 -206.9.64.0/21 5006 -206.9.72.0/22 5006 -206.9.76.0/23 6461 -206.9.78.0/23 5006 -206.9.80.0/24 33362 -206.9.81.0/24 5006 -206.9.82.0/23 5006 -206.9.84.0/22 5006 -206.9.88.0/24 6461 -206.9.89.0/24 5006 -206.9.90.0/24 15011 -206.9.91.0/24 5006 -206.9.92.0/22 5006 -206.9.96.0/22 5006 -206.9.100.0/23 7821 -206.9.102.0/23 5006 -206.9.104.0/21 5006 -206.9.112.0/20 5006 -206.9.128.0/19 5006 -206.9.160.0/21 5006 -206.9.168.0/23 7821 -206.9.170.0/23 5006 -206.9.172.0/22 5006 -206.9.176.0/20 5006 -206.9.192.0/21 5006 -206.9.200.0/22 5006 -206.9.204.0/24 5006 -206.9.205.0/24 15011 -206.9.206.0/23 15011 -206.9.208.0/23 15011 -206.9.210.0/23 5006 -206.9.212.0/23 5006 -206.9.214.0/24 5006 -206.9.215.0/24 15011 -206.9.216.0/24 5006 -206.9.217.0/24 15011 -206.9.218.0/23 5006 -206.9.220.0/23 15011 -206.9.222.0/23 5006 -206.9.224.0/20 5006 -206.9.240.0/24 15011 -206.9.241.0/24 5006 -206.9.242.0/23 5006 -206.9.244.0/22 5006 -206.9.248.0/21 5006 -206.10.0.0/20 5006 -206.10.16.0/22 5006 -206.10.20.0/23 5006 -206.10.22.0/24 7821 -206.10.23.0/24 5006 -206.10.24.0/22 5006 -206.10.28.0/23 5006 -206.10.30.0/23 21730 -206.10.32.0/23 7821 -206.10.34.0/23 5006 -206.10.36.0/22 5006 -206.10.40.0/21 5006 -206.10.48.0/20 5006 -206.10.64.0/22 5006 -206.10.68.0/23 5006 -206.10.70.0/24 30685 -206.10.71.0/24 5006 -206.10.72.0/23 5006 -206.10.74.0/24 5006 -206.10.75.0/24 7821 -206.10.76.0/22 5006 -206.10.80.0/21 5006 -206.10.88.0/22 7821 -206.10.92.0/22 5006 -206.10.96.0/20 5006 -206.10.112.0/21 5006 -206.10.120.0/22 5006 -206.10.124.0/24 15011 -206.10.125.0/24 5006 -206.10.126.0/23 5006 -206.10.128.0/17 5006 -206.11.0.0/20 5006 -206.11.16.0/24 40160 -206.11.17.0/24 5006 -206.11.18.0/23 5006 -206.11.20.0/22 5006 -206.11.24.0/21 5006 -206.11.32.0/19 5006 -206.11.64.0/20 5006 -206.11.80.0/21 5006 -206.11.88.0/22 5006 -206.11.92.0/23 5006 -206.11.94.0/24 22402 -206.11.95.0/24 5006 -206.11.96.0/19 5006 -206.11.128.0/20 5006 -206.11.144.0/22 5006 -206.11.148.0/24 5006 -206.11.149.0/24 7821 -206.11.150.0/23 5006 -206.11.152.0/21 5006 -206.11.160.0/19 5006 -206.11.192.0/18 5006 -206.12.0.0/24 271 -206.12.1.0/24 36391 -206.12.2.0/23 271 -206.12.4.0/23 271 -206.12.6.0/23 11105 -206.12.8.0/24 271 -206.12.9.0/24 36391 -206.12.10.0/24 11105 -206.12.11.0/24 271 -206.12.12.0/23 393249 -206.12.14.0/24 271 -206.12.15.0/24 393249 -206.12.16.0/23 11105 -206.12.18.0/24 393249 -206.12.19.0/24 271 -206.12.20.0/22 271 -206.12.24.0/22 271 -206.12.28.0/24 393249 -206.12.29.0/24 11105 -206.12.30.0/24 11105 -206.12.31.0/24 852 -206.12.32.0/20 393249 -206.12.48.0/24 16462 -206.12.49.0/24 271 -206.12.50.0/24 16462 -206.12.51.0/24 271 -206.12.52.0/22 393249 -206.12.56.0/23 271 -206.12.58.0/24 271 -206.12.59.0/24 16462 -206.12.60.0/22 271 -206.12.64.0/20 393249 -206.12.80.0/23 271 -206.12.82.0/24 25668 -206.12.83.0/24 271 -206.12.84.0/22 271 -206.12.88.0/21 16462 -206.12.96.0/21 16462 -206.12.104.0/22 40598 -206.12.108.0/22 271 -206.12.112.0/22 271 -206.12.116.0/23 271 -206.12.118.0/24 271 -206.12.119.0/24 393249 -206.12.120.0/21 11105 -206.12.128.0/24 11105 -206.12.129.0/24 271 -206.12.130.0/23 271 -206.12.132.0/22 852 -206.12.136.0/21 393249 -206.12.144.0/22 271 -206.12.148.0/23 271 -206.12.150.0/24 852 -206.12.151.0/24 271 -206.12.152.0/24 271 -206.12.153.0/24 6539 -206.12.154.0/24 16462 -206.12.155.0/24 271 -206.12.156.0/22 271 -206.12.160.0/21 393249 -206.12.168.0/22 271 -206.12.172.0/23 271 -206.12.174.0/24 271 -206.12.175.0/24 852 -206.12.176.0/21 852 -206.12.184.0/21 271 -206.12.192.0/21 271 -206.12.200.0/22 393249 -206.12.204.0/22 271 -206.12.208.0/22 393249 -206.12.212.0/23 271 -206.12.214.0/23 852 -206.12.216.0/21 271 -206.12.224.0/19 271 -206.13.0.0/22 7018 -206.13.4.0/23 7018 -206.13.6.0/24 7018 -206.13.7.0/24 7132 -206.13.8.0/21 7018 -206.13.16.0/20 7018 -206.13.32.0/19 7018 -206.13.64.0/18 7018 -206.14.0.0/24 2914 -206.14.1.0/24 174 -206.14.2.0/23 2914 -206.14.4.0/22 2914 -206.14.8.0/21 2914 -206.14.16.0/20 2914 -206.14.32.0/21 2914 -206.14.40.0/23 2914 -206.14.42.0/24 174 -206.14.43.0/24 2914 -206.14.44.0/22 2914 -206.14.48.0/23 174 -206.14.50.0/23 2914 -206.14.52.0/22 2914 -206.14.56.0/21 2914 -206.14.64.0/19 2914 -206.14.96.0/20 2914 -206.14.112.0/21 2914 -206.14.120.0/22 2914 -206.14.124.0/24 2914 -206.14.125.0/24 13917 -206.14.126.0/23 2914 -206.14.128.0/17 2914 -206.15.0.0/21 3356 -206.15.8.0/23 3356 -206.15.10.0/24 3356 -206.15.11.0/24 16771 -206.15.12.0/22 3356 -206.15.16.0/21 3356 -206.15.24.0/24 16771 -206.15.25.0/24 3356 -206.15.26.0/23 3356 -206.15.28.0/24 3356 -206.15.29.0/24 26120 -206.15.30.0/23 3356 -206.15.64.0/21 3549 -206.15.72.0/23 3549 -206.15.74.0/24 40210 -206.15.75.0/24 3549 -206.15.76.0/22 3549 -206.15.80.0/21 3549 -206.15.88.0/24 3549 -206.15.89.0/24 53985 -206.15.90.0/23 3549 -206.15.92.0/22 3549 -206.15.96.0/20 5088 -206.15.112.0/21 5088 -206.15.120.0/22 5088 -206.15.124.0/23 5088 -206.15.126.0/23 7105 -206.15.130.0/23 33292 -206.15.132.0/22 33292 -206.15.136.0/22 33293 -206.15.140.0/22 33292 -206.15.148.0/23 33292 -206.15.150.0/23 33293 -206.15.152.0/21 33293 -206.15.160.0/23 19817 -206.15.162.0/23 33293 -206.15.164.0/24 33292 -206.15.165.0/24 33293 -206.15.166.0/23 33264 -206.15.168.0/24 33292 -206.15.174.0/23 33293 -206.15.202.0/23 13839 -206.15.204.0/23 13839 -206.15.206.0/24 13839 -206.15.224.0/22 2152 -206.15.228.0/23 2152 -206.15.230.0/23 395226 -206.15.232.0/22 395226 -206.15.236.0/22 2152 -206.15.240.0/24 2152 -206.15.241.0/24 395226 -206.15.242.0/24 395226 -206.15.243.0/24 2152 -206.15.244.0/24 395226 -206.15.245.0/24 2152 -206.15.246.0/24 2152 -206.15.247.0/24 395226 -206.15.248.0/23 395226 -206.15.250.0/24 395226 -206.15.251.0/24 2152 -206.15.252.0/23 395226 -206.15.254.0/23 2152 -206.16.0.0/21 4265 -206.16.8.0/24 7018 -206.16.9.0/24 17231 -206.16.10.0/23 7018 -206.16.12.0/23 7018 -206.16.14.0/24 17225 -206.16.15.0/24 7018 -206.16.16.0/22 17227 -206.16.20.0/24 17227 -206.16.21.0/24 7018 -206.16.22.0/23 17227 -206.16.24.0/22 17227 -206.16.28.0/23 17227 -206.16.30.0/24 7018 -206.16.31.0/24 30219 -206.16.32.0/24 40526 -206.16.33.0/24 7018 -206.16.34.0/23 7018 -206.16.36.0/22 7018 -206.16.40.0/24 4267 -206.16.41.0/24 26419 -206.16.42.0/24 4267 -206.16.43.0/24 2386 -206.16.44.0/23 4267 -206.16.46.0/24 4267 -206.16.47.0/24 2386 -206.16.48.0/21 7018 -206.16.56.0/24 7018 -206.16.57.0/24 17227 -206.16.58.0/23 17227 -206.16.60.0/24 17227 -206.16.61.0/24 7018 -206.16.62.0/23 17227 -206.16.64.0/23 17227 -206.16.66.0/23 17231 -206.16.68.0/23 17233 -206.16.70.0/23 17229 -206.16.72.0/23 7018 -206.16.74.0/23 17226 -206.16.76.0/23 7018 -206.16.78.0/23 4264 -206.16.80.0/22 7018 -206.16.84.0/23 4266 -206.16.86.0/23 17232 -206.16.88.0/23 17225 -206.16.90.0/23 7018 -206.16.92.0/23 4263 -206.16.94.0/23 7018 -206.16.96.0/22 2386 -206.16.100.0/24 2386 -206.16.101.0/24 4267 -206.16.102.0/23 7018 -206.16.104.0/23 2386 -206.16.106.0/23 4267 -206.16.108.0/22 2386 -206.16.112.0/21 4267 -206.16.120.0/23 4267 -206.16.122.0/24 4267 -206.16.123.0/24 2386 -206.16.124.0/22 2386 -206.16.128.0/20 4269 -206.16.144.0/22 17225 -206.16.148.0/24 7018 -206.16.149.0/24 17225 -206.16.150.0/23 17225 -206.16.152.0/21 17225 -206.16.160.0/21 17233 -206.16.168.0/21 4269 -206.16.176.0/22 16966 -206.16.180.0/23 7018 -206.16.182.0/23 7105 -206.16.184.0/21 7018 -206.16.192.0/21 17231 -206.16.200.0/22 17231 -206.16.204.0/23 17231 -206.16.206.0/24 17231 -206.16.207.0/24 11880 -206.16.208.0/24 11261 -206.16.209.0/24 17231 -206.16.210.0/24 17231 -206.16.211.0/24 7018 -206.16.212.0/22 17231 -206.16.216.0/21 17231 -206.16.224.0/20 17231 -206.16.240.0/24 393415 -206.16.241.0/24 17231 -206.16.242.0/24 17231 -206.16.243.0/24 7018 -206.16.244.0/24 13788 -206.16.245.0/24 17231 -206.16.246.0/23 17231 -206.16.248.0/21 17231 -206.17.0.0/20 7018 -206.17.16.0/21 17231 -206.17.24.0/24 17231 -206.17.25.0/24 7018 -206.17.26.0/23 17231 -206.17.28.0/22 17231 -206.17.32.0/19 7018 -206.17.64.0/19 7018 -206.17.96.0/23 17225 -206.17.98.0/23 62776 -206.17.100.0/24 17225 -206.17.101.0/24 7018 -206.17.102.0/23 17225 -206.17.104.0/21 17225 -206.17.112.0/20 7018 -206.17.128.0/20 4264 -206.17.144.0/23 7172 -206.17.146.0/23 4264 -206.17.148.0/22 4264 -206.17.152.0/21 4264 -206.17.160.0/22 17232 -206.17.164.0/24 2386 -206.17.165.0/24 17232 -206.17.166.0/24 2386 -206.17.167.0/24 17232 -206.17.168.0/23 17232 -206.17.170.0/24 7018 -206.17.171.0/24 2386 -206.17.172.0/23 2386 -206.17.174.0/23 17232 -206.17.176.0/20 7018 -206.17.192.0/18 7018 -206.18.0.0/18 7018 -206.18.64.0/19 7018 -206.18.96.0/21 17229 -206.18.104.0/22 17229 -206.18.108.0/24 7018 -206.18.109.0/24 17229 -206.18.110.0/23 17229 -206.18.112.0/20 17229 -206.18.128.0/20 4268 -206.18.144.0/21 17229 -206.18.152.0/22 7018 -206.18.156.0/24 17229 -206.18.157.0/24 7018 -206.18.158.0/23 17229 -206.18.160.0/24 2386 -206.18.161.0/24 17232 -206.18.162.0/23 17232 -206.18.164.0/24 17232 -206.18.165.0/24 36246 -206.18.166.0/23 17232 -206.18.168.0/23 2386 -206.18.170.0/24 2386 -206.18.171.0/24 17232 -206.18.172.0/24 7018 -206.18.173.0/24 17232 -206.18.174.0/24 17232 -206.18.175.0/24 2386 -206.18.176.0/22 5731 -206.18.180.0/22 17227 -206.18.184.0/21 17227 -206.18.192.0/21 4268 -206.18.200.0/23 4268 -206.18.202.0/24 4268 -206.18.203.0/24 32216 -206.18.204.0/22 7018 -206.18.208.0/20 4268 -206.18.224.0/24 32216 -206.18.225.0/24 4268 -206.18.226.0/23 4268 -206.18.228.0/24 32216 -206.18.229.0/24 4268 -206.18.230.0/23 4268 -206.18.232.0/21 4268 -206.18.240.0/21 7018 -206.18.248.0/21 4266 -206.19.0.0/20 7018 -206.19.16.0/22 7018 -206.19.20.0/22 4266 -206.19.24.0/21 7018 -206.19.32.0/22 4266 -206.19.36.0/22 7018 -206.19.40.0/21 17225 -206.19.48.0/24 17225 -206.19.49.0/24 7018 -206.19.50.0/24 17225 -206.19.51.0/24 63358 -206.19.52.0/24 7018 -206.19.53.0/24 17225 -206.19.54.0/23 17225 -206.19.56.0/21 17225 -206.19.64.0/22 7018 -206.19.68.0/24 7018 -206.19.69.0/24 4266 -206.19.70.0/23 7018 -206.19.72.0/21 7018 -206.19.80.0/20 7018 -206.19.96.0/19 7018 -206.19.128.0/19 7018 -206.19.160.0/20 7018 -206.19.176.0/21 7018 -206.19.184.0/21 16966 -206.19.192.0/21 4269 -206.19.200.0/22 17232 -206.19.204.0/24 17232 -206.19.205.0/24 2386 -206.19.206.0/23 17232 -206.19.208.0/24 17232 -206.19.209.0/24 2386 -206.19.210.0/23 2386 -206.19.212.0/23 2386 -206.19.214.0/24 2386 -206.19.215.0/24 17232 -206.19.216.0/21 7018 -206.19.224.0/22 16967 -206.19.228.0/24 7018 -206.19.229.0/24 16967 -206.19.230.0/24 16967 -206.19.231.0/24 7018 -206.19.232.0/22 2386 -206.19.236.0/24 2386 -206.19.237.0/24 7018 -206.19.238.0/23 17232 -206.19.240.0/22 7018 -206.19.244.0/24 32224 -206.19.245.0/24 7018 -206.19.246.0/23 7018 -206.19.248.0/21 7018 -206.20.0.0/16 7270 -206.21.0.0/21 600 -206.21.8.0/22 600 -206.21.12.0/23 600 -206.21.14.0/24 31921 -206.21.15.0/24 600 -206.21.16.0/20 600 -206.21.32.0/20 600 -206.21.48.0/21 600 -206.21.56.0/21 3112 -206.21.64.0/19 600 -206.21.96.0/21 600 -206.21.104.0/23 31921 -206.21.106.0/23 600 -206.21.108.0/22 600 -206.21.112.0/20 600 -206.21.128.0/19 600 -206.21.160.0/21 36831 -206.21.168.0/22 36831 -206.21.172.0/22 600 -206.21.176.0/20 600 -206.21.192.0/18 600 -206.22.222.0/24 40443 -206.23.0.0/16 19956 -206.24.0.0/19 3561 -206.24.32.0/20 3561 -206.24.48.0/24 3561 -206.24.49.0/24 22056 -206.24.50.0/23 3561 -206.24.52.0/22 3561 -206.24.56.0/21 3561 -206.24.64.0/18 3561 -206.24.128.0/19 1273 -206.24.160.0/19 3561 -206.24.192.0/18 3561 -206.25.0.0/19 3561 -206.25.32.0/21 3561 -206.25.40.0/22 3561 -206.25.44.0/24 3561 -206.25.45.0/24 395505 -206.25.46.0/23 3561 -206.25.48.0/20 3561 -206.25.64.0/23 3561 -206.25.66.0/24 36271 -206.25.67.0/24 3561 -206.25.68.0/22 3561 -206.25.72.0/21 3561 -206.25.80.0/20 3561 -206.25.96.0/19 3561 -206.25.128.0/21 3561 -206.25.136.0/23 3561 -206.25.138.0/24 3561 -206.25.139.0/24 209 -206.25.140.0/22 3561 -206.25.144.0/20 3561 -206.25.160.0/19 3561 -206.25.192.0/18 3561 -206.26.0.0/19 3561 -206.26.32.0/22 3561 -206.26.36.0/23 2044 -206.26.38.0/23 3561 -206.26.40.0/21 3561 -206.26.48.0/20 3561 -206.26.64.0/18 3561 -206.26.128.0/18 3561 -206.26.192.0/19 3561 -206.26.224.0/21 3561 -206.26.232.0/24 5790 -206.26.233.0/24 3561 -206.26.234.0/24 3561 -206.26.235.0/24 5790 -206.26.236.0/22 3561 -206.26.240.0/20 3561 -206.27.0.0/17 3561 -206.27.128.0/19 3561 -206.27.160.0/23 3561 -206.27.162.0/23 63427 -206.27.164.0/22 3561 -206.27.168.0/22 3561 -206.27.172.0/23 3561 -206.27.174.0/23 40340 -206.27.176.0/20 3561 -206.27.192.0/22 3561 -206.27.196.0/23 3561 -206.27.198.0/23 11255 -206.27.200.0/21 3561 -206.27.208.0/21 3561 -206.27.216.0/22 3561 -206.27.220.0/24 11255 -206.27.221.0/24 3561 -206.27.222.0/23 3561 -206.27.224.0/19 3561 -206.28.0.0/18 3561 -206.28.64.0/22 3561 -206.28.68.0/23 3561 -206.28.70.0/24 3561 -206.28.71.0/24 27487 -206.28.72.0/21 3561 -206.28.80.0/20 3561 -206.28.96.0/19 3561 -206.28.128.0/20 3561 -206.28.144.0/21 3561 -206.28.152.0/24 3561 -206.28.153.0/24 10317 -206.28.154.0/23 3561 -206.28.156.0/22 3561 -206.28.160.0/20 3561 -206.28.176.0/22 55222 -206.28.180.0/22 62809 -206.28.192.0/18 3561 -206.29.0.0/17 3561 -206.29.128.0/20 3561 -206.29.168.0/22 22140 -206.29.176.0/22 22140 -206.29.188.0/22 21928 -206.29.192.0/18 3561 -206.30.0.0/17 3561 -206.30.128.0/19 3561 -206.30.160.0/24 3561 -206.30.161.0/24 26225 -206.30.162.0/23 3561 -206.30.164.0/22 3561 -206.30.168.0/21 3561 -206.30.176.0/20 3561 -206.30.192.0/18 3561 -206.31.0.0/20 3561 -206.31.16.0/24 10584 -206.31.17.0/24 3561 -206.31.18.0/24 3561 -206.31.19.0/24 22087 -206.31.20.0/22 3561 -206.31.24.0/21 3561 -206.31.32.0/21 3561 -206.31.40.0/24 3561 -206.31.41.0/24 63265 -206.31.42.0/23 3561 -206.31.44.0/22 3561 -206.31.48.0/23 3561 -206.31.50.0/23 19950 -206.31.52.0/22 3561 -206.31.56.0/21 3561 -206.31.64.0/18 3561 -206.31.128.0/19 3561 -206.31.160.0/20 3561 -206.31.176.0/23 27680 -206.31.178.0/23 3561 -206.31.180.0/22 3561 -206.31.184.0/21 3561 -206.31.192.0/19 3561 -206.31.224.0/20 3561 -206.31.240.0/23 3561 -206.31.242.0/24 15072 -206.31.243.0/24 3561 -206.31.244.0/22 3561 -206.31.248.0/24 30682 -206.31.249.0/24 3561 -206.31.250.0/23 3561 -206.31.252.0/22 3561 -206.32.0.0/15 3356 -206.34.0.0/18 3356 -206.34.64.0/19 3356 -206.34.96.0/20 3356 -206.34.112.0/21 3356 -206.34.120.0/22 11928 -206.34.124.0/22 3356 -206.34.128.0/19 3356 -206.34.160.0/20 3356 -206.34.176.0/22 3356 -206.34.180.0/24 3356 -206.34.181.0/24 11524 -206.34.182.0/23 3356 -206.34.184.0/21 3356 -206.34.192.0/18 3356 -206.35.0.0/19 3356 -206.35.32.0/22 3356 -206.35.36.0/24 30227 -206.35.37.0/24 3356 -206.35.38.0/23 3356 -206.35.40.0/21 3356 -206.35.48.0/20 3356 -206.35.64.0/18 3356 -206.35.128.0/18 3356 -206.35.192.0/20 3356 -206.35.208.0/22 3356 -206.35.212.0/23 54367 -206.35.214.0/23 3356 -206.35.216.0/21 3356 -206.35.224.0/19 3356 -206.37.0.0/24 1461 -206.37.1.0/24 721 -206.37.2.0/24 721 -206.37.3.0/24 6034 -206.37.4.0/22 6034 -206.37.8.0/24 6034 -206.37.9.0/24 721 -206.37.10.0/24 721 -206.37.11.0/24 1531 -206.37.12.0/24 1461 -206.37.13.0/24 721 -206.37.14.0/23 721 -206.37.16.0/24 721 -206.37.17.0/24 1531 -206.37.18.0/23 721 -206.37.20.0/23 27064 -206.37.22.0/23 721 -206.37.24.0/22 721 -206.37.28.0/22 668 -206.37.32.0/23 721 -206.37.34.0/24 721 -206.37.35.0/24 5972 -206.37.36.0/22 721 -206.37.40.0/21 721 -206.37.48.0/20 721 -206.37.64.0/19 721 -206.37.96.0/21 721 -206.37.104.0/23 721 -206.37.106.0/23 386 -206.37.108.0/24 721 -206.37.109.0/24 386 -206.37.110.0/23 721 -206.37.112.0/21 721 -206.37.120.0/22 721 -206.37.124.0/23 721 -206.37.126.0/24 27066 -206.37.127.0/24 721 -206.37.128.0/21 721 -206.37.136.0/23 721 -206.37.138.0/23 27066 -206.37.140.0/22 721 -206.37.144.0/20 721 -206.37.160.0/20 721 -206.37.176.0/21 721 -206.37.184.0/22 721 -206.37.188.0/23 721 -206.37.190.0/24 721 -206.37.191.0/24 27066 -206.37.192.0/22 721 -206.37.196.0/23 721 -206.37.198.0/24 27064 -206.37.199.0/24 721 -206.37.200.0/22 721 -206.37.204.0/24 5972 -206.37.205.0/24 721 -206.37.206.0/24 721 -206.37.207.0/24 27064 -206.37.208.0/22 721 -206.37.212.0/24 2749 -206.37.213.0/24 721 -206.37.214.0/24 5939 -206.37.215.0/24 721 -206.37.216.0/21 721 -206.37.224.0/24 668 -206.37.225.0/24 27064 -206.37.226.0/23 27064 -206.37.228.0/22 27064 -206.37.232.0/24 1599 -206.37.233.0/24 6034 -206.37.234.0/23 721 -206.37.236.0/23 721 -206.37.238.0/24 1590 -206.37.239.0/24 721 -206.37.240.0/24 1599 -206.37.241.0/24 1531 -206.37.242.0/24 1531 -206.37.243.0/24 27064 -206.37.244.0/24 1531 -206.37.245.0/24 1599 -206.37.246.0/24 1511 -206.37.247.0/24 27064 -206.37.248.0/24 721 -206.37.249.0/24 1598 -206.37.250.0/23 1598 -206.37.252.0/24 668 -206.37.253.0/24 1541 -206.37.254.0/23 1598 -206.38.0.0/16 721 -206.39.0.0/23 386 -206.39.2.0/23 721 -206.39.4.0/23 721 -206.39.6.0/23 5180 -206.39.8.0/24 5180 -206.39.9.0/24 721 -206.39.10.0/24 721 -206.39.11.0/24 5180 -206.39.12.0/23 5180 -206.39.14.0/24 1556 -206.39.15.0/24 721 -206.39.16.0/24 531 -206.39.17.0/24 721 -206.39.18.0/23 721 -206.39.20.0/22 721 -206.39.24.0/23 721 -206.39.26.0/24 1568 -206.39.27.0/24 721 -206.39.28.0/24 1585 -206.39.29.0/24 721 -206.39.30.0/23 721 -206.39.32.0/23 531 -206.39.34.0/24 1495 -206.39.35.0/24 1556 -206.39.36.0/24 1563 -206.39.37.0/24 721 -206.39.38.0/24 1562 -206.39.39.0/24 721 -206.39.40.0/24 367 -206.39.41.0/24 1541 -206.39.42.0/23 721 -206.39.44.0/22 721 -206.39.48.0/21 721 -206.39.56.0/24 385 -206.39.57.0/24 721 -206.39.58.0/23 721 -206.39.60.0/23 721 -206.39.62.0/23 385 -206.39.64.0/18 721 -206.39.128.0/20 721 -206.39.144.0/21 721 -206.39.152.0/24 721 -206.39.153.0/24 1599 -206.39.154.0/24 721 -206.39.155.0/24 1451 -206.39.156.0/22 721 -206.39.160.0/21 721 -206.39.168.0/22 721 -206.39.172.0/24 1461 -206.39.173.0/24 721 -206.39.174.0/23 721 -206.39.176.0/20 721 -206.39.192.0/21 721 -206.39.200.0/23 5133 -206.39.202.0/24 721 -206.39.203.0/24 687 -206.39.204.0/22 721 -206.39.208.0/20 721 -206.39.224.0/20 721 -206.39.240.0/21 721 -206.39.248.0/23 721 -206.39.250.0/24 27064 -206.39.251.0/24 721 -206.39.252.0/22 721 -206.40.32.0/22 7029 -206.40.36.0/22 63186 -206.40.40.0/22 63186 -206.40.44.0/22 7029 -206.40.48.0/22 63186 -206.40.52.0/22 7029 -206.40.56.0/22 7029 -206.40.60.0/23 7029 -206.40.62.0/24 7029 -206.40.63.0/24 63186 -206.40.64.0/19 3561 -206.40.96.0/19 3663 -206.40.128.0/22 3561 -206.40.132.0/24 3561 -206.40.133.0/24 18530 -206.40.134.0/23 3561 -206.40.136.0/21 3561 -206.40.144.0/21 3561 -206.40.152.0/22 3561 -206.40.156.0/23 3561 -206.40.158.0/23 18530 -206.40.168.0/21 64200 -206.40.176.0/20 19856 -206.40.192.0/19 4565 -206.40.224.0/20 32592 -206.40.240.0/21 32592 -206.40.248.0/24 53846 -206.40.249.0/24 32592 -206.40.250.0/23 32592 -206.40.252.0/22 32592 -206.41.0.0/20 3549 -206.41.16.0/21 3549 -206.41.24.0/23 3549 -206.41.26.0/24 3549 -206.41.27.0/24 3356 -206.41.28.0/22 3549 -206.41.32.0/20 32592 -206.41.49.0/24 33144 -206.41.50.0/24 33144 -206.41.53.0/24 33144 -206.41.56.0/23 33144 -206.41.63.0/24 33144 -206.41.72.0/24 43531 -206.41.73.0/24 60653 -206.41.74.0/23 43531 -206.41.76.0/22 43531 -206.41.80.0/24 397474 -206.41.82.0/23 14102 -206.41.84.0/23 14102 -206.41.86.0/24 14102 -206.41.87.0/24 22652 -206.41.88.0/21 22652 -206.41.112.0/20 33211 -206.41.144.0/20 22402 -206.41.160.0/24 134450 -206.41.161.0/24 204472 -206.41.162.0/23 204472 -206.41.164.0/22 204472 -206.41.168.0/22 204472 -206.41.172.0/22 203999 -206.41.176.0/22 203999 -206.41.180.0/22 204472 -206.41.184.0/22 203999 -206.41.191.0/24 58964 -206.41.192.0/21 17054 -206.41.200.0/24 17054 -206.41.201.0/24 397933 -206.41.202.0/23 17054 -206.41.204.0/22 17054 -206.41.208.0/20 17054 -206.41.224.0/21 4574 -206.41.232.0/22 55142 -206.41.236.0/22 4574 -206.41.240.0/20 4574 -206.42.0.0/16 174 -206.43.0.0/19 174 -206.43.32.0/23 174 -206.43.34.0/23 6086 -206.43.36.0/22 174 -206.43.40.0/21 174 -206.43.48.0/20 174 -206.43.64.0/18 174 -206.43.128.0/17 174 -206.44.224.0/20 25716 -206.44.248.0/21 1676 -206.45.0.0/19 7122 -206.45.32.0/21 7122 -206.45.40.0/22 7122 -206.45.44.0/24 7122 -206.45.45.0/24 21774 -206.45.46.0/24 21774 -206.45.47.0/24 7122 -206.45.48.0/20 7122 -206.45.64.0/18 7122 -206.45.128.0/18 7122 -206.45.192.0/20 7122 -206.45.208.0/22 7122 -206.45.212.0/23 7122 -206.45.214.0/23 21774 -206.45.216.0/23 7122 -206.45.218.0/23 21774 -206.45.220.0/22 7122 -206.45.224.0/19 7122 -206.46.0.0/19 701 -206.46.32.0/22 701 -206.46.36.0/22 6976 -206.46.40.0/21 6976 -206.46.48.0/20 6976 -206.46.64.0/18 701 -206.46.128.0/24 7021 -206.46.146.0/23 7021 -206.46.148.0/22 7021 -206.46.152.0/21 7021 -206.46.193.0/24 6976 -206.46.194.0/23 6976 -206.46.196.0/24 6976 -206.46.219.0/24 6976 -206.46.220.0/24 6976 -206.46.232.0/24 6976 -206.46.245.0/24 6976 -206.46.254.0/24 701 -206.47.0.0/23 577 -206.47.2.0/24 19842 -206.47.3.0/24 577 -206.47.4.0/24 577 -206.47.5.0/24 19842 -206.47.6.0/23 577 -206.47.8.0/23 577 -206.47.10.0/24 577 -206.47.11.0/24 394958 -206.47.12.0/23 397168 -206.47.14.0/24 397168 -206.47.15.0/24 577 -206.47.16.0/24 36522 -206.47.17.0/24 577 -206.47.18.0/23 577 -206.47.20.0/23 36522 -206.47.22.0/23 577 -206.47.24.0/22 577 -206.47.28.0/24 577 -206.47.29.0/24 397168 -206.47.30.0/23 397168 -206.47.32.0/23 577 -206.47.34.0/24 36522 -206.47.35.0/24 3848 -206.47.36.0/23 577 -206.47.38.0/24 21552 -206.47.39.0/24 577 -206.47.40.0/23 577 -206.47.42.0/24 27272 -206.47.43.0/24 36522 -206.47.44.0/23 577 -206.47.46.0/24 21552 -206.47.47.0/24 577 -206.47.48.0/22 577 -206.47.52.0/23 577 -206.47.54.0/23 3848 -206.47.56.0/21 577 -206.47.64.0/20 577 -206.47.80.0/24 395198 -206.47.81.0/24 577 -206.47.82.0/23 577 -206.47.84.0/22 577 -206.47.88.0/22 577 -206.47.92.0/23 577 -206.47.94.0/23 397168 -206.47.96.0/22 577 -206.47.100.0/23 397168 -206.47.102.0/23 577 -206.47.104.0/21 577 -206.47.112.0/23 397168 -206.47.114.0/23 577 -206.47.116.0/23 397168 -206.47.118.0/23 577 -206.47.120.0/21 577 -206.47.128.0/22 19152 -206.47.132.0/24 40934 -206.47.133.0/24 577 -206.47.134.0/24 21552 -206.47.135.0/24 577 -206.47.136.0/21 577 -206.47.144.0/22 21724 -206.47.148.0/23 577 -206.47.150.0/24 32277 -206.47.151.0/24 577 -206.47.152.0/23 577 -206.47.154.0/24 21724 -206.47.155.0/24 577 -206.47.156.0/24 577 -206.47.157.0/24 21552 -206.47.158.0/23 577 -206.47.160.0/24 577 -206.47.161.0/24 30048 -206.47.162.0/24 21724 -206.47.163.0/24 13727 -206.47.164.0/24 36522 -206.47.165.0/24 577 -206.47.166.0/24 21724 -206.47.167.0/24 577 -206.47.168.0/24 577 -206.47.169.0/24 36522 -206.47.170.0/23 577 -206.47.172.0/24 577 -206.47.173.0/24 395088 -206.47.174.0/23 577 -206.47.176.0/24 577 -206.47.177.0/24 36522 -206.47.178.0/24 30048 -206.47.179.0/24 577 -206.47.180.0/24 577 -206.47.181.0/24 395088 -206.47.182.0/24 396110 -206.47.183.0/24 577 -206.47.184.0/24 40934 -206.47.185.0/24 577 -206.47.186.0/23 577 -206.47.188.0/22 577 -206.47.192.0/24 25946 -206.47.193.0/24 36522 -206.47.194.0/23 577 -206.47.196.0/24 35911 -206.47.197.0/24 577 -206.47.198.0/23 577 -206.47.200.0/24 577 -206.47.201.0/24 36522 -206.47.202.0/24 577 -206.47.203.0/24 3848 -206.47.204.0/23 577 -206.47.206.0/23 36522 -206.47.208.0/22 577 -206.47.212.0/23 3848 -206.47.214.0/23 577 -206.47.216.0/24 35911 -206.47.217.0/24 577 -206.47.218.0/23 577 -206.47.220.0/23 577 -206.47.222.0/24 577 -206.47.223.0/24 3848 -206.47.224.0/21 577 -206.47.232.0/23 36522 -206.47.234.0/24 36522 -206.47.235.0/24 577 -206.47.236.0/22 577 -206.47.240.0/21 577 -206.47.248.0/23 577 -206.47.250.0/24 577 -206.47.251.0/24 36522 -206.47.252.0/22 577 -206.48.0.0/22 8014 -206.48.4.0/22 5511 -206.48.8.0/21 5511 -206.48.16.0/22 5511 -206.48.20.0/22 11816 -206.48.24.0/21 5511 -206.48.32.0/20 5511 -206.48.48.0/22 5511 -206.48.52.0/24 5511 -206.48.53.0/24 51964 -206.48.54.0/23 51964 -206.48.56.0/21 5511 -206.48.64.0/19 5511 -206.48.96.0/22 5511 -206.48.100.0/22 11816 -206.48.104.0/21 5511 -206.48.112.0/20 5511 -206.48.128.0/21 6505 -206.48.136.0/23 6505 -206.48.138.0/24 6505 -206.48.139.0/24 27735 -206.48.140.0/24 27735 -206.48.141.0/24 6505 -206.48.142.0/23 6505 -206.48.144.0/20 6505 -206.48.160.0/19 5511 -206.48.192.0/19 5511 -206.48.224.0/22 5511 -206.48.228.0/22 6639 -206.48.232.0/21 5511 -206.48.240.0/22 51964 -206.48.244.0/24 5511 -206.48.245.0/24 51964 -206.48.246.0/23 5511 -206.48.248.0/21 5511 -206.49.0.0/20 5511 -206.49.16.0/21 5511 -206.49.24.0/22 5511 -206.49.28.0/23 5511 -206.49.30.0/24 5511 -206.49.31.0/24 51964 -206.49.32.0/21 5511 -206.49.40.0/22 6505 -206.49.44.0/22 51964 -206.49.48.0/21 5511 -206.49.56.0/22 5511 -206.49.60.0/23 5511 -206.49.62.0/24 5511 -206.49.63.0/24 51964 -206.49.64.0/22 5511 -206.49.68.0/23 5511 -206.49.70.0/24 5511 -206.49.71.0/24 51964 -206.49.72.0/21 5511 -206.49.80.0/20 5511 -206.49.96.0/22 5511 -206.49.100.0/24 51964 -206.49.101.0/24 28885 -206.49.102.0/23 5511 -206.49.104.0/22 51964 -206.49.108.0/22 5511 -206.49.112.0/20 5511 -206.49.128.0/19 5511 -206.49.160.0/22 5511 -206.49.164.0/24 5511 -206.49.165.0/24 27717 -206.49.166.0/24 27717 -206.49.167.0/24 5511 -206.49.168.0/21 5511 -206.49.176.0/20 51964 -206.49.192.0/21 51964 -206.49.200.0/21 5511 -206.49.208.0/21 5511 -206.49.216.0/21 6505 -206.49.224.0/19 5511 -206.50.0.0/22 2914 -206.50.4.0/23 2914 -206.50.6.0/23 32256 -206.50.8.0/21 2914 -206.50.16.0/20 2914 -206.50.32.0/19 2914 -206.50.64.0/18 2914 -206.50.128.0/18 2914 -206.50.192.0/19 2914 -206.50.224.0/23 2914 -206.50.226.0/24 2914 -206.50.227.0/24 26246 -206.50.228.0/22 2914 -206.50.232.0/21 2914 -206.50.240.0/20 2914 -206.51.1.0/24 13319 -206.51.9.0/24 812 -206.51.10.0/24 812 -206.51.13.0/24 16477 -206.51.15.0/24 16477 -206.51.23.0/24 11647 -206.51.24.0/23 11647 -206.51.26.0/24 18705 -206.51.28.0/24 40028 -206.51.29.0/24 62900 -206.51.33.0/24 397122 -206.51.35.0/24 393898 -206.51.48.0/20 11427 -206.51.64.0/22 13341 -206.51.68.0/22 22561 -206.51.72.0/21 209 -206.51.80.0/20 22561 -206.51.96.0/20 15142 -206.51.112.0/20 8134 -206.51.128.0/20 31841 -206.51.144.0/21 31841 -206.51.152.0/22 31841 -206.51.156.0/24 31841 -206.51.157.0/24 14657 -206.51.158.0/23 31841 -206.51.160.0/19 31841 -206.51.192.0/24 12042 -206.51.193.0/24 47096 -206.51.194.0/23 12042 -206.51.196.0/24 12042 -206.51.197.0/24 393775 -206.51.198.0/23 12042 -206.51.200.0/21 12042 -206.51.208.0/22 12042 -206.51.212.0/24 22111 -206.51.214.0/24 12042 -206.51.215.0/24 27429 -206.51.216.0/22 12042 -206.51.220.0/24 12042 -206.51.224.0/20 29802 -206.51.240.0/23 23352 -206.51.242.0/24 40509 -206.51.243.0/24 23352 -206.51.244.0/22 23352 -206.51.248.0/22 812 -206.51.252.0/23 812 -206.51.254.0/23 42 -206.52.0.0/16 2914 -206.53.0.0/22 7029 -206.53.4.0/22 40321 -206.53.8.0/21 40405 -206.53.16.0/21 7832 -206.53.40.0/21 18969 -206.53.48.0/20 30407 -206.53.64.0/19 23100 -206.53.96.0/19 11426 -206.53.142.0/24 64213 -206.53.144.0/20 18705 -206.53.160.0/21 13871 -206.53.176.0/20 16413 -206.53.192.0/21 15011 -206.53.208.0/23 17157 -206.53.211.0/24 17157 -206.53.212.0/22 17157 -206.53.222.0/24 23402 -206.53.223.0/24 17157 -206.53.224.0/23 7332 -206.53.226.0/23 18535 -206.53.228.0/22 7332 -206.53.232.0/22 7332 -206.53.236.0/24 62839 -206.53.237.0/24 7332 -206.53.238.0/23 7332 -206.53.240.0/20 7332 -206.54.0.0/18 2914 -206.54.64.0/18 3833 -206.54.154.0/24 18434 -206.54.155.0/24 46672 -206.54.160.0/21 35415 -206.54.168.0/22 35415 -206.54.172.0/24 46786 -206.54.173.0/24 35415 -206.54.174.0/24 40824 -206.54.175.0/24 35415 -206.54.176.0/24 35415 -206.54.177.0/24 40824 -206.54.178.0/23 35415 -206.54.180.0/24 40824 -206.54.181.0/24 35415 -206.54.182.0/23 35415 -206.54.184.0/21 40824 -206.54.192.0/19 12177 -206.55.0.0/18 2914 -206.55.64.0/20 14536 -206.55.80.0/20 21548 -206.55.100.0/22 22992 -206.55.105.0/24 46177 -206.55.107.0/24 46177 -206.55.108.0/24 46177 -206.55.111.0/24 46177 -206.55.112.0/20 22576 -206.55.128.0/19 2044 -206.55.164.0/22 26759 -206.55.172.0/22 11404 -206.55.176.0/20 10242 -206.55.208.0/20 33618 -206.55.224.0/23 5670 -206.55.226.0/24 5670 -206.56.228.0/24 32927 -206.56.245.0/24 32927 -206.56.249.0/24 32927 -206.56.251.0/24 32927 -206.56.252.0/24 32927 -206.56.254.0/24 32927 -206.57.0.0/21 3549 -206.57.8.0/22 3549 -206.57.12.0/23 3549 -206.57.14.0/24 3549 -206.57.15.0/24 26694 -206.57.16.0/23 3549 -206.57.18.0/24 3549 -206.57.19.0/24 46887 -206.57.20.0/22 3549 -206.57.24.0/21 3549 -206.57.32.0/21 3549 -206.57.40.0/23 19009 -206.57.42.0/23 3549 -206.57.44.0/22 3549 -206.57.48.0/21 3549 -206.57.56.0/22 3549 -206.57.60.0/24 7385 -206.57.61.0/24 3549 -206.57.62.0/23 3549 -206.57.64.0/21 3549 -206.57.72.0/21 3512 -206.57.80.0/24 3356 -206.57.81.0/24 3549 -206.57.82.0/23 3549 -206.57.84.0/22 3549 -206.57.88.0/21 3549 -206.57.96.0/19 3549 -206.57.128.0/19 393581 -206.57.160.0/21 2882 -206.57.168.0/21 393581 -206.57.176.0/20 393581 -206.57.192.0/18 393581 -206.58.0.0/21 2914 -206.58.8.0/24 32898 -206.58.9.0/24 2914 -206.58.10.0/23 2914 -206.58.12.0/22 2914 -206.58.16.0/20 2914 -206.58.32.0/22 2914 -206.58.36.0/23 2914 -206.58.38.0/24 12044 -206.58.39.0/24 2914 -206.58.40.0/21 2914 -206.58.48.0/20 2914 -206.58.64.0/18 2914 -206.58.128.0/19 2914 -206.58.160.0/20 2914 -206.58.176.0/23 12044 -206.58.178.0/23 2914 -206.58.180.0/22 2914 -206.58.184.0/21 2914 -206.58.192.0/21 2914 -206.58.200.0/23 22892 -206.58.202.0/23 2914 -206.58.204.0/22 2914 -206.58.208.0/20 2914 -206.58.224.0/19 2914 -206.59.0.0/16 14654 -206.61.0.0/23 11280 -206.61.2.0/23 1239 -206.61.4.0/22 1239 -206.61.8.0/21 1239 -206.61.16.0/21 1239 -206.61.24.0/22 1239 -206.61.28.0/23 46536 -206.61.30.0/23 1239 -206.61.32.0/19 1239 -206.61.64.0/18 1239 -206.61.128.0/21 1239 -206.61.136.0/22 1239 -206.61.140.0/23 10818 -206.61.142.0/23 1239 -206.61.144.0/21 1239 -206.61.152.0/22 1239 -206.61.156.0/24 30116 -206.61.157.0/24 1239 -206.61.158.0/23 1239 -206.61.160.0/21 1239 -206.61.168.0/21 6062 -206.61.176.0/20 1239 -206.61.192.0/19 1239 -206.61.224.0/21 30526 -206.61.232.0/21 1239 -206.61.240.0/20 1239 -206.62.0.0/16 174 -206.63.0.0/20 1982 -206.63.16.0/21 1982 -206.63.24.0/22 10594 -206.63.28.0/22 1982 -206.63.32.0/19 1982 -206.63.64.0/23 10594 -206.63.66.0/23 1982 -206.63.68.0/22 1982 -206.63.72.0/22 1982 -206.63.76.0/23 1982 -206.63.78.0/23 10594 -206.63.80.0/21 10594 -206.63.88.0/21 20271 -206.63.96.0/20 1982 -206.63.112.0/22 1982 -206.63.116.0/22 10594 -206.63.120.0/21 1982 -206.63.128.0/19 1982 -206.63.160.0/21 1982 -206.63.168.0/23 1982 -206.63.170.0/23 10594 -206.63.172.0/22 1982 -206.63.176.0/23 10594 -206.63.178.0/23 1982 -206.63.180.0/22 1982 -206.63.184.0/22 10594 -206.63.188.0/22 1982 -206.63.192.0/19 1982 -206.63.224.0/21 10594 -206.63.232.0/21 20271 -206.63.240.0/20 1982 -206.64.0.0/18 701 -206.64.64.0/20 701 -206.64.80.0/21 701 -206.64.88.0/23 4208 -206.64.90.0/23 701 -206.64.92.0/22 701 -206.64.96.0/19 701 -206.64.128.0/18 701 -206.64.192.0/21 701 -206.64.200.0/24 13666 -206.64.201.0/24 701 -206.64.202.0/23 701 -206.64.204.0/22 701 -206.64.208.0/20 701 -206.64.224.0/19 701 -206.65.0.0/19 701 -206.65.32.0/20 701 -206.65.48.0/20 6597 -206.65.64.0/18 701 -206.65.128.0/19 701 -206.65.160.0/19 11486 -206.65.192.0/20 701 -206.65.208.0/22 701 -206.65.212.0/24 10455 -206.65.213.0/24 701 -206.65.214.0/23 701 -206.65.216.0/21 701 -206.65.224.0/19 701 -206.66.0.0/19 701 -206.66.32.0/21 705 -206.66.40.0/23 705 -206.66.42.0/24 701 -206.66.43.0/24 705 -206.66.44.0/24 701 -206.66.45.0/24 705 -206.66.46.0/23 705 -206.66.48.0/20 701 -206.66.64.0/23 701 -206.66.66.0/24 394453 -206.66.67.0/24 701 -206.66.68.0/22 701 -206.66.72.0/21 701 -206.66.80.0/24 701 -206.66.81.0/24 1339 -206.66.82.0/23 701 -206.66.84.0/24 701 -206.66.85.0/24 15146 -206.66.86.0/23 701 -206.66.88.0/21 701 -206.66.96.0/19 701 -206.66.128.0/20 701 -206.66.144.0/23 701 -206.66.146.0/24 13750 -206.66.147.0/24 701 -206.66.148.0/22 701 -206.66.152.0/21 701 -206.66.160.0/19 701 -206.66.192.0/21 705 -206.66.200.0/24 701 -206.66.201.0/24 705 -206.66.202.0/23 705 -206.66.204.0/22 705 -206.66.208.0/20 701 -206.66.224.0/19 701 -206.67.0.0/22 701 -206.67.4.0/24 701 -206.67.5.0/24 17037 -206.67.6.0/23 701 -206.67.8.0/21 701 -206.67.16.0/20 701 -206.67.32.0/19 701 -206.67.64.0/18 701 -206.67.128.0/19 701 -206.67.160.0/21 4208 -206.67.168.0/21 701 -206.67.176.0/20 701 -206.67.192.0/19 701 -206.67.224.0/21 701 -206.67.232.0/23 701 -206.67.234.0/24 12087 -206.67.235.0/24 701 -206.67.236.0/24 6619 -206.67.237.0/24 701 -206.67.238.0/23 701 -206.67.240.0/20 701 -206.68.0.0/18 2914 -206.68.64.0/19 2914 -206.68.96.0/20 2914 -206.68.112.0/22 2914 -206.68.116.0/22 395428 -206.68.120.0/21 2914 -206.68.128.0/17 2914 -206.69.0.0/16 2914 -206.71.16.0/21 18434 -206.71.24.0/24 18434 -206.71.28.0/23 18434 -206.71.31.0/24 18434 -206.71.32.0/24 33189 -206.71.33.0/24 14263 -206.71.34.0/23 14263 -206.71.36.0/22 14263 -206.71.40.0/21 14263 -206.71.48.0/20 31797 -206.71.64.0/20 13649 -206.71.80.0/24 3356 -206.71.81.0/24 13649 -206.71.82.0/23 13649 -206.71.84.0/22 13649 -206.71.88.0/21 13649 -206.71.96.0/19 6621 -206.71.160.0/23 6130 -206.71.162.0/24 53559 -206.71.163.0/24 6130 -206.71.164.0/22 6130 -206.71.168.0/24 6130 -206.71.169.0/24 21581 -206.71.170.0/23 6130 -206.71.172.0/24 53559 -206.71.173.0/24 6130 -206.71.174.0/23 6130 -206.71.176.0/23 6130 -206.71.178.0/24 6130 -206.71.179.0/24 21581 -206.71.180.0/23 6130 -206.71.182.0/24 6130 -206.71.183.0/24 53559 -206.71.184.0/22 6130 -206.71.188.0/23 6130 -206.71.190.0/24 21581 -206.71.191.0/24 53559 -206.71.192.0/19 12033 -206.71.224.0/20 6079 -206.71.240.0/22 6079 -206.71.244.0/24 46587 -206.71.245.0/24 6079 -206.71.246.0/23 6079 -206.71.248.0/22 6079 -206.71.252.0/24 6079 -206.71.253.0/24 393259 -206.71.254.0/23 6079 -206.72.0.0/23 5056 -206.72.2.0/24 62825 -206.72.3.0/24 5056 -206.72.4.0/24 5056 -206.72.5.0/24 62825 -206.72.6.0/24 62825 -206.72.7.0/24 5056 -206.72.8.0/23 5056 -206.72.10.0/24 5056 -206.72.11.0/24 22534 -206.72.12.0/22 5056 -206.72.16.0/24 5056 -206.72.17.0/24 397475 -206.72.18.0/23 5056 -206.72.20.0/24 63394 -206.72.21.0/24 5056 -206.72.22.0/23 5056 -206.72.24.0/23 5056 -206.72.26.0/24 62825 -206.72.27.0/24 33690 -206.72.28.0/22 5056 -206.72.32.0/24 5056 -206.72.33.0/24 18883 -206.72.34.0/24 5056 -206.72.35.0/24 18883 -206.72.36.0/22 18883 -206.72.40.0/23 18883 -206.72.42.0/24 5056 -206.72.43.0/24 18883 -206.72.44.0/22 18883 -206.72.48.0/21 18883 -206.72.56.0/21 5056 -206.72.64.0/20 10993 -206.72.80.0/21 10993 -206.72.92.0/22 10993 -206.72.96.0/20 11045 -206.72.112.0/20 19271 -206.72.192.0/20 19318 -206.72.209.0/24 16526 -206.72.212.0/22 394111 -206.72.224.0/19 30029 -206.73.0.0/16 3300 -206.74.0.0/23 12208 -206.74.2.0/23 2711 -206.74.4.0/24 19635 -206.74.5.0/24 2711 -206.74.6.0/23 2711 -206.74.8.0/24 6167 -206.74.9.0/24 12208 -206.74.10.0/24 23118 -206.74.11.0/24 16863 -206.74.12.0/24 19635 -206.74.13.0/24 12208 -206.74.14.0/24 23118 -206.74.15.0/24 16863 -206.74.16.0/24 2711 -206.74.17.0/24 23118 -206.74.18.0/24 23118 -206.74.19.0/24 7250 -206.74.20.0/24 23118 -206.74.21.0/24 2711 -206.74.22.0/23 2711 -206.74.24.0/24 16863 -206.74.25.0/24 2711 -206.74.26.0/24 2711 -206.74.27.0/24 19212 -206.74.28.0/22 15153 -206.74.32.0/23 7250 -206.74.34.0/24 19212 -206.74.35.0/24 23118 -206.74.36.0/23 14615 -206.74.38.0/23 18671 -206.74.40.0/24 18671 -206.74.41.0/24 2711 -206.74.42.0/24 2711 -206.74.43.0/24 23118 -206.74.44.0/23 16863 -206.74.46.0/24 2711 -206.74.47.0/24 18671 -206.74.48.0/23 18671 -206.74.50.0/23 395437 -206.74.52.0/24 2711 -206.74.53.0/24 12208 -206.74.54.0/24 2711 -206.74.55.0/24 23118 -206.74.56.0/22 2711 -206.74.60.0/24 19635 -206.74.61.0/24 2711 -206.74.62.0/24 14615 -206.74.63.0/24 23118 -206.74.64.0/24 22646 -206.74.65.0/24 2711 -206.74.66.0/24 2711 -206.74.67.0/24 14615 -206.74.68.0/23 2711 -206.74.70.0/24 23118 -206.74.71.0/24 16863 -206.74.72.0/24 19635 -206.74.73.0/24 2711 -206.74.74.0/23 2711 -206.74.76.0/23 12208 -206.74.78.0/24 12208 -206.74.79.0/24 2711 -206.74.80.0/23 2711 -206.74.82.0/24 19635 -206.74.83.0/24 18671 -206.74.84.0/22 2711 -206.74.88.0/21 2711 -206.74.96.0/21 14615 -206.74.104.0/22 10279 -206.74.108.0/23 21830 -206.74.110.0/24 10279 -206.74.111.0/24 19635 -206.74.112.0/24 18671 -206.74.113.0/24 16863 -206.74.114.0/23 2711 -206.74.116.0/23 12208 -206.74.118.0/24 7250 -206.74.119.0/24 2711 -206.74.120.0/22 2711 -206.74.124.0/24 2711 -206.74.125.0/24 19635 -206.74.126.0/23 2711 -206.74.128.0/20 10279 -206.74.144.0/24 2939 -206.74.145.0/24 12208 -206.74.146.0/23 2711 -206.74.148.0/24 2711 -206.74.149.0/24 12208 -206.74.150.0/24 2711 -206.74.151.0/24 29897 -206.74.152.0/23 29897 -206.74.154.0/23 2711 -206.74.156.0/23 29897 -206.74.158.0/23 2711 -206.74.160.0/21 2711 -206.74.168.0/24 16863 -206.74.169.0/24 19635 -206.74.170.0/24 2711 -206.74.171.0/24 6167 -206.74.172.0/24 16863 -206.74.173.0/24 18671 -206.74.174.0/23 2711 -206.74.176.0/22 2711 -206.74.180.0/24 18671 -206.74.181.0/24 23118 -206.74.182.0/24 23118 -206.74.183.0/24 12208 -206.74.184.0/24 14615 -206.74.185.0/24 23118 -206.74.186.0/23 2711 -206.74.188.0/23 23118 -206.74.190.0/24 397068 -206.74.191.0/24 14615 -206.74.192.0/22 2711 -206.74.196.0/23 2711 -206.74.198.0/24 18671 -206.74.199.0/24 7250 -206.74.200.0/22 2711 -206.74.204.0/23 2711 -206.74.206.0/24 14615 -206.74.207.0/24 12208 -206.74.208.0/24 2711 -206.74.209.0/24 7250 -206.74.210.0/24 40641 -206.74.211.0/24 2711 -206.74.212.0/23 2711 -206.74.214.0/24 2711 -206.74.215.0/24 22646 -206.74.216.0/22 2711 -206.74.220.0/22 15153 -206.74.224.0/24 2711 -206.74.225.0/24 18671 -206.74.226.0/23 10279 -206.74.228.0/24 10279 -206.74.229.0/24 18671 -206.74.230.0/24 22646 -206.74.231.0/24 2711 -206.74.232.0/24 14615 -206.74.233.0/24 10279 -206.74.234.0/24 10279 -206.74.235.0/24 2711 -206.74.236.0/24 19212 -206.74.237.0/24 7250 -206.74.238.0/24 7250 -206.74.239.0/24 16863 -206.74.240.0/24 19635 -206.74.241.0/24 2711 -206.74.242.0/23 2711 -206.74.244.0/23 14615 -206.74.246.0/23 2711 -206.74.248.0/23 2711 -206.74.250.0/24 2711 -206.74.251.0/24 18671 -206.74.252.0/24 14615 -206.74.253.0/24 2711 -206.74.254.0/23 2711 -206.75.0.0/20 852 -206.75.16.0/24 64200 -206.75.17.0/24 852 -206.75.18.0/23 852 -206.75.20.0/22 852 -206.75.24.0/21 852 -206.75.32.0/23 852 -206.75.34.0/24 852 -206.75.35.0/24 64200 -206.75.36.0/22 852 -206.75.40.0/21 852 -206.75.48.0/20 852 -206.75.64.0/20 852 -206.75.80.0/21 852 -206.75.88.0/23 852 -206.75.90.0/24 13911 -206.75.91.0/24 852 -206.75.92.0/22 852 -206.75.96.0/20 852 -206.75.112.0/23 852 -206.75.114.0/24 30633 -206.75.115.0/24 852 -206.75.116.0/22 852 -206.75.120.0/21 852 -206.75.128.0/18 852 -206.75.192.0/20 852 -206.75.208.0/23 6171 -206.75.210.0/24 6171 -206.75.211.0/24 852 -206.75.212.0/24 852 -206.75.213.0/24 6171 -206.75.214.0/23 852 -206.75.216.0/21 852 -206.75.224.0/21 6171 -206.75.232.0/22 852 -206.75.236.0/24 16623 -206.75.237.0/24 852 -206.75.238.0/23 852 -206.75.240.0/20 852 -206.76.0.0/21 3354 -206.76.8.0/22 3354 -206.76.12.0/23 276 -206.76.14.0/23 3354 -206.76.16.0/20 3354 -206.76.32.0/19 3354 -206.76.64.0/18 18 -206.76.128.0/18 3354 -206.76.192.0/19 32093 -206.76.224.0/22 3354 -206.76.228.0/23 14104 -206.76.230.0/23 3354 -206.76.232.0/21 3354 -206.76.240.0/20 3354 -206.77.0.0/19 54933 -206.77.32.0/19 3354 -206.77.64.0/19 3354 -206.77.96.0/21 3354 -206.77.104.0/22 3354 -206.77.108.0/23 3354 -206.77.110.0/24 6922 -206.77.111.0/24 3354 -206.77.112.0/20 3354 -206.77.128.0/17 3354 -206.78.0.0/19 21828 -206.78.32.0/19 21694 -206.78.64.0/19 21545 -206.78.96.0/20 21545 -206.78.112.0/23 27502 -206.78.114.0/23 26403 -206.78.116.0/22 26403 -206.78.120.0/21 26403 -206.78.128.0/19 21915 -206.78.160.0/19 21828 -206.78.192.0/19 21694 -206.78.224.0/21 21915 -206.78.232.0/22 21915 -206.78.236.0/22 2152 -206.78.240.0/20 21545 -206.79.0.0/22 3561 -206.79.4.0/24 14415 -206.79.5.0/24 63182 -206.79.6.0/23 3561 -206.79.8.0/21 3561 -206.79.16.0/20 3561 -206.79.32.0/19 3561 -206.79.64.0/18 3561 -206.79.128.0/18 3561 -206.79.192.0/23 3561 -206.79.194.0/24 3561 -206.79.195.0/24 63182 -206.79.196.0/22 209 -206.79.200.0/21 3561 -206.79.208.0/21 3561 -206.79.216.0/23 63182 -206.79.218.0/23 3561 -206.79.220.0/22 3561 -206.79.224.0/19 3561 -206.80.0.0/21 3549 -206.80.8.0/22 3549 -206.80.12.0/23 3549 -206.80.14.0/24 20400 -206.80.15.0/24 3549 -206.80.16.0/21 3549 -206.80.24.0/22 3549 -206.80.28.0/22 9751 -206.80.32.0/19 27435 -206.80.64.0/19 20340 -206.80.96.0/23 14230 -206.80.100.0/22 14230 -206.80.112.0/21 14230 -206.80.120.0/22 14230 -206.80.124.0/24 14230 -206.80.126.0/23 14230 -206.80.128.0/21 30678 -206.80.136.0/23 30678 -206.80.138.0/24 12104 -206.80.139.0/24 7912 -206.80.140.0/22 30678 -206.80.144.0/20 64266 -206.80.160.0/19 701 -206.80.192.0/19 209 -206.80.240.0/20 11814 -206.81.0.0/19 14061 -206.81.32.0/22 2828 -206.81.36.0/23 2828 -206.81.38.0/24 31854 -206.81.39.0/24 2828 -206.81.40.0/21 2828 -206.81.48.0/20 2828 -206.81.64.0/22 26864 -206.81.68.0/24 26864 -206.81.70.0/24 26253 -206.81.71.0/24 26864 -206.81.72.0/23 26253 -206.81.75.0/24 26253 -206.81.77.0/24 26253 -206.81.78.0/23 26253 -206.81.84.0/22 26570 -206.81.88.0/21 7018 -206.81.96.0/21 8046 -206.81.110.0/24 14694 -206.81.128.0/21 209 -206.81.136.0/24 17150 -206.81.137.0/24 209 -206.81.138.0/23 209 -206.81.140.0/22 209 -206.81.144.0/24 209 -206.81.145.0/24 1287 -206.81.146.0/23 209 -206.81.148.0/22 209 -206.81.152.0/21 209 -206.81.164.0/22 11523 -206.81.168.0/22 22002 -206.81.172.0/23 22002 -206.81.174.0/24 22002 -206.81.175.0/24 26839 -206.81.176.0/23 13896 -206.81.178.0/24 13896 -206.81.180.0/22 13896 -206.81.185.0/24 13896 -206.81.188.0/24 13896 -206.81.191.0/24 13896 -206.81.192.0/20 209 -206.81.208.0/23 13866 -206.81.210.0/23 209 -206.81.212.0/22 209 -206.81.216.0/24 209 -206.81.217.0/24 15238 -206.81.218.0/23 209 -206.81.220.0/22 11307 -206.81.224.0/23 4232 -206.81.230.0/23 4232 -206.81.232.0/24 3549 -206.81.233.0/24 4232 -206.81.234.0/23 4232 -206.81.236.0/24 4232 -206.81.238.0/23 4232 -206.81.240.0/23 4232 -206.81.242.0/24 4232 -206.81.244.0/24 4232 -206.81.248.0/24 4232 -206.81.250.0/24 4232 -206.81.252.0/24 4232 -206.81.255.0/24 4232 -206.82.16.0/20 14773 -206.82.32.0/19 2914 -206.82.64.0/20 7029 -206.82.80.0/24 32042 -206.82.81.0/24 7029 -206.82.82.0/23 7029 -206.82.84.0/22 7029 -206.82.88.0/21 7029 -206.82.108.0/24 23540 -206.82.112.0/20 11471 -206.82.128.0/23 6453 -206.82.130.0/24 25543 -206.82.131.0/24 6453 -206.82.132.0/24 6453 -206.82.133.0/24 42298 -206.82.134.0/23 6453 -206.82.136.0/22 6453 -206.82.140.0/24 8551 -206.82.141.0/24 6453 -206.82.142.0/23 6453 -206.82.144.0/22 22027 -206.82.148.0/23 22027 -206.82.152.0/21 22027 -206.82.164.0/22 40518 -206.82.168.0/21 40514 -206.82.192.0/21 5693 -206.82.200.0/24 5693 -206.82.201.0/24 394014 -206.82.202.0/23 5693 -206.82.204.0/22 5693 -206.82.208.0/22 5693 -206.82.212.0/24 5693 -206.82.213.0/24 396270 -206.82.214.0/23 5693 -206.82.216.0/21 5693 -206.82.224.0/24 5655 -206.82.226.0/24 5655 -206.82.228.0/22 5655 -206.82.240.0/22 5655 -206.82.244.0/23 5655 -206.82.249.0/24 8123 -206.82.250.0/24 8123 -206.82.252.0/24 5655 -206.82.255.0/24 5655 -206.83.0.0/21 10596 -206.83.8.0/24 139686 -206.83.9.0/24 63221 -206.83.16.0/20 23188 -206.83.32.0/21 16941 -206.83.40.0/24 207083 -206.83.41.0/24 53356 -206.83.48.0/20 33563 -206.83.64.0/23 2828 -206.83.66.0/24 2828 -206.83.67.0/24 18670 -206.83.68.0/22 2828 -206.83.72.0/21 2828 -206.83.80.0/23 2828 -206.83.82.0/23 14919 -206.83.84.0/22 2828 -206.83.88.0/21 2828 -206.83.137.0/24 64213 -206.83.160.0/20 22711 -206.83.176.0/20 14157 -206.83.192.0/21 26978 -206.83.200.0/22 26978 -206.83.204.0/23 26978 -206.83.206.0/24 12259 -206.83.207.0/24 26978 -206.83.208.0/20 26978 -206.83.224.0/22 11893 -206.83.228.0/22 32138 -206.83.232.0/21 32654 -206.83.240.0/20 26259 -206.84.0.0/15 174 -206.86.0.0/16 2914 -206.87.0.0/18 393249 -206.87.64.0/20 271 -206.87.80.0/20 16462 -206.87.96.0/19 393249 -206.87.128.0/19 393249 -206.87.160.0/19 16462 -206.87.192.0/19 393249 -206.87.224.0/20 393249 -206.87.240.0/22 852 -206.87.244.0/22 271 -206.87.248.0/21 271 -206.89.167.0/24 7018 -206.96.0.0/18 3561 -206.96.96.0/19 3561 -206.96.128.0/17 3561 -206.97.0.0/20 3561 -206.97.16.0/21 3561 -206.97.32.0/19 3561 -206.97.64.0/18 3561 -206.97.128.0/17 3561 -206.98.0.0/17 3561 -206.98.128.0/18 3561 -206.98.192.0/20 3561 -206.98.208.0/23 3561 -206.98.210.0/23 21547 -206.98.212.0/22 3561 -206.98.216.0/21 3561 -206.98.224.0/21 3561 -206.98.232.0/24 35452 -206.98.233.0/24 3561 -206.98.234.0/23 3561 -206.98.236.0/22 3561 -206.98.240.0/20 3561 -206.99.0.0/18 3561 -206.99.64.0/20 3561 -206.99.80.0/21 3561 -206.99.88.0/22 3561 -206.99.92.0/23 3561 -206.99.94.0/23 209 -206.99.96.0/20 3561 -206.99.112.0/21 3561 -206.99.128.0/19 3561 -206.99.160.0/20 3561 -206.99.176.0/21 3561 -206.99.184.0/24 3561 -206.99.185.0/24 20416 -206.99.186.0/23 3561 -206.99.188.0/22 3561 -206.99.192.0/18 3561 -206.100.0.0/15 3561 -206.102.0.0/24 6423 -206.102.1.0/24 3561 -206.102.2.0/23 6423 -206.102.4.0/22 6423 -206.102.8.0/23 6423 -206.102.10.0/24 6423 -206.102.11.0/24 2044 -206.102.12.0/22 6423 -206.102.16.0/20 3561 -206.102.32.0/19 3561 -206.102.64.0/18 3561 -206.102.128.0/18 3561 -206.102.192.0/21 3561 -206.102.200.0/24 3561 -206.102.201.0/24 25650 -206.102.202.0/23 3561 -206.102.204.0/22 3561 -206.102.208.0/20 3561 -206.102.224.0/19 3561 -206.103.0.0/19 3561 -206.103.32.0/21 6423 -206.103.40.0/24 6423 -206.103.41.0/24 2044 -206.103.42.0/23 6423 -206.103.44.0/24 6423 -206.103.45.0/24 2044 -206.103.46.0/23 6423 -206.103.48.0/20 6423 -206.103.64.0/18 3561 -206.103.128.0/18 3561 -206.103.192.0/20 3561 -206.103.208.0/22 209 -206.103.212.0/24 3561 -206.103.213.0/24 209 -206.103.214.0/23 209 -206.103.216.0/21 3561 -206.103.224.0/19 3561 -206.104.0.0/18 1239 -206.104.64.0/19 1239 -206.104.96.0/22 1239 -206.104.100.0/23 32614 -206.104.102.0/24 1239 -206.104.103.0/24 18567 -206.104.104.0/21 1239 -206.104.112.0/20 1239 -206.104.128.0/18 1239 -206.104.192.0/20 1239 -206.104.208.0/22 1239 -206.104.212.0/22 18632 -206.104.216.0/21 1239 -206.104.224.0/20 1239 -206.104.240.0/21 1239 -206.104.248.0/21 7029 -206.105.0.0/20 1239 -206.105.16.0/20 6062 -206.105.32.0/19 1239 -206.105.64.0/21 3816 -206.105.72.0/21 1239 -206.105.80.0/20 1239 -206.105.96.0/20 1239 -206.105.112.0/22 1239 -206.105.116.0/24 27932 -206.105.117.0/24 1239 -206.105.118.0/23 1239 -206.105.120.0/21 1239 -206.105.128.0/19 1239 -206.105.160.0/21 1239 -206.105.168.0/23 21547 -206.105.170.0/23 1239 -206.105.172.0/22 1239 -206.105.176.0/20 6372 -206.105.192.0/22 1239 -206.105.196.0/23 53739 -206.105.198.0/23 1239 -206.105.200.0/21 5778 -206.105.208.0/24 1239 -206.105.209.0/24 14386 -206.105.210.0/23 1239 -206.105.212.0/24 1239 -206.105.213.0/24 32614 -206.105.214.0/23 1239 -206.105.216.0/21 1239 -206.105.224.0/19 1239 -206.106.0.0/17 1239 -206.106.128.0/22 1239 -206.106.132.0/22 21547 -206.106.136.0/24 1239 -206.106.137.0/24 11449 -206.106.138.0/23 1239 -206.106.140.0/22 1239 -206.106.144.0/20 1239 -206.106.160.0/19 1239 -206.106.192.0/19 1239 -206.106.224.0/20 1239 -206.106.240.0/21 1239 -206.106.248.0/24 3816 -206.106.249.0/24 1239 -206.106.250.0/24 1239 -206.106.251.0/24 3816 -206.106.252.0/22 3816 -206.107.0.0/19 1239 -206.107.32.0/21 1239 -206.107.40.0/21 4373 -206.107.48.0/20 1239 -206.107.64.0/22 1239 -206.107.68.0/23 1239 -206.107.70.0/24 26845 -206.107.71.0/24 1239 -206.107.72.0/22 1239 -206.107.76.0/24 63467 -206.107.77.0/24 1239 -206.107.78.0/24 10333 -206.107.79.0/24 1239 -206.107.80.0/20 1239 -206.107.96.0/21 5778 -206.107.104.0/22 5778 -206.107.108.0/23 5778 -206.107.110.0/24 81 -206.107.111.0/24 5778 -206.107.112.0/20 5778 -206.107.128.0/21 1239 -206.107.136.0/21 19783 -206.107.144.0/21 1239 -206.107.152.0/21 33154 -206.107.160.0/19 1239 -206.107.192.0/23 12241 -206.107.194.0/23 1239 -206.107.196.0/22 1239 -206.107.200.0/21 1239 -206.107.208.0/23 1239 -206.107.210.0/24 1239 -206.107.211.0/24 19312 -206.107.212.0/22 1239 -206.107.216.0/23 1239 -206.107.218.0/24 1239 -206.107.219.0/24 19312 -206.107.220.0/24 11398 -206.107.221.0/24 209 -206.107.222.0/24 209 -206.107.223.0/24 11398 -206.107.224.0/24 1239 -206.107.225.0/24 27748 -206.107.226.0/23 1239 -206.107.228.0/22 1239 -206.107.232.0/23 1239 -206.107.234.0/24 1239 -206.107.235.0/24 15157 -206.107.236.0/22 1239 -206.107.240.0/20 1239 -206.108.0.0/24 393424 -206.108.4.0/22 25706 -206.108.11.0/24 11814 -206.108.16.0/20 852 -206.108.32.0/24 23139 -206.108.40.0/21 14436 -206.108.48.0/22 46597 -206.108.52.0/24 46597 -206.108.54.0/23 46597 -206.108.58.0/24 19402 -206.108.59.0/24 19515 -206.108.60.0/24 19515 -206.108.63.0/24 19515 -206.108.64.0/19 852 -206.108.104.0/23 577 -206.108.110.0/23 577 -206.108.113.0/24 42 -206.108.116.0/22 35850 -206.108.120.0/21 11628 -206.108.128.0/18 21570 -206.108.192.0/19 852 -206.108.226.0/24 5769 -206.108.227.0/24 54139 -206.108.230.0/24 5769 -206.108.232.0/22 11334 -206.108.250.0/23 6407 -206.108.252.0/23 25636 -206.108.254.0/24 25636 -206.109.0.0/17 17306 -206.109.168.0/21 17306 -206.109.176.0/20 17306 -206.109.192.0/20 17306 -206.109.224.0/19 17306 -206.110.0.0/16 6099 -206.111.0.0/19 2828 -206.111.32.0/20 2828 -206.111.48.0/24 2828 -206.111.49.0/24 701 -206.111.50.0/24 54964 -206.111.51.0/24 2828 -206.111.52.0/22 2828 -206.111.56.0/21 2828 -206.111.64.0/18 2828 -206.111.128.0/21 2828 -206.111.136.0/24 22199 -206.111.137.0/24 2828 -206.111.138.0/23 2828 -206.111.140.0/22 2828 -206.111.144.0/20 2828 -206.111.160.0/19 2828 -206.111.192.0/18 2828 -206.112.0.0/18 701 -206.112.64.0/21 11486 -206.112.72.0/24 11486 -206.112.73.0/24 395356 -206.112.74.0/23 11486 -206.112.76.0/22 11486 -206.112.80.0/20 11486 -206.112.96.0/19 11486 -206.112.128.0/19 701 -206.112.160.0/20 701 -206.112.176.0/20 11486 -206.112.192.0/18 701 -206.113.0.0/20 701 -206.113.16.0/21 701 -206.113.24.0/21 11081 -206.113.32.0/19 701 -206.113.64.0/18 701 -206.113.128.0/19 17373 -206.113.160.0/19 701 -206.113.192.0/20 701 -206.113.208.0/24 701 -206.113.209.0/24 26704 -206.113.210.0/23 701 -206.113.212.0/22 701 -206.113.216.0/21 701 -206.113.224.0/19 701 -206.114.0.0/19 701 -206.114.32.0/19 4208 -206.114.64.0/18 701 -206.114.128.0/19 701 -206.114.160.0/20 701 -206.114.176.0/23 30175 -206.114.178.0/24 30175 -206.114.179.0/24 701 -206.114.180.0/22 701 -206.114.184.0/21 701 -206.114.192.0/19 3561 -206.114.224.0/22 705 -206.114.228.0/24 705 -206.114.229.0/24 701 -206.114.230.0/23 705 -206.114.232.0/21 705 -206.114.240.0/20 705 -206.115.0.0/16 701 -206.116.0.0/19 852 -206.116.32.0/20 852 -206.116.48.0/21 852 -206.116.56.0/24 16944 -206.116.57.0/24 852 -206.116.58.0/23 852 -206.116.60.0/22 852 -206.116.64.0/20 852 -206.116.80.0/22 852 -206.116.84.0/23 852 -206.116.86.0/23 376 -206.116.88.0/21 852 -206.116.96.0/19 852 -206.116.128.0/17 852 -206.117.0.0/22 226 -206.117.4.0/23 226 -206.117.6.0/24 4 -206.117.7.0/24 226 -206.117.8.0/21 226 -206.117.16.0/21 226 -206.117.24.0/23 226 -206.117.26.0/24 226 -206.117.27.0/24 4 -206.117.28.0/23 226 -206.117.30.0/24 226 -206.117.31.0/24 4 -206.117.32.0/24 16408 -206.117.33.0/24 226 -206.117.34.0/23 226 -206.117.36.0/24 226 -206.117.37.0/24 4 -206.117.38.0/23 226 -206.117.40.0/21 226 -206.117.48.0/24 226 -206.117.49.0/24 85 -206.117.50.0/23 85 -206.117.52.0/24 226 -206.117.53.0/24 85 -206.117.54.0/24 85 -206.117.55.0/24 226 -206.117.56.0/22 226 -206.117.60.0/23 226 -206.117.62.0/24 226 -206.117.63.0/24 5726 -206.117.64.0/21 226 -206.117.72.0/23 226 -206.117.74.0/24 5726 -206.117.75.0/24 226 -206.117.76.0/22 226 -206.117.80.0/21 226 -206.117.88.0/23 226 -206.117.90.0/24 47 -206.117.91.0/24 226 -206.117.92.0/22 226 -206.117.96.0/21 226 -206.117.104.0/24 226 -206.117.105.0/24 3832 -206.117.106.0/23 226 -206.117.108.0/22 226 -206.117.112.0/20 226 -206.117.128.0/22 226 -206.117.132.0/22 27609 -206.117.136.0/22 27609 -206.117.140.0/23 3832 -206.117.142.0/23 226 -206.117.144.0/22 27609 -206.117.148.0/24 226 -206.117.149.0/24 62988 -206.117.150.0/24 62988 -206.117.151.0/24 226 -206.117.152.0/21 226 -206.117.160.0/21 226 -206.117.168.0/24 5726 -206.117.169.0/24 226 -206.117.170.0/23 226 -206.117.172.0/22 226 -206.117.176.0/22 226 -206.117.180.0/23 226 -206.117.182.0/24 3832 -206.117.183.0/24 226 -206.117.184.0/21 226 -206.117.192.0/22 11162 -206.117.196.0/23 226 -206.117.198.0/24 226 -206.117.199.0/24 3832 -206.117.200.0/22 226 -206.117.204.0/23 3832 -206.117.206.0/23 226 -206.117.208.0/23 226 -206.117.210.0/24 3832 -206.117.211.0/24 226 -206.117.212.0/22 226 -206.117.216.0/21 226 -206.117.224.0/19 226 -206.118.0.0/16 3134 -206.119.0.0/16 174 -206.120.145.0/24 6900 -206.120.161.0/24 5714 -206.121.0.0/16 7018 -206.122.24.0/24 6900 -206.122.61.0/24 5714 -206.122.102.0/24 6900 -206.122.108.0/23 6900 -206.122.176.0/22 2129 -206.122.202.0/24 15290 -206.122.249.0/24 23495 -206.123.0.0/24 53732 -206.123.2.0/23 5769 -206.123.4.0/24 16532 -206.123.6.0/24 6280 -206.123.11.0/24 10929 -206.123.14.0/24 11290 -206.123.17.0/24 27363 -206.123.18.0/24 5769 -206.123.20.0/23 395663 -206.123.26.0/23 13768 -206.123.28.0/23 47027 -206.123.32.0/23 4470 -206.123.34.0/24 4470 -206.123.35.0/24 11342 -206.123.36.0/22 4470 -206.123.40.0/22 4470 -206.123.44.0/23 11342 -206.123.46.0/23 4470 -206.123.48.0/23 376 -206.123.52.0/22 11389 -206.123.56.0/21 46494 -206.123.64.0/21 30496 -206.123.72.0/23 30496 -206.123.74.0/24 30496 -206.123.75.0/24 36024 -206.123.76.0/23 30496 -206.123.78.0/24 14195 -206.123.79.0/24 30496 -206.123.80.0/21 30496 -206.123.88.0/23 55045 -206.123.90.0/24 26545 -206.123.91.0/24 30496 -206.123.92.0/23 30496 -206.123.94.0/24 30496 -206.123.95.0/24 36352 -206.123.96.0/21 30496 -206.123.104.0/23 30496 -206.123.106.0/24 30496 -206.123.107.0/24 36024 -206.123.108.0/24 36024 -206.123.109.0/24 30496 -206.123.110.0/23 30496 -206.123.112.0/23 30496 -206.123.114.0/23 36024 -206.123.116.0/22 30496 -206.123.120.0/21 30496 -206.123.128.0/24 396362 -206.123.129.0/24 3223 -206.123.131.0/24 9009 -206.123.132.0/22 9009 -206.123.136.0/24 54527 -206.123.137.0/24 9009 -206.123.138.0/24 9009 -206.123.139.0/24 49335 -206.123.140.0/24 9009 -206.123.141.0/24 1421 -206.123.142.0/24 1421 -206.123.143.0/24 3223 -206.123.144.0/24 36351 -206.123.145.0/24 396362 -206.123.146.0/24 9009 -206.123.147.0/24 51430 -206.123.148.0/23 9009 -206.123.150.0/23 35017 -206.123.152.0/21 35017 -206.123.160.0/19 271 -206.123.192.0/21 30688 -206.123.200.0/24 398163 -206.123.201.0/24 16933 -206.123.202.0/23 30688 -206.123.204.0/23 30688 -206.123.206.0/24 30401 -206.123.207.0/24 30688 -206.123.208.0/24 394195 -206.123.209.0/24 398163 -206.123.210.0/24 398163 -206.123.211.0/24 30688 -206.123.212.0/23 30688 -206.123.214.0/24 30688 -206.123.215.0/24 395604 -206.123.216.0/23 16933 -206.123.218.0/24 16933 -206.123.219.0/24 394195 -206.123.220.0/24 394568 -206.123.221.0/24 30688 -206.123.222.0/23 30688 -206.123.224.0/22 22181 -206.123.228.0/23 22181 -206.123.232.0/22 22181 -206.123.240.0/20 13333 -206.124.0.0/19 6653 -206.124.48.0/20 7018 -206.124.64.0/23 701 -206.124.66.0/23 6995 -206.124.68.0/22 6995 -206.124.72.0/23 6995 -206.124.74.0/24 6995 -206.124.76.0/22 6995 -206.124.80.0/24 6995 -206.124.83.0/24 6995 -206.124.84.0/23 6995 -206.124.86.0/24 701 -206.124.90.0/23 701 -206.124.104.0/21 13886 -206.124.112.0/21 18705 -206.124.120.0/22 18705 -206.124.124.0/24 18705 -206.124.126.0/23 18705 -206.124.128.0/19 18530 -206.124.160.0/24 36614 -206.124.164.0/23 36614 -206.124.174.0/23 36614 -206.124.176.0/22 36614 -206.124.180.0/23 36614 -206.124.184.0/22 36614 -206.124.191.0/24 36614 -206.124.192.0/19 5009 -206.124.224.0/19 5726 -206.125.40.0/21 35916 -206.125.48.0/22 174 -206.125.52.0/24 174 -206.125.56.0/23 174 -206.125.58.0/24 174 -206.125.60.0/22 174 -206.125.64.0/19 13868 -206.125.112.0/20 7067 -206.125.128.0/20 15129 -206.125.144.0/21 393821 -206.125.152.0/23 394598 -206.125.154.0/23 23188 -206.125.156.0/22 23188 -206.125.164.0/22 46609 -206.125.168.0/21 25795 -206.125.176.0/22 7018 -206.125.180.0/23 7018 -206.125.200.0/21 32277 -206.125.208.0/20 29873 -206.126.0.0/20 36315 -206.126.16.0/20 23265 -206.126.32.0/22 4943 -206.126.36.0/23 4943 -206.126.38.0/24 36366 -206.126.39.0/24 4943 -206.126.40.0/22 4943 -206.126.44.0/23 4943 -206.126.46.0/24 25956 -206.126.47.0/24 4943 -206.126.48.0/23 4943 -206.126.50.0/24 25956 -206.126.51.0/24 4943 -206.126.52.0/24 55075 -206.126.53.0/24 25956 -206.126.54.0/24 25956 -206.126.55.0/24 4943 -206.126.56.0/22 4943 -206.126.60.0/24 4943 -206.126.61.0/24 25956 -206.126.62.0/23 4943 -206.126.72.0/21 23175 -206.126.80.0/21 36493 -206.126.88.0/22 36493 -206.126.92.0/23 36493 -206.126.94.0/24 55053 -206.126.95.0/24 36493 -206.126.96.0/22 46506 -206.126.100.0/24 393773 -206.126.112.0/24 14086 -206.126.115.0/24 39326 -206.126.120.0/21 15344 -206.126.128.0/19 8018 -206.126.160.0/21 15084 -206.126.168.0/22 15084 -206.126.172.0/23 15084 -206.126.176.0/20 15084 -206.126.200.0/22 20329 -206.126.204.0/23 393870 -206.126.207.0/24 29863 -206.126.208.0/20 36001 -206.126.224.0/24 3561 -206.126.226.0/23 25853 -206.126.228.0/24 32743 -206.126.229.0/24 6349 -206.126.230.0/23 6349 -206.126.232.0/23 393844 -206.126.242.0/23 18615 -206.126.244.0/24 14432 -206.126.246.0/23 54866 -206.126.248.0/23 394305 -206.126.251.0/24 394725 -206.126.252.0/24 25961 -206.126.255.0/24 54182 -206.127.0.0/24 3900 -206.127.1.0/24 22363 -206.127.2.0/23 3900 -206.127.4.0/24 3900 -206.127.5.0/24 22363 -206.127.6.0/24 3900 -206.127.7.0/24 22363 -206.127.8.0/21 3900 -206.127.16.0/20 3900 -206.127.32.0/19 11114 -206.127.64.0/18 4043 -206.127.136.0/21 18572 -206.127.168.0/22 23005 -206.127.172.0/22 54431 -206.127.176.0/20 26793 -206.127.192.0/22 9009 -206.127.196.0/22 262287 -206.127.200.0/21 9009 -206.127.208.0/21 55803 -206.127.216.0/22 55803 -206.127.220.0/22 9009 -206.127.224.0/19 11563 -206.128.0.0/19 3561 -206.128.64.0/20 19881 -206.128.80.0/20 40165 -206.128.96.0/20 27382 -206.128.120.0/21 23308 -206.128.128.0/22 3561 -206.128.132.0/24 3561 -206.128.133.0/24 22511 -206.128.134.0/23 6640 -206.128.136.0/23 6640 -206.128.138.0/23 3561 -206.128.140.0/22 3561 -206.128.144.0/21 3561 -206.128.152.0/21 6640 -206.128.160.0/21 3561 -206.128.168.0/22 3561 -206.128.172.0/24 27487 -206.128.173.0/24 6640 -206.128.174.0/23 3561 -206.128.176.0/23 6640 -206.128.178.0/23 3561 -206.128.180.0/22 3561 -206.128.184.0/21 3561 -206.128.216.0/22 1273 -206.128.224.0/19 2379 -206.129.0.0/22 3561 -206.129.4.0/24 3561 -206.129.5.0/24 18530 -206.129.6.0/23 18530 -206.129.8.0/24 18530 -206.129.9.0/24 3561 -206.129.10.0/23 3561 -206.129.12.0/22 3561 -206.129.16.0/20 3561 -206.129.32.0/19 3561 -206.129.64.0/19 3561 -206.129.96.0/20 3561 -206.129.112.0/22 18530 -206.129.116.0/22 3561 -206.129.120.0/21 3561 -206.129.128.0/17 3561 -206.130.2.0/24 12536 -206.130.4.0/24 4891 -206.130.5.0/24 396158 -206.130.6.0/24 53885 -206.130.8.0/24 25946 -206.130.9.0/24 812 -206.130.11.0/24 30176 -206.130.12.0/24 30176 -206.130.16.0/24 3356 -206.130.17.0/24 22146 -206.130.18.0/24 22146 -206.130.19.0/24 3356 -206.130.22.0/24 54614 -206.130.25.0/24 3549 -206.130.43.0/24 14618 -206.130.49.0/24 25636 -206.130.52.0/24 11272 -206.130.58.0/24 812 -206.130.62.0/23 26375 -206.130.64.0/24 5690 -206.130.65.0/24 16871 -206.130.75.0/24 11647 -206.130.84.0/24 395235 -206.130.85.0/24 22438 -206.130.86.0/24 6407 -206.130.87.0/24 11647 -206.130.88.0/24 22653 -206.130.90.0/24 53486 -206.130.91.0/24 11647 -206.130.94.0/23 209 -206.130.96.0/20 29854 -206.130.112.0/21 29854 -206.130.120.0/24 46562 -206.130.121.0/24 29854 -206.130.122.0/23 29854 -206.130.124.0/23 29854 -206.130.126.0/24 29854 -206.130.127.0/24 46562 -206.130.128.0/20 13370 -206.130.144.0/22 30120 -206.130.148.0/24 22831 -206.130.151.0/24 33007 -206.130.152.0/23 14453 -206.130.160.0/21 577 -206.130.168.0/22 577 -206.130.172.0/23 577 -206.130.174.0/24 23498 -206.130.176.0/24 393994 -206.130.178.0/24 26531 -206.130.179.0/24 30638 -206.130.183.0/24 7311 -206.130.187.0/24 23498 -206.130.189.0/24 23498 -206.130.190.0/23 11287 -206.130.192.0/20 11287 -206.130.208.0/21 11287 -206.130.216.0/23 11287 -206.130.218.0/24 11287 -206.130.219.0/24 25636 -206.130.220.0/24 25946 -206.130.222.0/24 57848 -206.130.228.0/24 394485 -206.130.238.0/24 33007 -206.130.239.0/24 852 -206.130.240.0/23 19842 -206.130.243.0/24 395119 -206.130.244.0/23 46525 -206.131.0.0/17 8148 -206.131.128.0/19 8148 -206.131.168.0/23 3356 -206.131.171.0/24 3356 -206.131.180.0/22 3356 -206.131.184.0/22 3356 -206.131.192.0/20 132204 -206.131.208.0/20 17339 -206.131.224.0/19 7794 -206.132.0.0/21 3561 -206.132.8.0/24 3561 -206.132.9.0/24 19779 -206.132.10.0/23 3561 -206.132.12.0/22 3561 -206.132.16.0/22 3561 -206.132.20.0/24 22064 -206.132.21.0/24 3561 -206.132.22.0/23 3561 -206.132.24.0/23 3561 -206.132.26.0/24 3561 -206.132.27.0/24 46885 -206.132.28.0/22 3561 -206.132.32.0/20 3561 -206.132.48.0/20 23184 -206.132.64.0/20 3549 -206.132.80.0/21 3549 -206.132.88.0/22 3549 -206.132.92.0/23 3549 -206.132.94.0/24 32013 -206.132.95.0/24 3549 -206.132.96.0/23 3549 -206.132.98.0/24 3549 -206.132.99.0/24 52468 -206.132.100.0/22 3549 -206.132.104.0/21 3549 -206.132.112.0/20 3549 -206.132.128.0/20 7459 -206.132.144.0/20 3561 -206.132.160.0/20 2497 -206.132.176.0/20 36086 -206.132.192.0/21 3549 -206.132.200.0/23 3549 -206.132.202.0/24 26842 -206.132.203.0/24 3549 -206.132.204.0/24 53316 -206.132.205.0/24 3549 -206.132.206.0/23 3549 -206.132.208.0/24 18850 -206.132.209.0/24 3549 -206.132.210.0/23 3549 -206.132.212.0/22 3549 -206.132.216.0/21 3549 -206.132.224.0/22 262248 -206.132.228.0/22 3549 -206.132.232.0/23 3549 -206.132.234.0/24 3549 -206.132.235.0/24 3356 -206.132.236.0/22 3549 -206.132.240.0/20 3549 -206.135.0.0/20 4565 -206.135.16.0/24 4565 -206.135.17.0/24 20396 -206.135.18.0/23 4565 -206.135.20.0/22 4565 -206.135.24.0/21 4565 -206.135.32.0/19 4565 -206.135.64.0/19 4565 -206.135.96.0/23 4565 -206.135.98.0/24 7018 -206.135.99.0/24 4565 -206.135.100.0/22 4565 -206.135.104.0/21 4565 -206.135.112.0/20 4565 -206.135.128.0/21 4565 -206.135.136.0/23 18566 -206.135.138.0/23 4565 -206.135.140.0/22 4565 -206.135.144.0/20 4565 -206.135.160.0/22 4565 -206.135.164.0/23 4565 -206.135.166.0/23 18566 -206.135.168.0/22 4565 -206.135.172.0/23 4565 -206.135.174.0/23 18566 -206.135.176.0/21 18566 -206.135.184.0/21 4565 -206.135.192.0/18 4565 -206.136.0.0/18 701 -206.136.64.0/20 701 -206.136.80.0/22 701 -206.136.84.0/22 11086 -206.136.88.0/21 701 -206.136.96.0/19 701 -206.136.128.0/19 701 -206.136.160.0/20 701 -206.136.176.0/21 701 -206.136.184.0/24 701 -206.136.185.0/24 26656 -206.136.186.0/23 701 -206.136.188.0/22 701 -206.136.192.0/19 701 -206.136.224.0/23 701 -206.136.226.0/24 701 -206.136.227.0/24 36336 -206.136.228.0/22 701 -206.136.232.0/21 701 -206.136.240.0/20 701 -206.137.0.0/18 701 -206.137.64.0/19 701 -206.137.96.0/20 701 -206.137.112.0/24 701 -206.137.113.0/24 16937 -206.137.114.0/23 701 -206.137.116.0/22 701 -206.137.120.0/21 701 -206.137.128.0/20 701 -206.137.144.0/20 394453 -206.137.160.0/19 701 -206.137.192.0/19 701 -206.137.224.0/21 701 -206.137.232.0/23 701 -206.137.234.0/24 701 -206.137.235.0/24 33354 -206.137.236.0/22 701 -206.137.240.0/20 701 -206.138.0.0/20 701 -206.138.16.0/20 15146 -206.138.32.0/19 701 -206.138.64.0/18 701 -206.138.128.0/19 701 -206.138.160.0/21 701 -206.138.168.0/21 8075 -206.138.176.0/22 701 -206.138.180.0/22 26556 -206.138.184.0/21 701 -206.138.192.0/18 701 -206.139.0.0/18 701 -206.139.64.0/24 701 -206.139.65.0/24 21596 -206.139.66.0/23 701 -206.139.68.0/22 701 -206.139.72.0/21 701 -206.139.80.0/20 701 -206.139.96.0/19 701 -206.139.128.0/21 701 -206.139.136.0/23 701 -206.139.138.0/23 14103 -206.139.140.0/22 701 -206.139.144.0/20 701 -206.139.160.0/19 701 -206.139.192.0/18 701 -206.140.99.0/24 7018 -206.140.100.0/24 7018 -206.140.120.0/23 2386 -206.141.192.0/24 7132 -206.141.250.0/23 7132 -206.141.252.0/23 7132 -206.142.0.0/22 3561 -206.142.4.0/24 3561 -206.142.5.0/24 209 -206.142.6.0/23 3561 -206.142.8.0/21 3561 -206.142.16.0/20 3561 -206.142.32.0/19 3561 -206.142.64.0/18 3561 -206.142.128.0/18 3561 -206.142.192.0/19 3561 -206.142.224.0/21 3561 -206.142.232.0/23 3561 -206.142.234.0/24 3561 -206.142.235.0/24 13458 -206.142.236.0/22 3561 -206.142.240.0/21 6640 -206.142.248.0/21 3561 -206.143.44.0/23 10998 -206.144.0.0/19 5006 -206.144.32.0/24 5006 -206.144.33.0/24 7821 -206.144.34.0/23 5006 -206.144.36.0/22 5006 -206.144.40.0/22 5006 -206.144.44.0/24 5006 -206.144.45.0/24 7821 -206.144.46.0/23 5006 -206.144.48.0/21 5006 -206.144.56.0/22 5006 -206.144.60.0/24 7821 -206.144.61.0/24 5006 -206.144.62.0/23 5006 -206.144.64.0/22 53889 -206.144.68.0/23 53889 -206.144.70.0/24 7821 -206.144.71.0/24 53889 -206.144.72.0/21 53889 -206.144.80.0/20 53889 -206.144.96.0/24 5715 -206.144.97.0/24 5006 -206.144.98.0/23 5006 -206.144.100.0/22 5715 -206.144.104.0/21 5715 -206.144.112.0/21 5715 -206.144.120.0/22 5715 -206.144.124.0/23 5715 -206.144.126.0/24 5715 -206.144.127.0/24 5006 -206.144.128.0/20 174 -206.144.144.0/20 5006 -206.144.160.0/24 7821 -206.144.161.0/24 53889 -206.144.162.0/23 53889 -206.144.164.0/22 53889 -206.144.168.0/21 53889 -206.144.176.0/20 53889 -206.144.192.0/24 53889 -206.144.193.0/24 5006 -206.144.194.0/23 5006 -206.144.196.0/22 5006 -206.144.200.0/21 5006 -206.144.208.0/24 53889 -206.144.209.0/24 5006 -206.144.210.0/23 5006 -206.144.212.0/22 5006 -206.144.216.0/22 7821 -206.144.220.0/22 5006 -206.144.224.0/19 5006 -206.145.0.0/18 5006 -206.145.64.0/19 5006 -206.145.96.0/20 5006 -206.145.112.0/21 32327 -206.145.120.0/23 1616 -206.145.122.0/24 1616 -206.145.123.0/24 32327 -206.145.124.0/22 32327 -206.145.128.0/19 5006 -206.145.160.0/21 5006 -206.145.168.0/22 5006 -206.145.172.0/22 1347 -206.145.176.0/23 5006 -206.145.178.0/23 33362 -206.145.180.0/22 5006 -206.145.184.0/21 5006 -206.145.192.0/19 5006 -206.145.224.0/23 33362 -206.145.226.0/23 5006 -206.145.228.0/22 5006 -206.145.232.0/21 5006 -206.145.240.0/20 5006 -206.146.0.0/24 7821 -206.146.1.0/24 5006 -206.146.2.0/23 5006 -206.146.4.0/22 5006 -206.146.8.0/21 5006 -206.146.16.0/20 5006 -206.146.32.0/21 5006 -206.146.40.0/21 21730 -206.146.48.0/22 33362 -206.146.52.0/22 5006 -206.146.56.0/21 5006 -206.146.64.0/19 15100 -206.146.96.0/19 5006 -206.146.128.0/24 5006 -206.146.129.0/24 21573 -206.146.130.0/23 5006 -206.146.132.0/22 5006 -206.146.136.0/21 5006 -206.146.144.0/20 5006 -206.146.160.0/19 5006 -206.146.192.0/18 5006 -206.147.0.0/21 5006 -206.147.8.0/22 5006 -206.147.12.0/22 7821 -206.147.16.0/22 5006 -206.147.20.0/24 7821 -206.147.21.0/24 5006 -206.147.22.0/23 5006 -206.147.24.0/21 5006 -206.147.32.0/19 5006 -206.147.64.0/23 40160 -206.147.66.0/24 40160 -206.147.67.0/24 5006 -206.147.68.0/23 40160 -206.147.70.0/23 5006 -206.147.72.0/24 40160 -206.147.73.0/24 5006 -206.147.74.0/23 5006 -206.147.76.0/24 40160 -206.147.77.0/24 5006 -206.147.78.0/23 5006 -206.147.80.0/23 40160 -206.147.82.0/23 5006 -206.147.84.0/24 40160 -206.147.85.0/24 5006 -206.147.86.0/23 5006 -206.147.88.0/23 40160 -206.147.90.0/23 5006 -206.147.92.0/24 40160 -206.147.93.0/24 5006 -206.147.94.0/23 5006 -206.147.96.0/24 40160 -206.147.97.0/24 5006 -206.147.98.0/23 5006 -206.147.100.0/23 40160 -206.147.102.0/23 5006 -206.147.104.0/24 5715 -206.147.105.0/24 5006 -206.147.106.0/23 5006 -206.147.108.0/22 5006 -206.147.112.0/20 5006 -206.147.128.0/23 11774 -206.147.130.0/24 5006 -206.147.131.0/24 40160 -206.147.132.0/22 11774 -206.147.136.0/22 11774 -206.147.140.0/24 5715 -206.147.141.0/24 11774 -206.147.142.0/23 11774 -206.147.144.0/20 11774 -206.147.160.0/24 5006 -206.147.161.0/24 40160 -206.147.162.0/23 5006 -206.147.164.0/24 40160 -206.147.165.0/24 5006 -206.147.166.0/23 5006 -206.147.168.0/21 5006 -206.147.176.0/24 5006 -206.147.177.0/24 40160 -206.147.178.0/24 5006 -206.147.179.0/24 40160 -206.147.180.0/24 40160 -206.147.181.0/24 5006 -206.147.182.0/23 5006 -206.147.184.0/23 5006 -206.147.186.0/24 40160 -206.147.187.0/24 5006 -206.147.188.0/23 5006 -206.147.190.0/23 40160 -206.147.192.0/24 5006 -206.147.193.0/24 5715 -206.147.194.0/24 5006 -206.147.195.0/24 40160 -206.147.196.0/24 5715 -206.147.197.0/24 5006 -206.147.198.0/23 5006 -206.147.200.0/22 5715 -206.147.204.0/23 5006 -206.147.206.0/23 5715 -206.147.208.0/23 5715 -206.147.210.0/23 5006 -206.147.212.0/23 5715 -206.147.214.0/23 5006 -206.147.216.0/23 5715 -206.147.218.0/23 5006 -206.147.220.0/22 5006 -206.147.224.0/24 5715 -206.147.225.0/24 5006 -206.147.226.0/23 5715 -206.147.228.0/22 5715 -206.147.232.0/24 5715 -206.147.233.0/24 5006 -206.147.234.0/23 5006 -206.147.236.0/24 5006 -206.147.237.0/24 5715 -206.147.238.0/23 5715 -206.147.240.0/24 5715 -206.147.241.0/24 5006 -206.147.242.0/24 5715 -206.147.243.0/24 40160 -206.147.244.0/23 40160 -206.147.246.0/23 5006 -206.147.248.0/23 5006 -206.147.250.0/24 5006 -206.147.251.0/24 5715 -206.147.252.0/22 5006 -206.148.0.0/20 174 -206.148.16.0/22 139355 -206.148.20.0/22 174 -206.148.24.0/21 174 -206.148.32.0/19 174 -206.148.64.0/18 174 -206.148.128.0/17 174 -206.149.0.0/16 174 -206.150.0.0/18 3561 -206.150.64.0/24 3561 -206.150.65.0/24 16941 -206.150.66.0/23 3561 -206.150.68.0/22 3561 -206.150.72.0/21 3561 -206.150.80.0/20 3561 -206.150.96.0/19 16941 -206.150.128.0/19 3561 -206.150.160.0/21 3561 -206.150.168.0/22 3561 -206.150.172.0/23 3561 -206.150.174.0/23 209 -206.150.176.0/20 3561 -206.150.192.0/18 3561 -206.151.0.0/19 3561 -206.151.32.0/20 3561 -206.151.64.0/18 3561 -206.151.128.0/17 3561 -206.152.0.0/21 3561 -206.152.8.0/22 3561 -206.152.12.0/23 3561 -206.152.14.0/24 26158 -206.152.15.0/24 54465 -206.152.16.0/20 3561 -206.152.32.0/21 6640 -206.152.40.0/22 3561 -206.152.44.0/24 3561 -206.152.45.0/24 6640 -206.152.46.0/23 3561 -206.152.48.0/20 3561 -206.152.64.0/18 3561 -206.152.128.0/22 3561 -206.152.132.0/23 3561 -206.152.134.0/24 36271 -206.152.135.0/24 3561 -206.152.136.0/21 3561 -206.152.144.0/20 3561 -206.152.160.0/19 3561 -206.152.192.0/18 3561 -206.153.0.0/18 3561 -206.153.64.0/19 3561 -206.153.128.0/18 3561 -206.153.192.0/20 3561 -206.153.208.0/22 11255 -206.153.212.0/22 3561 -206.153.216.0/21 3561 -206.153.224.0/19 3561 -206.154.0.0/20 209 -206.154.16.0/20 3561 -206.154.32.0/20 3561 -206.154.56.0/21 3561 -206.154.64.0/19 3561 -206.154.96.0/22 3561 -206.154.100.0/23 3561 -206.154.102.0/24 14436 -206.154.103.0/24 3561 -206.154.104.0/21 3561 -206.154.112.0/20 3561 -206.154.128.0/17 3561 -206.155.0.0/19 3561 -206.155.32.0/20 3561 -206.155.48.0/24 14688 -206.155.49.0/24 3561 -206.155.50.0/23 3561 -206.155.52.0/22 3561 -206.155.56.0/21 3561 -206.155.64.0/21 3561 -206.155.72.0/24 21622 -206.155.73.0/24 3561 -206.155.74.0/23 3561 -206.155.76.0/22 3561 -206.155.80.0/20 3561 -206.155.96.0/20 3561 -206.155.112.0/24 23280 -206.155.113.0/24 3561 -206.155.114.0/23 3561 -206.155.116.0/22 3561 -206.155.120.0/21 3561 -206.155.128.0/17 3561 -206.156.0.0/19 3561 -206.156.32.0/24 5790 -206.156.33.0/24 3561 -206.156.34.0/23 3561 -206.156.36.0/22 3561 -206.156.40.0/21 3561 -206.156.48.0/22 3561 -206.156.52.0/24 3561 -206.156.53.0/24 10361 -206.156.54.0/23 3561 -206.156.56.0/21 3561 -206.156.64.0/18 3561 -206.156.128.0/18 3561 -206.156.192.0/19 3561 -206.156.224.0/20 3561 -206.156.240.0/23 3561 -206.156.242.0/24 11255 -206.156.243.0/24 3561 -206.156.244.0/22 3561 -206.156.248.0/21 3561 -206.157.0.0/16 3561 -206.158.0.0/23 1239 -206.158.2.0/24 15142 -206.158.3.0/24 1239 -206.158.4.0/22 32614 -206.158.8.0/21 1239 -206.158.16.0/20 1239 -206.158.32.0/22 1239 -206.158.36.0/22 26724 -206.158.40.0/21 1239 -206.158.48.0/21 1239 -206.158.56.0/22 1239 -206.158.60.0/23 1239 -206.158.62.0/23 21729 -206.158.64.0/18 1239 -206.158.128.0/17 1239 -206.159.0.0/18 1239 -206.159.64.0/19 1239 -206.159.96.0/23 27462 -206.159.98.0/23 1239 -206.159.100.0/24 1239 -206.159.101.0/24 6157 -206.159.102.0/23 1239 -206.159.104.0/21 1239 -206.159.112.0/22 1239 -206.159.116.0/23 1239 -206.159.118.0/23 32614 -206.159.120.0/21 1239 -206.159.128.0/20 1239 -206.159.144.0/21 1239 -206.159.152.0/21 29968 -206.159.160.0/21 29968 -206.159.168.0/21 1239 -206.159.176.0/20 11398 -206.159.192.0/18 2828 -206.160.0.0/17 1239 -206.160.128.0/21 1239 -206.160.136.0/23 1239 -206.160.138.0/24 1239 -206.160.139.0/24 6140 -206.160.140.0/24 47001 -206.160.141.0/24 1239 -206.160.142.0/23 1239 -206.160.144.0/21 27200 -206.160.152.0/21 1239 -206.160.160.0/21 1239 -206.160.168.0/23 1239 -206.160.170.0/24 1239 -206.160.171.0/24 1790 -206.160.172.0/22 1239 -206.160.176.0/24 1239 -206.160.177.0/24 51964 -206.160.178.0/23 1239 -206.160.180.0/22 1239 -206.160.184.0/21 1239 -206.160.192.0/20 1239 -206.160.208.0/22 1239 -206.160.212.0/24 1239 -206.160.213.0/24 11819 -206.160.214.0/23 1239 -206.160.216.0/21 1239 -206.160.224.0/19 1239 -206.161.0.0/19 3491 -206.161.32.0/20 3491 -206.161.48.0/21 3491 -206.161.56.0/22 3491 -206.161.60.0/23 3491 -206.161.62.0/24 4515 -206.161.63.0/24 3491 -206.161.64.0/18 3491 -206.161.128.0/20 3491 -206.161.144.0/21 3491 -206.161.152.0/22 60144 -206.161.156.0/22 3491 -206.161.160.0/19 3491 -206.161.192.0/20 3491 -206.161.208.0/21 3491 -206.161.216.0/23 135357 -206.161.218.0/24 135357 -206.161.219.0/24 3491 -206.161.220.0/22 3491 -206.161.224.0/21 3491 -206.161.232.0/24 135391 -206.161.233.0/24 3491 -206.161.234.0/24 135391 -206.161.235.0/24 3491 -206.161.236.0/22 3491 -206.161.240.0/20 3491 -206.162.128.0/20 852 -206.162.144.0/23 852 -206.162.146.0/24 40206 -206.162.147.0/24 852 -206.162.148.0/22 852 -206.162.152.0/21 852 -206.162.160.0/20 852 -206.162.176.0/21 852 -206.162.184.0/24 852 -206.162.185.0/24 19402 -206.162.186.0/23 852 -206.162.188.0/22 852 -206.162.192.0/19 7871 -206.162.224.0/20 33548 -206.162.240.0/20 25795 -206.163.0.0/18 2914 -206.163.64.0/22 2914 -206.163.68.0/23 2914 -206.163.70.0/24 2914 -206.163.71.0/24 12044 -206.163.72.0/21 2914 -206.163.80.0/20 2914 -206.163.96.0/19 2914 -206.163.128.0/18 2914 -206.163.192.0/19 2914 -206.163.224.0/19 803 -206.164.25.0/24 2129 -206.164.26.0/24 2129 -206.164.30.0/24 60618 -206.164.32.0/21 60204 -206.164.48.0/21 60618 -206.164.56.0/21 60410 -206.164.64.0/21 2160 -206.164.80.0/24 2162 -206.164.88.0/21 54735 -206.164.96.0/21 54735 -206.164.104.0/22 5714 -206.164.128.0/21 25886 -206.164.137.0/24 60204 -206.164.138.0/24 25886 -206.164.140.0/22 25886 -206.164.144.0/21 2161 -206.164.152.0/21 7298 -206.164.160.0/21 2173 -206.164.168.0/21 19647 -206.164.178.0/24 19647 -206.164.180.0/22 6900 -206.164.192.0/23 1293 -206.164.195.0/24 60204 -206.164.196.0/23 60204 -206.164.208.0/20 6900 -206.164.224.0/21 25867 -206.164.232.0/24 25867 -206.164.234.0/24 2129 -206.164.238.0/24 6900 -206.164.239.0/24 701 -206.164.248.0/21 2129 -206.165.0.0/18 3549 -206.165.64.0/20 3549 -206.165.80.0/21 3549 -206.165.88.0/22 3549 -206.165.92.0/22 26556 -206.165.96.0/22 3549 -206.165.100.0/23 3549 -206.165.102.0/24 6461 -206.165.103.0/24 3549 -206.165.104.0/24 40207 -206.165.105.0/24 3549 -206.165.106.0/23 10753 -206.165.108.0/22 3549 -206.165.112.0/20 3549 -206.165.128.0/20 3549 -206.165.144.0/22 3549 -206.165.148.0/24 32270 -206.165.149.0/24 3549 -206.165.150.0/23 3549 -206.165.152.0/23 23160 -206.165.154.0/23 3549 -206.165.156.0/22 3549 -206.165.160.0/19 3549 -206.165.192.0/22 3549 -206.165.196.0/23 3549 -206.165.198.0/24 16523 -206.165.199.0/24 3549 -206.165.200.0/22 3549 -206.165.204.0/23 27947 -206.165.206.0/23 3549 -206.165.208.0/21 3549 -206.165.216.0/23 3549 -206.165.218.0/24 3549 -206.165.219.0/24 23160 -206.165.220.0/23 3356 -206.165.222.0/23 3549 -206.165.224.0/20 3549 -206.165.240.0/21 12154 -206.165.248.0/24 3549 -206.165.249.0/24 53773 -206.165.250.0/24 18837 -206.165.251.0/24 3549 -206.165.252.0/23 3549 -206.165.254.0/24 3549 -206.165.255.0/24 36469 -206.166.0.0/17 6325 -206.166.128.0/21 2914 -206.166.136.0/22 2914 -206.166.140.0/24 14717 -206.166.141.0/24 2914 -206.166.142.0/23 14717 -206.166.144.0/20 2914 -206.166.160.0/19 2914 -206.166.192.0/24 398187 -206.166.193.0/24 53334 -206.166.194.0/23 397116 -206.166.196.0/23 62887 -206.166.198.0/24 16843 -206.166.199.0/24 54809 -206.166.202.0/23 18106 -206.166.204.0/22 53764 -206.166.208.0/22 54650 -206.166.212.0/24 394890 -206.166.213.0/24 3356 -206.166.214.0/24 40851 -206.166.216.0/22 36234 -206.166.220.0/24 54743 -206.166.222.0/24 13837 -206.166.223.0/24 397346 -206.166.228.0/24 396882 -206.166.232.0/23 396882 -206.166.234.0/24 396882 -206.166.236.0/23 396882 -206.166.240.0/21 23314 -206.166.248.0/23 16509 -206.166.250.0/24 7816 -206.166.252.0/24 20055 -206.166.254.0/24 33132 -206.167.0.0/24 376 -206.167.10.0/23 376 -206.167.12.0/22 376 -206.167.16.0/22 376 -206.167.20.0/24 22652 -206.167.22.0/24 16941 -206.167.23.0/24 376 -206.167.24.0/22 376 -206.167.32.0/24 376 -206.167.33.0/24 204170 -206.167.36.0/22 376 -206.167.40.0/21 376 -206.167.49.0/24 376 -206.167.50.0/24 577 -206.167.52.0/24 11489 -206.167.57.0/24 376 -206.167.64.0/22 376 -206.167.68.0/24 376 -206.167.69.0/24 852 -206.167.70.0/23 46293 -206.167.74.0/24 376 -206.167.76.0/23 376 -206.167.78.0/24 376 -206.167.80.0/21 376 -206.167.88.0/24 33602 -206.167.89.0/24 376 -206.167.90.0/23 376 -206.167.92.0/22 376 -206.167.96.0/19 376 -206.167.128.0/18 376 -206.167.192.0/20 376 -206.167.208.0/24 376 -206.167.209.0/24 53437 -206.167.210.0/23 376 -206.167.212.0/22 376 -206.167.216.0/21 376 -206.167.224.0/22 376 -206.167.228.0/23 376 -206.167.230.0/24 13942 -206.167.231.0/24 376 -206.167.232.0/21 376 -206.167.240.0/20 376 -206.168.0.0/24 22658 -206.168.1.0/24 26859 -206.168.9.0/24 25779 -206.168.13.0/24 21777 -206.168.38.0/24 26001 -206.168.39.0/24 21777 -206.168.40.0/22 29831 -206.168.44.0/23 22480 -206.168.46.0/24 22480 -206.168.47.0/24 29831 -206.168.68.0/24 29831 -206.168.96.0/23 21777 -206.168.112.0/24 22658 -206.168.114.0/24 22658 -206.168.117.0/24 22658 -206.168.148.0/24 209 -206.168.153.0/24 10835 -206.168.172.0/24 10835 -206.168.187.0/24 21777 -206.168.188.0/23 21777 -206.168.216.0/22 21777 -206.168.220.0/24 21777 -206.168.222.0/23 21777 -206.168.224.0/21 21777 -206.168.248.0/23 29831 -206.169.0.0/22 3549 -206.169.4.0/23 3549 -206.169.6.0/24 40075 -206.169.7.0/24 3549 -206.169.8.0/21 3549 -206.169.16.0/20 3549 -206.169.32.0/22 3549 -206.169.36.0/23 3549 -206.169.38.0/23 19881 -206.169.40.0/22 3549 -206.169.44.0/23 3549 -206.169.46.0/23 19881 -206.169.48.0/20 3549 -206.169.64.0/24 19881 -206.169.65.0/24 3549 -206.169.66.0/24 3549 -206.169.67.0/24 3356 -206.169.68.0/22 3549 -206.169.72.0/23 3549 -206.169.74.0/24 26588 -206.169.75.0/24 3549 -206.169.76.0/22 3549 -206.169.80.0/21 3549 -206.169.88.0/24 3356 -206.169.89.0/24 19881 -206.169.90.0/23 3549 -206.169.92.0/22 3549 -206.169.96.0/20 3549 -206.169.112.0/23 3549 -206.169.114.0/24 393510 -206.169.115.0/24 3549 -206.169.116.0/22 3549 -206.169.120.0/21 3549 -206.169.128.0/22 3549 -206.169.132.0/24 3549 -206.169.133.0/24 55092 -206.169.134.0/23 19091 -206.169.136.0/22 3549 -206.169.140.0/22 25649 -206.169.144.0/23 3549 -206.169.146.0/24 23433 -206.169.147.0/24 3549 -206.169.148.0/22 3549 -206.169.152.0/24 3549 -206.169.153.0/24 54592 -206.169.154.0/23 3549 -206.169.156.0/22 3549 -206.169.160.0/24 18669 -206.169.161.0/24 3549 -206.169.162.0/23 25649 -206.169.164.0/22 3549 -206.169.168.0/21 3549 -206.169.176.0/20 3549 -206.169.192.0/21 3549 -206.169.200.0/22 3549 -206.169.204.0/23 3549 -206.169.206.0/24 19881 -206.169.207.0/24 3549 -206.169.208.0/23 3549 -206.169.210.0/24 3549 -206.169.211.0/24 29824 -206.169.212.0/24 62621 -206.169.213.0/24 3549 -206.169.214.0/23 3549 -206.169.216.0/24 3549 -206.169.217.0/24 26421 -206.169.218.0/23 26421 -206.169.220.0/22 3549 -206.169.224.0/21 3549 -206.169.232.0/24 3549 -206.169.233.0/24 20168 -206.169.234.0/23 3549 -206.169.236.0/23 3549 -206.169.238.0/24 3549 -206.169.239.0/24 15301 -206.169.240.0/23 3549 -206.169.242.0/24 10753 -206.169.243.0/24 3549 -206.169.244.0/22 3549 -206.169.248.0/22 3549 -206.169.252.0/23 26729 -206.169.254.0/23 21679 -206.170.0.0/20 7018 -206.170.16.0/23 7018 -206.170.18.0/24 25993 -206.170.19.0/24 7018 -206.170.20.0/22 7018 -206.170.24.0/21 7018 -206.170.32.0/21 7018 -206.170.40.0/22 7018 -206.170.44.0/24 7018 -206.170.45.0/24 393508 -206.170.46.0/23 7018 -206.170.48.0/20 7018 -206.170.64.0/21 7018 -206.170.72.0/22 7018 -206.170.76.0/23 7018 -206.170.78.0/24 7018 -206.170.79.0/24 11387 -206.170.80.0/21 7018 -206.170.88.0/23 7018 -206.170.90.0/24 7018 -206.170.91.0/24 32337 -206.170.92.0/22 7018 -206.170.96.0/20 7018 -206.170.112.0/21 7018 -206.170.120.0/22 7018 -206.170.124.0/23 7018 -206.170.126.0/24 7018 -206.170.127.0/24 32035 -206.170.128.0/19 7018 -206.170.160.0/20 7018 -206.170.176.0/21 7018 -206.170.184.0/24 21580 -206.170.185.0/24 7018 -206.170.186.0/23 7018 -206.170.188.0/22 7018 -206.170.192.0/19 7018 -206.170.224.0/22 7018 -206.170.228.0/24 7018 -206.170.229.0/24 16386 -206.170.230.0/23 7018 -206.170.232.0/21 7018 -206.170.240.0/20 7018 -206.171.0.0/24 7018 -206.171.1.0/24 36714 -206.171.2.0/23 7018 -206.171.4.0/22 7018 -206.171.8.0/21 7018 -206.171.16.0/20 7018 -206.171.32.0/19 7018 -206.171.64.0/18 7018 -206.171.128.0/18 7018 -206.171.192.0/20 7018 -206.171.208.0/23 7018 -206.171.210.0/23 2386 -206.171.212.0/22 7018 -206.171.216.0/21 7018 -206.171.224.0/19 7018 -206.172.0.0/22 577 -206.172.4.0/23 577 -206.172.6.0/24 577 -206.172.7.0/24 36522 -206.172.8.0/23 577 -206.172.10.0/23 36522 -206.172.12.0/23 577 -206.172.14.0/24 36522 -206.172.15.0/24 577 -206.172.16.0/24 577 -206.172.17.0/24 36522 -206.172.18.0/23 577 -206.172.20.0/23 577 -206.172.22.0/24 36522 -206.172.23.0/24 577 -206.172.24.0/23 577 -206.172.26.0/24 577 -206.172.27.0/24 36522 -206.172.28.0/24 577 -206.172.29.0/24 21552 -206.172.30.0/23 577 -206.172.32.0/24 36522 -206.172.33.0/24 577 -206.172.34.0/23 577 -206.172.36.0/22 577 -206.172.40.0/21 577 -206.172.48.0/20 577 -206.172.64.0/18 577 -206.172.128.0/18 577 -206.172.192.0/20 577 -206.172.208.0/22 577 -206.172.212.0/23 22573 -206.172.214.0/23 577 -206.172.216.0/21 577 -206.172.224.0/19 577 -206.173.0.0/18 2828 -206.173.64.0/19 2828 -206.173.96.0/22 2828 -206.173.100.0/23 2828 -206.173.102.0/24 2828 -206.173.103.0/24 26197 -206.173.104.0/21 2828 -206.173.112.0/20 2828 -206.173.128.0/17 2828 -206.174.0.0/17 8047 -206.174.128.0/20 19176 -206.174.144.0/22 19176 -206.174.148.0/23 19176 -206.174.150.0/23 20320 -206.174.152.0/21 20320 -206.174.160.0/20 32890 -206.174.176.0/20 15024 -206.174.192.0/21 6327 -206.174.200.0/24 16583 -206.174.201.0/24 6327 -206.174.202.0/23 6327 -206.174.204.0/22 6327 -206.174.208.0/22 6327 -206.174.212.0/24 3397 -206.174.213.0/24 6327 -206.174.214.0/24 6327 -206.174.215.0/24 3397 -206.174.216.0/21 6327 -206.174.224.0/19 31939 -206.176.0.0/21 11736 -206.176.8.0/22 11736 -206.176.12.0/23 11736 -206.176.14.0/23 33189 -206.176.16.0/23 14263 -206.176.18.0/24 33189 -206.176.19.0/24 22215 -206.176.20.0/23 22851 -206.176.22.0/23 22215 -206.176.24.0/22 22215 -206.176.28.0/22 14263 -206.176.32.0/22 14263 -206.176.36.0/23 14263 -206.176.38.0/24 14263 -206.176.39.0/24 22215 -206.176.40.0/23 14263 -206.176.42.0/24 22215 -206.176.43.0/24 14263 -206.176.44.0/24 22215 -206.176.45.0/24 14263 -206.176.46.0/23 14263 -206.176.48.0/22 14263 -206.176.52.0/23 14263 -206.176.54.0/24 22851 -206.176.55.0/24 14263 -206.176.56.0/24 14263 -206.176.57.0/24 11736 -206.176.58.0/24 11736 -206.176.59.0/24 14263 -206.176.60.0/22 14263 -206.176.64.0/18 14263 -206.176.128.0/19 54614 -206.176.160.0/19 18818 -206.176.192.0/20 10352 -206.176.208.0/23 10352 -206.176.210.0/24 27485 -206.176.211.0/24 10352 -206.176.212.0/22 10352 -206.176.216.0/21 10352 -206.176.224.0/19 22667 -206.177.43.0/24 808 -206.177.197.0/24 808 -206.178.0.0/16 808 -206.180.0.0/23 16410 -206.180.2.0/23 396138 -206.180.4.0/22 16410 -206.180.8.0/24 16410 -206.180.10.0/23 396138 -206.180.12.0/22 16410 -206.180.20.0/24 63344 -206.180.24.0/23 16410 -206.180.27.0/24 16410 -206.180.28.0/24 16410 -206.180.29.0/24 396138 -206.180.30.0/24 396138 -206.180.31.0/24 16410 -206.180.32.0/24 63344 -206.180.36.0/22 16410 -206.180.41.0/24 63345 -206.180.43.0/24 395413 -206.180.44.0/24 63344 -206.180.45.0/24 63345 -206.180.46.0/23 63344 -206.180.48.0/24 63344 -206.180.52.0/23 16410 -206.180.54.0/24 16410 -206.180.56.0/24 396138 -206.180.64.0/24 26801 -206.180.66.0/23 26801 -206.180.69.0/24 26801 -206.180.70.0/23 26801 -206.180.76.0/24 26801 -206.180.80.0/24 26801 -206.180.87.0/24 26801 -206.180.91.0/24 26801 -206.180.98.0/23 26801 -206.180.100.0/24 26801 -206.180.104.0/24 26801 -206.180.106.0/23 26801 -206.180.109.0/24 26801 -206.180.110.0/23 26801 -206.180.112.0/20 26801 -206.180.128.0/20 26744 -206.180.144.0/21 26744 -206.180.152.0/23 26744 -206.180.154.0/24 393740 -206.180.155.0/24 26744 -206.180.156.0/22 26744 -206.180.160.0/19 19816 -206.180.192.0/23 27023 -206.180.208.0/20 7341 -206.180.224.0/20 10602 -206.180.240.0/20 22423 -206.181.0.0/17 2828 -206.181.128.0/19 2828 -206.181.160.0/20 2828 -206.181.176.0/21 2828 -206.181.184.0/23 2828 -206.181.186.0/24 54785 -206.181.187.0/24 2828 -206.181.188.0/22 2828 -206.181.192.0/18 2828 -206.182.128.0/17 3300 -206.183.0.0/23 17054 -206.183.2.0/24 55074 -206.183.3.0/24 19385 -206.183.4.0/24 53976 -206.183.5.0/24 19385 -206.183.6.0/23 17054 -206.183.8.0/21 17054 -206.183.16.0/23 17054 -206.183.18.0/24 22734 -206.183.19.0/24 17054 -206.183.20.0/24 17054 -206.183.21.0/24 397658 -206.183.22.0/23 17054 -206.183.24.0/21 17054 -206.183.64.0/19 2828 -206.183.101.0/24 16815 -206.183.102.0/23 16815 -206.183.104.0/23 33480 -206.183.106.0/24 133296 -206.183.107.0/24 33480 -206.183.108.0/23 33480 -206.183.110.0/23 133296 -206.183.112.0/20 54327 -206.183.168.0/21 62682 -206.183.176.0/20 36374 -206.183.192.0/19 2914 -206.183.224.0/19 174 -206.184.0.0/20 2914 -206.184.16.0/24 2914 -206.184.17.0/24 14609 -206.184.18.0/23 2914 -206.184.20.0/22 2914 -206.184.24.0/21 2914 -206.184.32.0/19 2914 -206.184.64.0/18 2914 -206.184.128.0/17 2914 -206.185.0.0/16 174 -206.186.0.0/22 3602 -206.186.4.0/24 812 -206.186.5.0/24 3602 -206.186.6.0/23 3602 -206.186.8.0/21 3602 -206.186.16.0/20 3602 -206.186.32.0/21 3602 -206.186.40.0/22 3602 -206.186.44.0/24 32277 -206.186.45.0/24 3602 -206.186.46.0/23 3602 -206.186.48.0/20 3602 -206.186.64.0/22 3602 -206.186.68.0/24 32277 -206.186.69.0/24 3602 -206.186.70.0/23 3602 -206.186.72.0/21 3602 -206.186.80.0/20 3602 -206.186.96.0/23 812 -206.186.98.0/23 3602 -206.186.100.0/22 3602 -206.186.104.0/21 3602 -206.186.112.0/20 3602 -206.186.128.0/22 3602 -206.186.132.0/24 3602 -206.186.133.0/24 13948 -206.186.134.0/23 3602 -206.186.136.0/21 3602 -206.186.144.0/24 812 -206.186.145.0/24 3602 -206.186.146.0/23 3602 -206.186.148.0/22 3602 -206.186.152.0/21 3602 -206.186.160.0/22 3602 -206.186.164.0/23 3602 -206.186.166.0/24 3602 -206.186.167.0/24 812 -206.186.168.0/22 32277 -206.186.172.0/22 3602 -206.186.176.0/21 3602 -206.186.184.0/23 3602 -206.186.186.0/23 32277 -206.186.188.0/23 32277 -206.186.190.0/23 3602 -206.186.192.0/18 3602 -206.187.4.0/22 20141 -206.187.8.0/21 20141 -206.187.16.0/21 20141 -206.187.24.0/22 603 -206.187.32.0/21 45577 -206.187.48.0/22 134688 -206.187.52.0/22 20860 -206.187.56.0/22 20860 -206.187.60.0/22 1746 -206.187.68.0/22 20860 -206.187.76.0/22 3561 -206.187.96.0/20 20141 -206.188.0.0/20 14492 -206.188.16.0/21 14492 -206.188.24.0/21 22205 -206.188.32.0/19 32148 -206.188.64.0/19 11814 -206.188.96.0/21 46280 -206.188.104.0/21 26288 -206.188.112.0/21 46280 -206.188.120.0/21 26288 -206.188.128.0/21 13802 -206.188.136.0/24 13802 -206.188.137.0/24 3855 -206.188.138.0/23 3855 -206.188.140.0/22 13802 -206.188.144.0/23 3855 -206.188.146.0/23 13802 -206.188.148.0/24 13802 -206.188.149.0/24 3855 -206.188.150.0/24 13802 -206.188.151.0/24 3855 -206.188.152.0/22 13802 -206.188.156.0/23 3855 -206.188.158.0/24 3855 -206.188.159.0/24 13802 -206.188.160.0/19 15267 -206.188.192.0/23 55002 -206.188.194.0/24 19871 -206.188.195.0/24 55002 -206.188.196.0/22 19871 -206.188.200.0/21 19871 -206.188.208.0/22 19871 -206.188.212.0/24 55002 -206.188.213.0/24 19871 -206.188.214.0/23 19871 -206.188.216.0/21 19871 -206.188.224.0/19 16904 -206.189.0.0/16 14061 -206.190.32.0/20 36647 -206.190.64.0/23 3549 -206.190.66.0/24 36635 -206.190.67.0/24 3549 -206.190.68.0/22 3549 -206.190.72.0/23 3549 -206.190.74.0/24 19881 -206.190.75.0/24 3549 -206.190.76.0/24 46220 -206.190.77.0/24 3549 -206.190.78.0/23 3549 -206.190.80.0/20 3549 -206.190.128.0/20 29854 -206.190.144.0/21 29854 -206.190.152.0/23 29854 -206.190.154.0/24 32780 -206.190.155.0/24 36351 -206.190.156.0/22 36351 -206.190.192.0/20 395129 -206.190.208.0/21 32354 -206.190.216.0/22 53764 -206.190.220.0/24 14618 -206.190.228.0/22 46719 -206.190.232.0/21 25820 -206.190.240.0/20 25766 -206.191.0.0/20 812 -206.191.16.0/21 812 -206.191.24.0/22 812 -206.191.28.0/24 6407 -206.191.29.0/24 812 -206.191.30.0/23 812 -206.191.32.0/19 812 -206.191.64.0/18 15290 -206.191.128.0/22 12180 -206.191.132.0/23 12180 -206.191.134.0/24 21744 -206.191.135.0/24 12180 -206.191.136.0/24 27229 -206.191.137.0/24 12180 -206.191.138.0/24 40875 -206.191.139.0/24 12180 -206.191.140.0/23 12180 -206.191.142.0/24 10912 -206.191.143.0/24 12180 -206.191.144.0/22 14744 -206.191.148.0/22 29791 -206.191.152.0/21 29791 -206.191.160.0/22 14744 -206.191.164.0/22 12179 -206.191.168.0/22 14744 -206.191.172.0/24 4319 -206.191.173.0/24 14744 -206.191.174.0/23 14744 -206.191.176.0/22 14744 -206.191.180.0/22 14636 -206.191.184.0/21 1742 -206.191.192.0/19 53340 -206.191.224.0/19 8075 -206.192.0.0/19 3356 -206.192.32.0/22 3356 -206.192.36.0/23 3356 -206.192.38.0/24 19253 -206.192.39.0/24 3356 -206.192.40.0/22 3356 -206.192.44.0/23 3356 -206.192.46.0/24 40721 -206.192.47.0/24 3356 -206.192.48.0/21 3356 -206.192.56.0/22 3356 -206.192.60.0/24 3356 -206.192.61.0/24 36730 -206.192.62.0/23 3356 -206.192.64.0/21 3356 -206.192.72.0/22 3356 -206.192.76.0/23 3356 -206.192.78.0/24 3356 -206.192.79.0/24 10753 -206.192.80.0/21 10753 -206.192.88.0/21 3356 -206.192.96.0/22 3356 -206.192.100.0/22 26084 -206.192.104.0/21 3356 -206.192.112.0/24 36293 -206.192.113.0/24 3356 -206.192.114.0/23 3356 -206.192.116.0/23 3356 -206.192.118.0/24 18773 -206.192.119.0/24 3356 -206.192.120.0/21 3356 -206.192.128.0/18 40586 -206.192.192.0/19 16495 -206.192.224.0/23 13692 -206.192.226.0/23 25899 -206.192.228.0/23 25899 -206.192.230.0/24 25899 -206.192.231.0/24 25961 -206.192.232.0/21 11404 -206.192.240.0/23 11404 -206.192.242.0/23 397422 -206.192.244.0/24 25899 -206.192.245.0/24 63386 -206.192.246.0/23 63386 -206.192.248.0/23 25961 -206.192.250.0/23 25899 -206.192.252.0/22 13692 -206.193.0.0/18 10430 -206.193.64.0/24 54713 -206.193.72.0/21 54713 -206.193.80.0/21 54713 -206.193.128.0/24 2386 -206.193.132.0/23 2386 -206.193.136.0/24 2386 -206.193.140.0/24 2386 -206.193.142.0/23 2386 -206.193.146.0/24 2386 -206.193.170.0/24 4589 -206.193.172.0/24 4589 -206.193.176.0/24 2856 -206.193.180.0/24 3320 -206.193.182.0/24 3320 -206.193.185.0/24 2685 -206.193.192.0/19 11915 -206.193.224.0/22 13333 -206.193.228.0/23 13333 -206.193.230.0/24 35962 -206.193.231.0/24 13333 -206.193.232.0/22 13333 -206.193.236.0/24 13333 -206.193.237.0/24 33358 -206.193.238.0/23 13333 -206.193.240.0/20 13333 -206.194.0.0/18 22164 -206.194.70.0/24 13990 -206.194.72.0/24 13990 -206.194.80.0/20 13990 -206.194.112.0/20 13990 -206.194.128.0/18 4193 -206.194.192.0/18 20115 -206.195.2.0/24 23500 -206.195.3.0/24 40375 -206.195.4.0/23 40375 -206.195.6.0/24 22260 -206.195.7.0/24 23500 -206.195.12.0/24 40375 -206.195.18.0/24 11911 -206.195.19.0/24 22260 -206.195.32.0/23 12337 -206.195.50.0/23 14380 -206.195.52.0/24 7015 -206.195.64.0/22 21565 -206.195.68.0/23 21565 -206.195.70.0/24 21565 -206.195.72.0/21 21565 -206.195.80.0/22 21565 -206.195.95.0/24 21565 -206.195.100.0/24 3549 -206.195.113.0/24 18704 -206.195.128.0/20 19260 -206.195.144.0/20 22709 -206.195.185.0/24 7018 -206.195.186.0/23 46744 -206.195.188.0/24 46744 -206.195.189.0/24 1239 -206.195.192.0/19 26848 -206.196.0.0/19 19271 -206.196.32.0/19 15250 -206.196.64.0/19 2828 -206.196.96.0/19 6428 -206.196.128.0/21 209 -206.196.136.0/23 209 -206.196.138.0/24 54752 -206.196.139.0/24 209 -206.196.140.0/22 209 -206.196.144.0/21 209 -206.196.152.0/24 36458 -206.196.153.0/24 209 -206.196.154.0/23 209 -206.196.156.0/22 209 -206.196.160.0/20 27 -206.196.176.0/21 10886 -206.196.184.0/21 27 -206.196.234.0/23 7029 -206.196.240.0/24 19603 -206.196.241.0/24 63044 -206.196.242.0/23 63044 -206.196.244.0/24 63044 -206.196.246.0/24 63044 -206.196.254.0/24 7029 -206.197.1.0/24 4473 -206.197.9.0/24 26225 -206.197.25.0/24 19534 -206.197.27.0/24 701 -206.197.31.0/24 19554 -206.197.34.0/24 174 -206.197.47.0/24 174 -206.197.49.0/24 26410 -206.197.50.0/24 3356 -206.197.58.0/24 36259 -206.197.59.0/24 19807 -206.197.60.0/22 36259 -206.197.69.0/24 174 -206.197.74.0/24 18527 -206.197.81.0/24 2914 -206.197.88.0/24 40213 -206.197.91.0/24 2711 -206.197.110.0/24 23026 -206.197.111.0/24 55278 -206.197.115.0/24 19647 -206.197.119.0/24 1438 -206.197.121.0/24 3734 -206.197.133.0/24 6130 -206.197.156.0/24 32384 -206.197.161.0/24 17197 -206.197.170.0/24 21918 -206.197.182.0/24 26542 -206.197.189.0/24 55001 -206.197.190.0/24 23345 -206.197.198.0/24 46846 -206.197.199.0/24 209 -206.197.200.0/23 16567 -206.197.209.0/24 62958 -206.197.210.0/24 40300 -206.197.217.0/24 26063 -206.197.224.0/24 40433 -206.197.231.0/24 64249 -206.197.236.0/24 26182 -206.197.238.0/24 6223 -206.197.241.0/24 17163 -206.197.244.0/24 53528 -206.197.251.0/24 53828 -206.198.0.0/19 26844 -206.198.32.0/22 26844 -206.198.36.0/24 3421 -206.198.37.0/24 16509 -206.198.38.0/23 26844 -206.198.40.0/21 26844 -206.198.48.0/20 26844 -206.198.64.0/18 26844 -206.198.128.0/22 26844 -206.198.132.0/22 62642 -206.198.136.0/24 20333 -206.198.144.0/23 46160 -206.198.146.0/24 46160 -206.198.148.0/22 46160 -206.198.160.0/20 36827 -206.198.176.0/22 6576 -206.198.180.0/24 6576 -206.198.181.0/24 23367 -206.198.182.0/23 23367 -206.198.184.0/21 14453 -206.198.192.0/22 54139 -206.198.196.0/22 19693 -206.198.201.0/24 23463 -206.198.202.0/24 23463 -206.198.204.0/22 53949 -206.198.208.0/22 27631 -206.198.212.0/22 394437 -206.198.216.0/22 64267 -206.198.220.0/22 30303 -206.198.224.0/20 11555 -206.198.240.0/24 26844 -206.198.241.0/24 396382 -206.198.242.0/23 19694 -206.198.244.0/22 16574 -206.198.248.0/21 14291 -206.199.12.0/23 55084 -206.200.248.0/21 14495 -206.201.0.0/20 17639 -206.201.16.0/22 53927 -206.201.32.0/20 11427 -206.201.48.0/24 40676 -206.201.51.0/24 40676 -206.201.62.0/23 39992 -206.201.65.0/24 30305 -206.201.66.0/24 30305 -206.201.73.0/24 30305 -206.201.74.0/24 30305 -206.201.77.0/24 30305 -206.201.79.0/24 30305 -206.201.80.0/21 4884 -206.201.88.0/23 4884 -206.201.92.0/23 4884 -206.201.109.0/24 3356 -206.201.112.0/20 2386 -206.201.130.0/23 30354 -206.201.132.0/24 30354 -206.201.133.0/24 15359 -206.201.134.0/24 17158 -206.201.135.0/24 7029 -206.201.136.0/22 15359 -206.201.155.0/24 2386 -206.201.157.0/24 237 -206.201.159.0/24 2386 -206.201.160.0/22 30197 -206.201.164.0/24 30197 -206.201.172.0/22 30197 -206.201.176.0/20 8103 -206.201.192.0/24 10402 -206.201.208.0/23 12205 -206.201.224.0/24 3356 -206.201.226.0/23 36154 -206.201.228.0/23 16744 -206.201.240.0/20 20001 -206.202.0.0/19 6423 -206.202.32.0/20 6423 -206.202.48.0/21 6423 -206.202.56.0/22 6423 -206.202.60.0/23 6423 -206.202.62.0/23 55286 -206.202.80.0/20 7018 -206.202.176.0/23 7018 -206.202.208.0/22 393936 -206.203.64.0/20 10599 -206.203.80.0/24 27451 -206.203.81.0/24 10599 -206.203.82.0/23 10599 -206.203.84.0/22 10599 -206.203.88.0/21 10599 -206.203.96.0/19 10599 -206.203.171.0/24 14381 -206.204.0.0/16 4544 -206.205.0.0/20 2828 -206.205.16.0/21 2828 -206.205.24.0/23 2828 -206.205.26.0/24 2828 -206.205.27.0/24 53985 -206.205.28.0/22 2828 -206.205.32.0/21 2828 -206.205.40.0/22 2828 -206.205.44.0/24 10753 -206.205.45.0/24 395279 -206.205.46.0/23 2828 -206.205.48.0/20 2828 -206.205.64.0/20 2828 -206.205.80.0/22 2828 -206.205.84.0/24 2828 -206.205.85.0/24 19243 -206.205.86.0/23 2828 -206.205.88.0/21 2828 -206.205.96.0/19 2828 -206.205.128.0/18 2828 -206.205.192.0/20 2828 -206.205.208.0/22 2828 -206.205.212.0/23 54833 -206.205.214.0/23 2828 -206.205.216.0/21 2828 -206.205.224.0/20 2828 -206.205.240.0/21 2828 -206.205.248.0/22 2828 -206.205.252.0/23 2828 -206.205.254.0/24 2828 -206.205.255.0/24 395671 -206.206.0.0/20 17380 -206.206.16.0/23 14230 -206.206.18.0/24 397285 -206.206.19.0/24 14230 -206.206.20.0/23 397285 -206.206.22.0/23 14230 -206.206.24.0/21 397285 -206.206.32.0/23 397285 -206.206.34.0/23 14230 -206.206.36.0/22 14230 -206.206.40.0/21 14230 -206.206.48.0/21 14230 -206.206.56.0/23 397285 -206.206.58.0/23 14230 -206.206.60.0/23 14230 -206.206.62.0/24 14230 -206.206.63.0/24 397285 -206.206.64.0/18 13332 -206.206.128.0/21 3912 -206.206.136.0/21 40498 -206.206.144.0/24 4181 -206.206.145.0/24 3912 -206.206.146.0/23 3912 -206.206.148.0/22 3912 -206.206.152.0/24 21782 -206.206.153.0/24 3912 -206.206.154.0/23 3912 -206.206.156.0/22 3912 -206.206.160.0/19 13332 -206.206.192.0/21 2900 -206.206.200.0/24 2900 -206.206.201.0/24 209 -206.206.202.0/23 2900 -206.206.204.0/22 2900 -206.206.208.0/20 2900 -206.206.224.0/19 2900 -206.207.0.0/24 2900 -206.207.5.0/24 62600 -206.207.6.0/24 62600 -206.207.16.0/23 29923 -206.207.42.0/24 1706 -206.207.50.0/24 2900 -206.207.51.0/24 1706 -206.207.58.0/24 701 -206.207.60.0/23 701 -206.207.63.0/24 701 -206.207.64.0/21 11252 -206.207.72.0/21 14230 -206.207.80.0/21 14230 -206.207.88.0/22 14230 -206.207.92.0/23 14230 -206.207.94.0/24 40266 -206.207.95.0/24 14230 -206.207.96.0/19 14230 -206.207.152.0/24 393876 -206.207.153.0/24 1706 -206.207.154.0/24 1706 -206.207.155.0/24 11809 -206.207.156.0/22 11809 -206.207.160.0/20 14690 -206.207.224.0/19 1706 -206.208.4.0/23 32382 -206.208.36.0/24 55059 -206.208.37.0/24 394682 -206.208.38.0/24 55059 -206.208.39.0/24 3257 -206.208.40.0/21 3742 -206.208.56.0/21 36295 -206.208.64.0/22 35956 -206.208.88.0/22 3728 -206.208.92.0/24 3728 -206.208.93.0/24 19837 -206.208.94.0/23 19837 -206.208.96.0/23 33026 -206.208.102.0/24 33026 -206.208.112.0/21 32408 -206.208.128.0/21 55113 -206.208.136.0/21 395215 -206.208.168.0/22 22943 -206.208.172.0/24 12165 -206.208.173.0/24 22943 -206.208.174.0/23 22943 -206.208.176.0/24 3561 -206.208.178.0/24 25802 -206.208.179.0/24 3561 -206.208.180.0/23 25802 -206.208.182.0/24 25802 -206.208.183.0/24 3561 -206.208.184.0/21 6079 -206.208.204.0/22 53519 -206.208.208.0/23 23177 -206.208.211.0/24 23177 -206.208.214.0/23 23177 -206.208.216.0/23 46206 -206.208.218.0/23 26191 -206.208.220.0/22 46206 -206.208.224.0/22 10991 -206.208.228.0/23 10991 -206.208.230.0/24 32134 -206.208.231.0/24 10991 -206.208.236.0/22 14301 -206.208.240.0/24 14568 -206.208.242.0/23 14568 -206.208.244.0/24 14568 -206.208.246.0/23 14568 -206.209.0.0/20 11736 -206.209.96.0/23 22734 -206.209.98.0/23 396467 -206.209.100.0/22 22734 -206.209.104.0/23 22734 -206.209.106.0/24 22734 -206.209.107.0/24 396889 -206.209.108.0/22 22734 -206.209.112.0/20 23548 -206.209.166.0/24 7029 -206.209.209.0/24 7768 -206.209.212.0/24 7768 -206.209.219.0/24 21949 -206.209.220.0/23 7768 -206.209.222.0/24 7768 -206.209.225.0/24 16910 -206.209.226.0/23 16910 -206.209.234.0/24 16910 -206.209.237.0/24 16910 -206.209.238.0/24 16910 -206.209.240.0/21 395091 -206.210.0.0/20 7163 -206.210.16.0/21 7163 -206.210.24.0/22 7163 -206.210.28.0/23 7163 -206.210.30.0/24 7018 -206.210.31.0/24 7163 -206.210.64.0/20 17054 -206.210.80.0/22 17054 -206.210.84.0/24 17054 -206.210.85.0/24 14740 -206.210.86.0/23 17054 -206.210.88.0/21 17054 -206.210.96.0/19 33130 -206.210.128.0/19 62600 -206.210.160.0/22 23431 -206.210.164.0/23 23431 -206.210.166.0/24 23431 -206.210.167.0/24 209 -206.210.168.0/21 23431 -206.210.176.0/20 23431 -206.210.192.0/19 3549 -206.210.224.0/19 6099 -206.211.32.0/19 394762 -206.211.64.0/19 19718 -206.211.96.0/24 54478 -206.211.104.0/24 22146 -206.211.106.0/23 22146 -206.211.112.0/24 22146 -206.211.114.0/23 22146 -206.211.128.0/19 17369 -206.211.160.0/19 16426 -206.211.192.0/20 19472 -206.211.208.0/21 23308 -206.211.216.0/23 16796 -206.211.220.0/24 30551 -206.211.222.0/23 30551 -206.211.224.0/19 36705 -206.212.0.0/18 14200 -206.212.108.0/23 46556 -206.212.114.0/24 46556 -206.212.120.0/23 54366 -206.212.126.0/24 54366 -206.212.128.0/18 33138 -206.212.224.0/20 13857 -206.212.240.0/20 12260 -206.213.24.0/21 14851 -206.213.40.0/21 14851 -206.213.62.0/23 14851 -206.213.64.0/20 2914 -206.213.80.0/21 2914 -206.213.88.0/24 262 -206.213.89.0/24 2914 -206.213.90.0/23 2914 -206.213.92.0/22 2914 -206.213.96.0/19 2914 -206.213.128.0/18 3734 -206.213.192.0/23 22610 -206.213.194.0/23 6646 -206.213.196.0/22 6646 -206.213.200.0/21 6646 -206.213.208.0/20 6646 -206.213.224.0/19 6646 -206.214.0.0/20 11139 -206.214.16.0/22 15344 -206.214.20.0/22 11139 -206.214.24.0/21 11139 -206.214.32.0/20 40511 -206.214.48.0/20 22054 -206.214.64.0/19 62904 -206.214.96.0/20 7029 -206.214.112.0/20 23248 -206.214.128.0/19 29866 -206.214.160.0/20 19885 -206.214.176.0/20 7029 -206.214.192.0/20 7029 -206.214.208.0/21 7203 -206.214.216.0/21 30633 -206.214.240.0/20 21513 -206.215.16.0/20 7029 -206.216.0.0/20 7029 -206.216.32.0/24 7257 -206.216.96.0/20 7029 -206.216.112.0/23 3549 -206.216.114.0/24 33606 -206.216.115.0/24 3549 -206.216.116.0/22 3549 -206.216.120.0/21 3549 -206.216.128.0/20 7029 -206.216.144.0/22 33227 -206.216.148.0/22 3356 -206.216.152.0/22 33227 -206.216.156.0/22 3356 -206.217.0.0/20 13614 -206.217.16.0/20 19526 -206.217.32.0/19 7029 -206.217.64.0/21 3257 -206.217.72.0/23 3257 -206.217.74.0/24 14879 -206.217.75.0/24 3257 -206.217.76.0/22 3257 -206.217.80.0/20 3257 -206.217.96.0/19 3257 -206.217.128.0/20 36352 -206.217.144.0/20 10848 -206.217.160.0/19 7029 -206.217.192.0/22 36351 -206.217.196.0/22 32780 -206.217.200.0/24 36351 -206.217.203.0/24 36351 -206.217.206.0/24 36351 -206.217.208.0/23 36351 -206.217.210.0/24 36351 -206.217.213.0/24 29854 -206.217.218.0/23 36351 -206.217.220.0/24 36351 -206.217.222.0/23 36351 -206.217.224.0/19 7029 -206.218.51.0/24 31966 -206.218.52.0/24 31966 -206.218.180.0/23 32440 -206.218.206.0/23 13821 -206.218.209.0/24 13821 -206.218.214.0/23 13821 -206.218.223.0/24 13821 -206.218.232.0/24 9255 -206.218.234.0/23 13821 -206.218.246.0/24 13821 -206.218.248.0/23 4637 -206.218.253.0/24 13821 -206.219.0.0/20 17570 -206.219.16.0/21 17570 -206.219.24.0/24 17570 -206.219.32.0/21 17570 -206.219.47.0/24 4515 -206.219.60.0/22 17570 -206.219.64.0/19 6461 -206.219.96.0/19 46963 -206.219.128.0/18 2711 -206.219.192.0/19 21814 -206.219.224.0/20 21814 -206.219.240.0/21 21814 -206.219.248.0/23 21814 -206.219.250.0/24 5384 -206.219.251.0/24 21814 -206.219.252.0/24 7018 -206.219.253.0/24 21814 -206.219.254.0/23 21814 -206.220.16.0/24 7761 -206.220.17.0/24 13494 -206.220.18.0/23 25721 -206.220.32.0/22 394077 -206.220.56.0/22 46734 -206.220.64.0/22 17184 -206.220.68.0/22 11528 -206.220.76.0/22 62552 -206.220.88.0/22 62642 -206.220.100.0/23 13609 -206.220.102.0/23 2828 -206.220.156.0/22 5716 -206.220.164.0/22 17338 -206.220.168.0/22 30162 -206.220.172.0/22 46562 -206.220.176.0/21 19254 -206.220.184.0/22 394346 -206.220.188.0/22 394273 -206.220.192.0/21 14866 -206.220.200.0/23 46634 -206.220.208.0/22 5693 -206.220.216.0/23 13649 -206.220.219.0/24 13649 -206.220.220.0/24 13649 -206.220.228.0/22 715 -206.220.240.0/20 62 -206.221.0.0/20 7067 -206.221.16.0/23 21745 -206.221.20.0/23 21745 -206.221.24.0/21 21745 -206.221.36.0/24 26914 -206.221.37.0/24 9304 -206.221.39.0/24 6848 -206.221.49.0/24 46896 -206.221.53.0/24 46896 -206.221.80.0/20 264797 -206.221.126.0/23 3549 -206.221.128.0/20 54004 -206.221.144.0/20 25660 -206.221.168.0/22 36677 -206.221.176.0/20 23470 -206.221.208.0/20 7296 -206.221.224.0/20 11069 -206.221.240.0/20 6539 -206.222.0.0/19 10297 -206.222.32.0/21 2914 -206.222.40.0/22 2914 -206.222.44.0/24 2914 -206.222.45.0/24 174 -206.222.46.0/23 2914 -206.222.48.0/21 2914 -206.222.56.0/23 2914 -206.222.58.0/23 12119 -206.222.60.0/22 2914 -206.222.64.0/19 15290 -206.222.96.0/20 3549 -206.222.112.0/24 3549 -206.222.113.0/24 63264 -206.222.114.0/23 3549 -206.222.116.0/22 3549 -206.222.120.0/21 3549 -206.222.160.0/22 3900 -206.222.164.0/24 22363 -206.222.165.0/24 3900 -206.222.166.0/23 3900 -206.222.168.0/21 3900 -206.222.176.0/20 3900 -206.222.192.0/21 15108 -206.222.200.0/24 15108 -206.222.201.0/24 11610 -206.222.202.0/23 15108 -206.222.204.0/24 15108 -206.222.205.0/24 11610 -206.222.206.0/24 15108 -206.222.207.0/24 11610 -206.222.208.0/24 11610 -206.222.209.0/24 15108 -206.222.210.0/23 15108 -206.222.212.0/22 15108 -206.222.216.0/21 15108 -206.223.5.0/24 13768 -206.223.8.0/24 22041 -206.223.21.0/24 17009 -206.223.25.0/24 20163 -206.223.36.0/24 2033 -206.223.51.0/24 7018 -206.223.65.0/24 394896 -206.223.78.0/24 3561 -206.223.93.0/24 15290 -206.223.102.0/24 11847 -206.223.103.0/24 25674 -206.223.111.0/24 63069 -206.223.112.0/24 1635 -206.223.122.0/24 42 -206.223.132.0/22 14609 -206.223.136.0/24 6968 -206.223.144.0/20 32335 -206.223.160.0/19 21949 -206.223.192.0/19 32204 -206.223.224.0/19 53889 -206.224.0.0/19 18756 -206.224.64.0/19 8166 -206.224.96.0/24 40357 -206.224.196.0/23 40486 -206.224.198.0/24 40486 -206.224.221.0/24 6356 -206.224.224.0/19 2152 -206.225.0.0/19 6428 -206.225.32.0/20 2828 -206.225.48.0/21 2828 -206.225.56.0/23 7905 -206.225.58.0/23 2828 -206.225.60.0/22 2828 -206.225.68.0/22 17306 -206.225.72.0/21 30600 -206.225.80.0/21 18501 -206.225.88.0/22 30447 -206.225.92.0/22 18501 -206.225.96.0/19 22192 -206.225.132.0/22 53889 -206.225.136.0/21 40749 -206.225.144.0/22 32795 -206.225.148.0/23 32795 -206.225.151.0/24 32795 -206.225.152.0/21 32795 -206.225.164.0/24 46994 -206.225.166.0/23 16406 -206.225.168.0/21 715 -206.225.176.0/22 30049 -206.225.180.0/24 30049 -206.225.182.0/23 30049 -206.225.184.0/21 30049 -206.225.196.0/24 14436 -206.225.200.0/23 16509 -206.225.202.0/24 14436 -206.225.203.0/24 16509 -206.225.204.0/22 14436 -206.225.210.0/24 11641 -206.225.217.0/24 16509 -206.225.218.0/24 11641 -206.225.219.0/24 16509 -206.225.220.0/22 11641 -206.225.230.0/24 2529 -206.225.235.0/24 1221 -206.225.246.0/24 7046 -206.226.64.0/23 30036 -206.226.66.0/24 30036 -206.226.128.0/23 46887 -206.226.133.0/24 46887 -206.226.134.0/24 46887 -206.226.135.0/24 63205 -206.226.138.0/23 46887 -206.226.143.0/24 46887 -206.226.144.0/23 46887 -206.226.146.0/23 23329 -206.226.148.0/24 23329 -206.226.154.0/24 46887 -206.226.155.0/24 63205 -206.226.156.0/24 23329 -206.226.169.0/24 23329 -206.226.170.0/24 46887 -206.226.211.0/24 46887 -206.226.214.0/24 46887 -206.226.225.0/24 46887 -206.226.226.0/24 46887 -206.226.255.0/24 46887 -206.227.0.0/18 5783 -206.227.69.0/24 1239 -206.227.70.0/24 7018 -206.227.103.0/24 7018 -206.227.128.0/23 1965 -206.227.131.0/24 1965 -206.227.136.0/23 1965 -206.227.138.0/24 1965 -206.227.143.0/24 1965 -206.227.144.0/24 1965 -206.227.148.0/24 1965 -206.227.169.0/24 1965 -206.227.170.0/23 1965 -206.227.192.0/23 6109 -206.227.200.0/24 6109 -206.227.205.0/24 6109 -206.227.206.0/24 6109 -206.227.208.0/23 6109 -206.227.210.0/24 6109 -206.227.216.0/23 6109 -206.227.220.0/23 6109 -206.227.223.0/24 6109 -206.227.233.0/24 6109 -206.227.235.0/24 6109 -206.228.0.0/18 1239 -206.228.64.0/19 1239 -206.228.96.0/20 11398 -206.228.112.0/20 1239 -206.228.128.0/21 1239 -206.228.136.0/23 1239 -206.228.138.0/24 1239 -206.228.139.0/24 22485 -206.228.140.0/24 22485 -206.228.141.0/24 11924 -206.228.142.0/23 11924 -206.228.144.0/20 1239 -206.228.160.0/21 1239 -206.228.168.0/22 1239 -206.228.172.0/24 1239 -206.228.173.0/24 19201 -206.228.174.0/23 1239 -206.228.176.0/20 1239 -206.228.192.0/21 1239 -206.228.200.0/24 1239 -206.228.201.0/24 40320 -206.228.202.0/23 1239 -206.228.204.0/22 1239 -206.228.208.0/20 1239 -206.228.224.0/20 1239 -206.228.240.0/20 5778 -206.229.0.0/19 1239 -206.229.32.0/21 1239 -206.229.40.0/22 1239 -206.229.44.0/22 11708 -206.229.48.0/20 1239 -206.229.64.0/20 1239 -206.229.80.0/21 1239 -206.229.88.0/23 18632 -206.229.90.0/23 1239 -206.229.92.0/22 1239 -206.229.96.0/20 1239 -206.229.112.0/23 1239 -206.229.114.0/24 1239 -206.229.115.0/24 33560 -206.229.116.0/22 1239 -206.229.120.0/21 1239 -206.229.128.0/18 1239 -206.229.192.0/21 1239 -206.229.200.0/22 1239 -206.229.204.0/23 1239 -206.229.206.0/23 6157 -206.229.208.0/20 1239 -206.229.224.0/21 1239 -206.229.232.0/22 1239 -206.229.236.0/22 11309 -206.229.240.0/21 1239 -206.229.248.0/22 1239 -206.229.252.0/23 1239 -206.229.254.0/24 7029 -206.229.255.0/24 1239 -206.230.0.0/19 1239 -206.230.32.0/20 1239 -206.230.48.0/21 1239 -206.230.56.0/22 1239 -206.230.60.0/23 32614 -206.230.62.0/24 1239 -206.230.63.0/24 1790 -206.230.64.0/22 1239 -206.230.68.0/23 1239 -206.230.70.0/24 11676 -206.230.71.0/24 1239 -206.230.72.0/21 1239 -206.230.80.0/20 1239 -206.230.96.0/21 1239 -206.230.104.0/22 14828 -206.230.108.0/23 14828 -206.230.110.0/23 62759 -206.230.112.0/20 1239 -206.230.128.0/19 1239 -206.230.160.0/20 1239 -206.230.176.0/22 1239 -206.230.180.0/22 209 -206.230.184.0/21 209 -206.230.192.0/19 1239 -206.230.224.0/20 21591 -206.230.240.0/20 1239 -206.231.0.0/21 1239 -206.231.8.0/22 29968 -206.231.12.0/22 1239 -206.231.16.0/20 1239 -206.231.32.0/21 1239 -206.231.40.0/22 1239 -206.231.44.0/24 22742 -206.231.45.0/24 1239 -206.231.46.0/23 1239 -206.231.48.0/20 1239 -206.231.64.0/21 1239 -206.231.72.0/21 3816 -206.231.80.0/20 1239 -206.231.96.0/23 1239 -206.231.98.0/24 1239 -206.231.99.0/24 17378 -206.231.100.0/22 1239 -206.231.104.0/21 1239 -206.231.112.0/21 1239 -206.231.120.0/21 14813 -206.231.128.0/19 1239 -206.231.160.0/20 1239 -206.231.176.0/23 1239 -206.231.178.0/23 7795 -206.231.180.0/22 1239 -206.231.184.0/21 1239 -206.231.192.0/19 1239 -206.231.224.0/20 3257 -206.231.240.0/20 1239 -206.232.0.0/17 174 -206.232.128.0/19 174 -206.232.160.0/20 174 -206.232.176.0/22 174 -206.232.180.0/24 174 -206.232.181.0/24 33476 -206.232.182.0/23 174 -206.232.184.0/21 174 -206.232.192.0/18 174 -206.233.0.0/16 174 -206.234.0.0/16 174 -206.235.0.0/18 174 -206.235.64.0/20 174 -206.235.80.0/22 174 -206.235.84.0/23 174 -206.235.86.0/23 852 -206.235.88.0/21 174 -206.235.96.0/19 174 -206.235.128.0/18 174 -206.235.192.0/19 174 -206.235.224.0/20 174 -206.235.240.0/21 174 -206.235.248.0/21 852 -206.236.0.0/17 174 -206.236.128.0/20 174 -206.236.144.0/23 174 -206.236.146.0/23 7029 -206.236.148.0/22 174 -206.236.152.0/21 174 -206.236.160.0/19 174 -206.236.192.0/18 174 -206.237.0.0/16 174 -206.238.0.0/16 174 -206.239.0.0/18 2914 -206.239.64.0/19 2914 -206.239.96.0/22 2914 -206.239.100.0/23 20940 -206.239.102.0/23 2914 -206.239.104.0/21 2914 -206.239.112.0/20 2914 -206.239.128.0/17 2914 -206.240.0.0/16 3356 -206.241.0.0/22 16692 -206.241.4.0/22 3356 -206.241.8.0/21 3356 -206.241.16.0/20 3356 -206.241.32.0/19 3356 -206.241.64.0/18 3356 -206.241.128.0/17 3356 -206.242.0.0/16 3356 -206.243.0.0/19 3356 -206.243.32.0/22 3356 -206.243.36.0/24 18790 -206.243.37.0/24 3356 -206.243.38.0/23 3356 -206.243.40.0/21 3356 -206.243.48.0/21 3356 -206.243.56.0/22 3356 -206.243.60.0/23 395800 -206.243.62.0/23 3356 -206.243.64.0/19 3356 -206.243.96.0/24 395800 -206.243.97.0/24 3356 -206.243.98.0/23 3356 -206.243.100.0/22 3356 -206.243.104.0/21 3356 -206.243.112.0/20 3356 -206.243.128.0/17 3356 -206.244.0.0/17 600 -206.244.128.0/22 3112 -206.244.132.0/22 600 -206.244.136.0/21 600 -206.244.144.0/20 600 -206.244.160.0/22 600 -206.244.164.0/22 3112 -206.244.168.0/21 600 -206.244.176.0/20 600 -206.244.192.0/21 600 -206.244.200.0/21 3112 -206.244.208.0/20 600 -206.244.224.0/19 600 -206.245.48.0/24 3356 -206.245.51.0/24 3356 -206.245.128.0/19 7029 -206.245.160.0/22 7029 -206.245.164.0/24 7349 -206.245.165.0/24 7029 -206.245.166.0/23 7029 -206.245.168.0/21 7029 -206.245.176.0/22 7029 -206.245.180.0/23 7029 -206.245.182.0/24 30544 -206.245.183.0/24 7029 -206.245.184.0/21 7029 -206.245.192.0/18 4544 -206.246.0.0/21 27258 -206.246.8.0/23 27258 -206.246.10.0/23 32758 -206.246.12.0/23 32758 -206.246.14.0/24 27258 -206.246.15.0/24 394541 -206.246.16.0/24 27258 -206.246.17.0/24 394541 -206.246.18.0/23 394541 -206.246.20.0/22 394541 -206.246.24.0/23 394541 -206.246.26.0/23 27258 -206.246.28.0/23 27258 -206.246.30.0/24 27258 -206.246.31.0/24 394541 -206.246.64.0/24 39855 -206.246.65.0/24 54103 -206.246.66.0/24 39855 -206.246.67.0/24 54103 -206.246.68.0/22 54103 -206.246.72.0/22 54103 -206.246.76.0/23 54103 -206.246.78.0/24 39855 -206.246.79.0/24 54103 -206.246.80.0/22 54103 -206.246.84.0/23 54103 -206.246.86.0/24 54103 -206.246.87.0/24 39855 -206.246.88.0/24 39855 -206.246.89.0/24 54103 -206.246.90.0/23 54103 -206.246.92.0/22 54103 -206.246.96.0/22 54103 -206.246.100.0/24 54103 -206.246.101.0/24 11194 -206.246.102.0/24 54103 -206.246.103.0/24 39855 -206.246.104.0/22 54103 -206.246.108.0/23 54103 -206.246.110.0/24 39855 -206.246.111.0/24 54103 -206.246.112.0/22 54103 -206.246.116.0/23 39855 -206.246.118.0/24 54103 -206.246.119.0/24 39855 -206.246.120.0/22 39855 -206.246.124.0/24 54103 -206.246.125.0/24 39855 -206.246.126.0/23 54103 -206.246.128.0/20 7332 -206.246.144.0/22 7332 -206.246.148.0/24 54395 -206.246.149.0/24 7332 -206.246.150.0/23 7332 -206.246.152.0/21 7332 -206.246.160.0/19 7332 -206.246.192.0/23 6261 -206.246.194.0/24 6261 -206.246.195.0/24 7029 -206.246.196.0/24 6261 -206.246.197.0/24 7029 -206.246.198.0/23 6261 -206.246.200.0/21 6261 -206.246.208.0/20 6261 -206.246.224.0/19 6261 -206.248.0.0/19 30341 -206.248.32.0/19 17306 -206.248.64.0/18 14638 -206.248.128.0/18 5645 -206.248.192.0/22 7795 -206.248.196.0/23 7795 -206.248.198.0/24 7795 -206.248.199.0/24 22070 -206.248.200.0/22 7795 -206.248.204.0/23 7795 -206.248.206.0/23 14605 -206.248.208.0/20 7795 -206.248.224.0/20 7795 -206.248.240.0/22 7795 -206.248.244.0/24 27201 -206.248.245.0/24 14142 -206.248.246.0/23 7795 -206.248.248.0/21 7795 -206.249.0.0/16 174 -206.250.0.0/16 174 -206.251.0.0/19 11590 -206.251.36.0/22 54804 -206.251.40.0/21 19045 -206.251.48.0/21 328303 -206.251.56.0/23 328303 -206.251.58.0/23 32021 -206.251.60.0/22 32021 -206.251.64.0/19 11123 -206.251.128.0/19 4908 -206.251.160.0/20 4314 -206.251.176.0/22 4314 -206.251.180.0/23 21748 -206.251.182.0/23 4314 -206.251.184.0/21 4314 -206.251.192.0/23 27229 -206.251.194.0/23 26827 -206.251.196.0/22 29802 -206.251.200.0/22 29802 -206.251.204.0/23 11849 -206.251.206.0/23 9009 -206.251.208.0/20 40237 -206.251.224.0/22 6130 -206.251.228.0/23 6130 -206.251.230.0/24 53559 -206.251.231.0/24 6130 -206.251.232.0/22 6130 -206.251.236.0/23 6130 -206.251.238.0/24 53559 -206.251.239.0/24 6130 -206.251.240.0/22 6130 -206.251.244.0/24 21581 -206.251.245.0/24 53559 -206.251.246.0/23 6130 -206.251.248.0/22 6130 -206.251.252.0/23 6130 -206.251.254.0/24 53559 -206.251.255.0/24 21581 -206.252.33.0/24 23349 -206.252.36.0/24 23349 -206.252.39.0/24 23349 -206.252.40.0/24 23349 -206.252.42.0/23 23349 -206.252.46.0/23 23349 -206.252.48.0/24 23349 -206.252.52.0/23 15215 -206.252.54.0/24 23005 -206.252.56.0/24 15215 -206.252.77.0/24 25783 -206.252.78.0/24 25783 -206.252.80.0/22 27351 -206.252.128.0/19 6650 -206.252.160.0/19 7029 -206.252.192.0/20 8002 -206.252.208.0/24 8002 -206.252.209.0/24 53316 -206.252.210.0/23 8002 -206.252.212.0/22 8002 -206.252.216.0/21 8002 -206.252.224.0/24 205308 -206.252.225.0/24 15694 -206.252.226.0/24 15694 -206.252.227.0/24 202081 -206.252.228.0/22 15694 -206.252.232.0/21 15694 -206.252.240.0/21 15694 -206.252.248.0/22 15694 -206.252.252.0/22 24723 -206.253.0.0/19 4565 -206.253.32.0/19 10821 -206.253.94.0/23 10402 -206.253.136.0/21 21949 -206.253.144.0/20 14615 -206.253.160.0/23 6921 -206.253.162.0/24 31996 -206.253.164.0/22 20150 -206.253.168.0/21 33724 -206.253.176.0/22 40010 -206.253.186.0/23 11496 -206.253.188.0/23 11496 -206.253.192.0/22 14744 -206.253.196.0/23 12180 -206.253.198.0/23 14744 -206.253.200.0/21 1742 -206.253.208.0/22 14744 -206.253.212.0/23 12179 -206.253.214.0/23 14744 -206.253.216.0/23 14744 -206.253.218.0/23 4319 -206.253.220.0/23 48910 -206.253.222.0/23 14744 -206.253.224.0/23 15293 -206.253.226.0/24 41958 -206.253.231.0/24 15293 -206.253.232.0/21 36351 -206.253.248.0/22 36351 -206.253.253.0/24 36351 -206.253.255.0/24 15293 -206.254.0.0/17 3354 -206.254.128.0/20 3354 -206.254.144.0/23 3354 -206.254.146.0/24 3354 -206.254.147.0/24 397436 -206.254.148.0/22 3354 -206.254.152.0/21 3354 -206.254.160.0/19 3354 -206.254.192.0/18 3354 -206.255.0.0/17 53508 -206.255.128.0/20 53508 -206.255.144.0/21 53508 -206.255.152.0/22 53508 -206.255.156.0/22 1651 -206.255.160.0/21 1651 -206.255.168.0/21 53508 -206.255.176.0/20 53508 -206.255.192.0/20 53508 -206.255.208.0/21 53508 -206.255.216.0/23 53508 -206.255.218.0/24 1651 -206.255.219.0/24 53508 -206.255.220.0/22 53508 -206.255.224.0/20 53508 -206.255.240.0/23 53508 -206.255.242.0/24 53508 -206.255.243.0/24 1651 -206.255.244.0/22 53508 -206.255.248.0/22 53508 -206.255.252.0/24 1651 -206.255.253.0/24 53508 -206.255.254.0/23 53508 -207.0.0.0/17 3561 -207.0.128.0/18 3561 -207.0.192.0/19 3561 -207.0.224.0/20 3561 -207.0.240.0/23 3561 -207.0.242.0/23 11255 -207.0.244.0/22 3561 -207.0.248.0/21 3561 -207.1.0.0/21 3561 -207.1.8.0/22 3561 -207.1.12.0/23 3561 -207.1.14.0/24 3561 -207.1.15.0/24 11842 -207.1.16.0/20 3561 -207.1.32.0/19 3561 -207.1.64.0/20 3561 -207.1.80.0/23 3561 -207.1.82.0/24 3561 -207.1.83.0/24 26917 -207.1.84.0/22 3561 -207.1.88.0/21 3561 -207.1.96.0/19 3561 -207.1.128.0/17 3561 -207.2.0.0/18 3561 -207.2.64.0/19 3561 -207.2.96.0/23 11269 -207.2.98.0/24 11269 -207.2.99.0/24 33576 -207.2.100.0/22 11269 -207.2.104.0/21 36315 -207.2.120.0/21 18885 -207.2.128.0/18 3561 -207.2.192.0/21 3561 -207.2.200.0/24 3561 -207.2.201.0/24 7991 -207.2.202.0/23 3561 -207.2.204.0/22 3561 -207.2.208.0/20 3561 -207.2.224.0/19 3561 -207.3.0.0/16 3561 -207.4.0.0/16 6559 -207.5.0.0/18 22646 -207.5.64.0/19 53828 -207.5.96.0/24 20308 -207.5.104.0/23 20308 -207.5.106.0/24 20308 -207.5.112.0/20 17306 -207.5.128.0/17 5760 -207.6.0.0/16 852 -207.7.0.0/20 3356 -207.7.16.0/23 3356 -207.7.18.0/23 17054 -207.7.20.0/22 3356 -207.7.24.0/21 3356 -207.7.32.0/19 3356 -207.7.64.0/20 7029 -207.7.80.0/20 63410 -207.7.96.0/19 16582 -207.7.129.0/24 23342 -207.7.130.0/23 23342 -207.7.133.0/24 40061 -207.7.135.0/24 23342 -207.7.137.0/24 23342 -207.7.138.0/23 23342 -207.7.140.0/24 23342 -207.7.141.0/24 40061 -207.7.144.0/23 23342 -207.7.146.0/24 40061 -207.7.148.0/24 23342 -207.7.149.0/24 40061 -207.7.150.0/24 40061 -207.7.151.0/24 23342 -207.7.152.0/23 19868 -207.7.154.0/24 29748 -207.7.155.0/24 23342 -207.7.156.0/22 23342 -207.7.160.0/19 3593 -207.7.192.0/19 3356 -207.7.224.0/21 3356 -207.7.232.0/23 3356 -207.7.234.0/24 3356 -207.7.235.0/24 16526 -207.7.236.0/22 3356 -207.7.240.0/20 3356 -207.8.0.0/18 2828 -207.8.64.0/20 2828 -207.8.80.0/21 2828 -207.8.88.0/23 2828 -207.8.90.0/24 396054 -207.8.91.0/24 2828 -207.8.92.0/22 2828 -207.8.96.0/23 19730 -207.8.98.0/23 2828 -207.8.100.0/22 2828 -207.8.104.0/21 2828 -207.8.112.0/20 2828 -207.8.128.0/19 7029 -207.8.160.0/21 7029 -207.8.168.0/22 7029 -207.8.172.0/23 7029 -207.8.174.0/24 7029 -207.8.175.0/24 15309 -207.8.176.0/20 7029 -207.8.192.0/21 7029 -207.8.200.0/22 7029 -207.8.204.0/23 7029 -207.8.206.0/24 17378 -207.8.207.0/24 7029 -207.8.208.0/21 7029 -207.8.216.0/24 7029 -207.8.217.0/24 62583 -207.8.218.0/23 7029 -207.8.220.0/22 7029 -207.8.224.0/20 7029 -207.8.240.0/24 7029 -207.8.241.0/24 395353 -207.8.242.0/23 7029 -207.8.244.0/22 7349 -207.8.248.0/21 7029 -207.10.0.0/19 7029 -207.10.32.0/20 7029 -207.10.48.0/21 7029 -207.10.56.0/24 20337 -207.10.57.0/24 7029 -207.10.58.0/23 7029 -207.10.60.0/22 7029 -207.10.64.0/18 7029 -207.10.128.0/22 7349 -207.10.132.0/23 7349 -207.10.134.0/24 7349 -207.10.135.0/24 395264 -207.10.136.0/21 14 -207.10.144.0/20 7029 -207.10.160.0/20 7029 -207.10.176.0/21 7029 -207.10.184.0/24 32019 -207.10.185.0/24 7029 -207.10.186.0/23 7029 -207.10.188.0/22 7029 -207.10.192.0/18 7029 -207.11.0.0/18 10967 -207.11.64.0/24 395955 -207.11.65.0/24 46604 -207.11.66.0/23 10967 -207.11.68.0/22 10967 -207.11.72.0/21 10967 -207.11.80.0/20 10967 -207.11.96.0/19 10967 -207.11.207.0/24 2830 -207.11.240.0/24 197282 -207.11.241.0/24 6461 -207.11.242.0/24 701 -207.11.243.0/24 41367 -207.12.0.0/18 1239 -207.12.64.0/20 1239 -207.12.80.0/21 1239 -207.12.88.0/21 11403 -207.12.96.0/19 1239 -207.12.128.0/21 1239 -207.12.136.0/22 1239 -207.12.140.0/24 54321 -207.12.141.0/24 1239 -207.12.142.0/23 1239 -207.12.144.0/20 1239 -207.12.160.0/21 1239 -207.12.168.0/21 14174 -207.12.176.0/20 1239 -207.12.192.0/19 1239 -207.12.224.0/21 1239 -207.12.232.0/24 1239 -207.12.233.0/24 5778 -207.12.234.0/23 1239 -207.12.236.0/22 1239 -207.12.240.0/20 1239 -207.13.0.0/21 7029 -207.13.8.0/21 1239 -207.13.16.0/20 1239 -207.13.32.0/19 1239 -207.13.64.0/20 1239 -207.13.80.0/21 3728 -207.13.88.0/21 1239 -207.13.96.0/20 1239 -207.13.112.0/21 1239 -207.13.120.0/22 1239 -207.13.124.0/23 1790 -207.13.126.0/23 1239 -207.13.128.0/17 1239 -207.14.0.0/20 1239 -207.14.16.0/21 1239 -207.14.24.0/22 1239 -207.14.28.0/24 1239 -207.14.29.0/24 394945 -207.14.30.0/23 1239 -207.14.32.0/23 13871 -207.14.34.0/24 18530 -207.14.35.0/24 19133 -207.14.36.0/22 13871 -207.14.40.0/21 1239 -207.14.48.0/21 1239 -207.14.56.0/23 1239 -207.14.58.0/24 13923 -207.14.59.0/24 1239 -207.14.60.0/22 1239 -207.14.64.0/21 18618 -207.14.72.0/21 1239 -207.14.80.0/20 1239 -207.14.96.0/20 3549 -207.14.112.0/20 1239 -207.14.128.0/24 12165 -207.14.129.0/24 1239 -207.14.130.0/23 1239 -207.14.132.0/22 1239 -207.14.136.0/21 1239 -207.14.144.0/20 1239 -207.14.160.0/23 22485 -207.14.162.0/23 1239 -207.14.164.0/22 1239 -207.14.168.0/21 1239 -207.14.176.0/21 1239 -207.14.184.0/22 1239 -207.14.188.0/22 6222 -207.14.192.0/20 1239 -207.14.208.0/21 1239 -207.14.216.0/24 18494 -207.14.217.0/24 22186 -207.14.218.0/23 18494 -207.14.220.0/22 1239 -207.14.224.0/21 5778 -207.14.232.0/22 5778 -207.14.236.0/23 209 -207.14.238.0/23 5778 -207.14.240.0/20 1239 -207.15.0.0/23 1239 -207.15.2.0/23 19019 -207.15.4.0/22 1239 -207.15.8.0/23 1239 -207.15.10.0/24 3356 -207.15.11.0/24 1239 -207.15.12.0/22 1239 -207.15.16.0/20 1239 -207.15.32.0/21 19019 -207.15.40.0/21 1239 -207.15.48.0/21 1239 -207.15.56.0/24 6157 -207.15.57.0/24 1239 -207.15.58.0/23 1239 -207.15.60.0/22 1239 -207.15.64.0/22 1239 -207.15.68.0/23 10507 -207.15.70.0/23 1239 -207.15.72.0/21 1239 -207.15.80.0/21 1239 -207.15.88.0/24 6157 -207.15.89.0/24 1239 -207.15.90.0/23 1239 -207.15.92.0/22 1239 -207.15.96.0/19 1239 -207.15.128.0/21 1239 -207.15.136.0/24 1239 -207.15.137.0/24 40676 -207.15.138.0/23 1239 -207.15.140.0/22 1239 -207.15.144.0/20 1239 -207.15.160.0/19 1239 -207.15.192.0/22 1239 -207.15.196.0/23 1239 -207.15.198.0/24 14979 -207.15.199.0/24 1239 -207.15.200.0/21 1239 -207.15.208.0/21 6597 -207.15.216.0/21 1239 -207.15.224.0/19 1239 -207.16.0.0/19 701 -207.16.32.0/20 701 -207.16.48.0/22 701 -207.16.52.0/24 701 -207.16.53.0/24 55052 -207.16.54.0/23 701 -207.16.56.0/21 701 -207.16.64.0/22 701 -207.16.68.0/23 26704 -207.16.70.0/24 26704 -207.16.71.0/24 701 -207.16.72.0/21 701 -207.16.80.0/20 701 -207.16.96.0/19 701 -207.16.128.0/19 701 -207.16.160.0/20 6620 -207.16.176.0/20 701 -207.16.192.0/18 701 -207.17.0.0/19 701 -207.17.32.0/24 701 -207.17.33.0/24 6195 -207.17.34.0/24 6195 -207.17.35.0/24 701 -207.17.36.0/24 701 -207.17.37.0/24 33598 -207.17.38.0/23 701 -207.17.40.0/22 701 -207.17.44.0/24 701 -207.17.45.0/24 6195 -207.17.46.0/24 33598 -207.17.47.0/24 701 -207.17.48.0/20 701 -207.17.64.0/20 701 -207.17.80.0/23 701 -207.17.82.0/24 40676 -207.17.83.0/24 701 -207.17.84.0/22 701 -207.17.88.0/21 701 -207.17.96.0/19 701 -207.17.128.0/19 701 -207.17.160.0/20 701 -207.17.176.0/21 701 -207.17.184.0/22 701 -207.17.188.0/23 701 -207.17.190.0/23 28502 -207.17.192.0/18 701 -207.18.0.0/19 701 -207.18.32.0/20 701 -207.18.48.0/21 701 -207.18.56.0/22 55052 -207.18.60.0/22 701 -207.18.64.0/22 701 -207.18.68.0/23 6620 -207.18.70.0/23 701 -207.18.72.0/21 701 -207.18.80.0/20 701 -207.18.96.0/19 701 -207.18.128.0/19 701 -207.18.160.0/22 701 -207.18.164.0/24 63059 -207.18.165.0/24 701 -207.18.166.0/23 701 -207.18.168.0/21 701 -207.18.176.0/20 701 -207.18.192.0/22 701 -207.18.196.0/23 701 -207.18.198.0/24 701 -207.18.199.0/24 71 -207.18.200.0/21 701 -207.18.208.0/20 701 -207.18.224.0/19 701 -207.19.0.0/21 6620 -207.19.8.0/21 701 -207.19.16.0/20 701 -207.19.32.0/19 701 -207.19.64.0/20 701 -207.19.80.0/24 27003 -207.19.81.0/24 701 -207.19.82.0/23 701 -207.19.84.0/22 701 -207.19.88.0/21 701 -207.19.96.0/21 7381 -207.19.104.0/21 701 -207.19.112.0/20 701 -207.19.128.0/18 701 -207.19.192.0/22 701 -207.19.196.0/23 701 -207.19.198.0/24 26153 -207.19.199.0/24 701 -207.19.200.0/21 701 -207.19.208.0/20 701 -207.19.224.0/20 701 -207.19.240.0/21 701 -207.19.248.0/22 701 -207.19.252.0/22 6648 -207.20.0.0/19 2914 -207.20.32.0/19 27435 -207.20.64.0/20 2914 -207.20.80.0/22 2914 -207.20.84.0/24 2914 -207.20.85.0/24 14609 -207.20.86.0/23 2914 -207.20.88.0/21 2914 -207.20.96.0/19 2914 -207.20.128.0/18 2914 -207.20.192.0/19 2914 -207.20.224.0/19 27435 -207.21.0.0/18 2914 -207.21.64.0/19 2914 -207.21.96.0/20 2914 -207.21.112.0/21 2914 -207.21.120.0/24 2914 -207.21.121.0/24 22973 -207.21.122.0/23 2914 -207.21.124.0/22 2914 -207.21.128.0/18 2914 -207.21.192.0/18 13768 -207.22.0.0/18 14265 -207.22.64.0/18 2914 -207.22.128.0/19 701 -207.22.160.0/22 701 -207.22.164.0/23 701 -207.22.166.0/24 22549 -207.22.167.0/24 701 -207.22.168.0/21 701 -207.22.176.0/20 11486 -207.23.0.0/18 271 -207.23.64.0/20 271 -207.23.80.0/22 271 -207.23.84.0/24 271 -207.23.85.0/24 11105 -207.23.86.0/23 271 -207.23.88.0/22 271 -207.23.92.0/23 271 -207.23.94.0/23 393249 -207.23.96.0/20 397543 -207.23.112.0/20 271 -207.23.128.0/19 271 -207.23.160.0/19 11105 -207.23.192.0/19 11105 -207.23.224.0/20 271 -207.23.240.0/23 271 -207.23.242.0/24 271 -207.23.243.0/24 393249 -207.23.244.0/22 271 -207.23.248.0/24 271 -207.23.249.0/24 393249 -207.23.250.0/23 271 -207.23.252.0/24 393249 -207.23.253.0/24 271 -207.23.254.0/23 271 -207.24.0.0/19 701 -207.24.32.0/21 701 -207.24.40.0/23 701 -207.24.42.0/24 3356 -207.24.43.0/24 701 -207.24.44.0/24 3356 -207.24.45.0/24 701 -207.24.46.0/23 701 -207.24.48.0/20 701 -207.24.64.0/18 701 -207.24.128.0/22 701 -207.24.132.0/24 3356 -207.24.133.0/24 701 -207.24.134.0/23 701 -207.24.136.0/22 701 -207.24.140.0/24 30495 -207.24.141.0/24 701 -207.24.142.0/23 701 -207.24.144.0/20 701 -207.24.160.0/19 701 -207.24.192.0/18 701 -207.25.0.0/17 701 -207.25.128.0/19 701 -207.25.160.0/20 701 -207.25.176.0/24 701 -207.25.177.0/24 3356 -207.25.178.0/24 3356 -207.25.179.0/24 701 -207.25.180.0/23 3356 -207.25.182.0/23 701 -207.25.184.0/21 701 -207.25.192.0/19 701 -207.25.224.0/24 701 -207.25.225.0/24 18703 -207.25.226.0/23 701 -207.25.228.0/22 701 -207.25.232.0/21 701 -207.25.240.0/21 701 -207.25.248.0/21 18703 -207.26.0.0/17 701 -207.26.128.0/18 701 -207.26.192.0/20 701 -207.26.208.0/21 11563 -207.26.216.0/21 701 -207.26.224.0/19 701 -207.27.0.0/16 701 -207.28.0.0/17 6122 -207.28.128.0/18 6122 -207.28.192.0/19 6122 -207.28.224.0/21 6122 -207.28.232.0/23 6122 -207.28.234.0/24 2698 -207.28.235.0/24 6122 -207.28.236.0/23 6122 -207.28.238.0/24 26946 -207.28.239.0/24 6122 -207.28.240.0/20 6122 -207.29.40.0/21 20330 -207.29.128.0/18 20330 -207.29.192.0/20 7029 -207.29.208.0/20 32592 -207.29.224.0/19 32335 -207.30.0.0/22 2379 -207.30.4.0/24 2379 -207.30.5.0/24 209 -207.30.6.0/23 209 -207.30.8.0/23 2379 -207.30.10.0/24 2379 -207.30.11.0/24 209 -207.30.12.0/22 2379 -207.30.16.0/22 2379 -207.30.20.0/24 2379 -207.30.21.0/24 209 -207.30.22.0/23 2379 -207.30.24.0/22 2379 -207.30.28.0/23 22511 -207.30.30.0/23 2379 -207.30.32.0/24 12090 -207.30.33.0/24 2379 -207.30.34.0/23 2379 -207.30.36.0/22 2379 -207.30.40.0/23 2379 -207.30.42.0/24 2379 -207.30.43.0/24 19579 -207.30.44.0/23 2379 -207.30.46.0/24 19579 -207.30.47.0/24 2379 -207.30.48.0/24 209 -207.30.49.0/24 2379 -207.30.50.0/24 2379 -207.30.51.0/24 19579 -207.30.52.0/24 209 -207.30.53.0/24 2379 -207.30.54.0/23 2379 -207.30.56.0/24 209 -207.30.57.0/24 2379 -207.30.58.0/23 2379 -207.30.60.0/23 2379 -207.30.62.0/23 46729 -207.30.64.0/22 2379 -207.30.68.0/23 2379 -207.30.70.0/24 2379 -207.30.71.0/24 209 -207.30.72.0/23 2379 -207.30.74.0/24 2379 -207.30.75.0/24 209 -207.30.76.0/24 2379 -207.30.77.0/24 19579 -207.30.78.0/23 2379 -207.30.80.0/22 4282 -207.30.84.0/22 2379 -207.30.88.0/21 2379 -207.30.96.0/20 2379 -207.30.112.0/22 2379 -207.30.116.0/23 2379 -207.30.118.0/23 209 -207.30.120.0/24 2379 -207.30.121.0/24 209 -207.30.122.0/23 2379 -207.30.124.0/22 2379 -207.30.128.0/20 2379 -207.30.144.0/21 2379 -207.30.152.0/22 2379 -207.30.156.0/23 2379 -207.30.158.0/24 2379 -207.30.159.0/24 209 -207.30.160.0/23 2379 -207.30.162.0/23 209 -207.30.164.0/23 209 -207.30.166.0/23 2379 -207.30.168.0/24 209 -207.30.169.0/24 2379 -207.30.170.0/23 2379 -207.30.172.0/22 2379 -207.30.176.0/22 2379 -207.30.180.0/23 2379 -207.30.182.0/24 209 -207.30.183.0/24 2379 -207.30.184.0/24 209 -207.30.185.0/24 2379 -207.30.186.0/23 2379 -207.30.188.0/23 2379 -207.30.190.0/23 209 -207.30.192.0/23 209 -207.30.194.0/23 2379 -207.30.196.0/22 2379 -207.30.200.0/24 2379 -207.30.201.0/24 209 -207.30.202.0/23 209 -207.30.204.0/22 209 -207.30.208.0/21 2379 -207.30.216.0/24 2379 -207.30.217.0/24 209 -207.30.218.0/23 2379 -207.30.220.0/22 2379 -207.30.224.0/19 2379 -207.31.0.0/18 3734 -207.31.64.0/19 174 -207.31.96.0/20 174 -207.31.112.0/21 174 -207.31.120.0/23 174 -207.31.122.0/24 174 -207.31.123.0/24 262706 -207.31.124.0/22 174 -207.31.128.0/18 2920 -207.31.192.0/18 2914 -207.32.0.0/24 5056 -207.32.1.0/24 46892 -207.32.2.0/24 5056 -207.32.3.0/24 46892 -207.32.4.0/22 5056 -207.32.8.0/21 5056 -207.32.16.0/22 5056 -207.32.20.0/24 5056 -207.32.21.0/24 19628 -207.32.22.0/24 19628 -207.32.23.0/24 5056 -207.32.24.0/21 5056 -207.32.32.0/21 5056 -207.32.40.0/23 5056 -207.32.42.0/24 5056 -207.32.43.0/24 30325 -207.32.44.0/22 5056 -207.32.48.0/21 5056 -207.32.56.0/22 5056 -207.32.60.0/23 5056 -207.32.62.0/24 5056 -207.32.63.0/24 30325 -207.32.64.0/18 2914 -207.32.160.0/20 19518 -207.32.176.0/20 36444 -207.32.192.0/22 40033 -207.32.196.0/23 26935 -207.32.198.0/24 397250 -207.32.199.0/24 26935 -207.32.200.0/22 40033 -207.32.204.0/22 26935 -207.32.208.0/22 800 -207.32.216.0/22 14315 -207.32.220.0/22 393434 -207.32.224.0/20 14991 -207.32.240.0/22 14991 -207.32.244.0/22 36443 -207.32.248.0/22 36443 -207.32.252.0/22 14991 -207.33.0.0/16 2914 -207.34.0.0/24 7377 -207.34.2.0/24 852 -207.34.4.0/24 577 -207.34.6.0/23 42 -207.34.8.0/22 46409 -207.34.24.0/22 855 -207.34.28.0/24 18814 -207.34.29.0/24 855 -207.34.30.0/23 855 -207.34.32.0/24 12096 -207.34.33.0/24 3257 -207.34.34.0/23 3257 -207.34.36.0/22 3257 -207.34.40.0/24 3257 -207.34.41.0/24 395743 -207.34.42.0/23 3257 -207.34.44.0/24 395743 -207.34.45.0/24 3257 -207.34.46.0/23 3257 -207.34.48.0/22 6171 -207.34.52.0/23 6171 -207.34.54.0/24 6171 -207.34.56.0/21 6171 -207.34.64.0/21 852 -207.34.72.0/23 15247 -207.34.74.0/23 852 -207.34.76.0/22 852 -207.34.80.0/20 852 -207.34.96.0/21 852 -207.34.104.0/22 15247 -207.34.108.0/22 852 -207.34.112.0/22 852 -207.34.116.0/24 852 -207.34.117.0/24 15247 -207.34.118.0/23 852 -207.34.120.0/22 852 -207.34.124.0/23 852 -207.34.126.0/24 53987 -207.34.127.0/24 15247 -207.34.128.0/20 852 -207.34.144.0/22 852 -207.34.148.0/22 25668 -207.34.152.0/21 852 -207.34.160.0/21 852 -207.34.168.0/23 25668 -207.34.170.0/23 852 -207.34.172.0/22 852 -207.34.176.0/20 852 -207.34.192.0/21 852 -207.34.200.0/22 852 -207.34.204.0/23 852 -207.34.206.0/24 7861 -207.34.207.0/24 852 -207.34.208.0/20 852 -207.34.224.0/19 852 -207.35.0.0/21 577 -207.35.8.0/22 577 -207.35.12.0/24 577 -207.35.13.0/24 19842 -207.35.14.0/23 577 -207.35.16.0/23 577 -207.35.18.0/24 3848 -207.35.19.0/24 21552 -207.35.20.0/24 21552 -207.35.21.0/24 577 -207.35.22.0/23 21552 -207.35.24.0/21 577 -207.35.32.0/22 577 -207.35.36.0/23 577 -207.35.38.0/24 577 -207.35.39.0/24 3848 -207.35.40.0/21 577 -207.35.48.0/20 577 -207.35.64.0/20 577 -207.35.80.0/21 577 -207.35.88.0/22 577 -207.35.92.0/23 577 -207.35.94.0/23 16532 -207.35.96.0/19 577 -207.35.128.0/19 577 -207.35.160.0/22 35911 -207.35.164.0/22 577 -207.35.168.0/24 577 -207.35.169.0/24 36522 -207.35.170.0/23 36522 -207.35.172.0/23 577 -207.35.174.0/24 395677 -207.35.175.0/24 577 -207.35.176.0/23 577 -207.35.178.0/24 36522 -207.35.179.0/24 577 -207.35.180.0/22 577 -207.35.184.0/21 577 -207.35.192.0/20 577 -207.35.208.0/21 577 -207.35.216.0/24 36522 -207.35.217.0/24 577 -207.35.218.0/23 577 -207.35.220.0/22 577 -207.35.224.0/21 577 -207.35.232.0/23 577 -207.35.234.0/24 577 -207.35.235.0/24 36522 -207.35.236.0/22 577 -207.35.240.0/22 577 -207.35.244.0/23 577 -207.35.246.0/24 3848 -207.35.247.0/24 577 -207.35.248.0/24 36522 -207.35.249.0/24 577 -207.35.250.0/23 577 -207.35.252.0/22 577 -207.36.0.0/16 3064 -207.37.1.0/24 2159 -207.37.33.0/24 2158 -207.37.34.0/24 399 -207.37.126.0/23 2159 -207.37.130.0/23 2159 -207.37.188.0/23 2159 -207.37.196.0/23 2159 -207.37.200.0/22 2159 -207.37.240.0/21 2166 -207.37.248.0/22 2166 -207.38.0.0/22 5693 -207.38.4.0/22 29849 -207.38.8.0/21 5693 -207.38.16.0/20 5693 -207.38.32.0/20 5693 -207.38.48.0/20 395127 -207.38.64.0/21 63252 -207.38.72.0/21 36489 -207.38.80.0/20 30083 -207.38.96.0/19 5693 -207.38.128.0/17 6079 -207.40.0.0/24 1239 -207.40.1.0/24 18960 -207.40.2.0/23 1239 -207.40.4.0/22 1239 -207.40.8.0/21 1239 -207.40.16.0/20 1239 -207.40.32.0/21 1239 -207.40.40.0/22 32068 -207.40.44.0/23 32068 -207.40.46.0/24 32068 -207.40.47.0/24 16526 -207.40.48.0/20 1239 -207.40.64.0/20 6157 -207.40.80.0/24 209 -207.40.81.0/24 1239 -207.40.82.0/23 1239 -207.40.84.0/22 1239 -207.40.88.0/21 1239 -207.40.96.0/20 1239 -207.40.112.0/20 209 -207.40.128.0/20 1239 -207.40.144.0/23 18618 -207.40.146.0/23 16823 -207.40.148.0/22 1239 -207.40.152.0/21 1239 -207.40.160.0/22 1239 -207.40.164.0/23 1239 -207.40.166.0/24 1239 -207.40.167.0/24 6157 -207.40.168.0/23 6157 -207.40.170.0/23 1239 -207.40.172.0/22 1239 -207.40.176.0/22 1239 -207.40.180.0/22 6157 -207.40.184.0/22 1239 -207.40.188.0/22 6157 -207.40.192.0/19 1239 -207.40.224.0/20 1239 -207.40.240.0/24 1239 -207.40.241.0/24 17032 -207.40.242.0/23 1239 -207.40.244.0/22 1239 -207.40.248.0/21 1239 -207.41.0.0/24 19783 -207.41.1.0/24 1239 -207.41.2.0/23 1239 -207.41.4.0/22 1239 -207.41.8.0/21 1239 -207.41.16.0/20 1239 -207.41.32.0/19 1239 -207.41.64.0/20 1239 -207.41.80.0/22 1239 -207.41.84.0/24 1239 -207.41.85.0/24 25696 -207.41.86.0/23 1239 -207.41.88.0/22 10461 -207.41.92.0/22 1239 -207.41.96.0/20 1239 -207.41.112.0/22 1239 -207.41.116.0/23 1239 -207.41.118.0/24 1239 -207.41.119.0/24 19643 -207.41.120.0/22 1239 -207.41.124.0/22 18435 -207.41.128.0/19 1239 -207.41.160.0/19 3257 -207.41.192.0/20 1239 -207.41.208.0/20 4133 -207.41.224.0/19 1239 -207.42.0.0/20 18649 -207.42.16.0/22 1239 -207.42.20.0/24 11722 -207.42.21.0/24 1239 -207.42.22.0/23 1239 -207.42.24.0/21 1239 -207.42.32.0/21 1239 -207.42.40.0/22 25934 -207.42.44.0/23 25934 -207.42.46.0/23 1239 -207.42.48.0/20 1239 -207.42.64.0/18 1239 -207.42.128.0/22 1239 -207.42.132.0/23 11139 -207.42.134.0/24 15344 -207.42.135.0/24 11139 -207.42.136.0/21 1239 -207.42.144.0/22 1239 -207.42.148.0/22 5778 -207.42.152.0/21 1239 -207.42.160.0/20 5778 -207.42.176.0/20 1239 -207.42.192.0/19 1239 -207.42.224.0/24 1239 -207.42.225.0/24 209 -207.42.226.0/24 1239 -207.42.227.0/24 209 -207.42.228.0/22 1239 -207.42.232.0/21 1239 -207.42.240.0/21 1239 -207.42.248.0/21 33154 -207.43.0.0/18 1239 -207.43.64.0/21 1239 -207.43.72.0/22 1239 -207.43.76.0/23 18618 -207.43.78.0/24 18618 -207.43.79.0/24 16823 -207.43.80.0/20 1239 -207.43.96.0/19 1239 -207.43.128.0/19 1239 -207.43.160.0/20 1239 -207.43.176.0/21 1239 -207.43.184.0/22 1239 -207.43.188.0/23 1239 -207.43.190.0/23 5778 -207.43.192.0/21 1239 -207.43.200.0/23 11280 -207.43.202.0/23 1239 -207.43.204.0/22 1239 -207.43.208.0/20 1239 -207.43.224.0/20 1239 -207.43.240.0/21 1239 -207.43.248.0/22 1239 -207.43.252.0/23 1239 -207.43.254.0/23 18618 -207.44.0.0/24 3737 -207.44.1.0/24 396462 -207.44.2.0/23 3737 -207.44.4.0/22 3737 -207.44.8.0/21 3737 -207.44.16.0/20 3737 -207.44.32.0/19 3737 -207.44.64.0/23 3737 -207.44.66.0/24 3737 -207.44.67.0/24 396462 -207.44.68.0/22 3737 -207.44.72.0/21 3737 -207.44.80.0/20 3737 -207.44.96.0/19 3737 -207.44.128.0/17 36351 -207.45.41.0/24 14418 -207.45.42.0/24 14418 -207.45.43.0/24 55290 -207.45.44.0/23 55290 -207.45.64.0/21 14955 -207.45.72.0/22 394406 -207.45.76.0/24 54845 -207.45.80.0/20 30462 -207.45.112.0/20 9193 -207.45.154.0/24 23251 -207.45.156.0/24 23251 -207.45.160.0/22 11383 -207.45.164.0/24 35946 -207.45.165.0/24 11383 -207.45.166.0/23 11383 -207.45.168.0/21 11383 -207.45.176.0/20 22878 -207.45.192.0/19 6453 -207.45.240.0/22 26083 -207.45.249.0/24 3299 -207.45.251.0/24 3295 -207.45.252.0/24 3298 -207.45.253.0/24 10021 -207.45.254.0/24 3295 -207.46.0.0/19 8075 -207.46.36.0/22 8075 -207.46.40.0/21 8075 -207.46.48.0/20 8075 -207.46.64.0/18 8075 -207.46.128.0/17 8075 -207.47.0.0/19 16467 -207.47.32.0/21 16467 -207.47.40.0/22 16467 -207.47.44.0/24 16467 -207.47.45.0/24 62907 -207.47.46.0/23 16467 -207.47.48.0/23 16467 -207.47.50.0/24 16467 -207.47.51.0/24 17117 -207.47.52.0/22 16467 -207.47.56.0/24 46840 -207.47.57.0/24 16467 -207.47.58.0/23 16467 -207.47.60.0/24 16467 -207.47.61.0/24 17117 -207.47.62.0/23 16467 -207.47.64.0/20 7829 -207.47.80.0/21 14265 -207.47.88.0/21 7829 -207.47.96.0/19 7829 -207.47.128.0/17 803 -207.48.0.0/18 3561 -207.48.64.0/20 3561 -207.48.80.0/23 3561 -207.48.82.0/24 3561 -207.48.83.0/24 17235 -207.48.84.0/22 3561 -207.48.88.0/21 3561 -207.48.96.0/19 3561 -207.48.128.0/17 3561 -207.49.0.0/17 3561 -207.49.128.0/20 3561 -207.49.144.0/22 3561 -207.49.148.0/23 3561 -207.49.150.0/24 25650 -207.49.151.0/24 3561 -207.49.152.0/21 3561 -207.49.160.0/19 3561 -207.49.192.0/18 3561 -207.50.0.0/17 3561 -207.50.128.0/24 1273 -207.50.144.0/20 36143 -207.50.160.0/19 3561 -207.50.192.0/18 3561 -207.51.0.0/16 3561 -207.52.0.0/16 1239 -207.53.0.0/17 701 -207.53.192.0/19 7055 -207.53.240.0/21 46309 -207.53.250.0/23 7332 -207.53.252.0/22 32329 -207.54.0.0/22 19404 -207.54.4.0/23 19404 -207.54.6.0/24 13649 -207.54.33.0/24 13483 -207.54.35.0/24 13483 -207.54.36.0/22 13483 -207.54.40.0/21 13483 -207.54.48.0/20 13483 -207.54.64.0/21 30238 -207.54.72.0/24 30238 -207.54.80.0/23 16417 -207.54.83.0/24 30215 -207.54.84.0/22 16417 -207.54.88.0/22 30238 -207.54.92.0/22 16417 -207.54.96.0/19 20161 -207.54.128.0/23 17054 -207.54.130.0/24 27560 -207.54.131.0/24 17054 -207.54.132.0/23 17054 -207.54.134.0/24 17054 -207.54.135.0/24 54315 -207.54.136.0/22 17054 -207.54.140.0/23 17054 -207.54.142.0/24 54315 -207.54.143.0/24 17054 -207.54.144.0/22 17054 -207.54.148.0/23 17054 -207.54.150.0/24 17054 -207.54.151.0/24 393441 -207.54.152.0/23 17054 -207.54.154.0/24 17054 -207.54.155.0/24 2827 -207.54.156.0/22 17054 -207.54.160.0/24 17054 -207.54.161.0/24 17192 -207.54.162.0/24 17192 -207.54.163.0/24 17054 -207.54.164.0/24 26722 -207.54.165.0/24 17054 -207.54.166.0/24 17054 -207.54.167.0/24 55074 -207.54.168.0/21 17054 -207.54.176.0/20 17054 -207.54.192.0/18 17327 -207.55.0.0/19 13868 -207.55.32.0/21 13868 -207.55.40.0/22 13868 -207.55.44.0/22 13512 -207.55.48.0/20 12044 -207.55.64.0/23 26518 -207.55.66.0/23 13868 -207.55.68.0/24 13868 -207.55.69.0/24 13512 -207.55.70.0/23 13512 -207.55.72.0/21 13868 -207.55.80.0/20 13868 -207.55.96.0/19 13868 -207.55.128.0/18 2914 -207.55.192.0/19 2914 -207.55.224.0/21 36012 -207.55.232.0/21 14188 -207.55.240.0/21 17054 -207.55.248.0/22 17054 -207.55.252.0/23 30447 -207.55.254.0/24 30447 -207.55.255.0/24 9115 -207.56.0.0/15 2914 -207.58.0.0/17 2914 -207.58.128.0/18 30633 -207.58.192.0/20 22958 -207.58.208.0/22 22958 -207.58.212.0/24 22958 -207.58.213.0/24 14001 -207.58.214.0/23 22958 -207.58.216.0/21 22958 -207.58.224.0/19 22958 -207.59.0.0/19 7029 -207.59.32.0/24 7029 -207.59.33.0/24 53478 -207.59.34.0/23 7029 -207.59.36.0/22 7029 -207.59.40.0/21 7029 -207.59.48.0/20 7029 -207.59.64.0/18 7029 -207.59.128.0/17 7029 -207.60.0.0/16 174 -207.61.0.0/19 577 -207.61.32.0/20 577 -207.61.48.0/21 577 -207.61.56.0/22 577 -207.61.60.0/24 33017 -207.61.61.0/24 577 -207.61.62.0/24 33017 -207.61.63.0/24 577 -207.61.64.0/24 577 -207.61.65.0/24 19842 -207.61.66.0/23 577 -207.61.68.0/22 577 -207.61.72.0/21 577 -207.61.80.0/24 577 -207.61.81.0/24 25946 -207.61.82.0/23 577 -207.61.84.0/23 577 -207.61.86.0/24 53564 -207.61.87.0/24 577 -207.61.88.0/24 33017 -207.61.89.0/24 577 -207.61.90.0/23 577 -207.61.92.0/22 577 -207.61.96.0/20 577 -207.61.112.0/21 577 -207.61.120.0/24 19842 -207.61.121.0/24 577 -207.61.122.0/24 33017 -207.61.123.0/24 577 -207.61.124.0/22 577 -207.61.128.0/23 577 -207.61.130.0/24 577 -207.61.131.0/24 36522 -207.61.132.0/22 577 -207.61.136.0/22 577 -207.61.140.0/24 3848 -207.61.141.0/24 577 -207.61.142.0/23 577 -207.61.144.0/23 577 -207.61.146.0/24 577 -207.61.147.0/24 16487 -207.61.148.0/22 577 -207.61.152.0/21 577 -207.61.160.0/21 577 -207.61.168.0/22 577 -207.61.172.0/23 577 -207.61.174.0/24 577 -207.61.175.0/24 19842 -207.61.176.0/24 577 -207.61.177.0/24 3848 -207.61.178.0/23 577 -207.61.180.0/22 577 -207.61.184.0/23 577 -207.61.186.0/24 3848 -207.61.187.0/24 577 -207.61.188.0/22 577 -207.61.192.0/20 577 -207.61.208.0/21 577 -207.61.216.0/24 36522 -207.61.217.0/24 577 -207.61.218.0/23 577 -207.61.220.0/23 577 -207.61.222.0/24 577 -207.61.223.0/24 36522 -207.61.224.0/21 577 -207.61.232.0/22 577 -207.61.236.0/24 25946 -207.61.237.0/24 577 -207.61.238.0/23 577 -207.61.240.0/20 577 -207.62.0.0/24 2152 -207.62.1.0/24 26492 -207.62.2.0/24 26492 -207.62.3.0/24 2152 -207.62.4.0/22 2152 -207.62.8.0/21 2152 -207.62.16.0/20 2152 -207.62.32.0/19 2152 -207.62.64.0/20 2152 -207.62.80.0/23 2152 -207.62.82.0/23 396979 -207.62.84.0/22 396979 -207.62.88.0/21 2152 -207.62.96.0/19 2152 -207.62.128.0/20 2152 -207.62.144.0/21 2152 -207.62.152.0/21 7960 -207.62.160.0/21 7960 -207.62.168.0/24 7960 -207.62.169.0/24 2152 -207.62.170.0/24 2152 -207.62.171.0/24 7960 -207.62.172.0/22 2152 -207.62.176.0/20 2152 -207.62.192.0/18 2152 -207.63.0.0/17 6325 -207.63.128.0/18 6325 -207.63.192.0/23 6325 -207.63.194.0/24 6325 -207.63.195.0/24 36655 -207.63.196.0/22 36655 -207.63.200.0/21 6325 -207.63.208.0/20 6325 -207.63.224.0/19 6325 -207.64.0.0/17 3354 -207.64.128.0/22 3354 -207.64.132.0/23 3354 -207.64.134.0/23 14618 -207.64.136.0/21 3354 -207.64.144.0/22 3354 -207.64.148.0/24 6922 -207.64.149.0/24 3354 -207.64.150.0/23 3354 -207.64.152.0/21 3354 -207.64.160.0/19 3354 -207.64.192.0/18 3354 -207.65.0.0/20 6203 -207.65.16.0/21 6203 -207.65.24.0/22 6203 -207.65.28.0/24 7029 -207.65.29.0/24 6203 -207.65.30.0/23 6203 -207.65.32.0/21 6203 -207.65.40.0/24 6203 -207.65.41.0/24 21725 -207.65.42.0/23 6203 -207.65.44.0/23 6203 -207.65.46.0/23 21725 -207.65.48.0/21 6203 -207.65.56.0/24 32458 -207.65.57.0/24 21725 -207.65.58.0/23 32458 -207.65.60.0/22 6203 -207.65.64.0/21 6203 -207.65.72.0/22 6203 -207.65.76.0/23 20187 -207.65.78.0/24 40301 -207.65.79.0/24 6203 -207.65.80.0/22 6203 -207.65.84.0/24 31941 -207.65.85.0/24 6203 -207.65.86.0/23 6203 -207.65.88.0/24 7029 -207.65.89.0/24 6203 -207.65.90.0/23 6203 -207.65.92.0/22 6203 -207.65.96.0/23 6203 -207.65.98.0/24 6203 -207.65.99.0/24 397271 -207.65.100.0/22 6203 -207.65.104.0/21 6203 -207.65.112.0/20 6203 -207.65.128.0/17 2527 -207.66.0.0/22 13332 -207.66.4.0/24 19816 -207.66.5.0/24 13332 -207.66.6.0/23 13332 -207.66.8.0/21 13332 -207.66.16.0/24 19816 -207.66.17.0/24 13332 -207.66.18.0/23 13332 -207.66.20.0/24 9009 -207.66.21.0/24 13332 -207.66.22.0/24 9009 -207.66.23.0/24 13332 -207.66.24.0/21 13332 -207.66.32.0/20 13332 -207.66.48.0/21 13332 -207.66.56.0/22 13332 -207.66.60.0/24 8038 -207.66.61.0/24 13332 -207.66.62.0/23 13332 -207.66.64.0/23 13332 -207.66.66.0/24 8038 -207.66.67.0/24 13332 -207.66.68.0/24 46261 -207.66.69.0/24 13332 -207.66.70.0/23 13332 -207.66.72.0/23 13332 -207.66.74.0/23 19437 -207.66.76.0/23 18779 -207.66.78.0/24 13332 -207.66.79.0/24 8038 -207.66.80.0/23 8038 -207.66.82.0/23 13332 -207.66.84.0/24 8038 -207.66.85.0/24 13332 -207.66.86.0/24 8038 -207.66.87.0/24 13332 -207.66.88.0/24 8038 -207.66.89.0/24 13332 -207.66.90.0/24 8038 -207.66.91.0/24 13332 -207.66.92.0/24 8038 -207.66.93.0/24 13332 -207.66.94.0/23 13332 -207.66.96.0/23 13332 -207.66.98.0/23 23470 -207.66.100.0/23 13332 -207.66.102.0/24 13332 -207.66.103.0/24 18779 -207.66.104.0/23 42831 -207.66.106.0/24 9009 -207.66.107.0/24 13332 -207.66.108.0/24 13332 -207.66.109.0/24 8038 -207.66.110.0/24 13332 -207.66.111.0/24 8038 -207.66.112.0/22 19437 -207.66.116.0/24 13332 -207.66.117.0/24 8038 -207.66.118.0/23 13332 -207.66.120.0/24 19437 -207.66.121.0/24 13332 -207.66.122.0/23 13332 -207.66.124.0/24 9009 -207.66.125.0/24 13332 -207.66.126.0/24 13332 -207.66.127.0/24 8038 -207.66.128.0/21 11608 -207.66.140.0/22 11608 -207.66.148.0/22 11608 -207.66.152.0/22 11608 -207.66.160.0/22 11608 -207.66.176.0/21 11608 -207.66.184.0/24 4258 -207.66.190.0/23 4258 -207.66.216.0/21 11608 -207.66.224.0/21 11608 -207.66.232.0/22 11608 -207.66.240.0/22 396906 -207.66.244.0/22 36182 -207.66.248.0/22 395487 -207.66.252.0/24 36182 -207.66.253.0/24 395487 -207.66.254.0/24 396906 -207.66.255.0/24 11608 -207.67.0.0/23 3549 -207.67.2.0/24 32378 -207.67.3.0/24 3549 -207.67.4.0/23 25720 -207.67.6.0/24 25720 -207.67.7.0/24 3549 -207.67.8.0/24 3549 -207.67.9.0/24 25720 -207.67.10.0/23 3549 -207.67.12.0/23 3549 -207.67.14.0/24 25720 -207.67.15.0/24 3549 -207.67.16.0/23 3549 -207.67.18.0/24 33395 -207.67.19.0/24 3549 -207.67.20.0/24 3549 -207.67.21.0/24 25720 -207.67.22.0/24 25720 -207.67.23.0/24 3549 -207.67.24.0/24 46761 -207.67.25.0/24 3549 -207.67.26.0/23 3549 -207.67.28.0/24 25720 -207.67.29.0/24 33160 -207.67.30.0/23 3549 -207.67.32.0/22 3549 -207.67.36.0/23 3549 -207.67.38.0/24 22606 -207.67.39.0/24 33395 -207.67.40.0/23 3549 -207.67.42.0/24 35997 -207.67.43.0/24 3549 -207.67.44.0/23 3549 -207.67.46.0/24 3549 -207.67.47.0/24 18929 -207.67.48.0/21 3549 -207.67.56.0/24 395176 -207.67.57.0/24 3549 -207.67.58.0/24 3549 -207.67.59.0/24 32268 -207.67.60.0/23 3549 -207.67.62.0/24 40168 -207.67.63.0/24 3549 -207.67.64.0/24 3549 -207.67.65.0/24 32268 -207.67.66.0/23 3549 -207.67.68.0/22 3549 -207.67.72.0/23 3549 -207.67.74.0/24 29898 -207.67.75.0/24 18434 -207.67.76.0/22 3549 -207.67.80.0/24 30560 -207.67.81.0/24 3549 -207.67.82.0/24 16982 -207.67.83.0/24 3549 -207.67.84.0/22 3549 -207.67.88.0/24 30560 -207.67.89.0/24 3549 -207.67.90.0/23 3549 -207.67.92.0/22 3549 -207.67.96.0/23 3549 -207.67.98.0/24 3549 -207.67.99.0/24 20333 -207.67.100.0/22 3549 -207.67.104.0/22 3549 -207.67.108.0/24 3549 -207.67.109.0/24 21857 -207.67.110.0/23 3549 -207.67.112.0/24 35901 -207.67.113.0/24 3549 -207.67.114.0/23 3549 -207.67.116.0/22 3549 -207.67.120.0/21 3549 -207.67.128.0/23 2914 -207.67.130.0/24 10708 -207.67.131.0/24 2914 -207.67.132.0/22 2914 -207.67.136.0/24 2914 -207.67.137.0/24 10708 -207.67.138.0/23 2914 -207.67.140.0/22 2914 -207.67.144.0/20 2914 -207.67.160.0/19 2914 -207.67.192.0/18 2914 -207.68.0.0/18 701 -207.68.96.0/19 701 -207.68.128.0/18 8075 -207.68.192.0/22 12239 -207.68.196.0/22 394241 -207.68.208.0/20 12241 -207.68.224.0/19 46687 -207.69.0.0/16 7029 -207.70.0.0/18 14230 -207.70.64.0/18 2828 -207.70.128.0/18 6300 -207.70.240.0/20 394276 -207.71.0.0/22 3549 -207.71.4.0/24 3549 -207.71.5.0/24 54319 -207.71.6.0/23 3549 -207.71.8.0/22 3549 -207.71.12.0/23 11667 -207.71.14.0/23 3549 -207.71.16.0/21 3549 -207.71.24.0/22 3549 -207.71.28.0/24 3549 -207.71.29.0/24 54979 -207.71.30.0/23 3549 -207.71.32.0/24 13993 -207.71.33.0/24 3549 -207.71.34.0/23 3549 -207.71.36.0/22 3549 -207.71.40.0/24 54050 -207.71.41.0/24 3549 -207.71.42.0/23 3549 -207.71.44.0/22 3549 -207.71.48.0/24 32152 -207.71.49.0/24 3549 -207.71.50.0/23 3549 -207.71.52.0/23 3549 -207.71.54.0/24 26831 -207.71.55.0/24 3549 -207.71.56.0/21 3549 -207.71.64.0/18 2914 -207.71.128.0/23 21896 -207.71.135.0/24 21896 -207.71.136.0/23 21896 -207.71.142.0/23 21896 -207.71.160.0/23 26962 -207.71.163.0/24 26962 -207.71.164.0/23 26962 -207.71.167.0/24 26962 -207.71.168.0/24 26962 -207.71.171.0/24 26962 -207.71.172.0/22 26962 -207.71.192.0/18 4927 -207.72.0.0/18 237 -207.72.64.0/22 393474 -207.72.68.0/24 393474 -207.72.69.0/24 237 -207.72.70.0/23 237 -207.72.72.0/21 237 -207.72.80.0/20 237 -207.72.96.0/19 237 -207.72.128.0/17 237 -207.73.0.0/16 237 -207.74.0.0/16 237 -207.75.0.0/17 237 -207.75.128.0/20 237 -207.75.144.0/20 36375 -207.75.160.0/19 237 -207.75.192.0/18 237 -207.76.0.0/17 701 -207.76.128.0/19 701 -207.76.160.0/21 701 -207.76.168.0/22 701 -207.76.172.0/24 63311 -207.76.173.0/24 701 -207.76.174.0/24 701 -207.76.175.0/24 62 -207.76.176.0/20 701 -207.76.192.0/20 701 -207.76.208.0/21 701 -207.76.216.0/23 701 -207.76.218.0/24 6431 -207.76.219.0/24 701 -207.76.220.0/22 701 -207.76.224.0/19 701 -207.77.0.0/16 701 -207.78.0.0/18 701 -207.78.64.0/22 20447 -207.78.68.0/22 701 -207.78.72.0/21 701 -207.78.80.0/22 701 -207.78.84.0/24 18707 -207.78.85.0/24 701 -207.78.86.0/23 701 -207.78.88.0/21 701 -207.78.96.0/20 701 -207.78.112.0/22 701 -207.78.116.0/24 27019 -207.78.117.0/24 54519 -207.78.118.0/23 701 -207.78.120.0/21 701 -207.78.128.0/21 701 -207.78.136.0/22 701 -207.78.140.0/22 26636 -207.78.144.0/20 701 -207.78.160.0/19 701 -207.78.192.0/18 701 -207.79.0.0/17 701 -207.79.128.0/19 701 -207.79.160.0/20 701 -207.79.176.0/22 701 -207.79.180.0/23 701 -207.79.182.0/24 701 -207.79.183.0/24 393361 -207.79.184.0/21 701 -207.79.192.0/23 701 -207.79.194.0/24 16756 -207.79.195.0/24 701 -207.79.196.0/22 701 -207.79.200.0/21 701 -207.79.208.0/20 701 -207.79.224.0/19 701 -207.80.0.0/16 3354 -207.81.0.0/17 852 -207.81.128.0/20 852 -207.81.144.0/22 852 -207.81.148.0/22 25668 -207.81.152.0/21 852 -207.81.160.0/19 852 -207.81.192.0/18 852 -207.82.0.0/20 3561 -207.82.16.0/22 3561 -207.82.20.0/23 7991 -207.82.22.0/23 395505 -207.82.24.0/21 3561 -207.82.32.0/19 3561 -207.82.64.0/20 3561 -207.82.80.0/24 42427 -207.82.81.0/24 3561 -207.82.82.0/23 3561 -207.82.84.0/22 3561 -207.82.88.0/24 6640 -207.82.89.0/24 3561 -207.82.90.0/23 3561 -207.82.92.0/22 3561 -207.82.96.0/19 3561 -207.82.128.0/18 3561 -207.82.192.0/20 3561 -207.82.208.0/24 10584 -207.82.209.0/24 3561 -207.82.210.0/23 3561 -207.82.212.0/23 3561 -207.82.214.0/24 54196 -207.82.215.0/24 3561 -207.82.216.0/21 3561 -207.82.224.0/20 3561 -207.82.240.0/21 3561 -207.82.248.0/23 3561 -207.82.250.0/23 8075 -207.82.252.0/22 3561 -207.83.0.0/20 3356 -207.83.16.0/20 852 -207.83.32.0/19 3356 -207.83.64.0/18 3356 -207.83.128.0/18 3356 -207.83.192.0/22 17072 -207.83.196.0/22 28469 -207.83.200.0/22 17072 -207.83.204.0/22 28469 -207.83.208.0/22 28469 -207.83.212.0/23 17072 -207.83.214.0/23 28469 -207.83.216.0/21 28469 -207.83.224.0/19 3356 -207.86.0.0/20 2828 -207.86.16.0/21 2828 -207.86.24.0/22 2828 -207.86.28.0/24 53456 -207.86.29.0/24 2828 -207.86.30.0/23 2828 -207.86.32.0/22 2828 -207.86.36.0/23 2828 -207.86.38.0/24 22103 -207.86.39.0/24 2828 -207.86.40.0/21 2828 -207.86.48.0/20 2828 -207.86.64.0/19 2828 -207.86.96.0/20 2828 -207.86.112.0/21 2828 -207.86.120.0/23 21832 -207.86.122.0/24 21832 -207.86.123.0/24 2828 -207.86.124.0/22 2828 -207.86.128.0/19 2828 -207.86.160.0/21 2828 -207.86.168.0/22 2828 -207.86.172.0/23 2828 -207.86.174.0/23 3257 -207.86.176.0/22 2828 -207.86.180.0/23 2828 -207.86.182.0/24 2828 -207.86.183.0/24 701 -207.86.184.0/21 2828 -207.86.192.0/18 2828 -207.87.0.0/17 2828 -207.87.128.0/19 2828 -207.87.160.0/20 2828 -207.87.176.0/22 2828 -207.87.180.0/23 2828 -207.87.182.0/23 7381 -207.87.184.0/22 2828 -207.87.188.0/24 2828 -207.87.189.0/24 393314 -207.87.190.0/23 2828 -207.87.192.0/24 16493 -207.87.193.0/24 2828 -207.87.194.0/23 2828 -207.87.196.0/22 2828 -207.87.200.0/21 2828 -207.87.208.0/22 2828 -207.87.212.0/24 33278 -207.87.213.0/24 2828 -207.87.214.0/23 2828 -207.87.216.0/21 2828 -207.87.224.0/20 2828 -207.87.240.0/21 2828 -207.87.248.0/23 2828 -207.87.250.0/24 2828 -207.87.251.0/24 209 -207.87.252.0/24 209 -207.87.253.0/24 2828 -207.87.254.0/23 2828 -207.88.0.0/19 2828 -207.88.32.0/20 2828 -207.88.48.0/24 395623 -207.88.49.0/24 2828 -207.88.50.0/24 62900 -207.88.51.0/24 2828 -207.88.52.0/22 2828 -207.88.56.0/21 2828 -207.88.64.0/19 2828 -207.88.96.0/23 14311 -207.88.98.0/24 14311 -207.88.99.0/24 2828 -207.88.100.0/22 2828 -207.88.104.0/21 2828 -207.88.112.0/20 2828 -207.88.128.0/21 2828 -207.88.136.0/24 29819 -207.88.137.0/24 2828 -207.88.138.0/23 2828 -207.88.140.0/22 2828 -207.88.144.0/20 2828 -207.88.160.0/19 2828 -207.88.192.0/18 2828 -207.89.0.0/20 25853 -207.89.16.0/23 53889 -207.89.18.0/24 53889 -207.89.19.0/24 6130 -207.89.20.0/22 53889 -207.89.24.0/21 62786 -207.89.32.0/22 19009 -207.89.36.0/23 19009 -207.89.38.0/24 19009 -207.89.39.0/24 53623 -207.89.40.0/21 19009 -207.89.48.0/24 395304 -207.89.49.0/24 30558 -207.89.50.0/24 7064 -207.89.51.0/24 63457 -207.89.52.0/24 395419 -207.89.53.0/24 36796 -207.89.54.0/24 395206 -207.89.55.0/24 395440 -207.89.56.0/24 394653 -207.89.57.0/24 54474 -207.89.58.0/23 394444 -207.89.60.0/24 31775 -207.89.61.0/24 394961 -207.89.63.0/24 394957 -207.89.64.0/18 58243 -207.89.128.0/24 7321 -207.89.130.0/24 7321 -207.89.140.0/24 7321 -207.89.239.0/24 7321 -207.89.248.0/24 7321 -207.89.251.0/24 7321 -207.89.253.0/24 7321 -207.89.254.0/24 7321 -207.90.0.0/21 3502 -207.90.8.0/22 3502 -207.90.12.0/23 3502 -207.90.14.0/23 204472 -207.90.16.0/24 3502 -207.90.17.0/24 204472 -207.90.18.0/24 3502 -207.90.19.0/24 204472 -207.90.20.0/23 204472 -207.90.22.0/24 3502 -207.90.23.0/24 204472 -207.90.24.0/23 204472 -207.90.26.0/24 3502 -207.90.27.0/24 204472 -207.90.28.0/24 3502 -207.90.29.0/24 204472 -207.90.30.0/24 3502 -207.90.31.0/24 204472 -207.90.32.0/23 3502 -207.90.34.0/24 204472 -207.90.35.0/24 3502 -207.90.36.0/24 204472 -207.90.37.0/24 3502 -207.90.38.0/24 204472 -207.90.39.0/24 3502 -207.90.40.0/24 204472 -207.90.41.0/24 3502 -207.90.42.0/24 204472 -207.90.43.0/24 3502 -207.90.44.0/24 204472 -207.90.45.0/24 3502 -207.90.46.0/23 204472 -207.90.48.0/23 204472 -207.90.50.0/24 3502 -207.90.51.0/24 204472 -207.90.52.0/24 3502 -207.90.53.0/24 204472 -207.90.54.0/24 3502 -207.90.55.0/24 204472 -207.90.56.0/21 204472 -207.90.64.0/18 7321 -207.90.179.0/24 395800 -207.90.185.0/24 64237 -207.91.0.0/18 7029 -207.91.64.0/19 2914 -207.91.96.0/24 2914 -207.91.97.0/24 174 -207.91.98.0/23 2914 -207.91.100.0/22 2914 -207.91.104.0/21 2914 -207.91.112.0/20 2914 -207.91.128.0/22 4943 -207.91.132.0/24 4943 -207.91.133.0/24 25956 -207.91.134.0/23 4943 -207.91.136.0/21 4943 -207.91.144.0/24 4943 -207.91.145.0/24 25956 -207.91.146.0/23 4943 -207.91.148.0/22 4943 -207.91.152.0/23 4943 -207.91.154.0/24 4943 -207.91.155.0/24 25956 -207.91.156.0/22 4943 -207.91.160.0/24 25956 -207.91.161.0/24 4943 -207.91.162.0/23 4943 -207.91.164.0/24 25956 -207.91.165.0/24 4943 -207.91.166.0/23 4943 -207.91.168.0/22 4943 -207.91.172.0/23 4943 -207.91.174.0/24 25956 -207.91.175.0/24 4943 -207.91.176.0/24 25956 -207.91.177.0/24 4943 -207.91.178.0/23 4943 -207.91.180.0/22 4943 -207.91.184.0/22 4943 -207.91.188.0/24 36366 -207.91.189.0/24 4943 -207.91.190.0/23 25956 -207.91.192.0/18 12129 -207.92.0.0/19 7029 -207.92.32.0/20 7029 -207.92.64.0/18 7029 -207.92.128.0/20 7029 -207.92.192.0/24 3356 -207.92.193.0/24 36093 -207.92.194.0/24 36104 -207.92.195.0/24 3356 -207.92.196.0/23 3356 -207.92.198.0/23 50360 -207.92.200.0/21 3356 -207.92.208.0/20 7029 -207.92.240.0/20 7029 -207.93.0.0/19 7029 -207.93.64.0/19 7029 -207.93.98.0/24 33227 -207.93.112.0/20 7029 -207.93.176.0/20 7029 -207.93.192.0/20 7029 -207.93.211.0/24 11200 -207.93.214.0/24 27459 -207.93.224.0/19 7029 -207.94.0.0/20 7029 -207.94.16.0/22 3356 -207.94.20.0/24 50360 -207.94.21.0/24 3356 -207.94.22.0/24 36329 -207.94.23.0/24 3356 -207.94.24.0/21 3356 -207.94.32.0/20 7029 -207.94.64.0/20 7029 -207.94.128.0/20 7029 -207.94.160.0/20 7029 -207.94.208.0/20 7029 -207.95.32.0/20 7029 -207.95.80.0/20 7029 -207.95.112.0/20 7029 -207.95.144.0/20 7029 -207.95.176.0/20 7029 -207.95.192.0/19 7029 -207.96.0.0/17 6079 -207.96.128.0/22 5769 -207.96.132.0/23 5769 -207.96.134.0/24 30180 -207.96.135.0/24 5769 -207.96.136.0/24 5769 -207.96.137.0/24 30336 -207.96.138.0/23 5769 -207.96.140.0/22 5769 -207.96.144.0/24 5769 -207.96.145.0/24 46618 -207.96.146.0/23 5769 -207.96.148.0/24 46618 -207.96.149.0/24 5769 -207.96.150.0/23 5769 -207.96.152.0/24 5769 -207.96.153.0/24 46618 -207.96.154.0/23 5769 -207.96.156.0/23 395075 -207.96.158.0/23 5769 -207.96.160.0/22 5769 -207.96.164.0/24 5769 -207.96.165.0/24 46618 -207.96.166.0/24 46618 -207.96.167.0/24 5769 -207.96.168.0/23 5769 -207.96.170.0/24 30336 -207.96.171.0/24 5769 -207.96.172.0/24 46618 -207.96.173.0/24 5769 -207.96.174.0/23 5769 -207.96.176.0/24 30180 -207.96.177.0/24 395075 -207.96.178.0/24 5769 -207.96.179.0/24 30336 -207.96.180.0/24 395075 -207.96.181.0/24 5769 -207.96.182.0/23 5769 -207.96.184.0/23 395075 -207.96.186.0/24 30336 -207.96.187.0/24 5769 -207.96.188.0/22 395075 -207.96.192.0/24 5769 -207.96.193.0/24 395075 -207.96.194.0/24 395075 -207.96.195.0/24 5769 -207.96.196.0/23 5769 -207.96.198.0/24 46618 -207.96.199.0/24 5769 -207.96.200.0/23 395075 -207.96.202.0/24 5769 -207.96.203.0/24 395075 -207.96.204.0/24 46618 -207.96.205.0/24 12132 -207.96.206.0/24 12132 -207.96.207.0/24 5769 -207.96.208.0/23 5769 -207.96.210.0/24 5769 -207.96.211.0/24 395075 -207.96.212.0/24 395075 -207.96.213.0/24 5769 -207.96.214.0/23 5769 -207.96.216.0/23 5769 -207.96.218.0/24 5769 -207.96.219.0/24 395075 -207.96.220.0/22 5769 -207.96.224.0/21 5769 -207.96.232.0/24 30336 -207.96.233.0/24 5769 -207.96.234.0/24 30336 -207.96.235.0/24 5769 -207.96.236.0/24 30336 -207.96.237.0/24 5769 -207.96.238.0/23 5769 -207.96.240.0/24 5769 -207.96.241.0/24 30336 -207.96.242.0/24 5769 -207.96.243.0/24 395075 -207.96.244.0/23 30336 -207.96.246.0/24 5769 -207.96.247.0/24 395075 -207.96.248.0/22 5769 -207.96.252.0/23 5769 -207.96.254.0/23 395075 -207.97.0.0/17 2914 -207.97.128.0/19 3257 -207.97.160.0/22 3257 -207.97.164.0/24 3257 -207.97.165.0/24 62822 -207.97.166.0/23 3257 -207.97.168.0/21 3257 -207.97.176.0/21 3257 -207.97.184.0/23 3257 -207.97.186.0/24 3257 -207.97.187.0/24 62780 -207.97.188.0/24 394093 -207.97.189.0/24 3257 -207.97.190.0/23 3257 -207.97.192.0/18 27357 -207.98.64.0/21 3701 -207.98.72.0/21 3582 -207.98.80.0/20 3701 -207.98.96.0/19 3701 -207.98.128.0/18 12083 -207.98.192.0/19 12083 -207.98.224.0/20 12083 -207.98.240.0/21 12083 -207.98.248.0/24 12083 -207.98.249.0/24 393821 -207.98.250.0/23 12083 -207.98.252.0/22 12083 -207.99.0.0/20 8001 -207.99.16.0/22 8001 -207.99.20.0/23 8001 -207.99.22.0/24 19865 -207.99.23.0/24 8001 -207.99.24.0/21 8001 -207.99.32.0/21 8001 -207.99.40.0/22 8001 -207.99.44.0/24 396924 -207.99.45.0/24 8001 -207.99.46.0/23 8001 -207.99.48.0/20 8001 -207.99.64.0/19 8001 -207.99.96.0/20 8001 -207.99.112.0/23 8001 -207.99.114.0/24 63077 -207.99.115.0/24 8001 -207.99.116.0/22 8001 -207.99.120.0/21 8001 -207.99.128.0/21 2920 -207.99.136.0/23 2920 -207.99.138.0/24 2920 -207.99.139.0/24 2152 -207.99.140.0/22 2920 -207.99.144.0/23 2920 -207.99.146.0/24 2920 -207.99.147.0/24 2152 -207.99.148.0/22 2920 -207.99.152.0/21 2920 -207.99.160.0/19 2920 -207.99.192.0/18 2920 -207.100.50.0/23 701 -207.100.52.0/22 701 -207.101.0.0/16 2828 -207.102.0.0/17 852 -207.102.128.0/18 852 -207.102.192.0/19 852 -207.102.224.0/20 852 -207.102.240.0/24 15101 -207.102.241.0/24 852 -207.102.242.0/23 852 -207.102.244.0/22 852 -207.102.248.0/21 852 -207.103.0.0/16 46800 -207.104.0.0/19 7018 -207.104.32.0/20 7018 -207.104.48.0/23 7018 -207.104.50.0/23 395215 -207.104.52.0/22 7018 -207.104.56.0/21 7018 -207.104.64.0/21 7018 -207.104.72.0/23 7018 -207.104.74.0/24 7018 -207.104.75.0/24 13330 -207.104.76.0/22 7018 -207.104.80.0/20 7018 -207.104.96.0/19 7018 -207.104.128.0/19 7018 -207.104.160.0/22 7018 -207.104.164.0/24 7018 -207.104.165.0/24 19404 -207.104.166.0/23 7018 -207.104.168.0/21 7018 -207.104.176.0/22 7018 -207.104.180.0/24 7018 -207.104.181.0/24 25993 -207.104.182.0/23 7018 -207.104.184.0/21 7018 -207.104.192.0/20 7018 -207.104.208.0/23 7018 -207.104.210.0/24 7018 -207.104.211.0/24 30452 -207.104.212.0/22 7018 -207.104.216.0/21 7018 -207.104.224.0/19 7018 -207.105.0.0/17 7018 -207.105.128.0/18 7018 -207.105.192.0/21 7018 -207.105.200.0/24 54645 -207.105.201.0/24 7018 -207.105.202.0/23 7018 -207.105.204.0/22 7018 -207.105.208.0/20 7018 -207.105.224.0/19 7018 -207.106.0.0/20 7029 -207.106.16.0/22 7029 -207.106.20.0/23 7029 -207.106.22.0/24 33480 -207.106.23.0/24 7029 -207.106.24.0/21 7029 -207.106.32.0/21 7029 -207.106.40.0/23 7029 -207.106.42.0/24 19674 -207.106.43.0/24 7029 -207.106.44.0/22 7029 -207.106.48.0/24 7029 -207.106.49.0/24 19674 -207.106.50.0/23 7029 -207.106.52.0/22 7029 -207.106.56.0/21 7029 -207.106.64.0/19 7029 -207.106.96.0/21 7029 -207.106.104.0/23 7029 -207.106.106.0/24 31836 -207.106.107.0/24 7029 -207.106.108.0/23 7029 -207.106.110.0/24 7029 -207.106.111.0/24 39940 -207.106.112.0/20 7029 -207.106.128.0/20 7029 -207.106.144.0/21 7029 -207.106.152.0/24 7029 -207.106.153.0/24 27217 -207.106.154.0/23 7029 -207.106.156.0/22 7029 -207.106.160.0/19 7029 -207.106.192.0/24 20458 -207.106.193.0/24 7029 -207.106.194.0/23 7029 -207.106.196.0/22 7029 -207.106.200.0/21 7029 -207.106.208.0/22 7029 -207.106.212.0/23 7029 -207.106.214.0/24 30288 -207.106.215.0/24 7029 -207.106.216.0/21 7029 -207.106.224.0/21 7029 -207.106.232.0/23 7029 -207.106.234.0/24 7029 -207.106.235.0/24 33480 -207.106.236.0/22 7029 -207.106.240.0/20 7029 -207.107.0.0/22 3602 -207.107.4.0/23 3602 -207.107.6.0/24 3602 -207.107.7.0/24 812 -207.107.8.0/21 3602 -207.107.16.0/20 3602 -207.107.32.0/19 3602 -207.107.64.0/20 812 -207.107.80.0/20 3602 -207.107.96.0/20 812 -207.107.112.0/20 3602 -207.107.128.0/20 3602 -207.107.144.0/23 812 -207.107.146.0/24 46872 -207.107.147.0/24 812 -207.107.148.0/22 812 -207.107.152.0/21 812 -207.107.160.0/19 3602 -207.107.192.0/20 3602 -207.107.208.0/22 3602 -207.107.212.0/24 6539 -207.107.213.0/24 3602 -207.107.214.0/23 3602 -207.107.216.0/21 3602 -207.107.224.0/19 3602 -207.108.0.0/21 209 -207.108.8.0/24 209 -207.108.9.0/24 35962 -207.108.10.0/23 209 -207.108.12.0/22 209 -207.108.16.0/20 209 -207.108.32.0/21 209 -207.108.40.0/24 32075 -207.108.41.0/24 209 -207.108.42.0/24 209 -207.108.43.0/24 26955 -207.108.44.0/22 209 -207.108.48.0/22 209 -207.108.52.0/24 209 -207.108.53.0/24 35855 -207.108.54.0/23 209 -207.108.56.0/21 209 -207.108.64.0/20 209 -207.108.80.0/24 33277 -207.108.81.0/24 209 -207.108.82.0/23 209 -207.108.84.0/22 209 -207.108.88.0/21 209 -207.108.96.0/19 209 -207.108.128.0/24 209 -207.108.129.0/24 62559 -207.108.130.0/23 209 -207.108.132.0/22 209 -207.108.136.0/24 30449 -207.108.137.0/24 209 -207.108.138.0/23 209 -207.108.140.0/24 209 -207.108.141.0/24 18899 -207.108.142.0/23 209 -207.108.144.0/20 209 -207.108.160.0/19 209 -207.108.192.0/21 209 -207.108.200.0/24 209 -207.108.201.0/24 11278 -207.108.202.0/23 209 -207.108.204.0/22 209 -207.108.208.0/22 209 -207.108.212.0/23 18533 -207.108.214.0/23 209 -207.108.216.0/21 209 -207.108.224.0/19 209 -207.109.0.0/21 209 -207.109.8.0/23 209 -207.109.10.0/24 40413 -207.109.11.0/24 209 -207.109.12.0/22 209 -207.109.16.0/20 209 -207.109.32.0/19 209 -207.109.64.0/22 209 -207.109.68.0/24 395143 -207.109.69.0/24 22463 -207.109.70.0/23 209 -207.109.72.0/21 209 -207.109.80.0/20 209 -207.109.96.0/21 209 -207.109.104.0/22 209 -207.109.108.0/23 209 -207.109.110.0/24 209 -207.109.111.0/24 35994 -207.109.112.0/21 209 -207.109.120.0/23 209 -207.109.122.0/24 27031 -207.109.123.0/24 209 -207.109.124.0/22 209 -207.109.128.0/23 397973 -207.109.130.0/23 209 -207.109.132.0/24 209 -207.109.133.0/24 14990 -207.109.134.0/23 209 -207.109.136.0/23 397973 -207.109.138.0/24 397973 -207.109.139.0/24 32075 -207.109.140.0/22 209 -207.109.144.0/23 209 -207.109.146.0/24 13685 -207.109.147.0/24 209 -207.109.148.0/22 209 -207.109.152.0/21 209 -207.109.160.0/21 209 -207.109.168.0/23 209 -207.109.170.0/24 22180 -207.109.171.0/24 209 -207.109.172.0/22 209 -207.109.176.0/20 209 -207.109.192.0/18 209 -207.110.0.0/21 2828 -207.110.8.0/23 2828 -207.110.10.0/24 2828 -207.110.11.0/24 395025 -207.110.12.0/23 2828 -207.110.14.0/24 2828 -207.110.15.0/24 62833 -207.110.16.0/22 2828 -207.110.20.0/24 2828 -207.110.21.0/24 54148 -207.110.22.0/23 2828 -207.110.24.0/21 2828 -207.110.32.0/23 2828 -207.110.34.0/24 15278 -207.110.35.0/24 2828 -207.110.36.0/22 2828 -207.110.40.0/22 2828 -207.110.44.0/23 2828 -207.110.46.0/23 53559 -207.110.48.0/20 2828 -207.110.192.0/20 29732 -207.110.208.0/23 29732 -207.111.64.0/21 2914 -207.111.72.0/22 2914 -207.111.76.0/22 18973 -207.111.80.0/20 2914 -207.111.96.0/19 2914 -207.111.160.0/20 7314 -207.111.176.0/22 19880 -207.111.180.0/23 19880 -207.111.192.0/18 3925 -207.112.0.0/21 6407 -207.112.8.0/24 6407 -207.112.9.0/24 812 -207.112.10.0/23 812 -207.112.12.0/22 812 -207.112.16.0/20 6407 -207.112.32.0/21 6407 -207.112.40.0/22 6407 -207.112.44.0/23 6407 -207.112.46.0/24 812 -207.112.47.0/24 6407 -207.112.48.0/20 6407 -207.112.64.0/18 6407 -207.112.128.0/18 3356 -207.112.192.0/19 3356 -207.112.224.0/21 3356 -207.112.232.0/22 3356 -207.112.236.0/23 15290 -207.112.238.0/23 3356 -207.112.240.0/20 3356 -207.113.0.0/21 7270 -207.113.8.0/22 7270 -207.113.12.0/24 32798 -207.113.13.0/24 7270 -207.113.14.0/23 7270 -207.113.16.0/20 7270 -207.113.32.0/19 7270 -207.113.64.0/18 7270 -207.113.128.0/17 4544 -207.114.0.0/20 17054 -207.114.16.0/21 17054 -207.114.24.0/24 16409 -207.114.25.0/24 17054 -207.114.26.0/23 17054 -207.114.28.0/23 17054 -207.114.30.0/24 17054 -207.114.31.0/24 53302 -207.114.32.0/21 16409 -207.114.40.0/21 17054 -207.114.48.0/20 17054 -207.114.64.0/18 17054 -207.114.128.0/21 3549 -207.114.136.0/23 3549 -207.114.138.0/24 3549 -207.114.139.0/24 26651 -207.114.140.0/22 3549 -207.114.144.0/22 3549 -207.114.148.0/23 3549 -207.114.150.0/23 26974 -207.114.152.0/22 3549 -207.114.156.0/23 3549 -207.114.158.0/24 3549 -207.114.159.0/24 26421 -207.114.160.0/24 32635 -207.114.161.0/24 3549 -207.114.162.0/23 3549 -207.114.164.0/23 3549 -207.114.166.0/23 25649 -207.114.168.0/22 3549 -207.114.172.0/23 3549 -207.114.174.0/23 26974 -207.114.176.0/24 3549 -207.114.177.0/24 19881 -207.114.178.0/23 3549 -207.114.180.0/23 3549 -207.114.182.0/24 3549 -207.114.183.0/24 21817 -207.114.184.0/22 3549 -207.114.188.0/23 3549 -207.114.190.0/24 21817 -207.114.191.0/24 3549 -207.114.192.0/24 3549 -207.114.193.0/24 33643 -207.114.194.0/23 3549 -207.114.196.0/24 12016 -207.114.197.0/24 3549 -207.114.198.0/23 26974 -207.114.200.0/21 3549 -207.114.208.0/22 3549 -207.114.212.0/24 62783 -207.114.213.0/24 3549 -207.114.214.0/23 3549 -207.114.216.0/22 3549 -207.114.220.0/23 3549 -207.114.222.0/24 3549 -207.114.223.0/24 36635 -207.114.224.0/21 3549 -207.114.232.0/23 3549 -207.114.234.0/24 62868 -207.114.235.0/24 3549 -207.114.236.0/22 3549 -207.114.240.0/22 3549 -207.114.244.0/24 15292 -207.114.245.0/24 3549 -207.114.246.0/23 3549 -207.114.248.0/21 3549 -207.115.64.0/19 18530 -207.115.96.0/20 11478 -207.115.112.0/20 22352 -207.117.0.0/16 3300 -207.118.0.0/19 209 -207.118.32.0/21 209 -207.118.40.0/21 22561 -207.118.48.0/20 22561 -207.118.64.0/20 22561 -207.118.80.0/20 209 -207.118.96.0/21 22561 -207.118.104.0/21 209 -207.118.112.0/20 209 -207.118.128.0/20 209 -207.118.144.0/20 22561 -207.118.160.0/21 209 -207.118.168.0/21 22561 -207.118.176.0/20 209 -207.118.192.0/21 22561 -207.118.200.0/22 22561 -207.118.204.0/22 209 -207.118.208.0/21 209 -207.118.216.0/21 22561 -207.118.224.0/21 209 -207.118.232.0/21 22561 -207.118.240.0/22 22561 -207.118.244.0/24 22561 -207.118.245.0/24 209 -207.118.246.0/23 22561 -207.118.248.0/21 22561 -207.119.0.0/19 22561 -207.119.32.0/21 22561 -207.119.40.0/22 209 -207.119.44.0/22 22561 -207.119.48.0/20 22561 -207.119.64.0/22 22561 -207.119.68.0/22 209 -207.119.72.0/21 22561 -207.119.80.0/20 22561 -207.119.96.0/19 22561 -207.119.128.0/18 22561 -207.119.192.0/20 22561 -207.119.208.0/21 22561 -207.119.216.0/21 209 -207.119.224.0/22 209 -207.119.228.0/22 22561 -207.119.232.0/21 22561 -207.119.240.0/20 22561 -207.120.0.0/20 3356 -207.120.16.0/21 3356 -207.120.24.0/22 3356 -207.120.28.0/22 10355 -207.120.32.0/19 3356 -207.120.64.0/21 3356 -207.120.72.0/24 3356 -207.120.73.0/24 10546 -207.120.74.0/23 3356 -207.120.76.0/22 3356 -207.120.80.0/20 3356 -207.120.96.0/20 3356 -207.120.112.0/21 3356 -207.120.120.0/24 395800 -207.120.121.0/24 3356 -207.120.122.0/23 3356 -207.120.124.0/22 3356 -207.120.128.0/19 3356 -207.120.160.0/23 7219 -207.120.162.0/23 3356 -207.120.164.0/22 3356 -207.120.168.0/21 3356 -207.120.176.0/20 3356 -207.120.192.0/22 3356 -207.120.196.0/23 3356 -207.120.198.0/23 10355 -207.120.200.0/24 10355 -207.120.201.0/24 3356 -207.120.202.0/23 3356 -207.120.204.0/22 3356 -207.120.208.0/22 3356 -207.120.212.0/24 3356 -207.120.213.0/24 7219 -207.120.214.0/23 7219 -207.120.216.0/21 3356 -207.120.224.0/19 3356 -207.121.0.0/18 3356 -207.121.64.0/21 11524 -207.121.72.0/22 11524 -207.121.76.0/22 3356 -207.121.80.0/20 3356 -207.121.96.0/19 3356 -207.121.128.0/17 3356 -207.122.0.0/18 3356 -207.122.64.0/20 3356 -207.122.80.0/21 3356 -207.122.88.0/24 30394 -207.122.89.0/24 3356 -207.122.90.0/23 3356 -207.122.92.0/22 3356 -207.122.96.0/19 3356 -207.122.128.0/17 3356 -207.123.0.0/16 3356 -207.124.0.0/16 3561 -207.125.0.0/16 4454 -207.126.0.0/19 36514 -207.126.40.0/21 10302 -207.126.48.0/20 30222 -207.126.64.0/19 6939 -207.126.96.0/24 6461 -207.126.97.0/24 40618 -207.126.98.0/23 6461 -207.126.100.0/24 6461 -207.126.101.0/24 393698 -207.126.102.0/23 6461 -207.126.104.0/23 6461 -207.126.106.0/24 54312 -207.126.107.0/24 6461 -207.126.108.0/23 6461 -207.126.110.0/23 63298 -207.126.112.0/24 18707 -207.126.113.0/24 6461 -207.126.114.0/23 6461 -207.126.116.0/22 6461 -207.126.120.0/23 6461 -207.126.122.0/24 63442 -207.126.123.0/24 6461 -207.126.124.0/24 6461 -207.126.125.0/24 30245 -207.126.126.0/23 6461 -207.126.128.0/22 19019 -207.126.134.0/24 5056 -207.126.135.0/24 19019 -207.126.136.0/22 48328 -207.126.140.0/23 54272 -207.126.160.0/24 46176 -207.126.164.0/24 46176 -207.126.165.0/24 8100 -207.126.166.0/23 46176 -207.126.168.0/21 7046 -207.126.178.0/23 46814 -207.126.184.0/24 46814 -207.126.188.0/23 46814 -207.126.195.0/24 2386 -207.126.196.0/23 2386 -207.126.203.0/24 2386 -207.126.205.0/24 2386 -207.126.206.0/23 3356 -207.126.208.0/20 32626 -207.126.224.0/20 7233 -207.126.240.0/23 7243 -207.126.242.0/24 7243 -207.126.245.0/24 7243 -207.126.247.0/24 7243 -207.126.248.0/23 7243 -207.126.254.0/23 7243 -207.127.0.0/18 14135 -207.127.95.0/24 5061 -207.127.96.0/22 5061 -207.127.100.0/24 5061 -207.127.102.0/23 5061 -207.127.105.0/24 5061 -207.127.106.0/23 5061 -207.127.108.0/22 5061 -207.127.112.0/23 5061 -207.127.116.0/23 5061 -207.127.132.0/24 5061 -207.127.149.0/24 5061 -207.127.151.0/24 5061 -207.127.152.0/24 5061 -207.127.166.0/23 26931 -207.128.0.0/15 6289 -207.130.0.0/18 6289 -207.130.64.0/19 6289 -207.130.96.0/21 6289 -207.130.104.0/23 7018 -207.130.106.0/23 6289 -207.130.108.0/22 6289 -207.130.112.0/20 6289 -207.130.128.0/17 6289 -207.131.0.0/16 6289 -207.132.0.0/19 721 -207.132.32.0/24 721 -207.132.33.0/24 2749 -207.132.34.0/24 721 -207.132.35.0/24 5860 -207.132.36.0/23 721 -207.132.38.0/24 27064 -207.132.39.0/24 721 -207.132.40.0/21 721 -207.132.48.0/20 721 -207.132.64.0/21 721 -207.132.72.0/22 721 -207.132.76.0/24 27064 -207.132.77.0/24 721 -207.132.78.0/23 721 -207.132.80.0/23 721 -207.132.82.0/24 721 -207.132.83.0/24 1904 -207.132.84.0/24 1528 -207.132.85.0/24 721 -207.132.86.0/23 721 -207.132.88.0/21 721 -207.132.96.0/24 27152 -207.132.97.0/24 1598 -207.132.98.0/24 27066 -207.132.99.0/24 721 -207.132.100.0/23 721 -207.132.102.0/24 27066 -207.132.103.0/24 5972 -207.132.104.0/23 5972 -207.132.106.0/23 721 -207.132.108.0/22 721 -207.132.112.0/23 721 -207.132.114.0/23 5972 -207.132.116.0/23 5927 -207.132.118.0/23 721 -207.132.120.0/22 721 -207.132.124.0/23 721 -207.132.126.0/23 5180 -207.132.128.0/21 721 -207.132.136.0/24 668 -207.132.137.0/24 721 -207.132.138.0/23 721 -207.132.140.0/22 721 -207.132.144.0/23 721 -207.132.146.0/24 721 -207.132.147.0/24 668 -207.132.148.0/22 721 -207.132.152.0/21 721 -207.132.160.0/19 721 -207.132.192.0/22 721 -207.132.196.0/23 721 -207.132.198.0/24 721 -207.132.199.0/24 5180 -207.132.200.0/24 721 -207.132.201.0/24 5180 -207.132.202.0/24 5180 -207.132.203.0/24 721 -207.132.204.0/24 5180 -207.132.205.0/24 721 -207.132.206.0/24 5180 -207.132.207.0/24 721 -207.132.208.0/21 721 -207.132.216.0/22 721 -207.132.220.0/23 721 -207.132.222.0/24 5237 -207.132.223.0/24 721 -207.132.224.0/24 5237 -207.132.225.0/24 721 -207.132.226.0/23 721 -207.132.228.0/22 721 -207.132.232.0/21 721 -207.132.240.0/24 721 -207.132.241.0/24 27064 -207.132.242.0/23 721 -207.132.244.0/23 721 -207.132.246.0/24 27064 -207.132.247.0/24 721 -207.132.248.0/21 721 -207.133.0.0/23 6026 -207.133.2.0/23 721 -207.133.4.0/23 6026 -207.133.6.0/24 6026 -207.133.7.0/24 721 -207.133.8.0/22 51 -207.133.12.0/23 51 -207.133.14.0/24 51 -207.133.15.0/24 1541 -207.133.16.0/21 51 -207.133.24.0/21 721 -207.133.32.0/19 721 -207.133.64.0/23 721 -207.133.66.0/24 5180 -207.133.67.0/24 721 -207.133.68.0/24 721 -207.133.69.0/24 5180 -207.133.70.0/24 721 -207.133.71.0/24 5180 -207.133.72.0/23 721 -207.133.74.0/24 721 -207.133.75.0/24 5180 -207.133.76.0/24 5180 -207.133.77.0/24 721 -207.133.78.0/23 5180 -207.133.80.0/24 5180 -207.133.81.0/24 721 -207.133.82.0/24 5180 -207.133.83.0/24 5972 -207.133.84.0/22 721 -207.133.88.0/21 721 -207.133.96.0/20 721 -207.133.112.0/24 721 -207.133.113.0/24 27064 -207.133.114.0/23 721 -207.133.116.0/24 27142 -207.133.117.0/24 721 -207.133.118.0/23 721 -207.133.120.0/21 721 -207.133.128.0/23 5180 -207.133.130.0/24 721 -207.133.131.0/24 5180 -207.133.132.0/24 5180 -207.133.133.0/24 721 -207.133.134.0/23 367 -207.133.136.0/23 3954 -207.133.138.0/24 5180 -207.133.139.0/24 721 -207.133.140.0/24 5182 -207.133.141.0/24 3954 -207.133.142.0/23 721 -207.133.144.0/22 721 -207.133.148.0/24 5180 -207.133.149.0/24 721 -207.133.150.0/23 5180 -207.133.152.0/21 721 -207.133.160.0/23 721 -207.133.162.0/24 385 -207.133.163.0/24 721 -207.133.164.0/24 721 -207.133.165.0/24 27064 -207.133.166.0/24 721 -207.133.167.0/24 132 -207.133.168.0/24 132 -207.133.169.0/24 385 -207.133.170.0/24 385 -207.133.171.0/24 721 -207.133.172.0/22 385 -207.133.176.0/24 721 -207.133.177.0/24 385 -207.133.178.0/24 721 -207.133.179.0/24 385 -207.133.180.0/24 6035 -207.133.181.0/24 721 -207.133.182.0/23 721 -207.133.184.0/24 721 -207.133.185.0/24 6042 -207.133.186.0/23 721 -207.133.188.0/24 721 -207.133.189.0/24 385 -207.133.190.0/24 385 -207.133.191.0/24 721 -207.133.192.0/23 721 -207.133.194.0/24 153 -207.133.195.0/24 272 -207.133.196.0/24 27064 -207.133.197.0/24 721 -207.133.198.0/24 1503 -207.133.199.0/24 1531 -207.133.200.0/23 721 -207.133.202.0/24 721 -207.133.203.0/24 1531 -207.133.204.0/24 721 -207.133.205.0/24 1541 -207.133.206.0/23 1599 -207.133.208.0/23 721 -207.133.210.0/24 721 -207.133.211.0/24 668 -207.133.212.0/23 721 -207.133.214.0/24 721 -207.133.215.0/24 1531 -207.133.216.0/24 721 -207.133.217.0/24 1524 -207.133.218.0/24 1504 -207.133.219.0/24 367 -207.133.220.0/24 1541 -207.133.221.0/24 721 -207.133.222.0/23 721 -207.133.224.0/20 721 -207.133.240.0/23 721 -207.133.242.0/23 3954 -207.133.244.0/24 721 -207.133.245.0/24 5182 -207.133.246.0/24 5182 -207.133.247.0/24 5180 -207.133.248.0/24 5180 -207.133.249.0/24 5182 -207.133.250.0/23 5182 -207.133.252.0/24 5182 -207.133.253.0/24 721 -207.133.254.0/23 5182 -207.134.0.0/16 852 -207.135.64.0/24 6379 -207.135.66.0/23 6379 -207.135.68.0/24 6379 -207.135.70.0/23 6379 -207.135.76.0/23 6379 -207.135.78.0/24 6379 -207.135.80.0/24 6379 -207.135.90.0/24 6379 -207.135.92.0/23 6379 -207.135.97.0/24 6379 -207.135.98.0/23 6379 -207.135.100.0/24 6379 -207.135.102.0/24 6379 -207.135.104.0/24 6379 -207.135.106.0/24 6379 -207.135.120.0/24 6379 -207.135.127.0/24 6379 -207.135.128.0/20 6315 -207.135.144.0/21 6315 -207.135.152.0/22 6315 -207.135.156.0/22 27007 -207.135.160.0/19 16399 -207.135.192.0/20 5752 -207.135.208.0/21 13786 -207.135.216.0/23 14591 -207.135.218.0/23 395341 -207.135.220.0/24 397782 -207.135.221.0/24 54325 -207.135.222.0/23 394356 -207.135.224.0/19 13614 -207.136.0.0/18 17734 -207.136.64.0/18 5645 -207.136.128.0/19 5726 -207.136.160.0/19 3549 -207.136.192.0/23 5738 -207.136.194.0/24 13536 -207.136.195.0/24 5738 -207.136.196.0/22 5738 -207.136.200.0/22 5738 -207.136.204.0/24 54989 -207.136.205.0/24 5738 -207.136.206.0/23 5738 -207.136.208.0/22 5738 -207.136.212.0/24 5738 -207.136.213.0/24 1351 -207.136.214.0/23 5738 -207.136.216.0/21 5738 -207.136.224.0/20 5738 -207.136.240.0/22 5738 -207.136.244.0/24 5738 -207.136.245.0/24 13536 -207.136.246.0/24 5738 -207.136.247.0/24 13536 -207.136.248.0/23 5738 -207.136.250.0/24 13536 -207.136.251.0/24 5738 -207.136.252.0/22 5738 -207.137.0.0/21 10708 -207.137.8.0/23 10708 -207.137.10.0/24 40770 -207.137.11.0/24 10708 -207.137.12.0/22 10708 -207.137.16.0/20 2914 -207.137.32.0/19 2914 -207.137.64.0/21 2914 -207.137.72.0/22 2914 -207.137.76.0/23 2914 -207.137.78.0/23 174 -207.137.80.0/20 2914 -207.137.96.0/19 2914 -207.137.128.0/17 2914 -207.138.0.0/19 3549 -207.138.32.0/20 3549 -207.138.48.0/21 3549 -207.138.56.0/21 30452 -207.138.64.0/21 3549 -207.138.72.0/22 3549 -207.138.76.0/23 3549 -207.138.78.0/24 3549 -207.138.79.0/24 54603 -207.138.80.0/23 3549 -207.138.82.0/24 3356 -207.138.83.0/24 3549 -207.138.84.0/22 3549 -207.138.88.0/21 3549 -207.138.96.0/21 3549 -207.138.104.0/22 13876 -207.138.108.0/22 3549 -207.138.112.0/20 3549 -207.138.128.0/22 3549 -207.138.132.0/24 3356 -207.138.133.0/24 3549 -207.138.134.0/23 3549 -207.138.136.0/21 3549 -207.138.144.0/20 3549 -207.138.160.0/21 3549 -207.138.168.0/23 3549 -207.138.170.0/24 3549 -207.138.171.0/24 13363 -207.138.172.0/23 3549 -207.138.174.0/24 3549 -207.138.175.0/24 63341 -207.138.176.0/21 3549 -207.138.184.0/22 3549 -207.138.188.0/23 3549 -207.138.190.0/23 28625 -207.138.192.0/19 14828 -207.138.224.0/21 3549 -207.138.232.0/24 3549 -207.138.233.0/24 3356 -207.138.234.0/23 3549 -207.138.236.0/22 3549 -207.138.240.0/21 3549 -207.138.248.0/22 3549 -207.138.252.0/24 46488 -207.138.253.0/24 3549 -207.138.254.0/24 3549 -207.138.255.0/24 3356 -207.139.0.0/19 701 -207.139.32.0/20 701 -207.139.48.0/21 701 -207.139.56.0/23 701 -207.139.58.0/24 701 -207.139.59.0/24 16723 -207.139.60.0/22 701 -207.139.64.0/18 701 -207.139.128.0/17 701 -207.140.0.0/20 7018 -207.140.16.0/23 2386 -207.140.18.0/23 7018 -207.140.20.0/22 7018 -207.140.24.0/21 7018 -207.140.32.0/21 7018 -207.140.40.0/23 26311 -207.140.42.0/24 7018 -207.140.43.0/24 6619 -207.140.44.0/22 7018 -207.140.48.0/21 7018 -207.140.56.0/22 7018 -207.140.60.0/24 7018 -207.140.61.0/24 394205 -207.140.62.0/24 393285 -207.140.63.0/24 7018 -207.140.64.0/23 7018 -207.140.66.0/24 12153 -207.140.67.0/24 7018 -207.140.68.0/22 7018 -207.140.72.0/21 7018 -207.140.80.0/20 7018 -207.140.96.0/20 7018 -207.140.112.0/23 7018 -207.140.114.0/24 7018 -207.140.115.0/24 54809 -207.140.116.0/22 7018 -207.140.120.0/23 7018 -207.140.122.0/24 25676 -207.140.123.0/24 7018 -207.140.124.0/22 7018 -207.140.128.0/22 7018 -207.140.132.0/22 40157 -207.140.136.0/22 7018 -207.140.140.0/24 13505 -207.140.141.0/24 7018 -207.140.142.0/23 7018 -207.140.144.0/22 7018 -207.140.148.0/24 7018 -207.140.149.0/24 13581 -207.140.150.0/23 7018 -207.140.152.0/21 7018 -207.140.160.0/22 7018 -207.140.164.0/24 7018 -207.140.165.0/24 14847 -207.140.166.0/23 7018 -207.140.168.0/24 6431 -207.140.169.0/24 7018 -207.140.170.0/23 7018 -207.140.172.0/22 7018 -207.140.176.0/21 7018 -207.140.184.0/22 7018 -207.140.188.0/23 7018 -207.140.190.0/24 7018 -207.140.191.0/24 13581 -207.140.192.0/20 7018 -207.140.208.0/21 7018 -207.140.216.0/23 4473 -207.140.218.0/23 7018 -207.140.220.0/22 4473 -207.140.224.0/19 7018 -207.141.0.0/20 7018 -207.141.16.0/21 7018 -207.141.24.0/23 7018 -207.141.26.0/24 11211 -207.141.27.0/24 7018 -207.141.28.0/22 7018 -207.141.32.0/19 7018 -207.141.64.0/21 7018 -207.141.72.0/21 13641 -207.141.80.0/20 7018 -207.141.96.0/22 7018 -207.141.100.0/24 394819 -207.141.101.0/24 7018 -207.141.102.0/23 7018 -207.141.104.0/24 7018 -207.141.105.0/24 22649 -207.141.106.0/23 7018 -207.141.108.0/22 7018 -207.141.112.0/22 7018 -207.141.116.0/23 7018 -207.141.118.0/23 22067 -207.141.120.0/22 7018 -207.141.124.0/24 7018 -207.141.125.0/24 40157 -207.141.126.0/23 7018 -207.141.128.0/19 7018 -207.141.160.0/21 7018 -207.141.168.0/22 7018 -207.141.172.0/24 21569 -207.141.173.0/24 7018 -207.141.174.0/23 7018 -207.141.176.0/21 7018 -207.141.184.0/23 7018 -207.141.186.0/24 7018 -207.141.187.0/24 2386 -207.141.188.0/22 7018 -207.141.192.0/24 2386 -207.141.193.0/24 7018 -207.141.194.0/23 7018 -207.141.196.0/22 7018 -207.141.200.0/21 7018 -207.141.208.0/21 7018 -207.141.216.0/23 7018 -207.141.218.0/24 47016 -207.141.219.0/24 7018 -207.141.220.0/22 7018 -207.141.224.0/19 7018 -207.142.0.0/22 27229 -207.142.4.0/22 174 -207.142.8.0/21 174 -207.142.16.0/24 27229 -207.142.17.0/24 174 -207.142.18.0/23 174 -207.142.20.0/22 27229 -207.142.24.0/21 174 -207.142.32.0/19 174 -207.142.64.0/18 174 -207.142.128.0/17 174 -207.143.0.0/16 1239 -207.144.0.0/23 2711 -207.144.2.0/23 12208 -207.144.4.0/23 21830 -207.144.6.0/24 2711 -207.144.7.0/24 7250 -207.144.8.0/24 2711 -207.144.9.0/24 19635 -207.144.10.0/24 7250 -207.144.11.0/24 2711 -207.144.12.0/24 21830 -207.144.13.0/24 12208 -207.144.14.0/23 21830 -207.144.16.0/24 22646 -207.144.17.0/24 21830 -207.144.18.0/24 22646 -207.144.19.0/24 21830 -207.144.20.0/23 18671 -207.144.22.0/24 18671 -207.144.23.0/24 10279 -207.144.24.0/22 2711 -207.144.28.0/24 6167 -207.144.29.0/24 2711 -207.144.30.0/24 7250 -207.144.31.0/24 2711 -207.144.32.0/24 12208 -207.144.33.0/24 21830 -207.144.34.0/24 21830 -207.144.35.0/24 12208 -207.144.36.0/24 18671 -207.144.37.0/24 12208 -207.144.38.0/23 2711 -207.144.40.0/24 2711 -207.144.41.0/24 18671 -207.144.42.0/24 18671 -207.144.43.0/24 2711 -207.144.44.0/23 21830 -207.144.46.0/23 7250 -207.144.48.0/23 2711 -207.144.50.0/23 18671 -207.144.52.0/24 18671 -207.144.53.0/24 21830 -207.144.54.0/24 21830 -207.144.55.0/24 2711 -207.144.56.0/24 21830 -207.144.57.0/24 16863 -207.144.58.0/23 19212 -207.144.60.0/22 10279 -207.144.64.0/22 2711 -207.144.68.0/23 10279 -207.144.70.0/23 2711 -207.144.72.0/23 2711 -207.144.74.0/24 2711 -207.144.75.0/24 21830 -207.144.76.0/23 2711 -207.144.78.0/24 14615 -207.144.79.0/24 12208 -207.144.80.0/22 2711 -207.144.84.0/24 14615 -207.144.85.0/24 12208 -207.144.86.0/24 21830 -207.144.87.0/24 23118 -207.144.88.0/23 2711 -207.144.90.0/24 16863 -207.144.91.0/24 19635 -207.144.92.0/24 21830 -207.144.93.0/24 2711 -207.144.94.0/24 7250 -207.144.95.0/24 2711 -207.144.96.0/23 2711 -207.144.98.0/24 19635 -207.144.99.0/24 2711 -207.144.100.0/24 2711 -207.144.101.0/24 21830 -207.144.102.0/23 21830 -207.144.104.0/23 21830 -207.144.106.0/23 2711 -207.144.108.0/22 2711 -207.144.112.0/23 2711 -207.144.114.0/24 16863 -207.144.115.0/24 6167 -207.144.116.0/23 2711 -207.144.118.0/23 19635 -207.144.120.0/23 2711 -207.144.122.0/24 2711 -207.144.123.0/24 12208 -207.144.124.0/22 2711 -207.144.128.0/23 2711 -207.144.130.0/24 2711 -207.144.131.0/24 23118 -207.144.132.0/22 2711 -207.144.136.0/23 2711 -207.144.138.0/24 2711 -207.144.139.0/24 18671 -207.144.140.0/24 10279 -207.144.141.0/24 2711 -207.144.142.0/23 2711 -207.144.144.0/24 18671 -207.144.145.0/24 2711 -207.144.146.0/23 2711 -207.144.148.0/23 21830 -207.144.150.0/23 2711 -207.144.152.0/23 21830 -207.144.154.0/23 2711 -207.144.156.0/24 2711 -207.144.157.0/24 7250 -207.144.158.0/24 2711 -207.144.159.0/24 23118 -207.144.160.0/23 21830 -207.144.162.0/23 2711 -207.144.164.0/22 2711 -207.144.168.0/22 2711 -207.144.172.0/23 2711 -207.144.174.0/24 2711 -207.144.175.0/24 23118 -207.144.176.0/23 2711 -207.144.178.0/24 18671 -207.144.179.0/24 395998 -207.144.180.0/23 2711 -207.144.182.0/24 2711 -207.144.183.0/24 18671 -207.144.184.0/23 2711 -207.144.186.0/24 23118 -207.144.187.0/24 2711 -207.144.188.0/23 2711 -207.144.190.0/23 21830 -207.144.192.0/24 12208 -207.144.193.0/24 22646 -207.144.194.0/23 2711 -207.144.196.0/23 2711 -207.144.198.0/24 22646 -207.144.199.0/24 2711 -207.144.200.0/23 21830 -207.144.202.0/24 2711 -207.144.203.0/24 21830 -207.144.204.0/22 2711 -207.144.208.0/24 19635 -207.144.209.0/24 2711 -207.144.210.0/24 2711 -207.144.211.0/24 18671 -207.144.212.0/24 18671 -207.144.213.0/24 2711 -207.144.214.0/24 7250 -207.144.215.0/24 2711 -207.144.216.0/23 18671 -207.144.218.0/24 2711 -207.144.219.0/24 14615 -207.144.220.0/22 2711 -207.144.224.0/22 2711 -207.144.228.0/24 7250 -207.144.229.0/24 2711 -207.144.230.0/23 2711 -207.144.232.0/22 2711 -207.144.236.0/23 2711 -207.144.238.0/24 19635 -207.144.239.0/24 22646 -207.144.240.0/22 2711 -207.144.244.0/23 2711 -207.144.246.0/24 12208 -207.144.247.0/24 46218 -207.144.248.0/23 2711 -207.144.250.0/24 7029 -207.144.251.0/24 2711 -207.144.252.0/24 23118 -207.144.253.0/24 22646 -207.144.254.0/23 2711 -207.145.0.0/17 4565 -207.145.128.0/20 4565 -207.145.144.0/21 4565 -207.145.152.0/23 4565 -207.145.154.0/24 3257 -207.145.155.0/24 4565 -207.145.156.0/22 4565 -207.145.160.0/19 4565 -207.145.192.0/21 4565 -207.145.200.0/21 7018 -207.145.208.0/20 4565 -207.145.224.0/21 4565 -207.145.232.0/21 7018 -207.145.240.0/20 4565 -207.148.0.0/19 20473 -207.148.32.0/20 59371 -207.148.48.0/21 22573 -207.148.64.0/18 20473 -207.148.128.0/18 852 -207.148.192.0/19 14938 -207.148.224.0/24 29873 -207.148.226.0/24 29873 -207.148.228.0/24 29873 -207.148.230.0/23 29873 -207.148.232.0/21 29873 -207.148.240.0/21 29873 -207.148.248.0/24 29873 -207.148.250.0/23 29873 -207.148.252.0/24 29873 -207.148.254.0/23 29873 -207.149.0.0/16 3561 -207.150.0.0/17 2914 -207.150.128.0/19 2914 -207.150.160.0/19 25019 -207.150.192.0/20 32400 -207.150.208.0/20 3064 -207.150.224.0/24 396936 -207.150.225.0/24 396940 -207.150.233.0/24 396936 -207.150.236.0/24 396936 -207.150.239.0/24 396940 -207.150.240.0/20 18895 -207.151.0.0/20 27609 -207.151.16.0/23 226 -207.151.18.0/23 27609 -207.151.20.0/22 27609 -207.151.24.0/22 27609 -207.151.28.0/23 27609 -207.151.30.0/23 226 -207.151.32.0/22 226 -207.151.36.0/23 226 -207.151.38.0/24 226 -207.151.39.0/24 27609 -207.151.40.0/21 27609 -207.151.48.0/24 27609 -207.151.49.0/24 226 -207.151.50.0/24 27609 -207.151.51.0/24 3832 -207.151.52.0/22 47 -207.151.56.0/21 226 -207.151.64.0/22 226 -207.151.68.0/23 16573 -207.151.70.0/23 226 -207.151.72.0/21 226 -207.151.80.0/23 226 -207.151.82.0/24 5726 -207.151.83.0/24 27609 -207.151.84.0/22 27609 -207.151.88.0/22 226 -207.151.92.0/24 47 -207.151.93.0/24 226 -207.151.94.0/23 226 -207.151.96.0/24 127 -207.151.97.0/24 226 -207.151.98.0/23 127 -207.151.100.0/22 127 -207.151.104.0/22 127 -207.151.108.0/22 226 -207.151.112.0/20 226 -207.151.128.0/20 226 -207.151.144.0/23 226 -207.151.146.0/23 3832 -207.151.148.0/24 3832 -207.151.149.0/24 226 -207.151.150.0/24 127 -207.151.151.0/24 226 -207.151.152.0/21 5726 -207.151.160.0/19 5726 -207.151.192.0/19 127 -207.151.224.0/19 226 -207.152.0.0/18 174 -207.152.64.0/22 2914 -207.152.68.0/22 12119 -207.152.72.0/21 2914 -207.152.80.0/20 2914 -207.152.96.0/22 2914 -207.152.100.0/23 2914 -207.152.102.0/23 12119 -207.152.104.0/21 2914 -207.152.112.0/20 2914 -207.152.128.0/18 11951 -207.153.0.0/18 10242 -207.153.64.0/19 174 -207.153.96.0/21 174 -207.153.104.0/22 174 -207.153.108.0/24 22241 -207.153.109.0/24 174 -207.153.110.0/24 262706 -207.153.111.0/24 174 -207.153.112.0/24 22241 -207.153.113.0/24 174 -207.153.114.0/23 174 -207.153.116.0/22 174 -207.153.120.0/23 174 -207.153.122.0/24 262706 -207.153.123.0/24 174 -207.153.124.0/23 174 -207.153.126.0/24 174 -207.153.127.0/24 262706 -207.153.128.0/17 2914 -207.154.0.0/24 17113 -207.154.1.0/24 7181 -207.154.2.0/23 17113 -207.154.4.0/22 17113 -207.154.8.0/22 17113 -207.154.12.0/23 17113 -207.154.14.0/24 7349 -207.154.15.0/24 17113 -207.154.16.0/24 17113 -207.154.17.0/24 7349 -207.154.18.0/23 17113 -207.154.20.0/22 17113 -207.154.24.0/23 17113 -207.154.26.0/24 395164 -207.154.27.0/24 17113 -207.154.28.0/22 17113 -207.154.32.0/24 395164 -207.154.33.0/24 17113 -207.154.34.0/23 17113 -207.154.36.0/22 17113 -207.154.40.0/21 17113 -207.154.48.0/20 17113 -207.154.64.0/18 4927 -207.154.128.0/18 22023 -207.154.192.0/18 14061 -207.155.0.0/17 7029 -207.155.128.0/18 2828 -207.155.192.0/24 2828 -207.155.193.0/24 31984 -207.155.194.0/23 2828 -207.155.196.0/22 2828 -207.155.200.0/21 2828 -207.155.208.0/20 2828 -207.155.224.0/20 2828 -207.155.240.0/21 2828 -207.155.248.0/21 4908 -207.156.0.0/20 6912 -207.156.16.0/24 6912 -207.156.17.0/24 8103 -207.156.18.0/24 8103 -207.156.19.0/24 6912 -207.156.20.0/23 6912 -207.156.22.0/24 6912 -207.156.23.0/24 8103 -207.156.24.0/21 6912 -207.156.32.0/20 6912 -207.156.48.0/21 6912 -207.156.56.0/24 8103 -207.156.57.0/24 6912 -207.156.58.0/23 6912 -207.156.60.0/22 6912 -207.156.64.0/22 6912 -207.156.68.0/23 6912 -207.156.70.0/24 6912 -207.156.71.0/24 6913 -207.156.72.0/21 6912 -207.156.80.0/20 6912 -207.156.96.0/20 6912 -207.156.112.0/21 6913 -207.156.120.0/24 6913 -207.156.121.0/24 8103 -207.156.122.0/23 6913 -207.156.124.0/22 6913 -207.156.128.0/19 2914 -207.156.160.0/21 2914 -207.156.168.0/24 29788 -207.156.169.0/24 2914 -207.156.170.0/23 2914 -207.156.172.0/22 2914 -207.156.176.0/22 2914 -207.156.180.0/23 2914 -207.156.182.0/24 22691 -207.156.183.0/24 2914 -207.156.184.0/21 2914 -207.156.192.0/20 2914 -207.156.208.0/21 2914 -207.156.216.0/24 40212 -207.156.217.0/24 19175 -207.156.218.0/24 40212 -207.156.219.0/24 2914 -207.156.220.0/23 2914 -207.156.222.0/24 40136 -207.156.223.0/24 2914 -207.156.224.0/19 2914 -207.157.0.0/18 3464 -207.157.64.0/22 3464 -207.157.68.0/24 3464 -207.157.69.0/24 393676 -207.157.70.0/23 3464 -207.157.72.0/23 3464 -207.157.74.0/23 10364 -207.157.76.0/22 3464 -207.157.80.0/20 3464 -207.157.96.0/19 3464 -207.157.128.0/17 54179 -207.158.0.0/22 6130 -207.158.4.0/24 53559 -207.158.5.0/24 6130 -207.158.6.0/23 6130 -207.158.8.0/24 6130 -207.158.9.0/24 53559 -207.158.10.0/23 6130 -207.158.12.0/23 6130 -207.158.14.0/24 6130 -207.158.15.0/24 21581 -207.158.16.0/23 53559 -207.158.18.0/23 6130 -207.158.20.0/22 6130 -207.158.24.0/24 53559 -207.158.25.0/24 6130 -207.158.26.0/23 6130 -207.158.28.0/23 6130 -207.158.30.0/24 21581 -207.158.31.0/24 6130 -207.158.32.0/23 6130 -207.158.34.0/24 6130 -207.158.35.0/24 53559 -207.158.36.0/24 53559 -207.158.37.0/24 21581 -207.158.38.0/23 6130 -207.158.40.0/23 53559 -207.158.42.0/23 6130 -207.158.44.0/24 6130 -207.158.45.0/24 53559 -207.158.46.0/23 6130 -207.158.48.0/23 6130 -207.158.50.0/24 6130 -207.158.51.0/24 53559 -207.158.52.0/24 21581 -207.158.53.0/24 6130 -207.158.54.0/23 6130 -207.158.56.0/23 6130 -207.158.58.0/24 53559 -207.158.59.0/24 6130 -207.158.60.0/22 6130 -207.158.128.0/21 2828 -207.158.136.0/22 2828 -207.158.140.0/23 2828 -207.158.142.0/24 16493 -207.158.143.0/24 2828 -207.158.144.0/20 2828 -207.158.160.0/19 2828 -207.159.0.0/18 2914 -207.159.64.0/18 209 -207.159.128.0/19 13768 -207.159.160.0/19 8067 -207.159.192.0/18 31822 -207.160.0.0/17 2572 -207.160.128.0/20 2572 -207.160.144.0/22 2572 -207.160.148.0/23 2572 -207.160.150.0/24 2572 -207.160.151.0/24 26934 -207.160.152.0/21 26934 -207.160.160.0/19 2572 -207.160.192.0/18 2572 -207.161.0.0/17 7122 -207.161.128.0/18 7122 -207.161.192.0/19 7122 -207.161.224.0/21 7122 -207.161.232.0/23 7122 -207.161.234.0/24 7122 -207.161.235.0/24 10965 -207.161.236.0/22 7122 -207.161.240.0/20 7122 -207.162.0.0/24 376 -207.162.1.0/24 11032 -207.162.2.0/23 376 -207.162.4.0/23 376 -207.162.6.0/24 376 -207.162.7.0/24 11032 -207.162.8.0/24 11032 -207.162.9.0/24 376 -207.162.10.0/23 11032 -207.162.12.0/22 376 -207.162.16.0/21 376 -207.162.24.0/24 376 -207.162.25.0/24 11032 -207.162.26.0/23 376 -207.162.28.0/24 33602 -207.162.29.0/24 11032 -207.162.30.0/23 376 -207.162.32.0/20 11032 -207.162.48.0/20 376 -207.162.64.0/18 376 -207.162.128.0/19 22773 -207.162.160.0/19 11970 -207.162.192.0/21 3257 -207.162.200.0/24 6838 -207.162.201.0/24 3257 -207.162.202.0/23 3257 -207.162.204.0/22 3257 -207.162.208.0/20 26689 -207.162.240.0/20 32539 -207.163.0.0/18 6099 -207.163.64.0/19 6099 -207.163.96.0/22 6099 -207.163.100.0/22 2152 -207.163.104.0/23 2152 -207.163.106.0/23 6099 -207.163.108.0/24 6099 -207.163.109.0/24 2152 -207.163.110.0/23 2152 -207.163.112.0/22 2152 -207.163.116.0/22 6099 -207.163.120.0/21 6099 -207.163.128.0/17 6099 -207.164.0.0/22 577 -207.164.4.0/23 577 -207.164.6.0/24 577 -207.164.7.0/24 36522 -207.164.8.0/21 577 -207.164.16.0/23 577 -207.164.18.0/24 577 -207.164.19.0/24 36522 -207.164.20.0/22 577 -207.164.24.0/24 577 -207.164.25.0/24 36522 -207.164.26.0/23 577 -207.164.28.0/22 577 -207.164.32.0/21 577 -207.164.40.0/23 577 -207.164.42.0/24 577 -207.164.43.0/24 36522 -207.164.44.0/24 577 -207.164.45.0/24 36522 -207.164.46.0/23 577 -207.164.48.0/24 3848 -207.164.49.0/24 577 -207.164.50.0/23 577 -207.164.52.0/24 577 -207.164.53.0/24 36522 -207.164.54.0/24 15321 -207.164.55.0/24 577 -207.164.56.0/21 577 -207.164.64.0/24 577 -207.164.65.0/24 36522 -207.164.66.0/23 577 -207.164.68.0/22 577 -207.164.72.0/23 36522 -207.164.74.0/23 577 -207.164.76.0/23 577 -207.164.78.0/24 577 -207.164.79.0/24 36522 -207.164.80.0/21 577 -207.164.88.0/22 577 -207.164.92.0/23 15321 -207.164.94.0/24 15321 -207.164.95.0/24 577 -207.164.96.0/21 15321 -207.164.104.0/23 15321 -207.164.106.0/24 15321 -207.164.107.0/24 577 -207.164.108.0/22 15321 -207.164.112.0/22 15321 -207.164.116.0/24 577 -207.164.117.0/24 15321 -207.164.118.0/23 15321 -207.164.120.0/22 15321 -207.164.124.0/22 577 -207.164.128.0/23 577 -207.164.130.0/24 36522 -207.164.131.0/24 577 -207.164.132.0/22 577 -207.164.136.0/23 577 -207.164.138.0/24 577 -207.164.139.0/24 35911 -207.164.140.0/22 577 -207.164.144.0/22 577 -207.164.148.0/24 577 -207.164.149.0/24 36522 -207.164.150.0/23 577 -207.164.152.0/24 3848 -207.164.153.0/24 577 -207.164.154.0/24 15321 -207.164.155.0/24 577 -207.164.156.0/23 15321 -207.164.158.0/23 577 -207.164.160.0/23 577 -207.164.162.0/24 577 -207.164.163.0/24 36522 -207.164.164.0/24 577 -207.164.165.0/24 36522 -207.164.166.0/24 36522 -207.164.167.0/24 577 -207.164.168.0/23 577 -207.164.170.0/24 36522 -207.164.171.0/24 577 -207.164.172.0/24 577 -207.164.173.0/24 36522 -207.164.174.0/24 36522 -207.164.175.0/24 577 -207.164.176.0/22 577 -207.164.180.0/24 33017 -207.164.181.0/24 603 -207.164.182.0/24 577 -207.164.183.0/24 25946 -207.164.184.0/22 577 -207.164.188.0/23 15321 -207.164.190.0/23 577 -207.164.192.0/23 577 -207.164.194.0/24 577 -207.164.195.0/24 36522 -207.164.196.0/23 15321 -207.164.198.0/23 577 -207.164.200.0/22 577 -207.164.204.0/23 577 -207.164.206.0/24 3848 -207.164.207.0/24 577 -207.164.208.0/21 577 -207.164.216.0/22 577 -207.164.220.0/23 577 -207.164.222.0/24 577 -207.164.223.0/24 395387 -207.164.224.0/23 577 -207.164.226.0/24 577 -207.164.227.0/24 15321 -207.164.228.0/23 15321 -207.164.230.0/23 577 -207.164.232.0/24 15321 -207.164.233.0/24 577 -207.164.234.0/23 577 -207.164.236.0/24 577 -207.164.237.0/24 15321 -207.164.238.0/23 15321 -207.164.240.0/22 577 -207.164.244.0/23 577 -207.164.246.0/23 15321 -207.164.248.0/21 577 -207.165.0.0/19 6122 -207.165.32.0/20 6122 -207.165.48.0/21 6122 -207.165.56.0/22 6122 -207.165.60.0/24 26946 -207.165.61.0/24 6122 -207.165.62.0/23 6122 -207.165.64.0/19 6122 -207.165.96.0/20 6122 -207.165.112.0/21 6122 -207.165.120.0/24 6122 -207.165.121.0/24 209 -207.165.122.0/23 6122 -207.165.124.0/22 6122 -207.165.128.0/18 6122 -207.165.192.0/21 6122 -207.165.200.0/24 26946 -207.165.201.0/24 6122 -207.165.202.0/23 6122 -207.165.204.0/22 6122 -207.165.208.0/21 6122 -207.165.216.0/22 6122 -207.165.220.0/23 6122 -207.165.222.0/24 6122 -207.165.223.0/24 26946 -207.165.224.0/23 26946 -207.165.226.0/23 6122 -207.165.228.0/24 6122 -207.165.229.0/24 27316 -207.165.230.0/23 6122 -207.165.232.0/22 6122 -207.165.236.0/23 6122 -207.165.238.0/23 27316 -207.165.240.0/20 6122 -207.166.0.0/22 2152 -207.166.4.0/22 395226 -207.166.8.0/24 395226 -207.166.9.0/24 2152 -207.166.10.0/23 395226 -207.166.12.0/22 395226 -207.166.16.0/23 395226 -207.166.18.0/23 2152 -207.166.20.0/24 2152 -207.166.21.0/24 395226 -207.166.22.0/24 2152 -207.166.23.0/24 395226 -207.166.24.0/21 395226 -207.166.32.0/20 395226 -207.166.48.0/22 395226 -207.166.52.0/23 395226 -207.166.54.0/24 395226 -207.166.55.0/24 2152 -207.166.56.0/23 395226 -207.166.58.0/24 2152 -207.166.59.0/24 395226 -207.166.60.0/24 2152 -207.166.61.0/24 395226 -207.166.62.0/24 2152 -207.166.63.0/24 395226 -207.166.64.0/19 6220 -207.166.100.0/22 6220 -207.166.104.0/23 6220 -207.166.107.0/24 6220 -207.166.110.0/23 6220 -207.166.112.0/20 11992 -207.166.128.0/21 5715 -207.166.136.0/22 5715 -207.166.140.0/24 5715 -207.166.144.0/23 5715 -207.166.185.0/24 63270 -207.166.186.0/24 394871 -207.166.192.0/19 6954 -207.166.224.0/19 557 -207.167.0.0/19 6171 -207.167.33.0/24 17389 -207.167.34.0/24 17389 -207.167.40.0/21 17389 -207.167.57.0/24 17389 -207.167.128.0/23 5655 -207.167.192.0/19 852 -207.167.224.0/21 852 -207.167.232.0/24 7861 -207.167.233.0/24 852 -207.167.234.0/23 852 -207.167.236.0/22 852 -207.167.240.0/20 852 -207.168.0.0/20 4565 -207.168.16.0/21 18566 -207.168.24.0/21 4565 -207.168.32.0/19 4565 -207.168.64.0/20 4565 -207.168.80.0/21 4565 -207.168.88.0/22 4565 -207.168.92.0/23 4565 -207.168.94.0/23 18566 -207.168.96.0/21 4565 -207.168.104.0/22 4565 -207.168.108.0/23 18566 -207.168.110.0/23 4565 -207.168.112.0/21 4565 -207.168.120.0/22 4565 -207.168.124.0/23 18566 -207.168.126.0/23 4565 -207.168.128.0/19 4565 -207.168.160.0/22 4565 -207.168.164.0/22 18566 -207.168.168.0/23 18566 -207.168.170.0/23 4565 -207.168.172.0/22 4565 -207.168.176.0/21 4565 -207.168.184.0/23 4565 -207.168.186.0/23 18566 -207.168.188.0/22 4565 -207.168.192.0/21 4565 -207.168.200.0/22 4565 -207.168.204.0/23 18566 -207.168.206.0/23 4565 -207.168.208.0/22 4565 -207.168.212.0/23 18566 -207.168.214.0/23 4565 -207.168.216.0/21 4565 -207.168.224.0/20 4565 -207.168.240.0/21 4565 -207.168.248.0/22 4565 -207.168.252.0/23 4565 -207.168.254.0/23 18566 -207.169.182.0/24 38809 -207.169.210.0/23 6900 -207.169.219.0/24 2162 -207.169.220.0/24 2162 -207.169.252.0/23 2162 -207.170.0.0/20 7029 -207.170.16.0/23 7029 -207.170.18.0/24 54704 -207.170.19.0/24 7029 -207.170.20.0/22 7029 -207.170.24.0/23 7029 -207.170.26.0/24 26284 -207.170.27.0/24 7029 -207.170.28.0/24 26284 -207.170.29.0/24 7029 -207.170.30.0/23 7029 -207.170.32.0/22 7029 -207.170.36.0/24 7029 -207.170.37.0/24 26284 -207.170.38.0/23 7029 -207.170.40.0/21 7029 -207.170.48.0/20 7029 -207.170.64.0/18 5003 -207.170.128.0/19 14001 -207.170.160.0/20 14001 -207.170.176.0/21 14001 -207.170.184.0/22 14001 -207.170.188.0/23 14001 -207.170.190.0/23 42353 -207.170.192.0/20 3549 -207.170.208.0/21 3549 -207.170.216.0/24 7752 -207.170.217.0/24 3549 -207.170.218.0/23 3549 -207.170.220.0/22 3549 -207.170.224.0/22 3549 -207.170.228.0/24 397393 -207.170.229.0/24 3549 -207.170.230.0/23 3549 -207.170.232.0/21 3549 -207.170.240.0/20 3549 -207.171.0.0/20 11799 -207.171.16.0/24 11799 -207.171.17.0/24 6647 -207.171.18.0/23 11799 -207.171.20.0/22 11799 -207.171.24.0/21 11799 -207.171.32.0/19 11799 -207.171.64.0/18 1998 -207.171.128.0/19 6266 -207.171.160.0/19 16509 -207.171.192.0/22 63107 -207.171.196.0/23 53959 -207.171.198.0/23 396185 -207.171.200.0/23 40020 -207.171.202.0/23 36788 -207.171.204.0/23 53959 -207.171.206.0/24 53959 -207.171.207.0/24 40020 -207.171.208.0/24 40020 -207.171.209.0/24 393298 -207.171.210.0/23 397340 -207.171.213.0/24 40020 -207.171.214.0/23 40020 -207.171.216.0/24 393298 -207.171.217.0/24 40020 -207.171.218.0/24 40020 -207.171.219.0/24 393298 -207.171.220.0/22 397340 -207.171.224.0/24 53959 -207.171.226.0/24 397340 -207.171.227.0/24 40020 -207.171.228.0/24 36788 -207.171.229.0/24 30119 -207.171.230.0/23 40020 -207.171.232.0/23 54936 -207.171.234.0/23 40020 -207.171.236.0/22 40020 -207.171.240.0/23 53959 -207.171.242.0/23 40020 -207.171.244.0/24 53959 -207.171.245.0/24 40020 -207.171.247.0/24 54936 -207.171.248.0/22 54936 -207.171.252.0/24 54936 -207.171.253.0/24 53959 -207.171.254.0/24 54936 -207.171.255.0/24 6250 -207.172.0.0/18 6079 -207.172.64.0/24 394966 -207.172.65.0/24 6079 -207.172.66.0/23 6079 -207.172.68.0/22 6079 -207.172.72.0/21 6079 -207.172.80.0/20 6079 -207.172.96.0/19 6079 -207.172.128.0/20 6079 -207.172.144.0/21 6079 -207.172.152.0/24 393739 -207.172.153.0/24 25755 -207.172.154.0/23 6079 -207.172.156.0/22 6079 -207.172.160.0/19 6079 -207.172.192.0/18 6079 -207.173.0.0/23 7385 -207.173.2.0/24 6502 -207.173.3.0/24 7385 -207.173.4.0/22 7385 -207.173.8.0/24 7385 -207.173.9.0/24 26135 -207.173.10.0/23 7385 -207.173.12.0/22 7385 -207.173.16.0/20 7385 -207.173.32.0/19 7385 -207.173.64.0/24 16784 -207.173.65.0/24 7385 -207.173.66.0/23 7385 -207.173.68.0/22 7385 -207.173.72.0/21 7385 -207.173.80.0/21 7385 -207.173.88.0/22 7385 -207.173.92.0/22 21998 -207.173.96.0/19 7385 -207.173.128.0/18 7385 -207.173.192.0/20 7385 -207.173.208.0/22 7385 -207.173.212.0/23 7385 -207.173.214.0/24 7385 -207.173.215.0/24 26664 -207.173.216.0/24 7385 -207.173.217.0/24 36595 -207.173.218.0/23 7385 -207.173.220.0/23 7385 -207.173.222.0/24 7385 -207.173.223.0/24 5048 -207.173.224.0/19 7385 -207.174.8.0/24 10835 -207.174.12.0/24 209 -207.174.21.0/24 21777 -207.174.23.0/24 26001 -207.174.72.0/23 21777 -207.174.76.0/24 21777 -207.174.77.0/24 16618 -207.174.98.0/24 16618 -207.174.110.0/23 21777 -207.174.113.0/24 21777 -207.174.114.0/24 16618 -207.174.117.0/24 21777 -207.174.130.0/24 21777 -207.174.136.0/24 54123 -207.174.137.0/24 21777 -207.174.138.0/23 21777 -207.174.140.0/22 21777 -207.174.144.0/21 394111 -207.174.156.0/24 36333 -207.174.157.0/24 21777 -207.174.160.0/21 10326 -207.174.168.0/22 62551 -207.174.172.0/24 54438 -207.174.173.0/24 16618 -207.174.174.0/24 54529 -207.174.175.0/24 21777 -207.174.176.0/20 133771 -207.174.192.0/23 32442 -207.174.194.0/24 55043 -207.174.196.0/22 32544 -207.174.201.0/24 21777 -207.174.202.0/24 25779 -207.174.203.0/24 54530 -207.174.204.0/22 32278 -207.174.208.0/23 18712 -207.174.210.0/23 16618 -207.174.212.0/22 394695 -207.174.224.0/23 393916 -207.174.226.0/24 62943 -207.174.227.0/24 395040 -207.174.228.0/22 62943 -207.174.232.0/23 26400 -207.174.234.0/23 18892 -207.174.236.0/23 395040 -207.174.238.0/23 62943 -207.174.240.0/21 25601 -207.174.248.0/22 25601 -207.174.252.0/22 40720 -207.176.0.0/21 3491 -207.176.8.0/23 3491 -207.176.10.0/24 3491 -207.176.11.0/24 12491 -207.176.12.0/24 12491 -207.176.13.0/24 3491 -207.176.14.0/23 3491 -207.176.16.0/20 3491 -207.176.32.0/24 33531 -207.176.33.0/24 3491 -207.176.34.0/23 3491 -207.176.36.0/22 3491 -207.176.40.0/21 3491 -207.176.48.0/20 3491 -207.176.64.0/18 3491 -207.176.128.0/21 701 -207.176.136.0/22 701 -207.176.140.0/23 701 -207.176.142.0/24 36698 -207.176.143.0/24 701 -207.176.144.0/20 701 -207.176.160.0/19 701 -207.176.192.0/21 701 -207.176.200.0/22 701 -207.176.204.0/24 19402 -207.176.205.0/24 701 -207.176.206.0/23 701 -207.176.208.0/21 701 -207.176.216.0/23 701 -207.176.218.0/23 12212 -207.176.220.0/22 701 -207.176.224.0/24 701 -207.176.225.0/24 46626 -207.176.226.0/24 36698 -207.176.227.0/24 701 -207.176.228.0/24 701 -207.176.229.0/24 36698 -207.176.230.0/23 701 -207.176.232.0/21 701 -207.176.240.0/20 701 -207.177.0.0/24 5056 -207.177.1.0/24 46892 -207.177.2.0/24 5056 -207.177.3.0/24 46892 -207.177.4.0/22 5056 -207.177.8.0/23 5056 -207.177.10.0/24 18883 -207.177.11.0/24 5056 -207.177.12.0/23 63394 -207.177.14.0/24 63394 -207.177.15.0/24 18883 -207.177.16.0/24 5056 -207.177.17.0/24 30325 -207.177.18.0/23 5056 -207.177.20.0/23 18883 -207.177.22.0/23 62825 -207.177.24.0/24 46892 -207.177.25.0/24 16824 -207.177.26.0/23 5056 -207.177.28.0/24 396878 -207.177.29.0/24 5056 -207.177.30.0/23 5056 -207.177.32.0/24 5056 -207.177.33.0/24 62825 -207.177.34.0/24 62825 -207.177.35.0/24 5056 -207.177.36.0/24 5056 -207.177.37.0/24 62825 -207.177.38.0/24 5056 -207.177.39.0/24 18883 -207.177.40.0/23 19628 -207.177.42.0/24 62825 -207.177.43.0/24 16824 -207.177.44.0/24 16824 -207.177.45.0/24 5056 -207.177.46.0/23 5056 -207.177.48.0/24 5056 -207.177.49.0/24 62886 -207.177.50.0/24 62825 -207.177.51.0/24 396461 -207.177.52.0/24 62825 -207.177.53.0/24 18883 -207.177.54.0/23 5056 -207.177.56.0/24 26725 -207.177.57.0/24 5056 -207.177.58.0/23 5056 -207.177.60.0/23 5056 -207.177.62.0/24 63394 -207.177.63.0/24 5056 -207.177.64.0/23 5056 -207.177.66.0/24 63394 -207.177.67.0/24 30325 -207.177.68.0/22 5056 -207.177.72.0/24 5056 -207.177.73.0/24 396461 -207.177.74.0/24 396461 -207.177.75.0/24 5056 -207.177.76.0/24 5056 -207.177.77.0/24 18883 -207.177.78.0/24 62886 -207.177.79.0/24 5056 -207.177.80.0/24 63394 -207.177.81.0/24 5056 -207.177.82.0/23 5056 -207.177.84.0/22 5056 -207.177.88.0/24 5056 -207.177.89.0/24 46892 -207.177.90.0/23 5056 -207.177.92.0/23 18883 -207.177.94.0/23 5056 -207.177.96.0/22 5056 -207.177.100.0/24 5056 -207.177.101.0/24 396878 -207.177.102.0/23 5056 -207.177.104.0/24 5056 -207.177.105.0/24 62886 -207.177.106.0/23 5056 -207.177.108.0/24 30325 -207.177.109.0/24 5056 -207.177.110.0/23 5056 -207.177.112.0/23 18883 -207.177.114.0/23 5056 -207.177.116.0/22 5056 -207.177.120.0/24 5056 -207.177.121.0/24 16824 -207.177.122.0/24 5056 -207.177.123.0/24 63394 -207.177.124.0/24 396878 -207.177.125.0/24 5056 -207.177.126.0/23 5056 -207.177.128.0/18 33548 -207.177.192.0/20 11770 -207.177.208.0/21 11770 -207.177.224.0/19 7735 -207.178.0.0/22 11608 -207.178.16.0/22 4258 -207.178.44.0/22 11608 -207.178.56.0/21 11608 -207.178.96.0/20 20376 -207.178.112.0/24 35851 -207.178.113.0/24 20376 -207.178.114.0/23 20376 -207.178.116.0/22 20376 -207.178.120.0/22 20376 -207.178.124.0/23 20376 -207.178.127.0/24 20376 -207.178.128.0/17 5033 -207.179.0.0/23 17307 -207.179.2.0/24 18491 -207.179.3.0/24 35953 -207.179.4.0/23 18485 -207.179.6.0/24 24232 -207.179.7.0/24 17307 -207.179.8.0/24 17307 -207.179.9.0/24 18489 -207.179.10.0/23 17307 -207.179.12.0/24 19810 -207.179.13.0/24 18489 -207.179.14.0/23 17307 -207.179.16.0/24 17307 -207.179.17.0/24 35953 -207.179.18.0/23 17307 -207.179.20.0/24 19808 -207.179.21.0/24 18486 -207.179.22.0/23 17307 -207.179.24.0/23 17307 -207.179.26.0/24 18490 -207.179.27.0/24 38304 -207.179.28.0/24 19809 -207.179.29.0/24 18487 -207.179.30.0/24 17307 -207.179.31.0/24 24232 -207.179.32.0/19 11272 -207.179.64.0/18 14103 -207.179.128.0/23 855 -207.179.130.0/24 29907 -207.179.131.0/24 855 -207.179.132.0/24 17170 -207.179.133.0/24 855 -207.179.134.0/23 855 -207.179.136.0/23 855 -207.179.138.0/24 25962 -207.179.139.0/24 32747 -207.179.140.0/23 855 -207.179.142.0/24 855 -207.179.143.0/24 29907 -207.179.144.0/21 855 -207.179.152.0/23 855 -207.179.154.0/24 855 -207.179.155.0/24 29907 -207.179.156.0/24 29907 -207.179.157.0/24 855 -207.179.158.0/23 855 -207.179.160.0/20 855 -207.179.176.0/24 855 -207.179.177.0/24 32441 -207.179.178.0/23 855 -207.179.180.0/22 855 -207.179.184.0/21 855 -207.179.192.0/18 11062 -207.180.0.0/19 17014 -207.180.32.0/20 17014 -207.180.48.0/22 17014 -207.180.52.0/23 17014 -207.180.54.0/24 17014 -207.180.55.0/24 36742 -207.180.56.0/21 17014 -207.180.66.0/24 2828 -207.180.96.0/19 10430 -207.180.128.0/22 6079 -207.180.132.0/23 6079 -207.180.134.0/24 54405 -207.180.135.0/24 6079 -207.180.136.0/22 6079 -207.180.140.0/24 6079 -207.180.141.0/24 19051 -207.180.142.0/23 6079 -207.180.144.0/21 6079 -207.180.152.0/24 1430 -207.180.153.0/24 6079 -207.180.154.0/23 6079 -207.180.156.0/22 6079 -207.180.160.0/21 6079 -207.180.168.0/22 6079 -207.180.172.0/24 54232 -207.180.173.0/24 6079 -207.180.174.0/23 6079 -207.180.176.0/20 6079 -207.180.192.0/18 51167 -207.181.0.0/23 10993 -207.181.4.0/23 10993 -207.181.14.0/23 7733 -207.181.16.0/20 19967 -207.181.32.0/19 11272 -207.181.64.0/18 15290 -207.181.128.0/24 5715 -207.181.130.0/24 5715 -207.181.180.0/24 40588 -207.181.190.0/23 5715 -207.181.192.0/18 6079 -207.182.0.0/20 54182 -207.182.16.0/21 62833 -207.182.24.0/21 64267 -207.182.32.0/19 6373 -207.182.64.0/19 22646 -207.182.96.0/19 6551 -207.182.128.0/19 10297 -207.182.160.0/19 13445 -207.182.208.0/21 7018 -207.182.216.0/22 7018 -207.182.220.0/24 7018 -207.182.222.0/23 7018 -207.182.224.0/19 8018 -207.183.0.0/22 35956 -207.183.32.0/20 4470 -207.183.48.0/24 4470 -207.183.49.0/24 11342 -207.183.50.0/23 4470 -207.183.52.0/22 4470 -207.183.56.0/21 4470 -207.183.160.0/19 26223 -207.183.224.0/19 14051 -207.184.0.0/18 32190 -207.184.64.0/23 32190 -207.184.66.0/24 32190 -207.184.67.0/24 7018 -207.184.68.0/24 7018 -207.184.69.0/24 32190 -207.184.70.0/23 32190 -207.184.72.0/21 32190 -207.184.80.0/20 32190 -207.184.96.0/19 32190 -207.184.128.0/17 32190 -207.185.0.0/16 32190 -207.186.0.0/17 32190 -207.186.128.0/20 32190 -207.186.144.0/21 40443 -207.186.152.0/22 32190 -207.186.156.0/23 32190 -207.186.158.0/24 32190 -207.186.159.0/24 40443 -207.186.160.0/21 40443 -207.186.168.0/22 32190 -207.186.172.0/23 32190 -207.186.174.0/24 32190 -207.186.175.0/24 40443 -207.186.176.0/21 32190 -207.186.184.0/21 40443 -207.186.192.0/19 32190 -207.186.224.0/20 40443 -207.186.240.0/20 32190 -207.187.0.0/17 32190 -207.187.128.0/18 32190 -207.187.192.0/19 32190 -207.187.224.0/20 40443 -207.187.240.0/20 32190 -207.188.0.0/22 11922 -207.188.5.0/24 12025 -207.188.6.0/23 396356 -207.188.8.0/24 20029 -207.188.15.0/24 20029 -207.188.16.0/22 11922 -207.188.24.0/21 11922 -207.188.32.0/20 19154 -207.188.48.0/22 19154 -207.188.52.0/23 19154 -207.188.54.0/24 19154 -207.188.55.0/24 22773 -207.188.56.0/24 19154 -207.188.57.0/24 22773 -207.188.58.0/23 22773 -207.188.60.0/24 19154 -207.188.61.0/24 22773 -207.188.62.0/23 22773 -207.188.64.0/19 11342 -207.188.96.0/19 7029 -207.188.128.0/23 42831 -207.188.130.0/24 18779 -207.188.131.0/24 13332 -207.188.132.0/24 8038 -207.188.133.0/24 13332 -207.188.134.0/23 13332 -207.188.136.0/22 13332 -207.188.140.0/22 46261 -207.188.144.0/21 13332 -207.188.152.0/23 9009 -207.188.154.0/24 61317 -207.188.155.0/24 31863 -207.188.156.0/22 9009 -207.188.160.0/22 13332 -207.188.164.0/23 13332 -207.188.166.0/24 13332 -207.188.167.0/24 46261 -207.188.168.0/23 13332 -207.188.170.0/24 13332 -207.188.171.0/24 19816 -207.188.172.0/24 19437 -207.188.173.0/24 8038 -207.188.174.0/24 23470 -207.188.175.0/24 13332 -207.188.176.0/22 21743 -207.188.180.0/24 8038 -207.188.181.0/24 13332 -207.188.182.0/23 13332 -207.188.184.0/21 13332 -207.188.192.0/19 7784 -207.188.224.0/20 7784 -207.188.240.0/23 7784 -207.188.242.0/23 7029 -207.188.244.0/22 7784 -207.188.248.0/21 7784 -207.189.0.0/20 53889 -207.189.16.0/21 53889 -207.189.24.0/24 63008 -207.189.25.0/24 53889 -207.189.26.0/23 53889 -207.189.28.0/22 53889 -207.189.32.0/20 46722 -207.189.48.0/21 46722 -207.189.56.0/22 46722 -207.189.60.0/23 46722 -207.189.62.0/24 46722 -207.189.63.0/24 14325 -207.189.64.0/20 3561 -207.189.88.0/21 3561 -207.189.96.0/20 13649 -207.189.112.0/21 13649 -207.189.120.0/23 13649 -207.189.122.0/24 63117 -207.189.123.0/24 13649 -207.189.124.0/22 13649 -207.189.128.0/20 7441 -207.189.150.0/24 209 -207.189.151.0/24 174 -207.189.152.0/23 397445 -207.189.154.0/23 14222 -207.189.156.0/24 14222 -207.189.158.0/24 40702 -207.189.160.0/24 13992 -207.189.161.0/24 396492 -207.189.162.0/24 7018 -207.189.164.0/24 23125 -207.189.165.0/24 13692 -207.189.166.0/23 33058 -207.189.168.0/23 1828 -207.189.170.0/24 1828 -207.189.172.0/23 22364 -207.189.176.0/23 19271 -207.189.178.0/24 55002 -207.189.179.0/24 19271 -207.189.180.0/24 16983 -207.189.181.0/24 32703 -207.189.183.0/24 397038 -207.189.184.0/24 36351 -207.189.186.0/23 36351 -207.189.188.0/22 40816 -207.189.192.0/20 59702 -207.189.208.0/20 21570 -207.189.224.0/20 22573 -207.189.240.0/24 22573 -207.189.241.0/24 6058 -207.189.242.0/23 6058 -207.189.244.0/22 22573 -207.189.248.0/24 53910 -207.189.249.0/24 6058 -207.189.250.0/24 6058 -207.189.251.0/24 22573 -207.189.252.0/24 22573 -207.189.253.0/24 6058 -207.189.254.0/24 53910 -207.189.255.0/24 6058 -207.190.0.0/22 2828 -207.190.4.0/22 174 -207.190.9.0/24 14288 -207.190.11.0/24 14288 -207.190.12.0/22 14288 -207.190.16.0/21 14288 -207.190.24.0/22 14288 -207.190.28.0/23 14288 -207.190.32.0/20 22827 -207.190.48.0/21 14288 -207.190.64.0/18 11796 -207.190.128.0/19 7385 -207.190.160.0/21 32274 -207.190.168.0/22 32274 -207.190.172.0/24 13728 -207.190.173.0/24 32274 -207.190.174.0/23 32274 -207.190.176.0/20 32274 -207.190.192.0/19 7029 -207.190.224.0/21 7029 -207.190.232.0/22 7029 -207.190.236.0/24 7029 -207.190.237.0/24 36233 -207.190.238.0/23 7029 -207.190.240.0/20 7029 -207.191.0.0/21 3549 -207.191.8.0/22 3549 -207.191.12.0/23 26831 -207.191.14.0/24 26831 -207.191.15.0/24 3549 -207.191.16.0/20 3549 -207.191.32.0/24 3549 -207.191.33.0/24 46413 -207.191.34.0/23 3549 -207.191.36.0/22 3549 -207.191.40.0/21 3549 -207.191.48.0/22 3549 -207.191.52.0/23 3549 -207.191.54.0/24 26831 -207.191.55.0/24 3549 -207.191.56.0/21 3549 -207.191.64.0/21 3549 -207.191.72.0/24 26831 -207.191.73.0/24 3549 -207.191.74.0/23 3549 -207.191.76.0/22 3549 -207.191.80.0/20 3549 -207.191.96.0/22 3549 -207.191.100.0/23 3549 -207.191.102.0/24 26831 -207.191.103.0/24 3549 -207.191.104.0/24 23509 -207.191.105.0/24 3549 -207.191.106.0/23 3549 -207.191.108.0/24 20277 -207.191.109.0/24 26831 -207.191.110.0/23 3549 -207.191.112.0/21 3549 -207.191.120.0/23 3549 -207.191.122.0/24 46413 -207.191.123.0/24 3549 -207.191.124.0/23 3549 -207.191.126.0/24 26831 -207.191.127.0/24 3549 -207.191.128.0/19 16904 -207.191.176.0/20 11686 -207.191.192.0/19 393238 -207.191.224.0/20 22458 -207.191.240.0/21 46408 -207.191.248.0/21 15344 -207.192.0.0/18 6559 -207.192.64.0/22 8001 -207.192.68.0/22 63949 -207.192.72.0/22 63949 -207.192.76.0/22 8001 -207.192.80.0/20 8001 -207.192.96.0/20 8001 -207.192.112.0/23 8001 -207.192.114.0/24 47143 -207.192.115.0/24 8001 -207.192.116.0/22 8001 -207.192.120.0/21 8001 -207.192.128.0/21 63005 -207.192.136.0/23 63005 -207.192.144.0/22 63005 -207.192.148.0/24 45474 -207.192.149.0/24 63005 -207.192.150.0/23 63005 -207.192.152.0/22 63005 -207.192.156.0/23 63005 -207.192.159.0/24 63005 -207.192.160.0/21 63005 -207.192.168.0/24 63005 -207.192.171.0/24 63005 -207.192.172.0/22 63005 -207.192.176.0/22 63005 -207.192.185.0/24 63005 -207.192.188.0/23 63005 -207.192.192.0/19 19108 -207.192.224.0/22 19108 -207.192.228.0/24 62943 -207.192.229.0/24 19108 -207.192.230.0/23 19108 -207.192.232.0/21 19108 -207.192.240.0/20 19108 -207.193.0.0/17 7018 -207.193.128.0/18 7018 -207.193.192.0/20 7018 -207.193.208.0/22 7018 -207.193.212.0/23 393359 -207.193.214.0/23 7018 -207.193.216.0/21 7018 -207.193.224.0/20 7018 -207.193.240.0/21 7018 -207.193.248.0/23 7018 -207.193.250.0/24 7018 -207.193.251.0/24 2386 -207.193.252.0/22 7018 -207.194.0.0/17 852 -207.194.128.0/22 25668 -207.194.132.0/22 852 -207.194.136.0/24 40820 -207.194.137.0/24 852 -207.194.138.0/23 852 -207.194.140.0/22 852 -207.194.144.0/20 852 -207.194.160.0/19 852 -207.194.192.0/21 852 -207.194.200.0/21 15247 -207.194.208.0/24 852 -207.194.209.0/24 19905 -207.194.210.0/24 15247 -207.194.211.0/24 852 -207.194.212.0/22 25668 -207.194.216.0/22 25668 -207.194.220.0/22 852 -207.194.224.0/19 852 -207.195.0.0/19 803 -207.195.32.0/21 803 -207.195.40.0/22 803 -207.195.44.0/24 26806 -207.195.45.0/24 803 -207.195.46.0/23 803 -207.195.48.0/23 803 -207.195.50.0/24 803 -207.195.51.0/24 26806 -207.195.52.0/23 803 -207.195.54.0/24 27628 -207.195.55.0/24 803 -207.195.56.0/23 803 -207.195.58.0/24 803 -207.195.59.0/24 36479 -207.195.60.0/24 36479 -207.195.61.0/24 803 -207.195.62.0/23 803 -207.195.64.0/24 27628 -207.195.65.0/24 803 -207.195.66.0/23 803 -207.195.68.0/22 803 -207.195.72.0/22 803 -207.195.76.0/23 803 -207.195.78.0/24 393607 -207.195.79.0/24 26806 -207.195.80.0/24 26806 -207.195.81.0/24 803 -207.195.82.0/23 803 -207.195.84.0/22 803 -207.195.88.0/22 803 -207.195.92.0/23 803 -207.195.94.0/24 27628 -207.195.95.0/24 803 -207.195.96.0/19 803 -207.195.128.0/19 30027 -207.195.160.0/19 11858 -207.195.192.0/19 25720 -207.195.224.0/22 23345 -207.195.228.0/24 25843 -207.195.229.0/24 23345 -207.195.230.0/23 23345 -207.195.232.0/23 23345 -207.195.234.0/24 23345 -207.195.235.0/24 25843 -207.195.236.0/24 23345 -207.195.237.0/24 25843 -207.195.238.0/23 25843 -207.195.240.0/21 53559 -207.195.248.0/22 53559 -207.195.252.0/23 53559 -207.195.254.0/24 53559 -207.196.0.0/17 2914 -207.196.128.0/24 13476 -207.196.129.0/24 3807 -207.196.130.0/23 13476 -207.196.132.0/22 3807 -207.196.136.0/21 3807 -207.196.144.0/22 3807 -207.196.148.0/23 3807 -207.196.150.0/23 13476 -207.196.152.0/24 13476 -207.196.153.0/24 3807 -207.196.154.0/23 3807 -207.196.156.0/22 3807 -207.196.160.0/22 13476 -207.196.164.0/23 13476 -207.196.166.0/24 13476 -207.196.167.0/24 3807 -207.196.168.0/21 3807 -207.196.176.0/23 3807 -207.196.179.0/24 13476 -207.196.180.0/22 3807 -207.196.184.0/21 3807 -207.196.192.0/20 3807 -207.196.208.0/20 13476 -207.196.224.0/20 13476 -207.196.240.0/21 3807 -207.196.248.0/21 13476 -207.197.0.0/17 3851 -207.197.128.0/17 2914 -207.198.18.0/24 22899 -207.198.64.0/18 13768 -207.198.128.0/23 2914 -207.198.130.0/24 46183 -207.198.131.0/24 22691 -207.198.132.0/22 2914 -207.198.136.0/21 2914 -207.198.144.0/20 2914 -207.198.160.0/21 2914 -207.198.168.0/22 2914 -207.198.172.0/23 23395 -207.198.174.0/23 2914 -207.198.176.0/23 2914 -207.198.178.0/24 23395 -207.198.179.0/24 2914 -207.198.180.0/23 8029 -207.198.182.0/23 2914 -207.198.184.0/21 2914 -207.198.192.0/19 2914 -207.198.224.0/24 23395 -207.198.225.0/24 2914 -207.198.226.0/23 2914 -207.198.228.0/22 2914 -207.198.232.0/21 2914 -207.198.240.0/20 2914 -207.199.0.0/17 2914 -207.199.128.0/22 54103 -207.199.132.0/24 54103 -207.199.133.0/24 39855 -207.199.134.0/24 39855 -207.199.135.0/24 11194 -207.199.136.0/21 54103 -207.199.144.0/23 54103 -207.199.146.0/24 11194 -207.199.147.0/24 54103 -207.199.148.0/23 54103 -207.199.150.0/24 54103 -207.199.151.0/24 39855 -207.199.152.0/22 54103 -207.199.156.0/24 54103 -207.199.157.0/24 39855 -207.199.158.0/24 11194 -207.199.159.0/24 6762 -207.199.160.0/23 54103 -207.199.162.0/24 39855 -207.199.163.0/24 54103 -207.199.164.0/23 54103 -207.199.166.0/24 39855 -207.199.167.0/24 54103 -207.199.168.0/24 39855 -207.199.169.0/24 54103 -207.199.170.0/23 54103 -207.199.172.0/23 54103 -207.199.174.0/24 11194 -207.199.175.0/24 54103 -207.199.176.0/24 54103 -207.199.177.0/24 11194 -207.199.178.0/24 54103 -207.199.179.0/24 39855 -207.199.180.0/24 54103 -207.199.181.0/24 11194 -207.199.182.0/23 11194 -207.199.184.0/24 39855 -207.199.185.0/24 54103 -207.199.186.0/24 11194 -207.199.187.0/24 54103 -207.199.188.0/23 54103 -207.199.190.0/24 54103 -207.199.191.0/24 11194 -207.199.192.0/24 63394 -207.199.193.0/24 5056 -207.199.194.0/23 5056 -207.199.196.0/23 5056 -207.199.198.0/23 396443 -207.199.200.0/22 5056 -207.199.204.0/23 5056 -207.199.206.0/24 5056 -207.199.207.0/24 396878 -207.199.208.0/22 13356 -207.199.212.0/24 5056 -207.199.213.0/24 396878 -207.199.214.0/23 5056 -207.199.216.0/23 18883 -207.199.218.0/23 5056 -207.199.220.0/22 19628 -207.199.224.0/23 5056 -207.199.226.0/24 62886 -207.199.227.0/24 5056 -207.199.228.0/22 19628 -207.199.232.0/23 62886 -207.199.234.0/24 397475 -207.199.235.0/24 5056 -207.199.236.0/24 5056 -207.199.237.0/24 396878 -207.199.238.0/24 63394 -207.199.239.0/24 62825 -207.199.240.0/23 5056 -207.199.242.0/24 5056 -207.199.243.0/24 46627 -207.199.244.0/24 5056 -207.199.245.0/24 30325 -207.199.246.0/23 63394 -207.199.248.0/23 5056 -207.199.250.0/24 5056 -207.199.251.0/24 398052 -207.199.252.0/23 5056 -207.199.254.0/24 5056 -207.199.255.0/24 62825 -207.200.0.0/18 3728 -207.200.128.0/19 19662 -207.200.160.0/20 21976 -207.200.176.0/21 54155 -207.200.184.0/22 54155 -207.200.188.0/24 54155 -207.200.190.0/24 54155 -207.200.192.0/19 53828 -207.200.224.0/19 33125 -207.201.18.0/23 209 -207.201.20.0/24 209 -207.201.32.0/23 209 -207.201.192.0/22 3549 -207.201.196.0/24 3549 -207.201.197.0/24 395942 -207.201.198.0/24 23436 -207.201.199.0/24 3549 -207.201.200.0/23 3549 -207.201.202.0/23 40805 -207.201.204.0/22 3549 -207.201.208.0/24 46381 -207.201.209.0/24 3549 -207.201.210.0/23 3549 -207.201.212.0/24 3549 -207.201.213.0/24 63264 -207.201.214.0/24 12109 -207.201.215.0/24 394732 -207.201.216.0/22 40805 -207.201.220.0/22 3549 -207.201.224.0/24 26831 -207.201.225.0/24 3549 -207.201.226.0/23 3549 -207.201.228.0/24 3549 -207.201.229.0/24 40847 -207.201.230.0/23 3549 -207.201.232.0/22 3549 -207.201.236.0/24 3549 -207.201.237.0/24 393447 -207.201.238.0/23 3549 -207.201.240.0/21 3549 -207.201.248.0/24 3549 -207.201.249.0/24 26831 -207.201.250.0/23 3549 -207.201.252.0/22 3549 -207.202.0.0/17 7270 -207.202.128.0/17 2044 -207.203.0.0/23 6389 -207.203.2.0/23 2386 -207.203.4.0/22 6389 -207.203.8.0/21 6389 -207.203.16.0/21 6389 -207.203.24.0/22 6389 -207.203.28.0/23 32787 -207.203.30.0/24 32787 -207.203.31.0/24 6389 -207.203.32.0/19 6389 -207.203.64.0/19 6389 -207.203.96.0/23 54392 -207.203.98.0/23 6389 -207.203.100.0/22 6389 -207.203.104.0/21 6389 -207.203.112.0/20 6389 -207.203.128.0/21 6389 -207.203.136.0/23 6389 -207.203.138.0/24 22535 -207.203.139.0/24 6389 -207.203.140.0/22 6389 -207.203.144.0/20 6389 -207.203.160.0/24 6389 -207.203.161.0/24 31905 -207.203.162.0/23 6389 -207.203.164.0/22 6389 -207.203.168.0/21 6389 -207.203.176.0/20 6389 -207.203.192.0/18 6389 -207.204.0.0/20 19871 -207.204.16.0/22 19871 -207.204.20.0/24 19871 -207.204.21.0/24 55002 -207.204.22.0/23 19871 -207.204.24.0/21 19871 -207.204.32.0/21 19871 -207.204.40.0/24 55002 -207.204.41.0/24 19871 -207.204.42.0/24 19871 -207.204.43.0/24 55002 -207.204.44.0/22 19871 -207.204.48.0/24 55002 -207.204.49.0/24 19871 -207.204.50.0/24 19871 -207.204.51.0/24 55002 -207.204.52.0/22 19871 -207.204.56.0/21 19871 -207.204.64.0/18 30689 -207.204.128.0/18 10396 -207.204.192.0/19 22995 -207.204.224.0/19 22781 -207.205.0.0/16 701 -207.206.0.0/20 2914 -207.206.16.0/24 17054 -207.206.17.0/24 2914 -207.206.18.0/23 2914 -207.206.20.0/22 2914 -207.206.24.0/21 2914 -207.206.32.0/20 2914 -207.206.48.0/24 2914 -207.206.49.0/24 17054 -207.206.50.0/23 2914 -207.206.52.0/22 2914 -207.206.56.0/23 2914 -207.206.58.0/24 17054 -207.206.59.0/24 2914 -207.206.60.0/22 2914 -207.206.64.0/18 2914 -207.206.128.0/18 5656 -207.206.192.0/23 8000 -207.206.197.0/24 8000 -207.206.198.0/24 8000 -207.206.203.0/24 8000 -207.206.204.0/24 8000 -207.206.207.0/24 8000 -207.206.209.0/24 8000 -207.206.210.0/23 8000 -207.206.223.0/24 8000 -207.206.224.0/20 32082 -207.206.240.0/21 32082 -207.206.248.0/23 32082 -207.206.251.0/24 32082 -207.206.252.0/22 32082 -207.207.0.0/20 3900 -207.207.16.0/21 3900 -207.207.24.0/22 3900 -207.207.28.0/24 22363 -207.207.29.0/24 3900 -207.207.30.0/23 3900 -207.207.32.0/21 3900 -207.207.40.0/23 3900 -207.207.42.0/24 36307 -207.207.43.0/24 3900 -207.207.44.0/22 3900 -207.207.48.0/20 3900 -207.207.96.0/19 31766 -207.207.128.0/19 2914 -207.207.160.0/23 7384 -207.207.162.0/24 7384 -207.207.163.0/24 2386 -207.207.164.0/22 7384 -207.207.168.0/22 7384 -207.207.172.0/24 7384 -207.207.173.0/24 2386 -207.207.174.0/23 7384 -207.207.176.0/24 16509 -207.207.178.0/24 16509 -207.207.184.0/23 7384 -207.207.186.0/24 7384 -207.207.192.0/18 10823 -207.208.0.0/16 2828 -207.209.0.0/19 3300 -207.209.64.0/19 3300 -207.209.182.0/24 15264 -207.210.0.0/18 35843 -207.210.64.0/24 11042 -207.210.65.0/24 7226 -207.210.66.0/23 11042 -207.210.68.0/23 11042 -207.210.70.0/24 11042 -207.210.71.0/24 7226 -207.210.72.0/23 11042 -207.210.74.0/24 7226 -207.210.75.0/24 11042 -207.210.76.0/24 11042 -207.210.77.0/24 7226 -207.210.78.0/24 7226 -207.210.79.0/24 11042 -207.210.80.0/21 11042 -207.210.88.0/24 11042 -207.210.89.0/24 7226 -207.210.90.0/23 7226 -207.210.92.0/24 7226 -207.210.93.0/24 11042 -207.210.94.0/24 11042 -207.210.95.0/24 7226 -207.210.96.0/24 7226 -207.210.97.0/24 11042 -207.210.98.0/23 11042 -207.210.100.0/24 11042 -207.210.101.0/24 7226 -207.210.102.0/23 11042 -207.210.104.0/24 11042 -207.210.105.0/24 7226 -207.210.106.0/24 7226 -207.210.107.0/24 11042 -207.210.108.0/22 11042 -207.210.112.0/23 11042 -207.210.114.0/24 7226 -207.210.115.0/24 11042 -207.210.116.0/23 7226 -207.210.118.0/24 11042 -207.210.119.0/24 7226 -207.210.120.0/24 11042 -207.210.121.0/24 7226 -207.210.122.0/23 3595 -207.210.124.0/23 11042 -207.210.126.0/24 7226 -207.210.127.0/24 11042 -207.210.128.0/19 22742 -207.210.160.0/24 25955 -207.210.162.0/23 25955 -207.210.164.0/24 174 -207.210.165.0/24 25955 -207.210.166.0/23 25955 -207.210.169.0/24 4515 -207.210.170.0/24 25955 -207.210.172.0/24 25955 -207.210.177.0/24 25955 -207.210.178.0/23 25955 -207.210.180.0/22 25955 -207.210.192.0/23 62729 -207.210.194.0/24 30496 -207.210.195.0/24 63182 -207.210.196.0/23 30496 -207.210.198.0/24 30496 -207.210.199.0/24 63182 -207.210.200.0/22 62729 -207.210.204.0/22 30496 -207.210.208.0/21 30496 -207.210.216.0/23 30496 -207.210.218.0/24 30496 -207.210.219.0/24 36024 -207.210.220.0/22 30496 -207.210.224.0/23 63182 -207.210.226.0/23 30496 -207.210.228.0/22 36024 -207.210.232.0/24 36024 -207.210.233.0/24 394094 -207.210.234.0/23 36024 -207.210.236.0/23 30496 -207.210.238.0/24 30496 -207.210.239.0/24 36352 -207.210.240.0/23 30496 -207.210.242.0/24 36024 -207.210.243.0/24 30496 -207.210.244.0/22 30496 -207.210.248.0/22 30496 -207.210.252.0/23 30496 -207.210.254.0/24 36352 -207.210.255.0/24 30496 -207.211.0.0/21 14135 -207.211.8.0/22 14135 -207.211.12.0/24 19389 -207.211.13.0/24 14135 -207.211.14.0/23 14135 -207.211.16.0/21 14135 -207.211.24.0/22 14135 -207.211.28.0/23 14135 -207.211.30.0/24 30031 -207.211.31.0/24 14135 -207.211.32.0/19 14135 -207.211.64.0/18 4544 -207.211.216.0/22 5697 -207.211.220.0/22 5069 -207.211.224.0/22 4544 -207.211.236.0/22 9193 -207.212.0.0/19 7018 -207.212.32.0/20 7018 -207.212.48.0/21 7018 -207.212.56.0/24 7018 -207.212.57.0/24 20066 -207.212.58.0/23 54968 -207.212.60.0/24 54968 -207.212.61.0/24 7018 -207.212.62.0/24 17043 -207.212.63.0/24 7018 -207.212.64.0/19 7018 -207.212.96.0/21 7018 -207.212.104.0/24 7018 -207.212.105.0/24 395215 -207.212.106.0/23 7018 -207.212.108.0/22 7018 -207.212.112.0/20 7018 -207.212.128.0/17 7018 -207.213.0.0/18 7018 -207.213.64.0/20 7018 -207.213.80.0/23 7018 -207.213.82.0/24 26852 -207.213.83.0/24 7018 -207.213.84.0/22 7018 -207.213.88.0/21 7018 -207.213.96.0/20 7018 -207.213.112.0/22 5033 -207.213.116.0/22 7018 -207.213.120.0/21 7018 -207.213.128.0/21 7018 -207.213.136.0/22 7018 -207.213.140.0/23 7018 -207.213.142.0/23 5033 -207.213.144.0/20 7018 -207.213.160.0/19 7018 -207.213.192.0/20 7018 -207.213.208.0/22 7018 -207.213.212.0/23 19306 -207.213.214.0/24 19306 -207.213.215.0/24 7065 -207.213.216.0/23 7065 -207.213.218.0/23 7018 -207.213.220.0/22 7018 -207.213.224.0/19 7018 -207.214.0.0/19 7018 -207.214.32.0/20 7018 -207.214.48.0/21 7018 -207.214.56.0/23 7018 -207.214.58.0/24 7018 -207.214.59.0/24 2386 -207.214.60.0/22 7018 -207.214.64.0/19 7018 -207.214.96.0/20 7018 -207.214.112.0/21 7018 -207.214.120.0/22 7018 -207.214.124.0/23 7018 -207.214.126.0/24 7018 -207.214.127.0/24 21646 -207.214.128.0/20 7018 -207.214.144.0/21 7018 -207.214.152.0/22 26362 -207.214.156.0/23 26362 -207.214.158.0/23 7018 -207.214.160.0/19 7018 -207.214.192.0/18 7018 -207.215.0.0/17 7018 -207.215.128.0/18 7018 -207.215.192.0/22 7018 -207.215.196.0/22 22600 -207.215.200.0/21 7018 -207.215.208.0/22 7018 -207.215.212.0/24 22600 -207.215.213.0/24 7018 -207.215.214.0/23 7018 -207.215.216.0/23 26362 -207.215.218.0/23 7018 -207.215.220.0/22 7018 -207.215.224.0/22 7018 -207.215.228.0/22 32337 -207.215.232.0/21 7018 -207.215.240.0/20 7018 -207.216.0.0/17 852 -207.216.128.0/18 852 -207.216.192.0/19 852 -207.216.224.0/20 852 -207.216.240.0/22 852 -207.216.244.0/22 6171 -207.216.248.0/21 852 -207.217.0.0/22 26914 -207.217.4.0/22 7029 -207.217.8.0/21 7029 -207.217.16.0/20 7029 -207.217.32.0/19 7029 -207.217.64.0/19 7029 -207.217.96.0/20 7029 -207.217.112.0/21 7029 -207.217.120.0/22 7029 -207.217.124.0/24 7029 -207.217.125.0/24 30447 -207.217.126.0/23 7029 -207.217.128.0/17 7029 -207.218.0.0/20 3549 -207.218.16.0/21 3549 -207.218.24.0/22 3549 -207.218.28.0/23 3549 -207.218.30.0/24 558 -207.218.31.0/24 3549 -207.218.32.0/21 3549 -207.218.40.0/23 3549 -207.218.42.0/24 3549 -207.218.43.0/24 13956 -207.218.44.0/22 3549 -207.218.48.0/20 3549 -207.218.64.0/21 3549 -207.218.72.0/22 3549 -207.218.76.0/24 3356 -207.218.77.0/24 3549 -207.218.78.0/23 3549 -207.218.80.0/20 3549 -207.218.96.0/22 3549 -207.218.100.0/24 7385 -207.218.101.0/24 3549 -207.218.102.0/24 3549 -207.218.103.0/24 10753 -207.218.104.0/21 3549 -207.218.112.0/21 3549 -207.218.120.0/23 3549 -207.218.122.0/24 3549 -207.218.123.0/24 16940 -207.218.124.0/22 3549 -207.218.128.0/21 30452 -207.218.136.0/21 3549 -207.218.144.0/21 3549 -207.218.152.0/23 3549 -207.218.154.0/24 21734 -207.218.155.0/24 3549 -207.218.156.0/22 3549 -207.218.160.0/22 3549 -207.218.164.0/23 3549 -207.218.166.0/24 22822 -207.218.167.0/24 3549 -207.218.168.0/21 3549 -207.218.176.0/22 3549 -207.218.180.0/23 3549 -207.218.182.0/24 3356 -207.218.183.0/24 3549 -207.218.184.0/21 3549 -207.218.192.0/18 36351 -207.219.0.0/18 852 -207.219.64.0/19 852 -207.219.96.0/22 852 -207.219.100.0/24 852 -207.219.101.0/24 11700 -207.219.102.0/23 852 -207.219.104.0/21 852 -207.219.112.0/20 852 -207.219.128.0/17 852 -207.220.0.0/19 7029 -207.220.64.0/20 7029 -207.220.83.0/24 26722 -207.220.112.0/20 7029 -207.220.208.0/20 7029 -207.221.0.0/19 7029 -207.222.0.0/18 7029 -207.222.160.0/20 7029 -207.222.192.0/19 7029 -207.223.16.0/20 53435 -207.223.32.0/20 17223 -207.223.48.0/23 22775 -207.223.50.0/24 22775 -207.223.52.0/23 22775 -207.223.64.0/20 21808 -207.223.80.0/20 7029 -207.223.96.0/22 3257 -207.223.100.0/23 3257 -207.223.102.0/24 3257 -207.223.103.0/24 53400 -207.223.104.0/24 53483 -207.223.105.0/24 3257 -207.223.106.0/23 3257 -207.223.108.0/22 3257 -207.223.112.0/20 33606 -207.223.128.0/19 7029 -207.223.160.0/20 15169 -207.223.176.0/24 46873 -207.223.178.0/24 46873 -207.223.180.0/22 46873 -207.223.184.0/21 46873 -207.223.192.0/19 7029 -207.223.224.0/20 7029 -207.223.240.0/21 1610 -207.223.248.0/22 1610 -207.223.252.0/23 1610 -207.223.254.0/24 1610 -207.223.255.0/24 36024 -207.224.0.0/17 209 -207.224.128.0/18 209 -207.224.192.0/19 209 -207.224.224.0/21 209 -207.224.232.0/22 209 -207.224.236.0/23 209 -207.224.238.0/24 209 -207.224.239.0/24 22309 -207.224.240.0/22 209 -207.224.244.0/23 209 -207.224.246.0/24 14590 -207.224.247.0/24 209 -207.224.248.0/21 209 -207.225.0.0/21 209 -207.225.8.0/24 393722 -207.225.9.0/24 209 -207.225.10.0/23 209 -207.225.12.0/22 209 -207.225.16.0/20 209 -207.225.32.0/20 209 -207.225.48.0/22 209 -207.225.52.0/24 395245 -207.225.53.0/24 209 -207.225.54.0/23 209 -207.225.56.0/21 209 -207.225.64.0/19 209 -207.225.96.0/23 209 -207.225.98.0/24 39952 -207.225.99.0/24 209 -207.225.100.0/22 209 -207.225.104.0/21 209 -207.225.112.0/20 209 -207.225.128.0/21 209 -207.225.136.0/24 209 -207.225.137.0/24 20285 -207.225.138.0/23 209 -207.225.140.0/22 209 -207.225.144.0/22 209 -207.225.148.0/23 209 -207.225.150.0/24 14023 -207.225.151.0/24 209 -207.225.152.0/24 209 -207.225.153.0/24 46111 -207.225.154.0/23 209 -207.225.156.0/22 209 -207.225.160.0/23 209 -207.225.162.0/24 30449 -207.225.163.0/24 209 -207.225.164.0/22 209 -207.225.168.0/21 209 -207.225.176.0/20 209 -207.225.192.0/24 16749 -207.225.193.0/24 209 -207.225.194.0/23 209 -207.225.196.0/22 209 -207.225.200.0/21 209 -207.225.208.0/20 209 -207.225.224.0/21 209 -207.225.232.0/22 209 -207.225.236.0/24 209 -207.225.237.0/24 14378 -207.225.238.0/23 209 -207.225.240.0/20 209 -207.226.0.0/19 3491 -207.226.32.0/20 12491 -207.226.48.0/20 3491 -207.226.64.0/21 60144 -207.226.72.0/21 3491 -207.226.80.0/20 3491 -207.226.96.0/19 3491 -207.226.128.0/22 3491 -207.226.132.0/24 30103 -207.226.133.0/24 3491 -207.226.134.0/23 3491 -207.226.136.0/23 135357 -207.226.138.0/24 135357 -207.226.139.0/24 3491 -207.226.140.0/22 3491 -207.226.144.0/21 3491 -207.226.152.0/24 3491 -207.226.153.0/24 63673 -207.226.154.0/24 63673 -207.226.155.0/24 3491 -207.226.156.0/22 3491 -207.226.160.0/19 3491 -207.226.192.0/18 3491 -207.227.0.0/21 3356 -207.227.8.0/21 4358 -207.227.16.0/21 4358 -207.227.24.0/21 15290 -207.227.32.0/19 3356 -207.227.64.0/18 3356 -207.227.128.0/18 3356 -207.227.192.0/19 3356 -207.227.224.0/21 1 -207.227.232.0/21 3356 -207.227.240.0/20 3356 -207.228.0.0/21 5752 -207.228.8.0/22 5752 -207.228.12.0/23 5752 -207.228.14.0/24 7018 -207.228.15.0/24 5752 -207.228.16.0/20 5752 -207.228.32.0/19 5752 -207.228.64.0/19 852 -207.228.96.0/22 852 -207.228.100.0/23 852 -207.228.102.0/24 852 -207.228.103.0/24 33549 -207.228.104.0/21 852 -207.228.112.0/20 852 -207.228.128.0/23 36549 -207.228.130.0/23 3855 -207.228.132.0/22 3855 -207.228.136.0/21 3855 -207.228.144.0/20 3855 -207.228.160.0/19 3855 -207.228.224.0/21 14361 -207.228.233.0/24 14361 -207.228.234.0/24 14361 -207.228.235.0/24 46573 -207.228.236.0/22 14361 -207.228.240.0/22 14361 -207.228.248.0/24 46664 -207.228.249.0/24 14361 -207.228.250.0/23 14361 -207.228.252.0/23 14361 -207.228.254.0/24 14361 -207.228.255.0/24 46664 -207.229.0.0/19 852 -207.229.32.0/22 852 -207.229.36.0/24 7861 -207.229.37.0/24 852 -207.229.38.0/23 852 -207.229.40.0/21 852 -207.229.48.0/22 852 -207.229.52.0/23 852 -207.229.54.0/24 852 -207.229.55.0/24 393659 -207.229.56.0/21 852 -207.229.64.0/23 4319 -207.229.66.0/24 397377 -207.229.67.0/24 19728 -207.229.68.0/24 396404 -207.229.69.0/24 396127 -207.229.71.0/24 13331 -207.229.72.0/22 13331 -207.229.76.0/24 46362 -207.229.77.0/24 26440 -207.229.78.0/24 22458 -207.229.79.0/24 395296 -207.229.81.0/24 395595 -207.229.84.0/24 30382 -207.229.85.0/24 395825 -207.229.86.0/24 395588 -207.229.88.0/23 396014 -207.229.90.0/23 63061 -207.229.92.0/24 396271 -207.229.93.0/24 64267 -207.229.95.0/24 35916 -207.229.96.0/23 25739 -207.229.98.0/24 393891 -207.229.99.0/24 4319 -207.229.100.0/23 62887 -207.229.102.0/24 14984 -207.229.103.0/24 21698 -207.229.104.0/24 17274 -207.229.106.0/23 53942 -207.229.110.0/23 393891 -207.229.112.0/22 47254 -207.229.116.0/24 47254 -207.229.117.0/24 4319 -207.229.118.0/23 47254 -207.229.120.0/24 47254 -207.229.121.0/24 4319 -207.229.122.0/23 47254 -207.229.124.0/22 47254 -207.229.128.0/18 6079 -207.229.192.0/18 5006 -207.230.0.0/21 174 -207.230.8.0/22 174 -207.230.12.0/24 174 -207.230.13.0/24 46221 -207.230.14.0/24 46221 -207.230.15.0/24 174 -207.230.16.0/20 174 -207.230.32.0/19 5656 -207.230.64.0/22 7029 -207.230.68.0/23 27338 -207.230.70.0/23 7029 -207.230.72.0/21 7029 -207.230.80.0/20 7029 -207.230.96.0/20 46261 -207.230.112.0/23 9009 -207.230.114.0/23 46261 -207.230.116.0/22 46261 -207.230.120.0/22 46261 -207.230.124.0/23 9009 -207.230.126.0/24 9009 -207.230.127.0/24 19437 -207.230.128.0/23 17157 -207.230.130.0/24 16615 -207.230.131.0/24 17157 -207.230.132.0/22 17157 -207.230.136.0/21 17157 -207.230.144.0/20 17157 -207.230.192.0/20 22561 -207.230.208.0/21 22561 -207.230.216.0/24 209 -207.230.217.0/24 22561 -207.230.218.0/23 22561 -207.230.220.0/23 22561 -207.230.222.0/24 22561 -207.230.223.0/24 209 -207.230.224.0/19 15290 -207.231.0.0/23 10602 -207.231.2.0/24 10602 -207.231.3.0/24 17403 -207.231.4.0/22 10602 -207.231.8.0/21 10602 -207.231.16.0/20 10602 -207.231.32.0/19 11015 -207.231.64.0/20 14051 -207.231.80.0/22 14051 -207.231.84.0/24 14051 -207.231.85.0/24 63431 -207.231.86.0/23 14051 -207.231.88.0/21 14051 -207.231.96.0/22 54103 -207.231.100.0/24 39855 -207.231.101.0/24 54103 -207.231.103.0/24 54103 -207.231.104.0/23 40676 -207.231.112.0/20 397355 -207.231.132.0/22 15293 -207.231.140.0/22 15293 -207.231.156.0/22 36351 -207.231.168.0/22 26673 -207.231.172.0/23 26673 -207.231.174.0/24 7224 -207.231.175.0/24 26673 -207.231.176.0/23 25813 -207.231.179.0/24 25813 -207.231.180.0/22 25813 -207.231.185.0/24 25813 -207.231.188.0/23 25813 -207.231.190.0/24 25813 -207.231.200.0/21 46617 -207.231.208.0/20 32228 -207.231.224.0/22 855 -207.231.228.0/23 855 -207.231.230.0/24 855 -207.231.231.0/24 36522 -207.231.232.0/21 855 -207.231.241.0/24 101 -207.231.243.0/24 101 -207.231.245.0/24 101 -207.231.246.0/24 7575 -207.231.248.0/24 101 -207.232.0.0/18 1680 -207.232.64.0/20 7078 -207.232.80.0/20 32035 -207.232.96.0/19 15247 -207.232.128.0/18 2939 -207.232.192.0/18 7349 -207.233.0.0/18 2152 -207.233.64.0/19 2152 -207.233.96.0/21 2152 -207.233.104.0/22 2152 -207.233.108.0/23 2152 -207.233.110.0/24 2152 -207.233.111.0/24 26492 -207.233.112.0/20 2152 -207.233.128.0/18 8010 -207.233.192.0/20 8010 -207.233.208.0/21 8010 -207.233.216.0/22 8010 -207.233.220.0/24 4565 -207.233.221.0/24 8010 -207.233.222.0/23 8010 -207.233.224.0/19 8010 -207.234.0.0/17 174 -207.234.128.0/17 3064 -207.235.0.0/20 3549 -207.235.16.0/22 3549 -207.235.20.0/22 54979 -207.235.24.0/22 3549 -207.235.28.0/22 393769 -207.235.32.0/23 3549 -207.235.34.0/23 11942 -207.235.36.0/23 11942 -207.235.38.0/23 3549 -207.235.40.0/22 3549 -207.235.44.0/23 3549 -207.235.46.0/24 26831 -207.235.47.0/24 3549 -207.235.48.0/23 3549 -207.235.50.0/24 32434 -207.235.51.0/24 3549 -207.235.52.0/23 3549 -207.235.54.0/24 36109 -207.235.55.0/24 3549 -207.235.56.0/21 3549 -207.235.64.0/22 3549 -207.235.68.0/23 3549 -207.235.70.0/24 16707 -207.235.71.0/24 3549 -207.235.72.0/23 3549 -207.235.74.0/24 27244 -207.235.75.0/24 3549 -207.235.76.0/24 27210 -207.235.77.0/24 3549 -207.235.78.0/24 3549 -207.235.79.0/24 30694 -207.235.80.0/21 3549 -207.235.88.0/22 3549 -207.235.92.0/23 7029 -207.235.94.0/23 3549 -207.235.96.0/20 3549 -207.235.112.0/23 3549 -207.235.114.0/24 395271 -207.235.115.0/24 26831 -207.235.116.0/24 7029 -207.235.117.0/24 3549 -207.235.118.0/23 3549 -207.235.120.0/22 62738 -207.235.124.0/22 3549 -207.235.128.0/22 6461 -207.235.132.0/23 6461 -207.235.134.0/24 6461 -207.235.135.0/24 17025 -207.235.136.0/21 6461 -207.235.144.0/20 6461 -207.235.160.0/19 6461 -207.235.192.0/18 6461 -207.236.0.0/21 577 -207.236.8.0/22 577 -207.236.12.0/23 577 -207.236.14.0/23 36522 -207.236.16.0/23 577 -207.236.18.0/24 577 -207.236.19.0/24 40758 -207.236.20.0/22 577 -207.236.24.0/21 577 -207.236.32.0/22 577 -207.236.36.0/23 577 -207.236.38.0/24 36522 -207.236.39.0/24 577 -207.236.40.0/22 577 -207.236.44.0/24 577 -207.236.45.0/24 36522 -207.236.46.0/23 577 -207.236.48.0/24 36522 -207.236.49.0/24 577 -207.236.50.0/24 577 -207.236.51.0/24 36522 -207.236.52.0/22 577 -207.236.56.0/21 577 -207.236.64.0/22 577 -207.236.68.0/23 577 -207.236.70.0/24 577 -207.236.71.0/24 3848 -207.236.72.0/21 577 -207.236.80.0/23 577 -207.236.82.0/24 577 -207.236.83.0/24 36522 -207.236.84.0/22 577 -207.236.88.0/21 577 -207.236.96.0/22 577 -207.236.100.0/23 577 -207.236.102.0/24 577 -207.236.103.0/24 36522 -207.236.104.0/22 577 -207.236.108.0/24 36522 -207.236.109.0/24 577 -207.236.110.0/24 577 -207.236.111.0/24 15321 -207.236.112.0/24 15321 -207.236.113.0/24 577 -207.236.114.0/24 15321 -207.236.115.0/24 577 -207.236.116.0/22 577 -207.236.120.0/24 15321 -207.236.121.0/24 577 -207.236.122.0/24 15321 -207.236.123.0/24 16532 -207.236.124.0/23 16532 -207.236.126.0/23 577 -207.236.128.0/24 15321 -207.236.129.0/24 577 -207.236.130.0/24 577 -207.236.131.0/24 36522 -207.236.132.0/22 577 -207.236.136.0/22 577 -207.236.140.0/24 20371 -207.236.141.0/24 36522 -207.236.142.0/24 15321 -207.236.143.0/24 577 -207.236.144.0/24 15321 -207.236.145.0/24 577 -207.236.146.0/24 21552 -207.236.147.0/24 577 -207.236.148.0/22 577 -207.236.152.0/21 577 -207.236.160.0/22 577 -207.236.164.0/23 577 -207.236.166.0/24 36522 -207.236.167.0/24 577 -207.236.168.0/21 577 -207.236.176.0/20 577 -207.236.192.0/20 577 -207.236.208.0/21 577 -207.236.216.0/24 36522 -207.236.217.0/24 577 -207.236.218.0/23 577 -207.236.220.0/24 30336 -207.236.221.0/24 577 -207.236.222.0/24 30336 -207.236.223.0/24 577 -207.236.224.0/24 577 -207.236.225.0/24 30336 -207.236.226.0/23 577 -207.236.228.0/22 577 -207.236.232.0/24 30336 -207.236.233.0/24 577 -207.236.234.0/23 577 -207.236.236.0/23 577 -207.236.238.0/24 36522 -207.236.239.0/24 577 -207.236.240.0/23 577 -207.236.242.0/24 30336 -207.236.243.0/24 577 -207.236.244.0/24 36522 -207.236.245.0/24 30336 -207.236.246.0/23 577 -207.236.248.0/23 577 -207.236.250.0/24 3848 -207.236.251.0/24 577 -207.236.252.0/24 30336 -207.236.253.0/24 577 -207.236.254.0/23 577 -207.237.0.0/18 6079 -207.237.64.0/20 6079 -207.237.80.0/21 6079 -207.237.88.0/22 6079 -207.237.92.0/23 6079 -207.237.94.0/23 27506 -207.237.96.0/24 6079 -207.237.97.0/24 27506 -207.237.98.0/23 6079 -207.237.100.0/22 6079 -207.237.104.0/21 6079 -207.237.112.0/20 6079 -207.237.128.0/20 6079 -207.237.144.0/22 6079 -207.237.148.0/23 6079 -207.237.150.0/24 29990 -207.237.151.0/24 6079 -207.237.152.0/22 6079 -207.237.156.0/23 46887 -207.237.158.0/23 6079 -207.237.160.0/21 6079 -207.237.168.0/23 6079 -207.237.170.0/24 22015 -207.237.171.0/24 6079 -207.237.172.0/22 6079 -207.237.176.0/21 6079 -207.237.184.0/22 6079 -207.237.188.0/24 32461 -207.237.189.0/24 6079 -207.237.190.0/23 6079 -207.237.192.0/18 6079 -207.238.0.0/17 2828 -207.238.128.0/20 2828 -207.238.144.0/21 2828 -207.238.152.0/24 7014 -207.238.153.0/24 2828 -207.238.154.0/23 2828 -207.238.156.0/22 2828 -207.238.160.0/22 2828 -207.238.164.0/23 54676 -207.238.166.0/23 393618 -207.238.168.0/21 2828 -207.238.176.0/20 2828 -207.238.192.0/20 2828 -207.238.208.0/22 2828 -207.238.212.0/23 2828 -207.238.214.0/24 2828 -207.238.215.0/24 394772 -207.238.216.0/21 2828 -207.238.224.0/19 2828 -207.239.0.0/18 2828 -207.239.64.0/19 2828 -207.239.96.0/20 2828 -207.239.112.0/21 2828 -207.239.120.0/23 2828 -207.239.122.0/24 2828 -207.239.123.0/24 13391 -207.239.124.0/22 2828 -207.239.128.0/20 2828 -207.239.144.0/22 2828 -207.239.148.0/23 2828 -207.239.150.0/24 13391 -207.239.151.0/24 2828 -207.239.152.0/21 2828 -207.239.160.0/19 2828 -207.239.192.0/20 2828 -207.239.208.0/21 2828 -207.239.216.0/22 2828 -207.239.220.0/22 17119 -207.239.224.0/23 2828 -207.239.226.0/24 2828 -207.239.227.0/24 395942 -207.239.228.0/22 2828 -207.239.232.0/21 2828 -207.239.240.0/20 2828 -207.240.2.0/24 1814 -207.240.4.0/24 36031 -207.240.5.0/24 1811 -207.240.6.0/23 36031 -207.240.8.0/24 1814 -207.240.12.0/24 1811 -207.240.20.0/22 1815 -207.240.83.0/24 1815 -207.240.120.0/22 1815 -207.240.128.0/19 1814 -207.240.160.0/22 1811 -207.240.248.0/23 1813 -207.240.250.0/24 1813 -207.240.252.0/23 1813 -207.241.0.0/17 2914 -207.241.128.0/20 26271 -207.241.152.0/23 22795 -207.241.160.0/20 11127 -207.241.176.0/22 11127 -207.241.180.0/23 11300 -207.241.182.0/23 11127 -207.241.184.0/21 11127 -207.241.196.0/23 397300 -207.241.198.0/24 397300 -207.241.224.0/20 7941 -207.241.240.0/20 19963 -207.242.0.0/24 7018 -207.242.1.0/24 63466 -207.242.2.0/23 7018 -207.242.4.0/22 7018 -207.242.8.0/21 7018 -207.242.16.0/20 7018 -207.242.32.0/21 7018 -207.242.40.0/22 7018 -207.242.44.0/24 20040 -207.242.45.0/24 7018 -207.242.46.0/23 7018 -207.242.48.0/20 7018 -207.242.64.0/20 7018 -207.242.80.0/22 7018 -207.242.84.0/23 7018 -207.242.86.0/24 395598 -207.242.87.0/24 7018 -207.242.88.0/21 7018 -207.242.96.0/21 7018 -207.242.104.0/23 7018 -207.242.106.0/24 7018 -207.242.107.0/24 393973 -207.242.108.0/22 7018 -207.242.112.0/21 7018 -207.242.120.0/22 7018 -207.242.124.0/23 7018 -207.242.126.0/24 7018 -207.242.127.0/24 1642 -207.242.128.0/18 7018 -207.242.192.0/21 7018 -207.242.200.0/24 7018 -207.242.201.0/24 393226 -207.242.202.0/24 7018 -207.242.203.0/24 2386 -207.242.204.0/22 7018 -207.242.208.0/20 7018 -207.242.224.0/20 7018 -207.242.240.0/22 7018 -207.242.244.0/24 13505 -207.242.245.0/24 7018 -207.242.246.0/23 7018 -207.242.248.0/21 7018 -207.243.0.0/22 7018 -207.243.4.0/24 7018 -207.243.5.0/24 17903 -207.243.6.0/23 7018 -207.243.8.0/21 7018 -207.243.16.0/22 7018 -207.243.20.0/23 7018 -207.243.22.0/24 22518 -207.243.23.0/24 7018 -207.243.24.0/21 7018 -207.243.32.0/19 7018 -207.243.64.0/22 2386 -207.243.68.0/22 7018 -207.243.72.0/21 7018 -207.243.80.0/20 7018 -207.243.96.0/20 7018 -207.243.112.0/21 7018 -207.243.120.0/22 17064 -207.243.124.0/22 7018 -207.243.128.0/20 7018 -207.243.144.0/21 7018 -207.243.152.0/22 7018 -207.243.156.0/23 7018 -207.243.158.0/24 30509 -207.243.159.0/24 7018 -207.243.160.0/22 7018 -207.243.164.0/23 7018 -207.243.166.0/24 7018 -207.243.167.0/24 54809 -207.243.168.0/21 7018 -207.243.176.0/21 7018 -207.243.184.0/22 7018 -207.243.188.0/22 393359 -207.243.192.0/24 7018 -207.243.193.0/24 31949 -207.243.194.0/23 7018 -207.243.196.0/22 7018 -207.243.200.0/21 7018 -207.243.208.0/20 7018 -207.243.224.0/20 7018 -207.243.240.0/22 7018 -207.243.244.0/24 7018 -207.243.245.0/24 7903 -207.243.246.0/23 7018 -207.243.248.0/21 7018 -207.244.64.0/18 30633 -207.244.128.0/21 7029 -207.244.136.0/22 63298 -207.244.140.0/22 40029 -207.244.144.0/20 23033 -207.244.160.0/19 11776 -207.244.192.0/18 6428 -207.245.0.0/21 15290 -207.245.8.0/22 15290 -207.245.12.0/24 15290 -207.245.13.0/24 19086 -207.245.14.0/23 15290 -207.245.16.0/20 15290 -207.245.32.0/20 15290 -207.245.48.0/21 15290 -207.245.56.0/23 15290 -207.245.58.0/24 22623 -207.245.59.0/24 15290 -207.245.60.0/22 15290 -207.245.64.0/19 6372 -207.245.96.0/22 6372 -207.245.100.0/23 6372 -207.245.102.0/24 6372 -207.245.103.0/24 1620 -207.245.104.0/24 6372 -207.245.105.0/24 26142 -207.245.106.0/23 6372 -207.245.108.0/24 6372 -207.245.109.0/24 395684 -207.245.110.0/23 6372 -207.245.112.0/22 6372 -207.245.116.0/23 6372 -207.245.118.0/24 6372 -207.245.119.0/24 394465 -207.245.120.0/21 6372 -207.245.136.0/24 18803 -207.245.137.0/24 6606 -207.245.144.0/22 6606 -207.245.148.0/23 6606 -207.245.152.0/21 18803 -207.245.160.0/19 21617 -207.245.192.0/18 15290 -207.246.0.0/19 21582 -207.246.59.0/24 2900 -207.246.64.0/18 20473 -207.246.128.0/19 11608 -207.246.160.0/19 22887 -207.246.192.0/20 27630 -207.246.210.0/24 19796 -207.246.215.0/24 19796 -207.246.216.0/24 19796 -207.246.218.0/23 19796 -207.246.220.0/24 19796 -207.246.222.0/24 19796 -207.246.225.0/24 11769 -207.246.226.0/23 11769 -207.246.228.0/22 11769 -207.246.232.0/21 11769 -207.246.240.0/21 53824 -207.246.248.0/21 32244 -207.247.0.0/21 701 -207.247.8.0/22 701 -207.247.12.0/24 701 -207.247.13.0/24 26966 -207.247.14.0/23 701 -207.247.16.0/20 701 -207.247.32.0/19 701 -207.247.64.0/19 701 -207.247.96.0/22 701 -207.247.100.0/24 701 -207.247.101.0/24 22762 -207.247.102.0/23 701 -207.247.104.0/21 701 -207.247.112.0/20 701 -207.247.128.0/17 701 -207.248.32.0/19 11888 -207.248.66.0/23 263239 -207.248.68.0/23 397213 -207.248.74.0/23 61486 -207.248.76.0/23 262174 -207.248.80.0/24 265521 -207.248.81.0/24 264782 -207.248.85.0/24 52506 -207.248.86.0/24 264766 -207.248.87.0/24 265479 -207.248.92.0/22 28100 -207.248.96.0/22 14860 -207.248.100.0/24 265554 -207.248.101.0/24 263247 -207.248.102.0/24 264775 -207.248.103.0/24 265511 -207.248.104.0/23 26618 -207.248.108.0/22 263127 -207.248.112.0/23 263127 -207.248.114.0/23 23031 -207.248.116.0/23 8151 -207.248.118.0/23 22884 -207.248.121.0/24 21575 -207.248.123.0/24 21575 -207.248.124.0/22 52436 -207.248.128.0/19 8151 -207.248.160.0/19 13579 -207.248.192.0/19 27901 -207.248.224.0/20 11172 -207.248.240.0/21 11172 -207.248.248.0/22 11172 -207.248.252.0/23 11172 -207.248.254.0/24 28494 -207.248.255.0/24 11172 -207.249.0.0/19 13579 -207.249.32.0/19 6342 -207.249.64.0/19 8007 -207.249.96.0/19 13579 -207.249.128.0/18 6503 -207.249.192.0/23 13579 -207.249.224.0/19 2549 -207.250.0.0/21 3549 -207.250.8.0/23 3549 -207.250.10.0/24 3549 -207.250.11.0/24 16890 -207.250.12.0/22 3549 -207.250.16.0/24 7332 -207.250.17.0/24 3549 -207.250.18.0/23 3549 -207.250.20.0/23 3549 -207.250.22.0/24 29892 -207.250.23.0/24 3549 -207.250.24.0/21 3549 -207.250.32.0/20 3549 -207.250.48.0/24 3549 -207.250.49.0/24 30162 -207.250.50.0/23 3549 -207.250.52.0/22 3549 -207.250.56.0/23 3549 -207.250.58.0/24 3549 -207.250.59.0/24 30162 -207.250.60.0/22 3549 -207.250.64.0/22 3549 -207.250.68.0/24 22606 -207.250.69.0/24 20114 -207.250.70.0/23 3549 -207.250.72.0/24 3549 -207.250.73.0/24 54796 -207.250.74.0/23 3549 -207.250.76.0/22 3549 -207.250.80.0/22 3549 -207.250.84.0/23 3549 -207.250.86.0/24 3549 -207.250.87.0/24 1444 -207.250.88.0/22 3549 -207.250.92.0/23 3549 -207.250.94.0/24 3549 -207.250.95.0/24 33395 -207.250.96.0/23 3549 -207.250.98.0/24 3549 -207.250.99.0/24 13492 -207.250.100.0/22 3549 -207.250.104.0/23 3549 -207.250.106.0/24 62852 -207.250.107.0/24 3549 -207.250.108.0/23 3549 -207.250.110.0/23 21554 -207.250.112.0/23 3549 -207.250.114.0/24 396053 -207.250.115.0/24 3549 -207.250.116.0/22 3549 -207.250.120.0/22 3549 -207.250.124.0/24 3356 -207.250.125.0/24 3549 -207.250.126.0/23 3549 -207.250.128.0/21 3549 -207.250.136.0/22 3549 -207.250.140.0/23 3549 -207.250.142.0/24 3549 -207.250.143.0/24 27356 -207.250.144.0/21 3549 -207.250.152.0/22 3549 -207.250.156.0/24 3549 -207.250.157.0/24 30305 -207.250.158.0/24 26729 -207.250.159.0/24 3549 -207.250.160.0/21 3549 -207.250.168.0/22 3549 -207.250.172.0/23 30059 -207.250.174.0/23 3549 -207.250.176.0/22 3549 -207.250.180.0/23 3549 -207.250.182.0/24 3549 -207.250.183.0/24 36395 -207.250.184.0/22 3549 -207.250.188.0/24 394338 -207.250.189.0/24 3549 -207.250.190.0/23 3549 -207.250.192.0/22 10377 -207.250.196.0/24 30162 -207.250.197.0/24 19266 -207.250.198.0/23 3549 -207.250.200.0/23 3549 -207.250.202.0/24 40154 -207.250.203.0/24 3549 -207.250.204.0/23 3549 -207.250.206.0/24 3549 -207.250.207.0/24 40413 -207.250.208.0/23 27195 -207.250.210.0/23 3549 -207.250.212.0/22 3549 -207.250.216.0/21 3549 -207.250.224.0/24 3549 -207.250.225.0/24 18434 -207.250.226.0/24 3549 -207.250.227.0/24 18434 -207.250.228.0/23 3549 -207.250.230.0/24 3549 -207.250.231.0/24 11141 -207.250.232.0/24 3549 -207.250.233.0/24 26729 -207.250.234.0/23 3549 -207.250.236.0/22 3549 -207.250.240.0/22 3549 -207.250.244.0/24 15085 -207.250.245.0/24 3549 -207.250.246.0/23 3549 -207.250.248.0/23 3549 -207.250.250.0/24 26729 -207.250.251.0/24 27443 -207.250.252.0/23 26729 -207.250.254.0/23 3549 -207.251.0.0/19 4565 -207.251.32.0/21 20161 -207.251.40.0/24 20161 -207.251.41.0/24 32710 -207.251.42.0/23 20161 -207.251.44.0/22 20161 -207.251.48.0/20 11996 -207.251.64.0/19 8002 -207.251.96.0/23 53316 -207.251.98.0/23 8002 -207.251.100.0/22 8002 -207.251.104.0/23 8002 -207.251.106.0/24 26535 -207.251.107.0/24 8002 -207.251.108.0/22 8002 -207.251.112.0/20 8002 -207.251.128.0/18 701 -207.251.192.0/19 7321 -207.251.224.0/21 11351 -207.251.232.0/22 11351 -207.251.236.0/23 11351 -207.251.238.0/23 12271 -207.252.0.0/22 10844 -207.252.4.0/22 7018 -207.252.8.0/21 7018 -207.252.16.0/20 7018 -207.252.32.0/19 7018 -207.252.64.0/21 7018 -207.252.72.0/21 10844 -207.252.80.0/20 7018 -207.252.96.0/20 7018 -207.252.112.0/21 7018 -207.252.120.0/22 7018 -207.252.124.0/23 7018 -207.252.126.0/24 7018 -207.252.127.0/24 8119 -207.252.128.0/20 7018 -207.252.144.0/21 7018 -207.252.152.0/23 7018 -207.252.154.0/23 7029 -207.252.156.0/22 7018 -207.252.160.0/21 7018 -207.252.168.0/22 7018 -207.252.172.0/24 7018 -207.252.173.0/24 40016 -207.252.174.0/23 7018 -207.252.176.0/20 7018 -207.252.192.0/18 7018 -207.253.0.0/22 5769 -207.253.4.0/23 5769 -207.253.6.0/24 22476 -207.253.7.0/24 5769 -207.253.8.0/23 5769 -207.253.10.0/24 46618 -207.253.11.0/24 5769 -207.253.12.0/24 395075 -207.253.13.0/24 5769 -207.253.14.0/23 5769 -207.253.16.0/22 5769 -207.253.20.0/24 5769 -207.253.21.0/24 22476 -207.253.22.0/23 5769 -207.253.24.0/24 5769 -207.253.25.0/24 46618 -207.253.26.0/24 30336 -207.253.27.0/24 395075 -207.253.28.0/24 5769 -207.253.29.0/24 46618 -207.253.30.0/23 5769 -207.253.32.0/23 5769 -207.253.34.0/24 5769 -207.253.35.0/24 46618 -207.253.36.0/24 5769 -207.253.37.0/24 30336 -207.253.38.0/24 5769 -207.253.39.0/24 397033 -207.253.40.0/23 5769 -207.253.42.0/24 5769 -207.253.43.0/24 46618 -207.253.44.0/24 46618 -207.253.45.0/24 5769 -207.253.46.0/24 30466 -207.253.47.0/24 5769 -207.253.48.0/23 5769 -207.253.50.0/24 30466 -207.253.51.0/24 5769 -207.253.52.0/24 30466 -207.253.53.0/24 5769 -207.253.54.0/23 5769 -207.253.56.0/22 5769 -207.253.60.0/22 395075 -207.253.64.0/24 395075 -207.253.65.0/24 5769 -207.253.66.0/24 5769 -207.253.67.0/24 395075 -207.253.68.0/24 5769 -207.253.69.0/24 30466 -207.253.70.0/24 395075 -207.253.71.0/24 5769 -207.253.72.0/24 5769 -207.253.73.0/24 395075 -207.253.74.0/23 5769 -207.253.76.0/24 5769 -207.253.77.0/24 30466 -207.253.78.0/23 5769 -207.253.80.0/22 5769 -207.253.84.0/24 395075 -207.253.85.0/24 5769 -207.253.86.0/23 5769 -207.253.88.0/23 5769 -207.253.90.0/23 30336 -207.253.92.0/23 395075 -207.253.94.0/23 5769 -207.253.96.0/23 5769 -207.253.98.0/24 30466 -207.253.99.0/24 5769 -207.253.100.0/23 33329 -207.253.102.0/23 5769 -207.253.104.0/23 46618 -207.253.106.0/24 5769 -207.253.107.0/24 12132 -207.253.108.0/24 5769 -207.253.109.0/24 30466 -207.253.110.0/24 46618 -207.253.111.0/24 5769 -207.253.112.0/24 395075 -207.253.113.0/24 5769 -207.253.114.0/23 5769 -207.253.116.0/23 46618 -207.253.118.0/23 395075 -207.253.120.0/22 5769 -207.253.124.0/23 5769 -207.253.126.0/24 14659 -207.253.127.0/24 5769 -207.253.128.0/23 12132 -207.253.130.0/24 5769 -207.253.131.0/24 12132 -207.253.132.0/22 5769 -207.253.136.0/23 5769 -207.253.138.0/23 46618 -207.253.140.0/22 5769 -207.253.144.0/21 395075 -207.253.152.0/23 395075 -207.253.154.0/23 5769 -207.253.156.0/22 5769 -207.253.160.0/20 395075 -207.253.176.0/24 5769 -207.253.177.0/24 30336 -207.253.178.0/23 5769 -207.253.180.0/23 46618 -207.253.182.0/23 395075 -207.253.184.0/23 395075 -207.253.186.0/24 30336 -207.253.187.0/24 395075 -207.253.188.0/22 5769 -207.253.192.0/23 30336 -207.253.194.0/24 30466 -207.253.195.0/24 5769 -207.253.196.0/22 5769 -207.253.200.0/21 5769 -207.253.208.0/20 5769 -207.253.224.0/24 46618 -207.253.225.0/24 5769 -207.253.226.0/24 5769 -207.253.227.0/24 14659 -207.253.228.0/22 5769 -207.253.232.0/23 46618 -207.253.234.0/23 5769 -207.253.236.0/23 395075 -207.253.238.0/23 5769 -207.253.240.0/23 5769 -207.253.242.0/24 5769 -207.253.243.0/24 46618 -207.253.244.0/24 5769 -207.253.245.0/24 46618 -207.253.246.0/24 30466 -207.253.247.0/24 5769 -207.253.248.0/22 5769 -207.253.252.0/23 5769 -207.253.254.0/24 397033 -207.253.255.0/24 5769 -207.254.0.0/20 395336 -207.254.16.0/22 395336 -207.254.22.0/23 397114 -207.254.24.0/21 30377 -207.254.32.0/19 395337 -207.254.64.0/22 395337 -207.254.68.0/22 30377 -207.254.72.0/22 395337 -207.254.76.0/23 395336 -207.254.80.0/24 36086 -207.254.84.0/22 22626 -207.254.88.0/21 22626 -207.254.96.0/23 22626 -207.254.98.0/23 13703 -207.254.128.0/20 30689 -207.254.160.0/20 16717 -207.254.176.0/22 19174 -207.254.180.0/23 19174 -207.254.182.0/24 26484 -207.254.183.0/24 19174 -207.254.184.0/21 19174 -207.254.192.0/20 27005 -207.254.208.0/20 7349 -207.254.224.0/23 19108 -207.254.226.0/24 21615 -207.254.227.0/24 19108 -207.254.228.0/22 19108 -207.254.232.0/21 19108 -207.254.245.0/24 19108 -207.254.246.0/23 19108 -207.254.248.0/22 19108 -207.254.253.0/24 19108 -207.254.254.0/24 21615 -207.255.0.0/17 11776 -207.255.128.0/19 11776 -207.255.160.0/20 11776 -207.255.176.0/24 32939 -207.255.177.0/24 11776 -207.255.178.0/23 11776 -207.255.180.0/22 11776 -207.255.184.0/21 11776 -207.255.192.0/19 11776 -207.255.224.0/20 11776 -207.255.240.0/21 11776 -207.255.248.0/22 11776 -207.255.252.0/24 19765 -207.255.255.0/24 19765 -208.0.0.0/22 1239 -208.0.4.0/24 1789 -208.0.5.0/24 1239 -208.0.6.0/23 1239 -208.0.8.0/21 1239 -208.0.16.0/20 1239 -208.0.32.0/20 6372 -208.0.48.0/24 1239 -208.0.49.0/24 22109 -208.0.50.0/23 1239 -208.0.52.0/22 1239 -208.0.56.0/21 1239 -208.0.64.0/20 1239 -208.0.80.0/20 6372 -208.0.96.0/21 14813 -208.0.104.0/21 1239 -208.0.112.0/21 1239 -208.0.120.0/24 1239 -208.0.121.0/24 22495 -208.0.122.0/23 1239 -208.0.124.0/22 1239 -208.0.128.0/19 1239 -208.0.160.0/20 1239 -208.0.176.0/21 21547 -208.0.184.0/21 1239 -208.0.192.0/20 6062 -208.0.208.0/22 26759 -208.0.212.0/23 26759 -208.0.214.0/23 1239 -208.0.216.0/21 1239 -208.0.224.0/24 11139 -208.0.225.0/24 15344 -208.0.226.0/24 15344 -208.0.227.0/24 11139 -208.0.228.0/23 11139 -208.0.230.0/24 11139 -208.0.231.0/24 15344 -208.0.232.0/21 1239 -208.0.240.0/20 1239 -208.1.0.0/22 1239 -208.1.4.0/23 1239 -208.1.6.0/24 27230 -208.1.7.0/24 1239 -208.1.8.0/21 1239 -208.1.16.0/20 1239 -208.1.32.0/22 1239 -208.1.36.0/23 1239 -208.1.38.0/23 18632 -208.1.40.0/24 7733 -208.1.41.0/24 1239 -208.1.42.0/23 1239 -208.1.44.0/22 1239 -208.1.48.0/21 1239 -208.1.56.0/22 1239 -208.1.60.0/22 16391 -208.1.64.0/24 13624 -208.1.65.0/24 1239 -208.1.66.0/23 1239 -208.1.68.0/22 1239 -208.1.72.0/22 1239 -208.1.76.0/23 1239 -208.1.78.0/24 5778 -208.1.79.0/24 1239 -208.1.80.0/20 1239 -208.1.96.0/22 1239 -208.1.100.0/23 1239 -208.1.102.0/24 1239 -208.1.103.0/24 6647 -208.1.104.0/21 1239 -208.1.112.0/20 1239 -208.1.128.0/21 1239 -208.1.136.0/23 1239 -208.1.138.0/24 1239 -208.1.139.0/24 22089 -208.1.140.0/22 17054 -208.1.144.0/20 1239 -208.1.160.0/20 1906 -208.1.176.0/22 1239 -208.1.180.0/24 1790 -208.1.181.0/24 1239 -208.1.182.0/23 1239 -208.1.184.0/21 1239 -208.1.192.0/20 1239 -208.1.208.0/21 1239 -208.1.216.0/24 1239 -208.1.217.0/24 5778 -208.1.218.0/23 1239 -208.1.220.0/22 1239 -208.1.224.0/24 5778 -208.1.225.0/24 1239 -208.1.226.0/23 1239 -208.1.228.0/22 1239 -208.1.232.0/24 5778 -208.1.233.0/24 1239 -208.1.234.0/23 1239 -208.1.236.0/22 1239 -208.1.240.0/20 1239 -208.2.0.0/17 1239 -208.2.128.0/21 1239 -208.2.136.0/22 1239 -208.2.140.0/24 6939 -208.2.141.0/24 1239 -208.2.142.0/23 1239 -208.2.144.0/23 1239 -208.2.146.0/24 13776 -208.2.147.0/24 1239 -208.2.148.0/22 1239 -208.2.152.0/21 1239 -208.2.160.0/22 1239 -208.2.164.0/24 11539 -208.2.165.0/24 1239 -208.2.166.0/23 1239 -208.2.168.0/21 11398 -208.2.176.0/21 1239 -208.2.184.0/22 1239 -208.2.188.0/23 10333 -208.2.190.0/23 1239 -208.2.192.0/20 1239 -208.2.208.0/21 209 -208.2.216.0/21 1239 -208.2.224.0/19 1239 -208.3.0.0/18 1239 -208.3.64.0/20 1239 -208.3.80.0/21 1239 -208.3.88.0/23 1239 -208.3.90.0/23 15265 -208.3.92.0/22 1239 -208.3.96.0/22 1239 -208.3.100.0/23 13866 -208.3.102.0/23 1239 -208.3.104.0/21 1239 -208.3.112.0/20 1239 -208.3.128.0/18 1239 -208.3.192.0/23 1239 -208.3.194.0/23 18632 -208.3.196.0/22 1239 -208.3.200.0/21 1239 -208.3.208.0/22 1239 -208.3.212.0/24 8119 -208.3.213.0/24 1239 -208.3.214.0/23 1239 -208.3.216.0/23 1239 -208.3.218.0/24 31920 -208.3.219.0/24 1239 -208.3.220.0/22 1239 -208.3.224.0/20 1239 -208.3.240.0/21 21547 -208.3.248.0/21 1239 -208.4.0.0/21 1239 -208.4.8.0/22 1239 -208.4.12.0/23 1239 -208.4.14.0/24 31755 -208.4.15.0/24 1239 -208.4.16.0/20 1239 -208.4.32.0/20 1239 -208.4.48.0/21 1239 -208.4.56.0/22 1239 -208.4.60.0/24 1239 -208.4.61.0/24 23172 -208.4.62.0/24 1239 -208.4.63.0/24 23172 -208.4.64.0/20 1239 -208.4.80.0/21 15142 -208.4.88.0/21 1239 -208.4.96.0/19 1239 -208.4.128.0/20 1239 -208.4.144.0/21 1239 -208.4.152.0/23 1239 -208.4.154.0/24 1239 -208.4.155.0/24 54246 -208.4.156.0/22 1239 -208.4.160.0/19 1239 -208.4.192.0/20 1239 -208.4.208.0/20 209 -208.4.224.0/19 1239 -208.5.0.0/18 1239 -208.5.64.0/21 1239 -208.5.72.0/22 1239 -208.5.76.0/24 19414 -208.5.77.0/24 1239 -208.5.78.0/23 1239 -208.5.80.0/20 1239 -208.5.96.0/20 1239 -208.5.112.0/21 1239 -208.5.120.0/22 1239 -208.5.124.0/24 1790 -208.5.125.0/24 1239 -208.5.126.0/23 1239 -208.5.128.0/18 1239 -208.5.192.0/20 1239 -208.5.208.0/21 1239 -208.5.216.0/22 1239 -208.5.220.0/24 25762 -208.5.221.0/24 1239 -208.5.222.0/23 1239 -208.5.224.0/19 1239 -208.6.0.0/19 1239 -208.6.32.0/23 5778 -208.6.34.0/24 5778 -208.6.35.0/24 209 -208.6.36.0/24 209 -208.6.37.0/24 5778 -208.6.38.0/23 5778 -208.6.40.0/21 5778 -208.6.48.0/22 209 -208.6.52.0/22 5778 -208.6.56.0/21 5778 -208.6.64.0/20 1239 -208.6.80.0/20 5778 -208.6.96.0/19 1239 -208.6.128.0/19 1239 -208.6.160.0/22 1239 -208.6.164.0/23 1239 -208.6.166.0/24 1239 -208.6.167.0/24 3955 -208.6.168.0/23 1239 -208.6.170.0/23 22110 -208.6.172.0/22 1239 -208.6.176.0/20 1239 -208.6.192.0/19 1239 -208.6.224.0/21 1239 -208.6.232.0/22 18618 -208.6.236.0/24 7046 -208.6.237.0/24 1239 -208.6.238.0/23 1239 -208.6.240.0/20 1239 -208.7.0.0/20 1239 -208.7.16.0/20 6157 -208.7.32.0/22 1239 -208.7.36.0/23 1239 -208.7.38.0/24 7046 -208.7.39.0/24 13871 -208.7.40.0/21 1239 -208.7.48.0/20 1239 -208.7.64.0/20 1239 -208.7.80.0/21 1239 -208.7.88.0/23 1239 -208.7.90.0/24 1239 -208.7.91.0/24 1790 -208.7.92.0/22 1239 -208.7.96.0/19 1239 -208.7.128.0/21 1239 -208.7.136.0/24 396445 -208.7.137.0/24 1239 -208.7.138.0/23 1239 -208.7.140.0/22 1239 -208.7.144.0/20 1239 -208.7.160.0/19 1239 -208.7.192.0/20 1239 -208.7.208.0/22 5778 -208.7.212.0/23 209 -208.7.214.0/23 5778 -208.7.216.0/21 5778 -208.7.224.0/24 19643 -208.7.225.0/24 1239 -208.7.226.0/23 1239 -208.7.228.0/22 1239 -208.7.232.0/21 1239 -208.7.240.0/20 1239 -208.8.0.0/19 1239 -208.8.32.0/22 1239 -208.8.36.0/23 1239 -208.8.38.0/24 394145 -208.8.39.0/24 1239 -208.8.40.0/21 1239 -208.8.48.0/24 1239 -208.8.49.0/24 22762 -208.8.50.0/23 1239 -208.8.52.0/22 1239 -208.8.56.0/21 1239 -208.8.64.0/19 1239 -208.8.96.0/21 1239 -208.8.104.0/22 1239 -208.8.108.0/23 1239 -208.8.110.0/23 30320 -208.8.112.0/20 1239 -208.8.128.0/19 1239 -208.8.160.0/22 13871 -208.8.164.0/24 1239 -208.8.165.0/24 394945 -208.8.166.0/23 1239 -208.8.168.0/21 1239 -208.8.176.0/20 1239 -208.8.192.0/18 1239 -208.9.0.0/22 1239 -208.9.4.0/23 1239 -208.9.6.0/24 17113 -208.9.7.0/24 1239 -208.9.8.0/21 1239 -208.9.16.0/20 1239 -208.9.32.0/19 1239 -208.9.64.0/18 1239 -208.9.128.0/17 1239 -208.10.0.0/20 1239 -208.10.16.0/21 1239 -208.10.24.0/24 1239 -208.10.25.0/24 19055 -208.10.26.0/23 1239 -208.10.28.0/24 1239 -208.10.29.0/24 14961 -208.10.30.0/23 1239 -208.10.32.0/20 1239 -208.10.48.0/21 1239 -208.10.56.0/23 1239 -208.10.58.0/24 1239 -208.10.59.0/24 6157 -208.10.60.0/22 1239 -208.10.64.0/19 6157 -208.10.96.0/20 6157 -208.10.112.0/20 1239 -208.10.128.0/21 1239 -208.10.136.0/23 1239 -208.10.138.0/24 1239 -208.10.139.0/24 397361 -208.10.140.0/22 33154 -208.10.144.0/24 1239 -208.10.145.0/24 18618 -208.10.146.0/23 1239 -208.10.148.0/22 1239 -208.10.152.0/21 1239 -208.10.160.0/19 1239 -208.10.192.0/22 1239 -208.10.196.0/24 1239 -208.10.197.0/24 17032 -208.10.198.0/23 1239 -208.10.200.0/21 1239 -208.10.208.0/20 1239 -208.10.224.0/19 1239 -208.11.0.0/22 5778 -208.11.4.0/24 209 -208.11.5.0/24 5778 -208.11.6.0/23 5778 -208.11.8.0/22 1239 -208.11.12.0/23 1239 -208.11.14.0/23 36758 -208.11.16.0/23 5778 -208.11.18.0/24 209 -208.11.19.0/24 5778 -208.11.20.0/22 5778 -208.11.24.0/21 5778 -208.11.32.0/19 1239 -208.11.64.0/21 1239 -208.11.72.0/22 1239 -208.11.76.0/23 1239 -208.11.78.0/24 26556 -208.11.79.0/24 1239 -208.11.80.0/20 1239 -208.11.96.0/20 1239 -208.11.112.0/22 1239 -208.11.116.0/22 18618 -208.11.120.0/21 1239 -208.11.128.0/21 1239 -208.11.136.0/22 1239 -208.11.140.0/24 1239 -208.11.141.0/24 6318 -208.11.142.0/23 1239 -208.11.144.0/21 1239 -208.11.152.0/24 1789 -208.11.153.0/24 1239 -208.11.154.0/23 1239 -208.11.156.0/22 1239 -208.11.160.0/21 5778 -208.11.168.0/24 209 -208.11.169.0/24 5778 -208.11.170.0/23 5778 -208.11.172.0/22 5778 -208.11.176.0/20 5778 -208.11.192.0/20 1239 -208.11.208.0/23 1239 -208.11.210.0/24 1790 -208.11.211.0/24 1239 -208.11.212.0/22 1239 -208.11.216.0/21 1239 -208.11.224.0/19 1239 -208.12.0.0/18 1239 -208.12.64.0/19 40529 -208.12.96.0/20 1239 -208.12.112.0/21 1239 -208.12.120.0/23 1906 -208.12.122.0/24 1906 -208.12.123.0/24 1239 -208.12.124.0/22 1239 -208.12.128.0/19 1239 -208.12.160.0/20 1239 -208.12.176.0/21 1239 -208.12.184.0/24 6389 -208.12.185.0/24 7029 -208.12.186.0/23 7029 -208.12.188.0/22 7029 -208.12.192.0/18 1239 -208.13.0.0/18 1239 -208.13.64.0/20 1239 -208.13.80.0/21 1239 -208.13.88.0/23 1239 -208.13.90.0/24 1239 -208.13.91.0/24 26556 -208.13.92.0/22 1239 -208.13.96.0/19 1239 -208.13.128.0/23 11398 -208.13.130.0/24 11398 -208.13.131.0/24 209 -208.13.132.0/23 209 -208.13.134.0/24 209 -208.13.135.0/24 11398 -208.13.136.0/23 209 -208.13.138.0/24 209 -208.13.139.0/24 11398 -208.13.140.0/24 209 -208.13.141.0/24 11398 -208.13.142.0/24 209 -208.13.143.0/24 22561 -208.13.144.0/21 1239 -208.13.152.0/23 1239 -208.13.154.0/24 1239 -208.13.155.0/24 396445 -208.13.156.0/22 1239 -208.13.160.0/22 1239 -208.13.164.0/23 6988 -208.13.166.0/24 6988 -208.13.167.0/24 1239 -208.13.168.0/23 1239 -208.13.170.0/24 6988 -208.13.171.0/24 1239 -208.13.172.0/22 1239 -208.13.176.0/20 1239 -208.13.192.0/19 1239 -208.13.224.0/20 1239 -208.13.240.0/20 3931 -208.14.0.0/20 1239 -208.14.16.0/21 1239 -208.14.24.0/21 20042 -208.14.32.0/19 1239 -208.14.64.0/18 1239 -208.14.128.0/20 1239 -208.14.144.0/23 14921 -208.14.146.0/24 14921 -208.14.147.0/24 11404 -208.14.148.0/22 14921 -208.14.152.0/21 14921 -208.14.160.0/20 1239 -208.14.176.0/22 1239 -208.14.180.0/24 11924 -208.14.181.0/24 1239 -208.14.182.0/24 12217 -208.14.183.0/24 1239 -208.14.184.0/21 1239 -208.14.192.0/20 1239 -208.14.208.0/21 1239 -208.14.216.0/22 1239 -208.14.220.0/23 1239 -208.14.222.0/23 17046 -208.14.224.0/19 1239 -208.15.0.0/20 1239 -208.15.16.0/21 1239 -208.15.24.0/21 29968 -208.15.32.0/20 1239 -208.15.48.0/21 1239 -208.15.56.0/21 13415 -208.15.64.0/20 1239 -208.15.80.0/21 1239 -208.15.88.0/23 1239 -208.15.90.0/23 62802 -208.15.92.0/22 1239 -208.15.96.0/19 1239 -208.15.128.0/19 1239 -208.15.160.0/22 1239 -208.15.164.0/24 1239 -208.15.165.0/24 31920 -208.15.166.0/23 1239 -208.15.168.0/21 1239 -208.15.176.0/20 1239 -208.15.192.0/19 1239 -208.15.224.0/22 1239 -208.15.228.0/23 1239 -208.15.230.0/24 9751 -208.15.231.0/24 1239 -208.15.232.0/21 1239 -208.15.240.0/20 1239 -208.16.0.0/20 1239 -208.16.16.0/22 1239 -208.16.20.0/24 397924 -208.16.21.0/24 1239 -208.16.22.0/23 1239 -208.16.24.0/21 1239 -208.16.32.0/19 1239 -208.16.64.0/19 1239 -208.16.96.0/23 1239 -208.16.98.0/24 1239 -208.16.99.0/24 35984 -208.16.100.0/22 1239 -208.16.104.0/21 1239 -208.16.112.0/20 1239 -208.16.128.0/20 1239 -208.16.144.0/21 1239 -208.16.152.0/22 1239 -208.16.156.0/23 1239 -208.16.158.0/24 1239 -208.16.159.0/24 11347 -208.16.160.0/20 1239 -208.16.176.0/21 1239 -208.16.184.0/24 16567 -208.16.185.0/24 1239 -208.16.186.0/23 1239 -208.16.188.0/22 1239 -208.16.192.0/20 1239 -208.16.208.0/21 7381 -208.16.216.0/21 1239 -208.16.224.0/19 1239 -208.17.0.0/20 1239 -208.17.16.0/21 1239 -208.17.24.0/23 1239 -208.17.26.0/23 21547 -208.17.28.0/22 1239 -208.17.32.0/19 1239 -208.17.64.0/23 5778 -208.17.66.0/23 209 -208.17.68.0/22 209 -208.17.72.0/24 5778 -208.17.73.0/24 209 -208.17.74.0/23 6222 -208.17.76.0/23 209 -208.17.78.0/24 209 -208.17.79.0/24 11398 -208.17.80.0/21 19893 -208.17.88.0/23 19893 -208.17.90.0/24 19893 -208.17.91.0/24 27615 -208.17.92.0/22 19893 -208.17.96.0/20 1239 -208.17.112.0/22 1239 -208.17.116.0/24 1239 -208.17.117.0/24 30021 -208.17.118.0/24 29733 -208.17.119.0/24 1239 -208.17.120.0/21 1239 -208.17.128.0/18 1239 -208.17.192.0/24 396445 -208.17.193.0/24 1239 -208.17.194.0/24 1239 -208.17.195.0/24 6103 -208.17.196.0/22 1239 -208.17.200.0/21 1239 -208.17.208.0/20 1239 -208.17.224.0/19 1239 -208.18.0.0/21 1239 -208.18.8.0/22 1239 -208.18.12.0/23 1239 -208.18.14.0/24 1239 -208.18.15.0/24 27195 -208.18.16.0/21 1239 -208.18.24.0/21 6157 -208.18.32.0/19 1239 -208.18.64.0/20 1239 -208.18.80.0/22 1239 -208.18.84.0/24 26476 -208.18.85.0/24 1239 -208.18.86.0/23 1239 -208.18.88.0/21 1239 -208.18.96.0/19 1239 -208.18.128.0/17 1239 -208.19.0.0/21 1239 -208.19.8.0/22 1239 -208.19.12.0/22 13866 -208.19.16.0/20 1239 -208.19.32.0/20 1239 -208.19.48.0/20 40523 -208.19.64.0/21 1239 -208.19.72.0/22 1239 -208.19.76.0/24 1239 -208.19.77.0/24 26556 -208.19.78.0/23 1239 -208.19.80.0/21 1239 -208.19.88.0/24 1239 -208.19.89.0/24 40274 -208.19.90.0/23 1239 -208.19.92.0/22 1239 -208.19.96.0/22 1239 -208.19.100.0/23 396184 -208.19.102.0/24 16799 -208.19.103.0/24 1239 -208.19.104.0/24 1239 -208.19.105.0/24 19242 -208.19.106.0/23 1239 -208.19.108.0/22 1239 -208.19.112.0/20 1239 -208.19.128.0/18 1239 -208.19.192.0/20 1239 -208.19.208.0/22 1239 -208.19.212.0/24 26556 -208.19.213.0/24 1239 -208.19.214.0/23 1239 -208.19.216.0/21 1239 -208.19.224.0/20 6428 -208.19.240.0/20 1239 -208.20.0.0/19 1239 -208.20.32.0/23 29968 -208.20.34.0/24 29968 -208.20.35.0/24 1239 -208.20.36.0/22 1239 -208.20.40.0/21 1239 -208.20.48.0/20 1239 -208.20.64.0/19 3931 -208.20.96.0/21 3931 -208.20.104.0/21 13536 -208.20.112.0/20 3931 -208.20.128.0/20 1239 -208.20.144.0/21 1239 -208.20.152.0/22 1239 -208.20.156.0/24 1239 -208.20.157.0/24 26556 -208.20.158.0/23 1239 -208.20.160.0/22 1239 -208.20.164.0/23 1239 -208.20.166.0/24 27434 -208.20.167.0/24 1239 -208.20.168.0/21 1239 -208.20.176.0/20 1239 -208.20.192.0/21 1239 -208.20.200.0/23 1239 -208.20.202.0/23 16747 -208.20.204.0/22 1239 -208.20.208.0/21 1239 -208.20.216.0/23 1239 -208.20.218.0/24 14847 -208.20.219.0/24 1239 -208.20.220.0/24 1906 -208.20.221.0/24 1239 -208.20.222.0/23 1239 -208.20.224.0/19 1239 -208.21.0.0/21 1239 -208.21.8.0/23 1239 -208.21.10.0/24 1239 -208.21.11.0/24 25612 -208.21.12.0/24 1239 -208.21.13.0/24 11280 -208.21.14.0/23 1239 -208.21.16.0/20 1239 -208.21.32.0/22 1239 -208.21.36.0/24 1239 -208.21.37.0/24 54174 -208.21.38.0/23 1239 -208.21.40.0/23 1239 -208.21.42.0/24 1239 -208.21.43.0/24 11280 -208.21.44.0/22 1239 -208.21.48.0/20 1239 -208.21.64.0/18 1239 -208.21.128.0/19 7132 -208.21.160.0/21 1239 -208.21.168.0/24 1239 -208.21.169.0/24 18618 -208.21.170.0/24 31757 -208.21.171.0/24 1239 -208.21.172.0/22 1239 -208.21.176.0/21 1239 -208.21.184.0/23 1239 -208.21.186.0/23 26556 -208.21.188.0/22 1239 -208.21.192.0/18 1239 -208.22.0.0/19 1239 -208.22.32.0/20 1239 -208.22.48.0/21 1239 -208.22.56.0/23 10361 -208.22.58.0/23 1239 -208.22.60.0/22 1239 -208.22.64.0/21 1239 -208.22.72.0/22 1239 -208.22.76.0/22 16643 -208.22.80.0/20 1239 -208.22.96.0/23 1239 -208.22.98.0/24 1239 -208.22.99.0/24 12109 -208.22.100.0/22 1239 -208.22.104.0/22 1239 -208.22.108.0/24 27238 -208.22.109.0/24 1239 -208.22.110.0/23 1239 -208.22.112.0/20 1239 -208.22.128.0/19 1239 -208.22.160.0/24 1239 -208.22.161.0/24 3644 -208.22.162.0/23 1239 -208.22.164.0/22 1239 -208.22.168.0/21 1239 -208.22.176.0/24 1239 -208.22.177.0/24 14847 -208.22.178.0/23 1239 -208.22.180.0/22 1239 -208.22.184.0/21 1239 -208.22.192.0/18 1239 -208.23.0.0/18 1239 -208.23.64.0/21 1239 -208.23.72.0/22 1239 -208.23.76.0/24 1239 -208.23.77.0/24 394188 -208.23.78.0/23 1239 -208.23.80.0/20 1239 -208.23.96.0/19 1239 -208.23.128.0/21 1239 -208.23.136.0/24 46853 -208.23.137.0/24 1239 -208.23.138.0/23 1239 -208.23.140.0/22 1239 -208.23.144.0/20 1239 -208.23.160.0/19 1239 -208.23.192.0/20 1239 -208.23.208.0/22 1239 -208.23.212.0/24 200946 -208.23.213.0/24 1239 -208.23.214.0/23 1239 -208.23.216.0/21 1239 -208.23.224.0/23 1239 -208.23.226.0/24 1239 -208.23.227.0/24 22688 -208.23.228.0/22 1239 -208.23.232.0/21 1239 -208.23.240.0/20 1239 -208.24.0.0/21 1239 -208.24.8.0/22 1239 -208.24.12.0/23 1239 -208.24.14.0/24 18618 -208.24.15.0/24 1239 -208.24.16.0/21 1239 -208.24.24.0/22 1239 -208.24.28.0/24 1239 -208.24.29.0/24 36758 -208.24.30.0/23 1239 -208.24.32.0/19 1239 -208.24.64.0/19 1239 -208.24.96.0/20 1239 -208.24.112.0/23 1239 -208.24.114.0/24 1239 -208.24.115.0/24 18618 -208.24.116.0/23 18618 -208.24.118.0/23 1239 -208.24.120.0/22 1239 -208.24.124.0/24 1239 -208.24.125.0/24 29817 -208.24.126.0/23 1239 -208.24.128.0/18 1239 -208.24.192.0/22 1239 -208.24.196.0/23 1239 -208.24.198.0/24 8021 -208.24.199.0/24 1239 -208.24.200.0/21 1239 -208.24.208.0/20 1239 -208.24.224.0/22 1239 -208.24.228.0/23 1239 -208.24.230.0/24 1239 -208.24.231.0/24 13923 -208.24.232.0/21 1239 -208.24.240.0/21 1239 -208.24.248.0/22 1239 -208.24.252.0/24 209 -208.24.253.0/24 1239 -208.24.254.0/24 209 -208.24.255.0/24 1239 -208.25.0.0/21 1239 -208.25.8.0/22 1239 -208.25.12.0/24 22184 -208.25.13.0/24 1239 -208.25.14.0/23 1239 -208.25.16.0/20 1239 -208.25.32.0/19 1239 -208.25.64.0/19 1239 -208.25.96.0/23 22200 -208.25.98.0/23 1239 -208.25.100.0/23 1239 -208.25.102.0/24 1239 -208.25.103.0/24 18618 -208.25.104.0/21 1239 -208.25.112.0/20 1239 -208.25.128.0/18 1239 -208.25.192.0/19 1239 -208.25.224.0/20 1239 -208.25.240.0/20 5778 -208.26.0.0/21 1239 -208.26.8.0/21 6597 -208.26.16.0/20 1239 -208.26.32.0/19 1239 -208.26.64.0/19 16705 -208.26.96.0/21 1239 -208.26.104.0/23 1239 -208.26.106.0/24 1239 -208.26.107.0/24 11280 -208.26.108.0/22 1239 -208.26.112.0/20 1239 -208.26.128.0/17 1239 -208.27.0.0/19 5778 -208.27.32.0/19 1239 -208.27.64.0/19 1239 -208.27.96.0/21 1239 -208.27.104.0/24 1647 -208.27.105.0/24 1239 -208.27.106.0/23 1239 -208.27.108.0/22 1239 -208.27.112.0/20 5778 -208.27.128.0/24 36837 -208.27.129.0/24 1239 -208.27.130.0/23 1239 -208.27.132.0/24 17054 -208.27.133.0/24 1239 -208.27.134.0/23 1239 -208.27.136.0/21 1239 -208.27.144.0/20 1239 -208.27.160.0/20 1239 -208.27.176.0/22 1239 -208.27.180.0/23 1239 -208.27.182.0/23 14434 -208.27.184.0/22 14434 -208.27.188.0/22 1239 -208.27.192.0/19 1239 -208.27.224.0/20 1239 -208.27.240.0/21 1239 -208.27.248.0/24 53898 -208.27.249.0/24 1239 -208.27.250.0/23 1239 -208.27.252.0/22 1239 -208.28.0.0/18 1239 -208.28.64.0/20 1239 -208.28.80.0/21 1239 -208.28.88.0/22 32149 -208.28.92.0/22 1239 -208.28.96.0/20 1239 -208.28.112.0/22 1239 -208.28.116.0/24 1239 -208.28.117.0/24 31776 -208.28.118.0/23 1239 -208.28.120.0/21 1239 -208.28.128.0/22 1239 -208.28.132.0/24 1239 -208.28.133.0/24 23062 -208.28.134.0/23 1239 -208.28.136.0/21 1239 -208.28.144.0/23 1239 -208.28.146.0/24 32149 -208.28.147.0/24 1239 -208.28.148.0/24 32149 -208.28.149.0/24 1239 -208.28.150.0/23 1239 -208.28.152.0/21 1239 -208.28.160.0/20 1239 -208.28.176.0/24 19643 -208.28.177.0/24 1239 -208.28.178.0/23 1239 -208.28.180.0/23 1239 -208.28.182.0/23 21547 -208.28.184.0/21 1239 -208.28.192.0/22 21547 -208.28.196.0/22 1239 -208.28.200.0/21 1239 -208.28.208.0/20 1239 -208.28.224.0/19 1239 -208.29.0.0/22 1239 -208.29.4.0/24 1239 -208.29.5.0/24 7914 -208.29.6.0/24 19271 -208.29.7.0/24 1239 -208.29.8.0/21 1239 -208.29.16.0/20 1239 -208.29.32.0/19 1239 -208.29.64.0/20 1239 -208.29.80.0/22 1239 -208.29.84.0/23 1239 -208.29.86.0/24 1239 -208.29.87.0/24 396445 -208.29.88.0/21 1239 -208.29.96.0/19 1239 -208.29.128.0/19 1239 -208.29.160.0/23 4133 -208.29.162.0/24 1790 -208.29.163.0/24 14330 -208.29.164.0/22 1239 -208.29.168.0/21 1239 -208.29.176.0/21 1239 -208.29.184.0/22 26724 -208.29.188.0/22 1239 -208.29.192.0/19 1239 -208.29.224.0/21 11398 -208.29.232.0/21 1239 -208.29.240.0/21 1239 -208.29.248.0/23 1239 -208.29.250.0/23 11733 -208.29.252.0/22 1239 -208.30.0.0/21 1239 -208.30.8.0/22 1239 -208.30.12.0/23 1239 -208.30.14.0/23 11280 -208.30.16.0/22 11280 -208.30.20.0/22 1239 -208.30.24.0/24 1239 -208.30.25.0/24 32813 -208.30.26.0/23 1239 -208.30.28.0/22 1239 -208.30.32.0/24 1239 -208.30.33.0/24 40432 -208.30.34.0/23 1239 -208.30.36.0/22 1239 -208.30.40.0/23 19429 -208.30.42.0/23 1239 -208.30.44.0/22 1239 -208.30.48.0/23 1239 -208.30.50.0/24 1239 -208.30.51.0/24 7914 -208.30.52.0/22 1239 -208.30.56.0/21 1239 -208.30.64.0/21 1239 -208.30.72.0/23 1239 -208.30.74.0/24 1239 -208.30.75.0/24 13955 -208.30.76.0/22 1239 -208.30.80.0/20 1239 -208.30.96.0/19 14434 -208.30.128.0/17 1239 -208.31.0.0/21 1239 -208.31.8.0/21 21547 -208.31.16.0/22 1239 -208.31.20.0/24 32813 -208.31.21.0/24 1239 -208.31.22.0/24 32813 -208.31.23.0/24 1239 -208.31.24.0/21 1239 -208.31.32.0/23 1239 -208.31.34.0/24 1239 -208.31.35.0/24 11676 -208.31.36.0/22 1239 -208.31.40.0/21 1239 -208.31.48.0/22 1239 -208.31.52.0/24 12104 -208.31.53.0/24 1239 -208.31.54.0/23 1239 -208.31.56.0/21 1239 -208.31.64.0/20 1239 -208.31.80.0/24 40565 -208.31.81.0/24 23288 -208.31.82.0/23 1239 -208.31.84.0/22 1239 -208.31.88.0/21 1239 -208.31.96.0/20 1239 -208.31.112.0/21 1239 -208.31.120.0/22 1239 -208.31.124.0/24 1239 -208.31.125.0/24 15065 -208.31.126.0/23 1239 -208.31.128.0/19 1239 -208.31.160.0/24 1239 -208.31.161.0/24 12104 -208.31.162.0/23 1239 -208.31.164.0/22 1239 -208.31.168.0/21 1239 -208.31.176.0/21 1239 -208.31.184.0/23 1239 -208.31.186.0/23 18618 -208.31.188.0/22 1239 -208.31.192.0/20 1239 -208.31.208.0/21 1239 -208.31.216.0/24 22585 -208.31.217.0/24 1239 -208.31.218.0/23 1239 -208.31.220.0/22 1239 -208.31.224.0/19 1239 -208.32.0.0/18 1239 -208.32.64.0/24 394945 -208.32.65.0/24 1239 -208.32.66.0/23 1239 -208.32.68.0/24 1239 -208.32.69.0/24 16539 -208.32.70.0/23 1239 -208.32.72.0/21 1239 -208.32.80.0/20 1239 -208.32.96.0/20 1239 -208.32.112.0/22 1239 -208.32.116.0/24 1239 -208.32.117.0/24 12115 -208.32.118.0/23 1239 -208.32.120.0/21 1239 -208.32.128.0/17 1239 -208.33.0.0/21 1239 -208.33.8.0/24 13776 -208.33.9.0/24 1239 -208.33.10.0/23 1239 -208.33.12.0/24 1239 -208.33.13.0/24 7914 -208.33.14.0/23 1239 -208.33.16.0/21 1239 -208.33.24.0/23 7270 -208.33.26.0/23 1239 -208.33.28.0/22 1239 -208.33.32.0/21 1239 -208.33.40.0/22 1239 -208.33.44.0/22 18618 -208.33.48.0/23 26556 -208.33.50.0/24 1239 -208.33.51.0/24 26307 -208.33.52.0/22 1239 -208.33.56.0/21 1239 -208.33.64.0/20 1239 -208.33.80.0/22 17046 -208.33.84.0/22 1239 -208.33.88.0/21 1239 -208.33.96.0/19 1239 -208.33.128.0/20 1239 -208.33.144.0/21 1239 -208.33.152.0/23 209 -208.33.154.0/24 14905 -208.33.155.0/24 209 -208.33.156.0/23 209 -208.33.158.0/24 209 -208.33.159.0/24 14905 -208.33.160.0/19 1239 -208.33.192.0/21 1239 -208.33.200.0/22 1239 -208.33.204.0/24 394361 -208.33.205.0/24 1239 -208.33.206.0/23 1239 -208.33.208.0/20 1239 -208.33.224.0/19 1239 -208.34.0.0/22 1239 -208.34.4.0/23 1239 -208.34.6.0/24 1239 -208.34.7.0/24 209 -208.34.8.0/21 1239 -208.34.16.0/20 1239 -208.34.32.0/19 1239 -208.34.64.0/18 1239 -208.34.128.0/20 1239 -208.34.144.0/21 1239 -208.34.152.0/24 1239 -208.34.153.0/24 22106 -208.34.154.0/23 1239 -208.34.156.0/22 1239 -208.34.160.0/19 1239 -208.34.192.0/19 1239 -208.34.224.0/20 5778 -208.34.240.0/20 1239 -208.35.0.0/20 1239 -208.35.16.0/24 25612 -208.35.17.0/24 1239 -208.35.18.0/23 1239 -208.35.20.0/22 1239 -208.35.24.0/21 1239 -208.35.32.0/20 1239 -208.35.48.0/21 1239 -208.35.56.0/22 14979 -208.35.60.0/22 1239 -208.35.64.0/20 1239 -208.35.80.0/21 1239 -208.35.88.0/23 13776 -208.35.90.0/23 1239 -208.35.92.0/22 1239 -208.35.96.0/19 1239 -208.35.128.0/19 1239 -208.35.160.0/20 1239 -208.35.176.0/21 1239 -208.35.184.0/21 10333 -208.35.192.0/20 1239 -208.35.208.0/24 1239 -208.35.209.0/24 54215 -208.35.210.0/23 1239 -208.35.212.0/22 1239 -208.35.216.0/21 1239 -208.35.224.0/19 1239 -208.36.0.0/18 2828 -208.36.64.0/23 2828 -208.36.66.0/23 396054 -208.36.68.0/22 2828 -208.36.72.0/21 2828 -208.36.80.0/20 2828 -208.36.96.0/19 2828 -208.36.128.0/22 2828 -208.36.132.0/24 2828 -208.36.133.0/24 26558 -208.36.134.0/23 2828 -208.36.136.0/23 2828 -208.36.138.0/24 2828 -208.36.139.0/24 22362 -208.36.140.0/22 2828 -208.36.144.0/20 2828 -208.36.160.0/19 2828 -208.36.192.0/20 2828 -208.36.208.0/22 2828 -208.36.212.0/24 2828 -208.36.213.0/24 393567 -208.36.214.0/23 2828 -208.36.216.0/21 2828 -208.36.224.0/21 393577 -208.36.232.0/21 2828 -208.36.240.0/20 2828 -208.37.0.0/21 2828 -208.37.8.0/23 2828 -208.37.10.0/24 2828 -208.37.11.0/24 26114 -208.37.12.0/22 2828 -208.37.16.0/20 2828 -208.37.32.0/19 2828 -208.37.64.0/19 2828 -208.37.96.0/21 2828 -208.37.104.0/22 2828 -208.37.108.0/24 14238 -208.37.109.0/24 2828 -208.37.110.0/23 36498 -208.37.112.0/20 2828 -208.37.128.0/17 2828 -208.38.0.0/20 852 -208.38.16.0/21 852 -208.38.24.0/23 852 -208.38.26.0/23 15247 -208.38.28.0/22 852 -208.38.32.0/22 852 -208.38.36.0/24 1633 -208.38.37.0/24 852 -208.38.38.0/23 852 -208.38.40.0/21 852 -208.38.48.0/21 852 -208.38.56.0/23 15247 -208.38.58.0/23 852 -208.38.60.0/22 852 -208.38.64.0/18 7029 -208.38.128.0/20 16724 -208.38.144.0/21 16724 -208.38.152.0/24 396002 -208.38.153.0/24 16724 -208.38.154.0/23 16724 -208.38.156.0/22 16724 -208.38.160.0/19 16724 -208.38.192.0/24 10835 -208.38.193.0/24 33313 -208.38.194.0/23 10835 -208.38.196.0/23 10835 -208.38.198.0/24 395034 -208.38.199.0/24 10835 -208.38.200.0/23 393436 -208.38.202.0/23 10835 -208.38.204.0/22 10835 -208.38.208.0/21 10835 -208.38.216.0/22 10835 -208.38.220.0/24 11512 -208.38.221.0/24 10835 -208.38.222.0/23 10835 -208.38.224.0/19 30600 -208.39.0.0/18 11303 -208.39.64.0/19 23148 -208.39.96.0/19 11303 -208.39.128.0/21 7922 -208.39.136.0/22 33287 -208.39.140.0/23 7922 -208.39.142.0/24 7922 -208.39.143.0/24 33657 -208.39.144.0/24 33287 -208.39.145.0/24 7922 -208.39.146.0/23 7922 -208.39.148.0/22 7922 -208.39.152.0/22 7922 -208.39.156.0/24 7922 -208.39.157.0/24 33287 -208.39.158.0/23 33287 -208.39.160.0/24 7922 -208.39.161.0/24 33287 -208.39.162.0/23 7922 -208.39.164.0/22 7922 -208.39.168.0/21 7922 -208.39.176.0/20 7922 -208.39.192.0/21 4997 -208.39.218.0/24 4997 -208.39.222.0/24 4997 -208.39.224.0/22 4997 -208.39.228.0/23 4997 -208.39.232.0/21 4997 -208.39.246.0/23 4997 -208.39.248.0/23 4997 -208.39.250.0/24 4997 -208.39.251.0/24 20109 -208.39.252.0/22 4997 -208.40.0.0/20 2707 -208.40.16.0/21 2707 -208.40.24.0/24 2707 -208.40.25.0/24 36120 -208.40.26.0/23 2707 -208.40.28.0/22 2707 -208.40.32.0/19 2707 -208.40.64.0/18 2707 -208.40.128.0/18 17054 -208.40.192.0/20 17054 -208.40.208.0/20 22197 -208.40.224.0/20 17054 -208.40.240.0/22 17054 -208.40.244.0/24 396112 -208.40.245.0/24 17054 -208.40.246.0/23 17054 -208.40.248.0/21 17054 -208.41.0.0/16 4565 -208.42.0.0/21 8015 -208.42.8.0/22 8015 -208.42.12.0/22 26326 -208.42.16.0/20 8015 -208.42.32.0/20 8015 -208.42.48.0/23 8015 -208.42.50.0/24 5767 -208.42.51.0/24 8015 -208.42.52.0/22 8015 -208.42.56.0/21 26326 -208.42.64.0/19 8015 -208.42.96.0/20 8015 -208.42.112.0/21 8015 -208.42.120.0/21 54111 -208.42.128.0/19 8015 -208.42.160.0/20 8015 -208.42.176.0/21 8015 -208.42.184.0/22 8015 -208.42.188.0/23 8015 -208.42.190.0/24 8015 -208.42.191.0/24 5767 -208.42.192.0/23 23126 -208.42.194.0/24 23126 -208.42.195.0/24 22561 -208.42.196.0/23 23126 -208.42.198.0/24 23126 -208.42.199.0/24 31819 -208.42.200.0/23 23126 -208.42.202.0/24 209 -208.42.203.0/24 23126 -208.42.204.0/22 23126 -208.42.208.0/23 23126 -208.42.210.0/23 22561 -208.42.212.0/22 22561 -208.42.216.0/23 22561 -208.42.218.0/24 22561 -208.42.219.0/24 23126 -208.42.220.0/23 23126 -208.42.222.0/23 22561 -208.42.224.0/19 29863 -208.43.0.0/16 36351 -208.44.0.0/19 209 -208.44.32.0/20 209 -208.44.48.0/21 209 -208.44.56.0/24 209 -208.44.57.0/24 31890 -208.44.58.0/23 209 -208.44.60.0/22 209 -208.44.64.0/20 209 -208.44.80.0/23 209 -208.44.82.0/24 209 -208.44.83.0/24 22904 -208.44.84.0/22 209 -208.44.88.0/22 209 -208.44.92.0/23 209 -208.44.94.0/24 209 -208.44.95.0/24 15185 -208.44.96.0/21 209 -208.44.104.0/23 209 -208.44.106.0/24 22610 -208.44.107.0/24 209 -208.44.108.0/23 209 -208.44.110.0/24 27624 -208.44.111.0/24 209 -208.44.112.0/20 209 -208.44.128.0/18 209 -208.44.192.0/24 209 -208.44.193.0/24 26885 -208.44.194.0/23 209 -208.44.196.0/22 209 -208.44.200.0/21 209 -208.44.208.0/22 209 -208.44.212.0/24 17301 -208.44.213.0/24 209 -208.44.214.0/23 27202 -208.44.216.0/22 209 -208.44.220.0/23 36064 -208.44.222.0/23 209 -208.44.224.0/22 209 -208.44.228.0/24 36071 -208.44.229.0/24 209 -208.44.230.0/23 209 -208.44.232.0/21 209 -208.44.240.0/21 209 -208.44.248.0/22 209 -208.44.252.0/24 47095 -208.44.253.0/24 209 -208.44.254.0/23 209 -208.45.0.0/17 209 -208.45.128.0/22 209 -208.45.132.0/24 209 -208.45.133.0/24 53316 -208.45.134.0/23 209 -208.45.136.0/21 209 -208.45.144.0/20 209 -208.45.160.0/21 209 -208.45.168.0/23 209 -208.45.170.0/24 209 -208.45.171.0/24 397973 -208.45.172.0/22 32029 -208.45.176.0/20 209 -208.45.192.0/21 209 -208.45.200.0/24 209 -208.45.201.0/24 27202 -208.45.202.0/23 209 -208.45.204.0/22 209 -208.45.208.0/22 209 -208.45.212.0/22 3450 -208.45.216.0/21 209 -208.45.224.0/19 209 -208.46.0.0/18 209 -208.46.64.0/20 209 -208.46.80.0/21 209 -208.46.88.0/23 209 -208.46.90.0/24 209 -208.46.91.0/24 53345 -208.46.92.0/23 27516 -208.46.94.0/23 209 -208.46.96.0/21 209 -208.46.104.0/23 209 -208.46.106.0/24 14862 -208.46.107.0/24 209 -208.46.108.0/22 209 -208.46.112.0/20 209 -208.46.128.0/19 209 -208.46.160.0/21 209 -208.46.168.0/24 209 -208.46.169.0/24 32583 -208.46.170.0/23 209 -208.46.172.0/22 209 -208.46.176.0/23 209 -208.46.178.0/24 209 -208.46.179.0/24 12004 -208.46.180.0/22 209 -208.46.184.0/22 209 -208.46.188.0/24 18889 -208.46.189.0/24 209 -208.46.190.0/23 209 -208.46.192.0/20 209 -208.46.208.0/22 209 -208.46.212.0/23 14919 -208.46.214.0/23 209 -208.46.216.0/21 209 -208.46.224.0/20 209 -208.46.240.0/22 209 -208.46.244.0/24 17348 -208.46.245.0/24 209 -208.46.246.0/23 209 -208.46.248.0/21 209 -208.47.0.0/18 209 -208.47.64.0/22 4927 -208.47.68.0/22 209 -208.47.72.0/21 209 -208.47.80.0/23 209 -208.47.82.0/24 209 -208.47.83.0/24 395800 -208.47.84.0/22 209 -208.47.88.0/23 209 -208.47.90.0/23 13994 -208.47.92.0/23 13994 -208.47.94.0/24 13994 -208.47.95.0/24 209 -208.47.96.0/22 209 -208.47.100.0/23 209 -208.47.102.0/24 209 -208.47.103.0/24 14237 -208.47.104.0/21 209 -208.47.112.0/22 209 -208.47.116.0/24 13893 -208.47.117.0/24 209 -208.47.118.0/24 18976 -208.47.119.0/24 209 -208.47.120.0/21 209 -208.47.128.0/19 209 -208.47.160.0/23 209 -208.47.162.0/23 22742 -208.47.164.0/23 22742 -208.47.166.0/23 209 -208.47.168.0/21 209 -208.47.176.0/22 209 -208.47.180.0/23 209 -208.47.182.0/24 209 -208.47.183.0/24 394459 -208.47.184.0/23 36271 -208.47.186.0/23 209 -208.47.188.0/22 209 -208.47.192.0/22 209 -208.47.196.0/24 26437 -208.47.197.0/24 209 -208.47.198.0/23 209 -208.47.200.0/23 209 -208.47.202.0/24 63111 -208.47.203.0/24 209 -208.47.204.0/24 46655 -208.47.205.0/24 209 -208.47.206.0/23 209 -208.47.208.0/23 209 -208.47.210.0/24 209 -208.47.211.0/24 26840 -208.47.212.0/22 209 -208.47.216.0/21 209 -208.47.224.0/19 209 -208.48.0.0/21 3549 -208.48.8.0/24 22073 -208.48.9.0/24 3549 -208.48.10.0/23 3549 -208.48.12.0/22 3549 -208.48.16.0/24 25765 -208.48.17.0/24 3549 -208.48.18.0/23 3549 -208.48.20.0/22 3549 -208.48.24.0/21 3549 -208.48.32.0/20 3549 -208.48.48.0/23 3549 -208.48.50.0/24 3549 -208.48.51.0/24 3356 -208.48.52.0/22 3549 -208.48.56.0/21 3549 -208.48.64.0/20 3561 -208.48.80.0/22 3561 -208.48.84.0/23 3561 -208.48.86.0/24 3561 -208.48.87.0/24 22680 -208.48.88.0/21 3561 -208.48.96.0/19 3561 -208.48.128.0/23 3549 -208.48.130.0/24 11251 -208.48.131.0/24 3549 -208.48.132.0/22 3549 -208.48.136.0/22 3549 -208.48.140.0/24 22822 -208.48.141.0/24 3549 -208.48.142.0/23 3549 -208.48.144.0/23 3549 -208.48.146.0/24 16526 -208.48.147.0/24 3549 -208.48.148.0/23 3549 -208.48.150.0/24 13956 -208.48.151.0/24 3549 -208.48.152.0/21 3549 -208.48.160.0/23 31216 -208.48.162.0/24 43424 -208.48.163.0/24 31216 -208.48.164.0/22 31216 -208.48.168.0/22 3549 -208.48.172.0/23 3549 -208.48.174.0/24 3549 -208.48.175.0/24 16526 -208.48.176.0/23 3549 -208.48.178.0/24 7385 -208.48.179.0/24 3549 -208.48.180.0/22 3549 -208.48.184.0/24 16526 -208.48.185.0/24 3549 -208.48.186.0/23 3549 -208.48.188.0/22 3549 -208.48.192.0/21 3549 -208.48.200.0/24 40345 -208.48.201.0/24 3549 -208.48.202.0/23 3549 -208.48.204.0/22 3549 -208.48.208.0/20 3561 -208.48.224.0/20 3549 -208.48.240.0/21 3549 -208.48.248.0/22 3549 -208.48.252.0/23 19009 -208.48.254.0/23 3549 -208.49.0.0/19 3549 -208.49.32.0/21 3549 -208.49.40.0/22 46887 -208.49.44.0/24 46887 -208.49.45.0/24 16657 -208.49.46.0/24 19643 -208.49.47.0/24 46887 -208.49.48.0/22 3549 -208.49.52.0/23 3549 -208.49.54.0/24 36528 -208.49.55.0/24 3549 -208.49.56.0/23 3549 -208.49.58.0/24 30650 -208.49.59.0/24 3549 -208.49.60.0/23 3549 -208.49.62.0/24 3549 -208.49.63.0/24 53316 -208.49.64.0/21 3549 -208.49.72.0/22 3549 -208.49.76.0/23 3356 -208.49.78.0/23 3549 -208.49.80.0/22 3549 -208.49.84.0/24 3356 -208.49.85.0/24 3549 -208.49.86.0/23 3549 -208.49.88.0/22 3549 -208.49.92.0/24 16526 -208.49.93.0/24 47001 -208.49.94.0/23 3549 -208.49.96.0/22 3549 -208.49.100.0/23 3549 -208.49.102.0/24 3549 -208.49.103.0/24 18837 -208.49.104.0/21 3549 -208.49.112.0/21 3549 -208.49.120.0/23 3549 -208.49.122.0/24 48553 -208.49.123.0/24 3549 -208.49.124.0/22 3549 -208.49.128.0/21 3549 -208.49.136.0/22 3549 -208.49.140.0/23 3549 -208.49.142.0/24 3549 -208.49.143.0/24 18994 -208.49.144.0/20 3549 -208.49.160.0/20 3549 -208.49.176.0/24 22581 -208.49.177.0/24 3549 -208.49.178.0/23 3549 -208.49.180.0/23 3549 -208.49.182.0/24 53894 -208.49.183.0/24 3549 -208.49.184.0/23 16526 -208.49.186.0/23 3549 -208.49.188.0/22 3549 -208.49.192.0/23 3549 -208.49.194.0/24 22581 -208.49.195.0/24 3549 -208.49.196.0/22 3549 -208.49.200.0/21 3549 -208.49.208.0/20 3549 -208.49.224.0/19 3549 -208.50.0.0/23 3549 -208.50.2.0/24 3549 -208.50.3.0/24 5080 -208.50.4.0/22 3549 -208.50.8.0/23 3549 -208.50.10.0/23 16526 -208.50.12.0/23 3549 -208.50.14.0/24 3549 -208.50.15.0/24 19887 -208.50.16.0/22 3549 -208.50.20.0/24 32516 -208.50.21.0/24 3549 -208.50.22.0/23 3549 -208.50.24.0/24 21734 -208.50.25.0/24 3549 -208.50.26.0/24 3549 -208.50.27.0/24 21734 -208.50.28.0/22 3549 -208.50.32.0/20 3549 -208.50.48.0/22 3549 -208.50.52.0/23 53670 -208.50.54.0/23 3549 -208.50.56.0/24 53316 -208.50.57.0/24 3549 -208.50.58.0/23 3549 -208.50.60.0/24 202213 -208.50.61.0/24 3549 -208.50.62.0/23 20100 -208.50.64.0/21 3549 -208.50.72.0/22 3549 -208.50.76.0/23 3549 -208.50.78.0/23 393275 -208.50.80.0/23 3549 -208.50.82.0/24 30353 -208.50.83.0/24 3549 -208.50.84.0/22 3549 -208.50.88.0/22 3549 -208.50.92.0/23 3549 -208.50.94.0/23 16948 -208.50.96.0/21 3549 -208.50.104.0/22 3549 -208.50.108.0/24 19009 -208.50.109.0/24 3549 -208.50.110.0/23 3549 -208.50.112.0/23 3549 -208.50.114.0/24 3549 -208.50.115.0/24 14998 -208.50.116.0/24 22449 -208.50.117.0/24 3549 -208.50.118.0/24 10753 -208.50.119.0/24 3549 -208.50.120.0/22 3549 -208.50.124.0/24 22581 -208.50.125.0/24 3549 -208.50.126.0/23 3549 -208.50.128.0/18 3561 -208.50.192.0/21 3549 -208.50.200.0/24 19437 -208.50.201.0/24 3549 -208.50.202.0/23 3549 -208.50.204.0/22 3549 -208.50.208.0/21 22566 -208.50.216.0/21 3549 -208.50.224.0/24 10753 -208.50.225.0/24 3549 -208.50.226.0/24 3549 -208.50.227.0/24 16526 -208.50.228.0/24 3549 -208.50.229.0/24 18641 -208.50.230.0/23 3549 -208.50.232.0/22 27462 -208.50.236.0/22 3549 -208.50.240.0/24 3549 -208.50.241.0/24 393234 -208.50.242.0/23 3549 -208.50.244.0/22 3549 -208.50.248.0/24 3549 -208.50.249.0/24 40154 -208.50.250.0/23 3549 -208.50.252.0/24 393441 -208.50.253.0/24 16526 -208.50.254.0/23 3549 -208.51.0.0/23 3549 -208.51.2.0/24 3549 -208.51.3.0/24 16526 -208.51.4.0/22 3549 -208.51.8.0/21 22958 -208.51.16.0/22 3549 -208.51.20.0/23 3549 -208.51.22.0/24 16948 -208.51.23.0/24 3549 -208.51.24.0/24 16526 -208.51.25.0/24 3549 -208.51.26.0/23 3549 -208.51.28.0/22 3549 -208.51.32.0/22 3549 -208.51.36.0/24 3549 -208.51.37.0/24 14252 -208.51.38.0/24 18837 -208.51.39.0/24 3549 -208.51.40.0/21 3549 -208.51.48.0/21 3549 -208.51.56.0/23 3549 -208.51.58.0/24 3549 -208.51.59.0/24 7385 -208.51.60.0/22 17139 -208.51.64.0/21 3549 -208.51.72.0/22 3549 -208.51.76.0/24 3549 -208.51.77.0/24 3356 -208.51.78.0/23 3549 -208.51.80.0/22 3549 -208.51.84.0/24 3356 -208.51.85.0/24 3549 -208.51.86.0/23 3549 -208.51.88.0/21 3549 -208.51.96.0/24 10753 -208.51.97.0/24 3549 -208.51.98.0/23 3549 -208.51.100.0/22 3549 -208.51.104.0/21 3549 -208.51.112.0/20 3549 -208.51.128.0/21 3549 -208.51.136.0/24 3356 -208.51.137.0/24 3549 -208.51.138.0/23 3549 -208.51.140.0/22 3549 -208.51.144.0/21 3549 -208.51.152.0/23 3549 -208.51.154.0/24 21808 -208.51.155.0/24 3549 -208.51.156.0/22 3549 -208.51.160.0/19 3549 -208.51.192.0/20 3549 -208.51.208.0/24 3356 -208.51.209.0/24 3549 -208.51.210.0/23 3549 -208.51.212.0/22 3549 -208.51.216.0/21 3549 -208.51.224.0/22 3549 -208.51.228.0/24 3549 -208.51.229.0/24 33483 -208.51.230.0/23 3549 -208.51.232.0/21 3549 -208.51.240.0/22 3549 -208.51.244.0/23 3549 -208.51.246.0/24 3356 -208.51.247.0/24 3549 -208.51.248.0/21 3549 -208.52.0.0/17 11404 -208.52.128.0/23 13703 -208.52.130.0/24 13703 -208.52.131.0/24 395336 -208.52.132.0/22 13703 -208.52.136.0/24 20340 -208.52.137.0/24 395336 -208.52.138.0/23 13703 -208.52.140.0/22 13703 -208.52.144.0/24 13703 -208.52.145.0/24 395336 -208.52.146.0/23 13703 -208.52.148.0/24 395336 -208.52.149.0/24 13703 -208.52.150.0/24 13703 -208.52.151.0/24 395336 -208.52.152.0/23 13703 -208.52.154.0/24 395336 -208.52.155.0/24 20340 -208.52.156.0/24 20340 -208.52.157.0/24 395336 -208.52.158.0/23 395336 -208.52.160.0/24 13703 -208.52.161.0/24 395336 -208.52.162.0/23 13703 -208.52.164.0/24 395336 -208.52.165.0/24 13703 -208.52.166.0/24 395336 -208.52.167.0/24 13703 -208.52.168.0/24 395336 -208.52.169.0/24 13703 -208.52.170.0/24 395336 -208.52.171.0/24 13703 -208.52.172.0/23 13703 -208.52.174.0/24 395336 -208.52.175.0/24 13703 -208.52.176.0/24 20340 -208.52.177.0/24 13703 -208.52.178.0/24 13703 -208.52.179.0/24 395336 -208.52.180.0/24 395336 -208.52.181.0/24 13703 -208.52.182.0/24 395336 -208.52.183.0/24 20340 -208.52.184.0/24 13703 -208.52.185.0/24 395336 -208.52.186.0/23 395336 -208.52.188.0/22 395336 -208.53.0.0/19 26407 -208.53.32.0/24 13767 -208.53.33.0/24 26994 -208.53.34.0/23 13951 -208.53.36.0/22 13951 -208.53.40.0/23 13951 -208.53.42.0/23 13767 -208.53.44.0/22 13951 -208.53.48.0/21 13951 -208.53.56.0/24 30718 -208.53.57.0/24 13951 -208.53.58.0/23 13951 -208.53.60.0/24 13951 -208.53.61.0/24 17341 -208.53.62.0/23 13951 -208.53.64.0/19 27288 -208.53.96.0/19 11404 -208.53.128.0/18 174 -208.53.192.0/20 13576 -208.53.208.0/22 13576 -208.53.212.0/24 393417 -208.53.213.0/24 13576 -208.53.214.0/23 13576 -208.53.216.0/22 13576 -208.53.220.0/24 36013 -208.53.221.0/24 13576 -208.53.222.0/23 13576 -208.53.224.0/20 13576 -208.53.240.0/21 13576 -208.53.248.0/24 25732 -208.53.249.0/24 13576 -208.53.250.0/23 13576 -208.53.252.0/22 13576 -208.54.0.0/24 21928 -208.54.1.0/24 3549 -208.54.2.0/23 21928 -208.54.4.0/22 21928 -208.54.8.0/21 21928 -208.54.16.0/20 21928 -208.54.32.0/19 21928 -208.54.64.0/18 21928 -208.54.128.0/22 22140 -208.54.132.0/23 22140 -208.54.134.0/23 21928 -208.54.136.0/21 21928 -208.54.144.0/20 21928 -208.54.160.0/20 19201 -208.54.192.0/19 22561 -208.54.224.0/20 19045 -208.54.240.0/20 29944 -208.56.0.0/16 11022 -208.57.0.0/21 18687 -208.57.8.0/24 18687 -208.57.9.0/24 14265 -208.57.10.0/23 18687 -208.57.12.0/23 18687 -208.57.14.0/24 14265 -208.57.15.0/24 18687 -208.57.16.0/20 18687 -208.57.32.0/21 14265 -208.57.40.0/21 18687 -208.57.48.0/20 18687 -208.57.64.0/20 18687 -208.57.80.0/23 14265 -208.57.82.0/24 14265 -208.57.83.0/24 18687 -208.57.84.0/22 14265 -208.57.88.0/21 18687 -208.57.96.0/20 18687 -208.57.112.0/24 14265 -208.57.113.0/24 18687 -208.57.114.0/23 18687 -208.57.116.0/24 18687 -208.57.117.0/24 14265 -208.57.118.0/23 18687 -208.57.120.0/21 18687 -208.57.128.0/18 18687 -208.57.192.0/20 18687 -208.57.208.0/21 18687 -208.57.216.0/22 18687 -208.57.220.0/24 14265 -208.57.221.0/24 18687 -208.57.222.0/23 18687 -208.57.224.0/19 18687 -208.58.0.0/17 6079 -208.58.128.0/18 6079 -208.58.192.0/19 6079 -208.58.224.0/20 6079 -208.58.240.0/24 6079 -208.58.241.0/24 395583 -208.58.242.0/23 6079 -208.58.244.0/22 6079 -208.58.248.0/21 6079 -208.59.0.0/16 6079 -208.60.0.0/17 6389 -208.60.128.0/20 6389 -208.60.144.0/22 26153 -208.60.148.0/22 6389 -208.60.152.0/21 6389 -208.60.160.0/19 6389 -208.60.192.0/18 6389 -208.61.0.0/17 7018 -208.61.128.0/17 6389 -208.62.0.0/17 6389 -208.62.128.0/20 6389 -208.62.144.0/22 6389 -208.62.148.0/24 23386 -208.62.149.0/24 6389 -208.62.150.0/23 6389 -208.62.152.0/23 6389 -208.62.154.0/24 40844 -208.62.155.0/24 6389 -208.62.156.0/22 6389 -208.62.160.0/19 6389 -208.62.192.0/18 6389 -208.63.0.0/18 6389 -208.63.64.0/24 17067 -208.63.65.0/24 6389 -208.63.66.0/23 6389 -208.63.68.0/22 6389 -208.63.72.0/22 6389 -208.63.76.0/23 6389 -208.63.78.0/24 6389 -208.63.79.0/24 20393 -208.63.80.0/21 6389 -208.63.88.0/23 13368 -208.63.90.0/24 13368 -208.63.91.0/24 6389 -208.63.92.0/22 6389 -208.63.96.0/19 6389 -208.63.128.0/24 19957 -208.63.129.0/24 19956 -208.63.130.0/23 6389 -208.63.132.0/22 6389 -208.63.136.0/21 6389 -208.63.144.0/20 6389 -208.63.160.0/19 6389 -208.63.192.0/18 6389 -208.64.0.0/23 21958 -208.64.2.0/23 30260 -208.64.4.0/23 30260 -208.64.6.0/23 21958 -208.64.12.0/22 46211 -208.64.16.0/22 36533 -208.64.22.0/23 13803 -208.64.32.0/24 62695 -208.64.33.0/24 35592 -208.64.36.0/22 53292 -208.64.40.0/23 13505 -208.64.42.0/24 13505 -208.64.43.0/24 3356 -208.64.45.0/24 36236 -208.64.48.0/21 16388 -208.64.56.0/21 6939 -208.64.64.0/21 33724 -208.64.72.0/22 36100 -208.64.76.0/22 16654 -208.64.88.0/22 32808 -208.64.92.0/22 11996 -208.64.100.0/22 11853 -208.64.104.0/22 32705 -208.64.108.0/23 33535 -208.64.110.0/24 33535 -208.64.112.0/21 13572 -208.64.120.0/21 32421 -208.64.128.0/22 36069 -208.64.132.0/22 24637 -208.64.136.0/21 3064 -208.64.144.0/21 31950 -208.64.152.0/21 30259 -208.64.160.0/22 10653 -208.64.164.0/22 32004 -208.64.168.0/21 30600 -208.64.176.0/21 36086 -208.64.184.0/22 32354 -208.64.188.0/24 22351 -208.64.191.0/24 22351 -208.64.192.0/22 22744 -208.64.196.0/23 22744 -208.64.200.0/22 32590 -208.64.204.0/24 13649 -208.64.205.0/24 7381 -208.64.206.0/24 20017 -208.64.207.0/24 13649 -208.64.208.0/23 21952 -208.64.210.0/23 63106 -208.64.212.0/23 63105 -208.64.214.0/24 63105 -208.64.215.0/24 21952 -208.64.216.0/21 13525 -208.64.224.0/21 35916 -208.64.232.0/22 18803 -208.64.237.0/24 18803 -208.64.238.0/24 18803 -208.64.239.0/24 6606 -208.64.240.0/21 46416 -208.64.248.0/21 32743 -208.65.0.0/22 36143 -208.65.4.0/23 25813 -208.65.6.0/24 25813 -208.65.7.0/24 36277 -208.65.8.0/21 15335 -208.65.16.0/22 29753 -208.65.20.0/22 35971 -208.65.24.0/22 27337 -208.65.28.0/22 33606 -208.65.32.0/22 11472 -208.65.36.0/22 39951 -208.65.41.0/24 26351 -208.65.44.0/23 3356 -208.65.46.0/23 26351 -208.65.48.0/21 36295 -208.65.56.0/24 32746 -208.65.57.0/24 30434 -208.65.59.0/24 174 -208.65.60.0/22 21793 -208.65.64.0/21 36394 -208.65.72.0/21 26281 -208.65.80.0/22 22408 -208.65.84.0/22 35916 -208.65.88.0/22 20081 -208.65.92.0/22 32270 -208.65.96.0/22 11232 -208.65.104.0/23 36086 -208.65.107.0/24 36086 -208.65.108.0/23 36086 -208.65.111.0/24 36086 -208.65.112.0/22 36446 -208.65.116.0/23 36475 -208.65.119.0/24 36475 -208.65.120.0/22 16538 -208.65.124.0/22 33556 -208.65.128.0/22 36536 -208.65.132.0/24 14839 -208.65.133.0/24 26056 -208.65.134.0/24 26225 -208.65.135.0/24 14839 -208.65.136.0/21 30309 -208.65.145.0/24 14600 -208.65.146.0/24 14600 -208.65.149.0/24 14600 -208.65.150.0/23 203724 -208.65.152.0/23 43515 -208.65.154.0/24 43515 -208.65.155.0/24 36040 -208.65.156.0/22 35937 -208.65.160.0/21 36316 -208.65.168.0/22 14453 -208.65.172.0/22 36645 -208.65.180.0/22 30640 -208.65.184.0/21 25961 -208.65.192.0/21 17163 -208.65.200.0/24 63442 -208.65.201.0/24 19133 -208.65.202.0/23 19133 -208.65.204.0/23 36501 -208.65.206.0/23 26324 -208.65.208.0/21 5555 -208.65.216.0/22 36222 -208.65.220.0/22 23308 -208.65.232.0/22 19171 -208.65.236.0/22 21527 -208.65.240.0/21 36493 -208.65.248.0/24 33293 -208.65.249.0/24 36594 -208.65.250.0/23 36594 -208.65.254.0/24 262 -208.65.255.0/24 397707 -208.66.0.0/22 20161 -208.66.4.0/23 36633 -208.66.6.0/24 36633 -208.66.8.0/21 17306 -208.66.16.0/22 36689 -208.66.20.0/24 22142 -208.66.22.0/24 22142 -208.66.24.0/21 19165 -208.66.32.0/21 36143 -208.66.40.0/24 25642 -208.66.41.0/24 7819 -208.66.42.0/23 7819 -208.66.44.0/24 25642 -208.66.45.0/24 14288 -208.66.46.0/23 14288 -208.66.48.0/22 33576 -208.66.52.0/23 33576 -208.66.54.0/24 33576 -208.66.55.0/24 396304 -208.66.56.0/22 6130 -208.66.60.0/22 17099 -208.66.68.0/22 21793 -208.66.72.0/21 36114 -208.66.80.0/23 32661 -208.66.83.0/24 32661 -208.66.85.0/24 19271 -208.66.87.0/24 3356 -208.66.88.0/22 17279 -208.66.96.0/21 33168 -208.66.104.0/22 23510 -208.66.111.0/24 26094 -208.66.112.0/21 32247 -208.66.120.0/22 32757 -208.66.124.0/22 22610 -208.66.128.0/21 16842 -208.66.136.0/23 62947 -208.66.138.0/23 21549 -208.66.140.0/23 62947 -208.66.142.0/23 21549 -208.66.144.0/21 13823 -208.66.152.0/22 13816 -208.66.157.0/24 397484 -208.66.158.0/23 397484 -208.66.160.0/22 10915 -208.66.164.0/24 18994 -208.66.165.0/24 22502 -208.66.166.0/23 18994 -208.66.168.0/21 32748 -208.66.176.0/22 36748 -208.66.180.0/22 29704 -208.66.184.0/21 36827 -208.66.192.0/22 33724 -208.66.196.0/22 36675 -208.66.204.0/22 6165 -208.66.208.0/21 22322 -208.66.216.0/22 13970 -208.66.220.0/22 36783 -208.66.224.0/22 62840 -208.66.228.0/22 19402 -208.66.232.0/21 133847 -208.66.240.0/21 22408 -208.66.248.0/21 14642 -208.67.0.0/22 32097 -208.67.4.0/23 32097 -208.67.6.0/24 32097 -208.67.7.0/24 19455 -208.67.8.0/22 36815 -208.67.12.0/22 10397 -208.67.16.0/21 3257 -208.67.24.0/23 21959 -208.67.26.0/24 26225 -208.67.27.0/24 174 -208.67.28.0/23 22436 -208.67.30.0/24 22436 -208.67.32.0/21 12271 -208.67.40.0/22 15224 -208.67.44.0/23 20141 -208.67.48.0/23 16494 -208.67.56.0/22 36841 -208.67.60.0/22 46353 -208.67.66.0/23 7233 -208.67.72.0/23 36854 -208.67.75.0/24 36854 -208.67.76.0/24 33279 -208.67.80.0/21 33395 -208.67.88.0/22 42 -208.67.94.0/23 36354 -208.67.96.0/21 20042 -208.67.108.0/22 7016 -208.67.112.0/23 32703 -208.67.114.0/24 53989 -208.67.116.0/22 26869 -208.67.120.0/22 17378 -208.67.124.0/23 17378 -208.67.126.0/24 11180 -208.67.127.0/24 12157 -208.67.128.0/22 30714 -208.67.132.0/22 18509 -208.67.136.0/22 2386 -208.67.140.0/22 39942 -208.67.144.0/21 25706 -208.67.152.0/22 7385 -208.67.156.0/22 32015 -208.67.164.0/22 33132 -208.67.168.0/22 14014 -208.67.172.0/22 10451 -208.67.176.0/22 19404 -208.67.180.0/22 33322 -208.67.184.0/24 13446 -208.67.185.0/24 35937 -208.67.186.0/23 35937 -208.67.188.0/23 35937 -208.67.190.0/23 36286 -208.67.192.0/21 6461 -208.67.200.0/21 11195 -208.67.208.0/22 21895 -208.67.212.0/22 22844 -208.67.216.0/21 36692 -208.67.224.0/22 36504 -208.67.228.0/23 39945 -208.67.230.0/24 36236 -208.67.231.0/24 39945 -208.67.232.0/22 40009 -208.67.237.0/24 40009 -208.67.238.0/23 40009 -208.67.240.0/21 27325 -208.67.248.0/21 40395 -208.68.0.0/22 36327 -208.68.4.0/24 397444 -208.68.5.0/24 395853 -208.68.6.0/23 397444 -208.68.8.0/22 36555 -208.68.12.0/22 40013 -208.68.16.0/22 11814 -208.68.20.0/22 36861 -208.68.24.0/22 237 -208.68.28.0/22 1706 -208.68.32.0/22 29974 -208.68.36.0/22 14061 -208.68.40.0/21 10333 -208.68.48.0/22 39939 -208.68.52.0/23 3356 -208.68.56.0/22 10958 -208.68.60.0/22 39973 -208.68.64.0/22 25956 -208.68.68.0/22 33213 -208.68.74.0/24 26233 -208.68.76.0/22 26448 -208.68.80.0/22 5742 -208.68.84.0/23 40160 -208.68.86.0/24 40160 -208.68.87.0/24 5006 -208.68.88.0/21 40028 -208.68.96.0/22 32682 -208.68.100.0/22 27419 -208.68.104.0/22 40092 -208.68.108.0/22 15169 -208.68.112.0/21 395576 -208.68.120.0/21 14430 -208.68.128.0/23 7046 -208.68.132.0/22 53830 -208.68.136.0/21 8075 -208.68.144.0/22 7046 -208.68.148.0/23 7046 -208.68.150.0/24 7046 -208.68.151.0/24 36532 -208.68.152.0/22 40049 -208.68.156.0/23 40100 -208.68.158.0/24 20141 -208.68.159.0/24 40100 -208.68.160.0/21 14935 -208.68.168.0/21 29838 -208.68.176.0/22 22053 -208.68.184.0/21 10796 -208.68.192.0/22 11446 -208.68.197.0/24 25740 -208.68.200.0/24 13846 -208.68.202.0/23 13846 -208.68.204.0/23 13846 -208.68.216.0/24 40175 -208.68.218.0/24 40175 -208.68.224.0/22 19367 -208.68.228.0/22 3356 -208.68.232.0/21 33724 -208.68.240.0/22 25 -208.68.244.0/22 17140 -208.68.248.0/24 22561 -208.68.250.0/24 22773 -208.68.252.0/22 29804 -208.69.0.0/24 17191 -208.69.6.0/23 30141 -208.69.8.0/21 36543 -208.69.16.0/22 36521 -208.69.20.0/22 14713 -208.69.24.0/23 4277 -208.69.28.0/23 36776 -208.69.32.0/21 36692 -208.69.40.0/22 32329 -208.69.44.0/22 3549 -208.69.48.0/21 13775 -208.69.56.0/22 36218 -208.69.60.0/24 26956 -208.69.62.0/24 26956 -208.69.64.0/21 36327 -208.69.72.0/23 209 -208.69.74.0/24 209 -208.69.75.0/24 22625 -208.69.81.0/24 20123 -208.69.82.0/24 20122 -208.69.83.0/24 36003 -208.69.84.0/23 46887 -208.69.86.0/24 46887 -208.69.87.0/24 16657 -208.69.88.0/21 31850 -208.69.96.0/21 22773 -208.69.104.0/22 30040 -208.69.108.0/22 33693 -208.69.112.0/22 35415 -208.69.116.0/23 35415 -208.69.118.0/23 46786 -208.69.120.0/21 36444 -208.69.128.0/22 40189 -208.69.132.0/22 11354 -208.69.136.0/23 23000 -208.69.138.0/24 23000 -208.69.140.0/23 23000 -208.69.142.0/24 23000 -208.69.144.0/22 5056 -208.69.148.0/22 35975 -208.69.152.0/21 7754 -208.69.160.0/21 33638 -208.69.168.0/21 40068 -208.69.176.0/21 46261 -208.69.192.0/23 395533 -208.69.194.0/23 1414 -208.69.196.0/22 40226 -208.69.200.0/22 32172 -208.69.204.0/24 32172 -208.69.206.0/24 32172 -208.69.208.0/21 39939 -208.69.216.0/23 26467 -208.69.218.0/24 26467 -208.69.220.0/24 26467 -208.69.222.0/24 26467 -208.69.224.0/22 36201 -208.69.228.0/22 15085 -208.69.232.0/23 396970 -208.69.234.0/24 53699 -208.69.236.0/22 17279 -208.69.240.0/22 22995 -208.69.248.0/22 8161 -208.69.252.0/23 15101 -208.69.254.0/23 23498 -208.70.8.0/22 203098 -208.70.12.0/22 31998 -208.70.16.0/22 32654 -208.70.20.0/22 14287 -208.70.24.0/21 7941 -208.70.32.0/22 40218 -208.70.36.0/22 22926 -208.70.40.0/21 11525 -208.70.48.0/21 21577 -208.70.56.0/21 32738 -208.70.64.0/21 21858 -208.70.72.0/21 35916 -208.70.80.0/21 15176 -208.70.89.0/24 16633 -208.70.90.0/23 16633 -208.70.92.0/22 36290 -208.70.96.0/21 32682 -208.70.104.0/21 14270 -208.70.112.0/21 20340 -208.70.120.0/22 3356 -208.70.128.0/24 16941 -208.70.129.0/24 3561 -208.70.135.0/24 11236 -208.70.137.0/24 19137 -208.70.138.0/23 19137 -208.70.140.0/22 19137 -208.70.144.0/22 17017 -208.70.148.0/23 17017 -208.70.150.0/24 17017 -208.70.151.0/24 16713 -208.70.152.0/24 20204 -208.70.153.0/24 29730 -208.70.154.0/24 20204 -208.70.155.0/24 29730 -208.70.156.0/22 29730 -208.70.160.0/21 40298 -208.70.169.0/24 25899 -208.70.170.0/24 396387 -208.70.171.0/24 22773 -208.70.172.0/24 32630 -208.70.173.0/24 11383 -208.70.174.0/23 63085 -208.70.176.0/24 26435 -208.70.177.0/24 18594 -208.70.178.0/23 26435 -208.70.180.0/23 393864 -208.70.182.0/23 36546 -208.70.184.0/22 19609 -208.70.188.0/22 40260 -208.70.192.0/22 40261 -208.70.196.0/23 18597 -208.70.199.0/24 18597 -208.70.200.0/23 33717 -208.70.202.0/23 9505 -208.70.204.0/23 33717 -208.70.206.0/23 9505 -208.70.208.0/24 27552 -208.70.209.0/24 14618 -208.70.210.0/23 393497 -208.70.212.0/23 40243 -208.70.214.0/24 40243 -208.70.215.0/24 577 -208.70.216.0/21 17054 -208.70.224.0/22 7018 -208.70.228.0/22 22925 -208.70.232.0/21 40196 -208.70.240.0/22 13612 -208.70.244.0/22 36483 -208.70.248.0/21 21769 -208.71.0.0/23 23318 -208.71.2.0/24 7018 -208.71.3.0/24 23318 -208.71.4.0/22 7018 -208.71.8.0/22 40191 -208.71.12.0/22 14849 -208.71.16.0/22 26279 -208.71.20.0/23 26279 -208.71.22.0/24 26279 -208.71.23.0/24 14618 -208.71.25.0/24 14255 -208.71.26.0/24 6130 -208.71.27.0/24 14255 -208.71.28.0/22 36687 -208.71.32.0/22 36436 -208.71.36.0/22 23462 -208.71.40.0/21 36647 -208.71.48.0/23 40076 -208.71.50.0/24 10891 -208.71.51.0/24 40076 -208.71.52.0/22 30572 -208.71.56.0/21 36213 -208.71.64.0/21 26259 -208.71.72.0/21 40252 -208.71.80.0/22 40262 -208.71.92.0/22 36466 -208.71.96.0/24 21757 -208.71.98.0/23 21757 -208.71.100.0/22 21757 -208.71.108.0/24 398125 -208.71.109.0/24 33651 -208.71.110.0/23 33651 -208.71.112.0/22 33554 -208.71.116.0/23 46430 -208.71.118.0/23 33554 -208.71.121.0/24 6129 -208.71.123.0/24 13902 -208.71.128.0/22 13909 -208.71.132.0/22 18873 -208.71.136.0/21 40281 -208.71.144.0/21 17306 -208.71.152.0/22 10936 -208.71.156.0/22 32354 -208.71.160.0/22 11038 -208.71.164.0/23 14244 -208.71.166.0/24 14244 -208.71.168.0/21 33322 -208.71.176.0/23 11702 -208.71.179.0/24 11626 -208.71.180.0/23 22051 -208.71.182.0/23 19853 -208.71.184.0/22 11807 -208.71.188.0/23 40074 -208.71.190.0/24 3257 -208.71.192.0/23 10694 -208.71.197.0/24 10694 -208.71.200.0/21 23038 -208.71.208.0/23 36230 -208.71.212.0/22 133847 -208.71.216.0/21 20014 -208.71.224.0/22 17639 -208.71.232.0/23 40111 -208.71.234.0/24 40111 -208.71.235.0/24 11128 -208.71.236.0/22 27401 -208.71.240.0/21 22157 -208.71.248.0/21 33743 -208.72.0.0/22 36536 -208.72.4.0/24 6289 -208.72.5.0/24 14476 -208.72.6.0/24 6289 -208.72.7.0/24 14476 -208.72.8.0/22 22203 -208.72.12.0/22 19918 -208.72.16.0/23 14419 -208.72.20.0/22 29757 -208.72.24.0/22 20398 -208.72.32.0/22 36730 -208.72.36.0/24 14821 -208.72.40.0/21 36036 -208.72.48.0/24 3789 -208.72.50.0/23 3789 -208.72.52.0/22 395927 -208.72.56.0/22 14469 -208.72.60.0/24 40289 -208.72.64.0/23 40284 -208.72.66.0/24 40284 -208.72.68.0/22 40284 -208.72.72.0/22 30257 -208.72.76.0/22 393713 -208.72.80.0/22 6653 -208.72.84.0/22 16668 -208.72.89.0/24 7160 -208.72.90.0/23 7160 -208.72.92.0/23 7160 -208.72.94.0/24 7160 -208.72.96.0/21 36394 -208.72.104.0/21 14333 -208.72.112.0/22 16993 -208.72.116.0/22 36791 -208.72.120.0/21 36493 -208.72.128.0/21 33606 -208.72.136.0/21 19165 -208.72.144.0/21 16739 -208.72.156.0/22 14701 -208.72.160.0/21 29933 -208.72.168.0/21 32773 -208.72.176.0/22 13625 -208.72.180.0/22 25713 -208.72.184.0/21 40165 -208.72.192.0/24 174 -208.72.198.0/23 174 -208.72.200.0/22 29912 -208.72.205.0/24 29912 -208.72.212.0/24 32957 -208.72.214.0/24 32957 -208.72.216.0/21 16848 -208.72.224.0/23 19969 -208.72.226.0/23 19853 -208.72.228.0/23 17149 -208.72.230.0/24 36290 -208.72.231.0/24 17149 -208.72.232.0/22 40015 -208.72.236.0/22 17185 -208.72.240.0/24 35937 -208.72.241.0/24 396270 -208.72.242.0/23 35937 -208.72.244.0/22 35937 -208.72.248.0/21 40466 -208.73.0.0/22 31953 -208.73.4.0/24 36351 -208.73.5.0/24 19795 -208.73.7.0/24 36351 -208.73.8.0/21 23308 -208.73.16.0/22 54838 -208.73.20.0/22 29713 -208.73.24.0/24 1 -208.73.26.0/24 30016 -208.73.27.0/24 1 -208.73.28.0/22 21519 -208.73.32.0/21 17054 -208.73.45.0/24 40170 -208.73.46.0/23 40170 -208.73.48.0/22 36504 -208.73.52.0/24 30536 -208.73.53.0/24 14230 -208.73.54.0/24 30536 -208.73.55.0/24 14230 -208.73.56.0/22 25999 -208.73.60.0/22 17306 -208.73.64.0/23 18605 -208.73.72.0/22 30513 -208.73.76.0/22 36000 -208.73.80.0/22 40076 -208.73.84.0/23 10891 -208.73.86.0/23 40076 -208.73.88.0/22 4181 -208.73.92.0/23 4181 -208.73.94.0/24 4181 -208.73.95.0/24 13575 -208.73.96.0/22 14005 -208.73.100.0/22 10242 -208.73.104.0/23 22674 -208.73.106.0/24 22674 -208.73.108.0/22 18851 -208.73.112.0/22 19231 -208.73.116.0/22 19586 -208.73.120.0/21 14667 -208.73.128.0/21 36327 -208.73.136.0/21 32425 -208.73.144.0/21 22103 -208.73.156.0/22 40447 -208.73.160.0/21 46378 -208.73.168.0/23 32113 -208.73.170.0/24 32113 -208.73.172.0/23 32113 -208.73.174.0/24 32113 -208.73.176.0/24 22841 -208.73.178.0/23 22841 -208.73.180.0/22 10982 -208.73.184.0/24 10753 -208.73.185.0/24 40158 -208.73.186.0/23 40158 -208.73.188.0/23 40158 -208.73.191.0/24 40158 -208.73.192.0/21 63457 -208.73.200.0/21 19318 -208.73.208.0/22 40034 -208.73.216.0/21 6597 -208.73.224.0/22 33724 -208.73.228.0/22 40121 -208.73.232.0/24 47869 -208.73.233.0/24 36508 -208.73.234.0/24 36508 -208.73.236.0/24 36508 -208.73.238.0/23 36508 -208.73.244.0/22 14287 -208.73.248.0/21 39939 -208.74.0.0/21 23523 -208.74.8.0/22 25649 -208.74.12.0/24 55085 -208.74.14.0/23 395491 -208.74.16.0/21 32952 -208.74.24.0/22 32584 -208.74.28.0/22 11734 -208.74.32.0/21 22361 -208.74.40.0/22 15181 -208.74.44.0/24 19271 -208.74.47.0/24 19271 -208.74.48.0/22 11734 -208.74.52.0/23 22399 -208.74.56.0/22 16582 -208.74.64.0/22 19214 -208.74.68.0/22 36294 -208.74.72.0/21 32743 -208.74.80.0/21 11187 -208.74.88.0/23 30536 -208.74.90.0/23 14230 -208.74.92.0/22 30536 -208.74.96.0/22 13767 -208.74.100.0/24 22571 -208.74.101.0/24 13767 -208.74.102.0/24 13767 -208.74.103.0/24 22571 -208.74.104.0/21 18793 -208.74.116.0/23 19183 -208.74.118.0/24 19183 -208.74.120.0/21 33522 -208.74.129.0/24 6296 -208.74.130.0/23 6296 -208.74.132.0/22 10835 -208.74.136.0/22 53591 -208.74.140.0/22 40335 -208.74.145.0/24 46203 -208.74.148.0/22 27589 -208.74.152.0/21 15177 -208.74.160.0/22 13649 -208.74.166.0/24 11583 -208.74.167.0/24 18659 -208.74.176.0/21 30640 -208.74.184.0/21 55140 -208.74.192.0/22 40363 -208.74.196.0/22 23204 -208.74.200.0/22 36481 -208.74.204.0/22 40402 -208.74.208.0/21 40383 -208.74.216.0/21 40377 -208.74.224.0/24 12025 -208.74.228.0/22 10511 -208.74.232.0/22 12083 -208.74.236.0/22 19404 -208.74.240.0/21 40328 -208.74.248.0/21 36324 -208.75.0.0/23 33642 -208.75.2.0/24 33642 -208.75.6.0/24 18434 -208.75.8.0/21 40399 -208.75.16.0/21 22768 -208.75.24.0/21 23158 -208.75.32.0/21 27382 -208.75.40.0/21 36687 -208.75.48.0/22 21937 -208.75.54.0/23 22145 -208.75.56.0/22 36351 -208.75.60.0/22 7029 -208.75.64.0/21 31981 -208.75.72.0/23 26806 -208.75.74.0/24 3359 -208.75.75.0/24 376 -208.75.76.0/24 55095 -208.75.77.0/24 2906 -208.75.78.0/23 2906 -208.75.80.0/21 23304 -208.75.88.0/22 40193 -208.75.92.0/22 35946 -208.75.96.0/21 6939 -208.75.104.0/22 22481 -208.75.108.0/23 22481 -208.75.110.0/24 22481 -208.75.112.0/24 33536 -208.75.113.0/24 40408 -208.75.115.0/24 40408 -208.75.116.0/24 63052 -208.75.117.0/24 852 -208.75.118.0/23 852 -208.75.120.0/23 46606 -208.75.122.0/23 40444 -208.75.136.0/22 40436 -208.75.140.0/22 11924 -208.75.144.0/22 40370 -208.75.148.0/22 32244 -208.75.152.0/21 16567 -208.75.160.0/21 1706 -208.75.168.0/22 10240 -208.75.172.0/22 40429 -208.75.176.0/21 40824 -208.75.188.0/22 21793 -208.75.192.0/22 40481 -208.75.196.0/22 22107 -208.75.200.0/22 11269 -208.75.204.0/23 13754 -208.75.206.0/24 13754 -208.75.207.0/24 33009 -208.75.208.0/21 14742 -208.75.216.0/22 2828 -208.75.220.0/22 14618 -208.75.224.0/21 36820 -208.75.238.0/23 26083 -208.75.240.0/21 23308 -208.75.248.0/21 36536 -208.76.0.0/22 18640 -208.76.5.0/24 33318 -208.76.6.0/24 8001 -208.76.8.0/24 12182 -208.76.9.0/24 3356 -208.76.10.0/24 3356 -208.76.12.0/23 6450 -208.76.14.0/24 6169 -208.76.15.0/24 6450 -208.76.16.0/22 11856 -208.76.28.0/22 32354 -208.76.32.0/21 26938 -208.76.40.0/22 14453 -208.76.45.0/24 8075 -208.76.46.0/24 8075 -208.76.48.0/22 40176 -208.76.52.0/22 47869 -208.76.57.0/24 33517 -208.76.58.0/23 33517 -208.76.60.0/22 33517 -208.76.64.0/24 15126 -208.76.74.0/23 12010 -208.76.76.0/22 33053 -208.76.80.0/21 53292 -208.76.88.0/22 394233 -208.76.92.0/22 20018 -208.76.96.0/23 36508 -208.76.98.0/24 36508 -208.76.101.0/24 36508 -208.76.102.0/23 36508 -208.76.104.0/21 40028 -208.76.112.0/21 40468 -208.76.121.0/24 174 -208.76.124.0/24 21636 -208.76.128.0/21 19898 -208.76.136.0/22 23314 -208.76.140.0/22 30393 -208.76.152.0/23 11404 -208.76.154.0/23 17017 -208.76.156.0/22 19627 -208.76.160.0/21 16433 -208.76.168.0/21 14585 -208.76.176.0/21 6999 -208.76.184.0/22 11404 -208.76.192.0/21 40281 -208.76.200.0/22 36797 -208.76.206.0/24 3957 -208.76.207.0/24 3820 -208.76.208.0/21 14992 -208.76.216.0/23 7296 -208.76.218.0/23 7256 -208.76.220.0/22 62489 -208.76.224.0/22 22645 -208.76.228.0/22 18863 -208.76.233.0/24 40499 -208.76.234.0/23 40499 -208.76.240.0/23 30496 -208.76.242.0/24 30496 -208.76.243.0/24 20202 -208.76.244.0/22 20202 -208.76.248.0/22 21769 -208.76.252.0/23 21769 -208.76.254.0/24 9009 -208.76.255.0/24 21769 -208.77.0.0/24 174 -208.77.1.0/24 2828 -208.77.2.0/23 174 -208.77.4.0/22 11374 -208.77.8.0/23 18786 -208.77.10.0/23 30466 -208.77.16.0/21 11878 -208.77.24.0/22 14371 -208.77.28.0/22 18776 -208.77.35.0/24 54437 -208.77.40.0/21 23338 -208.77.48.0/21 33260 -208.77.56.0/21 40459 -208.77.64.0/21 3257 -208.77.72.0/22 33533 -208.77.76.0/22 40498 -208.77.80.0/22 16438 -208.77.84.0/24 16438 -208.77.86.0/23 16438 -208.77.88.0/22 15189 -208.77.92.0/23 14444 -208.77.96.0/21 396300 -208.77.104.0/21 10587 -208.77.114.0/24 24102 -208.77.115.0/24 17811 -208.77.120.0/21 36610 -208.77.128.0/22 14103 -208.77.132.0/23 36265 -208.77.136.0/22 15224 -208.77.140.0/22 10980 -208.77.144.0/23 40395 -208.77.146.0/24 40395 -208.77.147.0/24 13986 -208.77.148.0/22 40395 -208.77.152.0/22 16773 -208.77.156.0/22 13767 -208.77.160.0/22 17077 -208.77.168.0/22 12089 -208.77.172.0/23 22773 -208.77.174.0/24 12159 -208.77.176.0/21 20328 -208.77.184.0/22 10340 -208.77.188.0/22 40528 -208.77.192.0/24 11241 -208.77.194.0/24 11241 -208.77.196.0/22 30500 -208.77.200.0/22 40522 -208.77.204.0/23 40522 -208.77.206.0/24 40522 -208.77.208.0/22 13438 -208.77.212.0/22 36671 -208.77.216.0/21 40395 -208.77.224.0/21 33444 -208.77.232.0/21 40511 -208.77.240.0/22 16848 -208.77.244.0/22 29849 -208.77.248.0/21 40068 -208.78.0.0/22 19702 -208.78.4.0/22 14618 -208.78.8.0/23 23268 -208.78.11.0/24 22196 -208.78.12.0/22 40518 -208.78.16.0/22 11342 -208.78.20.0/24 32850 -208.78.22.0/23 32850 -208.78.24.0/22 29838 -208.78.28.0/24 29838 -208.78.29.0/24 32903 -208.78.30.0/23 29838 -208.78.32.0/23 40244 -208.78.35.0/24 30475 -208.78.36.0/24 36242 -208.78.38.0/24 57624 -208.78.39.0/24 36242 -208.78.40.0/22 46562 -208.78.44.0/22 19687 -208.78.48.0/21 33392 -208.78.64.0/22 32654 -208.78.68.0/22 33517 -208.78.72.0/22 16405 -208.78.76.0/22 26030 -208.78.83.0/24 19019 -208.78.84.0/23 394506 -208.78.90.0/23 19071 -208.78.92.0/24 40539 -208.78.96.0/21 19994 -208.78.104.0/21 395336 -208.78.112.0/23 394434 -208.78.114.0/24 394434 -208.78.116.0/22 14287 -208.78.120.0/22 852 -208.78.128.0/24 16526 -208.78.130.0/24 16526 -208.78.132.0/23 16526 -208.78.134.0/24 16526 -208.78.136.0/22 21960 -208.78.140.0/23 11174 -208.78.142.0/24 11174 -208.78.143.0/24 40515 -208.78.144.0/21 18851 -208.78.152.0/22 26914 -208.78.156.0/24 18439 -208.78.158.0/24 1824 -208.78.159.0/24 13760 -208.78.160.0/22 11403 -208.78.164.0/22 32590 -208.78.168.0/21 17223 -208.78.176.0/23 11455 -208.78.179.0/24 11455 -208.78.180.0/23 11455 -208.78.184.0/22 23225 -208.78.188.0/22 23314 -208.78.192.0/21 11763 -208.78.200.0/21 40496 -208.78.208.0/23 40339 -208.78.211.0/24 40339 -208.78.212.0/24 40339 -208.78.214.0/23 40339 -208.78.216.0/22 13354 -208.78.220.0/23 13354 -208.78.222.0/23 393398 -208.78.224.0/22 63410 -208.78.228.0/22 26137 -208.78.248.0/21 22408 -208.79.0.0/22 26451 -208.79.4.0/23 26451 -208.79.6.0/24 26451 -208.79.7.0/24 53915 -208.79.8.0/22 31783 -208.79.12.0/24 174 -208.79.14.0/23 12105 -208.79.16.0/22 29944 -208.79.20.0/22 10974 -208.79.24.0/23 23494 -208.79.26.0/24 23494 -208.79.27.0/24 21608 -208.79.28.0/23 62609 -208.79.30.0/24 62609 -208.79.34.0/23 26914 -208.79.40.0/22 13822 -208.79.45.0/24 14618 -208.79.47.0/24 14618 -208.79.48.0/22 36372 -208.79.53.0/24 32385 -208.79.54.0/23 21808 -208.79.56.0/23 36493 -208.79.58.0/24 36493 -208.79.59.0/24 22404 -208.79.60.0/22 36493 -208.79.64.0/22 14042 -208.79.68.0/22 22402 -208.79.76.0/23 46887 -208.79.78.0/24 46887 -208.79.79.0/24 12220 -208.79.80.0/22 36236 -208.79.84.0/22 14006 -208.79.88.0/21 25795 -208.79.96.0/22 17149 -208.79.100.0/24 63117 -208.79.104.0/21 25671 -208.79.112.0/22 393278 -208.79.116.0/23 36688 -208.79.118.0/24 36688 -208.79.120.0/24 393525 -208.79.121.0/24 14625 -208.79.122.0/23 14625 -208.79.128.0/24 30405 -208.79.129.0/24 15094 -208.79.130.0/24 19268 -208.79.132.0/23 53690 -208.79.134.0/24 53690 -208.79.140.0/22 6939 -208.79.144.0/21 32016 -208.79.152.0/22 10990 -208.79.156.0/22 11542 -208.79.160.0/22 16863 -208.79.164.0/22 22804 -208.79.168.0/22 14110 -208.79.172.0/22 36521 -208.79.176.0/22 14354 -208.79.181.0/24 29776 -208.79.184.0/23 32592 -208.79.188.0/22 12108 -208.79.192.0/21 14603 -208.79.200.0/21 17054 -208.79.208.0/21 53292 -208.79.216.0/23 40092 -208.79.218.0/23 10929 -208.79.220.0/22 14856 -208.79.230.0/23 30673 -208.79.232.0/21 32244 -208.79.240.0/22 11170 -208.79.244.0/22 11901 -208.80.0.0/23 33302 -208.80.3.0/24 397678 -208.80.4.0/22 47002 -208.80.8.0/21 40395 -208.80.16.0/22 7819 -208.80.20.0/23 7819 -208.80.24.0/21 14140 -208.80.32.0/24 14288 -208.80.33.0/24 7819 -208.80.34.0/23 25642 -208.80.36.0/24 25642 -208.80.37.0/24 7819 -208.80.38.0/23 7819 -208.80.48.0/24 19769 -208.80.52.0/22 13360 -208.80.60.0/22 33668 -208.80.64.0/21 19165 -208.80.72.0/22 14382 -208.80.76.0/22 15036 -208.80.80.0/22 14971 -208.80.84.0/22 13512 -208.80.90.0/23 26329 -208.80.96.0/21 15122 -208.80.104.0/23 29947 -208.80.106.0/24 29947 -208.80.116.0/22 32354 -208.80.120.0/21 16552 -208.80.136.0/22 33544 -208.80.140.0/22 46437 -208.80.144.0/21 10958 -208.80.152.0/22 14907 -208.80.156.0/24 39944 -208.80.158.0/24 39944 -208.80.160.0/21 14832 -208.80.168.0/21 11492 -208.80.176.0/24 7018 -208.80.180.0/22 36504 -208.80.184.0/21 40125 -208.80.192.0/21 13448 -208.80.201.0/24 16582 -208.80.202.0/23 14618 -208.80.204.0/23 16943 -208.80.208.0/21 26244 -208.80.216.0/22 16908 -208.80.220.0/22 174 -208.80.224.0/23 33680 -208.80.226.0/24 33680 -208.80.228.0/24 30470 -208.80.232.0/23 16640 -208.80.235.0/24 16640 -208.80.236.0/22 40414 -208.80.240.0/21 36327 -208.80.248.0/22 36408 -208.80.252.0/22 18634 -208.81.0.0/21 18451 -208.81.8.0/22 30400 -208.81.12.0/22 17382 -208.81.20.0/22 10340 -208.81.24.0/22 32005 -208.81.28.0/22 23296 -208.81.32.0/22 19240 -208.81.36.0/22 33010 -208.81.40.0/21 32584 -208.81.48.0/21 19223 -208.81.56.0/24 40866 -208.81.57.0/24 23005 -208.81.58.0/23 21559 -208.81.60.0/22 40393 -208.81.64.0/24 14600 -208.81.65.0/24 205272 -208.81.66.0/24 205272 -208.81.68.0/24 14600 -208.81.72.0/21 27621 -208.81.80.0/23 18827 -208.81.83.0/24 18827 -208.81.84.0/23 3257 -208.81.86.0/24 3257 -208.81.87.0/24 3561 -208.81.88.0/21 19345 -208.81.96.0/22 394646 -208.81.100.0/24 19271 -208.81.102.0/24 19271 -208.81.103.0/24 7015 -208.81.104.0/21 15328 -208.81.112.0/22 32912 -208.81.116.0/22 133847 -208.81.120.0/22 19432 -208.81.124.0/22 15013 -208.81.136.0/23 18959 -208.81.140.0/24 395814 -208.81.141.0/24 396420 -208.81.142.0/23 18482 -208.81.148.0/22 14230 -208.81.152.0/21 18913 -208.81.160.0/22 36290 -208.81.164.0/22 40065 -208.81.168.0/21 30526 -208.81.176.0/21 19383 -208.81.184.0/23 19559 -208.81.188.0/22 15169 -208.81.192.0/21 26123 -208.81.200.0/22 21859 -208.81.204.0/23 53594 -208.81.208.0/24 396987 -208.81.210.0/23 12227 -208.81.212.0/22 15000 -208.81.216.0/22 18527 -208.81.220.0/24 29863 -208.81.223.0/24 6461 -208.81.224.0/21 19709 -208.81.236.0/22 19740 -208.81.254.0/23 19652 -208.82.0.0/22 16674 -208.82.4.0/24 20223 -208.82.5.0/24 27638 -208.82.6.0/24 20216 -208.82.7.0/24 20223 -208.82.8.0/23 35847 -208.82.10.0/24 7332 -208.82.11.0/24 3549 -208.82.12.0/22 31769 -208.82.16.0/22 13535 -208.82.21.0/24 20100 -208.82.22.0/23 20100 -208.82.25.0/24 21904 -208.82.31.0/24 11402 -208.82.36.0/22 20373 -208.82.40.0/21 19215 -208.82.48.0/21 20125 -208.82.64.0/22 19383 -208.82.68.0/22 7782 -208.82.72.0/22 205411 -208.82.76.0/23 13977 -208.82.79.0/24 13536 -208.82.80.0/22 23295 -208.82.84.0/22 393713 -208.82.88.0/21 23419 -208.82.96.0/21 396097 -208.82.104.0/21 15164 -208.82.112.0/21 33322 -208.82.120.0/22 10929 -208.82.124.0/22 22134 -208.82.128.0/22 17185 -208.82.132.0/22 36645 -208.82.136.0/21 32524 -208.82.144.0/21 23304 -208.82.152.0/21 20038 -208.82.160.0/22 40805 -208.82.164.0/22 11269 -208.82.168.0/22 55247 -208.82.176.0/22 17359 -208.82.180.0/22 39998 -208.82.184.0/21 15231 -208.82.192.0/23 14922 -208.82.195.0/24 7172 -208.82.196.0/24 14922 -208.82.197.0/24 7172 -208.82.198.0/24 14922 -208.82.199.0/24 7172 -208.82.200.0/22 14899 -208.82.204.0/22 11734 -208.82.208.0/22 7381 -208.82.212.0/22 14244 -208.82.216.0/22 16705 -208.82.220.0/22 16509 -208.82.224.0/22 13337 -208.82.228.0/22 21576 -208.82.232.0/24 46601 -208.82.233.0/24 11475 -208.82.234.0/23 11475 -208.82.236.0/22 22414 -208.82.240.0/21 25677 -208.82.248.0/21 15102 -208.83.0.0/23 30377 -208.83.2.0/23 395336 -208.83.4.0/22 395336 -208.83.8.0/22 16567 -208.83.16.0/24 5715 -208.83.17.0/24 5006 -208.83.18.0/24 15219 -208.83.19.0/24 40160 -208.83.20.0/22 30217 -208.83.24.0/21 26914 -208.83.32.0/23 20164 -208.83.34.0/24 20164 -208.83.35.0/24 17054 -208.83.36.0/24 29807 -208.83.37.0/24 395522 -208.83.38.0/24 395902 -208.83.40.0/21 11924 -208.83.48.0/22 14244 -208.83.56.0/22 11038 -208.83.60.0/22 36529 -208.83.64.0/21 22438 -208.83.72.0/22 23314 -208.83.76.0/22 15085 -208.83.80.0/21 11594 -208.83.91.0/24 205817 -208.83.92.0/22 17099 -208.83.96.0/21 22937 -208.83.104.0/21 40386 -208.83.112.0/23 26074 -208.83.116.0/22 23082 -208.83.120.0/23 46887 -208.83.122.0/24 46887 -208.83.123.0/24 40725 -208.83.124.0/22 46887 -208.83.128.0/24 18749 -208.83.131.0/24 18749 -208.83.132.0/22 14091 -208.83.136.0/24 13916 -208.83.137.0/24 22843 -208.83.138.0/24 13916 -208.83.139.0/24 22843 -208.83.140.0/22 15085 -208.83.144.0/21 26153 -208.83.152.0/21 12022 -208.83.160.0/22 17043 -208.83.164.0/22 19368 -208.83.168.0/21 33176 -208.83.176.0/22 22391 -208.83.180.0/24 22391 -208.83.184.0/21 20300 -208.83.192.0/21 13857 -208.83.200.0/21 25754 -208.83.208.0/21 20161 -208.83.216.0/24 11433 -208.83.218.0/24 26637 -208.83.220.0/22 40475 -208.83.224.0/24 6315 -208.83.225.0/24 54329 -208.83.226.0/23 54329 -208.83.228.0/22 54329 -208.83.232.0/21 62489 -208.83.240.0/22 19071 -208.83.244.0/22 30303 -208.83.248.0/21 6461 -208.84.0.0/22 8075 -208.84.4.0/24 8075 -208.84.8.0/23 22752 -208.84.11.0/24 22752 -208.84.12.0/22 62642 -208.84.16.0/22 40031 -208.84.20.0/22 30072 -208.84.24.0/24 22911 -208.84.25.0/24 5033 -208.84.27.0/24 23321 -208.84.32.0/22 32802 -208.84.36.0/22 6327 -208.84.40.0/22 17240 -208.84.44.0/23 209 -208.84.48.0/22 3257 -208.84.52.0/23 3257 -208.84.54.0/24 3257 -208.84.55.0/24 3561 -208.84.56.0/21 26747 -208.84.64.0/24 52129 -208.84.65.0/24 26211 -208.84.66.0/24 26211 -208.84.67.0/24 22843 -208.84.68.0/22 23314 -208.84.72.0/22 26156 -208.84.76.0/22 30027 -208.84.80.0/21 6762 -208.84.88.0/23 396135 -208.84.90.0/24 174 -208.84.91.0/24 396369 -208.84.92.0/23 174 -208.84.94.0/23 395244 -208.84.104.0/22 22652 -208.84.108.0/22 36798 -208.84.112.0/21 16912 -208.84.120.0/22 26199 -208.84.124.0/22 47027 -208.84.128.0/22 33491 -208.84.132.0/22 19531 -208.84.136.0/22 11353 -208.84.144.0/21 396300 -208.84.152.0/22 46562 -208.84.156.0/22 40181 -208.84.160.0/24 14618 -208.84.166.0/24 26828 -208.84.168.0/21 7029 -208.84.176.0/23 22589 -208.84.180.0/22 26948 -208.84.184.0/22 22955 -208.84.188.0/22 25928 -208.84.192.0/21 22581 -208.84.200.0/21 46408 -208.84.208.0/21 23302 -208.84.216.0/22 17123 -208.84.220.0/22 25764 -208.84.224.0/22 19419 -208.84.231.0/24 27379 -208.84.232.0/24 33131 -208.84.236.0/24 33131 -208.84.238.0/24 33131 -208.84.240.0/21 40260 -208.84.248.0/21 26076 -208.85.0.0/21 40244 -208.85.12.0/22 25851 -208.85.28.0/22 5668 -208.85.32.0/22 393460 -208.85.36.0/22 1246 -208.85.40.0/22 40428 -208.85.46.0/23 40428 -208.85.48.0/21 19795 -208.85.56.0/24 23337 -208.85.60.0/22 27400 -208.85.64.0/21 25885 -208.85.72.0/23 11999 -208.85.74.0/24 11999 -208.85.76.0/24 8220 -208.85.77.0/24 26220 -208.85.78.0/23 26220 -208.85.80.0/22 6579 -208.85.84.0/22 812 -208.85.88.0/22 11138 -208.85.96.0/23 16507 -208.85.98.0/24 3549 -208.85.99.0/24 33639 -208.85.100.0/22 14070 -208.85.104.0/23 20129 -208.85.106.0/24 23234 -208.85.107.0/24 20129 -208.85.112.0/22 40191 -208.85.116.0/22 27307 -208.85.120.0/22 30144 -208.85.124.0/22 18830 -208.85.128.0/24 10397 -208.85.131.0/24 26079 -208.85.132.0/24 26079 -208.85.133.0/24 10397 -208.85.134.0/23 10397 -208.85.137.0/24 33680 -208.85.138.0/23 33680 -208.85.143.0/24 33680 -208.85.152.0/22 11337 -208.85.156.0/22 328179 -208.85.160.0/23 25740 -208.85.162.0/24 25740 -208.85.164.0/22 40569 -208.85.168.0/22 29832 -208.85.172.0/22 15189 -208.85.176.0/21 16654 -208.85.184.0/22 8018 -208.85.188.0/22 22663 -208.85.192.0/21 36394 -208.85.200.0/21 23308 -208.85.212.0/22 15247 -208.85.216.0/21 36493 -208.85.224.0/21 32719 -208.85.232.0/21 13857 -208.85.240.0/22 29889 -208.85.244.0/22 19636 -208.85.248.0/21 23422 -208.86.0.0/22 36529 -208.86.4.0/23 33586 -208.86.6.0/23 17389 -208.86.8.0/21 17253 -208.86.16.0/24 14160 -208.86.18.0/23 14160 -208.86.20.0/23 14160 -208.86.24.0/22 33368 -208.86.28.0/23 22104 -208.86.30.0/24 22104 -208.86.36.0/23 23308 -208.86.38.0/24 23308 -208.86.39.0/24 54912 -208.86.40.0/22 32746 -208.86.44.0/22 25649 -208.86.48.0/21 29963 -208.86.56.0/21 33638 -208.86.64.0/21 393381 -208.86.72.0/21 18649 -208.86.80.0/22 22253 -208.86.84.0/22 396924 -208.86.92.0/22 30708 -208.86.96.0/23 16563 -208.86.98.0/23 394997 -208.86.100.0/22 36327 -208.86.104.0/24 21509 -208.86.108.0/23 23442 -208.86.110.0/24 23442 -208.86.111.0/24 29742 -208.86.112.0/24 12129 -208.86.113.0/24 46459 -208.86.114.0/23 54714 -208.86.116.0/22 14721 -208.86.120.0/21 31915 -208.86.128.0/21 26344 -208.86.136.0/22 14549 -208.86.140.0/22 14453 -208.86.144.0/24 394467 -208.86.145.0/24 14244 -208.86.146.0/23 14244 -208.86.148.0/23 22886 -208.86.152.0/21 32244 -208.86.160.0/22 35862 -208.86.164.0/22 31893 -208.86.168.0/23 32077 -208.86.172.0/22 40552 -208.86.176.0/21 11171 -208.86.184.0/21 17054 -208.86.192.0/22 17279 -208.86.196.0/22 19710 -208.86.200.0/24 52129 -208.86.201.0/24 22843 -208.86.202.0/23 26211 -208.86.204.0/23 53798 -208.86.207.0/24 40563 -208.86.208.0/22 33488 -208.86.212.0/22 14389 -208.86.216.0/21 11763 -208.86.224.0/22 36236 -208.86.228.0/23 16947 -208.86.231.0/24 16947 -208.86.232.0/22 16568 -208.86.236.0/22 40585 -208.86.240.0/23 46926 -208.86.242.0/24 36595 -208.86.244.0/22 14265 -208.86.248.0/21 36444 -208.87.0.0/22 22150 -208.87.4.0/22 23176 -208.87.8.0/22 22107 -208.87.12.0/24 32520 -208.87.13.0/24 54820 -208.87.14.0/24 54016 -208.87.15.0/24 54820 -208.87.16.0/22 32408 -208.87.20.0/22 40571 -208.87.24.0/21 33552 -208.87.32.0/21 18635 -208.87.40.0/22 40627 -208.87.44.0/22 32025 -208.87.48.0/22 14713 -208.87.52.0/22 19662 -208.87.56.0/22 19165 -208.87.60.0/23 19165 -208.87.64.0/21 40555 -208.87.72.0/22 19153 -208.87.76.0/22 11558 -208.87.80.0/22 23281 -208.87.84.0/22 15085 -208.87.88.0/22 40824 -208.87.93.0/24 21051 -208.87.94.0/23 21051 -208.87.96.0/23 23033 -208.87.98.0/23 46261 -208.87.100.0/22 46261 -208.87.106.0/23 40616 -208.87.109.0/24 26961 -208.87.110.0/24 26961 -208.87.112.0/22 30686 -208.87.116.0/24 30686 -208.87.117.0/24 22450 -208.87.120.0/21 30162 -208.87.138.0/23 33737 -208.87.140.0/22 26192 -208.87.144.0/22 36290 -208.87.148.0/22 35975 -208.87.152.0/22 40749 -208.87.156.0/22 30359 -208.87.160.0/23 855 -208.87.163.0/24 16713 -208.87.164.0/23 53889 -208.87.166.0/24 3491 -208.87.168.0/22 40558 -208.87.176.0/23 30276 -208.87.180.0/22 35984 -208.87.192.0/22 13368 -208.87.196.0/22 25999 -208.87.208.0/24 40612 -208.87.210.0/23 40612 -208.87.212.0/22 40612 -208.87.216.0/21 32354 -208.87.224.0/22 19578 -208.87.228.0/24 32284 -208.87.230.0/24 32284 -208.87.232.0/24 44444 -208.87.233.0/24 35788 -208.87.234.0/24 35788 -208.87.235.0/24 44444 -208.87.236.0/22 44444 -208.87.240.0/22 40676 -208.87.245.0/24 40689 -208.87.246.0/23 40689 -208.87.248.0/21 22053 -208.88.0.0/23 40668 -208.88.2.0/23 15644 -208.88.4.0/22 36218 -208.88.8.0/22 11071 -208.88.12.0/22 18789 -208.88.16.0/23 3361 -208.88.18.0/24 36824 -208.88.19.0/24 3361 -208.88.20.0/22 3361 -208.88.24.0/23 395157 -208.88.26.0/23 6597 -208.88.28.0/23 6597 -208.88.30.0/24 32788 -208.88.31.0/24 16671 -208.88.32.0/24 40752 -208.88.34.0/24 40752 -208.88.36.0/23 27550 -208.88.38.0/23 14701 -208.88.41.0/24 32362 -208.88.42.0/23 32362 -208.88.44.0/24 53451 -208.88.48.0/21 17185 -208.88.56.0/21 17248 -208.88.64.0/21 16610 -208.88.72.0/21 11989 -208.88.80.0/24 20223 -208.88.82.0/23 20223 -208.88.84.0/22 23446 -208.88.88.0/24 12147 -208.88.89.0/24 16432 -208.88.90.0/23 12147 -208.88.92.0/22 13337 -208.88.97.0/24 17319 -208.88.98.0/23 17319 -208.88.102.0/24 17319 -208.88.104.0/23 11386 -208.88.106.0/24 11386 -208.88.108.0/24 22652 -208.88.109.0/24 29931 -208.88.110.0/23 22652 -208.88.112.0/21 27400 -208.88.120.0/21 33724 -208.88.128.0/22 17223 -208.88.132.0/23 55249 -208.88.135.0/24 21878 -208.88.136.0/23 47071 -208.88.138.0/24 47071 -208.88.140.0/23 19968 -208.88.143.0/24 19968 -208.88.148.0/22 19949 -208.88.158.0/24 397415 -208.88.160.0/22 30445 -208.88.164.0/22 26225 -208.88.168.0/21 40749 -208.88.176.0/22 25875 -208.88.180.0/23 25875 -208.88.182.0/24 25875 -208.88.184.0/21 23498 -208.88.192.0/22 32593 -208.88.196.0/22 32678 -208.88.200.0/22 33097 -208.88.204.0/24 11811 -208.88.208.0/24 14618 -208.88.216.0/21 36327 -208.88.224.0/22 40824 -208.88.228.0/22 19284 -208.88.232.0/22 14287 -208.88.236.0/22 46552 -208.88.240.0/22 19019 -208.88.244.0/24 16437 -208.88.248.0/21 11525 -208.89.0.0/22 16908 -208.89.4.0/23 17359 -208.89.6.0/24 17359 -208.89.7.0/24 7018 -208.89.9.0/24 396362 -208.89.10.0/24 12154 -208.89.12.0/22 11054 -208.89.16.0/22 40615 -208.89.20.0/22 25843 -208.89.24.0/22 14860 -208.89.32.0/22 63472 -208.89.36.0/22 40772 -208.89.40.0/21 22992 -208.89.48.0/21 33361 -208.89.56.0/22 11637 -208.89.60.0/22 33083 -208.89.64.0/23 22886 -208.89.66.0/24 40778 -208.89.67.0/24 29802 -208.89.70.0/24 394610 -208.89.71.0/24 40778 -208.89.76.0/23 40648 -208.89.79.0/24 40648 -208.89.80.0/23 23485 -208.89.84.0/22 33705 -208.89.92.0/22 40757 -208.89.96.0/22 40773 -208.89.100.0/22 20081 -208.89.104.0/22 53872 -208.89.108.0/22 22103 -208.89.112.0/22 22571 -208.89.116.0/22 13767 -208.89.120.0/21 33168 -208.89.128.0/22 33164 -208.89.132.0/22 19693 -208.89.136.0/22 40738 -208.89.140.0/22 13812 -208.89.144.0/21 40764 -208.89.152.0/21 33156 -208.89.160.0/22 33561 -208.89.164.0/22 393780 -208.89.168.0/21 17306 -208.89.176.0/22 393713 -208.89.180.0/22 19105 -208.89.184.0/22 15145 -208.89.192.0/21 26452 -208.89.200.0/21 18851 -208.89.211.0/24 32875 -208.89.215.0/24 32875 -208.89.216.0/21 62904 -208.89.225.0/24 40666 -208.89.226.0/24 40666 -208.89.228.0/22 11269 -208.89.232.0/22 17088 -208.89.236.0/23 17088 -208.89.239.0/24 17088 -208.89.244.0/22 393839 -208.89.248.0/22 40790 -208.89.252.0/22 40834 -208.90.0.0/22 393895 -208.90.8.0/21 40837 -208.90.16.0/24 31834 -208.90.18.0/23 31834 -208.90.20.0/22 31834 -208.90.24.0/22 14653 -208.90.28.0/23 23498 -208.90.30.0/24 22742 -208.90.31.0/24 14653 -208.90.32.0/21 40193 -208.90.40.0/22 32654 -208.90.48.0/22 36302 -208.90.52.0/22 40553 -208.90.56.0/23 16417 -208.90.58.0/24 16417 -208.90.60.0/24 16417 -208.90.62.0/23 16417 -208.90.68.0/22 393996 -208.90.72.0/22 26239 -208.90.80.0/21 22995 -208.90.88.0/22 22221 -208.90.96.0/21 40867 -208.90.104.0/21 40581 -208.90.112.0/22 11139 -208.90.116.0/24 21945 -208.90.118.0/23 31995 -208.90.120.0/22 40564 -208.90.124.0/22 11767 -208.90.128.0/21 27020 -208.90.136.0/23 23391 -208.90.138.0/24 23391 -208.90.139.0/24 32448 -208.90.140.0/22 21688 -208.90.144.0/22 17103 -208.90.148.0/22 23018 -208.90.152.0/22 13909 -208.90.156.0/23 46691 -208.90.160.0/21 13451 -208.90.168.0/22 6456 -208.90.172.0/23 53274 -208.90.174.0/23 27631 -208.90.176.0/21 17385 -208.90.184.0/22 40187 -208.90.188.0/22 36489 -208.90.192.0/21 22438 -208.90.202.0/24 46682 -208.90.203.0/24 10753 -208.90.204.0/24 13577 -208.90.205.0/24 2828 -208.90.207.0/24 13577 -208.90.212.0/22 32329 -208.90.216.0/21 36295 -208.90.224.0/23 32413 -208.90.226.0/24 32413 -208.90.227.0/24 3356 -208.90.232.0/22 40915 -208.90.236.0/24 3561 -208.90.237.0/24 701 -208.90.238.0/23 33151 -208.90.240.0/21 35911 -208.90.248.0/21 19242 -208.91.0.0/22 40816 -208.91.4.0/22 19544 -208.91.8.0/24 22006 -208.91.10.0/23 22006 -208.91.12.0/22 22006 -208.91.16.0/22 33683 -208.91.20.0/22 30423 -208.91.28.0/22 40795 -208.91.37.0/24 15019 -208.91.38.0/23 15019 -208.91.40.0/22 40922 -208.91.44.0/22 12042 -208.91.48.0/22 11734 -208.91.52.0/22 40947 -208.91.56.0/24 11492 -208.91.59.0/24 11492 -208.91.60.0/22 14244 -208.91.64.0/21 40861 -208.91.72.0/23 17361 -208.91.76.0/23 17361 -208.91.80.0/21 32010 -208.91.88.0/23 46437 -208.91.92.0/22 46437 -208.91.96.0/22 40661 -208.91.100.0/24 209 -208.91.104.0/21 35913 -208.91.112.0/22 40934 -208.91.116.0/23 40722 -208.91.118.0/24 40722 -208.91.120.0/22 31769 -208.91.124.0/22 22592 -208.91.128.0/21 15085 -208.91.136.0/23 6296 -208.91.138.0/23 7381 -208.91.140.0/22 6296 -208.91.144.0/23 22009 -208.91.146.0/24 22009 -208.91.147.0/24 19271 -208.91.148.0/22 27233 -208.91.152.0/22 14721 -208.91.158.0/23 23286 -208.91.160.0/22 30184 -208.91.164.0/22 46099 -208.91.176.0/21 10958 -208.91.184.0/22 40943 -208.91.188.0/22 395841 -208.91.192.0/22 33392 -208.91.196.0/23 40034 -208.91.198.0/23 394695 -208.91.200.0/23 36841 -208.91.202.0/24 36841 -208.91.203.0/24 25624 -208.91.206.0/23 40539 -208.91.208.0/21 40667 -208.91.216.0/21 30524 -208.91.224.0/24 19878 -208.91.228.0/22 19878 -208.91.232.0/22 26461 -208.91.236.0/22 40458 -208.91.240.0/22 29765 -208.91.248.0/22 46095 -208.91.252.0/22 40931 -208.92.0.0/21 20419 -208.92.12.0/22 18590 -208.92.16.0/21 22639 -208.92.24.0/22 27419 -208.92.28.0/22 22438 -208.92.32.0/24 27374 -208.92.36.0/23 23268 -208.92.39.0/24 23268 -208.92.41.0/24 22883 -208.92.42.0/24 22883 -208.92.44.0/22 22883 -208.92.48.0/24 395434 -208.92.50.0/24 55053 -208.92.51.0/24 32753 -208.92.52.0/22 13360 -208.92.56.0/21 40780 -208.92.64.0/22 14701 -208.92.68.0/24 46177 -208.92.70.0/23 46177 -208.92.72.0/21 29866 -208.92.80.0/23 19950 -208.92.88.0/22 22552 -208.92.92.0/22 26665 -208.92.96.0/21 7412 -208.92.104.0/21 22408 -208.92.123.0/24 63395 -208.92.124.0/22 11241 -208.92.128.0/22 40946 -208.92.132.0/22 603 -208.92.136.0/21 32584 -208.92.144.0/24 26541 -208.92.148.0/23 26541 -208.92.152.0/23 40437 -208.92.156.0/22 14371 -208.92.160.0/21 19237 -208.92.168.0/21 2386 -208.92.176.0/22 46182 -208.92.184.0/22 26253 -208.92.188.0/22 7018 -208.92.192.0/22 36472 -208.92.196.0/22 25660 -208.92.200.0/22 46189 -208.92.204.0/22 17359 -208.92.208.0/21 36536 -208.92.216.0/21 53292 -208.92.224.0/22 32757 -208.92.228.0/23 22803 -208.92.230.0/24 22803 -208.92.232.0/22 13851 -208.92.236.0/24 11944 -208.92.240.0/22 46155 -208.92.245.0/24 46155 -208.92.246.0/23 46155 -208.92.248.0/22 14895 -208.92.252.0/22 46083 -208.93.4.0/22 19710 -208.93.8.0/23 54900 -208.93.10.0/23 32100 -208.93.12.0/22 46188 -208.93.16.0/21 19133 -208.93.24.0/22 6318 -208.93.29.0/24 6318 -208.93.30.0/23 6318 -208.93.32.0/22 40111 -208.93.40.0/21 21808 -208.93.48.0/24 33103 -208.93.49.0/24 19207 -208.93.51.0/24 19207 -208.93.56.0/22 46209 -208.93.60.0/22 46258 -208.93.64.0/21 23352 -208.93.72.0/21 26281 -208.93.80.0/21 46687 -208.93.88.0/22 13331 -208.93.92.0/22 29844 -208.93.96.0/22 53760 -208.93.100.0/24 394448 -208.93.101.0/24 47657 -208.93.102.0/24 394448 -208.93.103.0/24 14618 -208.93.104.0/22 26054 -208.93.108.0/22 40860 -208.93.112.0/21 36820 -208.93.124.0/22 174 -208.93.128.0/21 40459 -208.93.152.0/22 40913 -208.93.156.0/22 46279 -208.93.160.0/24 26228 -208.93.161.0/24 396840 -208.93.162.0/24 26228 -208.93.163.0/24 7018 -208.93.164.0/22 3549 -208.93.176.0/21 26253 -208.93.184.0/21 23497 -208.93.192.0/22 46562 -208.93.196.0/22 14291 -208.93.200.0/21 29866 -208.93.208.0/22 46240 -208.93.212.0/22 22821 -208.93.216.0/22 29757 -208.93.220.0/22 27626 -208.93.224.0/23 11774 -208.93.226.0/23 40160 -208.93.228.0/22 29893 -208.93.232.0/21 20161 -208.93.240.0/24 25785 -208.93.241.0/24 26630 -208.93.242.0/23 30305 -208.93.244.0/23 23442 -208.93.246.0/24 23442 -208.93.247.0/24 16953 -208.93.248.0/21 35891 -208.94.0.0/22 36323 -208.94.4.0/22 12182 -208.94.8.0/21 7046 -208.94.16.0/22 46339 -208.94.20.0/22 46263 -208.94.24.0/23 46235 -208.94.26.0/24 46235 -208.94.28.0/22 26546 -208.94.32.0/22 53591 -208.94.36.0/22 54548 -208.94.40.0/21 14088 -208.94.48.0/22 393657 -208.94.53.0/24 397651 -208.94.56.0/22 32477 -208.94.60.0/22 46357 -208.94.64.0/22 36529 -208.94.68.0/22 13971 -208.94.72.0/22 40926 -208.94.76.0/24 40926 -208.94.77.0/24 22631 -208.94.78.0/23 40926 -208.94.80.0/21 46353 -208.94.88.0/21 26479 -208.94.96.0/21 17248 -208.94.104.0/22 22652 -208.94.108.0/24 22652 -208.94.109.0/24 54233 -208.94.110.0/23 22652 -208.94.112.0/22 40748 -208.94.116.0/22 40630 -208.94.120.0/23 23355 -208.94.126.0/24 23355 -208.94.128.0/22 46359 -208.94.136.0/23 36116 -208.94.138.0/24 46887 -208.94.144.0/23 16552 -208.94.147.0/24 16552 -208.94.148.0/22 16552 -208.94.152.0/24 16759 -208.94.153.0/24 29816 -208.94.154.0/24 36488 -208.94.155.0/24 16967 -208.94.156.0/22 12130 -208.94.160.0/21 14453 -208.94.170.0/23 17149 -208.94.172.0/22 8001 -208.94.176.0/21 15344 -208.94.184.0/22 35981 -208.94.188.0/22 2386 -208.94.192.0/22 36184 -208.94.196.0/24 63052 -208.94.197.0/24 852 -208.94.198.0/24 852 -208.94.199.0/24 63052 -208.94.200.0/21 36610 -208.94.208.0/21 14220 -208.94.216.0/24 13629 -208.94.219.0/24 13629 -208.94.220.0/23 13629 -208.94.224.0/21 19710 -208.94.232.0/22 40824 -208.94.236.0/22 32015 -208.94.240.0/21 19969 -208.94.248.0/23 46406 -208.94.250.0/24 7018 -208.94.251.0/24 46406 -208.94.252.0/24 11954 -208.94.255.0/24 11954 -208.95.0.0/22 36436 -208.95.8.0/21 27314 -208.95.16.0/22 17306 -208.95.20.0/22 63060 -208.95.24.0/21 36327 -208.95.32.0/22 46339 -208.95.36.0/22 22888 -208.95.48.0/22 32726 -208.95.52.0/23 46199 -208.95.55.0/24 46199 -208.95.56.0/23 13480 -208.95.58.0/24 13480 -208.95.60.0/22 36707 -208.95.64.0/21 26725 -208.95.72.0/23 27501 -208.95.74.0/24 27501 -208.95.75.0/24 393780 -208.95.76.0/23 1446 -208.95.78.0/23 27501 -208.95.80.0/22 23314 -208.95.88.0/21 25651 -208.95.97.0/24 46428 -208.95.102.0/23 397429 -208.95.104.0/22 32915 -208.95.108.0/22 17368 -208.95.112.0/22 53334 -208.95.116.0/22 46438 -208.95.120.0/23 46434 -208.95.125.0/24 46434 -208.95.126.0/24 46434 -208.95.128.0/22 3549 -208.95.132.0/22 19795 -208.95.136.0/21 46437 -208.95.144.0/21 14379 -208.95.152.0/22 14492 -208.95.156.0/22 36248 -208.95.160.0/21 2386 -208.95.168.0/22 46443 -208.95.176.0/21 40749 -208.95.184.0/23 46461 -208.95.186.0/24 46461 -208.95.187.0/24 33382 -208.95.188.0/22 15342 -208.95.192.0/21 18649 -208.95.200.0/21 46416 -208.95.208.0/21 46449 -208.95.216.0/22 23441 -208.95.220.0/23 46460 -208.95.224.0/21 14307 -208.95.240.0/24 40068 -208.95.241.0/24 14830 -208.95.242.0/23 40068 -208.95.244.0/22 40068 -208.95.248.0/22 46735 -208.95.255.0/24 19024 -208.96.0.0/18 26228 -208.96.64.0/18 23184 -208.96.128.0/21 27742 -208.96.136.0/22 27742 -208.96.140.0/23 20299 -208.96.143.0/24 20299 -208.96.144.0/20 46149 -208.96.160.0/20 22418 -208.96.176.0/21 394806 -208.96.188.0/22 394806 -208.96.192.0/19 16399 -208.96.224.0/20 16399 -208.96.240.0/23 16399 -208.96.242.0/24 2707 -208.96.243.0/24 16399 -208.96.244.0/22 16399 -208.96.248.0/21 16399 -208.97.0.0/22 31877 -208.97.4.0/24 31877 -208.97.5.0/24 394613 -208.97.6.0/23 31877 -208.97.8.0/23 63010 -208.97.10.0/23 31877 -208.97.12.0/22 31877 -208.97.16.0/24 63010 -208.97.17.0/24 31877 -208.97.18.0/23 31877 -208.97.20.0/22 31877 -208.97.24.0/21 31877 -208.97.32.0/20 5009 -208.97.48.0/20 30247 -208.97.64.0/18 812 -208.97.128.0/18 26347 -208.97.192.0/21 3257 -208.97.200.0/22 3257 -208.97.204.0/24 3257 -208.97.205.0/24 46401 -208.97.206.0/23 3257 -208.97.208.0/22 3257 -208.97.212.0/23 3257 -208.97.214.0/24 22973 -208.97.215.0/24 3257 -208.97.216.0/24 3257 -208.97.217.0/24 32648 -208.97.218.0/24 3257 -208.97.219.0/24 36613 -208.97.220.0/22 3257 -208.97.224.0/19 3257 -208.98.0.0/18 46844 -208.98.128.0/18 15305 -208.98.192.0/20 6327 -208.98.208.0/21 6327 -208.98.222.0/23 20365 -208.98.224.0/22 25983 -208.98.228.0/24 25983 -208.98.229.0/24 26025 -208.98.230.0/23 25983 -208.98.232.0/24 16583 -208.98.233.0/24 25983 -208.98.234.0/24 32521 -208.98.235.0/24 25983 -208.98.236.0/22 25983 -208.98.240.0/21 25983 -208.98.248.0/23 25983 -208.98.250.0/24 16583 -208.98.251.0/24 25983 -208.98.252.0/22 25983 -208.99.64.0/20 29789 -208.99.80.0/21 29789 -208.99.88.0/23 29789 -208.99.90.0/24 30361 -208.99.91.0/24 29789 -208.99.92.0/22 29789 -208.99.96.0/20 19830 -208.99.112.0/20 16724 -208.99.128.0/19 19662 -208.99.160.0/21 7381 -208.99.168.0/22 7381 -208.99.172.0/23 7381 -208.99.174.0/24 29708 -208.99.175.0/24 7381 -208.99.176.0/20 7381 -208.99.192.0/21 25700 -208.99.200.0/24 25700 -208.99.202.0/23 25700 -208.99.204.0/22 25700 -208.99.208.0/22 25700 -208.99.212.0/24 18530 -208.99.214.0/23 25700 -208.99.216.0/21 25700 -208.99.224.0/21 14374 -208.99.232.0/23 14374 -208.99.234.0/24 14374 -208.99.236.0/22 14374 -208.99.240.0/24 46887 -208.99.241.0/24 16657 -208.99.242.0/23 46887 -208.99.244.0/22 46887 -208.99.248.0/24 30367 -208.99.249.0/24 32830 -208.99.250.0/23 46887 -208.99.252.0/23 46887 -208.99.254.0/24 46887 -208.99.255.0/24 13510 -208.100.0.0/18 32748 -208.100.64.0/22 32440 -208.100.68.0/23 32440 -208.100.80.0/22 32440 -208.100.84.0/23 32440 -208.100.92.0/22 32440 -208.100.112.0/22 32440 -208.100.116.0/24 32440 -208.100.124.0/22 32440 -208.100.128.0/19 4181 -208.100.160.0/21 4181 -208.100.168.0/22 4181 -208.100.172.0/23 4181 -208.100.174.0/24 4181 -208.100.175.0/24 63069 -208.100.176.0/21 4181 -208.100.184.0/22 4181 -208.100.188.0/24 63069 -208.100.189.0/24 4181 -208.100.190.0/23 4181 -208.100.192.0/23 14390 -208.100.194.0/24 17054 -208.100.196.0/22 14390 -208.100.200.0/21 27553 -208.100.208.0/20 14390 -208.100.224.0/20 7029 -208.100.240.0/22 17054 -208.100.244.0/22 14390 -208.100.248.0/21 17054 -208.101.0.0/18 36351 -208.101.64.0/18 35911 -208.101.128.0/18 7029 -208.101.192.0/24 31877 -208.101.193.0/24 21668 -208.101.194.0/23 21668 -208.101.196.0/23 21668 -208.101.198.0/24 21668 -208.101.199.0/24 46849 -208.101.200.0/24 4452 -208.101.201.0/24 20115 -208.101.202.0/24 20115 -208.101.203.0/24 4452 -208.101.204.0/24 4452 -208.101.207.0/24 393856 -208.101.208.0/24 393856 -208.101.209.0/24 27258 -208.101.210.0/23 21668 -208.101.212.0/22 40317 -208.101.216.0/23 40317 -208.101.218.0/23 21627 -208.101.220.0/23 40317 -208.101.227.0/24 33234 -208.101.229.0/24 21668 -208.101.232.0/23 7029 -208.101.234.0/23 33234 -208.101.236.0/24 33234 -208.101.238.0/24 13943 -208.101.239.0/24 46449 -208.101.240.0/20 14230 -208.102.0.0/16 6181 -208.103.0.0/21 32703 -208.103.8.0/22 32703 -208.103.12.0/23 32703 -208.103.14.0/24 54225 -208.103.15.0/24 53989 -208.103.16.0/21 32703 -208.103.24.0/21 22110 -208.103.32.0/21 53256 -208.103.40.0/22 22110 -208.103.44.0/23 32703 -208.103.46.0/23 19112 -208.103.48.0/24 46148 -208.103.49.0/24 32703 -208.103.50.0/23 32703 -208.103.52.0/22 22110 -208.103.56.0/24 32703 -208.103.57.0/24 53989 -208.103.58.0/23 32703 -208.103.60.0/22 32703 -208.103.64.0/20 23100 -208.103.80.0/20 18649 -208.103.96.0/20 21686 -208.103.112.0/24 33154 -208.103.113.0/24 40549 -208.103.114.0/23 40549 -208.103.116.0/22 40549 -208.103.120.0/21 40549 -208.103.128.0/20 398143 -208.103.144.0/22 394871 -208.103.148.0/23 36511 -208.103.151.0/24 394871 -208.103.153.0/24 393908 -208.103.154.0/24 17139 -208.103.155.0/24 10796 -208.103.156.0/24 395126 -208.103.158.0/24 32586 -208.103.159.0/24 16696 -208.103.160.0/24 7459 -208.103.161.0/24 394835 -208.103.163.0/24 396231 -208.103.165.0/24 1632 -208.103.166.0/24 64267 -208.103.167.0/24 17218 -208.103.168.0/24 46746 -208.103.169.0/24 19186 -208.103.170.0/24 395229 -208.103.171.0/24 393845 -208.103.172.0/24 31858 -208.103.173.0/24 26372 -208.103.174.0/24 31852 -208.103.177.0/24 394195 -208.103.178.0/24 40956 -208.103.179.0/24 22396 -208.103.180.0/24 393780 -208.103.181.0/24 63169 -208.103.183.0/24 19798 -208.103.184.0/24 19935 -208.103.186.0/24 22536 -208.103.187.0/24 396326 -208.103.188.0/24 14877 -208.103.189.0/24 30156 -208.103.190.0/24 396953 -208.103.191.0/24 396848 -208.103.192.0/20 13388 -208.103.208.0/21 13388 -208.103.216.0/22 13388 -208.103.220.0/22 26170 -208.103.224.0/19 23184 -208.104.0.0/17 14615 -208.104.128.0/20 14615 -208.104.144.0/21 14615 -208.104.152.0/24 394327 -208.104.153.0/24 14615 -208.104.154.0/23 14615 -208.104.156.0/23 14615 -208.104.158.0/24 14615 -208.104.159.0/24 394327 -208.104.160.0/19 14615 -208.104.192.0/18 14615 -208.105.0.0/19 12271 -208.105.32.0/20 12271 -208.105.48.0/21 12271 -208.105.56.0/22 12271 -208.105.60.0/24 12271 -208.105.61.0/24 395095 -208.105.62.0/23 12271 -208.105.64.0/19 12271 -208.105.96.0/19 11351 -208.105.128.0/21 11351 -208.105.136.0/22 11351 -208.105.140.0/24 11351 -208.105.141.0/24 20275 -208.105.142.0/23 11351 -208.105.144.0/20 11351 -208.105.160.0/19 11351 -208.105.192.0/18 11351 -208.106.0.0/17 7065 -208.106.128.0/17 14992 -208.107.0.0/17 11232 -208.107.128.0/18 11232 -208.107.192.0/19 11232 -208.107.224.0/20 11232 -208.107.240.0/21 11232 -208.107.248.0/22 33686 -208.107.252.0/24 33686 -208.107.253.0/24 11232 -208.107.254.0/24 11232 -208.107.255.0/24 33686 -208.108.0.0/18 600 -208.108.64.0/20 600 -208.108.80.0/20 40812 -208.108.96.0/20 29941 -208.108.112.0/21 14734 -208.108.120.0/21 62724 -208.108.128.0/21 600 -208.108.136.0/21 394399 -208.108.144.0/21 20238 -208.108.152.0/21 26898 -208.108.160.0/21 30290 -208.108.168.0/21 600 -208.108.176.0/20 600 -208.108.192.0/21 30298 -208.108.200.0/21 40732 -208.108.208.0/20 31777 -208.108.224.0/22 19902 -208.108.228.0/24 62724 -208.108.229.0/24 600 -208.108.230.0/23 600 -208.108.232.0/23 46491 -208.108.234.0/23 600 -208.108.236.0/22 600 -208.108.240.0/20 600 -208.109.0.0/24 30148 -208.109.1.0/24 26496 -208.109.2.0/23 26496 -208.109.4.0/22 26496 -208.109.8.0/21 26496 -208.109.16.0/20 26496 -208.109.32.0/19 26496 -208.109.64.0/18 26496 -208.109.128.0/20 26496 -208.109.144.0/21 44273 -208.109.152.0/24 44273 -208.109.153.0/24 26496 -208.109.154.0/23 26496 -208.109.156.0/24 26496 -208.109.157.0/24 44273 -208.109.158.0/24 44273 -208.109.159.0/24 26496 -208.109.160.0/19 26496 -208.109.192.0/18 26496 -208.110.0.0/19 3776 -208.110.32.0/20 22995 -208.110.64.0/19 32097 -208.110.96.0/19 25668 -208.110.128.0/20 13739 -208.110.144.0/22 13739 -208.110.148.0/24 14569 -208.110.149.0/24 13739 -208.110.150.0/23 13739 -208.110.152.0/23 13739 -208.110.154.0/24 53845 -208.110.155.0/24 13739 -208.110.156.0/22 13739 -208.110.160.0/21 35937 -208.110.168.0/23 7226 -208.110.170.0/23 35937 -208.110.172.0/22 35937 -208.110.176.0/21 26862 -208.110.184.0/22 26862 -208.110.188.0/23 26862 -208.110.190.0/24 26862 -208.110.191.0/24 2 -208.110.192.0/24 11025 -208.110.193.0/24 23218 -208.110.194.0/23 11025 -208.110.196.0/22 11025 -208.110.200.0/22 11025 -208.110.204.0/23 11025 -208.110.206.0/24 11025 -208.110.207.0/24 33662 -208.110.208.0/20 11025 -208.110.224.0/20 15250 -208.110.240.0/20 22561 -208.111.0.0/21 32083 -208.111.8.0/22 32083 -208.111.12.0/23 32083 -208.111.14.0/24 32083 -208.111.18.0/23 32083 -208.111.22.0/23 32083 -208.111.28.0/23 32083 -208.111.31.0/24 32083 -208.111.32.0/22 36236 -208.111.38.0/23 36236 -208.111.40.0/22 36236 -208.111.44.0/23 36236 -208.111.47.0/24 36236 -208.111.48.0/21 9607 -208.111.56.0/23 50837 -208.111.58.0/24 50837 -208.111.59.0/24 40300 -208.111.60.0/22 40300 -208.111.64.0/19 19515 -208.111.96.0/20 393924 -208.111.112.0/20 33623 -208.111.128.0/20 22822 -208.111.144.0/22 22822 -208.111.148.0/23 22822 -208.111.150.0/24 4989 -208.111.151.0/24 22822 -208.111.152.0/21 22822 -208.111.160.0/19 22822 -208.111.192.0/19 3593 -208.111.224.0/23 3593 -208.111.226.0/24 54906 -208.111.227.0/24 3593 -208.111.228.0/22 3593 -208.111.232.0/21 3593 -208.111.240.0/20 3593 -208.112.0.0/17 20021 -208.113.0.0/18 21570 -208.113.64.0/18 26228 -208.113.128.0/17 26347 -208.114.32.0/20 11650 -208.114.48.0/20 46616 -208.114.64.0/20 13368 -208.114.80.0/21 13368 -208.114.88.0/23 13368 -208.114.91.0/24 13368 -208.114.92.0/23 13368 -208.114.94.0/24 13368 -208.114.96.0/19 32806 -208.114.128.0/23 22995 -208.114.136.0/22 22995 -208.114.140.0/24 22995 -208.114.142.0/23 22995 -208.114.144.0/20 22995 -208.114.164.0/23 22995 -208.114.168.0/22 22995 -208.114.178.0/24 22995 -208.114.180.0/22 22995 -208.114.192.0/18 32592 -208.115.0.0/19 7029 -208.115.32.0/21 19271 -208.115.40.0/22 19271 -208.115.44.0/24 19271 -208.115.45.0/24 393959 -208.115.46.0/23 19271 -208.115.48.0/20 19271 -208.115.64.0/23 23278 -208.115.66.0/24 18601 -208.115.67.0/24 14976 -208.115.68.0/22 22827 -208.115.72.0/23 23277 -208.115.74.0/23 36392 -208.115.76.0/23 23279 -208.115.78.0/23 17082 -208.115.80.0/24 32775 -208.115.81.0/24 18444 -208.115.82.0/24 18444 -208.115.83.0/24 11176 -208.115.84.0/23 26925 -208.115.86.0/23 32778 -208.115.88.0/24 36339 -208.115.90.0/23 14976 -208.115.92.0/24 18601 -208.115.93.0/24 33700 -208.115.94.0/23 15198 -208.115.96.0/20 23033 -208.115.112.0/21 23033 -208.115.120.0/22 23033 -208.115.124.0/23 23033 -208.115.126.0/23 13722 -208.115.142.0/23 14609 -208.115.144.0/20 17385 -208.115.160.0/19 22968 -208.115.192.0/20 46475 -208.115.208.0/22 46475 -208.115.212.0/23 46475 -208.115.214.0/24 54103 -208.115.215.0/24 46475 -208.115.216.0/21 46475 -208.115.224.0/21 46475 -208.115.232.0/22 46475 -208.115.236.0/24 54103 -208.115.237.0/24 46475 -208.115.238.0/23 46475 -208.115.240.0/20 46475 -208.116.0.0/18 25653 -208.116.128.0/22 3257 -208.116.132.0/23 3257 -208.116.134.0/24 3257 -208.116.135.0/24 23029 -208.116.136.0/21 3257 -208.116.144.0/21 3257 -208.116.152.0/22 3257 -208.116.156.0/24 3257 -208.116.157.0/24 174 -208.116.158.0/23 3257 -208.116.160.0/22 3257 -208.116.164.0/23 3257 -208.116.166.0/24 3257 -208.116.167.0/24 17035 -208.116.168.0/21 3257 -208.116.176.0/20 3257 -208.116.192.0/21 3257 -208.116.200.0/23 3257 -208.116.202.0/23 40676 -208.116.204.0/24 40676 -208.116.205.0/24 3257 -208.116.206.0/23 3257 -208.116.208.0/24 3257 -208.116.209.0/24 63402 -208.116.210.0/23 3257 -208.116.212.0/22 3257 -208.116.216.0/24 32201 -208.116.217.0/24 3257 -208.116.218.0/23 3257 -208.116.220.0/22 3257 -208.116.224.0/20 3257 -208.116.240.0/23 3257 -208.116.242.0/23 33480 -208.116.244.0/22 3257 -208.116.248.0/21 3257 -208.117.0.0/18 32748 -208.117.64.0/20 16832 -208.117.80.0/21 6364 -208.117.88.0/24 33247 -208.117.89.0/24 64200 -208.117.90.0/23 64200 -208.117.92.0/24 396082 -208.117.93.0/24 6364 -208.117.94.0/24 13768 -208.117.95.0/24 174 -208.117.96.0/20 20412 -208.117.112.0/20 4181 -208.117.192.0/21 32592 -208.117.200.0/22 32592 -208.117.204.0/23 32592 -208.117.206.0/24 32592 -208.117.207.0/24 13760 -208.117.208.0/21 32592 -208.117.216.0/22 32592 -208.117.220.0/24 32592 -208.117.221.0/24 397103 -208.117.222.0/23 32592 -208.117.224.0/24 43515 -208.117.225.0/24 36040 -208.117.226.0/23 43515 -208.117.228.0/22 43515 -208.117.232.0/23 43515 -208.117.234.0/24 36040 -208.117.235.0/24 43515 -208.117.236.0/24 36040 -208.117.237.0/24 43515 -208.117.238.0/24 36040 -208.117.239.0/24 43515 -208.117.240.0/23 43515 -208.117.242.0/24 43515 -208.117.243.0/24 36040 -208.117.244.0/24 36040 -208.117.245.0/24 43515 -208.117.246.0/24 36040 -208.117.247.0/24 43515 -208.117.248.0/24 43515 -208.117.249.0/24 36040 -208.117.250.0/23 36040 -208.117.252.0/24 36040 -208.117.253.0/24 43515 -208.117.254.0/23 43515 -208.118.0.0/19 33363 -208.118.48.0/20 7296 -208.118.64.0/20 6327 -208.118.80.0/21 6327 -208.118.88.0/23 6327 -208.118.90.0/24 32856 -208.118.91.0/24 6327 -208.118.92.0/24 6327 -208.118.93.0/24 30500 -208.118.94.0/24 30500 -208.118.95.0/24 6327 -208.118.96.0/21 6327 -208.118.104.0/24 16583 -208.118.105.0/24 6327 -208.118.106.0/24 3397 -208.118.107.0/24 6327 -208.118.108.0/23 3397 -208.118.110.0/24 3397 -208.118.111.0/24 6327 -208.118.112.0/22 6327 -208.118.120.0/21 6327 -208.118.128.0/20 19171 -208.118.144.0/20 23260 -208.118.160.0/19 22925 -208.118.192.0/20 12261 -208.118.208.0/20 30466 -208.118.224.0/21 27552 -208.118.232.0/22 27552 -208.118.236.0/24 22147 -208.118.237.0/24 395213 -208.118.238.0/23 22147 -208.118.240.0/20 27382 -208.119.0.0/16 11686 -208.120.0.0/16 12271 -208.121.0.0/24 39961 -208.121.5.0/24 39961 -208.121.6.0/24 39961 -208.121.10.0/24 39961 -208.121.32.0/19 39961 -208.121.64.0/18 39961 -208.121.128.0/17 39961 -208.122.0.0/18 29791 -208.122.64.0/19 36794 -208.122.96.0/20 36794 -208.122.112.0/20 30221 -208.122.128.0/18 46476 -208.122.192.0/19 27589 -208.122.224.0/20 27630 -208.123.0.0/18 16904 -208.123.64.0/23 27325 -208.123.66.0/24 53629 -208.123.67.0/24 27325 -208.123.68.0/23 30145 -208.123.70.0/24 18499 -208.123.71.0/24 30145 -208.123.72.0/24 27325 -208.123.73.0/24 30312 -208.123.74.0/23 27325 -208.123.76.0/22 27325 -208.123.80.0/20 27325 -208.123.96.0/20 14860 -208.123.112.0/22 7828 -208.123.116.0/22 395092 -208.123.120.0/24 40393 -208.123.128.0/21 16832 -208.123.136.0/22 16832 -208.123.140.0/22 53903 -208.123.144.0/22 53903 -208.123.148.0/22 16832 -208.123.152.0/21 16832 -208.123.160.0/20 19689 -208.123.176.0/20 7029 -208.123.192.0/20 18897 -208.123.208.0/24 30500 -208.123.210.0/23 30500 -208.123.212.0/22 30500 -208.123.216.0/22 30500 -208.123.222.0/24 30500 -208.123.224.0/19 15129 -208.124.0.0/18 11427 -208.124.64.0/19 5742 -208.124.96.0/20 5742 -208.124.112.0/21 5742 -208.124.120.0/22 5742 -208.124.124.0/22 26734 -208.124.128.0/17 812 -208.125.0.0/21 12271 -208.125.8.0/22 12271 -208.125.12.0/24 12271 -208.125.13.0/24 13975 -208.125.14.0/23 12271 -208.125.16.0/20 12271 -208.125.32.0/19 11351 -208.125.64.0/18 11351 -208.125.128.0/20 11351 -208.125.144.0/24 11351 -208.125.145.0/24 46483 -208.125.146.0/23 11351 -208.125.148.0/22 11351 -208.125.152.0/21 11351 -208.125.160.0/19 11351 -208.125.192.0/19 11351 -208.125.224.0/22 11351 -208.125.228.0/23 11351 -208.125.230.0/24 32891 -208.125.231.0/24 11351 -208.125.232.0/21 11351 -208.125.240.0/20 11351 -208.126.0.0/21 5056 -208.126.8.0/22 5056 -208.126.12.0/24 16824 -208.126.13.0/24 5056 -208.126.14.0/24 5056 -208.126.15.0/24 63394 -208.126.16.0/22 5056 -208.126.20.0/23 5056 -208.126.22.0/24 5056 -208.126.23.0/24 30325 -208.126.24.0/22 5056 -208.126.28.0/23 5056 -208.126.30.0/23 62886 -208.126.32.0/24 396878 -208.126.33.0/24 5056 -208.126.34.0/23 5056 -208.126.36.0/22 18883 -208.126.40.0/21 5056 -208.126.48.0/24 16824 -208.126.49.0/24 5056 -208.126.50.0/23 5056 -208.126.52.0/24 397475 -208.126.53.0/24 5056 -208.126.54.0/23 5056 -208.126.56.0/23 46892 -208.126.58.0/23 30325 -208.126.60.0/22 5056 -208.126.64.0/23 5056 -208.126.66.0/24 5056 -208.126.67.0/24 63436 -208.126.68.0/23 62886 -208.126.70.0/23 394911 -208.126.72.0/24 18883 -208.126.73.0/24 22534 -208.126.74.0/24 19628 -208.126.75.0/24 11698 -208.126.76.0/23 5056 -208.126.78.0/24 30325 -208.126.79.0/24 13356 -208.126.80.0/23 5056 -208.126.82.0/24 5056 -208.126.83.0/24 63394 -208.126.84.0/24 18883 -208.126.85.0/24 5056 -208.126.86.0/23 5056 -208.126.88.0/22 63394 -208.126.92.0/22 5056 -208.126.96.0/22 5056 -208.126.100.0/24 5056 -208.126.101.0/24 63394 -208.126.102.0/23 5056 -208.126.104.0/22 19628 -208.126.108.0/22 5056 -208.126.112.0/23 5056 -208.126.114.0/24 397475 -208.126.115.0/24 396878 -208.126.116.0/24 53347 -208.126.117.0/24 5056 -208.126.118.0/23 5056 -208.126.120.0/24 53347 -208.126.121.0/24 5056 -208.126.122.0/23 46892 -208.126.124.0/23 63394 -208.126.126.0/24 63394 -208.126.127.0/24 5056 -208.126.128.0/23 5056 -208.126.130.0/24 5056 -208.126.131.0/24 13356 -208.126.132.0/24 46627 -208.126.133.0/24 5056 -208.126.134.0/23 5056 -208.126.136.0/24 5056 -208.126.137.0/24 13356 -208.126.138.0/23 30325 -208.126.140.0/22 5056 -208.126.144.0/24 5056 -208.126.145.0/24 18883 -208.126.146.0/23 46627 -208.126.148.0/22 22534 -208.126.152.0/23 5056 -208.126.154.0/23 18883 -208.126.156.0/22 5056 -208.126.160.0/23 396443 -208.126.162.0/23 5056 -208.126.164.0/23 5056 -208.126.166.0/23 30325 -208.126.168.0/24 62825 -208.126.169.0/24 5056 -208.126.170.0/23 5056 -208.126.172.0/23 18883 -208.126.174.0/23 5056 -208.126.176.0/24 62825 -208.126.177.0/24 396878 -208.126.178.0/23 5056 -208.126.180.0/23 18883 -208.126.182.0/23 5056 -208.126.184.0/22 5056 -208.126.188.0/23 5056 -208.126.190.0/24 5056 -208.126.191.0/24 62825 -208.126.192.0/23 5056 -208.126.194.0/23 18883 -208.126.196.0/22 5056 -208.126.200.0/23 30325 -208.126.202.0/23 5056 -208.126.204.0/23 5056 -208.126.206.0/23 30325 -208.126.208.0/24 18883 -208.126.209.0/24 5056 -208.126.210.0/23 63394 -208.126.212.0/24 46892 -208.126.213.0/24 5056 -208.126.214.0/23 5056 -208.126.216.0/24 22534 -208.126.217.0/24 5056 -208.126.218.0/23 30325 -208.126.220.0/22 18883 -208.126.224.0/22 396443 -208.126.228.0/23 13356 -208.126.230.0/24 63394 -208.126.231.0/24 5056 -208.126.232.0/23 63394 -208.126.234.0/24 5056 -208.126.235.0/24 396461 -208.126.236.0/22 5056 -208.126.240.0/20 5056 -208.128.0.0/15 3561 -208.130.0.0/18 3561 -208.130.64.0/19 3561 -208.130.96.0/22 3561 -208.130.100.0/23 3561 -208.130.102.0/23 17348 -208.130.104.0/21 3561 -208.130.112.0/20 3561 -208.130.128.0/17 3561 -208.131.0.0/19 3561 -208.131.32.0/20 3561 -208.131.48.0/21 3561 -208.131.56.0/23 3561 -208.131.58.0/24 3561 -208.131.59.0/24 209 -208.131.60.0/22 3561 -208.131.64.0/18 3561 -208.131.128.0/20 29854 -208.131.144.0/23 29854 -208.131.146.0/24 29854 -208.131.147.0/24 46562 -208.131.148.0/22 29854 -208.131.152.0/24 29854 -208.131.153.0/24 36351 -208.131.154.0/23 29854 -208.131.156.0/22 29854 -208.131.160.0/23 30689 -208.131.164.0/22 10292 -208.131.168.0/22 10292 -208.131.172.0/23 10292 -208.131.174.0/24 10292 -208.131.175.0/24 30689 -208.131.176.0/22 10292 -208.131.180.0/23 10292 -208.131.182.0/23 30689 -208.131.184.0/23 30689 -208.131.186.0/24 10292 -208.131.187.0/24 30689 -208.131.188.0/22 30689 -208.131.192.0/19 3561 -208.131.224.0/21 3561 -208.131.232.0/23 3561 -208.131.234.0/24 3257 -208.131.235.0/24 3561 -208.131.236.0/22 3561 -208.131.240.0/20 3561 -208.132.0.0/18 3561 -208.132.64.0/19 3561 -208.132.128.0/17 3561 -208.133.0.0/19 3561 -208.133.32.0/23 3561 -208.133.34.0/24 3561 -208.133.35.0/24 19840 -208.133.36.0/22 3561 -208.133.40.0/21 3561 -208.133.48.0/20 3561 -208.133.64.0/18 3561 -208.133.128.0/21 3561 -208.133.136.0/22 3561 -208.133.140.0/24 3561 -208.133.141.0/24 26648 -208.133.142.0/23 3561 -208.133.144.0/20 3561 -208.133.160.0/19 3561 -208.133.192.0/18 3561 -208.134.0.0/15 3561 -208.136.0.0/18 3561 -208.136.64.0/19 3561 -208.136.96.0/22 3561 -208.136.100.0/23 3561 -208.136.102.0/24 9751 -208.136.103.0/24 3561 -208.136.104.0/21 3561 -208.136.112.0/24 3561 -208.136.113.0/24 11255 -208.136.114.0/23 3561 -208.136.116.0/22 3561 -208.136.120.0/21 3561 -208.136.128.0/17 3561 -208.137.0.0/22 3561 -208.137.4.0/23 3561 -208.137.6.0/24 16688 -208.137.7.0/24 3561 -208.137.8.0/21 3561 -208.137.16.0/20 3561 -208.137.32.0/19 3561 -208.137.64.0/18 3561 -208.137.128.0/17 3561 -208.138.0.0/20 3561 -208.138.16.0/23 10292 -208.138.18.0/24 10292 -208.138.19.0/24 10278 -208.138.20.0/23 30689 -208.138.22.0/24 30689 -208.138.23.0/24 10292 -208.138.24.0/24 30689 -208.138.25.0/24 10292 -208.138.26.0/23 10292 -208.138.28.0/24 10292 -208.138.29.0/24 30689 -208.138.30.0/24 10292 -208.138.31.0/24 30689 -208.138.32.0/22 10292 -208.138.36.0/23 10292 -208.138.38.0/24 30689 -208.138.39.0/24 10292 -208.138.40.0/24 10292 -208.138.42.0/23 10292 -208.138.44.0/22 10292 -208.138.48.0/20 21795 -208.138.64.0/18 3561 -208.138.128.0/19 3561 -208.138.160.0/21 3561 -208.138.176.0/20 3561 -208.138.192.0/19 3561 -208.138.224.0/20 3561 -208.138.240.0/21 3561 -208.138.248.0/22 3561 -208.138.252.0/23 3561 -208.138.254.0/24 7105 -208.138.255.0/24 3561 -208.139.0.0/22 3561 -208.139.4.0/23 3561 -208.139.6.0/24 3561 -208.139.7.0/24 13434 -208.139.8.0/21 3561 -208.139.16.0/20 3561 -208.139.32.0/19 3561 -208.139.64.0/18 3561 -208.139.128.0/18 3561 -208.139.192.0/20 21777 -208.139.208.0/20 3561 -208.139.224.0/19 3561 -208.140.0.0/14 3561 -208.144.0.0/18 3561 -208.144.64.0/19 3561 -208.144.96.0/20 3561 -208.144.112.0/21 7105 -208.144.120.0/21 3561 -208.144.128.0/20 3561 -208.144.144.0/21 3561 -208.144.152.0/22 3561 -208.144.156.0/23 3561 -208.144.158.0/23 2730 -208.144.160.0/19 3561 -208.144.192.0/19 3561 -208.144.224.0/21 3561 -208.144.232.0/23 3561 -208.144.234.0/24 3561 -208.144.235.0/24 19452 -208.144.236.0/22 3561 -208.144.240.0/20 3561 -208.145.0.0/18 3561 -208.145.64.0/19 3561 -208.145.96.0/20 3561 -208.145.112.0/22 3561 -208.145.116.0/22 11012 -208.145.120.0/21 3561 -208.145.128.0/17 3561 -208.146.0.0/16 3561 -208.147.0.0/20 3561 -208.147.16.0/23 3561 -208.147.18.0/24 9751 -208.147.19.0/24 3561 -208.147.20.0/22 3561 -208.147.24.0/21 3561 -208.147.32.0/19 3561 -208.147.64.0/18 3561 -208.147.128.0/17 3561 -208.148.0.0/16 3561 -208.149.0.0/18 3561 -208.149.64.0/19 3561 -208.149.96.0/20 3561 -208.149.112.0/21 3561 -208.149.120.0/22 3561 -208.149.124.0/23 3561 -208.149.126.0/23 209 -208.149.128.0/17 3561 -208.150.0.0/24 3561 -208.150.1.0/24 7029 -208.150.2.0/23 3561 -208.150.4.0/22 3561 -208.150.8.0/21 3561 -208.150.16.0/20 3561 -208.150.32.0/19 3561 -208.150.64.0/21 3561 -208.150.72.0/22 3561 -208.150.76.0/23 3561 -208.150.78.0/24 27560 -208.150.79.0/24 3561 -208.150.80.0/20 3561 -208.150.96.0/19 3561 -208.150.128.0/17 3561 -208.151.0.0/17 3561 -208.151.128.0/18 3561 -208.151.192.0/19 3561 -208.151.224.0/20 3561 -208.151.240.0/22 6423 -208.151.244.0/23 6423 -208.151.246.0/24 2044 -208.151.247.0/24 6423 -208.151.248.0/21 6423 -208.152.0.0/16 3561 -208.153.0.0/17 3561 -208.153.128.0/20 3561 -208.153.144.0/21 3561 -208.153.152.0/22 3561 -208.153.156.0/23 3561 -208.153.158.0/23 17348 -208.153.160.0/19 3561 -208.153.192.0/18 3561 -208.154.0.0/18 3561 -208.154.64.0/21 3561 -208.154.72.0/22 3561 -208.154.76.0/23 3561 -208.154.78.0/23 10461 -208.154.80.0/20 3561 -208.154.96.0/19 3561 -208.154.128.0/17 3561 -208.155.0.0/16 3561 -208.156.0.0/18 3561 -208.156.64.0/23 14524 -208.156.66.0/24 14524 -208.156.67.0/24 3561 -208.156.68.0/22 3561 -208.156.72.0/21 3561 -208.156.80.0/21 3561 -208.156.88.0/22 11255 -208.156.92.0/22 3561 -208.156.96.0/20 3561 -208.156.112.0/22 22020 -208.156.116.0/22 3561 -208.156.120.0/21 3561 -208.156.128.0/17 3561 -208.157.0.0/17 3561 -208.157.128.0/20 3561 -208.157.144.0/21 6639 -208.157.152.0/21 3561 -208.157.160.0/19 11796 -208.157.192.0/18 3561 -208.158.0.0/20 11139 -208.158.16.0/20 3561 -208.158.32.0/19 3561 -208.158.64.0/20 3561 -208.158.80.0/22 3561 -208.158.84.0/24 3561 -208.158.85.0/24 19617 -208.158.86.0/23 3561 -208.158.88.0/21 3561 -208.158.96.0/19 3561 -208.158.128.0/18 3561 -208.158.192.0/19 3561 -208.158.224.0/23 3561 -208.158.226.0/24 3561 -208.158.227.0/24 16688 -208.158.228.0/22 3561 -208.158.232.0/21 3561 -208.158.240.0/20 3561 -208.159.0.0/18 3561 -208.159.64.0/19 3561 -208.159.96.0/22 3561 -208.159.100.0/24 209 -208.159.101.0/24 3561 -208.159.102.0/23 3561 -208.159.104.0/21 3561 -208.159.112.0/20 3561 -208.159.128.0/17 3561 -208.160.0.0/16 3561 -208.161.0.0/18 3561 -208.161.64.0/19 3561 -208.161.96.0/22 6423 -208.161.100.0/24 6423 -208.161.101.0/24 2044 -208.161.102.0/24 6423 -208.161.103.0/24 2044 -208.161.104.0/23 6423 -208.161.106.0/24 6423 -208.161.107.0/24 2044 -208.161.108.0/22 6423 -208.161.112.0/20 3561 -208.161.128.0/18 3561 -208.161.192.0/19 3561 -208.161.224.0/19 5400 -208.162.0.0/19 3561 -208.162.32.0/22 3561 -208.162.36.0/22 35916 -208.162.40.0/24 35916 -208.162.41.0/24 3561 -208.162.42.0/23 3561 -208.162.44.0/22 3561 -208.162.48.0/20 3561 -208.162.64.0/18 3561 -208.162.128.0/17 3561 -208.163.0.0/19 3561 -208.163.32.0/21 10292 -208.163.40.0/22 10292 -208.163.44.0/22 30689 -208.163.48.0/21 10292 -208.163.56.0/24 30689 -208.163.57.0/24 10292 -208.163.58.0/23 10292 -208.163.60.0/22 10292 -208.163.64.0/18 3561 -208.163.128.0/20 4284 -208.163.144.0/20 209 -208.163.160.0/20 22561 -208.163.176.0/22 22561 -208.163.180.0/22 209 -208.163.184.0/21 209 -208.163.192.0/18 4282 -208.164.0.0/21 5400 -208.164.8.0/21 3561 -208.164.16.0/20 3561 -208.164.32.0/19 3561 -208.164.64.0/18 3561 -208.164.128.0/17 3561 -208.165.0.0/16 3561 -208.166.0.0/19 3561 -208.166.48.0/21 46261 -208.166.56.0/24 36352 -208.166.57.0/24 20454 -208.166.58.0/24 13332 -208.166.59.0/24 9009 -208.166.60.0/24 8038 -208.166.61.0/24 13332 -208.166.62.0/23 9009 -208.166.64.0/18 3561 -208.166.128.0/17 3561 -208.167.0.0/17 3561 -208.167.128.0/18 3561 -208.167.208.0/20 3561 -208.167.224.0/24 20473 -208.167.225.0/24 46407 -208.167.226.0/23 20473 -208.167.228.0/22 20473 -208.167.232.0/21 20473 -208.167.240.0/20 20473 -208.168.0.0/20 3561 -208.168.16.0/24 33598 -208.168.17.0/24 3561 -208.168.18.0/23 3561 -208.168.20.0/22 3561 -208.168.24.0/21 3561 -208.168.32.0/19 3561 -208.168.64.0/18 3561 -208.168.128.0/18 3561 -208.168.192.0/19 3561 -208.168.224.0/19 6639 -208.169.0.0/18 3561 -208.169.64.0/22 6639 -208.169.68.0/23 6639 -208.169.70.0/23 11139 -208.169.72.0/22 11139 -208.169.76.0/23 6639 -208.169.78.0/23 22933 -208.169.80.0/24 6639 -208.169.81.0/24 11139 -208.169.82.0/24 11139 -208.169.83.0/24 15344 -208.169.84.0/23 15344 -208.169.86.0/23 6639 -208.169.88.0/21 6639 -208.169.96.0/19 3561 -208.169.128.0/17 3561 -208.170.0.0/18 3561 -208.170.64.0/22 3561 -208.170.68.0/24 3561 -208.170.69.0/24 7991 -208.170.70.0/23 3561 -208.170.72.0/21 3561 -208.170.80.0/20 3561 -208.170.96.0/19 3561 -208.170.128.0/17 3561 -208.171.0.0/16 3561 -208.172.0.0/16 3561 -208.173.0.0/17 3561 -208.173.128.0/18 3561 -208.173.192.0/18 1273 -208.174.0.0/16 3561 -208.175.0.0/17 3561 -208.175.128.0/20 13807 -208.175.144.0/20 1273 -208.175.160.0/19 3561 -208.175.192.0/21 3561 -208.175.200.0/23 3561 -208.175.202.0/24 3561 -208.175.203.0/24 7991 -208.175.204.0/22 3561 -208.175.208.0/20 3561 -208.175.224.0/19 1273 -208.176.0.0/18 2828 -208.176.64.0/19 2828 -208.176.96.0/20 2828 -208.176.112.0/22 2828 -208.176.116.0/23 2828 -208.176.118.0/24 22304 -208.176.119.0/24 2828 -208.176.120.0/21 2828 -208.176.128.0/20 2828 -208.176.144.0/21 2828 -208.176.152.0/22 2828 -208.176.156.0/23 22759 -208.176.158.0/23 2828 -208.176.160.0/19 2828 -208.176.192.0/20 2828 -208.176.208.0/22 2828 -208.176.212.0/23 2828 -208.176.214.0/24 2828 -208.176.215.0/24 12209 -208.176.216.0/21 2828 -208.176.224.0/19 2828 -208.177.0.0/19 2828 -208.177.32.0/21 2828 -208.177.40.0/23 2828 -208.177.42.0/24 32091 -208.177.43.0/24 2828 -208.177.44.0/24 17903 -208.177.45.0/24 2828 -208.177.46.0/23 2828 -208.177.48.0/20 2828 -208.177.64.0/19 2828 -208.177.96.0/21 2828 -208.177.104.0/23 2828 -208.177.106.0/24 19839 -208.177.107.0/24 7324 -208.177.108.0/22 2828 -208.177.112.0/20 2828 -208.177.128.0/18 2828 -208.177.192.0/21 2828 -208.177.200.0/22 2828 -208.177.204.0/23 2828 -208.177.206.0/24 12254 -208.177.207.0/24 2828 -208.177.208.0/20 2828 -208.177.224.0/19 2828 -208.178.0.0/19 3549 -208.178.32.0/21 3549 -208.178.40.0/22 3549 -208.178.44.0/23 3549 -208.178.46.0/23 16526 -208.178.48.0/20 3549 -208.178.64.0/18 3549 -208.178.128.0/17 3549 -208.179.0.0/16 11509 -208.180.0.0/21 19108 -208.180.8.0/23 19108 -208.180.10.0/24 19108 -208.180.11.0/24 397037 -208.180.12.0/22 19108 -208.180.16.0/21 19108 -208.180.24.0/21 18710 -208.180.32.0/19 19108 -208.180.64.0/21 19108 -208.180.72.0/23 19108 -208.180.74.0/23 31859 -208.180.76.0/22 19108 -208.180.80.0/20 19108 -208.180.96.0/19 19108 -208.180.128.0/20 19108 -208.180.144.0/22 19108 -208.180.148.0/23 19108 -208.180.150.0/24 26920 -208.180.151.0/24 19108 -208.180.152.0/21 19108 -208.180.160.0/20 19108 -208.180.176.0/22 19108 -208.180.180.0/24 40919 -208.180.181.0/24 19108 -208.180.182.0/24 18753 -208.180.183.0/24 19108 -208.180.184.0/21 19108 -208.180.192.0/18 19108 -208.181.0.0/21 852 -208.181.8.0/24 397829 -208.181.9.0/24 852 -208.181.10.0/23 852 -208.181.12.0/22 852 -208.181.16.0/20 852 -208.181.32.0/19 852 -208.181.64.0/21 852 -208.181.72.0/21 15247 -208.181.80.0/20 852 -208.181.96.0/22 852 -208.181.100.0/24 852 -208.181.101.0/24 15247 -208.181.102.0/23 15247 -208.181.104.0/24 15247 -208.181.105.0/24 852 -208.181.106.0/23 852 -208.181.108.0/22 852 -208.181.112.0/21 852 -208.181.120.0/21 25668 -208.181.128.0/20 852 -208.181.144.0/21 15247 -208.181.152.0/21 852 -208.181.160.0/19 852 -208.181.192.0/21 15247 -208.181.200.0/21 852 -208.181.208.0/20 852 -208.181.224.0/19 852 -208.182.0.0/18 19957 -208.182.64.0/19 19957 -208.182.96.0/22 19957 -208.182.100.0/24 19957 -208.182.101.0/24 19956 -208.182.102.0/23 19957 -208.182.104.0/21 19957 -208.182.112.0/20 19957 -208.182.128.0/17 19957 -208.184.0.0/24 396173 -208.184.1.0/24 6461 -208.184.2.0/23 6461 -208.184.4.0/24 26664 -208.184.5.0/24 6461 -208.184.6.0/24 393615 -208.184.7.0/24 6461 -208.184.8.0/24 6461 -208.184.9.0/24 26552 -208.184.10.0/23 6461 -208.184.12.0/22 6461 -208.184.16.0/22 6461 -208.184.20.0/24 6461 -208.184.21.0/24 395006 -208.184.22.0/23 6461 -208.184.24.0/24 54740 -208.184.25.0/24 6461 -208.184.26.0/23 6461 -208.184.28.0/22 6461 -208.184.32.0/21 6461 -208.184.40.0/23 6461 -208.184.42.0/24 6461 -208.184.43.0/24 55107 -208.184.44.0/22 6461 -208.184.48.0/22 6461 -208.184.52.0/24 17025 -208.184.53.0/24 6461 -208.184.54.0/23 6461 -208.184.56.0/21 6461 -208.184.64.0/24 6461 -208.184.65.0/24 11804 -208.184.66.0/23 6461 -208.184.68.0/24 6461 -208.184.69.0/24 27634 -208.184.70.0/24 6461 -208.184.71.0/24 30084 -208.184.72.0/24 393857 -208.184.73.0/24 6461 -208.184.74.0/23 6461 -208.184.76.0/22 6461 -208.184.80.0/21 6461 -208.184.88.0/23 6461 -208.184.90.0/23 14203 -208.184.92.0/22 6461 -208.184.96.0/23 6461 -208.184.98.0/24 6461 -208.184.99.0/24 33507 -208.184.100.0/22 6461 -208.184.104.0/24 6461 -208.184.105.0/24 20174 -208.184.106.0/24 14601 -208.184.107.0/24 16639 -208.184.108.0/22 6461 -208.184.112.0/23 6461 -208.184.114.0/24 54891 -208.184.115.0/24 31998 -208.184.116.0/23 6461 -208.184.118.0/24 6461 -208.184.119.0/24 36261 -208.184.120.0/24 55096 -208.184.121.0/24 6461 -208.184.122.0/24 6461 -208.184.123.0/24 63296 -208.184.124.0/22 6461 -208.184.128.0/24 17025 -208.184.129.0/24 22791 -208.184.130.0/23 6461 -208.184.132.0/23 6461 -208.184.134.0/24 6461 -208.184.135.0/24 40565 -208.184.136.0/24 17025 -208.184.137.0/24 6461 -208.184.138.0/23 6461 -208.184.140.0/22 6461 -208.184.144.0/22 6461 -208.184.148.0/24 6461 -208.184.149.0/24 32212 -208.184.150.0/23 6461 -208.184.152.0/24 18476 -208.184.153.0/24 6461 -208.184.154.0/24 6461 -208.184.155.0/24 14011 -208.184.156.0/23 6461 -208.184.158.0/24 18602 -208.184.159.0/24 22239 -208.184.160.0/24 6461 -208.184.161.0/24 36180 -208.184.162.0/24 36180 -208.184.163.0/24 6461 -208.184.164.0/22 6461 -208.184.168.0/21 6461 -208.184.176.0/20 6461 -208.184.192.0/20 6461 -208.184.208.0/23 6461 -208.184.210.0/24 6461 -208.184.211.0/24 33192 -208.184.212.0/22 6461 -208.184.216.0/24 6461 -208.184.217.0/24 19966 -208.184.218.0/23 6461 -208.184.220.0/22 6461 -208.184.224.0/23 6461 -208.184.226.0/24 54744 -208.184.227.0/24 6461 -208.184.228.0/23 54744 -208.184.230.0/24 6461 -208.184.231.0/24 20171 -208.184.232.0/23 6461 -208.184.234.0/24 6461 -208.184.235.0/24 54744 -208.184.236.0/22 6461 -208.184.240.0/21 6461 -208.184.248.0/23 6461 -208.184.250.0/24 6461 -208.184.251.0/24 22239 -208.184.252.0/24 40734 -208.184.253.0/24 6461 -208.184.254.0/23 22671 -208.185.0.0/23 6461 -208.185.2.0/24 23165 -208.185.3.0/24 6461 -208.185.4.0/23 6461 -208.185.6.0/24 23514 -208.185.7.0/24 6461 -208.185.8.0/24 17002 -208.185.9.0/24 6461 -208.185.10.0/24 6461 -208.185.11.0/24 36589 -208.185.12.0/22 6461 -208.185.16.0/20 6461 -208.185.32.0/23 6461 -208.185.34.0/24 6461 -208.185.35.0/24 17025 -208.185.36.0/22 6461 -208.185.40.0/22 6461 -208.185.44.0/24 396173 -208.185.45.0/24 6461 -208.185.46.0/23 6461 -208.185.48.0/23 54781 -208.185.50.0/24 26667 -208.185.51.0/24 6461 -208.185.52.0/23 6461 -208.185.54.0/23 20940 -208.185.56.0/21 6461 -208.185.64.0/19 6461 -208.185.96.0/24 17025 -208.185.97.0/24 6461 -208.185.98.0/23 6461 -208.185.100.0/24 33544 -208.185.101.0/24 6461 -208.185.102.0/23 6461 -208.185.104.0/24 6461 -208.185.105.0/24 14011 -208.185.106.0/23 6461 -208.185.108.0/22 6461 -208.185.112.0/24 6461 -208.185.113.0/24 47063 -208.185.114.0/24 6461 -208.185.115.0/24 20940 -208.185.116.0/24 6461 -208.185.117.0/24 26718 -208.185.118.0/23 6461 -208.185.120.0/24 63296 -208.185.121.0/24 6461 -208.185.122.0/23 6461 -208.185.124.0/22 6461 -208.185.128.0/23 6461 -208.185.130.0/24 53689 -208.185.131.0/24 6461 -208.185.132.0/23 6461 -208.185.134.0/24 53277 -208.185.135.0/24 13904 -208.185.136.0/21 6461 -208.185.144.0/20 6461 -208.185.160.0/23 6461 -208.185.162.0/24 6461 -208.185.163.0/24 18994 -208.185.164.0/22 6461 -208.185.168.0/22 6461 -208.185.172.0/24 39960 -208.185.173.0/24 6461 -208.185.174.0/24 393642 -208.185.175.0/24 6461 -208.185.176.0/23 6461 -208.185.178.0/24 6461 -208.185.179.0/24 22107 -208.185.180.0/22 6461 -208.185.184.0/22 6461 -208.185.188.0/24 6461 -208.185.189.0/24 63296 -208.185.190.0/23 6461 -208.185.192.0/23 6461 -208.185.194.0/24 6461 -208.185.195.0/24 47018 -208.185.196.0/24 6461 -208.185.197.0/24 29874 -208.185.198.0/24 14830 -208.185.199.0/24 46940 -208.185.200.0/23 6461 -208.185.202.0/24 6461 -208.185.203.0/24 46952 -208.185.204.0/22 6461 -208.185.208.0/23 6461 -208.185.210.0/24 17025 -208.185.211.0/24 6461 -208.185.212.0/24 6461 -208.185.213.0/24 3118 -208.185.214.0/24 13724 -208.185.215.0/24 6461 -208.185.216.0/22 6461 -208.185.220.0/23 6461 -208.185.222.0/23 55077 -208.185.224.0/22 6461 -208.185.228.0/24 6461 -208.185.229.0/24 26476 -208.185.230.0/23 6461 -208.185.232.0/24 26476 -208.185.233.0/24 6461 -208.185.234.0/24 6461 -208.185.235.0/24 26476 -208.185.236.0/23 6461 -208.185.238.0/24 7767 -208.185.239.0/24 6461 -208.185.240.0/22 6461 -208.185.244.0/24 22106 -208.185.245.0/24 6461 -208.185.246.0/23 6461 -208.185.248.0/23 6461 -208.185.250.0/24 6461 -208.185.251.0/24 394178 -208.185.252.0/23 6461 -208.185.254.0/24 6461 -208.185.255.0/24 46954 -208.186.0.0/20 7385 -208.186.16.0/21 7385 -208.186.24.0/22 7385 -208.186.28.0/23 7385 -208.186.30.0/23 36709 -208.186.32.0/20 7385 -208.186.48.0/20 21541 -208.186.64.0/19 7385 -208.186.96.0/20 7385 -208.186.112.0/23 16578 -208.186.114.0/23 7385 -208.186.116.0/22 7385 -208.186.120.0/21 7385 -208.186.128.0/21 7385 -208.186.136.0/23 16784 -208.186.138.0/23 7385 -208.186.140.0/22 7385 -208.186.144.0/21 7385 -208.186.152.0/23 7385 -208.186.154.0/24 7385 -208.186.155.0/24 801 -208.186.156.0/22 7385 -208.186.160.0/19 7385 -208.186.192.0/18 7385 -208.187.0.0/17 7385 -208.187.128.0/22 7385 -208.187.132.0/23 7385 -208.187.134.0/24 14646 -208.187.135.0/24 7385 -208.187.136.0/22 7385 -208.187.140.0/23 7385 -208.187.142.0/24 7385 -208.187.143.0/24 5048 -208.187.144.0/20 7385 -208.187.160.0/21 16578 -208.187.168.0/21 7385 -208.187.176.0/20 7385 -208.187.192.0/19 7385 -208.187.224.0/21 7385 -208.187.232.0/24 29951 -208.187.233.0/24 7385 -208.187.234.0/23 7385 -208.187.236.0/22 7385 -208.187.240.0/22 7385 -208.187.244.0/23 16578 -208.187.246.0/23 7385 -208.187.248.0/21 7385 -208.188.0.0/18 7018 -208.188.64.0/19 7018 -208.188.96.0/20 7018 -208.188.112.0/23 22474 -208.188.114.0/23 7018 -208.188.116.0/22 7018 -208.188.120.0/21 7018 -208.188.128.0/19 7018 -208.188.160.0/23 7018 -208.188.162.0/23 46416 -208.188.164.0/22 7018 -208.188.168.0/21 7018 -208.188.176.0/20 7018 -208.188.192.0/19 7018 -208.188.224.0/20 7018 -208.188.240.0/22 7018 -208.188.244.0/24 2386 -208.188.245.0/24 7018 -208.188.246.0/24 7018 -208.188.247.0/24 32619 -208.188.248.0/21 7018 -208.189.0.0/23 7018 -208.189.2.0/24 7018 -208.189.3.0/24 16788 -208.189.4.0/22 7018 -208.189.8.0/21 7018 -208.189.16.0/20 7018 -208.189.32.0/19 7018 -208.189.64.0/20 7018 -208.189.80.0/21 7018 -208.189.88.0/22 7018 -208.189.92.0/24 20408 -208.189.93.0/24 7018 -208.189.94.0/23 7018 -208.189.96.0/19 7018 -208.189.128.0/17 7018 -208.190.0.0/18 7018 -208.190.64.0/19 7018 -208.190.96.0/22 7018 -208.190.100.0/24 393383 -208.190.101.0/24 7018 -208.190.102.0/23 7018 -208.190.104.0/21 7018 -208.190.112.0/20 7018 -208.190.128.0/19 7018 -208.190.160.0/20 7018 -208.190.176.0/24 53629 -208.190.177.0/24 7018 -208.190.178.0/23 7018 -208.190.180.0/22 7018 -208.190.184.0/21 7018 -208.190.192.0/18 7018 -208.191.0.0/19 7018 -208.191.32.0/20 7018 -208.191.48.0/21 7018 -208.191.56.0/22 7018 -208.191.60.0/23 7018 -208.191.62.0/24 19934 -208.191.63.0/24 7018 -208.191.64.0/18 7018 -208.191.128.0/17 7018 -208.192.0.0/16 701 -208.193.0.0/19 701 -208.193.32.0/20 701 -208.193.48.0/22 701 -208.193.52.0/24 701 -208.193.53.0/24 13517 -208.193.54.0/23 701 -208.193.56.0/21 701 -208.193.64.0/20 701 -208.193.80.0/21 7029 -208.193.88.0/21 701 -208.193.96.0/19 701 -208.193.128.0/24 701 -208.193.129.0/24 11676 -208.193.130.0/23 701 -208.193.132.0/24 6062 -208.193.133.0/24 701 -208.193.134.0/23 701 -208.193.136.0/21 701 -208.193.144.0/20 701 -208.193.160.0/19 701 -208.193.192.0/18 701 -208.194.0.0/19 701 -208.194.32.0/20 701 -208.194.48.0/24 701 -208.194.49.0/24 14669 -208.194.50.0/23 701 -208.194.52.0/22 701 -208.194.56.0/21 701 -208.194.64.0/19 701 -208.194.96.0/24 701 -208.194.97.0/24 27342 -208.194.98.0/23 701 -208.194.100.0/22 701 -208.194.104.0/21 701 -208.194.112.0/20 701 -208.194.128.0/17 701 -208.195.0.0/17 701 -208.195.128.0/21 701 -208.195.136.0/21 26636 -208.195.144.0/20 701 -208.195.160.0/19 701 -208.195.192.0/18 701 -208.196.0.0/21 701 -208.196.8.0/24 701 -208.196.9.0/24 22028 -208.196.10.0/23 701 -208.196.12.0/22 701 -208.196.16.0/20 701 -208.196.32.0/20 701 -208.196.48.0/21 701 -208.196.56.0/22 701 -208.196.60.0/22 11487 -208.196.64.0/20 701 -208.196.80.0/21 701 -208.196.88.0/22 701 -208.196.92.0/24 701 -208.196.93.0/24 30009 -208.196.94.0/23 701 -208.196.96.0/19 701 -208.196.128.0/23 701 -208.196.130.0/24 701 -208.196.131.0/24 32373 -208.196.132.0/22 701 -208.196.136.0/21 701 -208.196.144.0/20 701 -208.196.160.0/22 701 -208.196.164.0/23 701 -208.196.166.0/24 71 -208.196.167.0/24 701 -208.196.168.0/21 701 -208.196.176.0/20 701 -208.196.192.0/18 701 -208.197.0.0/19 701 -208.197.32.0/22 701 -208.197.36.0/24 701 -208.197.37.0/24 17119 -208.197.38.0/23 701 -208.197.40.0/21 701 -208.197.48.0/20 701 -208.197.64.0/18 701 -208.197.128.0/18 701 -208.197.192.0/19 701 -208.197.224.0/20 701 -208.197.240.0/21 701 -208.197.248.0/21 7029 -208.198.0.0/24 1699 -208.198.1.0/24 701 -208.198.2.0/23 1699 -208.198.4.0/24 1699 -208.198.5.0/24 701 -208.198.6.0/23 701 -208.198.8.0/21 701 -208.198.16.0/20 701 -208.198.32.0/19 701 -208.198.64.0/19 701 -208.198.96.0/20 701 -208.198.112.0/22 701 -208.198.116.0/24 27519 -208.198.117.0/24 701 -208.198.118.0/24 701 -208.198.119.0/24 27519 -208.198.120.0/21 701 -208.198.128.0/22 701 -208.198.132.0/23 20447 -208.198.134.0/23 701 -208.198.136.0/21 701 -208.198.144.0/20 701 -208.198.160.0/19 701 -208.198.192.0/18 701 -208.199.0.0/20 701 -208.199.16.0/21 701 -208.199.24.0/22 701 -208.199.28.0/23 701 -208.199.30.0/24 701 -208.199.31.0/24 393856 -208.199.32.0/19 701 -208.199.64.0/18 701 -208.199.128.0/17 701 -208.200.0.0/19 701 -208.200.32.0/20 701 -208.200.48.0/21 701 -208.200.56.0/21 394453 -208.200.64.0/18 701 -208.200.128.0/21 701 -208.200.136.0/24 701 -208.200.137.0/24 63311 -208.200.138.0/23 701 -208.200.140.0/22 701 -208.200.144.0/20 701 -208.200.160.0/19 701 -208.200.192.0/19 701 -208.200.224.0/20 701 -208.200.240.0/21 701 -208.200.248.0/22 7799 -208.200.252.0/22 701 -208.201.0.0/17 701 -208.201.128.0/20 701 -208.201.144.0/21 701 -208.201.152.0/23 701 -208.201.154.0/24 701 -208.201.155.0/24 6620 -208.201.156.0/22 701 -208.201.160.0/24 394122 -208.201.161.0/24 701 -208.201.162.0/23 701 -208.201.164.0/22 701 -208.201.168.0/21 701 -208.201.176.0/20 701 -208.201.192.0/19 701 -208.201.224.0/19 7065 -208.202.0.0/18 701 -208.202.64.0/24 7332 -208.202.65.0/24 701 -208.202.66.0/23 701 -208.202.68.0/22 701 -208.202.72.0/21 701 -208.202.80.0/20 701 -208.202.96.0/20 701 -208.202.112.0/21 701 -208.202.120.0/22 701 -208.202.124.0/23 30064 -208.202.126.0/23 701 -208.202.128.0/17 701 -208.203.0.0/18 701 -208.203.64.0/20 701 -208.203.80.0/21 701 -208.203.88.0/22 701 -208.203.92.0/23 701 -208.203.94.0/24 22762 -208.203.95.0/24 701 -208.203.96.0/19 701 -208.203.128.0/21 701 -208.203.136.0/22 6653 -208.203.140.0/22 701 -208.203.144.0/20 701 -208.203.160.0/19 701 -208.203.192.0/18 701 -208.204.0.0/17 701 -208.204.128.0/20 701 -208.204.144.0/21 701 -208.204.152.0/23 701 -208.204.154.0/24 701 -208.204.155.0/24 7423 -208.204.156.0/22 701 -208.204.160.0/19 701 -208.204.192.0/18 701 -208.205.0.0/20 701 -208.205.16.0/21 7385 -208.205.24.0/21 701 -208.205.32.0/22 701 -208.205.36.0/24 701 -208.205.37.0/24 1699 -208.205.38.0/23 1699 -208.205.40.0/24 1699 -208.205.41.0/24 701 -208.205.42.0/23 1699 -208.205.44.0/23 1699 -208.205.46.0/23 701 -208.205.48.0/20 701 -208.205.64.0/21 701 -208.205.72.0/23 701 -208.205.74.0/24 701 -208.205.75.0/24 10717 -208.205.76.0/23 701 -208.205.78.0/24 17058 -208.205.79.0/24 701 -208.205.80.0/23 701 -208.205.82.0/24 32912 -208.205.83.0/24 701 -208.205.84.0/22 701 -208.205.88.0/21 701 -208.205.96.0/19 701 -208.205.128.0/19 701 -208.205.160.0/20 701 -208.205.176.0/22 701 -208.205.180.0/24 701 -208.205.181.0/24 17119 -208.205.182.0/23 701 -208.205.184.0/22 701 -208.205.188.0/23 701 -208.205.190.0/24 26134 -208.205.191.0/24 701 -208.205.192.0/19 701 -208.205.224.0/20 701 -208.205.240.0/21 701 -208.205.248.0/24 701 -208.205.249.0/24 7799 -208.205.250.0/23 701 -208.205.252.0/22 701 -208.206.0.0/21 701 -208.206.8.0/22 701 -208.206.12.0/23 701 -208.206.14.0/24 701 -208.206.15.0/24 17160 -208.206.16.0/20 701 -208.206.32.0/19 701 -208.206.64.0/19 701 -208.206.96.0/20 701 -208.206.112.0/21 701 -208.206.120.0/22 701 -208.206.124.0/23 701 -208.206.126.0/24 701 -208.206.127.0/24 26279 -208.206.128.0/17 701 -208.207.0.0/16 701 -208.208.0.0/19 701 -208.208.32.0/21 701 -208.208.40.0/22 701 -208.208.44.0/23 701 -208.208.46.0/24 701 -208.208.47.0/24 13688 -208.208.48.0/20 701 -208.208.64.0/19 701 -208.208.96.0/20 701 -208.208.112.0/22 701 -208.208.116.0/24 701 -208.208.117.0/24 14491 -208.208.118.0/23 701 -208.208.120.0/21 701 -208.208.128.0/20 701 -208.208.144.0/21 701 -208.208.152.0/23 701 -208.208.154.0/24 701 -208.208.155.0/24 32373 -208.208.156.0/22 701 -208.208.160.0/20 701 -208.208.176.0/22 701 -208.208.180.0/23 701 -208.208.182.0/24 14681 -208.208.183.0/24 701 -208.208.184.0/21 701 -208.208.192.0/18 701 -208.209.0.0/18 701 -208.209.64.0/19 701 -208.209.96.0/21 701 -208.209.104.0/24 701 -208.209.105.0/24 21979 -208.209.106.0/23 701 -208.209.108.0/22 701 -208.209.112.0/20 701 -208.209.128.0/19 701 -208.209.160.0/22 2828 -208.209.164.0/22 701 -208.209.168.0/21 701 -208.209.176.0/21 701 -208.209.184.0/22 701 -208.209.188.0/23 701 -208.209.190.0/24 701 -208.209.191.0/24 22970 -208.209.192.0/18 701 -208.210.0.0/16 701 -208.211.0.0/17 701 -208.211.128.0/21 701 -208.211.136.0/24 23153 -208.211.137.0/24 701 -208.211.138.0/23 701 -208.211.140.0/22 701 -208.211.144.0/20 701 -208.211.160.0/19 701 -208.211.192.0/18 701 -208.212.0.0/16 701 -208.213.0.0/17 701 -208.213.128.0/19 701 -208.213.160.0/22 10594 -208.213.164.0/22 701 -208.213.168.0/21 701 -208.213.176.0/20 701 -208.213.192.0/18 701 -208.214.0.0/18 701 -208.214.64.0/20 701 -208.214.80.0/23 701 -208.214.82.0/24 701 -208.214.83.0/24 17058 -208.214.84.0/22 701 -208.214.88.0/21 701 -208.214.96.0/19 701 -208.214.128.0/17 701 -208.215.0.0/17 701 -208.215.128.0/19 701 -208.215.160.0/20 701 -208.215.176.0/21 701 -208.215.184.0/22 701 -208.215.188.0/24 33645 -208.215.189.0/24 701 -208.215.190.0/23 701 -208.215.192.0/20 701 -208.215.208.0/21 701 -208.215.216.0/23 701 -208.215.218.0/23 63148 -208.215.220.0/22 701 -208.215.224.0/19 701 -208.216.0.0/19 701 -208.216.32.0/20 701 -208.216.48.0/21 701 -208.216.56.0/23 701 -208.216.58.0/24 701 -208.216.59.0/24 397858 -208.216.60.0/22 701 -208.216.64.0/20 701 -208.216.80.0/21 6597 -208.216.88.0/24 15251 -208.216.89.0/24 701 -208.216.90.0/23 701 -208.216.92.0/22 701 -208.216.96.0/19 701 -208.216.128.0/18 701 -208.216.192.0/19 701 -208.216.224.0/22 701 -208.216.228.0/22 7029 -208.216.232.0/21 701 -208.216.240.0/20 701 -208.217.0.0/16 701 -208.218.0.0/17 701 -208.218.128.0/18 701 -208.218.192.0/20 701 -208.218.208.0/24 701 -208.218.209.0/24 17119 -208.218.210.0/23 701 -208.218.212.0/23 701 -208.218.214.0/23 10453 -208.218.216.0/21 701 -208.218.224.0/20 701 -208.218.240.0/22 701 -208.218.244.0/24 701 -208.218.245.0/24 11486 -208.218.246.0/23 701 -208.218.248.0/21 701 -208.219.0.0/17 701 -208.219.128.0/18 701 -208.219.192.0/19 701 -208.219.224.0/21 7385 -208.219.232.0/21 701 -208.219.240.0/20 701 -208.220.0.0/17 701 -208.220.128.0/19 701 -208.220.160.0/20 701 -208.220.176.0/22 701 -208.220.180.0/23 10453 -208.220.182.0/23 701 -208.220.184.0/21 701 -208.220.192.0/18 701 -208.221.0.0/17 701 -208.221.128.0/20 701 -208.221.144.0/22 701 -208.221.148.0/23 701 -208.221.150.0/24 26065 -208.221.151.0/24 701 -208.221.152.0/21 701 -208.221.160.0/19 701 -208.221.192.0/22 701 -208.221.196.0/23 701 -208.221.198.0/24 20079 -208.221.199.0/24 701 -208.221.200.0/21 701 -208.221.208.0/20 701 -208.221.224.0/19 701 -208.222.0.0/20 701 -208.222.16.0/23 1699 -208.222.18.0/24 1699 -208.222.19.0/24 701 -208.222.20.0/22 701 -208.222.24.0/21 701 -208.222.32.0/19 701 -208.222.64.0/22 701 -208.222.68.0/23 701 -208.222.70.0/24 701 -208.222.71.0/24 25871 -208.222.72.0/21 701 -208.222.80.0/20 701 -208.222.96.0/20 701 -208.222.112.0/21 701 -208.222.120.0/21 6597 -208.222.128.0/17 701 -208.223.0.0/16 701 -208.224.0.0/20 4208 -208.224.16.0/20 701 -208.224.32.0/19 701 -208.224.64.0/18 701 -208.224.128.0/18 701 -208.224.192.0/19 701 -208.224.224.0/23 10453 -208.224.226.0/23 701 -208.224.228.0/22 701 -208.224.232.0/21 701 -208.224.240.0/21 701 -208.224.248.0/22 13750 -208.224.252.0/22 701 -208.225.0.0/17 701 -208.225.128.0/19 701 -208.225.160.0/24 3378 -208.225.161.0/24 701 -208.225.162.0/23 701 -208.225.164.0/22 701 -208.225.168.0/21 701 -208.225.176.0/20 701 -208.225.192.0/18 701 -208.226.0.0/17 701 -208.226.128.0/20 701 -208.226.144.0/22 701 -208.226.148.0/24 10584 -208.226.149.0/24 701 -208.226.150.0/23 701 -208.226.152.0/24 701 -208.226.153.0/24 18602 -208.226.154.0/23 701 -208.226.156.0/22 701 -208.226.160.0/19 701 -208.226.192.0/20 701 -208.226.208.0/21 394453 -208.226.216.0/21 701 -208.226.224.0/19 701 -208.227.0.0/16 701 -208.228.0.0/18 701 -208.228.64.0/19 701 -208.228.96.0/21 11606 -208.228.104.0/21 701 -208.228.112.0/20 701 -208.228.128.0/20 701 -208.228.144.0/21 701 -208.228.152.0/23 701 -208.228.154.0/23 2703 -208.228.156.0/22 701 -208.228.160.0/20 701 -208.228.176.0/22 701 -208.228.180.0/24 701 -208.228.181.0/24 32520 -208.228.182.0/23 701 -208.228.184.0/21 701 -208.228.192.0/19 701 -208.228.224.0/20 7754 -208.228.240.0/20 701 -208.229.0.0/17 701 -208.229.128.0/20 701 -208.229.144.0/22 27006 -208.229.148.0/22 701 -208.229.152.0/21 701 -208.229.160.0/20 701 -208.229.176.0/21 701 -208.229.184.0/22 701 -208.229.188.0/23 701 -208.229.190.0/24 14458 -208.229.191.0/24 701 -208.229.192.0/20 701 -208.229.208.0/21 701 -208.229.216.0/23 701 -208.229.218.0/24 701 -208.229.219.0/24 21678 -208.229.220.0/22 701 -208.229.224.0/22 701 -208.229.228.0/24 7799 -208.229.229.0/24 701 -208.229.230.0/23 701 -208.229.232.0/21 701 -208.229.240.0/20 701 -208.230.0.0/16 701 -208.231.0.0/18 701 -208.231.64.0/22 17037 -208.231.68.0/22 701 -208.231.72.0/23 14717 -208.231.74.0/23 701 -208.231.76.0/22 701 -208.231.80.0/20 701 -208.231.96.0/19 4314 -208.231.128.0/18 701 -208.231.192.0/19 701 -208.231.224.0/21 701 -208.231.232.0/24 14717 -208.231.233.0/24 701 -208.231.234.0/23 701 -208.231.236.0/22 701 -208.231.240.0/20 701 -208.232.0.0/17 701 -208.232.128.0/18 701 -208.232.192.0/19 701 -208.232.224.0/24 6648 -208.232.225.0/24 4775 -208.232.226.0/23 6648 -208.232.228.0/22 701 -208.232.232.0/21 701 -208.232.240.0/20 701 -208.233.0.0/20 701 -208.233.16.0/21 701 -208.233.24.0/22 701 -208.233.28.0/23 22970 -208.233.30.0/23 701 -208.233.32.0/21 22970 -208.233.40.0/21 701 -208.233.48.0/20 701 -208.233.64.0/18 701 -208.233.128.0/17 701 -208.234.0.0/19 10843 -208.234.32.0/19 701 -208.234.64.0/18 701 -208.234.128.0/19 701 -208.234.160.0/21 701 -208.234.168.0/23 10453 -208.234.170.0/23 701 -208.234.172.0/22 701 -208.234.176.0/20 701 -208.234.192.0/18 701 -208.235.0.0/17 701 -208.235.128.0/18 701 -208.235.192.0/21 701 -208.235.200.0/22 701 -208.235.204.0/23 701 -208.235.206.0/23 14717 -208.235.208.0/20 701 -208.235.224.0/21 6648 -208.235.232.0/21 701 -208.235.240.0/21 701 -208.235.248.0/24 6318 -208.235.249.0/24 701 -208.235.250.0/23 701 -208.235.252.0/24 701 -208.235.253.0/24 23311 -208.235.254.0/23 701 -208.236.0.0/18 701 -208.236.64.0/23 701 -208.236.66.0/24 701 -208.236.67.0/24 1358 -208.236.68.0/22 701 -208.236.72.0/21 701 -208.236.80.0/20 701 -208.236.96.0/21 701 -208.236.104.0/23 701 -208.236.106.0/24 701 -208.236.107.0/24 23097 -208.236.108.0/22 701 -208.236.112.0/20 701 -208.236.128.0/21 701 -208.236.136.0/22 701 -208.236.140.0/23 701 -208.236.142.0/24 701 -208.236.143.0/24 14010 -208.236.144.0/20 701 -208.236.160.0/19 701 -208.236.192.0/21 701 -208.236.200.0/23 13710 -208.236.202.0/23 701 -208.236.204.0/22 701 -208.236.208.0/23 701 -208.236.210.0/24 393856 -208.236.211.0/24 701 -208.236.212.0/22 701 -208.236.216.0/21 701 -208.236.224.0/19 701 -208.237.0.0/18 701 -208.237.64.0/20 701 -208.237.80.0/22 11847 -208.237.84.0/22 701 -208.237.88.0/21 701 -208.237.96.0/19 701 -208.237.128.0/20 701 -208.237.144.0/21 701 -208.237.152.0/22 701 -208.237.156.0/23 701 -208.237.158.0/24 27582 -208.237.159.0/24 701 -208.237.160.0/20 701 -208.237.176.0/21 701 -208.237.184.0/23 701 -208.237.186.0/24 54271 -208.237.187.0/24 701 -208.237.188.0/22 701 -208.237.192.0/19 701 -208.237.224.0/20 701 -208.237.240.0/21 701 -208.237.248.0/22 701 -208.237.252.0/23 701 -208.237.254.0/24 7723 -208.237.255.0/24 701 -208.238.0.0/18 701 -208.238.64.0/19 701 -208.238.96.0/22 701 -208.238.100.0/23 701 -208.238.102.0/24 13768 -208.238.103.0/24 701 -208.238.104.0/21 701 -208.238.112.0/20 701 -208.238.128.0/18 701 -208.238.192.0/21 701 -208.238.200.0/22 701 -208.238.204.0/22 7799 -208.238.208.0/20 701 -208.238.224.0/19 701 -208.239.0.0/18 701 -208.239.64.0/21 701 -208.239.72.0/22 701 -208.239.76.0/23 17119 -208.239.78.0/23 701 -208.239.80.0/20 701 -208.239.96.0/19 701 -208.239.128.0/20 701 -208.239.144.0/21 701 -208.239.152.0/22 701 -208.239.156.0/23 701 -208.239.158.0/24 701 -208.239.159.0/24 3585 -208.239.160.0/19 701 -208.239.192.0/19 701 -208.239.224.0/22 13768 -208.239.228.0/22 701 -208.239.232.0/21 701 -208.239.240.0/20 701 -208.240.0.0/21 701 -208.240.8.0/22 701 -208.240.12.0/23 701 -208.240.14.0/24 701 -208.240.15.0/24 19936 -208.240.16.0/20 701 -208.240.32.0/19 701 -208.240.64.0/18 701 -208.240.128.0/17 701 -208.241.0.0/20 701 -208.241.16.0/22 701 -208.241.20.0/24 209 -208.241.21.0/24 701 -208.241.22.0/23 701 -208.241.24.0/21 701 -208.241.32.0/21 701 -208.241.40.0/23 3145 -208.241.42.0/23 701 -208.241.44.0/22 701 -208.241.48.0/20 701 -208.241.64.0/20 701 -208.241.80.0/21 701 -208.241.88.0/23 701 -208.241.90.0/24 14010 -208.241.91.0/24 701 -208.241.92.0/22 701 -208.241.96.0/20 701 -208.241.112.0/21 701 -208.241.120.0/22 701 -208.241.124.0/23 14717 -208.241.126.0/23 701 -208.241.128.0/17 701 -208.242.0.0/21 701 -208.242.8.0/22 701 -208.242.12.0/22 11406 -208.242.16.0/20 701 -208.242.32.0/19 701 -208.242.64.0/18 701 -208.242.128.0/18 701 -208.242.192.0/24 23088 -208.242.193.0/24 32805 -208.242.194.0/23 701 -208.242.196.0/22 701 -208.242.200.0/21 701 -208.242.208.0/20 701 -208.242.224.0/19 701 -208.243.0.0/17 701 -208.243.128.0/18 701 -208.243.192.0/19 701 -208.243.224.0/21 701 -208.243.232.0/23 701 -208.243.234.0/24 11437 -208.243.235.0/24 701 -208.243.236.0/22 701 -208.243.240.0/20 701 -208.244.0.0/16 701 -208.245.0.0/20 701 -208.245.16.0/22 701 -208.245.20.0/22 21952 -208.245.24.0/21 701 -208.245.32.0/23 701 -208.245.34.0/24 11437 -208.245.35.0/24 701 -208.245.36.0/22 701 -208.245.40.0/21 701 -208.245.48.0/20 701 -208.245.64.0/19 701 -208.245.96.0/21 701 -208.245.104.0/23 701 -208.245.106.0/24 701 -208.245.107.0/24 11449 -208.245.108.0/22 701 -208.245.112.0/20 701 -208.245.128.0/19 701 -208.245.160.0/21 701 -208.245.168.0/21 3605 -208.245.176.0/20 701 -208.245.192.0/20 701 -208.245.208.0/22 6620 -208.245.212.0/22 701 -208.245.216.0/21 701 -208.245.224.0/19 701 -208.246.0.0/21 701 -208.246.8.0/23 701 -208.246.10.0/24 32067 -208.246.11.0/24 701 -208.246.12.0/22 701 -208.246.16.0/20 701 -208.246.32.0/23 701 -208.246.34.0/24 701 -208.246.35.0/24 29736 -208.246.36.0/22 701 -208.246.40.0/23 701 -208.246.42.0/24 26200 -208.246.43.0/24 14717 -208.246.44.0/22 701 -208.246.48.0/20 701 -208.246.64.0/18 701 -208.246.128.0/17 701 -208.247.0.0/21 7029 -208.247.8.0/21 701 -208.247.16.0/20 701 -208.247.32.0/19 701 -208.247.64.0/19 701 -208.247.96.0/22 701 -208.247.100.0/24 13507 -208.247.101.0/24 701 -208.247.102.0/24 11743 -208.247.103.0/24 701 -208.247.104.0/21 701 -208.247.112.0/20 701 -208.247.128.0/17 701 -208.248.0.0/19 701 -208.248.32.0/21 701 -208.248.40.0/22 701 -208.248.44.0/24 6619 -208.248.45.0/24 701 -208.248.46.0/23 701 -208.248.48.0/20 701 -208.248.64.0/19 701 -208.248.96.0/21 701 -208.248.104.0/22 701 -208.248.108.0/23 12087 -208.248.110.0/23 701 -208.248.112.0/20 701 -208.248.128.0/17 701 -208.249.0.0/18 701 -208.249.64.0/21 701 -208.249.72.0/22 701 -208.249.76.0/23 701 -208.249.78.0/23 11653 -208.249.80.0/24 11653 -208.249.81.0/24 701 -208.249.82.0/23 701 -208.249.84.0/22 701 -208.249.88.0/21 701 -208.249.96.0/20 701 -208.249.112.0/22 701 -208.249.116.0/23 14495 -208.249.118.0/23 701 -208.249.120.0/21 701 -208.249.128.0/18 701 -208.249.192.0/19 701 -208.249.224.0/20 701 -208.249.240.0/22 701 -208.249.244.0/22 17119 -208.249.248.0/21 701 -208.250.0.0/21 701 -208.250.8.0/21 11486 -208.250.16.0/20 701 -208.250.32.0/20 7046 -208.250.48.0/20 701 -208.250.64.0/22 701 -208.250.68.0/23 701 -208.250.70.0/24 15134 -208.250.71.0/24 701 -208.250.72.0/21 701 -208.250.80.0/20 701 -208.250.96.0/22 701 -208.250.100.0/23 701 -208.250.102.0/24 701 -208.250.103.0/24 32319 -208.250.104.0/21 701 -208.250.112.0/20 701 -208.250.128.0/17 701 -208.251.0.0/21 701 -208.251.8.0/21 6620 -208.251.16.0/20 701 -208.251.32.0/19 701 -208.251.64.0/22 701 -208.251.68.0/24 17094 -208.251.69.0/24 701 -208.251.70.0/23 701 -208.251.72.0/21 701 -208.251.80.0/24 26476 -208.251.81.0/24 701 -208.251.82.0/23 701 -208.251.84.0/22 701 -208.251.88.0/21 701 -208.251.96.0/19 701 -208.251.128.0/20 701 -208.251.144.0/21 14793 -208.251.152.0/22 701 -208.251.156.0/24 32377 -208.251.157.0/24 701 -208.251.158.0/23 701 -208.251.160.0/20 701 -208.251.176.0/23 701 -208.251.178.0/24 701 -208.251.179.0/24 11486 -208.251.180.0/22 701 -208.251.184.0/21 701 -208.251.192.0/24 22014 -208.251.193.0/24 701 -208.251.194.0/23 701 -208.251.196.0/22 701 -208.251.200.0/21 701 -208.251.208.0/23 701 -208.251.210.0/24 13666 -208.251.211.0/24 701 -208.251.212.0/22 701 -208.251.216.0/22 701 -208.251.220.0/23 18842 -208.251.222.0/23 701 -208.251.224.0/19 701 -208.252.0.0/19 701 -208.252.32.0/20 701 -208.252.48.0/22 701 -208.252.52.0/24 7029 -208.252.53.0/24 701 -208.252.54.0/23 701 -208.252.56.0/21 701 -208.252.64.0/23 701 -208.252.66.0/24 701 -208.252.67.0/24 13434 -208.252.68.0/22 701 -208.252.72.0/21 701 -208.252.80.0/20 701 -208.252.96.0/19 701 -208.252.128.0/24 46919 -208.252.129.0/24 701 -208.252.130.0/23 701 -208.252.132.0/22 701 -208.252.136.0/21 701 -208.252.144.0/20 701 -208.252.160.0/19 701 -208.252.192.0/18 701 -208.253.0.0/22 701 -208.253.4.0/24 701 -208.253.5.0/24 21542 -208.253.6.0/23 701 -208.253.8.0/21 701 -208.253.16.0/20 701 -208.253.32.0/22 701 -208.253.36.0/24 21886 -208.253.37.0/24 701 -208.253.38.0/23 701 -208.253.40.0/21 701 -208.253.48.0/22 701 -208.253.52.0/24 701 -208.253.53.0/24 39997 -208.253.54.0/23 701 -208.253.56.0/21 701 -208.253.64.0/21 701 -208.253.72.0/22 701 -208.253.76.0/23 701 -208.253.78.0/24 701 -208.253.79.0/24 32418 -208.253.80.0/21 701 -208.253.88.0/22 701 -208.253.92.0/23 701 -208.253.94.0/24 701 -208.253.95.0/24 40412 -208.253.96.0/20 701 -208.253.112.0/23 701 -208.253.114.0/24 701 -208.253.115.0/24 11441 -208.253.116.0/22 701 -208.253.120.0/21 701 -208.253.128.0/18 701 -208.253.192.0/19 701 -208.253.224.0/24 701 -208.253.225.0/24 18550 -208.253.226.0/23 701 -208.253.228.0/22 701 -208.253.232.0/21 701 -208.253.240.0/21 701 -208.253.248.0/22 701 -208.253.252.0/23 701 -208.253.254.0/24 13445 -208.253.255.0/24 701 -208.254.0.0/19 11486 -208.254.32.0/20 11486 -208.254.48.0/21 11486 -208.254.56.0/23 11486 -208.254.58.0/24 7046 -208.254.59.0/24 11486 -208.254.60.0/22 11486 -208.254.64.0/21 11486 -208.254.72.0/23 11486 -208.254.74.0/24 7046 -208.254.75.0/24 11486 -208.254.76.0/22 11486 -208.254.80.0/20 701 -208.254.96.0/20 701 -208.254.112.0/23 17305 -208.254.114.0/24 13445 -208.254.115.0/24 701 -208.254.116.0/22 701 -208.254.120.0/21 701 -208.254.128.0/20 701 -208.254.144.0/23 25967 -208.254.146.0/23 701 -208.254.148.0/24 46303 -208.254.149.0/24 701 -208.254.150.0/23 701 -208.254.152.0/21 701 -208.254.160.0/20 701 -208.254.176.0/21 701 -208.254.184.0/22 701 -208.254.188.0/23 701 -208.254.190.0/23 13662 -208.254.192.0/23 701 -208.254.194.0/23 17119 -208.254.196.0/22 701 -208.254.200.0/22 16791 -208.254.204.0/22 701 -208.254.208.0/20 701 -208.254.224.0/19 701 -208.255.0.0/21 701 -208.255.8.0/22 701 -208.255.12.0/24 701 -208.255.13.0/24 32929 -208.255.14.0/23 701 -208.255.16.0/21 701 -208.255.24.0/22 701 -208.255.28.0/24 701 -208.255.29.0/24 16493 -208.255.30.0/23 701 -208.255.32.0/19 701 -208.255.64.0/19 701 -208.255.96.0/21 701 -208.255.104.0/23 701 -208.255.106.0/24 30430 -208.255.107.0/24 701 -208.255.108.0/22 701 -208.255.112.0/20 701 -208.255.128.0/20 701 -208.255.144.0/21 701 -208.255.152.0/24 701 -208.255.153.0/24 23078 -208.255.154.0/23 701 -208.255.156.0/22 701 -208.255.160.0/22 701 -208.255.164.0/24 19944 -208.255.165.0/24 701 -208.255.166.0/23 701 -208.255.168.0/21 701 -208.255.176.0/21 701 -208.255.184.0/22 26636 -208.255.188.0/22 701 -208.255.192.0/21 701 -208.255.200.0/24 32795 -208.255.201.0/24 701 -208.255.202.0/23 701 -208.255.204.0/22 701 -208.255.208.0/20 701 -208.255.224.0/21 701 -208.255.232.0/24 701 -208.255.233.0/24 19664 -208.255.234.0/23 701 -208.255.236.0/22 701 -208.255.240.0/21 701 -208.255.248.0/22 701 -208.255.252.0/24 23088 -208.255.253.0/24 701 -208.255.254.0/24 47083 -208.255.255.0/24 701 -209.0.0.0/18 3356 -209.0.64.0/19 3356 -209.0.96.0/20 3356 -209.0.112.0/22 32252 -209.0.116.0/22 3356 -209.0.120.0/21 3356 -209.0.128.0/20 3356 -209.0.144.0/23 3356 -209.0.146.0/24 396989 -209.0.147.0/24 3356 -209.0.148.0/22 3356 -209.0.152.0/21 3356 -209.0.160.0/20 3356 -209.0.176.0/20 21906 -209.0.192.0/21 3356 -209.0.200.0/24 3356 -209.0.201.0/24 27357 -209.0.202.0/23 3356 -209.0.204.0/22 3356 -209.0.208.0/20 3356 -209.0.224.0/19 3356 -209.1.0.0/23 3561 -209.1.2.0/23 4298 -209.1.4.0/22 3561 -209.1.8.0/21 3561 -209.1.16.0/20 3561 -209.1.32.0/19 3561 -209.1.64.0/18 3561 -209.1.128.0/17 3561 -209.2.0.0/19 7029 -209.2.32.0/21 7029 -209.2.40.0/22 7029 -209.2.44.0/23 7029 -209.2.46.0/24 7029 -209.2.47.0/24 14 -209.2.48.0/22 14 -209.2.52.0/22 7029 -209.2.56.0/21 7029 -209.2.64.0/18 7029 -209.2.128.0/20 7029 -209.2.144.0/21 7029 -209.2.152.0/22 7029 -209.2.156.0/23 7029 -209.2.158.0/24 18616 -209.2.159.0/24 7029 -209.2.160.0/20 7029 -209.2.176.0/21 7029 -209.2.184.0/24 7029 -209.2.185.0/24 14 -209.2.186.0/23 7029 -209.2.188.0/22 7029 -209.2.192.0/20 7029 -209.2.208.0/20 14 -209.2.224.0/20 14 -209.2.240.0/20 7029 -209.3.0.0/17 209 -209.3.128.0/19 209 -209.3.160.0/21 209 -209.3.168.0/24 32075 -209.3.169.0/24 209 -209.3.170.0/23 209 -209.3.172.0/22 209 -209.3.176.0/20 209 -209.3.192.0/22 209 -209.3.196.0/23 209 -209.3.198.0/24 19302 -209.3.199.0/24 209 -209.3.200.0/24 209 -209.3.201.0/24 3785 -209.3.202.0/23 209 -209.3.204.0/22 209 -209.3.208.0/21 209 -209.3.216.0/23 209 -209.3.218.0/24 53316 -209.3.219.0/24 209 -209.3.220.0/22 209 -209.3.224.0/21 209 -209.3.232.0/22 209 -209.3.236.0/24 209 -209.3.237.0/24 35853 -209.3.238.0/23 209 -209.3.240.0/20 209 -209.4.185.0/24 17119 -209.4.186.0/23 17119 -209.4.188.0/24 17119 -209.4.229.0/24 11437 -209.5.0.0/18 3602 -209.5.64.0/19 3602 -209.5.96.0/20 3602 -209.5.112.0/21 3602 -209.5.120.0/23 3602 -209.5.122.0/23 16932 -209.5.124.0/22 3602 -209.5.128.0/18 3602 -209.5.192.0/19 3602 -209.5.224.0/20 812 -209.5.240.0/20 3602 -209.6.0.0/16 6079 -209.7.0.0/18 6325 -209.7.64.0/24 6325 -209.7.65.0/24 393926 -209.7.66.0/24 393926 -209.7.67.0/24 6325 -209.7.68.0/22 6325 -209.7.72.0/21 6325 -209.7.80.0/20 6325 -209.7.96.0/19 6325 -209.7.128.0/17 6325 -209.8.0.0/22 3491 -209.8.4.0/23 3491 -209.8.6.0/24 17057 -209.8.7.0/24 3491 -209.8.8.0/21 3491 -209.8.16.0/20 3491 -209.8.32.0/19 3491 -209.8.64.0/19 3491 -209.8.96.0/20 3491 -209.8.112.0/24 20940 -209.8.113.0/24 3491 -209.8.114.0/24 3491 -209.8.115.0/24 20940 -209.8.116.0/23 3491 -209.8.118.0/24 20940 -209.8.119.0/24 3491 -209.8.120.0/21 3491 -209.8.128.0/19 3491 -209.8.160.0/20 3491 -209.8.176.0/24 18258 -209.8.177.0/24 3491 -209.8.178.0/23 3491 -209.8.180.0/22 3491 -209.8.184.0/21 3491 -209.8.192.0/19 3491 -209.8.224.0/20 3491 -209.8.240.0/21 3491 -209.8.248.0/21 6597 -209.9.0.0/17 3491 -209.9.128.0/19 3491 -209.9.160.0/20 3491 -209.9.176.0/21 3491 -209.9.184.0/22 3491 -209.9.188.0/24 17057 -209.9.189.0/24 3491 -209.9.190.0/23 3491 -209.9.192.0/20 3491 -209.9.208.0/23 54994 -209.9.210.0/24 3491 -209.9.211.0/24 30103 -209.9.212.0/24 136448 -209.9.213.0/24 394973 -209.9.214.0/24 3491 -209.9.215.0/24 30103 -209.9.216.0/21 3491 -209.9.224.0/21 29944 -209.9.232.0/22 29944 -209.9.236.0/23 29944 -209.9.238.0/24 29889 -209.9.239.0/24 29944 -209.9.240.0/20 3491 -209.10.0.0/23 4136 -209.10.2.0/23 40913 -209.10.4.0/22 4136 -209.10.8.0/22 4136 -209.10.12.0/24 4136 -209.10.13.0/24 40913 -209.10.14.0/23 4136 -209.10.16.0/20 4136 -209.10.32.0/20 40913 -209.10.48.0/21 4136 -209.10.56.0/21 40913 -209.10.64.0/20 53907 -209.10.80.0/22 53907 -209.10.84.0/24 21754 -209.10.85.0/24 53907 -209.10.86.0/23 53907 -209.10.88.0/22 53907 -209.10.92.0/24 393608 -209.10.93.0/24 53907 -209.10.94.0/23 53907 -209.10.96.0/20 20141 -209.10.112.0/22 20141 -209.10.116.0/23 20141 -209.10.118.0/24 20141 -209.10.119.0/24 174 -209.10.120.0/22 20141 -209.10.124.0/23 395278 -209.10.126.0/23 20141 -209.10.128.0/21 20141 -209.10.136.0/24 20141 -209.10.137.0/24 33282 -209.10.138.0/23 20141 -209.10.140.0/22 20141 -209.10.144.0/20 20141 -209.10.160.0/20 4136 -209.10.176.0/21 40107 -209.10.184.0/24 39997 -209.10.185.0/24 40107 -209.10.186.0/24 19920 -209.10.187.0/24 40107 -209.10.188.0/22 40107 -209.10.192.0/22 394968 -209.10.196.0/24 394968 -209.10.197.0/24 53866 -209.10.198.0/23 394968 -209.10.200.0/22 40913 -209.10.204.0/22 4136 -209.10.208.0/20 40913 -209.10.224.0/20 40913 -209.10.240.0/24 33282 -209.10.241.0/24 394968 -209.10.242.0/23 394968 -209.10.244.0/22 394968 -209.10.248.0/21 4136 -209.11.0.0/22 53907 -209.11.4.0/22 40913 -209.11.8.0/21 4136 -209.11.16.0/20 4136 -209.11.32.0/19 4136 -209.11.64.0/19 4136 -209.11.96.0/20 4136 -209.11.112.0/20 40913 -209.11.128.0/19 40913 -209.11.160.0/20 40913 -209.11.176.0/21 40107 -209.11.184.0/21 40913 -209.11.192.0/21 4136 -209.11.200.0/21 40107 -209.11.208.0/20 4136 -209.11.224.0/20 22243 -209.11.240.0/20 35908 -209.12.0.0/22 3549 -209.12.4.0/24 40139 -209.12.5.0/24 3549 -209.12.6.0/23 3549 -209.12.8.0/21 3549 -209.12.16.0/22 3549 -209.12.20.0/23 3549 -209.12.22.0/24 3549 -209.12.23.0/24 40139 -209.12.24.0/24 3549 -209.12.25.0/24 26831 -209.12.26.0/24 26831 -209.12.27.0/24 3549 -209.12.28.0/22 3549 -209.12.32.0/23 3549 -209.12.34.0/23 26831 -209.12.36.0/22 3549 -209.12.40.0/21 3549 -209.12.48.0/24 3549 -209.12.49.0/24 33489 -209.12.50.0/23 3549 -209.12.52.0/24 32166 -209.12.53.0/24 396490 -209.12.54.0/23 3356 -209.12.56.0/24 23357 -209.12.57.0/24 3549 -209.12.58.0/23 3549 -209.12.60.0/24 19271 -209.12.61.0/24 3549 -209.12.62.0/24 3549 -209.12.63.0/24 54007 -209.12.64.0/22 3549 -209.12.68.0/23 3549 -209.12.70.0/24 40805 -209.12.71.0/24 395918 -209.12.72.0/21 3549 -209.12.80.0/20 3549 -209.12.96.0/21 3549 -209.12.104.0/22 3549 -209.12.108.0/23 3549 -209.12.110.0/24 26831 -209.12.111.0/24 3549 -209.12.112.0/22 3549 -209.12.116.0/23 3549 -209.12.118.0/24 33623 -209.12.119.0/24 3549 -209.12.120.0/23 3549 -209.12.122.0/24 26831 -209.12.123.0/24 3549 -209.12.124.0/22 3549 -209.12.128.0/24 26831 -209.12.129.0/24 3549 -209.12.130.0/23 3549 -209.12.132.0/24 3549 -209.12.133.0/24 46413 -209.12.134.0/23 3549 -209.12.136.0/21 3549 -209.12.144.0/21 3549 -209.12.152.0/24 3549 -209.12.153.0/24 33623 -209.12.154.0/23 3549 -209.12.156.0/22 3549 -209.12.160.0/24 3549 -209.12.161.0/24 26831 -209.12.162.0/24 4598 -209.12.163.0/24 3549 -209.12.164.0/23 33606 -209.12.166.0/23 3549 -209.12.168.0/21 3549 -209.12.176.0/20 3549 -209.12.192.0/21 3549 -209.12.200.0/24 33623 -209.12.201.0/24 3549 -209.12.202.0/23 3549 -209.12.204.0/22 3549 -209.12.208.0/20 3549 -209.12.224.0/22 3549 -209.12.228.0/24 63333 -209.12.229.0/24 25679 -209.12.230.0/24 3549 -209.12.231.0/24 26831 -209.12.232.0/23 26831 -209.12.234.0/23 3549 -209.12.236.0/24 3549 -209.12.237.0/24 395372 -209.12.238.0/23 3549 -209.12.240.0/22 3549 -209.12.244.0/24 40139 -209.12.245.0/24 3549 -209.12.246.0/23 3549 -209.12.248.0/22 3549 -209.12.252.0/23 3549 -209.12.254.0/24 3549 -209.12.255.0/24 40139 -209.13.0.0/17 10834 -209.13.128.0/19 10834 -209.13.160.0/22 10834 -209.13.164.0/23 10834 -209.13.166.0/24 10834 -209.13.167.0/24 22927 -209.13.168.0/22 10834 -209.13.172.0/24 22927 -209.13.173.0/24 10834 -209.13.174.0/23 10834 -209.13.176.0/20 10834 -209.13.192.0/18 10834 -209.14.0.0/23 40676 -209.14.2.0/23 174 -209.14.4.0/22 174 -209.14.8.0/21 174 -209.14.16.0/20 174 -209.14.32.0/19 174 -209.14.64.0/18 174 -209.14.128.0/17 174 -209.15.0.0/20 13768 -209.15.16.0/21 13768 -209.15.24.0/24 13768 -209.15.25.0/24 54002 -209.15.26.0/24 13768 -209.15.27.0/24 4892 -209.15.28.0/22 13768 -209.15.32.0/21 13768 -209.15.40.0/23 13768 -209.15.43.0/24 13768 -209.15.44.0/22 13768 -209.15.48.0/20 13768 -209.15.64.0/19 11290 -209.15.128.0/19 7992 -209.15.160.0/19 11290 -209.15.192.0/18 13768 -209.16.0.0/18 10713 -209.16.64.0/20 4314 -209.16.80.0/22 4314 -209.16.84.0/24 4314 -209.16.85.0/24 32592 -209.16.86.0/23 4314 -209.16.88.0/24 4314 -209.16.89.0/24 32592 -209.16.90.0/24 32592 -209.16.91.0/24 4314 -209.16.92.0/24 32592 -209.16.93.0/24 4314 -209.16.94.0/23 4314 -209.16.96.0/20 19871 -209.16.112.0/21 33363 -209.16.120.0/23 33363 -209.16.122.0/24 33363 -209.16.123.0/24 16787 -209.16.124.0/22 33363 -209.16.128.0/22 11668 -209.16.132.0/22 40866 -209.16.136.0/24 397396 -209.16.138.0/24 397489 -209.16.139.0/24 7029 -209.16.142.0/23 209411 -209.16.160.0/20 4319 -209.16.176.0/22 47254 -209.16.180.0/23 47254 -209.16.182.0/24 47254 -209.16.192.0/21 3561 -209.16.200.0/23 3561 -209.16.202.0/23 6428 -209.16.204.0/22 3561 -209.16.208.0/23 3561 -209.16.210.0/24 14858 -209.16.211.0/24 3561 -209.16.212.0/22 3561 -209.16.216.0/21 3561 -209.16.224.0/20 7029 -209.16.240.0/24 40911 -209.16.241.0/24 7029 -209.16.242.0/23 7029 -209.16.244.0/22 7029 -209.16.248.0/21 7029 -209.17.0.0/20 792 -209.17.16.0/20 90 -209.17.37.0/24 1219 -209.17.40.0/24 1216 -209.17.68.0/22 14173 -209.17.96.0/20 174 -209.17.112.0/22 19871 -209.17.116.0/24 55002 -209.17.117.0/24 19871 -209.17.118.0/23 19871 -209.17.120.0/21 19871 -209.17.128.0/20 6539 -209.17.144.0/22 6539 -209.17.148.0/23 6539 -209.17.150.0/23 11831 -209.17.152.0/21 6539 -209.17.160.0/21 6539 -209.17.168.0/23 6539 -209.17.170.0/23 11831 -209.17.172.0/22 6539 -209.17.176.0/23 6539 -209.17.178.0/24 6539 -209.17.179.0/24 3848 -209.17.180.0/22 6539 -209.17.184.0/23 6539 -209.17.186.0/24 11831 -209.17.187.0/24 6539 -209.17.188.0/23 6539 -209.17.190.0/23 11831 -209.17.192.0/19 15315 -209.18.32.0/20 7843 -209.18.48.0/20 32162 -209.18.64.0/19 14492 -209.18.96.0/20 14492 -209.18.112.0/22 24778 -209.18.116.0/22 14492 -209.18.120.0/22 14492 -209.18.124.0/22 22205 -209.18.128.0/17 5006 -209.19.0.0/17 7029 -209.19.128.0/18 14230 -209.19.192.0/18 2828 -209.20.0.0/20 852 -209.20.16.0/21 852 -209.20.24.0/22 852 -209.20.28.0/23 852 -209.20.30.0/24 852 -209.20.31.0/24 7861 -209.20.32.0/23 7861 -209.20.34.0/23 852 -209.20.36.0/23 852 -209.20.38.0/23 7861 -209.20.40.0/21 852 -209.20.48.0/20 852 -209.20.64.0/19 19994 -209.20.96.0/19 10444 -209.20.128.0/17 2044 -209.21.0.0/18 2914 -209.21.65.0/24 30477 -209.21.66.0/23 4965 -209.21.68.0/23 4965 -209.21.70.0/24 4965 -209.21.76.0/22 4965 -209.21.88.0/23 4965 -209.21.91.0/24 4965 -209.21.96.0/20 7029 -209.21.112.0/20 22163 -209.21.128.0/17 2828 -209.22.0.0/22 721 -209.22.4.0/23 721 -209.22.6.0/23 668 -209.22.8.0/24 668 -209.22.9.0/24 721 -209.22.10.0/24 383 -209.22.11.0/24 721 -209.22.12.0/23 721 -209.22.14.0/24 385 -209.22.15.0/24 721 -209.22.16.0/22 721 -209.22.20.0/23 721 -209.22.22.0/24 385 -209.22.23.0/24 721 -209.22.24.0/23 721 -209.22.26.0/24 721 -209.22.27.0/24 385 -209.22.28.0/23 721 -209.22.30.0/24 27064 -209.22.31.0/24 385 -209.22.32.0/22 721 -209.22.36.0/23 721 -209.22.38.0/24 5979 -209.22.39.0/24 721 -209.22.40.0/24 571 -209.22.41.0/24 721 -209.22.42.0/23 721 -209.22.44.0/23 721 -209.22.46.0/24 721 -209.22.47.0/24 724 -209.22.48.0/23 5972 -209.22.50.0/24 721 -209.22.51.0/24 27064 -209.22.52.0/24 5237 -209.22.53.0/24 721 -209.22.54.0/23 721 -209.22.56.0/21 721 -209.22.64.0/22 2046 -209.22.68.0/22 721 -209.22.72.0/23 721 -209.22.74.0/24 6026 -209.22.75.0/24 2046 -209.22.76.0/23 27064 -209.22.78.0/24 721 -209.22.79.0/24 494 -209.22.80.0/24 494 -209.22.81.0/24 27066 -209.22.82.0/24 1733 -209.22.83.0/24 721 -209.22.84.0/23 494 -209.22.86.0/23 721 -209.22.88.0/24 721 -209.22.89.0/24 27064 -209.22.90.0/23 721 -209.22.92.0/23 721 -209.22.94.0/24 27065 -209.22.95.0/24 721 -209.22.96.0/24 2046 -209.22.97.0/24 1733 -209.22.98.0/23 721 -209.22.100.0/23 721 -209.22.102.0/24 721 -209.22.103.0/24 27066 -209.22.104.0/22 494 -209.22.108.0/23 494 -209.22.110.0/23 721 -209.22.112.0/22 721 -209.22.116.0/23 494 -209.22.118.0/24 494 -209.22.119.0/24 721 -209.22.120.0/24 27064 -209.22.121.0/24 721 -209.22.122.0/23 721 -209.22.124.0/22 27064 -209.22.128.0/22 721 -209.22.132.0/23 2749 -209.22.134.0/23 721 -209.22.136.0/24 721 -209.22.137.0/24 27064 -209.22.138.0/24 64140 -209.22.139.0/24 721 -209.22.140.0/22 721 -209.22.144.0/20 721 -209.22.160.0/21 721 -209.22.168.0/22 721 -209.22.172.0/23 721 -209.22.174.0/24 721 -209.22.175.0/24 27064 -209.22.176.0/24 721 -209.22.177.0/24 5972 -209.22.178.0/24 5972 -209.22.179.0/24 2749 -209.22.180.0/24 722 -209.22.181.0/24 721 -209.22.182.0/23 721 -209.22.184.0/23 721 -209.22.186.0/23 27064 -209.22.188.0/22 721 -209.22.192.0/20 721 -209.22.208.0/21 721 -209.22.216.0/22 721 -209.22.220.0/22 27064 -209.22.224.0/21 27064 -209.22.232.0/24 721 -209.22.233.0/24 27064 -209.22.234.0/24 27064 -209.22.235.0/24 721 -209.22.236.0/24 5974 -209.22.237.0/24 721 -209.22.238.0/23 721 -209.22.240.0/22 721 -209.22.244.0/23 721 -209.22.246.0/24 721 -209.22.247.0/24 27064 -209.22.248.0/23 721 -209.22.250.0/24 300 -209.22.251.0/24 721 -209.22.252.0/22 721 -209.23.0.0/19 3931 -209.23.32.0/19 15065 -209.23.64.0/19 3931 -209.23.96.0/22 15065 -209.23.100.0/24 15065 -209.23.101.0/24 3931 -209.23.102.0/23 3931 -209.23.104.0/21 3931 -209.23.112.0/20 3931 -209.23.128.0/18 12042 -209.23.192.0/21 7922 -209.23.200.0/24 7922 -209.23.201.0/24 33651 -209.23.202.0/24 33651 -209.23.203.0/24 7922 -209.23.204.0/23 7922 -209.23.206.0/24 63415 -209.23.207.0/24 33462 -209.23.208.0/23 7922 -209.23.210.0/24 26868 -209.23.211.0/24 7922 -209.23.212.0/22 7922 -209.23.216.0/24 7922 -209.23.217.0/24 33659 -209.23.218.0/23 7922 -209.23.220.0/23 7922 -209.23.222.0/24 7922 -209.23.223.0/24 7015 -209.23.224.0/24 7922 -209.23.225.0/24 33287 -209.23.226.0/23 7922 -209.23.228.0/22 7922 -209.23.232.0/24 33491 -209.23.233.0/24 7922 -209.23.234.0/24 23340 -209.23.235.0/24 10451 -209.23.236.0/23 7922 -209.23.238.0/24 7922 -209.23.239.0/24 62526 -209.23.240.0/22 7922 -209.23.244.0/24 7922 -209.23.245.0/24 7725 -209.23.246.0/24 7725 -209.23.247.0/24 14189 -209.23.248.0/24 7922 -209.23.249.0/24 33491 -209.23.250.0/24 7922 -209.23.251.0/24 7015 -209.23.252.0/24 7922 -209.23.253.0/24 33651 -209.23.254.0/23 7922 -209.24.0.0/23 15562 -209.24.2.0/24 8952 -209.24.3.0/24 15562 -209.24.4.0/22 15562 -209.24.8.0/21 15562 -209.24.16.0/20 15562 -209.24.32.0/19 15562 -209.24.64.0/18 15562 -209.24.128.0/17 15562 -209.25.0.0/17 3561 -209.25.128.0/17 13768 -209.26.0.0/23 209 -209.26.2.0/24 2379 -209.26.3.0/24 209 -209.26.4.0/22 2379 -209.26.8.0/22 2379 -209.26.12.0/23 209 -209.26.14.0/23 2379 -209.26.16.0/23 2379 -209.26.18.0/24 2379 -209.26.19.0/24 209 -209.26.20.0/24 209 -209.26.21.0/24 2379 -209.26.22.0/24 2379 -209.26.23.0/24 209 -209.26.24.0/23 2379 -209.26.26.0/23 209 -209.26.28.0/24 209 -209.26.29.0/24 2379 -209.26.30.0/23 2379 -209.26.32.0/23 209 -209.26.34.0/23 2379 -209.26.36.0/22 2379 -209.26.40.0/22 2379 -209.26.44.0/22 209 -209.26.48.0/21 6364 -209.26.56.0/23 209 -209.26.58.0/24 2379 -209.26.59.0/24 209 -209.26.60.0/23 2379 -209.26.62.0/23 209 -209.26.64.0/23 2379 -209.26.66.0/23 209 -209.26.68.0/22 2379 -209.26.72.0/23 209 -209.26.74.0/23 2379 -209.26.76.0/22 2379 -209.26.80.0/22 2379 -209.26.84.0/24 209 -209.26.85.0/24 2379 -209.26.86.0/23 2379 -209.26.88.0/21 2379 -209.26.96.0/19 2379 -209.26.128.0/20 2379 -209.26.144.0/22 2379 -209.26.148.0/23 2379 -209.26.150.0/24 209 -209.26.151.0/24 2379 -209.26.152.0/21 2379 -209.26.160.0/20 2379 -209.26.176.0/23 2379 -209.26.178.0/23 14467 -209.26.180.0/23 14467 -209.26.182.0/24 14467 -209.26.183.0/24 2379 -209.26.184.0/21 2379 -209.26.192.0/24 2379 -209.26.193.0/24 23314 -209.26.194.0/23 2379 -209.26.196.0/22 2379 -209.26.200.0/21 2379 -209.26.208.0/20 2379 -209.26.224.0/21 2379 -209.26.232.0/23 2379 -209.26.234.0/24 2379 -209.26.235.0/24 209 -209.26.236.0/24 209 -209.26.237.0/24 2379 -209.26.238.0/23 2379 -209.26.240.0/24 209 -209.26.241.0/24 2379 -209.26.242.0/23 2379 -209.26.244.0/22 2379 -209.26.248.0/23 2379 -209.26.250.0/24 2379 -209.26.251.0/24 209 -209.26.252.0/24 2379 -209.26.253.0/24 209 -209.26.254.0/24 209 -209.26.255.0/24 2379 -209.27.0.0/21 3561 -209.27.8.0/22 3561 -209.27.12.0/23 3561 -209.27.14.0/24 3561 -209.27.15.0/24 14524 -209.27.16.0/20 3561 -209.27.32.0/20 3561 -209.27.48.0/22 55246 -209.27.52.0/22 6639 -209.27.56.0/22 3561 -209.27.60.0/22 6639 -209.27.64.0/18 3561 -209.27.128.0/17 3561 -209.28.0.0/16 3300 -209.29.0.0/17 852 -209.29.128.0/21 852 -209.29.136.0/22 852 -209.29.140.0/24 852 -209.29.141.0/24 7861 -209.29.142.0/23 852 -209.29.144.0/20 852 -209.29.160.0/19 852 -209.29.192.0/20 852 -209.29.208.0/21 852 -209.29.216.0/22 7861 -209.29.220.0/23 852 -209.29.222.0/23 7861 -209.29.224.0/23 852 -209.29.226.0/23 7861 -209.29.228.0/22 852 -209.29.232.0/21 852 -209.29.240.0/23 852 -209.29.242.0/23 7861 -209.29.244.0/24 852 -209.29.245.0/24 7861 -209.29.246.0/23 852 -209.29.248.0/21 852 -209.30.0.0/16 7018 -209.31.0.0/20 2828 -209.31.16.0/22 2828 -209.31.20.0/23 2828 -209.31.22.0/23 27291 -209.31.24.0/21 2828 -209.31.32.0/22 2828 -209.31.36.0/24 40807 -209.31.37.0/24 2828 -209.31.38.0/23 2828 -209.31.40.0/21 2828 -209.31.48.0/20 2828 -209.31.64.0/20 2828 -209.31.80.0/21 2828 -209.31.88.0/22 2828 -209.31.92.0/24 2828 -209.31.93.0/24 16493 -209.31.94.0/23 2828 -209.31.96.0/20 2828 -209.31.112.0/22 46746 -209.31.116.0/22 2828 -209.31.120.0/21 2828 -209.31.128.0/19 2828 -209.31.160.0/20 2828 -209.31.176.0/22 55106 -209.31.180.0/22 2828 -209.31.184.0/21 2828 -209.31.192.0/18 2828 -209.32.0.0/18 5006 -209.32.64.0/21 33362 -209.32.72.0/21 5006 -209.32.80.0/20 5006 -209.32.96.0/20 5006 -209.32.112.0/21 33362 -209.32.120.0/21 5006 -209.32.128.0/18 5006 -209.32.192.0/21 5006 -209.32.200.0/22 5006 -209.32.204.0/23 5006 -209.32.206.0/24 5006 -209.32.207.0/24 7821 -209.32.208.0/24 7821 -209.32.209.0/24 5006 -209.32.210.0/23 5006 -209.32.212.0/22 5006 -209.32.216.0/21 5006 -209.32.224.0/19 5006 -209.33.0.0/22 19108 -209.33.4.0/24 7029 -209.33.5.0/24 209 -209.33.6.0/24 7029 -209.33.7.0/24 19108 -209.33.8.0/23 19108 -209.33.10.0/23 7018 -209.33.12.0/22 19108 -209.33.16.0/23 19108 -209.33.18.0/24 21615 -209.33.19.0/24 19108 -209.33.20.0/22 21615 -209.33.24.0/22 19108 -209.33.28.0/24 7029 -209.33.29.0/24 19108 -209.33.30.0/23 19108 -209.33.32.0/22 19108 -209.33.36.0/23 19108 -209.33.38.0/24 21615 -209.33.39.0/24 19108 -209.33.40.0/24 19108 -209.33.41.0/24 21615 -209.33.42.0/23 19108 -209.33.44.0/22 19108 -209.33.48.0/20 19108 -209.33.64.0/22 19108 -209.33.68.0/23 19108 -209.33.70.0/24 19108 -209.33.71.0/24 21615 -209.33.72.0/23 19108 -209.33.74.0/24 209 -209.33.75.0/24 19108 -209.33.76.0/23 19108 -209.33.78.0/24 19108 -209.33.79.0/24 21615 -209.33.80.0/23 21615 -209.33.82.0/23 19108 -209.33.84.0/22 19108 -209.33.88.0/24 7018 -209.33.89.0/24 19108 -209.33.90.0/23 19108 -209.33.92.0/22 19108 -209.33.96.0/23 20115 -209.33.98.0/23 19108 -209.33.100.0/22 19108 -209.33.104.0/21 19108 -209.33.112.0/21 19108 -209.33.120.0/23 19108 -209.33.122.0/23 21615 -209.33.124.0/22 19108 -209.33.128.0/18 7029 -209.33.192.0/18 11071 -209.34.0.0/23 6300 -209.34.2.0/24 395183 -209.34.3.0/24 6300 -209.34.4.0/22 6300 -209.34.8.0/21 6300 -209.34.16.0/20 6300 -209.34.32.0/19 6300 -209.34.73.0/24 27435 -209.34.86.0/23 27435 -209.34.96.0/20 21804 -209.34.112.0/20 30712 -209.34.128.0/19 11404 -209.34.160.0/21 29873 -209.34.168.0/22 29873 -209.34.172.0/23 29873 -209.34.192.0/24 22773 -209.34.193.0/24 62808 -209.34.194.0/23 22773 -209.34.196.0/22 22773 -209.34.200.0/24 23172 -209.34.201.0/24 22773 -209.34.202.0/23 22773 -209.34.204.0/24 22773 -209.34.205.0/24 393521 -209.34.206.0/24 393521 -209.34.207.0/24 18709 -209.34.208.0/20 22773 -209.34.224.0/19 19271 -209.35.0.0/16 13768 -209.36.0.0/19 7018 -209.36.32.0/20 7018 -209.36.48.0/22 7018 -209.36.52.0/22 2386 -209.36.56.0/21 7018 -209.36.64.0/18 7018 -209.36.128.0/17 7018 -209.37.0.0/22 7018 -209.37.4.0/24 18662 -209.37.5.0/24 7018 -209.37.6.0/23 7018 -209.37.8.0/22 7018 -209.37.12.0/23 7018 -209.37.14.0/24 7018 -209.37.15.0/24 16700 -209.37.16.0/20 7018 -209.37.32.0/19 7018 -209.37.64.0/21 7018 -209.37.72.0/22 7018 -209.37.76.0/23 7018 -209.37.78.0/23 2386 -209.37.80.0/20 7018 -209.37.96.0/22 7018 -209.37.100.0/24 7018 -209.37.101.0/24 26657 -209.37.102.0/23 7018 -209.37.104.0/22 4473 -209.37.108.0/24 7018 -209.37.109.0/24 4473 -209.37.110.0/24 4473 -209.37.111.0/24 7018 -209.37.112.0/20 7018 -209.37.128.0/19 7018 -209.37.160.0/21 7018 -209.37.168.0/23 7018 -209.37.170.0/24 7018 -209.37.171.0/24 25725 -209.37.172.0/22 7018 -209.37.176.0/20 7018 -209.37.192.0/22 7018 -209.37.196.0/23 26344 -209.37.198.0/23 7018 -209.37.200.0/21 7018 -209.37.208.0/21 7018 -209.37.216.0/24 7018 -209.37.217.0/24 4917 -209.37.218.0/23 7018 -209.37.220.0/22 7018 -209.37.224.0/19 7018 -209.39.0.0/20 2914 -209.39.16.0/22 2914 -209.39.20.0/24 174 -209.39.21.0/24 2914 -209.39.22.0/23 2914 -209.39.24.0/23 2914 -209.39.26.0/24 174 -209.39.27.0/24 2914 -209.39.28.0/22 2914 -209.39.32.0/19 2914 -209.39.64.0/18 2914 -209.39.128.0/17 2914 -209.40.0.0/18 2379 -209.40.64.0/20 26771 -209.40.80.0/21 7018 -209.40.88.0/24 7018 -209.40.90.0/23 397765 -209.40.92.0/22 397765 -209.40.96.0/19 55933 -209.40.128.0/24 6620 -209.40.130.0/23 6620 -209.40.132.0/22 6620 -209.40.136.0/21 6620 -209.40.144.0/20 6620 -209.40.160.0/20 6620 -209.40.176.0/22 6620 -209.40.180.0/24 6620 -209.40.182.0/23 6620 -209.40.184.0/21 6620 -209.40.192.0/20 29873 -209.40.208.0/20 64242 -209.40.224.0/21 20340 -209.40.232.0/21 32393 -209.40.240.0/20 20340 -209.41.64.0/23 3356 -209.41.66.0/24 13951 -209.41.67.0/24 29951 -209.41.68.0/22 13951 -209.41.72.0/21 13951 -209.41.80.0/22 13767 -209.41.84.0/22 13951 -209.41.88.0/21 13951 -209.41.96.0/20 46175 -209.41.112.0/20 7029 -209.41.128.0/21 4470 -209.41.136.0/22 4470 -209.41.140.0/23 11342 -209.41.142.0/23 4470 -209.41.144.0/23 4470 -209.41.146.0/23 11342 -209.41.148.0/22 11342 -209.41.152.0/24 11342 -209.41.153.0/24 4470 -209.41.154.0/23 14166 -209.41.156.0/22 14166 -209.41.160.0/19 20021 -209.41.192.0/21 174 -209.41.200.0/22 174 -209.41.204.0/24 174 -209.41.205.0/24 35884 -209.41.206.0/23 174 -209.41.208.0/20 174 -209.41.224.0/19 174 -209.42.0.0/19 35575 -209.42.32.0/22 29866 -209.42.36.0/22 23314 -209.42.40.0/21 29866 -209.42.48.0/20 29866 -209.42.64.0/19 10821 -209.42.96.0/19 32638 -209.42.128.0/23 26504 -209.42.130.0/23 23391 -209.42.132.0/23 36790 -209.42.134.0/24 32448 -209.42.135.0/24 21688 -209.42.136.0/24 23391 -209.42.137.0/24 36790 -209.42.138.0/23 23391 -209.42.140.0/24 36790 -209.42.141.0/24 23391 -209.42.142.0/24 23391 -209.42.143.0/24 26504 -209.42.144.0/22 32448 -209.42.148.0/23 32448 -209.42.150.0/23 23391 -209.42.152.0/24 23391 -209.42.153.0/24 21688 -209.42.154.0/23 32448 -209.42.156.0/23 23391 -209.42.158.0/24 36790 -209.42.159.0/24 26504 -209.42.160.0/22 25645 -209.42.164.0/24 29838 -209.42.166.0/24 10397 -209.42.191.0/24 10397 -209.42.192.0/18 63410 -209.43.0.0/24 7332 -209.43.1.0/24 53320 -209.43.2.0/23 7332 -209.43.4.0/22 7332 -209.43.8.0/21 7332 -209.43.16.0/21 7332 -209.43.24.0/24 7332 -209.43.25.0/24 32407 -209.43.26.0/23 7332 -209.43.28.0/24 7332 -209.43.29.0/24 54395 -209.43.30.0/23 7332 -209.43.32.0/19 7332 -209.43.64.0/22 7332 -209.43.68.0/23 7332 -209.43.70.0/24 25683 -209.43.71.0/24 7332 -209.43.72.0/21 7332 -209.43.80.0/20 7332 -209.43.96.0/21 7332 -209.43.104.0/23 62839 -209.43.106.0/23 7332 -209.43.108.0/22 7332 -209.43.112.0/20 7332 -209.43.128.0/17 2914 -209.44.0.0/18 3561 -209.44.73.0/24 16830 -209.44.96.0/21 10929 -209.44.104.0/24 10929 -209.44.105.0/24 40470 -209.44.106.0/23 10929 -209.44.108.0/22 10929 -209.44.112.0/23 10929 -209.44.114.0/24 10929 -209.44.115.0/24 46874 -209.44.116.0/22 10929 -209.44.120.0/21 10929 -209.44.128.0/18 17306 -209.44.192.0/20 17306 -209.44.240.0/20 17306 -209.45.0.0/19 3132 -209.45.32.0/20 3132 -209.45.48.0/21 262253 -209.45.56.0/23 262253 -209.45.58.0/23 3132 -209.45.60.0/22 262253 -209.45.64.0/21 3132 -209.45.72.0/22 3132 -209.45.76.0/22 262253 -209.45.80.0/23 3132 -209.45.82.0/24 262253 -209.45.83.0/24 3132 -209.45.84.0/22 3132 -209.45.88.0/21 3132 -209.45.96.0/19 3132 -209.45.128.0/19 209 -209.45.160.0/23 209 -209.45.162.0/24 209 -209.45.163.0/24 26437 -209.45.164.0/22 209 -209.45.168.0/21 209 -209.45.176.0/24 16399 -209.45.177.0/24 209 -209.45.178.0/23 209 -209.45.180.0/22 209 -209.45.184.0/21 209 -209.45.192.0/18 209 -209.46.0.0/17 7381 -209.46.128.0/21 721 -209.46.136.0/22 721 -209.46.140.0/24 721 -209.46.141.0/24 27066 -209.46.142.0/23 721 -209.46.144.0/20 721 -209.46.160.0/19 721 -209.46.192.0/18 721 -209.47.0.0/18 701 -209.47.64.0/20 701 -209.47.80.0/22 701 -209.47.84.0/23 701 -209.47.86.0/24 701 -209.47.87.0/24 15128 -209.47.88.0/21 701 -209.47.96.0/19 701 -209.47.128.0/19 701 -209.47.160.0/21 701 -209.47.168.0/22 701 -209.47.172.0/24 21548 -209.47.173.0/24 701 -209.47.174.0/24 11486 -209.47.175.0/24 701 -209.47.176.0/24 395800 -209.47.177.0/24 701 -209.47.178.0/23 701 -209.47.180.0/22 701 -209.47.184.0/21 701 -209.47.192.0/21 701 -209.47.200.0/22 701 -209.47.204.0/23 701 -209.47.206.0/24 701 -209.47.207.0/24 30529 -209.47.208.0/21 701 -209.47.216.0/23 701 -209.47.218.0/24 701 -209.47.219.0/24 22964 -209.47.220.0/22 701 -209.47.224.0/19 701 -209.48.0.0/19 2828 -209.48.32.0/23 2828 -209.48.34.0/24 2828 -209.48.35.0/24 16919 -209.48.36.0/23 2828 -209.48.38.0/24 2828 -209.48.39.0/24 26114 -209.48.40.0/21 2828 -209.48.48.0/20 2828 -209.48.64.0/18 2828 -209.48.128.0/19 2828 -209.48.160.0/21 2828 -209.48.168.0/24 2828 -209.48.169.0/24 46185 -209.48.170.0/23 2828 -209.48.172.0/22 2828 -209.48.176.0/20 2828 -209.48.192.0/24 2828 -209.48.193.0/24 22525 -209.48.194.0/23 2828 -209.48.196.0/22 2828 -209.48.200.0/21 2828 -209.48.208.0/20 2828 -209.48.224.0/19 2828 -209.49.0.0/22 2828 -209.49.4.0/24 2828 -209.49.5.0/24 11215 -209.49.6.0/23 2828 -209.49.8.0/22 2828 -209.49.12.0/24 25760 -209.49.13.0/24 2828 -209.49.14.0/23 2828 -209.49.16.0/20 2828 -209.49.32.0/19 2828 -209.49.64.0/20 2828 -209.49.80.0/21 2828 -209.49.88.0/22 10355 -209.49.92.0/22 31835 -209.49.96.0/20 2828 -209.49.112.0/21 2828 -209.49.120.0/23 2828 -209.49.122.0/24 2828 -209.49.123.0/24 53985 -209.49.124.0/22 2828 -209.49.128.0/21 2828 -209.49.136.0/22 2828 -209.49.140.0/23 2828 -209.49.142.0/24 2828 -209.49.143.0/24 54732 -209.49.144.0/23 2828 -209.49.146.0/24 2828 -209.49.147.0/24 393371 -209.49.148.0/22 2828 -209.49.152.0/22 2828 -209.49.156.0/23 2828 -209.49.158.0/24 27453 -209.49.159.0/24 2828 -209.49.160.0/23 2828 -209.49.162.0/24 7046 -209.49.163.0/24 2828 -209.49.164.0/22 2828 -209.49.168.0/22 2828 -209.49.172.0/22 10355 -209.49.176.0/22 2828 -209.49.180.0/23 2828 -209.49.182.0/23 7046 -209.49.184.0/21 2828 -209.49.192.0/19 2828 -209.49.224.0/22 2828 -209.49.228.0/24 395035 -209.49.229.0/24 395626 -209.49.230.0/23 2828 -209.49.232.0/21 2828 -209.49.240.0/24 2828 -209.49.241.0/24 395626 -209.49.242.0/23 2828 -209.49.244.0/22 2828 -209.49.248.0/21 2828 -209.50.0.0/19 15108 -209.50.32.0/20 54614 -209.50.48.0/20 25697 -209.50.64.0/19 6539 -209.50.96.0/19 7029 -209.50.128.0/21 3737 -209.50.136.0/23 3737 -209.50.138.0/24 3737 -209.50.139.0/24 396020 -209.50.140.0/22 3737 -209.50.144.0/22 3737 -209.50.148.0/23 3737 -209.50.150.0/24 3737 -209.50.151.0/24 15239 -209.50.152.0/22 3737 -209.50.156.0/24 3737 -209.50.157.0/24 30153 -209.50.158.0/23 6169 -209.50.160.0/19 7029 -209.50.192.0/19 11951 -209.50.224.0/19 30633 -209.51.17.0/24 396936 -209.51.28.0/24 396940 -209.51.51.0/24 11690 -209.51.61.0/24 11690 -209.51.64.0/23 46273 -209.51.66.0/23 395597 -209.51.68.0/22 395597 -209.51.72.0/24 21654 -209.51.74.0/23 395597 -209.51.76.0/23 395597 -209.51.80.0/23 21737 -209.51.82.0/24 395597 -209.51.84.0/23 395597 -209.51.86.0/24 6079 -209.51.88.0/22 395597 -209.51.92.0/24 395597 -209.51.93.0/24 63381 -209.51.94.0/24 701 -209.51.96.0/22 19271 -209.51.128.0/21 11042 -209.51.136.0/23 11042 -209.51.138.0/24 11042 -209.51.139.0/24 7226 -209.51.140.0/22 11042 -209.51.144.0/24 7226 -209.51.145.0/24 11042 -209.51.146.0/23 11042 -209.51.148.0/22 11042 -209.51.152.0/21 11042 -209.51.160.0/22 6939 -209.51.164.0/23 6939 -209.51.166.0/24 6939 -209.51.167.0/24 393763 -209.51.168.0/23 6939 -209.51.170.0/24 394996 -209.51.171.0/24 6939 -209.51.172.0/22 6939 -209.51.176.0/21 6939 -209.51.184.0/24 6939 -209.51.185.0/24 28317 -209.51.186.0/23 6939 -209.51.188.0/24 22989 -209.51.189.0/24 6939 -209.51.190.0/24 21728 -209.51.191.0/24 6939 -209.51.192.0/19 10297 -209.51.224.0/20 7029 -209.51.240.0/24 46887 -209.51.241.0/24 7029 -209.51.242.0/23 7029 -209.51.244.0/22 7029 -209.51.248.0/21 7029 -209.52.0.0/17 852 -209.52.128.0/19 852 -209.52.160.0/20 852 -209.52.176.0/22 852 -209.52.180.0/23 852 -209.52.182.0/23 15247 -209.52.184.0/23 15247 -209.52.186.0/23 852 -209.52.188.0/22 852 -209.52.192.0/19 852 -209.52.224.0/22 852 -209.52.228.0/24 25668 -209.52.229.0/24 852 -209.52.230.0/23 852 -209.52.232.0/21 852 -209.52.240.0/20 852 -209.53.0.0/24 852 -209.53.1.0/24 7861 -209.53.2.0/23 852 -209.53.4.0/22 852 -209.53.8.0/21 852 -209.53.16.0/20 852 -209.53.32.0/19 852 -209.53.64.0/19 852 -209.53.96.0/21 852 -209.53.104.0/23 852 -209.53.106.0/24 852 -209.53.107.0/24 15247 -209.53.108.0/23 15247 -209.53.110.0/23 852 -209.53.112.0/21 852 -209.53.120.0/22 852 -209.53.124.0/23 852 -209.53.126.0/24 15247 -209.53.127.0/24 852 -209.53.128.0/19 852 -209.53.160.0/21 852 -209.53.168.0/24 852 -209.53.169.0/24 15247 -209.53.170.0/23 15247 -209.53.172.0/23 15247 -209.53.174.0/24 15247 -209.53.175.0/24 852 -209.53.176.0/20 852 -209.53.192.0/24 852 -209.53.193.0/24 25668 -209.53.194.0/23 25668 -209.53.196.0/22 25668 -209.53.200.0/21 25668 -209.53.208.0/22 25668 -209.53.212.0/23 25668 -209.53.214.0/24 25668 -209.53.215.0/24 852 -209.53.216.0/21 852 -209.53.224.0/21 852 -209.53.232.0/24 36000 -209.53.233.0/24 852 -209.53.234.0/23 852 -209.53.236.0/22 852 -209.53.240.0/20 852 -209.54.0.0/20 11492 -209.54.16.0/20 16954 -209.54.32.0/20 395111 -209.54.48.0/20 23338 -209.54.64.0/20 11290 -209.54.80.0/22 30036 -209.54.84.0/23 54119 -209.54.86.0/24 30036 -209.54.89.0/24 7795 -209.54.90.0/24 10674 -209.54.91.0/24 209 -209.54.92.0/24 5650 -209.54.93.0/24 22773 -209.54.111.0/24 22773 -209.54.112.0/21 13768 -209.54.120.0/22 13768 -209.54.124.0/23 13768 -209.54.126.0/23 22384 -209.54.128.0/20 21719 -209.54.144.0/21 21719 -209.54.152.0/22 21719 -209.54.156.0/23 21719 -209.54.158.0/24 21719 -209.54.159.0/24 36447 -209.54.192.0/20 11492 -209.54.208.0/23 11492 -209.54.211.0/24 11492 -209.54.212.0/22 11492 -209.54.216.0/21 11492 -209.54.224.0/21 11492 -209.54.235.0/24 11492 -209.54.236.0/22 11492 -209.54.240.0/20 11492 -209.55.0.0/21 10397 -209.55.8.0/23 10397 -209.55.11.0/24 25645 -209.55.12.0/24 25645 -209.55.13.0/24 10397 -209.55.14.0/23 10397 -209.55.16.0/23 10397 -209.55.18.0/24 10397 -209.55.20.0/22 10397 -209.55.24.0/21 10397 -209.55.32.0/23 17378 -209.55.34.0/24 17378 -209.55.48.0/22 17378 -209.55.64.0/20 18618 -209.55.80.0/21 16823 -209.55.88.0/21 18618 -209.55.96.0/20 18618 -209.55.112.0/21 16823 -209.55.120.0/23 18618 -209.55.122.0/23 53646 -209.55.124.0/22 18618 -209.55.146.0/24 2686 -209.55.216.0/22 2686 -209.55.220.0/24 2686 -209.55.232.0/24 2686 -209.55.234.0/24 2686 -209.55.253.0/24 2686 -209.55.254.0/24 2686 -209.56.0.0/18 6122 -209.56.64.0/19 6122 -209.56.96.0/20 6122 -209.56.112.0/23 26946 -209.56.114.0/23 6122 -209.56.116.0/22 6122 -209.56.120.0/21 6122 -209.56.128.0/20 6122 -209.56.144.0/21 6122 -209.56.152.0/22 6122 -209.56.156.0/23 6122 -209.56.158.0/23 26946 -209.56.160.0/20 6122 -209.56.176.0/21 6122 -209.56.184.0/22 6122 -209.56.188.0/23 27316 -209.56.190.0/23 6122 -209.56.192.0/18 6122 -209.57.0.0/22 2914 -209.57.4.0/23 2914 -209.57.6.0/24 27236 -209.57.7.0/24 2914 -209.57.8.0/21 2914 -209.57.16.0/20 2914 -209.57.32.0/24 54468 -209.57.33.0/24 2914 -209.57.34.0/23 2914 -209.57.36.0/22 2914 -209.57.40.0/21 2914 -209.57.48.0/20 2914 -209.57.64.0/18 2914 -209.57.128.0/21 2914 -209.57.136.0/22 2914 -209.57.140.0/23 2914 -209.57.142.0/24 27236 -209.57.143.0/24 2914 -209.57.144.0/20 2914 -209.57.160.0/19 2914 -209.57.192.0/18 2914 -209.58.0.0/20 6453 -209.58.16.0/21 6453 -209.58.24.0/24 17494 -209.58.25.0/24 6453 -209.58.26.0/23 6453 -209.58.28.0/22 6453 -209.58.32.0/21 6453 -209.58.40.0/23 8781 -209.58.42.0/23 6453 -209.58.44.0/22 6453 -209.58.48.0/20 6453 -209.58.64.0/19 6453 -209.58.96.0/22 6453 -209.58.100.0/24 6453 -209.58.101.0/24 33164 -209.58.102.0/23 6453 -209.58.104.0/21 6453 -209.58.112.0/20 6453 -209.58.128.0/20 7203 -209.58.144.0/20 394380 -209.58.160.0/20 59253 -209.58.176.0/21 59253 -209.58.184.0/21 133752 -209.58.192.0/18 14265 -209.59.0.0/20 17113 -209.59.16.0/20 7349 -209.59.32.0/20 53559 -209.59.48.0/22 53559 -209.59.52.0/24 53559 -209.59.54.0/23 53559 -209.59.56.0/21 53559 -209.59.64.0/19 11139 -209.59.96.0/21 11139 -209.59.104.0/22 11139 -209.59.108.0/23 11139 -209.59.110.0/24 15344 -209.59.111.0/24 11139 -209.59.112.0/21 11139 -209.59.120.0/22 11139 -209.59.124.0/23 11139 -209.59.126.0/24 11139 -209.59.127.0/24 15344 -209.59.128.0/18 32244 -209.59.192.0/19 29873 -209.59.224.0/24 11402 -209.59.226.0/24 11402 -209.59.228.0/22 64267 -209.59.232.0/23 397041 -209.59.234.0/23 6300 -209.59.236.0/23 14848 -209.59.239.0/24 397337 -209.59.240.0/24 11402 -209.59.241.0/24 46887 -209.59.242.0/23 29794 -209.59.244.0/24 17167 -209.59.245.0/24 11402 -209.59.246.0/24 11402 -209.59.247.0/24 7349 -209.59.248.0/24 11402 -209.59.249.0/24 209 -209.59.250.0/23 394678 -209.59.252.0/24 11402 -209.59.253.0/24 20001 -209.59.254.0/24 397350 -209.59.255.0/24 11402 -209.60.0.0/21 7029 -209.60.8.0/22 7029 -209.60.12.0/24 394815 -209.60.13.0/24 7029 -209.60.14.0/23 7029 -209.60.16.0/20 7029 -209.60.32.0/19 7029 -209.60.64.0/19 7029 -209.60.96.0/20 7029 -209.60.112.0/21 7029 -209.60.120.0/22 7029 -209.60.124.0/24 21966 -209.60.125.0/24 7029 -209.60.126.0/23 7029 -209.60.128.0/18 7029 -209.60.192.0/19 7029 -209.60.224.0/21 7029 -209.60.232.0/22 7029 -209.60.236.0/23 7029 -209.60.238.0/24 7029 -209.60.239.0/24 32185 -209.60.240.0/20 7029 -209.61.0.0/17 174 -209.61.128.0/19 33070 -209.61.160.0/22 33070 -209.61.164.0/23 33070 -209.61.166.0/23 19994 -209.61.168.0/21 33070 -209.61.176.0/20 33070 -209.61.192.0/23 14361 -209.61.194.0/24 14361 -209.61.195.0/24 46664 -209.61.196.0/22 14361 -209.61.200.0/22 14361 -209.61.204.0/23 14361 -209.61.206.0/23 11042 -209.61.208.0/22 14361 -209.61.212.0/23 14361 -209.61.216.0/21 14361 -209.61.224.0/19 14361 -209.62.0.0/17 36351 -209.62.160.0/20 55043 -209.62.192.0/19 5009 -209.62.224.0/23 32719 -209.62.228.0/22 32719 -209.62.232.0/21 32719 -209.62.240.0/22 32719 -209.62.246.0/23 32719 -209.62.248.0/21 32719 -209.63.0.0/23 7385 -209.63.2.0/24 7385 -209.63.3.0/24 19717 -209.63.4.0/22 7385 -209.63.8.0/21 7385 -209.63.16.0/23 7385 -209.63.18.0/24 7385 -209.63.19.0/24 16784 -209.63.20.0/23 7385 -209.63.22.0/23 29951 -209.63.24.0/21 7385 -209.63.32.0/21 7385 -209.63.40.0/23 7385 -209.63.42.0/24 19717 -209.63.43.0/24 7385 -209.63.44.0/22 7385 -209.63.48.0/21 7385 -209.63.56.0/23 7385 -209.63.58.0/24 7385 -209.63.59.0/24 54828 -209.63.60.0/22 7385 -209.63.64.0/22 7385 -209.63.68.0/22 29951 -209.63.72.0/21 7385 -209.63.80.0/20 7385 -209.63.96.0/20 7385 -209.63.112.0/21 7385 -209.63.120.0/22 7385 -209.63.124.0/23 7385 -209.63.126.0/23 26914 -209.63.128.0/18 7385 -209.63.192.0/21 7385 -209.63.200.0/22 7385 -209.63.204.0/24 7385 -209.63.205.0/24 23182 -209.63.206.0/23 7385 -209.63.208.0/20 7385 -209.63.224.0/21 7385 -209.63.232.0/23 7385 -209.63.234.0/24 26664 -209.63.235.0/24 7385 -209.63.236.0/22 7385 -209.63.240.0/20 7385 -209.64.0.0/22 7018 -209.64.4.0/23 7018 -209.64.6.0/24 7018 -209.64.7.0/24 25993 -209.64.8.0/22 7018 -209.64.12.0/24 7018 -209.64.13.0/24 2386 -209.64.14.0/23 7018 -209.64.16.0/21 7018 -209.64.24.0/24 7018 -209.64.25.0/24 22034 -209.64.26.0/23 7018 -209.64.28.0/22 7018 -209.64.32.0/22 7018 -209.64.36.0/24 63012 -209.64.37.0/24 7018 -209.64.38.0/23 7018 -209.64.40.0/21 7018 -209.64.48.0/22 7018 -209.64.52.0/24 16774 -209.64.53.0/24 7018 -209.64.54.0/23 7018 -209.64.56.0/24 2386 -209.64.57.0/24 7018 -209.64.58.0/23 7018 -209.64.60.0/22 7018 -209.64.64.0/19 7018 -209.64.96.0/20 7018 -209.64.112.0/22 7018 -209.64.116.0/23 7018 -209.64.118.0/24 7018 -209.64.119.0/24 54809 -209.64.120.0/21 7018 -209.64.128.0/21 7018 -209.64.136.0/22 7018 -209.64.140.0/23 7018 -209.64.142.0/24 13581 -209.64.143.0/24 26454 -209.64.144.0/21 7018 -209.64.152.0/21 2386 -209.64.160.0/21 7018 -209.64.168.0/23 7018 -209.64.170.0/24 7018 -209.64.171.0/24 398201 -209.64.172.0/22 7018 -209.64.176.0/20 7018 -209.64.192.0/21 7018 -209.64.200.0/23 7018 -209.64.202.0/24 13581 -209.64.203.0/24 7018 -209.64.204.0/22 7018 -209.64.208.0/23 7018 -209.64.210.0/23 26380 -209.64.212.0/22 7018 -209.64.216.0/21 7018 -209.64.224.0/21 26536 -209.64.232.0/21 7018 -209.64.240.0/20 26536 -209.65.0.0/21 7018 -209.65.8.0/23 4473 -209.65.10.0/24 7018 -209.65.11.0/24 13626 -209.65.12.0/23 7018 -209.65.14.0/23 32787 -209.65.16.0/22 10998 -209.65.20.0/22 7018 -209.65.24.0/21 7018 -209.65.32.0/20 7018 -209.65.48.0/23 7018 -209.65.50.0/24 7018 -209.65.51.0/24 36252 -209.65.52.0/24 36862 -209.65.53.0/24 7018 -209.65.54.0/23 7018 -209.65.56.0/21 7018 -209.65.64.0/21 29902 -209.65.72.0/21 53832 -209.65.80.0/20 7018 -209.65.96.0/24 22005 -209.65.97.0/24 7018 -209.65.98.0/23 7018 -209.65.100.0/22 7018 -209.65.104.0/21 7018 -209.65.112.0/20 7018 -209.65.128.0/21 7018 -209.65.136.0/22 7018 -209.65.140.0/24 7018 -209.65.141.0/24 397910 -209.65.142.0/23 7018 -209.65.144.0/21 36105 -209.65.152.0/21 7018 -209.65.160.0/23 4473 -209.65.162.0/24 7018 -209.65.163.0/24 4473 -209.65.164.0/24 4473 -209.65.165.0/24 7018 -209.65.166.0/23 7018 -209.65.168.0/21 7018 -209.65.176.0/21 2386 -209.65.184.0/21 393508 -209.65.192.0/20 17004 -209.65.208.0/20 7018 -209.65.224.0/19 7018 -209.66.0.0/18 15315 -209.66.64.0/24 6461 -209.66.65.0/24 7752 -209.66.66.0/24 6461 -209.66.67.0/24 23342 -209.66.68.0/24 394976 -209.66.69.0/24 6461 -209.66.70.0/23 6461 -209.66.72.0/24 6461 -209.66.73.0/24 393948 -209.66.74.0/23 6461 -209.66.76.0/23 11135 -209.66.78.0/23 6461 -209.66.80.0/22 6461 -209.66.84.0/23 6461 -209.66.86.0/24 6461 -209.66.87.0/24 11414 -209.66.88.0/23 6461 -209.66.90.0/24 63397 -209.66.91.0/24 6461 -209.66.92.0/22 6461 -209.66.96.0/22 6461 -209.66.100.0/23 3925 -209.66.102.0/23 6461 -209.66.104.0/21 6461 -209.66.112.0/22 6461 -209.66.116.0/24 14011 -209.66.117.0/24 6461 -209.66.118.0/24 6461 -209.66.119.0/24 47074 -209.66.120.0/22 6461 -209.66.124.0/24 25906 -209.66.125.0/24 6461 -209.66.126.0/23 6461 -209.66.160.0/19 2920 -209.66.192.0/19 21708 -209.67.0.0/20 3561 -209.67.16.0/22 3561 -209.67.20.0/22 46945 -209.67.24.0/21 3561 -209.67.32.0/24 4298 -209.67.33.0/24 3561 -209.67.34.0/23 3561 -209.67.36.0/22 3561 -209.67.40.0/23 3561 -209.67.42.0/23 4298 -209.67.44.0/22 4298 -209.67.48.0/22 3561 -209.67.52.0/23 46945 -209.67.54.0/23 3561 -209.67.56.0/22 46945 -209.67.60.0/23 3561 -209.67.62.0/24 3561 -209.67.63.0/24 46945 -209.67.64.0/19 3561 -209.67.96.0/22 3561 -209.67.100.0/22 22156 -209.67.104.0/21 3561 -209.67.112.0/20 3561 -209.67.128.0/23 26254 -209.67.130.0/24 3561 -209.67.131.0/24 40422 -209.67.132.0/22 3561 -209.67.136.0/22 3561 -209.67.140.0/24 40422 -209.67.141.0/24 3561 -209.67.142.0/23 3561 -209.67.144.0/21 3561 -209.67.152.0/23 3561 -209.67.154.0/23 10855 -209.67.156.0/24 19814 -209.67.157.0/24 3561 -209.67.158.0/23 3561 -209.67.160.0/20 3561 -209.67.176.0/24 64212 -209.67.177.0/24 3561 -209.67.178.0/23 3561 -209.67.180.0/22 3561 -209.67.184.0/22 3561 -209.67.188.0/24 14415 -209.67.189.0/24 3561 -209.67.190.0/23 3561 -209.67.192.0/20 3561 -209.67.208.0/24 13993 -209.67.209.0/24 3561 -209.67.210.0/23 3561 -209.67.212.0/22 3561 -209.67.216.0/23 3561 -209.67.218.0/24 3561 -209.67.219.0/24 393738 -209.67.220.0/23 3561 -209.67.222.0/24 3561 -209.67.223.0/24 29821 -209.67.224.0/19 3561 -209.68.0.0/18 7859 -209.68.64.0/18 22935 -209.68.128.0/19 3734 -209.68.192.0/18 2828 -209.69.0.0/16 2914 -209.70.0.0/17 2914 -209.70.128.0/21 2914 -209.70.136.0/24 17054 -209.70.137.0/24 2914 -209.70.138.0/23 2914 -209.70.140.0/22 2914 -209.70.144.0/20 2914 -209.70.160.0/21 2914 -209.70.168.0/22 2914 -209.70.172.0/24 2914 -209.70.173.0/24 17054 -209.70.174.0/23 2914 -209.70.176.0/23 2914 -209.70.178.0/24 17054 -209.70.179.0/24 2914 -209.70.180.0/23 2914 -209.70.182.0/24 174 -209.70.183.0/24 2914 -209.70.184.0/21 2914 -209.70.192.0/19 2914 -209.70.224.0/20 2914 -209.70.240.0/24 174 -209.70.241.0/24 2914 -209.70.242.0/23 2914 -209.70.244.0/22 2914 -209.70.248.0/21 2914 -209.71.0.0/19 46800 -209.71.32.0/22 46800 -209.71.36.0/24 46800 -209.71.37.0/24 46946 -209.71.38.0/23 46946 -209.71.40.0/24 46946 -209.71.41.0/24 46800 -209.71.42.0/23 46800 -209.71.44.0/22 46800 -209.71.48.0/20 46800 -209.71.64.0/18 46800 -209.71.128.0/19 46800 -209.71.160.0/19 46339 -209.71.208.0/21 577 -209.71.216.0/22 577 -209.71.220.0/24 577 -209.71.221.0/24 36522 -209.71.222.0/23 577 -209.71.224.0/24 577 -209.71.225.0/24 36522 -209.71.226.0/23 577 -209.71.228.0/22 577 -209.71.232.0/21 577 -209.71.240.0/20 577 -209.73.0.0/19 6650 -209.73.32.0/22 20209 -209.73.36.0/22 6650 -209.73.40.0/21 6650 -209.73.48.0/20 6650 -209.73.64.0/18 7397 -209.73.128.0/21 18779 -209.73.136.0/22 18779 -209.73.140.0/24 174 -209.73.141.0/24 18779 -209.73.142.0/23 18779 -209.73.144.0/23 18779 -209.73.146.0/24 26481 -209.73.147.0/24 18779 -209.73.148.0/22 18779 -209.73.152.0/21 18779 -209.73.177.0/24 36752 -209.73.178.0/23 36752 -209.73.180.0/22 26101 -209.73.184.0/24 14777 -209.73.185.0/24 36088 -209.73.186.0/24 10310 -209.73.188.0/24 36229 -209.73.189.0/24 14780 -209.73.190.0/23 36229 -209.73.192.0/20 4136 -209.73.208.0/23 4136 -209.73.210.0/24 4136 -209.73.211.0/24 6461 -209.73.212.0/22 4136 -209.73.216.0/24 397536 -209.73.217.0/24 4136 -209.73.218.0/23 4136 -209.73.220.0/22 4136 -209.73.224.0/20 4136 -209.73.240.0/23 4136 -209.73.242.0/24 32225 -209.73.243.0/24 4136 -209.73.244.0/22 4136 -209.73.248.0/21 4136 -209.74.0.0/18 3593 -209.74.64.0/20 31744 -209.74.103.0/24 3356 -209.74.104.0/22 26481 -209.74.108.0/23 26481 -209.74.111.0/24 26481 -209.74.112.0/20 54373 -209.74.128.0/18 5656 -209.74.192.0/19 4193 -209.74.224.0/20 16604 -209.74.240.0/20 12180 -209.75.0.0/16 2914 -209.76.0.0/19 7132 -209.76.32.0/23 7132 -209.76.34.0/24 20325 -209.76.35.0/24 7132 -209.76.36.0/22 7132 -209.76.40.0/21 7132 -209.76.48.0/20 7132 -209.76.64.0/18 7132 -209.76.128.0/18 7132 -209.76.192.0/22 7132 -209.76.196.0/23 7132 -209.76.198.0/24 7132 -209.76.199.0/24 29716 -209.76.200.0/22 7132 -209.76.204.0/23 7132 -209.76.206.0/24 54469 -209.76.207.0/24 7132 -209.76.208.0/20 7132 -209.76.224.0/20 7132 -209.76.240.0/24 40525 -209.76.241.0/24 7132 -209.76.242.0/23 7132 -209.76.244.0/22 32337 -209.76.248.0/21 7132 -209.77.0.0/24 7132 -209.77.1.0/24 2386 -209.77.2.0/23 7132 -209.77.4.0/22 7132 -209.77.8.0/21 7132 -209.77.16.0/20 7132 -209.77.32.0/19 7132 -209.77.64.0/18 7132 -209.77.128.0/19 7132 -209.77.160.0/20 7132 -209.77.176.0/23 7132 -209.77.178.0/24 23000 -209.77.179.0/24 7132 -209.77.180.0/22 7132 -209.77.184.0/21 7132 -209.77.192.0/21 7132 -209.77.200.0/22 7132 -209.77.204.0/24 11212 -209.77.205.0/24 7132 -209.77.206.0/23 7132 -209.77.208.0/21 7132 -209.77.216.0/22 7132 -209.77.220.0/24 7132 -209.77.221.0/24 31764 -209.77.222.0/23 7132 -209.77.224.0/19 7132 -209.78.0.0/19 7132 -209.78.32.0/22 7132 -209.78.36.0/24 7132 -209.78.37.0/24 2386 -209.78.38.0/23 7132 -209.78.40.0/21 7132 -209.78.48.0/20 7132 -209.78.64.0/20 7132 -209.78.80.0/21 7132 -209.78.88.0/24 33651 -209.78.89.0/24 7132 -209.78.90.0/23 7132 -209.78.92.0/22 7132 -209.78.96.0/19 7132 -209.78.128.0/17 7132 -209.79.0.0/20 7132 -209.79.16.0/24 32492 -209.79.17.0/24 7132 -209.79.18.0/23 7132 -209.79.20.0/22 7132 -209.79.24.0/21 7132 -209.79.32.0/19 7132 -209.79.64.0/19 23024 -209.79.96.0/19 7132 -209.79.128.0/17 7132 -209.80.0.0/20 5693 -209.80.16.0/21 5693 -209.80.24.0/22 5693 -209.80.28.0/22 29863 -209.80.32.0/20 5693 -209.80.48.0/20 29863 -209.80.64.0/22 19615 -209.80.128.0/21 14361 -209.80.136.0/24 14361 -209.80.137.0/24 7015 -209.80.138.0/23 14361 -209.80.140.0/24 46887 -209.80.141.0/24 14361 -209.80.142.0/23 14361 -209.80.144.0/21 14361 -209.80.152.0/22 14361 -209.80.156.0/23 7015 -209.80.158.0/24 7015 -209.80.159.0/24 46887 -209.80.160.0/19 14361 -209.80.192.0/18 14361 -209.81.0.0/21 7091 -209.81.8.0/22 7091 -209.81.12.0/24 33536 -209.81.13.0/24 7091 -209.81.14.0/23 7091 -209.81.16.0/20 7091 -209.81.32.0/19 7091 -209.81.64.0/19 6650 -209.81.96.0/19 16904 -209.81.128.0/17 7321 -209.82.0.0/19 15290 -209.82.32.0/20 15290 -209.82.48.0/21 15290 -209.82.56.0/24 15290 -209.82.57.0/24 21570 -209.82.58.0/23 15290 -209.82.60.0/22 15290 -209.82.64.0/18 15290 -209.82.160.0/23 19158 -209.82.162.0/24 19955 -209.82.163.0/24 19158 -209.82.164.0/23 19158 -209.82.166.0/23 19955 -209.82.168.0/21 19158 -209.82.176.0/21 19158 -209.82.184.0/23 19158 -209.82.186.0/23 393740 -209.82.188.0/23 19955 -209.82.190.0/23 19158 -209.82.214.0/23 12090 -209.82.216.0/23 12090 -209.82.219.0/24 7018 -209.82.220.0/24 12090 -209.82.222.0/24 12090 -209.82.227.0/24 12090 -209.82.230.0/23 12090 -209.82.232.0/24 3356 -209.82.234.0/24 46134 -209.82.235.0/24 19855 -209.82.240.0/24 12090 -209.82.241.0/24 7018 -209.82.242.0/23 7018 -209.83.0.0/21 7029 -209.83.8.0/21 26284 -209.83.16.0/21 7029 -209.83.24.0/22 7029 -209.83.28.0/23 7029 -209.83.30.0/23 26284 -209.83.32.0/23 26284 -209.83.34.0/23 7029 -209.83.36.0/22 7029 -209.83.40.0/21 7029 -209.83.48.0/20 7029 -209.83.64.0/20 7029 -209.83.80.0/21 7029 -209.83.88.0/24 26284 -209.83.89.0/24 7029 -209.83.90.0/23 7029 -209.83.92.0/22 7029 -209.83.96.0/19 7029 -209.83.128.0/17 3561 -209.84.0.0/18 3356 -209.84.64.0/19 3356 -209.84.96.0/21 3356 -209.84.104.0/22 3356 -209.84.108.0/24 3356 -209.84.109.0/24 18468 -209.84.110.0/23 3356 -209.84.112.0/20 3356 -209.84.128.0/18 3356 -209.84.192.0/20 3356 -209.84.208.0/22 3356 -209.84.212.0/23 3356 -209.84.214.0/24 3356 -209.84.215.0/24 46164 -209.84.216.0/21 3356 -209.84.224.0/20 3356 -209.84.240.0/22 3356 -209.84.244.0/24 3356 -209.84.245.0/24 21889 -209.84.246.0/24 3356 -209.84.247.0/24 395148 -209.84.248.0/22 3356 -209.84.252.0/24 3356 -209.84.253.0/24 21889 -209.84.254.0/24 3356 -209.84.255.0/24 21889 -209.85.0.0/17 36351 -209.85.128.0/17 15169 -209.86.0.0/16 7029 -209.87.0.0/20 271 -209.87.16.0/23 393249 -209.87.18.0/23 271 -209.87.20.0/22 271 -209.87.24.0/22 271 -209.87.28.0/23 271 -209.87.30.0/24 393966 -209.87.31.0/24 11105 -209.87.32.0/20 271 -209.87.48.0/21 271 -209.87.56.0/22 11105 -209.87.60.0/24 11105 -209.87.61.0/24 271 -209.87.62.0/24 55185 -209.87.63.0/24 33314 -209.87.64.0/24 11696 -209.87.65.0/24 4565 -209.87.66.0/23 4565 -209.87.68.0/22 4565 -209.87.72.0/22 4565 -209.87.76.0/23 4565 -209.87.78.0/24 4565 -209.87.79.0/24 18566 -209.87.80.0/20 4565 -209.87.102.0/23 14771 -209.87.104.0/23 14771 -209.87.112.0/23 20461 -209.87.114.0/24 11535 -209.87.115.0/24 20461 -209.87.116.0/24 11535 -209.87.117.0/24 20461 -209.87.118.0/23 11535 -209.87.123.0/24 20461 -209.87.124.0/22 20461 -209.87.140.0/23 23268 -209.87.142.0/23 40064 -209.87.144.0/22 30152 -209.87.148.0/23 30152 -209.87.150.0/24 30152 -209.87.151.0/24 36444 -209.87.152.0/22 30152 -209.87.156.0/23 30152 -209.87.158.0/24 30152 -209.87.159.0/24 36444 -209.87.165.0/24 11410 -209.87.170.0/24 17378 -209.87.171.0/24 7181 -209.87.175.0/24 11410 -209.87.180.0/22 14170 -209.87.184.0/22 15960 -209.87.192.0/20 397038 -209.87.208.0/22 31997 -209.87.212.0/24 31997 -209.87.214.0/23 31997 -209.87.216.0/22 31997 -209.87.220.0/23 31997 -209.87.222.0/24 31997 -209.87.224.0/19 13319 -209.88.0.0/20 5511 -209.88.16.0/22 5511 -209.88.20.0/23 36996 -209.88.22.0/23 5511 -209.88.24.0/21 5511 -209.88.32.0/20 5511 -209.88.48.0/21 5511 -209.88.56.0/22 5511 -209.88.60.0/23 5511 -209.88.62.0/24 5511 -209.88.63.0/24 51964 -209.88.64.0/20 5511 -209.88.80.0/21 5511 -209.88.88.0/21 37204 -209.88.96.0/22 5511 -209.88.100.0/24 5511 -209.88.101.0/24 51964 -209.88.102.0/24 6505 -209.88.103.0/24 51964 -209.88.104.0/23 51964 -209.88.106.0/23 6505 -209.88.108.0/23 6505 -209.88.110.0/24 51964 -209.88.111.0/24 5511 -209.88.112.0/20 5511 -209.88.128.0/21 11816 -209.88.136.0/21 8014 -209.88.144.0/24 6505 -209.88.145.0/24 5511 -209.88.146.0/23 5511 -209.88.148.0/22 5511 -209.88.152.0/23 5511 -209.88.154.0/24 5511 -209.88.155.0/24 1680 -209.88.156.0/23 1680 -209.88.158.0/23 5511 -209.88.160.0/21 5511 -209.88.168.0/23 51964 -209.88.170.0/24 51964 -209.88.171.0/24 5511 -209.88.172.0/22 1680 -209.88.176.0/20 1680 -209.88.192.0/21 1680 -209.88.200.0/22 6505 -209.88.204.0/24 6505 -209.88.205.0/24 27962 -209.88.206.0/23 6505 -209.88.208.0/20 5511 -209.88.224.0/22 5511 -209.88.228.0/23 51964 -209.88.230.0/23 5511 -209.88.232.0/21 5511 -209.88.240.0/20 5511 -209.89.0.0/18 852 -209.89.64.0/21 852 -209.89.72.0/22 852 -209.89.76.0/23 852 -209.89.78.0/24 7861 -209.89.79.0/24 852 -209.89.80.0/20 852 -209.89.96.0/21 852 -209.89.104.0/22 852 -209.89.108.0/23 15247 -209.89.110.0/23 852 -209.89.112.0/20 852 -209.89.128.0/17 852 -209.90.0.0/19 30222 -209.90.32.0/23 26470 -209.90.35.0/24 26470 -209.90.36.0/24 26470 -209.90.38.0/24 26470 -209.90.40.0/24 26470 -209.90.43.0/24 30095 -209.90.44.0/24 36351 -209.90.46.0/24 36351 -209.90.52.0/24 6461 -209.90.54.0/24 2386 -209.90.55.0/24 2688 -209.90.56.0/24 15404 -209.90.57.0/24 2687 -209.90.58.0/24 6461 -209.90.59.0/24 398018 -209.90.61.0/24 7018 -209.90.63.0/24 45165 -209.90.64.0/18 5048 -209.90.128.0/21 6407 -209.90.136.0/22 812 -209.90.140.0/24 812 -209.90.141.0/24 6407 -209.90.142.0/23 6407 -209.90.144.0/21 6407 -209.90.152.0/22 6407 -209.90.156.0/23 6407 -209.90.158.0/24 812 -209.90.159.0/24 6407 -209.90.160.0/21 6407 -209.90.168.0/23 6407 -209.90.170.0/24 6407 -209.90.171.0/24 812 -209.90.172.0/23 6407 -209.90.174.0/23 812 -209.90.176.0/24 812 -209.90.177.0/24 6407 -209.90.178.0/23 6407 -209.90.180.0/22 6407 -209.90.184.0/22 6407 -209.90.188.0/23 812 -209.90.190.0/23 6407 -209.90.192.0/19 20428 -209.90.224.0/21 23033 -209.90.232.0/24 136175 -209.90.233.0/24 23033 -209.90.234.0/23 23033 -209.90.236.0/22 23033 -209.90.240.0/20 14453 -209.91.0.0/18 7029 -209.91.64.0/21 852 -209.91.72.0/23 852 -209.91.74.0/24 852 -209.91.75.0/24 7861 -209.91.76.0/24 852 -209.91.77.0/24 7861 -209.91.78.0/23 852 -209.91.80.0/21 852 -209.91.88.0/23 7861 -209.91.90.0/24 7861 -209.91.91.0/24 852 -209.91.92.0/23 852 -209.91.94.0/24 852 -209.91.95.0/24 7861 -209.91.96.0/21 852 -209.91.104.0/22 852 -209.91.108.0/24 7861 -209.91.109.0/24 852 -209.91.110.0/23 852 -209.91.112.0/23 852 -209.91.114.0/24 852 -209.91.115.0/24 7861 -209.91.116.0/23 7861 -209.91.118.0/24 852 -209.91.119.0/24 7861 -209.91.120.0/21 852 -209.91.128.0/18 5690 -209.91.192.0/22 5704 -209.91.196.0/23 5704 -209.91.198.0/24 22888 -209.91.199.0/24 5704 -209.91.200.0/21 5704 -209.91.208.0/21 5704 -209.91.216.0/24 23114 -209.91.217.0/24 5704 -209.91.218.0/23 5704 -209.91.220.0/22 5704 -209.91.224.0/22 5704 -209.91.228.0/24 32189 -209.91.229.0/24 5704 -209.91.230.0/23 5704 -209.91.232.0/21 5704 -209.91.240.0/20 5704 -209.92.0.0/22 7029 -209.92.4.0/23 7029 -209.92.6.0/24 7029 -209.92.7.0/24 7349 -209.92.8.0/21 7029 -209.92.16.0/20 7029 -209.92.32.0/22 7029 -209.92.36.0/23 7029 -209.92.38.0/24 7029 -209.92.39.0/24 7349 -209.92.40.0/22 7029 -209.92.44.0/24 7349 -209.92.45.0/24 7029 -209.92.46.0/23 7029 -209.92.48.0/22 7029 -209.92.52.0/24 7029 -209.92.53.0/24 7349 -209.92.54.0/23 7029 -209.92.56.0/24 7349 -209.92.57.0/24 7029 -209.92.58.0/23 7029 -209.92.60.0/23 7029 -209.92.62.0/24 7349 -209.92.63.0/24 7029 -209.92.64.0/22 7029 -209.92.68.0/24 7349 -209.92.69.0/24 7029 -209.92.70.0/23 7349 -209.92.72.0/23 7029 -209.92.74.0/23 7349 -209.92.76.0/23 7029 -209.92.78.0/24 7029 -209.92.79.0/24 7349 -209.92.80.0/21 7029 -209.92.88.0/24 7349 -209.92.89.0/24 7029 -209.92.90.0/23 7349 -209.92.92.0/22 7029 -209.92.96.0/19 7029 -209.92.128.0/21 7029 -209.92.136.0/24 7029 -209.92.138.0/23 7029 -209.92.140.0/22 7029 -209.92.144.0/20 7029 -209.92.160.0/19 7029 -209.92.192.0/23 7029 -209.92.194.0/24 7029 -209.92.195.0/24 54132 -209.92.196.0/22 7029 -209.92.200.0/21 7029 -209.92.208.0/20 7029 -209.92.224.0/22 7349 -209.92.228.0/23 19019 -209.92.230.0/23 7349 -209.92.232.0/21 7029 -209.92.240.0/20 7029 -209.93.0.0/16 6871 -209.94.0.0/19 2914 -209.94.36.0/23 7805 -209.94.39.0/24 7805 -209.94.40.0/24 7805 -209.94.42.0/23 7805 -209.94.45.0/24 7805 -209.94.48.0/23 7805 -209.94.50.0/24 30395 -209.94.51.0/24 7805 -209.94.52.0/24 11255 -209.94.54.0/24 7805 -209.94.59.0/24 7805 -209.94.62.0/24 7805 -209.94.64.0/24 10446 -209.94.65.0/24 396291 -209.94.66.0/24 54706 -209.94.67.0/24 395238 -209.94.68.0/23 26705 -209.94.70.0/24 13760 -209.94.71.0/24 174 -209.94.72.0/24 62876 -209.94.74.0/24 14618 -209.94.75.0/24 16509 -209.94.76.0/24 10446 -209.94.77.0/24 14941 -209.94.79.0/24 40545 -209.94.80.0/24 33504 -209.94.81.0/24 23033 -209.94.82.0/23 40108 -209.94.84.0/24 10446 -209.94.85.0/24 64223 -209.94.86.0/24 395057 -209.94.87.0/24 398180 -209.94.88.0/24 21777 -209.94.89.0/24 22259 -209.94.90.0/23 40680 -209.94.94.0/24 22784 -209.94.95.0/24 10446 -209.94.96.0/19 8120 -209.94.128.0/24 6079 -209.94.129.0/24 53487 -209.94.130.0/23 6079 -209.94.132.0/22 6079 -209.94.136.0/21 6079 -209.94.144.0/20 6079 -209.94.160.0/21 10352 -209.94.168.0/22 10352 -209.94.172.0/24 10352 -209.94.173.0/24 396426 -209.94.174.0/23 10352 -209.94.176.0/21 10352 -209.94.184.0/22 10352 -209.94.188.0/23 10352 -209.94.190.0/23 396426 -209.94.192.0/19 5639 -209.94.224.0/23 4943 -209.94.226.0/24 4943 -209.94.227.0/24 25956 -209.94.228.0/23 4943 -209.94.230.0/24 25956 -209.94.231.0/24 4943 -209.94.232.0/24 25956 -209.94.233.0/24 4943 -209.94.234.0/23 4943 -209.94.236.0/22 4943 -209.94.240.0/23 25956 -209.94.242.0/23 4943 -209.94.244.0/23 25956 -209.94.246.0/23 4943 -209.94.248.0/24 25956 -209.94.249.0/24 4943 -209.94.250.0/23 4943 -209.94.252.0/22 4943 -209.95.0.0/19 2828 -209.95.32.0/20 29854 -209.95.48.0/23 29854 -209.95.50.0/23 32780 -209.95.52.0/24 32780 -209.95.53.0/24 29854 -209.95.54.0/23 29854 -209.95.56.0/24 29854 -209.95.57.0/24 36351 -209.95.58.0/24 36351 -209.95.59.0/24 29854 -209.95.60.0/24 36351 -209.95.61.0/24 29854 -209.95.62.0/23 36351 -209.95.64.0/19 15315 -209.95.128.0/19 1299 -209.95.160.0/24 7158 -209.95.161.0/24 204472 -209.95.162.0/23 204472 -209.95.164.0/22 204472 -209.95.168.0/22 204472 -209.95.172.0/23 204472 -209.95.174.0/23 200494 -209.95.176.0/22 200494 -209.95.180.0/23 200494 -209.95.182.0/23 204472 -209.95.184.0/21 204472 -209.95.224.0/19 10676 -209.96.0.0/18 19149 -209.96.64.0/19 27556 -209.96.96.0/19 6079 -209.96.128.0/22 6261 -209.96.132.0/24 12185 -209.96.133.0/24 6261 -209.96.134.0/23 6261 -209.96.136.0/21 6261 -209.96.144.0/20 6261 -209.96.160.0/19 6261 -209.96.192.0/18 6261 -209.97.12.0/23 14446 -209.97.48.0/20 14446 -209.97.64.0/23 11492 -209.97.66.0/23 18812 -209.97.68.0/22 10796 -209.97.72.0/23 10796 -209.97.74.0/23 18812 -209.97.76.0/22 10796 -209.97.80.0/22 10796 -209.97.84.0/23 11492 -209.97.86.0/23 18812 -209.97.88.0/22 18812 -209.97.112.0/20 31997 -209.97.128.0/18 14061 -209.97.192.0/19 19875 -209.97.224.0/20 30709 -209.97.240.0/20 26241 -209.98.0.0/16 8015 -209.99.0.0/24 3900 -209.99.1.0/24 22363 -209.99.2.0/23 3900 -209.99.4.0/22 3900 -209.99.8.0/21 3900 -209.99.16.0/23 394695 -209.99.18.0/23 3900 -209.99.20.0/24 3900 -209.99.21.0/24 22363 -209.99.22.0/23 22363 -209.99.24.0/21 3900 -209.99.32.0/21 3900 -209.99.40.0/24 40034 -209.99.41.0/24 3900 -209.99.42.0/23 3900 -209.99.44.0/24 3900 -209.99.45.0/24 40034 -209.99.46.0/24 3900 -209.99.47.0/24 22363 -209.99.48.0/23 3900 -209.99.50.0/24 15450 -209.99.51.0/24 40670 -209.99.52.0/22 3900 -209.99.56.0/22 3900 -209.99.60.0/23 22363 -209.99.62.0/24 30094 -209.99.63.0/24 22363 -209.99.64.0/23 40034 -209.99.66.0/23 22363 -209.99.68.0/23 3900 -209.99.70.0/24 22363 -209.99.71.0/24 3900 -209.99.72.0/23 3900 -209.99.74.0/24 3900 -209.99.75.0/24 22363 -209.99.76.0/24 22363 -209.99.77.0/24 3900 -209.99.78.0/24 3900 -209.99.79.0/24 22363 -209.99.80.0/21 3900 -209.99.88.0/22 3900 -209.99.92.0/24 3900 -209.99.93.0/24 22363 -209.99.94.0/23 22363 -209.99.96.0/21 3900 -209.99.104.0/23 3900 -209.99.106.0/24 3900 -209.99.107.0/24 36341 -209.99.108.0/23 22363 -209.99.110.0/24 22363 -209.99.111.0/24 3900 -209.99.112.0/24 3900 -209.99.113.0/24 22363 -209.99.114.0/23 22363 -209.99.116.0/23 22363 -209.99.118.0/24 22363 -209.99.119.0/24 3900 -209.99.120.0/21 3900 -209.99.128.0/24 62703 -209.99.129.0/24 58964 -209.99.130.0/23 58964 -209.99.132.0/22 58964 -209.99.136.0/24 58964 -209.99.137.0/24 204472 -209.99.138.0/23 204472 -209.99.140.0/22 204472 -209.99.144.0/20 204472 -209.99.160.0/22 204472 -209.99.164.0/22 58964 -209.99.168.0/21 58964 -209.99.176.0/22 204472 -209.99.180.0/23 204472 -209.99.182.0/23 62703 -209.99.184.0/21 200494 -209.99.192.0/19 12282 -209.99.224.0/21 17401 -209.99.232.0/24 17401 -209.99.233.0/24 19037 -209.99.234.0/23 17401 -209.99.236.0/24 19037 -209.99.237.0/24 17401 -209.99.238.0/23 19037 -209.99.240.0/23 22650 -209.100.0.0/20 3356 -209.100.16.0/23 19437 -209.100.18.0/23 3356 -209.100.20.0/22 3356 -209.100.24.0/21 3356 -209.100.32.0/19 3356 -209.100.64.0/18 3356 -209.100.128.0/17 3356 -209.101.0.0/17 4565 -209.101.128.0/19 4565 -209.101.160.0/20 4565 -209.101.176.0/22 4565 -209.101.180.0/23 4565 -209.101.182.0/23 18566 -209.101.184.0/21 4565 -209.101.192.0/18 4565 -209.102.0.0/17 3561 -209.102.128.0/23 22561 -209.102.130.0/24 22561 -209.102.131.0/24 209 -209.102.132.0/22 22561 -209.102.136.0/21 22561 -209.102.144.0/20 22561 -209.102.160.0/19 22561 -209.102.192.0/24 11251 -209.102.193.0/24 30219 -209.102.196.0/24 30219 -209.102.199.0/24 30219 -209.102.204.0/24 11251 -209.102.205.0/24 30219 -209.102.208.0/24 11251 -209.102.213.0/24 30219 -209.102.214.0/23 30219 -209.102.220.0/24 11880 -209.102.222.0/24 11880 -209.102.224.0/20 3737 -209.102.240.0/20 7029 -209.103.0.0/18 3602 -209.103.64.0/18 6261 -209.103.128.0/19 12129 -209.103.160.0/19 55933 -209.103.192.0/19 7268 -209.103.224.0/19 10274 -209.104.0.0/19 22772 -209.104.32.0/24 47572 -209.104.33.0/24 33478 -209.104.34.0/24 33478 -209.104.40.0/23 33478 -209.104.45.0/24 33478 -209.104.49.0/24 47572 -209.104.54.0/24 33478 -209.104.57.0/24 47572 -209.104.62.0/24 33478 -209.104.64.0/18 852 -209.104.128.0/19 6938 -209.104.160.0/19 812 -209.104.192.0/20 31797 -209.104.208.0/22 31797 -209.104.212.0/23 27220 -209.104.214.0/24 31797 -209.104.215.0/24 27220 -209.104.216.0/21 31797 -209.104.224.0/21 14265 -209.104.232.0/24 14265 -209.104.233.0/24 14705 -209.104.234.0/23 14265 -209.104.236.0/22 14265 -209.104.240.0/22 33748 -209.104.244.0/23 33748 -209.104.246.0/24 14265 -209.104.247.0/24 33748 -209.104.248.0/24 14265 -209.104.249.0/24 33748 -209.104.250.0/23 33748 -209.104.252.0/22 33748 -209.105.0.0/21 5006 -209.105.8.0/22 7821 -209.105.12.0/22 5006 -209.105.16.0/24 5006 -209.105.17.0/24 6461 -209.105.18.0/23 5006 -209.105.20.0/22 5006 -209.105.24.0/21 5006 -209.105.32.0/24 5006 -209.105.33.0/24 7821 -209.105.34.0/23 5006 -209.105.36.0/23 7821 -209.105.38.0/24 7821 -209.105.39.0/24 5006 -209.105.40.0/21 5006 -209.105.48.0/23 7821 -209.105.50.0/23 5006 -209.105.52.0/22 5006 -209.105.56.0/23 5006 -209.105.58.0/24 5006 -209.105.59.0/24 7821 -209.105.60.0/22 5006 -209.105.64.0/18 5006 -209.105.128.0/22 32645 -209.105.134.0/23 6461 -209.105.136.0/23 18712 -209.105.138.0/23 22647 -209.105.140.0/22 14671 -209.105.144.0/21 18712 -209.105.152.0/22 18712 -209.105.156.0/22 174 -209.105.160.0/23 22647 -209.105.162.0/23 13673 -209.105.164.0/24 6461 -209.105.165.0/24 13673 -209.105.166.0/23 174 -209.105.168.0/23 22647 -209.105.170.0/24 209 -209.105.171.0/24 53828 -209.105.172.0/23 22647 -209.105.174.0/23 18712 -209.105.176.0/23 22647 -209.105.178.0/24 22647 -209.105.179.0/24 18712 -209.105.180.0/22 19009 -209.105.184.0/22 19009 -209.105.189.0/24 18712 -209.105.190.0/23 13329 -209.105.192.0/19 25636 -209.105.224.0/20 13354 -209.105.240.0/22 13354 -209.105.244.0/23 13354 -209.105.246.0/24 13354 -209.105.247.0/24 26405 -209.105.248.0/23 13354 -209.105.250.0/24 13354 -209.105.251.0/24 395434 -209.105.252.0/22 13354 -209.106.0.0/17 2572 -209.106.128.0/18 2572 -209.106.192.0/19 2572 -209.106.224.0/22 2572 -209.106.228.0/22 26934 -209.106.232.0/21 2572 -209.106.240.0/20 2572 -209.107.0.0/18 2914 -209.107.64.0/21 2914 -209.107.72.0/22 2914 -209.107.76.0/23 2914 -209.107.78.0/23 26812 -209.107.80.0/20 2914 -209.107.96.0/19 852 -209.107.128.0/20 397178 -209.107.144.0/20 55044 -209.107.160.0/20 21960 -209.107.178.0/23 36492 -209.107.188.0/22 36492 -209.107.192.0/23 12989 -209.107.194.0/24 26769 -209.107.195.0/24 33438 -209.107.196.0/23 12989 -209.107.198.0/24 26769 -209.107.199.0/24 12989 -209.107.200.0/24 12989 -209.107.201.0/24 26769 -209.107.202.0/23 12989 -209.107.204.0/22 12989 -209.107.208.0/23 20940 -209.107.210.0/24 12989 -209.107.211.0/24 53847 -209.107.212.0/22 12989 -209.107.216.0/23 12989 -209.107.218.0/24 26769 -209.107.219.0/24 18607 -209.107.220.0/24 26769 -209.107.221.0/24 12989 -209.107.222.0/24 12989 -209.107.223.0/24 26769 -209.107.224.0/19 5742 -209.108.112.0/20 7029 -209.108.160.0/20 7029 -209.108.192.0/21 3356 -209.108.200.0/21 18687 -209.108.208.0/24 11915 -209.108.211.0/24 11915 -209.108.212.0/22 3549 -209.108.224.0/20 7029 -209.109.48.0/20 7029 -209.109.64.0/19 7029 -209.109.160.0/20 7029 -209.109.192.0/19 7029 -209.110.0.0/20 7029 -209.110.64.0/20 7029 -209.110.80.0/21 7029 -209.110.88.0/22 7029 -209.110.92.0/24 7029 -209.110.93.0/24 32806 -209.110.94.0/23 7029 -209.110.144.0/20 7029 -209.110.192.0/20 7029 -209.111.64.0/19 5006 -209.111.124.0/23 5006 -209.111.128.0/20 7029 -209.111.224.0/19 7029 -209.112.0.0/21 15290 -209.112.8.0/22 15290 -209.112.12.0/23 15290 -209.112.14.0/24 32787 -209.112.15.0/24 15290 -209.112.16.0/20 15290 -209.112.32.0/20 15290 -209.112.48.0/21 15290 -209.112.56.0/22 15290 -209.112.60.0/24 21774 -209.112.61.0/24 15290 -209.112.62.0/23 15290 -209.112.64.0/19 6479 -209.112.96.0/22 53497 -209.112.102.0/23 398023 -209.112.104.0/23 62856 -209.112.106.0/23 53497 -209.112.108.0/23 394893 -209.112.110.0/23 53497 -209.112.112.0/24 26134 -209.112.113.0/24 10515 -209.112.114.0/24 20172 -209.112.115.0/24 30060 -209.112.116.0/24 26134 -209.112.117.0/24 30060 -209.112.118.0/24 26134 -209.112.119.0/24 30060 -209.112.120.0/23 26134 -209.112.122.0/24 26134 -209.112.123.0/24 20172 -209.112.124.0/24 30060 -209.112.125.0/24 26134 -209.112.126.0/24 26134 -209.112.127.0/24 27544 -209.112.128.0/18 7782 -209.112.192.0/19 7782 -209.112.224.0/21 22102 -209.112.232.0/22 22102 -209.112.236.0/24 22102 -209.112.237.0/24 62738 -209.112.238.0/23 22102 -209.112.240.0/23 6130 -209.112.242.0/23 53559 -209.112.244.0/22 6130 -209.112.248.0/21 6130 -209.113.0.0/17 3817 -209.113.128.0/17 7029 -209.114.0.0/19 10386 -209.114.32.0/19 33070 -209.114.64.0/21 701 -209.114.72.0/22 701 -209.114.76.0/23 10784 -209.114.78.0/23 18654 -209.114.80.0/20 701 -209.114.96.0/19 18460 -209.114.128.0/21 17054 -209.114.136.0/22 17054 -209.114.140.0/23 18572 -209.114.142.0/23 17054 -209.114.144.0/20 17054 -209.114.160.0/20 17054 -209.114.176.0/21 17054 -209.114.184.0/23 17054 -209.114.186.0/24 40836 -209.114.187.0/24 17054 -209.114.188.0/22 17054 -209.114.192.0/20 13984 -209.114.208.0/21 13984 -209.114.216.0/24 13984 -209.114.217.0/24 10701 -209.114.218.0/23 13984 -209.114.220.0/22 13984 -209.114.224.0/19 7029 -209.115.0.0/20 174 -209.115.16.0/21 174 -209.115.24.0/22 174 -209.115.28.0/24 174 -209.115.29.0/24 14001 -209.115.30.0/23 174 -209.115.32.0/20 174 -209.115.48.0/24 29787 -209.115.49.0/24 174 -209.115.50.0/24 29787 -209.115.51.0/24 174 -209.115.52.0/22 174 -209.115.56.0/21 174 -209.115.64.0/19 174 -209.115.96.0/22 174 -209.115.100.0/24 174 -209.115.101.0/24 35884 -209.115.102.0/23 174 -209.115.104.0/21 174 -209.115.112.0/20 174 -209.115.128.0/20 852 -209.115.144.0/21 852 -209.115.152.0/22 852 -209.115.156.0/23 852 -209.115.158.0/23 7861 -209.115.160.0/19 852 -209.115.192.0/20 852 -209.115.208.0/21 852 -209.115.216.0/22 852 -209.115.220.0/23 3359 -209.115.222.0/23 852 -209.115.224.0/19 852 -209.116.0.0/21 10355 -209.116.8.0/21 2828 -209.116.16.0/24 393358 -209.116.17.0/24 2828 -209.116.18.0/23 2828 -209.116.20.0/22 2828 -209.116.24.0/21 2828 -209.116.32.0/19 2828 -209.116.64.0/19 2828 -209.116.96.0/21 2828 -209.116.104.0/22 2828 -209.116.108.0/24 2828 -209.116.109.0/24 23378 -209.116.110.0/23 2828 -209.116.112.0/20 2828 -209.116.128.0/20 2828 -209.116.144.0/21 2828 -209.116.152.0/24 701 -209.116.153.0/24 2828 -209.116.154.0/23 2828 -209.116.156.0/22 2828 -209.116.160.0/19 2828 -209.116.192.0/18 2828 -209.117.0.0/21 2828 -209.117.8.0/22 2828 -209.117.12.0/23 3257 -209.117.14.0/23 2828 -209.117.16.0/20 2828 -209.117.32.0/23 2828 -209.117.34.0/24 2828 -209.117.35.0/24 54077 -209.117.36.0/22 2828 -209.117.40.0/21 2828 -209.117.48.0/20 2828 -209.117.64.0/23 2828 -209.117.66.0/23 393827 -209.117.68.0/22 2828 -209.117.72.0/21 2828 -209.117.80.0/20 2828 -209.117.96.0/19 2828 -209.117.128.0/18 2828 -209.117.192.0/19 2828 -209.117.224.0/21 2828 -209.117.232.0/22 3257 -209.117.236.0/23 2828 -209.117.238.0/24 3257 -209.117.239.0/24 2828 -209.117.240.0/20 2828 -209.118.0.0/21 2828 -209.118.8.0/23 2828 -209.118.10.0/24 2828 -209.118.11.0/24 46462 -209.118.12.0/23 2828 -209.118.14.0/24 701 -209.118.15.0/24 2828 -209.118.16.0/20 2828 -209.118.32.0/20 2828 -209.118.48.0/21 2828 -209.118.56.0/22 2828 -209.118.60.0/24 2828 -209.118.61.0/24 394389 -209.118.62.0/23 17361 -209.118.64.0/20 2828 -209.118.80.0/23 2828 -209.118.82.0/24 2828 -209.118.83.0/24 17119 -209.118.84.0/24 2828 -209.118.85.0/24 26197 -209.118.86.0/23 2828 -209.118.88.0/21 2828 -209.118.96.0/19 2828 -209.118.128.0/21 2828 -209.118.136.0/22 2828 -209.118.140.0/23 2828 -209.118.142.0/24 2828 -209.118.143.0/24 53559 -209.118.144.0/20 2828 -209.118.160.0/20 2828 -209.118.176.0/22 2828 -209.118.180.0/24 2828 -209.118.181.0/24 26669 -209.118.182.0/23 2828 -209.118.184.0/21 2828 -209.118.192.0/22 2828 -209.118.196.0/23 2828 -209.118.198.0/24 27291 -209.118.199.0/24 2828 -209.118.200.0/21 2828 -209.118.208.0/23 2828 -209.118.210.0/24 2828 -209.118.211.0/24 26669 -209.118.212.0/22 2828 -209.118.216.0/24 2828 -209.118.217.0/24 18957 -209.118.218.0/23 2828 -209.118.220.0/22 2828 -209.118.224.0/19 2828 -209.119.0.0/19 2828 -209.119.32.0/24 2828 -209.119.33.0/24 36776 -209.119.34.0/23 2828 -209.119.36.0/22 2828 -209.119.40.0/23 2828 -209.119.42.0/24 36776 -209.119.43.0/24 2828 -209.119.44.0/23 54833 -209.119.46.0/23 2828 -209.119.48.0/23 2828 -209.119.50.0/24 2828 -209.119.51.0/24 22530 -209.119.52.0/22 2828 -209.119.56.0/21 2828 -209.119.64.0/21 2828 -209.119.72.0/22 2828 -209.119.76.0/24 2828 -209.119.77.0/24 30202 -209.119.78.0/23 30202 -209.119.80.0/20 2828 -209.119.96.0/23 2828 -209.119.98.0/24 26669 -209.119.99.0/24 2828 -209.119.100.0/22 2828 -209.119.104.0/21 2828 -209.119.112.0/21 2828 -209.119.120.0/22 46746 -209.119.124.0/22 2828 -209.119.128.0/23 2828 -209.119.130.0/24 2828 -209.119.131.0/24 26420 -209.119.132.0/22 2828 -209.119.136.0/22 2828 -209.119.140.0/24 31890 -209.119.141.0/24 2828 -209.119.142.0/23 2828 -209.119.144.0/22 2828 -209.119.148.0/22 3257 -209.119.152.0/21 2828 -209.119.160.0/19 2828 -209.119.192.0/23 2828 -209.119.194.0/24 2828 -209.119.195.0/24 26088 -209.119.196.0/22 2828 -209.119.200.0/21 2828 -209.119.208.0/20 2828 -209.119.224.0/19 2828 -209.120.22.0/24 3644 -209.120.128.0/18 3257 -209.120.192.0/22 3257 -209.120.196.0/22 6493 -209.120.200.0/22 6493 -209.120.204.0/24 3257 -209.120.205.0/24 40676 -209.120.206.0/23 3257 -209.120.208.0/20 3257 -209.120.224.0/20 3257 -209.120.240.0/22 3257 -209.120.244.0/24 3257 -209.120.245.0/24 33480 -209.120.246.0/24 3257 -209.120.247.0/24 53560 -209.120.248.0/21 3257 -209.121.0.0/17 852 -209.121.128.0/19 852 -209.121.160.0/22 852 -209.121.164.0/23 852 -209.121.166.0/24 852 -209.121.167.0/24 7861 -209.121.168.0/21 852 -209.121.176.0/20 852 -209.121.192.0/18 852 -209.122.0.0/16 6079 -209.123.0.0/18 8001 -209.123.64.0/22 8001 -209.123.68.0/24 8001 -209.123.69.0/24 16766 -209.123.70.0/23 8001 -209.123.72.0/21 8001 -209.123.80.0/22 8001 -209.123.84.0/24 53886 -209.123.85.0/24 8001 -209.123.86.0/23 8001 -209.123.88.0/22 8001 -209.123.92.0/23 8001 -209.123.94.0/24 8001 -209.123.95.0/24 20000 -209.123.96.0/19 8001 -209.123.128.0/19 8001 -209.123.160.0/23 8001 -209.123.162.0/24 63949 -209.123.163.0/24 8001 -209.123.164.0/22 8001 -209.123.168.0/21 8001 -209.123.176.0/21 8001 -209.123.184.0/22 8001 -209.123.188.0/23 8001 -209.123.190.0/23 7868 -209.123.192.0/20 8001 -209.123.208.0/21 8001 -209.123.216.0/23 8001 -209.123.218.0/24 8001 -209.123.219.0/24 19865 -209.123.220.0/22 8001 -209.123.224.0/21 8001 -209.123.232.0/23 8001 -209.123.234.0/24 63949 -209.123.235.0/24 8001 -209.123.236.0/22 8001 -209.123.240.0/23 8001 -209.123.242.0/24 396924 -209.123.243.0/24 8001 -209.123.244.0/22 8001 -209.123.248.0/23 8001 -209.123.250.0/24 30138 -209.123.251.0/24 20000 -209.123.252.0/22 8001 -209.124.0.0/19 2914 -209.124.32.0/22 12129 -209.124.36.0/23 12129 -209.124.38.0/24 20471 -209.124.39.0/24 394398 -209.124.40.0/23 12129 -209.124.42.0/24 20471 -209.124.43.0/24 12129 -209.124.44.0/22 12129 -209.124.48.0/23 12129 -209.124.50.0/24 55293 -209.124.51.0/24 12129 -209.124.52.0/22 12129 -209.124.56.0/21 12129 -209.124.64.0/20 55293 -209.124.80.0/21 55293 -209.124.88.0/24 55293 -209.124.89.0/24 32244 -209.124.90.0/23 55293 -209.124.92.0/22 55293 -209.124.96.0/23 20299 -209.124.98.0/23 27773 -209.124.100.0/23 27742 -209.124.102.0/24 27773 -209.124.105.0/24 27742 -209.124.106.0/23 27742 -209.124.108.0/23 27773 -209.124.110.0/24 27773 -209.124.112.0/21 27773 -209.124.126.0/23 27773 -209.124.128.0/20 10538 -209.124.144.0/21 10538 -209.124.152.0/22 15035 -209.124.156.0/22 10538 -209.124.160.0/21 33321 -209.124.168.0/22 33321 -209.124.172.0/24 33321 -209.124.173.0/24 62994 -209.124.174.0/24 33321 -209.124.175.0/24 62994 -209.124.176.0/20 101 -209.124.192.0/18 5009 -209.125.0.0/17 7029 -209.125.128.0/18 7029 -209.125.192.0/24 7029 -209.125.193.0/24 30471 -209.125.194.0/23 7029 -209.125.196.0/24 7029 -209.125.197.0/24 7018 -209.125.198.0/23 7029 -209.125.200.0/21 7029 -209.125.208.0/20 7029 -209.125.224.0/19 7029 -209.126.0.0/20 6428 -209.126.16.0/21 36444 -209.126.24.0/22 36444 -209.126.28.0/24 40819 -209.126.29.0/24 36444 -209.126.30.0/23 36444 -209.126.32.0/24 11019 -209.126.34.0/23 11019 -209.126.36.0/22 11019 -209.126.40.0/22 11019 -209.126.64.0/20 6428 -209.126.80.0/21 6428 -209.126.88.0/24 32780 -209.126.89.0/24 36131 -209.126.90.0/23 64200 -209.126.92.0/24 16557 -209.126.93.0/24 19149 -209.126.94.0/23 396862 -209.126.96.0/19 30083 -209.126.128.0/17 10439 -209.127.0.0/18 55286 -209.127.64.0/20 55286 -209.127.80.0/21 36352 -209.127.88.0/22 48635 -209.127.96.0/19 55286 -209.127.128.0/21 55286 -209.127.136.0/23 55286 -209.127.138.0/24 55286 -209.127.140.0/22 55286 -209.127.144.0/20 55286 -209.127.160.0/19 55286 -209.127.195.0/24 398168 -209.127.197.0/24 11785 -209.128.0.0/20 855 -209.128.16.0/21 855 -209.128.24.0/22 855 -209.128.28.0/24 53455 -209.128.29.0/24 855 -209.128.30.0/23 855 -209.128.32.0/20 855 -209.128.48.0/24 6579 -209.128.49.0/24 855 -209.128.50.0/23 855 -209.128.52.0/22 855 -209.128.56.0/23 855 -209.128.58.0/24 855 -209.128.59.0/24 40575 -209.128.60.0/22 40575 -209.128.64.0/18 7151 -209.128.128.0/18 7029 -209.128.192.0/19 7385 -209.129.0.0/17 2152 -209.129.128.0/18 2152 -209.129.192.0/19 2152 -209.129.224.0/20 23369 -209.129.240.0/22 2152 -209.129.244.0/23 9 -209.129.246.0/23 2152 -209.129.248.0/21 2152 -209.130.128.0/21 3549 -209.130.136.0/22 3549 -209.130.140.0/24 3549 -209.130.141.0/24 41415 -209.130.142.0/23 3549 -209.130.144.0/22 3549 -209.130.148.0/23 3549 -209.130.150.0/24 3549 -209.130.151.0/24 7385 -209.130.152.0/22 6939 -209.130.156.0/22 3549 -209.130.160.0/19 3549 -209.130.192.0/24 3356 -209.130.193.0/24 3549 -209.130.194.0/23 3549 -209.130.196.0/22 3549 -209.130.200.0/23 3549 -209.130.202.0/24 3549 -209.130.203.0/24 19009 -209.130.204.0/22 3549 -209.130.208.0/21 3549 -209.130.216.0/22 3549 -209.130.220.0/23 3549 -209.130.222.0/24 21627 -209.130.223.0/24 3549 -209.130.224.0/24 3549 -209.130.240.0/22 30113 -209.130.244.0/24 30113 -209.130.250.0/23 30113 -209.130.252.0/24 30113 -209.131.0.0/19 12129 -209.131.48.0/22 10310 -209.131.52.0/23 10310 -209.131.54.0/23 7233 -209.131.56.0/24 14678 -209.131.57.0/24 10310 -209.131.58.0/24 10310 -209.131.59.0/24 13533 -209.131.60.0/23 10310 -209.131.62.0/24 7233 -209.131.63.0/24 10310 -209.131.64.0/20 7029 -209.131.80.0/20 5050 -209.131.96.0/20 40009 -209.131.112.0/23 26163 -209.131.114.0/24 26163 -209.131.116.0/22 26163 -209.131.120.0/22 26163 -209.131.124.0/23 26163 -209.131.127.0/24 26163 -209.131.128.0/23 7342 -209.131.130.0/24 396551 -209.131.131.0/24 396552 -209.131.132.0/24 396553 -209.131.133.0/24 7342 -209.131.134.0/24 7342 -209.131.135.0/24 30060 -209.131.136.0/21 7342 -209.131.144.0/22 7342 -209.131.148.0/23 7342 -209.131.150.0/24 7342 -209.131.151.0/24 396571 -209.131.152.0/24 396572 -209.131.153.0/24 396573 -209.131.154.0/23 7342 -209.131.156.0/24 7342 -209.131.157.0/24 26415 -209.131.158.0/23 30060 -209.131.160.0/22 11840 -209.131.164.0/24 36632 -209.131.165.0/24 36617 -209.131.166.0/24 36618 -209.131.167.0/24 36619 -209.131.168.0/24 36620 -209.131.169.0/24 36621 -209.131.170.0/23 7342 -209.131.172.0/22 7342 -209.131.176.0/23 7342 -209.131.178.0/24 36616 -209.131.192.0/19 11069 -209.131.224.0/21 15011 -209.131.232.0/22 393916 -209.131.236.0/22 393552 -209.131.240.0/20 23314 -209.132.0.0/18 33398 -209.132.64.0/20 33398 -209.132.80.0/21 33398 -209.132.88.0/22 33398 -209.132.92.0/24 33398 -209.132.93.0/24 22773 -209.132.94.0/23 33398 -209.132.96.0/20 33398 -209.132.112.0/22 33398 -209.132.116.0/24 33398 -209.132.117.0/24 22773 -209.132.118.0/23 33398 -209.132.120.0/21 33398 -209.132.128.0/20 6099 -209.132.144.0/23 6099 -209.132.146.0/24 6099 -209.132.147.0/24 2152 -209.132.148.0/22 6099 -209.132.152.0/22 6099 -209.132.156.0/24 2152 -209.132.157.0/24 6099 -209.132.158.0/23 6099 -209.132.160.0/20 19751 -209.132.176.0/21 31976 -209.132.184.0/22 31976 -209.132.188.0/23 31976 -209.132.190.0/23 22753 -209.132.192.0/18 7296 -209.133.0.0/20 6461 -209.133.16.0/22 6461 -209.133.20.0/24 6461 -209.133.21.0/24 3925 -209.133.22.0/23 6461 -209.133.24.0/21 6461 -209.133.32.0/24 6461 -209.133.33.0/24 13410 -209.133.34.0/23 6461 -209.133.36.0/22 6461 -209.133.40.0/21 6461 -209.133.48.0/23 6461 -209.133.50.0/24 3925 -209.133.51.0/24 6461 -209.133.52.0/22 6461 -209.133.56.0/22 6461 -209.133.60.0/23 11309 -209.133.62.0/23 6461 -209.133.64.0/22 6461 -209.133.68.0/23 6461 -209.133.70.0/24 6461 -209.133.71.0/24 18888 -209.133.72.0/23 6461 -209.133.74.0/23 22556 -209.133.76.0/23 6461 -209.133.78.0/24 396467 -209.133.79.0/24 394161 -209.133.80.0/21 6461 -209.133.88.0/24 6461 -209.133.89.0/24 22556 -209.133.90.0/24 6461 -209.133.91.0/24 22556 -209.133.92.0/23 6461 -209.133.94.0/24 26537 -209.133.95.0/24 6461 -209.133.96.0/24 6461 -209.133.97.0/24 26420 -209.133.98.0/23 6461 -209.133.100.0/24 17025 -209.133.101.0/24 6461 -209.133.102.0/24 6461 -209.133.103.0/24 19614 -209.133.104.0/24 18970 -209.133.105.0/24 6461 -209.133.106.0/24 6461 -209.133.107.0/24 22556 -209.133.108.0/22 6461 -209.133.112.0/22 6461 -209.133.116.0/24 394976 -209.133.117.0/24 6461 -209.133.118.0/24 27526 -209.133.119.0/24 6461 -209.133.120.0/22 6461 -209.133.124.0/24 6461 -209.133.125.0/24 22556 -209.133.126.0/24 6461 -209.133.127.0/24 22556 -209.133.128.0/18 2939 -209.133.192.0/19 29802 -209.133.224.0/19 27357 -209.134.0.0/19 8082 -209.134.32.0/20 17356 -209.134.48.0/20 11734 -209.134.64.0/19 20001 -209.134.96.0/22 10838 -209.134.100.0/22 20001 -209.134.104.0/21 20001 -209.134.112.0/20 20001 -209.134.128.0/20 8015 -209.134.144.0/21 8015 -209.134.152.0/23 8015 -209.134.154.0/24 5767 -209.134.155.0/24 8015 -209.134.156.0/22 8015 -209.134.160.0/19 15293 -209.134.192.0/19 31966 -209.135.0.0/19 6939 -209.135.64.0/18 6539 -209.135.128.0/19 6428 -209.135.192.0/20 2828 -209.135.208.0/20 19893 -209.135.224.0/19 2828 -209.136.0.0/23 3549 -209.136.2.0/24 64288 -209.136.3.0/24 3549 -209.136.4.0/24 23357 -209.136.5.0/24 3549 -209.136.6.0/23 3549 -209.136.8.0/24 55086 -209.136.9.0/24 33623 -209.136.10.0/24 3549 -209.136.11.0/24 63480 -209.136.12.0/24 3549 -209.136.13.0/24 21985 -209.136.14.0/24 33623 -209.136.15.0/24 3549 -209.136.16.0/21 3549 -209.136.24.0/23 3549 -209.136.26.0/23 10445 -209.136.28.0/22 10445 -209.136.32.0/22 10445 -209.136.36.0/24 10445 -209.136.37.0/24 23357 -209.136.38.0/24 23357 -209.136.39.0/24 3549 -209.136.40.0/21 3549 -209.136.48.0/20 3549 -209.136.64.0/23 3549 -209.136.66.0/23 33302 -209.136.68.0/23 3549 -209.136.70.0/23 26831 -209.136.72.0/23 32877 -209.136.74.0/23 3549 -209.136.76.0/22 3549 -209.136.80.0/23 3549 -209.136.82.0/23 26831 -209.136.84.0/22 3549 -209.136.88.0/21 3549 -209.136.96.0/23 3549 -209.136.98.0/24 3549 -209.136.99.0/24 26831 -209.136.100.0/23 3549 -209.136.102.0/24 3549 -209.136.103.0/24 26831 -209.136.104.0/21 3549 -209.136.112.0/21 3549 -209.136.120.0/23 3549 -209.136.122.0/23 26831 -209.136.124.0/22 3549 -209.136.128.0/21 3549 -209.136.136.0/23 3549 -209.136.138.0/24 3549 -209.136.139.0/24 30320 -209.136.140.0/24 26831 -209.136.141.0/24 3549 -209.136.142.0/23 3549 -209.136.144.0/21 3549 -209.136.152.0/24 3549 -209.136.153.0/24 33623 -209.136.154.0/23 3549 -209.136.156.0/23 3549 -209.136.158.0/24 25679 -209.136.159.0/24 3549 -209.136.160.0/21 3549 -209.136.168.0/23 33623 -209.136.170.0/23 3549 -209.136.172.0/22 3549 -209.136.176.0/20 3549 -209.136.192.0/20 11402 -209.136.208.0/24 63143 -209.136.209.0/24 3549 -209.136.210.0/23 3549 -209.136.212.0/22 3549 -209.136.216.0/21 3549 -209.136.224.0/20 3549 -209.136.240.0/24 3549 -209.136.241.0/24 394238 -209.136.242.0/23 3549 -209.136.244.0/24 393671 -209.136.245.0/24 3549 -209.136.246.0/23 3549 -209.136.248.0/21 393857 -209.137.101.0/24 11437 -209.137.102.0/23 11437 -209.137.104.0/24 11437 -209.137.128.0/21 4459 -209.137.136.0/22 4459 -209.137.140.0/24 4459 -209.137.141.0/24 32699 -209.137.142.0/23 4459 -209.137.144.0/20 4459 -209.137.160.0/19 7029 -209.137.192.0/20 21586 -209.137.208.0/21 21586 -209.137.216.0/22 21586 -209.137.220.0/24 21586 -209.137.221.0/24 397851 -209.137.222.0/23 21586 -209.137.224.0/24 40097 -209.137.225.0/24 21947 -209.137.226.0/23 21947 -209.137.228.0/22 21947 -209.137.232.0/21 21947 -209.137.240.0/20 21947 -209.138.0.0/16 701 -209.139.0.0/17 2914 -209.139.128.0/18 2914 -209.139.192.0/22 6539 -209.139.196.0/23 6539 -209.139.198.0/24 577 -209.139.199.0/24 6539 -209.139.200.0/21 6539 -209.139.208.0/23 11831 -209.139.210.0/24 6539 -209.139.211.0/24 577 -209.139.212.0/22 6539 -209.139.216.0/21 6539 -209.139.224.0/19 6539 -209.140.0.0/20 21803 -209.140.16.0/22 11042 -209.140.21.0/24 11042 -209.140.22.0/23 11042 -209.140.24.0/21 11042 -209.140.32.0/19 6128 -209.140.64.0/18 6621 -209.140.128.0/19 11643 -209.140.188.0/22 62955 -209.140.192.0/18 394289 -209.141.0.0/20 55821 -209.141.16.0/20 27626 -209.141.32.0/19 53667 -209.141.64.0/19 32035 -209.141.96.0/20 32035 -209.141.112.0/20 15305 -209.141.128.0/18 54614 -209.141.192.0/20 54614 -209.141.208.0/20 46792 -209.142.0.0/18 53732 -209.142.128.0/20 22561 -209.142.144.0/21 22561 -209.142.152.0/22 22561 -209.142.156.0/23 22561 -209.142.158.0/24 22561 -209.142.159.0/24 209 -209.142.160.0/20 22561 -209.142.176.0/22 22561 -209.142.180.0/23 209 -209.142.182.0/23 22561 -209.142.184.0/23 22561 -209.142.186.0/24 22561 -209.142.187.0/24 209 -209.142.188.0/24 22561 -209.142.189.0/24 209 -209.142.190.0/23 22561 -209.142.192.0/18 27553 -209.143.0.0/21 7106 -209.143.8.0/23 7106 -209.143.10.0/24 7106 -209.143.11.0/24 394708 -209.143.12.0/22 7106 -209.143.16.0/23 7106 -209.143.18.0/24 394708 -209.143.19.0/24 7106 -209.143.20.0/22 7106 -209.143.24.0/21 7106 -209.143.32.0/20 7106 -209.143.48.0/21 7106 -209.143.56.0/24 7106 -209.143.57.0/24 394708 -209.143.58.0/23 7106 -209.143.60.0/23 7106 -209.143.62.0/24 7106 -209.143.63.0/24 394708 -209.143.64.0/21 17054 -209.143.72.0/23 17054 -209.143.74.0/24 54518 -209.143.75.0/24 17054 -209.143.76.0/23 17054 -209.143.78.0/24 397090 -209.143.79.0/24 17054 -209.143.80.0/20 17054 -209.143.96.0/19 17054 -209.143.128.0/21 14127 -209.143.136.0/23 14127 -209.143.138.0/24 14127 -209.143.140.0/22 14127 -209.143.144.0/20 14127 -209.143.176.0/23 23085 -209.143.192.0/20 3561 -209.143.208.0/23 33184 -209.143.222.0/23 33184 -209.143.224.0/19 3561 -209.144.0.0/19 3561 -209.144.32.0/22 3561 -209.144.36.0/24 14858 -209.144.37.0/24 3561 -209.144.38.0/23 3561 -209.144.40.0/22 3561 -209.144.44.0/24 3561 -209.144.45.0/24 14858 -209.144.46.0/23 14858 -209.144.48.0/20 3561 -209.144.64.0/19 3561 -209.144.96.0/22 3561 -209.144.100.0/23 3561 -209.144.102.0/24 3561 -209.144.103.0/24 209 -209.144.104.0/21 3561 -209.144.112.0/20 3561 -209.144.128.0/23 3561 -209.144.130.0/24 209 -209.144.131.0/24 3561 -209.144.132.0/22 3561 -209.144.136.0/24 3561 -209.144.137.0/24 209 -209.144.138.0/23 3561 -209.144.140.0/22 3561 -209.144.144.0/24 20141 -209.144.145.0/24 3561 -209.144.146.0/23 3561 -209.144.148.0/22 3561 -209.144.152.0/24 46085 -209.144.153.0/24 3561 -209.144.154.0/23 3561 -209.144.156.0/22 3561 -209.144.160.0/19 3561 -209.144.192.0/22 3561 -209.144.196.0/24 3561 -209.144.197.0/24 209 -209.144.198.0/23 3561 -209.144.200.0/21 3561 -209.144.208.0/20 3561 -209.144.224.0/19 3561 -209.145.32.0/19 6428 -209.145.64.0/21 7795 -209.145.72.0/23 7795 -209.145.74.0/24 7795 -209.145.75.0/24 396983 -209.145.76.0/23 396983 -209.145.78.0/24 396983 -209.145.79.0/24 7795 -209.145.80.0/24 7795 -209.145.81.0/24 54317 -209.145.82.0/23 7795 -209.145.84.0/22 7795 -209.145.88.0/21 7795 -209.145.96.0/19 18988 -209.145.128.0/18 5656 -209.145.192.0/18 5769 -209.146.0.0/24 395753 -209.146.1.0/24 174 -209.146.2.0/24 133847 -209.146.3.0/24 174 -209.146.4.0/24 174 -209.146.5.0/24 46754 -209.146.6.0/24 27399 -209.146.7.0/24 32242 -209.146.8.0/24 133847 -209.146.9.0/24 174 -209.146.10.0/23 133847 -209.146.12.0/23 133527 -209.146.14.0/24 138994 -209.146.15.0/24 174 -209.146.16.0/20 135607 -209.146.32.0/22 174 -209.146.36.0/24 174 -209.146.37.0/24 45273 -209.146.38.0/23 174 -209.146.40.0/22 174 -209.146.44.0/22 4800 -209.146.48.0/20 174 -209.146.64.0/18 174 -209.146.128.0/17 15290 -209.147.0.0/18 2920 -209.147.64.0/23 54103 -209.147.66.0/24 54103 -209.147.67.0/24 39855 -209.147.68.0/24 54103 -209.147.69.0/24 39855 -209.147.70.0/24 39855 -209.147.71.0/24 54103 -209.147.72.0/24 54103 -209.147.73.0/24 11194 -209.147.74.0/23 54103 -209.147.76.0/23 54103 -209.147.78.0/24 11194 -209.147.79.0/24 54103 -209.147.80.0/21 54103 -209.147.88.0/22 54103 -209.147.92.0/23 54103 -209.147.94.0/23 39855 -209.147.96.0/20 33019 -209.147.112.0/20 30170 -209.147.128.0/18 2900 -209.147.192.0/24 396926 -209.147.200.0/21 7018 -209.147.208.0/20 397087 -209.147.224.0/23 396926 -209.147.226.0/24 396926 -209.147.227.0/24 6389 -209.147.228.0/22 396926 -209.147.232.0/21 396926 -209.147.240.0/21 63392 -209.147.248.0/24 6389 -209.148.32.0/21 27506 -209.148.40.0/24 23004 -209.148.41.0/24 51318 -209.148.42.0/24 27506 -209.148.43.0/24 22042 -209.148.44.0/23 27506 -209.148.46.0/24 46887 -209.148.47.0/24 27506 -209.148.48.0/21 27506 -209.148.56.0/23 27506 -209.148.58.0/24 27506 -209.148.59.0/24 46887 -209.148.60.0/24 13592 -209.148.61.0/24 36193 -209.148.62.0/23 27506 -209.148.64.0/24 58092 -209.148.66.0/24 58092 -209.148.77.0/24 58092 -209.148.78.0/23 58092 -209.148.80.0/21 394844 -209.148.88.0/22 394844 -209.148.92.0/24 394844 -209.148.93.0/24 33182 -209.148.94.0/23 394844 -209.148.96.0/19 7065 -209.148.128.0/18 812 -209.148.192.0/20 812 -209.148.208.0/21 812 -209.148.216.0/21 3602 -209.148.224.0/19 812 -209.149.0.0/18 6389 -209.149.64.0/19 6389 -209.149.96.0/24 6197 -209.149.97.0/24 6389 -209.149.98.0/23 6389 -209.149.100.0/22 6389 -209.149.104.0/21 6389 -209.149.112.0/22 3565 -209.149.116.0/22 6389 -209.149.120.0/21 6389 -209.149.128.0/20 6389 -209.149.144.0/21 6389 -209.149.152.0/24 6389 -209.149.153.0/24 40844 -209.149.154.0/24 40844 -209.149.155.0/24 6389 -209.149.156.0/22 6389 -209.149.160.0/22 6389 -209.149.164.0/23 18848 -209.149.166.0/23 6389 -209.149.168.0/21 6389 -209.149.176.0/24 6389 -209.149.177.0/24 36846 -209.149.178.0/24 40844 -209.149.179.0/24 6389 -209.149.180.0/22 6389 -209.149.184.0/21 6389 -209.149.192.0/20 6389 -209.149.208.0/21 6389 -209.149.216.0/22 2386 -209.149.220.0/22 6389 -209.149.224.0/19 6389 -209.150.0.0/19 25612 -209.150.32.0/19 6079 -209.150.64.0/21 3549 -209.150.72.0/23 23090 -209.150.74.0/23 3549 -209.150.76.0/23 26421 -209.150.78.0/24 26402 -209.150.79.0/24 3549 -209.150.80.0/23 3549 -209.150.82.0/23 18760 -209.150.84.0/22 3549 -209.150.88.0/21 3549 -209.150.96.0/19 7055 -209.150.128.0/20 29734 -209.150.144.0/21 138423 -209.150.152.0/22 59257 -209.150.156.0/23 59257 -209.150.158.0/24 59257 -209.150.159.0/24 138423 -209.150.160.0/23 6939 -209.150.162.0/24 6939 -209.150.163.0/24 5081 -209.150.164.0/22 6939 -209.150.168.0/21 6939 -209.150.176.0/20 6939 -209.150.192.0/19 7385 -209.150.224.0/22 10882 -209.150.228.0/24 10882 -209.150.229.0/24 62727 -209.150.230.0/23 10882 -209.150.232.0/21 10882 -209.150.240.0/20 19021 -209.151.0.0/19 26753 -209.151.32.0/19 10587 -209.151.64.0/22 29863 -209.151.68.0/22 14313 -209.151.72.0/21 29863 -209.151.80.0/22 29863 -209.151.84.0/23 29863 -209.151.86.0/24 25864 -209.151.87.0/24 29863 -209.151.88.0/21 29863 -209.151.128.0/20 32453 -209.151.144.0/21 25697 -209.151.152.0/22 54118 -209.151.156.0/23 54118 -209.151.158.0/23 25697 -209.151.160.0/20 31797 -209.151.176.0/22 13576 -209.151.180.0/24 393452 -209.151.181.0/24 13576 -209.151.182.0/23 13576 -209.151.184.0/22 13576 -209.151.188.0/22 393417 -209.151.192.0/21 13984 -209.151.200.0/22 13984 -209.151.208.0/21 23137 -209.151.217.0/24 13984 -209.151.218.0/23 13984 -209.151.220.0/22 54238 -209.151.224.0/19 11051 -209.152.0.0/19 3549 -209.152.32.0/19 22919 -209.152.64.0/24 46892 -209.152.65.0/24 5056 -209.152.66.0/24 5056 -209.152.67.0/24 55009 -209.152.68.0/23 5056 -209.152.70.0/24 16824 -209.152.71.0/24 5056 -209.152.72.0/21 5056 -209.152.80.0/22 5056 -209.152.84.0/23 5056 -209.152.86.0/24 396461 -209.152.87.0/24 5056 -209.152.88.0/21 5056 -209.152.96.0/24 396461 -209.152.97.0/24 5056 -209.152.98.0/23 5056 -209.152.100.0/23 5056 -209.152.102.0/24 63394 -209.152.103.0/24 5056 -209.152.104.0/23 5056 -209.152.106.0/23 13356 -209.152.108.0/23 5056 -209.152.110.0/24 396461 -209.152.111.0/24 5056 -209.152.112.0/23 5056 -209.152.114.0/24 5056 -209.152.115.0/24 396461 -209.152.116.0/24 5056 -209.152.117.0/24 396461 -209.152.118.0/23 5056 -209.152.120.0/23 46892 -209.152.122.0/24 63394 -209.152.123.0/24 5056 -209.152.124.0/22 5056 -209.152.128.0/22 62943 -209.152.132.0/23 62943 -209.152.134.0/24 26400 -209.152.135.0/24 62943 -209.152.136.0/24 62943 -209.152.137.0/24 18892 -209.152.138.0/23 62943 -209.152.140.0/24 393442 -209.152.141.0/24 16697 -209.152.142.0/23 62943 -209.152.144.0/23 62943 -209.152.146.0/24 62943 -209.152.147.0/24 397780 -209.152.148.0/24 395040 -209.152.149.0/24 26400 -209.152.150.0/23 62943 -209.152.152.0/23 62943 -209.152.154.0/24 62943 -209.152.155.0/24 10750 -209.152.156.0/22 62943 -209.152.160.0/19 35041 -209.152.192.0/20 7029 -209.152.208.0/22 7029 -209.152.212.0/23 7029 -209.152.214.0/24 7029 -209.152.215.0/24 22660 -209.152.216.0/21 7029 -209.153.0.0/18 33491 -209.153.64.0/18 13654 -209.153.128.0/24 7321 -209.153.192.0/18 15290 -209.154.100.0/24 16877 -209.154.224.0/19 3371 -209.155.0.0/20 7029 -209.155.16.0/21 7029 -209.155.24.0/22 7029 -209.155.28.0/24 7029 -209.155.29.0/24 31872 -209.155.30.0/23 7029 -209.155.32.0/19 7029 -209.155.64.0/18 7029 -209.155.128.0/19 7029 -209.155.160.0/21 7029 -209.155.168.0/22 393460 -209.155.172.0/22 7029 -209.155.176.0/20 7029 -209.155.192.0/18 7029 -209.156.0.0/17 7029 -209.156.128.0/18 7029 -209.156.192.0/20 7029 -209.156.208.0/21 7029 -209.156.216.0/22 30363 -209.156.220.0/22 7029 -209.156.224.0/19 7029 -209.157.0.0/16 2914 -209.158.0.0/16 701 -209.159.0.0/19 701 -209.159.32.0/19 7029 -209.159.128.0/20 40193 -209.159.144.0/20 19318 -209.159.160.0/20 22351 -209.159.176.0/20 11181 -209.159.192.0/18 20412 -209.160.0.0/21 14361 -209.160.8.0/24 14361 -209.160.9.0/24 42831 -209.160.10.0/23 14361 -209.160.12.0/22 14361 -209.160.16.0/22 397293 -209.160.20.0/22 14361 -209.160.24.0/21 14361 -209.160.32.0/20 14361 -209.160.48.0/21 14361 -209.160.56.0/22 14361 -209.160.64.0/20 14361 -209.160.81.0/24 36184 -209.160.84.0/24 36184 -209.160.86.0/24 36184 -209.160.94.0/24 36184 -209.160.96.0/23 11051 -209.160.104.0/24 29802 -209.160.109.0/24 54544 -209.160.112.0/20 40861 -209.160.128.0/24 46887 -209.160.129.0/24 395382 -209.160.130.0/24 46887 -209.160.131.0/24 55080 -209.160.132.0/24 46887 -209.160.133.0/24 394754 -209.160.134.0/23 46887 -209.160.136.0/21 46887 -209.160.144.0/24 395408 -209.160.145.0/24 46887 -209.160.146.0/23 46887 -209.160.148.0/22 46887 -209.160.152.0/22 46887 -209.160.156.0/24 395053 -209.160.157.0/24 46887 -209.160.158.0/24 62986 -209.160.159.0/24 46887 -209.160.160.0/19 46887 -209.160.192.0/20 46887 -209.160.208.0/21 46887 -209.160.216.0/23 46887 -209.160.218.0/24 46887 -209.160.219.0/24 32099 -209.160.220.0/22 46887 -209.160.224.0/20 46887 -209.160.240.0/21 46887 -209.160.248.0/24 40513 -209.160.249.0/24 46887 -209.160.250.0/23 46887 -209.160.252.0/22 46887 -209.161.0.0/21 10587 -209.161.8.0/23 10587 -209.161.10.0/24 10587 -209.161.11.0/24 40266 -209.161.12.0/22 10587 -209.161.16.0/20 10587 -209.161.32.0/19 10587 -209.161.96.0/24 53559 -209.161.97.0/24 53889 -209.161.98.0/23 53889 -209.161.100.0/24 53559 -209.161.101.0/24 53889 -209.161.102.0/23 53889 -209.161.104.0/21 53889 -209.161.112.0/22 46614 -209.161.116.0/24 27696 -209.161.117.0/24 46614 -209.161.118.0/24 46614 -209.161.119.0/24 7908 -209.161.120.0/24 7908 -209.161.121.0/24 46614 -209.161.122.0/23 46614 -209.161.124.0/23 46614 -209.161.126.0/24 7908 -209.161.127.0/24 46614 -209.161.128.0/19 4043 -209.161.160.0/19 7782 -209.161.192.0/18 5645 -209.162.0.0/18 7029 -209.162.64.0/18 2914 -209.162.129.0/24 47254 -209.162.130.0/23 47254 -209.162.132.0/22 47254 -209.162.136.0/21 47254 -209.162.144.0/22 47254 -209.162.148.0/23 47254 -209.162.150.0/24 47254 -209.162.151.0/24 206810 -209.162.152.0/24 206810 -209.162.154.0/23 47254 -209.162.157.0/24 47254 -209.162.158.0/23 206810 -209.162.160.0/20 852 -209.162.176.0/20 17184 -209.162.192.0/21 6423 -209.162.200.0/23 6423 -209.162.202.0/24 6423 -209.162.203.0/24 2044 -209.162.204.0/24 6423 -209.162.205.0/24 2044 -209.162.206.0/23 6423 -209.162.208.0/22 6423 -209.162.212.0/23 6423 -209.162.214.0/24 6423 -209.162.215.0/24 2044 -209.162.216.0/24 6423 -209.162.217.0/24 2044 -209.162.218.0/23 6423 -209.162.220.0/22 6423 -209.162.224.0/19 20161 -209.163.0.0/18 7029 -209.163.64.0/19 15128 -209.163.98.0/23 46811 -209.163.100.0/23 23530 -209.163.104.0/24 14390 -209.163.105.0/24 396978 -209.163.107.0/24 14390 -209.163.108.0/23 14390 -209.163.110.0/23 393240 -209.163.112.0/23 14390 -209.163.114.0/24 14390 -209.163.116.0/22 64267 -209.163.120.0/21 16740 -209.163.128.0/21 3549 -209.163.136.0/22 11942 -209.163.140.0/22 3549 -209.163.144.0/21 3549 -209.163.152.0/22 11942 -209.163.156.0/22 3549 -209.163.160.0/24 26831 -209.163.161.0/24 3549 -209.163.162.0/23 54979 -209.163.164.0/22 3549 -209.163.168.0/23 3549 -209.163.170.0/24 3549 -209.163.171.0/24 54979 -209.163.172.0/22 3549 -209.163.176.0/21 3549 -209.163.184.0/24 3549 -209.163.185.0/24 26831 -209.163.186.0/23 3549 -209.163.188.0/24 22403 -209.163.189.0/24 3549 -209.163.190.0/23 3549 -209.163.192.0/23 3549 -209.163.194.0/23 62738 -209.163.196.0/22 7029 -209.163.200.0/21 3549 -209.163.208.0/21 3549 -209.163.216.0/22 3549 -209.163.220.0/24 32919 -209.163.221.0/24 3549 -209.163.222.0/23 3549 -209.163.224.0/23 3549 -209.163.226.0/23 7029 -209.163.228.0/23 3549 -209.163.230.0/23 11135 -209.163.232.0/21 33070 -209.163.240.0/21 3549 -209.163.248.0/22 33070 -209.163.252.0/24 26995 -209.163.253.0/24 3549 -209.163.254.0/23 3549 -209.164.0.0/19 20021 -209.164.32.0/20 20021 -209.164.56.0/21 20021 -209.164.64.0/18 54489 -209.164.128.0/20 3356 -209.164.144.0/21 3356 -209.164.152.0/22 3356 -209.164.156.0/24 16657 -209.164.157.0/24 46887 -209.164.158.0/23 3356 -209.164.160.0/22 3356 -209.164.164.0/23 3356 -209.164.166.0/23 23089 -209.164.168.0/21 3356 -209.164.176.0/21 3356 -209.164.184.0/21 9246 -209.164.192.0/23 15048 -209.164.195.0/24 15048 -209.164.204.0/23 15048 -209.164.207.0/24 15048 -209.164.208.0/24 15048 -209.164.211.0/24 15048 -209.164.220.0/23 15048 -209.164.223.0/24 15048 -209.164.224.0/19 20222 -209.165.0.0/24 6983 -209.165.1.0/24 7029 -209.165.2.0/23 7029 -209.165.4.0/22 6983 -209.165.8.0/21 7029 -209.165.16.0/20 7029 -209.165.32.0/19 7029 -209.165.64.0/18 7029 -209.165.128.0/18 8047 -209.165.192.0/22 3925 -209.165.196.0/22 395826 -209.165.200.0/21 3925 -209.165.208.0/20 3925 -209.165.224.0/20 54677 -209.165.240.0/23 30517 -209.165.242.0/23 19009 -209.165.244.0/22 30517 -209.165.248.0/21 30517 -209.166.0.0/18 4565 -209.166.64.0/19 3853 -209.166.96.0/22 395597 -209.166.100.0/24 395461 -209.166.105.0/24 395461 -209.166.106.0/23 395461 -209.166.108.0/23 395461 -209.166.110.0/24 395461 -209.166.112.0/21 14325 -209.166.120.0/21 395461 -209.166.128.0/20 17054 -209.166.144.0/22 17054 -209.166.148.0/23 36298 -209.166.150.0/23 17054 -209.166.152.0/21 17054 -209.166.160.0/20 17054 -209.166.176.0/21 17054 -209.166.184.0/22 17054 -209.166.188.0/23 17054 -209.166.190.0/24 17054 -209.166.191.0/24 30610 -209.166.192.0/19 15315 -209.166.224.0/22 15315 -209.166.228.0/22 16509 -209.166.232.0/21 15315 -209.166.240.0/20 31715 -209.167.0.0/21 701 -209.167.8.0/23 701 -209.167.10.0/24 701 -209.167.11.0/24 17397 -209.167.12.0/23 701 -209.167.14.0/24 701 -209.167.15.0/24 11486 -209.167.16.0/21 701 -209.167.24.0/22 701 -209.167.28.0/23 701 -209.167.30.0/24 701 -209.167.31.0/24 813 -209.167.32.0/22 701 -209.167.36.0/23 701 -209.167.38.0/24 27579 -209.167.39.0/24 701 -209.167.40.0/21 701 -209.167.48.0/20 701 -209.167.64.0/20 701 -209.167.80.0/22 701 -209.167.84.0/24 701 -209.167.85.0/24 11486 -209.167.86.0/23 701 -209.167.88.0/21 701 -209.167.96.0/21 701 -209.167.104.0/22 701 -209.167.108.0/24 13657 -209.167.109.0/24 701 -209.167.110.0/23 701 -209.167.112.0/23 701 -209.167.114.0/24 701 -209.167.115.0/24 11486 -209.167.116.0/22 701 -209.167.120.0/21 701 -209.167.128.0/21 701 -209.167.136.0/22 701 -209.167.140.0/24 701 -209.167.141.0/24 11486 -209.167.142.0/23 701 -209.167.144.0/20 701 -209.167.160.0/21 701 -209.167.168.0/22 701 -209.167.172.0/24 701 -209.167.173.0/24 22964 -209.167.174.0/23 701 -209.167.176.0/20 701 -209.167.192.0/19 701 -209.167.224.0/22 701 -209.167.228.0/23 701 -209.167.230.0/24 701 -209.167.231.0/24 7160 -209.167.232.0/21 701 -209.167.240.0/20 701 -209.168.0.0/18 2914 -209.168.64.0/19 2914 -209.168.96.0/20 2914 -209.168.112.0/21 2914 -209.168.120.0/22 2914 -209.168.124.0/24 397537 -209.168.125.0/24 2914 -209.168.126.0/23 2914 -209.168.128.0/20 7029 -209.168.144.0/21 7029 -209.168.152.0/22 7029 -209.168.156.0/23 27338 -209.168.158.0/24 7029 -209.168.159.0/24 27338 -209.168.160.0/19 7029 -209.168.192.0/19 7029 -209.168.224.0/20 7029 -209.168.240.0/22 7029 -209.168.244.0/24 7029 -209.168.245.0/24 20141 -209.168.246.0/24 7029 -209.168.247.0/24 20141 -209.168.248.0/21 7029 -209.169.0.0/23 22658 -209.169.4.0/22 22658 -209.169.8.0/22 22658 -209.169.12.0/24 22658 -209.169.14.0/23 22658 -209.169.16.0/23 10835 -209.169.20.0/23 22658 -209.169.22.0/24 22658 -209.169.30.0/23 22658 -209.169.32.0/19 14949 -209.169.64.0/18 6300 -209.169.128.0/18 46618 -209.169.192.0/22 11232 -209.169.196.0/23 4181 -209.169.198.0/23 11232 -209.169.200.0/23 11232 -209.169.202.0/23 4181 -209.169.204.0/22 4181 -209.169.208.0/21 11232 -209.169.216.0/23 4181 -209.169.218.0/23 11232 -209.169.220.0/22 4181 -209.169.224.0/24 11133 -209.169.226.0/23 11133 -209.169.228.0/24 11133 -209.169.230.0/24 11133 -209.169.232.0/21 11133 -209.169.240.0/24 11133 -209.169.242.0/24 16509 -209.169.243.0/24 11133 -209.169.244.0/24 11133 -209.169.245.0/24 2685 -209.169.246.0/23 2685 -209.169.248.0/24 2685 -209.169.253.0/24 11133 -209.169.254.0/24 11133 -209.170.0.0/18 2914 -209.170.64.0/18 1299 -209.170.128.0/23 36236 -209.170.131.0/24 36236 -209.170.138.0/24 33597 -209.170.140.0/22 36236 -209.170.149.0/24 36236 -209.170.151.0/24 36236 -209.170.152.0/24 36236 -209.170.156.0/24 36236 -209.170.159.0/24 36236 -209.170.160.0/20 16399 -209.170.176.0/20 12069 -209.170.192.0/21 13649 -209.170.200.0/22 13649 -209.170.204.0/24 29951 -209.170.205.0/24 13649 -209.170.206.0/23 13649 -209.170.208.0/21 13649 -209.170.216.0/24 13649 -209.170.217.0/24 29951 -209.170.218.0/23 13649 -209.170.220.0/22 13649 -209.170.224.0/20 62642 -209.170.240.0/21 62642 -209.170.248.0/22 39986 -209.170.254.0/23 39986 -209.171.0.0/16 852 -209.172.0.0/22 7770 -209.172.4.0/23 7770 -209.172.6.0/24 20115 -209.172.7.0/24 7770 -209.172.8.0/22 7770 -209.172.12.0/23 398249 -209.172.14.0/23 54650 -209.172.20.0/22 3848 -209.172.24.0/21 11404 -209.172.32.0/19 32613 -209.172.64.0/18 16467 -209.172.128.0/18 6479 -209.172.192.0/19 62 -209.172.224.0/19 393289 -209.173.0.0/21 3737 -209.173.8.0/24 3737 -209.173.9.0/24 14369 -209.173.10.0/23 3737 -209.173.12.0/22 3737 -209.173.16.0/21 3737 -209.173.24.0/22 3737 -209.173.28.0/23 3737 -209.173.30.0/24 3737 -209.173.31.0/24 22580 -209.173.32.0/20 18474 -209.173.52.0/23 7786 -209.173.57.0/24 7786 -209.173.58.0/24 397213 -209.173.60.0/24 12008 -209.173.61.0/24 7029 -209.173.64.0/18 7029 -209.173.128.0/20 15085 -209.173.144.0/22 15085 -209.173.152.0/21 15085 -209.173.160.0/23 7106 -209.173.162.0/23 394708 -209.173.164.0/22 7106 -209.173.168.0/21 7106 -209.173.176.0/22 7106 -209.173.180.0/23 7106 -209.173.182.0/24 394708 -209.173.183.0/24 7106 -209.173.184.0/21 394708 -209.173.192.0/19 15250 -209.173.224.0/20 15250 -209.173.248.0/22 19572 -209.173.252.0/22 394437 -209.174.0.0/19 6325 -209.174.32.0/20 6325 -209.174.48.0/21 6325 -209.174.56.0/22 6325 -209.174.60.0/24 33248 -209.174.61.0/24 6325 -209.174.62.0/23 6325 -209.174.64.0/18 6325 -209.174.128.0/19 6325 -209.174.160.0/21 6325 -209.174.168.0/22 6325 -209.174.172.0/24 63056 -209.174.173.0/24 6325 -209.174.174.0/23 6325 -209.174.176.0/22 6325 -209.174.180.0/24 62523 -209.174.181.0/24 6325 -209.174.182.0/23 6325 -209.174.184.0/21 6325 -209.174.192.0/18 6325 -209.175.0.0/19 6325 -209.175.32.0/21 6325 -209.175.40.0/22 6325 -209.175.44.0/22 1416 -209.175.48.0/20 6325 -209.175.64.0/21 6325 -209.175.72.0/22 1702 -209.175.76.0/22 6325 -209.175.80.0/20 6325 -209.175.96.0/19 6325 -209.175.128.0/17 6325 -209.176.0.0/18 3561 -209.176.64.0/21 3561 -209.176.72.0/24 3561 -209.176.73.0/24 2924 -209.176.74.0/23 3561 -209.176.76.0/22 3561 -209.176.80.0/20 3561 -209.176.96.0/21 3561 -209.176.104.0/22 3561 -209.176.108.0/23 3561 -209.176.110.0/24 3561 -209.176.111.0/24 23028 -209.176.112.0/20 3561 -209.176.128.0/17 3561 -209.177.0.0/20 7029 -209.177.16.0/22 7349 -209.177.20.0/22 7029 -209.177.24.0/21 7029 -209.177.32.0/19 7029 -209.177.66.0/23 33070 -209.177.70.0/24 26801 -209.177.72.0/24 20042 -209.177.73.0/24 395327 -209.177.74.0/23 55140 -209.177.77.0/24 25769 -209.177.78.0/24 395499 -209.177.80.0/24 21859 -209.177.81.0/24 3462 -209.177.82.0/23 21859 -209.177.84.0/22 21859 -209.177.88.0/21 21859 -209.177.96.0/20 21774 -209.177.112.0/20 5650 -209.177.128.0/20 7832 -209.177.144.0/22 36236 -209.177.148.0/23 36236 -209.177.150.0/24 36236 -209.177.151.0/24 262144 -209.177.152.0/22 36236 -209.177.156.0/23 36236 -209.177.158.0/24 36236 -209.177.160.0/23 18465 -209.177.162.0/24 18465 -209.177.164.0/22 18465 -209.177.168.0/23 18465 -209.177.171.0/24 18465 -209.177.172.0/24 18465 -209.177.174.0/24 18465 -209.177.192.0/18 7029 -209.178.0.0/17 7029 -209.178.128.0/18 7029 -209.178.192.0/18 18885 -209.179.0.0/16 7029 -209.180.0.0/20 209 -209.180.16.0/21 209 -209.180.24.0/24 40154 -209.180.25.0/24 209 -209.180.26.0/24 209 -209.180.27.0/24 33324 -209.180.28.0/22 209 -209.180.32.0/21 209 -209.180.40.0/22 209 -209.180.44.0/24 26955 -209.180.45.0/24 209 -209.180.46.0/23 209 -209.180.48.0/20 209 -209.180.64.0/24 209 -209.180.65.0/24 23057 -209.180.66.0/23 209 -209.180.68.0/22 209 -209.180.72.0/21 209 -209.180.80.0/24 209 -209.180.81.0/24 13649 -209.180.82.0/23 209 -209.180.84.0/22 209 -209.180.88.0/21 209 -209.180.96.0/19 209 -209.180.128.0/20 209 -209.180.144.0/22 209 -209.180.148.0/23 209 -209.180.150.0/24 209 -209.180.151.0/24 30449 -209.180.152.0/22 209 -209.180.156.0/23 209 -209.180.158.0/24 394528 -209.180.159.0/24 209 -209.180.160.0/22 209 -209.180.164.0/24 209 -209.180.165.0/24 397476 -209.180.166.0/23 209 -209.180.168.0/21 209 -209.180.176.0/20 209 -209.180.192.0/18 209 -209.181.0.0/19 209 -209.181.32.0/21 209 -209.181.40.0/22 209 -209.181.44.0/23 209 -209.181.46.0/24 10835 -209.181.47.0/24 209 -209.181.48.0/20 209 -209.181.64.0/18 209 -209.181.128.0/17 209 -209.182.96.0/21 25693 -209.182.104.0/24 19437 -209.182.105.0/24 60558 -209.182.106.0/24 19437 -209.182.107.0/24 397698 -209.182.108.0/23 8100 -209.182.110.0/23 397698 -209.182.112.0/20 47028 -209.182.152.0/23 36089 -209.182.154.0/24 36089 -209.182.156.0/24 36089 -209.182.160.0/22 13628 -209.182.164.0/23 13628 -209.182.166.0/24 13628 -209.182.169.0/24 13628 -209.182.170.0/23 13628 -209.182.172.0/23 13628 -209.182.174.0/24 13628 -209.182.192.0/22 22611 -209.182.196.0/24 54641 -209.182.197.0/24 22611 -209.182.198.0/23 54641 -209.182.200.0/22 22611 -209.182.204.0/22 54641 -209.182.208.0/21 54641 -209.182.216.0/23 47869 -209.182.218.0/24 18779 -209.182.219.0/24 46562 -209.182.220.0/24 64200 -209.182.221.0/24 26889 -209.182.223.0/24 64200 -209.182.224.0/22 395092 -209.182.228.0/22 22423 -209.182.232.0/23 54540 -209.182.234.0/24 54540 -209.182.235.0/24 29802 -209.182.236.0/22 29802 -209.182.240.0/21 396122 -209.182.248.0/23 62 -209.182.250.0/23 54691 -209.182.252.0/22 14901 -209.183.0.0/21 6407 -209.183.8.0/22 6407 -209.183.12.0/24 812 -209.183.13.0/24 6407 -209.183.14.0/23 6407 -209.183.16.0/22 6407 -209.183.20.0/24 812 -209.183.21.0/24 6407 -209.183.22.0/23 6407 -209.183.24.0/21 6407 -209.183.32.0/21 20057 -209.183.40.0/23 20057 -209.183.44.0/23 20057 -209.183.48.0/21 20057 -209.183.56.0/23 20057 -209.183.59.0/24 20057 -209.183.64.0/18 7029 -209.183.130.0/23 7794 -209.183.132.0/22 7794 -209.183.136.0/21 7794 -209.183.144.0/20 7794 -209.183.160.0/20 22346 -209.183.176.0/21 32327 -209.183.184.0/22 32327 -209.183.188.0/24 32327 -209.183.189.0/24 55015 -209.183.190.0/24 6461 -209.183.191.0/24 32327 -209.183.192.0/19 7784 -209.183.224.0/20 7784 -209.183.240.0/22 7784 -209.183.244.0/24 22301 -209.183.245.0/24 11561 -209.183.246.0/23 7784 -209.183.248.0/21 7784 -209.184.0.0/21 7018 -209.184.8.0/22 7018 -209.184.12.0/23 20035 -209.184.14.0/24 20035 -209.184.15.0/24 7018 -209.184.16.0/20 7018 -209.184.32.0/24 7018 -209.184.33.0/24 21648 -209.184.34.0/23 7018 -209.184.36.0/22 7018 -209.184.40.0/21 7018 -209.184.48.0/20 7018 -209.184.64.0/21 7018 -209.184.72.0/22 7018 -209.184.76.0/23 7018 -209.184.78.0/24 7018 -209.184.79.0/24 25893 -209.184.80.0/21 7018 -209.184.88.0/23 7018 -209.184.90.0/24 7018 -209.184.91.0/24 393535 -209.184.92.0/22 7018 -209.184.96.0/20 7018 -209.184.112.0/21 2386 -209.184.120.0/21 7018 -209.184.128.0/19 7018 -209.184.160.0/20 7018 -209.184.176.0/23 7018 -209.184.178.0/24 18674 -209.184.179.0/24 7018 -209.184.180.0/22 7018 -209.184.184.0/21 7018 -209.184.192.0/20 797 -209.184.208.0/20 7018 -209.184.224.0/19 7018 -209.185.0.0/21 3561 -209.185.8.0/24 13713 -209.185.9.0/24 3561 -209.185.10.0/23 3561 -209.185.12.0/22 3561 -209.185.16.0/20 3561 -209.185.32.0/19 3561 -209.185.64.0/18 3561 -209.185.128.0/22 8075 -209.185.132.0/22 3561 -209.185.136.0/21 3561 -209.185.144.0/20 3561 -209.185.160.0/22 3561 -209.185.164.0/24 3561 -209.185.165.0/24 53362 -209.185.166.0/23 4298 -209.185.168.0/21 3561 -209.185.176.0/20 3561 -209.185.192.0/19 3561 -209.185.224.0/20 3561 -209.185.240.0/22 8075 -209.185.244.0/22 3561 -209.185.248.0/21 3561 -209.186.0.0/17 7018 -209.186.128.0/19 7018 -209.186.160.0/20 7018 -209.186.176.0/21 7018 -209.186.184.0/22 7018 -209.186.188.0/23 7018 -209.186.190.0/23 7029 -209.186.192.0/19 7018 -209.186.224.0/20 7018 -209.186.240.0/21 7018 -209.186.248.0/22 7018 -209.186.252.0/23 7018 -209.186.254.0/24 26789 -209.186.255.0/24 7018 -209.187.0.0/17 7018 -209.187.128.0/18 7018 -209.187.192.0/19 7018 -209.187.224.0/19 4268 -209.188.0.0/20 20454 -209.188.16.0/22 20454 -209.188.20.0/24 20454 -209.188.21.0/24 22612 -209.188.22.0/23 20454 -209.188.24.0/21 20454 -209.188.32.0/19 33749 -209.188.64.0/20 32809 -209.188.80.0/20 32244 -209.188.96.0/23 10765 -209.188.98.0/23 10835 -209.188.100.0/24 11619 -209.188.101.0/24 10835 -209.188.102.0/23 10765 -209.188.104.0/23 10765 -209.188.106.0/24 10765 -209.188.108.0/24 10765 -209.188.109.0/24 10835 -209.188.110.0/23 10765 -209.188.112.0/20 14901 -209.188.128.0/17 2152 -209.189.0.0/17 2914 -209.189.128.0/19 54249 -209.189.160.0/22 54249 -209.189.167.0/24 54249 -209.189.173.0/24 54249 -209.189.191.0/24 54249 -209.189.192.0/19 7752 -209.189.224.0/21 19366 -209.189.232.0/23 25956 -209.189.234.0/24 25956 -209.189.235.0/24 394525 -209.189.236.0/23 25956 -209.189.238.0/23 1606 -209.189.240.0/20 19366 -209.190.0.0/17 10297 -209.190.128.0/18 17054 -209.190.192.0/23 7784 -209.190.194.0/24 40468 -209.190.195.0/24 7784 -209.190.196.0/22 7784 -209.190.200.0/21 7784 -209.190.208.0/21 7784 -209.190.216.0/23 7784 -209.190.218.0/24 7784 -209.190.219.0/24 7029 -209.190.220.0/22 7784 -209.190.224.0/19 7784 -209.191.0.0/18 7078 -209.191.128.0/22 10910 -209.191.132.0/23 10910 -209.191.134.0/24 22064 -209.191.135.0/24 10910 -209.191.136.0/23 10910 -209.191.138.0/24 10910 -209.191.139.0/24 15278 -209.191.140.0/22 10910 -209.191.144.0/21 10910 -209.191.152.0/22 10910 -209.191.156.0/23 10910 -209.191.158.0/24 29949 -209.191.159.0/24 10910 -209.191.160.0/23 14744 -209.191.162.0/23 29791 -209.191.164.0/23 29791 -209.191.166.0/23 14744 -209.191.168.0/23 10910 -209.191.170.0/24 10910 -209.191.171.0/24 33223 -209.191.172.0/24 19812 -209.191.173.0/24 10910 -209.191.174.0/24 26654 -209.191.175.0/24 10910 -209.191.176.0/22 12180 -209.191.180.0/23 14744 -209.191.182.0/23 12179 -209.191.184.0/21 14744 -209.191.192.0/19 14371 -209.191.224.0/19 22190 -209.192.0.0/24 7029 -209.192.1.0/24 27338 -209.192.2.0/23 7029 -209.192.4.0/22 7029 -209.192.8.0/23 7029 -209.192.10.0/24 27338 -209.192.11.0/24 7029 -209.192.12.0/24 7029 -209.192.13.0/24 53271 -209.192.14.0/24 53271 -209.192.15.0/24 7029 -209.192.16.0/20 7029 -209.192.32.0/24 27338 -209.192.33.0/24 7029 -209.192.34.0/23 7029 -209.192.36.0/23 7029 -209.192.38.0/24 7029 -209.192.39.0/24 27338 -209.192.40.0/21 7029 -209.192.48.0/24 7029 -209.192.49.0/24 27338 -209.192.50.0/23 7029 -209.192.52.0/22 7029 -209.192.56.0/23 7029 -209.192.58.0/24 7029 -209.192.59.0/24 53271 -209.192.60.0/22 7029 -209.192.64.0/24 27338 -209.192.65.0/24 7029 -209.192.66.0/23 7029 -209.192.68.0/22 7029 -209.192.72.0/22 7029 -209.192.76.0/24 7029 -209.192.77.0/24 27338 -209.192.78.0/24 27338 -209.192.79.0/24 7029 -209.192.80.0/20 7029 -209.192.96.0/21 7029 -209.192.104.0/23 7029 -209.192.106.0/24 7029 -209.192.107.0/24 27338 -209.192.108.0/24 27338 -209.192.109.0/24 7029 -209.192.110.0/23 7029 -209.192.112.0/21 7029 -209.192.120.0/23 7029 -209.192.122.0/24 7029 -209.192.123.0/24 27338 -209.192.124.0/24 7029 -209.192.125.0/24 27338 -209.192.126.0/23 7029 -209.192.128.0/17 7979 -209.193.0.0/19 7782 -209.193.32.0/21 7782 -209.193.40.0/24 7782 -209.193.41.0/24 22551 -209.193.42.0/23 7782 -209.193.44.0/22 7782 -209.193.48.0/20 7782 -209.193.64.0/21 10835 -209.193.72.0/22 10835 -209.193.76.0/23 10835 -209.193.78.0/24 14453 -209.193.79.0/24 46847 -209.193.80.0/20 10835 -209.193.96.0/20 10835 -209.193.112.0/20 209 -209.193.128.0/18 2828 -209.193.192.0/19 2828 -209.193.224.0/23 2828 -209.193.226.0/24 54744 -209.193.227.0/24 2828 -209.193.228.0/22 2828 -209.193.232.0/21 2828 -209.193.240.0/20 2828 -209.194.0.0/24 30305 -209.194.1.0/24 3549 -209.194.2.0/23 3549 -209.194.4.0/22 3549 -209.194.8.0/21 3549 -209.194.16.0/22 3549 -209.194.20.0/23 394773 -209.194.22.0/24 3549 -209.194.23.0/24 26831 -209.194.24.0/24 394338 -209.194.25.0/24 26831 -209.194.26.0/24 63085 -209.194.27.0/24 3549 -209.194.28.0/22 3549 -209.194.32.0/22 3549 -209.194.36.0/23 3549 -209.194.38.0/24 3549 -209.194.39.0/24 32916 -209.194.40.0/22 3549 -209.194.44.0/24 3549 -209.194.45.0/24 12109 -209.194.46.0/24 3549 -209.194.47.0/24 63264 -209.194.48.0/20 3549 -209.194.64.0/20 3549 -209.194.80.0/22 3549 -209.194.84.0/23 3549 -209.194.86.0/24 33267 -209.194.87.0/24 3549 -209.194.88.0/23 3549 -209.194.90.0/24 3549 -209.194.91.0/24 393641 -209.194.92.0/24 3549 -209.194.93.0/24 63299 -209.194.94.0/23 23433 -209.194.96.0/20 3549 -209.194.112.0/22 3549 -209.194.116.0/24 23357 -209.194.117.0/24 3549 -209.194.118.0/23 3549 -209.194.120.0/21 3549 -209.194.128.0/19 3549 -209.194.160.0/22 3549 -209.194.164.0/24 393729 -209.194.165.0/24 3549 -209.194.166.0/23 3549 -209.194.168.0/24 3549 -209.194.169.0/24 22317 -209.194.170.0/23 3549 -209.194.172.0/22 3549 -209.194.176.0/21 3549 -209.194.184.0/22 3549 -209.194.188.0/23 3549 -209.194.190.0/24 3549 -209.194.191.0/24 16952 -209.194.192.0/22 16952 -209.194.196.0/23 16952 -209.194.198.0/23 3549 -209.194.200.0/22 3549 -209.194.204.0/24 3549 -209.194.205.0/24 39957 -209.194.206.0/23 3549 -209.194.208.0/23 19179 -209.194.210.0/23 3549 -209.194.212.0/22 3549 -209.194.216.0/21 3549 -209.194.224.0/22 3549 -209.194.228.0/23 3549 -209.194.230.0/24 393958 -209.194.231.0/24 14214 -209.194.232.0/23 3549 -209.194.234.0/24 3549 -209.194.235.0/24 394376 -209.194.236.0/22 3549 -209.194.240.0/21 3549 -209.194.248.0/23 3549 -209.194.250.0/24 3549 -209.194.251.0/24 33313 -209.194.252.0/23 25649 -209.194.254.0/24 3549 -209.194.255.0/24 393814 -209.195.0.0/18 6597 -209.195.64.0/18 11814 -209.195.128.0/18 13333 -209.195.192.0/18 6493 -209.196.64.0/20 17306 -209.196.96.0/21 17306 -209.196.104.0/22 17306 -209.196.112.0/20 17306 -209.196.128.0/19 13768 -209.196.160.0/21 11776 -209.196.168.0/21 32448 -209.196.180.0/23 32939 -209.196.192.0/23 36023 -209.196.198.0/23 27011 -209.196.204.0/24 27011 -209.196.209.0/24 40428 -209.196.212.0/22 27011 -209.196.216.0/23 27011 -209.196.218.0/24 27011 -209.196.220.0/23 27011 -209.196.222.0/24 27011 -209.196.224.0/20 35911 -209.196.248.0/23 32039 -209.196.252.0/24 16542 -209.197.0.0/23 12989 -209.197.2.0/23 20446 -209.197.4.0/23 12989 -209.197.6.0/24 12989 -209.197.8.0/21 12989 -209.197.16.0/23 12989 -209.197.18.0/24 12989 -209.197.20.0/23 12989 -209.197.24.0/21 12989 -209.197.32.0/19 15227 -209.197.64.0/18 7859 -209.197.128.0/19 11814 -209.197.160.0/20 11814 -209.197.176.0/21 11814 -209.197.188.0/22 11814 -209.197.192.0/19 13445 -209.197.224.0/22 29863 -209.197.228.0/22 62021 -209.197.232.0/21 29863 -209.197.240.0/20 29863 -209.198.0.0/22 6921 -209.198.4.0/24 9009 -209.198.5.0/24 6921 -209.198.6.0/23 6921 -209.198.8.0/24 20150 -209.198.9.0/24 6921 -209.198.10.0/23 6921 -209.198.12.0/23 6921 -209.198.14.0/24 6921 -209.198.15.0/24 20150 -209.198.16.0/22 31996 -209.198.20.0/24 6921 -209.198.21.0/24 9009 -209.198.22.0/23 31996 -209.198.24.0/22 6921 -209.198.28.0/23 31996 -209.198.30.0/23 6921 -209.198.32.0/21 6921 -209.198.40.0/22 31996 -209.198.44.0/23 31996 -209.198.46.0/23 6921 -209.198.48.0/23 6921 -209.198.50.0/24 6921 -209.198.51.0/24 9009 -209.198.52.0/22 6921 -209.198.56.0/23 6921 -209.198.58.0/23 30436 -209.198.60.0/23 30436 -209.198.62.0/24 30436 -209.198.63.0/24 6921 -209.198.64.0/23 5738 -209.198.66.0/24 13536 -209.198.67.0/24 5738 -209.198.68.0/23 5738 -209.198.70.0/24 13536 -209.198.71.0/24 5738 -209.198.72.0/21 5738 -209.198.80.0/24 13536 -209.198.81.0/24 54989 -209.198.82.0/24 13536 -209.198.83.0/24 5738 -209.198.84.0/22 5738 -209.198.88.0/22 5738 -209.198.92.0/24 5738 -209.198.93.0/24 13536 -209.198.94.0/23 5738 -209.198.96.0/19 5738 -209.198.128.0/19 8166 -209.198.160.0/20 8166 -209.198.176.0/20 30320 -209.198.192.0/21 19271 -209.198.200.0/22 19271 -209.198.204.0/23 19271 -209.198.206.0/24 19271 -209.198.207.0/24 25708 -209.198.208.0/21 54483 -209.198.240.0/21 47965 -209.200.0.0/20 27257 -209.200.16.0/21 27257 -209.200.24.0/23 27257 -209.200.26.0/24 36057 -209.200.27.0/24 27257 -209.200.28.0/22 27257 -209.200.32.0/20 27257 -209.200.48.0/21 27257 -209.200.56.0/22 27257 -209.200.60.0/22 36057 -209.200.64.0/18 14992 -209.200.131.0/24 32787 -209.200.132.0/23 32787 -209.200.134.0/24 32787 -209.200.136.0/22 32787 -209.200.140.0/24 32787 -209.200.142.0/23 32787 -209.200.144.0/21 32787 -209.200.152.0/22 32787 -209.200.156.0/24 32787 -209.200.158.0/23 32787 -209.200.160.0/19 32787 -209.200.192.0/19 21947 -209.200.224.0/24 15244 -209.200.226.0/23 15244 -209.200.229.0/24 15244 -209.200.231.0/24 15244 -209.200.232.0/23 15244 -209.200.235.0/24 15244 -209.200.240.0/22 15244 -209.200.244.0/23 15244 -209.200.250.0/23 15244 -209.200.253.0/24 15244 -209.201.0.0/20 209 -209.201.16.0/21 209 -209.201.24.0/23 209 -209.201.26.0/24 10511 -209.201.27.0/24 209 -209.201.28.0/22 209 -209.201.32.0/20 209 -209.201.48.0/22 209 -209.201.52.0/24 32547 -209.201.53.0/24 209 -209.201.54.0/23 209 -209.201.56.0/21 209 -209.201.64.0/21 209 -209.201.72.0/23 209 -209.201.74.0/23 10886 -209.201.76.0/22 209 -209.201.80.0/21 209 -209.201.88.0/23 209 -209.201.90.0/24 209 -209.201.91.0/24 394204 -209.201.92.0/22 209 -209.201.96.0/23 209 -209.201.98.0/24 23333 -209.201.99.0/24 209 -209.201.100.0/22 209 -209.201.104.0/21 209 -209.201.112.0/23 209 -209.201.114.0/24 209 -209.201.115.0/24 14378 -209.201.116.0/22 209 -209.201.120.0/21 209 -209.202.0.0/21 7122 -209.202.8.0/22 7122 -209.202.12.0/24 62846 -209.202.13.0/24 7122 -209.202.14.0/23 7122 -209.202.16.0/20 7122 -209.202.32.0/19 7122 -209.202.64.0/21 852 -209.202.72.0/23 852 -209.202.74.0/24 852 -209.202.75.0/24 11700 -209.202.76.0/22 852 -209.202.80.0/20 852 -209.202.96.0/19 852 -209.202.128.0/20 3561 -209.202.144.0/24 27475 -209.202.145.0/24 3561 -209.202.146.0/23 3561 -209.202.148.0/22 3561 -209.202.152.0/23 3561 -209.202.154.0/24 3561 -209.202.155.0/24 40089 -209.202.156.0/22 3561 -209.202.160.0/22 3561 -209.202.164.0/24 46263 -209.202.165.0/24 3561 -209.202.166.0/23 3561 -209.202.168.0/21 3561 -209.202.176.0/20 3561 -209.202.192.0/19 395965 -209.202.224.0/20 62642 -209.202.240.0/20 6354 -209.203.0.0/18 11845 -209.203.64.0/22 3549 -209.203.68.0/23 25649 -209.203.70.0/23 3549 -209.203.72.0/22 3549 -209.203.76.0/23 3549 -209.203.78.0/24 3549 -209.203.79.0/24 30320 -209.203.80.0/22 3549 -209.203.84.0/23 19881 -209.203.86.0/23 3549 -209.203.88.0/22 3549 -209.203.92.0/24 3549 -209.203.93.0/24 19881 -209.203.94.0/23 3549 -209.203.96.0/22 3549 -209.203.100.0/24 11881 -209.203.101.0/24 3549 -209.203.102.0/23 3549 -209.203.104.0/22 3549 -209.203.108.0/23 32289 -209.203.110.0/23 3549 -209.203.112.0/22 3549 -209.203.116.0/23 3549 -209.203.118.0/24 3549 -209.203.119.0/24 33114 -209.203.120.0/24 36635 -209.203.121.0/24 23657 -209.203.122.0/23 3549 -209.203.124.0/22 3549 -209.203.128.0/23 30688 -209.203.130.0/24 394568 -209.203.131.0/24 30688 -209.203.132.0/22 30688 -209.203.136.0/21 30688 -209.203.144.0/20 30688 -209.203.160.0/20 30174 -209.203.176.0/20 46759 -209.203.192.0/20 11776 -209.203.208.0/22 11776 -209.203.212.0/24 11776 -209.203.213.0/24 55118 -209.203.214.0/23 11776 -209.203.216.0/21 11776 -209.203.224.0/19 13768 -209.204.0.0/19 395439 -209.204.32.0/20 22413 -209.204.64.0/18 10823 -209.204.128.0/18 7065 -209.204.192.0/19 7794 -209.204.224.0/21 27381 -209.204.232.0/22 27381 -209.204.236.0/23 27381 -209.204.238.0/24 27381 -209.204.240.0/23 394977 -209.204.242.0/24 394977 -209.204.244.0/23 394977 -209.204.246.0/24 394977 -209.204.248.0/23 394977 -209.204.250.0/24 394977 -209.204.252.0/24 394977 -209.205.0.0/19 701 -209.205.32.0/21 701 -209.205.40.0/24 25833 -209.205.41.0/24 701 -209.205.42.0/23 701 -209.205.44.0/22 701 -209.205.48.0/20 701 -209.205.64.0/19 25668 -209.205.96.0/20 25668 -209.205.116.0/22 7979 -209.205.120.0/21 7979 -209.205.128.0/18 4314 -209.205.192.0/19 55081 -209.205.240.0/20 6579 -209.206.0.0/21 13150 -209.206.8.0/22 13150 -209.206.13.0/24 13150 -209.206.14.0/23 13150 -209.206.16.0/21 13150 -209.206.24.0/22 13150 -209.206.28.0/24 13150 -209.206.30.0/23 13150 -209.206.32.0/23 395193 -209.206.34.0/23 393591 -209.206.36.0/23 395720 -209.206.38.0/24 51964 -209.206.39.0/24 206285 -209.206.40.0/21 22697 -209.206.48.0/22 395831 -209.206.52.0/23 36024 -209.206.54.0/23 395831 -209.206.56.0/23 395831 -209.206.58.0/24 31400 -209.206.59.0/24 395831 -209.206.60.0/22 395831 -209.206.64.0/19 395555 -209.206.96.0/20 21921 -209.206.112.0/21 54182 -209.206.120.0/22 395341 -209.206.124.0/24 395349 -209.206.126.0/24 174 -209.206.127.0/24 14027 -209.206.128.0/22 22561 -209.206.132.0/24 22561 -209.206.133.0/24 55280 -209.206.134.0/23 22561 -209.206.136.0/24 22561 -209.206.137.0/24 209 -209.206.138.0/24 22561 -209.206.139.0/24 209 -209.206.140.0/24 22561 -209.206.141.0/24 209 -209.206.142.0/23 22561 -209.206.144.0/20 22561 -209.206.160.0/22 22561 -209.206.164.0/23 22561 -209.206.166.0/24 209 -209.206.167.0/24 22561 -209.206.168.0/22 22561 -209.206.172.0/23 22561 -209.206.174.0/24 22561 -209.206.175.0/24 209 -209.206.176.0/20 22561 -209.206.192.0/20 22561 -209.206.208.0/21 22561 -209.206.216.0/22 22561 -209.206.220.0/24 33222 -209.206.221.0/24 22561 -209.206.222.0/23 22561 -209.206.224.0/21 22561 -209.206.232.0/22 22561 -209.206.236.0/23 22561 -209.206.238.0/24 209 -209.206.239.0/24 22561 -209.206.240.0/23 22561 -209.206.242.0/24 22561 -209.206.243.0/24 17288 -209.206.244.0/24 22561 -209.206.245.0/24 209 -209.206.246.0/24 36540 -209.206.247.0/24 22561 -209.206.248.0/22 209 -209.206.252.0/23 209 -209.206.254.0/23 22561 -209.207.0.0/18 19108 -209.207.64.0/18 15247 -209.207.128.0/17 2914 -209.208.0.0/19 6364 -209.208.32.0/23 6364 -209.208.34.0/24 6364 -209.208.35.0/24 53547 -209.208.36.0/22 6364 -209.208.40.0/21 6364 -209.208.48.0/20 6364 -209.208.64.0/18 6364 -209.208.128.0/20 4136 -209.208.144.0/20 40606 -209.208.160.0/19 4136 -209.208.192.0/20 11767 -209.208.208.0/22 11767 -209.208.212.0/23 11767 -209.208.214.0/24 11767 -209.208.215.0/24 32077 -209.208.216.0/21 11767 -209.208.224.0/23 20141 -209.208.226.0/23 32077 -209.208.228.0/22 20141 -209.208.232.0/21 20141 -209.208.240.0/20 20141 -209.209.128.0/21 10397 -209.209.137.0/24 26801 -209.209.139.0/24 10397 -209.209.140.0/22 10397 -209.209.144.0/20 10397 -209.209.160.0/21 10397 -209.209.168.0/22 10397 -209.209.172.0/23 10397 -209.209.174.0/24 14352 -209.209.175.0/24 10397 -209.209.176.0/22 10397 -209.209.180.0/23 10397 -209.209.183.0/24 10397 -209.209.184.0/24 10397 -209.209.185.0/24 19108 -209.209.186.0/23 10397 -209.209.188.0/24 19108 -209.209.189.0/24 10397 -209.209.190.0/23 10397 -209.209.192.0/19 10984 -209.209.224.0/22 53889 -209.209.228.0/24 60068 -209.209.229.0/24 53889 -209.209.230.0/24 53889 -209.209.231.0/24 63008 -209.209.232.0/22 53889 -209.209.236.0/23 53889 -209.209.238.0/24 63008 -209.209.239.0/24 53889 -209.209.240.0/21 53889 -209.209.248.0/22 53889 -209.209.252.0/24 53889 -209.209.253.0/24 60068 -209.209.254.0/24 60068 -209.209.255.0/24 53889 -209.210.0.0/21 7385 -209.210.8.0/22 7385 -209.210.12.0/23 7385 -209.210.14.0/24 7385 -209.210.15.0/24 32312 -209.210.16.0/22 7385 -209.210.20.0/23 7385 -209.210.22.0/24 23038 -209.210.23.0/24 7385 -209.210.24.0/23 16578 -209.210.26.0/24 32312 -209.210.27.0/24 7385 -209.210.28.0/22 7385 -209.210.32.0/20 7385 -209.210.48.0/21 7385 -209.210.56.0/24 396033 -209.210.57.0/24 7385 -209.210.58.0/23 7385 -209.210.60.0/22 7385 -209.210.64.0/18 7385 -209.210.128.0/20 7385 -209.210.144.0/21 7385 -209.210.152.0/23 7385 -209.210.154.0/24 11045 -209.210.155.0/24 7385 -209.210.156.0/22 7385 -209.210.160.0/19 7385 -209.210.192.0/19 7385 -209.210.224.0/24 7385 -209.210.225.0/24 396456 -209.210.226.0/23 7385 -209.210.228.0/22 7385 -209.210.232.0/21 7385 -209.210.240.0/20 7385 -209.211.0.0/20 209 -209.211.16.0/21 209 -209.211.24.0/22 209 -209.211.28.0/24 54196 -209.211.29.0/24 209 -209.211.30.0/23 209 -209.211.32.0/22 209 -209.211.36.0/24 394889 -209.211.37.0/24 209 -209.211.38.0/23 209 -209.211.40.0/21 209 -209.211.48.0/23 209 -209.211.50.0/24 209 -209.211.51.0/24 6318 -209.211.52.0/22 209 -209.211.56.0/21 209 -209.211.64.0/22 209 -209.211.68.0/23 209 -209.211.70.0/24 209 -209.211.71.0/24 30473 -209.211.72.0/21 209 -209.211.80.0/20 209 -209.211.96.0/20 209 -209.211.112.0/21 209 -209.211.120.0/22 209 -209.211.124.0/24 18889 -209.211.125.0/24 209 -209.211.126.0/23 209 -209.211.128.0/18 209 -209.211.192.0/22 209 -209.211.196.0/24 3561 -209.211.197.0/24 40144 -209.211.198.0/24 209 -209.211.199.0/24 40144 -209.211.200.0/24 33603 -209.211.201.0/24 209 -209.211.202.0/23 209 -209.211.204.0/22 209 -209.211.208.0/22 7743 -209.211.212.0/23 3909 -209.211.214.0/23 209 -209.211.216.0/24 20940 -209.211.217.0/24 209 -209.211.218.0/23 209 -209.211.220.0/24 18590 -209.211.221.0/24 209 -209.211.222.0/23 209 -209.211.224.0/23 209 -209.211.226.0/24 6318 -209.211.227.0/24 209 -209.211.228.0/23 209 -209.211.230.0/24 209 -209.211.231.0/24 12065 -209.211.232.0/22 209 -209.211.236.0/23 209 -209.211.238.0/23 3909 -209.211.240.0/21 209 -209.211.248.0/22 209 -209.211.252.0/23 209 -209.211.254.0/23 55044 -209.212.0.0/19 21669 -209.212.32.0/20 20283 -209.212.48.0/20 63270 -209.212.64.0/19 7902 -209.212.96.0/19 2905 -209.212.128.0/20 11240 -209.212.144.0/20 32181 -209.212.160.0/19 701 -209.212.192.0/19 7642 -209.212.224.0/22 2914 -209.212.228.0/23 11158 -209.212.230.0/23 2914 -209.212.232.0/22 11158 -209.212.236.0/24 11158 -209.212.237.0/24 2914 -209.212.238.0/23 2914 -209.212.240.0/21 30059 -209.212.248.0/22 30059 -209.212.252.0/23 30059 -209.212.254.0/24 30059 -209.212.255.0/24 40832 -209.213.0.0/20 54246 -209.213.16.0/20 19212 -209.213.32.0/20 36103 -209.213.48.0/20 48582 -209.213.64.0/19 10271 -209.213.96.0/19 13768 -209.213.128.0/19 17049 -209.213.160.0/20 14686 -209.213.176.0/21 28086 -209.213.184.0/21 13805 -209.213.192.0/20 3257 -209.213.208.0/22 3257 -209.213.212.0/23 3257 -209.213.214.0/24 3257 -209.213.215.0/24 46401 -209.213.216.0/24 22005 -209.213.217.0/24 3257 -209.213.218.0/23 3257 -209.213.220.0/24 3257 -209.213.221.0/24 17352 -209.213.222.0/23 3257 -209.213.224.0/19 7794 -209.214.0.0/18 6389 -209.214.64.0/19 6389 -209.214.96.0/20 6389 -209.214.112.0/21 6389 -209.214.120.0/23 6382 -209.214.122.0/23 6389 -209.214.124.0/22 6389 -209.214.128.0/21 6381 -209.214.136.0/23 6381 -209.214.138.0/24 6381 -209.214.139.0/24 6389 -209.214.140.0/22 6381 -209.214.144.0/21 6389 -209.214.152.0/23 6385 -209.214.154.0/23 6389 -209.214.156.0/22 6389 -209.214.160.0/20 6389 -209.214.176.0/21 6389 -209.214.184.0/22 6389 -209.214.188.0/23 6389 -209.214.190.0/24 6389 -209.214.191.0/24 6384 -209.214.192.0/20 6389 -209.214.208.0/21 6389 -209.214.216.0/22 6389 -209.214.220.0/23 6389 -209.214.222.0/24 17067 -209.214.223.0/24 6389 -209.214.224.0/19 6389 -209.215.0.0/22 6389 -209.215.4.0/24 6389 -209.215.5.0/24 6385 -209.215.6.0/23 6389 -209.215.8.0/21 6389 -209.215.16.0/20 6389 -209.215.32.0/19 6389 -209.215.64.0/22 6389 -209.215.68.0/23 6389 -209.215.70.0/24 6389 -209.215.71.0/24 13342 -209.215.72.0/21 6389 -209.215.80.0/20 6389 -209.215.96.0/19 6389 -209.215.128.0/19 6389 -209.215.160.0/20 6389 -209.215.176.0/21 6389 -209.215.184.0/23 6389 -209.215.186.0/23 13342 -209.215.188.0/22 6389 -209.215.192.0/24 6389 -209.215.193.0/24 6197 -209.215.194.0/23 6389 -209.215.196.0/23 6389 -209.215.198.0/24 6389 -209.215.199.0/24 6382 -209.215.200.0/21 6389 -209.215.208.0/23 6389 -209.215.210.0/24 6198 -209.215.211.0/24 6389 -209.215.212.0/22 6389 -209.215.216.0/22 6389 -209.215.220.0/23 6389 -209.215.222.0/24 6389 -209.215.223.0/24 6381 -209.215.224.0/24 6389 -209.215.225.0/24 6384 -209.215.226.0/24 6389 -209.215.227.0/24 6381 -209.215.228.0/23 6389 -209.215.230.0/24 6382 -209.215.231.0/24 6385 -209.215.232.0/23 6389 -209.215.234.0/24 6198 -209.215.235.0/24 6389 -209.215.236.0/22 6389 -209.215.240.0/22 6389 -209.215.244.0/24 6389 -209.215.245.0/24 8063 -209.215.246.0/23 6389 -209.215.248.0/21 6389 -209.216.0.0/19 20021 -209.216.32.0/21 20021 -209.216.40.0/23 20021 -209.216.44.0/22 20021 -209.216.54.0/23 20021 -209.216.56.0/21 20021 -209.216.64.0/19 22549 -209.216.96.0/19 394710 -209.216.128.0/22 6407 -209.216.132.0/24 6407 -209.216.133.0/24 15127 -209.216.134.0/23 6407 -209.216.136.0/24 15127 -209.216.137.0/24 812 -209.216.138.0/23 6407 -209.216.140.0/22 6407 -209.216.144.0/21 6407 -209.216.152.0/22 6407 -209.216.156.0/24 15127 -209.216.157.0/24 6407 -209.216.158.0/23 6407 -209.216.160.0/19 11233 -209.216.192.0/22 6130 -209.216.196.0/23 6130 -209.216.198.0/24 53559 -209.216.199.0/24 6130 -209.216.200.0/21 6130 -209.216.208.0/23 6130 -209.216.210.0/24 6130 -209.216.211.0/24 40687 -209.216.212.0/23 6130 -209.216.214.0/24 53559 -209.216.215.0/24 6130 -209.216.216.0/22 6130 -209.216.220.0/24 53559 -209.216.221.0/24 6130 -209.216.222.0/23 6130 -209.216.224.0/23 6130 -209.216.226.0/24 53559 -209.216.227.0/24 6130 -209.216.228.0/24 53559 -209.216.229.0/24 6130 -209.216.230.0/24 21581 -209.216.231.0/24 6130 -209.216.232.0/23 6130 -209.216.234.0/24 6130 -209.216.235.0/24 53559 -209.216.236.0/23 6130 -209.216.238.0/23 29819 -209.216.240.0/22 6130 -209.216.244.0/24 53559 -209.216.245.0/24 6130 -209.216.246.0/23 6130 -209.216.248.0/24 53559 -209.216.249.0/24 6130 -209.216.250.0/23 6130 -209.216.252.0/23 6130 -209.216.254.0/24 53559 -209.216.255.0/24 6130 -209.217.0.0/18 7258 -209.217.64.0/18 812 -209.217.192.0/21 7828 -209.217.200.0/24 7828 -209.217.201.0/24 396074 -209.217.202.0/23 7828 -209.217.204.0/22 7828 -209.217.208.0/23 7828 -209.217.210.0/24 395908 -209.217.211.0/24 7828 -209.217.212.0/22 7828 -209.217.216.0/21 7828 -209.217.224.0/19 11042 -209.218.0.0/17 7029 -209.218.128.0/23 7029 -209.218.130.0/23 11681 -209.218.132.0/22 7029 -209.218.136.0/21 7029 -209.218.144.0/20 7029 -209.218.160.0/19 7029 -209.218.192.0/20 7029 -209.218.208.0/22 11681 -209.218.212.0/22 7029 -209.218.216.0/21 7029 -209.218.224.0/19 7029 -209.219.0.0/16 7029 -209.220.0.0/19 2828 -209.220.32.0/20 2828 -209.220.48.0/23 2828 -209.220.50.0/24 394933 -209.220.51.0/24 2828 -209.220.52.0/22 2828 -209.220.56.0/21 2828 -209.220.64.0/19 2828 -209.220.96.0/21 2828 -209.220.104.0/22 2828 -209.220.108.0/23 2828 -209.220.110.0/24 2828 -209.220.111.0/24 32560 -209.220.112.0/22 2828 -209.220.116.0/23 2828 -209.220.118.0/23 17248 -209.220.120.0/24 396102 -209.220.121.0/24 2828 -209.220.122.0/23 2828 -209.220.124.0/22 2828 -209.220.128.0/20 2828 -209.220.144.0/22 2828 -209.220.148.0/24 54661 -209.220.149.0/24 2828 -209.220.150.0/23 2828 -209.220.152.0/21 2828 -209.220.160.0/19 2828 -209.220.192.0/18 2828 -209.221.0.0/20 17054 -209.221.16.0/23 393441 -209.221.18.0/23 17054 -209.221.20.0/22 17054 -209.221.24.0/21 17054 -209.221.32.0/22 19955 -209.221.36.0/23 19955 -209.221.38.0/23 19158 -209.221.40.0/24 19158 -209.221.41.0/24 393740 -209.221.42.0/24 19158 -209.221.43.0/24 393740 -209.221.44.0/23 19158 -209.221.46.0/24 393740 -209.221.47.0/24 19158 -209.221.48.0/23 19158 -209.221.50.0/24 393740 -209.221.51.0/24 19158 -209.221.52.0/23 19158 -209.221.54.0/24 15313 -209.221.55.0/24 19158 -209.221.56.0/24 15313 -209.221.57.0/24 19158 -209.221.58.0/23 19158 -209.221.60.0/22 19158 -209.221.90.0/23 30713 -209.221.92.0/22 30713 -209.221.127.0/24 30713 -209.221.128.0/21 3742 -209.221.136.0/22 22030 -209.221.140.0/24 22030 -209.221.141.0/24 3742 -209.221.142.0/23 3742 -209.221.144.0/24 22030 -209.221.145.0/24 394492 -209.221.146.0/24 3742 -209.221.147.0/24 394492 -209.221.148.0/24 22030 -209.221.149.0/24 3742 -209.221.150.0/23 3742 -209.221.152.0/24 394492 -209.221.153.0/24 3742 -209.221.154.0/23 3742 -209.221.156.0/22 3742 -209.221.160.0/22 3742 -209.221.164.0/23 3742 -209.221.166.0/23 22030 -209.221.168.0/21 3742 -209.221.176.0/21 3742 -209.221.184.0/23 22030 -209.221.186.0/23 3742 -209.221.188.0/24 3742 -209.221.189.0/24 394492 -209.221.190.0/23 3742 -209.221.192.0/20 11020 -209.221.208.0/22 11020 -209.221.212.0/22 29951 -209.221.216.0/22 11020 -209.221.220.0/22 29951 -209.221.224.0/20 19036 -209.221.240.0/21 30698 -209.221.248.0/22 30698 -209.221.252.0/23 30698 -209.221.254.0/23 396111 -209.222.0.0/19 20473 -209.222.32.0/20 19963 -209.222.48.0/20 14387 -209.222.64.0/24 394843 -209.222.65.0/24 393648 -209.222.66.0/23 393648 -209.222.68.0/23 13331 -209.222.70.0/24 393964 -209.222.71.0/24 35947 -209.222.72.0/24 46977 -209.222.74.0/23 46977 -209.222.76.0/24 40676 -209.222.77.0/24 16509 -209.222.78.0/23 17306 -209.222.80.0/23 15324 -209.222.82.0/24 16509 -209.222.83.0/24 15324 -209.222.84.0/23 15324 -209.222.86.0/24 15324 -209.222.87.0/24 53292 -209.222.88.0/21 395098 -209.222.96.0/20 23470 -209.222.112.0/23 13886 -209.222.114.0/23 32475 -209.222.116.0/23 394742 -209.222.118.0/23 7029 -209.222.120.0/21 46276 -209.222.128.0/19 29748 -209.222.160.0/20 22995 -209.222.176.0/20 16604 -209.222.192.0/19 557 -209.222.224.0/20 14102 -209.222.242.0/23 46841 -209.222.246.0/23 46841 -209.222.248.0/24 13886 -209.222.249.0/24 46841 -209.222.250.0/24 49981 -209.222.251.0/24 46841 -209.222.252.0/22 46841 -209.223.0.0/17 3561 -209.223.128.0/21 3561 -209.223.136.0/21 35937 -209.223.144.0/20 3561 -209.223.160.0/19 3561 -209.223.192.0/18 3561 -209.225.0.0/19 3561 -209.225.32.0/20 3561 -209.225.48.0/24 3561 -209.225.49.0/24 53387 -209.225.50.0/23 3561 -209.225.52.0/22 3561 -209.225.56.0/24 17184 -209.225.57.0/24 3561 -209.225.58.0/23 3561 -209.225.60.0/22 3561 -209.225.64.0/19 3561 -209.225.96.0/20 13337 -209.225.112.0/20 7341 -209.225.128.0/18 6407 -209.225.192.0/18 26577 -209.226.0.0/20 577 -209.226.16.0/22 577 -209.226.20.0/23 577 -209.226.22.0/24 577 -209.226.23.0/24 35911 -209.226.24.0/24 35911 -209.226.25.0/24 577 -209.226.26.0/23 577 -209.226.28.0/23 21552 -209.226.30.0/24 577 -209.226.31.0/24 3848 -209.226.32.0/23 577 -209.226.34.0/24 21552 -209.226.35.0/24 577 -209.226.36.0/22 577 -209.226.40.0/22 577 -209.226.44.0/24 21552 -209.226.45.0/24 577 -209.226.46.0/24 21552 -209.226.47.0/24 577 -209.226.48.0/21 35911 -209.226.56.0/23 35911 -209.226.58.0/24 35911 -209.226.59.0/24 577 -209.226.60.0/22 577 -209.226.64.0/20 577 -209.226.80.0/21 577 -209.226.88.0/23 35911 -209.226.90.0/24 35911 -209.226.91.0/24 577 -209.226.92.0/22 577 -209.226.96.0/19 577 -209.226.128.0/20 577 -209.226.144.0/22 577 -209.226.148.0/24 577 -209.226.149.0/24 397829 -209.226.150.0/23 577 -209.226.152.0/21 577 -209.226.160.0/21 577 -209.226.168.0/22 30336 -209.226.172.0/23 577 -209.226.174.0/24 30336 -209.226.175.0/24 577 -209.226.176.0/21 577 -209.226.184.0/22 577 -209.226.188.0/23 577 -209.226.190.0/24 577 -209.226.191.0/24 30336 -209.226.192.0/23 577 -209.226.194.0/23 30336 -209.226.196.0/22 577 -209.226.200.0/24 577 -209.226.201.0/24 395677 -209.226.202.0/24 30336 -209.226.203.0/24 577 -209.226.204.0/22 577 -209.226.208.0/21 577 -209.226.216.0/24 577 -209.226.217.0/24 15321 -209.226.218.0/23 577 -209.226.220.0/22 577 -209.226.224.0/24 16605 -209.226.225.0/24 35911 -209.226.226.0/24 35911 -209.226.227.0/24 577 -209.226.228.0/22 577 -209.226.232.0/21 577 -209.226.240.0/20 577 -209.227.0.0/18 2914 -209.227.64.0/21 2914 -209.227.72.0/22 2914 -209.227.76.0/23 2914 -209.227.78.0/23 174 -209.227.80.0/20 2914 -209.227.96.0/19 2914 -209.227.129.0/24 6407 -209.227.134.0/24 6407 -209.227.192.0/18 31034 -209.232.0.0/18 7018 -209.232.64.0/19 7018 -209.232.96.0/20 7018 -209.232.112.0/22 7018 -209.232.116.0/24 26066 -209.232.117.0/24 7018 -209.232.118.0/23 7018 -209.232.120.0/21 7018 -209.232.128.0/20 7018 -209.232.144.0/20 23024 -209.232.160.0/19 7018 -209.232.192.0/22 7018 -209.232.196.0/23 7018 -209.232.198.0/23 32123 -209.232.200.0/21 7018 -209.232.208.0/21 7018 -209.232.216.0/22 7018 -209.232.220.0/23 396505 -209.232.222.0/23 7018 -209.232.224.0/21 7018 -209.232.232.0/22 7018 -209.232.236.0/24 2386 -209.232.237.0/24 7018 -209.232.238.0/23 7018 -209.232.240.0/20 7018 -209.233.0.0/22 7018 -209.233.4.0/23 7018 -209.233.6.0/23 22352 -209.233.8.0/21 7018 -209.233.16.0/20 7018 -209.233.32.0/19 7018 -209.233.64.0/18 7018 -209.233.128.0/19 7018 -209.233.160.0/21 7018 -209.233.168.0/22 7018 -209.233.172.0/23 7018 -209.233.174.0/24 62733 -209.233.175.0/24 7018 -209.233.176.0/24 7018 -209.233.177.0/24 14110 -209.233.178.0/23 7018 -209.233.180.0/22 7018 -209.233.184.0/21 7018 -209.233.192.0/19 7018 -209.233.224.0/20 7018 -209.233.240.0/21 7018 -209.233.248.0/22 7018 -209.233.252.0/24 54645 -209.233.253.0/24 7018 -209.233.254.0/23 7018 -209.234.0.0/18 15227 -209.234.64.0/24 5056 -209.234.65.0/24 62773 -209.234.66.0/23 62773 -209.234.68.0/22 46627 -209.234.72.0/21 46627 -209.234.80.0/20 46627 -209.234.96.0/21 19355 -209.234.104.0/24 19355 -209.234.105.0/24 63316 -209.234.106.0/23 19355 -209.234.108.0/22 19355 -209.234.112.0/22 32252 -209.234.116.0/23 32252 -209.234.128.0/20 3549 -209.234.144.0/21 3549 -209.234.152.0/24 33134 -209.234.153.0/24 3549 -209.234.154.0/23 3549 -209.234.156.0/24 394975 -209.234.157.0/24 3549 -209.234.158.0/23 3549 -209.234.160.0/22 3549 -209.234.164.0/23 3549 -209.234.166.0/24 3356 -209.234.167.0/24 3549 -209.234.168.0/21 3549 -209.234.176.0/22 3549 -209.234.180.0/23 3549 -209.234.182.0/24 3549 -209.234.183.0/24 19881 -209.234.184.0/21 3549 -209.234.192.0/22 3549 -209.234.196.0/24 26421 -209.234.197.0/24 3549 -209.234.198.0/24 3549 -209.234.199.0/24 29985 -209.234.200.0/23 3549 -209.234.202.0/24 394816 -209.234.203.0/24 3549 -209.234.204.0/24 3549 -209.234.205.0/24 22241 -209.234.206.0/23 26421 -209.234.208.0/23 26421 -209.234.210.0/23 3549 -209.234.212.0/22 3549 -209.234.216.0/23 26421 -209.234.218.0/24 26302 -209.234.219.0/24 3549 -209.234.220.0/23 3549 -209.234.222.0/24 26421 -209.234.223.0/24 3549 -209.234.224.0/21 395162 -209.234.232.0/24 7334 -209.234.234.0/23 7334 -209.234.236.0/22 7334 -209.234.240.0/24 12989 -209.234.241.0/24 26769 -209.234.242.0/24 12989 -209.234.243.0/24 26769 -209.234.244.0/24 12989 -209.234.245.0/24 26769 -209.234.246.0/23 12989 -209.234.248.0/24 33438 -209.234.249.0/24 12989 -209.234.250.0/23 26769 -209.234.252.0/24 20940 -209.234.253.0/24 12989 -209.234.254.0/23 12989 -209.235.0.0/19 7381 -209.235.32.0/19 14135 -209.235.64.0/19 14135 -209.235.96.0/20 7381 -209.235.112.0/20 14135 -209.235.128.0/20 14116 -209.235.144.0/21 30447 -209.235.152.0/22 30447 -209.235.156.0/23 30447 -209.235.158.0/23 852 -209.235.160.0/20 20448 -209.235.176.0/21 20448 -209.235.184.0/22 20448 -209.235.188.0/23 53567 -209.235.190.0/23 20448 -209.235.192.0/18 13649 -209.236.0.0/21 10278 -209.236.8.0/21 30689 -209.236.16.0/20 30689 -209.236.32.0/21 30689 -209.236.40.0/24 10292 -209.236.41.0/24 30689 -209.236.42.0/24 30689 -209.236.43.0/24 10292 -209.236.44.0/22 46408 -209.236.48.0/22 22933 -209.236.52.0/23 30689 -209.236.54.0/23 11139 -209.236.56.0/22 30689 -209.236.60.0/22 11139 -209.236.64.0/20 29854 -209.236.80.0/20 32798 -209.236.96.0/21 13649 -209.236.104.0/22 13649 -209.236.108.0/23 13649 -209.236.110.0/24 63088 -209.236.111.0/24 13649 -209.236.112.0/20 393398 -209.236.128.0/21 7029 -209.236.136.0/22 7029 -209.236.140.0/23 7029 -209.236.142.0/24 7029 -209.236.143.0/24 36469 -209.236.144.0/20 7029 -209.236.160.0/19 7029 -209.236.192.0/19 7029 -209.236.224.0/20 21554 -209.236.255.0/24 7029 -209.237.0.0/18 17403 -209.237.64.0/23 25899 -209.237.66.0/23 25961 -209.237.68.0/23 25899 -209.237.70.0/23 55246 -209.237.72.0/23 11404 -209.237.74.0/24 55246 -209.237.75.0/24 25899 -209.237.76.0/24 26565 -209.237.77.0/24 393368 -209.237.78.0/23 55246 -209.237.80.0/22 13692 -209.237.84.0/22 397422 -209.237.88.0/24 55246 -209.237.89.0/24 397422 -209.237.90.0/23 397422 -209.237.92.0/22 397422 -209.237.96.0/19 16904 -209.237.134.0/24 55002 -209.237.135.0/24 19871 -209.237.142.0/24 55002 -209.237.150.0/23 55002 -209.237.152.0/24 19871 -209.237.155.0/24 55002 -209.237.160.0/23 19871 -209.237.162.0/24 55002 -209.237.163.0/24 19871 -209.237.164.0/24 19871 -209.237.165.0/24 55002 -209.237.166.0/23 19871 -209.237.168.0/23 19871 -209.237.170.0/23 62645 -209.237.176.0/20 55002 -209.237.192.0/21 13414 -209.237.200.0/23 13414 -209.237.204.0/22 13414 -209.237.208.0/21 13414 -209.237.216.0/22 13414 -209.237.221.0/24 13414 -209.237.222.0/24 13414 -209.237.224.0/19 23342 -209.238.0.0/16 2914 -209.239.0.0/19 7794 -209.239.32.0/19 11022 -209.239.64.0/23 19036 -209.239.66.0/23 11919 -209.239.68.0/22 19036 -209.239.72.0/22 19036 -209.239.76.0/23 19036 -209.239.78.0/24 11919 -209.239.79.0/24 19036 -209.239.80.0/23 19036 -209.239.82.0/24 27822 -209.239.83.0/24 19036 -209.239.84.0/24 19036 -209.239.85.0/24 27822 -209.239.86.0/24 27822 -209.239.87.0/24 11919 -209.239.88.0/24 19036 -209.239.89.0/24 27822 -209.239.90.0/23 27822 -209.239.92.0/23 27822 -209.239.94.0/23 19036 -209.239.96.0/23 19008 -209.239.98.0/24 19008 -209.239.99.0/24 22675 -209.239.100.0/22 19008 -209.239.104.0/21 19008 -209.239.112.0/20 30083 -209.239.128.0/19 20197 -209.239.160.0/20 29789 -209.239.176.0/21 21627 -209.239.184.0/22 21627 -209.239.188.0/23 21627 -209.239.190.0/24 32117 -209.239.191.0/24 21627 -209.239.192.0/19 36094 -209.239.224.0/20 5033 -209.239.248.0/21 22911 -209.240.0.0/22 10469 -209.240.4.0/23 10469 -209.240.6.0/24 10469 -209.240.8.0/22 10469 -209.240.18.0/24 10469 -209.240.24.0/24 10469 -209.240.26.0/23 10469 -209.240.28.0/24 10469 -209.240.32.0/20 32020 -209.240.48.0/20 36515 -209.240.64.0/19 7753 -209.240.96.0/20 40244 -209.240.112.0/20 11727 -209.240.128.0/19 10732 -209.240.160.0/19 11238 -209.240.192.0/19 8075 -209.240.224.0/19 12042 -209.241.0.0/18 3356 -209.241.64.0/19 3356 -209.241.96.0/20 3356 -209.241.112.0/22 3356 -209.241.116.0/23 3356 -209.241.118.0/23 21889 -209.241.120.0/21 3356 -209.241.128.0/20 3356 -209.241.144.0/23 3356 -209.241.146.0/24 3356 -209.241.147.0/24 26556 -209.241.148.0/22 3356 -209.241.152.0/21 3356 -209.241.160.0/19 3356 -209.241.192.0/19 3356 -209.241.224.0/21 3356 -209.241.232.0/24 21889 -209.241.233.0/24 3356 -209.241.234.0/23 3356 -209.241.236.0/22 3356 -209.241.240.0/20 3356 -209.242.0.0/19 10692 -209.242.32.0/21 10692 -209.242.40.0/22 10692 -209.242.44.0/23 10692 -209.242.46.0/24 7029 -209.242.47.0/24 10692 -209.242.48.0/21 10692 -209.242.56.0/23 10692 -209.242.58.0/24 13950 -209.242.59.0/24 10692 -209.242.60.0/22 10692 -209.242.64.0/22 62 -209.242.68.0/24 62 -209.242.69.0/24 26646 -209.242.70.0/24 26646 -209.242.71.0/24 62 -209.242.72.0/22 62 -209.242.76.0/24 62 -209.242.77.0/24 26646 -209.242.78.0/23 62 -209.242.80.0/21 62 -209.242.88.0/22 62 -209.242.92.0/23 62 -209.242.94.0/24 36328 -209.242.95.0/24 62 -209.242.96.0/19 62 -209.242.128.0/20 22773 -209.242.144.0/23 22773 -209.242.146.0/24 22773 -209.242.147.0/24 22687 -209.242.148.0/22 22773 -209.242.152.0/21 22773 -209.242.160.0/20 22773 -209.242.176.0/20 21976 -209.242.192.0/21 132335 -209.242.200.0/21 203999 -209.242.208.0/22 24768 -209.242.212.0/22 203999 -209.242.216.0/21 24768 -209.242.224.0/20 26785 -209.242.240.0/23 27021 -209.242.242.0/23 19825 -209.242.245.0/24 132428 -209.242.246.0/23 132428 -209.242.248.0/24 27021 -209.242.251.0/24 27021 -209.243.0.0/21 63414 -209.243.8.0/22 63414 -209.243.12.0/22 12042 -209.243.16.0/21 63414 -209.243.24.0/22 12042 -209.243.28.0/23 14090 -209.243.30.0/24 12042 -209.243.32.0/20 21767 -209.243.48.0/21 14182 -209.243.56.0/22 14182 -209.243.97.0/24 14375 -209.243.101.0/24 14375 -209.243.102.0/24 14375 -209.243.104.0/24 14375 -209.243.107.0/24 14375 -209.243.128.0/24 2386 -209.243.168.0/24 2828 -209.244.0.0/17 3356 -209.244.128.0/20 3356 -209.244.144.0/21 3356 -209.244.152.0/23 14454 -209.244.154.0/23 3356 -209.244.156.0/22 3356 -209.244.160.0/19 3356 -209.244.192.0/18 3356 -209.245.0.0/20 3356 -209.245.16.0/24 3356 -209.245.17.0/24 10753 -209.245.18.0/24 10753 -209.245.19.0/24 3356 -209.245.20.0/22 3356 -209.245.24.0/21 3356 -209.245.32.0/19 3356 -209.245.64.0/20 3356 -209.245.80.0/21 3356 -209.245.88.0/24 3356 -209.245.89.0/24 13720 -209.245.90.0/23 3356 -209.245.92.0/22 3356 -209.245.96.0/19 3356 -209.245.128.0/18 3356 -209.245.192.0/20 3356 -209.245.208.0/22 3356 -209.245.212.0/24 3356 -209.245.213.0/24 23089 -209.245.214.0/23 3356 -209.245.216.0/21 3356 -209.245.224.0/19 3356 -209.246.0.0/19 3356 -209.246.32.0/20 3356 -209.246.48.0/21 3356 -209.246.56.0/22 3356 -209.246.60.0/23 3257 -209.246.62.0/24 3257 -209.246.63.0/24 3356 -209.246.64.0/19 3356 -209.246.96.0/20 3356 -209.246.112.0/21 3356 -209.246.120.0/22 3356 -209.246.124.0/23 3356 -209.246.126.0/24 3356 -209.246.127.0/24 7029 -209.246.128.0/21 3356 -209.246.136.0/22 3356 -209.246.140.0/23 3356 -209.246.142.0/23 20473 -209.246.144.0/20 3356 -209.246.160.0/19 3356 -209.246.192.0/18 3356 -209.247.0.0/19 3356 -209.247.32.0/24 11853 -209.247.33.0/24 3356 -209.247.34.0/23 3356 -209.247.36.0/22 3356 -209.247.40.0/21 3356 -209.247.48.0/20 3356 -209.247.64.0/20 3356 -209.247.80.0/23 3356 -209.247.82.0/24 3356 -209.247.83.0/24 20473 -209.247.84.0/23 3356 -209.247.86.0/23 22681 -209.247.88.0/21 3356 -209.247.96.0/21 3356 -209.247.104.0/22 3356 -209.247.108.0/23 3356 -209.247.110.0/24 32208 -209.247.111.0/24 3356 -209.247.112.0/22 3356 -209.247.116.0/23 3356 -209.247.118.0/23 32208 -209.247.120.0/21 3356 -209.247.128.0/17 3356 -209.248.0.0/18 7029 -209.248.64.0/18 15221 -209.248.128.0/17 7029 -209.249.0.0/24 6461 -209.249.1.0/24 394331 -209.249.2.0/23 6461 -209.249.4.0/24 25938 -209.249.5.0/24 6461 -209.249.6.0/23 6461 -209.249.8.0/24 23514 -209.249.9.0/24 6461 -209.249.10.0/23 6461 -209.249.12.0/24 40551 -209.249.13.0/24 6461 -209.249.14.0/24 6461 -209.249.15.0/24 63442 -209.249.16.0/20 6461 -209.249.32.0/24 53799 -209.249.33.0/24 6461 -209.249.34.0/23 6461 -209.249.36.0/23 6461 -209.249.38.0/24 23514 -209.249.39.0/24 6461 -209.249.40.0/21 6461 -209.249.48.0/24 54463 -209.249.49.0/24 6461 -209.249.50.0/24 36557 -209.249.51.0/24 6461 -209.249.52.0/22 6461 -209.249.56.0/24 6461 -209.249.57.0/24 395279 -209.249.58.0/23 6461 -209.249.60.0/23 6461 -209.249.62.0/24 6461 -209.249.63.0/24 14984 -209.249.64.0/22 6461 -209.249.68.0/23 6461 -209.249.70.0/24 54262 -209.249.71.0/24 6461 -209.249.72.0/22 6461 -209.249.76.0/24 53793 -209.249.77.0/24 15229 -209.249.78.0/23 6461 -209.249.80.0/24 6461 -209.249.81.0/24 53857 -209.249.82.0/24 53857 -209.249.83.0/24 6461 -209.249.84.0/22 6461 -209.249.88.0/22 6461 -209.249.92.0/24 6461 -209.249.93.0/24 62665 -209.249.94.0/23 6461 -209.249.96.0/21 6461 -209.249.104.0/23 6461 -209.249.106.0/24 6461 -209.249.107.0/24 32948 -209.249.108.0/22 6461 -209.249.112.0/24 23235 -209.249.113.0/24 22866 -209.249.114.0/23 6461 -209.249.116.0/22 6461 -209.249.120.0/21 6461 -209.249.128.0/24 6461 -209.249.129.0/24 53350 -209.249.130.0/24 53348 -209.249.131.0/24 6461 -209.249.132.0/22 6461 -209.249.136.0/23 6461 -209.249.138.0/24 6461 -209.249.139.0/24 15202 -209.249.140.0/24 33011 -209.249.141.0/24 6461 -209.249.142.0/23 6461 -209.249.144.0/24 23482 -209.249.145.0/24 33064 -209.249.146.0/24 33064 -209.249.147.0/24 394868 -209.249.148.0/22 6461 -209.249.152.0/21 6461 -209.249.160.0/21 6461 -209.249.168.0/23 6461 -209.249.170.0/23 30627 -209.249.172.0/23 30627 -209.249.174.0/23 6461 -209.249.176.0/21 6461 -209.249.184.0/23 6461 -209.249.186.0/24 23286 -209.249.187.0/24 6461 -209.249.188.0/24 6461 -209.249.189.0/24 63305 -209.249.190.0/24 40827 -209.249.191.0/24 6461 -209.249.192.0/22 6461 -209.249.196.0/24 6461 -209.249.197.0/24 394589 -209.249.198.0/23 6461 -209.249.200.0/24 21691 -209.249.201.0/24 6461 -209.249.202.0/23 6461 -209.249.204.0/22 6461 -209.249.208.0/22 6461 -209.249.212.0/24 36246 -209.249.213.0/24 6461 -209.249.214.0/23 6461 -209.249.216.0/22 6461 -209.249.220.0/23 6461 -209.249.222.0/24 63199 -209.249.223.0/24 6461 -209.249.224.0/22 6461 -209.249.228.0/23 6461 -209.249.230.0/24 6461 -209.249.231.0/24 53888 -209.249.232.0/24 35999 -209.249.233.0/24 53400 -209.249.234.0/24 6461 -209.249.235.0/24 53400 -209.249.236.0/22 6461 -209.249.240.0/21 6461 -209.249.248.0/23 6461 -209.249.250.0/24 394770 -209.249.251.0/24 15229 -209.249.252.0/24 54761 -209.249.253.0/24 6461 -209.249.254.0/23 6461 -209.250.0.0/19 10489 -209.250.32.0/19 10397 -209.250.64.0/21 13768 -209.250.72.0/22 13768 -209.250.76.0/23 13768 -209.250.78.0/24 11403 -209.250.81.0/24 11403 -209.250.82.0/24 11403 -209.250.96.0/19 4565 -209.250.128.0/19 11342 -209.250.160.0/22 395050 -209.250.170.0/24 395050 -209.250.173.0/24 395050 -209.250.174.0/24 395050 -209.250.176.0/24 395050 -209.250.178.0/24 395050 -209.250.190.0/23 395050 -209.250.192.0/19 22192 -209.250.224.0/19 20473 -209.251.2.0/23 11036 -209.251.4.0/22 11036 -209.251.10.0/23 11036 -209.251.12.0/22 11036 -209.251.16.0/21 64267 -209.251.26.0/23 35017 -209.251.28.0/22 396139 -209.251.32.0/20 11023 -209.251.48.0/23 19693 -209.251.50.0/24 14453 -209.251.51.0/24 19693 -209.251.52.0/22 19693 -209.251.56.0/22 14453 -209.251.60.0/23 19693 -209.251.62.0/24 19693 -209.251.63.0/24 14453 -209.251.64.0/24 10266 -209.251.75.0/24 10266 -209.251.79.0/24 10266 -209.251.80.0/20 13337 -209.251.96.0/19 10685 -209.251.128.0/22 10674 -209.251.132.0/23 10674 -209.251.134.0/24 397760 -209.251.135.0/24 10674 -209.251.136.0/22 10674 -209.251.140.0/24 10674 -209.251.141.0/24 32750 -209.251.142.0/24 10674 -209.251.143.0/24 32759 -209.251.144.0/24 10674 -209.251.145.0/24 397002 -209.251.146.0/23 10674 -209.251.148.0/22 10674 -209.251.152.0/22 10674 -209.251.156.0/24 30418 -209.251.157.0/24 10674 -209.251.158.0/23 10674 -209.251.176.0/20 11303 -209.251.196.0/23 207009 -209.251.202.0/23 4393 -209.251.208.0/23 4393 -209.251.224.0/21 10930 -209.251.232.0/24 29755 -209.251.233.0/24 396260 -209.251.234.0/23 36086 -209.251.236.0/24 17227 -209.251.237.0/24 17229 -209.251.238.0/23 395178 -209.251.240.0/24 4578 -209.251.241.0/24 395342 -209.251.242.0/24 33275 -209.251.244.0/24 16695 -209.251.245.0/24 64241 -209.251.246.0/23 40108 -209.251.248.0/24 394207 -209.251.249.0/24 53889 -209.251.251.0/24 26054 -209.251.252.0/23 8681 -209.251.254.0/24 36478 -209.251.255.0/24 394978 -209.252.0.0/17 7029 -209.252.128.0/19 7029 -209.252.160.0/21 7029 -209.252.168.0/21 393238 -209.252.176.0/22 7029 -209.252.180.0/23 7029 -209.252.182.0/24 7029 -209.252.183.0/24 18799 -209.252.184.0/21 7029 -209.252.192.0/19 7029 -209.252.224.0/21 7029 -209.252.232.0/23 7029 -209.252.234.0/24 40026 -209.252.235.0/24 7029 -209.252.236.0/22 7029 -209.252.240.0/20 7029 -209.253.0.0/16 7029 -209.254.0.0/16 7029 -209.255.0.0/18 7029 -209.255.64.0/20 7029 -209.255.80.0/24 14100 -209.255.81.0/24 7029 -209.255.82.0/23 7029 -209.255.84.0/22 7029 -209.255.88.0/21 7029 -209.255.96.0/19 7029 -209.255.128.0/18 7029 -209.255.192.0/21 7029 -209.255.200.0/22 7029 -209.255.204.0/23 7029 -209.255.206.0/24 7029 -209.255.207.0/24 393344 -209.255.208.0/20 7029 -209.255.224.0/22 7029 -209.255.228.0/23 7029 -209.255.230.0/23 19917 -209.255.232.0/21 7029 -209.255.240.0/22 7029 -209.255.244.0/22 36471 -209.255.248.0/21 7029 -210.0.0.0/24 7474 -210.0.32.0/19 17839 -210.0.64.0/22 2764 -210.0.68.0/23 2764 -210.0.70.0/24 2764 -210.0.71.0/24 23857 -210.0.72.0/21 2764 -210.0.80.0/22 2764 -210.0.84.0/23 2764 -210.0.86.0/24 2764 -210.0.87.0/24 23857 -210.0.88.0/22 2764 -210.0.92.0/23 2764 -210.0.94.0/24 2764 -210.0.95.0/24 23857 -210.0.96.0/20 2764 -210.0.112.0/21 63850 -210.0.120.0/21 2764 -210.0.128.0/18 9304 -210.0.192.0/19 9304 -210.0.224.0/24 9304 -210.0.225.0/24 133929 -210.0.226.0/23 9304 -210.0.228.0/22 9304 -210.0.232.0/23 9304 -210.0.234.0/23 10032 -210.0.236.0/22 9304 -210.0.240.0/20 9304 -210.1.0.0/23 4750 -210.1.2.0/24 7630 -210.1.3.0/24 4750 -210.1.4.0/22 4750 -210.1.8.0/21 4750 -210.1.16.0/22 4750 -210.1.20.0/23 4750 -210.1.22.0/24 7630 -210.1.23.0/24 4750 -210.1.24.0/22 4750 -210.1.28.0/23 4750 -210.1.30.0/24 55476 -210.1.31.0/24 9891 -210.1.32.0/22 4750 -210.1.36.0/23 4750 -210.1.38.0/24 24465 -210.1.39.0/24 4750 -210.1.40.0/21 4750 -210.1.48.0/23 4750 -210.1.50.0/24 4750 -210.1.51.0/24 9891 -210.1.52.0/24 9891 -210.1.53.0/24 24465 -210.1.54.0/23 4750 -210.1.56.0/23 4750 -210.1.58.0/23 9891 -210.1.60.0/23 9891 -210.1.62.0/23 4750 -210.1.64.0/21 9299 -210.1.72.0/22 9299 -210.1.76.0/24 9299 -210.1.77.0/24 24456 -210.1.78.0/23 9299 -210.1.80.0/20 9299 -210.1.144.0/20 9615 -210.1.160.0/19 7524 -210.1.192.0/19 18390 -210.1.224.0/22 45785 -210.1.228.0/23 45785 -210.1.230.0/24 45785 -210.1.236.0/22 2907 -210.1.240.0/20 38067 -210.2.4.0/24 24406 -210.2.16.0/24 56082 -210.2.17.0/24 9535 -210.2.18.0/24 9535 -210.2.21.0/24 56082 -210.2.22.0/23 24155 -210.2.24.0/22 4847 -210.2.28.0/22 4837 -210.2.32.0/19 10164 -210.2.64.0/24 24085 -210.2.66.0/24 24085 -210.2.68.0/23 24085 -210.2.72.0/23 24085 -210.2.79.0/24 24085 -210.2.84.0/24 24085 -210.2.86.0/23 24085 -210.2.88.0/22 24085 -210.2.92.0/23 24085 -210.2.95.0/24 24085 -210.2.96.0/22 24085 -210.2.100.0/24 24085 -210.2.104.0/23 24085 -210.2.106.0/24 24085 -210.2.108.0/24 24085 -210.2.111.0/24 24085 -210.2.112.0/23 24085 -210.2.120.0/23 24085 -210.2.125.0/24 24085 -210.2.127.0/24 24085 -210.2.128.0/23 23966 -210.2.130.0/24 18212 -210.2.131.0/24 23966 -210.2.132.0/22 23966 -210.2.136.0/24 136974 -210.2.137.0/24 23966 -210.2.138.0/23 23966 -210.2.140.0/22 23966 -210.2.144.0/20 23966 -210.2.160.0/19 23966 -210.2.192.0/18 24276 -210.3.0.0/16 9304 -210.4.0.0/22 6648 -210.4.4.0/23 6648 -210.4.6.0/24 45782 -210.4.7.0/24 6648 -210.4.8.0/21 6648 -210.4.16.0/20 6648 -210.4.32.0/19 6648 -210.4.64.0/20 24122 -210.4.80.0/21 38062 -210.4.88.0/21 38676 -210.4.96.0/19 17639 -210.4.128.0/21 4618 -210.4.136.0/23 4618 -210.4.138.0/24 4618 -210.4.139.0/24 24083 -210.4.140.0/22 4618 -210.4.144.0/23 4618 -210.4.146.0/24 137392 -210.4.147.0/24 4618 -210.4.148.0/22 4618 -210.4.152.0/21 4618 -210.4.160.0/19 45675 -210.4.192.0/20 13445 -210.4.216.0/21 38661 -210.4.224.0/20 9648 -210.4.240.0/20 10010 -210.5.0.0/19 10212 -210.5.32.0/21 17498 -210.5.40.0/21 45352 -210.5.48.0/21 56030 -210.5.56.0/24 4809 -210.5.57.0/24 63527 -210.5.58.0/23 4809 -210.5.60.0/22 4809 -210.5.64.0/19 9299 -210.5.96.0/20 9299 -210.5.112.0/21 9299 -210.5.120.0/24 9299 -210.5.121.0/24 17811 -210.5.122.0/23 9299 -210.5.124.0/22 9299 -210.5.128.0/20 4837 -210.5.144.0/20 4812 -210.5.160.0/19 9381 -210.5.192.0/20 12684 -210.5.208.0/22 12684 -210.5.224.0/20 12684 -210.5.240.0/22 12684 -210.5.244.0/23 12684 -210.5.246.0/24 60725 -210.5.248.0/21 12684 -210.6.0.0/17 9269 -210.6.128.0/19 9269 -210.6.160.0/24 9269 -210.6.161.0/24 10103 -210.6.162.0/23 9269 -210.6.164.0/22 9269 -210.6.168.0/21 9269 -210.6.176.0/20 9269 -210.6.192.0/18 9269 -210.7.0.0/19 4638 -210.7.32.0/21 38022 -210.7.40.0/22 38022 -210.7.44.0/23 38022 -210.7.46.0/23 38299 -210.7.48.0/21 17890 -210.7.64.0/19 17820 -210.8.0.0/19 2764 -210.8.32.0/23 2764 -210.8.34.0/23 23669 -210.8.36.0/22 2764 -210.8.40.0/21 2764 -210.8.48.0/20 2764 -210.8.64.0/23 2764 -210.8.66.0/24 9313 -210.8.67.0/24 2764 -210.8.68.0/24 2764 -210.8.69.0/24 7600 -210.8.70.0/23 2764 -210.8.72.0/22 2764 -210.8.76.0/23 2764 -210.8.78.0/24 9313 -210.8.79.0/24 2764 -210.8.80.0/20 2764 -210.8.96.0/20 2764 -210.8.112.0/24 2764 -210.8.113.0/24 23669 -210.8.114.0/23 2764 -210.8.116.0/22 2764 -210.8.120.0/22 2764 -210.8.124.0/22 9313 -210.8.128.0/20 2764 -210.8.144.0/21 2764 -210.8.152.0/22 2764 -210.8.156.0/23 2764 -210.8.158.0/24 7703 -210.8.159.0/24 2764 -210.8.160.0/21 2764 -210.8.168.0/24 7600 -210.8.169.0/24 2764 -210.8.170.0/23 2764 -210.8.172.0/22 2764 -210.8.176.0/20 2764 -210.8.192.0/21 2764 -210.8.200.0/22 2764 -210.8.204.0/23 17535 -210.8.206.0/23 2764 -210.8.208.0/20 2764 -210.8.224.0/19 2764 -210.9.0.0/19 2764 -210.9.32.0/23 2764 -210.9.34.0/24 9268 -210.9.35.0/24 2764 -210.9.36.0/22 2764 -210.9.40.0/22 2764 -210.9.44.0/24 7545 -210.9.45.0/24 2764 -210.9.46.0/23 2764 -210.9.48.0/20 2764 -210.9.64.0/22 2764 -210.9.68.0/24 4739 -210.9.69.0/24 2764 -210.9.70.0/23 2764 -210.9.72.0/21 2764 -210.9.80.0/20 2764 -210.9.96.0/20 2764 -210.9.112.0/21 2764 -210.9.120.0/22 9313 -210.9.124.0/22 2764 -210.9.128.0/23 45922 -210.9.130.0/23 2764 -210.9.132.0/23 7600 -210.9.134.0/24 38195 -210.9.135.0/24 2764 -210.9.136.0/21 18111 -210.9.144.0/21 2764 -210.9.152.0/23 23727 -210.9.154.0/23 2764 -210.9.156.0/22 2764 -210.9.160.0/20 2764 -210.9.176.0/21 2764 -210.9.184.0/22 2764 -210.9.188.0/24 2764 -210.9.189.0/24 23727 -210.9.190.0/23 2764 -210.9.192.0/23 2764 -210.9.194.0/23 38611 -210.9.196.0/22 2764 -210.9.200.0/21 2764 -210.9.208.0/20 2764 -210.9.224.0/22 2764 -210.9.228.0/23 2764 -210.9.230.0/23 18111 -210.9.232.0/24 38333 -210.9.233.0/24 17734 -210.9.234.0/24 38333 -210.9.235.0/24 7579 -210.9.236.0/22 2764 -210.9.240.0/20 2764 -210.10.0.0/20 4817 -210.10.16.0/20 2764 -210.10.32.0/20 2764 -210.10.48.0/23 2764 -210.10.50.0/23 17734 -210.10.52.0/22 2764 -210.10.56.0/21 2764 -210.10.64.0/22 4817 -210.10.68.0/22 2764 -210.10.72.0/22 2764 -210.10.76.0/22 4817 -210.10.80.0/20 2764 -210.10.96.0/19 2764 -210.10.128.0/17 2764 -210.11.0.0/19 2764 -210.11.32.0/21 2764 -210.11.40.0/22 2764 -210.11.44.0/22 17535 -210.11.48.0/22 2764 -210.11.52.0/22 7600 -210.11.56.0/21 2764 -210.11.64.0/18 2764 -210.11.128.0/20 2764 -210.11.144.0/22 18111 -210.11.148.0/22 2764 -210.11.152.0/21 2764 -210.11.160.0/19 2764 -210.11.192.0/18 2764 -210.12.0.0/19 4808 -210.12.32.0/20 4808 -210.12.48.0/23 4808 -210.12.50.0/24 4837 -210.12.51.0/24 4808 -210.12.52.0/22 4808 -210.12.56.0/21 4808 -210.12.64.0/18 4808 -210.12.128.0/17 4808 -210.13.0.0/18 4808 -210.13.64.0/18 9929 -210.13.192.0/21 9929 -210.13.200.0/22 9929 -210.13.204.0/24 9929 -210.13.207.0/24 9929 -210.13.208.0/20 9929 -210.13.224.0/24 9929 -210.13.232.0/24 9929 -210.13.236.0/23 9929 -210.13.238.0/24 9929 -210.13.240.0/20 4808 -210.14.0.0/20 9299 -210.14.16.0/22 9299 -210.14.20.0/24 9299 -210.14.21.0/24 38483 -210.14.22.0/23 9299 -210.14.24.0/21 9299 -210.14.32.0/20 18114 -210.14.48.0/20 23624 -210.14.64.0/21 17621 -210.14.72.0/22 17775 -210.14.76.0/22 4812 -210.14.80.0/24 17775 -210.14.81.0/24 17621 -210.14.82.0/23 17775 -210.14.84.0/22 17775 -210.14.88.0/22 17775 -210.14.92.0/23 17775 -210.14.94.0/23 17621 -210.14.96.0/20 58952 -210.14.112.0/21 38358 -210.14.120.0/23 38358 -210.14.122.0/24 4847 -210.14.123.0/24 38358 -210.14.124.0/23 38358 -210.14.126.0/24 4847 -210.14.127.0/24 38358 -210.14.128.0/19 56019 -210.14.192.0/23 9929 -210.14.240.0/21 9929 -210.15.0.0/17 9929 -210.15.192.0/21 4739 -210.15.200.0/22 4739 -210.15.204.0/22 4802 -210.15.208.0/20 4802 -210.15.224.0/19 4802 -210.16.0.0/23 4759 -210.16.4.0/22 4759 -210.16.14.0/23 4759 -210.16.16.0/24 4759 -210.16.21.0/24 4759 -210.16.31.0/24 4759 -210.16.32.0/24 4759 -210.16.37.0/24 4759 -210.16.40.0/24 4759 -210.16.47.0/24 4759 -210.16.62.0/23 4759 -210.16.68.0/22 7477 -210.16.72.0/22 139327 -210.16.76.0/22 59164 -210.16.80.0/22 133275 -210.16.84.0/23 134877 -210.16.86.0/24 138782 -210.16.87.0/24 134877 -210.16.88.0/22 134863 -210.16.92.0/23 138311 -210.16.94.0/24 135744 -210.16.95.0/24 138311 -210.16.96.0/22 26658 -210.16.100.0/24 40676 -210.16.101.0/24 23033 -210.16.102.0/24 40676 -210.16.103.0/24 133296 -210.16.104.0/22 31972 -210.16.112.0/22 18196 -210.16.116.0/22 134979 -210.16.120.0/23 36351 -210.16.122.0/24 18013 -210.16.123.0/24 40676 -210.16.124.0/22 133847 -210.16.180.0/24 4812 -210.16.185.0/24 4812 -210.16.186.0/23 4812 -210.16.188.0/22 4812 -210.16.192.0/18 38661 -210.17.0.0/17 9924 -210.17.128.0/24 9381 -210.17.129.0/24 2706 -210.17.130.0/24 9381 -210.17.131.0/24 2706 -210.17.132.0/24 9381 -210.17.133.0/24 2706 -210.17.134.0/24 2706 -210.17.135.0/24 9381 -210.17.136.0/21 2706 -210.17.144.0/22 2706 -210.17.148.0/24 9381 -210.17.149.0/24 2706 -210.17.150.0/24 2706 -210.17.151.0/24 9381 -210.17.152.0/23 2706 -210.17.154.0/24 9381 -210.17.155.0/24 2706 -210.17.156.0/22 2706 -210.17.160.0/24 2706 -210.17.162.0/23 2706 -210.17.164.0/24 9381 -210.17.165.0/24 2706 -210.17.166.0/23 9381 -210.17.168.0/22 2706 -210.17.172.0/24 9381 -210.17.173.0/24 2706 -210.17.174.0/23 9381 -210.17.176.0/22 2706 -210.17.180.0/23 9381 -210.17.182.0/23 2706 -210.17.184.0/23 2706 -210.17.186.0/23 9381 -210.17.188.0/22 2706 -210.17.192.0/22 9381 -210.17.196.0/23 2706 -210.17.198.0/23 9381 -210.17.200.0/21 9381 -210.17.208.0/21 2706 -210.17.216.0/22 9381 -210.17.220.0/22 2706 -210.17.224.0/22 2706 -210.17.228.0/24 9381 -210.17.229.0/24 2706 -210.17.230.0/24 9381 -210.17.231.0/24 2706 -210.17.232.0/21 2706 -210.17.240.0/23 2706 -210.17.242.0/24 2706 -210.17.243.0/24 9381 -210.17.244.0/24 2706 -210.17.245.0/24 9381 -210.17.246.0/24 9381 -210.17.247.0/24 2706 -210.17.248.0/21 2706 -210.18.1.0/24 9583 -210.18.3.0/24 9583 -210.18.4.0/23 9583 -210.18.7.0/24 9583 -210.18.8.0/22 9583 -210.18.14.0/23 9583 -210.18.16.0/23 9583 -210.18.18.0/24 38720 -210.18.19.0/24 9583 -210.18.20.0/22 9583 -210.18.24.0/21 9583 -210.18.32.0/22 9583 -210.18.37.0/24 9583 -210.18.38.0/23 9583 -210.18.40.0/21 9583 -210.18.48.0/20 9583 -210.18.64.0/22 9583 -210.18.68.0/23 9583 -210.18.71.0/24 9583 -210.18.72.0/21 9583 -210.18.80.0/20 9583 -210.18.96.0/21 9583 -210.18.104.0/23 9583 -210.18.107.0/24 9583 -210.18.108.0/22 9583 -210.18.112.0/20 9583 -210.18.128.0/19 17488 -210.18.160.0/20 17488 -210.18.176.0/21 17488 -210.18.184.0/22 17488 -210.18.189.0/24 17488 -210.18.190.0/23 17488 -210.18.192.0/19 9738 -210.18.224.0/20 9738 -210.18.240.0/21 9738 -210.18.248.0/22 9738 -210.18.252.0/23 9738 -210.18.254.0/24 9738 -210.19.0.0/16 9930 -210.20.0.0/16 9824 -210.21.0.0/17 17622 -210.21.191.0/24 9929 -210.21.192.0/18 17623 -210.22.0.0/21 17623 -210.22.8.0/22 17623 -210.22.12.0/23 17623 -210.22.14.0/24 17623 -210.22.15.0/24 135061 -210.22.16.0/20 17623 -210.22.32.0/22 17623 -210.22.48.0/20 4837 -210.22.64.0/19 17621 -210.22.96.0/20 17621 -210.22.112.0/22 17621 -210.22.116.0/24 9929 -210.22.117.0/24 17621 -210.22.118.0/23 17621 -210.22.120.0/21 17621 -210.22.128.0/18 17621 -210.22.192.0/20 9929 -210.22.208.0/21 9929 -210.22.216.0/22 9929 -210.22.220.0/22 17621 -210.22.224.0/20 9929 -210.22.240.0/21 17621 -210.22.248.0/22 17621 -210.22.252.0/22 9929 -210.23.0.0/19 4844 -210.23.68.0/24 23651 -210.23.80.0/20 7131 -210.23.96.0/19 9299 -210.23.128.0/19 7543 -210.23.160.0/19 9299 -210.23.192.0/18 9299 -210.24.0.0/21 4628 -210.24.8.0/24 4637 -210.24.24.0/21 4628 -210.24.32.0/20 4628 -210.24.49.0/24 4628 -210.24.50.0/24 4637 -210.24.52.0/24 4628 -210.24.54.0/24 4628 -210.24.56.0/21 4628 -210.24.64.0/24 4628 -210.24.82.0/23 4628 -210.24.86.0/24 4628 -210.24.96.0/23 4628 -210.24.98.0/24 4628 -210.24.99.0/24 136464 -210.24.100.0/22 136552 -210.24.104.0/21 4628 -210.24.112.0/20 4628 -210.24.128.0/23 4628 -210.24.130.0/24 4637 -210.24.133.0/24 4628 -210.24.135.0/24 4628 -210.24.136.0/23 4628 -210.24.138.0/24 4628 -210.24.139.0/24 4637 -210.24.140.0/24 4628 -210.24.142.0/24 4628 -210.24.145.0/24 4628 -210.24.146.0/24 4628 -210.24.149.0/24 4628 -210.24.150.0/24 4628 -210.24.156.0/24 4628 -210.24.157.0/24 4637 -210.24.160.0/24 4628 -210.24.162.0/23 4628 -210.24.165.0/24 4628 -210.24.166.0/24 4637 -210.24.167.0/24 4628 -210.24.168.0/24 4637 -210.24.170.0/23 4628 -210.24.172.0/24 4628 -210.24.174.0/24 4628 -210.24.185.0/24 4628 -210.24.187.0/24 4628 -210.24.189.0/24 4628 -210.24.190.0/24 4628 -210.24.192.0/24 4628 -210.24.196.0/24 4637 -210.24.197.0/24 4628 -210.24.198.0/24 4628 -210.24.202.0/23 4628 -210.24.205.0/24 4628 -210.24.208.0/22 4628 -210.24.212.0/24 4628 -210.24.214.0/24 4628 -210.24.216.0/24 4628 -210.24.218.0/23 4628 -210.24.224.0/24 4628 -210.24.226.0/24 4628 -210.24.228.0/23 4628 -210.24.230.0/24 4628 -210.24.232.0/24 4628 -210.24.234.0/24 4628 -210.24.236.0/23 45166 -210.24.238.0/24 4628 -210.24.240.0/24 4628 -210.24.242.0/24 4628 -210.24.244.0/23 4628 -210.24.246.0/24 4628 -210.25.0.0/17 9306 -210.25.128.0/19 4538 -210.25.160.0/20 4538 -210.25.176.0/21 4538 -210.25.184.0/23 4538 -210.25.186.0/24 4538 -210.25.187.0/24 23911 -210.25.188.0/24 4538 -210.25.189.0/24 23911 -210.25.190.0/23 4538 -210.25.192.0/18 4538 -210.26.0.0/15 4538 -210.28.0.0/18 4538 -210.28.64.0/20 24361 -210.28.80.0/20 4538 -210.28.96.0/19 4538 -210.28.128.0/17 4538 -210.29.0.0/17 4538 -210.29.128.0/19 4538 -210.29.160.0/21 4538 -210.29.168.0/24 4538 -210.29.169.0/24 24361 -210.29.170.0/23 24361 -210.29.172.0/22 24361 -210.29.176.0/20 4538 -210.29.192.0/18 4538 -210.30.0.0/15 4538 -210.32.0.0/23 24367 -210.32.2.0/24 4538 -210.32.3.0/24 24367 -210.32.4.0/24 24367 -210.32.5.0/24 4538 -210.32.6.0/23 24367 -210.32.8.0/24 24367 -210.32.9.0/24 4538 -210.32.10.0/24 4538 -210.32.11.0/24 24367 -210.32.12.0/22 24367 -210.32.16.0/20 4538 -210.32.32.0/19 4538 -210.32.64.0/18 4538 -210.32.128.0/21 24367 -210.32.136.0/24 24367 -210.32.137.0/24 4538 -210.32.138.0/23 24367 -210.32.140.0/22 24367 -210.32.144.0/20 24367 -210.32.160.0/21 24367 -210.32.168.0/22 24367 -210.32.172.0/23 24367 -210.32.174.0/24 24367 -210.32.175.0/24 4538 -210.32.176.0/20 24367 -210.32.192.0/18 4538 -210.33.0.0/16 4538 -210.34.0.0/16 4538 -210.35.0.0/18 4538 -210.35.64.0/24 4538 -210.35.65.0/24 24364 -210.35.66.0/24 4538 -210.35.67.0/24 24364 -210.35.68.0/22 4538 -210.35.72.0/21 4538 -210.35.80.0/20 4538 -210.35.96.0/22 24364 -210.35.100.0/22 4538 -210.35.104.0/21 4538 -210.35.112.0/20 4538 -210.35.128.0/17 4538 -210.36.0.0/14 4538 -210.40.0.0/17 4538 -210.40.128.0/18 4538 -210.40.192.0/20 138378 -210.40.208.0/20 4538 -210.40.224.0/24 4538 -210.40.225.0/24 138378 -210.40.226.0/23 138378 -210.40.228.0/22 138378 -210.40.232.0/21 138378 -210.40.240.0/21 138378 -210.40.248.0/24 4538 -210.40.249.0/24 138378 -210.40.250.0/23 138378 -210.40.252.0/22 138378 -210.41.0.0/18 4538 -210.41.64.0/19 4538 -210.41.96.0/22 24355 -210.41.100.0/23 24355 -210.41.102.0/24 4538 -210.41.103.0/24 24355 -210.41.104.0/21 24355 -210.41.112.0/20 4538 -210.41.128.0/17 4538 -210.42.0.0/15 4538 -210.44.0.0/14 4538 -210.48.0.0/17 4770 -210.48.128.0/21 10001 -210.48.136.0/21 4809 -210.48.144.0/20 17971 -210.48.174.0/23 9503 -210.48.190.0/24 23655 -210.48.191.0/24 55793 -210.48.192.0/20 4818 -210.48.208.0/21 38084 -210.48.216.0/21 45344 -210.48.224.0/19 2514 -210.49.0.0/16 4804 -210.50.0.0/21 9714 -210.50.8.0/21 9443 -210.50.16.0/20 9443 -210.50.32.0/19 9443 -210.50.64.0/18 9443 -210.50.128.0/18 9443 -210.50.192.0/21 9714 -210.50.200.0/21 9443 -210.50.208.0/20 9443 -210.50.224.0/19 9443 -210.51.0.0/20 9929 -210.51.16.0/22 9929 -210.51.20.0/24 17621 -210.51.21.0/24 9929 -210.51.22.0/24 9929 -210.51.23.0/24 17621 -210.51.24.0/22 17621 -210.51.28.0/24 138421 -210.51.29.0/24 9929 -210.51.30.0/23 9929 -210.51.32.0/24 17621 -210.51.33.0/24 9929 -210.51.34.0/23 17621 -210.51.36.0/23 17621 -210.51.38.0/24 17621 -210.51.39.0/24 9929 -210.51.40.0/24 138421 -210.51.41.0/24 17621 -210.51.42.0/24 17621 -210.51.43.0/24 9929 -210.51.44.0/24 17621 -210.51.45.0/24 9929 -210.51.46.0/24 17621 -210.51.47.0/24 138421 -210.51.48.0/24 9929 -210.51.49.0/24 17621 -210.51.50.0/23 17621 -210.51.52.0/24 17621 -210.51.53.0/24 138421 -210.51.54.0/23 17621 -210.51.56.0/21 17621 -210.51.64.0/18 9929 -210.51.128.0/18 9929 -210.51.192.0/20 9929 -210.51.208.0/22 9929 -210.51.212.0/22 4837 -210.51.216.0/21 9929 -210.51.224.0/19 9929 -210.52.0.0/17 9929 -210.52.128.0/18 9929 -210.52.192.0/20 9929 -210.52.208.0/22 9929 -210.52.212.0/22 17621 -210.52.216.0/22 17621 -210.52.220.0/24 17621 -210.52.221.0/24 9929 -210.52.222.0/23 17621 -210.52.224.0/24 17621 -210.52.225.0/24 9929 -210.52.226.0/23 9929 -210.52.228.0/22 9929 -210.52.232.0/21 9929 -210.52.240.0/20 9929 -210.53.0.0/16 9929 -210.54.0.0/21 4648 -210.54.8.0/23 55746 -210.54.10.0/23 4648 -210.54.14.0/24 4648 -210.54.32.0/21 4771 -210.54.46.0/23 4648 -210.54.48.0/21 4648 -210.54.56.0/21 9790 -210.54.88.0/23 4771 -210.54.90.0/24 4771 -210.54.118.0/24 4771 -210.54.120.0/24 4771 -210.54.133.0/24 4648 -210.54.134.0/23 4648 -210.54.141.0/24 2570 -210.54.144.0/24 4648 -210.54.146.0/24 20940 -210.54.147.0/24 133420 -210.54.148.0/22 9790 -210.54.152.0/21 133124 -210.54.213.0/24 4771 -210.54.218.0/24 4648 -210.54.230.0/23 4771 -210.54.237.0/24 4648 -210.54.238.0/23 4771 -210.54.242.0/24 4771 -210.54.245.0/24 4648 -210.54.249.0/24 4771 -210.55.0.0/23 4648 -210.55.2.0/24 38881 -210.55.3.0/24 4648 -210.55.4.0/24 56030 -210.55.5.0/24 10022 -210.55.6.0/24 4648 -210.55.7.0/24 56030 -210.55.8.0/23 4648 -210.55.11.0/24 2570 -210.55.12.0/22 9790 -210.55.16.0/21 4648 -210.55.29.0/24 4648 -210.55.30.0/23 56030 -210.55.56.0/24 4648 -210.55.57.0/24 4771 -210.55.64.0/22 4771 -210.55.69.0/24 4771 -210.55.72.0/23 133420 -210.55.76.0/22 133420 -210.55.80.0/21 133124 -210.55.88.0/23 133420 -210.55.96.0/22 4648 -210.55.104.0/22 9889 -210.55.108.0/24 4771 -210.55.109.0/24 4648 -210.55.130.0/24 4648 -210.55.132.0/22 4648 -210.55.139.0/24 4648 -210.55.142.0/24 38881 -210.55.143.0/24 4648 -210.55.144.0/22 4648 -210.55.148.0/24 4648 -210.55.168.0/24 4648 -210.55.176.0/24 2570 -210.55.180.0/24 4648 -210.55.181.0/24 20940 -210.55.184.0/23 2570 -210.55.186.0/24 25605 -210.55.198.0/24 4771 -210.55.200.0/24 25605 -210.55.201.0/24 4648 -210.55.203.0/24 4648 -210.55.204.0/24 4648 -210.55.206.0/23 23655 -210.55.211.0/24 4771 -210.55.213.0/24 133420 -210.55.214.0/24 9889 -210.55.216.0/23 2570 -210.55.218.0/23 133420 -210.55.225.0/24 4648 -210.55.227.0/24 133420 -210.55.228.0/24 133420 -210.55.230.0/24 9889 -210.55.232.0/24 4771 -210.55.240.0/24 4771 -210.55.245.0/24 4648 -210.55.246.0/23 4648 -210.55.253.0/24 4648 -210.55.254.0/24 4648 -210.56.1.0/24 7590 -210.56.2.0/23 7590 -210.56.4.0/22 7590 -210.56.8.0/21 7590 -210.56.16.0/20 7590 -210.56.32.0/20 4770 -210.56.48.0/20 38197 -210.56.64.0/20 9723 -210.56.80.0/23 7600 -210.56.82.0/24 7600 -210.56.83.0/24 56037 -210.56.84.0/22 7600 -210.56.88.0/22 7600 -210.56.92.0/23 7600 -210.56.94.0/24 56037 -210.56.95.0/24 7600 -210.56.96.0/19 17917 -210.56.128.0/20 18224 -210.56.152.0/21 9723 -210.56.160.0/19 17955 -210.56.192.0/19 4808 -210.56.224.0/19 9224 -210.57.0.0/22 4637 -210.57.8.0/22 4637 -210.57.12.0/23 4637 -210.57.14.0/24 4637 -210.57.15.0/24 26344 -210.57.17.0/24 4637 -210.57.18.0/23 4637 -210.57.21.0/24 14969 -210.57.22.0/24 4637 -210.57.25.0/24 4637 -210.57.26.0/23 4637 -210.57.28.0/22 4637 -210.57.35.0/24 4637 -210.57.36.0/24 4637 -210.57.38.0/23 4637 -210.57.42.0/24 24456 -210.57.43.0/24 4637 -210.57.44.0/24 4637 -210.57.48.0/24 4637 -210.57.50.0/23 4637 -210.57.52.0/23 4637 -210.57.55.0/24 30103 -210.57.57.0/24 4637 -210.57.58.0/23 4637 -210.57.60.0/23 4637 -210.57.62.0/24 4637 -210.57.80.0/23 4637 -210.57.82.0/24 4637 -210.57.88.0/21 4637 -210.57.96.0/19 4637 -210.57.193.0/24 4637 -210.57.198.0/24 4637 -210.57.200.0/22 4637 -210.57.204.0/23 4637 -210.57.208.0/20 38142 -210.57.224.0/22 9762 -210.57.228.0/23 9762 -210.57.230.0/24 7562 -210.57.231.0/24 9762 -210.57.232.0/21 9762 -210.57.240.0/21 9569 -210.57.248.0/22 9569 -210.57.252.0/23 9569 -210.57.254.0/24 9569 -210.57.255.0/24 7562 -210.58.0.0/18 7482 -210.58.64.0/20 7482 -210.58.80.0/21 7482 -210.58.88.0/24 17709 -210.58.89.0/24 7482 -210.58.90.0/23 7482 -210.58.92.0/22 7482 -210.58.96.0/23 7482 -210.58.98.0/23 9311 -210.58.100.0/24 7482 -210.58.101.0/24 9311 -210.58.102.0/24 9311 -210.58.103.0/24 7482 -210.58.104.0/22 17709 -210.58.108.0/22 7482 -210.58.112.0/20 17709 -210.58.128.0/19 131627 -210.58.160.0/19 7482 -210.58.192.0/18 7482 -210.59.0.0/17 1659 -210.59.128.0/17 3462 -210.60.0.0/17 1659 -210.60.128.0/20 1659 -210.60.144.0/22 1659 -210.60.148.0/24 1659 -210.60.149.0/24 38844 -210.60.150.0/24 38844 -210.60.151.0/24 1659 -210.60.152.0/21 1659 -210.60.160.0/19 1659 -210.60.192.0/18 1659 -210.61.0.0/17 3462 -210.61.128.0/18 3462 -210.61.192.0/19 3462 -210.61.224.0/20 3462 -210.61.240.0/21 3462 -210.61.248.0/23 20940 -210.61.250.0/23 3462 -210.61.252.0/22 3462 -210.62.0.0/18 4662 -210.62.64.0/19 1659 -210.62.176.0/20 9676 -210.62.192.0/19 4662 -210.62.224.0/20 1659 -210.62.240.0/21 1659 -210.62.250.0/24 131661 -210.63.0.0/18 4783 -210.63.96.0/21 4781 -210.63.128.0/18 9924 -210.63.192.0/21 24154 -210.63.200.0/24 17709 -210.63.201.0/24 24154 -210.63.202.0/24 17709 -210.63.203.0/24 24154 -210.63.204.0/24 17709 -210.63.205.0/24 24154 -210.63.206.0/23 24154 -210.63.208.0/22 17709 -210.63.212.0/24 17709 -210.63.213.0/24 24154 -210.63.214.0/23 17709 -210.63.216.0/24 17709 -210.63.217.0/24 24154 -210.63.218.0/24 24154 -210.63.219.0/24 17709 -210.63.220.0/23 24154 -210.63.224.0/23 24155 -210.63.226.0/24 24155 -210.63.229.0/24 24155 -210.63.232.0/22 17709 -210.63.239.0/24 9311 -210.63.240.0/24 9311 -210.63.253.0/24 17709 -210.64.0.0/16 4780 -210.65.0.0/16 3462 -210.66.0.0/16 4780 -210.67.0.0/18 4783 -210.67.64.0/19 17420 -210.67.96.0/20 9244 -210.67.112.0/20 4783 -210.67.128.0/20 4783 -210.67.144.0/20 9924 -210.67.160.0/19 4662 -210.67.192.0/19 9924 -210.67.248.0/21 1659 -210.68.0.0/16 4780 -210.69.0.0/16 4782 -210.70.0.0/16 1659 -210.71.0.0/17 1659 -210.71.128.0/17 3462 -210.72.0.0/17 7497 -210.72.128.0/19 7497 -210.72.160.0/19 4808 -210.72.192.0/19 4808 -210.72.224.0/21 9814 -210.72.232.0/22 9814 -210.72.236.0/24 9814 -210.72.237.0/24 18241 -210.72.238.0/23 9814 -210.72.240.0/21 9814 -210.73.0.0/18 7497 -210.73.64.0/19 18239 -210.73.96.0/20 7640 -210.73.112.0/20 4808 -210.73.128.0/19 4134 -210.73.160.0/19 45090 -210.73.192.0/22 4812 -210.73.196.0/22 4134 -210.73.200.0/22 4812 -210.73.204.0/22 17775 -210.73.208.0/20 4808 -210.73.224.0/19 4808 -210.74.0.0/22 17964 -210.74.4.0/22 4847 -210.74.8.0/21 4847 -210.74.16.0/20 4847 -210.74.35.0/24 4847 -210.74.36.0/23 4847 -210.74.38.0/24 4847 -210.74.40.0/22 58866 -210.74.44.0/23 58866 -210.74.64.0/23 4808 -210.74.107.0/24 4808 -210.74.108.0/23 4808 -210.74.128.0/19 9929 -210.74.160.0/19 4808 -210.74.224.0/19 4812 -210.75.0.0/18 4134 -210.75.88.0/24 137767 -210.75.96.0/19 4808 -210.75.192.0/19 18239 -210.75.224.0/19 7497 -210.76.0.0/19 24137 -210.76.32.0/19 4837 -210.76.64.0/19 4134 -210.76.96.0/19 17964 -210.76.160.0/19 134762 -210.76.192.0/19 7497 -210.77.0.0/19 7497 -210.77.32.0/19 4808 -210.77.64.0/19 7497 -210.77.96.0/19 9391 -210.77.128.0/22 4835 -210.77.132.0/24 4835 -210.77.133.0/24 9308 -210.77.134.0/23 4835 -210.77.136.0/21 4835 -210.77.144.0/20 4835 -210.77.160.0/20 4134 -210.77.176.0/22 18241 -210.77.180.0/24 18241 -210.77.181.0/24 4808 -210.77.183.0/24 18241 -210.77.184.0/24 4808 -210.77.189.0/24 18241 -210.77.190.0/23 18241 -210.77.192.0/18 4808 -210.78.48.0/20 4808 -210.78.128.0/24 23724 -210.78.129.0/24 4808 -210.78.130.0/23 4808 -210.78.132.0/24 4808 -210.78.133.0/24 23724 -210.78.134.0/23 4847 -210.78.136.0/21 23724 -210.78.144.0/23 23724 -210.78.146.0/24 4808 -210.78.147.0/24 23724 -210.78.148.0/22 4808 -210.78.152.0/21 4808 -210.78.168.0/24 9394 -210.79.0.0/20 17506 -210.79.16.0/20 45411 -210.79.32.0/20 59108 -210.79.50.0/24 45459 -210.79.52.0/22 45459 -210.79.57.0/24 56289 -210.79.60.0/23 138698 -210.79.64.0/18 17816 -210.79.192.0/20 18282 -210.79.208.0/20 17910 -210.79.224.0/19 9389 -210.80.0.0/18 703 -210.80.64.0/19 703 -210.80.96.0/20 703 -210.80.112.0/22 703 -210.80.116.0/24 45996 -210.80.117.0/24 703 -210.80.118.0/23 703 -210.80.120.0/21 703 -210.80.128.0/21 703 -210.80.136.0/22 703 -210.80.140.0/24 703 -210.80.141.0/24 56080 -210.80.142.0/23 703 -210.80.144.0/20 703 -210.80.160.0/21 703 -210.80.168.0/24 394260 -210.80.169.0/24 703 -210.80.170.0/23 703 -210.80.172.0/22 703 -210.80.176.0/20 703 -210.80.192.0/22 703 -210.80.196.0/23 703 -210.80.198.0/24 18692 -210.80.199.0/24 703 -210.80.200.0/21 703 -210.80.208.0/20 703 -210.80.224.0/19 703 -210.81.0.0/16 703 -210.82.0.0/17 4808 -210.82.128.0/17 9929 -210.83.0.0/17 9929 -210.83.128.0/18 9929 -210.83.192.0/19 9929 -210.83.224.0/19 17623 -210.84.0.0/18 4739 -210.84.64.0/18 703 -210.84.128.0/17 703 -210.85.0.0/16 7482 -210.86.0.0/22 4771 -210.86.19.0/24 4648 -210.86.26.0/24 4771 -210.86.28.0/23 4771 -210.86.104.0/21 4771 -210.86.128.0/21 7470 -210.86.136.0/24 7470 -210.86.137.0/24 24214 -210.86.138.0/24 7470 -210.86.139.0/24 9287 -210.86.140.0/22 7470 -210.86.144.0/21 7470 -210.86.152.0/24 134095 -210.86.153.0/24 7470 -210.86.154.0/23 7470 -210.86.156.0/22 7470 -210.86.160.0/20 7470 -210.86.176.0/21 9287 -210.86.184.0/21 7470 -210.86.192.0/22 7470 -210.86.196.0/24 7470 -210.86.197.0/24 24060 -210.86.198.0/23 7470 -210.86.200.0/22 7470 -210.86.204.0/24 45958 -210.86.205.0/24 136182 -210.86.206.0/24 136457 -210.86.207.0/24 7470 -210.86.208.0/21 7470 -210.86.216.0/24 138344 -210.86.217.0/24 7470 -210.86.218.0/23 7470 -210.86.220.0/24 133907 -210.86.221.0/24 38326 -210.86.222.0/24 136182 -210.86.223.0/24 7470 -210.86.224.0/20 24173 -210.86.240.0/20 9443 -210.87.0.0/20 2764 -210.87.16.0/23 2764 -210.87.18.0/24 2764 -210.87.19.0/24 18117 -210.87.20.0/23 2764 -210.87.22.0/23 7545 -210.87.24.0/24 2764 -210.87.25.0/24 18117 -210.87.26.0/23 2764 -210.87.28.0/22 2764 -210.87.32.0/24 18117 -210.87.33.0/24 2764 -210.87.34.0/23 2764 -210.87.36.0/22 2764 -210.87.40.0/21 2764 -210.87.48.0/20 2764 -210.87.128.0/18 23771 -210.87.208.0/20 18328 -210.87.224.0/20 18260 -210.87.240.0/20 4515 -210.88.0.0/17 2687 -210.88.128.0/18 2687 -210.88.192.0/19 2687 -210.89.0.0/19 4672 -210.89.32.0/23 23682 -210.89.36.0/24 23682 -210.89.38.0/24 23682 -210.89.40.0/23 23682 -210.89.42.0/24 23682 -210.89.44.0/24 23682 -210.89.46.0/24 23682 -210.89.48.0/23 23682 -210.89.51.0/24 23682 -210.89.52.0/24 23682 -210.89.56.0/24 23682 -210.89.58.0/24 23682 -210.89.61.0/24 23682 -210.89.62.0/23 23682 -210.89.64.0/19 9229 -210.89.128.0/21 2764 -210.89.136.0/22 23857 -210.89.140.0/23 23857 -210.89.142.0/24 23857 -210.89.143.0/24 2764 -210.89.144.0/21 2764 -210.89.152.0/22 23857 -210.89.156.0/23 23857 -210.89.158.0/23 2764 -210.89.160.0/20 23576 -210.89.176.0/21 23576 -210.89.184.0/22 23576 -210.89.188.0/22 135354 -210.89.192.0/18 7671 -210.90.0.0/24 9647 -210.90.1.0/24 4766 -210.90.2.0/23 4766 -210.90.4.0/23 4766 -210.90.6.0/24 45400 -210.90.7.0/24 4766 -210.90.8.0/24 17841 -210.90.9.0/24 4766 -210.90.10.0/23 4766 -210.90.12.0/23 4766 -210.90.14.0/24 4766 -210.90.15.0/24 17841 -210.90.16.0/21 4766 -210.90.24.0/22 4766 -210.90.28.0/24 23568 -210.90.29.0/24 4766 -210.90.30.0/23 4766 -210.90.32.0/21 4766 -210.90.40.0/22 4766 -210.90.44.0/24 17600 -210.90.45.0/24 4766 -210.90.46.0/23 17574 -210.90.48.0/20 4766 -210.90.64.0/20 4766 -210.90.80.0/24 45400 -210.90.81.0/24 4766 -210.90.82.0/23 4766 -210.90.84.0/22 4766 -210.90.88.0/21 4766 -210.90.96.0/19 4766 -210.90.128.0/23 4766 -210.90.130.0/24 45400 -210.90.131.0/24 4766 -210.90.132.0/22 4766 -210.90.136.0/21 4766 -210.90.144.0/20 4766 -210.90.160.0/20 4766 -210.90.176.0/21 4766 -210.90.184.0/22 4766 -210.90.188.0/23 4766 -210.90.190.0/24 4766 -210.90.191.0/24 45400 -210.90.192.0/22 4766 -210.90.196.0/23 4766 -210.90.198.0/24 4766 -210.90.199.0/24 45400 -210.90.200.0/21 4766 -210.90.208.0/22 4766 -210.90.212.0/23 4766 -210.90.214.0/24 45400 -210.90.215.0/24 4766 -210.90.216.0/21 4766 -210.90.224.0/19 4766 -210.91.0.0/23 46012 -210.91.2.0/23 4766 -210.91.4.0/23 4766 -210.91.6.0/24 17880 -210.91.7.0/24 4766 -210.91.8.0/21 4766 -210.91.16.0/23 23580 -210.91.18.0/23 4766 -210.91.20.0/23 9321 -210.91.22.0/23 4766 -210.91.24.0/21 4766 -210.91.32.0/19 4766 -210.91.64.0/18 4766 -210.91.128.0/17 4766 -210.92.0.0/24 9532 -210.92.1.0/24 4766 -210.92.2.0/24 17873 -210.92.3.0/24 9532 -210.92.4.0/24 9532 -210.92.5.0/24 4766 -210.92.6.0/24 9532 -210.92.7.0/24 4766 -210.92.8.0/23 17581 -210.92.10.0/24 9532 -210.92.11.0/24 4766 -210.92.12.0/24 9532 -210.92.13.0/24 4766 -210.92.14.0/23 4766 -210.92.16.0/24 10192 -210.92.17.0/24 4766 -210.92.18.0/24 45382 -210.92.19.0/24 4766 -210.92.20.0/22 4766 -210.92.24.0/21 4766 -210.92.32.0/23 4766 -210.92.34.0/24 4766 -210.92.35.0/24 38420 -210.92.36.0/22 4766 -210.92.40.0/21 4766 -210.92.48.0/23 4766 -210.92.50.0/24 4766 -210.92.51.0/24 4790 -210.92.52.0/22 4766 -210.92.56.0/22 4766 -210.92.60.0/24 17863 -210.92.61.0/24 4766 -210.92.62.0/23 4766 -210.92.64.0/21 3786 -210.92.72.0/22 3786 -210.92.76.0/23 3786 -210.92.78.0/24 9318 -210.92.79.0/24 45993 -210.92.80.0/20 3786 -210.92.96.0/19 3786 -210.92.128.0/18 3786 -210.92.192.0/22 3786 -210.92.196.0/23 3786 -210.92.198.0/24 9530 -210.92.199.0/24 3786 -210.92.200.0/24 10185 -210.92.201.0/24 3786 -210.92.202.0/23 3786 -210.92.204.0/22 3786 -210.92.208.0/21 3786 -210.92.216.0/23 3786 -210.92.218.0/23 46002 -210.92.220.0/24 3786 -210.92.221.0/24 9530 -210.92.222.0/23 3786 -210.92.224.0/19 3786 -210.93.0.0/22 9318 -210.93.4.0/23 9318 -210.93.6.0/23 4766 -210.93.8.0/21 4766 -210.93.16.0/22 4766 -210.93.20.0/23 4766 -210.93.22.0/23 10156 -210.93.24.0/21 4766 -210.93.32.0/22 18331 -210.93.36.0/22 4766 -210.93.40.0/22 4766 -210.93.44.0/23 4766 -210.93.46.0/23 23971 -210.93.48.0/21 23668 -210.93.56.0/22 23668 -210.93.60.0/23 23668 -210.93.62.0/23 10198 -210.93.64.0/22 4766 -210.93.68.0/22 9867 -210.93.72.0/22 18026 -210.93.76.0/23 55621 -210.93.78.0/24 4766 -210.93.79.0/24 55621 -210.93.80.0/23 3786 -210.93.82.0/24 4766 -210.93.83.0/24 9782 -210.93.84.0/22 9782 -210.93.88.0/22 4766 -210.93.92.0/22 3786 -210.93.96.0/20 18038 -210.93.112.0/21 3786 -210.93.120.0/23 4766 -210.93.122.0/24 55622 -210.93.123.0/24 4766 -210.93.124.0/22 4766 -210.93.128.0/23 4766 -210.93.130.0/24 4766 -210.93.131.0/24 9842 -210.93.132.0/22 9842 -210.93.136.0/21 9842 -210.93.144.0/20 9842 -210.93.160.0/19 9842 -210.93.192.0/20 10171 -210.93.208.0/21 10171 -210.93.216.0/22 10171 -210.93.220.0/24 204527 -210.93.221.0/24 10171 -210.93.222.0/23 10171 -210.93.224.0/19 3786 -210.94.0.0/19 9318 -210.94.32.0/19 6619 -210.94.64.0/18 9318 -210.94.128.0/19 3786 -210.94.160.0/19 9323 -210.94.192.0/19 9323 -210.94.224.0/19 17843 -210.95.0.0/21 4766 -210.95.8.0/22 4766 -210.95.12.0/24 45400 -210.95.13.0/24 4766 -210.95.14.0/23 4766 -210.95.16.0/23 4766 -210.95.18.0/24 4766 -210.95.19.0/24 45400 -210.95.20.0/22 4766 -210.95.24.0/21 4766 -210.95.32.0/19 4766 -210.95.64.0/20 4766 -210.95.80.0/21 4766 -210.95.88.0/24 10043 -210.95.89.0/24 4766 -210.95.90.0/23 4766 -210.95.92.0/22 4766 -210.95.96.0/19 4766 -210.95.128.0/21 4766 -210.95.136.0/22 10176 -210.95.140.0/22 4766 -210.95.144.0/20 4766 -210.95.160.0/24 4766 -210.95.161.0/24 45400 -210.95.162.0/23 4766 -210.95.164.0/22 55625 -210.95.168.0/21 4766 -210.95.176.0/22 4766 -210.95.180.0/24 4766 -210.95.181.0/24 17841 -210.95.182.0/23 4766 -210.95.184.0/24 10176 -210.95.185.0/24 4766 -210.95.186.0/24 4766 -210.95.187.0/24 17841 -210.95.188.0/22 4766 -210.95.192.0/22 4766 -210.95.196.0/24 9647 -210.95.197.0/24 4766 -210.95.198.0/24 4766 -210.95.199.0/24 9707 -210.95.200.0/21 4766 -210.95.208.0/21 4766 -210.95.216.0/23 4766 -210.95.218.0/24 4766 -210.95.219.0/24 17841 -210.95.220.0/22 4766 -210.95.224.0/19 4766 -210.96.0.0/20 4766 -210.96.16.0/23 4766 -210.96.18.0/24 4766 -210.96.19.0/24 17569 -210.96.20.0/22 4766 -210.96.24.0/22 4766 -210.96.28.0/23 4766 -210.96.30.0/24 4766 -210.96.31.0/24 45400 -210.96.32.0/19 4766 -210.96.64.0/22 4766 -210.96.68.0/24 9647 -210.96.69.0/24 4766 -210.96.70.0/23 4766 -210.96.72.0/21 4766 -210.96.80.0/22 4766 -210.96.84.0/24 45400 -210.96.85.0/24 4766 -210.96.86.0/23 4766 -210.96.88.0/21 4766 -210.96.96.0/20 4766 -210.96.112.0/23 4766 -210.96.114.0/24 4766 -210.96.115.0/24 45400 -210.96.116.0/22 4766 -210.96.120.0/23 45400 -210.96.122.0/23 4766 -210.96.124.0/22 4766 -210.96.128.0/22 3786 -210.96.132.0/24 3786 -210.96.133.0/24 17590 -210.96.134.0/23 3786 -210.96.136.0/21 3786 -210.96.144.0/20 3786 -210.96.160.0/23 3786 -210.96.162.0/23 9704 -210.96.164.0/24 9704 -210.96.165.0/24 17601 -210.96.166.0/24 17601 -210.96.167.0/24 3786 -210.96.168.0/21 3786 -210.96.176.0/20 3786 -210.96.192.0/20 3786 -210.96.208.0/22 3786 -210.96.212.0/23 3786 -210.96.214.0/24 10179 -210.96.215.0/24 3786 -210.96.216.0/21 3786 -210.96.224.0/22 3786 -210.96.228.0/23 3786 -210.96.230.0/24 45376 -210.96.231.0/24 3786 -210.96.232.0/23 3786 -210.96.234.0/24 3786 -210.96.235.0/24 10179 -210.96.236.0/22 3786 -210.96.240.0/20 3786 -210.97.0.0/22 4766 -210.97.4.0/23 4766 -210.97.6.0/24 45400 -210.97.7.0/24 4766 -210.97.8.0/21 4766 -210.97.16.0/21 4766 -210.97.24.0/23 4766 -210.97.26.0/24 4766 -210.97.27.0/24 17841 -210.97.28.0/22 4766 -210.97.32.0/23 4766 -210.97.34.0/24 4766 -210.97.35.0/24 45400 -210.97.36.0/24 4766 -210.97.37.0/24 17844 -210.97.38.0/23 4766 -210.97.40.0/22 4766 -210.97.44.0/23 55625 -210.97.46.0/24 55625 -210.97.47.0/24 4766 -210.97.48.0/20 4766 -210.97.64.0/24 4766 -210.97.65.0/24 45400 -210.97.66.0/23 4766 -210.97.68.0/23 9647 -210.97.70.0/23 4766 -210.97.72.0/21 4766 -210.97.80.0/20 4766 -210.97.96.0/20 4766 -210.97.112.0/22 4766 -210.97.116.0/23 4766 -210.97.118.0/24 4766 -210.97.119.0/24 45400 -210.97.120.0/21 4766 -210.97.128.0/22 4766 -210.97.132.0/24 9318 -210.97.133.0/24 4766 -210.97.134.0/23 4766 -210.97.136.0/22 3786 -210.97.140.0/24 4766 -210.97.141.0/24 3786 -210.97.142.0/23 4766 -210.97.144.0/21 4766 -210.97.152.0/23 4766 -210.97.154.0/24 4766 -210.97.155.0/24 18343 -210.97.156.0/22 18343 -210.97.160.0/19 17608 -210.97.192.0/22 3786 -210.97.224.0/20 9765 -210.97.240.0/20 38086 -210.98.0.0/20 1237 -210.98.16.0/21 10070 -210.98.24.0/23 1237 -210.98.26.0/24 1237 -210.98.27.0/24 9275 -210.98.28.0/22 1237 -210.98.32.0/21 9708 -210.98.40.0/22 10045 -210.98.44.0/22 1237 -210.98.48.0/20 1237 -210.98.64.0/18 9848 -210.98.128.0/20 3786 -210.98.144.0/21 3786 -210.98.152.0/22 3786 -210.98.156.0/23 3786 -210.98.158.0/24 3786 -210.98.159.0/24 9578 -210.98.160.0/20 3786 -210.98.176.0/21 3786 -210.98.184.0/22 3786 -210.98.188.0/23 3786 -210.98.190.0/24 9856 -210.98.191.0/24 3786 -210.98.224.0/19 3786 -210.99.0.0/22 4766 -210.99.4.0/23 4766 -210.99.6.0/24 4766 -210.99.7.0/24 10185 -210.99.8.0/23 4766 -210.99.10.0/24 45400 -210.99.11.0/24 4766 -210.99.12.0/22 4766 -210.99.16.0/21 4766 -210.99.24.0/23 17841 -210.99.26.0/23 4766 -210.99.28.0/22 4766 -210.99.32.0/20 4766 -210.99.48.0/21 17841 -210.99.56.0/22 4766 -210.99.60.0/23 4766 -210.99.62.0/24 17841 -210.99.63.0/24 4766 -210.99.64.0/22 4766 -210.99.68.0/23 4766 -210.99.70.0/24 45400 -210.99.71.0/24 4766 -210.99.72.0/21 4766 -210.99.80.0/24 4766 -210.99.81.0/24 17600 -210.99.82.0/23 4766 -210.99.84.0/22 4766 -210.99.88.0/23 4766 -210.99.90.0/24 4766 -210.99.91.0/24 45400 -210.99.92.0/22 4766 -210.99.96.0/22 4766 -210.99.100.0/23 4766 -210.99.102.0/24 45400 -210.99.103.0/24 4766 -210.99.104.0/21 4766 -210.99.112.0/20 4766 -210.99.128.0/20 4766 -210.99.144.0/21 4766 -210.99.152.0/22 4766 -210.99.156.0/24 9696 -210.99.157.0/24 4766 -210.99.158.0/23 45400 -210.99.160.0/21 4766 -210.99.168.0/24 45400 -210.99.169.0/24 4766 -210.99.170.0/24 9647 -210.99.171.0/24 9696 -210.99.172.0/24 45400 -210.99.173.0/24 4766 -210.99.174.0/23 4766 -210.99.176.0/21 4766 -210.99.184.0/23 4766 -210.99.186.0/24 4766 -210.99.187.0/24 9647 -210.99.188.0/24 4766 -210.99.189.0/24 9647 -210.99.190.0/23 4766 -210.99.192.0/21 4766 -210.99.200.0/23 4766 -210.99.202.0/24 9696 -210.99.203.0/24 4766 -210.99.204.0/22 4766 -210.99.208.0/20 4766 -210.99.224.0/20 4766 -210.99.240.0/21 4766 -210.99.248.0/24 17841 -210.99.249.0/24 4766 -210.99.250.0/23 4766 -210.99.252.0/22 4766 -210.100.128.0/21 4766 -210.100.136.0/24 45400 -210.100.137.0/24 4766 -210.100.138.0/23 4766 -210.100.140.0/22 4766 -210.100.144.0/20 4766 -210.100.160.0/21 4766 -210.100.168.0/24 45400 -210.100.169.0/24 4766 -210.100.170.0/23 4766 -210.100.172.0/22 4766 -210.100.176.0/22 4766 -210.100.180.0/23 4766 -210.100.182.0/24 4766 -210.100.183.0/24 45400 -210.100.184.0/21 4766 -210.100.192.0/21 4766 -210.100.200.0/22 4766 -210.100.204.0/24 9528 -210.100.205.0/24 4766 -210.100.206.0/23 4766 -210.100.208.0/22 4766 -210.100.212.0/23 10176 -210.100.214.0/24 45400 -210.100.215.0/24 4766 -210.100.216.0/21 4766 -210.100.224.0/19 4766 -210.101.60.0/24 131098 -210.101.61.0/24 131099 -210.101.62.0/24 131100 -210.101.64.0/18 4766 -210.101.128.0/19 3786 -210.101.160.0/20 3786 -210.101.176.0/22 9767 -210.101.180.0/23 9767 -210.101.182.0/23 3786 -210.101.184.0/21 3786 -210.101.192.0/22 23759 -210.101.196.0/24 23759 -210.101.197.0/24 9318 -210.101.198.0/24 23759 -210.101.199.0/24 9318 -210.101.200.0/24 23759 -210.101.201.0/24 9318 -210.101.202.0/23 23759 -210.101.204.0/22 23759 -210.101.208.0/23 9318 -210.101.210.0/24 9318 -210.101.211.0/24 23759 -210.101.212.0/24 23759 -210.101.213.0/24 9318 -210.101.214.0/24 23759 -210.101.215.0/24 9318 -210.101.216.0/24 9318 -210.101.217.0/24 3786 -210.101.218.0/24 3786 -210.101.219.0/24 9318 -210.101.220.0/22 9318 -210.101.224.0/21 9318 -210.101.232.0/23 9318 -210.101.235.0/24 9318 -210.101.236.0/22 9318 -210.101.240.0/22 9318 -210.101.244.0/23 9318 -210.101.247.0/24 9318 -210.101.252.0/23 9318 -210.102.0.0/19 4663 -210.102.32.0/19 3786 -210.102.64.0/19 7557 -210.102.96.0/21 9455 -210.102.104.0/22 9455 -210.102.108.0/24 9455 -210.102.110.0/23 9455 -210.102.112.0/22 9455 -210.102.119.0/24 9455 -210.102.120.0/23 9455 -210.102.122.0/24 9455 -210.102.124.0/24 9455 -210.102.126.0/23 9455 -210.102.128.0/22 9859 -210.102.132.0/23 9859 -210.102.134.0/23 4766 -210.102.136.0/22 4766 -210.102.140.0/23 3786 -210.102.142.0/24 3786 -210.102.143.0/24 4766 -210.102.144.0/21 3786 -210.102.152.0/21 55618 -210.102.160.0/21 55618 -210.102.168.0/22 55618 -210.102.172.0/22 4766 -210.102.176.0/21 9318 -210.102.184.0/22 9318 -210.102.188.0/22 4766 -210.102.192.0/20 4766 -210.102.208.0/21 55618 -210.102.216.0/22 55618 -210.102.220.0/22 55624 -210.102.224.0/23 4766 -210.102.226.0/23 46012 -210.102.228.0/22 46012 -210.102.232.0/22 9318 -210.102.236.0/22 3786 -210.102.240.0/22 38694 -210.102.244.0/22 4766 -210.102.248.0/21 4766 -210.103.0.0/21 4766 -210.103.8.0/22 4766 -210.103.12.0/23 4766 -210.103.14.0/24 4766 -210.103.15.0/24 45400 -210.103.16.0/23 4766 -210.103.18.0/24 4766 -210.103.19.0/24 10050 -210.103.20.0/22 4766 -210.103.24.0/24 4766 -210.103.25.0/24 18333 -210.103.26.0/23 4766 -210.103.28.0/22 4766 -210.103.32.0/20 4766 -210.103.48.0/22 4766 -210.103.52.0/24 4766 -210.103.53.0/24 18323 -210.103.54.0/24 4766 -210.103.55.0/24 45400 -210.103.56.0/24 4766 -210.103.57.0/24 18323 -210.103.58.0/23 4766 -210.103.60.0/23 4766 -210.103.62.0/24 4766 -210.103.63.0/24 17841 -210.103.64.0/21 4766 -210.103.72.0/24 17841 -210.103.73.0/24 4766 -210.103.74.0/23 4766 -210.103.76.0/22 4766 -210.103.80.0/24 4766 -210.103.81.0/24 17841 -210.103.82.0/23 17841 -210.103.84.0/22 4766 -210.103.88.0/21 4766 -210.103.96.0/21 4766 -210.103.104.0/22 4766 -210.103.108.0/23 4766 -210.103.110.0/24 4766 -210.103.111.0/24 45400 -210.103.112.0/23 4766 -210.103.114.0/24 4766 -210.103.115.0/24 45400 -210.103.116.0/22 4766 -210.103.120.0/21 4766 -210.103.128.0/18 9848 -210.103.192.0/19 9848 -210.103.224.0/20 9848 -210.103.240.0/21 10158 -210.103.248.0/22 45991 -210.103.252.0/24 45991 -210.103.253.0/24 38099 -210.103.254.0/24 38099 -210.103.255.0/24 45991 -210.104.0.0/23 4766 -210.104.2.0/24 45400 -210.104.3.0/24 4766 -210.104.4.0/22 4766 -210.104.8.0/21 45400 -210.104.16.0/22 4766 -210.104.20.0/24 45400 -210.104.21.0/24 9683 -210.104.22.0/24 45400 -210.104.23.0/24 4766 -210.104.24.0/24 45400 -210.104.25.0/24 4766 -210.104.26.0/23 45400 -210.104.28.0/24 45400 -210.104.29.0/24 4766 -210.104.30.0/23 4766 -210.104.32.0/21 4766 -210.104.40.0/24 4766 -210.104.41.0/24 17841 -210.104.42.0/23 4766 -210.104.44.0/24 45400 -210.104.45.0/24 4766 -210.104.46.0/23 4766 -210.104.48.0/20 4766 -210.104.64.0/19 4766 -210.104.96.0/22 4766 -210.104.100.0/23 4766 -210.104.102.0/24 45400 -210.104.103.0/24 9647 -210.104.104.0/21 4766 -210.104.112.0/24 55633 -210.104.113.0/24 4766 -210.104.114.0/23 4766 -210.104.116.0/22 4766 -210.104.120.0/23 4766 -210.104.122.0/24 4766 -210.104.123.0/24 45400 -210.104.124.0/23 4766 -210.104.126.0/24 9647 -210.104.127.0/24 4766 -210.104.128.0/23 9647 -210.104.130.0/23 4766 -210.104.132.0/23 10170 -210.104.134.0/23 4766 -210.104.136.0/23 4766 -210.104.138.0/24 45400 -210.104.139.0/24 4766 -210.104.140.0/24 17841 -210.104.141.0/24 4766 -210.104.142.0/23 4766 -210.104.144.0/22 4766 -210.104.148.0/24 17841 -210.104.149.0/24 4766 -210.104.150.0/23 4766 -210.104.152.0/21 4766 -210.104.160.0/19 4766 -210.104.192.0/21 4766 -210.104.200.0/23 4766 -210.104.202.0/24 4766 -210.104.203.0/24 17584 -210.104.204.0/22 4766 -210.104.208.0/21 4766 -210.104.216.0/23 4766 -210.104.218.0/24 45400 -210.104.219.0/24 4766 -210.104.220.0/22 4766 -210.104.224.0/21 4766 -210.104.232.0/22 4766 -210.104.236.0/24 4766 -210.104.237.0/24 45400 -210.104.238.0/23 4766 -210.104.240.0/21 4766 -210.104.248.0/24 4766 -210.104.249.0/24 17841 -210.104.250.0/24 17841 -210.104.251.0/24 4766 -210.104.252.0/22 4766 -210.105.0.0/24 45399 -210.105.1.0/24 4766 -210.105.2.0/23 45399 -210.105.4.0/22 45399 -210.105.8.0/24 45399 -210.105.9.0/24 4766 -210.105.10.0/23 45399 -210.105.12.0/23 45399 -210.105.14.0/23 4766 -210.105.16.0/20 4766 -210.105.32.0/19 4766 -210.105.64.0/22 4766 -210.105.68.0/24 4766 -210.105.69.0/24 23556 -210.105.70.0/23 4766 -210.105.72.0/21 4766 -210.105.80.0/20 4766 -210.105.96.0/20 4766 -210.105.112.0/22 4766 -210.105.116.0/23 4766 -210.105.118.0/23 18324 -210.105.120.0/21 4766 -210.105.128.0/20 4766 -210.105.144.0/21 4766 -210.105.152.0/23 4766 -210.105.154.0/24 18305 -210.105.155.0/24 4766 -210.105.156.0/22 4766 -210.105.160.0/19 4766 -210.105.192.0/20 4766 -210.105.208.0/21 4766 -210.105.216.0/21 38695 -210.105.224.0/19 4766 -210.106.0.0/18 17839 -210.106.64.0/21 9851 -210.106.72.0/22 4766 -210.106.76.0/22 10053 -210.106.80.0/21 4766 -210.106.88.0/21 9318 -210.106.96.0/22 4766 -210.106.100.0/23 9528 -210.106.102.0/23 4766 -210.106.104.0/22 4766 -210.106.108.0/24 17841 -210.106.109.0/24 4766 -210.106.110.0/23 4766 -210.106.112.0/20 4766 -210.106.192.0/19 10036 -210.106.224.0/19 3786 -210.107.0.0/18 3786 -210.107.64.0/23 3786 -210.107.66.0/24 10179 -210.107.67.0/24 3786 -210.107.68.0/22 3786 -210.107.72.0/23 3786 -210.107.74.0/24 3786 -210.107.75.0/24 9704 -210.107.76.0/22 3786 -210.107.80.0/21 3786 -210.107.88.0/22 3786 -210.107.92.0/24 3786 -210.107.93.0/24 17862 -210.107.94.0/23 3786 -210.107.96.0/21 3786 -210.107.104.0/24 3786 -210.107.105.0/24 17578 -210.107.106.0/23 3786 -210.107.108.0/22 3786 -210.107.112.0/20 3786 -210.107.128.0/20 1781 -210.107.144.0/23 1237 -210.107.146.0/24 1237 -210.107.147.0/24 1704 -210.107.148.0/22 1237 -210.107.152.0/21 1237 -210.107.160.0/20 1237 -210.107.176.0/20 18297 -210.107.192.0/20 4766 -210.107.208.0/22 9708 -210.107.212.0/22 9769 -210.107.216.0/21 9769 -210.107.224.0/23 9769 -210.107.226.0/24 9769 -210.107.227.0/24 3786 -210.107.228.0/22 9769 -210.107.232.0/21 9769 -210.107.240.0/22 9870 -210.107.244.0/23 9870 -210.107.246.0/23 23552 -210.107.248.0/22 1237 -210.107.252.0/23 1237 -210.107.254.0/24 1237 -210.107.255.0/24 10063 -210.108.0.0/20 3786 -210.108.16.0/21 3786 -210.108.24.0/23 3786 -210.108.26.0/23 9526 -210.108.28.0/22 3786 -210.108.32.0/21 3786 -210.108.40.0/22 3786 -210.108.44.0/23 3786 -210.108.46.0/24 10183 -210.108.47.0/24 3786 -210.108.48.0/23 3786 -210.108.50.0/24 18305 -210.108.51.0/24 3786 -210.108.52.0/22 3786 -210.108.56.0/22 3786 -210.108.60.0/24 10183 -210.108.61.0/24 3786 -210.108.62.0/23 3786 -210.108.64.0/20 3786 -210.108.80.0/22 9852 -210.108.84.0/24 9852 -210.108.85.0/24 3786 -210.108.86.0/23 3786 -210.108.88.0/21 3786 -210.108.96.0/23 9767 -210.108.98.0/23 3786 -210.108.100.0/22 3786 -210.108.104.0/21 3786 -210.108.112.0/20 3786 -210.108.128.0/24 10064 -210.108.129.0/24 3786 -210.108.130.0/23 3786 -210.108.132.0/22 3786 -210.108.136.0/24 3786 -210.108.137.0/24 9526 -210.108.138.0/23 3786 -210.108.140.0/22 3786 -210.108.144.0/20 3786 -210.108.160.0/21 3786 -210.108.168.0/22 3786 -210.108.172.0/24 3786 -210.108.173.0/24 9776 -210.108.174.0/23 3786 -210.108.176.0/20 3786 -210.108.192.0/22 3786 -210.108.196.0/23 3786 -210.108.198.0/24 3786 -210.108.199.0/24 18305 -210.108.200.0/21 3786 -210.108.208.0/20 3786 -210.108.224.0/21 3786 -210.108.232.0/23 3786 -210.108.234.0/23 9767 -210.108.236.0/22 3786 -210.108.240.0/20 3786 -210.109.0.0/20 9848 -210.109.16.0/23 9697 -210.109.18.0/23 9848 -210.109.20.0/22 9848 -210.109.24.0/21 9848 -210.109.32.0/19 9848 -210.109.64.0/20 9848 -210.109.80.0/21 9848 -210.109.88.0/22 9848 -210.109.92.0/24 9770 -210.109.93.0/24 9848 -210.109.94.0/23 9848 -210.109.96.0/22 9848 -210.109.100.0/24 9952 -210.109.101.0/24 9848 -210.109.102.0/23 9848 -210.109.104.0/21 9848 -210.109.112.0/21 38669 -210.109.120.0/21 9697 -210.109.128.0/22 9770 -210.109.132.0/22 9697 -210.109.136.0/23 9697 -210.109.138.0/23 9848 -210.109.140.0/22 9848 -210.109.144.0/22 9848 -210.109.148.0/24 9848 -210.109.149.0/24 9770 -210.109.150.0/23 9848 -210.109.152.0/21 18300 -210.109.160.0/22 9848 -210.109.164.0/23 9848 -210.109.166.0/24 9770 -210.109.167.0/24 9848 -210.109.168.0/23 9770 -210.109.170.0/23 9848 -210.109.172.0/22 9848 -210.109.176.0/20 9848 -210.109.192.0/18 9848 -210.110.0.0/20 4766 -210.110.16.0/22 3786 -210.110.20.0/22 18029 -210.110.24.0/21 4766 -210.110.32.0/21 45983 -210.110.40.0/22 45983 -210.110.44.0/22 9631 -210.110.48.0/21 4766 -210.110.56.0/21 18320 -210.110.64.0/22 4766 -210.110.68.0/23 4766 -210.110.70.0/23 18038 -210.110.72.0/22 55612 -210.110.76.0/23 55612 -210.110.78.0/24 55612 -210.110.79.0/24 4766 -210.110.80.0/21 9962 -210.110.88.0/22 9962 -210.110.92.0/22 4766 -210.110.96.0/22 3786 -210.110.100.0/22 4766 -210.110.104.0/23 4766 -210.110.106.0/23 3786 -210.110.108.0/22 3786 -210.110.112.0/20 4766 -210.110.128.0/21 1237 -210.110.136.0/23 9708 -210.110.138.0/24 9708 -210.110.139.0/24 45363 -210.110.140.0/23 45363 -210.110.142.0/24 45363 -210.110.144.0/20 1237 -210.110.160.0/20 9318 -210.110.176.0/22 9318 -210.110.180.0/23 9318 -210.110.182.0/23 1237 -210.110.184.0/24 1237 -210.110.190.0/23 1237 -210.110.192.0/21 1237 -210.110.200.0/22 4766 -210.110.204.0/22 1237 -210.110.208.0/20 17861 -210.110.224.0/21 1237 -210.110.232.0/24 1237 -210.110.233.0/24 9275 -210.110.234.0/24 9275 -210.110.235.0/24 1237 -210.110.236.0/22 1237 -210.110.240.0/22 9949 -210.110.244.0/24 55616 -210.110.245.0/24 10045 -210.110.246.0/23 10045 -210.110.248.0/22 10045 -210.110.253.0/24 45363 -210.111.0.0/21 4670 -210.111.8.0/23 4664 -210.111.10.0/23 4670 -210.111.12.0/22 4670 -210.111.16.0/21 4670 -210.111.24.0/22 4670 -210.111.28.0/24 9980 -210.111.29.0/24 4670 -210.111.30.0/23 4670 -210.111.32.0/19 4670 -210.111.80.0/20 4670 -210.111.96.0/20 4670 -210.111.128.0/19 10171 -210.111.160.0/19 9976 -210.111.192.0/19 7557 -210.111.224.0/19 10176 -210.112.0.0/17 9848 -210.112.128.0/19 9271 -210.112.160.0/20 38661 -210.112.176.0/24 3786 -210.112.177.0/24 9866 -210.112.178.0/23 3786 -210.112.180.0/22 3786 -210.112.184.0/21 3786 -210.112.192.0/19 17876 -210.112.224.0/19 4663 -210.113.0.0/20 4766 -210.113.16.0/21 4766 -210.113.24.0/22 4766 -210.113.28.0/23 17863 -210.113.30.0/23 4766 -210.113.32.0/19 4766 -210.113.64.0/19 4766 -210.113.96.0/20 4766 -210.113.112.0/24 4766 -210.113.113.0/24 55592 -210.113.114.0/23 4766 -210.113.116.0/22 4766 -210.113.120.0/21 4766 -210.113.128.0/20 4766 -210.113.144.0/23 4766 -210.113.146.0/24 4766 -210.113.147.0/24 18324 -210.113.148.0/24 9959 -210.113.149.0/24 4766 -210.113.150.0/24 45399 -210.113.151.0/24 4766 -210.113.152.0/22 4766 -210.113.156.0/23 18305 -210.113.158.0/23 4766 -210.113.160.0/19 4766 -210.113.192.0/18 4766 -210.114.0.0/18 4766 -210.114.88.0/21 9270 -210.114.106.0/24 1237 -210.114.108.0/24 1237 -210.114.160.0/21 4670 -210.114.168.0/22 4670 -210.114.172.0/23 4670 -210.114.174.0/23 17833 -210.114.176.0/20 4670 -210.114.208.0/21 4670 -210.114.216.0/22 4670 -210.114.220.0/22 17833 -210.114.224.0/24 4670 -210.114.225.0/24 17833 -210.114.226.0/23 4670 -210.114.228.0/22 4670 -210.114.232.0/21 4670 -210.114.240.0/20 4670 -210.115.32.0/19 17862 -210.115.96.0/19 10171 -210.115.128.0/24 7559 -210.115.130.0/24 7559 -210.115.136.0/21 7559 -210.115.148.0/22 4766 -210.115.152.0/22 4766 -210.115.160.0/19 18158 -210.115.192.0/19 7558 -210.115.224.0/19 4766 -210.116.0.0/20 9848 -210.116.16.0/21 9848 -210.116.24.0/22 9848 -210.116.28.0/23 9848 -210.116.30.0/24 9848 -210.116.31.0/24 9697 -210.116.32.0/23 9697 -210.116.34.0/24 9697 -210.116.35.0/24 9848 -210.116.36.0/22 9697 -210.116.40.0/23 9770 -210.116.42.0/23 9848 -210.116.44.0/22 9848 -210.116.48.0/20 9848 -210.116.64.0/19 17881 -210.116.96.0/19 3786 -210.116.128.0/23 9848 -210.116.130.0/23 9697 -210.116.132.0/23 9697 -210.116.134.0/23 9770 -210.116.136.0/23 9770 -210.116.138.0/24 9770 -210.116.139.0/24 9848 -210.116.140.0/22 9848 -210.116.144.0/21 9697 -210.116.152.0/23 9697 -210.116.154.0/23 9848 -210.116.156.0/22 9848 -210.116.160.0/19 9848 -210.116.192.0/22 9848 -210.116.196.0/24 9848 -210.116.197.0/24 9709 -210.116.198.0/23 9848 -210.116.200.0/21 9848 -210.116.208.0/20 9848 -210.116.224.0/21 9697 -210.116.232.0/21 17586 -210.116.240.0/22 9848 -210.116.244.0/23 9848 -210.116.246.0/23 45365 -210.116.248.0/22 9697 -210.116.252.0/22 9848 -210.117.0.0/17 9318 -210.117.128.0/18 7560 -210.117.192.0/24 1237 -210.117.195.0/24 45400 -210.117.197.0/24 1237 -210.117.198.0/24 1237 -210.117.199.0/24 45400 -210.117.200.0/24 4766 -210.117.202.0/23 4766 -210.117.204.0/22 4766 -210.117.208.0/22 1237 -210.117.212.0/24 1237 -210.117.213.0/24 10162 -210.117.214.0/23 1237 -210.117.216.0/24 1237 -210.117.219.0/24 1237 -210.117.224.0/22 1237 -210.117.228.0/23 1237 -210.117.236.0/22 1237 -210.117.240.0/21 1237 -210.117.248.0/22 1237 -210.117.252.0/23 1237 -210.118.0.0/19 4663 -210.118.32.0/19 6619 -210.118.64.0/19 6619 -210.118.96.0/23 6619 -210.118.98.0/24 38130 -210.118.99.0/24 6619 -210.118.100.0/22 6619 -210.118.104.0/21 6619 -210.118.112.0/20 6619 -210.118.128.0/23 4670 -210.118.130.0/24 4670 -210.118.131.0/24 9848 -210.118.132.0/23 4670 -210.118.134.0/24 4670 -210.118.135.0/24 9848 -210.118.136.0/21 4670 -210.118.144.0/20 4670 -210.118.160.0/19 4670 -210.118.192.0/18 4670 -210.119.0.0/20 9708 -210.119.16.0/22 9708 -210.119.20.0/23 1237 -210.119.22.0/24 9708 -210.119.23.0/24 1237 -210.119.24.0/21 10159 -210.119.32.0/22 45363 -210.119.36.0/23 1237 -210.119.38.0/23 55616 -210.119.40.0/21 1237 -210.119.48.0/20 1237 -210.119.64.0/19 1237 -210.119.96.0/22 1237 -210.119.100.0/23 1237 -210.119.102.0/23 45363 -210.119.104.0/21 9949 -210.119.112.0/24 10045 -210.119.114.0/23 1237 -210.119.122.0/23 1237 -210.119.124.0/22 1237 -210.119.128.0/23 4766 -210.119.130.0/23 9459 -210.119.132.0/23 55612 -210.119.134.0/24 55612 -210.119.135.0/24 4766 -210.119.136.0/24 4766 -210.119.137.0/24 23561 -210.119.138.0/23 23561 -210.119.140.0/22 4766 -210.119.144.0/20 4766 -210.119.160.0/20 4766 -210.119.176.0/21 4766 -210.119.184.0/22 18319 -210.119.188.0/22 9970 -210.119.192.0/21 4766 -210.119.200.0/22 4766 -210.119.204.0/23 9318 -210.119.206.0/24 9318 -210.119.207.0/24 10073 -210.119.208.0/21 9318 -210.119.216.0/21 9459 -210.119.224.0/21 3786 -210.119.232.0/22 3786 -210.119.236.0/22 9318 -210.119.240.0/20 4766 -210.120.0.0/20 3786 -210.120.16.0/21 3786 -210.120.24.0/24 3786 -210.120.25.0/24 9684 -210.120.26.0/23 3786 -210.120.28.0/22 3786 -210.120.32.0/19 3786 -210.120.64.0/21 3786 -210.120.72.0/24 3786 -210.120.73.0/24 9852 -210.120.74.0/23 3786 -210.120.76.0/22 3786 -210.120.80.0/24 45987 -210.120.81.0/24 3786 -210.120.82.0/24 45987 -210.120.83.0/24 3786 -210.120.84.0/24 3786 -210.120.85.0/24 17862 -210.120.86.0/23 3786 -210.120.88.0/23 9759 -210.120.90.0/24 9759 -210.120.91.0/24 3786 -210.120.92.0/22 3786 -210.120.96.0/20 3786 -210.120.112.0/24 3786 -210.120.113.0/24 45374 -210.120.114.0/23 3786 -210.120.116.0/22 3786 -210.120.120.0/24 3786 -210.120.121.0/24 45374 -210.120.122.0/24 45374 -210.120.123.0/24 3786 -210.120.124.0/22 3786 -210.120.128.0/17 3786 -210.121.0.0/20 45374 -210.121.16.0/21 45374 -210.121.24.0/21 9848 -210.121.32.0/24 9848 -210.121.33.0/24 9709 -210.121.34.0/23 9848 -210.121.36.0/22 9848 -210.121.40.0/21 9848 -210.121.48.0/20 9848 -210.121.64.0/21 9848 -210.121.72.0/21 45374 -210.121.80.0/20 45374 -210.121.96.0/19 45374 -210.121.128.0/23 4766 -210.121.130.0/24 4766 -210.121.131.0/24 55627 -210.121.132.0/22 55627 -210.121.136.0/22 55627 -210.121.140.0/24 55627 -210.121.141.0/24 4766 -210.121.142.0/23 4766 -210.121.144.0/21 4766 -210.121.152.0/21 18176 -210.121.160.0/22 4766 -210.121.164.0/24 45382 -210.121.165.0/24 4766 -210.121.166.0/23 4766 -210.121.168.0/21 4766 -210.121.176.0/21 4766 -210.121.184.0/22 4766 -210.121.188.0/23 4766 -210.121.190.0/24 55592 -210.121.191.0/24 4766 -210.121.192.0/21 4766 -210.121.200.0/24 4766 -210.121.201.0/24 10058 -210.121.202.0/23 4766 -210.121.204.0/22 4766 -210.121.208.0/22 4766 -210.121.212.0/24 4766 -210.121.213.0/24 38676 -210.121.214.0/23 4766 -210.121.216.0/22 4766 -210.121.220.0/24 4766 -210.121.221.0/24 38676 -210.121.222.0/23 4766 -210.121.224.0/19 4766 -210.122.0.0/24 9848 -210.122.1.0/24 9952 -210.122.2.0/23 9848 -210.122.4.0/22 9848 -210.122.8.0/21 9848 -210.122.16.0/22 3786 -210.122.20.0/22 4961 -210.122.24.0/21 4961 -210.122.32.0/19 9848 -210.122.64.0/22 9848 -210.122.68.0/24 9848 -210.122.69.0/24 17837 -210.122.70.0/23 9848 -210.122.72.0/21 17837 -210.122.80.0/23 17837 -210.122.82.0/23 9848 -210.122.84.0/22 9848 -210.122.88.0/24 38669 -210.122.89.0/24 9848 -210.122.90.0/23 9848 -210.122.92.0/22 9848 -210.122.96.0/20 9578 -210.122.112.0/21 9848 -210.122.120.0/23 9848 -210.122.122.0/24 9848 -210.122.123.0/24 38675 -210.122.124.0/22 9848 -210.122.128.0/19 9848 -210.122.160.0/21 9848 -210.122.168.0/23 9848 -210.122.170.0/23 38123 -210.122.172.0/23 38123 -210.122.174.0/24 38123 -210.122.175.0/24 9848 -210.122.176.0/23 17837 -210.122.178.0/23 9848 -210.122.180.0/22 9848 -210.122.184.0/21 9848 -210.122.192.0/18 9848 -210.123.0.0/21 4766 -210.123.8.0/22 4766 -210.123.12.0/23 4766 -210.123.14.0/24 9526 -210.123.15.0/24 4766 -210.123.16.0/20 4766 -210.123.32.0/20 18176 -210.123.48.0/20 4766 -210.123.64.0/22 4766 -210.123.68.0/23 4766 -210.123.70.0/24 4766 -210.123.71.0/24 17845 -210.123.72.0/21 4766 -210.123.80.0/24 9634 -210.123.81.0/24 4766 -210.123.82.0/23 4766 -210.123.84.0/22 4766 -210.123.88.0/21 4766 -210.123.96.0/21 4766 -210.123.104.0/22 4766 -210.123.108.0/24 9855 -210.123.109.0/24 4766 -210.123.110.0/23 4766 -210.123.112.0/20 4766 -210.123.128.0/17 4766 -210.124.0.0/23 3786 -210.124.2.0/24 23566 -210.124.3.0/24 45374 -210.124.4.0/22 3786 -210.124.8.0/24 3786 -210.124.9.0/24 9856 -210.124.10.0/23 3786 -210.124.12.0/24 3786 -210.124.13.0/24 10185 -210.124.14.0/24 10185 -210.124.15.0/24 3786 -210.124.16.0/21 3786 -210.124.24.0/22 3786 -210.124.28.0/23 3786 -210.124.30.0/24 55592 -210.124.31.0/24 3786 -210.124.32.0/22 3786 -210.124.36.0/23 3786 -210.124.38.0/24 9857 -210.124.39.0/24 3786 -210.124.40.0/21 3786 -210.124.48.0/23 3786 -210.124.50.0/24 9319 -210.124.51.0/24 3786 -210.124.52.0/23 3786 -210.124.54.0/24 3786 -210.124.55.0/24 45374 -210.124.56.0/22 3786 -210.124.60.0/24 45374 -210.124.61.0/24 3786 -210.124.62.0/23 3786 -210.124.64.0/21 3786 -210.124.72.0/24 45374 -210.124.73.0/24 3786 -210.124.74.0/23 3786 -210.124.76.0/22 3786 -210.124.80.0/22 3786 -210.124.84.0/23 55592 -210.124.86.0/24 45374 -210.124.87.0/24 17569 -210.124.88.0/23 3786 -210.124.90.0/24 45404 -210.124.91.0/24 3786 -210.124.92.0/22 3786 -210.124.96.0/21 3786 -210.124.104.0/23 3786 -210.124.106.0/24 45374 -210.124.107.0/24 3786 -210.124.108.0/22 3786 -210.124.112.0/22 3786 -210.124.116.0/23 3786 -210.124.118.0/24 55592 -210.124.119.0/24 3786 -210.124.120.0/22 3786 -210.124.124.0/23 3786 -210.124.126.0/24 3786 -210.124.127.0/24 9319 -210.124.128.0/23 3786 -210.124.130.0/24 3786 -210.124.131.0/24 9319 -210.124.132.0/23 3786 -210.124.134.0/24 3608 -210.124.135.0/24 3786 -210.124.136.0/22 3786 -210.124.140.0/23 3786 -210.124.142.0/23 9319 -210.124.144.0/23 3786 -210.124.146.0/24 3786 -210.124.147.0/24 9319 -210.124.148.0/24 3786 -210.124.149.0/24 9319 -210.124.150.0/24 3786 -210.124.151.0/24 9319 -210.124.152.0/22 3786 -210.124.156.0/23 3786 -210.124.158.0/24 3786 -210.124.159.0/24 4202 -210.124.160.0/24 4202 -210.124.161.0/24 3786 -210.124.162.0/23 3786 -210.124.164.0/24 55592 -210.124.165.0/24 3786 -210.124.166.0/23 3786 -210.124.168.0/22 3786 -210.124.172.0/24 9319 -210.124.173.0/24 3786 -210.124.174.0/24 9319 -210.124.175.0/24 3786 -210.124.176.0/20 3786 -210.124.192.0/22 3786 -210.124.196.0/24 9319 -210.124.197.0/24 3786 -210.124.198.0/23 3786 -210.124.200.0/22 3786 -210.124.204.0/23 9759 -210.124.206.0/23 3786 -210.124.208.0/24 3786 -210.124.209.0/24 9857 -210.124.210.0/23 9857 -210.124.212.0/24 45374 -210.124.213.0/24 3786 -210.124.214.0/23 3786 -210.124.216.0/21 3786 -210.124.224.0/21 3786 -210.124.232.0/24 3786 -210.124.233.0/24 9767 -210.124.234.0/24 9767 -210.124.235.0/24 3786 -210.124.236.0/23 3786 -210.124.238.0/24 45368 -210.124.239.0/24 3786 -210.124.240.0/20 3786 -210.125.0.0/24 1237 -210.125.5.0/24 9782 -210.125.6.0/24 9782 -210.125.10.0/24 4766 -210.125.12.0/23 23552 -210.125.14.0/24 23552 -210.125.16.0/20 23714 -210.125.32.0/20 1237 -210.125.48.0/21 17861 -210.125.56.0/21 1237 -210.125.64.0/21 1237 -210.125.72.0/21 9949 -210.125.80.0/21 1237 -210.125.88.0/21 4766 -210.125.96.0/21 4766 -210.125.104.0/23 9775 -210.125.106.0/24 9775 -210.125.108.0/22 9708 -210.125.112.0/20 9708 -210.125.128.0/21 4766 -210.125.136.0/22 18029 -210.125.140.0/22 4766 -210.125.144.0/21 18158 -210.125.152.0/22 18158 -210.125.156.0/23 18158 -210.125.158.0/24 3786 -210.125.159.0/24 18158 -210.125.160.0/22 4766 -210.125.164.0/23 3786 -210.125.166.0/23 4766 -210.125.168.0/21 4766 -210.125.176.0/21 9978 -210.125.184.0/21 4766 -210.125.192.0/21 9867 -210.125.200.0/22 3786 -210.125.204.0/22 4766 -210.125.208.0/21 3786 -210.125.216.0/22 3786 -210.125.220.0/22 18029 -210.125.224.0/24 4766 -210.125.225.0/24 3786 -210.125.226.0/24 4766 -210.125.227.0/24 3786 -210.125.228.0/23 4766 -210.125.230.0/24 4766 -210.125.231.0/24 10190 -210.125.232.0/21 10190 -210.125.240.0/21 9965 -210.125.248.0/21 4766 -210.126.0.0/21 4766 -210.126.8.0/22 4766 -210.126.12.0/24 4766 -210.126.13.0/24 55592 -210.126.14.0/23 4766 -210.126.16.0/20 4766 -210.126.32.0/21 4766 -210.126.40.0/22 4766 -210.126.44.0/23 4766 -210.126.46.0/24 9767 -210.126.47.0/24 4766 -210.126.48.0/23 55586 -210.126.50.0/23 4766 -210.126.52.0/22 4766 -210.126.56.0/21 4766 -210.126.64.0/18 4766 -210.126.128.0/23 9632 -210.126.130.0/23 9848 -210.126.132.0/23 9848 -210.126.134.0/23 9632 -210.126.136.0/22 9848 -210.126.140.0/24 9959 -210.126.141.0/24 9848 -210.126.142.0/23 9848 -210.126.144.0/20 9848 -210.126.160.0/19 9848 -210.126.192.0/21 9848 -210.126.200.0/22 9848 -210.126.204.0/23 9848 -210.126.206.0/24 9579 -210.126.207.0/24 9848 -210.126.208.0/20 9848 -210.126.224.0/19 9848 -210.127.32.0/22 9767 -210.127.38.0/24 9767 -210.127.40.0/21 9767 -210.127.48.0/22 9767 -210.127.52.0/24 9767 -210.127.54.0/23 9767 -210.127.56.0/22 9767 -210.127.60.0/23 9767 -210.127.62.0/24 9767 -210.127.64.0/20 9848 -210.127.80.0/23 9848 -210.127.82.0/24 9848 -210.127.83.0/24 38120 -210.127.84.0/22 38120 -210.127.88.0/24 38120 -210.127.89.0/24 9848 -210.127.90.0/23 9848 -210.127.92.0/23 38669 -210.127.94.0/23 9848 -210.127.96.0/24 9848 -210.127.97.0/24 38669 -210.127.98.0/23 9848 -210.127.100.0/22 9848 -210.127.104.0/21 9848 -210.127.112.0/20 9848 -210.127.128.0/18 9848 -210.127.192.0/20 4670 -210.127.208.0/22 17833 -210.127.212.0/23 17833 -210.127.214.0/23 4670 -210.127.216.0/21 4670 -210.127.224.0/20 4670 -210.127.240.0/22 4670 -210.127.244.0/23 4670 -210.127.246.0/24 9319 -210.127.247.0/24 4670 -210.127.248.0/22 4670 -210.127.252.0/24 4670 -210.127.253.0/24 17833 -210.127.254.0/23 4670 -210.128.0.0/16 2497 -210.129.0.0/22 4694 -210.129.4.0/23 17676 -210.129.6.0/23 4694 -210.129.8.0/21 4694 -210.129.16.0/20 4694 -210.129.32.0/22 4694 -210.129.36.0/23 4694 -210.129.38.0/24 4725 -210.129.39.0/24 4694 -210.129.40.0/21 4694 -210.129.48.0/20 4694 -210.129.64.0/18 4694 -210.129.128.0/19 4694 -210.129.160.0/20 4694 -210.129.176.0/21 4694 -210.129.184.0/24 4694 -210.129.185.0/24 4725 -210.129.186.0/23 4694 -210.129.188.0/22 4694 -210.129.192.0/18 4694 -210.130.0.0/16 2497 -210.131.0.0/17 2510 -210.131.128.0/17 2519 -210.132.0.0/18 4713 -210.132.64.0/18 2516 -210.132.128.0/17 2527 -210.133.64.0/19 2907 -210.133.96.0/20 7677 -210.133.112.0/20 23619 -210.133.160.0/19 7676 -210.133.192.0/18 2497 -210.134.0.0/20 24295 -210.134.16.0/20 4713 -210.134.48.0/20 24282 -210.134.64.0/19 4725 -210.134.96.0/19 7502 -210.134.128.0/19 4719 -210.134.160.0/19 4678 -210.134.192.0/20 9354 -210.134.208.0/20 2522 -210.134.224.0/19 2512 -210.135.64.0/19 4723 -210.135.96.0/20 37898 -210.135.112.0/20 2514 -210.135.144.0/20 23613 -210.135.192.0/19 4721 -210.135.224.0/20 23817 -210.136.0.0/16 2514 -210.137.0.0/16 2907 -210.138.0.0/16 2497 -210.139.0.0/17 2514 -210.139.128.0/17 2527 -210.140.0.0/24 4694 -210.140.1.0/24 4725 -210.140.2.0/23 4694 -210.140.4.0/22 4694 -210.140.8.0/21 4694 -210.140.16.0/20 4694 -210.140.32.0/23 4725 -210.140.34.0/24 17676 -210.140.35.0/24 4694 -210.140.36.0/22 4694 -210.140.40.0/21 4694 -210.140.48.0/20 4694 -210.140.64.0/18 4694 -210.140.128.0/19 4694 -210.140.160.0/20 4694 -210.140.176.0/21 4694 -210.140.184.0/22 4694 -210.140.188.0/23 4725 -210.140.190.0/23 4694 -210.140.192.0/19 4694 -210.140.224.0/20 4694 -210.140.240.0/22 4694 -210.140.244.0/24 4694 -210.140.245.0/24 17676 -210.140.246.0/23 4694 -210.140.248.0/21 4694 -210.141.16.0/20 2497 -210.141.32.0/19 9374 -210.141.64.0/18 2516 -210.141.128.0/19 9358 -210.141.160.0/20 4695 -210.141.176.0/20 18142 -210.141.208.0/22 18260 -210.141.214.0/23 18260 -210.141.216.0/21 18260 -210.141.224.0/19 2516 -210.142.0.0/18 2516 -210.142.64.0/18 4686 -210.142.160.0/19 4725 -210.142.192.0/19 4677 -210.142.224.0/19 7522 -210.143.16.0/20 131931 -210.143.32.0/19 2516 -210.143.64.0/19 7679 -210.143.96.0/20 7678 -210.143.112.0/20 18266 -210.143.128.0/20 17676 -210.143.144.0/20 10013 -210.143.192.0/20 2516 -210.143.240.0/20 23777 -210.144.0.0/16 4673 -210.145.0.0/16 4713 -210.146.0.0/18 4725 -210.146.64.0/20 2907 -210.146.80.0/20 7511 -210.146.96.0/19 10010 -210.146.128.0/17 2519 -210.147.0.0/16 2518 -210.148.0.0/15 2497 -210.150.0.0/16 2514 -210.151.0.0/18 4725 -210.151.64.0/18 2907 -210.151.128.0/17 2518 -210.152.0.0/20 4694 -210.152.16.0/21 4694 -210.152.24.0/22 4694 -210.152.28.0/24 17676 -210.152.29.0/24 4694 -210.152.30.0/23 4694 -210.152.32.0/19 4694 -210.152.64.0/20 4694 -210.152.80.0/21 4694 -210.152.88.0/24 4694 -210.152.89.0/24 4725 -210.152.90.0/23 4694 -210.152.92.0/22 4694 -210.152.96.0/19 4694 -210.152.128.0/19 4694 -210.152.160.0/20 2554 -210.152.176.0/21 4694 -210.152.184.0/24 4694 -210.152.185.0/24 17676 -210.152.186.0/23 4694 -210.152.188.0/22 4694 -210.152.192.0/21 4694 -210.152.200.0/22 4694 -210.152.204.0/24 4694 -210.152.205.0/24 17676 -210.152.206.0/24 4725 -210.152.207.0/24 4694 -210.152.208.0/20 4694 -210.152.224.0/19 4694 -210.153.0.0/16 2514 -210.154.0.0/16 4713 -210.155.0.0/17 2516 -210.155.128.0/19 7514 -210.155.192.0/19 4685 -210.155.224.0/21 7517 -210.155.240.0/20 7517 -210.156.0.0/22 4718 -210.156.16.0/20 23624 -210.156.32.0/19 2907 -210.156.80.0/20 18067 -210.156.96.0/20 4725 -210.156.112.0/20 9354 -210.156.128.0/20 4695 -210.156.160.0/20 2527 -210.156.176.0/20 7690 -210.157.0.0/19 7506 -210.157.64.0/20 2510 -210.157.80.0/20 23618 -210.157.128.0/19 2516 -210.157.192.0/19 4704 -210.157.224.0/19 7522 -210.158.0.0/19 2516 -210.158.32.0/20 17941 -210.158.48.0/20 23629 -210.158.64.0/20 7524 -210.158.128.0/20 23817 -210.158.144.0/20 9354 -210.158.160.0/20 18070 -210.158.176.0/20 23614 -210.158.192.0/21 4694 -210.158.200.0/22 4694 -210.158.204.0/23 4694 -210.158.206.0/24 17676 -210.158.207.0/24 4725 -210.158.208.0/23 4694 -210.158.210.0/23 4725 -210.158.212.0/22 4694 -210.158.216.0/21 4694 -210.158.224.0/19 10010 -210.159.0.0/19 2516 -210.159.64.0/19 7503 -210.159.96.0/19 4693 -210.159.128.0/21 10013 -210.159.136.0/22 10013 -210.159.140.0/24 10013 -210.159.142.0/23 10013 -210.159.144.0/22 10013 -210.159.152.0/21 10013 -210.159.160.0/20 10013 -210.159.176.0/20 7522 -210.159.192.0/18 10013 -210.160.0.0/14 4713 -210.164.0.0/16 4713 -210.165.0.0/16 2514 -210.166.0.0/22 7672 -210.166.4.0/24 7672 -210.166.5.0/24 7668 -210.166.6.0/23 7672 -210.166.8.0/21 7672 -210.166.16.0/20 7672 -210.166.32.0/19 7670 -210.166.64.0/19 7503 -210.166.96.0/19 4693 -210.166.128.0/18 2516 -210.166.192.0/20 4675 -210.166.208.0/20 7678 -210.166.224.0/19 7514 -210.167.0.0/19 7668 -210.167.32.0/24 7663 -210.167.34.0/23 7663 -210.167.40.0/22 7663 -210.167.51.0/24 7663 -210.167.52.0/24 7663 -210.167.62.0/23 7663 -210.167.64.0/19 7664 -210.167.112.0/20 4685 -210.167.128.0/17 2516 -210.168.0.0/19 4694 -210.168.32.0/21 4694 -210.168.40.0/24 4694 -210.168.41.0/24 17676 -210.168.42.0/24 4725 -210.168.43.0/24 4694 -210.168.44.0/22 4694 -210.168.48.0/20 4694 -210.168.64.0/23 4694 -210.168.66.0/24 4694 -210.168.67.0/24 4725 -210.168.68.0/23 4725 -210.168.70.0/23 4694 -210.168.72.0/21 4694 -210.168.80.0/20 4694 -210.168.96.0/19 2554 -210.168.128.0/17 2516 -210.169.0.0/17 2516 -210.169.128.0/17 4725 -210.170.0.0/18 2519 -210.170.64.0/18 4713 -210.170.128.0/19 10013 -210.170.192.0/18 10013 -210.171.0.0/19 7524 -210.171.32.0/19 24296 -210.171.80.0/20 59108 -210.171.96.0/22 4694 -210.171.100.0/24 17676 -210.171.101.0/24 4694 -210.171.102.0/23 4694 -210.171.104.0/21 4694 -210.171.112.0/22 4694 -210.171.116.0/23 4694 -210.171.118.0/24 4725 -210.171.119.0/24 4694 -210.171.120.0/23 4694 -210.171.122.0/24 4694 -210.171.123.0/24 4725 -210.171.124.0/22 4694 -210.171.128.0/20 7529 -210.171.144.0/20 131931 -210.171.160.0/20 10010 -210.171.192.0/20 2516 -210.171.208.0/20 7672 -210.171.224.0/20 7527 -210.171.240.0/20 10010 -210.172.0.0/19 9600 -210.172.32.0/19 7671 -210.172.64.0/18 2516 -210.172.128.0/18 7506 -210.172.192.0/19 7690 -210.172.224.0/20 4680 -210.172.240.0/20 4721 -210.173.0.0/19 2497 -210.173.32.0/19 18142 -210.173.64.0/19 2516 -210.173.144.0/20 18126 -210.173.160.0/20 7521 -210.173.176.0/21 7521 -210.173.184.0/22 7521 -210.173.188.0/23 7521 -210.173.190.0/24 38644 -210.173.191.0/24 131079 -210.173.192.0/20 7523 -210.173.208.0/21 7523 -210.173.216.0/24 131893 -210.173.217.0/24 7523 -210.173.218.0/23 7523 -210.173.220.0/23 7523 -210.173.222.0/24 7523 -210.173.223.0/24 59113 -210.173.224.0/19 4723 -210.174.0.0/18 2527 -210.174.64.0/18 2516 -210.174.148.0/22 4725 -210.174.160.0/20 4725 -210.174.176.0/22 4725 -210.174.184.0/21 4725 -210.174.196.0/22 4725 -210.174.200.0/21 4725 -210.174.208.0/22 4725 -210.175.0.0/17 4725 -210.175.128.0/19 7687 -210.175.160.0/19 2914 -210.175.192.0/19 7516 -210.175.224.0/20 18074 -210.175.240.0/20 9600 -210.176.0.0/20 4515 -210.176.16.0/21 4515 -210.176.24.0/22 4515 -210.176.28.0/23 4760 -210.176.30.0/23 4515 -210.176.32.0/22 4637 -210.176.36.0/23 4637 -210.176.38.0/24 4637 -210.176.40.0/22 4637 -210.176.44.0/23 4637 -210.176.46.0/24 4637 -210.176.48.0/21 4515 -210.176.56.0/24 4760 -210.176.57.0/24 4515 -210.176.58.0/23 4515 -210.176.60.0/23 4515 -210.176.62.0/24 4515 -210.176.63.0/24 4760 -210.176.64.0/19 4515 -210.176.96.0/22 4515 -210.176.100.0/24 9409 -210.176.101.0/24 4760 -210.176.102.0/23 4515 -210.176.104.0/21 4515 -210.176.112.0/20 4515 -210.176.128.0/22 4637 -210.176.132.0/23 4637 -210.176.135.0/24 4637 -210.176.136.0/24 4637 -210.176.138.0/23 4637 -210.176.140.0/22 4637 -210.176.144.0/22 4637 -210.176.148.0/24 4637 -210.176.150.0/23 4637 -210.176.152.0/22 4637 -210.176.156.0/24 26667 -210.176.160.0/22 4515 -210.176.164.0/24 4760 -210.176.165.0/24 4515 -210.176.166.0/23 4515 -210.176.168.0/21 4515 -210.176.176.0/20 4515 -210.176.192.0/18 4515 -210.177.0.0/16 4515 -210.178.0.0/20 4766 -210.178.16.0/21 4766 -210.178.24.0/22 4766 -210.178.28.0/24 4766 -210.178.29.0/24 45400 -210.178.30.0/24 45400 -210.178.31.0/24 4766 -210.178.32.0/24 4766 -210.178.33.0/24 45400 -210.178.34.0/23 4766 -210.178.36.0/22 4766 -210.178.40.0/21 4766 -210.178.48.0/22 4766 -210.178.52.0/24 45400 -210.178.53.0/24 4766 -210.178.54.0/23 4766 -210.178.56.0/21 4766 -210.178.64.0/19 4766 -210.178.96.0/22 4766 -210.178.100.0/23 17841 -210.178.102.0/23 4766 -210.178.104.0/21 4766 -210.178.112.0/20 4766 -210.178.128.0/22 4766 -210.178.132.0/24 4766 -210.178.133.0/24 9860 -210.178.134.0/23 9860 -210.178.136.0/21 4766 -210.178.144.0/20 4766 -210.178.160.0/20 4766 -210.178.176.0/21 4766 -210.178.184.0/23 4766 -210.178.186.0/24 4766 -210.178.187.0/24 45400 -210.178.188.0/22 4766 -210.178.192.0/18 4766 -210.179.0.0/18 4766 -210.179.64.0/20 4766 -210.179.80.0/22 4766 -210.179.84.0/23 4766 -210.179.86.0/24 4766 -210.179.87.0/24 45400 -210.179.88.0/24 45400 -210.179.89.0/24 4766 -210.179.90.0/23 4766 -210.179.92.0/22 4766 -210.179.96.0/19 4766 -210.179.128.0/21 4766 -210.179.136.0/22 4766 -210.179.140.0/23 45400 -210.179.142.0/23 4766 -210.179.144.0/22 4766 -210.179.148.0/24 17841 -210.179.149.0/24 4766 -210.179.150.0/23 4766 -210.179.152.0/22 4766 -210.179.156.0/23 4766 -210.179.158.0/24 4766 -210.179.159.0/24 45400 -210.179.160.0/19 4766 -210.179.192.0/21 4766 -210.179.200.0/22 4766 -210.179.204.0/24 4766 -210.179.205.0/24 17841 -210.179.206.0/23 4766 -210.179.208.0/21 4766 -210.179.216.0/23 4766 -210.179.218.0/23 45400 -210.179.220.0/22 4766 -210.179.224.0/22 4766 -210.179.228.0/23 4766 -210.179.230.0/23 10039 -210.179.232.0/22 4766 -210.179.236.0/23 4766 -210.179.238.0/24 10196 -210.179.239.0/24 4766 -210.179.240.0/20 4766 -210.180.0.0/19 3786 -210.180.32.0/19 4663 -210.180.64.0/22 4766 -210.180.68.0/23 4766 -210.180.70.0/24 4766 -210.180.71.0/24 9458 -210.180.72.0/23 4766 -210.180.74.0/23 132203 -210.180.76.0/22 4766 -210.180.80.0/20 4766 -210.180.96.0/20 9318 -210.180.112.0/21 9318 -210.180.120.0/22 9318 -210.180.124.0/23 9318 -210.180.126.0/24 45399 -210.180.127.0/24 9318 -210.180.128.0/18 9706 -210.180.192.0/19 9706 -210.180.224.0/19 3786 -210.181.0.0/20 9457 -210.181.16.0/22 9457 -210.181.20.0/22 38676 -210.181.24.0/24 38676 -210.181.25.0/24 9457 -210.181.26.0/23 9457 -210.181.28.0/23 10173 -210.181.30.0/23 9457 -210.181.32.0/20 3786 -210.181.48.0/21 3786 -210.181.56.0/22 3786 -210.181.60.0/23 3786 -210.181.62.0/24 17598 -210.181.63.0/24 3786 -210.181.64.0/20 9318 -210.181.80.0/21 9318 -210.181.88.0/22 9318 -210.181.92.0/22 55615 -210.181.96.0/21 9318 -210.181.104.0/22 9318 -210.181.108.0/24 9318 -210.181.109.0/24 55615 -210.181.110.0/23 9318 -210.181.112.0/20 9318 -210.181.128.0/21 4766 -210.181.136.0/22 4766 -210.181.140.0/23 4766 -210.181.142.0/23 9970 -210.181.144.0/21 9970 -210.181.152.0/21 4766 -210.181.160.0/22 4766 -210.181.164.0/23 10053 -210.181.166.0/24 10053 -210.181.167.0/24 4766 -210.181.168.0/22 4766 -210.181.172.0/22 9859 -210.181.176.0/23 9859 -210.181.178.0/24 9859 -210.181.179.0/24 4766 -210.181.180.0/24 4766 -210.181.181.0/24 3786 -210.181.182.0/24 3786 -210.181.183.0/24 4766 -210.181.184.0/21 4766 -210.181.192.0/19 7557 -210.181.224.0/19 4663 -210.182.0.0/22 3786 -210.182.4.0/23 3786 -210.182.6.0/24 3786 -210.182.7.0/24 9319 -210.182.8.0/24 9846 -210.182.9.0/24 10167 -210.182.10.0/24 3786 -210.182.11.0/24 17598 -210.182.12.0/23 3786 -210.182.14.0/24 3786 -210.182.15.0/24 17598 -210.182.16.0/24 3786 -210.182.17.0/24 9319 -210.182.18.0/23 3786 -210.182.20.0/22 3786 -210.182.24.0/21 3786 -210.182.32.0/19 3786 -210.182.64.0/19 3786 -210.182.96.0/22 3786 -210.182.100.0/24 3786 -210.182.101.0/24 9319 -210.182.102.0/23 3786 -210.182.104.0/21 3786 -210.182.112.0/21 3786 -210.182.120.0/22 3786 -210.182.124.0/23 3786 -210.182.126.0/24 10041 -210.182.127.0/24 3786 -210.182.128.0/20 3786 -210.182.144.0/22 3786 -210.182.148.0/24 9319 -210.182.149.0/24 3786 -210.182.150.0/23 3786 -210.182.152.0/23 9319 -210.182.154.0/23 3786 -210.182.156.0/24 3786 -210.182.157.0/24 9319 -210.182.158.0/23 3786 -210.182.160.0/21 3786 -210.182.168.0/23 3786 -210.182.170.0/24 9784 -210.182.171.0/24 3786 -210.182.172.0/22 3786 -210.182.176.0/23 3786 -210.182.178.0/24 3786 -210.182.179.0/24 9319 -210.182.180.0/22 3786 -210.182.184.0/21 3786 -210.182.192.0/19 3786 -210.182.224.0/20 3786 -210.182.240.0/21 3786 -210.182.248.0/22 3786 -210.182.252.0/23 3786 -210.182.254.0/24 17862 -210.182.255.0/24 3786 -210.183.0.0/20 4766 -210.183.16.0/21 4766 -210.183.24.0/24 4766 -210.183.25.0/24 55592 -210.183.26.0/24 4766 -210.183.27.0/24 9847 -210.183.28.0/22 4766 -210.183.32.0/21 4766 -210.183.40.0/24 18312 -210.183.41.0/24 4766 -210.183.42.0/23 4766 -210.183.44.0/22 4766 -210.183.48.0/20 4766 -210.183.64.0/18 4766 -210.183.128.0/17 4766 -210.184.0.0/24 198949 -210.184.1.0/24 4058 -210.184.2.0/23 4058 -210.184.4.0/22 4058 -210.184.8.0/21 4058 -210.184.16.0/20 4058 -210.184.32.0/19 4058 -210.184.64.0/19 4058 -210.184.96.0/21 9729 -210.184.108.0/22 9729 -210.184.112.0/21 9729 -210.184.120.0/23 9729 -210.184.122.0/24 9729 -210.184.124.0/24 9729 -210.184.127.0/24 9729 -210.184.128.0/17 9729 -210.185.0.0/18 4770 -210.185.64.0/18 7545 -210.185.128.0/19 10004 -210.185.160.0/21 132199 -210.185.168.0/24 4775 -210.185.169.0/24 132199 -210.185.170.0/24 132199 -210.185.171.0/24 4775 -210.185.172.0/22 4775 -210.185.192.0/18 4134 -210.186.0.0/15 4788 -210.188.0.0/17 4725 -210.188.128.0/18 2516 -210.188.192.0/20 9371 -210.188.208.0/23 9371 -210.188.210.0/24 10013 -210.188.211.0/24 9371 -210.188.212.0/22 9371 -210.188.216.0/22 9371 -210.188.220.0/23 9371 -210.188.222.0/24 10013 -210.188.223.0/24 9371 -210.188.224.0/19 9370 -210.189.0.0/18 2516 -210.189.64.0/20 4694 -210.189.80.0/22 4694 -210.189.84.0/23 2554 -210.189.86.0/23 4694 -210.189.88.0/22 4694 -210.189.92.0/24 4694 -210.189.93.0/24 4725 -210.189.94.0/23 4694 -210.189.96.0/19 4723 -210.189.128.0/19 2516 -210.189.160.0/20 23619 -210.189.176.0/20 18097 -210.189.208.0/20 4694 -210.189.224.0/22 4694 -210.189.228.0/23 4694 -210.189.230.0/24 17676 -210.189.231.0/24 4694 -210.189.232.0/21 4694 -210.189.240.0/21 4694 -210.189.248.0/24 4694 -210.189.249.0/24 4725 -210.189.250.0/23 4694 -210.189.252.0/22 4694 -210.190.0.0/16 4713 -210.191.0.0/18 2516 -210.191.64.0/18 7679 -210.191.128.0/19 17957 -210.191.160.0/19 2516 -210.191.192.0/19 7682 -210.192.0.0/18 9924 -210.192.64.0/19 17577 -210.192.96.0/21 4808 -210.192.104.0/21 4812 -210.192.112.0/22 4808 -210.192.116.0/22 4835 -210.192.120.0/21 4808 -210.192.128.0/17 9924 -210.193.0.0/18 17547 -210.193.64.0/18 17675 -210.193.128.0/17 17477 -210.194.0.0/16 9824 -210.195.0.0/16 4788 -210.196.0.0/16 2516 -210.197.0.0/16 4725 -210.198.0.0/19 7514 -210.198.64.0/18 2516 -210.198.128.0/17 2516 -210.199.0.0/18 2516 -210.199.80.0/20 17511 -210.199.96.0/19 9374 -210.199.128.0/17 2516 -210.200.0.0/22 131142 -210.200.4.0/22 24154 -210.200.8.0/21 24154 -210.200.16.0/20 24154 -210.200.32.0/20 7539 -210.200.48.0/20 7482 -210.200.64.0/21 131142 -210.200.72.0/24 131142 -210.200.73.0/24 7482 -210.200.74.0/23 131142 -210.200.76.0/24 131142 -210.200.77.0/24 7482 -210.200.78.0/24 7482 -210.200.79.0/24 9311 -210.200.80.0/23 131142 -210.200.82.0/24 131142 -210.200.83.0/24 7482 -210.200.84.0/24 7482 -210.200.85.0/24 24154 -210.200.86.0/23 7482 -210.200.88.0/21 7482 -210.200.96.0/21 7482 -210.200.104.0/23 7482 -210.200.106.0/24 9311 -210.200.107.0/24 7482 -210.200.108.0/22 7482 -210.200.112.0/20 7482 -210.200.128.0/24 9311 -210.200.129.0/24 17709 -210.200.130.0/24 17709 -210.200.131.0/24 7482 -210.200.132.0/23 9311 -210.200.134.0/24 9311 -210.200.135.0/24 7482 -210.200.136.0/23 9311 -210.200.138.0/24 9311 -210.200.139.0/24 7482 -210.200.140.0/22 9311 -210.200.144.0/23 9311 -210.200.146.0/23 7482 -210.200.148.0/22 7482 -210.200.152.0/21 7482 -210.200.160.0/20 7482 -210.200.176.0/22 7482 -210.200.180.0/22 9311 -210.200.184.0/22 7482 -210.200.188.0/23 7482 -210.200.190.0/24 9311 -210.200.191.0/24 7482 -210.200.192.0/20 7482 -210.200.208.0/23 7482 -210.200.210.0/24 7482 -210.200.211.0/24 9311 -210.200.212.0/22 7482 -210.200.216.0/22 9311 -210.200.220.0/24 7482 -210.200.221.0/24 9311 -210.200.222.0/24 9311 -210.200.223.0/24 7482 -210.200.224.0/22 7482 -210.200.228.0/23 9311 -210.200.230.0/23 7482 -210.200.232.0/21 7482 -210.200.240.0/22 7482 -210.200.244.0/23 7482 -210.200.246.0/24 7482 -210.200.247.0/24 9311 -210.200.248.0/23 7482 -210.200.250.0/24 7482 -210.200.251.0/24 9311 -210.200.252.0/23 7482 -210.200.254.0/24 7482 -210.200.255.0/24 9311 -210.201.0.0/20 7482 -210.201.16.0/21 7482 -210.201.24.0/22 7482 -210.201.28.0/23 7482 -210.201.30.0/24 7482 -210.201.31.0/24 17709 -210.201.32.0/23 17709 -210.201.34.0/23 7482 -210.201.36.0/22 7482 -210.201.40.0/21 7482 -210.201.48.0/22 7482 -210.201.52.0/23 9311 -210.201.54.0/24 9311 -210.201.55.0/24 7482 -210.201.56.0/22 7482 -210.201.60.0/24 7482 -210.201.61.0/24 9311 -210.201.62.0/23 7482 -210.201.64.0/21 7482 -210.201.72.0/24 17709 -210.201.73.0/24 7482 -210.201.74.0/23 9311 -210.201.76.0/23 9311 -210.201.78.0/24 17709 -210.201.79.0/24 9311 -210.201.80.0/24 9311 -210.201.81.0/24 7482 -210.201.82.0/23 7482 -210.201.84.0/22 7482 -210.201.88.0/22 7482 -210.201.92.0/24 7482 -210.201.93.0/24 17709 -210.201.94.0/23 7482 -210.201.96.0/19 7482 -210.201.128.0/21 7482 -210.201.136.0/22 9311 -210.201.140.0/22 7482 -210.201.144.0/20 7482 -210.201.160.0/19 7482 -210.201.192.0/18 7482 -210.202.0.0/21 24154 -210.202.8.0/23 24154 -210.202.12.0/22 24154 -210.202.16.0/20 24154 -210.202.32.0/20 24154 -210.202.48.0/21 24154 -210.202.56.0/21 131596 -210.202.64.0/19 24154 -210.202.96.0/19 7482 -210.202.128.0/18 7482 -210.202.192.0/23 7482 -210.202.194.0/23 24154 -210.202.196.0/22 24154 -210.202.200.0/22 24154 -210.202.204.0/22 7482 -210.202.208.0/22 24154 -210.202.212.0/24 7482 -210.202.213.0/24 24154 -210.202.214.0/23 24154 -210.202.216.0/21 24154 -210.202.224.0/20 24154 -210.202.240.0/21 24154 -210.202.248.0/21 7482 -210.203.0.0/24 17709 -210.203.1.0/24 7482 -210.203.2.0/24 9311 -210.203.3.0/24 7482 -210.203.4.0/22 7482 -210.203.8.0/22 16625 -210.203.12.0/22 7482 -210.203.16.0/22 7482 -210.203.20.0/22 17709 -210.203.24.0/21 7482 -210.203.32.0/20 7482 -210.203.48.0/22 17709 -210.203.52.0/24 131584 -210.203.53.0/24 17709 -210.203.54.0/23 17709 -210.203.56.0/21 17709 -210.203.64.0/18 7482 -210.203.128.0/18 4776 -210.203.192.0/18 7679 -210.204.0.0/18 4766 -210.204.64.0/19 4766 -210.204.96.0/21 4766 -210.204.104.0/23 4766 -210.204.106.0/24 4766 -210.204.107.0/24 10176 -210.204.108.0/22 4766 -210.204.112.0/20 4766 -210.204.128.0/18 4766 -210.204.192.0/20 4766 -210.204.208.0/22 4766 -210.204.212.0/24 4766 -210.204.213.0/24 45400 -210.204.214.0/23 4766 -210.204.216.0/21 4766 -210.204.224.0/23 4766 -210.204.226.0/23 45400 -210.204.228.0/22 4766 -210.204.232.0/21 4766 -210.204.240.0/20 4766 -210.205.0.0/22 9318 -210.205.4.0/23 38688 -210.205.6.0/23 9318 -210.205.8.0/21 9318 -210.205.16.0/20 9318 -210.205.32.0/19 9318 -210.205.64.0/19 7557 -210.205.112.0/20 38661 -210.205.128.0/20 9318 -210.205.144.0/21 9318 -210.205.152.0/22 9318 -210.205.156.0/24 45990 -210.205.157.0/24 9318 -210.205.158.0/23 9318 -210.205.160.0/19 9318 -210.205.192.0/19 9318 -210.205.224.0/20 9318 -210.205.240.0/20 18302 -210.206.0.0/18 3786 -210.206.64.0/20 3786 -210.206.80.0/21 3786 -210.206.88.0/24 45974 -210.206.89.0/24 3786 -210.206.90.0/23 3786 -210.206.92.0/22 3786 -210.206.96.0/19 3786 -210.206.128.0/23 3786 -210.206.130.0/24 3786 -210.206.131.0/24 9959 -210.206.132.0/24 9959 -210.206.133.0/24 3786 -210.206.134.0/23 3786 -210.206.136.0/21 3786 -210.206.144.0/20 3786 -210.206.160.0/20 3786 -210.206.176.0/21 3786 -210.206.184.0/23 3786 -210.206.186.0/23 17598 -210.206.188.0/22 3786 -210.206.192.0/22 3786 -210.206.196.0/23 3786 -210.206.198.0/24 3786 -210.206.199.0/24 17598 -210.206.200.0/24 17598 -210.206.201.0/24 3786 -210.206.202.0/23 3786 -210.206.204.0/22 3786 -210.206.208.0/24 3786 -210.206.209.0/24 17598 -210.206.210.0/23 3786 -210.206.212.0/22 3786 -210.206.216.0/22 3786 -210.206.220.0/24 38703 -210.206.221.0/24 17862 -210.206.222.0/23 3786 -210.206.224.0/20 3786 -210.206.240.0/21 3786 -210.206.248.0/24 17853 -210.206.249.0/24 3786 -210.206.250.0/23 3786 -210.206.252.0/23 3786 -210.206.254.0/24 17598 -210.206.255.0/24 3786 -210.207.0.0/24 9861 -210.207.1.0/24 3786 -210.207.2.0/23 3786 -210.207.4.0/22 3786 -210.207.8.0/21 3786 -210.207.16.0/20 3786 -210.207.32.0/22 3786 -210.207.36.0/22 10088 -210.207.40.0/21 3786 -210.207.48.0/20 3786 -210.207.64.0/20 3786 -210.207.80.0/22 3786 -210.207.84.0/23 3786 -210.207.86.0/24 3786 -210.207.87.0/24 9530 -210.207.88.0/23 3786 -210.207.90.0/24 3786 -210.207.91.0/24 38126 -210.207.92.0/22 3786 -210.207.96.0/22 3786 -210.207.100.0/23 3786 -210.207.102.0/24 9530 -210.207.103.0/24 3786 -210.207.104.0/21 3786 -210.207.112.0/20 3786 -210.207.128.0/20 3786 -210.207.144.0/22 3786 -210.207.148.0/24 3786 -210.207.149.0/24 17594 -210.207.150.0/23 23714 -210.207.152.0/21 3786 -210.207.160.0/20 3786 -210.207.176.0/21 3786 -210.207.184.0/22 3786 -210.207.188.0/23 3786 -210.207.190.0/23 9782 -210.207.192.0/23 3786 -210.207.194.0/24 3786 -210.207.195.0/24 9526 -210.207.196.0/22 3786 -210.207.200.0/23 3786 -210.207.202.0/24 55592 -210.207.203.0/24 3786 -210.207.204.0/24 3786 -210.207.205.0/24 23714 -210.207.206.0/23 3786 -210.207.208.0/22 3786 -210.207.212.0/24 3786 -210.207.213.0/24 9319 -210.207.214.0/24 9319 -210.207.215.0/24 3786 -210.207.216.0/21 3786 -210.207.224.0/21 3786 -210.207.232.0/22 3786 -210.207.236.0/23 3786 -210.207.238.0/24 9319 -210.207.239.0/24 3786 -210.207.240.0/21 3786 -210.207.248.0/22 3786 -210.207.252.0/24 3786 -210.207.253.0/24 17862 -210.207.254.0/23 3786 -210.208.0.0/18 7656 -210.208.64.0/21 7656 -210.208.72.0/21 9676 -210.208.80.0/20 7532 -210.208.96.0/19 9924 -210.208.128.0/19 7656 -210.208.176.0/20 7656 -210.208.192.0/18 9924 -210.209.0.0/18 7656 -210.209.64.0/18 17444 -210.209.128.0/17 17809 -210.210.1.0/24 9583 -210.210.2.0/23 9583 -210.210.4.0/22 9583 -210.210.8.0/21 9583 -210.210.16.0/20 9583 -210.210.32.0/20 9583 -210.210.48.0/24 9583 -210.210.50.0/24 9583 -210.210.57.0/24 9583 -210.210.59.0/24 9583 -210.210.63.0/24 9583 -210.210.64.0/23 9583 -210.210.66.0/24 9583 -210.210.68.0/22 9583 -210.210.72.0/23 9583 -210.210.74.0/24 9583 -210.210.76.0/22 9583 -210.210.80.0/22 9583 -210.210.84.0/23 9583 -210.210.86.0/24 9583 -210.210.88.0/23 9583 -210.210.91.0/24 9583 -210.210.92.0/22 9583 -210.210.96.0/21 9583 -210.210.104.0/24 9583 -210.210.106.0/24 9583 -210.210.108.0/22 9583 -210.210.112.0/20 9583 -210.210.128.0/18 4787 -210.210.192.0/18 9756 -210.211.0.0/20 45400 -210.211.16.0/21 56239 -210.211.24.0/22 133158 -210.211.31.0/24 45346 -210.211.48.0/21 7687 -210.211.56.0/21 131899 -210.211.64.0/20 10049 -210.211.80.0/23 10049 -210.211.82.0/23 17607 -210.211.84.0/24 17607 -210.211.85.0/24 10049 -210.211.86.0/23 10049 -210.211.88.0/21 10049 -210.211.96.0/19 38731 -210.211.128.0/19 4755 -210.211.176.0/23 17908 -210.211.178.0/23 4755 -210.211.180.0/22 17908 -210.211.184.0/23 17908 -210.211.186.0/24 4755 -210.211.187.0/24 17908 -210.211.188.0/24 4755 -210.211.189.0/24 17908 -210.211.190.0/23 17908 -210.211.192.0/20 17908 -210.211.210.0/24 17908 -210.211.212.0/22 17908 -210.211.224.0/22 17908 -210.211.228.0/24 4755 -210.211.229.0/24 17908 -210.211.230.0/23 17908 -210.211.232.0/21 17908 -210.211.248.0/21 17908 -210.212.0.0/16 9829 -210.213.0.0/18 7470 -210.213.64.0/21 9299 -210.213.72.0/22 9299 -210.213.76.0/23 9299 -210.213.78.0/24 137487 -210.213.79.0/24 9299 -210.213.80.0/20 9299 -210.213.96.0/21 9299 -210.213.104.0/23 9299 -210.213.106.0/24 9299 -210.213.107.0/24 10139 -210.213.108.0/22 9299 -210.213.112.0/21 9299 -210.213.120.0/22 9299 -210.213.124.0/24 137459 -210.213.125.0/24 9299 -210.213.126.0/23 9299 -210.213.128.0/18 9299 -210.213.192.0/20 9299 -210.213.208.0/21 9299 -210.213.216.0/23 9299 -210.213.218.0/24 9299 -210.213.219.0/24 135499 -210.213.220.0/22 9299 -210.213.224.0/19 9299 -210.214.0.0/22 9583 -210.214.6.0/23 9583 -210.214.8.0/24 9583 -210.214.10.0/24 9583 -210.214.14.0/23 9583 -210.214.19.0/24 9583 -210.214.20.0/24 9583 -210.214.22.0/24 9583 -210.214.24.0/21 9583 -210.214.39.0/24 9583 -210.214.43.0/24 9583 -210.214.45.0/24 9583 -210.214.46.0/24 9583 -210.214.50.0/23 9583 -210.214.54.0/23 9583 -210.214.57.0/24 9583 -210.214.59.0/24 9583 -210.214.62.0/24 9583 -210.214.64.0/24 9583 -210.214.72.0/24 9583 -210.214.77.0/24 9583 -210.214.79.0/24 9583 -210.214.80.0/23 9583 -210.214.82.0/24 9583 -210.214.86.0/23 9583 -210.214.88.0/23 9583 -210.214.98.0/23 9583 -210.214.101.0/24 9583 -210.214.106.0/24 9583 -210.214.112.0/23 9583 -210.214.116.0/24 9583 -210.214.118.0/24 9583 -210.214.121.0/24 9583 -210.214.124.0/23 9583 -210.214.127.0/24 9583 -210.214.129.0/24 9583 -210.214.130.0/24 9583 -210.214.134.0/23 9583 -210.214.136.0/21 9583 -210.214.144.0/24 9583 -210.214.148.0/24 9583 -210.214.152.0/23 9583 -210.214.154.0/24 9583 -210.214.156.0/23 9583 -210.214.159.0/24 9583 -210.214.160.0/22 9583 -210.214.164.0/24 9583 -210.214.166.0/23 9583 -210.214.168.0/22 9583 -210.214.172.0/23 9583 -210.214.175.0/24 9583 -210.214.176.0/24 9583 -210.214.178.0/23 9583 -210.214.182.0/23 9583 -210.214.185.0/24 9583 -210.214.186.0/23 9583 -210.214.188.0/22 9583 -210.214.192.0/22 9583 -210.214.196.0/23 9583 -210.214.199.0/24 9583 -210.214.200.0/23 9583 -210.214.204.0/24 9583 -210.214.207.0/24 9583 -210.214.208.0/23 9583 -210.214.211.0/24 9583 -210.214.212.0/23 9583 -210.214.214.0/24 9583 -210.214.216.0/23 9583 -210.214.219.0/24 9583 -210.214.222.0/23 9583 -210.214.224.0/23 9583 -210.214.227.0/24 9583 -210.214.228.0/22 9583 -210.214.233.0/24 9583 -210.214.234.0/23 9583 -210.214.236.0/24 9583 -210.214.240.0/23 9583 -210.214.243.0/24 9583 -210.214.244.0/23 9583 -210.214.248.0/24 9583 -210.214.251.0/24 9583 -210.214.252.0/22 9583 -210.215.0.0/18 9797 -210.215.64.0/21 9797 -210.215.72.0/22 9797 -210.215.76.0/23 9797 -210.215.78.0/24 38055 -210.215.79.0/24 9797 -210.215.80.0/20 9797 -210.215.96.0/19 9797 -210.215.128.0/17 9797 -210.216.0.0/20 3786 -210.216.16.0/24 17834 -210.216.17.0/24 3786 -210.216.18.0/23 3786 -210.216.20.0/24 3786 -210.216.21.0/24 9319 -210.216.22.0/24 4766 -210.216.23.0/24 3786 -210.216.24.0/21 3786 -210.216.32.0/20 3786 -210.216.48.0/21 3786 -210.216.56.0/24 7562 -210.216.57.0/24 3786 -210.216.58.0/23 3786 -210.216.60.0/22 3786 -210.216.64.0/20 3786 -210.216.80.0/22 18164 -210.216.84.0/23 18164 -210.216.86.0/23 3786 -210.216.88.0/22 3786 -210.216.92.0/23 3786 -210.216.94.0/24 3786 -210.216.95.0/24 38686 -210.216.96.0/23 3786 -210.216.98.0/24 3786 -210.216.99.0/24 9319 -210.216.100.0/22 3786 -210.216.104.0/21 3786 -210.216.112.0/22 3786 -210.216.116.0/23 3786 -210.216.118.0/24 3786 -210.216.119.0/24 9319 -210.216.120.0/21 3786 -210.216.128.0/24 3786 -210.216.129.0/24 9319 -210.216.130.0/23 3786 -210.216.132.0/22 3786 -210.216.136.0/21 3786 -210.216.144.0/23 3786 -210.216.146.0/24 3786 -210.216.147.0/24 9319 -210.216.148.0/23 3786 -210.216.150.0/24 3786 -210.216.151.0/24 9319 -210.216.152.0/23 9319 -210.216.154.0/23 3786 -210.216.156.0/24 3786 -210.216.157.0/24 17852 -210.216.158.0/23 17852 -210.216.160.0/23 17852 -210.216.162.0/24 17852 -210.216.163.0/24 3786 -210.216.164.0/22 3786 -210.216.168.0/23 3786 -210.216.170.0/24 17852 -210.216.171.0/24 3786 -210.216.172.0/23 3786 -210.216.174.0/24 23714 -210.216.175.0/24 3786 -210.216.176.0/20 3786 -210.216.192.0/19 3786 -210.216.224.0/23 3786 -210.216.226.0/23 4668 -210.216.228.0/24 23566 -210.216.229.0/24 3786 -210.216.230.0/23 3786 -210.216.232.0/21 3786 -210.216.240.0/22 3786 -210.216.244.0/24 9319 -210.216.245.0/24 3786 -210.216.246.0/24 3786 -210.216.247.0/24 9319 -210.216.248.0/21 3786 -210.217.0.0/17 4766 -210.217.128.0/19 7557 -210.217.160.0/20 9318 -210.217.176.0/22 9318 -210.217.180.0/23 9318 -210.217.182.0/24 9318 -210.217.183.0/24 10196 -210.217.184.0/21 9318 -210.217.192.0/19 3786 -210.217.224.0/19 9531 -210.218.0.0/18 9531 -210.218.64.0/19 9531 -210.218.128.0/18 9318 -210.218.192.0/23 1237 -210.218.194.0/24 1237 -210.218.195.0/24 3786 -210.218.196.0/24 1237 -210.218.197.0/24 17595 -210.218.198.0/23 1237 -210.218.200.0/21 1237 -210.218.208.0/20 1237 -210.218.224.0/19 3786 -210.219.0.0/19 3786 -210.219.32.0/24 1237 -210.219.33.0/24 9275 -210.219.34.0/23 1237 -210.219.36.0/22 1237 -210.219.40.0/22 1237 -210.219.44.0/23 1237 -210.219.46.0/24 9521 -210.219.47.0/24 1237 -210.219.48.0/22 1237 -210.219.52.0/24 1237 -210.219.54.0/23 1237 -210.219.56.0/21 1237 -210.219.64.0/18 10171 -210.219.128.0/18 9318 -210.219.192.0/18 4663 -210.220.0.0/21 9316 -210.220.8.0/22 9316 -210.220.12.0/24 9316 -210.220.13.0/24 55598 -210.220.14.0/23 9316 -210.220.16.0/20 9316 -210.220.64.0/21 9318 -210.220.72.0/22 9318 -210.220.76.0/23 9318 -210.220.78.0/24 45364 -210.220.79.0/24 9318 -210.220.80.0/20 9318 -210.220.96.0/21 3786 -210.220.104.0/24 10040 -210.220.105.0/24 3786 -210.220.106.0/23 3786 -210.220.108.0/22 3786 -210.220.112.0/20 3786 -210.220.128.0/20 4766 -210.220.144.0/22 4766 -210.220.148.0/23 4766 -210.220.150.0/23 38389 -210.220.152.0/23 4766 -210.220.154.0/23 38389 -210.220.156.0/22 4766 -210.220.160.0/19 9318 -210.220.192.0/18 4663 -210.221.0.0/19 9318 -210.221.32.0/20 9318 -210.221.48.0/21 9318 -210.221.56.0/24 9318 -210.221.57.0/24 9784 -210.221.58.0/23 9318 -210.221.60.0/22 9318 -210.221.64.0/21 9318 -210.221.72.0/24 9318 -210.221.73.0/24 45972 -210.221.74.0/23 9318 -210.221.76.0/22 9318 -210.221.80.0/20 9318 -210.221.96.0/20 9318 -210.221.112.0/21 9318 -210.221.120.0/22 9318 -210.221.124.0/24 9318 -210.221.125.0/24 10177 -210.221.126.0/23 9318 -210.221.128.0/19 18302 -210.221.192.0/18 3786 -210.222.0.0/18 4766 -210.222.64.0/19 4766 -210.222.96.0/23 4766 -210.222.98.0/24 4766 -210.222.99.0/24 9696 -210.222.100.0/22 4766 -210.222.104.0/21 4766 -210.222.112.0/20 4766 -210.222.128.0/17 4766 -210.223.0.0/19 4766 -210.223.32.0/21 4766 -210.223.40.0/23 4766 -210.223.42.0/24 46005 -210.223.43.0/24 4766 -210.223.44.0/22 4766 -210.223.48.0/24 4766 -210.223.49.0/24 9318 -210.223.50.0/23 4766 -210.223.52.0/22 4766 -210.223.56.0/21 4766 -210.223.64.0/18 4766 -210.223.128.0/17 4766 -210.224.0.0/17 2516 -210.224.128.0/19 2516 -210.224.160.0/20 9371 -210.224.176.0/22 9371 -210.224.180.0/23 9371 -210.224.182.0/24 9371 -210.224.183.0/24 10013 -210.224.184.0/21 9371 -210.224.192.0/18 2516 -210.225.0.0/16 4713 -210.226.0.0/15 4713 -210.228.0.0/20 7686 -210.228.16.0/20 23627 -210.228.32.0/19 2516 -210.228.64.0/18 2516 -210.228.128.0/17 4725 -210.229.0.0/19 2510 -210.229.32.0/24 7529 -210.229.48.0/20 9601 -210.229.64.0/21 9370 -210.229.72.0/21 10013 -210.229.80.0/20 10013 -210.229.96.0/19 23796 -210.229.128.0/19 2516 -210.229.160.0/19 7682 -210.229.192.0/19 2516 -210.229.224.0/19 24296 -210.230.0.0/16 2516 -210.231.0.0/17 4725 -210.231.128.0/18 2514 -210.231.192.0/20 131934 -210.231.208.0/22 9607 -210.231.212.0/22 7530 -210.231.216.0/22 59099 -210.231.220.0/22 7530 -210.232.0.0/16 4713 -210.233.0.0/18 2516 -210.233.64.0/20 9353 -210.233.80.0/20 23773 -210.233.96.0/19 2516 -210.233.160.0/24 2497 -210.233.161.0/24 2519 -210.233.162.0/23 2497 -210.233.164.0/24 2519 -210.233.165.0/24 2497 -210.233.166.0/23 2497 -210.233.168.0/22 2497 -210.233.172.0/24 2519 -210.233.173.0/24 2497 -210.233.174.0/23 2497 -210.233.176.0/21 2497 -210.233.184.0/22 2497 -210.233.188.0/23 2497 -210.233.190.0/24 2497 -210.233.240.0/20 7671 -210.234.0.0/16 2516 -210.235.0.0/22 4694 -210.235.4.0/23 4694 -210.235.6.0/23 4725 -210.235.8.0/21 4694 -210.235.16.0/21 4694 -210.235.24.0/22 4694 -210.235.28.0/23 4694 -210.235.30.0/24 4694 -210.235.31.0/24 17676 -210.235.32.0/22 7670 -210.235.36.0/22 23778 -210.235.40.0/21 23778 -210.235.48.0/20 23628 -210.235.64.0/18 2516 -210.235.128.0/19 2516 -210.235.160.0/19 7679 -210.235.192.0/18 2516 -210.236.0.0/19 7670 -210.236.32.0/19 17950 -210.236.64.0/19 59108 -210.236.96.0/20 7665 -210.236.112.0/20 18274 -210.236.128.0/19 2516 -210.236.160.0/19 9351 -210.236.208.0/20 23631 -210.236.224.0/21 4694 -210.236.232.0/23 4694 -210.236.234.0/23 4725 -210.236.236.0/22 4694 -210.236.240.0/22 4694 -210.236.244.0/23 4694 -210.236.246.0/24 17676 -210.236.247.0/24 4694 -210.236.248.0/21 4694 -210.237.0.0/19 9374 -210.237.32.0/19 7511 -210.237.64.0/18 2516 -210.237.128.0/17 4725 -210.238.0.0/19 2516 -210.238.32.0/19 7679 -210.238.64.0/18 2516 -210.238.128.0/17 2516 -210.239.0.0/19 7516 -210.239.32.0/24 4694 -210.239.33.0/24 2554 -210.239.34.0/23 4694 -210.239.36.0/22 4694 -210.239.40.0/21 4694 -210.239.48.0/20 4694 -210.239.64.0/21 4694 -210.239.72.0/23 4725 -210.239.74.0/23 4694 -210.239.76.0/22 4694 -210.239.80.0/21 4694 -210.239.88.0/22 4694 -210.239.92.0/24 4694 -210.239.93.0/24 17676 -210.239.94.0/23 4694 -210.239.96.0/19 2516 -210.239.128.0/17 2516 -210.240.0.0/16 1659 -210.241.0.0/17 4782 -210.241.128.0/19 17420 -210.241.192.0/19 9674 -210.241.224.0/19 3462 -210.242.0.0/16 3462 -210.243.0.0/18 1659 -210.243.64.0/18 9924 -210.243.128.0/17 4780 -210.244.0.0/18 4780 -210.244.64.0/20 4780 -210.244.80.0/22 4780 -210.244.84.0/22 18419 -210.244.88.0/22 18419 -210.244.92.0/22 4780 -210.244.96.0/24 4780 -210.244.97.0/24 18419 -210.244.98.0/23 4780 -210.244.100.0/24 18592 -210.244.101.0/24 4780 -210.244.102.0/23 4780 -210.244.104.0/21 4780 -210.244.112.0/20 4780 -210.244.192.0/19 7478 -210.245.0.0/17 18403 -210.245.128.0/17 17444 -210.246.0.0/18 9500 -210.246.64.0/20 4741 -210.246.80.0/24 7470 -210.246.81.0/24 4741 -210.246.82.0/23 4741 -210.246.84.0/22 4741 -210.246.88.0/22 4741 -210.246.92.0/24 23925 -210.246.93.0/24 4741 -210.246.94.0/23 38228 -210.246.96.0/19 4741 -210.246.128.0/20 4741 -210.246.144.0/21 4741 -210.246.152.0/22 4741 -210.246.156.0/23 17901 -210.246.158.0/23 4741 -210.246.160.0/19 4741 -210.246.192.0/23 4741 -210.246.194.0/23 17901 -210.246.196.0/22 4741 -210.246.200.0/21 4741 -210.246.208.0/20 4741 -210.246.224.0/21 4741 -210.246.232.0/22 4741 -210.246.236.0/22 23884 -210.246.240.0/21 23884 -210.246.248.0/22 23884 -210.246.252.0/22 4741 -210.247.0.0/17 7671 -210.247.128.0/18 7496 -210.247.192.0/20 7496 -210.247.208.0/22 7496 -210.247.212.0/24 7496 -210.247.213.0/24 24446 -210.247.214.0/23 7496 -210.247.216.0/21 7496 -210.247.224.0/20 7496 -210.248.0.0/16 4713 -210.249.0.0/17 2516 -210.249.128.0/18 2516 -210.249.192.0/19 4693 -210.250.0.0/18 2516 -210.250.64.0/18 2527 -210.250.128.0/19 2516 -210.250.160.0/19 7668 -210.250.192.0/19 4694 -210.250.224.0/19 24296 -210.251.0.0/17 2516 -210.251.160.0/20 9363 -210.251.176.0/20 18278 -210.251.192.0/19 9354 -210.251.240.0/20 9600 -210.252.0.0/18 7679 -210.252.64.0/19 24296 -210.252.96.0/22 4694 -210.252.100.0/23 4694 -210.252.102.0/24 4694 -210.252.103.0/24 4725 -210.252.104.0/21 4694 -210.252.112.0/20 4694 -210.252.128.0/17 4725 -210.253.0.0/19 2516 -210.253.32.0/19 7670 -210.253.64.0/19 2510 -210.253.96.0/19 7506 -210.253.128.0/18 2516 -210.253.192.0/19 9365 -210.253.224.0/19 4685 -210.254.0.0/18 4725 -210.254.64.0/18 2516 -210.254.128.0/17 4713 -210.255.0.0/17 2516 -210.255.160.0/19 2516 -210.255.192.0/19 2516 -210.255.240.0/20 23775 -211.0.0.0/16 4713 -211.1.0.0/19 2522 -211.1.32.0/19 4713 -211.1.64.0/18 2516 -211.1.128.0/19 7670 -211.1.192.0/19 9354 -211.1.224.0/19 7671 -211.2.0.0/17 2510 -211.2.128.0/19 7516 -211.2.160.0/20 2514 -211.2.176.0/20 23632 -211.2.192.0/21 4694 -211.2.200.0/22 4694 -211.2.204.0/23 4694 -211.2.206.0/24 4694 -211.2.207.0/24 17676 -211.2.208.0/21 4694 -211.2.216.0/24 4725 -211.2.217.0/24 4694 -211.2.218.0/23 4694 -211.2.220.0/22 4694 -211.2.224.0/19 4694 -211.3.0.0/16 4725 -211.4.0.0/15 2516 -211.6.0.0/16 4713 -211.7.0.0/18 2516 -211.7.64.0/19 10010 -211.7.96.0/19 4704 -211.7.128.0/18 2516 -211.7.192.0/21 4693 -211.7.208.0/21 4693 -211.7.224.0/19 7522 -211.8.0.0/16 4725 -211.9.32.0/19 9600 -211.9.64.0/18 7679 -211.9.128.0/18 2516 -211.9.192.0/19 9597 -211.9.224.0/19 9595 -211.10.0.0/20 4694 -211.10.16.0/24 4694 -211.10.17.0/24 2554 -211.10.18.0/23 4694 -211.10.20.0/22 4694 -211.10.24.0/21 4694 -211.10.32.0/19 2527 -211.10.64.0/19 7516 -211.10.128.0/17 2516 -211.11.0.0/16 4713 -211.12.0.0/17 2516 -211.12.192.0/19 9601 -211.12.224.0/19 7670 -211.13.0.0/17 2518 -211.13.128.0/19 4685 -211.13.160.0/20 2516 -211.13.192.0/19 7514 -211.13.224.0/19 4694 -211.14.0.0/21 9607 -211.14.8.0/24 55898 -211.14.9.0/24 9607 -211.14.10.0/23 9607 -211.14.12.0/22 23816 -211.14.16.0/22 9607 -211.14.20.0/22 23816 -211.14.24.0/23 9607 -211.14.26.0/23 55898 -211.14.28.0/23 55898 -211.14.30.0/23 9607 -211.14.32.0/19 2497 -211.14.64.0/21 9605 -211.14.72.0/22 9605 -211.14.78.0/23 9605 -211.14.80.0/22 9605 -211.14.88.0/21 9605 -211.14.96.0/21 9605 -211.14.112.0/20 9605 -211.14.128.0/23 4694 -211.14.130.0/24 17676 -211.14.131.0/24 4694 -211.14.132.0/23 4694 -211.14.134.0/24 4694 -211.14.135.0/24 17676 -211.14.136.0/24 17676 -211.14.137.0/24 4694 -211.14.138.0/24 4694 -211.14.139.0/24 4725 -211.14.140.0/24 4725 -211.14.141.0/24 4694 -211.14.142.0/23 4694 -211.14.144.0/20 4694 -211.14.160.0/20 2554 -211.14.176.0/20 4694 -211.14.192.0/19 17676 -211.14.224.0/19 59108 -211.15.0.0/19 17698 -211.15.32.0/19 17676 -211.15.112.0/20 23780 -211.15.128.0/17 2516 -211.16.0.0/15 4713 -211.18.0.0/16 2516 -211.19.16.0/20 23641 -211.19.32.0/20 17673 -211.19.48.0/20 17931 -211.19.64.0/18 9595 -211.19.160.0/19 9618 -211.19.192.0/22 7672 -211.19.196.0/22 23778 -211.19.208.0/20 4721 -211.19.224.0/19 23780 -211.20.0.0/14 3462 -211.24.0.0/15 9930 -211.26.0.0/16 9443 -211.27.0.0/17 9443 -211.27.128.0/18 9443 -211.27.192.0/19 9443 -211.27.224.0/22 9714 -211.27.228.0/22 9443 -211.27.232.0/21 9443 -211.27.240.0/20 9443 -211.28.0.0/14 4804 -211.32.0.0/20 3786 -211.32.16.0/22 3786 -211.32.20.0/23 3786 -211.32.22.0/24 10185 -211.32.23.0/24 3786 -211.32.24.0/22 3786 -211.32.28.0/23 3786 -211.32.30.0/24 9319 -211.32.31.0/24 10185 -211.32.32.0/24 10185 -211.32.33.0/24 3786 -211.32.34.0/23 3786 -211.32.36.0/24 3786 -211.32.37.0/24 9319 -211.32.38.0/23 3786 -211.32.40.0/21 3786 -211.32.48.0/22 3786 -211.32.52.0/24 3786 -211.32.53.0/24 9530 -211.32.54.0/23 3786 -211.32.56.0/21 3786 -211.32.64.0/20 3786 -211.32.80.0/21 3786 -211.32.88.0/22 3786 -211.32.92.0/24 38700 -211.32.93.0/24 9967 -211.32.94.0/23 3786 -211.32.96.0/20 3786 -211.32.112.0/21 3786 -211.32.120.0/24 3786 -211.32.121.0/24 9319 -211.32.122.0/23 9319 -211.32.124.0/23 3786 -211.32.126.0/24 3786 -211.32.127.0/24 9319 -211.32.128.0/24 9319 -211.32.129.0/24 3786 -211.32.130.0/23 3786 -211.32.132.0/22 3786 -211.32.136.0/21 3786 -211.32.144.0/21 3786 -211.32.152.0/23 3786 -211.32.154.0/24 3786 -211.32.155.0/24 45974 -211.32.156.0/22 3786 -211.32.160.0/24 9699 -211.32.161.0/24 18305 -211.32.162.0/23 3786 -211.32.164.0/24 3786 -211.32.165.0/24 18305 -211.32.166.0/23 3786 -211.32.168.0/21 3786 -211.32.176.0/21 3786 -211.32.184.0/23 3786 -211.32.186.0/24 9632 -211.32.187.0/24 3786 -211.32.188.0/22 3786 -211.32.192.0/24 3786 -211.32.193.0/24 55631 -211.32.194.0/24 55631 -211.32.195.0/24 3786 -211.32.196.0/24 55631 -211.32.197.0/24 3786 -211.32.198.0/23 3786 -211.32.200.0/24 3786 -211.32.201.0/24 55631 -211.32.202.0/23 3786 -211.32.204.0/22 3786 -211.32.208.0/20 3786 -211.32.224.0/19 3786 -211.33.0.0/17 9318 -211.33.128.0/21 4766 -211.33.136.0/24 4766 -211.33.137.0/24 38112 -211.33.138.0/23 4766 -211.33.140.0/22 4766 -211.33.144.0/20 4766 -211.33.160.0/19 4766 -211.33.192.0/21 4766 -211.33.200.0/23 4766 -211.33.202.0/24 9966 -211.33.203.0/24 4766 -211.33.204.0/22 4766 -211.33.208.0/20 4766 -211.33.224.0/19 4766 -211.34.0.0/18 4766 -211.34.64.0/22 4766 -211.34.68.0/24 9528 -211.34.69.0/24 4766 -211.34.70.0/23 4766 -211.34.72.0/21 4766 -211.34.80.0/22 4766 -211.34.84.0/23 4766 -211.34.86.0/24 17841 -211.34.87.0/24 4766 -211.34.88.0/23 4766 -211.34.90.0/24 45400 -211.34.91.0/24 4766 -211.34.92.0/24 3786 -211.34.93.0/24 4766 -211.34.94.0/23 4766 -211.34.96.0/24 9647 -211.34.97.0/24 4766 -211.34.98.0/23 4766 -211.34.100.0/22 4766 -211.34.104.0/22 4766 -211.34.108.0/23 17841 -211.34.110.0/23 10187 -211.34.112.0/24 10187 -211.34.113.0/24 4766 -211.34.114.0/23 45400 -211.34.116.0/22 4766 -211.34.120.0/21 4766 -211.34.128.0/20 4766 -211.34.144.0/23 4766 -211.34.146.0/24 4766 -211.34.147.0/24 45400 -211.34.148.0/22 55615 -211.34.152.0/21 4766 -211.34.160.0/21 4766 -211.34.168.0/22 4766 -211.34.172.0/24 4766 -211.34.173.0/24 45400 -211.34.174.0/24 45400 -211.34.175.0/24 4766 -211.34.176.0/21 4766 -211.34.184.0/24 55615 -211.34.185.0/24 4766 -211.34.186.0/23 4766 -211.34.188.0/22 4766 -211.34.192.0/21 4766 -211.34.200.0/22 4766 -211.34.204.0/24 4766 -211.34.205.0/24 10185 -211.34.206.0/23 4766 -211.34.208.0/22 4766 -211.34.212.0/23 55615 -211.34.214.0/23 4766 -211.34.216.0/21 4766 -211.34.224.0/19 4766 -211.35.0.0/19 9316 -211.35.32.0/20 9316 -211.35.48.0/21 9316 -211.35.56.0/24 9316 -211.35.57.0/24 9647 -211.35.58.0/23 9316 -211.35.60.0/22 9316 -211.35.64.0/20 9712 -211.35.96.0/23 9643 -211.35.99.0/24 3786 -211.35.128.0/17 4766 -211.36.0.0/18 4663 -211.36.64.0/20 6619 -211.36.80.0/22 6619 -211.36.84.0/23 6619 -211.36.86.0/24 9530 -211.36.87.0/24 6619 -211.36.88.0/24 9318 -211.36.89.0/24 6619 -211.36.90.0/23 6619 -211.36.92.0/22 6619 -211.36.128.0/19 17853 -211.36.160.0/19 10036 -211.36.192.0/20 9848 -211.36.208.0/22 17837 -211.36.212.0/22 9848 -211.36.216.0/21 9848 -211.36.224.0/19 3786 -211.37.0.0/18 9318 -211.37.64.0/20 9318 -211.37.80.0/21 9318 -211.37.88.0/24 9318 -211.37.89.0/24 38676 -211.37.90.0/23 9318 -211.37.92.0/24 9318 -211.37.93.0/24 9850 -211.37.94.0/23 9318 -211.37.96.0/19 9318 -211.37.128.0/18 4766 -211.37.192.0/19 7557 -211.37.224.0/19 3786 -211.38.0.0/19 4766 -211.38.32.0/21 4766 -211.38.40.0/24 4766 -211.38.41.0/24 38420 -211.38.42.0/23 4766 -211.38.44.0/22 4766 -211.38.48.0/20 4766 -211.38.64.0/18 4766 -211.38.128.0/17 4766 -211.39.0.0/18 10171 -211.39.64.0/21 4766 -211.39.72.0/22 4766 -211.39.76.0/24 17841 -211.39.77.0/24 4766 -211.39.78.0/24 38692 -211.39.79.0/24 4766 -211.39.80.0/21 4766 -211.39.88.0/23 4766 -211.39.90.0/24 4766 -211.39.91.0/24 17841 -211.39.92.0/23 17841 -211.39.94.0/24 17841 -211.39.95.0/24 4766 -211.39.96.0/23 3786 -211.39.98.0/24 3786 -211.39.99.0/24 4766 -211.39.100.0/22 4766 -211.39.104.0/23 4766 -211.39.106.0/24 4766 -211.39.107.0/24 18319 -211.39.108.0/23 4766 -211.39.110.0/23 18337 -211.39.112.0/21 18337 -211.39.120.0/23 18337 -211.39.122.0/24 18337 -211.39.123.0/24 4766 -211.39.124.0/22 4766 -211.39.128.0/20 4766 -211.39.144.0/21 4766 -211.39.152.0/22 4766 -211.39.156.0/24 4766 -211.39.157.0/24 55593 -211.39.158.0/23 4766 -211.39.160.0/19 9848 -211.39.192.0/21 4766 -211.39.200.0/22 4766 -211.39.204.0/24 38704 -211.39.205.0/24 4766 -211.39.206.0/23 4766 -211.39.208.0/24 38704 -211.39.209.0/24 4766 -211.39.210.0/23 4766 -211.39.212.0/23 4766 -211.39.214.0/24 4766 -211.39.215.0/24 38704 -211.39.216.0/21 4766 -211.39.224.0/19 9457 -211.40.0.0/21 3786 -211.40.8.0/24 3786 -211.40.9.0/24 9319 -211.40.10.0/24 9319 -211.40.11.0/24 3786 -211.40.12.0/22 3786 -211.40.16.0/20 3786 -211.40.32.0/21 3786 -211.40.40.0/23 3786 -211.40.42.0/24 3786 -211.40.43.0/24 9319 -211.40.44.0/22 3786 -211.40.48.0/24 9319 -211.40.49.0/24 3786 -211.40.50.0/23 3786 -211.40.52.0/24 9950 -211.40.53.0/24 9319 -211.40.54.0/23 3786 -211.40.56.0/24 3786 -211.40.57.0/24 10185 -211.40.58.0/23 3786 -211.40.60.0/22 3786 -211.40.64.0/19 3786 -211.40.96.0/20 3786 -211.40.112.0/23 3786 -211.40.114.0/24 55592 -211.40.115.0/24 3786 -211.40.116.0/23 3786 -211.40.118.0/24 55592 -211.40.119.0/24 3786 -211.40.120.0/22 3786 -211.40.124.0/24 3786 -211.40.125.0/24 55592 -211.40.126.0/23 3786 -211.40.128.0/21 3786 -211.40.136.0/23 3786 -211.40.138.0/24 3786 -211.40.139.0/24 9319 -211.40.140.0/22 3786 -211.40.144.0/20 3786 -211.40.160.0/19 3786 -211.40.192.0/23 3786 -211.40.194.0/24 3786 -211.40.195.0/24 9319 -211.40.196.0/22 3786 -211.40.200.0/23 9319 -211.40.202.0/23 3786 -211.40.204.0/22 3786 -211.40.208.0/20 3786 -211.40.224.0/21 3786 -211.40.232.0/22 3786 -211.40.236.0/23 3786 -211.40.238.0/24 3786 -211.40.239.0/24 17862 -211.40.240.0/23 3786 -211.40.242.0/24 9319 -211.40.243.0/24 3786 -211.40.244.0/22 3786 -211.40.248.0/24 9319 -211.40.249.0/24 3786 -211.40.250.0/23 3786 -211.40.252.0/22 3786 -211.41.0.0/18 4766 -211.41.64.0/19 4766 -211.41.96.0/19 9318 -211.41.128.0/19 9689 -211.41.160.0/19 38661 -211.41.192.0/20 9762 -211.41.208.0/20 9943 -211.41.224.0/19 9943 -211.42.0.0/20 9316 -211.42.16.0/24 9647 -211.42.17.0/24 9316 -211.42.18.0/23 9316 -211.42.20.0/22 9316 -211.42.24.0/22 9316 -211.42.28.0/23 9316 -211.42.30.0/24 9316 -211.42.31.0/24 17590 -211.42.32.0/21 9316 -211.42.40.0/22 9316 -211.42.44.0/24 9950 -211.42.45.0/24 9316 -211.42.46.0/23 9316 -211.42.48.0/23 18027 -211.42.50.0/23 9316 -211.42.52.0/22 9316 -211.42.56.0/21 9316 -211.42.64.0/21 9316 -211.42.72.0/22 17841 -211.42.76.0/22 9316 -211.42.80.0/22 9316 -211.42.84.0/23 17841 -211.42.86.0/24 17841 -211.42.87.0/24 9316 -211.42.88.0/22 9316 -211.42.92.0/24 9647 -211.42.93.0/24 9316 -211.42.94.0/24 9647 -211.42.95.0/24 9316 -211.42.96.0/21 9316 -211.42.104.0/24 18027 -211.42.105.0/24 9316 -211.42.106.0/23 9316 -211.42.108.0/22 18330 -211.42.112.0/23 18330 -211.42.114.0/24 9316 -211.42.115.0/24 18330 -211.42.116.0/22 9316 -211.42.120.0/21 9316 -211.42.128.0/19 4766 -211.42.160.0/21 3786 -211.42.168.0/24 9647 -211.42.169.0/24 3786 -211.42.170.0/23 3786 -211.42.172.0/22 3786 -211.42.176.0/21 3786 -211.42.184.0/24 55599 -211.42.185.0/24 3786 -211.42.186.0/23 3786 -211.42.188.0/22 3786 -211.42.192.0/19 4766 -211.42.224.0/19 3786 -211.43.0.0/20 4766 -211.43.16.0/21 4766 -211.43.24.0/22 4766 -211.43.28.0/24 4766 -211.43.29.0/24 9706 -211.43.30.0/23 9706 -211.43.32.0/19 9706 -211.43.64.0/21 9706 -211.43.72.0/22 9706 -211.43.76.0/22 4766 -211.43.80.0/20 4766 -211.43.96.0/19 4766 -211.43.128.0/22 4766 -211.43.132.0/22 17584 -211.43.136.0/22 4766 -211.43.140.0/23 4766 -211.43.142.0/24 45400 -211.43.143.0/24 4766 -211.43.144.0/20 36408 -211.43.160.0/20 9319 -211.43.176.0/23 7561 -211.43.178.0/23 9848 -211.43.180.0/22 9952 -211.43.184.0/23 9848 -211.43.186.0/24 9952 -211.43.187.0/24 9848 -211.43.188.0/24 9952 -211.43.189.0/24 9848 -211.43.190.0/24 9952 -211.43.191.0/24 9848 -211.43.192.0/23 3786 -211.43.194.0/24 18322 -211.43.195.0/24 3786 -211.43.196.0/22 3786 -211.43.200.0/21 3786 -211.43.208.0/20 3786 -211.43.224.0/19 10171 -211.44.0.0/23 9318 -211.44.2.0/24 9318 -211.44.3.0/24 55592 -211.44.4.0/22 9318 -211.44.8.0/21 9318 -211.44.16.0/21 9318 -211.44.24.0/23 9318 -211.44.26.0/24 9318 -211.44.27.0/24 9276 -211.44.28.0/22 9318 -211.44.32.0/20 9318 -211.44.48.0/21 9318 -211.44.56.0/22 9318 -211.44.60.0/23 9318 -211.44.62.0/24 9944 -211.44.63.0/24 55592 -211.44.64.0/19 9318 -211.44.96.0/20 9318 -211.44.112.0/21 9318 -211.44.120.0/23 9318 -211.44.122.0/24 9944 -211.44.123.0/24 9318 -211.44.124.0/22 9318 -211.44.128.0/18 9318 -211.44.192.0/20 9318 -211.44.208.0/24 9318 -211.44.209.0/24 38676 -211.44.210.0/23 9318 -211.44.212.0/23 9318 -211.44.214.0/24 9630 -211.44.215.0/24 9318 -211.44.216.0/21 9318 -211.44.224.0/19 9318 -211.45.0.0/22 6619 -211.45.4.0/23 6619 -211.45.6.0/24 6619 -211.45.7.0/24 9318 -211.45.8.0/21 6619 -211.45.16.0/20 6619 -211.45.32.0/19 10049 -211.45.64.0/24 9457 -211.45.65.0/24 38434 -211.45.66.0/23 9457 -211.45.68.0/23 9457 -211.45.70.0/24 38434 -211.45.71.0/24 38676 -211.45.72.0/22 9457 -211.45.76.0/24 38676 -211.45.77.0/24 9457 -211.45.78.0/23 9457 -211.45.80.0/20 9457 -211.45.96.0/19 17877 -211.45.128.0/18 4766 -211.45.192.0/20 3786 -211.45.208.0/21 3786 -211.45.216.0/23 3786 -211.45.218.0/24 9771 -211.45.219.0/24 3786 -211.45.220.0/23 3786 -211.45.222.0/24 9771 -211.45.223.0/24 3786 -211.45.224.0/22 3786 -211.45.228.0/24 9771 -211.45.229.0/24 3786 -211.45.230.0/24 9771 -211.45.231.0/24 3786 -211.45.232.0/21 3786 -211.45.240.0/20 3786 -211.46.0.0/18 4766 -211.46.64.0/20 4766 -211.46.80.0/21 4766 -211.46.88.0/22 4766 -211.46.92.0/22 45400 -211.46.96.0/20 4766 -211.46.112.0/21 4766 -211.46.120.0/22 4766 -211.46.124.0/24 4766 -211.46.125.0/24 45400 -211.46.126.0/23 4766 -211.46.128.0/20 17584 -211.46.144.0/21 4766 -211.46.152.0/22 17584 -211.46.156.0/22 4766 -211.46.160.0/19 4766 -211.46.192.0/18 4766 -211.47.0.0/20 4766 -211.47.16.0/21 4766 -211.47.24.0/22 4766 -211.47.28.0/23 4766 -211.47.30.0/24 38688 -211.47.31.0/24 4766 -211.47.32.0/24 4766 -211.47.33.0/24 45401 -211.47.34.0/23 4766 -211.47.36.0/22 4766 -211.47.40.0/21 4766 -211.47.48.0/20 4766 -211.47.64.0/24 3786 -211.47.65.0/24 9318 -211.47.66.0/23 9318 -211.47.68.0/23 9318 -211.47.70.0/24 3786 -211.47.71.0/24 9318 -211.47.72.0/24 9318 -211.47.73.0/24 3786 -211.47.74.0/23 3786 -211.47.76.0/22 3786 -211.47.80.0/21 9762 -211.47.88.0/22 9762 -211.47.92.0/24 7562 -211.47.94.0/24 7562 -211.47.96.0/19 9762 -211.47.128.0/19 38661 -211.47.160.0/22 9646 -211.47.176.0/20 38661 -211.47.192.0/19 18302 -211.47.224.0/20 17877 -211.48.0.0/17 4766 -211.48.128.0/19 4766 -211.48.160.0/21 4766 -211.48.168.0/23 4766 -211.48.170.0/24 4766 -211.48.171.0/24 9868 -211.48.172.0/22 4766 -211.48.176.0/20 4766 -211.48.192.0/19 4766 -211.48.224.0/20 4766 -211.48.240.0/24 17615 -211.48.241.0/24 4766 -211.48.242.0/23 4766 -211.48.244.0/22 4766 -211.48.248.0/21 4766 -211.49.0.0/17 9318 -211.49.128.0/19 9318 -211.49.160.0/23 9318 -211.49.162.0/24 45403 -211.49.163.0/24 9318 -211.49.164.0/22 9318 -211.49.168.0/21 9318 -211.49.176.0/20 9318 -211.49.192.0/18 9318 -211.50.0.0/19 3786 -211.50.32.0/24 45974 -211.50.33.0/24 3786 -211.50.34.0/23 3786 -211.50.36.0/22 3786 -211.50.40.0/21 3786 -211.50.48.0/21 3786 -211.50.56.0/23 3786 -211.50.58.0/24 45974 -211.50.59.0/24 3786 -211.50.60.0/22 3786 -211.50.64.0/18 3786 -211.50.128.0/17 3786 -211.51.0.0/20 4766 -211.51.16.0/21 4766 -211.51.24.0/22 4766 -211.51.28.0/24 9696 -211.51.29.0/24 4766 -211.51.30.0/23 4766 -211.51.32.0/22 4766 -211.51.36.0/23 4766 -211.51.38.0/24 4766 -211.51.39.0/24 9852 -211.51.40.0/21 4766 -211.51.48.0/20 4766 -211.51.64.0/19 4766 -211.51.96.0/22 4766 -211.51.100.0/23 4766 -211.51.102.0/24 4766 -211.51.103.0/24 18314 -211.51.104.0/21 4766 -211.51.112.0/20 4766 -211.51.128.0/20 4766 -211.51.144.0/24 4766 -211.51.145.0/24 38427 -211.51.146.0/23 4766 -211.51.148.0/22 4766 -211.51.152.0/21 4766 -211.51.160.0/19 4766 -211.51.192.0/18 4766 -211.52.0.0/18 4766 -211.52.64.0/18 4663 -211.52.128.0/20 9318 -211.52.144.0/21 18302 -211.52.152.0/23 18302 -211.52.154.0/24 17838 -211.52.155.0/24 18302 -211.52.156.0/22 18302 -211.52.160.0/19 9318 -211.52.192.0/19 9318 -211.52.224.0/20 9318 -211.52.240.0/23 9318 -211.52.242.0/24 9318 -211.52.243.0/24 38695 -211.52.244.0/22 9318 -211.52.248.0/21 9318 -211.53.0.0/20 3786 -211.53.16.0/21 3786 -211.53.24.0/24 3786 -211.53.25.0/24 10185 -211.53.26.0/23 3786 -211.53.28.0/22 3786 -211.53.32.0/20 3786 -211.53.48.0/21 3786 -211.53.56.0/24 18294 -211.53.57.0/24 3786 -211.53.58.0/23 3786 -211.53.60.0/22 3786 -211.53.64.0/19 3786 -211.53.96.0/22 3786 -211.53.100.0/23 3786 -211.53.102.0/24 38087 -211.53.103.0/24 3786 -211.53.104.0/21 3786 -211.53.112.0/20 3786 -211.53.128.0/18 3786 -211.53.192.0/20 3786 -211.53.208.0/23 3786 -211.53.210.0/24 3786 -211.53.211.0/24 45387 -211.53.212.0/22 3786 -211.53.216.0/22 3786 -211.53.220.0/24 3786 -211.53.221.0/24 17862 -211.53.222.0/23 3786 -211.53.224.0/19 3786 -211.54.0.0/23 4766 -211.54.2.0/24 10069 -211.54.3.0/24 4766 -211.54.4.0/23 4766 -211.54.6.0/24 10060 -211.54.7.0/24 4766 -211.54.8.0/21 4766 -211.54.16.0/20 4766 -211.54.32.0/19 4766 -211.54.64.0/18 4766 -211.54.128.0/17 4766 -211.55.0.0/21 4766 -211.55.8.0/24 4766 -211.55.9.0/24 17594 -211.55.10.0/23 4766 -211.55.12.0/22 4766 -211.55.16.0/20 4766 -211.55.32.0/20 4766 -211.55.48.0/22 4766 -211.55.52.0/24 4766 -211.55.53.0/24 55610 -211.55.54.0/23 4766 -211.55.56.0/21 4766 -211.55.64.0/18 4766 -211.55.128.0/17 4766 -211.56.8.0/21 4766 -211.56.32.0/19 4766 -211.56.64.0/18 4766 -211.56.128.0/20 9457 -211.56.144.0/21 9457 -211.56.152.0/22 38676 -211.56.156.0/24 38676 -211.56.157.0/24 9457 -211.56.158.0/24 38676 -211.56.159.0/24 9457 -211.56.160.0/24 38676 -211.56.161.0/24 9457 -211.56.162.0/24 38676 -211.56.163.0/24 9457 -211.56.164.0/22 9457 -211.56.168.0/23 9457 -211.56.170.0/23 38676 -211.56.172.0/24 9457 -211.56.173.0/24 38676 -211.56.174.0/23 9457 -211.56.176.0/20 9457 -211.56.192.0/19 9848 -211.56.224.0/19 17877 -211.57.0.0/19 4766 -211.57.32.0/24 45400 -211.57.33.0/24 4766 -211.57.34.0/23 4766 -211.57.36.0/22 4766 -211.57.40.0/23 4766 -211.57.42.0/24 4766 -211.57.43.0/24 45400 -211.57.44.0/22 4766 -211.57.48.0/20 4766 -211.57.64.0/18 4766 -211.57.128.0/20 4766 -211.57.144.0/21 4766 -211.57.152.0/24 4766 -211.57.153.0/24 17841 -211.57.154.0/23 4766 -211.57.156.0/22 4766 -211.57.160.0/19 4766 -211.57.192.0/19 4766 -211.57.224.0/22 4766 -211.57.228.0/23 4766 -211.57.230.0/24 4766 -211.57.231.0/24 10186 -211.57.232.0/21 4766 -211.57.240.0/20 4766 -211.58.0.0/17 9318 -211.58.128.0/18 9318 -211.58.192.0/19 9318 -211.58.224.0/20 9318 -211.58.240.0/24 58809 -211.58.241.0/24 9318 -211.58.242.0/23 9318 -211.58.244.0/22 9318 -211.58.248.0/21 9318 -211.59.0.0/18 9318 -211.59.64.0/20 9318 -211.59.80.0/21 9318 -211.59.88.0/24 38698 -211.59.89.0/24 9318 -211.59.90.0/23 9318 -211.59.92.0/22 9318 -211.59.96.0/19 9318 -211.59.128.0/21 9318 -211.59.136.0/22 9318 -211.59.140.0/23 9318 -211.59.142.0/24 9318 -211.59.143.0/24 38698 -211.59.144.0/20 9318 -211.59.160.0/19 9318 -211.59.192.0/18 9318 -211.60.0.0/20 3786 -211.60.16.0/22 3786 -211.60.20.0/24 9767 -211.60.21.0/24 3786 -211.60.22.0/23 3786 -211.60.24.0/21 3786 -211.60.32.0/19 3786 -211.60.64.0/18 3786 -211.60.128.0/21 3786 -211.60.136.0/22 3786 -211.60.140.0/24 3786 -211.60.141.0/24 17862 -211.60.142.0/23 3786 -211.60.144.0/20 3786 -211.60.160.0/19 3786 -211.60.192.0/19 3786 -211.60.224.0/21 3786 -211.60.232.0/24 9856 -211.60.233.0/24 3786 -211.60.234.0/23 3786 -211.60.236.0/22 3786 -211.60.240.0/20 3786 -211.61.0.0/22 9316 -211.61.4.0/23 17585 -211.61.6.0/23 9316 -211.61.8.0/21 9316 -211.61.16.0/24 9316 -211.61.17.0/24 23579 -211.61.18.0/24 9316 -211.61.19.0/24 23579 -211.61.20.0/22 23579 -211.61.24.0/24 23579 -211.61.25.0/24 9316 -211.61.26.0/23 9316 -211.61.28.0/24 9316 -211.61.29.0/24 17841 -211.61.30.0/23 9316 -211.61.32.0/20 9316 -211.61.48.0/22 9849 -211.61.52.0/22 9316 -211.61.56.0/21 9316 -211.61.64.0/19 4670 -211.61.112.0/21 4670 -211.61.120.0/24 4670 -211.61.121.0/24 10185 -211.61.122.0/23 4670 -211.61.124.0/22 4670 -211.61.128.0/20 9457 -211.61.144.0/21 9457 -211.61.152.0/23 9457 -211.61.154.0/24 9457 -211.61.155.0/24 38676 -211.61.156.0/22 38676 -211.61.160.0/19 9457 -211.61.192.0/21 9457 -211.61.200.0/21 45374 -211.61.208.0/20 9457 -211.61.224.0/20 9457 -211.61.240.0/21 45374 -211.61.248.0/24 9457 -211.61.249.0/24 17878 -211.61.250.0/23 9457 -211.61.252.0/22 9457 -211.62.0.0/17 4766 -211.62.128.0/22 3786 -211.62.132.0/22 38120 -211.62.136.0/23 38120 -211.62.138.0/24 38120 -211.62.139.0/24 3786 -211.62.140.0/22 3786 -211.62.144.0/21 3786 -211.62.152.0/23 3786 -211.62.154.0/24 3786 -211.62.155.0/24 55592 -211.62.156.0/22 3786 -211.62.160.0/19 3786 -211.62.192.0/19 3786 -211.62.224.0/20 3786 -211.62.240.0/21 3786 -211.62.248.0/24 3786 -211.62.249.0/24 9972 -211.62.250.0/23 3786 -211.62.252.0/22 3786 -211.63.0.0/20 18302 -211.63.16.0/22 18302 -211.63.20.0/24 45393 -211.63.21.0/24 18302 -211.63.22.0/23 18302 -211.63.24.0/21 18302 -211.63.32.0/20 3786 -211.63.48.0/21 3786 -211.63.56.0/24 3786 -211.63.57.0/24 9647 -211.63.58.0/23 3786 -211.63.60.0/22 3786 -211.63.64.0/19 38661 -211.63.128.0/19 4766 -211.63.160.0/21 4766 -211.63.168.0/22 4766 -211.63.172.0/23 4766 -211.63.174.0/24 4766 -211.63.175.0/24 17588 -211.63.176.0/20 4766 -211.63.192.0/19 4766 -211.63.224.0/21 4766 -211.63.232.0/23 4766 -211.63.234.0/24 4766 -211.63.235.0/24 55616 -211.63.236.0/22 4766 -211.63.240.0/20 4766 -211.64.0.0/15 4538 -211.66.0.0/19 24357 -211.66.32.0/19 4538 -211.66.64.0/20 4538 -211.66.80.0/22 4538 -211.66.84.0/23 4538 -211.66.86.0/23 24357 -211.66.88.0/21 4538 -211.66.96.0/19 4538 -211.66.128.0/17 4538 -211.67.0.0/16 4538 -211.68.0.0/20 4538 -211.68.16.0/24 4538 -211.68.17.0/24 23910 -211.68.18.0/23 4538 -211.68.20.0/22 4538 -211.68.24.0/21 4538 -211.68.32.0/19 4538 -211.68.64.0/19 4538 -211.68.96.0/20 4538 -211.68.112.0/21 4538 -211.68.120.0/22 4538 -211.68.124.0/23 4538 -211.68.126.0/24 23910 -211.68.127.0/24 4538 -211.68.128.0/17 4538 -211.69.0.0/16 4538 -211.70.0.0/15 4538 -211.72.0.0/16 3462 -211.73.0.0/19 9676 -211.73.64.0/19 7539 -211.73.128.0/19 9674 -211.73.160.0/19 18049 -211.73.192.0/19 17420 -211.74.0.0/16 4780 -211.75.0.0/16 3462 -211.76.0.0/19 7478 -211.76.32.0/21 4662 -211.76.40.0/22 24164 -211.76.44.0/23 24163 -211.76.46.0/23 24164 -211.76.48.0/22 4662 -211.76.52.0/23 4662 -211.76.54.0/24 4662 -211.76.55.0/24 24164 -211.76.56.0/22 4662 -211.76.60.0/23 4662 -211.76.62.0/23 24164 -211.76.64.0/21 4662 -211.76.72.0/22 4662 -211.76.76.0/24 4662 -211.76.77.0/24 24164 -211.76.78.0/24 4662 -211.76.79.0/24 24164 -211.76.80.0/20 9676 -211.76.96.0/21 17709 -211.76.104.0/23 24154 -211.76.106.0/23 17709 -211.76.108.0/22 17709 -211.76.112.0/23 9924 -211.76.114.0/24 38841 -211.76.115.0/24 9924 -211.76.116.0/23 38841 -211.76.118.0/24 38841 -211.76.119.0/24 9924 -211.76.120.0/21 9924 -211.76.128.0/20 9216 -211.76.144.0/24 18045 -211.76.146.0/23 18045 -211.76.148.0/22 18045 -211.76.152.0/23 18045 -211.76.155.0/24 18045 -211.76.156.0/22 18045 -211.76.160.0/20 18181 -211.76.176.0/20 4780 -211.76.240.0/20 18185 -211.77.0.0/16 9674 -211.78.0.0/23 9918 -211.78.2.0/24 9918 -211.78.3.0/24 9919 -211.78.4.0/22 9918 -211.78.8.0/22 9918 -211.78.12.0/24 9919 -211.78.13.0/24 9918 -211.78.14.0/23 9918 -211.78.16.0/23 9918 -211.78.18.0/23 9919 -211.78.20.0/23 9918 -211.78.22.0/23 9919 -211.78.24.0/21 9918 -211.78.32.0/19 9918 -211.78.64.0/24 38837 -211.78.78.0/23 38837 -211.78.80.0/20 17416 -211.78.128.0/18 9919 -211.78.208.0/20 9924 -211.78.240.0/20 18179 -211.79.0.0/19 9924 -211.79.34.0/23 17421 -211.79.36.0/23 17421 -211.79.38.0/24 17421 -211.79.40.0/24 17421 -211.79.42.0/23 17421 -211.79.44.0/24 17421 -211.79.48.0/20 7539 -211.79.64.0/19 9676 -211.79.112.0/20 17809 -211.79.128.0/18 4782 -211.79.192.0/20 17420 -211.80.0.0/15 4538 -211.82.0.0/16 4538 -211.83.0.0/18 4538 -211.83.64.0/19 4538 -211.83.96.0/20 24355 -211.83.112.0/20 4538 -211.83.128.0/17 4538 -211.84.0.0/14 4538 -211.88.0.0/16 9306 -211.89.0.0/16 7641 -211.90.0.0/18 4837 -211.90.64.0/20 4837 -211.90.80.0/21 4837 -211.90.216.0/21 4837 -211.90.224.0/19 4837 -211.91.0.0/18 4837 -211.91.64.0/19 4837 -211.91.96.0/20 4837 -211.91.120.0/21 4837 -211.91.128.0/19 4837 -211.91.160.0/20 4837 -211.91.176.0/21 4837 -211.91.216.0/21 4837 -211.91.224.0/19 4837 -211.92.0.0/17 4837 -211.92.128.0/18 4837 -211.92.192.0/19 4837 -211.92.224.0/20 4837 -211.92.244.0/22 4837 -211.93.0.0/17 4837 -211.93.128.0/19 4837 -211.93.160.0/21 4837 -211.93.192.0/21 4837 -211.94.64.0/18 4808 -211.94.128.0/18 4808 -211.94.192.0/18 4837 -211.95.0.0/19 17621 -211.95.32.0/20 17621 -211.95.48.0/22 17621 -211.95.52.0/23 17621 -211.95.54.0/24 138421 -211.95.55.0/24 17621 -211.95.56.0/21 17621 -211.95.64.0/21 17621 -211.95.72.0/23 17621 -211.95.74.0/24 17621 -211.95.75.0/24 138421 -211.95.76.0/24 138421 -211.95.77.0/24 17621 -211.95.78.0/23 17621 -211.95.80.0/20 17621 -211.95.96.0/19 17621 -211.95.128.0/19 135061 -211.95.192.0/24 17816 -211.95.193.0/24 17622 -211.95.194.0/23 17816 -211.95.196.0/22 17816 -211.95.200.0/22 17816 -211.95.204.0/24 17622 -211.95.205.0/24 17816 -211.95.206.0/24 17622 -211.95.207.0/24 17816 -211.95.208.0/20 17816 -211.95.224.0/19 17816 -211.96.0.0/20 17816 -211.96.16.0/23 17816 -211.96.18.0/24 17816 -211.96.19.0/24 17622 -211.96.20.0/23 17816 -211.96.22.0/24 17816 -211.96.23.0/24 17622 -211.96.24.0/21 17622 -211.96.32.0/19 17816 -211.96.64.0/19 17816 -211.96.96.0/21 17816 -211.96.104.0/23 17816 -211.96.106.0/24 17816 -211.96.107.0/24 17623 -211.96.108.0/22 17816 -211.96.112.0/20 136958 -211.96.128.0/17 17816 -211.97.0.0/19 17622 -211.97.32.0/19 17816 -211.97.64.0/18 4837 -211.97.128.0/19 4837 -211.97.160.0/21 4837 -211.97.192.0/18 4837 -211.98.0.0/21 9394 -211.98.8.0/22 9394 -211.98.12.0/23 9394 -211.98.14.0/24 9394 -211.98.15.0/24 37981 -211.98.16.0/23 9394 -211.98.18.0/23 45069 -211.98.20.0/24 9394 -211.98.21.0/24 45069 -211.98.22.0/23 45069 -211.98.24.0/24 24138 -211.98.25.0/24 9394 -211.98.26.0/23 9394 -211.98.28.0/22 9394 -211.98.32.0/19 9394 -211.98.64.0/20 9394 -211.98.80.0/21 9394 -211.98.88.0/23 9394 -211.98.90.0/23 38341 -211.98.92.0/23 9394 -211.98.94.0/24 9394 -211.98.95.0/24 38341 -211.98.96.0/24 9394 -211.98.97.0/24 63711 -211.98.98.0/23 9394 -211.98.100.0/23 9394 -211.98.102.0/24 9808 -211.98.103.0/24 9394 -211.98.104.0/21 9394 -211.98.112.0/22 9394 -211.98.116.0/24 9808 -211.98.117.0/24 9394 -211.98.118.0/23 9394 -211.98.120.0/21 9394 -211.98.128.0/23 9394 -211.98.130.0/24 45069 -211.98.131.0/24 9394 -211.98.132.0/24 24138 -211.98.133.0/24 45069 -211.98.134.0/23 9394 -211.98.136.0/22 9394 -211.98.140.0/24 24138 -211.98.141.0/24 9394 -211.98.142.0/24 37981 -211.98.143.0/24 9394 -211.98.144.0/21 9394 -211.98.152.0/24 9394 -211.98.153.0/24 45069 -211.98.154.0/23 9394 -211.98.156.0/23 45069 -211.98.158.0/23 9394 -211.98.160.0/20 9394 -211.98.176.0/24 38341 -211.98.177.0/24 9394 -211.98.178.0/23 9394 -211.98.180.0/22 9394 -211.98.184.0/23 9394 -211.98.186.0/24 9394 -211.98.187.0/24 38341 -211.98.188.0/23 38341 -211.98.190.0/23 9394 -211.98.192.0/22 63711 -211.98.196.0/22 9394 -211.98.200.0/22 63711 -211.98.204.0/23 63711 -211.98.206.0/24 63711 -211.98.207.0/24 9808 -211.98.208.0/20 9394 -211.98.224.0/21 9394 -211.98.232.0/23 9394 -211.98.234.0/24 9394 -211.98.235.0/24 9808 -211.98.236.0/22 9394 -211.98.240.0/23 9394 -211.98.242.0/24 45069 -211.98.243.0/24 9394 -211.98.244.0/22 9394 -211.98.248.0/21 9394 -211.99.0.0/19 9814 -211.99.32.0/19 4808 -211.99.64.0/19 4808 -211.99.128.0/19 17429 -211.99.160.0/19 4835 -211.99.192.0/20 4835 -211.99.208.0/21 4835 -211.99.216.0/24 9308 -211.99.217.0/24 4835 -211.99.218.0/23 4835 -211.99.220.0/22 4835 -211.99.224.0/19 4808 -211.100.0.0/18 23724 -211.100.64.0/22 23724 -211.100.68.0/23 23724 -211.100.70.0/24 23724 -211.100.71.0/24 9803 -211.100.72.0/24 9803 -211.100.73.0/24 23724 -211.100.74.0/23 23724 -211.100.76.0/24 9803 -211.100.77.0/24 23724 -211.100.78.0/23 23724 -211.100.80.0/20 23724 -211.100.96.0/21 4847 -211.100.192.0/20 4808 -211.100.224.0/19 17964 -211.101.0.0/19 9395 -211.101.32.0/19 17964 -211.101.128.0/18 59050 -211.101.240.0/20 59050 -211.102.80.0/20 134763 -211.102.128.0/18 4837 -211.102.192.0/23 4847 -211.102.208.0/20 23724 -211.102.240.0/21 24147 -211.102.248.0/24 24147 -211.102.249.0/24 23724 -211.102.250.0/23 23724 -211.102.252.0/22 23724 -211.103.0.0/18 56046 -211.103.64.0/20 9808 -211.103.80.0/20 38019 -211.103.96.0/19 56046 -211.103.128.0/20 4808 -211.103.144.0/21 4808 -211.103.152.0/21 4847 -211.103.160.0/21 4808 -211.103.168.0/23 4808 -211.103.170.0/23 17964 -211.103.172.0/22 4808 -211.103.176.0/20 4808 -211.103.192.0/22 4808 -211.103.196.0/23 4808 -211.103.198.0/23 17964 -211.103.200.0/21 4808 -211.103.208.0/20 4808 -211.103.224.0/19 4808 -211.104.0.0/18 4766 -211.104.64.0/19 4766 -211.104.96.0/21 4766 -211.104.104.0/22 4766 -211.104.108.0/23 4766 -211.104.110.0/24 4766 -211.104.111.0/24 10156 -211.104.112.0/20 4766 -211.104.128.0/19 4766 -211.104.160.0/24 45382 -211.104.161.0/24 4766 -211.104.162.0/23 4766 -211.104.164.0/22 4766 -211.104.168.0/21 4766 -211.104.176.0/20 4766 -211.104.192.0/18 4766 -211.105.0.0/16 4766 -211.106.0.0/20 4766 -211.106.16.0/22 4766 -211.106.20.0/23 4766 -211.106.22.0/24 9684 -211.106.23.0/24 4766 -211.106.24.0/21 4766 -211.106.32.0/21 4766 -211.106.40.0/22 4766 -211.106.44.0/23 4766 -211.106.46.0/23 46005 -211.106.48.0/20 4766 -211.106.64.0/18 4766 -211.106.128.0/22 4766 -211.106.132.0/24 131477 -211.106.133.0/24 4766 -211.106.134.0/23 4766 -211.106.136.0/21 4766 -211.106.144.0/20 4766 -211.106.160.0/19 4766 -211.106.192.0/18 4766 -211.107.0.0/16 4766 -211.108.0.0/16 9318 -211.109.0.0/18 9318 -211.109.64.0/20 9318 -211.109.80.0/21 9318 -211.109.88.0/22 9318 -211.109.92.0/23 9318 -211.109.94.0/24 9318 -211.109.95.0/24 10035 -211.109.96.0/20 9318 -211.109.112.0/21 9318 -211.109.120.0/24 9318 -211.109.121.0/24 17873 -211.109.122.0/24 17873 -211.109.123.0/24 9318 -211.109.124.0/22 9318 -211.109.128.0/18 9318 -211.109.192.0/19 9318 -211.109.224.0/21 9318 -211.109.232.0/22 9318 -211.109.236.0/23 9318 -211.109.238.0/24 9318 -211.109.239.0/24 38123 -211.109.240.0/21 9318 -211.109.248.0/24 9318 -211.109.249.0/24 55605 -211.109.250.0/23 9318 -211.109.252.0/22 9318 -211.110.0.0/19 9318 -211.110.32.0/20 9318 -211.110.48.0/21 9318 -211.110.56.0/22 9318 -211.110.60.0/23 9318 -211.110.62.0/24 38688 -211.110.63.0/24 9318 -211.110.64.0/23 45370 -211.110.66.0/23 9318 -211.110.68.0/22 9318 -211.110.72.0/21 9318 -211.110.80.0/21 9318 -211.110.88.0/22 9318 -211.110.92.0/23 9318 -211.110.94.0/24 9318 -211.110.95.0/24 9771 -211.110.96.0/19 9318 -211.110.128.0/19 9318 -211.110.160.0/21 9318 -211.110.168.0/22 9318 -211.110.172.0/23 9318 -211.110.174.0/24 9318 -211.110.175.0/24 38688 -211.110.176.0/22 9318 -211.110.180.0/23 9318 -211.110.182.0/24 9318 -211.110.183.0/24 38688 -211.110.184.0/24 9318 -211.110.185.0/24 45370 -211.110.186.0/23 9318 -211.110.188.0/23 9318 -211.110.190.0/24 38688 -211.110.191.0/24 9318 -211.110.192.0/19 9318 -211.110.224.0/20 9318 -211.110.240.0/20 18302 -211.111.0.0/22 9457 -211.111.4.0/24 9457 -211.111.5.0/24 17849 -211.111.6.0/23 9457 -211.111.8.0/21 9457 -211.111.16.0/21 17583 -211.111.24.0/21 9457 -211.111.32.0/19 9457 -211.111.64.0/21 9457 -211.111.72.0/22 9457 -211.111.76.0/24 9457 -211.111.77.0/24 17838 -211.111.78.0/23 9457 -211.111.80.0/20 9457 -211.111.96.0/19 9457 -211.111.128.0/19 9848 -211.111.160.0/20 9853 -211.111.176.0/20 9644 -211.111.192.0/20 9765 -211.111.208.0/20 10160 -211.111.224.0/19 17608 -211.112.0.0/18 4663 -211.112.64.0/19 9976 -211.112.96.0/19 17608 -211.112.128.0/20 9316 -211.112.144.0/21 9316 -211.112.152.0/23 9316 -211.112.154.0/24 17841 -211.112.155.0/24 9316 -211.112.156.0/22 9316 -211.112.160.0/20 17858 -211.112.176.0/20 9316 -211.112.192.0/20 17858 -211.112.208.0/20 9316 -211.112.224.0/19 9316 -211.113.0.0/17 4766 -211.113.128.0/17 4670 -211.114.0.0/21 4766 -211.114.8.0/22 4766 -211.114.12.0/23 4766 -211.114.14.0/24 4766 -211.114.15.0/24 45400 -211.114.16.0/22 4766 -211.114.20.0/23 4766 -211.114.22.0/24 17841 -211.114.23.0/24 4766 -211.114.24.0/24 17841 -211.114.25.0/24 4766 -211.114.26.0/24 4766 -211.114.27.0/24 45400 -211.114.28.0/22 4766 -211.114.32.0/22 4766 -211.114.36.0/24 45400 -211.114.37.0/24 4766 -211.114.38.0/23 4766 -211.114.40.0/22 4766 -211.114.44.0/24 4766 -211.114.45.0/24 9528 -211.114.46.0/24 9528 -211.114.47.0/24 4766 -211.114.48.0/20 4766 -211.114.64.0/19 4766 -211.114.96.0/22 4766 -211.114.100.0/24 4766 -211.114.101.0/24 45400 -211.114.102.0/23 10176 -211.114.104.0/21 4766 -211.114.112.0/21 4766 -211.114.120.0/24 38402 -211.114.121.0/24 38406 -211.114.122.0/24 38411 -211.114.123.0/24 4766 -211.114.124.0/22 4766 -211.114.128.0/19 4766 -211.114.160.0/24 4766 -211.114.161.0/24 9528 -211.114.162.0/23 4766 -211.114.164.0/23 4766 -211.114.166.0/24 4766 -211.114.167.0/24 9528 -211.114.168.0/23 4766 -211.114.170.0/24 4766 -211.114.171.0/24 45400 -211.114.172.0/22 4766 -211.114.176.0/20 4766 -211.114.192.0/18 4766 -211.115.0.0/21 9644 -211.115.8.0/23 9644 -211.115.10.0/23 4792 -211.115.12.0/24 9644 -211.115.13.0/24 9318 -211.115.14.0/23 9644 -211.115.16.0/20 9644 -211.115.32.0/19 9318 -211.115.64.0/18 3786 -211.115.192.0/20 9848 -211.115.208.0/22 9848 -211.115.212.0/24 9848 -211.115.213.0/24 9952 -211.115.214.0/23 9848 -211.115.216.0/21 9848 -211.115.224.0/19 18310 -211.116.0.0/18 3786 -211.116.64.0/18 17854 -211.116.128.0/24 18302 -211.116.129.0/24 9318 -211.116.130.0/23 18302 -211.116.132.0/22 18302 -211.116.136.0/21 18302 -211.116.144.0/20 18302 -211.116.176.0/20 9848 -211.116.192.0/20 9848 -211.116.208.0/20 23584 -211.116.224.0/19 38661 -211.117.0.0/19 9318 -211.117.32.0/20 9318 -211.117.48.0/22 9318 -211.117.52.0/23 9318 -211.117.54.0/24 9318 -211.117.55.0/24 18299 -211.117.56.0/21 9318 -211.117.64.0/18 9318 -211.117.128.0/18 9318 -211.117.192.0/19 9318 -211.117.224.0/20 9318 -211.117.240.0/21 9318 -211.117.248.0/23 9318 -211.117.250.0/24 9318 -211.117.251.0/24 9532 -211.117.252.0/22 9318 -211.118.0.0/18 3786 -211.118.64.0/19 3786 -211.118.96.0/20 3786 -211.118.112.0/24 38127 -211.118.113.0/24 3786 -211.118.114.0/23 3786 -211.118.116.0/22 3786 -211.118.120.0/21 3786 -211.118.128.0/20 3786 -211.118.144.0/24 17862 -211.118.145.0/24 3786 -211.118.146.0/23 3786 -211.118.148.0/22 3786 -211.118.152.0/21 3786 -211.118.160.0/20 3786 -211.118.176.0/24 18305 -211.118.177.0/24 3786 -211.118.178.0/23 3786 -211.118.180.0/22 3786 -211.118.184.0/21 3786 -211.118.192.0/18 3786 -211.119.0.0/17 3786 -211.119.128.0/19 3786 -211.119.160.0/20 3786 -211.119.176.0/23 3786 -211.119.178.0/24 38127 -211.119.179.0/24 3786 -211.119.180.0/22 3786 -211.119.184.0/22 3786 -211.119.188.0/24 3786 -211.119.189.0/24 9527 -211.119.190.0/23 3786 -211.119.192.0/19 3786 -211.119.224.0/20 3786 -211.119.240.0/21 3786 -211.119.248.0/22 3786 -211.119.252.0/24 3786 -211.119.253.0/24 17862 -211.119.254.0/23 3786 -211.120.0.0/21 4694 -211.120.8.0/24 4725 -211.120.9.0/24 4694 -211.120.10.0/24 4725 -211.120.11.0/24 4694 -211.120.12.0/22 4694 -211.120.16.0/21 4694 -211.120.24.0/22 4694 -211.120.28.0/23 4725 -211.120.30.0/23 4694 -211.120.32.0/22 4694 -211.120.36.0/24 17676 -211.120.37.0/24 4694 -211.120.38.0/23 4694 -211.120.40.0/21 4694 -211.120.48.0/20 4694 -211.120.64.0/19 4685 -211.120.96.0/19 7516 -211.120.128.0/18 9617 -211.120.192.0/20 7668 -211.120.208.0/20 23777 -211.120.224.0/20 9621 -211.120.240.0/21 2515 -211.121.0.0/16 4725 -211.122.0.0/15 4713 -211.124.0.0/16 9617 -211.125.0.0/18 2510 -211.125.64.0/20 7506 -211.125.80.0/21 7506 -211.125.88.0/22 7506 -211.125.94.0/23 7506 -211.125.96.0/19 9622 -211.125.128.0/20 9619 -211.125.144.0/20 10019 -211.125.160.0/19 2516 -211.125.192.0/19 7524 -211.125.224.0/20 9990 -211.125.240.0/20 9614 -211.126.0.0/16 2516 -211.127.0.0/16 4725 -211.128.16.0/20 17529 -211.128.32.0/19 2527 -211.128.64.0/19 7682 -211.128.96.0/20 9993 -211.128.128.0/17 2510 -211.129.0.0/16 4713 -211.130.0.0/18 4713 -211.130.64.0/19 4713 -211.130.96.0/19 2914 -211.130.128.0/17 4713 -211.131.0.0/16 4725 -211.132.0.0/20 9999 -211.132.16.0/20 4723 -211.132.32.0/19 4685 -211.132.64.0/19 7522 -211.132.96.0/19 7679 -211.132.128.0/18 9595 -211.132.192.0/21 9998 -211.132.200.0/21 2514 -211.132.208.0/20 9998 -211.132.224.0/19 9998 -211.133.0.0/17 2510 -211.133.128.0/23 4694 -211.133.130.0/24 2554 -211.133.131.0/24 4694 -211.133.132.0/24 2554 -211.133.133.0/24 4694 -211.133.134.0/24 2554 -211.133.135.0/24 4694 -211.133.136.0/23 4694 -211.133.138.0/24 4694 -211.133.139.0/24 2554 -211.133.140.0/22 4694 -211.133.144.0/20 10004 -211.133.160.0/19 4704 -211.133.192.0/19 10010 -211.133.224.0/20 10001 -211.133.240.0/21 4694 -211.133.248.0/22 4694 -211.133.252.0/24 4725 -211.133.253.0/24 4694 -211.133.254.0/23 4694 -211.134.0.0/16 2516 -211.135.0.0/17 9617 -211.135.128.0/17 2518 -211.136.0.0/20 9808 -211.136.16.0/21 9808 -211.136.24.0/21 56048 -211.136.32.0/19 56048 -211.136.64.0/20 56048 -211.136.80.0/21 9808 -211.136.88.0/21 56048 -211.136.96.0/21 24400 -211.136.104.0/22 9808 -211.136.108.0/22 24400 -211.136.112.0/20 24400 -211.136.128.0/19 24400 -211.136.160.0/20 24400 -211.136.176.0/24 24400 -211.136.177.0/24 9808 -211.136.178.0/23 24400 -211.136.180.0/22 24400 -211.136.184.0/21 24400 -211.136.192.0/18 56040 -211.137.0.0/19 56044 -211.137.32.0/20 56044 -211.137.48.0/20 9808 -211.137.64.0/18 9808 -211.137.128.0/20 9808 -211.137.144.0/20 38019 -211.137.160.0/20 38019 -211.137.176.0/20 24444 -211.137.192.0/20 24444 -211.137.208.0/20 134810 -211.137.224.0/19 132525 -211.138.0.0/20 24547 -211.138.16.0/20 24445 -211.138.32.0/19 9808 -211.138.64.0/19 9808 -211.138.96.0/20 56042 -211.138.112.0/20 56041 -211.138.128.0/22 56041 -211.138.132.0/22 9808 -211.138.136.0/21 9808 -211.138.144.0/20 9808 -211.138.160.0/19 9808 -211.138.192.0/20 56046 -211.138.208.0/20 9808 -211.138.224.0/20 56047 -211.138.240.0/20 9808 -211.139.0.0/18 9808 -211.139.64.0/19 9808 -211.139.96.0/19 56046 -211.139.128.0/17 56040 -211.140.0.0/17 56041 -211.140.128.0/18 56041 -211.140.192.0/18 56044 -211.141.0.0/18 134810 -211.141.64.0/20 134810 -211.141.80.0/20 9808 -211.141.96.0/19 9808 -211.141.128.0/17 9808 -211.142.0.0/20 56042 -211.142.16.0/22 56042 -211.142.20.0/23 56042 -211.142.22.0/24 132510 -211.142.23.0/24 56042 -211.142.24.0/22 56042 -211.142.28.0/23 56042 -211.142.30.0/24 132510 -211.142.31.0/24 56042 -211.142.32.0/19 56042 -211.142.64.0/19 56042 -211.142.96.0/19 24445 -211.142.128.0/18 24445 -211.142.192.0/20 24445 -211.142.208.0/20 56047 -211.142.224.0/19 56047 -211.143.0.0/19 56047 -211.143.32.0/20 56047 -211.143.48.0/20 24547 -211.143.64.0/18 24547 -211.143.128.0/20 24547 -211.143.144.0/20 9808 -211.143.160.0/19 9808 -211.143.192.0/19 9808 -211.143.224.0/19 56046 -211.144.4.0/23 4808 -211.144.6.0/24 4808 -211.144.9.0/24 4808 -211.144.10.0/24 4808 -211.144.12.0/22 4808 -211.144.16.0/24 4808 -211.144.19.0/24 4808 -211.144.20.0/24 4808 -211.144.22.0/24 4808 -211.144.24.0/23 4808 -211.144.27.0/24 4808 -211.144.28.0/22 4808 -211.144.32.0/19 9811 -211.144.64.0/19 9812 -211.144.96.0/24 17775 -211.144.97.0/24 17621 -211.144.98.0/23 17775 -211.144.100.0/23 17621 -211.144.102.0/23 17775 -211.144.104.0/24 17621 -211.144.105.0/24 17775 -211.144.106.0/23 17621 -211.144.108.0/23 17621 -211.144.110.0/23 17775 -211.144.112.0/23 17621 -211.144.114.0/24 17621 -211.144.115.0/24 17775 -211.144.116.0/23 17775 -211.144.118.0/24 17775 -211.144.119.0/24 4812 -211.144.120.0/22 4812 -211.144.124.0/23 17621 -211.144.126.0/23 4812 -211.144.128.0/19 9811 -211.144.160.0/20 4134 -211.144.192.0/20 17621 -211.144.208.0/20 23853 -211.144.224.0/19 4808 -211.145.0.0/18 4808 -211.145.64.0/20 4808 -211.146.0.0/20 7641 -211.146.16.0/24 4847 -211.146.17.0/24 7641 -211.146.18.0/23 7641 -211.146.20.0/22 7641 -211.146.24.0/21 7641 -211.146.32.0/19 7641 -211.146.64.0/18 7641 -211.146.128.0/17 7641 -211.147.0.0/21 17964 -211.147.8.0/22 17964 -211.147.12.0/22 4847 -211.147.16.0/20 17964 -211.147.32.0/19 4808 -211.147.64.0/19 23853 -211.147.128.0/19 18239 -211.147.160.0/19 17816 -211.147.208.0/20 23724 -211.147.224.0/19 4134 -211.148.0.0/20 4812 -211.148.16.0/24 4812 -211.148.17.0/24 17428 -211.148.18.0/23 17428 -211.148.20.0/22 17428 -211.148.24.0/23 17428 -211.148.26.0/24 4812 -211.148.27.0/24 17428 -211.148.28.0/22 17428 -211.148.32.0/19 4812 -211.148.64.0/18 17816 -211.148.128.0/19 134772 -211.148.160.0/19 24143 -211.148.192.0/19 17962 -211.148.224.0/19 9808 -211.149.32.0/19 17816 -211.149.64.0/19 17816 -211.149.128.0/17 38283 -211.150.0.0/18 23724 -211.150.64.0/19 4808 -211.150.96.0/24 9803 -211.150.98.0/23 9803 -211.150.100.0/24 9803 -211.150.101.0/24 23724 -211.150.114.0/23 23724 -211.150.122.0/24 9803 -211.150.124.0/22 9803 -211.150.128.0/24 9803 -211.151.0.0/22 9802 -211.151.4.0/23 9308 -211.151.6.0/23 9802 -211.151.8.0/23 9802 -211.151.10.0/24 9802 -211.151.11.0/24 4835 -211.151.12.0/22 9802 -211.151.16.0/23 9802 -211.151.18.0/24 9308 -211.151.19.0/24 9802 -211.151.20.0/22 9802 -211.151.24.0/21 9802 -211.151.32.0/19 9802 -211.151.64.0/19 9802 -211.151.96.0/20 9802 -211.151.112.0/21 9802 -211.151.120.0/23 9802 -211.151.122.0/24 4835 -211.151.123.0/24 9802 -211.151.124.0/22 9802 -211.151.128.0/20 9802 -211.151.144.0/21 9802 -211.151.152.0/22 9802 -211.151.156.0/24 9802 -211.151.157.0/24 9308 -211.151.158.0/23 9802 -211.151.160.0/19 9802 -211.151.192.0/21 9802 -211.151.200.0/22 9802 -211.151.204.0/23 9802 -211.151.206.0/24 9802 -211.151.207.0/24 9308 -211.151.208.0/21 9802 -211.151.216.0/22 9802 -211.151.220.0/24 4847 -211.151.221.0/24 9802 -211.151.222.0/23 9802 -211.151.224.0/22 9802 -211.151.228.0/23 9802 -211.151.230.0/24 4835 -211.151.231.0/24 9802 -211.151.232.0/21 9802 -211.151.240.0/20 9802 -211.152.0.0/20 4835 -211.152.16.0/22 4835 -211.152.20.0/24 9308 -211.152.21.0/24 4835 -211.152.22.0/23 4835 -211.152.24.0/21 4835 -211.152.32.0/19 4812 -211.152.64.0/19 4816 -211.152.96.0/23 4835 -211.152.98.0/24 4835 -211.152.99.0/24 9308 -211.152.100.0/22 4835 -211.152.104.0/21 4835 -211.152.112.0/20 4835 -211.152.128.0/22 132203 -211.152.132.0/23 132203 -211.152.136.0/23 132203 -211.152.144.0/22 132203 -211.152.148.0/23 132203 -211.152.152.0/22 132203 -211.152.156.0/24 132203 -211.152.160.0/19 4134 -211.152.192.0/22 4847 -211.152.196.0/23 4847 -211.152.208.0/20 4847 -211.153.0.0/16 4847 -211.154.0.0/19 4808 -211.154.52.0/22 4812 -211.154.64.0/19 9812 -211.154.96.0/21 23724 -211.154.104.0/24 9803 -211.154.105.0/24 23724 -211.154.106.0/24 9803 -211.154.107.0/24 23724 -211.154.108.0/22 23724 -211.154.112.0/20 23724 -211.154.128.0/19 17623 -211.154.160.0/20 17964 -211.154.176.0/20 17816 -211.154.192.0/18 4808 -211.155.0.0/20 45069 -211.155.16.0/20 4134 -211.155.32.0/19 4808 -211.155.64.0/23 40676 -211.155.80.0/20 4808 -211.155.96.0/24 138915 -211.155.114.0/23 138915 -211.155.116.0/22 58541 -211.155.120.0/21 4837 -211.155.128.0/19 17964 -211.155.160.0/21 4808 -211.155.168.0/21 9810 -211.155.176.0/22 9810 -211.155.184.0/21 9810 -211.155.224.0/23 4134 -211.155.226.0/24 4134 -211.155.227.0/24 58461 -211.155.228.0/22 4134 -211.155.232.0/22 4837 -211.155.236.0/24 56041 -211.155.240.0/21 17964 -211.155.248.0/21 4808 -211.156.0.0/19 4812 -211.156.32.0/20 17490 -211.156.48.0/20 23840 -211.156.64.0/21 7497 -211.156.72.0/22 7497 -211.156.76.0/24 7497 -211.156.77.0/24 133948 -211.156.78.0/23 7497 -211.156.110.0/23 58730 -211.156.112.0/20 4134 -211.156.128.0/19 7641 -211.156.176.0/20 135061 -211.156.192.0/20 24430 -211.156.208.0/21 24430 -211.156.216.0/22 24430 -211.156.220.0/23 24430 -211.156.223.0/24 24430 -211.156.224.0/20 9391 -211.156.240.0/20 4134 -211.157.0.0/21 38346 -211.157.8.0/22 4847 -211.157.12.0/22 24134 -211.157.16.0/22 4812 -211.157.20.0/22 24134 -211.157.24.0/22 24134 -211.157.28.0/22 4847 -211.157.96.0/19 23724 -211.157.128.0/18 4808 -211.157.192.0/20 23724 -211.157.208.0/21 23724 -211.157.216.0/23 23724 -211.157.218.0/24 23724 -211.157.219.0/24 4847 -211.157.220.0/22 23724 -211.157.224.0/19 23724 -211.158.0.0/19 4837 -211.158.32.0/19 23851 -211.158.64.0/18 23851 -211.158.128.0/17 4837 -211.159.0.0/18 23724 -211.159.64.0/20 4134 -211.159.96.0/19 4812 -211.159.128.0/17 45090 -211.160.0.0/16 9814 -211.161.0.0/20 4847 -211.161.16.0/22 17964 -211.161.20.0/22 17430 -211.161.24.0/22 4847 -211.161.28.0/22 17964 -211.161.32.0/20 4847 -211.161.48.0/22 4847 -211.161.52.0/22 17430 -211.161.56.0/22 17430 -211.161.60.0/22 24143 -211.161.76.0/23 9395 -211.161.80.0/20 17430 -211.161.96.0/20 17964 -211.161.116.0/22 9395 -211.161.120.0/21 7497 -211.161.128.0/20 17430 -211.161.144.0/20 7497 -211.161.160.0/19 7497 -211.161.192.0/21 17964 -211.161.200.0/22 17964 -211.161.207.0/24 17964 -211.161.209.0/24 17964 -211.161.210.0/24 17964 -211.161.220.0/23 17964 -211.161.222.0/24 17964 -211.161.224.0/20 17964 -211.161.250.0/24 17964 -211.161.254.0/23 17964 -211.162.0.0/20 4847 -211.162.32.0/21 17430 -211.162.48.0/21 7497 -211.162.56.0/21 17964 -211.162.64.0/20 17623 -211.162.108.0/22 17964 -211.162.112.0/21 17623 -211.162.120.0/21 24143 -211.162.128.0/19 17964 -211.162.160.0/21 17964 -211.162.170.0/23 17964 -211.162.172.0/22 17964 -211.162.176.0/20 17964 -211.162.192.0/22 17623 -211.162.200.0/22 4837 -211.162.208.0/20 17964 -211.162.224.0/21 17623 -211.162.234.0/23 7497 -211.162.236.0/22 17430 -211.162.240.0/20 17430 -211.165.0.0/16 9389 -211.166.0.0/16 9389 -211.167.0.0/20 4134 -211.167.16.0/22 4134 -211.167.64.0/19 9811 -211.167.96.0/19 9812 -211.167.128.0/19 4812 -211.167.176.0/20 4808 -211.167.192.0/19 4812 -211.167.224.0/20 4808 -211.167.240.0/21 24138 -211.167.248.0/21 4808 -211.168.0.0/19 3786 -211.168.32.0/21 3786 -211.168.40.0/24 20347 -211.168.41.0/24 3786 -211.168.42.0/23 3786 -211.168.44.0/24 3786 -211.168.45.0/24 38430 -211.168.46.0/23 3786 -211.168.48.0/20 3786 -211.168.64.0/18 3786 -211.168.128.0/20 3786 -211.168.144.0/21 3786 -211.168.152.0/24 3786 -211.168.153.0/24 17850 -211.168.154.0/23 3786 -211.168.156.0/23 3786 -211.168.158.0/24 17850 -211.168.159.0/24 3786 -211.168.160.0/19 3786 -211.168.192.0/20 3786 -211.168.208.0/24 17850 -211.168.209.0/24 3786 -211.168.210.0/23 3786 -211.168.212.0/22 3786 -211.168.216.0/21 3786 -211.168.224.0/21 3786 -211.168.232.0/22 3786 -211.168.236.0/24 3786 -211.168.237.0/24 45974 -211.168.238.0/23 3786 -211.168.240.0/22 3786 -211.168.244.0/23 3786 -211.168.246.0/24 3786 -211.168.247.0/24 17862 -211.168.248.0/21 3786 -211.169.0.0/19 3786 -211.169.32.0/21 3786 -211.169.40.0/22 3786 -211.169.44.0/23 3786 -211.169.46.0/24 45364 -211.169.47.0/24 3786 -211.169.48.0/21 3786 -211.169.56.0/23 3786 -211.169.58.0/24 17862 -211.169.59.0/24 3786 -211.169.60.0/24 3786 -211.169.61.0/24 38088 -211.169.62.0/23 3786 -211.169.64.0/22 3786 -211.169.68.0/24 38088 -211.169.69.0/24 3786 -211.169.70.0/23 3786 -211.169.72.0/21 3786 -211.169.80.0/20 3786 -211.169.96.0/19 3786 -211.169.128.0/22 3786 -211.169.132.0/23 3786 -211.169.134.0/24 3786 -211.169.135.0/24 18305 -211.169.136.0/21 3786 -211.169.144.0/20 3786 -211.169.160.0/20 3786 -211.169.176.0/23 3786 -211.169.178.0/24 9530 -211.169.179.0/24 3786 -211.169.180.0/22 3786 -211.169.184.0/21 3786 -211.169.192.0/20 3786 -211.169.208.0/21 3786 -211.169.216.0/23 3786 -211.169.218.0/24 3786 -211.169.219.0/24 38661 -211.169.220.0/22 3786 -211.169.224.0/24 3786 -211.169.225.0/24 9526 -211.169.226.0/23 3786 -211.169.228.0/24 38661 -211.169.229.0/24 3786 -211.169.230.0/23 3786 -211.169.232.0/21 3786 -211.169.240.0/20 3786 -211.170.0.0/19 3786 -211.170.32.0/21 3786 -211.170.40.0/23 3786 -211.170.42.0/24 3786 -211.170.43.0/24 17567 -211.170.44.0/22 3786 -211.170.48.0/20 3786 -211.170.64.0/18 3786 -211.170.128.0/19 3786 -211.170.160.0/20 3786 -211.170.176.0/21 3786 -211.170.184.0/24 45974 -211.170.185.0/24 3786 -211.170.186.0/23 3786 -211.170.188.0/24 3786 -211.170.189.0/24 38124 -211.170.190.0/23 3786 -211.170.192.0/19 3786 -211.170.224.0/20 3786 -211.170.240.0/22 3786 -211.170.244.0/23 3786 -211.170.246.0/24 3786 -211.170.247.0/24 17862 -211.170.248.0/21 3786 -211.171.0.0/17 3786 -211.171.128.0/19 3786 -211.171.160.0/20 3786 -211.171.176.0/22 3786 -211.171.180.0/23 3786 -211.171.182.0/24 18305 -211.171.183.0/24 3786 -211.171.184.0/24 3786 -211.171.185.0/24 18305 -211.171.186.0/23 3786 -211.171.188.0/22 3786 -211.171.192.0/18 3786 -211.172.0.0/19 10036 -211.172.32.0/19 18310 -211.172.64.0/20 18310 -211.172.96.0/23 9845 -211.172.99.0/24 9845 -211.172.100.0/22 45365 -211.172.104.0/21 38669 -211.172.128.0/20 9318 -211.172.144.0/23 45974 -211.172.146.0/23 3786 -211.172.148.0/22 3786 -211.172.152.0/23 3786 -211.172.154.0/24 3786 -211.172.155.0/24 9628 -211.172.156.0/24 9628 -211.172.157.0/24 3786 -211.172.158.0/23 3786 -211.172.176.0/21 38661 -211.172.188.0/22 38661 -211.172.208.0/20 9943 -211.172.224.0/21 38661 -211.172.232.0/22 38661 -211.172.240.0/20 3786 -211.173.0.0/21 9316 -211.173.8.0/23 10055 -211.173.10.0/24 10055 -211.173.11.0/24 9316 -211.173.12.0/22 9316 -211.173.16.0/20 9316 -211.173.32.0/23 9316 -211.173.34.0/23 17841 -211.173.36.0/22 17841 -211.173.40.0/22 10165 -211.173.44.0/23 10165 -211.173.46.0/24 17841 -211.173.47.0/24 9316 -211.173.48.0/20 9316 -211.173.64.0/19 9316 -211.173.96.0/23 9316 -211.173.98.0/24 9316 -211.173.99.0/24 17874 -211.173.100.0/22 9316 -211.173.104.0/21 9316 -211.173.112.0/20 17858 -211.173.128.0/19 18310 -211.173.160.0/19 18313 -211.173.192.0/18 10171 -211.174.0.0/20 18310 -211.174.32.0/20 4766 -211.174.48.0/20 3786 -211.174.64.0/18 4766 -211.174.128.0/17 4663 -211.175.0.0/19 9457 -211.175.32.0/20 9457 -211.175.48.0/21 17583 -211.175.56.0/21 9457 -211.175.64.0/20 9457 -211.175.80.0/24 9457 -211.175.81.0/24 9526 -211.175.82.0/24 9526 -211.175.83.0/24 9457 -211.175.84.0/22 9457 -211.175.88.0/21 9457 -211.175.96.0/19 9457 -211.175.128.0/18 9457 -211.175.192.0/20 9457 -211.175.208.0/21 9457 -211.175.216.0/21 38661 -211.175.224.0/23 9457 -211.175.226.0/24 38661 -211.175.227.0/24 9457 -211.175.228.0/22 9457 -211.175.232.0/21 9457 -211.175.240.0/20 9457 -211.176.0.0/15 9318 -211.178.0.0/16 9318 -211.179.0.0/17 9318 -211.179.128.0/18 9318 -211.179.192.0/20 9318 -211.179.208.0/24 9318 -211.179.209.0/24 55584 -211.179.210.0/23 9318 -211.179.212.0/22 9318 -211.179.216.0/21 9318 -211.179.224.0/19 9318 -211.180.0.0/20 3786 -211.180.16.0/21 3786 -211.180.24.0/22 3786 -211.180.28.0/23 3786 -211.180.30.0/24 3786 -211.180.31.0/24 9704 -211.180.32.0/20 3786 -211.180.48.0/21 3786 -211.180.56.0/22 3786 -211.180.60.0/24 3786 -211.180.61.0/24 17862 -211.180.62.0/23 3786 -211.180.64.0/18 3786 -211.180.128.0/19 3786 -211.180.160.0/24 3786 -211.180.161.0/24 4668 -211.180.162.0/23 3786 -211.180.164.0/22 3786 -211.180.168.0/21 3786 -211.180.176.0/20 3786 -211.180.192.0/19 3786 -211.180.224.0/21 3786 -211.180.232.0/23 3786 -211.180.234.0/24 3786 -211.180.235.0/24 45974 -211.180.236.0/22 3786 -211.180.240.0/20 3786 -211.181.0.0/19 3786 -211.181.32.0/20 3786 -211.181.48.0/24 3786 -211.181.49.0/24 4668 -211.181.50.0/23 3786 -211.181.52.0/22 3786 -211.181.56.0/21 3786 -211.181.64.0/20 3786 -211.181.80.0/23 3786 -211.181.82.0/24 55592 -211.181.83.0/24 3786 -211.181.84.0/22 3786 -211.181.88.0/21 3786 -211.181.96.0/20 3786 -211.181.112.0/22 3786 -211.181.116.0/23 3786 -211.181.118.0/24 3786 -211.181.119.0/24 9641 -211.181.120.0/21 3786 -211.181.128.0/20 3786 -211.181.144.0/22 3786 -211.181.148.0/24 3786 -211.181.149.0/24 10035 -211.181.150.0/23 3786 -211.181.152.0/22 3786 -211.181.156.0/23 3786 -211.181.158.0/24 3786 -211.181.159.0/24 10035 -211.181.160.0/22 3786 -211.181.164.0/24 3786 -211.181.165.0/24 9641 -211.181.166.0/23 3786 -211.181.168.0/21 3786 -211.181.176.0/21 3786 -211.181.184.0/22 3786 -211.181.188.0/24 3786 -211.181.189.0/24 55592 -211.181.190.0/23 3786 -211.181.192.0/24 17862 -211.181.193.0/24 3786 -211.181.194.0/23 3786 -211.181.196.0/23 3786 -211.181.198.0/24 3786 -211.181.199.0/24 9776 -211.181.200.0/23 3786 -211.181.202.0/24 23714 -211.181.203.0/24 3786 -211.181.204.0/22 3786 -211.181.208.0/20 3786 -211.181.224.0/21 3786 -211.181.232.0/24 9771 -211.181.233.0/24 3786 -211.181.234.0/23 3786 -211.181.236.0/22 3786 -211.181.240.0/21 3786 -211.181.248.0/24 3786 -211.181.249.0/24 17834 -211.181.250.0/23 3786 -211.181.252.0/22 38420 -211.182.0.0/16 9706 -211.183.0.0/18 9457 -211.183.64.0/23 9457 -211.183.66.0/24 9457 -211.183.67.0/24 17875 -211.183.68.0/22 9457 -211.183.72.0/21 9457 -211.183.80.0/21 9457 -211.183.88.0/23 9457 -211.183.90.0/24 9457 -211.183.91.0/24 38101 -211.183.92.0/24 9457 -211.183.93.0/24 38101 -211.183.94.0/23 9457 -211.183.96.0/19 9457 -211.183.128.0/19 9457 -211.183.160.0/21 9457 -211.183.168.0/22 9457 -211.183.172.0/24 9457 -211.183.173.0/24 17878 -211.183.174.0/23 9457 -211.183.176.0/21 9457 -211.183.184.0/21 45374 -211.183.192.0/21 9457 -211.183.200.0/21 45374 -211.183.208.0/20 9457 -211.183.224.0/20 45374 -211.183.240.0/20 9457 -211.184.0.0/20 4766 -211.184.16.0/24 45400 -211.184.17.0/24 4766 -211.184.18.0/23 4766 -211.184.20.0/22 4766 -211.184.24.0/21 4766 -211.184.32.0/19 4766 -211.184.64.0/21 4766 -211.184.72.0/23 4766 -211.184.74.0/24 55620 -211.184.75.0/24 4766 -211.184.76.0/22 4766 -211.184.80.0/20 4766 -211.184.96.0/19 4766 -211.184.128.0/18 4766 -211.184.192.0/23 45377 -211.184.194.0/23 4766 -211.184.196.0/24 4766 -211.184.197.0/24 17841 -211.184.198.0/23 4766 -211.184.200.0/21 45377 -211.184.208.0/20 4766 -211.184.224.0/21 4766 -211.184.232.0/24 38415 -211.184.233.0/24 4766 -211.184.234.0/24 38392 -211.184.235.0/24 4766 -211.184.236.0/22 4766 -211.184.240.0/20 4766 -211.185.0.0/19 4766 -211.185.32.0/20 4766 -211.185.48.0/23 4766 -211.185.50.0/24 38410 -211.185.51.0/24 38409 -211.185.52.0/24 38416 -211.185.53.0/24 38398 -211.185.54.0/23 4766 -211.185.56.0/21 4766 -211.185.64.0/18 4766 -211.185.128.0/20 4766 -211.185.144.0/21 4766 -211.185.152.0/22 4766 -211.185.156.0/23 4766 -211.185.158.0/24 4766 -211.185.159.0/24 45400 -211.185.160.0/19 4766 -211.185.192.0/19 4766 -211.185.224.0/23 10176 -211.185.226.0/24 10176 -211.185.227.0/24 4766 -211.185.228.0/22 4766 -211.185.232.0/21 4766 -211.185.240.0/22 4766 -211.185.244.0/23 45400 -211.185.246.0/23 4766 -211.185.248.0/21 4766 -211.186.0.0/16 9318 -211.187.0.0/17 9318 -211.187.128.0/20 9318 -211.187.144.0/20 18302 -211.187.160.0/19 9318 -211.187.192.0/18 9318 -211.188.0.0/22 4766 -211.188.4.0/23 4766 -211.188.6.0/24 4766 -211.188.7.0/24 38704 -211.188.8.0/23 4766 -211.188.10.0/24 4766 -211.188.11.0/24 38704 -211.188.12.0/22 4766 -211.188.17.0/24 38090 -211.188.18.0/23 38090 -211.188.20.0/22 38090 -211.188.24.0/23 38090 -211.188.28.0/24 38090 -211.188.30.0/23 38090 -211.188.104.0/21 4766 -211.188.112.0/20 4766 -211.188.128.0/17 9644 -211.189.0.0/23 6619 -211.189.2.0/24 55601 -211.189.3.0/24 6619 -211.189.4.0/22 6619 -211.189.8.0/21 6619 -211.189.16.0/20 6619 -211.189.32.0/21 6619 -211.189.40.0/23 6619 -211.189.42.0/24 6619 -211.189.43.0/24 45996 -211.189.44.0/22 6619 -211.189.48.0/20 6619 -211.189.64.0/18 6619 -211.189.128.0/19 38661 -211.189.160.0/21 9848 -211.189.168.0/23 9848 -211.189.170.0/24 9848 -211.189.171.0/24 38092 -211.189.172.0/22 38092 -211.189.176.0/23 38092 -211.189.178.0/23 9848 -211.189.180.0/24 9848 -211.189.181.0/24 38092 -211.189.182.0/23 38092 -211.189.184.0/22 9848 -211.189.188.0/24 9848 -211.189.189.0/24 38092 -211.189.190.0/23 38092 -211.189.192.0/19 18313 -211.189.224.0/20 9689 -211.189.240.0/21 9689 -211.189.248.0/22 9689 -211.189.252.0/24 9689 -211.189.253.0/24 38097 -211.189.254.0/23 9689 -211.190.0.0/20 4670 -211.190.16.0/23 4664 -211.190.18.0/23 4670 -211.190.20.0/22 4670 -211.190.24.0/21 4670 -211.190.32.0/22 4670 -211.190.36.0/24 4670 -211.190.37.0/24 9842 -211.190.38.0/23 4670 -211.190.40.0/21 4670 -211.190.112.0/20 4670 -211.190.128.0/20 4670 -211.190.160.0/19 3786 -211.190.192.0/19 45986 -211.190.224.0/22 4670 -211.190.228.0/24 4670 -211.190.229.0/24 38660 -211.190.230.0/23 38660 -211.190.232.0/21 4670 -211.190.240.0/20 4670 -211.191.0.0/20 4670 -211.191.32.0/20 4670 -211.191.64.0/19 4670 -211.191.112.0/20 4670 -211.191.128.0/20 4670 -211.191.160.0/19 4670 -211.191.240.0/20 4670 -211.192.0.0/24 10056 -211.192.1.0/24 4766 -211.192.2.0/23 4766 -211.192.4.0/22 4766 -211.192.8.0/21 4766 -211.192.16.0/20 4766 -211.192.32.0/20 4766 -211.192.48.0/23 4766 -211.192.50.0/24 18303 -211.192.51.0/24 4766 -211.192.52.0/22 4766 -211.192.56.0/21 4766 -211.192.64.0/24 4766 -211.192.65.0/24 18176 -211.192.66.0/23 18176 -211.192.68.0/22 4766 -211.192.72.0/21 4766 -211.192.80.0/20 4766 -211.192.96.0/19 4766 -211.192.128.0/19 4766 -211.192.160.0/21 4766 -211.192.168.0/24 4766 -211.192.169.0/24 17840 -211.192.170.0/23 4766 -211.192.172.0/22 4766 -211.192.176.0/20 4766 -211.192.192.0/18 4766 -211.193.0.0/19 4766 -211.193.32.0/23 4766 -211.193.34.0/24 4766 -211.193.35.0/24 18303 -211.193.36.0/22 4766 -211.193.40.0/21 4766 -211.193.48.0/24 55592 -211.193.49.0/24 4766 -211.193.50.0/23 4766 -211.193.52.0/22 4766 -211.193.56.0/21 4766 -211.193.64.0/18 4766 -211.193.128.0/18 4766 -211.193.192.0/20 4793 -211.193.208.0/20 4766 -211.193.224.0/19 4766 -211.194.0.0/17 4766 -211.194.128.0/20 4766 -211.194.144.0/21 4766 -211.194.152.0/23 4766 -211.194.154.0/24 4766 -211.194.155.0/24 16669 -211.194.156.0/22 4766 -211.194.160.0/19 4766 -211.194.192.0/20 4766 -211.194.208.0/21 4766 -211.194.216.0/23 4766 -211.194.218.0/23 18319 -211.194.220.0/22 18319 -211.194.224.0/22 18319 -211.194.228.0/22 4766 -211.194.232.0/21 4766 -211.194.240.0/20 4766 -211.195.0.0/18 4766 -211.195.64.0/20 4766 -211.195.80.0/22 4766 -211.195.84.0/24 4766 -211.195.85.0/24 9572 -211.195.86.0/23 4766 -211.195.88.0/21 4766 -211.195.96.0/19 4766 -211.195.128.0/17 4766 -211.196.0.0/22 4766 -211.196.4.0/24 17611 -211.196.5.0/24 4766 -211.196.6.0/23 4766 -211.196.8.0/21 4766 -211.196.16.0/20 4766 -211.196.32.0/19 4766 -211.196.64.0/18 4766 -211.196.128.0/18 4766 -211.196.192.0/20 4766 -211.196.208.0/24 4766 -211.196.209.0/24 45406 -211.196.210.0/23 4766 -211.196.212.0/22 4766 -211.196.216.0/21 4766 -211.196.224.0/19 4766 -211.197.0.0/24 55592 -211.197.1.0/24 4766 -211.197.2.0/23 4766 -211.197.4.0/22 4766 -211.197.8.0/21 4766 -211.197.16.0/20 4766 -211.197.32.0/19 4766 -211.197.64.0/18 4766 -211.197.128.0/18 4766 -211.197.192.0/19 4766 -211.197.224.0/21 4766 -211.197.232.0/23 4766 -211.197.234.0/24 4766 -211.197.235.0/24 9684 -211.197.236.0/22 4766 -211.197.240.0/20 4766 -211.198.0.0/20 4766 -211.198.16.0/24 38702 -211.198.17.0/24 4766 -211.198.18.0/23 4766 -211.198.20.0/22 4766 -211.198.24.0/21 4766 -211.198.32.0/19 4766 -211.198.64.0/18 4766 -211.198.128.0/17 4766 -211.199.0.0/18 4766 -211.199.64.0/19 4766 -211.199.96.0/20 4766 -211.199.112.0/21 4766 -211.199.120.0/23 4766 -211.199.122.0/24 10176 -211.199.123.0/24 4766 -211.199.124.0/22 4766 -211.199.128.0/17 4766 -211.200.0.0/20 9318 -211.200.16.0/22 9318 -211.200.20.0/24 9318 -211.200.21.0/24 9526 -211.200.22.0/23 9318 -211.200.24.0/21 9318 -211.200.32.0/19 9318 -211.200.64.0/18 9318 -211.200.128.0/17 9318 -211.201.0.0/17 9318 -211.201.128.0/20 9318 -211.201.144.0/24 9318 -211.201.145.0/24 17590 -211.201.146.0/23 9318 -211.201.148.0/22 9318 -211.201.152.0/21 9318 -211.201.160.0/20 9318 -211.201.176.0/21 9318 -211.201.184.0/24 4766 -211.201.185.0/24 9318 -211.201.186.0/23 9318 -211.201.188.0/22 9318 -211.201.192.0/22 9318 -211.201.196.0/23 9318 -211.201.198.0/24 17589 -211.201.199.0/24 9318 -211.201.200.0/21 9318 -211.201.208.0/20 9318 -211.201.224.0/19 9318 -211.202.0.0/15 9318 -211.204.0.0/17 9318 -211.204.128.0/20 9318 -211.204.144.0/22 9318 -211.204.148.0/22 55626 -211.204.152.0/21 9318 -211.204.160.0/19 9318 -211.204.192.0/18 9318 -211.205.0.0/18 9318 -211.205.64.0/21 9318 -211.205.72.0/22 9318 -211.205.76.0/24 9318 -211.205.77.0/24 9630 -211.205.78.0/23 9318 -211.205.80.0/20 9318 -211.205.96.0/19 9318 -211.205.128.0/17 9318 -211.206.0.0/19 9318 -211.206.32.0/21 9318 -211.206.40.0/22 9318 -211.206.44.0/23 9318 -211.206.46.0/24 55632 -211.206.47.0/24 9318 -211.206.48.0/20 9318 -211.206.64.0/19 9318 -211.206.96.0/20 9318 -211.206.112.0/23 9318 -211.206.114.0/24 45399 -211.206.115.0/24 9318 -211.206.116.0/22 9318 -211.206.120.0/21 9318 -211.206.128.0/17 9318 -211.207.0.0/16 9318 -211.208.0.0/15 9318 -211.210.0.0/21 9318 -211.210.8.0/23 9318 -211.210.10.0/24 17873 -211.210.11.0/24 9318 -211.210.12.0/22 9318 -211.210.16.0/21 9318 -211.210.24.0/22 9318 -211.210.28.0/23 9318 -211.210.30.0/23 45389 -211.210.32.0/19 9318 -211.210.64.0/22 9318 -211.210.68.0/23 9318 -211.210.70.0/24 9318 -211.210.71.0/24 10184 -211.210.72.0/21 9318 -211.210.80.0/21 9318 -211.210.88.0/24 9318 -211.210.89.0/24 45399 -211.210.90.0/23 9318 -211.210.92.0/23 9318 -211.210.94.0/24 45399 -211.210.95.0/24 9318 -211.210.96.0/23 9318 -211.210.98.0/24 9318 -211.210.99.0/24 38112 -211.210.100.0/22 9318 -211.210.104.0/21 9318 -211.210.112.0/23 9318 -211.210.114.0/24 9318 -211.210.115.0/24 38389 -211.210.116.0/22 9318 -211.210.120.0/22 9318 -211.210.124.0/24 38389 -211.210.125.0/24 9318 -211.210.126.0/23 9318 -211.210.128.0/20 9318 -211.210.144.0/21 9318 -211.210.152.0/23 9318 -211.210.154.0/24 38389 -211.210.155.0/24 9318 -211.210.156.0/22 9318 -211.210.160.0/19 9318 -211.210.192.0/18 9318 -211.211.0.0/16 9318 -211.212.0.0/16 9318 -211.213.0.0/18 9318 -211.213.64.0/19 9318 -211.213.96.0/20 9318 -211.213.112.0/21 9318 -211.213.120.0/22 9318 -211.213.124.0/23 9318 -211.213.126.0/24 9318 -211.213.127.0/24 9487 -211.213.128.0/19 9318 -211.213.160.0/20 9318 -211.213.176.0/21 9318 -211.213.184.0/22 9318 -211.213.188.0/23 9318 -211.213.190.0/24 1237 -211.213.191.0/24 9318 -211.213.192.0/18 9318 -211.214.0.0/17 9318 -211.214.128.0/18 9318 -211.214.192.0/21 9318 -211.214.200.0/22 9318 -211.214.204.0/23 9318 -211.214.206.0/24 9854 -211.214.207.0/24 9318 -211.214.208.0/21 9318 -211.214.216.0/22 9318 -211.214.220.0/23 9318 -211.214.222.0/24 9318 -211.214.223.0/24 10185 -211.214.224.0/19 9318 -211.215.0.0/17 9318 -211.215.128.0/18 9318 -211.215.192.0/19 9318 -211.215.224.0/20 9318 -211.215.240.0/21 9318 -211.215.248.0/24 38398 -211.215.249.0/24 9318 -211.215.250.0/23 9318 -211.215.252.0/22 9318 -211.216.0.0/16 4766 -211.217.0.0/21 4766 -211.217.8.0/21 4961 -211.217.16.0/22 4961 -211.217.20.0/23 4961 -211.217.22.0/24 4961 -211.217.23.0/24 4766 -211.217.24.0/21 4766 -211.217.32.0/20 4766 -211.217.48.0/22 4766 -211.217.52.0/22 9524 -211.217.56.0/21 4766 -211.217.64.0/21 4766 -211.217.72.0/22 4766 -211.217.76.0/24 4766 -211.217.77.0/24 9524 -211.217.78.0/23 4766 -211.217.80.0/20 4766 -211.217.96.0/19 4766 -211.217.128.0/18 4766 -211.217.192.0/21 4766 -211.217.200.0/24 45362 -211.217.201.0/24 9967 -211.217.202.0/23 4766 -211.217.204.0/22 4766 -211.217.208.0/20 4766 -211.217.224.0/19 4766 -211.218.0.0/21 4766 -211.218.8.0/22 4766 -211.218.12.0/23 4766 -211.218.14.0/24 4766 -211.218.15.0/24 45399 -211.218.16.0/20 4766 -211.218.32.0/21 4766 -211.218.40.0/24 4766 -211.218.41.0/24 17859 -211.218.42.0/23 4766 -211.218.44.0/22 4766 -211.218.48.0/20 4766 -211.218.64.0/18 4766 -211.218.128.0/17 4766 -211.219.0.0/24 4766 -211.219.1.0/24 4756 -211.219.2.0/23 4766 -211.219.4.0/22 4766 -211.219.8.0/21 4766 -211.219.16.0/20 4766 -211.219.32.0/19 4766 -211.219.64.0/23 4766 -211.219.66.0/24 9699 -211.219.67.0/24 4766 -211.219.68.0/22 4766 -211.219.72.0/21 4766 -211.219.80.0/20 4766 -211.219.96.0/24 23556 -211.219.97.0/24 4766 -211.219.98.0/23 4766 -211.219.100.0/22 4766 -211.219.104.0/21 4766 -211.219.112.0/20 4766 -211.219.128.0/20 4766 -211.219.144.0/21 4766 -211.219.152.0/22 4766 -211.219.156.0/24 4766 -211.219.157.0/24 18325 -211.219.158.0/24 18325 -211.219.159.0/24 4766 -211.219.160.0/19 4766 -211.219.192.0/18 4766 -211.220.0.0/17 4766 -211.220.128.0/18 4766 -211.220.192.0/19 4766 -211.220.224.0/22 4766 -211.220.228.0/22 9631 -211.220.232.0/24 9631 -211.220.233.0/24 4766 -211.220.234.0/23 4766 -211.220.236.0/22 4766 -211.220.240.0/20 4766 -211.221.0.0/18 4766 -211.221.64.0/19 4766 -211.221.96.0/21 4766 -211.221.104.0/24 46009 -211.221.105.0/24 4766 -211.221.106.0/23 4766 -211.221.108.0/22 4766 -211.221.112.0/20 4766 -211.221.128.0/17 4766 -211.222.0.0/20 4766 -211.222.16.0/21 4766 -211.222.24.0/22 4766 -211.222.28.0/23 4766 -211.222.30.0/24 4766 -211.222.31.0/24 38695 -211.222.32.0/23 38695 -211.222.34.0/23 4766 -211.222.36.0/22 4766 -211.222.40.0/21 4766 -211.222.48.0/21 4766 -211.222.56.0/22 55586 -211.222.60.0/22 4766 -211.222.64.0/18 4766 -211.222.128.0/21 4766 -211.222.136.0/22 4766 -211.222.140.0/24 4766 -211.222.141.0/24 38110 -211.222.142.0/23 4766 -211.222.144.0/20 4766 -211.222.160.0/19 4766 -211.222.192.0/19 4766 -211.222.224.0/24 4766 -211.222.225.0/24 38110 -211.222.226.0/23 4766 -211.222.228.0/22 4766 -211.222.232.0/21 4766 -211.222.240.0/20 4766 -211.223.0.0/17 4766 -211.223.128.0/18 4766 -211.223.192.0/21 4766 -211.223.200.0/22 9840 -211.223.204.0/23 9840 -211.223.206.0/23 4766 -211.223.208.0/20 9777 -211.223.224.0/22 10042 -211.223.228.0/22 4766 -211.223.232.0/22 4766 -211.223.236.0/24 4766 -211.223.237.0/24 23714 -211.223.238.0/23 23714 -211.223.240.0/20 23714 -211.224.0.0/16 4766 -211.225.0.0/20 4766 -211.225.16.0/21 4766 -211.225.24.0/22 4766 -211.225.28.0/23 4766 -211.225.30.0/23 17856 -211.225.32.0/21 17856 -211.225.40.0/21 4766 -211.225.48.0/20 4766 -211.225.64.0/18 4766 -211.225.128.0/17 4766 -211.226.0.0/18 4766 -211.226.64.0/21 4766 -211.226.72.0/22 4766 -211.226.76.0/24 4766 -211.226.77.0/24 10185 -211.226.78.0/23 4766 -211.226.80.0/21 4766 -211.226.88.0/22 4766 -211.226.92.0/23 4766 -211.226.94.0/24 4766 -211.226.95.0/24 38406 -211.226.96.0/19 4766 -211.226.128.0/17 4766 -211.227.0.0/17 4766 -211.227.128.0/20 4766 -211.227.144.0/23 4766 -211.227.146.0/24 4766 -211.227.147.0/24 9962 -211.227.148.0/22 9962 -211.227.152.0/24 9962 -211.227.153.0/24 4766 -211.227.154.0/23 4766 -211.227.156.0/22 4766 -211.227.160.0/19 4766 -211.227.192.0/21 4766 -211.227.200.0/23 4766 -211.227.202.0/24 4766 -211.227.203.0/24 18305 -211.227.204.0/23 4766 -211.227.206.0/24 4766 -211.227.207.0/24 9962 -211.227.208.0/20 4766 -211.227.224.0/19 4766 -211.228.0.0/16 4766 -211.229.0.0/17 4766 -211.229.128.0/20 4766 -211.229.144.0/24 4766 -211.229.145.0/24 18305 -211.229.146.0/23 4766 -211.229.148.0/22 4766 -211.229.152.0/21 4766 -211.229.160.0/22 23552 -211.229.164.0/22 4766 -211.229.168.0/21 9955 -211.229.176.0/24 9955 -211.229.177.0/24 4766 -211.229.178.0/23 4766 -211.229.180.0/22 18329 -211.229.184.0/21 4766 -211.229.192.0/18 4766 -211.230.0.0/18 4766 -211.230.64.0/20 4766 -211.230.80.0/21 4766 -211.230.88.0/23 4766 -211.230.90.0/23 9949 -211.230.92.0/22 4766 -211.230.96.0/19 4766 -211.230.128.0/18 4766 -211.230.192.0/20 4766 -211.230.208.0/21 4766 -211.230.216.0/22 4766 -211.230.220.0/23 9954 -211.230.222.0/24 9954 -211.230.223.0/24 4766 -211.230.224.0/19 4766 -211.231.0.0/18 4766 -211.231.64.0/19 4766 -211.231.96.0/24 10158 -211.231.97.0/24 38099 -211.231.98.0/23 38099 -211.231.100.0/22 38099 -211.231.104.0/22 38099 -211.231.108.0/24 38099 -211.231.109.0/24 9958 -211.231.110.0/24 9958 -211.231.111.0/24 38099 -211.231.112.0/20 4766 -211.231.128.0/17 4766 -211.232.0.0/17 17877 -211.232.128.0/18 17877 -211.232.192.0/18 17854 -211.233.0.0/19 3786 -211.233.32.0/20 3786 -211.233.48.0/24 18314 -211.233.49.0/24 3786 -211.233.50.0/23 3786 -211.233.52.0/22 3786 -211.233.56.0/21 3786 -211.233.64.0/23 3786 -211.233.66.0/24 3786 -211.233.67.0/24 18314 -211.233.68.0/22 3786 -211.233.72.0/21 3786 -211.233.80.0/20 3786 -211.233.96.0/19 45986 -211.233.128.0/20 4766 -211.234.0.0/20 3786 -211.234.16.0/22 3786 -211.234.20.0/24 3786 -211.234.21.0/24 17862 -211.234.22.0/23 3786 -211.234.24.0/23 3786 -211.234.26.0/24 3786 -211.234.27.0/24 9629 -211.234.28.0/22 3786 -211.234.32.0/22 3786 -211.234.36.0/23 3786 -211.234.38.0/24 45384 -211.234.39.0/24 3786 -211.234.40.0/21 3786 -211.234.48.0/21 3786 -211.234.56.0/23 3786 -211.234.58.0/24 3786 -211.234.59.0/24 9577 -211.234.60.0/22 3786 -211.234.64.0/18 3786 -211.234.128.0/18 9644 -211.234.192.0/19 9644 -211.234.224.0/21 9644 -211.234.232.0/22 9644 -211.234.236.0/23 9644 -211.234.238.0/24 9644 -211.234.239.0/24 4792 -211.234.240.0/22 4792 -211.234.244.0/22 9644 -211.234.248.0/21 9644 -211.235.0.0/19 45986 -211.235.32.0/19 9976 -211.235.64.0/18 9644 -211.235.128.0/18 9644 -211.235.192.0/20 45372 -211.235.208.0/21 45372 -211.235.216.0/21 4766 -211.235.224.0/19 38661 -211.236.0.0/18 3786 -211.236.64.0/20 45400 -211.236.80.0/22 45400 -211.236.84.0/24 45999 -211.236.85.0/24 45400 -211.236.86.0/24 45400 -211.236.87.0/24 4766 -211.236.88.0/21 45400 -211.236.96.0/23 38692 -211.236.98.0/23 45400 -211.236.100.0/22 45400 -211.236.104.0/21 45400 -211.236.112.0/22 45400 -211.236.116.0/24 4766 -211.236.117.0/24 45400 -211.236.118.0/23 45400 -211.236.120.0/21 45400 -211.236.128.0/19 18313 -211.236.160.0/19 38661 -211.236.192.0/19 18313 -211.236.224.0/19 9848 -211.237.0.0/19 3786 -211.237.32.0/20 38661 -211.237.48.0/23 9763 -211.237.50.0/24 9763 -211.237.54.0/23 9763 -211.237.56.0/21 9763 -211.237.64.0/20 10171 -211.237.80.0/20 38684 -211.237.96.0/20 9689 -211.237.112.0/20 10036 -211.237.128.0/20 38661 -211.237.144.0/22 3786 -211.237.160.0/19 17854 -211.237.208.0/20 9943 -211.237.224.0/20 10036 -211.237.240.0/20 9762 -211.238.0.0/23 9848 -211.238.2.0/24 9848 -211.238.3.0/24 9952 -211.238.4.0/23 9848 -211.238.6.0/24 9952 -211.238.7.0/24 9848 -211.238.8.0/23 9952 -211.238.10.0/24 9952 -211.238.11.0/24 9848 -211.238.12.0/24 9848 -211.238.13.0/24 9952 -211.238.14.0/24 9848 -211.238.15.0/24 9952 -211.238.16.0/23 38669 -211.238.18.0/23 9848 -211.238.20.0/22 45365 -211.238.24.0/23 9848 -211.238.26.0/23 23584 -211.238.28.0/22 23584 -211.238.32.0/20 9853 -211.238.48.0/21 9853 -211.238.56.0/24 9853 -211.238.57.0/24 55587 -211.238.58.0/23 9853 -211.238.60.0/22 9853 -211.238.64.0/19 9976 -211.238.96.0/19 3786 -211.238.128.0/19 38661 -211.238.160.0/20 38684 -211.238.176.0/20 9853 -211.238.192.0/20 9853 -211.238.208.0/22 3786 -211.238.224.0/20 17573 -211.238.240.0/20 3786 -211.239.0.0/19 9848 -211.239.32.0/23 9848 -211.239.34.0/24 9848 -211.239.35.0/24 38092 -211.239.36.0/22 9848 -211.239.40.0/21 9848 -211.239.48.0/20 9848 -211.239.64.0/18 9848 -211.239.128.0/19 9848 -211.239.160.0/22 9848 -211.239.164.0/24 9952 -211.239.165.0/24 9848 -211.239.166.0/23 9848 -211.239.168.0/22 9848 -211.239.172.0/23 9848 -211.239.174.0/24 4670 -211.239.175.0/24 9848 -211.239.176.0/21 9848 -211.239.184.0/23 9848 -211.239.186.0/24 38091 -211.239.187.0/24 9848 -211.239.188.0/22 9848 -211.239.192.0/21 9848 -211.239.200.0/22 9848 -211.239.204.0/24 38092 -211.239.205.0/24 9848 -211.239.206.0/23 9848 -211.239.208.0/20 9848 -211.239.224.0/19 9848 -211.240.0.0/17 4663 -211.240.128.0/17 9644 -211.241.0.0/23 9316 -211.241.2.0/24 9316 -211.241.3.0/24 9647 -211.241.4.0/23 9950 -211.241.6.0/23 9316 -211.241.8.0/24 23568 -211.241.9.0/24 3608 -211.241.10.0/23 3608 -211.241.12.0/22 3608 -211.241.16.0/21 9316 -211.241.24.0/24 18027 -211.241.25.0/24 9316 -211.241.26.0/23 18027 -211.241.28.0/22 9316 -211.241.32.0/22 9316 -211.241.36.0/23 9647 -211.241.38.0/23 9316 -211.241.40.0/21 9316 -211.241.48.0/22 9316 -211.241.52.0/22 18027 -211.241.56.0/21 18027 -211.241.64.0/24 3608 -211.241.65.0/24 9316 -211.241.66.0/24 9316 -211.241.67.0/24 7626 -211.241.68.0/24 9316 -211.241.69.0/24 10182 -211.241.70.0/23 9316 -211.241.72.0/22 3608 -211.241.76.0/23 4766 -211.241.78.0/24 4766 -211.241.79.0/24 9316 -211.241.80.0/24 3608 -211.241.81.0/24 9316 -211.241.82.0/23 9316 -211.241.84.0/22 9950 -211.241.88.0/23 9950 -211.241.90.0/24 9950 -211.241.91.0/24 10161 -211.241.92.0/23 9316 -211.241.94.0/24 3608 -211.241.95.0/24 9316 -211.241.96.0/20 9316 -211.241.112.0/22 9316 -211.241.116.0/24 38402 -211.241.117.0/24 9316 -211.241.118.0/23 9316 -211.241.120.0/21 9316 -211.241.128.0/17 38661 -211.242.0.0/18 9457 -211.242.64.0/23 9457 -211.242.66.0/24 9770 -211.242.67.0/24 9457 -211.242.68.0/22 9457 -211.242.72.0/21 9457 -211.242.80.0/20 9457 -211.242.96.0/20 9457 -211.242.112.0/21 9457 -211.242.120.0/23 9457 -211.242.122.0/24 9770 -211.242.123.0/24 9457 -211.242.124.0/22 9457 -211.242.128.0/18 9457 -211.242.192.0/19 9457 -211.242.224.0/21 9457 -211.242.232.0/23 9770 -211.242.234.0/23 9457 -211.242.236.0/22 9457 -211.242.240.0/22 9457 -211.242.244.0/23 9457 -211.242.246.0/24 9457 -211.242.247.0/24 10066 -211.242.248.0/21 9457 -211.243.0.0/16 9318 -211.244.0.0/24 45979 -211.244.1.0/24 9318 -211.244.2.0/23 9318 -211.244.4.0/24 9318 -211.244.5.0/24 45979 -211.244.6.0/23 9318 -211.244.8.0/21 9318 -211.244.16.0/20 9318 -211.244.32.0/19 9318 -211.244.64.0/21 9318 -211.244.72.0/23 9318 -211.244.74.0/24 9318 -211.244.75.0/24 18314 -211.244.76.0/22 9318 -211.244.80.0/20 9318 -211.244.96.0/19 9318 -211.244.128.0/20 9318 -211.244.144.0/24 17613 -211.244.145.0/24 9318 -211.244.146.0/23 9318 -211.244.148.0/22 9318 -211.244.152.0/21 9318 -211.244.160.0/19 9318 -211.244.192.0/20 9318 -211.244.208.0/23 9318 -211.244.210.0/24 9318 -211.244.211.0/24 17589 -211.244.212.0/22 9318 -211.244.216.0/21 9318 -211.244.224.0/19 9318 -211.245.0.0/18 9318 -211.245.64.0/24 9318 -211.245.65.0/24 38123 -211.245.66.0/23 9318 -211.245.68.0/22 9318 -211.245.72.0/21 9318 -211.245.80.0/20 9318 -211.245.96.0/21 9318 -211.245.104.0/22 9318 -211.245.108.0/23 9318 -211.245.110.0/24 9318 -211.245.111.0/24 9849 -211.245.112.0/20 9318 -211.245.128.0/18 9318 -211.245.192.0/19 9318 -211.245.224.0/20 9318 -211.245.240.0/21 9318 -211.245.248.0/22 9318 -211.245.252.0/23 9318 -211.245.254.0/24 38123 -211.245.255.0/24 9318 -211.246.0.0/17 4766 -211.246.128.0/17 9694 -211.247.0.0/17 9756 -211.247.128.0/20 9457 -211.247.144.0/21 9457 -211.247.152.0/22 9457 -211.247.156.0/23 17838 -211.247.158.0/24 17838 -211.247.159.0/24 9457 -211.247.160.0/19 9457 -211.247.192.0/18 9457 -211.248.0.0/18 4766 -211.248.64.0/22 4766 -211.248.68.0/22 10176 -211.248.72.0/23 4766 -211.248.74.0/23 10176 -211.248.76.0/22 4766 -211.248.80.0/20 4766 -211.248.96.0/20 4766 -211.248.112.0/22 4766 -211.248.116.0/22 45377 -211.248.120.0/21 4766 -211.248.128.0/19 4766 -211.248.160.0/20 4766 -211.248.176.0/22 4766 -211.248.180.0/23 4766 -211.248.182.0/24 17834 -211.248.183.0/24 4766 -211.248.184.0/21 4766 -211.248.192.0/19 4766 -211.248.224.0/20 4766 -211.248.240.0/21 4766 -211.248.248.0/22 4766 -211.248.252.0/23 4766 -211.248.254.0/24 4766 -211.248.255.0/24 45400 -211.249.0.0/19 9457 -211.249.32.0/21 9457 -211.249.40.0/21 23576 -211.249.48.0/20 23576 -211.249.64.0/21 23576 -211.249.72.0/21 9457 -211.249.80.0/20 9457 -211.249.96.0/20 9457 -211.249.112.0/22 9457 -211.249.116.0/23 9457 -211.249.118.0/24 17867 -211.249.119.0/24 9457 -211.249.120.0/21 9457 -211.249.128.0/18 9457 -211.249.192.0/21 9457 -211.249.200.0/21 38099 -211.249.208.0/21 9457 -211.249.216.0/21 7625 -211.249.224.0/20 9457 -211.249.240.0/21 9457 -211.249.248.0/22 9457 -211.249.252.0/22 38099 -211.250.0.0/18 4766 -211.250.64.0/22 4766 -211.250.68.0/23 4766 -211.250.70.0/24 4766 -211.250.71.0/24 17841 -211.250.72.0/21 4766 -211.250.80.0/20 4766 -211.250.96.0/19 4766 -211.250.128.0/23 4766 -211.250.130.0/24 4766 -211.250.131.0/24 17841 -211.250.132.0/22 4766 -211.250.136.0/21 4766 -211.250.144.0/20 4766 -211.250.160.0/19 4766 -211.250.192.0/18 4766 -211.251.0.0/19 4766 -211.251.32.0/22 4766 -211.251.36.0/22 38692 -211.251.40.0/21 38692 -211.251.48.0/20 38692 -211.251.64.0/18 38692 -211.251.128.0/21 38692 -211.251.136.0/21 4766 -211.251.144.0/20 4766 -211.251.160.0/19 4766 -211.251.192.0/20 4766 -211.251.208.0/21 4766 -211.251.216.0/21 17584 -211.251.224.0/19 4766 -211.252.0.0/20 4766 -211.252.16.0/22 4766 -211.252.20.0/24 38407 -211.252.21.0/24 38414 -211.252.22.0/23 4766 -211.252.24.0/21 4766 -211.252.32.0/22 4766 -211.252.36.0/24 4766 -211.252.37.0/24 17841 -211.252.38.0/23 4766 -211.252.40.0/21 4766 -211.252.48.0/20 4766 -211.252.64.0/22 4766 -211.252.68.0/23 4766 -211.252.70.0/24 4766 -211.252.71.0/24 38405 -211.252.72.0/21 4766 -211.252.80.0/20 4766 -211.252.96.0/19 4766 -211.252.128.0/21 9524 -211.252.136.0/21 4766 -211.252.144.0/22 4766 -211.252.148.0/23 4766 -211.252.150.0/23 9642 -211.252.152.0/22 4766 -211.252.156.0/24 4766 -211.252.157.0/24 55598 -211.252.158.0/23 4766 -211.252.160.0/19 4766 -211.252.192.0/21 4766 -211.252.200.0/23 4766 -211.252.202.0/24 4766 -211.252.203.0/24 17841 -211.252.204.0/22 4766 -211.252.208.0/21 4766 -211.252.216.0/22 4766 -211.252.220.0/24 9647 -211.252.221.0/24 4766 -211.252.222.0/24 4766 -211.252.223.0/24 45400 -211.252.224.0/21 4766 -211.252.232.0/24 4766 -211.252.233.0/24 17569 -211.252.234.0/24 17569 -211.252.235.0/24 4766 -211.252.236.0/23 4766 -211.252.238.0/24 4766 -211.252.239.0/24 45400 -211.252.240.0/20 4766 -211.253.0.0/19 4766 -211.253.32.0/24 4766 -211.253.33.0/24 9647 -211.253.34.0/24 9647 -211.253.35.0/24 4766 -211.253.36.0/22 4766 -211.253.40.0/21 4766 -211.253.48.0/21 4766 -211.253.56.0/22 4766 -211.253.60.0/24 17841 -211.253.61.0/24 17574 -211.253.62.0/24 17841 -211.253.63.0/24 4766 -211.253.64.0/24 4766 -211.253.65.0/24 45400 -211.253.66.0/24 4766 -211.253.67.0/24 45400 -211.253.68.0/22 9531 -211.253.72.0/21 9531 -211.253.80.0/23 4766 -211.253.82.0/24 17841 -211.253.83.0/24 4766 -211.253.84.0/22 4766 -211.253.88.0/21 4766 -211.253.96.0/23 4766 -211.253.98.0/23 17841 -211.253.100.0/22 4766 -211.253.104.0/21 4766 -211.253.112.0/21 4766 -211.253.120.0/24 4766 -211.253.121.0/24 17841 -211.253.122.0/24 17841 -211.253.123.0/24 4766 -211.253.124.0/24 17841 -211.253.125.0/24 4766 -211.253.126.0/23 4766 -211.253.128.0/20 4766 -211.253.144.0/22 4766 -211.253.148.0/24 17841 -211.253.149.0/24 45400 -211.253.150.0/24 45400 -211.253.151.0/24 4766 -211.253.152.0/23 4766 -211.253.154.0/24 9955 -211.253.155.0/24 4766 -211.253.156.0/22 4766 -211.253.160.0/20 4766 -211.253.176.0/20 10176 -211.253.192.0/21 4766 -211.253.200.0/22 4766 -211.253.204.0/22 9857 -211.253.208.0/21 4766 -211.253.216.0/23 4766 -211.253.218.0/24 4766 -211.253.219.0/24 55596 -211.253.220.0/22 4766 -211.253.224.0/20 9955 -211.253.240.0/21 4766 -211.253.248.0/23 17584 -211.253.250.0/24 45400 -211.253.251.0/24 18323 -211.253.252.0/22 4766 -211.254.0.0/17 38661 -211.254.128.0/18 3786 -211.254.192.0/21 4766 -211.254.200.0/24 4766 -211.254.201.0/24 23590 -211.254.202.0/23 4766 -211.254.204.0/22 4766 -211.254.208.0/20 4766 -211.254.252.0/22 3786 -211.255.0.0/18 38661 -211.255.106.0/23 45400 -211.255.108.0/23 45400 -211.255.116.0/22 45400 -211.255.123.0/24 45400 -211.255.128.0/21 4766 -211.255.144.0/20 4766 -211.255.160.0/19 10036 -211.255.192.0/20 9526 -211.255.208.0/20 17854 -211.255.224.0/21 9848 -211.255.232.0/23 9848 -211.255.234.0/23 38669 -211.255.236.0/22 38669 -211.255.240.0/23 38669 -211.255.242.0/23 9848 -211.255.244.0/22 9848 -211.255.248.0/21 9848 -212.0.0.0/18 3320 -212.0.64.0/19 8828 -212.0.96.0/19 8220 -212.0.128.0/19 15706 -212.0.160.0/21 2860 -212.0.192.0/22 8926 -212.0.196.0/24 8926 -212.0.198.0/23 8926 -212.0.200.0/21 8926 -212.0.208.0/20 8926 -212.0.224.0/19 4589 -212.1.0.0/19 286 -212.1.32.0/19 5521 -212.1.64.0/24 6846 -212.1.65.0/24 203477 -212.1.66.0/23 6846 -212.1.68.0/22 6846 -212.1.72.0/24 6846 -212.1.73.0/24 43022 -212.1.74.0/23 43022 -212.1.76.0/23 6846 -212.1.78.0/23 43022 -212.1.80.0/23 6846 -212.1.82.0/23 43022 -212.1.84.0/22 6846 -212.1.88.0/21 6846 -212.1.96.0/20 6846 -212.1.112.0/22 6846 -212.1.116.0/24 207986 -212.1.117.0/24 6846 -212.1.118.0/23 6846 -212.1.120.0/22 6846 -212.1.124.0/23 6846 -212.1.126.0/24 6846 -212.1.127.0/24 43022 -212.1.128.0/19 9105 -212.1.160.0/19 2686 -212.1.192.0/21 57241 -212.1.200.0/21 61130 -212.1.208.0/21 47583 -212.1.218.0/23 30762 -212.1.222.0/23 30762 -212.1.224.0/19 12714 -212.2.0.0/19 8190 -212.2.32.0/19 12288 -212.2.64.0/19 34125 -212.2.96.0/21 8374 -212.2.104.0/24 8374 -212.2.105.0/24 21243 -212.2.106.0/23 21243 -212.2.108.0/22 8374 -212.2.112.0/20 8374 -212.2.160.0/19 2110 -212.2.192.0/19 8685 -212.2.224.0/19 48271 -212.3.0.0/21 12597 -212.3.8.0/24 12597 -212.3.9.0/24 49217 -212.3.10.0/23 12597 -212.3.12.0/22 12597 -212.3.16.0/20 12597 -212.3.32.0/19 39155 -212.3.64.0/19 24637 -212.3.96.0/21 6702 -212.3.104.0/24 6702 -212.3.105.0/24 57993 -212.3.106.0/23 6702 -212.3.108.0/24 6702 -212.3.109.0/24 57993 -212.3.110.0/23 6702 -212.3.112.0/23 6702 -212.3.114.0/24 199500 -212.3.115.0/24 197228 -212.3.116.0/24 60455 -212.3.117.0/24 6702 -212.3.118.0/23 6702 -212.3.120.0/22 6702 -212.3.124.0/24 6702 -212.3.125.0/24 8719 -212.3.126.0/23 6702 -212.3.128.0/24 12389 -212.3.129.0/24 35125 -212.3.130.0/24 12389 -212.3.131.0/24 35125 -212.3.132.0/22 35125 -212.3.136.0/23 35125 -212.3.138.0/24 35125 -212.3.139.0/24 12389 -212.3.140.0/24 12389 -212.3.141.0/24 35125 -212.3.142.0/24 12389 -212.3.143.0/24 35125 -212.3.144.0/24 12389 -212.3.145.0/24 35125 -212.3.146.0/23 35125 -212.3.148.0/23 35125 -212.3.150.0/24 12389 -212.3.151.0/24 35125 -212.3.152.0/22 35125 -212.3.156.0/24 35125 -212.3.157.0/24 12389 -212.3.158.0/24 35125 -212.3.159.0/24 12389 -212.3.160.0/19 9104 -212.3.192.0/19 24921 -212.3.224.0/19 3356 -212.4.0.0/19 702 -212.4.32.0/19 2119 -212.4.64.0/19 8821 -212.4.96.0/19 29231 -212.4.128.0/19 12570 -212.4.160.0/19 20676 -212.4.192.0/19 8918 -212.4.224.0/19 12665 -212.5.0.0/19 20676 -212.5.32.0/21 47849 -212.5.48.0/23 47872 -212.5.50.0/24 47872 -212.5.51.0/24 202634 -212.5.56.0/23 12615 -212.5.59.0/24 12615 -212.5.60.0/24 201613 -212.5.64.0/18 8470 -212.5.128.0/24 8866 -212.5.129.0/24 39135 -212.5.130.0/23 8866 -212.5.132.0/24 8866 -212.5.133.0/24 8795 -212.5.134.0/23 8866 -212.5.136.0/21 8866 -212.5.144.0/21 8866 -212.5.152.0/22 8866 -212.5.156.0/24 202690 -212.5.157.0/24 8866 -212.5.158.0/23 8866 -212.5.160.0/19 6863 -212.5.192.0/19 6855 -212.5.224.0/19 6694 -212.6.0.0/21 8440 -212.6.8.0/23 8440 -212.6.10.0/24 8440 -212.6.31.0/24 8440 -212.6.48.0/23 59950 -212.6.55.0/24 59470 -212.6.64.0/18 9145 -212.6.128.0/17 8426 -212.7.0.0/19 8728 -212.7.32.0/20 15704 -212.7.48.0/20 12321 -212.7.64.0/19 8884 -212.7.128.0/19 8881 -212.7.160.0/19 12360 -212.7.192.0/20 60781 -212.7.208.0/22 60781 -212.7.213.0/24 50599 -212.7.214.0/23 202712 -212.7.216.0/21 198156 -212.7.230.0/23 199624 -212.7.232.0/24 199624 -212.7.235.0/24 199624 -212.7.236.0/23 199624 -212.7.244.0/22 21453 -212.7.253.0/24 199624 -212.8.0.0/23 3209 -212.8.2.0/24 3209 -212.8.3.0/24 8881 -212.8.4.0/24 3209 -212.8.6.0/23 3209 -212.8.8.0/21 3209 -212.8.16.0/20 3209 -212.8.32.0/20 9202 -212.8.48.0/23 9202 -212.8.50.0/23 60754 -212.8.52.0/22 9202 -212.8.56.0/22 9202 -212.8.60.0/23 9202 -212.8.62.0/24 9202 -212.8.63.0/24 42671 -212.8.64.0/18 12338 -212.8.128.0/21 9189 -212.8.136.0/21 8422 -212.8.144.0/21 8422 -212.8.152.0/21 9189 -212.8.160.0/19 5400 -212.8.192.0/19 8925 -212.8.224.0/22 12679 -212.8.228.0/23 12679 -212.8.230.0/23 45352 -212.8.232.0/22 61400 -212.8.236.0/24 200161 -212.8.237.0/24 206805 -212.8.238.0/23 200161 -212.8.240.0/24 49981 -212.8.241.0/24 46632 -212.8.242.0/23 49981 -212.8.244.0/23 21100 -212.8.246.0/24 21100 -212.8.247.0/24 49189 -212.8.248.0/23 49981 -212.8.250.0/24 49981 -212.8.251.0/24 43350 -212.8.252.0/23 49981 -212.8.254.0/23 45352 -212.9.0.0/19 8681 -212.9.32.0/19 15594 -212.9.64.0/19 12479 -212.9.96.0/19 25178 -212.9.128.0/19 8787 -212.9.160.0/19 12374 -212.9.192.0/22 8942 -212.9.224.0/19 6703 -212.10.0.0/16 197288 -212.11.0.0/18 4589 -212.11.64.0/19 29676 -212.11.96.0/19 25512 -212.11.128.0/19 8901 -212.11.160.0/19 42428 -212.11.192.0/19 29256 -212.11.224.0/19 12813 -212.12.0.0/19 8675 -212.12.32.0/20 9211 -212.12.48.0/21 13135 -212.12.56.0/21 9211 -212.12.64.0/20 8846 -212.12.80.0/24 198372 -212.12.128.0/20 15924 -212.12.144.0/21 15924 -212.12.152.0/23 15924 -212.12.154.0/24 31645 -212.12.155.0/24 15924 -212.12.156.0/22 15924 -212.12.160.0/24 6453 -212.12.161.0/24 29684 -212.12.162.0/23 29684 -212.12.164.0/22 29684 -212.12.168.0/21 29684 -212.12.176.0/22 29684 -212.12.180.0/23 29684 -212.12.182.0/24 6453 -212.12.183.0/24 29684 -212.12.184.0/21 29684 -212.12.192.0/19 20846 -212.12.224.0/22 15804 -212.12.229.0/24 15804 -212.12.230.0/23 15804 -212.12.232.0/21 15804 -212.12.240.0/21 15804 -212.12.248.0/22 15804 -212.12.252.0/24 15804 -212.12.254.0/23 15804 -212.13.0.0/19 12714 -212.13.32.0/19 12305 -212.13.64.0/19 8830 -212.13.96.0/19 8615 -212.13.128.0/18 9198 -212.13.192.0/19 8943 -212.13.224.0/19 9119 -212.14.0.0/19 8286 -212.14.32.0/20 8286 -212.14.48.0/21 13119 -212.14.56.0/22 13119 -212.14.60.0/24 204444 -212.14.61.0/24 13119 -212.14.62.0/23 13119 -212.14.64.0/19 5669 -212.14.96.0/19 12321 -212.14.128.0/20 3269 -212.14.144.0/24 3269 -212.14.145.0/24 30722 -212.14.146.0/23 3269 -212.14.148.0/22 3269 -212.14.152.0/23 3269 -212.14.154.0/24 3269 -212.14.155.0/24 30722 -212.14.156.0/24 30722 -212.14.157.0/24 3269 -212.14.158.0/23 3269 -212.14.160.0/19 20632 -212.14.192.0/22 34205 -212.14.196.0/23 34205 -212.14.198.0/24 12389 -212.14.199.0/24 34205 -212.14.200.0/22 34205 -212.14.204.0/24 34205 -212.14.205.0/24 12389 -212.14.206.0/23 12389 -212.14.208.0/21 12389 -212.14.216.0/23 34205 -212.14.218.0/24 12389 -212.14.219.0/24 34205 -212.14.220.0/23 34205 -212.14.222.0/24 12389 -212.14.223.0/24 34205 -212.14.224.0/19 12975 -212.15.0.0/20 15924 -212.15.16.0/21 15924 -212.15.24.0/24 49563 -212.15.25.0/24 50875 -212.15.26.0/23 15924 -212.15.28.0/22 15924 -212.15.32.0/20 8410 -212.15.48.0/21 8410 -212.15.64.0/19 8871 -212.15.96.0/19 8615 -212.15.128.0/20 6703 -212.15.160.0/20 12810 -212.15.176.0/21 12810 -212.15.184.0/23 12810 -212.15.186.0/24 203463 -212.15.187.0/24 12810 -212.15.188.0/22 12810 -212.15.192.0/21 8925 -212.15.200.0/22 8925 -212.15.204.0/22 9030 -212.15.208.0/21 42008 -212.15.216.0/21 8925 -212.15.224.0/19 60314 -212.16.0.0/19 8592 -212.16.32.0/22 29286 -212.16.36.0/22 1901 -212.16.40.0/21 1901 -212.16.48.0/20 1901 -212.16.64.0/23 34837 -212.16.66.0/23 44889 -212.16.68.0/22 44889 -212.16.72.0/24 44889 -212.16.73.0/24 34837 -212.16.74.0/24 44889 -212.16.75.0/24 34837 -212.16.76.0/22 44889 -212.16.80.0/23 44889 -212.16.82.0/23 34837 -212.16.84.0/22 44889 -212.16.88.0/23 44889 -212.16.90.0/23 34837 -212.16.92.0/22 44889 -212.16.96.0/19 12659 -212.16.128.0/19 8462 -212.16.160.0/20 12552 -212.16.176.0/23 12552 -212.16.178.0/24 39351 -212.16.179.0/24 12552 -212.16.180.0/22 12552 -212.16.184.0/21 12552 -212.16.192.0/19 8920 -212.16.224.0/19 12759 -212.17.0.0/19 25549 -212.17.32.0/19 34245 -212.17.64.0/18 6830 -212.17.128.0/19 2119 -212.17.160.0/20 3238 -212.17.176.0/21 3238 -212.17.192.0/19 8968 -212.17.224.0/19 8820 -212.18.0.0/19 8767 -212.18.32.0/19 8591 -212.18.64.0/19 8687 -212.18.128.0/19 5619 -212.18.160.0/19 12353 -212.18.192.0/19 8937 -212.18.224.0/20 33182 -212.18.240.0/23 198435 -212.18.242.0/24 35393 -212.18.243.0/24 198435 -212.18.245.0/24 199792 -212.18.246.0/24 199575 -212.18.247.0/24 199792 -212.18.248.0/24 201304 -212.18.249.0/24 201303 -212.18.250.0/24 42044 -212.18.251.0/24 204055 -212.18.253.0/24 199391 -212.18.254.0/23 199391 -212.19.0.0/19 8749 -212.19.32.0/19 12306 -212.19.64.0/19 5413 -212.19.96.0/19 15691 -212.19.128.0/22 9198 -212.19.132.0/23 9198 -212.19.134.0/24 9198 -212.19.135.0/24 44653 -212.19.136.0/24 9198 -212.19.137.0/24 44653 -212.19.138.0/23 9198 -212.19.140.0/22 9198 -212.19.144.0/20 9198 -212.19.160.0/19 12362 -212.19.192.0/21 8935 -212.19.200.0/22 8935 -212.19.204.0/23 8935 -212.19.206.0/24 8935 -212.19.207.0/24 39855 -212.19.208.0/24 8935 -212.19.209.0/24 39855 -212.19.210.0/23 39855 -212.19.212.0/22 8935 -212.19.216.0/23 8935 -212.19.218.0/24 8954 -212.19.219.0/24 8935 -212.19.220.0/22 8935 -212.19.224.0/21 60781 -212.19.234.0/24 30925 -212.19.235.0/24 60781 -212.19.236.0/24 60781 -212.19.240.0/20 4589 -212.20.0.0/21 12389 -212.20.8.0/22 12389 -212.20.12.0/23 12389 -212.20.14.0/24 12389 -212.20.15.0/24 16054 -212.20.16.0/20 12389 -212.20.32.0/19 12389 -212.20.64.0/19 8913 -212.20.96.0/19 29208 -212.20.128.0/22 48945 -212.20.132.0/22 174 -212.20.136.0/21 174 -212.20.144.0/21 174 -212.20.152.0/21 48945 -212.20.160.0/19 13039 -212.20.192.0/19 3292 -212.20.224.0/19 12703 -212.21.0.0/19 8427 -212.21.32.0/19 27822 -212.21.64.0/22 44716 -212.21.68.0/23 44716 -212.21.70.0/24 44716 -212.21.71.0/24 12732 -212.21.72.0/21 44716 -212.21.80.0/20 44716 -212.21.96.0/21 15463 -212.21.104.0/22 15463 -212.21.108.0/23 15463 -212.21.110.0/24 15463 -212.21.111.0/24 46977 -212.21.112.0/20 15463 -212.21.128.0/24 44247 -212.21.129.0/24 39396 -212.21.130.0/24 25374 -212.21.132.0/24 41313 -212.21.133.0/24 39396 -212.21.136.0/23 44247 -212.21.138.0/24 44247 -212.21.139.0/24 56856 -212.21.140.0/22 25374 -212.21.144.0/21 25374 -212.21.152.0/22 25374 -212.21.156.0/23 25374 -212.21.158.0/24 25374 -212.21.159.0/24 39396 -212.21.160.0/19 9022 -212.21.192.0/19 5400 -212.21.224.0/24 6739 -212.21.225.0/24 12357 -212.21.226.0/23 6739 -212.21.228.0/22 6739 -212.21.232.0/23 6739 -212.21.234.0/23 12357 -212.21.236.0/22 12357 -212.21.240.0/21 6739 -212.21.248.0/23 6739 -212.21.250.0/23 12357 -212.21.252.0/22 6739 -212.22.0.0/19 8607 -212.22.32.0/19 12430 -212.22.64.0/24 202933 -212.22.65.0/24 8888 -212.22.66.0/24 208102 -212.22.67.0/24 204102 -212.22.68.0/24 48330 -212.22.69.0/24 51559 -212.22.70.0/24 29182 -212.22.71.0/24 208102 -212.22.72.0/24 209655 -212.22.73.0/24 202933 -212.22.74.0/23 202933 -212.22.76.0/24 48330 -212.22.77.0/24 202933 -212.22.78.0/24 202933 -212.22.79.0/24 206803 -212.22.80.0/24 48330 -212.22.81.0/24 209414 -212.22.82.0/24 48330 -212.22.83.0/24 50536 -212.22.84.0/24 204102 -212.22.85.0/24 208102 -212.22.86.0/24 48330 -212.22.87.0/24 29182 -212.22.88.0/23 8888 -212.22.90.0/24 8888 -212.22.92.0/23 208102 -212.22.94.0/24 8888 -212.22.95.0/24 8882 -212.22.96.0/24 13037 -212.22.128.0/19 8612 -212.22.160.0/19 12556 -212.22.192.0/20 31148 -212.22.208.0/21 31148 -212.22.218.0/23 31148 -212.22.221.0/24 31148 -212.22.222.0/23 31148 -212.22.224.0/20 12798 -212.22.240.0/23 12798 -212.22.242.0/24 12798 -212.22.244.0/22 12798 -212.22.248.0/22 12798 -212.22.253.0/24 12798 -212.22.254.0/24 12798 -212.23.0.0/19 13037 -212.23.32.0/19 3257 -212.23.64.0/19 3253 -212.23.96.0/19 12638 -212.23.128.0/19 12329 -212.23.160.0/19 12566 -212.23.224.0/19 8220 -212.24.0.0/19 8612 -212.24.32.0/23 197695 -212.24.34.0/24 25227 -212.24.35.0/24 197695 -212.24.36.0/24 197695 -212.24.37.0/24 205952 -212.24.38.0/24 197695 -212.24.39.0/24 205952 -212.24.40.0/24 205952 -212.24.41.0/24 197695 -212.24.42.0/24 25227 -212.24.43.0/24 205952 -212.24.44.0/24 197695 -212.24.45.0/24 25227 -212.24.46.0/24 25227 -212.24.47.0/24 197695 -212.24.48.0/24 197695 -212.24.49.0/24 25227 -212.24.50.0/24 205952 -212.24.51.0/24 25227 -212.24.53.0/24 25227 -212.24.54.0/24 25227 -212.24.55.0/24 197695 -212.24.56.0/24 197695 -212.24.57.0/24 205952 -212.24.58.0/24 197695 -212.24.59.0/24 25227 -212.24.60.0/22 197695 -212.24.64.0/19 5089 -212.24.96.0/20 62282 -212.24.112.0/22 21213 -212.24.116.0/22 12577 -212.24.120.0/21 21213 -212.24.128.0/19 29208 -212.24.160.0/19 12301 -212.24.192.0/19 34683 -212.24.224.0/19 29255 -212.25.0.0/19 8758 -212.25.32.0/19 34569 -212.25.64.0/18 8551 -212.25.128.0/19 1653 -212.25.160.0/19 12637 -212.25.208.0/24 25599 -212.25.210.0/24 198029 -212.25.236.0/22 3561 -212.25.240.0/20 200705 -212.26.0.0/18 8895 -212.26.64.0/21 8895 -212.26.72.0/22 8895 -212.26.76.0/24 30857 -212.26.77.0/24 8895 -212.26.78.0/23 8895 -212.26.80.0/20 8895 -212.26.96.0/19 8895 -212.26.128.0/19 8788 -212.26.160.0/19 16160 -212.26.192.0/21 8935 -212.26.200.0/22 39855 -212.26.204.0/22 8935 -212.26.208.0/21 8935 -212.26.216.0/23 8935 -212.26.218.0/24 8954 -212.26.219.0/24 8935 -212.26.220.0/22 8935 -212.26.224.0/21 12730 -212.26.232.0/22 12730 -212.26.236.0/24 12389 -212.26.237.0/24 12730 -212.26.238.0/23 12730 -212.26.240.0/20 12730 -212.27.0.0/19 44034 -212.27.32.0/19 12322 -212.27.64.0/18 8437 -212.27.128.0/19 21336 -212.27.160.0/21 3257 -212.27.168.0/22 3257 -212.27.172.0/24 21254 -212.27.173.0/24 3257 -212.27.174.0/23 3257 -212.27.176.0/21 3257 -212.27.184.0/24 3257 -212.27.185.0/24 29383 -212.27.186.0/23 3257 -212.27.188.0/23 3257 -212.27.190.0/24 21254 -212.27.191.0/24 3257 -212.27.192.0/19 29208 -212.27.224.0/19 3327 -212.28.0.0/19 15654 -212.28.32.0/19 12292 -212.28.64.0/21 15836 -212.28.72.0/22 15836 -212.28.76.0/24 15836 -212.28.77.0/24 207246 -212.28.78.0/23 15836 -212.28.80.0/20 15836 -212.28.96.0/19 13010 -212.28.128.0/19 12350 -212.28.160.0/19 12468 -212.28.192.0/19 3301 -212.28.224.0/20 24634 -212.28.240.0/22 24634 -212.28.244.0/24 9051 -212.28.245.0/24 24634 -212.28.246.0/23 24634 -212.28.248.0/21 24634 -212.29.0.0/19 8208 -212.29.32.0/19 15763 -212.29.64.0/24 12861 -212.29.66.0/23 12861 -212.29.90.0/24 12861 -212.29.128.0/19 12850 -212.29.160.0/19 21221 -212.29.192.0/18 1680 -212.30.0.0/19 8680 -212.30.52.0/23 41956 -212.30.54.0/24 41956 -212.30.55.0/24 9051 -212.30.58.0/23 25471 -212.30.64.0/19 5603 -212.30.96.0/19 12626 -212.30.128.0/22 8359 -212.30.132.0/24 62347 -212.30.133.0/24 8359 -212.30.134.0/23 8359 -212.30.136.0/21 8359 -212.30.144.0/20 8359 -212.30.160.0/19 8359 -212.30.192.0/19 6677 -212.30.224.0/19 44515 -212.31.0.0/19 8721 -212.31.32.0/19 12386 -212.31.64.0/19 8387 -212.31.96.0/20 6866 -212.31.112.0/22 6866 -212.31.116.0/23 6866 -212.31.118.0/23 50233 -212.31.120.0/21 6866 -212.31.128.0/19 39116 -212.31.160.0/19 57084 -212.31.192.0/19 5400 -212.31.224.0/19 8220 -212.32.0.0/17 8897 -212.32.128.0/18 12501 -212.32.192.0/19 12389 -212.32.224.0/19 60781 -212.33.0.0/20 30733 -212.33.16.0/23 30733 -212.33.18.0/23 44982 -212.33.20.0/22 30733 -212.33.24.0/21 30733 -212.33.32.0/19 12605 -212.33.64.0/19 8865 -212.33.96.0/19 15975 -212.33.128.0/19 8896 -212.33.160.0/19 41132 -212.33.192.0/20 43754 -212.33.208.0/20 12880 -212.33.224.0/20 12768 -212.33.240.0/21 12768 -212.33.248.0/24 12768 -212.33.249.0/24 201582 -212.33.250.0/23 12768 -212.33.252.0/22 12768 -212.34.0.0/22 8697 -212.34.4.0/24 8376 -212.34.5.0/24 8697 -212.34.6.0/23 8697 -212.34.8.0/23 8376 -212.34.10.0/23 8697 -212.34.12.0/23 8697 -212.34.14.0/24 8697 -212.34.15.0/24 8376 -212.34.16.0/24 8697 -212.34.17.0/24 8376 -212.34.18.0/23 8697 -212.34.20.0/22 8697 -212.34.24.0/22 8376 -212.34.28.0/24 328126 -212.34.29.0/24 8697 -212.34.30.0/23 8697 -212.34.32.0/19 8905 -212.34.64.0/19 12316 -212.34.96.0/19 12389 -212.34.128.0/19 20648 -212.34.160.0/19 12348 -212.34.192.0/19 8922 -212.34.224.0/19 44395 -212.35.0.0/19 41872 -212.35.32.0/19 6730 -212.35.64.0/19 9038 -212.35.96.0/20 8220 -212.35.112.0/21 8220 -212.35.120.0/24 8220 -212.35.121.0/24 58122 -212.35.122.0/23 8220 -212.35.124.0/22 8220 -212.35.128.0/19 3233 -212.35.160.0/19 12389 -212.35.192.0/19 12637 -212.35.224.0/19 5413 -212.36.0.0/21 8717 -212.36.8.0/23 29580 -212.36.10.0/23 8717 -212.36.12.0/24 8717 -212.36.13.0/24 51581 -212.36.14.0/23 8717 -212.36.16.0/24 8717 -212.36.17.0/24 42794 -212.36.18.0/24 203723 -212.36.19.0/24 51830 -212.36.20.0/22 8717 -212.36.24.0/23 42295 -212.36.26.0/24 203578 -212.36.27.0/24 29580 -212.36.28.0/22 8717 -212.36.32.0/19 8220 -212.36.64.0/19 15699 -212.36.126.0/24 34934 -212.36.127.0/24 51043 -212.36.144.0/20 8220 -212.36.160.0/20 8220 -212.36.184.0/21 8220 -212.36.192.0/19 9051 -212.36.224.0/19 29072 -212.37.0.0/19 12552 -212.37.32.0/19 12355 -212.37.64.0/19 31117 -212.37.96.0/19 31642 -212.37.128.0/19 39642 -212.37.160.0/19 35205 -212.37.192.0/19 8784 -212.37.224.0/19 3292 -212.38.0.0/19 24639 -212.38.32.0/19 12445 -212.38.64.0/19 8851 -212.38.96.0/19 13105 -212.38.160.0/20 20860 -212.38.176.0/23 11352 -212.38.178.0/23 20860 -212.38.180.0/22 20860 -212.38.184.0/24 11352 -212.38.185.0/24 20860 -212.38.186.0/23 11352 -212.38.188.0/22 20860 -212.38.192.0/19 5588 -212.38.224.0/19 719 -212.39.0.0/19 15663 -212.39.32.0/24 3301 -212.39.33.0/24 7029 -212.39.34.0/24 3301 -212.39.42.0/24 7029 -212.39.64.0/19 8866 -212.39.96.0/19 20875 -212.39.128.0/19 9003 -212.39.160.0/19 4913 -212.39.192.0/19 13042 -212.39.228.0/24 13232 -212.39.229.0/24 2159 -212.40.0.0/19 12350 -212.40.32.0/21 8359 -212.40.40.0/22 8359 -212.40.44.0/23 8359 -212.40.46.0/24 8359 -212.40.47.0/24 24682 -212.40.48.0/20 8359 -212.40.64.0/19 20845 -212.40.96.0/19 12594 -212.40.128.0/19 31126 -212.40.160.0/24 61157 -212.40.163.0/24 8972 -212.40.168.0/24 61157 -212.40.174.0/23 61157 -212.40.176.0/24 61157 -212.40.181.0/24 61157 -212.40.182.0/23 61157 -212.40.186.0/24 61157 -212.40.190.0/24 31100 -212.40.192.0/21 8904 -212.40.202.0/23 8904 -212.40.204.0/22 8904 -212.40.208.0/20 8904 -212.40.224.0/19 6739 -212.41.0.0/20 6662 -212.41.16.0/21 6662 -212.41.24.0/22 6662 -212.41.28.0/23 6662 -212.41.30.0/24 62233 -212.41.31.0/24 62273 -212.41.32.0/19 42132 -212.41.64.0/18 9044 -212.41.128.0/19 5400 -212.41.160.0/19 5587 -212.41.192.0/19 3303 -212.41.224.0/19 6830 -212.42.0.0/19 8838 -212.42.32.0/19 12314 -212.42.64.0/22 8856 -212.42.72.0/21 8856 -212.42.80.0/22 8856 -212.42.84.0/23 8856 -212.42.88.0/23 8856 -212.42.90.0/24 8856 -212.42.92.0/22 8856 -212.42.96.0/19 8449 -212.42.128.0/23 24951 -212.42.160.0/19 12519 -212.42.192.0/19 49800 -212.42.224.0/22 44716 -212.42.228.0/23 44716 -212.42.230.0/24 12732 -212.42.231.0/24 44716 -212.42.232.0/22 44716 -212.42.236.0/24 12732 -212.42.237.0/24 44716 -212.42.238.0/23 44716 -212.42.240.0/20 44716 -212.43.0.0/19 42961 -212.43.32.0/19 43205 -212.43.64.0/19 42652 -212.43.96.0/19 21034 -212.43.128.0/19 8801 -212.43.192.0/18 8426 -212.44.0.0/18 5552 -212.44.64.0/19 20632 -212.44.96.0/20 43128 -212.44.112.0/21 12637 -212.44.120.0/22 12637 -212.44.124.0/23 12637 -212.44.126.0/23 43128 -212.44.128.0/20 3216 -212.44.144.0/22 3216 -212.44.148.0/24 33844 -212.44.149.0/24 3216 -212.44.150.0/23 3216 -212.44.152.0/23 3216 -212.44.154.0/24 3216 -212.44.155.0/24 13192 -212.44.156.0/22 3216 -212.44.160.0/19 12579 -212.44.192.0/19 680 -212.44.224.0/19 8921 -212.45.0.0/20 8732 -212.45.16.0/21 8732 -212.45.24.0/22 8732 -212.45.28.0/23 8732 -212.45.30.0/24 62268 -212.45.31.0/24 8732 -212.45.32.0/19 12414 -212.45.64.0/20 42459 -212.45.80.0/20 39824 -212.45.96.0/21 12650 -212.45.104.0/21 48173 -212.45.112.0/20 35637 -212.45.128.0/19 8816 -212.45.160.0/19 12929 -212.45.192.0/19 15623 -212.45.224.0/19 44736 -212.46.0.0/19 8752 -212.46.32.0/19 41472 -212.46.64.0/19 47408 -212.46.96.0/19 12676 -212.46.128.0/19 15463 -212.46.160.0/19 39514 -212.46.192.0/20 3216 -212.46.208.0/21 3216 -212.46.216.0/24 3216 -212.46.217.0/24 35102 -212.46.218.0/23 3216 -212.46.220.0/22 3216 -212.46.224.0/19 3216 -212.47.0.0/19 5588 -212.47.32.0/19 12345 -212.47.64.0/19 8897 -212.47.96.0/20 8764 -212.47.112.0/22 8764 -212.47.116.0/23 8764 -212.47.119.0/24 8764 -212.47.120.0/23 8764 -212.47.122.0/24 8764 -212.47.123.0/24 43811 -212.47.124.0/22 8764 -212.47.160.0/21 6830 -212.47.168.0/23 6830 -212.47.170.0/23 9100 -212.47.172.0/23 9100 -212.47.174.0/23 6830 -212.47.176.0/20 6830 -212.47.192.0/19 3327 -212.47.224.0/19 12876 -212.48.0.0/19 8660 -212.48.32.0/19 8359 -212.48.64.0/21 20738 -212.48.72.0/24 8972 -212.48.73.0/24 20738 -212.48.74.0/24 8972 -212.48.75.0/24 20738 -212.48.76.0/22 20738 -212.48.80.0/23 20738 -212.48.82.0/23 8972 -212.48.84.0/22 20738 -212.48.88.0/23 20738 -212.48.90.0/24 8972 -212.48.91.0/24 20738 -212.48.92.0/24 20738 -212.48.93.0/24 8972 -212.48.94.0/23 20738 -212.48.96.0/19 8893 -212.48.128.0/19 12714 -212.48.160.0/19 8911 -212.48.192.0/19 12389 -212.48.224.0/21 51093 -212.48.232.0/24 51093 -212.48.235.0/24 200624 -212.48.236.0/22 56864 -212.48.240.0/20 6830 -212.49.0.0/19 3327 -212.49.64.0/19 12455 -212.49.96.0/19 12668 -212.49.128.0/23 8903 -212.49.130.0/23 5400 -212.49.132.0/22 5400 -212.49.136.0/24 35461 -212.49.137.0/24 5400 -212.49.138.0/23 5400 -212.49.140.0/22 5400 -212.49.144.0/24 5400 -212.49.145.0/24 31262 -212.49.146.0/23 5400 -212.49.148.0/22 12541 -212.49.152.0/21 12541 -212.49.160.0/20 5400 -212.49.176.0/22 8903 -212.49.180.0/24 199329 -212.49.181.0/24 5400 -212.49.182.0/23 5400 -212.49.184.0/22 5400 -212.49.188.0/24 5400 -212.49.189.0/24 8903 -212.49.190.0/23 5400 -212.49.192.0/18 8426 -212.50.0.0/20 8717 -212.50.16.0/24 8717 -212.50.17.0/24 48064 -212.50.18.0/24 29580 -212.50.19.0/24 8717 -212.50.20.0/24 8717 -212.50.21.0/24 51855 -212.50.22.0/23 8717 -212.50.24.0/21 8717 -212.50.32.0/23 9000 -212.50.35.0/24 9000 -212.50.36.0/23 9000 -212.50.39.0/24 9000 -212.50.41.0/24 9000 -212.50.44.0/24 9000 -212.50.47.0/24 29286 -212.50.48.0/22 29286 -212.50.53.0/24 29286 -212.50.54.0/23 9000 -212.50.56.0/22 29286 -212.50.60.0/24 29286 -212.50.61.0/24 9000 -212.50.64.0/19 34754 -212.50.96.0/19 35432 -212.50.128.0/19 16086 -212.50.160.0/19 12390 -212.50.192.0/19 20931 -212.50.224.0/21 25820 -212.50.232.0/22 25820 -212.51.0.0/19 25415 -212.51.32.0/19 12334 -212.51.64.0/21 5513 -212.51.72.0/22 5513 -212.51.76.0/23 5513 -212.51.78.0/24 5513 -212.51.79.0/24 5483 -212.51.80.0/21 5513 -212.51.88.0/23 5513 -212.51.90.0/24 5513 -212.51.91.0/24 5483 -212.51.92.0/22 5513 -212.51.96.0/21 5513 -212.51.104.0/22 5513 -212.51.108.0/23 5513 -212.51.110.0/24 5483 -212.51.111.0/24 5513 -212.51.112.0/21 5513 -212.51.120.0/22 5513 -212.51.124.0/24 5513 -212.51.125.0/24 5483 -212.51.126.0/23 5513 -212.51.128.0/19 13030 -212.51.160.0/19 16347 -212.51.192.0/21 8256 -212.51.200.0/22 16283 -212.51.204.0/24 8256 -212.51.205.0/24 16283 -212.51.206.0/24 16283 -212.51.207.0/24 8256 -212.51.208.0/20 8256 -212.51.224.0/19 12762 -212.52.32.0/19 21412 -212.52.64.0/18 1267 -212.52.128.0/19 25543 -212.52.160.0/19 28924 -212.52.192.0/19 21013 -212.53.0.0/20 47377 -212.53.32.0/19 12335 -212.53.64.0/19 13768 -212.53.96.0/19 1257 -212.53.128.0/18 8893 -212.53.192.0/20 8893 -212.53.208.0/21 8893 -212.53.216.0/22 8893 -212.53.220.0/23 8893 -212.53.222.0/24 8893 -212.53.223.0/24 205597 -212.53.224.0/19 8893 -212.54.0.0/19 719 -212.54.32.0/19 33915 -212.54.64.0/19 9158 -212.54.96.0/19 8708 -212.54.128.0/19 50292 -212.54.160.0/19 16334 -212.54.192.0/20 1241 -212.54.208.0/22 1241 -212.54.212.0/24 1241 -212.54.213.0/24 203878 -212.54.214.0/23 1241 -212.54.216.0/21 1241 -212.54.224.0/19 201333 -212.55.0.0/19 12338 -212.55.32.0/19 15389 -212.55.64.0/19 25133 -212.55.96.0/19 12389 -212.55.128.0/19 3243 -212.55.160.0/20 15525 -212.55.176.0/21 15525 -212.55.184.0/21 12849 -212.55.192.0/19 15623 -212.55.224.0/19 31679 -212.56.0.0/22 8390 -212.56.4.0/23 57546 -212.56.6.0/23 8390 -212.56.8.0/21 8390 -212.56.16.0/22 8390 -212.56.20.0/22 5580 -212.56.24.0/21 8390 -212.56.32.0/19 8897 -212.56.64.0/18 6871 -212.56.128.0/19 12709 -212.56.160.0/19 31510 -212.56.192.0/19 25454 -212.56.224.0/20 12684 -212.56.240.0/21 12684 -212.56.248.0/24 60725 -212.56.249.0/24 12684 -212.56.250.0/23 12684 -212.56.252.0/22 12684 -212.57.0.0/19 34984 -212.57.32.0/21 48689 -212.57.40.0/21 8400 -212.57.48.0/20 41960 -212.57.64.0/19 12305 -212.57.96.0/20 12690 -212.57.112.0/23 12690 -212.57.114.0/24 12690 -212.57.116.0/23 12690 -212.57.118.0/24 12690 -212.57.119.0/24 207024 -212.57.120.0/21 12690 -212.57.128.0/18 12389 -212.57.192.0/19 50517 -212.57.224.0/19 6717 -212.58.0.0/19 8685 -212.58.32.0/19 8586 -212.58.64.0/19 48918 -212.58.96.0/19 16010 -212.58.128.0/22 8757 -212.58.132.0/23 8757 -212.58.134.0/24 8757 -212.58.140.0/23 8757 -212.58.149.0/24 8757 -212.58.151.0/24 8757 -212.58.160.0/19 34058 -212.58.192.0/19 12380 -212.58.224.0/19 2818 -212.59.0.0/20 8764 -212.59.16.0/24 60121 -212.59.17.0/24 8764 -212.59.18.0/24 39007 -212.59.21.0/24 8764 -212.59.22.0/23 8764 -212.59.24.0/23 8764 -212.59.26.0/24 204390 -212.59.27.0/24 8764 -212.59.28.0/22 8764 -212.59.32.0/19 13045 -212.59.76.0/22 31463 -212.59.96.0/20 28968 -212.59.112.0/22 24739 -212.59.116.0/22 57334 -212.59.120.0/22 57334 -212.59.124.0/23 57334 -212.59.126.0/24 57334 -212.59.127.0/24 25185 -212.59.128.0/18 1836 -212.59.192.0/19 8239 -212.59.224.0/22 39869 -212.59.228.0/24 39869 -212.59.229.0/24 59491 -212.59.230.0/23 39869 -212.59.232.0/21 39869 -212.59.240.0/23 59491 -212.59.242.0/24 39869 -212.59.243.0/24 59491 -212.59.244.0/22 59491 -212.59.248.0/22 196730 -212.59.252.0/22 39869 -212.60.0.0/22 397770 -212.60.4.0/24 62300 -212.60.5.0/24 49392 -212.60.6.0/24 12722 -212.60.7.0/24 49505 -212.60.8.0/22 209975 -212.60.14.0/24 13213 -212.60.18.0/23 64200 -212.60.20.0/23 35624 -212.60.22.0/24 202423 -212.60.23.0/24 19437 -212.60.24.0/22 12679 -212.60.28.0/22 30823 -212.60.32.0/19 15600 -212.60.64.0/19 25250 -212.60.96.0/20 28717 -212.60.112.0/21 28717 -212.60.120.0/21 31027 -212.60.128.0/19 8820 -212.60.160.0/19 1901 -212.60.192.0/18 20676 -212.61.0.0/16 8426 -212.62.0.0/19 1273 -212.62.32.0/19 13091 -212.62.64.0/19 8879 -212.62.96.0/19 43766 -212.62.192.0/19 21263 -212.62.224.0/19 2116 -212.63.0.0/19 719 -212.63.32.0/19 20676 -212.63.64.0/19 8823 -212.63.96.0/21 201704 -212.63.104.0/22 3339 -212.63.108.0/22 201446 -212.63.112.0/22 202883 -212.63.116.0/22 43160 -212.63.120.0/24 43160 -212.63.121.0/24 200845 -212.63.122.0/23 43160 -212.63.124.0/22 29119 -212.63.128.0/19 8741 -212.63.192.0/19 30880 -212.63.224.0/19 25367 -212.64.0.0/17 45090 -212.64.128.0/19 15395 -212.64.160.0/19 12540 -212.64.193.0/24 12599 -212.64.194.0/23 12599 -212.64.198.0/24 12599 -212.64.200.0/24 12599 -212.64.204.0/23 12599 -212.64.206.0/24 12599 -212.64.209.0/24 12599 -212.64.218.0/24 12599 -212.64.219.0/24 207459 -212.64.220.0/24 12599 -212.64.221.0/24 207459 -212.64.222.0/24 207459 -212.64.223.0/24 61084 -212.64.224.0/19 13043 -212.65.0.0/19 21473 -212.65.32.0/19 47377 -212.65.64.0/20 12976 -212.65.80.0/22 12976 -212.65.84.0/24 12976 -212.65.85.0/24 3327 -212.65.86.0/23 3327 -212.65.88.0/21 12976 -212.65.96.0/19 12709 -212.65.128.0/19 15897 -212.65.160.0/19 47194 -212.65.192.0/18 5588 -212.66.0.0/19 8426 -212.66.32.0/23 44539 -212.66.34.0/24 6886 -212.66.35.0/24 44539 -212.66.36.0/22 44539 -212.66.40.0/21 44539 -212.66.48.0/22 6886 -212.66.52.0/22 44539 -212.66.56.0/22 44539 -212.66.60.0/24 44539 -212.66.61.0/24 6886 -212.66.62.0/23 44539 -212.66.64.0/19 56665 -212.66.96.0/19 20912 -212.66.128.0/19 9189 -212.66.160.0/22 8903 -212.66.164.0/24 204653 -212.66.165.0/24 8903 -212.66.166.0/23 204653 -212.66.168.0/21 8903 -212.66.176.0/20 8903 -212.66.192.0/19 199480 -212.66.240.0/20 12637 -212.67.0.0/19 8744 -212.67.32.0/20 25593 -212.67.48.0/20 57660 -212.67.64.0/19 12767 -212.67.96.0/19 12708 -212.67.128.0/19 44514 -212.67.160.0/19 8608 -212.67.192.0/19 20738 -212.67.224.0/19 8412 -212.68.0.0/19 12630 -212.68.32.0/21 42910 -212.68.40.0/22 42910 -212.68.44.0/23 42910 -212.68.46.0/24 42910 -212.68.47.0/24 15830 -212.68.49.0/24 42910 -212.68.50.0/23 42910 -212.68.55.0/24 42910 -212.68.56.0/23 42910 -212.68.58.0/24 42910 -212.68.61.0/24 42910 -212.68.64.0/19 9066 -212.68.96.0/19 12853 -212.68.128.0/19 9116 -212.68.160.0/22 12548 -212.68.168.0/22 20873 -212.68.180.0/22 43260 -212.68.188.0/22 24768 -212.68.192.0/18 12392 -212.69.0.0/23 28964 -212.69.2.0/24 9125 -212.69.3.0/24 28964 -212.69.4.0/23 28964 -212.69.6.0/23 52116 -212.69.8.0/23 9125 -212.69.10.0/23 28964 -212.69.12.0/23 52116 -212.69.14.0/24 9125 -212.69.15.0/24 28964 -212.69.16.0/23 9125 -212.69.18.0/24 52116 -212.69.19.0/24 28964 -212.69.20.0/24 9125 -212.69.21.0/24 28964 -212.69.22.0/23 198961 -212.69.24.0/22 198961 -212.69.28.0/23 9125 -212.69.30.0/24 28964 -212.69.31.0/24 9125 -212.69.32.0/19 12496 -212.69.64.0/21 8798 -212.69.72.0/22 8798 -212.69.76.0/24 8798 -212.69.77.0/24 15787 -212.69.78.0/23 8798 -212.69.80.0/20 8798 -212.69.96.0/24 6854 -212.69.97.0/24 34853 -212.69.98.0/23 6854 -212.69.100.0/22 6854 -212.69.104.0/23 6854 -212.69.106.0/24 25159 -212.69.107.0/24 6854 -212.69.108.0/23 6854 -212.69.110.0/24 6854 -212.69.111.0/24 25159 -212.69.112.0/24 6854 -212.69.113.0/24 25159 -212.69.114.0/24 25159 -212.69.115.0/24 6854 -212.69.116.0/22 6854 -212.69.120.0/22 6854 -212.69.124.0/24 6854 -212.69.125.0/24 25159 -212.69.126.0/23 6854 -212.69.128.0/23 202921 -212.69.131.0/24 202921 -212.69.132.0/22 9009 -212.69.136.0/21 48544 -212.69.144.0/21 13767 -212.69.152.0/23 13767 -212.69.154.0/23 26994 -212.69.156.0/23 13767 -212.69.158.0/24 13767 -212.69.159.0/24 22903 -212.69.160.0/19 8218 -212.69.192.0/18 5587 -212.70.0.0/19 8989 -212.70.32.0/19 29690 -212.70.64.0/22 16174 -212.70.68.0/22 2856 -212.70.72.0/21 16174 -212.70.128.0/24 44967 -212.70.129.0/24 12615 -212.70.130.0/23 12615 -212.70.132.0/22 12615 -212.70.136.0/23 47849 -212.70.138.0/23 12615 -212.70.140.0/22 12615 -212.70.144.0/22 39251 -212.70.148.0/22 12615 -212.70.152.0/22 12615 -212.70.156.0/23 61437 -212.70.158.0/23 12615 -212.70.160.0/21 8194 -212.70.168.0/22 8194 -212.70.172.0/24 208284 -212.70.173.0/24 8194 -212.70.174.0/24 208284 -212.70.175.0/24 8194 -212.70.176.0/21 8194 -212.70.184.0/24 41726 -212.70.185.0/24 8194 -212.70.186.0/23 8194 -212.70.188.0/22 8194 -212.70.192.0/19 8396 -212.70.224.0/23 16141 -212.70.226.0/24 56472 -212.70.227.0/24 16141 -212.70.228.0/22 56472 -212.70.232.0/21 56472 -212.70.240.0/21 56472 -212.70.248.0/22 56472 -212.70.252.0/22 16141 -212.71.0.0/19 9031 -212.71.32.0/20 34397 -212.71.48.0/23 34397 -212.71.50.0/24 34397 -212.71.51.0/24 24731 -212.71.52.0/22 34397 -212.71.56.0/21 34397 -212.71.64.0/19 2116 -212.71.96.0/19 24951 -212.71.128.0/18 9080 -212.71.192.0/19 12502 -212.71.224.0/21 15830 -212.71.232.0/21 63949 -212.71.240.0/22 15830 -212.71.244.0/22 63949 -212.71.248.0/21 63949 -212.72.0.0/19 28885 -212.72.32.0/20 3356 -212.72.48.0/21 3356 -212.72.56.0/22 25148 -212.72.60.0/22 3356 -212.72.64.0/19 12657 -212.72.96.0/19 12778 -212.72.128.0/23 16010 -212.72.130.0/24 20771 -212.72.131.0/24 16010 -212.72.132.0/22 16010 -212.72.136.0/21 16010 -212.72.144.0/21 16010 -212.72.152.0/23 16010 -212.72.154.0/24 16010 -212.72.155.0/24 197229 -212.72.156.0/22 16010 -212.72.160.0/19 8893 -212.72.192.0/23 9127 -212.72.194.0/24 9127 -212.72.195.0/24 12982 -212.72.196.0/23 9127 -212.72.199.0/24 205132 -212.72.200.0/23 9127 -212.72.202.0/23 8866 -212.72.204.0/24 9127 -212.72.205.0/24 12756 -212.72.206.0/24 50359 -212.72.207.0/24 9127 -212.72.208.0/22 9127 -212.72.212.0/24 8866 -212.72.213.0/24 9127 -212.72.214.0/24 8866 -212.72.215.0/24 9127 -212.72.216.0/22 9127 -212.72.220.0/24 9127 -212.72.221.0/24 205132 -212.72.222.0/23 9127 -212.72.224.0/19 12859 -212.73.0.0/19 2119 -212.73.32.0/19 12430 -212.73.64.0/19 12297 -212.73.96.0/19 60388 -212.73.128.0/21 34224 -212.73.136.0/24 34224 -212.73.137.0/24 201133 -212.73.138.0/23 34224 -212.73.140.0/22 34224 -212.73.144.0/22 34224 -212.73.148.0/24 34224 -212.73.149.0/24 34577 -212.73.150.0/24 44901 -212.73.151.0/24 57634 -212.73.154.0/24 34770 -212.73.155.0/24 34224 -212.73.156.0/24 209333 -212.73.157.0/24 34224 -212.73.158.0/23 41624 -212.73.160.0/19 2119 -212.73.192.0/20 3356 -212.73.208.0/24 3356 -212.73.209.0/24 31216 -212.73.210.0/23 3356 -212.73.212.0/22 3356 -212.73.216.0/23 3356 -212.73.218.0/24 25215 -212.73.219.0/24 15436 -212.73.220.0/22 3356 -212.73.224.0/21 3356 -212.73.232.0/23 3356 -212.73.234.0/24 16491 -212.73.235.0/24 3356 -212.73.236.0/22 3356 -212.73.240.0/20 3356 -212.74.0.0/21 4589 -212.74.8.0/22 4589 -212.74.12.0/23 8190 -212.74.14.0/23 4589 -212.74.16.0/20 4589 -212.74.32.0/19 47622 -212.74.64.0/24 8220 -212.74.77.0/24 8220 -212.74.78.0/23 8220 -212.74.96.0/19 9105 -212.74.128.0/18 12651 -212.74.192.0/19 21365 -212.74.224.0/21 15682 -212.74.232.0/22 15682 -212.74.236.0/23 15682 -212.74.238.0/23 41127 -212.74.240.0/20 15682 -212.75.0.0/19 43205 -212.75.32.0/19 12399 -212.75.64.0/19 2119 -212.75.96.0/19 9085 -212.75.128.0/20 16285 -212.75.144.0/21 16285 -212.75.152.0/24 20485 -212.75.153.0/24 16285 -212.75.154.0/23 16285 -212.75.156.0/22 16285 -212.75.160.0/19 12569 -212.75.192.0/19 39927 -212.75.224.0/19 45051 -212.76.0.0/24 21299 -212.76.1.0/24 13082 -212.76.2.0/23 21299 -212.76.4.0/24 35566 -212.76.5.0/24 21299 -212.76.6.0/24 13082 -212.76.7.0/24 21299 -212.76.8.0/22 21299 -212.76.12.0/24 21299 -212.76.13.0/24 13082 -212.76.14.0/23 21299 -212.76.16.0/23 21299 -212.76.18.0/24 21299 -212.76.19.0/24 13082 -212.76.20.0/24 35566 -212.76.21.0/24 21299 -212.76.22.0/23 21299 -212.76.24.0/21 21299 -212.76.32.0/19 6830 -212.76.64.0/19 41176 -212.76.96.0/19 42925 -212.76.128.0/20 42632 -212.76.144.0/22 42632 -212.76.152.0/21 42632 -212.76.160.0/19 12685 -212.76.192.0/19 12571 -212.76.224.0/21 44216 -212.76.232.0/22 44216 -212.76.236.0/22 6848 -212.76.240.0/22 6848 -212.76.244.0/22 44216 -212.76.248.0/21 44216 -212.77.0.0/19 8978 -212.77.32.0/19 15955 -212.77.64.0/19 15691 -212.77.96.0/19 12827 -212.77.128.0/19 33894 -212.77.160.0/19 12611 -212.77.192.0/19 8781 -212.77.224.0/19 15388 -212.78.0.0/24 8855 -212.78.1.0/24 203201 -212.78.2.0/23 8855 -212.78.4.0/22 8855 -212.78.8.0/24 52025 -212.78.9.0/24 8855 -212.78.10.0/24 8855 -212.78.12.0/22 8855 -212.78.16.0/21 8855 -212.78.24.0/22 8855 -212.78.28.0/23 8855 -212.78.30.0/24 57922 -212.78.31.0/24 8855 -212.78.32.0/22 16057 -212.78.64.0/21 16339 -212.78.72.0/24 16339 -212.78.73.0/24 13213 -212.78.74.0/24 13213 -212.78.75.0/24 16339 -212.78.76.0/23 16339 -212.78.78.0/24 16339 -212.78.80.0/24 16339 -212.78.82.0/23 13213 -212.78.84.0/22 16339 -212.78.88.0/22 16339 -212.78.92.0/24 13213 -212.78.93.0/24 16339 -212.78.94.0/24 13213 -212.78.96.0/19 13003 -212.78.128.0/19 6739 -212.78.160.0/19 8220 -212.78.192.0/19 33915 -212.78.224.0/19 15533 -212.79.0.0/18 20783 -212.79.64.0/19 25136 -212.79.96.0/20 8251 -212.79.112.0/21 45025 -212.79.120.0/23 45025 -212.79.122.0/24 202538 -212.79.123.0/24 52180 -212.79.124.0/24 52180 -212.79.125.0/24 45025 -212.79.126.0/23 209914 -212.79.128.0/19 6739 -212.79.160.0/20 12581 -212.79.176.0/24 204008 -212.79.177.0/24 12581 -212.79.178.0/23 204008 -212.79.180.0/22 12581 -212.79.184.0/21 12581 -212.79.192.0/19 21198 -212.79.224.0/19 203507 -212.80.0.0/23 34837 -212.80.2.0/24 44889 -212.80.3.0/24 34837 -212.80.4.0/24 44889 -212.80.5.0/24 34837 -212.80.6.0/24 44889 -212.80.11.0/24 34837 -212.80.12.0/22 44889 -212.80.16.0/24 34837 -212.80.17.0/24 44889 -212.80.19.0/24 44889 -212.80.20.0/23 50733 -212.80.25.0/24 51280 -212.80.26.0/23 51280 -212.80.28.0/24 34837 -212.80.29.0/24 44889 -212.80.30.0/23 34837 -212.80.32.0/19 8788 -212.80.64.0/19 29208 -212.80.96.0/19 12750 -212.80.128.0/19 9075 -212.80.160.0/21 8903 -212.80.168.0/22 8903 -212.80.172.0/24 59739 -212.80.173.0/24 8903 -212.80.174.0/23 8903 -212.80.176.0/24 8903 -212.80.177.0/24 204653 -212.80.178.0/23 8903 -212.80.180.0/22 8903 -212.80.184.0/21 8903 -212.80.192.0/22 47987 -212.80.196.0/22 209971 -212.80.200.0/22 9009 -212.80.204.0/24 12400 -212.80.207.0/24 44709 -212.80.208.0/22 201942 -212.80.212.0/22 62240 -212.80.216.0/22 50673 -212.80.220.0/22 9009 -212.80.224.0/19 8881 -212.81.0.0/20 5578 -212.81.16.0/24 24727 -212.81.17.0/24 5578 -212.81.18.0/23 5578 -212.81.20.0/22 5578 -212.81.24.0/21 5578 -212.81.32.0/22 34665 -212.81.36.0/22 49505 -212.81.40.0/22 9009 -212.81.48.0/22 50304 -212.81.52.0/24 209948 -212.81.55.0/24 209948 -212.81.56.0/22 203145 -212.81.64.0/18 3257 -212.81.128.0/17 3262 -212.82.0.0/19 2856 -212.82.32.0/21 9067 -212.82.40.0/21 41108 -212.82.48.0/20 9063 -212.82.64.0/19 8897 -212.82.96.0/20 34010 -212.82.116.0/24 10310 -212.82.117.0/24 23880 -212.82.118.0/23 10310 -212.82.128.0/19 9089 -212.82.160.0/19 21385 -212.82.192.0/20 12530 -212.82.208.0/21 12530 -212.82.216.0/24 12530 -212.82.217.0/24 25210 -212.82.218.0/23 12530 -212.82.220.0/22 12530 -212.82.224.0/19 8426 -212.83.0.0/20 9039 -212.83.16.0/21 9039 -212.83.24.0/22 9039 -212.83.28.0/23 9039 -212.83.30.0/23 34853 -212.83.32.0/19 47447 -212.83.64.0/19 6830 -212.83.96.0/19 1759 -212.83.128.0/18 12876 -212.83.192.0/18 9150 -212.84.6.0/23 1136 -212.84.32.0/21 199547 -212.84.40.0/21 15533 -212.84.48.0/21 43942 -212.84.56.0/21 198551 -212.84.64.0/22 198382 -212.84.68.0/24 43545 -212.84.69.0/24 198382 -212.84.70.0/23 198382 -212.84.72.0/21 198382 -212.84.80.0/21 198382 -212.84.88.0/22 198382 -212.84.92.0/23 198382 -212.84.94.0/24 198382 -212.84.95.0/24 43545 -212.84.96.0/19 8622 -212.84.128.0/19 12414 -212.84.160.0/20 20860 -212.84.176.0/23 20860 -212.84.178.0/24 29863 -212.84.179.0/24 20860 -212.84.180.0/22 20860 -212.84.184.0/23 20860 -212.84.186.0/24 11352 -212.84.187.0/24 20860 -212.84.188.0/22 20860 -212.84.192.0/18 20676 -212.85.0.0/19 198082 -212.85.32.0/19 12521 -212.85.64.0/19 8473 -212.85.96.0/19 12824 -212.85.128.0/20 9036 -212.85.144.0/20 29075 -212.85.160.0/19 3212 -212.85.192.0/20 29340 -212.85.208.0/21 29340 -212.85.216.0/24 18922 -212.85.217.0/24 29340 -212.85.218.0/23 29340 -212.85.220.0/22 29340 -212.85.224.0/22 44503 -212.85.229.0/24 199792 -212.85.230.0/23 199792 -212.85.232.0/22 206451 -212.85.236.0/22 198144 -212.85.240.0/22 50563 -212.85.244.0/23 50563 -212.85.246.0/23 29119 -212.85.248.0/22 33941 -212.85.252.0/22 31742 -212.86.0.0/19 16086 -212.86.32.0/19 15366 -212.86.64.0/20 9147 -212.86.80.0/21 9147 -212.86.88.0/22 9147 -212.86.92.0/23 9147 -212.86.94.0/23 51130 -212.86.96.0/24 12792 -212.86.97.0/24 24872 -212.86.98.0/24 12792 -212.86.99.0/24 197890 -212.86.101.0/24 204601 -212.86.102.0/24 204601 -212.86.103.0/24 12792 -212.86.104.0/23 12792 -212.86.106.0/24 12792 -212.86.108.0/23 204601 -212.86.110.0/23 197726 -212.86.112.0/24 12792 -212.86.114.0/23 204601 -212.86.116.0/22 57960 -212.86.120.0/21 57960 -212.86.128.0/19 20686 -212.86.160.0/20 15518 -212.86.176.0/22 41998 -212.86.180.0/22 15518 -212.86.184.0/22 41998 -212.86.188.0/22 15518 -212.86.192.0/19 12480 -212.86.224.0/24 204370 -212.86.225.0/24 6703 -212.86.226.0/24 6703 -212.86.230.0/23 6703 -212.86.240.0/20 6703 -212.87.0.0/20 8890 -212.87.16.0/20 8664 -212.87.32.0/19 12512 -212.87.64.0/19 8607 -212.87.96.0/19 47377 -212.87.128.0/19 20677 -212.87.160.0/21 47526 -212.87.168.0/24 6768 -212.87.169.0/24 202538 -212.87.172.0/22 51937 -212.87.176.0/22 45025 -212.87.182.0/23 45025 -212.87.184.0/21 45025 -212.87.200.0/22 33823 -212.87.204.0/22 52055 -212.87.208.0/23 209689 -212.87.213.0/24 395800 -212.87.214.0/24 395800 -212.87.216.0/24 33657 -212.87.217.0/24 393559 -212.87.218.0/23 33657 -212.87.220.0/22 52055 -212.87.224.0/20 15373 -212.87.240.0/23 25084 -212.87.242.0/23 209860 -212.87.244.0/22 25084 -212.87.248.0/22 204275 -212.87.252.0/24 202667 -212.87.254.0/23 206241 -212.88.0.0/19 1901 -212.88.32.0/19 5413 -212.88.64.0/19 9158 -212.88.96.0/19 20294 -212.88.128.0/19 9063 -212.88.160.0/23 12793 -212.88.162.0/24 8447 -212.88.163.0/24 12793 -212.88.164.0/24 12793 -212.88.165.0/24 8447 -212.88.166.0/23 12793 -212.88.168.0/21 12793 -212.88.176.0/20 12793 -212.88.192.0/19 12404 -212.88.224.0/19 6848 -212.89.0.0/19 12946 -212.89.32.0/23 2116 -212.89.34.0/24 2116 -212.89.35.0/24 59767 -212.89.36.0/24 59767 -212.89.37.0/24 2116 -212.89.38.0/23 59767 -212.89.40.0/21 59767 -212.89.48.0/21 2116 -212.89.56.0/22 2116 -212.89.60.0/24 2116 -212.89.63.0/24 2116 -212.89.64.0/19 47264 -212.89.96.0/19 12830 -212.89.128.0/19 9188 -212.89.160.0/19 49864 -212.89.192.0/19 31438 -212.89.224.0/19 12508 -212.90.0.0/19 15589 -212.90.32.0/19 48239 -212.90.64.0/19 16086 -212.90.96.0/22 208861 -212.90.100.0/22 18013 -212.90.104.0/22 50061 -212.90.108.0/22 42331 -212.90.112.0/22 25180 -212.90.116.0/22 41171 -212.90.120.0/22 35913 -212.90.124.0/22 6876 -212.90.128.0/19 25394 -212.90.160.0/19 12593 -212.90.192.0/19 3303 -212.90.224.0/19 6740 -212.91.4.0/23 15694 -212.91.6.0/23 48707 -212.91.8.0/23 24724 -212.91.10.0/23 15694 -212.91.12.0/23 15694 -212.91.14.0/24 15694 -212.91.15.0/24 203756 -212.91.16.0/23 205074 -212.91.18.0/23 25154 -212.91.20.0/23 15694 -212.91.22.0/23 39330 -212.91.24.0/23 15694 -212.91.26.0/23 57367 -212.91.28.0/23 15694 -212.91.30.0/23 201908 -212.91.32.0/19 12515 -212.91.64.0/19 12850 -212.91.96.0/19 12810 -212.91.128.0/19 29468 -212.91.160.0/23 8717 -212.91.162.0/24 41610 -212.91.163.0/24 8717 -212.91.164.0/22 8717 -212.91.168.0/21 8717 -212.91.176.0/24 8717 -212.91.177.0/24 202209 -212.91.178.0/23 8717 -212.91.180.0/23 8717 -212.91.182.0/23 29580 -212.91.184.0/21 8717 -212.91.192.0/20 12332 -212.91.208.0/22 12332 -212.91.212.0/23 12332 -212.91.214.0/23 12389 -212.91.216.0/21 12332 -212.91.224.0/19 15366 -212.92.0.0/20 8990 -212.92.16.0/22 8990 -212.92.20.0/23 8990 -212.92.22.0/24 8990 -212.92.23.0/24 29278 -212.92.24.0/21 8990 -212.92.32.0/19 24592 -212.92.64.0/19 15542 -212.92.96.0/23 12790 -212.92.98.0/24 49505 -212.92.99.0/24 205442 -212.92.100.0/23 49505 -212.92.102.0/23 45352 -212.92.104.0/21 43350 -212.92.112.0/21 43350 -212.92.120.0/22 43350 -212.92.124.0/23 43350 -212.92.126.0/24 39899 -212.92.128.0/18 8371 -212.92.192.0/20 35549 -212.92.208.0/21 35549 -212.92.216.0/22 35549 -212.92.220.0/24 207004 -212.92.221.0/24 35549 -212.92.222.0/23 35549 -212.92.224.0/19 31272 -212.93.0.0/19 8881 -212.93.32.0/19 12483 -212.93.67.0/24 25180 -212.93.70.0/24 25180 -212.93.72.0/21 25180 -212.93.80.0/20 25180 -212.93.96.0/24 12847 -212.93.97.0/24 24921 -212.93.98.0/23 12847 -212.93.100.0/22 24921 -212.93.104.0/21 24921 -212.93.112.0/21 24921 -212.93.120.0/22 24921 -212.93.124.0/22 12847 -212.93.128.0/19 8708 -212.93.160.0/20 39919 -212.93.176.0/22 39919 -212.93.180.0/24 39919 -212.93.181.0/24 35753 -212.93.182.0/24 35753 -212.93.183.0/24 39919 -212.93.184.0/21 39919 -212.93.192.0/21 25233 -212.93.200.0/23 25233 -212.93.202.0/24 201768 -212.93.203.0/24 58250 -212.93.204.0/22 25233 -212.93.208.0/20 25233 -212.93.224.0/19 5435 -212.94.0.0/20 44412 -212.94.16.0/20 62440 -212.94.32.0/19 28859 -212.94.64.0/20 29132 -212.94.80.0/23 29132 -212.94.82.0/23 57664 -212.94.84.0/22 1 -212.94.88.0/21 29132 -212.94.96.0/19 12846 -212.94.128.0/22 25301 -212.94.132.0/23 25301 -212.94.134.0/24 25301 -212.94.135.0/24 33986 -212.94.136.0/24 33986 -212.94.137.0/24 25301 -212.94.138.0/23 25301 -212.94.140.0/22 25301 -212.94.144.0/20 25301 -212.94.160.0/19 15557 -212.94.192.0/19 12409 -212.94.224.0/19 6805 -212.95.0.0/20 8412 -212.95.16.0/24 8412 -212.95.17.0/24 8387 -212.95.18.0/23 8412 -212.95.20.0/22 8412 -212.95.24.0/21 8412 -212.95.32.0/19 28753 -212.95.64.0/19 8839 -212.95.96.0/19 9145 -212.95.128.0/22 22769 -212.95.132.0/22 24000 -212.95.136.0/21 22769 -212.95.144.0/20 22769 -212.95.160.0/23 8717 -212.95.162.0/24 41313 -212.95.163.0/24 8717 -212.95.164.0/22 8717 -212.95.168.0/24 8717 -212.95.169.0/24 29580 -212.95.170.0/23 29580 -212.95.172.0/23 8717 -212.95.174.0/24 8717 -212.95.175.0/24 198576 -212.95.176.0/21 8717 -212.95.184.0/23 8717 -212.95.186.0/23 29580 -212.95.188.0/22 8717 -212.95.192.0/20 6739 -212.95.208.0/22 6739 -212.95.212.0/23 6739 -212.95.214.0/24 6739 -212.95.215.0/24 12357 -212.95.216.0/21 6739 -212.95.224.0/19 8419 -212.96.0.0/20 29674 -212.96.16.0/21 36994 -212.96.28.0/22 36994 -212.96.32.0/19 6830 -212.96.64.0/21 48503 -212.96.72.0/24 48503 -212.96.74.0/23 48503 -212.96.76.0/22 48503 -212.96.80.0/20 48503 -212.96.96.0/20 12683 -212.96.112.0/24 12389 -212.96.113.0/24 12683 -212.96.114.0/23 12683 -212.96.116.0/22 12683 -212.96.120.0/21 12683 -212.96.128.0/19 9083 -212.96.160.0/19 12570 -212.96.192.0/19 12389 -212.96.224.0/19 198000 -212.97.0.0/19 12997 -212.97.32.0/19 5602 -212.97.80.0/21 8950 -212.97.88.0/23 8950 -212.97.96.0/19 24766 -212.97.128.0/22 9120 -212.97.132.0/22 48854 -212.97.140.0/22 48854 -212.97.144.0/20 9120 -212.97.160.0/21 6739 -212.97.168.0/21 12357 -212.97.176.0/21 12357 -212.97.184.0/21 6739 -212.97.192.0/18 3308 -212.98.0.0/19 9021 -212.98.32.0/19 6730 -212.98.64.0/18 42525 -212.98.128.0/24 39918 -212.98.129.0/24 39010 -212.98.130.0/23 39010 -212.98.132.0/23 39010 -212.98.134.0/24 38999 -212.98.135.0/24 39010 -212.98.136.0/22 39010 -212.98.140.0/24 206911 -212.98.141.0/24 39010 -212.98.142.0/23 39010 -212.98.144.0/22 39010 -212.98.148.0/24 39010 -212.98.149.0/24 39275 -212.98.150.0/23 39010 -212.98.152.0/21 39010 -212.98.160.0/19 12406 -212.98.192.0/20 15924 -212.98.208.0/21 15924 -212.98.216.0/22 15924 -212.98.220.0/23 15924 -212.98.222.0/24 15924 -212.98.223.0/24 15819 -212.98.224.0/19 15924 -212.99.0.0/21 12670 -212.99.8.0/22 12670 -212.99.12.0/23 12670 -212.99.14.0/24 12670 -212.99.15.0/24 49961 -212.99.16.0/20 12670 -212.99.32.0/19 12670 -212.99.64.0/18 12670 -212.99.128.0/18 20676 -212.99.192.0/19 21413 -212.99.224.0/19 29100 -212.100.0.0/19 9011 -212.100.32.0/21 12466 -212.100.40.0/21 198967 -212.100.48.0/20 198967 -212.100.64.0/19 20598 -212.100.96.0/19 50821 -212.100.128.0/21 8732 -212.100.136.0/22 8732 -212.100.140.0/23 8732 -212.100.142.0/24 207635 -212.100.143.0/24 8732 -212.100.144.0/21 8732 -212.100.152.0/22 8732 -212.100.156.0/24 8732 -212.100.157.0/24 201823 -212.100.158.0/23 8732 -212.100.160.0/19 4589 -212.100.192.0/19 25233 -212.100.224.0/19 15395 -212.101.0.0/19 9044 -212.101.32.0/19 25054 -212.101.64.0/19 9165 -212.101.96.0/19 199484 -212.101.128.0/18 28933 -212.101.192.0/19 12437 -212.101.224.0/19 31126 -212.102.0.0/19 34426 -212.102.34.0/23 60068 -212.102.36.0/22 60068 -212.102.64.0/19 6691 -212.102.103.0/24 12735 -212.102.106.0/24 43443 -212.102.128.0/20 9081 -212.102.144.0/20 57129 -212.102.160.0/19 12657 -212.102.192.0/19 8613 -212.102.224.0/19 15415 -212.103.0.0/20 12670 -212.103.16.0/21 12670 -212.103.24.0/23 34970 -212.103.26.0/23 12670 -212.103.28.0/24 34970 -212.103.29.0/24 12670 -212.103.30.0/23 12670 -212.103.32.0/22 209891 -212.103.41.0/24 208787 -212.103.44.0/22 38964 -212.103.48.0/22 9009 -212.103.52.0/22 207083 -212.103.56.0/22 197328 -212.103.60.0/23 35913 -212.103.62.0/24 40065 -212.103.63.0/24 42366 -212.103.64.0/19 15576 -212.103.96.0/19 31585 -212.103.128.0/19 9119 -212.103.160.0/19 8452 -212.103.192.0/19 12481 -212.103.224.0/19 5413 -212.104.0.0/19 9076 -212.104.32.0/20 9076 -212.104.48.0/21 9076 -212.104.56.0/21 199941 -212.104.64.0/19 28890 -212.104.96.0/19 13124 -212.104.128.0/19 12513 -212.104.160.0/19 47507 -212.104.192.0/19 8587 -212.104.224.0/20 45356 -212.105.0.0/17 2119 -212.105.160.0/20 5413 -212.105.176.0/20 44574 -212.105.192.0/19 20676 -212.105.224.0/19 702 -212.106.0.0/19 12741 -212.106.32.0/19 12389 -212.106.64.0/19 15975 -212.106.96.0/19 34177 -212.106.128.0/21 15744 -212.106.136.0/23 15744 -212.106.138.0/23 35434 -212.106.140.0/22 15744 -212.106.144.0/20 15744 -212.106.160.0/21 199551 -212.106.168.0/21 15744 -212.106.176.0/20 8508 -212.106.192.0/18 12479 -212.107.0.0/22 197328 -212.107.8.0/22 209953 -212.107.12.0/24 210171 -212.107.13.0/24 40676 -212.107.14.0/24 7489 -212.107.15.0/24 43260 -212.107.16.0/22 47583 -212.107.20.0/22 29256 -212.107.24.0/24 12722 -212.107.25.0/24 62240 -212.107.26.0/24 12722 -212.107.27.0/24 196955 -212.107.28.0/22 18013 -212.107.32.0/20 1257 -212.107.48.0/22 1257 -212.107.52.0/22 197289 -212.107.56.0/21 1257 -212.107.96.0/19 34397 -212.107.128.0/19 33885 -212.107.160.0/19 20855 -212.107.192.0/19 12332 -212.107.224.0/20 49293 -212.107.248.0/21 51456 -212.108.0.0/21 5400 -212.108.8.0/22 5400 -212.108.12.0/23 5400 -212.108.14.0/24 5400 -212.108.15.0/24 59543 -212.108.16.0/20 5400 -212.108.32.0/19 12577 -212.108.64.0/20 41678 -212.108.80.0/21 12513 -212.108.88.0/22 12513 -212.108.92.0/22 41678 -212.108.96.0/20 205853 -212.108.112.0/23 205853 -212.108.128.0/19 60896 -212.108.160.0/20 12822 -212.108.176.0/21 12822 -212.108.192.0/19 12301 -212.108.224.0/21 12301 -212.108.232.0/22 12301 -212.108.236.0/23 12301 -212.108.238.0/24 210244 -212.108.239.0/24 12301 -212.108.240.0/20 12301 -212.109.0.0/19 42387 -212.109.32.0/19 12530 -212.109.64.0/19 12350 -212.109.96.0/19 12840 -212.109.128.0/20 9103 -212.109.144.0/20 13065 -212.109.160.0/21 35063 -212.109.176.0/20 30764 -212.109.192.0/21 29182 -212.109.200.0/22 28884 -212.109.204.0/23 28884 -212.109.206.0/24 28884 -212.109.207.0/24 8359 -212.109.208.0/21 8359 -212.109.216.0/21 29182 -212.109.224.0/24 2600 -212.110.0.0/19 15589 -212.110.32.0/19 12779 -212.110.64.0/23 16333 -212.110.66.0/24 9172 -212.110.68.0/22 9172 -212.110.72.0/22 9172 -212.110.92.0/23 43612 -212.110.94.0/23 9172 -212.110.96.0/19 8648 -212.110.128.0/24 5593 -212.110.129.0/24 1820 -212.110.130.0/23 1820 -212.110.132.0/22 1820 -212.110.136.0/21 1820 -212.110.152.0/22 1820 -212.110.157.0/24 200420 -212.110.158.0/24 41269 -212.110.159.0/24 204259 -212.110.160.0/19 35425 -212.110.192.0/19 20676 -212.111.0.0/19 25424 -212.111.32.0/21 15830 -212.111.40.0/22 63949 -212.111.44.0/22 15830 -212.111.48.0/20 15830 -212.111.64.0/19 9110 -212.111.96.0/19 20693 -212.111.128.0/18 9142 -212.111.192.0/21 12687 -212.111.200.0/22 12687 -212.111.204.0/24 12687 -212.111.205.0/24 205656 -212.111.206.0/23 12687 -212.111.208.0/24 12687 -212.111.209.0/24 197361 -212.111.210.0/23 12687 -212.111.212.0/22 12687 -212.111.216.0/21 208747 -212.111.224.0/19 15372 -212.112.0.0/19 42708 -212.112.32.0/19 13189 -212.112.64.0/22 48815 -212.112.84.0/22 48815 -212.112.88.0/24 12779 -212.112.92.0/22 48815 -212.112.96.0/19 12764 -212.112.128.0/19 39642 -212.112.160.0/19 12552 -212.112.192.0/19 12379 -212.112.224.0/19 15598 -212.113.0.0/19 3356 -212.113.32.0/19 6849 -212.113.64.0/19 9166 -212.113.96.0/21 6672 -212.113.104.0/22 6672 -212.113.108.0/23 6672 -212.113.110.0/24 200935 -212.113.111.0/24 210223 -212.113.112.0/20 6672 -212.113.128.0/19 29017 -212.113.160.0/19 2860 -212.113.192.0/19 12775 -212.113.224.0/21 31499 -212.113.232.0/22 202058 -212.113.236.0/22 31499 -212.113.240.0/23 31499 -212.113.242.0/24 202058 -212.113.243.0/24 31499 -212.113.244.0/22 31499 -212.113.248.0/21 31499 -212.114.32.0/21 12843 -212.114.52.0/24 30823 -212.114.57.0/24 200303 -212.114.58.0/23 200303 -212.114.62.0/24 200303 -212.114.64.0/20 8859 -212.114.80.0/21 8859 -212.114.88.0/23 8859 -212.114.90.0/24 64427 -212.114.91.0/24 8859 -212.114.92.0/22 8859 -212.114.96.0/20 12859 -212.114.112.0/24 200020 -212.114.113.0/24 12859 -212.114.114.0/23 12859 -212.114.116.0/22 12859 -212.114.120.0/21 12859 -212.114.128.0/17 8767 -212.115.0.0/19 15924 -212.115.36.0/22 201290 -212.115.44.0/22 201942 -212.115.48.0/24 12722 -212.115.49.0/24 35048 -212.115.50.0/24 12722 -212.115.51.0/24 49453 -212.115.52.0/22 134121 -212.115.56.0/22 209950 -212.115.60.0/22 48095 -212.115.64.0/19 12309 -212.115.96.0/22 5602 -212.115.108.0/23 210329 -212.115.110.0/24 204548 -212.115.111.0/24 12400 -212.115.112.0/22 209951 -212.115.120.0/22 35573 -212.115.124.0/22 18013 -212.115.128.0/18 3257 -212.115.192.0/19 15542 -212.115.224.0/19 15377 -212.116.0.0/19 6659 -212.116.32.0/19 13170 -212.116.64.0/19 8473 -212.116.96.0/22 201861 -212.116.100.0/22 35000 -212.116.104.0/21 35000 -212.116.112.0/24 48096 -212.116.113.0/24 35000 -212.116.114.0/23 35000 -212.116.116.0/22 48308 -212.116.120.0/22 48096 -212.116.124.0/22 39710 -212.116.128.0/23 9070 -212.116.130.0/24 9070 -212.116.131.0/24 47697 -212.116.132.0/22 9070 -212.116.136.0/21 9070 -212.116.144.0/20 9070 -212.116.160.0/19 9116 -212.116.192.0/19 25233 -212.116.224.0/19 15736 -212.117.0.0/19 21412 -212.117.56.0/21 58376 -212.117.64.0/19 8422 -212.117.96.0/19 3303 -212.117.128.0/19 9116 -212.117.160.0/19 5577 -212.117.192.0/19 13250 -212.117.224.0/19 3561 -212.118.0.0/19 9038 -212.118.32.0/20 25308 -212.118.48.0/24 56806 -212.118.49.0/24 25308 -212.118.50.0/23 25308 -212.118.52.0/22 25308 -212.118.56.0/21 25308 -212.118.64.0/20 5603 -212.118.80.0/20 6764 -212.118.96.0/19 34397 -212.118.128.0/19 25019 -212.118.160.0/19 12374 -212.118.192.0/19 12886 -212.118.224.0/23 15570 -212.118.226.0/24 15570 -212.118.227.0/24 29791 -212.118.228.0/23 15570 -212.118.230.0/24 26541 -212.118.231.0/24 15570 -212.118.232.0/21 15570 -212.118.240.0/22 15570 -212.118.244.0/24 15570 -212.118.245.0/24 63142 -212.118.246.0/24 15570 -212.118.247.0/24 19812 -212.118.248.0/21 15570 -212.119.0.0/22 2914 -212.119.4.0/24 2914 -212.119.5.0/24 209915 -212.119.6.0/23 2914 -212.119.8.0/21 2914 -212.119.16.0/20 2914 -212.119.32.0/22 210027 -212.119.36.0/22 209947 -212.119.40.0/23 8100 -212.119.42.0/23 43444 -212.119.44.0/22 200557 -212.119.52.0/22 203709 -212.119.56.0/22 42831 -212.119.64.0/20 34397 -212.119.80.0/21 34397 -212.119.88.0/22 34397 -212.119.92.0/23 34397 -212.119.96.0/19 12958 -212.119.128.0/19 1257 -212.119.160.0/19 20632 -212.119.192.0/21 3216 -212.119.200.0/22 3216 -212.119.204.0/23 21483 -212.119.206.0/23 3216 -212.119.208.0/20 3216 -212.119.224.0/21 3216 -212.119.232.0/24 21483 -212.119.233.0/24 3216 -212.119.234.0/23 3216 -212.119.236.0/22 3216 -212.119.240.0/23 3216 -212.119.242.0/23 3253 -212.119.244.0/23 3216 -212.119.246.0/24 3216 -212.119.247.0/24 21483 -212.119.248.0/21 3216 -212.120.0.0/19 8982 -212.120.32.0/19 42346 -212.120.64.0/18 33915 -212.120.128.0/19 702 -212.120.160.0/19 12389 -212.120.192.0/19 47262 -212.120.224.0/19 8301 -212.121.0.0/19 786 -212.121.32.0/19 12536 -212.121.64.0/19 8816 -212.121.96.0/19 28685 -212.121.128.0/21 8220 -212.121.136.0/23 8220 -212.121.138.0/24 8220 -212.121.139.0/24 60845 -212.121.140.0/22 8220 -212.121.144.0/20 8220 -212.121.160.0/19 5436 -212.121.192.0/19 786 -212.121.224.0/22 16030 -212.121.228.0/23 16030 -212.121.230.0/24 16030 -212.121.233.0/24 16030 -212.121.234.0/23 16030 -212.121.236.0/24 16030 -212.121.238.0/23 16030 -212.121.240.0/22 16030 -212.121.245.0/24 16030 -212.121.246.0/23 16030 -212.121.248.0/23 16030 -212.121.251.0/24 16030 -212.121.252.0/23 16030 -212.121.254.0/24 16030 -212.122.0.0/22 12332 -212.122.4.0/23 12332 -212.122.6.0/24 12332 -212.122.7.0/24 12389 -212.122.8.0/21 12332 -212.122.16.0/20 12332 -212.122.32.0/19 16097 -212.122.64.0/22 12539 -212.122.68.0/22 21211 -212.122.72.0/24 21211 -212.122.73.0/24 12539 -212.122.74.0/23 12539 -212.122.76.0/23 12539 -212.122.78.0/24 12539 -212.122.79.0/24 21211 -212.122.80.0/23 21211 -212.122.82.0/23 12539 -212.122.84.0/22 12539 -212.122.88.0/22 21211 -212.122.92.0/23 21211 -212.122.94.0/24 12539 -212.122.95.0/24 21211 -212.122.96.0/19 12430 -212.122.128.0/20 35402 -212.122.160.0/22 12564 -212.122.164.0/23 25554 -212.122.166.0/24 49950 -212.122.167.0/24 12564 -212.122.168.0/21 12564 -212.122.176.0/20 12564 -212.122.192.0/20 8326 -212.122.208.0/21 8326 -212.122.216.0/21 12618 -212.122.224.0/22 20484 -212.122.228.0/24 20484 -212.122.231.0/24 20484 -212.122.232.0/24 20484 -212.122.242.0/24 20484 -212.122.245.0/24 20484 -212.122.251.0/24 20484 -212.122.253.0/24 20484 -212.123.0.0/19 6848 -212.123.32.0/19 12915 -212.123.64.0/19 8612 -212.123.96.0/19 15598 -212.123.128.0/18 1136 -212.123.192.0/18 8220 -212.124.0.0/20 12389 -212.124.16.0/23 24699 -212.124.18.0/24 24699 -212.124.19.0/24 12389 -212.124.20.0/22 24699 -212.124.24.0/21 24699 -212.124.32.0/19 12470 -212.124.64.0/22 41480 -212.124.68.0/22 39855 -212.124.72.0/22 39855 -212.124.76.0/24 41480 -212.124.77.0/24 54103 -212.124.78.0/24 41480 -212.124.79.0/24 54103 -212.124.80.0/22 54103 -212.124.84.0/23 54103 -212.124.86.0/24 39855 -212.124.87.0/24 41480 -212.124.88.0/22 39855 -212.124.92.0/22 15830 -212.124.100.0/22 47328 -212.124.104.0/21 47328 -212.124.112.0/20 47328 -212.124.128.0/19 1901 -212.124.160.0/19 35612 -212.124.192.0/22 31493 -212.124.196.0/23 31493 -212.124.198.0/24 31493 -212.124.199.0/24 8468 -212.124.200.0/21 31493 -212.124.208.0/20 31493 -212.124.224.0/19 3561 -212.125.2.0/23 12735 -212.125.4.0/24 12735 -212.125.6.0/23 12735 -212.125.9.0/24 12735 -212.125.10.0/23 12735 -212.125.12.0/22 12735 -212.125.16.0/22 12735 -212.125.21.0/24 12735 -212.125.22.0/23 12735 -212.125.24.0/22 12735 -212.125.28.0/24 12735 -212.125.30.0/23 12735 -212.125.32.0/19 12808 -212.125.64.0/19 8426 -212.125.96.0/19 13132 -212.125.128.0/19 5419 -212.125.160.0/19 702 -212.125.192.0/18 3292 -212.126.0.0/19 8364 -212.126.32.0/19 31122 -212.126.64.0/19 12401 -212.126.96.0/23 39216 -212.126.98.0/24 39216 -212.126.100.0/24 200865 -212.126.102.0/24 39216 -212.126.104.0/21 39216 -212.126.113.0/24 209565 -212.126.114.0/23 209565 -212.126.116.0/24 209565 -212.126.117.0/24 39216 -212.126.118.0/23 39216 -212.126.120.0/22 209565 -212.126.124.0/23 39216 -212.126.126.0/24 209565 -212.126.127.0/24 39216 -212.126.128.0/19 8426 -212.126.160.0/19 15432 -212.126.192.0/19 5409 -212.126.224.0/19 25244 -212.127.0.0/19 5400 -212.127.32.0/19 24940 -212.127.64.0/20 15851 -212.127.80.0/21 15851 -212.127.88.0/21 35179 -212.127.96.0/19 12729 -212.127.128.0/17 33915 -212.128.0.0/18 766 -212.128.64.0/19 766 -212.128.96.0/20 200521 -212.128.112.0/21 200521 -212.128.120.0/23 200521 -212.128.122.0/24 200521 -212.128.128.0/17 766 -212.129.0.0/18 12876 -212.129.64.0/24 15751 -212.129.66.0/23 15751 -212.129.68.0/22 15751 -212.129.72.0/21 15751 -212.129.80.0/20 15751 -212.129.96.0/19 12958 -212.129.128.0/17 45090 -212.130.0.0/16 3292 -212.131.0.0/16 3269 -212.132.0.0/16 5503 -212.133.0.0/17 3356 -212.133.128.0/19 7 -212.133.160.0/22 7 -212.133.164.0/24 31674 -212.133.165.0/24 7 -212.133.166.0/23 7 -212.133.168.0/21 7 -212.133.176.0/22 7 -212.133.180.0/24 8869 -212.133.181.0/24 7 -212.133.182.0/23 7 -212.133.184.0/21 7 -212.133.192.0/19 8386 -212.133.224.0/20 8386 -212.133.240.0/22 8386 -212.133.244.0/24 8386 -212.133.246.0/23 8386 -212.133.248.0/21 8386 -212.134.0.0/21 6838 -212.134.8.0/21 4589 -212.134.16.0/20 4589 -212.134.32.0/19 4589 -212.134.64.0/21 4589 -212.134.72.0/22 4589 -212.134.76.0/23 4589 -212.134.78.0/24 4589 -212.134.79.0/24 8190 -212.134.80.0/20 4589 -212.134.96.0/19 4589 -212.134.128.0/17 4589 -212.135.0.0/24 4589 -212.135.1.0/24 3257 -212.135.2.0/23 4589 -212.135.4.0/23 4589 -212.135.6.0/24 3257 -212.135.7.0/24 4589 -212.135.8.0/21 4589 -212.135.16.0/20 4589 -212.135.32.0/19 4589 -212.135.64.0/18 4589 -212.135.128.0/17 4589 -212.136.0.0/21 702 -212.136.8.0/24 702 -212.136.9.0/24 31202 -212.136.10.0/23 702 -212.136.12.0/22 702 -212.136.16.0/20 702 -212.136.32.0/19 702 -212.136.64.0/18 702 -212.136.128.0/19 702 -212.136.160.0/20 702 -212.136.176.0/23 702 -212.136.178.0/23 1661 -212.136.180.0/22 702 -212.136.184.0/21 702 -212.136.192.0/18 702 -212.137.0.0/16 1273 -212.138.0.0/16 8895 -212.139.0.0/17 9105 -212.139.128.0/22 9105 -212.139.132.0/24 9105 -212.139.133.0/24 13285 -212.139.134.0/23 9105 -212.139.136.0/21 9105 -212.139.144.0/22 9105 -212.139.148.0/22 13285 -212.139.152.0/21 9105 -212.139.160.0/19 9105 -212.139.192.0/18 9105 -212.140.0.0/19 6871 -212.140.32.0/20 6871 -212.140.48.0/21 6871 -212.140.56.0/21 2856 -212.140.64.0/18 2856 -212.140.128.0/17 2856 -212.141.0.0/16 1267 -212.142.0.0/18 6830 -212.142.64.0/18 24651 -212.142.128.0/19 12338 -212.142.160.0/24 12338 -212.142.161.0/24 35700 -212.142.162.0/23 12338 -212.142.164.0/22 12338 -212.142.168.0/21 12338 -212.142.176.0/20 12338 -212.142.192.0/18 12338 -212.143.0.0/16 1680 -212.144.0.0/16 3209 -212.145.0.0/19 12430 -212.145.32.0/20 12430 -212.145.48.0/24 200555 -212.145.49.0/24 12430 -212.145.50.0/23 12430 -212.145.52.0/22 12430 -212.145.56.0/23 12430 -212.145.58.0/24 200555 -212.145.59.0/24 12430 -212.145.60.0/23 12430 -212.145.62.0/24 200555 -212.145.63.0/24 12430 -212.145.64.0/18 12430 -212.145.128.0/17 12430 -212.146.0.0/18 16086 -212.146.64.0/18 5588 -212.146.128.0/19 15656 -212.146.160.0/20 15656 -212.146.176.0/22 15656 -212.146.181.0/24 15656 -212.146.184.0/21 15656 -212.146.192.0/24 15656 -212.146.194.0/23 15656 -212.146.196.0/24 15656 -212.146.198.0/23 15656 -212.146.201.0/24 15656 -212.146.202.0/23 15656 -212.146.204.0/22 15656 -212.146.208.0/22 15656 -212.146.213.0/24 15656 -212.146.214.0/23 15656 -212.146.216.0/21 15656 -212.146.224.0/22 15656 -212.146.228.0/24 15656 -212.146.231.0/24 15656 -212.146.232.0/23 15656 -212.146.235.0/24 15656 -212.146.240.0/23 15656 -212.146.242.0/24 15656 -212.146.245.0/24 15656 -212.146.246.0/24 15656 -212.146.248.0/21 15656 -212.147.0.0/17 12350 -212.147.128.0/18 15612 -212.147.192.0/20 15612 -212.147.208.0/22 50837 -212.147.212.0/22 15612 -212.147.216.0/21 15612 -212.147.224.0/19 15612 -212.149.0.0/18 16365 -212.149.64.0/18 20569 -212.149.128.0/17 16086 -212.150.0.0/16 1680 -212.151.0.0/16 1257 -212.152.0.0/19 1257 -212.152.32.0/19 42132 -212.152.64.0/18 15617 -212.152.128.0/17 8437 -212.153.0.0/16 702 -212.154.0.0/19 12735 -212.154.32.0/22 12735 -212.154.36.0/23 12735 -212.154.38.0/24 12735 -212.154.44.0/24 12735 -212.154.48.0/21 12735 -212.154.56.0/22 12735 -212.154.60.0/24 12735 -212.154.62.0/23 12735 -212.154.64.0/21 12735 -212.154.72.0/24 12735 -212.154.74.0/23 12735 -212.154.76.0/22 12735 -212.154.80.0/20 12735 -212.154.96.0/23 12735 -212.154.98.0/24 12735 -212.154.100.0/22 12735 -212.154.104.0/22 12735 -212.154.109.0/24 12735 -212.154.110.0/23 12735 -212.154.112.0/21 12735 -212.154.120.0/24 12735 -212.154.124.0/22 12735 -212.154.128.0/17 9198 -212.155.0.0/17 702 -212.155.128.0/18 702 -212.155.192.0/19 702 -212.155.224.0/21 702 -212.155.232.0/22 702 -212.155.236.0/23 702 -212.155.238.0/24 12696 -212.155.239.0/24 702 -212.155.240.0/20 702 -212.156.0.0/17 9121 -212.156.128.0/18 9121 -212.156.192.0/21 9121 -212.156.200.0/22 9121 -212.156.204.0/23 47331 -212.156.206.0/24 47331 -212.156.207.0/24 9121 -212.156.208.0/22 9121 -212.156.212.0/23 9121 -212.156.214.0/24 9121 -212.156.215.0/24 47331 -212.156.216.0/23 47331 -212.156.218.0/23 9121 -212.156.220.0/23 9121 -212.156.222.0/24 9121 -212.156.223.0/24 47331 -212.156.224.0/19 9121 -212.157.0.0/24 702 -212.157.1.0/24 16254 -212.157.2.0/23 702 -212.157.4.0/22 702 -212.157.8.0/21 702 -212.157.16.0/22 702 -212.157.20.0/24 702 -212.157.21.0/24 31635 -212.157.22.0/23 702 -212.157.24.0/21 702 -212.157.32.0/19 702 -212.157.64.0/18 702 -212.157.128.0/17 702 -212.158.0.0/17 1273 -212.158.128.0/19 25248 -212.158.160.0/23 197695 -212.158.162.0/24 43146 -212.158.163.0/24 197695 -212.158.164.0/22 197695 -212.158.169.0/24 197695 -212.158.170.0/23 205952 -212.158.172.0/24 197695 -212.158.173.0/24 25227 -212.158.174.0/23 205952 -212.158.176.0/20 16333 -212.158.192.0/18 25310 -212.159.0.0/17 6871 -212.159.128.0/18 9105 -212.159.192.0/18 29063 -212.160.0.0/19 5617 -212.160.32.0/19 12479 -212.160.64.0/18 5617 -212.160.128.0/17 5617 -212.161.0.0/19 8220 -212.161.32.0/20 8220 -212.161.48.0/21 8220 -212.161.56.0/23 8220 -212.161.58.0/24 8220 -212.161.59.0/24 200682 -212.161.60.0/22 8220 -212.161.64.0/19 8220 -212.161.96.0/22 8220 -212.161.100.0/23 8220 -212.161.102.0/24 31743 -212.161.103.0/24 8220 -212.161.104.0/21 8220 -212.161.112.0/20 8220 -212.161.128.0/17 6730 -212.162.0.0/21 3356 -212.162.8.0/22 3356 -212.162.12.0/22 61157 -212.162.16.0/20 3356 -212.162.32.0/20 3356 -212.162.48.0/22 3356 -212.162.52.0/23 61157 -212.162.54.0/23 3356 -212.162.56.0/23 61157 -212.162.58.0/23 3356 -212.162.60.0/22 3356 -212.162.64.0/18 8234 -212.162.128.0/24 209931 -212.162.129.0/24 5089 -212.162.132.0/22 49505 -212.162.136.0/22 39488 -212.162.140.0/22 24822 -212.162.144.0/22 41001 -212.162.148.0/22 64236 -212.162.152.0/22 209944 -212.162.156.0/22 57907 -212.162.160.0/19 1257 -212.162.192.0/19 5400 -212.162.224.0/21 5400 -212.162.232.0/24 2856 -212.162.233.0/24 5400 -212.162.234.0/23 5400 -212.162.236.0/22 5400 -212.162.240.0/20 5400 -212.163.0.0/24 5400 -212.163.1.0/24 8903 -212.163.2.0/23 5400 -212.163.4.0/22 5400 -212.163.8.0/23 5400 -212.163.10.0/24 41994 -212.163.11.0/24 5400 -212.163.12.0/22 5400 -212.163.16.0/22 5400 -212.163.20.0/22 8903 -212.163.24.0/22 5400 -212.163.28.0/23 5400 -212.163.30.0/24 5400 -212.163.31.0/24 8903 -212.163.32.0/21 8903 -212.163.40.0/22 5400 -212.163.44.0/22 8903 -212.163.48.0/21 5400 -212.163.56.0/21 8903 -212.163.64.0/20 12541 -212.163.80.0/21 12541 -212.163.88.0/23 12541 -212.163.90.0/24 12541 -212.163.91.0/24 8903 -212.163.92.0/22 8903 -212.163.96.0/19 8903 -212.163.128.0/21 8903 -212.163.136.0/22 8903 -212.163.140.0/22 5400 -212.163.144.0/24 44989 -212.163.145.0/24 12541 -212.163.146.0/23 12541 -212.163.148.0/23 12541 -212.163.150.0/23 197752 -212.163.152.0/21 12541 -212.163.160.0/22 5400 -212.163.164.0/22 8903 -212.163.168.0/21 5400 -212.163.176.0/22 8903 -212.163.180.0/22 5400 -212.163.184.0/22 8903 -212.163.188.0/22 5400 -212.163.192.0/22 5400 -212.163.196.0/22 8903 -212.163.200.0/22 8903 -212.163.204.0/22 5400 -212.163.208.0/22 8903 -212.163.212.0/22 5400 -212.163.216.0/21 8903 -212.163.224.0/22 8903 -212.163.228.0/22 12541 -212.163.232.0/21 12541 -212.163.240.0/21 8903 -212.163.248.0/22 8903 -212.163.252.0/22 197752 -212.164.0.0/17 12389 -212.164.128.0/18 12389 -212.164.192.0/21 12389 -212.164.200.0/24 12389 -212.164.201.0/24 16054 -212.164.202.0/23 12389 -212.164.204.0/22 12389 -212.164.208.0/20 12389 -212.164.224.0/19 12389 -212.165.0.0/19 1273 -212.165.32.0/19 41497 -212.165.64.0/20 25222 -212.165.92.0/22 25222 -212.165.96.0/20 25222 -212.165.112.0/22 25222 -212.165.116.0/23 31753 -212.165.118.0/23 25222 -212.165.120.0/22 25222 -212.165.124.0/24 25222 -212.165.125.0/24 10753 -212.165.126.0/24 25222 -212.165.128.0/17 12684 -212.166.0.0/18 9208 -212.166.64.0/19 12321 -212.166.96.0/19 8387 -212.166.128.0/17 12430 -212.167.0.0/21 51964 -212.167.8.0/24 51964 -212.167.10.0/24 51964 -212.167.13.0/24 51964 -212.167.20.0/24 51964 -212.168.0.0/16 5669 -212.169.0.0/18 8426 -212.169.64.0/18 12929 -212.169.128.0/19 12479 -212.169.160.0/20 12479 -212.169.176.0/21 12479 -212.169.188.0/22 12479 -212.169.192.0/18 12479 -212.170.0.0/20 3352 -212.170.16.0/21 3352 -212.170.24.0/22 3352 -212.170.28.0/23 3352 -212.170.30.0/23 6813 -212.170.32.0/24 3352 -212.170.33.0/24 30846 -212.170.34.0/23 6813 -212.170.36.0/22 3352 -212.170.40.0/21 3352 -212.170.48.0/20 3352 -212.170.64.0/18 3352 -212.170.128.0/20 3352 -212.170.144.0/21 3352 -212.170.152.0/22 3352 -212.170.156.0/23 3352 -212.170.158.0/24 209774 -212.170.159.0/24 3352 -212.170.160.0/19 3352 -212.170.192.0/19 3352 -212.170.224.0/23 3352 -212.170.226.0/24 3352 -212.170.227.0/24 6813 -212.170.228.0/23 6813 -212.170.230.0/23 3352 -212.170.232.0/24 6813 -212.170.233.0/24 3352 -212.170.234.0/23 3352 -212.170.236.0/22 3352 -212.170.240.0/20 3352 -212.171.0.0/16 3269 -212.172.0.0/16 12312 -212.173.0.0/16 5503 -212.174.0.0/20 9121 -212.174.16.0/21 9121 -212.174.24.0/24 9121 -212.174.25.0/24 47331 -212.174.26.0/24 47331 -212.174.27.0/24 9121 -212.174.28.0/23 9121 -212.174.30.0/24 47331 -212.174.31.0/24 9121 -212.174.32.0/20 9121 -212.174.48.0/21 9121 -212.174.56.0/22 9121 -212.174.60.0/23 9121 -212.174.62.0/23 47331 -212.174.64.0/18 9121 -212.174.128.0/21 9121 -212.174.136.0/23 9121 -212.174.138.0/24 9121 -212.174.139.0/24 51703 -212.174.140.0/22 9121 -212.174.144.0/20 9121 -212.174.160.0/19 9121 -212.174.192.0/18 9121 -212.175.0.0/16 9121 -212.176.0.0/17 2854 -212.176.128.0/18 2854 -212.176.192.0/20 2854 -212.176.208.0/22 2854 -212.176.212.0/24 2854 -212.176.213.0/24 201394 -212.176.214.0/23 2854 -212.176.216.0/23 2854 -212.176.218.0/24 2854 -212.176.219.0/24 56533 -212.176.220.0/22 2854 -212.176.224.0/19 2854 -212.177.0.0/16 702 -212.178.0.0/19 6876 -212.178.32.0/19 6830 -212.178.64.0/18 33915 -212.178.128.0/19 33915 -212.178.160.0/19 44869 -212.178.192.0/19 33915 -212.178.224.0/19 6700 -212.179.0.0/16 8551 -212.180.0.0/17 4589 -212.180.128.0/19 9085 -212.180.160.0/20 9085 -212.180.176.0/21 9085 -212.180.184.0/24 35671 -212.180.185.0/24 9085 -212.180.186.0/23 9085 -212.180.188.0/22 9085 -212.180.192.0/18 9085 -212.181.0.0/16 3301 -212.182.0.0/18 12324 -212.182.64.0/20 12324 -212.182.80.0/20 12346 -212.182.96.0/19 12346 -212.182.128.0/18 1136 -212.182.192.0/18 1759 -212.183.0.0/22 8447 -212.183.4.0/24 205302 -212.183.5.0/24 15910 -212.183.6.0/23 8447 -212.183.8.0/21 8447 -212.183.16.0/22 8447 -212.183.20.0/23 8447 -212.183.22.0/24 39879 -212.183.23.0/24 39885 -212.183.24.0/23 8447 -212.183.26.0/24 8447 -212.183.27.0/24 205902 -212.183.28.0/24 205003 -212.183.29.0/24 8447 -212.183.30.0/23 8447 -212.183.32.0/19 8447 -212.183.64.0/18 8447 -212.183.128.0/20 25135 -212.183.152.0/21 25135 -212.183.160.0/19 41497 -212.183.192.0/18 6739 -212.184.0.0/15 3320 -212.186.0.0/16 6830 -212.187.0.0/17 6830 -212.187.128.0/20 3356 -212.187.144.0/21 3356 -212.187.152.0/22 3356 -212.187.156.0/23 3356 -212.187.158.0/23 23197 -212.187.160.0/19 3356 -212.187.192.0/20 3356 -212.187.208.0/23 20473 -212.187.210.0/24 3356 -212.187.211.0/24 36776 -212.187.212.0/22 3356 -212.187.216.0/22 3356 -212.187.220.0/24 3356 -212.187.221.0/24 22024 -212.187.222.0/23 3356 -212.187.224.0/22 3356 -212.187.228.0/24 3549 -212.187.229.0/24 3356 -212.187.230.0/23 3356 -212.187.232.0/22 3356 -212.187.236.0/23 3356 -212.187.238.0/24 3356 -212.187.239.0/24 8468 -212.187.240.0/22 3356 -212.187.244.0/23 3356 -212.187.246.0/23 20473 -212.187.248.0/23 3356 -212.187.250.0/24 3356 -212.187.251.0/24 3257 -212.187.252.0/22 3356 -212.188.0.0/18 8359 -212.188.64.0/22 49154 -212.188.68.0/22 8359 -212.188.72.0/21 8359 -212.188.80.0/20 8359 -212.188.96.0/19 8359 -212.188.128.0/17 8426 -212.189.0.0/17 286 -212.189.128.0/17 137 -212.190.0.0/18 702 -212.190.64.0/24 58122 -212.190.65.0/24 702 -212.190.66.0/23 702 -212.190.68.0/22 702 -212.190.72.0/22 702 -212.190.76.0/23 702 -212.190.78.0/24 58122 -212.190.79.0/24 702 -212.190.80.0/20 702 -212.190.96.0/19 702 -212.190.128.0/17 702 -212.191.0.0/18 8256 -212.191.64.0/19 8256 -212.191.96.0/20 8256 -212.191.112.0/21 8256 -212.191.120.0/22 8256 -212.191.124.0/23 8256 -212.191.126.0/24 8501 -212.191.127.0/24 8256 -212.191.128.0/18 16283 -212.191.192.0/19 16283 -212.191.224.0/24 8501 -212.191.227.0/24 8501 -212.191.229.0/24 8501 -212.191.230.0/24 8501 -212.191.231.0/24 35628 -212.191.232.0/24 35628 -212.191.233.0/24 13293 -212.191.234.0/24 13293 -212.191.235.0/24 35628 -212.191.236.0/24 13293 -212.191.237.0/24 196844 -212.191.238.0/24 196844 -212.191.240.0/23 8501 -212.191.242.0/24 13293 -212.191.244.0/24 8501 -212.191.254.0/23 16283 -212.192.0.0/19 207967 -212.192.32.0/22 8411 -212.192.64.0/19 8684 -212.192.112.0/20 41566 -212.192.128.0/19 8663 -212.192.163.0/24 34479 -212.192.169.0/24 30797 -212.192.193.0/24 48287 -212.192.194.0/23 48287 -212.192.196.0/22 48287 -212.192.202.0/24 51200 -212.192.204.0/24 62404 -212.192.205.0/24 60639 -212.192.206.0/24 60628 -212.192.207.0/24 60625 -212.192.224.0/24 61269 -212.192.225.0/24 61259 -212.192.226.0/24 61265 -212.192.227.0/24 61261 -212.192.228.0/24 199504 -212.192.229.0/24 199798 -212.192.230.0/23 62261 -212.192.232.0/22 62261 -212.192.236.0/23 62261 -212.193.0.0/19 207967 -212.193.32.0/19 9111 -212.193.64.0/19 5468 -212.193.96.0/24 29493 -212.193.97.0/24 205822 -212.193.98.0/24 200627 -212.193.99.0/24 48724 -212.193.100.0/24 200662 -212.193.102.0/24 199459 -212.193.103.0/24 34528 -212.193.104.0/21 21416 -212.193.112.0/23 21416 -212.193.114.0/24 21416 -212.193.116.0/23 21416 -212.193.120.0/24 21416 -212.193.128.0/22 12494 -212.193.132.0/22 9077 -212.193.136.0/24 48287 -212.193.137.0/24 41082 -212.193.144.0/24 34879 -212.193.146.0/23 34879 -212.193.148.0/22 34879 -212.193.152.0/23 204878 -212.193.154.0/24 204878 -212.193.155.0/24 34879 -212.193.156.0/23 34879 -212.193.158.0/24 34879 -212.193.160.0/24 31344 -212.193.161.0/24 62389 -212.193.162.0/24 41082 -212.193.163.0/24 60600 -212.193.165.0/24 56798 -212.193.166.0/24 60519 -212.193.169.0/24 60329 -212.193.170.0/24 62264 -212.193.172.0/24 60383 -212.193.173.0/24 60361 -212.193.174.0/24 47354 -212.193.175.0/24 60308 -212.193.224.0/19 48287 -212.194.0.0/15 5410 -212.197.0.0/17 8264 -212.197.128.0/18 1901 -212.197.236.0/22 43794 -212.198.0.0/17 21502 -212.198.128.0/18 21502 -212.198.192.0/19 21502 -212.198.224.0/20 21502 -212.198.240.0/23 21502 -212.198.242.0/23 20776 -212.198.244.0/22 21502 -212.198.248.0/22 21502 -212.198.252.0/23 21502 -212.198.254.0/23 20776 -212.199.0.0/16 9116 -212.200.0.0/18 8400 -212.200.64.0/20 8400 -212.200.80.0/21 8400 -212.200.88.0/22 8400 -212.200.92.0/24 8400 -212.200.93.0/24 41937 -212.200.94.0/23 8400 -212.200.96.0/20 8400 -212.200.112.0/21 8400 -212.200.120.0/23 8400 -212.200.122.0/24 8400 -212.200.123.0/24 41937 -212.200.124.0/22 8400 -212.200.128.0/18 8400 -212.200.192.0/19 8400 -212.200.224.0/20 8400 -212.200.240.0/22 8400 -212.200.244.0/23 8400 -212.200.246.0/24 43940 -212.200.247.0/24 8400 -212.200.248.0/21 8400 -212.201.0.0/16 680 -212.202.0.0/16 20676 -212.203.0.0/19 33915 -212.203.32.0/19 25375 -212.203.64.0/18 8220 -212.203.128.0/17 5588 -212.204.0.0/19 8881 -212.204.32.0/19 12693 -212.204.64.0/18 8767 -212.204.128.0/18 33915 -212.204.192.0/18 15879 -212.205.0.0/16 6799 -212.206.0.0/16 702 -212.207.0.0/16 5503 -212.208.0.0/22 702 -212.208.4.0/22 20926 -212.208.8.0/21 702 -212.208.16.0/20 702 -212.208.32.0/19 702 -212.208.64.0/18 702 -212.208.128.0/20 702 -212.208.144.0/22 702 -212.208.148.0/23 702 -212.208.150.0/24 20926 -212.208.151.0/24 702 -212.208.152.0/21 702 -212.208.160.0/19 702 -212.208.192.0/24 702 -212.208.193.0/24 20926 -212.208.194.0/23 702 -212.208.196.0/22 702 -212.208.200.0/21 702 -212.208.208.0/20 702 -212.208.224.0/19 702 -212.209.0.0/18 702 -212.209.64.0/24 12234 -212.209.65.0/24 702 -212.209.66.0/24 702 -212.209.67.0/24 12234 -212.209.68.0/22 702 -212.209.72.0/21 702 -212.209.80.0/20 702 -212.209.96.0/19 702 -212.209.128.0/17 702 -212.210.0.0/16 3269 -212.211.128.0/17 12399 -212.212.0.0/16 4589 -212.213.0.0/16 1759 -212.214.0.0/16 3246 -212.215.0.0/17 702 -212.215.128.0/18 25019 -212.215.192.0/18 44614 -212.216.0.0/16 3269 -212.217.0.0/17 6713 -212.217.128.0/17 12501 -212.218.0.0/16 8319 -212.219.0.0/16 786 -212.220.0.0/22 12389 -212.220.4.0/24 34875 -212.220.5.0/24 12389 -212.220.6.0/23 12389 -212.220.8.0/21 12389 -212.220.16.0/20 12389 -212.220.32.0/19 12389 -212.220.64.0/18 12389 -212.220.128.0/17 12389 -212.221.0.0/17 3257 -212.221.128.0/17 6659 -212.222.0.0/17 3257 -212.222.128.0/24 8928 -212.222.129.0/24 3257 -212.222.130.0/23 3257 -212.222.132.0/22 3257 -212.222.136.0/21 3257 -212.222.144.0/20 3257 -212.222.160.0/19 3257 -212.222.192.0/18 3257 -212.223.0.0/16 8741 -212.224.0.0/20 6659 -212.224.16.0/23 6659 -212.224.18.0/24 3257 -212.224.19.0/24 6659 -212.224.20.0/22 6659 -212.224.24.0/21 6659 -212.224.32.0/19 6659 -212.224.64.0/18 44066 -212.224.128.0/17 47377 -212.225.0.0/17 2529 -212.225.128.0/18 34977 -212.225.192.0/19 34977 -212.225.224.0/23 34977 -212.225.226.0/24 34977 -212.225.227.0/24 205624 -212.225.228.0/23 202491 -212.225.230.0/23 34977 -212.225.232.0/24 202491 -212.225.233.0/24 34977 -212.225.234.0/23 34977 -212.225.236.0/22 34977 -212.225.240.0/22 34977 -212.225.244.0/24 205624 -212.225.245.0/24 34977 -212.225.246.0/23 34977 -212.225.248.0/22 34977 -212.225.252.0/24 34977 -212.225.253.0/24 199292 -212.225.254.0/23 34977 -212.226.0.0/16 790 -212.227.0.0/16 8560 -212.228.0.0/15 5378 -212.230.0.0/16 15704 -212.231.0.0/20 15704 -212.231.16.0/21 15704 -212.231.24.0/24 15704 -212.231.25.0/24 199853 -212.231.26.0/23 199853 -212.231.28.0/22 15704 -212.231.32.0/19 15704 -212.231.64.0/23 50129 -212.231.66.0/24 50129 -212.231.67.0/24 15704 -212.231.68.0/22 15704 -212.231.72.0/21 15704 -212.231.80.0/21 15704 -212.231.88.0/22 15704 -212.231.92.0/23 15704 -212.231.94.0/24 15704 -212.231.95.0/24 50129 -212.231.96.0/19 15704 -212.231.128.0/20 15704 -212.231.144.0/21 15704 -212.231.152.0/22 15704 -212.231.156.0/24 15704 -212.231.157.0/24 203600 -212.231.158.0/23 15704 -212.231.160.0/21 15704 -212.231.168.0/21 29119 -212.231.176.0/23 15704 -212.231.178.0/24 29119 -212.231.179.0/24 15704 -212.231.180.0/22 29119 -212.231.184.0/22 15704 -212.231.188.0/24 15704 -212.231.189.0/24 204757 -212.231.190.0/23 15704 -212.231.192.0/21 15704 -212.231.200.0/23 29119 -212.231.202.0/24 204757 -212.231.203.0/24 29119 -212.231.204.0/22 29119 -212.231.208.0/20 29119 -212.231.224.0/21 15704 -212.231.232.0/22 29119 -212.231.236.0/23 29119 -212.231.238.0/24 199853 -212.231.239.0/24 15704 -212.231.240.0/20 29119 -212.232.0.0/20 13178 -212.232.16.0/21 29531 -212.232.24.0/21 47692 -212.232.32.0/19 197078 -212.232.64.0/20 39102 -212.232.80.0/20 12897 -212.232.96.0/23 12479 -212.232.99.0/24 12479 -212.232.100.0/23 12479 -212.232.103.0/24 12479 -212.232.112.0/20 12479 -212.232.128.0/17 12350 -212.233.0.0/19 5432 -212.233.32.0/19 8632 -212.233.64.0/18 9110 -212.233.128.0/18 29582 -212.233.192.0/19 29582 -212.233.224.0/20 29582 -212.233.240.0/21 29582 -212.233.248.0/22 29582 -212.233.252.0/23 29582 -212.233.254.0/24 29582 -212.234.0.0/19 3215 -212.234.32.0/22 3215 -212.234.36.0/23 3215 -212.234.38.0/24 3215 -212.234.39.0/24 38926 -212.234.40.0/21 3215 -212.234.48.0/20 3215 -212.234.64.0/18 3215 -212.234.128.0/19 3215 -212.234.160.0/21 3215 -212.234.168.0/24 3215 -212.234.169.0/24 47127 -212.234.170.0/23 3215 -212.234.172.0/22 3215 -212.234.176.0/20 3215 -212.234.192.0/18 3215 -212.235.0.0/17 1680 -212.235.128.0/17 2107 -212.236.0.0/16 8245 -212.237.0.0/18 31034 -212.237.64.0/19 16082 -212.237.96.0/20 60876 -212.237.112.0/22 206206 -212.237.116.0/24 206206 -212.237.118.0/23 206206 -212.237.120.0/21 206206 -212.237.128.0/20 203953 -212.237.144.0/21 48579 -212.237.152.0/21 206815 -212.237.160.0/21 8469 -212.237.168.0/21 48284 -212.237.176.0/21 204151 -212.237.184.0/21 197423 -212.237.194.0/23 42381 -212.237.200.0/21 201983 -212.237.208.0/22 199417 -212.237.212.0/22 206984 -212.237.220.0/22 56329 -212.237.224.0/22 209706 -212.237.228.0/24 200509 -212.237.230.0/24 198934 -212.237.231.0/24 50129 -212.237.232.0/22 62282 -212.237.236.0/22 29119 -212.237.240.0/22 197423 -212.237.244.0/22 205411 -212.237.248.0/23 48854 -212.237.250.0/23 3342 -212.237.252.0/24 200799 -212.237.253.0/24 199939 -212.237.254.0/24 206825 -212.237.255.0/24 201153 -212.238.0.0/16 3265 -212.239.0.0/20 3313 -212.239.16.0/24 3313 -212.239.17.0/24 32787 -212.239.18.0/23 3313 -212.239.20.0/22 3313 -212.239.24.0/21 3313 -212.239.32.0/19 3313 -212.239.64.0/18 3313 -212.239.128.0/17 5432 -212.240.0.0/16 2529 -212.241.0.0/19 12997 -212.241.32.0/19 1136 -212.241.64.0/18 12605 -212.241.128.0/17 5413 -212.242.0.0/16 9158 -212.243.0.0/21 3303 -212.243.8.0/22 3303 -212.243.12.0/24 30934 -212.243.13.0/24 3303 -212.243.14.0/23 3303 -212.243.16.0/20 3303 -212.243.32.0/24 3303 -212.243.33.0/24 41503 -212.243.34.0/23 3303 -212.243.36.0/23 3303 -212.243.38.0/24 3303 -212.243.39.0/24 48038 -212.243.40.0/21 3303 -212.243.48.0/20 3303 -212.243.64.0/20 3303 -212.243.80.0/24 9096 -212.243.81.0/24 3303 -212.243.82.0/23 3303 -212.243.84.0/22 3303 -212.243.88.0/21 3303 -212.243.96.0/20 3303 -212.243.112.0/24 209326 -212.243.113.0/24 3303 -212.243.114.0/24 3303 -212.243.115.0/24 204783 -212.243.116.0/22 3303 -212.243.120.0/24 60190 -212.243.121.0/24 47538 -212.243.122.0/24 202855 -212.243.123.0/24 199225 -212.243.124.0/24 204483 -212.243.125.0/24 209880 -212.243.126.0/24 208980 -212.243.127.0/24 60420 -212.243.128.0/24 3303 -212.243.129.0/24 209848 -212.243.130.0/23 3303 -212.243.132.0/22 3303 -212.243.136.0/21 3303 -212.243.144.0/20 3303 -212.243.160.0/19 3303 -212.243.192.0/18 3303 -212.244.0.0/16 5617 -212.245.0.0/16 1267 -212.246.0.0/16 719 -212.247.0.0/17 1257 -212.247.128.0/18 1257 -212.247.192.0/19 1257 -212.247.224.0/23 48503 -212.247.226.0/23 1257 -212.247.228.0/22 1257 -212.247.232.0/21 1257 -212.247.240.0/20 1257 -212.248.0.0/17 8359 -212.248.192.0/18 2529 -212.249.0.0/16 702 -212.250.0.0/16 5089 -212.251.0.0/17 1241 -212.251.128.0/17 2119 -212.252.1.0/24 34984 -212.252.2.0/23 34984 -212.252.4.0/24 34984 -212.252.6.0/23 34984 -212.252.8.0/21 34984 -212.252.16.0/23 34984 -212.252.21.0/24 34984 -212.252.22.0/23 34984 -212.252.24.0/22 43391 -212.252.28.0/22 34984 -212.252.32.0/24 34984 -212.252.33.0/24 5458 -212.252.34.0/23 34984 -212.252.37.0/24 34984 -212.252.39.0/24 34984 -212.252.41.0/24 34984 -212.252.42.0/23 34984 -212.252.44.0/24 34984 -212.252.45.0/24 43391 -212.252.46.0/24 43391 -212.252.47.0/24 34984 -212.252.48.0/22 34984 -212.252.53.0/24 34984 -212.252.54.0/23 34984 -212.252.56.0/24 34984 -212.252.58.0/23 34984 -212.252.60.0/24 34984 -212.252.63.0/24 34984 -212.252.72.0/21 34984 -212.252.82.0/23 34984 -212.252.92.0/23 34984 -212.252.99.0/24 34984 -212.252.100.0/24 34984 -212.252.104.0/22 34984 -212.252.112.0/21 34984 -212.252.120.0/23 34984 -212.252.122.0/24 34984 -212.252.124.0/24 199333 -212.252.125.0/24 34984 -212.252.126.0/23 34984 -212.252.132.0/23 34984 -212.252.134.0/24 34984 -212.252.135.0/24 34684 -212.252.136.0/21 34984 -212.252.144.0/20 34984 -212.252.161.0/24 34984 -212.252.162.0/23 34984 -212.252.165.0/24 34984 -212.252.167.0/24 34984 -212.252.168.0/24 16135 -212.252.170.0/24 34984 -212.252.172.0/24 34984 -212.252.176.0/20 34984 -212.252.192.0/24 31085 -212.252.193.0/24 34984 -212.252.196.0/24 31307 -212.252.198.0/24 34984 -212.252.200.0/23 34984 -212.252.202.0/24 33960 -212.252.203.0/24 34984 -212.252.204.0/22 31541 -212.252.208.0/22 34418 -212.252.212.0/23 34984 -212.252.216.0/24 34984 -212.252.219.0/24 34984 -212.252.221.0/24 34984 -212.252.223.0/24 34984 -212.253.1.0/24 34984 -212.253.2.0/23 34984 -212.253.8.0/23 34984 -212.253.10.0/24 34984 -212.253.12.0/24 34984 -212.253.14.0/23 34984 -212.253.16.0/20 34984 -212.253.32.0/19 34984 -212.253.64.0/19 34984 -212.253.96.0/21 34984 -212.253.104.0/23 34984 -212.253.106.0/24 34984 -212.253.108.0/24 34984 -212.253.110.0/24 34984 -212.253.112.0/23 34984 -212.253.114.0/24 34984 -212.253.116.0/23 34984 -212.253.118.0/24 34984 -212.253.120.0/22 34984 -212.253.124.0/23 34984 -212.253.126.0/24 34984 -212.253.129.0/24 34984 -212.253.130.0/23 34984 -212.253.132.0/22 34984 -212.253.136.0/21 34984 -212.253.144.0/20 34984 -212.253.160.0/19 34984 -212.253.192.0/18 34984 -212.254.0.0/16 12350 -212.255.0.0/16 12312 -213.0.0.0/16 3352 -213.1.0.0/16 2856 -213.2.0.0/16 8426 -213.3.0.0/16 3303 -213.4.0.0/20 3352 -213.4.16.0/21 3352 -213.4.24.0/22 3352 -213.4.28.0/24 6813 -213.4.29.0/24 3352 -213.4.30.0/23 3352 -213.4.32.0/19 3352 -213.4.64.0/20 3352 -213.4.80.0/23 3352 -213.4.82.0/23 6813 -213.4.84.0/22 3352 -213.4.88.0/21 3352 -213.4.96.0/23 3352 -213.4.98.0/24 6813 -213.4.99.0/24 3352 -213.4.100.0/22 3352 -213.4.104.0/21 3352 -213.4.112.0/21 3352 -213.4.120.0/22 3352 -213.4.124.0/23 3352 -213.4.126.0/24 202233 -213.4.127.0/24 3352 -213.4.128.0/17 3352 -213.5.0.0/22 199551 -213.5.4.0/22 200414 -213.5.8.0/21 49895 -213.5.16.0/22 44724 -213.5.20.0/22 49560 -213.5.24.0/21 47156 -213.5.32.0/21 49974 -213.5.40.0/21 35115 -213.5.48.0/21 35025 -213.5.56.0/21 6794 -213.5.64.0/21 51430 -213.5.72.0/22 57129 -213.5.80.0/21 50141 -213.5.88.0/21 8916 -213.5.96.0/21 12714 -213.5.104.0/22 47775 -213.5.108.0/22 24955 -213.5.112.0/21 196846 -213.5.120.0/21 50048 -213.5.128.0/21 35815 -213.5.136.0/21 50231 -213.5.144.0/21 199503 -213.5.152.0/21 12350 -213.5.160.0/21 15673 -213.5.168.0/24 48937 -213.5.169.0/24 19905 -213.5.170.0/24 19905 -213.5.171.0/24 48937 -213.5.172.0/24 48937 -213.5.173.0/24 19905 -213.5.174.0/24 19905 -213.5.175.0/24 48937 -213.5.176.0/21 52148 -213.5.184.0/21 21299 -213.5.192.0/21 50130 -213.5.200.0/21 196858 -213.5.208.0/21 197227 -213.5.216.0/21 31028 -213.5.224.0/23 197453 -213.5.226.0/24 34665 -213.5.227.0/24 57274 -213.5.228.0/22 49542 -213.5.232.0/24 202120 -213.5.233.0/24 41960 -213.5.240.0/21 42141 -213.5.248.0/21 50188 -213.6.0.0/16 12975 -213.7.0.0/17 6866 -213.7.128.0/18 6866 -213.7.192.0/20 6866 -213.7.208.0/24 6866 -213.7.209.0/24 206717 -213.7.210.0/23 6866 -213.7.212.0/22 6866 -213.7.216.0/21 6866 -213.7.224.0/19 6866 -213.8.0.0/16 9116 -213.9.0.0/17 12676 -213.9.128.0/21 8903 -213.9.136.0/22 5400 -213.9.140.0/22 8903 -213.9.144.0/22 12541 -213.9.148.0/22 5400 -213.9.152.0/21 5400 -213.9.160.0/23 5400 -213.9.162.0/23 8903 -213.9.164.0/22 8903 -213.9.168.0/22 8903 -213.9.172.0/22 5400 -213.9.176.0/22 5400 -213.9.180.0/22 12541 -213.9.184.0/22 8903 -213.9.188.0/23 5400 -213.9.190.0/23 8903 -213.9.192.0/22 5400 -213.9.196.0/22 8903 -213.9.200.0/21 8903 -213.9.208.0/20 12541 -213.9.224.0/21 8903 -213.9.232.0/22 5400 -213.9.236.0/22 8903 -213.9.240.0/20 8903 -213.10.0.0/16 1136 -213.11.0.0/16 702 -213.13.0.0/19 3243 -213.13.32.0/19 15525 -213.13.64.0/18 3243 -213.13.128.0/17 3243 -213.14.1.0/24 34984 -213.14.2.0/23 34984 -213.14.4.0/22 34984 -213.14.8.0/22 34984 -213.14.12.0/24 34984 -213.14.14.0/23 34984 -213.14.16.0/20 34984 -213.14.32.0/23 34984 -213.14.34.0/24 34984 -213.14.39.0/24 34984 -213.14.40.0/21 34984 -213.14.48.0/21 34984 -213.14.60.0/22 34984 -213.14.64.0/20 34984 -213.14.80.0/22 34984 -213.14.87.0/24 34984 -213.14.88.0/21 34984 -213.14.96.0/22 34984 -213.14.100.0/23 34984 -213.14.104.0/21 34984 -213.14.112.0/21 34984 -213.14.120.0/22 34984 -213.14.124.0/24 34984 -213.14.126.0/23 34984 -213.14.128.0/18 34984 -213.14.192.0/21 34984 -213.14.200.0/22 34984 -213.14.204.0/24 34984 -213.14.206.0/23 34984 -213.14.209.0/24 197042 -213.14.210.0/23 34984 -213.14.212.0/23 34984 -213.14.214.0/24 34984 -213.14.215.0/24 33830 -213.14.216.0/23 34984 -213.14.218.0/24 34984 -213.14.220.0/24 43331 -213.14.223.0/24 60146 -213.14.225.0/24 34984 -213.14.226.0/24 34984 -213.14.227.0/24 200967 -213.14.228.0/23 34984 -213.14.230.0/24 34984 -213.14.235.0/24 34984 -213.14.237.0/24 34984 -213.14.238.0/24 50875 -213.14.240.0/24 34984 -213.14.241.0/24 42193 -213.14.242.0/24 34984 -213.14.243.0/24 203611 -213.14.244.0/24 34984 -213.14.246.0/24 34984 -213.14.248.0/24 203445 -213.14.249.0/24 34984 -213.14.250.0/24 60146 -213.14.252.0/24 34984 -213.14.254.0/23 34984 -213.15.0.0/16 5400 -213.16.0.0/19 21351 -213.16.32.0/22 8866 -213.16.36.0/24 24693 -213.16.37.0/24 8866 -213.16.38.0/23 8866 -213.16.40.0/24 8866 -213.16.41.0/24 25374 -213.16.42.0/23 8866 -213.16.44.0/24 8866 -213.16.45.0/24 197050 -213.16.46.0/23 8866 -213.16.48.0/21 8866 -213.16.56.0/24 34577 -213.16.57.0/24 8866 -213.16.58.0/23 8866 -213.16.60.0/22 8866 -213.16.64.0/20 12301 -213.16.80.0/21 12301 -213.16.88.0/22 12301 -213.16.92.0/22 200940 -213.16.96.0/21 12301 -213.16.104.0/24 30723 -213.16.105.0/24 12301 -213.16.106.0/23 12301 -213.16.108.0/22 12301 -213.16.112.0/20 12301 -213.16.128.0/18 1241 -213.16.192.0/20 29286 -213.16.208.0/20 1241 -213.16.224.0/19 1241 -213.17.0.0/17 5390 -213.17.128.0/17 12741 -213.18.128.0/18 56329 -213.18.192.0/18 5503 -213.19.0.0/17 28851 -213.19.128.0/21 3356 -213.19.136.0/22 3356 -213.19.140.0/24 26120 -213.19.141.0/24 394161 -213.19.142.0/23 3356 -213.19.144.0/24 30103 -213.19.145.0/24 3356 -213.19.146.0/24 3356 -213.19.147.0/24 26120 -213.19.148.0/22 3356 -213.19.152.0/24 3356 -213.19.153.0/24 30103 -213.19.154.0/23 3356 -213.19.156.0/22 3356 -213.19.160.0/23 3356 -213.19.162.0/24 26667 -213.19.163.0/24 3356 -213.19.164.0/22 3356 -213.19.168.0/21 3356 -213.19.176.0/20 3356 -213.19.192.0/18 3356 -213.20.0.0/16 6805 -213.21.0.0/19 39102 -213.21.32.0/20 15943 -213.21.48.0/20 39102 -213.21.64.0/18 45011 -213.21.128.0/18 5396 -213.21.192.0/18 8285 -213.22.0.0/16 2860 -213.23.0.0/16 3209 -213.24.0.0/19 8342 -213.24.32.0/20 8342 -213.24.48.0/21 8342 -213.24.56.0/21 12389 -213.24.64.0/24 12389 -213.24.65.0/24 8342 -213.24.66.0/23 8342 -213.24.68.0/22 8342 -213.24.72.0/21 8342 -213.24.80.0/21 12389 -213.24.88.0/21 8342 -213.24.96.0/21 12389 -213.24.104.0/21 8342 -213.24.112.0/20 12389 -213.24.128.0/21 12389 -213.24.136.0/21 8342 -213.24.144.0/20 8342 -213.24.160.0/22 8342 -213.24.164.0/23 8342 -213.24.166.0/24 8342 -213.24.167.0/24 12389 -213.24.168.0/21 8342 -213.24.176.0/20 8342 -213.24.192.0/19 8342 -213.24.224.0/21 8342 -213.24.232.0/22 8342 -213.24.236.0/23 12389 -213.24.238.0/24 12389 -213.24.239.0/24 8342 -213.24.240.0/20 8342 -213.25.0.0/16 5617 -213.26.0.0/16 3269 -213.27.0.0/17 60496 -213.27.128.0/17 8220 -213.28.0.0/16 1759 -213.29.0.0/16 5588 -213.30.0.0/17 12353 -213.30.128.0/18 12670 -213.30.192.0/18 8881 -213.31.0.0/17 6871 -213.31.128.0/19 6871 -213.31.160.0/20 6871 -213.31.176.0/22 6871 -213.31.180.0/24 6871 -213.31.181.0/24 5400 -213.31.182.0/23 6871 -213.31.184.0/21 6871 -213.31.192.0/18 6871 -213.32.0.0/17 16276 -213.32.128.0/18 200484 -213.32.192.0/20 57353 -213.32.208.0/20 44513 -213.32.224.0/22 62313 -213.32.228.0/24 62313 -213.32.230.0/23 62313 -213.32.232.0/21 8674 -213.32.240.0/21 203953 -213.32.248.0/22 206815 -213.32.252.0/22 206206 -213.33.0.0/21 8447 -213.33.8.0/24 208082 -213.33.9.0/24 8447 -213.33.10.0/23 8447 -213.33.12.0/22 8447 -213.33.16.0/20 8447 -213.33.32.0/20 8447 -213.33.48.0/24 8447 -213.33.49.0/24 205903 -213.33.50.0/23 8447 -213.33.52.0/24 8447 -213.33.53.0/24 200724 -213.33.54.0/23 8447 -213.33.56.0/21 8447 -213.33.64.0/19 8447 -213.33.96.0/22 8447 -213.33.100.0/24 201759 -213.33.101.0/24 8447 -213.33.102.0/23 8447 -213.33.104.0/21 8447 -213.33.112.0/22 8447 -213.33.116.0/24 41921 -213.33.117.0/24 8447 -213.33.118.0/23 8447 -213.33.120.0/21 8447 -213.33.128.0/21 3216 -213.33.136.0/22 13192 -213.33.140.0/22 3216 -213.33.144.0/20 3216 -213.33.160.0/24 3216 -213.33.161.0/24 15850 -213.33.162.0/23 3216 -213.33.164.0/22 3216 -213.33.168.0/21 3216 -213.33.176.0/20 3216 -213.33.192.0/19 3216 -213.33.224.0/20 3216 -213.33.240.0/22 3216 -213.33.244.0/24 56679 -213.33.245.0/24 3216 -213.33.246.0/23 3216 -213.33.248.0/21 3216 -213.34.0.0/19 6830 -213.34.32.0/19 12315 -213.34.64.0/18 33915 -213.34.128.0/18 33915 -213.34.192.0/19 47442 -213.34.224.0/19 15542 -213.35.0.0/22 197832 -213.35.4.0/22 9193 -213.35.8.0/22 9193 -213.35.12.0/22 197832 -213.35.16.0/20 9193 -213.35.32.0/19 9193 -213.35.64.0/19 9193 -213.35.96.0/20 4544 -213.35.112.0/21 4544 -213.35.120.0/23 4544 -213.35.122.0/24 4544 -213.35.123.0/24 9193 -213.35.124.0/22 4544 -213.35.128.0/17 3249 -213.36.0.0/16 12322 -213.37.0.0/22 6739 -213.37.4.0/23 6739 -213.37.6.0/23 12357 -213.37.8.0/23 12357 -213.37.10.0/23 6739 -213.37.12.0/23 12357 -213.37.14.0/23 6739 -213.37.16.0/22 12357 -213.37.20.0/23 12357 -213.37.22.0/23 6739 -213.37.24.0/22 12357 -213.37.28.0/22 6739 -213.37.32.0/21 6739 -213.37.40.0/23 6739 -213.37.42.0/23 12357 -213.37.44.0/23 12357 -213.37.46.0/23 6739 -213.37.48.0/20 6739 -213.37.64.0/22 6739 -213.37.68.0/23 12357 -213.37.70.0/23 6739 -213.37.72.0/23 6739 -213.37.74.0/23 12357 -213.37.76.0/22 6739 -213.37.80.0/21 12357 -213.37.88.0/21 6739 -213.37.96.0/23 6739 -213.37.98.0/23 12357 -213.37.100.0/22 6739 -213.37.104.0/23 6739 -213.37.106.0/23 12357 -213.37.108.0/22 6739 -213.37.112.0/23 12357 -213.37.114.0/23 6739 -213.37.116.0/22 6739 -213.37.120.0/21 6739 -213.37.128.0/20 6739 -213.37.144.0/23 12357 -213.37.146.0/23 6739 -213.37.148.0/22 6739 -213.37.152.0/22 6739 -213.37.156.0/23 6739 -213.37.158.0/24 12357 -213.37.159.0/24 6739 -213.37.160.0/20 6739 -213.37.176.0/22 12357 -213.37.180.0/22 6739 -213.37.184.0/21 6739 -213.37.192.0/23 6739 -213.37.194.0/23 12357 -213.37.196.0/22 6739 -213.37.200.0/21 6739 -213.37.208.0/20 6739 -213.37.224.0/22 6739 -213.37.228.0/22 12357 -213.37.232.0/23 12357 -213.37.234.0/23 6739 -213.37.236.0/22 12357 -213.37.240.0/20 6739 -213.38.0.0/16 1273 -213.39.0.0/17 3257 -213.39.128.0/17 6805 -213.40.0.0/16 9142 -213.41.0.0/18 8220 -213.41.64.0/20 8220 -213.41.80.0/21 8220 -213.41.88.0/23 8220 -213.41.90.0/24 8220 -213.41.91.0/24 4546 -213.41.92.0/22 8220 -213.41.96.0/19 8220 -213.41.128.0/17 13193 -213.42.0.0/16 5384 -213.43.0.0/17 16135 -213.43.160.0/19 16135 -213.43.192.0/20 16135 -213.43.241.0/24 16135 -213.43.243.0/24 16135 -213.43.245.0/24 16135 -213.43.246.0/23 16135 -213.43.249.0/24 16135 -213.44.0.0/16 5410 -213.45.0.0/16 3269 -213.46.0.0/15 6830 -213.48.0.0/16 5089 -213.49.0.0/16 5432 -213.50.0.0/16 3246 -213.51.0.0/16 33915 -213.52.0.0/17 2116 -213.52.128.0/23 63949 -213.52.130.0/24 63949 -213.52.132.0/22 15830 -213.52.136.0/21 15830 -213.52.144.0/20 15830 -213.52.160.0/20 15830 -213.52.176.0/22 15830 -213.52.180.0/23 15830 -213.52.184.0/22 15830 -213.52.190.0/23 15830 -213.52.192.0/18 15830 -213.53.0.0/16 702 -213.54.0.0/16 12312 -213.55.0.0/18 49902 -213.55.64.0/18 24757 -213.55.128.0/17 15796 -213.56.0.0/16 3215 -213.57.0.0/21 12849 -213.57.8.0/24 12849 -213.57.9.0/24 21450 -213.57.10.0/24 21450 -213.57.11.0/24 12849 -213.57.12.0/22 12849 -213.57.16.0/20 12849 -213.57.32.0/19 12849 -213.57.64.0/18 12849 -213.57.128.0/17 12849 -213.58.0.0/16 9186 -213.59.0.0/18 8342 -213.59.64.0/19 8342 -213.59.96.0/20 8342 -213.59.112.0/20 35913 -213.59.128.0/22 201123 -213.59.132.0/22 201250 -213.59.136.0/22 200982 -213.59.140.0/22 200953 -213.59.144.0/22 48176 -213.59.148.0/23 48176 -213.59.150.0/24 48176 -213.59.151.0/24 201123 -213.59.152.0/23 201123 -213.59.154.0/24 48176 -213.59.155.0/24 201250 -213.59.156.0/23 200982 -213.59.158.0/24 201250 -213.59.159.0/24 201123 -213.59.160.0/20 59833 -213.59.176.0/21 8342 -213.59.184.0/24 204169 -213.59.185.0/24 202934 -213.59.186.0/23 48176 -213.59.188.0/22 48176 -213.59.192.0/22 12389 -213.59.196.0/24 57580 -213.59.197.0/24 12389 -213.59.198.0/23 12389 -213.59.200.0/21 12389 -213.59.208.0/20 12389 -213.59.224.0/19 12389 -213.60.0.0/16 12334 -213.61.0.0/16 8220 -213.62.0.0/18 2686 -213.62.64.0/20 2686 -213.62.80.0/22 2686 -213.62.84.0/23 205006 -213.62.86.0/23 2686 -213.62.88.0/21 2686 -213.62.96.0/19 2686 -213.62.128.0/18 2686 -213.62.192.0/23 2686 -213.62.194.0/24 29874 -213.62.195.0/24 2686 -213.62.196.0/22 2686 -213.62.200.0/21 2686 -213.62.208.0/20 2686 -213.62.224.0/19 2686 -213.63.0.0/16 12926 -213.64.0.0/14 3301 -213.68.0.0/17 702 -213.68.128.0/18 702 -213.68.192.0/19 702 -213.68.224.0/21 702 -213.68.232.0/22 702 -213.68.236.0/23 1699 -213.68.238.0/24 1699 -213.68.239.0/24 702 -213.68.240.0/20 702 -213.69.0.0/16 702 -213.70.0.0/17 702 -213.70.128.0/21 702 -213.70.136.0/22 702 -213.70.140.0/24 12888 -213.70.141.0/24 702 -213.70.142.0/23 702 -213.70.144.0/20 702 -213.70.160.0/19 702 -213.70.192.0/18 702 -213.71.0.0/17 702 -213.71.128.0/19 702 -213.71.160.0/21 702 -213.71.168.0/22 702 -213.71.172.0/24 702 -213.71.173.0/24 1699 -213.71.174.0/23 702 -213.71.176.0/20 702 -213.71.192.0/19 702 -213.71.224.0/20 702 -213.71.240.0/23 702 -213.71.242.0/24 702 -213.71.243.0/24 1699 -213.71.244.0/22 702 -213.71.248.0/21 702 -213.72.0.0/16 5503 -213.73.0.0/21 15798 -213.73.8.0/22 21064 -213.73.12.0/24 21064 -213.73.13.0/24 34076 -213.73.14.0/24 34076 -213.73.15.0/24 21064 -213.73.16.0/22 21064 -213.73.20.0/22 15798 -213.73.24.0/22 15798 -213.73.28.0/23 15798 -213.73.30.0/24 15798 -213.73.31.0/24 44551 -213.73.32.0/19 15633 -213.73.64.0/18 34171 -213.73.128.0/17 33915 -213.74.2.0/24 34984 -213.74.5.0/24 34984 -213.74.6.0/24 34984 -213.74.8.0/21 34984 -213.74.16.0/20 34984 -213.74.32.0/24 34984 -213.74.40.0/24 60250 -213.74.41.0/24 34984 -213.74.42.0/23 34984 -213.74.44.0/22 34984 -213.74.48.0/21 34984 -213.74.56.0/22 34984 -213.74.66.0/23 34984 -213.74.68.0/22 34984 -213.74.72.0/24 34984 -213.74.76.0/22 34984 -213.74.84.0/22 34984 -213.74.88.0/22 34984 -213.74.92.0/23 34984 -213.74.95.0/24 34984 -213.74.98.0/23 34984 -213.74.101.0/24 34984 -213.74.102.0/24 60659 -213.74.103.0/24 34984 -213.74.104.0/21 34984 -213.74.112.0/20 34984 -213.74.128.0/22 34984 -213.74.133.0/24 34984 -213.74.134.0/23 34984 -213.74.136.0/21 34984 -213.74.144.0/20 34984 -213.74.160.0/23 34984 -213.74.163.0/24 34984 -213.74.164.0/22 34984 -213.74.168.0/21 34984 -213.74.176.0/20 34984 -213.74.192.0/19 34984 -213.74.224.0/20 34984 -213.74.240.0/23 34984 -213.74.242.0/24 60146 -213.74.244.0/23 34984 -213.74.247.0/24 34984 -213.74.248.0/21 34984 -213.75.0.0/16 8737 -213.76.0.0/16 5617 -213.77.0.0/17 5617 -213.77.128.0/17 12479 -213.78.0.0/16 12708 -213.79.0.0/19 30854 -213.79.32.0/19 34245 -213.79.64.0/20 8732 -213.79.80.0/22 8732 -213.79.84.0/23 8732 -213.79.86.0/24 25513 -213.79.87.0/24 8732 -213.79.88.0/24 62268 -213.79.89.0/24 8732 -213.79.90.0/23 8732 -213.79.92.0/22 8732 -213.79.96.0/22 8732 -213.79.100.0/23 8732 -213.79.102.0/24 8595 -213.79.103.0/24 8732 -213.79.104.0/22 8732 -213.79.108.0/23 8732 -213.79.110.0/24 8732 -213.79.111.0/24 199858 -213.79.112.0/21 8732 -213.79.120.0/23 8732 -213.79.122.0/24 48614 -213.79.123.0/24 8732 -213.79.124.0/22 8732 -213.79.128.0/17 12501 -213.80.0.0/18 12552 -213.80.64.0/19 12552 -213.80.96.0/19 8473 -213.80.128.0/17 15974 -213.81.0.0/17 5089 -213.81.128.0/17 6855 -213.82.0.0/16 3269 -213.83.0.0/24 12306 -213.83.1.0/24 206564 -213.83.2.0/23 12306 -213.83.4.0/24 12306 -213.83.5.0/24 204723 -213.83.6.0/24 12306 -213.83.7.0/24 209943 -213.83.8.0/21 12306 -213.83.16.0/20 12306 -213.83.32.0/19 12306 -213.83.64.0/18 8586 -213.83.128.0/17 9158 -213.84.0.0/16 3265 -213.85.0.0/16 8615 -213.86.0.0/18 8220 -213.86.64.0/20 8220 -213.86.80.0/22 8220 -213.86.84.0/24 8220 -213.86.85.0/24 25938 -213.86.86.0/23 8220 -213.86.88.0/21 8220 -213.86.96.0/20 8220 -213.86.112.0/21 8220 -213.86.120.0/22 8220 -213.86.124.0/24 54128 -213.86.125.0/24 8220 -213.86.126.0/23 8220 -213.86.128.0/17 8220 -213.87.0.0/19 13174 -213.87.32.0/21 13174 -213.87.40.0/23 8359 -213.87.42.0/23 15640 -213.87.44.0/22 13174 -213.87.48.0/21 13174 -213.87.56.0/21 38996 -213.87.64.0/21 8359 -213.87.72.0/22 35473 -213.87.76.0/22 8359 -213.87.80.0/21 13174 -213.87.88.0/24 13174 -213.87.89.0/24 8359 -213.87.90.0/23 8359 -213.87.92.0/22 13174 -213.87.96.0/21 39811 -213.87.104.0/22 39811 -213.87.108.0/22 8359 -213.87.112.0/20 28884 -213.87.128.0/18 8359 -213.87.192.0/21 42115 -213.87.200.0/21 8359 -213.87.208.0/20 8359 -213.87.224.0/23 28884 -213.87.226.0/23 8359 -213.87.228.0/22 8359 -213.87.232.0/21 8359 -213.87.240.0/22 8359 -213.87.244.0/23 8359 -213.87.246.0/24 39811 -213.87.247.0/24 8359 -213.87.248.0/22 8359 -213.87.252.0/23 8359 -213.87.254.0/24 8359 -213.87.255.0/24 49816 -213.88.0.0/17 12714 -213.88.128.0/17 3246 -213.89.0.0/19 39651 -213.89.32.0/21 39651 -213.89.40.0/23 39651 -213.89.42.0/24 39651 -213.89.43.0/24 3301 -213.89.44.0/22 39651 -213.89.48.0/20 39651 -213.89.64.0/18 39651 -213.89.128.0/17 39651 -213.90.0.0/17 8437 -213.91.0.0/18 13273 -213.91.64.0/21 202632 -213.91.72.0/21 198252 -213.91.80.0/20 198252 -213.91.96.0/20 57869 -213.91.112.0/20 202632 -213.91.128.0/21 8866 -213.91.136.0/23 197304 -213.91.138.0/23 8866 -213.91.140.0/24 200475 -213.91.141.0/24 8866 -213.91.142.0/23 8866 -213.91.144.0/23 8866 -213.91.146.0/24 200475 -213.91.147.0/24 8866 -213.91.148.0/22 8866 -213.91.152.0/22 8866 -213.91.156.0/24 61066 -213.91.157.0/24 199512 -213.91.158.0/23 8866 -213.91.160.0/23 8866 -213.91.162.0/24 8866 -213.91.163.0/24 25407 -213.91.164.0/22 8866 -213.91.168.0/24 8866 -213.91.169.0/24 34753 -213.91.170.0/23 8866 -213.91.172.0/24 8866 -213.91.173.0/24 44586 -213.91.174.0/24 49850 -213.91.175.0/24 8866 -213.91.176.0/24 43943 -213.91.177.0/24 8866 -213.91.178.0/23 8866 -213.91.180.0/22 8866 -213.91.184.0/22 8866 -213.91.188.0/24 199301 -213.91.189.0/24 25374 -213.91.190.0/23 8866 -213.91.192.0/22 8866 -213.91.196.0/24 39177 -213.91.197.0/24 39163 -213.91.198.0/24 34653 -213.91.199.0/24 8866 -213.91.200.0/21 8866 -213.91.208.0/20 8866 -213.91.224.0/22 8866 -213.91.228.0/23 8866 -213.91.230.0/24 8866 -213.91.231.0/24 198280 -213.91.232.0/21 8866 -213.91.240.0/21 8866 -213.91.248.0/22 8866 -213.91.252.0/24 31527 -213.91.253.0/24 8866 -213.91.254.0/23 8866 -213.92.0.0/18 3313 -213.92.64.0/19 3313 -213.92.96.0/20 3313 -213.92.112.0/22 3313 -213.92.116.0/24 3313 -213.92.117.0/24 29564 -213.92.118.0/23 3313 -213.92.120.0/21 3313 -213.92.128.0/17 41256 -213.93.0.0/16 6830 -213.94.64.0/18 25255 -213.94.128.0/17 5466 -213.95.0.0/16 12337 -213.96.0.0/15 3352 -213.98.0.0/16 3352 -213.99.0.0/20 3352 -213.99.16.0/22 12956 -213.99.20.0/22 3352 -213.99.24.0/22 3352 -213.99.28.0/24 200165 -213.99.29.0/24 3352 -213.99.30.0/23 3352 -213.99.32.0/21 3352 -213.99.40.0/23 3352 -213.99.42.0/24 206252 -213.99.43.0/24 3352 -213.99.44.0/22 3352 -213.99.48.0/22 3352 -213.99.52.0/23 3352 -213.99.54.0/23 49928 -213.99.56.0/21 3352 -213.99.64.0/18 3352 -213.99.128.0/17 3352 -213.100.0.0/17 1257 -213.100.128.0/18 1257 -213.100.192.0/19 39651 -213.100.224.0/19 1257 -213.101.0.0/16 1257 -213.102.0.0/18 1257 -213.102.64.0/19 39651 -213.102.96.0/19 1257 -213.102.128.0/17 1257 -213.103.0.0/17 1257 -213.103.128.0/20 39651 -213.103.144.0/22 39651 -213.103.148.0/23 2119 -213.103.150.0/23 39651 -213.103.152.0/24 2119 -213.103.153.0/24 39651 -213.103.154.0/23 39651 -213.103.156.0/23 39651 -213.103.158.0/24 2119 -213.103.159.0/24 39651 -213.103.160.0/19 1257 -213.103.192.0/18 1257 -213.104.0.0/14 5089 -213.108.4.0/24 48347 -213.108.5.0/24 205063 -213.108.6.0/24 61223 -213.108.7.0/24 12389 -213.108.8.0/21 49300 -213.108.16.0/21 49342 -213.108.24.0/23 197564 -213.108.26.0/24 2116 -213.108.27.0/24 206897 -213.108.28.0/24 203688 -213.108.29.0/24 29311 -213.108.32.0/21 31376 -213.108.40.0/22 48094 -213.108.44.0/24 48094 -213.108.45.0/24 50803 -213.108.46.0/23 48094 -213.108.48.0/22 200316 -213.108.52.0/22 25133 -213.108.56.0/21 34360 -213.108.64.0/21 16347 -213.108.72.0/21 34265 -213.108.80.0/21 198498 -213.108.88.0/21 57794 -213.108.96.0/21 57208 -213.108.104.0/21 47172 -213.108.112.0/21 60191 -213.108.120.0/21 20581 -213.108.128.0/23 8359 -213.108.135.0/24 208629 -213.108.136.0/21 29588 -213.108.144.0/21 31028 -213.108.152.0/21 49715 -213.108.160.0/23 200114 -213.108.162.0/23 47232 -213.108.164.0/22 200114 -213.108.168.0/21 49718 -213.108.176.0/21 49757 -213.108.184.0/21 49736 -213.108.192.0/22 204591 -213.108.196.0/24 208689 -213.108.197.0/24 209882 -213.108.198.0/23 29802 -213.108.200.0/21 49749 -213.108.208.0/21 42765 -213.108.216.0/21 49776 -213.108.224.0/21 52020 -213.108.232.0/21 35665 -213.108.240.0/22 200296 -213.108.244.0/24 57161 -213.108.247.0/24 57161 -213.108.248.0/21 49834 -213.109.0.0/20 50498 -213.109.16.0/21 49583 -213.109.24.0/23 49583 -213.109.26.0/23 44429 -213.109.28.0/22 49583 -213.109.32.0/24 49649 -213.109.33.0/24 35745 -213.109.34.0/23 62393 -213.109.36.0/22 35745 -213.109.40.0/21 35745 -213.109.48.0/20 48642 -213.109.72.0/24 206396 -213.109.73.0/24 206103 -213.109.74.0/24 42444 -213.109.75.0/24 42834 -213.109.76.0/23 51167 -213.109.78.0/24 43795 -213.109.79.0/24 44903 -213.109.80.0/20 41435 -213.109.111.0/24 49782 -213.109.112.0/20 49784 -213.109.128.0/20 34359 -213.109.160.0/22 197540 -213.109.164.0/22 39392 -213.109.168.0/22 61317 -213.109.172.0/22 200848 -213.109.176.0/22 47999 -213.109.180.0/22 9009 -213.109.184.0/22 210224 -213.109.189.0/24 393559 -213.109.191.0/24 393559 -213.109.208.0/20 21299 -213.109.224.0/20 47702 -213.109.240.0/20 58224 -213.110.0.0/19 49483 -213.110.32.0/19 39860 -213.110.64.0/19 24589 -213.110.96.0/19 196829 -213.110.128.0/19 47889 -213.110.160.0/19 47678 -213.110.192.0/19 47111 -213.110.224.0/19 50022 -213.111.0.0/18 39886 -213.111.64.0/18 48683 -213.111.128.0/18 35804 -213.111.192.0/18 3326 -213.112.0.0/14 2119 -213.116.0.0/15 702 -213.118.0.0/15 6848 -213.120.0.0/17 2856 -213.120.128.0/18 2856 -213.120.192.0/19 2856 -213.120.224.0/20 2856 -213.120.240.0/22 2856 -213.120.244.0/24 2856 -213.120.245.0/24 45008 -213.120.246.0/23 2856 -213.120.248.0/21 2856 -213.121.0.0/16 2856 -213.122.0.0/15 2856 -213.124.0.0/17 33915 -213.124.128.0/19 33915 -213.124.160.0/19 6830 -213.124.192.0/18 6830 -213.125.0.0/16 33915 -213.126.0.0/17 33915 -213.126.128.0/17 6830 -213.127.0.0/16 6830 -213.128.0.0/19 42087 -213.128.32.0/19 15557 -213.128.64.0/22 42926 -213.128.68.0/24 42926 -213.128.70.0/23 42926 -213.128.72.0/22 42926 -213.128.76.0/23 42926 -213.128.78.0/24 42926 -213.128.80.0/21 197328 -213.128.88.0/22 42926 -213.128.93.0/24 42926 -213.128.94.0/23 42926 -213.128.96.0/19 3209 -213.128.128.0/19 12731 -213.128.160.0/19 203424 -213.128.192.0/20 13165 -213.128.208.0/24 60162 -213.128.209.0/24 39575 -213.128.220.0/22 50691 -213.128.224.0/19 5564 -213.129.0.0/19 702 -213.129.32.0/19 12389 -213.129.64.0/19 24958 -213.129.96.0/20 15774 -213.129.112.0/21 15774 -213.129.120.0/22 20485 -213.129.124.0/22 15774 -213.129.128.0/19 47834 -213.129.160.0/19 12321 -213.129.192.0/19 21478 -213.129.224.0/19 8437 -213.130.0.0/20 6703 -213.130.16.0/21 6703 -213.130.24.0/22 6703 -213.130.28.0/24 6703 -213.130.29.0/24 12883 -213.130.30.0/24 12883 -213.130.31.0/24 6703 -213.130.32.0/19 2914 -213.130.64.0/22 8866 -213.130.68.0/23 57731 -213.130.70.0/23 9127 -213.130.72.0/23 9127 -213.130.74.0/24 58738 -213.130.75.0/24 9127 -213.130.76.0/22 8866 -213.130.80.0/23 58738 -213.130.82.0/24 57731 -213.130.83.0/24 58738 -213.130.84.0/22 57731 -213.130.88.0/22 57731 -213.130.92.0/22 9127 -213.130.96.0/22 42298 -213.130.100.0/22 8781 -213.130.104.0/21 8781 -213.130.112.0/21 8781 -213.130.120.0/22 8781 -213.130.124.0/23 8781 -213.130.126.0/24 8781 -213.130.127.0/24 42298 -213.130.128.0/19 8851 -213.130.160.0/19 15879 -213.130.192.0/19 1257 -213.130.224.0/19 21366 -213.131.0.0/20 12925 -213.131.16.0/21 12925 -213.131.24.0/22 12925 -213.131.28.0/23 12925 -213.131.30.0/23 204961 -213.131.32.0/19 15491 -213.131.64.0/19 24863 -213.131.96.0/19 6067 -213.131.128.0/19 3246 -213.131.160.0/19 8607 -213.131.192.0/19 12657 -213.131.224.0/22 25074 -213.131.228.0/22 61157 -213.131.232.0/21 61157 -213.131.240.0/20 61157 -213.132.0.0/19 20618 -213.132.32.0/19 15802 -213.132.64.0/21 12543 -213.132.72.0/22 12543 -213.132.76.0/24 3216 -213.132.77.0/24 12543 -213.132.78.0/23 12543 -213.132.80.0/20 12543 -213.132.96.0/19 12552 -213.132.128.0/19 6848 -213.132.160.0/19 33915 -213.132.192.0/21 39704 -213.132.200.0/22 39704 -213.132.204.0/24 39704 -213.132.205.0/24 41887 -213.132.206.0/23 39704 -213.132.208.0/22 39704 -213.132.212.0/24 39704 -213.132.213.0/24 41887 -213.132.214.0/24 39704 -213.132.215.0/24 41887 -213.132.216.0/22 39704 -213.132.220.0/23 39704 -213.132.222.0/24 41887 -213.132.223.0/24 39704 -213.132.224.0/19 3225 -213.133.0.0/19 43940 -213.133.32.0/19 15879 -213.133.64.0/21 207044 -213.133.72.0/21 6758 -213.133.80.0/20 35432 -213.133.96.0/19 24940 -213.133.128.0/19 6908 -213.133.160.0/19 13249 -213.133.193.0/24 13208 -213.133.194.0/23 13208 -213.133.196.0/22 13208 -213.133.202.0/23 13208 -213.133.207.0/24 13208 -213.133.208.0/22 13208 -213.133.213.0/24 13208 -213.133.214.0/24 13208 -213.133.216.0/22 13208 -213.133.220.0/23 13208 -213.133.223.0/24 13208 -213.133.224.0/20 51423 -213.133.240.0/21 15517 -213.134.0.0/19 31219 -213.134.32.0/21 15919 -213.134.40.0/22 15919 -213.134.44.0/23 16349 -213.134.46.0/23 15919 -213.134.48.0/20 15919 -213.134.64.0/20 15515 -213.134.96.0/19 3246 -213.134.128.0/19 12741 -213.134.160.0/19 6830 -213.134.192.0/19 25227 -213.134.224.0/19 12414 -213.135.0.0/19 12941 -213.135.32.0/21 15665 -213.135.40.0/23 15665 -213.135.42.0/24 15396 -213.135.43.0/24 8664 -213.135.44.0/22 20555 -213.135.48.0/23 20555 -213.135.50.0/23 8664 -213.135.52.0/22 8664 -213.135.56.0/21 8664 -213.135.64.0/23 8641 -213.135.66.0/24 31600 -213.135.67.0/24 8641 -213.135.68.0/24 24739 -213.135.69.0/24 8641 -213.135.70.0/24 8641 -213.135.71.0/24 198976 -213.135.72.0/23 8641 -213.135.75.0/24 24739 -213.135.76.0/24 24739 -213.135.77.0/24 8641 -213.135.78.0/24 24739 -213.135.79.0/24 8641 -213.135.80.0/21 8641 -213.135.88.0/22 34829 -213.135.92.0/24 199231 -213.135.93.0/24 24739 -213.135.94.0/23 199315 -213.135.96.0/19 12389 -213.135.128.0/21 13056 -213.135.136.0/22 12389 -213.135.140.0/22 13056 -213.135.144.0/22 13056 -213.135.148.0/22 12389 -213.135.152.0/23 13056 -213.135.154.0/23 12389 -213.135.156.0/22 12389 -213.135.160.0/19 44566 -213.135.192.0/21 15925 -213.135.200.0/21 20810 -213.135.208.0/20 20810 -213.135.224.0/19 6661 -213.136.0.0/19 12859 -213.136.32.0/19 8473 -213.136.64.0/19 51167 -213.136.96.0/19 29571 -213.136.128.0/18 15589 -213.136.192.0/21 197994 -213.136.224.0/19 21021 -213.137.0.0/19 13122 -213.137.32.0/19 203489 -213.137.64.0/20 51825 -213.137.84.0/22 199270 -213.137.88.0/21 199270 -213.137.96.0/19 13091 -213.137.128.0/21 6774 -213.137.136.0/22 6774 -213.137.157.0/24 5432 -213.137.158.0/24 6774 -213.137.160.0/19 5400 -213.137.192.0/19 8823 -213.137.224.0/22 20485 -213.137.228.0/24 20485 -213.137.229.0/24 15774 -213.137.230.0/23 20485 -213.137.232.0/23 20485 -213.137.236.0/22 20485 -213.137.240.0/20 20485 -213.138.0.0/19 12684 -213.138.32.0/19 8881 -213.138.64.0/19 15774 -213.138.96.0/19 35425 -213.138.128.0/19 1342 -213.138.160.0/20 48863 -213.138.176.0/21 48863 -213.138.184.0/21 2116 -213.138.192.0/20 12714 -213.138.208.0/21 12714 -213.138.216.0/22 202258 -213.138.220.0/22 12714 -213.138.224.0/19 15457 -213.139.0.0/19 4589 -213.139.32.0/23 8697 -213.139.34.0/24 8697 -213.139.35.0/24 8376 -213.139.36.0/22 8697 -213.139.40.0/24 8697 -213.139.41.0/24 8376 -213.139.42.0/23 8697 -213.139.44.0/22 8697 -213.139.48.0/24 8376 -213.139.49.0/24 8697 -213.139.50.0/24 8376 -213.139.51.0/24 8697 -213.139.52.0/23 8697 -213.139.54.0/24 8376 -213.139.55.0/24 8697 -213.139.56.0/24 8697 -213.139.57.0/24 8376 -213.139.58.0/24 8376 -213.139.59.0/24 8697 -213.139.60.0/22 8697 -213.139.64.0/19 204591 -213.139.96.0/19 8784 -213.139.128.0/19 8881 -213.139.160.0/19 16086 -213.139.192.0/22 49392 -213.139.196.0/22 9009 -213.139.200.0/22 12695 -213.139.204.0/24 136175 -213.139.205.0/24 134512 -213.139.206.0/23 136175 -213.139.208.0/22 198610 -213.139.212.0/22 208405 -213.139.216.0/22 60781 -213.139.220.0/22 206766 -213.139.228.0/24 61317 -213.139.229.0/24 34665 -213.139.230.0/24 204941 -213.139.231.0/24 12722 -213.139.232.0/24 43092 -213.139.233.0/24 136782 -213.139.234.0/24 137001 -213.139.235.0/24 43092 -213.139.236.0/22 209786 -213.139.240.0/22 39614 -213.139.244.0/22 25091 -213.139.248.0/23 209599 -213.139.250.0/24 209599 -213.139.252.0/22 39912 -213.140.0.0/19 12874 -213.140.32.0/20 12956 -213.140.48.0/21 12956 -213.140.56.0/23 36947 -213.140.58.0/24 36947 -213.140.59.0/24 327712 -213.140.60.0/22 12956 -213.140.64.0/19 35158 -213.140.96.0/19 3253 -213.140.128.0/21 15544 -213.140.136.0/22 15544 -213.140.140.0/23 199382 -213.140.142.0/24 199305 -213.140.143.0/24 15544 -213.140.144.0/24 203780 -213.140.145.0/24 207062 -213.140.146.0/24 15544 -213.140.160.0/19 20569 -213.140.192.0/19 35432 -213.140.224.0/19 25515 -213.141.0.0/19 12926 -213.141.32.0/19 12946 -213.141.64.0/19 16117 -213.141.96.0/19 16086 -213.141.128.0/19 12714 -213.141.160.0/20 20578 -213.141.176.0/21 20578 -213.141.192.0/19 12479 -213.141.224.0/20 16285 -213.141.240.0/22 20485 -213.141.244.0/23 16285 -213.141.246.0/24 16285 -213.141.247.0/24 20485 -213.141.248.0/21 16285 -213.142.0.0/19 45011 -213.142.32.0/19 35154 -213.142.64.0/19 2119 -213.142.96.0/19 8412 -213.142.128.0/22 397563 -213.142.132.0/23 397563 -213.142.134.0/24 206119 -213.142.135.0/24 204457 -213.142.136.0/21 397563 -213.142.144.0/22 397563 -213.142.148.0/24 61135 -213.142.149.0/24 397563 -213.142.150.0/23 207508 -213.142.152.0/23 26881 -213.142.154.0/24 42926 -213.142.155.0/24 34984 -213.142.156.0/24 61135 -213.142.158.0/23 60721 -213.142.160.0/19 42155 -213.142.192.0/19 13257 -213.142.224.0/19 44993 -213.143.0.0/19 41230 -213.143.32.0/22 12479 -213.143.36.0/24 20921 -213.143.37.0/24 12479 -213.143.38.0/23 20921 -213.143.40.0/21 12479 -213.143.48.0/20 12479 -213.143.64.0/19 3212 -213.143.96.0/19 29287 -213.143.128.0/19 15654 -213.143.160.0/19 13170 -213.143.192.0/19 13233 -213.143.224.0/24 20864 -213.143.225.0/24 9021 -213.143.226.0/23 9021 -213.143.228.0/22 9021 -213.143.232.0/21 9021 -213.143.240.0/21 9021 -213.143.248.0/23 9021 -213.143.250.0/24 9021 -213.143.251.0/24 39298 -213.143.252.0/22 9021 -213.144.0.0/19 12843 -213.144.32.0/19 15937 -213.144.64.0/19 13113 -213.144.96.0/22 25145 -213.144.101.0/24 25145 -213.144.102.0/24 43116 -213.144.103.0/24 25145 -213.144.104.0/21 25145 -213.144.112.0/20 25145 -213.144.128.0/19 13030 -213.144.160.0/19 6762 -213.144.192.0/19 9003 -213.144.224.0/19 28685 -213.145.0.0/19 12714 -213.145.32.0/21 15934 -213.145.40.0/24 6863 -213.145.41.0/24 15934 -213.145.42.0/23 15934 -213.145.44.0/22 15934 -213.145.48.0/20 15934 -213.145.64.0/19 13115 -213.145.96.0/24 42625 -213.145.97.0/24 9070 -213.145.98.0/24 8739 -213.145.99.0/24 9070 -213.145.100.0/23 9070 -213.145.102.0/24 9070 -213.145.103.0/24 35489 -213.145.104.0/24 9070 -213.145.105.0/24 29667 -213.145.106.0/23 9070 -213.145.108.0/24 35489 -213.145.109.0/24 9070 -213.145.110.0/23 9070 -213.145.112.0/20 9070 -213.145.128.0/19 12997 -213.145.160.0/19 15659 -213.145.192.0/19 13170 -213.145.224.0/19 25575 -213.146.0.0/19 16267 -213.146.32.0/19 12741 -213.146.64.0/19 42525 -213.146.96.0/19 8648 -213.146.128.0/19 13009 -213.146.160.0/23 174 -213.146.162.0/24 15692 -213.146.163.0/24 44308 -213.146.164.0/24 174 -213.146.165.0/24 25952 -213.146.166.0/24 174 -213.146.167.0/24 209765 -213.146.168.0/23 174 -213.146.170.0/24 174 -213.146.171.0/24 209765 -213.146.172.0/22 174 -213.146.176.0/22 48945 -213.146.180.0/24 61429 -213.146.181.0/24 201924 -213.146.182.0/23 174 -213.146.184.0/21 174 -213.146.192.0/19 5626 -213.146.224.0/19 25579 -213.147.0.0/19 12431 -213.147.32.0/19 8359 -213.147.64.0/19 13224 -213.147.96.0/20 35549 -213.147.112.0/22 35549 -213.147.116.0/24 35549 -213.147.117.0/24 38937 -213.147.118.0/23 35549 -213.147.120.0/21 35549 -213.147.128.0/19 12479 -213.147.160.0/19 12793 -213.147.192.0/19 29190 -213.148.32.0/19 5089 -213.148.64.0/19 13138 -213.148.96.0/19 57537 -213.148.128.0/19 20676 -213.148.160.0/19 16301 -213.148.192.0/19 16030 -213.148.224.0/19 12871 -213.149.0.0/19 31214 -213.149.32.0/21 31012 -213.149.40.0/24 31012 -213.149.41.0/24 15994 -213.149.42.0/23 31012 -213.149.44.0/22 31012 -213.149.48.0/23 31012 -213.149.50.0/24 31012 -213.149.51.0/24 15994 -213.149.52.0/22 31012 -213.149.56.0/22 31012 -213.149.60.0/24 31012 -213.149.61.0/24 15994 -213.149.62.0/24 15994 -213.149.63.0/24 31012 -213.149.64.0/19 13003 -213.149.96.0/19 8585 -213.149.128.0/19 39184 -213.149.160.0/19 6866 -213.149.192.0/19 44787 -213.149.224.0/19 16371 -213.150.0.0/20 12895 -213.150.16.0/24 198949 -213.150.17.0/24 12895 -213.150.18.0/23 12895 -213.150.20.0/22 12895 -213.150.24.0/21 12895 -213.150.32.0/19 9167 -213.150.64.0/19 13095 -213.150.128.0/19 2119 -213.150.160.0/23 37693 -213.150.162.0/23 2609 -213.150.164.0/24 37693 -213.150.165.0/24 2609 -213.150.166.0/23 2609 -213.150.168.0/23 2609 -213.150.170.0/24 37492 -213.150.171.0/24 2609 -213.150.172.0/23 37492 -213.150.174.0/24 37492 -213.150.175.0/24 2609 -213.150.176.0/22 2609 -213.150.180.0/23 37671 -213.150.182.0/24 37717 -213.150.183.0/24 2609 -213.150.184.0/24 2609 -213.150.185.0/24 5438 -213.150.186.0/24 2609 -213.150.187.0/24 5438 -213.150.188.0/24 37492 -213.150.189.0/24 2609 -213.150.190.0/23 2609 -213.150.192.0/21 327862 -213.150.200.0/21 37596 -213.150.208.0/21 37515 -213.150.216.0/21 327794 -213.150.224.0/20 42587 -213.150.240.0/21 42587 -213.150.252.0/22 12766 -213.151.0.0/19 31499 -213.151.32.0/19 42925 -213.151.64.0/19 29208 -213.151.96.0/19 12386 -213.151.128.0/19 2116 -213.151.160.0/22 49594 -213.151.164.0/23 49594 -213.151.166.0/24 16347 -213.151.167.0/24 49594 -213.151.168.0/23 16347 -213.151.171.0/24 16347 -213.151.172.0/22 16347 -213.151.176.0/20 49594 -213.151.192.0/18 15962 -213.152.0.0/20 8218 -213.152.16.0/22 8218 -213.152.20.0/24 8218 -213.152.21.0/24 199027 -213.152.22.0/23 8218 -213.152.24.0/21 8218 -213.152.32.0/19 12513 -213.152.64.0/21 15475 -213.152.72.0/22 15475 -213.152.76.0/24 36992 -213.152.77.0/24 15475 -213.152.78.0/24 37112 -213.152.79.0/24 15475 -213.152.80.0/23 15475 -213.152.82.0/24 15475 -213.152.83.0/24 36992 -213.152.84.0/22 15475 -213.152.88.0/21 15475 -213.152.96.0/19 57154 -213.152.128.0/19 12976 -213.152.160.0/22 49453 -213.152.164.0/23 49453 -213.152.166.0/23 57172 -213.152.168.0/22 49453 -213.152.172.0/23 49453 -213.152.174.0/23 57172 -213.152.176.0/24 49453 -213.152.177.0/24 57172 -213.152.178.0/24 57172 -213.152.179.0/24 49453 -213.152.180.0/23 49453 -213.152.182.0/23 57172 -213.152.184.0/24 57172 -213.152.185.0/24 49453 -213.152.186.0/23 57172 -213.152.188.0/22 49453 -213.152.192.0/19 13182 -213.152.224.0/22 6461 -213.152.228.0/24 62044 -213.152.229.0/24 14163 -213.152.230.0/23 6461 -213.152.232.0/22 6461 -213.152.236.0/23 6461 -213.152.238.0/24 6461 -213.152.239.0/24 17025 -213.152.240.0/24 6461 -213.152.241.0/24 204242 -213.152.242.0/24 6461 -213.152.243.0/24 8149 -213.152.244.0/24 29480 -213.152.245.0/24 6461 -213.152.246.0/23 6461 -213.152.248.0/23 6461 -213.152.250.0/24 201867 -213.152.251.0/24 35831 -213.152.252.0/22 6461 -213.153.0.0/19 8542 -213.153.32.0/19 8445 -213.153.64.0/22 15518 -213.153.68.0/22 41998 -213.153.72.0/22 15518 -213.153.76.0/22 41998 -213.153.80.0/20 41998 -213.153.96.0/19 28726 -213.153.128.0/24 34984 -213.153.129.0/24 42193 -213.153.130.0/23 34984 -213.153.132.0/22 34984 -213.153.136.0/21 34984 -213.153.144.0/20 34984 -213.153.160.0/21 34984 -213.153.168.0/22 34984 -213.153.172.0/24 51703 -213.153.173.0/24 34984 -213.153.174.0/23 34984 -213.153.176.0/20 34984 -213.153.192.0/19 34984 -213.153.224.0/21 34984 -213.153.232.0/24 199515 -213.153.233.0/24 34984 -213.153.234.0/23 34984 -213.153.236.0/22 34984 -213.153.240.0/20 34984 -213.154.0.0/19 203971 -213.154.32.0/21 15475 -213.154.40.0/22 15475 -213.154.44.0/24 15475 -213.154.45.0/24 36992 -213.154.46.0/23 15475 -213.154.48.0/20 15475 -213.154.64.0/20 8346 -213.154.80.0/21 8346 -213.154.88.0/23 8346 -213.154.90.0/24 30985 -213.154.91.0/24 8346 -213.154.92.0/22 8346 -213.154.160.0/21 20663 -213.154.168.0/23 20663 -213.154.171.0/24 20663 -213.154.172.0/23 20663 -213.154.174.0/24 20663 -213.154.176.0/22 20663 -213.154.180.0/23 20663 -213.154.185.0/24 20663 -213.154.186.0/23 20663 -213.154.188.0/22 20663 -213.154.192.0/20 6703 -213.154.208.0/23 6703 -213.154.212.0/22 6703 -213.154.216.0/24 6703 -213.154.218.0/23 6703 -213.154.220.0/22 6703 -213.154.224.0/19 12859 -213.155.0.0/19 41665 -213.155.32.0/19 28851 -213.155.64.0/19 12337 -213.155.96.0/19 8685 -213.155.128.0/19 1299 -213.155.160.0/22 13119 -213.155.164.0/23 13119 -213.155.166.0/24 13119 -213.155.167.0/24 204444 -213.155.168.0/21 13119 -213.155.176.0/21 13119 -213.155.184.0/22 13119 -213.155.188.0/23 43803 -213.155.190.0/23 13119 -213.155.192.0/22 34267 -213.155.196.0/22 12389 -213.155.200.0/21 12389 -213.155.208.0/20 12389 -213.155.224.0/19 31246 -213.156.0.0/20 41960 -213.156.16.0/21 41960 -213.156.24.0/22 41960 -213.156.28.0/22 58291 -213.156.32.0/19 12874 -213.156.64.0/22 13053 -213.156.68.0/24 13053 -213.156.69.0/24 62066 -213.156.70.0/23 13053 -213.156.72.0/21 13053 -213.156.80.0/21 13053 -213.156.88.0/24 13053 -213.156.89.0/24 197388 -213.156.90.0/23 197388 -213.156.92.0/24 197388 -213.156.93.0/24 197373 -213.156.94.0/23 13053 -213.156.96.0/19 8477 -213.156.128.0/19 12979 -213.156.160.0/19 14618 -213.156.192.0/19 13227 -213.156.224.0/19 9092 -213.157.0.0/19 12897 -213.157.32.0/19 8393 -213.157.64.0/19 29422 -213.157.96.0/19 20510 -213.157.128.0/19 1901 -213.157.160.0/19 8708 -213.157.192.0/19 16010 -213.157.224.0/19 8591 -213.158.0.0/20 12389 -213.158.16.0/20 31496 -213.158.32.0/19 44813 -213.158.96.0/19 13101 -213.158.128.0/19 15623 -213.158.160.0/19 8452 -213.158.192.0/19 12912 -213.158.224.0/19 2116 -213.159.0.0/21 42807 -213.159.8.0/24 39899 -213.159.9.0/24 12601 -213.159.10.0/23 209706 -213.159.12.0/23 209706 -213.159.14.0/23 53889 -213.159.16.0/21 62353 -213.159.24.0/23 50522 -213.159.26.0/23 201474 -213.159.28.0/22 42807 -213.159.32.0/19 21211 -213.159.64.0/20 13078 -213.159.80.0/20 43284 -213.159.96.0/19 13002 -213.159.128.0/22 34245 -213.159.132.0/22 63201 -213.159.136.0/21 210176 -213.159.144.0/20 41549 -213.159.160.0/19 158 -213.159.192.0/22 12668 -213.159.199.0/24 44845 -213.159.200.0/24 60651 -213.159.202.0/23 12389 -213.159.204.0/22 60651 -213.159.208.0/21 29182 -213.159.216.0/21 34456 -213.159.224.0/20 6703 -213.159.240.0/21 6703 -213.159.248.0/22 6703 -213.159.252.0/23 6703 -213.159.254.0/23 12883 -213.160.0.0/19 20676 -213.160.32.0/19 21232 -213.160.64.0/19 12574 -213.160.96.0/19 8190 -213.160.128.0/19 12963 -213.160.160.0/19 6855 -213.160.192.0/19 6830 -213.160.224.0/20 2116 -213.160.240.0/21 2116 -213.160.248.0/21 6830 -213.161.0.0/19 3212 -213.161.32.0/19 719 -213.161.64.0/20 6461 -213.161.80.0/23 6461 -213.161.82.0/24 2723 -213.161.83.0/24 6461 -213.161.84.0/23 6461 -213.161.86.0/24 14163 -213.161.87.0/24 22104 -213.161.88.0/21 6461 -213.161.96.0/19 15997 -213.161.128.0/23 9021 -213.161.130.0/24 9021 -213.161.131.0/24 28781 -213.161.132.0/22 9021 -213.161.136.0/21 9021 -213.161.144.0/23 9021 -213.161.146.0/24 9021 -213.161.147.0/24 24667 -213.161.148.0/23 9021 -213.161.150.0/24 9021 -213.161.151.0/24 20978 -213.161.152.0/24 9021 -213.161.153.0/24 20978 -213.161.154.0/23 9021 -213.161.156.0/24 9021 -213.161.157.0/24 20978 -213.161.158.0/23 9021 -213.161.160.0/19 206557 -213.161.192.0/19 24776 -213.161.224.0/19 15765 -213.162.0.0/19 12350 -213.162.32.0/20 16073 -213.162.48.0/21 16073 -213.162.56.0/22 16073 -213.162.60.0/23 16073 -213.162.62.0/24 13273 -213.162.63.0/24 16073 -213.162.64.0/23 8387 -213.162.66.0/23 8412 -213.162.68.0/22 8412 -213.162.72.0/22 8412 -213.162.76.0/23 8412 -213.162.78.0/24 8387 -213.162.79.0/24 8412 -213.162.80.0/20 8412 -213.162.96.0/19 6871 -213.162.128.0/19 9136 -213.162.192.0/23 13287 -213.162.195.0/24 13287 -213.162.196.0/22 13287 -213.162.200.0/21 13287 -213.162.208.0/22 13287 -213.162.212.0/24 13287 -213.162.213.0/24 200064 -213.162.214.0/24 13287 -213.162.215.0/24 200064 -213.162.216.0/22 13287 -213.162.220.0/24 200064 -213.162.221.0/24 13287 -213.162.224.0/19 28824 -213.163.0.0/21 12301 -213.163.8.0/24 12301 -213.163.9.0/24 42232 -213.163.10.0/23 12301 -213.163.12.0/22 12301 -213.163.16.0/20 12301 -213.163.32.0/19 12301 -213.163.64.0/19 49544 -213.163.96.0/19 8661 -213.163.128.0/19 2119 -213.163.160.0/19 20917 -213.163.192.0/19 13216 -213.163.224.0/19 29545 -213.164.0.0/21 8220 -213.164.8.0/24 8220 -213.164.9.0/24 13068 -213.164.10.0/23 8220 -213.164.12.0/22 8220 -213.164.16.0/20 8220 -213.164.32.0/19 16091 -213.164.64.0/19 13054 -213.164.96.0/19 24852 -213.164.128.0/19 9135 -213.164.160.0/19 20748 -213.164.192.0/19 8473 -213.164.224.0/19 6830 -213.165.16.0/22 12789 -213.165.21.0/24 12789 -213.165.22.0/24 12789 -213.165.25.0/24 12789 -213.165.26.0/23 12789 -213.165.28.0/23 12789 -213.165.32.0/23 35629 -213.165.35.0/24 35629 -213.165.36.0/23 35629 -213.165.38.0/24 35629 -213.165.40.0/24 35629 -213.165.42.0/23 35629 -213.165.44.0/23 35629 -213.165.46.0/24 35629 -213.165.55.0/24 35629 -213.165.64.0/19 8560 -213.165.96.0/21 13247 -213.165.104.0/21 8820 -213.165.112.0/20 13247 -213.165.128.0/19 8426 -213.165.160.0/19 12709 -213.165.192.0/19 8299 -213.165.224.0/21 31667 -213.165.232.0/23 31667 -213.165.238.0/23 31667 -213.165.242.0/23 31667 -213.165.245.0/24 31667 -213.165.246.0/24 31667 -213.165.250.0/23 31667 -213.165.255.0/24 31667 -213.166.0.0/19 31084 -213.166.32.0/19 6661 -213.166.64.0/22 49505 -213.166.68.0/22 204601 -213.166.72.0/22 49505 -213.166.76.0/22 174 -213.166.80.0/24 34665 -213.166.81.0/24 58033 -213.166.82.0/23 49392 -213.166.84.0/22 207083 -213.166.88.0/22 12722 -213.166.92.0/24 12722 -213.166.93.0/24 62300 -213.166.94.0/24 395092 -213.166.95.0/24 12722 -213.166.96.0/22 15667 -213.166.100.0/24 7270 -213.166.101.0/24 15667 -213.166.102.0/23 15667 -213.166.104.0/21 15667 -213.166.112.0/20 15667 -213.166.128.0/19 35753 -213.166.160.0/22 31283 -213.166.164.0/22 12552 -213.166.168.0/23 31283 -213.166.170.0/24 207031 -213.166.171.0/24 31283 -213.166.172.0/22 31283 -213.166.176.0/23 12552 -213.166.178.0/23 31283 -213.166.180.0/22 31283 -213.166.184.0/23 59720 -213.166.186.0/23 31283 -213.166.188.0/22 31283 -213.166.192.0/19 12727 -213.166.224.0/19 29008 -213.167.0.0/19 28909 -213.167.32.0/19 8905 -213.167.64.0/21 13173 -213.167.72.0/23 13173 -213.167.74.0/24 13173 -213.167.75.0/24 60492 -213.167.76.0/22 13173 -213.167.80.0/24 13173 -213.167.81.0/24 60492 -213.167.82.0/23 13173 -213.167.84.0/22 13173 -213.167.88.0/21 13173 -213.167.96.0/19 29695 -213.167.128.0/19 6677 -213.167.160.0/19 20805 -213.167.192.0/19 12389 -213.167.224.0/24 207143 -213.167.228.0/23 29169 -213.167.230.0/24 209453 -213.167.231.0/24 29169 -213.167.232.0/21 39120 -213.167.240.0/20 29169 -213.168.0.0/19 3249 -213.168.32.0/19 41976 -213.168.64.0/18 8422 -213.168.128.0/20 13079 -213.168.144.0/21 13079 -213.168.152.0/22 13079 -213.168.156.0/23 13079 -213.168.158.0/24 5 -213.168.159.0/24 13079 -213.168.160.0/20 9080 -213.168.176.0/20 15614 -213.168.192.0/19 9145 -213.168.224.0/20 15830 -213.168.240.0/21 15830 -213.168.248.0/22 63949 -213.168.252.0/22 15830 -213.169.0.0/19 790 -213.169.32.0/24 29580 -213.169.33.0/24 8717 -213.169.34.0/23 8717 -213.169.36.0/24 206511 -213.169.37.0/24 205526 -213.169.38.0/23 8717 -213.169.40.0/23 8717 -213.169.42.0/24 29580 -213.169.43.0/24 8717 -213.169.44.0/22 8717 -213.169.48.0/21 8717 -213.169.56.0/23 8717 -213.169.58.0/24 200422 -213.169.59.0/24 8717 -213.169.60.0/23 8717 -213.169.62.0/23 29580 -213.169.64.0/19 13121 -213.169.96.0/19 12684 -213.169.128.0/20 5504 -213.169.144.0/22 5504 -213.169.148.0/24 197648 -213.169.149.0/24 35432 -213.169.150.0/24 5504 -213.169.151.0/24 20521 -213.169.154.0/24 35247 -213.169.156.0/23 209716 -213.169.158.0/23 5504 -213.169.160.0/19 21502 -213.169.192.0/18 4589 -213.170.0.0/19 50957 -213.170.32.0/21 8903 -213.170.40.0/24 8903 -213.170.41.0/24 16203 -213.170.42.0/23 8903 -213.170.44.0/23 8903 -213.170.46.0/24 16203 -213.170.47.0/24 8903 -213.170.48.0/20 8903 -213.170.64.0/18 12418 -213.170.128.0/19 13005 -213.170.160.0/19 9145 -213.170.192.0/22 34665 -213.170.196.0/24 32671 -213.170.204.0/22 209942 -213.170.208.0/22 60453 -213.170.212.0/24 1696 -213.170.214.0/24 1696 -213.170.216.0/22 8767 -213.170.220.0/22 9009 -213.170.224.0/19 29119 -213.171.0.0/19 47594 -213.171.32.0/19 8732 -213.171.64.0/23 21155 -213.171.66.0/23 15703 -213.171.68.0/23 21155 -213.171.70.0/23 203966 -213.171.72.0/23 15703 -213.171.96.0/19 28675 -213.171.128.0/19 34762 -213.171.160.0/19 12637 -213.171.192.0/19 8560 -213.171.224.0/19 16206 -213.172.0.0/23 20632 -213.172.2.0/24 20632 -213.172.3.0/24 24913 -213.172.4.0/22 20632 -213.172.8.0/21 20632 -213.172.16.0/20 20632 -213.172.32.0/19 16206 -213.172.64.0/19 13099 -213.172.96.0/19 25394 -213.172.128.0/19 37439 -213.172.160.0/19 20804 -213.172.192.0/19 2116 -213.172.224.0/19 3212 -213.173.0.0/19 3320 -213.173.32.0/22 200019 -213.173.40.0/22 29655 -213.173.44.0/23 60016 -213.173.46.0/24 60016 -213.173.47.0/24 60384 -213.173.48.0/22 197036 -213.173.52.0/22 29256 -213.173.56.0/22 41960 -213.173.60.0/22 24768 -213.173.64.0/19 13292 -213.173.96.0/19 202779 -213.173.128.0/19 20569 -213.173.160.0/24 8220 -213.173.161.0/24 206484 -213.173.162.0/23 8220 -213.173.164.0/22 8220 -213.173.168.0/23 8220 -213.173.170.0/24 8220 -213.173.171.0/24 15613 -213.173.172.0/22 8220 -213.173.176.0/20 8220 -213.173.192.0/19 1257 -213.173.224.0/19 9167 -213.174.0.0/23 3255 -213.174.2.0/24 3255 -213.174.3.0/24 39066 -213.174.4.0/23 3255 -213.174.6.0/24 3255 -213.174.8.0/21 3255 -213.174.16.0/22 31556 -213.174.20.0/23 3255 -213.174.22.0/24 3255 -213.174.23.0/24 25282 -213.174.28.0/24 197610 -213.174.29.0/24 15461 -213.174.31.0/24 3255 -213.174.32.0/19 61157 -213.174.64.0/20 44398 -213.174.80.0/23 3292 -213.174.82.0/23 44398 -213.174.84.0/24 44398 -213.174.85.0/24 3292 -213.174.86.0/23 3246 -213.174.88.0/21 3246 -213.174.96.0/20 29283 -213.174.112.0/21 29283 -213.174.120.0/22 29283 -213.174.124.0/23 29283 -213.174.126.0/24 29283 -213.174.127.0/24 3356 -213.174.128.0/19 39572 -213.174.160.0/19 21309 -213.174.192.0/19 3561 -213.174.224.0/19 28760 -213.175.32.0/19 29208 -213.175.64.0/21 5518 -213.175.72.0/24 48680 -213.175.73.0/24 5518 -213.175.74.0/23 5518 -213.175.76.0/24 5518 -213.175.77.0/24 51610 -213.175.78.0/24 42663 -213.175.79.0/24 24921 -213.175.80.0/24 15133 -213.175.81.0/24 5518 -213.175.82.0/23 5518 -213.175.84.0/23 24620 -213.175.86.0/23 5518 -213.175.88.0/21 24620 -213.175.96.0/22 5518 -213.175.100.0/23 5518 -213.175.102.0/23 48680 -213.175.104.0/23 44658 -213.175.106.0/24 44658 -213.175.107.0/24 5518 -213.175.108.0/22 5518 -213.175.112.0/21 5518 -213.175.120.0/22 5518 -213.175.124.0/22 12443 -213.175.128.0/22 44972 -213.175.132.0/23 44972 -213.175.134.0/24 48137 -213.175.135.0/24 44972 -213.175.136.0/21 39151 -213.175.144.0/21 44972 -213.175.152.0/24 39151 -213.175.153.0/24 44972 -213.175.154.0/23 44972 -213.175.156.0/24 39151 -213.175.157.0/24 44972 -213.175.158.0/24 39151 -213.175.159.0/24 44972 -213.175.160.0/19 9051 -213.175.192.0/21 29550 -213.175.200.0/23 20860 -213.175.202.0/24 29550 -213.175.203.0/24 20860 -213.175.204.0/24 29550 -213.175.205.0/24 20860 -213.175.206.0/23 29550 -213.175.208.0/24 35425 -213.175.209.0/24 29550 -213.175.210.0/24 29550 -213.175.211.0/24 20860 -213.175.212.0/23 29550 -213.175.214.0/24 29550 -213.175.215.0/24 31727 -213.175.216.0/24 35425 -213.175.217.0/24 31727 -213.175.218.0/23 29550 -213.175.220.0/22 29550 -213.175.224.0/19 28780 -213.176.1.0/24 15611 -213.176.4.0/23 15611 -213.176.20.0/22 18013 -213.176.32.0/19 22769 -213.176.64.0/21 18013 -213.176.72.0/22 18013 -213.176.84.0/22 41108 -213.176.88.0/21 18013 -213.176.96.0/20 18013 -213.176.112.0/21 18013 -213.176.122.0/23 15611 -213.176.124.0/23 15611 -213.176.128.0/19 12969 -213.176.160.0/19 21193 -213.176.192.0/19 43763 -213.176.224.0/22 13055 -213.176.229.0/24 50011 -213.176.230.0/23 50011 -213.176.232.0/22 43038 -213.176.236.0/22 50071 -213.176.240.0/21 13055 -213.176.248.0/21 48000 -213.177.0.0/19 31313 -213.177.32.0/21 11303 -213.177.64.0/19 13226 -213.177.96.0/19 12389 -213.177.128.0/19 5432 -213.177.160.0/21 21175 -213.177.168.0/24 327931 -213.177.169.0/24 21175 -213.177.170.0/23 21175 -213.177.172.0/22 21175 -213.177.192.0/19 15704 -213.177.224.0/19 8190 -213.178.0.0/20 12898 -213.178.16.0/20 29413 -213.178.32.0/19 8439 -213.178.64.0/19 13101 -213.178.96.0/19 5588 -213.178.128.0/22 209056 -213.178.132.0/22 34549 -213.178.136.0/22 48728 -213.178.153.0/24 64429 -213.178.154.0/24 49392 -213.178.155.0/24 9002 -213.178.156.0/22 209065 -213.178.160.0/19 12374 -213.178.192.0/20 13097 -213.178.215.0/24 39120 -213.178.221.0/24 47646 -213.178.222.0/23 43364 -213.178.224.0/19 29256 -213.179.0.0/19 12935 -213.179.32.0/19 16186 -213.179.64.0/22 13251 -213.179.68.0/23 13251 -213.179.70.0/24 13251 -213.179.71.0/24 60175 -213.179.72.0/24 13251 -213.179.80.0/20 44398 -213.179.96.0/19 12479 -213.179.128.0/19 8767 -213.179.160.0/19 16214 -213.179.192.0/19 49544 -213.179.224.0/19 6849 -213.180.0.0/19 3249 -213.180.32.0/19 16246 -213.180.64.0/19 197308 -213.180.96.0/19 20910 -213.180.128.0/20 12990 -213.180.144.0/21 12990 -213.180.152.0/23 12990 -213.180.154.0/24 12990 -213.180.156.0/22 30876 -213.180.160.0/19 3303 -213.180.192.0/19 13238 -213.180.224.0/20 15829 -213.180.240.0/21 15829 -213.180.248.0/22 15829 -213.180.252.0/22 29286 -213.181.0.0/19 8241 -213.181.32.0/19 5432 -213.181.64.0/24 3339 -213.181.66.0/23 3339 -213.181.68.0/23 3339 -213.181.70.0/23 41343 -213.181.72.0/23 49000 -213.181.74.0/23 44293 -213.181.76.0/24 44293 -213.181.77.0/24 49000 -213.181.78.0/23 42947 -213.181.80.0/23 35394 -213.181.82.0/23 3339 -213.181.84.0/22 35394 -213.181.88.0/24 44293 -213.181.89.0/24 49000 -213.181.90.0/23 49000 -213.181.92.0/23 49000 -213.181.94.0/24 49000 -213.181.95.0/24 3339 -213.181.96.0/20 44735 -213.181.112.0/21 44735 -213.181.120.0/22 44735 -213.181.124.0/23 44735 -213.181.126.0/23 200868 -213.181.128.0/19 43653 -213.181.160.0/19 34397 -213.181.192.0/22 62292 -213.181.196.0/23 47169 -213.181.198.0/24 47169 -213.181.199.0/24 39679 -213.181.200.0/24 29278 -213.181.201.0/24 39679 -213.181.202.0/23 204026 -213.181.204.0/23 29278 -213.181.207.0/24 29278 -213.181.208.0/24 62292 -213.181.209.0/24 39679 -213.181.210.0/23 29278 -213.181.212.0/24 47169 -213.181.213.0/24 47159 -213.181.214.0/23 47159 -213.181.218.0/24 47169 -213.181.219.0/24 29278 -213.181.220.0/24 28924 -213.181.221.0/24 42232 -213.181.222.0/24 42964 -213.181.223.0/24 39679 -213.181.224.0/21 8524 -213.181.232.0/22 8524 -213.181.237.0/24 8524 -213.181.238.0/23 8524 -213.181.240.0/23 8524 -213.181.243.0/24 8524 -213.181.244.0/23 8524 -213.182.0.0/19 12931 -213.182.32.0/19 8304 -213.182.64.0/19 21056 -213.182.96.0/19 35776 -213.182.128.0/19 8881 -213.182.160.0/21 20632 -213.182.168.0/23 60623 -213.182.170.0/23 20632 -213.182.172.0/22 20632 -213.182.176.0/20 20632 -213.182.192.0/19 9009 -213.182.224.0/19 28919 -213.183.0.0/19 8222 -213.183.32.0/23 56630 -213.183.34.0/23 49287 -213.183.36.0/22 56630 -213.183.40.0/21 56630 -213.183.48.0/20 56630 -213.183.64.0/19 15945 -213.183.96.0/20 25446 -213.183.112.0/22 25446 -213.183.116.0/23 25446 -213.183.118.0/24 25446 -213.183.119.0/24 49980 -213.183.120.0/22 25446 -213.183.124.0/22 31314 -213.183.128.0/19 15589 -213.183.160.0/19 9145 -213.183.192.0/20 15368 -213.183.208.0/21 15368 -213.183.224.0/24 197460 -213.183.225.0/24 20985 -213.183.226.0/23 197460 -213.183.228.0/22 197460 -213.183.232.0/21 197460 -213.183.240.0/23 197460 -213.183.242.0/24 20985 -213.183.243.0/24 197460 -213.183.244.0/22 197460 -213.183.248.0/22 197460 -213.183.252.0/22 20985 -213.184.0.0/20 15798 -213.184.16.0/21 15798 -213.184.24.0/22 15798 -213.184.28.0/22 21064 -213.184.32.0/19 8240 -213.184.68.0/24 59407 -213.184.72.0/22 209858 -213.184.76.0/22 209865 -213.184.80.0/22 9009 -213.184.84.0/23 59795 -213.184.86.0/24 59795 -213.184.87.0/24 50673 -213.184.88.0/22 209848 -213.184.92.0/22 9009 -213.184.96.0/19 15435 -213.184.128.0/19 9032 -213.184.160.0/19 25233 -213.184.192.0/19 15765 -213.184.224.0/22 42772 -213.184.228.0/23 60744 -213.184.230.0/24 21236 -213.184.231.0/24 33973 -213.184.232.0/24 21236 -213.184.233.0/24 42772 -213.184.234.0/24 50593 -213.184.235.0/24 50334 -213.184.236.0/24 56740 -213.184.238.0/24 31143 -213.184.239.0/24 60769 -213.184.241.0/24 21062 -213.184.242.0/24 60769 -213.184.243.0/24 33973 -213.184.244.0/23 42772 -213.184.246.0/24 56740 -213.184.247.0/24 51276 -213.184.248.0/22 42772 -213.184.252.0/24 20852 -213.184.253.0/24 42772 -213.184.254.0/24 42772 -213.184.255.0/24 20852 -213.185.0.0/22 15782 -213.185.4.0/24 45011 -213.185.5.0/24 15782 -213.185.6.0/23 45011 -213.185.8.0/23 45011 -213.185.10.0/24 45011 -213.185.11.0/24 15782 -213.185.12.0/22 45011 -213.185.16.0/23 45011 -213.185.18.0/23 15782 -213.185.20.0/23 45011 -213.185.22.0/24 45011 -213.185.23.0/24 15782 -213.185.24.0/24 45011 -213.185.25.0/24 15782 -213.185.26.0/24 45011 -213.185.27.0/24 15782 -213.185.28.0/22 15782 -213.185.32.0/19 30798 -213.185.65.0/24 9063 -213.185.66.0/23 9063 -213.185.68.0/22 9063 -213.185.72.0/22 9063 -213.185.76.0/23 9063 -213.185.78.0/23 29686 -213.185.96.0/19 22351 -213.185.128.0/19 13012 -213.185.160.0/19 8220 -213.185.192.0/19 1273 -213.185.224.0/19 51815 -213.186.0.0/20 44306 -213.186.16.0/22 44306 -213.186.22.0/23 44306 -213.186.25.0/24 44306 -213.186.26.0/23 44306 -213.186.32.0/19 16276 -213.186.64.0/19 12741 -213.186.96.0/20 6877 -213.186.112.0/20 6849 -213.186.128.0/22 8386 -213.186.132.0/23 8386 -213.186.135.0/24 8386 -213.186.136.0/21 8386 -213.186.144.0/20 8386 -213.186.160.0/19 8376 -213.186.192.0/19 6703 -213.186.224.0/19 16086 -213.187.1.0/24 50316 -213.187.2.0/23 50316 -213.187.4.0/22 50316 -213.187.8.0/23 50316 -213.187.10.0/23 39479 -213.187.12.0/22 50316 -213.187.16.0/20 50316 -213.187.32.0/21 16162 -213.187.40.0/23 16162 -213.187.42.0/24 16162 -213.187.43.0/24 6759 -213.187.44.0/24 6759 -213.187.45.0/24 16162 -213.187.46.0/23 16162 -213.187.48.0/21 16162 -213.187.56.0/22 16162 -213.187.60.0/23 6759 -213.187.62.0/23 16162 -213.187.64.0/19 16097 -213.187.96.0/19 25592 -213.187.128.0/21 24753 -213.187.136.0/24 38056 -213.187.137.0/24 24753 -213.187.138.0/23 24753 -213.187.140.0/22 24753 -213.187.144.0/20 24753 -213.187.160.0/19 15659 -213.187.192.0/19 3246 -213.187.224.0/20 43937 -213.187.240.0/21 35470 -213.187.248.0/21 43937 -213.188.0.0/19 3292 -213.188.32.0/19 16242 -213.188.96.0/19 12897 -213.188.152.0/22 25234 -213.188.160.0/19 21351 -213.188.192.0/19 29438 -213.188.224.0/20 6772 -213.188.240.0/21 6772 -213.188.248.0/22 6772 -213.188.252.0/24 9100 -213.188.253.0/24 6772 -213.188.254.0/23 6772 -213.189.0.0/23 25525 -213.189.2.0/23 48635 -213.189.4.0/22 25525 -213.189.8.0/24 25525 -213.189.9.0/24 48635 -213.189.10.0/23 25525 -213.189.12.0/22 25525 -213.189.16.0/24 25525 -213.189.17.0/24 48635 -213.189.18.0/23 25525 -213.189.20.0/23 25525 -213.189.22.0/24 25525 -213.189.23.0/24 48635 -213.189.24.0/23 25525 -213.189.26.0/24 25525 -213.189.27.0/24 48635 -213.189.28.0/24 25525 -213.189.29.0/24 48635 -213.189.30.0/23 25525 -213.189.32.0/22 15694 -213.189.36.0/23 15694 -213.189.38.0/24 15694 -213.189.39.0/24 199453 -213.189.40.0/24 201592 -213.189.41.0/24 15694 -213.189.42.0/24 197142 -213.189.43.0/24 15694 -213.189.44.0/23 15694 -213.189.46.0/24 25506 -213.189.47.0/24 15694 -213.189.48.0/24 197431 -213.189.49.0/24 15694 -213.189.50.0/23 15694 -213.189.52.0/22 57367 -213.189.56.0/24 57367 -213.189.57.0/24 15694 -213.189.58.0/24 57367 -213.189.59.0/24 15694 -213.189.60.0/22 15694 -213.189.64.0/19 9155 -213.189.128.0/19 15623 -213.189.160.0/19 12392 -213.189.192.0/24 6903 -213.189.196.0/23 6903 -213.189.198.0/24 6903 -213.189.200.0/24 6903 -213.189.206.0/24 12389 -213.189.207.0/24 6903 -213.189.208.0/23 6903 -213.189.210.0/24 12389 -213.189.211.0/24 6903 -213.189.212.0/23 6903 -213.189.214.0/24 6903 -213.189.215.0/24 12389 -213.189.216.0/21 44128 -213.189.224.0/19 28881 -213.190.0.0/22 209848 -213.190.4.0/22 47583 -213.190.8.0/22 209923 -213.190.12.0/22 50758 -213.190.16.0/22 2856 -213.190.20.0/24 209956 -213.190.21.0/24 136933 -213.190.22.0/24 49544 -213.190.23.0/24 20473 -213.190.24.0/24 208225 -213.190.25.0/24 203964 -213.190.26.0/23 203964 -213.190.28.0/22 31400 -213.190.32.0/23 8764 -213.190.34.0/24 205686 -213.190.35.0/24 8764 -213.190.36.0/22 8764 -213.190.40.0/21 8764 -213.190.48.0/20 8764 -213.190.64.0/19 20900 -213.190.96.0/19 25509 -213.190.128.0/19 5466 -213.190.160.0/19 44981 -213.190.192.0/19 15457 -213.190.224.0/19 28900 -213.191.0.0/19 3253 -213.191.32.0/19 12512 -213.191.64.0/19 6805 -213.191.96.0/19 29208 -213.191.128.0/19 13046 -213.191.160.0/19 13124 -213.191.192.0/19 8745 -213.191.224.0/21 5466 -213.191.232.0/21 13280 -213.191.240.0/20 13280 -213.192.0.0/18 6830 -213.192.64.0/19 12831 -213.192.96.0/21 12831 -213.192.104.0/22 12831 -213.192.108.0/23 197155 -213.192.110.0/23 12831 -213.192.112.0/20 12831 -213.192.128.0/19 790 -213.192.160.0/20 790 -213.192.176.0/21 790 -213.192.184.0/21 6667 -213.192.192.0/23 8903 -213.192.194.0/24 8903 -213.192.195.0/24 59739 -213.192.196.0/22 8903 -213.192.200.0/23 8903 -213.192.202.0/24 44662 -213.192.203.0/24 8903 -213.192.204.0/22 8903 -213.192.208.0/22 8903 -213.192.212.0/23 8903 -213.192.214.0/24 208027 -213.192.215.0/24 8903 -213.192.216.0/21 8903 -213.192.224.0/21 8903 -213.192.232.0/24 25261 -213.192.233.0/24 49635 -213.192.234.0/23 8903 -213.192.236.0/23 49538 -213.192.238.0/23 8903 -213.192.240.0/23 8903 -213.192.242.0/24 8903 -213.192.243.0/24 202097 -213.192.244.0/22 8903 -213.192.248.0/24 8903 -213.192.249.0/24 12541 -213.192.250.0/23 8903 -213.192.252.0/22 8903 -213.193.0.0/19 29124 -213.193.32.0/21 28698 -213.193.40.0/21 16637 -213.193.48.0/20 22351 -213.193.64.0/18 6830 -213.193.128.0/18 4589 -213.193.192.0/21 15703 -213.193.200.0/21 49405 -213.193.208.0/24 15703 -213.193.209.0/24 48729 -213.193.210.0/23 15703 -213.193.212.0/22 15703 -213.193.216.0/21 15703 -213.193.224.0/21 8201 -213.193.232.0/24 48729 -213.193.233.0/24 15703 -213.193.234.0/23 15703 -213.193.236.0/22 15703 -213.193.240.0/21 15703 -213.193.250.0/23 15703 -213.193.252.0/22 15703 -213.194.0.0/19 5400 -213.194.32.0/22 5400 -213.194.36.0/23 5400 -213.194.38.0/24 43159 -213.194.39.0/24 5400 -213.194.40.0/21 5400 -213.194.48.0/20 5400 -213.194.64.0/18 15924 -213.194.128.0/18 15704 -213.194.192.0/20 207198 -213.194.208.0/22 207198 -213.194.212.0/22 207187 -213.194.216.0/21 207187 -213.194.224.0/19 207187 -213.195.0.0/19 24631 -213.195.32.0/20 57218 -213.195.48.0/22 57218 -213.195.52.0/22 58224 -213.195.56.0/21 58224 -213.195.64.0/19 15915 -213.195.96.0/19 15704 -213.195.128.0/18 12741 -213.195.192.0/18 15935 -213.196.2.0/23 7979 -213.196.4.0/23 7979 -213.196.31.0/24 7979 -213.196.32.0/19 7979 -213.196.112.0/20 35567 -213.196.128.0/18 21040 -213.196.192.0/18 8422 -213.197.0.0/18 12871 -213.197.64.0/21 12301 -213.197.72.0/21 20845 -213.197.80.0/20 20845 -213.197.128.0/18 15440 -213.197.192.0/18 15879 -213.198.0.0/20 2914 -213.198.16.0/21 2914 -213.198.24.0/22 2914 -213.198.28.0/24 2914 -213.198.29.0/24 201867 -213.198.30.0/23 2914 -213.198.32.0/20 2914 -213.198.48.0/23 2914 -213.198.50.0/24 2723 -213.198.51.0/24 2914 -213.198.52.0/24 2914 -213.198.53.0/24 26114 -213.198.54.0/23 2914 -213.198.56.0/21 2914 -213.198.64.0/23 2914 -213.198.66.0/24 2914 -213.198.67.0/24 40676 -213.198.68.0/22 2914 -213.198.72.0/21 2914 -213.198.80.0/20 2914 -213.198.96.0/19 2914 -213.198.128.0/18 15589 -213.198.192.0/18 8771 -213.199.0.0/19 12797 -213.199.32.0/19 8897 -213.199.64.0/18 25176 -213.199.128.0/18 8075 -213.199.192.0/20 20960 -213.199.208.0/24 204019 -213.199.209.0/24 20960 -213.199.210.0/23 20960 -213.199.212.0/24 20960 -213.199.213.0/24 25070 -213.199.214.0/23 20960 -213.199.216.0/21 20960 -213.199.224.0/20 20960 -213.199.240.0/22 20960 -213.199.244.0/23 20960 -213.199.246.0/23 60713 -213.199.248.0/23 20960 -213.199.250.0/24 20960 -213.199.251.0/24 201044 -213.199.252.0/23 20960 -213.199.254.0/23 199842 -213.200.0.0/19 16010 -213.200.32.0/19 6703 -213.200.64.0/18 3257 -213.200.128.0/23 39651 -213.200.130.0/24 39651 -213.200.131.0/24 3301 -213.200.132.0/24 3301 -213.200.133.0/24 39651 -213.200.134.0/23 39651 -213.200.136.0/23 39651 -213.200.138.0/23 3301 -213.200.140.0/22 39651 -213.200.144.0/21 3301 -213.200.152.0/21 39651 -213.200.160.0/21 39651 -213.200.168.0/22 39651 -213.200.172.0/24 39651 -213.200.173.0/24 3301 -213.200.174.0/23 3301 -213.200.176.0/22 39651 -213.200.180.0/23 39651 -213.200.182.0/23 3301 -213.200.184.0/21 39651 -213.200.192.0/18 3303 -213.201.0.0/17 6739 -213.201.128.0/17 4589 -213.202.0.0/21 8529 -213.202.32.0/19 21466 -213.202.64.0/21 13046 -213.202.72.0/22 13046 -213.202.76.0/23 13046 -213.202.78.0/24 25045 -213.202.79.0/24 13046 -213.202.80.0/20 13046 -213.202.96.0/20 13046 -213.202.112.0/22 13046 -213.202.116.0/23 13046 -213.202.118.0/24 34463 -213.202.119.0/24 13046 -213.202.120.0/21 13046 -213.202.128.0/18 2110 -213.202.192.0/19 24961 -213.202.224.0/22 24961 -213.202.228.0/23 24961 -213.202.230.0/24 24961 -213.202.231.0/24 198996 -213.202.232.0/21 24961 -213.202.240.0/20 24961 -213.203.0.0/18 702 -213.203.64.0/18 12626 -213.203.128.0/18 5396 -213.203.192.0/19 61157 -213.203.224.0/22 61157 -213.203.228.0/22 25074 -213.203.232.0/21 25074 -213.203.240.0/21 25074 -213.203.248.0/22 61157 -213.203.252.0/23 61157 -213.203.254.0/23 25074 -213.204.0.0/19 9137 -213.204.32.0/19 3238 -213.204.64.0/18 39010 -213.204.128.0/18 2119 -213.205.0.0/18 8612 -213.205.64.0/19 2860 -213.205.96.0/19 43646 -213.205.128.0/18 5413 -213.205.192.0/18 12576 -213.206.0.0/19 5587 -213.206.32.0/19 29385 -213.206.64.0/18 15879 -213.206.128.0/21 1239 -213.206.136.0/22 1239 -213.206.140.0/22 204819 -213.206.144.0/20 1239 -213.206.160.0/19 15945 -213.206.192.0/18 9150 -213.207.0.0/24 24785 -213.207.3.0/24 24785 -213.207.4.0/24 24785 -213.207.8.0/23 24785 -213.207.11.0/24 24785 -213.207.12.0/24 24785 -213.207.15.0/24 24785 -213.207.16.0/23 24785 -213.207.18.0/24 24785 -213.207.32.0/19 39611 -213.207.64.0/18 9150 -213.207.128.0/18 15805 -213.207.192.0/20 206065 -213.207.208.0/20 25124 -213.207.224.0/19 25124 -213.208.0.0/19 702 -213.208.32.0/21 39151 -213.208.52.0/22 9163 -213.208.56.0/21 9163 -213.208.64.0/18 9105 -213.208.128.0/19 1764 -213.208.160.0/21 8641 -213.208.168.0/23 8641 -213.208.170.0/24 8641 -213.208.171.0/24 201490 -213.208.172.0/22 8641 -213.208.176.0/21 8641 -213.208.184.0/24 8641 -213.208.185.0/24 24739 -213.208.186.0/23 8641 -213.208.188.0/22 8641 -213.208.192.0/18 8220 -213.209.0.0/18 8660 -213.209.64.0/18 15943 -213.209.128.0/24 12886 -213.209.129.0/24 42821 -213.209.130.0/24 42821 -213.209.131.0/24 9009 -213.209.135.0/24 9009 -213.209.137.0/24 9009 -213.209.138.0/24 42821 -213.209.139.0/24 9009 -213.209.140.0/23 9009 -213.209.142.0/24 12886 -213.209.143.0/24 42821 -213.209.144.0/21 197706 -213.209.152.0/22 9009 -213.209.160.0/19 29286 -213.209.192.0/18 21309 -213.210.0.0/18 8851 -213.210.64.0/20 15759 -213.210.80.0/23 15759 -213.210.82.0/23 12389 -213.210.84.0/22 15759 -213.210.88.0/21 15759 -213.210.96.0/20 15759 -213.210.112.0/24 12389 -213.210.113.0/24 15759 -213.210.114.0/23 15759 -213.210.116.0/22 15759 -213.210.120.0/21 15759 -213.210.128.0/18 5588 -213.210.192.0/18 34397 -213.211.0.0/19 20978 -213.211.32.0/19 12570 -213.211.64.0/18 9198 -213.211.128.0/19 9031 -213.211.160.0/20 9031 -213.211.176.0/21 9031 -213.211.184.0/22 9031 -213.211.188.0/23 9031 -213.211.190.0/23 60853 -213.211.192.0/18 43341 -213.212.0.0/19 12552 -213.212.32.0/21 12552 -213.212.40.0/23 12552 -213.212.42.0/24 12552 -213.212.43.0/24 65552 -213.212.44.0/22 12552 -213.212.48.0/20 12552 -213.212.64.0/18 15533 -213.212.128.0/18 12779 -213.212.192.0/20 24835 -213.212.208.0/21 31619 -213.212.216.0/24 36935 -213.212.217.0/24 24835 -213.212.218.0/23 24835 -213.212.220.0/22 24835 -213.212.224.0/22 24835 -213.212.228.0/24 24835 -213.212.229.0/24 36935 -213.212.230.0/23 24835 -213.212.232.0/21 24835 -213.212.240.0/20 24835 -213.213.0.0/17 8968 -213.213.128.0/19 12969 -213.213.160.0/19 15600 -213.213.192.0/18 12392 -213.214.0.0/20 8823 -213.214.16.0/21 8823 -213.214.24.0/21 12610 -213.214.32.0/20 6848 -213.214.48.0/20 44216 -213.214.64.0/19 43205 -213.214.96.0/20 28836 -213.214.112.0/22 34762 -213.214.116.0/23 34762 -213.214.118.0/23 28836 -213.214.120.0/21 34762 -213.214.128.0/18 1342 -213.214.192.0/18 2119 -213.215.0.0/20 13193 -213.215.16.0/21 13193 -213.215.24.0/22 13193 -213.215.28.0/23 49463 -213.215.30.0/23 13193 -213.215.32.0/22 13193 -213.215.36.0/23 13193 -213.215.38.0/24 12463 -213.215.39.0/24 13193 -213.215.40.0/21 13193 -213.215.48.0/20 13193 -213.215.64.0/24 5578 -213.215.65.0/24 16142 -213.215.66.0/23 5578 -213.215.68.0/24 5578 -213.215.69.0/24 34521 -213.215.70.0/23 5578 -213.215.72.0/21 5578 -213.215.80.0/21 5578 -213.215.88.0/22 5578 -213.215.92.0/24 206055 -213.215.93.0/24 5578 -213.215.94.0/23 5578 -213.215.96.0/21 5578 -213.215.104.0/24 5578 -213.215.105.0/24 44234 -213.215.106.0/23 5578 -213.215.108.0/22 5578 -213.215.112.0/20 5578 -213.215.128.0/17 8220 -213.216.0.0/19 20792 -213.216.32.0/19 30764 -213.216.64.0/18 12741 -213.216.128.0/18 1273 -213.216.192.0/18 16086 -213.217.0.0/23 50340 -213.217.2.0/23 48399 -213.217.4.0/22 204760 -213.217.8.0/22 209694 -213.217.12.0/22 48696 -213.217.16.0/22 35805 -213.217.21.0/24 48695 -213.217.24.0/22 206189 -213.217.32.0/20 16322 -213.217.48.0/22 16322 -213.217.52.0/23 16322 -213.217.54.0/24 42440 -213.217.55.0/24 16322 -213.217.56.0/21 16322 -213.217.64.0/18 20676 -213.217.128.0/18 8968 -213.217.192.0/18 12709 -213.218.0.0/19 5409 -213.218.32.0/19 21451 -213.218.64.0/20 1136 -213.218.96.0/19 5588 -213.218.128.0/19 8304 -213.218.161.0/24 45012 -213.218.162.0/23 45012 -213.218.164.0/22 45012 -213.218.168.0/22 45012 -213.218.173.0/24 45012 -213.218.174.0/23 45012 -213.218.176.0/24 45012 -213.218.178.0/23 45012 -213.218.180.0/24 45012 -213.218.192.0/20 31655 -213.218.208.0/20 8851 -213.218.224.0/19 8851 -213.219.0.0/23 15830 -213.219.2.0/24 63949 -213.219.3.0/24 15830 -213.219.4.0/22 15830 -213.219.8.0/21 15830 -213.219.16.0/20 15830 -213.219.32.0/22 15830 -213.219.36.0/22 63949 -213.219.40.0/21 15830 -213.219.48.0/20 15830 -213.219.64.0/18 3249 -213.219.128.0/18 9031 -213.219.192.0/20 12695 -213.219.208.0/22 12695 -213.219.212.0/22 47764 -213.219.216.0/23 12695 -213.219.218.0/24 12695 -213.219.219.0/24 34123 -213.219.220.0/22 34123 -213.219.224.0/20 12695 -213.219.240.0/21 12695 -213.219.248.0/22 12695 -213.219.252.0/22 21769 -213.220.0.0/18 203178 -213.220.64.0/18 12969 -213.220.128.0/20 702 -213.220.144.0/20 15366 -213.220.160.0/19 20855 -213.220.192.0/18 6830 -213.221.0.0/21 3216 -213.221.8.0/22 3216 -213.221.12.0/24 16345 -213.221.13.0/24 3216 -213.221.14.0/23 3216 -213.221.16.0/21 3216 -213.221.24.0/22 3216 -213.221.28.0/24 21483 -213.221.29.0/24 3216 -213.221.30.0/23 3216 -213.221.32.0/24 3216 -213.221.33.0/24 13225 -213.221.34.0/24 13225 -213.221.35.0/24 21483 -213.221.36.0/22 3216 -213.221.40.0/24 3216 -213.221.41.0/24 202070 -213.221.42.0/23 3216 -213.221.44.0/22 3216 -213.221.48.0/20 3216 -213.221.64.0/18 8426 -213.221.128.0/19 15547 -213.221.160.0/19 21099 -213.221.192.0/18 15600 -213.222.0.0/19 3265 -213.222.32.0/24 8717 -213.222.33.0/24 40968 -213.222.34.0/23 8717 -213.222.36.0/24 29580 -213.222.37.0/24 8717 -213.222.38.0/23 8717 -213.222.40.0/24 8717 -213.222.41.0/24 29580 -213.222.42.0/23 29580 -213.222.44.0/22 8717 -213.222.48.0/24 8717 -213.222.49.0/24 29580 -213.222.50.0/24 198938 -213.222.51.0/24 8717 -213.222.52.0/22 8717 -213.222.56.0/21 8717 -213.222.64.0/18 49902 -213.222.128.0/18 6830 -213.222.192.0/22 28785 -213.222.196.0/23 28785 -213.222.198.0/23 34530 -213.222.200.0/21 28785 -213.222.208.0/21 28785 -213.222.216.0/23 28785 -213.222.220.0/22 34530 -213.222.224.0/22 48176 -213.222.228.0/22 15868 -213.222.232.0/21 48176 -213.222.240.0/20 48176 -213.223.0.0/16 8228 -213.224.0.0/16 6848 -213.225.0.0/18 12793 -213.225.64.0/18 3292 -213.225.160.0/19 8839 -213.225.192.0/20 29438 -213.225.208.0/21 29438 -213.225.216.0/22 29438 -213.225.220.0/23 29438 -213.225.222.0/23 30848 -213.225.224.0/19 29438 -213.226.0.0/20 12716 -213.226.16.0/24 12716 -213.226.17.0/24 8717 -213.226.18.0/24 12716 -213.226.19.0/24 8717 -213.226.20.0/22 12716 -213.226.24.0/21 12716 -213.226.32.0/22 12716 -213.226.36.0/24 8717 -213.226.37.0/24 12716 -213.226.38.0/23 12716 -213.226.40.0/24 8717 -213.226.41.0/24 12716 -213.226.42.0/23 12716 -213.226.44.0/22 12716 -213.226.48.0/23 12716 -213.226.50.0/24 12716 -213.226.51.0/24 8717 -213.226.52.0/22 12716 -213.226.56.0/23 8717 -213.226.58.0/24 12716 -213.226.59.0/24 8717 -213.226.60.0/23 12716 -213.226.62.0/24 12716 -213.226.63.0/24 8717 -213.226.64.0/22 51313 -213.226.68.0/22 56630 -213.226.72.0/22 41114 -213.226.76.0/22 49505 -213.226.80.0/22 39360 -213.226.84.0/22 203603 -213.226.88.0/22 209761 -213.226.92.0/22 49223 -213.226.96.0/22 209776 -213.226.101.0/24 35048 -213.226.102.0/23 49505 -213.226.104.0/22 207029 -213.226.112.0/24 9002 -213.226.113.0/24 34665 -213.226.114.0/24 9002 -213.226.115.0/24 49392 -213.226.116.0/22 42926 -213.226.120.0/22 20655 -213.226.124.0/22 9123 -213.226.128.0/18 13194 -213.226.192.0/20 28905 -213.226.208.0/20 35046 -213.226.224.0/19 28972 -213.227.0.0/18 6739 -213.227.64.0/23 15744 -213.227.66.0/23 196858 -213.227.68.0/22 199551 -213.227.72.0/22 35434 -213.227.76.0/22 15744 -213.227.80.0/20 8508 -213.227.96.0/19 8508 -213.227.128.0/19 60781 -213.227.160.0/24 42388 -213.227.161.0/24 42473 -213.227.162.0/23 42473 -213.227.164.0/22 42473 -213.227.168.0/21 42473 -213.227.176.0/21 42473 -213.227.184.0/22 42473 -213.227.188.0/23 42473 -213.227.190.0/24 47147 -213.227.191.0/24 42388 -213.227.192.0/20 6703 -213.227.208.0/21 6703 -213.227.216.0/22 6703 -213.227.221.0/24 6703 -213.227.222.0/23 6703 -213.227.224.0/22 6703 -213.227.228.0/23 6703 -213.227.231.0/24 6703 -213.227.232.0/21 6703 -213.227.240.0/20 6703 -213.228.0.0/18 12322 -213.228.64.0/19 12389 -213.228.96.0/22 12389 -213.228.100.0/24 16054 -213.228.101.0/24 12389 -213.228.102.0/24 12389 -213.228.103.0/24 16054 -213.228.104.0/21 12389 -213.228.112.0/21 12389 -213.228.120.0/21 8382 -213.228.128.0/18 13156 -213.228.192.0/22 3356 -213.228.196.0/23 3257 -213.228.198.0/24 3356 -213.228.199.0/24 3257 -213.228.200.0/21 3356 -213.228.208.0/23 3356 -213.228.210.0/24 3257 -213.228.211.0/24 3356 -213.228.212.0/22 3356 -213.228.216.0/21 3356 -213.228.224.0/21 3356 -213.228.232.0/24 3356 -213.228.233.0/24 3257 -213.228.234.0/23 3356 -213.228.236.0/22 3356 -213.228.240.0/20 3356 -213.229.0.0/18 6830 -213.229.64.0/18 29550 -213.229.128.0/18 8220 -213.229.192.0/19 5603 -213.229.224.0/20 5603 -213.229.240.0/21 5603 -213.229.248.0/21 29276 -213.230.0.0/23 28938 -213.230.2.0/24 28938 -213.230.3.0/24 25233 -213.230.4.0/24 25233 -213.230.5.0/24 28938 -213.230.6.0/24 28938 -213.230.7.0/24 25233 -213.230.8.0/23 25233 -213.230.10.0/24 28938 -213.230.11.0/24 25233 -213.230.12.0/24 25233 -213.230.13.0/24 28938 -213.230.14.0/24 25233 -213.230.15.0/24 28938 -213.230.16.0/24 28938 -213.230.17.0/24 58250 -213.230.18.0/23 28938 -213.230.20.0/22 28938 -213.230.24.0/21 28938 -213.230.32.0/20 21466 -213.230.48.0/22 59647 -213.230.52.0/22 15547 -213.230.56.0/21 15547 -213.230.64.0/18 8193 -213.230.128.0/19 16232 -213.230.176.0/21 15932 -213.230.184.0/22 15932 -213.230.188.0/23 15932 -213.230.191.0/24 15932 -213.230.192.0/21 25098 -213.230.200.0/23 25098 -213.230.202.0/24 25098 -213.230.203.0/24 9009 -213.230.204.0/22 25098 -213.230.208.0/20 25098 -213.230.224.0/19 25098 -213.231.0.0/18 34661 -213.231.64.0/18 6739 -213.231.128.0/18 38932 -213.231.192.0/22 15851 -213.231.196.0/24 15851 -213.231.197.0/24 210262 -213.231.198.0/23 15851 -213.231.200.0/21 15851 -213.231.208.0/20 15851 -213.231.224.0/19 15851 -213.232.0.0/18 12296 -213.232.64.0/22 209744 -213.232.68.0/22 197726 -213.232.72.0/22 209770 -213.232.84.0/24 9009 -213.232.85.0/24 136787 -213.232.87.0/24 49981 -213.232.88.0/22 39251 -213.232.92.0/23 49544 -213.232.96.0/23 51682 -213.232.100.0/22 30766 -213.232.104.0/24 395800 -213.232.105.0/24 137571 -213.232.107.0/24 35913 -213.232.108.0/22 42487 -213.232.112.0/22 8100 -213.232.116.0/22 34665 -213.232.120.0/22 202723 -213.232.124.0/23 209741 -213.232.126.0/23 209836 -213.232.130.0/24 8247 -213.232.132.0/24 8247 -213.232.134.0/23 8247 -213.232.136.0/21 8247 -213.232.144.0/23 8247 -213.232.148.0/24 8247 -213.232.192.0/24 50340 -213.232.194.0/23 210033 -213.232.196.0/23 39824 -213.232.199.0/24 49505 -213.232.200.0/24 21414 -213.232.201.0/24 39824 -213.232.202.0/23 21414 -213.232.204.0/22 21414 -213.232.208.0/22 57918 -213.232.218.0/23 39824 -213.232.220.0/22 39824 -213.232.224.0/24 39824 -213.232.226.0/24 21414 -213.232.228.0/23 50340 -213.232.230.0/23 39824 -213.232.232.0/21 34211 -213.232.242.0/23 39824 -213.232.246.0/23 39824 -213.232.252.0/22 50299 -213.233.0.0/18 5394 -213.233.64.0/20 12302 -213.233.80.0/21 12302 -213.233.88.0/23 12302 -213.233.90.0/24 12302 -213.233.92.0/22 12302 -213.233.96.0/19 12302 -213.233.128.0/19 15502 -213.233.160.0/19 12660 -213.233.192.0/18 12414 -213.234.0.0/20 39442 -213.234.16.0/22 39442 -213.234.20.0/23 39442 -213.234.22.0/24 39442 -213.234.23.0/24 39707 -213.234.24.0/21 39707 -213.234.64.0/18 43905 -213.234.128.0/18 12797 -213.234.192.0/23 8402 -213.234.194.0/24 3216 -213.234.195.0/24 8402 -213.234.196.0/22 8402 -213.234.200.0/21 8402 -213.234.208.0/24 8402 -213.234.209.0/24 3216 -213.234.210.0/23 8402 -213.234.212.0/22 8402 -213.234.216.0/24 8402 -213.234.217.0/24 3216 -213.234.218.0/23 8402 -213.234.220.0/23 8402 -213.234.222.0/24 16345 -213.234.223.0/24 8402 -213.234.224.0/21 8402 -213.234.232.0/24 42110 -213.234.233.0/24 8371 -213.234.234.0/23 8402 -213.234.236.0/23 8402 -213.234.238.0/24 8402 -213.234.239.0/24 3216 -213.234.240.0/23 8402 -213.234.242.0/24 3216 -213.234.243.0/24 8402 -213.234.244.0/22 8402 -213.234.248.0/23 8402 -213.234.250.0/24 8402 -213.234.251.0/24 16345 -213.234.252.0/22 8402 -213.235.0.0/21 8190 -213.235.8.0/23 8190 -213.235.10.0/24 8190 -213.235.11.0/24 4589 -213.235.12.0/22 8190 -213.235.16.0/20 8190 -213.235.32.0/19 8190 -213.235.64.0/18 6740 -213.235.128.0/18 25512 -213.235.192.0/18 8437 -213.236.0.0/20 12924 -213.236.16.0/22 12924 -213.236.20.0/22 62352 -213.236.24.0/21 62352 -213.236.32.0/19 41176 -213.236.64.0/18 5400 -213.236.128.0/17 3292 -213.237.0.0/17 9158 -213.237.128.0/18 702 -213.237.192.0/18 5587 -213.238.0.0/19 15547 -213.238.32.0/20 9211 -213.238.48.0/23 35258 -213.238.50.0/23 9211 -213.238.52.0/22 9211 -213.238.56.0/21 13135 -213.238.64.0/18 12741 -213.238.128.0/20 15464 -213.238.144.0/21 15464 -213.238.155.0/24 15464 -213.238.156.0/22 15464 -213.238.160.0/22 48292 -213.238.164.0/23 48292 -213.238.167.0/24 207459 -213.238.168.0/23 43391 -213.238.170.0/24 41683 -213.238.172.0/24 57844 -213.238.173.0/24 201364 -213.238.174.0/24 201364 -213.238.175.0/24 42910 -213.238.176.0/24 41683 -213.238.178.0/24 42926 -213.238.179.0/24 51559 -213.238.180.0/24 42926 -213.238.192.0/18 2119 -213.239.0.0/20 8918 -213.239.16.0/21 8918 -213.239.24.0/22 8918 -213.239.28.0/24 8918 -213.239.29.0/24 3356 -213.239.30.0/23 8918 -213.239.32.0/19 8918 -213.239.64.0/18 2116 -213.239.128.0/18 15703 -213.239.192.0/18 24940 -213.240.0.0/18 8771 -213.240.64.0/18 1901 -213.240.128.0/18 8820 -213.240.192.0/18 13124 -213.241.0.0/17 12741 -213.241.128.0/18 8859 -213.241.192.0/19 44733 -213.241.240.0/24 44733 -213.241.252.0/24 44733 -213.241.255.0/24 204914 -213.242.0.0/18 12389 -213.242.64.0/20 3356 -213.242.80.0/21 3356 -213.242.88.0/22 3356 -213.242.92.0/24 47793 -213.242.93.0/24 3356 -213.242.94.0/24 3356 -213.242.95.0/24 12956 -213.242.96.0/22 3356 -213.242.100.0/23 3356 -213.242.102.0/24 3356 -213.242.103.0/24 19622 -213.242.104.0/21 3356 -213.242.112.0/20 3356 -213.242.128.0/18 2119 -213.242.192.0/24 3253 -213.242.193.0/24 199120 -213.242.194.0/23 3253 -213.242.196.0/22 3253 -213.242.200.0/21 3253 -213.242.208.0/20 3253 -213.242.224.0/22 3253 -213.242.228.0/24 203407 -213.242.229.0/24 3253 -213.242.230.0/23 3253 -213.242.232.0/21 3253 -213.242.240.0/20 3253 -213.243.0.0/19 12978 -213.243.32.0/20 12978 -213.243.48.0/24 60027 -213.243.49.0/24 12978 -213.243.50.0/23 12978 -213.243.52.0/22 12978 -213.243.56.0/22 12978 -213.243.60.0/24 12978 -213.243.61.0/24 60027 -213.243.62.0/23 12978 -213.243.64.0/19 6854 -213.243.96.0/21 6854 -213.243.104.0/22 6854 -213.243.108.0/24 6854 -213.243.109.0/24 25159 -213.243.110.0/23 6854 -213.243.112.0/22 6854 -213.243.116.0/24 25159 -213.243.117.0/24 6854 -213.243.118.0/23 6854 -213.243.120.0/21 6854 -213.243.128.0/18 16086 -213.243.192.0/18 29050 -213.244.0.0/19 12670 -213.244.32.0/19 25317 -213.244.64.0/19 12975 -213.244.96.0/20 12975 -213.244.112.0/23 12975 -213.244.114.0/24 12975 -213.244.115.0/24 29310 -213.244.116.0/22 29310 -213.244.120.0/23 12975 -213.244.122.0/24 29310 -213.244.123.0/24 12975 -213.244.124.0/22 20719 -213.244.128.0/21 3356 -213.244.136.0/24 3356 -213.244.137.0/24 204933 -213.244.138.0/23 3356 -213.244.140.0/24 30103 -213.244.141.0/24 3356 -213.244.142.0/23 3356 -213.244.144.0/20 3356 -213.244.160.0/19 3356 -213.244.192.0/24 51862 -213.244.194.0/23 201365 -213.244.196.0/22 61215 -213.244.208.0/20 31042 -213.244.224.0/22 6700 -213.244.228.0/23 6700 -213.244.230.0/23 15982 -213.244.232.0/21 6700 -213.244.240.0/21 59702 -213.245.0.0/23 21502 -213.245.2.0/24 8839 -213.245.3.0/24 21502 -213.245.4.0/22 21502 -213.245.8.0/21 21502 -213.245.16.0/20 21502 -213.245.32.0/19 21502 -213.245.64.0/18 21502 -213.245.128.0/17 21502 -213.246.0.0/19 30873 -213.246.32.0/19 21409 -213.246.64.0/18 8622 -213.246.128.0/18 8586 -213.246.192.0/20 8220 -213.246.208.0/22 8220 -213.246.212.0/24 58122 -213.246.213.0/24 8220 -213.246.214.0/23 8220 -213.246.216.0/21 8220 -213.246.224.0/19 8220 -213.247.24.0/24 19832 -213.247.32.0/21 25525 -213.247.40.0/22 25525 -213.247.44.0/23 25525 -213.247.46.0/23 27257 -213.247.48.0/22 25525 -213.247.52.0/23 25525 -213.247.54.0/24 25525 -213.247.55.0/24 30870 -213.247.56.0/24 25525 -213.247.57.0/24 30870 -213.247.58.0/23 25525 -213.247.60.0/23 25525 -213.247.62.0/23 30870 -213.247.64.0/18 28685 -213.247.128.0/17 8470 -213.248.0.0/18 12695 -213.248.64.0/19 1299 -213.248.96.0/20 1299 -213.248.112.0/22 1299 -213.248.116.0/23 1299 -213.248.118.0/23 3491 -213.248.120.0/21 1299 -213.248.128.0/21 8386 -213.248.136.0/22 8386 -213.248.140.0/24 8386 -213.248.141.0/24 33830 -213.248.142.0/23 15924 -213.248.144.0/20 8386 -213.248.160.0/22 15924 -213.248.164.0/24 8386 -213.248.165.0/24 15924 -213.248.166.0/23 8386 -213.248.168.0/21 8386 -213.248.176.0/21 8386 -213.248.184.0/23 15924 -213.248.186.0/23 8386 -213.248.188.0/22 8386 -213.248.192.0/24 206747 -213.248.193.0/24 138177 -213.248.194.0/23 138177 -213.248.200.0/21 8683 -213.248.208.0/21 8683 -213.248.216.0/21 43519 -213.248.224.0/20 8683 -213.248.240.0/21 8683 -213.248.248.0/22 8683 -213.248.252.0/23 8683 -213.248.254.0/24 43519 -213.248.255.0/24 137502 -213.249.0.0/18 12361 -213.249.64.0/21 42585 -213.249.72.0/24 20559 -213.249.73.0/24 42585 -213.249.74.0/23 42585 -213.249.76.0/22 42585 -213.249.80.0/24 35470 -213.249.81.0/24 42585 -213.249.82.0/23 42585 -213.249.84.0/22 42585 -213.249.88.0/21 42585 -213.249.96.0/19 3356 -213.249.128.0/19 12390 -213.249.160.0/20 12390 -213.249.176.0/21 12390 -213.249.184.0/22 12390 -213.249.188.0/22 2856 -213.249.192.0/18 12390 -213.250.0.0/18 5603 -213.250.64.0/18 15527 -213.250.128.0/18 49565 -213.250.192.0/18 28851 -213.251.0.0/18 3257 -213.251.64.0/18 6848 -213.251.128.0/18 16276 -213.251.193.0/24 196638 -213.251.194.0/24 29420 -213.251.195.0/24 196638 -213.251.196.0/23 29420 -213.251.198.0/24 196638 -213.251.199.0/24 29420 -213.251.200.0/21 196638 -213.251.208.0/20 25189 -213.251.224.0/20 29420 -213.251.240.0/20 25189 -213.252.0.0/18 12907 -213.252.64.0/18 5523 -213.252.128.0/18 9066 -213.252.192.0/20 13194 -213.252.210.0/24 199527 -213.252.211.0/24 202085 -213.252.212.0/22 202085 -213.252.216.0/22 202085 -213.252.223.0/24 13194 -213.252.224.0/20 13194 -213.252.240.0/23 50256 -213.252.242.0/24 199527 -213.252.244.0/22 61272 -213.252.248.0/23 16125 -213.252.251.0/24 199527 -213.252.252.0/24 13194 -213.252.253.0/24 199527 -213.252.254.0/24 13194 -213.252.255.0/24 198622 -213.253.0.0/18 8426 -213.253.64.0/18 9119 -213.253.128.0/18 5587 -213.253.192.0/23 12301 -213.253.194.0/24 16015 -213.253.195.0/24 12301 -213.253.196.0/22 12301 -213.253.200.0/21 12301 -213.253.208.0/22 12301 -213.253.212.0/23 12301 -213.253.214.0/24 12301 -213.253.215.0/24 21209 -213.253.216.0/21 12301 -213.253.224.0/19 12301 -213.254.0.0/19 12779 -213.254.32.0/19 8351 -213.254.64.0/18 6739 -213.254.128.0/21 34984 -213.254.136.0/22 34984 -213.254.140.0/23 34984 -213.254.142.0/24 34984 -213.254.146.0/24 34984 -213.254.149.0/24 34984 -213.254.150.0/23 34984 -213.254.152.0/22 34984 -213.254.156.0/23 34984 -213.254.160.0/19 8897 -213.254.192.0/19 3257 -213.254.224.0/20 3257 -213.254.240.0/22 3257 -213.254.244.0/24 36062 -213.254.245.0/24 3257 -213.254.246.0/23 3257 -213.254.248.0/21 3257 -213.255.0.0/17 8968 -213.255.128.0/19 37170 -213.255.160.0/19 29240 -213.255.192.0/24 8513 -213.255.195.0/24 8513 -213.255.197.0/24 8513 -213.255.198.0/24 8513 -213.255.202.0/24 8513 -213.255.205.0/24 8513 -213.255.206.0/23 8513 -213.255.208.0/24 8513 -213.255.211.0/24 8513 -213.255.218.0/23 8513 -213.255.224.0/20 8513 -213.255.240.0/24 8513 -213.255.246.0/24 8513 -214.0.0.0/16 721 -214.1.0.0/23 721 -214.1.2.0/23 5972 -214.1.4.0/23 5972 -214.1.6.0/23 721 -214.1.8.0/24 721 -214.1.9.0/24 5972 -214.1.10.0/23 5972 -214.1.12.0/24 721 -214.1.13.0/24 5972 -214.1.14.0/23 721 -214.1.16.0/24 721 -214.1.17.0/24 5972 -214.1.18.0/23 5972 -214.1.20.0/22 5972 -214.1.24.0/23 5972 -214.1.26.0/24 5972 -214.1.27.0/24 721 -214.1.28.0/22 5972 -214.1.32.0/24 5972 -214.1.33.0/24 721 -214.1.34.0/23 5972 -214.1.36.0/24 5972 -214.1.37.0/24 721 -214.1.38.0/23 5972 -214.1.40.0/24 721 -214.1.41.0/24 5972 -214.1.42.0/23 5972 -214.1.44.0/23 5972 -214.1.46.0/24 721 -214.1.47.0/24 5972 -214.1.48.0/23 5972 -214.1.50.0/24 721 -214.1.51.0/24 5972 -214.1.52.0/22 5972 -214.1.56.0/22 5972 -214.1.60.0/23 5972 -214.1.62.0/24 5972 -214.1.63.0/24 721 -214.1.64.0/24 721 -214.1.65.0/24 5972 -214.1.66.0/23 5972 -214.1.68.0/23 5972 -214.1.70.0/24 5972 -214.1.71.0/24 721 -214.1.72.0/22 5972 -214.1.76.0/23 721 -214.1.78.0/24 721 -214.1.79.0/24 5972 -214.1.80.0/23 5972 -214.1.82.0/24 5972 -214.1.83.0/24 721 -214.1.84.0/22 5972 -214.1.88.0/24 721 -214.1.89.0/24 5972 -214.1.90.0/24 5972 -214.1.91.0/24 721 -214.1.92.0/22 5972 -214.1.96.0/24 721 -214.1.97.0/24 5972 -214.1.98.0/23 5972 -214.1.100.0/24 27064 -214.1.101.0/24 5972 -214.1.102.0/23 5972 -214.1.104.0/21 5972 -214.1.112.0/22 5972 -214.1.116.0/23 5972 -214.1.118.0/24 5972 -214.1.119.0/24 721 -214.1.120.0/24 721 -214.1.121.0/24 5972 -214.1.122.0/24 5972 -214.1.123.0/24 1778 -214.1.124.0/24 721 -214.1.125.0/24 5972 -214.1.126.0/24 5972 -214.1.127.0/24 721 -214.1.128.0/21 5972 -214.1.136.0/24 5972 -214.1.137.0/24 721 -214.1.138.0/23 5972 -214.1.140.0/22 5972 -214.1.144.0/21 5972 -214.1.152.0/22 5972 -214.1.156.0/24 5972 -214.1.157.0/24 721 -214.1.158.0/23 5972 -214.1.160.0/24 721 -214.1.161.0/24 5972 -214.1.162.0/23 5972 -214.1.164.0/22 5972 -214.1.168.0/21 5972 -214.1.176.0/22 5972 -214.1.180.0/23 5972 -214.1.182.0/24 5972 -214.1.183.0/24 721 -214.1.184.0/23 721 -214.1.186.0/23 5972 -214.1.188.0/23 5972 -214.1.190.0/24 721 -214.1.191.0/24 5972 -214.1.192.0/24 5972 -214.1.193.0/24 721 -214.1.194.0/23 5972 -214.1.196.0/24 5972 -214.1.197.0/24 721 -214.1.198.0/24 5972 -214.1.199.0/24 721 -214.1.200.0/22 5972 -214.1.204.0/23 5972 -214.1.206.0/24 1778 -214.1.207.0/24 721 -214.1.208.0/22 721 -214.1.212.0/23 721 -214.1.214.0/24 5972 -214.1.215.0/24 721 -214.1.216.0/22 721 -214.1.220.0/24 5972 -214.1.221.0/24 721 -214.1.222.0/23 721 -214.1.224.0/23 721 -214.1.226.0/24 5972 -214.1.227.0/24 721 -214.1.228.0/24 5972 -214.1.229.0/24 721 -214.1.230.0/24 721 -214.1.231.0/24 5972 -214.1.232.0/22 5972 -214.1.236.0/23 5972 -214.1.238.0/23 721 -214.1.240.0/23 5972 -214.1.242.0/23 721 -214.1.244.0/24 721 -214.1.245.0/24 5972 -214.1.246.0/23 5972 -214.1.248.0/23 5972 -214.1.250.0/23 721 -214.1.252.0/24 5972 -214.1.253.0/24 721 -214.1.254.0/24 721 -214.1.255.0/24 5972 -214.2.0.0/24 721 -214.2.1.0/24 5972 -214.2.2.0/24 5972 -214.2.3.0/24 721 -214.2.4.0/24 721 -214.2.5.0/24 5972 -214.2.6.0/23 5972 -214.2.8.0/24 5972 -214.2.9.0/24 721 -214.2.10.0/24 5972 -214.2.11.0/24 721 -214.2.12.0/23 721 -214.2.14.0/24 5972 -214.2.15.0/24 721 -214.2.16.0/22 721 -214.2.20.0/24 5972 -214.2.21.0/24 721 -214.2.22.0/24 5972 -214.2.23.0/24 721 -214.2.24.0/24 5972 -214.2.25.0/24 721 -214.2.26.0/24 5972 -214.2.27.0/24 721 -214.2.28.0/24 5972 -214.2.29.0/24 721 -214.2.30.0/24 5972 -214.2.31.0/24 721 -214.2.32.0/24 5972 -214.2.33.0/24 721 -214.2.34.0/24 5972 -214.2.35.0/24 721 -214.2.36.0/24 5972 -214.2.37.0/24 721 -214.2.38.0/24 5972 -214.2.39.0/24 721 -214.2.40.0/24 5972 -214.2.41.0/24 721 -214.2.42.0/23 721 -214.2.44.0/24 5972 -214.2.45.0/24 721 -214.2.46.0/24 5972 -214.2.47.0/24 721 -214.2.48.0/24 5972 -214.2.49.0/24 721 -214.2.50.0/23 721 -214.2.52.0/23 721 -214.2.54.0/24 5972 -214.2.55.0/24 721 -214.2.56.0/23 721 -214.2.58.0/24 5972 -214.2.59.0/24 721 -214.2.60.0/24 5972 -214.2.61.0/24 721 -214.2.62.0/24 5972 -214.2.63.0/24 721 -214.2.64.0/22 721 -214.2.68.0/23 721 -214.2.70.0/24 721 -214.2.71.0/24 5972 -214.2.72.0/23 721 -214.2.74.0/24 5972 -214.2.75.0/24 721 -214.2.76.0/24 5972 -214.2.77.0/24 721 -214.2.78.0/24 721 -214.2.79.0/24 5972 -214.2.80.0/24 5972 -214.2.81.0/24 721 -214.2.82.0/23 721 -214.2.84.0/23 721 -214.2.86.0/24 5972 -214.2.87.0/24 721 -214.2.88.0/23 721 -214.2.90.0/24 5972 -214.2.91.0/24 721 -214.2.92.0/24 5972 -214.2.93.0/24 721 -214.2.94.0/24 5972 -214.2.95.0/24 721 -214.2.96.0/24 5972 -214.2.97.0/24 721 -214.2.98.0/23 721 -214.2.100.0/22 721 -214.2.104.0/23 721 -214.2.106.0/24 5972 -214.2.107.0/24 721 -214.2.108.0/24 5972 -214.2.109.0/24 721 -214.2.110.0/24 5972 -214.2.111.0/24 721 -214.2.112.0/23 721 -214.2.114.0/24 5972 -214.2.115.0/24 721 -214.2.116.0/23 721 -214.2.118.0/24 721 -214.2.119.0/24 5972 -214.2.120.0/24 721 -214.2.121.0/24 5972 -214.2.122.0/23 5972 -214.2.124.0/23 5972 -214.2.126.0/24 5972 -214.2.127.0/24 721 -214.2.128.0/21 5972 -214.2.136.0/22 5972 -214.2.140.0/22 721 -214.2.144.0/24 5972 -214.2.145.0/24 721 -214.2.146.0/23 721 -214.2.148.0/23 5972 -214.2.150.0/24 5972 -214.2.151.0/24 721 -214.2.152.0/21 5972 -214.2.160.0/24 721 -214.2.161.0/24 5972 -214.2.162.0/23 5972 -214.2.164.0/22 5972 -214.2.168.0/21 5972 -214.2.176.0/21 5972 -214.2.184.0/23 5972 -214.2.186.0/24 5972 -214.2.187.0/24 721 -214.2.188.0/23 721 -214.2.190.0/23 5972 -214.2.192.0/21 5972 -214.2.200.0/21 721 -214.2.208.0/24 721 -214.2.209.0/24 5972 -214.2.210.0/24 721 -214.2.211.0/24 5972 -214.2.212.0/22 5972 -214.2.216.0/21 5972 -214.2.224.0/20 5972 -214.2.240.0/21 5972 -214.2.248.0/23 5972 -214.2.250.0/24 5972 -214.2.251.0/24 721 -214.2.252.0/22 5972 -214.3.0.0/24 721 -214.3.1.0/24 724 -214.3.2.0/24 721 -214.3.3.0/24 5972 -214.3.4.0/22 5972 -214.3.8.0/22 721 -214.3.12.0/24 5307 -214.3.13.0/24 721 -214.3.14.0/24 27046 -214.3.15.0/24 721 -214.3.16.0/20 27064 -214.3.32.0/20 5842 -214.3.48.0/21 5842 -214.3.56.0/24 721 -214.3.57.0/24 27064 -214.3.58.0/23 721 -214.3.60.0/24 27064 -214.3.61.0/24 721 -214.3.62.0/23 721 -214.3.64.0/23 721 -214.3.66.0/24 1531 -214.3.67.0/24 1462 -214.3.68.0/24 1462 -214.3.69.0/24 721 -214.3.70.0/23 721 -214.3.72.0/23 721 -214.3.74.0/24 721 -214.3.75.0/24 1452 -214.3.76.0/22 721 -214.3.80.0/24 6002 -214.3.81.0/24 721 -214.3.82.0/23 721 -214.3.84.0/24 6002 -214.3.85.0/24 6034 -214.3.86.0/24 6034 -214.3.87.0/24 721 -214.3.88.0/24 1590 -214.3.89.0/24 721 -214.3.90.0/24 27064 -214.3.91.0/24 721 -214.3.92.0/24 721 -214.3.93.0/24 1541 -214.3.94.0/24 27064 -214.3.95.0/24 721 -214.3.96.0/24 27064 -214.3.97.0/24 721 -214.3.98.0/23 721 -214.3.100.0/22 721 -214.3.104.0/23 721 -214.3.106.0/24 721 -214.3.107.0/24 5307 -214.3.108.0/22 721 -214.3.112.0/23 721 -214.3.114.0/24 721 -214.3.115.0/24 27064 -214.3.116.0/22 27064 -214.3.120.0/22 721 -214.3.124.0/24 721 -214.3.125.0/24 6026 -214.3.126.0/23 721 -214.3.128.0/24 721 -214.3.129.0/24 722 -214.3.130.0/24 27066 -214.3.131.0/24 721 -214.3.132.0/23 721 -214.3.134.0/23 27064 -214.3.136.0/23 721 -214.3.138.0/24 721 -214.3.139.0/24 27046 -214.3.140.0/24 27064 -214.3.141.0/24 27142 -214.3.142.0/23 721 -214.3.144.0/24 721 -214.3.145.0/24 27064 -214.3.146.0/23 3474 -214.3.148.0/22 721 -214.3.152.0/24 385 -214.3.153.0/24 721 -214.3.154.0/24 6026 -214.3.155.0/24 721 -214.3.156.0/24 6034 -214.3.157.0/24 721 -214.3.158.0/23 300 -214.3.160.0/24 300 -214.3.161.0/24 721 -214.3.162.0/24 27066 -214.3.163.0/24 27152 -214.3.164.0/22 721 -214.3.168.0/22 6040 -214.3.172.0/24 721 -214.3.173.0/24 27064 -214.3.174.0/24 721 -214.3.175.0/24 27142 -214.3.176.0/24 721 -214.3.177.0/24 300 -214.3.178.0/23 721 -214.3.180.0/22 721 -214.3.184.0/21 27079 -214.3.192.0/20 721 -214.3.208.0/22 721 -214.3.212.0/23 721 -214.3.214.0/24 6039 -214.3.215.0/24 27064 -214.3.216.0/24 27064 -214.3.217.0/24 721 -214.3.218.0/23 721 -214.3.220.0/24 721 -214.3.221.0/24 27064 -214.3.222.0/23 721 -214.3.224.0/21 6026 -214.3.232.0/23 721 -214.3.234.0/24 5842 -214.3.235.0/24 721 -214.3.236.0/22 721 -214.3.240.0/23 721 -214.3.242.0/24 721 -214.3.243.0/24 6045 -214.3.244.0/23 721 -214.3.246.0/23 6045 -214.3.248.0/22 721 -214.3.252.0/24 721 -214.3.253.0/24 7046 -214.3.254.0/23 721 -214.4.0.0/24 721 -214.4.1.0/24 383 -214.4.2.0/23 383 -214.4.4.0/22 721 -214.4.8.0/24 1733 -214.4.9.0/24 385 -214.4.10.0/24 721 -214.4.11.0/24 27064 -214.4.12.0/24 383 -214.4.13.0/24 300 -214.4.14.0/23 300 -214.4.16.0/22 721 -214.4.20.0/23 721 -214.4.22.0/24 385 -214.4.23.0/24 721 -214.4.24.0/22 721 -214.4.28.0/24 721 -214.4.29.0/24 385 -214.4.30.0/24 385 -214.4.31.0/24 721 -214.4.32.0/21 721 -214.4.40.0/22 721 -214.4.44.0/23 721 -214.4.46.0/24 721 -214.4.47.0/24 383 -214.4.48.0/22 721 -214.4.52.0/24 385 -214.4.53.0/24 721 -214.4.54.0/23 721 -214.4.56.0/23 721 -214.4.58.0/24 721 -214.4.59.0/24 1733 -214.4.60.0/22 721 -214.4.64.0/24 668 -214.4.65.0/24 721 -214.4.66.0/23 721 -214.4.68.0/22 721 -214.4.72.0/21 721 -214.4.80.0/21 721 -214.4.88.0/22 721 -214.4.92.0/23 721 -214.4.94.0/24 385 -214.4.95.0/24 721 -214.4.96.0/24 721 -214.4.97.0/24 27064 -214.4.98.0/23 721 -214.4.100.0/23 721 -214.4.102.0/24 5972 -214.4.103.0/24 721 -214.4.104.0/21 721 -214.4.112.0/20 721 -214.4.128.0/21 721 -214.4.136.0/23 721 -214.4.138.0/23 300 -214.4.140.0/23 721 -214.4.142.0/24 721 -214.4.143.0/24 300 -214.4.144.0/24 5307 -214.4.145.0/24 27064 -214.4.146.0/23 721 -214.4.148.0/22 721 -214.4.152.0/22 721 -214.4.156.0/23 27064 -214.4.158.0/24 27064 -214.4.159.0/24 721 -214.4.160.0/24 27069 -214.4.161.0/24 721 -214.4.162.0/23 721 -214.4.164.0/22 721 -214.4.168.0/21 721 -214.4.176.0/20 721 -214.4.192.0/20 721 -214.4.208.0/23 27052 -214.4.210.0/24 27052 -214.4.211.0/24 721 -214.4.212.0/22 721 -214.4.216.0/21 721 -214.4.224.0/23 27064 -214.4.226.0/23 721 -214.4.228.0/22 721 -214.4.232.0/23 721 -214.4.234.0/24 27153 -214.4.235.0/24 6034 -214.4.236.0/22 721 -214.4.240.0/24 721 -214.4.241.0/24 27066 -214.4.242.0/23 721 -214.4.244.0/22 721 -214.4.248.0/23 721 -214.4.250.0/24 721 -214.4.251.0/24 27064 -214.4.252.0/24 721 -214.4.253.0/24 27064 -214.4.254.0/24 721 -214.4.255.0/24 6026 -214.5.0.0/16 721 -214.6.0.0/19 721 -214.6.32.0/24 5307 -214.6.33.0/24 721 -214.6.34.0/23 721 -214.6.36.0/24 5307 -214.6.37.0/24 721 -214.6.38.0/23 721 -214.6.40.0/21 721 -214.6.48.0/20 721 -214.6.64.0/21 721 -214.6.72.0/22 721 -214.6.76.0/23 721 -214.6.78.0/24 722 -214.6.79.0/24 721 -214.6.80.0/20 722 -214.6.96.0/24 310 -214.6.97.0/24 3473 -214.6.98.0/23 310 -214.6.100.0/22 721 -214.6.104.0/21 721 -214.6.112.0/20 721 -214.6.128.0/20 721 -214.6.144.0/21 721 -214.6.152.0/23 721 -214.6.154.0/24 721 -214.6.155.0/24 27051 -214.6.156.0/23 721 -214.6.158.0/24 27051 -214.6.159.0/24 721 -214.6.160.0/20 721 -214.6.176.0/21 721 -214.6.184.0/22 721 -214.6.188.0/23 721 -214.6.190.0/24 721 -214.6.191.0/24 27051 -214.6.192.0/20 721 -214.6.208.0/24 27051 -214.6.209.0/24 721 -214.6.210.0/23 27051 -214.6.212.0/23 721 -214.6.214.0/24 27051 -214.6.215.0/24 721 -214.6.216.0/23 27051 -214.6.218.0/24 27051 -214.6.219.0/24 721 -214.6.220.0/22 27051 -214.6.224.0/23 27051 -214.6.226.0/24 27051 -214.6.227.0/24 721 -214.6.228.0/23 27051 -214.6.230.0/23 721 -214.6.232.0/22 721 -214.6.236.0/24 721 -214.6.237.0/24 27051 -214.6.238.0/23 27051 -214.6.240.0/21 721 -214.6.248.0/24 721 -214.6.249.0/24 309 -214.6.250.0/24 310 -214.6.251.0/24 313 -214.6.252.0/22 721 -214.7.0.0/19 27046 -214.7.32.0/20 27046 -214.7.48.0/21 27046 -214.7.56.0/21 721 -214.7.64.0/20 27046 -214.7.80.0/21 27046 -214.7.88.0/21 721 -214.7.96.0/19 721 -214.7.128.0/18 721 -214.7.192.0/20 721 -214.7.208.0/21 721 -214.7.216.0/21 27046 -214.7.224.0/19 27046 -214.8.0.0/16 5376 -214.9.0.0/18 721 -214.9.64.0/20 721 -214.9.80.0/21 721 -214.9.88.0/22 721 -214.9.92.0/24 668 -214.9.93.0/24 721 -214.9.94.0/23 668 -214.9.96.0/20 668 -214.9.112.0/22 721 -214.9.116.0/24 1908 -214.9.117.0/24 721 -214.9.118.0/23 721 -214.9.120.0/21 721 -214.9.128.0/20 300 -214.9.144.0/20 721 -214.9.160.0/19 721 -214.9.192.0/19 721 -214.9.224.0/20 721 -214.9.240.0/21 721 -214.9.248.0/21 149 -214.10.0.0/21 721 -214.10.8.0/22 5307 -214.10.12.0/24 721 -214.10.13.0/24 27064 -214.10.14.0/23 721 -214.10.16.0/23 721 -214.10.18.0/24 27064 -214.10.19.0/24 721 -214.10.20.0/23 721 -214.10.22.0/23 27064 -214.10.24.0/24 27064 -214.10.25.0/24 668 -214.10.26.0/23 721 -214.10.28.0/22 721 -214.10.32.0/23 5972 -214.10.34.0/24 5972 -214.10.35.0/24 721 -214.10.36.0/22 721 -214.10.40.0/21 5972 -214.10.48.0/21 721 -214.10.56.0/22 721 -214.10.60.0/23 721 -214.10.62.0/24 721 -214.10.63.0/24 5972 -214.10.64.0/18 721 -214.10.128.0/17 721 -214.11.0.0/16 721 -214.12.0.0/16 721 -214.13.0.0/17 5800 -214.13.128.0/17 721 -214.14.0.0/23 367 -214.14.2.0/24 745 -214.14.3.0/24 367 -214.14.4.0/23 367 -214.14.6.0/24 367 -214.14.7.0/24 27080 -214.14.8.0/24 367 -214.14.9.0/24 745 -214.14.10.0/24 745 -214.14.11.0/24 367 -214.14.12.0/22 367 -214.14.16.0/22 367 -214.14.20.0/24 745 -214.14.21.0/24 367 -214.14.22.0/23 367 -214.14.24.0/22 367 -214.14.28.0/24 367 -214.14.29.0/24 1538 -214.14.30.0/23 367 -214.14.32.0/20 367 -214.14.48.0/21 367 -214.14.56.0/21 27087 -214.14.64.0/20 27087 -214.14.80.0/21 367 -214.14.88.0/22 367 -214.14.92.0/24 367 -214.14.93.0/24 6039 -214.14.94.0/24 367 -214.14.95.0/24 745 -214.14.96.0/20 367 -214.14.112.0/21 27086 -214.14.120.0/23 27087 -214.14.122.0/23 367 -214.14.124.0/24 27087 -214.14.125.0/24 367 -214.14.126.0/23 367 -214.14.128.0/21 367 -214.14.136.0/22 367 -214.14.140.0/23 367 -214.14.142.0/24 1538 -214.14.143.0/24 367 -214.14.144.0/21 367 -214.14.152.0/22 27080 -214.14.156.0/22 367 -214.14.160.0/24 1538 -214.14.161.0/24 367 -214.14.162.0/23 367 -214.14.164.0/22 367 -214.14.168.0/22 745 -214.14.172.0/24 27086 -214.14.173.0/24 745 -214.14.174.0/23 367 -214.14.176.0/21 27087 -214.14.184.0/23 367 -214.14.186.0/24 6040 -214.14.187.0/24 1538 -214.14.188.0/22 367 -214.14.192.0/21 367 -214.14.200.0/22 367 -214.14.204.0/24 367 -214.14.205.0/24 745 -214.14.206.0/23 745 -214.14.208.0/22 6042 -214.14.212.0/23 367 -214.14.214.0/24 27087 -214.14.215.0/24 367 -214.14.216.0/23 27080 -214.14.218.0/24 367 -214.14.219.0/24 27080 -214.14.220.0/24 745 -214.14.221.0/24 367 -214.14.222.0/23 367 -214.14.224.0/23 27080 -214.14.226.0/23 367 -214.14.228.0/22 367 -214.14.232.0/24 27087 -214.14.233.0/24 367 -214.14.234.0/23 367 -214.14.236.0/23 367 -214.14.238.0/24 27087 -214.14.239.0/24 367 -214.14.240.0/23 367 -214.14.242.0/24 367 -214.14.243.0/24 27080 -214.14.244.0/24 6040 -214.14.245.0/24 367 -214.14.246.0/23 367 -214.14.248.0/21 367 -214.15.0.0/17 721 -214.15.128.0/21 721 -214.15.136.0/23 721 -214.15.138.0/24 310 -214.15.139.0/24 721 -214.15.140.0/24 310 -214.15.141.0/24 721 -214.15.142.0/23 721 -214.15.144.0/24 27137 -214.15.145.0/24 721 -214.15.146.0/24 27139 -214.15.147.0/24 721 -214.15.148.0/22 721 -214.15.152.0/21 721 -214.15.160.0/24 637 -214.15.161.0/24 721 -214.15.162.0/23 721 -214.15.164.0/22 721 -214.15.168.0/21 721 -214.15.176.0/20 721 -214.15.192.0/22 721 -214.15.196.0/23 721 -214.15.198.0/24 721 -214.15.199.0/24 5323 -214.15.200.0/24 721 -214.15.201.0/24 310 -214.15.202.0/24 27090 -214.15.203.0/24 721 -214.15.204.0/24 5956 -214.15.205.0/24 5323 -214.15.206.0/24 5969 -214.15.207.0/24 5323 -214.15.208.0/24 721 -214.15.209.0/24 310 -214.15.210.0/24 5341 -214.15.211.0/24 721 -214.15.212.0/22 721 -214.15.216.0/21 721 -214.15.224.0/24 334 -214.15.225.0/24 721 -214.15.226.0/24 3473 -214.15.227.0/24 721 -214.15.228.0/24 334 -214.15.229.0/24 637 -214.15.230.0/23 721 -214.15.232.0/21 721 -214.15.240.0/22 721 -214.15.244.0/23 721 -214.15.246.0/24 721 -214.15.247.0/24 637 -214.15.248.0/24 637 -214.15.249.0/24 721 -214.15.250.0/24 637 -214.15.251.0/24 721 -214.15.252.0/23 637 -214.15.254.0/24 721 -214.15.255.0/24 637 -214.16.0.0/23 721 -214.16.2.0/23 6026 -214.16.4.0/24 27064 -214.16.5.0/24 721 -214.16.6.0/23 721 -214.16.8.0/22 721 -214.16.12.0/24 721 -214.16.13.0/24 27142 -214.16.14.0/24 27142 -214.16.15.0/24 721 -214.16.16.0/24 721 -214.16.17.0/24 5329 -214.16.18.0/24 5329 -214.16.19.0/24 721 -214.16.20.0/22 721 -214.16.24.0/21 721 -214.16.32.0/22 27142 -214.16.36.0/22 721 -214.16.40.0/22 721 -214.16.44.0/24 721 -214.16.45.0/24 27064 -214.16.46.0/23 27064 -214.16.48.0/24 721 -214.16.49.0/24 1733 -214.16.50.0/23 721 -214.16.52.0/22 721 -214.16.56.0/22 721 -214.16.60.0/24 721 -214.16.61.0/24 5842 -214.16.62.0/23 721 -214.16.64.0/19 27079 -214.16.96.0/20 721 -214.16.112.0/21 721 -214.16.120.0/22 721 -214.16.124.0/24 721 -214.16.125.0/24 27156 -214.16.126.0/23 721 -214.16.128.0/20 721 -214.16.144.0/23 721 -214.16.146.0/24 721 -214.16.147.0/24 5800 -214.16.148.0/22 721 -214.16.152.0/22 721 -214.16.156.0/24 5800 -214.16.157.0/24 721 -214.16.158.0/23 721 -214.16.160.0/22 721 -214.16.164.0/22 5800 -214.16.168.0/21 721 -214.16.176.0/20 721 -214.16.192.0/22 27064 -214.16.196.0/22 721 -214.16.200.0/24 27066 -214.16.201.0/24 721 -214.16.202.0/23 721 -214.16.204.0/22 721 -214.16.208.0/23 721 -214.16.210.0/24 1503 -214.16.211.0/24 721 -214.16.212.0/22 721 -214.16.216.0/22 687 -214.16.220.0/22 721 -214.16.224.0/20 721 -214.16.240.0/22 721 -214.16.244.0/23 27066 -214.16.246.0/24 27066 -214.16.247.0/24 721 -214.16.248.0/23 27064 -214.16.250.0/23 721 -214.16.252.0/23 721 -214.16.254.0/24 721 -214.16.255.0/24 27064 -214.17.0.0/17 721 -214.17.128.0/18 721 -214.17.192.0/23 721 -214.17.194.0/24 27046 -214.17.195.0/24 721 -214.17.196.0/22 721 -214.17.200.0/23 721 -214.17.202.0/24 721 -214.17.203.0/24 27046 -214.17.204.0/22 721 -214.17.208.0/20 721 -214.17.224.0/19 721 -214.18.0.0/19 6039 -214.18.32.0/20 6039 -214.18.48.0/22 6039 -214.18.52.0/23 6039 -214.18.54.0/24 12076 -214.18.55.0/24 6039 -214.18.56.0/24 12076 -214.18.57.0/24 6039 -214.18.58.0/23 6039 -214.18.60.0/22 6039 -214.18.64.0/21 6039 -214.18.72.0/23 6039 -214.18.74.0/24 12076 -214.18.75.0/24 6039 -214.18.76.0/22 6039 -214.18.80.0/20 6039 -214.18.96.0/19 6039 -214.18.128.0/17 6039 -214.19.0.0/16 367 -214.20.0.0/16 721 -214.21.0.0/16 6026 -214.22.0.0/16 27142 -214.23.0.0/21 300 -214.23.8.0/21 5307 -214.23.16.0/21 5307 -214.23.24.0/21 300 -214.23.32.0/20 5307 -214.23.48.0/20 300 -214.23.64.0/21 300 -214.23.72.0/21 721 -214.23.80.0/20 721 -214.23.96.0/19 721 -214.23.128.0/18 721 -214.23.192.0/19 721 -214.23.224.0/21 721 -214.23.232.0/24 5974 -214.23.233.0/24 721 -214.23.234.0/23 721 -214.23.236.0/22 721 -214.23.240.0/23 6026 -214.23.242.0/23 5307 -214.23.244.0/23 27066 -214.23.246.0/23 721 -214.23.248.0/21 300 -214.24.0.0/20 721 -214.24.16.0/22 721 -214.24.20.0/24 721 -214.24.21.0/24 345 -214.24.22.0/24 27152 -214.24.23.0/24 721 -214.24.24.0/24 345 -214.24.25.0/24 721 -214.24.26.0/23 345 -214.24.28.0/22 721 -214.24.32.0/19 721 -214.24.64.0/18 721 -214.24.128.0/19 721 -214.24.160.0/20 721 -214.24.176.0/24 721 -214.24.177.0/24 27065 -214.24.178.0/23 721 -214.24.180.0/22 721 -214.24.184.0/21 721 -214.24.192.0/20 721 -214.24.208.0/24 27064 -214.24.209.0/24 721 -214.24.210.0/23 721 -214.24.212.0/23 721 -214.24.214.0/24 721 -214.24.215.0/24 27066 -214.24.216.0/24 27066 -214.24.217.0/24 721 -214.24.218.0/23 721 -214.24.220.0/23 721 -214.24.222.0/24 27064 -214.24.223.0/24 721 -214.24.224.0/20 721 -214.24.240.0/24 27064 -214.24.241.0/24 721 -214.24.242.0/24 721 -214.24.243.0/24 5974 -214.24.244.0/24 721 -214.24.245.0/24 27066 -214.24.246.0/24 721 -214.24.247.0/24 27065 -214.24.248.0/23 721 -214.24.250.0/24 27066 -214.24.251.0/24 721 -214.24.252.0/24 27064 -214.24.253.0/24 721 -214.24.254.0/23 721 -214.25.0.0/24 721 -214.25.1.0/24 344 -214.25.2.0/23 344 -214.25.4.0/24 344 -214.25.5.0/24 721 -214.25.6.0/23 344 -214.25.8.0/23 344 -214.25.10.0/24 721 -214.25.11.0/24 3474 -214.25.12.0/24 3471 -214.25.13.0/24 721 -214.25.14.0/24 721 -214.25.15.0/24 313 -214.25.16.0/24 313 -214.25.17.0/24 310 -214.25.18.0/23 721 -214.25.20.0/22 721 -214.25.24.0/22 721 -214.25.28.0/23 27064 -214.25.30.0/23 721 -214.25.32.0/19 721 -214.25.64.0/20 721 -214.25.80.0/22 721 -214.25.84.0/23 721 -214.25.86.0/24 5994 -214.25.87.0/24 721 -214.25.88.0/22 5994 -214.25.92.0/22 721 -214.25.96.0/24 3473 -214.25.97.0/24 308 -214.25.98.0/24 309 -214.25.99.0/24 310 -214.25.100.0/24 3474 -214.25.101.0/24 721 -214.25.102.0/24 3474 -214.25.103.0/24 27066 -214.25.104.0/24 721 -214.25.105.0/24 27064 -214.25.106.0/24 1503 -214.25.107.0/24 27064 -214.25.108.0/24 721 -214.25.109.0/24 27064 -214.25.110.0/23 721 -214.25.112.0/20 721 -214.25.128.0/17 721 -214.26.0.0/19 5800 -214.26.32.0/20 5800 -214.26.48.0/23 721 -214.26.50.0/24 5800 -214.26.51.0/24 721 -214.26.52.0/24 5800 -214.26.53.0/24 721 -214.26.54.0/24 721 -214.26.55.0/24 5800 -214.26.56.0/22 721 -214.26.60.0/24 721 -214.26.61.0/24 5800 -214.26.62.0/23 721 -214.26.64.0/18 571 -214.26.128.0/24 5800 -214.26.129.0/24 721 -214.26.130.0/23 5800 -214.26.132.0/22 721 -214.26.136.0/23 721 -214.26.138.0/23 5800 -214.26.140.0/22 721 -214.26.144.0/23 721 -214.26.146.0/23 5800 -214.26.148.0/22 721 -214.26.152.0/24 721 -214.26.153.0/24 5800 -214.26.154.0/23 721 -214.26.156.0/24 5800 -214.26.157.0/24 721 -214.26.158.0/23 721 -214.26.160.0/19 1208 -214.26.192.0/20 721 -214.26.208.0/22 721 -214.26.212.0/22 5800 -214.26.216.0/22 721 -214.26.220.0/24 5800 -214.26.221.0/24 721 -214.26.222.0/23 721 -214.26.224.0/23 721 -214.26.226.0/24 5800 -214.26.227.0/24 721 -214.26.228.0/24 721 -214.26.229.0/24 5800 -214.26.230.0/24 721 -214.26.231.0/24 5800 -214.26.232.0/21 721 -214.26.240.0/24 5800 -214.26.241.0/24 721 -214.26.242.0/23 721 -214.26.244.0/22 721 -214.26.248.0/24 5306 -214.26.249.0/24 6034 -214.26.250.0/24 721 -214.26.251.0/24 5800 -214.26.252.0/24 5800 -214.26.253.0/24 721 -214.26.254.0/23 721 -214.27.0.0/24 5800 -214.27.1.0/24 721 -214.27.2.0/23 721 -214.27.4.0/22 5800 -214.27.8.0/22 721 -214.27.12.0/22 5306 -214.27.16.0/21 721 -214.27.24.0/23 721 -214.27.26.0/24 721 -214.27.27.0/24 5800 -214.27.28.0/22 5800 -214.27.32.0/20 5800 -214.27.48.0/21 721 -214.27.56.0/24 721 -214.27.57.0/24 5800 -214.27.58.0/24 5800 -214.27.59.0/24 721 -214.27.60.0/24 721 -214.27.61.0/24 5800 -214.27.62.0/23 721 -214.27.64.0/19 5800 -214.27.96.0/20 5306 -214.27.112.0/21 721 -214.27.120.0/22 721 -214.27.124.0/24 721 -214.27.125.0/24 5800 -214.27.126.0/23 721 -214.27.128.0/22 721 -214.27.132.0/24 721 -214.27.133.0/24 311 -214.27.134.0/23 6045 -214.27.136.0/22 721 -214.27.140.0/23 721 -214.27.142.0/23 6045 -214.27.144.0/24 721 -214.27.145.0/24 313 -214.27.146.0/23 6045 -214.27.148.0/22 3541 -214.27.152.0/21 1913 -214.27.160.0/22 1913 -214.27.164.0/22 721 -214.27.168.0/22 27064 -214.27.172.0/22 721 -214.27.176.0/22 721 -214.27.180.0/22 5842 -214.27.184.0/22 5842 -214.27.188.0/22 721 -214.27.192.0/23 721 -214.27.194.0/23 27064 -214.27.196.0/24 27064 -214.27.197.0/24 721 -214.27.198.0/23 27064 -214.27.200.0/21 5994 -214.27.208.0/21 721 -214.27.216.0/22 5972 -214.27.220.0/22 721 -214.27.224.0/23 3472 -214.27.226.0/24 3472 -214.27.227.0/24 721 -214.27.228.0/22 3474 -214.27.232.0/21 571 -214.27.240.0/20 721 -214.28.0.0/20 27064 -214.28.16.0/21 27064 -214.28.24.0/23 27064 -214.28.26.0/24 27064 -214.28.27.0/24 721 -214.28.28.0/22 27064 -214.28.32.0/20 27064 -214.28.48.0/23 27064 -214.28.50.0/24 27064 -214.28.51.0/24 721 -214.28.52.0/23 27064 -214.28.54.0/24 27064 -214.28.55.0/24 721 -214.28.56.0/23 721 -214.28.58.0/23 27064 -214.28.60.0/24 27064 -214.28.61.0/24 721 -214.28.62.0/24 721 -214.28.63.0/24 27064 -214.28.64.0/23 27064 -214.28.66.0/23 721 -214.28.68.0/24 721 -214.28.69.0/24 27064 -214.28.70.0/23 721 -214.28.72.0/22 721 -214.28.76.0/24 721 -214.28.77.0/24 27064 -214.28.78.0/23 721 -214.28.80.0/21 721 -214.28.88.0/22 721 -214.28.92.0/23 721 -214.28.94.0/24 721 -214.28.95.0/24 27064 -214.28.96.0/24 27064 -214.28.97.0/24 721 -214.28.98.0/24 721 -214.28.99.0/24 27064 -214.28.100.0/22 721 -214.28.104.0/21 721 -214.28.112.0/20 721 -214.28.128.0/19 721 -214.28.160.0/22 721 -214.28.164.0/24 721 -214.28.165.0/24 27064 -214.28.166.0/23 27064 -214.28.168.0/22 721 -214.28.172.0/24 721 -214.28.173.0/24 27064 -214.28.174.0/24 27064 -214.28.175.0/24 721 -214.28.176.0/24 27064 -214.28.177.0/24 721 -214.28.178.0/23 721 -214.28.180.0/24 27064 -214.28.181.0/24 721 -214.28.182.0/23 27064 -214.28.184.0/23 27064 -214.28.186.0/24 27064 -214.28.187.0/24 721 -214.28.188.0/22 721 -214.28.192.0/24 721 -214.28.193.0/24 27064 -214.28.194.0/24 27064 -214.28.195.0/24 721 -214.28.196.0/22 721 -214.28.200.0/24 27064 -214.28.201.0/24 721 -214.28.202.0/23 27064 -214.28.204.0/22 27064 -214.28.208.0/23 27064 -214.28.210.0/23 721 -214.28.212.0/23 721 -214.28.214.0/24 27064 -214.28.215.0/24 721 -214.28.216.0/24 721 -214.28.217.0/24 27064 -214.28.218.0/23 721 -214.28.220.0/23 721 -214.28.222.0/24 721 -214.28.223.0/24 27064 -214.28.224.0/22 721 -214.28.228.0/23 27064 -214.28.230.0/24 27064 -214.28.231.0/24 721 -214.28.232.0/24 27064 -214.28.233.0/24 721 -214.28.234.0/23 27064 -214.28.236.0/23 27064 -214.28.238.0/24 27064 -214.28.239.0/24 721 -214.28.240.0/24 27064 -214.28.241.0/24 721 -214.28.242.0/23 27064 -214.28.244.0/24 27064 -214.28.245.0/24 721 -214.28.246.0/24 27064 -214.28.247.0/24 721 -214.28.248.0/22 27064 -214.28.252.0/23 27064 -214.28.254.0/23 721 -214.29.0.0/19 721 -214.29.32.0/20 721 -214.29.48.0/24 721 -214.29.49.0/24 494 -214.29.50.0/24 313 -214.29.51.0/24 27064 -214.29.52.0/22 721 -214.29.56.0/22 27064 -214.29.60.0/22 721 -214.29.64.0/24 27064 -214.29.65.0/24 721 -214.29.66.0/23 721 -214.29.68.0/24 27064 -214.29.69.0/24 721 -214.29.70.0/23 721 -214.29.72.0/24 27064 -214.29.73.0/24 721 -214.29.74.0/23 64140 -214.29.76.0/22 721 -214.29.80.0/20 721 -214.29.96.0/23 310 -214.29.98.0/24 3473 -214.29.99.0/24 310 -214.29.100.0/23 310 -214.29.102.0/24 310 -214.29.103.0/24 3473 -214.29.104.0/24 310 -214.29.105.0/24 721 -214.29.106.0/23 310 -214.29.108.0/24 310 -214.29.109.0/24 721 -214.29.110.0/23 721 -214.29.112.0/21 721 -214.29.120.0/22 721 -214.29.124.0/24 721 -214.29.125.0/24 310 -214.29.126.0/23 721 -214.29.128.0/24 721 -214.29.129.0/24 1541 -214.29.130.0/23 1541 -214.29.132.0/22 1541 -214.29.136.0/21 668 -214.29.144.0/20 721 -214.29.160.0/24 310 -214.29.161.0/24 721 -214.29.162.0/23 721 -214.29.164.0/22 721 -214.29.168.0/21 721 -214.29.176.0/20 721 -214.29.192.0/19 721 -214.29.224.0/24 309 -214.29.225.0/24 310 -214.29.226.0/23 310 -214.29.228.0/23 310 -214.29.230.0/24 310 -214.29.231.0/24 313 -214.29.232.0/24 310 -214.29.233.0/24 3473 -214.29.234.0/23 310 -214.29.236.0/22 310 -214.29.240.0/21 310 -214.29.248.0/23 310 -214.29.250.0/24 310 -214.29.251.0/24 721 -214.29.252.0/22 721 -214.30.0.0/15 721 -214.32.0.0/14 668 -214.36.0.0/16 27064 -214.37.0.0/21 6045 -214.37.8.0/22 27044 -214.37.12.0/22 27034 -214.37.16.0/22 27033 -214.37.20.0/22 3544 -214.37.24.0/22 3538 -214.37.28.0/22 721 -214.37.32.0/21 721 -214.37.40.0/23 27064 -214.37.42.0/24 27064 -214.37.43.0/24 721 -214.37.44.0/23 27064 -214.37.46.0/23 721 -214.37.48.0/24 27064 -214.37.49.0/24 745 -214.37.50.0/23 27066 -214.37.52.0/22 721 -214.37.56.0/22 721 -214.37.60.0/23 27066 -214.37.62.0/23 721 -214.37.64.0/18 721 -214.37.128.0/21 27064 -214.37.136.0/24 27064 -214.37.137.0/24 721 -214.37.138.0/23 721 -214.37.140.0/22 64140 -214.37.144.0/20 721 -214.37.160.0/19 721 -214.37.192.0/18 721 -214.38.0.0/24 721 -214.38.1.0/24 5800 -214.38.2.0/23 721 -214.38.4.0/22 5800 -214.38.8.0/22 5800 -214.38.12.0/22 721 -214.38.16.0/20 721 -214.38.32.0/19 721 -214.38.64.0/23 721 -214.38.66.0/24 5800 -214.38.67.0/24 721 -214.38.68.0/22 721 -214.38.72.0/21 721 -214.38.80.0/23 721 -214.38.82.0/24 721 -214.38.83.0/24 5800 -214.38.84.0/22 721 -214.38.88.0/21 721 -214.38.96.0/23 5800 -214.38.98.0/23 721 -214.38.100.0/22 721 -214.38.104.0/23 5800 -214.38.106.0/24 721 -214.38.107.0/24 5800 -214.38.108.0/22 721 -214.38.112.0/21 5800 -214.38.120.0/23 721 -214.38.122.0/24 721 -214.38.123.0/24 5800 -214.38.124.0/24 721 -214.38.125.0/24 5800 -214.38.126.0/23 721 -214.38.128.0/24 27064 -214.38.129.0/24 494 -214.38.130.0/23 721 -214.38.132.0/24 721 -214.38.133.0/24 668 -214.38.134.0/23 721 -214.38.136.0/22 721 -214.38.140.0/24 3473 -214.38.141.0/24 721 -214.38.142.0/23 721 -214.38.144.0/20 5842 -214.38.160.0/24 313 -214.38.161.0/24 721 -214.38.162.0/24 721 -214.38.163.0/24 3473 -214.38.164.0/22 721 -214.38.168.0/22 721 -214.38.172.0/24 310 -214.38.173.0/24 3541 -214.38.174.0/24 310 -214.38.175.0/24 721 -214.38.176.0/23 721 -214.38.178.0/24 3473 -214.38.179.0/24 308 -214.38.180.0/22 721 -214.38.184.0/24 721 -214.38.185.0/24 310 -214.38.186.0/24 721 -214.38.187.0/24 310 -214.38.188.0/23 721 -214.38.190.0/24 310 -214.38.191.0/24 721 -214.38.192.0/22 721 -214.38.196.0/23 1733 -214.38.198.0/23 27066 -214.38.200.0/21 721 -214.38.208.0/22 721 -214.38.212.0/24 721 -214.38.213.0/24 27064 -214.38.214.0/23 721 -214.38.216.0/22 721 -214.38.220.0/24 721 -214.38.221.0/24 27064 -214.38.222.0/23 721 -214.38.224.0/24 300 -214.38.225.0/24 721 -214.38.226.0/23 721 -214.38.228.0/22 721 -214.38.232.0/24 5974 -214.38.233.0/24 721 -214.38.234.0/23 721 -214.38.236.0/24 5974 -214.38.237.0/24 721 -214.38.238.0/23 721 -214.38.240.0/24 27142 -214.38.241.0/24 721 -214.38.242.0/23 721 -214.38.244.0/24 27142 -214.38.245.0/24 721 -214.38.246.0/23 721 -214.38.248.0/21 721 -214.39.0.0/16 721 -214.40.0.0/17 27064 -214.40.128.0/18 27066 -214.40.192.0/19 27065 -214.40.224.0/20 27066 -214.40.240.0/21 27066 -214.40.248.0/21 27067 -214.41.0.0/16 721 -214.42.0.0/17 27064 -214.42.128.0/18 27064 -214.42.192.0/22 27064 -214.42.196.0/23 27064 -214.42.198.0/24 27064 -214.42.199.0/24 27149 -214.42.200.0/21 27064 -214.42.208.0/20 27064 -214.42.224.0/20 27064 -214.42.240.0/20 27065 -214.43.0.0/23 1540 -214.43.2.0/24 1540 -214.43.3.0/24 721 -214.43.4.0/24 721 -214.43.5.0/24 1540 -214.43.6.0/23 1540 -214.43.8.0/24 1540 -214.43.9.0/24 721 -214.43.10.0/23 1540 -214.43.12.0/23 1540 -214.43.14.0/23 721 -214.43.16.0/22 721 -214.43.20.0/23 1540 -214.43.22.0/24 1540 -214.43.23.0/24 721 -214.43.24.0/24 721 -214.43.25.0/24 1540 -214.43.26.0/24 1540 -214.43.27.0/24 721 -214.43.28.0/24 1540 -214.43.29.0/24 721 -214.43.30.0/24 1540 -214.43.31.0/24 721 -214.43.32.0/24 1540 -214.43.33.0/24 721 -214.43.34.0/23 721 -214.43.36.0/22 721 -214.43.40.0/21 721 -214.43.48.0/23 721 -214.43.50.0/23 1540 -214.43.52.0/23 1540 -214.43.54.0/23 721 -214.43.56.0/22 721 -214.43.60.0/22 1540 -214.43.64.0/22 721 -214.43.68.0/23 721 -214.43.70.0/24 1540 -214.43.71.0/24 721 -214.43.72.0/21 721 -214.43.80.0/21 721 -214.43.88.0/22 721 -214.43.92.0/22 1540 -214.43.96.0/19 1540 -214.43.128.0/23 1540 -214.43.130.0/23 721 -214.43.132.0/22 721 -214.43.136.0/22 721 -214.43.140.0/23 721 -214.43.142.0/24 721 -214.43.143.0/24 637 -214.43.144.0/21 1540 -214.43.152.0/23 721 -214.43.154.0/23 1540 -214.43.156.0/22 1540 -214.43.160.0/22 1540 -214.43.164.0/24 721 -214.43.165.0/24 1540 -214.43.166.0/23 1540 -214.43.168.0/21 1540 -214.43.176.0/20 1540 -214.43.192.0/19 721 -214.43.224.0/20 721 -214.43.240.0/21 721 -214.43.248.0/24 721 -214.43.249.0/24 1540 -214.43.250.0/24 1540 -214.43.251.0/24 721 -214.43.252.0/22 721 -214.44.0.0/16 721 -214.45.0.0/21 721 -214.45.8.0/21 3473 -214.45.16.0/20 721 -214.45.32.0/19 721 -214.45.64.0/21 721 -214.45.72.0/21 3473 -214.45.80.0/20 721 -214.45.96.0/19 721 -214.45.128.0/17 721 -214.46.0.0/16 721 -214.47.0.0/17 5972 -214.47.128.0/22 5972 -214.47.132.0/24 5972 -214.47.133.0/24 721 -214.47.134.0/23 721 -214.47.136.0/21 5972 -214.47.144.0/20 5972 -214.47.160.0/19 5972 -214.47.192.0/23 5972 -214.47.194.0/24 5972 -214.47.195.0/24 721 -214.47.196.0/22 721 -214.47.200.0/21 721 -214.47.208.0/22 721 -214.47.212.0/24 492 -214.47.213.0/24 721 -214.47.214.0/23 721 -214.47.216.0/21 721 -214.47.224.0/20 721 -214.47.240.0/22 721 -214.47.244.0/23 5972 -214.47.246.0/23 721 -214.47.248.0/21 721 -214.48.0.0/22 27064 -214.48.4.0/24 27065 -214.48.5.0/24 27064 -214.48.6.0/24 721 -214.48.7.0/24 1733 -214.48.8.0/24 27066 -214.48.9.0/24 721 -214.48.10.0/23 27064 -214.48.12.0/22 27066 -214.48.16.0/22 27065 -214.48.20.0/22 27064 -214.48.24.0/21 27064 -214.48.32.0/21 27064 -214.48.40.0/22 27064 -214.48.44.0/22 1733 -214.48.48.0/22 27067 -214.48.52.0/22 1733 -214.48.56.0/21 1733 -214.48.64.0/22 721 -214.48.68.0/22 27064 -214.48.72.0/21 27066 -214.48.80.0/20 27064 -214.48.96.0/21 27064 -214.48.104.0/21 27066 -214.48.112.0/22 27064 -214.48.116.0/22 27066 -214.48.120.0/22 721 -214.48.124.0/22 27064 -214.48.128.0/22 27065 -214.48.132.0/22 27064 -214.48.136.0/21 27064 -214.48.144.0/20 27064 -214.48.160.0/21 27066 -214.48.168.0/22 27065 -214.48.172.0/22 27064 -214.48.176.0/22 27064 -214.48.180.0/22 721 -214.48.184.0/22 27064 -214.48.188.0/22 721 -214.48.192.0/20 721 -214.48.208.0/21 721 -214.48.216.0/22 721 -214.48.220.0/22 27064 -214.48.224.0/21 27064 -214.48.232.0/21 721 -214.48.240.0/22 721 -214.48.244.0/22 27064 -214.48.248.0/21 27064 -214.49.0.0/20 721 -214.49.16.0/21 5307 -214.49.24.0/22 5307 -214.49.28.0/22 721 -214.49.32.0/19 721 -214.49.64.0/18 721 -214.49.128.0/18 721 -214.49.192.0/19 721 -214.49.224.0/20 721 -214.49.240.0/22 721 -214.49.244.0/22 27142 -214.49.248.0/23 27142 -214.49.250.0/24 721 -214.49.251.0/24 27142 -214.49.252.0/23 27142 -214.49.254.0/24 27142 -214.49.255.0/24 721 -214.50.0.0/16 721 -214.51.0.0/20 721 -214.51.16.0/20 27138 -214.51.32.0/23 721 -214.51.34.0/23 27064 -214.51.36.0/22 721 -214.51.40.0/24 3473 -214.51.41.0/24 310 -214.51.42.0/24 309 -214.51.43.0/24 310 -214.51.44.0/22 721 -214.51.48.0/24 721 -214.51.49.0/24 310 -214.51.50.0/24 721 -214.51.51.0/24 310 -214.51.52.0/24 310 -214.51.53.0/24 721 -214.51.54.0/24 721 -214.51.55.0/24 313 -214.51.56.0/22 310 -214.51.60.0/24 310 -214.51.61.0/24 721 -214.51.62.0/23 721 -214.51.64.0/19 721 -214.51.96.0/21 721 -214.51.104.0/22 721 -214.51.108.0/23 721 -214.51.110.0/24 27066 -214.51.111.0/24 721 -214.51.112.0/22 721 -214.51.116.0/24 721 -214.51.117.0/24 309 -214.51.118.0/23 721 -214.51.120.0/24 721 -214.51.121.0/24 3474 -214.51.122.0/23 3474 -214.51.124.0/22 3474 -214.51.128.0/19 721 -214.51.160.0/24 721 -214.51.161.0/24 5972 -214.51.162.0/24 5972 -214.51.163.0/24 721 -214.51.164.0/23 494 -214.51.166.0/23 721 -214.51.168.0/21 721 -214.51.176.0/20 721 -214.51.192.0/18 721 -214.52.0.0/18 721 -214.52.64.0/19 721 -214.52.96.0/24 27064 -214.52.97.0/24 721 -214.52.98.0/23 721 -214.52.100.0/22 721 -214.52.104.0/21 721 -214.52.112.0/20 721 -214.52.128.0/17 721 -214.53.0.0/19 721 -214.53.32.0/24 27064 -214.53.33.0/24 721 -214.53.34.0/23 721 -214.53.36.0/22 721 -214.53.40.0/21 721 -214.53.48.0/20 721 -214.53.64.0/18 721 -214.53.128.0/17 721 -214.54.0.0/18 2046 -214.54.64.0/23 321 -214.54.66.0/23 721 -214.54.68.0/22 721 -214.54.72.0/21 721 -214.54.80.0/20 721 -214.54.96.0/19 721 -214.54.128.0/19 721 -214.54.160.0/20 721 -214.54.176.0/24 721 -214.54.177.0/24 27064 -214.54.178.0/23 721 -214.54.180.0/22 721 -214.54.184.0/23 721 -214.54.186.0/24 721 -214.54.187.0/24 27064 -214.54.188.0/23 27064 -214.54.190.0/23 721 -214.54.192.0/19 121 -214.54.224.0/22 121 -214.54.228.0/23 721 -214.54.230.0/24 121 -214.54.231.0/24 721 -214.54.232.0/21 721 -214.54.240.0/20 721 -214.55.0.0/19 6039 -214.55.32.0/20 6039 -214.55.48.0/21 6039 -214.55.56.0/22 6041 -214.55.60.0/22 6039 -214.55.64.0/18 6039 -214.55.128.0/17 6039 -214.56.0.0/18 721 -214.56.64.0/20 721 -214.56.80.0/23 721 -214.56.82.0/23 5307 -214.56.84.0/22 721 -214.56.88.0/21 721 -214.56.96.0/19 721 -214.56.128.0/18 721 -214.56.192.0/20 721 -214.56.208.0/23 721 -214.56.210.0/23 27064 -214.56.212.0/22 721 -214.56.216.0/21 721 -214.56.224.0/19 721 -214.57.0.0/16 721 -214.58.0.0/16 495 -214.59.0.0/19 5972 -214.59.32.0/19 721 -214.59.64.0/18 721 -214.59.128.0/18 721 -214.59.192.0/19 721 -214.59.224.0/20 721 -214.59.240.0/21 721 -214.59.248.0/22 721 -214.59.252.0/24 721 -214.59.253.0/24 5972 -214.59.254.0/23 721 -214.60.0.0/18 6039 -214.60.64.0/19 6039 -214.60.96.0/20 6042 -214.60.112.0/22 721 -214.60.116.0/22 6040 -214.60.120.0/24 6041 -214.60.121.0/24 745 -214.60.122.0/23 721 -214.60.124.0/23 6041 -214.60.126.0/23 6040 -214.60.128.0/17 721 -214.61.0.0/16 721 -214.62.0.0/15 721 -214.64.0.0/15 721 -214.66.0.0/19 300 -214.66.32.0/19 27064 -214.66.64.0/19 5307 -214.66.96.0/19 27142 -214.66.128.0/24 5961 -214.66.129.0/24 5307 -214.66.130.0/24 5961 -214.66.131.0/24 5307 -214.66.132.0/22 5961 -214.66.136.0/21 5961 -214.66.144.0/20 5961 -214.66.160.0/19 5974 -214.66.192.0/19 6026 -214.66.224.0/19 721 -214.67.0.0/16 721 -214.68.0.0/16 721 -214.69.0.0/17 27064 -214.69.128.0/23 27067 -214.69.130.0/23 27064 -214.69.132.0/22 27064 -214.69.136.0/21 27064 -214.69.144.0/20 27064 -214.69.160.0/19 27064 -214.69.192.0/19 27064 -214.69.224.0/21 27064 -214.69.232.0/21 27065 -214.69.240.0/21 27065 -214.69.248.0/23 27067 -214.69.250.0/23 27064 -214.69.252.0/22 27064 -214.70.0.0/15 721 -214.72.0.0/22 27064 -214.72.4.0/23 27066 -214.72.6.0/24 27066 -214.72.7.0/24 1733 -214.72.8.0/23 27065 -214.72.10.0/23 27064 -214.72.12.0/23 27064 -214.72.14.0/23 27066 -214.72.16.0/24 27066 -214.72.17.0/24 1733 -214.72.18.0/23 27065 -214.72.20.0/22 721 -214.72.24.0/21 721 -214.72.32.0/19 721 -214.72.64.0/18 721 -214.72.128.0/17 721 -214.73.0.0/16 721 -214.74.0.0/19 27064 -214.74.32.0/19 721 -214.74.64.0/19 27064 -214.74.96.0/19 721 -214.74.128.0/17 721 -214.75.0.0/20 5972 -214.75.16.0/23 5972 -214.75.18.0/24 5972 -214.75.19.0/24 721 -214.75.20.0/22 5972 -214.75.24.0/21 5972 -214.75.32.0/20 5972 -214.75.48.0/20 721 -214.75.64.0/20 721 -214.75.80.0/20 5972 -214.75.96.0/19 5972 -214.75.128.0/18 5972 -214.75.192.0/24 721 -214.75.193.0/24 5972 -214.75.194.0/24 5972 -214.75.195.0/24 721 -214.75.196.0/22 5972 -214.75.200.0/22 5972 -214.75.204.0/22 721 -214.75.208.0/20 5972 -214.75.224.0/21 5972 -214.75.232.0/22 721 -214.75.236.0/22 5972 -214.75.240.0/21 5972 -214.75.248.0/22 721 -214.75.252.0/22 5972 -214.76.0.0/18 5972 -214.76.64.0/19 5972 -214.76.96.0/22 721 -214.76.100.0/23 5972 -214.76.102.0/23 721 -214.76.104.0/22 721 -214.76.108.0/24 5972 -214.76.109.0/24 721 -214.76.110.0/23 5972 -214.76.112.0/23 721 -214.76.114.0/24 721 -214.76.115.0/24 5972 -214.76.116.0/22 5972 -214.76.120.0/22 721 -214.76.124.0/22 5972 -214.76.128.0/21 5972 -214.76.136.0/22 721 -214.76.140.0/22 5972 -214.76.144.0/20 5972 -214.76.160.0/20 5972 -214.76.176.0/21 5972 -214.76.184.0/22 5972 -214.76.188.0/24 5972 -214.76.189.0/24 721 -214.76.190.0/23 5972 -214.76.192.0/20 5972 -214.76.208.0/24 5972 -214.76.209.0/24 721 -214.76.210.0/23 721 -214.76.212.0/22 5972 -214.76.216.0/21 5972 -214.76.224.0/20 5972 -214.76.240.0/22 5972 -214.76.244.0/22 721 -214.76.248.0/22 5972 -214.76.252.0/22 721 -214.77.0.0/21 721 -214.77.8.0/21 5972 -214.77.16.0/22 721 -214.77.20.0/22 5972 -214.77.24.0/22 5972 -214.77.28.0/23 5972 -214.77.30.0/24 5972 -214.77.31.0/24 721 -214.77.32.0/19 5972 -214.77.64.0/23 5972 -214.77.66.0/24 5972 -214.77.67.0/24 721 -214.77.68.0/22 5972 -214.77.72.0/21 5972 -214.77.80.0/23 721 -214.77.82.0/23 5972 -214.77.84.0/22 5972 -214.77.88.0/21 5972 -214.77.96.0/20 5972 -214.77.112.0/22 5972 -214.77.116.0/23 721 -214.77.118.0/24 721 -214.77.119.0/24 5972 -214.77.120.0/21 5972 -214.77.128.0/18 5972 -214.77.192.0/20 5972 -214.77.208.0/24 5972 -214.77.209.0/24 721 -214.77.210.0/24 721 -214.77.211.0/24 5972 -214.77.212.0/22 5972 -214.77.216.0/21 5972 -214.77.224.0/20 5972 -214.77.240.0/22 5972 -214.77.244.0/22 721 -214.77.248.0/23 5972 -214.77.250.0/24 5972 -214.77.251.0/24 721 -214.77.252.0/22 5972 -214.78.0.0/17 5972 -214.78.128.0/20 5972 -214.78.144.0/21 5972 -214.78.152.0/23 5972 -214.78.154.0/24 5972 -214.78.155.0/24 721 -214.78.156.0/22 721 -214.78.160.0/20 5972 -214.78.176.0/21 721 -214.78.184.0/22 721 -214.78.188.0/22 5972 -214.78.192.0/20 5972 -214.78.208.0/21 5972 -214.78.216.0/22 5972 -214.78.220.0/23 5972 -214.78.222.0/23 721 -214.78.224.0/20 5972 -214.78.240.0/23 721 -214.78.242.0/23 5972 -214.78.244.0/23 5972 -214.78.246.0/23 721 -214.78.248.0/21 721 -214.79.0.0/18 721 -214.79.64.0/20 721 -214.79.80.0/22 721 -214.79.84.0/23 721 -214.79.86.0/23 5972 -214.79.88.0/21 721 -214.79.96.0/19 5972 -214.79.128.0/18 721 -214.79.192.0/19 721 -214.79.224.0/20 721 -214.79.240.0/22 721 -214.79.244.0/22 5972 -214.79.248.0/21 5972 -214.80.0.0/12 721 -214.96.0.0/11 721 -214.128.0.0/9 721 -215.0.0.0/16 721 -215.1.0.0/24 721 -215.1.1.0/24 5972 -215.1.2.0/23 5972 -215.1.4.0/22 721 -215.1.8.0/23 27046 -215.1.10.0/24 721 -215.1.11.0/24 27046 -215.1.12.0/23 27046 -215.1.14.0/24 721 -215.1.15.0/24 27046 -215.1.16.0/24 1503 -215.1.17.0/24 721 -215.1.18.0/23 721 -215.1.20.0/22 721 -215.1.24.0/22 721 -215.1.28.0/23 721 -215.1.30.0/24 721 -215.1.31.0/24 5972 -215.1.32.0/23 27066 -215.1.34.0/23 721 -215.1.36.0/22 721 -215.1.40.0/23 721 -215.1.42.0/23 1733 -215.1.44.0/24 27066 -215.1.45.0/24 721 -215.1.46.0/23 721 -215.1.48.0/24 27066 -215.1.49.0/24 721 -215.1.50.0/24 721 -215.1.51.0/24 27066 -215.1.52.0/22 721 -215.1.56.0/24 721 -215.1.57.0/24 27066 -215.1.58.0/24 721 -215.1.59.0/24 27149 -215.1.60.0/23 721 -215.1.62.0/23 747 -215.1.64.0/24 721 -215.1.65.0/24 27066 -215.1.66.0/24 27066 -215.1.67.0/24 721 -215.1.68.0/22 27066 -215.1.72.0/21 721 -215.1.80.0/24 721 -215.1.81.0/24 27066 -215.1.82.0/23 721 -215.1.84.0/24 147 -215.1.85.0/24 721 -215.1.86.0/23 721 -215.1.88.0/21 721 -215.1.96.0/20 747 -215.1.112.0/20 721 -215.1.128.0/17 721 -215.2.0.0/15 721 -215.4.0.0/14 721 -215.8.0.0/13 721 -215.16.0.0/12 721 -215.32.0.0/11 721 -215.64.0.0/16 721 -215.65.0.0/21 721 -215.65.8.0/23 721 -215.65.10.0/24 721 -215.65.11.0/24 27065 -215.65.12.0/22 721 -215.65.16.0/24 721 -215.65.17.0/24 1569 -215.65.18.0/23 721 -215.65.20.0/23 721 -215.65.22.0/24 721 -215.65.23.0/24 1559 -215.65.24.0/24 1569 -215.65.25.0/24 721 -215.65.26.0/23 1580 -215.65.28.0/22 721 -215.65.32.0/21 721 -215.65.40.0/23 721 -215.65.42.0/24 27065 -215.65.43.0/24 721 -215.65.44.0/22 721 -215.65.48.0/24 6034 -215.65.49.0/24 721 -215.65.50.0/23 1733 -215.65.52.0/22 721 -215.65.56.0/23 721 -215.65.58.0/24 721 -215.65.59.0/24 27065 -215.65.60.0/24 721 -215.65.61.0/24 27067 -215.65.62.0/23 721 -215.65.64.0/21 721 -215.65.72.0/24 27066 -215.65.73.0/24 721 -215.65.74.0/23 721 -215.65.76.0/22 492 -215.65.80.0/24 329 -215.65.81.0/24 721 -215.65.82.0/23 721 -215.65.84.0/22 721 -215.65.88.0/21 721 -215.65.96.0/20 721 -215.65.112.0/22 721 -215.65.116.0/24 27065 -215.65.117.0/24 721 -215.65.118.0/24 721 -215.65.119.0/24 1733 -215.65.120.0/22 721 -215.65.124.0/23 721 -215.65.126.0/24 721 -215.65.127.0/24 27065 -215.65.128.0/19 721 -215.65.160.0/19 571 -215.65.192.0/18 721 -215.66.0.0/16 721 -215.67.0.0/23 721 -215.67.2.0/24 495 -215.67.3.0/24 721 -215.67.4.0/24 495 -215.67.5.0/24 721 -215.67.6.0/23 149 -215.67.8.0/21 1554 -215.67.16.0/21 1554 -215.67.24.0/21 721 -215.67.32.0/20 721 -215.67.48.0/21 1554 -215.67.56.0/23 1554 -215.67.58.0/23 721 -215.67.60.0/24 721 -215.67.61.0/24 1554 -215.67.62.0/23 495 -215.67.64.0/18 495 -215.67.128.0/18 149 -215.67.192.0/20 721 -215.67.208.0/21 721 -215.67.216.0/22 721 -215.67.220.0/22 149 -215.67.224.0/21 1554 -215.67.232.0/23 1554 -215.67.234.0/23 721 -215.67.236.0/23 721 -215.67.238.0/24 721 -215.67.239.0/24 1554 -215.67.240.0/20 721 -215.68.0.0/22 5800 -215.68.4.0/22 721 -215.68.8.0/21 721 -215.68.16.0/21 721 -215.68.24.0/23 721 -215.68.26.0/24 721 -215.68.27.0/24 5800 -215.68.28.0/22 721 -215.68.32.0/20 721 -215.68.48.0/23 721 -215.68.50.0/24 721 -215.68.51.0/24 5800 -215.68.52.0/22 5800 -215.68.56.0/24 721 -215.68.57.0/24 5800 -215.68.58.0/23 5800 -215.68.60.0/23 721 -215.68.62.0/23 5800 -215.68.64.0/19 721 -215.68.96.0/20 721 -215.68.112.0/21 721 -215.68.120.0/24 5800 -215.68.121.0/24 721 -215.68.122.0/23 721 -215.68.124.0/22 721 -215.68.128.0/20 5306 -215.68.144.0/20 721 -215.68.160.0/19 721 -215.68.192.0/18 721 -215.69.0.0/17 721 -215.69.128.0/17 149 -215.70.0.0/15 721 -215.72.0.0/13 721 -215.80.0.0/12 721 -215.96.0.0/11 721 -216.0.0.0/19 2828 -216.0.32.0/22 2828 -216.0.36.0/24 2828 -216.0.37.0/24 11179 -216.0.38.0/23 2828 -216.0.40.0/21 2828 -216.0.48.0/24 2905 -216.0.49.0/24 2828 -216.0.50.0/24 2905 -216.0.51.0/24 2828 -216.0.52.0/23 2905 -216.0.54.0/23 2828 -216.0.56.0/21 2828 -216.0.64.0/19 2828 -216.0.96.0/21 2828 -216.0.104.0/23 2828 -216.0.106.0/24 2828 -216.0.107.0/24 53559 -216.0.108.0/22 2828 -216.0.112.0/24 2828 -216.0.113.0/24 40882 -216.0.114.0/23 2828 -216.0.116.0/24 19839 -216.0.117.0/24 2828 -216.0.118.0/23 2828 -216.0.120.0/21 2828 -216.0.128.0/20 2828 -216.0.144.0/24 2828 -216.0.145.0/24 12196 -216.0.146.0/23 2828 -216.0.148.0/22 2828 -216.0.152.0/22 2828 -216.0.156.0/24 22511 -216.0.157.0/24 2828 -216.0.158.0/24 2828 -216.0.159.0/24 18583 -216.0.160.0/19 2828 -216.0.192.0/18 2828 -216.1.0.0/18 2828 -216.1.64.0/21 2828 -216.1.72.0/24 32342 -216.1.73.0/24 2828 -216.1.74.0/24 22362 -216.1.75.0/24 2828 -216.1.76.0/22 2828 -216.1.80.0/20 2828 -216.1.96.0/22 2828 -216.1.100.0/24 32416 -216.1.101.0/24 2828 -216.1.102.0/23 2828 -216.1.104.0/21 2828 -216.1.112.0/22 27325 -216.1.116.0/22 2828 -216.1.120.0/21 2828 -216.1.128.0/20 2828 -216.1.144.0/21 2828 -216.1.152.0/23 2828 -216.1.154.0/24 2828 -216.1.155.0/24 40026 -216.1.156.0/22 2828 -216.1.160.0/20 2828 -216.1.176.0/22 2828 -216.1.180.0/23 2828 -216.1.182.0/24 2828 -216.1.183.0/24 32196 -216.1.184.0/21 2828 -216.1.192.0/19 2828 -216.1.224.0/22 2828 -216.1.228.0/24 22511 -216.1.229.0/24 2828 -216.1.230.0/23 2828 -216.1.232.0/23 2828 -216.1.234.0/24 2828 -216.1.235.0/24 394529 -216.1.236.0/22 2828 -216.1.240.0/20 2828 -216.2.0.0/18 2828 -216.2.64.0/21 2828 -216.2.72.0/22 2828 -216.2.76.0/23 63182 -216.2.78.0/23 2828 -216.2.80.0/20 2828 -216.2.96.0/19 2828 -216.2.128.0/19 2828 -216.2.160.0/20 2828 -216.2.176.0/21 2905 -216.2.184.0/21 2828 -216.2.192.0/22 19720 -216.2.196.0/22 2828 -216.2.200.0/21 2828 -216.2.208.0/24 2828 -216.2.209.0/24 701 -216.2.210.0/23 2828 -216.2.212.0/24 22362 -216.2.213.0/24 2828 -216.2.214.0/23 2828 -216.2.216.0/21 2828 -216.2.224.0/19 2828 -216.3.0.0/22 2828 -216.3.4.0/24 22530 -216.3.5.0/24 2828 -216.3.6.0/23 2828 -216.3.8.0/22 2828 -216.3.12.0/24 2828 -216.3.13.0/24 17043 -216.3.14.0/23 2828 -216.3.16.0/22 2828 -216.3.20.0/24 2828 -216.3.21.0/24 393628 -216.3.22.0/23 2828 -216.3.24.0/21 2828 -216.3.32.0/20 2828 -216.3.48.0/21 2828 -216.3.56.0/23 2828 -216.3.58.0/24 2828 -216.3.59.0/24 396250 -216.3.60.0/22 2828 -216.3.64.0/19 2828 -216.3.96.0/20 2828 -216.3.112.0/21 2828 -216.3.120.0/22 2828 -216.3.124.0/24 4905 -216.3.125.0/24 2828 -216.3.126.0/23 2828 -216.3.128.0/21 2828 -216.3.136.0/23 2828 -216.3.138.0/24 2828 -216.3.139.0/24 46204 -216.3.140.0/22 2828 -216.3.144.0/21 2828 -216.3.152.0/23 2828 -216.3.154.0/24 2828 -216.3.155.0/24 394928 -216.3.156.0/22 2828 -216.3.160.0/19 2828 -216.3.192.0/18 2828 -216.4.0.0/21 2828 -216.4.8.0/22 701 -216.4.12.0/22 2828 -216.4.16.0/20 2828 -216.4.32.0/22 2828 -216.4.36.0/23 2828 -216.4.38.0/23 7046 -216.4.40.0/21 2828 -216.4.48.0/21 2828 -216.4.56.0/22 2828 -216.4.60.0/24 2828 -216.4.61.0/24 395503 -216.4.62.0/23 2828 -216.4.64.0/19 2828 -216.4.96.0/20 393577 -216.4.112.0/20 2828 -216.4.128.0/19 2828 -216.4.160.0/22 2905 -216.4.164.0/22 2828 -216.4.168.0/21 2828 -216.4.176.0/22 17035 -216.4.180.0/22 2828 -216.4.184.0/21 2828 -216.4.192.0/22 2828 -216.4.196.0/24 2828 -216.4.197.0/24 62829 -216.4.198.0/24 394928 -216.4.199.0/24 2828 -216.4.200.0/21 2828 -216.4.208.0/20 2828 -216.4.224.0/21 2828 -216.4.232.0/22 2828 -216.4.236.0/24 2828 -216.4.237.0/24 7014 -216.4.238.0/24 19730 -216.4.239.0/24 2828 -216.4.240.0/20 2828 -216.5.0.0/24 69017 -216.5.1.0/24 2905 -216.5.2.0/23 2905 -216.5.4.0/22 2905 -216.5.8.0/21 2828 -216.5.16.0/20 10355 -216.5.32.0/22 2828 -216.5.36.0/23 2828 -216.5.38.0/24 395052 -216.5.39.0/24 2828 -216.5.40.0/21 2828 -216.5.48.0/24 394939 -216.5.49.0/24 2828 -216.5.50.0/23 2828 -216.5.52.0/22 2828 -216.5.56.0/21 2828 -216.5.64.0/21 2828 -216.5.72.0/22 2828 -216.5.76.0/23 2828 -216.5.78.0/23 17119 -216.5.80.0/23 2828 -216.5.82.0/24 26663 -216.5.83.0/24 2828 -216.5.84.0/22 2828 -216.5.88.0/24 19443 -216.5.89.0/24 2828 -216.5.90.0/23 2828 -216.5.92.0/22 2828 -216.5.96.0/20 2828 -216.5.112.0/22 2828 -216.5.116.0/23 2828 -216.5.118.0/24 63405 -216.5.119.0/24 2828 -216.5.120.0/24 394803 -216.5.121.0/24 2828 -216.5.122.0/23 2828 -216.5.124.0/22 2828 -216.5.128.0/19 2828 -216.5.160.0/20 2828 -216.5.176.0/22 2828 -216.5.180.0/23 2828 -216.5.182.0/24 2828 -216.5.183.0/24 26669 -216.5.184.0/21 2828 -216.5.192.0/21 2905 -216.5.200.0/21 2828 -216.5.208.0/20 2828 -216.5.224.0/19 2828 -216.6.0.0/20 6453 -216.6.16.0/21 6453 -216.6.24.0/23 6453 -216.6.26.0/24 6453 -216.6.27.0/24 35426 -216.6.28.0/22 6453 -216.6.32.0/19 6453 -216.6.64.0/24 4755 -216.6.65.0/24 6453 -216.6.66.0/23 6453 -216.6.68.0/22 6453 -216.6.72.0/21 6453 -216.6.80.0/24 33392 -216.6.81.0/24 6453 -216.6.82.0/23 6453 -216.6.84.0/22 6453 -216.6.88.0/21 6453 -216.6.96.0/20 6453 -216.6.112.0/21 6453 -216.6.120.0/23 6453 -216.6.122.0/24 6453 -216.6.123.0/24 395434 -216.6.124.0/22 6453 -216.6.128.0/18 11606 -216.6.192.0/21 29907 -216.6.200.0/24 6539 -216.6.201.0/24 32856 -216.6.202.0/24 30381 -216.6.203.0/24 6539 -216.6.204.0/23 14112 -216.6.206.0/23 6539 -216.6.208.0/20 7046 -216.6.224.0/24 15003 -216.6.225.0/24 396362 -216.6.228.0/24 396190 -216.6.229.0/24 15003 -216.6.230.0/24 396362 -216.6.233.0/24 396190 -216.6.234.0/24 395954 -216.6.235.0/24 396362 -216.6.236.0/24 396190 -216.6.239.0/24 15003 -216.6.240.0/20 394586 -216.7.0.0/19 7029 -216.7.32.0/20 11741 -216.7.48.0/23 11741 -216.7.50.0/24 47091 -216.7.51.0/24 11741 -216.7.52.0/22 11741 -216.7.56.0/21 11741 -216.7.64.0/20 11472 -216.7.80.0/21 46637 -216.7.88.0/21 13768 -216.7.112.0/20 30263 -216.7.128.0/20 13776 -216.7.144.0/20 32806 -216.7.160.0/19 29863 -216.7.224.0/22 19927 -216.7.252.0/22 19927 -216.8.0.0/19 7672 -216.8.32.0/19 32040 -216.8.64.0/21 14858 -216.8.72.0/22 14858 -216.8.76.0/23 19058 -216.8.78.0/23 14858 -216.8.80.0/24 14858 -216.8.81.0/24 19058 -216.8.82.0/23 14858 -216.8.84.0/22 14858 -216.8.89.0/24 14858 -216.8.90.0/24 14858 -216.8.92.0/22 14858 -216.8.96.0/19 32707 -216.8.128.0/19 7057 -216.8.160.0/20 7057 -216.8.176.0/22 13727 -216.8.180.0/22 7057 -216.8.184.0/21 7057 -216.8.192.0/18 8008 -216.9.0.0/19 18530 -216.9.52.0/22 852 -216.9.56.0/22 852 -216.9.60.0/22 577 -216.9.64.0/19 22343 -216.9.96.0/20 26231 -216.9.112.0/22 25813 -216.9.116.0/24 25813 -216.9.119.0/24 25813 -216.9.120.0/24 25813 -216.9.124.0/22 13743 -216.9.128.0/19 11069 -216.9.160.0/23 18600 -216.9.163.0/24 18600 -216.9.165.0/24 18600 -216.9.166.0/24 18600 -216.9.170.0/24 18600 -216.9.174.0/24 18600 -216.9.176.0/20 17385 -216.9.192.0/20 209 -216.9.208.0/20 7018 -216.9.224.0/20 7018 -216.9.240.0/20 18705 -216.10.0.0/21 21769 -216.10.8.0/24 21769 -216.10.9.0/24 54103 -216.10.10.0/24 21769 -216.10.11.0/24 54103 -216.10.12.0/24 21769 -216.10.13.0/24 54103 -216.10.14.0/24 21769 -216.10.15.0/24 54103 -216.10.16.0/21 21769 -216.10.24.0/23 21769 -216.10.26.0/23 42831 -216.10.28.0/23 46261 -216.10.30.0/23 21769 -216.10.32.0/20 13793 -216.10.48.0/20 33284 -216.10.70.0/23 394470 -216.10.74.0/23 394142 -216.10.76.0/24 63294 -216.10.80.0/20 32459 -216.10.96.0/19 4544 -216.10.128.0/20 13853 -216.10.144.0/23 11144 -216.10.146.0/24 11144 -216.10.147.0/24 13938 -216.10.148.0/24 13938 -216.10.150.0/23 11144 -216.10.152.0/21 11144 -216.10.160.0/23 21688 -216.10.162.0/23 32448 -216.10.164.0/22 32448 -216.10.168.0/22 32448 -216.10.172.0/22 21688 -216.10.176.0/22 32448 -216.10.180.0/23 32448 -216.10.182.0/24 21688 -216.10.183.0/24 23391 -216.10.184.0/24 26504 -216.10.185.0/24 36790 -216.10.186.0/24 26504 -216.10.187.0/24 23391 -216.10.188.0/23 26504 -216.10.190.0/23 36790 -216.10.192.0/20 16733 -216.10.208.0/20 30689 -216.10.224.0/22 40749 -216.10.228.0/22 21724 -216.10.232.0/23 395158 -216.10.234.0/24 53664 -216.10.235.0/24 7018 -216.10.236.0/22 13415 -216.10.240.0/20 394695 -216.11.0.0/16 14241 -216.12.0.0/17 7795 -216.12.128.0/19 29748 -216.12.160.0/20 26658 -216.12.176.0/22 18817 -216.12.180.0/23 18817 -216.12.182.0/24 18817 -216.12.184.0/23 18817 -216.12.187.0/24 18817 -216.12.188.0/22 18817 -216.12.192.0/19 36351 -216.12.224.0/19 14654 -216.13.0.0/19 15290 -216.13.32.0/20 15290 -216.13.48.0/24 15290 -216.13.49.0/24 21570 -216.13.50.0/23 15290 -216.13.52.0/22 15290 -216.13.56.0/21 15290 -216.13.64.0/18 15290 -216.13.128.0/19 15290 -216.13.160.0/20 15290 -216.13.176.0/22 15290 -216.13.180.0/23 15290 -216.13.182.0/24 15290 -216.13.183.0/24 62925 -216.13.184.0/21 15290 -216.13.192.0/18 15290 -216.14.0.0/22 14265 -216.14.4.0/24 22760 -216.14.5.0/24 14265 -216.14.6.0/23 14265 -216.14.8.0/21 14265 -216.14.16.0/20 14265 -216.14.32.0/19 14265 -216.14.64.0/20 21713 -216.14.80.0/20 40015 -216.14.96.0/20 19255 -216.14.112.0/20 46433 -216.14.144.0/20 19021 -216.14.160.0/20 3561 -216.14.176.0/20 46303 -216.14.192.0/20 18108 -216.14.208.0/20 11022 -216.14.224.0/19 21947 -216.15.0.0/17 6079 -216.15.128.0/17 7393 -216.16.0.0/22 20412 -216.16.4.0/24 393821 -216.16.5.0/24 20412 -216.16.6.0/23 20412 -216.16.8.0/21 20412 -216.16.16.0/20 20412 -216.16.32.0/19 20412 -216.16.64.0/19 20412 -216.16.96.0/22 20412 -216.16.100.0/23 20412 -216.16.102.0/24 46623 -216.16.103.0/24 20412 -216.16.104.0/21 20412 -216.16.112.0/20 20412 -216.16.128.0/20 22773 -216.16.144.0/20 19940 -216.16.160.0/21 21565 -216.16.168.0/22 21565 -216.16.173.0/24 21565 -216.16.174.0/23 21565 -216.16.176.0/20 21565 -216.16.192.0/20 11430 -216.16.208.0/20 22646 -216.16.224.0/19 14472 -216.17.0.0/21 10242 -216.17.8.0/24 62715 -216.17.9.0/24 10242 -216.17.10.0/23 10242 -216.17.12.0/22 10242 -216.17.16.0/20 10242 -216.17.32.0/19 10242 -216.17.64.0/19 10242 -216.17.96.0/20 19237 -216.17.112.0/24 14148 -216.17.120.0/21 13649 -216.17.128.0/18 6582 -216.17.192.0/20 6582 -216.17.208.0/22 6582 -216.17.212.0/23 6582 -216.17.214.0/24 393604 -216.17.215.0/24 6582 -216.17.216.0/21 6582 -216.17.224.0/20 6582 -216.17.240.0/23 6582 -216.17.242.0/24 12011 -216.17.243.0/24 6582 -216.17.244.0/22 6582 -216.17.248.0/21 6582 -216.18.0.0/20 6539 -216.18.16.0/22 6539 -216.18.20.0/22 11831 -216.18.24.0/21 6539 -216.18.32.0/19 6539 -216.18.64.0/23 6539 -216.18.66.0/24 577 -216.18.67.0/24 6539 -216.18.68.0/23 6539 -216.18.70.0/24 577 -216.18.71.0/24 6539 -216.18.72.0/21 6539 -216.18.80.0/21 6539 -216.18.88.0/22 6539 -216.18.92.0/23 6539 -216.18.94.0/23 577 -216.18.96.0/20 6539 -216.18.112.0/22 6539 -216.18.116.0/23 14112 -216.18.118.0/23 6539 -216.18.120.0/23 6539 -216.18.122.0/23 14112 -216.18.124.0/22 6539 -216.18.128.0/23 46725 -216.18.130.0/24 46725 -216.18.144.0/23 13713 -216.18.146.0/24 13713 -216.18.148.0/22 19994 -216.18.152.0/23 13713 -216.18.160.0/21 29789 -216.18.168.0/22 29789 -216.18.172.0/23 29789 -216.18.174.0/24 30361 -216.18.175.0/24 29789 -216.18.176.0/20 29789 -216.18.192.0/19 18450 -216.18.224.0/24 33569 -216.18.225.0/24 10557 -216.18.226.0/23 33569 -216.18.228.0/24 33569 -216.18.229.0/24 46844 -216.18.230.0/24 10557 -216.18.231.0/24 33569 -216.18.232.0/24 33569 -216.18.237.0/24 33569 -216.18.239.0/24 18530 -216.18.240.0/20 20101 -216.19.0.0/18 64242 -216.19.64.0/20 577 -216.19.84.0/24 36008 -216.19.86.0/24 36008 -216.19.87.0/24 20161 -216.19.92.0/24 36008 -216.19.95.0/24 36008 -216.19.104.0/23 14182 -216.19.108.0/23 14182 -216.19.110.0/24 14182 -216.19.112.0/20 14325 -216.19.128.0/19 3561 -216.19.160.0/20 3561 -216.19.176.0/20 40029 -216.19.192.0/20 204472 -216.19.208.0/21 200494 -216.19.216.0/23 204472 -216.19.218.0/24 5784 -216.19.219.0/24 204472 -216.19.220.0/22 204472 -216.19.224.0/19 19323 -216.20.0.0/18 14361 -216.20.64.0/19 14361 -216.20.96.0/22 14361 -216.20.100.0/24 7015 -216.20.101.0/24 14361 -216.20.102.0/23 14361 -216.20.104.0/21 14361 -216.20.112.0/20 14361 -216.20.128.0/20 40098 -216.20.149.0/24 10835 -216.20.150.0/23 10835 -216.20.152.0/23 10835 -216.20.192.0/20 7029 -216.20.226.0/24 6220 -216.20.228.0/24 6220 -216.20.233.0/24 6220 -216.20.234.0/23 6220 -216.20.237.0/24 6220 -216.20.238.0/23 6220 -216.20.240.0/22 6220 -216.20.244.0/23 6220 -216.20.247.0/24 6220 -216.20.248.0/21 6220 -216.21.0.0/24 3445 -216.21.2.0/23 715 -216.21.8.0/23 20454 -216.21.10.0/24 393504 -216.21.11.0/24 134705 -216.21.12.0/23 53334 -216.21.14.0/24 7377 -216.21.15.0/24 63069 -216.21.16.0/24 3445 -216.21.17.0/24 30372 -216.21.18.0/23 5721 -216.21.24.0/21 40266 -216.21.32.0/19 16399 -216.21.64.0/19 16423 -216.21.96.0/19 15116 -216.21.128.0/20 15247 -216.21.144.0/22 15247 -216.21.148.0/24 15247 -216.21.149.0/24 19905 -216.21.150.0/23 15247 -216.21.152.0/21 15247 -216.21.160.0/20 16591 -216.21.176.0/21 31920 -216.21.184.0/21 53256 -216.21.192.0/20 33247 -216.21.208.0/21 26223 -216.21.216.0/21 54225 -216.21.224.0/24 55002 -216.21.225.0/24 19871 -216.21.226.0/23 55002 -216.21.230.0/24 19871 -216.21.231.0/24 55002 -216.21.232.0/24 55002 -216.21.233.0/24 13910 -216.21.234.0/23 55002 -216.21.236.0/24 55002 -216.21.237.0/24 13768 -216.21.238.0/24 19871 -216.21.240.0/24 13649 -216.21.242.0/24 36758 -216.21.244.0/24 13649 -216.21.245.0/24 7381 -216.21.246.0/24 7381 -216.21.247.0/24 13649 -216.21.248.0/24 30189 -216.21.252.0/24 30189 -216.21.255.0/24 30189 -216.22.0.0/19 30633 -216.22.32.0/22 30633 -216.22.36.0/23 30633 -216.22.38.0/23 7203 -216.22.40.0/21 30633 -216.22.48.0/20 30633 -216.22.64.0/22 3356 -216.22.68.0/23 16526 -216.22.70.0/24 3356 -216.22.71.0/24 16526 -216.22.72.0/22 3356 -216.22.76.0/23 3356 -216.22.78.0/23 16526 -216.22.80.0/24 25612 -216.22.81.0/24 46908 -216.22.82.0/23 16526 -216.22.84.0/23 16526 -216.22.86.0/24 3356 -216.22.87.0/24 16526 -216.22.88.0/22 3356 -216.22.92.0/24 3356 -216.22.93.0/24 16526 -216.22.94.0/23 3356 -216.22.96.0/24 3356 -216.22.97.0/24 16526 -216.22.98.0/23 16526 -216.22.100.0/22 3356 -216.22.104.0/24 16940 -216.22.105.0/24 3356 -216.22.106.0/23 3356 -216.22.108.0/22 3356 -216.22.112.0/23 16526 -216.22.114.0/24 3356 -216.22.115.0/24 395800 -216.22.116.0/22 3356 -216.22.120.0/21 3356 -216.22.128.0/18 2828 -216.22.192.0/20 2828 -216.22.208.0/21 2828 -216.22.216.0/22 2828 -216.22.220.0/23 15265 -216.22.222.0/23 2828 -216.22.224.0/19 2828 -216.23.0.0/17 7029 -216.23.128.0/19 15290 -216.23.160.0/19 5693 -216.23.192.0/21 11766 -216.23.200.0/22 11766 -216.23.204.0/24 40799 -216.23.205.0/24 11766 -216.23.206.0/23 11766 -216.23.208.0/20 11766 -216.23.233.0/24 26585 -216.23.240.0/20 46231 -216.24.0.0/19 7333 -216.24.32.0/21 7333 -216.24.40.0/24 394384 -216.24.41.0/24 393618 -216.24.42.0/24 7333 -216.24.45.0/24 16509 -216.24.46.0/24 26331 -216.24.47.0/24 18437 -216.24.48.0/23 7333 -216.24.50.0/24 7333 -216.24.51.0/24 397920 -216.24.52.0/24 397261 -216.24.53.0/24 33012 -216.24.54.0/24 7333 -216.24.55.0/24 46746 -216.24.56.0/24 398146 -216.24.57.0/24 397273 -216.24.58.0/23 33402 -216.24.60.0/24 7018 -216.24.61.0/24 23528 -216.24.62.0/24 7333 -216.24.64.0/19 7795 -216.24.96.0/20 7795 -216.24.112.0/20 30200 -216.24.128.0/20 13649 -216.24.144.0/21 13649 -216.24.152.0/24 13649 -216.24.153.0/24 46531 -216.24.154.0/23 13649 -216.24.156.0/24 13649 -216.24.157.0/24 3356 -216.24.158.0/23 13649 -216.24.160.0/20 13703 -216.24.176.0/20 25820 -216.24.192.0/20 40676 -216.24.224.0/21 17358 -216.24.232.0/22 17358 -216.24.236.0/23 17358 -216.24.240.0/20 35916 -216.25.0.0/17 13768 -216.25.128.0/19 10823 -216.25.160.0/20 28086 -216.25.176.0/20 27216 -216.25.192.0/20 32674 -216.25.208.0/20 20469 -216.25.224.0/22 25625 -216.25.231.0/24 25625 -216.25.236.0/22 25625 -216.25.240.0/20 1403 -216.26.0.0/18 7029 -216.26.64.0/20 7029 -216.26.80.0/23 16999 -216.26.82.0/23 23148 -216.26.84.0/22 16999 -216.26.88.0/22 16999 -216.26.92.0/23 16999 -216.26.96.0/19 11796 -216.26.128.0/21 19271 -216.26.136.0/24 19271 -216.26.137.0/24 32880 -216.26.138.0/23 19271 -216.26.140.0/22 19271 -216.26.144.0/22 19271 -216.26.148.0/24 32880 -216.26.149.0/24 19271 -216.26.150.0/23 19271 -216.26.152.0/24 19271 -216.26.153.0/24 14594 -216.26.154.0/23 19271 -216.26.156.0/24 19271 -216.26.157.0/24 14594 -216.26.158.0/23 14594 -216.26.160.0/21 19271 -216.26.168.0/22 19271 -216.26.172.0/24 32880 -216.26.173.0/24 19271 -216.26.174.0/23 19271 -216.26.176.0/22 19271 -216.26.180.0/24 32880 -216.26.181.0/24 19271 -216.26.182.0/24 36333 -216.26.183.0/24 19271 -216.26.184.0/24 32880 -216.26.185.0/24 19271 -216.26.186.0/23 32880 -216.26.188.0/22 19271 -216.26.192.0/19 32277 -216.26.224.0/19 7029 -216.27.0.0/19 7349 -216.27.40.0/21 7349 -216.27.48.0/20 7349 -216.27.64.0/19 7349 -216.27.98.0/23 10466 -216.27.100.0/23 10466 -216.27.103.0/24 10466 -216.27.112.0/20 15320 -216.27.128.0/19 18566 -216.27.160.0/21 18566 -216.27.168.0/22 18566 -216.27.172.0/23 18566 -216.27.174.0/24 18566 -216.27.175.0/24 11696 -216.27.176.0/20 18566 -216.27.192.0/18 22343 -216.28.0.0/21 174 -216.28.8.0/24 29787 -216.28.9.0/24 174 -216.28.10.0/23 174 -216.28.12.0/22 174 -216.28.16.0/22 174 -216.28.20.0/24 14001 -216.28.21.0/24 174 -216.28.22.0/23 174 -216.28.24.0/21 174 -216.28.32.0/19 174 -216.28.64.0/18 174 -216.28.128.0/20 174 -216.28.144.0/21 174 -216.28.152.0/24 14001 -216.28.153.0/24 174 -216.28.154.0/23 174 -216.28.156.0/22 174 -216.28.160.0/19 174 -216.28.192.0/19 174 -216.28.224.0/20 174 -216.28.240.0/22 174 -216.28.244.0/24 174 -216.28.245.0/24 29787 -216.28.246.0/23 174 -216.28.248.0/21 174 -216.29.0.0/19 174 -216.29.32.0/21 174 -216.29.40.0/24 29787 -216.29.41.0/24 174 -216.29.42.0/23 174 -216.29.44.0/22 174 -216.29.48.0/20 174 -216.29.64.0/19 174 -216.29.96.0/24 29787 -216.29.97.0/24 174 -216.29.98.0/23 174 -216.29.100.0/22 174 -216.29.104.0/21 174 -216.29.112.0/24 174 -216.29.113.0/24 29787 -216.29.114.0/23 174 -216.29.116.0/22 174 -216.29.120.0/21 174 -216.29.128.0/20 174 -216.29.144.0/21 174 -216.29.152.0/24 174 -216.29.153.0/24 14001 -216.29.154.0/23 174 -216.29.156.0/22 174 -216.29.160.0/22 174 -216.29.164.0/24 174 -216.29.165.0/24 29787 -216.29.166.0/23 174 -216.29.168.0/21 174 -216.29.176.0/20 174 -216.29.192.0/21 174 -216.29.200.0/22 174 -216.29.204.0/24 174 -216.29.205.0/24 29787 -216.29.206.0/24 174 -216.29.207.0/24 29787 -216.29.208.0/20 174 -216.29.224.0/20 174 -216.29.240.0/21 174 -216.29.248.0/24 174 -216.29.249.0/24 29787 -216.29.250.0/24 29787 -216.29.251.0/24 174 -216.29.252.0/22 174 -216.30.0.0/20 2828 -216.30.16.0/21 2828 -216.30.24.0/21 394824 -216.30.32.0/24 36669 -216.30.33.0/24 2828 -216.30.34.0/23 2828 -216.30.36.0/22 2828 -216.30.40.0/21 2828 -216.30.48.0/20 2828 -216.30.64.0/18 2828 -216.30.128.0/20 2828 -216.30.144.0/21 4922 -216.30.152.0/23 4922 -216.30.154.0/24 4922 -216.30.155.0/24 396375 -216.30.156.0/22 4922 -216.30.160.0/20 22153 -216.30.176.0/20 22070 -216.30.192.0/21 15227 -216.30.200.0/23 15227 -216.30.202.0/24 394420 -216.30.203.0/24 15227 -216.30.204.0/22 15227 -216.30.208.0/20 15227 -216.30.224.0/19 15227 -216.31.0.0/18 7850 -216.31.64.0/22 7850 -216.31.68.0/23 7850 -216.31.70.0/24 55225 -216.31.71.0/24 7850 -216.31.72.0/21 7850 -216.31.80.0/20 7850 -216.31.96.0/20 7850 -216.31.112.0/24 15326 -216.31.113.0/24 7850 -216.31.114.0/23 7850 -216.31.116.0/22 7850 -216.31.120.0/21 7850 -216.31.128.0/18 11509 -216.31.192.0/20 1273 -216.31.224.0/19 14265 -216.32.0.0/19 3561 -216.32.32.0/20 3561 -216.32.48.0/21 3561 -216.32.56.0/22 3561 -216.32.60.0/24 14415 -216.32.61.0/24 3561 -216.32.62.0/24 394463 -216.32.63.0/24 3561 -216.32.64.0/18 3561 -216.32.128.0/20 3561 -216.32.144.0/23 3561 -216.32.146.0/23 11880 -216.32.148.0/22 3561 -216.32.152.0/21 3561 -216.32.160.0/20 3561 -216.32.176.0/22 3561 -216.32.180.0/22 8075 -216.32.184.0/21 3561 -216.32.192.0/24 16276 -216.32.193.0/24 3561 -216.32.194.0/24 16276 -216.32.195.0/24 3561 -216.32.196.0/22 46945 -216.32.200.0/21 3561 -216.32.208.0/22 3561 -216.32.212.0/24 3561 -216.32.213.0/24 16276 -216.32.214.0/23 3561 -216.32.216.0/24 16276 -216.32.217.0/24 3561 -216.32.218.0/24 16276 -216.32.219.0/24 3561 -216.32.220.0/24 16276 -216.32.221.0/24 3561 -216.32.222.0/23 3561 -216.32.224.0/20 3561 -216.32.240.0/22 8075 -216.32.244.0/22 3561 -216.32.248.0/21 3561 -216.33.0.0/18 3561 -216.33.64.0/20 3561 -216.33.80.0/21 3561 -216.33.88.0/23 3561 -216.33.90.0/23 19905 -216.33.92.0/22 3561 -216.33.96.0/19 3561 -216.33.128.0/18 3561 -216.33.192.0/22 3561 -216.33.196.0/23 53387 -216.33.198.0/23 3561 -216.33.200.0/21 3561 -216.33.208.0/22 3561 -216.33.212.0/22 46696 -216.33.216.0/21 3561 -216.33.224.0/24 4298 -216.33.225.0/24 3561 -216.33.226.0/23 3561 -216.33.228.0/22 3561 -216.33.232.0/21 3561 -216.33.240.0/22 8075 -216.33.244.0/22 3561 -216.33.248.0/21 3561 -216.34.0.0/24 3561 -216.34.1.0/24 4298 -216.34.2.0/23 3561 -216.34.4.0/22 3561 -216.34.8.0/21 3561 -216.34.16.0/20 3561 -216.34.32.0/21 3561 -216.34.40.0/23 3561 -216.34.42.0/24 4298 -216.34.43.0/24 3561 -216.34.44.0/23 4298 -216.34.46.0/24 3561 -216.34.47.0/24 4298 -216.34.48.0/21 3561 -216.34.56.0/22 3561 -216.34.60.0/23 19701 -216.34.62.0/23 3561 -216.34.64.0/18 3561 -216.34.128.0/21 3561 -216.34.136.0/22 3561 -216.34.140.0/24 3561 -216.34.141.0/24 22680 -216.34.142.0/23 3561 -216.34.144.0/20 3561 -216.34.160.0/24 3561 -216.34.161.0/24 22013 -216.34.162.0/23 3561 -216.34.164.0/23 3561 -216.34.166.0/24 62827 -216.34.167.0/24 3561 -216.34.168.0/21 3561 -216.34.176.0/20 3561 -216.34.192.0/18 3561 -216.35.0.0/22 3561 -216.35.4.0/23 3561 -216.35.6.0/24 19701 -216.35.7.0/24 3561 -216.35.8.0/21 3561 -216.35.16.0/21 3561 -216.35.24.0/22 3561 -216.35.28.0/24 4298 -216.35.29.0/24 3561 -216.35.30.0/23 3561 -216.35.32.0/21 3561 -216.35.40.0/22 3561 -216.35.44.0/24 3561 -216.35.45.0/24 4298 -216.35.46.0/23 3561 -216.35.48.0/21 3561 -216.35.56.0/23 3561 -216.35.58.0/24 3561 -216.35.59.0/24 6195 -216.35.60.0/24 4298 -216.35.61.0/24 3561 -216.35.62.0/23 3561 -216.35.64.0/20 3561 -216.35.80.0/23 4298 -216.35.82.0/23 3561 -216.35.84.0/22 3561 -216.35.88.0/21 3561 -216.35.96.0/19 3561 -216.35.128.0/18 3561 -216.35.192.0/19 3561 -216.35.224.0/21 3561 -216.35.232.0/24 3561 -216.35.233.0/24 17389 -216.35.234.0/23 3561 -216.35.236.0/22 3561 -216.35.240.0/24 3561 -216.35.241.0/24 17389 -216.35.242.0/24 3561 -216.35.243.0/24 42427 -216.35.244.0/24 42427 -216.35.245.0/24 3561 -216.35.246.0/23 3561 -216.35.248.0/21 3561 -216.36.0.0/19 21688 -216.36.32.0/20 26978 -216.36.48.0/20 26914 -216.36.64.0/18 4565 -216.36.128.0/18 19016 -216.36.215.0/24 3064 -216.36.220.0/24 3064 -216.36.233.0/24 3064 -216.36.236.0/22 3064 -216.36.240.0/22 3064 -216.36.247.0/24 3064 -216.36.252.0/22 32400 -216.37.0.0/21 17054 -216.37.8.0/24 394618 -216.37.9.0/24 17054 -216.37.10.0/23 17054 -216.37.12.0/24 40493 -216.37.13.0/24 17054 -216.37.14.0/23 17054 -216.37.16.0/20 17054 -216.37.32.0/20 17054 -216.37.48.0/21 17054 -216.37.56.0/23 17054 -216.37.58.0/24 17054 -216.37.59.0/24 13492 -216.37.60.0/22 17054 -216.37.64.0/19 21922 -216.37.96.0/20 36378 -216.37.112.0/20 40473 -216.37.128.0/24 25663 -216.37.129.0/24 3593 -216.37.130.0/23 3593 -216.37.132.0/24 26556 -216.37.133.0/24 3593 -216.37.134.0/23 3593 -216.37.136.0/21 3593 -216.37.144.0/20 3593 -216.37.160.0/19 3593 -216.37.192.0/19 3593 -216.37.224.0/21 3593 -216.37.232.0/23 3593 -216.37.234.0/24 36279 -216.37.235.0/24 3593 -216.37.236.0/23 36279 -216.37.238.0/23 3593 -216.37.240.0/20 3593 -216.38.0.0/19 32181 -216.38.32.0/20 15100 -216.38.48.0/20 30633 -216.38.64.0/20 14729 -216.38.80.0/23 30687 -216.38.85.0/24 30687 -216.38.91.0/24 30687 -216.38.92.0/23 30687 -216.38.96.0/20 23479 -216.38.112.0/23 27543 -216.38.114.0/24 27543 -216.38.116.0/24 27543 -216.38.118.0/24 27543 -216.38.121.0/24 15865 -216.38.123.0/24 15865 -216.38.124.0/24 45691 -216.38.125.0/24 24329 -216.38.126.0/24 24329 -216.38.127.0/24 45691 -216.38.128.0/19 6994 -216.38.160.0/22 397751 -216.38.164.0/24 393362 -216.38.167.0/24 397033 -216.38.168.0/22 40818 -216.38.176.0/20 6931 -216.38.192.0/19 13649 -216.38.240.0/20 26867 -216.39.15.0/24 6379 -216.39.16.0/23 6379 -216.39.18.0/24 6379 -216.39.32.0/20 3561 -216.39.48.0/20 36647 -216.39.64.0/20 3561 -216.39.80.0/23 3561 -216.39.82.0/24 3561 -216.39.83.0/24 13993 -216.39.84.0/24 3561 -216.39.85.0/24 27250 -216.39.86.0/23 3561 -216.39.88.0/21 3561 -216.39.96.0/23 3561 -216.39.98.0/24 3561 -216.39.99.0/24 64212 -216.39.100.0/22 3561 -216.39.104.0/21 3561 -216.39.112.0/20 23342 -216.39.192.0/19 17306 -216.39.224.0/19 14676 -216.40.0.0/19 53828 -216.40.32.0/21 15348 -216.40.40.0/24 32636 -216.40.41.0/24 15348 -216.40.42.0/23 15348 -216.40.44.0/22 15348 -216.40.49.0/24 18523 -216.40.52.0/23 18523 -216.40.54.0/24 18523 -216.40.56.0/22 18523 -216.40.60.0/23 18523 -216.40.64.0/19 32479 -216.40.96.0/19 15247 -216.40.128.0/19 20001 -216.40.160.0/20 20001 -216.40.192.0/18 36351 -216.41.0.0/20 7029 -216.41.16.0/21 7029 -216.41.24.0/22 7029 -216.41.28.0/24 203061 -216.41.29.0/24 7029 -216.41.30.0/23 7029 -216.41.32.0/22 7029 -216.41.36.0/23 7029 -216.41.38.0/24 7029 -216.41.39.0/24 64200 -216.41.40.0/22 7029 -216.41.44.0/23 7029 -216.41.46.0/24 7029 -216.41.47.0/24 64200 -216.41.48.0/22 64200 -216.41.52.0/23 64200 -216.41.54.0/24 64200 -216.41.55.0/24 7029 -216.41.56.0/21 7029 -216.41.64.0/22 7029 -216.41.68.0/23 7029 -216.41.70.0/23 64200 -216.41.72.0/22 64200 -216.41.76.0/22 7029 -216.41.80.0/20 7029 -216.41.96.0/21 7029 -216.41.104.0/24 7029 -216.41.105.0/24 26914 -216.41.106.0/23 7029 -216.41.108.0/22 7029 -216.41.112.0/20 7029 -216.41.128.0/21 396287 -216.41.136.0/22 394423 -216.41.140.0/23 53559 -216.41.143.0/24 393648 -216.41.144.0/20 19816 -216.41.160.0/20 53435 -216.41.176.0/21 55044 -216.41.184.0/22 53435 -216.41.188.0/23 14643 -216.41.190.0/24 396946 -216.41.191.0/24 14643 -216.41.192.0/20 26472 -216.41.208.0/20 33570 -216.41.224.0/24 18871 -216.41.226.0/24 393262 -216.41.227.0/24 18999 -216.41.228.0/24 52 -216.41.229.0/24 21592 -216.41.230.0/24 29936 -216.41.231.0/24 17051 -216.41.232.0/22 64267 -216.41.236.0/23 7775 -216.41.238.0/23 13597 -216.41.240.0/20 22051 -216.42.0.0/17 2914 -216.42.128.0/23 2914 -216.42.130.0/24 2914 -216.42.131.0/24 19693 -216.42.132.0/24 19693 -216.42.133.0/24 2914 -216.42.134.0/23 2914 -216.42.136.0/21 2914 -216.42.144.0/20 2914 -216.42.160.0/19 2914 -216.42.192.0/18 2914 -216.43.0.0/16 7029 -216.44.0.0/22 22691 -216.44.4.0/22 2914 -216.44.8.0/21 2914 -216.44.16.0/20 14672 -216.44.32.0/19 2914 -216.44.64.0/18 2914 -216.44.128.0/18 2914 -216.44.192.0/20 2914 -216.44.208.0/21 2914 -216.44.216.0/22 2914 -216.44.220.0/24 2914 -216.44.221.0/24 25626 -216.44.222.0/23 2914 -216.44.224.0/19 2914 -216.45.0.0/19 8180 -216.45.32.0/20 31877 -216.45.48.0/21 8100 -216.45.56.0/22 8100 -216.45.60.0/24 8100 -216.45.61.0/24 40589 -216.45.62.0/23 40589 -216.45.64.0/19 18859 -216.45.96.0/19 40473 -216.45.128.0/22 33659 -216.45.132.0/23 33659 -216.45.134.0/23 7922 -216.45.136.0/23 7922 -216.45.138.0/24 33660 -216.45.139.0/24 7015 -216.45.140.0/23 7922 -216.45.142.0/24 7922 -216.45.143.0/24 16749 -216.45.144.0/20 7922 -216.45.160.0/19 7922 -216.45.192.0/20 7922 -216.45.208.0/21 7922 -216.45.216.0/22 7922 -216.45.220.0/23 33661 -216.45.222.0/24 33661 -216.45.223.0/24 7922 -216.45.224.0/21 7922 -216.45.232.0/22 7922 -216.45.236.0/24 32621 -216.45.237.0/24 7922 -216.45.238.0/24 7922 -216.45.239.0/24 13367 -216.45.240.0/21 7922 -216.45.248.0/22 13385 -216.45.252.0/24 13385 -216.45.253.0/24 46214 -216.45.254.0/23 13385 -216.46.0.0/19 11478 -216.46.32.0/20 35911 -216.46.48.0/20 19019 -216.46.64.0/19 4565 -216.46.96.0/24 3356 -216.46.97.0/24 11409 -216.46.98.0/23 11409 -216.46.100.0/23 11409 -216.46.102.0/24 3356 -216.46.103.0/24 11409 -216.46.104.0/22 11409 -216.46.108.0/24 11409 -216.46.109.0/24 3356 -216.46.110.0/24 3356 -216.46.111.0/24 11409 -216.46.112.0/21 11409 -216.46.120.0/23 11409 -216.46.122.0/23 55478 -216.46.124.0/22 11409 -216.46.128.0/19 11084 -216.46.160.0/21 13649 -216.46.168.0/24 3356 -216.46.169.0/24 13649 -216.46.170.0/23 13649 -216.46.172.0/23 13649 -216.46.174.0/24 15183 -216.46.175.0/24 13649 -216.46.176.0/20 13649 -216.46.192.0/19 19945 -216.47.0.0/21 21808 -216.47.8.0/21 12042 -216.47.16.0/21 27553 -216.47.24.0/21 7459 -216.47.32.0/22 394671 -216.47.36.0/23 397608 -216.47.38.0/23 397745 -216.47.40.0/21 395810 -216.47.48.0/20 21947 -216.47.64.0/19 7835 -216.47.96.0/20 397187 -216.47.128.0/19 29825 -216.47.160.0/19 12024 -216.47.192.0/24 7265 -216.47.193.0/24 12083 -216.47.194.0/23 12083 -216.47.196.0/23 12083 -216.47.198.0/24 12083 -216.47.199.0/24 7265 -216.47.200.0/22 7265 -216.47.204.0/23 7265 -216.47.206.0/24 7265 -216.47.207.0/24 12083 -216.47.208.0/21 7265 -216.47.216.0/22 7265 -216.47.220.0/24 7265 -216.47.221.0/24 12083 -216.47.222.0/23 7265 -216.47.224.0/19 7029 -216.48.0.0/18 7029 -216.48.64.0/20 3561 -216.48.80.0/20 25826 -216.48.96.0/22 11594 -216.48.102.0/23 3064 -216.48.104.0/22 21869 -216.48.108.0/23 63229 -216.48.112.0/22 11383 -216.48.116.0/23 11383 -216.48.118.0/23 17378 -216.48.120.0/21 11383 -216.48.128.0/20 33167 -216.48.144.0/20 11509 -216.48.160.0/20 11814 -216.48.176.0/20 26929 -216.48.192.0/18 393273 -216.49.0.0/18 3737 -216.49.64.0/20 7029 -216.49.80.0/20 7754 -216.49.96.0/19 19008 -216.49.144.0/20 26292 -216.49.160.0/21 14505 -216.49.168.0/24 14505 -216.49.169.0/24 11590 -216.49.170.0/23 11590 -216.49.172.0/24 11590 -216.49.173.0/24 14505 -216.49.174.0/23 14505 -216.49.176.0/20 19648 -216.49.193.0/24 33576 -216.49.201.0/24 11889 -216.49.206.0/24 11889 -216.49.216.0/24 19980 -216.49.218.0/23 19980 -216.49.224.0/19 16717 -216.50.0.0/19 2828 -216.50.32.0/20 2828 -216.50.48.0/22 2828 -216.50.52.0/23 2828 -216.50.54.0/24 30438 -216.50.55.0/24 2828 -216.50.56.0/21 2828 -216.50.64.0/18 2828 -216.50.128.0/22 2828 -216.50.132.0/24 63405 -216.50.133.0/24 2828 -216.50.134.0/23 2828 -216.50.136.0/21 2828 -216.50.144.0/20 2828 -216.50.160.0/19 2828 -216.50.192.0/20 2828 -216.50.208.0/21 2828 -216.50.216.0/24 31984 -216.50.217.0/24 2828 -216.50.218.0/23 2828 -216.50.220.0/22 2828 -216.50.224.0/21 2828 -216.50.232.0/23 2828 -216.50.234.0/24 2828 -216.50.235.0/24 395372 -216.50.236.0/22 2828 -216.50.240.0/21 2828 -216.50.248.0/22 2828 -216.50.252.0/24 2828 -216.50.253.0/24 393544 -216.50.254.0/23 2828 -216.51.0.0/20 2828 -216.51.16.0/21 2828 -216.51.24.0/23 2828 -216.51.26.0/24 395285 -216.51.27.0/24 2828 -216.51.28.0/22 2828 -216.51.32.0/24 2828 -216.51.33.0/24 55018 -216.51.34.0/23 2828 -216.51.36.0/24 2828 -216.51.37.0/24 20286 -216.51.38.0/23 2828 -216.51.40.0/23 2828 -216.51.42.0/24 2828 -216.51.43.0/24 17150 -216.51.44.0/22 2828 -216.51.48.0/20 2828 -216.51.64.0/20 2828 -216.51.80.0/21 2828 -216.51.88.0/22 2828 -216.51.92.0/23 2828 -216.51.94.0/24 2828 -216.51.95.0/24 12254 -216.51.96.0/19 2828 -216.51.128.0/23 5056 -216.51.130.0/24 396443 -216.51.131.0/24 5056 -216.51.132.0/23 5056 -216.51.134.0/24 5056 -216.51.135.0/24 62886 -216.51.136.0/23 5056 -216.51.138.0/24 46892 -216.51.139.0/24 30325 -216.51.140.0/24 5056 -216.51.141.0/24 396461 -216.51.142.0/23 5056 -216.51.144.0/24 394911 -216.51.145.0/24 63436 -216.51.146.0/23 5056 -216.51.148.0/22 5056 -216.51.152.0/22 5056 -216.51.156.0/24 5056 -216.51.157.0/24 396461 -216.51.158.0/23 5056 -216.51.160.0/24 62825 -216.51.161.0/24 5056 -216.51.162.0/23 5056 -216.51.164.0/24 5056 -216.51.165.0/24 16824 -216.51.166.0/24 19628 -216.51.167.0/24 5056 -216.51.168.0/24 11698 -216.51.169.0/24 5056 -216.51.170.0/24 63436 -216.51.171.0/24 5056 -216.51.172.0/24 5056 -216.51.173.0/24 63394 -216.51.174.0/24 53347 -216.51.175.0/24 5056 -216.51.176.0/21 5056 -216.51.184.0/24 18883 -216.51.185.0/24 5056 -216.51.186.0/23 18883 -216.51.188.0/23 5056 -216.51.190.0/24 18883 -216.51.191.0/24 5056 -216.51.192.0/22 5056 -216.51.196.0/24 30325 -216.51.197.0/24 5056 -216.51.198.0/23 5056 -216.51.200.0/23 5056 -216.51.202.0/24 18883 -216.51.203.0/24 46154 -216.51.204.0/23 22534 -216.51.206.0/24 5056 -216.51.207.0/24 63394 -216.51.208.0/24 5056 -216.51.209.0/24 46627 -216.51.210.0/23 5056 -216.51.212.0/24 62643 -216.51.213.0/24 5056 -216.51.214.0/23 5056 -216.51.216.0/24 5056 -216.51.217.0/24 62825 -216.51.218.0/24 5056 -216.51.219.0/24 63394 -216.51.220.0/23 5056 -216.51.222.0/24 5056 -216.51.223.0/24 63436 -216.51.224.0/24 62886 -216.51.225.0/24 30325 -216.51.226.0/24 5056 -216.51.227.0/24 30325 -216.51.228.0/24 5056 -216.51.229.0/24 22534 -216.51.230.0/24 397475 -216.51.231.0/24 5056 -216.51.232.0/24 5056 -216.51.233.0/24 63394 -216.51.234.0/23 5056 -216.51.236.0/23 5056 -216.51.238.0/24 63394 -216.51.239.0/24 5056 -216.51.240.0/22 18883 -216.51.244.0/24 5056 -216.51.245.0/24 16824 -216.51.246.0/24 5056 -216.51.247.0/24 46627 -216.51.248.0/24 5056 -216.51.249.0/24 394911 -216.51.250.0/24 5056 -216.51.251.0/24 396878 -216.51.252.0/22 19628 -216.52.0.0/22 29791 -216.52.4.0/23 30282 -216.52.6.0/23 394439 -216.52.10.0/23 32452 -216.52.12.0/24 35944 -216.52.16.0/23 13443 -216.52.18.0/24 13443 -216.52.20.0/23 13443 -216.52.22.0/24 13443 -216.52.24.0/24 12179 -216.52.25.0/24 63018 -216.52.26.0/23 12179 -216.52.28.0/23 64510 -216.52.30.0/23 29791 -216.52.32.0/22 13790 -216.52.36.0/22 14745 -216.52.40.0/21 13790 -216.52.48.0/22 14742 -216.52.52.0/24 14742 -216.52.53.0/24 393218 -216.52.54.0/24 14742 -216.52.55.0/24 11855 -216.52.56.0/21 14742 -216.52.64.0/21 12178 -216.52.72.0/23 2639 -216.52.74.0/23 12178 -216.52.76.0/22 12178 -216.52.80.0/23 13791 -216.52.82.0/24 13791 -216.52.83.0/24 18690 -216.52.84.0/24 13791 -216.52.85.0/24 25604 -216.52.86.0/23 13791 -216.52.88.0/21 13789 -216.52.96.0/20 12181 -216.52.112.0/21 10913 -216.52.120.0/24 46847 -216.52.121.0/24 10913 -216.52.122.0/23 10913 -216.52.124.0/22 10913 -216.52.128.0/21 11853 -216.52.136.0/22 11853 -216.52.140.0/23 11853 -216.52.142.0/24 11853 -216.52.143.0/24 14586 -216.52.144.0/22 11853 -216.52.148.0/24 14586 -216.52.149.0/24 11853 -216.52.150.0/24 19993 -216.52.151.0/24 11853 -216.52.152.0/22 11853 -216.52.156.0/23 11853 -216.52.158.0/24 14744 -216.52.159.0/24 11853 -216.52.160.0/22 12180 -216.52.164.0/23 27229 -216.52.166.0/23 12180 -216.52.168.0/21 13791 -216.52.176.0/22 12179 -216.52.180.0/24 12179 -216.52.181.0/24 40686 -216.52.182.0/24 12179 -216.52.183.0/24 63018 -216.52.184.0/21 12179 -216.52.192.0/22 14745 -216.52.196.0/23 14745 -216.52.198.0/24 24246 -216.52.199.0/24 29791 -216.52.200.0/24 14745 -216.52.201.0/24 54155 -216.52.202.0/23 14745 -216.52.204.0/22 14745 -216.52.208.0/24 25786 -216.52.209.0/24 10912 -216.52.210.0/23 23433 -216.52.212.0/23 10912 -216.52.214.0/24 10912 -216.52.215.0/24 12098 -216.52.216.0/22 10912 -216.52.220.0/23 10912 -216.52.222.0/24 32374 -216.52.223.0/24 10912 -216.52.224.0/22 10912 -216.52.228.0/24 33557 -216.52.229.0/24 10912 -216.52.230.0/23 10912 -216.52.232.0/21 10912 -216.52.240.0/21 10912 -216.52.248.0/24 10912 -216.52.249.0/24 395934 -216.52.250.0/23 32873 -216.52.252.0/22 10912 -216.53.0.0/17 7270 -216.53.128.0/17 14288 -216.54.0.0/19 22773 -216.54.32.0/21 22773 -216.54.40.0/22 22773 -216.54.44.0/23 22773 -216.54.46.0/24 22773 -216.54.47.0/24 25713 -216.54.48.0/22 22773 -216.54.52.0/24 22773 -216.54.53.0/24 10786 -216.54.54.0/23 22773 -216.54.56.0/22 22773 -216.54.60.0/24 22334 -216.54.61.0/24 19396 -216.54.62.0/23 22773 -216.54.64.0/21 22773 -216.54.72.0/23 22773 -216.54.74.0/24 22773 -216.54.75.0/24 397055 -216.54.76.0/22 22773 -216.54.80.0/23 22773 -216.54.82.0/23 21746 -216.54.84.0/22 22773 -216.54.88.0/21 22773 -216.54.96.0/21 22773 -216.54.104.0/22 22773 -216.54.108.0/24 33298 -216.54.109.0/24 22773 -216.54.110.0/23 22773 -216.54.112.0/21 22773 -216.54.120.0/24 22773 -216.54.121.0/24 32383 -216.54.122.0/23 22773 -216.54.124.0/22 22773 -216.54.128.0/24 3549 -216.54.129.0/24 36456 -216.54.130.0/24 18521 -216.54.131.0/24 3549 -216.54.132.0/22 3549 -216.54.136.0/21 3549 -216.54.144.0/24 3549 -216.54.145.0/24 26820 -216.54.146.0/23 3549 -216.54.148.0/23 3549 -216.54.150.0/24 18849 -216.54.151.0/24 3549 -216.54.152.0/21 3549 -216.54.160.0/24 3549 -216.54.161.0/24 23314 -216.54.162.0/23 3549 -216.54.164.0/23 3549 -216.54.166.0/24 3549 -216.54.167.0/24 14454 -216.54.168.0/23 14454 -216.54.170.0/24 14454 -216.54.171.0/24 3549 -216.54.172.0/22 3549 -216.54.176.0/24 10969 -216.54.177.0/24 395004 -216.54.178.0/23 3549 -216.54.180.0/24 18631 -216.54.181.0/24 3549 -216.54.182.0/23 3549 -216.54.184.0/24 40765 -216.54.185.0/24 3549 -216.54.186.0/23 3549 -216.54.188.0/22 3549 -216.54.192.0/21 3549 -216.54.200.0/24 3549 -216.54.201.0/24 36020 -216.54.202.0/23 3549 -216.54.204.0/22 3549 -216.54.208.0/21 3549 -216.54.216.0/24 3549 -216.54.217.0/24 36020 -216.54.218.0/23 3549 -216.54.220.0/22 3549 -216.54.224.0/24 11298 -216.54.225.0/24 3549 -216.54.226.0/23 3549 -216.54.228.0/24 3549 -216.54.229.0/24 14454 -216.54.230.0/23 3549 -216.54.232.0/22 3549 -216.54.236.0/23 3549 -216.54.238.0/24 3549 -216.54.239.0/24 26831 -216.54.240.0/20 3549 -216.55.0.0/18 2828 -216.55.64.0/20 5693 -216.55.80.0/20 174 -216.55.96.0/20 3356 -216.55.112.0/20 36396 -216.55.128.0/22 18501 -216.55.132.0/23 30447 -216.55.134.0/24 30447 -216.55.135.0/24 9115 -216.55.136.0/21 18501 -216.55.144.0/20 30447 -216.55.160.0/21 18501 -216.55.168.0/22 18501 -216.55.172.0/22 30447 -216.55.176.0/21 18501 -216.55.184.0/22 18501 -216.55.188.0/22 14116 -216.55.192.0/20 7122 -216.55.208.0/21 394255 -216.55.216.0/21 7122 -216.55.224.0/20 7122 -216.55.240.0/20 396141 -216.56.0.0/16 2381 -216.57.0.0/18 7029 -216.57.64.0/20 21580 -216.57.80.0/24 33399 -216.57.81.0/24 32622 -216.57.82.0/23 19406 -216.57.84.0/22 19406 -216.57.88.0/21 19406 -216.57.96.0/24 21650 -216.57.98.0/24 21650 -216.57.100.0/24 21650 -216.57.102.0/24 21650 -216.57.104.0/21 21650 -216.57.112.0/24 11350 -216.57.113.0/24 19704 -216.57.114.0/24 26082 -216.57.118.0/23 26082 -216.57.120.0/24 32466 -216.57.122.0/23 26082 -216.57.124.0/22 26082 -216.57.128.0/23 14985 -216.57.130.0/24 21687 -216.57.131.0/24 14985 -216.57.132.0/22 14985 -216.57.136.0/22 14985 -216.57.140.0/23 14985 -216.57.142.0/24 395382 -216.57.143.0/24 14985 -216.57.144.0/23 14985 -216.57.146.0/24 46887 -216.57.147.0/24 14985 -216.57.148.0/23 14985 -216.57.150.0/23 46887 -216.57.152.0/24 14985 -216.57.153.0/24 46887 -216.57.154.0/24 30140 -216.57.155.0/24 14985 -216.57.156.0/23 14985 -216.57.158.0/24 46326 -216.57.159.0/24 19209 -216.57.160.0/20 32444 -216.57.176.0/20 62969 -216.57.192.0/19 6295 -216.57.224.0/20 7258 -216.57.240.0/20 7795 -216.58.0.0/17 11814 -216.58.128.0/22 13649 -216.58.132.0/24 13649 -216.58.133.0/24 32263 -216.58.134.0/23 13649 -216.58.136.0/21 13649 -216.58.144.0/21 13649 -216.58.152.0/22 13649 -216.58.156.0/24 54215 -216.58.157.0/24 13649 -216.58.158.0/23 13649 -216.58.160.0/22 13649 -216.58.164.0/23 13649 -216.58.166.0/24 13649 -216.58.167.0/24 396299 -216.58.168.0/21 13649 -216.58.189.0/24 13611 -216.58.192.0/19 15169 -216.58.224.0/20 19019 -216.58.240.0/22 19019 -216.58.244.0/24 19019 -216.58.245.0/24 40064 -216.58.246.0/23 19019 -216.58.248.0/21 19019 -216.59.0.0/19 15085 -216.59.32.0/20 15085 -216.59.48.0/23 15085 -216.59.50.0/24 15085 -216.59.51.0/24 15148 -216.59.52.0/22 15085 -216.59.56.0/22 53334 -216.59.60.0/23 53334 -216.59.62.0/24 36167 -216.59.63.0/24 53334 -216.59.64.0/22 13536 -216.59.68.0/22 14477 -216.59.72.0/21 13536 -216.59.80.0/20 13536 -216.59.96.0/24 21706 -216.59.97.0/24 22925 -216.59.98.0/24 22925 -216.59.99.0/24 11638 -216.59.100.0/22 22925 -216.59.104.0/21 22925 -216.59.112.0/20 22925 -216.59.128.0/22 16841 -216.59.132.0/22 19843 -216.59.136.0/21 32308 -216.59.144.0/20 16823 -216.59.160.0/19 32953 -216.59.192.0/19 35985 -216.59.224.0/19 7794 -216.60.0.0/20 7018 -216.60.16.0/23 7018 -216.60.18.0/24 30523 -216.60.19.0/24 7018 -216.60.20.0/22 7018 -216.60.24.0/21 7018 -216.60.32.0/19 7018 -216.60.64.0/18 7018 -216.60.128.0/18 7018 -216.60.192.0/23 7018 -216.60.194.0/24 21648 -216.60.195.0/24 7018 -216.60.196.0/22 7018 -216.60.200.0/21 7018 -216.60.208.0/21 7018 -216.60.216.0/22 7018 -216.60.220.0/23 7018 -216.60.222.0/24 15026 -216.60.223.0/24 7018 -216.60.224.0/19 7018 -216.61.0.0/17 7018 -216.61.128.0/19 7018 -216.61.160.0/20 7018 -216.61.176.0/21 7018 -216.61.184.0/23 7018 -216.61.186.0/24 7018 -216.61.187.0/24 2386 -216.61.188.0/22 7018 -216.61.192.0/20 7018 -216.61.208.0/21 7018 -216.61.216.0/23 7018 -216.61.218.0/24 16788 -216.61.219.0/24 7018 -216.61.220.0/22 7018 -216.61.224.0/21 7018 -216.61.232.0/23 7018 -216.61.234.0/24 7018 -216.61.235.0/24 21648 -216.61.236.0/22 7018 -216.61.240.0/20 7018 -216.62.0.0/18 7018 -216.62.64.0/19 7018 -216.62.96.0/22 7018 -216.62.100.0/24 2386 -216.62.101.0/24 7018 -216.62.102.0/23 7018 -216.62.104.0/21 7018 -216.62.112.0/20 7018 -216.62.128.0/17 7018 -216.63.0.0/21 7018 -216.63.8.0/22 7018 -216.63.12.0/23 7018 -216.63.14.0/24 17338 -216.63.15.0/24 7018 -216.63.16.0/20 7018 -216.63.32.0/19 7018 -216.63.64.0/21 7018 -216.63.72.0/24 25604 -216.63.73.0/24 7018 -216.63.74.0/23 7018 -216.63.76.0/22 7018 -216.63.80.0/20 7018 -216.63.96.0/19 7018 -216.63.128.0/17 7018 -216.64.0.0/17 7029 -216.64.128.0/20 3549 -216.64.144.0/21 3549 -216.64.152.0/22 3549 -216.64.156.0/23 3549 -216.64.158.0/23 10596 -216.64.160.0/21 3549 -216.64.168.0/24 3549 -216.64.169.0/24 19083 -216.64.170.0/23 3549 -216.64.172.0/22 3549 -216.64.176.0/24 3549 -216.64.177.0/24 40883 -216.64.178.0/23 3549 -216.64.180.0/22 3549 -216.64.184.0/21 3549 -216.64.192.0/19 3561 -216.64.224.0/20 18975 -216.64.240.0/20 22919 -216.65.0.0/17 13768 -216.65.128.0/19 2044 -216.65.160.0/19 22995 -216.65.192.0/21 16967 -216.65.200.0/22 16967 -216.65.204.0/24 7018 -216.65.205.0/24 16967 -216.65.206.0/23 16967 -216.65.208.0/20 16966 -216.65.224.0/23 27572 -216.65.226.0/24 27572 -216.65.227.0/24 3715 -216.65.228.0/23 27572 -216.65.233.0/24 27572 -216.65.237.0/24 27572 -216.65.240.0/24 27572 -216.65.241.0/24 30533 -216.65.242.0/23 30533 -216.65.244.0/23 30533 -216.65.246.0/23 27572 -216.65.248.0/21 27572 -216.66.0.0/21 6939 -216.66.8.0/22 6939 -216.66.12.0/23 393670 -216.66.14.0/23 6939 -216.66.16.0/21 6939 -216.66.24.0/22 6939 -216.66.28.0/23 13760 -216.66.30.0/23 6939 -216.66.32.0/21 6939 -216.66.40.0/23 6939 -216.66.42.0/24 30507 -216.66.43.0/24 6939 -216.66.44.0/22 6939 -216.66.48.0/20 6939 -216.66.64.0/20 6939 -216.66.80.0/21 6939 -216.66.88.0/22 6939 -216.66.92.0/24 56484 -216.66.93.0/24 6939 -216.66.94.0/23 6939 -216.66.96.0/19 17356 -216.66.128.0/18 26546 -216.66.192.0/20 13773 -216.66.210.0/24 40466 -216.66.211.0/24 11273 -216.66.216.0/21 11273 -216.66.224.0/19 11123 -216.67.0.0/17 7782 -216.67.128.0/18 3833 -216.67.192.0/21 7011 -216.67.200.0/22 7011 -216.67.204.0/23 7011 -216.67.206.0/24 7011 -216.67.207.0/24 5650 -216.67.208.0/23 5650 -216.67.210.0/23 7011 -216.67.212.0/23 5650 -216.67.214.0/24 5650 -216.67.215.0/24 7011 -216.67.216.0/23 7011 -216.67.218.0/24 7011 -216.67.219.0/24 5650 -216.67.220.0/23 7011 -216.67.222.0/24 7011 -216.67.223.0/24 5650 -216.67.224.0/19 25653 -216.68.0.0/20 6181 -216.68.16.0/22 6181 -216.68.20.0/23 6181 -216.68.22.0/24 19263 -216.68.23.0/24 6181 -216.68.24.0/21 6181 -216.68.32.0/20 6181 -216.68.48.0/24 27203 -216.68.49.0/24 6181 -216.68.50.0/24 19263 -216.68.51.0/24 6181 -216.68.52.0/22 6181 -216.68.56.0/22 6181 -216.68.60.0/24 6181 -216.68.61.0/24 63095 -216.68.62.0/23 6181 -216.68.64.0/23 6181 -216.68.66.0/24 6181 -216.68.67.0/24 23115 -216.68.68.0/22 23115 -216.68.72.0/22 6181 -216.68.76.0/24 30059 -216.68.77.0/24 20040 -216.68.78.0/23 6181 -216.68.80.0/22 6181 -216.68.84.0/24 6181 -216.68.85.0/24 62533 -216.68.86.0/23 6181 -216.68.88.0/23 6181 -216.68.90.0/24 6181 -216.68.91.0/24 63129 -216.68.92.0/22 6181 -216.68.96.0/20 6181 -216.68.112.0/21 6181 -216.68.120.0/22 6181 -216.68.124.0/24 6181 -216.68.125.0/24 19263 -216.68.126.0/23 6181 -216.68.128.0/19 6181 -216.68.160.0/20 6181 -216.68.176.0/22 6181 -216.68.180.0/23 6181 -216.68.182.0/23 19263 -216.68.184.0/21 6181 -216.68.192.0/21 6181 -216.68.200.0/22 6181 -216.68.204.0/24 6181 -216.68.205.0/24 393231 -216.68.206.0/23 6181 -216.68.208.0/22 6181 -216.68.212.0/24 7029 -216.68.213.0/24 6181 -216.68.214.0/23 6181 -216.68.216.0/21 6181 -216.68.224.0/21 6181 -216.68.232.0/23 30059 -216.68.234.0/23 6181 -216.68.236.0/24 27203 -216.68.237.0/24 6181 -216.68.238.0/23 6181 -216.68.240.0/21 6181 -216.68.248.0/22 6181 -216.68.252.0/24 6181 -216.68.253.0/24 27608 -216.68.254.0/23 6181 -216.69.0.0/18 22944 -216.69.80.0/20 2914 -216.69.99.0/24 17242 -216.69.100.0/22 17242 -216.69.106.0/24 17242 -216.69.108.0/22 17242 -216.69.117.0/24 53554 -216.69.120.0/24 53554 -216.69.128.0/19 26496 -216.69.160.0/20 26496 -216.69.176.0/21 26496 -216.69.184.0/24 26496 -216.69.185.0/24 44273 -216.69.186.0/23 26496 -216.69.188.0/22 26496 -216.69.192.0/19 40715 -216.69.224.0/23 3561 -216.69.226.0/24 15095 -216.69.227.0/24 3561 -216.69.228.0/24 15095 -216.69.229.0/24 3561 -216.69.230.0/23 3561 -216.69.232.0/21 3561 -216.69.240.0/22 23127 -216.69.244.0/22 36097 -216.69.248.0/23 36097 -216.69.250.0/23 23127 -216.69.252.0/22 36097 -216.70.0.0/21 12042 -216.70.8.0/24 12042 -216.70.9.0/24 47096 -216.70.10.0/23 12042 -216.70.12.0/24 12042 -216.70.13.0/24 47096 -216.70.14.0/23 12042 -216.70.16.0/24 12042 -216.70.17.0/24 47096 -216.70.18.0/23 12042 -216.70.20.0/23 12042 -216.70.22.0/24 47096 -216.70.23.0/24 12042 -216.70.24.0/23 12042 -216.70.26.0/23 47096 -216.70.28.0/23 47096 -216.70.30.0/24 12042 -216.70.31.0/24 397652 -216.70.32.0/20 12042 -216.70.48.0/24 12042 -216.70.50.0/23 12042 -216.70.52.0/22 12042 -216.70.56.0/22 26994 -216.70.62.0/24 12042 -216.70.64.0/18 31815 -216.70.128.0/20 18687 -216.70.144.0/22 18687 -216.70.148.0/22 14265 -216.70.152.0/22 14265 -216.70.156.0/22 18687 -216.70.160.0/20 18687 -216.70.176.0/22 14265 -216.70.180.0/22 18687 -216.70.184.0/22 18687 -216.70.188.0/22 14265 -216.70.192.0/19 21886 -216.70.224.0/19 14265 -216.71.0.0/18 11232 -216.71.64.0/20 39970 -216.71.80.0/20 46618 -216.71.98.0/23 396479 -216.71.100.0/24 19916 -216.71.103.0/24 40244 -216.71.104.0/21 40244 -216.71.112.0/20 40244 -216.71.128.0/21 16417 -216.71.136.0/24 30238 -216.71.137.0/24 16417 -216.71.138.0/24 16417 -216.71.139.0/24 30238 -216.71.140.0/22 16417 -216.71.144.0/22 16417 -216.71.148.0/23 16417 -216.71.150.0/24 16417 -216.71.152.0/22 16417 -216.71.156.0/22 30238 -216.71.160.0/24 393640 -216.71.161.0/24 11115 -216.71.162.0/23 393640 -216.71.164.0/24 11115 -216.71.165.0/24 393640 -216.71.166.0/23 393640 -216.71.168.0/21 393640 -216.71.176.0/20 393640 -216.71.192.0/19 40029 -216.71.224.0/20 18780 -216.72.0.0/22 5511 -216.72.4.0/23 51964 -216.72.6.0/24 5511 -216.72.7.0/24 51964 -216.72.8.0/21 6505 -216.72.16.0/21 6505 -216.72.24.0/22 5511 -216.72.28.0/22 10586 -216.72.32.0/22 1680 -216.72.36.0/22 5511 -216.72.40.0/22 1680 -216.72.44.0/23 5511 -216.72.46.0/24 51964 -216.72.47.0/24 5511 -216.72.48.0/20 5511 -216.72.64.0/21 5511 -216.72.72.0/24 5511 -216.72.73.0/24 8014 -216.72.74.0/23 5511 -216.72.76.0/23 5511 -216.72.78.0/24 5511 -216.72.79.0/24 51964 -216.72.80.0/21 5511 -216.72.88.0/21 51964 -216.72.96.0/19 5511 -216.72.128.0/21 51964 -216.72.136.0/24 5511 -216.72.137.0/24 51964 -216.72.138.0/24 51964 -216.72.139.0/24 5511 -216.72.140.0/23 5511 -216.72.142.0/24 51964 -216.72.143.0/24 5511 -216.72.144.0/21 51964 -216.72.152.0/21 5511 -216.72.160.0/21 6505 -216.72.168.0/24 27962 -216.72.169.0/24 6505 -216.72.170.0/23 6505 -216.72.172.0/22 6505 -216.72.176.0/20 6505 -216.72.192.0/19 5511 -216.72.224.0/23 5511 -216.72.226.0/24 21826 -216.72.227.0/24 5511 -216.72.228.0/24 51964 -216.72.229.0/24 5511 -216.72.230.0/23 5511 -216.72.232.0/24 5511 -216.72.233.0/24 51964 -216.72.234.0/24 51964 -216.72.235.0/24 5511 -216.72.236.0/24 5511 -216.72.237.0/24 8014 -216.72.238.0/23 51964 -216.72.240.0/20 5511 -216.73.0.0/21 7029 -216.73.8.0/23 7029 -216.73.10.0/23 15065 -216.73.12.0/22 7029 -216.73.16.0/20 7029 -216.73.32.0/21 7029 -216.73.40.0/24 5061 -216.73.41.0/24 7029 -216.73.42.0/23 7029 -216.73.44.0/22 7029 -216.73.48.0/20 7029 -216.73.64.0/20 16796 -216.73.80.0/20 15169 -216.73.96.0/20 22152 -216.73.112.0/21 22152 -216.73.120.0/22 22152 -216.73.124.0/23 22152 -216.73.126.0/24 22152 -216.73.127.0/24 25892 -216.73.128.0/18 14676 -216.73.192.0/19 20001 -216.73.224.0/20 17306 -216.73.240.0/20 16813 -216.74.0.0/18 20021 -216.74.64.0/24 21769 -216.74.65.0/24 54103 -216.74.66.0/24 21769 -216.74.67.0/24 54103 -216.74.68.0/24 21769 -216.74.69.0/24 54103 -216.74.70.0/24 21769 -216.74.71.0/24 54103 -216.74.72.0/22 46261 -216.74.76.0/23 9009 -216.74.78.0/24 55803 -216.74.79.0/24 132827 -216.74.80.0/23 21769 -216.74.82.0/24 19437 -216.74.83.0/24 46261 -216.74.84.0/23 23470 -216.74.86.0/24 21769 -216.74.87.0/24 54103 -216.74.88.0/23 54103 -216.74.90.0/24 21769 -216.74.91.0/24 54103 -216.74.92.0/24 54103 -216.74.93.0/24 21769 -216.74.94.0/23 54103 -216.74.96.0/24 23470 -216.74.97.0/24 46261 -216.74.98.0/24 21769 -216.74.99.0/24 9009 -216.74.100.0/22 9009 -216.74.104.0/22 9009 -216.74.108.0/22 46261 -216.74.112.0/22 21769 -216.74.116.0/24 8038 -216.74.117.0/24 21769 -216.74.118.0/24 132827 -216.74.119.0/24 21769 -216.74.120.0/21 46261 -216.74.128.0/19 3561 -216.74.160.0/23 3561 -216.74.162.0/24 394787 -216.74.163.0/24 3561 -216.74.164.0/22 3561 -216.74.168.0/21 3561 -216.74.176.0/20 3561 -216.74.192.0/19 13676 -216.74.224.0/19 11215 -216.75.0.0/18 10439 -216.75.64.0/19 7029 -216.75.112.0/20 15108 -216.75.128.0/20 17014 -216.75.144.0/22 17014 -216.75.148.0/24 17014 -216.75.149.0/24 36742 -216.75.150.0/23 17014 -216.75.152.0/23 17014 -216.75.154.0/24 17014 -216.75.155.0/24 394955 -216.75.156.0/22 17014 -216.75.160.0/19 7794 -216.75.192.0/20 14135 -216.75.208.0/22 26363 -216.75.212.0/23 26363 -216.75.216.0/22 26363 -216.75.220.0/24 26363 -216.75.222.0/23 13684 -216.75.224.0/20 33544 -216.75.240.0/22 3549 -216.75.244.0/24 3549 -216.75.245.0/24 26556 -216.75.246.0/23 3549 -216.75.248.0/24 26556 -216.75.249.0/24 3549 -216.75.250.0/24 26556 -216.75.251.0/24 3549 -216.75.252.0/24 26556 -216.75.253.0/24 3549 -216.75.254.0/23 3549 -216.76.0.0/20 6389 -216.76.16.0/21 6389 -216.76.24.0/22 6389 -216.76.28.0/23 6389 -216.76.30.0/24 17067 -216.76.31.0/24 6389 -216.76.32.0/19 6389 -216.76.64.0/18 6389 -216.76.128.0/17 6389 -216.77.0.0/19 6389 -216.77.32.0/21 6389 -216.77.40.0/24 6389 -216.77.41.0/24 53317 -216.77.42.0/23 6389 -216.77.44.0/22 6389 -216.77.48.0/22 6389 -216.77.52.0/23 6389 -216.77.54.0/24 6389 -216.77.55.0/24 17067 -216.77.56.0/21 6389 -216.77.64.0/22 6389 -216.77.68.0/24 13342 -216.77.69.0/24 6389 -216.77.70.0/23 6389 -216.77.72.0/21 6389 -216.77.80.0/21 6389 -216.77.88.0/22 6389 -216.77.92.0/23 6389 -216.77.94.0/24 6389 -216.77.95.0/24 395227 -216.77.96.0/19 6389 -216.77.128.0/17 6389 -216.78.0.0/20 6389 -216.78.16.0/22 6389 -216.78.20.0/23 6389 -216.78.22.0/23 6384 -216.78.24.0/21 6389 -216.78.32.0/19 6389 -216.78.64.0/20 6389 -216.78.80.0/21 6389 -216.78.88.0/22 6389 -216.78.92.0/22 6381 -216.78.96.0/20 6389 -216.78.112.0/21 6389 -216.78.120.0/22 6389 -216.78.124.0/24 6197 -216.78.125.0/24 6389 -216.78.126.0/23 6389 -216.78.128.0/18 6389 -216.78.192.0/21 6389 -216.78.200.0/21 7018 -216.78.208.0/20 6389 -216.78.224.0/19 6389 -216.79.0.0/18 6389 -216.79.64.0/20 6389 -216.79.80.0/21 6389 -216.79.88.0/22 6389 -216.79.92.0/23 6389 -216.79.94.0/24 6389 -216.79.95.0/24 17123 -216.79.96.0/19 6389 -216.79.128.0/20 6389 -216.79.144.0/21 7086 -216.79.152.0/21 6389 -216.79.160.0/19 6389 -216.79.192.0/18 6389 -216.80.0.0/22 6079 -216.80.4.0/24 6079 -216.80.5.0/24 36327 -216.80.6.0/24 36327 -216.80.7.0/24 6079 -216.80.8.0/21 6079 -216.80.16.0/20 6079 -216.80.32.0/20 6079 -216.80.48.0/22 6079 -216.80.52.0/23 6079 -216.80.54.0/24 6079 -216.80.55.0/24 36327 -216.80.56.0/21 6079 -216.80.64.0/20 6079 -216.80.80.0/21 6079 -216.80.88.0/22 6079 -216.80.92.0/24 33104 -216.80.93.0/24 6079 -216.80.94.0/23 6079 -216.80.96.0/19 6079 -216.80.128.0/17 7029 -216.81.0.0/19 7122 -216.81.32.0/21 19366 -216.81.40.0/23 19366 -216.81.42.0/24 32792 -216.81.43.0/24 19366 -216.81.44.0/22 19366 -216.81.48.0/20 21513 -216.81.64.0/20 397187 -216.81.80.0/20 15147 -216.81.96.0/19 11240 -216.81.128.0/19 11320 -216.81.160.0/20 11320 -216.81.176.0/24 395912 -216.81.177.0/24 11320 -216.81.178.0/23 11320 -216.81.180.0/22 11320 -216.81.184.0/21 11320 -216.81.192.0/18 11320 -216.82.3.0/24 26926 -216.82.6.0/23 26926 -216.82.8.0/23 26926 -216.82.32.0/19 26926 -216.82.64.0/19 17054 -216.82.96.0/21 17054 -216.82.104.0/22 17054 -216.82.108.0/23 17054 -216.82.110.0/24 27229 -216.82.111.0/24 17054 -216.82.112.0/20 17054 -216.82.128.0/19 18859 -216.82.160.0/20 16609 -216.82.176.0/20 36050 -216.82.192.0/19 7459 -216.82.224.0/23 12130 -216.82.227.0/24 12130 -216.82.228.0/22 12130 -216.82.233.0/24 32482 -216.82.234.0/23 16867 -216.82.240.0/22 26282 -216.82.246.0/24 26282 -216.82.248.0/24 26282 -216.82.252.0/23 26282 -216.82.254.0/24 26282 -216.82.255.0/24 16509 -216.83.0.0/19 11468 -216.83.32.0/19 64050 -216.83.64.0/20 17380 -216.83.80.0/22 30346 -216.83.94.0/24 30346 -216.83.96.0/19 10823 -216.83.128.0/19 5048 -216.83.160.0/19 7381 -216.83.192.0/20 16463 -216.83.224.0/19 7029 -216.84.0.0/19 3549 -216.84.32.0/20 3549 -216.84.48.0/22 3549 -216.84.52.0/23 23433 -216.84.54.0/23 3549 -216.84.56.0/21 3549 -216.84.64.0/20 3549 -216.84.80.0/22 3549 -216.84.84.0/24 63438 -216.84.85.0/24 3549 -216.84.86.0/23 3549 -216.84.88.0/24 3549 -216.84.89.0/24 32297 -216.84.90.0/23 3549 -216.84.92.0/22 3549 -216.84.96.0/19 3549 -216.84.128.0/21 3549 -216.84.136.0/22 3549 -216.84.140.0/24 3549 -216.84.141.0/24 26831 -216.84.142.0/23 26831 -216.84.144.0/21 3549 -216.84.152.0/22 3549 -216.84.156.0/24 18662 -216.84.157.0/24 3549 -216.84.158.0/23 3549 -216.84.160.0/22 3549 -216.84.164.0/24 3549 -216.84.165.0/24 393538 -216.84.166.0/23 3549 -216.84.168.0/21 3549 -216.84.176.0/23 3549 -216.84.178.0/24 3549 -216.84.179.0/24 17043 -216.84.180.0/22 3549 -216.84.184.0/22 3549 -216.84.188.0/24 36180 -216.84.189.0/24 3549 -216.84.190.0/24 3549 -216.84.191.0/24 62811 -216.84.192.0/22 3549 -216.84.196.0/23 3549 -216.84.198.0/23 23357 -216.84.200.0/21 25649 -216.84.208.0/21 25649 -216.84.216.0/21 3549 -216.84.224.0/21 62712 -216.84.232.0/23 62712 -216.84.234.0/23 3549 -216.84.236.0/22 3549 -216.84.240.0/20 33302 -216.85.0.0/18 3549 -216.85.64.0/20 3549 -216.85.80.0/24 3549 -216.85.81.0/24 33489 -216.85.82.0/23 3549 -216.85.84.0/24 3549 -216.85.85.0/24 33623 -216.85.86.0/23 3549 -216.85.88.0/21 3549 -216.85.96.0/20 3549 -216.85.112.0/23 3549 -216.85.114.0/24 3549 -216.85.115.0/24 40139 -216.85.116.0/22 3549 -216.85.120.0/21 3549 -216.85.128.0/21 3549 -216.85.136.0/22 3549 -216.85.140.0/23 3549 -216.85.142.0/23 40139 -216.85.144.0/22 3549 -216.85.148.0/24 53895 -216.85.149.0/24 3549 -216.85.150.0/23 3549 -216.85.152.0/21 3549 -216.85.160.0/22 3549 -216.85.164.0/24 14214 -216.85.165.0/24 3549 -216.85.166.0/24 393567 -216.85.167.0/24 3549 -216.85.168.0/22 3549 -216.85.172.0/24 3549 -216.85.173.0/24 26235 -216.85.174.0/24 393478 -216.85.175.0/24 63163 -216.85.176.0/20 3549 -216.85.192.0/18 3549 -216.86.0.0/19 7029 -216.86.32.0/19 11696 -216.86.64.0/21 27553 -216.86.72.0/21 22379 -216.86.80.0/20 40749 -216.86.96.0/19 19662 -216.86.128.0/20 35985 -216.86.144.0/21 32748 -216.86.152.0/22 32748 -216.86.156.0/23 394949 -216.86.158.0/23 32748 -216.86.166.0/23 12121 -216.86.169.0/24 12121 -216.86.176.0/24 20377 -216.86.177.0/24 7065 -216.86.178.0/23 20377 -216.86.180.0/22 20377 -216.86.184.0/21 20377 -216.86.192.0/19 12028 -216.86.224.0/20 10676 -216.86.240.0/20 25222 -216.87.0.0/19 13768 -216.87.32.0/20 6428 -216.87.48.0/21 6428 -216.87.56.0/22 6428 -216.87.60.0/24 1610 -216.87.61.0/24 6428 -216.87.62.0/23 6428 -216.87.64.0/19 13649 -216.87.96.0/19 40149 -216.87.128.0/22 30060 -216.87.134.0/23 30060 -216.87.139.0/24 7342 -216.87.140.0/24 7342 -216.87.141.0/24 30060 -216.87.142.0/23 7342 -216.87.145.0/24 10515 -216.87.146.0/23 26415 -216.87.148.0/24 26415 -216.87.152.0/24 40647 -216.87.153.0/24 20172 -216.87.154.0/23 10515 -216.87.160.0/19 3064 -216.87.192.0/20 394170 -216.87.208.0/20 13768 -216.87.224.0/20 4181 -216.87.240.0/20 13877 -216.88.0.0/20 3561 -216.88.16.0/22 3561 -216.88.20.0/24 3561 -216.88.21.0/24 18434 -216.88.22.0/23 3561 -216.88.24.0/21 3561 -216.88.32.0/22 3561 -216.88.36.0/24 46696 -216.88.37.0/24 3561 -216.88.38.0/23 3561 -216.88.40.0/21 3561 -216.88.48.0/20 3561 -216.88.64.0/18 3561 -216.88.128.0/19 3561 -216.88.160.0/23 3561 -216.88.162.0/24 19650 -216.88.163.0/24 3561 -216.88.164.0/22 3561 -216.88.168.0/21 3561 -216.88.176.0/20 3561 -216.88.192.0/18 3561 -216.89.0.0/18 3561 -216.89.64.0/21 3561 -216.89.72.0/22 3561 -216.89.76.0/24 19854 -216.89.77.0/24 3561 -216.89.78.0/23 3561 -216.89.80.0/20 3561 -216.89.96.0/19 3561 -216.89.128.0/22 3561 -216.89.132.0/23 3561 -216.89.134.0/24 3561 -216.89.135.0/24 14858 -216.89.136.0/21 3561 -216.89.144.0/20 3561 -216.89.160.0/20 3561 -216.89.176.0/23 30495 -216.89.178.0/23 3561 -216.89.180.0/22 3561 -216.89.184.0/21 3561 -216.89.192.0/20 3561 -216.89.208.0/21 3561 -216.89.216.0/22 3561 -216.89.220.0/23 3561 -216.89.222.0/24 3561 -216.89.223.0/24 25644 -216.89.224.0/21 46215 -216.89.232.0/21 3561 -216.89.240.0/20 3561 -216.90.0.0/18 3561 -216.90.64.0/22 14858 -216.90.68.0/23 14858 -216.90.70.0/23 3561 -216.90.72.0/21 3561 -216.90.80.0/20 3561 -216.90.96.0/21 3561 -216.90.104.0/22 3561 -216.90.108.0/24 23028 -216.90.109.0/24 3561 -216.90.110.0/23 3561 -216.90.112.0/24 3561 -216.90.113.0/24 18891 -216.90.114.0/23 3561 -216.90.116.0/22 3561 -216.90.120.0/21 3561 -216.90.128.0/17 3561 -216.91.0.0/23 3561 -216.91.2.0/24 209 -216.91.3.0/24 3561 -216.91.4.0/22 3561 -216.91.8.0/21 3561 -216.91.16.0/20 3561 -216.91.32.0/19 3561 -216.91.64.0/20 3561 -216.91.80.0/21 3561 -216.91.88.0/23 3561 -216.91.90.0/24 46215 -216.91.91.0/24 3561 -216.91.92.0/22 3561 -216.91.96.0/19 3561 -216.91.128.0/20 3561 -216.91.144.0/23 25644 -216.91.146.0/23 3561 -216.91.148.0/22 3561 -216.91.152.0/21 3561 -216.91.160.0/19 3561 -216.91.192.0/18 3561 -216.92.0.0/16 7859 -216.93.40.0/24 7321 -216.93.66.0/24 7321 -216.93.128.0/20 13825 -216.93.144.0/20 63276 -216.93.160.0/19 26228 -216.93.192.0/19 14051 -216.93.224.0/20 14051 -216.93.240.0/21 27552 -216.93.248.0/22 27552 -216.93.252.0/24 3384 -216.93.253.0/24 27552 -216.93.254.0/24 14120 -216.93.255.0/24 27552 -216.94.0.0/21 701 -216.94.8.0/24 701 -216.94.9.0/24 36698 -216.94.10.0/24 813 -216.94.11.0/24 701 -216.94.12.0/22 701 -216.94.16.0/22 701 -216.94.20.0/24 701 -216.94.21.0/24 813 -216.94.22.0/23 701 -216.94.24.0/21 701 -216.94.32.0/24 11486 -216.94.33.0/24 701 -216.94.34.0/23 701 -216.94.36.0/22 701 -216.94.40.0/24 36698 -216.94.41.0/24 701 -216.94.42.0/24 701 -216.94.43.0/24 40280 -216.94.44.0/22 701 -216.94.48.0/20 701 -216.94.64.0/18 701 -216.94.128.0/18 701 -216.94.192.0/19 701 -216.94.224.0/24 813 -216.94.225.0/24 701 -216.94.226.0/23 701 -216.94.228.0/23 701 -216.94.230.0/24 701 -216.94.231.0/24 813 -216.94.232.0/21 701 -216.94.240.0/20 701 -216.95.0.0/17 701 -216.95.128.0/18 701 -216.95.192.0/19 701 -216.95.224.0/21 701 -216.95.232.0/22 701 -216.95.236.0/24 17397 -216.95.237.0/24 701 -216.95.238.0/24 36698 -216.95.239.0/24 701 -216.95.240.0/24 27579 -216.95.241.0/24 701 -216.95.242.0/23 701 -216.95.244.0/22 701 -216.95.248.0/22 701 -216.95.252.0/23 701 -216.95.254.0/24 701 -216.95.255.0/24 22964 -216.96.0.0/17 7029 -216.96.128.0/17 3450 -216.97.0.0/17 54489 -216.97.128.0/23 33706 -216.97.144.0/22 30428 -216.97.160.0/19 7029 -216.97.192.0/19 14288 -216.97.224.0/20 15244 -216.97.240.0/20 4314 -216.98.0.0/20 6364 -216.98.32.0/20 53259 -216.98.48.0/20 22634 -216.98.64.0/24 7795 -216.98.65.0/24 54024 -216.98.66.0/23 7795 -216.98.68.0/22 7795 -216.98.72.0/22 7795 -216.98.76.0/23 7795 -216.98.78.0/24 396983 -216.98.79.0/24 7795 -216.98.80.0/20 7795 -216.98.96.0/19 2497 -216.98.128.0/19 10439 -216.98.160.0/21 10819 -216.98.172.0/24 397562 -216.98.173.0/24 6461 -216.98.174.0/24 395504 -216.98.175.0/24 395790 -216.98.191.0/24 46718 -216.98.192.0/20 6653 -216.98.208.0/22 266207 -216.98.212.0/22 266192 -216.98.216.0/22 266226 -216.98.220.0/22 266193 -216.98.224.0/19 19092 -216.99.3.0/24 22808 -216.99.16.0/21 394225 -216.99.24.0/21 22808 -216.99.32.0/20 19662 -216.99.48.0/20 36493 -216.99.64.0/23 1678 -216.99.82.0/23 1678 -216.99.85.0/24 1678 -216.99.87.0/24 1678 -216.99.89.0/24 1678 -216.99.90.0/24 1678 -216.99.96.0/20 13794 -216.99.112.0/20 33749 -216.99.128.0/20 36421 -216.99.144.0/20 40676 -216.99.160.0/20 15042 -216.99.176.0/20 23503 -216.99.192.0/23 54290 -216.99.194.0/24 4917 -216.99.198.0/24 133873 -216.99.200.0/24 395482 -216.99.201.0/24 55819 -216.99.203.0/24 22297 -216.99.204.0/24 133873 -216.99.206.0/24 7015 -216.99.207.0/24 53557 -216.99.208.0/23 395012 -216.99.210.0/24 11765 -216.99.212.0/23 30150 -216.99.216.0/23 10747 -216.99.218.0/24 7029 -216.99.219.0/24 53889 -216.99.220.0/24 16509 -216.99.221.0/24 6939 -216.99.222.0/24 8619 -216.99.223.0/24 21553 -216.99.224.0/19 2828 -216.100.0.0/18 7132 -216.100.64.0/20 7132 -216.100.80.0/21 7132 -216.100.88.0/23 23024 -216.100.90.0/24 23024 -216.100.91.0/24 26826 -216.100.92.0/24 23024 -216.100.93.0/24 394607 -216.100.94.0/23 23024 -216.100.96.0/19 7132 -216.100.128.0/18 7132 -216.100.192.0/21 7132 -216.100.200.0/24 14849 -216.100.201.0/24 7132 -216.100.202.0/23 7132 -216.100.204.0/22 7132 -216.100.208.0/20 7132 -216.100.224.0/21 7132 -216.100.232.0/24 7132 -216.100.233.0/24 25993 -216.100.234.0/23 7132 -216.100.236.0/22 7132 -216.100.240.0/20 7132 -216.101.0.0/20 7132 -216.101.16.0/24 7132 -216.101.17.0/24 14421 -216.101.18.0/23 7132 -216.101.20.0/22 7132 -216.101.24.0/21 7132 -216.101.32.0/19 7132 -216.101.64.0/19 7132 -216.101.96.0/20 7132 -216.101.112.0/23 7132 -216.101.114.0/24 7132 -216.101.115.0/24 30443 -216.101.116.0/22 7132 -216.101.120.0/21 7132 -216.101.128.0/17 7132 -216.102.0.0/21 7132 -216.102.8.0/22 7132 -216.102.12.0/22 23369 -216.102.16.0/20 7132 -216.102.32.0/19 7132 -216.102.64.0/21 7132 -216.102.72.0/21 23369 -216.102.80.0/22 23369 -216.102.84.0/22 7132 -216.102.88.0/21 7132 -216.102.96.0/19 7132 -216.102.128.0/17 7132 -216.103.0.0/23 22261 -216.103.2.0/23 7132 -216.103.4.0/22 7132 -216.103.8.0/21 7132 -216.103.16.0/20 7132 -216.103.32.0/19 7132 -216.103.64.0/19 7132 -216.103.96.0/20 7132 -216.103.112.0/21 7132 -216.103.120.0/22 7132 -216.103.124.0/23 7132 -216.103.126.0/24 7132 -216.103.127.0/24 25993 -216.103.128.0/20 7132 -216.103.144.0/23 7132 -216.103.146.0/24 7132 -216.103.147.0/24 36074 -216.103.148.0/22 7132 -216.103.152.0/22 7132 -216.103.156.0/24 7132 -216.103.157.0/24 36074 -216.103.158.0/23 7132 -216.103.160.0/19 7132 -216.103.192.0/18 7132 -216.104.16.0/20 36421 -216.104.32.0/20 32475 -216.104.48.0/21 16524 -216.104.56.0/22 16524 -216.104.62.0/24 16524 -216.104.63.0/24 209 -216.104.64.0/20 7385 -216.104.80.0/20 20098 -216.104.96.0/19 23184 -216.104.128.0/19 7146 -216.104.160.0/19 10732 -216.104.192.0/21 37183 -216.104.200.0/23 29039 -216.104.202.0/24 29039 -216.104.203.0/24 198394 -216.104.204.0/22 29039 -216.104.208.0/23 14365 -216.104.214.0/23 15224 -216.104.216.0/22 15224 -216.104.224.0/21 3561 -216.104.232.0/24 3561 -216.104.233.0/24 396167 -216.104.234.0/24 3561 -216.104.235.0/24 18705 -216.104.236.0/22 3561 -216.104.240.0/22 3561 -216.104.244.0/24 53635 -216.104.245.0/24 3561 -216.104.246.0/23 3561 -216.104.248.0/21 3561 -216.105.0.0/19 2828 -216.105.32.0/21 6130 -216.105.40.0/22 6130 -216.105.44.0/23 6130 -216.105.46.0/24 6130 -216.105.47.0/24 40866 -216.105.48.0/20 36394 -216.105.64.0/20 33470 -216.105.80.0/20 19842 -216.105.96.0/19 15278 -216.105.128.0/19 11672 -216.105.164.0/22 19437 -216.105.168.0/22 63018 -216.105.176.0/20 21898 -216.105.192.0/20 54471 -216.105.208.0/20 10352 -216.105.224.0/20 21843 -216.105.240.0/22 1397 -216.105.245.0/24 1397 -216.105.250.0/24 1397 -216.105.253.0/24 1399 -216.106.0.0/19 4581 -216.106.32.0/20 4581 -216.106.48.0/21 4581 -216.106.56.0/22 4581 -216.106.60.0/23 4581 -216.106.62.0/24 4581 -216.106.63.0/24 11929 -216.106.64.0/19 4581 -216.106.96.0/20 13319 -216.106.114.0/23 16791 -216.106.116.0/23 16791 -216.106.122.0/23 16791 -216.106.124.0/23 16791 -216.106.126.0/24 16791 -216.106.128.0/22 16657 -216.106.132.0/22 46887 -216.106.136.0/23 209 -216.106.138.0/24 3356 -216.106.139.0/24 54119 -216.106.140.0/24 7029 -216.106.141.0/24 209 -216.106.142.0/23 54119 -216.106.148.0/23 54119 -216.106.150.0/24 209 -216.106.151.0/24 54119 -216.106.152.0/24 54119 -216.106.153.0/24 7018 -216.106.154.0/23 209 -216.106.156.0/23 54119 -216.106.158.0/23 209 -216.106.160.0/20 40336 -216.106.176.0/20 29877 -216.106.192.0/18 13576 -216.107.0.0/23 11194 -216.107.2.0/24 39855 -216.107.3.0/24 11194 -216.107.4.0/24 54103 -216.107.5.0/24 11194 -216.107.6.0/24 54103 -216.107.7.0/24 39855 -216.107.8.0/23 39855 -216.107.10.0/24 54103 -216.107.11.0/24 39855 -216.107.12.0/24 39855 -216.107.13.0/24 11194 -216.107.14.0/23 54103 -216.107.16.0/24 54103 -216.107.17.0/24 39855 -216.107.18.0/23 11194 -216.107.20.0/23 54103 -216.107.22.0/23 39855 -216.107.24.0/24 54103 -216.107.25.0/24 39855 -216.107.26.0/24 54103 -216.107.27.0/24 11194 -216.107.28.0/23 54103 -216.107.30.0/24 39855 -216.107.31.0/24 54103 -216.107.32.0/23 11194 -216.107.34.0/23 54103 -216.107.36.0/24 54103 -216.107.37.0/24 39855 -216.107.38.0/24 54103 -216.107.39.0/24 39855 -216.107.40.0/24 11194 -216.107.41.0/24 54103 -216.107.42.0/23 39855 -216.107.44.0/22 39855 -216.107.48.0/22 54103 -216.107.52.0/24 54103 -216.107.53.0/24 39855 -216.107.54.0/24 11194 -216.107.55.0/24 39855 -216.107.56.0/23 39855 -216.107.58.0/24 11194 -216.107.59.0/24 39855 -216.107.60.0/23 11194 -216.107.62.0/24 54103 -216.107.63.0/24 11194 -216.107.64.0/18 7029 -216.107.128.0/20 395111 -216.107.144.0/24 20278 -216.107.145.0/24 53264 -216.107.146.0/23 53264 -216.107.148.0/23 53264 -216.107.150.0/24 20278 -216.107.151.0/24 53264 -216.107.152.0/22 20278 -216.107.156.0/22 53264 -216.107.160.0/20 19625 -216.107.176.0/20 32765 -216.107.192.0/19 11524 -216.107.224.0/21 11524 -216.107.232.0/23 11524 -216.107.234.0/24 11524 -216.107.235.0/24 13536 -216.107.236.0/22 11524 -216.108.0.0/24 6058 -216.108.1.0/24 22573 -216.108.4.0/24 22573 -216.108.7.0/24 22573 -216.108.9.0/24 6058 -216.108.10.0/23 6058 -216.108.14.0/23 6058 -216.108.16.0/23 6058 -216.108.18.0/24 22573 -216.108.20.0/22 6058 -216.108.25.0/24 6058 -216.108.26.0/23 6058 -216.108.28.0/22 6058 -216.108.32.0/19 33594 -216.108.64.0/18 33594 -216.108.128.0/19 33594 -216.108.160.0/24 33594 -216.108.161.0/24 6058 -216.108.162.0/23 6058 -216.108.164.0/22 6058 -216.108.168.0/21 6058 -216.108.176.0/21 6058 -216.108.184.0/22 6058 -216.108.188.0/23 6058 -216.108.191.0/24 6058 -216.108.192.0/20 3593 -216.108.208.0/21 30036 -216.108.217.0/24 13403 -216.108.218.0/23 30036 -216.108.224.0/20 26277 -216.108.240.0/20 133771 -216.109.0.0/19 3464 -216.109.32.0/20 3464 -216.109.48.0/22 3464 -216.109.52.0/24 393676 -216.109.53.0/24 3464 -216.109.54.0/23 3464 -216.109.56.0/21 3464 -216.109.64.0/19 3561 -216.109.96.0/22 53807 -216.109.101.0/24 203080 -216.109.103.0/24 60181 -216.109.104.0/22 16561 -216.109.110.0/23 16561 -216.109.128.0/23 14492 -216.109.130.0/23 22205 -216.109.132.0/22 22205 -216.109.136.0/21 14492 -216.109.144.0/21 14492 -216.109.152.0/21 22205 -216.109.160.0/24 13557 -216.109.161.0/24 204472 -216.109.162.0/24 204472 -216.109.163.0/24 13557 -216.109.164.0/23 203999 -216.109.166.0/24 203999 -216.109.167.0/24 204472 -216.109.168.0/21 200494 -216.109.188.0/22 11383 -216.109.192.0/20 12129 -216.109.208.0/20 3728 -216.109.224.0/20 29802 -216.109.240.0/21 3356 -216.109.253.0/24 19155 -216.109.254.0/24 3356 -216.109.255.0/24 209 -216.110.0.0/23 40908 -216.110.2.0/23 3549 -216.110.4.0/22 3549 -216.110.8.0/23 3549 -216.110.10.0/24 3549 -216.110.11.0/24 36523 -216.110.12.0/22 3549 -216.110.16.0/22 11942 -216.110.20.0/22 3549 -216.110.24.0/24 3549 -216.110.25.0/24 36070 -216.110.26.0/24 36070 -216.110.27.0/24 3549 -216.110.28.0/22 11942 -216.110.32.0/20 33070 -216.110.48.0/22 3549 -216.110.52.0/22 7029 -216.110.56.0/23 3549 -216.110.58.0/24 3549 -216.110.59.0/24 395483 -216.110.60.0/22 3549 -216.110.64.0/22 3549 -216.110.68.0/24 3549 -216.110.69.0/24 46531 -216.110.70.0/24 26831 -216.110.71.0/24 3549 -216.110.72.0/21 3549 -216.110.80.0/23 3549 -216.110.82.0/24 54319 -216.110.83.0/24 3549 -216.110.84.0/22 3549 -216.110.88.0/21 3549 -216.110.96.0/23 46408 -216.110.98.0/24 14813 -216.110.102.0/24 11139 -216.110.103.0/24 14813 -216.110.113.0/24 46650 -216.110.114.0/23 46650 -216.110.116.0/24 46650 -216.110.118.0/24 46650 -216.110.119.0/24 46408 -216.110.120.0/23 46408 -216.110.122.0/24 46408 -216.110.125.0/24 46650 -216.110.126.0/23 46650 -216.110.128.0/18 3064 -216.110.192.0/23 25899 -216.110.194.0/23 13692 -216.110.196.0/23 25899 -216.110.198.0/24 25899 -216.110.199.0/24 13692 -216.110.200.0/24 13692 -216.110.201.0/24 25899 -216.110.202.0/23 55246 -216.110.204.0/22 25899 -216.110.208.0/23 13692 -216.110.210.0/24 13692 -216.110.211.0/24 55246 -216.110.212.0/24 55246 -216.110.213.0/24 25899 -216.110.214.0/24 397422 -216.110.215.0/24 13692 -216.110.216.0/23 25899 -216.110.218.0/23 13692 -216.110.220.0/22 13692 -216.110.224.0/19 29974 -216.111.0.0/18 209 -216.111.64.0/20 209 -216.111.80.0/21 209 -216.111.88.0/22 209 -216.111.92.0/24 209 -216.111.93.0/24 14230 -216.111.94.0/23 209 -216.111.96.0/20 209 -216.111.112.0/22 209 -216.111.116.0/23 26840 -216.111.118.0/23 209 -216.111.120.0/21 209 -216.111.128.0/20 209 -216.111.144.0/22 209 -216.111.148.0/24 209 -216.111.149.0/24 19031 -216.111.150.0/23 209 -216.111.152.0/23 209 -216.111.154.0/24 26526 -216.111.155.0/24 209 -216.111.156.0/22 209 -216.111.160.0/24 209 -216.111.161.0/24 17195 -216.111.162.0/23 209 -216.111.164.0/22 209 -216.111.168.0/21 209 -216.111.176.0/23 209 -216.111.178.0/24 25836 -216.111.179.0/24 209 -216.111.180.0/22 209 -216.111.184.0/21 209 -216.111.192.0/21 209 -216.111.200.0/21 17143 -216.111.208.0/21 209 -216.111.216.0/23 209 -216.111.218.0/24 11688 -216.111.219.0/24 209 -216.111.220.0/22 209 -216.111.224.0/21 209 -216.111.232.0/23 209 -216.111.234.0/24 22022 -216.111.235.0/24 209 -216.111.236.0/22 209 -216.111.240.0/20 209 -216.112.0.0/19 2828 -216.112.32.0/23 2828 -216.112.34.0/24 26769 -216.112.35.0/24 2828 -216.112.36.0/22 2828 -216.112.40.0/21 2828 -216.112.48.0/20 19893 -216.112.64.0/19 2828 -216.112.96.0/20 2828 -216.112.112.0/22 2828 -216.112.116.0/24 2828 -216.112.117.0/24 30639 -216.112.118.0/23 2828 -216.112.120.0/21 2828 -216.112.128.0/19 2828 -216.112.160.0/20 2828 -216.112.176.0/22 2828 -216.112.180.0/23 17248 -216.112.182.0/23 2828 -216.112.184.0/21 2828 -216.112.192.0/22 7014 -216.112.196.0/23 2828 -216.112.198.0/23 22567 -216.112.200.0/21 2828 -216.112.208.0/20 2828 -216.112.224.0/20 2828 -216.112.240.0/23 16908 -216.112.242.0/23 2828 -216.112.244.0/22 2828 -216.112.248.0/21 2828 -216.113.0.0/22 5769 -216.113.4.0/23 5769 -216.113.6.0/23 30466 -216.113.8.0/21 5769 -216.113.16.0/21 5769 -216.113.24.0/22 5769 -216.113.28.0/23 395075 -216.113.30.0/24 5769 -216.113.31.0/24 395075 -216.113.32.0/21 5769 -216.113.40.0/23 30466 -216.113.42.0/24 5769 -216.113.43.0/24 395075 -216.113.44.0/24 30336 -216.113.45.0/24 5769 -216.113.46.0/23 5769 -216.113.48.0/21 395075 -216.113.56.0/23 5769 -216.113.58.0/24 395075 -216.113.59.0/24 5769 -216.113.60.0/24 5769 -216.113.61.0/24 30466 -216.113.62.0/23 5769 -216.113.64.0/22 5769 -216.113.68.0/23 395075 -216.113.70.0/23 5769 -216.113.72.0/21 5769 -216.113.80.0/21 5769 -216.113.88.0/23 5769 -216.113.90.0/24 5769 -216.113.91.0/24 30466 -216.113.92.0/23 30466 -216.113.94.0/23 5769 -216.113.96.0/22 30336 -216.113.100.0/22 5769 -216.113.104.0/22 5769 -216.113.108.0/22 395075 -216.113.112.0/20 5769 -216.113.128.0/19 19631 -216.113.160.0/24 40533 -216.113.162.0/23 40533 -216.113.170.0/24 40533 -216.113.172.0/24 40533 -216.113.176.0/21 11643 -216.113.184.0/22 11643 -216.113.188.0/22 62955 -216.113.192.0/19 19662 -216.113.224.0/19 7029 -216.114.0.0/20 3561 -216.114.16.0/21 3561 -216.114.32.0/19 17306 -216.114.64.0/20 6428 -216.114.80.0/20 26851 -216.114.96.0/19 23155 -216.114.128.0/20 5738 -216.114.144.0/23 5738 -216.114.146.0/24 13536 -216.114.147.0/24 5738 -216.114.148.0/24 5738 -216.114.149.0/24 54989 -216.114.150.0/24 5738 -216.114.151.0/24 22599 -216.114.152.0/21 5738 -216.114.160.0/20 5738 -216.114.176.0/23 5738 -216.114.178.0/23 54989 -216.114.180.0/22 5738 -216.114.184.0/23 13536 -216.114.186.0/23 5738 -216.114.188.0/22 5738 -216.114.192.0/18 12042 -216.115.0.0/20 36012 -216.115.16.0/24 17151 -216.115.17.0/24 16509 -216.115.18.0/24 17151 -216.115.20.0/24 16509 -216.115.21.0/24 14618 -216.115.22.0/24 14618 -216.115.23.0/24 16509 -216.115.24.0/21 17151 -216.115.32.0/19 15136 -216.115.64.0/21 23005 -216.115.72.0/22 23005 -216.115.76.0/23 23005 -216.115.78.0/24 23005 -216.115.79.0/24 26914 -216.115.80.0/23 23005 -216.115.82.0/24 23005 -216.115.83.0/24 33064 -216.115.84.0/23 23005 -216.115.86.0/23 26914 -216.115.88.0/24 15178 -216.115.89.0/24 23005 -216.115.90.0/23 23005 -216.115.92.0/22 23005 -216.115.96.0/20 10310 -216.115.112.0/20 21528 -216.115.128.0/19 5009 -216.115.160.0/21 11676 -216.115.168.0/22 11676 -216.115.173.0/24 11676 -216.115.174.0/24 11676 -216.115.176.0/22 395993 -216.115.180.0/24 63417 -216.115.184.0/22 395800 -216.115.188.0/24 18439 -216.115.190.0/23 7018 -216.115.192.0/20 40091 -216.115.208.0/22 16815 -216.115.213.0/24 16815 -216.115.214.0/24 16815 -216.115.216.0/24 16815 -216.115.218.0/23 16815 -216.115.220.0/22 16815 -216.115.224.0/19 11668 -216.116.0.0/20 55214 -216.116.16.0/20 6181 -216.116.32.0/22 11102 -216.116.36.0/24 11102 -216.116.39.0/24 11102 -216.116.40.0/22 11102 -216.116.44.0/23 11102 -216.116.46.0/24 174 -216.116.47.0/24 11102 -216.116.56.0/24 9237 -216.116.64.0/20 46130 -216.116.80.0/23 30605 -216.116.82.0/24 14010 -216.116.83.0/24 30605 -216.116.84.0/23 30605 -216.116.87.0/24 14010 -216.116.88.0/24 30652 -216.116.89.0/24 14010 -216.116.90.0/23 14010 -216.116.92.0/23 30652 -216.116.95.0/24 14010 -216.116.96.0/19 11509 -216.116.128.0/24 12183 -216.116.132.0/23 396211 -216.116.134.0/24 31863 -216.116.136.0/24 63121 -216.116.138.0/24 63121 -216.116.144.0/24 11936 -216.116.145.0/24 20115 -216.116.160.0/19 7029 -216.116.192.0/19 6943 -216.116.224.0/19 53488 -216.117.0.0/24 62 -216.117.1.0/24 396838 -216.117.2.0/23 62 -216.117.4.0/22 62 -216.117.8.0/23 62 -216.117.10.0/24 397325 -216.117.11.0/24 62 -216.117.12.0/22 62 -216.117.16.0/21 62 -216.117.24.0/23 62 -216.117.26.0/24 397325 -216.117.27.0/24 62 -216.117.28.0/23 62 -216.117.30.0/24 62 -216.117.31.0/24 36328 -216.117.32.0/22 62 -216.117.36.0/22 393571 -216.117.40.0/24 62 -216.117.41.0/24 393571 -216.117.42.0/23 62 -216.117.44.0/24 62 -216.117.45.0/24 396285 -216.117.46.0/23 62 -216.117.48.0/23 62 -216.117.50.0/23 20013 -216.117.52.0/22 62 -216.117.56.0/22 62 -216.117.60.0/23 62 -216.117.62.0/24 46282 -216.117.63.0/24 62 -216.117.64.0/20 62 -216.117.80.0/21 62 -216.117.88.0/22 62 -216.117.92.0/23 62 -216.117.94.0/24 62 -216.117.95.0/24 26512 -216.117.96.0/21 62 -216.117.104.0/22 62 -216.117.108.0/23 26646 -216.117.110.0/24 26646 -216.117.111.0/24 62 -216.117.112.0/20 16597 -216.117.128.0/18 10843 -216.117.192.0/21 36782 -216.117.201.0/24 36782 -216.117.202.0/24 36782 -216.117.208.0/22 31893 -216.117.212.0/24 46169 -216.117.213.0/24 19135 -216.117.214.0/24 397020 -216.117.215.0/24 22179 -216.117.216.0/24 36782 -216.117.217.0/24 394114 -216.117.218.0/24 394114 -216.117.221.0/24 22785 -216.117.222.0/24 16775 -216.117.223.0/24 22179 -216.117.224.0/20 13614 -216.117.240.0/21 395566 -216.117.248.0/24 397611 -216.117.255.0/24 17157 -216.118.64.0/20 8001 -216.118.80.0/23 8001 -216.118.82.0/24 26455 -216.118.83.0/24 8001 -216.118.84.0/22 8001 -216.118.88.0/24 396924 -216.118.89.0/24 8001 -216.118.90.0/24 8001 -216.118.91.0/24 396924 -216.118.92.0/22 8001 -216.118.96.0/19 8001 -216.118.128.0/19 47027 -216.118.160.0/21 46248 -216.118.168.0/22 46248 -216.118.172.0/23 46248 -216.118.174.0/24 46248 -216.118.175.0/24 3356 -216.118.182.0/24 32165 -216.118.190.0/23 32165 -216.118.192.0/21 3561 -216.118.200.0/23 3561 -216.118.202.0/24 26057 -216.118.203.0/24 3561 -216.118.204.0/22 3561 -216.118.208.0/21 26838 -216.118.216.0/22 26838 -216.118.220.0/23 26838 -216.118.222.0/24 26838 -216.118.223.0/24 46707 -216.118.224.0/19 45753 -216.119.0.0/20 19158 -216.119.16.0/23 19158 -216.119.18.0/23 19955 -216.119.20.0/23 19955 -216.119.22.0/24 19955 -216.119.23.0/24 19158 -216.119.24.0/23 19158 -216.119.26.0/24 19158 -216.119.27.0/24 19955 -216.119.28.0/23 19955 -216.119.30.0/23 19158 -216.119.32.0/23 19158 -216.119.34.0/23 19955 -216.119.36.0/23 19955 -216.119.38.0/24 19955 -216.119.39.0/24 19158 -216.119.40.0/23 19955 -216.119.42.0/24 19158 -216.119.43.0/24 393740 -216.119.44.0/23 19158 -216.119.46.0/23 393740 -216.119.48.0/22 19158 -216.119.52.0/23 19158 -216.119.54.0/24 19158 -216.119.55.0/24 19955 -216.119.56.0/23 393740 -216.119.58.0/23 19955 -216.119.60.0/23 19955 -216.119.62.0/23 19158 -216.119.64.0/18 14992 -216.119.128.0/20 55293 -216.119.144.0/24 13213 -216.119.145.0/24 32780 -216.119.146.0/23 32780 -216.119.148.0/22 32780 -216.119.152.0/22 32780 -216.119.156.0/24 46562 -216.119.157.0/24 32780 -216.119.158.0/24 32780 -216.119.159.0/24 46562 -216.119.160.0/20 23205 -216.119.176.0/20 46687 -216.119.192.0/21 33561 -216.119.200.0/21 53986 -216.119.208.0/22 26380 -216.119.213.0/24 26380 -216.119.214.0/23 26380 -216.119.216.0/22 26380 -216.119.224.0/19 7029 -216.120.0.0/17 2828 -216.120.128.0/18 11491 -216.120.192.0/20 11491 -216.120.208.0/20 4310 -216.120.224.0/20 23535 -216.120.240.0/22 23535 -216.120.244.0/23 23535 -216.120.246.0/24 23535 -216.120.247.0/24 29869 -216.120.248.0/21 23535 -216.121.0.0/17 26228 -216.121.128.0/17 7992 -216.122.0.0/16 13768 -216.123.0.0/18 15290 -216.123.64.0/23 15290 -216.123.66.0/24 15290 -216.123.67.0/24 53338 -216.123.68.0/22 15290 -216.123.72.0/21 15290 -216.123.80.0/20 15290 -216.123.96.0/19 15290 -216.123.128.0/19 15290 -216.123.160.0/20 15290 -216.123.176.0/21 15290 -216.123.184.0/23 15290 -216.123.186.0/24 21570 -216.123.187.0/24 15290 -216.123.188.0/22 15290 -216.123.192.0/20 852 -216.123.208.0/21 852 -216.123.216.0/22 852 -216.123.220.0/23 15247 -216.123.222.0/23 852 -216.123.224.0/20 852 -216.123.240.0/21 852 -216.123.248.0/22 852 -216.123.252.0/23 852 -216.123.254.0/23 22457 -216.124.0.0/17 6325 -216.124.128.0/20 6325 -216.124.144.0/22 6325 -216.124.148.0/24 62523 -216.124.149.0/24 6325 -216.124.150.0/23 6325 -216.124.152.0/22 6325 -216.124.156.0/22 62523 -216.124.160.0/19 6325 -216.124.192.0/18 6325 -216.125.0.0/19 6325 -216.125.32.0/20 6325 -216.125.48.0/24 40710 -216.125.49.0/24 6325 -216.125.50.0/23 6325 -216.125.52.0/22 6325 -216.125.56.0/21 6325 -216.125.64.0/18 6325 -216.125.128.0/20 6325 -216.125.144.0/22 394534 -216.125.148.0/22 6325 -216.125.152.0/24 33460 -216.125.153.0/24 6325 -216.125.154.0/23 6325 -216.125.156.0/22 6325 -216.125.160.0/19 6325 -216.125.192.0/19 6325 -216.125.224.0/21 6325 -216.125.232.0/22 6325 -216.125.236.0/23 62523 -216.125.238.0/24 62523 -216.125.239.0/24 6325 -216.125.240.0/23 6325 -216.125.242.0/24 6325 -216.125.243.0/24 62523 -216.125.244.0/23 62523 -216.125.246.0/24 62523 -216.125.247.0/24 6325 -216.125.248.0/21 6325 -216.126.32.0/23 13703 -216.126.34.0/24 13703 -216.126.35.0/24 20340 -216.126.36.0/24 13703 -216.126.37.0/24 20340 -216.126.38.0/23 13703 -216.126.40.0/24 395336 -216.126.41.0/24 13703 -216.126.42.0/24 13703 -216.126.43.0/24 20340 -216.126.44.0/23 395336 -216.126.46.0/24 395336 -216.126.47.0/24 13703 -216.126.56.0/22 32931 -216.126.60.0/22 12180 -216.126.64.0/21 7311 -216.126.72.0/24 395667 -216.126.73.0/24 7311 -216.126.74.0/23 395667 -216.126.76.0/23 395667 -216.126.78.0/23 7311 -216.126.80.0/21 395667 -216.126.88.0/21 7311 -216.126.96.0/23 22573 -216.126.98.0/24 6058 -216.126.99.0/24 22573 -216.126.100.0/24 22573 -216.126.101.0/24 6058 -216.126.102.0/23 6058 -216.126.104.0/22 22573 -216.126.108.0/24 53910 -216.126.109.0/24 6058 -216.126.110.0/24 6058 -216.126.111.0/24 22573 -216.126.112.0/24 22573 -216.126.115.0/24 22573 -216.126.116.0/24 22573 -216.126.120.0/23 22573 -216.126.122.0/24 22573 -216.126.123.0/24 6058 -216.126.124.0/22 22573 -216.126.128.0/18 7029 -216.126.192.0/21 31863 -216.126.200.0/22 803 -216.126.204.0/24 19817 -216.126.206.0/24 16399 -216.126.207.0/24 19817 -216.126.208.0/22 33339 -216.126.212.0/23 10242 -216.126.214.0/24 7385 -216.126.215.0/24 54869 -216.126.216.0/23 31825 -216.126.218.0/24 19505 -216.126.219.0/24 19275 -216.126.220.0/22 7029 -216.126.224.0/21 20150 -216.126.232.0/24 8100 -216.126.233.0/24 208577 -216.126.234.0/24 8100 -216.126.236.0/24 20150 -216.126.237.0/24 53667 -216.126.238.0/23 20150 -216.126.240.0/20 22684 -216.127.0.0/19 7321 -216.127.32.0/19 11608 -216.127.64.0/19 36351 -216.127.96.0/20 54127 -216.127.112.0/23 7221 -216.127.114.0/24 55100 -216.127.115.0/24 7221 -216.127.116.0/23 21879 -216.127.120.0/22 19982 -216.127.124.0/22 29930 -216.127.128.0/19 13694 -216.127.160.0/19 35916 -216.127.192.0/19 36001 -216.127.224.0/19 3356 -216.128.0.0/19 17184 -216.128.32.0/19 109 -216.128.67.0/24 27257 -216.128.69.0/24 174 -216.128.72.0/24 27257 -216.128.79.0/24 27257 -216.128.88.0/24 27257 -216.128.90.0/24 21655 -216.128.96.0/20 10973 -216.128.112.0/20 30142 -216.128.192.0/20 7254 -216.128.208.0/20 7896 -216.128.224.0/20 26223 -216.128.240.0/20 40289 -216.129.0.0/18 15290 -216.129.64.0/19 15290 -216.129.96.0/19 11404 -216.129.128.0/20 10271 -216.129.144.0/21 46208 -216.129.152.0/23 63427 -216.129.154.0/24 63427 -216.129.156.0/24 63427 -216.129.160.0/22 393924 -216.129.166.0/23 393924 -216.129.168.0/23 393924 -216.129.170.0/23 25222 -216.129.172.0/23 40575 -216.129.174.0/23 393924 -216.129.176.0/20 16904 -216.129.192.0/23 812 -216.129.194.0/24 6407 -216.129.195.0/24 812 -216.129.196.0/22 812 -216.129.200.0/21 812 -216.129.208.0/23 812 -216.129.210.0/24 812 -216.129.211.0/24 6407 -216.129.212.0/22 812 -216.129.216.0/21 812 -216.129.224.0/23 8057 -216.129.226.0/23 40933 -216.129.228.0/23 8057 -216.129.230.0/24 19605 -216.129.231.0/24 8057 -216.129.232.0/21 19605 -216.129.240.0/24 33339 -216.129.241.0/24 40933 -216.129.242.0/23 33339 -216.129.244.0/23 33339 -216.129.246.0/24 8057 -216.129.247.0/24 40933 -216.129.248.0/23 8057 -216.129.250.0/23 33339 -216.129.252.0/24 8057 -216.129.253.0/24 33339 -216.129.254.0/24 40933 -216.129.255.0/24 8057 -216.130.0.0/19 17054 -216.130.32.0/20 32806 -216.130.64.0/19 7122 -216.130.96.0/19 16399 -216.130.128.0/20 11693 -216.130.144.0/24 11693 -216.130.145.0/24 20382 -216.130.146.0/23 11693 -216.130.148.0/22 11693 -216.130.152.0/21 11693 -216.130.160.0/21 27257 -216.130.168.0/22 393710 -216.130.172.0/22 27257 -216.130.176.0/20 27257 -216.130.192.0/21 20052 -216.130.200.0/23 20052 -216.130.202.0/24 20052 -216.130.203.0/24 10690 -216.130.204.0/24 20052 -216.130.206.0/23 10690 -216.130.208.0/20 53543 -216.130.224.0/21 15320 -216.130.232.0/22 15320 -216.130.236.0/23 15320 -216.130.238.0/24 15320 -216.130.239.0/24 32390 -216.130.240.0/21 25956 -216.130.248.0/23 25956 -216.130.250.0/24 25956 -216.130.251.0/24 36405 -216.130.252.0/24 25956 -216.130.253.0/24 55075 -216.130.254.0/23 25956 -216.131.4.0/22 23521 -216.131.12.0/22 23521 -216.131.16.0/21 33616 -216.131.24.0/21 4314 -216.131.32.0/23 11264 -216.131.34.0/24 40195 -216.131.35.0/24 11264 -216.131.36.0/24 38591 -216.131.38.0/24 394424 -216.131.40.0/24 11264 -216.131.48.0/20 36099 -216.131.64.0/18 22781 -216.131.128.0/18 22435 -216.132.0.0/18 4565 -216.132.64.0/19 4565 -216.132.96.0/20 4565 -216.132.112.0/24 4565 -216.132.113.0/24 17184 -216.132.114.0/23 4565 -216.132.116.0/22 4565 -216.132.120.0/22 4565 -216.132.124.0/23 4565 -216.132.126.0/24 4565 -216.132.127.0/24 6267 -216.132.128.0/20 4565 -216.132.144.0/21 4565 -216.132.152.0/22 4565 -216.132.156.0/24 7018 -216.132.157.0/24 4565 -216.132.158.0/23 4565 -216.132.160.0/19 4565 -216.132.192.0/19 4565 -216.132.224.0/23 4565 -216.132.226.0/24 4565 -216.132.227.0/24 6267 -216.132.228.0/24 4565 -216.132.229.0/24 17184 -216.132.230.0/24 17184 -216.132.231.0/24 11696 -216.132.232.0/21 4565 -216.132.240.0/20 4565 -216.133.0.0/21 4565 -216.133.8.0/23 18566 -216.133.10.0/23 4565 -216.133.12.0/22 4565 -216.133.16.0/21 4565 -216.133.24.0/23 4565 -216.133.26.0/23 18566 -216.133.28.0/22 4565 -216.133.32.0/19 4565 -216.133.64.0/22 4565 -216.133.68.0/23 4565 -216.133.70.0/24 4565 -216.133.71.0/24 7029 -216.133.72.0/22 4565 -216.133.76.0/23 4565 -216.133.78.0/23 18566 -216.133.80.0/21 4565 -216.133.88.0/22 4565 -216.133.92.0/23 4565 -216.133.94.0/24 4565 -216.133.95.0/24 7029 -216.133.96.0/22 4565 -216.133.100.0/24 27495 -216.133.101.0/24 4565 -216.133.102.0/23 4565 -216.133.104.0/21 4565 -216.133.112.0/20 18566 -216.133.128.0/23 18566 -216.133.130.0/23 4565 -216.133.132.0/22 4565 -216.133.136.0/21 4565 -216.133.144.0/21 18566 -216.133.152.0/23 22992 -216.133.154.0/23 4565 -216.133.156.0/22 4565 -216.133.160.0/19 4565 -216.133.192.0/20 4565 -216.133.208.0/21 4565 -216.133.216.0/23 4565 -216.133.218.0/23 18566 -216.133.220.0/22 4565 -216.133.224.0/19 10912 -216.134.72.0/21 19108 -216.134.80.0/20 19108 -216.134.96.0/20 12019 -216.134.112.0/20 11427 -216.134.128.0/19 2386 -216.134.160.0/20 18516 -216.134.176.0/20 54323 -216.134.192.0/19 19271 -216.134.224.0/19 18943 -216.135.0.0/19 7029 -216.135.32.0/20 7029 -216.135.48.0/22 13994 -216.135.52.0/22 7029 -216.135.56.0/21 7029 -216.135.64.0/21 4261 -216.135.72.0/23 4261 -216.135.74.0/24 14165 -216.135.75.0/24 4261 -216.135.76.0/22 4261 -216.135.80.0/20 4261 -216.135.96.0/20 35985 -216.135.112.0/20 30536 -216.135.128.0/17 7029 -216.136.0.0/24 3549 -216.136.1.0/24 36712 -216.136.2.0/23 3549 -216.136.4.0/22 3549 -216.136.8.0/24 3549 -216.136.9.0/24 30475 -216.136.10.0/24 3549 -216.136.11.0/24 27182 -216.136.12.0/22 3549 -216.136.16.0/24 3549 -216.136.17.0/24 13769 -216.136.18.0/23 3549 -216.136.20.0/22 3549 -216.136.24.0/21 3549 -216.136.32.0/22 3549 -216.136.36.0/23 3549 -216.136.38.0/24 3549 -216.136.39.0/24 395562 -216.136.40.0/21 3549 -216.136.48.0/20 3549 -216.136.64.0/23 3549 -216.136.66.0/24 3549 -216.136.67.0/24 63277 -216.136.68.0/23 3549 -216.136.70.0/24 393356 -216.136.71.0/24 3549 -216.136.72.0/21 3549 -216.136.80.0/24 3549 -216.136.81.0/24 19859 -216.136.82.0/23 3549 -216.136.84.0/22 3549 -216.136.88.0/21 3549 -216.136.96.0/20 3549 -216.136.112.0/24 396274 -216.136.113.0/24 3549 -216.136.114.0/23 3549 -216.136.116.0/22 3549 -216.136.120.0/21 3549 -216.136.128.0/21 3561 -216.136.136.0/24 396167 -216.136.137.0/24 3561 -216.136.138.0/23 3561 -216.136.140.0/24 393888 -216.136.141.0/24 3561 -216.136.142.0/23 3561 -216.136.144.0/21 3561 -216.136.152.0/22 3561 -216.136.156.0/24 18705 -216.136.157.0/24 3561 -216.136.158.0/23 3561 -216.136.160.0/19 3561 -216.136.192.0/18 3561 -216.137.0.0/20 8014 -216.137.16.0/22 8025 -216.137.20.0/24 8025 -216.137.21.0/24 395168 -216.137.22.0/23 8025 -216.137.24.0/21 8025 -216.137.36.0/24 16509 -216.137.41.0/24 16509 -216.137.42.0/23 16509 -216.137.45.0/24 16509 -216.137.48.0/22 16509 -216.137.56.0/24 16509 -216.137.58.0/24 16509 -216.137.60.0/22 16509 -216.137.64.0/19 11320 -216.137.96.0/19 19515 -216.137.128.0/20 19009 -216.137.160.0/22 5769 -216.137.164.0/24 5769 -216.137.165.0/24 1824 -216.137.166.0/23 395075 -216.137.168.0/21 5769 -216.137.192.0/18 11090 -216.138.0.0/19 12033 -216.138.32.0/20 12033 -216.138.48.0/20 13388 -216.138.64.0/23 20077 -216.138.67.0/24 35985 -216.138.68.0/22 20077 -216.138.72.0/22 20077 -216.138.76.0/23 18990 -216.138.78.0/23 20077 -216.138.80.0/21 20077 -216.138.88.0/22 20077 -216.138.92.0/22 18990 -216.138.96.0/22 20077 -216.138.100.0/23 20077 -216.138.102.0/24 18990 -216.138.104.0/23 20077 -216.138.107.0/24 20077 -216.138.108.0/22 20077 -216.138.112.0/22 20077 -216.138.116.0/23 20077 -216.138.118.0/24 25942 -216.138.119.0/24 20077 -216.138.120.0/24 18990 -216.138.121.0/24 20077 -216.138.123.0/24 20077 -216.138.124.0/24 20077 -216.138.125.0/24 18990 -216.138.126.0/23 18990 -216.138.128.0/20 7029 -216.138.144.0/21 7029 -216.138.152.0/24 7029 -216.138.153.0/24 26284 -216.138.154.0/23 7029 -216.138.156.0/22 7029 -216.138.160.0/20 7029 -216.138.176.0/23 7029 -216.138.178.0/23 26284 -216.138.180.0/22 7029 -216.138.184.0/21 7029 -216.138.192.0/23 812 -216.138.194.0/23 6407 -216.138.196.0/22 812 -216.138.200.0/21 812 -216.138.208.0/21 812 -216.138.216.0/23 6407 -216.138.218.0/23 812 -216.138.220.0/23 6407 -216.138.222.0/23 812 -216.138.224.0/22 812 -216.138.228.0/24 812 -216.138.229.0/24 6407 -216.138.230.0/23 6407 -216.138.232.0/23 6407 -216.138.234.0/23 812 -216.138.236.0/22 812 -216.138.240.0/20 812 -216.139.0.0/20 4307 -216.139.16.0/21 4307 -216.139.24.0/23 4307 -216.139.26.0/24 4307 -216.139.27.0/24 36264 -216.139.28.0/22 4307 -216.139.32.0/19 4307 -216.139.64.0/19 33203 -216.139.96.0/19 395582 -216.139.128.0/19 22136 -216.139.160.0/19 22351 -216.139.192.0/20 16724 -216.139.208.0/20 32400 -216.139.224.0/19 32400 -216.140.0.0/16 3356 -216.141.0.0/18 3356 -216.141.64.0/20 3356 -216.141.80.0/24 3356 -216.141.81.0/24 30622 -216.141.82.0/23 3356 -216.141.84.0/22 3356 -216.141.88.0/21 3356 -216.141.96.0/19 3356 -216.141.128.0/18 3356 -216.141.192.0/19 3356 -216.141.224.0/20 3356 -216.141.240.0/22 3356 -216.141.244.0/23 3356 -216.141.246.0/24 26306 -216.141.247.0/24 3356 -216.141.248.0/21 3356 -216.142.0.0/19 3356 -216.142.32.0/22 3356 -216.142.36.0/23 13904 -216.142.38.0/23 3356 -216.142.40.0/21 3356 -216.142.48.0/24 3356 -216.142.49.0/24 10753 -216.142.50.0/23 3356 -216.142.52.0/22 3356 -216.142.56.0/21 3356 -216.142.64.0/18 3356 -216.142.128.0/20 3356 -216.142.144.0/21 3356 -216.142.152.0/22 3356 -216.142.156.0/23 3356 -216.142.158.0/24 30647 -216.142.159.0/24 3356 -216.142.160.0/19 3356 -216.142.192.0/18 3356 -216.143.0.0/21 3356 -216.143.8.0/22 62 -216.143.12.0/24 396285 -216.143.13.0/24 62 -216.143.14.0/23 62 -216.143.16.0/20 3356 -216.143.32.0/20 3356 -216.143.48.0/21 3356 -216.143.56.0/22 3356 -216.143.60.0/22 36471 -216.143.64.0/22 3356 -216.143.68.0/23 3356 -216.143.70.0/23 7754 -216.143.72.0/21 3356 -216.143.80.0/20 3356 -216.143.96.0/20 3356 -216.143.112.0/22 3356 -216.143.116.0/24 36589 -216.143.117.0/24 3356 -216.143.118.0/23 3356 -216.143.120.0/21 3356 -216.143.128.0/22 3356 -216.143.132.0/23 3356 -216.143.134.0/24 3356 -216.143.135.0/24 19689 -216.143.136.0/21 3356 -216.143.144.0/20 3356 -216.143.160.0/20 3356 -216.143.176.0/23 3356 -216.143.178.0/24 29891 -216.143.179.0/24 3356 -216.143.180.0/22 3356 -216.143.184.0/21 3356 -216.143.192.0/22 3356 -216.143.196.0/24 31837 -216.143.197.0/24 3356 -216.143.198.0/23 3356 -216.143.200.0/21 3356 -216.143.208.0/20 3356 -216.143.224.0/21 3356 -216.143.232.0/24 19622 -216.143.233.0/24 3356 -216.143.234.0/23 3356 -216.143.236.0/22 3356 -216.143.240.0/22 3356 -216.143.244.0/24 3356 -216.143.245.0/24 13904 -216.143.246.0/23 3356 -216.143.248.0/21 3356 -216.144.18.0/23 3725 -216.144.20.0/23 3725 -216.144.64.0/20 3561 -216.144.80.0/20 36549 -216.144.96.0/20 26909 -216.144.112.0/20 22639 -216.144.128.0/19 33362 -216.144.160.0/19 3737 -216.144.192.0/19 27553 -216.144.224.0/20 8100 -216.144.240.0/22 46475 -216.144.244.0/24 46475 -216.144.245.0/24 54103 -216.144.246.0/23 46475 -216.144.248.0/21 46475 -216.145.0.0/19 6295 -216.145.32.0/22 18551 -216.145.44.0/22 18551 -216.145.48.0/20 7233 -216.145.64.0/22 22792 -216.145.68.0/23 22792 -216.145.70.0/23 29842 -216.145.72.0/21 22792 -216.145.80.0/20 22792 -216.145.96.0/20 25946 -216.145.112.0/20 13649 -216.145.128.0/21 62943 -216.145.136.0/22 62943 -216.145.140.0/23 62943 -216.145.142.0/24 26400 -216.145.143.0/24 62943 -216.145.144.0/24 393442 -216.145.145.0/24 62943 -216.145.146.0/24 62943 -216.145.147.0/24 55221 -216.145.148.0/23 62943 -216.145.150.0/24 10750 -216.145.151.0/24 16604 -216.145.152.0/23 62943 -216.145.154.0/24 62943 -216.145.155.0/24 10750 -216.145.156.0/22 62943 -216.145.160.0/19 23030 -216.145.192.0/20 33657 -216.145.208.0/21 397726 -216.145.218.0/23 30031 -216.145.221.0/24 30031 -216.145.222.0/24 30031 -216.145.224.0/19 10692 -216.146.0.0/19 11915 -216.146.32.0/21 33517 -216.146.40.0/22 33517 -216.146.44.0/24 33517 -216.146.46.0/23 33517 -216.146.48.0/23 7795 -216.146.50.0/23 22299 -216.146.52.0/22 7795 -216.146.56.0/21 7795 -216.146.64.0/19 16399 -216.146.96.0/24 8057 -216.146.97.0/24 1378 -216.146.98.0/24 40933 -216.146.99.0/24 8057 -216.146.100.0/23 40933 -216.146.102.0/24 8057 -216.146.103.0/24 33339 -216.146.104.0/23 8057 -216.146.106.0/24 8057 -216.146.107.0/24 19605 -216.146.108.0/24 8057 -216.146.109.0/24 19605 -216.146.110.0/24 19605 -216.146.111.0/24 8057 -216.146.112.0/21 8057 -216.146.120.0/24 33339 -216.146.121.0/24 8057 -216.146.122.0/24 8057 -216.146.123.0/24 33339 -216.146.124.0/22 8057 -216.146.128.0/20 36689 -216.146.160.0/24 3549 -216.146.161.0/24 40326 -216.146.162.0/23 40326 -216.146.164.0/22 40326 -216.146.168.0/21 40326 -216.146.176.0/22 40326 -216.146.181.0/24 40326 -216.146.182.0/23 40326 -216.146.184.0/22 40326 -216.146.188.0/23 40326 -216.146.190.0/24 40326 -216.146.192.0/19 7859 -216.146.224.0/20 18786 -216.146.240.0/21 395040 -216.146.248.0/22 62943 -216.146.252.0/24 62943 -216.146.253.0/24 10750 -216.146.254.0/23 62943 -216.147.0.0/17 11022 -216.147.128.0/19 11300 -216.147.160.0/22 26794 -216.147.164.0/24 26794 -216.147.165.0/24 394321 -216.147.166.0/23 26794 -216.147.168.0/22 26794 -216.147.172.0/23 26794 -216.147.174.0/24 16846 -216.147.175.0/24 26794 -216.147.176.0/20 26794 -216.147.208.0/23 14148 -216.147.212.0/22 14148 -216.147.216.0/23 13649 -216.147.218.0/23 14148 -216.147.220.0/23 14148 -216.147.222.0/24 14148 -216.147.223.0/24 13649 -216.147.224.0/20 19504 -216.147.240.0/24 40113 -216.147.246.0/24 40113 -216.147.248.0/24 40113 -216.147.254.0/24 40113 -216.148.0.0/23 16966 -216.148.2.0/23 7018 -216.148.4.0/22 7018 -216.148.8.0/21 7018 -216.148.16.0/20 7018 -216.148.32.0/20 7018 -216.148.48.0/24 4265 -216.148.49.0/24 7018 -216.148.50.0/24 7018 -216.148.51.0/24 4265 -216.148.52.0/22 54981 -216.148.56.0/22 4265 -216.148.60.0/24 4265 -216.148.61.0/24 7018 -216.148.62.0/23 4265 -216.148.64.0/19 7018 -216.148.96.0/22 7018 -216.148.100.0/23 7018 -216.148.102.0/24 13540 -216.148.103.0/24 7018 -216.148.104.0/23 11045 -216.148.106.0/23 7018 -216.148.108.0/22 7018 -216.148.112.0/20 7018 -216.148.128.0/18 7018 -216.148.192.0/20 7018 -216.148.208.0/20 4265 -216.148.224.0/20 4265 -216.148.240.0/22 4265 -216.148.244.0/24 4265 -216.148.245.0/24 7018 -216.148.246.0/23 4265 -216.148.248.0/24 4265 -216.148.249.0/24 7018 -216.148.250.0/24 7018 -216.148.251.0/24 4265 -216.148.252.0/22 4265 -216.149.0.0/17 2828 -216.149.128.0/19 2828 -216.149.160.0/20 2828 -216.149.176.0/23 2828 -216.149.178.0/24 40807 -216.149.179.0/24 2828 -216.149.180.0/22 2828 -216.149.184.0/21 2828 -216.149.192.0/23 2828 -216.149.194.0/24 2828 -216.149.195.0/24 36497 -216.149.196.0/22 2828 -216.149.200.0/21 2828 -216.149.208.0/20 2828 -216.149.224.0/19 2828 -216.150.0.0/19 13768 -216.150.32.0/20 13959 -216.150.48.0/21 7381 -216.150.56.0/22 10440 -216.150.60.0/24 7381 -216.150.64.0/20 15149 -216.150.80.0/20 23421 -216.150.96.0/19 17049 -216.150.128.0/19 11383 -216.150.160.0/23 13524 -216.150.164.0/23 13524 -216.150.168.0/24 13524 -216.150.170.0/24 13524 -216.150.172.0/24 13524 -216.150.182.0/23 19460 -216.150.184.0/22 19460 -216.150.188.0/24 19460 -216.150.190.0/23 19460 -216.150.192.0/21 13649 -216.150.200.0/23 13649 -216.150.202.0/24 27253 -216.150.203.0/24 13649 -216.150.204.0/22 13649 -216.150.208.0/20 13649 -216.150.224.0/21 12129 -216.150.232.0/24 22379 -216.150.233.0/24 12129 -216.150.234.0/24 12129 -216.150.235.0/24 22379 -216.150.236.0/22 12129 -216.150.240.0/20 14265 -216.151.0.0/19 14380 -216.151.32.0/24 15272 -216.151.33.0/24 55085 -216.151.34.0/24 7377 -216.151.35.0/24 62761 -216.151.36.0/24 3445 -216.151.38.0/24 7377 -216.151.39.0/24 32318 -216.151.41.0/24 3445 -216.151.43.0/24 62773 -216.151.44.0/24 20454 -216.151.45.0/24 4764 -216.151.46.0/23 21881 -216.151.48.0/20 31869 -216.151.64.0/20 17054 -216.151.80.0/22 17054 -216.151.84.0/24 17054 -216.151.85.0/24 15327 -216.151.86.0/23 17054 -216.151.88.0/21 17054 -216.151.96.0/19 17054 -216.151.128.0/19 13445 -216.151.160.0/22 7393 -216.151.164.0/23 7393 -216.151.166.0/24 32475 -216.151.167.0/24 7393 -216.151.168.0/21 7393 -216.151.176.0/24 12989 -216.151.177.0/24 26769 -216.151.178.0/24 26769 -216.151.179.0/24 12989 -216.151.180.0/22 12989 -216.151.184.0/23 12989 -216.151.186.0/24 26769 -216.151.187.0/24 20940 -216.151.188.0/24 26769 -216.151.189.0/24 12989 -216.151.190.0/23 12989 -216.151.208.0/20 13768 -216.151.224.0/20 4565 -216.151.240.0/21 4565 -216.151.248.0/24 18566 -216.151.249.0/24 4565 -216.151.250.0/23 4565 -216.151.252.0/22 4565 -216.152.0.0/20 18624 -216.152.16.0/23 53828 -216.152.18.0/24 174 -216.152.31.0/24 7018 -216.152.32.0/19 26328 -216.152.80.0/20 6059 -216.152.96.0/23 17073 -216.152.99.0/24 17073 -216.152.100.0/24 17073 -216.152.103.0/24 17073 -216.152.105.0/24 17073 -216.152.106.0/23 17073 -216.152.108.0/24 209 -216.152.111.0/24 209 -216.152.128.0/20 13768 -216.152.144.0/20 33154 -216.152.160.0/20 11081 -216.152.176.0/20 11090 -216.152.192.0/21 6391 -216.152.200.0/21 11625 -216.152.208.0/22 33680 -216.152.213.0/24 33680 -216.152.216.0/24 33680 -216.152.222.0/23 33680 -216.152.224.0/20 395954 -216.152.240.0/21 54578 -216.152.248.0/21 14237 -216.153.0.0/18 6203 -216.153.64.0/18 2527 -216.153.128.0/17 7029 -216.154.0.0/17 5645 -216.154.128.0/18 5645 -216.154.192.0/20 20141 -216.154.208.0/21 20141 -216.154.216.0/22 20141 -216.154.220.0/22 54825 -216.154.224.0/19 16966 -216.155.0.0/24 11194 -216.155.1.0/24 39855 -216.155.2.0/24 54103 -216.155.3.0/24 39855 -216.155.4.0/22 54103 -216.155.8.0/24 39855 -216.155.9.0/24 54103 -216.155.10.0/23 54103 -216.155.12.0/23 39855 -216.155.14.0/23 54103 -216.155.16.0/24 39855 -216.155.17.0/24 15830 -216.155.18.0/24 39855 -216.155.19.0/24 54103 -216.155.20.0/24 39855 -216.155.21.0/24 54103 -216.155.22.0/24 39855 -216.155.23.0/24 54103 -216.155.24.0/24 39855 -216.155.25.0/24 54103 -216.155.26.0/24 54103 -216.155.27.0/24 11194 -216.155.28.0/24 39855 -216.155.29.0/24 54103 -216.155.30.0/23 54103 -216.155.32.0/23 54103 -216.155.34.0/24 39855 -216.155.35.0/24 54103 -216.155.36.0/24 11194 -216.155.37.0/24 54103 -216.155.38.0/23 54103 -216.155.40.0/24 54103 -216.155.41.0/24 11194 -216.155.42.0/24 11194 -216.155.43.0/24 54103 -216.155.44.0/22 54103 -216.155.48.0/24 11194 -216.155.49.0/24 54103 -216.155.50.0/23 54103 -216.155.52.0/24 54103 -216.155.53.0/24 39855 -216.155.54.0/24 54103 -216.155.55.0/24 6939 -216.155.56.0/24 39855 -216.155.57.0/24 54103 -216.155.58.0/24 11194 -216.155.59.0/24 54103 -216.155.60.0/24 11194 -216.155.61.0/24 54103 -216.155.62.0/23 54103 -216.155.64.0/19 14117 -216.155.96.0/21 7453 -216.155.104.0/22 7453 -216.155.108.0/23 7453 -216.155.110.0/24 30418 -216.155.111.0/24 7453 -216.155.112.0/20 7453 -216.155.128.0/19 20473 -216.155.176.0/20 16706 -216.155.192.0/20 36646 -216.155.208.0/21 33509 -216.155.216.0/21 25840 -216.155.224.0/20 12552 -216.155.240.0/20 12073 -216.156.0.0/17 2828 -216.156.128.0/20 2828 -216.156.144.0/22 2828 -216.156.148.0/23 2828 -216.156.150.0/24 23442 -216.156.151.0/24 2828 -216.156.152.0/21 2828 -216.156.160.0/19 2828 -216.156.192.0/22 2828 -216.156.196.0/24 18752 -216.156.197.0/24 2828 -216.156.198.0/23 2828 -216.156.200.0/23 2828 -216.156.202.0/24 2828 -216.156.203.0/24 40345 -216.156.204.0/23 2828 -216.156.206.0/24 394675 -216.156.207.0/24 2828 -216.156.208.0/20 2828 -216.156.224.0/21 2828 -216.156.232.0/23 2828 -216.156.234.0/24 2828 -216.156.235.0/24 17310 -216.156.236.0/22 2828 -216.156.240.0/20 2828 -216.157.0.0/18 13768 -216.157.64.0/19 13768 -216.157.96.0/20 13768 -216.157.112.0/20 40351 -216.157.128.0/21 174 -216.157.136.0/21 64200 -216.157.144.0/20 64200 -216.157.160.0/19 20428 -216.157.192.0/21 6461 -216.157.200.0/23 22637 -216.157.202.0/23 6461 -216.157.204.0/23 6461 -216.157.206.0/24 6461 -216.157.207.0/24 22637 -216.157.208.0/24 22637 -216.157.209.0/24 6461 -216.157.210.0/24 22637 -216.157.211.0/24 6461 -216.157.212.0/22 6461 -216.157.216.0/23 6461 -216.157.218.0/23 22637 -216.157.220.0/24 394573 -216.157.221.0/24 22637 -216.157.222.0/23 6461 -216.157.232.0/22 19229 -216.157.250.0/23 19229 -216.157.252.0/22 19229 -216.158.0.0/24 46624 -216.158.1.0/24 6372 -216.158.2.0/23 6372 -216.158.4.0/22 6372 -216.158.8.0/21 6372 -216.158.16.0/20 6372 -216.158.32.0/20 6372 -216.158.48.0/21 6372 -216.158.56.0/22 6372 -216.158.60.0/24 14020 -216.158.61.0/24 6372 -216.158.62.0/23 6372 -216.158.64.0/19 18450 -216.158.96.0/20 59702 -216.158.112.0/20 13388 -216.158.128.0/19 46450 -216.158.160.0/23 10753 -216.158.162.0/23 3356 -216.158.164.0/22 3356 -216.158.168.0/24 5738 -216.158.169.0/24 3356 -216.158.170.0/24 3356 -216.158.171.0/24 30034 -216.158.172.0/24 3356 -216.158.173.0/24 10753 -216.158.174.0/24 40693 -216.158.175.0/24 10753 -216.158.176.0/22 22528 -216.158.181.0/24 22528 -216.158.182.0/24 22528 -216.158.183.0/24 394059 -216.158.184.0/24 22528 -216.158.185.0/24 394059 -216.158.186.0/24 394059 -216.158.187.0/24 22528 -216.158.188.0/24 22528 -216.158.190.0/24 22528 -216.158.192.0/24 18978 -216.158.193.0/24 18779 -216.158.194.0/24 18978 -216.158.195.0/24 46261 -216.158.196.0/23 18978 -216.158.198.0/24 19437 -216.158.199.0/24 18978 -216.158.200.0/23 18978 -216.158.202.0/24 18978 -216.158.203.0/24 46261 -216.158.204.0/24 18978 -216.158.205.0/24 9009 -216.158.206.0/24 46261 -216.158.207.0/24 9009 -216.158.208.0/23 18978 -216.158.210.0/24 19437 -216.158.211.0/24 9009 -216.158.212.0/23 18978 -216.158.214.0/23 46261 -216.158.216.0/24 18978 -216.158.217.0/24 46261 -216.158.218.0/24 46261 -216.158.219.0/24 9009 -216.158.220.0/24 9009 -216.158.221.0/24 18978 -216.158.222.0/24 18978 -216.158.223.0/24 18779 -216.158.224.0/20 19318 -216.158.240.0/20 33152 -216.159.0.0/18 6122 -216.159.64.0/21 6122 -216.159.72.0/22 6122 -216.159.76.0/23 6122 -216.159.78.0/23 27316 -216.159.80.0/23 27316 -216.159.82.0/24 27316 -216.159.83.0/24 6122 -216.159.84.0/22 6122 -216.159.88.0/21 6122 -216.159.96.0/19 6122 -216.159.128.0/19 6122 -216.159.160.0/20 6122 -216.159.176.0/22 27316 -216.159.180.0/24 6122 -216.159.181.0/24 26946 -216.159.182.0/23 6122 -216.159.184.0/21 6122 -216.159.192.0/19 6122 -216.159.224.0/20 16399 -216.159.240.0/21 16399 -216.159.248.0/22 16399 -216.159.252.0/23 16399 -216.159.254.0/24 33519 -216.159.255.0/24 16399 -216.160.0.0/20 209 -216.160.16.0/21 209 -216.160.24.0/24 209 -216.160.25.0/24 15009 -216.160.26.0/23 209 -216.160.28.0/22 209 -216.160.32.0/19 209 -216.160.64.0/18 209 -216.160.128.0/18 209 -216.160.192.0/21 209 -216.160.200.0/22 209 -216.160.204.0/23 209 -216.160.206.0/24 209 -216.160.207.0/24 40349 -216.160.208.0/20 209 -216.160.224.0/19 209 -216.161.0.0/19 209 -216.161.32.0/23 3912 -216.161.34.0/23 209 -216.161.36.0/22 209 -216.161.40.0/21 209 -216.161.48.0/20 209 -216.161.64.0/19 209 -216.161.96.0/24 209 -216.161.97.0/24 54389 -216.161.98.0/24 14584 -216.161.99.0/24 209 -216.161.100.0/22 209 -216.161.104.0/21 209 -216.161.112.0/20 209 -216.161.128.0/19 209 -216.161.160.0/21 209 -216.161.168.0/22 209 -216.161.172.0/23 209 -216.161.174.0/24 11072 -216.161.175.0/24 209 -216.161.176.0/22 209 -216.161.180.0/24 209 -216.161.181.0/24 14378 -216.161.182.0/23 209 -216.161.184.0/21 209 -216.161.192.0/18 209 -216.162.0.0/20 11612 -216.162.16.0/20 46621 -216.162.32.0/22 5740 -216.162.38.0/24 5740 -216.162.40.0/24 53889 -216.162.41.0/24 6130 -216.162.42.0/24 63008 -216.162.43.0/24 53889 -216.162.44.0/22 53889 -216.162.48.0/20 1767 -216.162.64.0/20 6280 -216.162.80.0/20 32554 -216.162.96.0/20 46853 -216.162.112.0/20 16478 -216.162.128.0/19 13730 -216.162.160.0/19 23308 -216.162.192.0/19 13739 -216.162.224.0/20 393457 -216.162.240.0/23 11559 -216.162.243.0/24 11559 -216.162.244.0/22 11559 -216.162.248.0/23 11559 -216.162.250.0/24 11559 -216.163.0.0/19 23404 -216.163.32.0/19 14103 -216.163.64.0/22 26919 -216.163.80.0/22 26919 -216.163.88.0/22 26919 -216.163.96.0/22 393301 -216.163.100.0/24 393301 -216.163.101.0/24 54936 -216.163.102.0/24 19627 -216.163.103.0/24 393301 -216.163.104.0/24 393301 -216.163.105.0/24 40020 -216.163.106.0/23 397893 -216.163.108.0/24 397340 -216.163.109.0/24 40020 -216.163.110.0/24 36788 -216.163.111.0/24 40020 -216.163.112.0/22 40020 -216.163.116.0/22 397893 -216.163.120.0/22 6250 -216.163.127.0/24 397893 -216.163.136.0/24 14068 -216.163.142.0/24 14068 -216.163.144.0/23 19079 -216.163.146.0/23 7029 -216.163.148.0/23 7029 -216.163.150.0/23 19079 -216.163.152.0/24 19079 -216.163.158.0/23 19079 -216.163.160.0/21 13482 -216.163.176.0/24 47067 -216.163.188.0/24 13912 -216.163.192.0/22 10753 -216.163.196.0/24 10753 -216.163.198.0/24 10753 -216.163.199.0/24 64267 -216.163.200.0/24 10753 -216.163.207.0/24 10753 -216.163.208.0/20 27370 -216.163.240.0/20 15048 -216.164.0.0/17 6079 -216.164.128.0/18 6079 -216.164.192.0/24 6079 -216.164.193.0/24 395005 -216.164.194.0/23 6079 -216.164.196.0/23 6079 -216.164.198.0/24 6079 -216.164.199.0/24 397186 -216.164.200.0/21 6079 -216.164.208.0/20 6079 -216.164.224.0/19 6079 -216.165.0.0/17 12 -216.165.128.0/22 4181 -216.165.132.0/24 10359 -216.165.133.0/24 4181 -216.165.134.0/23 4181 -216.165.136.0/21 4181 -216.165.144.0/20 4181 -216.165.160.0/22 4181 -216.165.164.0/23 4181 -216.165.166.0/24 4181 -216.165.167.0/24 14305 -216.165.168.0/21 4181 -216.165.176.0/20 4181 -216.165.192.0/19 54614 -216.165.224.0/19 26919 -216.166.0.0/21 3900 -216.166.8.0/23 22363 -216.166.10.0/23 3900 -216.166.12.0/22 3900 -216.166.16.0/22 3900 -216.166.20.0/23 3900 -216.166.22.0/24 3900 -216.166.23.0/24 397350 -216.166.24.0/22 3900 -216.166.28.0/24 22363 -216.166.29.0/24 3900 -216.166.30.0/23 3900 -216.166.32.0/20 3900 -216.166.48.0/23 22363 -216.166.50.0/24 22363 -216.166.51.0/24 3900 -216.166.52.0/24 3900 -216.166.53.0/24 22363 -216.166.54.0/23 22363 -216.166.56.0/23 3900 -216.166.58.0/24 3900 -216.166.59.0/24 22363 -216.166.60.0/22 3900 -216.166.64.0/22 3900 -216.166.68.0/23 3900 -216.166.70.0/24 22363 -216.166.71.0/24 3900 -216.166.72.0/21 3900 -216.166.80.0/24 30094 -216.166.81.0/24 3900 -216.166.82.0/23 3900 -216.166.84.0/22 3900 -216.166.88.0/21 30094 -216.166.96.0/20 30094 -216.166.112.0/20 3900 -216.166.128.0/22 19092 -216.166.132.0/23 19092 -216.166.134.0/24 19092 -216.166.135.0/24 4474 -216.166.136.0/22 19092 -216.166.140.0/24 31998 -216.166.141.0/24 19092 -216.166.142.0/24 36222 -216.166.143.0/24 19092 -216.166.144.0/22 19092 -216.166.148.0/24 21632 -216.166.149.0/24 19092 -216.166.150.0/23 19092 -216.166.152.0/22 19092 -216.166.156.0/23 19092 -216.166.158.0/24 19092 -216.166.159.0/24 4474 -216.166.160.0/21 19092 -216.166.168.0/21 395466 -216.166.176.0/20 19092 -216.166.192.0/21 22561 -216.166.200.0/22 22561 -216.166.204.0/22 209 -216.166.208.0/21 16835 -216.166.216.0/21 22561 -216.166.224.0/22 209 -216.166.228.0/22 16835 -216.166.232.0/22 16835 -216.166.236.0/23 16835 -216.166.238.0/24 209 -216.166.239.0/24 22561 -216.166.240.0/20 22561 -216.167.0.0/17 2914 -216.167.128.0/20 13693 -216.167.144.0/24 13693 -216.167.145.0/24 12056 -216.167.146.0/23 13693 -216.167.148.0/22 13693 -216.167.152.0/21 13693 -216.167.160.0/22 13693 -216.167.164.0/23 13693 -216.167.166.0/24 13693 -216.167.167.0/24 12056 -216.167.168.0/21 13693 -216.167.176.0/24 27190 -216.167.177.0/24 13693 -216.167.178.0/23 13693 -216.167.180.0/22 13693 -216.167.184.0/21 13693 -216.167.192.0/20 14519 -216.167.208.0/20 30268 -216.167.224.0/19 23184 -216.168.0.0/19 30094 -216.168.32.0/19 3361 -216.168.64.0/20 174 -216.168.80.0/21 36374 -216.168.88.0/22 36374 -216.168.92.0/22 36203 -216.168.96.0/19 11666 -216.168.128.0/24 13565 -216.168.129.0/24 11817 -216.168.130.0/24 11817 -216.168.131.0/24 15185 -216.168.132.0/23 32549 -216.168.135.0/24 11817 -216.168.136.0/23 397865 -216.168.139.0/24 8148 -216.168.140.0/23 62949 -216.168.143.0/24 36437 -216.168.144.0/20 19848 -216.168.162.0/24 11889 -216.168.164.0/23 11889 -216.168.169.0/24 11889 -216.168.183.0/24 14396 -216.168.184.0/23 11889 -216.168.187.0/24 13556 -216.168.188.0/23 11889 -216.168.220.0/24 16865 -216.168.225.0/24 30060 -216.168.227.0/24 30060 -216.168.228.0/24 20431 -216.168.229.0/24 7342 -216.168.230.0/24 16838 -216.168.231.0/24 26134 -216.168.232.0/23 26134 -216.168.234.0/24 26134 -216.168.235.0/24 30060 -216.168.236.0/24 30060 -216.168.237.0/24 397205 -216.168.238.0/24 7342 -216.168.239.0/24 16838 -216.168.244.0/22 32575 -216.168.248.0/23 32575 -216.169.0.0/19 12119 -216.169.32.0/19 11915 -216.169.64.0/19 26253 -216.169.96.0/19 15149 -216.169.128.0/22 22781 -216.169.132.0/22 12989 -216.169.136.0/21 12989 -216.169.154.0/23 19271 -216.169.156.0/23 398017 -216.169.160.0/19 7029 -216.169.208.0/20 22641 -216.169.224.0/20 17306 -216.169.242.0/23 11323 -216.169.246.0/24 11323 -216.169.248.0/22 11323 -216.169.255.0/24 11323 -216.170.0.0/18 7029 -216.170.64.0/21 18886 -216.170.72.0/22 18886 -216.170.76.0/23 18886 -216.170.78.0/24 18886 -216.170.79.0/24 13760 -216.170.80.0/22 18886 -216.170.84.0/23 13760 -216.170.86.0/23 18886 -216.170.88.0/21 18886 -216.170.96.0/24 4565 -216.170.101.0/24 4565 -216.170.104.0/23 4565 -216.170.112.0/22 36352 -216.170.117.0/24 33412 -216.170.118.0/23 36352 -216.170.120.0/24 36352 -216.170.122.0/23 36352 -216.170.124.0/24 23498 -216.170.125.0/24 36352 -216.170.126.0/24 36352 -216.170.128.0/17 4181 -216.171.0.0/20 23473 -216.171.16.0/22 23473 -216.171.20.0/24 23473 -216.171.24.0/23 23473 -216.171.26.0/24 23473 -216.171.30.0/23 23473 -216.171.32.0/23 46925 -216.171.34.0/23 23473 -216.171.36.0/22 23473 -216.171.40.0/21 23473 -216.171.48.0/23 23473 -216.171.51.0/24 23473 -216.171.52.0/22 23473 -216.171.56.0/23 46925 -216.171.58.0/23 23473 -216.171.60.0/23 46925 -216.171.62.0/23 23473 -216.171.64.0/23 30167 -216.171.66.0/23 32098 -216.171.68.0/24 32098 -216.171.69.0/24 30167 -216.171.70.0/24 32098 -216.171.71.0/24 30167 -216.171.72.0/21 30167 -216.171.80.0/20 30167 -216.171.96.0/20 14472 -216.171.112.0/20 59127 -216.171.128.0/19 7029 -216.171.160.0/20 20155 -216.171.176.0/20 7828 -216.171.192.0/23 6939 -216.171.195.0/24 7030 -216.171.196.0/24 6939 -216.171.201.0/24 6939 -216.171.202.0/23 6939 -216.171.204.0/24 6939 -216.171.208.0/24 6939 -216.171.218.0/24 6939 -216.171.220.0/23 6939 -216.171.224.0/22 18638 -216.171.230.0/23 18638 -216.171.232.0/22 18638 -216.171.236.0/23 18638 -216.171.238.0/24 18638 -216.171.240.0/20 33481 -216.172.0.0/23 34655 -216.172.2.0/24 34655 -216.172.16.0/22 7029 -216.172.20.0/24 7029 -216.172.21.0/24 54066 -216.172.22.0/23 7029 -216.172.24.0/24 7029 -216.172.25.0/24 54278 -216.172.26.0/24 12263 -216.172.27.0/24 7029 -216.172.28.0/24 7029 -216.172.29.0/24 11632 -216.172.30.0/23 7029 -216.172.32.0/20 812 -216.172.48.0/20 15317 -216.172.64.0/21 15695 -216.172.73.0/24 15695 -216.172.74.0/23 15695 -216.172.76.0/23 15695 -216.172.78.0/24 15695 -216.172.80.0/22 7018 -216.172.84.0/23 209 -216.172.87.0/24 209 -216.172.88.0/23 209 -216.172.90.0/23 7018 -216.172.92.0/22 209 -216.172.96.0/20 13354 -216.172.112.0/20 33234 -216.172.128.0/20 18779 -216.172.144.0/22 18779 -216.172.148.0/23 18779 -216.172.150.0/24 26481 -216.172.151.0/24 18779 -216.172.152.0/21 18779 -216.172.160.0/19 46606 -216.172.192.0/18 22948 -216.173.0.0/21 7029 -216.173.8.0/22 7029 -216.173.12.0/23 7029 -216.173.14.0/24 7029 -216.173.15.0/24 16908 -216.173.16.0/20 7029 -216.173.32.0/19 7029 -216.173.64.0/21 13886 -216.173.72.0/23 6762 -216.173.74.0/24 6762 -216.173.75.0/24 1273 -216.173.76.0/23 6762 -216.173.78.0/24 6762 -216.173.79.0/24 1273 -216.173.80.0/22 6762 -216.173.84.0/24 1273 -216.173.85.0/24 6762 -216.173.86.0/23 6762 -216.173.88.0/21 6762 -216.173.96.0/23 6762 -216.173.98.0/24 6762 -216.173.99.0/24 1273 -216.173.100.0/24 29727 -216.173.101.0/24 6762 -216.173.102.0/23 6762 -216.173.104.0/23 6762 -216.173.106.0/24 1273 -216.173.107.0/24 6762 -216.173.108.0/22 6762 -216.173.112.0/23 6762 -216.173.114.0/23 1273 -216.173.116.0/22 1273 -216.173.120.0/24 1273 -216.173.121.0/24 29727 -216.173.122.0/23 6762 -216.173.124.0/23 6762 -216.173.126.0/24 6762 -216.173.127.0/24 1273 -216.173.128.0/20 11994 -216.173.144.0/20 23260 -216.173.160.0/19 21918 -216.173.192.0/19 7385 -216.173.224.0/21 16967 -216.173.232.0/23 16967 -216.173.234.0/24 16967 -216.173.235.0/24 7018 -216.173.236.0/22 7132 -216.173.240.0/20 7132 -216.174.0.0/21 3356 -216.174.8.0/22 3356 -216.174.12.0/23 3356 -216.174.14.0/24 3356 -216.174.15.0/24 395800 -216.174.16.0/22 3356 -216.174.20.0/23 63073 -216.174.22.0/23 3356 -216.174.24.0/21 3356 -216.174.32.0/22 3356 -216.174.36.0/23 3356 -216.174.38.0/24 22895 -216.174.39.0/24 3356 -216.174.40.0/24 10753 -216.174.41.0/24 3356 -216.174.42.0/23 3356 -216.174.44.0/22 3356 -216.174.48.0/20 3356 -216.174.64.0/22 7057 -216.174.68.0/24 7057 -216.174.69.0/24 11769 -216.174.70.0/23 7057 -216.174.72.0/21 7057 -216.174.80.0/24 11769 -216.174.81.0/24 7057 -216.174.82.0/23 7057 -216.174.84.0/22 7057 -216.174.88.0/21 7057 -216.174.96.0/22 7057 -216.174.100.0/24 7057 -216.174.101.0/24 11769 -216.174.102.0/23 7057 -216.174.104.0/21 7057 -216.174.112.0/20 7057 -216.174.128.0/22 803 -216.174.132.0/23 803 -216.174.134.0/24 803 -216.174.135.0/24 26806 -216.174.136.0/21 803 -216.174.144.0/21 803 -216.174.152.0/22 803 -216.174.156.0/23 803 -216.174.158.0/24 803 -216.174.159.0/24 398008 -216.174.160.0/20 17306 -216.174.176.0/22 17306 -216.174.180.0/23 17306 -216.174.183.0/24 17306 -216.174.184.0/21 17306 -216.174.192.0/18 7385 -216.175.7.0/24 394348 -216.175.8.0/21 62943 -216.175.16.0/21 15129 -216.175.24.0/24 15129 -216.175.25.0/24 394658 -216.175.26.0/23 15129 -216.175.28.0/23 15129 -216.175.30.0/24 15129 -216.175.32.0/23 12285 -216.175.34.0/23 15129 -216.175.36.0/22 12285 -216.175.40.0/21 12285 -216.175.48.0/20 12285 -216.175.64.0/18 7029 -216.175.128.0/18 4565 -216.175.192.0/21 4565 -216.175.200.0/23 4565 -216.175.202.0/24 4565 -216.175.203.0/24 17184 -216.175.204.0/22 4565 -216.175.208.0/20 4565 -216.175.224.0/19 4565 -216.176.0.0/19 30517 -216.176.48.0/20 3561 -216.176.64.0/19 5742 -216.176.96.0/19 14574 -216.176.128.0/19 6368 -216.176.160.0/20 39970 -216.176.176.0/20 23033 -216.176.192.0/23 11051 -216.176.194.0/24 19437 -216.176.195.0/24 11051 -216.176.196.0/22 11051 -216.176.200.0/23 11051 -216.176.202.0/23 46378 -216.176.204.0/24 11051 -216.176.205.0/24 396123 -216.176.206.0/23 11051 -216.176.216.0/21 812 -216.176.224.0/20 7029 -216.176.242.0/23 46376 -216.176.247.0/24 394220 -216.177.0.0/19 63009 -216.177.32.0/19 15076 -216.177.64.0/22 3561 -216.177.68.0/23 3561 -216.177.70.0/24 3561 -216.177.71.0/24 14415 -216.177.72.0/22 3561 -216.177.76.0/24 3561 -216.177.77.0/24 14415 -216.177.78.0/23 3561 -216.177.80.0/23 3561 -216.177.82.0/24 3561 -216.177.83.0/24 14415 -216.177.84.0/23 3561 -216.177.86.0/24 3561 -216.177.87.0/24 40422 -216.177.88.0/24 3561 -216.177.89.0/24 14415 -216.177.90.0/24 3561 -216.177.91.0/24 14415 -216.177.92.0/24 27250 -216.177.93.0/24 3561 -216.177.94.0/23 3561 -216.177.96.0/19 174 -216.177.130.0/24 395532 -216.177.136.0/23 395532 -216.177.138.0/24 395532 -216.177.140.0/23 395532 -216.177.142.0/24 395532 -216.177.144.0/20 40015 -216.177.160.0/19 16527 -216.177.192.0/19 22364 -216.177.224.0/19 20394 -216.178.0.0/19 5656 -216.178.32.0/20 33739 -216.178.48.0/20 16503 -216.178.64.0/19 10823 -216.178.96.0/20 17035 -216.178.128.0/17 11303 -216.179.0.0/17 8120 -216.179.128.0/21 13389 -216.179.136.0/22 13389 -216.179.142.0/23 17819 -216.179.146.0/23 18097 -216.179.148.0/24 13389 -216.179.149.0/24 17819 -216.179.150.0/23 9919 -216.179.152.0/22 13389 -216.179.156.0/23 13389 -216.179.160.0/21 13389 -216.179.169.0/24 17139 -216.179.170.0/23 17139 -216.179.172.0/22 17139 -216.179.183.0/24 9919 -216.179.188.0/23 9919 -216.179.190.0/23 132827 -216.179.198.0/23 18097 -216.179.204.0/23 132827 -216.179.208.0/24 17139 -216.179.209.0/24 13389 -216.179.210.0/23 13389 -216.179.212.0/24 17139 -216.179.216.0/23 13389 -216.179.218.0/24 17139 -216.179.219.0/24 13389 -216.179.220.0/22 13389 -216.179.224.0/23 132827 -216.179.226.0/23 9919 -216.179.228.0/22 13389 -216.179.232.0/21 13389 -216.179.240.0/21 13389 -216.179.248.0/22 13389 -216.179.254.0/23 13389 -216.180.0.0/19 395662 -216.180.64.0/20 40029 -216.180.80.0/22 395354 -216.180.84.0/22 27611 -216.180.88.0/21 395354 -216.180.96.0/21 395127 -216.180.104.0/21 64267 -216.180.112.0/24 54599 -216.180.113.0/24 19515 -216.180.114.0/24 20115 -216.180.115.0/24 395341 -216.180.116.0/22 19465 -216.180.120.0/21 16740 -216.180.128.0/20 396919 -216.180.144.0/21 46416 -216.180.152.0/22 23314 -216.180.156.0/23 6337 -216.180.158.0/23 395532 -216.180.160.0/22 10692 -216.180.164.0/23 10692 -216.180.166.0/24 10692 -216.180.167.0/24 40228 -216.180.168.0/23 10692 -216.180.170.0/23 13950 -216.180.172.0/22 10692 -216.180.176.0/20 32922 -216.180.192.0/19 11183 -216.180.224.0/20 11042 -216.180.240.0/21 11042 -216.180.248.0/24 3595 -216.180.249.0/24 11042 -216.180.250.0/23 11042 -216.180.252.0/22 11042 -216.181.0.0/24 6407 -216.181.1.0/24 32641 -216.181.2.0/24 32641 -216.181.3.0/24 6407 -216.181.7.0/24 6407 -216.181.8.0/23 6407 -216.181.11.0/24 6407 -216.181.12.0/22 6407 -216.181.16.0/23 6407 -216.181.18.0/24 6407 -216.181.19.0/24 32641 -216.181.20.0/24 32641 -216.181.24.0/22 6407 -216.181.28.0/23 6407 -216.181.33.0/24 6407 -216.181.34.0/23 6407 -216.181.36.0/23 6407 -216.181.39.0/24 6407 -216.181.40.0/22 6407 -216.181.44.0/23 6407 -216.181.46.0/24 53685 -216.181.47.0/24 6407 -216.181.48.0/23 6407 -216.181.50.0/24 53685 -216.181.51.0/24 6407 -216.181.52.0/22 6407 -216.181.56.0/21 6407 -216.181.65.0/24 6407 -216.181.66.0/23 6407 -216.181.68.0/22 6407 -216.181.72.0/21 6407 -216.181.80.0/23 6407 -216.181.83.0/24 6407 -216.181.84.0/23 6407 -216.181.86.0/24 6407 -216.181.88.0/23 6407 -216.181.90.0/24 6407 -216.181.92.0/22 6407 -216.181.96.0/23 6407 -216.181.100.0/22 32641 -216.181.104.0/23 32641 -216.181.106.0/24 32641 -216.181.109.0/24 6407 -216.181.110.0/23 6407 -216.181.112.0/21 6407 -216.181.120.0/24 32641 -216.181.121.0/24 6407 -216.181.122.0/24 32641 -216.181.124.0/24 6407 -216.181.125.0/24 32641 -216.181.126.0/23 6407 -216.181.128.0/23 6407 -216.181.131.0/24 6407 -216.181.132.0/22 6407 -216.181.136.0/21 6407 -216.181.144.0/21 6407 -216.181.152.0/22 6407 -216.181.156.0/23 6407 -216.181.164.0/23 32641 -216.181.166.0/23 6407 -216.181.168.0/21 6407 -216.181.176.0/21 6407 -216.181.184.0/22 6407 -216.181.188.0/23 6407 -216.181.190.0/24 6407 -216.181.192.0/21 6407 -216.181.200.0/22 6407 -216.181.207.0/24 6407 -216.181.208.0/22 6407 -216.181.212.0/24 6407 -216.181.213.0/24 32641 -216.181.214.0/23 6407 -216.181.216.0/21 6407 -216.181.224.0/22 6407 -216.181.228.0/23 6407 -216.181.231.0/24 32641 -216.181.240.0/21 6407 -216.181.248.0/24 32641 -216.181.250.0/23 6407 -216.181.252.0/22 6407 -216.182.0.0/18 10848 -216.182.64.0/20 3561 -216.182.80.0/20 11274 -216.182.96.0/20 15305 -216.182.112.0/20 33490 -216.182.128.0/21 25935 -216.182.136.0/22 25935 -216.182.140.0/24 22693 -216.182.141.0/24 25935 -216.182.142.0/23 25935 -216.182.144.0/20 30243 -216.182.160.0/21 3561 -216.182.168.0/22 3561 -216.182.172.0/23 3561 -216.182.174.0/24 15349 -216.182.175.0/24 3561 -216.182.176.0/20 11320 -216.182.192.0/21 3561 -216.182.200.0/22 3561 -216.182.204.0/24 3561 -216.182.205.0/24 62827 -216.182.206.0/23 3561 -216.182.208.0/20 3561 -216.182.224.0/21 14618 -216.182.232.0/22 14618 -216.182.236.0/23 16509 -216.182.238.0/23 14618 -216.182.240.0/23 46215 -216.182.242.0/23 36601 -216.182.244.0/22 46215 -216.182.248.0/21 46215 -216.183.0.0/19 6539 -216.183.32.0/21 17293 -216.183.40.0/24 393489 -216.183.41.0/24 17293 -216.183.42.0/23 17293 -216.183.44.0/22 17293 -216.183.48.0/21 17293 -216.183.56.0/22 17293 -216.183.60.0/23 17293 -216.183.62.0/24 393489 -216.183.63.0/24 395357 -216.183.64.0/20 22632 -216.183.80.0/20 26788 -216.183.96.0/23 7381 -216.183.98.0/24 55002 -216.183.99.0/24 7381 -216.183.100.0/22 7381 -216.183.104.0/21 7381 -216.183.112.0/20 7381 -216.183.128.0/19 11727 -216.183.160.0/19 17054 -216.183.192.0/20 16717 -216.183.208.0/20 55944 -216.183.224.0/21 7029 -216.183.232.0/22 7029 -216.183.236.0/23 7029 -216.183.238.0/24 40055 -216.183.239.0/24 7029 -216.183.240.0/20 7029 -216.184.0.0/19 10381 -216.184.32.0/23 63117 -216.184.36.0/23 63117 -216.184.38.0/24 63117 -216.184.40.0/21 22200 -216.184.64.0/19 17310 -216.184.96.0/21 12127 -216.184.104.0/23 12956 -216.184.106.0/23 12127 -216.184.108.0/23 263783 -216.184.110.0/24 12956 -216.184.111.0/24 12127 -216.184.112.0/22 12956 -216.184.116.0/22 27768 -216.184.120.0/23 12956 -216.184.122.0/24 12956 -216.184.123.0/24 263783 -216.184.124.0/24 12956 -216.184.125.0/24 263783 -216.184.126.0/24 12956 -216.184.127.0/24 12127 -216.184.128.0/17 4565 -216.185.0.0/20 22925 -216.185.16.0/21 22925 -216.185.24.0/24 22925 -216.185.25.0/24 16516 -216.185.26.0/23 22925 -216.185.28.0/22 22925 -216.185.45.0/24 53889 -216.185.54.0/23 4250 -216.185.62.0/23 4250 -216.185.64.0/21 12021 -216.185.72.0/23 12021 -216.185.74.0/23 393994 -216.185.76.0/23 12021 -216.185.78.0/24 394284 -216.185.79.0/24 12021 -216.185.80.0/24 394284 -216.185.81.0/24 12021 -216.185.82.0/23 12021 -216.185.84.0/22 12021 -216.185.88.0/22 394284 -216.185.92.0/22 12021 -216.185.96.0/19 36351 -216.185.130.0/23 3064 -216.185.144.0/20 32400 -216.185.160.0/19 7385 -216.185.192.0/20 13753 -216.185.224.0/20 16826 -216.185.240.0/20 22995 -216.186.0.0/20 10430 -216.186.16.0/23 10430 -216.186.18.0/24 10430 -216.186.19.0/24 11548 -216.186.20.0/22 10430 -216.186.24.0/21 10430 -216.186.32.0/19 10430 -216.186.64.0/19 10430 -216.186.96.0/23 10430 -216.186.98.0/24 11548 -216.186.99.0/24 10430 -216.186.100.0/22 10430 -216.186.104.0/21 10430 -216.186.112.0/20 10430 -216.186.128.0/19 12083 -216.186.160.0/24 20412 -216.186.161.0/24 12083 -216.186.162.0/23 12083 -216.186.164.0/22 12083 -216.186.168.0/21 12083 -216.186.176.0/20 12083 -216.186.192.0/18 12083 -216.187.0.0/18 11579 -216.187.64.0/22 13768 -216.187.68.0/23 13768 -216.187.70.0/24 54643 -216.187.71.0/24 13768 -216.187.72.0/21 13768 -216.187.80.0/21 13768 -216.187.90.0/24 13768 -216.187.91.0/24 23498 -216.187.92.0/23 54643 -216.187.94.0/23 13768 -216.187.96.0/23 13768 -216.187.98.0/24 13768 -216.187.99.0/24 54643 -216.187.100.0/22 13768 -216.187.104.0/22 13768 -216.187.108.0/23 13768 -216.187.110.0/24 6640 -216.187.111.0/24 13768 -216.187.116.0/22 13768 -216.187.121.0/24 13768 -216.187.122.0/23 13768 -216.187.125.0/24 13768 -216.187.126.0/24 13768 -216.187.127.0/24 54044 -216.187.128.0/23 22936 -216.187.130.0/24 22936 -216.187.131.0/24 62857 -216.187.132.0/22 22936 -216.187.136.0/21 22936 -216.187.144.0/21 22936 -216.187.152.0/23 22936 -216.187.154.0/24 22936 -216.187.155.0/24 40943 -216.187.156.0/22 22936 -216.187.160.0/19 22936 -216.187.192.0/18 7029 -216.188.0.0/17 33398 -216.188.128.0/18 33260 -216.188.192.0/21 15011 -216.188.200.0/22 15011 -216.188.204.0/23 15011 -216.188.206.0/23 10835 -216.188.208.0/20 15011 -216.188.224.0/19 7459 -216.189.0.0/23 6921 -216.189.2.0/24 6921 -216.189.3.0/24 9009 -216.189.4.0/23 6921 -216.189.6.0/24 30436 -216.189.7.0/24 6921 -216.189.8.0/23 6921 -216.189.10.0/24 8175 -216.189.11.0/24 30436 -216.189.12.0/24 30436 -216.189.13.0/24 6921 -216.189.14.0/23 6921 -216.189.16.0/22 6921 -216.189.20.0/24 9009 -216.189.21.0/24 6921 -216.189.22.0/23 6921 -216.189.24.0/23 30436 -216.189.26.0/23 6921 -216.189.28.0/23 6921 -216.189.30.0/24 6921 -216.189.31.0/24 30436 -216.189.32.0/22 6921 -216.189.36.0/24 30436 -216.189.37.0/24 6921 -216.189.38.0/23 6921 -216.189.40.0/21 6921 -216.189.48.0/22 6921 -216.189.52.0/23 20150 -216.189.54.0/24 6921 -216.189.55.0/24 20150 -216.189.56.0/21 6921 -216.189.64.0/20 6921 -216.189.80.0/21 6921 -216.189.88.0/22 6921 -216.189.92.0/23 6921 -216.189.94.0/23 394755 -216.189.96.0/20 6921 -216.189.112.0/22 6921 -216.189.116.0/23 6921 -216.189.118.0/24 9009 -216.189.119.0/24 6921 -216.189.120.0/23 6921 -216.189.122.0/24 9009 -216.189.123.0/24 6921 -216.189.124.0/24 9009 -216.189.125.0/24 6921 -216.189.126.0/23 6921 -216.189.128.0/20 21902 -216.189.144.0/22 7489 -216.189.148.0/24 62217 -216.189.149.0/24 7489 -216.189.150.0/23 7489 -216.189.152.0/24 19969 -216.189.153.0/24 7489 -216.189.154.0/23 7489 -216.189.156.0/22 7489 -216.189.160.0/19 11776 -216.189.192.0/20 22353 -216.189.208.0/21 396883 -216.189.216.0/22 396883 -216.189.220.0/23 396883 -216.189.222.0/24 23314 -216.189.223.0/24 396883 -216.189.244.0/24 18434 -216.189.252.0/24 18434 -216.189.254.0/23 18434 -216.190.0.0/17 7385 -216.190.128.0/18 7385 -216.190.192.0/19 7385 -216.190.224.0/21 7385 -216.190.232.0/22 7385 -216.190.236.0/24 7385 -216.190.237.0/24 394751 -216.190.238.0/23 7385 -216.190.240.0/20 7385 -216.191.0.0/20 15290 -216.191.16.0/22 15290 -216.191.20.0/24 15290 -216.191.21.0/24 53338 -216.191.22.0/23 15290 -216.191.24.0/21 15290 -216.191.32.0/19 15290 -216.191.64.0/19 15290 -216.191.96.0/20 15290 -216.191.112.0/23 15290 -216.191.114.0/24 21570 -216.191.115.0/24 15290 -216.191.116.0/22 15290 -216.191.120.0/22 15290 -216.191.124.0/24 15290 -216.191.125.0/24 21570 -216.191.126.0/23 15290 -216.191.128.0/20 15290 -216.191.144.0/21 15290 -216.191.152.0/22 15290 -216.191.156.0/24 15290 -216.191.157.0/24 21570 -216.191.158.0/23 15290 -216.191.160.0/19 15290 -216.191.192.0/18 15290 -216.193.128.0/21 393856 -216.193.140.0/22 393856 -216.193.144.0/22 393856 -216.193.152.0/21 393856 -216.193.166.0/23 393856 -216.193.172.0/22 393856 -216.193.176.0/21 393856 -216.193.184.0/22 393856 -216.193.190.0/23 393856 -216.193.192.0/22 3257 -216.193.196.0/24 3257 -216.193.197.0/24 17139 -216.193.198.0/23 3257 -216.193.200.0/22 3257 -216.193.204.0/24 23316 -216.193.205.0/24 3257 -216.193.206.0/23 3257 -216.193.208.0/22 3257 -216.193.212.0/24 3257 -216.193.213.0/24 33494 -216.193.214.0/23 3257 -216.193.216.0/24 27393 -216.193.217.0/24 3257 -216.193.218.0/24 3257 -216.193.219.0/24 17139 -216.193.220.0/24 33494 -216.193.221.0/24 3257 -216.193.222.0/23 3257 -216.193.224.0/24 33494 -216.193.225.0/24 23316 -216.193.226.0/23 19257 -216.193.228.0/24 33494 -216.193.229.0/24 3257 -216.193.230.0/23 3257 -216.193.232.0/21 3257 -216.193.240.0/21 3257 -216.193.248.0/24 3257 -216.193.249.0/24 33494 -216.193.250.0/24 3257 -216.193.251.0/24 17139 -216.193.252.0/22 3257 -216.194.0.0/18 16524 -216.194.64.0/19 13911 -216.194.112.0/23 26994 -216.194.114.0/23 13951 -216.194.116.0/24 14312 -216.194.117.0/24 13951 -216.194.118.0/23 13951 -216.194.120.0/21 13951 -216.194.128.0/21 27871 -216.194.136.0/21 28469 -216.194.144.0/20 53638 -216.194.160.0/21 22611 -216.194.168.0/23 22611 -216.194.170.0/23 54641 -216.194.172.0/22 22611 -216.194.176.0/20 14860 -216.194.192.0/21 11604 -216.195.0.0/21 26292 -216.195.8.0/22 26292 -216.195.12.0/24 26292 -216.195.13.0/24 19034 -216.195.14.0/23 26292 -216.195.16.0/20 26292 -216.195.32.0/19 11650 -216.195.64.0/21 62 -216.195.72.0/24 27021 -216.195.73.0/24 62 -216.195.74.0/24 396361 -216.195.75.0/24 62 -216.195.76.0/24 62 -216.195.77.0/24 17466 -216.195.78.0/23 62 -216.195.80.0/20 62 -216.195.96.0/19 33481 -216.195.128.0/19 5760 -216.195.160.0/20 5760 -216.195.176.0/21 5760 -216.195.184.0/22 5760 -216.195.188.0/22 22847 -216.195.192.0/19 7029 -216.195.238.0/23 8092 -216.195.240.0/22 8092 -216.195.244.0/23 8092 -216.195.248.0/23 8092 -216.195.250.0/23 3356 -216.195.252.0/23 3356 -216.196.0.0/18 7321 -216.196.64.0/21 29744 -216.196.72.0/21 14511 -216.196.80.0/20 14511 -216.196.96.0/19 3900 -216.196.128.0/19 6181 -216.196.160.0/20 6181 -216.196.176.0/21 6181 -216.196.184.0/22 6181 -216.196.188.0/23 6181 -216.196.190.0/24 6181 -216.196.191.0/24 32280 -216.196.192.0/18 6181 -216.197.0.0/18 7321 -216.197.64.0/21 22070 -216.197.72.0/24 22070 -216.197.73.0/24 10935 -216.197.74.0/23 22070 -216.197.76.0/22 22070 -216.197.80.0/20 36471 -216.197.96.0/19 14992 -216.197.128.0/17 803 -216.198.64.0/24 11696 -216.198.65.0/24 11774 -216.198.66.0/24 40676 -216.198.68.0/23 13886 -216.198.71.0/24 11696 -216.198.72.0/24 17184 -216.198.73.0/24 8100 -216.198.74.0/24 11696 -216.198.76.0/23 11696 -216.198.78.0/24 11696 -216.198.80.0/22 11696 -216.198.86.0/24 395111 -216.198.87.0/24 11696 -216.198.88.0/24 394844 -216.198.89.0/24 11696 -216.198.90.0/24 11696 -216.198.91.0/24 394844 -216.198.92.0/22 13886 -216.198.96.0/22 53959 -216.198.100.0/24 40020 -216.198.102.0/24 19627 -216.198.105.0/24 40020 -216.198.106.0/23 40020 -216.198.111.0/24 30119 -216.198.112.0/24 53959 -216.198.113.0/24 30119 -216.198.114.0/24 30119 -216.198.115.0/24 29831 -216.198.116.0/24 397893 -216.198.117.0/24 19627 -216.198.118.0/23 40020 -216.198.120.0/23 40020 -216.198.122.0/24 40020 -216.198.123.0/24 397893 -216.198.128.0/19 14663 -216.198.160.0/21 394579 -216.198.168.0/22 394579 -216.198.172.0/24 394579 -216.198.173.0/24 30029 -216.198.174.0/23 394579 -216.198.176.0/20 394579 -216.198.192.0/18 7393 -216.199.0.0/16 7029 -216.200.0.0/24 6461 -216.200.1.0/24 62665 -216.200.2.0/23 6461 -216.200.4.0/22 6461 -216.200.8.0/24 6461 -216.200.9.0/24 17025 -216.200.10.0/24 6461 -216.200.11.0/24 25938 -216.200.12.0/22 6461 -216.200.16.0/24 63296 -216.200.17.0/24 6461 -216.200.18.0/24 17025 -216.200.19.0/24 6461 -216.200.20.0/22 6461 -216.200.24.0/21 6461 -216.200.32.0/20 6461 -216.200.48.0/21 6461 -216.200.56.0/22 6461 -216.200.60.0/23 6461 -216.200.62.0/24 32169 -216.200.63.0/24 6461 -216.200.64.0/24 6461 -216.200.65.0/24 26094 -216.200.66.0/23 6461 -216.200.68.0/22 6461 -216.200.72.0/21 6461 -216.200.80.0/21 6461 -216.200.88.0/22 6461 -216.200.92.0/23 6461 -216.200.94.0/24 6461 -216.200.95.0/24 19092 -216.200.96.0/23 6461 -216.200.98.0/24 14984 -216.200.99.0/24 6461 -216.200.100.0/22 6461 -216.200.104.0/21 6461 -216.200.112.0/20 6461 -216.200.128.0/24 6461 -216.200.129.0/24 15178 -216.200.130.0/23 6461 -216.200.132.0/22 6461 -216.200.136.0/22 6461 -216.200.140.0/23 6461 -216.200.142.0/24 53335 -216.200.143.0/24 6461 -216.200.144.0/24 6461 -216.200.145.0/24 30627 -216.200.146.0/23 6461 -216.200.148.0/24 6461 -216.200.149.0/24 202745 -216.200.150.0/23 6461 -216.200.152.0/21 6461 -216.200.160.0/23 6461 -216.200.162.0/24 19966 -216.200.163.0/24 6461 -216.200.164.0/24 6461 -216.200.165.0/24 393551 -216.200.166.0/23 6461 -216.200.168.0/21 6461 -216.200.176.0/20 6461 -216.200.192.0/19 6461 -216.200.224.0/22 6461 -216.200.228.0/23 6461 -216.200.230.0/24 6461 -216.200.231.0/24 14272 -216.200.232.0/23 30419 -216.200.234.0/23 6461 -216.200.236.0/22 6461 -216.200.240.0/21 6461 -216.200.248.0/23 6461 -216.200.250.0/24 6461 -216.200.251.0/24 17025 -216.200.252.0/22 6461 -216.201.0.0/19 7106 -216.201.32.0/21 7106 -216.201.40.0/23 7106 -216.201.42.0/24 394708 -216.201.43.0/24 7106 -216.201.44.0/22 7106 -216.201.48.0/20 7106 -216.201.64.0/20 64242 -216.201.80.0/21 46562 -216.201.88.0/24 46562 -216.201.89.0/24 22384 -216.201.90.0/23 46562 -216.201.92.0/22 46562 -216.201.96.0/20 18650 -216.201.112.0/20 10685 -216.201.128.0/17 11215 -216.202.0.0/18 3356 -216.202.64.0/19 3356 -216.202.96.0/20 3356 -216.202.112.0/21 3356 -216.202.120.0/23 3356 -216.202.122.0/24 3356 -216.202.123.0/24 21889 -216.202.124.0/23 21889 -216.202.126.0/23 3356 -216.202.128.0/17 3356 -216.203.0.0/18 7381 -216.203.64.0/24 8103 -216.203.73.0/24 8103 -216.203.79.0/24 8103 -216.203.80.0/20 27021 -216.203.96.0/21 17306 -216.203.104.0/24 209 -216.203.105.0/24 17306 -216.203.106.0/23 17306 -216.203.108.0/22 17306 -216.203.112.0/20 17306 -216.203.128.0/17 2828 -216.204.0.0/17 7029 -216.204.128.0/20 7029 -216.204.144.0/23 7029 -216.204.146.0/24 7029 -216.204.147.0/24 20458 -216.204.148.0/24 20458 -216.204.149.0/24 7029 -216.204.150.0/23 7029 -216.204.152.0/21 7029 -216.204.160.0/19 7029 -216.204.192.0/18 7029 -216.205.0.0/20 14135 -216.205.24.0/24 30031 -216.205.25.0/24 53985 -216.205.26.0/23 14135 -216.205.28.0/22 14135 -216.205.32.0/20 14135 -216.205.48.0/22 11022 -216.205.64.0/19 7381 -216.205.96.0/20 11022 -216.205.144.0/20 7381 -216.205.160.0/20 14135 -216.205.184.0/22 14135 -216.205.192.0/23 20176 -216.205.194.0/23 14888 -216.205.196.0/24 14888 -216.205.197.0/24 20176 -216.205.198.0/23 14888 -216.205.200.0/21 14888 -216.205.208.0/20 7029 -216.205.224.0/19 20374 -216.206.0.0/20 209 -216.206.16.0/21 209 -216.206.24.0/24 21639 -216.206.25.0/24 209 -216.206.26.0/23 209 -216.206.28.0/22 209 -216.206.32.0/22 209 -216.206.36.0/24 35994 -216.206.37.0/24 209 -216.206.38.0/23 209 -216.206.40.0/22 209 -216.206.44.0/23 11052 -216.206.46.0/23 209 -216.206.48.0/20 209 -216.206.64.0/20 209 -216.206.80.0/22 209 -216.206.84.0/23 209 -216.206.86.0/24 25739 -216.206.87.0/24 6223 -216.206.88.0/22 209 -216.206.92.0/23 3257 -216.206.94.0/23 209 -216.206.96.0/21 209 -216.206.104.0/22 209 -216.206.108.0/24 209 -216.206.109.0/24 19031 -216.206.110.0/24 701 -216.206.111.0/24 209 -216.206.112.0/21 209 -216.206.120.0/22 209 -216.206.124.0/23 209 -216.206.126.0/24 209 -216.206.127.0/24 54114 -216.206.128.0/22 13781 -216.206.132.0/22 209 -216.206.136.0/21 209 -216.206.144.0/20 209 -216.206.160.0/20 209 -216.206.176.0/22 209 -216.206.180.0/24 53804 -216.206.181.0/24 209 -216.206.182.0/23 209 -216.206.184.0/21 209 -216.206.192.0/20 209 -216.206.208.0/21 209 -216.206.216.0/22 26133 -216.206.220.0/22 209 -216.206.224.0/19 209 -216.207.0.0/20 209 -216.207.16.0/24 209 -216.207.17.0/24 29759 -216.207.18.0/23 209 -216.207.20.0/23 53272 -216.207.22.0/23 209 -216.207.24.0/21 209 -216.207.32.0/21 209 -216.207.40.0/24 62621 -216.207.41.0/24 209 -216.207.42.0/24 26579 -216.207.43.0/24 14045 -216.207.44.0/22 209 -216.207.48.0/21 209 -216.207.56.0/24 46849 -216.207.57.0/24 209 -216.207.58.0/23 209 -216.207.60.0/22 209 -216.207.64.0/20 209 -216.207.80.0/21 209 -216.207.88.0/24 40876 -216.207.89.0/24 209 -216.207.90.0/24 17078 -216.207.91.0/24 209 -216.207.92.0/22 209 -216.207.96.0/19 209 -216.207.128.0/20 13536 -216.207.144.0/23 3561 -216.207.146.0/23 209 -216.207.148.0/22 209 -216.207.152.0/21 209 -216.207.160.0/19 209 -216.207.192.0/24 26524 -216.207.193.0/24 209 -216.207.194.0/23 209 -216.207.196.0/22 209 -216.207.200.0/22 209 -216.207.204.0/23 209 -216.207.206.0/23 17143 -216.207.208.0/21 209 -216.207.216.0/22 209 -216.207.220.0/24 12250 -216.207.221.0/24 209 -216.207.222.0/23 209 -216.207.224.0/21 209 -216.207.232.0/22 209 -216.207.236.0/23 209 -216.207.238.0/24 54645 -216.207.239.0/24 209 -216.207.240.0/22 209 -216.207.244.0/23 14793 -216.207.246.0/23 209 -216.207.248.0/21 209 -216.208.0.0/19 577 -216.208.32.0/22 577 -216.208.36.0/23 36522 -216.208.38.0/23 577 -216.208.40.0/21 577 -216.208.48.0/20 577 -216.208.64.0/24 15321 -216.208.65.0/24 577 -216.208.66.0/24 15321 -216.208.67.0/24 577 -216.208.68.0/24 3848 -216.208.69.0/24 577 -216.208.70.0/23 577 -216.208.72.0/21 577 -216.208.80.0/22 577 -216.208.84.0/23 577 -216.208.86.0/24 3848 -216.208.87.0/24 577 -216.208.88.0/21 577 -216.208.96.0/20 577 -216.208.112.0/22 577 -216.208.116.0/23 577 -216.208.118.0/24 36522 -216.208.119.0/24 577 -216.208.120.0/24 577 -216.208.121.0/24 396306 -216.208.122.0/23 577 -216.208.124.0/24 36522 -216.208.125.0/24 577 -216.208.126.0/23 577 -216.208.128.0/21 577 -216.208.136.0/22 577 -216.208.140.0/24 577 -216.208.141.0/24 36522 -216.208.142.0/23 36522 -216.208.144.0/24 577 -216.208.145.0/24 14078 -216.208.146.0/23 577 -216.208.148.0/22 577 -216.208.152.0/22 577 -216.208.156.0/24 577 -216.208.157.0/24 36522 -216.208.158.0/23 577 -216.208.160.0/21 577 -216.208.168.0/24 577 -216.208.169.0/24 12132 -216.208.170.0/23 577 -216.208.172.0/23 577 -216.208.174.0/24 577 -216.208.175.0/24 19152 -216.208.176.0/24 19152 -216.208.177.0/24 577 -216.208.178.0/24 12132 -216.208.179.0/24 577 -216.208.180.0/22 577 -216.208.184.0/21 577 -216.208.192.0/22 577 -216.208.196.0/23 577 -216.208.198.0/23 15321 -216.208.200.0/24 36522 -216.208.201.0/24 577 -216.208.202.0/23 577 -216.208.204.0/22 577 -216.208.208.0/21 577 -216.208.216.0/24 3848 -216.208.217.0/24 577 -216.208.218.0/23 577 -216.208.220.0/22 577 -216.208.224.0/21 577 -216.208.232.0/22 577 -216.208.236.0/24 577 -216.208.237.0/24 36522 -216.208.238.0/23 36522 -216.208.240.0/21 577 -216.208.248.0/23 577 -216.208.250.0/24 577 -216.208.251.0/24 15321 -216.208.252.0/22 577 -216.209.0.0/18 577 -216.209.64.0/20 577 -216.209.80.0/21 577 -216.209.88.0/22 15321 -216.209.92.0/22 577 -216.209.96.0/21 577 -216.209.104.0/23 577 -216.209.106.0/24 15321 -216.209.107.0/24 577 -216.209.108.0/22 577 -216.209.112.0/20 577 -216.209.128.0/20 577 -216.209.144.0/21 577 -216.209.152.0/22 577 -216.209.156.0/24 3848 -216.209.157.0/24 577 -216.209.158.0/23 577 -216.209.160.0/19 577 -216.209.192.0/21 577 -216.209.200.0/22 577 -216.209.204.0/23 577 -216.209.206.0/24 15321 -216.209.207.0/24 16605 -216.209.208.0/20 577 -216.209.224.0/22 577 -216.209.228.0/23 577 -216.209.230.0/24 16605 -216.209.231.0/24 577 -216.209.232.0/23 15321 -216.209.234.0/24 15321 -216.209.235.0/24 577 -216.209.236.0/22 577 -216.209.240.0/20 577 -216.210.0.0/21 10430 -216.210.8.0/22 394391 -216.210.12.0/22 10430 -216.210.16.0/20 10430 -216.210.32.0/19 10430 -216.210.64.0/19 18624 -216.210.96.0/20 19662 -216.210.112.0/20 33149 -216.210.128.0/17 7385 -216.211.0.0/17 32277 -216.211.128.0/20 11274 -216.211.144.0/20 53848 -216.211.160.0/23 32504 -216.211.163.0/24 25878 -216.211.165.0/24 55132 -216.211.167.0/24 54516 -216.211.169.0/24 46259 -216.211.173.0/24 55132 -216.211.174.0/24 7018 -216.211.175.0/24 25878 -216.211.176.0/20 18897 -216.211.192.0/19 11370 -216.211.231.0/24 29944 -216.211.233.0/24 29944 -216.211.240.0/20 35891 -216.212.0.0/19 16526 -216.212.32.0/22 16526 -216.212.36.0/24 16526 -216.212.38.0/23 16526 -216.212.40.0/21 16526 -216.212.48.0/20 16526 -216.212.64.0/19 16526 -216.212.96.0/20 16526 -216.212.112.0/21 16526 -216.212.120.0/22 16526 -216.212.124.0/23 16526 -216.212.126.0/24 16526 -216.212.128.0/18 16526 -216.212.192.0/19 40788 -216.212.224.0/19 16700 -216.213.0.0/20 394111 -216.213.16.0/21 7001 -216.213.24.0/21 64267 -216.213.48.0/22 30698 -216.213.52.0/22 396111 -216.213.56.0/21 396353 -216.213.64.0/19 6580 -216.213.96.0/21 13984 -216.213.104.0/21 54238 -216.213.112.0/20 46719 -216.213.128.0/18 56329 -216.213.192.0/18 11353 -216.214.0.0/16 7029 -216.215.0.0/21 19800 -216.215.8.0/24 25764 -216.215.9.0/24 19800 -216.215.10.0/23 19800 -216.215.12.0/24 19800 -216.215.13.0/24 11780 -216.215.14.0/23 19800 -216.215.16.0/20 19800 -216.215.32.0/20 19800 -216.215.48.0/21 19800 -216.215.56.0/21 10 -216.215.64.0/18 11215 -216.215.128.0/17 7029 -216.216.0.0/19 7029 -216.216.32.0/23 33141 -216.216.34.0/23 7029 -216.216.36.0/22 7029 -216.216.40.0/21 7029 -216.216.48.0/20 7029 -216.216.64.0/18 7029 -216.216.128.0/17 7029 -216.217.0.0/16 7029 -216.218.0.0/18 852 -216.218.64.0/18 20257 -216.218.128.0/18 6939 -216.218.192.0/21 6939 -216.218.200.0/24 6939 -216.218.201.0/24 54288 -216.218.202.0/23 6939 -216.218.204.0/23 36103 -216.218.206.0/23 6939 -216.218.208.0/20 6939 -216.218.224.0/22 6939 -216.218.228.0/23 6939 -216.218.230.0/24 6939 -216.218.231.0/24 394996 -216.218.232.0/24 36103 -216.218.233.0/24 394996 -216.218.234.0/24 6565 -216.218.235.0/24 6939 -216.218.236.0/22 6939 -216.218.240.0/22 6939 -216.218.244.0/23 6939 -216.218.246.0/24 54288 -216.218.247.0/24 6939 -216.218.248.0/23 6939 -216.218.250.0/24 6939 -216.218.251.0/24 36103 -216.218.252.0/24 6939 -216.218.253.0/24 36103 -216.218.254.0/23 6939 -216.219.0.0/18 7029 -216.219.64.0/20 3561 -216.219.80.0/20 19318 -216.219.96.0/20 3561 -216.219.114.0/23 16815 -216.219.116.0/23 16815 -216.219.119.0/24 16815 -216.219.120.0/22 16815 -216.219.125.0/24 21866 -216.219.126.0/23 21866 -216.219.128.0/17 3064 -216.220.0.0/24 8057 -216.220.1.0/24 40933 -216.220.2.0/23 8057 -216.220.4.0/24 40933 -216.220.5.0/24 8057 -216.220.6.0/24 8057 -216.220.7.0/24 33339 -216.220.8.0/24 33339 -216.220.9.0/24 8057 -216.220.10.0/24 8057 -216.220.11.0/24 40933 -216.220.12.0/23 8057 -216.220.14.0/24 40933 -216.220.15.0/24 8057 -216.220.16.0/22 19605 -216.220.20.0/23 8057 -216.220.22.0/24 6081 -216.220.23.0/24 33339 -216.220.24.0/23 8057 -216.220.26.0/23 40933 -216.220.28.0/24 40933 -216.220.29.0/24 8057 -216.220.30.0/23 8057 -216.220.32.0/20 12188 -216.220.48.0/24 12188 -216.220.49.0/24 36030 -216.220.50.0/23 36030 -216.220.52.0/22 12188 -216.220.56.0/21 12188 -216.220.64.0/20 6079 -216.220.80.0/24 19159 -216.220.81.0/24 3580 -216.220.82.0/23 3580 -216.220.84.0/23 3580 -216.220.86.0/24 26801 -216.220.87.0/24 3580 -216.220.88.0/22 3580 -216.220.92.0/24 3580 -216.220.93.0/24 19159 -216.220.94.0/23 3580 -216.220.96.0/19 8059 -216.220.128.0/19 10700 -216.220.160.0/20 11753 -216.220.176.0/20 20130 -216.220.193.0/24 13412 -216.220.194.0/24 13412 -216.220.197.0/24 42475 -216.220.198.0/24 47961 -216.220.199.0/24 13412 -216.220.200.0/23 13412 -216.220.202.0/24 13412 -216.220.208.0/20 8075 -216.220.224.0/21 11847 -216.220.232.0/22 11847 -216.220.236.0/23 11847 -216.220.238.0/24 30669 -216.220.239.0/24 11847 -216.220.240.0/20 11847 -216.221.3.0/24 12087 -216.221.5.0/24 13358 -216.221.6.0/23 12087 -216.221.8.0/24 12087 -216.221.10.0/24 12087 -216.221.15.0/24 12087 -216.221.16.0/23 394136 -216.221.32.0/19 6280 -216.221.64.0/19 7992 -216.221.96.0/19 14543 -216.221.128.0/20 32312 -216.221.144.0/21 3257 -216.221.152.0/23 3257 -216.221.154.0/23 40160 -216.221.156.0/22 3257 -216.221.160.0/19 54489 -216.221.192.0/20 26727 -216.221.208.0/21 26585 -216.221.220.0/22 26585 -216.221.224.0/23 14609 -216.221.228.0/24 14609 -216.221.230.0/23 14609 -216.221.232.0/24 14609 -216.221.236.0/23 394749 -216.221.238.0/24 394749 -216.221.239.0/24 6461 -216.221.240.0/20 18749 -216.222.0.0/20 4997 -216.222.24.0/22 4997 -216.222.32.0/23 4997 -216.222.36.0/22 4997 -216.222.40.0/21 4997 -216.222.48.0/20 4997 -216.222.64.0/21 11359 -216.222.72.0/24 11359 -216.222.80.0/21 18798 -216.222.88.0/24 18798 -216.222.90.0/23 4997 -216.222.92.0/23 4997 -216.222.101.0/24 4997 -216.222.104.0/21 6461 -216.222.128.0/20 16942 -216.222.144.0/20 21719 -216.222.160.0/19 11796 -216.222.192.0/20 17054 -216.222.208.0/24 25617 -216.222.209.0/24 7018 -216.222.210.0/23 7018 -216.222.214.0/23 30039 -216.222.219.0/24 2386 -216.222.224.0/20 3593 -216.222.240.0/22 3593 -216.222.244.0/23 3593 -216.222.246.0/24 18436 -216.222.247.0/24 3593 -216.222.248.0/21 3593 -216.223.0.0/22 14744 -216.223.4.0/22 2828 -216.223.8.0/22 10910 -216.223.12.0/23 22795 -216.223.14.0/23 10910 -216.223.16.0/22 12182 -216.223.20.0/22 14744 -216.223.24.0/21 29791 -216.223.32.0/22 10910 -216.223.36.0/23 10910 -216.223.38.0/24 62715 -216.223.39.0/24 24247 -216.223.40.0/24 10910 -216.223.41.0/24 31956 -216.223.42.0/23 10910 -216.223.44.0/22 10910 -216.223.48.0/21 10910 -216.223.56.0/24 10910 -216.223.57.0/24 15278 -216.223.58.0/23 10910 -216.223.60.0/22 10910 -216.223.64.0/18 11522 -216.223.128.0/19 12059 -216.223.160.0/23 62 -216.223.162.0/23 26512 -216.223.164.0/24 54554 -216.223.165.0/24 62 -216.223.166.0/23 62 -216.223.168.0/21 62 -216.223.176.0/21 62 -216.223.184.0/24 62 -216.223.185.0/24 26512 -216.223.186.0/24 54554 -216.223.187.0/24 62 -216.223.188.0/22 62 -216.223.192.0/19 21565 -216.223.224.0/20 14634 -216.223.240.0/21 22077 -216.223.252.0/23 22077 -216.224.0.0/18 4565 -216.224.64.0/19 6939 -216.224.96.0/22 3561 -216.224.100.0/22 14919 -216.224.104.0/21 3561 -216.224.112.0/24 64050 -216.224.113.0/24 24000 -216.224.114.0/23 64050 -216.224.116.0/22 64050 -216.224.120.0/21 64050 -216.224.128.0/18 26914 -216.224.192.0/24 62958 -216.224.194.0/23 63035 -216.224.198.0/24 62958 -216.224.199.0/24 18757 -216.224.200.0/24 18757 -216.224.202.0/24 18757 -216.224.208.0/24 18757 -216.224.210.0/23 62958 -216.224.214.0/23 62958 -216.224.216.0/24 62958 -216.224.218.0/23 18757 -216.224.223.0/24 18757 -216.224.224.0/19 39948 -216.225.0.0/20 13446 -216.225.16.0/21 13446 -216.225.24.0/24 53541 -216.225.25.0/24 53540 -216.225.26.0/24 53541 -216.225.27.0/24 13446 -216.225.28.0/22 13446 -216.225.32.0/19 398191 -216.225.64.0/19 32682 -216.225.96.0/19 30404 -216.225.128.0/18 13446 -216.225.192.0/19 13446 -216.225.224.0/20 13446 -216.225.240.0/21 13446 -216.225.248.0/22 13446 -216.225.252.0/23 13446 -216.225.254.0/24 13426 -216.225.255.0/24 13446 -216.226.2.0/24 397497 -216.226.16.0/20 10818 -216.226.32.0/20 852 -216.226.48.0/23 852 -216.226.50.0/24 14908 -216.226.51.0/24 852 -216.226.52.0/22 852 -216.226.56.0/21 852 -216.226.64.0/20 32034 -216.226.80.0/20 11796 -216.226.96.0/19 32360 -216.226.128.0/19 13706 -216.226.160.0/20 12274 -216.226.176.0/22 11109 -216.226.180.0/23 11109 -216.226.182.0/24 11109 -216.226.184.0/21 11109 -216.226.192.0/24 46879 -216.226.196.0/24 19208 -216.226.197.0/24 203 -216.226.198.0/24 19208 -216.226.199.0/24 203 -216.226.200.0/21 12684 -216.226.208.0/20 12684 -216.226.224.0/19 12684 -216.227.0.0/22 32645 -216.227.4.0/24 5742 -216.227.5.0/24 6461 -216.227.6.0/23 12175 -216.227.8.0/21 32645 -216.227.16.0/20 22647 -216.227.32.0/23 22647 -216.227.34.0/23 5742 -216.227.36.0/23 5742 -216.227.38.0/24 5742 -216.227.39.0/24 12175 -216.227.40.0/21 7018 -216.227.48.0/21 7018 -216.227.56.0/21 14671 -216.227.70.0/24 209 -216.227.71.0/24 5742 -216.227.72.0/22 32645 -216.227.76.0/24 32645 -216.227.77.0/24 6461 -216.227.78.0/23 13673 -216.227.80.0/22 14671 -216.227.84.0/24 5742 -216.227.85.0/24 13329 -216.227.86.0/23 22647 -216.227.88.0/21 32645 -216.227.96.0/22 32645 -216.227.100.0/22 12175 -216.227.104.0/21 12175 -216.227.112.0/22 12175 -216.227.116.0/23 12175 -216.227.118.0/23 32645 -216.227.120.0/24 6461 -216.227.121.0/24 5742 -216.227.122.0/23 14671 -216.227.124.0/22 22647 -216.227.128.0/18 174 -216.227.192.0/22 3561 -216.227.196.0/23 3561 -216.227.198.0/24 3561 -216.227.199.0/24 395818 -216.227.200.0/21 3561 -216.227.208.0/23 15244 -216.227.211.0/24 15244 -216.227.212.0/22 15244 -216.227.216.0/21 15244 -216.227.224.0/20 3561 -216.227.240.0/21 35847 -216.227.248.0/24 393383 -216.227.249.0/24 35847 -216.227.250.0/23 35847 -216.227.252.0/22 35847 -216.228.0.0/19 7735 -216.228.32.0/19 11961 -216.228.64.0/20 17306 -216.228.80.0/23 22504 -216.228.82.0/23 14793 -216.228.84.0/22 14793 -216.228.88.0/21 27221 -216.228.96.0/20 11426 -216.228.112.0/21 11414 -216.228.120.0/22 11414 -216.228.124.0/23 11414 -216.228.126.0/24 38564 -216.228.127.0/24 11414 -216.228.128.0/20 23022 -216.228.144.0/20 30343 -216.228.160.0/19 4181 -216.228.192.0/20 12009 -216.228.208.0/22 30466 -216.228.212.0/23 30466 -216.228.214.0/24 30466 -216.228.216.0/21 30466 -216.228.224.0/22 25721 -216.228.228.0/23 11227 -216.228.230.0/24 46741 -216.228.232.0/24 11227 -216.228.233.0/24 577 -216.228.236.0/23 11227 -216.228.240.0/20 22739 -216.229.0.0/21 7806 -216.229.8.0/22 7806 -216.229.12.0/23 7806 -216.229.14.0/24 7806 -216.229.15.0/24 394870 -216.229.16.0/23 7806 -216.229.18.0/24 393614 -216.229.19.0/24 7806 -216.229.20.0/24 7806 -216.229.21.0/24 26451 -216.229.22.0/24 26451 -216.229.23.0/24 7806 -216.229.24.0/22 7806 -216.229.28.0/24 7806 -216.229.29.0/24 26451 -216.229.30.0/23 7806 -216.229.32.0/20 7832 -216.229.48.0/24 29951 -216.229.51.0/24 29951 -216.229.52.0/24 29951 -216.229.54.0/23 29951 -216.229.57.0/24 29951 -216.229.60.0/22 29951 -216.229.64.0/19 11976 -216.229.96.0/20 6939 -216.229.112.0/21 29843 -216.229.120.0/22 63178 -216.229.124.0/22 46694 -216.229.128.0/21 174 -216.229.136.0/23 394715 -216.229.138.0/23 174 -216.229.140.0/22 174 -216.229.144.0/22 21549 -216.229.148.0/24 62947 -216.229.149.0/24 21549 -216.229.150.0/24 21549 -216.229.151.0/24 62947 -216.229.152.0/23 21549 -216.229.154.0/24 21549 -216.229.155.0/24 62947 -216.229.156.0/22 21549 -216.229.160.0/20 12111 -216.229.176.0/22 12111 -216.229.180.0/23 12111 -216.229.182.0/24 12111 -216.229.183.0/24 31857 -216.229.184.0/22 12111 -216.229.188.0/24 12111 -216.229.189.0/24 33147 -216.229.190.0/23 12111 -216.229.192.0/19 6389 -216.229.224.0/20 26827 -216.229.240.0/20 12266 -216.230.0.0/21 18540 -216.230.8.0/23 18540 -216.230.10.0/23 46541 -216.230.12.0/24 16653 -216.230.16.0/24 32664 -216.230.17.0/24 36511 -216.230.18.0/24 209 -216.230.19.0/24 36511 -216.230.20.0/24 397084 -216.230.21.0/24 397129 -216.230.22.0/23 20254 -216.230.24.0/24 12242 -216.230.25.0/24 54815 -216.230.26.0/23 12242 -216.230.29.0/24 394002 -216.230.30.0/23 64267 -216.230.32.0/20 14288 -216.230.48.0/21 13880 -216.230.56.0/23 13880 -216.230.58.0/24 13880 -216.230.59.0/24 26887 -216.230.60.0/24 26887 -216.230.61.0/24 13880 -216.230.62.0/23 13880 -216.230.64.0/24 11696 -216.230.65.0/24 394844 -216.230.67.0/24 11696 -216.230.68.0/23 11696 -216.230.70.0/24 395111 -216.230.71.0/24 11696 -216.230.72.0/22 13886 -216.230.76.0/24 11696 -216.230.77.0/24 395111 -216.230.78.0/23 13886 -216.230.80.0/23 11774 -216.230.84.0/24 11696 -216.230.86.0/24 11696 -216.230.87.0/24 394844 -216.230.88.0/24 11774 -216.230.89.0/24 11696 -216.230.91.0/24 11696 -216.230.92.0/24 394844 -216.230.94.0/24 54361 -216.230.95.0/24 11696 -216.230.96.0/23 17054 -216.230.98.0/24 17054 -216.230.99.0/24 395391 -216.230.100.0/22 17054 -216.230.104.0/21 17054 -216.230.112.0/20 17054 -216.230.128.0/19 14754 -216.230.160.0/20 3931 -216.230.192.0/24 3064 -216.230.224.0/20 40156 -216.230.240.0/20 23394 -216.231.0.0/19 22773 -216.231.32.0/21 18566 -216.231.40.0/24 18566 -216.231.41.0/24 17184 -216.231.42.0/23 18566 -216.231.44.0/22 18566 -216.231.48.0/20 18566 -216.231.83.0/24 32165 -216.231.91.0/24 32165 -216.231.96.0/19 7029 -216.231.128.0/20 53264 -216.231.151.0/24 13649 -216.231.152.0/24 13649 -216.231.158.0/24 13649 -216.231.159.0/24 397676 -216.231.160.0/20 22561 -216.231.176.0/21 22561 -216.231.184.0/22 22561 -216.231.188.0/23 22561 -216.231.190.0/24 209 -216.231.191.0/24 22561 -216.231.192.0/22 27461 -216.231.198.0/24 27461 -216.231.205.0/24 27461 -216.231.206.0/24 27461 -216.231.208.0/21 13630 -216.231.221.0/24 3356 -216.231.222.0/24 13630 -216.231.223.0/24 3356 -216.231.224.0/24 40443 -216.231.228.0/24 40443 -216.231.240.0/24 12051 -216.231.241.0/24 2152 -216.231.242.0/24 12051 -216.232.0.0/16 852 -216.233.0.0/16 701 -216.234.0.0/19 20141 -216.234.32.0/19 21570 -216.234.64.0/20 19107 -216.234.80.0/20 25967 -216.234.96.0/20 12129 -216.234.112.0/21 12129 -216.234.120.0/22 12129 -216.234.124.0/24 55293 -216.234.125.0/24 12129 -216.234.126.0/23 12129 -216.234.128.0/23 14545 -216.234.132.0/24 14545 -216.234.133.0/24 62839 -216.234.134.0/23 20082 -216.234.137.0/24 23233 -216.234.138.0/23 62929 -216.234.140.0/22 20082 -216.234.144.0/23 22787 -216.234.147.0/24 22787 -216.234.148.0/23 22787 -216.234.156.0/23 22787 -216.234.160.0/19 13911 -216.234.192.0/21 7850 -216.234.200.0/22 7850 -216.234.204.0/22 20228 -216.234.208.0/21 7850 -216.234.216.0/22 7850 -216.234.220.0/22 33152 -216.234.250.0/24 36351 -216.235.0.0/20 13657 -216.235.16.0/23 53624 -216.235.18.0/24 3549 -216.235.32.0/19 6534 -216.235.64.0/20 11595 -216.235.80.0/22 46562 -216.235.84.0/24 29802 -216.235.85.0/24 6939 -216.235.86.0/24 29802 -216.235.87.0/24 32780 -216.235.88.0/24 29802 -216.235.96.0/19 22054 -216.235.128.0/20 6461 -216.235.144.0/23 6461 -216.235.146.0/24 6461 -216.235.147.0/24 40374 -216.235.148.0/24 6461 -216.235.149.0/24 40374 -216.235.150.0/24 55224 -216.235.151.0/24 6461 -216.235.152.0/23 6461 -216.235.154.0/24 395133 -216.235.155.0/24 6461 -216.235.156.0/22 6461 -216.235.160.0/20 32719 -216.235.176.0/20 11609 -216.235.192.0/23 15148 -216.235.194.0/24 3900 -216.235.195.0/24 394901 -216.235.196.0/22 3561 -216.235.200.0/21 3561 -216.235.208.0/20 3900 -216.235.224.0/20 26202 -216.235.240.0/20 26914 -216.236.0.0/18 7029 -216.236.64.0/19 7029 -216.236.96.0/20 25625 -216.236.112.0/21 25625 -216.236.120.0/22 25625 -216.236.124.0/23 25625 -216.236.126.0/24 25625 -216.236.127.0/24 15035 -216.236.128.0/22 19082 -216.236.133.0/24 19082 -216.236.134.0/24 19082 -216.236.137.0/24 19082 -216.236.138.0/24 19082 -216.236.140.0/22 19082 -216.236.146.0/23 19082 -216.236.148.0/24 22420 -216.236.154.0/23 19082 -216.236.156.0/24 19082 -216.236.159.0/24 19082 -216.236.160.0/20 16863 -216.236.176.0/20 26106 -216.236.192.0/19 12684 -216.236.224.0/20 14135 -216.236.240.0/20 10653 -216.237.0.0/20 7829 -216.237.16.0/23 7829 -216.237.18.0/24 7829 -216.237.19.0/24 14265 -216.237.20.0/22 7829 -216.237.24.0/22 7829 -216.237.28.0/24 7829 -216.237.29.0/24 32260 -216.237.30.0/23 7829 -216.237.32.0/21 7829 -216.237.40.0/22 7829 -216.237.44.0/23 7829 -216.237.46.0/24 7829 -216.237.47.0/24 14265 -216.237.48.0/20 7829 -216.237.64.0/19 39939 -216.237.96.0/20 10271 -216.237.112.0/20 32736 -216.237.128.0/18 2828 -216.237.192.0/19 22709 -216.237.224.0/20 22709 -216.237.240.0/22 398050 -216.237.244.0/23 398050 -216.237.246.0/24 30043 -216.237.247.0/24 398050 -216.237.248.0/22 398050 -216.237.252.0/23 398050 -216.237.254.0/24 30043 -216.237.255.0/24 398050 -216.238.0.0/20 46632 -216.238.16.0/22 15008 -216.238.20.0/23 15008 -216.238.22.0/24 15008 -216.238.24.0/21 15008 -216.238.32.0/23 26759 -216.238.34.0/23 46559 -216.238.36.0/23 26759 -216.238.38.0/23 46559 -216.238.40.0/23 26759 -216.238.42.0/23 46559 -216.238.44.0/24 26759 -216.238.45.0/24 46559 -216.238.46.0/23 26759 -216.238.48.0/24 26759 -216.238.49.0/24 46559 -216.238.50.0/24 26759 -216.238.51.0/24 46559 -216.238.52.0/23 46559 -216.238.54.0/24 26759 -216.238.55.0/24 46559 -216.238.56.0/22 26759 -216.238.60.0/22 46559 -216.238.128.0/23 27565 -216.238.136.0/23 27565 -216.238.144.0/23 19844 -216.238.146.0/24 19844 -216.238.147.0/24 20940 -216.238.148.0/22 19844 -216.238.152.0/21 19844 -216.238.160.0/24 13536 -216.238.161.0/24 19802 -216.238.162.0/24 13536 -216.238.163.0/24 55276 -216.238.164.0/22 13536 -216.238.168.0/21 13536 -216.238.176.0/21 14140 -216.238.184.0/22 30640 -216.238.188.0/23 16509 -216.238.192.0/23 17184 -216.238.196.0/22 17184 -216.238.208.0/20 17037 -216.238.224.0/20 22457 -216.238.240.0/20 13904 -216.239.0.0/19 15267 -216.239.32.0/20 15169 -216.239.48.0/21 15169 -216.239.56.0/22 15169 -216.239.60.0/24 43515 -216.239.61.0/24 15169 -216.239.62.0/23 15169 -216.239.64.0/19 10996 -216.239.97.0/24 32336 -216.239.98.0/24 45187 -216.239.99.0/24 32336 -216.239.100.0/24 15395 -216.239.104.0/24 36351 -216.239.105.0/24 15395 -216.239.106.0/24 4755 -216.239.107.0/24 32336 -216.239.108.0/23 32336 -216.239.111.0/24 17398 -216.239.112.0/20 6623 -216.239.128.0/24 22169 -216.239.129.0/24 19237 -216.239.130.0/23 19237 -216.239.132.0/22 19237 -216.239.136.0/21 19237 -216.239.144.0/20 30149 -216.239.160.0/19 23314 -216.239.192.0/19 1273 -216.239.224.0/21 29863 -216.239.232.0/22 29863 -216.239.236.0/23 29863 -216.239.238.0/24 29863 -216.239.239.0/24 50075 -216.239.240.0/20 17054 -216.240.0.0/20 13794 -216.240.16.0/22 17394 -216.240.20.0/23 17394 -216.240.22.0/24 17394 -216.240.24.0/23 17394 -216.240.29.0/24 17394 -216.240.30.0/23 17394 -216.240.32.0/20 10993 -216.240.48.0/21 10993 -216.240.56.0/23 10993 -216.240.58.0/24 7733 -216.240.59.0/24 10993 -216.240.60.0/22 10993 -216.240.64.0/19 62943 -216.240.96.0/20 11836 -216.240.112.0/21 27391 -216.240.120.0/22 27391 -216.240.124.0/23 27391 -216.240.126.0/23 396289 -216.240.128.0/19 35916 -216.240.160.0/24 6130 -216.240.161.0/24 53559 -216.240.162.0/23 46071 -216.240.164.0/24 6130 -216.240.165.0/24 395367 -216.240.166.0/24 395367 -216.240.167.0/24 6130 -216.240.168.0/22 6130 -216.240.172.0/23 6130 -216.240.174.0/24 53559 -216.240.175.0/24 6130 -216.240.176.0/22 6130 -216.240.180.0/23 6130 -216.240.182.0/23 53559 -216.240.184.0/23 6130 -216.240.186.0/24 6130 -216.240.187.0/24 395367 -216.240.188.0/22 6130 -216.240.192.0/20 25867 -216.240.208.0/20 6325 -216.240.240.0/22 13368 -216.240.247.0/24 13368 -216.240.248.0/21 13368 -216.241.0.0/23 18747 -216.241.2.0/24 65552 -216.241.3.0/24 18747 -216.241.4.0/22 18747 -216.241.8.0/21 18747 -216.241.16.0/20 18747 -216.241.32.0/20 6653 -216.241.48.0/20 14265 -216.241.70.0/24 22208 -216.241.75.0/24 22208 -216.241.82.0/24 7018 -216.241.83.0/24 36432 -216.241.84.0/24 36432 -216.241.87.0/24 36432 -216.241.88.0/24 36432 -216.241.96.0/22 13649 -216.241.100.0/24 26891 -216.241.101.0/24 13649 -216.241.102.0/23 13649 -216.241.104.0/22 13649 -216.241.108.0/24 26891 -216.241.109.0/24 13649 -216.241.110.0/23 13649 -216.241.113.0/24 20053 -216.241.114.0/23 20053 -216.241.123.0/24 31727 -216.241.124.0/23 20053 -216.241.128.0/19 35432 -216.241.160.0/24 13649 -216.241.161.0/24 26891 -216.241.162.0/24 13649 -216.241.163.0/24 22343 -216.241.164.0/22 13649 -216.241.168.0/21 13649 -216.241.176.0/20 13649 -216.241.192.0/20 26253 -216.241.208.0/21 46333 -216.241.219.0/24 46333 -216.241.232.0/23 396184 -216.241.240.0/24 14514 -216.241.241.0/24 18763 -216.241.249.0/24 18768 -216.241.253.0/24 18769 -216.241.254.0/24 18767 -216.242.0.0/16 13645 -216.243.0.0/21 11404 -216.243.8.0/22 11404 -216.243.12.0/24 11404 -216.243.13.0/24 53708 -216.243.14.0/23 11404 -216.243.16.0/21 11404 -216.243.24.0/23 11404 -216.243.26.0/24 11404 -216.243.27.0/24 394107 -216.243.28.0/22 11404 -216.243.32.0/19 11404 -216.243.64.0/20 4544 -216.243.80.0/21 20405 -216.243.96.0/20 11996 -216.243.112.0/20 7850 -216.243.128.0/21 7753 -216.243.136.0/24 54155 -216.243.137.0/24 7753 -216.243.138.0/23 7753 -216.243.140.0/22 7753 -216.243.144.0/23 54155 -216.243.146.0/23 7753 -216.243.148.0/22 7753 -216.243.152.0/21 7753 -216.243.160.0/20 7753 -216.243.176.0/21 7753 -216.243.184.0/24 7753 -216.243.185.0/24 54155 -216.243.186.0/23 7753 -216.243.188.0/22 7753 -216.243.192.0/19 11320 -216.243.224.0/20 11320 -216.243.240.0/20 36105 -216.244.0.0/18 7029 -216.244.64.0/20 23033 -216.244.80.0/21 23033 -216.244.88.0/22 23033 -216.244.92.0/23 23033 -216.244.94.0/24 58381 -216.244.95.0/24 23033 -216.244.96.0/19 62 -216.244.128.0/18 12252 -216.244.192.0/19 10617 -216.244.224.0/20 10617 -216.244.240.0/22 10617 -216.244.244.0/24 10617 -216.244.247.0/24 10617 -216.244.248.0/21 10617 -216.245.15.0/24 11521 -216.245.17.0/24 11521 -216.245.20.0/24 11521 -216.245.25.0/24 8151 -216.245.27.0/24 2828 -216.245.29.0/24 8151 -216.245.30.0/24 2828 -216.245.32.0/24 11521 -216.245.36.0/24 11521 -216.245.40.0/24 11521 -216.245.44.0/24 11521 -216.245.47.0/24 11521 -216.245.48.0/24 11521 -216.245.51.0/24 11521 -216.245.64.0/18 13009 -216.245.128.0/18 7381 -216.245.192.0/19 46475 -216.245.224.0/20 27192 -216.245.240.0/23 15035 -216.245.242.0/24 46536 -216.245.243.0/24 15035 -216.245.244.0/23 15035 -216.245.246.0/24 15035 -216.245.247.0/24 46536 -216.245.249.0/24 46536 -216.245.250.0/23 46536 -216.245.252.0/23 15035 -216.245.254.0/23 46536 -216.246.0.0/20 23352 -216.246.16.0/21 23352 -216.246.24.0/23 393713 -216.246.26.0/23 23352 -216.246.28.0/22 23352 -216.246.32.0/24 23352 -216.246.33.0/24 30081 -216.246.34.0/23 23352 -216.246.36.0/22 23352 -216.246.40.0/24 30081 -216.246.41.0/24 23352 -216.246.42.0/23 23352 -216.246.44.0/22 23352 -216.246.48.0/24 23352 -216.246.49.0/24 36352 -216.246.50.0/23 23352 -216.246.52.0/22 23352 -216.246.56.0/21 23352 -216.246.64.0/22 23352 -216.246.68.0/22 393713 -216.246.72.0/21 23352 -216.246.80.0/20 23352 -216.246.96.0/22 23352 -216.246.100.0/24 30081 -216.246.101.0/24 23352 -216.246.102.0/23 23352 -216.246.104.0/24 30081 -216.246.105.0/24 23352 -216.246.106.0/23 23352 -216.246.108.0/23 36352 -216.246.110.0/23 23352 -216.246.112.0/22 23352 -216.246.116.0/24 23352 -216.246.117.0/24 48851 -216.246.118.0/23 30081 -216.246.120.0/23 393713 -216.246.122.0/23 23352 -216.246.124.0/22 23352 -216.246.128.0/19 32448 -216.246.160.0/20 23314 -216.246.176.0/20 11183 -216.246.192.0/23 11696 -216.246.194.0/24 11696 -216.246.195.0/24 394844 -216.246.196.0/22 205659 -216.246.200.0/23 11696 -216.246.202.0/24 11696 -216.246.203.0/24 11774 -216.246.208.0/23 8100 -216.246.210.0/24 11696 -216.246.212.0/22 205659 -216.246.224.0/19 11814 -216.247.0.0/16 13768 -216.248.0.0/20 3356 -216.248.16.0/23 3356 -216.248.18.0/24 3356 -216.248.19.0/24 11732 -216.248.20.0/24 3356 -216.248.21.0/24 10753 -216.248.22.0/23 3356 -216.248.24.0/21 3356 -216.248.32.0/24 26992 -216.248.33.0/24 3356 -216.248.34.0/23 3356 -216.248.36.0/22 3356 -216.248.40.0/21 3356 -216.248.48.0/20 3356 -216.248.64.0/22 5056 -216.248.68.0/23 5056 -216.248.70.0/24 62825 -216.248.71.0/24 5056 -216.248.72.0/22 5056 -216.248.76.0/24 5056 -216.248.77.0/24 63394 -216.248.78.0/23 5056 -216.248.80.0/21 5056 -216.248.88.0/23 5056 -216.248.90.0/23 30325 -216.248.92.0/22 5056 -216.248.96.0/22 5056 -216.248.100.0/24 19628 -216.248.101.0/24 5056 -216.248.102.0/24 5056 -216.248.103.0/24 46892 -216.248.104.0/24 5056 -216.248.105.0/24 396443 -216.248.106.0/23 5056 -216.248.108.0/23 5056 -216.248.110.0/24 13356 -216.248.111.0/24 5056 -216.248.112.0/22 5056 -216.248.116.0/24 63394 -216.248.117.0/24 5056 -216.248.118.0/23 5056 -216.248.120.0/23 5056 -216.248.122.0/23 30325 -216.248.124.0/22 30325 -216.248.128.0/19 7029 -216.248.160.0/21 7029 -216.248.168.0/22 7029 -216.248.172.0/24 7029 -216.248.173.0/24 27338 -216.248.174.0/23 7029 -216.248.176.0/23 7029 -216.248.178.0/23 26407 -216.248.180.0/22 7029 -216.248.184.0/21 7029 -216.248.192.0/20 20021 -216.248.208.0/20 3549 -216.248.224.0/20 40270 -216.248.240.0/20 27612 -216.249.0.0/20 11342 -216.249.32.0/21 13802 -216.249.40.0/24 13802 -216.249.41.0/24 3855 -216.249.42.0/23 13802 -216.249.44.0/22 13802 -216.249.48.0/20 31782 -216.249.64.0/19 11550 -216.249.96.0/20 11402 -216.249.112.0/20 26827 -216.249.128.0/23 3714 -216.249.130.0/24 40373 -216.249.131.0/24 3714 -216.249.132.0/23 7029 -216.249.134.0/24 18660 -216.249.135.0/24 7029 -216.249.136.0/21 3714 -216.249.144.0/20 14760 -216.249.160.0/19 14760 -216.249.192.0/20 13576 -216.249.208.0/21 13576 -216.249.216.0/22 13576 -216.249.220.0/24 64242 -216.249.221.0/24 13576 -216.249.222.0/23 13576 -216.249.224.0/23 13576 -216.249.226.0/24 13576 -216.249.227.0/24 23011 -216.249.228.0/22 13576 -216.249.232.0/21 13576 -216.249.240.0/24 23011 -216.249.241.0/24 13576 -216.249.242.0/23 13576 -216.249.244.0/22 13576 -216.249.248.0/21 13576 -216.250.0.0/20 26284 -216.250.32.0/20 13614 -216.250.48.0/20 22758 -216.250.64.0/19 2828 -216.250.96.0/23 36351 -216.250.98.0/24 132815 -216.250.100.0/22 18187 -216.250.104.0/22 132813 -216.250.108.0/22 134548 -216.250.112.0/20 8560 -216.250.128.0/20 13649 -216.250.144.0/20 27287 -216.250.160.0/19 7753 -216.250.192.0/19 22351 -216.250.232.0/22 16588 -216.251.0.0/19 11067 -216.251.32.0/20 14116 -216.251.50.0/24 38191 -216.251.53.0/24 38191 -216.251.62.0/24 38191 -216.251.64.0/19 14416 -216.251.96.0/20 1982 -216.251.112.0/22 20296 -216.251.118.0/24 20296 -216.251.120.0/23 20296 -216.251.122.0/24 20296 -216.251.124.0/22 20296 -216.251.128.0/19 14007 -216.251.160.0/24 12042 -216.251.161.0/24 14440 -216.251.162.0/23 12042 -216.251.164.0/24 12042 -216.251.167.0/24 12042 -216.251.168.0/21 12042 -216.251.176.0/23 12042 -216.251.179.0/24 12042 -216.251.180.0/22 12042 -216.251.184.0/21 12042 -216.251.192.0/20 15153 -216.251.208.0/20 11657 -216.251.224.0/19 14135 -216.252.0.0/18 18812 -216.252.64.0/19 7403 -216.252.104.0/21 36646 -216.252.112.0/20 36646 -216.252.144.0/21 47965 -216.252.152.0/23 12684 -216.252.155.0/24 47965 -216.252.156.0/23 12684 -216.252.159.0/24 12684 -216.252.160.0/24 12684 -216.252.161.0/24 64229 -216.252.162.0/24 6939 -216.252.164.0/23 29990 -216.252.166.0/24 29990 -216.252.168.0/24 25836 -216.252.170.0/24 25836 -216.252.176.0/20 47965 -216.252.192.0/20 31827 -216.252.208.0/22 7057 -216.252.216.0/22 47965 -216.252.224.0/19 47965 -216.253.0.0/22 3549 -216.253.4.0/23 3549 -216.253.6.0/24 3549 -216.253.7.0/24 10445 -216.253.8.0/22 10445 -216.253.12.0/22 3549 -216.253.16.0/22 3549 -216.253.20.0/23 63163 -216.253.22.0/23 3549 -216.253.24.0/24 63163 -216.253.25.0/24 3549 -216.253.26.0/23 3549 -216.253.28.0/24 3549 -216.253.29.0/24 395562 -216.253.30.0/23 3549 -216.253.32.0/19 3549 -216.253.64.0/24 3549 -216.253.65.0/24 62719 -216.253.66.0/24 393590 -216.253.67.0/24 3549 -216.253.68.0/22 3549 -216.253.72.0/23 3549 -216.253.74.0/24 3549 -216.253.75.0/24 63075 -216.253.76.0/24 3549 -216.253.77.0/24 40800 -216.253.78.0/24 3549 -216.253.79.0/24 10896 -216.253.80.0/20 3549 -216.253.96.0/20 3549 -216.253.112.0/22 3549 -216.253.116.0/23 3549 -216.253.118.0/24 3549 -216.253.119.0/24 397281 -216.253.120.0/21 3549 -216.253.128.0/19 3549 -216.253.160.0/23 3549 -216.253.162.0/24 3549 -216.253.163.0/24 23357 -216.253.164.0/22 3549 -216.253.168.0/21 3549 -216.253.176.0/20 3549 -216.253.192.0/18 3549 -216.254.0.0/24 17184 -216.254.1.0/24 18566 -216.254.2.0/23 18566 -216.254.4.0/22 18566 -216.254.8.0/21 18566 -216.254.16.0/20 18566 -216.254.32.0/19 18566 -216.254.64.0/20 18566 -216.254.80.0/21 18566 -216.254.88.0/22 18566 -216.254.92.0/23 18566 -216.254.94.0/24 18566 -216.254.95.0/24 17184 -216.254.96.0/19 18566 -216.254.128.0/20 6407 -216.254.144.0/21 6407 -216.254.152.0/22 6407 -216.254.156.0/23 6407 -216.254.158.0/23 812 -216.254.160.0/21 6407 -216.254.168.0/24 6407 -216.254.169.0/24 812 -216.254.170.0/23 6407 -216.254.172.0/22 6407 -216.254.176.0/20 6407 -216.254.192.0/22 6407 -216.254.196.0/24 6407 -216.254.197.0/24 812 -216.254.198.0/23 6407 -216.254.200.0/22 812 -216.254.204.0/22 6407 -216.254.208.0/24 6407 -216.254.209.0/24 812 -216.254.210.0/23 6407 -216.254.212.0/22 6407 -216.254.216.0/22 6407 -216.254.220.0/23 6407 -216.254.222.0/24 6407 -216.254.223.0/24 812 -216.254.224.0/19 20412 -216.255.0.0/21 394708 -216.255.8.0/21 7106 -216.255.16.0/22 7106 -216.255.20.0/24 7106 -216.255.21.0/24 394708 -216.255.22.0/23 7106 -216.255.24.0/21 7106 -216.255.32.0/23 7106 -216.255.34.0/24 394708 -216.255.35.0/24 7106 -216.255.36.0/22 7106 -216.255.40.0/23 7106 -216.255.42.0/24 7106 -216.255.43.0/24 394708 -216.255.44.0/23 394708 -216.255.46.0/23 7106 -216.255.48.0/23 7106 -216.255.50.0/24 7106 -216.255.51.0/24 394708 -216.255.52.0/22 7106 -216.255.56.0/22 7106 -216.255.60.0/23 394708 -216.255.62.0/24 394708 -216.255.63.0/24 7106 -216.255.64.0/19 3707 -216.255.96.0/22 6128 -216.255.100.0/23 21821 -216.255.102.0/24 6128 -216.255.103.0/24 396130 -216.255.104.0/23 6128 -216.255.106.0/24 19961 -216.255.107.0/24 6128 -216.255.108.0/22 6128 -216.255.112.0/20 6128 -216.255.128.0/19 3707 -216.255.160.0/20 27262 -216.255.176.0/20 15083 -216.255.192.0/19 46595 -216.255.224.0/20 4694 -216.255.240.0/20 30444 -217.0.0.0/13 3320 -217.8.0.0/19 12708 -217.8.32.0/20 48887 -217.8.48.0/20 6830 -217.8.80.0/20 12714 -217.8.96.0/22 8935 -217.8.100.0/22 39855 -217.8.104.0/21 8935 -217.8.112.0/22 210142 -217.8.116.0/23 47510 -217.8.120.0/22 201160 -217.8.124.0/22 47684 -217.8.128.0/19 2116 -217.8.160.0/19 5588 -217.8.192.0/19 4589 -217.8.224.0/20 28884 -217.8.240.0/20 20738 -217.9.0.0/23 15577 -217.9.2.0/24 15577 -217.9.3.0/24 57367 -217.9.4.0/22 15577 -217.9.8.0/21 15577 -217.9.16.0/22 9009 -217.9.20.0/22 197328 -217.9.32.0/19 8881 -217.9.64.0/20 20745 -217.9.80.0/22 25371 -217.9.84.0/22 9206 -217.9.88.0/21 9206 -217.9.96.0/19 8881 -217.9.128.0/20 12969 -217.9.144.0/20 12389 -217.9.160.0/24 8308 -217.9.165.0/24 8308 -217.9.192.0/20 197898 -217.9.208.0/20 57084 -217.9.224.0/20 13124 -217.9.240.0/20 15419 -217.10.0.0/20 25538 -217.10.16.0/20 25384 -217.10.32.0/20 15582 -217.10.48.0/24 25432 -217.10.50.0/23 25432 -217.10.52.0/23 25432 -217.10.64.0/20 15594 -217.10.80.0/20 200669 -217.10.96.0/19 35706 -217.10.128.0/19 6908 -217.10.160.0/19 15641 -217.10.192.0/19 12302 -217.10.224.0/24 36184 -217.10.225.0/24 16955 -217.10.226.0/23 16955 -217.10.228.0/22 16955 -217.10.232.0/21 16955 -217.10.240.0/21 13124 -217.10.248.0/22 13124 -217.10.252.0/24 13124 -217.10.253.0/24 42100 -217.10.254.0/23 13124 -217.11.0.0/20 15668 -217.11.16.0/20 25184 -217.11.32.0/20 3303 -217.11.48.0/20 34240 -217.11.64.0/20 8720 -217.11.80.0/20 3302 -217.11.128.0/22 50349 -217.11.132.0/24 200862 -217.11.133.0/24 202006 -217.11.134.0/24 201091 -217.11.135.0/24 33951 -217.11.136.0/22 197091 -217.11.140.0/23 56544 -217.11.144.0/20 21263 -217.11.160.0/20 24997 -217.11.176.0/20 24722 -217.11.192.0/20 15613 -217.11.208.0/20 15576 -217.11.224.0/23 15685 -217.11.226.0/24 21430 -217.11.227.0/24 15685 -217.11.228.0/23 15685 -217.11.230.0/24 15685 -217.11.231.0/24 21430 -217.11.232.0/23 15685 -217.11.234.0/24 21430 -217.11.235.0/24 15685 -217.11.236.0/24 15685 -217.11.237.0/24 21430 -217.11.238.0/24 15685 -217.11.239.0/24 21430 -217.11.240.0/23 21430 -217.11.242.0/23 15685 -217.11.244.0/24 21430 -217.11.245.0/24 15685 -217.11.246.0/23 15685 -217.11.248.0/23 15685 -217.11.250.0/24 21430 -217.11.251.0/24 15685 -217.11.252.0/23 21430 -217.11.254.0/24 15685 -217.11.255.0/24 21430 -217.12.2.0/23 34010 -217.12.4.0/22 34010 -217.12.8.0/21 34010 -217.12.16.0/20 34285 -217.12.32.0/20 48383 -217.12.48.0/20 25496 -217.12.64.0/21 21353 -217.12.72.0/21 51570 -217.12.80.0/21 25389 -217.12.88.0/24 25389 -217.12.96.0/21 15632 -217.12.104.0/23 15632 -217.12.112.0/20 25454 -217.12.128.0/20 12559 -217.12.144.0/20 42525 -217.12.160.0/20 20794 -217.12.176.0/20 3302 -217.12.192.0/21 15626 -217.12.200.0/23 21100 -217.12.202.0/23 59729 -217.12.204.0/23 15626 -217.12.206.0/23 204957 -217.12.208.0/23 21100 -217.12.210.0/23 15626 -217.12.212.0/22 15626 -217.12.216.0/23 15626 -217.12.218.0/24 21100 -217.12.219.0/24 15626 -217.12.220.0/22 15626 -217.12.224.0/22 48932 -217.12.232.0/24 48932 -217.12.234.0/23 48932 -217.12.240.0/21 25511 -217.12.248.0/22 25511 -217.12.252.0/23 25511 -217.12.254.0/23 34836 -217.13.0.0/19 15659 -217.13.32.0/20 15629 -217.13.48.0/20 31221 -217.13.64.0/20 24956 -217.13.80.0/20 25487 -217.13.96.0/23 60071 -217.13.99.0/24 12301 -217.13.100.0/24 5483 -217.13.101.0/24 12301 -217.13.102.0/23 12301 -217.13.104.0/22 12301 -217.13.108.0/24 12301 -217.13.109.0/24 60071 -217.13.110.0/24 51438 -217.13.111.0/24 12301 -217.13.112.0/20 24592 -217.13.128.0/19 16082 -217.13.160.0/20 12460 -217.13.176.0/20 24864 -217.13.192.0/20 15657 -217.13.208.0/20 12494 -217.13.224.0/19 21195 -217.14.0.0/20 2116 -217.14.17.0/24 12389 -217.14.18.0/24 28712 -217.14.19.0/24 12389 -217.14.22.0/24 12389 -217.14.25.0/24 57512 -217.14.32.0/20 30892 -217.14.48.0/20 24823 -217.14.64.0/20 15623 -217.14.80.0/23 36994 -217.14.82.0/24 16284 -217.14.83.0/24 36994 -217.14.84.0/24 37672 -217.14.85.0/24 16284 -217.14.86.0/24 36994 -217.14.87.0/24 16284 -217.14.88.0/21 16284 -217.14.96.0/20 15815 -217.14.112.0/21 13039 -217.14.120.0/22 10753 -217.14.124.0/22 13039 -217.14.128.0/21 20976 -217.14.136.0/23 20976 -217.14.138.0/24 34066 -217.14.139.0/24 20976 -217.14.140.0/22 20976 -217.14.144.0/20 28731 -217.14.160.0/20 15726 -217.14.176.0/20 25582 -217.14.192.0/20 3226 -217.14.208.0/20 25528 -217.14.224.0/20 24792 -217.14.240.0/21 6863 -217.14.250.0/24 15934 -217.14.254.0/24 203492 -217.14.255.0/24 15934 -217.15.0.0/20 1764 -217.15.16.0/20 25520 -217.15.32.0/20 15734 -217.15.48.0/22 25531 -217.15.52.0/24 25531 -217.15.54.0/23 25531 -217.15.58.0/23 25531 -217.15.60.0/23 25531 -217.15.67.0/24 2856 -217.15.80.0/20 25540 -217.15.96.0/20 15735 -217.15.112.0/22 30844 -217.15.116.0/24 30844 -217.15.117.0/24 56696 -217.15.118.0/24 56696 -217.15.119.0/24 30844 -217.15.120.0/22 56696 -217.15.124.0/24 30844 -217.15.125.0/24 33567 -217.15.126.0/23 30844 -217.15.128.0/23 12389 -217.15.130.0/23 13118 -217.15.132.0/22 13118 -217.15.136.0/24 13118 -217.15.137.0/24 12958 -217.15.138.0/23 13118 -217.15.140.0/22 13118 -217.15.144.0/22 13118 -217.15.148.0/24 12389 -217.15.149.0/24 13118 -217.15.150.0/23 13118 -217.15.152.0/22 12389 -217.15.156.0/24 12958 -217.15.157.0/24 12389 -217.15.158.0/24 13118 -217.15.159.0/24 12389 -217.15.176.0/20 25534 -217.15.192.0/20 8636 -217.15.208.0/20 15589 -217.15.224.0/20 12392 -217.15.240.0/20 25545 -217.16.0.0/20 48809 -217.16.16.0/20 25532 -217.16.48.0/21 28705 -217.16.64.0/19 16333 -217.16.96.0/20 15687 -217.16.112.0/22 25447 -217.16.116.0/23 25447 -217.16.118.0/24 25447 -217.16.119.0/24 50920 -217.16.120.0/21 25447 -217.16.128.0/20 197423 -217.16.144.0/20 25508 -217.16.160.0/20 35515 -217.16.176.0/20 43541 -217.16.192.0/20 41175 -217.16.208.0/20 28757 -217.16.224.0/24 5425 -217.16.225.0/24 16229 -217.16.226.0/24 8544 -217.16.227.0/24 5425 -217.16.228.0/24 5425 -217.16.229.0/24 16229 -217.16.230.0/24 5425 -217.16.231.0/24 16229 -217.16.232.0/24 8544 -217.16.233.0/24 5425 -217.16.234.0/24 8544 -217.16.235.0/24 5425 -217.16.236.0/22 5425 -217.16.240.0/20 25479 -217.17.0.0/20 5619 -217.17.16.0/20 29037 -217.17.32.0/22 15694 -217.17.36.0/24 15694 -217.17.37.0/24 57355 -217.17.38.0/24 43253 -217.17.39.0/24 15694 -217.17.40.0/21 15694 -217.17.48.0/20 25585 -217.17.64.0/20 45011 -217.17.80.0/20 21412 -217.17.96.0/20 41897 -217.17.112.0/20 50556 -217.17.128.0/20 8608 -217.17.144.0/20 29060 -217.17.160.0/19 15757 -217.17.192.0/21 15725 -217.17.200.0/22 15725 -217.17.204.0/23 15725 -217.17.206.0/23 199284 -217.17.208.0/20 31169 -217.17.224.0/19 5416 -217.18.0.0/20 15807 -217.18.16.0/24 25562 -217.18.17.0/24 33353 -217.18.18.0/23 25562 -217.18.20.0/23 25562 -217.18.22.0/24 25562 -217.18.23.0/24 33353 -217.18.24.0/21 25562 -217.18.32.0/20 15954 -217.18.48.0/22 47832 -217.18.52.0/22 43333 -217.18.56.0/22 46261 -217.18.60.0/22 12695 -217.18.64.0/20 15922 -217.18.80.0/20 29054 -217.18.96.0/19 16210 -217.18.128.0/20 15759 -217.18.144.0/22 15759 -217.18.148.0/23 15759 -217.18.150.0/24 12389 -217.18.151.0/24 15759 -217.18.152.0/21 15759 -217.18.160.0/20 42220 -217.18.176.0/20 16205 -217.18.192.0/20 13243 -217.18.212.0/24 25180 -217.18.216.0/22 48915 -217.18.220.0/23 200780 -217.18.224.0/20 29680 -217.18.240.0/20 13124 -217.19.0.0/24 12804 -217.19.1.0/24 209706 -217.19.2.0/24 39572 -217.19.3.0/24 12804 -217.19.4.0/24 50232 -217.19.5.0/24 12804 -217.19.6.0/24 9050 -217.19.7.0/24 33839 -217.19.8.0/24 12804 -217.19.9.0/24 31362 -217.19.10.0/24 39572 -217.19.11.0/24 12804 -217.19.12.0/24 60583 -217.19.13.0/24 198913 -217.19.14.0/23 40975 -217.19.16.0/20 25596 -217.19.32.0/20 15702 -217.19.48.0/20 25593 -217.19.64.0/19 702 -217.19.96.0/23 47218 -217.19.100.0/23 47218 -217.19.104.0/22 47218 -217.19.108.0/24 47218 -217.19.110.0/23 47218 -217.19.112.0/22 3216 -217.19.116.0/23 3216 -217.19.118.0/24 28703 -217.19.119.0/24 3216 -217.19.120.0/21 3216 -217.19.144.0/20 28716 -217.19.160.0/20 8208 -217.19.176.0/20 28676 -217.19.192.0/20 15557 -217.19.208.0/20 1547 -217.19.224.0/20 34762 -217.19.240.0/21 60819 -217.19.248.0/24 3356 -217.19.249.0/24 60819 -217.19.250.0/23 60819 -217.19.252.0/22 60819 -217.20.0.0/22 198387 -217.20.4.0/22 1267 -217.20.8.0/21 1267 -217.20.16.0/20 6908 -217.20.32.0/20 15830 -217.20.48.0/20 15516 -217.20.64.0/20 33894 -217.20.80.0/20 12389 -217.20.96.0/20 2119 -217.20.112.0/20 28753 -217.20.128.0/24 59448 -217.20.129.0/24 5588 -217.20.130.0/23 5588 -217.20.132.0/22 5588 -217.20.136.0/21 5588 -217.20.144.0/20 47764 -217.20.160.0/19 1820 -217.20.192.0/20 24951 -217.20.208.0/20 29256 -217.20.241.0/24 13126 -217.20.248.0/22 48544 -217.21.0.0/23 15975 -217.21.3.0/24 15975 -217.21.4.0/24 15975 -217.21.6.0/23 15975 -217.21.8.0/21 15975 -217.21.16.0/20 12301 -217.21.32.0/24 6697 -217.21.33.0/24 21236 -217.21.34.0/24 59861 -217.21.35.0/24 6697 -217.21.36.0/24 21062 -217.21.37.0/24 56740 -217.21.40.0/23 57331 -217.21.42.0/24 57331 -217.21.43.0/24 13171 -217.21.45.0/24 6697 -217.21.46.0/24 21236 -217.21.47.0/24 208407 -217.21.48.0/24 50492 -217.21.49.0/24 6697 -217.21.50.0/24 12406 -217.21.51.0/24 21236 -217.21.52.0/24 34921 -217.21.53.0/24 21305 -217.21.54.0/24 42772 -217.21.56.0/24 33973 -217.21.57.0/24 60744 -217.21.59.0/24 42772 -217.21.60.0/24 42772 -217.21.61.0/24 25106 -217.21.62.0/24 60744 -217.21.63.0/24 33973 -217.21.64.0/20 57731 -217.21.80.0/21 57731 -217.21.88.0/22 57731 -217.21.92.0/23 57731 -217.21.94.0/24 57731 -217.21.95.0/24 12491 -217.21.96.0/20 35140 -217.21.112.0/20 30844 -217.21.128.0/20 48768 -217.21.144.0/20 29238 -217.21.160.0/24 15721 -217.21.166.0/24 15721 -217.21.168.0/21 15721 -217.21.176.0/20 34762 -217.21.192.0/20 43366 -217.21.208.0/20 28775 -217.21.224.0/20 29672 -217.21.240.0/20 28878 -217.22.0.0/20 10753 -217.22.16.0/21 42567 -217.22.24.0/22 42567 -217.22.28.0/22 61102 -217.22.32.0/20 49214 -217.22.48.0/20 28747 -217.22.80.0/20 5500 -217.22.96.0/20 15711 -217.22.112.0/20 8551 -217.22.128.0/20 8758 -217.22.144.0/20 6067 -217.22.160.0/24 25227 -217.22.161.0/24 15756 -217.22.162.0/24 35140 -217.22.163.0/24 15599 -217.22.164.0/24 25227 -217.22.165.0/24 35140 -217.22.166.0/24 12772 -217.22.167.0/24 25227 -217.22.168.0/22 42870 -217.22.172.0/23 12389 -217.22.174.0/23 16094 -217.22.176.0/20 15735 -217.22.192.0/20 20849 -217.22.208.0/20 29036 -217.22.224.0/19 4589 -217.23.0.0/20 49981 -217.23.16.0/20 12389 -217.23.32.0/20 8376 -217.23.48.0/20 29239 -217.23.64.0/20 15974 -217.23.80.0/23 15974 -217.23.82.0/24 47783 -217.23.83.0/24 15974 -217.23.84.0/22 15974 -217.23.88.0/21 15974 -217.23.96.0/20 21465 -217.23.112.0/24 201992 -217.23.113.0/24 28849 -217.23.114.0/23 28849 -217.23.116.0/23 28849 -217.23.118.0/24 49051 -217.23.119.0/24 28849 -217.23.120.0/24 38980 -217.23.121.0/24 28849 -217.23.122.0/23 28849 -217.23.124.0/22 28849 -217.23.128.0/24 197695 -217.23.129.0/24 205952 -217.23.130.0/23 25227 -217.23.132.0/22 197695 -217.23.136.0/23 197695 -217.23.138.0/24 197695 -217.23.139.0/24 205952 -217.23.140.0/23 197695 -217.23.142.0/24 25227 -217.23.143.0/24 197695 -217.23.144.0/23 197695 -217.23.146.0/24 25227 -217.23.147.0/24 197695 -217.23.148.0/24 197695 -217.23.149.0/24 205952 -217.23.150.0/24 197695 -217.23.151.0/24 25227 -217.23.152.0/21 205952 -217.23.160.0/20 15766 -217.23.176.0/20 28840 -217.23.192.0/20 21107 -217.23.224.0/20 15770 -217.23.240.0/20 6830 -217.24.0.0/20 15844 -217.24.16.0/20 25431 -217.24.32.0/20 209729 -217.24.48.0/20 28876 -217.24.64.0/20 20910 -217.24.80.0/20 28855 -217.24.96.0/20 719 -217.24.112.0/20 28860 -217.24.128.0/20 25144 -217.24.144.0/20 58224 -217.24.160.0/20 6703 -217.24.176.0/20 28890 -217.24.192.0/20 21263 -217.24.208.0/20 25560 -217.24.224.0/20 9063 -217.24.240.0/20 42313 -217.25.0.0/20 20915 -217.25.16.0/20 39232 -217.25.32.0/20 41943 -217.25.48.0/20 29079 -217.25.64.0/20 15909 -217.25.80.0/21 24658 -217.25.96.0/20 21366 -217.25.112.0/21 6830 -217.25.128.0/24 21234 -217.25.130.0/23 21234 -217.25.132.0/22 21234 -217.25.140.0/23 21234 -217.25.144.0/20 8905 -217.25.160.0/20 198967 -217.25.176.0/20 24776 -217.25.192.0/20 16007 -217.25.208.0/20 47165 -217.25.224.0/20 6856 -217.25.240.0/20 1257 -217.26.0.0/20 25513 -217.26.16.0/20 41783 -217.26.32.0/21 197312 -217.26.45.0/24 197312 -217.26.46.0/23 197312 -217.26.48.0/20 29097 -217.26.64.0/20 6700 -217.26.80.0/20 3302 -217.26.96.0/20 12414 -217.26.112.0/20 35260 -217.26.128.0/21 35753 -217.26.136.0/21 199275 -217.26.144.0/20 28990 -217.26.160.0/20 15836 -217.26.176.0/22 209353 -217.26.180.0/22 31617 -217.26.184.0/24 210014 -217.26.185.0/24 201149 -217.26.186.0/24 201149 -217.26.187.0/24 210014 -217.26.208.0/21 31042 -217.26.218.0/24 20473 -217.26.224.0/21 15743 -217.26.240.0/20 62023 -217.27.0.0/22 15854 -217.27.4.0/24 6900 -217.27.5.0/24 200703 -217.27.6.0/24 6900 -217.27.16.0/20 29646 -217.27.32.0/21 16229 -217.27.40.0/22 20842 -217.27.44.0/22 16229 -217.27.48.0/20 16229 -217.27.64.0/19 20746 -217.27.96.0/20 20893 -217.27.112.0/20 28999 -217.27.128.0/21 20985 -217.27.136.0/22 20985 -217.27.140.0/23 20985 -217.27.142.0/24 20985 -217.27.143.0/24 197460 -217.27.144.0/20 28994 -217.27.160.0/19 8473 -217.27.192.0/20 8881 -217.27.208.0/20 44302 -217.27.224.0/20 35467 -217.27.240.0/20 36483 -217.28.0.0/20 13122 -217.28.16.0/20 25582 -217.28.32.0/20 12684 -217.28.48.0/20 28886 -217.28.64.0/22 174 -217.28.68.0/22 58271 -217.28.72.0/21 48524 -217.28.80.0/20 51800 -217.28.96.0/21 15894 -217.28.104.0/22 20886 -217.28.108.0/22 196819 -217.28.112.0/20 29270 -217.28.128.0/21 15839 -217.28.138.0/24 15839 -217.28.140.0/24 15839 -217.28.144.0/20 29007 -217.28.160.0/23 3292 -217.28.162.0/24 3292 -217.28.163.0/24 7018 -217.28.164.0/22 3292 -217.28.168.0/21 3292 -217.28.176.0/20 29689 -217.28.192.0/20 34385 -217.28.208.0/21 29053 -217.28.216.0/22 29053 -217.28.224.0/20 42226 -217.28.240.0/20 3327 -217.29.0.0/20 44065 -217.29.16.0/20 29061 -217.29.32.0/20 16188 -217.29.48.0/23 29053 -217.29.50.0/23 39238 -217.29.52.0/22 39238 -217.29.56.0/21 39238 -217.29.72.0/21 16004 -217.29.80.0/20 25549 -217.29.96.0/20 48427 -217.29.112.0/20 31203 -217.29.128.0/20 37349 -217.29.144.0/20 29056 -217.29.160.0/20 15788 -217.29.176.0/20 3226 -217.29.192.0/22 8897 -217.29.208.0/20 327826 -217.29.224.0/20 41878 -217.29.240.0/23 203931 -217.30.0.0/22 39657 -217.30.4.0/22 197099 -217.30.8.0/22 42575 -217.30.12.0/23 48137 -217.30.14.0/24 59253 -217.30.15.0/24 48137 -217.30.16.0/20 201004 -217.30.48.0/20 29145 -217.30.64.0/20 48574 -217.30.84.0/23 7342 -217.30.87.0/24 7342 -217.30.88.0/22 29403 -217.30.92.0/23 29403 -217.30.96.0/20 15892 -217.30.112.0/20 12703 -217.30.128.0/20 12741 -217.30.144.0/21 12741 -217.30.152.0/22 12741 -217.30.156.0/23 12741 -217.30.158.0/24 12741 -217.30.159.0/24 24985 -217.30.160.0/20 39032 -217.30.176.0/20 29422 -217.30.192.0/20 49223 -217.30.208.0/20 29122 -217.30.224.0/20 20686 -217.30.240.0/20 29125 -217.31.0.0/21 15917 -217.31.8.0/22 15917 -217.31.12.0/23 15917 -217.31.14.0/24 6661 -217.31.15.0/24 15917 -217.31.16.0/20 29341 -217.31.32.0/20 35328 -217.31.48.0/20 29134 -217.31.64.0/20 15965 -217.31.80.0/20 29140 -217.31.96.0/20 16185 -217.31.112.0/20 29312 -217.31.128.0/19 5587 -217.31.160.0/19 8473 -217.31.192.0/20 25192 -217.31.208.0/20 21263 -217.31.224.0/19 15897 -217.32.0.0/20 2856 -217.32.16.0/21 2856 -217.32.24.0/22 2856 -217.32.28.0/23 2856 -217.32.30.0/23 6871 -217.32.32.0/20 6871 -217.32.48.0/20 2856 -217.32.64.0/19 2856 -217.32.96.0/20 2856 -217.32.112.0/22 6871 -217.32.116.0/22 2856 -217.32.120.0/21 2856 -217.32.128.0/20 2856 -217.32.144.0/22 2856 -217.32.148.0/22 6871 -217.32.152.0/21 6871 -217.32.160.0/22 6871 -217.32.164.0/22 2856 -217.32.168.0/21 2856 -217.32.176.0/22 6871 -217.32.180.0/22 2856 -217.32.184.0/21 2856 -217.32.192.0/18 2856 -217.33.0.0/16 2856 -217.34.0.0/15 2856 -217.36.0.0/15 2856 -217.38.0.0/16 2856 -217.39.0.0/20 2856 -217.39.16.0/20 6871 -217.39.32.0/19 2856 -217.39.64.0/19 2856 -217.39.96.0/20 2856 -217.39.112.0/20 6871 -217.39.128.0/17 2856 -217.40.0.0/14 2856 -217.44.0.0/16 2856 -217.45.0.0/20 2856 -217.45.16.0/21 2856 -217.45.24.0/21 6871 -217.45.32.0/19 2856 -217.45.64.0/19 2856 -217.45.96.0/20 6871 -217.45.112.0/20 2856 -217.45.128.0/17 2856 -217.46.0.0/20 2856 -217.46.16.0/21 2856 -217.46.24.0/22 6871 -217.46.28.0/22 2856 -217.46.32.0/19 2856 -217.46.64.0/18 2856 -217.46.128.0/20 6871 -217.46.144.0/20 2856 -217.46.160.0/19 2856 -217.46.192.0/18 2856 -217.47.0.0/16 2856 -217.48.0.0/14 6805 -217.52.0.0/15 36992 -217.54.0.0/16 36992 -217.55.0.0/18 36992 -217.55.80.0/22 36992 -217.55.85.0/24 36992 -217.55.87.0/24 36992 -217.55.88.0/24 36992 -217.55.92.0/23 36992 -217.55.128.0/17 36992 -217.56.0.0/18 3269 -217.56.64.0/19 3269 -217.56.96.0/20 3269 -217.56.112.0/21 3269 -217.56.120.0/23 3269 -217.56.122.0/24 20746 -217.56.123.0/24 3269 -217.56.124.0/24 3269 -217.56.125.0/24 20746 -217.56.126.0/23 3269 -217.56.128.0/17 3269 -217.57.0.0/16 3269 -217.58.0.0/15 3269 -217.60.0.0/16 31549 -217.61.0.0/21 200185 -217.61.8.0/21 31034 -217.61.16.0/21 199883 -217.61.24.0/21 31034 -217.61.32.0/20 31034 -217.61.48.0/21 31034 -217.61.56.0/21 202242 -217.61.64.0/19 29119 -217.61.96.0/21 199653 -217.61.104.0/21 200185 -217.61.112.0/21 199883 -217.61.120.0/21 31034 -217.61.128.0/22 39020 -217.61.132.0/24 207174 -217.61.133.0/24 39020 -217.61.134.0/23 39020 -217.61.136.0/23 39020 -217.61.138.0/24 39020 -217.61.144.0/20 198570 -217.61.160.0/20 30848 -217.61.176.0/20 6908 -217.61.192.0/20 60522 -217.61.208.0/22 198066 -217.61.212.0/24 198066 -217.61.214.0/23 198066 -217.61.216.0/21 203953 -217.61.224.0/22 201746 -217.61.228.0/22 41107 -217.61.232.0/22 196968 -217.61.236.0/22 48854 -217.61.240.0/24 198193 -217.61.241.0/24 50129 -217.61.242.0/23 50129 -217.61.244.0/22 48579 -217.61.248.0/23 200278 -217.61.252.0/24 51790 -217.61.253.0/24 34373 -217.61.254.0/24 200799 -217.61.255.0/24 206825 -217.62.0.0/16 33915 -217.63.0.0/18 33915 -217.63.64.0/19 15542 -217.63.96.0/19 42525 -217.63.128.0/18 6830 -217.63.192.0/18 33915 -217.64.0.0/20 29086 -217.64.16.0/20 28787 -217.64.32.0/20 39324 -217.64.48.0/20 29513 -217.64.64.0/19 15933 -217.64.96.0/20 21271 -217.64.112.0/20 9009 -217.64.128.0/20 60098 -217.64.144.0/22 59815 -217.64.148.0/23 197595 -217.64.150.0/24 197595 -217.64.156.0/23 209475 -217.64.160.0/20 15960 -217.64.176.0/20 15830 -217.64.192.0/20 12637 -217.64.208.0/23 29189 -217.64.211.0/24 29189 -217.64.224.0/20 15961 -217.64.240.0/20 50857 -217.65.0.0/23 29076 -217.65.2.0/23 3175 -217.65.4.0/24 29076 -217.65.5.0/24 3175 -217.65.6.0/23 3175 -217.65.8.0/22 3175 -217.65.12.0/24 3175 -217.65.13.0/24 29076 -217.65.14.0/23 29076 -217.65.16.0/20 8881 -217.65.32.0/20 20645 -217.65.48.0/20 8301 -217.65.64.0/21 12607 -217.65.80.0/20 12389 -217.65.96.0/19 5483 -217.65.128.0/20 41265 -217.65.160.0/20 8676 -217.65.176.0/23 34296 -217.65.178.0/24 24989 -217.65.179.0/24 34296 -217.65.180.0/22 34296 -217.65.184.0/21 34296 -217.65.192.0/20 15958 -217.65.208.0/20 29190 -217.65.224.0/20 21119 -217.65.240.0/23 29213 -217.65.242.0/24 29213 -217.65.243.0/24 59671 -217.65.244.0/22 59671 -217.65.248.0/22 59671 -217.65.252.0/23 3255 -217.65.254.0/23 59671 -217.66.0.0/20 16294 -217.66.16.0/20 29194 -217.66.32.0/20 8881 -217.66.48.0/24 33811 -217.66.49.0/24 20546 -217.66.50.0/24 20546 -217.66.51.0/24 33811 -217.66.52.0/22 33811 -217.66.56.0/21 33811 -217.66.64.0/19 16043 -217.66.96.0/22 56527 -217.66.100.0/24 21488 -217.66.101.0/24 43145 -217.66.102.0/23 43145 -217.66.104.0/21 21488 -217.66.112.0/20 12670 -217.66.128.0/21 5669 -217.66.136.0/21 41998 -217.66.144.0/22 29209 -217.66.148.0/22 8359 -217.66.152.0/21 8359 -217.66.160.0/20 15935 -217.66.176.0/23 15935 -217.66.178.0/23 200844 -217.66.180.0/22 15935 -217.66.184.0/22 15935 -217.66.188.0/23 15935 -217.66.190.0/24 200844 -217.66.191.0/24 15935 -217.66.192.0/19 24631 -217.66.224.0/19 15975 -217.67.0.0/20 15984 -217.67.16.0/20 5578 -217.67.32.0/20 16084 -217.67.48.0/20 5413 -217.67.64.0/21 43554 -217.67.76.0/22 43554 -217.67.80.0/20 1257 -217.67.96.0/21 44819 -217.67.104.0/22 44819 -217.67.112.0/20 5429 -217.67.128.0/20 41549 -217.67.144.0/20 30801 -217.67.160.0/22 48958 -217.67.164.0/22 201942 -217.67.168.0/21 201942 -217.67.176.0/20 29226 -217.67.192.0/19 15997 -217.67.224.0/19 39647 -217.68.0.0/20 25279 -217.68.16.0/20 15830 -217.68.32.0/20 39078 -217.68.48.0/20 29263 -217.68.64.0/20 21459 -217.68.80.0/22 25328 -217.68.84.0/22 206808 -217.68.88.0/21 206808 -217.68.96.0/19 3292 -217.68.128.0/20 31487 -217.68.144.0/20 24989 -217.68.160.0/19 16202 -217.68.192.0/21 16212 -217.68.200.0/22 16212 -217.68.204.0/23 16212 -217.68.206.0/24 16212 -217.68.208.0/24 12903 -217.68.211.0/24 12903 -217.68.212.0/22 12903 -217.68.216.0/23 12903 -217.68.219.0/24 12903 -217.68.220.0/22 12903 -217.68.224.0/20 15576 -217.68.240.0/20 29611 -217.69.0.0/20 20473 -217.69.16.0/20 24990 -217.69.32.0/20 29611 -217.69.48.0/20 29282 -217.69.64.0/19 20621 -217.69.96.0/20 198500 -217.69.112.0/24 47814 -217.69.113.0/24 202555 -217.69.114.0/23 47814 -217.69.116.0/22 47814 -217.69.120.0/24 201611 -217.69.121.0/24 47814 -217.69.122.0/23 47814 -217.69.124.0/22 47814 -217.69.128.0/20 47764 -217.69.144.0/20 50821 -217.69.160.0/20 12586 -217.69.176.0/20 29357 -217.69.192.0/19 8359 -217.69.224.0/19 16097 -217.70.0.0/20 12479 -217.70.16.0/20 29319 -217.70.32.0/20 35041 -217.70.48.0/20 21021 -217.70.64.0/20 2860 -217.70.80.0/20 15557 -217.70.96.0/19 16054 -217.70.128.0/20 15366 -217.70.144.0/20 34081 -217.70.160.0/20 16024 -217.70.176.0/21 29169 -217.70.184.0/23 29169 -217.70.186.0/24 29169 -217.70.187.0/24 209453 -217.70.188.0/22 203476 -217.70.192.0/20 13101 -217.70.208.0/22 29591 -217.70.240.0/20 29337 -217.71.0.0/20 44134 -217.71.16.0/21 29481 -217.71.24.0/23 29481 -217.71.32.0/20 3249 -217.71.48.0/24 202632 -217.71.49.0/24 198252 -217.71.50.0/23 198252 -217.71.52.0/22 198252 -217.71.56.0/21 202632 -217.71.64.0/20 16027 -217.71.80.0/20 24951 -217.71.96.0/20 13237 -217.71.112.0/20 174 -217.71.128.0/20 29147 -217.71.144.0/20 30754 -217.71.160.0/20 12958 -217.71.176.0/20 15892 -217.71.192.0/20 16372 -217.71.208.0/21 43646 -217.71.216.0/21 34154 -217.71.224.0/20 48257 -217.71.240.0/20 8758 -217.72.0.0/21 50299 -217.72.8.0/22 28917 -217.72.12.0/22 50299 -217.72.16.0/20 48904 -217.72.32.0/21 34758 -217.72.40.0/21 31222 -217.72.48.0/22 15782 -217.72.52.0/23 45011 -217.72.54.0/24 45011 -217.72.55.0/24 15782 -217.72.56.0/22 45011 -217.72.60.0/23 45011 -217.72.62.0/24 45011 -217.72.63.0/24 15782 -217.72.64.0/19 3212 -217.72.96.0/20 5394 -217.72.112.0/20 34790 -217.72.128.0/20 20692 -217.72.144.0/20 29388 -217.72.160.0/19 8419 -217.72.192.0/20 8560 -217.72.208.0/20 29413 -217.72.224.0/20 44944 -217.72.240.0/20 24778 -217.73.0.0/21 16115 -217.73.8.0/22 16115 -217.73.12.0/22 206627 -217.73.16.0/20 29405 -217.73.32.0/23 16072 -217.73.36.0/22 16072 -217.73.40.0/24 16072 -217.73.42.0/24 16072 -217.73.48.0/21 196819 -217.73.56.0/21 51219 -217.73.64.0/22 16238 -217.73.78.0/23 16238 -217.73.80.0/20 44291 -217.73.96.0/20 48803 -217.73.112.0/20 50299 -217.73.128.0/20 21183 -217.73.144.0/20 29404 -217.73.160.0/20 2614 -217.73.176.0/20 35434 -217.73.192.0/20 16083 -217.73.208.0/20 8612 -217.73.224.0/20 31034 -217.73.240.0/20 196818 -217.74.0.0/21 12611 -217.74.8.0/21 47692 -217.74.16.0/21 57400 -217.74.24.0/22 50090 -217.74.28.0/24 50090 -217.74.32.0/20 20919 -217.74.48.0/20 47720 -217.74.64.0/20 16138 -217.74.80.0/20 12552 -217.74.96.0/20 8399 -217.74.112.0/20 33819 -217.74.128.0/19 3308 -217.74.160.0/20 16300 -217.74.176.0/20 29488 -217.74.192.0/20 6786 -217.74.208.0/20 31027 -217.74.224.0/21 30844 -217.74.232.0/22 30844 -217.74.236.0/23 30844 -217.74.238.0/24 30844 -217.74.239.0/24 56696 -217.74.240.0/21 29497 -217.74.248.0/22 29497 -217.74.255.0/24 29497 -217.75.0.0/20 16171 -217.75.16.0/20 15623 -217.75.48.0/20 21021 -217.75.64.0/20 16160 -217.75.80.0/23 16160 -217.75.82.0/23 5578 -217.75.84.0/22 16160 -217.75.88.0/21 16160 -217.75.96.0/19 39369 -217.75.128.0/21 9070 -217.75.139.0/24 9070 -217.75.140.0/23 9070 -217.75.143.0/24 9070 -217.75.144.0/21 9070 -217.75.152.0/21 8866 -217.75.176.0/22 29633 -217.75.192.0/20 16178 -217.75.208.0/20 47232 -217.75.224.0/19 15919 -217.76.0.0/20 43733 -217.76.16.0/20 199139 -217.76.32.0/20 16143 -217.76.48.0/20 39597 -217.76.64.0/23 29555 -217.76.66.0/24 48503 -217.76.68.0/24 29555 -217.76.71.0/24 29555 -217.76.72.0/24 29555 -217.76.74.0/23 29555 -217.76.76.0/22 29555 -217.76.80.0/20 29518 -217.76.96.0/20 20886 -217.76.112.0/20 29553 -217.76.128.0/19 8560 -217.76.160.0/20 8562 -217.76.176.0/20 30868 -217.76.192.0/21 16066 -217.76.200.0/23 16066 -217.76.202.0/24 60990 -217.76.203.0/24 16066 -217.76.204.0/22 16066 -217.76.208.0/20 21333 -217.76.224.0/20 5488 -217.76.240.0/22 31082 -217.77.0.0/23 16362 -217.77.3.0/24 16362 -217.77.4.0/22 16362 -217.77.8.0/24 16362 -217.77.16.0/20 21412 -217.77.32.0/20 2116 -217.77.48.0/20 42387 -217.77.64.0/20 16058 -217.77.80.0/20 29609 -217.77.96.0/22 39264 -217.77.100.0/24 39264 -217.77.101.0/24 204287 -217.77.102.0/24 39264 -217.77.103.0/24 204287 -217.77.104.0/23 199599 -217.77.106.0/24 199599 -217.77.107.0/24 60826 -217.77.108.0/23 199599 -217.77.110.0/24 199599 -217.77.111.0/24 208453 -217.77.112.0/20 58224 -217.77.128.0/19 12902 -217.77.160.0/20 16019 -217.77.176.0/20 20860 -217.77.192.0/20 719 -217.77.208.0/20 31272 -217.77.224.0/22 21304 -217.77.228.0/22 57839 -217.77.236.0/24 21304 -217.77.237.0/24 57839 -217.77.238.0/24 57839 -217.77.239.0/24 21304 -217.78.0.0/20 31122 -217.78.16.0/20 1257 -217.78.32.0/20 50989 -217.78.48.0/21 15975 -217.78.60.0/22 15975 -217.78.80.0/20 29606 -217.78.97.0/24 51695 -217.78.98.0/23 51695 -217.78.102.0/24 51695 -217.78.105.0/24 51695 -217.78.106.0/23 51695 -217.78.108.0/22 51695 -217.78.112.0/20 29617 -217.78.128.0/20 8881 -217.78.144.0/21 5413 -217.78.152.0/22 5413 -217.78.156.0/23 5413 -217.78.158.0/24 5413 -217.78.159.0/24 31727 -217.78.160.0/20 20676 -217.78.176.0/20 30833 -217.78.192.0/19 16086 -217.78.224.0/20 197349 -217.78.240.0/20 202955 -217.79.0.0/20 8492 -217.79.16.0/20 30852 -217.79.32.0/24 8717 -217.79.33.0/24 202209 -217.79.34.0/23 8717 -217.79.36.0/23 8717 -217.79.38.0/24 199898 -217.79.39.0/24 8717 -217.79.40.0/24 56661 -217.79.41.0/24 8717 -217.79.42.0/23 8717 -217.79.44.0/22 29580 -217.79.48.0/22 12828 -217.79.52.0/22 8817 -217.79.56.0/23 34479 -217.79.58.0/23 5387 -217.79.60.0/22 5387 -217.79.64.0/19 16154 -217.79.96.0/19 8190 -217.79.128.0/20 8448 -217.79.144.0/22 42923 -217.79.148.0/22 8798 -217.79.152.0/21 51060 -217.79.160.0/23 3257 -217.79.162.0/24 395753 -217.79.163.0/24 3257 -217.79.164.0/22 3257 -217.79.168.0/22 3257 -217.79.172.0/23 3257 -217.79.174.0/24 33371 -217.79.175.0/24 13628 -217.79.176.0/20 24961 -217.79.192.0/20 15547 -217.79.208.0/20 24989 -217.79.224.0/20 48209 -217.80.0.0/12 3320 -217.96.0.0/14 5617 -217.100.0.0/15 33915 -217.102.0.0/17 6830 -217.102.128.0/18 33915 -217.102.192.0/19 33915 -217.102.224.0/21 33915 -217.102.240.0/20 15542 -217.103.0.0/16 6830 -217.104.0.0/17 33915 -217.104.128.0/17 6830 -217.105.0.0/18 6830 -217.105.64.0/18 33915 -217.105.128.0/18 33915 -217.105.192.0/19 33915 -217.105.224.0/19 6830 -217.106.0.0/19 8342 -217.106.32.0/24 12389 -217.106.33.0/24 8342 -217.106.34.0/23 8342 -217.106.36.0/22 8342 -217.106.40.0/21 8342 -217.106.48.0/20 8342 -217.106.64.0/18 8342 -217.106.128.0/17 8342 -217.107.0.0/19 8342 -217.107.32.0/21 8342 -217.107.40.0/22 8342 -217.107.44.0/23 8342 -217.107.46.0/24 12389 -217.107.47.0/24 8342 -217.107.48.0/23 12389 -217.107.50.0/24 12389 -217.107.51.0/24 8342 -217.107.52.0/22 8342 -217.107.56.0/21 8342 -217.107.64.0/19 12389 -217.107.96.0/21 25515 -217.107.104.0/23 25515 -217.107.106.0/23 12389 -217.107.108.0/22 12389 -217.107.112.0/21 12389 -217.107.120.0/24 57580 -217.107.121.0/24 12389 -217.107.122.0/23 12389 -217.107.124.0/22 12389 -217.107.128.0/18 12389 -217.107.192.0/22 201270 -217.107.196.0/22 201250 -217.107.200.0/21 8342 -217.107.208.0/20 8342 -217.107.224.0/19 12389 -217.108.0.0/18 3215 -217.108.64.0/20 3215 -217.108.80.0/22 3215 -217.108.84.0/24 3215 -217.108.85.0/24 206015 -217.108.86.0/23 3215 -217.108.88.0/21 3215 -217.108.96.0/19 3215 -217.108.128.0/17 3215 -217.109.0.0/20 3215 -217.109.16.0/21 3215 -217.109.24.0/23 5377 -217.109.26.0/23 3215 -217.109.28.0/22 3215 -217.109.32.0/19 3215 -217.109.64.0/23 3215 -217.109.66.0/24 3215 -217.109.67.0/24 15422 -217.109.68.0/22 3215 -217.109.72.0/21 3215 -217.109.80.0/20 3215 -217.109.96.0/21 3215 -217.109.104.0/22 3215 -217.109.108.0/24 47818 -217.109.109.0/24 3215 -217.109.110.0/23 3215 -217.109.112.0/22 3215 -217.109.116.0/24 48125 -217.109.117.0/24 3215 -217.109.118.0/23 3215 -217.109.120.0/22 3215 -217.109.124.0/23 3215 -217.109.126.0/24 3215 -217.109.127.0/24 9180 -217.109.128.0/17 3215 -217.110.0.0/19 8220 -217.110.32.0/20 8220 -217.110.48.0/21 8220 -217.110.56.0/22 8220 -217.110.60.0/23 8220 -217.110.62.0/24 41167 -217.110.63.0/24 8220 -217.110.64.0/18 8220 -217.110.128.0/17 8220 -217.111.0.0/19 8220 -217.111.32.0/21 8220 -217.111.40.0/22 8220 -217.111.44.0/24 41167 -217.111.45.0/24 8220 -217.111.46.0/23 8220 -217.111.48.0/20 8220 -217.111.64.0/18 8220 -217.111.128.0/21 8220 -217.111.136.0/23 8220 -217.111.138.0/24 206484 -217.111.139.0/24 8220 -217.111.140.0/22 8220 -217.111.144.0/20 8220 -217.111.160.0/22 8220 -217.111.164.0/22 12761 -217.111.168.0/21 8220 -217.111.176.0/20 8220 -217.111.192.0/22 8220 -217.111.196.0/23 8220 -217.111.198.0/24 27447 -217.111.199.0/24 8220 -217.111.200.0/21 8220 -217.111.208.0/20 8220 -217.111.224.0/19 8220 -217.112.0.0/20 12714 -217.112.16.0/20 25513 -217.112.32.0/22 30943 -217.112.36.0/23 40966 -217.112.38.0/23 30943 -217.112.40.0/23 30943 -217.112.42.0/23 40966 -217.112.44.0/23 40966 -217.112.46.0/24 40966 -217.112.47.0/24 30943 -217.112.48.0/20 34949 -217.112.64.0/20 34510 -217.112.80.0/20 29550 -217.112.96.0/20 49605 -217.112.112.0/20 8608 -217.112.128.0/24 209298 -217.112.129.0/24 30836 -217.112.130.0/23 30836 -217.112.132.0/24 30836 -217.112.134.0/23 30836 -217.112.136.0/22 30836 -217.112.140.0/23 30836 -217.112.142.0/24 209298 -217.112.143.0/24 62292 -217.112.144.0/22 13237 -217.112.148.0/23 13237 -217.112.150.0/24 61054 -217.112.151.0/24 200005 -217.112.152.0/22 13237 -217.112.156.0/23 13237 -217.112.158.0/24 200005 -217.112.159.0/24 13237 -217.112.160.0/20 20723 -217.112.176.0/20 31449 -217.112.192.0/20 34541 -217.112.208.0/20 3326 -217.112.224.0/21 15557 -217.112.232.0/24 12566 -217.112.233.0/24 15557 -217.112.234.0/23 15557 -217.112.236.0/22 15557 -217.112.240.0/20 30798 -217.113.0.0/21 16190 -217.113.8.0/24 57206 -217.113.9.0/24 50364 -217.113.10.0/23 207847 -217.113.12.0/22 49800 -217.113.16.0/20 49800 -217.113.32.0/20 16218 -217.113.48.0/22 29278 -217.113.52.0/24 57389 -217.113.53.0/24 29278 -217.113.54.0/23 29278 -217.113.56.0/24 57389 -217.113.57.0/24 29278 -217.113.58.0/24 29278 -217.113.59.0/24 57389 -217.113.60.0/23 29278 -217.113.62.0/24 33937 -217.113.63.0/24 29278 -217.113.64.0/19 3491 -217.113.96.0/20 16195 -217.113.112.0/20 8416 -217.113.128.0/20 33869 -217.113.144.0/21 34604 -217.113.152.0/22 34604 -217.113.156.0/22 39909 -217.113.160.0/20 42973 -217.113.176.0/20 30766 -217.113.192.0/20 41044 -217.113.208.0/20 21333 -217.113.224.0/20 16342 -217.113.240.0/21 15704 -217.113.248.0/24 15704 -217.113.249.0/24 53889 -217.113.250.0/23 15704 -217.113.252.0/22 15704 -217.114.0.0/20 16230 -217.114.16.0/20 30767 -217.114.48.0/20 30847 -217.114.64.0/20 20694 -217.114.80.0/20 30811 -217.114.96.0/20 47886 -217.114.112.0/20 4589 -217.114.128.0/20 25267 -217.114.144.0/20 3226 -217.114.160.0/20 15830 -217.114.176.0/20 30855 -217.114.192.0/21 199610 -217.114.200.0/21 197133 -217.114.208.0/20 31103 -217.114.224.0/20 3253 -217.114.240.0/20 30856 -217.115.0.0/20 31078 -217.115.16.0/21 44084 -217.115.24.0/22 44084 -217.115.28.0/24 209387 -217.115.29.0/24 44084 -217.115.30.0/23 44084 -217.115.32.0/19 29518 -217.115.64.0/20 21150 -217.115.80.0/20 29648 -217.115.96.0/20 25133 -217.115.112.0/21 30900 -217.115.120.0/24 30900 -217.115.121.0/24 199256 -217.115.122.0/23 30900 -217.115.124.0/24 199256 -217.115.125.0/24 30900 -217.115.126.0/23 30900 -217.115.128.0/21 20773 -217.115.136.0/23 61157 -217.115.140.0/24 61157 -217.115.141.0/24 8972 -217.115.143.0/24 20773 -217.115.145.0/24 20773 -217.115.146.0/23 20773 -217.115.148.0/22 61157 -217.115.152.0/21 20773 -217.115.160.0/20 8723 -217.115.176.0/20 12714 -217.115.192.0/20 15879 -217.115.208.0/20 9050 -217.115.224.0/20 16074 -217.115.240.0/20 20723 -217.116.0.0/19 16371 -217.116.32.0/20 5588 -217.116.48.0/20 15493 -217.116.64.0/20 16314 -217.116.80.0/20 29517 -217.116.96.0/22 12743 -217.116.100.0/22 5617 -217.116.104.0/24 43447 -217.116.105.0/24 12743 -217.116.106.0/23 12743 -217.116.108.0/23 12743 -217.116.110.0/24 43447 -217.116.111.0/24 12743 -217.116.112.0/20 15594 -217.116.128.0/24 16287 -217.116.129.0/24 12389 -217.116.130.0/23 12389 -217.116.132.0/22 12389 -217.116.136.0/22 12389 -217.116.140.0/24 16287 -217.116.141.0/24 12389 -217.116.142.0/23 12389 -217.116.144.0/20 12389 -217.116.160.0/20 16331 -217.116.176.0/20 51184 -217.116.192.0/20 49879 -217.116.208.0/22 31027 -217.116.212.0/24 31027 -217.116.213.0/24 51595 -217.116.214.0/23 31027 -217.116.216.0/21 31027 -217.116.224.0/19 16245 -217.117.0.0/22 16284 -217.117.4.0/24 16284 -217.117.5.0/24 36994 -217.117.6.0/23 16284 -217.117.9.0/24 16284 -217.117.10.0/24 16284 -217.117.11.0/24 36994 -217.117.12.0/24 36994 -217.117.13.0/24 16284 -217.117.14.0/23 16284 -217.117.16.0/21 15440 -217.117.24.0/22 15440 -217.117.28.0/23 15440 -217.117.30.0/24 15440 -217.117.31.0/24 210126 -217.117.32.0/24 3356 -217.117.33.0/24 12942 -217.117.34.0/24 3356 -217.117.35.0/24 12942 -217.117.36.0/24 3356 -217.117.37.0/24 12942 -217.117.38.0/23 12942 -217.117.40.0/22 12942 -217.117.44.0/23 3356 -217.117.46.0/23 12942 -217.117.48.0/20 12942 -217.117.64.0/23 15742 -217.117.66.0/24 15742 -217.117.68.0/23 15742 -217.117.74.0/23 15742 -217.117.77.0/24 15742 -217.117.80.0/20 30922 -217.117.96.0/24 3320 -217.117.97.0/24 8881 -217.117.98.0/24 8881 -217.117.110.0/23 33984 -217.117.112.0/20 30953 -217.117.128.0/20 16290 -217.117.144.0/20 15830 -217.117.160.0/20 4589 -217.117.176.0/21 16300 -217.117.184.0/24 16300 -217.117.185.0/24 200838 -217.117.186.0/24 209988 -217.117.188.0/24 200945 -217.117.189.0/24 200838 -217.117.190.0/24 200838 -217.117.192.0/20 3347 -217.117.208.0/20 5610 -217.117.224.0/20 16281 -217.117.240.0/20 47954 -217.118.0.0/20 16297 -217.118.16.0/20 8972 -217.118.32.0/19 2116 -217.118.64.0/24 16345 -217.118.66.0/24 16345 -217.118.68.0/22 16345 -217.118.72.0/21 16345 -217.118.81.0/24 16345 -217.118.82.0/23 16345 -217.118.84.0/22 16345 -217.118.88.0/22 16345 -217.118.92.0/23 16345 -217.118.95.0/24 16345 -217.118.96.0/20 5578 -217.118.112.0/20 3257 -217.118.128.0/20 15463 -217.118.144.0/20 31033 -217.118.160.0/20 20504 -217.118.176.0/20 28840 -217.118.192.0/20 16221 -217.118.208.0/20 50989 -217.118.224.0/20 1239 -217.118.240.0/20 31144 -217.119.0.0/20 16298 -217.119.16.0/20 31376 -217.119.32.0/20 16302 -217.119.48.0/24 31100 -217.119.51.0/24 61157 -217.119.52.0/23 61157 -217.119.55.0/24 61157 -217.119.57.0/24 61157 -217.119.58.0/23 61157 -217.119.60.0/22 61157 -217.119.80.0/20 51604 -217.119.96.0/20 49497 -217.119.112.0/20 31117 -217.119.144.0/20 31124 -217.119.160.0/20 3246 -217.119.176.0/22 31167 -217.119.180.0/23 197732 -217.119.182.0/23 31167 -217.119.184.0/24 31167 -217.119.185.0/24 197033 -217.119.186.0/23 31167 -217.119.188.0/22 31167 -217.119.192.0/20 16277 -217.119.208.0/20 31259 -217.119.224.0/20 16350 -217.119.240.0/22 31161 -217.119.246.0/23 31161 -217.119.248.0/21 61332 -217.120.0.0/14 33915 -217.124.0.0/17 3352 -217.124.128.0/20 3352 -217.124.144.0/21 3352 -217.124.152.0/24 20905 -217.124.153.0/24 3352 -217.124.154.0/23 3352 -217.124.156.0/22 3352 -217.124.160.0/21 3352 -217.124.168.0/22 3352 -217.124.172.0/23 206252 -217.124.174.0/23 3352 -217.124.176.0/20 3352 -217.124.192.0/19 3352 -217.124.224.0/20 3352 -217.124.240.0/23 3352 -217.124.242.0/24 6813 -217.124.243.0/24 3352 -217.124.244.0/22 3352 -217.124.248.0/21 3352 -217.125.0.0/16 3352 -217.126.0.0/15 3352 -217.128.0.0/16 3215 -217.129.0.0/16 13156 -217.130.0.0/17 12430 -217.130.128.0/18 12430 -217.130.192.0/19 12430 -217.130.224.0/20 12430 -217.130.240.0/22 12430 -217.130.244.0/24 50926 -217.130.245.0/24 12430 -217.130.246.0/23 12430 -217.130.248.0/21 12430 -217.131.1.0/24 34984 -217.131.2.0/23 34984 -217.131.4.0/22 34984 -217.131.18.0/24 34984 -217.131.20.0/24 34984 -217.131.22.0/24 34984 -217.131.25.0/24 34984 -217.131.26.0/23 34984 -217.131.28.0/24 34984 -217.131.30.0/24 34984 -217.131.32.0/20 34984 -217.131.48.0/21 34984 -217.131.56.0/23 34984 -217.131.60.0/23 34984 -217.131.72.0/21 34984 -217.131.80.0/21 34984 -217.131.96.0/19 34984 -217.131.128.0/17 34984 -217.132.0.0/16 1680 -217.133.0.0/16 8612 -217.135.0.0/16 1273 -217.136.0.0/16 5432 -217.137.0.0/16 5089 -217.138.0.0/17 20952 -217.138.128.0/18 20952 -217.138.192.0/20 9009 -217.138.208.0/23 9009 -217.138.210.0/24 20952 -217.138.211.0/24 9009 -217.138.212.0/22 9009 -217.138.216.0/22 9009 -217.138.220.0/23 9009 -217.138.222.0/24 16247 -217.138.223.0/24 20952 -217.138.224.0/23 20952 -217.138.226.0/23 16247 -217.138.228.0/23 16247 -217.138.230.0/23 20952 -217.138.232.0/21 20952 -217.138.240.0/20 20952 -217.139.0.0/16 20928 -217.140.0.0/21 13205 -217.140.11.0/24 13205 -217.140.12.0/22 13205 -217.140.16.0/20 8903 -217.140.32.0/19 13205 -217.140.64.0/19 20640 -217.140.96.0/21 28939 -217.140.104.0/23 28939 -217.140.106.0/24 28939 -217.140.108.0/22 28939 -217.140.112.0/20 12552 -217.140.128.0/17 20569 -217.141.0.0/16 3269 -217.142.0.0/15 16253 -217.144.0.0/20 21088 -217.144.16.0/20 31127 -217.144.32.0/20 16356 -217.144.48.0/23 29278 -217.144.50.0/24 29278 -217.144.51.0/24 60071 -217.144.52.0/24 57389 -217.144.53.0/24 61998 -217.144.54.0/24 61998 -217.144.55.0/24 39679 -217.144.56.0/22 39679 -217.144.60.0/23 39679 -217.144.62.0/23 29278 -217.144.64.0/20 44381 -217.144.80.0/20 12496 -217.144.96.0/23 203226 -217.144.99.0/24 203226 -217.144.108.0/22 203872 -217.144.112.0/22 31180 -217.144.117.0/24 31180 -217.144.118.0/23 31180 -217.144.120.0/21 31180 -217.144.128.0/20 15987 -217.144.144.0/24 8851 -217.144.145.0/24 206483 -217.144.146.0/23 8851 -217.144.148.0/22 8851 -217.144.152.0/21 8851 -217.144.160.0/21 57251 -217.144.168.0/22 57251 -217.144.172.0/22 12737 -217.144.176.0/20 16230 -217.144.192.0/19 16340 -217.144.224.0/19 2116 -217.145.0.0/20 15735 -217.145.16.0/20 31558 -217.145.32.0/21 20650 -217.145.40.0/23 20650 -217.145.43.0/24 20650 -217.145.44.0/23 20650 -217.145.48.0/21 9120 -217.145.56.0/23 9120 -217.145.58.0/24 9120 -217.145.60.0/24 9120 -217.145.62.0/24 9120 -217.145.64.0/20 8851 -217.145.80.0/21 20665 -217.145.88.0/22 20665 -217.145.92.0/23 20665 -217.145.94.0/24 20665 -217.145.95.0/24 197516 -217.145.96.0/21 16316 -217.145.104.0/22 16316 -217.145.108.0/24 33896 -217.145.109.0/24 16316 -217.145.110.0/24 205931 -217.145.111.0/24 16316 -217.145.112.0/21 8844 -217.145.120.0/22 8844 -217.145.124.0/22 8190 -217.145.128.0/20 49454 -217.145.144.0/20 31336 -217.145.160.0/22 16344 -217.145.164.0/23 16344 -217.145.168.0/24 16344 -217.145.174.0/23 16344 -217.145.176.0/22 31346 -217.145.180.0/23 31346 -217.145.182.0/24 31346 -217.145.192.0/20 12426 -217.145.208.0/20 13070 -217.145.224.0/22 9009 -217.145.228.0/22 198735 -217.145.232.0/22 210150 -217.145.236.0/24 201971 -217.145.238.0/23 201971 -217.145.240.0/20 31416 -217.146.0.0/23 42473 -217.146.2.0/24 42473 -217.146.4.0/23 42473 -217.146.6.0/23 199159 -217.146.8.0/21 42473 -217.146.16.0/23 42473 -217.146.18.0/24 42388 -217.146.19.0/24 42473 -217.146.20.0/22 42473 -217.146.24.0/21 42473 -217.146.32.0/22 29503 -217.146.36.0/22 34549 -217.146.40.0/21 34549 -217.146.48.0/20 48885 -217.146.64.0/20 49604 -217.146.80.0/20 25369 -217.146.96.0/19 16353 -217.146.128.0/19 20676 -217.146.160.0/20 15576 -217.146.176.0/20 34010 -217.146.192.0/20 25002 -217.146.208.0/20 24631 -217.146.224.0/20 16363 -217.146.240.0/20 6703 -217.147.0.0/22 210116 -217.147.8.0/22 201776 -217.147.12.0/22 62370 -217.147.16.0/20 31430 -217.147.32.0/23 24877 -217.147.34.0/23 24852 -217.147.36.0/23 24852 -217.147.38.0/24 24852 -217.147.39.0/24 24877 -217.147.40.0/23 24852 -217.147.42.0/23 24877 -217.147.44.0/22 24852 -217.147.48.0/20 200924 -217.147.64.0/22 15961 -217.147.68.0/23 15961 -217.147.70.0/24 15961 -217.147.71.0/24 198949 -217.147.72.0/21 15961 -217.147.80.0/20 20860 -217.147.96.0/20 1239 -217.147.112.0/22 39882 -217.147.116.0/24 39882 -217.147.118.0/24 39882 -217.147.119.0/24 201071 -217.147.121.0/24 201071 -217.147.122.0/23 39882 -217.147.124.0/22 201071 -217.147.128.0/20 1239 -217.147.144.0/20 21333 -217.147.160.0/21 21379 -217.147.169.0/24 206638 -217.147.170.0/24 48650 -217.147.172.0/24 20853 -217.147.173.0/24 198227 -217.147.174.0/23 198227 -217.147.176.0/21 48582 -217.147.184.0/21 26223 -217.147.192.0/20 25540 -217.147.208.0/20 31424 -217.147.224.0/20 20545 -217.147.240.0/20 31474 -217.148.0.0/20 20988 -217.148.16.0/20 21315 -217.148.32.0/20 29527 -217.148.48.0/20 31499 -217.148.64.0/20 16383 -217.148.80.0/20 15879 -217.148.96.0/20 16379 -217.148.112.0/20 31495 -217.148.132.0/22 39647 -217.148.136.0/23 200960 -217.148.139.0/24 201446 -217.148.144.0/20 2119 -217.148.160.0/19 20495 -217.148.192.0/20 20533 -217.148.208.0/20 20485 -217.148.224.0/20 49296 -217.149.0.0/20 31653 -217.149.16.0/20 31512 -217.149.32.0/20 1239 -217.149.48.0/20 29422 -217.149.64.0/20 15879 -217.149.80.0/20 31570 -217.149.96.0/20 25582 -217.149.112.0/20 35132 -217.149.128.0/20 28878 -217.149.144.0/20 15734 -217.149.160.0/20 12793 -217.149.176.0/20 39442 -217.149.192.0/20 20507 -217.149.208.0/21 20507 -217.149.216.0/24 13127 -217.149.217.0/24 20507 -217.149.218.0/23 20507 -217.149.220.0/22 20507 -217.149.224.0/20 6720 -217.149.240.0/24 197155 -217.149.241.0/24 15694 -217.149.242.0/23 15694 -217.149.244.0/23 15694 -217.149.246.0/24 15694 -217.149.247.0/24 21344 -217.149.248.0/21 15694 -217.150.0.0/19 20483 -217.150.32.0/19 20485 -217.150.72.0/21 196949 -217.150.80.0/22 60398 -217.150.84.0/23 60398 -217.150.87.0/24 60398 -217.150.88.0/21 58272 -217.150.96.0/19 24867 -217.150.128.0/20 20523 -217.150.144.0/20 34086 -217.150.160.0/20 29217 -217.150.190.0/23 48522 -217.150.192.0/20 24936 -217.150.208.0/22 33932 -217.150.212.0/23 33932 -217.150.214.0/23 208528 -217.150.216.0/22 208528 -217.150.220.0/24 207527 -217.150.224.0/20 8758 -217.150.240.0/20 29691 -217.151.0.0/20 16136 -217.151.16.0/20 31643 -217.151.32.0/20 4637 -217.151.48.0/20 31644 -217.151.64.0/20 12714 -217.151.80.0/20 21385 -217.151.96.0/20 9009 -217.151.112.0/20 31662 -217.151.128.0/20 20576 -217.151.144.0/20 9022 -217.151.160.0/19 12969 -217.151.192.0/20 20514 -217.151.208.0/20 20768 -217.151.224.0/22 20535 -217.151.228.0/22 35410 -217.151.232.0/21 48642 -217.151.240.0/20 1239 -217.152.0.0/16 719 -217.153.0.0/18 5588 -217.153.64.0/19 5588 -217.153.96.0/20 5588 -217.153.112.0/22 5588 -217.153.116.0/24 201581 -217.153.117.0/24 5588 -217.153.118.0/23 5588 -217.153.120.0/23 5588 -217.153.122.0/24 33895 -217.153.123.0/24 5588 -217.153.124.0/23 5588 -217.153.126.0/24 201253 -217.153.127.0/24 5588 -217.153.128.0/20 5588 -217.153.144.0/21 5588 -217.153.152.0/23 5588 -217.153.154.0/23 199410 -217.153.156.0/22 5588 -217.153.160.0/21 5588 -217.153.168.0/23 59958 -217.153.170.0/23 5588 -217.153.172.0/22 5588 -217.153.176.0/20 5588 -217.153.192.0/19 5588 -217.153.224.0/22 5588 -217.153.228.0/23 35199 -217.153.230.0/23 5588 -217.153.232.0/21 5588 -217.153.240.0/21 5588 -217.153.248.0/22 5588 -217.153.252.0/22 59958 -217.154.0.0/16 8897 -217.155.0.0/16 13037 -217.156.0.0/24 34714 -217.156.2.0/24 6830 -217.156.4.0/24 8751 -217.156.6.0/24 6830 -217.156.7.0/24 8708 -217.156.9.0/24 8708 -217.156.11.0/24 2614 -217.156.13.0/24 8708 -217.156.14.0/24 8708 -217.156.15.0/24 6830 -217.156.19.0/24 8708 -217.156.20.0/23 61224 -217.156.23.0/24 12310 -217.156.27.0/24 28966 -217.156.30.0/24 20606 -217.156.31.0/24 44277 -217.156.32.0/23 8708 -217.156.34.0/23 6830 -217.156.36.0/24 34648 -217.156.37.0/24 8751 -217.156.38.0/24 5588 -217.156.41.0/24 8708 -217.156.43.0/24 6830 -217.156.46.0/24 20722 -217.156.47.0/24 8708 -217.156.48.0/22 15471 -217.156.52.0/24 20929 -217.156.57.0/24 6830 -217.156.58.0/24 6663 -217.156.59.0/24 8708 -217.156.66.0/23 20524 -217.156.68.0/23 15471 -217.156.71.0/24 8708 -217.156.73.0/24 6830 -217.156.76.0/24 31017 -217.156.77.0/24 12302 -217.156.79.0/24 57136 -217.156.81.0/24 25103 -217.156.83.0/24 20930 -217.156.85.0/24 21294 -217.156.87.0/24 12592 -217.156.89.0/24 24914 -217.156.90.0/23 8708 -217.156.92.0/24 8708 -217.156.93.0/24 6830 -217.156.94.0/24 8708 -217.156.96.0/23 8708 -217.156.98.0/24 6830 -217.156.99.0/24 21294 -217.156.100.0/24 13059 -217.156.101.0/24 8708 -217.156.103.0/24 20616 -217.156.104.0/24 49507 -217.156.106.0/23 8708 -217.156.108.0/24 20601 -217.156.110.0/24 6830 -217.156.111.0/24 12310 -217.156.112.0/24 6830 -217.156.113.0/24 20530 -217.156.116.0/23 6830 -217.156.119.0/24 6830 -217.156.120.0/24 6830 -217.156.122.0/24 8708 -217.156.123.0/24 15882 -217.156.124.0/24 8614 -217.156.127.0/24 25461 -217.156.128.0/23 3549 -217.156.130.0/24 3549 -217.156.131.0/24 27377 -217.156.132.0/23 3549 -217.156.134.0/24 15641 -217.156.135.0/24 3549 -217.156.136.0/21 3549 -217.156.144.0/23 3549 -217.156.146.0/24 3549 -217.156.147.0/24 14766 -217.156.148.0/23 3549 -217.156.150.0/24 3549 -217.156.151.0/24 10753 -217.156.152.0/21 3549 -217.156.160.0/22 3491 -217.156.164.0/24 3491 -217.156.165.0/24 7262 -217.156.166.0/23 3491 -217.156.168.0/22 3549 -217.156.172.0/23 3549 -217.156.174.0/24 3549 -217.156.175.0/24 19920 -217.156.176.0/22 3549 -217.156.180.0/24 3549 -217.156.181.0/24 3356 -217.156.182.0/23 3549 -217.156.184.0/21 3549 -217.156.192.0/20 3549 -217.156.208.0/21 3549 -217.156.216.0/22 3549 -217.156.220.0/23 3549 -217.156.222.0/24 3549 -217.156.223.0/24 10753 -217.156.224.0/20 3549 -217.156.240.0/21 3549 -217.156.248.0/24 3549 -217.156.249.0/24 62262 -217.156.250.0/24 26558 -217.156.251.0/24 3549 -217.156.252.0/22 3549 -217.157.0.0/16 9158 -217.158.0.0/16 8426 -217.159.0.0/17 16360 -217.159.128.0/17 3249 -217.160.0.0/16 8560 -217.161.0.0/21 1273 -217.161.8.0/22 1273 -217.161.12.0/23 8426 -217.161.14.0/23 1273 -217.161.16.0/20 1273 -217.161.32.0/19 1273 -217.161.64.0/18 1273 -217.161.128.0/17 1273 -217.162.0.0/16 6830 -217.163.0.0/21 3356 -217.163.8.0/23 3356 -217.163.10.0/23 20473 -217.163.12.0/22 3356 -217.163.16.0/23 3356 -217.163.18.0/24 59582 -217.163.19.0/24 3356 -217.163.20.0/23 3356 -217.163.22.0/24 3356 -217.163.23.0/24 20473 -217.163.24.0/21 20473 -217.163.32.0/20 3356 -217.163.48.0/21 3356 -217.163.56.0/24 3356 -217.163.57.0/24 44965 -217.163.58.0/24 3356 -217.163.59.0/24 60120 -217.163.60.0/23 3356 -217.163.62.0/24 3356 -217.163.63.0/24 17043 -217.163.64.0/22 3356 -217.163.68.0/23 62262 -217.163.70.0/23 3356 -217.163.72.0/21 3356 -217.163.80.0/20 3356 -217.163.96.0/19 3356 -217.163.128.0/17 3356 -217.164.0.0/15 5384 -217.166.0.0/16 1136 -217.167.0.0/17 3215 -217.167.128.0/20 3215 -217.167.144.0/23 3215 -217.167.146.0/24 3215 -217.167.147.0/24 21272 -217.167.148.0/22 3215 -217.167.152.0/21 3215 -217.167.160.0/19 3215 -217.167.192.0/19 3215 -217.167.224.0/23 3215 -217.167.226.0/24 3215 -217.167.227.0/24 5377 -217.167.228.0/22 3215 -217.167.232.0/21 3215 -217.167.240.0/20 3215 -217.168.2.0/23 16299 -217.168.6.0/24 16299 -217.168.13.0/24 16299 -217.168.16.0/20 36483 -217.168.32.0/19 6830 -217.168.64.0/22 20519 -217.168.68.0/23 20519 -217.168.70.0/23 12389 -217.168.72.0/21 20519 -217.168.80.0/20 34087 -217.168.96.0/20 8218 -217.168.112.0/21 8657 -217.168.120.0/21 6848 -217.168.128.0/20 20552 -217.168.144.0/20 34660 -217.168.160.0/20 20521 -217.168.176.0/20 31721 -217.168.192.0/20 20553 -217.168.208.0/20 33883 -217.168.224.0/20 12637 -217.168.240.0/22 31008 -217.168.244.0/24 31008 -217.168.245.0/24 34702 -217.168.246.0/23 31008 -217.168.248.0/21 198440 -217.169.0.0/19 20712 -217.169.32.0/19 6908 -217.169.64.0/21 20571 -217.169.72.0/24 20571 -217.169.73.0/24 16509 -217.169.74.0/23 20571 -217.169.76.0/22 20571 -217.169.82.0/23 15378 -217.169.84.0/22 15378 -217.169.88.0/21 15378 -217.169.96.0/19 20746 -217.169.128.0/19 20932 -217.169.160.0/20 20695 -217.169.176.0/20 29583 -217.169.192.0/20 12794 -217.169.208.0/20 9125 -217.169.224.0/20 15466 -217.169.240.0/20 33835 -217.170.0.0/24 24785 -217.170.1.0/24 25459 -217.170.2.0/23 25151 -217.170.4.0/22 42093 -217.170.8.0/24 34210 -217.170.9.0/24 24785 -217.170.10.0/23 24785 -217.170.12.0/23 25459 -217.170.14.0/24 25459 -217.170.15.0/24 5418 -217.170.16.0/23 29001 -217.170.18.0/23 24785 -217.170.20.0/24 24785 -217.170.21.0/24 35470 -217.170.22.0/23 24785 -217.170.24.0/21 24785 -217.170.32.0/19 35753 -217.170.64.0/19 20597 -217.170.96.0/20 48474 -217.170.112.0/20 35401 -217.170.128.0/20 49788 -217.170.148.0/23 21271 -217.170.156.0/22 30985 -217.170.160.0/20 44514 -217.170.176.0/20 33808 -217.170.192.0/20 34989 -217.170.208.0/20 8905 -217.170.224.0/21 20658 -217.170.232.0/24 20658 -217.170.234.0/24 20658 -217.170.238.0/23 20658 -217.170.240.0/20 51469 -217.171.0.0/20 6863 -217.171.16.0/24 31167 -217.171.17.0/24 16347 -217.171.18.0/24 16347 -217.171.19.0/24 31167 -217.171.20.0/23 31167 -217.171.22.0/24 31167 -217.171.23.0/24 57809 -217.171.24.0/22 31167 -217.171.28.0/24 57809 -217.171.29.0/24 31167 -217.171.30.0/23 31167 -217.171.32.0/20 20836 -217.171.48.0/20 35063 -217.171.80.0/22 43076 -217.171.84.0/24 43076 -217.171.85.0/24 43256 -217.171.86.0/23 43256 -217.171.88.0/23 43256 -217.171.90.0/24 43256 -217.171.91.0/24 43076 -217.171.92.0/22 43256 -217.171.96.0/23 24661 -217.171.99.0/24 24661 -217.171.100.0/24 24661 -217.171.104.0/24 24661 -217.171.108.0/22 24661 -217.171.112.0/20 31723 -217.171.128.0/20 60339 -217.171.145.0/24 58224 -217.171.146.0/24 59772 -217.171.147.0/24 48607 -217.171.148.0/22 58224 -217.171.152.0/21 31261 -217.171.160.0/20 20604 -217.171.176.0/20 41589 -217.171.192.0/20 201577 -217.171.208.0/20 12969 -217.171.224.0/21 39647 -217.171.232.0/21 199509 -217.171.240.0/20 15866 -217.172.0.0/20 21176 -217.172.16.0/21 33902 -217.172.24.0/22 198610 -217.172.28.0/22 8595 -217.172.32.0/19 43509 -217.172.64.0/20 16206 -217.172.80.0/20 15389 -217.172.96.0/23 29077 -217.172.100.0/24 29077 -217.172.102.0/23 58224 -217.172.104.0/21 58224 -217.172.112.0/22 58224 -217.172.116.0/23 58224 -217.172.119.0/24 58224 -217.172.120.0/21 44285 -217.172.128.0/22 33854 -217.172.132.0/23 33854 -217.172.134.0/24 33854 -217.172.135.0/24 45014 -217.172.136.0/21 45014 -217.172.144.0/20 5578 -217.172.160.0/23 8972 -217.172.162.0/24 20773 -217.172.163.0/24 61157 -217.172.164.0/22 61157 -217.172.168.0/23 61157 -217.172.170.0/23 8972 -217.172.172.0/24 8972 -217.172.173.0/24 61157 -217.172.174.0/23 61157 -217.172.176.0/21 8972 -217.172.184.0/22 8972 -217.172.188.0/23 8972 -217.172.190.0/24 8972 -217.172.191.0/24 61157 -217.172.192.0/19 3269 -217.172.224.0/19 21021 -217.173.0.0/20 31423 -217.173.16.0/20 29194 -217.173.32.0/20 12594 -217.173.61.0/24 43905 -217.173.64.0/20 8595 -217.173.84.0/22 31699 -217.173.88.0/23 31699 -217.173.92.0/23 31699 -217.173.96.0/20 8220 -217.173.112.0/20 12479 -217.173.128.0/19 20640 -217.173.160.0/20 30851 -217.173.176.0/20 30923 -217.173.192.0/21 21182 -217.173.200.0/23 21182 -217.173.202.0/23 202177 -217.173.204.0/24 202177 -217.173.205.0/24 25584 -217.173.206.0/23 21182 -217.173.208.0/20 34110 -217.173.224.0/20 20634 -217.173.240.0/20 31264 -217.174.0.0/20 34629 -217.174.16.0/20 31303 -217.174.32.0/22 20978 -217.174.36.0/24 20978 -217.174.38.0/24 20978 -217.174.40.0/21 20978 -217.174.48.0/21 29084 -217.174.56.0/23 29084 -217.174.58.0/24 48584 -217.174.59.0/24 29084 -217.174.60.0/22 29084 -217.174.64.0/19 25169 -217.174.96.0/20 20655 -217.174.112.0/20 8816 -217.174.128.0/20 48862 -217.174.144.0/24 42347 -217.174.145.0/24 62361 -217.174.146.0/23 31083 -217.174.148.0/23 31083 -217.174.150.0/24 57344 -217.174.151.0/24 31083 -217.174.152.0/23 31083 -217.174.154.0/24 57344 -217.174.155.0/24 31083 -217.174.156.0/24 201200 -217.174.158.0/24 205128 -217.174.159.0/24 57344 -217.174.160.0/22 5563 -217.174.164.0/24 51604 -217.174.165.0/24 5563 -217.174.166.0/23 5563 -217.174.168.0/21 5563 -217.174.176.0/20 33904 -217.174.192.0/19 16128 -217.174.224.0/20 20661 -217.174.240.0/20 8560 -217.175.0.0/20 39047 -217.175.16.0/22 33936 -217.175.21.0/24 33936 -217.175.22.0/23 33936 -217.175.24.0/23 33936 -217.175.26.0/24 33936 -217.175.32.0/20 38917 -217.175.48.0/20 33964 -217.175.64.0/24 15641 -217.175.67.0/24 15641 -217.175.69.0/24 15641 -217.175.70.0/23 15641 -217.175.72.0/22 15641 -217.175.76.0/23 15641 -217.175.78.0/24 15641 -217.175.80.0/20 202940 -217.175.96.0/20 20595 -217.175.112.0/20 197623 -217.175.128.0/19 20702 -217.175.160.0/19 20776 -217.175.192.0/23 199236 -217.175.194.0/24 199236 -217.175.195.0/24 1764 -217.175.196.0/24 1764 -217.175.197.0/24 199236 -217.175.198.0/24 199236 -217.175.199.0/24 1764 -217.175.200.0/22 1764 -217.175.204.0/23 13008 -217.175.206.0/24 29330 -217.175.207.0/24 60520 -217.175.208.0/24 8544 -217.175.209.0/24 5425 -217.175.210.0/23 8544 -217.175.212.0/23 16229 -217.175.214.0/23 8544 -217.175.216.0/21 8544 -217.175.224.0/20 24679 -217.175.240.0/22 25128 -217.175.244.0/22 24679 -217.175.248.0/21 24679 -217.176.0.0/15 5503 -217.178.0.0/18 55391 -217.178.64.0/18 55392 -217.178.128.0/17 55391 -217.179.0.0/16 5503 -217.180.0.0/17 5503 -217.180.128.0/18 5503 -217.180.192.0/18 30600 -217.181.0.0/17 5503 -217.181.128.0/17 8399 -217.182.0.0/16 16276 -217.183.0.0/16 5466 -217.184.0.0/13 6805 -217.192.0.0/18 3303 -217.192.64.0/20 3303 -217.192.80.0/22 3303 -217.192.84.0/23 3303 -217.192.86.0/24 9096 -217.192.87.0/24 3303 -217.192.88.0/21 3303 -217.192.96.0/19 3303 -217.192.128.0/17 3303 -217.193.0.0/16 3303 -217.194.0.0/20 12637 -217.194.16.0/24 38930 -217.194.18.0/24 8455 -217.194.20.0/24 38930 -217.194.21.0/24 8455 -217.194.32.0/20 20594 -217.194.48.0/20 41622 -217.194.64.0/22 20830 -217.194.68.0/23 20830 -217.194.70.0/23 20676 -217.194.72.0/23 20676 -217.194.74.0/23 20830 -217.194.76.0/23 20830 -217.194.78.0/24 20676 -217.194.79.0/24 20830 -217.194.83.0/24 34761 -217.194.88.0/24 34761 -217.194.90.0/24 34761 -217.194.93.0/24 34761 -217.194.94.0/24 34761 -217.194.96.0/19 15879 -217.194.128.0/23 8513 -217.194.136.0/21 8513 -217.194.145.0/24 8513 -217.194.146.0/24 8513 -217.194.148.0/23 8513 -217.194.150.0/24 8513 -217.194.153.0/24 8513 -217.194.157.0/24 8513 -217.194.158.0/23 8513 -217.194.160.0/20 5610 -217.194.176.0/20 33986 -217.194.192.0/20 20623 -217.194.208.0/20 20860 -217.194.224.0/20 20775 -217.194.240.0/20 33993 -217.195.0.0/20 20653 -217.195.16.0/20 34006 -217.195.32.0/20 24679 -217.195.48.0/20 24651 -217.195.64.0/21 20632 -217.195.72.0/22 20632 -217.195.76.0/24 59722 -217.195.77.0/24 20632 -217.195.78.0/23 20632 -217.195.80.0/22 20632 -217.195.84.0/23 20632 -217.195.86.0/24 24913 -217.195.87.0/24 20632 -217.195.88.0/21 20632 -217.195.96.0/24 20690 -217.195.100.0/23 20690 -217.195.108.0/22 203131 -217.195.112.0/20 8315 -217.195.128.0/20 6799 -217.195.144.0/24 9558 -217.195.145.0/24 43027 -217.195.152.0/22 395092 -217.195.156.0/22 3209 -217.195.160.0/20 29321 -217.195.176.0/20 31027 -217.195.192.0/22 20649 -217.195.196.0/23 20649 -217.195.198.0/24 20649 -217.195.199.0/24 42910 -217.195.200.0/21 20649 -217.195.208.0/22 34038 -217.195.212.0/23 3216 -217.195.214.0/23 34038 -217.195.216.0/23 3216 -217.195.218.0/24 34038 -217.195.219.0/24 3216 -217.195.220.0/22 34038 -217.195.224.0/19 4589 -217.196.0.0/20 20652 -217.196.16.0/20 35104 -217.196.32.0/20 34106 -217.196.48.0/20 29300 -217.196.64.0/19 20704 -217.196.96.0/20 39493 -217.196.112.0/20 48474 -217.196.128.0/23 48500 -217.196.132.0/23 202803 -217.196.134.0/23 48500 -217.196.138.0/23 198380 -217.196.140.0/23 48500 -217.196.142.0/23 30848 -217.196.144.0/20 5404 -217.196.160.0/20 16223 -217.196.176.0/21 24951 -217.196.208.0/20 34080 -217.196.224.0/19 39326 -217.197.0.0/20 5495 -217.197.16.0/23 51487 -217.197.18.0/24 51487 -217.197.20.0/24 51487 -217.197.22.0/23 51487 -217.197.24.0/21 51487 -217.197.32.0/20 34080 -217.197.48.0/22 3246 -217.197.56.0/21 3301 -217.197.64.0/20 43939 -217.197.80.0/20 29670 -217.197.100.0/23 6661 -217.197.112.0/20 20655 -217.197.128.0/21 15576 -217.197.136.0/21 42560 -217.197.144.0/20 34093 -217.197.160.0/22 9009 -217.197.164.0/22 50304 -217.197.172.0/22 12695 -217.197.176.0/20 20845 -217.197.192.0/23 197460 -217.197.194.0/23 20985 -217.197.196.0/22 20985 -217.197.200.0/21 20985 -217.197.208.0/20 34146 -217.197.224.0/20 24739 -217.197.240.0/20 34139 -217.198.0.0/21 20720 -217.198.8.0/24 20720 -217.198.9.0/24 203972 -217.198.10.0/23 20720 -217.198.12.0/23 20720 -217.198.14.0/23 201757 -217.198.16.0/20 34141 -217.198.48.0/20 8356 -217.198.64.0/20 48220 -217.198.80.0/20 20919 -217.198.96.0/20 13768 -217.198.112.0/20 34222 -217.198.128.0/20 34309 -217.198.144.0/21 34234 -217.198.152.0/22 34234 -217.198.156.0/23 34234 -217.198.159.0/24 34234 -217.198.160.0/20 20793 -217.198.176.0/20 34217 -217.198.192.0/20 197077 -217.198.208.0/20 43557 -217.198.224.0/20 20910 -217.198.240.0/20 2857 -217.199.0.0/19 20811 -217.199.32.0/19 2119 -217.199.64.0/20 8881 -217.199.80.0/20 25447 -217.199.96.0/19 20910 -217.199.128.0/20 21196 -217.199.144.0/20 9129 -217.199.160.0/19 20738 -217.199.192.0/20 25394 -217.199.208.0/24 208107 -217.199.209.0/24 50889 -217.199.210.0/24 31430 -217.199.211.0/24 9210 -217.199.212.0/24 34221 -217.199.214.0/23 31430 -217.199.216.0/24 31430 -217.199.218.0/24 50739 -217.199.219.0/24 209406 -217.199.221.0/24 61400 -217.199.222.0/24 50889 -217.199.224.0/20 25299 -217.199.240.0/20 34322 -217.200.0.0/14 16232 -217.204.0.0/14 4589 -217.208.0.0/14 3301 -217.212.0.0/17 3301 -217.212.128.0/18 3301 -217.212.192.0/19 3301 -217.212.224.0/19 1299 -217.213.0.0/16 3301 -217.214.0.0/15 3301 -217.216.0.0/18 12357 -217.216.64.0/20 6739 -217.216.80.0/21 6739 -217.216.88.0/21 12357 -217.216.96.0/20 12357 -217.216.112.0/21 12357 -217.216.120.0/21 6739 -217.216.128.0/18 6739 -217.216.192.0/21 6739 -217.216.200.0/21 12357 -217.216.208.0/20 6739 -217.216.224.0/19 6739 -217.217.0.0/19 12357 -217.217.32.0/19 6739 -217.217.64.0/19 6739 -217.217.96.0/20 6739 -217.217.112.0/21 6739 -217.217.120.0/23 6739 -217.217.122.0/23 12357 -217.217.124.0/22 6739 -217.217.128.0/19 12357 -217.217.160.0/22 12357 -217.217.164.0/22 6739 -217.217.168.0/21 6739 -217.217.176.0/20 6739 -217.217.192.0/19 6739 -217.217.224.0/20 6739 -217.217.240.0/21 6739 -217.217.248.0/21 12357 -217.218.0.0/18 12880 -217.218.64.0/23 12880 -217.218.66.0/24 12880 -217.218.67.0/24 49666 -217.218.68.0/22 12880 -217.218.72.0/21 12880 -217.218.80.0/20 12880 -217.218.96.0/20 12880 -217.218.112.0/21 12880 -217.218.120.0/22 12880 -217.218.124.0/23 12880 -217.218.126.0/24 12880 -217.218.127.0/24 49666 -217.218.128.0/20 12880 -217.218.144.0/21 12880 -217.218.152.0/23 12880 -217.218.154.0/24 12880 -217.218.155.0/24 49666 -217.218.156.0/22 12880 -217.218.160.0/19 12880 -217.218.192.0/20 12880 -217.218.208.0/20 58224 -217.218.224.0/19 58224 -217.219.0.0/17 58224 -217.219.128.0/18 58224 -217.219.192.0/19 58224 -217.219.224.0/21 58224 -217.219.232.0/21 12880 -217.219.240.0/22 12880 -217.219.244.0/22 58224 -217.219.248.0/22 58224 -217.219.252.0/23 58224 -217.219.254.0/24 58224 -217.219.255.0/24 12880 -217.220.0.0/15 8968 -217.222.0.0/15 20959 -217.224.0.0/11 3320 -218.0.0.0/19 4134 -218.0.32.0/20 4134 -218.0.48.0/20 58461 -218.0.64.0/18 4134 -218.0.128.0/17 4134 -218.1.0.0/16 4812 -218.2.0.0/16 4134 -218.3.0.0/17 4134 -218.3.128.0/18 4134 -218.3.192.0/19 4134 -218.3.224.0/22 4134 -218.3.228.0/24 4809 -218.3.229.0/24 4134 -218.3.230.0/23 4134 -218.3.232.0/21 4134 -218.3.240.0/20 4134 -218.4.0.0/19 4134 -218.4.32.0/21 4134 -218.4.40.0/22 4134 -218.4.44.0/23 4134 -218.4.46.0/24 4809 -218.4.47.0/24 4134 -218.4.48.0/20 4134 -218.4.64.0/18 4134 -218.4.128.0/20 4134 -218.4.144.0/21 4134 -218.4.152.0/23 4134 -218.4.154.0/24 4134 -218.4.155.0/24 23650 -218.4.156.0/22 4134 -218.4.160.0/19 4134 -218.4.192.0/18 4134 -218.5.0.0/18 4134 -218.5.64.0/21 4134 -218.5.72.0/21 133775 -218.5.80.0/20 4134 -218.5.96.0/19 4134 -218.5.128.0/19 4134 -218.5.160.0/20 4134 -218.5.176.0/21 4134 -218.5.184.0/24 133775 -218.5.185.0/24 4134 -218.5.186.0/23 4134 -218.5.188.0/22 4134 -218.5.192.0/18 4134 -218.6.0.0/17 4134 -218.6.128.0/19 4134 -218.6.160.0/21 4134 -218.6.168.0/21 38283 -218.6.176.0/20 4134 -218.6.192.0/22 4134 -218.6.196.0/23 38283 -218.6.198.0/24 38283 -218.6.199.0/24 4134 -218.6.200.0/21 4134 -218.6.208.0/20 4134 -218.6.224.0/19 4134 -218.7.0.0/16 4837 -218.8.0.0/14 4837 -218.12.0.0/16 4837 -218.13.0.0/18 4134 -218.13.64.0/19 4134 -218.13.96.0/21 4134 -218.13.104.0/21 4813 -218.13.112.0/22 4813 -218.13.116.0/23 4134 -218.13.118.0/23 4813 -218.13.120.0/21 4813 -218.13.128.0/17 4134 -218.14.0.0/16 4134 -218.15.0.0/18 4134 -218.15.64.0/19 4134 -218.15.96.0/20 4134 -218.15.112.0/22 58543 -218.15.116.0/22 4134 -218.15.120.0/21 4134 -218.15.128.0/17 4134 -218.16.0.0/18 4134 -218.16.64.0/19 4134 -218.16.96.0/20 4134 -218.16.112.0/22 4134 -218.16.116.0/24 4134 -218.16.117.0/24 134763 -218.16.118.0/23 134763 -218.16.120.0/21 134763 -218.16.128.0/18 4134 -218.16.192.0/20 4134 -218.16.208.0/21 4134 -218.16.216.0/22 4134 -218.16.220.0/23 4134 -218.16.222.0/24 4134 -218.16.223.0/24 58543 -218.16.224.0/22 58543 -218.16.228.0/23 58543 -218.16.230.0/23 4134 -218.16.232.0/21 4134 -218.16.240.0/20 4134 -218.17.0.0/16 4134 -218.18.0.0/18 4134 -218.18.64.0/20 4134 -218.18.80.0/21 4134 -218.18.88.0/22 4134 -218.18.92.0/23 4134 -218.18.94.0/24 4134 -218.18.95.0/24 4816 -218.18.96.0/19 4134 -218.18.128.0/17 4134 -218.19.0.0/16 4134 -218.20.0.0/16 4134 -218.21.0.0/18 4134 -218.21.64.0/19 4134 -218.21.96.0/21 4134 -218.21.104.0/21 134419 -218.21.112.0/21 134419 -218.21.120.0/21 4134 -218.21.128.0/18 4837 -218.21.192.0/19 4837 -218.21.224.0/20 4837 -218.21.240.0/21 4837 -218.21.248.0/22 139007 -218.21.252.0/23 139007 -218.21.254.0/24 139007 -218.21.255.0/24 4837 -218.22.0.0/15 4134 -218.24.0.0/14 4837 -218.28.0.0/15 4837 -218.30.0.0/21 4134 -218.30.8.0/22 4134 -218.30.12.0/22 4835 -218.30.16.0/23 4134 -218.30.18.0/24 4134 -218.30.19.0/24 4835 -218.30.20.0/22 4835 -218.30.24.0/24 4835 -218.30.25.0/24 23724 -218.30.26.0/23 23724 -218.30.28.0/23 23724 -218.30.30.0/23 4134 -218.30.32.0/24 36678 -218.30.33.0/24 4134 -218.30.34.0/24 4134 -218.30.35.0/24 36678 -218.30.36.0/23 4134 -218.30.38.0/24 4134 -218.30.39.0/24 4809 -218.30.40.0/24 4134 -218.30.41.0/24 36678 -218.30.42.0/24 4134 -218.30.43.0/24 36678 -218.30.44.0/24 36678 -218.30.45.0/24 4134 -218.30.46.0/23 4134 -218.30.48.0/21 4134 -218.30.56.0/22 4134 -218.30.60.0/23 4134 -218.30.62.0/23 4809 -218.30.64.0/23 4134 -218.30.66.0/24 4134 -218.30.67.0/24 4835 -218.30.68.0/22 4835 -218.30.72.0/21 4835 -218.30.80.0/24 4134 -218.30.81.0/24 4835 -218.30.82.0/23 4835 -218.30.84.0/24 4134 -218.30.85.0/24 4835 -218.30.86.0/23 4134 -218.30.88.0/22 4835 -218.30.92.0/22 4134 -218.30.96.0/19 23724 -218.30.128.0/23 4134 -218.30.130.0/24 4134 -218.30.131.0/24 58543 -218.30.132.0/24 4812 -218.30.133.0/24 4134 -218.30.134.0/23 4134 -218.30.136.0/21 4134 -218.30.144.0/20 4134 -218.30.160.0/22 4134 -218.30.164.0/24 4134 -218.30.165.0/24 4809 -218.30.166.0/23 4134 -218.30.168.0/23 4134 -218.30.170.0/24 17799 -218.30.171.0/24 4134 -218.30.172.0/23 4134 -218.30.174.0/24 4134 -218.30.175.0/24 17638 -218.30.176.0/23 4134 -218.30.178.0/24 4134 -218.30.179.0/24 4847 -218.30.180.0/23 4847 -218.30.182.0/24 4847 -218.30.183.0/24 4134 -218.30.184.0/22 4134 -218.30.188.0/24 4134 -218.30.189.0/24 17638 -218.30.190.0/23 4134 -218.30.192.0/20 4134 -218.30.208.0/21 4134 -218.30.216.0/22 4134 -218.30.220.0/23 4134 -218.30.222.0/24 4134 -218.30.223.0/24 4808 -218.30.224.0/20 4134 -218.30.240.0/21 4134 -218.30.248.0/22 4134 -218.30.252.0/23 4134 -218.30.254.0/24 4808 -218.30.255.0/24 4134 -218.31.0.0/18 4134 -218.31.64.0/19 4134 -218.31.96.0/20 4134 -218.31.112.0/22 4134 -218.31.116.0/23 4134 -218.31.118.0/24 137694 -218.31.119.0/24 4134 -218.31.120.0/21 4134 -218.31.128.0/20 4134 -218.31.144.0/22 4134 -218.31.148.0/24 137694 -218.31.149.0/24 4134 -218.31.150.0/23 4134 -218.31.152.0/21 4134 -218.31.160.0/19 4134 -218.31.192.0/19 4134 -218.31.224.0/22 4134 -218.31.228.0/23 4134 -218.31.230.0/24 137694 -218.31.231.0/24 4134 -218.31.232.0/21 4134 -218.31.240.0/21 4134 -218.31.248.0/24 137694 -218.31.249.0/24 4134 -218.31.250.0/23 4134 -218.31.252.0/22 4134 -218.32.0.0/16 9919 -218.33.128.0/17 17676 -218.34.0.0/15 7482 -218.36.0.0/17 38661 -218.36.128.0/17 18302 -218.37.0.0/17 17864 -218.37.192.0/18 17864 -218.38.0.0/18 9318 -218.38.64.0/21 9318 -218.38.72.0/24 9318 -218.38.73.0/24 10069 -218.38.74.0/23 9318 -218.38.76.0/22 9318 -218.38.80.0/23 9318 -218.38.82.0/24 38388 -218.38.83.0/24 9318 -218.38.84.0/22 9318 -218.38.88.0/21 9318 -218.38.96.0/19 9318 -218.38.128.0/23 9318 -218.38.130.0/24 9574 -218.38.131.0/24 9318 -218.38.132.0/22 9318 -218.38.136.0/21 9318 -218.38.144.0/24 4766 -218.38.145.0/24 9318 -218.38.146.0/23 9318 -218.38.148.0/22 9318 -218.38.152.0/21 9318 -218.38.160.0/19 9318 -218.38.192.0/19 9318 -218.38.224.0/21 9318 -218.38.232.0/23 9318 -218.38.234.0/23 38404 -218.38.236.0/22 9318 -218.38.240.0/22 17845 -218.38.244.0/23 38391 -218.38.246.0/23 9318 -218.38.248.0/21 9318 -218.39.0.0/16 9318 -218.40.0.0/20 17693 -218.40.16.0/20 17691 -218.40.32.0/20 17699 -218.40.48.0/20 2514 -218.40.64.0/20 17698 -218.40.80.0/20 17682 -218.40.96.0/20 17958 -218.40.112.0/20 7522 -218.40.128.0/20 59108 -218.40.144.0/20 17675 -218.40.160.0/19 9621 -218.40.192.0/20 4725 -218.40.208.0/20 10010 -218.40.224.0/20 7679 -218.40.240.0/20 17936 -218.41.0.0/16 2527 -218.42.0.0/17 2518 -218.42.128.0/20 9998 -218.42.144.0/20 9600 -218.42.160.0/19 2497 -218.42.192.0/18 17511 -218.43.0.0/16 4713 -218.44.0.0/16 4713 -218.45.0.0/20 17940 -218.45.16.0/20 17931 -218.45.32.0/20 10019 -218.45.48.0/20 17678 -218.45.64.0/19 17676 -218.45.96.0/20 17511 -218.45.112.0/20 9378 -218.45.144.0/20 9351 -218.45.160.0/19 4685 -218.45.192.0/20 9365 -218.45.208.0/20 17676 -218.45.224.0/19 17676 -218.46.0.0/16 4725 -218.47.0.0/16 4713 -218.48.0.0/17 9318 -218.48.128.0/19 9318 -218.48.160.0/24 9318 -218.48.161.0/24 23579 -218.48.162.0/23 23579 -218.48.164.0/22 9318 -218.48.168.0/21 9318 -218.48.176.0/20 9318 -218.48.192.0/18 9318 -218.49.0.0/16 9318 -218.50.0.0/17 9318 -218.50.128.0/18 9318 -218.50.192.0/21 9318 -218.50.200.0/23 55632 -218.50.202.0/23 9318 -218.50.204.0/22 9318 -218.50.208.0/20 9318 -218.50.224.0/19 9318 -218.51.0.0/16 9318 -218.52.0.0/16 9318 -218.53.0.0/19 9318 -218.53.32.0/20 9318 -218.53.48.0/22 9318 -218.53.52.0/23 9318 -218.53.54.0/24 4793 -218.53.55.0/24 9318 -218.53.56.0/21 9318 -218.53.64.0/18 9318 -218.53.128.0/17 9318 -218.54.0.0/17 9318 -218.54.128.0/19 9318 -218.54.160.0/20 9318 -218.54.176.0/23 9318 -218.54.178.0/24 9318 -218.54.179.0/24 38410 -218.54.180.0/22 9318 -218.54.184.0/21 9318 -218.54.192.0/18 9318 -218.55.0.0/23 9318 -218.55.2.0/24 10185 -218.55.3.0/24 9318 -218.55.4.0/22 9318 -218.55.8.0/21 9318 -218.55.16.0/20 9318 -218.55.32.0/19 9318 -218.55.64.0/18 9318 -218.55.128.0/20 9318 -218.55.144.0/21 9318 -218.55.152.0/22 9318 -218.55.156.0/23 9318 -218.55.158.0/24 9318 -218.55.159.0/24 38409 -218.55.160.0/21 9318 -218.55.168.0/22 9318 -218.55.172.0/23 9318 -218.55.174.0/24 38417 -218.55.175.0/24 9318 -218.55.176.0/20 9318 -218.55.192.0/19 9318 -218.55.224.0/20 9318 -218.55.240.0/22 9318 -218.55.244.0/23 9318 -218.55.246.0/24 10196 -218.55.247.0/24 9318 -218.55.248.0/21 9318 -218.56.0.0/14 4837 -218.60.0.0/15 4837 -218.62.0.0/17 4837 -218.62.128.0/17 4134 -218.63.0.0/21 4134 -218.63.8.0/23 134766 -218.63.10.0/23 4134 -218.63.12.0/22 4134 -218.63.16.0/20 4134 -218.63.32.0/19 4134 -218.63.64.0/18 4134 -218.63.128.0/17 4134 -218.64.0.0/16 4134 -218.65.0.0/17 4134 -218.65.128.0/23 4134 -218.65.130.0/24 4134 -218.65.131.0/24 137693 -218.65.132.0/24 134419 -218.65.133.0/24 4134 -218.65.134.0/24 137693 -218.65.135.0/24 4134 -218.65.136.0/21 4134 -218.65.144.0/21 4134 -218.65.152.0/24 134419 -218.65.153.0/24 4134 -218.65.154.0/23 4134 -218.65.156.0/22 4134 -218.65.160.0/21 4134 -218.65.168.0/24 134419 -218.65.169.0/24 4134 -218.65.170.0/24 4134 -218.65.171.0/24 137693 -218.65.172.0/22 4134 -218.65.176.0/22 137693 -218.65.180.0/22 4134 -218.65.184.0/21 4134 -218.65.192.0/21 134419 -218.65.200.0/21 4134 -218.65.208.0/20 4134 -218.65.224.0/21 134419 -218.65.232.0/21 4134 -218.65.240.0/20 4134 -218.66.0.0/18 4134 -218.66.64.0/19 4134 -218.66.96.0/22 4134 -218.66.100.0/22 133774 -218.66.104.0/24 133774 -218.66.105.0/24 4134 -218.66.106.0/23 4134 -218.66.108.0/23 4134 -218.66.110.0/24 4134 -218.66.111.0/24 133774 -218.66.112.0/20 4134 -218.66.128.0/17 4134 -218.67.0.0/17 4134 -218.67.128.0/17 4837 -218.68.0.0/15 4837 -218.70.0.0/16 4134 -218.71.0.0/17 4134 -218.71.128.0/21 4134 -218.71.136.0/22 4134 -218.71.140.0/23 4134 -218.71.142.0/24 4134 -218.71.143.0/24 136188 -218.71.144.0/20 4134 -218.71.160.0/19 4134 -218.71.192.0/18 4134 -218.72.0.0/14 4134 -218.76.0.0/17 4134 -218.76.128.0/18 4134 -218.76.192.0/19 4134 -218.76.224.0/20 4134 -218.76.240.0/21 63835 -218.76.248.0/21 4134 -218.77.0.0/16 4134 -218.78.0.0/15 4812 -218.80.0.0/14 4812 -218.84.0.0/17 4134 -218.84.128.0/18 4134 -218.84.192.0/19 4134 -218.84.224.0/20 4134 -218.84.240.0/23 137694 -218.84.242.0/23 4134 -218.84.244.0/22 4134 -218.84.248.0/21 4134 -218.85.0.0/17 4134 -218.85.128.0/22 4134 -218.85.132.0/22 133775 -218.85.136.0/22 133775 -218.85.140.0/22 4134 -218.85.144.0/20 4134 -218.85.160.0/19 4134 -218.85.192.0/18 4134 -218.86.0.0/15 4134 -218.88.0.0/16 4134 -218.89.0.0/18 4134 -218.89.64.0/24 4134 -218.89.65.0/24 38283 -218.89.66.0/23 4134 -218.89.68.0/22 4134 -218.89.72.0/22 4134 -218.89.76.0/22 38283 -218.89.80.0/20 4134 -218.89.96.0/19 4134 -218.89.128.0/21 4134 -218.89.136.0/24 4134 -218.89.137.0/24 38283 -218.89.138.0/23 4134 -218.89.140.0/22 4134 -218.89.144.0/20 4134 -218.89.160.0/22 4134 -218.89.164.0/23 4134 -218.89.166.0/23 38283 -218.89.168.0/23 38283 -218.89.170.0/24 38283 -218.89.171.0/24 4134 -218.89.172.0/22 4134 -218.89.176.0/20 4134 -218.89.192.0/18 4134 -218.90.0.0/18 4134 -218.90.64.0/19 4134 -218.90.96.0/20 4134 -218.90.112.0/21 4134 -218.90.120.0/22 23650 -218.90.124.0/22 4134 -218.90.128.0/18 4134 -218.90.192.0/19 4134 -218.90.224.0/21 4134 -218.90.232.0/24 23650 -218.90.233.0/24 4134 -218.90.234.0/23 4134 -218.90.236.0/22 4134 -218.90.240.0/20 4134 -218.91.0.0/17 4134 -218.91.128.0/18 4134 -218.91.192.0/20 4134 -218.91.208.0/21 4134 -218.91.216.0/22 131325 -218.91.220.0/23 131325 -218.91.222.0/24 4134 -218.91.223.0/24 131325 -218.91.224.0/23 131325 -218.91.226.0/23 4134 -218.91.228.0/23 4134 -218.91.230.0/24 131325 -218.91.231.0/24 4134 -218.91.232.0/22 4134 -218.91.236.0/24 4134 -218.91.237.0/24 131325 -218.91.238.0/24 4134 -218.91.239.0/24 131325 -218.91.240.0/20 4134 -218.92.0.0/16 4134 -218.93.0.0/21 4134 -218.93.8.0/24 4134 -218.93.9.0/24 23650 -218.93.10.0/23 4134 -218.93.12.0/22 4134 -218.93.16.0/20 4134 -218.93.32.0/19 4134 -218.93.64.0/19 4134 -218.93.96.0/20 4134 -218.93.112.0/21 4134 -218.93.120.0/22 4134 -218.93.124.0/23 4134 -218.93.126.0/23 23650 -218.93.128.0/17 4134 -218.94.0.0/18 4134 -218.94.64.0/19 4134 -218.94.96.0/20 4134 -218.94.112.0/22 4134 -218.94.116.0/24 4134 -218.94.117.0/24 4809 -218.94.118.0/23 4134 -218.94.120.0/21 4134 -218.94.128.0/17 4134 -218.95.0.0/19 4134 -218.95.32.0/22 4134 -218.95.36.0/24 4134 -218.95.37.0/24 139201 -218.95.38.0/23 139201 -218.95.40.0/21 4134 -218.95.48.0/20 4134 -218.95.64.0/18 4134 -218.95.128.0/17 4134 -218.96.0.0/24 10212 -218.96.241.0/24 10212 -218.97.0.0/23 4134 -218.97.2.0/23 10212 -218.97.4.0/22 10212 -218.97.8.0/21 10212 -218.97.16.0/20 10212 -218.97.32.0/19 10212 -218.97.64.0/19 10212 -218.97.96.0/20 10212 -218.97.112.0/21 10212 -218.97.120.0/22 10212 -218.97.124.0/22 4812 -218.97.160.0/19 9939 -218.97.192.0/19 17968 -218.97.224.0/20 9391 -218.97.240.0/24 4847 -218.97.241.0/24 23844 -218.97.242.0/23 4847 -218.97.244.0/22 4847 -218.97.248.0/22 4847 -218.97.252.0/23 4847 -218.97.254.0/24 4847 -218.97.255.0/24 59050 -218.98.0.0/18 4837 -218.98.96.0/21 133775 -218.98.104.0/22 133775 -218.98.108.0/23 133775 -218.98.111.0/24 21859 -218.98.112.0/20 133775 -218.99.0.0/19 17966 -218.100.1.0/24 10022 -218.100.15.0/24 24229 -218.100.18.0/24 9930 -218.100.37.0/24 23876 -218.100.38.0/24 37930 -218.100.43.0/24 10084 -218.100.66.0/24 45642 -218.100.67.0/24 45680 -218.100.71.0/24 55559 -218.100.75.0/24 55822 -218.100.77.0/24 55943 -218.100.84.0/24 56301 -218.100.85.0/24 9541 -218.100.87.0/24 17819 -218.100.88.0/21 4809 -218.100.208.0/24 133955 -218.100.212.0/24 133955 -218.101.0.0/23 4768 -218.101.2.0/23 18400 -218.101.4.0/22 4768 -218.101.8.0/21 4768 -218.101.16.0/20 4768 -218.101.32.0/19 4768 -218.101.64.0/18 9500 -218.101.128.0/17 17864 -218.102.0.0/16 4760 -218.103.0.0/19 4515 -218.103.32.0/21 4760 -218.103.40.0/21 4515 -218.103.48.0/20 4515 -218.103.64.0/19 4515 -218.103.96.0/20 4515 -218.103.112.0/20 4760 -218.103.128.0/17 4760 -218.104.0.0/18 9929 -218.104.64.0/20 4837 -218.104.80.0/20 9929 -218.104.96.0/20 4837 -218.104.112.0/20 9929 -218.104.128.0/19 4837 -218.104.160.0/19 17816 -218.104.192.0/21 17816 -218.104.200.0/21 9929 -218.104.208.0/20 9929 -218.104.224.0/19 4837 -218.105.0.0/16 9929 -218.106.0.0/18 9929 -218.106.64.0/20 9929 -218.106.80.0/20 4837 -218.106.96.0/22 4837 -218.106.100.0/22 9929 -218.106.104.0/21 9929 -218.106.112.0/20 9929 -218.106.128.0/21 17816 -218.106.136.0/21 9929 -218.106.144.0/20 4837 -218.106.160.0/19 4808 -218.106.192.0/18 9929 -218.107.0.0/18 17622 -218.107.128.0/18 4808 -218.107.192.0/19 4837 -218.107.224.0/19 9929 -218.108.0.0/15 24139 -218.110.0.0/16 2527 -218.111.0.0/16 4788 -218.112.0.0/12 17676 -218.128.0.0/12 17676 -218.144.0.0/20 4766 -218.144.16.0/21 4766 -218.144.24.0/23 4766 -218.144.26.0/24 10182 -218.144.27.0/24 4766 -218.144.28.0/22 4766 -218.144.32.0/19 4766 -218.144.64.0/18 4766 -218.144.128.0/21 4766 -218.144.136.0/22 4766 -218.144.140.0/23 4766 -218.144.142.0/24 10065 -218.144.143.0/24 4766 -218.144.144.0/20 4766 -218.144.160.0/19 4766 -218.144.192.0/20 4766 -218.144.208.0/21 4766 -218.144.216.0/22 4766 -218.144.220.0/24 4766 -218.144.221.0/24 55615 -218.144.222.0/23 4766 -218.144.224.0/19 4766 -218.145.0.0/19 4766 -218.145.32.0/20 4766 -218.145.48.0/21 4766 -218.145.56.0/23 4766 -218.145.58.0/24 55593 -218.145.59.0/24 4766 -218.145.60.0/22 4766 -218.145.64.0/18 4766 -218.145.128.0/19 4766 -218.145.160.0/20 4766 -218.145.176.0/21 4766 -218.145.184.0/22 4766 -218.145.188.0/23 4766 -218.145.190.0/24 38427 -218.145.191.0/24 4766 -218.145.192.0/18 4766 -218.146.0.0/19 4766 -218.146.32.0/24 9684 -218.146.33.0/24 4766 -218.146.34.0/24 9684 -218.146.35.0/24 4766 -218.146.36.0/22 4766 -218.146.40.0/21 4766 -218.146.48.0/20 4766 -218.146.64.0/19 4766 -218.146.96.0/22 4766 -218.146.100.0/24 4766 -218.146.101.0/24 55592 -218.146.102.0/23 4766 -218.146.104.0/21 4766 -218.146.112.0/20 4766 -218.146.128.0/20 4766 -218.146.144.0/23 9708 -218.146.146.0/24 9708 -218.146.147.0/24 4766 -218.146.148.0/22 4766 -218.146.152.0/21 4766 -218.146.160.0/19 4766 -218.146.192.0/18 4766 -218.147.0.0/19 4766 -218.147.32.0/22 4766 -218.147.36.0/23 4766 -218.147.38.0/24 18324 -218.147.39.0/24 4766 -218.147.40.0/23 55618 -218.147.42.0/23 4766 -218.147.44.0/22 4766 -218.147.48.0/24 4766 -218.147.49.0/24 38671 -218.147.50.0/23 38671 -218.147.52.0/22 4766 -218.147.56.0/21 4766 -218.147.64.0/20 4766 -218.147.80.0/21 4766 -218.147.88.0/24 9843 -218.147.89.0/24 4766 -218.147.90.0/23 4766 -218.147.92.0/22 4766 -218.147.96.0/19 4766 -218.147.128.0/24 4766 -218.147.129.0/24 38411 -218.147.130.0/23 4766 -218.147.132.0/22 4766 -218.147.136.0/21 4766 -218.147.144.0/22 4766 -218.147.148.0/24 4766 -218.147.149.0/24 23566 -218.147.150.0/23 4766 -218.147.152.0/21 4766 -218.147.160.0/19 4766 -218.147.192.0/18 4766 -218.148.0.0/20 4766 -218.148.16.0/22 4766 -218.148.20.0/23 4766 -218.148.22.0/23 46009 -218.148.24.0/21 4766 -218.148.32.0/19 4766 -218.148.64.0/19 4766 -218.148.96.0/20 4766 -218.148.112.0/21 4766 -218.148.120.0/24 4766 -218.148.121.0/24 38110 -218.148.122.0/23 4766 -218.148.124.0/22 4766 -218.148.128.0/17 4766 -218.149.0.0/17 4766 -218.149.128.0/23 4766 -218.149.130.0/24 4766 -218.149.131.0/24 38135 -218.149.132.0/23 38135 -218.149.134.0/23 4766 -218.149.136.0/21 4766 -218.149.144.0/20 4766 -218.149.160.0/22 4766 -218.149.164.0/23 4766 -218.149.166.0/24 38674 -218.149.167.0/24 4766 -218.149.168.0/21 4766 -218.149.176.0/20 4766 -218.149.192.0/18 4766 -218.150.0.0/17 4766 -218.150.128.0/19 4766 -218.150.160.0/20 4766 -218.150.176.0/22 4766 -218.150.180.0/24 4766 -218.150.181.0/24 9970 -218.150.182.0/23 9970 -218.150.184.0/21 4766 -218.150.192.0/18 4766 -218.151.0.0/21 4766 -218.151.8.0/23 4766 -218.151.10.0/23 9867 -218.151.12.0/22 4766 -218.151.16.0/21 4766 -218.151.24.0/22 4766 -218.151.28.0/23 4766 -218.151.30.0/24 4766 -218.151.31.0/24 9772 -218.151.32.0/19 4766 -218.151.64.0/19 4766 -218.151.96.0/20 4766 -218.151.112.0/23 4766 -218.151.114.0/23 9859 -218.151.116.0/24 9859 -218.151.117.0/24 4766 -218.151.118.0/23 4766 -218.151.120.0/21 4766 -218.151.128.0/22 4766 -218.151.132.0/23 4766 -218.151.134.0/23 4793 -218.151.136.0/21 4766 -218.151.144.0/24 4766 -218.151.145.0/24 4793 -218.151.146.0/23 4793 -218.151.148.0/22 4766 -218.151.152.0/21 4766 -218.151.160.0/20 4766 -218.151.176.0/21 4766 -218.151.184.0/23 4766 -218.151.186.0/24 4793 -218.151.187.0/24 4766 -218.151.188.0/22 4766 -218.151.192.0/18 4766 -218.152.0.0/20 4766 -218.152.16.0/21 4766 -218.152.24.0/22 4766 -218.152.28.0/22 4790 -218.152.32.0/19 4766 -218.152.64.0/18 4766 -218.152.128.0/19 4766 -218.152.160.0/20 4766 -218.152.176.0/21 4766 -218.152.184.0/22 4766 -218.152.188.0/24 4766 -218.152.189.0/24 9776 -218.152.190.0/23 4766 -218.152.192.0/24 4766 -218.152.193.0/24 9647 -218.152.194.0/23 4766 -218.152.196.0/22 4766 -218.152.200.0/21 4766 -218.152.208.0/20 4766 -218.152.224.0/19 4766 -218.153.0.0/17 4766 -218.153.128.0/24 17859 -218.153.129.0/24 4766 -218.153.130.0/23 4766 -218.153.132.0/22 4766 -218.153.136.0/21 4766 -218.153.144.0/20 4766 -218.153.160.0/19 4766 -218.153.192.0/19 4766 -218.153.224.0/23 4766 -218.153.226.0/24 17616 -218.153.227.0/24 4766 -218.153.228.0/22 4766 -218.153.232.0/21 4766 -218.153.240.0/20 4766 -218.154.0.0/17 4766 -218.154.128.0/20 4766 -218.154.144.0/22 18023 -218.154.148.0/22 4766 -218.154.152.0/21 4766 -218.154.160.0/19 4766 -218.154.192.0/18 4766 -218.155.0.0/20 4766 -218.155.16.0/21 4766 -218.155.24.0/22 4766 -218.155.28.0/24 4766 -218.155.29.0/24 38394 -218.155.30.0/23 4766 -218.155.32.0/19 4766 -218.155.64.0/18 4766 -218.155.128.0/21 4766 -218.155.136.0/22 4766 -218.155.140.0/23 4766 -218.155.142.0/24 4766 -218.155.143.0/24 38395 -218.155.144.0/20 4766 -218.155.160.0/20 4766 -218.155.176.0/21 4766 -218.155.184.0/23 4766 -218.155.186.0/24 4766 -218.155.187.0/24 38399 -218.155.188.0/22 4766 -218.155.192.0/19 4766 -218.155.224.0/21 4766 -218.155.232.0/22 4766 -218.155.236.0/24 4766 -218.155.237.0/24 38412 -218.155.238.0/23 4766 -218.155.240.0/20 4766 -218.156.0.0/17 4766 -218.156.128.0/19 4766 -218.156.160.0/20 4766 -218.156.176.0/22 4766 -218.156.180.0/23 4766 -218.156.182.0/24 4766 -218.156.183.0/24 38390 -218.156.184.0/21 4766 -218.156.192.0/23 4766 -218.156.194.0/24 38431 -218.156.195.0/24 4766 -218.156.196.0/22 4766 -218.156.200.0/21 4766 -218.156.208.0/20 4766 -218.156.224.0/19 4766 -218.157.0.0/17 4766 -218.157.128.0/18 4766 -218.157.192.0/19 4766 -218.157.224.0/24 38124 -218.157.225.0/24 4766 -218.157.226.0/23 4766 -218.157.228.0/22 4766 -218.157.232.0/21 4766 -218.157.240.0/20 4766 -218.158.0.0/16 4766 -218.159.0.0/18 4766 -218.159.64.0/22 4766 -218.159.68.0/23 23743 -218.159.70.0/23 4766 -218.159.72.0/21 4766 -218.159.80.0/20 4766 -218.159.96.0/19 4766 -218.159.128.0/17 4766 -218.160.0.0/12 3462 -218.176.0.0/13 17676 -218.184.0.0/16 7482 -218.185.0.0/17 10223 -218.185.128.0/18 17676 -218.185.224.0/21 37979 -218.185.232.0/21 38790 -218.185.240.0/21 4809 -218.186.0.0/17 10091 -218.186.128.0/18 55430 -218.186.192.0/18 10091 -218.187.0.0/16 7482 -218.188.0.0/18 9304 -218.188.64.0/21 9304 -218.188.72.0/22 9304 -218.188.76.0/23 9304 -218.188.78.0/24 4655 -218.188.79.0/24 9304 -218.188.80.0/24 24462 -218.188.81.0/24 9304 -218.188.82.0/23 9304 -218.188.84.0/23 9304 -218.188.86.0/24 9304 -218.188.87.0/24 17487 -218.188.88.0/22 9304 -218.188.92.0/24 9304 -218.188.93.0/24 10082 -218.188.94.0/23 9304 -218.188.96.0/22 55355 -218.188.100.0/23 9304 -218.188.102.0/24 9304 -218.188.103.0/24 38291 -218.188.104.0/21 9304 -218.188.112.0/20 9304 -218.188.128.0/17 9304 -218.189.0.0/21 9304 -218.189.8.0/23 9304 -218.189.10.0/24 55355 -218.189.11.0/24 9304 -218.189.12.0/22 9304 -218.189.16.0/20 9304 -218.189.32.0/19 9304 -218.189.64.0/23 10032 -218.189.66.0/24 9304 -218.189.67.0/24 10032 -218.189.68.0/22 10032 -218.189.72.0/21 9304 -218.189.80.0/20 9304 -218.189.96.0/20 9304 -218.189.112.0/22 9304 -218.189.116.0/24 9304 -218.189.117.0/24 18116 -218.189.118.0/24 18116 -218.189.119.0/24 9304 -218.189.120.0/22 9304 -218.189.124.0/23 55355 -218.189.126.0/23 9304 -218.189.128.0/17 9304 -218.190.0.0/15 9304 -218.192.0.0/17 4538 -218.192.128.0/19 4538 -218.192.160.0/20 24357 -218.192.176.0/20 4538 -218.192.192.0/18 4538 -218.193.0.0/16 4538 -218.194.0.0/19 4538 -218.194.32.0/19 24355 -218.194.64.0/18 4538 -218.194.128.0/17 4538 -218.195.0.0/16 4538 -218.196.0.0/14 4538 -218.200.0.0/16 9808 -218.201.0.0/18 9808 -218.201.64.0/19 9808 -218.201.96.0/19 24444 -218.201.128.0/18 24444 -218.201.192.0/18 9808 -218.202.0.0/17 9808 -218.202.128.0/18 9808 -218.202.192.0/19 9808 -218.202.224.0/24 24400 -218.202.225.0/24 9808 -218.202.226.0/23 9808 -218.202.228.0/23 9808 -218.202.230.0/23 24400 -218.202.232.0/21 24400 -218.202.240.0/20 24400 -218.203.0.0/18 132525 -218.203.64.0/19 132525 -218.203.96.0/19 9808 -218.203.128.0/17 9808 -218.204.0.0/17 9808 -218.204.128.0/19 9808 -218.204.160.0/19 56040 -218.204.192.0/18 56040 -218.205.0.0/19 56046 -218.205.32.0/20 56046 -218.205.48.0/20 56041 -218.205.64.0/18 56041 -218.205.128.0/18 56048 -218.205.192.0/19 56048 -218.205.224.0/19 9808 -218.206.0.0/18 9808 -218.206.64.0/19 9808 -218.206.96.0/19 56046 -218.206.128.0/19 56046 -218.206.160.0/20 9808 -218.206.176.0/22 56048 -218.206.180.0/22 9808 -218.206.184.0/21 9808 -218.206.192.0/18 24445 -218.207.0.0/18 9808 -218.207.64.0/19 24547 -218.207.96.0/19 9808 -218.207.128.0/17 9808 -218.208.0.0/16 4788 -218.209.0.0/16 23563 -218.210.0.0/19 9919 -218.210.32.0/20 4780 -218.210.48.0/20 9919 -218.210.64.0/18 9919 -218.210.128.0/17 9919 -218.211.0.0/16 9919 -218.212.0.0/16 55430 -218.213.0.0/20 9293 -218.213.16.0/24 4645 -218.213.17.0/24 9293 -218.213.18.0/23 9293 -218.213.20.0/22 9293 -218.213.24.0/21 9293 -218.213.32.0/19 9293 -218.213.64.0/18 9293 -218.213.144.0/20 9293 -218.213.161.0/24 9293 -218.213.162.0/23 9293 -218.213.164.0/22 9293 -218.213.168.0/22 9293 -218.213.175.0/24 9293 -218.213.176.0/23 9293 -218.213.192.0/22 9293 -218.213.196.0/24 9293 -218.213.197.0/24 45932 -218.213.198.0/23 9293 -218.213.200.0/21 9293 -218.213.208.0/20 9293 -218.213.224.0/19 9293 -218.214.0.0/17 9443 -218.214.128.0/20 9443 -218.214.144.0/22 9443 -218.214.148.0/23 9443 -218.214.150.0/23 38285 -218.214.152.0/21 38285 -218.214.160.0/19 9443 -218.214.192.0/19 9443 -218.214.224.0/22 9443 -218.214.228.0/24 9443 -218.214.229.0/24 38285 -218.214.230.0/23 38285 -218.214.232.0/21 38285 -218.214.240.0/20 9443 -218.215.0.0/16 9443 -218.216.0.0/20 10000 -218.216.16.0/20 17937 -218.216.32.0/19 17939 -218.216.64.0/20 9600 -218.216.80.0/20 4725 -218.216.96.0/20 17675 -218.216.112.0/20 7516 -218.216.128.0/20 7514 -218.216.144.0/20 9374 -218.216.160.0/20 9351 -218.216.176.0/20 18126 -218.216.192.0/18 17698 -218.217.0.0/16 2510 -218.218.0.0/17 4725 -218.218.128.0/18 4725 -218.218.192.0/19 4725 -218.218.232.0/21 4725 -218.218.240.0/20 4725 -218.219.0.0/18 10010 -218.219.64.0/20 17941 -218.219.80.0/20 4721 -218.219.96.0/19 7679 -218.219.128.0/20 7679 -218.219.144.0/20 17948 -218.219.160.0/19 17961 -218.219.192.0/18 4685 -218.220.0.0/16 9617 -218.221.0.0/16 2527 -218.222.0.0/16 2516 -218.223.0.0/20 17953 -218.223.16.0/20 17707 -218.223.32.0/20 18070 -218.223.48.0/20 17678 -218.223.64.0/20 18068 -218.223.80.0/22 18068 -218.223.84.0/23 18068 -218.223.86.0/23 7506 -218.223.88.0/21 18068 -218.223.96.0/19 9374 -218.223.128.0/18 17676 -218.223.192.0/20 18077 -218.223.208.0/20 7672 -218.223.232.0/21 10013 -218.223.240.0/20 17691 -218.224.0.0/16 4713 -218.225.0.0/17 2516 -218.225.128.0/18 9595 -218.225.192.0/19 9595 -218.225.224.0/20 4686 -218.225.244.0/22 10013 -218.225.248.0/21 10013 -218.226.0.0/16 2510 -218.227.0.0/16 2518 -218.228.0.0/20 9351 -218.228.16.0/20 7672 -218.228.64.0/20 9614 -218.228.80.0/20 17936 -218.228.96.0/19 2497 -218.228.128.0/17 17511 -218.229.0.0/16 2510 -218.230.0.0/17 2516 -218.230.128.0/17 4713 -218.231.16.0/20 2522 -218.231.48.0/20 7522 -218.231.64.0/18 17676 -218.231.128.0/17 17676 -218.232.0.0/19 9318 -218.232.32.0/23 9318 -218.232.34.0/24 17859 -218.232.35.0/24 9318 -218.232.36.0/22 9318 -218.232.40.0/21 9318 -218.232.48.0/20 9318 -218.232.64.0/20 9318 -218.232.80.0/21 9318 -218.232.88.0/22 9318 -218.232.92.0/23 17590 -218.232.94.0/23 9318 -218.232.96.0/20 9318 -218.232.112.0/23 9318 -218.232.114.0/24 45391 -218.232.115.0/24 9318 -218.232.116.0/22 9318 -218.232.120.0/21 9318 -218.232.128.0/18 9318 -218.232.192.0/19 9318 -218.232.224.0/20 9318 -218.232.240.0/23 9318 -218.232.242.0/24 38417 -218.232.243.0/24 9318 -218.232.244.0/22 9318 -218.232.248.0/21 9318 -218.233.0.0/22 9318 -218.233.4.0/24 9318 -218.233.5.0/24 45407 -218.233.6.0/24 9318 -218.233.7.0/24 1237 -218.233.8.0/21 9318 -218.233.16.0/20 9318 -218.233.32.0/19 9318 -218.233.64.0/18 9318 -218.233.128.0/19 9318 -218.233.160.0/20 9318 -218.233.176.0/22 9318 -218.233.180.0/24 9318 -218.233.181.0/24 38398 -218.233.182.0/23 9318 -218.233.184.0/21 9318 -218.233.192.0/18 9318 -218.234.0.0/23 9318 -218.234.2.0/24 9318 -218.234.3.0/24 38421 -218.234.4.0/22 9318 -218.234.8.0/23 9318 -218.234.10.0/23 18175 -218.234.12.0/22 9318 -218.234.16.0/20 9318 -218.234.32.0/23 9318 -218.234.34.0/24 9272 -218.234.35.0/24 9318 -218.234.36.0/22 9318 -218.234.40.0/21 9318 -218.234.48.0/20 9318 -218.234.64.0/20 9318 -218.234.80.0/21 9318 -218.234.88.0/22 9318 -218.234.92.0/24 38415 -218.234.93.0/24 9318 -218.234.94.0/23 9318 -218.234.96.0/19 9318 -218.234.128.0/20 9318 -218.234.144.0/21 9318 -218.234.152.0/22 9318 -218.234.156.0/24 1237 -218.234.157.0/24 9318 -218.234.158.0/23 9318 -218.234.160.0/19 9318 -218.234.192.0/19 9318 -218.234.224.0/20 9318 -218.234.240.0/21 9318 -218.234.248.0/22 9318 -218.234.252.0/23 9318 -218.234.254.0/24 38398 -218.234.255.0/24 9318 -218.235.0.0/16 9318 -218.236.0.0/23 9318 -218.236.2.0/24 18326 -218.236.3.0/24 9318 -218.236.4.0/22 9318 -218.236.8.0/21 9318 -218.236.16.0/20 9318 -218.236.32.0/19 9318 -218.236.64.0/18 9318 -218.236.128.0/19 9318 -218.236.160.0/21 9318 -218.236.168.0/22 9318 -218.236.172.0/24 9318 -218.236.173.0/24 45399 -218.236.174.0/23 9318 -218.236.176.0/20 9318 -218.236.192.0/20 9318 -218.236.208.0/21 9318 -218.236.216.0/22 9318 -218.236.220.0/24 9577 -218.236.221.0/24 9318 -218.236.222.0/23 9318 -218.236.224.0/19 9318 -218.237.0.0/18 9318 -218.237.64.0/19 9318 -218.237.96.0/21 9318 -218.237.104.0/22 9318 -218.237.108.0/23 9318 -218.237.110.0/24 9318 -218.237.111.0/24 9493 -218.237.112.0/21 9318 -218.237.120.0/24 9318 -218.237.121.0/24 9944 -218.237.122.0/24 9944 -218.237.123.0/24 9318 -218.237.124.0/22 9318 -218.237.128.0/17 9318 -218.238.0.0/18 9318 -218.238.64.0/20 9318 -218.238.80.0/21 9318 -218.238.88.0/22 9318 -218.238.92.0/24 9578 -218.238.93.0/24 9318 -218.238.94.0/23 9578 -218.238.96.0/19 9318 -218.238.128.0/17 9318 -218.239.0.0/17 9318 -218.239.128.0/18 9318 -218.239.192.0/19 9318 -218.239.224.0/21 9318 -218.239.232.0/24 9318 -218.239.233.0/24 38675 -218.239.234.0/23 9318 -218.239.236.0/22 9318 -218.239.240.0/20 9318 -218.240.0.0/19 45058 -218.240.32.0/20 45058 -218.240.48.0/21 45058 -218.240.56.0/21 4847 -218.240.128.0/20 9801 -218.240.144.0/23 23724 -218.240.146.0/24 23724 -218.240.147.0/24 9801 -218.240.148.0/22 23724 -218.240.152.0/24 9801 -218.240.153.0/24 23724 -218.240.154.0/23 23724 -218.240.156.0/24 23724 -218.240.157.0/24 9801 -218.240.158.0/23 23724 -218.240.160.0/19 9801 -218.240.192.0/19 9801 -218.240.224.0/20 9801 -218.240.240.0/21 9801 -218.240.248.0/22 9801 -218.240.252.0/23 9801 -218.240.254.0/24 9801 -218.240.255.0/24 4847 -218.241.0.0/19 4847 -218.241.64.0/19 4808 -218.241.96.0/20 24151 -218.241.112.0/24 24151 -218.241.115.0/24 24151 -218.241.116.0/22 24151 -218.241.120.0/21 24151 -218.241.128.0/20 4808 -218.241.144.0/22 4808 -218.241.148.0/22 17964 -218.241.152.0/21 4847 -218.241.160.0/20 4808 -218.241.176.0/22 4808 -218.241.180.0/23 4808 -218.241.182.0/24 4808 -218.241.183.0/24 24138 -218.241.184.0/21 4808 -218.241.192.0/19 4808 -218.241.224.0/20 4808 -218.241.240.0/23 4808 -218.241.242.0/24 17964 -218.241.243.0/24 4808 -218.241.244.0/22 4808 -218.241.248.0/21 4808 -218.242.0.0/16 9812 -218.244.0.0/22 9394 -218.244.4.0/24 9394 -218.244.5.0/24 17969 -218.244.6.0/24 17969 -218.244.7.0/24 9394 -218.244.8.0/21 9394 -218.244.16.0/20 9394 -218.244.44.0/22 4808 -218.244.49.0/24 4808 -218.244.50.0/23 4808 -218.244.52.0/23 4808 -218.244.55.0/24 4808 -218.244.56.0/23 4808 -218.244.58.0/24 4808 -218.244.60.0/22 4808 -218.244.96.0/19 23724 -218.244.128.0/19 37963 -218.244.160.0/19 23724 -218.244.192.0/20 17968 -218.244.224.0/19 17964 -218.245.0.0/18 4847 -218.246.0.0/19 9811 -218.246.32.0/22 23724 -218.246.56.0/21 23724 -218.246.64.0/19 18239 -218.246.96.0/19 9811 -218.246.128.0/24 9919 -218.246.130.0/24 8100 -218.246.141.0/24 40676 -218.246.142.0/23 40676 -218.246.160.0/19 17968 -218.246.192.0/20 18242 -218.246.208.0/20 9929 -218.247.0.0/19 17964 -218.247.32.0/19 17816 -218.247.64.0/19 139021 -218.247.128.0/19 4808 -218.247.160.0/19 24138 -218.247.192.0/18 24138 -218.248.0.0/16 9829 -218.249.0.0/19 4808 -218.249.32.0/20 4808 -218.249.48.0/21 4808 -218.249.56.0/22 4808 -218.249.60.0/23 4808 -218.249.62.0/24 4808 -218.249.63.0/24 56013 -218.249.64.0/22 24138 -218.249.68.0/24 56013 -218.249.69.0/24 24138 -218.249.70.0/23 24138 -218.249.72.0/21 24138 -218.249.80.0/20 24138 -218.249.96.0/19 24138 -218.249.128.0/20 4808 -218.249.144.0/21 4808 -218.249.152.0/22 4808 -218.249.156.0/24 56013 -218.249.157.0/24 4808 -218.249.158.0/23 4808 -218.249.160.0/19 4808 -218.249.192.0/18 4808 -218.250.0.0/16 4760 -218.251.0.0/17 17511 -218.251.220.0/24 137462 -218.251.224.0/19 4704 -218.252.0.0/16 9908 -218.253.0.0/18 9908 -218.253.64.0/18 9381 -218.253.128.0/21 136501 -218.253.136.0/21 9381 -218.253.144.0/20 9381 -218.253.160.0/19 9381 -218.253.192.0/21 9381 -218.253.200.0/22 9381 -218.253.204.0/23 9381 -218.253.206.0/24 9381 -218.253.207.0/24 198949 -218.253.208.0/20 9381 -218.253.224.0/19 9381 -218.254.0.0/16 9908 -218.255.0.0/16 9381 -219.0.0.0/10 17676 -219.64.0.0/22 4755 -219.64.4.0/24 4755 -219.64.5.0/24 9238 -219.64.6.0/23 4755 -219.64.8.0/21 4755 -219.64.16.0/20 4755 -219.64.32.0/19 4755 -219.64.80.0/20 17908 -219.64.96.0/20 4755 -219.64.120.0/21 17908 -219.64.128.0/19 10199 -219.64.160.0/20 10199 -219.64.196.0/22 17908 -219.64.204.0/23 17908 -219.64.224.0/19 4755 -219.65.32.0/19 4755 -219.65.64.0/19 4755 -219.65.96.0/20 4755 -219.65.112.0/23 4755 -219.65.116.0/22 4755 -219.65.120.0/21 4755 -219.65.159.0/24 17908 -219.65.172.0/22 17908 -219.65.192.0/18 17908 -219.66.0.0/15 4725 -219.68.0.0/16 9416 -219.69.0.0/17 9416 -219.69.248.0/23 38385 -219.69.250.0/24 38385 -219.69.254.0/24 9416 -219.70.0.0/15 9416 -219.72.0.0/18 18118 -219.72.64.0/19 18118 -219.72.96.0/21 18118 -219.72.104.0/23 4847 -219.72.106.0/24 18118 -219.72.107.0/24 4847 -219.72.108.0/22 4847 -219.72.112.0/20 18118 -219.72.128.0/20 18118 -219.72.144.0/21 4847 -219.72.152.0/21 18118 -219.72.160.0/19 18118 -219.72.192.0/19 18118 -219.72.224.0/20 4847 -219.72.240.0/21 18118 -219.72.248.0/22 18118 -219.72.252.0/23 18118 -219.72.254.0/24 4847 -219.72.255.0/24 18118 -219.73.0.0/17 4760 -219.74.0.0/16 9506 -219.75.0.0/17 9506 -219.75.128.0/17 17511 -219.76.0.0/21 4760 -219.76.8.0/23 4760 -219.76.10.0/24 4760 -219.76.11.0/24 20940 -219.76.12.0/22 4760 -219.76.16.0/20 4760 -219.76.32.0/19 4760 -219.76.64.0/18 4760 -219.76.128.0/18 4760 -219.76.192.0/19 4515 -219.76.224.0/20 4515 -219.76.240.0/20 4760 -219.77.0.0/16 4760 -219.78.0.0/15 4760 -219.80.0.0/15 9924 -219.82.0.0/16 24139 -219.83.0.0/17 4795 -219.83.132.0/22 4812 -219.83.160.0/19 23650 -219.84.0.0/15 18182 -219.86.0.0/15 9924 -219.88.64.0/21 4771 -219.88.72.0/23 4771 -219.88.80.0/20 4771 -219.88.96.0/22 4771 -219.88.100.0/23 4771 -219.88.122.0/24 4771 -219.88.128.0/20 9790 -219.88.144.0/21 4771 -219.88.156.0/22 4771 -219.88.168.0/21 4771 -219.88.176.0/20 4771 -219.88.192.0/20 4771 -219.88.224.0/20 4771 -219.88.240.0/20 9790 -219.89.0.0/21 4771 -219.89.72.0/22 4771 -219.89.80.0/20 4771 -219.89.96.0/21 4771 -219.89.112.0/20 4771 -219.89.136.0/21 4771 -219.89.144.0/20 4771 -219.89.160.0/19 4771 -219.89.192.0/18 4771 -219.90.0.0/18 703 -219.90.64.0/22 18229 -219.90.80.0/20 17970 -219.90.96.0/20 38207 -219.90.112.0/20 9584 -219.90.128.0/17 4739 -219.91.0.0/17 131627 -219.91.128.0/22 18207 -219.91.132.0/23 18207 -219.91.135.0/24 18207 -219.91.136.0/21 18207 -219.91.144.0/20 18207 -219.91.160.0/24 18207 -219.91.162.0/23 18207 -219.91.165.0/24 18207 -219.91.166.0/24 18207 -219.91.168.0/23 18207 -219.91.172.0/24 18207 -219.91.176.0/23 18207 -219.91.180.0/23 18207 -219.91.183.0/24 18207 -219.91.184.0/24 18207 -219.91.186.0/23 18207 -219.91.188.0/24 18207 -219.91.190.0/23 18207 -219.91.192.0/22 18207 -219.91.196.0/23 18207 -219.91.198.0/24 18207 -219.91.200.0/21 18207 -219.91.210.0/23 18207 -219.91.212.0/23 18207 -219.91.214.0/24 18207 -219.91.216.0/23 18207 -219.91.219.0/24 18207 -219.91.220.0/24 18207 -219.91.222.0/23 18207 -219.91.224.0/24 18207 -219.91.226.0/23 18207 -219.91.228.0/24 18207 -219.91.230.0/23 18207 -219.91.232.0/21 18207 -219.91.240.0/24 18207 -219.91.242.0/23 18207 -219.91.244.0/24 18207 -219.91.246.0/23 18207 -219.91.251.0/24 18207 -219.91.252.0/22 18207 -219.92.0.0/15 4788 -219.94.0.0/17 4788 -219.94.128.0/18 9371 -219.94.192.0/19 9371 -219.94.224.0/23 9371 -219.94.226.0/24 9371 -219.94.227.0/24 7684 -219.94.228.0/22 9371 -219.94.232.0/21 9371 -219.94.240.0/20 9371 -219.95.0.0/16 4788 -219.96.0.0/18 10010 -219.96.64.0/19 7671 -219.96.96.0/19 17675 -219.96.128.0/17 4713 -219.97.0.0/16 2510 -219.98.0.0/16 2527 -219.99.0.0/19 9354 -219.99.32.0/20 2514 -219.99.64.0/20 4713 -219.99.80.0/20 10013 -219.99.96.0/19 10013 -219.99.128.0/20 9999 -219.99.144.0/20 7687 -219.99.160.0/20 23824 -219.99.176.0/20 18088 -219.99.192.0/19 17534 -219.99.224.0/19 59108 -219.100.0.0/22 10000 -219.100.8.0/22 7511 -219.100.12.0/22 131916 -219.100.16.0/22 9354 -219.100.20.0/22 10019 -219.100.24.0/22 18134 -219.100.28.0/23 131920 -219.100.30.0/24 131920 -219.100.32.0/22 17693 -219.100.36.0/22 59103 -219.100.40.0/22 9997 -219.100.44.0/22 59123 -219.100.48.0/22 59102 -219.100.52.0/22 17511 -219.100.56.0/22 17682 -219.100.60.0/22 131926 -219.100.64.0/22 9622 -219.100.68.0/22 10011 -219.100.72.0/24 131905 -219.100.76.0/22 131925 -219.100.80.0/22 23805 -219.100.84.0/22 59126 -219.100.88.0/22 18135 -219.100.92.0/22 63770 -219.100.96.0/22 23778 -219.100.100.0/22 38628 -219.100.104.0/22 17698 -219.100.108.0/22 18278 -219.100.116.0/22 2516 -219.100.124.0/22 131928 -219.100.128.0/22 9354 -219.100.132.0/22 23808 -219.100.140.0/22 59101 -219.100.148.0/22 10003 -219.100.152.0/22 23788 -219.100.156.0/22 131923 -219.100.160.0/22 17931 -219.100.164.0/22 18274 -219.100.168.0/22 9597 -219.100.172.0/22 18260 -219.100.180.0/22 59129 -219.100.184.0/22 24255 -219.100.188.0/22 63772 -219.100.192.0/22 24279 -219.100.196.0/22 23822 -219.100.200.0/22 131907 -219.100.204.0/22 131927 -219.100.208.0/22 59107 -219.100.212.0/22 9614 -219.100.216.0/22 17939 -219.100.224.0/22 9354 -219.100.228.0/22 23624 -219.100.232.0/22 59122 -219.100.236.0/22 131918 -219.100.240.0/22 131899 -219.100.244.0/22 131915 -219.100.248.0/22 131929 -219.100.252.0/24 58648 -219.101.0.0/19 17698 -219.101.32.0/20 9600 -219.101.48.0/22 18072 -219.101.52.0/24 18072 -219.101.55.0/24 18072 -219.101.57.0/24 18072 -219.101.58.0/24 18072 -219.101.63.0/24 18072 -219.101.64.0/20 9601 -219.101.80.0/21 18090 -219.101.88.0/22 10013 -219.101.94.0/23 10013 -219.101.96.0/20 9615 -219.101.112.0/20 2522 -219.101.128.0/17 17676 -219.102.0.0/16 2514 -219.103.0.0/19 18135 -219.103.32.0/20 7671 -219.103.48.0/20 17958 -219.103.64.0/20 9351 -219.103.96.0/20 17957 -219.103.112.0/20 18092 -219.103.128.0/17 9595 -219.104.0.0/16 2510 -219.105.0.0/19 2497 -219.105.32.0/21 18097 -219.105.40.0/22 18097 -219.105.44.0/24 18097 -219.105.45.0/24 10013 -219.105.46.0/23 18097 -219.105.48.0/20 18144 -219.105.64.0/20 17939 -219.105.80.0/20 18136 -219.105.96.0/19 18136 -219.105.144.0/20 4704 -219.105.160.0/20 10012 -219.105.176.0/20 10019 -219.105.192.0/18 4704 -219.106.0.0/17 4704 -219.106.128.0/19 7524 -219.106.160.0/20 7522 -219.106.176.0/20 10011 -219.106.192.0/19 10010 -219.106.224.0/19 9600 -219.107.0.0/16 2518 -219.108.0.0/16 2516 -219.109.5.0/24 18139 -219.109.32.0/20 18141 -219.109.48.0/20 18260 -219.109.64.0/20 10000 -219.109.80.0/20 10013 -219.109.96.0/19 7522 -219.109.128.0/19 7516 -219.109.160.0/19 9371 -219.109.192.0/20 18094 -219.109.208.0/20 17707 -219.109.224.0/20 10013 -219.109.240.0/20 9351 -219.110.0.0/16 9365 -219.111.0.0/17 2497 -219.111.128.0/18 2527 -219.111.192.0/20 45675 -219.111.208.0/20 18129 -219.111.224.0/20 7671 -219.112.128.0/19 18134 -219.112.160.0/19 10010 -219.112.192.0/19 4721 -219.112.224.0/24 2907 -219.112.225.0/24 18127 -219.112.226.0/24 18127 -219.112.227.0/24 2907 -219.112.228.0/22 18127 -219.112.232.0/21 18127 -219.112.240.0/20 7514 -219.113.0.0/19 17675 -219.113.32.0/20 18263 -219.113.48.0/20 17698 -219.113.64.0/20 7671 -219.113.80.0/20 9614 -219.113.96.0/20 4721 -219.113.112.0/20 9351 -219.113.128.0/17 17506 -219.114.0.0/17 4713 -219.114.128.0/19 9605 -219.114.160.0/20 9605 -219.114.176.0/21 9605 -219.114.184.0/23 9605 -219.114.186.0/24 9605 -219.114.188.0/22 9605 -219.114.192.0/18 9617 -219.115.0.0/16 9617 -219.116.0.0/16 2510 -219.117.0.0/20 4721 -219.117.16.0/20 10003 -219.117.32.0/20 18126 -219.117.48.0/20 18092 -219.117.64.0/18 10010 -219.117.128.0/20 17691 -219.117.144.0/22 17685 -219.117.148.0/22 23784 -219.117.152.0/21 23784 -219.117.160.0/19 4721 -219.117.192.0/18 2514 -219.118.0.0/19 2516 -219.118.32.0/20 7670 -219.118.48.0/20 18085 -219.118.64.0/20 2514 -219.118.80.0/20 18265 -219.118.96.0/20 18146 -219.118.112.0/20 18094 -219.118.128.0/19 9354 -219.118.160.0/19 9600 -219.118.192.0/19 55388 -219.118.224.0/19 18144 -219.119.0.0/16 2497 -219.120.0.0/16 17506 -219.121.0.0/18 4685 -219.121.64.0/18 9595 -219.121.128.0/19 59108 -219.121.160.0/19 2497 -219.121.192.0/20 9374 -219.121.208.0/20 7676 -219.121.224.0/20 18121 -219.121.240.0/21 18121 -219.121.248.0/24 18121 -219.121.249.0/24 2519 -219.121.250.0/23 18121 -219.121.252.0/23 18121 -219.121.254.0/24 18121 -219.121.255.0/24 2519 -219.122.0.0/20 17941 -219.122.16.0/20 18264 -219.122.32.0/19 17511 -219.122.64.0/20 9605 -219.122.80.0/20 7676 -219.122.96.0/20 18274 -219.122.112.0/20 2514 -219.122.128.0/17 17511 -219.123.0.0/16 17506 -219.124.0.0/20 10001 -219.124.16.0/20 9378 -219.124.32.0/20 7671 -219.124.48.0/20 24249 -219.124.80.0/20 7676 -219.124.96.0/23 18266 -219.124.98.0/23 23783 -219.124.100.0/22 23783 -219.124.104.0/21 23783 -219.124.112.0/20 18271 -219.124.128.0/19 10010 -219.124.160.0/19 7522 -219.124.192.0/19 17698 -219.124.224.0/19 4721 -219.125.0.0/16 2516 -219.126.0.0/17 10010 -219.126.128.0/17 2497 -219.127.0.0/18 9595 -219.127.64.0/18 17676 -219.127.128.0/17 17676 -219.128.0.0/18 4134 -219.128.64.0/21 4134 -219.128.72.0/22 4134 -219.128.76.0/22 134764 -219.128.80.0/20 4134 -219.128.96.0/19 4134 -219.128.128.0/21 58543 -219.128.136.0/24 4813 -219.128.137.0/24 4134 -219.128.138.0/23 4134 -219.128.140.0/22 4134 -219.128.144.0/23 4134 -219.128.146.0/24 58543 -219.128.147.0/24 4134 -219.128.148.0/22 4134 -219.128.152.0/21 4134 -219.128.160.0/20 4134 -219.128.176.0/21 4134 -219.128.184.0/22 4134 -219.128.188.0/24 4134 -219.128.189.0/24 58543 -219.128.190.0/23 58543 -219.128.192.0/23 58543 -219.128.194.0/24 4134 -219.128.195.0/24 58543 -219.128.196.0/22 4134 -219.128.200.0/21 4134 -219.128.208.0/20 4134 -219.128.224.0/19 4134 -219.129.0.0/20 4134 -219.129.16.0/22 4134 -219.129.20.0/23 58543 -219.129.22.0/24 58543 -219.129.23.0/24 4134 -219.129.24.0/21 4134 -219.129.32.0/19 4134 -219.129.64.0/18 4134 -219.129.128.0/18 4134 -219.129.192.0/20 4134 -219.129.208.0/21 4134 -219.129.216.0/24 58543 -219.129.217.0/24 4134 -219.129.218.0/23 4134 -219.129.220.0/22 4134 -219.129.224.0/21 4134 -219.129.232.0/22 4134 -219.129.236.0/24 4134 -219.129.237.0/24 58543 -219.129.238.0/24 4134 -219.129.239.0/24 58543 -219.129.240.0/20 4134 -219.130.0.0/15 4134 -219.132.0.0/17 4134 -219.132.128.0/18 4134 -219.132.192.0/22 134764 -219.132.196.0/22 4134 -219.132.200.0/21 4134 -219.132.208.0/20 4134 -219.132.224.0/19 4134 -219.133.0.0/19 4134 -219.133.32.0/19 4816 -219.133.64.0/19 4134 -219.133.96.0/24 4816 -219.133.97.0/24 4134 -219.133.98.0/23 4134 -219.133.100.0/22 4134 -219.133.104.0/21 4134 -219.133.112.0/20 4134 -219.133.128.0/17 4134 -219.134.0.0/17 4134 -219.134.128.0/22 4134 -219.134.132.0/24 4816 -219.134.133.0/24 4134 -219.134.134.0/23 4134 -219.134.136.0/21 4134 -219.134.144.0/20 4134 -219.134.160.0/19 4134 -219.134.192.0/18 4134 -219.135.0.0/19 4134 -219.135.32.0/20 4134 -219.135.48.0/21 4134 -219.135.56.0/22 134764 -219.135.60.0/22 4134 -219.135.64.0/19 4134 -219.135.96.0/21 58466 -219.135.104.0/21 4134 -219.135.112.0/20 4134 -219.135.128.0/18 4134 -219.135.192.0/19 4134 -219.135.224.0/19 58543 -219.136.0.0/17 4134 -219.136.128.0/18 4134 -219.136.192.0/19 4134 -219.136.224.0/20 4134 -219.136.240.0/20 58466 -219.137.0.0/16 4134 -219.138.0.0/18 4134 -219.138.64.0/22 4134 -219.138.68.0/23 4134 -219.138.70.0/24 4134 -219.138.71.0/24 136194 -219.138.72.0/21 4134 -219.138.80.0/20 4134 -219.138.96.0/19 4134 -219.138.128.0/17 4134 -219.139.0.0/16 4134 -219.140.0.0/16 4134 -219.141.0.0/17 4134 -219.141.128.0/18 4847 -219.141.192.0/20 4847 -219.141.208.0/21 4847 -219.141.216.0/22 4847 -219.141.220.0/24 23724 -219.141.221.0/24 4847 -219.141.222.0/23 4847 -219.141.224.0/19 4847 -219.142.0.0/18 4847 -219.142.64.0/21 4847 -219.142.72.0/22 4847 -219.142.76.0/23 4847 -219.142.78.0/24 23724 -219.142.79.0/24 4847 -219.142.80.0/20 4847 -219.142.96.0/20 4847 -219.142.112.0/22 4847 -219.142.116.0/23 4847 -219.142.118.0/24 23724 -219.142.119.0/24 4847 -219.142.120.0/21 4847 -219.142.128.0/17 4847 -219.143.0.0/16 4847 -219.144.0.0/18 4134 -219.144.64.0/19 134768 -219.144.96.0/20 4835 -219.144.112.0/20 4134 -219.144.128.0/17 4134 -219.145.0.0/16 4134 -219.146.0.0/19 17633 -219.146.32.0/19 4134 -219.146.64.0/20 4134 -219.146.80.0/21 4134 -219.146.88.0/22 4134 -219.146.92.0/23 4134 -219.146.94.0/24 58541 -219.146.95.0/24 4134 -219.146.96.0/19 4134 -219.146.128.0/18 4134 -219.146.192.0/19 4134 -219.146.224.0/20 4134 -219.146.240.0/24 4134 -219.146.241.0/24 136195 -219.146.242.0/23 4134 -219.146.244.0/22 4134 -219.146.248.0/24 58541 -219.146.249.0/24 4134 -219.146.250.0/23 4134 -219.146.252.0/22 4134 -219.147.0.0/18 4134 -219.147.64.0/24 137698 -219.147.65.0/24 17897 -219.147.66.0/23 17897 -219.147.68.0/22 17897 -219.147.72.0/21 17897 -219.147.80.0/20 17897 -219.147.96.0/19 4134 -219.147.128.0/19 17897 -219.147.160.0/19 4134 -219.147.192.0/19 4134 -219.147.224.0/20 4134 -219.147.240.0/21 4134 -219.147.248.0/21 17897 -219.148.0.0/17 4134 -219.148.128.0/18 4134 -219.148.192.0/23 4134 -219.148.194.0/23 17799 -219.148.196.0/22 17799 -219.148.200.0/21 17799 -219.148.208.0/24 4134 -219.148.209.0/24 17799 -219.148.210.0/24 17799 -219.148.211.0/24 4134 -219.148.212.0/22 4134 -219.148.216.0/21 4134 -219.148.224.0/19 4134 -219.149.0.0/20 134762 -219.149.16.0/20 4134 -219.149.32.0/19 4134 -219.149.64.0/18 4134 -219.149.128.0/17 4134 -219.150.0.0/19 4134 -219.150.32.0/19 17638 -219.150.64.0/19 17638 -219.150.96.0/20 17638 -219.150.112.0/20 4134 -219.150.128.0/19 4134 -219.150.160.0/20 4134 -219.150.176.0/21 4134 -219.150.184.0/22 4134 -219.150.188.0/23 4134 -219.150.190.0/24 139018 -219.150.191.0/24 4134 -219.150.192.0/18 4134 -219.151.0.0/18 4134 -219.151.128.0/21 134420 -219.151.136.0/21 4134 -219.151.144.0/20 4134 -219.151.160.0/19 4134 -219.151.192.0/18 4134 -219.152.0.0/17 4134 -219.152.128.0/19 4134 -219.152.160.0/22 4134 -219.152.164.0/23 4134 -219.152.166.0/23 134420 -219.152.168.0/21 134420 -219.152.176.0/20 4134 -219.152.192.0/18 4134 -219.153.0.0/22 134420 -219.153.4.0/23 134420 -219.153.6.0/24 4134 -219.153.7.0/24 134420 -219.153.8.0/21 134420 -219.153.16.0/22 134420 -219.153.20.0/23 134420 -219.153.22.0/24 134420 -219.153.23.0/24 4134 -219.153.24.0/22 4134 -219.153.28.0/22 134420 -219.153.32.0/24 4134 -219.153.33.0/24 134420 -219.153.34.0/23 134420 -219.153.36.0/22 134420 -219.153.40.0/21 134420 -219.153.48.0/22 134420 -219.153.52.0/23 134420 -219.153.54.0/24 134420 -219.153.55.0/24 4134 -219.153.56.0/24 134420 -219.153.57.0/24 4134 -219.153.58.0/23 134420 -219.153.60.0/22 4134 -219.153.64.0/22 134420 -219.153.68.0/24 134420 -219.153.69.0/24 4134 -219.153.70.0/23 134420 -219.153.72.0/21 134420 -219.153.80.0/24 134420 -219.153.81.0/24 4134 -219.153.82.0/23 4134 -219.153.84.0/22 4134 -219.153.88.0/21 4134 -219.153.96.0/20 134420 -219.153.112.0/21 134420 -219.153.120.0/21 4134 -219.153.128.0/17 4134 -219.154.0.0/15 4837 -219.156.0.0/15 4837 -219.158.0.0/19 4837 -219.158.32.0/20 4837 -219.158.60.0/22 4837 -219.158.96.0/19 4837 -219.158.128.0/17 4808 -219.159.0.0/20 4837 -219.159.16.0/22 4837 -219.159.20.0/22 139007 -219.159.24.0/21 4837 -219.159.32.0/20 4837 -219.159.48.0/21 4837 -219.159.56.0/23 4837 -219.159.58.0/24 4837 -219.159.59.0/24 139007 -219.159.60.0/23 139007 -219.159.62.0/23 4837 -219.159.64.0/20 4134 -219.159.80.0/22 4134 -219.159.84.0/22 137693 -219.159.88.0/21 4134 -219.159.96.0/19 4134 -219.159.128.0/18 4134 -219.159.192.0/20 134419 -219.159.208.0/20 4134 -219.159.224.0/20 4134 -219.159.240.0/21 4134 -219.159.248.0/24 4134 -219.159.249.0/24 137693 -219.159.250.0/24 4134 -219.159.251.0/24 134419 -219.159.252.0/22 4134 -219.160.0.0/13 4713 -219.168.0.0/13 17676 -219.176.0.0/12 17676 -219.192.0.0/12 17676 -219.208.0.0/13 17676 -219.216.0.0/13 4538 -219.224.0.0/13 4538 -219.232.0.0/19 4808 -219.232.32.0/22 4847 -219.232.36.0/24 4847 -219.232.37.0/24 18245 -219.232.38.0/23 4847 -219.232.40.0/21 4847 -219.232.48.0/21 4847 -219.232.56.0/24 4847 -219.232.57.0/24 18245 -219.232.58.0/23 18245 -219.232.60.0/23 18245 -219.232.62.0/23 4847 -219.232.64.0/19 63581 -219.232.96.0/20 4808 -219.232.112.0/24 9801 -219.232.113.0/24 4808 -219.232.114.0/24 4808 -219.232.115.0/24 9801 -219.232.116.0/22 9801 -219.232.120.0/21 4808 -219.232.160.0/19 17962 -219.232.192.0/19 18239 -219.232.224.0/19 4808 -219.233.0.0/16 9812 -219.234.0.0/21 23724 -219.234.8.0/24 139021 -219.234.9.0/24 58519 -219.234.10.0/23 58519 -219.234.12.0/22 58519 -219.234.16.0/20 139021 -219.234.64.0/20 23839 -219.234.80.0/20 17964 -219.234.96.0/19 17962 -219.234.128.0/17 17964 -219.235.0.0/22 4812 -219.235.4.0/23 4812 -219.235.6.0/23 17621 -219.235.8.0/24 17621 -219.235.9.0/24 4812 -219.235.10.0/23 4812 -219.235.12.0/22 23724 -219.235.16.0/20 17816 -219.235.32.0/19 4808 -219.235.64.0/18 17968 -219.235.128.0/20 9807 -219.235.144.0/21 9807 -219.235.152.0/21 45074 -219.235.192.0/20 4847 -219.235.208.0/20 17816 -219.235.224.0/19 9809 -219.236.0.0/16 24138 -219.237.0.0/16 17429 -219.238.0.0/17 4808 -219.238.128.0/20 24138 -219.238.144.0/22 24138 -219.238.148.0/22 4847 -219.238.152.0/21 24138 -219.238.160.0/19 4808 -219.238.192.0/19 4808 -219.238.224.0/21 4808 -219.238.232.0/21 4847 -219.238.240.0/20 4808 -219.239.0.0/19 4808 -219.239.32.0/21 4808 -219.239.40.0/23 4808 -219.239.42.0/23 17964 -219.239.44.0/22 4808 -219.239.48.0/20 4808 -219.239.64.0/20 4808 -219.239.80.0/21 4808 -219.239.88.0/22 4808 -219.239.92.0/22 17964 -219.239.96.0/19 4808 -219.239.128.0/17 4808 -219.240.0.0/18 9318 -219.240.64.0/20 9318 -219.240.80.0/21 9318 -219.240.88.0/22 9318 -219.240.92.0/24 4961 -219.240.93.0/24 9318 -219.240.94.0/23 9318 -219.240.96.0/19 9318 -219.240.128.0/17 9318 -219.241.0.0/17 9318 -219.241.128.0/18 9318 -219.241.192.0/20 9318 -219.241.208.0/21 9318 -219.241.216.0/22 9318 -219.241.220.0/24 45403 -219.241.221.0/24 17589 -219.241.222.0/23 9318 -219.241.224.0/19 9318 -219.242.0.0/16 4538 -219.243.0.0/17 4538 -219.243.128.0/18 4538 -219.243.192.0/21 4538 -219.243.200.0/24 4538 -219.243.201.0/24 23910 -219.243.202.0/23 4538 -219.243.204.0/23 4538 -219.243.206.0/24 23910 -219.243.207.0/24 4538 -219.243.208.0/21 23910 -219.243.216.0/21 4538 -219.243.224.0/19 4538 -219.244.0.0/17 4538 -219.244.128.0/19 4538 -219.244.160.0/19 24353 -219.244.192.0/18 4538 -219.245.0.0/16 4538 -219.246.0.0/15 4538 -219.248.0.0/16 9318 -219.249.0.0/17 9318 -219.249.128.0/18 9318 -219.249.192.0/19 9318 -219.249.224.0/23 9318 -219.249.226.0/24 9318 -219.249.227.0/24 38678 -219.249.228.0/23 9318 -219.249.230.0/24 9318 -219.249.231.0/24 38099 -219.249.232.0/21 9318 -219.249.240.0/20 9318 -219.250.0.0/16 9318 -219.251.0.0/17 9318 -219.251.128.0/21 9318 -219.251.136.0/24 9318 -219.251.137.0/24 4663 -219.251.138.0/23 9318 -219.251.140.0/24 45399 -219.251.141.0/24 9318 -219.251.142.0/24 23600 -219.251.143.0/24 9318 -219.251.144.0/21 9318 -219.251.152.0/24 9318 -219.251.153.0/24 4663 -219.251.154.0/23 9318 -219.251.156.0/24 23600 -219.251.157.0/24 9318 -219.251.158.0/23 9318 -219.251.160.0/19 9318 -219.251.192.0/19 9318 -219.251.224.0/20 9318 -219.251.240.0/24 23558 -219.251.241.0/24 9318 -219.251.242.0/23 9318 -219.251.244.0/22 9318 -219.251.248.0/21 9318 -219.252.0.0/19 18302 -219.252.32.0/22 18302 -219.252.36.0/23 18302 -219.252.38.0/24 18302 -219.252.39.0/24 10191 -219.252.40.0/21 18302 -219.252.48.0/20 18302 -219.252.64.0/18 18302 -219.252.128.0/18 18302 -219.252.192.0/21 38120 -219.252.200.0/24 38120 -219.252.201.0/24 18302 -219.252.202.0/23 18302 -219.252.204.0/23 38120 -219.252.206.0/24 38120 -219.252.207.0/24 18302 -219.252.208.0/22 18302 -219.252.212.0/23 18302 -219.252.214.0/23 38120 -219.252.216.0/21 38120 -219.252.224.0/19 18302 -219.253.0.0/16 18302 -219.254.0.0/16 9318 -219.255.0.0/17 9318 -219.255.128.0/21 9318 -219.255.136.0/23 23587 -219.255.138.0/23 9318 -219.255.140.0/22 9318 -219.255.144.0/20 9318 -219.255.160.0/19 9318 -219.255.192.0/18 9318 -220.0.0.0/10 17676 -220.64.0.0/21 9457 -220.64.8.0/22 9457 -220.64.12.0/23 18328 -220.64.14.0/24 9457 -220.64.15.0/24 10056 -220.64.16.0/24 9692 -220.64.17.0/24 9457 -220.64.18.0/23 9457 -220.64.20.0/22 9457 -220.64.24.0/21 9457 -220.64.32.0/19 9457 -220.64.64.0/21 9457 -220.64.72.0/23 9457 -220.64.74.0/24 10056 -220.64.75.0/24 9457 -220.64.76.0/22 9457 -220.64.80.0/22 9457 -220.64.84.0/23 9457 -220.64.86.0/24 10169 -220.64.87.0/24 9457 -220.64.88.0/21 9457 -220.64.96.0/22 38099 -220.64.100.0/22 7625 -220.64.104.0/21 9457 -220.64.112.0/20 9457 -220.64.128.0/23 9457 -220.64.130.0/24 10169 -220.64.131.0/24 9457 -220.64.132.0/23 9457 -220.64.134.0/24 9457 -220.64.135.0/24 10169 -220.64.136.0/22 9457 -220.64.140.0/24 10169 -220.64.141.0/24 9457 -220.64.142.0/23 9457 -220.64.144.0/22 38099 -220.64.148.0/22 9457 -220.64.152.0/21 9457 -220.64.160.0/19 9457 -220.64.192.0/18 9457 -220.65.0.0/19 9316 -220.65.32.0/23 9316 -220.65.34.0/24 38390 -220.65.35.0/24 9316 -220.65.36.0/22 9316 -220.65.40.0/21 9316 -220.65.48.0/20 9316 -220.65.64.0/20 17858 -220.65.80.0/20 9316 -220.65.96.0/21 9316 -220.65.104.0/23 9316 -220.65.106.0/24 38395 -220.65.107.0/24 9316 -220.65.108.0/22 9316 -220.65.112.0/21 9316 -220.65.120.0/23 9316 -220.65.122.0/24 23579 -220.65.123.0/24 9316 -220.65.124.0/23 9316 -220.65.126.0/24 38402 -220.65.127.0/24 9316 -220.65.128.0/21 9316 -220.65.136.0/22 9316 -220.65.140.0/24 9316 -220.65.141.0/24 38402 -220.65.142.0/23 9316 -220.65.144.0/21 9316 -220.65.152.0/24 9316 -220.65.153.0/24 38400 -220.65.154.0/23 9316 -220.65.156.0/23 9316 -220.65.158.0/23 38402 -220.65.160.0/20 9316 -220.65.176.0/22 9316 -220.65.180.0/24 9316 -220.65.181.0/24 38394 -220.65.182.0/23 9316 -220.65.184.0/21 9316 -220.65.192.0/21 9316 -220.65.200.0/23 4766 -220.65.202.0/23 9316 -220.65.204.0/23 9316 -220.65.206.0/24 9316 -220.65.207.0/24 38402 -220.65.208.0/20 9316 -220.65.224.0/24 9316 -220.65.225.0/24 17582 -220.65.226.0/23 9316 -220.65.228.0/22 9316 -220.65.232.0/21 9316 -220.65.240.0/21 9316 -220.65.248.0/22 9316 -220.65.252.0/23 9647 -220.65.254.0/23 9316 -220.66.0.0/22 4766 -220.66.4.0/23 4766 -220.66.6.0/24 4766 -220.66.7.0/24 3786 -220.66.8.0/24 3786 -220.66.9.0/24 17599 -220.66.10.0/24 17599 -220.66.11.0/24 3786 -220.66.12.0/24 4766 -220.66.13.0/24 3786 -220.66.14.0/23 18035 -220.66.16.0/24 3786 -220.66.17.0/24 4766 -220.66.18.0/24 4766 -220.66.19.0/24 3786 -220.66.20.0/23 3786 -220.66.22.0/23 38697 -220.66.24.0/22 3786 -220.66.28.0/24 4766 -220.66.29.0/24 17868 -220.66.30.0/23 3786 -220.66.32.0/23 4766 -220.66.34.0/23 3786 -220.66.36.0/23 3786 -220.66.38.0/24 4766 -220.66.39.0/24 3786 -220.66.40.0/22 3786 -220.66.44.0/23 3786 -220.66.46.0/24 4766 -220.66.47.0/24 9318 -220.66.48.0/23 3786 -220.66.50.0/23 4766 -220.66.52.0/23 4766 -220.66.54.0/24 4766 -220.66.55.0/24 3786 -220.66.56.0/24 3786 -220.66.57.0/24 10071 -220.66.58.0/23 10071 -220.66.60.0/24 10071 -220.66.61.0/24 23561 -220.66.62.0/23 23561 -220.66.64.0/22 23561 -220.66.68.0/23 23561 -220.66.70.0/24 23561 -220.66.71.0/24 3786 -220.66.72.0/24 4766 -220.66.73.0/24 55624 -220.66.74.0/23 55624 -220.66.76.0/24 55624 -220.66.77.0/24 3786 -220.66.78.0/23 4766 -220.66.80.0/24 4766 -220.66.81.0/24 3786 -220.66.82.0/23 3786 -220.66.84.0/23 4766 -220.66.86.0/24 4766 -220.66.87.0/24 10071 -220.66.88.0/23 3786 -220.66.90.0/24 45397 -220.66.91.0/24 4766 -220.66.92.0/22 4766 -220.66.96.0/24 4766 -220.66.97.0/24 18035 -220.66.98.0/23 18035 -220.66.100.0/24 4766 -220.66.101.0/24 3786 -220.66.102.0/23 3786 -220.66.104.0/22 3786 -220.66.108.0/24 3786 -220.66.109.0/24 4766 -220.66.110.0/24 3786 -220.66.111.0/24 23975 -220.66.112.0/22 23975 -220.66.116.0/24 3786 -220.66.117.0/24 4766 -220.66.118.0/23 4766 -220.66.120.0/21 4766 -220.66.128.0/22 3786 -220.66.132.0/22 9867 -220.66.136.0/23 9867 -220.66.138.0/23 4766 -220.66.140.0/23 4766 -220.66.142.0/24 4766 -220.66.143.0/24 10045 -220.66.144.0/22 10045 -220.66.148.0/23 10045 -220.66.150.0/23 4766 -220.66.152.0/22 4766 -220.66.156.0/23 4766 -220.66.158.0/24 4766 -220.66.159.0/24 3786 -220.66.160.0/24 3786 -220.66.161.0/24 4766 -220.66.162.0/23 4766 -220.66.164.0/24 4766 -220.66.165.0/24 3786 -220.66.166.0/24 18325 -220.66.167.0/24 4766 -220.66.168.0/23 4766 -220.66.170.0/24 4766 -220.66.171.0/24 9777 -220.66.172.0/22 9777 -220.66.176.0/22 9777 -220.66.180.0/24 9777 -220.66.181.0/24 18315 -220.66.182.0/24 18315 -220.66.183.0/24 4766 -220.66.184.0/24 4766 -220.66.185.0/24 3786 -220.66.186.0/24 3786 -220.66.187.0/24 4766 -220.66.188.0/22 4766 -220.66.192.0/22 9318 -220.66.196.0/22 4766 -220.66.200.0/24 4766 -220.66.201.0/24 18343 -220.66.202.0/23 18343 -220.66.204.0/22 18343 -220.66.208.0/23 18343 -220.66.210.0/24 18343 -220.66.211.0/24 4766 -220.66.212.0/24 4766 -220.66.213.0/24 10052 -220.66.214.0/23 10052 -220.66.216.0/22 10052 -220.66.220.0/24 10052 -220.66.221.0/24 3786 -220.66.222.0/23 4766 -220.66.224.0/23 3786 -220.66.226.0/23 4766 -220.66.228.0/22 4766 -220.66.232.0/23 4766 -220.66.234.0/24 4766 -220.66.235.0/24 3786 -220.66.236.0/22 3786 -220.66.240.0/23 3786 -220.66.242.0/24 4766 -220.66.243.0/24 9708 -220.66.244.0/22 4766 -220.66.248.0/23 4766 -220.66.250.0/24 4766 -220.66.251.0/24 3786 -220.66.252.0/24 3786 -220.66.253.0/24 9318 -220.66.254.0/23 9318 -220.67.0.0/18 18319 -220.67.64.0/22 9962 -220.67.68.0/23 9962 -220.67.70.0/23 4766 -220.67.72.0/21 4766 -220.67.80.0/23 4766 -220.67.82.0/23 3786 -220.67.84.0/24 3786 -220.67.85.0/24 55622 -220.67.86.0/23 18164 -220.67.88.0/23 18164 -220.67.90.0/23 3786 -220.67.92.0/24 3786 -220.67.93.0/24 4766 -220.67.94.0/23 4766 -220.67.96.0/21 4766 -220.67.104.0/23 4766 -220.67.106.0/23 3786 -220.67.108.0/23 9859 -220.67.110.0/24 9859 -220.67.111.0/24 4766 -220.67.112.0/22 4766 -220.67.116.0/22 9318 -220.67.120.0/21 9572 -220.67.128.0/22 9572 -220.67.132.0/23 10159 -220.67.134.0/24 10159 -220.67.135.0/24 4766 -220.67.136.0/24 3786 -220.67.137.0/24 38697 -220.67.138.0/23 4766 -220.67.140.0/22 3786 -220.67.144.0/23 18329 -220.67.146.0/24 18329 -220.67.147.0/24 3786 -220.67.148.0/23 3786 -220.67.150.0/24 3786 -220.67.151.0/24 4766 -220.67.152.0/22 4766 -220.67.156.0/24 4766 -220.67.157.0/24 18034 -220.67.158.0/23 18034 -220.67.160.0/21 18034 -220.67.168.0/23 18034 -220.67.170.0/24 18034 -220.67.171.0/24 4766 -220.67.172.0/22 46012 -220.67.176.0/21 3786 -220.67.184.0/23 4766 -220.67.186.0/24 4766 -220.67.187.0/24 3786 -220.67.188.0/22 9965 -220.67.192.0/19 9754 -220.67.224.0/21 3786 -220.67.232.0/22 3786 -220.67.236.0/22 23743 -220.67.240.0/23 4766 -220.67.242.0/23 9318 -220.67.244.0/22 9318 -220.67.248.0/21 4766 -220.68.0.0/23 3786 -220.68.2.0/23 18026 -220.68.4.0/22 9870 -220.68.8.0/24 9870 -220.68.9.0/24 4766 -220.68.10.0/24 4766 -220.68.11.0/24 3786 -220.68.12.0/22 4766 -220.68.16.0/22 18038 -220.68.20.0/24 18038 -220.68.21.0/24 3786 -220.68.22.0/23 9954 -220.68.24.0/22 9954 -220.68.28.0/24 3786 -220.68.29.0/24 55586 -220.68.30.0/23 55586 -220.68.32.0/24 4766 -220.68.33.0/24 9949 -220.68.34.0/23 3786 -220.68.36.0/22 18324 -220.68.40.0/24 18324 -220.68.41.0/24 4766 -220.68.42.0/23 3786 -220.68.44.0/23 3786 -220.68.46.0/23 9318 -220.68.48.0/21 9318 -220.68.56.0/23 4766 -220.68.58.0/24 18315 -220.68.59.0/24 3786 -220.68.60.0/23 4766 -220.68.62.0/23 3786 -220.68.64.0/19 9970 -220.68.96.0/22 10042 -220.68.100.0/22 4766 -220.68.104.0/22 3786 -220.68.108.0/22 4766 -220.68.112.0/23 4766 -220.68.114.0/24 4766 -220.68.115.0/24 3786 -220.68.116.0/22 3786 -220.68.120.0/21 3786 -220.68.128.0/22 3786 -220.68.132.0/23 3786 -220.68.134.0/23 4766 -220.68.136.0/21 4766 -220.68.144.0/22 4766 -220.68.148.0/24 3786 -220.68.149.0/24 4766 -220.68.150.0/23 9778 -220.68.152.0/22 9778 -220.68.156.0/22 4766 -220.68.160.0/22 4766 -220.68.164.0/23 3786 -220.68.166.0/23 4766 -220.68.168.0/23 3786 -220.68.170.0/24 3786 -220.68.171.0/24 4766 -220.68.172.0/24 3786 -220.68.173.0/24 38131 -220.68.174.0/23 38131 -220.68.176.0/21 18027 -220.68.184.0/24 18027 -220.68.185.0/24 3786 -220.68.186.0/23 3786 -220.68.188.0/24 3786 -220.68.189.0/24 18027 -220.68.190.0/23 18027 -220.68.192.0/22 3786 -220.68.196.0/23 3786 -220.68.198.0/23 55626 -220.68.200.0/21 9523 -220.68.208.0/23 9523 -220.68.210.0/24 3786 -220.68.211.0/24 4766 -220.68.212.0/22 4766 -220.68.216.0/21 9782 -220.68.224.0/20 3786 -220.68.240.0/22 38697 -220.68.244.0/23 38697 -220.68.246.0/23 3786 -220.68.248.0/22 3786 -220.68.252.0/23 55626 -220.68.254.0/23 3786 -220.69.0.0/18 4766 -220.69.64.0/23 17614 -220.69.66.0/24 4766 -220.69.67.0/24 17614 -220.69.68.0/22 17614 -220.69.72.0/22 9949 -220.69.76.0/24 9949 -220.69.77.0/24 4766 -220.69.78.0/23 4766 -220.69.80.0/20 4766 -220.69.96.0/21 4766 -220.69.104.0/24 4766 -220.69.105.0/24 3786 -220.69.106.0/23 4766 -220.69.108.0/22 9318 -220.69.112.0/20 9318 -220.69.128.0/19 23714 -220.69.160.0/22 7560 -220.69.164.0/23 3786 -220.69.166.0/23 45363 -220.69.168.0/22 4766 -220.69.172.0/24 4766 -220.69.173.0/24 3786 -220.69.174.0/23 18026 -220.69.176.0/22 4766 -220.69.180.0/23 4766 -220.69.182.0/24 4766 -220.69.183.0/24 3786 -220.69.184.0/22 3786 -220.69.188.0/24 3786 -220.69.189.0/24 38105 -220.69.190.0/23 38105 -220.69.192.0/24 3786 -220.69.193.0/24 38105 -220.69.194.0/23 38105 -220.69.196.0/22 38105 -220.69.200.0/21 38105 -220.69.208.0/22 38105 -220.69.212.0/23 38105 -220.69.214.0/23 4766 -220.69.216.0/21 4766 -220.69.224.0/20 18034 -220.69.240.0/21 4766 -220.69.248.0/23 4766 -220.69.250.0/24 4766 -220.69.251.0/24 3786 -220.69.252.0/23 18023 -220.69.254.0/23 3786 -220.70.0.0/15 4766 -220.72.0.0/18 4766 -220.72.64.0/24 4766 -220.72.65.0/24 18335 -220.72.66.0/23 4766 -220.72.68.0/22 4766 -220.72.72.0/21 4766 -220.72.80.0/20 4766 -220.72.96.0/19 4766 -220.72.128.0/17 4766 -220.73.0.0/21 4766 -220.73.8.0/23 4766 -220.73.10.0/24 4668 -220.73.11.0/24 4766 -220.73.12.0/22 4766 -220.73.16.0/20 4766 -220.73.32.0/19 4766 -220.73.64.0/18 4766 -220.73.128.0/20 4766 -220.73.144.0/21 4766 -220.73.152.0/22 4766 -220.73.156.0/24 9628 -220.73.157.0/24 4766 -220.73.158.0/23 4766 -220.73.160.0/19 4766 -220.73.192.0/19 4766 -220.73.224.0/22 4766 -220.73.228.0/23 4766 -220.73.230.0/23 9870 -220.73.232.0/23 9870 -220.73.234.0/23 4766 -220.73.236.0/22 4766 -220.73.240.0/20 4766 -220.74.0.0/16 4766 -220.75.0.0/17 4766 -220.75.128.0/18 4766 -220.75.192.0/20 4766 -220.75.208.0/23 4766 -220.75.210.0/24 17859 -220.75.211.0/24 4766 -220.75.212.0/22 4766 -220.75.216.0/21 4766 -220.75.224.0/19 4766 -220.76.0.0/18 4766 -220.76.64.0/19 4766 -220.76.96.0/20 4766 -220.76.112.0/23 4766 -220.76.114.0/24 4766 -220.76.115.0/24 10185 -220.76.116.0/22 4766 -220.76.120.0/21 4766 -220.76.128.0/19 4766 -220.76.160.0/20 4766 -220.76.176.0/24 4766 -220.76.177.0/24 9647 -220.76.178.0/23 4766 -220.76.180.0/22 4766 -220.76.184.0/21 4766 -220.76.192.0/18 4766 -220.77.0.0/20 4766 -220.77.16.0/22 4766 -220.77.20.0/24 4766 -220.77.21.0/24 17611 -220.77.22.0/23 4766 -220.77.24.0/21 4766 -220.77.32.0/21 4766 -220.77.40.0/23 4766 -220.77.42.0/24 4766 -220.77.43.0/24 17611 -220.77.44.0/22 4766 -220.77.48.0/20 4766 -220.77.64.0/18 4766 -220.77.128.0/19 4766 -220.77.160.0/20 4766 -220.77.176.0/23 9631 -220.77.178.0/23 4766 -220.77.180.0/22 4766 -220.77.184.0/21 4766 -220.77.192.0/18 4766 -220.78.0.0/17 4766 -220.78.128.0/22 4766 -220.78.132.0/23 4766 -220.78.134.0/24 9577 -220.78.135.0/24 4766 -220.78.136.0/21 4766 -220.78.144.0/20 4766 -220.78.160.0/19 4766 -220.78.192.0/18 4766 -220.79.0.0/17 4766 -220.79.128.0/18 4766 -220.79.192.0/20 4766 -220.79.208.0/21 4766 -220.79.216.0/22 4766 -220.79.220.0/24 38431 -220.79.221.0/24 4766 -220.79.222.0/23 4766 -220.79.224.0/19 4766 -220.80.0.0/16 4766 -220.81.0.0/17 4766 -220.81.128.0/18 4766 -220.81.192.0/23 4766 -220.81.194.0/24 4766 -220.81.195.0/24 9523 -220.81.196.0/22 9523 -220.81.200.0/21 4766 -220.81.208.0/20 4766 -220.81.224.0/19 4766 -220.82.0.0/21 18035 -220.82.8.0/21 4766 -220.82.16.0/20 4766 -220.82.32.0/19 4766 -220.82.64.0/18 4766 -220.82.128.0/17 4766 -220.83.0.0/19 4766 -220.83.32.0/22 23743 -220.83.36.0/22 4766 -220.83.40.0/21 4766 -220.83.48.0/20 4766 -220.83.64.0/18 4766 -220.83.128.0/20 4766 -220.83.144.0/21 4766 -220.83.152.0/22 4766 -220.83.156.0/23 55615 -220.83.158.0/23 4766 -220.83.160.0/19 4766 -220.83.192.0/19 4766 -220.83.224.0/21 4766 -220.83.232.0/22 4766 -220.83.236.0/24 4766 -220.83.237.0/24 17856 -220.83.238.0/23 4766 -220.83.240.0/20 4766 -220.84.0.0/16 4766 -220.85.0.0/17 4766 -220.85.128.0/19 4766 -220.85.160.0/20 4766 -220.85.176.0/21 4766 -220.85.184.0/22 4766 -220.85.188.0/24 9696 -220.85.189.0/24 4766 -220.85.190.0/23 4766 -220.85.192.0/20 4766 -220.85.208.0/21 4766 -220.85.216.0/22 4766 -220.85.220.0/23 4766 -220.85.222.0/24 4766 -220.85.223.0/24 9778 -220.85.224.0/19 4766 -220.86.0.0/15 4766 -220.88.0.0/17 4766 -220.88.128.0/20 4766 -220.88.144.0/21 4766 -220.88.152.0/22 4766 -220.88.156.0/24 9318 -220.88.157.0/24 4766 -220.88.158.0/23 4766 -220.88.160.0/19 4766 -220.88.192.0/18 4766 -220.89.0.0/16 4766 -220.90.0.0/18 4766 -220.90.64.0/19 4766 -220.90.96.0/20 4766 -220.90.112.0/22 4766 -220.90.116.0/24 4766 -220.90.117.0/24 9778 -220.90.118.0/23 9778 -220.90.120.0/24 9778 -220.90.121.0/24 4766 -220.90.122.0/23 38695 -220.90.124.0/24 38695 -220.90.125.0/24 4766 -220.90.126.0/23 4766 -220.90.128.0/19 4766 -220.90.160.0/20 4766 -220.90.176.0/21 9782 -220.90.184.0/23 9782 -220.90.186.0/24 4766 -220.90.187.0/24 9782 -220.90.188.0/22 9782 -220.90.192.0/22 9782 -220.90.196.0/23 9782 -220.90.198.0/24 4766 -220.90.199.0/24 55593 -220.90.200.0/21 4766 -220.90.208.0/22 4766 -220.90.212.0/23 4766 -220.90.214.0/24 23556 -220.90.215.0/24 4766 -220.90.216.0/21 4766 -220.90.224.0/20 4766 -220.90.240.0/21 4766 -220.90.248.0/23 4766 -220.90.250.0/23 9949 -220.90.252.0/22 4766 -220.91.0.0/16 4766 -220.92.0.0/19 4766 -220.92.32.0/20 4766 -220.92.48.0/21 4766 -220.92.56.0/22 4766 -220.92.60.0/23 4766 -220.92.62.0/23 9708 -220.92.64.0/23 9708 -220.92.66.0/24 9708 -220.92.67.0/24 4766 -220.92.68.0/22 4766 -220.92.72.0/21 4766 -220.92.80.0/23 4766 -220.92.82.0/24 4766 -220.92.83.0/24 55620 -220.92.84.0/24 55620 -220.92.85.0/24 4766 -220.92.86.0/23 4766 -220.92.88.0/21 4766 -220.92.96.0/19 4766 -220.92.128.0/19 4766 -220.92.160.0/21 4766 -220.92.168.0/22 4766 -220.92.172.0/23 4766 -220.92.174.0/24 4766 -220.92.175.0/24 55620 -220.92.176.0/20 4766 -220.92.192.0/18 4766 -220.93.0.0/16 4766 -220.94.0.0/17 4766 -220.94.128.0/19 4766 -220.94.160.0/24 38697 -220.94.161.0/24 4766 -220.94.162.0/23 4766 -220.94.164.0/22 4766 -220.94.168.0/21 4766 -220.94.176.0/20 4766 -220.94.192.0/18 4766 -220.95.0.0/17 4766 -220.95.128.0/20 18330 -220.95.144.0/21 18330 -220.95.152.0/21 4766 -220.95.160.0/19 4766 -220.95.192.0/18 4766 -220.96.0.0/14 4713 -220.100.0.0/17 2497 -220.100.128.0/19 61215 -220.100.160.0/20 59258 -220.100.192.0/18 2497 -220.101.0.0/19 7474 -220.101.32.0/20 7474 -220.101.48.0/22 7474 -220.101.52.0/24 26380 -220.101.53.0/24 7474 -220.101.54.0/23 7474 -220.101.56.0/22 58780 -220.101.60.0/22 7474 -220.101.64.0/21 7474 -220.101.72.0/24 134065 -220.101.73.0/24 7474 -220.101.74.0/23 7474 -220.101.76.0/22 7474 -220.101.80.0/23 7474 -220.101.82.0/24 138475 -220.101.83.0/24 7474 -220.101.84.0/22 7474 -220.101.88.0/21 7474 -220.101.96.0/19 7474 -220.101.192.0/18 9811 -220.102.0.0/16 2518 -220.103.0.0/16 9644 -220.104.0.0/13 4713 -220.112.0.0/19 17623 -220.112.32.0/20 17623 -220.112.48.0/21 24143 -220.112.56.0/21 17623 -220.112.192.0/23 24143 -220.112.194.0/23 17623 -220.112.196.0/22 24143 -220.112.200.0/21 24143 -220.112.208.0/20 9395 -220.112.224.0/19 17623 -220.113.0.0/19 4847 -220.113.32.0/20 4847 -220.113.48.0/20 17430 -220.113.64.0/18 7497 -220.113.128.0/21 17430 -220.113.136.0/22 17430 -220.113.144.0/22 17430 -220.113.148.0/23 17430 -220.113.150.0/23 24143 -220.113.152.0/21 24143 -220.113.160.0/21 24143 -220.113.168.0/21 17430 -220.113.176.0/22 4847 -220.113.180.0/22 17430 -220.113.184.0/22 17430 -220.113.224.0/19 17623 -220.114.16.0/20 17964 -220.114.64.0/21 17430 -220.114.128.0/18 4847 -220.114.204.0/22 17964 -220.114.208.0/20 17964 -220.114.224.0/21 17964 -220.114.248.0/23 17430 -220.114.250.0/23 4837 -220.114.252.0/22 17964 -220.115.8.0/21 17430 -220.115.16.0/20 17430 -220.115.32.0/19 17623 -220.115.128.0/20 4847 -220.115.144.0/22 17964 -220.115.148.0/22 7497 -220.115.152.0/21 7497 -220.115.160.0/19 17964 -220.115.192.0/19 17964 -220.115.224.0/22 17964 -220.115.228.0/22 17430 -220.115.232.0/21 17430 -220.115.240.0/21 17430 -220.116.0.0/20 4766 -220.116.16.0/21 4766 -220.116.24.0/22 4766 -220.116.28.0/23 38113 -220.116.30.0/23 4766 -220.116.32.0/19 4766 -220.116.64.0/18 4766 -220.116.128.0/19 4766 -220.116.160.0/20 4766 -220.116.176.0/21 4766 -220.116.184.0/22 4766 -220.116.188.0/23 4766 -220.116.190.0/24 4766 -220.116.191.0/24 18335 -220.116.192.0/18 4766 -220.117.0.0/16 4766 -220.118.0.0/19 4766 -220.118.32.0/20 4766 -220.118.48.0/22 4766 -220.118.52.0/24 9948 -220.118.53.0/24 4766 -220.118.54.0/23 4766 -220.118.56.0/21 4766 -220.118.64.0/18 4766 -220.118.128.0/20 4766 -220.118.144.0/21 4766 -220.118.152.0/22 4766 -220.118.156.0/24 23556 -220.118.157.0/24 4766 -220.118.158.0/23 4766 -220.118.160.0/19 4766 -220.118.192.0/18 4766 -220.119.0.0/19 4766 -220.119.32.0/21 4766 -220.119.40.0/22 4766 -220.119.44.0/23 9870 -220.119.46.0/24 9870 -220.119.47.0/24 4766 -220.119.48.0/20 4766 -220.119.64.0/18 4766 -220.119.128.0/18 4766 -220.119.192.0/19 4766 -220.119.224.0/20 4766 -220.119.240.0/21 4766 -220.119.248.0/22 9631 -220.119.252.0/22 4766 -220.120.0.0/18 4766 -220.120.64.0/19 4766 -220.120.96.0/20 4766 -220.120.112.0/21 4766 -220.120.120.0/22 4766 -220.120.124.0/23 4766 -220.120.126.0/24 4766 -220.120.127.0/24 38401 -220.120.128.0/24 4766 -220.120.129.0/24 38400 -220.120.130.0/23 4766 -220.120.132.0/22 4766 -220.120.136.0/21 4766 -220.120.144.0/20 4766 -220.120.160.0/20 4766 -220.120.176.0/22 4766 -220.120.180.0/23 4766 -220.120.182.0/23 9572 -220.120.184.0/21 4766 -220.120.192.0/18 4766 -220.121.0.0/16 4766 -220.122.0.0/16 4766 -220.123.0.0/18 4766 -220.123.64.0/21 4766 -220.123.72.0/22 4766 -220.123.76.0/23 4766 -220.123.78.0/24 4766 -220.123.79.0/24 17856 -220.123.80.0/22 23552 -220.123.84.0/22 4766 -220.123.88.0/21 4766 -220.123.96.0/20 4766 -220.123.112.0/21 4766 -220.123.120.0/22 4766 -220.123.124.0/23 4766 -220.123.126.0/23 17856 -220.123.128.0/17 4766 -220.124.0.0/14 4766 -220.128.0.0/19 3462 -220.128.32.0/20 3462 -220.128.48.0/23 9505 -220.128.50.0/24 9505 -220.128.51.0/24 33717 -220.128.52.0/23 9505 -220.128.54.0/24 9505 -220.128.55.0/24 33717 -220.128.56.0/22 10126 -220.128.60.0/23 10126 -220.128.62.0/24 3462 -220.128.63.0/24 10126 -220.128.64.0/24 10126 -220.128.65.0/24 3462 -220.128.66.0/23 10126 -220.128.68.0/22 10126 -220.128.72.0/22 10126 -220.128.76.0/24 10126 -220.128.77.0/24 3462 -220.128.78.0/23 10126 -220.128.80.0/24 3462 -220.128.81.0/24 10126 -220.128.82.0/23 3462 -220.128.84.0/22 10126 -220.128.88.0/21 10126 -220.128.96.0/19 3462 -220.128.128.0/17 3462 -220.129.0.0/16 3462 -220.130.0.0/15 3462 -220.132.0.0/14 3462 -220.136.0.0/13 3462 -220.144.0.0/16 2518 -220.145.0.0/16 2510 -220.146.0.0/15 2510 -220.148.0.0/16 10010 -220.149.0.0/20 18401 -220.149.16.0/23 4766 -220.149.18.0/24 4766 -220.149.19.0/24 9962 -220.149.20.0/22 9962 -220.149.24.0/21 18031 -220.149.32.0/22 17599 -220.149.36.0/22 9962 -220.149.40.0/22 18026 -220.149.44.0/22 17862 -220.149.52.0/22 18164 -220.149.56.0/23 38668 -220.149.60.0/22 3786 -220.149.64.0/23 9949 -220.149.66.0/24 9949 -220.149.67.0/24 9318 -220.149.68.0/22 9777 -220.149.72.0/21 18023 -220.149.81.0/24 9318 -220.149.82.0/23 9318 -220.149.84.0/22 9318 -220.149.88.0/23 9318 -220.149.90.0/23 10190 -220.149.92.0/24 4766 -220.149.94.0/23 38694 -220.149.96.0/21 10190 -220.149.104.0/21 4766 -220.149.112.0/22 4766 -220.149.116.0/23 38694 -220.149.118.0/24 4766 -220.149.119.0/24 23668 -220.149.120.0/24 23668 -220.149.121.0/24 3786 -220.149.122.0/23 3786 -220.149.124.0/22 3786 -220.149.128.0/24 23668 -220.149.129.0/24 4766 -220.149.130.0/23 4766 -220.149.132.0/22 3786 -220.149.136.0/21 4766 -220.149.144.0/21 3786 -220.149.152.0/22 4766 -220.149.156.0/23 9949 -220.149.158.0/23 4766 -220.149.160.0/22 3786 -220.149.164.0/22 4766 -220.149.168.0/23 3786 -220.149.175.0/24 3786 -220.149.176.0/24 4766 -220.149.179.0/24 4766 -220.149.180.0/22 4766 -220.149.185.0/24 4766 -220.149.186.0/24 4766 -220.149.187.0/24 3786 -220.149.188.0/22 3786 -220.149.192.0/21 10159 -220.149.200.0/23 10159 -220.149.202.0/23 18331 -220.149.204.0/23 18331 -220.149.206.0/24 18331 -220.149.208.0/23 4766 -220.149.210.0/23 9965 -220.149.212.0/22 9965 -220.149.216.0/23 23668 -220.149.218.0/24 23668 -220.149.219.0/24 4766 -220.149.220.0/22 4766 -220.149.224.0/19 4766 -220.150.0.0/20 10013 -220.150.20.0/22 10013 -220.150.24.0/21 10013 -220.150.48.0/20 7522 -220.150.68.0/22 10013 -220.150.72.0/21 10013 -220.150.83.0/24 10013 -220.150.89.0/24 10013 -220.150.90.0/23 10013 -220.150.92.0/22 10013 -220.150.208.0/21 10013 -220.150.216.0/23 10013 -220.151.0.0/16 17506 -220.152.0.0/18 9824 -220.152.64.0/19 9824 -220.152.96.0/20 23808 -220.152.112.0/22 58689 -220.152.120.0/21 9993 -220.152.128.0/17 17816 -220.153.0.0/17 18081 -220.153.128.0/18 18081 -220.156.0.0/17 2497 -220.156.128.0/19 2497 -220.156.160.0/20 17480 -220.156.176.0/21 23767 -220.156.184.0/23 38185 -220.156.186.0/24 38185 -220.156.188.0/23 38185 -220.156.190.0/23 55824 -220.156.192.0/18 18260 -220.157.0.0/18 9595 -220.157.64.0/24 45411 -220.157.65.0/24 9723 -220.157.66.0/23 9723 -220.157.68.0/24 9268 -220.157.69.0/24 9723 -220.157.70.0/23 9723 -220.157.72.0/24 9723 -220.157.73.0/24 45411 -220.157.74.0/23 9268 -220.157.76.0/24 45411 -220.157.77.0/24 9723 -220.157.78.0/23 9723 -220.157.80.0/20 9723 -220.157.96.0/20 9785 -220.157.112.0/20 9416 -220.157.128.0/17 4685 -220.158.0.0/17 2519 -220.158.132.0/23 41095 -220.158.136.0/22 134059 -220.158.140.0/22 132556 -220.158.148.0/22 134708 -220.158.160.0/22 133275 -220.158.164.0/24 133712 -220.158.167.0/24 134279 -220.158.176.0/22 134331 -220.158.192.0/22 62468 -220.158.196.0/22 43289 -220.158.200.0/23 55720 -220.158.204.0/22 134712 -220.158.212.0/22 133075 -220.158.216.0/22 49544 -220.158.220.0/22 24016 -220.158.224.0/22 26658 -220.158.229.0/24 18046 -220.158.230.0/23 18046 -220.158.232.0/24 133374 -220.158.234.0/23 133374 -220.158.236.0/22 134715 -220.158.244.0/22 26658 -220.158.248.0/22 4686 -220.158.252.0/22 26658 -220.159.21.0/24 9605 -220.159.22.0/23 9605 -220.159.28.0/24 9605 -220.159.30.0/23 9605 -220.159.32.0/20 9605 -220.159.53.0/24 9605 -220.159.54.0/23 9605 -220.159.56.0/24 9605 -220.159.60.0/22 9605 -220.159.64.0/18 9605 -220.159.128.0/18 9605 -220.159.208.0/20 9605 -220.159.224.0/22 9605 -220.159.230.0/23 9605 -220.159.232.0/23 9605 -220.159.236.0/22 9605 -220.159.250.0/23 9605 -220.160.0.0/15 4134 -220.162.0.0/17 4134 -220.162.128.0/18 4134 -220.162.192.0/19 4134 -220.162.224.0/21 4134 -220.162.232.0/22 4134 -220.162.236.0/24 4134 -220.162.237.0/24 133774 -220.162.238.0/23 133774 -220.162.240.0/24 133774 -220.162.241.0/24 4134 -220.162.242.0/24 133774 -220.162.243.0/24 4134 -220.162.244.0/24 133774 -220.162.245.0/24 4134 -220.162.246.0/23 133774 -220.162.248.0/21 4134 -220.163.0.0/16 4134 -220.164.0.0/16 4134 -220.165.0.0/22 134765 -220.165.4.0/23 134765 -220.165.6.0/24 4134 -220.165.7.0/24 134765 -220.165.8.0/21 134765 -220.165.16.0/20 4134 -220.165.32.0/19 4134 -220.165.64.0/18 4134 -220.165.128.0/17 4134 -220.166.0.0/19 4134 -220.166.32.0/20 4134 -220.166.48.0/21 4134 -220.166.56.0/22 4134 -220.166.60.0/23 4134 -220.166.62.0/24 4134 -220.166.63.0/24 38283 -220.166.64.0/19 4134 -220.166.96.0/21 4134 -220.166.104.0/24 38283 -220.166.105.0/24 4134 -220.166.106.0/23 4134 -220.166.108.0/22 4134 -220.166.112.0/20 4134 -220.166.128.0/19 4134 -220.166.160.0/20 4134 -220.166.176.0/22 4134 -220.166.180.0/24 38283 -220.166.181.0/24 4134 -220.166.182.0/23 4134 -220.166.184.0/21 4134 -220.166.192.0/18 4134 -220.167.0.0/18 4134 -220.167.64.0/21 4134 -220.167.72.0/22 4134 -220.167.76.0/22 4809 -220.167.80.0/20 4134 -220.167.96.0/22 4134 -220.167.100.0/22 38283 -220.167.104.0/22 4134 -220.167.108.0/23 38283 -220.167.110.0/24 38283 -220.167.111.0/24 4134 -220.167.112.0/20 4134 -220.167.128.0/17 4134 -220.168.0.0/14 4134 -220.172.0.0/16 4134 -220.173.0.0/17 4134 -220.173.128.0/18 4134 -220.173.192.0/20 4134 -220.173.208.0/21 4134 -220.173.216.0/21 134419 -220.173.224.0/21 134419 -220.173.232.0/21 4134 -220.173.240.0/20 4134 -220.174.0.0/15 4134 -220.176.0.0/16 4134 -220.177.0.0/20 4134 -220.177.16.0/22 4134 -220.177.20.0/23 4134 -220.177.22.0/24 139201 -220.177.23.0/24 4134 -220.177.24.0/21 4134 -220.177.32.0/19 4134 -220.177.64.0/18 4134 -220.177.128.0/17 4134 -220.178.0.0/15 4134 -220.180.0.0/16 4134 -220.181.0.0/19 23724 -220.181.32.0/20 23724 -220.181.48.0/21 23724 -220.181.56.0/22 23724 -220.181.60.0/23 23724 -220.181.62.0/23 4847 -220.181.64.0/18 23724 -220.181.128.0/20 23724 -220.181.144.0/24 23724 -220.181.145.0/24 4134 -220.181.146.0/23 4134 -220.181.148.0/22 23724 -220.181.152.0/21 23724 -220.181.160.0/24 23724 -220.181.161.0/24 4847 -220.181.162.0/23 23724 -220.181.164.0/22 23724 -220.181.168.0/21 23724 -220.181.176.0/24 4847 -220.181.177.0/24 23724 -220.181.178.0/23 23724 -220.181.180.0/22 23724 -220.181.184.0/22 23724 -220.181.188.0/23 23724 -220.181.190.0/23 4847 -220.181.192.0/18 4134 -220.182.0.0/18 4134 -220.184.0.0/16 4134 -220.185.0.0/17 4134 -220.185.128.0/19 4134 -220.185.160.0/24 136190 -220.185.161.0/24 4134 -220.185.162.0/23 4134 -220.185.164.0/22 4134 -220.185.168.0/21 4134 -220.185.176.0/20 4134 -220.185.192.0/18 4134 -220.186.0.0/16 4134 -220.187.0.0/17 4134 -220.187.128.0/18 4134 -220.187.192.0/19 4134 -220.187.224.0/20 4134 -220.187.240.0/22 4134 -220.187.244.0/23 4134 -220.187.246.0/24 4134 -220.187.247.0/24 58461 -220.187.248.0/21 4134 -220.188.0.0/16 4134 -220.189.0.0/17 4134 -220.189.128.0/18 4134 -220.189.192.0/20 4134 -220.189.208.0/21 4134 -220.189.216.0/22 4134 -220.189.220.0/24 4134 -220.189.221.0/24 136188 -220.189.222.0/23 4134 -220.189.224.0/19 4134 -220.190.0.0/16 4134 -220.191.0.0/17 4134 -220.191.128.0/19 4134 -220.191.160.0/19 4809 -220.191.192.0/23 4134 -220.191.194.0/23 58461 -220.191.196.0/22 4134 -220.191.200.0/24 58461 -220.191.201.0/24 4134 -220.191.202.0/23 4134 -220.191.204.0/22 4134 -220.191.208.0/20 4134 -220.191.224.0/19 4134 -220.192.0.0/18 4837 -220.192.72.0/21 133119 -220.192.128.0/19 4837 -220.192.176.0/21 4837 -220.192.192.0/18 4837 -220.193.0.0/17 4837 -220.194.0.0/18 4808 -220.194.64.0/18 4837 -220.194.128.0/20 4837 -220.194.144.0/21 4837 -220.194.152.0/22 4837 -220.194.156.0/23 4837 -220.194.158.0/24 4837 -220.194.159.0/24 9929 -220.194.160.0/19 4837 -220.194.192.0/18 4837 -220.195.0.0/16 4837 -220.196.0.0/17 17621 -220.196.128.0/18 17621 -220.196.192.0/19 17621 -220.196.224.0/19 138421 -220.197.0.0/17 4837 -220.197.160.0/19 4837 -220.197.192.0/18 4837 -220.198.0.0/17 17816 -220.198.128.0/18 17816 -220.198.192.0/18 17622 -220.199.0.0/22 17816 -220.199.4.0/23 17816 -220.199.6.0/24 17622 -220.199.7.0/24 17816 -220.199.8.0/21 17816 -220.199.16.0/20 17816 -220.199.32.0/19 17816 -220.199.64.0/18 17816 -220.199.128.0/17 17816 -220.200.0.0/17 4837 -220.200.128.0/20 4837 -220.200.148.0/22 4837 -220.200.152.0/21 4837 -220.200.160.0/19 4837 -220.200.192.0/18 4837 -220.201.0.0/16 4837 -220.202.0.0/16 4837 -220.203.32.0/19 4837 -220.203.216.0/23 17622 -220.205.120.0/22 4837 -220.206.192.0/22 4808 -220.207.0.0/22 4808 -220.207.80.0/20 4808 -220.207.176.0/22 4808 -220.207.184.0/22 4837 -220.207.254.0/23 4808 -220.208.0.0/19 7522 -220.208.32.0/19 7524 -220.208.64.0/18 4721 -220.208.128.0/18 18282 -220.208.192.0/19 2497 -220.208.224.0/19 17698 -220.209.0.0/16 2510 -220.210.0.0/20 9605 -220.210.16.0/22 9605 -220.210.20.0/23 9605 -220.210.22.0/24 9605 -220.210.25.0/24 9605 -220.210.26.0/24 9605 -220.210.28.0/22 9605 -220.210.32.0/19 9605 -220.210.64.0/20 9605 -220.210.80.0/22 9605 -220.210.88.0/21 9605 -220.210.96.0/21 9605 -220.210.104.0/23 9605 -220.210.108.0/22 9605 -220.210.112.0/20 9605 -220.210.128.0/18 2497 -220.210.192.0/19 9595 -220.210.224.0/19 18144 -220.211.0.0/16 2527 -220.212.0.0/16 4725 -220.213.0.0/18 9595 -220.213.64.0/19 9595 -220.213.96.0/19 17961 -220.213.128.0/19 17961 -220.213.160.0/20 17961 -220.213.176.0/21 17961 -220.213.184.0/22 17961 -220.213.188.0/23 23777 -220.213.190.0/23 17961 -220.213.192.0/19 17698 -220.213.224.0/20 9993 -220.213.240.0/20 2522 -220.214.0.0/16 2516 -220.215.0.0/19 10013 -220.215.44.0/22 10013 -220.215.96.0/19 10013 -220.215.128.0/17 9365 -220.216.0.0/17 10010 -220.216.128.0/17 9595 -220.217.0.0/16 2516 -220.218.0.0/16 17506 -220.219.0.0/16 2510 -220.220.0.0/15 4713 -220.224.145.0/24 18101 -220.224.214.0/24 18101 -220.224.217.0/24 18101 -220.224.224.0/24 18101 -220.224.226.0/24 18101 -220.224.228.0/24 18101 -220.224.230.0/24 18101 -220.224.233.0/24 18101 -220.224.235.0/24 18101 -220.224.237.0/24 18101 -220.224.239.0/24 18101 -220.225.0.0/18 18101 -220.225.64.0/19 18101 -220.225.96.0/20 18101 -220.225.112.0/22 18101 -220.225.116.0/23 18101 -220.225.118.0/23 132215 -220.225.120.0/21 18101 -220.225.128.0/22 18101 -220.225.132.0/24 18101 -220.225.133.0/24 132215 -220.225.134.0/24 18101 -220.225.135.0/24 132215 -220.225.136.0/23 18101 -220.225.138.0/24 132215 -220.225.139.0/24 18101 -220.225.140.0/22 18101 -220.225.144.0/21 18101 -220.225.152.0/23 18101 -220.225.154.0/24 132215 -220.225.155.0/24 18101 -220.225.156.0/24 18101 -220.225.157.0/24 132215 -220.225.158.0/23 132215 -220.225.160.0/22 18101 -220.225.164.0/24 132215 -220.225.165.0/24 18101 -220.225.166.0/23 18101 -220.225.168.0/21 18101 -220.225.176.0/20 18101 -220.225.192.0/18 18101 -220.226.0.0/19 18101 -220.226.96.0/20 18101 -220.226.128.0/23 18101 -220.226.134.0/23 18101 -220.226.138.0/24 18101 -220.226.142.0/23 18101 -220.226.144.0/24 18101 -220.226.148.0/24 18101 -220.226.152.0/23 18101 -220.226.154.0/24 18101 -220.226.158.0/23 18101 -220.226.164.0/23 18101 -220.226.168.0/23 18101 -220.226.170.0/24 18101 -220.226.174.0/23 18101 -220.226.176.0/20 18101 -220.226.192.0/20 18101 -220.226.208.0/21 18101 -220.226.216.0/22 18101 -220.226.220.0/23 18101 -220.226.222.0/24 18101 -220.227.0.0/17 18101 -220.227.128.0/19 18101 -220.227.160.0/20 18101 -220.227.176.0/22 18101 -220.227.180.0/23 18101 -220.227.182.0/24 18101 -220.227.183.0/24 20940 -220.227.184.0/21 18101 -220.227.192.0/18 18101 -220.228.0.0/16 9919 -220.229.0.0/18 9919 -220.229.64.0/23 9919 -220.229.66.0/23 4780 -220.229.68.0/22 4780 -220.229.72.0/21 9919 -220.229.80.0/20 9919 -220.229.96.0/19 9919 -220.229.128.0/17 9919 -220.230.0.0/19 9457 -220.230.32.0/20 9457 -220.230.48.0/21 9457 -220.230.56.0/22 9457 -220.230.60.0/24 38676 -220.230.61.0/24 9457 -220.230.62.0/23 9457 -220.230.64.0/21 9457 -220.230.72.0/22 9457 -220.230.76.0/23 9457 -220.230.78.0/24 38676 -220.230.79.0/24 9457 -220.230.80.0/20 9457 -220.230.96.0/20 9457 -220.230.112.0/20 23576 -220.230.128.0/21 9457 -220.230.136.0/23 9457 -220.230.138.0/24 9457 -220.230.139.0/24 10037 -220.230.140.0/22 9457 -220.230.144.0/20 9457 -220.230.160.0/21 9457 -220.230.168.0/23 23576 -220.230.170.0/23 9457 -220.230.172.0/22 9457 -220.230.176.0/21 9457 -220.230.184.0/22 23576 -220.230.188.0/22 9457 -220.230.192.0/20 9457 -220.230.208.0/22 9457 -220.230.212.0/23 9457 -220.230.214.0/24 38676 -220.230.215.0/24 9457 -220.230.216.0/21 9457 -220.230.224.0/19 9457 -220.231.0.0/18 23844 -220.231.64.0/18 7552 -220.231.128.0/18 4134 -220.231.192.0/18 17623 -220.232.56.0/22 7473 -220.232.64.0/18 9812 -220.232.128.0/22 2706 -220.232.132.0/22 7468 -220.232.136.0/21 2706 -220.232.144.0/22 2706 -220.232.148.0/23 2706 -220.232.150.0/24 2706 -220.232.151.0/24 9381 -220.232.152.0/22 2706 -220.232.156.0/22 7468 -220.232.160.0/23 2706 -220.232.166.0/23 2706 -220.232.168.0/21 2706 -220.232.176.0/22 2706 -220.232.180.0/22 7468 -220.232.184.0/24 2706 -220.232.185.0/24 9381 -220.232.186.0/23 2706 -220.232.188.0/24 9381 -220.232.189.0/24 2706 -220.232.190.0/23 2706 -220.232.192.0/22 2706 -220.232.196.0/23 2706 -220.232.198.0/24 2706 -220.232.199.0/24 9381 -220.232.200.0/22 2706 -220.232.204.0/24 4637 -220.232.205.0/24 2706 -220.232.206.0/23 2706 -220.232.208.0/23 2706 -220.232.210.0/24 2706 -220.232.211.0/24 7468 -220.232.212.0/22 2706 -220.232.216.0/24 2706 -220.232.217.0/24 9381 -220.232.218.0/23 2706 -220.232.220.0/23 2706 -220.232.222.0/24 9381 -220.232.223.0/24 2706 -220.232.224.0/21 2706 -220.232.232.0/22 2706 -220.232.236.0/23 2706 -220.232.238.0/24 2706 -220.232.239.0/24 9381 -220.232.240.0/24 2706 -220.232.241.0/24 9381 -220.232.242.0/24 2706 -220.232.243.0/24 4637 -220.232.244.0/23 2706 -220.232.246.0/24 2706 -220.232.247.0/24 9381 -220.232.248.0/22 2706 -220.232.252.0/24 2706 -220.232.253.0/24 9381 -220.232.255.0/24 9381 -220.233.0.0/16 10143 -220.234.0.0/16 9812 -220.235.0.0/19 7545 -220.235.32.0/20 7545 -220.235.48.0/20 4739 -220.235.64.0/18 4739 -220.235.128.0/17 7545 -220.236.0.0/14 4804 -220.240.0.0/16 7545 -220.241.0.0/18 4515 -220.241.64.0/20 4515 -220.241.80.0/23 4515 -220.241.82.0/24 4515 -220.241.83.0/24 17487 -220.241.84.0/22 4515 -220.241.88.0/21 4515 -220.241.96.0/19 4515 -220.241.128.0/20 4515 -220.241.144.0/22 4515 -220.241.148.0/24 4515 -220.241.149.0/24 4760 -220.241.150.0/23 4515 -220.241.152.0/21 4515 -220.241.160.0/19 4515 -220.241.192.0/19 4515 -220.241.224.0/20 4515 -220.241.240.0/21 4515 -220.241.248.0/22 4515 -220.241.252.0/23 4515 -220.241.254.0/24 4515 -220.241.255.0/24 9263 -220.242.2.0/23 54994 -220.242.4.0/23 54994 -220.242.7.0/24 54994 -220.242.9.0/24 54994 -220.242.10.0/23 54994 -220.242.15.0/24 54994 -220.242.16.0/24 54994 -220.242.24.0/21 54994 -220.242.50.0/23 54994 -220.242.52.0/24 17442 -220.242.54.0/24 54994 -220.242.63.0/24 54994 -220.242.127.0/24 54994 -220.242.128.0/22 54994 -220.242.132.0/23 54994 -220.242.136.0/21 54994 -220.242.144.0/21 54994 -220.242.152.0/23 54994 -220.242.154.0/24 54994 -220.242.155.0/24 38107 -220.242.156.0/24 38107 -220.242.157.0/24 54994 -220.242.158.0/23 54994 -220.242.160.0/24 38107 -220.242.161.0/24 54994 -220.242.162.0/23 54994 -220.242.164.0/22 54994 -220.242.168.0/22 54994 -220.242.172.0/24 54994 -220.242.174.0/23 54994 -220.242.176.0/22 54994 -220.242.180.0/23 54994 -220.242.182.0/24 54994 -220.242.184.0/21 54994 -220.242.192.0/22 54994 -220.242.196.0/24 54994 -220.242.198.0/23 54994 -220.242.200.0/22 54994 -220.242.204.0/24 54994 -220.242.206.0/24 54994 -220.242.208.0/24 48737 -220.242.209.0/24 54994 -220.242.210.0/23 54994 -220.242.212.0/23 54994 -220.242.214.0/24 54994 -220.243.128.0/20 4808 -220.243.144.0/20 23724 -220.243.160.0/20 23724 -220.243.176.0/20 4808 -220.243.195.0/24 54994 -220.243.197.0/24 54994 -220.243.202.0/24 54994 -220.243.205.0/24 54994 -220.243.206.0/23 54994 -220.243.208.0/22 54994 -220.243.212.0/24 54994 -220.243.215.0/24 54994 -220.243.219.0/24 54994 -220.243.222.0/24 54994 -220.243.224.0/24 54994 -220.243.231.0/24 54994 -220.243.232.0/24 54994 -220.243.236.0/24 54994 -220.243.240.0/23 54994 -220.243.242.0/24 54994 -220.243.245.0/24 54994 -220.243.248.0/24 54994 -220.243.253.0/24 54994 -220.244.0.0/15 7545 -220.246.0.0/19 4515 -220.246.32.0/19 4760 -220.246.64.0/18 4760 -220.246.128.0/17 4760 -220.247.0.0/17 2519 -220.247.128.0/22 134970 -220.247.132.0/23 18353 -220.247.134.0/24 18353 -220.247.144.0/20 24555 -220.247.160.0/21 38200 -220.247.168.0/21 9341 -220.247.176.0/24 9627 -220.247.182.0/24 9627 -220.247.184.0/21 17958 -220.247.192.0/18 9329 -220.248.0.0/17 17621 -220.248.128.0/18 4837 -220.248.192.0/21 4837 -220.248.200.0/23 4837 -220.248.202.0/24 9929 -220.248.203.0/24 4837 -220.248.204.0/22 4837 -220.248.208.0/20 4837 -220.248.224.0/19 4837 -220.249.0.0/18 4808 -220.249.64.0/18 4837 -220.249.128.0/18 4837 -220.249.192.0/19 17816 -220.249.240.0/20 17623 -220.250.0.0/17 4837 -220.253.0.0/19 7545 -220.253.32.0/21 4802 -220.253.40.0/24 7545 -220.253.41.0/24 4802 -220.253.42.0/23 4802 -220.253.44.0/22 4802 -220.253.48.0/20 7545 -220.253.64.0/18 7545 -220.253.128.0/17 4739 -220.254.0.0/16 18268 -220.255.0.0/21 9506 -220.255.8.0/21 3758 -220.255.16.0/20 9506 -220.255.32.0/19 9506 -220.255.64.0/18 9506 -220.255.128.0/17 9506 -221.0.0.0/14 4837 -221.4.0.0/19 17816 -221.4.32.0/19 17622 -221.4.64.0/18 17816 -221.4.128.0/20 17816 -221.4.144.0/23 17816 -221.4.146.0/24 136959 -221.4.147.0/24 17816 -221.4.148.0/22 17816 -221.4.152.0/23 17816 -221.4.154.0/24 136959 -221.4.155.0/24 17816 -221.4.156.0/23 17816 -221.4.158.0/24 17816 -221.4.159.0/24 136959 -221.4.160.0/19 17816 -221.4.192.0/18 17816 -221.5.0.0/19 17816 -221.5.32.0/23 136958 -221.5.34.0/24 136958 -221.5.35.0/24 136959 -221.5.36.0/24 136958 -221.5.37.0/24 136959 -221.5.38.0/23 136958 -221.5.40.0/21 17816 -221.5.48.0/20 17816 -221.5.64.0/20 17816 -221.5.80.0/21 17816 -221.5.88.0/22 17816 -221.5.92.0/22 136958 -221.5.96.0/23 136959 -221.5.98.0/23 17816 -221.5.100.0/24 136959 -221.5.101.0/24 17816 -221.5.102.0/24 136959 -221.5.103.0/24 17816 -221.5.104.0/24 17816 -221.5.105.0/24 136959 -221.5.106.0/24 136958 -221.5.107.0/24 136959 -221.5.108.0/24 17816 -221.5.109.0/24 136958 -221.5.110.0/23 136958 -221.5.112.0/20 17816 -221.5.128.0/17 4837 -221.6.0.0/15 4837 -221.8.0.0/14 4837 -221.12.0.0/17 4837 -221.12.128.0/18 4837 -221.12.192.0/18 18144 -221.13.0.0/16 4837 -221.14.0.0/15 4837 -221.16.0.0/12 17676 -221.32.0.0/11 17676 -221.64.0.0/11 17676 -221.96.0.0/12 17676 -221.112.0.0/16 17506 -221.113.0.0/18 4685 -221.113.128.0/17 4713 -221.114.0.0/15 17506 -221.116.0.0/15 17506 -221.118.0.0/16 9354 -221.119.0.0/16 2516 -221.120.0.0/20 17421 -221.120.19.0/24 17421 -221.120.20.0/24 17421 -221.120.23.0/24 17421 -221.120.24.0/24 17421 -221.120.25.0/24 3462 -221.120.26.0/23 17421 -221.120.30.0/23 17421 -221.120.32.0/23 17421 -221.120.34.0/24 17421 -221.120.36.0/23 17421 -221.120.38.0/24 17421 -221.120.40.0/21 17421 -221.120.48.0/22 17421 -221.120.52.0/24 17421 -221.120.56.0/24 17421 -221.120.60.0/22 17421 -221.120.64.0/20 17421 -221.120.80.0/23 17421 -221.120.86.0/24 17421 -221.120.96.0/21 38192 -221.120.104.0/24 17817 -221.120.109.0/24 38188 -221.120.110.0/24 38188 -221.120.112.0/20 7700 -221.120.128.0/20 4857 -221.120.144.0/23 4857 -221.120.160.0/22 38901 -221.120.164.0/22 133736 -221.120.168.0/21 18070 -221.120.176.0/23 17975 -221.120.179.0/24 17975 -221.120.180.0/22 17975 -221.120.187.0/24 17975 -221.120.188.0/22 17975 -221.120.192.0/24 17557 -221.120.193.0/24 9557 -221.120.194.0/24 9557 -221.120.195.0/24 17557 -221.120.196.0/22 17557 -221.120.200.0/24 9557 -221.120.201.0/24 17557 -221.120.202.0/23 9557 -221.120.204.0/24 9557 -221.120.205.0/24 17557 -221.120.206.0/23 17557 -221.120.208.0/24 9557 -221.120.209.0/24 17557 -221.120.210.0/23 17557 -221.120.212.0/24 17557 -221.120.213.0/24 17539 -221.120.214.0/23 17557 -221.120.216.0/22 17557 -221.120.220.0/24 9557 -221.120.221.0/24 17557 -221.120.222.0/23 17557 -221.120.224.0/21 17557 -221.120.232.0/23 17557 -221.120.234.0/24 55424 -221.120.235.0/24 17557 -221.120.236.0/22 17557 -221.120.240.0/20 17557 -221.121.0.0/18 7602 -221.121.64.0/19 9509 -221.121.128.0/19 45671 -221.121.176.0/21 18085 -221.121.184.0/21 45351 -221.121.192.0/18 17698 -221.122.0.0/19 23724 -221.122.32.0/20 23724 -221.122.48.0/20 4808 -221.122.64.0/18 4808 -221.122.128.0/17 23724 -221.123.128.0/21 23724 -221.123.136.0/23 23724 -221.123.138.0/24 23724 -221.123.139.0/24 24138 -221.123.140.0/22 23724 -221.123.144.0/20 23724 -221.123.160.0/19 23724 -221.123.192.0/18 23724 -221.124.0.0/14 9304 -221.128.64.0/23 4765 -221.128.67.0/24 4765 -221.128.68.0/23 4765 -221.128.70.0/24 4765 -221.128.72.0/24 4765 -221.128.74.0/23 4765 -221.128.76.0/24 4765 -221.128.78.0/24 4765 -221.128.80.0/24 4765 -221.128.82.0/23 4765 -221.128.84.0/23 4765 -221.128.86.0/24 4765 -221.128.92.0/22 4765 -221.128.96.0/24 4765 -221.128.100.0/22 4765 -221.128.111.0/24 4765 -221.128.112.0/23 4765 -221.128.114.0/24 4765 -221.128.117.0/24 4765 -221.128.120.0/24 4765 -221.128.122.0/24 4765 -221.128.124.0/22 4765 -221.129.16.0/21 24143 -221.129.64.0/20 24143 -221.129.80.0/21 24143 -221.129.230.0/23 24143 -221.129.240.0/20 24143 -221.130.0.0/19 56046 -221.130.32.0/20 56048 -221.130.48.0/20 56046 -221.130.64.0/19 56046 -221.130.96.0/20 56046 -221.130.112.0/20 9808 -221.130.128.0/18 9808 -221.130.192.0/21 9808 -221.130.200.0/23 9808 -221.130.202.0/24 9808 -221.130.203.0/24 24400 -221.130.204.0/22 24400 -221.130.208.0/20 9808 -221.130.224.0/19 9808 -221.131.0.0/18 56042 -221.131.64.0/18 56046 -221.131.128.0/18 56046 -221.131.192.0/18 56041 -221.132.16.0/20 45899 -221.132.32.0/21 45899 -221.132.47.0/24 45899 -221.132.48.0/21 45899 -221.132.64.0/19 17877 -221.132.96.0/20 131934 -221.132.112.0/22 38193 -221.132.116.0/23 38193 -221.132.118.0/23 138655 -221.132.121.0/24 17676 -221.132.122.0/23 18097 -221.132.128.0/18 4721 -221.133.0.0/19 7602 -221.133.32.0/20 38199 -221.133.48.0/22 9712 -221.133.52.0/23 9712 -221.133.54.0/24 9712 -221.133.55.0/24 55615 -221.133.56.0/21 9712 -221.133.64.0/18 17534 -221.133.128.0/18 9689 -221.133.192.0/19 703 -221.133.224.0/20 4812 -221.133.240.0/21 4812 -221.133.248.0/23 38363 -221.133.250.0/23 4837 -221.133.252.0/22 4837 -221.134.0.0/22 9583 -221.134.5.0/24 9583 -221.134.6.0/23 9583 -221.134.8.0/23 9583 -221.134.14.0/23 9583 -221.134.17.0/24 9583 -221.134.18.0/24 9583 -221.134.20.0/23 9583 -221.134.25.0/24 9583 -221.134.26.0/23 9583 -221.134.28.0/24 9583 -221.134.30.0/24 9583 -221.134.32.0/23 9583 -221.134.36.0/24 9583 -221.134.40.0/24 9583 -221.134.42.0/24 9583 -221.134.44.0/23 9583 -221.134.55.0/24 9583 -221.134.60.0/23 9583 -221.134.66.0/24 9583 -221.134.69.0/24 9583 -221.134.70.0/23 9583 -221.134.72.0/23 9583 -221.134.75.0/24 9583 -221.134.76.0/23 9583 -221.134.79.0/24 9583 -221.134.82.0/23 9583 -221.134.89.0/24 9583 -221.134.91.0/24 9583 -221.134.94.0/23 9583 -221.134.96.0/22 9583 -221.134.101.0/24 9583 -221.134.102.0/23 9583 -221.134.106.0/23 9583 -221.134.108.0/22 9583 -221.134.114.0/23 9583 -221.134.116.0/22 9583 -221.134.120.0/23 9583 -221.134.123.0/24 9583 -221.134.124.0/23 9583 -221.134.127.0/24 9583 -221.134.128.0/24 9583 -221.134.131.0/24 9583 -221.134.134.0/24 9583 -221.134.136.0/22 9583 -221.134.142.0/23 9583 -221.134.144.0/22 9583 -221.134.148.0/24 9583 -221.134.150.0/24 9583 -221.134.152.0/22 9583 -221.134.157.0/24 9583 -221.134.158.0/23 9583 -221.134.160.0/24 9583 -221.134.167.0/24 9583 -221.134.170.0/24 9583 -221.134.172.0/24 9583 -221.134.175.0/24 9583 -221.134.176.0/22 9583 -221.134.180.0/24 9583 -221.134.183.0/24 9583 -221.134.189.0/24 9583 -221.134.190.0/23 9583 -221.134.196.0/22 9583 -221.134.205.0/24 9583 -221.134.210.0/24 9583 -221.134.212.0/22 9583 -221.134.216.0/23 9583 -221.134.218.0/24 9583 -221.134.221.0/24 9583 -221.134.224.0/22 9583 -221.134.236.0/22 9583 -221.135.10.0/24 9583 -221.135.20.0/22 9583 -221.135.25.0/24 9583 -221.135.28.0/24 9583 -221.135.30.0/23 9583 -221.135.32.0/21 9583 -221.135.40.0/24 9583 -221.135.42.0/23 9583 -221.135.44.0/22 9583 -221.135.50.0/23 9583 -221.135.52.0/22 9583 -221.135.56.0/21 9583 -221.135.65.0/24 9583 -221.135.66.0/23 9583 -221.135.73.0/24 9583 -221.135.75.0/24 9583 -221.135.77.0/24 9583 -221.135.78.0/24 9583 -221.135.80.0/24 9583 -221.135.84.0/23 9583 -221.135.89.0/24 9583 -221.135.93.0/24 9583 -221.135.94.0/23 9583 -221.135.96.0/23 9583 -221.135.98.0/24 9583 -221.135.101.0/24 9583 -221.135.102.0/23 9583 -221.135.104.0/22 9583 -221.135.110.0/23 9583 -221.135.113.0/24 9583 -221.135.114.0/23 9583 -221.135.117.0/24 9583 -221.135.119.0/24 9583 -221.135.120.0/22 9583 -221.135.125.0/24 9583 -221.135.126.0/23 9583 -221.135.130.0/24 9583 -221.135.132.0/22 9583 -221.135.136.0/22 9583 -221.135.143.0/24 9583 -221.135.144.0/23 9583 -221.135.153.0/24 9583 -221.135.154.0/23 9583 -221.135.156.0/24 9583 -221.135.158.0/24 9583 -221.135.160.0/24 9583 -221.135.166.0/23 9583 -221.135.170.0/24 9583 -221.135.181.0/24 9583 -221.135.184.0/21 9583 -221.135.192.0/23 9583 -221.135.220.0/22 9583 -221.135.243.0/24 9583 -221.135.251.0/24 9583 -221.135.254.0/24 9583 -221.136.0.0/20 4134 -221.136.16.0/22 136188 -221.136.20.0/22 4134 -221.136.24.0/21 4134 -221.136.32.0/19 4134 -221.136.64.0/18 4134 -221.136.128.0/17 4134 -221.137.0.0/16 9812 -221.138.0.0/16 9318 -221.139.0.0/18 9318 -221.139.64.0/19 9318 -221.139.96.0/20 9318 -221.139.112.0/21 9318 -221.139.120.0/22 9318 -221.139.124.0/24 17834 -221.139.125.0/24 9318 -221.139.126.0/23 9318 -221.139.128.0/19 9318 -221.139.160.0/20 9318 -221.139.176.0/21 9318 -221.139.184.0/22 9318 -221.139.188.0/23 9318 -221.139.190.0/24 9318 -221.139.191.0/24 23600 -221.139.192.0/19 9318 -221.139.224.0/21 9318 -221.139.232.0/22 9318 -221.139.236.0/23 9318 -221.139.238.0/24 18325 -221.139.239.0/24 9318 -221.139.240.0/20 9318 -221.140.0.0/21 9318 -221.140.8.0/22 9318 -221.140.12.0/23 9318 -221.140.14.0/24 10167 -221.140.15.0/24 9318 -221.140.16.0/20 9318 -221.140.32.0/19 9318 -221.140.64.0/18 9318 -221.140.128.0/18 9318 -221.140.192.0/19 9318 -221.140.224.0/21 9318 -221.140.232.0/22 9318 -221.140.236.0/24 9318 -221.140.237.0/24 38695 -221.140.238.0/23 9318 -221.140.240.0/20 9318 -221.141.0.0/16 9318 -221.142.0.0/15 9318 -221.144.0.0/17 4766 -221.144.128.0/20 4766 -221.144.144.0/21 4766 -221.144.152.0/24 55622 -221.144.153.0/24 4766 -221.144.154.0/23 4766 -221.144.156.0/22 4766 -221.144.160.0/19 4766 -221.144.192.0/18 4766 -221.145.0.0/17 4766 -221.145.128.0/19 4766 -221.145.160.0/20 4766 -221.145.176.0/23 4766 -221.145.178.0/24 45400 -221.145.179.0/24 4766 -221.145.180.0/22 4766 -221.145.184.0/21 4766 -221.145.192.0/18 4766 -221.146.0.0/17 4766 -221.146.128.0/18 4766 -221.146.192.0/24 4766 -221.146.193.0/24 9856 -221.146.194.0/23 4766 -221.146.196.0/22 4766 -221.146.200.0/21 4766 -221.146.208.0/20 4766 -221.146.224.0/22 4766 -221.146.228.0/24 4766 -221.146.229.0/24 9972 -221.146.230.0/23 4766 -221.146.232.0/21 4766 -221.146.240.0/20 4766 -221.147.0.0/19 4766 -221.147.32.0/20 4766 -221.147.48.0/23 4766 -221.147.50.0/24 45399 -221.147.51.0/24 4766 -221.147.52.0/22 4766 -221.147.56.0/21 4766 -221.147.64.0/20 4766 -221.147.80.0/23 4766 -221.147.82.0/24 4766 -221.147.83.0/24 9526 -221.147.84.0/22 4766 -221.147.88.0/21 4766 -221.147.96.0/19 4766 -221.147.128.0/17 4766 -221.148.0.0/17 4766 -221.148.128.0/20 4766 -221.148.144.0/22 4766 -221.148.148.0/24 4766 -221.148.149.0/24 9696 -221.148.150.0/23 4766 -221.148.152.0/21 4766 -221.148.160.0/19 4766 -221.148.192.0/18 4766 -221.149.0.0/17 4766 -221.149.128.0/21 4766 -221.149.136.0/22 4766 -221.149.140.0/24 4766 -221.149.141.0/24 10185 -221.149.142.0/23 4766 -221.149.144.0/20 4766 -221.149.160.0/24 4766 -221.149.161.0/24 9640 -221.149.162.0/23 4766 -221.149.164.0/22 4766 -221.149.168.0/21 4766 -221.149.176.0/20 4766 -221.149.192.0/19 4766 -221.149.224.0/22 4766 -221.149.228.0/23 4766 -221.149.230.0/24 45360 -221.149.231.0/24 4766 -221.149.232.0/22 4766 -221.149.236.0/24 55631 -221.149.237.0/24 4766 -221.149.238.0/23 4766 -221.149.240.0/20 4766 -221.150.0.0/20 4766 -221.150.16.0/22 4766 -221.150.20.0/24 4766 -221.150.21.0/24 10184 -221.150.22.0/23 4766 -221.150.24.0/21 4766 -221.150.32.0/19 4766 -221.150.64.0/19 4766 -221.150.96.0/20 4766 -221.150.112.0/23 4766 -221.150.114.0/24 55592 -221.150.115.0/24 4766 -221.150.116.0/22 4766 -221.150.120.0/21 4766 -221.150.128.0/23 4766 -221.150.130.0/24 4766 -221.150.131.0/24 17851 -221.150.132.0/22 4766 -221.150.136.0/21 4766 -221.150.144.0/20 4766 -221.150.160.0/20 4766 -221.150.176.0/22 4766 -221.150.180.0/24 10041 -221.150.181.0/24 4766 -221.150.182.0/23 4766 -221.150.184.0/21 4766 -221.150.192.0/18 4766 -221.151.0.0/17 4766 -221.151.128.0/19 4766 -221.151.160.0/22 4766 -221.151.164.0/24 4766 -221.151.165.0/24 38405 -221.151.166.0/23 4766 -221.151.168.0/21 4766 -221.151.176.0/20 4766 -221.151.192.0/18 4766 -221.152.0.0/14 4766 -221.156.0.0/15 4766 -221.158.0.0/18 4766 -221.158.64.0/21 4766 -221.158.72.0/24 4766 -221.158.73.0/24 17576 -221.158.74.0/23 4766 -221.158.76.0/22 4766 -221.158.80.0/20 4766 -221.158.96.0/19 4766 -221.158.128.0/17 4766 -221.159.0.0/17 4766 -221.159.128.0/18 4766 -221.159.192.0/20 4766 -221.159.208.0/23 4766 -221.159.210.0/24 55622 -221.159.211.0/24 4766 -221.159.212.0/22 4766 -221.159.216.0/21 4766 -221.159.224.0/19 4766 -221.160.0.0/16 4766 -221.161.0.0/17 4766 -221.161.128.0/19 4766 -221.161.160.0/24 9780 -221.161.161.0/24 4766 -221.161.162.0/23 4766 -221.161.164.0/22 4766 -221.161.168.0/21 4766 -221.161.176.0/20 4766 -221.161.192.0/18 4766 -221.162.0.0/16 4766 -221.163.0.0/19 4766 -221.163.32.0/24 18323 -221.163.33.0/24 4766 -221.163.34.0/23 4766 -221.163.36.0/22 4766 -221.163.40.0/21 4766 -221.163.48.0/20 4766 -221.163.64.0/18 4766 -221.163.128.0/17 4766 -221.164.0.0/22 9631 -221.164.4.0/24 4766 -221.164.5.0/24 9631 -221.164.6.0/23 4766 -221.164.8.0/21 4766 -221.164.16.0/20 4766 -221.164.32.0/19 4766 -221.164.64.0/22 4766 -221.164.68.0/22 9631 -221.164.72.0/21 4766 -221.164.80.0/20 4766 -221.164.96.0/19 4766 -221.164.128.0/17 4766 -221.165.0.0/16 4766 -221.166.0.0/15 4766 -221.168.0.0/16 4766 -221.169.0.0/16 4780 -221.170.0.0/15 2518 -221.172.0.0/16 9394 -221.173.0.0/17 37981 -221.173.128.0/23 45069 -221.173.130.0/24 45069 -221.173.131.0/24 9394 -221.173.132.0/22 9394 -221.173.136.0/22 9394 -221.173.140.0/23 9394 -221.173.142.0/24 9394 -221.173.143.0/24 45069 -221.173.144.0/20 9394 -221.173.160.0/21 9394 -221.173.168.0/23 9394 -221.173.170.0/23 45069 -221.173.172.0/23 45069 -221.173.174.0/24 45069 -221.173.175.0/24 9394 -221.173.176.0/21 45069 -221.173.184.0/23 9394 -221.173.186.0/23 45069 -221.173.188.0/24 45069 -221.173.189.0/24 9394 -221.173.190.0/23 45069 -221.173.192.0/21 45069 -221.173.200.0/22 45069 -221.173.204.0/23 45069 -221.173.206.0/23 9394 -221.173.208.0/20 45069 -221.173.224.0/21 45069 -221.173.232.0/22 45069 -221.173.236.0/23 45069 -221.173.238.0/24 45069 -221.173.239.0/24 9394 -221.173.240.0/20 9394 -221.174.0.0/16 9394 -221.175.0.0/16 9808 -221.176.0.0/19 9808 -221.176.32.0/20 56040 -221.176.48.0/20 9808 -221.176.64.0/19 9808 -221.176.96.0/19 24445 -221.176.128.0/17 24445 -221.177.0.0/16 9808 -221.178.0.0/17 9808 -221.178.128.0/17 56046 -221.179.0.0/17 56040 -221.179.128.0/19 56048 -221.179.160.0/21 56048 -221.179.168.0/22 56048 -221.179.172.0/22 9808 -221.179.176.0/21 9808 -221.179.184.0/22 56048 -221.179.188.0/23 56048 -221.179.190.0/23 9808 -221.179.192.0/22 9808 -221.179.196.0/23 9808 -221.179.198.0/23 56048 -221.179.200.0/24 56048 -221.179.201.0/24 9808 -221.179.202.0/23 9808 -221.179.204.0/22 56048 -221.179.208.0/20 9808 -221.179.224.0/19 9808 -221.180.0.0/20 56042 -221.180.16.0/22 56042 -221.180.20.0/23 132510 -221.180.22.0/24 132510 -221.180.23.0/24 9808 -221.180.24.0/21 56042 -221.180.32.0/19 56042 -221.180.64.0/18 9808 -221.180.128.0/17 56044 -221.181.0.0/18 9808 -221.181.64.0/20 9808 -221.181.80.0/20 24400 -221.181.96.0/19 24400 -221.181.128.0/17 56046 -221.182.0.0/15 9808 -221.184.0.0/13 4713 -221.192.0.0/14 4837 -221.196.0.0/15 4837 -221.198.0.0/16 4837 -221.199.0.0/17 4837 -221.199.128.0/18 4837 -221.199.192.0/21 4837 -221.199.200.0/22 4837 -221.199.204.0/22 139007 -221.199.208.0/20 6262 -221.199.224.0/19 4837 -221.200.0.0/13 4837 -221.208.0.0/13 4837 -221.216.0.0/13 4808 -221.224.0.0/18 4134 -221.224.64.0/22 4134 -221.224.68.0/24 4134 -221.224.69.0/24 23650 -221.224.70.0/23 4134 -221.224.72.0/21 4134 -221.224.80.0/22 4134 -221.224.84.0/24 134770 -221.224.85.0/24 4134 -221.224.86.0/23 4134 -221.224.88.0/21 4134 -221.224.96.0/21 4134 -221.224.104.0/24 4134 -221.224.105.0/24 134770 -221.224.106.0/23 4134 -221.224.108.0/22 4134 -221.224.112.0/20 4134 -221.224.128.0/21 4134 -221.224.136.0/23 4134 -221.224.138.0/24 4134 -221.224.139.0/24 134770 -221.224.140.0/22 4134 -221.224.144.0/20 4134 -221.224.160.0/20 4134 -221.224.176.0/21 4134 -221.224.184.0/22 4134 -221.224.188.0/23 4134 -221.224.190.0/24 23650 -221.224.191.0/24 4134 -221.224.192.0/20 4134 -221.224.208.0/21 4134 -221.224.216.0/22 4134 -221.224.220.0/24 134770 -221.224.221.0/24 4134 -221.224.222.0/23 4134 -221.224.224.0/19 4134 -221.225.0.0/22 4134 -221.225.4.0/24 23650 -221.225.5.0/24 4134 -221.225.6.0/23 4134 -221.225.8.0/21 4134 -221.225.16.0/20 4134 -221.225.32.0/19 4134 -221.225.64.0/20 4134 -221.225.80.0/22 23650 -221.225.84.0/22 4134 -221.225.88.0/21 4134 -221.225.96.0/19 4134 -221.225.128.0/17 4134 -221.226.0.0/17 4134 -221.226.128.0/21 4134 -221.226.136.0/22 4134 -221.226.140.0/24 4809 -221.226.141.0/24 4134 -221.226.142.0/23 4134 -221.226.144.0/20 4134 -221.226.160.0/19 4134 -221.226.192.0/18 4134 -221.227.0.0/17 4134 -221.227.128.0/18 4134 -221.227.192.0/19 4134 -221.227.224.0/21 4134 -221.227.232.0/24 131325 -221.227.233.0/24 4134 -221.227.234.0/23 4134 -221.227.236.0/22 4134 -221.227.240.0/20 4134 -221.228.0.0/23 23650 -221.228.2.0/23 4134 -221.228.4.0/22 4134 -221.228.8.0/21 4134 -221.228.16.0/23 4134 -221.228.18.0/24 4134 -221.228.19.0/24 23650 -221.228.20.0/22 4134 -221.228.24.0/21 4134 -221.228.32.0/20 4134 -221.228.48.0/21 4134 -221.228.56.0/22 4134 -221.228.60.0/24 23650 -221.228.61.0/24 4134 -221.228.62.0/24 4134 -221.228.63.0/24 23650 -221.228.64.0/22 23650 -221.228.68.0/23 4134 -221.228.70.0/24 4134 -221.228.71.0/24 23650 -221.228.72.0/21 138950 -221.228.80.0/20 138950 -221.228.96.0/24 4134 -221.228.97.0/24 138950 -221.228.98.0/23 138950 -221.228.100.0/22 138950 -221.228.104.0/21 138950 -221.228.112.0/24 138950 -221.228.113.0/24 4134 -221.228.114.0/23 4134 -221.228.116.0/22 4134 -221.228.120.0/21 4134 -221.228.128.0/18 4134 -221.228.192.0/20 138950 -221.228.208.0/21 138950 -221.228.216.0/21 23650 -221.228.224.0/23 23650 -221.228.226.0/24 23650 -221.228.227.0/24 4134 -221.228.228.0/22 4134 -221.228.232.0/21 4134 -221.228.240.0/21 4134 -221.228.248.0/23 23650 -221.228.250.0/23 4134 -221.228.252.0/24 4134 -221.228.253.0/24 23650 -221.228.254.0/24 23650 -221.228.255.0/24 4134 -221.229.0.0/17 4134 -221.229.128.0/18 4134 -221.229.192.0/20 4134 -221.229.208.0/22 4134 -221.229.212.0/23 4134 -221.229.214.0/23 23650 -221.229.216.0/22 23650 -221.229.220.0/23 23650 -221.229.222.0/23 4134 -221.229.224.0/19 4134 -221.230.0.0/24 4134 -221.230.1.0/24 4809 -221.230.2.0/23 4134 -221.230.4.0/22 4134 -221.230.8.0/21 4134 -221.230.16.0/20 4134 -221.230.32.0/22 4134 -221.230.36.0/24 4134 -221.230.37.0/24 23650 -221.230.38.0/23 4134 -221.230.40.0/21 4134 -221.230.48.0/20 4134 -221.230.64.0/18 4134 -221.230.128.0/17 4134 -221.231.0.0/21 4134 -221.231.8.0/22 4134 -221.231.12.0/24 4809 -221.231.13.0/24 4134 -221.231.14.0/23 4134 -221.231.16.0/20 4134 -221.231.32.0/19 4134 -221.231.64.0/18 4134 -221.231.128.0/20 137702 -221.231.144.0/20 4134 -221.231.160.0/19 4134 -221.231.192.0/18 4134 -221.232.0.0/16 4134 -221.233.0.0/19 4134 -221.233.32.0/21 4134 -221.233.40.0/24 4134 -221.233.41.0/24 136193 -221.233.42.0/23 4134 -221.233.44.0/22 4134 -221.233.48.0/20 4134 -221.233.64.0/18 4134 -221.233.128.0/17 4134 -221.234.0.0/16 4134 -221.235.0.0/17 4134 -221.235.128.0/18 4134 -221.235.192.0/19 4134 -221.235.224.0/20 4134 -221.235.240.0/22 4134 -221.235.244.0/22 58563 -221.235.248.0/21 58563 -221.236.0.0/22 38283 -221.236.4.0/24 4134 -221.236.5.0/24 38283 -221.236.6.0/23 38283 -221.236.8.0/21 38283 -221.236.16.0/21 38283 -221.236.24.0/23 38283 -221.236.26.0/24 38283 -221.236.27.0/24 4134 -221.236.28.0/22 38283 -221.236.32.0/19 4134 -221.236.64.0/18 4134 -221.236.128.0/20 4134 -221.236.144.0/21 4134 -221.236.152.0/22 4134 -221.236.156.0/24 38283 -221.236.157.0/24 4134 -221.236.158.0/23 4134 -221.236.160.0/19 4134 -221.236.192.0/18 4134 -221.237.0.0/17 4134 -221.237.128.0/19 4134 -221.237.160.0/20 4134 -221.237.176.0/22 4134 -221.237.180.0/24 38283 -221.237.181.0/24 4134 -221.237.182.0/23 4134 -221.237.184.0/21 4134 -221.237.192.0/18 4134 -221.238.0.0/19 17638 -221.238.32.0/23 17638 -221.238.34.0/23 58542 -221.238.36.0/22 17638 -221.238.40.0/24 17638 -221.238.41.0/24 58542 -221.238.42.0/23 17638 -221.238.44.0/22 17638 -221.238.48.0/20 17638 -221.238.64.0/22 17638 -221.238.68.0/23 17638 -221.238.70.0/24 58542 -221.238.71.0/24 17638 -221.238.72.0/24 17638 -221.238.73.0/24 58542 -221.238.74.0/23 17638 -221.238.76.0/22 17638 -221.238.80.0/21 17638 -221.238.88.0/22 17638 -221.238.92.0/24 58542 -221.238.93.0/24 17638 -221.238.94.0/24 58542 -221.238.95.0/24 17638 -221.238.96.0/19 17638 -221.238.128.0/17 17638 -221.239.0.0/17 17638 -221.239.128.0/17 4812 -221.240.0.0/12 17506 -222.0.0.0/12 2516 -222.16.0.0/21 24357 -222.16.8.0/21 4538 -222.16.16.0/20 4538 -222.16.32.0/19 24357 -222.16.64.0/18 4538 -222.16.128.0/17 4538 -222.17.0.0/16 4538 -222.18.0.0/15 4538 -222.20.0.0/14 4538 -222.24.0.0/14 4538 -222.28.0.0/17 4538 -222.28.128.0/19 4538 -222.28.160.0/19 24350 -222.28.192.0/18 4538 -222.29.0.0/16 4538 -222.30.0.0/15 4538 -222.32.0.0/16 38341 -222.33.0.0/16 9394 -222.34.0.0/23 134810 -222.34.2.0/24 9394 -222.34.3.0/24 134810 -222.34.4.0/22 134810 -222.34.8.0/21 134810 -222.34.16.0/20 134810 -222.34.32.0/21 134810 -222.34.40.0/22 134810 -222.34.44.0/23 134810 -222.34.46.0/24 9394 -222.34.47.0/24 134810 -222.34.48.0/20 134810 -222.34.64.0/18 134810 -222.34.128.0/19 134810 -222.34.160.0/19 9394 -222.34.192.0/18 134810 -222.35.0.0/17 24138 -222.35.128.0/21 24138 -222.35.136.0/24 24138 -222.35.137.0/24 9394 -222.35.138.0/23 24138 -222.35.140.0/22 24138 -222.35.144.0/20 24138 -222.35.160.0/19 24138 -222.35.192.0/18 24138 -222.36.0.0/15 9394 -222.38.0.0/16 37981 -222.39.0.0/16 9394 -222.40.0.0/16 63711 -222.41.0.0/18 9808 -222.41.64.0/19 9808 -222.41.96.0/20 9808 -222.41.112.0/23 9808 -222.41.114.0/24 9808 -222.41.115.0/24 9394 -222.41.116.0/22 9808 -222.41.120.0/21 9808 -222.41.128.0/17 9808 -222.42.0.0/16 9394 -222.43.0.0/22 45069 -222.43.4.0/23 45069 -222.43.6.0/24 9394 -222.43.7.0/24 45069 -222.43.8.0/23 45069 -222.43.10.0/24 45069 -222.43.11.0/24 9394 -222.43.12.0/22 45069 -222.43.16.0/24 9394 -222.43.17.0/24 45069 -222.43.18.0/23 45069 -222.43.20.0/23 9394 -222.43.22.0/23 45069 -222.43.24.0/21 45069 -222.43.32.0/23 45069 -222.43.34.0/24 45069 -222.43.35.0/24 9394 -222.43.36.0/24 9394 -222.43.37.0/24 45069 -222.43.38.0/23 45069 -222.43.40.0/21 45069 -222.43.48.0/23 9394 -222.43.50.0/24 9394 -222.43.51.0/24 45069 -222.43.52.0/22 45069 -222.43.56.0/21 45069 -222.43.64.0/19 45069 -222.43.96.0/21 45069 -222.43.104.0/22 45069 -222.43.108.0/23 45069 -222.43.110.0/23 9394 -222.43.112.0/22 9394 -222.43.116.0/22 45069 -222.43.120.0/21 45069 -222.43.128.0/20 45069 -222.43.144.0/22 45069 -222.43.148.0/23 45069 -222.43.150.0/23 9394 -222.43.152.0/21 45069 -222.43.160.0/19 45069 -222.43.192.0/19 45069 -222.43.224.0/20 45069 -222.43.240.0/20 9394 -222.44.0.0/22 45057 -222.44.4.0/23 45057 -222.44.6.0/24 45057 -222.44.7.0/24 9394 -222.44.8.0/21 45057 -222.44.16.0/20 45057 -222.44.32.0/19 45057 -222.44.64.0/18 45057 -222.44.128.0/17 45057 -222.45.0.0/16 9394 -222.46.0.0/16 9394 -222.47.0.0/16 9808 -222.48.0.0/15 9394 -222.50.0.0/16 38370 -222.51.0.0/16 9394 -222.52.0.0/15 9394 -222.54.0.0/16 9394 -222.55.0.0/17 9394 -222.55.128.0/17 63711 -222.56.0.0/18 9394 -222.56.64.0/20 9808 -222.56.80.0/20 9394 -222.56.96.0/20 9808 -222.56.112.0/20 9394 -222.56.128.0/17 38341 -222.57.0.0/16 9394 -222.58.0.0/15 9394 -222.60.0.0/17 9394 -222.60.128.0/17 63711 -222.61.0.0/16 9394 -222.62.0.0/15 9394 -222.64.0.0/13 4812 -222.72.0.0/15 4812 -222.74.0.0/15 4134 -222.76.0.0/17 4134 -222.76.128.0/18 4134 -222.76.192.0/20 4134 -222.76.208.0/20 133775 -222.76.224.0/19 4134 -222.77.0.0/17 4134 -222.77.128.0/19 4134 -222.77.160.0/20 4134 -222.77.176.0/22 133774 -222.77.180.0/24 4134 -222.77.181.0/24 133774 -222.77.182.0/24 133774 -222.77.183.0/24 4134 -222.77.184.0/24 4134 -222.77.185.0/24 133774 -222.77.186.0/23 133774 -222.77.188.0/22 133774 -222.77.192.0/18 4134 -222.78.0.0/16 4134 -222.79.0.0/18 4134 -222.79.64.0/18 133774 -222.79.128.0/17 4134 -222.80.0.0/19 4134 -222.80.32.0/20 4134 -222.80.48.0/20 137694 -222.80.64.0/18 4134 -222.80.128.0/17 4134 -222.81.0.0/16 4134 -222.82.0.0/16 4134 -222.83.0.0/17 4134 -222.83.128.0/19 4134 -222.83.160.0/20 4134 -222.83.176.0/21 4134 -222.83.184.0/22 4134 -222.83.188.0/22 134419 -222.83.192.0/20 134419 -222.83.208.0/20 4134 -222.83.224.0/20 4134 -222.83.240.0/22 4134 -222.83.244.0/22 134419 -222.83.248.0/24 137693 -222.83.249.0/24 4134 -222.83.250.0/23 4134 -222.83.252.0/22 4134 -222.84.0.0/17 4134 -222.84.128.0/20 4134 -222.84.144.0/21 4134 -222.84.152.0/22 4134 -222.84.156.0/22 137693 -222.84.160.0/19 4134 -222.84.192.0/19 4134 -222.84.224.0/20 4134 -222.84.240.0/21 4134 -222.84.248.0/21 137693 -222.85.0.0/16 4134 -222.86.0.0/17 4134 -222.86.128.0/20 4134 -222.86.144.0/21 4134 -222.86.152.0/22 4134 -222.86.156.0/24 58519 -222.86.157.0/24 4134 -222.86.158.0/23 4134 -222.86.160.0/19 4134 -222.86.192.0/18 4134 -222.87.0.0/17 4134 -222.87.128.0/18 4134 -222.87.192.0/20 4134 -222.87.208.0/21 4809 -222.87.216.0/21 4134 -222.87.224.0/19 4134 -222.88.0.0/14 4134 -222.92.0.0/24 4134 -222.92.1.0/24 4809 -222.92.2.0/23 4134 -222.92.4.0/22 4134 -222.92.8.0/21 4134 -222.92.16.0/20 4134 -222.92.32.0/19 4134 -222.92.64.0/18 4134 -222.92.128.0/18 4134 -222.92.192.0/19 4134 -222.92.224.0/22 4134 -222.92.228.0/23 4134 -222.92.230.0/24 4134 -222.92.231.0/24 4809 -222.92.232.0/21 4134 -222.92.240.0/20 4134 -222.93.0.0/19 4134 -222.93.32.0/22 4134 -222.93.36.0/23 4134 -222.93.38.0/23 23650 -222.93.40.0/21 4134 -222.93.48.0/20 4134 -222.93.64.0/19 4134 -222.93.96.0/21 4134 -222.93.104.0/22 23650 -222.93.108.0/22 4134 -222.93.112.0/21 4134 -222.93.120.0/22 4134 -222.93.124.0/23 4134 -222.93.126.0/23 23650 -222.93.128.0/17 4134 -222.94.0.0/18 4134 -222.94.64.0/19 4134 -222.94.96.0/21 4134 -222.94.104.0/23 134756 -222.94.106.0/23 4134 -222.94.108.0/22 134756 -222.94.112.0/20 4134 -222.94.128.0/23 134756 -222.94.130.0/23 4134 -222.94.132.0/22 4134 -222.94.136.0/21 4134 -222.94.144.0/20 4134 -222.94.160.0/19 4134 -222.94.192.0/18 4134 -222.95.0.0/18 4134 -222.95.64.0/20 4134 -222.95.80.0/22 4134 -222.95.84.0/22 134756 -222.95.88.0/21 4134 -222.95.96.0/19 4134 -222.95.128.0/17 4134 -222.96.0.0/14 4766 -222.100.0.0/16 4766 -222.101.0.0/18 4766 -222.101.64.0/20 4766 -222.101.80.0/21 4766 -222.101.88.0/22 4766 -222.101.92.0/23 4766 -222.101.94.0/24 4766 -222.101.95.0/24 23554 -222.101.96.0/20 4766 -222.101.112.0/23 4766 -222.101.114.0/24 4766 -222.101.115.0/24 10190 -222.101.116.0/24 38396 -222.101.117.0/24 4766 -222.101.118.0/23 4766 -222.101.120.0/21 4766 -222.101.128.0/17 4766 -222.102.0.0/15 4766 -222.104.0.0/18 4766 -222.104.64.0/20 4766 -222.104.80.0/21 4766 -222.104.88.0/23 4766 -222.104.90.0/24 4766 -222.104.91.0/24 18305 -222.104.92.0/22 4766 -222.104.96.0/19 4766 -222.104.128.0/17 4766 -222.105.0.0/16 4766 -222.106.0.0/18 4766 -222.106.64.0/19 4766 -222.106.96.0/23 4766 -222.106.98.0/24 4766 -222.106.99.0/24 18338 -222.106.100.0/22 4766 -222.106.104.0/21 4766 -222.106.112.0/20 4766 -222.106.128.0/18 4766 -222.106.192.0/19 4766 -222.106.224.0/21 4766 -222.106.232.0/24 4766 -222.106.233.0/24 46002 -222.106.234.0/23 4766 -222.106.236.0/22 4766 -222.106.240.0/21 4766 -222.106.248.0/22 4766 -222.106.252.0/24 23573 -222.106.253.0/24 4766 -222.106.254.0/23 4766 -222.107.0.0/24 4766 -222.107.1.0/24 9696 -222.107.2.0/23 4766 -222.107.4.0/22 4766 -222.107.8.0/21 4766 -222.107.16.0/20 4766 -222.107.32.0/19 4766 -222.107.64.0/18 4766 -222.107.128.0/20 4766 -222.107.144.0/22 4766 -222.107.148.0/23 4766 -222.107.150.0/24 4766 -222.107.151.0/24 18326 -222.107.152.0/21 4766 -222.107.160.0/19 4766 -222.107.192.0/18 4766 -222.108.0.0/20 4766 -222.108.16.0/21 4766 -222.108.24.0/24 4766 -222.108.25.0/24 7627 -222.108.26.0/23 4766 -222.108.28.0/22 4766 -222.108.32.0/20 4766 -222.108.48.0/22 4766 -222.108.52.0/23 4766 -222.108.54.0/24 9850 -222.108.55.0/24 4766 -222.108.56.0/21 4766 -222.108.64.0/18 4766 -222.108.128.0/17 4766 -222.109.0.0/18 4766 -222.109.64.0/20 4766 -222.109.80.0/22 4766 -222.109.84.0/23 4766 -222.109.86.0/24 4766 -222.109.87.0/24 10191 -222.109.88.0/21 4766 -222.109.96.0/19 4766 -222.109.128.0/21 4766 -222.109.136.0/22 4766 -222.109.140.0/23 4766 -222.109.142.0/24 4766 -222.109.143.0/24 3786 -222.109.144.0/20 4766 -222.109.160.0/19 4766 -222.109.192.0/18 4766 -222.110.0.0/22 4766 -222.110.4.0/23 4766 -222.110.6.0/24 4766 -222.110.7.0/24 45393 -222.110.8.0/23 45393 -222.110.10.0/23 4766 -222.110.12.0/22 4766 -222.110.16.0/22 4766 -222.110.20.0/24 4766 -222.110.21.0/24 18299 -222.110.22.0/23 4766 -222.110.24.0/21 4766 -222.110.32.0/19 4766 -222.110.64.0/21 4766 -222.110.72.0/22 4766 -222.110.76.0/23 4766 -222.110.78.0/24 38671 -222.110.79.0/24 4766 -222.110.80.0/24 38671 -222.110.81.0/24 4766 -222.110.82.0/23 4766 -222.110.84.0/22 4766 -222.110.88.0/21 4766 -222.110.96.0/21 4766 -222.110.104.0/24 38433 -222.110.105.0/24 4766 -222.110.106.0/23 4766 -222.110.108.0/22 4766 -222.110.112.0/20 4766 -222.110.128.0/18 4766 -222.110.192.0/24 23574 -222.110.193.0/24 4766 -222.110.194.0/23 4766 -222.110.196.0/22 4766 -222.110.200.0/21 4766 -222.110.208.0/20 4766 -222.110.224.0/19 4766 -222.111.0.0/17 4766 -222.111.128.0/19 4766 -222.111.160.0/22 4766 -222.111.164.0/22 18176 -222.111.168.0/22 17841 -222.111.172.0/22 4766 -222.111.176.0/21 4766 -222.111.184.0/22 4766 -222.111.188.0/23 4766 -222.111.190.0/24 23573 -222.111.191.0/24 4766 -222.111.192.0/19 4766 -222.111.224.0/21 4766 -222.111.232.0/22 4766 -222.111.236.0/24 4766 -222.111.237.0/24 9491 -222.111.238.0/23 4766 -222.111.240.0/21 4766 -222.111.248.0/21 17841 -222.112.0.0/17 4766 -222.112.128.0/19 4766 -222.112.160.0/23 4766 -222.112.162.0/24 4766 -222.112.163.0/24 17616 -222.112.164.0/22 4766 -222.112.168.0/21 4766 -222.112.176.0/20 4766 -222.112.192.0/20 4766 -222.112.208.0/21 4766 -222.112.216.0/22 4766 -222.112.220.0/24 4766 -222.112.221.0/24 9530 -222.112.222.0/23 4766 -222.112.224.0/19 4766 -222.113.0.0/17 4766 -222.113.128.0/18 4766 -222.113.192.0/19 4766 -222.113.224.0/23 4766 -222.113.226.0/24 4766 -222.113.227.0/24 55615 -222.113.228.0/22 55615 -222.113.232.0/21 4766 -222.113.240.0/20 4766 -222.114.0.0/15 4766 -222.116.0.0/17 4766 -222.116.128.0/21 4766 -222.116.136.0/22 4766 -222.116.140.0/23 4766 -222.116.142.0/24 4766 -222.116.143.0/24 18038 -222.116.144.0/22 18038 -222.116.148.0/22 4766 -222.116.152.0/21 4766 -222.116.160.0/19 4766 -222.116.192.0/18 4766 -222.117.0.0/19 4766 -222.117.32.0/21 4766 -222.117.40.0/23 4766 -222.117.42.0/24 38407 -222.117.43.0/24 4766 -222.117.44.0/22 4766 -222.117.48.0/20 4766 -222.117.64.0/20 4766 -222.117.80.0/23 4766 -222.117.82.0/24 38414 -222.117.83.0/24 4766 -222.117.84.0/22 4766 -222.117.88.0/21 4766 -222.117.96.0/19 4766 -222.117.128.0/20 4766 -222.117.144.0/23 9685 -222.117.146.0/23 4766 -222.117.148.0/22 4766 -222.117.152.0/21 4766 -222.117.160.0/19 4766 -222.117.192.0/18 4766 -222.118.0.0/17 4766 -222.118.128.0/20 4766 -222.118.144.0/21 4766 -222.118.152.0/23 17856 -222.118.154.0/24 17856 -222.118.155.0/24 4766 -222.118.156.0/22 4766 -222.118.160.0/19 4766 -222.118.192.0/18 4766 -222.119.0.0/16 4766 -222.120.0.0/21 4766 -222.120.8.0/22 4766 -222.120.12.0/23 4766 -222.120.14.0/24 4766 -222.120.15.0/24 38409 -222.120.16.0/24 38416 -222.120.17.0/24 38398 -222.120.18.0/24 38410 -222.120.19.0/24 4766 -222.120.20.0/22 4766 -222.120.24.0/21 4766 -222.120.32.0/19 4766 -222.120.64.0/18 4766 -222.120.128.0/18 4766 -222.120.192.0/20 4766 -222.120.208.0/21 4766 -222.120.216.0/22 4766 -222.120.220.0/23 4766 -222.120.222.0/23 23569 -222.120.224.0/19 4766 -222.121.0.0/21 4766 -222.121.8.0/22 4766 -222.121.12.0/23 4766 -222.121.14.0/23 55615 -222.121.16.0/20 4766 -222.121.32.0/19 4766 -222.121.64.0/18 4766 -222.121.128.0/17 4766 -222.122.0.0/19 4766 -222.122.32.0/20 4766 -222.122.48.0/22 4766 -222.122.52.0/23 4766 -222.122.54.0/24 55593 -222.122.55.0/24 4766 -222.122.56.0/21 4766 -222.122.64.0/19 4766 -222.122.96.0/20 4766 -222.122.112.0/22 4766 -222.122.116.0/24 4766 -222.122.117.0/24 38688 -222.122.118.0/23 4766 -222.122.120.0/21 4766 -222.122.128.0/18 4766 -222.122.192.0/20 4766 -222.122.208.0/21 4766 -222.122.216.0/23 55593 -222.122.218.0/23 4766 -222.122.220.0/22 4766 -222.122.224.0/19 4766 -222.124.0.0/19 17974 -222.124.32.0/21 17974 -222.124.40.0/21 7713 -222.124.48.0/20 7713 -222.124.64.0/22 7713 -222.124.68.0/22 17974 -222.124.72.0/22 17974 -222.124.76.0/22 7713 -222.124.80.0/23 7713 -222.124.82.0/23 17974 -222.124.84.0/23 7713 -222.124.86.0/23 17974 -222.124.88.0/22 17974 -222.124.92.0/23 17974 -222.124.94.0/23 7713 -222.124.96.0/22 17974 -222.124.100.0/22 7713 -222.124.104.0/22 17974 -222.124.108.0/23 7713 -222.124.110.0/23 17974 -222.124.112.0/20 7713 -222.124.128.0/17 17974 -222.125.0.0/16 17962 -222.126.0.0/17 7629 -222.126.128.0/19 37965 -222.126.160.0/21 37965 -222.126.168.0/22 37965 -222.126.172.0/23 37965 -222.126.174.0/23 7468 -222.126.176.0/24 37965 -222.126.177.0/24 7468 -222.126.178.0/23 37965 -222.126.180.0/23 7468 -222.126.182.0/23 37965 -222.126.184.0/21 37965 -222.126.192.0/21 37965 -222.126.200.0/22 7468 -222.126.204.0/22 37965 -222.126.208.0/22 37965 -222.126.212.0/23 37965 -222.126.214.0/23 7468 -222.126.216.0/22 37965 -222.126.220.0/24 37965 -222.126.221.0/24 7468 -222.126.222.0/23 37965 -222.126.224.0/23 37965 -222.126.226.0/24 7468 -222.126.227.0/24 37965 -222.126.228.0/22 37965 -222.126.232.0/21 37965 -222.126.240.0/24 37965 -222.126.241.0/24 7468 -222.126.242.0/23 7468 -222.126.244.0/22 37965 -222.126.248.0/21 37965 -222.127.0.0/19 4775 -222.127.32.0/24 4775 -222.127.33.0/24 132199 -222.127.34.0/23 132199 -222.127.36.0/22 132199 -222.127.40.0/24 4775 -222.127.41.0/24 132199 -222.127.42.0/23 132199 -222.127.44.0/22 132199 -222.127.48.0/20 132199 -222.127.64.0/19 132199 -222.127.96.0/22 4775 -222.127.100.0/24 4775 -222.127.101.0/24 139626 -222.127.102.0/23 4775 -222.127.104.0/21 4775 -222.127.112.0/22 4775 -222.127.116.0/22 132199 -222.127.120.0/23 4775 -222.127.122.0/24 4775 -222.127.123.0/24 132199 -222.127.124.0/22 4775 -222.127.128.0/20 4775 -222.127.144.0/21 4775 -222.127.152.0/21 132199 -222.127.160.0/20 132199 -222.127.176.0/21 132199 -222.127.184.0/23 4775 -222.127.186.0/24 132199 -222.127.187.0/24 4775 -222.127.188.0/22 132199 -222.127.192.0/18 132199 -222.128.0.0/14 4808 -222.132.0.0/14 4837 -222.136.0.0/13 4837 -222.144.0.0/13 4713 -222.152.0.0/20 4771 -222.152.24.0/21 4771 -222.152.32.0/21 4771 -222.152.48.0/22 4049 -222.152.56.0/21 133124 -222.152.64.0/21 4771 -222.152.80.0/21 4771 -222.152.100.0/22 4771 -222.152.104.0/21 4771 -222.152.128.0/20 4771 -222.152.160.0/19 4771 -222.152.192.0/19 4771 -222.152.240.0/20 4771 -222.153.8.0/21 4771 -222.153.16.0/20 4771 -222.153.32.0/19 4771 -222.153.64.0/19 4771 -222.153.96.0/21 4771 -222.153.112.0/20 4771 -222.153.128.0/18 4771 -222.153.192.0/20 4771 -222.153.223.0/24 4771 -222.153.232.0/21 4771 -222.154.0.0/17 4771 -222.154.128.0/19 4771 -222.154.160.0/20 4771 -222.154.176.0/21 4771 -222.154.190.0/23 4771 -222.154.224.0/19 4771 -222.155.0.0/18 4771 -222.155.72.0/21 4771 -222.155.80.0/21 4771 -222.155.96.0/20 4771 -222.155.122.0/23 4771 -222.155.128.0/20 4771 -222.155.152.0/21 4771 -222.155.168.0/21 4771 -222.155.200.0/21 4771 -222.155.216.0/21 4771 -222.155.224.0/20 4771 -222.155.240.0/21 4771 -222.156.0.0/17 7482 -222.156.128.0/18 7482 -222.156.192.0/19 7482 -222.156.224.0/20 7482 -222.156.240.0/22 7482 -222.156.244.0/23 7482 -222.156.246.0/24 24154 -222.156.247.0/24 7482 -222.156.248.0/22 7482 -222.156.252.0/23 7482 -222.156.254.0/24 24154 -222.156.255.0/24 7482 -222.157.0.0/16 7482 -222.158.0.0/15 2510 -222.160.0.0/14 4837 -222.164.0.0/16 55430 -222.165.0.0/17 10091 -222.165.128.0/18 9329 -222.165.192.0/18 24207 -222.166.0.0/15 9908 -222.168.0.0/14 4134 -222.172.0.0/16 4134 -222.173.0.0/19 4134 -222.173.32.0/20 4134 -222.173.48.0/23 4134 -222.173.50.0/23 58540 -222.173.52.0/24 58540 -222.173.53.0/24 4134 -222.173.54.0/23 4134 -222.173.56.0/23 58540 -222.173.58.0/23 4134 -222.173.60.0/22 4134 -222.173.64.0/18 4134 -222.173.128.0/17 4134 -222.174.0.0/16 4134 -222.175.0.0/18 4134 -222.175.64.0/19 4134 -222.175.96.0/22 4134 -222.175.100.0/24 4134 -222.175.101.0/24 58540 -222.175.102.0/24 58540 -222.175.103.0/24 4134 -222.175.104.0/21 4134 -222.175.112.0/20 4134 -222.175.128.0/21 4134 -222.175.136.0/23 58540 -222.175.138.0/23 4134 -222.175.140.0/22 4134 -222.175.144.0/20 4134 -222.175.160.0/19 4134 -222.175.192.0/18 4134 -222.176.0.0/15 4134 -222.178.0.0/17 4134 -222.178.128.0/19 4134 -222.178.160.0/20 4134 -222.178.176.0/23 4134 -222.178.178.0/24 4134 -222.178.179.0/24 134420 -222.178.180.0/22 4134 -222.178.184.0/21 4134 -222.178.192.0/18 4134 -222.179.0.0/16 4134 -222.180.0.0/17 4134 -222.180.128.0/19 4134 -222.180.160.0/23 4134 -222.180.162.0/23 134420 -222.180.164.0/22 134420 -222.180.168.0/22 134420 -222.180.172.0/22 4134 -222.180.176.0/20 4134 -222.180.192.0/18 4134 -222.181.0.0/16 4134 -222.182.0.0/17 4134 -222.182.128.0/18 4134 -222.182.192.0/21 4134 -222.182.200.0/23 4134 -222.182.202.0/24 134420 -222.182.203.0/24 4134 -222.182.204.0/22 4134 -222.182.208.0/20 4134 -222.182.224.0/19 4134 -222.183.0.0/16 4134 -222.184.0.0/16 4134 -222.185.0.0/17 4134 -222.185.128.0/18 4134 -222.185.192.0/19 4134 -222.185.224.0/24 23650 -222.185.225.0/24 4134 -222.185.226.0/23 4134 -222.185.228.0/23 23650 -222.185.230.0/23 4134 -222.185.232.0/21 4134 -222.185.240.0/20 4134 -222.186.0.0/23 4134 -222.186.2.0/24 4134 -222.186.3.0/24 23650 -222.186.4.0/23 4134 -222.186.6.0/24 4134 -222.186.7.0/24 23650 -222.186.8.0/24 4134 -222.186.9.0/24 23650 -222.186.10.0/23 23650 -222.186.12.0/24 23650 -222.186.13.0/24 4134 -222.186.14.0/23 23650 -222.186.16.0/22 23650 -222.186.20.0/23 23650 -222.186.22.0/24 4134 -222.186.23.0/24 23650 -222.186.24.0/22 23650 -222.186.28.0/24 4134 -222.186.29.0/24 23650 -222.186.30.0/23 23650 -222.186.32.0/19 23650 -222.186.64.0/18 4134 -222.186.128.0/22 23650 -222.186.132.0/23 4134 -222.186.134.0/23 23650 -222.186.136.0/22 23650 -222.186.140.0/24 4134 -222.186.141.0/24 23650 -222.186.142.0/23 23650 -222.186.144.0/22 23650 -222.186.148.0/24 23650 -222.186.149.0/24 4134 -222.186.150.0/23 23650 -222.186.152.0/22 23650 -222.186.156.0/23 23650 -222.186.158.0/24 4134 -222.186.159.0/24 23650 -222.186.160.0/22 23650 -222.186.164.0/23 23650 -222.186.166.0/23 4134 -222.186.168.0/23 23650 -222.186.170.0/24 4134 -222.186.171.0/24 23650 -222.186.172.0/24 4134 -222.186.173.0/24 23650 -222.186.174.0/23 23650 -222.186.176.0/23 23650 -222.186.178.0/23 4134 -222.186.180.0/23 23650 -222.186.182.0/23 4134 -222.186.184.0/22 4134 -222.186.188.0/24 4134 -222.186.189.0/24 23650 -222.186.190.0/23 23650 -222.186.192.0/18 4134 -222.187.0.0/17 4134 -222.187.128.0/18 4134 -222.187.192.0/19 4134 -222.187.224.0/20 4134 -222.187.240.0/21 4134 -222.187.248.0/23 4134 -222.187.250.0/24 4134 -222.187.251.0/24 23650 -222.187.252.0/22 4134 -222.188.0.0/16 4134 -222.189.0.0/17 4134 -222.189.128.0/18 4134 -222.189.192.0/19 4134 -222.189.224.0/22 4134 -222.189.228.0/24 137697 -222.189.229.0/24 4134 -222.189.230.0/23 4134 -222.189.232.0/22 4134 -222.189.236.0/24 4134 -222.189.237.0/24 137697 -222.189.238.0/23 137697 -222.189.240.0/20 4134 -222.190.0.0/15 4134 -222.192.0.0/20 4538 -222.192.16.0/20 24361 -222.192.32.0/19 4538 -222.192.64.0/18 4538 -222.192.128.0/17 4538 -222.193.0.0/16 4538 -222.194.0.0/16 4538 -222.195.0.0/17 4538 -222.195.128.0/18 4538 -222.195.192.0/19 4538 -222.195.224.0/24 4538 -222.195.225.0/24 138371 -222.195.226.0/23 138371 -222.195.228.0/22 4538 -222.195.232.0/21 4538 -222.195.240.0/20 4538 -222.196.0.0/16 4538 -222.197.0.0/17 4538 -222.197.128.0/19 4538 -222.197.160.0/19 24355 -222.197.192.0/18 4538 -222.198.0.0/15 4538 -222.200.0.0/16 4538 -222.201.0.0/17 4538 -222.201.128.0/18 24357 -222.201.192.0/18 4538 -222.202.0.0/15 4538 -222.204.0.0/16 4538 -222.205.0.0/18 24367 -222.205.64.0/19 24367 -222.205.96.0/20 24367 -222.205.112.0/21 24367 -222.205.120.0/21 4538 -222.205.128.0/17 4538 -222.206.0.0/15 4538 -222.208.0.0/17 4134 -222.208.128.0/19 4134 -222.208.160.0/21 4134 -222.208.168.0/24 38283 -222.208.169.0/24 4134 -222.208.170.0/23 4134 -222.208.172.0/22 4134 -222.208.176.0/22 4134 -222.208.180.0/23 4134 -222.208.182.0/24 4134 -222.208.183.0/24 38283 -222.208.184.0/21 4134 -222.208.192.0/18 4134 -222.209.0.0/16 4134 -222.210.0.0/16 4134 -222.211.0.0/19 4134 -222.211.32.0/20 4134 -222.211.48.0/21 4134 -222.211.56.0/22 4134 -222.211.60.0/23 4134 -222.211.62.0/24 4134 -222.211.63.0/24 38283 -222.211.64.0/23 38283 -222.211.66.0/24 4134 -222.211.67.0/24 38283 -222.211.68.0/22 38283 -222.211.72.0/21 38283 -222.211.80.0/20 38283 -222.211.96.0/19 4134 -222.211.128.0/17 4134 -222.212.0.0/16 4134 -222.213.0.0/24 38283 -222.213.1.0/24 4134 -222.213.2.0/23 4134 -222.213.4.0/22 4134 -222.213.8.0/21 4134 -222.213.16.0/20 4134 -222.213.32.0/19 4134 -222.213.64.0/18 4134 -222.213.128.0/17 4134 -222.214.0.0/16 4134 -222.215.0.0/18 4134 -222.215.64.0/19 4134 -222.215.96.0/20 4134 -222.215.112.0/22 4134 -222.215.116.0/23 4134 -222.215.118.0/23 38283 -222.215.120.0/21 4134 -222.215.128.0/21 4134 -222.215.136.0/24 38283 -222.215.137.0/24 4134 -222.215.138.0/23 4134 -222.215.140.0/22 4134 -222.215.144.0/20 4134 -222.215.160.0/19 4134 -222.215.192.0/18 4134 -222.216.0.0/18 4134 -222.216.64.0/19 4134 -222.216.96.0/20 4134 -222.216.112.0/21 4134 -222.216.120.0/21 137693 -222.216.128.0/19 4134 -222.216.160.0/20 4134 -222.216.176.0/21 4134 -222.216.184.0/22 4134 -222.216.188.0/22 137693 -222.216.192.0/20 4134 -222.216.208.0/21 4134 -222.216.216.0/23 4134 -222.216.218.0/24 4134 -222.216.219.0/24 134419 -222.216.220.0/22 4134 -222.216.224.0/22 4134 -222.216.228.0/22 137693 -222.216.232.0/21 4134 -222.216.240.0/20 4134 -222.217.0.0/18 4134 -222.217.64.0/20 4134 -222.217.80.0/21 4134 -222.217.88.0/22 4134 -222.217.92.0/22 137693 -222.217.96.0/21 4134 -222.217.104.0/21 134419 -222.217.112.0/20 4134 -222.217.128.0/19 4134 -222.217.160.0/20 4134 -222.217.176.0/22 4134 -222.217.180.0/23 4134 -222.217.182.0/24 134419 -222.217.183.0/24 4134 -222.217.184.0/21 4134 -222.217.192.0/18 4134 -222.218.0.0/18 4134 -222.218.64.0/20 4134 -222.218.80.0/21 137693 -222.218.88.0/21 4134 -222.218.96.0/19 4134 -222.218.128.0/20 4134 -222.218.144.0/23 4134 -222.218.146.0/23 134419 -222.218.148.0/22 134419 -222.218.152.0/21 134419 -222.218.160.0/20 134419 -222.218.176.0/21 134419 -222.218.184.0/21 4134 -222.218.192.0/18 4134 -222.219.0.0/16 4134 -222.220.0.0/16 4134 -222.221.0.0/18 4134 -222.221.64.0/19 4134 -222.221.96.0/20 134766 -222.221.112.0/20 4134 -222.221.128.0/17 4134 -222.222.0.0/15 4134 -222.224.0.0/16 9595 -222.225.0.0/16 2516 -222.226.0.0/15 2516 -222.228.0.0/16 2519 -222.229.0.0/18 2519 -222.229.64.0/20 55912 -222.229.80.0/21 38171 -222.229.88.0/21 56206 -222.229.96.0/19 9354 -222.229.128.0/17 2519 -222.230.0.0/16 2519 -222.231.0.0/18 3786 -222.231.64.0/18 18144 -222.231.128.0/17 7671 -222.232.0.0/17 9318 -222.232.128.0/18 9318 -222.232.192.0/21 9318 -222.232.200.0/22 9318 -222.232.204.0/23 9318 -222.232.206.0/24 9318 -222.232.207.0/24 18332 -222.232.208.0/20 9318 -222.232.224.0/19 9318 -222.233.0.0/16 9318 -222.234.0.0/16 9318 -222.235.0.0/18 9318 -222.235.64.0/20 9318 -222.235.80.0/24 18323 -222.235.81.0/24 9318 -222.235.82.0/23 9318 -222.235.84.0/22 9318 -222.235.88.0/21 9318 -222.235.96.0/19 9318 -222.235.128.0/17 9318 -222.236.0.0/17 9318 -222.236.128.0/18 9318 -222.236.192.0/20 9318 -222.236.208.0/21 9318 -222.236.216.0/22 9318 -222.236.220.0/23 17589 -222.236.222.0/23 9318 -222.236.224.0/19 9318 -222.237.0.0/16 9318 -222.238.0.0/16 9318 -222.239.0.0/18 9318 -222.239.64.0/19 9318 -222.239.96.0/20 9318 -222.239.112.0/22 9318 -222.239.116.0/23 9318 -222.239.118.0/24 45370 -222.239.119.0/24 9318 -222.239.120.0/21 9318 -222.239.128.0/19 9318 -222.239.160.0/23 9318 -222.239.162.0/24 9318 -222.239.163.0/24 45370 -222.239.164.0/23 9318 -222.239.166.0/24 9318 -222.239.167.0/24 45370 -222.239.168.0/24 9318 -222.239.169.0/24 45370 -222.239.170.0/24 9318 -222.239.171.0/24 45370 -222.239.172.0/23 9318 -222.239.174.0/24 9318 -222.239.175.0/24 45370 -222.239.176.0/24 45370 -222.239.177.0/24 9318 -222.239.178.0/23 9318 -222.239.180.0/22 9318 -222.239.184.0/21 9318 -222.239.192.0/18 9318 -222.240.0.0/13 4134 -222.248.0.0/16 17962 -222.249.0.0/16 4847 -222.250.0.0/16 17709 -222.251.0.0/19 17709 -222.251.32.0/20 131142 -222.251.48.0/21 17709 -222.251.56.0/22 17709 -222.251.60.0/22 131142 -222.251.64.0/18 17709 -222.251.128.0/17 23563 -222.252.0.0/15 45899 -222.254.0.0/16 45899 -222.255.0.0/18 45899 -222.255.64.0/24 7643 -222.255.65.0/24 45899 -222.255.66.0/24 7643 -222.255.67.0/24 45899 -222.255.68.0/22 45899 -222.255.72.0/21 45899 -222.255.80.0/20 45899 -222.255.96.0/22 45899 -222.255.100.0/23 45899 -222.255.102.0/23 7643 -222.255.112.0/21 45899 -222.255.120.0/24 45899 -222.255.121.0/24 7643 -222.255.122.0/24 7643 -222.255.123.0/24 45899 -222.255.124.0/22 45899 -222.255.128.0/18 45899 -222.255.192.0/20 45899 -222.255.216.0/21 45899 -222.255.224.0/21 45899 -222.255.232.0/23 45899 -222.255.234.0/23 7643 -222.255.236.0/23 7643 -222.255.238.0/24 45899 -222.255.239.0/24 7643 -222.255.248.0/21 45899 -223.0.0.0/15 63555 -223.2.0.0/15 4538 -223.4.0.0/14 37963 -223.8.0.0/14 4134 -223.12.0.0/15 4134 -223.14.0.0/16 4134 -223.15.0.0/17 4134 -223.15.128.0/18 4134 -223.15.192.0/19 4134 -223.15.224.0/20 132153 -223.15.240.0/21 132153 -223.15.248.0/21 4134 -223.16.0.0/14 9304 -223.20.0.0/15 4808 -223.22.0.0/21 131142 -223.22.8.0/24 131142 -223.22.9.0/24 7482 -223.22.10.0/24 131142 -223.22.11.0/24 7482 -223.22.12.0/22 7482 -223.22.16.0/20 7482 -223.22.32.0/19 7482 -223.22.64.0/19 17709 -223.22.96.0/20 17709 -223.22.112.0/21 17709 -223.22.120.0/22 17709 -223.22.124.0/23 17709 -223.22.126.0/24 17709 -223.22.127.0/24 131591 -223.22.128.0/19 131591 -223.22.160.0/19 17709 -223.22.192.0/20 17709 -223.22.208.0/20 131591 -223.22.224.0/22 131591 -223.22.228.0/24 131591 -223.22.229.0/24 17709 -223.22.230.0/23 17709 -223.22.232.0/22 131591 -223.22.236.0/23 131591 -223.22.238.0/24 131591 -223.22.239.0/24 17709 -223.22.240.0/21 131591 -223.22.248.0/24 17709 -223.22.249.0/24 131591 -223.22.250.0/23 17709 -223.22.252.0/23 131591 -223.22.254.0/24 131591 -223.22.255.0/24 131142 -223.23.0.0/16 17709 -223.24.0.0/19 7470 -223.24.32.0/20 7470 -223.24.48.0/21 7470 -223.24.56.0/22 7470 -223.24.60.0/22 132061 -223.24.64.0/20 7470 -223.24.80.0/21 7470 -223.24.88.0/22 7470 -223.24.92.0/22 132061 -223.24.96.0/19 7470 -223.24.128.0/20 7470 -223.24.144.0/20 132061 -223.24.160.0/21 132061 -223.24.168.0/22 132061 -223.24.172.0/22 7470 -223.24.176.0/21 7470 -223.24.184.0/21 132061 -223.24.192.0/18 7470 -223.25.0.0/19 56099 -223.25.32.0/20 56099 -223.25.48.0/21 56099 -223.25.60.0/22 134707 -223.25.64.0/21 56300 -223.25.72.0/22 56300 -223.25.76.0/23 56300 -223.25.86.0/24 56300 -223.25.88.0/23 133136 -223.25.96.0/21 9341 -223.25.104.0/21 4821 -223.25.112.0/21 7490 -223.25.120.0/21 45935 -223.25.128.0/18 55387 -223.25.224.0/22 45270 -223.25.228.0/23 45270 -223.25.231.0/24 45270 -223.25.232.0/21 45470 -223.25.240.0/23 55720 -223.25.242.0/24 55720 -223.25.244.0/22 55720 -223.25.248.0/22 38891 -223.25.252.0/22 134968 -223.26.16.0/22 136171 -223.26.20.0/22 133457 -223.26.24.0/22 135069 -223.26.28.0/22 135031 -223.26.32.0/23 45189 -223.26.48.0/20 38197 -223.26.68.0/24 131600 -223.26.69.0/24 17408 -223.26.70.0/23 17408 -223.26.80.0/22 38851 -223.26.84.0/22 18049 -223.26.88.0/21 10085 -223.26.96.0/21 10085 -223.26.108.0/22 38851 -223.26.112.0/20 18049 -223.26.128.0/17 38690 -223.27.0.0/19 45454 -223.27.32.0/19 38843 -223.27.64.0/23 24129 -223.27.66.0/23 24093 -223.27.68.0/22 9371 -223.27.72.0/21 10011 -223.27.80.0/20 38071 -223.27.96.0/21 9822 -223.27.104.0/21 56146 -223.27.116.0/23 132504 -223.27.118.0/23 4694 -223.27.120.0/22 55734 -223.27.124.0/22 18264 -223.27.128.0/20 38199 -223.27.144.0/20 38496 -223.27.160.0/22 133125 -223.27.164.0/22 15695 -223.27.176.0/22 7474 -223.27.180.0/22 9354 -223.27.184.0/22 17622 -223.27.192.0/22 38794 -223.27.196.0/24 38794 -223.27.197.0/24 45807 -223.27.198.0/23 38794 -223.27.200.0/24 45796 -223.27.201.0/24 38794 -223.27.202.0/23 38794 -223.27.204.0/24 45520 -223.27.205.0/24 38794 -223.27.206.0/23 38794 -223.27.208.0/20 38794 -223.27.224.0/24 134100 -223.27.225.0/24 38794 -223.27.226.0/24 38794 -223.27.227.0/24 132821 -223.27.228.0/22 38794 -223.27.232.0/24 45796 -223.27.233.0/24 38794 -223.27.234.0/23 38794 -223.27.236.0/24 38794 -223.27.237.0/24 45796 -223.27.238.0/23 38794 -223.27.240.0/22 38794 -223.27.244.0/23 38794 -223.27.246.0/24 38794 -223.27.247.0/24 23925 -223.27.248.0/21 38794 -223.28.0.0/17 9930 -223.28.128.0/17 17597 -223.29.0.0/17 18126 -223.29.128.0/19 45461 -223.29.160.0/21 45461 -223.29.168.0/22 45461 -223.29.172.0/23 45461 -223.29.175.0/24 45461 -223.29.176.0/20 17682 -223.29.192.0/20 45804 -223.29.212.0/22 64074 -223.29.216.0/22 27471 -223.29.220.0/22 58640 -223.29.224.0/23 9387 -223.29.226.0/24 9387 -223.29.232.0/21 139879 -223.29.240.0/22 55766 -223.29.244.0/22 23618 -223.29.248.0/22 55750 -223.29.252.0/22 63554 -223.30.0.0/18 9583 -223.30.64.0/20 9583 -223.30.80.0/21 9583 -223.30.88.0/24 9583 -223.30.92.0/22 9583 -223.30.96.0/20 9583 -223.30.113.0/24 9583 -223.30.114.0/23 9583 -223.30.116.0/22 9583 -223.30.120.0/21 9583 -223.30.128.0/19 9583 -223.30.160.0/21 9583 -223.30.176.0/20 9583 -223.30.192.0/20 9583 -223.30.208.0/22 9583 -223.30.212.0/23 9583 -223.30.216.0/21 9583 -223.30.224.0/19 9583 -223.31.1.0/24 9583 -223.31.2.0/23 9583 -223.31.4.0/22 9583 -223.31.8.0/21 9583 -223.31.16.0/20 9583 -223.31.32.0/19 9583 -223.31.64.0/19 9583 -223.31.96.0/20 9583 -223.31.112.0/21 9583 -223.31.120.0/22 132215 -223.31.124.0/22 9583 -223.31.129.0/24 9583 -223.31.132.0/22 9583 -223.31.136.0/21 9583 -223.31.144.0/21 9583 -223.31.152.0/22 9583 -223.31.156.0/23 9583 -223.31.158.0/24 9583 -223.31.159.0/24 132215 -223.31.160.0/21 9583 -223.31.168.0/22 9583 -223.31.174.0/24 132215 -223.31.175.0/24 9583 -223.31.176.0/20 9583 -223.31.192.0/21 9583 -223.31.208.0/20 9583 -223.31.224.0/21 9583 -223.31.236.0/22 9583 -223.31.240.0/22 9583 -223.31.244.0/23 9583 -223.31.246.0/24 9583 -223.32.0.0/11 9644 -223.64.0.0/14 56046 -223.68.0.0/16 56046 -223.69.0.0/16 56048 -223.70.0.0/15 56048 -223.72.0.0/16 56048 -223.73.0.0/16 56040 -223.74.0.0/16 56040 -223.75.0.0/16 9808 -223.76.0.0/15 9808 -223.78.0.0/15 24444 -223.80.0.0/15 24444 -223.82.0.0/15 9808 -223.84.0.0/14 9808 -223.88.0.0/14 24445 -223.92.0.0/14 56041 -223.96.0.0/14 24444 -223.100.0.0/15 56044 -223.102.0.0/16 56044 -223.103.0.0/24 56041 -223.103.1.0/24 56040 -223.103.2.0/24 24444 -223.103.3.0/24 56048 -223.103.4.0/24 56046 -223.103.5.0/24 24400 -223.103.6.0/24 9808 -223.103.7.0/24 38019 -223.103.8.0/24 56044 -223.103.9.0/24 9808 -223.103.10.0/23 9808 -223.103.12.0/24 9808 -223.103.13.0/24 24547 -223.103.14.0/24 56042 -223.103.15.0/24 9808 -223.103.16.0/24 134810 -223.103.17.0/24 132525 -223.103.18.0/24 9808 -223.103.19.0/24 24445 -223.103.20.0/24 9808 -223.103.21.0/24 56047 -223.103.22.0/23 9808 -223.103.24.0/21 9808 -223.103.32.0/21 9808 -223.103.40.0/24 9808 -223.103.41.0/24 24445 -223.103.42.0/23 24445 -223.103.44.0/24 24445 -223.103.45.0/24 9808 -223.103.46.0/23 56041 -223.103.48.0/23 56041 -223.103.50.0/23 9808 -223.103.52.0/22 9808 -223.103.56.0/21 9808 -223.103.64.0/18 9808 -223.103.128.0/23 9808 -223.103.130.0/24 9808 -223.103.131.0/24 24547 -223.103.132.0/24 24547 -223.103.133.0/24 9808 -223.103.134.0/23 9808 -223.103.136.0/21 9808 -223.103.144.0/21 9808 -223.103.152.0/21 24445 -223.103.160.0/23 24445 -223.103.162.0/24 24445 -223.103.163.0/24 56041 -223.103.164.0/24 56041 -223.103.165.0/24 9808 -223.103.166.0/23 56041 -223.103.168.0/22 56041 -223.103.172.0/23 56041 -223.103.174.0/23 9808 -223.103.176.0/20 9808 -223.103.192.0/18 9808 -223.104.0.0/24 56041 -223.104.1.0/24 56040 -223.104.2.0/24 24444 -223.104.3.0/24 56048 -223.104.4.0/24 56046 -223.104.5.0/24 24400 -223.104.6.0/24 9808 -223.104.7.0/24 38019 -223.104.8.0/24 56044 -223.104.9.0/24 9808 -223.104.10.0/23 9808 -223.104.12.0/24 9808 -223.104.13.0/24 24547 -223.104.14.0/24 56042 -223.104.15.0/24 9808 -223.104.16.0/24 134810 -223.104.17.0/24 132525 -223.104.18.0/24 9808 -223.104.19.0/24 24445 -223.104.20.0/24 9808 -223.104.21.0/24 56047 -223.104.22.0/23 9808 -223.104.24.0/21 9808 -223.104.32.0/22 9808 -223.104.36.0/23 9808 -223.104.38.0/24 56048 -223.104.39.0/24 9808 -223.104.40.0/21 9808 -223.104.48.0/21 9808 -223.104.56.0/23 9808 -223.104.58.0/23 56040 -223.104.60.0/22 56040 -223.104.64.0/21 56040 -223.104.72.0/24 56040 -223.104.73.0/24 9808 -223.104.74.0/23 9808 -223.104.76.0/22 9808 -223.104.80.0/20 9808 -223.104.96.0/22 9808 -223.104.100.0/24 9808 -223.104.101.0/24 24547 -223.104.102.0/23 24547 -223.104.104.0/24 24547 -223.104.105.0/24 24445 -223.104.106.0/23 24445 -223.104.108.0/22 24445 -223.104.112.0/24 24445 -223.104.113.0/24 9808 -223.104.114.0/23 9808 -223.104.116.0/22 9808 -223.104.120.0/21 9808 -223.104.128.0/23 9808 -223.104.130.0/23 56047 -223.104.132.0/22 56047 -223.104.136.0/21 9808 -223.104.144.0/24 9808 -223.104.145.0/24 56046 -223.104.146.0/23 56046 -223.104.148.0/23 56046 -223.104.150.0/23 9808 -223.104.152.0/22 9808 -223.104.156.0/23 9808 -223.104.158.0/24 9808 -223.104.159.0/24 56041 -223.104.160.0/21 56041 -223.104.168.0/24 56041 -223.104.169.0/24 9808 -223.104.170.0/23 9808 -223.104.172.0/23 9808 -223.104.174.0/24 9808 -223.104.175.0/24 56044 -223.104.176.0/23 56044 -223.104.178.0/23 9808 -223.104.180.0/22 9808 -223.104.184.0/24 9808 -223.104.185.0/24 24444 -223.104.186.0/23 24444 -223.104.188.0/22 24444 -223.104.192.0/22 24444 -223.104.196.0/24 24444 -223.104.197.0/24 56042 -223.104.198.0/24 56042 -223.104.199.0/24 9808 -223.104.200.0/21 9808 -223.104.208.0/23 9808 -223.104.210.0/23 24400 -223.104.212.0/23 24400 -223.104.214.0/23 9808 -223.104.216.0/21 9808 -223.104.224.0/23 9808 -223.104.226.0/24 9808 -223.104.227.0/24 38019 -223.104.228.0/24 38019 -223.104.229.0/24 9808 -223.104.230.0/23 9808 -223.104.232.0/23 9808 -223.104.234.0/24 9808 -223.104.235.0/24 56044 -223.104.236.0/23 56044 -223.104.238.0/23 9808 -223.104.240.0/22 9808 -223.104.244.0/24 9808 -223.104.245.0/24 56041 -223.104.246.0/24 56041 -223.104.247.0/24 9808 -223.104.248.0/21 9808 -223.105.0.0/16 56046 -223.106.0.0/15 56046 -223.108.0.0/14 56046 -223.112.0.0/15 56046 -223.114.0.0/15 9808 -223.116.0.0/15 9808 -223.118.0.0/16 58453 -223.119.0.0/21 58453 -223.119.8.0/21 58807 -223.119.16.0/20 58453 -223.119.32.0/24 58807 -223.119.33.0/24 58453 -223.119.34.0/23 58807 -223.119.36.0/22 58453 -223.119.40.0/21 58453 -223.119.48.0/20 58453 -223.119.64.0/19 58453 -223.119.96.0/22 58453 -223.119.100.0/24 58807 -223.119.101.0/24 58453 -223.119.102.0/23 58453 -223.119.104.0/21 58453 -223.119.112.0/20 58453 -223.119.128.0/18 58453 -223.119.192.0/19 58453 -223.119.224.0/20 58453 -223.119.240.0/21 58453 -223.119.248.0/22 58453 -223.119.252.0/23 58453 -223.119.254.0/24 132389 -223.119.255.0/24 139619 -223.120.0.0/17 58453 -223.120.128.0/17 9808 -223.121.0.0/17 58453 -223.121.128.0/17 9808 -223.122.0.0/15 9808 -223.124.0.0/14 9808 -223.128.0.0/15 4538 -223.130.4.0/22 55711 -223.130.8.0/22 22769 -223.130.14.0/24 45874 -223.130.16.0/22 17639 -223.130.20.0/24 9422 -223.130.21.0/24 138128 -223.130.22.0/23 9422 -223.130.24.0/23 45638 -223.130.27.0/24 45638 -223.130.28.0/22 133661 -223.130.32.0/19 9444 -223.130.64.0/19 46010 -223.130.96.0/23 46010 -223.130.98.0/24 46010 -223.130.100.0/22 46010 -223.130.104.0/21 46010 -223.130.112.0/22 46010 -223.130.116.0/23 46010 -223.130.119.0/24 46010 -223.130.120.0/21 46010 -223.130.192.0/21 23576 -223.130.200.0/22 23576 -223.130.208.0/20 4766 -223.130.224.0/20 4766 -223.131.0.0/17 9689 -223.131.128.0/19 38103 -223.131.160.0/20 38103 -223.131.176.0/21 38103 -223.131.184.0/23 9689 -223.131.186.0/24 9689 -223.131.187.0/24 38103 -223.131.188.0/24 23563 -223.131.189.0/24 9689 -223.131.190.0/23 9689 -223.131.192.0/19 38095 -223.131.224.0/20 9689 -223.131.240.0/22 9689 -223.131.244.0/22 38097 -223.131.248.0/21 9689 -223.132.0.0/14 2527 -223.136.0.0/14 17421 -223.140.0.0/15 17421 -223.144.0.0/12 4134 -223.160.0.0/14 7641 -223.164.0.0/17 9785 -223.165.0.0/23 55708 -223.165.2.0/24 55708 -223.165.3.0/24 134841 -223.165.4.0/22 46062 -223.165.10.0/24 133955 -223.165.11.0/24 24155 -223.165.12.0/23 133955 -223.165.14.0/24 7656 -223.165.16.0/22 9503 -223.165.20.0/22 4721 -223.165.24.0/21 55705 -223.165.32.0/19 4721 -223.165.64.0/20 45179 -223.165.80.0/20 10003 -223.165.96.0/19 9268 -223.165.128.0/18 38661 -223.165.192.0/19 38661 -223.165.224.0/20 38661 -223.165.240.0/21 38661 -223.165.248.0/21 4766 -223.166.0.0/16 17621 -223.167.0.0/18 17621 -223.167.64.0/20 17621 -223.167.80.0/22 17621 -223.167.84.0/24 17621 -223.167.85.0/24 138421 -223.167.86.0/23 17621 -223.167.88.0/21 17621 -223.167.96.0/21 17621 -223.167.104.0/22 17621 -223.167.108.0/23 17621 -223.167.110.0/23 138421 -223.167.112.0/20 17621 -223.167.128.0/17 17621 -223.171.0.0/16 17853 -223.172.0.0/16 17853 -223.174.0.0/15 17853 -223.176.0.0/19 45609 -223.176.32.0/20 45609 -223.176.48.0/21 45609 -223.176.64.0/18 45609 -223.176.128.0/17 45609 -223.178.128.0/20 45609 -223.178.160.0/20 45609 -223.179.0.0/17 45609 -223.179.128.0/19 24560 -223.179.192.0/18 45609 -223.180.128.0/18 45609 -223.180.192.0/19 45609 -223.180.224.0/24 45609 -223.181.0.0/17 45609 -223.181.192.0/19 45609 -223.181.224.0/20 45609 -223.181.240.0/21 45609 -223.182.0.0/18 45609 -223.182.128.0/19 45609 -223.182.160.0/22 45609 -223.182.168.0/22 45609 -223.182.176.0/22 45609 -223.182.184.0/22 45609 -223.182.192.0/19 45609 -223.182.224.0/21 45609 -223.182.240.0/21 45609 -223.183.0.0/16 45609 -223.184.128.0/17 45609 -223.185.0.0/18 45609 -223.185.128.0/17 45609 -223.186.0.0/22 45609 -223.186.8.0/22 45609 -223.186.16.0/22 45609 -223.186.24.0/22 45609 -223.186.32.0/22 45609 -223.186.40.0/22 45609 -223.186.48.0/22 45609 -223.186.56.0/22 45609 -223.186.64.0/22 45609 -223.186.72.0/22 45609 -223.186.80.0/22 45609 -223.186.88.0/22 45609 -223.186.96.0/22 45609 -223.186.104.0/22 45609 -223.186.112.0/22 45609 -223.186.120.0/22 45609 -223.186.128.0/19 45609 -223.186.160.0/20 45609 -223.186.176.0/22 45609 -223.186.184.0/21 45609 -223.186.192.0/18 45609 -223.187.128.0/18 45609 -223.187.192.0/19 45609 -223.187.224.0/20 45609 -223.188.0.0/17 45609 -223.188.128.0/18 45609 -223.189.0.0/22 45609 -223.189.8.0/21 45609 -223.189.20.0/22 45609 -223.189.24.0/22 45609 -223.189.32.0/21 45609 -223.189.44.0/22 45609 -223.189.48.0/22 45609 -223.189.56.0/21 45609 -223.189.64.0/21 45609 -223.189.76.0/22 45609 -223.189.80.0/21 45609 -223.189.88.0/22 45609 -223.189.96.0/21 45609 -223.189.112.0/21 45609 -223.189.128.0/18 45609 -223.190.0.0/17 24560 -223.191.0.0/18 45609 -223.191.128.0/17 45609 -223.192.0.0/15 7497 -223.194.0.0/19 10088 -223.194.32.0/20 10088 -223.194.48.0/22 10088 -223.194.53.0/24 10088 -223.194.54.0/23 18330 -223.194.56.0/22 4766 -223.194.60.0/24 4766 -223.194.61.0/24 18330 -223.194.62.0/23 3786 -223.194.64.0/20 18330 -223.194.80.0/21 18330 -223.194.88.0/23 18330 -223.194.90.0/24 4766 -223.194.91.0/24 18330 -223.194.92.0/22 18330 -223.194.96.0/21 9318 -223.194.104.0/22 9318 -223.194.108.0/24 9318 -223.194.109.0/24 18330 -223.194.110.0/23 18330 -223.194.112.0/20 3786 -223.194.128.0/19 3786 -223.194.160.0/22 10045 -223.194.164.0/22 4766 -223.194.168.0/21 4766 -223.194.176.0/21 4766 -223.194.184.0/22 4766 -223.194.188.0/24 4766 -223.194.190.0/23 4766 -223.194.192.0/22 10045 -223.194.196.0/22 55628 -223.194.200.0/21 55628 -223.194.208.0/20 55628 -223.194.224.0/22 55628 -223.194.228.0/23 18330 -223.194.230.0/23 18026 -223.194.232.0/22 18026 -223.194.236.0/22 3786 -223.194.240.0/20 3786 -223.195.0.0/18 9769 -223.195.64.0/20 9769 -223.195.80.0/21 9965 -223.195.88.0/22 9965 -223.195.92.0/23 9965 -223.195.94.0/23 18330 -223.195.96.0/20 3786 -223.195.112.0/22 3786 -223.195.116.0/22 38110 -223.195.120.0/22 38110 -223.195.124.0/23 38110 -223.195.126.0/23 18330 -223.195.128.0/20 45983 -223.195.147.0/24 18330 -223.195.158.0/23 3786 -223.195.160.0/20 9840 -223.195.176.0/22 9840 -223.195.192.0/20 9321 -223.195.222.0/24 9635 -223.195.223.0/24 3786 -223.195.224.0/19 9323 -223.196.0.0/22 55644 -223.196.4.0/24 55644 -223.196.6.0/23 55644 -223.196.8.0/23 55644 -223.196.11.0/24 55644 -223.196.12.0/22 55644 -223.196.16.0/22 55644 -223.196.21.0/24 55644 -223.196.24.0/23 55644 -223.196.28.0/22 55644 -223.196.32.0/23 55644 -223.196.43.0/24 55644 -223.196.44.0/23 55644 -223.196.46.0/24 55644 -223.196.50.0/23 55644 -223.196.54.0/23 55644 -223.196.56.0/21 55644 -223.196.64.0/20 55644 -223.196.80.0/21 55644 -223.196.88.0/22 55644 -223.196.92.0/24 55644 -223.196.94.0/23 55644 -223.196.96.0/22 55644 -223.196.100.0/23 55644 -223.196.102.0/24 55644 -223.196.112.0/22 55644 -223.196.116.0/24 55644 -223.196.144.0/21 55644 -223.196.152.0/22 55644 -223.196.160.0/19 133287 -223.197.0.0/18 4515 -223.197.64.0/19 4515 -223.197.96.0/20 4515 -223.197.112.0/24 132585 -223.197.113.0/24 4515 -223.197.114.0/24 4515 -223.197.115.0/24 135621 -223.197.116.0/22 4515 -223.197.120.0/21 4515 -223.197.128.0/17 4760 -223.198.0.0/15 4134 -223.200.0.0/16 4782 -223.201.0.0/22 25892 -223.201.4.0/22 6391 -223.202.0.0/17 4808 -223.202.128.0/18 4808 -223.202.192.0/19 4808 -223.202.224.0/22 23724 -223.202.228.0/22 4808 -223.202.232.0/21 4808 -223.202.240.0/21 4808 -223.202.248.0/22 4808 -223.202.252.0/22 23724 -223.203.0.0/17 4808 -223.203.128.0/18 4808 -223.203.192.0/19 4808 -223.203.224.0/21 4808 -223.203.232.0/21 23724 -223.203.240.0/20 23724 -223.204.0.0/17 45758 -223.204.128.0/18 45758 -223.204.192.0/19 45758 -223.204.224.0/21 45758 -223.204.232.0/21 45629 -223.204.240.0/20 45629 -223.205.0.0/17 45758 -223.205.128.0/20 45758 -223.205.144.0/21 45629 -223.205.152.0/21 45758 -223.205.160.0/19 45758 -223.205.192.0/19 45758 -223.205.224.0/20 45758 -223.205.240.0/21 45629 -223.205.248.0/21 45758 -223.206.0.0/17 45758 -223.206.128.0/18 45758 -223.206.192.0/19 45758 -223.206.224.0/21 45629 -223.206.232.0/21 45758 -223.206.240.0/20 45629 -223.207.0.0/17 45758 -223.207.128.0/18 45629 -223.207.192.0/20 45629 -223.207.208.0/21 45629 -223.207.216.0/21 45758 -223.207.224.0/21 45758 -223.207.232.0/21 45629 -223.207.240.0/20 45629 -223.208.32.0/19 17964 -223.208.64.0/18 17964 -223.208.128.0/17 7497 -223.209.0.0/18 9395 -223.209.128.0/17 7497 -223.210.0.0/19 4847 -223.210.32.0/20 4847 -223.210.48.0/22 4847 -223.210.52.0/22 17964 -223.210.56.0/21 17964 -223.210.64.0/19 17964 -223.210.128.0/19 4847 -223.210.192.0/19 4847 -223.210.224.0/19 17964 -223.211.0.0/17 7497 -223.211.128.0/18 4847 -223.211.224.0/19 17964 -223.212.0.0/15 17962 -223.214.0.0/15 4134 -223.216.0.0/14 4713 -223.220.0.0/15 4134 -223.222.0.0/16 17849 -223.223.0.0/17 18144 -223.223.128.0/19 45775 -223.223.160.0/22 55382 -223.223.164.0/23 38643 -223.223.166.0/24 131894 -223.223.167.0/24 38643 -223.223.168.0/21 55329 -223.223.176.0/21 4808 -223.223.184.0/21 4847 -223.223.192.0/20 4847 -223.223.208.0/21 4721 -223.223.217.0/24 133380 -223.223.218.0/23 133380 -223.223.220.0/22 132281 -223.223.240.0/20 59127 -223.224.0.0/19 132045 -223.224.32.0/23 9498 -223.224.34.0/24 9498 -223.224.35.0/24 45609 -223.224.36.0/23 9498 -223.224.38.0/24 9498 -223.224.39.0/24 45609 -223.224.40.0/24 45609 -223.224.41.0/24 9498 -223.224.42.0/23 45609 -223.224.44.0/24 45609 -223.224.45.0/24 9498 -223.224.46.0/23 9498 -223.224.48.0/24 9498 -223.224.49.0/24 45609 -223.224.50.0/24 45609 -223.224.51.0/24 9498 -223.224.52.0/23 9498 -223.224.54.0/23 45609 -223.224.56.0/24 45609 -223.224.57.0/24 9498 -223.224.58.0/23 9498 -223.224.60.0/24 9498 -223.224.61.0/24 45609 -223.224.62.0/24 45609 -223.224.63.0/24 9498 -223.224.64.0/23 9498 -223.224.66.0/24 9498 -223.224.67.0/24 45609 -223.224.68.0/23 9498 -223.224.70.0/24 9498 -223.224.71.0/24 45609 -223.224.72.0/24 45609 -223.224.73.0/24 9498 -223.224.74.0/23 9498 -223.224.76.0/23 9498 -223.224.78.0/24 9498 -223.224.79.0/24 45609 -223.224.80.0/20 9498 -223.224.96.0/21 9498 -223.224.104.0/22 9498 -223.224.108.0/24 9498 -223.224.109.0/24 45609 -223.224.110.0/24 9498 -223.224.111.0/24 45609 -223.224.112.0/21 9498 -223.224.120.0/24 9498 -223.224.121.0/24 45609 -223.224.122.0/24 9498 -223.224.123.0/24 45609 -223.224.124.0/23 9498 -223.224.126.0/24 45609 -223.224.127.0/24 9498 -223.224.128.0/23 9498 -223.224.130.0/23 45609 -223.224.132.0/24 45609 -223.224.133.0/24 9498 -223.224.134.0/23 45609 -223.224.136.0/24 9498 -223.224.137.0/24 45609 -223.224.138.0/23 9498 -223.224.140.0/24 45609 -223.224.141.0/24 9498 -223.224.142.0/23 9498 -223.224.144.0/22 9498 -223.224.148.0/24 9498 -223.224.149.0/24 45609 -223.224.150.0/24 45609 -223.224.151.0/24 9498 -223.224.152.0/22 45609 -223.224.156.0/22 9498 -223.224.160.0/23 9498 -223.224.162.0/24 9498 -223.224.163.0/24 45609 -223.224.164.0/22 9498 -223.224.168.0/23 45609 -223.224.170.0/24 9498 -223.224.171.0/24 45609 -223.224.172.0/23 24560 -223.224.174.0/24 45609 -223.224.175.0/24 9498 -223.224.176.0/23 9498 -223.224.178.0/24 45609 -223.224.179.0/24 9498 -223.224.180.0/22 9498 -223.224.184.0/21 9498 -223.224.192.0/23 9498 -223.224.194.0/24 9498 -223.224.195.0/24 45609 -223.224.196.0/23 9498 -223.224.198.0/24 134426 -223.224.199.0/24 9498 -223.224.200.0/21 9498 -223.224.208.0/20 9498 -223.224.224.0/19 9498 -223.225.0.0/19 45609 -223.225.32.0/20 45609 -223.225.64.0/19 45609 -223.225.96.0/20 45609 -223.225.128.0/19 45609 -223.225.192.0/18 45609 -223.226.12.0/22 24560 -223.226.16.0/20 24560 -223.226.32.0/19 24560 -223.226.64.0/18 24560 -223.227.0.0/20 45609 -223.227.16.0/21 45609 -223.227.24.0/23 45609 -223.227.28.0/22 45609 -223.227.32.0/22 45609 -223.227.48.0/20 45609 -223.227.112.0/20 45609 -223.228.0.0/17 45609 -223.228.128.0/18 45609 -223.229.0.0/17 45609 -223.229.128.0/17 24560 -223.230.0.0/24 45609 -223.230.1.0/24 24560 -223.230.2.0/23 45609 -223.230.4.0/22 24560 -223.230.8.0/21 24560 -223.230.16.0/24 24560 -223.230.17.0/24 45609 -223.230.18.0/23 45609 -223.230.20.0/22 24560 -223.230.24.0/21 24560 -223.230.32.0/19 24560 -223.230.64.0/18 24560 -223.230.128.0/19 45609 -223.230.160.0/20 45609 -223.231.0.0/17 45609 -223.233.0.0/18 45609 -223.233.64.0/19 24560 -223.233.96.0/20 24560 -223.237.0.0/18 45609 -223.237.128.0/17 45609 -223.238.0.0/18 45609 -223.238.64.0/19 45609 -223.238.128.0/19 45609 -223.238.160.0/20 45609 -223.238.176.0/21 45609 -223.238.192.0/19 45609 -223.239.8.0/24 45609 -223.239.11.0/24 45609 -223.239.12.0/23 45609 -223.239.14.0/24 24560 -223.239.40.0/21 45609 -223.239.128.0/19 24560 -223.239.208.0/20 45609 -223.239.240.0/20 45609 -223.240.0.0/13 4134 -223.248.0.0/14 9812 -223.252.0.0/18 45671 -223.252.64.0/19 9354 -223.252.96.0/20 45671 -223.252.113.0/24 23620 -223.252.114.0/24 23620 -223.252.128.0/19 37943 -223.252.160.0/24 4134 -223.252.161.0/24 58779 -223.252.162.0/23 58779 -223.252.165.0/24 58779 -223.252.166.0/23 58779 -223.252.168.0/22 58779 -223.252.173.0/24 133398 -223.252.174.0/23 58779 -223.252.176.0/24 133107 -223.252.178.0/23 9535 -223.252.180.0/22 9535 -223.252.186.0/23 9535 -223.252.188.0/22 9535 -223.252.192.0/19 45062 -223.252.224.0/19 18243 -223.253.0.0/18 9842 -223.255.0.0/18 24138 -223.255.64.0/18 4847 -223.255.128.0/18 9381 -223.255.192.0/21 4766 -223.255.224.0/23 45727 -223.255.227.0/24 45727 -223.255.228.0/22 45727 -223.255.232.0/24 38809 -223.255.233.0/24 1221 -223.255.234.0/24 17766 -223.255.235.0/24 1221 -223.255.236.0/22 56000 -223.255.240.0/22 55649 -223.255.244.0/22 45954 -223.255.248.0/22 63199 -223.255.252.0/23 58519 -223.255.254.0/24 55415 diff --git a/resources/resources.tgz b/resources/resources.tgz deleted file mode 100644 index b75ffd4e..00000000 Binary files a/resources/resources.tgz and /dev/null differ diff --git a/resources/transition_probs.csv.gz b/resources/transition_probs.csv.gz deleted file mode 100644 index 35fa8e3f..00000000 Binary files a/resources/transition_probs.csv.gz and /dev/null differ diff --git a/src/asn1.cpp b/src/asn1.cpp new file mode 100644 index 00000000..376a7397 --- /dev/null +++ b/src/asn1.cpp @@ -0,0 +1,41 @@ +// asn1.cpp +// +// generic asn1 parsing +// +// compilation: +// g++ -Wall -Wno-deprecated-declarations -Wno-narrowing asn1.cpp libmerc/asn1.cc libmerc/asn1/oid.cc libmerc/utils.cc -o asn1 + +#include "libmerc/datum.h" +#include "libmerc/asn1.h" +#include "libmerc/utils.h" +#include +#include + +int main(int, char *[]) { + + std::string line; + while (std::getline(std::cin, line)) { + + // decode hex line to raw binary data + // + uint8_t rawbuf[4096]; + size_t num_bytes = hex_to_raw(rawbuf, sizeof(rawbuf), line.c_str()); + if (num_bytes == 0) { + fprintf(stderr, "note: ignoring empty line\n"); + continue; // omit further processing, go to next line + } + datum d{rawbuf, rawbuf + num_bytes}; + + // perform recursive ASN.1 parsing of data, writing json + // representation + // + output_buffer<4096> buf; + json_array_asn1 a{&buf}; + tlv::recursive_parse(d, a); + a.close(); + buf.write_line(stdout); + + } + + return 0; +} diff --git a/src/config.c b/src/config.c index 4db97eab..aebedee2 100644 --- a/src/config.c +++ b/src/config.c @@ -184,12 +184,8 @@ static enum status mercury_config_parse_line(struct mercury_config *cfg, global_vars.output_udp_initial_data = true; return status_ok; - } else if ((arg = command_get_argument("tcp-reassembly", line)) != NULL) { - additional_args = str_append(additional_args, "tcp-reassembly;"); - return status_ok; - - } else if ((arg = command_get_argument("quic-reassembly", line)) != NULL) { - additional_args = str_append(additional_args, "quic-reassembly;"); + } else if ((arg = command_get_argument("reassembly", line)) != NULL) { + additional_args = str_append(additional_args, "reassembly;"); return status_ok; } else if ((arg = command_get_argument("format=", line)) != NULL) { @@ -198,6 +194,18 @@ static enum status mercury_config_parse_line(struct mercury_config *cfg, additional_args = str_append(additional_args, ";"); return status_ok; + } else if ((arg = command_get_argument("raw-features=", line)) != NULL) { + additional_args = str_append(additional_args, "raw-features="); + additional_args = str_append(additional_args, arg); + additional_args = str_append(additional_args, ";"); + return status_ok; + + } else if ((arg = command_get_argument("crypto-assess=", line)) != NULL) { + additional_args = str_append(additional_args, "crypto-assess="); + additional_args = str_append(additional_args, arg); + additional_args = str_append(additional_args, ";"); + return status_ok; + } else { if (line[0] == '#') { /* comment line */ return status_ok; @@ -253,5 +261,12 @@ enum status mercury_config_read_from_file(struct mercury_config &cfg, } global_vars.packet_filter_cfg = str_append(select_arg, additional_args); + // when reading from a config file, an interface file must be specified + // + if (cfg.capture_interface == nullptr) { + fprintf(stderr, "error: no capture interface specified in configuration file\n"); + return status_err; + } + return status_ok; } diff --git a/src/cython/_version.py b/src/cython/_version.py index 10939f01..574f4077 100644 --- a/src/cython/_version.py +++ b/src/cython/_version.py @@ -1 +1 @@ -__version__ = '0.1.2' +__version__ = '2.6.1' diff --git a/src/cython/build-wheels.sh b/src/cython/build-wheels.sh index 4cc3156b..85979645 100755 --- a/src/cython/build-wheels.sh +++ b/src/cython/build-wheels.sh @@ -8,12 +8,30 @@ function repair_wheel { if ! auditwheel show "$wheel"; then echo "Skipping non-platform wheel $wheel" else - auditwheel repair "$wheel" --plat manylinux_2_28_x86_64 -w /mercury/src/cython/wheelhouse/ + auditwheel repair "$wheel" --plat manylinux2014_x86_64 -w /mercury/src/cython/wheelhouse/ fi } +# update outdated centos mirrors +sed -i -e 's/mirrorlist/#mirrorlist/g' \ + -e 's|#baseurl=http://mirror.centos.org|baseurl=http://vault.centos.org|g' \ + /etc/yum.repos.d/CentOS-* + +# -e 's|baseurl=http://vault.centos.org/centos|baseurl=http://vault.centos.org/altarch|g' \ + # Install a system package required by our library -yum install -y openssl-devel make zlib-devel +yum install -y openssl-devel make zlib-devel wget + +# get latest openssl +wget https://github.com/openssl/openssl/releases/download/openssl-3.0.14/openssl-3.0.14.tar.gz +tar -xzvf openssl-3.0.14.tar.gz +cd openssl-3.0.14 +./config --prefix=/usr --openssldir=/etc/ssl --libdir=lib no-shared zlib-dynamic +make +make install +echo "export LD_LIBRARY_PATH=/usr/local/lib:/usr/local/lib64" > /etc/profile.d/openssl.sh +source /etc/profile.d/openssl.sh +openssl version -a # configure and make mercury cd /mercury @@ -23,8 +41,8 @@ make cd - # set environment variables -FLAGS='-DSSLNEW' -export ENV_CFLAGS=${FLAGS} +#FLAGS='-DSSLNEW' +#export ENV_CFLAGS=${FLAGS} # Compile wheels for PYBIN in /opt/python/*/bin; do diff --git a/src/cython/mercury.pyx b/src/cython/mercury.pyx index d4899f3a..5b30a250 100644 --- a/src/cython/mercury.pyx +++ b/src/cython/mercury.pyx @@ -1,6 +1,7 @@ -#cython: language_level=3 +#cython: language_level=3, embedsignature=True import json +import math from base64 import b64decode from libcpp.unordered_map cimport unordered_map @@ -10,6 +11,17 @@ from libc.stdio cimport * from libc.stdint cimport * from libc.string cimport memset from posix.time cimport timespec +from cython.operator import dereference + + +""" +:mod:`mercury-python` -- Packet parser +=================================== + +.. module:: mercury + :platform: Unix + :synopsis: A cython-based interface into mercury's functionality +""" ### BUILD INSTRUCTIONS @@ -19,7 +31,7 @@ from posix.time cimport timespec # CC=g++ CXX=g++ python setup.py install # TODO: actually handle version -__version__ = '0.1.2' +__version__ = '2.6.1' # imports from mercury's dns cdef extern from "../libmerc/dns.h": @@ -128,7 +140,38 @@ fp_type_dict = { 12: 'quic', } + cdef class Mercury: + """ + Initialize mercury packet processors to process and analyze network data. Standard usage: + + .. code-block:: python + + import mercury + from binascii import unhexlify + + libmerc = mercury.Mercury() + + pkt_data = b'52540012...' + libmerc.get_mercury_json(unhexlify(pkt_data)) + + :param do_analysis: Apply mercury's analysis functionality to packets. + :type do_analysis: bool + :param resources: Location of mercury-compatible resources file, necessary if `do_analysis` is set to `True`. + :type resources: bytes + :param output_tcp_initial_data: Return TCP initial packet data for unrecognized protocols (default=`False`). + :type output_tcp_initial_data: bool + :param output_udp_initial_data: Return UDP initial packet data for unrecognized protocols (default=`False`). + :type output_udp_initial_data: bool + :param packet_filter_cfg: Specify the protocols that mercury will analyze (default=`all`). + :type packet_filter_cfg: bytes + :param metadata_output: Report additional metadata about protocols (default=`True`). + :type metadata_output: bool + :param dns_json_output: When processing DNS packets, return a JSON representation as opposed to Base64 Representation (default=`True`). + :type dns_json_output: bool + :param certs_json_output: When processing certificates, return a JSON representation as opposed to Base64 Representation (default=`True`). + :type certs_json_output: bool + """ cdef mercury* mercury_context cdef stateful_pkt_proc* mpp cdef const analysis_context* ac @@ -163,7 +206,7 @@ cdef class Mercury: self.mercury_init() - cpdef int mercury_init(self, unsigned int verbosity=0): + cdef int mercury_init(self, unsigned int verbosity=0): cdef libmerc_config config = self.py_config self.mercury_context = mercury_init(&config, 0) if self.mercury_context == NULL: @@ -178,13 +221,28 @@ cdef class Mercury: return 0 - cpdef dict get_mercury_json(self, bytes pkt_data): + cpdef dict get_mercury_json(self, bytes pkt_data, double ts=0.0): + """ + Return mercury's JSON representation of a packet. + + :param pkt_data: packet data + :type pkt_data: bytes + :param ts: timestamp associated with the packet data (default=0.0) + :type ts: double + :return: JSON-encoded packet. + :rtype: dict + """ cdef unsigned char* pkt_data_ref = pkt_data cdef char buf[8192] memset(buf, 0, 8192) - mercury_packet_processor_write_json(self.mpp, buf, 8192, pkt_data_ref, len(pkt_data), &self.default_ts) + # set timestamp + cdef timespec c_ts + c_ts.tv_sec = int(ts) + c_ts.tv_nsec = int(math.modf(ts)[0]*1e9) + + mercury_packet_processor_write_json(self.mpp, buf, 8192, pkt_data_ref, len(pkt_data), &c_ts) cdef str json_str = buf.decode('UTF-8') if json_str != None: @@ -197,6 +255,14 @@ cdef class Mercury: cpdef dict get_fingerprint(self, bytes pkt_data): + """ + Return mercury's network protocol fingerprint (NPF) along with metadata. + + :param pkt_data: packet data + :type pkt_data: bytes + :return: JSON-encoded network protocol fingerprint information. + :rtype: dict + """ cdef unsigned char* pkt_data_ref = pkt_data cdef const analysis_context* ac = mercury_packet_processor_get_analysis_context(self.mpp, pkt_data_ref, len(pkt_data), &self.default_ts); @@ -216,6 +282,14 @@ cdef class Mercury: cpdef dict analyze_packet(self, bytes pkt_data): + """ + Given a packet, apply the mercury classifier and report relevant analysis metadata. + + :param pkt_data: packet data + :type pkt_data: bytes + :return: JSON-encoded analysis output + :rtype: dict + """ cdef unsigned char* pkt_data_ref = pkt_data cdef const analysis_context* ac = mercury_packet_processor_get_analysis_context(self.mpp, pkt_data_ref, len(pkt_data), &self.default_ts); @@ -251,6 +325,20 @@ cdef class Mercury: cpdef dict perform_analysis(self, str fp_str, str server_name, str dst_ip, int dst_port): + """ + Directly call into mercury analysis functionality by providing all needed data features. + + :param fp_str: mercury-generated network protocol fingerprint + :type fp_str: str + :param server_name: The visible, fully qualified domain name, found in the server_name extension + :type server_name: str + :param dst_ip: The destination IP address associated with the packet of interest + :type dst_ip: str + :param dst_port: The destination port associated with the packet of interest + :type dst_port: int + :return: JSON-encoded analysis output + :rtype: dict + """ if not self.do_analysis: print(f'error: classifier not loaded (is do_analysis set to True?)') return None @@ -286,6 +374,35 @@ cdef class Mercury: long double new_as_weight, long double new_domain_weight, long double new_port_weight, long double new_ip_weight, long double new_sni_weight, long double new_ua_weight): + """ + Directly call into mercury analysis functionality by providing all needed data features. Additionally, + supply custom weights for each data feature. + + :param fp_str: mercury-generated network protocol fingerprint + :type fp_str: str + :param server_name: The visible, fully qualified domain name, found in the server_name extension or the HTTP Host field + :type server_name: str + :param dst_ip: The destination IP address associated with the packet of interest + :type dst_ip: str + :param dst_port: The destination port associated with the packet of interest + :type dst_port: int + :param user_agent: If analyzing an HTTP packet, provide the contents of the HTTP User-Agent field + :type user_agent: str + :param new_as_weight: Updated weight for the Autonomous System data feature + :type new_as_weight: long double + :param new_domain_weight: Updated weight for the domain name data feature + :type new_domain_weight: long double + :param new_port_weight: Updated weight for the destination port data feature + :type new_port_weight: long double + :param new_ip_weight: Updated weight for the destination IP address data feature + :type new_ip_weight: long double + :param new_sni_weight: Updated weight for the server_name data feature + :type new_sni_weight: long double + :param new_ua_weight: Updated weight for the User-Agent data feature + :type new_ua_weight: long double + :return: JSON-encoded analysis output + :rtype: dict + """ if not self.do_analysis: print(f'error: classifier not loaded (is do_analysis set to True?)') return None @@ -336,6 +453,23 @@ cdef class Mercury: cpdef dict perform_analysis_with_user_agent(self, str fp_str, str server_name, str dst_ip, int dst_port, str user_agent): + """ + Directly call into mercury analysis functionality by providing all needed data features. Additionally, + supply custom weights for each data feature. + + :param fp_str: mercury-generated network protocol fingerprint + :type fp_str: str + :param server_name: The visible, fully qualified domain name, found in the server_name extension or the HTTP Host field + :type server_name: str + :param dst_ip: The destination IP address associated with the packet of interest + :type dst_ip: str + :param dst_port: The destination port associated with the packet of interest + :type dst_port: int + :param user_agent: If analyzing an HTTP packet, provide the contents of the HTTP User-Agent field + :type user_agent: str + :return: JSON-encoded analysis output + :rtype: dict + """ if not self.do_analysis: print(f'error: classifier not loaded (is do_analysis set to True?)') return None @@ -411,10 +545,15 @@ cdef class Mercury: return retval -# parse_dns -# Input: b64_dns - python str representing a base64-encoded DNS request -# Output: JSON object containing parsed DNS request def parse_dns(str b64_dns): + """ + Return a JSON representation of the Base64 DNS packet. + + :param b64_dns: Base64-encoded DNS packet. + :type b64_dns: str + :return: JSON-encoded DNS packet. + :rtype: dict + """ cdef bytes dns_req = b64decode(b64_dns) cdef unsigned int len_ = len(dns_req) @@ -436,10 +575,15 @@ cdef extern from "../libmerc/x509.h": string get_hex_string() -# parse_cert -# Input: b64_cert - python str representing a base64-encoded certificate -# Output: JSON object containing parsed certificate def parse_cert(str b64_cert): + """ + Return a JSON representation of the Base64 certificate. + + :param b64_cert: Base64-encoded certificate. + :type b64_cert: str + :return: JSON-encoded certificate. + :rtype: dict + """ cdef bytes cert = b64decode(b64_cert) cdef unsigned int len_ = len(cert) cdef x509_cert x @@ -454,10 +598,15 @@ def parse_cert(str b64_cert): return json.loads(x.get_json_string().decode()) -# get_cert_prefix -# Input: b64_cert - python str representing a base64-encoded certificate -# Output: string containing hex form of certificate prefix def get_cert_prefix(str b64_cert): + """ + Return a JSON representation of the Base64 certificate prefix. + + :param b64_cert: Base64-encoded certificate. + :type b64_cert: str + :return: hex form of certificate prefix + :rtype: str + """ cdef bytes cert = b64decode(b64_cert) cdef unsigned int len_ = len(cert) cdef x509_cert_prefix x @@ -470,3 +619,53 @@ def get_cert_prefix(str b64_cert): # return hex string return x.get_hex_string() # TBD: make it hex + + + +cdef extern from "../libmerc/datum.h": + cdef struct datum: + const unsigned char *data + const unsigned char *data_end + + +cdef extern from "../libmerc/ech.hpp": + cdef cppclass ech_config: + ech_config(datum &) + + +cdef extern from "json_string.hpp": + string get_json_string[T](T &, size_t) + + +cdef class ECHConfig: + cdef ech_config* ech_obj + + def __init__(self, bytes ech_config_str): + cdef unsigned int len_ = len(ech_config_str) + + # create reference to ech_config so that it doesn't get garbage collected + cdef const unsigned char* c_string_ref = ech_config_str + + cdef datum ech_datum = datum(c_string_ref, c_string_ref + len_) + self.ech_obj = new ech_config(ech_datum) + + def get_json_string(self): + json_str = get_json_string(dereference(self.ech_obj), 1024).decode() + + return json.loads(json_str) + + +def parse_ech_config(str b64_ech_config): + """ + Return a JSON representation of the Base64 Encrypted Client Hello object. + + :param b64_ech_config: Base64-encoded ECH object. + :type b64_ech_config: str + :return: JSON-encoded ECH object. + :rtype: dict + """ + cdef bytes ech_config = b64decode(b64_ech_config) + + ech_obj = ECHConfig(ech_config) + + return ech_obj.get_json_string() diff --git a/src/cython/mercury_python_test.py b/src/cython/mercury_python_test.py new file mode 100644 index 00000000..1c1d59c8 --- /dev/null +++ b/src/cython/mercury_python_test.py @@ -0,0 +1,108 @@ +import json +import os +import unittest +from binascii import unhexlify + +import mercury +from mercury_python_test_data import * + + + +class TestMercuryPython(unittest.TestCase): + + @classmethod + def setUpClass(cls): + if os.path.exists('../../test/data/resources-test.tgz'): + cls.libmerc = mercury.Mercury(do_analysis=True, resources=b'../../test/data/resources-test.tgz') + else: + cls.libmerc = mercury.Mercury(do_analysis=True, resources=b'test/data/resources-test.tgz') + + + def test_certificate_parsing(self): + cert_data = { + 'version': '02', + 'serial_number': '00eede6560cd35c0af02000000005971b7', + 'bits_in_signature': 2047 + } + merc_cert_data = mercury.parse_cert(b64_cert) + self.assertEqual(merc_cert_data['version'], cert_data['version'], f"Certificate version should be {cert_data['version']}") + self.assertEqual(merc_cert_data['serial_number'], cert_data['serial_number'], + f"Certificate serial_number should be {cert_data['serial_number']}") + self.assertEqual(merc_cert_data['bits_in_signature'], cert_data['bits_in_signature'], + f"Certificate bits_in_signature should be {cert_data['bits_in_signature']}") + + + def test_dns_parsing(self): + dns_data = { + 'response': { + 'id': 'edd5', + 'question': [{'name': 'live.github.com.'}], + 'authority': [{'name': 'github.com.'}] + } + } + merc_dns_data = mercury.parse_dns(b64_dns) + self.assertEqual(merc_dns_data['response']['id'], dns_data['response']['id'], f"DNS transaction id should be {dns_data['response']['id']}") + self.assertEqual(merc_dns_data['response']['question'][0]['name'], dns_data['response']['question'][0]['name'], + f"DNS question name should be {dns_data['response']['question'][0]['name']}") + self.assertEqual(merc_dns_data['response']['authority'][0]['name'], dns_data['response']['authority'][0]['name'], + f"DNS authority name should be {dns_data['response']['authority'][0]['name']}") + + + def test_analysis(self): + analysis_data = { + 'analysis': { + "process": "firefox", + "score": 1.0 + } + } + merc_analysis_data = TestMercuryPython.libmerc.analyze_packet(unhexlify(firefox_pkt)) + self.assertEqual(merc_analysis_data['analysis']['process'], analysis_data['analysis']['process'], + f"analysis process name should be {analysis_data['analysis']['process']}") + self.assertEqual(merc_analysis_data['analysis']['score'], analysis_data['analysis']['score'], + f"analysis process score should be {analysis_data['analysis']['score']}") + + + def test_tls_fingerprint(self): + fingerprint_data = { + 'fingerprints': { + 'tls': 'tls/(0303)(130113031302c02bc02fcca9cca8c02cc030c00ac009c013c014009c009d002f0035000a)((0000)(0017)(ff01)(000a000e000c001d00170018001901000101)(000b00020100)(0023)(0010000e000c02683208687474702f312e31)(000500050100000000)(0033)(002b00050403040303)(000d0018001604030503060308040805080604010501060102030201)(002d00020101)(001c00024001)(0015))' + } + } + merc_fingerprint_data = TestMercuryPython.libmerc.get_mercury_json(unhexlify(firefox_pkt)) + self.assertEqual(merc_fingerprint_data['fingerprints']['tls'], fingerprint_data['fingerprints']['tls'], + f"TLS fingerprint should be {fingerprint_data['fingerprints']['tls']}") + + + def test_quic_fingerprint(self): + fingerprint_data = { + 'fingerprints': { + 'quic': 'quic/(00000001)(0303)(0a0a130113021303)[(000500050100000000)(000a000c000a0a0a001d001700180019)(000d0018001604030804040105030203080508050501080606010201)(001000050003026833)(0012)(001b0003020001)(0029)(002b0005040a0a0304)(002d00020101)(0033)((0039)[(01)(04)(05)(06)(07)(08)(09)(0e)(0f)])(0a0a)(0a0a)]' + } + } + merc_fingerprint_data = TestMercuryPython.libmerc.get_mercury_json(unhexlify(quic_pkt)) + self.assertEqual(merc_fingerprint_data['fingerprints']['quic'], fingerprint_data['fingerprints']['quic'], + f"TLS fingerprint should be {fingerprint_data['fingerprints']['quic']}") + + + def test_ech_config(self): + ech_config = { + 'version': 'fe0d', + 'hpke_key_config': { + 'config_id': 54, + 'kem': 'DHKEM_X25519_HKDF_SHA256' + }, + 'public_name': 'cloudflare-ech.com' + } + ech_config_json = mercury.parse_ech_config(ech_cfg_b64) + self.assertEqual(ech_config_json['ech_config']['version'], ech_config['version'], + f"ECH version should be {ech_config['version']}") + self.assertEqual(ech_config_json['ech_config']['hpke_key_config']['config_id'], ech_config['hpke_key_config']['config_id'], + f"ECH config_id should be {ech_config['hpke_key_config']['config_id']}") + self.assertEqual(ech_config_json['ech_config']['hpke_key_config']['kem'], ech_config['hpke_key_config']['kem'], + f"ECH kem should be {ech_config['hpke_key_config']['kem']}") + self.assertEqual(ech_config_json['ech_config']['public_name'], ech_config['public_name'], + f"ECH public_name should be {ech_config['public_name']}") + + +if __name__ == '__main__': + unittest.main() diff --git a/src/cython/mercury_python_test_data.py b/src/cython/mercury_python_test_data.py new file mode 100644 index 00000000..c9394e51 --- /dev/null +++ b/src/cython/mercury_python_test_data.py @@ -0,0 +1,15 @@ + +# Google cert +b64_cert = 'MIIJRDCCCCygAwIBAgIRAO7eZWDNNcCvAgAAAABZcbcwDQYJKoZIhvcNAQELBQAwQjELMAkGA1UEBhMCVVMxHjAcBgNVBAoTFUdvb2dsZSBUcnVzdCBTZXJ2aWNlczETMBEGA1UEAxMKR1RTIENBIDFPMTAeFw0yMDAyMTIxMTQ3MTFaFw0yMDA1MDYxMTQ3MTFaMGYxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1Nb3VudGFpbiBWaWV3MRMwEQYDVQQKEwpHb29nbGUgTExDMRUwEwYDVQQDDAwqLmdvb2dsZS5jb20wWTATBgcqhkjOPQIBBggqhkjOPQMBBwNCAATKjE9IuwUMNbIbCmiOS1XWI2yPFLanStLIADumajnPmHrED+4/bPKa3HXecM4hPVHL8OgqwVYWveZsS6OdF9Pqo4IG2jCCBtYwDgYDVR0PAQH/BAQDAgeAMBMGA1UdJQQMMAoGCCsGAQUFBwMBMAwGA1UdEwEB/wQCMAAwHQYDVR0OBBYEFCRtN1AKArkz3KlGMpfhLYkaPFkYMB8GA1UdIwQYMBaAFJjR+G4Q68+b7GCfGJAboOt9Cf0rMGQGCCsGAQUFBwEBBFgwVjAnBggrBgEFBQcwAYYbaHR0cDovL29jc3AucGtpLmdvb2cvZ3RzMW8xMCsGCCsGAQUFBzAChh9odHRwOi8vcGtpLmdvb2cvZ3NyMi9HVFMxTzEuY3J0MIIEnQYDVR0RBIIElDCCBJCCDCouZ29vZ2xlLmNvbYINKi5hbmRyb2lkLmNvbYIWKi5hcHBlbmdpbmUuZ29vZ2xlLmNvbYISKi5jbG91ZC5nb29nbGUuY29tghgqLmNyb3dkc291cmNlLmdvb2dsZS5jb22CBiouZy5jb4IOKi5nY3AuZ3Z0Mi5jb22CESouZ2NwY2RuLmd2dDEuY29tggoqLmdncGh0LmNugg4qLmdrZWNuYXBwcy5jboIWKi5nb29nbGUtYW5hbHl0aWNzLmNvbYILKi5nb29nbGUuY2GCCyouZ29vZ2xlLmNsgg4qLmdvb2dsZS5jby5pboIOKi5nb29nbGUuY28uanCCDiouZ29vZ2xlLmNvLnVrgg8qLmdvb2dsZS5jb20uYXKCDyouZ29vZ2xlLmNvbS5hdYIPKi5nb29nbGUuY29tLmJygg8qLmdvb2dsZS5jb20uY2+CDyouZ29vZ2xlLmNvbS5teIIPKi5nb29nbGUuY29tLnRygg8qLmdvb2dsZS5jb20udm6CCyouZ29vZ2xlLmRlggsqLmdvb2dsZS5lc4ILKi5nb29nbGUuZnKCCyouZ29vZ2xlLmh1ggsqLmdvb2dsZS5pdIILKi5nb29nbGUubmyCCyouZ29vZ2xlLnBsggsqLmdvb2dsZS5wdIISKi5nb29nbGVhZGFwaXMuY29tgg8qLmdvb2dsZWFwaXMuY26CESouZ29vZ2xlY25hcHBzLmNughQqLmdvb2dsZWNvbW1lcmNlLmNvbYIRKi5nb29nbGV2aWRlby5jb22CDCouZ3N0YXRpYy5jboINKi5nc3RhdGljLmNvbYISKi5nc3RhdGljY25hcHBzLmNuggoqLmd2dDEuY29tggoqLmd2dDIuY29tghQqLm1ldHJpYy5nc3RhdGljLmNvbYIMKi51cmNoaW4uY29tghAqLnVybC5nb29nbGUuY29tghMqLndlYXIuZ2tlY25hcHBzLmNughYqLnlvdXR1YmUtbm9jb29raWUuY29tgg0qLnlvdXR1YmUuY29tghYqLnlvdXR1YmVlZHVjYXRpb24uY29tghEqLnlvdXR1YmVraWRzLmNvbYIHKi55dC5iZYILKi55dGltZy5jb22CGmFuZHJvaWQuY2xpZW50cy5nb29nbGUuY29tggthbmRyb2lkLmNvbYIbZGV2ZWxvcGVyLmFuZHJvaWQuZ29vZ2xlLmNughxkZXZlbG9wZXJzLmFuZHJvaWQuZ29vZ2xlLmNuggRnLmNvgghnZ3BodC5jboIMZ2tlY25hcHBzLmNuggZnb28uZ2yCFGdvb2dsZS1hbmFseXRpY3MuY29tggpnb29nbGUuY29tgg9nb29nbGVjbmFwcHMuY26CEmdvb2dsZWNvbW1lcmNlLmNvbYIYc291cmNlLmFuZHJvaWQuZ29vZ2xlLmNuggp1cmNoaW4uY29tggp3d3cuZ29vLmdsggh5b3V0dS5iZYILeW91dHViZS5jb22CFHlvdXR1YmVlZHVjYXRpb24uY29tgg95b3V0dWJla2lkcy5jb22CBXl0LmJlMCEGA1UdIAQaMBgwCAYGZ4EMAQICMAwGCisGAQQB1nkCBQMwLwYDVR0fBCgwJjAkoCKgIIYeaHR0cDovL2NybC5wa2kuZ29vZy9HVFMxTzEuY3JsMIIBBAYKKwYBBAHWeQIEAgSB9QSB8gDwAHUAsh4FzIuizYogTodm+Su5iiUgZ2va+nDnsklTLe+LkF4AAAFwOXBpZwAABAMARjBEAiA+QN+Y1BC1iTg87rmcpsUM/Gu24qPQtScwEkDt1exEhAIgQZ65pwiFU6WtL7WIBUDRTSLLJtQzSUb9E8H/e+H3kv8AdwBep3P531bA57U2SH3QSeAyepGaDIShEhKEGHWWgXFFWAAAAXA5cGl4AAAEAwBIMEYCIQD9qpknf9RA9NTnDbJ1R740ilIoZ5axO70RNKA2ozIpDQIhAI1NyadJ74gUNJMOwgVolIAXXkoTlllaI+RlhpKJXQelMA0GCSqGSIb3DQEBCwUAA4IBAQB/1D1o4bHjhENzzSVqw/WiW7R1Yg4kZjli4Jx+LL27l0iKIq5Je3M7N9seKeytHKln9LJWcZKJU0ZbTMAspum0myuT9TCRUzlQySsFdd3w5wh0ORzaaMxfdFZXbP5bVcGkuC/FdoNgnFFjfdJlif8ZWazQdGNT68dXSNYBrSWcZvTi6UHviVzyKRNF8NXQPkmfEGnd4JAhXr/bNfKhYp/n8vsemQpmKWuA2eO+1W3C8iCVQ2JaQUSEkOquDseMqEKLRl+Rqg9HWNZpZ7CJfxVEk9f8L9nc9fqQrRM3CB6E4nNwbo7jkwdkw9vcyse48vXjWRg69iSIEEw4VHtES7QNAAAABE4wggRKMIIDMqADAgECAg0B47SaoY2KqYElaVC4MA0GCSqGSIb3DQEBCwUAMEwxIDAeBgNVBAsTF0dsb2JhbFNpZ24gUm9vdCBDQSAtIFIyMRMwEQYDVQQKEwpHbG9iYWxTaWduMRMwEQYDVQQDEwpHbG9iYWxTaWduMB4XDTE3MDYxNTAwMDA0MloXDTIxMTIxNTAwMDA0MlowQjELMAkGA1UEBhMCVVMxHjAcBgNVBAoTFUdvb2dsZSBUcnVzdCBTZXJ2aWNlczETMBEGA1UEAxMKR1RTIENBIDFPMTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANAYz0XUi83TnORA73603WkhG8nPPI5MdbkPMRmEPZ48Ke9QDRCTbwWAgJ8qoL0SSwLhPZ9YFiT+MJ8LdHdVkx1L903hkoIQ9lGsDMOyIpQPNGuYEEnnC52DOd0gxhwt79EYYWXnI4MgqCMS/9Ikf9Qv50RqW03XUGawr55CYwX74BzEY2Gvn2oz/2KXvUjZ03wUZ9x13C5p6PhteGnQtxAFuPExwjsk/RozdPgj4OxrGYoWxuPNpM0L27OkWWA4iDutHbnGjKdTG/y82aSrvN08YdeTFZjugb2P4mRHIEAGTtesl+i5wFkSoUklI+TtcDQspbRjfPmjPYPRzW0krAcCAwEAAaOCATMwggEvMA4GA1UdDwEB/wQEAwIBhjAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwEgYDVR0TAQH/BAgwBgEB/wIBADAdBgNVHQ4EFgQUmNH4bhDrz5vsYJ8YkBug630J/SswHwYDVR0jBBgwFoAUm+IHV2ccHsBqBt5ZtJot39wZhi4wNQYIKwYBBQUHAQEEKTAnMCUGCCsGAQUFBzABhhlodHRwOi8vb2NzcC5wa2kuZ29vZy9nc3IyMDIGA1UdHwQrMCkwJ6AloCOGIWh0dHA6Ly9jcmwucGtpLmdvb2cvZ3NyMi9nc3IyLmNybDA/BgNVHSAEODA2MDQGBmeBDAECAjAqMCgGCCsGAQUFBwIBFhxodHRwczovL3BraS5nb29nL3JlcG9zaXRvcnkvMA0GCSqGSIb3DQEBCwUAA4IBAQAagD42efvzLqlGN31eVBY1rsdOCJn+vdE0aSZSZgc9CrpJy2L08RqO/BFPaJZMdCvTZ96yo6oFjYRNTCBlD6WW2g0W+Gw7228EI4hrOmzBYL1on3GO7i1YNAfw1VTphln9e14NIZT1jMmo+NjyrcwPGvOap6kEJ/mjybD/AnhrYbrHNSvoVvpPwxwM7bY8tEvq7czhPOzcDYzWPpvKQliLzBYhF0C8otZm79rEFVvNiaqbCSbnMtINbmcgAlsQsJAJnAwfnq3YO+qh/GzoEFwIUhlRKnG7rHq13RXtK8kIKiyKtKYhq2P/11JJUNCJt63yr/tQri/hlQ3zRq2dnPXKAAAPAABMBAMASDBGAiEAp1m1VKUw8r1LF/L9agFglOFk5CdyhuhtOSv3WjINpBMCIQD6JAciHPny8Y1BaW/OESa3bBx7o2GagPJ38I7OMb/f6BQAACCrO+g1PIiO1QCzFvhk8pvtjo/yhA3ITY4otKLs9CqQAhY/617WD2nmWRNnnuwRTLYs' + +# github dns response +b64_dns = '1e2BgAABAAAAAQAABGxpdmUGZ2l0aHViA2NvbQAAHAABwBEABgABAAABzQBIB25zLTE3MDcJYXdzZG5zLTIxAmNvAnVrABFhd3NkbnMtaG9zdG1hc3RlcgZhbWF6b27AGAAAAAEAABwgAAADhAASdQAAAVGA' + +# Firefox/TLS/analysis +firefox_pkt = b'5254001235020800273a230d08004500022d8437400040065a730a00020f0df9401980cc01bb5b91e19f0634de025018faf05c4000001603010200010001fc03030d4e266cf66416689ded443b58d2b12bb2f53e8a3207148e3c8f2be2476cbd242067b5db473da1b71fbca9ed288052032ee0d5139dcfd6ea78b4436e509703c0e40024130113031302c02bc02fcca9cca8c02cc030c00ac009c013c014009c009d002f0035000a0100018f000000280026000023636f6e74656e742d7369676e61747572652d322e63646e2e6d6f7a696c6c612e6e657400170000ff01000100000a000e000c001d00170018001901000101000b00020100002300000010000e000c02683208687474702f312e310005000501000000000033006b0069001d00202934574bdc2a34d7f13e992529e04799e9a0ee824e0f714d5aa5d473995a390600170041046a068ede9cae5be42d0f6eb5b9de6fea0c66f9190b525dfe80efbdaa670c2c4f3a98cb9f0b4ee9ff5dc20365e31ea0f7ff524dd3789fac2066c4bb575bbde2db002b00050403040303000d0018001604030503060308040805080604010501060102030201002d00020101001c000240010015007f00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000' + +# Apple QUIC +quic_pkt = b'1878d42d55964af13b8c34bc0800450004cc000040004011dd99c0a801e911bc843a40170d9c04b8b44ace0000000108e7eb681e78b267440000449ea481068c9f6241d64782eb4b538d395efa70161fd51b14bc4ca707119f3d93ada0cb46831e786c9215e17034079dbdcee70682cbc089ac42fdc5266c6aa2349fe959625b1874e1a763a69c1209797534b34d551b3bbca5f2254043ec2914a33d917d81b77f1e8859547a59c0b673f79169f838e00384548b29de1a3955f3d0b8f89f7e06971f7b269b9249911e97f1de62c1e661b83864455363b6b6832a33efbca4569e2408d461b3f5389b408f4275e3f352d754d8a266355c97261a278e80a0a4dc5406a9edc1a5c398012beea1677168db2a13263d8f15d39787136d04eaf6622a991429c2d5b0ec3e2123b476fc48261f173c6e17b8e07b606741be4aed035867580b070978f7e6e3c94bb36474314ccb811d6d2b5b6c2f1ce61fa2031bde4bc4a84a5205cfcf614c077a624c8f344c16d720b1ec8f33b7671815a1a704d4f0ea81d39420cce8c0b2fb697dcc2f680eaa6dadcbd56bd906daad453a80f6076cce8a03512c6696c80b7414ba8d00b0f2457a18403bedc2f4fd146b3f03740c8121a5b0d166ca6e3a608eda1ce3da34ffa4bf3ce5ec7dc87312e125fbfaf122c6fbf537ec5e8478393656b2103161573430f8afa956961e07d7634275d1a72dd6d155965075b081e47dc954fd9be7df1cf8676e3999637b611be493cf1e837997fec3a6ce7da0d51995469e28d8c95abf9271468bb621fb80df039507d53bf42435addcfc2ebb533efabd4dd2f4e33b31a735de11f1e488e83e4b5668874325e2da8f75baef7e4f5c246b8548eaa9e39ce95cf0eee463b4e0e45d56ea6d97218aec87cd190e25019b74e708502dba74cf7719abc5c9c214c81e118793d3ab4df78b4b2f861a4a7c2b108504734d4853fb103b00e5b03134c54ee40ab794451811b467dbbc67843dc7b2a1ed77f3916a207e1aaf641f57851d09b60f3c21e8fb152d5af4fa130123960916226db934a0fbc38ea243177cae82f03d70d7e67d1bd8c0ce6689a84166ce36ac040247323bfe5bdeeb1f19e3b74945431e61ea1aeb9018b320967a21430d47d6a157f02ef6f94190e126da653949f1faa9f3511b745126edd3c5c2b90b4127acbf55c94c891cf28c37f1545631d3b8f1ec789b805c4c8a566a77aea238afa254c88768b1725653d705ddabc0ae8579d3aed312924c2aa8dff7d8074c570fd90a4ddbc16e35292da9dcb671652f0536471799507f1731e01a8f2155d44468ee52ade03ce3364f17b580d9c8af77c0393a4f0e8ac816d05261e3aa1c024e9aa4bf0bddf5a4be39bcc56f9c59b7b11304ec53422365d19e0efffe93123193358dc6eb3731cec2a948e5475acdf0c82e30d054a3ad151839fd26041dfdf536f1bbce30bf2695d2ac48813a705b9a4707250e6f73e1a1051b74ef715ad61136db853161f8d556909da6f0913d36ee3c21acddc445ff9471f18cb94a13288b053545a36ec6afd7352380df0c965c0e516f731b00195c52a7b89d5d554bdcd190f63c277af43cd1ee317d5b4752d4a2dbb36305d95d88de3cab3f36374ff53816e9581f63a8b12539c478b7c04b3b788dc9d85024e55c87b849e9a12504bd3b41a2a4d4d3f08954d0fa514384d86fa6493daf0a4e0026d136d9047de93b52d8f11cbc5130a661efefbc7c652878eaf94744e765b167' + +# ECH config +ech_cfg_b64 = 'AEX+DQBBNgAgACCgzPSnZa4fQd/lsAxXMPhuuf+s9Q06yRG+dT0LXVTidQAEAAEAAQASY2xvdWRmbGFyZS1lY2guY29tAAA=' diff --git a/src/cython/pyproject.toml b/src/cython/pyproject.toml new file mode 100644 index 00000000..d71f1f32 --- /dev/null +++ b/src/cython/pyproject.toml @@ -0,0 +1,8 @@ +[build-system] +requires = [ + "setuptools>=42", + "Cython", +] + +[tool.cibuildwheel] +environment = "CC='g++' CXX='g++' ENV_CFLAGS='-DSSLNEW'" diff --git a/src/cython/setup.py b/src/cython/setup.py index eaf9ec6c..a497fe06 100644 --- a/src/cython/setup.py +++ b/src/cython/setup.py @@ -1,7 +1,9 @@ from setuptools import Extension, setup -#from distutils.core import setup, Extension + +# from distutils.core import setup, Extension from Cython.Distutils import build_ext -#from distutils.extension import Extension + +# from distutils.extension import Extension import os import re import shlex @@ -17,76 +19,96 @@ # "../parser.c" is needed to include parser functions # "-std=c++17" is needed due to c++17 dependency + def readme(): - with open('README.md') as f: + with open("README.md") as f: return f.read() + ### ## get version string # VERSIONFILE = "_version.py" -verstrline = open(VERSIONFILE, "rt").read() -VSRE = r"^__version__ = ['\"]([^'\"]*)['\"]" -mo = re.search(VSRE, verstrline, re.M) +verstrline = open(VERSIONFILE, "rt").read() +VSRE = r"^__version__ = ['\"]([^'\"]*)['\"]" +mo = re.search(VSRE, verstrline, re.M) if mo: version_str = mo.group(1) else: raise RuntimeError("Unable to find version string in %s." % (VERSIONFILE,)) -sources = ['mercury.pyx', - '../libmerc/asn1/oid.cc', - '../libmerc/dns.cc', - '../libmerc/utils.cc', - '../libmerc/analysis.cc', - '../libmerc/libmerc.cc', - '../libmerc/addr.cc', - '../libmerc/wireguard.cc', - '../libmerc/ssh.cc', - '../libmerc/match.cc', - '../libmerc/http.cc', - '../libmerc/pkt_proc.cc', - '../libmerc/tls.cc', - '../libmerc/asn1.cc', - '../libmerc/smb2.cc', - '../libmerc/config_generator.cc', - '../libmerc/bencode.cc', +mercury_dir = "" +if "MERCURY_DIR" in os.environ: + mercury_dir = os.getenv("MERCURY_DIR") +else: + mercury_dir = "../../" + +sources = [ + "mercury.pyx", + "{mercury_dir}/src/libmerc/asn1/oid.cc".format(mercury_dir=mercury_dir), + "{mercury_dir}/src/libmerc/dns.cc".format(mercury_dir=mercury_dir), + "{mercury_dir}/src/libmerc/utils.cc".format(mercury_dir=mercury_dir), + "{mercury_dir}/src/libmerc/analysis.cc".format(mercury_dir=mercury_dir), + "{mercury_dir}/src/libmerc/libmerc.cc".format(mercury_dir=mercury_dir), + "{mercury_dir}/src/libmerc/addr.cc".format(mercury_dir=mercury_dir), + "{mercury_dir}/src/libmerc/wireguard.cc".format(mercury_dir=mercury_dir), + "{mercury_dir}/src/libmerc/ssh.cc".format(mercury_dir=mercury_dir), + "{mercury_dir}/src/libmerc/match.cc".format(mercury_dir=mercury_dir), + "{mercury_dir}/src/libmerc/http.cc".format(mercury_dir=mercury_dir), + "{mercury_dir}/src/libmerc/pkt_proc.cc".format(mercury_dir=mercury_dir), + "{mercury_dir}/src/libmerc/tls.cc".format(mercury_dir=mercury_dir), + "{mercury_dir}/src/libmerc/asn1.cc".format(mercury_dir=mercury_dir), + "{mercury_dir}/src/libmerc/smb2.cc".format(mercury_dir=mercury_dir), + "{mercury_dir}/src/libmerc/config_generator.cc".format(mercury_dir=mercury_dir), + "{mercury_dir}/src/libmerc/bencode.cc".format(mercury_dir=mercury_dir), ] def get_additional_flags(): - env_cflags = os.getenv('ENV_CFLAGS') + env_cflags = os.getenv("ENV_CFLAGS") if env_cflags is None: return [] else: return shlex.split(env_cflags) + additional_flags = get_additional_flags() print("additional_flags =", repr(additional_flags)) -setup(name='mercury-python', - version=version_str, - description="Python interface into mercury's network protocol fingerprinting and analysis functionality", - long_description=readme(), - long_description_content_type="text/markdown", - classifiers=[ - 'Development Status :: 3 - Alpha', - 'Programming Language :: Python :: 3 :: Only', - 'Topic :: System :: Networking :: Monitoring', - 'Topic :: Security', - ], - python_requires='>=3.6.0', - keywords='tls fingerprinting network traffic analysis', - url='https://github.com/cisco/mercury/src/cython/', - author='Blake Anderson', - author_email='blake.anderson@cisco.com', - ext_modules=[Extension("mercury", - sources=sources, - include_dirs=['../libmerc'], - language="c++", - extra_compile_args=["-std=c++17","-Wno-narrowing","-Wno-deprecated-declarations"] + additional_flags, - extra_link_args=["-std=c++17","-lz"] + additional_flags, - libraries = ['crypto'], - runtime_library_dirs=['../']) - ], - cmdclass={'build_ext':build_ext}) +setup( + name="mercury-python", + version=version_str, + description="Python interface into mercury's network protocol fingerprinting and analysis functionality", + long_description=readme(), + long_description_content_type="text/markdown", + classifiers=[ + "Development Status :: 3 - Alpha", + "Programming Language :: Python :: 3 :: Only", + "Topic :: System :: Networking :: Monitoring", + "Topic :: Security", + ], + python_requires=">=3.6.0", + keywords="tls fingerprinting network traffic analysis", + url="https://github.com/cisco/mercury-python/", + author="Blake Anderson", + author_email="blake.anderson@cisco.com", + ext_modules=[ + Extension( + "mercury", + sources=sources, + include_dirs=["{mercury_dir}/src/libmerc".format(mercury_dir=mercury_dir)], + language="c++", + extra_compile_args=[ + "-std=c++17", + "-Wno-narrowing", + "-Wno-deprecated-declarations", + ] + + additional_flags, + extra_link_args=["-std=c++17", "-lz"] + additional_flags, + libraries=["crypto"], + runtime_library_dirs=["{mercury_dir}/src/".format(mercury_dir=mercury_dir)], + ) + ], + cmdclass={"build_ext": build_ext}, +) diff --git a/src/cython/test.py b/src/cython/test.py index 12c89b44..74b8ccd2 100644 --- a/src/cython/test.py +++ b/src/cython/test.py @@ -1,37 +1,88 @@ +import os import json +import unittest from binascii import unhexlify -from mercury import * +import mercury +from mercury_python_test_data import * -b64_cert = 'MIIJRDCCCCygAwIBAgIRAO7eZWDNNcCvAgAAAABZcbcwDQYJKoZIhvcNAQELBQAwQjELMAkGA1UEBhMCVVMxHjAcBgNVBAoTFUdvb2dsZSBUcnVzdCBTZXJ2aWNlczETMBEGA1UEAxMKR1RTIENBIDFPMTAeFw0yMDAyMTIxMTQ3MTFaFw0yMDA1MDYxMTQ3MTFaMGYxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1Nb3VudGFpbiBWaWV3MRMwEQYDVQQKEwpHb29nbGUgTExDMRUwEwYDVQQDDAwqLmdvb2dsZS5jb20wWTATBgcqhkjOPQIBBggqhkjOPQMBBwNCAATKjE9IuwUMNbIbCmiOS1XWI2yPFLanStLIADumajnPmHrED+4/bPKa3HXecM4hPVHL8OgqwVYWveZsS6OdF9Pqo4IG2jCCBtYwDgYDVR0PAQH/BAQDAgeAMBMGA1UdJQQMMAoGCCsGAQUFBwMBMAwGA1UdEwEB/wQCMAAwHQYDVR0OBBYEFCRtN1AKArkz3KlGMpfhLYkaPFkYMB8GA1UdIwQYMBaAFJjR+G4Q68+b7GCfGJAboOt9Cf0rMGQGCCsGAQUFBwEBBFgwVjAnBggrBgEFBQcwAYYbaHR0cDovL29jc3AucGtpLmdvb2cvZ3RzMW8xMCsGCCsGAQUFBzAChh9odHRwOi8vcGtpLmdvb2cvZ3NyMi9HVFMxTzEuY3J0MIIEnQYDVR0RBIIElDCCBJCCDCouZ29vZ2xlLmNvbYINKi5hbmRyb2lkLmNvbYIWKi5hcHBlbmdpbmUuZ29vZ2xlLmNvbYISKi5jbG91ZC5nb29nbGUuY29tghgqLmNyb3dkc291cmNlLmdvb2dsZS5jb22CBiouZy5jb4IOKi5nY3AuZ3Z0Mi5jb22CESouZ2NwY2RuLmd2dDEuY29tggoqLmdncGh0LmNugg4qLmdrZWNuYXBwcy5jboIWKi5nb29nbGUtYW5hbHl0aWNzLmNvbYILKi5nb29nbGUuY2GCCyouZ29vZ2xlLmNsgg4qLmdvb2dsZS5jby5pboIOKi5nb29nbGUuY28uanCCDiouZ29vZ2xlLmNvLnVrgg8qLmdvb2dsZS5jb20uYXKCDyouZ29vZ2xlLmNvbS5hdYIPKi5nb29nbGUuY29tLmJygg8qLmdvb2dsZS5jb20uY2+CDyouZ29vZ2xlLmNvbS5teIIPKi5nb29nbGUuY29tLnRygg8qLmdvb2dsZS5jb20udm6CCyouZ29vZ2xlLmRlggsqLmdvb2dsZS5lc4ILKi5nb29nbGUuZnKCCyouZ29vZ2xlLmh1ggsqLmdvb2dsZS5pdIILKi5nb29nbGUubmyCCyouZ29vZ2xlLnBsggsqLmdvb2dsZS5wdIISKi5nb29nbGVhZGFwaXMuY29tgg8qLmdvb2dsZWFwaXMuY26CESouZ29vZ2xlY25hcHBzLmNughQqLmdvb2dsZWNvbW1lcmNlLmNvbYIRKi5nb29nbGV2aWRlby5jb22CDCouZ3N0YXRpYy5jboINKi5nc3RhdGljLmNvbYISKi5nc3RhdGljY25hcHBzLmNuggoqLmd2dDEuY29tggoqLmd2dDIuY29tghQqLm1ldHJpYy5nc3RhdGljLmNvbYIMKi51cmNoaW4uY29tghAqLnVybC5nb29nbGUuY29tghMqLndlYXIuZ2tlY25hcHBzLmNughYqLnlvdXR1YmUtbm9jb29raWUuY29tgg0qLnlvdXR1YmUuY29tghYqLnlvdXR1YmVlZHVjYXRpb24uY29tghEqLnlvdXR1YmVraWRzLmNvbYIHKi55dC5iZYILKi55dGltZy5jb22CGmFuZHJvaWQuY2xpZW50cy5nb29nbGUuY29tggthbmRyb2lkLmNvbYIbZGV2ZWxvcGVyLmFuZHJvaWQuZ29vZ2xlLmNughxkZXZlbG9wZXJzLmFuZHJvaWQuZ29vZ2xlLmNuggRnLmNvgghnZ3BodC5jboIMZ2tlY25hcHBzLmNuggZnb28uZ2yCFGdvb2dsZS1hbmFseXRpY3MuY29tggpnb29nbGUuY29tgg9nb29nbGVjbmFwcHMuY26CEmdvb2dsZWNvbW1lcmNlLmNvbYIYc291cmNlLmFuZHJvaWQuZ29vZ2xlLmNuggp1cmNoaW4uY29tggp3d3cuZ29vLmdsggh5b3V0dS5iZYILeW91dHViZS5jb22CFHlvdXR1YmVlZHVjYXRpb24uY29tgg95b3V0dWJla2lkcy5jb22CBXl0LmJlMCEGA1UdIAQaMBgwCAYGZ4EMAQICMAwGCisGAQQB1nkCBQMwLwYDVR0fBCgwJjAkoCKgIIYeaHR0cDovL2NybC5wa2kuZ29vZy9HVFMxTzEuY3JsMIIBBAYKKwYBBAHWeQIEAgSB9QSB8gDwAHUAsh4FzIuizYogTodm+Su5iiUgZ2va+nDnsklTLe+LkF4AAAFwOXBpZwAABAMARjBEAiA+QN+Y1BC1iTg87rmcpsUM/Gu24qPQtScwEkDt1exEhAIgQZ65pwiFU6WtL7WIBUDRTSLLJtQzSUb9E8H/e+H3kv8AdwBep3P531bA57U2SH3QSeAyepGaDIShEhKEGHWWgXFFWAAAAXA5cGl4AAAEAwBIMEYCIQD9qpknf9RA9NTnDbJ1R740ilIoZ5axO70RNKA2ozIpDQIhAI1NyadJ74gUNJMOwgVolIAXXkoTlllaI+RlhpKJXQelMA0GCSqGSIb3DQEBCwUAA4IBAQB/1D1o4bHjhENzzSVqw/WiW7R1Yg4kZjli4Jx+LL27l0iKIq5Je3M7N9seKeytHKln9LJWcZKJU0ZbTMAspum0myuT9TCRUzlQySsFdd3w5wh0ORzaaMxfdFZXbP5bVcGkuC/FdoNgnFFjfdJlif8ZWazQdGNT68dXSNYBrSWcZvTi6UHviVzyKRNF8NXQPkmfEGnd4JAhXr/bNfKhYp/n8vsemQpmKWuA2eO+1W3C8iCVQ2JaQUSEkOquDseMqEKLRl+Rqg9HWNZpZ7CJfxVEk9f8L9nc9fqQrRM3CB6E4nNwbo7jkwdkw9vcyse48vXjWRg69iSIEEw4VHtES7QNAAAABE4wggRKMIIDMqADAgECAg0B47SaoY2KqYElaVC4MA0GCSqGSIb3DQEBCwUAMEwxIDAeBgNVBAsTF0dsb2JhbFNpZ24gUm9vdCBDQSAtIFIyMRMwEQYDVQQKEwpHbG9iYWxTaWduMRMwEQYDVQQDEwpHbG9iYWxTaWduMB4XDTE3MDYxNTAwMDA0MloXDTIxMTIxNTAwMDA0MlowQjELMAkGA1UEBhMCVVMxHjAcBgNVBAoTFUdvb2dsZSBUcnVzdCBTZXJ2aWNlczETMBEGA1UEAxMKR1RTIENBIDFPMTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANAYz0XUi83TnORA73603WkhG8nPPI5MdbkPMRmEPZ48Ke9QDRCTbwWAgJ8qoL0SSwLhPZ9YFiT+MJ8LdHdVkx1L903hkoIQ9lGsDMOyIpQPNGuYEEnnC52DOd0gxhwt79EYYWXnI4MgqCMS/9Ikf9Qv50RqW03XUGawr55CYwX74BzEY2Gvn2oz/2KXvUjZ03wUZ9x13C5p6PhteGnQtxAFuPExwjsk/RozdPgj4OxrGYoWxuPNpM0L27OkWWA4iDutHbnGjKdTG/y82aSrvN08YdeTFZjugb2P4mRHIEAGTtesl+i5wFkSoUklI+TtcDQspbRjfPmjPYPRzW0krAcCAwEAAaOCATMwggEvMA4GA1UdDwEB/wQEAwIBhjAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwEgYDVR0TAQH/BAgwBgEB/wIBADAdBgNVHQ4EFgQUmNH4bhDrz5vsYJ8YkBug630J/SswHwYDVR0jBBgwFoAUm+IHV2ccHsBqBt5ZtJot39wZhi4wNQYIKwYBBQUHAQEEKTAnMCUGCCsGAQUFBzABhhlodHRwOi8vb2NzcC5wa2kuZ29vZy9nc3IyMDIGA1UdHwQrMCkwJ6AloCOGIWh0dHA6Ly9jcmwucGtpLmdvb2cvZ3NyMi9nc3IyLmNybDA/BgNVHSAEODA2MDQGBmeBDAECAjAqMCgGCCsGAQUFBwIBFhxodHRwczovL3BraS5nb29nL3JlcG9zaXRvcnkvMA0GCSqGSIb3DQEBCwUAA4IBAQAagD42efvzLqlGN31eVBY1rsdOCJn+vdE0aSZSZgc9CrpJy2L08RqO/BFPaJZMdCvTZ96yo6oFjYRNTCBlD6WW2g0W+Gw7228EI4hrOmzBYL1on3GO7i1YNAfw1VTphln9e14NIZT1jMmo+NjyrcwPGvOap6kEJ/mjybD/AnhrYbrHNSvoVvpPwxwM7bY8tEvq7czhPOzcDYzWPpvKQliLzBYhF0C8otZm79rEFVvNiaqbCSbnMtINbmcgAlsQsJAJnAwfnq3YO+qh/GzoEFwIUhlRKnG7rHq13RXtK8kIKiyKtKYhq2P/11JJUNCJt63yr/tQri/hlQ3zRq2dnPXKAAAPAABMBAMASDBGAiEAp1m1VKUw8r1LF/L9agFglOFk5CdyhuhtOSv3WjINpBMCIQD6JAciHPny8Y1BaW/OESa3bBx7o2GagPJ38I7OMb/f6BQAACCrO+g1PIiO1QCzFvhk8pvtjo/yhA3ITY4otKLs9CqQAhY/617WD2nmWRNnnuwRTLYs' -print(parse_cert(b64_cert)) +class TestMercuryPython(unittest.TestCase): -b64_dns = '1e2BgAABAAAAAQAABGxpdmUGZ2l0aHViA2NvbQAAHAABwBEABgABAAABzQBIB25zLTE3MDcJYXdzZG5zLTIxAmNvAnVrABFhd3NkbnMtaG9zdG1hc3RlcgZhbWF6b27AGAAAAAEAABwgAAADhAASdQAAAVGA' + @classmethod + def setUpClass(cls): + if os.path.exists('../../test/data/resources-test.tgz'): + cls.libmerc = mercury.Mercury(do_analysis=True, resources=b'../../test/data/resources-test.tgz') + else: + cls.libmerc = mercury.Mercury(do_analysis=True, resources=b'test/data/resources-test.tgz') -print(parse_dns(b64_dns)) -pkts = [ - b'5254001235020800273a230d08004500022d8437400040065a730a00020f0df9401980cc01bb5b91e19f0634de025018faf05c4000001603010200010001fc03030d4e266cf66416689ded443b58d2b12bb2f53e8a3207148e3c8f2be2476cbd242067b5db473da1b71fbca9ed288052032ee0d5139dcfd6ea78b4436e509703c0e40024130113031302c02bc02fcca9cca8c02cc030c00ac009c013c014009c009d002f0035000a0100018f000000280026000023636f6e74656e742d7369676e61747572652d322e63646e2e6d6f7a696c6c612e6e657400170000ff01000100000a000e000c001d00170018001901000101000b00020100002300000010000e000c02683208687474702f312e310005000501000000000033006b0069001d00202934574bdc2a34d7f13e992529e04799e9a0ee824e0f714d5aa5d473995a390600170041046a068ede9cae5be42d0f6eb5b9de6fea0c66f9190b525dfe80efbdaa670c2c4f3a98cb9f0b4ee9ff5dc20365e31ea0f7ff524dd3789fac2066c4bb575bbde2db002b00050403040303000d0018001604030503060308040805080604010501060102030201002d00020101001c000240010015007f00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000', - b'5254001235020800273a230d08004500003c8435400040065c660a00020f0df9401980cc01bb5b91e19e00000000a002faf05a4f0000020405b40402080a1e4e2f0e0000000001030307', - b'5254001235020800277e0ed808004500022d3f4e40004006eb9d0a00020f681299bea9dc01bbab504e76e433ec025018faf00fff00001603010200010001fc0303a552de5bcc6193c398b5cce45fa3e4235de843efac1e180855b48ef63967886120e54765539b1bab802a98846fde9bf573b5f237e8cc0bad139d383ded1ae235130022130213011303cca8003cc02b009cc027009dcca9c02c0035c013c014000a002fc0090100019100230000000a000a0008001d001700180019000d00140012020106010804080605010503040308050401000b00020100002b0009080304030303020301000500050100000000ff01000100001500fc000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000003300260024001d0020198c3c99abe37fca8a705cbc2604f15f350de1c099212cbdc4a723487081730a0010000e000c02683208687474702f312e3100120000002d00020101', - b'02020202020204040404040408004500015600014000800611110a00000168f42ac2c03401bb000000010000000150180204111100001603010129010001250303ec3d885ef33e9fd085e351daaf5a6f3cbff3dd21e62688104e5769cc5bc035310000300a0a130113021303c02cc02bcca9c030c02fcca8c024c023c00ac009c028c027c014c013009d009c003d003c0035002f010000cc0a0a000838db9ccede65b23900000014001200000f6170692e747769747465722e636f6d00170000ff01000100000a000c000a0a0a001d001700180019000b000201000010000b000908687474702f312e31000500050100000000000d0018001604030804040105030203080508050501080606010201001200000033002b00298a8a000100001d002087144e5633f09ec26a05d5939d35b56f8bc9176914d230fb33629c73824b3f32002d00020101002b0007060a0a03040303001b00030200010a0a0001000015000100', - b'0202020202020404040404040800450000fd00014000800611110a000001ad247f10c02e01bb0000000100000001501802041111000016030100d0010000cc030342f2b9bd662517abb9bbbf7e19b34296f259b8b836d602fe1040d83b1f590c6b0000200a0a130113021303c02bc02fc02cc030cca9cca8c013c014009c009d002f00350100008300000023002100001e75637368636c746f6f6c2e636c6f7564617070732e636973636f2e636f6d002300000010000b000908687474702f312e3100170000000a00080006001d00170018000b00020100000d00120010080606010805050305010804040304010005000501000000000a0a0000002b000706030303020301ff01000100', - b'525400123502080027208c4508004510008c1e5040004006b2d80a00020f0a1f5306ea240016a5b9a39b05221b4b5018ffff69b20000b2ed11be42a165f7f062fad4d254e8c47c112d82d748fa2c4801c372ff614e1490eefb2f75753976d98a6ddfe40652abc9311512f576969aba30f993aad290dec3f61cc8fefc7b87f7f8cdd9c88114fb2abaf0c484dcc86d94e40f39c51cc23f63a5a47b', -] + def test_certificate_parsing(self): + cert_data = { + 'version': '02', + 'serial_number': '00eede6560cd35c0af02000000005971b7', + 'bits_in_signature': 2047 + } + merc_cert_data = mercury.parse_cert(b64_cert) + self.assertEqual(merc_cert_data['version'], cert_data['version'], f"Certificate version should be {cert_data['version']}") + self.assertEqual(merc_cert_data['serial_number'], cert_data['serial_number'], + f"Certificate serial_number should be {cert_data['serial_number']}") + self.assertEqual(merc_cert_data['bits_in_signature'], cert_data['bits_in_signature'], + f"Certificate bits_in_signature should be {cert_data['bits_in_signature']}") -libmerc = Mercury(do_analysis=True, resources=b'../../resources/resources.tgz') -#result = libmerc.perform_analysis('(0303)(0a0a130313011302cca9cca8c02bc02fc02cc030c013c014009c009d002f0035)((0a0a0000)(0000)(0017)(ff01)(000a000a00080a0a001d00170018)(000b00020100)(0023)(0010000e000c02683208687474702f312e31)(000500050100000000)(000d0012001004030804040105030805050108060601)(0012)(0033)(002d00020101)(002b000b0a0a0a0304030303020301)(001b0003020002)(0a0a000100)(0015))','www.google.com','8.8.8.8',443) -#print(json.dumps(result, indent=2)) + def test_dns_parsing(self): + dns_data = { + 'response': { + 'id': 'edd5', + 'question': [{'name': 'live.github.com.'}], + 'authority': [{'name': 'github.com.'}] + } + } + merc_dns_data = mercury.parse_dns(b64_dns) + self.assertEqual(merc_dns_data['response']['id'], dns_data['response']['id'], f"DNS transaction id should be {dns_data['response']['id']}") + self.assertEqual(merc_dns_data['response']['question'][0]['name'], dns_data['response']['question'][0]['name'], + f"DNS question name should be {dns_data['response']['question'][0]['name']}") + self.assertEqual(merc_dns_data['response']['authority'][0]['name'], dns_data['response']['authority'][0]['name'], + f"DNS authority name should be {dns_data['response']['authority'][0]['name']}") -libmerc.mercury_init() -for pkt in pkts: - print("\nTesting packet:", pkt.decode('utf-8')) - pkt2 = unhexlify(pkt) - result = libmerc.analyze_packet(pkt2) - print(json.dumps(result, indent=2)) - result = libmerc.get_mercury_json(pkt2) - print(result) -libmerc.mercury_finalize() + + def test_analysis(self): + analysis_data = { + 'analysis': { + "process": "firefox", + "score": 1.0 + } + } + merc_analysis_data = TestMercuryPython.libmerc.analyze_packet(unhexlify(firefox_pkt)) + self.assertEqual(merc_analysis_data['analysis']['process'], analysis_data['analysis']['process'], + f"analysis process name should be {analysis_data['analysis']['process']}") + self.assertEqual(merc_analysis_data['analysis']['score'], analysis_data['analysis']['score'], + f"analysis process score should be {analysis_data['analysis']['score']}") + + + def test_tls_fingerprint(self): + fingerprint_data = { + 'fingerprints': { + 'tls': 'tls/(0303)(130113031302c02bc02fcca9cca8c02cc030c00ac009c013c014009c009d002f0035000a)((0000)(0017)(ff01)(000a000e000c001d00170018001901000101)(000b00020100)(0023)(0010000e000c02683208687474702f312e31)(000500050100000000)(0033)(002b00050403040303)(000d0018001604030503060308040805080604010501060102030201)(002d00020101)(001c00024001)(0015))' + } + } + merc_fingerprint_data = TestMercuryPython.libmerc.get_mercury_json(unhexlify(firefox_pkt)) + self.assertEqual(merc_fingerprint_data['fingerprints']['tls'], fingerprint_data['fingerprints']['tls'], + f"TLS fingerprint should be {fingerprint_data['fingerprints']['tls']}") + + + def test_quic_fingerprint(self): + fingerprint_data = { + 'fingerprints': { + 'quic': 'quic/(00000001)(0303)(0a0a130113021303)[(000500050100000000)(000a000c000a0a0a001d001700180019)(000d0018001604030804040105030203080508050501080606010201)(001000050003026833)(0012)(001b0003020001)(0029)(002b0005040a0a0304)(002d00020101)(0033)((0039)[(01)(04)(05)(06)(07)(08)(09)(0e)(0f)])(0a0a)(0a0a)]' + } + } + merc_fingerprint_data = TestMercuryPython.libmerc.get_mercury_json(unhexlify(quic_pkt)) + self.assertEqual(merc_fingerprint_data['fingerprints']['quic'], fingerprint_data['fingerprints']['quic'], + f"TLS fingerprint should be {fingerprint_data['fingerprints']['quic']}") + + +if __name__ == '__main__': + unittest.main() diff --git a/src/libmerc/Makefile.in b/src/libmerc/Makefile.in index 67d849e2..bcdbda77 100644 --- a/src/libmerc/Makefile.in +++ b/src/libmerc/Makefile.in @@ -81,7 +81,8 @@ LIBMERC_H += ssh.h LIBMERC_H += tcp.h LIBMERC_H += tcpip.h LIBMERC_H += tls.h -LIBMERC_H += tls_parameters.h +LIBMERC_H += tls_parameters.hpp +LIBMERC_H += tls_extensions.hpp LIBMERC_H += udp.h LIBMERC_H += util_obj.h LIBMERC_H += utils.h diff --git a/src/libmerc/analysis.h b/src/libmerc/analysis.h index d34c1ecf..bed591e4 100644 --- a/src/libmerc/analysis.h +++ b/src/libmerc/analysis.h @@ -27,6 +27,7 @@ #include #include #include +#include #include "rapidjson/document.h" #include "rapidjson/stringbuffer.h" #include "util_obj.h" @@ -467,7 +468,7 @@ class fingerprint_data { const common_data *common = nullptr; public: - + uint8_t refcnt = 0; uint64_t total_count; fingerprint_data(uint64_t count, @@ -762,7 +763,7 @@ class classifier { subnet_data subnets; // holds ASN/subnet information - std::unordered_map fpdb; + std::unordered_map fpdb; fingerprint_prevalence fp_prevalence{100000}; std::string resource_version; // as reported by VERSION file in resource archive @@ -771,9 +772,6 @@ class classifier { std::vector fp_types; - size_t tls_fingerprint_format = 0; - size_t quic_fingerprint_format = 0; - bool first_line = true; // the common object holds data that is common across all // fingerprint-specific classifiers, and is used by those @@ -781,7 +779,7 @@ class classifier { // common_data common; - uint32_t total_tofsee = 0, total_http = 0, total_quic = 0, total_tls = 0; + std::unordered_map> fp_count_and_format; bool disabled = false; // if the classfier has not been initialised or disabled @@ -800,21 +798,40 @@ class classifier { return fingerprint_type_unknown; } + void print_fp_counts() { + for (auto &it : fp_count_and_format) { + printf_err(log_debug, "total %s fingerprints: %u\n", it.first.c_str(), it.second.first); + } + } + void set_fingerprint_type_count(const std::string &fp_type) { - if (fp_type == "tls") { - total_tls++; - } else if (fp_type == "http") { - total_http++; - } else if (fp_type == "quic") { - total_quic++; - } else if (fp_type == "tofsee") { - total_tofsee++; + if (fp_count_and_format.find(fp_type) != fp_count_and_format.end()) { + fp_count_and_format[fp_type].first++; + } else { + // The fingerprint of type fp_type is seen for first time. + // So set the count(first element of pair) to 1 and + // format (second element of pair) to default format 0 + fp_count_and_format[fp_type].first = 1; + fp_count_and_format[fp_type].second = 0; } } - size_t get_tls_fingerprint_format() const { return tls_fingerprint_format; } + size_t get_tls_fingerprint_format() { + return get_fingerprint_format("tls"); + } + + size_t get_quic_fingerprint_format() { + return get_fingerprint_format("quic"); + } - size_t get_quic_fingerprint_format() const { return quic_fingerprint_format; } + size_t get_fingerprint_format(std::string fp_type) { + auto it = fp_count_and_format.find(fp_type); + if (it != fp_count_and_format.end()) { + return it->second.second; + } else { + return 0; + } + } bool is_disabled() const { return disabled; } @@ -876,44 +893,15 @@ class classifier { fp_prevalence.initial_add(line_str); } - void process_fp_db_line(std::string &line_str, float fp_proc_threshold, float proc_dst_threshold, bool report_os) { - - rapidjson::Document fp; - fp.Parse(line_str.c_str()); - if(!fp.IsObject()) { - printf_err(log_warning, "invalid JSON line in resource file\n"); - return; - } - - std::string fp_string; - if (fp.HasMember("str_repr") && fp["str_repr"].IsString()) { - fp_string = fp["str_repr"].GetString(); - - if (fp_string.length() == 0) { - printf_err(log_warning, "ignoring zero-length fingerprint string in resource file\n"); - return; // can't process this entry, so skip it - } - - if (fp_string.length() >= fingerprint::max_length()) { - printf_err(log_warning, "ignoring length %zu fingerprint string in resource file; too long\n", fp_string.length()); - return; // can't process this entry, so skip it - } - + bool validate_fp(std::string &fp_string, fingerprint_type fp_type_code, std::string fp_type_string) { + if (fp_string.length() == 0) { + printf_err(log_warning, "ignoring zero-length fingerprint string in resource file\n"); + return(false); // can't process this entry, so skip it } - - fingerprint_type fp_type_code = fingerprint_type_tls; - std::string fp_type_string; - if (fp.HasMember("fp_type") && fp["fp_type"].IsString()) { - fp_type_string = fp["fp_type"].GetString(); - fp_type_code = get_fingerprint_type(fp_type_string.c_str()); - set_fingerprint_type_count(fp_type_string.c_str()); - - } - if (fp_type_code != fingerprint_type_unknown) { - if (std::find(fp_types.begin(), fp_types.end(), fp_type_code) == fp_types.end()) { - fp_types.push_back(fp_type_code); - } + if (fp_string.length() >= fingerprint::max_length()) { + printf_err(log_warning, "ignoring length %zu fingerprint string in resource file; too long\n", fp_string.length()); + return(false); // can't process this entry, so skip it } // if a TLS fingerprint string does not contain a protocol @@ -924,44 +912,54 @@ class classifier { if (fp_type_code == fingerprint_type_tls && (fp_string.at(0) == '(' || fp_string == "randomized")) { fp_string = "tls/" + fp_string; } - std::pair fingerprint_type_and_version = get_fingerprint_type_and_version(fp_string.c_str()); - if (fp_type_code != fingerprint_type_and_version.first) { printf_err(log_warning, "fingerprint type of str_repr '%s' does not match fp_type, ignorning JSON line\n", fp_string.c_str()); - return; + return(false); } - // ensure that all tls fingerprints in DB have the same version + // ensure that all fingerprints of same type have the same version // - if (fingerprint_type_and_version.first == fingerprint_type_tls) { - if (first_line == true) { - tls_fingerprint_format = fingerprint_type_and_version.second; + const auto it = fp_count_and_format.find(fp_type_string); + if (it != fp_count_and_format.end()) { + // first fingerprint of type fp_type_string is seen + if (it->second.first == 1) { + it->second.second = fingerprint_type_and_version.second; } else { - if (fingerprint_type_and_version.second != tls_fingerprint_format) { + if (fingerprint_type_and_version.second != it->second.second) { printf_err(log_warning, "%s fingerprint version with inconsistent format, ignoring JSON line\n", fp_type_string.c_str()); - return; + return(false); } } - first_line = false; + } + return(true); + } + + void process_fp_db_line(std::string &line_str, float fp_proc_threshold, float proc_dst_threshold, bool report_os) { + + rapidjson::Document fp; + fp.Parse(line_str.c_str()); + if(!fp.IsObject()) { + printf_err(log_warning, "invalid JSON line in resource file\n"); + return; } - if (fingerprint_type_and_version.first == fingerprint_type_quic) { - if (first_line == true) { - quic_fingerprint_format = fingerprint_type_and_version.second; - } else { - if (fingerprint_type_and_version.second != quic_fingerprint_format) { - printf_err(log_warning, - "%s fingerprint version with inconsistent format, ignoring JSON line\n", - fp_type_string.c_str()); - return; - } + fingerprint_type fp_type_code = fingerprint_type_tls; + std::string fp_type_string; + if (fp.HasMember("fp_type") && fp["fp_type"].IsString()) { + fp_type_string = fp["fp_type"].GetString(); + fp_type_code = get_fingerprint_type(fp_type_string.c_str()); + set_fingerprint_type_count(fp_type_string); + + } + if (fp_type_code != fingerprint_type_unknown) { + if (std::find(fp_types.begin(), fp_types.end(), fp_type_code) == fp_types.end()) { + fp_types.push_back(fp_type_code); } - first_line = false; } uint64_t total_count = 0; @@ -1180,14 +1178,42 @@ class classifier { process_vector.push_back(process); } - class fingerprint_data fp_data(total_count, process_vector, os_dictionary, &subnets, &common, MALWARE_DB, weights); - // fp_data.print(stderr); + fingerprint_data *fp_data = new fingerprint_data(total_count, process_vector, + os_dictionary, &subnets, &common, MALWARE_DB, weights); - if (fpdb.find(fp_string) != fpdb.end()) { - printf_err(log_warning, "fingerprint database has duplicate entry for fingerprint %s\n", fp_string.c_str()); + if (fp.HasMember("str_repr") && fp["str_repr"].IsString()) { + std::string fp_string = fp["str_repr"].GetString(); + if (!validate_fp(fp_string, fp_type_code, fp_type_string)) { + return; + } + + if (fpdb.find(fp_string) != fpdb.end()) { + printf_err(log_warning, "fingerprint database has duplicate entry for fingerprint %s\n", fp_string.c_str()); + return; + } + fpdb[fp_string] = fp_data; + fp_data->refcnt++; + } + + if (fp.HasMember("str_repr_array") && fp["str_repr_array"].IsArray()) { + + for (auto &x : fp["str_repr_array"].GetArray()) { + if (x.IsString()) { + std::string fp_string = x.GetString(); + + if (!validate_fp(fp_string, fp_type_code, fp_type_string)) { + return; + } + + if (fpdb.find(fp_string) != fpdb.end()) { + printf_err(log_warning, "fingerprint database has duplicate entry for fingerprint %s\n", fp_string.c_str()); + continue; + } + fpdb[fp_string] = fp_data; + fp_data->refcnt++; + } + } } - // fpdb[fp_string] = fp_data; - fpdb.emplace(fp_string, fp_data); // TODO: ??? } } @@ -1259,7 +1285,7 @@ class classifier { process_fp_db_line(line_str, 0.0, 0.0, report_os); } got_fp_db = true; - printf_err(log_debug, "fingerprints loaded: {'HTTP': %d, 'TLS':%d, 'QUIC': %d, 'TOFSEE': %d}\n", total_http, total_tls, total_quic, total_tofsee); + print_fp_counts(); } } else if (name == "fingerprint_db.json") { got_fp_db = true; @@ -1271,7 +1297,7 @@ class classifier { while (archive.getline(line_str)) { process_fp_db_line(line_str, 0.0, 0.0, report_os); } - printf_err(log_debug, "fingerprints loaded: {'HTTP': %d, 'TLS':%d, 'QUIC': %d, 'TOFSEE': %d}\n", total_http, total_tls, total_quic, total_tofsee); + print_fp_counts(); } } else if (name == "VERSION") { while (archive.getline(line_str)) { @@ -1401,13 +1427,13 @@ class classifier { if (fpdb_entry_randomized == fpdb.end()) { return analysis_result(fingerprint_status_randomized); // TODO: does this actually happen? } - class fingerprint_data &fp_data = fpdb_entry_randomized->second; - return fp_data.perform_analysis(server_name, dst_ip, dst_port, user_agent, fingerprint_status_randomized); + fingerprint_data *fp_data = fpdb_entry_randomized->second; + return fp_data->perform_analysis(server_name, dst_ip, dst_port, user_agent, fingerprint_status_randomized); } } - class fingerprint_data &fp_data = fpdb_entry->second; + fingerprint_data *fp_data = fpdb_entry->second; - return fp_data.perform_analysis(server_name, dst_ip, dst_port, user_agent, fingerprint_status_labeled); + return fp_data->perform_analysis(server_name, dst_ip, dst_port, user_agent, fingerprint_status_labeled); } /* @@ -1450,15 +1476,15 @@ class classifier { if (fpdb_entry_randomized == fpdb.end()) { return analysis_result(fingerprint_status_randomized); // TODO: does this actually happen? } - class fingerprint_data &fp_data = fpdb_entry_randomized->second; - fp_data.recompute_probabilities(new_as_weight, new_domain_weight, new_port_weight, new_ip_weight, new_sni_weight, new_ua_weight); - return fp_data.perform_analysis(server_name, dst_ip, dst_port, user_agent, fingerprint_status_randomized); + fingerprint_data *fp_data = fpdb_entry_randomized->second; + fp_data->recompute_probabilities(new_as_weight, new_domain_weight, new_port_weight, new_ip_weight, new_sni_weight, new_ua_weight); + return fp_data->perform_analysis(server_name, dst_ip, dst_port, user_agent, fingerprint_status_randomized); } } - class fingerprint_data &fp_data = fpdb_entry->second; + fingerprint_data *fp_data = fpdb_entry->second; - fp_data.recompute_probabilities(new_as_weight, new_domain_weight, new_port_weight, new_ip_weight, new_sni_weight, new_ua_weight); - return fp_data.perform_analysis(server_name, dst_ip, dst_port, user_agent, fingerprint_status_labeled); + fp_data->recompute_probabilities(new_as_weight, new_domain_weight, new_port_weight, new_ip_weight, new_sni_weight, new_ua_weight); + return fp_data->perform_analysis(server_name, dst_ip, dst_port, user_agent, fingerprint_status_labeled); } bool analyze_fingerprint_and_destination_context(const fingerprint &fp, @@ -1488,6 +1514,15 @@ class classifier { return resource_version.c_str(); } + ~classifier() { + for (auto &fp : fpdb) { + fingerprint_data *fp_data = fp.second; + fp_data->refcnt--; + if (fp_data->refcnt == 0) { + delete(fp_data); + } + } + } }; diff --git a/src/libmerc/asn1.h b/src/libmerc/asn1.h index da5cdabb..b4be306b 100644 --- a/src/libmerc/asn1.h +++ b/src/libmerc/asn1.h @@ -597,40 +597,45 @@ struct tlv { * RELATIVE-OID-IRI 36 24 *** LONG FORM TAG NUMBER *** */ + static constexpr const char *type[32] = { + "End-of-Content", + "BOOLEAN", + "INTEGER", + "BIT STRING", + "OCTET STRING", + "NULL", + "OBJECT IDENTIFIER", + "Object Descriptor", + "EXTERNAL", + "REAL (float)", + "ENUMERATED", + "EMBEDDED PDV", + "UTF8String", + "RELATIVE-OID", + "TIME", + "Reserved", + "SEQUENCE, SEQUENCE OF", + "SET and SET OF", + "NumericString", + "PrintableString", + "T61String", + "VideotexString", + "IA5String", + "UTCTime", + "GeneralizedTime", + "GraphicString", + "VisibleString", + "GeneralString", + "UniversalString", + "CHARACTER STRING", + "BMPString" + }; + + const char *get_type() const { + return type[tag & 31]; + } + void fprint_tlv(FILE *f, const char *tlv_name) const { - const char *type[32] = { - "End-of-Content", - "BOOLEAN", - "INTEGER", - "BIT STRING", - "OCTET STRING", - "NULL", - "OBJECT IDENTIFIER", - "Object Descriptor", - "EXTERNAL", - "REAL (float)", - "ENUMERATED", - "EMBEDDED PDV", - "UTF8String", - "RELATIVE-OID", - "TIME", - "Reserved", - "SEQUENCE, SEQUENCE OF", - "SET and SET OF", - "NumericString", - "PrintableString", - "T61String", - "VideotexString", - "IA5String", - "UTCTime", - "GeneralizedTime", - "GraphicString", - "VisibleString", - "GeneralString", - "UniversalString", - "CHARACTER STRING", - "BMPString" - }; if (!is_valid()) { return; } @@ -851,6 +856,27 @@ struct tlv { o.print_key_hex(name, p); } + static bool recursive_parse(datum &d, json_array_asn1 &a) { + + if (d.is_empty()) { + return true; // nothing to parse + } + tlv x{d}; + if (!x.is_valid()) { + return false; + } + json_object_asn1 o{a}; + if ((x.tag) == tlv::SEQUENCE) { + json_array_asn1 seq{o, "SEQUENCE"}; + recursive_parse(x.value, seq); + seq.close(); + } else { + x.print_as_json(o, x.get_type()); + } + o.close(); + + return recursive_parse(d, a); + } #ifdef TLV_FPRINT /* diff --git a/src/libmerc/base64.h b/src/libmerc/base64.h index 84853ea6..678a170f 100644 --- a/src/libmerc/base64.h +++ b/src/libmerc/base64.h @@ -6,6 +6,7 @@ #define BASE64_H #include +#include #include std::string hex_encode(const unsigned char *src, size_t len) { diff --git a/src/libmerc/buffer_stream.h b/src/libmerc/buffer_stream.h index 5b0ddf6c..a9d6ba4f 100644 --- a/src/libmerc/buffer_stream.h +++ b/src/libmerc/buffer_stream.h @@ -8,6 +8,7 @@ #ifndef BUFFER_STREAM_H #define BUFFER_STREAM_H +#include // for std::min() #include /* for memcpy() */ #include #include @@ -1157,6 +1158,24 @@ class output_buffer : public buffer_stream { trunc = 0; } + /// compare the contents of this buffer with the \param n bytes + /// starting at \param s. + /// + /// \return a value less than, equal to, or greater than zero if + /// the contents of the buffer , respectively, to be less + /// than, to match, or be greater. + + int memcmp(const void *s, size_t n) { + size_t comp_length = std::min(n, (size_t)doff); + return ::memcmp(buffer, s, comp_length); + } + + /// returns a pointer to the start of the buffer + /// + const char *get_buffer_start() const { + return buffer; + } + }; #endif /* BUFFER_STREAM_H */ diff --git a/src/libmerc/crypto_assess.h b/src/libmerc/crypto_assess.h index 4ecdb9e6..b5d375b3 100644 --- a/src/libmerc/crypto_assess.h +++ b/src/libmerc/crypto_assess.h @@ -7,8 +7,10 @@ #include #include #include "json_object.h" -#include "tls_parameters.h" +#include "tls_parameters.hpp" +#include "tls_extensions.hpp" #include "tls.h" +#include "dtls.h" namespace crypto_policy { @@ -26,7 +28,25 @@ namespace crypto_policy { return true; }; + virtual bool assess(const tls_server_hello &, json_object &) const { + return true; + }; + + virtual bool assess(const tls_server_hello_and_certificate &, json_object &) const { + return true; + }; + + virtual bool assess(const dtls_client_hello &, json_object &) const { + return true; + } + + virtual bool assess(const dtls_server_hello &, json_object &) const { + return true; + } + virtual ~assessor() { } + + static const assessor *create(const std::string &policy); }; static bool is_grease(uint16_t x) { @@ -56,47 +76,53 @@ namespace crypto_policy { } class quantum_safe : public assessor { + bool readable_output; + public: + quantum_safe(bool readable=false) : + readable_output{readable} + { } + ~quantum_safe() { } static inline std::unordered_set allowed_ciphersuites { - tls::TLS_PSK_WITH_AES_128_CBC_SHA, - tls::TLS_PSK_WITH_AES_256_CBC_SHA, - tls::TLS_PSK_WITH_AES_128_GCM_SHA256, - tls::TLS_PSK_WITH_AES_256_GCM_SHA384, - tls::TLS_PSK_WITH_AES_128_CBC_SHA256, - tls::TLS_PSK_WITH_AES_256_CBC_SHA384, - tls::TLS_PSK_WITH_AES_128_CCM, - tls::TLS_PSK_WITH_AES_256_CCM, - tls::TLS_PSK_WITH_AES_128_CCM_8, - tls::TLS_PSK_WITH_AES_256_CCM_8, - tls::TLS_AES_128_GCM_SHA256, - tls::TLS_AES_256_GCM_SHA384, - tls::TLS_CHACHA20_POLY1305_SHA256, - tls::TLS_AES_128_CCM_SHA256, - tls::TLS_AES_128_CCM_8_SHA256, + // tls::cipher_suites::code::TLS_PSK_WITH_AES_128_CBC_SHA, + tls::cipher_suites::code::TLS_PSK_WITH_AES_256_CBC_SHA, + // tls::cipher_suites::code::TLS_PSK_WITH_AES_128_GCM_SHA256, + tls::cipher_suites::code::TLS_PSK_WITH_AES_256_GCM_SHA384, + // tls::cipher_suites::code::TLS_PSK_WITH_AES_128_CBC_SHA256, + tls::cipher_suites::code::TLS_PSK_WITH_AES_256_CBC_SHA384, + // tls::cipher_suites::code::TLS_PSK_WITH_AES_128_CCM, + tls::cipher_suites::code::TLS_PSK_WITH_AES_256_CCM, + //tls::cipher_suites::code::TLS_PSK_WITH_AES_128_CCM_8, + tls::cipher_suites::code::TLS_PSK_WITH_AES_256_CCM_8, + // tls::cipher_suites::code::TLS_AES_128_GCM_SHA256, + tls::cipher_suites::code::TLS_AES_256_GCM_SHA384, + // tls::cipher_suites::code::TLS_CHACHA20_POLY1305_SHA256, + // tls::cipher_suites::code::TLS_AES_128_CCM_SHA256, + // tls::cipher_suites::code::TLS_AES_128_CCM_8_SHA256, }; static inline std::unordered_set allowed_groups { - tls::p256_kyber512, - tls::p384_kyber768, - tls::p521_kyber1024, - tls::kyber90s512, - tls::kyber90s768, - tls::kyber90s1024, + tls::supported_groups::code::MLKEM512, + tls::supported_groups::code::MLKEM768, + tls::supported_groups::code::MLKEM1024, + tls::supported_groups::code::SecP256r1MLKEM768, + tls::supported_groups::code::X25519MLKEM768, + tls::supported_groups::code::X25519Kyber768Draft00, + tls::supported_groups::code::SecP256r1Kyber768Draft00, + // tls::supported_groups::code::arbitrary_explicit_prime_curves, + // tls::supported_groups::code::arbitrary_explicit_char2_curves, }; - bool assess(const tls_client_hello &ch, json_object &o) const override { - - json_object a{o, "quantum_security_assessment"}; - + bool assess_tls_ciphersuites(datum ciphersuite_vector, json_object &a) const { bool all_allowed = true; bool some_allowed = false; - datum tmp = ch.ciphersuite_vector; + datum tmp = ciphersuite_vector; while (tmp.is_readable()) { encoded cs{tmp}; - if (!is_grease(cs) || allowed_ciphersuites.find(cs.value()) != allowed_ciphersuites.end()) { + if (!is_grease(cs) and allowed_ciphersuites.find(cs.value()) != allowed_ciphersuites.end()) { some_allowed = true; } else { all_allowed = false; @@ -111,30 +137,38 @@ namespace crypto_policy { a.print_key_string("ciphersuites_allowed", quantifier); if (!all_allowed) { json_array cs_array{a, "ciphersuites_not_allowed"}; - datum tmp = ch.ciphersuite_vector; + datum tmp = ciphersuite_vector; while (tmp.is_readable()) { - encoded cs{tmp}; - if (!is_grease(cs) && allowed_ciphersuites.find(cs.value()) == allowed_ciphersuites.end()) { - cs_array.print_uint(cs); + tls::cipher_suites cs{tmp}; + if (!is_grease(cs) and allowed_ciphersuites.find(cs.value()) == allowed_ciphersuites.end()) { + if (readable_output) { + cs_array.print_string(cs.get_name()); + } else { + cs_array.print_uint16_hex(cs); + } } } cs_array.close(); } - all_allowed = true; - some_allowed = false; - datum named_groups = ch.extensions.get_supported_groups(); + return true; + } + + bool assess_tls_extensions(const tls_extensions &extensions, json_object &a) const { + bool all_allowed = true; + bool some_allowed = false; + datum named_groups = extensions.get_supported_groups(); xtn named_groups_xtn{named_groups}; encoded named_groups_len{named_groups_xtn.value}; while (named_groups_xtn.value.is_readable()) { encoded named_group{named_groups_xtn.value}; - if (!is_grease(named_group) || allowed_groups.find(named_group.value()) != allowed_groups.end()) { + if (!is_grease(named_group) and allowed_groups.find(named_group.value()) == allowed_groups.end()) { all_allowed = false; } else { some_allowed = true; } } - quantifier = "none"; + const char *quantifier = "none"; if (all_allowed) { quantifier = "all"; } else if (some_allowed) { @@ -143,13 +177,17 @@ namespace crypto_policy { a.print_key_string("groups_allowed", quantifier); if (!all_allowed) { json_array ng_array{a, "groups_not_allowed"}; - datum named_groups = ch.extensions.get_supported_groups(); + datum named_groups = extensions.get_supported_groups(); xtn named_groups_xtn{named_groups}; encoded named_groups_len{named_groups_xtn.value}; while (named_groups_xtn.value.is_readable()) { - encoded named_group{named_groups_xtn.value}; - if (!is_grease(named_group) || allowed_groups.find(named_group.value()) != allowed_groups.end()) { - ng_array.print_uint(named_group); + tls::supported_groups named_group{named_groups_xtn.value}; + if (!is_grease(named_group) and allowed_groups.find(named_group.value()) == allowed_groups.end()) { + if (readable_output) { + ng_array.print_string(named_group.get_name()); + } else { + ng_array.print_uint16_hex(named_group); + } } else { } } @@ -159,11 +197,11 @@ namespace crypto_policy { // required extensions // bool have_tls_cert_with_extern_psk = false; - tmp = ch.extensions; + datum tmp = extensions; while (tmp.is_readable()) { xtn extension{tmp}; switch(extension.type()) { - case tls::tls_cert_with_extern_psk: + case tls::extensions::code::tls_cert_with_extern_psk: have_tls_cert_with_extern_psk = true; break; default: @@ -171,6 +209,64 @@ namespace crypto_policy { } } a.print_key_bool("tls_cert_with_extern_psk", have_tls_cert_with_extern_psk); + + return true; + } + + bool assess(const tls_client_hello &ch, json_object &o) const override { + + json_object a{o, "cryptographic_security_assessment"}; + a.print_key_string("policy", "quantum_safe"); + json_object assessment{a, "client"}; + assess_tls_ciphersuites(ch.ciphersuite_vector, assessment); + assess_tls_extensions(ch.extensions, assessment); + assessment.close(); + a.close(); + + return true; + } + + bool assess(const tls_server_hello &ch, json_object &o) const override { + + json_object a{o, "cryptographic_security_assessment"}; + a.print_key_string("policy", "quantum_safe"); + json_object assessment{a, "session"}; + assess_tls_ciphersuites(ch.ciphersuite_vector, assessment); + assess_tls_extensions(ch.extensions, assessment); + assessment.close(); + a.close(); + + return true; + } + + bool assess(const tls_server_hello_and_certificate &hello_and_cert, json_object &o) const override { + if (hello_and_cert.is_not_empty()) { + return assess(hello_and_cert.get_server_hello(), o); + } + return false; + }; + + bool assess(const dtls_client_hello &dtls_ch, json_object &o) const override { + + const tls_client_hello &ch = dtls_ch.get_tls_client_hello(); + json_object a{o, "cryptographic_security_assessment"}; + a.print_key_string("policy", "quantum_safe"); + a.print_key_string("target", "client"); + assess_tls_ciphersuites(ch.ciphersuite_vector, a); + assess_tls_extensions(ch.extensions, a); + a.close(); + + return true; + } + + bool assess(const dtls_server_hello &dtls_sh, json_object &o) const override { + + const tls_server_hello &sh = dtls_sh.get_tls_server_hello(); + json_object a{o, "cryptographic_security_assessment"}; + a.print_key_string("policy", "quantum_safe"); + a.print_key_string("target", "session"); + assess_tls_ciphersuites(sh.ciphersuite_vector, a); + assess_tls_extensions(sh.extensions, a); a.close(); return true; @@ -178,6 +274,17 @@ namespace crypto_policy { }; + inline const assessor* assessor::create(const std::string &policy) { + if (policy == "quantum_safe" or policy == "default") { + return new crypto_policy::quantum_safe{true}; + } else if (policy == "quantum_safe_compact") { + return new crypto_policy::quantum_safe{false}; + } + return nullptr; // error: policy not found + } + }; // namespace crypto_policiy +// #include "nist_sp800_52.hpp" + #endif // CRYPTO_ASSESS_H diff --git a/src/libmerc/datum.h b/src/libmerc/datum.h index f09788ea..bce6fe2b 100644 --- a/src/libmerc/datum.h +++ b/src/libmerc/datum.h @@ -47,17 +47,17 @@ static constexpr bool host_little_endian = true; /// returns an integer equal to x with its byte order reversed (from /// little endian to big endian or vice-versa) /// -inline static uint16_t swap_byte_order(uint16_t x) { return _byteswap_ushort(x); } +inline static constexpr uint16_t swap_byte_order(uint16_t x) { return _byteswap_ushort(x); } /// returns an integer equal to x with its byte order reversed (from /// little endian to big endian or vice-versa) /// -inline static uint32_t swap_byte_order(uint32_t x) { return _byteswap_ulong(x); } +inline static constexpr uint32_t swap_byte_order(uint32_t x) { return _byteswap_ulong(x); } /// returns an integer equal to x with its byte order reversed (from /// little endian to big endian or vice-versa) /// -inline static uint64_t swap_byte_order(uint64_t x) { return _byteswap_uint64(x); } +inline static constexpr uint64_t swap_byte_order(uint64_t x) { return _byteswap_uint64(x); } #else @@ -66,17 +66,17 @@ static constexpr bool host_little_endian = (__BYTE_ORDER__ == __ORDER_LITTLE_END /// returns an integer equal to x with its byte order reversed (from /// little endian to big endian or vice-versa) /// -inline static uint16_t swap_byte_order(uint16_t x) { return __builtin_bswap16(x); } +inline static constexpr uint16_t swap_byte_order(uint16_t x) { return __builtin_bswap16(x); } /// returns an integer equal to x with its byte order reversed (from /// little endian to big endian or vice-versa) /// -inline static uint32_t swap_byte_order(uint32_t x) { return __builtin_bswap32(x); } +inline static constexpr uint32_t swap_byte_order(uint32_t x) { return __builtin_bswap32(x); } /// returns an integer equal to x with its byte order reversed (from /// little endian to big endian or vice-versa) /// -inline static uint64_t swap_byte_order(uint64_t x) { return __builtin_bswap64(x); } +inline static constexpr uint64_t swap_byte_order(uint64_t x) { return __builtin_bswap64(x); } #endif @@ -88,7 +88,7 @@ inline static uint64_t swap_byte_order(uint64_t x) { return __builtin_bswap64(x) /// byte order with the same type and value. /// template -inline static T ntoh(T x) { if (host_little_endian) { return swap_byte_order(x); } return x; } +inline static constexpr T ntoh(T x) { if (host_little_endian) { return swap_byte_order(x); } return x; } /// when `x` is in host byte order, `hton(x)` returns the value of `x` /// in network byte order @@ -104,7 +104,7 @@ inline static T ntoh(T x) { if (host_little_endian) { return swap_byte_order(x); /// will result from amiguity over the integer type. /// template -inline static T hton(T x) { if (host_little_endian) { return swap_byte_order(x); } return x; } +inline static constexpr T hton(T x) { if (host_little_endian) { return swap_byte_order(x); } return x; } /// @} -- end of integeroperations @@ -424,7 +424,7 @@ struct datum { template bool cmp(const std::array a) const { if (length() == N) { - return ::memcmp(data, a.data, N) == 0; + return ::memcmp(data, a.data(), N) == 0; } return false; } @@ -559,6 +559,15 @@ struct datum { return true; } + bool is_alnum() const { + for (const auto & d : *this) { + if (!isalnum(d)) { + return false; + } + } + return true; + } + bool accept(uint8_t byte) { if (data_end > data) { uint8_t value = *data; diff --git a/src/libmerc/dns.h b/src/libmerc/dns.h index 48a575fe..738b8c0d 100644 --- a/src/libmerc/dns.h +++ b/src/libmerc/dns.h @@ -1037,7 +1037,6 @@ struct dns_packet : public base_protocol { } const char *key = encoded{ntoh(header->flags)}.bit<0>() ? "response" : "query"; struct json_object dns_json{o, key}; - dns_json.print_key_uint_hex("id", header->id); //dns_json.print_key_uint("qdcount", qdcount); //dns_json.print_key_uint("ancount", ancount); //dns_json.print_key_uint("nscount", nscount); @@ -1086,6 +1085,8 @@ struct dns_packet : public base_protocol { a.close(); } + dns_json.print_key_uint_hex("id", header->id); + dns_json.close(); } diff --git a/src/libmerc/dtls.h b/src/libmerc/dtls.h index cf345516..fa5011f5 100644 --- a/src/libmerc/dtls.h +++ b/src/libmerc/dtls.h @@ -97,6 +97,8 @@ class dtls_client_hello : public base_protocol { return hello.is_not_empty(); } + const tls_client_hello &get_tls_client_hello() const { return hello; } + static constexpr mask_and_value<16> dtls_matcher = { { 0xff, 0xff, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, @@ -134,6 +136,8 @@ class dtls_server_hello : public base_protocol { return hello.is_not_empty(); } + const tls_server_hello &get_tls_server_hello() const { return hello; } + static constexpr mask_and_value<16> dtls_matcher = { { 0xff, 0xff, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, diff --git a/src/libmerc/ech.hpp b/src/libmerc/ech.hpp index eaa538a7..65dc95b8 100644 --- a/src/libmerc/ech.hpp +++ b/src/libmerc/ech.hpp @@ -7,6 +7,8 @@ #include "datum.h" #include "hpke_params.h" +#include "json_object.h" +#include "json_string.hpp" // An object of class opaque represents a TLS variable-length opaque // data field, as described in RFC 8446. @@ -213,6 +215,7 @@ class ech_config_contents_version_f30d { // } // } ECHConfig; // + class ech_config { encoded redundant_length; encoded version; diff --git a/src/libmerc/esp.hpp b/src/libmerc/esp.hpp new file mode 100644 index 00000000..855a3feb --- /dev/null +++ b/src/libmerc/esp.hpp @@ -0,0 +1,104 @@ +// esp.h +// + +#ifndef ESP_H +#define ESP_H + +#include "datum.h" +#include "protocol.h" +#include "json_object.h" + +// ESP format (following RFC 4303, Figure 1) +// +// 0 1 2 3 +// 0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1 +// +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+ ---- +// | Security Parameters Index (SPI) | ^Int. +// +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+ |Cov- +// | Sequence Number | |ered +// +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+ | ---- +// | Payload Data* (variable) | | ^ +// ~ ~ | | +// | | |Conf. +// + +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+ |Cov- +// | | Padding (0-255 bytes) | |ered* +// +-+-+-+-+-+-+-+-+ +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+ | | +// | | Pad Length | Next Header | v v +// +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+ ------ +// | Integrity Check Value-ICV (variable) | +// ~ ~ +// | | +// +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+ +// +// The ESN facility allows use of a 64-bit sequence number for an SA. +// (See Appendix A, "Extended (64-bit) Sequence Numbers", for details.) +// Only the low-order 32 bits of the sequence number are transmitted in +// the plaintext ESP header of each packet. +// +// The SPI value of zero (0) is reserved for local, implementation- +// specific use and MUST NOT be sent on the wire. +// +// The sequence number is a monotonically increasing unsigned 32-bit +// integer in network byte order. The first ESP packet sent for a +// given SPI has a value of 1. + +// class esp represents an ESP packet observed on the wire +// +// ESP can be carried in UDP (RFC 3948), in which case the +// non_esp_marker is used to distinguish ESP from IKE +// +class esp : public base_protocol { + datum spi; + datum seq; + datum payload; + bool valid = false; + +public: + + esp(datum &d) : spi{d, 4}, seq{d, 4}, payload{d} { + std::array non_esp_marker = { 0x00, 0x00, 0x00, 0x00 }; + if (d.is_not_empty() and spi.cmp(non_esp_marker) == false) { + + // to limit the volume of output, we only write out + // JSON records for seq == 1, which should be the + // first ESP packet for a security association + // + if (seq.cmp(std::array{0x00, 0x00, 0x00, 0x01}) == false) { + return; + } + valid = true; + } + } + + // ESP can run over IP as protocol 50, or run over UDP, with the + // default port of 500, in which case it is usually multiplexed + // with IKE over the same port + // + static constexpr uint16_t default_port = hton(4500); + + bool is_not_empty() { + return valid; + } + + void write_json(json_object &o, bool metadata_output=false) const { + if (valid) { + json_object esp_json{o, "esp"}; + esp_json.print_key_hex("spi", spi); + esp_json.print_key_hex("seq", seq); + esp_json.print_key_uint("payload_length", payload.length()); + + if (metadata_output) { + // + // print out initial bytes of payload + // + datum tmp = payload; + tmp.trim_to_length(32); + esp_json.print_key_hex("payload", tmp); + } + esp_json.close(); + } + } +}; + + +#endif // ESP_H diff --git a/src/libmerc/global_config.h b/src/libmerc/global_config.h index e5a6637c..af17d88d 100644 --- a/src/libmerc/global_config.h +++ b/src/libmerc/global_config.h @@ -128,6 +128,7 @@ struct global_config : public libmerc_config { public: // extended configs std::string temp_proto_str; + std::string crypto_assess_policy; bool reassembly = false; /* reassemble protocol segments */ bool stats_blocking = false; /* stats mode: lossless but blocking */ fingerprint_format fp_format; // default fingerprint format @@ -169,6 +170,8 @@ struct global_config : public libmerc_config { { "http.response", false }, { "icmp", false }, { "iec", false }, + { "ldap", false }, + { "ipsec", false }, { "lldp", false }, { "mdns", false }, { "nbns", false }, @@ -256,6 +259,11 @@ struct global_config : public libmerc_config { return true; } + bool set_crypto_assess (const std::string& policy) { + crypto_assess_policy = policy; // policy.empty() ? "default" : policy ; + return true; + } + }; static void setup_extended_fields(global_config* lc, const std::string& config) { @@ -267,7 +275,8 @@ static void setup_extended_fields(global_config* lc, const std::string& config) {"tcp-reassembly", "", "", SETTER_FUNCTION(&lc){ lc->reassembly = true; }}, {"reassembly", "", "", SETTER_FUNCTION(&lc){ lc->reassembly = true; }}, {"stats-blocking", "", "", SETTER_FUNCTION(&lc){ lc->stats_blocking = true; }}, - {"raw-features", "", "", SETTER_FUNCTION(&lc){ lc->set_raw_features(s); }} + {"raw-features", "", "", SETTER_FUNCTION(&lc){ lc->set_raw_features(s); }}, + {"crypto-assess", "", "", SETTER_FUNCTION(&lc){ lc->set_crypto_assess(s); }}, }; parse_additional_options(options, config, *lc); diff --git a/src/libmerc/hpke_params.h b/src/libmerc/hpke_params.h index 83948c6e..374e3995 100644 --- a/src/libmerc/hpke_params.h +++ b/src/libmerc/hpke_params.h @@ -12,6 +12,8 @@ #ifndef HPKE_PARAMS_H #define HPKE_PARAMS_H +#include "json_object.h" + namespace hpke { template diff --git a/src/libmerc/http.cc b/src/libmerc/http.cc index 8fe7f6c4..22f515d8 100644 --- a/src/libmerc/http.cc +++ b/src/libmerc/http.cc @@ -11,6 +11,7 @@ #include "http.h" #include "json_object.h" #include "match.h" +#include "http_auth.hpp" inline void to_lower(std::basic_string &str, struct datum d) { if (d.is_not_readable()) { @@ -253,6 +254,8 @@ void http_request::write_json(struct json_object &record, bool output_metadata) http_request.print_key_json_string("via", get_header("via")); http_request.print_key_json_string("upgrade", get_header("upgrade")); http_request.print_key_json_string("referer", get_header("referer")); + datum auth = get_header("authorization"); + if (auth.is_not_null()) { authorization{auth}.write_json(http_request); } headers.write_json(http_request); } else { http_request.print_key_json_string("user-agent", get_header("user-agent")); @@ -329,7 +332,8 @@ void http_request::fingerprint(struct buffer_stream &b) { { "x-forwarded-for", req_hdrs.index("x-forwarded-for")}, { "via", req_hdrs.index("via")}, { "upgrade", req_hdrs.index("upgrade")}, - { "referer", req_hdrs.index("referer")} + { "referer", req_hdrs.index("referer")}, + { "authorization", req_hdrs.index("authorization")} }; static perfect_hash ph{header_data_request}; diff --git a/src/libmerc/http.h b/src/libmerc/http.h index 8a13693a..6fb1af82 100644 --- a/src/libmerc/http.h +++ b/src/libmerc/http.h @@ -307,7 +307,7 @@ class new_http_headers { }; struct http_request : public base_protocol { - static constexpr uint8_t num_headers_to_report = 6; + static constexpr uint8_t num_headers_to_report = 7; struct datum method; struct datum uri; struct datum protocol; @@ -320,7 +320,8 @@ struct http_request : public base_protocol { "x-forwarded-for", "via", "upgrade", - "referer" + "referer", + "authorization" } }; diff --git a/src/libmerc/http_auth.hpp b/src/libmerc/http_auth.hpp new file mode 100644 index 00000000..d106d36e --- /dev/null +++ b/src/libmerc/http_auth.hpp @@ -0,0 +1,151 @@ +// http_auth.hpp +// +// HTTP Authorization/Authentication + +#ifndef HTTP_AUTH_HPP +#define HTTP_AUTH_HPP + +#include "datum.h" +#include "base64.h" +#include "json_object.h" + +class scheme : public datum { +public: + scheme(struct datum& d) { + datum::parse_up_to_delim(d, ' '); + } + + /// the enumeration `type` identifies Authorization scheme types; + /// only Bearer, Basic, and Digest are currently supported + /// + /// The full set of schemes is laid out at + /// https://www.iana.org/assignments/http-authschemes/http-authschemes.xhtml + /// + enum type { + unknown, + basic, + digest, + bearer, + }; + + static const char *type_get_name(enum type t) { + switch(t) { + case basic: return "basic"; + case digest: return "digest"; + case bearer: return "bearer"; + case unknown: + default: + ; + } + return "unknown"; + } + + scheme::type get_type() const { + // + // TODO: technically, this function should use + // case-insensitive comparisons + // + if (this->cmp(std::array{'B', 'a', 's', 'i', 'c'})) { + return type::basic; + } + if (this->cmp(std::array{'B', 'e', 'a', 'r', 'e', 'r'})) { + return type::bearer; + } + if (this->cmp(std::array{'D', 'i', 'g', 'e', 's', 't'})) { + return type::digest; + } + return unknown; + } + +}; + +class bearer_token { + datum complete_value; + datum header; + datum payload; + datum signature; + +public: + + // constructs a bearer_token object from a \ref datum (not a + // reference to a `datum) + // + bearer_token(datum d) { + complete_value = d, + header.parse_up_to_delim(d, '.'); + d.accept('.'); + payload.parse_up_to_delim(d, '.'); + d.accept('.'); + signature = d; + } + + bool is_valid() const { return signature.is_not_null(); } + + void write_json(json_object &o) const { + if (!is_valid()) { return; } + + uint8_t header_buf[1024]; + int header_len = base64::decode(header_buf, sizeof(header_buf), header.data, header.length()); + uint8_t payload_buf[1024]; + int payload_len = base64::decode(payload_buf, sizeof(payload_buf), payload.data, payload.length()); + + // if base64 decoding was successful, we print out the decoded + // payload and header, along with the undecoded signature; + // otherwise, we write out the complete value of the token, to + // handle cases in which the client doesn't want to conform to + // RFC 6750 Section 2.1 + // + if (header_len > 0 and payload_len > 0) { + o.print_key_json_string("header", header_buf, header_len); + o.print_key_json_string("payload", payload_buf, payload_len); + o.print_key_json_string("signature", signature.data, signature.length()); + } else { + o.print_key_json_string("token", complete_value.data, complete_value.length()); + } + + } + +}; + +class authorization { + scheme auth_scheme; + literal_byte<' '> space; + datum auth_param; + +public: + + /// construct an `authorization` object from a \ref datum (not a `datum` reference) + /// + authorization(datum d) : + auth_scheme{d}, + space{d}, + auth_param{d} + { } + + bool is_valid() const { return auth_param.is_not_null(); } + + void write_json(json_object &o) const { + if (!is_valid()) { return; } + json_object auth_json{o, "authorization"}; + scheme::type schemetype = auth_scheme.get_type(); + json_object scheme_json{auth_json, auth_scheme.type_get_name(schemetype)}; + if (schemetype == scheme::type::basic) { + uint8_t outbuf[2048]; + int outlen = base64::decode(outbuf, sizeof(outbuf), auth_param.data, auth_param.length()); + outlen = outlen > 0 ? outlen : 0; // if base64 decoding fails, print nothing + scheme_json.print_key_json_string("param", outbuf, outlen); + + } else if (schemetype == scheme::type::bearer) { + + bearer_token{auth_param}.write_json(scheme_json); + + } else { + scheme_json.print_key_json_string("param", auth_param.data, auth_param.length()); + } + scheme_json.close(); + auth_json.close(); + } + +}; + +#endif diff --git a/src/libmerc/ike.h b/src/libmerc/ike.hpp similarity index 95% rename from src/libmerc/ike.h rename to src/libmerc/ike.hpp index 2c9d08e9..9332d261 100644 --- a/src/libmerc/ike.h +++ b/src/libmerc/ike.hpp @@ -1,4 +1,4 @@ -// ike.h +// ike.hpp // // internet key exchange @@ -7,6 +7,8 @@ namespace ike { +#include "datum.h" +#include "protocol.h" #include "ikev2_params.h" // The non-ESP marker is used to distinguish IKE from @@ -20,6 +22,12 @@ namespace ike { non_esp_marker(datum &d) : value{d, {0x00, 0x00, 0x00, 0x00}} { } }; + // by default, IKE runs on UDP port 500, though it can also use + // UDP port 4500, in which case it is usually multiplexed with + // ESP-over-UDP + // + static constexpr uint16_t default_port = hton(500); + // 1 2 3 // 0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1 // +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+ @@ -163,8 +171,8 @@ namespace ike { if (!valid) { return; } o.print_key_hex("initiator_spi", initiator_spi); o.print_key_hex("responder_spi", responder_spi); - o.print_key_uint("major version", version.slice<0,4>()); - o.print_key_uint("minor version", version.slice<4,8>()); + o.print_key_uint("major_version", version.slice<0,4>()); + o.print_key_uint("minor_version", version.slice<4,8>()); exchange.write_json(o); o.print_key_bool("response", flags.bit<2>()); o.print_key_bool("version", flags.bit<3>()); @@ -208,7 +216,8 @@ namespace ike { spi_size{d}, message_type{d}, spi{d, spi_size}, - data{d} + data{d}, + valid{d.is_not_null()} {} void write_json(json_object &o) { @@ -359,7 +368,7 @@ namespace ike { case transform_type::code::Integrity_Algorithm: integrity_transform_type{transform_id}.write_json(o); break; - case transform_type::code::Diffie_Hellman_Group: + case transform_type::code::Key_Exchange_Method: diffie_hellman_group_type{transform_id}.write_json(o); break; case transform_type::code::Extended_Sequence_Numbers: @@ -441,7 +450,7 @@ namespace ike { p.print_key_hex("spi", spi); // p.print_key_hex("transforms", transforms); json_array transform_array{p, "transforms"}; - fprintf(stderr, "proposal transforms:"); transforms.fprint_hex(stderr); fputc('\n', stderr); + //fprintf(stderr, "proposal transforms:"); transforms.fprint_hex(stderr); fputc('\n', stderr); datum tmp = transforms; while (tmp.is_not_empty()) { transform t{tmp}; @@ -507,7 +516,7 @@ namespace ike { } break; case payload_type::code::Vendor_ID: - if (payload.is_printable()) { + if (false) { // payload.is_printable()) { o.print_key_json_string("vendor_id", payload); } else { o.print_key_hex("vendor_id_hex", payload); @@ -532,7 +541,7 @@ namespace ike { } }; - class packet { + class packet : public base_protocol { header hdr; datum body; public: @@ -541,13 +550,17 @@ namespace ike { body{d, hdr.body_length()} { } + bool is_not_empty() const { return is_valid(); } + bool is_valid() const { return hdr.is_valid() and body.is_not_null(); } - void write_json(json_object &o) const { + void write_json(json_object &o, bool output_metadata=false) const { + (void)output_metadata; if (!is_valid()) { return; } - hdr.write_json(o); + json_object ike_json{o, "ike"}; + hdr.write_json(ike_json); uint16_t payload_type = hdr.get_next_payload(); - json_array payloads{o, "payloads"}; + json_array payloads{ike_json, "payloads"}; datum tmp = body; while (tmp.is_not_empty()) { json_object p{payloads}; @@ -557,6 +570,7 @@ namespace ike { payload_type = gp.get_next_payload(); } payloads.close(); + ike_json.close(); } }; diff --git a/src/libmerc/ikev2_params.h b/src/libmerc/ikev2_params.h index 4351fb37..1712f46b 100644 --- a/src/libmerc/ikev2_params.h +++ b/src/libmerc/ikev2_params.h @@ -1,6 +1,6 @@ // ikev2_params.h // -// this file was autogenerated at 2022-09-20T21:19:29Z +// this file was autogenerated at 2024-11-17T15:27:13Z // you should edit the source file(s) instead of this one // // source files: @@ -33,17 +33,16 @@ #ifndef IKEV2_PARAMS_H #define IKEV2_PARAMS_H -static const char UNKNOWN[] = "UNKNOWN"; - template class exchange_type : public encoded { static_assert(std::is_unsigned_v, "T must be an unsigned integer"); public: void write_json(json_object &o) const { const char *name = get_name(); - o.print_key_string("exchange_type", name); - if (name == UNKNOWN) { - o.print_key_uint("exchange_type_code", encoded::value()); + if (name == nullptr) { + o.print_key_unknown_code("exchange_type", encoded::value()); + } else { + o.print_key_string("exchange_type", name); } } enum code { @@ -73,7 +72,7 @@ class exchange_type : public encoded { default: ; } - return UNKNOWN; + return nullptr; } }; @@ -83,9 +82,10 @@ class payload_type : public encoded { public: void write_json(json_object &o) const { const char *name = get_name(); - o.print_key_string("payload_type", name); - if (name == UNKNOWN) { - o.print_key_uint("payload_type_code", encoded::value()); + if (name == nullptr) { + o.print_key_unknown_code("payload_type", encoded::value()); + } else { + o.print_key_string("payload_type", name); } } enum code { @@ -141,7 +141,7 @@ class payload_type : public encoded { default: ; } - return UNKNOWN; + return nullptr; } }; @@ -151,16 +151,17 @@ class transform_type : public encoded { public: void write_json(json_object &o) const { const char *name = get_name(); - o.print_key_string("transform_type", name); - if (name == UNKNOWN) { - o.print_key_uint("transform_type_code", encoded::value()); + if (name == nullptr) { + o.print_key_unknown_code("transform_type", encoded::value()); + } else { + o.print_key_string("transform_type", name); } } enum code { Encryption_Algorithm = 1, Pseudo_random_Function = 2, Integrity_Algorithm = 3, - Diffie_Hellman_Group = 4, + Key_Exchange_Method = 4, Extended_Sequence_Numbers = 5, Additional_Key_Exchange_1 = 6, Additional_Key_Exchange_2 = 7, @@ -175,7 +176,7 @@ class transform_type : public encoded { case Encryption_Algorithm: return "Encryption_Algorithm"; case Pseudo_random_Function: return "Pseudo_random_Function"; case Integrity_Algorithm: return "Integrity_Algorithm"; - case Diffie_Hellman_Group: return "Diffie_Hellman_Group"; + case Key_Exchange_Method: return "Key_Exchange_Method"; case Extended_Sequence_Numbers: return "Extended_Sequence_Numbers"; case Additional_Key_Exchange_1: return "Additional_Key_Exchange_1"; case Additional_Key_Exchange_2: return "Additional_Key_Exchange_2"; @@ -187,7 +188,7 @@ class transform_type : public encoded { default: ; } - return UNKNOWN; + return nullptr; } }; @@ -197,9 +198,10 @@ class transform_attribute_type : public encoded { public: void write_json(json_object &o) const { const char *name = get_name(); - o.print_key_string("transform_attribute_type", name); - if (name == UNKNOWN) { - o.print_key_uint("transform_attribute_type_code", encoded::value()); + if (name == nullptr) { + o.print_key_unknown_code("transform_attribute_type", encoded::value()); + } else { + o.print_key_string("transform_attribute_type", name); } } enum code { @@ -211,7 +213,7 @@ class transform_attribute_type : public encoded { default: ; } - return UNKNOWN; + return nullptr; } }; @@ -221,9 +223,10 @@ class encryption_transform_type : public encoded { public: void write_json(json_object &o) const { const char *name = get_name(); - o.print_key_string("encryption_transform_type", name); - if (name == UNKNOWN) { - o.print_key_uint("encryption_transform_type_code", encoded::value()); + if (name == nullptr) { + o.print_key_unknown_code("encryption_transform_type", encoded::value()); + } else { + o.print_key_string("encryption_transform_type", name); } } enum code { @@ -297,7 +300,7 @@ class encryption_transform_type : public encoded { default: ; } - return UNKNOWN; + return nullptr; } }; @@ -307,9 +310,10 @@ class pseudorandom_function_type : public encoded { public: void write_json(json_object &o) const { const char *name = get_name(); - o.print_key_string("pseudorandom_function_type", name); - if (name == UNKNOWN) { - o.print_key_uint("pseudorandom_function_type_code", encoded::value()); + if (name == nullptr) { + o.print_key_unknown_code("pseudorandom_function_type", encoded::value()); + } else { + o.print_key_string("pseudorandom_function_type", name); } } enum code { @@ -337,7 +341,7 @@ class pseudorandom_function_type : public encoded { default: ; } - return UNKNOWN; + return nullptr; } }; @@ -347,9 +351,10 @@ class integrity_transform_type : public encoded { public: void write_json(json_object &o) const { const char *name = get_name(); - o.print_key_string("integrity_transform_type", name); - if (name == UNKNOWN) { - o.print_key_uint("integrity_transform_type_code", encoded::value()); + if (name == nullptr) { + o.print_key_unknown_code("integrity_transform_type", encoded::value()); + } else { + o.print_key_string("integrity_transform_type", name); } } enum code { @@ -389,7 +394,7 @@ class integrity_transform_type : public encoded { default: ; } - return UNKNOWN; + return nullptr; } }; @@ -399,9 +404,10 @@ class diffie_hellman_group_type : public encoded { public: void write_json(json_object &o) const { const char *name = get_name(); - o.print_key_string("diffie_hellman_group_type", name); - if (name == UNKNOWN) { - o.print_key_uint("diffie_hellman_group_type_code", encoded::value()); + if (name == nullptr) { + o.print_key_unknown_code("diffie_hellman_group_type", encoded::value()); + } else { + o.print_key_string("diffie_hellman_group_type", name); } } enum code { @@ -430,6 +436,9 @@ class diffie_hellman_group_type : public encoded { Curve448 = 32, GOST3410_2012_256 = 33, GOST3410_2012_512 = 34, + ml_kem_512 = 35, + ml_kem_768 = 36, + ml_kem_1024 = 37, }; const char *get_name() const { switch(encoded::value()) { @@ -458,10 +467,13 @@ class diffie_hellman_group_type : public encoded { case Curve448: return "Curve448"; case GOST3410_2012_256: return "GOST3410_2012_256"; case GOST3410_2012_512: return "GOST3410_2012_512"; + case ml_kem_512: return "ml_kem_512"; + case ml_kem_768: return "ml_kem_768"; + case ml_kem_1024: return "ml_kem_1024"; default: ; } - return UNKNOWN; + return nullptr; } }; @@ -471,9 +483,10 @@ class extended_sequence_numbers_type : public encoded { public: void write_json(json_object &o) const { const char *name = get_name(); - o.print_key_string("extended_sequence_numbers_type", name); - if (name == UNKNOWN) { - o.print_key_uint("extended_sequence_numbers_type_code", encoded::value()); + if (name == nullptr) { + o.print_key_unknown_code("extended_sequence_numbers_type", encoded::value()); + } else { + o.print_key_string("extended_sequence_numbers_type", name); } } enum code { @@ -487,7 +500,7 @@ class extended_sequence_numbers_type : public encoded { default: ; } - return UNKNOWN; + return nullptr; } }; @@ -497,9 +510,10 @@ class identification_payload_type : public encoded { public: void write_json(json_object &o) const { const char *name = get_name(); - o.print_key_string("identification_payload_type", name); - if (name == UNKNOWN) { - o.print_key_uint("identification_payload_type_code", encoded::value()); + if (name == nullptr) { + o.print_key_unknown_code("identification_payload_type", encoded::value()); + } else { + o.print_key_string("identification_payload_type", name); } } enum code { @@ -527,7 +541,7 @@ class identification_payload_type : public encoded { default: ; } - return UNKNOWN; + return nullptr; } }; @@ -537,9 +551,10 @@ class certificate_encoding_type : public encoded { public: void write_json(json_object &o) const { const char *name = get_name(); - o.print_key_string("certificate_encoding_type", name); - if (name == UNKNOWN) { - o.print_key_uint("certificate_encoding_type_code", encoded::value()); + if (name == nullptr) { + o.print_key_unknown_code("certificate_encoding_type", encoded::value()); + } else { + o.print_key_string("certificate_encoding_type", name); } } enum code { @@ -577,7 +592,7 @@ class certificate_encoding_type : public encoded { default: ; } - return UNKNOWN; + return nullptr; } }; @@ -587,9 +602,10 @@ class authentication_method_type : public encoded { public: void write_json(json_object &o) const { const char *name = get_name(); - o.print_key_string("authentication_method_type", name); - if (name == UNKNOWN) { - o.print_key_uint("authentication_method_type_code", encoded::value()); + if (name == nullptr) { + o.print_key_unknown_code("authentication_method_type", encoded::value()); + } else { + o.print_key_string("authentication_method_type", name); } } enum code { @@ -617,7 +633,7 @@ class authentication_method_type : public encoded { default: ; } - return UNKNOWN; + return nullptr; } }; @@ -627,9 +643,10 @@ class notify_message_error_type : public encoded { public: void write_json(json_object &o) const { const char *name = get_name(); - o.print_key_string("notify_message_error_type", name); - if (name == UNKNOWN) { - o.print_key_uint("notify_message_error_type_code", encoded::value()); + if (name == nullptr) { + o.print_key_unknown_code("notify_message_error_type", encoded::value()); + } else { + o.print_key_string("notify_message_error_type", name); } } enum code { @@ -656,6 +673,7 @@ class notify_message_error_type : public encoded { INVALID_GROUP_ID = 45, AUTHORIZATION_FAILED = 46, STATE_NOT_FOUND = 47, + TS_MAX_QUEUE = 48, }; const char *get_name() const { switch(encoded::value()) { @@ -682,10 +700,11 @@ class notify_message_error_type : public encoded { case INVALID_GROUP_ID: return "INVALID_GROUP_ID"; case AUTHORIZATION_FAILED: return "AUTHORIZATION_FAILED"; case STATE_NOT_FOUND: return "STATE_NOT_FOUND"; + case TS_MAX_QUEUE: return "TS_MAX_QUEUE"; default: ; } - return UNKNOWN; + return nullptr; } }; @@ -695,9 +714,10 @@ class notify_message_status_type : public encoded { public: void write_json(json_object &o) const { const char *name = get_name(); - o.print_key_string("notify_message_status_type", name); - if (name == UNKNOWN) { - o.print_key_uint("notify_message_status_type_code", encoded::value()); + if (name == nullptr) { + o.print_key_unknown_code("notify_message_status_type", encoded::value()); + } else { + o.print_key_string("notify_message_status_type", name); } } enum code { @@ -760,6 +780,8 @@ class notify_message_status_type : public encoded { IP6_ALLOWED = 16440, ADDITIONAL_KEY_EXCHANGE = 16441, USE_AGGFRAG = 16442, + SUPPORTED_AUTH_METHODS = 16443, + SA_RESOURCE_INFO = 16444, }; const char *get_name() const { switch(encoded::value()) { @@ -822,10 +844,12 @@ class notify_message_status_type : public encoded { case IP6_ALLOWED: return "IP6_ALLOWED"; case ADDITIONAL_KEY_EXCHANGE: return "ADDITIONAL_KEY_EXCHANGE"; case USE_AGGFRAG: return "USE_AGGFRAG"; + case SUPPORTED_AUTH_METHODS: return "SUPPORTED_AUTH_METHODS"; + case SA_RESOURCE_INFO: return "SA_RESOURCE_INFO"; default: ; } - return UNKNOWN; + return nullptr; } }; @@ -835,9 +859,10 @@ class notification_ipcomp_type : public encoded { public: void write_json(json_object &o) const { const char *name = get_name(); - o.print_key_string("notification_ipcomp_type", name); - if (name == UNKNOWN) { - o.print_key_uint("notification_ipcomp_type_code", encoded::value()); + if (name == nullptr) { + o.print_key_unknown_code("notification_ipcomp_type", encoded::value()); + } else { + o.print_key_string("notification_ipcomp_type", name); } } enum code { @@ -855,7 +880,7 @@ class notification_ipcomp_type : public encoded { default: ; } - return UNKNOWN; + return nullptr; } }; @@ -865,9 +890,10 @@ class security_protocol_type : public encoded { public: void write_json(json_object &o) const { const char *name = get_name(); - o.print_key_string("security_protocol_type", name); - if (name == UNKNOWN) { - o.print_key_uint("security_protocol_type_code", encoded::value()); + if (name == nullptr) { + o.print_key_unknown_code("security_protocol_type", encoded::value()); + } else { + o.print_key_string("security_protocol_type", name); } } enum code { @@ -887,7 +913,7 @@ class security_protocol_type : public encoded { default: ; } - return UNKNOWN; + return nullptr; } }; @@ -897,9 +923,10 @@ class traffic_selector_type : public encoded { public: void write_json(json_object &o) const { const char *name = get_name(); - o.print_key_string("traffic_selector_type", name); - if (name == UNKNOWN) { - o.print_key_uint("traffic_selector_type_code", encoded::value()); + if (name == nullptr) { + o.print_key_unknown_code("traffic_selector_type", encoded::value()); + } else { + o.print_key_string("traffic_selector_type", name); } } enum code { @@ -917,7 +944,7 @@ class traffic_selector_type : public encoded { default: ; } - return UNKNOWN; + return nullptr; } }; @@ -927,9 +954,10 @@ class configuration_payload_type : public encoded { public: void write_json(json_object &o) const { const char *name = get_name(); - o.print_key_string("configuration_payload_type", name); - if (name == UNKNOWN) { - o.print_key_uint("configuration_payload_type_code", encoded::value()); + if (name == nullptr) { + o.print_key_unknown_code("configuration_payload_type", encoded::value()); + } else { + o.print_key_string("configuration_payload_type", name); } } enum code { @@ -947,7 +975,7 @@ class configuration_payload_type : public encoded { default: ; } - return UNKNOWN; + return nullptr; } }; @@ -957,9 +985,10 @@ class configuration_payload_attribute_type : public encoded { public: void write_json(json_object &o) const { const char *name = get_name(); - o.print_key_string("configuration_payload_attribute_type", name); - if (name == UNKNOWN) { - o.print_key_uint("configuration_payload_attribute_type_code", encoded::value()); + if (name == nullptr) { + o.print_key_unknown_code("configuration_payload_attribute_type", encoded::value()); + } else { + o.print_key_string("configuration_payload_attribute_type", name); } } enum code { @@ -986,6 +1015,9 @@ class configuration_payload_attribute_type : public encoded { TIMEOUT_PERIOD_FOR_LIVENESS_CHECK = 24, INTERNAL_DNS_DOMAIN = 25, INTERNAL_DNSSEC_TA = 26, + ENCDNS_IP4 = 27, + ENCDNS_IP6 = 28, + ENCDNS_DIGEST_INFO = 29, }; const char *get_name() const { switch(encoded::value()) { @@ -1012,10 +1044,13 @@ class configuration_payload_attribute_type : public encoded { case TIMEOUT_PERIOD_FOR_LIVENESS_CHECK: return "TIMEOUT_PERIOD_FOR_LIVENESS_CHECK"; case INTERNAL_DNS_DOMAIN: return "INTERNAL_DNS_DOMAIN"; case INTERNAL_DNSSEC_TA: return "INTERNAL_DNSSEC_TA"; + case ENCDNS_IP4: return "ENCDNS_IP4"; + case ENCDNS_IP6: return "ENCDNS_IP6"; + case ENCDNS_DIGEST_INFO: return "ENCDNS_DIGEST_INFO"; default: ; } - return UNKNOWN; + return nullptr; } }; @@ -1025,9 +1060,10 @@ class gateway_identity_type : public encoded { public: void write_json(json_object &o) const { const char *name = get_name(); - o.print_key_string("gateway_identity_type", name); - if (name == UNKNOWN) { - o.print_key_uint("gateway_identity_type_code", encoded::value()); + if (name == nullptr) { + o.print_key_unknown_code("gateway_identity_type", encoded::value()); + } else { + o.print_key_string("gateway_identity_type", name); } } enum code { @@ -1043,7 +1079,7 @@ class gateway_identity_type : public encoded { default: ; } - return UNKNOWN; + return nullptr; } }; @@ -1053,9 +1089,10 @@ class rohc_attribute_type : public encoded { public: void write_json(json_object &o) const { const char *name = get_name(); - o.print_key_string("rohc_attribute_type", name); - if (name == UNKNOWN) { - o.print_key_uint("rohc_attribute_type_code", encoded::value()); + if (name == nullptr) { + o.print_key_unknown_code("rohc_attribute_type", encoded::value()); + } else { + o.print_key_string("rohc_attribute_type", name); } } enum code { @@ -1075,7 +1112,7 @@ class rohc_attribute_type : public encoded { default: ; } - return UNKNOWN; + return nullptr; } }; @@ -1085,9 +1122,10 @@ class secure_password_type : public encoded { public: void write_json(json_object &o) const { const char *name = get_name(); - o.print_key_string("secure_password_type", name); - if (name == UNKNOWN) { - o.print_key_uint("secure_password_type_code", encoded::value()); + if (name == nullptr) { + o.print_key_unknown_code("secure_password_type", encoded::value()); + } else { + o.print_key_string("secure_password_type", name); } } enum code { @@ -1103,7 +1141,7 @@ class secure_password_type : public encoded { default: ; } - return UNKNOWN; + return nullptr; } }; @@ -1113,9 +1151,10 @@ class hash_algorithm_type : public encoded { public: void write_json(json_object &o) const { const char *name = get_name(); - o.print_key_string("hash_algorithm_type", name); - if (name == UNKNOWN) { - o.print_key_uint("hash_algorithm_type_code", encoded::value()); + if (name == nullptr) { + o.print_key_unknown_code("hash_algorithm_type", encoded::value()); + } else { + o.print_key_string("hash_algorithm_type", name); } } enum code { @@ -1139,7 +1178,7 @@ class hash_algorithm_type : public encoded { default: ; } - return UNKNOWN; + return nullptr; } }; @@ -1149,9 +1188,10 @@ class postquantum_preshared_key_type : public encoded { public: void write_json(json_object &o) const { const char *name = get_name(); - o.print_key_string("postquantum_preshared_key_type", name); - if (name == UNKNOWN) { - o.print_key_uint("postquantum_preshared_key_type_code", encoded::value()); + if (name == nullptr) { + o.print_key_unknown_code("postquantum_preshared_key_type", encoded::value()); + } else { + o.print_key_string("postquantum_preshared_key_type", name); } } enum code { @@ -1165,7 +1205,7 @@ class postquantum_preshared_key_type : public encoded { default: ; } - return UNKNOWN; + return nullptr; } }; diff --git a/src/libmerc/json_object.h b/src/libmerc/json_object.h index aa9e26fc..69e3620f 100644 --- a/src/libmerc/json_object.h +++ b/src/libmerc/json_object.h @@ -174,6 +174,9 @@ struct json_object { b->puts("\":"); if (value.data && value.data_end) { b->raw_as_base64(value.data, value.data_end - value.data); + } else { + b->write_char('\"'); + b->write_char('\"'); } } void print_key_timestamp(const char *k, struct timespec *ts) { diff --git a/src/libmerc/json_string.hpp b/src/libmerc/json_string.hpp new file mode 100644 index 00000000..a48c80e0 --- /dev/null +++ b/src/libmerc/json_string.hpp @@ -0,0 +1,115 @@ +// json_string.hpp +// + +#ifndef JSON_STRING_HPP +#define JSON_STRING_HPP + +#include // for std::string +#include // for memcmp() +#include "json_object.h" // for json_object, used in unit_test +#include "buffer_stream.h" // for buffer_stream + +/// implements a \ref buffer_stream that uses a `std::string` as its +/// underlying data storage +/// +class json_string { + std::string str; + buffer_stream buf; + +public: + + /// construct a `json_string` of length \param buf_size + /// + json_string(size_t buf_size); + + /// return a `std::string` containing the data written into the + /// buffer_stream, if no truncation occurred during that writing, + /// or the empty JSON object "{}" otherwise. + /// + /// note: this function call modifies the contents of the object + /// by resizing it (if no truncation has occured when writing json + /// data to the string) or setting it to "{}" (if truncation has + /// occured) + /// + std::string get_string(); + + /// convert a `json_string` into a pointer to a buffer_stream, for + /// use in initializing a `json_object` or `json_array` + /// + operator buffer_stream *() { return &buf; } + + /// performs a unit test of the class `json_string` and returns + /// `true` if it passes, and `false` otherwise. + /// + inline static bool unit_test(); + +}; + +// class json_string implementation +// +inline json_string::json_string(size_t buf_size) : + str(buf_size, '\0'), + buf{str.data(), (int)str.length()} +{ } + +inline std::string json_string::get_string() { + if (buf.trunc) { + // + // the attempted write failed, so set the string to an empty + // json_object to ensure valid output + // + str = "{}"; // error: buffer is truncated + } else { + // + // resize the string to reflect the length of the JSON text + // written into it + // + str.resize(buf.doff); + } + return str; +} + +bool json_string::unit_test() { + + auto test = [](size_t buflen, const char *expected_output) { + // create string_buffer_stream + // + json_string buf{buflen}; + + // attempt to write a json_object into the buffer + // + json_object o{buf}; + o.print_key_string("test", "example"); + o.close(); + + // verify + // + std::string output_str = buf.get_string(); + if (memcmp(output_str.data(), expected_output, strlen(expected_output)) != 0) { + return false; + } + + return true; + }; + if (test(19, "{\"test\":\"example\"}") != true) { + return false; + } + if (test(18, "{}") != true) { + return false; + } + + return true; +} + + +template +static inline std::string get_json_string(T &writeable_object, size_t buf_size) { + json_string buf{buf_size}; + json_object json{buf}; + writeable_object.write_json(json); + json.close(); + return buf.get_string(); +} + + +#endif // JSON_STRING_HPP diff --git a/src/libmerc/ldap.hpp b/src/libmerc/ldap.hpp new file mode 100644 index 00000000..6a64c661 --- /dev/null +++ b/src/libmerc/ldap.hpp @@ -0,0 +1,412 @@ +// ldap.hpp +// +// lightweight directory access protocol + +#ifndef LDAP_HPP +#define LDAP_HPP + +// for ASN.1 debugging, uncomment the following lines +// +// #define ASN1_DEBUG 1 +// #define TLV_ERR_INFO 1 + +#include "datum.h" +#include "x509.h" +#include "json_object.h" +#include "match.h" + +namespace ldap { + + // LDAPResult ::= SEQUENCE { + // resultCode ENUMERATED { + // success (0), + // operationsError (1), + // protocolError (2), + // timeLimitExceeded (3), + // sizeLimitExceeded (4), + // compareFalse (5), + // compareTrue (6), + // authMethodNotSupported (7), + // strongerAuthRequired (8), + // -- 9 reserved -- + // referral (10), + // adminLimitExceeded (11), + // unavailableCriticalExtension (12), + // confidentialityRequired (13), + // saslBindInProgress (14), + // noSuchAttribute (16), + // undefinedAttributeType (17), + // inappropriateMatching (18), + // constraintViolation (19), + // attributeOrValueExists (20), + // invalidAttributeSyntax (21), + // -- 22-31 unused -- + // noSuchObject (32), + // aliasProblem (33), + // invalidDNSyntax (34), + // -- 35 reserved for undefined isLeaf -- + // aliasDereferencingProblem (36), + // -- 37-47 unused -- + // inappropriateAuthentication (48), + // invalidCredentials (49), + // insufficientAccessRights (50), + // busy (51), + // unavailable (52), + // unwillingToPerform (53), + // loopDetect (54), + // -- 55-63 unused -- + // namingViolation (64), + // objectClassViolation (65), + // notAllowedOnNonLeaf (66), + // notAllowedOnRDN (67), + // entryAlreadyExists (68), + // objectClassModsProhibited (69), + // -- 70 reserved for CLDAP -- + // affectsMultipleDSAs (71), + // -- 72-79 unused -- + // other (80), + // ... }, + // matchedDN LDAPDN, + // diagnosticMessage LDAPString, + // referral [3] Referral OPTIONAL } + + enum result_codes { + success = 0, + operationsError = 1, + protocolError = 2, + timeLimitExceeded = 3, + sizeLimitExceeded = 4, + compareFalse = 5, + compareTrue = 6, + authMethodNotSupported = 7, + strongerAuthRequired = 8, + referral = 10, + adminLimitExceeded = 11, + unavailableCriticalExtension = 12, + confidentialityRequired = 13, + saslBindInProgress = 14, + noSuchAttribute = 16, + undefinedAttributeType = 17, + inappropriateMatching = 18, + constraintViolation = 19, + attributeOrValueExists = 20, + invalidAttributeSyntax = 21, + noSuchObject = 32, + aliasProblem = 33, + invalidDNSyntax = 34, + aliasDereferencingProblem = 36, + inappropriateAuthentication = 48, + invalidCredentials = 49, + insufficientAccessRights = 50, + busy = 51, + unavailable = 52, + unwillingToPerform = 53, + loopDetect = 54, + namingViolation = 64, + objectClassViolation = 65, + notAllowedOnNonLeaf = 66, + notAllowedOnRDN = 67, + entryAlreadyExists = 68, + objectClassModsProhibited = 69, + affectsMultipleDSAs = 71, + other = 80, + }; + + static const char *get_name(const tlv &resp_code) { + uint8_t code{0xff}; + if (resp_code.is_valid() and resp_code.length == 1) { + code = *resp_code.value.data; + } + switch(code) { + case success: return "success"; + case operationsError: return "operationsError"; + case protocolError: return "protocolError"; + case timeLimitExceeded: return "timeLimitExceeded"; + case sizeLimitExceeded: return "sizeLimitExceeded"; + case compareFalse: return "compareFalse"; + case compareTrue: return "compareTrue"; + case authMethodNotSupported: return "authMethodNotSupported"; + case strongerAuthRequired: return "strongerAuthRequired"; + case referral: return "referral"; + case adminLimitExceeded: return "adminLimitExceeded"; + case unavailableCriticalExtension: return "unavailableCriticalExtension"; + case confidentialityRequired: return "confidentialityRequired"; + case saslBindInProgress: return "saslBindInProgress"; + case noSuchAttribute: return "noSuchAttribute"; + case undefinedAttributeType: return "undefinedAttributeType"; + case inappropriateMatching: return "inappropriateMatching"; + case constraintViolation: return "constraintViolation"; + case attributeOrValueExists: return "attributeOrValueExists"; + case invalidAttributeSyntax: return "invalidAttributeSyntax"; + case noSuchObject: return "noSuchObject"; + case aliasProblem: return "aliasProblem"; + case invalidDNSyntax: return "invalidDNSyntax"; + case aliasDereferencingProblem: return "aliasDereferencingProblem"; + case inappropriateAuthentication: return "inappropriateAuthentication"; + case invalidCredentials: return "invalidCredentials"; + case insufficientAccessRights: return "insufficientAccessRights"; + case busy: return "busy"; + case unavailable: return "unavailable"; + case unwillingToPerform: return "unwillingToPerform"; + case loopDetect: return "loopDetect"; + case namingViolation: return "namingViolation"; + case objectClassViolation: return "objectClassViolation"; + case notAllowedOnNonLeaf: return "notAllowedOnNonLeaf"; + case notAllowedOnRDN: return "notAllowedOnRDN"; + case entryAlreadyExists: return "entryAlreadyExists"; + case objectClassModsProhibited: return "objectClassModsProhibited"; + case affectsMultipleDSAs: return "affectsMultipleDSAs"; + case other: return "other"; + default: + ; + } + return nullptr; + } + + // LDAP BindResponse, following RFC 4511 + // + // BindResponse ::= [APPLICATION 1] SEQUENCE { + // COMPONENTS OF LDAPResult, + // serverSaslCreds [7] OCTET STRING OPTIONAL } + // + class bind_response { + tlv result_code; + tlv matched_dn; + tlv diagnostic_msg; + // tlv referral; + // TODO: server_sasl_creds + bool valid{false}; + + public: + + void parse(datum &d) { + result_code.parse(&d); + matched_dn.parse(&d); + diagnostic_msg.parse(&d); + valid = d.is_not_null(); + } + + void write_json(json_object_asn1 &o) const { + if (!valid) { return; } + json_object_asn1 bind_resp_json{o, "bind_response"}; + const char *result_name = get_name(result_code); + bind_resp_json.print_key_string("result_code", result_name); + // result_code.print_as_json(bind_resp_json, "result_code"); + matched_dn.print_as_json(bind_resp_json, "matched_dn"); + diagnostic_msg.print_as_json(bind_resp_json, "diagnostic_message"); + bind_resp_json.close(); + } + + }; + + // LDAP BindRequest, following RFC 4511 + // + // BindRequest ::= [APPLICATION 0] SEQUENCE { + // version INTEGER (1 .. 127), + // name LDAPDN, + // authentication AuthenticationChoice } + // + // AuthenticationChoice ::= CHOICE { + // simple [0] OCTET STRING, + // -- 1 and 2 reserved + // sasl [3] SaslCredentials, + // ... } + // + // SaslCredentials ::= SEQUENCE { + // mechanism LDAPString, + // credentials OCTET STRING OPTIONAL } + // + class sasl_credentials { + tlv mechanism; + tlv credentials; + bool valid; + + public: + + void parse(datum &d) { + mechanism.parse(&d, 0x00, "sasl_credentials.mechanism"); + credentials.parse(&d, tlv::OCTET_STRING, "sasl_credentials.credentials"); + valid = d.is_not_null(); + } + + bool is_not_empty() const { return valid; } + + void write_json(json_object_asn1 &o) const { + if (!valid) { return; } + json_object_asn1 sasl_json{o, "sasl"}; + json_object_asn1 mechanism_json{sasl_json, mechanism_type_get_name(get_type(mechanism.value))}; + mechanism_json.print_key_base64("base64", credentials.value); + mechanism_json.close(); + sasl_json.close(); + } + + private: + + // SASL mechanism types, which correspond to the IANA registry + // https://www.iana.org/assignments/sasl-mechanisms/sasl-mechanisms.xhtml + // + enum mechanism_type { + unknown, + GSSAPI, + GSS_SPNEGO, + }; + + static const char *mechanism_type_get_name(mechanism_type t) { + switch(t) { + case mechanism_type::GSSAPI: return "gssapi"; + case mechanism_type::GSS_SPNEGO: return "gss_spnego"; + case mechanism_type::unknown: + default: + ; + }; + return "UNKNOWN"; + } + + static mechanism_type get_type(const datum &d) { + if (d.cmp(std::array{'G','S','S','A','P','I'})) { + return mechanism_type::GSSAPI; + } + if (d.cmp(std::array{'G','S','S','-','S','P','N','E','G','O'})) { + return mechanism_type::GSS_SPNEGO; + } + return mechanism_type::unknown; + } + + }; + + class bind_request { + tlv version; + tlv ldapdn; + tlv auth; + + public: + + bind_request(datum &d) { + version.parse(&d, tlv::INTEGER, "version"); + ldapdn.parse(&d, 0x00, "ldapdn"); + auth.parse(&d, 0x00, "auth"); + + } + + void write_json(json_object &o) const { + json_object_asn1 bind_req_json{o, "bind_request"}; + bind_req_json.print_key_hex("version", version.value); + ldapdn.print_as_json_escaped_string(bind_req_json, "ldapdn"); + json_object_asn1 auth_json{bind_req_json, "auth"}; + if (auth.tag == 0x80) { + auth.print_as_json_escaped_string(auth_json, "simple"); + } else if (auth.tag == 0xa3) { + datum tmp = auth.value; + sasl_credentials sasl_cred; + sasl_cred.parse(tmp); + sasl_cred.write_json(auth_json); + } else { + auth_json.print_key_hex("unknown", auth.value); + } + auth_json.close(); + bind_req_json.close(); + } + + }; + + // LDAPMessage ::= SEQUENCE { + // messageID MessageID, + // protocolOp CHOICE { + // bindRequest BindRequest, + // bindResponse BindResponse, + // unbindRequest UnbindRequest, + // searchRequest SearchRequest, + // searchResEntry SearchResultEntry, + // searchResDone SearchResultDone, + // searchResRef SearchResultReference, + // modifyRequest ModifyRequest, + // modifyResponse ModifyResponse, + // addRequest AddRequest, + // addResponse AddResponse, + // delRequest DelRequest, + // delResponse DelResponse, + // modDNRequest ModifyDNRequest, + // modDNResponse ModifyDNResponse, + // compareRequest CompareRequest, + // compareResponse CompareResponse, + // abandonRequest AbandonRequest, + // extendedReq ExtendedRequest, + // extendedResp ExtendedResponse, + // ..., + // intermediateResponse IntermediateResponse }, + // controls [0] Controls OPTIONAL } + // + // MessageID ::= INTEGER (0 .. maxInt) + // + // maxInt INTEGER ::= 2147483647 -- (2^^31 - 1) -- + // + class message : public base_protocol { + tlv outer_sequence; // SEQUENCE + tlv message_id; // INTEGER + tlv protocol_op; // ??? + bool valid{false}; + + public: + + message(datum &d) { + if (d.length() == 0) { + return; // don't process zero-length inputs + } + outer_sequence.parse(&d, tlv::SEQUENCE, "outer_sequence"); + message_id.parse(&outer_sequence.value, tlv::INTEGER, "message_id"); + valid = message_id.value.is_not_empty(); + protocol_op.parse(&outer_sequence.value, 0x00, "protocol_op"); + + } + + bool is_not_empty() const { + return valid; + } + + void write_json(struct json_object &o, bool output_metadata) { + if (!valid) { + return; // nothing to report on + } + (void)output_metadata; + json_object_asn1 ldap_json{o, "ldap"}; + ldap_json.print_key_hex("message_id", message_id.value); + // ldap_json.print_key_hex("protocol_op", protocol_op.value); + + constexpr uint8_t bind_req_tag = 0x60; // TODO: make this programmatic + constexpr uint8_t bind_resp_tag = 0x61; // TODO: make this programmatic + switch(protocol_op.tag) { + case bind_req_tag: + { + // fprintf(stderr, "got bind_req_tag\n"); + bind_request bind_req{protocol_op.value}; + bind_req.write_json(ldap_json); + } + break; + case bind_resp_tag: + { + // fprintf(stderr, "got bind_req_tag\n"); + bind_response bind_resp; + bind_resp.parse(protocol_op.value); + bind_resp.write_json(ldap_json); + } + break; + default: + // fprintf(stderr, "got tag %02x (not %02x or %02x)\n", protocol_op.tag, bind_req_tag, tlv::explicit_tag_constructed(0)); + ; + } + + ldap_json.close(); + } + + // empty functions for unsupported functionality + // + void compute_fingerprint(fingerprint &) const { } + bool do_analysis(const struct key &, struct analysis_context &, classifier*) { return false; } + + }; + + static constexpr uint16_t default_port = 34049; // TODO: hton(389); + +}; // namespace ldap + +#endif // LDAP_HPP diff --git a/src/libmerc/linux_sll.hpp b/src/libmerc/linux_sll.hpp new file mode 100644 index 00000000..6d3a82c2 --- /dev/null +++ b/src/libmerc/linux_sll.hpp @@ -0,0 +1,88 @@ +// linux_sll.hpp +// +// Linux "cooked" capture encapsulation, used when capturing packets +// from multiple interfaces of different types + +#ifndef LINUX_SLL_HPP +#define LINUX_SLL_HPP + +#include "datum.h" + +// LINKTYPE_LINUX_SLL encapsulation structure (following +// https://www.tcpdump.org/linktypes/LINKTYPE_LINUX_SLL.html) +// +// +---------------------------+ +// | Packet type | +// | (2 Octets) | +// +---------------------------+ +// | ARPHRD_ type | +// | (2 Octets) | +// +---------------------------+ +// | Link-layer address length | +// | (2 Octets) | +// +---------------------------+ +// | Link-layer address | +// | (8 Octets) | +// +---------------------------+ +// | Protocol type | +// | (2 Octets) | +// +---------------------------+ +// +class linux_sll { + encoded packet_type; + encoded arphrd_type; + encoded link_layer_address_length; + datum link_layer_address; + encoded protocol_type; + +public: + + /// parses a linux_ssl header from datum \param d + /// + linux_sll(datum &d) : + packet_type{d}, + arphrd_type{d}, + link_layer_address_length{d}, + link_layer_address{d, 8}, // note: hardcoded length + protocol_type{d} + { } + + /// reads and skips over a linux_sll encapsulation header in + /// \param d, if `d` contains an IPv4 or IPv6 packet; otherwise, + /// `d` is set to `null`. + /// + static void skip_to_ip(datum &d) { + linux_sll sll{d}; + if (d.is_not_null()) { + if (sll.is_ip()) { + return; + } + } + d.set_null(); // not an IP packet + } + + /// returns `true` if this \ref linux_ssl encapsulation header is + /// followed by an IPv4 or IPv6 packet, and false otherwise + /// + bool is_ip() const { + if ((arphrd_type == arphrd::ETHER or arphrd_type == arphrd::LOOPBACK) + and (protocol_type == ETH_TYPE_IP or protocol_type == ETH_TYPE_IPV6)) { + return true; + } + return false; + } + + /// protocol types identified by the arphrd_type code + /// + enum arphrd : uint16_t { + ETHER = 1, // ethernet 10/100mbps + LOOPBACK = 772 // loopback device + }; + + /// total bytes in an \ref linux_sll encapsulation header + /// + static constexpr const size_t length = 16; + +}; + +#endif diff --git a/src/libmerc/ocsp.hpp b/src/libmerc/ocsp.hpp new file mode 100644 index 00000000..07cf89b7 --- /dev/null +++ b/src/libmerc/ocsp.hpp @@ -0,0 +1,194 @@ +// ocsp.hpp +// +// lightweight directory access protocol + +#ifndef OCSP_HPP +#define OCSP_HPP + +// #define ASN1_DEBUG 1 +// #define TLV_ERR_INFO 1 + +#include +#include "datum.h" +#include "x509.h" +#include "json_object.h" +#include "match.h" + +namespace ocsp { + + // Signature ::= SEQUENCE { + // signatureAlgorithm AlgorithmIdentifier, + // signature BIT STRING, + // certs [0] EXPLICIT SEQUENCE OF Certificate OPTIONAL } + // + // Version ::= INTEGER { v1(0) } + // + + // CertID ::= SEQUENCE { + // hashAlgorithm AlgorithmIdentifier, + // issuerNameHash OCTET STRING, -- Hash of issuer's DN + // issuerKeyHash OCTET STRING, -- Hash of issuer's public key + // serialNumber CertificateSerialNumber } + // + class cert_id { + tlv sequence; + algorithm_identifier alg_id; + tlv issuer_name_hash; + tlv issuer_key_hash; + tlv serial_number; + + public: + + cert_id(datum &d) { + parse(d); + } + + void parse(datum &d) { + sequence.parse(&d, tlv::SEQUENCE, "cert_id.sequence"); + alg_id.parse(&sequence.value); + issuer_name_hash.parse(&sequence.value, tlv::OCTET_STRING); + issuer_key_hash.parse(&sequence.value, tlv::OCTET_STRING); + serial_number.parse(&sequence.value, tlv::INTEGER); + } + + void write_json(json_object_asn1 &o) const { + alg_id.print_as_json(o, "hash_algorithm"); + issuer_name_hash.print_as_json_hex(o, "issuer_name_hash"); + issuer_key_hash.print_as_json_hex(o, "issuer_key_hash"); + serial_number.print_as_json_hex(o, "serial_number"); + } + + }; + + // Request ::= SEQUENCE { + // reqCert CertID, + // singleRequestExtensions [0] EXPLICIT Extensions OPTIONAL } + // + class cert_request { + tlv sequence; + bool valid; + + public: + + cert_request(datum &d) { + parse(d); + } + + cert_request() {} + + void parse(datum &d) { + sequence.parse(&d, tlv::SEQUENCE, "cert_request.sequence"); + valid = d.is_not_null(); + } + + void write_json(json_object_asn1 &o) const { + if (!valid) { + return; + } + json_array array{o, "cert_ids"}; + datum seq = sequence.value; + while (seq.is_not_empty()) { + cert_id cid(seq); + if (!sequence.value.is_not_null()) { + break; + } + json_object_asn1 tmp{array}; + cid.write_json(tmp); + tmp.close(); + } + array.close(); + + } + + }; + + // TBSRequest ::= SEQUENCE { + // version [0] EXPLICIT Version DEFAULT v1, + // requestorName [1] EXPLICIT GeneralName OPTIONAL, + // requestList SEQUENCE OF Request, + // requestExtensions [2] EXPLICIT Extensions OPTIONAL } + // + class tbs_request { + tlv outer_sequence; + tlv inner_sequence; + cert_request cert_req; + + public: + + tbs_request() { } + + void parse(datum &d) { + outer_sequence.parse(&d, tlv::SEQUENCE, "tbs.outer_sequence"); + inner_sequence.parse(&outer_sequence.value, tlv::SEQUENCE, "tbs.inner_sequence"); + cert_req.parse(inner_sequence.value); // TBD: parse multiple + } + + tbs_request(datum &d) { + parse(d); + } + + void write_json(json_object_asn1 &o) const { + json_object_asn1 json{o, "ocsp_request"}; + json_array a{json, "cert_requests"}; + json_object_asn1 tmp{a}; + cert_req.write_json(tmp); + tmp.close(); + a.close(); + json.close(); + } + + }; + + // OCSPRequest ::= SEQUENCE { + // tbsRequest TBSRequest, + // optionalSignature [0] EXPLICIT Signature OPTIONAL } + // + class request { + tlv sequence; + tbs_request tbs; + + public: + + request(datum &d) { + sequence.parse(&d, tlv::SEQUENCE); + tbs.parse(sequence.value); + } + + void write_json(json_object_asn1 &o) const { + tbs.write_json(o); + } + + + static bool unit_test(FILE *output=nullptr) { + constexpr std::array ocsp_req = { + 0x30, 0x51, 0x30, 0x4f, 0x30, 0x4d, 0x30, 0x4b, 0x30, 0x49, 0x30, 0x09, + 0x06, 0x05, 0x2b, 0x0e, 0x03, 0x02, 0x1a, 0x05, 0x00, 0x04, 0x14, 0x33, + 0xf5, 0xaa, 0xc6, 0x1d, 0x66, 0xe7, 0x05, 0x5d, 0x03, 0x17, 0x3a, 0x4d, + 0x1f, 0x3e, 0x18, 0x71, 0x38, 0x85, 0x0d, 0x04, 0x14, 0x59, 0xa4, 0x66, + 0x06, 0x52, 0xa0, 0x7b, 0x95, 0x92, 0x3c, 0xa3, 0x94, 0x07, 0x27, 0x96, + 0x74, 0x5b, 0xf9, 0x3d, 0xd0, 0x02, 0x10, 0x06, 0x8b, 0xfa, 0xfd, 0x70, + 0xb9, 0xa1, 0xcc, 0x42, 0xf2, 0xdb, 0xa0, 0x27, 0x45, 0x88, 0x27 + }; + constexpr const char json_output[] = "{\"ocsp_request\":{\"cert_requests\":[{\"cert_ids\":[{\"hash_algorithm\":{\"algorithm\":\"id-sha1\"},\"issuer_name_hash\":\"33f5aac61d66e7055d03173a4d1f3e187138850d\",\"issuer_key_hash\":\"59a4660652a07b95923ca394072796745bf93dd0\",\"serial_number\":\"068bfafd70b9a1cc42f2dba027458827\"}]}]}}"; + + datum d{ocsp_req}; + // if (output) { d.fprint_hex(output); fputc('\n', output); } + + ocsp::request req{d}; + + output_buffer<2048> buf; + json_object_asn1 o{&buf}; + req.write_json(o); + o.close(); + // buf.write_line(stdout); + if (output) { fprintf(output, "%s\n", json_output); } + + return (buf.memcmp(json_output, strlen(json_output)) == 0); + + } + + }; + +}; // namespace ocsp + +#endif // OCSP_HPP diff --git a/src/libmerc/pkt_proc.cc b/src/libmerc/pkt_proc.cc index 9fbaa118..af873462 100644 --- a/src/libmerc/pkt_proc.cc +++ b/src/libmerc/pkt_proc.cc @@ -14,6 +14,7 @@ #include "pkt_proc.h" #include "utils.h" #include "loopback.hpp" +#include "linux_sll.hpp" // include files needed by stateful_pkt_proc; they provide the // interface to mercury's packet parsing and handling routines @@ -41,8 +42,11 @@ #include "smtp.h" #include "tofsee.hpp" #include "cdp.h" +#include "ldap.hpp" #include "lldp.h" #include "ospf.h" +#include "esp.hpp" +#include "ike.hpp" #include "sctp.h" #include "analysis.h" #include "buffer_stream.h" @@ -94,6 +98,27 @@ struct do_crypto_assessment { return false; } + bool operator()(const tls_server_hello &msg) { + ca->assess(msg, record); + return false; + } + + bool operator()(const tls_server_hello_and_certificate &msg) { + ca->assess(msg, record); + return false; + } + + bool operator()(const dtls_client_hello &msg) { + ca->assess(msg, record); + return false; + } + + bool operator()(const dtls_server_hello &msg) { + ca->assess(msg, record); + return false; + } + + bool operator()(const quic_init &msg) { if (msg.has_tls()) { ca->assess(msg.get_tls_client_hello(), record); @@ -319,6 +344,9 @@ void stateful_pkt_proc::set_tcp_protocol(protocol &x, case tcp_msg_type_socks5_req_resp: x.emplace(pkt); break; + case tcp_msg_type_ldap: + x.emplace(pkt); + break; default: if (is_new && global_vars.output_tcp_initial_data) { x.emplace(pkt); @@ -415,6 +443,9 @@ void stateful_pkt_proc::set_udp_protocol(protocol &x, case udp_msg_type_wireguard: x.emplace(pkt); break; + case udp_msg_type_esp: + x.emplace(pkt); + break; case udp_msg_type_ssdp: x.emplace(pkt); break; @@ -539,6 +570,12 @@ bool stateful_pkt_proc::process_udp_data (protocol &x, struct timespec *ts, struct tcp_reassembler *reassembler) { + // no reassembly for ESP or IKE + // + if (std::holds_alternative(x) or std::holds_alternative(x)) { + return true; + } + // No reassembler : call set_tcp_protocol on every data pkt if (!reassembler || !global_vars.reassembly) { bool is_new = false; @@ -691,6 +728,9 @@ size_t stateful_pkt_proc::ip_write_json(void *buffer, } else if (selector.ospf() && transport_proto == ip::protocol::ospfigp) { x.emplace(pkt); + } else if (selector.ipsec() && transport_proto == ip::protocol::esp) { + x.emplace(pkt); + } else if (selector.sctp() && transport_proto == ip::protocol::sctp) { x.emplace(pkt); @@ -768,6 +808,14 @@ size_t stateful_pkt_proc::ip_write_json(void *buffer, default: break; } + } else if (selector.ipsec() and ports.either_matches(ike::default_port)) { + x.emplace(pkt); + } else if (selector.ipsec() and ports.either_matches_any(esp::default_port)) { // esp or ike over udp + if (lookahead non_esp{pkt}) { + x.emplace(pkt); + } else { + x.emplace(pkt); + } } if (!process_udp_data(x, pkt, udp_pkt, k, ts, reassembler)) { @@ -799,9 +847,6 @@ size_t stateful_pkt_proc::ip_write_json(void *buffer, // if (malware_prob_threshold > -1.0 && (!output_analysis || analysis.result.malware_prob < malware_prob_threshold)) { return 0; } // TODO - expose hidden command struct json_object record{&buf}; - if (global_vars.metadata_output) { - ip_pkt.write_json(record); // write out ip{version,ttl,id} - } if (analysis.fp.get_type() != fingerprint_type_unknown) { analysis.fp.write(record); } @@ -824,6 +869,10 @@ size_t stateful_pkt_proc::ip_write_json(void *buffer, reassembler->write_json(record); } + if (global_vars.metadata_output) { + ip_pkt.write_json(record); // write out ip{version,ttl,id} + } + write_flow_key(record, k); record.print_key_timestamp("event_start", ts); record.close(); @@ -924,6 +973,9 @@ size_t stateful_pkt_proc::write_json(void *buffer, break; case LINKTYPE_RAW: break; + case LINKTYPE_LINUX_SLL: + linux_sll::skip_to_ip(pkt); + break; default: break; } diff --git a/src/libmerc/pkt_proc.h b/src/libmerc/pkt_proc.h index ff53fdd6..8735d516 100644 --- a/src/libmerc/pkt_proc.h +++ b/src/libmerc/pkt_proc.h @@ -37,7 +37,8 @@ enum linktype : uint16_t { LINKTYPE_NULL = 0, // BSD loopback encapsulation LINKTYPE_ETHERNET = 1, // Ethernet LINKTYPE_PPP = 9, // PPP - LINKTYPE_RAW = 101 // Raw IP; begins with IPv4 or IPv6 header + LINKTYPE_RAW = 101, // Raw IP; begins with IPv4 or IPv6 header + LINKTYPE_LINUX_SLL = 113, // Linux "cooked" capture encapsualtion }; @@ -104,7 +105,7 @@ struct stateful_pkt_proc { class traffic_selector &selector; quic_crypto_engine quic_crypto; struct tcp_reassembler *reassembler_ptr = nullptr; - crypto_policy::assessor *crypto_policy = nullptr; + const crypto_policy::assessor *crypto_policy = nullptr; explicit stateful_pkt_proc(mercury_context mc, size_t prealloc_size=0) : ip_flow_table{prealloc_size}, @@ -121,10 +122,12 @@ struct stateful_pkt_proc { reassembler_ptr{(global_vars.reassembly) ? (new tcp_reassembler) : nullptr} { - constexpr bool DO_CRYPTO_ASSESSMENT = false; - if (DO_CRYPTO_ASSESSMENT) { + if (global_vars.crypto_assess_policy.length() > 0) { // set crypto assessment policy - crypto_policy = new crypto_policy::quantum_safe; + crypto_policy = crypto_policy::assessor::create(global_vars.crypto_assess_policy); + if (crypto_policy == nullptr) { + throw std::runtime_error("crypto policy assessor could not be initialized"); + } } // set config and classifier to (refer to) context m diff --git a/src/libmerc/pkt_proc_util.h b/src/libmerc/pkt_proc_util.h index 28279473..94c847bb 100644 --- a/src/libmerc/pkt_proc_util.h +++ b/src/libmerc/pkt_proc_util.h @@ -54,8 +54,7 @@ struct wireguard_handshake_init; struct dns_packet; struct mdns_packet; class dtls_client_hello; -class -dtls_server_hello; +class dtls_server_hello; struct dhcp_discover; class ssdp; //class stun::message; @@ -67,6 +66,9 @@ struct tcp_packet; class iec60870_5_104; class openvpn_tcp; class mysql_server_greet; +namespace ldap { class message; } +class esp; +namespace ike { class packet; } using protocol = std::variant; // class unknown_initial_packet represents the initial data field of a diff --git a/src/libmerc/proto_identify.h b/src/libmerc/proto_identify.h index 0038ad1c..942c552e 100644 --- a/src/libmerc/proto_identify.h +++ b/src/libmerc/proto_identify.h @@ -68,6 +68,7 @@ enum tcp_msg_type { tcp_msg_type_socks4, tcp_msg_type_socks5_hello, tcp_msg_type_socks5_req_resp, + tcp_msg_type_ldap, }; enum udp_msg_type { @@ -85,6 +86,8 @@ enum udp_msg_type { udp_msg_type_nbds, udp_msg_type_dht, udp_msg_type_lsd, + udp_msg_type_esp, + }; template @@ -230,6 +233,8 @@ class traffic_selector { bool select_nbds; bool select_nbss; bool select_openvpn_tcp; + bool select_ldap; + bool select_ipsec{false}; public: @@ -249,6 +254,8 @@ class traffic_selector { bool icmp() const { return select_icmp; } + bool ldap() const { return select_ldap; } + bool lldp() const { return select_lldp; } bool ospf() const { return select_ospf; } @@ -263,6 +270,8 @@ class traffic_selector { bool openvpn_tcp() const { return select_openvpn_tcp; } + bool ipsec() const { return select_ipsec; } + void disable_all() { tcp.disable_all(); tcp4.disable_all(); @@ -344,6 +353,9 @@ class traffic_selector { if (protocols["tcp"] || protocols["all"]) { select_tcp_syn = true; } + if (protocols["ldap"] || protocols["all"]) { + select_ldap = true; + } if (protocols["tcp.message"] || protocols["all"]) { // select_tcp_syn = 0; // tcp_message_filter_cutoff = 1; @@ -431,6 +443,9 @@ class traffic_selector { if (protocols["openvpn_tcp"] || protocols["all"]) { select_openvpn_tcp = true; } + if (protocols["ipsec"] || protocols["all"]) { + select_ipsec = true; + } if (protocols["bittorrent"] || protocols["all"]) { udp.add_protocol(bittorrent_dht::matcher, udp_msg_type_dht); @@ -510,6 +525,10 @@ class traffic_selector { return tcp_msg_type_unknown; } + if (ldap() and ((tcp_pkt->header->src_port == hton(389)) or (tcp_pkt->header->dst_port == hton(389)))) { + return tcp_msg_type_ldap; + } + if (nbss() and (tcp_pkt->header->src_port == hton(139) or tcp_pkt->header->dst_port == hton(139))) { return tcp_msg_type_nbss; } diff --git a/src/libmerc/rdp.hpp b/src/libmerc/rdp.hpp new file mode 100644 index 00000000..fa9cb123 --- /dev/null +++ b/src/libmerc/rdp.hpp @@ -0,0 +1,122 @@ +// rdp.hpp +// +// microsoft remote desktop protocol + +#ifndef RDP_HPP +#define RDP_HPP + +#include "datum.h" + +namespace rdp { + + static constexpr default_port = hton(3389); + + // A TPKT consists of two parts: a packet-header and a TPDU. The + // format of the header is constant regardless of the type of packet. + // The format of the packet-header is as follows: + // + // 0 1 2 3 + // 0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1 + // +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+ + // | vrsn | reserved | packet length | + // +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+ + // + // where: + // + // vrsn 8 bits + // + // This field is always 3 for the version of the protocol described in + // this memo. + // + // packet length 16 bits (min=7, max=65535) + // + class tpkt_header { + literal_byte<0x03, 0x00> vrsn_reserved; + encoded packet_length; + + public: + + tpkt_header(datum &d) : + vrsn_reserved{d}, + packet_length{d} + { } + + }; + + + // ISO 8073 Connection-Oriented Transport Protocol (COTP) + // Connection Request TPDU (following RFC 905, Section 13.3) + // + // 1 2 3 4 5 6 7 8 p p+1...end + // +--+------+---------+---------+---+---+------+-------+---------+ + // |LI|CR CDT| DST - REF |SRC-REF|CLASS |VARIAB.|USER | + // | |1110 |0000 0000|0000 0000| | |OPTION|PART |DATA | + // +--+------+---------+---------+---+---+------+-------+---------+ + // + class cotp_connection_request { + encoded length; + literal_byte<0b11100000> cr_cdt; + literal_byte<0x00, 0x00> dst_ref; + encoded src_ref; + encoded class_option; + + public: + + cotp_connection_request(datum &d) : + length{d}, + cr_cdt{d}, + dst_ref{d}, + src_ref{d}, + class_option{d} + // + // variable part not implemented yet + // + { } + + }; + + // Client X.224 Connection Request PDU (following Remote Desktop + // Protocol: Basic Connectivity and Graphics Remoting + // [MS-RDPBCGR], Section 2.2.1.1) + // + // cookie (variable): An optional and variable-length ANSI + // character string terminated by a 0x0D0A two-byte sequence. This + // text string MUST be "Cookie: mstshash=IDENTIFIER", where + // IDENTIFIER is an ANSI character string (an example cookie + // string is shown in section 4.1.1). The length of the entire + // cookie string and CR+LF sequence is included in the X.224 + // Connection Request Length Indicator field. This field MUST NOT + // be present if the routingToken field is present. + // + // rdpNegReq (8 bytes): An optional RDP Negotiation Request + // (section 2.2.1.1.1) structure. The length of this field is + // included in the X.224 Connection Request Length Indicator + // field. + // + // rdpCorrelationInfo (36 bytes): An optional Correlation Info + // (section 2.2.1.1.2) structure. The length of this field is + // included in the X.224 Connection Request Length Indicator + // field. This field MUST be present if the + // CORRELATION_INFO_PRESENT (0x08) flag is set in the flags field + // of the RDP Negotiation Request structure, encapsulated within + // the optional rdpNegReq field. If the CORRELATION_INFO_PRESENT + // (0x08) flag is not set, then this field MUST NOT be present. + // + class connection_request_pdu { + tpkt_header tpkt; + cotp_connection_request cotp; + + // optional fields not yet implemented + + public: + + connection_request_pdu(datum &d) : + tpkt{d}, + cotp{d} + { } + + }; + +} + +#endif // RDP_HPP diff --git a/src/libmerc/stun.h b/src/libmerc/stun.h index 79423f89..e25f442d 100644 --- a/src/libmerc/stun.h +++ b/src/libmerc/stun.h @@ -295,9 +295,9 @@ namespace stun { ; } if (msg_type == nullptr) { - o.print_key_unknown_code("class", message_type); + o.print_key_unknown_code("message_type", message_type); } else { - o.print_key_string("class", msg_type); + o.print_key_string("message_type", msg_type); } } }; diff --git a/src/libmerc/tls.h b/src/libmerc/tls.h index 2f40fac0..afa8728b 100644 --- a/src/libmerc/tls.h +++ b/src/libmerc/tls.h @@ -537,7 +537,7 @@ class tls_server_hello_and_certificate : public base_protocol { } } - bool is_not_empty() { + bool is_not_empty() const { return hello.is_not_empty() || certificate.is_not_empty(); } @@ -585,6 +585,7 @@ class tls_server_hello_and_certificate : public base_protocol { } } + const tls_server_hello & get_server_hello() const { return hello; } }; diff --git a/src/libmerc/tls_extensions.hpp b/src/libmerc/tls_extensions.hpp new file mode 100644 index 00000000..d7799076 --- /dev/null +++ b/src/libmerc/tls_extensions.hpp @@ -0,0 +1,169 @@ +// tls_extensions.hpp +// +// this file was autogenerated at 2024-11-19T22:08:46Z +// you should edit the source file(s) instead of this one +// +// source files: +// /home/mcgrew/macos/mcgrew/Downloads/tls-extensiontype-values-1.csv +// + +#ifndef TLS_EXTENSIONS_HPP +#define TLS_EXTENSIONS_HPP + +#include "datum.h" + +namespace tls { + +template +class extensions : public encoded { + static_assert(std::is_unsigned_v, "T must be an unsigned integer"); +public: + void write_json(json_object &o) const { + const char *name = get_name(); + if (name == nullptr) { + o.print_key_unknown_code("extensions", encoded::value()); + } else { + o.print_key_string("extensions", name); + } + } + enum code { + server_name = 0, + max_fragment_length = 1, + client_certificate_url = 2, + trusted_ca_keys = 3, + truncated_hmac = 4, + status_request = 5, + user_mapping = 6, + client_authz = 7, + server_authz = 8, + cert_type = 9, + supported_groups = 10, + ec_point_formats = 11, + srp = 12, + signature_algorithms = 13, + use_srtp = 14, + heartbeat = 15, + application_layer_protocol_negotiation = 16, + status_request_v2 = 17, + signed_certificate_timestamp = 18, + client_certificate_type = 19, + server_certificate_type = 20, + padding = 21, + encrypt_then_mac = 22, + extended_master_secret = 23, + token_binding = 24, + cached_info = 25, + tls_lts = 26, + compress_certificate = 27, + record_size_limit = 28, + pwd_protect = 29, + pwd_clear = 30, + password_salt = 31, + ticket_pinning = 32, + tls_cert_with_extern_psk = 33, + delegated_credential = 34, + session_ticket = 35, + TLMSP = 36, + TLMSP_proxying = 37, + TLMSP_delegate = 38, + supported_ekt_ciphers = 39, + pre_shared_key = 41, + early_data = 42, + supported_versions = 43, + cookie = 44, + psk_key_exchange_modes = 45, + certificate_authorities = 47, + oid_filters = 48, + post_handshake_auth = 49, + signature_algorithms_cert = 50, + key_share = 51, + transparency_info = 52, + connection_id_deprecated = 53, + connection_id = 54, + external_id_hash = 55, + external_session_id = 56, + quic_transport_parameters = 57, + ticket_request = 58, + dnssec_chain = 59, + sequence_number_encryption_algorithms = 60, + rrc = 61, + ech_outer_extensions = 64768, + encrypted_client_hello = 65037, + renegotiation_info = 65281, + }; + const char *get_name() const { + switch(encoded::value()) { + case server_name: return "server_name"; + case max_fragment_length: return "max_fragment_length"; + case client_certificate_url: return "client_certificate_url"; + case trusted_ca_keys: return "trusted_ca_keys"; + case truncated_hmac: return "truncated_hmac"; + case status_request: return "status_request"; + case user_mapping: return "user_mapping"; + case client_authz: return "client_authz"; + case server_authz: return "server_authz"; + case cert_type: return "cert_type"; + case supported_groups: return "supported_groups"; + case ec_point_formats: return "ec_point_formats"; + case srp: return "srp"; + case signature_algorithms: return "signature_algorithms"; + case use_srtp: return "use_srtp"; + case heartbeat: return "heartbeat"; + case application_layer_protocol_negotiation: return "application_layer_protocol_negotiation"; + case status_request_v2: return "status_request_v2"; + case signed_certificate_timestamp: return "signed_certificate_timestamp"; + case client_certificate_type: return "client_certificate_type"; + case server_certificate_type: return "server_certificate_type"; + case padding: return "padding"; + case encrypt_then_mac: return "encrypt_then_mac"; + case extended_master_secret: return "extended_master_secret"; + case token_binding: return "token_binding"; + case cached_info: return "cached_info"; + case tls_lts: return "tls_lts"; + case compress_certificate: return "compress_certificate"; + case record_size_limit: return "record_size_limit"; + case pwd_protect: return "pwd_protect"; + case pwd_clear: return "pwd_clear"; + case password_salt: return "password_salt"; + case ticket_pinning: return "ticket_pinning"; + case tls_cert_with_extern_psk: return "tls_cert_with_extern_psk"; + case delegated_credential: return "delegated_credential"; + case session_ticket: return "session_ticket"; + case TLMSP: return "TLMSP"; + case TLMSP_proxying: return "TLMSP_proxying"; + case TLMSP_delegate: return "TLMSP_delegate"; + case supported_ekt_ciphers: return "supported_ekt_ciphers"; + case pre_shared_key: return "pre_shared_key"; + case early_data: return "early_data"; + case supported_versions: return "supported_versions"; + case cookie: return "cookie"; + case psk_key_exchange_modes: return "psk_key_exchange_modes"; + case certificate_authorities: return "certificate_authorities"; + case oid_filters: return "oid_filters"; + case post_handshake_auth: return "post_handshake_auth"; + case signature_algorithms_cert: return "signature_algorithms_cert"; + case key_share: return "key_share"; + case transparency_info: return "transparency_info"; + case connection_id: return "connection_id"; + case connection_id: return "connection_id"; + case external_id_hash: return "external_id_hash"; + case external_session_id: return "external_session_id"; + case quic_transport_parameters: return "quic_transport_parameters"; + case ticket_request: return "ticket_request"; + case dnssec_chain: return "dnssec_chain"; + case sequence_number_encryption_algorithms: return "sequence_number_encryption_algorithms"; + case rrc: return "rrc"; + case ech_outer_extensions: return "ech_outer_extensions"; + case encrypted_client_hello: return "encrypted_client_hello"; + case renegotiation_info: return "renegotiation_info"; + default: + ; + } + return nullptr; + } +}; + +} // namespace tls + +#endif // TLS_EXTENSIONS_HPP + diff --git a/src/libmerc/tls_parameters.h b/src/libmerc/tls_parameters.h deleted file mode 100644 index cfd3ba58..00000000 --- a/src/libmerc/tls_parameters.h +++ /dev/null @@ -1,522 +0,0 @@ - -namespace tls { - enum cipher_suite : uint16_t { - TLS_NULL_WITH_NULL_NULL = 0x0000, - TLS_RSA_WITH_NULL_MD5 = 0x0001, - TLS_RSA_WITH_NULL_SHA = 0x0002, - TLS_RSA_EXPORT_WITH_RC4_40_MD5 = 0x0003, - TLS_RSA_WITH_RC4_128_MD5 = 0x0004, - TLS_RSA_WITH_RC4_128_SHA = 0x0005, - TLS_RSA_EXPORT_WITH_RC2_CBC_40_MD5 = 0x0006, - TLS_RSA_WITH_IDEA_CBC_SHA = 0x0007, - TLS_RSA_EXPORT_WITH_DES40_CBC_SHA = 0x0008, - TLS_RSA_WITH_DES_CBC_SHA = 0x0009, - TLS_RSA_WITH_3DES_EDE_CBC_SHA = 0x000a, - TLS_DH_DSS_EXPORT_WITH_DES40_CBC_SHA = 0x000b, - TLS_DH_DSS_WITH_DES_CBC_SHA = 0x000c, - TLS_DH_DSS_WITH_3DES_EDE_CBC_SHA = 0x000d, - TLS_DH_RSA_EXPORT_WITH_DES40_CBC_SHA = 0x000e, - TLS_DH_RSA_WITH_DES_CBC_SHA = 0x000f, - TLS_DH_RSA_WITH_3DES_EDE_CBC_SHA = 0x0010, - TLS_DHE_DSS_EXPORT_WITH_DES40_CBC_SHA = 0x0011, - TLS_DHE_DSS_WITH_DES_CBC_SHA = 0x0012, - TLS_DHE_DSS_WITH_3DES_EDE_CBC_SHA = 0x0013, - TLS_DHE_RSA_EXPORT_WITH_DES40_CBC_SHA = 0x0014, - TLS_DHE_RSA_WITH_DES_CBC_SHA = 0x0015, - TLS_DHE_RSA_WITH_3DES_EDE_CBC_SHA = 0x0016, - TLS_DH_anon_EXPORT_WITH_RC4_40_MD5 = 0x0017, - TLS_DH_anon_WITH_RC4_128_MD5 = 0x0018, - TLS_DH_anon_EXPORT_WITH_DES40_CBC_SHA = 0x0019, - TLS_DH_anon_WITH_DES_CBC_SHA = 0x001a, - TLS_DH_anon_WITH_3DES_EDE_CBC_SHA = 0x001b, - TLS_KRB5_WITH_DES_CBC_SHA = 0x001e, - TLS_KRB5_WITH_3DES_EDE_CBC_SHA = 0x001f, - TLS_KRB5_WITH_RC4_128_SHA = 0x0020, - TLS_KRB5_WITH_IDEA_CBC_SHA = 0x0021, - TLS_KRB5_WITH_DES_CBC_MD5 = 0x0022, - TLS_KRB5_WITH_3DES_EDE_CBC_MD5 = 0x0023, - TLS_KRB5_WITH_RC4_128_MD5 = 0x0024, - TLS_KRB5_WITH_IDEA_CBC_MD5 = 0x0025, - TLS_KRB5_EXPORT_WITH_DES_CBC_40_SHA = 0x0026, - TLS_KRB5_EXPORT_WITH_RC2_CBC_40_SHA = 0x0027, - TLS_KRB5_EXPORT_WITH_RC4_40_SHA = 0x0028, - TLS_KRB5_EXPORT_WITH_DES_CBC_40_MD5 = 0x0029, - TLS_KRB5_EXPORT_WITH_RC2_CBC_40_MD5 = 0x002a, - TLS_KRB5_EXPORT_WITH_RC4_40_MD5 = 0x002b, - TLS_PSK_WITH_NULL_SHA = 0x002c, - TLS_DHE_PSK_WITH_NULL_SHA = 0x002d, - TLS_RSA_PSK_WITH_NULL_SHA = 0x002e, - TLS_RSA_WITH_AES_128_CBC_SHA = 0x002f, - TLS_DH_DSS_WITH_AES_128_CBC_SHA = 0x0030, - TLS_DH_RSA_WITH_AES_128_CBC_SHA = 0x0031, - TLS_DHE_DSS_WITH_AES_128_CBC_SHA = 0x0032, - TLS_DHE_RSA_WITH_AES_128_CBC_SHA = 0x0033, - TLS_DH_anon_WITH_AES_128_CBC_SHA = 0x0034, - TLS_RSA_WITH_AES_256_CBC_SHA = 0x0035, - TLS_DH_DSS_WITH_AES_256_CBC_SHA = 0x0036, - TLS_DH_RSA_WITH_AES_256_CBC_SHA = 0x0037, - TLS_DHE_DSS_WITH_AES_256_CBC_SHA = 0x0038, - TLS_DHE_RSA_WITH_AES_256_CBC_SHA = 0x0039, - TLS_DH_anon_WITH_AES_256_CBC_SHA = 0x003a, - TLS_RSA_WITH_NULL_SHA256 = 0x003b, - TLS_RSA_WITH_AES_128_CBC_SHA256 = 0x003c, - TLS_RSA_WITH_AES_256_CBC_SHA256 = 0x003d, - TLS_DH_DSS_WITH_AES_128_CBC_SHA256 = 0x003e, - TLS_DH_RSA_WITH_AES_128_CBC_SHA256 = 0x003f, - TLS_DHE_DSS_WITH_AES_128_CBC_SHA256 = 0x0040, - TLS_RSA_WITH_CAMELLIA_128_CBC_SHA = 0x0041, - TLS_DH_DSS_WITH_CAMELLIA_128_CBC_SHA = 0x0042, - TLS_DH_RSA_WITH_CAMELLIA_128_CBC_SHA = 0x0043, - TLS_DHE_DSS_WITH_CAMELLIA_128_CBC_SHA = 0x0044, - TLS_DHE_RSA_WITH_CAMELLIA_128_CBC_SHA = 0x0045, - TLS_DH_anon_WITH_CAMELLIA_128_CBC_SHA = 0x0046, - TLS_DHE_RSA_WITH_AES_128_CBC_SHA256 = 0x0067, - TLS_DH_DSS_WITH_AES_256_CBC_SHA256 = 0x0068, - TLS_DH_RSA_WITH_AES_256_CBC_SHA256 = 0x0069, - TLS_DHE_DSS_WITH_AES_256_CBC_SHA256 = 0x006a, - TLS_DHE_RSA_WITH_AES_256_CBC_SHA256 = 0x006b, - TLS_DH_anon_WITH_AES_128_CBC_SHA256 = 0x006c, - TLS_DH_anon_WITH_AES_256_CBC_SHA256 = 0x006d, - TLS_RSA_WITH_CAMELLIA_256_CBC_SHA = 0x0084, - TLS_DH_DSS_WITH_CAMELLIA_256_CBC_SHA = 0x0085, - TLS_DH_RSA_WITH_CAMELLIA_256_CBC_SHA = 0x0086, - TLS_DHE_DSS_WITH_CAMELLIA_256_CBC_SHA = 0x0087, - TLS_DHE_RSA_WITH_CAMELLIA_256_CBC_SHA = 0x0088, - TLS_DH_anon_WITH_CAMELLIA_256_CBC_SHA = 0x0089, - TLS_PSK_WITH_RC4_128_SHA = 0x008a, - TLS_PSK_WITH_3DES_EDE_CBC_SHA = 0x008b, - TLS_PSK_WITH_AES_128_CBC_SHA = 0x008c, - TLS_PSK_WITH_AES_256_CBC_SHA = 0x008d, - TLS_DHE_PSK_WITH_RC4_128_SHA = 0x008e, - TLS_DHE_PSK_WITH_3DES_EDE_CBC_SHA = 0x008f, - TLS_DHE_PSK_WITH_AES_128_CBC_SHA = 0x0090, - TLS_DHE_PSK_WITH_AES_256_CBC_SHA = 0x0091, - TLS_RSA_PSK_WITH_RC4_128_SHA = 0x0092, - TLS_RSA_PSK_WITH_3DES_EDE_CBC_SHA = 0x0093, - TLS_RSA_PSK_WITH_AES_128_CBC_SHA = 0x0094, - TLS_RSA_PSK_WITH_AES_256_CBC_SHA = 0x0095, - TLS_RSA_WITH_SEED_CBC_SHA = 0x0096, - TLS_DH_DSS_WITH_SEED_CBC_SHA = 0x0097, - TLS_DH_RSA_WITH_SEED_CBC_SHA = 0x0098, - TLS_DHE_DSS_WITH_SEED_CBC_SHA = 0x0099, - TLS_DHE_RSA_WITH_SEED_CBC_SHA = 0x009a, - TLS_DH_anon_WITH_SEED_CBC_SHA = 0x009b, - TLS_RSA_WITH_AES_128_GCM_SHA256 = 0x009c, - TLS_RSA_WITH_AES_256_GCM_SHA384 = 0x009d, - TLS_DHE_RSA_WITH_AES_128_GCM_SHA256 = 0x009e, - TLS_DHE_RSA_WITH_AES_256_GCM_SHA384 = 0x009f, - TLS_DH_RSA_WITH_AES_128_GCM_SHA256 = 0x00a0, - TLS_DH_RSA_WITH_AES_256_GCM_SHA384 = 0x00a1, - TLS_DHE_DSS_WITH_AES_128_GCM_SHA256 = 0x00a2, - TLS_DHE_DSS_WITH_AES_256_GCM_SHA384 = 0x00a3, - TLS_DH_DSS_WITH_AES_128_GCM_SHA256 = 0x00a4, - TLS_DH_DSS_WITH_AES_256_GCM_SHA384 = 0x00a5, - TLS_DH_anon_WITH_AES_128_GCM_SHA256 = 0x00a6, - TLS_DH_anon_WITH_AES_256_GCM_SHA384 = 0x00a7, - TLS_PSK_WITH_AES_128_GCM_SHA256 = 0x00a8, - TLS_PSK_WITH_AES_256_GCM_SHA384 = 0x00a9, - TLS_DHE_PSK_WITH_AES_128_GCM_SHA256 = 0x00aa, - TLS_DHE_PSK_WITH_AES_256_GCM_SHA384 = 0x00ab, - TLS_RSA_PSK_WITH_AES_128_GCM_SHA256 = 0x00ac, - TLS_RSA_PSK_WITH_AES_256_GCM_SHA384 = 0x00ad, - TLS_PSK_WITH_AES_128_CBC_SHA256 = 0x00ae, - TLS_PSK_WITH_AES_256_CBC_SHA384 = 0x00af, - TLS_PSK_WITH_NULL_SHA256 = 0x00b0, - TLS_PSK_WITH_NULL_SHA384 = 0x00b1, - TLS_DHE_PSK_WITH_AES_128_CBC_SHA256 = 0x00b2, - TLS_DHE_PSK_WITH_AES_256_CBC_SHA384 = 0x00b3, - TLS_DHE_PSK_WITH_NULL_SHA256 = 0x00b4, - TLS_DHE_PSK_WITH_NULL_SHA384 = 0x00b5, - TLS_RSA_PSK_WITH_AES_128_CBC_SHA256 = 0x00b6, - TLS_RSA_PSK_WITH_AES_256_CBC_SHA384 = 0x00b7, - TLS_RSA_PSK_WITH_NULL_SHA256 = 0x00b8, - TLS_RSA_PSK_WITH_NULL_SHA384 = 0x00b9, - TLS_RSA_WITH_CAMELLIA_128_CBC_SHA256 = 0x00ba, - TLS_DH_DSS_WITH_CAMELLIA_128_CBC_SHA256 = 0x00bb, - TLS_DH_RSA_WITH_CAMELLIA_128_CBC_SHA256 = 0x00bc, - TLS_DHE_DSS_WITH_CAMELLIA_128_CBC_SHA256 = 0x00bd, - TLS_DHE_RSA_WITH_CAMELLIA_128_CBC_SHA256 = 0x00be, - TLS_DH_anon_WITH_CAMELLIA_128_CBC_SHA256 = 0x00bf, - TLS_RSA_WITH_CAMELLIA_256_CBC_SHA256 = 0x00c0, - TLS_DH_DSS_WITH_CAMELLIA_256_CBC_SHA256 = 0x00c1, - TLS_DH_RSA_WITH_CAMELLIA_256_CBC_SHA256 = 0x00c2, - TLS_DHE_DSS_WITH_CAMELLIA_256_CBC_SHA256 = 0x00c3, - TLS_DHE_RSA_WITH_CAMELLIA_256_CBC_SHA256 = 0x00c4, - TLS_DH_anon_WITH_CAMELLIA_256_CBC_SHA256 = 0x00c5, - TLS_SM4_GCM_SM3 = 0x00c6, - TLS_SM4_CCM_SM3 = 0x00c7, - TLS_EMPTY_RENEGOTIATION_INFO_SCSV = 0x00ff, - TLS_AES_128_GCM_SHA256 = 0x1301, - TLS_AES_256_GCM_SHA384 = 0x1302, - TLS_CHACHA20_POLY1305_SHA256 = 0x1303, - TLS_AES_128_CCM_SHA256 = 0x1304, - TLS_AES_128_CCM_8_SHA256 = 0x1305, - TLS_CECPQ1_RSA_WITH_CHACHA20_POLY1305_SHA256 = 0x16B7, // experimental - TLS_CECPQ1_ECDSA_WITH_CHACHA20_POLY1305_SHA256 = 0x16B8, // experimental - TLS_CECPQ1_RSA_WITH_AES_256_GCM_SHA384 = 0x16B9, // experimental - TLS_CECPQ1_ECDSA_WITH_AES_256_GCM_SHA384 = 0x16BA, // experimental - TLS_FALLBACK_SCSV = 0x5600, - TLS_ECDH_ECDSA_WITH_NULL_SHA = 0xc001, - TLS_ECDH_ECDSA_WITH_RC4_128_SHA = 0xc002, - TLS_ECDH_ECDSA_WITH_3DES_EDE_CBC_SHA = 0xc003, - TLS_ECDH_ECDSA_WITH_AES_128_CBC_SHA = 0xc004, - TLS_ECDH_ECDSA_WITH_AES_256_CBC_SHA = 0xc005, - TLS_ECDHE_ECDSA_WITH_NULL_SHA = 0xc006, - TLS_ECDHE_ECDSA_WITH_RC4_128_SHA = 0xc007, - TLS_ECDHE_ECDSA_WITH_3DES_EDE_CBC_SHA = 0xc008, - TLS_ECDHE_ECDSA_WITH_AES_128_CBC_SHA = 0xc009, - TLS_ECDHE_ECDSA_WITH_AES_256_CBC_SHA = 0xc00a, - TLS_ECDH_RSA_WITH_NULL_SHA = 0xc00b, - TLS_ECDH_RSA_WITH_RC4_128_SHA = 0xc00c, - TLS_ECDH_RSA_WITH_3DES_EDE_CBC_SHA = 0xc00d, - TLS_ECDH_RSA_WITH_AES_128_CBC_SHA = 0xc00e, - TLS_ECDH_RSA_WITH_AES_256_CBC_SHA = 0xc00f, - TLS_ECDHE_RSA_WITH_NULL_SHA = 0xc010, - TLS_ECDHE_RSA_WITH_RC4_128_SHA = 0xc011, - TLS_ECDHE_RSA_WITH_3DES_EDE_CBC_SHA = 0xc012, - TLS_ECDHE_RSA_WITH_AES_128_CBC_SHA = 0xc013, - TLS_ECDHE_RSA_WITH_AES_256_CBC_SHA = 0xc014, - TLS_ECDH_anon_WITH_NULL_SHA = 0xc015, - TLS_ECDH_anon_WITH_RC4_128_SHA = 0xc016, - TLS_ECDH_anon_WITH_3DES_EDE_CBC_SHA = 0xc017, - TLS_ECDH_anon_WITH_AES_128_CBC_SHA = 0xc018, - TLS_ECDH_anon_WITH_AES_256_CBC_SHA = 0xc019, - TLS_SRP_SHA_WITH_3DES_EDE_CBC_SHA = 0xc01a, - TLS_SRP_SHA_RSA_WITH_3DES_EDE_CBC_SHA = 0xc01b, - TLS_SRP_SHA_DSS_WITH_3DES_EDE_CBC_SHA = 0xc01c, - TLS_SRP_SHA_WITH_AES_128_CBC_SHA = 0xc01d, - TLS_SRP_SHA_RSA_WITH_AES_128_CBC_SHA = 0xc01e, - TLS_SRP_SHA_DSS_WITH_AES_128_CBC_SHA = 0xc01f, - TLS_SRP_SHA_WITH_AES_256_CBC_SHA = 0xc020, - TLS_SRP_SHA_RSA_WITH_AES_256_CBC_SHA = 0xc021, - TLS_SRP_SHA_DSS_WITH_AES_256_CBC_SHA = 0xc022, - TLS_ECDHE_ECDSA_WITH_AES_128_CBC_SHA256 = 0xc023, - TLS_ECDHE_ECDSA_WITH_AES_256_CBC_SHA384 = 0xc024, - TLS_ECDH_ECDSA_WITH_AES_128_CBC_SHA256 = 0xc025, - TLS_ECDH_ECDSA_WITH_AES_256_CBC_SHA384 = 0xc026, - TLS_ECDHE_RSA_WITH_AES_128_CBC_SHA256 = 0xc027, - TLS_ECDHE_RSA_WITH_AES_256_CBC_SHA384 = 0xc028, - TLS_ECDH_RSA_WITH_AES_128_CBC_SHA256 = 0xc029, - TLS_ECDH_RSA_WITH_AES_256_CBC_SHA384 = 0xc02a, - TLS_ECDHE_ECDSA_WITH_AES_128_GCM_SHA256 = 0xc02b, - TLS_ECDHE_ECDSA_WITH_AES_256_GCM_SHA384 = 0xc02c, - TLS_ECDH_ECDSA_WITH_AES_128_GCM_SHA256 = 0xc02d, - TLS_ECDH_ECDSA_WITH_AES_256_GCM_SHA384 = 0xc02e, - TLS_ECDHE_RSA_WITH_AES_128_GCM_SHA256 = 0xc02f, - TLS_ECDHE_RSA_WITH_AES_256_GCM_SHA384 = 0xc030, - TLS_ECDH_RSA_WITH_AES_128_GCM_SHA256 = 0xc031, - TLS_ECDH_RSA_WITH_AES_256_GCM_SHA384 = 0xc032, - TLS_ECDHE_PSK_WITH_RC4_128_SHA = 0xc033, - TLS_ECDHE_PSK_WITH_3DES_EDE_CBC_SHA = 0xc034, - TLS_ECDHE_PSK_WITH_AES_128_CBC_SHA = 0xc035, - TLS_ECDHE_PSK_WITH_AES_256_CBC_SHA = 0xc036, - TLS_ECDHE_PSK_WITH_AES_128_CBC_SHA256 = 0xc037, - TLS_ECDHE_PSK_WITH_AES_256_CBC_SHA384 = 0xc038, - TLS_ECDHE_PSK_WITH_NULL_SHA = 0xc039, - TLS_ECDHE_PSK_WITH_NULL_SHA256 = 0xc03a, - TLS_ECDHE_PSK_WITH_NULL_SHA384 = 0xc03b, - TLS_RSA_WITH_ARIA_128_CBC_SHA256 = 0xc03c, - TLS_RSA_WITH_ARIA_256_CBC_SHA384 = 0xc03d, - TLS_DH_DSS_WITH_ARIA_128_CBC_SHA256 = 0xc03e, - TLS_DH_DSS_WITH_ARIA_256_CBC_SHA384 = 0xc03f, - TLS_DH_RSA_WITH_ARIA_128_CBC_SHA256 = 0xc040, - TLS_DH_RSA_WITH_ARIA_256_CBC_SHA384 = 0xc041, - TLS_DHE_DSS_WITH_ARIA_128_CBC_SHA256 = 0xc042, - TLS_DHE_DSS_WITH_ARIA_256_CBC_SHA384 = 0xc043, - TLS_DHE_RSA_WITH_ARIA_128_CBC_SHA256 = 0xc044, - TLS_DHE_RSA_WITH_ARIA_256_CBC_SHA384 = 0xc045, - TLS_DH_anon_WITH_ARIA_128_CBC_SHA256 = 0xc046, - TLS_DH_anon_WITH_ARIA_256_CBC_SHA384 = 0xc047, - TLS_ECDHE_ECDSA_WITH_ARIA_128_CBC_SHA256 = 0xc048, - TLS_ECDHE_ECDSA_WITH_ARIA_256_CBC_SHA384 = 0xc049, - TLS_ECDH_ECDSA_WITH_ARIA_128_CBC_SHA256 = 0xc04a, - TLS_ECDH_ECDSA_WITH_ARIA_256_CBC_SHA384 = 0xc04b, - TLS_ECDHE_RSA_WITH_ARIA_128_CBC_SHA256 = 0xc04c, - TLS_ECDHE_RSA_WITH_ARIA_256_CBC_SHA384 = 0xc04d, - TLS_ECDH_RSA_WITH_ARIA_128_CBC_SHA256 = 0xc04e, - TLS_ECDH_RSA_WITH_ARIA_256_CBC_SHA384 = 0xc04f, - TLS_RSA_WITH_ARIA_128_GCM_SHA256 = 0xc050, - TLS_RSA_WITH_ARIA_256_GCM_SHA384 = 0xc051, - TLS_DHE_RSA_WITH_ARIA_128_GCM_SHA256 = 0xc052, - TLS_DHE_RSA_WITH_ARIA_256_GCM_SHA384 = 0xc053, - TLS_DH_RSA_WITH_ARIA_128_GCM_SHA256 = 0xc054, - TLS_DH_RSA_WITH_ARIA_256_GCM_SHA384 = 0xc055, - TLS_DHE_DSS_WITH_ARIA_128_GCM_SHA256 = 0xc056, - TLS_DHE_DSS_WITH_ARIA_256_GCM_SHA384 = 0xc057, - TLS_DH_DSS_WITH_ARIA_128_GCM_SHA256 = 0xc058, - TLS_DH_DSS_WITH_ARIA_256_GCM_SHA384 = 0xc059, - TLS_DH_anon_WITH_ARIA_128_GCM_SHA256 = 0xc05a, - TLS_DH_anon_WITH_ARIA_256_GCM_SHA384 = 0xc05b, - TLS_ECDHE_ECDSA_WITH_ARIA_128_GCM_SHA256 = 0xc05c, - TLS_ECDHE_ECDSA_WITH_ARIA_256_GCM_SHA384 = 0xc05d, - TLS_ECDH_ECDSA_WITH_ARIA_128_GCM_SHA256 = 0xc05e, - TLS_ECDH_ECDSA_WITH_ARIA_256_GCM_SHA384 = 0xc05f, - TLS_ECDHE_RSA_WITH_ARIA_128_GCM_SHA256 = 0xc060, - TLS_ECDHE_RSA_WITH_ARIA_256_GCM_SHA384 = 0xc061, - TLS_ECDH_RSA_WITH_ARIA_128_GCM_SHA256 = 0xc062, - TLS_ECDH_RSA_WITH_ARIA_256_GCM_SHA384 = 0xc063, - TLS_PSK_WITH_ARIA_128_CBC_SHA256 = 0xc064, - TLS_PSK_WITH_ARIA_256_CBC_SHA384 = 0xc065, - TLS_DHE_PSK_WITH_ARIA_128_CBC_SHA256 = 0xc066, - TLS_DHE_PSK_WITH_ARIA_256_CBC_SHA384 = 0xc067, - TLS_RSA_PSK_WITH_ARIA_128_CBC_SHA256 = 0xc068, - TLS_RSA_PSK_WITH_ARIA_256_CBC_SHA384 = 0xc069, - TLS_PSK_WITH_ARIA_128_GCM_SHA256 = 0xc06a, - TLS_PSK_WITH_ARIA_256_GCM_SHA384 = 0xc06b, - TLS_DHE_PSK_WITH_ARIA_128_GCM_SHA256 = 0xc06c, - TLS_DHE_PSK_WITH_ARIA_256_GCM_SHA384 = 0xc06d, - TLS_RSA_PSK_WITH_ARIA_128_GCM_SHA256 = 0xc06e, - TLS_RSA_PSK_WITH_ARIA_256_GCM_SHA384 = 0xc06f, - TLS_ECDHE_PSK_WITH_ARIA_128_CBC_SHA256 = 0xc070, - TLS_ECDHE_PSK_WITH_ARIA_256_CBC_SHA384 = 0xc071, - TLS_ECDHE_ECDSA_WITH_CAMELLIA_128_CBC_SHA256 = 0xc072, - TLS_ECDHE_ECDSA_WITH_CAMELLIA_256_CBC_SHA384 = 0xc073, - TLS_ECDH_ECDSA_WITH_CAMELLIA_128_CBC_SHA256 = 0xc074, - TLS_ECDH_ECDSA_WITH_CAMELLIA_256_CBC_SHA384 = 0xc075, - TLS_ECDHE_RSA_WITH_CAMELLIA_128_CBC_SHA256 = 0xc076, - TLS_ECDHE_RSA_WITH_CAMELLIA_256_CBC_SHA384 = 0xc077, - TLS_ECDH_RSA_WITH_CAMELLIA_128_CBC_SHA256 = 0xc078, - TLS_ECDH_RSA_WITH_CAMELLIA_256_CBC_SHA384 = 0xc079, - TLS_RSA_WITH_CAMELLIA_128_GCM_SHA256 = 0xc07a, - TLS_RSA_WITH_CAMELLIA_256_GCM_SHA384 = 0xc07b, - TLS_DHE_RSA_WITH_CAMELLIA_128_GCM_SHA256 = 0xc07c, - TLS_DHE_RSA_WITH_CAMELLIA_256_GCM_SHA384 = 0xc07d, - TLS_DH_RSA_WITH_CAMELLIA_128_GCM_SHA256 = 0xc07e, - TLS_DH_RSA_WITH_CAMELLIA_256_GCM_SHA384 = 0xc07f, - TLS_DHE_DSS_WITH_CAMELLIA_128_GCM_SHA256 = 0xc080, - TLS_DHE_DSS_WITH_CAMELLIA_256_GCM_SHA384 = 0xc081, - TLS_DH_DSS_WITH_CAMELLIA_128_GCM_SHA256 = 0xc082, - TLS_DH_DSS_WITH_CAMELLIA_256_GCM_SHA384 = 0xc083, - TLS_DH_anon_WITH_CAMELLIA_128_GCM_SHA256 = 0xc084, - TLS_DH_anon_WITH_CAMELLIA_256_GCM_SHA384 = 0xc085, - TLS_ECDHE_ECDSA_WITH_CAMELLIA_128_GCM_SHA256 = 0xc086, - TLS_ECDHE_ECDSA_WITH_CAMELLIA_256_GCM_SHA384 = 0xc087, - TLS_ECDH_ECDSA_WITH_CAMELLIA_128_GCM_SHA256 = 0xc088, - TLS_ECDH_ECDSA_WITH_CAMELLIA_256_GCM_SHA384 = 0xc089, - TLS_ECDHE_RSA_WITH_CAMELLIA_128_GCM_SHA256 = 0xc08a, - TLS_ECDHE_RSA_WITH_CAMELLIA_256_GCM_SHA384 = 0xc08b, - TLS_ECDH_RSA_WITH_CAMELLIA_128_GCM_SHA256 = 0xc08c, - TLS_ECDH_RSA_WITH_CAMELLIA_256_GCM_SHA384 = 0xc08d, - TLS_PSK_WITH_CAMELLIA_128_GCM_SHA256 = 0xc08e, - TLS_PSK_WITH_CAMELLIA_256_GCM_SHA384 = 0xc08f, - TLS_DHE_PSK_WITH_CAMELLIA_128_GCM_SHA256 = 0xc090, - TLS_DHE_PSK_WITH_CAMELLIA_256_GCM_SHA384 = 0xc091, - TLS_RSA_PSK_WITH_CAMELLIA_128_GCM_SHA256 = 0xc092, - TLS_RSA_PSK_WITH_CAMELLIA_256_GCM_SHA384 = 0xc093, - TLS_PSK_WITH_CAMELLIA_128_CBC_SHA256 = 0xc094, - TLS_PSK_WITH_CAMELLIA_256_CBC_SHA384 = 0xc095, - TLS_DHE_PSK_WITH_CAMELLIA_128_CBC_SHA256 = 0xc096, - TLS_DHE_PSK_WITH_CAMELLIA_256_CBC_SHA384 = 0xc097, - TLS_RSA_PSK_WITH_CAMELLIA_128_CBC_SHA256 = 0xc098, - TLS_RSA_PSK_WITH_CAMELLIA_256_CBC_SHA384 = 0xc099, - TLS_ECDHE_PSK_WITH_CAMELLIA_128_CBC_SHA256 = 0xc09a, - TLS_ECDHE_PSK_WITH_CAMELLIA_256_CBC_SHA384 = 0xc09b, - TLS_RSA_WITH_AES_128_CCM = 0xc09c, - TLS_RSA_WITH_AES_256_CCM = 0xc09d, - TLS_DHE_RSA_WITH_AES_128_CCM = 0xc09e, - TLS_DHE_RSA_WITH_AES_256_CCM = 0xc09f, - TLS_RSA_WITH_AES_128_CCM_8 = 0xc0a0, - TLS_RSA_WITH_AES_256_CCM_8 = 0xc0a1, - TLS_DHE_RSA_WITH_AES_128_CCM_8 = 0xc0a2, - TLS_DHE_RSA_WITH_AES_256_CCM_8 = 0xc0a3, - TLS_PSK_WITH_AES_128_CCM = 0xc0a4, - TLS_PSK_WITH_AES_256_CCM = 0xc0a5, - TLS_DHE_PSK_WITH_AES_128_CCM = 0xc0a6, - TLS_DHE_PSK_WITH_AES_256_CCM = 0xc0a7, - TLS_PSK_WITH_AES_128_CCM_8 = 0xc0a8, - TLS_PSK_WITH_AES_256_CCM_8 = 0xc0a9, - TLS_PSK_DHE_WITH_AES_128_CCM_8 = 0xc0aa, - TLS_PSK_DHE_WITH_AES_256_CCM_8 = 0xc0ab, - TLS_ECDHE_ECDSA_WITH_AES_128_CCM = 0xc0ac, - TLS_ECDHE_ECDSA_WITH_AES_256_CCM = 0xc0ad, - TLS_ECDHE_ECDSA_WITH_AES_128_CCM_8 = 0xc0ae, - TLS_ECDHE_ECDSA_WITH_AES_256_CCM_8 = 0xc0af, - TLS_ECCPWD_WITH_AES_128_GCM_SHA256 = 0xc0b0, - TLS_ECCPWD_WITH_AES_256_GCM_SHA384 = 0xc0b1, - TLS_ECCPWD_WITH_AES_128_CCM_SHA256 = 0xc0b2, - TLS_ECCPWD_WITH_AES_256_CCM_SHA384 = 0xc0b3, - TLS_SHA256_SHA256 = 0xc0b4, - TLS_SHA384_SHA384 = 0xc0b5, - TLS_GOSTR341112_256_WITH_KUZNYECHIK_CTR_OMAC = 0xc100, - TLS_GOSTR341112_256_WITH_MAGMA_CTR_OMAC = 0xc101, - TLS_GOSTR341112_256_WITH_28147_CNT_IMIT = 0xc102, - TLS_GOSTR341112_256_WITH_KUZNYECHIK_MGM_L = 0xc103, - TLS_GOSTR341112_256_WITH_MAGMA_MGM_L = 0xc104, - TLS_GOSTR341112_256_WITH_KUZNYECHIK_MGM_S = 0xc105, - TLS_GOSTR341112_256_WITH_MAGMA_MGM_S = 0xc106, - TLS_ECDHE_RSA_WITH_CHACHA20_POLY1305_SHA256 = 0xcca8, - TLS_ECDHE_ECDSA_WITH_CHACHA20_POLY1305_SHA256 = 0xcca9, - TLS_DHE_RSA_WITH_CHACHA20_POLY1305_SHA256 = 0xccaa, - TLS_PSK_WITH_CHACHA20_POLY1305_SHA256 = 0xccab, - TLS_ECDHE_PSK_WITH_CHACHA20_POLY1305_SHA256 = 0xccac, - TLS_DHE_PSK_WITH_CHACHA20_POLY1305_SHA256 = 0xccad, - TLS_RSA_PSK_WITH_CHACHA20_POLY1305_SHA256 = 0xccae, - TLS_ECDHE_PSK_WITH_AES_128_GCM_SHA256 = 0xd001, - TLS_ECDHE_PSK_WITH_AES_256_GCM_SHA384 = 0xd002, - TLS_ECDHE_PSK_WITH_AES_128_CCM_8_SHA256 = 0xd003, - TLS_ECDHE_PSK_WITH_AES_128_CCM_SHA256 = 0xd005 - }; - - enum supported_groups : uint16_t { - sect163k1 = 0x0001, - sect163r1 = 0x0002, - sect163r2 = 0x0003, - sect193r1 = 0x0004, - sect193r2 = 0x0005, - sect233k1 = 0x0006, - sect233r1 = 0x0007, - sect239k1 = 0x0008, - sect283k1 = 0x0009, - sect283r1 = 0x000a, - sect409k1 = 0x000b, - sect409r1 = 0x000c, - sect571k1 = 0x000d, - sect571r1 = 0x000e, - secp160k1 = 0x000f, - secp160r1 = 0x0010, - secp160r2 = 0x0011, - secp192k1 = 0x0012, - secp192r1 = 0x0013, - secp224k1 = 0x0014, - secp224r1 = 0x0015, - secp256k1 = 0x0016, - secp256r1 = 0x0017, - secp384r1 = 0x0018, - secp521r1 = 0x0019, - brainpoolP256r1 = 0x001a, - brainpoolP384r1 = 0x001b, - brainpoolP512r1 = 0x001c, - x25519 = 0x001d, - x448 = 0x001e, - brainpoolP256r1tls13 = 0x001f, - brainpoolP384r1tls13 = 0x0020, - brainpoolP512r1tls13 = 0x0021, - GC256A = 0x0022, - GC256B = 0x0023, - GC256C = 0x0024, - GC256D = 0x0025, - GC512A = 0x0026, - GC512B = 0x0027, - GC512C = 0x0028, - curveSM2 = 0x0029, - ffdhe2048 = 0x0100, - ffdhe3072 = 0x0101, - ffdhe4096 = 0x0102, - ffdhe6144 = 0x0103, - ffdhe8192 = 0x0104, - - // PQC - kyber90s512 = 0x2F3E, - kyber90s768 = 0x2F3F, - kyber90s1024 = 0x2F40, - - // Hybrid PQC - p256_frodo640aes = 0x2F00, - p256_frodo640shake = 0x2F01, - p384_frodo976aes = 0x2F02, - p384_frodo976shake = 0x2F03, - p521_frodo1344aes = 0x2F04, - p521_frodo1344shake = 0x2F05, - p256_kyber512 = 0x2F3A, - p384_kyber768 = 0x2F3C, - p521_kyber1024 = 0x2F3D, - p256_ntru_hps2048509 = 0x2F14, - p384_ntru_hps2048677 = 0x2F15, - p521_ntru_hps4096821 = 0x2F16, - p521_ntru_hps40961229 = 0x2F45, - p384_ntru_hrss701 = 0x2F17, - p521_ntru_hrss1373 = 0x2F46, - p256_lightsaber = 0x2F18, - p384_saber = 0x2F19, - p521_firesaber = 0x2F1A, - p256_sidhp434 = 0x2F1B, - p256_sidhp503 = 0x2F1C, - p384_sidhp610 = 0x2F1D, - p521_sidhp751 = 0x2F1E, - p256_sikep434 = 0x2F1F, - p256_sikep503 = 0x2F20, - p384_sikep610 = 0x2F21, - p521_sikep751 = 0x2F22, - p256_bikel1 = 0x2F38, - p384_bikel3 = 0x2F3B, - p256_kyber90s512 = 0x2F3E, - p384_kyber90s768 = 0x2F3F, - p521_kyber90s1024 = 0x2F40, - p256_hqc128 = 0x2F2C, - p384_hqc192 = 0x2F2D, - p521_hqc256 = 0x2F2E, - p256_ntrulpr653 = 0x2F2F, - p256_ntrulpr761 = 0x2F43, - p384_ntrulpr857 = 0x2F31, - p521_ntrulpr1277 = 0x2F41, - p256_sntrup653 = 0x2F32, - p256_sntrup761 = 0x2F44, - p384_sntrup857 = 0x2F34, - p521_sntrup1277 = 0x2F42, - - arbitrary_explicit_prime_curves = 0xff01, - arbitrary_explicit_char2_curves = 0xff02, - }; - - enum extensions : uint16_t { - server_name = 0x0000, - max_fragment_length = 0x0001, - client_certificate_url = 0x0002, - trusted_ca_keys = 0x0003, - truncated_hmac = 0x0004, - status_request = 0x0005, - user_mapping = 0x0006, - client_authz = 0x0007, - server_authz = 0x0008, - cert_type = 0x0009, - supported_groups = 0x000a, - ec_point_formats = 0x000b, - srp = 0x000c, - signature_algorithms = 0x000d, - use_srtp = 0x000e, - heartbeat = 0x000f, - application_layer_protocol_negotiation = 0x0010, - status_request_v2 = 0x0011, - signed_certificate_timestamp = 0x0012, - client_certificate_type = 0x0013, - server_certificate_type = 0x0014, - padding = 0x0015, - encrypt_then_mac = 0x0016, - extended_master_secret = 0x0017, - token_binding = 0x0018, - cached_info = 0x0019, - tls_lts = 0x001a, - compress_certificate = 0x001b, - record_size_limit = 0x001c, - pwd_protect = 0x001d, - pwd_clear = 0x001e, - password_salt = 0x001f, - ticket_pinning = 0x0020, - tls_cert_with_extern_psk = 0x0021, - delegated_credentials = 0x0022, - session_ticket_renamed_from_SessionTicket_TLS_ = 0x0023, - TLMSP = 0x0024, - TLMSP_proxying = 0x0025, - TLMSP_delegate = 0x0026, - supported_ekt_ciphers = 0x0027, - pre_shared_key = 0x0029, - early_data = 0x002a, - supported_versions = 0x002b, - cookie = 0x002c, - psk_key_exchange_modes = 0x002d, - certificate_authorities = 0x002f, - oid_filters = 0x0030, - post_handshake_auth = 0x0031, - signature_algorithms_cert = 0x0032, - key_share = 0x0033, - transparency_info = 0x0034, - connection_id_deprecated_ = 0x0035, - connection_id = 0x0036, - external_id_hash = 0x0037, - external_session_id = 0x0038, - quic_transport_parameters = 0x0039, - ticket_request = 0x003a, - dnssec_chain = 0x003b, - renegotiation_info = 0xff01, - }; -} diff --git a/src/libmerc/tls_parameters.hpp b/src/libmerc/tls_parameters.hpp new file mode 100644 index 00000000..84b2ada8 --- /dev/null +++ b/src/libmerc/tls_parameters.hpp @@ -0,0 +1,878 @@ +// tls_parameters.hpp +// +// this file was autogenerated at 2024-11-19T22:09:01Z +// you should edit the source file(s) instead of this one +// +// source files: +// /home/mcgrew/macos/mcgrew/Downloads/tls-parameters-4.csv +// /home/mcgrew/macos/mcgrew/Downloads/tls-parameters-8.csv +// + +#ifndef TLS_PARAMETERS_HPP +#define TLS_PARAMETERS_HPP + +#include "datum.h" + +namespace tls { + +class cipher_suites : public encoded { +public: + void write_json(json_object &o) const { + const char *name = get_name(); + if (name == nullptr) { + o.print_key_unknown_code("cipher_suites", encoded::value()); + } else { + o.print_key_string("cipher_suites", name); + } + } + enum code { + TLS_RSA_WITH_AES_256_GCM_SHA384 = 0x009D, + TLS_RSA_PSK_WITH_AES_128_CBC_SHA = 0x0094, + TLS_RSA_PSK_WITH_AES_256_CBC_SHA = 0x0095, + TLS_RSA_WITH_SEED_CBC_SHA = 0x0096, + TLS_DH_DSS_WITH_SEED_CBC_SHA = 0x0097, + TLS_DH_RSA_WITH_SEED_CBC_SHA = 0x0098, + TLS_DHE_DSS_WITH_SEED_CBC_SHA = 0x0099, + TLS_DHE_RSA_WITH_SEED_CBC_SHA = 0x009A, + TLS_DH_anon_WITH_SEED_CBC_SHA = 0x009B, + TLS_RSA_WITH_AES_128_GCM_SHA256 = 0x009C, + TLS_RSA_PSK_WITH_3DES_EDE_CBC_SHA = 0x0093, + TLS_DHE_RSA_WITH_AES_128_GCM_SHA256 = 0x009E, + TLS_DHE_RSA_WITH_AES_256_GCM_SHA384 = 0x009F, + TLS_DH_RSA_WITH_AES_128_GCM_SHA256 = 0x00A0, + TLS_DH_RSA_WITH_AES_256_GCM_SHA384 = 0x00A1, + TLS_DHE_DSS_WITH_AES_128_GCM_SHA256 = 0x00A2, + TLS_DHE_DSS_WITH_AES_256_GCM_SHA384 = 0x00A3, + TLS_DH_DSS_WITH_AES_128_GCM_SHA256 = 0x00A4, + TLS_DH_DSS_WITH_AES_256_GCM_SHA384 = 0x00A5, + TLS_PSK_WITH_RC4_128_SHA = 0x008A, + TLS_DH_anon_WITH_AES_128_CBC_SHA256 = 0x006C, + TLS_DH_anon_WITH_AES_256_CBC_SHA256 = 0x006D, + TLS_RSA_WITH_CAMELLIA_256_CBC_SHA = 0x0084, + TLS_DH_DSS_WITH_CAMELLIA_256_CBC_SHA = 0x0085, + TLS_DH_RSA_WITH_CAMELLIA_256_CBC_SHA = 0x0086, + TLS_DHE_DSS_WITH_CAMELLIA_256_CBC_SHA = 0x0087, + TLS_DHE_RSA_WITH_CAMELLIA_256_CBC_SHA = 0x0088, + TLS_DH_anon_WITH_CAMELLIA_256_CBC_SHA = 0x0089, + TLS_DH_anon_WITH_AES_128_GCM_SHA256 = 0x00A6, + TLS_PSK_WITH_3DES_EDE_CBC_SHA = 0x008B, + TLS_PSK_WITH_AES_128_CBC_SHA = 0x008C, + TLS_PSK_WITH_AES_256_CBC_SHA = 0x008D, + TLS_DHE_PSK_WITH_RC4_128_SHA = 0x008E, + TLS_DHE_PSK_WITH_3DES_EDE_CBC_SHA = 0x008F, + TLS_DHE_PSK_WITH_AES_128_CBC_SHA = 0x0090, + TLS_DHE_PSK_WITH_AES_256_CBC_SHA = 0x0091, + TLS_RSA_PSK_WITH_RC4_128_SHA = 0x0092, + TLS_DH_DSS_WITH_CAMELLIA_256_CBC_SHA256 = 0x00C1, + TLS_RSA_PSK_WITH_NULL_SHA384 = 0x00B9, + TLS_RSA_WITH_CAMELLIA_128_CBC_SHA256 = 0x00BA, + TLS_DH_DSS_WITH_CAMELLIA_128_CBC_SHA256 = 0x00BB, + TLS_DH_RSA_WITH_CAMELLIA_128_CBC_SHA256 = 0x00BC, + TLS_DHE_DSS_WITH_CAMELLIA_128_CBC_SHA256 = 0x00BD, + TLS_DHE_RSA_WITH_CAMELLIA_128_CBC_SHA256 = 0x00BE, + TLS_DH_anon_WITH_CAMELLIA_128_CBC_SHA256 = 0x00BF, + TLS_RSA_WITH_CAMELLIA_256_CBC_SHA256 = 0x00C0, + TLS_RSA_PSK_WITH_NULL_SHA256 = 0x00B8, + TLS_DH_RSA_WITH_CAMELLIA_256_CBC_SHA256 = 0x00C2, + TLS_DHE_DSS_WITH_CAMELLIA_256_CBC_SHA256 = 0x00C3, + TLS_DHE_RSA_WITH_CAMELLIA_256_CBC_SHA256 = 0x00C4, + TLS_DH_anon_WITH_CAMELLIA_256_CBC_SHA256 = 0x00C5, + TLS_SM4_GCM_SM3 = 0x00C6, + TLS_SM4_CCM_SM3 = 0x00C7, + TLS_EMPTY_RENEGOTIATION_INFO_SCSV = 0x00FF, + TLS_NULL_WITH_NULL_NULL = 0x0000, + TLS_PSK_WITH_AES_256_CBC_SHA384 = 0x00AF, + TLS_DH_anon_WITH_AES_256_GCM_SHA384 = 0x00A7, + TLS_PSK_WITH_AES_128_GCM_SHA256 = 0x00A8, + TLS_PSK_WITH_AES_256_GCM_SHA384 = 0x00A9, + TLS_DHE_PSK_WITH_AES_128_GCM_SHA256 = 0x00AA, + TLS_DHE_PSK_WITH_AES_256_GCM_SHA384 = 0x00AB, + TLS_RSA_PSK_WITH_AES_128_GCM_SHA256 = 0x00AC, + TLS_RSA_PSK_WITH_AES_256_GCM_SHA384 = 0x00AD, + TLS_PSK_WITH_AES_128_CBC_SHA256 = 0x00AE, + TLS_RSA_WITH_NULL_MD5 = 0x0001, + TLS_PSK_WITH_NULL_SHA256 = 0x00B0, + TLS_PSK_WITH_NULL_SHA384 = 0x00B1, + TLS_DHE_PSK_WITH_AES_128_CBC_SHA256 = 0x00B2, + TLS_DHE_PSK_WITH_AES_256_CBC_SHA384 = 0x00B3, + TLS_DHE_PSK_WITH_NULL_SHA256 = 0x00B4, + TLS_DHE_PSK_WITH_NULL_SHA384 = 0x00B5, + TLS_RSA_PSK_WITH_AES_128_CBC_SHA256 = 0x00B6, + TLS_RSA_PSK_WITH_AES_256_CBC_SHA384 = 0x00B7, + TLS_KRB5_WITH_DES_CBC_SHA = 0x001E, + TLS_DHE_DSS_WITH_3DES_EDE_CBC_SHA = 0x0013, + TLS_DHE_RSA_EXPORT_WITH_DES40_CBC_SHA = 0x0014, + TLS_DHE_RSA_WITH_DES_CBC_SHA = 0x0015, + TLS_DHE_RSA_WITH_3DES_EDE_CBC_SHA = 0x0016, + TLS_DH_anon_EXPORT_WITH_RC4_40_MD5 = 0x0017, + TLS_DH_anon_WITH_RC4_128_MD5 = 0x0018, + TLS_DH_anon_EXPORT_WITH_DES40_CBC_SHA = 0x0019, + TLS_DH_anon_WITH_DES_CBC_SHA = 0x001A, + TLS_DH_anon_WITH_3DES_EDE_CBC_SHA = 0x001B, + TLS_DHE_DSS_WITH_DES_CBC_SHA = 0x0012, + TLS_KRB5_WITH_3DES_EDE_CBC_SHA = 0x001F, + TLS_KRB5_WITH_RC4_128_SHA = 0x0020, + TLS_KRB5_WITH_IDEA_CBC_SHA = 0x0021, + TLS_KRB5_WITH_DES_CBC_MD5 = 0x0022, + TLS_KRB5_WITH_3DES_EDE_CBC_MD5 = 0x0023, + TLS_KRB5_WITH_RC4_128_MD5 = 0x0024, + TLS_KRB5_WITH_IDEA_CBC_MD5 = 0x0025, + TLS_KRB5_EXPORT_WITH_DES_CBC_40_SHA = 0x0026, + TLS_RSA_WITH_DES_CBC_SHA = 0x0009, + TLS_DHE_RSA_WITH_AES_256_CBC_SHA256 = 0x006B, + TLS_RSA_WITH_NULL_SHA = 0x0002, + TLS_RSA_EXPORT_WITH_RC4_40_MD5 = 0x0003, + TLS_RSA_WITH_RC4_128_MD5 = 0x0004, + TLS_RSA_WITH_RC4_128_SHA = 0x0005, + TLS_RSA_EXPORT_WITH_RC2_CBC_40_MD5 = 0x0006, + TLS_RSA_WITH_IDEA_CBC_SHA = 0x0007, + TLS_RSA_EXPORT_WITH_DES40_CBC_SHA = 0x0008, + TLS_DHE_DSS_WITH_AES_256_CBC_SHA256 = 0x006A, + TLS_RSA_WITH_3DES_EDE_CBC_SHA = 0x000A, + TLS_DH_DSS_EXPORT_WITH_DES40_CBC_SHA = 0x000B, + TLS_DH_DSS_WITH_DES_CBC_SHA = 0x000C, + TLS_DH_DSS_WITH_3DES_EDE_CBC_SHA = 0x000D, + TLS_DH_RSA_EXPORT_WITH_DES40_CBC_SHA = 0x000E, + TLS_DH_RSA_WITH_DES_CBC_SHA = 0x000F, + TLS_DH_RSA_WITH_3DES_EDE_CBC_SHA = 0x0010, + TLS_DHE_DSS_EXPORT_WITH_DES40_CBC_SHA = 0x0011, + TLS_DH_DSS_WITH_CAMELLIA_128_CBC_SHA = 0x0042, + TLS_DH_anon_WITH_AES_256_CBC_SHA = 0x003A, + TLS_RSA_WITH_NULL_SHA256 = 0x003B, + TLS_RSA_WITH_AES_128_CBC_SHA256 = 0x003C, + TLS_RSA_WITH_AES_256_CBC_SHA256 = 0x003D, + TLS_DH_DSS_WITH_AES_128_CBC_SHA256 = 0x003E, + TLS_DH_RSA_WITH_AES_128_CBC_SHA256 = 0x003F, + TLS_DHE_DSS_WITH_AES_128_CBC_SHA256 = 0x0040, + TLS_RSA_WITH_CAMELLIA_128_CBC_SHA = 0x0041, + TLS_KRB5_EXPORT_WITH_RC4_40_SHA = 0x0028, + TLS_DH_RSA_WITH_CAMELLIA_128_CBC_SHA = 0x0043, + TLS_DHE_DSS_WITH_CAMELLIA_128_CBC_SHA = 0x0044, + TLS_DHE_RSA_WITH_CAMELLIA_128_CBC_SHA = 0x0045, + TLS_DH_anon_WITH_CAMELLIA_128_CBC_SHA = 0x0046, + TLS_DHE_RSA_WITH_AES_128_CBC_SHA256 = 0x0067, + TLS_DH_DSS_WITH_AES_256_CBC_SHA256 = 0x0068, + TLS_DH_RSA_WITH_AES_256_CBC_SHA256 = 0x0069, + TLS_KRB5_EXPORT_WITH_RC2_CBC_40_SHA = 0x0027, + TLS_DHE_DSS_WITH_AES_256_CBC_SHA = 0x0038, + TLS_DHE_RSA_WITH_AES_256_CBC_SHA = 0x0039, + TLS_KRB5_EXPORT_WITH_DES_CBC_40_MD5 = 0x0029, + TLS_KRB5_EXPORT_WITH_RC2_CBC_40_MD5 = 0x002A, + TLS_KRB5_EXPORT_WITH_RC4_40_MD5 = 0x002B, + TLS_PSK_WITH_NULL_SHA = 0x002C, + TLS_DHE_PSK_WITH_NULL_SHA = 0x002D, + TLS_RSA_PSK_WITH_NULL_SHA = 0x002E, + TLS_RSA_WITH_AES_128_CBC_SHA = 0x002F, + TLS_DH_DSS_WITH_AES_128_CBC_SHA = 0x0030, + TLS_DH_RSA_WITH_AES_128_CBC_SHA = 0x0031, + TLS_DHE_DSS_WITH_AES_128_CBC_SHA = 0x0032, + TLS_DHE_RSA_WITH_AES_128_CBC_SHA = 0x0033, + TLS_DH_anon_WITH_AES_128_CBC_SHA = 0x0034, + TLS_RSA_WITH_AES_256_CBC_SHA = 0x0035, + TLS_DH_DSS_WITH_AES_256_CBC_SHA = 0x0036, + TLS_DH_RSA_WITH_AES_256_CBC_SHA = 0x0037, + TLS_AEGIS_128L_SHA256 = 0x1307, + TLS_AEGIS_256_SHA512 = 0x1306, + TLS_AES_128_CCM_8_SHA256 = 0x1305, + TLS_CHACHA20_POLY1305_SHA256 = 0x1303, + TLS_AES_256_GCM_SHA384 = 0x1302, + TLS_AES_128_GCM_SHA256 = 0x1301, + TLS_AES_128_CCM_SHA256 = 0x1304, + TLS_FALLBACK_SCSV = 0x5600, + TLS_ECDHE_ECDSA_WITH_CAMELLIA_256_CBC_SHA384 = 0xC073, + TLS_ECDH_ECDSA_WITH_CAMELLIA_128_CBC_SHA256 = 0xC074, + TLS_ECDH_ECDSA_WITH_CAMELLIA_256_CBC_SHA384 = 0xC075, + TLS_ECDHE_RSA_WITH_CAMELLIA_128_CBC_SHA256 = 0xC076, + TLS_ECDHE_RSA_WITH_CAMELLIA_256_CBC_SHA384 = 0xC077, + TLS_ECDH_RSA_WITH_CAMELLIA_128_CBC_SHA256 = 0xC078, + TLS_ECDH_RSA_WITH_CAMELLIA_256_CBC_SHA384 = 0xC079, + TLS_RSA_WITH_CAMELLIA_128_GCM_SHA256 = 0xC07A, + TLS_RSA_WITH_CAMELLIA_256_GCM_SHA384 = 0xC07B, + TLS_DHE_RSA_WITH_CAMELLIA_128_GCM_SHA256 = 0xC07C, + TLS_DHE_RSA_WITH_CAMELLIA_256_GCM_SHA384 = 0xC07D, + TLS_DH_RSA_WITH_CAMELLIA_128_GCM_SHA256 = 0xC07E, + TLS_DH_RSA_WITH_CAMELLIA_256_GCM_SHA384 = 0xC07F, + TLS_DHE_DSS_WITH_CAMELLIA_128_GCM_SHA256 = 0xC080, + TLS_DHE_DSS_WITH_CAMELLIA_256_GCM_SHA384 = 0xC081, + TLS_DH_DSS_WITH_CAMELLIA_128_GCM_SHA256 = 0xC082, + TLS_DH_DSS_WITH_CAMELLIA_256_GCM_SHA384 = 0xC083, + TLS_DH_anon_WITH_CAMELLIA_128_GCM_SHA256 = 0xC084, + TLS_DH_anon_WITH_CAMELLIA_256_GCM_SHA384 = 0xC085, + TLS_ECDHE_ECDSA_WITH_CAMELLIA_128_GCM_SHA256 = 0xC086, + TLS_ECDHE_ECDSA_WITH_CAMELLIA_256_GCM_SHA384 = 0xC087, + TLS_ECDH_ECDSA_WITH_CAMELLIA_128_GCM_SHA256 = 0xC088, + TLS_DHE_PSK_WITH_ARIA_256_CBC_SHA384 = 0xC067, + TLS_ECDHE_ECDSA_WITH_ARIA_128_GCM_SHA256 = 0xC05C, + TLS_ECDHE_ECDSA_WITH_ARIA_256_GCM_SHA384 = 0xC05D, + TLS_ECDH_ECDSA_WITH_ARIA_128_GCM_SHA256 = 0xC05E, + TLS_ECDH_ECDSA_WITH_ARIA_256_GCM_SHA384 = 0xC05F, + TLS_ECDHE_RSA_WITH_ARIA_128_GCM_SHA256 = 0xC060, + TLS_ECDHE_RSA_WITH_ARIA_256_GCM_SHA384 = 0xC061, + TLS_ECDH_RSA_WITH_ARIA_128_GCM_SHA256 = 0xC062, + TLS_ECDH_RSA_WITH_ARIA_256_GCM_SHA384 = 0xC063, + TLS_PSK_WITH_ARIA_128_CBC_SHA256 = 0xC064, + TLS_PSK_WITH_ARIA_256_CBC_SHA384 = 0xC065, + TLS_DHE_PSK_WITH_ARIA_128_CBC_SHA256 = 0xC066, + TLS_ECDHE_ECDSA_WITH_CAMELLIA_128_CBC_SHA256 = 0xC072, + TLS_RSA_PSK_WITH_ARIA_128_CBC_SHA256 = 0xC068, + TLS_RSA_PSK_WITH_ARIA_256_CBC_SHA384 = 0xC069, + TLS_PSK_WITH_ARIA_128_GCM_SHA256 = 0xC06A, + TLS_PSK_WITH_ARIA_256_GCM_SHA384 = 0xC06B, + TLS_DHE_PSK_WITH_ARIA_128_GCM_SHA256 = 0xC06C, + TLS_DHE_PSK_WITH_ARIA_256_GCM_SHA384 = 0xC06D, + TLS_RSA_PSK_WITH_ARIA_128_GCM_SHA256 = 0xC06E, + TLS_RSA_PSK_WITH_ARIA_256_GCM_SHA384 = 0xC06F, + TLS_ECDHE_PSK_WITH_ARIA_128_CBC_SHA256 = 0xC070, + TLS_ECDHE_PSK_WITH_ARIA_256_CBC_SHA384 = 0xC071, + TLS_PSK_DHE_WITH_AES_256_CCM_8 = 0xC0AB, + TLS_RSA_WITH_AES_128_CCM_8 = 0xC0A0, + TLS_RSA_WITH_AES_256_CCM_8 = 0xC0A1, + TLS_DHE_RSA_WITH_AES_128_CCM_8 = 0xC0A2, + TLS_DHE_RSA_WITH_AES_256_CCM_8 = 0xC0A3, + TLS_PSK_WITH_AES_128_CCM = 0xC0A4, + TLS_PSK_WITH_AES_256_CCM = 0xC0A5, + TLS_DHE_PSK_WITH_AES_128_CCM = 0xC0A6, + TLS_DHE_PSK_WITH_AES_256_CCM = 0xC0A7, + TLS_PSK_WITH_AES_128_CCM_8 = 0xC0A8, + TLS_PSK_WITH_AES_256_CCM_8 = 0xC0A9, + TLS_PSK_DHE_WITH_AES_128_CCM_8 = 0xC0AA, + TLS_DHE_RSA_WITH_AES_256_CCM = 0xC09F, + TLS_ECDHE_ECDSA_WITH_AES_128_CCM = 0xC0AC, + TLS_ECDHE_ECDSA_WITH_AES_256_CCM = 0xC0AD, + TLS_ECDHE_ECDSA_WITH_AES_128_CCM_8 = 0xC0AE, + TLS_ECDHE_ECDSA_WITH_AES_256_CCM_8 = 0xC0AF, + TLS_ECCPWD_WITH_AES_128_GCM_SHA256 = 0xC0B0, + TLS_ECCPWD_WITH_AES_256_GCM_SHA384 = 0xC0B1, + TLS_ECCPWD_WITH_AES_128_CCM_SHA256 = 0xC0B2, + TLS_ECCPWD_WITH_AES_256_CCM_SHA384 = 0xC0B3, + TLS_SHA256_SHA256 = 0xC0B4, + TLS_SHA384_SHA384 = 0xC0B5, + TLS_PSK_WITH_CAMELLIA_256_CBC_SHA384 = 0xC095, + TLS_ECDHE_RSA_WITH_CAMELLIA_128_GCM_SHA256 = 0xC08A, + TLS_ECDHE_RSA_WITH_CAMELLIA_256_GCM_SHA384 = 0xC08B, + TLS_ECDH_RSA_WITH_CAMELLIA_128_GCM_SHA256 = 0xC08C, + TLS_ECDH_RSA_WITH_CAMELLIA_256_GCM_SHA384 = 0xC08D, + TLS_PSK_WITH_CAMELLIA_128_GCM_SHA256 = 0xC08E, + TLS_PSK_WITH_CAMELLIA_256_GCM_SHA384 = 0xC08F, + TLS_DHE_PSK_WITH_CAMELLIA_128_GCM_SHA256 = 0xC090, + TLS_DHE_PSK_WITH_CAMELLIA_256_GCM_SHA384 = 0xC091, + TLS_RSA_PSK_WITH_CAMELLIA_128_GCM_SHA256 = 0xC092, + TLS_RSA_PSK_WITH_CAMELLIA_256_GCM_SHA384 = 0xC093, + TLS_PSK_WITH_CAMELLIA_128_CBC_SHA256 = 0xC094, + TLS_ECDH_ECDSA_WITH_CAMELLIA_256_GCM_SHA384 = 0xC089, + TLS_DHE_PSK_WITH_CAMELLIA_128_CBC_SHA256 = 0xC096, + TLS_DHE_PSK_WITH_CAMELLIA_256_CBC_SHA384 = 0xC097, + TLS_RSA_PSK_WITH_CAMELLIA_128_CBC_SHA256 = 0xC098, + TLS_RSA_PSK_WITH_CAMELLIA_256_CBC_SHA384 = 0xC099, + TLS_ECDHE_PSK_WITH_CAMELLIA_128_CBC_SHA256 = 0xC09A, + TLS_ECDHE_PSK_WITH_CAMELLIA_256_CBC_SHA384 = 0xC09B, + TLS_RSA_WITH_AES_128_CCM = 0xC09C, + TLS_RSA_WITH_AES_256_CCM = 0xC09D, + TLS_DHE_RSA_WITH_AES_128_CCM = 0xC09E, + TLS_ECDH_anon_WITH_AES_128_CBC_SHA = 0xC018, + TLS_ECDHE_ECDSA_WITH_AES_128_CBC_SHA256 = 0xC023, + TLS_ECDH_anon_WITH_3DES_EDE_CBC_SHA = 0xC017, + TLS_ECDH_anon_WITH_AES_256_CBC_SHA = 0xC019, + TLS_SRP_SHA_WITH_3DES_EDE_CBC_SHA = 0xC01A, + TLS_SRP_SHA_RSA_WITH_3DES_EDE_CBC_SHA = 0xC01B, + TLS_SRP_SHA_DSS_WITH_3DES_EDE_CBC_SHA = 0xC01C, + TLS_SRP_SHA_WITH_AES_128_CBC_SHA = 0xC01D, + TLS_SRP_SHA_RSA_WITH_AES_128_CBC_SHA = 0xC01E, + TLS_SRP_SHA_DSS_WITH_AES_128_CBC_SHA = 0xC01F, + TLS_SRP_SHA_WITH_AES_256_CBC_SHA = 0xC020, + TLS_SRP_SHA_RSA_WITH_AES_256_CBC_SHA = 0xC021, + TLS_SRP_SHA_DSS_WITH_AES_256_CBC_SHA = 0xC022, + TLS_ECDH_anon_WITH_RC4_128_SHA = 0xC016, + TLS_ECDHE_ECDSA_WITH_AES_256_CBC_SHA384 = 0xC024, + TLS_ECDH_ECDSA_WITH_AES_128_CBC_SHA256 = 0xC025, + TLS_ECDH_ECDSA_WITH_AES_256_CBC_SHA384 = 0xC026, + TLS_ECDHE_RSA_WITH_AES_128_CBC_SHA256 = 0xC027, + TLS_ECDHE_RSA_WITH_AES_256_CBC_SHA384 = 0xC028, + TLS_ECDH_RSA_WITH_AES_128_CBC_SHA256 = 0xC029, + TLS_ECDH_RSA_WITH_AES_256_CBC_SHA384 = 0xC02A, + TLS_ECDHE_ECDSA_WITH_AES_128_GCM_SHA256 = 0xC02B, + TLS_ECDHE_ECDSA_WITH_AES_256_GCM_SHA384 = 0xC02C, + TLS_ECDH_ECDSA_WITH_AES_128_GCM_SHA256 = 0xC02D, + TLS_ECDH_RSA_WITH_NULL_SHA = 0xC00B, + TLS_ECDH_ECDSA_WITH_NULL_SHA = 0xC001, + TLS_ECDH_ECDSA_WITH_RC4_128_SHA = 0xC002, + TLS_ECDH_ECDSA_WITH_3DES_EDE_CBC_SHA = 0xC003, + TLS_ECDH_ECDSA_WITH_AES_128_CBC_SHA = 0xC004, + TLS_ECDH_ECDSA_WITH_AES_256_CBC_SHA = 0xC005, + TLS_ECDHE_ECDSA_WITH_NULL_SHA = 0xC006, + TLS_ECDHE_ECDSA_WITH_RC4_128_SHA = 0xC007, + TLS_ECDHE_ECDSA_WITH_3DES_EDE_CBC_SHA = 0xC008, + TLS_ECDHE_ECDSA_WITH_AES_128_CBC_SHA = 0xC009, + TLS_ECDHE_ECDSA_WITH_AES_256_CBC_SHA = 0xC00A, + TLS_DH_anon_WITH_ARIA_128_GCM_SHA256 = 0xC05A, + TLS_ECDH_RSA_WITH_RC4_128_SHA = 0xC00C, + TLS_ECDH_RSA_WITH_3DES_EDE_CBC_SHA = 0xC00D, + TLS_ECDH_RSA_WITH_AES_128_CBC_SHA = 0xC00E, + TLS_ECDH_RSA_WITH_AES_256_CBC_SHA = 0xC00F, + TLS_ECDHE_RSA_WITH_NULL_SHA = 0xC010, + TLS_ECDHE_RSA_WITH_RC4_128_SHA = 0xC011, + TLS_ECDHE_RSA_WITH_3DES_EDE_CBC_SHA = 0xC012, + TLS_ECDHE_RSA_WITH_AES_128_CBC_SHA = 0xC013, + TLS_ECDHE_RSA_WITH_AES_256_CBC_SHA = 0xC014, + TLS_ECDH_anon_WITH_NULL_SHA = 0xC015, + TLS_RSA_WITH_ARIA_128_GCM_SHA256 = 0xC050, + TLS_DHE_RSA_WITH_ARIA_256_CBC_SHA384 = 0xC045, + TLS_DH_anon_WITH_ARIA_128_CBC_SHA256 = 0xC046, + TLS_DH_anon_WITH_ARIA_256_CBC_SHA384 = 0xC047, + TLS_ECDHE_ECDSA_WITH_ARIA_128_CBC_SHA256 = 0xC048, + TLS_ECDHE_ECDSA_WITH_ARIA_256_CBC_SHA384 = 0xC049, + TLS_ECDH_ECDSA_WITH_ARIA_128_CBC_SHA256 = 0xC04A, + TLS_ECDH_ECDSA_WITH_ARIA_256_CBC_SHA384 = 0xC04B, + TLS_ECDHE_RSA_WITH_ARIA_128_CBC_SHA256 = 0xC04C, + TLS_ECDHE_RSA_WITH_ARIA_256_CBC_SHA384 = 0xC04D, + TLS_ECDH_RSA_WITH_ARIA_128_CBC_SHA256 = 0xC04E, + TLS_ECDH_RSA_WITH_ARIA_256_CBC_SHA384 = 0xC04F, + TLS_ECDHE_RSA_WITH_AES_128_GCM_SHA256 = 0xC02F, + TLS_RSA_WITH_ARIA_256_GCM_SHA384 = 0xC051, + TLS_DHE_RSA_WITH_ARIA_128_GCM_SHA256 = 0xC052, + TLS_DHE_RSA_WITH_ARIA_256_GCM_SHA384 = 0xC053, + TLS_DH_RSA_WITH_ARIA_128_GCM_SHA256 = 0xC054, + TLS_DH_RSA_WITH_ARIA_256_GCM_SHA384 = 0xC055, + TLS_DHE_DSS_WITH_ARIA_128_GCM_SHA256 = 0xC056, + TLS_DHE_DSS_WITH_ARIA_256_GCM_SHA384 = 0xC057, + TLS_DH_DSS_WITH_ARIA_128_GCM_SHA256 = 0xC058, + TLS_DH_DSS_WITH_ARIA_256_GCM_SHA384 = 0xC059, + TLS_DH_anon_WITH_ARIA_256_GCM_SHA384 = 0xC05B, + TLS_DHE_DSS_WITH_ARIA_256_CBC_SHA384 = 0xC043, + TLS_ECDH_ECDSA_WITH_AES_256_GCM_SHA384 = 0xC02E, + TLS_ECDHE_RSA_WITH_AES_256_GCM_SHA384 = 0xC030, + TLS_ECDH_RSA_WITH_AES_128_GCM_SHA256 = 0xC031, + TLS_ECDH_RSA_WITH_AES_256_GCM_SHA384 = 0xC032, + TLS_ECDHE_PSK_WITH_RC4_128_SHA = 0xC033, + TLS_ECDHE_PSK_WITH_3DES_EDE_CBC_SHA = 0xC034, + TLS_ECDHE_PSK_WITH_AES_128_CBC_SHA = 0xC035, + TLS_ECDHE_PSK_WITH_AES_256_CBC_SHA = 0xC036, + TLS_ECDHE_PSK_WITH_AES_128_CBC_SHA256 = 0xC037, + TLS_ECDHE_PSK_WITH_AES_256_CBC_SHA384 = 0xC038, + TLS_ECDHE_PSK_WITH_NULL_SHA256 = 0xC03A, + TLS_ECDHE_PSK_WITH_NULL_SHA384 = 0xC03B, + TLS_RSA_WITH_ARIA_128_CBC_SHA256 = 0xC03C, + TLS_RSA_WITH_ARIA_256_CBC_SHA384 = 0xC03D, + TLS_DH_DSS_WITH_ARIA_128_CBC_SHA256 = 0xC03E, + TLS_DH_DSS_WITH_ARIA_256_CBC_SHA384 = 0xC03F, + TLS_DH_RSA_WITH_ARIA_128_CBC_SHA256 = 0xC040, + TLS_DH_RSA_WITH_ARIA_256_CBC_SHA384 = 0xC041, + TLS_DHE_DSS_WITH_ARIA_128_CBC_SHA256 = 0xC042, + TLS_DHE_RSA_WITH_ARIA_128_CBC_SHA256 = 0xC044, + TLS_ECDHE_PSK_WITH_NULL_SHA = 0xC039, + TLS_GOSTR341112_256_WITH_KUZNYECHIK_MGM_L = 0xC103, + TLS_GOSTR341112_256_WITH_MAGMA_MGM_S = 0xC106, + TLS_GOSTR341112_256_WITH_KUZNYECHIK_MGM_S = 0xC105, + TLS_GOSTR341112_256_WITH_MAGMA_MGM_L = 0xC104, + TLS_GOSTR341112_256_WITH_28147_CNT_IMIT = 0xC102, + TLS_GOSTR341112_256_WITH_MAGMA_CTR_OMAC = 0xC101, + TLS_GOSTR341112_256_WITH_KUZNYECHIK_CTR_OMAC = 0xC100, + TLS_ECDHE_RSA_WITH_CHACHA20_POLY1305_SHA256 = 0xCCA8, + TLS_ECDHE_ECDSA_WITH_CHACHA20_POLY1305_SHA256 = 0xCCA9, + TLS_DHE_RSA_WITH_CHACHA20_POLY1305_SHA256 = 0xCCAA, + TLS_PSK_WITH_CHACHA20_POLY1305_SHA256 = 0xCCAB, + TLS_ECDHE_PSK_WITH_CHACHA20_POLY1305_SHA256 = 0xCCAC, + TLS_DHE_PSK_WITH_CHACHA20_POLY1305_SHA256 = 0xCCAD, + TLS_RSA_PSK_WITH_CHACHA20_POLY1305_SHA256 = 0xCCAE, + TLS_ECDHE_PSK_WITH_AES_128_GCM_SHA256 = 0xD001, + TLS_ECDHE_PSK_WITH_AES_256_GCM_SHA384 = 0xD002, + TLS_ECDHE_PSK_WITH_AES_128_CCM_8_SHA256 = 0xD003, + TLS_ECDHE_PSK_WITH_AES_128_CCM_SHA256 = 0xD005, + }; + const char *get_name() const { + switch(encoded::value()) { + case TLS_RSA_WITH_AES_256_GCM_SHA384: return "TLS_RSA_WITH_AES_256_GCM_SHA384"; + case TLS_RSA_PSK_WITH_AES_128_CBC_SHA: return "TLS_RSA_PSK_WITH_AES_128_CBC_SHA"; + case TLS_RSA_PSK_WITH_AES_256_CBC_SHA: return "TLS_RSA_PSK_WITH_AES_256_CBC_SHA"; + case TLS_RSA_WITH_SEED_CBC_SHA: return "TLS_RSA_WITH_SEED_CBC_SHA"; + case TLS_DH_DSS_WITH_SEED_CBC_SHA: return "TLS_DH_DSS_WITH_SEED_CBC_SHA"; + case TLS_DH_RSA_WITH_SEED_CBC_SHA: return "TLS_DH_RSA_WITH_SEED_CBC_SHA"; + case TLS_DHE_DSS_WITH_SEED_CBC_SHA: return "TLS_DHE_DSS_WITH_SEED_CBC_SHA"; + case TLS_DHE_RSA_WITH_SEED_CBC_SHA: return "TLS_DHE_RSA_WITH_SEED_CBC_SHA"; + case TLS_DH_anon_WITH_SEED_CBC_SHA: return "TLS_DH_anon_WITH_SEED_CBC_SHA"; + case TLS_RSA_WITH_AES_128_GCM_SHA256: return "TLS_RSA_WITH_AES_128_GCM_SHA256"; + case TLS_RSA_PSK_WITH_3DES_EDE_CBC_SHA: return "TLS_RSA_PSK_WITH_3DES_EDE_CBC_SHA"; + case TLS_DHE_RSA_WITH_AES_128_GCM_SHA256: return "TLS_DHE_RSA_WITH_AES_128_GCM_SHA256"; + case TLS_DHE_RSA_WITH_AES_256_GCM_SHA384: return "TLS_DHE_RSA_WITH_AES_256_GCM_SHA384"; + case TLS_DH_RSA_WITH_AES_128_GCM_SHA256: return "TLS_DH_RSA_WITH_AES_128_GCM_SHA256"; + case TLS_DH_RSA_WITH_AES_256_GCM_SHA384: return "TLS_DH_RSA_WITH_AES_256_GCM_SHA384"; + case TLS_DHE_DSS_WITH_AES_128_GCM_SHA256: return "TLS_DHE_DSS_WITH_AES_128_GCM_SHA256"; + case TLS_DHE_DSS_WITH_AES_256_GCM_SHA384: return "TLS_DHE_DSS_WITH_AES_256_GCM_SHA384"; + case TLS_DH_DSS_WITH_AES_128_GCM_SHA256: return "TLS_DH_DSS_WITH_AES_128_GCM_SHA256"; + case TLS_DH_DSS_WITH_AES_256_GCM_SHA384: return "TLS_DH_DSS_WITH_AES_256_GCM_SHA384"; + case TLS_PSK_WITH_RC4_128_SHA: return "TLS_PSK_WITH_RC4_128_SHA"; + case TLS_DH_anon_WITH_AES_128_CBC_SHA256: return "TLS_DH_anon_WITH_AES_128_CBC_SHA256"; + case TLS_DH_anon_WITH_AES_256_CBC_SHA256: return "TLS_DH_anon_WITH_AES_256_CBC_SHA256"; + case TLS_RSA_WITH_CAMELLIA_256_CBC_SHA: return "TLS_RSA_WITH_CAMELLIA_256_CBC_SHA"; + case TLS_DH_DSS_WITH_CAMELLIA_256_CBC_SHA: return "TLS_DH_DSS_WITH_CAMELLIA_256_CBC_SHA"; + case TLS_DH_RSA_WITH_CAMELLIA_256_CBC_SHA: return "TLS_DH_RSA_WITH_CAMELLIA_256_CBC_SHA"; + case TLS_DHE_DSS_WITH_CAMELLIA_256_CBC_SHA: return "TLS_DHE_DSS_WITH_CAMELLIA_256_CBC_SHA"; + case TLS_DHE_RSA_WITH_CAMELLIA_256_CBC_SHA: return "TLS_DHE_RSA_WITH_CAMELLIA_256_CBC_SHA"; + case TLS_DH_anon_WITH_CAMELLIA_256_CBC_SHA: return "TLS_DH_anon_WITH_CAMELLIA_256_CBC_SHA"; + case TLS_DH_anon_WITH_AES_128_GCM_SHA256: return "TLS_DH_anon_WITH_AES_128_GCM_SHA256"; + case TLS_PSK_WITH_3DES_EDE_CBC_SHA: return "TLS_PSK_WITH_3DES_EDE_CBC_SHA"; + case TLS_PSK_WITH_AES_128_CBC_SHA: return "TLS_PSK_WITH_AES_128_CBC_SHA"; + case TLS_PSK_WITH_AES_256_CBC_SHA: return "TLS_PSK_WITH_AES_256_CBC_SHA"; + case TLS_DHE_PSK_WITH_RC4_128_SHA: return "TLS_DHE_PSK_WITH_RC4_128_SHA"; + case TLS_DHE_PSK_WITH_3DES_EDE_CBC_SHA: return "TLS_DHE_PSK_WITH_3DES_EDE_CBC_SHA"; + case TLS_DHE_PSK_WITH_AES_128_CBC_SHA: return "TLS_DHE_PSK_WITH_AES_128_CBC_SHA"; + case TLS_DHE_PSK_WITH_AES_256_CBC_SHA: return "TLS_DHE_PSK_WITH_AES_256_CBC_SHA"; + case TLS_RSA_PSK_WITH_RC4_128_SHA: return "TLS_RSA_PSK_WITH_RC4_128_SHA"; + case TLS_DH_DSS_WITH_CAMELLIA_256_CBC_SHA256: return "TLS_DH_DSS_WITH_CAMELLIA_256_CBC_SHA256"; + case TLS_RSA_PSK_WITH_NULL_SHA384: return "TLS_RSA_PSK_WITH_NULL_SHA384"; + case TLS_RSA_WITH_CAMELLIA_128_CBC_SHA256: return "TLS_RSA_WITH_CAMELLIA_128_CBC_SHA256"; + case TLS_DH_DSS_WITH_CAMELLIA_128_CBC_SHA256: return "TLS_DH_DSS_WITH_CAMELLIA_128_CBC_SHA256"; + case TLS_DH_RSA_WITH_CAMELLIA_128_CBC_SHA256: return "TLS_DH_RSA_WITH_CAMELLIA_128_CBC_SHA256"; + case TLS_DHE_DSS_WITH_CAMELLIA_128_CBC_SHA256: return "TLS_DHE_DSS_WITH_CAMELLIA_128_CBC_SHA256"; + case TLS_DHE_RSA_WITH_CAMELLIA_128_CBC_SHA256: return "TLS_DHE_RSA_WITH_CAMELLIA_128_CBC_SHA256"; + case TLS_DH_anon_WITH_CAMELLIA_128_CBC_SHA256: return "TLS_DH_anon_WITH_CAMELLIA_128_CBC_SHA256"; + case TLS_RSA_WITH_CAMELLIA_256_CBC_SHA256: return "TLS_RSA_WITH_CAMELLIA_256_CBC_SHA256"; + case TLS_RSA_PSK_WITH_NULL_SHA256: return "TLS_RSA_PSK_WITH_NULL_SHA256"; + case TLS_DH_RSA_WITH_CAMELLIA_256_CBC_SHA256: return "TLS_DH_RSA_WITH_CAMELLIA_256_CBC_SHA256"; + case TLS_DHE_DSS_WITH_CAMELLIA_256_CBC_SHA256: return "TLS_DHE_DSS_WITH_CAMELLIA_256_CBC_SHA256"; + case TLS_DHE_RSA_WITH_CAMELLIA_256_CBC_SHA256: return "TLS_DHE_RSA_WITH_CAMELLIA_256_CBC_SHA256"; + case TLS_DH_anon_WITH_CAMELLIA_256_CBC_SHA256: return "TLS_DH_anon_WITH_CAMELLIA_256_CBC_SHA256"; + case TLS_SM4_GCM_SM3: return "TLS_SM4_GCM_SM3"; + case TLS_SM4_CCM_SM3: return "TLS_SM4_CCM_SM3"; + case TLS_EMPTY_RENEGOTIATION_INFO_SCSV: return "TLS_EMPTY_RENEGOTIATION_INFO_SCSV"; + case TLS_NULL_WITH_NULL_NULL: return "TLS_NULL_WITH_NULL_NULL"; + case TLS_PSK_WITH_AES_256_CBC_SHA384: return "TLS_PSK_WITH_AES_256_CBC_SHA384"; + case TLS_DH_anon_WITH_AES_256_GCM_SHA384: return "TLS_DH_anon_WITH_AES_256_GCM_SHA384"; + case TLS_PSK_WITH_AES_128_GCM_SHA256: return "TLS_PSK_WITH_AES_128_GCM_SHA256"; + case TLS_PSK_WITH_AES_256_GCM_SHA384: return "TLS_PSK_WITH_AES_256_GCM_SHA384"; + case TLS_DHE_PSK_WITH_AES_128_GCM_SHA256: return "TLS_DHE_PSK_WITH_AES_128_GCM_SHA256"; + case TLS_DHE_PSK_WITH_AES_256_GCM_SHA384: return "TLS_DHE_PSK_WITH_AES_256_GCM_SHA384"; + case TLS_RSA_PSK_WITH_AES_128_GCM_SHA256: return "TLS_RSA_PSK_WITH_AES_128_GCM_SHA256"; + case TLS_RSA_PSK_WITH_AES_256_GCM_SHA384: return "TLS_RSA_PSK_WITH_AES_256_GCM_SHA384"; + case TLS_PSK_WITH_AES_128_CBC_SHA256: return "TLS_PSK_WITH_AES_128_CBC_SHA256"; + case TLS_RSA_WITH_NULL_MD5: return "TLS_RSA_WITH_NULL_MD5"; + case TLS_PSK_WITH_NULL_SHA256: return "TLS_PSK_WITH_NULL_SHA256"; + case TLS_PSK_WITH_NULL_SHA384: return "TLS_PSK_WITH_NULL_SHA384"; + case TLS_DHE_PSK_WITH_AES_128_CBC_SHA256: return "TLS_DHE_PSK_WITH_AES_128_CBC_SHA256"; + case TLS_DHE_PSK_WITH_AES_256_CBC_SHA384: return "TLS_DHE_PSK_WITH_AES_256_CBC_SHA384"; + case TLS_DHE_PSK_WITH_NULL_SHA256: return "TLS_DHE_PSK_WITH_NULL_SHA256"; + case TLS_DHE_PSK_WITH_NULL_SHA384: return "TLS_DHE_PSK_WITH_NULL_SHA384"; + case TLS_RSA_PSK_WITH_AES_128_CBC_SHA256: return "TLS_RSA_PSK_WITH_AES_128_CBC_SHA256"; + case TLS_RSA_PSK_WITH_AES_256_CBC_SHA384: return "TLS_RSA_PSK_WITH_AES_256_CBC_SHA384"; + case TLS_KRB5_WITH_DES_CBC_SHA: return "TLS_KRB5_WITH_DES_CBC_SHA"; + case TLS_DHE_DSS_WITH_3DES_EDE_CBC_SHA: return "TLS_DHE_DSS_WITH_3DES_EDE_CBC_SHA"; + case TLS_DHE_RSA_EXPORT_WITH_DES40_CBC_SHA: return "TLS_DHE_RSA_EXPORT_WITH_DES40_CBC_SHA"; + case TLS_DHE_RSA_WITH_DES_CBC_SHA: return "TLS_DHE_RSA_WITH_DES_CBC_SHA"; + case TLS_DHE_RSA_WITH_3DES_EDE_CBC_SHA: return "TLS_DHE_RSA_WITH_3DES_EDE_CBC_SHA"; + case TLS_DH_anon_EXPORT_WITH_RC4_40_MD5: return "TLS_DH_anon_EXPORT_WITH_RC4_40_MD5"; + case TLS_DH_anon_WITH_RC4_128_MD5: return "TLS_DH_anon_WITH_RC4_128_MD5"; + case TLS_DH_anon_EXPORT_WITH_DES40_CBC_SHA: return "TLS_DH_anon_EXPORT_WITH_DES40_CBC_SHA"; + case TLS_DH_anon_WITH_DES_CBC_SHA: return "TLS_DH_anon_WITH_DES_CBC_SHA"; + case TLS_DH_anon_WITH_3DES_EDE_CBC_SHA: return "TLS_DH_anon_WITH_3DES_EDE_CBC_SHA"; + case TLS_DHE_DSS_WITH_DES_CBC_SHA: return "TLS_DHE_DSS_WITH_DES_CBC_SHA"; + case TLS_KRB5_WITH_3DES_EDE_CBC_SHA: return "TLS_KRB5_WITH_3DES_EDE_CBC_SHA"; + case TLS_KRB5_WITH_RC4_128_SHA: return "TLS_KRB5_WITH_RC4_128_SHA"; + case TLS_KRB5_WITH_IDEA_CBC_SHA: return "TLS_KRB5_WITH_IDEA_CBC_SHA"; + case TLS_KRB5_WITH_DES_CBC_MD5: return "TLS_KRB5_WITH_DES_CBC_MD5"; + case TLS_KRB5_WITH_3DES_EDE_CBC_MD5: return "TLS_KRB5_WITH_3DES_EDE_CBC_MD5"; + case TLS_KRB5_WITH_RC4_128_MD5: return "TLS_KRB5_WITH_RC4_128_MD5"; + case TLS_KRB5_WITH_IDEA_CBC_MD5: return "TLS_KRB5_WITH_IDEA_CBC_MD5"; + case TLS_KRB5_EXPORT_WITH_DES_CBC_40_SHA: return "TLS_KRB5_EXPORT_WITH_DES_CBC_40_SHA"; + case TLS_RSA_WITH_DES_CBC_SHA: return "TLS_RSA_WITH_DES_CBC_SHA"; + case TLS_DHE_RSA_WITH_AES_256_CBC_SHA256: return "TLS_DHE_RSA_WITH_AES_256_CBC_SHA256"; + case TLS_RSA_WITH_NULL_SHA: return "TLS_RSA_WITH_NULL_SHA"; + case TLS_RSA_EXPORT_WITH_RC4_40_MD5: return "TLS_RSA_EXPORT_WITH_RC4_40_MD5"; + case TLS_RSA_WITH_RC4_128_MD5: return "TLS_RSA_WITH_RC4_128_MD5"; + case TLS_RSA_WITH_RC4_128_SHA: return "TLS_RSA_WITH_RC4_128_SHA"; + case TLS_RSA_EXPORT_WITH_RC2_CBC_40_MD5: return "TLS_RSA_EXPORT_WITH_RC2_CBC_40_MD5"; + case TLS_RSA_WITH_IDEA_CBC_SHA: return "TLS_RSA_WITH_IDEA_CBC_SHA"; + case TLS_RSA_EXPORT_WITH_DES40_CBC_SHA: return "TLS_RSA_EXPORT_WITH_DES40_CBC_SHA"; + case TLS_DHE_DSS_WITH_AES_256_CBC_SHA256: return "TLS_DHE_DSS_WITH_AES_256_CBC_SHA256"; + case TLS_RSA_WITH_3DES_EDE_CBC_SHA: return "TLS_RSA_WITH_3DES_EDE_CBC_SHA"; + case TLS_DH_DSS_EXPORT_WITH_DES40_CBC_SHA: return "TLS_DH_DSS_EXPORT_WITH_DES40_CBC_SHA"; + case TLS_DH_DSS_WITH_DES_CBC_SHA: return "TLS_DH_DSS_WITH_DES_CBC_SHA"; + case TLS_DH_DSS_WITH_3DES_EDE_CBC_SHA: return "TLS_DH_DSS_WITH_3DES_EDE_CBC_SHA"; + case TLS_DH_RSA_EXPORT_WITH_DES40_CBC_SHA: return "TLS_DH_RSA_EXPORT_WITH_DES40_CBC_SHA"; + case TLS_DH_RSA_WITH_DES_CBC_SHA: return "TLS_DH_RSA_WITH_DES_CBC_SHA"; + case TLS_DH_RSA_WITH_3DES_EDE_CBC_SHA: return "TLS_DH_RSA_WITH_3DES_EDE_CBC_SHA"; + case TLS_DHE_DSS_EXPORT_WITH_DES40_CBC_SHA: return "TLS_DHE_DSS_EXPORT_WITH_DES40_CBC_SHA"; + case TLS_DH_DSS_WITH_CAMELLIA_128_CBC_SHA: return "TLS_DH_DSS_WITH_CAMELLIA_128_CBC_SHA"; + case TLS_DH_anon_WITH_AES_256_CBC_SHA: return "TLS_DH_anon_WITH_AES_256_CBC_SHA"; + case TLS_RSA_WITH_NULL_SHA256: return "TLS_RSA_WITH_NULL_SHA256"; + case TLS_RSA_WITH_AES_128_CBC_SHA256: return "TLS_RSA_WITH_AES_128_CBC_SHA256"; + case TLS_RSA_WITH_AES_256_CBC_SHA256: return "TLS_RSA_WITH_AES_256_CBC_SHA256"; + case TLS_DH_DSS_WITH_AES_128_CBC_SHA256: return "TLS_DH_DSS_WITH_AES_128_CBC_SHA256"; + case TLS_DH_RSA_WITH_AES_128_CBC_SHA256: return "TLS_DH_RSA_WITH_AES_128_CBC_SHA256"; + case TLS_DHE_DSS_WITH_AES_128_CBC_SHA256: return "TLS_DHE_DSS_WITH_AES_128_CBC_SHA256"; + case TLS_RSA_WITH_CAMELLIA_128_CBC_SHA: return "TLS_RSA_WITH_CAMELLIA_128_CBC_SHA"; + case TLS_KRB5_EXPORT_WITH_RC4_40_SHA: return "TLS_KRB5_EXPORT_WITH_RC4_40_SHA"; + case TLS_DH_RSA_WITH_CAMELLIA_128_CBC_SHA: return "TLS_DH_RSA_WITH_CAMELLIA_128_CBC_SHA"; + case TLS_DHE_DSS_WITH_CAMELLIA_128_CBC_SHA: return "TLS_DHE_DSS_WITH_CAMELLIA_128_CBC_SHA"; + case TLS_DHE_RSA_WITH_CAMELLIA_128_CBC_SHA: return "TLS_DHE_RSA_WITH_CAMELLIA_128_CBC_SHA"; + case TLS_DH_anon_WITH_CAMELLIA_128_CBC_SHA: return "TLS_DH_anon_WITH_CAMELLIA_128_CBC_SHA"; + case TLS_DHE_RSA_WITH_AES_128_CBC_SHA256: return "TLS_DHE_RSA_WITH_AES_128_CBC_SHA256"; + case TLS_DH_DSS_WITH_AES_256_CBC_SHA256: return "TLS_DH_DSS_WITH_AES_256_CBC_SHA256"; + case TLS_DH_RSA_WITH_AES_256_CBC_SHA256: return "TLS_DH_RSA_WITH_AES_256_CBC_SHA256"; + case TLS_KRB5_EXPORT_WITH_RC2_CBC_40_SHA: return "TLS_KRB5_EXPORT_WITH_RC2_CBC_40_SHA"; + case TLS_DHE_DSS_WITH_AES_256_CBC_SHA: return "TLS_DHE_DSS_WITH_AES_256_CBC_SHA"; + case TLS_DHE_RSA_WITH_AES_256_CBC_SHA: return "TLS_DHE_RSA_WITH_AES_256_CBC_SHA"; + case TLS_KRB5_EXPORT_WITH_DES_CBC_40_MD5: return "TLS_KRB5_EXPORT_WITH_DES_CBC_40_MD5"; + case TLS_KRB5_EXPORT_WITH_RC2_CBC_40_MD5: return "TLS_KRB5_EXPORT_WITH_RC2_CBC_40_MD5"; + case TLS_KRB5_EXPORT_WITH_RC4_40_MD5: return "TLS_KRB5_EXPORT_WITH_RC4_40_MD5"; + case TLS_PSK_WITH_NULL_SHA: return "TLS_PSK_WITH_NULL_SHA"; + case TLS_DHE_PSK_WITH_NULL_SHA: return "TLS_DHE_PSK_WITH_NULL_SHA"; + case TLS_RSA_PSK_WITH_NULL_SHA: return "TLS_RSA_PSK_WITH_NULL_SHA"; + case TLS_RSA_WITH_AES_128_CBC_SHA: return "TLS_RSA_WITH_AES_128_CBC_SHA"; + case TLS_DH_DSS_WITH_AES_128_CBC_SHA: return "TLS_DH_DSS_WITH_AES_128_CBC_SHA"; + case TLS_DH_RSA_WITH_AES_128_CBC_SHA: return "TLS_DH_RSA_WITH_AES_128_CBC_SHA"; + case TLS_DHE_DSS_WITH_AES_128_CBC_SHA: return "TLS_DHE_DSS_WITH_AES_128_CBC_SHA"; + case TLS_DHE_RSA_WITH_AES_128_CBC_SHA: return "TLS_DHE_RSA_WITH_AES_128_CBC_SHA"; + case TLS_DH_anon_WITH_AES_128_CBC_SHA: return "TLS_DH_anon_WITH_AES_128_CBC_SHA"; + case TLS_RSA_WITH_AES_256_CBC_SHA: return "TLS_RSA_WITH_AES_256_CBC_SHA"; + case TLS_DH_DSS_WITH_AES_256_CBC_SHA: return "TLS_DH_DSS_WITH_AES_256_CBC_SHA"; + case TLS_DH_RSA_WITH_AES_256_CBC_SHA: return "TLS_DH_RSA_WITH_AES_256_CBC_SHA"; + case TLS_AEGIS_128L_SHA256: return "TLS_AEGIS_128L_SHA256"; + case TLS_AEGIS_256_SHA512: return "TLS_AEGIS_256_SHA512"; + case TLS_AES_128_CCM_8_SHA256: return "TLS_AES_128_CCM_8_SHA256"; + case TLS_CHACHA20_POLY1305_SHA256: return "TLS_CHACHA20_POLY1305_SHA256"; + case TLS_AES_256_GCM_SHA384: return "TLS_AES_256_GCM_SHA384"; + case TLS_AES_128_GCM_SHA256: return "TLS_AES_128_GCM_SHA256"; + case TLS_AES_128_CCM_SHA256: return "TLS_AES_128_CCM_SHA256"; + case TLS_FALLBACK_SCSV: return "TLS_FALLBACK_SCSV"; + case TLS_ECDHE_ECDSA_WITH_CAMELLIA_256_CBC_SHA384: return "TLS_ECDHE_ECDSA_WITH_CAMELLIA_256_CBC_SHA384"; + case TLS_ECDH_ECDSA_WITH_CAMELLIA_128_CBC_SHA256: return "TLS_ECDH_ECDSA_WITH_CAMELLIA_128_CBC_SHA256"; + case TLS_ECDH_ECDSA_WITH_CAMELLIA_256_CBC_SHA384: return "TLS_ECDH_ECDSA_WITH_CAMELLIA_256_CBC_SHA384"; + case TLS_ECDHE_RSA_WITH_CAMELLIA_128_CBC_SHA256: return "TLS_ECDHE_RSA_WITH_CAMELLIA_128_CBC_SHA256"; + case TLS_ECDHE_RSA_WITH_CAMELLIA_256_CBC_SHA384: return "TLS_ECDHE_RSA_WITH_CAMELLIA_256_CBC_SHA384"; + case TLS_ECDH_RSA_WITH_CAMELLIA_128_CBC_SHA256: return "TLS_ECDH_RSA_WITH_CAMELLIA_128_CBC_SHA256"; + case TLS_ECDH_RSA_WITH_CAMELLIA_256_CBC_SHA384: return "TLS_ECDH_RSA_WITH_CAMELLIA_256_CBC_SHA384"; + case TLS_RSA_WITH_CAMELLIA_128_GCM_SHA256: return "TLS_RSA_WITH_CAMELLIA_128_GCM_SHA256"; + case TLS_RSA_WITH_CAMELLIA_256_GCM_SHA384: return "TLS_RSA_WITH_CAMELLIA_256_GCM_SHA384"; + case TLS_DHE_RSA_WITH_CAMELLIA_128_GCM_SHA256: return "TLS_DHE_RSA_WITH_CAMELLIA_128_GCM_SHA256"; + case TLS_DHE_RSA_WITH_CAMELLIA_256_GCM_SHA384: return "TLS_DHE_RSA_WITH_CAMELLIA_256_GCM_SHA384"; + case TLS_DH_RSA_WITH_CAMELLIA_128_GCM_SHA256: return "TLS_DH_RSA_WITH_CAMELLIA_128_GCM_SHA256"; + case TLS_DH_RSA_WITH_CAMELLIA_256_GCM_SHA384: return "TLS_DH_RSA_WITH_CAMELLIA_256_GCM_SHA384"; + case TLS_DHE_DSS_WITH_CAMELLIA_128_GCM_SHA256: return "TLS_DHE_DSS_WITH_CAMELLIA_128_GCM_SHA256"; + case TLS_DHE_DSS_WITH_CAMELLIA_256_GCM_SHA384: return "TLS_DHE_DSS_WITH_CAMELLIA_256_GCM_SHA384"; + case TLS_DH_DSS_WITH_CAMELLIA_128_GCM_SHA256: return "TLS_DH_DSS_WITH_CAMELLIA_128_GCM_SHA256"; + case TLS_DH_DSS_WITH_CAMELLIA_256_GCM_SHA384: return "TLS_DH_DSS_WITH_CAMELLIA_256_GCM_SHA384"; + case TLS_DH_anon_WITH_CAMELLIA_128_GCM_SHA256: return "TLS_DH_anon_WITH_CAMELLIA_128_GCM_SHA256"; + case TLS_DH_anon_WITH_CAMELLIA_256_GCM_SHA384: return "TLS_DH_anon_WITH_CAMELLIA_256_GCM_SHA384"; + case TLS_ECDHE_ECDSA_WITH_CAMELLIA_128_GCM_SHA256: return "TLS_ECDHE_ECDSA_WITH_CAMELLIA_128_GCM_SHA256"; + case TLS_ECDHE_ECDSA_WITH_CAMELLIA_256_GCM_SHA384: return "TLS_ECDHE_ECDSA_WITH_CAMELLIA_256_GCM_SHA384"; + case TLS_ECDH_ECDSA_WITH_CAMELLIA_128_GCM_SHA256: return "TLS_ECDH_ECDSA_WITH_CAMELLIA_128_GCM_SHA256"; + case TLS_DHE_PSK_WITH_ARIA_256_CBC_SHA384: return "TLS_DHE_PSK_WITH_ARIA_256_CBC_SHA384"; + case TLS_ECDHE_ECDSA_WITH_ARIA_128_GCM_SHA256: return "TLS_ECDHE_ECDSA_WITH_ARIA_128_GCM_SHA256"; + case TLS_ECDHE_ECDSA_WITH_ARIA_256_GCM_SHA384: return "TLS_ECDHE_ECDSA_WITH_ARIA_256_GCM_SHA384"; + case TLS_ECDH_ECDSA_WITH_ARIA_128_GCM_SHA256: return "TLS_ECDH_ECDSA_WITH_ARIA_128_GCM_SHA256"; + case TLS_ECDH_ECDSA_WITH_ARIA_256_GCM_SHA384: return "TLS_ECDH_ECDSA_WITH_ARIA_256_GCM_SHA384"; + case TLS_ECDHE_RSA_WITH_ARIA_128_GCM_SHA256: return "TLS_ECDHE_RSA_WITH_ARIA_128_GCM_SHA256"; + case TLS_ECDHE_RSA_WITH_ARIA_256_GCM_SHA384: return "TLS_ECDHE_RSA_WITH_ARIA_256_GCM_SHA384"; + case TLS_ECDH_RSA_WITH_ARIA_128_GCM_SHA256: return "TLS_ECDH_RSA_WITH_ARIA_128_GCM_SHA256"; + case TLS_ECDH_RSA_WITH_ARIA_256_GCM_SHA384: return "TLS_ECDH_RSA_WITH_ARIA_256_GCM_SHA384"; + case TLS_PSK_WITH_ARIA_128_CBC_SHA256: return "TLS_PSK_WITH_ARIA_128_CBC_SHA256"; + case TLS_PSK_WITH_ARIA_256_CBC_SHA384: return "TLS_PSK_WITH_ARIA_256_CBC_SHA384"; + case TLS_DHE_PSK_WITH_ARIA_128_CBC_SHA256: return "TLS_DHE_PSK_WITH_ARIA_128_CBC_SHA256"; + case TLS_ECDHE_ECDSA_WITH_CAMELLIA_128_CBC_SHA256: return "TLS_ECDHE_ECDSA_WITH_CAMELLIA_128_CBC_SHA256"; + case TLS_RSA_PSK_WITH_ARIA_128_CBC_SHA256: return "TLS_RSA_PSK_WITH_ARIA_128_CBC_SHA256"; + case TLS_RSA_PSK_WITH_ARIA_256_CBC_SHA384: return "TLS_RSA_PSK_WITH_ARIA_256_CBC_SHA384"; + case TLS_PSK_WITH_ARIA_128_GCM_SHA256: return "TLS_PSK_WITH_ARIA_128_GCM_SHA256"; + case TLS_PSK_WITH_ARIA_256_GCM_SHA384: return "TLS_PSK_WITH_ARIA_256_GCM_SHA384"; + case TLS_DHE_PSK_WITH_ARIA_128_GCM_SHA256: return "TLS_DHE_PSK_WITH_ARIA_128_GCM_SHA256"; + case TLS_DHE_PSK_WITH_ARIA_256_GCM_SHA384: return "TLS_DHE_PSK_WITH_ARIA_256_GCM_SHA384"; + case TLS_RSA_PSK_WITH_ARIA_128_GCM_SHA256: return "TLS_RSA_PSK_WITH_ARIA_128_GCM_SHA256"; + case TLS_RSA_PSK_WITH_ARIA_256_GCM_SHA384: return "TLS_RSA_PSK_WITH_ARIA_256_GCM_SHA384"; + case TLS_ECDHE_PSK_WITH_ARIA_128_CBC_SHA256: return "TLS_ECDHE_PSK_WITH_ARIA_128_CBC_SHA256"; + case TLS_ECDHE_PSK_WITH_ARIA_256_CBC_SHA384: return "TLS_ECDHE_PSK_WITH_ARIA_256_CBC_SHA384"; + case TLS_PSK_DHE_WITH_AES_256_CCM_8: return "TLS_PSK_DHE_WITH_AES_256_CCM_8"; + case TLS_RSA_WITH_AES_128_CCM_8: return "TLS_RSA_WITH_AES_128_CCM_8"; + case TLS_RSA_WITH_AES_256_CCM_8: return "TLS_RSA_WITH_AES_256_CCM_8"; + case TLS_DHE_RSA_WITH_AES_128_CCM_8: return "TLS_DHE_RSA_WITH_AES_128_CCM_8"; + case TLS_DHE_RSA_WITH_AES_256_CCM_8: return "TLS_DHE_RSA_WITH_AES_256_CCM_8"; + case TLS_PSK_WITH_AES_128_CCM: return "TLS_PSK_WITH_AES_128_CCM"; + case TLS_PSK_WITH_AES_256_CCM: return "TLS_PSK_WITH_AES_256_CCM"; + case TLS_DHE_PSK_WITH_AES_128_CCM: return "TLS_DHE_PSK_WITH_AES_128_CCM"; + case TLS_DHE_PSK_WITH_AES_256_CCM: return "TLS_DHE_PSK_WITH_AES_256_CCM"; + case TLS_PSK_WITH_AES_128_CCM_8: return "TLS_PSK_WITH_AES_128_CCM_8"; + case TLS_PSK_WITH_AES_256_CCM_8: return "TLS_PSK_WITH_AES_256_CCM_8"; + case TLS_PSK_DHE_WITH_AES_128_CCM_8: return "TLS_PSK_DHE_WITH_AES_128_CCM_8"; + case TLS_DHE_RSA_WITH_AES_256_CCM: return "TLS_DHE_RSA_WITH_AES_256_CCM"; + case TLS_ECDHE_ECDSA_WITH_AES_128_CCM: return "TLS_ECDHE_ECDSA_WITH_AES_128_CCM"; + case TLS_ECDHE_ECDSA_WITH_AES_256_CCM: return "TLS_ECDHE_ECDSA_WITH_AES_256_CCM"; + case TLS_ECDHE_ECDSA_WITH_AES_128_CCM_8: return "TLS_ECDHE_ECDSA_WITH_AES_128_CCM_8"; + case TLS_ECDHE_ECDSA_WITH_AES_256_CCM_8: return "TLS_ECDHE_ECDSA_WITH_AES_256_CCM_8"; + case TLS_ECCPWD_WITH_AES_128_GCM_SHA256: return "TLS_ECCPWD_WITH_AES_128_GCM_SHA256"; + case TLS_ECCPWD_WITH_AES_256_GCM_SHA384: return "TLS_ECCPWD_WITH_AES_256_GCM_SHA384"; + case TLS_ECCPWD_WITH_AES_128_CCM_SHA256: return "TLS_ECCPWD_WITH_AES_128_CCM_SHA256"; + case TLS_ECCPWD_WITH_AES_256_CCM_SHA384: return "TLS_ECCPWD_WITH_AES_256_CCM_SHA384"; + case TLS_SHA256_SHA256: return "TLS_SHA256_SHA256"; + case TLS_SHA384_SHA384: return "TLS_SHA384_SHA384"; + case TLS_PSK_WITH_CAMELLIA_256_CBC_SHA384: return "TLS_PSK_WITH_CAMELLIA_256_CBC_SHA384"; + case TLS_ECDHE_RSA_WITH_CAMELLIA_128_GCM_SHA256: return "TLS_ECDHE_RSA_WITH_CAMELLIA_128_GCM_SHA256"; + case TLS_ECDHE_RSA_WITH_CAMELLIA_256_GCM_SHA384: return "TLS_ECDHE_RSA_WITH_CAMELLIA_256_GCM_SHA384"; + case TLS_ECDH_RSA_WITH_CAMELLIA_128_GCM_SHA256: return "TLS_ECDH_RSA_WITH_CAMELLIA_128_GCM_SHA256"; + case TLS_ECDH_RSA_WITH_CAMELLIA_256_GCM_SHA384: return "TLS_ECDH_RSA_WITH_CAMELLIA_256_GCM_SHA384"; + case TLS_PSK_WITH_CAMELLIA_128_GCM_SHA256: return "TLS_PSK_WITH_CAMELLIA_128_GCM_SHA256"; + case TLS_PSK_WITH_CAMELLIA_256_GCM_SHA384: return "TLS_PSK_WITH_CAMELLIA_256_GCM_SHA384"; + case TLS_DHE_PSK_WITH_CAMELLIA_128_GCM_SHA256: return "TLS_DHE_PSK_WITH_CAMELLIA_128_GCM_SHA256"; + case TLS_DHE_PSK_WITH_CAMELLIA_256_GCM_SHA384: return "TLS_DHE_PSK_WITH_CAMELLIA_256_GCM_SHA384"; + case TLS_RSA_PSK_WITH_CAMELLIA_128_GCM_SHA256: return "TLS_RSA_PSK_WITH_CAMELLIA_128_GCM_SHA256"; + case TLS_RSA_PSK_WITH_CAMELLIA_256_GCM_SHA384: return "TLS_RSA_PSK_WITH_CAMELLIA_256_GCM_SHA384"; + case TLS_PSK_WITH_CAMELLIA_128_CBC_SHA256: return "TLS_PSK_WITH_CAMELLIA_128_CBC_SHA256"; + case TLS_ECDH_ECDSA_WITH_CAMELLIA_256_GCM_SHA384: return "TLS_ECDH_ECDSA_WITH_CAMELLIA_256_GCM_SHA384"; + case TLS_DHE_PSK_WITH_CAMELLIA_128_CBC_SHA256: return "TLS_DHE_PSK_WITH_CAMELLIA_128_CBC_SHA256"; + case TLS_DHE_PSK_WITH_CAMELLIA_256_CBC_SHA384: return "TLS_DHE_PSK_WITH_CAMELLIA_256_CBC_SHA384"; + case TLS_RSA_PSK_WITH_CAMELLIA_128_CBC_SHA256: return "TLS_RSA_PSK_WITH_CAMELLIA_128_CBC_SHA256"; + case TLS_RSA_PSK_WITH_CAMELLIA_256_CBC_SHA384: return "TLS_RSA_PSK_WITH_CAMELLIA_256_CBC_SHA384"; + case TLS_ECDHE_PSK_WITH_CAMELLIA_128_CBC_SHA256: return "TLS_ECDHE_PSK_WITH_CAMELLIA_128_CBC_SHA256"; + case TLS_ECDHE_PSK_WITH_CAMELLIA_256_CBC_SHA384: return "TLS_ECDHE_PSK_WITH_CAMELLIA_256_CBC_SHA384"; + case TLS_RSA_WITH_AES_128_CCM: return "TLS_RSA_WITH_AES_128_CCM"; + case TLS_RSA_WITH_AES_256_CCM: return "TLS_RSA_WITH_AES_256_CCM"; + case TLS_DHE_RSA_WITH_AES_128_CCM: return "TLS_DHE_RSA_WITH_AES_128_CCM"; + case TLS_ECDH_anon_WITH_AES_128_CBC_SHA: return "TLS_ECDH_anon_WITH_AES_128_CBC_SHA"; + case TLS_ECDHE_ECDSA_WITH_AES_128_CBC_SHA256: return "TLS_ECDHE_ECDSA_WITH_AES_128_CBC_SHA256"; + case TLS_ECDH_anon_WITH_3DES_EDE_CBC_SHA: return "TLS_ECDH_anon_WITH_3DES_EDE_CBC_SHA"; + case TLS_ECDH_anon_WITH_AES_256_CBC_SHA: return "TLS_ECDH_anon_WITH_AES_256_CBC_SHA"; + case TLS_SRP_SHA_WITH_3DES_EDE_CBC_SHA: return "TLS_SRP_SHA_WITH_3DES_EDE_CBC_SHA"; + case TLS_SRP_SHA_RSA_WITH_3DES_EDE_CBC_SHA: return "TLS_SRP_SHA_RSA_WITH_3DES_EDE_CBC_SHA"; + case TLS_SRP_SHA_DSS_WITH_3DES_EDE_CBC_SHA: return "TLS_SRP_SHA_DSS_WITH_3DES_EDE_CBC_SHA"; + case TLS_SRP_SHA_WITH_AES_128_CBC_SHA: return "TLS_SRP_SHA_WITH_AES_128_CBC_SHA"; + case TLS_SRP_SHA_RSA_WITH_AES_128_CBC_SHA: return "TLS_SRP_SHA_RSA_WITH_AES_128_CBC_SHA"; + case TLS_SRP_SHA_DSS_WITH_AES_128_CBC_SHA: return "TLS_SRP_SHA_DSS_WITH_AES_128_CBC_SHA"; + case TLS_SRP_SHA_WITH_AES_256_CBC_SHA: return "TLS_SRP_SHA_WITH_AES_256_CBC_SHA"; + case TLS_SRP_SHA_RSA_WITH_AES_256_CBC_SHA: return "TLS_SRP_SHA_RSA_WITH_AES_256_CBC_SHA"; + case TLS_SRP_SHA_DSS_WITH_AES_256_CBC_SHA: return "TLS_SRP_SHA_DSS_WITH_AES_256_CBC_SHA"; + case TLS_ECDH_anon_WITH_RC4_128_SHA: return "TLS_ECDH_anon_WITH_RC4_128_SHA"; + case TLS_ECDHE_ECDSA_WITH_AES_256_CBC_SHA384: return "TLS_ECDHE_ECDSA_WITH_AES_256_CBC_SHA384"; + case TLS_ECDH_ECDSA_WITH_AES_128_CBC_SHA256: return "TLS_ECDH_ECDSA_WITH_AES_128_CBC_SHA256"; + case TLS_ECDH_ECDSA_WITH_AES_256_CBC_SHA384: return "TLS_ECDH_ECDSA_WITH_AES_256_CBC_SHA384"; + case TLS_ECDHE_RSA_WITH_AES_128_CBC_SHA256: return "TLS_ECDHE_RSA_WITH_AES_128_CBC_SHA256"; + case TLS_ECDHE_RSA_WITH_AES_256_CBC_SHA384: return "TLS_ECDHE_RSA_WITH_AES_256_CBC_SHA384"; + case TLS_ECDH_RSA_WITH_AES_128_CBC_SHA256: return "TLS_ECDH_RSA_WITH_AES_128_CBC_SHA256"; + case TLS_ECDH_RSA_WITH_AES_256_CBC_SHA384: return "TLS_ECDH_RSA_WITH_AES_256_CBC_SHA384"; + case TLS_ECDHE_ECDSA_WITH_AES_128_GCM_SHA256: return "TLS_ECDHE_ECDSA_WITH_AES_128_GCM_SHA256"; + case TLS_ECDHE_ECDSA_WITH_AES_256_GCM_SHA384: return "TLS_ECDHE_ECDSA_WITH_AES_256_GCM_SHA384"; + case TLS_ECDH_ECDSA_WITH_AES_128_GCM_SHA256: return "TLS_ECDH_ECDSA_WITH_AES_128_GCM_SHA256"; + case TLS_ECDH_RSA_WITH_NULL_SHA: return "TLS_ECDH_RSA_WITH_NULL_SHA"; + case TLS_ECDH_ECDSA_WITH_NULL_SHA: return "TLS_ECDH_ECDSA_WITH_NULL_SHA"; + case TLS_ECDH_ECDSA_WITH_RC4_128_SHA: return "TLS_ECDH_ECDSA_WITH_RC4_128_SHA"; + case TLS_ECDH_ECDSA_WITH_3DES_EDE_CBC_SHA: return "TLS_ECDH_ECDSA_WITH_3DES_EDE_CBC_SHA"; + case TLS_ECDH_ECDSA_WITH_AES_128_CBC_SHA: return "TLS_ECDH_ECDSA_WITH_AES_128_CBC_SHA"; + case TLS_ECDH_ECDSA_WITH_AES_256_CBC_SHA: return "TLS_ECDH_ECDSA_WITH_AES_256_CBC_SHA"; + case TLS_ECDHE_ECDSA_WITH_NULL_SHA: return "TLS_ECDHE_ECDSA_WITH_NULL_SHA"; + case TLS_ECDHE_ECDSA_WITH_RC4_128_SHA: return "TLS_ECDHE_ECDSA_WITH_RC4_128_SHA"; + case TLS_ECDHE_ECDSA_WITH_3DES_EDE_CBC_SHA: return "TLS_ECDHE_ECDSA_WITH_3DES_EDE_CBC_SHA"; + case TLS_ECDHE_ECDSA_WITH_AES_128_CBC_SHA: return "TLS_ECDHE_ECDSA_WITH_AES_128_CBC_SHA"; + case TLS_ECDHE_ECDSA_WITH_AES_256_CBC_SHA: return "TLS_ECDHE_ECDSA_WITH_AES_256_CBC_SHA"; + case TLS_DH_anon_WITH_ARIA_128_GCM_SHA256: return "TLS_DH_anon_WITH_ARIA_128_GCM_SHA256"; + case TLS_ECDH_RSA_WITH_RC4_128_SHA: return "TLS_ECDH_RSA_WITH_RC4_128_SHA"; + case TLS_ECDH_RSA_WITH_3DES_EDE_CBC_SHA: return "TLS_ECDH_RSA_WITH_3DES_EDE_CBC_SHA"; + case TLS_ECDH_RSA_WITH_AES_128_CBC_SHA: return "TLS_ECDH_RSA_WITH_AES_128_CBC_SHA"; + case TLS_ECDH_RSA_WITH_AES_256_CBC_SHA: return "TLS_ECDH_RSA_WITH_AES_256_CBC_SHA"; + case TLS_ECDHE_RSA_WITH_NULL_SHA: return "TLS_ECDHE_RSA_WITH_NULL_SHA"; + case TLS_ECDHE_RSA_WITH_RC4_128_SHA: return "TLS_ECDHE_RSA_WITH_RC4_128_SHA"; + case TLS_ECDHE_RSA_WITH_3DES_EDE_CBC_SHA: return "TLS_ECDHE_RSA_WITH_3DES_EDE_CBC_SHA"; + case TLS_ECDHE_RSA_WITH_AES_128_CBC_SHA: return "TLS_ECDHE_RSA_WITH_AES_128_CBC_SHA"; + case TLS_ECDHE_RSA_WITH_AES_256_CBC_SHA: return "TLS_ECDHE_RSA_WITH_AES_256_CBC_SHA"; + case TLS_ECDH_anon_WITH_NULL_SHA: return "TLS_ECDH_anon_WITH_NULL_SHA"; + case TLS_RSA_WITH_ARIA_128_GCM_SHA256: return "TLS_RSA_WITH_ARIA_128_GCM_SHA256"; + case TLS_DHE_RSA_WITH_ARIA_256_CBC_SHA384: return "TLS_DHE_RSA_WITH_ARIA_256_CBC_SHA384"; + case TLS_DH_anon_WITH_ARIA_128_CBC_SHA256: return "TLS_DH_anon_WITH_ARIA_128_CBC_SHA256"; + case TLS_DH_anon_WITH_ARIA_256_CBC_SHA384: return "TLS_DH_anon_WITH_ARIA_256_CBC_SHA384"; + case TLS_ECDHE_ECDSA_WITH_ARIA_128_CBC_SHA256: return "TLS_ECDHE_ECDSA_WITH_ARIA_128_CBC_SHA256"; + case TLS_ECDHE_ECDSA_WITH_ARIA_256_CBC_SHA384: return "TLS_ECDHE_ECDSA_WITH_ARIA_256_CBC_SHA384"; + case TLS_ECDH_ECDSA_WITH_ARIA_128_CBC_SHA256: return "TLS_ECDH_ECDSA_WITH_ARIA_128_CBC_SHA256"; + case TLS_ECDH_ECDSA_WITH_ARIA_256_CBC_SHA384: return "TLS_ECDH_ECDSA_WITH_ARIA_256_CBC_SHA384"; + case TLS_ECDHE_RSA_WITH_ARIA_128_CBC_SHA256: return "TLS_ECDHE_RSA_WITH_ARIA_128_CBC_SHA256"; + case TLS_ECDHE_RSA_WITH_ARIA_256_CBC_SHA384: return "TLS_ECDHE_RSA_WITH_ARIA_256_CBC_SHA384"; + case TLS_ECDH_RSA_WITH_ARIA_128_CBC_SHA256: return "TLS_ECDH_RSA_WITH_ARIA_128_CBC_SHA256"; + case TLS_ECDH_RSA_WITH_ARIA_256_CBC_SHA384: return "TLS_ECDH_RSA_WITH_ARIA_256_CBC_SHA384"; + case TLS_ECDHE_RSA_WITH_AES_128_GCM_SHA256: return "TLS_ECDHE_RSA_WITH_AES_128_GCM_SHA256"; + case TLS_RSA_WITH_ARIA_256_GCM_SHA384: return "TLS_RSA_WITH_ARIA_256_GCM_SHA384"; + case TLS_DHE_RSA_WITH_ARIA_128_GCM_SHA256: return "TLS_DHE_RSA_WITH_ARIA_128_GCM_SHA256"; + case TLS_DHE_RSA_WITH_ARIA_256_GCM_SHA384: return "TLS_DHE_RSA_WITH_ARIA_256_GCM_SHA384"; + case TLS_DH_RSA_WITH_ARIA_128_GCM_SHA256: return "TLS_DH_RSA_WITH_ARIA_128_GCM_SHA256"; + case TLS_DH_RSA_WITH_ARIA_256_GCM_SHA384: return "TLS_DH_RSA_WITH_ARIA_256_GCM_SHA384"; + case TLS_DHE_DSS_WITH_ARIA_128_GCM_SHA256: return "TLS_DHE_DSS_WITH_ARIA_128_GCM_SHA256"; + case TLS_DHE_DSS_WITH_ARIA_256_GCM_SHA384: return "TLS_DHE_DSS_WITH_ARIA_256_GCM_SHA384"; + case TLS_DH_DSS_WITH_ARIA_128_GCM_SHA256: return "TLS_DH_DSS_WITH_ARIA_128_GCM_SHA256"; + case TLS_DH_DSS_WITH_ARIA_256_GCM_SHA384: return "TLS_DH_DSS_WITH_ARIA_256_GCM_SHA384"; + case TLS_DH_anon_WITH_ARIA_256_GCM_SHA384: return "TLS_DH_anon_WITH_ARIA_256_GCM_SHA384"; + case TLS_DHE_DSS_WITH_ARIA_256_CBC_SHA384: return "TLS_DHE_DSS_WITH_ARIA_256_CBC_SHA384"; + case TLS_ECDH_ECDSA_WITH_AES_256_GCM_SHA384: return "TLS_ECDH_ECDSA_WITH_AES_256_GCM_SHA384"; + case TLS_ECDHE_RSA_WITH_AES_256_GCM_SHA384: return "TLS_ECDHE_RSA_WITH_AES_256_GCM_SHA384"; + case TLS_ECDH_RSA_WITH_AES_128_GCM_SHA256: return "TLS_ECDH_RSA_WITH_AES_128_GCM_SHA256"; + case TLS_ECDH_RSA_WITH_AES_256_GCM_SHA384: return "TLS_ECDH_RSA_WITH_AES_256_GCM_SHA384"; + case TLS_ECDHE_PSK_WITH_RC4_128_SHA: return "TLS_ECDHE_PSK_WITH_RC4_128_SHA"; + case TLS_ECDHE_PSK_WITH_3DES_EDE_CBC_SHA: return "TLS_ECDHE_PSK_WITH_3DES_EDE_CBC_SHA"; + case TLS_ECDHE_PSK_WITH_AES_128_CBC_SHA: return "TLS_ECDHE_PSK_WITH_AES_128_CBC_SHA"; + case TLS_ECDHE_PSK_WITH_AES_256_CBC_SHA: return "TLS_ECDHE_PSK_WITH_AES_256_CBC_SHA"; + case TLS_ECDHE_PSK_WITH_AES_128_CBC_SHA256: return "TLS_ECDHE_PSK_WITH_AES_128_CBC_SHA256"; + case TLS_ECDHE_PSK_WITH_AES_256_CBC_SHA384: return "TLS_ECDHE_PSK_WITH_AES_256_CBC_SHA384"; + case TLS_ECDHE_PSK_WITH_NULL_SHA256: return "TLS_ECDHE_PSK_WITH_NULL_SHA256"; + case TLS_ECDHE_PSK_WITH_NULL_SHA384: return "TLS_ECDHE_PSK_WITH_NULL_SHA384"; + case TLS_RSA_WITH_ARIA_128_CBC_SHA256: return "TLS_RSA_WITH_ARIA_128_CBC_SHA256"; + case TLS_RSA_WITH_ARIA_256_CBC_SHA384: return "TLS_RSA_WITH_ARIA_256_CBC_SHA384"; + case TLS_DH_DSS_WITH_ARIA_128_CBC_SHA256: return "TLS_DH_DSS_WITH_ARIA_128_CBC_SHA256"; + case TLS_DH_DSS_WITH_ARIA_256_CBC_SHA384: return "TLS_DH_DSS_WITH_ARIA_256_CBC_SHA384"; + case TLS_DH_RSA_WITH_ARIA_128_CBC_SHA256: return "TLS_DH_RSA_WITH_ARIA_128_CBC_SHA256"; + case TLS_DH_RSA_WITH_ARIA_256_CBC_SHA384: return "TLS_DH_RSA_WITH_ARIA_256_CBC_SHA384"; + case TLS_DHE_DSS_WITH_ARIA_128_CBC_SHA256: return "TLS_DHE_DSS_WITH_ARIA_128_CBC_SHA256"; + case TLS_DHE_RSA_WITH_ARIA_128_CBC_SHA256: return "TLS_DHE_RSA_WITH_ARIA_128_CBC_SHA256"; + case TLS_ECDHE_PSK_WITH_NULL_SHA: return "TLS_ECDHE_PSK_WITH_NULL_SHA"; + case TLS_GOSTR341112_256_WITH_KUZNYECHIK_MGM_L: return "TLS_GOSTR341112_256_WITH_KUZNYECHIK_MGM_L"; + case TLS_GOSTR341112_256_WITH_MAGMA_MGM_S: return "TLS_GOSTR341112_256_WITH_MAGMA_MGM_S"; + case TLS_GOSTR341112_256_WITH_KUZNYECHIK_MGM_S: return "TLS_GOSTR341112_256_WITH_KUZNYECHIK_MGM_S"; + case TLS_GOSTR341112_256_WITH_MAGMA_MGM_L: return "TLS_GOSTR341112_256_WITH_MAGMA_MGM_L"; + case TLS_GOSTR341112_256_WITH_28147_CNT_IMIT: return "TLS_GOSTR341112_256_WITH_28147_CNT_IMIT"; + case TLS_GOSTR341112_256_WITH_MAGMA_CTR_OMAC: return "TLS_GOSTR341112_256_WITH_MAGMA_CTR_OMAC"; + case TLS_GOSTR341112_256_WITH_KUZNYECHIK_CTR_OMAC: return "TLS_GOSTR341112_256_WITH_KUZNYECHIK_CTR_OMAC"; + case TLS_ECDHE_RSA_WITH_CHACHA20_POLY1305_SHA256: return "TLS_ECDHE_RSA_WITH_CHACHA20_POLY1305_SHA256"; + case TLS_ECDHE_ECDSA_WITH_CHACHA20_POLY1305_SHA256: return "TLS_ECDHE_ECDSA_WITH_CHACHA20_POLY1305_SHA256"; + case TLS_DHE_RSA_WITH_CHACHA20_POLY1305_SHA256: return "TLS_DHE_RSA_WITH_CHACHA20_POLY1305_SHA256"; + case TLS_PSK_WITH_CHACHA20_POLY1305_SHA256: return "TLS_PSK_WITH_CHACHA20_POLY1305_SHA256"; + case TLS_ECDHE_PSK_WITH_CHACHA20_POLY1305_SHA256: return "TLS_ECDHE_PSK_WITH_CHACHA20_POLY1305_SHA256"; + case TLS_DHE_PSK_WITH_CHACHA20_POLY1305_SHA256: return "TLS_DHE_PSK_WITH_CHACHA20_POLY1305_SHA256"; + case TLS_RSA_PSK_WITH_CHACHA20_POLY1305_SHA256: return "TLS_RSA_PSK_WITH_CHACHA20_POLY1305_SHA256"; + case TLS_ECDHE_PSK_WITH_AES_128_GCM_SHA256: return "TLS_ECDHE_PSK_WITH_AES_128_GCM_SHA256"; + case TLS_ECDHE_PSK_WITH_AES_256_GCM_SHA384: return "TLS_ECDHE_PSK_WITH_AES_256_GCM_SHA384"; + case TLS_ECDHE_PSK_WITH_AES_128_CCM_8_SHA256: return "TLS_ECDHE_PSK_WITH_AES_128_CCM_8_SHA256"; + case TLS_ECDHE_PSK_WITH_AES_128_CCM_SHA256: return "TLS_ECDHE_PSK_WITH_AES_128_CCM_SHA256"; + default: + ; + } + return nullptr; + } +}; + +class supported_groups : public encoded { + +public: + void write_json(json_object &o) const { + const char *name = get_name(); + if (name == nullptr) { + o.print_key_unknown_code("supported_groups", encoded::value()); + } else { + o.print_key_string("supported_groups", name); + } + } + enum code { + sect163k1 = 1, + sect163r1 = 2, + sect163r2 = 3, + sect193r1 = 4, + sect193r2 = 5, + sect233k1 = 6, + sect233r1 = 7, + sect239k1 = 8, + sect283k1 = 9, + sect283r1 = 10, + sect409k1 = 11, + sect409r1 = 12, + sect571k1 = 13, + sect571r1 = 14, + secp160k1 = 15, + secp160r1 = 16, + secp160r2 = 17, + secp192k1 = 18, + secp192r1 = 19, + secp224k1 = 20, + secp224r1 = 21, + secp256k1 = 22, + secp256r1 = 23, + secp384r1 = 24, + secp521r1 = 25, + brainpoolP256r1 = 26, + brainpoolP384r1 = 27, + brainpoolP512r1 = 28, + x25519 = 29, + x448 = 30, + brainpoolP256r1tls13 = 31, + brainpoolP384r1tls13 = 32, + brainpoolP512r1tls13 = 33, + GC256A = 34, + GC256B = 35, + GC256C = 36, + GC256D = 37, + GC512A = 38, + GC512B = 39, + GC512C = 40, + curveSM2 = 41, + ffdhe2048 = 256, + ffdhe3072 = 257, + ffdhe4096 = 258, + ffdhe6144 = 259, + ffdhe8192 = 260, + MLKEM512 = 512, + MLKEM768 = 513, + MLKEM1024 = 514, + SecP256r1MLKEM768 = 4587, + X25519MLKEM768 = 4588, + X25519Kyber768Draft00 = 25497, + SecP256r1Kyber768Draft00 = 25498, + arbitrary_explicit_prime_curves = 65281, + arbitrary_explicit_char2_curves = 65282, + }; + const char *get_name() const { + switch(encoded::value()) { + case sect163k1: return "sect163k1"; + case sect163r1: return "sect163r1"; + case sect163r2: return "sect163r2"; + case sect193r1: return "sect193r1"; + case sect193r2: return "sect193r2"; + case sect233k1: return "sect233k1"; + case sect233r1: return "sect233r1"; + case sect239k1: return "sect239k1"; + case sect283k1: return "sect283k1"; + case sect283r1: return "sect283r1"; + case sect409k1: return "sect409k1"; + case sect409r1: return "sect409r1"; + case sect571k1: return "sect571k1"; + case sect571r1: return "sect571r1"; + case secp160k1: return "secp160k1"; + case secp160r1: return "secp160r1"; + case secp160r2: return "secp160r2"; + case secp192k1: return "secp192k1"; + case secp192r1: return "secp192r1"; + case secp224k1: return "secp224k1"; + case secp224r1: return "secp224r1"; + case secp256k1: return "secp256k1"; + case secp256r1: return "secp256r1"; + case secp384r1: return "secp384r1"; + case secp521r1: return "secp521r1"; + case brainpoolP256r1: return "brainpoolP256r1"; + case brainpoolP384r1: return "brainpoolP384r1"; + case brainpoolP512r1: return "brainpoolP512r1"; + case x25519: return "x25519"; + case x448: return "x448"; + case brainpoolP256r1tls13: return "brainpoolP256r1tls13"; + case brainpoolP384r1tls13: return "brainpoolP384r1tls13"; + case brainpoolP512r1tls13: return "brainpoolP512r1tls13"; + case GC256A: return "GC256A"; + case GC256B: return "GC256B"; + case GC256C: return "GC256C"; + case GC256D: return "GC256D"; + case GC512A: return "GC512A"; + case GC512B: return "GC512B"; + case GC512C: return "GC512C"; + case curveSM2: return "curveSM2"; + case ffdhe2048: return "ffdhe2048"; + case ffdhe3072: return "ffdhe3072"; + case ffdhe4096: return "ffdhe4096"; + case ffdhe6144: return "ffdhe6144"; + case ffdhe8192: return "ffdhe8192"; + case MLKEM512: return "MLKEM512"; + case MLKEM768: return "MLKEM768"; + case MLKEM1024: return "MLKEM1024"; + case SecP256r1MLKEM768: return "SecP256r1MLKEM768"; + case X25519MLKEM768: return "X25519MLKEM768"; + case X25519Kyber768Draft00: return "X25519Kyber768Draft00"; + case SecP256r1Kyber768Draft00: return "SecP256r1Kyber768Draft00"; + case arbitrary_explicit_prime_curves: return "arbitrary_explicit_prime_curves"; + case arbitrary_explicit_char2_curves: return "arbitrary_explicit_char2_curves"; + default: + ; + } + return nullptr; + } +}; + +} // namespace tls + +#endif // TLS_PARAMETERS_HPP + diff --git a/src/libmerc/udp.h b/src/libmerc/udp.h index 29555233..304561cd 100644 --- a/src/libmerc/udp.h +++ b/src/libmerc/udp.h @@ -69,7 +69,26 @@ class udp { // struct ports is a simple public helper used to return port info // - struct ports { uint16_t src; uint16_t dst; }; + struct ports { + uint16_t src; + uint16_t dst; + + /// returns true if either the source port or the destination + /// port matches \param nbo_value, a \ref uint16_t in network + /// byte order. + /// + bool either_matches(uint16_t nbo_value) const { + return (dst == nbo_value) || (src == nbo_value); + } + + /// returns true if either the source port or the destination + /// port matches any of the inputs, each of which must be \ref + /// uint16_t in network byte order. + /// + template + bool either_matches_any(Args... nbo_value) { return (... or ((nbo_value == src) || (nbo_value == dst))); } + + }; // get_ports() returns the source and destination ports, if this // is a valid UDP packet; otherwise, { 0, 0 } is returned to diff --git a/src/libmerc/utf8.hpp b/src/libmerc/utf8.hpp index 85f047ee..827db91e 100644 --- a/src/libmerc/utf8.hpp +++ b/src/libmerc/utf8.hpp @@ -928,4 +928,84 @@ inline bool utf8_string::unit_test(FILE *output) { return passed; } +/// a class that constructs and holds a UTF-8 encoded string that is +/// safe for use in JSON, if possible. This class is suitable for +/// processing potentially unsafe data (e.g. from packets). +/// +template +class utf8_safe_string { + output_buffer buf; + +public: + + /// constructs a \ref utf8_safe_string, if possible, from a + /// potentially unsafe string in the \ref datum \param + /// unsafe_string + /// + utf8_safe_string(const datum &unsafe_string) { + if (utf8_string::write(buf, unsafe_string.data, unsafe_string.length())) { + buf.add_null(); + } else { + buf.trunc = 1; // mark buffer as truncated to prevent its use + } + } + + /// returns a JSON-escaped utf8 string, or the \param + /// default_string specified by the caller + /// + const char *get_string_or_default(const char* default_string) const { + if (buf.trunc == 1) { + return default_string; + } + return buf.get_buffer_start(); + } + + /// performs unit tests for \ref class utf8_safe_string and + /// returns `true` if they all pass, and `false` otherwise + /// + friend bool utf8_safe_string_unit_test(); + +}; + +[[maybe_unused]] static bool utf8_safe_string_unit_test() { + + // verify that correct utf8 is processed correctly and + // accepted if it fits into the output buffer; here we use the + // ancient greek word for cosmos + // + const uint8_t good_utf8[] = { + 0xce, 0xba, 0xe1, 0xbd, 0xb9, 0xcf, 0x83, 0xce, + 0xbc, 0xce, 0xb5 + }; + datum good{good_utf8, good_utf8 + sizeof(good_utf8)}; + utf8_safe_string<32> safe{good}; + const char *default_str = "default"; + if (safe.get_string_or_default(default_str) != safe.buf.get_buffer_start()) { + return false; + } + + // verify that correct utf8 is processed correctly and + // rejected if it does not fit into the output buffer + // + utf8_safe_string<4> safe2{good}; + if (safe2.get_string_or_default(default_str) != default_str) { + return false; + } + + // verify that incorrect utf8 is processed correctly; here we + // use an unexpected continuation byte + // + const uint8_t bad_utf8[] = { + 0x80, 0xbf, 0x80 + }; + datum bad{bad_utf8, bad_utf8 + sizeof(bad_utf8)}; + utf8_safe_string<32> safe3{bad}; + if (safe3.get_string_or_default(default_str) != default_str) { + return false; + } + + return true; +} + + #endif // UTF8_HPP diff --git a/src/mercury.c b/src/mercury.c index 0629301e..afdfd343 100644 --- a/src/mercury.c +++ b/src/mercury.c @@ -250,6 +250,7 @@ int main(int argc, char *argv[]) { struct libmerc_config libmerc_cfg; bool select_set = false; bool raw_features_set = false; + bool crypto_assess_set = false; bool using_config_file = false; //extern double malware_prob_threshold; // TODO - expose hidden command @@ -257,7 +258,7 @@ int main(int argc, char *argv[]) { std::string additional_args; while(1) { - enum opt { config=1, version=2, license=3, dns_json=4, certs_json=5, metadata=6, resources=7, tcp_init_data=8, udp_init_data=9, write_stats=10, stats_limit=11, stats_time=12, output_time=13, reassembly=14, format=15, raw_features=16 }; + enum opt { config=1, version=2, license=3, dns_json=4, certs_json=5, metadata=6, resources=7, tcp_init_data=8, udp_init_data=9, write_stats=10, stats_limit=11, stats_time=12, output_time=13, reassembly=14, format=15, raw_features=16, crypto_assess=17, }; int opt_idx = 0; static struct option long_opts[] = { { "config", required_argument, NULL, config }, @@ -274,6 +275,7 @@ int main(int argc, char *argv[]) { { "stats-time", required_argument, NULL, stats_time }, { "output-time", required_argument, NULL, output_time }, { "reassembly", no_argument, NULL, reassembly }, + { "crypto-assess", optional_argument, NULL, crypto_assess }, { "format", required_argument, NULL, format }, { "read", required_argument, NULL, 'r' }, { "write", required_argument, NULL, 'w' }, @@ -299,7 +301,10 @@ int main(int argc, char *argv[]) { switch(c) { case config: if (option_is_valid(optarg)) { - mercury_config_read_from_file(cfg, libmerc_cfg, optarg); + status cfg_status = mercury_config_read_from_file(cfg, libmerc_cfg, optarg); + if (cfg_status != status_ok) { + usage(argv[0], nullptr, extended_help_off); + } using_config_file = true; } else { usage(argv[0], "option config requires filename argument", extended_help_off); @@ -389,6 +394,17 @@ int main(int argc, char *argv[]) { usage(argv[0], "option raw_features requires comma separated protocols as argument", extended_help_off); } break; + case crypto_assess: + if (crypto_assess_set) { + usage(argv[0], "option crypto-assess used more than once", extended_help_off); + } + if (optarg and option_is_valid(optarg)) { + additional_args.append("crypto-assess=").append(optarg).append(";"); + crypto_assess_set = true; + } else { + additional_args.append("crypto-assess=default;"); + } + break; case 'r': if (option_is_valid(optarg)) { cfg.read_filename = optarg; @@ -674,7 +690,13 @@ int main(int argc, char *argv[]) { if (setup_signal_handler() != status_ok) { fprintf(stderr, "%s: error while setting up signal handlers\n", strerror(errno)); } - disable_all_signals(); /* We don't want our main thread to get these */ + + /* If we're going to capture from the network we don't want this main thread + * to get interrupted, instead the stats thread needs to recieve the signal. + */ + if (cfg.capture_interface) { + disable_all_signals(); /* Stats thread will unmask the signals it needs */ + } /* set the number of threads, if needed */ if (cfg.num_threads == -1) { diff --git a/src/ocsp.cpp b/src/ocsp.cpp new file mode 100644 index 00000000..b4564538 --- /dev/null +++ b/src/ocsp.cpp @@ -0,0 +1,21 @@ +// ocsp.cpp +// +// online certificate status checking protocol test driver + +#include +#include "libmerc/ocsp.hpp" + +int main(int argc, char *argv[]) { + + FILE *output = nullptr; + if (argc == 2 and strcmp(argv[1], "verbose") == 0) { + output = stdout; // verbose output + } else if (argc > 2) { + fprintf(stderr, "error: too many arguments\n\nusage: %s [verbose]\n", argv[0]); + } + + bool passed = ocsp::request::unit_test(output); + printf("ocsp::request::unit_test %s\n", passed ? "passed" : "failed"); + + return 0; +} diff --git a/src/pcap.cc b/src/pcap.cc index 34b97b2f..cfb6a0bf 100644 --- a/src/pcap.cc +++ b/src/pcap.cc @@ -31,6 +31,11 @@ int main(int argc, char *argv[]) { printf("file format: %s version: %u.%u\n", pcap.get_format(), version.first, version.second); pcap::ng::file_writer w{"test.pcapng"}; + if (strcmp(pcap.get_linktype(), "ETHERNET") != 0) { + fprintf(stderr, "error: linktype not supported\n"); + exit(EXIT_FAILURE); + } + packet<65536> pkt; while (true) { datum pkt_data = pkt.get_next(pcap); diff --git a/src/pcap.h b/src/pcap.h index 8f7db902..bb9d1f7b 100644 --- a/src/pcap.h +++ b/src/pcap.h @@ -29,6 +29,7 @@ namespace pcap { ETHERNET = 1, // Ethernet PPP = 9, // Point-to-Point Protocol (PPP) RAW = 101, // Raw IP; begins with IPv4 or IPv6 header + LINUX_SLL = 113, // Linux "cooked" capture encapsulation NONE = 65535 // reserved, used here as 'none' }; @@ -38,6 +39,7 @@ namespace pcap { case LINKTYPE::ETHERNET: return "ETHERNET"; case LINKTYPE::PPP: return "PPP"; case LINKTYPE::RAW: return "RAW"; + case LINKTYPE::LINUX_SLL: return "LINUX_SLL"; case LINKTYPE::NONE: return "NONE"; } return "unknown"; diff --git a/src/pcap_file_io.c b/src/pcap_file_io.c index d8cda5f6..1670cb4d 100644 --- a/src/pcap_file_io.c +++ b/src/pcap_file_io.c @@ -237,6 +237,7 @@ enum status pcap_file_open(struct pcap_file *f, } f->linktype = file_header.network; if (file_header.network != LINKTYPE_ETHERNET && + file_header.network != LINKTYPE_LINUX_SLL && file_header.network != LINKTYPE_PPP && file_header.network != LINKTYPE_RAW) { if (file_header.network == LINKTYPE_NULL) { @@ -468,7 +469,7 @@ void packet_info_init_from_pkthdr(struct packet_info *pi, enum status pcap_file_dispatch_pkt_processor(struct pcap_file *f, struct pkt_proc *pkt_processor, int loop_count, - int &sig_close_flag) { + sig_atomic_t &sig_close_flag) { enum status status = status_ok; struct pcap_pkthdr pkthdr; uint8_t packet_data[BUFLEN]; diff --git a/src/pcap_file_io.h b/src/pcap_file_io.h index b6cea952..aff60ac0 100644 --- a/src/pcap_file_io.h +++ b/src/pcap_file_io.h @@ -13,6 +13,7 @@ #include #include #include +#include #include #include #include "mercury.h" @@ -65,6 +66,7 @@ struct pcap_file { ETHERNET = 1, // Ethernet PPP = 9, // Point-to-Point Protocol (PPP) RAW = 101, // Raw IP; begins with IPv4 or IPv6 header + LINUX_SLL = 113, // Linux "cooked" capture encapsulation NONE = 65535 // reserved, used here as 'none' }; @@ -74,6 +76,7 @@ struct pcap_file { case LINKTYPE::ETHERNET: return "ETHERNET"; case LINKTYPE::PPP: return "PPP"; case LINKTYPE::RAW: return "RAW"; + case LINKTYPE::LINUX_SLL: return "LINUX_SLL"; case LINKTYPE::NONE: return "NONE"; } return "unknown"; @@ -99,7 +102,7 @@ enum status pcap_file_close(struct pcap_file *f); enum status pcap_file_dispatch_pkt_processor(struct pcap_file *f, struct pkt_proc *pkt_processor, int loop_count, - int &sig_close_flag); + sig_atomic_t &sig_close_flag); // pcap_queue_write() sends a packet to a lockless queue diff --git a/src/pcap_reader.c b/src/pcap_reader.c index f5ad225d..8a681f11 100644 --- a/src/pcap_reader.c +++ b/src/pcap_reader.c @@ -11,7 +11,7 @@ #include "pkt_processing.h" #include "libmerc/utils.h" -extern int sig_close_flag; // defined in signal_handling.c +extern sig_atomic_t sig_close_flag; // defined in signal_handling.c #define BILLION 1000000000L diff --git a/test/Makefile.in b/test/Makefile.in index 78c988e5..a670b350 100644 --- a/test/Makefile.in +++ b/test/Makefile.in @@ -164,7 +164,7 @@ endif analysis: ifeq ($(do_analysis),yes) @echo "running analysis test" - $(MERCURY) -r data/top-https.pcap -f tmp.json -a --resources=../resources/resources.tgz + $(MERCURY) -r data/top-https.pcap -f tmp.json -a --resources=data/resources-test.tgz $(python) json-test.py tmp.json @echo $(COLOR_GREEN) "passed analysis test" $(COLOR_OFF) rm -f tmp.json @@ -262,7 +262,7 @@ endif .PHONY: json-test json-test: @echo "running json-test" - ${MERCURY} -r data/http.pcap -f tmp.json --metadata -a --resources=../resources/resources.tgz --raw-features=all + ${MERCURY} -r data/http.pcap -f tmp.json --metadata -a --resources=data/resources-test.tgz --raw-features=all bash -c "diff tmp.json data/http.json" @echo $(COLOR_GREEN) "passed json-test" $(COLOR_OFF) rm -f tmp.json @@ -271,14 +271,14 @@ json-test: stats: @echo "running stats test" rm -f tmp.json stats.json.gz # pre-clean leftovers from previously failed tests - $(MERCURY) -r data/top-https.pcap -f tmp.json --metadata -a --resources=../resources/resources.tgz --stats=stats + $(MERCURY) -r data/top-https.pcap -f tmp.json --metadata -a --resources=data/resources-test.tgz --stats=stats bash -c "$(python) ./compare-stats.py -m tmp.json -s stats.json.gz" @echo $(COLOR_GREEN) "passed stats test" $(COLOR_OFF) rm -f tmp.json stats.json.gz @echo "running stats rotate test" rm -f tmp.json tempstats.json statsfile* # pre-clean leftovers from previously failed tests - $(MERCURY) -r data/quic_tls_http.pcap -f tmp.json --metadata -a --resources=../resources/resources.tgz --stats=statsfile --stats-time=1 -p 10 - bash -c "$(python) ./compare-stats.py -m tmp.json -s statsfile" + $(MERCURY) -r data/quic_tls_http.pcap -f tmp.json --metadata -a --resources=data/resources-test.tgz --stats=statsfile --stats-time=1 -p 10 + bash -c "$(python) ./compare-stats.py -m tmp.json -s statsfile -a" @echo $(COLOR_GREEN) "passed stats rotate test" $(COLOR_OFF) rm -f tmp.json tempstats.json statsfile* @@ -302,7 +302,7 @@ distclean: clean memcheck: ifeq ($(have_valgrind),yes) @echo "running memcheck with valgrind" - valgrind --trace-children=yes --leak-check=full --show-leak-kinds=all $(MERCURY) -r data/top-https.pcap -f tmp.json -a --resources=../resources/resources.tgz 2> memcheck.tmp + valgrind --trace-children=yes --leak-check=full --show-leak-kinds=all $(MERCURY) -r data/top-https.pcap -f tmp.json -a --resources=data/resources-test.tgz 2> memcheck.tmp # cat memcheck.tmp | grep "definitely lost: 0 bytes in 0 blocks" cat memcheck.tmp | grep "ERROR SUMMARY: 0" rm -f memcheck.tmp diff --git a/test/data/resources-test.tgz b/test/data/resources-test.tgz new file mode 100755 index 00000000..860436bc Binary files /dev/null and b/test/data/resources-test.tgz differ diff --git a/test/data/top-https.json b/test/data/top-https.json index 0ed63ede..96dde400 100644 --- a/test/data/top-https.json +++ b/test/data/top-https.json @@ -1,644 +1,644 @@ -{"ip":{"version":4,"ttl":64,"id":"cb33"},"dns":{"base64":"2PsBAAABAAAAAAAABmdvb2dsZQNjb20AAAEAAQ=="},"src_ip":"192.168.113.237","dst_ip":"192.168.113.2","protocol":17,"src_port":40385,"dst_port":53,"event_start":1565200314.189422} -{"ip":{"version":4,"ttl":64,"id":"cb34"},"dns":{"base64":"90ABAAABAAAAAAAABmdvb2dsZQNjb20AABwAAQ=="},"src_ip":"192.168.113.237","dst_ip":"192.168.113.2","protocol":17,"src_port":37225,"dst_port":53,"event_start":1565200314.189603} -{"ip":{"version":4,"ttl":128,"id":"95ad"},"dns":{"base64":"90CBgAABAAEADQANBmdvb2dsZQNjb20AABwAAcAMABwAAQAAAAUAECYH+LBABAgQAAAAAAAAIA7AEwACAAEAAAAFABQBYwxndGxkLXNlcnZlcnMDbmV0AMATAAIAAQAAAAUABAFpwEbAEwACAAEAAAAFAAQBZsBGwBMAAgABAAAABQAEAWHARsATAAIAAQAAAAUABAFswEbAEwACAAEAAAAFAAQBa8BGwBMAAgABAAAABQAEAW3ARsATAAIAAQAAAAUABAFlwEbAEwACAAEAAAAFAAQBYsBGwBMAAgABAAAABQAEAWjARsATAAIAAQAAAAUABAFnwEbAEwACAAEAAAAFAAQBasBGwBMAAgABAAAABQAEAWTARsCEAAEAAQAAAAUABMAFBh7A1AABAAEAAAAFAATAIQ4ewEQAAQABAAAABQAEwBpcHsEUAAEAAQAAAAUABMAfUB7AxAABAAEAAAAFAATADF4ewHQAAQABAAAABQAEwCMzHsD0AAEAAQAAAAUABMAqXR7A5AABAAEAAAAFAATANnAewGQAAQABAAAABQAEwCusHsEEAAEAAQAAAAUABMAwTx7ApAABAAEAAAAFAATANLIewJQAAQABAAAABQAEwCmiHsC0AAEAAQAAAAUABMA3Ux4="},"src_ip":"192.168.113.2","dst_ip":"192.168.113.237","protocol":17,"src_port":53,"dst_port":37225,"event_start":1565200314.223537} -{"ip":{"version":4,"ttl":128,"id":"95ae"},"dns":{"base64":"2PuBgAABAAEADQAOBmdvb2dsZQNjb20AAAEAAcAMAAEAAQAAAAUABKzZD07AEwACAAEAAAAFABQBaQxndGxkLXNlcnZlcnMDbmV0AMATAAIAAQAAAAUABAFhwDrAEwACAAEAAAAFAAQBbcA6wBMAAgABAAAABQAEAWvAOsATAAIAAQAAAAUABAFqwDrAEwACAAEAAAAFAAQBY8A6wBMAAgABAAAABQAEAWLAOsATAAIAAQAAAAUABAFnwDrAEwACAAEAAAAFAAQBbMA6wBMAAgABAAAABQAEAWXAOsATAAIAAQAAAAUABAFowDrAEwACAAEAAAAFAAQBZMA6wBMAAgABAAAABQAEAWbAOsBYAAEAAQAAAAUABMAFBh7AqAABAAEAAAAFAATAIQ4ewJgAAQABAAAABQAEwBpcHsD4AAEAAQAAAAUABMAfUB7A2AABAAEAAAAFAATADF4ewQgAAQABAAAABQAEwCMzHsC4AAEAAQAAAAUABMAqXR7A6AABAAEAAAAFAATANnAewDgAAQABAAAABQAEwCusHsCIAAEAAQAAAAUABMAwTx7AeAABAAEAAAAFAATANLIewMgAAQABAAAABQAEwCmiHsBoAAEAAQAAAAUABMA3Ux7AWAAcAAEAAAAFABAgAQUDqD4AAAAAAAAAAgAw"},"src_ip":"192.168.113.2","dst_ip":"192.168.113.237","protocol":17,"src_port":53,"dst_port":40385,"event_start":1565200314.223559} -{"ip":{"version":4,"ttl":64,"id":"6fc2"},"fingerprints":{"tcp":"tcp/(40)()(40)(faf0)((020405b4)(04)(08)(01)(030307))"},"tcp":{"seq":2628505832,"timestamp":{"ts_val":3222370320}},"src_ip":"192.168.113.237","dst_ip":"172.217.15.78","protocol":6,"src_port":38790,"dst_port":443,"event_start":1565200314.224204} -{"ip":{"version":4,"ttl":128,"id":"95af"},"fingerprints":{"tcp_server":"tcp_server/(40)()(80)(faf0)((020405b4))"},"tcp_server":{"seq":1565659668},"src_ip":"172.217.15.78","dst_ip":"192.168.113.237","protocol":6,"src_port":443,"dst_port":38790,"event_start":1565200314.265142} -{"ip":{"version":4,"ttl":64,"id":"6fc4"},"fingerprints":{"tls":"tls/(0303)(130213031301c02cc030009fcca9cca8ccaac02bc02f009ec024c028006bc023c0270067c00ac0140039c009c0130033009d009c003d003c0035002f00ff)((0000)(000b000403000102)(000a000c000a001d0017001e00190018)(0023)(0016)(0017)(000d0030002e040305030603080708080809080a080b080408050806040105010601030302030301020103020202040205020602)(002b0009080304030303020301)(002d00020101)(0033))"},"tls":{"client":{"version":"0303","random":"b3afd945f15e47a81a8c87eb4a8f47b04cd087a2e4b67f3bbefae8ab4c472f0c","session_id":"e5d2be5888a873a7753789438a91eafe22564432b617a5ebcadc7f026d37238f","cipher_suites":"130213031301c02cc030009fcca9cca8ccaac02bc02f009ec024c028006bc023c0270067c00ac0140039c009c0130033009d009c003d003c0035002f00ff","compression_methods":"00","server_name":"google.com","session_ticket":"","features":"[\"0303\",\"130213031301c02cc030009fcca9cca8ccaac02bc02f009ec024c028006bc023c0270067c00ac0140039c009c0130033009d009c003d003c0035002f00ff\",[[\"0000\",\"000d00000a676f6f676c652e636f6d\"],[\"000b\",\"03000102\"],[\"000a\",\"000a001d0017001e00190018\"],[\"0023\",\"\"],[\"0016\",\"\"],[\"0017\",\"\"],[\"000d\",\"002e040305030603080708080809080a080b080408050806040105010601030302030301020103020202040205020602\"],[\"002b\",\"080304030303020301\"],[\"002d\",\"0101\"],[\"0033\",\"0024001d0020805c0a9ffdbbf9105e81c0d7b1bcccf206d0c67996badc5bf4ff673caa8e3f3c\"]]]"}},"src_ip":"192.168.113.237","dst_ip":"172.217.15.78","protocol":6,"src_port":38790,"dst_port":443,"event_start":1565200314.266206} -{"ip":{"version":4,"ttl":128,"id":"95b1"},"fingerprints":{"tls_server":"tls_server/(0303)(1302)((0033)(002b00020304))"},"tls":{"server":{"version":"0303","random":"ca69e50980b662ea2b56531b55751af5717e9edc7baf2c1cbd43338aa0f0c860","selected_cipher_suite":"1302","compression_method":"00"}},"src_ip":"172.217.15.78","dst_ip":"192.168.113.237","protocol":6,"src_port":443,"dst_port":38790,"event_start":1565200314.317713} -{"ip":{"version":4,"ttl":64,"id":"cb66"},"dns":{"base64":"luQBAAABAAAAAAAAA3d3dwZnb29nbGUDY29tAAABAAE="},"src_ip":"192.168.113.237","dst_ip":"192.168.113.2","protocol":17,"src_port":46063,"dst_port":53,"event_start":1565200314.423451} -{"ip":{"version":4,"ttl":64,"id":"cb67"},"dns":{"base64":"k/4BAAABAAAAAAAAA3d3dwZnb29nbGUDY29tAAAcAAE="},"src_ip":"192.168.113.237","dst_ip":"192.168.113.2","protocol":17,"src_port":56316,"dst_port":53,"event_start":1565200314.423636} -{"ip":{"version":4,"ttl":128,"id":"95b7"},"dns":{"base64":"k/6BgAABAAEADQANA3d3dwZnb29nbGUDY29tAAAcAAHADAAcAAEAAAAFABAmB/iwQAQIAgAAAAAAACAEwBcAAgABAAAABQAUAWsMZ3RsZC1zZXJ2ZXJzA25ldADAFwACAAEAAAAFAAQBbcBKwBcAAgABAAAABQAEAWnASsAXAAIAAQAAAAUABAFowErAFwACAAEAAAAFAAQBasBKwBcAAgABAAAABQAEAWLASsAXAAIAAQAAAAUABAFhwErAFwACAAEAAAAFAAQBY8BKwBcAAgABAAAABQAEAWbASsAXAAIAAQAAAAUABAFswErAFwACAAEAAAAFAAQBZMBKwBcAAgABAAAABQAEAWfASsAXAAIAAQAAAAUABAFlwErAuAABAAEAAAAFAATABQYewKgAAQABAAAABQAEwCEOHsDIAAEAAQAAAAUABMAaXB7A+AABAAEAAAAFAATAH1AewRgAAQABAAAABQAEwAxeHsDYAAEAAQAAAAUABMAjMx7BCAABAAEAAAAFAATAKl0ewIgAAQABAAAABQAEwDZwHsB4AAEAAQAAAAUABMArrB7AmAABAAEAAAAFAATAME8ewEgAAQABAAAABQAEwDSyHsDoAAEAAQAAAAUABMApoh7AaAABAAEAAAAFAATAN1Me"},"src_ip":"192.168.113.2","dst_ip":"192.168.113.237","protocol":17,"src_port":53,"dst_port":56316,"event_start":1565200314.453475} -{"ip":{"version":4,"ttl":128,"id":"95b8"},"dns":{"base64":"luSBgAABAAEADQAOA3d3dwZnb29nbGUDY29tAAABAAHADAABAAEAAAAFAASs2QfkwBcAAgABAAAABQAUAWkMZ3RsZC1zZXJ2ZXJzA25ldADAFwACAAEAAAAFAAQBY8A+wBcAAgABAAAABQAEAW3APsAXAAIAAQAAAAUABAFowD7AFwACAAEAAAAFAAQBZcA+wBcAAgABAAAABQAEAWvAPsAXAAIAAQAAAAUABAFhwD7AFwACAAEAAAAFAAQBYsA+wBcAAgABAAAABQAEAWzAPsAXAAIAAQAAAAUABAFqwD7AFwACAAEAAAAFAAQBZMA+wBcAAgABAAAABQAEAWfAPsAXAAIAAQAAAAUABAFmwD7ArAABAAEAAAAFAATABQYewLwAAQABAAAABQAEwCEOHsBcAAEAAQAAAAUABMAaXB7A7AABAAEAAAAFAATAH1AewIwAAQABAAAABQAEwAxeHsEMAAEAAQAAAAUABMAjMx7A/AABAAEAAAAFAATAKl0ewHwAAQABAAAABQAEwDZwHsA8AAEAAQAAAAUABMArrB7A3AABAAEAAAAFAATAME8ewJwAAQABAAAABQAEwDSyHsDMAAEAAQAAAAUABMApoh7AbAABAAEAAAAFAATAN1MewKwAHAABAAAABQAQIAEFA6g+AAAAAAAAAAIAMA=="},"src_ip":"192.168.113.2","dst_ip":"192.168.113.237","protocol":17,"src_port":53,"dst_port":46063,"event_start":1565200314.456423} -{"ip":{"version":4,"ttl":64,"id":"701e"},"fingerprints":{"tcp":"tcp/(40)()(40)(faf0)((020405b4)(04)(08)(01)(030307))"},"tcp":{"seq":4039626618,"timestamp":{"ts_val":2521247006}},"src_ip":"192.168.113.237","dst_ip":"172.217.7.228","protocol":6,"src_port":55912,"dst_port":443,"event_start":1565200314.456864} -{"ip":{"version":4,"ttl":128,"id":"95b9"},"fingerprints":{"tcp_server":"tcp_server/(40)()(80)(faf0)((020405b4))"},"tcp_server":{"seq":1859150137},"src_ip":"172.217.7.228","dst_ip":"192.168.113.237","protocol":6,"src_port":443,"dst_port":55912,"event_start":1565200314.495636} -{"ip":{"version":4,"ttl":64,"id":"7020"},"fingerprints":{"tls":"tls/(0303)(130213031301c02cc030009fcca9cca8ccaac02bc02f009ec024c028006bc023c0270067c00ac0140039c009c0130033009d009c003d003c0035002f00ff)((0000)(000b000403000102)(000a000c000a001d0017001e00190018)(0023)(0016)(0017)(000d0030002e040305030603080708080809080a080b080408050806040105010601030302030301020103020202040205020602)(002b0009080304030303020301)(002d00020101)(0033))"},"tls":{"client":{"version":"0303","random":"5dd16d6f6b9bc04aa3112fad30f2dbcad01fa5bca2a8475a2588f9832b48e665","session_id":"b5243f5add1d65f4432d99a47c0484e34e8ceaa798689de737ed3353ea173119","cipher_suites":"130213031301c02cc030009fcca9cca8ccaac02bc02f009ec024c028006bc023c0270067c00ac0140039c009c0130033009d009c003d003c0035002f00ff","compression_methods":"00","server_name":"www.google.com","session_ticket":"","features":"[\"0303\",\"130213031301c02cc030009fcca9cca8ccaac02bc02f009ec024c028006bc023c0270067c00ac0140039c009c0130033009d009c003d003c0035002f00ff\",[[\"0000\",\"001100000e7777772e676f6f676c652e636f6d\"],[\"000b\",\"03000102\"],[\"000a\",\"000a001d0017001e00190018\"],[\"0023\",\"\"],[\"0016\",\"\"],[\"0017\",\"\"],[\"000d\",\"002e040305030603080708080809080a080b080408050806040105010601030302030301020103020202040205020602\"],[\"002b\",\"080304030303020301\"],[\"002d\",\"0101\"],[\"0033\",\"0024001d00204492fb896193e839ecc7241e09656e38ca2b30f7505385a2fceed992bd150029\"]]]"}},"src_ip":"192.168.113.237","dst_ip":"172.217.7.228","protocol":6,"src_port":55912,"dst_port":443,"event_start":1565200314.496049} -{"ip":{"version":4,"ttl":128,"id":"95bb"},"fingerprints":{"tls_server":"tls_server/(0303)(1302)((0033)(002b00020304))"},"tls":{"server":{"version":"0303","random":"4873766451cd7ea7f40aa4015ec9eb69106f6c3637ebc43257baa5b9ea065cfa","selected_cipher_suite":"1302","compression_method":"00"}},"src_ip":"172.217.7.228","dst_ip":"192.168.113.237","protocol":6,"src_port":443,"dst_port":55912,"event_start":1565200314.548679} -{"ip":{"version":4,"ttl":64,"id":"cb99"},"dns":{"base64":"/x8BAAABAAAAAAAACGZhY2Vib29rA2NvbQAAAQAB"},"src_ip":"192.168.113.237","dst_ip":"192.168.113.2","protocol":17,"src_port":53467,"dst_port":53,"event_start":1565200314.706119} -{"ip":{"version":4,"ttl":64,"id":"cb9a"},"dns":{"base64":"K9EBAAABAAAAAAAACGZhY2Vib29rA2NvbQAAHAAB"},"src_ip":"192.168.113.237","dst_ip":"192.168.113.2","protocol":17,"src_port":43273,"dst_port":53,"event_start":1565200314.706323} -{"ip":{"version":4,"ttl":128,"id":"95ce"},"dns":{"base64":"/x+BgAABAAEADQAOCGZhY2Vib29rA2NvbQAAAQABwAwAAQABAAAABQAEHw1CI8AVAAIAAQAAAAUAFAFiDGd0bGQtc2VydmVycwNuZXQAwBUAAgABAAAABQAEAWfAPMAVAAIAAQAAAAUABAFpwDzAFQACAAEAAAAFAAQBZcA8wBUAAgABAAAABQAEAWjAPMAVAAIAAQAAAAUABAFswDzAFQACAAEAAAAFAAQBasA8wBUAAgABAAAABQAEAW3APMAVAAIAAQAAAAUABAFkwDzAFQACAAEAAAAFAAQBY8A8wBUAAgABAAAABQAEAWvAPMAVAAIAAQAAAAUABAFmwDzAFQACAAEAAAAFAAQBYcA8wQoAAQABAAAABQAEwAUGHsA6AAEAAQAAAAUABMAhDh7A2gABAAEAAAAFAATAGlwewMoAAQABAAAABQAEwB9QHsB6AAEAAQAAAAUABMAMXh7A+gABAAEAAAAFAATAIzMewFoAAQABAAAABQAEwCpdHsCKAAEAAQAAAAUABMA2cB7AagABAAEAAAAFAATAK6wewKoAAQABAAAABQAEwDBPHsDqAAEAAQAAAAUABMA0sh7AmgABAAEAAAAFAATAKaIewLoAAQABAAAABQAEwDdTHsEKABwAAQAAAAUAECABBQOoPgAAAAAAAAACADA="},"src_ip":"192.168.113.2","dst_ip":"192.168.113.237","protocol":17,"src_port":53,"dst_port":53467,"event_start":1565200314.741388} -{"ip":{"version":4,"ttl":128,"id":"95cf"},"dns":{"base64":"K9GBgAABAAEADQANCGZhY2Vib29rA2NvbQAAHAABwAwAHAABAAAABQAQKgMogPEDAIP6zrAMAAAl3sAVAAIAAQAAAAUAFAFrDGd0bGQtc2VydmVycwNuZXQAwBUAAgABAAAABQAEAWbASMAVAAIAAQAAAAUABAFswEjAFQACAAEAAAAFAAQBZ8BIwBUAAgABAAAABQAEAWrASMAVAAIAAQAAAAUABAFpwEjAFQACAAEAAAAFAAQBaMBIwBUAAgABAAAABQAEAWLASMAVAAIAAQAAAAUABAFhwEjAFQACAAEAAAAFAAQBbcBIwBUAAgABAAAABQAEAWPASMAVAAIAAQAAAAUABAFkwEjAFQACAAEAAAAFAAQBZcBIwNYAAQABAAAABQAEwAUGHsDGAAEAAQAAAAUABMAhDh7A9gABAAEAAAAFAATAGlwewQYAAQABAAAABQAEwB9QHsEWAAEAAQAAAAUABMAMXh7AZgABAAEAAAAFAATAIzMewIYAAQABAAAABQAEwCpdHsC2AAEAAQAAAAUABMA2cB7ApgABAAEAAAAFAATAK6wewJYAAQABAAAABQAEwDBPHsBGAAEAAQAAAAUABMA0sh7AdgABAAEAAAAFAATAKaIewOYAAQABAAAABQAEwDdTHg=="},"src_ip":"192.168.113.2","dst_ip":"192.168.113.237","protocol":17,"src_port":53,"dst_port":43273,"event_start":1565200314.742571} -{"ip":{"version":4,"ttl":64,"id":"775e"},"fingerprints":{"tcp":"tcp/(40)()(40)(faf0)((020405b4)(04)(08)(01)(030307))"},"tcp":{"seq":2047854834,"timestamp":{"ts_val":3642583269}},"src_ip":"192.168.113.237","dst_ip":"31.13.66.35","protocol":6,"src_port":47178,"dst_port":443,"event_start":1565200314.743008} -{"ip":{"version":4,"ttl":128,"id":"95d0"},"fingerprints":{"tcp_server":"tcp_server/(40)()(80)(faf0)((020405b4))"},"tcp_server":{"seq":1774665050},"src_ip":"31.13.66.35","dst_ip":"192.168.113.237","protocol":6,"src_port":443,"dst_port":47178,"event_start":1565200314.784952} -{"ip":{"version":4,"ttl":64,"id":"7760"},"fingerprints":{"tls":"tls/(0303)(130213031301c02cc030009fcca9cca8ccaac02bc02f009ec024c028006bc023c0270067c00ac0140039c009c0130033009d009c003d003c0035002f00ff)((0000)(000b000403000102)(000a000c000a001d0017001e00190018)(0023)(0016)(0017)(000d0030002e040305030603080708080809080a080b080408050806040105010601030302030301020103020202040205020602)(002b0009080304030303020301)(002d00020101)(0033))"},"tls":{"client":{"version":"0303","random":"4b04fdb02370e872dc701222088536830be3e73348a7dfb13e8ac1525d4148d0","session_id":"cb58a8b4122a03be3f855c42f3e9415bed627224db23b329476a8c9cb3e77031","cipher_suites":"130213031301c02cc030009fcca9cca8ccaac02bc02f009ec024c028006bc023c0270067c00ac0140039c009c0130033009d009c003d003c0035002f00ff","compression_methods":"00","server_name":"facebook.com","session_ticket":"","features":"[\"0303\",\"130213031301c02cc030009fcca9cca8ccaac02bc02f009ec024c028006bc023c0270067c00ac0140039c009c0130033009d009c003d003c0035002f00ff\",[[\"0000\",\"000f00000c66616365626f6f6b2e636f6d\"],[\"000b\",\"03000102\"],[\"000a\",\"000a001d0017001e00190018\"],[\"0023\",\"\"],[\"0016\",\"\"],[\"0017\",\"\"],[\"000d\",\"002e040305030603080708080809080a080b080408050806040105010601030302030301020103020202040205020602\"],[\"002b\",\"080304030303020301\"],[\"002d\",\"0101\"],[\"0033\",\"0024001d0020569c09730bb312fcb3796ff7d656c45a3236a81eaca707befac515bce1c6cd16\"]]]"}},"src_ip":"192.168.113.237","dst_ip":"31.13.66.35","protocol":6,"src_port":47178,"dst_port":443,"event_start":1565200314.785467} -{"ip":{"version":4,"ttl":128,"id":"95d2"},"fingerprints":{"tls_server":"tls_server/(0303)(1303)((002b00020304)(0033))"},"tls":{"server":{"version":"0303","random":"c870fd9811700e5c2d419e251dce54614bb32d317c1897c63cde5c88f89b425c","selected_cipher_suite":"1303","compression_method":"00"}},"src_ip":"31.13.66.35","dst_ip":"192.168.113.237","protocol":6,"src_port":443,"dst_port":47178,"event_start":1565200314.828378} -{"ip":{"version":4,"ttl":64,"id":"cb9c"},"dns":{"base64":"jiwBAAABAAAAAAAAA3d3dwhmYWNlYm9vawNjb20AAAEAAQ=="},"src_ip":"192.168.113.237","dst_ip":"192.168.113.2","protocol":17,"src_port":55332,"dst_port":53,"event_start":1565200314.962244} -{"ip":{"version":4,"ttl":64,"id":"cb9d"},"dns":{"base64":"ddcBAAABAAAAAAAAA3d3dwhmYWNlYm9vawNjb20AABwAAQ=="},"src_ip":"192.168.113.237","dst_ip":"192.168.113.2","protocol":17,"src_port":45008,"dst_port":53,"event_start":1565200314.962424} -{"ip":{"version":4,"ttl":128,"id":"95db"},"dns":{"base64":"jiyBgAABAAIADQANA3d3dwhmYWNlYm9vawNjb20AAAEAAcAMAAUAAQAAAAUAEQlzdGFyLW1pbmkEYzEwcsAQwC4AAQABAAAABQAEHw1dI8AZAAIAAQAAAAUAFAFlDGd0bGQtc2VydmVycwNuZXQAwBkAAgABAAAABQAEAWfAXcAZAAIAAQAAAAUABAFhwF3AGQACAAEAAAAFAAQBaMBdwBkAAgABAAAABQAEAWrAXcAZAAIAAQAAAAUABAFjwF3AGQACAAEAAAAFAAQBbcBdwBkAAgABAAAABQAEAWnAXcAZAAIAAQAAAAUABAFiwF3AGQACAAEAAAAFAAQBZsBdwBkAAgABAAAABQAEAWTAXcAZAAIAAQAAAAUABAFrwF3AGQACAAEAAAAFAAQBbMBdwIsAAQABAAAABQAEwAUGHsDrAAEAAQAAAAUABMAhDh7AuwABAAEAAAAFAATAGlwewQsAAQABAAAABQAEwB9QHsBbAAEAAQAAAAUABMAMXh7A+wABAAEAAAAFAATAIzMewHsAAQABAAAABQAEwCpdHsCbAAEAAQAAAAUABMA2cB7A2wABAAEAAAAFAATAK6wewKsAAQABAAAABQAEwDBPHsEbAAEAAQAAAAUABMA0sh7BKwABAAEAAAAFAATAKaIewMsAAQABAAAABQAEwDdTHg=="},"src_ip":"192.168.113.2","dst_ip":"192.168.113.237","protocol":17,"src_port":53,"dst_port":55332,"event_start":1565200314.996736} -{"ip":{"version":4,"ttl":128,"id":"95dd"},"dns":{"base64":"ddeBgAABAAIADQAMA3d3dwhmYWNlYm9vawNjb20AABwAAcAMAAUAAQAAAAUAEQlzdGFyLW1pbmkEYzEwcsAQwC4AHAABAAAABQAQKgMogPE0AYP6zrAMAAAl3sAZAAIAAQAAAAUAFAFjDGd0bGQtc2VydmVycwNuZXQAwBkAAgABAAAABQAEAWLAacAZAAIAAQAAAAUABAFtwGnAGQACAAEAAAAFAAQBYcBpwBkAAgABAAAABQAEAWzAacAZAAIAAQAAAAUABAFmwGnAGQACAAEAAAAFAAQBZcBpwBkAAgABAAAABQAEAWnAacAZAAIAAQAAAAUABAFqwGnAGQACAAEAAAAFAAQBa8BpwBkAAgABAAAABQAEAWjAacAZAAIAAQAAAAUABAFkwGnAGQACAAEAAAAFAAQBZ8BpwKcAAQABAAAABQAEwAUGHsCHAAEAAQAAAAUABMAhDh7AZwABAAEAAAAFAATAGlwewScAAQABAAAABQAEwB9QHsDXAAEAAQAAAAUABMAMXh7AxwABAAEAAAAFAATAIzMewTcAAQABAAAABQAEwCpdHsEXAAEAAQAAAAUABMA2cB7A5wABAAEAAAAFAATAK6wewPcAAQABAAAABQAEwDBPHsEHAAEAAQAAAAUABMA0sh7AtwABAAEAAAAFAATAKaIe"},"src_ip":"192.168.113.2","dst_ip":"192.168.113.237","protocol":17,"src_port":53,"dst_port":45008,"event_start":1565200314.997173} -{"ip":{"version":4,"ttl":64,"id":"1a05"},"fingerprints":{"tcp":"tcp/(40)()(40)(faf0)((020405b4)(04)(08)(01)(030307))"},"tcp":{"seq":2701436393,"timestamp":{"ts_val":849766611}},"src_ip":"192.168.113.237","dst_ip":"31.13.93.35","protocol":6,"src_port":38876,"dst_port":443,"event_start":1565200314.997544} -{"ip":{"version":4,"ttl":128,"id":"95de"},"fingerprints":{"tcp_server":"tcp_server/(40)()(80)(faf0)((020405b4))"},"tcp_server":{"seq":3469444087},"src_ip":"31.13.93.35","dst_ip":"192.168.113.237","protocol":6,"src_port":443,"dst_port":38876,"event_start":1565200315.059454} -{"ip":{"version":4,"ttl":64,"id":"1a07"},"fingerprints":{"tls":"tls/(0303)(130213031301c02cc030009fcca9cca8ccaac02bc02f009ec024c028006bc023c0270067c00ac0140039c009c0130033009d009c003d003c0035002f00ff)((0000)(000b000403000102)(000a000c000a001d0017001e00190018)(0023)(0016)(0017)(000d0030002e040305030603080708080809080a080b080408050806040105010601030302030301020103020202040205020602)(002b0009080304030303020301)(002d00020101)(0033))"},"tls":{"client":{"version":"0303","random":"e702da1c4dc1ec292cf6eec967e43122acad882070a9d1a3e314cf6b01045d34","session_id":"b18cee90b75b575c2abee04e3dea6298df086e676b78747c723daeff65447f37","cipher_suites":"130213031301c02cc030009fcca9cca8ccaac02bc02f009ec024c028006bc023c0270067c00ac0140039c009c0130033009d009c003d003c0035002f00ff","compression_methods":"00","server_name":"www.facebook.com","session_ticket":"","features":"[\"0303\",\"130213031301c02cc030009fcca9cca8ccaac02bc02f009ec024c028006bc023c0270067c00ac0140039c009c0130033009d009c003d003c0035002f00ff\",[[\"0000\",\"00130000107777772e66616365626f6f6b2e636f6d\"],[\"000b\",\"03000102\"],[\"000a\",\"000a001d0017001e00190018\"],[\"0023\",\"\"],[\"0016\",\"\"],[\"0017\",\"\"],[\"000d\",\"002e040305030603080708080809080a080b080408050806040105010601030302030301020103020202040205020602\"],[\"002b\",\"080304030303020301\"],[\"002d\",\"0101\"],[\"0033\",\"0024001d0020734e8bd196f7ee93eb2c76656e6ceab1da394d08107573b2bbe3d0818ca02620\"]]]"}},"src_ip":"192.168.113.237","dst_ip":"31.13.93.35","protocol":6,"src_port":38876,"dst_port":443,"event_start":1565200315.059717} -{"ip":{"version":4,"ttl":128,"id":"95e0"},"fingerprints":{"tls_server":"tls_server/(0303)(1303)((002b00020304)(0033))"},"tls":{"server":{"version":"0303","random":"2aaf98e831eba0a5db049e6bac363f3d1f132e1d27da3e49fb40451731c0fbd2","selected_cipher_suite":"1303","compression_method":"00"}},"src_ip":"31.13.93.35","dst_ip":"192.168.113.237","protocol":6,"src_port":443,"dst_port":38876,"event_start":1565200315.118917} -{"ip":{"version":4,"ttl":64,"id":"cb9f"},"dns":{"base64":"1MsBAAABAAAAAAAAB3lvdXR1YmUDY29tAAABAAE="},"src_ip":"192.168.113.237","dst_ip":"192.168.113.2","protocol":17,"src_port":46227,"dst_port":53,"event_start":1565200315.629697} -{"ip":{"version":4,"ttl":64,"id":"cba0"},"dns":{"base64":"MY4BAAABAAAAAAAAB3lvdXR1YmUDY29tAAAcAAE="},"src_ip":"192.168.113.237","dst_ip":"192.168.113.2","protocol":17,"src_port":36848,"dst_port":53,"event_start":1565200315.629866} -{"ip":{"version":4,"ttl":128,"id":"961d"},"dns":{"base64":"1MuBgAABAAEADQAOB3lvdXR1YmUDY29tAAABAAHADAABAAEAAAAFAASs2Q9OwBQAAgABAAAABQAUAWwMZ3RsZC1zZXJ2ZXJzA25ldADAFAACAAEAAAAFAAQBasA7wBQAAgABAAAABQAEAWfAO8AUAAIAAQAAAAUABAFowDvAFAACAAEAAAAFAAQBa8A7wBQAAgABAAAABQAEAWHAO8AUAAIAAQAAAAUABAFlwDvAFAACAAEAAAAFAAQBY8A7wBQAAgABAAAABQAEAWTAO8AUAAIAAQAAAAUABAFmwDvAFAACAAEAAAAFAAQBYsA7wBQAAgABAAAABQAEAWnAO8AUAAIAAQAAAAUABAFtwDvAmQABAAEAAAAFAATABQYewOkAAQABAAAABQAEwCEOHsC5AAEAAQAAAAUABMAaXB7AyQABAAEAAAAFAATAH1AewKkAAQABAAAABQAEwAxeHsDZAAEAAQAAAAUABMAjMx7AaQABAAEAAAAFAATAKl0ewHkAAQABAAAABQAEwDZwHsD5AAEAAQAAAAUABMArrB7AWQABAAEAAAAFAATAME8ewIkAAQABAAAABQAEwDSyHsA5AAEAAQAAAAUABMApoh7BCQABAAEAAAAFAATAN1MewJkAHAABAAAABQAQIAEFA6g+AAAAAAAAAAIAMA=="},"src_ip":"192.168.113.2","dst_ip":"192.168.113.237","protocol":17,"src_port":53,"dst_port":46227,"event_start":1565200315.666539} -{"ip":{"version":4,"ttl":128,"id":"961e"},"dns":{"base64":"MY6BgAABAAEADQANB3lvdXR1YmUDY29tAAAcAAHADAAcAAEAAAAFABAmB/iwQAQIEAAAAAAAACAOwBQAAgABAAAABQAUAWMMZ3RsZC1zZXJ2ZXJzA25ldADAFAACAAEAAAAFAAQBasBHwBQAAgABAAAABQAEAWHAR8AUAAIAAQAAAAUABAFtwEfAFAACAAEAAAAFAAQBZcBHwBQAAgABAAAABQAEAWvAR8AUAAIAAQAAAAUABAFpwEfAFAACAAEAAAAFAAQBZ8BHwBQAAgABAAAABQAEAWjAR8AUAAIAAQAAAAUABAFiwEfAFAACAAEAAAAFAAQBZsBHwBQAAgABAAAABQAEAWTAR8AUAAIAAQAAAAUABAFswEfAdQABAAEAAAAFAATABQYewOUAAQABAAAABQAEwCEOHsBFAAEAAQAAAAUABMAaXB7BBQABAAEAAAAFAATAH1AewJUAAQABAAAABQAEwAxeHsD1AAEAAQAAAAUABMAjMx7AxQABAAEAAAAFAATAKl0ewNUAAQABAAAABQAEwDZwHsC1AAEAAQAAAAUABMArrB7AZQABAAEAAAAFAATAME8ewKUAAQABAAAABQAEwDSyHsEVAAEAAQAAAAUABMApoh7AhQABAAEAAAAFAATAN1Me"},"src_ip":"192.168.113.2","dst_ip":"192.168.113.237","protocol":17,"src_port":53,"dst_port":36848,"event_start":1565200315.688744} -{"ip":{"version":4,"ttl":64,"id":"950e"},"fingerprints":{"tcp":"tcp/(40)()(40)(faf0)((020405b4)(04)(08)(01)(030307))"},"tcp":{"seq":3802355094,"timestamp":{"ts_val":3222371785}},"src_ip":"192.168.113.237","dst_ip":"172.217.15.78","protocol":6,"src_port":38798,"dst_port":443,"event_start":1565200315.689080} -{"ip":{"version":4,"ttl":128,"id":"961f"},"fingerprints":{"tcp_server":"tcp_server/(40)()(80)(faf0)((020405b4))"},"tcp_server":{"seq":2676836908},"src_ip":"172.217.15.78","dst_ip":"192.168.113.237","protocol":6,"src_port":443,"dst_port":38798,"event_start":1565200315.728622} -{"ip":{"version":4,"ttl":64,"id":"9510"},"fingerprints":{"tls":"tls/(0303)(130213031301c02cc030009fcca9cca8ccaac02bc02f009ec024c028006bc023c0270067c00ac0140039c009c0130033009d009c003d003c0035002f00ff)((0000)(000b000403000102)(000a000c000a001d0017001e00190018)(0023)(0016)(0017)(000d0030002e040305030603080708080809080a080b080408050806040105010601030302030301020103020202040205020602)(002b0009080304030303020301)(002d00020101)(0033))"},"tls":{"client":{"version":"0303","random":"3ba609bdbe8e320574509cd5f290b204db2bc870cde95ab3c323a197dac61ee4","session_id":"e86852d8e797a669084370c7e54505a823a18d9363744d8290f5add7721190cd","cipher_suites":"130213031301c02cc030009fcca9cca8ccaac02bc02f009ec024c028006bc023c0270067c00ac0140039c009c0130033009d009c003d003c0035002f00ff","compression_methods":"00","server_name":"youtube.com","session_ticket":"","features":"[\"0303\",\"130213031301c02cc030009fcca9cca8ccaac02bc02f009ec024c028006bc023c0270067c00ac0140039c009c0130033009d009c003d003c0035002f00ff\",[[\"0000\",\"000e00000b796f75747562652e636f6d\"],[\"000b\",\"03000102\"],[\"000a\",\"000a001d0017001e00190018\"],[\"0023\",\"\"],[\"0016\",\"\"],[\"0017\",\"\"],[\"000d\",\"002e040305030603080708080809080a080b080408050806040105010601030302030301020103020202040205020602\"],[\"002b\",\"080304030303020301\"],[\"002d\",\"0101\"],[\"0033\",\"0024001d0020c9381923c2a00340a86633eb0882beb83504a6265e8aed883570a2c87ef5d00e\"]]]"}},"src_ip":"192.168.113.237","dst_ip":"172.217.15.78","protocol":6,"src_port":38798,"dst_port":443,"event_start":1565200315.728867} -{"ip":{"version":4,"ttl":128,"id":"9621"},"fingerprints":{"tls_server":"tls_server/(0303)(1302)((0033)(002b00020304))"},"tls":{"server":{"version":"0303","random":"be8ebfe59f0fb5b30f750160b0b2e81ec698301e338485e521c969da3334509e","selected_cipher_suite":"1302","compression_method":"00"}},"src_ip":"172.217.15.78","dst_ip":"192.168.113.237","protocol":6,"src_port":443,"dst_port":38798,"event_start":1565200315.778220} -{"ip":{"version":4,"ttl":64,"id":"cbbf"},"dns":{"base64":"gCQBAAABAAAAAAAAA3d3dwd5b3V0dWJlA2NvbQAAAQAB"},"src_ip":"192.168.113.237","dst_ip":"192.168.113.2","protocol":17,"src_port":50189,"dst_port":53,"event_start":1565200315.890089} -{"ip":{"version":4,"ttl":64,"id":"cbc0"},"dns":{"base64":"mcgBAAABAAAAAAAAA3d3dwd5b3V0dWJlA2NvbQAAHAAB"},"src_ip":"192.168.113.237","dst_ip":"192.168.113.2","protocol":17,"src_port":56627,"dst_port":53,"event_start":1565200315.890272} -{"ip":{"version":4,"ttl":128,"id":"9629"},"dns":{"base64":"mciBgAABAAIADQAMA3d3dwd5b3V0dWJlA2NvbQAAHAABwAwABQABAAAABQAWCnlvdXR1YmUtdWkBbAZnb29nbGXAGMAtABwAAQAAAAUAECYH+LBABAgHAAAAAAAAIA7AGAACAAEAAAAFABQBZwxndGxkLXNlcnZlcnMDbmV0AMAYAAIAAQAAAAUABAFpwG3AGAACAAEAAAAFAAQBYcBtwBgAAgABAAAABQAEAWbAbcAYAAIAAQAAAAUABAFiwG3AGAACAAEAAAAFAAQBa8BtwBgAAgABAAAABQAEAWPAbcAYAAIAAQAAAAUABAFlwG3AGAACAAEAAAAFAAQBZMBtwBgAAgABAAAABQAEAWrAbcAYAAIAAQAAAAUABAFtwG3AGAACAAEAAAAFAAQBbMBtwBgAAgABAAAABQAEAWjAbcCbAAEAAQAAAAUABMAFBh7AuwABAAEAAAAFAATAIQ4ewNsAAQABAAAABQAEwBpcHsD7AAEAAQAAAAUABMAfUB7A6wABAAEAAAAFAATADF4ewKsAAQABAAAABQAEwCMzHsBrAAEAAQAAAAUABMAqXR7BOwABAAEAAAAFAATANnAewIsAAQABAAAABQAEwCusHsELAAEAAQAAAAUABMAwTx7AywABAAEAAAAFAATANLIewSsAAQABAAAABQAEwCmiHg=="},"src_ip":"192.168.113.2","dst_ip":"192.168.113.237","protocol":17,"src_port":53,"dst_port":56627,"event_start":1565200315.920843} -{"ip":{"version":4,"ttl":128,"id":"962a"},"dns":{"base64":"gCSBgAABAA0ADQABA3d3dwd5b3V0dWJlA2NvbQAAAQABwAwABQABAAAABQAWCnlvdXR1YmUtdWkBbAZnb29nbGXAGMAtAAEAAQAAAAUABKzZDO7ALQABAAEAAAAFAASs2Q9uwC0AAQABAAAABQAErNkHzsAtAAEAAQAAAAUABKzZDU7ALQABAAEAAAAFAASs2aSOwC0AAQABAAAABQAErNkN7sAtAAEAAQAAAAUABKzZpK7ALQABAAEAAAAFAASs2QnOwC0AAQABAAAABQAErNkHrsAtAAEAAQAAAAUABKzZB47ALQABAAEAAAAFAASs2Q9OwC0AAQABAAAABQAErNkF7sAYAAIAAQAAAAUAFAFnDGd0bGQtc2VydmVycwNuZXQAwBgAAgABAAAABQAEAWHBEcAYAAIAAQAAAAUABAFswRHAGAACAAEAAAAFAAQBasERwBgAAgABAAAABQAEAW3BEcAYAAIAAQAAAAUABAFkwRHAGAACAAEAAAAFAAQBacERwBgAAgABAAAABQAEAWvBEcAYAAIAAQAAAAUABAFjwRHAGAACAAEAAAAFAAQBZsERwBgAAgABAAAABQAEAWXBEcAYAAIAAQAAAAUABAFiwRHAGAACAAEAAAAFAAQBaMERwS8AAQABAAAABQAEwAUGHg=="},"src_ip":"192.168.113.2","dst_ip":"192.168.113.237","protocol":17,"src_port":53,"dst_port":50189,"event_start":1565200315.920880} -{"ip":{"version":4,"ttl":64,"id":"30a5"},"fingerprints":{"tcp":"tcp/(40)()(40)(faf0)((020405b4)(04)(08)(01)(030307))"},"tcp":{"seq":1862725750,"timestamp":{"ts_val":276715049}},"src_ip":"192.168.113.237","dst_ip":"172.217.5.238","protocol":6,"src_port":39104,"dst_port":443,"event_start":1565200315.921718} -{"ip":{"version":4,"ttl":128,"id":"962d"},"fingerprints":{"tcp_server":"tcp_server/(40)()(80)(faf0)((020405b4))"},"tcp_server":{"seq":4075597862},"src_ip":"172.217.5.238","dst_ip":"192.168.113.237","protocol":6,"src_port":443,"dst_port":39104,"event_start":1565200315.967115} -{"ip":{"version":4,"ttl":64,"id":"30a7"},"fingerprints":{"tls":"tls/(0303)(130213031301c02cc030009fcca9cca8ccaac02bc02f009ec024c028006bc023c0270067c00ac0140039c009c0130033009d009c003d003c0035002f00ff)((0000)(000b000403000102)(000a000c000a001d0017001e00190018)(0023)(0016)(0017)(000d0030002e040305030603080708080809080a080b080408050806040105010601030302030301020103020202040205020602)(002b0009080304030303020301)(002d00020101)(0033))"},"tls":{"client":{"version":"0303","random":"1d4c72afdf687fed8ccfb0f6b1e8d649e2abe9e3045d5df1d4e784928a15b2c8","session_id":"420264ca0855710d7afb250858b7a55e2763be9148729cd5326aeed6aa7536f7","cipher_suites":"130213031301c02cc030009fcca9cca8ccaac02bc02f009ec024c028006bc023c0270067c00ac0140039c009c0130033009d009c003d003c0035002f00ff","compression_methods":"00","server_name":"www.youtube.com","session_ticket":"","features":"[\"0303\",\"130213031301c02cc030009fcca9cca8ccaac02bc02f009ec024c028006bc023c0270067c00ac0140039c009c0130033009d009c003d003c0035002f00ff\",[[\"0000\",\"001200000f7777772e796f75747562652e636f6d\"],[\"000b\",\"03000102\"],[\"000a\",\"000a001d0017001e00190018\"],[\"0023\",\"\"],[\"0016\",\"\"],[\"0017\",\"\"],[\"000d\",\"002e040305030603080708080809080a080b080408050806040105010601030302030301020103020202040205020602\"],[\"002b\",\"080304030303020301\"],[\"002d\",\"0101\"],[\"0033\",\"0024001d0020be0b45ef01e460e963be6c6a6b4a3a417b32b6e3948eb2446a2e3056b49b457f\"]]]"}},"src_ip":"192.168.113.237","dst_ip":"172.217.5.238","protocol":6,"src_port":39104,"dst_port":443,"event_start":1565200315.967432} -{"ip":{"version":4,"ttl":128,"id":"962f"},"fingerprints":{"tls_server":"tls_server/(0303)(1302)((0033)(002b00020304))"},"tls":{"server":{"version":"0303","random":"207b6cedb5af7aefa6f3b9ba10581589d801b15cff8b93ec113106fefe4a8e63","selected_cipher_suite":"1302","compression_method":"00"}},"src_ip":"172.217.5.238","dst_ip":"192.168.113.237","protocol":6,"src_port":443,"dst_port":39104,"event_start":1565200316.015600} -{"ip":{"version":4,"ttl":64,"id":"ccaa"},"dns":{"base64":"10oBAAABAAAAAAAAB3R3aXR0ZXIDY29tAAABAAE="},"src_ip":"192.168.113.237","dst_ip":"192.168.113.2","protocol":17,"src_port":36511,"dst_port":53,"event_start":1565200317.289839} -{"ip":{"version":4,"ttl":64,"id":"ccab"},"dns":{"base64":"1DgBAAABAAAAAAAAB3R3aXR0ZXIDY29tAAAcAAE="},"src_ip":"192.168.113.237","dst_ip":"192.168.113.2","protocol":17,"src_port":35429,"dst_port":53,"event_start":1565200317.289914} -{"ip":{"version":4,"ttl":128,"id":"9746"},"dns":{"base64":"10qBgAABAAIADQANB3R3aXR0ZXIDY29tAAABAAHADAABAAEAAAAFAARo9CpBwAwAAQABAAAABQAEaPQqAcAUAAIAAQAAAAUAFAFhDGd0bGQtc2VydmVycwNuZXQAwBQAAgABAAAABQAEAWbAS8AUAAIAAQAAAAUABAFiwEvAFAACAAEAAAAFAAQBZ8BLwBQAAgABAAAABQAEAWnAS8AUAAIAAQAAAAUABAFqwEvAFAACAAEAAAAFAAQBbMBLwBQAAgABAAAABQAEAWvAS8AUAAIAAQAAAAUABAFtwEvAFAACAAEAAAAFAAQBaMBLwBQAAgABAAAABQAEAWXAS8AUAAIAAQAAAAUABAFjwEvAFAACAAEAAAAFAAQBZMBLwEkAAQABAAAABQAEwAUGHsB5AAEAAQAAAAUABMAhDh7BCQABAAEAAAAFAATAGlwewRkAAQABAAAABQAEwB9QHsD5AAEAAQAAAAUABMAMXh7AaQABAAEAAAAFAATAIzMewIkAAQABAAAABQAEwCpdHsDpAAEAAQAAAAUABMA2cB7AmQABAAEAAAAFAATAK6wewKkAAQABAAAABQAEwDBPHsDJAAEAAQAAAAUABMA0sh7AuQABAAEAAAAFAATAKaIewNkAAQABAAAABQAEwDdTHg=="},"src_ip":"192.168.113.2","dst_ip":"192.168.113.237","protocol":17,"src_port":53,"dst_port":36511,"event_start":1565200317.290768} -{"ip":{"version":4,"ttl":128,"id":"9747"},"dns":{"base64":"1DiBgAABAAAAAQAAB3R3aXR0ZXIDY29tAAAcAAHADAAGAAEAAAAFADwDbnMxA3AyNgZkeW5lY3QDbmV0AAp6b25lLWFkbWluBmR5bmRuc8AUd6KRMQAADhAAAAJYAAk6gAAAADw="},"src_ip":"192.168.113.2","dst_ip":"192.168.113.237","protocol":17,"src_port":53,"dst_port":35429,"event_start":1565200317.321305} -{"ip":{"version":4,"ttl":64,"id":"9391"},"fingerprints":{"tcp":"tcp/(40)()(40)(faf0)((020405b4)(04)(08)(01)(030307))"},"tcp":{"seq":2404143520,"timestamp":{"ts_val":1378593247}},"src_ip":"192.168.113.237","dst_ip":"104.244.42.65","protocol":6,"src_port":42708,"dst_port":443,"event_start":1565200317.321610} -{"ip":{"version":4,"ttl":128,"id":"9748"},"fingerprints":{"tcp_server":"tcp_server/(40)()(80)(faf0)((020405b4))"},"tcp_server":{"seq":3021344055},"src_ip":"104.244.42.65","dst_ip":"192.168.113.237","protocol":6,"src_port":443,"dst_port":42708,"event_start":1565200317.364977} -{"ip":{"version":4,"ttl":64,"id":"9393"},"fingerprints":{"tls":"tls/(0303)(130213031301c02cc030009fcca9cca8ccaac02bc02f009ec024c028006bc023c0270067c00ac0140039c009c0130033009d009c003d003c0035002f00ff)((0000)(000b000403000102)(000a000c000a001d0017001e00190018)(0023)(0016)(0017)(000d0030002e040305030603080708080809080a080b080408050806040105010601030302030301020103020202040205020602)(002b0009080304030303020301)(002d00020101)(0033))"},"tls":{"client":{"version":"0303","random":"3c340112ce0595c36b0c9c284b35bd1a46e15b4b772e2a85e15a12eb709cc27d","session_id":"d5c067b2ecb87070a6e89fe3e7e1b63d8ec2bd2f9ac7df71891118d3b443acb8","cipher_suites":"130213031301c02cc030009fcca9cca8ccaac02bc02f009ec024c028006bc023c0270067c00ac0140039c009c0130033009d009c003d003c0035002f00ff","compression_methods":"00","server_name":"twitter.com","session_ticket":"","features":"[\"0303\",\"130213031301c02cc030009fcca9cca8ccaac02bc02f009ec024c028006bc023c0270067c00ac0140039c009c0130033009d009c003d003c0035002f00ff\",[[\"0000\",\"000e00000b747769747465722e636f6d\"],[\"000b\",\"03000102\"],[\"000a\",\"000a001d0017001e00190018\"],[\"0023\",\"\"],[\"0016\",\"\"],[\"0017\",\"\"],[\"000d\",\"002e040305030603080708080809080a080b080408050806040105010601030302030301020103020202040205020602\"],[\"002b\",\"080304030303020301\"],[\"002d\",\"0101\"],[\"0033\",\"0024001d0020c81253b2a53f659ff93c558972a49012973e7492b2b48a32925f260de3b0c93b\"]]]"}},"src_ip":"192.168.113.237","dst_ip":"104.244.42.65","protocol":6,"src_port":42708,"dst_port":443,"event_start":1565200317.365401} -{"ip":{"version":4,"ttl":128,"id":"974c"},"fingerprints":{"tls_server":"tls_server/(0303)(c02f)((ff01)(000b000403000102)(0023))"},"tls":{"server":{"certs":[{"base64":"MIIGcTCCBVmgAwIBAgIQB6JxQM/Z/JSUJ1FPhVVCbzANBgkqhkiG9w0BAQsFADBwMQswCQYDVQQGEwJVUzEVMBMGA1UEChMMRGlnaUNlcnQgSW5jMRkwFwYDVQQLExB3d3cuZGlnaWNlcnQuY29tMS8wLQYDVQQDEyZEaWdpQ2VydCBTSEEyIEhpZ2ggQXNzdXJhbmNlIFNlcnZlciBDQTAeFw0xOTAzMDcwMDAwMDBaFw0yMDAzMDcxMjAwMDBaMHcxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1TYW4gRnJhbmNpc2NvMRYwFAYDVQQKEw1Ud2l0dGVyLCBJbmMuMQ0wCwYDVQQLEwRhdGxhMRQwEgYDVQQDEwt0d2l0dGVyLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAOZX2kcltfrcPTyfAAFtIAgTueiAqeU/k6M3OArrOTRJGLuLCsvj3a+O2Y4cxBvPyhsAgbM+nLlXtf0ziH5SDjJzLO6mVK6T71xZOjI8z01HVkbwqOnFVGPD82XygX4W1oajOt4d1wMpOZoc6B/Lh+y7QCFUvM+xdMD085JyrWZvaGw3oQQq4DbrDBaoWCbSzdbbuRk1xpgctN2xd5rF/n5Mg4UkGByTR/NEfB9luVio+bbTo4tPiKRbwO2nzoGGWMaS8T+UEtTpel3YXPpUsP2fkcPFzpht6eYrOi7qhtaugW8pes3jyPhxxp93tvNH2Or7SaBg6cM6mEiIjN2Ez8sCAwEAAaOCAv4wggL6MB8GA1UdIwQYMBaAFFFo/5CvAgd1PMzZZWRiohK4WXI7MB0GA1UdDgQWBBSENo9/S2lF5zjBaIIQ7RVsnpEMaTAnBgNVHREEIDAeggt0d2l0dGVyLmNvbYIPd3d3LnR3aXR0ZXIuY29tMA4GA1UdDwEB/wQEAwIFoDAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwdQYDVR0fBG4wbDA0oDKgMIYuaHR0cDovL2NybDMuZGlnaWNlcnQuY29tL3NoYTItaGEtc2VydmVyLWc2LmNybDA0oDKgMIYuaHR0cDovL2NybDQuZGlnaWNlcnQuY29tL3NoYTItaGEtc2VydmVyLWc2LmNybDBMBgNVHSAERTBDMDcGCWCGSAGG/WwBATAqMCgGCCsGAQUFBwIBFhxodHRwczovL3d3dy5kaWdpY2VydC5jb20vQ1BTMAgGBmeBDAECAjCBgwYIKwYBBQUHAQEEdzB1MCQGCCsGAQUFBzABhhhodHRwOi8vb2NzcC5kaWdpY2VydC5jb20wTQYIKwYBBQUHMAKGQWh0dHA6Ly9jYWNlcnRzLmRpZ2ljZXJ0LmNvbS9EaWdpQ2VydFNIQTJIaWdoQXNzdXJhbmNlU2VydmVyQ0EuY3J0MAwGA1UdEwEB/wQCMAAwggEFBgorBgEEAdZ5AgQCBIH2BIHzAPEAdwC72d+8H4pxtZOUI5eqkntHOFeVCqtS6BqQlmQ2jh7RhQAAAWlZVWG+AAAEAwBIMEYCIQCZOt2dMF/436CEFe7BC/fYroy24FfWkERqHaL2fSOmSgIhAKmrYz3oS314+5Mt3tvlAtKZtUMACoNIkUdQ8Wzqpir8AHYAh3W/51l8+IxDmV+9827/Vo1HVjb/SrVgwbTq/16ggw8AAAFpWVVjAwAABAMARzBFAiAQbTBEz6oSpOcpBz1JnXW4hWGRGkV2pwssM9ITkAA81QIhAJPBH6YLyk8idL0ntAig+St39IOsIRyKAosS+wqOwyOCMA0GCSqGSIb3DQEBCwUAA4IBAQCh0yFFh1vTQMpEgFLa6I5hoheo/LkG6MuWHrRI4raGkQtGbXdbYtudOx8bpb3K12l/B9OcZZWhWiW47pjOgxdny1zkJjyaAc1iye0gt/dKBc8WRtlagBlC9C8tWkhvanppbnc02DvwX97kDWwUFhqFcHLTZhWIB3Q2ztp2XAFMqGFR9YzxmgCugJGVa1RuyY/VViiOFManXW0aPilm8o+cjWN94x510w6osrwiOSpZAJyMQgPCFaCVcLO/2OIPj4SMYsW1Tx9CGdqz5fufSavzmE+t1FJYWgn0YSZ5G3+I4tkMM4rbmDZQIQatunC9SRfZte4tT4yg6LSsLwoQRCjZ"},{"base64":"MIIEsTCCA5mgAwIBAgIQBOHnpNxc8vNtwCtCuF0VnzANBgkqhkiG9w0BAQsFADBsMQswCQYDVQQGEwJVUzEVMBMGA1UEChMMRGlnaUNlcnQgSW5jMRkwFwYDVQQLExB3d3cuZGlnaWNlcnQuY29tMSswKQYDVQQDEyJEaWdpQ2VydCBIaWdoIEFzc3VyYW5jZSBFViBSb290IENBMB4XDTEzMTAyMjEyMDAwMFoXDTI4MTAyMjEyMDAwMFowcDELMAkGA1UEBhMCVVMxFTATBgNVBAoTDERpZ2lDZXJ0IEluYzEZMBcGA1UECxMQd3d3LmRpZ2ljZXJ0LmNvbTEvMC0GA1UEAxMmRGlnaUNlcnQgU0hBMiBIaWdoIEFzc3VyYW5jZSBTZXJ2ZXIgQ0EwggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQC24C/CJAbIbQRf1+8KZAayfSImZRauQkCbztyfn3YHPsMwVYcZuU+UDlqUH1VWtMICKq/QmO4LQNfE0DtyyBSe75CxEamu0si4QzrZCwvV1ZX1QK/IHe1NnF9Xt4ZQaJn1itrSxwUfqJfJ3KSxgoQtxq2lnMcZgqaFD15EWCo3j/018QsIJzJa9buLnqS9UdAn4t07QjOjBSjEuyjMmqwrIw14xnvmXnG3Sj4I+4G3FhahnSMSTeXXkgisdaScus0Xsh5ENWV/UyU50RwKmmMbGZJ0aAo3wsJSSMs5WqK24V3B3aAguCGikyZvFEohQcftbZvySC/zA/WiaJJTL17jAgMBAAGjggFJMIIBRTASBgNVHRMBAf8ECDAGAQH/AgEAMA4GA1UdDwEB/wQEAwIBhjAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwNAYIKwYBBQUHAQEEKDAmMCQGCCsGAQUFBzABhhhodHRwOi8vb2NzcC5kaWdpY2VydC5jb20wSwYDVR0fBEQwQjBAoD6gPIY6aHR0cDovL2NybDQuZGlnaWNlcnQuY29tL0RpZ2lDZXJ0SGlnaEFzc3VyYW5jZUVWUm9vdENBLmNybDA9BgNVHSAENjA0MDIGBFUdIAAwKjAoBggrBgEFBQcCARYcaHR0cHM6Ly93d3cuZGlnaWNlcnQuY29tL0NQUzAdBgNVHQ4EFgQUUWj/kK8CB3U8zNllZGKiErhZcjswHwYDVR0jBBgwFoAUsT7DaQP4v0cB1JgmGggC72NkK8MwDQYJKoZIhvcNAQELBQADggEBABiKlYkD5m3fXPwdaOpKj4PWUS+Na0QWnqxj9dJubISZi6qBcYRb7TROsLd5kinMLYBq8I4g4Xmk/gNHE+r1hspZcX30BJZr01lYPf7TMSVcGDiEo+afgv2MW5gxTs14nhr9hctJqvIni5ly/D6q1UEL2tU2ob8cbkdJf17ZSHwD2f2LSaCYJkJA69aSEaRkCldUxPUd1gJea6zuxICaEnL6VpPX/78whQYwvwt/Tv9XBZ0k7YXDK/umdaisLRbvfXknsuvCnQsH6qqF0wGjIChBWUMo0oHjqvbsezt3tkBigAVBRQHvFwY+3sAzm2fTYS5yh+Rp/BIAV0AecPUeybQ="}],"version":"0303","random":"53f71560f2ae266be5e8806cde4ff0c59682ef85ecd579beb3c8fb516f69f367","selected_cipher_suite":"c02f","compression_method":"00","session_ticket":""}},"reassembly_properties":{"reassembled":true},"src_ip":"104.244.42.65","dst_ip":"192.168.113.237","protocol":6,"src_port":443,"dst_port":42708,"event_start":1565200317.419555} -{"ip":{"version":4,"ttl":64,"id":"cd28"},"dns":{"base64":"mYUBAAABAAAAAAAACW1pY3Jvc29mdANjb20AAAEAAQ=="},"src_ip":"192.168.113.237","dst_ip":"192.168.113.2","protocol":17,"src_port":51332,"dst_port":53,"event_start":1565200317.804832} -{"ip":{"version":4,"ttl":64,"id":"cd29"},"dns":{"base64":"G5oBAAABAAAAAAAACW1pY3Jvc29mdANjb20AABwAAQ=="},"src_ip":"192.168.113.237","dst_ip":"192.168.113.2","protocol":17,"src_port":59157,"dst_port":53,"event_start":1565200317.805019} -{"ip":{"version":4,"ttl":128,"id":"982d"},"dns":{"base64":"mYWBgAABAAUABAAFCW1pY3Jvc29mdANjb20AAAEAAcAMAAEAAQAAAAUABA1NobPADAABAAEAAAAFAAQoccjJwAwAAQABAAAABQAEKHBIzcAMAAEAAQAAAAUABChMBA/ADAABAAEAAAAFAARo15Q/wAwAAgABAAAABQAOA25zMgRtc2Z0A25ldADADAACAAEAAAAFAAYDbnM0wH/ADAACAAEAAAAFAAYDbnMxwH/ADAACAAEAAAAFAAYDbnMzwH/AewABAAEAAAAFAATQVAI1wLkAAQABAAAABQAEwd1xNcCnABwAAQAAAAUAECYgAAAAMAAAAAAAAAAAAFPAewAcAAEAAAAFABAmIAAAADIAAAAAAAAAAABTwLkAHAABAAAABQAQJiAAAAA0AAAAAAAAAAAAUw=="},"src_ip":"192.168.113.2","dst_ip":"192.168.113.237","protocol":17,"src_port":53,"dst_port":51332,"event_start":1565200317.805690} -{"ip":{"version":4,"ttl":128,"id":"982e"},"dns":{"base64":"G5qBgAABAAAAAQAACW1pY3Jvc29mdANjb20AABwAAcAMAAYAAQAAAAUAKwNuczEEbXNmdANuZXQABm1zbmhzdMAMeFi6BgAAHCAAAAJYACTqAAAADhA="},"src_ip":"192.168.113.2","dst_ip":"192.168.113.237","protocol":17,"src_port":53,"dst_port":59157,"event_start":1565200317.836652} -{"ip":{"version":4,"ttl":64,"id":"14dd"},"fingerprints":{"tcp":"tcp/(40)()(40)(faf0)((020405b4)(04)(08)(01)(030307))"},"tcp":{"seq":2820986476,"timestamp":{"ts_val":2626480894}},"src_ip":"192.168.113.237","dst_ip":"13.77.161.179","protocol":6,"src_port":60570,"dst_port":443,"event_start":1565200317.837161} -{"ip":{"version":4,"ttl":128,"id":"982f"},"fingerprints":{"tcp_server":"tcp_server/(40)()(80)(faf0)((020405b4))"},"tcp_server":{"seq":3167476385},"src_ip":"13.77.161.179","dst_ip":"192.168.113.237","protocol":6,"src_port":443,"dst_port":60570,"event_start":1565200317.942614} -{"ip":{"version":4,"ttl":64,"id":"14df"},"fingerprints":{"tls":"tls/(0303)(130213031301c02cc030009fcca9cca8ccaac02bc02f009ec024c028006bc023c0270067c00ac0140039c009c0130033009d009c003d003c0035002f00ff)((0000)(000b000403000102)(000a000c000a001d0017001e00190018)(0023)(0016)(0017)(000d0030002e040305030603080708080809080a080b080408050806040105010601030302030301020103020202040205020602)(002b0009080304030303020301)(002d00020101)(0033))"},"tls":{"client":{"version":"0303","random":"49a61bd3aaf0ada9ccda313537f7690be28bed61a40d5d055ee627193813cf76","session_id":"770d8db85111ec7971456b0afea3a3e3932e35e4aca2d934a1e7d6fa1436acc1","cipher_suites":"130213031301c02cc030009fcca9cca8ccaac02bc02f009ec024c028006bc023c0270067c00ac0140039c009c0130033009d009c003d003c0035002f00ff","compression_methods":"00","server_name":"microsoft.com","session_ticket":"","features":"[\"0303\",\"130213031301c02cc030009fcca9cca8ccaac02bc02f009ec024c028006bc023c0270067c00ac0140039c009c0130033009d009c003d003c0035002f00ff\",[[\"0000\",\"001000000d6d6963726f736f66742e636f6d\"],[\"000b\",\"03000102\"],[\"000a\",\"000a001d0017001e00190018\"],[\"0023\",\"\"],[\"0016\",\"\"],[\"0017\",\"\"],[\"000d\",\"002e040305030603080708080809080a080b080408050806040105010601030302030301020103020202040205020602\"],[\"002b\",\"080304030303020301\"],[\"002d\",\"0101\"],[\"0033\",\"0024001d0020891dd88c9a9dc1eb37f35c68408e0307e50d5eea2882257bb90ee7b6e000d401\"]]]"}},"src_ip":"192.168.113.237","dst_ip":"13.77.161.179","protocol":6,"src_port":60570,"dst_port":443,"event_start":1565200317.943160} -{"ip":{"version":4,"ttl":128,"id":"9836"},"fingerprints":{"tls_server":"tls_server/(0303)(c030)((ff01)(000b000403000102)(0023))"},"tls":{"server":{"certs":[{"base64":"MIISXDCCEESgAwIBAgITFgAFDAsp4tFASrt9zwAAAAUMCzANBgkqhkiG9w0BAQsFADCBizELMAkGA1UEBhMCVVMxEzARBgNVBAgTCldhc2hpbmd0b24xEDAOBgNVBAcTB1JlZG1vbmQxHjAcBgNVBAoTFU1pY3Jvc29mdCBDb3Jwb3JhdGlvbjEVMBMGA1UECxMMTWljcm9zb2Z0IElUMR4wHAYDVQQDExVNaWNyb3NvZnQgSVQgVExTIENBIDQwHhcNMTkwNTE3MDIyOTE1WhcNMjEwNTE3MDIyOTE1WjAaMRgwFgYDVQQDDA8qLm1pY3Jvc29mdC5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDmepkIe+jvvXqtZVvd5Gt1L0xFOI+0SniOz35tKL8glkd5X2iUcuN4mPYlNC3LzhDv2H5JeTq0YrRKdfZPb8IzJCgmwELeNySYndxkUTw2HURcPj9o7AyANqviu9b6qR4A6WI6KTkyyc2lojPiuXKtQ10jBtCHNi03UqrLN1i0ZTa4KlfoSEOu39aT/pakk7RrFC57Tqnx48zKOazmBLUOxfaIrCux3JTOaM77VMunfJfSS2R+mMrWr+TQ1s0vyZqf+eBmC3367185InVjNkr7H900I3QVkrATuX2rEOVLwfUF2DurJEazSZDU0SmoTu00Pd4g2SlVSo9xCJqpWtSJAgMBAAGjgg4nMIIOIzB4BgkqhkiG9w0BCQ8EazBpMA4GCCqGSIb3DQMCAgIAgDAOBggqhkiG9w0DBAICAIAwCwYJYIZIAWUDBAEqMAsGCWCGSAFlAwQBLTALBglghkgBZQMEAQIwCwYJYIZIAWUDBAEFMAcGBSsOAwIHMAoGCCqGSIb3DQMHMIIB9wYKKwYBBAHWeQIEAgSCAecEggHjAeEAdwDuS723dc5guuFCaR+r4Z5mow9+X7By2IMAxHuJeqj9ywAAAWrDqHFNAAAEAwBIMEYCIQD0dwPwU8gcb9ykPsUQ950AxBU1+EHkeJggADmu7bZTKAIhAOU36VVQj80s9Mpk4GLViRJ93sytOdczGm3kfL/6VWFmAHYA9lyUL9F3MCIUVBgIMJRWjuNNExkzv98MLyALzE7xZOMAAAFqw6hxSgAABAMARzBFAiEAiDoIHVLz/u85x/JYsnNb/Yntc9kpd6D6at50Y0euGtwCIFfJLvQPHvrjEzGDJQ3ldUKG63aIBPKTE/M9SkEJ41W5AHYAXNxDkv7mq0VEsV6a1FbmEDf71fpH3KFzlLJe5vbHDsoAAAFqw6hxYQAABAMARzBFAiEA+r5693PaDGW3WBBz1/aQ8V/LuFF4WLkwhaHWsQrPPF0CIFBrAZYpgqAiOf5enLTqpMk9FTDtJHhegtocUWCCaNRtAHYAVYHUwhaQNgFK6gubVzxT8MDkOHhwJQgXL6OqHQcT0wwAAAFqw6hyMAAABAMARzBFAiEAtGpR5a6NxYG4jDqqjKRptlN/4oKgcG3NddgjY85aiQoCIDtZfPIsKvvi7Dp915kJN2KWpSAjxRyrj3f9VYRdO3HSMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwIwCgYIKwYBBQUHAwEwPgYJKwYBBAGCNxUHBDEwLwYnKwYBBAGCNxUIh9qGdYPu2QGCyYUbgbWeYYX062CBXYTS30KC55N6AgFkAgEdMIGFBggrBgEFBQcBAQR5MHcwUQYIKwYBBQUHMAKGRWh0dHA6Ly93d3cubWljcm9zb2Z0LmNvbS9wa2kvbXNjb3JwL01pY3Jvc29mdCUyMElUJTIwVExTJTIwQ0ElMjA0LmNydDAiBggrBgEFBQcwAYYWaHR0cDovL29jc3AubXNvY3NwLmNvbTAdBgNVHQ4EFgQUDy1hz6AvvPkrcPW9hiSibjry2agwCwYDVR0PBAQDAgSwMIIJTwYDVR0RBIIJRjCCCUKCCG1zZG4uY29tggh4Ym94LmNvbYIKKi5saXZlLmNvbYIKKi5tc2RuLmNvbYIKZ2lnamFtLmNvbYIKd2luZG93cy5ubIIKd2luaGVjLmNvbYIKd2luaGVjLm5ldIILKi5henVyZS5iaXqCCyouYXp1cmUubmV0ggsqLmdldGllLmNvbYILKi5tc2RuMi5jb22CCyoubmV0ZnguY29tggsqLnZzc2RrLmNvbYILc3VyZmFjZS5jb22CC3dpbmRvd3MuY29tggwqLmdpZ2phbS5jb22CDCoubXNkbnR2LmNvbYIMKi53aW5kb3dzLm5sggwqLndpbmhlYy5jb22CDCoud2luaGVjLm5ldIIMaG9sb2xlbnMuY29tggxtaWNyb3NvZnQuYXqCDG1pY3Jvc29mdC5iZYIMbWljcm9zb2Z0LmJ5ggxtaWNyb3NvZnQuY2GCDG1pY3Jvc29mdC5jaIIMbWljcm9zb2Z0LmNsggxtaWNyb3NvZnQuY3qCDG1pY3Jvc29mdC5kZYIMbWljcm9zb2Z0LmRrggxtaWNyb3NvZnQuZWWCDG1pY3Jvc29mdC5lc4IMbWljcm9zb2Z0LmV1ggxtaWNyb3NvZnQuZmmCDG1pY3Jvc29mdC5nZYIMbWljcm9zb2Z0LmdyggxtaWNyb3NvZnQuaHWCDG1pY3Jvc29mdC5pc4IMbWljcm9zb2Z0Lml0ggxtaWNyb3NvZnQuanCCDG1pY3Jvc29mdC5sdIIMbWljcm9zb2Z0Lmx1ggxtaWNyb3NvZnQubHaCDG1pY3Jvc29mdC5tZIIMbWljcm9zb2Z0LnBsggxtaWNyb3NvZnQucHSCDG1pY3Jvc29mdC5yb4IMbWljcm9zb2Z0LnJzggxtaWNyb3NvZnQucnWCDG1pY3Jvc29mdC5zZYIMbWljcm9zb2Z0LnNpggxtaWNyb3NvZnQudHaCDG1pY3Jvc29mdC51YYIMbWljcm9zb2Z0LnV6ggxtaWNyb3NvZnQudm6CDSouYml6dGFsay5vcmeCDSouaHlwZXItdi5jb22CDSoubXNkbm1hZy5jb22CDSouc3VyZmFjZS5jb22CDSoudm9ydC1leC5jb22CDSoud2luZG93cy5iaXqCDSoud2luZG93cy5jb22CDWltYWdpbmVjdXAucGyCDW1pY3Jvc29mdC5jYXSCDW1pY3Jvc29mdC5jb22CDiouZnVzZWxhYnMuY29tgg4qLmhvbG9sZW5zLmNvbYIOKi5taWNyb3NvZnQuY2GCDioubWljcm9zb2Z0LmN6gg4qLm1pY3Jvc29mdC5kZYIOKi5taWNyb3NvZnQuZXWCDioubWljcm9zb2Z0Lml0gg4qLm1pY3Jvc29mdC5qcIIOKi5taWNyb3NvZnQucGyCDioubWljcm9zb2Z0LnJ1gg4qLm1zZG53aWtpLmNvbYIPKi5nYW1ldm9pY2UuY29tgg8qLmltYWdpbmVjdXAucGyCDyoubWFjb2ZmaWNlLmNvbYIPKi5taWNyb3NvZnQuY29tghAqLm1pY3Jvc29mdC5iYW5kghAqLm1zbGVhcm5pbmcuY29tghAqLm1zbGVhcm5pbmcub3JnghAqLnBvd2VycG9pbnQuY29tghAqLnNoYXJlcG9pbnQubmV0ghEqLm15bWljcm9zb2Z0LmNvbYIRbWljcm9zb2Z0ZWRnZS5jb22CEW1pY3Jvc29mdGxpbmMuY29tghIqLmFwcHJlYWRpbmVzcy5jb22CEiouZGVwbG95b2ZmaWNlLmNvbYISKi5vZmZpY2V3ZWJhcHAuY29tghIqLnBhcnRuZXJndWlkZS5jb22CEiouc2NyaXB0anVua2llLmNvbYISKi5zeXNpbnRlcm5hbHMuY29tghJtaWNyb3NvZnRjbG91ZC5jb22CEyoubGFzdGRldmVsb3Blci5jb22CEyoubWljcm9zb2Z0YmFuZC5jb22CEyoubWljcm9zb2Z0ZWRnZS5jb22CEyoubWljcm9zb2Z0bGluYy5jb22CEyoubXNkbmdlZWtzcGVhay5jb22CEyouc3RhcnR1cGNlbnRlci5jb22CEyoud2luZG93c21vYmlsZS5jb22CFCouY2xpZW50c2VjdXJpdHkuY29tghQqLmNsaWVudHNlY3VyaXR5Lm5ldIIUKi5jbGllbnRzZWN1cml0eS5vcmeCFCoubWljcm9zb2Z0Y2xvdWQuY29tghQqLnBvd2VycG9pbnRsaXZlLmNvbYIUKi53aW5kb3dzY2F0YWxvZy5jb22CFSoubWljcm9zb2Z0aGVhbHRoLmNvbYIVKi5teXdpbmRvd3Ntb2JpbGUuY29tghUqLnBvd2VycG9pbnRyYWRpby5jb22CFSouc2hhcmVwb2ludHBlZGlhLmNvbYIVKi53aW5kb3dzZGVmZW5kZXIuY29tghUqLndpbmRvd3NkZWZlbmRlci5uZXSCFSoud2luZG93c2RlZmVuZGVyLm9yZ4IVKi53aW5kb3dzZW1iZWRkZWQuY29tghYqLm1pY3Jvc29mdHN1cmZhY2UuY29tghYqLm1pY3Jvc29mdHdpbmRvd3MuY29tghYqLm1vYmlsZXBjcGFydG5lcnMuY29tghZ3aW5kb3dzbWFya2V0cGxhY2UuY29tghcqLmRldmVsb3BvbmJpbmdtYXBzLmNvbYIXKi5taWNyb3NvZnRiaXpzcGFyay5jb22CFyoubWljcm9zb2Z0ZHluYW1pY3MuY29tghcqLm1pY3Jvc29mdGxlYXJuaW5nLm5ldIIXKi5taWNyb3NvZnRsZWFybmluZy5vcmeCFyoud2luZG93c3Bvd2Vyc2hlbGwub3JnghgqLm1pY3Jvc29mdGl0YWNhZGVteS5jb22CGCoucGFydG5lcnNpbmxlYXJuaW5nLmNvbYIYKi53aW5kb3dzbWFya2V0cGxhY2UuY29tghoqLm1pY3Jvc29mdGdhbWVzdHVkaW9zLmNvbYIbKi5tc3NoYXJlcG9pbnRjb21tdW5pdHkuY29tghsqLm15c2hhcmVwb2ludGNvbW11bml0eS5jb22CHCouYnVzaW5lc3NyZWFkeWxpY2Vuc2luZy5jb22CHCoucmV0YWlsZXhwZXJpZW5jZWNlbnRlci5jb20wgawGA1UdHwSBpDCBoTCBnqCBm6CBmIZLaHR0cDovL21zY3JsLm1pY3Jvc29mdC5jb20vcGtpL21zY29ycC9jcmwvTWljcm9zb2Z0JTIwSVQlMjBUTFMlMjBDQSUyMDQuY3JshklodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpL21zY29ycC9jcmwvTWljcm9zb2Z0JTIwSVQlMjBUTFMlMjBDQSUyMDQuY3JsME0GA1UdIARGMEQwQgYJKwYBBAGCNyoBMDUwMwYIKwYBBQUHAgEWJ2h0dHA6Ly93d3cubWljcm9zb2Z0LmNvbS9wa2kvbXNjb3JwL2NwczAfBgNVHSMEGDAWgBR6e4zBz+egyhzUa/r74TPDDxqinTAdBgNVHSUEFjAUBggrBgEFBQcDAgYIKwYBBQUHAwEwDQYJKoZIhvcNAQELBQADggIBACrMnCZR6pFRSGNDpUy1NYBlfZBFb94OgEhu+Prmq390badYhGb9opwkd+1TohltyGTAJqdaxP7ubmqYjAquEj6eZ1B9JvgelFNhDxeyaE5imUSH/J2+P7HXh4hE/acZAQtE6J6AhohLogWgvjidwlocqdlD7RT14RFW4faLgvAGJAa1zyNAlIhOY2LAb/VA6jmKv13XKnxA+iQ0dMQFBmvEpuH5bX3D8BQ3R3WLlZN6NJ9HuVhvJ7lv9UT0nYAWNGf2jOwH2MsBOeEN9q0mXTeEizfJUc2O9JOUPiJXtvvVvHmnZdF3Mk8ENL/f5k/jk+2PagfjFBQqVJJ1XBH+ndXesbEp6RkBytF/8ubvIAa9Kuel7FJjQTN8eVik2GNnQICHISgYXj8V5MKd/AmrWwBivRY5PAL0IKWjlZ39WWH7smocPgCuHqM7usme7I5ToujwomY9Z7XoewARy+sOt9qgZJ9QaPlKVXB3m+8fxjGtnyP+kBkBtX6ATkai4lcQg/Au+w9JWZZqNjCjU2dRq2GVz2uSAq/k8kKMcEr7kUlS96k9OxkH4LMhcaF/6/fZzEK/urLWlydQ8QuGlfgZkU3L8iFxVtZETFZQNYPR1KjylPhWKR3V1FtM2dtJ6nWC5UNhJHDkPsRnfp7gEvH7VgqVqMgAxIOxGqicYL66amu/"},{"base64":"MIIFtDCCBJygAwIBAgIQC2qzsD6xqfbEYJJqqM3+szANBgkqhkiG9w0BAQsFADBaMQswCQYDVQQGEwJJRTESMBAGA1UEChMJQmFsdGltb3JlMRMwEQYDVQQLEwpDeWJlclRydXN0MSIwIAYDVQQDExlCYWx0aW1vcmUgQ3liZXJUcnVzdCBSb290MB4XDTE2MDUyMDEyNTIzOFoXDTI0MDUyMDEyNTIzOFowgYsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpXYXNoaW5ndG9uMRAwDgYDVQQHEwdSZWRtb25kMR4wHAYDVQQKExVNaWNyb3NvZnQgQ29ycG9yYXRpb24xFTATBgNVBAsTDE1pY3Jvc29mdCBJVDEeMBwGA1UEAxMVTWljcm9zb2Z0IElUIFRMUyBDQSA0MIICIjANBgkqhkiG9w0BAQEFAAOCAg8AMIICCgKCAgEAq+XrXaNrOZ71NIgSux1SJl19CQvGeY6rtw7fGbLd7g/27vRW5Ebikg/iZwvjHHGk1EFztMuZFo6/d32wrx5s7XEuwwh3Sl6Sruxa0EiB0MXpoPV6jx6NXtOtksDaxpE1MSC5OQTNECo8lx0AnpkYGAnPS5fkyfwA8AxanTboskDBSqyEKKo9Rhgrp4qs9K9LqH5JQsdiIMDmpztd65Afu4rYnJDjOrFswpTOPjJry3GzQS65xeFd2FkngvvhSA1+6ATx+QEnQfqUWn3FMLu2utcRm4j6AcxuS5K5+Hg8y5xomhZmiNCTsCqDLpcRHX6BIGHksLmbnG5TlZUixtm9dRC62XWMPD8d0Jb4M0V7ex9UM+VIl6cFJKLb0dyVriAqfZaJSHuSetAksd5IEfdnPLTf+Fhg9U97NGjm/awmCLbzLEPbT8QW0JsMcYexB2uG3Y+gsftm2tjL6fLwZeWO2BzqL7otZPFe0BtQsgyFSs87yC4qanWMwK5c2enAfH182pzjvUqwYAeCK31dyBCvLmKM3Jr94dm5WUiXQhrDUIELH4Mia+SbvCkigv2AUVx1Xw41wt1/L3pnnz2OW4y7r530zAz7qB+dIcHz51IaXc4UV21QuEnusQsn0uJpJxJuxsAmPuekKxuLUzgG+hqHOuBLf5kWTlk9WWnxcadlZRsCAwEAAaOCAUIwggE+MB0GA1UdDgQWBBR6e4zBz+egyhzUa/r74TPDDxqinTAfBgNVHSMEGDAWgBTlnVkwgkdYzKz6CFQ2hns6tQRN8DASBgNVHRMBAf8ECDAGAQH/AgEAMA4GA1UdDwEB/wQEAwIBhjAnBgNVHSUEIDAeBggrBgEFBQcDAQYIKwYBBQUHAwIGCCsGAQUFBwMJMDQGCCsGAQUFBwEBBCgwJjAkBggrBgEFBQcwAYYYaHR0cDovL29jc3AuZGlnaWNlcnQuY29tMDoGA1UdHwQzMDEwL6AtoCuGKWh0dHA6Ly9jcmwzLmRpZ2ljZXJ0LmNvbS9PbW5pcm9vdDIwMjUuY3JsMD0GA1UdIAQ2MDQwMgYEVR0gADAqMCgGCCsGAQUFBwIBFhxodHRwczovL3d3dy5kaWdpY2VydC5jb20vQ1BTMA0GCSqGSIb3DQEBCwUAA4IBAQAR/nIGOiEKN27I9SkiAmKeRQ7t+gaf77+eJDUX/jmIsrsB4Xjf0YuX/bd38YpyT0k66LMp13SH5LnzF2CHiJJVgr3ZfRNIfwaQOolm552W95XNYA/X4cr2du76mzVIoZh90pMqT4EWx6iWu9El86ZvUNoAmyqo9DUA4/0sO+3lFZt/Fg/Hjsk2IJTwHQG5ElBQmYHgKEIsjnj/7cae1eTK6aCqs0hPpF/kixj/EwItkBE2GGYoOiKa3pXxWe6fbSoXdZNQwwUS1d5ktLa829d2Wf6l1uVW4f5GXDuK+OwO++8SkJHOIBKBujxS43/jQPQMQSBmhxjaMmng9tyPKPK9"}],"version":"0303","random":"a03596a7f91fe037e190fa94f64228c7b9e96b4c4fb12a612c106f3c939aee2e","selected_cipher_suite":"c030","compression_method":"00","session_ticket":""}},"reassembly_properties":{"reassembled":true},"src_ip":"13.77.161.179","dst_ip":"192.168.113.237","protocol":6,"src_port":443,"dst_port":60570,"event_start":1565200318.068724} -{"ip":{"version":4,"ttl":64,"id":"cda3"},"dns":{"base64":"CNIBAAABAAAAAAAAA3d3dwltaWNyb3NvZnQDY29tAAABAAE="},"src_ip":"192.168.113.237","dst_ip":"192.168.113.2","protocol":17,"src_port":40531,"dst_port":53,"event_start":1565200318.294385} -{"ip":{"version":4,"ttl":64,"id":"cda4"},"dns":{"base64":"WnUBAAABAAAAAAAAA3d3dwltaWNyb3NvZnQDY29tAAAcAAE="},"src_ip":"192.168.113.237","dst_ip":"192.168.113.2","protocol":17,"src_port":43609,"dst_port":53,"event_start":1565200318.294704} -{"ip":{"version":4,"ttl":128,"id":"983d"},"dns":{"base64":"CNKBgAABAAQADQAFA3d3dwltaWNyb3NvZnQDY29tAAABAAHADAAFAAEAAAAFACMDd3d3CW1pY3Jvc29mdAdjb20tYy0zB2VkZ2VrZXkDbmV0AMAvAAUAAQAAAAUANwN3d3cJbWljcm9zb2Z0B2NvbS1jLTMHZWRnZWtleQNuZXQLZ2xvYmFscmVkaXIGYWthZG5zwE3AXgAFAAEAAAAFABkGZTEzNjc4BGRzcGIKYWthbWFpZWRnZcBNwKEAAQABAAAABQAEF8EmYMBNAAIAAQAAAAUAEQFnDGd0bGQtc2VydmVyc8BNwE0AAgABAAAABQAEAWzA2MBNAAIAAQAAAAUABAFmwNjATQACAAEAAAAFAAQBYsDYwE0AAgABAAAABQAEAWTA2MBNAAIAAQAAAAUABAFtwNjATQACAAEAAAAFAAQBYcDYwE0AAgABAAAABQAEAWrA2MBNAAIAAQAAAAUABAFowNjATQACAAEAAAAFAAQBY8DYwE0AAgABAAAABQAEAWnA2MBNAAIAAQAAAAUABAFrwNjATQACAAEAAAAFAAQBZcDYwUMAAQABAAAABQAEwAUGHsETAAEAAQAAAAUABMAhDh7BcwABAAEAAAAFAATAGlwewSMAAQABAAAABQAEwB9QHsGjAAEAAQAAAAUABMAMXh4="},"src_ip":"192.168.113.2","dst_ip":"192.168.113.237","protocol":17,"src_port":53,"dst_port":40531,"event_start":1565200318.328999} -{"ip":{"version":4,"ttl":128,"id":"9840"},"dns":{"base64":"WnWBgAABAAUADAAAA3d3dwltaWNyb3NvZnQDY29tAAAcAAHADAAFAAEAAAAFACMDd3d3CW1pY3Jvc29mdAdjb20tYy0zB2VkZ2VrZXkDbmV0AMAvAAUAAQAAAAUANwN3d3cJbWljcm9zb2Z0B2NvbS1jLTMHZWRnZWtleQNuZXQLZ2xvYmFscmVkaXIGYWthZG5zwE3AXgAFAAEAAAAFABkGZTEzNjc4BGRzcGIKYWthbWFpZWRnZcBNwKEAHAABAAAABQAQJgAUHgACAagAAAAAAAA1bsChABwAAQAAAAUAECYAFB4AAgGKAAAAAAAANW7ArQACAAEAAAAFAAoHbnM3LTE5NMCtwK0AAgABAAAABQAJBmExLTE5MsCtwK0AAgABAAAABQAKB25zMy0xOTTArcCtAAIAAQAAAAUACgdhMTEtMTkywK3ArQACAAEAAAAFAAYDbGEzwK3ArQACAAEAAAAFAAYDbGExwK3ArQACAAEAAAAFAAoHbnM1LTE5NMCtwK0AAgABAAAABQAKB2ExMy0xOTLArcCtAAIAAQAAAAUABwRsYXIywK3ArQACAAEAAAAFAAkGYTYtMTkywK3ArQACAAEAAAAFAAoHYTEyLTE5MsCtwK0AAgABAAAABQAKB25zNi0xOTTArQ=="},"src_ip":"192.168.113.2","dst_ip":"192.168.113.237","protocol":17,"src_port":53,"dst_port":43609,"event_start":1565200318.397349} -{"ip":{"version":4,"ttl":64,"id":"9628"},"fingerprints":{"tcp":"tcp/(40)()(40)(faf0)((020405b4)(04)(08)(01)(030307))"},"tcp":{"seq":2794935574,"timestamp":{"ts_val":180163712}},"src_ip":"192.168.113.237","dst_ip":"23.193.38.96","protocol":6,"src_port":33868,"dst_port":443,"event_start":1565200318.398426} -{"ip":{"version":4,"ttl":128,"id":"9841"},"fingerprints":{"tcp_server":"tcp_server/(40)()(80)(faf0)((020405b4))"},"tcp_server":{"seq":3532302099},"src_ip":"23.193.38.96","dst_ip":"192.168.113.237","protocol":6,"src_port":443,"dst_port":33868,"event_start":1565200318.436480} -{"ip":{"version":4,"ttl":64,"id":"962a"},"fingerprints":{"tls":"tls/(0303)(130213031301c02cc030009fcca9cca8ccaac02bc02f009ec024c028006bc023c0270067c00ac0140039c009c0130033009d009c003d003c0035002f00ff)((0000)(000b000403000102)(000a000c000a001d0017001e00190018)(0023)(0016)(0017)(000d0030002e040305030603080708080809080a080b080408050806040105010601030302030301020103020202040205020602)(002b0009080304030303020301)(002d00020101)(0033))"},"tls":{"client":{"version":"0303","random":"04ecf70d0dfaaebce1219fc4115676c2732ac8496d6a7dd725f5e02e5cada271","session_id":"3cd0a764d0d55ef357d7e18e7f7dd1d9af44c55b9ce27078282758de8d9625f4","cipher_suites":"130213031301c02cc030009fcca9cca8ccaac02bc02f009ec024c028006bc023c0270067c00ac0140039c009c0130033009d009c003d003c0035002f00ff","compression_methods":"00","server_name":"www.microsoft.com","session_ticket":"","features":"[\"0303\",\"130213031301c02cc030009fcca9cca8ccaac02bc02f009ec024c028006bc023c0270067c00ac0140039c009c0130033009d009c003d003c0035002f00ff\",[[\"0000\",\"00140000117777772e6d6963726f736f66742e636f6d\"],[\"000b\",\"03000102\"],[\"000a\",\"000a001d0017001e00190018\"],[\"0023\",\"\"],[\"0016\",\"\"],[\"0017\",\"\"],[\"000d\",\"002e040305030603080708080809080a080b080408050806040105010601030302030301020103020202040205020602\"],[\"002b\",\"080304030303020301\"],[\"002d\",\"0101\"],[\"0033\",\"0024001d00205404f78b395491165a10d41833fec7fb2d67649f669b59b21e2800c240c69e16\"]]]"}},"src_ip":"192.168.113.237","dst_ip":"23.193.38.96","protocol":6,"src_port":33868,"dst_port":443,"event_start":1565200318.436809} -{"ip":{"version":4,"ttl":128,"id":"9845"},"fingerprints":{"tls_server":"tls_server/(0303)(c030)((ff01)(0000)(000b000403000102)(0023))"},"tls":{"server":{"certs":[{"base64":"MIIHnzCCBYegAwIBAgITFgAAoiZScXH3VKzEFgAAAACiJjANBgkqhkiG9w0BAQsFADCBizELMAkGA1UEBhMCVVMxEzARBgNVBAgTCldhc2hpbmd0b24xEDAOBgNVBAcTB1JlZG1vbmQxHjAcBgNVBAoTFU1pY3Jvc29mdCBDb3Jwb3JhdGlvbjEVMBMGA1UECxMMTWljcm9zb2Z0IElUMR4wHAYDVQQDExVNaWNyb3NvZnQgSVQgVExTIENBIDQwHhcNMTgwMTE2MjEyNDAyWhcNMjAwMTE2MjEyNDAyWjCBiDELMAkGA1UEBhMCVVMxCzAJBgNVBAgTAldBMRAwDgYDVQQHEwdSZWRtb25kMR4wHAYDVQQKExVNaWNyb3NvZnQgQ29ycG9yYXRpb24xHjAcBgNVBAsTFU1pY3Jvc29mdCBDb3Jwb3JhdGlvbjEaMBgGA1UEAxMRd3d3Lm1pY3Jvc29mdC5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDM6uKEPBupNS4BXRWdhU6RzawVP27lFo4eiAOloEHaXYM1DoPUJxxt+uyhwkk8yIZFKLK9AKX0qtqTVFOh3TFk77uGJKlfyugpVs+5sGGffhd0y2cGSyOltJLcf/v31tRjeN/xNi9CeHtcK46ksqgp9kdTDd1IuxDO9fN45LRPZkRuOpNyyXAHlMyVDO4Xfgt8CYH/ssmr1ZqYr98dO9iAiU+eFrz6huBCAJfFzMXWznbpwrsd41TjE5zPJkHaB9BOKuLZySfEQhIRewexFtJXlT88Kj6SfIoe2naZxqDW/tQVVzRxID092mXdVEjL2MZ6GocNk1pPezqY8wOUjgA7AgMBAAGjggL7MIIC9zCBmQYDVR0RBIGRMIGOghVwcml2YWN5Lm1pY3Jvc29mdC5jb22CEWMucy1taWNyb3NvZnQuY29tgg1taWNyb3NvZnQuY29tghFpLnMtbWljcm9zb2Z0LmNvbYIYc3RhdGljdmlldy5taWNyb3NvZnQuY29tghF3d3cubWljcm9zb2Z0LmNvbYITd3d3cWEubWljcm9zb2Z0LmNvbTAdBgNVHQ4EFgQUMqJLlf7sAXZDo1IX+BIPkeyx9OcwHwYDVR0jBBgwFoAUenuMwc/noMoc1Gv6++Ezww8aop0wgawGA1UdHwSBpDCBoTCBnqCBm6CBmIZLaHR0cDovL21zY3JsLm1pY3Jvc29mdC5jb20vcGtpL21zY29ycC9jcmwvTWljcm9zb2Z0JTIwSVQlMjBUTFMlMjBDQSUyMDQuY3JshklodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpL21zY29ycC9jcmwvTWljcm9zb2Z0JTIwSVQlMjBUTFMlMjBDQSUyMDQuY3JsMIGFBggrBgEFBQcBAQR5MHcwUQYIKwYBBQUHMAKGRWh0dHA6Ly93d3cubWljcm9zb2Z0LmNvbS9wa2kvbXNjb3JwL01pY3Jvc29mdCUyMElUJTIwVExTJTIwQ0ElMjA0LmNydDAiBggrBgEFBQcwAYYWaHR0cDovL29jc3AubXNvY3NwLmNvbTA+BgkrBgEEAYI3FQcEMTAvBicrBgEEAYI3FQiH2oZ1g+7ZAYLJhRuBtZ5hhfTrYIFdhNLfQoLnk3oCAWQCARowHQYDVR0lBBYwFAYIKwYBBQUHAwIGCCsGAQUFBwMBMAsGA1UdDwQEAwIEsDBNBgNVHSAERjBEMEIGCSsGAQQBgjcqATA1MDMGCCsGAQUFBwIBFidodHRwOi8vd3d3Lm1pY3Jvc29mdC5jb20vcGtpL21zY29ycC9jcHMwJwYJKwYBBAGCNxUKBBowGDAKBggrBgEFBQcDAjAKBggrBgEFBQcDATANBgkqhkiG9w0BAQsFAAOCAgEAZQDBGHkYWARoiApsKcns0lfEuovFuh9CQ3ZMVTDjDhvls0IcuddtEvETXdB+h8+vgIx4jC7SmsRrpEH28X06qEZCMd1vPP/rEI9ZYwAnzabB/HRkGsPHv/hkjVbhcsqYVkPyD9MYc+cgRE0Nggh+l2fIuSxrMvFw0iLsE/7ZkyiZFWfLkddu/be7gjoYIbNyS6E2HQkHlexz9QBUMHERUYBuqey+c1l45WTgLJUWsqeIZJ01oekLkdkR4tg1pZbnFjDeRBqFLnUU1RMHlgKodJYPMzBCkZGRk0mCZJDJcZv62HNdT/Zuz4yHLz6KQcjpVZacYyqeBBqJtus5zSJKP8l9MqZYbihsmAlXZdeXPwiB+YEeGGEGi2iDV39eSs6rPCL1BYZ5kvfoBdSfTAPmviK4ezCUuBL/k4YulsrquoAC/Sz+xFVEBK+qdYXczxgFMxXnx6XjxkKGYrf33g6e/9XexHsyWolQhrmbZE3GrTmH9hbqh0bg+95qhk0oq+iDWy3Lj5ZnexabBg/r+szxTNmPp0LIvMcM1YW9hkAyDYuDSB0Yee/p+ByJUeMIT55F/YO/Qtqc7Z2vNvnq/229nly2lg8AVwDliH30hloIffEXMY3xJWwDUG6Uj++g+838tBwUOF9wrBIwh9pI8EQLW9HUROzSg8ALy7tgVWuowFo="},{"base64":"MIIFtDCCBJygAwIBAgIQC2qzsD6xqfbEYJJqqM3+szANBgkqhkiG9w0BAQsFADBaMQswCQYDVQQGEwJJRTESMBAGA1UEChMJQmFsdGltb3JlMRMwEQYDVQQLEwpDeWJlclRydXN0MSIwIAYDVQQDExlCYWx0aW1vcmUgQ3liZXJUcnVzdCBSb290MB4XDTE2MDUyMDEyNTIzOFoXDTI0MDUyMDEyNTIzOFowgYsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpXYXNoaW5ndG9uMRAwDgYDVQQHEwdSZWRtb25kMR4wHAYDVQQKExVNaWNyb3NvZnQgQ29ycG9yYXRpb24xFTATBgNVBAsTDE1pY3Jvc29mdCBJVDEeMBwGA1UEAxMVTWljcm9zb2Z0IElUIFRMUyBDQSA0MIICIjANBgkqhkiG9w0BAQEFAAOCAg8AMIICCgKCAgEAq+XrXaNrOZ71NIgSux1SJl19CQvGeY6rtw7fGbLd7g/27vRW5Ebikg/iZwvjHHGk1EFztMuZFo6/d32wrx5s7XEuwwh3Sl6Sruxa0EiB0MXpoPV6jx6NXtOtksDaxpE1MSC5OQTNECo8lx0AnpkYGAnPS5fkyfwA8AxanTboskDBSqyEKKo9Rhgrp4qs9K9LqH5JQsdiIMDmpztd65Afu4rYnJDjOrFswpTOPjJry3GzQS65xeFd2FkngvvhSA1+6ATx+QEnQfqUWn3FMLu2utcRm4j6AcxuS5K5+Hg8y5xomhZmiNCTsCqDLpcRHX6BIGHksLmbnG5TlZUixtm9dRC62XWMPD8d0Jb4M0V7ex9UM+VIl6cFJKLb0dyVriAqfZaJSHuSetAksd5IEfdnPLTf+Fhg9U97NGjm/awmCLbzLEPbT8QW0JsMcYexB2uG3Y+gsftm2tjL6fLwZeWO2BzqL7otZPFe0BtQsgyFSs87yC4qanWMwK5c2enAfH182pzjvUqwYAeCK31dyBCvLmKM3Jr94dm5WUiXQhrDUIELH4Mia+SbvCkigv2AUVx1Xw41wt1/L3pnnz2OW4y7r530zAz7qB+dIcHz51IaXc4UV21QuEnusQsn0uJpJxJuxsAmPuekKxuLUzgG+hqHOuBLf5kWTlk9WWnxcadlZRsCAwEAAaOCAUIwggE+MB0GA1UdDgQWBBR6e4zBz+egyhzUa/r74TPDDxqinTAfBgNVHSMEGDAWgBTlnVkwgkdYzKz6CFQ2hns6tQRN8DASBgNVHRMBAf8ECDAGAQH/AgEAMA4GA1UdDwEB/wQEAwIBhjAnBgNVHSUEIDAeBggrBgEFBQcDAQYIKwYBBQUHAwIGCCsGAQUFBwMJMDQGCCsGAQUFBwEBBCgwJjAkBggrBgEFBQcwAYYYaHR0cDovL29jc3AuZGlnaWNlcnQuY29tMDoGA1UdHwQzMDEwL6AtoCuGKWh0dHA6Ly9jcmwzLmRpZ2ljZXJ0LmNvbS9PbW5pcm9vdDIwMjUuY3JsMD0GA1UdIAQ2MDQwMgYEVR0gADAqMCgGCCsGAQUFBwIBFhxodHRwczovL3d3dy5kaWdpY2VydC5jb20vQ1BTMA0GCSqGSIb3DQEBCwUAA4IBAQAR/nIGOiEKN27I9SkiAmKeRQ7t+gaf77+eJDUX/jmIsrsB4Xjf0YuX/bd38YpyT0k66LMp13SH5LnzF2CHiJJVgr3ZfRNIfwaQOolm552W95XNYA/X4cr2du76mzVIoZh90pMqT4EWx6iWu9El86ZvUNoAmyqo9DUA4/0sO+3lFZt/Fg/Hjsk2IJTwHQG5ElBQmYHgKEIsjnj/7cae1eTK6aCqs0hPpF/kixj/EwItkBE2GGYoOiKa3pXxWe6fbSoXdZNQwwUS1d5ktLa829d2Wf6l1uVW4f5GXDuK+OwO++8SkJHOIBKBujxS43/jQPQMQSBmhxjaMmng9tyPKPK9"}],"version":"0303","random":"65537a41ae7b9dc8668799acf927e92d0903fbe1491e627a45f8c125e1987dd0","selected_cipher_suite":"c030","compression_method":"00","session_ticket":""}},"reassembly_properties":{"reassembled":true},"src_ip":"23.193.38.96","dst_ip":"192.168.113.237","protocol":6,"src_port":443,"dst_port":33868,"event_start":1565200318.475686} -{"ip":{"version":4,"ttl":64,"id":"cde2"},"dns":{"base64":"95cBAAABAAAAAAAACGxpbmtlZGluA2NvbQAAAQAB"},"src_ip":"192.168.113.237","dst_ip":"192.168.113.2","protocol":17,"src_port":44500,"dst_port":53,"event_start":1565200318.887409} -{"ip":{"version":4,"ttl":64,"id":"cde3"},"dns":{"base64":"2z4BAAABAAAAAAAACGxpbmtlZGluA2NvbQAAHAAB"},"src_ip":"192.168.113.237","dst_ip":"192.168.113.2","protocol":17,"src_port":34101,"dst_port":53,"event_start":1565200318.887566} -{"ip":{"version":4,"ttl":128,"id":"98e2"},"dns":{"base64":"95eBgAABAAEADQAOCGxpbmtlZGluA2NvbQAAAQABwAwAAQABAAAABQAEbK4KCsAVAAIAAQAAAAUAFAFqDGd0bGQtc2VydmVycwNuZXQAwBUAAgABAAAABQAEAWPAPMAVAAIAAQAAAAUABAFnwDzAFQACAAEAAAAFAAQBaMA8wBUAAgABAAAABQAEAWvAPMAVAAIAAQAAAAUABAFkwDzAFQACAAEAAAAFAAQBZcA8wBUAAgABAAAABQAEAWHAPMAVAAIAAQAAAAUABAFtwDzAFQACAAEAAAAFAAQBacA8wBUAAgABAAAABQAEAWzAPMAVAAIAAQAAAAUABAFmwDzAFQACAAEAAAAFAAQBYsA8wLoAAQABAAAABQAEwAUGHsEKAAEAAQAAAAUABMAhDh7AWgABAAEAAAAFAATAGlwewJoAAQABAAAABQAEwB9QHsCqAAEAAQAAAAUABMAMXh7A+gABAAEAAAAFAATAIzMewGoAAQABAAAABQAEwCpdHsB6AAEAAQAAAAUABMA2cB7A2gABAAEAAAAFAATAK6wewDoAAQABAAAABQAEwDBPHsCKAAEAAQAAAAUABMA0sh7A6gABAAEAAAAFAATAKaIewMoAAQABAAAABQAEwDdTHsC6ABwAAQAAAAUAECABBQOoPgAAAAAAAAACADA="},"src_ip":"192.168.113.2","dst_ip":"192.168.113.237","protocol":17,"src_port":53,"dst_port":44500,"event_start":1565200318.888279} -{"ip":{"version":4,"ttl":128,"id":"98e3"},"dns":{"base64":"2z6BgAABAAEADQANCGxpbmtlZGluA2NvbQAAHAABwAwAHAABAAAABQAQJiABCcACAAAAAAAAbK4KCsAVAAIAAQAAAAUAFAFpDGd0bGQtc2VydmVycwNuZXQAwBUAAgABAAAABQAEAWPASMAVAAIAAQAAAAUABAFqwEjAFQACAAEAAAAFAAQBYcBIwBUAAgABAAAABQAEAWjASMAVAAIAAQAAAAUABAFtwEjAFQACAAEAAAAFAAQBZcBIwBUAAgABAAAABQAEAWbASMAVAAIAAQAAAAUABAFrwEjAFQACAAEAAAAFAAQBZ8BIwBUAAgABAAAABQAEAWLASMAVAAIAAQAAAAUABAFswEjAFQACAAEAAAAFAAQBZMBIwIYAAQABAAAABQAEwAUGHsD2AAEAAQAAAAUABMAhDh7AZgABAAEAAAAFAATAGlwewRYAAQABAAAABQAEwB9QHsC2AAEAAQAAAAUABMAMXh7AxgABAAEAAAAFAATAIzMewOYAAQABAAAABQAEwCpdHsCWAAEAAQAAAAUABMA2cB7ARgABAAEAAAAFAATAK6wewHYAAQABAAAABQAEwDBPHsDWAAEAAQAAAAUABMA0sh7BBgABAAEAAAAFAATAKaIewKYAAQABAAAABQAEwDdTHg=="},"src_ip":"192.168.113.2","dst_ip":"192.168.113.237","protocol":17,"src_port":53,"dst_port":34101,"event_start":1565200318.924396} -{"ip":{"version":4,"ttl":64,"id":"a80e"},"fingerprints":{"tcp":"tcp/(40)()(40)(faf0)((020405b4)(04)(08)(01)(030307))"},"tcp":{"seq":579365839,"timestamp":{"ts_val":2949628754}},"src_ip":"192.168.113.237","dst_ip":"108.174.10.10","protocol":6,"src_port":38906,"dst_port":443,"event_start":1565200318.924781} -{"ip":{"version":4,"ttl":128,"id":"98e4"},"fingerprints":{"tcp_server":"tcp_server/(40)()(80)(faf0)((020405b4))"},"tcp_server":{"seq":828354526},"src_ip":"108.174.10.10","dst_ip":"192.168.113.237","protocol":6,"src_port":443,"dst_port":38906,"event_start":1565200318.962619} -{"ip":{"version":4,"ttl":64,"id":"a810"},"fingerprints":{"tls":"tls/(0303)(130213031301c02cc030009fcca9cca8ccaac02bc02f009ec024c028006bc023c0270067c00ac0140039c009c0130033009d009c003d003c0035002f00ff)((0000)(000b000403000102)(000a000c000a001d0017001e00190018)(0023)(0016)(0017)(000d0030002e040305030603080708080809080a080b080408050806040105010601030302030301020103020202040205020602)(002b0009080304030303020301)(002d00020101)(0033))"},"tls":{"client":{"version":"0303","random":"0062324d9b4e25e284bc05deb5d039d0ea61376993a8a3b5bf1fe280e9da4559","session_id":"e7ba3c4cb64ed46b911af8e23e721c1d9c24b81cd8aea29dbe39084452a47731","cipher_suites":"130213031301c02cc030009fcca9cca8ccaac02bc02f009ec024c028006bc023c0270067c00ac0140039c009c0130033009d009c003d003c0035002f00ff","compression_methods":"00","server_name":"linkedin.com","session_ticket":"","features":"[\"0303\",\"130213031301c02cc030009fcca9cca8ccaac02bc02f009ec024c028006bc023c0270067c00ac0140039c009c0130033009d009c003d003c0035002f00ff\",[[\"0000\",\"000f00000c6c696e6b6564696e2e636f6d\"],[\"000b\",\"03000102\"],[\"000a\",\"000a001d0017001e00190018\"],[\"0023\",\"\"],[\"0016\",\"\"],[\"0017\",\"\"],[\"000d\",\"002e040305030603080708080809080a080b080408050806040105010601030302030301020103020202040205020602\"],[\"002b\",\"080304030303020301\"],[\"002d\",\"0101\"],[\"0033\",\"0024001d00201d194f31d76a937d4000fd482165c70888bf544bd9b3b774dd333e1f00a90850\"]]]"}},"src_ip":"192.168.113.237","dst_ip":"108.174.10.10","protocol":6,"src_port":38906,"dst_port":443,"event_start":1565200318.963027} -{"ip":{"version":4,"ttl":128,"id":"98e8"},"fingerprints":{"tls_server":"tls_server/(0303)(c02f)((ff01)(0000)(000b000403000102)(0023)(0017))"},"tls":{"server":{"certs":[{"base64":"MIIHTTCCBjWgAwIBAgIQAXBEMNrkYNTuijQQnLcKBDANBgkqhkiG9w0BAQsFADBNMQswCQYDVQQGEwJVUzEVMBMGA1UEChMMRGlnaUNlcnQgSW5jMScwJQYDVQQDEx5EaWdpQ2VydCBTSEEyIFNlY3VyZSBTZXJ2ZXIgQ0EwHhcNMTgwNTMwMDAwMDAwWhcNMjAwOTAxMDAwMDAwWjB0MQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNTW91bnRhaW4gVmlldzEdMBsGA1UEChMUTGlua2VkSW4gQ29ycG9yYXRpb24xGTAXBgNVBAMTEHd3dy5saW5rZWRpbi5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQC7EIO7ZCS57AL7mW79kZ0rR3rfWYksMQnt1NQGfbLI88qxIqg6DMp8TNteTfeWQKpy0JFm4zTNjaSmA0UxKLBPERe67/gGAT1xjINNUx/iOFcj1H7y/1gs7SVsJ6JFmCgPIXID8AeOtHYe8dzVpYPAEXIYi93H58menJa11h5gl3Pfh9nkp9J5B3YK9reXIulcu6Kp8YCLcVT+LIrQzO8S46mHsh9sjLOoDeM5nk7C2+kjgFPE00wYweECBFjnzDaFimJa7W6NiZdrTMbJiV0QSlYWCtBm/ex8oRnv69aHwqGU9aFDYXXYe8soq4UzBoxUeUKrILYdTX4csK+VHoMLAgMBAAGjggQAMIID/DAfBgNVHSMEGDAWgBQPgGEcgjFh1S8o541GOLQs4cbZ4jAdBgNVHQ4EFgQUlN2Cs4TYrUJ+AeD/6tPeT+VBk80wTAYDVR0RBEUwQ4IQd3d3LmxpbmtlZGluLmNvbYIPbWVkaWEubGljZG4uY29tghBzdGF0aWMubGljZG4uY29tggxsaW5rZWRpbi5jb20wDgYDVR0PAQH/BAQDAgWgMB0GA1UdJQQWMBQGCCsGAQUFBwMBBggrBgEFBQcDAjBrBgNVHR8EZDBiMC+gLaArhilodHRwOi8vY3JsMy5kaWdpY2VydC5jb20vc3NjYS1zaGEyLWc2LmNybDAvoC2gK4YpaHR0cDovL2NybDQuZGlnaWNlcnQuY29tL3NzY2Etc2hhMi1nNi5jcmwwTAYDVR0gBEUwQzA3BglghkgBhv1sAQEwKjAoBggrBgEFBQcCARYcaHR0cHM6Ly93d3cuZGlnaWNlcnQuY29tL0NQUzAIBgZngQwBAgIwfAYIKwYBBQUHAQEEcDBuMCQGCCsGAQUFBzABhhhodHRwOi8vb2NzcC5kaWdpY2VydC5jb20wRgYIKwYBBQUHMAKGOmh0dHA6Ly9jYWNlcnRzLmRpZ2ljZXJ0LmNvbS9EaWdpQ2VydFNIQTJTZWN1cmVTZXJ2ZXJDQS5jcnQwDAYDVR0TAQH/BAIwADCCAfQGCisGAQQB1nkCBAIEggHkBIIB4AHeAHYApLkJkLQYWBSHuxOizGdwCjw1mAT5G9+443fNDsgN3BAAAAFjskR9OAAABAMARzBFAiApWVtfQZ+QMpPq3tkEwLmmHnjQnwsQhJ464m1ibJbwyAIhAORfUeW72J63+NpMIXi+AGfoBQ9xeYNwbXfxKlTLmDgHAHUAh3W/51l8+IxDmV+9827/Vo1HVjb/SrVgwbTq/16ggw8AAAFjskR+DQAABAMARjBEAiAK5UFiJQhsItiNIhbXgGWA7QeY0Bf22ZM2s1PYJppHkQIgTGViCUQ8gNEqBBl66H1M9t34DzpHObUkzVMqVVJejV4AdAC72d+8H4pxtZOUI5eqkntHOFeVCqtS6BqQlmQ2jh7RhQAAAWOyRH4EAAAEAwBFMEMCHz9v4I8sB4+5kYsyF3ZhCj9qq32Cl08uxKCguUuGeAQCIF0bVhp2DAoQuY3ZGURzxUFYb3nH88AmTZLetYEDlm0nAHcAVYHUwhaQNgFK6gubVzxT8MDkOHhwJQgXL6OqHQcT0wwAAAFjskR/igAABAMASDBGAiEAoAXrwTz48+EEBF+8CnLw8FAT938F+kve/9m6XjuxFdECIQCU6M6OSiUCxlV3y06YoCPqaFpLDpTAujd8x5o2xIRs2TANBgkqhkiG9w0BAQsFAAOCAQEAERzOZXblnmBzczHgqL1Mcr9bt1tkYc9LwHF31Lf2Ky2UR09Dl9p/dWYPxJeVkuEYYhdFyeFBOCW2Xc/S4QtyBRxXFof/AvCoDImEShLI4YazoqBZGgfJsilc9bcVGuULdXuFUgc0HZYbOBD1zLms99NdPKiJQTAFF67cey0Uy9WPQStyxQ3am+wkQrlmtqb2pltH+ZXFGHP6CZ+4cirf85/KseKqffZ4eGxNYn9ZEwzNiCk9lTiZzp0eO7ovzH2FTHI8EZEbfid0EaULYN0YbGLHhdrZq8tPbXNl6ghkH2UFHp/EglHQS2mbwlv6WjourfH/qEzcgeANfrNMEgMicQ=="},{"base64":"MIIElDCCA3ygAwIBAgIQAf2j627KdciIQ4tyS8+8kTANBgkqhkiG9w0BAQsFADBhMQswCQYDVQQGEwJVUzEVMBMGA1UEChMMRGlnaUNlcnQgSW5jMRkwFwYDVQQLExB3d3cuZGlnaWNlcnQuY29tMSAwHgYDVQQDExdEaWdpQ2VydCBHbG9iYWwgUm9vdCBDQTAeFw0xMzAzMDgxMjAwMDBaFw0yMzAzMDgxMjAwMDBaME0xCzAJBgNVBAYTAlVTMRUwEwYDVQQKEwxEaWdpQ2VydCBJbmMxJzAlBgNVBAMTHkRpZ2lDZXJ0IFNIQTIgU2VjdXJlIFNlcnZlciBDQTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANyuWJBNwcQwFZA1W248ghX1LFy949v/cUP6ZCWA1O4Yok3wZtAKc24RmDYXZK83nf36QYSvx6+M/hpzTc8zl5CilodTgyu5pnVILR1WN3vaMTIa16yrBvSqXUu3R0bdKpPDkC55gIDvEwRqFDu1m5K+wgdlTvza/P96rtxcflUxDOg5B6TXvi/TC2rSsd9f/ld0Uzs1gN2ujkSYs58O09rg1/RrKatEp0tYhG2SS4HD2nOLEpdIkARFdRrdNzGXkujNVA075ME/OV4uuPNcfhCOhkEAjUVmR7ChZc6gqikJTvOX6+guqw9ypzAO+sf0/RR3w6RbKFfCs/mC/bdFWJsCAwEAAaOCAVowggFWMBIGA1UdEwEB/wQIMAYBAf8CAQAwDgYDVR0PAQH/BAQDAgGGMDQGCCsGAQUFBwEBBCgwJjAkBggrBgEFBQcwAYYYaHR0cDovL29jc3AuZGlnaWNlcnQuY29tMHsGA1UdHwR0MHIwN6A1oDOGMWh0dHA6Ly9jcmwzLmRpZ2ljZXJ0LmNvbS9EaWdpQ2VydEdsb2JhbFJvb3RDQS5jcmwwN6A1oDOGMWh0dHA6Ly9jcmw0LmRpZ2ljZXJ0LmNvbS9EaWdpQ2VydEdsb2JhbFJvb3RDQS5jcmwwPQYDVR0gBDYwNDAyBgRVHSAAMCowKAYIKwYBBQUHAgEWHGh0dHBzOi8vd3d3LmRpZ2ljZXJ0LmNvbS9DUFMwHQYDVR0OBBYEFA+AYRyCMWHVLyjnjUY4tCzhxtniMB8GA1UdIwQYMBaAFAPeUDVW0Uy7ZvCj4hsbw5eyPdFVMA0GCSqGSIb3DQEBCwUAA4IBAQAjPt9L0jFCpbZ+QlwaRMxp0Wi0XUvgBCFsS+JtzLHgl4+mUwnNqipl5TlPHoOlblyYoiQm5vuh7ZPHLgLGTUq/sELfeNqzqPlt/yGFUzZgTHbO7Djc1lGA8MXW5dRNJ2Srm8c+cftIl7gzbckTB+6WohsYFfZcTEDts8Ls/3HB40f/1LkAtDdC2iDJ6m6K7hQGrn2iWZiIqBtvLfTyyRRfJs8sjX7tN8Cp1Tm5gr8ZDOo0rwAhaPitc+LJMto4JQtV05od8GiG7S5BNO98pVAdvzr508EIDObtHopYJeS4d60tbvVS3bR0j6tJLp07kzQoH3jOlOrHvdPJbRzeXDLz"}],"version":"0303","random":"25c27c467847aa03f197dfef7f15920f0f124c6bdc32ff73377ae799b24d7a89","selected_cipher_suite":"c02f","compression_method":"00","session_ticket":""}},"reassembly_properties":{"reassembled":true},"src_ip":"108.174.10.10","dst_ip":"192.168.113.237","protocol":6,"src_port":443,"dst_port":38906,"event_start":1565200319.004903} -{"ip":{"version":4,"ttl":64,"id":"cdff"},"dns":{"base64":"mG4BAAABAAAAAAAAA3d3dwhsaW5rZWRpbgNjb20AAAEAAQ=="},"src_ip":"192.168.113.237","dst_ip":"192.168.113.2","protocol":17,"src_port":43639,"dst_port":53,"event_start":1565200319.095856} -{"ip":{"version":4,"ttl":64,"id":"ce00"},"dns":{"base64":"M3IBAAABAAAAAAAAA3d3dwhsaW5rZWRpbgNjb20AABwAAQ=="},"src_ip":"192.168.113.237","dst_ip":"192.168.113.2","protocol":17,"src_port":53706,"dst_port":53,"event_start":1565200319.096015} -{"ip":{"version":4,"ttl":128,"id":"98f1"},"dns":{"base64":"mG6BgAABAAMADQAMA3d3dwhsaW5rZWRpbgNjb20AAAEAAcAMAAUAAQAAAAUACgd3d3ctc3JjwBDALgAFAAEAAAAFAAsIcG9wLWVkYTbADMBEAAEAAQAAAAUABGyuC0HAGQACAAEAAAAFABQBZQxndGxkLXNlcnZlcnMDbmV0AMAZAAIAAQAAAAUABAFrwG3AGQACAAEAAAAFAAQBacBtwBkAAgABAAAABQAEAW3AbcAZAAIAAQAAAAUABAFmwG3AGQACAAEAAAAFAAQBY8BtwBkAAgABAAAABQAEAWTAbcAZAAIAAQAAAAUABAFqwG3AGQACAAEAAAAFAAQBaMBtwBkAAgABAAAABQAEAWHAbcAZAAIAAQAAAAUABAFnwG3AGQACAAEAAAAFAAQBbMBtwBkAAgABAAAABQAEAWLAbcELAAEAAQAAAAUABMAFBh7BOwABAAEAAAAFAATAIQ4ewMsAAQABAAAABQAEwBpcHsDbAAEAAQAAAAUABMAfUB7AawABAAEAAAAFAATADF4ewLsAAQABAAAABQAEwCMzHsEbAAEAAQAAAAUABMAqXR7A+wABAAEAAAAFAATANnAewJsAAQABAAAABQAEwCusHsDrAAEAAQAAAAUABMAwTx7AiwABAAEAAAAFAATANLIewSsAAQABAAAABQAEwCmiHg=="},"src_ip":"192.168.113.2","dst_ip":"192.168.113.237","protocol":17,"src_port":53,"dst_port":43639,"event_start":1565200319.096641} -{"ip":{"version":4,"ttl":128,"id":"98f2"},"dns":{"base64":"M3KBgAABAAMADQALA3d3dwhsaW5rZWRpbgNjb20AABwAAcAMAAUAAQAAAAUACgd3d3ctc3JjwBDALgAFAAEAAAAFAAsIcG9wLWVkYTbADMBEABwAAQAAAAUAECYgARlQ4wEBAAAAAGyuC0HAGQACAAEAAAAFABQBYgxndGxkLXNlcnZlcnMDbmV0AMAZAAIAAQAAAAUABAFnwHnAGQACAAEAAAAFAAQBZsB5wBkAAgABAAAABQAEAWHAecAZAAIAAQAAAAUABAFkwHnAGQACAAEAAAAFAAQBa8B5wBkAAgABAAAABQAEAWXAecAZAAIAAQAAAAUABAFjwHnAGQACAAEAAAAFAAQBbcB5wBkAAgABAAAABQAEAWrAecAZAAIAAQAAAAUABAFswHnAGQACAAEAAAAFAAQBacB5wBkAAgABAAAABQAEAWjAecC3AAEAAQAAAAUABMAFBh7AdwABAAEAAAAFAATAIQ4ewPcAAQABAAAABQAEwBpcHsDHAAEAAQAAAAUABMAfUB7A5wABAAEAAAAFAATADF4ewKcAAQABAAAABQAEwCMzHsCXAAEAAQAAAAUABMAqXR7BRwABAAEAAAAFAATANnAewTcAAQABAAAABQAEwCusHsEXAAEAAQAAAAUABMAwTx7A1wABAAEAAAAFAATANLIe"},"src_ip":"192.168.113.2","dst_ip":"192.168.113.237","protocol":17,"src_port":53,"dst_port":53706,"event_start":1565200319.096651} -{"ip":{"version":4,"ttl":64,"id":"e55f"},"fingerprints":{"tcp":"tcp/(40)()(40)(faf0)((020405b4)(04)(08)(01)(030307))"},"tcp":{"seq":3690800819,"timestamp":{"ts_val":2114887834}},"src_ip":"192.168.113.237","dst_ip":"108.174.11.65","protocol":6,"src_port":47924,"dst_port":443,"event_start":1565200319.097269} -{"ip":{"version":4,"ttl":128,"id":"98f4"},"fingerprints":{"tcp_server":"tcp_server/(40)()(80)(faf0)((020405b4))"},"tcp_server":{"seq":2840064753},"src_ip":"108.174.11.65","dst_ip":"192.168.113.237","protocol":6,"src_port":443,"dst_port":47924,"event_start":1565200319.166221} -{"ip":{"version":4,"ttl":64,"id":"e561"},"fingerprints":{"tls":"tls/(0303)(130213031301c02cc030009fcca9cca8ccaac02bc02f009ec024c028006bc023c0270067c00ac0140039c009c0130033009d009c003d003c0035002f00ff)((0000)(000b000403000102)(000a000c000a001d0017001e00190018)(0023)(0016)(0017)(000d0030002e040305030603080708080809080a080b080408050806040105010601030302030301020103020202040205020602)(002b0009080304030303020301)(002d00020101)(0033))"},"tls":{"client":{"version":"0303","random":"b448d31d4e72a8d5e71b9a16350ce182406549518bb67a376a6cb1b95f99ed75","session_id":"16f6c8bf08a72135c0fbba9d6347fbf976ee05804d2c48c32a06c401b8230b32","cipher_suites":"130213031301c02cc030009fcca9cca8ccaac02bc02f009ec024c028006bc023c0270067c00ac0140039c009c0130033009d009c003d003c0035002f00ff","compression_methods":"00","server_name":"www.linkedin.com","session_ticket":"","features":"[\"0303\",\"130213031301c02cc030009fcca9cca8ccaac02bc02f009ec024c028006bc023c0270067c00ac0140039c009c0130033009d009c003d003c0035002f00ff\",[[\"0000\",\"00130000107777772e6c696e6b6564696e2e636f6d\"],[\"000b\",\"03000102\"],[\"000a\",\"000a001d0017001e00190018\"],[\"0023\",\"\"],[\"0016\",\"\"],[\"0017\",\"\"],[\"000d\",\"002e040305030603080708080809080a080b080408050806040105010601030302030301020103020202040205020602\"],[\"002b\",\"080304030303020301\"],[\"002d\",\"0101\"],[\"0033\",\"0024001d00207ed8d57dc1127c2bb147f3fbe1af8ff6113761463e905bf8be337b178af0171e\"]]]"}},"src_ip":"192.168.113.237","dst_ip":"108.174.11.65","protocol":6,"src_port":47924,"dst_port":443,"event_start":1565200319.166463} -{"ip":{"version":4,"ttl":128,"id":"98f8"},"fingerprints":{"tls_server":"tls_server/(0303)(c02f)((ff01)(0000)(000b000403000102)(0023)(0017))"},"tls":{"server":{"certs":[{"base64":"MIIHTTCCBjWgAwIBAgIQAXBEMNrkYNTuijQQnLcKBDANBgkqhkiG9w0BAQsFADBNMQswCQYDVQQGEwJVUzEVMBMGA1UEChMMRGlnaUNlcnQgSW5jMScwJQYDVQQDEx5EaWdpQ2VydCBTSEEyIFNlY3VyZSBTZXJ2ZXIgQ0EwHhcNMTgwNTMwMDAwMDAwWhcNMjAwOTAxMDAwMDAwWjB0MQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNTW91bnRhaW4gVmlldzEdMBsGA1UEChMUTGlua2VkSW4gQ29ycG9yYXRpb24xGTAXBgNVBAMTEHd3dy5saW5rZWRpbi5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQC7EIO7ZCS57AL7mW79kZ0rR3rfWYksMQnt1NQGfbLI88qxIqg6DMp8TNteTfeWQKpy0JFm4zTNjaSmA0UxKLBPERe67/gGAT1xjINNUx/iOFcj1H7y/1gs7SVsJ6JFmCgPIXID8AeOtHYe8dzVpYPAEXIYi93H58menJa11h5gl3Pfh9nkp9J5B3YK9reXIulcu6Kp8YCLcVT+LIrQzO8S46mHsh9sjLOoDeM5nk7C2+kjgFPE00wYweECBFjnzDaFimJa7W6NiZdrTMbJiV0QSlYWCtBm/ex8oRnv69aHwqGU9aFDYXXYe8soq4UzBoxUeUKrILYdTX4csK+VHoMLAgMBAAGjggQAMIID/DAfBgNVHSMEGDAWgBQPgGEcgjFh1S8o541GOLQs4cbZ4jAdBgNVHQ4EFgQUlN2Cs4TYrUJ+AeD/6tPeT+VBk80wTAYDVR0RBEUwQ4IQd3d3LmxpbmtlZGluLmNvbYIPbWVkaWEubGljZG4uY29tghBzdGF0aWMubGljZG4uY29tggxsaW5rZWRpbi5jb20wDgYDVR0PAQH/BAQDAgWgMB0GA1UdJQQWMBQGCCsGAQUFBwMBBggrBgEFBQcDAjBrBgNVHR8EZDBiMC+gLaArhilodHRwOi8vY3JsMy5kaWdpY2VydC5jb20vc3NjYS1zaGEyLWc2LmNybDAvoC2gK4YpaHR0cDovL2NybDQuZGlnaWNlcnQuY29tL3NzY2Etc2hhMi1nNi5jcmwwTAYDVR0gBEUwQzA3BglghkgBhv1sAQEwKjAoBggrBgEFBQcCARYcaHR0cHM6Ly93d3cuZGlnaWNlcnQuY29tL0NQUzAIBgZngQwBAgIwfAYIKwYBBQUHAQEEcDBuMCQGCCsGAQUFBzABhhhodHRwOi8vb2NzcC5kaWdpY2VydC5jb20wRgYIKwYBBQUHMAKGOmh0dHA6Ly9jYWNlcnRzLmRpZ2ljZXJ0LmNvbS9EaWdpQ2VydFNIQTJTZWN1cmVTZXJ2ZXJDQS5jcnQwDAYDVR0TAQH/BAIwADCCAfQGCisGAQQB1nkCBAIEggHkBIIB4AHeAHYApLkJkLQYWBSHuxOizGdwCjw1mAT5G9+443fNDsgN3BAAAAFjskR9OAAABAMARzBFAiApWVtfQZ+QMpPq3tkEwLmmHnjQnwsQhJ464m1ibJbwyAIhAORfUeW72J63+NpMIXi+AGfoBQ9xeYNwbXfxKlTLmDgHAHUAh3W/51l8+IxDmV+9827/Vo1HVjb/SrVgwbTq/16ggw8AAAFjskR+DQAABAMARjBEAiAK5UFiJQhsItiNIhbXgGWA7QeY0Bf22ZM2s1PYJppHkQIgTGViCUQ8gNEqBBl66H1M9t34DzpHObUkzVMqVVJejV4AdAC72d+8H4pxtZOUI5eqkntHOFeVCqtS6BqQlmQ2jh7RhQAAAWOyRH4EAAAEAwBFMEMCHz9v4I8sB4+5kYsyF3ZhCj9qq32Cl08uxKCguUuGeAQCIF0bVhp2DAoQuY3ZGURzxUFYb3nH88AmTZLetYEDlm0nAHcAVYHUwhaQNgFK6gubVzxT8MDkOHhwJQgXL6OqHQcT0wwAAAFjskR/igAABAMASDBGAiEAoAXrwTz48+EEBF+8CnLw8FAT938F+kve/9m6XjuxFdECIQCU6M6OSiUCxlV3y06YoCPqaFpLDpTAujd8x5o2xIRs2TANBgkqhkiG9w0BAQsFAAOCAQEAERzOZXblnmBzczHgqL1Mcr9bt1tkYc9LwHF31Lf2Ky2UR09Dl9p/dWYPxJeVkuEYYhdFyeFBOCW2Xc/S4QtyBRxXFof/AvCoDImEShLI4YazoqBZGgfJsilc9bcVGuULdXuFUgc0HZYbOBD1zLms99NdPKiJQTAFF67cey0Uy9WPQStyxQ3am+wkQrlmtqb2pltH+ZXFGHP6CZ+4cirf85/KseKqffZ4eGxNYn9ZEwzNiCk9lTiZzp0eO7ovzH2FTHI8EZEbfid0EaULYN0YbGLHhdrZq8tPbXNl6ghkH2UFHp/EglHQS2mbwlv6WjourfH/qEzcgeANfrNMEgMicQ=="},{"base64":"MIIElDCCA3ygAwIBAgIQAf2j627KdciIQ4tyS8+8kTANBgkqhkiG9w0BAQsFADBhMQswCQYDVQQGEwJVUzEVMBMGA1UEChMMRGlnaUNlcnQgSW5jMRkwFwYDVQQLExB3d3cuZGlnaWNlcnQuY29tMSAwHgYDVQQDExdEaWdpQ2VydCBHbG9iYWwgUm9vdCBDQTAeFw0xMzAzMDgxMjAwMDBaFw0yMzAzMDgxMjAwMDBaME0xCzAJBgNVBAYTAlVTMRUwEwYDVQQKEwxEaWdpQ2VydCBJbmMxJzAlBgNVBAMTHkRpZ2lDZXJ0IFNIQTIgU2VjdXJlIFNlcnZlciBDQTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANyuWJBNwcQwFZA1W248ghX1LFy949v/cUP6ZCWA1O4Yok3wZtAKc24RmDYXZK83nf36QYSvx6+M/hpzTc8zl5CilodTgyu5pnVILR1WN3vaMTIa16yrBvSqXUu3R0bdKpPDkC55gIDvEwRqFDu1m5K+wgdlTvza/P96rtxcflUxDOg5B6TXvi/TC2rSsd9f/ld0Uzs1gN2ujkSYs58O09rg1/RrKatEp0tYhG2SS4HD2nOLEpdIkARFdRrdNzGXkujNVA075ME/OV4uuPNcfhCOhkEAjUVmR7ChZc6gqikJTvOX6+guqw9ypzAO+sf0/RR3w6RbKFfCs/mC/bdFWJsCAwEAAaOCAVowggFWMBIGA1UdEwEB/wQIMAYBAf8CAQAwDgYDVR0PAQH/BAQDAgGGMDQGCCsGAQUFBwEBBCgwJjAkBggrBgEFBQcwAYYYaHR0cDovL29jc3AuZGlnaWNlcnQuY29tMHsGA1UdHwR0MHIwN6A1oDOGMWh0dHA6Ly9jcmwzLmRpZ2ljZXJ0LmNvbS9EaWdpQ2VydEdsb2JhbFJvb3RDQS5jcmwwN6A1oDOGMWh0dHA6Ly9jcmw0LmRpZ2ljZXJ0LmNvbS9EaWdpQ2VydEdsb2JhbFJvb3RDQS5jcmwwPQYDVR0gBDYwNDAyBgRVHSAAMCowKAYIKwYBBQUHAgEWHGh0dHBzOi8vd3d3LmRpZ2ljZXJ0LmNvbS9DUFMwHQYDVR0OBBYEFA+AYRyCMWHVLyjnjUY4tCzhxtniMB8GA1UdIwQYMBaAFAPeUDVW0Uy7ZvCj4hsbw5eyPdFVMA0GCSqGSIb3DQEBCwUAA4IBAQAjPt9L0jFCpbZ+QlwaRMxp0Wi0XUvgBCFsS+JtzLHgl4+mUwnNqipl5TlPHoOlblyYoiQm5vuh7ZPHLgLGTUq/sELfeNqzqPlt/yGFUzZgTHbO7Djc1lGA8MXW5dRNJ2Srm8c+cftIl7gzbckTB+6WohsYFfZcTEDts8Ls/3HB40f/1LkAtDdC2iDJ6m6K7hQGrn2iWZiIqBtvLfTyyRRfJs8sjX7tN8Cp1Tm5gr8ZDOo0rwAhaPitc+LJMto4JQtV05od8GiG7S5BNO98pVAdvzr508EIDObtHopYJeS4d60tbvVS3bR0j6tJLp07kzQoH3jOlOrHvdPJbRzeXDLz"}],"version":"0303","random":"795e675d39a04160e7bd59265ed469cc485cdbe742adba54c04a1dc3580d74ca","selected_cipher_suite":"c02f","compression_method":"00","session_ticket":""}},"reassembly_properties":{"reassembled":true},"src_ip":"108.174.11.65","dst_ip":"192.168.113.237","protocol":6,"src_port":443,"dst_port":47924,"event_start":1565200319.231660} -{"ip":{"version":4,"ttl":64,"id":"ce0c"},"dns":{"base64":"q7UBAAABAAAAAAAACWluc3RhZ3JhbQNjb20AAAEAAQ=="},"src_ip":"192.168.113.237","dst_ip":"192.168.113.2","protocol":17,"src_port":42910,"dst_port":53,"event_start":1565200319.813362} -{"ip":{"version":4,"ttl":64,"id":"ce0d"},"dns":{"base64":"PW4BAAABAAAAAAAACWluc3RhZ3JhbQNjb20AABwAAQ=="},"src_ip":"192.168.113.237","dst_ip":"192.168.113.2","protocol":17,"src_port":50970,"dst_port":53,"event_start":1565200319.813552} -{"ip":{"version":4,"ttl":128,"id":"9938"},"dns":{"base64":"PW6BgAABAAgADQACCWluc3RhZ3JhbQNjb20AABwAAcAMABwAAQAAAAUAECQG2gD/AAAAAAAAAGsXC33ADAAcAAEAAAAFABAkBtoA/wAAAAAAAAA0FqRWwAwAHAABAAAABQAQJAbaAP8AAAAAAAAAEtHyZsAMABwAAQAAAAUAECQG2gD/AAAAAAAAADQXkOjADAAcAAEAAAAFABAkBtoA/wAAAAAAAAA0BvAwwAwAHAABAAAABQAQJAbaAP8AAAAAAAAAA9BSHsAMABwAAQAAAAUAECQG2gD/AAAAAAAAADZZH7/ADAAcAAEAAAAFABAkBtoA/wAAAAAAAAA27LMfwBYAAgABAAAABQAUAWUMZ3RsZC1zZXJ2ZXJzA25ldADAFgACAAEAAAAFAAQBasENwBYAAgABAAAABQAEAWLBDcAWAAIAAQAAAAUABAFmwQ3AFgACAAEAAAAFAAQBY8ENwBYAAgABAAAABQAEAWjBDcAWAAIAAQAAAAUABAFpwQ3AFgACAAEAAAAFAAQBZ8ENwBYAAgABAAAABQAEAWTBDcAWAAIAAQAAAAUABAFswQ3AFgACAAEAAAAFAAQBbcENwBYAAgABAAAABQAEAWHBDcAWAAIAAQAAAAUABAFrwQ3BywABAAEAAAAFAATABQYewTsAAQABAAAABQAEwCEOHg=="},"src_ip":"192.168.113.2","dst_ip":"192.168.113.237","protocol":17,"src_port":53,"dst_port":50970,"event_start":1565200319.844569} -{"ip":{"version":4,"ttl":128,"id":"9939"},"dns":{"base64":"q7WBgAABAAgADQAICWluc3RhZ3JhbQNjb20AAAEAAcAMAAEAAQAAAAUABDQsMCbADAABAAEAAAAFAAQ0A2ZYwAwAAQABAAAABQAEA1uH18AMAAEAAQAAAAUABAPTtdjADAABAAEAAAAFAAQDXGuJwAwAAQABAAAABQAEIsVczMAMAAEAAQAAAAUABAPREtDADAABAAEAAAAFAAQDXHeAwBYAAgABAAAABQAUAWQMZ3RsZC1zZXJ2ZXJzA25ldADAFgACAAEAAAAFAAQBa8CtwBYAAgABAAAABQAEAWXArcAWAAIAAQAAAAUABAFtwK3AFgACAAEAAAAFAAQBbMCtwBYAAgABAAAABQAEAWLArcAWAAIAAQAAAAUABAFjwK3AFgACAAEAAAAFAAQBZ8CtwBYAAgABAAAABQAEAWbArcAWAAIAAQAAAAUABAFpwK3AFgACAAEAAAAFAAQBYcCtwBYAAgABAAAABQAEAWrArcAWAAIAAQAAAAUABAFowK3BWwABAAEAAAAFAATABQYewQsAAQABAAAABQAEwCEOHsEbAAEAAQAAAAUABMAaXB7AqwABAAEAAAAFAATAH1AewNsAAQABAAAABQAEwAxeHsE7AAEAAQAAAAUABMAjMx7BKwABAAEAAAAFAATAKl0ewXsAAQABAAAABQAEwDZwHg=="},"src_ip":"192.168.113.2","dst_ip":"192.168.113.237","protocol":17,"src_port":53,"dst_port":42910,"event_start":1565200319.844591} -{"ip":{"version":4,"ttl":64,"id":"2592"},"fingerprints":{"tcp":"tcp/(40)()(40)(faf0)((020405b4)(04)(08)(01)(030307))"},"tcp":{"seq":104063285,"timestamp":{"ts_val":2567642952}},"src_ip":"192.168.113.237","dst_ip":"52.44.48.38","protocol":6,"src_port":53570,"dst_port":443,"event_start":1565200319.845155} -{"ip":{"version":4,"ttl":128,"id":"993a"},"fingerprints":{"tcp_server":"tcp_server/(40)()(80)(faf0)((020405b4))"},"tcp_server":{"seq":638667298},"src_ip":"52.44.48.38","dst_ip":"192.168.113.237","protocol":6,"src_port":443,"dst_port":53570,"event_start":1565200319.884813} -{"ip":{"version":4,"ttl":64,"id":"2594"},"fingerprints":{"tls":"tls/(0303)(130213031301c02cc030009fcca9cca8ccaac02bc02f009ec024c028006bc023c0270067c00ac0140039c009c0130033009d009c003d003c0035002f00ff)((0000)(000b000403000102)(000a000c000a001d0017001e00190018)(0023)(0016)(0017)(000d0030002e040305030603080708080809080a080b080408050806040105010601030302030301020103020202040205020602)(002b0009080304030303020301)(002d00020101)(0033))"},"tls":{"client":{"version":"0303","random":"75cfab3e94baea9c62ddc2ef594fe792681bee7b15b0786c19fa987b9600d622","session_id":"a3afe31538654c4db0d5268a8c8e7a7169f86537682ba133c3119c9fce620892","cipher_suites":"130213031301c02cc030009fcca9cca8ccaac02bc02f009ec024c028006bc023c0270067c00ac0140039c009c0130033009d009c003d003c0035002f00ff","compression_methods":"00","server_name":"instagram.com","session_ticket":"","features":"[\"0303\",\"130213031301c02cc030009fcca9cca8ccaac02bc02f009ec024c028006bc023c0270067c00ac0140039c009c0130033009d009c003d003c0035002f00ff\",[[\"0000\",\"001000000d696e7374616772616d2e636f6d\"],[\"000b\",\"03000102\"],[\"000a\",\"000a001d0017001e00190018\"],[\"0023\",\"\"],[\"0016\",\"\"],[\"0017\",\"\"],[\"000d\",\"002e040305030603080708080809080a080b080408050806040105010601030302030301020103020202040205020602\"],[\"002b\",\"080304030303020301\"],[\"002d\",\"0101\"],[\"0033\",\"0024001d0020e7e0dcde0a046cfcab1237bd8136818a96c5e00e4a80972f23a12fcac4f74349\"]]]"}},"src_ip":"192.168.113.237","dst_ip":"52.44.48.38","protocol":6,"src_port":53570,"dst_port":443,"event_start":1565200319.885187} -{"ip":{"version":4,"ttl":128,"id":"993c"},"fingerprints":{"tls_server":"tls_server/(0303)(1303)((002b00020304)(0033))"},"tls":{"server":{"version":"0303","random":"e677d44fbea383103e3be729bc5636f6f503e82dad9f9c80b15018195a1d3657","selected_cipher_suite":"1303","compression_method":"00"}},"src_ip":"52.44.48.38","dst_ip":"192.168.113.237","protocol":6,"src_port":443,"dst_port":53570,"event_start":1565200319.935389} -{"ip":{"version":4,"ttl":64,"id":"ce42"},"dns":{"base64":"oGMBAAABAAAAAAAAA3d3dwlpbnN0YWdyYW0DY29tAAABAAE="},"src_ip":"192.168.113.237","dst_ip":"192.168.113.2","protocol":17,"src_port":40723,"dst_port":53,"event_start":1565200320.049847} -{"ip":{"version":4,"ttl":64,"id":"ce43"},"dns":{"base64":"bdQBAAABAAAAAAAAA3d3dwlpbnN0YWdyYW0DY29tAAAcAAE="},"src_ip":"192.168.113.237","dst_ip":"192.168.113.2","protocol":17,"src_port":54015,"dst_port":53,"event_start":1565200320.050025} -{"ip":{"version":4,"ttl":128,"id":"9948"},"dns":{"base64":"bdSBgAABAAIADQALA3d3dwlpbnN0YWdyYW0DY29tAAAcAAHADAAFAAEAAAAFACAPei1wNDItaW5zdGFncmFtBGMxMHIIZmFjZWJvb2vAGsAvABwAAQAAAAUAECoDKIDyNAHl+s6wDAAARCDAGgACAAEAAAAFABQBaQxndGxkLXNlcnZlcnMDbmV0AMAaAAIAAQAAAAUABAFlwHnAGgACAAEAAAAFAAQBYsB5wBoAAgABAAAABQAEAWfAecAaAAIAAQAAAAUABAFrwHnAGgACAAEAAAAFAAQBYcB5wBoAAgABAAAABQAEAWzAecAaAAIAAQAAAAUABAFtwHnAGgACAAEAAAAFAAQBZsB5wBoAAgABAAAABQAEAWPAecAaAAIAAQAAAAUABAFkwHnAGgACAAEAAAAFAAQBasB5wBoAAgABAAAABQAEAWjAecDXAAEAAQAAAAUABMAFBh7ApwABAAEAAAAFAATAIQ4ewRcAAQABAAAABQAEwBpcHsEnAAEAAQAAAAUABMAfUB7AlwABAAEAAAAFAATADF4ewQcAAQABAAAABQAEwCMzHsC3AAEAAQAAAAUABMAqXR7BRwABAAEAAAAFAATANnAewHcAAQABAAAABQAEwCusHsE3AAEAAQAAAAUABMAwTx7AxwABAAEAAAAFAATANLIe"},"src_ip":"192.168.113.2","dst_ip":"192.168.113.237","protocol":17,"src_port":53,"dst_port":54015,"event_start":1565200320.084374} -{"ip":{"version":4,"ttl":128,"id":"9949"},"dns":{"base64":"oGOBgAABAAIADQAMA3d3dwlpbnN0YWdyYW0DY29tAAABAAHADAAFAAEAAAAFACAPei1wNDItaW5zdGFncmFtBGMxMHIIZmFjZWJvb2vAGsAvAAEAAQAAAAUABB8NXa7AGgACAAEAAAAFABQBaQxndGxkLXNlcnZlcnMDbmV0AMAaAAIAAQAAAAUABAFqwG3AGgACAAEAAAAFAAQBa8BtwBoAAgABAAAABQAEAWPAbcAaAAIAAQAAAAUABAFhwG3AGgACAAEAAAAFAAQBbcBtwBoAAgABAAAABQAEAWbAbcAaAAIAAQAAAAUABAFlwG3AGgACAAEAAAAFAAQBaMBtwBoAAgABAAAABQAEAWfAbcAaAAIAAQAAAAUABAFkwG3AGgACAAEAAAAFAAQBbMBtwBoAAgABAAAABQAEAWLAbcC7AAEAAQAAAAUABMAFBh7BOwABAAEAAAAFAATAIQ4ewKsAAQABAAAABQAEwBpcHsEbAAEAAQAAAAUABMAfUB7A6wABAAEAAAAFAATADF4ewNsAAQABAAAABQAEwCMzHsELAAEAAQAAAAUABMAqXR7A+wABAAEAAAAFAATANnAewGsAAQABAAAABQAEwCusHsCLAAEAAQAAAAUABMAwTx7AmwABAAEAAAAFAATANLIewSsAAQABAAAABQAEwCmiHg=="},"src_ip":"192.168.113.2","dst_ip":"192.168.113.237","protocol":17,"src_port":53,"dst_port":40723,"event_start":1565200320.084392} -{"ip":{"version":4,"ttl":64,"id":"7b7b"},"fingerprints":{"tcp":"tcp/(40)()(40)(faf0)((020405b4)(04)(08)(01)(030307))"},"tcp":{"seq":3891445656,"timestamp":{"ts_val":3143358125}},"src_ip":"192.168.113.237","dst_ip":"31.13.93.174","protocol":6,"src_port":50634,"dst_port":443,"event_start":1565200320.084987} -{"ip":{"version":4,"ttl":128,"id":"994b"},"fingerprints":{"tcp_server":"tcp_server/(40)()(80)(faf0)((020405b4))"},"tcp_server":{"seq":2804834445},"src_ip":"31.13.93.174","dst_ip":"192.168.113.237","protocol":6,"src_port":443,"dst_port":50634,"event_start":1565200320.139379} -{"ip":{"version":4,"ttl":64,"id":"7b7d"},"fingerprints":{"tls":"tls/(0303)(130213031301c02cc030009fcca9cca8ccaac02bc02f009ec024c028006bc023c0270067c00ac0140039c009c0130033009d009c003d003c0035002f00ff)((0000)(000b000403000102)(000a000c000a001d0017001e00190018)(0023)(0016)(0017)(000d0030002e040305030603080708080809080a080b080408050806040105010601030302030301020103020202040205020602)(002b0009080304030303020301)(002d00020101)(0033))"},"tls":{"client":{"version":"0303","random":"d01f5eb3575366cd09d162ab63dca297d18428a7cc4729fd243abf778f2b4eaa","session_id":"f9426344393c6e3292c63d89d3ae753f43e08e85f567baf5117a6ca53241b274","cipher_suites":"130213031301c02cc030009fcca9cca8ccaac02bc02f009ec024c028006bc023c0270067c00ac0140039c009c0130033009d009c003d003c0035002f00ff","compression_methods":"00","server_name":"www.instagram.com","session_ticket":"","features":"[\"0303\",\"130213031301c02cc030009fcca9cca8ccaac02bc02f009ec024c028006bc023c0270067c00ac0140039c009c0130033009d009c003d003c0035002f00ff\",[[\"0000\",\"00140000117777772e696e7374616772616d2e636f6d\"],[\"000b\",\"03000102\"],[\"000a\",\"000a001d0017001e00190018\"],[\"0023\",\"\"],[\"0016\",\"\"],[\"0017\",\"\"],[\"000d\",\"002e040305030603080708080809080a080b080408050806040105010601030302030301020103020202040205020602\"],[\"002b\",\"080304030303020301\"],[\"002d\",\"0101\"],[\"0033\",\"0024001d002059c042390c82040fa8f9da8dd4d9568690aa6b04055c23aa250739d75383e559\"]]]"}},"src_ip":"192.168.113.237","dst_ip":"31.13.93.174","protocol":6,"src_port":50634,"dst_port":443,"event_start":1565200320.139625} -{"ip":{"version":4,"ttl":128,"id":"994d"},"fingerprints":{"tls_server":"tls_server/(0303)(1303)((002b00020304)(0033))"},"tls":{"server":{"version":"0303","random":"e26e8fd4f34c913fb5ef2af18f21feb6faf39ad5f9a187bca4013bef4dd0ad0e","selected_cipher_suite":"1303","compression_method":"00"}},"src_ip":"31.13.93.174","dst_ip":"192.168.113.237","protocol":6,"src_port":443,"dst_port":50634,"event_start":1565200320.196482} -{"ip":{"version":4,"ttl":64,"id":"ce73"},"dns":{"base64":"tpEBAAABAAAAAAAACXdpa2lwZWRpYQNvcmcAAAEAAQ=="},"src_ip":"192.168.113.237","dst_ip":"192.168.113.2","protocol":17,"src_port":45506,"dst_port":53,"event_start":1565200320.441793} -{"ip":{"version":4,"ttl":64,"id":"ce74"},"dns":{"base64":"IBEBAAABAAAAAAAACXdpa2lwZWRpYQNvcmcAABwAAQ=="},"src_ip":"192.168.113.237","dst_ip":"192.168.113.2","protocol":17,"src_port":36230,"dst_port":53,"event_start":1565200320.441976} -{"ip":{"version":4,"ttl":128,"id":"9977"},"dns":{"base64":"tpGBgAABAAEABgAKCXdpa2lwZWRpYQNvcmcAAAEAAcAMAAEAAQAAAAUABNBQmuDAFgACAAEAAAAFABkCYTADb3JnC2FmaWxpYXMtbnN0BGluZm8AwBYAAgABAAAABQAFAmMwwD7AFgACAAEAAAAFABUCZDADb3JnC2FmaWxpYXMtbnN0wBbAFgACAAEAAAAFAAUCYTLAPsAWAAIAAQAAAAUABQJiMMB0wBYAAgABAAAABQAFAmIywHTAOwABAAEAAAAFAATHEzgBwJIAAQABAAAABQAEx/lwAcBgAAEAAQAAAAUABMcTNQHAcQABAAEAAAAFAATHEzkBwDsAHAABAAAABQAQIAEFAAAOAAAAAAAAAAAAAcCSABwAAQAAAAUAECABBQAAQAAAAAAAAAAAAAHAowAcAAEAAAAFABAgAQUAAAwAAAAAAAAAAAABwLQAHAABAAAABQAQIAEFAABIAAAAAAAAAAAAAcBgABwAAQAAAAUAECABBQAACwAAAAAAAAAAAAHAcQAcAAEAAAAFABAgAQUAAA8AAAAAAAAAAAAB"},"src_ip":"192.168.113.2","dst_ip":"192.168.113.237","protocol":17,"src_port":53,"dst_port":45506,"event_start":1565200320.487189} -{"ip":{"version":4,"ttl":128,"id":"9978"},"dns":{"base64":"IBGBgAABAAEABgAMCXdpa2lwZWRpYQNvcmcAABwAAcAMABwAAQAAAAUAECYgAAAIYe0aAAAAAAAAAAHAFgACAAEAAAAFABkCYTADb3JnC2FmaWxpYXMtbnN0BGluZm8AwBYAAgABAAAABQAFAmEywErAFgACAAEAAAAFABUCZDADb3JnC2FmaWxpYXMtbnN0wBbAFgACAAEAAAAFAAUCYzDASsAWAAIAAQAAAAUABQJiMMCAwBYAAgABAAAABQAFAmIywIDARwABAAEAAAAFAATHEzgBwGwAAQABAAAABQAEx/lwAcCvAAEAAQAAAAUABMcTNgHAwAABAAEAAAAFAATH+XgBwJ4AAQABAAAABQAExxM1AcB9AAEAAQAAAAUABMcTOQHARwAcAAEAAAAFABAgAQUAAA4AAAAAAAAAAAABwGwAHAABAAAABQAQIAEFAABAAAAAAAAAAAAAAcCvABwAAQAAAAUAECABBQAADAAAAAAAAAAAAAHAwAAcAAEAAAAFABAgAQUAAEgAAAAAAAAAAAABwJ4AHAABAAAABQAQIAEFAAALAAAAAAAAAAAAAcB9ABwAAQAAAAUAECABBQAADwAAAAAAAAAAAAE="},"src_ip":"192.168.113.2","dst_ip":"192.168.113.237","protocol":17,"src_port":53,"dst_port":36230,"event_start":1565200320.525287} -{"ip":{"version":4,"ttl":64,"id":"4299"},"fingerprints":{"tcp":"tcp/(40)()(40)(faf0)((020405b4)(04)(08)(01)(030307))"},"tcp":{"seq":4217997259,"timestamp":{"ts_val":1954733578}},"src_ip":"192.168.113.237","dst_ip":"208.80.154.224","protocol":6,"src_port":51344,"dst_port":443,"event_start":1565200320.525880} -{"ip":{"version":4,"ttl":128,"id":"9979"},"fingerprints":{"tcp_server":"tcp_server/(40)()(80)(faf0)((020405b4))"},"tcp_server":{"seq":66709320},"src_ip":"208.80.154.224","dst_ip":"192.168.113.237","protocol":6,"src_port":443,"dst_port":51344,"event_start":1565200320.565532} -{"ip":{"version":4,"ttl":64,"id":"429b"},"fingerprints":{"tls":"tls/(0303)(130213031301c02cc030009fcca9cca8ccaac02bc02f009ec024c028006bc023c0270067c00ac0140039c009c0130033009d009c003d003c0035002f00ff)((0000)(000b000403000102)(000a000c000a001d0017001e00190018)(0023)(0016)(0017)(000d0030002e040305030603080708080809080a080b080408050806040105010601030302030301020103020202040205020602)(002b0009080304030303020301)(002d00020101)(0033))"},"tls":{"client":{"version":"0303","random":"79248ea73f50617e6974a9295e51975d56c07a022fbe746e24cac2831e25411e","session_id":"1568f70d249f09756b7c34074760fa15ead755de54677402ff25e06a094b502f","cipher_suites":"130213031301c02cc030009fcca9cca8ccaac02bc02f009ec024c028006bc023c0270067c00ac0140039c009c0130033009d009c003d003c0035002f00ff","compression_methods":"00","server_name":"wikipedia.org","session_ticket":"","features":"[\"0303\",\"130213031301c02cc030009fcca9cca8ccaac02bc02f009ec024c028006bc023c0270067c00ac0140039c009c0130033009d009c003d003c0035002f00ff\",[[\"0000\",\"001000000d77696b6970656469612e6f7267\"],[\"000b\",\"03000102\"],[\"000a\",\"000a001d0017001e00190018\"],[\"0023\",\"\"],[\"0016\",\"\"],[\"0017\",\"\"],[\"000d\",\"002e040305030603080708080809080a080b080408050806040105010601030302030301020103020202040205020602\"],[\"002b\",\"080304030303020301\"],[\"002d\",\"0101\"],[\"0033\",\"0024001d0020107f7f807a8a19e09a5f5fd659f73f5ebc0a3269212aaae9a86e2b31234a1018\"]]]"}},"src_ip":"192.168.113.237","dst_ip":"208.80.154.224","protocol":6,"src_port":51344,"dst_port":443,"event_start":1565200320.565853} -{"ip":{"version":4,"ttl":128,"id":"997d"},"fingerprints":{"tls_server":"tls_server/(0303)(cca9)((ff01)(000b000403000102)(0017))"},"tls":{"server":{"certs":[{"base64":"MIIIMTCCBxmgAwIBAgIMFkDF1F0uxNlMfXxqMA0GCSqGSIb3DQEBCwUAMGYxCzAJBgNVBAYTAkJFMRkwFwYDVQQKExBHbG9iYWxTaWduIG52LXNhMTwwOgYDVQQDEzNHbG9iYWxTaWduIE9yZ2FuaXphdGlvbiBWYWxpZGF0aW9uIENBIC0gU0hBMjU2IC0gRzIwHhcNMTgxMTA4MjEyMTA0WhcNMTkxMTIyMDc1OTU5WjB5MQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZyYW5jaXNjbzEjMCEGA1UEChMaV2lraW1lZGlhIEZvdW5kYXRpb24sIEluYy4xGDAWBgNVBAMMDyoud2lraXBlZGlhLm9yZzBZMBMGByqGSM49AgEGCCqGSM49AwEHA0IABGd1rS7GauMxJ15BmViShjVMjwQJNjjw+OUhnIaqE5QF/q6c/LIvVh4N3473a7J52JcfmlfCrXvDthHzaZNEneKjggWVMIIFkTAOBgNVHQ8BAf8EBAMCA4gwgaAGCCsGAQUFBwEBBIGTMIGQME0GCCsGAQUFBzAChkFodHRwOi8vc2VjdXJlLmdsb2JhbHNpZ24uY29tL2NhY2VydC9nc29yZ2FuaXphdGlvbnZhbHNoYTJnMnIxLmNydDA/BggrBgEFBQcwAYYzaHR0cDovL29jc3AyLmdsb2JhbHNpZ24uY29tL2dzb3JnYW5pemF0aW9udmFsc2hhMmcyMFYGA1UdIARPME0wQQYJKwYBBAGgMgEUMDQwMgYIKwYBBQUHAgEWJmh0dHBzOi8vd3d3Lmdsb2JhbHNpZ24uY29tL3JlcG9zaXRvcnkvMAgGBmeBDAECAjAJBgNVHRMEAjAAMEkGA1UdHwRCMEAwPqA8oDqGOGh0dHA6Ly9jcmwuZ2xvYmFsc2lnbi5jb20vZ3MvZ3Nvcmdhbml6YXRpb252YWxzaGEyZzIuY3JsMIICxQYDVR0RBIICvDCCAriCDyoud2lraXBlZGlhLm9yZ4INd2lraW1lZGlhLm9yZ4INbWVkaWF3aWtpLm9yZ4INd2lraWJvb2tzLm9yZ4IMd2lraWRhdGEub3Jnggx3aWtpbmV3cy5vcmeCDXdpa2lxdW90ZS5vcmeCDndpa2lzb3VyY2Uub3Jngg93aWtpdmVyc2l0eS5vcmeCDndpa2l2b3lhZ2Uub3Jngg53aWt0aW9uYXJ5Lm9yZ4IXd2lraW1lZGlhZm91bmRhdGlvbi5vcmeCBncud2lraYISd21mdXNlcmNvbnRlbnQub3JnghEqLm0ud2lraXBlZGlhLm9yZ4IPKi53aWtpbWVkaWEub3JnghEqLm0ud2lraW1lZGlhLm9yZ4IWKi5wbGFuZXQud2lraW1lZGlhLm9yZ4IPKi5tZWRpYXdpa2kub3JnghEqLm0ubWVkaWF3aWtpLm9yZ4IPKi53aWtpYm9va3Mub3JnghEqLm0ud2lraWJvb2tzLm9yZ4IOKi53aWtpZGF0YS5vcmeCECoubS53aWtpZGF0YS5vcmeCDioud2lraW5ld3Mub3JnghAqLm0ud2lraW5ld3Mub3Jngg8qLndpa2lxdW90ZS5vcmeCESoubS53aWtpcXVvdGUub3JnghAqLndpa2lzb3VyY2Uub3JnghIqLm0ud2lraXNvdXJjZS5vcmeCESoud2lraXZlcnNpdHkub3JnghMqLm0ud2lraXZlcnNpdHkub3JnghAqLndpa2l2b3lhZ2Uub3JnghIqLm0ud2lraXZveWFnZS5vcmeCECoud2lrdGlvbmFyeS5vcmeCEioubS53aWt0aW9uYXJ5Lm9yZ4IZKi53aWtpbWVkaWFmb3VuZGF0aW9uLm9yZ4IUKi53bWZ1c2VyY29udGVudC5vcmeCDXdpa2lwZWRpYS5vcmcwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMB0GA1UdDgQWBBSt4NNfC33t2i98DfZjjYpZGMJsijAfBgNVHSMEGDAWgBSW3mHxvRwWKVMcwMx9O4MAQOYafDCCAQQGCisGAQQB1nkCBAIEgfUEgfIA8AB2AKS5CZC0GFgUh7sTosxncAo8NZgE+RvfuON3zQ7IDdwQAAABZvUzN/YAAAQDAEcwRQIgBATdvSzbd5NwGdtkmJ5SEvEPn6A8hgAsk6GSP6hzWcgCIQDKfHQNtObs/hHPfLgXsVkcnHIbjlNwmWeiukGtGHZFMgB2AG9Tdqwx8DEZ2JkApFEV/3cVHBHZAsEAKQaNsgiaN9kTAAABZvUzN8cAAAQDAEcwRQIgYalEnXtd/fPhjq9SXPoSPRhaMmeDs0IMN5o5Y6QTKfUCIQClR1uj+B56K4tGh/mws4qugG1qSD9zfvmx8roKik3HHDANBgkqhkiG9w0BAQsFAAOCAQEAUEJyg/AZo+owG5J/LIk8EIDnyOcanmfgvdjMg8KnpBvh8l3Wb4HmOudluJhIeIbCUMwzEzSGqYQQ78n4wtjLaLwaDgL4WzHOVec2k+rbfmPT6MUCtdlz1PK5/WY9JQyQq6vy+tm3a6Wijy6M8U/TdrJubK5X03SFfRb0pDuFdr2fnkctLRnyCb1w0XHwGXjEcGm1LY42YKwdvbj3WIqumeSEuG4MZtquW6NURKELSil03G/hRHRAHHGx3zXes/jJcpH2GPX9eY9B+R1oHmCE2QF5Y/Bh+uNA2+2Iuj/6UJAOw/Z/8+qZcnLWWnK2Dwzc34C/AUD+Wb71oUcr60+pPg=="},{"base64":"MIIEYjCCA0qgAwIBAgILBAAAAAABMYnGRMkwDQYJKoZIhvcNAQELBQAwTDEgMB4GA1UECxMXR2xvYmFsU2lnbiBSb290IENBIC0gUjMxEzARBgNVBAoTCkdsb2JhbFNpZ24xEzARBgNVBAMTCkdsb2JhbFNpZ24wHhcNMTEwODAyMTAwMDAwWhcNMjIwODAyMTAwMDAwWjBmMQswCQYDVQQGEwJCRTEZMBcGA1UEChMQR2xvYmFsU2lnbiBudi1zYTE8MDoGA1UEAxMzR2xvYmFsU2lnbiBPcmdhbml6YXRpb24gVmFsaWRhdGlvbiBDQSAtIFNIQTI1NiAtIEcyMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAxw5sPyOTf8xwpZ0gww5TP37ATsKYScpH1SPvAzSFdMijAi5GXAt9yYidT4vw+JxsjFU127/ys+r741bnSkbZEyLKNtWbwajjlkOT8gy85vnm6JnIY0h4f1c2aRoZHVrR1H3CnNR/4YASrnrqiOpX2MoKCjoSSaJiGXoNJPc367RzknsFI5sStc7rKd+kFAK5AaXUppxDZIje+H7+4/Ue5f7co6jkZjHZTCXpGLmJWQmu6Z0cbTcPSh41ICjir9QhiwHERa1uK2OrkmthCk0g7XO6fM7+FrXbn4Dw1ots2Qh5Sk94ZdqSvL41+bPE+SeATv+WUuYCIOEHc+ldK72y8QIDAQABo4IBKTCCASUwDgYDVR0PAQH/BAQDAgEGMBIGA1UdEwEB/wQIMAYBAf8CAQAwHQYDVR0OBBYEFJbeYfG9HBYpUxzAzH07gwBA5hp8MEcGA1UdIARAMD4wPAYEVR0gADA0MDIGCCsGAQUFBwIBFiZodHRwczovL3d3dy5nbG9iYWxzaWduLmNvbS9yZXBvc2l0b3J5LzA2BgNVHR8ELzAtMCugKaAnhiVodHRwOi8vY3JsLmdsb2JhbHNpZ24ubmV0L3Jvb3QtcjMuY3JsMD4GCCsGAQUFBwEBBDIwMDAuBggrBgEFBQcwAYYiaHR0cDovL29jc3AyLmdsb2JhbHNpZ24uY29tL3Jvb3RyMzAfBgNVHSMEGDAWgBSP8Et/qC5FJK5NUPpjmove4t0bvDANBgkqhkiG9w0BAQsFAAOCAQEAugYpwLQZjCERwJQRnrs91NVDQPafuyULI2i1Gvf6VGTMKxP5IfBEreHoFVjb7v3bok3MGI8Nmm3DawGhMfCNvABAzDlfh2FRbfSV6uoVNT5AhcBi1aE0/niqqLJaOfM3Qfuc6D5xSlvr+GlYoeDGk3fpumeS62VYkHBzQn2v9CMmeReq+qS7meVEb2WB58rrVcj0ticRIXSUvGu3dGIpxM2uR/LmQlt4hgVhy5CqeYnfBH6xJnBLjUAfhHvA+wfmyLdOkfQ1A+3o60EQF0m0YsinLPLhTI8DLPMWN11n8aQ5eUmjwF3MVfkhgA/7zuIpalhQ6abX6xwyNrVip8H65g=="}],"version":"0303","random":"0a56169bfa450910cc9182209e5f9fd94050467e7875b481f2e9faaeae58c315","selected_cipher_suite":"cca9","compression_method":"00"}},"reassembly_properties":{"reassembled":true},"src_ip":"208.80.154.224","dst_ip":"192.168.113.237","protocol":6,"src_port":443,"dst_port":51344,"event_start":1565200320.614434} -{"ip":{"version":4,"ttl":64,"id":"cea1"},"dns":{"base64":"xBoBAAABAAAAAAAAA3d3dwl3aWtpcGVkaWEDb3JnAAABAAE="},"src_ip":"192.168.113.237","dst_ip":"192.168.113.2","protocol":17,"src_port":42538,"dst_port":53,"event_start":1565200320.713805} -{"ip":{"version":4,"ttl":64,"id":"cea2"},"dns":{"base64":"jPoBAAABAAAAAAAAA3d3dwl3aWtpcGVkaWEDb3JnAAAcAAE="},"src_ip":"192.168.113.237","dst_ip":"192.168.113.2","protocol":17,"src_port":44457,"dst_port":53,"event_start":1565200320.713972} -{"ip":{"version":4,"ttl":128,"id":"9984"},"dns":{"base64":"xBqBgAABAAIABgAMA3d3dwl3aWtpcGVkaWEDb3JnAAABAAHADAAFAAEAAAAFABEEZHluYQl3aWtpbWVkaWHAGsAvAAEAAQAAAAUABNBQmuDAGgACAAEAAAAFABUCYjIDb3JnC2FmaWxpYXMtbnN0wBrAGgACAAEAAAAFABkCYTIDb3JnC2FmaWxpYXMtbnN0BGluZm8AwBoAAgABAAAABQAFAmMwwIDAGgACAAEAAAAFAAUCZDDAX8AaAAIAAQAAAAUABQJhMMCAwBoAAgABAAAABQAFAmIwwF/AxAABAAEAAAAFAATHEzgBwH0AAQABAAAABQAEx/lwAcDVAAEAAQAAAAUABMcTNgHAXAABAAEAAAAFAATH+XgBwKIAAQABAAAABQAExxM1AcCzAAEAAQAAAAUABMcTOQHAxAAcAAEAAAAFABAgAQUAAA4AAAAAAAAAAAABwH0AHAABAAAABQAQIAEFAABAAAAAAAAAAAAAAcDVABwAAQAAAAUAECABBQAADAAAAAAAAAAAAAHAXAAcAAEAAAAFABAgAQUAAEgAAAAAAAAAAAABwKIAHAABAAAABQAQIAEFAAALAAAAAAAAAAAAAcCzABwAAQAAAAUAECABBQAADwAAAAAAAAAAAAE="},"src_ip":"192.168.113.2","dst_ip":"192.168.113.237","protocol":17,"src_port":53,"dst_port":42538,"event_start":1565200320.745323} -{"ip":{"version":4,"ttl":128,"id":"9985"},"dns":{"base64":"jPqBgAABAAIABgAMA3d3dwl3aWtpcGVkaWEDb3JnAAAcAAHADAAFAAEAAAAFABEEZHluYQl3aWtpbWVkaWHAGsAvABwAAQAAAAUAECYgAAAIYe0aAAAAAAAAAAHAGgACAAEAAAAFABkCYzADb3JnC2FmaWxpYXMtbnN0BGluZm8AwBoAAgABAAAABQAVAmIyA29yZwthZmlsaWFzLW5zdMAawBoAAgABAAAABQAFAmIwwJDAGgACAAEAAAAFAAUCYTLAa8AaAAIAAQAAAAUABQJkMMCQwBoAAgABAAAABQAFAmEwwGvA4QABAAEAAAAFAATHEzgBwL8AAQABAAAABQAEx/lwAcCuAAEAAQAAAAUABMcTNgHAjQABAAEAAAAFAATH+XgBwGgAAQABAAAABQAExxM1AcDQAAEAAQAAAAUABMcTOQHA4QAcAAEAAAAFABAgAQUAAA4AAAAAAAAAAAABwL8AHAABAAAABQAQIAEFAABAAAAAAAAAAAAAAcCuABwAAQAAAAUAECABBQAADAAAAAAAAAAAAAHAjQAcAAEAAAAFABAgAQUAAEgAAAAAAAAAAAABwGgAHAABAAAABQAQIAEFAAALAAAAAAAAAAAAAcDQABwAAQAAAAUAECABBQAADwAAAAAAAAAAAAE="},"src_ip":"192.168.113.2","dst_ip":"192.168.113.237","protocol":17,"src_port":53,"dst_port":44457,"event_start":1565200320.756902} -{"ip":{"version":4,"ttl":64,"id":"02a3"},"fingerprints":{"tcp":"tcp/(40)()(40)(faf0)((020405b4)(04)(08)(01)(030307))"},"tcp":{"seq":68273967,"timestamp":{"ts_val":1954733810}},"src_ip":"192.168.113.237","dst_ip":"208.80.154.224","protocol":6,"src_port":51346,"dst_port":443,"event_start":1565200320.757754} -{"ip":{"version":4,"ttl":128,"id":"9987"},"fingerprints":{"tcp_server":"tcp_server/(40)()(80)(faf0)((020405b4))"},"tcp_server":{"seq":4170683750},"src_ip":"208.80.154.224","dst_ip":"192.168.113.237","protocol":6,"src_port":443,"dst_port":51346,"event_start":1565200320.804157} -{"ip":{"version":4,"ttl":64,"id":"02a5"},"fingerprints":{"tls":"tls/(0303)(130213031301c02cc030009fcca9cca8ccaac02bc02f009ec024c028006bc023c0270067c00ac0140039c009c0130033009d009c003d003c0035002f00ff)((0000)(000b000403000102)(000a000c000a001d0017001e00190018)(0023)(0016)(0017)(000d0030002e040305030603080708080809080a080b080408050806040105010601030302030301020103020202040205020602)(002b0009080304030303020301)(002d00020101)(0033))"},"tls":{"client":{"version":"0303","random":"843afd6da899068ab043dd5c222948154b6016ad95c5de6ca5535e18f753ae3c","session_id":"9d952eb9e631f8ce021581d45eba9cad6e38cd4d4125702f7bdf69900976755e","cipher_suites":"130213031301c02cc030009fcca9cca8ccaac02bc02f009ec024c028006bc023c0270067c00ac0140039c009c0130033009d009c003d003c0035002f00ff","compression_methods":"00","server_name":"www.wikipedia.org","session_ticket":"","features":"[\"0303\",\"130213031301c02cc030009fcca9cca8ccaac02bc02f009ec024c028006bc023c0270067c00ac0140039c009c0130033009d009c003d003c0035002f00ff\",[[\"0000\",\"00140000117777772e77696b6970656469612e6f7267\"],[\"000b\",\"03000102\"],[\"000a\",\"000a001d0017001e00190018\"],[\"0023\",\"\"],[\"0016\",\"\"],[\"0017\",\"\"],[\"000d\",\"002e040305030603080708080809080a080b080408050806040105010601030302030301020103020202040205020602\"],[\"002b\",\"080304030303020301\"],[\"002d\",\"0101\"],[\"0033\",\"0024001d00205b3a195bb238e48f49cbbc354f02d157ce3e8b542570be130dec4dc6e68bf16f\"]]]"}},"src_ip":"192.168.113.237","dst_ip":"208.80.154.224","protocol":6,"src_port":51346,"dst_port":443,"event_start":1565200320.804450} -{"ip":{"version":4,"ttl":128,"id":"998b"},"fingerprints":{"tls_server":"tls_server/(0303)(cca9)((ff01)(000b000403000102)(0017))"},"tls":{"server":{"certs":[{"base64":"MIIIMTCCBxmgAwIBAgIMFkDF1F0uxNlMfXxqMA0GCSqGSIb3DQEBCwUAMGYxCzAJBgNVBAYTAkJFMRkwFwYDVQQKExBHbG9iYWxTaWduIG52LXNhMTwwOgYDVQQDEzNHbG9iYWxTaWduIE9yZ2FuaXphdGlvbiBWYWxpZGF0aW9uIENBIC0gU0hBMjU2IC0gRzIwHhcNMTgxMTA4MjEyMTA0WhcNMTkxMTIyMDc1OTU5WjB5MQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZyYW5jaXNjbzEjMCEGA1UEChMaV2lraW1lZGlhIEZvdW5kYXRpb24sIEluYy4xGDAWBgNVBAMMDyoud2lraXBlZGlhLm9yZzBZMBMGByqGSM49AgEGCCqGSM49AwEHA0IABGd1rS7GauMxJ15BmViShjVMjwQJNjjw+OUhnIaqE5QF/q6c/LIvVh4N3473a7J52JcfmlfCrXvDthHzaZNEneKjggWVMIIFkTAOBgNVHQ8BAf8EBAMCA4gwgaAGCCsGAQUFBwEBBIGTMIGQME0GCCsGAQUFBzAChkFodHRwOi8vc2VjdXJlLmdsb2JhbHNpZ24uY29tL2NhY2VydC9nc29yZ2FuaXphdGlvbnZhbHNoYTJnMnIxLmNydDA/BggrBgEFBQcwAYYzaHR0cDovL29jc3AyLmdsb2JhbHNpZ24uY29tL2dzb3JnYW5pemF0aW9udmFsc2hhMmcyMFYGA1UdIARPME0wQQYJKwYBBAGgMgEUMDQwMgYIKwYBBQUHAgEWJmh0dHBzOi8vd3d3Lmdsb2JhbHNpZ24uY29tL3JlcG9zaXRvcnkvMAgGBmeBDAECAjAJBgNVHRMEAjAAMEkGA1UdHwRCMEAwPqA8oDqGOGh0dHA6Ly9jcmwuZ2xvYmFsc2lnbi5jb20vZ3MvZ3Nvcmdhbml6YXRpb252YWxzaGEyZzIuY3JsMIICxQYDVR0RBIICvDCCAriCDyoud2lraXBlZGlhLm9yZ4INd2lraW1lZGlhLm9yZ4INbWVkaWF3aWtpLm9yZ4INd2lraWJvb2tzLm9yZ4IMd2lraWRhdGEub3Jnggx3aWtpbmV3cy5vcmeCDXdpa2lxdW90ZS5vcmeCDndpa2lzb3VyY2Uub3Jngg93aWtpdmVyc2l0eS5vcmeCDndpa2l2b3lhZ2Uub3Jngg53aWt0aW9uYXJ5Lm9yZ4IXd2lraW1lZGlhZm91bmRhdGlvbi5vcmeCBncud2lraYISd21mdXNlcmNvbnRlbnQub3JnghEqLm0ud2lraXBlZGlhLm9yZ4IPKi53aWtpbWVkaWEub3JnghEqLm0ud2lraW1lZGlhLm9yZ4IWKi5wbGFuZXQud2lraW1lZGlhLm9yZ4IPKi5tZWRpYXdpa2kub3JnghEqLm0ubWVkaWF3aWtpLm9yZ4IPKi53aWtpYm9va3Mub3JnghEqLm0ud2lraWJvb2tzLm9yZ4IOKi53aWtpZGF0YS5vcmeCECoubS53aWtpZGF0YS5vcmeCDioud2lraW5ld3Mub3JnghAqLm0ud2lraW5ld3Mub3Jngg8qLndpa2lxdW90ZS5vcmeCESoubS53aWtpcXVvdGUub3JnghAqLndpa2lzb3VyY2Uub3JnghIqLm0ud2lraXNvdXJjZS5vcmeCESoud2lraXZlcnNpdHkub3JnghMqLm0ud2lraXZlcnNpdHkub3JnghAqLndpa2l2b3lhZ2Uub3JnghIqLm0ud2lraXZveWFnZS5vcmeCECoud2lrdGlvbmFyeS5vcmeCEioubS53aWt0aW9uYXJ5Lm9yZ4IZKi53aWtpbWVkaWFmb3VuZGF0aW9uLm9yZ4IUKi53bWZ1c2VyY29udGVudC5vcmeCDXdpa2lwZWRpYS5vcmcwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMB0GA1UdDgQWBBSt4NNfC33t2i98DfZjjYpZGMJsijAfBgNVHSMEGDAWgBSW3mHxvRwWKVMcwMx9O4MAQOYafDCCAQQGCisGAQQB1nkCBAIEgfUEgfIA8AB2AKS5CZC0GFgUh7sTosxncAo8NZgE+RvfuON3zQ7IDdwQAAABZvUzN/YAAAQDAEcwRQIgBATdvSzbd5NwGdtkmJ5SEvEPn6A8hgAsk6GSP6hzWcgCIQDKfHQNtObs/hHPfLgXsVkcnHIbjlNwmWeiukGtGHZFMgB2AG9Tdqwx8DEZ2JkApFEV/3cVHBHZAsEAKQaNsgiaN9kTAAABZvUzN8cAAAQDAEcwRQIgYalEnXtd/fPhjq9SXPoSPRhaMmeDs0IMN5o5Y6QTKfUCIQClR1uj+B56K4tGh/mws4qugG1qSD9zfvmx8roKik3HHDANBgkqhkiG9w0BAQsFAAOCAQEAUEJyg/AZo+owG5J/LIk8EIDnyOcanmfgvdjMg8KnpBvh8l3Wb4HmOudluJhIeIbCUMwzEzSGqYQQ78n4wtjLaLwaDgL4WzHOVec2k+rbfmPT6MUCtdlz1PK5/WY9JQyQq6vy+tm3a6Wijy6M8U/TdrJubK5X03SFfRb0pDuFdr2fnkctLRnyCb1w0XHwGXjEcGm1LY42YKwdvbj3WIqumeSEuG4MZtquW6NURKELSil03G/hRHRAHHGx3zXes/jJcpH2GPX9eY9B+R1oHmCE2QF5Y/Bh+uNA2+2Iuj/6UJAOw/Z/8+qZcnLWWnK2Dwzc34C/AUD+Wb71oUcr60+pPg=="},{"base64":"MIIEYjCCA0qgAwIBAgILBAAAAAABMYnGRMkwDQYJKoZIhvcNAQELBQAwTDEgMB4GA1UECxMXR2xvYmFsU2lnbiBSb290IENBIC0gUjMxEzARBgNVBAoTCkdsb2JhbFNpZ24xEzARBgNVBAMTCkdsb2JhbFNpZ24wHhcNMTEwODAyMTAwMDAwWhcNMjIwODAyMTAwMDAwWjBmMQswCQYDVQQGEwJCRTEZMBcGA1UEChMQR2xvYmFsU2lnbiBudi1zYTE8MDoGA1UEAxMzR2xvYmFsU2lnbiBPcmdhbml6YXRpb24gVmFsaWRhdGlvbiBDQSAtIFNIQTI1NiAtIEcyMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAxw5sPyOTf8xwpZ0gww5TP37ATsKYScpH1SPvAzSFdMijAi5GXAt9yYidT4vw+JxsjFU127/ys+r741bnSkbZEyLKNtWbwajjlkOT8gy85vnm6JnIY0h4f1c2aRoZHVrR1H3CnNR/4YASrnrqiOpX2MoKCjoSSaJiGXoNJPc367RzknsFI5sStc7rKd+kFAK5AaXUppxDZIje+H7+4/Ue5f7co6jkZjHZTCXpGLmJWQmu6Z0cbTcPSh41ICjir9QhiwHERa1uK2OrkmthCk0g7XO6fM7+FrXbn4Dw1ots2Qh5Sk94ZdqSvL41+bPE+SeATv+WUuYCIOEHc+ldK72y8QIDAQABo4IBKTCCASUwDgYDVR0PAQH/BAQDAgEGMBIGA1UdEwEB/wQIMAYBAf8CAQAwHQYDVR0OBBYEFJbeYfG9HBYpUxzAzH07gwBA5hp8MEcGA1UdIARAMD4wPAYEVR0gADA0MDIGCCsGAQUFBwIBFiZodHRwczovL3d3dy5nbG9iYWxzaWduLmNvbS9yZXBvc2l0b3J5LzA2BgNVHR8ELzAtMCugKaAnhiVodHRwOi8vY3JsLmdsb2JhbHNpZ24ubmV0L3Jvb3QtcjMuY3JsMD4GCCsGAQUFBwEBBDIwMDAuBggrBgEFBQcwAYYiaHR0cDovL29jc3AyLmdsb2JhbHNpZ24uY29tL3Jvb3RyMzAfBgNVHSMEGDAWgBSP8Et/qC5FJK5NUPpjmove4t0bvDANBgkqhkiG9w0BAQsFAAOCAQEAugYpwLQZjCERwJQRnrs91NVDQPafuyULI2i1Gvf6VGTMKxP5IfBEreHoFVjb7v3bok3MGI8Nmm3DawGhMfCNvABAzDlfh2FRbfSV6uoVNT5AhcBi1aE0/niqqLJaOfM3Qfuc6D5xSlvr+GlYoeDGk3fpumeS62VYkHBzQn2v9CMmeReq+qS7meVEb2WB58rrVcj0ticRIXSUvGu3dGIpxM2uR/LmQlt4hgVhy5CqeYnfBH6xJnBLjUAfhHvA+wfmyLdOkfQ1A+3o60EQF0m0YsinLPLhTI8DLPMWN11n8aQ5eUmjwF3MVfkhgA/7zuIpalhQ6abX6xwyNrVip8H65g=="}],"version":"0303","random":"24f56da73df3ef0fdd7b18c8c4df7ca2042345dd028c02045ba114d8f689ab9f","selected_cipher_suite":"cca9","compression_method":"00"}},"reassembly_properties":{"reassembled":true},"src_ip":"208.80.154.224","dst_ip":"192.168.113.237","protocol":6,"src_port":443,"dst_port":51346,"event_start":1565200320.851714} -{"ip":{"version":4,"ttl":64,"id":"ced2"},"dns":{"base64":"FOMBAAABAAAAAAAABWFwcGxlA2NvbQAAAQAB"},"src_ip":"192.168.113.237","dst_ip":"192.168.113.2","protocol":17,"src_port":49777,"dst_port":53,"event_start":1565200321.058045} -{"ip":{"version":4,"ttl":64,"id":"ced3"},"dns":{"base64":"BvoBAAABAAAAAAAABWFwcGxlA2NvbQAAHAAB"},"src_ip":"192.168.113.237","dst_ip":"192.168.113.2","protocol":17,"src_port":53304,"dst_port":53,"event_start":1565200321.058223} -{"ip":{"version":4,"ttl":128,"id":"99d1"},"dns":{"base64":"FOOBgAABAAMADQANBWFwcGxlA2NvbQAAAQABwAwAAQABAAAABQAEEbJgO8AMAAEAAQAAAAUABBGOoDvADAABAAEAAAAFAAQRrOAvwBIAAgABAAAABQAUAWEMZ3RsZC1zZXJ2ZXJzA25ldADAEgACAAEAAAAFAAQBYsBZwBIAAgABAAAABQAEAWXAWcASAAIAAQAAAAUABAFnwFnAEgACAAEAAAAFAAQBbcBZwBIAAgABAAAABQAEAWjAWcASAAIAAQAAAAUABAFqwFnAEgACAAEAAAAFAAQBbMBZwBIAAgABAAAABQAEAWvAWcASAAIAAQAAAAUABAFjwFnAEgACAAEAAAAFAAQBacBZwBIAAgABAAAABQAEAWTAWcASAAIAAQAAAAUABAFmwFnAVwABAAEAAAAFAATABQYewHcAAQABAAAABQAEwCEOHsD3AAEAAQAAAAUABMAaXB7BFwABAAEAAAAFAATAH1AewIcAAQABAAAABQAEwAxeHsEnAAEAAQAAAAUABMAjMx7AlwABAAEAAAAFAATAKl0ewLcAAQABAAAABQAEwDZwHsEHAAEAAQAAAAUABMArrB7AxwABAAEAAAAFAATAME8ewOcAAQABAAAABQAEwDSyHsDXAAEAAQAAAAUABMApoh7ApwABAAEAAAAFAATAN1Me"},"src_ip":"192.168.113.2","dst_ip":"192.168.113.237","protocol":17,"src_port":53,"dst_port":49777,"event_start":1565200321.094171} -{"ip":{"version":4,"ttl":128,"id":"99d2"},"dns":{"base64":"BvqBgAABAAAAAQAABWFwcGxlA2NvbQAAHAABwAwABgABAAAABQApBWFkbnMxwAwKaG9zdG1hc3RlcsAMd8/meAAAA4QAAAOEAB7DAAABUeQ="},"src_ip":"192.168.113.2","dst_ip":"192.168.113.237","protocol":17,"src_port":53,"dst_port":53304,"event_start":1565200321.094206} -{"ip":{"version":4,"ttl":64,"id":"9943"},"fingerprints":{"tcp":"tcp/(40)()(40)(faf0)((020405b4)(04)(08)(01)(030307))"},"tcp":{"seq":2500484259,"timestamp":{"ts_val":854234832}},"src_ip":"192.168.113.237","dst_ip":"17.178.96.59","protocol":6,"src_port":47956,"dst_port":443,"event_start":1565200321.094698} -{"ip":{"version":4,"ttl":128,"id":"99d3"},"fingerprints":{"tcp_server":"tcp_server/(40)()(80)(faf0)((020405b4))"},"tcp_server":{"seq":2673968364},"src_ip":"17.178.96.59","dst_ip":"192.168.113.237","protocol":6,"src_port":443,"dst_port":47956,"event_start":1565200321.185356} -{"ip":{"version":4,"ttl":64,"id":"9945"},"fingerprints":{"tls":"tls/(0303)(130213031301c02cc030009fcca9cca8ccaac02bc02f009ec024c028006bc023c0270067c00ac0140039c009c0130033009d009c003d003c0035002f00ff)((0000)(000b000403000102)(000a000c000a001d0017001e00190018)(0023)(0016)(0017)(000d0030002e040305030603080708080809080a080b080408050806040105010601030302030301020103020202040205020602)(002b0009080304030303020301)(002d00020101)(0033))"},"tls":{"client":{"version":"0303","random":"4f546d3b919c0e2ec8ee9a4fe98ac12242d20c933a5029196e87555ffa66d841","session_id":"a7c02de3247ea2a564f51a1669583ec57aae8854c14a2cd8dec5636028710a34","cipher_suites":"130213031301c02cc030009fcca9cca8ccaac02bc02f009ec024c028006bc023c0270067c00ac0140039c009c0130033009d009c003d003c0035002f00ff","compression_methods":"00","server_name":"apple.com","session_ticket":"","features":"[\"0303\",\"130213031301c02cc030009fcca9cca8ccaac02bc02f009ec024c028006bc023c0270067c00ac0140039c009c0130033009d009c003d003c0035002f00ff\",[[\"0000\",\"000c0000096170706c652e636f6d\"],[\"000b\",\"03000102\"],[\"000a\",\"000a001d0017001e00190018\"],[\"0023\",\"\"],[\"0016\",\"\"],[\"0017\",\"\"],[\"000d\",\"002e040305030603080708080809080a080b080408050806040105010601030302030301020103020202040205020602\"],[\"002b\",\"080304030303020301\"],[\"002d\",\"0101\"],[\"0033\",\"0024001d002045856ffc4ea1684f0e913b38752627e148856378d48f1f61d49335a43458d827\"]]]"}},"src_ip":"192.168.113.237","dst_ip":"17.178.96.59","protocol":6,"src_port":47956,"dst_port":443,"event_start":1565200321.185602} -{"ip":{"version":4,"ttl":128,"id":"99d7"},"fingerprints":{"tls_server":"tls_server/(0303)(c02f)((000b00020100))"},"tls":{"server":{"certs":[{"base64":"MIIH8zCCBtugAwIBAgIQCntZYuAq75f9bqCozf4GOzANBgkqhkiG9w0BAQsFADB1MQswCQYDVQQGEwJVUzEVMBMGA1UEChMMRGlnaUNlcnQgSW5jMRkwFwYDVQQLExB3d3cuZGlnaWNlcnQuY29tMTQwMgYDVQQDEytEaWdpQ2VydCBTSEEyIEV4dGVuZGVkIFZhbGlkYXRpb24gU2VydmVyIENBMB4XDTE5MDcyMDAwMDAwMFoXDTIwMDcyMDEyMDAwMFowgeMxHTAbBgNVBA8MFFByaXZhdGUgT3JnYW5pemF0aW9uMRMwEQYLKwYBBAGCNzwCAQMTAlVTMRswGQYLKwYBBAGCNzwCAQITCkNhbGlmb3JuaWExETAPBgNVBAUTCEMwODA2NTkyMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTESMBAGA1UEBxMJQ3VwZXJ0aW5vMRMwEQYDVQQKEwpBcHBsZSBJbmMuMRowGAYDVQQLExFJbnRlcm5ldCBTZXJ2aWNlczEWMBQGA1UEAxMNd3d3LmFwcGxlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAOJVaWbq7ReuQNs4LNpYlxNwolxVkFREluDtvvHdC0dEGXxyl1Htd77fa3WdGsXrckZm/WA6OrGFDi0oxqGsmzqt8UhoL/8u0cMtLo22L3SakDlZNVdsZzHfuWwRkYRWiazWn8y90SECimUDM71NfqdrZAmYtWTah/EIeH0c4W3bv1ZD9qbXlGog3rlqTY2oi2faxAZuTJY2snOgnX50LvNUiHo5IzUuweD/dhPun02Y6hUd0FIJQ4ekA+CtBsf7Ji2Sc42nXeGtiW+0WYsmLzTxSnPdUcp+ad8S9ndCeWokM6dl3Iv177dJIn4aQ71x1TgagkjBYZ1GWjFo2hcbKJ0CAwEAAaOCBA4wggQKMB8GA1UdIwQYMBaAFD3TUKXWoK3u80pgCmXTIdT4+NYPMB0GA1UdDgQWBBT2nT+05RGAUUXkbIsK8871kncHUjCCATYGA1UdEQSCAS0wggEpghRleHRlbnNpb25zLmFwcGxlLmNvbYISZmVlZGJhY2suYXBwbGUuY29tghFnZW5zZXJ2LmFwcGxlLmNvbYIOaGVscC5hcHBsZS5jb22CEWhlbHBvc3guYXBwbGUuY29tghBoZWxwcXQuYXBwbGUuY29tghBpbWFnZXMuYXBwbGUuY29tghdpdHVuZXNwYXJ0bmVyLmFwcGxlLmNvbYIRcHJvaGVscC5hcHBsZS5jb22CEHJlYmF0ZS5hcHBsZS5jb22CG3NhZmFyaS1leHRlbnNpb25zLmFwcGxlLmNvbYIadHJhY2tpbmdzaGlwbWVudC5hcHBsZS5jb22CEnRyYWlsZXJzLmFwcGxlLmNvbYIJYXBwbGUuY29tgg13d3cuYXBwbGUuY29tMA4GA1UdDwEB/wQEAwIFoDAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwdQYDVR0fBG4wbDA0oDKgMIYuaHR0cDovL2NybDMuZGlnaWNlcnQuY29tL3NoYTItZXYtc2VydmVyLWcyLmNybDA0oDKgMIYuaHR0cDovL2NybDQuZGlnaWNlcnQuY29tL3NoYTItZXYtc2VydmVyLWcyLmNybDBLBgNVHSAERDBCMDcGCWCGSAGG/WwCATAqMCgGCCsGAQUFBwIBFhxodHRwczovL3d3dy5kaWdpY2VydC5jb20vQ1BTMAcGBWeBDAEBMIGIBggrBgEFBQcBAQR8MHowJAYIKwYBBQUHMAGGGGh0dHA6Ly9vY3NwLmRpZ2ljZXJ0LmNvbTBSBggrBgEFBQcwAoZGaHR0cDovL2NhY2VydHMuZGlnaWNlcnQuY29tL0RpZ2lDZXJ0U0hBMkV4dGVuZGVkVmFsaWRhdGlvblNlcnZlckNBLmNydDAJBgNVHRMEAjAAMIIBAwYKKwYBBAHWeQIEAgSB9ASB8QDvAHYApLkJkLQYWBSHuxOizGdwCjw1mAT5G9+443fNDsgN3BAAAAFsDybfogAABAMARzBFAiANYeCK4RsTjJyWm00Myizu96qqHAW1JHwjyO7TihtGiQIhAIzHukiG871pfYoOc2B2JqRwcH+BkLZVkCkIfTcrDl9LAHUAVhQGmi/XwuzT9eG9RLI+x0Z2ubyZEVzA75SYVdaJ0N0AAAFsDybf4AAABAMARjBEAiA+YJNS/bLKIyT+cpt9NtxKSQSW4/ctVA7wcTBjv2jlLQIgLKt5ld2x1FFDSjldkX+u/mfaIzk8apZ9F/lJeTTf3KIwDQYJKoZIhvcNAQELBQADggEBAGcYjzS/MA7CsV+3FgW5qoz7hNp3M1H1kha1PipJY32edcbWR6DhraZwpb1xfcB8NCIi6IZ/66rhMQvljs4eK5dGMDD25qMeWnFxeby6eqvGig7deN2vZkUoqMElv+WTDwZMy+W+QxZWgRzi5u0x/oM3iIAdSjZ2Oihb7QLMj4li+cIEXv70G8DftG5W7za1+lgySo9kK72mKwbmAr5OEDirSatO9MINGFFqVlIzP1z87wqenvj/13NYjHILzAzhkMlhA2EynbpnoJHlrjLlCOe+HMz1PGzvTa7sA4eBJ0vhcolQ8Tg0K01oglkzQpg3PENgk2pJWaToKO2SB1C7Dgo="},{"base64":"MIIEtjCCA56gAwIBAgIQDHmpRLCMEZUgkmFf4msdgzANBgkqhkiG9w0BAQsFADBsMQswCQYDVQQGEwJVUzEVMBMGA1UEChMMRGlnaUNlcnQgSW5jMRkwFwYDVQQLExB3d3cuZGlnaWNlcnQuY29tMSswKQYDVQQDEyJEaWdpQ2VydCBIaWdoIEFzc3VyYW5jZSBFViBSb290IENBMB4XDTEzMTAyMjEyMDAwMFoXDTI4MTAyMjEyMDAwMFowdTELMAkGA1UEBhMCVVMxFTATBgNVBAoTDERpZ2lDZXJ0IEluYzEZMBcGA1UECxMQd3d3LmRpZ2ljZXJ0LmNvbTE0MDIGA1UEAxMrRGlnaUNlcnQgU0hBMiBFeHRlbmRlZCBWYWxpZGF0aW9uIFNlcnZlciBDQTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANdTpARR+JmmFkhLZyeqk0nQOe0MsLAAh/FnKIaFjI5j2ryxQDji0/XspQUYuD0+xZkXMuwYjPrxDKZkIYXLBxA0sFKIKx9om9KxjxKws9LniB8f7zh3VFNfgHk/LhqqqB5LKw2rt2O5Nbd9FLxZS99RStKh4gzikIKHaq7q12TWmFXo/a8aUGxUvBHy/Urynbt/DvTVvo4WiRJV2MBxNO723C3sxIclho3YIeSwTQyJ3DkmF93215SF2AQhcJ1vb/9cuhnhRctWVyh+HA1BV6q3uCe7seT6Ku8hI3UarS2bhjWMnHe1c63YlC3k8wyd7sFOYn4XwHGeLN7x+RAoGTMCAwEAAaOCAUkwggFFMBIGA1UdEwEB/wQIMAYBAf8CAQAwDgYDVR0PAQH/BAQDAgGGMB0GA1UdJQQWMBQGCCsGAQUFBwMBBggrBgEFBQcDAjA0BggrBgEFBQcBAQQoMCYwJAYIKwYBBQUHMAGGGGh0dHA6Ly9vY3NwLmRpZ2ljZXJ0LmNvbTBLBgNVHR8ERDBCMECgPqA8hjpodHRwOi8vY3JsNC5kaWdpY2VydC5jb20vRGlnaUNlcnRIaWdoQXNzdXJhbmNlRVZSb290Q0EuY3JsMD0GA1UdIAQ2MDQwMgYEVR0gADAqMCgGCCsGAQUFBwIBFhxodHRwczovL3d3dy5kaWdpY2VydC5jb20vQ1BTMB0GA1UdDgQWBBQ901Cl1qCt7vNKYApl0yHU+PjWDzAfBgNVHSMEGDAWgBSxPsNpA/i/RwHUmCYaCALvY2QrwzANBgkqhkiG9w0BAQsFAAOCAQEAnbbQkIbhhgLtxaDwNBx0wY12zIYKqPBKikLWP8ipTa18CK3mtlC4ohpNiAexKSHc59rGPCHg4xFJcKx6HQGkyhE6V6t9VypAdP3THYUYUN9XR3WhfVUgLkc3UHKMf4Ib0mKPLQNa2sPIoc4sUqIAY+tzunHISScjl2SFnjgOrWNoPLpSgVh5oywM395t6zHyuqB8bPEs1OG9d4Q3A84ytciagRpKkk47RpqF/oOi+Z6Mo8wNXrM9zwR4jxQUezKcxwCmXMS1oVWNWlZopCJwqjyBcdmdqEU79OX2olHdx3ti6G8MdOu42vi/hw15UJGQmxg7kVkn8TUoE6smftX3eg=="}],"version":"0303","random":"5d4b0fc183f43ce9fdf74b73b59249f080cd18495eb603ffa0a3674480ce68a3","selected_cipher_suite":"c02f","compression_method":"00"}},"reassembly_properties":{"reassembled":true},"src_ip":"17.178.96.59","dst_ip":"192.168.113.237","protocol":6,"src_port":443,"dst_port":47956,"event_start":1565200321.283427} -{"ip":{"version":4,"ttl":64,"id":"ced4"},"dns":{"base64":"xd4BAAABAAAAAAAAA3d3dwVhcHBsZQNjb20AAAEAAQ=="},"src_ip":"192.168.113.237","dst_ip":"192.168.113.2","protocol":17,"src_port":37364,"dst_port":53,"event_start":1565200321.512636} -{"ip":{"version":4,"ttl":64,"id":"ced5"},"dns":{"base64":"J3EBAAABAAAAAAAAA3d3dwVhcHBsZQNjb20AABwAAQ=="},"src_ip":"192.168.113.237","dst_ip":"192.168.113.2","protocol":17,"src_port":56935,"dst_port":53,"event_start":1565200321.512806} -{"ip":{"version":4,"ttl":128,"id":"99df"},"dns":{"base64":"J3GBgAABAAUADQABA3d3dwVhcHBsZQNjb20AABwAAcAMAAUAAQAAAAUAGwN3d3cFYXBwbGUDY29tB2VkZ2VrZXkDbmV0AMArAAUAAQAAAAUALwN3d3cFYXBwbGUDY29tB2VkZ2VrZXkDbmV0C2dsb2JhbHJlZGlyBmFrYWRuc8BBwFIABQABAAAABQAZBWU2ODU4BWRzY2U5CmFrYW1haWVkZ2XAQcCNABwAAQAAAAUAECYAFB4AAgGYAAAAAAAAGsrAjQAcAAEAAAAFABAmABQeAAIBhAAAAAAAABrKwJkAAgABAAAABQAKB25zNy0xOTTAmcCZAAIAAQAAAAUACgdhMTItMTkywJnAmQACAAEAAAAFAAoHYTI4LTE5MsCZwJkAAgABAAAABQAKB25zNS0xOTTAmcCZAAIAAQAAAAUACgduczYtMTk0wJnAmQACAAEAAAAFAAYDbGExwJnAmQACAAEAAAAFAAoHbnMzLTE5NMCZwJkAAgABAAAABQAJBmExLTE5MsCZwJkAAgABAAAABQAKB2ExMy0xOTLAmcCZAAIAAQAAAAUABwRsYXIywJnAmQACAAEAAAAFAAYDbGEzwJnAmQACAAEAAAAFAAkGYTYtMTkywJnAmQACAAEAAAAFAAoHYTExLTE5MsCZwVgAAQABAAAABQAEuBqhwA=="},"src_ip":"192.168.113.2","dst_ip":"192.168.113.237","protocol":17,"src_port":53,"dst_port":56935,"event_start":1565200321.548794} -{"ip":{"version":4,"ttl":128,"id":"99e0"},"dns":{"base64":"xd6BgAABAAQADQAGA3d3dwVhcHBsZQNjb20AAAEAAcAMAAUAAQAAAAUAGwN3d3cFYXBwbGUDY29tB2VkZ2VrZXkDbmV0AMArAAUAAQAAAAUALwN3d3cFYXBwbGUDY29tB2VkZ2VrZXkDbmV0C2dsb2JhbHJlZGlyBmFrYWRuc8BBwFIABQABAAAABQAZBWU2ODU4BWRzY2U5CmFrYW1haWVkZ2XAQcCNAAEAAQAAAAUABLgzga7AQQACAAEAAAAFABEBZgxndGxkLXNlcnZlcnPAQcBBAAIAAQAAAAUABAFtwMTAQQACAAEAAAAFAAQBZcDEwEEAAgABAAAABQAEAWLAxMBBAAIAAQAAAAUABAFhwMTAQQACAAEAAAAFAAQBbMDEwEEAAgABAAAABQAEAWjAxMBBAAIAAQAAAAUABAFpwMTAQQACAAEAAAAFAAQBa8DEwEEAAgABAAAABQAEAWTAxMBBAAIAAQAAAAUABAFqwMTAQQACAAEAAAAFAAQBZ8DEwEEAAgABAAAABQAEAWPAxMEPAAEAAQAAAAUABMAFBh7A/wABAAEAAAAFAATAIQ4ewY8AAQABAAAABQAEwBpcHsFfAAEAAQAAAAUABMAfUB7A7wABAAEAAAAFAATADF4ewMIAAQABAAAABQAEwCMzHg=="},"src_ip":"192.168.113.2","dst_ip":"192.168.113.237","protocol":17,"src_port":53,"dst_port":37364,"event_start":1565200321.548812} -{"ip":{"version":4,"ttl":64,"id":"4d02"},"fingerprints":{"tcp":"tcp/(40)()(40)(faf0)((020405b4)(04)(08)(01)(030307))"},"tcp":{"seq":4216949584,"timestamp":{"ts_val":666308825}},"src_ip":"192.168.113.237","dst_ip":"184.51.129.174","protocol":6,"src_port":50196,"dst_port":443,"event_start":1565200321.549929} -{"ip":{"version":4,"ttl":128,"id":"99e1"},"fingerprints":{"tcp_server":"tcp_server/(40)()(80)(faf0)((020405b4))"},"tcp_server":{"seq":1399490350},"src_ip":"184.51.129.174","dst_ip":"192.168.113.237","protocol":6,"src_port":443,"dst_port":50196,"event_start":1565200321.585408} -{"ip":{"version":4,"ttl":64,"id":"4d04"},"fingerprints":{"tls":"tls/(0303)(130213031301c02cc030009fcca9cca8ccaac02bc02f009ec024c028006bc023c0270067c00ac0140039c009c0130033009d009c003d003c0035002f00ff)((0000)(000b000403000102)(000a000c000a001d0017001e00190018)(0023)(0016)(0017)(000d0030002e040305030603080708080809080a080b080408050806040105010601030302030301020103020202040205020602)(002b0009080304030303020301)(002d00020101)(0033))"},"tls":{"client":{"version":"0303","random":"b33e4e1a33c8204b94e704f8498a2512dde96b5a7867334ac94a2cbbea12911c","session_id":"a19d9ddbd41479e6df1bd4ccedea1eacbb607b53941e588341572224a9d35b75","cipher_suites":"130213031301c02cc030009fcca9cca8ccaac02bc02f009ec024c028006bc023c0270067c00ac0140039c009c0130033009d009c003d003c0035002f00ff","compression_methods":"00","server_name":"www.apple.com","session_ticket":"","features":"[\"0303\",\"130213031301c02cc030009fcca9cca8ccaac02bc02f009ec024c028006bc023c0270067c00ac0140039c009c0130033009d009c003d003c0035002f00ff\",[[\"0000\",\"001000000d7777772e6170706c652e636f6d\"],[\"000b\",\"03000102\"],[\"000a\",\"000a001d0017001e00190018\"],[\"0023\",\"\"],[\"0016\",\"\"],[\"0017\",\"\"],[\"000d\",\"002e040305030603080708080809080a080b080408050806040105010601030302030301020103020202040205020602\"],[\"002b\",\"080304030303020301\"],[\"002d\",\"0101\"],[\"0033\",\"0024001d002013a4af48a5b3d8f4ee0d73b2c581b8ab96fab3df1ae41ca74266ca7f8e137613\"]]]"}},"src_ip":"192.168.113.237","dst_ip":"184.51.129.174","protocol":6,"src_port":50196,"dst_port":443,"event_start":1565200321.585675} -{"ip":{"version":4,"ttl":128,"id":"99e5"},"fingerprints":{"tls_server":"tls_server/(0303)(c030)((ff01)(0000)(000b000403000102)(0023))"},"tls":{"server":{"certs":[{"base64":"MIIG8TCCBdmgAwIBAgIQD45OTJz1XqX+Lpsrfv/ejzANBgkqhkiG9w0BAQsFADB1MQswCQYDVQQGEwJVUzEVMBMGA1UEChMMRGlnaUNlcnQgSW5jMRkwFwYDVQQLExB3d3cuZGlnaWNlcnQuY29tMTQwMgYDVQQDEytEaWdpQ2VydCBTSEEyIEV4dGVuZGVkIFZhbGlkYXRpb24gU2VydmVyIENBMB4XDTE5MDMwNzAwMDAwMFoXDTIwMDMwNzEyMDAwMFowge4xHTAbBgNVBA8MFFByaXZhdGUgT3JnYW5pemF0aW9uMRMwEQYLKwYBBAGCNzwCAQMTAlVTMRswGQYLKwYBBAGCNzwCAQITCkNhbGlmb3JuaWExETAPBgNVBAUTCEMwODA2NTkyMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTESMBAGA1UEBxMJQ3VwZXJ0aW5vMRMwEQYDVQQKEwpBcHBsZSBJbmMuMSUwIwYDVQQLExxJbnRlcm5ldCBTZXJ2aWNlcyBmb3IgQWthbWFpMRYwFAYDVQQDEw13d3cuYXBwbGUuY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEA7V5dxoW+5Sp4eh93H0IX6sHjda7JOHrgz5/rukdCz2N1JtNMjmwvx7wcuzfJpaDTj+o9AsjoBqGnK0x7kVW8UavnyLiopkk+lEXxAJAmubWvtaAiQSwQUovZ8JHlQHZg/cKx/tBVw08YfSAADItBLC3BCsDhLt74R4SyNk4DX3eQ9vVg2KolEOs3OAN/S0Y2di5m/hjkmzHs1SrbYJDXoNWreZwB9qyHiHNDCOBI8AmsQUBg5JynzL0vx10yMi5C12kvRjDTbhe6HKa6vLViU4nHSu+5+A8lL7R6XAX75P0TRxv/YG9A8g8tUzg/IYdNCLEb09qr1Z6UaUOjol7x6QIDAQABo4IDATCCAv0wHwYDVR0jBBgwFoAUPdNQpdagre7zSmAKZdMh1Pj41g8wHQYDVR0OBBYEFNj1/23cljBcrYB1/87F950Wc8sWMCoGA1UdEQQjMCGCEGltYWdlcy5hcHBsZS5jb22CDXd3dy5hcHBsZS5jb20wDgYDVR0PAQH/BAQDAgWgMB0GA1UdJQQWMBQGCCsGAQUFBwMBBggrBgEFBQcDAjB1BgNVHR8EbjBsMDSgMqAwhi5odHRwOi8vY3JsMy5kaWdpY2VydC5jb20vc2hhMi1ldi1zZXJ2ZXItZzIuY3JsMDSgMqAwhi5odHRwOi8vY3JsNC5kaWdpY2VydC5jb20vc2hhMi1ldi1zZXJ2ZXItZzIuY3JsMEsGA1UdIAREMEIwNwYJYIZIAYb9bAIBMCowKAYIKwYBBQUHAgEWHGh0dHBzOi8vd3d3LmRpZ2ljZXJ0LmNvbS9DUFMwBwYFZ4EMAQEwgYgGCCsGAQUFBwEBBHwwejAkBggrBgEFBQcwAYYYaHR0cDovL29jc3AuZGlnaWNlcnQuY29tMFIGCCsGAQUFBzAChkZodHRwOi8vY2FjZXJ0cy5kaWdpY2VydC5jb20vRGlnaUNlcnRTSEEyRXh0ZW5kZWRWYWxpZGF0aW9uU2VydmVyQ0EuY3J0MAkGA1UdEwQCMAAwggEEBgorBgEEAdZ5AgQCBIH1BIHyAPAAdgC72d+8H4pxtZOUI5eqkntHOFeVCqtS6BqQlmQ2jh7RhQAAAWlYQtEGAAAEAwBHMEUCIGiBDFSIRXrGhLhlm/2cNID2OJHvz1j5/fNQb62OoK3oAiEAzjKdWz2ii7YESO4BJmzTUKHqfyUMACpCbUINE8CphbwAdgBWFAaaL9fC7NP14b1Esj7HRna5vJkRXMDvlJhV1onQ3QAAAWlYQtFEAAAEAwBHMEUCIEvUZFLTUvA+2NQ9xUBy7cMEjDwWRl04ArqiHlKq4dq2AiEAo14va8y5NNmkAHDhOpm0DSVt01l3wpiMaqCup+EGczIwDQYJKoZIhvcNAQELBQADggEBAD/ZoRmzfFalieWiMzPj/Lsp29dpdjEvaZeQoQwRC1rLq0FmspvfcdbckpG2F4vTnIM83HynKV26OJebDQfgRsonX0GgwIQeRwDch3n9rz40wm2xRwxSFIGssmy0MLJBYXcHlgVbJjailMJww83BFawzDWBo+hmVPigU3hkV8ktDqwC/VOOvWikPMsvMvn8HMPbZSeYnH8A7nD0u0WzFtg6NF9xIXB/Bfku6jEPKr5l2iJukaGD6wtOH7zkWjEk2LAn5Byoue2E+dnbvdJalrv9rTPd/lkG+nAlBuooc/cJK4QqofnuomKgBXavv2zaz5pNdJwwmwzOTdK95geXURk4="},{"base64":"MIIEtjCCA56gAwIBAgIQDHmpRLCMEZUgkmFf4msdgzANBgkqhkiG9w0BAQsFADBsMQswCQYDVQQGEwJVUzEVMBMGA1UEChMMRGlnaUNlcnQgSW5jMRkwFwYDVQQLExB3d3cuZGlnaWNlcnQuY29tMSswKQYDVQQDEyJEaWdpQ2VydCBIaWdoIEFzc3VyYW5jZSBFViBSb290IENBMB4XDTEzMTAyMjEyMDAwMFoXDTI4MTAyMjEyMDAwMFowdTELMAkGA1UEBhMCVVMxFTATBgNVBAoTDERpZ2lDZXJ0IEluYzEZMBcGA1UECxMQd3d3LmRpZ2ljZXJ0LmNvbTE0MDIGA1UEAxMrRGlnaUNlcnQgU0hBMiBFeHRlbmRlZCBWYWxpZGF0aW9uIFNlcnZlciBDQTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANdTpARR+JmmFkhLZyeqk0nQOe0MsLAAh/FnKIaFjI5j2ryxQDji0/XspQUYuD0+xZkXMuwYjPrxDKZkIYXLBxA0sFKIKx9om9KxjxKws9LniB8f7zh3VFNfgHk/LhqqqB5LKw2rt2O5Nbd9FLxZS99RStKh4gzikIKHaq7q12TWmFXo/a8aUGxUvBHy/Urynbt/DvTVvo4WiRJV2MBxNO723C3sxIclho3YIeSwTQyJ3DkmF93215SF2AQhcJ1vb/9cuhnhRctWVyh+HA1BV6q3uCe7seT6Ku8hI3UarS2bhjWMnHe1c63YlC3k8wyd7sFOYn4XwHGeLN7x+RAoGTMCAwEAAaOCAUkwggFFMBIGA1UdEwEB/wQIMAYBAf8CAQAwDgYDVR0PAQH/BAQDAgGGMB0GA1UdJQQWMBQGCCsGAQUFBwMBBggrBgEFBQcDAjA0BggrBgEFBQcBAQQoMCYwJAYIKwYBBQUHMAGGGGh0dHA6Ly9vY3NwLmRpZ2ljZXJ0LmNvbTBLBgNVHR8ERDBCMECgPqA8hjpodHRwOi8vY3JsNC5kaWdpY2VydC5jb20vRGlnaUNlcnRIaWdoQXNzdXJhbmNlRVZSb290Q0EuY3JsMD0GA1UdIAQ2MDQwMgYEVR0gADAqMCgGCCsGAQUFBwIBFhxodHRwczovL3d3dy5kaWdpY2VydC5jb20vQ1BTMB0GA1UdDgQWBBQ901Cl1qCt7vNKYApl0yHU+PjWDzAfBgNVHSMEGDAWgBSxPsNpA/i/RwHUmCYaCALvY2QrwzANBgkqhkiG9w0BAQsFAAOCAQEAnbbQkIbhhgLtxaDwNBx0wY12zIYKqPBKikLWP8ipTa18CK3mtlC4ohpNiAexKSHc59rGPCHg4xFJcKx6HQGkyhE6V6t9VypAdP3THYUYUN9XR3WhfVUgLkc3UHKMf4Ib0mKPLQNa2sPIoc4sUqIAY+tzunHISScjl2SFnjgOrWNoPLpSgVh5oywM395t6zHyuqB8bPEs1OG9d4Q3A84ytciagRpKkk47RpqF/oOi+Z6Mo8wNXrM9zwR4jxQUezKcxwCmXMS1oVWNWlZopCJwqjyBcdmdqEU79OX2olHdx3ti6G8MdOu42vi/hw15UJGQmxg7kVkn8TUoE6smftX3eg=="}],"version":"0303","random":"003648961a96fa52c7c8c80c1992c1587f277cdd9e294cd0f8cd090ee1c92ac5","selected_cipher_suite":"c030","compression_method":"00","session_ticket":""}},"reassembly_properties":{"reassembled":true},"src_ip":"184.51.129.174","dst_ip":"192.168.113.237","protocol":6,"src_port":443,"dst_port":50196,"event_start":1565200321.628488} -{"ip":{"version":4,"ttl":64,"id":"ceed"},"dns":{"base64":"gpYBAAABAAAAAAAABHBsdXMGZ29vZ2xlA2NvbQAAAQAB"},"src_ip":"192.168.113.237","dst_ip":"192.168.113.2","protocol":17,"src_port":49368,"dst_port":53,"event_start":1565200321.807857} -{"ip":{"version":4,"ttl":64,"id":"ceee"},"dns":{"base64":"/zMBAAABAAAAAAAABHBsdXMGZ29vZ2xlA2NvbQAAHAAB"},"src_ip":"192.168.113.237","dst_ip":"192.168.113.2","protocol":17,"src_port":50088,"dst_port":53,"event_start":1565200321.808041} -{"ip":{"version":4,"ttl":128,"id":"9a1a"},"dns":{"base64":"/zOBgAABAAEADQANBHBsdXMGZ29vZ2xlA2NvbQAAHAABwAwAHAABAAAABQAQJgf4sEAECBAAAAAAAAAgDsAYAAIAAQAAAAUAFAFhDGd0bGQtc2VydmVycwNuZXQAwBgAAgABAAAABQAEAWrAS8AYAAIAAQAAAAUABAFpwEvAGAACAAEAAAAFAAQBbMBLwBgAAgABAAAABQAEAWfAS8AYAAIAAQAAAAUABAFiwEvAGAACAAEAAAAFAAQBZcBLwBgAAgABAAAABQAEAWTAS8AYAAIAAQAAAAUABAFowEvAGAACAAEAAAAFAAQBY8BLwBgAAgABAAAABQAEAW3AS8AYAAIAAQAAAAUABAFrwEvAGAACAAEAAAAFAAQBZsBLwEkAAQABAAAABQAEwAUGHsCpAAEAAQAAAAUABMAhDh7A6QABAAEAAAAFAATAGlwewMkAAQABAAAABQAEwB9QHsC5AAEAAQAAAAUABMAMXh7BGQABAAEAAAAFAATAIzMewJkAAQABAAAABQAEwCpdHsDZAAEAAQAAAAUABMA2cB7AeQABAAEAAAAFAATAK6wewGkAAQABAAAABQAEwDBPHsEJAAEAAQAAAAUABMA0sh7AiQABAAEAAAAFAATAKaIewPkAAQABAAAABQAEwDdTHg=="},"src_ip":"192.168.113.2","dst_ip":"192.168.113.237","protocol":17,"src_port":53,"dst_port":50088,"event_start":1565200321.844081} -{"ip":{"version":4,"ttl":128,"id":"9a1b"},"dns":{"base64":"gpaBgAABAAEADQAOBHBsdXMGZ29vZ2xlA2NvbQAAAQABwAwAAQABAAAABQAErNkPTsAYAAIAAQAAAAUAFAFtDGd0bGQtc2VydmVycwNuZXQAwBgAAgABAAAABQAEAWbAP8AYAAIAAQAAAAUABAFswD/AGAACAAEAAAAFAAQBYcA/wBgAAgABAAAABQAEAWnAP8AYAAIAAQAAAAUABAFlwD/AGAACAAEAAAAFAAQBY8A/wBgAAgABAAAABQAEAWfAP8AYAAIAAQAAAAUABAFowD/AGAACAAEAAAAFAAQBYsA/wBgAAgABAAAABQAEAWTAP8AYAAIAAQAAAAUABAFqwD/AGAACAAEAAAAFAAQBa8A/wH0AAQABAAAABQAEwAUGHsDdAAEAAQAAAAUABMAhDh7ArQABAAEAAAAFAATAGlwewO0AAQABAAAABQAEwB9QHsCdAAEAAQAAAAUABMAMXh7AXQABAAEAAAAFAATAIzMewL0AAQABAAAABQAEwCpdHsDNAAEAAQAAAAUABMA2cB7AjQABAAEAAAAFAATAK6wewP0AAQABAAAABQAEwDBPHsENAAEAAQAAAAUABMA0sh7AbQABAAEAAAAFAATAKaIewD0AAQABAAAABQAEwDdTHsB9ABwAAQAAAAUAECABBQOoPgAAAAAAAAACADA="},"src_ip":"192.168.113.2","dst_ip":"192.168.113.237","protocol":17,"src_port":53,"dst_port":49368,"event_start":1565200321.844379} -{"ip":{"version":4,"ttl":64,"id":"09e8"},"fingerprints":{"tcp":"tcp/(40)()(40)(faf0)((020405b4)(04)(08)(01)(030307))"},"tcp":{"seq":3537948531,"timestamp":{"ts_val":3222377940}},"src_ip":"192.168.113.237","dst_ip":"172.217.15.78","protocol":6,"src_port":38824,"dst_port":443,"event_start":1565200321.844698} -{"ip":{"version":4,"ttl":128,"id":"9a1c"},"fingerprints":{"tcp_server":"tcp_server/(40)()(80)(faf0)((020405b4))"},"tcp_server":{"seq":1836631840},"src_ip":"172.217.15.78","dst_ip":"192.168.113.237","protocol":6,"src_port":443,"dst_port":38824,"event_start":1565200321.884212} -{"ip":{"version":4,"ttl":64,"id":"09ea"},"fingerprints":{"tls":"tls/(0303)(130213031301c02cc030009fcca9cca8ccaac02bc02f009ec024c028006bc023c0270067c00ac0140039c009c0130033009d009c003d003c0035002f00ff)((0000)(000b000403000102)(000a000c000a001d0017001e00190018)(0023)(0016)(0017)(000d0030002e040305030603080708080809080a080b080408050806040105010601030302030301020103020202040205020602)(002b0009080304030303020301)(002d00020101)(0033))"},"tls":{"client":{"version":"0303","random":"c928b52d51d22a09d8725a96338eb72bfc1723d797993420686fb3b635c3c32f","session_id":"8341541c1a8c7c5278ac3d1c3a39085d4c5c19b6e116441bd969dc65dad15365","cipher_suites":"130213031301c02cc030009fcca9cca8ccaac02bc02f009ec024c028006bc023c0270067c00ac0140039c009c0130033009d009c003d003c0035002f00ff","compression_methods":"00","server_name":"plus.google.com","session_ticket":"","features":"[\"0303\",\"130213031301c02cc030009fcca9cca8ccaac02bc02f009ec024c028006bc023c0270067c00ac0140039c009c0130033009d009c003d003c0035002f00ff\",[[\"0000\",\"001200000f706c75732e676f6f676c652e636f6d\"],[\"000b\",\"03000102\"],[\"000a\",\"000a001d0017001e00190018\"],[\"0023\",\"\"],[\"0016\",\"\"],[\"0017\",\"\"],[\"000d\",\"002e040305030603080708080809080a080b080408050806040105010601030302030301020103020202040205020602\"],[\"002b\",\"080304030303020301\"],[\"002d\",\"0101\"],[\"0033\",\"0024001d0020a9445473edce2a37860c07d18bec5e5a4e61d19317405323b0c75c4095271546\"]]]"}},"src_ip":"192.168.113.237","dst_ip":"172.217.15.78","protocol":6,"src_port":38824,"dst_port":443,"event_start":1565200321.884634} -{"ip":{"version":4,"ttl":128,"id":"9a1e"},"fingerprints":{"tls_server":"tls_server/(0303)(1302)((0033)(002b00020304))"},"tls":{"server":{"version":"0303","random":"192a68c2d0163403d380912d7d6e022b58ef362a4d84cb7bb64ed2db194a9d49","selected_cipher_suite":"1302","compression_method":"00"}},"src_ip":"172.217.15.78","dst_ip":"192.168.113.237","protocol":6,"src_port":443,"dst_port":38824,"event_start":1565200321.934416} -{"ip":{"version":4,"ttl":64,"id":"cf1d"},"dns":{"base64":"eDwBAAABAAAAAAAACGFjY291bnRzBmdvb2dsZQNjb20AAAEAAQ=="},"src_ip":"192.168.113.237","dst_ip":"192.168.113.2","protocol":17,"src_port":39152,"dst_port":53,"event_start":1565200322.061311} -{"ip":{"version":4,"ttl":64,"id":"cf1e"},"dns":{"base64":"vTUBAAABAAAAAAAACGFjY291bnRzBmdvb2dsZQNjb20AABwAAQ=="},"src_ip":"192.168.113.237","dst_ip":"192.168.113.2","protocol":17,"src_port":51559,"dst_port":53,"event_start":1565200322.061512} -{"ip":{"version":4,"ttl":128,"id":"9a28"},"dns":{"base64":"vTWBgAABAAEADQANCGFjY291bnRzBmdvb2dsZQNjb20AABwAAcAMABwAAQAAAAUAECYH+LBABAgUAAAAAAAAIA3AHAACAAEAAAAFABQBZgxndGxkLXNlcnZlcnMDbmV0AMAcAAIAAQAAAAUABAFowE/AHAACAAEAAAAFAAQBY8BPwBwAAgABAAAABQAEAWHAT8AcAAIAAQAAAAUABAFswE/AHAACAAEAAAAFAAQBZcBPwBwAAgABAAAABQAEAWrAT8AcAAIAAQAAAAUABAFkwE/AHAACAAEAAAAFAAQBbcBPwBwAAgABAAAABQAEAWfAT8AcAAIAAQAAAAUABAFiwE/AHAACAAEAAAAFAAQBacBPwBwAAgABAAAABQAEAWvAT8CNAAEAAQAAAAUABMAFBh7A/QABAAEAAAAFAATAIQ4ewH0AAQABAAAABQAEwBpcHsDNAAEAAQAAAAUABMAfUB7ArQABAAEAAAAFAATADF4ewE0AAQABAAAABQAEwCMzHsDtAAEAAQAAAAUABMAqXR7AbQABAAEAAAAFAATANnAewQ0AAQABAAAABQAEwCusHsC9AAEAAQAAAAUABMAwTx7BHQABAAEAAAAFAATANLIewJ0AAQABAAAABQAEwCmiHsDdAAEAAQAAAAUABMA3Ux4="},"src_ip":"192.168.113.2","dst_ip":"192.168.113.237","protocol":17,"src_port":53,"dst_port":51559,"event_start":1565200322.111139} -{"ip":{"version":4,"ttl":128,"id":"9a29"},"dns":{"base64":"eDyBgAABAAEADQANCGFjY291bnRzBmdvb2dsZQNjb20AAAEAAcAMAAEAAQAAAAUABKzZpI3AHAACAAEAAAAFABQBagxndGxkLXNlcnZlcnMDbmV0AMAcAAIAAQAAAAUABAFiwEPAHAACAAEAAAAFAAQBZsBDwBwAAgABAAAABQAEAWTAQ8AcAAIAAQAAAAUABAFowEPAHAACAAEAAAAFAAQBa8BDwBwAAgABAAAABQAEAWfAQ8AcAAIAAQAAAAUABAFpwEPAHAACAAEAAAAFAAQBYcBDwBwAAgABAAAABQAEAWzAQ8AcAAIAAQAAAAUABAFjwEPAHAACAAEAAAAFAAQBbcBDwBwAAgABAAAABQAEAWXAQ8DRAAEAAQAAAAUABMAFBh7AYQABAAEAAAAFAATAIQ4ewPEAAQABAAAABQAEwBpcHsCBAAEAAQAAAAUABMAfUB7BEQABAAEAAAAFAATADF4ewHEAAQABAAAABQAEwCMzHsCxAAEAAQAAAAUABMAqXR7AkQABAAEAAAAFAATANnAewMEAAQABAAAABQAEwCusHsBBAAEAAQAAAAUABMAwTx7AoQABAAEAAAAFAATANLIewOEAAQABAAAABQAEwCmiHsEBAAEAAQAAAAUABMA3Ux4="},"src_ip":"192.168.113.2","dst_ip":"192.168.113.237","protocol":17,"src_port":53,"dst_port":39152,"event_start":1565200322.115491} -{"ip":{"version":4,"ttl":64,"id":"1bca"},"fingerprints":{"tcp":"tcp/(40)()(40)(faf0)((020405b4)(04)(08)(01)(030307))"},"tcp":{"seq":3915701525,"timestamp":{"ts_val":1676988521}},"src_ip":"192.168.113.237","dst_ip":"172.217.164.141","protocol":6,"src_port":56988,"dst_port":443,"event_start":1565200322.115771} -{"ip":{"version":4,"ttl":128,"id":"9a2a"},"fingerprints":{"tcp_server":"tcp_server/(40)()(80)(faf0)((020405b4))"},"tcp_server":{"seq":977773468},"src_ip":"172.217.164.141","dst_ip":"192.168.113.237","protocol":6,"src_port":443,"dst_port":56988,"event_start":1565200322.155366} -{"ip":{"version":4,"ttl":64,"id":"1bcc"},"fingerprints":{"tls":"tls/(0303)(130213031301c02cc030009fcca9cca8ccaac02bc02f009ec024c028006bc023c0270067c00ac0140039c009c0130033009d009c003d003c0035002f00ff)((0000)(000b000403000102)(000a000c000a001d0017001e00190018)(0023)(0016)(0017)(000d0030002e040305030603080708080809080a080b080408050806040105010601030302030301020103020202040205020602)(002b0009080304030303020301)(002d00020101)(0033))"},"tls":{"client":{"version":"0303","random":"b6485be724383ef9ac81d8bc51995ead11c16b954c79fc4417cfc95207fcd7fb","session_id":"63a82af4e84b4bd3e591b4ae7cc18b98ba17079f5d453a427e36baaaeab50c97","cipher_suites":"130213031301c02cc030009fcca9cca8ccaac02bc02f009ec024c028006bc023c0270067c00ac0140039c009c0130033009d009c003d003c0035002f00ff","compression_methods":"00","server_name":"accounts.google.com","session_ticket":"","features":"[\"0303\",\"130213031301c02cc030009fcca9cca8ccaac02bc02f009ec024c028006bc023c0270067c00ac0140039c009c0130033009d009c003d003c0035002f00ff\",[[\"0000\",\"00160000136163636f756e74732e676f6f676c652e636f6d\"],[\"000b\",\"03000102\"],[\"000a\",\"000a001d0017001e00190018\"],[\"0023\",\"\"],[\"0016\",\"\"],[\"0017\",\"\"],[\"000d\",\"002e040305030603080708080809080a080b080408050806040105010601030302030301020103020202040205020602\"],[\"002b\",\"080304030303020301\"],[\"002d\",\"0101\"],[\"0033\",\"0024001d00201e555491cc0242c0953ca912855820368a58ac54645bc8632cdd57ed92fea327\"]]]"}},"src_ip":"192.168.113.237","dst_ip":"172.217.164.141","protocol":6,"src_port":56988,"dst_port":443,"event_start":1565200322.155639} -{"ip":{"version":4,"ttl":128,"id":"9a2c"},"fingerprints":{"tls_server":"tls_server/(0303)(1302)((0033)(002b00020304))"},"tls":{"server":{"version":"0303","random":"9c41c355ab498d066eee83ca65b04f4451d832099205c268773871fd7cde9f65","selected_cipher_suite":"1302","compression_method":"00"}},"src_ip":"172.217.164.141","dst_ip":"192.168.113.237","protocol":6,"src_port":443,"dst_port":56988,"event_start":1565200322.206517} -{"ip":{"version":4,"ttl":64,"id":"cf63"},"dns":{"base64":"mjsBAAABAAAAAAAABWFkb2JlA2NvbQAAAQAB"},"src_ip":"192.168.113.237","dst_ip":"192.168.113.2","protocol":17,"src_port":33679,"dst_port":53,"event_start":1565200322.506985} -{"ip":{"version":4,"ttl":64,"id":"cf64"},"dns":{"base64":"cD0BAAABAAAAAAAABWFkb2JlA2NvbQAAHAAB"},"src_ip":"192.168.113.237","dst_ip":"192.168.113.2","protocol":17,"src_port":58319,"dst_port":53,"event_start":1565200322.507159} -{"ip":{"version":4,"ttl":128,"id":"9a65"},"dns":{"base64":"cD2BgAABAAAAAQAABWFkb2JlA2NvbQAAHAABwAwABgABAAAABQAwDGFkb2JlLWRucy0wMcAMCmhvc3RtYXN0ZXLADAAAF30AAAcIAAACWAAk6gAAAAEs"},"src_ip":"192.168.113.2","dst_ip":"192.168.113.237","protocol":17,"src_port":53,"dst_port":58319,"event_start":1565200322.541163} -{"ip":{"version":4,"ttl":128,"id":"9a66"},"dns":{"base64":"mjuBgAABAAIADQANBWFkb2JlA2NvbQAAAQABwAwAAQABAAAABQAEwWjXOsAMAAEAAQAAAAUABMCTgszAEgACAAEAAAAFABQBZgxndGxkLXNlcnZlcnMDbmV0AMASAAIAAQAAAAUABAFowEnAEgACAAEAAAAFAAQBbcBJwBIAAgABAAAABQAEAWLAScASAAIAAQAAAAUABAFlwEnAEgACAAEAAAAFAAQBasBJwBIAAgABAAAABQAEAWvAScASAAIAAQAAAAUABAFkwEnAEgACAAEAAAAFAAQBacBJwBIAAgABAAAABQAEAWHAScASAAIAAQAAAAUABAFjwEnAEgACAAEAAAAFAAQBbMBJwBIAAgABAAAABQAEAWfAScDnAAEAAQAAAAUABMAFBh7AhwABAAEAAAAFAATAIQ4ewPcAAQABAAAABQAEwBpcHsDHAAEAAQAAAAUABMAfUB7AlwABAAEAAAAFAATADF4ewEcAAQABAAAABQAEwCMzHsEXAAEAAQAAAAUABMAqXR7AZwABAAEAAAAFAATANnAewNcAAQABAAAABQAEwCusHsCnAAEAAQAAAAUABMAwTx7AtwABAAEAAAAFAATANLIewQcAAQABAAAABQAEwCmiHsB3AAEAAQAAAAUABMA3Ux4="},"src_ip":"192.168.113.2","dst_ip":"192.168.113.237","protocol":17,"src_port":53,"dst_port":33679,"event_start":1565200322.541182} -{"ip":{"version":4,"ttl":64,"id":"f81f"},"fingerprints":{"tcp":"tcp/(40)()(40)(faf0)((020405b4)(04)(08)(01)(030307))"},"tcp":{"seq":1858420565,"timestamp":{"ts_val":1202247453}},"src_ip":"192.168.113.237","dst_ip":"193.104.215.58","protocol":6,"src_port":60736,"dst_port":443,"event_start":1565200322.541707} -{"ip":{"version":4,"ttl":128,"id":"9a67"},"fingerprints":{"tcp_server":"tcp_server/(40)()(80)(faf0)((020405b4))"},"tcp_server":{"seq":488071443},"src_ip":"193.104.215.58","dst_ip":"192.168.113.237","protocol":6,"src_port":443,"dst_port":60736,"event_start":1565200322.673846} -{"ip":{"version":4,"ttl":64,"id":"f821"},"fingerprints":{"tls":"tls/(0303)(130213031301c02cc030009fcca9cca8ccaac02bc02f009ec024c028006bc023c0270067c00ac0140039c009c0130033009d009c003d003c0035002f00ff)((0000)(000b000403000102)(000a000c000a001d0017001e00190018)(0023)(0016)(0017)(000d0030002e040305030603080708080809080a080b080408050806040105010601030302030301020103020202040205020602)(002b0009080304030303020301)(002d00020101)(0033))"},"tls":{"client":{"version":"0303","random":"df7934df9ee8dd9c27a0d6ead5b2f47efc65cae8bfd546d18a7f5b7c825a221c","session_id":"5cde22c190030bf2f95a48be185a7d6b3cf82adf7bddb2feab3f6b5a159dc424","cipher_suites":"130213031301c02cc030009fcca9cca8ccaac02bc02f009ec024c028006bc023c0270067c00ac0140039c009c0130033009d009c003d003c0035002f00ff","compression_methods":"00","server_name":"adobe.com","session_ticket":"","features":"[\"0303\",\"130213031301c02cc030009fcca9cca8ccaac02bc02f009ec024c028006bc023c0270067c00ac0140039c009c0130033009d009c003d003c0035002f00ff\",[[\"0000\",\"000c00000961646f62652e636f6d\"],[\"000b\",\"03000102\"],[\"000a\",\"000a001d0017001e00190018\"],[\"0023\",\"\"],[\"0016\",\"\"],[\"0017\",\"\"],[\"000d\",\"002e040305030603080708080809080a080b080408050806040105010601030302030301020103020202040205020602\"],[\"002b\",\"080304030303020301\"],[\"002d\",\"0101\"],[\"0033\",\"0024001d0020d80b8a18cc803147148e087943847b3d267727668a757d71ba17e6ef21ee6f65\"]]]"}},"src_ip":"192.168.113.237","dst_ip":"193.104.215.58","protocol":6,"src_port":60736,"dst_port":443,"event_start":1565200322.674115} -{"ip":{"version":4,"ttl":128,"id":"9a6b"},"fingerprints":{"tls_server":"tls_server/(0303)(c030)((ff01)(000a000400020017)(000b00020100))"},"tls":{"server":{"certs":[{"base64":"MIIGLzCCBRegAwIBAgIQBLgdEPzovoRDZiFcyFagRzANBgkqhkiG9w0BAQsFADBNMQswCQYDVQQGEwJVUzEVMBMGA1UEChMMRGlnaUNlcnQgSW5jMScwJQYDVQQDEx5EaWdpQ2VydCBTSEEyIFNlY3VyZSBTZXJ2ZXIgQ0EwHhcNMTcxMjAxMDAwMDAwWhcNMTkxMjA2MTIwMDAwWjCBmjELMAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExETAPBgNVBAcTCFNhbiBKb3NlMSMwIQYDVQQKExpBZG9iZSBTeXN0ZW1zIEluY29ycG9yYXRlZDEhMB8GA1UECxMYSVQgTG9hZCBCYWxhbmNlciBTZXJ2aWNlMRswGQYDVQQDExJyZWRpcmVjdC5hZG9iZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDQ+AXhfq3SFNOkC/hISYptY/6WjBD8HyijBSxrMRcAk+k7CeE3LYMDzKZR8/Zir91LSgrDNI5XscKxdGHRC7kYHZpSLwGjkficBCOj+7RKhyzYErI6Q+M2NjeYz2+enCzFo2CLhymNDBHpzL1jTAokdOV1CB4oeo0WJoLNLXXG/H7QdNCpEgt1RwWO/xO6/ZAVyHe8UOHJ0xS09NXGVV/8prkTPtZZOyjEPdMxInYGWjuSCLcaRUE+1wfjSErUwiUOMWR2M1DjuunAy+tD0pXnWcR186H4iWQJ66bc0ihsm6zIo2v9b6cm0vvT+zV7zCNwMzrHrq8mYuA5lAQS0fLbAgMBAAGjggK7MIICtzAfBgNVHSMEGDAWgBQPgGEcgjFh1S8o541GOLQs4cbZ4jAdBgNVHQ4EFgQUVNfxXsNkIlFAdWmRw+BrlbXXo5owgf4GA1UdEQSB9jCB84IScmVkaXJlY3QuYWRvYmUuY29tghl0cmlnZ2VyY2FtcGFpZ24uYWRvYmUuY29tghJjYW1wYWlnbi5hZG9iZS5jb22CFnd3dy5lY2hvc2lnbi5hZG9iZS5jb22CEmVjaG9zaWduLmFkb2JlLmNvbYIVY29tbXVuaXRpZXMuYWRvYmUuY29tgg5lcmVnLmFkb2JlLmNvbYIWd3d3LmNyZWF0aXZlLmFkb2JlLmNvbYIJYWRvYmUuY29tghJ3aWtpZG9jcy5hZG9iZS5jb22CE3RyYW5zbGF0ZS5hZG9iZS5jb22CD3RydXN0LmFkb2JlLmNvbTAOBgNVHQ8BAf8EBAMCBaAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMGsGA1UdHwRkMGIwL6AtoCuGKWh0dHA6Ly9jcmwzLmRpZ2ljZXJ0LmNvbS9zc2NhLXNoYTItZzYuY3JsMC+gLaArhilodHRwOi8vY3JsNC5kaWdpY2VydC5jb20vc3NjYS1zaGEyLWc2LmNybDBMBgNVHSAERTBDMDcGCWCGSAGG/WwBATAqMCgGCCsGAQUFBwIBFhxodHRwczovL3d3dy5kaWdpY2VydC5jb20vQ1BTMAgGBmeBDAECAjB8BggrBgEFBQcBAQRwMG4wJAYIKwYBBQUHMAGGGGh0dHA6Ly9vY3NwLmRpZ2ljZXJ0LmNvbTBGBggrBgEFBQcwAoY6aHR0cDovL2NhY2VydHMuZGlnaWNlcnQuY29tL0RpZ2lDZXJ0U0hBMlNlY3VyZVNlcnZlckNBLmNydDAMBgNVHRMBAf8EAjAAMA0GCSqGSIb3DQEBCwUAA4IBAQB9/prkxMFbQ9c1ZU8AWEtaUYGrdBMxwUZ/0z3KJaQA26/tsaWnKmTE0819bNhbKzyNnBAJqY670FLLiNnH1uPhLtSKFIK08j6+3gNWV+b1xCsr62oOHaH30T3Z6l1X8mVhsESR77opxYH4qEPKbAijh8xR0nS9mGVTqtOj3sCqWgU3C4JysqHzVeoudR+EmJTGPDcXXiwijaBINOGw6S7/hwqikQQZ9UG3euBAIB9IGoDurpvMmuR+ElFtEZY+Vm3hDIePuM2EN6ahoYYSE4PATAlxDmiQ7Yst7BdCAEyzqxeELmguQ9UyxRWsw9LGy9ZyVt1znk8iiO5a17FT50uc"},{"base64":"MIIElDCCA3ygAwIBAgIQAf2j627KdciIQ4tyS8+8kTANBgkqhkiG9w0BAQsFADBhMQswCQYDVQQGEwJVUzEVMBMGA1UEChMMRGlnaUNlcnQgSW5jMRkwFwYDVQQLExB3d3cuZGlnaWNlcnQuY29tMSAwHgYDVQQDExdEaWdpQ2VydCBHbG9iYWwgUm9vdCBDQTAeFw0xMzAzMDgxMjAwMDBaFw0yMzAzMDgxMjAwMDBaME0xCzAJBgNVBAYTAlVTMRUwEwYDVQQKEwxEaWdpQ2VydCBJbmMxJzAlBgNVBAMTHkRpZ2lDZXJ0IFNIQTIgU2VjdXJlIFNlcnZlciBDQTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANyuWJBNwcQwFZA1W248ghX1LFy949v/cUP6ZCWA1O4Yok3wZtAKc24RmDYXZK83nf36QYSvx6+M/hpzTc8zl5CilodTgyu5pnVILR1WN3vaMTIa16yrBvSqXUu3R0bdKpPDkC55gIDvEwRqFDu1m5K+wgdlTvza/P96rtxcflUxDOg5B6TXvi/TC2rSsd9f/ld0Uzs1gN2ujkSYs58O09rg1/RrKatEp0tYhG2SS4HD2nOLEpdIkARFdRrdNzGXkujNVA075ME/OV4uuPNcfhCOhkEAjUVmR7ChZc6gqikJTvOX6+guqw9ypzAO+sf0/RR3w6RbKFfCs/mC/bdFWJsCAwEAAaOCAVowggFWMBIGA1UdEwEB/wQIMAYBAf8CAQAwDgYDVR0PAQH/BAQDAgGGMDQGCCsGAQUFBwEBBCgwJjAkBggrBgEFBQcwAYYYaHR0cDovL29jc3AuZGlnaWNlcnQuY29tMHsGA1UdHwR0MHIwN6A1oDOGMWh0dHA6Ly9jcmwzLmRpZ2ljZXJ0LmNvbS9EaWdpQ2VydEdsb2JhbFJvb3RDQS5jcmwwN6A1oDOGMWh0dHA6Ly9jcmw0LmRpZ2ljZXJ0LmNvbS9EaWdpQ2VydEdsb2JhbFJvb3RDQS5jcmwwPQYDVR0gBDYwNDAyBgRVHSAAMCowKAYIKwYBBQUHAgEWHGh0dHBzOi8vd3d3LmRpZ2ljZXJ0LmNvbS9DUFMwHQYDVR0OBBYEFA+AYRyCMWHVLyjnjUY4tCzhxtniMB8GA1UdIwQYMBaAFAPeUDVW0Uy7ZvCj4hsbw5eyPdFVMA0GCSqGSIb3DQEBCwUAA4IBAQAjPt9L0jFCpbZ+QlwaRMxp0Wi0XUvgBCFsS+JtzLHgl4+mUwnNqipl5TlPHoOlblyYoiQm5vuh7ZPHLgLGTUq/sELfeNqzqPlt/yGFUzZgTHbO7Djc1lGA8MXW5dRNJ2Srm8c+cftIl7gzbckTB+6WohsYFfZcTEDts8Ls/3HB40f/1LkAtDdC2iDJ6m6K7hQGrn2iWZiIqBtvLfTyyRRfJs8sjX7tN8Cp1Tm5gr8ZDOo0rwAhaPitc+LJMto4JQtV05od8GiG7S5BNO98pVAdvzr508EIDObtHopYJeS4d60tbvVS3bR0j6tJLp07kzQoH3jOlOrHvdPJbRzeXDLz"}],"version":"0303","random":"3cb9a232a937306d72aa5674ae726c52cc0e6b0b59541214a448547cc52ae901","selected_cipher_suite":"c030","compression_method":"00"}},"reassembly_properties":{"reassembled":true},"src_ip":"193.104.215.58","dst_ip":"192.168.113.237","protocol":6,"src_port":443,"dst_port":60736,"event_start":1565200322.813848} -{"ip":{"version":4,"ttl":64,"id":"cfed"},"dns":{"base64":"N34BAAABAAAAAAAAA3d3dwVhZG9iZQNjb20AAAEAAQ=="},"src_ip":"192.168.113.237","dst_ip":"192.168.113.2","protocol":17,"src_port":34513,"dst_port":53,"event_start":1565200323.091225} -{"ip":{"version":4,"ttl":64,"id":"cfee"},"dns":{"base64":"LX8BAAABAAAAAAAAA3d3dwVhZG9iZQNjb20AABwAAQ=="},"src_ip":"192.168.113.237","dst_ip":"192.168.113.2","protocol":17,"src_port":58696,"dst_port":53,"event_start":1565200323.091384} -{"ip":{"version":4,"ttl":128,"id":"9a74"},"dns":{"base64":"N36BgAABAAQADQAEA3d3dwVhZG9iZQNjb20AAAEAAcAMAAUAAQAAAAUAKwxzc2wtZGVsaXZlcnkFYWRvYmUKY29tLWlvbi1jbgdlZGdla2V5A25ldADAKwAFAAEAAAAFAD8Mc3NsLWRlbGl2ZXJ5BWFkb2JlCmNvbS1pb24tY24HZWRnZWtleQNuZXQLZ2xvYmFscmVkaXIGYWthZG5zwFHAYgAFAAEAAAAFABgFZTc5MzMEZHNjYQpha2FtYWllZGdlwFHArQABAAEAAAAFAAS4MiOhwFEAAgABAAAABQARAWsMZ3RsZC1zZXJ2ZXJzwFHAUQACAAEAAAAFAAQBbcDjwFEAAgABAAAABQAEAWbA48BRAAIAAQAAAAUABAFnwOPAUQACAAEAAAAFAAQBasDjwFEAAgABAAAABQAEAWnA48BRAAIAAQAAAAUABAFowOPAUQACAAEAAAAFAAQBYcDjwFEAAgABAAAABQAEAWzA48BRAAIAAQAAAAUABAFiwOPAUQACAAEAAAAFAAQBY8DjwFEAAgABAAAABQAEAWXA48BRAAIAAQAAAAUABAFkwOPBXgABAAEAAAAFAATABQYewX4AAQABAAAABQAEwCEOHsGOAAEAAQAAAAUABMAaXB7BrgABAAEAAAAFAATAH1Ae"},"src_ip":"192.168.113.2","dst_ip":"192.168.113.237","protocol":17,"src_port":53,"dst_port":34513,"event_start":1565200323.137992} -{"ip":{"version":4,"ttl":128,"id":"9a75"},"dns":{"base64":"LX+BgAABAAUADAAAA3d3dwVhZG9iZQNjb20AABwAAcAMAAUAAQAAAAUAKwxzc2wtZGVsaXZlcnkFYWRvYmUKY29tLWlvbi1jbgdlZGdla2V5A25ldADAKwAFAAEAAAAFAD8Mc3NsLWRlbGl2ZXJ5BWFkb2JlCmNvbS1pb24tY24HZWRnZWtleQNuZXQLZ2xvYmFscmVkaXIGYWthZG5zwFHAYgAFAAEAAAAFABgFZTc5MzMEZHNjYQpha2FtYWllZGdlwFHArQAcAAEAAAAFABAmABQeAAIBkwAAAAAAAB79wK0AHAABAAAABQAQJgAUHgACAaUAAAAAAAAe/cC4AAIAAQAAAAUABgNsYTPAuMC4AAIAAQAAAAUACgduczYtMTk0wLjAuAACAAEAAAAFAAoHbnM3LTE5NMC4wLgAAgABAAAABQAJBmE2LTE5MsC4wLgAAgABAAAABQAKB25zNS0xOTTAuMC4AAIAAQAAAAUACgdhMTMtMTkywLjAuAACAAEAAAAFAAoHYTExLTE5MsC4wLgAAgABAAAABQAKB2EyOC0xOTLAuMC4AAIAAQAAAAUACgdhMTItMTkywLjAuAACAAEAAAAFAAkGYTEtMTkywLjAuAACAAEAAAAFAAcEbGFyMsC4wLgAAgABAAAABQAGA2xhMcC4"},"src_ip":"192.168.113.2","dst_ip":"192.168.113.237","protocol":17,"src_port":53,"dst_port":58696,"event_start":1565200323.187086} -{"ip":{"version":4,"ttl":64,"id":"7c76"},"fingerprints":{"tcp":"tcp/(40)()(40)(faf0)((020405b4)(04)(08)(01)(030307))"},"tcp":{"seq":3591224221,"timestamp":{"ts_val":1586469797}},"src_ip":"192.168.113.237","dst_ip":"184.50.35.161","protocol":6,"src_port":56932,"dst_port":443,"event_start":1565200323.187537} -{"ip":{"version":4,"ttl":128,"id":"9a76"},"fingerprints":{"tcp_server":"tcp_server/(40)()(80)(faf0)((020405b4))"},"tcp_server":{"seq":4252048381},"src_ip":"184.50.35.161","dst_ip":"192.168.113.237","protocol":6,"src_port":443,"dst_port":56932,"event_start":1565200323.227854} -{"ip":{"version":4,"ttl":64,"id":"7c78"},"fingerprints":{"tls":"tls/(0303)(130213031301c02cc030009fcca9cca8ccaac02bc02f009ec024c028006bc023c0270067c00ac0140039c009c0130033009d009c003d003c0035002f00ff)((0000)(000b000403000102)(000a000c000a001d0017001e00190018)(0023)(0016)(0017)(000d0030002e040305030603080708080809080a080b080408050806040105010601030302030301020103020202040205020602)(002b0009080304030303020301)(002d00020101)(0033))"},"tls":{"client":{"version":"0303","random":"dc01a04078883e4d20ce98d8307794d8c3f1d9ef1cf343df8a68cbc197dae866","session_id":"05822196ec8beefba36749d9e7e24c09a3160beb652f900d08ad9a2b5548bb93","cipher_suites":"130213031301c02cc030009fcca9cca8ccaac02bc02f009ec024c028006bc023c0270067c00ac0140039c009c0130033009d009c003d003c0035002f00ff","compression_methods":"00","server_name":"www.adobe.com","session_ticket":"","features":"[\"0303\",\"130213031301c02cc030009fcca9cca8ccaac02bc02f009ec024c028006bc023c0270067c00ac0140039c009c0130033009d009c003d003c0035002f00ff\",[[\"0000\",\"001000000d7777772e61646f62652e636f6d\"],[\"000b\",\"03000102\"],[\"000a\",\"000a001d0017001e00190018\"],[\"0023\",\"\"],[\"0016\",\"\"],[\"0017\",\"\"],[\"000d\",\"002e040305030603080708080809080a080b080408050806040105010601030302030301020103020202040205020602\"],[\"002b\",\"080304030303020301\"],[\"002d\",\"0101\"],[\"0033\",\"0024001d0020630f931821f5bdc7ead78e5a86f3ed13c4d45971aca1ed84eae8f4e5aed02e1f\"]]]"}},"src_ip":"192.168.113.237","dst_ip":"184.50.35.161","protocol":6,"src_port":56932,"dst_port":443,"event_start":1565200323.228088} -{"ip":{"version":4,"ttl":128,"id":"9a7a"},"fingerprints":{"tls_server":"tls_server/(0303)(c030)((ff01)(0000)(000b000403000102)(0023))"},"tls":{"server":{"certs":[{"base64":"MIIGNzCCBR+gAwIBAgIQCg503M6e7LVhG69g0BbsbzANBgkqhkiG9w0BAQsFADBNMQswCQYDVQQGEwJVUzEVMBMGA1UEChMMRGlnaUNlcnQgSW5jMScwJQYDVQQDEx5EaWdpQ2VydCBTSEEyIFNlY3VyZSBTZXJ2ZXIgQ0EwHhcNMTgxMTA2MDAwMDAwWhcNMjAwMjA1MTIwMDAwWjB9MQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTERMA8GA1UEBxMIU2FuIEpvc2UxIzAhBgNVBAoTGkFkb2JlIFN5c3RlbXMgSW5jb3Jwb3JhdGVkMQswCQYDVQQLEwJJUzEUMBIGA1UEAwwLKi5hZG9iZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDxHy02hH5awt6eB0ZB5yfF3ZQO+955tDn+W6IfR+yLQFIi931YwkIxAM7M2VD1bm760h29lI6RiYFpiW0oPUnkt8zEpdayi2OHH5Ap6nQSDlEHW9BQpMXLBVep0HG6e8Qz2uiW84K8qlERWRBoDf7LZkJ+j3VGVPX50rD4BW1SjiHw5Hil+mb9tR6z2OMHFhoMYMYhOL4HSRnv3Nj4Xg1f1BfKwYVt4KZe1rnUmqJFVXk0iwdPv71JYh96Rj1CeaYCSG3PhL1CctmEtzfeVFX++kCM1PXeQsJtGEGiITu2FBBFzdheqTxdC9/LOnM9WgmqhVYoScwqo43O34sUx2oJAgMBAAGjggLhMIIC3TAfBgNVHSMEGDAWgBQPgGEcgjFh1S8o541GOLQs4cbZ4jAdBgNVHQ4EFgQUKL0O8nlF4pVkpaFcldo1cKl5FJQwIQYDVR0RBBowGIILKi5hZG9iZS5jb22CCWFkb2JlLmNvbTAOBgNVHQ8BAf8EBAMCBaAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMGsGA1UdHwRkMGIwL6AtoCuGKWh0dHA6Ly9jcmwzLmRpZ2ljZXJ0LmNvbS9zc2NhLXNoYTItZzYuY3JsMC+gLaArhilodHRwOi8vY3JsNC5kaWdpY2VydC5jb20vc3NjYS1zaGEyLWc2LmNybDBMBgNVHSAERTBDMDcGCWCGSAGG/WwBATAqMCgGCCsGAQUFBwIBFhxodHRwczovL3d3dy5kaWdpY2VydC5jb20vQ1BTMAgGBmeBDAECAjB8BggrBgEFBQcBAQRwMG4wJAYIKwYBBQUHMAGGGGh0dHA6Ly9vY3NwLmRpZ2ljZXJ0LmNvbTBGBggrBgEFBQcwAoY6aHR0cDovL2NhY2VydHMuZGlnaWNlcnQuY29tL0RpZ2lDZXJ0U0hBMlNlY3VyZVNlcnZlckNBLmNydDAJBgNVHRMEAjAAMIIBAwYKKwYBBAHWeQIEAgSB9ASB8QDvAHUApLkJkLQYWBSHuxOizGdwCjw1mAT5G9+443fNDsgN3BAAAAFm6OYBSAAABAMARjBEAiAGzoFtL3H38sDIqCoGUtHh+mft+u6+95qWVkiz6tckEAIgNIqKfTS1ssN9aslsQmNTqxw00g0VQRqLRx/yqDpOEmAAdgCHdb/nWXz4jEOZX73zbv9WjUdWNv9KtWDBtOr/XqCDDwAAAWbo5gIhAAAEAwBHMEUCIFCsSzZXC6mRE0/g7xTRXY94byQOwpjY13VAd0nv+VdIAiEA0hop7zM0YHyWGkiK1emLlPEj8tpv2L0uo/eC5AfqdMAwDQYJKoZIhvcNAQELBQADggEBAApznoYz6ONoMxctjevgb6j9S3Nne3QdHSbAHzQeYzClDxIJNp/Ob+38tShcMwpu2lBFb0QL3QNRwOZ5xQk4O0h+ul0t1YVDKJw9Mz2qwuOt4mUp+u764vmHDrvZxJxGQ/c6oTsm4biRKBZbI6PTXwz61DhsQ2jtWNATNGWDsdv6MS2F12blpNFdOVzXVOWRb+E7fbZC9VU0l760VFrYB/UuLJ7xb7+3fN04l1KFQE2wtfwdbVZEdYe72eNxIZDmIPxFFotlyzhdsWoGV3WGXTbjVzc3vb3SRQ3E4QTouANow1YA3wwRJWEarmiPN7L+P4sMrDAYF2im1b2YY2Iem+Y="},{"base64":"MIIElDCCA3ygAwIBAgIQAf2j627KdciIQ4tyS8+8kTANBgkqhkiG9w0BAQsFADBhMQswCQYDVQQGEwJVUzEVMBMGA1UEChMMRGlnaUNlcnQgSW5jMRkwFwYDVQQLExB3d3cuZGlnaWNlcnQuY29tMSAwHgYDVQQDExdEaWdpQ2VydCBHbG9iYWwgUm9vdCBDQTAeFw0xMzAzMDgxMjAwMDBaFw0yMzAzMDgxMjAwMDBaME0xCzAJBgNVBAYTAlVTMRUwEwYDVQQKEwxEaWdpQ2VydCBJbmMxJzAlBgNVBAMTHkRpZ2lDZXJ0IFNIQTIgU2VjdXJlIFNlcnZlciBDQTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANyuWJBNwcQwFZA1W248ghX1LFy949v/cUP6ZCWA1O4Yok3wZtAKc24RmDYXZK83nf36QYSvx6+M/hpzTc8zl5CilodTgyu5pnVILR1WN3vaMTIa16yrBvSqXUu3R0bdKpPDkC55gIDvEwRqFDu1m5K+wgdlTvza/P96rtxcflUxDOg5B6TXvi/TC2rSsd9f/ld0Uzs1gN2ujkSYs58O09rg1/RrKatEp0tYhG2SS4HD2nOLEpdIkARFdRrdNzGXkujNVA075ME/OV4uuPNcfhCOhkEAjUVmR7ChZc6gqikJTvOX6+guqw9ypzAO+sf0/RR3w6RbKFfCs/mC/bdFWJsCAwEAAaOCAVowggFWMBIGA1UdEwEB/wQIMAYBAf8CAQAwDgYDVR0PAQH/BAQDAgGGMDQGCCsGAQUFBwEBBCgwJjAkBggrBgEFBQcwAYYYaHR0cDovL29jc3AuZGlnaWNlcnQuY29tMHsGA1UdHwR0MHIwN6A1oDOGMWh0dHA6Ly9jcmwzLmRpZ2ljZXJ0LmNvbS9EaWdpQ2VydEdsb2JhbFJvb3RDQS5jcmwwN6A1oDOGMWh0dHA6Ly9jcmw0LmRpZ2ljZXJ0LmNvbS9EaWdpQ2VydEdsb2JhbFJvb3RDQS5jcmwwPQYDVR0gBDYwNDAyBgRVHSAAMCowKAYIKwYBBQUHAgEWHGh0dHBzOi8vd3d3LmRpZ2ljZXJ0LmNvbS9DUFMwHQYDVR0OBBYEFA+AYRyCMWHVLyjnjUY4tCzhxtniMB8GA1UdIwQYMBaAFAPeUDVW0Uy7ZvCj4hsbw5eyPdFVMA0GCSqGSIb3DQEBCwUAA4IBAQAjPt9L0jFCpbZ+QlwaRMxp0Wi0XUvgBCFsS+JtzLHgl4+mUwnNqipl5TlPHoOlblyYoiQm5vuh7ZPHLgLGTUq/sELfeNqzqPlt/yGFUzZgTHbO7Djc1lGA8MXW5dRNJ2Srm8c+cftIl7gzbckTB+6WohsYFfZcTEDts8Ls/3HB40f/1LkAtDdC2iDJ6m6K7hQGrn2iWZiIqBtvLfTyyRRfJs8sjX7tN8Cp1Tm5gr8ZDOo0rwAhaPitc+LJMto4JQtV05od8GiG7S5BNO98pVAdvzr508EIDObtHopYJeS4d60tbvVS3bR0j6tJLp07kzQoH3jOlOrHvdPJbRzeXDLz"}],"version":"0303","random":"f2a1328e6d17c0d21c2edc47828acfff0bf50d2516418292e92527b46e1799d5","selected_cipher_suite":"c030","compression_method":"00","session_ticket":""}},"reassembly_properties":{"reassembled":true},"src_ip":"184.50.35.161","dst_ip":"192.168.113.237","protocol":6,"src_port":443,"dst_port":56932,"event_start":1565200323.270041} -{"ip":{"version":4,"ttl":64,"id":"d014"},"dns":{"base64":"ZTwBAAABAAAAAAAAAmVuCXdpa2lwZWRpYQNvcmcAAAEAAQ=="},"src_ip":"192.168.113.237","dst_ip":"192.168.113.2","protocol":17,"src_port":58038,"dst_port":53,"event_start":1565200323.465109} -{"ip":{"version":4,"ttl":64,"id":"d015"},"dns":{"base64":"oo0BAAABAAAAAAAAAmVuCXdpa2lwZWRpYQNvcmcAABwAAQ=="},"src_ip":"192.168.113.237","dst_ip":"192.168.113.2","protocol":17,"src_port":60058,"dst_port":53,"event_start":1565200323.465267} -{"ip":{"version":4,"ttl":128,"id":"9ac9"},"dns":{"base64":"oo2BgAABAAIABgAMAmVuCXdpa2lwZWRpYQNvcmcAABwAAcAMAAUAAQAAAAUAEQRkeW5hCXdpa2ltZWRpYcAZwC4AHAABAAAABQAQJiAAAAhh7RoAAAAAAAAAAcAZAAIAAQAAAAUAFQJiMANvcmcLYWZpbGlhcy1uc3TAGcAZAAIAAQAAAAUABQJkMMBqwBkAAgABAAAABQAZAmEyA29yZwthZmlsaWFzLW5zdARpbmZvAMAZAAIAAQAAAAUABQJhMMCcwBkAAgABAAAABQAFAmMwwJzAGQACAAEAAAAFAAUCYjLAasC+AAEAAQAAAAUABMcTOAHAmQABAAEAAAAFAATH+XABwGcAAQABAAAABQAExxM2AcDgAAEAAQAAAAUABMf5eAHAzwABAAEAAAAFAATHEzUBwIgAAQABAAAABQAExxM5AcC+ABwAAQAAAAUAECABBQAADgAAAAAAAAAAAAHAmQAcAAEAAAAFABAgAQUAAEAAAAAAAAAAAAABwGcAHAABAAAABQAQIAEFAAAMAAAAAAAAAAAAAcDgABwAAQAAAAUAECABBQAASAAAAAAAAAAAAAHAzwAcAAEAAAAFABAgAQUAAAsAAAAAAAAAAAABwIgAHAABAAAABQAQIAEFAAAPAAAAAAAAAAAAAQ=="},"src_ip":"192.168.113.2","dst_ip":"192.168.113.237","protocol":17,"src_port":53,"dst_port":60058,"event_start":1565200323.504307} -{"ip":{"version":4,"ttl":128,"id":"9aca"},"dns":{"base64":"ZTyBgAABAAIABgAKAmVuCXdpa2lwZWRpYQNvcmcAAAEAAcAMAAUAAQAAAAUAEQRkeW5hCXdpa2ltZWRpYcAZwC4AAQABAAAABQAE0FCa4MAZAAIAAQAAAAUAGQJhMANvcmcLYWZpbGlhcy1uc3QEaW5mbwDAGQACAAEAAAAFABUCYjIDb3JnC2FmaWxpYXMtbnN0wBnAGQACAAEAAAAFAAUCZDDAg8AZAAIAAQAAAAUABQJiMMCDwBkAAgABAAAABQAFAmMwwF7AGQACAAEAAAAFAAUCYTLAXsBbAAEAAQAAAAUABMcTOAHA1AABAAEAAAAFAATH+XABwMMAAQABAAAABQAExxM1AcChAAEAAQAAAAUABMcTOQHAWwAcAAEAAAAFABAgAQUAAA4AAAAAAAAAAAABwNQAHAABAAAABQAQIAEFAABAAAAAAAAAAAAAAcCyABwAAQAAAAUAECABBQAADAAAAAAAAAAAAAHAgAAcAAEAAAAFABAgAQUAAEgAAAAAAAAAAAABwMMAHAABAAAABQAQIAEFAAALAAAAAAAAAAAAAcChABwAAQAAAAUAECABBQAADwAAAAAAAAAAAAE="},"src_ip":"192.168.113.2","dst_ip":"192.168.113.237","protocol":17,"src_port":53,"dst_port":58038,"event_start":1565200323.504438} -{"ip":{"version":4,"ttl":64,"id":"ec55"},"fingerprints":{"tcp":"tcp/(40)()(40)(faf0)((020405b4)(04)(08)(01)(030307))"},"tcp":{"seq":3439207535,"timestamp":{"ts_val":1954736558}},"src_ip":"192.168.113.237","dst_ip":"208.80.154.224","protocol":6,"src_port":51360,"dst_port":443,"event_start":1565200323.504965} -{"ip":{"version":4,"ttl":128,"id":"9acb"},"fingerprints":{"tcp_server":"tcp_server/(40)()(80)(faf0)((020405b4))"},"tcp_server":{"seq":1013583992},"src_ip":"208.80.154.224","dst_ip":"192.168.113.237","protocol":6,"src_port":443,"dst_port":51360,"event_start":1565200323.548040} -{"ip":{"version":4,"ttl":64,"id":"ec57"},"fingerprints":{"tls":"tls/(0303)(130213031301c02cc030009fcca9cca8ccaac02bc02f009ec024c028006bc023c0270067c00ac0140039c009c0130033009d009c003d003c0035002f00ff)((0000)(000b000403000102)(000a000c000a001d0017001e00190018)(0023)(0016)(0017)(000d0030002e040305030603080708080809080a080b080408050806040105010601030302030301020103020202040205020602)(002b0009080304030303020301)(002d00020101)(0033))"},"tls":{"client":{"version":"0303","random":"29a6d65e8a914457b9a09e5e00eec3aba1a12aef8e6513e49a7cb0c902ac2cf3","session_id":"7d56638586c2d0f4769a5cfae81d9000e40113c134682fb636bc225926106322","cipher_suites":"130213031301c02cc030009fcca9cca8ccaac02bc02f009ec024c028006bc023c0270067c00ac0140039c009c0130033009d009c003d003c0035002f00ff","compression_methods":"00","server_name":"en.wikipedia.org","session_ticket":"","features":"[\"0303\",\"130213031301c02cc030009fcca9cca8ccaac02bc02f009ec024c028006bc023c0270067c00ac0140039c009c0130033009d009c003d003c0035002f00ff\",[[\"0000\",\"0013000010656e2e77696b6970656469612e6f7267\"],[\"000b\",\"03000102\"],[\"000a\",\"000a001d0017001e00190018\"],[\"0023\",\"\"],[\"0016\",\"\"],[\"0017\",\"\"],[\"000d\",\"002e040305030603080708080809080a080b080408050806040105010601030302030301020103020202040205020602\"],[\"002b\",\"080304030303020301\"],[\"002d\",\"0101\"],[\"0033\",\"0024001d0020e4eb77be4c7492c02105cdc0d48f89179ef37f27b3366f2860c120183e546d58\"]]]"}},"src_ip":"192.168.113.237","dst_ip":"208.80.154.224","protocol":6,"src_port":51360,"dst_port":443,"event_start":1565200323.548513} -{"ip":{"version":4,"ttl":128,"id":"9acf"},"fingerprints":{"tls_server":"tls_server/(0303)(cca9)((ff01)(000b000403000102)(0017))"},"tls":{"server":{"certs":[{"base64":"MIIIMTCCBxmgAwIBAgIMFkDF1F0uxNlMfXxqMA0GCSqGSIb3DQEBCwUAMGYxCzAJBgNVBAYTAkJFMRkwFwYDVQQKExBHbG9iYWxTaWduIG52LXNhMTwwOgYDVQQDEzNHbG9iYWxTaWduIE9yZ2FuaXphdGlvbiBWYWxpZGF0aW9uIENBIC0gU0hBMjU2IC0gRzIwHhcNMTgxMTA4MjEyMTA0WhcNMTkxMTIyMDc1OTU5WjB5MQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZyYW5jaXNjbzEjMCEGA1UEChMaV2lraW1lZGlhIEZvdW5kYXRpb24sIEluYy4xGDAWBgNVBAMMDyoud2lraXBlZGlhLm9yZzBZMBMGByqGSM49AgEGCCqGSM49AwEHA0IABGd1rS7GauMxJ15BmViShjVMjwQJNjjw+OUhnIaqE5QF/q6c/LIvVh4N3473a7J52JcfmlfCrXvDthHzaZNEneKjggWVMIIFkTAOBgNVHQ8BAf8EBAMCA4gwgaAGCCsGAQUFBwEBBIGTMIGQME0GCCsGAQUFBzAChkFodHRwOi8vc2VjdXJlLmdsb2JhbHNpZ24uY29tL2NhY2VydC9nc29yZ2FuaXphdGlvbnZhbHNoYTJnMnIxLmNydDA/BggrBgEFBQcwAYYzaHR0cDovL29jc3AyLmdsb2JhbHNpZ24uY29tL2dzb3JnYW5pemF0aW9udmFsc2hhMmcyMFYGA1UdIARPME0wQQYJKwYBBAGgMgEUMDQwMgYIKwYBBQUHAgEWJmh0dHBzOi8vd3d3Lmdsb2JhbHNpZ24uY29tL3JlcG9zaXRvcnkvMAgGBmeBDAECAjAJBgNVHRMEAjAAMEkGA1UdHwRCMEAwPqA8oDqGOGh0dHA6Ly9jcmwuZ2xvYmFsc2lnbi5jb20vZ3MvZ3Nvcmdhbml6YXRpb252YWxzaGEyZzIuY3JsMIICxQYDVR0RBIICvDCCAriCDyoud2lraXBlZGlhLm9yZ4INd2lraW1lZGlhLm9yZ4INbWVkaWF3aWtpLm9yZ4INd2lraWJvb2tzLm9yZ4IMd2lraWRhdGEub3Jnggx3aWtpbmV3cy5vcmeCDXdpa2lxdW90ZS5vcmeCDndpa2lzb3VyY2Uub3Jngg93aWtpdmVyc2l0eS5vcmeCDndpa2l2b3lhZ2Uub3Jngg53aWt0aW9uYXJ5Lm9yZ4IXd2lraW1lZGlhZm91bmRhdGlvbi5vcmeCBncud2lraYISd21mdXNlcmNvbnRlbnQub3JnghEqLm0ud2lraXBlZGlhLm9yZ4IPKi53aWtpbWVkaWEub3JnghEqLm0ud2lraW1lZGlhLm9yZ4IWKi5wbGFuZXQud2lraW1lZGlhLm9yZ4IPKi5tZWRpYXdpa2kub3JnghEqLm0ubWVkaWF3aWtpLm9yZ4IPKi53aWtpYm9va3Mub3JnghEqLm0ud2lraWJvb2tzLm9yZ4IOKi53aWtpZGF0YS5vcmeCECoubS53aWtpZGF0YS5vcmeCDioud2lraW5ld3Mub3JnghAqLm0ud2lraW5ld3Mub3Jngg8qLndpa2lxdW90ZS5vcmeCESoubS53aWtpcXVvdGUub3JnghAqLndpa2lzb3VyY2Uub3JnghIqLm0ud2lraXNvdXJjZS5vcmeCESoud2lraXZlcnNpdHkub3JnghMqLm0ud2lraXZlcnNpdHkub3JnghAqLndpa2l2b3lhZ2Uub3JnghIqLm0ud2lraXZveWFnZS5vcmeCECoud2lrdGlvbmFyeS5vcmeCEioubS53aWt0aW9uYXJ5Lm9yZ4IZKi53aWtpbWVkaWFmb3VuZGF0aW9uLm9yZ4IUKi53bWZ1c2VyY29udGVudC5vcmeCDXdpa2lwZWRpYS5vcmcwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMB0GA1UdDgQWBBSt4NNfC33t2i98DfZjjYpZGMJsijAfBgNVHSMEGDAWgBSW3mHxvRwWKVMcwMx9O4MAQOYafDCCAQQGCisGAQQB1nkCBAIEgfUEgfIA8AB2AKS5CZC0GFgUh7sTosxncAo8NZgE+RvfuON3zQ7IDdwQAAABZvUzN/YAAAQDAEcwRQIgBATdvSzbd5NwGdtkmJ5SEvEPn6A8hgAsk6GSP6hzWcgCIQDKfHQNtObs/hHPfLgXsVkcnHIbjlNwmWeiukGtGHZFMgB2AG9Tdqwx8DEZ2JkApFEV/3cVHBHZAsEAKQaNsgiaN9kTAAABZvUzN8cAAAQDAEcwRQIgYalEnXtd/fPhjq9SXPoSPRhaMmeDs0IMN5o5Y6QTKfUCIQClR1uj+B56K4tGh/mws4qugG1qSD9zfvmx8roKik3HHDANBgkqhkiG9w0BAQsFAAOCAQEAUEJyg/AZo+owG5J/LIk8EIDnyOcanmfgvdjMg8KnpBvh8l3Wb4HmOudluJhIeIbCUMwzEzSGqYQQ78n4wtjLaLwaDgL4WzHOVec2k+rbfmPT6MUCtdlz1PK5/WY9JQyQq6vy+tm3a6Wijy6M8U/TdrJubK5X03SFfRb0pDuFdr2fnkctLRnyCb1w0XHwGXjEcGm1LY42YKwdvbj3WIqumeSEuG4MZtquW6NURKELSil03G/hRHRAHHGx3zXes/jJcpH2GPX9eY9B+R1oHmCE2QF5Y/Bh+uNA2+2Iuj/6UJAOw/Z/8+qZcnLWWnK2Dwzc34C/AUD+Wb71oUcr60+pPg=="},{"base64":"MIIEYjCCA0qgAwIBAgILBAAAAAABMYnGRMkwDQYJKoZIhvcNAQELBQAwTDEgMB4GA1UECxMXR2xvYmFsU2lnbiBSb290IENBIC0gUjMxEzARBgNVBAoTCkdsb2JhbFNpZ24xEzARBgNVBAMTCkdsb2JhbFNpZ24wHhcNMTEwODAyMTAwMDAwWhcNMjIwODAyMTAwMDAwWjBmMQswCQYDVQQGEwJCRTEZMBcGA1UEChMQR2xvYmFsU2lnbiBudi1zYTE8MDoGA1UEAxMzR2xvYmFsU2lnbiBPcmdhbml6YXRpb24gVmFsaWRhdGlvbiBDQSAtIFNIQTI1NiAtIEcyMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAxw5sPyOTf8xwpZ0gww5TP37ATsKYScpH1SPvAzSFdMijAi5GXAt9yYidT4vw+JxsjFU127/ys+r741bnSkbZEyLKNtWbwajjlkOT8gy85vnm6JnIY0h4f1c2aRoZHVrR1H3CnNR/4YASrnrqiOpX2MoKCjoSSaJiGXoNJPc367RzknsFI5sStc7rKd+kFAK5AaXUppxDZIje+H7+4/Ue5f7co6jkZjHZTCXpGLmJWQmu6Z0cbTcPSh41ICjir9QhiwHERa1uK2OrkmthCk0g7XO6fM7+FrXbn4Dw1ots2Qh5Sk94ZdqSvL41+bPE+SeATv+WUuYCIOEHc+ldK72y8QIDAQABo4IBKTCCASUwDgYDVR0PAQH/BAQDAgEGMBIGA1UdEwEB/wQIMAYBAf8CAQAwHQYDVR0OBBYEFJbeYfG9HBYpUxzAzH07gwBA5hp8MEcGA1UdIARAMD4wPAYEVR0gADA0MDIGCCsGAQUFBwIBFiZodHRwczovL3d3dy5nbG9iYWxzaWduLmNvbS9yZXBvc2l0b3J5LzA2BgNVHR8ELzAtMCugKaAnhiVodHRwOi8vY3JsLmdsb2JhbHNpZ24ubmV0L3Jvb3QtcjMuY3JsMD4GCCsGAQUFBwEBBDIwMDAuBggrBgEFBQcwAYYiaHR0cDovL29jc3AyLmdsb2JhbHNpZ24uY29tL3Jvb3RyMzAfBgNVHSMEGDAWgBSP8Et/qC5FJK5NUPpjmove4t0bvDANBgkqhkiG9w0BAQsFAAOCAQEAugYpwLQZjCERwJQRnrs91NVDQPafuyULI2i1Gvf6VGTMKxP5IfBEreHoFVjb7v3bok3MGI8Nmm3DawGhMfCNvABAzDlfh2FRbfSV6uoVNT5AhcBi1aE0/niqqLJaOfM3Qfuc6D5xSlvr+GlYoeDGk3fpumeS62VYkHBzQn2v9CMmeReq+qS7meVEb2WB58rrVcj0ticRIXSUvGu3dGIpxM2uR/LmQlt4hgVhy5CqeYnfBH6xJnBLjUAfhHvA+wfmyLdOkfQ1A+3o60EQF0m0YsinLPLhTI8DLPMWN11n8aQ5eUmjwF3MVfkhgA/7zuIpalhQ6abX6xwyNrVip8H65g=="}],"version":"0303","random":"1bf2993a23632c1bd464b4440c7973193c8defd6773a17762e677429b06f7aa6","selected_cipher_suite":"cca9","compression_method":"00"}},"reassembly_properties":{"reassembled":true},"src_ip":"208.80.154.224","dst_ip":"192.168.113.237","protocol":6,"src_port":443,"dst_port":51360,"event_start":1565200323.593859} -{"ip":{"version":4,"ttl":64,"id":"d039"},"dns":{"base64":"YvYBAAABAAAAAAAABml0dW5lcwVhcHBsZQNjb20AAAEAAQ=="},"src_ip":"192.168.113.237","dst_ip":"192.168.113.2","protocol":17,"src_port":52922,"dst_port":53,"event_start":1565200323.996782} -{"ip":{"version":4,"ttl":64,"id":"d03a"},"dns":{"base64":"wOABAAABAAAAAAAABml0dW5lcwVhcHBsZQNjb20AABwAAQ=="},"src_ip":"192.168.113.237","dst_ip":"192.168.113.2","protocol":17,"src_port":51162,"dst_port":53,"event_start":1565200323.996974} -{"ip":{"version":4,"ttl":128,"id":"9b18"},"dns":{"base64":"YvaBgAABAAQADQAHBml0dW5lcwVhcHBsZQNjb20AAAEAAcAMAAUAAQAAAAUAKAppdHVuZXMtY2RuDGl0dW5lcy1hcHBsZQNjb20GYWthZG5zA25ldADALgAFAAEAAAAFABsGaXR1bmVzBWFwcGxlA2NvbQdlZGdla2V5wFHAYgAFAAEAAAAFABgEZTY3MwVkc2NlOQpha2FtYWllZGdlwFHAiQABAAEAAAAFAAS4MvbFwFEAAgABAAAABQARAWsMZ3RsZC1zZXJ2ZXJzwFHAUQACAAEAAAAFAAQBZcC/wFEAAgABAAAABQAEAW3Av8BRAAIAAQAAAAUABAFhwL/AUQACAAEAAAAFAAQBZsC/wFEAAgABAAAABQAEAWrAv8BRAAIAAQAAAAUABAFowL/AUQACAAEAAAAFAAQBZ8C/wFEAAgABAAAABQAEAWnAv8BRAAIAAQAAAAUABAFiwL/AUQACAAEAAAAFAAQBZMC/wFEAAgABAAAABQAEAWPAv8BRAAIAAQAAAAUABAFswL/A+gABAAEAAAAFAATABQYewVoAAQABAAAABQAEwCEOHsF6AAEAAQAAAAUABMAaXB7BagABAAEAAAAFAATAH1AewNoAAQABAAAABQAEwAxeHsEKAAEAAQAAAAUABMAjMx7BOgABAAEAAAAFAATAKl0e"},"src_ip":"192.168.113.2","dst_ip":"192.168.113.237","protocol":17,"src_port":53,"dst_port":52922,"event_start":1565200324.034333} -{"ip":{"version":4,"ttl":128,"id":"9b19"},"dns":{"base64":"wOCBgAABAAYADQACBml0dW5lcwVhcHBsZQNjb20AABwAAcAMAAUAAQAAAAUAKAppdHVuZXMtY2RuDGl0dW5lcy1hcHBsZQNjb20GYWthZG5zA25ldADALgAFAAEAAAAFABsGaXR1bmVzBWFwcGxlA2NvbQdlZGdla2V5wFHAYgAFAAEAAAAFABgEZTY3MwVkc2NlOQpha2FtYWllZGdlwFHAiQAcAAEAAAAFABAmABQeAAIBigAAAAAAAAKhwIkAHAABAAAABQAQJgAUHgACAYgAAAAAAAACocCJABwAAQAAAAUAECYAFB4AAgGJAAAAAAAAAqHAUQACAAEAAAAFABEBagxndGxkLXNlcnZlcnPAUcBRAAIAAQAAAAUABAFiwQPAUQACAAEAAAAFAAQBbMEDwFEAAgABAAAABQAEAWjBA8BRAAIAAQAAAAUABAFpwQPAUQACAAEAAAAFAAQBZcEDwFEAAgABAAAABQAEAWPBA8BRAAIAAQAAAAUABAFmwQPAUQACAAEAAAAFAAQBZ8EDwFEAAgABAAAABQAEAWvBA8BRAAIAAQAAAAUABAFtwQPAUQACAAEAAAAFAAQBYcEDwFEAAgABAAAABQAEAWTBA8G+AAEAAQAAAAUABMAFBh7BHgABAAEAAAAFAATAIQ4e"},"src_ip":"192.168.113.2","dst_ip":"192.168.113.237","protocol":17,"src_port":53,"dst_port":51162,"event_start":1565200324.034356} -{"ip":{"version":4,"ttl":64,"id":"3eec"},"fingerprints":{"tcp":"tcp/(40)()(40)(faf0)((020405b4)(04)(08)(01)(030307))"},"tcp":{"seq":2178676307,"timestamp":{"ts_val":3000943747}},"src_ip":"192.168.113.237","dst_ip":"184.50.246.197","protocol":6,"src_port":46026,"dst_port":443,"event_start":1565200324.035181} -{"ip":{"version":4,"ttl":128,"id":"9b1a"},"fingerprints":{"tcp_server":"tcp_server/(40)()(80)(faf0)((020405b4))"},"tcp_server":{"seq":2523962835},"src_ip":"184.50.246.197","dst_ip":"192.168.113.237","protocol":6,"src_port":443,"dst_port":46026,"event_start":1565200324.068083} -{"ip":{"version":4,"ttl":64,"id":"3eee"},"fingerprints":{"tls":"tls/(0303)(130213031301c02cc030009fcca9cca8ccaac02bc02f009ec024c028006bc023c0270067c00ac0140039c009c0130033009d009c003d003c0035002f00ff)((0000)(000b000403000102)(000a000c000a001d0017001e00190018)(0023)(0016)(0017)(000d0030002e040305030603080708080809080a080b080408050806040105010601030302030301020103020202040205020602)(002b0009080304030303020301)(002d00020101)(0033))"},"tls":{"client":{"version":"0303","random":"e8587d959a5ed9b9cb6057c679034ce1a052ac1c215b8b9903cb3aa0d00019ae","session_id":"93a845e708aefaded517f86d6703f93ef184538eedea60211e803cb75cf0d7fd","cipher_suites":"130213031301c02cc030009fcca9cca8ccaac02bc02f009ec024c028006bc023c0270067c00ac0140039c009c0130033009d009c003d003c0035002f00ff","compression_methods":"00","server_name":"itunes.apple.com","session_ticket":"","features":"[\"0303\",\"130213031301c02cc030009fcca9cca8ccaac02bc02f009ec024c028006bc023c0270067c00ac0140039c009c0130033009d009c003d003c0035002f00ff\",[[\"0000\",\"00130000106974756e65732e6170706c652e636f6d\"],[\"000b\",\"03000102\"],[\"000a\",\"000a001d0017001e00190018\"],[\"0023\",\"\"],[\"0016\",\"\"],[\"0017\",\"\"],[\"000d\",\"002e040305030603080708080809080a080b080408050806040105010601030302030301020103020202040205020602\"],[\"002b\",\"080304030303020301\"],[\"002d\",\"0101\"],[\"0033\",\"0024001d00208770101eaeb3548b8b17443ae8696b9ad326dcbdbb9cb23686eebafab77b730b\"]]]"}},"src_ip":"192.168.113.237","dst_ip":"184.50.246.197","protocol":6,"src_port":46026,"dst_port":443,"event_start":1565200324.068345} -{"ip":{"version":4,"ttl":128,"id":"9b1c"},"fingerprints":{"tls_server":"tls_server/(0303)(1302)((002b00020304)(0033))"},"tls":{"server":{"version":"0303","random":"e6d40ebc4d9bad4b77a0c3712a2ca431353afc191394a1cea3d72793581c7f9d","selected_cipher_suite":"1302","compression_method":"00"}},"src_ip":"184.50.246.197","dst_ip":"192.168.113.237","protocol":6,"src_port":443,"dst_port":46026,"event_start":1565200324.110532} -{"ip":{"version":4,"ttl":64,"id":"a9f7"},"fingerprints":{"tcp":"tcp/(40)()(40)(faf0)((020405b4)(04)(08)(01)(030307))"},"tcp":{"seq":605380874,"timestamp":{"ts_val":854238022}},"src_ip":"192.168.113.237","dst_ip":"17.178.96.59","protocol":6,"src_port":47972,"dst_port":443,"event_start":1565200324.284597} -{"ip":{"version":4,"ttl":128,"id":"9b2a"},"fingerprints":{"tcp_server":"tcp_server/(40)()(80)(faf0)((020405b4))"},"tcp_server":{"seq":4058164071},"src_ip":"17.178.96.59","dst_ip":"192.168.113.237","protocol":6,"src_port":443,"dst_port":47972,"event_start":1565200324.382099} -{"ip":{"version":4,"ttl":64,"id":"a9f9"},"fingerprints":{"tls":"tls/(0303)(130213031301c02cc030009fcca9cca8ccaac02bc02f009ec024c028006bc023c0270067c00ac0140039c009c0130033009d009c003d003c0035002f00ff)((0000)(000b000403000102)(000a000c000a001d0017001e00190018)(0023)(0016)(0017)(000d0030002e040305030603080708080809080a080b080408050806040105010601030302030301020103020202040205020602)(002b0009080304030303020301)(002d00020101)(0033))"},"tls":{"client":{"version":"0303","random":"66ad7141465d8be5d32fcdab725f057485d4cd38f9a74e80beb1fb284e588ec3","session_id":"17f0d996a1820a0ffeed614203a1d2470b4d23c8b1a72b1cd509e292e1bab498","cipher_suites":"130213031301c02cc030009fcca9cca8ccaac02bc02f009ec024c028006bc023c0270067c00ac0140039c009c0130033009d009c003d003c0035002f00ff","compression_methods":"00","server_name":"apple.com","session_ticket":"","features":"[\"0303\",\"130213031301c02cc030009fcca9cca8ccaac02bc02f009ec024c028006bc023c0270067c00ac0140039c009c0130033009d009c003d003c0035002f00ff\",[[\"0000\",\"000c0000096170706c652e636f6d\"],[\"000b\",\"03000102\"],[\"000a\",\"000a001d0017001e00190018\"],[\"0023\",\"\"],[\"0016\",\"\"],[\"0017\",\"\"],[\"000d\",\"002e040305030603080708080809080a080b080408050806040105010601030302030301020103020202040205020602\"],[\"002b\",\"080304030303020301\"],[\"002d\",\"0101\"],[\"0033\",\"0024001d00201bb8cbeec336637a43d044af887fb9b7bf4b09fdd3769ffe7199e6e6c549a20d\"]]]"}},"src_ip":"192.168.113.237","dst_ip":"17.178.96.59","protocol":6,"src_port":47972,"dst_port":443,"event_start":1565200324.382348} -{"ip":{"version":4,"ttl":128,"id":"9b2e"},"fingerprints":{"tls_server":"tls_server/(0303)(c02f)((000b00020100))"},"tls":{"server":{"certs":[{"base64":"MIIH8zCCBtugAwIBAgIQCntZYuAq75f9bqCozf4GOzANBgkqhkiG9w0BAQsFADB1MQswCQYDVQQGEwJVUzEVMBMGA1UEChMMRGlnaUNlcnQgSW5jMRkwFwYDVQQLExB3d3cuZGlnaWNlcnQuY29tMTQwMgYDVQQDEytEaWdpQ2VydCBTSEEyIEV4dGVuZGVkIFZhbGlkYXRpb24gU2VydmVyIENBMB4XDTE5MDcyMDAwMDAwMFoXDTIwMDcyMDEyMDAwMFowgeMxHTAbBgNVBA8MFFByaXZhdGUgT3JnYW5pemF0aW9uMRMwEQYLKwYBBAGCNzwCAQMTAlVTMRswGQYLKwYBBAGCNzwCAQITCkNhbGlmb3JuaWExETAPBgNVBAUTCEMwODA2NTkyMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTESMBAGA1UEBxMJQ3VwZXJ0aW5vMRMwEQYDVQQKEwpBcHBsZSBJbmMuMRowGAYDVQQLExFJbnRlcm5ldCBTZXJ2aWNlczEWMBQGA1UEAxMNd3d3LmFwcGxlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAOJVaWbq7ReuQNs4LNpYlxNwolxVkFREluDtvvHdC0dEGXxyl1Htd77fa3WdGsXrckZm/WA6OrGFDi0oxqGsmzqt8UhoL/8u0cMtLo22L3SakDlZNVdsZzHfuWwRkYRWiazWn8y90SECimUDM71NfqdrZAmYtWTah/EIeH0c4W3bv1ZD9qbXlGog3rlqTY2oi2faxAZuTJY2snOgnX50LvNUiHo5IzUuweD/dhPun02Y6hUd0FIJQ4ekA+CtBsf7Ji2Sc42nXeGtiW+0WYsmLzTxSnPdUcp+ad8S9ndCeWokM6dl3Iv177dJIn4aQ71x1TgagkjBYZ1GWjFo2hcbKJ0CAwEAAaOCBA4wggQKMB8GA1UdIwQYMBaAFD3TUKXWoK3u80pgCmXTIdT4+NYPMB0GA1UdDgQWBBT2nT+05RGAUUXkbIsK8871kncHUjCCATYGA1UdEQSCAS0wggEpghRleHRlbnNpb25zLmFwcGxlLmNvbYISZmVlZGJhY2suYXBwbGUuY29tghFnZW5zZXJ2LmFwcGxlLmNvbYIOaGVscC5hcHBsZS5jb22CEWhlbHBvc3guYXBwbGUuY29tghBoZWxwcXQuYXBwbGUuY29tghBpbWFnZXMuYXBwbGUuY29tghdpdHVuZXNwYXJ0bmVyLmFwcGxlLmNvbYIRcHJvaGVscC5hcHBsZS5jb22CEHJlYmF0ZS5hcHBsZS5jb22CG3NhZmFyaS1leHRlbnNpb25zLmFwcGxlLmNvbYIadHJhY2tpbmdzaGlwbWVudC5hcHBsZS5jb22CEnRyYWlsZXJzLmFwcGxlLmNvbYIJYXBwbGUuY29tgg13d3cuYXBwbGUuY29tMA4GA1UdDwEB/wQEAwIFoDAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwdQYDVR0fBG4wbDA0oDKgMIYuaHR0cDovL2NybDMuZGlnaWNlcnQuY29tL3NoYTItZXYtc2VydmVyLWcyLmNybDA0oDKgMIYuaHR0cDovL2NybDQuZGlnaWNlcnQuY29tL3NoYTItZXYtc2VydmVyLWcyLmNybDBLBgNVHSAERDBCMDcGCWCGSAGG/WwCATAqMCgGCCsGAQUFBwIBFhxodHRwczovL3d3dy5kaWdpY2VydC5jb20vQ1BTMAcGBWeBDAEBMIGIBggrBgEFBQcBAQR8MHowJAYIKwYBBQUHMAGGGGh0dHA6Ly9vY3NwLmRpZ2ljZXJ0LmNvbTBSBggrBgEFBQcwAoZGaHR0cDovL2NhY2VydHMuZGlnaWNlcnQuY29tL0RpZ2lDZXJ0U0hBMkV4dGVuZGVkVmFsaWRhdGlvblNlcnZlckNBLmNydDAJBgNVHRMEAjAAMIIBAwYKKwYBBAHWeQIEAgSB9ASB8QDvAHYApLkJkLQYWBSHuxOizGdwCjw1mAT5G9+443fNDsgN3BAAAAFsDybfogAABAMARzBFAiANYeCK4RsTjJyWm00Myizu96qqHAW1JHwjyO7TihtGiQIhAIzHukiG871pfYoOc2B2JqRwcH+BkLZVkCkIfTcrDl9LAHUAVhQGmi/XwuzT9eG9RLI+x0Z2ubyZEVzA75SYVdaJ0N0AAAFsDybf4AAABAMARjBEAiA+YJNS/bLKIyT+cpt9NtxKSQSW4/ctVA7wcTBjv2jlLQIgLKt5ld2x1FFDSjldkX+u/mfaIzk8apZ9F/lJeTTf3KIwDQYJKoZIhvcNAQELBQADggEBAGcYjzS/MA7CsV+3FgW5qoz7hNp3M1H1kha1PipJY32edcbWR6DhraZwpb1xfcB8NCIi6IZ/66rhMQvljs4eK5dGMDD25qMeWnFxeby6eqvGig7deN2vZkUoqMElv+WTDwZMy+W+QxZWgRzi5u0x/oM3iIAdSjZ2Oihb7QLMj4li+cIEXv70G8DftG5W7za1+lgySo9kK72mKwbmAr5OEDirSatO9MINGFFqVlIzP1z87wqenvj/13NYjHILzAzhkMlhA2EynbpnoJHlrjLlCOe+HMz1PGzvTa7sA4eBJ0vhcolQ8Tg0K01oglkzQpg3PENgk2pJWaToKO2SB1C7Dgo="},{"base64":"MIIEtjCCA56gAwIBAgIQDHmpRLCMEZUgkmFf4msdgzANBgkqhkiG9w0BAQsFADBsMQswCQYDVQQGEwJVUzEVMBMGA1UEChMMRGlnaUNlcnQgSW5jMRkwFwYDVQQLExB3d3cuZGlnaWNlcnQuY29tMSswKQYDVQQDEyJEaWdpQ2VydCBIaWdoIEFzc3VyYW5jZSBFViBSb290IENBMB4XDTEzMTAyMjEyMDAwMFoXDTI4MTAyMjEyMDAwMFowdTELMAkGA1UEBhMCVVMxFTATBgNVBAoTDERpZ2lDZXJ0IEluYzEZMBcGA1UECxMQd3d3LmRpZ2ljZXJ0LmNvbTE0MDIGA1UEAxMrRGlnaUNlcnQgU0hBMiBFeHRlbmRlZCBWYWxpZGF0aW9uIFNlcnZlciBDQTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANdTpARR+JmmFkhLZyeqk0nQOe0MsLAAh/FnKIaFjI5j2ryxQDji0/XspQUYuD0+xZkXMuwYjPrxDKZkIYXLBxA0sFKIKx9om9KxjxKws9LniB8f7zh3VFNfgHk/LhqqqB5LKw2rt2O5Nbd9FLxZS99RStKh4gzikIKHaq7q12TWmFXo/a8aUGxUvBHy/Urynbt/DvTVvo4WiRJV2MBxNO723C3sxIclho3YIeSwTQyJ3DkmF93215SF2AQhcJ1vb/9cuhnhRctWVyh+HA1BV6q3uCe7seT6Ku8hI3UarS2bhjWMnHe1c63YlC3k8wyd7sFOYn4XwHGeLN7x+RAoGTMCAwEAAaOCAUkwggFFMBIGA1UdEwEB/wQIMAYBAf8CAQAwDgYDVR0PAQH/BAQDAgGGMB0GA1UdJQQWMBQGCCsGAQUFBwMBBggrBgEFBQcDAjA0BggrBgEFBQcBAQQoMCYwJAYIKwYBBQUHMAGGGGh0dHA6Ly9vY3NwLmRpZ2ljZXJ0LmNvbTBLBgNVHR8ERDBCMECgPqA8hjpodHRwOi8vY3JsNC5kaWdpY2VydC5jb20vRGlnaUNlcnRIaWdoQXNzdXJhbmNlRVZSb290Q0EuY3JsMD0GA1UdIAQ2MDQwMgYEVR0gADAqMCgGCCsGAQUFBwIBFhxodHRwczovL3d3dy5kaWdpY2VydC5jb20vQ1BTMB0GA1UdDgQWBBQ901Cl1qCt7vNKYApl0yHU+PjWDzAfBgNVHSMEGDAWgBSxPsNpA/i/RwHUmCYaCALvY2QrwzANBgkqhkiG9w0BAQsFAAOCAQEAnbbQkIbhhgLtxaDwNBx0wY12zIYKqPBKikLWP8ipTa18CK3mtlC4ohpNiAexKSHc59rGPCHg4xFJcKx6HQGkyhE6V6t9VypAdP3THYUYUN9XR3WhfVUgLkc3UHKMf4Ib0mKPLQNa2sPIoc4sUqIAY+tzunHISScjl2SFnjgOrWNoPLpSgVh5oywM395t6zHyuqB8bPEs1OG9d4Q3A84ytciagRpKkk47RpqF/oOi+Z6Mo8wNXrM9zwR4jxQUezKcxwCmXMS1oVWNWlZopCJwqjyBcdmdqEU79OX2olHdx3ti6G8MdOu42vi/hw15UJGQmxg7kVkn8TUoE6smftX3eg=="}],"version":"0303","random":"5d4b0fc4b4d3461cc5bb6f3fbf44cf046316b038b1292a3acd72eacb64cb36ef","selected_cipher_suite":"c02f","compression_method":"00"}},"reassembly_properties":{"reassembled":true},"src_ip":"17.178.96.59","dst_ip":"192.168.113.237","protocol":6,"src_port":443,"dst_port":47972,"event_start":1565200324.478364} -{"ip":{"version":4,"ttl":64,"id":"0075"},"fingerprints":{"tcp":"tcp/(40)()(40)(faf0)((020405b4)(04)(08)(01)(030307))"},"tcp":{"seq":2240071965,"timestamp":{"ts_val":666311986}},"src_ip":"192.168.113.237","dst_ip":"184.51.129.174","protocol":6,"src_port":50212,"dst_port":443,"event_start":1565200324.710898} -{"ip":{"version":4,"ttl":128,"id":"9b36"},"fingerprints":{"tcp_server":"tcp_server/(40)()(80)(faf0)((020405b4))"},"tcp_server":{"seq":2258297707},"src_ip":"184.51.129.174","dst_ip":"192.168.113.237","protocol":6,"src_port":443,"dst_port":50212,"event_start":1565200324.750130} -{"ip":{"version":4,"ttl":64,"id":"0077"},"fingerprints":{"tls":"tls/(0303)(130213031301c02cc030009fcca9cca8ccaac02bc02f009ec024c028006bc023c0270067c00ac0140039c009c0130033009d009c003d003c0035002f00ff)((0000)(000b000403000102)(000a000c000a001d0017001e00190018)(0023)(0016)(0017)(000d0030002e040305030603080708080809080a080b080408050806040105010601030302030301020103020202040205020602)(002b0009080304030303020301)(002d00020101)(0033))"},"tls":{"client":{"version":"0303","random":"5a53edebffa80cdc8f2fe5c2f65dcdafd4a0f7717b9a97b6a46b0e7a091def58","session_id":"313312e96be8a86aa80aa6f0087f4fbe3db6f156adf84a945f7af8e5faa4bbd0","cipher_suites":"130213031301c02cc030009fcca9cca8ccaac02bc02f009ec024c028006bc023c0270067c00ac0140039c009c0130033009d009c003d003c0035002f00ff","compression_methods":"00","server_name":"www.apple.com","session_ticket":"","features":"[\"0303\",\"130213031301c02cc030009fcca9cca8ccaac02bc02f009ec024c028006bc023c0270067c00ac0140039c009c0130033009d009c003d003c0035002f00ff\",[[\"0000\",\"001000000d7777772e6170706c652e636f6d\"],[\"000b\",\"03000102\"],[\"000a\",\"000a001d0017001e00190018\"],[\"0023\",\"\"],[\"0016\",\"\"],[\"0017\",\"\"],[\"000d\",\"002e040305030603080708080809080a080b080408050806040105010601030302030301020103020202040205020602\"],[\"002b\",\"080304030303020301\"],[\"002d\",\"0101\"],[\"0033\",\"0024001d0020af1843fbbd508d2f3bcd4acbab14c4cb92bc85d7b1130892bfee46209cadb419\"]]]"}},"src_ip":"192.168.113.237","dst_ip":"184.51.129.174","protocol":6,"src_port":50212,"dst_port":443,"event_start":1565200324.750395} -{"ip":{"version":4,"ttl":128,"id":"9b3a"},"fingerprints":{"tls_server":"tls_server/(0303)(c030)((ff01)(0000)(000b000403000102)(0023))"},"tls":{"server":{"certs":[{"base64":"MIIG8TCCBdmgAwIBAgIQD45OTJz1XqX+Lpsrfv/ejzANBgkqhkiG9w0BAQsFADB1MQswCQYDVQQGEwJVUzEVMBMGA1UEChMMRGlnaUNlcnQgSW5jMRkwFwYDVQQLExB3d3cuZGlnaWNlcnQuY29tMTQwMgYDVQQDEytEaWdpQ2VydCBTSEEyIEV4dGVuZGVkIFZhbGlkYXRpb24gU2VydmVyIENBMB4XDTE5MDMwNzAwMDAwMFoXDTIwMDMwNzEyMDAwMFowge4xHTAbBgNVBA8MFFByaXZhdGUgT3JnYW5pemF0aW9uMRMwEQYLKwYBBAGCNzwCAQMTAlVTMRswGQYLKwYBBAGCNzwCAQITCkNhbGlmb3JuaWExETAPBgNVBAUTCEMwODA2NTkyMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTESMBAGA1UEBxMJQ3VwZXJ0aW5vMRMwEQYDVQQKEwpBcHBsZSBJbmMuMSUwIwYDVQQLExxJbnRlcm5ldCBTZXJ2aWNlcyBmb3IgQWthbWFpMRYwFAYDVQQDEw13d3cuYXBwbGUuY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEA7V5dxoW+5Sp4eh93H0IX6sHjda7JOHrgz5/rukdCz2N1JtNMjmwvx7wcuzfJpaDTj+o9AsjoBqGnK0x7kVW8UavnyLiopkk+lEXxAJAmubWvtaAiQSwQUovZ8JHlQHZg/cKx/tBVw08YfSAADItBLC3BCsDhLt74R4SyNk4DX3eQ9vVg2KolEOs3OAN/S0Y2di5m/hjkmzHs1SrbYJDXoNWreZwB9qyHiHNDCOBI8AmsQUBg5JynzL0vx10yMi5C12kvRjDTbhe6HKa6vLViU4nHSu+5+A8lL7R6XAX75P0TRxv/YG9A8g8tUzg/IYdNCLEb09qr1Z6UaUOjol7x6QIDAQABo4IDATCCAv0wHwYDVR0jBBgwFoAUPdNQpdagre7zSmAKZdMh1Pj41g8wHQYDVR0OBBYEFNj1/23cljBcrYB1/87F950Wc8sWMCoGA1UdEQQjMCGCEGltYWdlcy5hcHBsZS5jb22CDXd3dy5hcHBsZS5jb20wDgYDVR0PAQH/BAQDAgWgMB0GA1UdJQQWMBQGCCsGAQUFBwMBBggrBgEFBQcDAjB1BgNVHR8EbjBsMDSgMqAwhi5odHRwOi8vY3JsMy5kaWdpY2VydC5jb20vc2hhMi1ldi1zZXJ2ZXItZzIuY3JsMDSgMqAwhi5odHRwOi8vY3JsNC5kaWdpY2VydC5jb20vc2hhMi1ldi1zZXJ2ZXItZzIuY3JsMEsGA1UdIAREMEIwNwYJYIZIAYb9bAIBMCowKAYIKwYBBQUHAgEWHGh0dHBzOi8vd3d3LmRpZ2ljZXJ0LmNvbS9DUFMwBwYFZ4EMAQEwgYgGCCsGAQUFBwEBBHwwejAkBggrBgEFBQcwAYYYaHR0cDovL29jc3AuZGlnaWNlcnQuY29tMFIGCCsGAQUFBzAChkZodHRwOi8vY2FjZXJ0cy5kaWdpY2VydC5jb20vRGlnaUNlcnRTSEEyRXh0ZW5kZWRWYWxpZGF0aW9uU2VydmVyQ0EuY3J0MAkGA1UdEwQCMAAwggEEBgorBgEEAdZ5AgQCBIH1BIHyAPAAdgC72d+8H4pxtZOUI5eqkntHOFeVCqtS6BqQlmQ2jh7RhQAAAWlYQtEGAAAEAwBHMEUCIGiBDFSIRXrGhLhlm/2cNID2OJHvz1j5/fNQb62OoK3oAiEAzjKdWz2ii7YESO4BJmzTUKHqfyUMACpCbUINE8CphbwAdgBWFAaaL9fC7NP14b1Esj7HRna5vJkRXMDvlJhV1onQ3QAAAWlYQtFEAAAEAwBHMEUCIEvUZFLTUvA+2NQ9xUBy7cMEjDwWRl04ArqiHlKq4dq2AiEAo14va8y5NNmkAHDhOpm0DSVt01l3wpiMaqCup+EGczIwDQYJKoZIhvcNAQELBQADggEBAD/ZoRmzfFalieWiMzPj/Lsp29dpdjEvaZeQoQwRC1rLq0FmspvfcdbckpG2F4vTnIM83HynKV26OJebDQfgRsonX0GgwIQeRwDch3n9rz40wm2xRwxSFIGssmy0MLJBYXcHlgVbJjailMJww83BFawzDWBo+hmVPigU3hkV8ktDqwC/VOOvWikPMsvMvn8HMPbZSeYnH8A7nD0u0WzFtg6NF9xIXB/Bfku6jEPKr5l2iJukaGD6wtOH7zkWjEk2LAn5Byoue2E+dnbvdJalrv9rTPd/lkG+nAlBuooc/cJK4QqofnuomKgBXavv2zaz5pNdJwwmwzOTdK95geXURk4="},{"base64":"MIIEtjCCA56gAwIBAgIQDHmpRLCMEZUgkmFf4msdgzANBgkqhkiG9w0BAQsFADBsMQswCQYDVQQGEwJVUzEVMBMGA1UEChMMRGlnaUNlcnQgSW5jMRkwFwYDVQQLExB3d3cuZGlnaWNlcnQuY29tMSswKQYDVQQDEyJEaWdpQ2VydCBIaWdoIEFzc3VyYW5jZSBFViBSb290IENBMB4XDTEzMTAyMjEyMDAwMFoXDTI4MTAyMjEyMDAwMFowdTELMAkGA1UEBhMCVVMxFTATBgNVBAoTDERpZ2lDZXJ0IEluYzEZMBcGA1UECxMQd3d3LmRpZ2ljZXJ0LmNvbTE0MDIGA1UEAxMrRGlnaUNlcnQgU0hBMiBFeHRlbmRlZCBWYWxpZGF0aW9uIFNlcnZlciBDQTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANdTpARR+JmmFkhLZyeqk0nQOe0MsLAAh/FnKIaFjI5j2ryxQDji0/XspQUYuD0+xZkXMuwYjPrxDKZkIYXLBxA0sFKIKx9om9KxjxKws9LniB8f7zh3VFNfgHk/LhqqqB5LKw2rt2O5Nbd9FLxZS99RStKh4gzikIKHaq7q12TWmFXo/a8aUGxUvBHy/Urynbt/DvTVvo4WiRJV2MBxNO723C3sxIclho3YIeSwTQyJ3DkmF93215SF2AQhcJ1vb/9cuhnhRctWVyh+HA1BV6q3uCe7seT6Ku8hI3UarS2bhjWMnHe1c63YlC3k8wyd7sFOYn4XwHGeLN7x+RAoGTMCAwEAAaOCAUkwggFFMBIGA1UdEwEB/wQIMAYBAf8CAQAwDgYDVR0PAQH/BAQDAgGGMB0GA1UdJQQWMBQGCCsGAQUFBwMBBggrBgEFBQcDAjA0BggrBgEFBQcBAQQoMCYwJAYIKwYBBQUHMAGGGGh0dHA6Ly9vY3NwLmRpZ2ljZXJ0LmNvbTBLBgNVHR8ERDBCMECgPqA8hjpodHRwOi8vY3JsNC5kaWdpY2VydC5jb20vRGlnaUNlcnRIaWdoQXNzdXJhbmNlRVZSb290Q0EuY3JsMD0GA1UdIAQ2MDQwMgYEVR0gADAqMCgGCCsGAQUFBwIBFhxodHRwczovL3d3dy5kaWdpY2VydC5jb20vQ1BTMB0GA1UdDgQWBBQ901Cl1qCt7vNKYApl0yHU+PjWDzAfBgNVHSMEGDAWgBSxPsNpA/i/RwHUmCYaCALvY2QrwzANBgkqhkiG9w0BAQsFAAOCAQEAnbbQkIbhhgLtxaDwNBx0wY12zIYKqPBKikLWP8ipTa18CK3mtlC4ohpNiAexKSHc59rGPCHg4xFJcKx6HQGkyhE6V6t9VypAdP3THYUYUN9XR3WhfVUgLkc3UHKMf4Ib0mKPLQNa2sPIoc4sUqIAY+tzunHISScjl2SFnjgOrWNoPLpSgVh5oywM395t6zHyuqB8bPEs1OG9d4Q3A84ytciagRpKkk47RpqF/oOi+Z6Mo8wNXrM9zwR4jxQUezKcxwCmXMS1oVWNWlZopCJwqjyBcdmdqEU79OX2olHdx3ti6G8MdOu42vi/hw15UJGQmxg7kVkn8TUoE6smftX3eg=="}],"version":"0303","random":"77b555cb5a305d1c3f22a64a35223099986be5e74f4c7a1fd4ef8678f2be8f83","selected_cipher_suite":"c030","compression_method":"00","session_ticket":""}},"reassembly_properties":{"reassembled":true},"src_ip":"184.51.129.174","dst_ip":"192.168.113.237","protocol":6,"src_port":443,"dst_port":50212,"event_start":1565200324.790053} -{"ip":{"version":4,"ttl":64,"id":"d0e3"},"dns":{"base64":"rXEBAAABAAAAAAAABXlvdXR1AmJlAAABAAE="},"src_ip":"192.168.113.237","dst_ip":"192.168.113.2","protocol":17,"src_port":55237,"dst_port":53,"event_start":1565200324.977294} -{"ip":{"version":4,"ttl":64,"id":"d0e4"},"dns":{"base64":"e4EBAAABAAAAAAAABXlvdXR1AmJlAAAcAAE="},"src_ip":"192.168.113.237","dst_ip":"192.168.113.2","protocol":17,"src_port":42980,"dst_port":53,"event_start":1565200324.978085} -{"ip":{"version":4,"ttl":128,"id":"9b6d"},"dns":{"base64":"rXGBgAABAAEABgAMBXlvdXR1AmJlAAABAAHADAABAAEAAAAFAASs2aSuwBIAAgABAAAABQALAXkCbnMDZG5zwBLAEgACAAEAAAAFAAQBYsA4wBIAAgABAAAABQAEAXjAOMASAAIAAQAAAAUABAFjwDjAEgACAAEAAAAFAAQBZMA4wBIAAgABAAAABQAEAWHAOMCNAAEAAQAAAAUABMIABgHATQABAAEAAAAFAATCACUBwG0AAQABAAAABQAEwgArAcB9AAEAAQAAAAUABMIALAHAXQABAAEAAAAFAATCAAEKwDYAAQABAAAABQAEeB39CMCNABwAAQAAAAUAECABBngACQAAAAAAAAAAAAHATQAcAAEAAAAFABAgAQZ4AGQAAAAAAAAAAAABwG0AHAABAAAABQAQIAEGeABoAAAAAAAAAAAAAcB9ABwAAQAAAAUAECABBngAbAAAAAAAAAAAAAHAXQAcAAEAAAAFABAgAQZ4AAQAAAAAAAAAAAAKwDYAHAABAAAABQAQIAENzQAHAAAAAAAAAAAACA=="},"src_ip":"192.168.113.2","dst_ip":"192.168.113.237","protocol":17,"src_port":53,"dst_port":55237,"event_start":1565200325.011218} -{"ip":{"version":4,"ttl":128,"id":"9b6e"},"dns":{"base64":"e4GBgAABAAEABgAMBXlvdXR1AmJlAAAcAAHADAAcAAEAAAAFABAmB/iwQAQIFQAAAAAAACAOwBIAAgABAAAABQALAXkCbnMDZG5zwBLAEgACAAEAAAAFAAQBYsBEwBIAAgABAAAABQAEAWTARMASAAIAAQAAAAUABAFhwETAEgACAAEAAAAFAAQBY8BEwBIAAgABAAAABQAEAXjARMB5AAEAAQAAAAUABMIABgHAWQABAAEAAAAFAATCACUBwIkAAQABAAAABQAEwgArAcBpAAEAAQAAAAUABMIALAHAmQABAAEAAAAFAATCAAEKwEIAAQABAAAABQAEeB39CMB5ABwAAQAAAAUAECABBngACQAAAAAAAAAAAAHAWQAcAAEAAAAFABAgAQZ4AGQAAAAAAAAAAAABwIkAHAABAAAABQAQIAEGeABoAAAAAAAAAAAAAcBpABwAAQAAAAUAECABBngAbAAAAAAAAAAAAAHAmQAcAAEAAAAFABAgAQZ4AAQAAAAAAAAAAAAKwEIAHAABAAAABQAQIAENzQAHAAAAAAAAAAAACA=="},"src_ip":"192.168.113.2","dst_ip":"192.168.113.237","protocol":17,"src_port":53,"dst_port":42980,"event_start":1565200325.017370} -{"ip":{"version":4,"ttl":64,"id":"b8a9"},"fingerprints":{"tcp":"tcp/(40)()(40)(faf0)((020405b4)(04)(08)(01)(030307))"},"tcp":{"seq":1669296412,"timestamp":{"ts_val":4199236518}},"src_ip":"192.168.113.237","dst_ip":"172.217.164.174","protocol":6,"src_port":56316,"dst_port":443,"event_start":1565200325.018107} -{"ip":{"version":4,"ttl":128,"id":"9b6f"},"fingerprints":{"tcp_server":"tcp_server/(40)()(80)(faf0)((020405b4))"},"tcp_server":{"seq":3506010352},"src_ip":"172.217.164.174","dst_ip":"192.168.113.237","protocol":6,"src_port":443,"dst_port":56316,"event_start":1565200325.063708} -{"ip":{"version":4,"ttl":64,"id":"b8ab"},"fingerprints":{"tls":"tls/(0303)(130213031301c02cc030009fcca9cca8ccaac02bc02f009ec024c028006bc023c0270067c00ac0140039c009c0130033009d009c003d003c0035002f00ff)((0000)(000b000403000102)(000a000c000a001d0017001e00190018)(0023)(0016)(0017)(000d0030002e040305030603080708080809080a080b080408050806040105010601030302030301020103020202040205020602)(002b0009080304030303020301)(002d00020101)(0033))"},"tls":{"client":{"version":"0303","random":"a912afacdb5db486c7067b03e1a799389051cdafe826d5686b1fad624548c023","session_id":"1f4e3e7f3d43ef68cde0572a55093e3c9936e449757951df72acee84cd368dba","cipher_suites":"130213031301c02cc030009fcca9cca8ccaac02bc02f009ec024c028006bc023c0270067c00ac0140039c009c0130033009d009c003d003c0035002f00ff","compression_methods":"00","server_name":"youtu.be","session_ticket":"","features":"[\"0303\",\"130213031301c02cc030009fcca9cca8ccaac02bc02f009ec024c028006bc023c0270067c00ac0140039c009c0130033009d009c003d003c0035002f00ff\",[[\"0000\",\"000b000008796f7574752e6265\"],[\"000b\",\"03000102\"],[\"000a\",\"000a001d0017001e00190018\"],[\"0023\",\"\"],[\"0016\",\"\"],[\"0017\",\"\"],[\"000d\",\"002e040305030603080708080809080a080b080408050806040105010601030302030301020103020202040205020602\"],[\"002b\",\"080304030303020301\"],[\"002d\",\"0101\"],[\"0033\",\"0024001d00200b413b1e288ef52604da2688b49ac96d5433922704512b77322e69abd9053a27\"]]]"}},"src_ip":"192.168.113.237","dst_ip":"172.217.164.174","protocol":6,"src_port":56316,"dst_port":443,"event_start":1565200325.064000} -{"ip":{"version":4,"ttl":128,"id":"9b71"},"fingerprints":{"tls_server":"tls_server/(0303)(1302)((0033)(002b00020304))"},"tls":{"server":{"version":"0303","random":"b8da5fc8bac5f849acc89c89e78850544d1c44b247db72170adde643e8d031f0","selected_cipher_suite":"1302","compression_method":"00"}},"src_ip":"172.217.164.174","dst_ip":"192.168.113.237","protocol":6,"src_port":443,"dst_port":56316,"event_start":1565200325.111150} -{"ip":{"version":4,"ttl":64,"id":"4d1d"},"fingerprints":{"tcp":"tcp/(40)()(40)(faf0)((020405b4)(04)(08)(01)(030307))"},"tcp":{"seq":3260187884,"timestamp":{"ts_val":276724388}},"src_ip":"192.168.113.237","dst_ip":"172.217.5.238","protocol":6,"src_port":39146,"dst_port":443,"event_start":1565200325.260947} -{"ip":{"version":4,"ttl":128,"id":"9b7b"},"fingerprints":{"tcp_server":"tcp_server/(40)()(80)(faf0)((020405b4))"},"tcp_server":{"seq":2040238499},"src_ip":"172.217.5.238","dst_ip":"192.168.113.237","protocol":6,"src_port":443,"dst_port":39146,"event_start":1565200325.300769} -{"ip":{"version":4,"ttl":64,"id":"4d1f"},"fingerprints":{"tls":"tls/(0303)(130213031301c02cc030009fcca9cca8ccaac02bc02f009ec024c028006bc023c0270067c00ac0140039c009c0130033009d009c003d003c0035002f00ff)((0000)(000b000403000102)(000a000c000a001d0017001e00190018)(0023)(0016)(0017)(000d0030002e040305030603080708080809080a080b080408050806040105010601030302030301020103020202040205020602)(002b0009080304030303020301)(002d00020101)(0033))"},"tls":{"client":{"version":"0303","random":"aa55e771e2a15500a3589b35d2c13d06d93823e25e9fe47c331763c7ab500fb0","session_id":"4c96534c0ffc38b19e2101a52d9b33409d90361b2b09757bbb7a5b0e41b3ef8f","cipher_suites":"130213031301c02cc030009fcca9cca8ccaac02bc02f009ec024c028006bc023c0270067c00ac0140039c009c0130033009d009c003d003c0035002f00ff","compression_methods":"00","server_name":"www.youtube.com","session_ticket":"","features":"[\"0303\",\"130213031301c02cc030009fcca9cca8ccaac02bc02f009ec024c028006bc023c0270067c00ac0140039c009c0130033009d009c003d003c0035002f00ff\",[[\"0000\",\"001200000f7777772e796f75747562652e636f6d\"],[\"000b\",\"03000102\"],[\"000a\",\"000a001d0017001e00190018\"],[\"0023\",\"\"],[\"0016\",\"\"],[\"0017\",\"\"],[\"000d\",\"002e040305030603080708080809080a080b080408050806040105010601030302030301020103020202040205020602\"],[\"002b\",\"080304030303020301\"],[\"002d\",\"0101\"],[\"0033\",\"0024001d0020d29bdbc7144ee4c5f8ae47e1aed24d80956a9204db2bca8f34cc7f008216ab48\"]]]"}},"src_ip":"192.168.113.237","dst_ip":"172.217.5.238","protocol":6,"src_port":39146,"dst_port":443,"event_start":1565200325.300999} -{"ip":{"version":4,"ttl":128,"id":"9b7d"},"fingerprints":{"tls_server":"tls_server/(0303)(1302)((0033)(002b00020304))"},"tls":{"server":{"version":"0303","random":"9fcc95b48016f472277841aab3222c3487dd548a7714b40bc5c294d22fb0090e","selected_cipher_suite":"1302","compression_method":"00"}},"src_ip":"172.217.5.238","dst_ip":"192.168.113.237","protocol":6,"src_port":443,"dst_port":39146,"event_start":1565200325.350827} -{"ip":{"version":4,"ttl":64,"id":"d15b"},"dns":{"base64":"V+wBAAABAAAAAAAABXZpbWVvA2NvbQAAAQAB"},"src_ip":"192.168.113.237","dst_ip":"192.168.113.2","protocol":17,"src_port":45620,"dst_port":53,"event_start":1565200326.897365} -{"ip":{"version":4,"ttl":64,"id":"d15c"},"dns":{"base64":"Nf8BAAABAAAAAAAABXZpbWVvA2NvbQAAHAAB"},"src_ip":"192.168.113.237","dst_ip":"192.168.113.2","protocol":17,"src_port":40905,"dst_port":53,"event_start":1565200326.897562} -{"ip":{"version":4,"ttl":128,"id":"9ca2"},"dns":{"base64":"V+yBgAABAAQADQAMBXZpbWVvA2NvbQAAAQABwAwAAQABAAAABQAEl2XA2cAMAAEAAQAAAAUABJdlQNnADAABAAEAAAAFAASXZQDZwAwAAQABAAAABQAEl2WA2cASAAIAAQAAAAUAFAFmDGd0bGQtc2VydmVycwNuZXQAwBIAAgABAAAABQAEAWLAacASAAIAAQAAAAUABAFhwGnAEgACAAEAAAAFAAQBY8BpwBIAAgABAAAABQAEAWzAacASAAIAAQAAAAUABAFtwGnAEgACAAEAAAAFAAQBa8BpwBIAAgABAAAABQAEAWTAacASAAIAAQAAAAUABAFowGnAEgACAAEAAAAFAAQBZcBpwBIAAgABAAAABQAEAWrAacASAAIAAQAAAAUABAFnwGnAEgACAAEAAAAFAAQBacBpwJcAAQABAAAABQAEwAUGHsCHAAEAAQAAAAUABMAhDh7ApwABAAEAAAAFAATAGlwewOcAAQABAAAABQAEwB9QHsEHAAEAAQAAAAUABMAMXh7AZwABAAEAAAAFAATAIzMewScAAQABAAAABQAEwCpdHsD3AAEAAQAAAAUABMA2cB7BNwABAAEAAAAFAATAK6wewRcAAQABAAAABQAEwDBPHsDXAAEAAQAAAAUABMA0sh7AtwABAAEAAAAFAATAKaIe"},"src_ip":"192.168.113.2","dst_ip":"192.168.113.237","protocol":17,"src_port":53,"dst_port":45620,"event_start":1565200326.928861} -{"ip":{"version":4,"ttl":128,"id":"9ca3"},"dns":{"base64":"Nf+BgAABAAAAAQAABXZpbWVvA2NvbQAAHAABwAwABgABAAAABQBBBW5zLTcwCWF3c2Rucy0wOMASEWF3c2Rucy1ob3N0bWFzdGVyBmFtYXpvbsASeAuCBAABUYAAABwgAAk6gAAAASw="},"src_ip":"192.168.113.2","dst_ip":"192.168.113.237","protocol":17,"src_port":53,"dst_port":40905,"event_start":1565200326.929205} -{"ip":{"version":4,"ttl":64,"id":"9668"},"fingerprints":{"tcp":"tcp/(40)()(40)(faf0)((020405b4)(04)(08)(01)(030307))"},"tcp":{"seq":2207276539,"timestamp":{"ts_val":4096469444}},"src_ip":"192.168.113.237","dst_ip":"151.101.192.217","protocol":6,"src_port":42704,"dst_port":443,"event_start":1565200326.929453} -{"ip":{"version":4,"ttl":128,"id":"9ca4"},"fingerprints":{"tcp_server":"tcp_server/(40)()(80)(faf0)((020405b4))"},"tcp_server":{"seq":3639605945},"src_ip":"151.101.192.217","dst_ip":"192.168.113.237","protocol":6,"src_port":443,"dst_port":42704,"event_start":1565200326.966419} -{"ip":{"version":4,"ttl":64,"id":"966a"},"fingerprints":{"tls":"tls/(0303)(130213031301c02cc030009fcca9cca8ccaac02bc02f009ec024c028006bc023c0270067c00ac0140039c009c0130033009d009c003d003c0035002f00ff)((0000)(000b000403000102)(000a000c000a001d0017001e00190018)(0023)(0016)(0017)(000d0030002e040305030603080708080809080a080b080408050806040105010601030302030301020103020202040205020602)(002b0009080304030303020301)(002d00020101)(0033))"},"tls":{"client":{"version":"0303","random":"4368a24e8cf95ac05b85778bdddcf6041d58bed47345a2b6ffc9122374bb8405","session_id":"9a27a12c2f191da4e17b70a8c5a780f6f736e1d4578abb9d4a97979fb1d9604d","cipher_suites":"130213031301c02cc030009fcca9cca8ccaac02bc02f009ec024c028006bc023c0270067c00ac0140039c009c0130033009d009c003d003c0035002f00ff","compression_methods":"00","server_name":"vimeo.com","session_ticket":"","features":"[\"0303\",\"130213031301c02cc030009fcca9cca8ccaac02bc02f009ec024c028006bc023c0270067c00ac0140039c009c0130033009d009c003d003c0035002f00ff\",[[\"0000\",\"000c00000976696d656f2e636f6d\"],[\"000b\",\"03000102\"],[\"000a\",\"000a001d0017001e00190018\"],[\"0023\",\"\"],[\"0016\",\"\"],[\"0017\",\"\"],[\"000d\",\"002e040305030603080708080809080a080b080408050806040105010601030302030301020103020202040205020602\"],[\"002b\",\"080304030303020301\"],[\"002d\",\"0101\"],[\"0033\",\"0024001d00203fc8d9559545b2bc77eae93fb8230fad3c88bdab711b069564d4d6d49372d43a\"]]]"}},"src_ip":"192.168.113.237","dst_ip":"151.101.192.217","protocol":6,"src_port":42704,"dst_port":443,"event_start":1565200326.966862} -{"ip":{"version":4,"ttl":128,"id":"9ca8"},"fingerprints":{"tls_server":"tls_server/(0303)(c02f)((ff01)(0000)(000b000403000102)(0023)(0017))"},"tls":{"server":{"certs":[{"base64":"MIIGlTCCBX2gAwIBAgIQAaiOYIyyE8CWikH8FKdkezANBgkqhkiG9w0BAQsFADBNMQswCQYDVQQGEwJVUzEVMBMGA1UEChMMRGlnaUNlcnQgSW5jMScwJQYDVQQDEx5EaWdpQ2VydCBTSEEyIFNlY3VyZSBTZXJ2ZXIgQ0EwHhcNMTgwODI0MDAwMDAwWhcNMjAwNDAyMTIwMDAwWjBeMQswCQYDVQQGEwJVUzERMA8GA1UECBMITmV3IFlvcmsxETAPBgNVBAcTCE5ldyBZb3JrMRMwEQYDVQQKEwpWaW1lbywgTExDMRQwEgYDVQQDDAsqLnZpbWVvLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAN46nW41HzlpbDbnAO56ngIsavFmnUd5yiJxZqoA6HaDRiGsKkZxAHZSlQJ49ZFEF9iFbqywT4vhjf2x3yLAwwxBbNpP1j3qOIiFZJvJUE8F6wQO7vG5xGTQAQXuiZTUPNpm1Jv/b1jT86S8MXVQCR8uaBa5XcIlvWQykg72NFkMOH+8IlraeUQl03dHSz5t08NranCT6MLhpvMxH2mBZhANWTqV2yWKnAqjb+h8vHbNsKC75P9KukK38mY2f9xPQaVvzezf2Tv/M/N0Oc8DUzkikT5AjkUUr3uas8lb39tFRdXAbB0o+UECt3StONweQJtlOO1j8vLb4weVE10pOw0CAwEAAaOCA14wggNaMB8GA1UdIwQYMBaAFA+AYRyCMWHVLyjnjUY4tCzhxtniMB0GA1UdDgQWBBQX+FWhE5Fzd2lShQjYOnW6cEsVZDAhBgNVHREEGjAYggsqLnZpbWVvLmNvbYIJdmltZW8uY29tMA4GA1UdDwEB/wQEAwIFoDAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwawYDVR0fBGQwYjAvoC2gK4YpaHR0cDovL2NybDMuZGlnaWNlcnQuY29tL3NzY2Etc2hhMi1nNi5jcmwwL6AtoCuGKWh0dHA6Ly9jcmw0LmRpZ2ljZXJ0LmNvbS9zc2NhLXNoYTItZzYuY3JsMEwGA1UdIARFMEMwNwYJYIZIAYb9bAEBMCowKAYIKwYBBQUHAgEWHGh0dHBzOi8vd3d3LmRpZ2ljZXJ0LmNvbS9DUFMwCAYGZ4EMAQICMHwGCCsGAQUFBwEBBHAwbjAkBggrBgEFBQcwAYYYaHR0cDovL29jc3AuZGlnaWNlcnQuY29tMEYGCCsGAQUFBzAChjpodHRwOi8vY2FjZXJ0cy5kaWdpY2VydC5jb20vRGlnaUNlcnRTSEEyU2VjdXJlU2VydmVyQ0EuY3J0MAwGA1UdEwEB/wQCMAAwggF9BgorBgEEAdZ5AgQCBIIBbQSCAWkBZwB2AKS5CZC0GFgUh7sTosxncAo8NZgE+RvfuON3zQ7IDdwQAAABZWyX6G4AAAQDAEcwRQIhAPwDFjuKlEm+zUyRn3PvA5I3YgamRrEbMMnY+IcWOR3lAiBb5GlNGDAI4LYY/gnlWQIjenIhfq9bAay2paMwzHfVLAB2AId1v+dZfPiMQ5lfvfNu/1aNR1Y2/0q1YMG06v9eoIMPAAABZWyX6G4AAAQDAEcwRQIgLARzuiPmv7bduu5M0hvKwpMdnqZdslLfpXNZLm+A6cgCIQD5XsLbcd42bVhofRJ+EbeiCiwslOMeHlwsni4abZD/AQB1ALvZ37wfinG1k5Qjl6qSe0c4V5UKq1LoGpCWZDaOHtGFAAABZWyX56EAAAQDAEYwRAIgTctw2guun/asVLNbDeIhv2nqFLDezQB5aIhzbf13QhYCIEevrRV+w20kyxQ5/ujQtTbjKjYfrEwOwp1oHhjbAJJuMA0GCSqGSIb3DQEBCwUAA4IBAQAnRC6rW/JPfntMo/scqBV/52WMHt3+cLCWYZBrxG4sNj29wuzFwHBdpdlqD9GNLElu9vcllnAqzmria6KsZ0lLeU1WWb5vl5u7Q5k6o4OVuziFF9O7198prtuf2u+tUG/zHEL0KhkPD0mu+UzispcYkuntD2kSiZ3LCrKxL5zpUuFC9D2r4P6b32fmg53Fck76P/qZe+niplaV8rrMGgFbPreCTrlyd4F1Xm5/0tyyLPsnIDN/uBjzuvkgvmw4DkoYOCwMCJftC7Ajix7vs0/KoYgc5r8Iz8twzdacEM62ZWR0obQ9du8Qys7TLlKa1eiiXVJ27zyMjxA8svFmUmBc"},{"base64":"MIIElDCCA3ygAwIBAgIQAf2j627KdciIQ4tyS8+8kTANBgkqhkiG9w0BAQsFADBhMQswCQYDVQQGEwJVUzEVMBMGA1UEChMMRGlnaUNlcnQgSW5jMRkwFwYDVQQLExB3d3cuZGlnaWNlcnQuY29tMSAwHgYDVQQDExdEaWdpQ2VydCBHbG9iYWwgUm9vdCBDQTAeFw0xMzAzMDgxMjAwMDBaFw0yMzAzMDgxMjAwMDBaME0xCzAJBgNVBAYTAlVTMRUwEwYDVQQKEwxEaWdpQ2VydCBJbmMxJzAlBgNVBAMTHkRpZ2lDZXJ0IFNIQTIgU2VjdXJlIFNlcnZlciBDQTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANyuWJBNwcQwFZA1W248ghX1LFy949v/cUP6ZCWA1O4Yok3wZtAKc24RmDYXZK83nf36QYSvx6+M/hpzTc8zl5CilodTgyu5pnVILR1WN3vaMTIa16yrBvSqXUu3R0bdKpPDkC55gIDvEwRqFDu1m5K+wgdlTvza/P96rtxcflUxDOg5B6TXvi/TC2rSsd9f/ld0Uzs1gN2ujkSYs58O09rg1/RrKatEp0tYhG2SS4HD2nOLEpdIkARFdRrdNzGXkujNVA075ME/OV4uuPNcfhCOhkEAjUVmR7ChZc6gqikJTvOX6+guqw9ypzAO+sf0/RR3w6RbKFfCs/mC/bdFWJsCAwEAAaOCAVowggFWMBIGA1UdEwEB/wQIMAYBAf8CAQAwDgYDVR0PAQH/BAQDAgGGMDQGCCsGAQUFBwEBBCgwJjAkBggrBgEFBQcwAYYYaHR0cDovL29jc3AuZGlnaWNlcnQuY29tMHsGA1UdHwR0MHIwN6A1oDOGMWh0dHA6Ly9jcmwzLmRpZ2ljZXJ0LmNvbS9EaWdpQ2VydEdsb2JhbFJvb3RDQS5jcmwwN6A1oDOGMWh0dHA6Ly9jcmw0LmRpZ2ljZXJ0LmNvbS9EaWdpQ2VydEdsb2JhbFJvb3RDQS5jcmwwPQYDVR0gBDYwNDAyBgRVHSAAMCowKAYIKwYBBQUHAgEWHGh0dHBzOi8vd3d3LmRpZ2ljZXJ0LmNvbS9DUFMwHQYDVR0OBBYEFA+AYRyCMWHVLyjnjUY4tCzhxtniMB8GA1UdIwQYMBaAFAPeUDVW0Uy7ZvCj4hsbw5eyPdFVMA0GCSqGSIb3DQEBCwUAA4IBAQAjPt9L0jFCpbZ+QlwaRMxp0Wi0XUvgBCFsS+JtzLHgl4+mUwnNqipl5TlPHoOlblyYoiQm5vuh7ZPHLgLGTUq/sELfeNqzqPlt/yGFUzZgTHbO7Djc1lGA8MXW5dRNJ2Srm8c+cftIl7gzbckTB+6WohsYFfZcTEDts8Ls/3HB40f/1LkAtDdC2iDJ6m6K7hQGrn2iWZiIqBtvLfTyyRRfJs8sjX7tN8Cp1Tm5gr8ZDOo0rwAhaPitc+LJMto4JQtV05od8GiG7S5BNO98pVAdvzr508EIDObtHopYJeS4d60tbvVS3bR0j6tJLp07kzQoH3jOlOrHvdPJbRzeXDLz"}],"version":"0303","random":"76c3077be4e2818f7ee95c5395268d2c1ccb1909d15cb6a386c20421f618b37d","selected_cipher_suite":"c02f","compression_method":"00","session_ticket":""}},"reassembly_properties":{"reassembled":true},"src_ip":"151.101.192.217","dst_ip":"192.168.113.237","protocol":6,"src_port":443,"dst_port":42704,"event_start":1565200327.008493} -{"ip":{"version":4,"ttl":64,"id":"d172"},"dns":{"base64":"dFoBAAABAAAAAAAAA2dvbwJnbAAAAQAB"},"src_ip":"192.168.113.237","dst_ip":"192.168.113.2","protocol":17,"src_port":51350,"dst_port":53,"event_start":1565200327.245395} -{"ip":{"version":4,"ttl":64,"id":"d173"},"dns":{"base64":"B04BAAABAAAAAAAAA2dvbwJnbAAAHAAB"},"src_ip":"192.168.113.237","dst_ip":"192.168.113.2","protocol":17,"src_port":41171,"dst_port":53,"event_start":1565200327.245574} -{"ip":{"version":4,"ttl":128,"id":"9cc8"},"dns":{"base64":"dFqBgAABAAEADQAOA2dvbwJnbAAAAQABwAwAAQABAAAABQAErNkPbgAAAgABAAAABQAUAWkMcm9vdC1zZXJ2ZXJzA25ldAAAAAIAAQAAAAUABAFqwDUAAAIAAQAAAAUABAFhwDUAAAIAAQAAAAUABAFowDUAAAIAAQAAAAUABAFtwDUAAAIAAQAAAAUABAFlwDUAAAIAAQAAAAUABAFkwDUAAAIAAQAAAAUABAFiwDUAAAIAAQAAAAUABAFrwDUAAAIAAQAAAAUABAFmwDUAAAIAAQAAAAUABAFswDUAAAIAAQAAAAUABAFjwDUAAAIAAQAAAAUABAFnwDXAYQABAAEAAAAFAATGKQAEwKwAAQABAAAABQAExwkOycDoAAEAAQAAAAUABMAhBAzAnQABAAEAAAAFAATHB1sNwI4AAQABAAAABQAEwMvmCsDKAAEAAQAAAAUABMAFBfHA9wABAAEAAAAFAATAcCQEwHAAAQABAAAABQAExmG+NcAzAAEAAQAAAAUABMAklBHAUgABAAEAAAAFAATAOoAewLsAAQABAAAABQAEwQAOgcDZAAEAAQAAAAUABMcHUyrAfwABAAEAAAAFAATKDBshwGEAHAABAAAABQAQIAEFA7o+AAAAAAAAAAIAMA=="},"src_ip":"192.168.113.2","dst_ip":"192.168.113.237","protocol":17,"src_port":53,"dst_port":51350,"event_start":1565200327.277125} -{"ip":{"version":4,"ttl":128,"id":"9cc9"},"dns":{"base64":"B06BgAABAAEADQAOA2dvbwJnbAAAHAABwAwAHAABAAAABQAQJgf4sEAECBEAAAAAAAAgDgAAAgABAAAABQAUAWUMcm9vdC1zZXJ2ZXJzA25ldAAAAAIAAQAAAAUABAFkwEEAAAIAAQAAAAUABAFrwEEAAAIAAQAAAAUABAFhwEEAAAIAAQAAAAUABAFowEEAAAIAAQAAAAUABAFjwEEAAAIAAQAAAAUABAFiwEEAAAIAAQAAAAUABAFmwEEAAAIAAQAAAAUABAFpwEEAAAIAAQAAAAUABAFswEEAAAIAAQAAAAUABAFqwEEAAAIAAQAAAAUABAFtwEEAAAIAAQAAAAUABAFnwEHAfAABAAEAAAAFAATGKQAEwKkAAQABAAAABQAExwkOycCaAAEAAQAAAAUABMAhBAzAXgABAAEAAAAFAATHB1sNwD8AAQABAAAABQAEwMvmCsC4AAEAAQAAAAUABMAFBfHBAwABAAEAAAAFAATAcCQEwIsAAQABAAAABQAExmG+NcDHAAEAAQAAAAUABMAklBHA5QABAAEAAAAFAATAOoAewG0AAQABAAAABQAEwQAOgcDWAAEAAQAAAAUABMcHUyrA9AABAAEAAAAFAATKDBshwHwAHAABAAAABQAQIAEFA7o+AAAAAAAAAAIAMA=="},"src_ip":"192.168.113.2","dst_ip":"192.168.113.237","protocol":17,"src_port":53,"dst_port":41171,"event_start":1565200327.277462} -{"ip":{"version":4,"ttl":64,"id":"358d"},"fingerprints":{"tcp":"tcp/(40)()(40)(faf0)((020405b4)(04)(08)(01)(030307))"},"tcp":{"seq":2448227943,"timestamp":{"ts_val":1522252343}},"src_ip":"192.168.113.237","dst_ip":"172.217.15.110","protocol":6,"src_port":57322,"dst_port":443,"event_start":1565200327.277725} -{"ip":{"version":4,"ttl":128,"id":"9cca"},"fingerprints":{"tcp_server":"tcp_server/(40)()(80)(faf0)((020405b4))"},"tcp_server":{"seq":2519073457},"src_ip":"172.217.15.110","dst_ip":"192.168.113.237","protocol":6,"src_port":443,"dst_port":57322,"event_start":1565200327.316354} -{"ip":{"version":4,"ttl":64,"id":"358f"},"fingerprints":{"tls":"tls/(0303)(130213031301c02cc030009fcca9cca8ccaac02bc02f009ec024c028006bc023c0270067c00ac0140039c009c0130033009d009c003d003c0035002f00ff)((0000)(000b000403000102)(000a000c000a001d0017001e00190018)(0023)(0016)(0017)(000d0030002e040305030603080708080809080a080b080408050806040105010601030302030301020103020202040205020602)(002b0009080304030303020301)(002d00020101)(0033))"},"tls":{"client":{"version":"0303","random":"af7bf1e9c51bc0ccc3bfb2ab2b674039f63eb4b5e5387faea38a9dbf02027397","session_id":"af58bb5b32f02069b81eb25341aac329f5ef2470671e7e0a33bdb08fc3204b14","cipher_suites":"130213031301c02cc030009fcca9cca8ccaac02bc02f009ec024c028006bc023c0270067c00ac0140039c009c0130033009d009c003d003c0035002f00ff","compression_methods":"00","server_name":"goo.gl","session_ticket":"","features":"[\"0303\",\"130213031301c02cc030009fcca9cca8ccaac02bc02f009ec024c028006bc023c0270067c00ac0140039c009c0130033009d009c003d003c0035002f00ff\",[[\"0000\",\"0009000006676f6f2e676c\"],[\"000b\",\"03000102\"],[\"000a\",\"000a001d0017001e00190018\"],[\"0023\",\"\"],[\"0016\",\"\"],[\"0017\",\"\"],[\"000d\",\"002e040305030603080708080809080a080b080408050806040105010601030302030301020103020202040205020602\"],[\"002b\",\"080304030303020301\"],[\"002d\",\"0101\"],[\"0033\",\"0024001d0020814ffc046fc6a01ed2bade792aaca3369434bf87114b8fc19c6ca58e76861f3c\"]]]"}},"src_ip":"192.168.113.237","dst_ip":"172.217.15.110","protocol":6,"src_port":57322,"dst_port":443,"event_start":1565200327.316662} -{"ip":{"version":4,"ttl":128,"id":"9ccc"},"fingerprints":{"tls_server":"tls_server/(0303)(1302)((0033)(002b00020304))"},"tls":{"server":{"version":"0303","random":"dd66b79a9e14c6c292ae6dcb6b54d3d2533a524c77892d1cba0b1c224cf0ecdb","selected_cipher_suite":"1302","compression_method":"00"}},"src_ip":"172.217.15.110","dst_ip":"192.168.113.237","protocol":6,"src_port":443,"dst_port":57322,"event_start":1565200327.367706} -{"ip":{"version":4,"ttl":64,"id":"9ce4"},"fingerprints":{"tcp":"tcp/(40)()(40)(faf0)((020405b4)(04)(08)(01)(030307))"},"tcp":{"seq":3433058465,"timestamp":{"ts_val":1676994050}},"src_ip":"192.168.113.237","dst_ip":"172.217.164.141","protocol":6,"src_port":57010,"dst_port":443,"event_start":1565200327.644536} -{"ip":{"version":4,"ttl":128,"id":"9cd7"},"fingerprints":{"tcp_server":"tcp_server/(40)()(80)(faf0)((020405b4))"},"tcp_server":{"seq":1342043468},"src_ip":"172.217.164.141","dst_ip":"192.168.113.237","protocol":6,"src_port":443,"dst_port":57010,"event_start":1565200327.684676} -{"ip":{"version":4,"ttl":64,"id":"9ce6"},"fingerprints":{"tls":"tls/(0303)(130213031301c02cc030009fcca9cca8ccaac02bc02f009ec024c028006bc023c0270067c00ac0140039c009c0130033009d009c003d003c0035002f00ff)((0000)(000b000403000102)(000a000c000a001d0017001e00190018)(0023)(0016)(0017)(000d0030002e040305030603080708080809080a080b080408050806040105010601030302030301020103020202040205020602)(002b0009080304030303020301)(002d00020101)(0033))"},"tls":{"client":{"version":"0303","random":"d44fe7d6ad1cef012c9b846f5c87cada8301430193dffe01d278161bc86ebf8a","session_id":"df42d7c64d3a333d4b18e7252247b9d95da2cfe4260e429f64d0af50773c6f63","cipher_suites":"130213031301c02cc030009fcca9cca8ccaac02bc02f009ec024c028006bc023c0270067c00ac0140039c009c0130033009d009c003d003c0035002f00ff","compression_methods":"00","server_name":"accounts.google.com","session_ticket":"","features":"[\"0303\",\"130213031301c02cc030009fcca9cca8ccaac02bc02f009ec024c028006bc023c0270067c00ac0140039c009c0130033009d009c003d003c0035002f00ff\",[[\"0000\",\"00160000136163636f756e74732e676f6f676c652e636f6d\"],[\"000b\",\"03000102\"],[\"000a\",\"000a001d0017001e00190018\"],[\"0023\",\"\"],[\"0016\",\"\"],[\"0017\",\"\"],[\"000d\",\"002e040305030603080708080809080a080b080408050806040105010601030302030301020103020202040205020602\"],[\"002b\",\"080304030303020301\"],[\"002d\",\"0101\"],[\"0033\",\"0024001d0020df846f0a13b813b7594be1536b4cc99004b56029a07a051a66ef052d9c7cf06d\"]]]"}},"src_ip":"192.168.113.237","dst_ip":"172.217.164.141","protocol":6,"src_port":57010,"dst_port":443,"event_start":1565200327.684929} -{"ip":{"version":4,"ttl":128,"id":"9cd9"},"fingerprints":{"tls_server":"tls_server/(0303)(1302)((0033)(002b00020304))"},"tls":{"server":{"version":"0303","random":"c36a3beba9c83491d1b466ab48f0cc9844ff7e5b59dcc8cc8e22a3b359bf8392","selected_cipher_suite":"1302","compression_method":"00"}},"src_ip":"172.217.164.141","dst_ip":"192.168.113.237","protocol":6,"src_port":443,"dst_port":57010,"event_start":1565200327.734937} -{"ip":{"version":4,"ttl":64,"id":"4f9b"},"fingerprints":{"tcp":"tcp/(40)()(40)(faf0)((020405b4)(04)(08)(01)(030307))"},"tcp":{"seq":4234773277,"timestamp":{"ts_val":1522252968}},"src_ip":"192.168.113.237","dst_ip":"172.217.15.110","protocol":6,"src_port":57326,"dst_port":443,"event_start":1565200327.902597} -{"ip":{"version":4,"ttl":128,"id":"9ce3"},"fingerprints":{"tcp_server":"tcp_server/(40)()(80)(faf0)((020405b4))"},"tcp_server":{"seq":1143616927},"src_ip":"172.217.15.110","dst_ip":"192.168.113.237","protocol":6,"src_port":443,"dst_port":57326,"event_start":1565200327.941362} -{"ip":{"version":4,"ttl":64,"id":"4f9d"},"fingerprints":{"tls":"tls/(0303)(130213031301c02cc030009fcca9cca8ccaac02bc02f009ec024c028006bc023c0270067c00ac0140039c009c0130033009d009c003d003c0035002f00ff)((0000)(000b000403000102)(000a000c000a001d0017001e00190018)(0023)(0016)(0017)(000d0030002e040305030603080708080809080a080b080408050806040105010601030302030301020103020202040205020602)(002b0009080304030303020301)(002d00020101)(0033))"},"tls":{"client":{"version":"0303","random":"8aa6bf92038a3c830527baac712b101638a5145e3c21ca1e4633df5d15856ae5","session_id":"f4ac263cb775867f88f5d9909af6de25450e60dc8784bce70fff320aba46f03e","cipher_suites":"130213031301c02cc030009fcca9cca8ccaac02bc02f009ec024c028006bc023c0270067c00ac0140039c009c0130033009d009c003d003c0035002f00ff","compression_methods":"00","server_name":"goo.gl","session_ticket":"","features":"[\"0303\",\"130213031301c02cc030009fcca9cca8ccaac02bc02f009ec024c028006bc023c0270067c00ac0140039c009c0130033009d009c003d003c0035002f00ff\",[[\"0000\",\"0009000006676f6f2e676c\"],[\"000b\",\"03000102\"],[\"000a\",\"000a001d0017001e00190018\"],[\"0023\",\"\"],[\"0016\",\"\"],[\"0017\",\"\"],[\"000d\",\"002e040305030603080708080809080a080b080408050806040105010601030302030301020103020202040205020602\"],[\"002b\",\"080304030303020301\"],[\"002d\",\"0101\"],[\"0033\",\"0024001d00208d68f699d31857f16cd77113a66799a600cd385647ada863883334d563412d70\"]]]"}},"src_ip":"192.168.113.237","dst_ip":"172.217.15.110","protocol":6,"src_port":57326,"dst_port":443,"event_start":1565200327.941710} -{"ip":{"version":4,"ttl":128,"id":"9ce5"},"fingerprints":{"tls_server":"tls_server/(0303)(1302)((0033)(002b00020304))"},"tls":{"server":{"version":"0303","random":"12cb5aca2d6548988db0af85c097d122d214d1daa75b6e8e5580daa0886c2d0c","selected_cipher_suite":"1302","compression_method":"00"}},"src_ip":"172.217.15.110","dst_ip":"192.168.113.237","protocol":6,"src_port":443,"dst_port":57326,"event_start":1565200327.994358} -{"ip":{"version":4,"ttl":64,"id":"d279"},"dns":{"base64":"i8ABAAABAAAAAAAACXdvcmRwcmVzcwNjb20AAAEAAQ=="},"src_ip":"192.168.113.237","dst_ip":"192.168.113.2","protocol":17,"src_port":37846,"dst_port":53,"event_start":1565200328.438704} -{"ip":{"version":4,"ttl":64,"id":"d27a"},"dns":{"base64":"37ABAAABAAAAAAAACXdvcmRwcmVzcwNjb20AABwAAQ=="},"src_ip":"192.168.113.237","dst_ip":"192.168.113.2","protocol":17,"src_port":37128,"dst_port":53,"event_start":1565200328.438882} -{"ip":{"version":4,"ttl":128,"id":"9d62"},"dns":{"base64":"i8CBgAABAAIADQANCXdvcmRwcmVzcwNjb20AAAEAAcAMAAEAAQAAAAUABMAATgnADAABAAEAAAAFAATAAE4RwBYAAgABAAAABQAUAWQMZ3RsZC1zZXJ2ZXJzA25ldADAFgACAAEAAAAFAAQBasBNwBYAAgABAAAABQAEAWHATcAWAAIAAQAAAAUABAFmwE3AFgACAAEAAAAFAAQBacBNwBYAAgABAAAABQAEAWPATcAWAAIAAQAAAAUABAFowE3AFgACAAEAAAAFAAQBYsBNwBYAAgABAAAABQAEAWvATcAWAAIAAQAAAAUABAFlwE3AFgACAAEAAAAFAAQBZ8BNwBYAAgABAAAABQAEAW3ATcAWAAIAAQAAAAUABAFswE3AewABAAEAAAAFAATABQYewMsAAQABAAAABQAEwCEOHsCrAAEAAQAAAAUABMAaXB7ASwABAAEAAAAFAATAH1AewOsAAQABAAAABQAEwAxeHsCLAAEAAQAAAAUABMAjMx7A+wABAAEAAAAFAATAKl0ewLsAAQABAAAABQAEwDZwHsCbAAEAAQAAAAUABMArrB7AawABAAEAAAAFAATAME8ewNsAAQABAAAABQAEwDSyHsEbAAEAAQAAAAUABMApoh7BCwABAAEAAAAFAATAN1Me"},"src_ip":"192.168.113.2","dst_ip":"192.168.113.237","protocol":17,"src_port":53,"dst_port":37846,"event_start":1565200328.479678} -{"ip":{"version":4,"ttl":128,"id":"9d63"},"dns":{"base64":"37CBgAABAAAAAQAACXdvcmRwcmVzcwNjb20AABwAAcAMAAYAAQAAAAUAKQNuczHADAZtbW1tbW0FZ21haWzAFneC9/IAADhAAAAcIAAJOoAAAAA8"},"src_ip":"192.168.113.2","dst_ip":"192.168.113.237","protocol":17,"src_port":53,"dst_port":37128,"event_start":1565200328.479701} -{"ip":{"version":4,"ttl":64,"id":"976f"},"fingerprints":{"tcp":"tcp/(40)()(40)(faf0)((020405b4)(04)(08)(01)(030307))"},"tcp":{"seq":2420267641,"timestamp":{"ts_val":882224523}},"src_ip":"192.168.113.237","dst_ip":"192.0.78.9","protocol":6,"src_port":54866,"dst_port":443,"event_start":1565200328.480251} -{"ip":{"version":4,"ttl":128,"id":"9d64"},"fingerprints":{"tcp_server":"tcp_server/(40)()(80)(faf0)((020405b4))"},"tcp_server":{"seq":4069200342},"src_ip":"192.0.78.9","dst_ip":"192.168.113.237","protocol":6,"src_port":443,"dst_port":54866,"event_start":1565200328.525386} -{"ip":{"version":4,"ttl":64,"id":"9771"},"fingerprints":{"tls":"tls/(0303)(130213031301c02cc030009fcca9cca8ccaac02bc02f009ec024c028006bc023c0270067c00ac0140039c009c0130033009d009c003d003c0035002f00ff)((0000)(000b000403000102)(000a000c000a001d0017001e00190018)(0023)(0016)(0017)(000d0030002e040305030603080708080809080a080b080408050806040105010601030302030301020103020202040205020602)(002b0009080304030303020301)(002d00020101)(0033))"},"tls":{"client":{"version":"0303","random":"0a5ca3f1f795c47a3ad3cc77d87345084aee66e3255b10c0e20524a1152119c9","session_id":"5f5a0783761ea317171a9a3f2d6d5471abca9eaa08a30cce1ad89594a224f84e","cipher_suites":"130213031301c02cc030009fcca9cca8ccaac02bc02f009ec024c028006bc023c0270067c00ac0140039c009c0130033009d009c003d003c0035002f00ff","compression_methods":"00","server_name":"wordpress.com","session_ticket":"","features":"[\"0303\",\"130213031301c02cc030009fcca9cca8ccaac02bc02f009ec024c028006bc023c0270067c00ac0140039c009c0130033009d009c003d003c0035002f00ff\",[[\"0000\",\"001000000d776f726470726573732e636f6d\"],[\"000b\",\"03000102\"],[\"000a\",\"000a001d0017001e00190018\"],[\"0023\",\"\"],[\"0016\",\"\"],[\"0017\",\"\"],[\"000d\",\"002e040305030603080708080809080a080b080408050806040105010601030302030301020103020202040205020602\"],[\"002b\",\"080304030303020301\"],[\"002d\",\"0101\"],[\"0033\",\"0024001d00207ad06e339dd5744e0865a05810b0543748e001fc784133627df50dd684860f47\"]]]"}},"src_ip":"192.168.113.237","dst_ip":"192.0.78.9","protocol":6,"src_port":54866,"dst_port":443,"event_start":1565200328.525820} -{"ip":{"version":4,"ttl":128,"id":"9d66"},"fingerprints":{"tls_server":"tls_server/(0303)(1302)((002b00020304)(0033))"},"tls":{"server":{"version":"0303","random":"3c82daf54878e3749911dce89a6d42ab49ebf1be71f2d142d1f7a0b64d444a08","selected_cipher_suite":"1302","compression_method":"00"}},"src_ip":"192.0.78.9","dst_ip":"192.168.113.237","protocol":6,"src_port":443,"dst_port":54866,"event_start":1565200328.567318} -{"ip":{"version":4,"ttl":64,"id":"d2b0"},"dns":{"base64":"deABAAABAAAAAAAACXBpbnRlcmVzdANjb20AAAEAAQ=="},"src_ip":"192.168.113.237","dst_ip":"192.168.113.2","protocol":17,"src_port":42347,"dst_port":53,"event_start":1565200328.758730} -{"ip":{"version":4,"ttl":64,"id":"d2b1"},"dns":{"base64":"To0BAAABAAAAAAAACXBpbnRlcmVzdANjb20AABwAAQ=="},"src_ip":"192.168.113.237","dst_ip":"192.168.113.2","protocol":17,"src_port":34119,"dst_port":53,"event_start":1565200328.758912} -{"ip":{"version":4,"ttl":128,"id":"9daf"},"dns":{"base64":"deCBgAABAAQADQAMCXBpbnRlcmVzdANjb20AAAEAAcAMAAEAAQAAAAUABJdlgFTADAABAAEAAAAFAASXZcBUwAwAAQABAAAABQAEl2VAVMAMAAEAAQAAAAUABJdlAFTAFgACAAEAAAAFABQBaAxndGxkLXNlcnZlcnMDbmV0AMAWAAIAAQAAAAUABAFkwG3AFgACAAEAAAAFAAQBasBtwBYAAgABAAAABQAEAWLAbcAWAAIAAQAAAAUABAFrwG3AFgACAAEAAAAFAAQBY8BtwBYAAgABAAAABQAEAWnAbcAWAAIAAQAAAAUABAFlwG3AFgACAAEAAAAFAAQBbMBtwBYAAgABAAAABQAEAWfAbcAWAAIAAQAAAAUABAFmwG3AFgACAAEAAAAFAAQBbcBtwBYAAgABAAAABQAEAWHAbcE7AAEAAQAAAAUABMAFBh7AqwABAAEAAAAFAATAIQ4ewMsAAQABAAAABQAEwBpcHsCLAAEAAQAAAAUABMAfUB7A6wABAAEAAAAFAATADF4ewRsAAQABAAAABQAEwCMzHsELAAEAAQAAAAUABMAqXR7AawABAAEAAAAFAATANnAewNsAAQABAAAABQAEwCusHsCbAAEAAQAAAAUABMAwTx7AuwABAAEAAAAFAATANLIewPsAAQABAAAABQAEwCmiHg=="},"src_ip":"192.168.113.2","dst_ip":"192.168.113.237","protocol":17,"src_port":53,"dst_port":42347,"event_start":1565200328.788749} -{"ip":{"version":4,"ttl":128,"id":"9db0"},"dns":{"base64":"To2BgAABAAAAAQAACXBpbnRlcmVzdANjb20AABwAAcAMAAYAAQAAAAUANQRkbnMxA3AwOQVuc29uZQNuZXQACmhvc3RtYXN0ZXLANF07NSQAAFRgAAAOEAAJOoAAAAcI"},"src_ip":"192.168.113.2","dst_ip":"192.168.113.237","protocol":17,"src_port":53,"dst_port":34119,"event_start":1565200328.789459} -{"ip":{"version":4,"ttl":64,"id":"6143"},"fingerprints":{"tcp":"tcp/(40)()(40)(faf0)((020405b4)(04)(08)(01)(030307))"},"tcp":{"seq":4036602919,"timestamp":{"ts_val":1676800283}},"src_ip":"192.168.113.237","dst_ip":"151.101.128.84","protocol":6,"src_port":41224,"dst_port":443,"event_start":1565200328.789680} -{"ip":{"version":4,"ttl":128,"id":"9db1"},"fingerprints":{"tcp_server":"tcp_server/(40)()(80)(faf0)((020405b4))"},"tcp_server":{"seq":2832800200},"src_ip":"151.101.128.84","dst_ip":"192.168.113.237","protocol":6,"src_port":443,"dst_port":41224,"event_start":1565200328.828495} -{"ip":{"version":4,"ttl":64,"id":"6145"},"fingerprints":{"tls":"tls/(0303)(130213031301c02cc030009fcca9cca8ccaac02bc02f009ec024c028006bc023c0270067c00ac0140039c009c0130033009d009c003d003c0035002f00ff)((0000)(000b000403000102)(000a000c000a001d0017001e00190018)(0023)(0016)(0017)(000d0030002e040305030603080708080809080a080b080408050806040105010601030302030301020103020202040205020602)(002b0009080304030303020301)(002d00020101)(0033))"},"tls":{"client":{"version":"0303","random":"e0fcb186f94fe02dbfb62a82530526fe0c89a7e58ff4c132583195b63323b5d8","session_id":"7568bf6aadf43aac2a7e77c6a3cac3864ee7810b6ec2c90640869c4b9f2fb671","cipher_suites":"130213031301c02cc030009fcca9cca8ccaac02bc02f009ec024c028006bc023c0270067c00ac0140039c009c0130033009d009c003d003c0035002f00ff","compression_methods":"00","server_name":"pinterest.com","session_ticket":"","features":"[\"0303\",\"130213031301c02cc030009fcca9cca8ccaac02bc02f009ec024c028006bc023c0270067c00ac0140039c009c0130033009d009c003d003c0035002f00ff\",[[\"0000\",\"001000000d70696e7465726573742e636f6d\"],[\"000b\",\"03000102\"],[\"000a\",\"000a001d0017001e00190018\"],[\"0023\",\"\"],[\"0016\",\"\"],[\"0017\",\"\"],[\"000d\",\"002e040305030603080708080809080a080b080408050806040105010601030302030301020103020202040205020602\"],[\"002b\",\"080304030303020301\"],[\"002d\",\"0101\"],[\"0033\",\"0024001d0020133305248c91271a585a63add0363f180788c78bf835d969e46a06cc00ab1325\"]]]"}},"src_ip":"192.168.113.237","dst_ip":"151.101.128.84","protocol":6,"src_port":41224,"dst_port":443,"event_start":1565200328.828760} -{"ip":{"version":4,"ttl":128,"id":"9db6"},"fingerprints":{"tls_server":"tls_server/(0303)(c02f)((ff01)(0000)(000b000403000102)(0023)(0017))"},"tls":{"server":{"certs":[{"base64":"MIIMjTCCC3WgAwIBAgIQCGY+vEVuw5mUM8/1pacz4TANBgkqhkiG9w0BAQsFADBwMQswCQYDVQQGEwJVUzEVMBMGA1UEChMMRGlnaUNlcnQgSW5jMRkwFwYDVQQLExB3d3cuZGlnaWNlcnQuY29tMS8wLQYDVQQDEyZEaWdpQ2VydCBTSEEyIEhpZ2ggQXNzdXJhbmNlIFNlcnZlciBDQTAeFw0xOTA2MDUwMDAwMDBaFw0yMDA3MjIxMjAwMDBaMG4xCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1TYW4gRnJhbmNpc2NvMRgwFgYDVQQKEw9QaW50ZXJlc3QsIEluYy4xGDAWBgNVBAMMDyoucGludGVyZXN0LmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANkhv7I4WhMZQvgZAF11mLNfGTz4waZri4nOlRGlEZfA0/9jtBRCw98wADg9QG4Ur4HeRYCQWN0o9mP3XBtdguuP1qB6bOKr3KXtXrasQ6d0ZLTekwCyjBR+pG90QChIw0J5L/rGJlNJcbtqi93cbcpXS6O+DJ6ibF4GRCaczCu8bXbEgt2Ktl70cCrFfqMWqBO1YlXOEP7CeTN1K4znwBidkcrZHvju7Ub8ZTG274+6IkEmzveUGXgdigPz8R/rnX1Qzp8UMSh0lQqTXOboH0/zQX4QT681uR1aKnJvLrw0BgeXpzNReNhGnmR5msh2fiXnlarhuc5KRH3EcsbId3sCAwEAAaOCCSMwggkfMB8GA1UdIwQYMBaAFFFo/5CvAgd1PMzZZWRiohK4WXI7MB0GA1UdDgQWBBRhD8DeFSE2Vt03bW3bog/FxUqXyzCCBkoGA1UdEQSCBkEwggY9gg8qLnBpbnRlcmVzdC5jb22CDCoucGluaW1nLmNvbYIQKi5waW50ZXJlc3QuaW5mb4IXKi5waW50ZXJlc3QuZW5naW5lZXJpbmeCEyoucGludGVyZXN0bWFpbC5jb22CDioucGludGVyZXN0LmF0gg4qLnBpbnRlcmVzdC5jaIIOKi5waW50ZXJlc3QuZGWCDioucGludGVyZXN0LmRrgg4qLnBpbnRlcmVzdC5pZYIOKi5waW50ZXJlc3QuanCCDioucGludGVyZXN0Lmtygg4qLnBpbnRlcmVzdC5teIIOKi5waW50ZXJlc3QucHSCDioucGludGVyZXN0LnNlghEqLnBpbnRlcmVzdC5jby5hdIIRKi5waW50ZXJlc3QuY28ua3KCESoucGludGVyZXN0LmNvLnVrghIqLnBpbnRlcmVzdC5jb20ubXiCBnBpbi5pdIINcGludGVyZXN0LmNvbYIKcGluaW1nLmNvbYIOcGludGVyZXN0LmluZm+CFXBpbnRlcmVzdC5lbmdpbmVlcmluZ4IRcGludGVyZXN0bWFpbC5jb22CDHBpbnRlcmVzdC5hdIIMcGludGVyZXN0LmNoggxwaW50ZXJlc3QuZGWCDHBpbnRlcmVzdC5ka4IMcGludGVyZXN0LmllggxwaW50ZXJlc3QuanCCDHBpbnRlcmVzdC5rcoIMcGludGVyZXN0Lm14ggxwaW50ZXJlc3QucHSCDHBpbnRlcmVzdC5zZYIPcGludGVyZXN0LmNvLmF0gg9waW50ZXJlc3QuY28ua3KCD3BpbnRlcmVzdC5jby51a4IQcGludGVyZXN0LmNvbS5teIIOKi5waW50ZXJlc3QuY2GCDioucGludGVyZXN0LmZyggxwaW50ZXJlc3QuY2GCDHBpbnRlcmVzdC5mcoIQcGludGVyZXN0LmNvbS5hdYISKi5waW50ZXJlc3QuY29tLmF1ggxwaW50ZXJlc3QubnqCDioucGludGVyZXN0Lm56ggxwaW50ZXJlc3QuZXOCDioucGludGVyZXN0LmVzggxwaW50ZXJlc3QuY2yCDioucGludGVyZXN0LmNsggxwaW50ZXJlc3QucGiCDioucGludGVyZXN0LnBoggxwaW50ZXJlc3QuaW6CDioucGludGVyZXN0Lmlugg9waW50ZXJlc3QuY28uaW6CESoucGludGVyZXN0LmNvLmluggxwaW50ZXJlc3QuYmWCDioucGludGVyZXN0LmJlggxwaW50ZXJlc3QucGWCDioucGludGVyZXN0LnBlggxwaW50ZXJlc3QuY2+CDioucGludGVyZXN0LmNvghBwaW50ZXJlc3QuY29tLnB5ghIqLnBpbnRlcmVzdC5jb20ucHmCEHBpbnRlcmVzdC5jb20uYm+CEioucGludGVyZXN0LmNvbS5ib4IQcGludGVyZXN0LmNvbS5lY4ISKi5waW50ZXJlc3QuY29tLmVjggxwaW50ZXJlc3QuZWOCDioucGludGVyZXN0LmVjggxwaW50ZXJlc3QuaHWCDioucGludGVyZXN0Lmh1ghBwaW50ZXJlc3QuY29tLnZughIqLnBpbnRlcmVzdC5jb20udm6CDHBpbnRlcmVzdC5pdIIOKi5waW50ZXJlc3QuaXSCDHBpbnRlcmVzdC5ydYIOKi5waW50ZXJlc3QucnWCEHBpbnRlcmVzdC5jb20ucGWCEioucGludGVyZXN0LmNvbS5wZYIQcGludGVyZXN0LmNvbS51eYISKi5waW50ZXJlc3QuY29tLnV5gg9waW50ZXJlc3QuY28ubnqCESoucGludGVyZXN0LmNvLm56ggxwaW50ZXJlc3QudWuCDioucGludGVyZXN0LnVrggxwaW50ZXJlc3Qudm6CDioucGludGVyZXN0LnZuggxwaW50ZXJlc3QuaWSCDioucGludGVyZXN0LmlkggxwaW50ZXJlc3QudGiCDioucGludGVyZXN0LnRoggxwaW50ZXJlc3QudHeCDioucGludGVyZXN0LnR3ggxwaW50ZXJlc3QubmyCDioucGludGVyZXN0Lm5sghcqLnRlc3RpbmcucGludGVyZXN0LmNvbTAOBgNVHQ8BAf8EBAMCBaAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMHUGA1UdHwRuMGwwNKAyoDCGLmh0dHA6Ly9jcmwzLmRpZ2ljZXJ0LmNvbS9zaGEyLWhhLXNlcnZlci1nNi5jcmwwNKAyoDCGLmh0dHA6Ly9jcmw0LmRpZ2ljZXJ0LmNvbS9zaGEyLWhhLXNlcnZlci1nNi5jcmwwTAYDVR0gBEUwQzA3BglghkgBhv1sAQEwKjAoBggrBgEFBQcCARYcaHR0cHM6Ly93d3cuZGlnaWNlcnQuY29tL0NQUzAIBgZngQwBAgIwgYMGCCsGAQUFBwEBBHcwdTAkBggrBgEFBQcwAYYYaHR0cDovL29jc3AuZGlnaWNlcnQuY29tME0GCCsGAQUFBzAChkFodHRwOi8vY2FjZXJ0cy5kaWdpY2VydC5jb20vRGlnaUNlcnRTSEEySGlnaEFzc3VyYW5jZVNlcnZlckNBLmNydDAMBgNVHRMBAf8EAjAAMIIBBQYKKwYBBAHWeQIEAgSB9gSB8wDxAHYApLkJkLQYWBSHuxOizGdwCjw1mAT5G9+443fNDsgN3BAAAAFrKNL+mgAABAMARzBFAiEArmUaVzEV4/sfmgxudtHKXaLrxUSLEZW3SI0h+kZG8dQCIE9avQtifguGleicGI+OrQTENAkLRD2h2lHcdq5vN3fSAHcAh3W/51l8+IxDmV+9827/Vo1HVjb/SrVgwbTq/16ggw8AAAFrKNL/tgAABAMASDBGAiEAzSi2aDTh1b6DJ61mmc2lRXZfx68orgji7x58ge5F+FYCIQDQ+SxUAju2+MP8W2iS0m1XinZITOwPFEakM4GZoL1GzDANBgkqhkiG9w0BAQsFAAOCAQEAaCRt+7t8x1ZeKmzWn2qsch/VndkGzIxFVi5UteyGfKgMWj7UzxD7/BW2WgGgfFTmolhdQd8kX9yQzJ19PkFF5PIrTLTx5tqbYzkRzgOqV8Oc52SC9AEhJgAr7OfAHBlb4uuy8+U/imnU2wQ1oCsJ9GU5fhoezvhU8nnFusdU6wf1vXZyfDTFiy71iW3eh5u4d5sbc5xVJgUuDgjel89+e02R47S3GAHovjFMqfg4S7HjXtk4C9fXAKHuPK7ZZ64ctePiPK8l+/5VpACFrAr56PiXGyty9o61tfs0XSXmEux1VZxQMJjX4Pmjx5ZZIWhhKPTntm0EGMKawmwa2kHu3w=="},{"base64":"MIIEsTCCA5mgAwIBAgIQBOHnpNxc8vNtwCtCuF0VnzANBgkqhkiG9w0BAQsFADBsMQswCQYDVQQGEwJVUzEVMBMGA1UEChMMRGlnaUNlcnQgSW5jMRkwFwYDVQQLExB3d3cuZGlnaWNlcnQuY29tMSswKQYDVQQDEyJEaWdpQ2VydCBIaWdoIEFzc3VyYW5jZSBFViBSb290IENBMB4XDTEzMTAyMjEyMDAwMFoXDTI4MTAyMjEyMDAwMFowcDELMAkGA1UEBhMCVVMxFTATBgNVBAoTDERpZ2lDZXJ0IEluYzEZMBcGA1UECxMQd3d3LmRpZ2ljZXJ0LmNvbTEvMC0GA1UEAxMmRGlnaUNlcnQgU0hBMiBIaWdoIEFzc3VyYW5jZSBTZXJ2ZXIgQ0EwggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQC24C/CJAbIbQRf1+8KZAayfSImZRauQkCbztyfn3YHPsMwVYcZuU+UDlqUH1VWtMICKq/QmO4LQNfE0DtyyBSe75CxEamu0si4QzrZCwvV1ZX1QK/IHe1NnF9Xt4ZQaJn1itrSxwUfqJfJ3KSxgoQtxq2lnMcZgqaFD15EWCo3j/018QsIJzJa9buLnqS9UdAn4t07QjOjBSjEuyjMmqwrIw14xnvmXnG3Sj4I+4G3FhahnSMSTeXXkgisdaScus0Xsh5ENWV/UyU50RwKmmMbGZJ0aAo3wsJSSMs5WqK24V3B3aAguCGikyZvFEohQcftbZvySC/zA/WiaJJTL17jAgMBAAGjggFJMIIBRTASBgNVHRMBAf8ECDAGAQH/AgEAMA4GA1UdDwEB/wQEAwIBhjAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwNAYIKwYBBQUHAQEEKDAmMCQGCCsGAQUFBzABhhhodHRwOi8vb2NzcC5kaWdpY2VydC5jb20wSwYDVR0fBEQwQjBAoD6gPIY6aHR0cDovL2NybDQuZGlnaWNlcnQuY29tL0RpZ2lDZXJ0SGlnaEFzc3VyYW5jZUVWUm9vdENBLmNybDA9BgNVHSAENjA0MDIGBFUdIAAwKjAoBggrBgEFBQcCARYcaHR0cHM6Ly93d3cuZGlnaWNlcnQuY29tL0NQUzAdBgNVHQ4EFgQUUWj/kK8CB3U8zNllZGKiErhZcjswHwYDVR0jBBgwFoAUsT7DaQP4v0cB1JgmGggC72NkK8MwDQYJKoZIhvcNAQELBQADggEBABiKlYkD5m3fXPwdaOpKj4PWUS+Na0QWnqxj9dJubISZi6qBcYRb7TROsLd5kinMLYBq8I4g4Xmk/gNHE+r1hspZcX30BJZr01lYPf7TMSVcGDiEo+afgv2MW5gxTs14nhr9hctJqvIni5ly/D6q1UEL2tU2ob8cbkdJf17ZSHwD2f2LSaCYJkJA69aSEaRkCldUxPUd1gJea6zuxICaEnL6VpPX/78whQYwvwt/Tv9XBZ0k7YXDK/umdaisLRbvfXknsuvCnQsH6qqF0wGjIChBWUMo0oHjqvbsezt3tkBigAVBRQHvFwY+3sAzm2fTYS5yh+Rp/BIAV0AecPUeybQ="}],"version":"0303","random":"bf68357f61106e944fe9fd6bb9f9b22391387a39aeb3605bdc2e861f7815383a","selected_cipher_suite":"c02f","compression_method":"00","session_ticket":""}},"reassembly_properties":{"reassembled":true},"src_ip":"151.101.128.84","dst_ip":"192.168.113.237","protocol":6,"src_port":443,"dst_port":41224,"event_start":1565200328.872734} -{"ip":{"version":4,"ttl":64,"id":"d2b4"},"dns":{"base64":"42gBAAABAAAAAAAAA3d3dwlwaW50ZXJlc3QDY29tAAABAAE="},"src_ip":"192.168.113.237","dst_ip":"192.168.113.2","protocol":17,"src_port":47727,"dst_port":53,"event_start":1565200328.964290} -{"ip":{"version":4,"ttl":64,"id":"d2b5"},"dns":{"base64":"IFsBAAABAAAAAAAAA3d3dwlwaW50ZXJlc3QDY29tAAAcAAE="},"src_ip":"192.168.113.237","dst_ip":"192.168.113.2","protocol":17,"src_port":43919,"dst_port":53,"event_start":1565200328.964478} -{"ip":{"version":4,"ttl":128,"id":"9dbc"},"dns":{"base64":"42iBgAABAAcADQAEA3d3dwlwaW50ZXJlc3QDY29tAAABAAHADAAFAAEAAAAFABkDd3d3CXBpbnRlcmVzdANjb20EZ3NsYsAQwC8ABQABAAAABQAgDjItMDEtMzdkMi0wMDE4A2NkeAdjZWRleGlzA25ldADAVAAFAAEAAAAFACMEcHJvZAlwaW50ZXJlc3QGZ2xvYmFsA21hcAZmYXN0bHnAb8CAAAEAAQAAAAUABJdlAFTAgAABAAEAAAAFAASXZUBUwIAAAQABAAAABQAEl2XAVMCAAAEAAQAAAAUABJdlgFTAbwACAAEAAAAFABEBbAxndGxkLXNlcnZlcnPAb8BvAAIAAQAAAAUABAFrwPHAbwACAAEAAAAFAAQBY8DxwG8AAgABAAAABQAEAW3A8cBvAAIAAQAAAAUABAFqwPHAbwACAAEAAAAFAAQBacDxwG8AAgABAAAABQAEAWHA8cBvAAIAAQAAAAUABAFkwPHAbwACAAEAAAAFAAQBZsDxwG8AAgABAAAABQAEAWfA8cBvAAIAAQAAAAUABAFowPHAbwACAAEAAAAFAAQBYsDxwG8AAgABAAAABQAEAWXA8cFcAAEAAQAAAAUABMAFBh7BrAABAAEAAAAFAATAIQ4ewRwAAQABAAAABQAEwBpcHsFsAAEAAQAAAAUABMAfUB4="},"src_ip":"192.168.113.2","dst_ip":"192.168.113.237","protocol":17,"src_port":53,"dst_port":47727,"event_start":1565200329.000132} -{"ip":{"version":4,"ttl":128,"id":"9dbd"},"dns":{"base64":"IFuBgAABAAQAAQAAA3d3dwlwaW50ZXJlc3QDY29tAAAcAAHADAAFAAEAAAAFABkDd3d3CXBpbnRlcmVzdANjb20EZ3NsYsAQwC8ABQABAAAABQAgDjItMDEtMzdkMi0wMDE4A2NkeAdjZWRleGlzA25ldADAVAAFAAEAAAAFABwDd3d3CXBpbnRlcmVzdANjb20HZWRnZWtlecBvwIAABQABAAAABQAVBWU2NDQ5AWEKYWthbWFpZWRnZcBvwK4ABgABAAAABQAuA24wYcCwCmhvc3RtYXN0ZXIGYWthbWFpwBpdSw8CAAAD6AAAA+gAAAPoAAAHCA=="},"src_ip":"192.168.113.2","dst_ip":"192.168.113.237","protocol":17,"src_port":53,"dst_port":43919,"event_start":1565200329.000160} -{"ip":{"version":4,"ttl":64,"id":"d2bc"},"dns":{"base64":"bmsBAAABAAAAAAAABWU2NDQ5AWEKYWthbWFpZWRnZQNuZXQAABwAAQ=="},"src_ip":"192.168.113.237","dst_ip":"192.168.113.2","protocol":17,"src_port":33532,"dst_port":53,"event_start":1565200329.001141} -{"ip":{"version":4,"ttl":128,"id":"9dbe"},"dns":{"base64":"bmuBgAABAAAAAQAABWU2NDQ5AWEKYWthbWFpZWRnZQNuZXQAABwAAcASAAYAAQAAAAUAMQNuMGHAFApob3N0bWFzdGVyBmFrYW1haQNjb20AXUsPAgAAA+gAAAPoAAAD6AAABwg="},"src_ip":"192.168.113.2","dst_ip":"192.168.113.237","protocol":17,"src_port":53,"dst_port":33532,"event_start":1565200329.036374} -{"ip":{"version":4,"ttl":64,"id":"287b"},"fingerprints":{"tcp":"tcp/(40)()(40)(faf0)((020405b4)(04)(08)(01)(030307))"},"tcp":{"seq":289531354,"timestamp":{"ts_val":1676800530}},"src_ip":"192.168.113.237","dst_ip":"151.101.128.84","protocol":6,"src_port":41226,"dst_port":443,"event_start":1565200329.036843} -{"ip":{"version":4,"ttl":128,"id":"9dbf"},"fingerprints":{"tcp_server":"tcp_server/(40)()(80)(faf0)((020405b4))"},"tcp_server":{"seq":265966808},"src_ip":"151.101.128.84","dst_ip":"192.168.113.237","protocol":6,"src_port":443,"dst_port":41226,"event_start":1565200329.075373} -{"ip":{"version":4,"ttl":64,"id":"287d"},"fingerprints":{"tls":"tls/(0303)(130213031301c02cc030009fcca9cca8ccaac02bc02f009ec024c028006bc023c0270067c00ac0140039c009c0130033009d009c003d003c0035002f00ff)((0000)(000b000403000102)(000a000c000a001d0017001e00190018)(0023)(0016)(0017)(000d0030002e040305030603080708080809080a080b080408050806040105010601030302030301020103020202040205020602)(002b0009080304030303020301)(002d00020101)(0033))"},"tls":{"client":{"version":"0303","random":"e30e344a8d09da2ca1eb1854cd5588c2adaa06291e68e894e7f0bed3285f4756","session_id":"5aa9f03024520f62ee7bc702c7bc82c72af8b692df87ae4021bc17a388a9b97a","cipher_suites":"130213031301c02cc030009fcca9cca8ccaac02bc02f009ec024c028006bc023c0270067c00ac0140039c009c0130033009d009c003d003c0035002f00ff","compression_methods":"00","server_name":"www.pinterest.com","session_ticket":"","features":"[\"0303\",\"130213031301c02cc030009fcca9cca8ccaac02bc02f009ec024c028006bc023c0270067c00ac0140039c009c0130033009d009c003d003c0035002f00ff\",[[\"0000\",\"00140000117777772e70696e7465726573742e636f6d\"],[\"000b\",\"03000102\"],[\"000a\",\"000a001d0017001e00190018\"],[\"0023\",\"\"],[\"0016\",\"\"],[\"0017\",\"\"],[\"000d\",\"002e040305030603080708080809080a080b080408050806040105010601030302030301020103020202040205020602\"],[\"002b\",\"080304030303020301\"],[\"002d\",\"0101\"],[\"0033\",\"0024001d0020a4e7188886dbbd295f2c716a38a7493b029d11c857bc9ea2cac879dad020dd4e\"]]]"}},"src_ip":"192.168.113.237","dst_ip":"151.101.128.84","protocol":6,"src_port":41226,"dst_port":443,"event_start":1565200329.075644} -{"ip":{"version":4,"ttl":128,"id":"9dc4"},"fingerprints":{"tls_server":"tls_server/(0303)(c02f)((ff01)(0000)(000b000403000102)(0023)(0017))"},"tls":{"server":{"certs":[{"base64":"MIIMjTCCC3WgAwIBAgIQCGY+vEVuw5mUM8/1pacz4TANBgkqhkiG9w0BAQsFADBwMQswCQYDVQQGEwJVUzEVMBMGA1UEChMMRGlnaUNlcnQgSW5jMRkwFwYDVQQLExB3d3cuZGlnaWNlcnQuY29tMS8wLQYDVQQDEyZEaWdpQ2VydCBTSEEyIEhpZ2ggQXNzdXJhbmNlIFNlcnZlciBDQTAeFw0xOTA2MDUwMDAwMDBaFw0yMDA3MjIxMjAwMDBaMG4xCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1TYW4gRnJhbmNpc2NvMRgwFgYDVQQKEw9QaW50ZXJlc3QsIEluYy4xGDAWBgNVBAMMDyoucGludGVyZXN0LmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANkhv7I4WhMZQvgZAF11mLNfGTz4waZri4nOlRGlEZfA0/9jtBRCw98wADg9QG4Ur4HeRYCQWN0o9mP3XBtdguuP1qB6bOKr3KXtXrasQ6d0ZLTekwCyjBR+pG90QChIw0J5L/rGJlNJcbtqi93cbcpXS6O+DJ6ibF4GRCaczCu8bXbEgt2Ktl70cCrFfqMWqBO1YlXOEP7CeTN1K4znwBidkcrZHvju7Ub8ZTG274+6IkEmzveUGXgdigPz8R/rnX1Qzp8UMSh0lQqTXOboH0/zQX4QT681uR1aKnJvLrw0BgeXpzNReNhGnmR5msh2fiXnlarhuc5KRH3EcsbId3sCAwEAAaOCCSMwggkfMB8GA1UdIwQYMBaAFFFo/5CvAgd1PMzZZWRiohK4WXI7MB0GA1UdDgQWBBRhD8DeFSE2Vt03bW3bog/FxUqXyzCCBkoGA1UdEQSCBkEwggY9gg8qLnBpbnRlcmVzdC5jb22CDCoucGluaW1nLmNvbYIQKi5waW50ZXJlc3QuaW5mb4IXKi5waW50ZXJlc3QuZW5naW5lZXJpbmeCEyoucGludGVyZXN0bWFpbC5jb22CDioucGludGVyZXN0LmF0gg4qLnBpbnRlcmVzdC5jaIIOKi5waW50ZXJlc3QuZGWCDioucGludGVyZXN0LmRrgg4qLnBpbnRlcmVzdC5pZYIOKi5waW50ZXJlc3QuanCCDioucGludGVyZXN0Lmtygg4qLnBpbnRlcmVzdC5teIIOKi5waW50ZXJlc3QucHSCDioucGludGVyZXN0LnNlghEqLnBpbnRlcmVzdC5jby5hdIIRKi5waW50ZXJlc3QuY28ua3KCESoucGludGVyZXN0LmNvLnVrghIqLnBpbnRlcmVzdC5jb20ubXiCBnBpbi5pdIINcGludGVyZXN0LmNvbYIKcGluaW1nLmNvbYIOcGludGVyZXN0LmluZm+CFXBpbnRlcmVzdC5lbmdpbmVlcmluZ4IRcGludGVyZXN0bWFpbC5jb22CDHBpbnRlcmVzdC5hdIIMcGludGVyZXN0LmNoggxwaW50ZXJlc3QuZGWCDHBpbnRlcmVzdC5ka4IMcGludGVyZXN0LmllggxwaW50ZXJlc3QuanCCDHBpbnRlcmVzdC5rcoIMcGludGVyZXN0Lm14ggxwaW50ZXJlc3QucHSCDHBpbnRlcmVzdC5zZYIPcGludGVyZXN0LmNvLmF0gg9waW50ZXJlc3QuY28ua3KCD3BpbnRlcmVzdC5jby51a4IQcGludGVyZXN0LmNvbS5teIIOKi5waW50ZXJlc3QuY2GCDioucGludGVyZXN0LmZyggxwaW50ZXJlc3QuY2GCDHBpbnRlcmVzdC5mcoIQcGludGVyZXN0LmNvbS5hdYISKi5waW50ZXJlc3QuY29tLmF1ggxwaW50ZXJlc3QubnqCDioucGludGVyZXN0Lm56ggxwaW50ZXJlc3QuZXOCDioucGludGVyZXN0LmVzggxwaW50ZXJlc3QuY2yCDioucGludGVyZXN0LmNsggxwaW50ZXJlc3QucGiCDioucGludGVyZXN0LnBoggxwaW50ZXJlc3QuaW6CDioucGludGVyZXN0Lmlugg9waW50ZXJlc3QuY28uaW6CESoucGludGVyZXN0LmNvLmluggxwaW50ZXJlc3QuYmWCDioucGludGVyZXN0LmJlggxwaW50ZXJlc3QucGWCDioucGludGVyZXN0LnBlggxwaW50ZXJlc3QuY2+CDioucGludGVyZXN0LmNvghBwaW50ZXJlc3QuY29tLnB5ghIqLnBpbnRlcmVzdC5jb20ucHmCEHBpbnRlcmVzdC5jb20uYm+CEioucGludGVyZXN0LmNvbS5ib4IQcGludGVyZXN0LmNvbS5lY4ISKi5waW50ZXJlc3QuY29tLmVjggxwaW50ZXJlc3QuZWOCDioucGludGVyZXN0LmVjggxwaW50ZXJlc3QuaHWCDioucGludGVyZXN0Lmh1ghBwaW50ZXJlc3QuY29tLnZughIqLnBpbnRlcmVzdC5jb20udm6CDHBpbnRlcmVzdC5pdIIOKi5waW50ZXJlc3QuaXSCDHBpbnRlcmVzdC5ydYIOKi5waW50ZXJlc3QucnWCEHBpbnRlcmVzdC5jb20ucGWCEioucGludGVyZXN0LmNvbS5wZYIQcGludGVyZXN0LmNvbS51eYISKi5waW50ZXJlc3QuY29tLnV5gg9waW50ZXJlc3QuY28ubnqCESoucGludGVyZXN0LmNvLm56ggxwaW50ZXJlc3QudWuCDioucGludGVyZXN0LnVrggxwaW50ZXJlc3Qudm6CDioucGludGVyZXN0LnZuggxwaW50ZXJlc3QuaWSCDioucGludGVyZXN0LmlkggxwaW50ZXJlc3QudGiCDioucGludGVyZXN0LnRoggxwaW50ZXJlc3QudHeCDioucGludGVyZXN0LnR3ggxwaW50ZXJlc3QubmyCDioucGludGVyZXN0Lm5sghcqLnRlc3RpbmcucGludGVyZXN0LmNvbTAOBgNVHQ8BAf8EBAMCBaAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMHUGA1UdHwRuMGwwNKAyoDCGLmh0dHA6Ly9jcmwzLmRpZ2ljZXJ0LmNvbS9zaGEyLWhhLXNlcnZlci1nNi5jcmwwNKAyoDCGLmh0dHA6Ly9jcmw0LmRpZ2ljZXJ0LmNvbS9zaGEyLWhhLXNlcnZlci1nNi5jcmwwTAYDVR0gBEUwQzA3BglghkgBhv1sAQEwKjAoBggrBgEFBQcCARYcaHR0cHM6Ly93d3cuZGlnaWNlcnQuY29tL0NQUzAIBgZngQwBAgIwgYMGCCsGAQUFBwEBBHcwdTAkBggrBgEFBQcwAYYYaHR0cDovL29jc3AuZGlnaWNlcnQuY29tME0GCCsGAQUFBzAChkFodHRwOi8vY2FjZXJ0cy5kaWdpY2VydC5jb20vRGlnaUNlcnRTSEEySGlnaEFzc3VyYW5jZVNlcnZlckNBLmNydDAMBgNVHRMBAf8EAjAAMIIBBQYKKwYBBAHWeQIEAgSB9gSB8wDxAHYApLkJkLQYWBSHuxOizGdwCjw1mAT5G9+443fNDsgN3BAAAAFrKNL+mgAABAMARzBFAiEArmUaVzEV4/sfmgxudtHKXaLrxUSLEZW3SI0h+kZG8dQCIE9avQtifguGleicGI+OrQTENAkLRD2h2lHcdq5vN3fSAHcAh3W/51l8+IxDmV+9827/Vo1HVjb/SrVgwbTq/16ggw8AAAFrKNL/tgAABAMASDBGAiEAzSi2aDTh1b6DJ61mmc2lRXZfx68orgji7x58ge5F+FYCIQDQ+SxUAju2+MP8W2iS0m1XinZITOwPFEakM4GZoL1GzDANBgkqhkiG9w0BAQsFAAOCAQEAaCRt+7t8x1ZeKmzWn2qsch/VndkGzIxFVi5UteyGfKgMWj7UzxD7/BW2WgGgfFTmolhdQd8kX9yQzJ19PkFF5PIrTLTx5tqbYzkRzgOqV8Oc52SC9AEhJgAr7OfAHBlb4uuy8+U/imnU2wQ1oCsJ9GU5fhoezvhU8nnFusdU6wf1vXZyfDTFiy71iW3eh5u4d5sbc5xVJgUuDgjel89+e02R47S3GAHovjFMqfg4S7HjXtk4C9fXAKHuPK7ZZ64ctePiPK8l+/5VpACFrAr56PiXGyty9o61tfs0XSXmEux1VZxQMJjX4Pmjx5ZZIWhhKPTntm0EGMKawmwa2kHu3w=="},{"base64":"MIIEsTCCA5mgAwIBAgIQBOHnpNxc8vNtwCtCuF0VnzANBgkqhkiG9w0BAQsFADBsMQswCQYDVQQGEwJVUzEVMBMGA1UEChMMRGlnaUNlcnQgSW5jMRkwFwYDVQQLExB3d3cuZGlnaWNlcnQuY29tMSswKQYDVQQDEyJEaWdpQ2VydCBIaWdoIEFzc3VyYW5jZSBFViBSb290IENBMB4XDTEzMTAyMjEyMDAwMFoXDTI4MTAyMjEyMDAwMFowcDELMAkGA1UEBhMCVVMxFTATBgNVBAoTDERpZ2lDZXJ0IEluYzEZMBcGA1UECxMQd3d3LmRpZ2ljZXJ0LmNvbTEvMC0GA1UEAxMmRGlnaUNlcnQgU0hBMiBIaWdoIEFzc3VyYW5jZSBTZXJ2ZXIgQ0EwggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQC24C/CJAbIbQRf1+8KZAayfSImZRauQkCbztyfn3YHPsMwVYcZuU+UDlqUH1VWtMICKq/QmO4LQNfE0DtyyBSe75CxEamu0si4QzrZCwvV1ZX1QK/IHe1NnF9Xt4ZQaJn1itrSxwUfqJfJ3KSxgoQtxq2lnMcZgqaFD15EWCo3j/018QsIJzJa9buLnqS9UdAn4t07QjOjBSjEuyjMmqwrIw14xnvmXnG3Sj4I+4G3FhahnSMSTeXXkgisdaScus0Xsh5ENWV/UyU50RwKmmMbGZJ0aAo3wsJSSMs5WqK24V3B3aAguCGikyZvFEohQcftbZvySC/zA/WiaJJTL17jAgMBAAGjggFJMIIBRTASBgNVHRMBAf8ECDAGAQH/AgEAMA4GA1UdDwEB/wQEAwIBhjAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwNAYIKwYBBQUHAQEEKDAmMCQGCCsGAQUFBzABhhhodHRwOi8vb2NzcC5kaWdpY2VydC5jb20wSwYDVR0fBEQwQjBAoD6gPIY6aHR0cDovL2NybDQuZGlnaWNlcnQuY29tL0RpZ2lDZXJ0SGlnaEFzc3VyYW5jZUVWUm9vdENBLmNybDA9BgNVHSAENjA0MDIGBFUdIAAwKjAoBggrBgEFBQcCARYcaHR0cHM6Ly93d3cuZGlnaWNlcnQuY29tL0NQUzAdBgNVHQ4EFgQUUWj/kK8CB3U8zNllZGKiErhZcjswHwYDVR0jBBgwFoAUsT7DaQP4v0cB1JgmGggC72NkK8MwDQYJKoZIhvcNAQELBQADggEBABiKlYkD5m3fXPwdaOpKj4PWUS+Na0QWnqxj9dJubISZi6qBcYRb7TROsLd5kinMLYBq8I4g4Xmk/gNHE+r1hspZcX30BJZr01lYPf7TMSVcGDiEo+afgv2MW5gxTs14nhr9hctJqvIni5ly/D6q1UEL2tU2ob8cbkdJf17ZSHwD2f2LSaCYJkJA69aSEaRkCldUxPUd1gJea6zuxICaEnL6VpPX/78whQYwvwt/Tv9XBZ0k7YXDK/umdaisLRbvfXknsuvCnQsH6qqF0wGjIChBWUMo0oHjqvbsezt3tkBigAVBRQHvFwY+3sAzm2fTYS5yh+Rp/BIAV0AecPUeybQ="}],"version":"0303","random":"e1f34fbbfbb5dc48b8e25c00cc41f8ff499e15698c0caef117530884e36443ec","selected_cipher_suite":"c02f","compression_method":"00","session_ticket":""}},"reassembly_properties":{"reassembled":true},"src_ip":"151.101.128.84","dst_ip":"192.168.113.237","protocol":6,"src_port":443,"dst_port":41226,"event_start":1565200329.120859} -{"ip":{"version":4,"ttl":64,"id":"d2fb"},"dns":{"base64":"zRQBAAABAAAAAAAABHBsYXkGZ29vZ2xlA2NvbQAAAQAB"},"src_ip":"192.168.113.237","dst_ip":"192.168.113.2","protocol":17,"src_port":54769,"dst_port":53,"event_start":1565200329.530603} -{"ip":{"version":4,"ttl":64,"id":"d2fc"},"dns":{"base64":"/9UBAAABAAAAAAAABHBsYXkGZ29vZ2xlA2NvbQAAHAAB"},"src_ip":"192.168.113.237","dst_ip":"192.168.113.2","protocol":17,"src_port":53320,"dst_port":53,"event_start":1565200329.530795} -{"ip":{"version":4,"ttl":128,"id":"9df4"},"dns":{"base64":"zRSBgAABAAEADQAOBHBsYXkGZ29vZ2xlA2NvbQAAAQABwAwAAQABAAAABQAErNkHzsAYAAIAAQAAAAUAFAFlDGd0bGQtc2VydmVycwNuZXQAwBgAAgABAAAABQAEAWPAP8AYAAIAAQAAAAUABAFnwD/AGAACAAEAAAAFAAQBZsA/wBgAAgABAAAABQAEAW3AP8AYAAIAAQAAAAUABAFkwD/AGAACAAEAAAAFAAQBaMA/wBgAAgABAAAABQAEAWLAP8AYAAIAAQAAAAUABAFhwD/AGAACAAEAAAAFAAQBa8A/wBgAAgABAAAABQAEAWnAP8AYAAIAAQAAAAUABAFqwD/AGAACAAEAAAAFAAQBbMA/wM0AAQABAAAABQAEwAUGHsC9AAEAAQAAAAUABMAhDh7AXQABAAEAAAAFAATAGlwewJ0AAQABAAAABQAEwB9QHsA9AAEAAQAAAAUABMAMXh7AfQABAAEAAAAFAATAIzMewG0AAQABAAAABQAEwCpdHsCtAAEAAQAAAAUABMA2cB7A7QABAAEAAAAFAATAK6wewP0AAQABAAAABQAEwDBPHsDdAAEAAQAAAAUABMA0sh7BDQABAAEAAAAFAATAKaIewI0AAQABAAAABQAEwDdTHsDNABwAAQAAAAUAECABBQOoPgAAAAAAAAACADA="},"src_ip":"192.168.113.2","dst_ip":"192.168.113.237","protocol":17,"src_port":53,"dst_port":54769,"event_start":1565200329.563999} -{"ip":{"version":4,"ttl":128,"id":"9df5"},"dns":{"base64":"/9WBgAABAAEADQANBHBsYXkGZ29vZ2xlA2NvbQAAHAABwAwAHAABAAAABQAQJgf4sEAECAEAAAAAAAAgDsAYAAIAAQAAAAUAFAFmDGd0bGQtc2VydmVycwNuZXQAwBgAAgABAAAABQAEAWnAS8AYAAIAAQAAAAUABAFlwEvAGAACAAEAAAAFAAQBaMBLwBgAAgABAAAABQAEAWTAS8AYAAIAAQAAAAUABAFtwEvAGAACAAEAAAAFAAQBY8BLwBgAAgABAAAABQAEAWzAS8AYAAIAAQAAAAUABAFhwEvAGAACAAEAAAAFAAQBa8BLwBgAAgABAAAABQAEAWLAS8AYAAIAAQAAAAUABAFnwEvAGAACAAEAAAAFAAQBasBLwNkAAQABAAAABQAEwAUGHsD5AAEAAQAAAAUABMAhDh7AuQABAAEAAAAFAATAGlwewJkAAQABAAAABQAEwB9QHsB5AAEAAQAAAAUABMAMXh7ASQABAAEAAAAFAATAIzMewQkAAQABAAAABQAEwCpdHsCJAAEAAQAAAAUABMA2cB7AaQABAAEAAAAFAATAK6wewRkAAQABAAAABQAEwDBPHsDpAAEAAQAAAAUABMA0sh7AyQABAAEAAAAFAATAKaIewKkAAQABAAAABQAEwDdTHg=="},"src_ip":"192.168.113.2","dst_ip":"192.168.113.237","protocol":17,"src_port":53,"dst_port":53320,"event_start":1565200329.564016} -{"ip":{"version":4,"ttl":64,"id":"b2ec"},"fingerprints":{"tcp":"tcp/(40)()(40)(faf0)((020405b4)(04)(08)(01)(030307))"},"tcp":{"seq":3729423561,"timestamp":{"ts_val":853140185}},"src_ip":"192.168.113.237","dst_ip":"172.217.7.206","protocol":6,"src_port":60726,"dst_port":443,"event_start":1565200329.564525} -{"ip":{"version":4,"ttl":128,"id":"9df6"},"fingerprints":{"tcp_server":"tcp_server/(40)()(80)(faf0)((020405b4))"},"tcp_server":{"seq":4157823385},"src_ip":"172.217.7.206","dst_ip":"192.168.113.237","protocol":6,"src_port":443,"dst_port":60726,"event_start":1565200329.603878} -{"ip":{"version":4,"ttl":64,"id":"b2ee"},"fingerprints":{"tls":"tls/(0303)(130213031301c02cc030009fcca9cca8ccaac02bc02f009ec024c028006bc023c0270067c00ac0140039c009c0130033009d009c003d003c0035002f00ff)((0000)(000b000403000102)(000a000c000a001d0017001e00190018)(0023)(0016)(0017)(000d0030002e040305030603080708080809080a080b080408050806040105010601030302030301020103020202040205020602)(002b0009080304030303020301)(002d00020101)(0033))"},"tls":{"client":{"version":"0303","random":"e212d08313468e02841b54c0fc9f1790262252bfe2d620c86d44ab54970fa17a","session_id":"dfdabb09e68908ad2159120b0a06dfcc080e75b027a642aaefd811a1bbfb5cf7","cipher_suites":"130213031301c02cc030009fcca9cca8ccaac02bc02f009ec024c028006bc023c0270067c00ac0140039c009c0130033009d009c003d003c0035002f00ff","compression_methods":"00","server_name":"play.google.com","session_ticket":"","features":"[\"0303\",\"130213031301c02cc030009fcca9cca8ccaac02bc02f009ec024c028006bc023c0270067c00ac0140039c009c0130033009d009c003d003c0035002f00ff\",[[\"0000\",\"001200000f706c61792e676f6f676c652e636f6d\"],[\"000b\",\"03000102\"],[\"000a\",\"000a001d0017001e00190018\"],[\"0023\",\"\"],[\"0016\",\"\"],[\"0017\",\"\"],[\"000d\",\"002e040305030603080708080809080a080b080408050806040105010601030302030301020103020202040205020602\"],[\"002b\",\"080304030303020301\"],[\"002d\",\"0101\"],[\"0033\",\"0024001d0020f3dff61fe5deca1f4d3c6f8ea30196e5f3736452d8c663646b2d855379244229\"]]]"}},"src_ip":"192.168.113.237","dst_ip":"172.217.7.206","protocol":6,"src_port":60726,"dst_port":443,"event_start":1565200329.604144} -{"ip":{"version":4,"ttl":128,"id":"9df8"},"fingerprints":{"tls_server":"tls_server/(0303)(1302)((0033)(002b00020304))"},"tls":{"server":{"version":"0303","random":"edf68c7ff1619b2a1d803dcc90446250bf1278e164634d570ed37c8c0c4e0e07","selected_cipher_suite":"1302","compression_method":"00"}},"src_ip":"172.217.7.206","dst_ip":"192.168.113.237","protocol":6,"src_port":443,"dst_port":60726,"event_start":1565200329.653408} -{"ip":{"version":4,"ttl":64,"id":"d347"},"dns":{"base64":"dMoBAAABAAAAAAAAEGdvb2dsZXRhZ21hbmFnZXIDY29tAAABAAE="},"src_ip":"192.168.113.237","dst_ip":"192.168.113.2","protocol":17,"src_port":53971,"dst_port":53,"event_start":1565200330.265257} -{"ip":{"version":4,"ttl":64,"id":"d348"},"dns":{"base64":"S0oBAAABAAAAAAAAEGdvb2dsZXRhZ21hbmFnZXIDY29tAAAcAAE="},"src_ip":"192.168.113.237","dst_ip":"192.168.113.2","protocol":17,"src_port":39524,"dst_port":53,"event_start":1565200330.265331} -{"ip":{"version":4,"ttl":128,"id":"a1a8"},"dns":{"base64":"dMqBgAABAAEADQANEGdvb2dsZXRhZ21hbmFnZXIDY29tAAABAAHADAABAAEAAAAFAASs2aSIwB0AAgABAAAABQAUAWEMZ3RsZC1zZXJ2ZXJzA25ldADAHQACAAEAAAAFAAQBasBEwB0AAgABAAAABQAEAWTARMAdAAIAAQAAAAUABAFswETAHQACAAEAAAAFAAQBZcBEwB0AAgABAAAABQAEAWvARMAdAAIAAQAAAAUABAFtwETAHQACAAEAAAAFAAQBZsBEwB0AAgABAAAABQAEAWPARMAdAAIAAQAAAAUABAFpwETAHQACAAEAAAAFAAQBYsBEwB0AAgABAAAABQAEAWjARMAdAAIAAQAAAAUABAFnwETAQgABAAEAAAAFAATABQYewPIAAQABAAAABQAEwCEOHsDSAAEAAQAAAAUABMAaXB7AcgABAAEAAAAFAATAH1AewJIAAQABAAAABQAEwAxeHsDCAAEAAQAAAAUABMAjMx7BEgABAAEAAAAFAATAKl0ewQIAAQABAAAABQAEwDZwHsDiAAEAAQAAAAUABMArrB7AYgABAAEAAAAFAATAME8ewKIAAQABAAAABQAEwDSyHsCCAAEAAQAAAAUABMApoh7AsgABAAEAAAAFAATAN1Me"},"src_ip":"192.168.113.2","dst_ip":"192.168.113.237","protocol":17,"src_port":53,"dst_port":53971,"event_start":1565200330.303206} -{"ip":{"version":4,"ttl":128,"id":"a1a9"},"dns":{"base64":"S0qBgAABAAEADQANEGdvb2dsZXRhZ21hbmFnZXIDY29tAAAcAAHADAAcAAEAAAAFABAmB/iwQAQIFAAAAAAAACAIwB0AAgABAAAABQAUAWoMZ3RsZC1zZXJ2ZXJzA25ldADAHQACAAEAAAAFAAQBZ8BQwB0AAgABAAAABQAEAWHAUMAdAAIAAQAAAAUABAFowFDAHQACAAEAAAAFAAQBYsBQwB0AAgABAAAABQAEAW3AUMAdAAIAAQAAAAUABAFrwFDAHQACAAEAAAAFAAQBacBQwB0AAgABAAAABQAEAWTAUMAdAAIAAQAAAAUABAFjwFDAHQACAAEAAAAFAAQBZsBQwB0AAgABAAAABQAEAWXAUMAdAAIAAQAAAAUABAFswFDAfgABAAEAAAAFAATABQYewJ4AAQABAAAABQAEwCEOHsDuAAEAAQAAAAUABMAaXB7A3gABAAEAAAAFAATAH1AewQ4AAQABAAAABQAEwAxeHsD+AAEAAQAAAAUABMAjMx7AbgABAAEAAAAFAATAKl0ewI4AAQABAAAABQAEwDZwHsDOAAEAAQAAAAUABMArrB7ATgABAAEAAAAFAATAME8ewL4AAQABAAAABQAEwDSyHsEeAAEAAQAAAAUABMApoh7ArgABAAEAAAAFAATAN1Me"},"src_ip":"192.168.113.2","dst_ip":"192.168.113.237","protocol":17,"src_port":53,"dst_port":39524,"event_start":1565200330.303460} -{"ip":{"version":4,"ttl":64,"id":"03a9"},"fingerprints":{"tcp":"tcp/(40)()(40)(faf0)((020405b4)(04)(08)(01)(030307))"},"tcp":{"seq":2304560503,"timestamp":{"ts_val":2077471733}},"src_ip":"192.168.113.237","dst_ip":"172.217.164.136","protocol":6,"src_port":35238,"dst_port":443,"event_start":1565200330.303681} -{"ip":{"version":4,"ttl":128,"id":"a1aa"},"fingerprints":{"tcp_server":"tcp_server/(40)()(80)(faf0)((020405b4))"},"tcp_server":{"seq":3404121544},"src_ip":"172.217.164.136","dst_ip":"192.168.113.237","protocol":6,"src_port":443,"dst_port":35238,"event_start":1565200330.346191} -{"ip":{"version":4,"ttl":64,"id":"03ab"},"fingerprints":{"tls":"tls/(0303)(130213031301c02cc030009fcca9cca8ccaac02bc02f009ec024c028006bc023c0270067c00ac0140039c009c0130033009d009c003d003c0035002f00ff)((0000)(000b000403000102)(000a000c000a001d0017001e00190018)(0023)(0016)(0017)(000d0030002e040305030603080708080809080a080b080408050806040105010601030302030301020103020202040205020602)(002b0009080304030303020301)(002d00020101)(0033))"},"tls":{"client":{"version":"0303","random":"bc98139e3da3d4ac1e3920ced02e64227493a7000a88b69b35422dd4c19cdd74","session_id":"6ebfb93d4f05a313ecbbc7acb38e701570fa46b6d9b99e8d6abe6f02104dae58","cipher_suites":"130213031301c02cc030009fcca9cca8ccaac02bc02f009ec024c028006bc023c0270067c00ac0140039c009c0130033009d009c003d003c0035002f00ff","compression_methods":"00","server_name":"googletagmanager.com","session_ticket":"","features":"[\"0303\",\"130213031301c02cc030009fcca9cca8ccaac02bc02f009ec024c028006bc023c0270067c00ac0140039c009c0130033009d009c003d003c0035002f00ff\",[[\"0000\",\"0017000014676f6f676c657461676d616e616765722e636f6d\"],[\"000b\",\"03000102\"],[\"000a\",\"000a001d0017001e00190018\"],[\"0023\",\"\"],[\"0016\",\"\"],[\"0017\",\"\"],[\"000d\",\"002e040305030603080708080809080a080b080408050806040105010601030302030301020103020202040205020602\"],[\"002b\",\"080304030303020301\"],[\"002d\",\"0101\"],[\"0033\",\"0024001d00201de99f348a140b800dd089c5fd34cf200d48dbc1b4a6b04f0a26a9d14088707d\"]]]"}},"src_ip":"192.168.113.237","dst_ip":"172.217.164.136","protocol":6,"src_port":35238,"dst_port":443,"event_start":1565200330.346586} -{"ip":{"version":4,"ttl":128,"id":"a1ac"},"fingerprints":{"tls_server":"tls_server/(0303)(1302)((0033)(002b00020304))"},"tls":{"server":{"version":"0303","random":"406a5dd776aa1b5cc5e0c6e0f20f7461954614eb09e8d3b08a00dd72ce057fc1","selected_cipher_suite":"1302","compression_method":"00"}},"src_ip":"172.217.164.136","dst_ip":"192.168.113.237","protocol":6,"src_port":443,"dst_port":35238,"event_start":1565200330.397378} -{"ip":{"version":4,"ttl":64,"id":"d386"},"dns":{"base64":"3JUBAAABAAAAAAAABG1hcHMGZ29vZ2xlA2NvbQAAAQAB"},"src_ip":"192.168.113.237","dst_ip":"192.168.113.2","protocol":17,"src_port":36423,"dst_port":53,"event_start":1565200330.543852} -{"ip":{"version":4,"ttl":64,"id":"d387"},"dns":{"base64":"czYBAAABAAAAAAAABG1hcHMGZ29vZ2xlA2NvbQAAHAAB"},"src_ip":"192.168.113.237","dst_ip":"192.168.113.2","protocol":17,"src_port":53887,"dst_port":53,"event_start":1565200330.544060} -{"ip":{"version":4,"ttl":128,"id":"a1b7"},"dns":{"base64":"3JWBgAABAAEADQAOBG1hcHMGZ29vZ2xlA2NvbQAAAQABwAwAAQABAAAABQAErNkHzsAYAAIAAQAAAAUAFAFpDGd0bGQtc2VydmVycwNuZXQAwBgAAgABAAAABQAEAWLAP8AYAAIAAQAAAAUABAFtwD/AGAACAAEAAAAFAAQBZMA/wBgAAgABAAAABQAEAWbAP8AYAAIAAQAAAAUABAFrwD/AGAACAAEAAAAFAAQBY8A/wBgAAgABAAAABQAEAWfAP8AYAAIAAQAAAAUABAFlwD/AGAACAAEAAAAFAAQBasA/wBgAAgABAAAABQAEAWHAP8AYAAIAAQAAAAUABAFswD/AGAACAAEAAAAFAAQBaMA/wO0AAQABAAAABQAEwAUGHsBdAAEAAQAAAAUABMAhDh7ArQABAAEAAAAFAATAGlwewH0AAQABAAAABQAEwB9QHsDNAAEAAQAAAAUABMAMXh7AjQABAAEAAAAFAATAIzMewL0AAQABAAAABQAEwCpdHsENAAEAAQAAAAUABMA2cB7APQABAAEAAAAFAATAK6wewN0AAQABAAAABQAEwDBPHsCdAAEAAQAAAAUABMA0sh7A/QABAAEAAAAFAATAKaIewG0AAQABAAAABQAEwDdTHsDtABwAAQAAAAUAECABBQOoPgAAAAAAAAACADA="},"src_ip":"192.168.113.2","dst_ip":"192.168.113.237","protocol":17,"src_port":53,"dst_port":36423,"event_start":1565200330.578912} -{"ip":{"version":4,"ttl":128,"id":"a1b8"},"dns":{"base64":"czaBgAABAAEADQANBG1hcHMGZ29vZ2xlA2NvbQAAHAABwAwAHAABAAAABQAQJgf4sEAECAEAAAAAAAAgDsAYAAIAAQAAAAUAFAFsDGd0bGQtc2VydmVycwNuZXQAwBgAAgABAAAABQAEAWnAS8AYAAIAAQAAAAUABAFjwEvAGAACAAEAAAAFAAQBYcBLwBgAAgABAAAABQAEAWXAS8AYAAIAAQAAAAUABAFowEvAGAACAAEAAAAFAAQBYsBLwBgAAgABAAAABQAEAW3AS8AYAAIAAQAAAAUABAFrwEvAGAACAAEAAAAFAAQBasBLwBgAAgABAAAABQAEAWfAS8AYAAIAAQAAAAUABAFkwEvAGAACAAEAAAAFAAQBZsBLwIkAAQABAAAABQAEwAUGHsC5AAEAAQAAAAUABMAhDh7AeQABAAEAAAAFAATAGlwewQkAAQABAAAABQAEwB9QHsCZAAEAAQAAAAUABMAMXh7BGQABAAEAAAAFAATAIzMewPkAAQABAAAABQAEwCpdHsCpAAEAAQAAAAUABMA2cB7AaQABAAEAAAAFAATAK6wewOkAAQABAAAABQAEwDBPHsDZAAEAAQAAAAUABMA0sh7ASQABAAEAAAAFAATAKaIewMkAAQABAAAABQAEwDdTHg=="},"src_ip":"192.168.113.2","dst_ip":"192.168.113.237","protocol":17,"src_port":53,"dst_port":53887,"event_start":1565200330.578926} -{"ip":{"version":4,"ttl":64,"id":"f9f8"},"fingerprints":{"tcp":"tcp/(40)()(40)(faf0)((020405b4)(04)(08)(01)(030307))"},"tcp":{"seq":3414963931,"timestamp":{"ts_val":853141200}},"src_ip":"192.168.113.237","dst_ip":"172.217.7.206","protocol":6,"src_port":60730,"dst_port":443,"event_start":1565200330.579553} -{"ip":{"version":4,"ttl":128,"id":"a1b9"},"fingerprints":{"tcp_server":"tcp_server/(40)()(80)(faf0)((020405b4))"},"tcp_server":{"seq":3478050292},"src_ip":"172.217.7.206","dst_ip":"192.168.113.237","protocol":6,"src_port":443,"dst_port":60730,"event_start":1565200330.619349} -{"ip":{"version":4,"ttl":64,"id":"f9fa"},"fingerprints":{"tls":"tls/(0303)(130213031301c02cc030009fcca9cca8ccaac02bc02f009ec024c028006bc023c0270067c00ac0140039c009c0130033009d009c003d003c0035002f00ff)((0000)(000b000403000102)(000a000c000a001d0017001e00190018)(0023)(0016)(0017)(000d0030002e040305030603080708080809080a080b080408050806040105010601030302030301020103020202040205020602)(002b0009080304030303020301)(002d00020101)(0033))"},"tls":{"client":{"version":"0303","random":"cf8b061405bf01576cfa396462724237b1299467cc45accb2da23bc61df95a2d","session_id":"0dbf7e8e26aff83621e5d847c70e898635c1bb759dc6c9aea1c85460eb6464a1","cipher_suites":"130213031301c02cc030009fcca9cca8ccaac02bc02f009ec024c028006bc023c0270067c00ac0140039c009c0130033009d009c003d003c0035002f00ff","compression_methods":"00","server_name":"maps.google.com","session_ticket":"","features":"[\"0303\",\"130213031301c02cc030009fcca9cca8ccaac02bc02f009ec024c028006bc023c0270067c00ac0140039c009c0130033009d009c003d003c0035002f00ff\",[[\"0000\",\"001200000f6d6170732e676f6f676c652e636f6d\"],[\"000b\",\"03000102\"],[\"000a\",\"000a001d0017001e00190018\"],[\"0023\",\"\"],[\"0016\",\"\"],[\"0017\",\"\"],[\"000d\",\"002e040305030603080708080809080a080b080408050806040105010601030302030301020103020202040205020602\"],[\"002b\",\"080304030303020301\"],[\"002d\",\"0101\"],[\"0033\",\"0024001d0020782d69987de27def316838a79bb8500f048e43757ff29229c375bda4fd85ce71\"]]]"}},"src_ip":"192.168.113.237","dst_ip":"172.217.7.206","protocol":6,"src_port":60730,"dst_port":443,"event_start":1565200330.619674} -{"ip":{"version":4,"ttl":128,"id":"a1bb"},"fingerprints":{"tls_server":"tls_server/(0303)(1302)((0033)(002b00020304))"},"tls":{"server":{"version":"0303","random":"986ea5111b77e494b72d64747f9f2caea3d37baa0a7155425a5d16dd427a1a96","selected_cipher_suite":"1302","compression_method":"00"}},"src_ip":"172.217.7.206","dst_ip":"192.168.113.237","protocol":6,"src_port":443,"dst_port":60730,"event_start":1565200330.671147} -{"ip":{"version":4,"ttl":64,"id":"98a8"},"fingerprints":{"tcp":"tcp/(40)()(40)(faf0)((020405b4)(04)(08)(01)(030307))"},"tcp":{"seq":101603264,"timestamp":{"ts_val":2521263406}},"src_ip":"192.168.113.237","dst_ip":"172.217.7.228","protocol":6,"src_port":55984,"dst_port":443,"event_start":1565200330.856177} -{"ip":{"version":4,"ttl":128,"id":"a1c5"},"fingerprints":{"tcp_server":"tcp_server/(40)()(80)(faf0)((020405b4))"},"tcp_server":{"seq":2626088878},"src_ip":"172.217.7.228","dst_ip":"192.168.113.237","protocol":6,"src_port":443,"dst_port":55984,"event_start":1565200330.895271} -{"ip":{"version":4,"ttl":64,"id":"98aa"},"fingerprints":{"tls":"tls/(0303)(130213031301c02cc030009fcca9cca8ccaac02bc02f009ec024c028006bc023c0270067c00ac0140039c009c0130033009d009c003d003c0035002f00ff)((0000)(000b000403000102)(000a000c000a001d0017001e00190018)(0023)(0016)(0017)(000d0030002e040305030603080708080809080a080b080408050806040105010601030302030301020103020202040205020602)(002b0009080304030303020301)(002d00020101)(0033))"},"tls":{"client":{"version":"0303","random":"d031fca6b07973a066ca9fa3a5cc2448e9efadffa4d2e1339f387a1ba98bae8d","session_id":"03326a57be129e7aa82f86dbe24c89db4e589f333bf70c0703c203fb277f00d2","cipher_suites":"130213031301c02cc030009fcca9cca8ccaac02bc02f009ec024c028006bc023c0270067c00ac0140039c009c0130033009d009c003d003c0035002f00ff","compression_methods":"00","server_name":"www.google.com","session_ticket":"","features":"[\"0303\",\"130213031301c02cc030009fcca9cca8ccaac02bc02f009ec024c028006bc023c0270067c00ac0140039c009c0130033009d009c003d003c0035002f00ff\",[[\"0000\",\"001100000e7777772e676f6f676c652e636f6d\"],[\"000b\",\"03000102\"],[\"000a\",\"000a001d0017001e00190018\"],[\"0023\",\"\"],[\"0016\",\"\"],[\"0017\",\"\"],[\"000d\",\"002e040305030603080708080809080a080b080408050806040105010601030302030301020103020202040205020602\"],[\"002b\",\"080304030303020301\"],[\"002d\",\"0101\"],[\"0033\",\"0024001d0020de7c059e00a1d1d34f2422c07d964e0851e1d216e7459508ba5ef8e3387c530c\"]]]"}},"src_ip":"192.168.113.237","dst_ip":"172.217.7.228","protocol":6,"src_port":55984,"dst_port":443,"event_start":1565200330.895541} -{"ip":{"version":4,"ttl":128,"id":"a1c7"},"fingerprints":{"tls_server":"tls_server/(0303)(1302)((0033)(002b00020304))"},"tls":{"server":{"version":"0303","random":"eb701e980d3a7076d2a5ccd9fe037da7127a4bca3bb2959d786044ca68c6bd2d","selected_cipher_suite":"1302","compression_method":"00"}},"src_ip":"172.217.7.228","dst_ip":"192.168.113.237","protocol":6,"src_port":443,"dst_port":55984,"event_start":1565200331.112443} -{"ip":{"version":4,"ttl":64,"id":"d425"},"dns":{"base64":"eUgBAAABAAAAAAAACGJsb2dzcG90A2NvbQAAAQAB"},"src_ip":"192.168.113.237","dst_ip":"192.168.113.2","protocol":17,"src_port":48131,"dst_port":53,"event_start":1565200331.419731} -{"ip":{"version":4,"ttl":64,"id":"d426"},"dns":{"base64":"M6kBAAABAAAAAAAACGJsb2dzcG90A2NvbQAAHAAB"},"src_ip":"192.168.113.237","dst_ip":"192.168.113.2","protocol":17,"src_port":43599,"dst_port":53,"event_start":1565200331.419926} -{"ip":{"version":4,"ttl":128,"id":"a1f3"},"dns":{"base64":"eUiBgAABAAEABAAICGJsb2dzcG90A2NvbQAAAQABwAwAAQABAAAABQAErNkH6cAMAAIAAQAAAAUADQNuczQGZ29vZ2xlwBXADAACAAEAAAAFAAYDbnMzwD7ADAACAAEAAAAFAAYDbnMywD7ADAACAAEAAAAFAAYDbnMxwD7AdwABAAEAAAAFAATY7yAKwGUAAQABAAAABQAE2O8iCsBTAAEAAQAAAAUABNjvJArAOgABAAEAAAAFAATY7yYKwHcAHAABAAAABQAQIAFIYEgCADIAAAAAAAAACsBlABwAAQAAAAUAECABSGBIAgA0AAAAAAAAAArAUwAcAAEAAAAFABAgAUhgSAIANgAAAAAAAAAKwDoAHAABAAAABQAQIAFIYEgCADgAAAAAAAAACg=="},"src_ip":"192.168.113.2","dst_ip":"192.168.113.237","protocol":17,"src_port":53,"dst_port":48131,"event_start":1565200331.472656} -{"ip":{"version":4,"ttl":128,"id":"a1f4"},"dns":{"base64":"M6mBgAABAAEADQANCGJsb2dzcG90A2NvbQAAHAABwAwAHAABAAAABQAQJgf4sEAECAIAAAAAAAAgCcAVAAIAAQAAAAUAFAFkDGd0bGQtc2VydmVycwNuZXQAwBUAAgABAAAABQAEAWPASMAVAAIAAQAAAAUABAFtwEjAFQACAAEAAAAFAAQBbMBIwBUAAgABAAAABQAEAWfASMAVAAIAAQAAAAUABAFqwEjAFQACAAEAAAAFAAQBZcBIwBUAAgABAAAABQAEAWvASMAVAAIAAQAAAAUABAFiwEjAFQACAAEAAAAFAAQBaMBIwBUAAgABAAAABQAEAWbASMAVAAIAAQAAAAUABAFhwEjAFQACAAEAAAAFAAQBacBIwQYAAQABAAAABQAEwAUGHsDWAAEAAQAAAAUABMAhDh7AZgABAAEAAAAFAATAGlwewEYAAQABAAAABQAEwB9QHsC2AAEAAQAAAAUABMAMXh7A9gABAAEAAAAFAATAIzMewJYAAQABAAAABQAEwCpdHsDmAAEAAQAAAAUABMA2cB7BFgABAAEAAAAFAATAK6wewKYAAQABAAAABQAEwDBPHsDGAAEAAQAAAAUABMA0sh7AhgABAAEAAAAFAATAKaIewHYAAQABAAAABQAEwDdTHg=="},"src_ip":"192.168.113.2","dst_ip":"192.168.113.237","protocol":17,"src_port":53,"dst_port":43599,"event_start":1565200331.472677} -{"ip":{"version":4,"ttl":64,"id":"7cf1"},"fingerprints":{"tcp":"tcp/(40)()(40)(faf0)((020405b4)(04)(08)(01)(030307))"},"tcp":{"seq":1453174003,"timestamp":{"ts_val":2641815692}},"src_ip":"192.168.113.237","dst_ip":"172.217.7.233","protocol":6,"src_port":59916,"dst_port":443,"event_start":1565200331.473374} -{"ip":{"version":4,"ttl":128,"id":"a1f5"},"fingerprints":{"tcp_server":"tcp_server/(40)()(80)(faf0)((020405b4))"},"tcp_server":{"seq":3532055911},"src_ip":"172.217.7.233","dst_ip":"192.168.113.237","protocol":6,"src_port":443,"dst_port":59916,"event_start":1565200331.510841} -{"ip":{"version":4,"ttl":64,"id":"7cf3"},"fingerprints":{"tls":"tls/(0303)(130213031301c02cc030009fcca9cca8ccaac02bc02f009ec024c028006bc023c0270067c00ac0140039c009c0130033009d009c003d003c0035002f00ff)((0000)(000b000403000102)(000a000c000a001d0017001e00190018)(0023)(0016)(0017)(000d0030002e040305030603080708080809080a080b080408050806040105010601030302030301020103020202040205020602)(002b0009080304030303020301)(002d00020101)(0033))"},"tls":{"client":{"version":"0303","random":"163567252eee635bc5f1ac4aeac4bb671b890c340db9db5919b3e72c1b4acf41","session_id":"c9bc460e05394f2d566256a2a0b4ea945488e86d52c635f0797da017e0069b80","cipher_suites":"130213031301c02cc030009fcca9cca8ccaac02bc02f009ec024c028006bc023c0270067c00ac0140039c009c0130033009d009c003d003c0035002f00ff","compression_methods":"00","server_name":"blogspot.com","session_ticket":"","features":"[\"0303\",\"130213031301c02cc030009fcca9cca8ccaac02bc02f009ec024c028006bc023c0270067c00ac0140039c009c0130033009d009c003d003c0035002f00ff\",[[\"0000\",\"000f00000c626c6f6773706f742e636f6d\"],[\"000b\",\"03000102\"],[\"000a\",\"000a001d0017001e00190018\"],[\"0023\",\"\"],[\"0016\",\"\"],[\"0017\",\"\"],[\"000d\",\"002e040305030603080708080809080a080b080408050806040105010601030302030301020103020202040205020602\"],[\"002b\",\"080304030303020301\"],[\"002d\",\"0101\"],[\"0033\",\"0024001d0020a43fcd9509b7b13636409817edd7e4ec49a1f7519b9f9c7604a003d60a4f9f79\"]]]"}},"src_ip":"192.168.113.237","dst_ip":"172.217.7.233","protocol":6,"src_port":59916,"dst_port":443,"event_start":1565200331.511219} -{"ip":{"version":4,"ttl":128,"id":"a1f8"},"fingerprints":{"tls_server":"tls_server/(0303)(1302)((0033)(002b00020304))"},"tls":{"server":{"version":"0303","random":"768b8ad9494da4d8dfadb53a6f0498253622ec9583d52a04d207788d9eab26b7","selected_cipher_suite":"1302","compression_method":"00"}},"src_ip":"172.217.7.233","dst_ip":"192.168.113.237","protocol":6,"src_port":443,"dst_port":59916,"event_start":1565200331.560478} -{"ip":{"version":4,"ttl":64,"id":"d45e"},"dns":{"base64":"5BYBAAABAAAAAAAAA3d3dwdibG9nZ2VyA2NvbQAAAQAB"},"src_ip":"192.168.113.237","dst_ip":"192.168.113.2","protocol":17,"src_port":43627,"dst_port":53,"event_start":1565200331.656650} -{"ip":{"version":4,"ttl":64,"id":"d45f"},"dns":{"base64":"HvMBAAABAAAAAAAAA3d3dwdibG9nZ2VyA2NvbQAAHAAB"},"src_ip":"192.168.113.237","dst_ip":"192.168.113.2","protocol":17,"src_port":55611,"dst_port":53,"event_start":1565200331.656831} -{"ip":{"version":4,"ttl":128,"id":"a202"},"dns":{"base64":"HvOBgAABAAIADQAMA3d3dwdibG9nZ2VyA2NvbQAAHAABwAwABQABAAAABQATB2Jsb2dnZXIBbAZnb29nbGXAGMAtABwAAQAAAAUAECYH+LBABAgJAAAAAAAAIAnAGAACAAEAAAAFABQBbAxndGxkLXNlcnZlcnMDbmV0AMAYAAIAAQAAAAUABAFqwGrAGAACAAEAAAAFAAQBYsBqwBgAAgABAAAABQAEAWPAasAYAAIAAQAAAAUABAFhwGrAGAACAAEAAAAFAAQBa8BqwBgAAgABAAAABQAEAWfAasAYAAIAAQAAAAUABAFlwGrAGAACAAEAAAAFAAQBZsBqwBgAAgABAAAABQAEAWjAasAYAAIAAQAAAAUABAFpwGrAGAACAAEAAAAFAAQBbcBqwBgAAgABAAAABQAEAWTAasC4AAEAAQAAAAUABMAFBh7AmAABAAEAAAAFAATAIQ4ewKgAAQABAAAABQAEwBpcHsE4AAEAAQAAAAUABMAfUB7A6AABAAEAAAAFAATADF4ewPgAAQABAAAABQAEwCMzHsDYAAEAAQAAAAUABMAqXR7BCAABAAEAAAAFAATANnAewRgAAQABAAAABQAEwCusHsCIAAEAAQAAAAUABMAwTx7AyAABAAEAAAAFAATANLIewGgAAQABAAAABQAEwCmiHg=="},"src_ip":"192.168.113.2","dst_ip":"192.168.113.237","protocol":17,"src_port":53,"dst_port":55611,"event_start":1565200331.693952} -{"ip":{"version":4,"ttl":128,"id":"a203"},"dns":{"base64":"5BaBgAABAAIADQANA3d3dwdibG9nZ2VyA2NvbQAAAQABwAwABQABAAAABQATB2Jsb2dnZXIBbAZnb29nbGXAGMAtAAEAAQAAAAUABKzZDenAGAACAAEAAAAFABQBawxndGxkLXNlcnZlcnMDbmV0AMAYAAIAAQAAAAUABAFlwF7AGAACAAEAAAAFAAQBacBewBgAAgABAAAABQAEAWPAXsAYAAIAAQAAAAUABAFmwF7AGAACAAEAAAAFAAQBZMBewBgAAgABAAAABQAEAW3AXsAYAAIAAQAAAAUABAFiwF7AGAACAAEAAAAFAAQBbMBewBgAAgABAAAABQAEAWjAXsAYAAIAAQAAAAUABAFhwF7AGAACAAEAAAAFAAQBZ8BewBgAAgABAAAABQAEAWrAXsEMAAEAAQAAAAUABMAFBh7A3AABAAEAAAAFAATAIQ4ewJwAAQABAAAABQAEwBpcHsC8AAEAAQAAAAUABMAfUB7AfAABAAEAAAAFAATADF4ewKwAAQABAAAABQAEwCMzHsEcAAEAAQAAAAUABMAqXR7A/AABAAEAAAAFAATANnAewIwAAQABAAAABQAEwCusHsEsAAEAAQAAAAUABMAwTx7AXAABAAEAAAAFAATANLIewOwAAQABAAAABQAEwCmiHsDMAAEAAQAAAAUABMA3Ux4="},"src_ip":"192.168.113.2","dst_ip":"192.168.113.237","protocol":17,"src_port":53,"dst_port":43627,"event_start":1565200331.694249} -{"ip":{"version":4,"ttl":64,"id":"d2f2"},"fingerprints":{"tcp":"tcp/(40)()(40)(faf0)((020405b4)(04)(08)(01)(030307))"},"tcp":{"seq":2821653192,"timestamp":{"ts_val":3864219783}},"src_ip":"192.168.113.237","dst_ip":"172.217.13.233","protocol":6,"src_port":46882,"dst_port":443,"event_start":1565200331.694531} -{"ip":{"version":4,"ttl":128,"id":"a204"},"fingerprints":{"tcp_server":"tcp_server/(40)()(80)(faf0)((020405b4))"},"tcp_server":{"seq":1801488011},"src_ip":"172.217.13.233","dst_ip":"192.168.113.237","protocol":6,"src_port":443,"dst_port":46882,"event_start":1565200331.732986} -{"ip":{"version":4,"ttl":64,"id":"d2f4"},"fingerprints":{"tls":"tls/(0303)(130213031301c02cc030009fcca9cca8ccaac02bc02f009ec024c028006bc023c0270067c00ac0140039c009c0130033009d009c003d003c0035002f00ff)((0000)(000b000403000102)(000a000c000a001d0017001e00190018)(0023)(0016)(0017)(000d0030002e040305030603080708080809080a080b080408050806040105010601030302030301020103020202040205020602)(002b0009080304030303020301)(002d00020101)(0033))"},"tls":{"client":{"version":"0303","random":"802d28b5a7009f36c038fc3e6675a6569a810bdb8825b847eae71d9f771342fa","session_id":"a6cd15d91b44014f64bd100f426bfc700b700ef86b32f40e5c03a565c2dac241","cipher_suites":"130213031301c02cc030009fcca9cca8ccaac02bc02f009ec024c028006bc023c0270067c00ac0140039c009c0130033009d009c003d003c0035002f00ff","compression_methods":"00","server_name":"www.blogger.com","session_ticket":"","features":"[\"0303\",\"130213031301c02cc030009fcca9cca8ccaac02bc02f009ec024c028006bc023c0270067c00ac0140039c009c0130033009d009c003d003c0035002f00ff\",[[\"0000\",\"001200000f7777772e626c6f676765722e636f6d\"],[\"000b\",\"03000102\"],[\"000a\",\"000a001d0017001e00190018\"],[\"0023\",\"\"],[\"0016\",\"\"],[\"0017\",\"\"],[\"000d\",\"002e040305030603080708080809080a080b080408050806040105010601030302030301020103020202040205020602\"],[\"002b\",\"080304030303020301\"],[\"002d\",\"0101\"],[\"0033\",\"0024001d0020fae4a63e375e25e8547a10f85893152fa90b4171b9330b8d594e6f5b8cf56c11\"]]]"}},"src_ip":"192.168.113.237","dst_ip":"172.217.13.233","protocol":6,"src_port":46882,"dst_port":443,"event_start":1565200331.733407} -{"ip":{"version":4,"ttl":128,"id":"a206"},"fingerprints":{"tls_server":"tls_server/(0303)(1302)((0033)(002b00020304))"},"tls":{"server":{"version":"0303","random":"a6ec3a81d8b59aa27f2e240d5a265c00cbc9781cf5117bd46b4c532d804e8d2a","selected_cipher_suite":"1302","compression_method":"00"}},"src_ip":"172.217.13.233","dst_ip":"192.168.113.237","protocol":6,"src_port":443,"dst_port":46882,"event_start":1565200331.783406} -{"ip":{"version":4,"ttl":64,"id":"bf4d"},"fingerprints":{"tcp":"tcp/(40)()(40)(faf0)((020405b4)(04)(08)(01)(030307))"},"tcp":{"seq":4077023014,"timestamp":{"ts_val":1676998298}},"src_ip":"192.168.113.237","dst_ip":"172.217.164.141","protocol":6,"src_port":57032,"dst_port":443,"event_start":1565200331.892552} -{"ip":{"version":4,"ttl":128,"id":"a210"},"fingerprints":{"tcp_server":"tcp_server/(40)()(80)(faf0)((020405b4))"},"tcp_server":{"seq":1026623531},"src_ip":"172.217.164.141","dst_ip":"192.168.113.237","protocol":6,"src_port":443,"dst_port":57032,"event_start":1565200331.933204} -{"ip":{"version":4,"ttl":64,"id":"bf4f"},"fingerprints":{"tls":"tls/(0303)(130213031301c02cc030009fcca9cca8ccaac02bc02f009ec024c028006bc023c0270067c00ac0140039c009c0130033009d009c003d003c0035002f00ff)((0000)(000b000403000102)(000a000c000a001d0017001e00190018)(0023)(0016)(0017)(000d0030002e040305030603080708080809080a080b080408050806040105010601030302030301020103020202040205020602)(002b0009080304030303020301)(002d00020101)(0033))"},"tls":{"client":{"version":"0303","random":"79c946e10e30d974934199db0dc0d0822d7ae856d279ed41627c91a2fe950382","session_id":"3e861c401aa7e552ede4429a55bd33a77048d2e5283a4633befde89b9c294e71","cipher_suites":"130213031301c02cc030009fcca9cca8ccaac02bc02f009ec024c028006bc023c0270067c00ac0140039c009c0130033009d009c003d003c0035002f00ff","compression_methods":"00","server_name":"accounts.google.com","session_ticket":"","features":"[\"0303\",\"130213031301c02cc030009fcca9cca8ccaac02bc02f009ec024c028006bc023c0270067c00ac0140039c009c0130033009d009c003d003c0035002f00ff\",[[\"0000\",\"00160000136163636f756e74732e676f6f676c652e636f6d\"],[\"000b\",\"03000102\"],[\"000a\",\"000a001d0017001e00190018\"],[\"0023\",\"\"],[\"0016\",\"\"],[\"0017\",\"\"],[\"000d\",\"002e040305030603080708080809080a080b080408050806040105010601030302030301020103020202040205020602\"],[\"002b\",\"080304030303020301\"],[\"002d\",\"0101\"],[\"0033\",\"0024001d002070280ffb1f7b0e80a54647dc3dd899378926285894bf2d68b6f6ac6bb51c2762\"]]]"}},"src_ip":"192.168.113.237","dst_ip":"172.217.164.141","protocol":6,"src_port":57032,"dst_port":443,"event_start":1565200331.933519} -{"ip":{"version":4,"ttl":128,"id":"a212"},"fingerprints":{"tls_server":"tls_server/(0303)(1302)((0033)(002b00020304))"},"tls":{"server":{"version":"0303","random":"2cf976e3a4cf201053f3dced9d535cbda673233e7f16604f917562f36dabfb96","selected_cipher_suite":"1302","compression_method":"00"}},"src_ip":"172.217.164.141","dst_ip":"192.168.113.237","protocol":6,"src_port":443,"dst_port":57032,"event_start":1565200331.984414} -{"ip":{"version":4,"ttl":64,"id":"0958"},"fingerprints":{"tcp":"tcp/(40)()(40)(faf0)((020405b4)(04)(08)(01)(030307))"},"tcp":{"seq":3708213749,"timestamp":{"ts_val":3864220243}},"src_ip":"192.168.113.237","dst_ip":"172.217.13.233","protocol":6,"src_port":46886,"dst_port":443,"event_start":1565200332.154185} -{"ip":{"version":4,"ttl":128,"id":"a21c"},"fingerprints":{"tcp_server":"tcp_server/(40)()(80)(faf0)((020405b4))"},"tcp_server":{"seq":392017097},"src_ip":"172.217.13.233","dst_ip":"192.168.113.237","protocol":6,"src_port":443,"dst_port":46886,"event_start":1565200332.196110} -{"ip":{"version":4,"ttl":64,"id":"095a"},"fingerprints":{"tls":"tls/(0303)(130213031301c02cc030009fcca9cca8ccaac02bc02f009ec024c028006bc023c0270067c00ac0140039c009c0130033009d009c003d003c0035002f00ff)((0000)(000b000403000102)(000a000c000a001d0017001e00190018)(0023)(0016)(0017)(000d0030002e040305030603080708080809080a080b080408050806040105010601030302030301020103020202040205020602)(002b0009080304030303020301)(002d00020101)(0033))"},"tls":{"client":{"version":"0303","random":"11970d8af6853d4c492a4bc7f3adb0825098c4b982044755d507ab7a1850e58a","session_id":"79f8d1e264adf5151bd70230d019696f4607f7aae037a395fc70747c10c50979","cipher_suites":"130213031301c02cc030009fcca9cca8ccaac02bc02f009ec024c028006bc023c0270067c00ac0140039c009c0130033009d009c003d003c0035002f00ff","compression_methods":"00","server_name":"www.blogger.com","session_ticket":"","features":"[\"0303\",\"130213031301c02cc030009fcca9cca8ccaac02bc02f009ec024c028006bc023c0270067c00ac0140039c009c0130033009d009c003d003c0035002f00ff\",[[\"0000\",\"001200000f7777772e626c6f676765722e636f6d\"],[\"000b\",\"03000102\"],[\"000a\",\"000a001d0017001e00190018\"],[\"0023\",\"\"],[\"0016\",\"\"],[\"0017\",\"\"],[\"000d\",\"002e040305030603080708080809080a080b080408050806040105010601030302030301020103020202040205020602\"],[\"002b\",\"080304030303020301\"],[\"002d\",\"0101\"],[\"0033\",\"0024001d002068868f2225f8e9836556dc0820df9750fc3bb00b892fdc39e28de936ba2d4231\"]]]"}},"src_ip":"192.168.113.237","dst_ip":"172.217.13.233","protocol":6,"src_port":46886,"dst_port":443,"event_start":1565200332.196377} -{"ip":{"version":4,"ttl":128,"id":"a21e"},"fingerprints":{"tls_server":"tls_server/(0303)(1302)((0033)(002b00020304))"},"tls":{"server":{"version":"0303","random":"99f461a76f04b6819fa26510b7c35085eac1bc0d5aed4288425d68c1d58afd6c","selected_cipher_suite":"1302","compression_method":"00"}},"src_ip":"172.217.13.233","dst_ip":"192.168.113.237","protocol":6,"src_port":443,"dst_port":46886,"event_start":1565200332.244799} -{"ip":{"version":4,"ttl":64,"id":"d4a0"},"dns":{"base64":"68YBAAABAAAAAAAAA2JpdAJseQAAAQAB"},"src_ip":"192.168.113.237","dst_ip":"192.168.113.2","protocol":17,"src_port":49963,"dst_port":53,"event_start":1565200332.519537} -{"ip":{"version":4,"ttl":64,"id":"d4a1"},"dns":{"base64":"nYgBAAABAAAAAAAAA2JpdAJseQAAHAAB"},"src_ip":"192.168.113.237","dst_ip":"192.168.113.2","protocol":17,"src_port":46108,"dst_port":53,"event_start":1565200332.519723} -{"ip":{"version":4,"ttl":128,"id":"a277"},"dns":{"base64":"nYiBgAABAAAAAQAAA2JpdAJseQAAHAABwAwABgABAAAABQBJB25zLTEzNzIJYXdzZG5zLTQzA29yZwARYXdzZG5zLWhvc3RtYXN0ZXIGYW1hem9uA2NvbQAAAAABAAAcIAAAA4QAEnUAAAFRgA=="},"src_ip":"192.168.113.2","dst_ip":"192.168.113.237","protocol":17,"src_port":53,"dst_port":46108,"event_start":1565200332.554746} -{"ip":{"version":4,"ttl":128,"id":"a278"},"dns":{"base64":"68aBgAABAAIABQAIA2JpdAJseQAAAQABwAwAAQABAAAABQAEQ8f4CsAMAAEAAQAAAAUABEPH+AvAEAACAAEAAAAFAAoDcGNoA2x0dMAQwBAAAgABAAAABQAUBnBobG9lbQd1b3JlZ29uA2VkdQDAEAACAAEAAAAFABADZG5zBmx0dG5ldANuZXQAwBAAAgABAAAABQAQBW5zLWx5B2FmcmluaWPAhcAQAAIAAQAAAAUABwRkbnMxwH7AegABAAEAAAAFAAQ+8CQJwEQAAQABAAAABQAEzD3YQ8CyAAEAAQAAAAUABD5EKgnAlgABAAEAAAAFAATE2KgYwFoAAQABAAAABQAEgN8gI8BEABwAAQAAAAUAECABBQAAFGBnAK0AAAAAAAHAlgAcAAEAAAAFABAgAUP4ASAAAAAAAAAAAAAkwFoAHAABAAAABQAQIAEEaA0BACAAAAAAgN8gIw=="},"src_ip":"192.168.113.2","dst_ip":"192.168.113.237","protocol":17,"src_port":53,"dst_port":49963,"event_start":1565200332.566308} -{"ip":{"version":4,"ttl":64,"id":"cba1"},"fingerprints":{"tcp":"tcp/(40)()(40)(faf0)((020405b4)(04)(08)(01)(030307))"},"tcp":{"seq":3220380341,"timestamp":{"ts_val":3135905820}},"src_ip":"192.168.113.237","dst_ip":"67.199.248.10","protocol":6,"src_port":55156,"dst_port":443,"event_start":1565200332.566732} -{"ip":{"version":4,"ttl":128,"id":"a279"},"fingerprints":{"tcp_server":"tcp_server/(40)()(80)(faf0)((020405b4))"},"tcp_server":{"seq":3434929317},"src_ip":"67.199.248.10","dst_ip":"192.168.113.237","protocol":6,"src_port":443,"dst_port":55156,"event_start":1565200332.677735} -{"ip":{"version":4,"ttl":64,"id":"cba3"},"fingerprints":{"tls":"tls/(0303)(130213031301c02cc030009fcca9cca8ccaac02bc02f009ec024c028006bc023c0270067c00ac0140039c009c0130033009d009c003d003c0035002f00ff)((0000)(000b000403000102)(000a000c000a001d0017001e00190018)(0023)(0016)(0017)(000d0030002e040305030603080708080809080a080b080408050806040105010601030302030301020103020202040205020602)(002b0009080304030303020301)(002d00020101)(0033))"},"tls":{"client":{"version":"0303","random":"9ef1219130c8600abc208f7f1eb3f1e57339c542552930dad00f4d6aec24ea00","session_id":"dc36e321e4be8d986182161dfc3c155e89de88b60de2ba1525aaab97479dc670","cipher_suites":"130213031301c02cc030009fcca9cca8ccaac02bc02f009ec024c028006bc023c0270067c00ac0140039c009c0130033009d009c003d003c0035002f00ff","compression_methods":"00","server_name":"bit.ly","session_ticket":"","features":"[\"0303\",\"130213031301c02cc030009fcca9cca8ccaac02bc02f009ec024c028006bc023c0270067c00ac0140039c009c0130033009d009c003d003c0035002f00ff\",[[\"0000\",\"00090000066269742e6c79\"],[\"000b\",\"03000102\"],[\"000a\",\"000a001d0017001e00190018\"],[\"0023\",\"\"],[\"0016\",\"\"],[\"0017\",\"\"],[\"000d\",\"002e040305030603080708080809080a080b080408050806040105010601030302030301020103020202040205020602\"],[\"002b\",\"080304030303020301\"],[\"002d\",\"0101\"],[\"0033\",\"0024001d0020dd9fba07f642d2419e292f01c37fb79a5ebbf3aed47af8c083b5c6be2ac2b567\"]]]"}},"src_ip":"192.168.113.237","dst_ip":"67.199.248.10","protocol":6,"src_port":55156,"dst_port":443,"event_start":1565200332.678111} -{"ip":{"version":4,"ttl":128,"id":"a27d"},"fingerprints":{"tls_server":"tls_server/(0303)(c030)((ff01)(000b000403000102)(0023))"},"tls":{"server":{"certs":[{"base64":"MIIGszCCBZugAwIBAgIQDWR3s57NlhtLxB5iD5etfjANBgkqhkiG9w0BAQsFADB1MQswCQYDVQQGEwJVUzEVMBMGA1UEChMMRGlnaUNlcnQgSW5jMRkwFwYDVQQLExB3d3cuZGlnaWNlcnQuY29tMTQwMgYDVQQDEytEaWdpQ2VydCBTSEEyIEV4dGVuZGVkIFZhbGlkYXRpb24gU2VydmVyIENBMB4XDTE4MDcwMzAwMDAwMFoXDTE5MDgyMDEyMDAwMFowgbsxHTAbBgNVBA8MFFByaXZhdGUgT3JnYW5pemF0aW9uMRMwEQYLKwYBBAGCNzwCAQMTAlVTMRkwFwYLKwYBBAGCNzwCAQITCERlbGF3YXJlMRAwDgYDVQQFEwc0NjI3MDEzMQswCQYDVQQGEwJVUzERMA8GA1UECBMITmV3IFlvcmsxETAPBgNVBAcTCE5ldyBZb3JrMRQwEgYDVQQKEwtCaXRseSwgSW5jLjEPMA0GA1UEAxMGYml0Lmx5MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAznd+dJC+0jK0zgnPKkp5TqfwlPS1hafMINVKQBTMBzLoA786NkCFMG7rAV7P3J4a0PQkTz6hbBTfF4d6nld6k98tIyFzH4cRIVU7yx+Ebat2GY/fFNjtgKdsmUZrd9hfBqXxAKWtoOfNtIPQSTDh0Lq8FXzVkeompoz0v+MczgNeoSq5ieTxtS2CoemP89dhOFXXq5uHJOS7OqjD1zNnWxBXltWtMN+2yWo6/NGzkiq7F2nfRInf97MSCmSMH5nK7L1G6xNo+qfvGWgZVBznNaygX7avYuHvgRZ1YN/1BGflQ3hidAsYWMW5s49jUx/Di0CcRL6mf+Xz8wpOMk4/kwIDAQABo4IC9jCCAvIwHwYDVR0jBBgwFoAUPdNQpdagre7zSmAKZdMh1Pj41g8wHQYDVR0OBBYEFCHl30RIen6Sr8lKfr84jyIjaHLJMB0GA1UdEQQWMBSCBmJpdC5seYIKd3d3LmJpdC5seTAOBgNVHQ8BAf8EBAMCBaAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMHUGA1UdHwRuMGwwNKAyoDCGLmh0dHA6Ly9jcmwzLmRpZ2ljZXJ0LmNvbS9zaGEyLWV2LXNlcnZlci1nMi5jcmwwNKAyoDCGLmh0dHA6Ly9jcmw0LmRpZ2ljZXJ0LmNvbS9zaGEyLWV2LXNlcnZlci1nMi5jcmwwSwYDVR0gBEQwQjA3BglghkgBhv1sAgEwKjAoBggrBgEFBQcCARYcaHR0cHM6Ly93d3cuZGlnaWNlcnQuY29tL0NQUzAHBgVngQwBATCBiAYIKwYBBQUHAQEEfDB6MCQGCCsGAQUFBzABhhhodHRwOi8vb2NzcC5kaWdpY2VydC5jb20wUgYIKwYBBQUHMAKGRmh0dHA6Ly9jYWNlcnRzLmRpZ2ljZXJ0LmNvbS9EaWdpQ2VydFNIQTJFeHRlbmRlZFZhbGlkYXRpb25TZXJ2ZXJDQS5jcnQwDAYDVR0TAQH/BAIwADCCAQMGCisGAQQB1nkCBAIEgfQEgfEA7wB2AO5Lvbd1zmC64UJpH6vhnmajD35fsHLYgwDEe4l6qP3LAAABZF6i2GcAAAQDAEcwRQIgRFgqLABzUHkbLvr95JZbCjc+DMCKb1GAeEV8llFkePMCIQCst8gB/SAjkLpb9HsnXo4T98+2vENa+qu0fodWfqVvWwB1AFYUBpov18Ls0/XhvUSyPsdGdrm8mRFcwO+UmFXWidDdAAABZF6i19oAAAQDAEYwRAIgbmrJyI2amsTHWy31ejWA+p/3lVfhpgpjbVmGHqD96HkCIEid5T6yI11UyVV1HVbKV3V0d/LR7GraugLARjr0ByzwMA0GCSqGSIb3DQEBCwUAA4IBAQDGyFbf+EbxHAs65YFOq1wPA5sRnPs50am+sBVFsMBJ8d6zHPwER/vquEtuuzlA87abnN5dOW+cIujGdaorO8sXuEh+bKj7jQ8DM+Vae/kDCLpszkiBfxyFwgoFrXgX3Zvy9ccnQlHgDptgF/Jd5y/KQax9/w7HuRwuVW7oBTi67LZYRa8+hkS1d3B6Zo7OXnCgg2vIFYo96I5roGWDxfcWvHg88oGp3XpEfUssWgRJizpKYB6t4rGgqbzlcqRqa0oHntk4daSegITewFiLKPlQenthNq73BKVpQd5rmLt7YAAGFYUg6gKyx4sQNl0EeOesgF35cg71fRyfdnWyqL1x"},{"base64":"MIIEtjCCA56gAwIBAgIQDHmpRLCMEZUgkmFf4msdgzANBgkqhkiG9w0BAQsFADBsMQswCQYDVQQGEwJVUzEVMBMGA1UEChMMRGlnaUNlcnQgSW5jMRkwFwYDVQQLExB3d3cuZGlnaWNlcnQuY29tMSswKQYDVQQDEyJEaWdpQ2VydCBIaWdoIEFzc3VyYW5jZSBFViBSb290IENBMB4XDTEzMTAyMjEyMDAwMFoXDTI4MTAyMjEyMDAwMFowdTELMAkGA1UEBhMCVVMxFTATBgNVBAoTDERpZ2lDZXJ0IEluYzEZMBcGA1UECxMQd3d3LmRpZ2ljZXJ0LmNvbTE0MDIGA1UEAxMrRGlnaUNlcnQgU0hBMiBFeHRlbmRlZCBWYWxpZGF0aW9uIFNlcnZlciBDQTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANdTpARR+JmmFkhLZyeqk0nQOe0MsLAAh/FnKIaFjI5j2ryxQDji0/XspQUYuD0+xZkXMuwYjPrxDKZkIYXLBxA0sFKIKx9om9KxjxKws9LniB8f7zh3VFNfgHk/LhqqqB5LKw2rt2O5Nbd9FLxZS99RStKh4gzikIKHaq7q12TWmFXo/a8aUGxUvBHy/Urynbt/DvTVvo4WiRJV2MBxNO723C3sxIclho3YIeSwTQyJ3DkmF93215SF2AQhcJ1vb/9cuhnhRctWVyh+HA1BV6q3uCe7seT6Ku8hI3UarS2bhjWMnHe1c63YlC3k8wyd7sFOYn4XwHGeLN7x+RAoGTMCAwEAAaOCAUkwggFFMBIGA1UdEwEB/wQIMAYBAf8CAQAwDgYDVR0PAQH/BAQDAgGGMB0GA1UdJQQWMBQGCCsGAQUFBwMBBggrBgEFBQcDAjA0BggrBgEFBQcBAQQoMCYwJAYIKwYBBQUHMAGGGGh0dHA6Ly9vY3NwLmRpZ2ljZXJ0LmNvbTBLBgNVHR8ERDBCMECgPqA8hjpodHRwOi8vY3JsNC5kaWdpY2VydC5jb20vRGlnaUNlcnRIaWdoQXNzdXJhbmNlRVZSb290Q0EuY3JsMD0GA1UdIAQ2MDQwMgYEVR0gADAqMCgGCCsGAQUFBwIBFhxodHRwczovL3d3dy5kaWdpY2VydC5jb20vQ1BTMB0GA1UdDgQWBBQ901Cl1qCt7vNKYApl0yHU+PjWDzAfBgNVHSMEGDAWgBSxPsNpA/i/RwHUmCYaCALvY2QrwzANBgkqhkiG9w0BAQsFAAOCAQEAnbbQkIbhhgLtxaDwNBx0wY12zIYKqPBKikLWP8ipTa18CK3mtlC4ohpNiAexKSHc59rGPCHg4xFJcKx6HQGkyhE6V6t9VypAdP3THYUYUN9XR3WhfVUgLkc3UHKMf4Ib0mKPLQNa2sPIoc4sUqIAY+tzunHISScjl2SFnjgOrWNoPLpSgVh5oywM395t6zHyuqB8bPEs1OG9d4Q3A84ytciagRpKkk47RpqF/oOi+Z6Mo8wNXrM9zwR4jxQUezKcxwCmXMS1oVWNWlZopCJwqjyBcdmdqEU79OX2olHdx3ti6G8MdOu42vi/hw15UJGQmxg7kVkn8TUoE6smftX3eg=="}],"version":"0303","random":"116a0026e35b521f3741841513b25f66c213f46dcbabcef813f2177697137704","selected_cipher_suite":"c030","compression_method":"00","session_ticket":""}},"reassembly_properties":{"reassembled":true},"src_ip":"67.199.248.10","dst_ip":"192.168.113.237","protocol":6,"src_port":443,"dst_port":55156,"event_start":1565200332.784752} -{"ip":{"version":4,"ttl":64,"id":"d4ee"},"dns":{"base64":"AiMBAAABAAAAAAAABWJpdGx5A2NvbQAAAQAB"},"src_ip":"192.168.113.237","dst_ip":"192.168.113.2","protocol":17,"src_port":36233,"dst_port":53,"event_start":1565200333.006126} -{"ip":{"version":4,"ttl":64,"id":"d4ef"},"dns":{"base64":"WmUBAAABAAAAAAAABWJpdGx5A2NvbQAAHAAB"},"src_ip":"192.168.113.237","dst_ip":"192.168.113.2","protocol":17,"src_port":48534,"dst_port":53,"event_start":1565200333.006301} -{"ip":{"version":4,"ttl":128,"id":"a286"},"dns":{"base64":"AiOBgAABAAIADQANBWJpdGx5A2NvbQAAAQABwAwAAQABAAAABQAEQ8f4DsAMAAEAAQAAAAUABEPH+A/AEgACAAEAAAAFABQBbAxndGxkLXNlcnZlcnMDbmV0AMASAAIAAQAAAAUABAFrwEnAEgACAAEAAAAFAAQBYsBJwBIAAgABAAAABQAEAWnAScASAAIAAQAAAAUABAFnwEnAEgACAAEAAAAFAAQBZsBJwBIAAgABAAAABQAEAWjAScASAAIAAQAAAAUABAFqwEnAEgACAAEAAAAFAAQBYcBJwBIAAgABAAAABQAEAW3AScASAAIAAQAAAAUABAFjwEnAEgACAAEAAAAFAAQBZMBJwBIAAgABAAAABQAEAWXAScDXAAEAAQAAAAUABMAFBh7AdwABAAEAAAAFAATAIQ4ewPcAAQABAAAABQAEwBpcHsEHAAEAAQAAAAUABMAfUB7BFwABAAEAAAAFAATADF4ewKcAAQABAAAABQAEwCMzHsCXAAEAAQAAAAUABMAqXR7AtwABAAEAAAAFAATANnAewIcAAQABAAAABQAEwCusHsDHAAEAAQAAAAUABMAwTx7AZwABAAEAAAAFAATANLIewEcAAQABAAAABQAEwCmiHsDnAAEAAQAAAAUABMA3Ux4="},"src_ip":"192.168.113.2","dst_ip":"192.168.113.237","protocol":17,"src_port":53,"dst_port":36233,"event_start":1565200333.069379} -{"ip":{"version":4,"ttl":128,"id":"a287"},"dns":{"base64":"WmWBgAABAAAAAQAABWJpdGx5A2NvbQAAHAABwAwABgABAAAABQBOC25zLWNsb3VkLWIxDWdvb2dsZWRvbWFpbnPAEhRjbG91ZC1kbnMtaG9zdG1hc3RlcgZnb29nbGXAEgAAAAEAAFRgAAAOEAAD9IAAAAEs"},"src_ip":"192.168.113.2","dst_ip":"192.168.113.237","protocol":17,"src_port":53,"dst_port":48534,"event_start":1565200333.070744} -{"ip":{"version":4,"ttl":64,"id":"3645"},"fingerprints":{"tcp":"tcp/(40)()(40)(faf0)((020405b4)(04)(08)(01)(030307))"},"tcp":{"seq":3737118679,"timestamp":{"ts_val":3946451935}},"src_ip":"192.168.113.237","dst_ip":"67.199.248.14","protocol":6,"src_port":41982,"dst_port":443,"event_start":1565200333.070960} -{"ip":{"version":4,"ttl":64,"id":"3646"},"fingerprints":{"tcp":"tcp/(40)()(40)(faf0)((020405b4)(04)(08)(01)(030307))"},"tcp":{"seq":3737118679,"timestamp":{"ts_val":3946452950}},"src_ip":"192.168.113.237","dst_ip":"67.199.248.14","protocol":6,"src_port":41982,"dst_port":443,"event_start":1565200334.085917} -{"ip":{"version":4,"ttl":128,"id":"a288"},"fingerprints":{"tcp_server":"tcp_server/(40)()(80)(faf0)((020405b4))"},"tcp_server":{"seq":1730747976},"src_ip":"67.199.248.14","dst_ip":"192.168.113.237","protocol":6,"src_port":443,"dst_port":41982,"event_start":1565200334.216782} -{"ip":{"version":4,"ttl":64,"id":"3648"},"fingerprints":{"tls":"tls/(0303)(130213031301c02cc030009fcca9cca8ccaac02bc02f009ec024c028006bc023c0270067c00ac0140039c009c0130033009d009c003d003c0035002f00ff)((0000)(000b000403000102)(000a000c000a001d0017001e00190018)(0023)(0016)(0017)(000d0030002e040305030603080708080809080a080b080408050806040105010601030302030301020103020202040205020602)(002b0009080304030303020301)(002d00020101)(0033))"},"tls":{"client":{"version":"0303","random":"53f798e920761010f6a258076b2db3419adeb98926cc99466b4696ea2d39d317","session_id":"dcd976629402a8cd5da459a084d8670feb5b08c0bb0463ad5a83bd5931f02546","cipher_suites":"130213031301c02cc030009fcca9cca8ccaac02bc02f009ec024c028006bc023c0270067c00ac0140039c009c0130033009d009c003d003c0035002f00ff","compression_methods":"00","server_name":"bitly.com","session_ticket":"","features":"[\"0303\",\"130213031301c02cc030009fcca9cca8ccaac02bc02f009ec024c028006bc023c0270067c00ac0140039c009c0130033009d009c003d003c0035002f00ff\",[[\"0000\",\"000c0000096269746c792e636f6d\"],[\"000b\",\"03000102\"],[\"000a\",\"000a001d0017001e00190018\"],[\"0023\",\"\"],[\"0016\",\"\"],[\"0017\",\"\"],[\"000d\",\"002e040305030603080708080809080a080b080408050806040105010601030302030301020103020202040205020602\"],[\"002b\",\"080304030303020301\"],[\"002d\",\"0101\"],[\"0033\",\"0024001d00209c512289864dcfcd32498f8865ccfb05ec05d0f2ee077a72d24d71af4c497118\"]]]"}},"src_ip":"192.168.113.237","dst_ip":"67.199.248.14","protocol":6,"src_port":41982,"dst_port":443,"event_start":1565200334.217016} -{"ip":{"version":4,"ttl":128,"id":"a28c"},"fingerprints":{"tls_server":"tls_server/(0303)(c030)((ff01)(000b000403000102)(0023))"},"tls":{"server":{"certs":[{"base64":"MIIG4zCCBcugAwIBAgIQDWINzIIdaLjR4RD3jzgHSTANBgkqhkiG9w0BAQsFADBwMQswCQYDVQQGEwJVUzEVMBMGA1UEChMMRGlnaUNlcnQgSW5jMRkwFwYDVQQLExB3d3cuZGlnaWNlcnQuY29tMS8wLQYDVQQDEyZEaWdpQ2VydCBTSEEyIEhpZ2ggQXNzdXJhbmNlIFNlcnZlciBDQTAeFw0xODA4MjcwMDAwMDBaFw0yMDA5MDgxMjAwMDBaMHQxCzAJBgNVBAYTAlVTMREwDwYDVQQIEwhOZXcgWW9yazERMA8GA1UEBxMITmV3IFlvcmsxFDASBgNVBAoTC0JpdGx5LCBJbmMuMRMwEQYDVQQLEwpPcGVyYXRpb25zMRQwEgYDVQQDDAsqLmJpdGx5LmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAN/qidwToSGhNX6Bb0gP03RZq7L92Ut3iJgdGPBwwndspJGTVa2kkkQpbcM7mbG3bvvk3JaAH0A6CE78FN65YacWfbrAR1w2P62jobapbJ37Wn1wY4Wd8AgQIJIM37L5oHMXwGpxYu+1yzJ8o2wTYTDdHat8y0INxy0NXLzEC4ySNTHhBDQIW8ufPUaSdJZkehTs7zH/TOUCAlhjXMmSmiLcyCqzwrUg3Rq3/+6hIRU0cBqVBRy6fHv6RtLcII8HmALXmA2aV1fZWO8FqgabIi7eFHPsJiBkGGoOb0Y7OqWK7XYYJbwfjKo3LchjDJVCAknwvbrOJPOQSlxEItGJwfsCAwEAAaOCA3MwggNvMB8GA1UdIwQYMBaAFFFo/5CvAgd1PMzZZWRiohK4WXI7MB0GA1UdDgQWBBQ7EDxxmfdjgjJ2p9by+facoK9fkTAhBgNVHREEGjAYggsqLmJpdGx5LmNvbYIJYml0bHkuY29tMA4GA1UdDwEB/wQEAwIFoDAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwdQYDVR0fBG4wbDA0oDKgMIYuaHR0cDovL2NybDMuZGlnaWNlcnQuY29tL3NoYTItaGEtc2VydmVyLWc2LmNybDA0oDKgMIYuaHR0cDovL2NybDQuZGlnaWNlcnQuY29tL3NoYTItaGEtc2VydmVyLWc2LmNybDBMBgNVHSAERTBDMDcGCWCGSAGG/WwBATAqMCgGCCsGAQUFBwIBFhxodHRwczovL3d3dy5kaWdpY2VydC5jb20vQ1BTMAgGBmeBDAECAjCBgwYIKwYBBQUHAQEEdzB1MCQGCCsGAQUFBzABhhhodHRwOi8vb2NzcC5kaWdpY2VydC5jb20wTQYIKwYBBQUHMAKGQWh0dHA6Ly9jYWNlcnRzLmRpZ2ljZXJ0LmNvbS9EaWdpQ2VydFNIQTJIaWdoQXNzdXJhbmNlU2VydmVyQ0EuY3J0MAwGA1UdEwEB/wQCMAAwggGABgorBgEEAdZ5AgQCBIIBcASCAWwBagB3AKS5CZC0GFgUh7sTosxncAo8NZgE+RvfuON3zQ7IDdwQAAABZXx/YAYAAAQDAEgwRgIhAIFD4oEZXrLNxMruEFIfoV28ZKZefWWq4eC9Zx5WibmPAiEAq7sQiGHv4gzIJ+VwYhHE1Dsl0sj4hZgSX5m/yag5M4YAdwCHdb/nWXz4jEOZX73zbv9WjUdWNv9KtWDBtOr/XqCDDwAAAWV8f2DIAAAEAwBIMEYCIQCQ5eMnd6CzaYM1U6E5jTE+mVVgC3wqS3+pk16TFWFkxgIhAO9eGwJIPbzLlDT9fpjhmHMx6wFsqqZ9lrgOthDmWvsvAHYA7ku9t3XOYLrhQmkfq+GeZqMPfl+wctiDAMR7iXqo/csAAAFlfH9gMwAABAMARzBFAiEAi19tXp6F0lwZFYgToZVHTSjpkrUpLL+dgOQUd7KDoQ4CIFLu3fUU/W5s3WYUf/mwxYOqqwxe+qEiifgn8LEreE27MA0GCSqGSIb3DQEBCwUAA4IBAQAd9K9mdg9VA2uPFQDjJpIkGYvEVlbz9nUaqxMLP4anttngfqRorn4p28A3DhKQCT83/5TEWqE+esNI1Nhz2b4yA7LRhqaEkJVY8OHWBVf9blsaBZ4gZlCxC26V/7U6U5BqEGSzydSFHnhOVsCBTHe8/UvWNW8kDiswXUgk+GxW2T+ypEB+gbUaI06drBVUtwGIftxSOdy49c4jFGrDFaPjhHKn9oZ2oQOR5lu+ZQOPXt2LNuuvKmxLzVmCd59ysPmIGn558kk3TOjHcVRB3DoYNsBp3lCLX0fYLfevGerFolvraa0AywvzbHDKa4JQ7g2h498IkovdPXEW8hQ8Xy7f"},{"base64":"MIIEsTCCA5mgAwIBAgIQBOHnpNxc8vNtwCtCuF0VnzANBgkqhkiG9w0BAQsFADBsMQswCQYDVQQGEwJVUzEVMBMGA1UEChMMRGlnaUNlcnQgSW5jMRkwFwYDVQQLExB3d3cuZGlnaWNlcnQuY29tMSswKQYDVQQDEyJEaWdpQ2VydCBIaWdoIEFzc3VyYW5jZSBFViBSb290IENBMB4XDTEzMTAyMjEyMDAwMFoXDTI4MTAyMjEyMDAwMFowcDELMAkGA1UEBhMCVVMxFTATBgNVBAoTDERpZ2lDZXJ0IEluYzEZMBcGA1UECxMQd3d3LmRpZ2ljZXJ0LmNvbTEvMC0GA1UEAxMmRGlnaUNlcnQgU0hBMiBIaWdoIEFzc3VyYW5jZSBTZXJ2ZXIgQ0EwggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQC24C/CJAbIbQRf1+8KZAayfSImZRauQkCbztyfn3YHPsMwVYcZuU+UDlqUH1VWtMICKq/QmO4LQNfE0DtyyBSe75CxEamu0si4QzrZCwvV1ZX1QK/IHe1NnF9Xt4ZQaJn1itrSxwUfqJfJ3KSxgoQtxq2lnMcZgqaFD15EWCo3j/018QsIJzJa9buLnqS9UdAn4t07QjOjBSjEuyjMmqwrIw14xnvmXnG3Sj4I+4G3FhahnSMSTeXXkgisdaScus0Xsh5ENWV/UyU50RwKmmMbGZJ0aAo3wsJSSMs5WqK24V3B3aAguCGikyZvFEohQcftbZvySC/zA/WiaJJTL17jAgMBAAGjggFJMIIBRTASBgNVHRMBAf8ECDAGAQH/AgEAMA4GA1UdDwEB/wQEAwIBhjAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwNAYIKwYBBQUHAQEEKDAmMCQGCCsGAQUFBzABhhhodHRwOi8vb2NzcC5kaWdpY2VydC5jb20wSwYDVR0fBEQwQjBAoD6gPIY6aHR0cDovL2NybDQuZGlnaWNlcnQuY29tL0RpZ2lDZXJ0SGlnaEFzc3VyYW5jZUVWUm9vdENBLmNybDA9BgNVHSAENjA0MDIGBFUdIAAwKjAoBggrBgEFBQcCARYcaHR0cHM6Ly93d3cuZGlnaWNlcnQuY29tL0NQUzAdBgNVHQ4EFgQUUWj/kK8CB3U8zNllZGKiErhZcjswHwYDVR0jBBgwFoAUsT7DaQP4v0cB1JgmGggC72NkK8MwDQYJKoZIhvcNAQELBQADggEBABiKlYkD5m3fXPwdaOpKj4PWUS+Na0QWnqxj9dJubISZi6qBcYRb7TROsLd5kinMLYBq8I4g4Xmk/gNHE+r1hspZcX30BJZr01lYPf7TMSVcGDiEo+afgv2MW5gxTs14nhr9hctJqvIni5ly/D6q1UEL2tU2ob8cbkdJf17ZSHwD2f2LSaCYJkJA69aSEaRkCldUxPUd1gJea6zuxICaEnL6VpPX/78whQYwvwt/Tv9XBZ0k7YXDK/umdaisLRbvfXknsuvCnQsH6qqF0wGjIChBWUMo0oHjqvbsezt3tkBigAVBRQHvFwY+3sAzm2fTYS5yh+Rp/BIAV0AecPUeybQ="}],"version":"0303","random":"baec1659a9169613c0c30881f8a9faea0abb2580a85aa5cd579ed9c5d17d794f","selected_cipher_suite":"c030","compression_method":"00","session_ticket":""}},"reassembly_properties":{"reassembled":true},"src_ip":"67.199.248.14","dst_ip":"192.168.113.237","protocol":6,"src_port":443,"dst_port":41982,"event_start":1565200334.338224} -{"ip":{"version":4,"ttl":64,"id":"d6a3"},"dns":{"base64":"FSMBAAABAAAAAAAABXlhaG9vA2NvbQAAAQAB"},"src_ip":"192.168.113.237","dst_ip":"192.168.113.2","protocol":17,"src_port":50783,"dst_port":53,"event_start":1565200334.828074} -{"ip":{"version":4,"ttl":64,"id":"d6a4"},"dns":{"base64":"rkQBAAABAAAAAAAABXlhaG9vA2NvbQAAHAAB"},"src_ip":"192.168.113.237","dst_ip":"192.168.113.2","protocol":17,"src_port":38416,"dst_port":53,"event_start":1565200334.828333} -{"ip":{"version":4,"ttl":128,"id":"a2b5"},"dns":{"base64":"rkSBgAABAAYADQAFBXlhaG9vA2NvbQAAHAABwAwAHAABAAAABQAQIAFJmAAMECMAAAAAAAAABcAMABwAAQAAAAUAECABSZgAWBg2AAAAAAAAABDADAAcAAEAAAAFABAgAUmYAAwQIwAAAAAAAAAEwAwAHAABAAAABQAQIAFJmABYGDYAAAAAAAAAEcAMABwAAQAAAAUAECABSZgARAQdAAAAAAAAAATADAAcAAEAAAAFABAgAUmYAEQEHQAAAAAAAAADwBIAAgABAAAABQAUAWcMZ3RsZC1zZXJ2ZXJzA25ldADAEgACAAEAAAAFAAQBaMDRwBIAAgABAAAABQAEAWPA0cASAAIAAQAAAAUABAFtwNHAEgACAAEAAAAFAAQBZcDRwBIAAgABAAAABQAEAWzA0cASAAIAAQAAAAUABAFpwNHAEgACAAEAAAAFAAQBa8DRwBIAAgABAAAABQAEAWLA0cASAAIAAQAAAAUABAFhwNHAEgACAAEAAAAFAAQBZsDRwBIAAgABAAAABQAEAWTA0cASAAIAAQAAAAUABAFqwNHBbwABAAEAAAAFAATABQYewV8AAQABAAAABQAEwCEOHsD/AAEAAQAAAAUABMAaXB7BjwABAAEAAAAFAATAH1AewR8AAQABAAAABQAEwAxeHg=="},"src_ip":"192.168.113.2","dst_ip":"192.168.113.237","protocol":17,"src_port":53,"dst_port":38416,"event_start":1565200334.829079} -{"ip":{"version":4,"ttl":128,"id":"a2b6"},"dns":{"base64":"FSOBgAABAAYADQAKBXlhaG9vA2NvbQAAAQABwAwAAQABAAAABQAESB4jCcAMAAEAAQAAAAUABGKK2+jADAABAAEAAAAFAARiifYIwAwAAQABAAAABQAEYon2B8AMAAEAAQAAAAUABGKK2+fADAABAAEAAAAFAARIHiMKwBIAAgABAAAABQAUAWcMZ3RsZC1zZXJ2ZXJzA25ldADAEgACAAEAAAAFAAQBYsCJwBIAAgABAAAABQAEAWvAicASAAIAAQAAAAUABAFjwInAEgACAAEAAAAFAAQBaMCJwBIAAgABAAAABQAEAWbAicASAAIAAQAAAAUABAFkwInAEgACAAEAAAAFAAQBacCJwBIAAgABAAAABQAEAWzAicASAAIAAQAAAAUABAFlwInAEgACAAEAAAAFAAQBbcCJwBIAAgABAAAABQAEAWHAicASAAIAAQAAAAUABAFqwInBRwABAAEAAAAFAATABQYewKcAAQABAAAABQAEwCEOHsDHAAEAAQAAAAUABMAaXB7A9wABAAEAAAAFAATAH1AewScAAQABAAAABQAEwAxeHsDnAAEAAQAAAAUABMAjMx7AhwABAAEAAAAFAATAKl0ewNcAAQABAAAABQAEwDZwHsEHAAEAAQAAAAUABMArrB7BVwABAAEAAAAFAATAME8e"},"src_ip":"192.168.113.2","dst_ip":"192.168.113.237","protocol":17,"src_port":53,"dst_port":50783,"event_start":1565200334.864301} -{"ip":{"version":4,"ttl":64,"id":"f47a"},"fingerprints":{"tcp":"tcp/(40)()(40)(faf0)((020405b4)(04)(08)(01)(030307))"},"tcp":{"seq":1895835432,"timestamp":{"ts_val":2775439277}},"src_ip":"192.168.113.237","dst_ip":"72.30.35.9","protocol":6,"src_port":37050,"dst_port":443,"event_start":1565200334.865000} -{"ip":{"version":4,"ttl":128,"id":"a2b7"},"fingerprints":{"tcp_server":"tcp_server/(40)()(80)(faf0)((020405b4))"},"tcp_server":{"seq":356457717},"src_ip":"72.30.35.9","dst_ip":"192.168.113.237","protocol":6,"src_port":443,"dst_port":37050,"event_start":1565200334.923629} -{"ip":{"version":4,"ttl":64,"id":"f47c"},"fingerprints":{"tls":"tls/(0303)(130213031301c02cc030009fcca9cca8ccaac02bc02f009ec024c028006bc023c0270067c00ac0140039c009c0130033009d009c003d003c0035002f00ff)((0000)(000b000403000102)(000a000c000a001d0017001e00190018)(0023)(0016)(0017)(000d0030002e040305030603080708080809080a080b080408050806040105010601030302030301020103020202040205020602)(002b0009080304030303020301)(002d00020101)(0033))"},"tls":{"client":{"version":"0303","random":"f9401167669fdff027a36fceaa74c163ab8fe4b1c68dda1436de0a8465922319","session_id":"3d3470166c817ca28fa2c20366c64a45e6d1cd75ce6fea0a4a5d9a277380568c","cipher_suites":"130213031301c02cc030009fcca9cca8ccaac02bc02f009ec024c028006bc023c0270067c00ac0140039c009c0130033009d009c003d003c0035002f00ff","compression_methods":"00","server_name":"yahoo.com","session_ticket":"","features":"[\"0303\",\"130213031301c02cc030009fcca9cca8ccaac02bc02f009ec024c028006bc023c0270067c00ac0140039c009c0130033009d009c003d003c0035002f00ff\",[[\"0000\",\"000c0000097961686f6f2e636f6d\"],[\"000b\",\"03000102\"],[\"000a\",\"000a001d0017001e00190018\"],[\"0023\",\"\"],[\"0016\",\"\"],[\"0017\",\"\"],[\"000d\",\"002e040305030603080708080809080a080b080408050806040105010601030302030301020103020202040205020602\"],[\"002b\",\"080304030303020301\"],[\"002d\",\"0101\"],[\"0033\",\"0024001d00200830920a46453a2b8852f53c183381b93b32f8d428814e8f267c0a3b19664860\"]]]"}},"src_ip":"192.168.113.237","dst_ip":"72.30.35.9","protocol":6,"src_port":37050,"dst_port":443,"event_start":1565200334.923897} -{"ip":{"version":4,"ttl":128,"id":"a2bd"},"fingerprints":{"tls_server":"tls_server/(0303)(c02f)((0000)(ff01)(000b000403000102)(0023))"},"tls":{"server":{"certs":[{"base64":"MIIHCzCCBfOgAwIBAgIQC8M2wJUf1+pWw3jShdD6bTANBgkqhkiG9w0BAQsFADBwMQswCQYDVQQGEwJVUzEVMBMGA1UEChMMRGlnaUNlcnQgSW5jMRkwFwYDVQQLExB3d3cuZGlnaWNlcnQuY29tMS8wLQYDVQQDEyZEaWdpQ2VydCBTSEEyIEhpZ2ggQXNzdXJhbmNlIFNlcnZlciBDQTAeFw0xOTA4MDYwMDAwMDBaFw0yMDAyMDIxMjAwMDBaMGMxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRIwEAYDVQQHEwlTdW5ueXZhbGUxETAPBgNVBAoTCE9hdGggSW5jMRgwFgYDVQQDDA8qLnd3dy55YWhvby5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQCirs4sQ7vEOfujfIii5gGWEOlqKc9yHNbAoyN96STzjihj56QK3Uzl7fiShiKiD04OAE1RLOrVObCwrWJi+C3XybKlOAwVvKD1gkkyuGZaunygg4H+TfvRICZV5pRMNNbacko0Ji/Xv5r9+epnHAeGXSp0LxQiH3wyJCBtLPuBI6A3wxd1iaWiFAWNR2WUMyU3uENLnbMjr0j462/+kYdhZ0+phZ9auThabOOR8TA61NwTofCJ5Xq0cMk9h6kWN7FcpMEMrid2qPqYTQcvVBgFipPZRNIO7ymRPEmnWQo21PtgiRfnILqg+Lwd95A5RYg2XeRhmXBa22Sh+J/b1im/AgMBAAGjggOsMIIDqDAfBgNVHSMEGDAWgBRRaP+QrwIHdTzM2WVkYqISuFlyOzAdBgNVHQ4EFgQUaekEkRuDKAqyMmsIHXgRzibqObswgdYGA1UdEQSBzjCBy4IPKi53d3cueWFob28uY29tgg4qLmFtcC55aW1nLmNvbYILKi55YWhvby5jb22CEGFkZC5teS55YWhvby5jb22CD2NhLm15LnlhaG9vLmNvbYITY2Eucm9nZXJzLnlhaG9vLmNvbYIQZGRsLmZwLnlhaG9vLmNvbYIWZnItY2Eucm9nZXJzLnlhaG9vLmNvbYIPaGsucmQueWFob28uY29tggxtYnAueWltZy5jb22CD3R3LnJkLnlhaG9vLmNvbYIJeWFob28uY29tMA4GA1UdDwEB/wQEAwIFoDAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwdQYDVR0fBG4wbDA0oDKgMIYuaHR0cDovL2NybDMuZGlnaWNlcnQuY29tL3NoYTItaGEtc2VydmVyLWc2LmNybDA0oDKgMIYuaHR0cDovL2NybDQuZGlnaWNlcnQuY29tL3NoYTItaGEtc2VydmVyLWc2LmNybDBMBgNVHSAERTBDMDcGCWCGSAGG/WwBATAqMCgGCCsGAQUFBwIBFhxodHRwczovL3d3dy5kaWdpY2VydC5jb20vQ1BTMAgGBmeBDAECAjCBgwYIKwYBBQUHAQEEdzB1MCQGCCsGAQUFBzABhhhodHRwOi8vb2NzcC5kaWdpY2VydC5jb20wTQYIKwYBBQUHMAKGQWh0dHA6Ly9jYWNlcnRzLmRpZ2ljZXJ0LmNvbS9EaWdpQ2VydFNIQTJIaWdoQXNzdXJhbmNlU2VydmVyQ0EuY3J0MAwGA1UdEwEB/wQCMAAwggEDBgorBgEEAdZ5AgQCBIH0BIHxAO8AdgC72d+8H4pxtZOUI5eqkntHOFeVCqtS6BqQlmQ2jh7RhQAAAWxoP1bRAAAEAwBHMEUCIQDdmgmiG/EpnvAnBdg3XCQTGLs8lNSIDGHDaQWgBq9VCgIgZsZ3m6pXNI//TS8XhYh8PCWIjBokKJvm1Tn1ST6L3ckAdQCHdb/nWXz4jEOZX73zbv9WjUdWNv9KtWDBtOr/XqCDDwAAAWxoP1ccAAAEAwBGMEQCIEHpkO5+0ht224fAM6owijpPlRfcO+YwaVQDkgI1mIDAAiBtpay6WdE9oAc9pF31Je1sgbaDFGD0q5Yx22QwmFvxZDANBgkqhkiG9w0BAQsFAAOCAQEAnINtMIB149N31+iHLGR4/lXGfKmKjUibQR6WaD0lNANjChxDiFXPQieobLfkWkaMfKBbGSg8h7WMdCsCkIMnN+z8KmmTnY4MN+m8wR0QOXKHvWXX6HG3sSORtJ7EI9uxFvBOlEHmj4HBrQVs0iiVOp5gcOAfCcphMtNBp3gIy8eqi7HeUrsiVwJal/vz2V+zlaHgXJ86eVOqvE1H30hdiQYXi23+sbfkTfZh119xiJ9c591HgYrUy4vWdAdPD0Eoo1JVIxDRpNHxIIDpnxYehlCU921fOJqwL1ShquSF59UzV7DDnIxdkYTmPY5H5kjlbhNU99k/dnkWSpecKP0m8Q=="},{"base64":"MIIEsTCCA5mgAwIBAgIQBOHnpNxc8vNtwCtCuF0VnzANBgkqhkiG9w0BAQsFADBsMQswCQYDVQQGEwJVUzEVMBMGA1UEChMMRGlnaUNlcnQgSW5jMRkwFwYDVQQLExB3d3cuZGlnaWNlcnQuY29tMSswKQYDVQQDEyJEaWdpQ2VydCBIaWdoIEFzc3VyYW5jZSBFViBSb290IENBMB4XDTEzMTAyMjEyMDAwMFoXDTI4MTAyMjEyMDAwMFowcDELMAkGA1UEBhMCVVMxFTATBgNVBAoTDERpZ2lDZXJ0IEluYzEZMBcGA1UECxMQd3d3LmRpZ2ljZXJ0LmNvbTEvMC0GA1UEAxMmRGlnaUNlcnQgU0hBMiBIaWdoIEFzc3VyYW5jZSBTZXJ2ZXIgQ0EwggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQC24C/CJAbIbQRf1+8KZAayfSImZRauQkCbztyfn3YHPsMwVYcZuU+UDlqUH1VWtMICKq/QmO4LQNfE0DtyyBSe75CxEamu0si4QzrZCwvV1ZX1QK/IHe1NnF9Xt4ZQaJn1itrSxwUfqJfJ3KSxgoQtxq2lnMcZgqaFD15EWCo3j/018QsIJzJa9buLnqS9UdAn4t07QjOjBSjEuyjMmqwrIw14xnvmXnG3Sj4I+4G3FhahnSMSTeXXkgisdaScus0Xsh5ENWV/UyU50RwKmmMbGZJ0aAo3wsJSSMs5WqK24V3B3aAguCGikyZvFEohQcftbZvySC/zA/WiaJJTL17jAgMBAAGjggFJMIIBRTASBgNVHRMBAf8ECDAGAQH/AgEAMA4GA1UdDwEB/wQEAwIBhjAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwNAYIKwYBBQUHAQEEKDAmMCQGCCsGAQUFBzABhhhodHRwOi8vb2NzcC5kaWdpY2VydC5jb20wSwYDVR0fBEQwQjBAoD6gPIY6aHR0cDovL2NybDQuZGlnaWNlcnQuY29tL0RpZ2lDZXJ0SGlnaEFzc3VyYW5jZUVWUm9vdENBLmNybDA9BgNVHSAENjA0MDIGBFUdIAAwKjAoBggrBgEFBQcCARYcaHR0cHM6Ly93d3cuZGlnaWNlcnQuY29tL0NQUzAdBgNVHQ4EFgQUUWj/kK8CB3U8zNllZGKiErhZcjswHwYDVR0jBBgwFoAUsT7DaQP4v0cB1JgmGggC72NkK8MwDQYJKoZIhvcNAQELBQADggEBABiKlYkD5m3fXPwdaOpKj4PWUS+Na0QWnqxj9dJubISZi6qBcYRb7TROsLd5kinMLYBq8I4g4Xmk/gNHE+r1hspZcX30BJZr01lYPf7TMSVcGDiEo+afgv2MW5gxTs14nhr9hctJqvIni5ly/D6q1UEL2tU2ob8cbkdJf17ZSHwD2f2LSaCYJkJA69aSEaRkCldUxPUd1gJea6zuxICaEnL6VpPX/78whQYwvwt/Tv9XBZ0k7YXDK/umdaisLRbvfXknsuvCnQsH6qqF0wGjIChBWUMo0oHjqvbsezt3tkBigAVBRQHvFwY+3sAzm2fTYS5yh+Rp/BIAV0AecPUeybQ="},{"base64":"MIIEsTCCA5mgAwIBAgIQBOHnpNxc8vNtwCtCuF0VnzANBgkqhkiG9w0BAQsFADBsMQswCQYDVQQGEwJVUzEVMBMGA1UEChMMRGlnaUNlcnQgSW5jMRkwFwYDVQQLExB3d3cuZGlnaWNlcnQuY29tMSswKQYDVQQDEyJEaWdpQ2VydCBIaWdoIEFzc3VyYW5jZSBFViBSb290IENBMB4XDTEzMTAyMjEyMDAwMFoXDTI4MTAyMjEyMDAwMFowcDELMAkGA1UEBhMCVVMxFTATBgNVBAoTDERpZ2lDZXJ0IEluYzEZMBcGA1UECxMQd3d3LmRpZ2ljZXJ0LmNvbTEvMC0GA1UEAxMmRGlnaUNlcnQgU0hBMiBIaWdoIEFzc3VyYW5jZSBTZXJ2ZXIgQ0EwggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQC24C/CJAbIbQRf1+8KZAayfSImZRauQkCbztyfn3YHPsMwVYcZuU+UDlqUH1VWtMICKq/QmO4LQNfE0DtyyBSe75CxEamu0si4QzrZCwvV1ZX1QK/IHe1NnF9Xt4ZQaJn1itrSxwUfqJfJ3KSxgoQtxq2lnMcZgqaFD15EWCo3j/018QsIJzJa9buLnqS9UdAn4t07QjOjBSjEuyjMmqwrIw14xnvmXnG3Sj4I+4G3FhahnSMSTeXXkgisdaScus0Xsh5ENWV/UyU50RwKmmMbGZJ0aAo3wsJSSMs5WqK24V3B3aAguCGikyZvFEohQcftbZvySC/zA/WiaJJTL17jAgMBAAGjggFJMIIBRTASBgNVHRMBAf8ECDAGAQH/AgEAMA4GA1UdDwEB/wQEAwIBhjAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwNAYIKwYBBQUHAQEEKDAmMCQGCCsGAQUFBzABhhhodHRwOi8vb2NzcC5kaWdpY2VydC5jb20wSwYDVR0fBEQwQjBAoD6gPIY6aHR0cDovL2NybDQuZGlnaWNlcnQuY29tL0RpZ2lDZXJ0SGlnaEFzc3VyYW5jZUVWUm9vdENBLmNybDA9BgNVHSAENjA0MDIGBFUdIAAwKjAoBggrBgEFBQcCARYcaHR0cHM6Ly93d3cuZGlnaWNlcnQuY29tL0NQUzAdBgNVHQ4EFgQUUWj/kK8CB3U8zNllZGKiErhZcjswHwYDVR0jBBgwFoAUsT7DaQP4v0cB1JgmGggC72NkK8MwDQYJKoZIhvcNAQELBQADggEBABiKlYkD5m3fXPwdaOpKj4PWUS+Na0QWnqxj9dJubISZi6qBcYRb7TROsLd5kinMLYBq8I4g4Xmk/gNHE+r1hspZcX30BJZr01lYPf7TMSVcGDiEo+afgv2MW5gxTs14nhr9hctJqvIni5ly/D6q1UEL2tU2ob8cbkdJf17ZSHwD2f2LSaCYJkJA69aSEaRkCldUxPUd1gJea6zuxICaEnL6VpPX/78whQYwvwt/Tv9XBZ0k7YXDK/umdaisLRbvfXknsuvCnQsH6qqF0wGjIChBWUMo0oHjqvbsezt3tkBigAVBRQHvFwY+3sAzm2fTYS5yh+Rp/BIAV0AecPUeybQ="}],"version":"0303","random":"66aa18f8da19b975137584f8acf2fe5641aa54c23fef9bef2b1a96299826526f","selected_cipher_suite":"c02f","compression_method":"00","session_ticket":""}},"reassembly_properties":{"reassembled":true},"src_ip":"72.30.35.9","dst_ip":"192.168.113.237","protocol":6,"src_port":443,"dst_port":37050,"event_start":1565200334.983206} -{"ip":{"version":4,"ttl":64,"id":"d6aa"},"dns":{"base64":"rPQBAAABAAAAAAAAA3d3dwV5YWhvbwNjb20AAAEAAQ=="},"src_ip":"192.168.113.237","dst_ip":"192.168.113.2","protocol":17,"src_port":54985,"dst_port":53,"event_start":1565200335.120651} -{"ip":{"version":4,"ttl":64,"id":"d6ab"},"dns":{"base64":"DxIBAAABAAAAAAAAA3d3dwV5YWhvbwNjb20AABwAAQ=="},"src_ip":"192.168.113.237","dst_ip":"192.168.113.2","protocol":17,"src_port":46072,"dst_port":53,"event_start":1565200335.120836} -{"ip":{"version":4,"ttl":128,"id":"a2c4"},"dns":{"base64":"DxKBgAABAAUADQAGA3d3dwV5YWhvbwNjb20AABwAAcAMAAUAAQAAAAUAFg1hdHN2Mi1mcC1zaGVkA3dnMQFiwBDAKwAcAAEAAAAFABAgAUmYAEQEHQAAAAAAAAADwCsAHAABAAAABQAQIAFJmABYGDYAAAAAAAAAEMArABwAAQAAAAUAECABSZgAWBg2AAAAAAAAABHAKwAcAAEAAAAFABAgAUmYAEQEHQAAAAAAAAAEwBYAAgABAAAABQAUAWUMZ3RsZC1zZXJ2ZXJzA25ldADAFgACAAEAAAAFAAQBYsC/wBYAAgABAAAABQAEAWvAv8AWAAIAAQAAAAUABAFkwL/AFgACAAEAAAAFAAQBasC/wBYAAgABAAAABQAEAWHAv8AWAAIAAQAAAAUABAFswL/AFgACAAEAAAAFAAQBaMC/wBYAAgABAAAABQAEAWbAv8AWAAIAAQAAAAUABAFtwL/AFgACAAEAAAAFAAQBY8C/wBYAAgABAAAABQAEAWnAv8AWAAIAAQAAAAUABAFnwL/BHQABAAEAAAAFAATABQYewN0AAQABAAAABQAEwCEOHsFtAAEAAQAAAAUABMAaXB7A/QABAAEAAAAFAATAH1AewL0AAQABAAAABQAEwAxeHsFNAAEAAQAAAAUABMAjMx4="},"src_ip":"192.168.113.2","dst_ip":"192.168.113.237","protocol":17,"src_port":53,"dst_port":46072,"event_start":1565200335.157761} -{"ip":{"version":4,"ttl":128,"id":"a2c5"},"dns":{"base64":"rPSBgAABAAUADQAJA3d3dwV5YWhvbwNjb20AAAEAAcAMAAUAAQAAAAUAFg1hdHN2Mi1mcC1zaGVkA3dnMQFiwBDAKwABAAEAAAAFAARIHiMJwCsAAQABAAAABQAEYorb6MArAAEAAQAAAAUABEgeIwrAKwABAAEAAAAFAARiitvnwBYAAgABAAAABQAUAWoMZ3RsZC1zZXJ2ZXJzA25ldADAFgACAAEAAAAFAAQBZMCPwBYAAgABAAAABQAEAWnAj8AWAAIAAQAAAAUABAFrwI/AFgACAAEAAAAFAAQBZ8CPwBYAAgABAAAABQAEAWbAj8AWAAIAAQAAAAUABAFowI/AFgACAAEAAAAFAAQBYsCPwBYAAgABAAAABQAEAWPAj8AWAAIAAQAAAAUABAFswI/AFgACAAEAAAAFAAQBYcCPwBYAAgABAAAABQAEAWXAj8AWAAIAAQAAAAUABAFtwI/BPQABAAEAAAAFAATABQYewQ0AAQABAAAABQAEwCEOHsEdAAEAAQAAAAUABMAaXB7ArQABAAEAAAAFAATAH1AewU0AAQABAAAABQAEwAxeHsDtAAEAAQAAAAUABMAjMx7A3QABAAEAAAAFAATAKl0ewP0AAQABAAAABQAEwDZwHsC9AAEAAQAAAAUABMArrB4="},"src_ip":"192.168.113.2","dst_ip":"192.168.113.237","protocol":17,"src_port":53,"dst_port":54985,"event_start":1565200335.158060} -{"ip":{"version":4,"ttl":64,"id":"2d19"},"fingerprints":{"tcp":"tcp/(40)()(40)(faf0)((020405b4)(04)(08)(01)(030307))"},"tcp":{"seq":3967614597,"timestamp":{"ts_val":3377255874}},"src_ip":"192.168.113.237","dst_ip":"98.138.219.231","protocol":6,"src_port":59128,"dst_port":443,"event_start":1565200335.158395} -{"ip":{"version":4,"ttl":128,"id":"a2c7"},"fingerprints":{"tcp_server":"tcp_server/(40)()(80)(faf0)((020405b4))"},"tcp_server":{"seq":2260420228},"src_ip":"98.138.219.231","dst_ip":"192.168.113.237","protocol":6,"src_port":443,"dst_port":59128,"event_start":1565200335.242087} -{"ip":{"version":4,"ttl":64,"id":"2d1b"},"fingerprints":{"tls":"tls/(0303)(130213031301c02cc030009fcca9cca8ccaac02bc02f009ec024c028006bc023c0270067c00ac0140039c009c0130033009d009c003d003c0035002f00ff)((0000)(000b000403000102)(000a000c000a001d0017001e00190018)(0023)(0016)(0017)(000d0030002e040305030603080708080809080a080b080408050806040105010601030302030301020103020202040205020602)(002b0009080304030303020301)(002d00020101)(0033))"},"tls":{"client":{"version":"0303","random":"dc47ec765151ba9349e3f25ff7da7348edbbcbc801af5f02100b5ca354c4356c","session_id":"ddd41a3c4486fd113da42a21378d90a42b6fa56a0958c08f47ff6fe55adeeaed","cipher_suites":"130213031301c02cc030009fcca9cca8ccaac02bc02f009ec024c028006bc023c0270067c00ac0140039c009c0130033009d009c003d003c0035002f00ff","compression_methods":"00","server_name":"www.yahoo.com","session_ticket":"","features":"[\"0303\",\"130213031301c02cc030009fcca9cca8ccaac02bc02f009ec024c028006bc023c0270067c00ac0140039c009c0130033009d009c003d003c0035002f00ff\",[[\"0000\",\"001000000d7777772e7961686f6f2e636f6d\"],[\"000b\",\"03000102\"],[\"000a\",\"000a001d0017001e00190018\"],[\"0023\",\"\"],[\"0016\",\"\"],[\"0017\",\"\"],[\"000d\",\"002e040305030603080708080809080a080b080408050806040105010601030302030301020103020202040205020602\"],[\"002b\",\"080304030303020301\"],[\"002d\",\"0101\"],[\"0033\",\"0024001d00202b602dcd972bb03a0a7fda1e4765b7b05da3de7ccfbdd17ba579dccfbfec3927\"]]]"}},"src_ip":"192.168.113.237","dst_ip":"98.138.219.231","protocol":6,"src_port":59128,"dst_port":443,"event_start":1565200335.242324} -{"ip":{"version":4,"ttl":128,"id":"a2cd"},"fingerprints":{"tls_server":"tls_server/(0303)(c02f)((0000)(ff01)(000b000403000102)(0023))"},"tls":{"server":{"certs":[{"base64":"MIIHCzCCBfOgAwIBAgIQC8M2wJUf1+pWw3jShdD6bTANBgkqhkiG9w0BAQsFADBwMQswCQYDVQQGEwJVUzEVMBMGA1UEChMMRGlnaUNlcnQgSW5jMRkwFwYDVQQLExB3d3cuZGlnaWNlcnQuY29tMS8wLQYDVQQDEyZEaWdpQ2VydCBTSEEyIEhpZ2ggQXNzdXJhbmNlIFNlcnZlciBDQTAeFw0xOTA4MDYwMDAwMDBaFw0yMDAyMDIxMjAwMDBaMGMxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRIwEAYDVQQHEwlTdW5ueXZhbGUxETAPBgNVBAoTCE9hdGggSW5jMRgwFgYDVQQDDA8qLnd3dy55YWhvby5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQCirs4sQ7vEOfujfIii5gGWEOlqKc9yHNbAoyN96STzjihj56QK3Uzl7fiShiKiD04OAE1RLOrVObCwrWJi+C3XybKlOAwVvKD1gkkyuGZaunygg4H+TfvRICZV5pRMNNbacko0Ji/Xv5r9+epnHAeGXSp0LxQiH3wyJCBtLPuBI6A3wxd1iaWiFAWNR2WUMyU3uENLnbMjr0j462/+kYdhZ0+phZ9auThabOOR8TA61NwTofCJ5Xq0cMk9h6kWN7FcpMEMrid2qPqYTQcvVBgFipPZRNIO7ymRPEmnWQo21PtgiRfnILqg+Lwd95A5RYg2XeRhmXBa22Sh+J/b1im/AgMBAAGjggOsMIIDqDAfBgNVHSMEGDAWgBRRaP+QrwIHdTzM2WVkYqISuFlyOzAdBgNVHQ4EFgQUaekEkRuDKAqyMmsIHXgRzibqObswgdYGA1UdEQSBzjCBy4IPKi53d3cueWFob28uY29tgg4qLmFtcC55aW1nLmNvbYILKi55YWhvby5jb22CEGFkZC5teS55YWhvby5jb22CD2NhLm15LnlhaG9vLmNvbYITY2Eucm9nZXJzLnlhaG9vLmNvbYIQZGRsLmZwLnlhaG9vLmNvbYIWZnItY2Eucm9nZXJzLnlhaG9vLmNvbYIPaGsucmQueWFob28uY29tggxtYnAueWltZy5jb22CD3R3LnJkLnlhaG9vLmNvbYIJeWFob28uY29tMA4GA1UdDwEB/wQEAwIFoDAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwdQYDVR0fBG4wbDA0oDKgMIYuaHR0cDovL2NybDMuZGlnaWNlcnQuY29tL3NoYTItaGEtc2VydmVyLWc2LmNybDA0oDKgMIYuaHR0cDovL2NybDQuZGlnaWNlcnQuY29tL3NoYTItaGEtc2VydmVyLWc2LmNybDBMBgNVHSAERTBDMDcGCWCGSAGG/WwBATAqMCgGCCsGAQUFBwIBFhxodHRwczovL3d3dy5kaWdpY2VydC5jb20vQ1BTMAgGBmeBDAECAjCBgwYIKwYBBQUHAQEEdzB1MCQGCCsGAQUFBzABhhhodHRwOi8vb2NzcC5kaWdpY2VydC5jb20wTQYIKwYBBQUHMAKGQWh0dHA6Ly9jYWNlcnRzLmRpZ2ljZXJ0LmNvbS9EaWdpQ2VydFNIQTJIaWdoQXNzdXJhbmNlU2VydmVyQ0EuY3J0MAwGA1UdEwEB/wQCMAAwggEDBgorBgEEAdZ5AgQCBIH0BIHxAO8AdgC72d+8H4pxtZOUI5eqkntHOFeVCqtS6BqQlmQ2jh7RhQAAAWxoP1bRAAAEAwBHMEUCIQDdmgmiG/EpnvAnBdg3XCQTGLs8lNSIDGHDaQWgBq9VCgIgZsZ3m6pXNI//TS8XhYh8PCWIjBokKJvm1Tn1ST6L3ckAdQCHdb/nWXz4jEOZX73zbv9WjUdWNv9KtWDBtOr/XqCDDwAAAWxoP1ccAAAEAwBGMEQCIEHpkO5+0ht224fAM6owijpPlRfcO+YwaVQDkgI1mIDAAiBtpay6WdE9oAc9pF31Je1sgbaDFGD0q5Yx22QwmFvxZDANBgkqhkiG9w0BAQsFAAOCAQEAnINtMIB149N31+iHLGR4/lXGfKmKjUibQR6WaD0lNANjChxDiFXPQieobLfkWkaMfKBbGSg8h7WMdCsCkIMnN+z8KmmTnY4MN+m8wR0QOXKHvWXX6HG3sSORtJ7EI9uxFvBOlEHmj4HBrQVs0iiVOp5gcOAfCcphMtNBp3gIy8eqi7HeUrsiVwJal/vz2V+zlaHgXJ86eVOqvE1H30hdiQYXi23+sbfkTfZh119xiJ9c591HgYrUy4vWdAdPD0Eoo1JVIxDRpNHxIIDpnxYehlCU921fOJqwL1ShquSF59UzV7DDnIxdkYTmPY5H5kjlbhNU99k/dnkWSpecKP0m8Q=="},{"base64":"MIIEsTCCA5mgAwIBAgIQBOHnpNxc8vNtwCtCuF0VnzANBgkqhkiG9w0BAQsFADBsMQswCQYDVQQGEwJVUzEVMBMGA1UEChMMRGlnaUNlcnQgSW5jMRkwFwYDVQQLExB3d3cuZGlnaWNlcnQuY29tMSswKQYDVQQDEyJEaWdpQ2VydCBIaWdoIEFzc3VyYW5jZSBFViBSb290IENBMB4XDTEzMTAyMjEyMDAwMFoXDTI4MTAyMjEyMDAwMFowcDELMAkGA1UEBhMCVVMxFTATBgNVBAoTDERpZ2lDZXJ0IEluYzEZMBcGA1UECxMQd3d3LmRpZ2ljZXJ0LmNvbTEvMC0GA1UEAxMmRGlnaUNlcnQgU0hBMiBIaWdoIEFzc3VyYW5jZSBTZXJ2ZXIgQ0EwggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQC24C/CJAbIbQRf1+8KZAayfSImZRauQkCbztyfn3YHPsMwVYcZuU+UDlqUH1VWtMICKq/QmO4LQNfE0DtyyBSe75CxEamu0si4QzrZCwvV1ZX1QK/IHe1NnF9Xt4ZQaJn1itrSxwUfqJfJ3KSxgoQtxq2lnMcZgqaFD15EWCo3j/018QsIJzJa9buLnqS9UdAn4t07QjOjBSjEuyjMmqwrIw14xnvmXnG3Sj4I+4G3FhahnSMSTeXXkgisdaScus0Xsh5ENWV/UyU50RwKmmMbGZJ0aAo3wsJSSMs5WqK24V3B3aAguCGikyZvFEohQcftbZvySC/zA/WiaJJTL17jAgMBAAGjggFJMIIBRTASBgNVHRMBAf8ECDAGAQH/AgEAMA4GA1UdDwEB/wQEAwIBhjAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwNAYIKwYBBQUHAQEEKDAmMCQGCCsGAQUFBzABhhhodHRwOi8vb2NzcC5kaWdpY2VydC5jb20wSwYDVR0fBEQwQjBAoD6gPIY6aHR0cDovL2NybDQuZGlnaWNlcnQuY29tL0RpZ2lDZXJ0SGlnaEFzc3VyYW5jZUVWUm9vdENBLmNybDA9BgNVHSAENjA0MDIGBFUdIAAwKjAoBggrBgEFBQcCARYcaHR0cHM6Ly93d3cuZGlnaWNlcnQuY29tL0NQUzAdBgNVHQ4EFgQUUWj/kK8CB3U8zNllZGKiErhZcjswHwYDVR0jBBgwFoAUsT7DaQP4v0cB1JgmGggC72NkK8MwDQYJKoZIhvcNAQELBQADggEBABiKlYkD5m3fXPwdaOpKj4PWUS+Na0QWnqxj9dJubISZi6qBcYRb7TROsLd5kinMLYBq8I4g4Xmk/gNHE+r1hspZcX30BJZr01lYPf7TMSVcGDiEo+afgv2MW5gxTs14nhr9hctJqvIni5ly/D6q1UEL2tU2ob8cbkdJf17ZSHwD2f2LSaCYJkJA69aSEaRkCldUxPUd1gJea6zuxICaEnL6VpPX/78whQYwvwt/Tv9XBZ0k7YXDK/umdaisLRbvfXknsuvCnQsH6qqF0wGjIChBWUMo0oHjqvbsezt3tkBigAVBRQHvFwY+3sAzm2fTYS5yh+Rp/BIAV0AecPUeybQ="},{"base64":"MIIEsTCCA5mgAwIBAgIQBOHnpNxc8vNtwCtCuF0VnzANBgkqhkiG9w0BAQsFADBsMQswCQYDVQQGEwJVUzEVMBMGA1UEChMMRGlnaUNlcnQgSW5jMRkwFwYDVQQLExB3d3cuZGlnaWNlcnQuY29tMSswKQYDVQQDEyJEaWdpQ2VydCBIaWdoIEFzc3VyYW5jZSBFViBSb290IENBMB4XDTEzMTAyMjEyMDAwMFoXDTI4MTAyMjEyMDAwMFowcDELMAkGA1UEBhMCVVMxFTATBgNVBAoTDERpZ2lDZXJ0IEluYzEZMBcGA1UECxMQd3d3LmRpZ2ljZXJ0LmNvbTEvMC0GA1UEAxMmRGlnaUNlcnQgU0hBMiBIaWdoIEFzc3VyYW5jZSBTZXJ2ZXIgQ0EwggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQC24C/CJAbIbQRf1+8KZAayfSImZRauQkCbztyfn3YHPsMwVYcZuU+UDlqUH1VWtMICKq/QmO4LQNfE0DtyyBSe75CxEamu0si4QzrZCwvV1ZX1QK/IHe1NnF9Xt4ZQaJn1itrSxwUfqJfJ3KSxgoQtxq2lnMcZgqaFD15EWCo3j/018QsIJzJa9buLnqS9UdAn4t07QjOjBSjEuyjMmqwrIw14xnvmXnG3Sj4I+4G3FhahnSMSTeXXkgisdaScus0Xsh5ENWV/UyU50RwKmmMbGZJ0aAo3wsJSSMs5WqK24V3B3aAguCGikyZvFEohQcftbZvySC/zA/WiaJJTL17jAgMBAAGjggFJMIIBRTASBgNVHRMBAf8ECDAGAQH/AgEAMA4GA1UdDwEB/wQEAwIBhjAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwNAYIKwYBBQUHAQEEKDAmMCQGCCsGAQUFBzABhhhodHRwOi8vb2NzcC5kaWdpY2VydC5jb20wSwYDVR0fBEQwQjBAoD6gPIY6aHR0cDovL2NybDQuZGlnaWNlcnQuY29tL0RpZ2lDZXJ0SGlnaEFzc3VyYW5jZUVWUm9vdENBLmNybDA9BgNVHSAENjA0MDIGBFUdIAAwKjAoBggrBgEFBQcCARYcaHR0cHM6Ly93d3cuZGlnaWNlcnQuY29tL0NQUzAdBgNVHQ4EFgQUUWj/kK8CB3U8zNllZGKiErhZcjswHwYDVR0jBBgwFoAUsT7DaQP4v0cB1JgmGggC72NkK8MwDQYJKoZIhvcNAQELBQADggEBABiKlYkD5m3fXPwdaOpKj4PWUS+Na0QWnqxj9dJubISZi6qBcYRb7TROsLd5kinMLYBq8I4g4Xmk/gNHE+r1hspZcX30BJZr01lYPf7TMSVcGDiEo+afgv2MW5gxTs14nhr9hctJqvIni5ly/D6q1UEL2tU2ob8cbkdJf17ZSHwD2f2LSaCYJkJA69aSEaRkCldUxPUd1gJea6zuxICaEnL6VpPX/78whQYwvwt/Tv9XBZ0k7YXDK/umdaisLRbvfXknsuvCnQsH6qqF0wGjIChBWUMo0oHjqvbsezt3tkBigAVBRQHvFwY+3sAzm2fTYS5yh+Rp/BIAV0AecPUeybQ="}],"version":"0303","random":"8bdb627960cb621da3240c3f1660b272d909aee9b2bdedd1b69b80f50c50fc42","selected_cipher_suite":"c02f","compression_method":"00","session_ticket":""}},"reassembly_properties":{"reassembled":true},"src_ip":"98.138.219.231","dst_ip":"192.168.113.237","protocol":6,"src_port":443,"dst_port":59128,"event_start":1565200335.333809} -{"ip":{"version":4,"ttl":64,"id":"d6df"},"dns":{"base64":"hR0BAAABAAAAAAAABmFtYXpvbgNjb20AAAEAAQ=="},"src_ip":"192.168.113.237","dst_ip":"192.168.113.2","protocol":17,"src_port":53662,"dst_port":53,"event_start":1565200336.134566} -{"ip":{"version":4,"ttl":64,"id":"d6e0"},"dns":{"base64":"U8kBAAABAAAAAAAABmFtYXpvbgNjb20AABwAAQ=="},"src_ip":"192.168.113.237","dst_ip":"192.168.113.2","protocol":17,"src_port":50727,"dst_port":53,"event_start":1565200336.134719} -{"ip":{"version":4,"ttl":128,"id":"a480"},"dns":{"base64":"hR2BgAABAAMABgAKBmFtYXpvbgNjb20AAAEAAcAMAAEAAQAAAAUABLAgYqbADAABAAEAAAAFAASwIGfNwAwAAQABAAAABQAEzfvyZ8AMAAIAAQAAAAUAFAVwZG5zMQh1bHRyYWRucwNuZXQAwAwAAgABAAAABQARA25zMwNwMzEGZHluZWN0wGfADAACAAEAAAAFABYFcGRuczYIdWx0cmFkbnMCY28CdWsAwAwAAgABAAAABQAGA25zNMB8wAwAAgABAAAABQAGA25zMcB8wAwAAgABAAAABQAGA25zMsB8wMkAAQABAAAABQAE0E5GH8DbAAEAAQAAAAUABMwN+h/AeAABAAEAAAAFAATQTkcfwLcAAQABAAAABQAEzA37H8BYAAEAAQAAAAUABMxKbAHAlQABAAEAAAAFAATMSnMBwMkAHAABAAAABQAQIAEFAACQAAEAAAAAAAAAMcB4ABwAAQAAAAUAECABBQAAlAABAAAAAAAAADHAWAAcAAEAAAAFABAgAQUC8/8AAAAAAAAAAAABwJUAHAABAAAABQAQJhAAoRAXAAAAAAAAAAAAAQ=="},"src_ip":"192.168.113.2","dst_ip":"192.168.113.237","protocol":17,"src_port":53,"dst_port":53662,"event_start":1565200336.175444} -{"ip":{"version":4,"ttl":128,"id":"a481"},"dns":{"base64":"U8mBgAABAAAAAQAABmFtYXpvbgNjb20AABwAAcAMAAYAAQAAAAUAMRNkbnMtZXh0ZXJuYWwtbWFzdGVywAwEcm9vdMAMd9AASgAAALQAAAA8AC4kgAAAADw="},"src_ip":"192.168.113.2","dst_ip":"192.168.113.237","protocol":17,"src_port":53,"dst_port":50727,"event_start":1565200336.175898} -{"ip":{"version":4,"ttl":64,"id":"2f1d"},"fingerprints":{"tcp":"tcp/(40)()(40)(faf0)((020405b4)(04)(08)(01)(030307))"},"tcp":{"seq":623246215,"timestamp":{"ts_val":215980203}},"src_ip":"192.168.113.237","dst_ip":"176.32.98.166","protocol":6,"src_port":52744,"dst_port":443,"event_start":1565200336.176117} -{"ip":{"version":4,"ttl":128,"id":"a482"},"fingerprints":{"tcp_server":"tcp_server/(40)()(80)(faf0)((020405b4))"},"tcp_server":{"seq":2792447645},"src_ip":"176.32.98.166","dst_ip":"192.168.113.237","protocol":6,"src_port":443,"dst_port":52744,"event_start":1565200336.223597} -{"ip":{"version":4,"ttl":64,"id":"2f1f"},"fingerprints":{"tls":"tls/(0303)(130213031301c02cc030009fcca9cca8ccaac02bc02f009ec024c028006bc023c0270067c00ac0140039c009c0130033009d009c003d003c0035002f00ff)((0000)(000b000403000102)(000a000c000a001d0017001e00190018)(0023)(0016)(0017)(000d0030002e040305030603080708080809080a080b080408050806040105010601030302030301020103020202040205020602)(002b0009080304030303020301)(002d00020101)(0033))"},"tls":{"client":{"version":"0303","random":"27fd08445febb2e3753384004c43803878d9306e3522c808b91fd97f91df59b8","session_id":"ff2a500926c97bfb0e31578ea6ccaa70342c495ba769b4e5a3cf32b775df8c94","cipher_suites":"130213031301c02cc030009fcca9cca8ccaac02bc02f009ec024c028006bc023c0270067c00ac0140039c009c0130033009d009c003d003c0035002f00ff","compression_methods":"00","server_name":"amazon.com","session_ticket":"","features":"[\"0303\",\"130213031301c02cc030009fcca9cca8ccaac02bc02f009ec024c028006bc023c0270067c00ac0140039c009c0130033009d009c003d003c0035002f00ff\",[[\"0000\",\"000d00000a616d617a6f6e2e636f6d\"],[\"000b\",\"03000102\"],[\"000a\",\"000a001d0017001e00190018\"],[\"0023\",\"\"],[\"0016\",\"\"],[\"0017\",\"\"],[\"000d\",\"002e040305030603080708080809080a080b080408050806040105010601030302030301020103020202040205020602\"],[\"002b\",\"080304030303020301\"],[\"002d\",\"0101\"],[\"0033\",\"0024001d00201d2361db2e415e444dea7130192848cba7f633366403600ab0dd2edebc7d5148\"]]]"}},"src_ip":"192.168.113.237","dst_ip":"176.32.98.166","protocol":6,"src_port":52744,"dst_port":443,"event_start":1565200336.223970} -{"ip":{"version":4,"ttl":128,"id":"a487"},"fingerprints":{"tls_server":"tls_server/(0303)(c02f)((ff01)(000b000403000102))"},"tls":{"server":{"certs":[{"base64":"MIIIITCCBwmgAwIBAgIQBgbZf4Ao3WgcJWbIhYPjZjANBgkqhkiG9w0BAQsFADBEMQswCQYDVQQGEwJVUzEVMBMGA1UEChMMRGlnaUNlcnQgSW5jMR4wHAYDVQQDExVEaWdpQ2VydCBHbG9iYWwgQ0EgRzIwHhcNMTkwNDMwMDAwMDAwWhcNMjAwNDAxMTIwMDAwWjBnMQswCQYDVQQGEwJVUzETMBEGA1UECBMKV2FzaGluZ3RvbjEQMA4GA1UEBxMHU2VhdHRsZTEZMBcGA1UEChMQQW1hem9uLmNvbSwgSW5jLjEWMBQGA1UEAwwNKi5wZWcuYTJ6LmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALFgxFvUh6c5p4HmPB4BjoRVRU9zT3/3GW7IxJRqc94R+BCvzWqI3hK7rfo8Vn6IDwOMVsfrJhSS6IPs+a0TAIyygJ5wFSjYkPtLfkfgKXMyP/c6MhxrYbxuATIX5dcJZ5kLEiGSlb9FBOIl9ILZqewA2aXAZV9kGG+dwe2f+tnW2cCho3gd29+HcRM4swvX1Q/6y+AkjPzLgET//E/UR7k98Bz6bY2bSwIg7N0dyysRSfQe7WpFJr5GwLTnEkrTz2SKgtk7H4SxkK0Sm6MLhIA6zlgQCW+gdKnZWijWiR7eFZwGKBC0AmTOPSraaDvb31D6syjzgMvkKR9IFUWA8BUCAwEAAaOCBOowggTmMB8GA1UdIwQYMBaAFCRuKy3QapJRUSVpAaqaR6aJ50AgMB0GA1UdDgQWBBQaXzAyaZXZcFEDaE8X9EnhptybGjCCAiMGA1UdEQSCAhowggIWggxhbWF6b24uY28udWuCE3VlZGF0YS5hbWF6b24uY28udWuCEHd3dy5hbWF6b24uY28udWuCF29yaWdpbi13d3cuYW1hem9uLmNvLnVrgg0qLnBlZy5hMnouY29tggphbWF6b24uY29tgghhbXpuLmNvbYIRdWVkYXRhLmFtYXpvbi5jb22CDXVzLmFtYXpvbi5jb22CDnd3dy5hbWF6b24uY29tggx3d3cuYW16bi5jb22CFGNvcnBvcmF0ZS5hbWF6b24uY29tghFidXlib3guYW1hem9uLmNvbYIRaXBob25lLmFtYXpvbi5jb22CDXlwLmFtYXpvbi5jb22CD2hvbWUuYW1hem9uLmNvbYIVb3JpZ2luLXd3dy5hbWF6b24uY29tgiFidWNrZXllLXJldGFpbC13ZWJzaXRlLmFtYXpvbi5jb22CEmh1ZGRsZXMuYW1hem9uLmNvbYIJYW1hem9uLmRlgg13d3cuYW1hem9uLmRlghRvcmlnaW4td3d3LmFtYXpvbi5kZYIMYW1hem9uLmNvLmpwgglhbWF6b24uanCCDXd3dy5hbWF6b24uanCCEHd3dy5hbWF6b24uY28uanCCF29yaWdpbi13d3cuYW1hem9uLmNvLmpwghAqLmFhLnBlZy5hMnouY29tghAqLmFiLnBlZy5hMnouY29tghAqLmFjLnBlZy5hMnouY29tMA4GA1UdDwEB/wQEAwIFoDAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwdwYDVR0fBHAwbjA1oDOgMYYvaHR0cDovL2NybDMuZGlnaWNlcnQuY29tL0RpZ2lDZXJ0R2xvYmFsQ0FHMi5jcmwwNaAzoDGGL2h0dHA6Ly9jcmw0LmRpZ2ljZXJ0LmNvbS9EaWdpQ2VydEdsb2JhbENBRzIuY3JsMEwGA1UdIARFMEMwNwYJYIZIAYb9bAEBMCowKAYIKwYBBQUHAgEWHGh0dHBzOi8vd3d3LmRpZ2ljZXJ0LmNvbS9DUFMwCAYGZ4EMAQICMHQGCCsGAQUFBwEBBGgwZjAkBggrBgEFBQcwAYYYaHR0cDovL29jc3AuZGlnaWNlcnQuY29tMD4GCCsGAQUFBzAChjJodHRwOi8vY2FjZXJ0cy5kaWdpY2VydC5jb20vRGlnaUNlcnRHbG9iYWxDQUcyLmNydDAJBgNVHRMEAjAAMIIBBAYKKwYBBAHWeQIEAgSB9QSB8gDwAHcA7ku9t3XOYLrhQmkfq+GeZqMPfl+wctiDAMR7iXqo/csAAAFqbA26bQAABAMASDBGAiEAolsv5iHlTTpF3kJTj/mGWrTm775kYt6O9enHc2+IWisCIQC4yqet/vmnRcOZpDo4/cYpJbIJp0XkD9nfwxOopnvp9gB1AId1v+dZfPiMQ5lfvfNu/1aNR1Y2/0q1YMG06v9eoIMPAAABamwNtjgAAAQDAEYwRAIgTsND30lAbIjVGm8JJ/7jAq8s418JQgRE1z3pN3/8v4sCID1rsUiBMGkT0OjBuvo0AnBCJqqoN56TY3JmFlqMqFVsMA0GCSqGSIb3DQEBCwUAA4IBAQAmqfhGKyfkUG8TDiyP/+kX6tQbZ+V6kYq5sMR3ny4MFPI8Wf/kLWgFSQyaU82o4dGlqzEBLYd9WCCyr0Lr2j+KPbcwn+dQpBkqCgkER3FnM79Aoc9Xs74nbapMZ2w/nK/WVc66dtO/k7LVbEREJksAPC6tAn2FqRxDPUJShmHpsgpi/A8TXtviGll1NzdUG5DLD/8cg3pig9ZmyAvYjXlEtemWv2Y11q9NtKk7GkqA5hFMAVZEUxVzUXquFAKeKnCXlPmjpVmq6vXY7JAmu2ys+AprOtpISKNrhX/gaotw2yEXVmNaC3uURYpeKCRw5NUgjx6UgEfg6L+UbLCirxCM"},{"base64":"MIIEizCCA3OgAwIBAgIQDI7gyQ1qiRWIBAYe4kH5rzANBgkqhkiG9w0BAQsFADBhMQswCQYDVQQGEwJVUzEVMBMGA1UEChMMRGlnaUNlcnQgSW5jMRkwFwYDVQQLExB3d3cuZGlnaWNlcnQuY29tMSAwHgYDVQQDExdEaWdpQ2VydCBHbG9iYWwgUm9vdCBHMjAeFw0xMzA4MDExMjAwMDBaFw0yODA4MDExMjAwMDBaMEQxCzAJBgNVBAYTAlVTMRUwEwYDVQQKEwxEaWdpQ2VydCBJbmMxHjAcBgNVBAMTFURpZ2lDZXJ0IEdsb2JhbCBDQSBHMjCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANNIfL7zBYZdW9UvhU5L4IatFaxhz1uvPmoKR/uadpFgC4przc/cV35gmAvkVNlW7SHMArZagV+Xau4CLyMnuG3UsOcGAngLH1ypmTb+u6wbBfpXzYEQQGfWMItYNdSWYb7QjHqXnxr5IuYUL6nG6AEfq/gmD6yOTSwyOR2Bm40cZbIc22GoiS9g5+vCShjEbyrpEJIJ7RfRACvmfe8EiRROM6GyD5eHn7OgzS+8LOy4g2gxPR/VSpAQGQuBldYpdlH5NnbQtwl6OErXb4y/E3w57bqukPyV93t4CTZedJMeJfD/1K2uaGvG/w/VNfFVbkhJ+Pi474j48V4Rd6rfArMCAwEAAaOCAVowggFWMBIGA1UdEwEB/wQIMAYBAf8CAQAwDgYDVR0PAQH/BAQDAgGGMDQGCCsGAQUFBwEBBCgwJjAkBggrBgEFBQcwAYYYaHR0cDovL29jc3AuZGlnaWNlcnQuY29tMHsGA1UdHwR0MHIwN6A1oDOGMWh0dHA6Ly9jcmw0LmRpZ2ljZXJ0LmNvbS9EaWdpQ2VydEdsb2JhbFJvb3RHMi5jcmwwN6A1oDOGMWh0dHA6Ly9jcmwzLmRpZ2ljZXJ0LmNvbS9EaWdpQ2VydEdsb2JhbFJvb3RHMi5jcmwwPQYDVR0gBDYwNDAyBgRVHSAAMCowKAYIKwYBBQUHAgEWHGh0dHBzOi8vd3d3LmRpZ2ljZXJ0LmNvbS9DUFMwHQYDVR0OBBYEFCRuKy3QapJRUSVpAaqaR6aJ50AgMB8GA1UdIwQYMBaAFE4iVCAYlebjbuYP+vq5Eu0GF485MA0GCSqGSIb3DQEBCwUAA4IBAQALOYSR+ZfrqoGvhOlaOJL84mxZvzbIRacxAxHhBsCsMsdaVSnaT0AC9aHesO3ewPj2dZ12uYf+QYB6z13jAMZbAuabeGLJ3LhimnftiQjXS8X9Q9ViIyfEBFltcT8jW+rZ8uckJ2/0lYDblizkVIvP6hnZf1WZUXoOLRg9eFhSvGNoVwvdRLNXSmDmyHBwW4coatc7TlJFGa8kBpJIERqLrqwYElesA8u49L3KJg6nwd3jM+/AVTANlVlOnAM2BvjAjxSZnE0qnsHhfTuvcqdFuhOWKU4Z0BqYBvQ3lBetoxi6PrABDJXWKTUgNX31EGDk92hiHuwZ4STyhxGs6QiA"},{"base64":"MIIE3zCCA8egAwIBAgIQYxgNOPuAl3ip0DWjFhj4QDANBgkqhkiG9w0BAQsFADCByjELMAkGA1UEBhMCVVMxFzAVBgNVBAoTDlZlcmlTaWduLCBJbmMuMR8wHQYDVQQLExZWZXJpU2lnbiBUcnVzdCBOZXR3b3JrMTowOAYDVQQLEzEoYykgMjAwNiBWZXJpU2lnbiwgSW5jLiAtIEZvciBhdXRob3JpemVkIHVzZSBvbmx5MUUwQwYDVQQDEzxWZXJpU2lnbiBDbGFzcyAzIFB1YmxpYyBQcmltYXJ5IENlcnRpZmljYXRpb24gQXV0aG9yaXR5IC0gRzUwHhcNMTcxMTA2MDAwMDAwWhcNMjIxMTA1MjM1OTU5WjBhMQswCQYDVQQGEwJVUzEVMBMGA1UEChMMRGlnaUNlcnQgSW5jMRkwFwYDVQQLExB3d3cuZGlnaWNlcnQuY29tMSAwHgYDVQQDExdEaWdpQ2VydCBHbG9iYWwgUm9vdCBHMjCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALs3zTTce2vJsmiQrUp1/0a6IQoIjfUZVMn7iNvzrvI6iZE8euarBhprz6wt6F4JJES6Ypp+1qOofuBUdSAFrFC3nGMabDDc2h8Zsdce3v3X4MuUgzeu7B9DTt17LNK9LqUv5Km4rTrUmaS2JembawBgkmD/TyFJGPdnkKthBpyP8rrptOmSMmu181foXRvNjB2rlQSVSfM1LZbjSW3dd+P7SUu0rFUHqY+Vs7Qju0xtRfD2qbKVMLT9TFWMJ0pXFHyCnc1zktMWSgYMjFDRjx4Jvheh5iHK/YPlELyDpQrEZyj2cxQUPUZ2w4cUiSE0Ta8PRQymSaG6u5zFsTODKYUCAwEAAaOCAScwggEjMB0GA1UdDgQWBBROIlQgGJXm427mD/r6uRLtBhePOTAPBgNVHRMBAf8EBTADAQH/MF8GA1UdIARYMFYwVAYEVR0gADBMMCMGCCsGAQUFBwIBFhdodHRwczovL2Quc3ltY2IuY29tL2NwczAlBggrBgEFBQcCAjAZDBdodHRwczovL2Quc3ltY2IuY29tL3JwYTAvBgNVHR8EKDAmMCSgIqAghh5odHRwOi8vcy5zeW1jYi5jb20vcGNhMy1nNS5jcmwwDgYDVR0PAQH/BAQDAgGGMC4GCCsGAQUFBwEBBCIwIDAeBggrBgEFBQcwAYYSaHR0cDovL3Muc3ltY2QuY29tMB8GA1UdIwQYMBaAFH/TZafC3ey78DAJ80M5+gKvMzEzMA0GCSqGSIb3DQEBCwUAA4IBAQBQ3dNWKSUBip6n5X1Nua8bjKLSJzXlnescavPECMpFBlIIKH2mc6mL2Xr/wkSIBDrsqAO3sBcmoJN+n8V30O5JelrtEAFYSyRDXfu78ZlHn6kvV5/jPUFECEM/hdN0x8WdLpGjJMqfs0EG5qHj+UaxpucWD445wea4zlK7hUR+MA8fq0Yd1HEKj4c8TcgaQIHMa4KHr448cQ69e3CPECRhRNg+RAKT2I7SlaVzLvaB/8yym2oMCEsoqiRT8dbXg35aKEYmmzn3O/mnB7bGUd/EUrkIf7FVamgYZd1fSzQeg1cHqf0ja6eHpvq2bTl+cWFHaq/84KlHe5Rh0CsmpZzn"}],"version":"0303","random":"e7335500cd009f55ddd3b72016bf4efa3330b6252596838158add52e47eaea50","selected_cipher_suite":"c02f","compression_method":"00"}},"reassembly_properties":{"reassembled":true},"src_ip":"176.32.98.166","dst_ip":"192.168.113.237","protocol":6,"src_port":443,"dst_port":52744,"event_start":1565200336.271389} -{"ip":{"version":4,"ttl":64,"id":"d6f2"},"dns":{"base64":"fpkBAAABAAAAAAAAA3d3dwZhbWF6b24DY29tAAABAAE="},"src_ip":"192.168.113.237","dst_ip":"192.168.113.2","protocol":17,"src_port":59476,"dst_port":53,"event_start":1565200336.356162} -{"ip":{"version":4,"ttl":64,"id":"d6f3"},"dns":{"base64":"mTkBAAABAAAAAAAAA3d3dwZhbWF6b24DY29tAAAcAAE="},"src_ip":"192.168.113.237","dst_ip":"192.168.113.2","protocol":17,"src_port":45391,"dst_port":53,"event_start":1565200336.356346} -{"ip":{"version":4,"ttl":128,"id":"a48e"},"dns":{"base64":"mTmBgAABAAIAAQAAA3d3dwZhbWF6b24DY29tAAAcAAHADAAFAAEAAAAFAAoDd3d3A2NkbsAQwCwABQABAAAABQAfDmQzYWc0aHVra2g2MnluCmNsb3VkZnJvbnQDbmV0AMBCAAYAAQAAAAUAOwZucy0xMzAJYXdzZG5zLTE2wBcRYXdzZG5zLWhvc3RtYXN0ZXLAEAAAAAEAABwgAAADhAASdQAAAVGA"},"src_ip":"192.168.113.2","dst_ip":"192.168.113.237","protocol":17,"src_port":53,"dst_port":45391,"event_start":1565200336.388761} -{"ip":{"version":4,"ttl":128,"id":"a48f"},"dns":{"base64":"fpmBgAABAAMABAAIA3d3dwZhbWF6b24DY29tAAABAAHADAAFAAEAAAAFAAoDd3d3A2NkbsAQwCwABQABAAAABQAfDmQzYWc0aHVra2g2MnluCmNsb3VkZnJvbnQDbmV0AMBCAAEAAQAAAAUABGNU3BjAUQACAAEAAAAFABkHbnMtMTU5Nwlhd3NkbnMtMDcCY28CdWsAwFEAAgABAAAABQATBm5zLTY2Nglhd3NkbnMtMTnAXMBRAAIAAQAAAAUAEwZucy00MTgJYXdzZG5zLTUywBfAUQACAAEAAAAFABcHbnMtMTMwNglhd3NkbnMtMzUDb3JnAMDBAAEAAQAAAAUABM37waLAogABAAEAAAAFAATN+8KawOAAAQABAAAABQAEzfvFGsB9AAEAAQAAAAUABM37xj3AwQAcAAEAAAAFABAmAJAAUwGiAAAAAAAAAAABwKIAHAABAAAABQAQJgCQAFMCmgAAAAAAAAAAAcDgABwAAQAAAAUAECYAkABTBRoAAAAAAAAAAAHAfQAcAAEAAAAFABAmAJAAUwY9AAAAAAAAAAAB"},"src_ip":"192.168.113.2","dst_ip":"192.168.113.237","protocol":17,"src_port":53,"dst_port":59476,"event_start":1565200336.388790} -{"ip":{"version":4,"ttl":64,"id":"d6f6"},"dns":{"base64":"x2sBAAABAAAAAAAADmQzYWc0aHVra2g2MnluCmNsb3VkZnJvbnQDbmV0AAAcAAE="},"src_ip":"192.168.113.237","dst_ip":"192.168.113.2","protocol":17,"src_port":40095,"dst_port":53,"event_start":1565200336.389163} -{"ip":{"version":4,"ttl":128,"id":"a490"},"dns":{"base64":"x2uBgAABAAAAAQAADmQzYWc0aHVra2g2MnluCmNsb3VkZnJvbnQDbmV0AAAcAAHADAAGAAEAAAAFAEUGbnMtMTMwCWF3c2Rucy0xNgNjb20AEWF3c2Rucy1ob3N0bWFzdGVyBmFtYXpvbsBMAAAAAQAAHCAAAAOEABJ1AAABUYA="},"src_ip":"192.168.113.2","dst_ip":"192.168.113.237","protocol":17,"src_port":53,"dst_port":40095,"event_start":1565200336.420956} -{"ip":{"version":4,"ttl":64,"id":"4180"},"fingerprints":{"tcp":"tcp/(40)()(40)(faf0)((020405b4)(04)(08)(01)(030307))"},"tcp":{"seq":3781662039,"timestamp":{"ts_val":913929803}},"src_ip":"192.168.113.237","dst_ip":"99.84.220.24","protocol":6,"src_port":49224,"dst_port":443,"event_start":1565200336.421383} -{"ip":{"version":4,"ttl":128,"id":"a492"},"fingerprints":{"tcp_server":"tcp_server/(40)()(80)(faf0)((020405b4))"},"tcp_server":{"seq":1126402127},"src_ip":"99.84.220.24","dst_ip":"192.168.113.237","protocol":6,"src_port":443,"dst_port":49224,"event_start":1565200336.459201} -{"ip":{"version":4,"ttl":64,"id":"4182"},"fingerprints":{"tls":"tls/(0303)(130213031301c02cc030009fcca9cca8ccaac02bc02f009ec024c028006bc023c0270067c00ac0140039c009c0130033009d009c003d003c0035002f00ff)((0000)(000b000403000102)(000a000c000a001d0017001e00190018)(0023)(0016)(0017)(000d0030002e040305030603080708080809080a080b080408050806040105010601030302030301020103020202040205020602)(002b0009080304030303020301)(002d00020101)(0033))"},"tls":{"client":{"version":"0303","random":"6964f2cb7217dae683073c74464ba162bb3cd50395a3fb896435218fa5595371","session_id":"2722d9e17ed9d6dd3043054f708c5101d194acdb5faabb0eb2d30207f7eca1a5","cipher_suites":"130213031301c02cc030009fcca9cca8ccaac02bc02f009ec024c028006bc023c0270067c00ac0140039c009c0130033009d009c003d003c0035002f00ff","compression_methods":"00","server_name":"www.amazon.com","session_ticket":"","features":"[\"0303\",\"130213031301c02cc030009fcca9cca8ccaac02bc02f009ec024c028006bc023c0270067c00ac0140039c009c0130033009d009c003d003c0035002f00ff\",[[\"0000\",\"001100000e7777772e616d617a6f6e2e636f6d\"],[\"000b\",\"03000102\"],[\"000a\",\"000a001d0017001e00190018\"],[\"0023\",\"\"],[\"0016\",\"\"],[\"0017\",\"\"],[\"000d\",\"002e040305030603080708080809080a080b080408050806040105010601030302030301020103020202040205020602\"],[\"002b\",\"080304030303020301\"],[\"002d\",\"0101\"],[\"0033\",\"0024001d00201565779a4152b43074dad5ddb4c47fce3675d50e38f72cd7a67238c424a7d602\"]]]"}},"src_ip":"192.168.113.237","dst_ip":"99.84.220.24","protocol":6,"src_port":49224,"dst_port":443,"event_start":1565200336.459535} -{"ip":{"version":4,"ttl":128,"id":"a497"},"fingerprints":{"tls_server":"tls_server/(0303)(c02f)((0000)(ff01)(000b000403000102)(0023))"},"tls":{"server":{"certs":[{"base64":"MIIHgjCCBmqgAwIBAgIQB4di2kRD0yIued1fqA/gJDANBgkqhkiG9w0BAQsFADBEMQswCQYDVQQGEwJVUzEVMBMGA1UEChMMRGlnaUNlcnQgSW5jMR4wHAYDVQQDExVEaWdpQ2VydCBHbG9iYWwgQ0EgRzIwHhcNMTkwMzI5MDAwMDAwWhcNMTkxMjE1MTIwMDAwWjBoMQswCQYDVQQGEwJVUzETMBEGA1UECBMKV2FzaGluZ3RvbjEQMA4GA1UEBxMHU2VhdHRsZTEZMBcGA1UEChMQQW1hem9uLmNvbSwgSW5jLjEXMBUGA1UEAxMOd3d3LmFtYXpvbi5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDVx5YP0mZBxSSAZGbhvJaYx7eBEl4gpVF3M4j8uk5jtPcPtq07f5Gltumil3cpM2teuW9687x3BKoX1h9uyLq3jMQSV2TxlPXd59ZTPXXNMXlTCk8JoFn7atM9Z/9b4kGthlfAgf49ZrRpiZUL6qX/NyyuHbD2fGcw5YgrvVIRPYWyztxlknKQMknHy28o25/Wvne0OeCTdWnEZQuvLKtbiS25/a1vX+ZK4srX6rPi0U5I5lfUBwt4pvBCOahIYJvGHVjCMv2Xe8ewZYP430gsSep6KiFIZTvzX2zj8dV0Ns3iiKH4OAZW5rekGIBRzDlgOM9rs4DqpiE5kK/MWsAVAgMBAAGjggRKMIIERjAfBgNVHSMEGDAWgBQkbist0GqSUVElaQGqmkemiedAIDAdBgNVHQ4EFgQUqA11y8YrIoyghAcMz9DLYo26Ws4wggGCBgNVHREEggF5MIIBdYIKYW1hem9uLmNvbYIIYW16bi5jb22CEXVlZGF0YS5hbWF6b24uY29tgg11cy5hbWF6b24uY29tgg53d3cuYW1hem9uLmNvbYIMd3d3LmFtem4uY29tghRjb3Jwb3JhdGUuYW1hem9uLmNvbYIRYnV5Ym94LmFtYXpvbi5jb22CEWlwaG9uZS5hbWF6b24uY29tgg15cC5hbWF6b24uY29tgg9ob21lLmFtYXpvbi5jb22CFW9yaWdpbi13d3cuYW1hem9uLmNvbYIhYnVja2V5ZS1yZXRhaWwtd2Vic2l0ZS5hbWF6b24uY29tghJodWRkbGVzLmFtYXpvbi5jb22CJXAtbnQtd3d3LWFtYXpvbi1jb20ta2FsaWFzLmFtYXpvbi5jb22CJXAteW8td3d3LWFtYXpvbi1jb20ta2FsaWFzLmFtYXpvbi5jb22CJXAteTMtd3d3LWFtYXpvbi1jb20ta2FsaWFzLmFtYXpvbi5jb20wDgYDVR0PAQH/BAQDAgWgMB0GA1UdJQQWMBQGCCsGAQUFBwMBBggrBgEFBQcDAjB3BgNVHR8EcDBuMDWgM6Axhi9odHRwOi8vY3JsMy5kaWdpY2VydC5jb20vRGlnaUNlcnRHbG9iYWxDQUcyLmNybDA1oDOgMYYvaHR0cDovL2NybDQuZGlnaWNlcnQuY29tL0RpZ2lDZXJ0R2xvYmFsQ0FHMi5jcmwwTAYDVR0gBEUwQzA3BglghkgBhv1sAQEwKjAoBggrBgEFBQcCARYcaHR0cHM6Ly93d3cuZGlnaWNlcnQuY29tL0NQUzAIBgZngQwBAgIwdAYIKwYBBQUHAQEEaDBmMCQGCCsGAQUFBzABhhhodHRwOi8vb2NzcC5kaWdpY2VydC5jb20wPgYIKwYBBQUHMAKGMmh0dHA6Ly9jYWNlcnRzLmRpZ2ljZXJ0LmNvbS9EaWdpQ2VydEdsb2JhbENBRzIuY3J0MAkGA1UdEwQCMAAwggEFBgorBgEEAdZ5AgQCBIH2BIHzAPEAdwDuS723dc5guuFCaR+r4Z5mow9+X7By2IMAxHuJeqj9ywAAAWnJKGXMAAAEAwBIMEYCIQDW4rda28H2PYEzT70WkFyphM9fBxeiGY6TV1N4uEjHPwIhALvUGOyZa+js+suhmdBxxMC9teo3hvKaXYOAwR3NgzkAAHYAh3W/51l8+IxDmV+9827/Vo1HVjb/SrVgwbTq/16ggw8AAAFpyShm8QAABAMARzBFAiBnsPt6GIeXSKW60Ugr3w0NTQ2CpTFhK2Ng9C+CcecNhQIhAKwvu5T4oWWBDket4XTCk80vFBaKeR5/H1wzoEjZGqZvMA0GCSqGSIb3DQEBCwUAA4IBAQBY7j0CiHNIvSIGW/8V9SWvf7radfw0abSYJQd48UuXrUonsDJpM2f4W95ELtgkO+T9VFZaSoXwb18SBfcg79nP7LpxvlrYr7gtn3DR/q4e7n3U8boEFgmuNMWMe9MslzJVqDBC5DoDOhwue9MoUQKvNW/dCSJ0i/xgMqbt59nbfRpK0RidWqf2404htmMvftvwjGZW8rSf4Vxu5fVskPms1CDcRCuXCEUQYulF5od1XiF9zyNyyMg5w25d5tIgRdeQa1nammFbvTcx7jL05Efmb6tikZY8A9HJPo4X3/QK7ohvDY3580NXDh7p+BinCLpxLczOQeZjVn7ZBUYEo2nm"},{"base64":"MIIEizCCA3OgAwIBAgIQDI7gyQ1qiRWIBAYe4kH5rzANBgkqhkiG9w0BAQsFADBhMQswCQYDVQQGEwJVUzEVMBMGA1UEChMMRGlnaUNlcnQgSW5jMRkwFwYDVQQLExB3d3cuZGlnaWNlcnQuY29tMSAwHgYDVQQDExdEaWdpQ2VydCBHbG9iYWwgUm9vdCBHMjAeFw0xMzA4MDExMjAwMDBaFw0yODA4MDExMjAwMDBaMEQxCzAJBgNVBAYTAlVTMRUwEwYDVQQKEwxEaWdpQ2VydCBJbmMxHjAcBgNVBAMTFURpZ2lDZXJ0IEdsb2JhbCBDQSBHMjCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANNIfL7zBYZdW9UvhU5L4IatFaxhz1uvPmoKR/uadpFgC4przc/cV35gmAvkVNlW7SHMArZagV+Xau4CLyMnuG3UsOcGAngLH1ypmTb+u6wbBfpXzYEQQGfWMItYNdSWYb7QjHqXnxr5IuYUL6nG6AEfq/gmD6yOTSwyOR2Bm40cZbIc22GoiS9g5+vCShjEbyrpEJIJ7RfRACvmfe8EiRROM6GyD5eHn7OgzS+8LOy4g2gxPR/VSpAQGQuBldYpdlH5NnbQtwl6OErXb4y/E3w57bqukPyV93t4CTZedJMeJfD/1K2uaGvG/w/VNfFVbkhJ+Pi474j48V4Rd6rfArMCAwEAAaOCAVowggFWMBIGA1UdEwEB/wQIMAYBAf8CAQAwDgYDVR0PAQH/BAQDAgGGMDQGCCsGAQUFBwEBBCgwJjAkBggrBgEFBQcwAYYYaHR0cDovL29jc3AuZGlnaWNlcnQuY29tMHsGA1UdHwR0MHIwN6A1oDOGMWh0dHA6Ly9jcmw0LmRpZ2ljZXJ0LmNvbS9EaWdpQ2VydEdsb2JhbFJvb3RHMi5jcmwwN6A1oDOGMWh0dHA6Ly9jcmwzLmRpZ2ljZXJ0LmNvbS9EaWdpQ2VydEdsb2JhbFJvb3RHMi5jcmwwPQYDVR0gBDYwNDAyBgRVHSAAMCowKAYIKwYBBQUHAgEWHGh0dHBzOi8vd3d3LmRpZ2ljZXJ0LmNvbS9DUFMwHQYDVR0OBBYEFCRuKy3QapJRUSVpAaqaR6aJ50AgMB8GA1UdIwQYMBaAFE4iVCAYlebjbuYP+vq5Eu0GF485MA0GCSqGSIb3DQEBCwUAA4IBAQALOYSR+ZfrqoGvhOlaOJL84mxZvzbIRacxAxHhBsCsMsdaVSnaT0AC9aHesO3ewPj2dZ12uYf+QYB6z13jAMZbAuabeGLJ3LhimnftiQjXS8X9Q9ViIyfEBFltcT8jW+rZ8uckJ2/0lYDblizkVIvP6hnZf1WZUXoOLRg9eFhSvGNoVwvdRLNXSmDmyHBwW4coatc7TlJFGa8kBpJIERqLrqwYElesA8u49L3KJg6nwd3jM+/AVTANlVlOnAM2BvjAjxSZnE0qnsHhfTuvcqdFuhOWKU4Z0BqYBvQ3lBetoxi6PrABDJXWKTUgNX31EGDk92hiHuwZ4STyhxGs6QiA"},{"base64":"MIIE3zCCA8egAwIBAgIQYxgNOPuAl3ip0DWjFhj4QDANBgkqhkiG9w0BAQsFADCByjELMAkGA1UEBhMCVVMxFzAVBgNVBAoTDlZlcmlTaWduLCBJbmMuMR8wHQYDVQQLExZWZXJpU2lnbiBUcnVzdCBOZXR3b3JrMTowOAYDVQQLEzEoYykgMjAwNiBWZXJpU2lnbiwgSW5jLiAtIEZvciBhdXRob3JpemVkIHVzZSBvbmx5MUUwQwYDVQQDEzxWZXJpU2lnbiBDbGFzcyAzIFB1YmxpYyBQcmltYXJ5IENlcnRpZmljYXRpb24gQXV0aG9yaXR5IC0gRzUwHhcNMTcxMTA2MDAwMDAwWhcNMjIxMTA1MjM1OTU5WjBhMQswCQYDVQQGEwJVUzEVMBMGA1UEChMMRGlnaUNlcnQgSW5jMRkwFwYDVQQLExB3d3cuZGlnaWNlcnQuY29tMSAwHgYDVQQDExdEaWdpQ2VydCBHbG9iYWwgUm9vdCBHMjCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALs3zTTce2vJsmiQrUp1/0a6IQoIjfUZVMn7iNvzrvI6iZE8euarBhprz6wt6F4JJES6Ypp+1qOofuBUdSAFrFC3nGMabDDc2h8Zsdce3v3X4MuUgzeu7B9DTt17LNK9LqUv5Km4rTrUmaS2JembawBgkmD/TyFJGPdnkKthBpyP8rrptOmSMmu181foXRvNjB2rlQSVSfM1LZbjSW3dd+P7SUu0rFUHqY+Vs7Qju0xtRfD2qbKVMLT9TFWMJ0pXFHyCnc1zktMWSgYMjFDRjx4Jvheh5iHK/YPlELyDpQrEZyj2cxQUPUZ2w4cUiSE0Ta8PRQymSaG6u5zFsTODKYUCAwEAAaOCAScwggEjMB0GA1UdDgQWBBROIlQgGJXm427mD/r6uRLtBhePOTAPBgNVHRMBAf8EBTADAQH/MF8GA1UdIARYMFYwVAYEVR0gADBMMCMGCCsGAQUFBwIBFhdodHRwczovL2Quc3ltY2IuY29tL2NwczAlBggrBgEFBQcCAjAZDBdodHRwczovL2Quc3ltY2IuY29tL3JwYTAvBgNVHR8EKDAmMCSgIqAghh5odHRwOi8vcy5zeW1jYi5jb20vcGNhMy1nNS5jcmwwDgYDVR0PAQH/BAQDAgGGMC4GCCsGAQUFBwEBBCIwIDAeBggrBgEFBQcwAYYSaHR0cDovL3Muc3ltY2QuY29tMB8GA1UdIwQYMBaAFH/TZafC3ey78DAJ80M5+gKvMzEzMA0GCSqGSIb3DQEBCwUAA4IBAQBQ3dNWKSUBip6n5X1Nua8bjKLSJzXlnescavPECMpFBlIIKH2mc6mL2Xr/wkSIBDrsqAO3sBcmoJN+n8V30O5JelrtEAFYSyRDXfu78ZlHn6kvV5/jPUFECEM/hdN0x8WdLpGjJMqfs0EG5qHj+UaxpucWD445wea4zlK7hUR+MA8fq0Yd1HEKj4c8TcgaQIHMa4KHr448cQ69e3CPECRhRNg+RAKT2I7SlaVzLvaB/8yym2oMCEsoqiRT8dbXg35aKEYmmzn3O/mnB7bGUd/EUrkIf7FVamgYZd1fSzQeg1cHqf0ja6eHpvq2bTl+cWFHaq/84KlHe5Rh0CsmpZzn"}],"version":"0303","random":"da0a295bee149f1055747dbb83950ec3eed05f8bd69ef4d1d146e177bde697b4","selected_cipher_suite":"c02f","compression_method":"00","session_ticket":""}},"reassembly_properties":{"reassembled":true},"src_ip":"99.84.220.24","dst_ip":"192.168.113.237","protocol":6,"src_port":443,"dst_port":49224,"event_start":1565200336.503142} -{"ip":{"version":4,"ttl":64,"id":"d71a"},"dns":{"base64":"gOgBAAABAAAAAAAABnBsYXllcgV2aW1lbwNjb20AAAEAAQ=="},"src_ip":"192.168.113.237","dst_ip":"192.168.113.2","protocol":17,"src_port":36118,"dst_port":53,"event_start":1565200337.042309} -{"ip":{"version":4,"ttl":64,"id":"d71b"},"dns":{"base64":"P/wBAAABAAAAAAAABnBsYXllcgV2aW1lbwNjb20AABwAAQ=="},"src_ip":"192.168.113.237","dst_ip":"192.168.113.2","protocol":17,"src_port":54837,"dst_port":53,"event_start":1565200337.042481} -{"ip":{"version":4,"ttl":128,"id":"a607"},"dns":{"base64":"P/yBgAABAAEAAQAABnBsYXllcgV2aW1lbwNjb20AABwAAcAMAAUAAQAAAAUAFgV2aW1lbwNtYXAGZmFzdGx5A25ldADAOAAGAAEAAAAFAC4DbnMxwDgKaG9zdG1hc3RlcgZmYXN0bHnAGXg5xikAAA4QAAACWAAJOoAAAAAe"},"src_ip":"192.168.113.2","dst_ip":"192.168.113.237","protocol":17,"src_port":53,"dst_port":54837,"event_start":1565200337.080170} -{"ip":{"version":4,"ttl":64,"id":"d71f"},"dns":{"base64":"yWQBAAABAAAAAAAABXZpbWVvA21hcAZmYXN0bHkDbmV0AAAcAAE="},"src_ip":"192.168.113.237","dst_ip":"192.168.113.2","protocol":17,"src_port":60235,"dst_port":53,"event_start":1565200337.080409} -{"ip":{"version":4,"ttl":128,"id":"a608"},"dns":{"base64":"gOiBgAABAAUADQAJBnBsYXllcgV2aW1lbwNjb20AAAEAAcAMAAUAAQAAAAUAFgV2aW1lbwNtYXAGZmFzdGx5A25ldADALgABAAEAAAAFAASXZYDZwC4AAQABAAAABQAEl2VA2cAuAAEAAQAAAAUABJdlANnALgABAAEAAAAFAASXZcDZwD8AAgABAAAABQARAWgMZ3RsZC1zZXJ2ZXJzwD/APwACAAEAAAAFAAQBZMCSwD8AAgABAAAABQAEAW3AksA/AAIAAQAAAAUABAFpwJLAPwACAAEAAAAFAAQBasCSwD8AAgABAAAABQAEAWXAksA/AAIAAQAAAAUABAFiwJLAPwACAAEAAAAFAAQBZsCSwD8AAgABAAAABQAEAWfAksA/AAIAAQAAAAUABAFswJLAPwACAAEAAAAFAAQBY8CSwD8AAgABAAAABQAEAWHAksA/AAIAAQAAAAUABAFrwJLBTQABAAEAAAAFAATABQYewP0AAQABAAAABQAEwCEOHsE9AAEAAQAAAAUABMAaXB7ArQABAAEAAAAFAATAH1AewO0AAQABAAAABQAEwAxeHsENAAEAAQAAAAUABMAjMx7BHQABAAEAAAAFAATAKl0ewJAAAQABAAAABQAEwDZwHsDNAAEAAQAAAAUABMArrB4="},"src_ip":"192.168.113.2","dst_ip":"192.168.113.237","protocol":17,"src_port":53,"dst_port":36118,"event_start":1565200337.080476} -{"ip":{"version":4,"ttl":128,"id":"a609"},"dns":{"base64":"yWSBgAABAAAAAQAABXZpbWVvA21hcAZmYXN0bHkDbmV0AAAcAAHAFgAGAAEAAAAFADEDbnMxwBYKaG9zdG1hc3RlcgZmYXN0bHkDY29tAHg5xikAAA4QAAACWAAJOoAAAAAe"},"src_ip":"192.168.113.2","dst_ip":"192.168.113.237","protocol":17,"src_port":53,"dst_port":60235,"event_start":1565200337.119253} -{"ip":{"version":4,"ttl":64,"id":"a959"},"fingerprints":{"tcp":"tcp/(40)()(40)(faf0)((020405b4)(04)(08)(01)(030307))"},"tcp":{"seq":1008893151,"timestamp":{"ts_val":4096479634}},"src_ip":"192.168.113.237","dst_ip":"151.101.192.217","protocol":6,"src_port":42746,"dst_port":443,"event_start":1565200337.119533} -{"ip":{"version":4,"ttl":128,"id":"a60a"},"fingerprints":{"tcp_server":"tcp_server/(40)()(80)(faf0)((020405b4))"},"tcp_server":{"seq":3274138878},"src_ip":"151.101.192.217","dst_ip":"192.168.113.237","protocol":6,"src_port":443,"dst_port":42746,"event_start":1565200337.165179} -{"ip":{"version":4,"ttl":64,"id":"a95b"},"fingerprints":{"tls":"tls/(0303)(130213031301c02cc030009fcca9cca8ccaac02bc02f009ec024c028006bc023c0270067c00ac0140039c009c0130033009d009c003d003c0035002f00ff)((0000)(000b000403000102)(000a000c000a001d0017001e00190018)(0023)(0016)(0017)(000d0030002e040305030603080708080809080a080b080408050806040105010601030302030301020103020202040205020602)(002b0009080304030303020301)(002d00020101)(0033))"},"tls":{"client":{"version":"0303","random":"e096fcab088d6370333ef57cad7a64c16060a05bd5585a387cc28c4e3a384479","session_id":"15146dc877ef6a75d93fa2b0fa5a018f395d2547aab4abd1928edeb2ab22abbd","cipher_suites":"130213031301c02cc030009fcca9cca8ccaac02bc02f009ec024c028006bc023c0270067c00ac0140039c009c0130033009d009c003d003c0035002f00ff","compression_methods":"00","server_name":"player.vimeo.com","session_ticket":"","features":"[\"0303\",\"130213031301c02cc030009fcca9cca8ccaac02bc02f009ec024c028006bc023c0270067c00ac0140039c009c0130033009d009c003d003c0035002f00ff\",[[\"0000\",\"0013000010706c617965722e76696d656f2e636f6d\"],[\"000b\",\"03000102\"],[\"000a\",\"000a001d0017001e00190018\"],[\"0023\",\"\"],[\"0016\",\"\"],[\"0017\",\"\"],[\"000d\",\"002e040305030603080708080809080a080b080408050806040105010601030302030301020103020202040205020602\"],[\"002b\",\"080304030303020301\"],[\"002d\",\"0101\"],[\"0033\",\"0024001d00208040ef7f60c132442d3680166096e5d550fff0fc8c2cb5e1300546fcdcd3a738\"]]]"}},"src_ip":"192.168.113.237","dst_ip":"151.101.192.217","protocol":6,"src_port":42746,"dst_port":443,"event_start":1565200337.165411} -{"ip":{"version":4,"ttl":128,"id":"a60e"},"fingerprints":{"tls_server":"tls_server/(0303)(c02f)((ff01)(0000)(000b000403000102)(0023)(0017))"},"tls":{"server":{"certs":[{"base64":"MIIGlTCCBX2gAwIBAgIQAaiOYIyyE8CWikH8FKdkezANBgkqhkiG9w0BAQsFADBNMQswCQYDVQQGEwJVUzEVMBMGA1UEChMMRGlnaUNlcnQgSW5jMScwJQYDVQQDEx5EaWdpQ2VydCBTSEEyIFNlY3VyZSBTZXJ2ZXIgQ0EwHhcNMTgwODI0MDAwMDAwWhcNMjAwNDAyMTIwMDAwWjBeMQswCQYDVQQGEwJVUzERMA8GA1UECBMITmV3IFlvcmsxETAPBgNVBAcTCE5ldyBZb3JrMRMwEQYDVQQKEwpWaW1lbywgTExDMRQwEgYDVQQDDAsqLnZpbWVvLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAN46nW41HzlpbDbnAO56ngIsavFmnUd5yiJxZqoA6HaDRiGsKkZxAHZSlQJ49ZFEF9iFbqywT4vhjf2x3yLAwwxBbNpP1j3qOIiFZJvJUE8F6wQO7vG5xGTQAQXuiZTUPNpm1Jv/b1jT86S8MXVQCR8uaBa5XcIlvWQykg72NFkMOH+8IlraeUQl03dHSz5t08NranCT6MLhpvMxH2mBZhANWTqV2yWKnAqjb+h8vHbNsKC75P9KukK38mY2f9xPQaVvzezf2Tv/M/N0Oc8DUzkikT5AjkUUr3uas8lb39tFRdXAbB0o+UECt3StONweQJtlOO1j8vLb4weVE10pOw0CAwEAAaOCA14wggNaMB8GA1UdIwQYMBaAFA+AYRyCMWHVLyjnjUY4tCzhxtniMB0GA1UdDgQWBBQX+FWhE5Fzd2lShQjYOnW6cEsVZDAhBgNVHREEGjAYggsqLnZpbWVvLmNvbYIJdmltZW8uY29tMA4GA1UdDwEB/wQEAwIFoDAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwawYDVR0fBGQwYjAvoC2gK4YpaHR0cDovL2NybDMuZGlnaWNlcnQuY29tL3NzY2Etc2hhMi1nNi5jcmwwL6AtoCuGKWh0dHA6Ly9jcmw0LmRpZ2ljZXJ0LmNvbS9zc2NhLXNoYTItZzYuY3JsMEwGA1UdIARFMEMwNwYJYIZIAYb9bAEBMCowKAYIKwYBBQUHAgEWHGh0dHBzOi8vd3d3LmRpZ2ljZXJ0LmNvbS9DUFMwCAYGZ4EMAQICMHwGCCsGAQUFBwEBBHAwbjAkBggrBgEFBQcwAYYYaHR0cDovL29jc3AuZGlnaWNlcnQuY29tMEYGCCsGAQUFBzAChjpodHRwOi8vY2FjZXJ0cy5kaWdpY2VydC5jb20vRGlnaUNlcnRTSEEyU2VjdXJlU2VydmVyQ0EuY3J0MAwGA1UdEwEB/wQCMAAwggF9BgorBgEEAdZ5AgQCBIIBbQSCAWkBZwB2AKS5CZC0GFgUh7sTosxncAo8NZgE+RvfuON3zQ7IDdwQAAABZWyX6G4AAAQDAEcwRQIhAPwDFjuKlEm+zUyRn3PvA5I3YgamRrEbMMnY+IcWOR3lAiBb5GlNGDAI4LYY/gnlWQIjenIhfq9bAay2paMwzHfVLAB2AId1v+dZfPiMQ5lfvfNu/1aNR1Y2/0q1YMG06v9eoIMPAAABZWyX6G4AAAQDAEcwRQIgLARzuiPmv7bduu5M0hvKwpMdnqZdslLfpXNZLm+A6cgCIQD5XsLbcd42bVhofRJ+EbeiCiwslOMeHlwsni4abZD/AQB1ALvZ37wfinG1k5Qjl6qSe0c4V5UKq1LoGpCWZDaOHtGFAAABZWyX56EAAAQDAEYwRAIgTctw2guun/asVLNbDeIhv2nqFLDezQB5aIhzbf13QhYCIEevrRV+w20kyxQ5/ujQtTbjKjYfrEwOwp1oHhjbAJJuMA0GCSqGSIb3DQEBCwUAA4IBAQAnRC6rW/JPfntMo/scqBV/52WMHt3+cLCWYZBrxG4sNj29wuzFwHBdpdlqD9GNLElu9vcllnAqzmria6KsZ0lLeU1WWb5vl5u7Q5k6o4OVuziFF9O7198prtuf2u+tUG/zHEL0KhkPD0mu+UzispcYkuntD2kSiZ3LCrKxL5zpUuFC9D2r4P6b32fmg53Fck76P/qZe+niplaV8rrMGgFbPreCTrlyd4F1Xm5/0tyyLPsnIDN/uBjzuvkgvmw4DkoYOCwMCJftC7Ajix7vs0/KoYgc5r8Iz8twzdacEM62ZWR0obQ9du8Qys7TLlKa1eiiXVJ27zyMjxA8svFmUmBc"},{"base64":"MIIElDCCA3ygAwIBAgIQAf2j627KdciIQ4tyS8+8kTANBgkqhkiG9w0BAQsFADBhMQswCQYDVQQGEwJVUzEVMBMGA1UEChMMRGlnaUNlcnQgSW5jMRkwFwYDVQQLExB3d3cuZGlnaWNlcnQuY29tMSAwHgYDVQQDExdEaWdpQ2VydCBHbG9iYWwgUm9vdCBDQTAeFw0xMzAzMDgxMjAwMDBaFw0yMzAzMDgxMjAwMDBaME0xCzAJBgNVBAYTAlVTMRUwEwYDVQQKEwxEaWdpQ2VydCBJbmMxJzAlBgNVBAMTHkRpZ2lDZXJ0IFNIQTIgU2VjdXJlIFNlcnZlciBDQTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANyuWJBNwcQwFZA1W248ghX1LFy949v/cUP6ZCWA1O4Yok3wZtAKc24RmDYXZK83nf36QYSvx6+M/hpzTc8zl5CilodTgyu5pnVILR1WN3vaMTIa16yrBvSqXUu3R0bdKpPDkC55gIDvEwRqFDu1m5K+wgdlTvza/P96rtxcflUxDOg5B6TXvi/TC2rSsd9f/ld0Uzs1gN2ujkSYs58O09rg1/RrKatEp0tYhG2SS4HD2nOLEpdIkARFdRrdNzGXkujNVA075ME/OV4uuPNcfhCOhkEAjUVmR7ChZc6gqikJTvOX6+guqw9ypzAO+sf0/RR3w6RbKFfCs/mC/bdFWJsCAwEAAaOCAVowggFWMBIGA1UdEwEB/wQIMAYBAf8CAQAwDgYDVR0PAQH/BAQDAgGGMDQGCCsGAQUFBwEBBCgwJjAkBggrBgEFBQcwAYYYaHR0cDovL29jc3AuZGlnaWNlcnQuY29tMHsGA1UdHwR0MHIwN6A1oDOGMWh0dHA6Ly9jcmwzLmRpZ2ljZXJ0LmNvbS9EaWdpQ2VydEdsb2JhbFJvb3RDQS5jcmwwN6A1oDOGMWh0dHA6Ly9jcmw0LmRpZ2ljZXJ0LmNvbS9EaWdpQ2VydEdsb2JhbFJvb3RDQS5jcmwwPQYDVR0gBDYwNDAyBgRVHSAAMCowKAYIKwYBBQUHAgEWHGh0dHBzOi8vd3d3LmRpZ2ljZXJ0LmNvbS9DUFMwHQYDVR0OBBYEFA+AYRyCMWHVLyjnjUY4tCzhxtniMB8GA1UdIwQYMBaAFAPeUDVW0Uy7ZvCj4hsbw5eyPdFVMA0GCSqGSIb3DQEBCwUAA4IBAQAjPt9L0jFCpbZ+QlwaRMxp0Wi0XUvgBCFsS+JtzLHgl4+mUwnNqipl5TlPHoOlblyYoiQm5vuh7ZPHLgLGTUq/sELfeNqzqPlt/yGFUzZgTHbO7Djc1lGA8MXW5dRNJ2Srm8c+cftIl7gzbckTB+6WohsYFfZcTEDts8Ls/3HB40f/1LkAtDdC2iDJ6m6K7hQGrn2iWZiIqBtvLfTyyRRfJs8sjX7tN8Cp1Tm5gr8ZDOo0rwAhaPitc+LJMto4JQtV05od8GiG7S5BNO98pVAdvzr508EIDObtHopYJeS4d60tbvVS3bR0j6tJLp07kzQoH3jOlOrHvdPJbRzeXDLz"}],"version":"0303","random":"c76e1e3677968b3d5abffa2038777b4de1d3e7ffaad918b8510a2e3e5df1eff5","selected_cipher_suite":"c02f","compression_method":"00","session_ticket":""}},"reassembly_properties":{"reassembled":true},"src_ip":"151.101.192.217","dst_ip":"192.168.113.237","protocol":6,"src_port":443,"dst_port":42746,"event_start":1565200337.207438} -{"ip":{"version":4,"ttl":64,"id":"9a21"},"fingerprints":{"tcp":"tcp/(40)()(40)(faf0)((020405b4)(04)(08)(01)(030307))"},"tcp":{"seq":2424328083,"timestamp":{"ts_val":4096479808}},"src_ip":"192.168.113.237","dst_ip":"151.101.192.217","protocol":6,"src_port":42748,"dst_port":443,"event_start":1565200337.293823} -{"ip":{"version":4,"ttl":128,"id":"a616"},"fingerprints":{"tcp_server":"tcp_server/(40)()(80)(faf0)((020405b4))"},"tcp_server":{"seq":2617204280},"src_ip":"151.101.192.217","dst_ip":"192.168.113.237","protocol":6,"src_port":443,"dst_port":42748,"event_start":1565200337.332883} -{"ip":{"version":4,"ttl":64,"id":"9a23"},"fingerprints":{"tls":"tls/(0303)(130213031301c02cc030009fcca9cca8ccaac02bc02f009ec024c028006bc023c0270067c00ac0140039c009c0130033009d009c003d003c0035002f00ff)((0000)(000b000403000102)(000a000c000a001d0017001e00190018)(0023)(0016)(0017)(000d0030002e040305030603080708080809080a080b080408050806040105010601030302030301020103020202040205020602)(002b0009080304030303020301)(002d00020101)(0033))"},"tls":{"client":{"version":"0303","random":"c87690e9c3ff8a6f868a8e351f7a0add7226f728685a62f8391051a836bd2219","session_id":"25ec7f7633d7d9805b2ce9dd91a0c68bd077ba5e51b695b8a7fccf9ff509cb6e","cipher_suites":"130213031301c02cc030009fcca9cca8ccaac02bc02f009ec024c028006bc023c0270067c00ac0140039c009c0130033009d009c003d003c0035002f00ff","compression_methods":"00","server_name":"vimeo.com","session_ticket":"","features":"[\"0303\",\"130213031301c02cc030009fcca9cca8ccaac02bc02f009ec024c028006bc023c0270067c00ac0140039c009c0130033009d009c003d003c0035002f00ff\",[[\"0000\",\"000c00000976696d656f2e636f6d\"],[\"000b\",\"03000102\"],[\"000a\",\"000a001d0017001e00190018\"],[\"0023\",\"\"],[\"0016\",\"\"],[\"0017\",\"\"],[\"000d\",\"002e040305030603080708080809080a080b080408050806040105010601030302030301020103020202040205020602\"],[\"002b\",\"080304030303020301\"],[\"002d\",\"0101\"],[\"0033\",\"0024001d002036da7077c0b851d7aea54650cf91311219e953a98385d2f69d9d3c0791a4702f\"]]]"}},"src_ip":"192.168.113.237","dst_ip":"151.101.192.217","protocol":6,"src_port":42748,"dst_port":443,"event_start":1565200337.333104} -{"ip":{"version":4,"ttl":128,"id":"a61a"},"fingerprints":{"tls_server":"tls_server/(0303)(c02f)((ff01)(0000)(000b000403000102)(0023)(0017))"},"tls":{"server":{"certs":[{"base64":"MIIGlTCCBX2gAwIBAgIQAaiOYIyyE8CWikH8FKdkezANBgkqhkiG9w0BAQsFADBNMQswCQYDVQQGEwJVUzEVMBMGA1UEChMMRGlnaUNlcnQgSW5jMScwJQYDVQQDEx5EaWdpQ2VydCBTSEEyIFNlY3VyZSBTZXJ2ZXIgQ0EwHhcNMTgwODI0MDAwMDAwWhcNMjAwNDAyMTIwMDAwWjBeMQswCQYDVQQGEwJVUzERMA8GA1UECBMITmV3IFlvcmsxETAPBgNVBAcTCE5ldyBZb3JrMRMwEQYDVQQKEwpWaW1lbywgTExDMRQwEgYDVQQDDAsqLnZpbWVvLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAN46nW41HzlpbDbnAO56ngIsavFmnUd5yiJxZqoA6HaDRiGsKkZxAHZSlQJ49ZFEF9iFbqywT4vhjf2x3yLAwwxBbNpP1j3qOIiFZJvJUE8F6wQO7vG5xGTQAQXuiZTUPNpm1Jv/b1jT86S8MXVQCR8uaBa5XcIlvWQykg72NFkMOH+8IlraeUQl03dHSz5t08NranCT6MLhpvMxH2mBZhANWTqV2yWKnAqjb+h8vHbNsKC75P9KukK38mY2f9xPQaVvzezf2Tv/M/N0Oc8DUzkikT5AjkUUr3uas8lb39tFRdXAbB0o+UECt3StONweQJtlOO1j8vLb4weVE10pOw0CAwEAAaOCA14wggNaMB8GA1UdIwQYMBaAFA+AYRyCMWHVLyjnjUY4tCzhxtniMB0GA1UdDgQWBBQX+FWhE5Fzd2lShQjYOnW6cEsVZDAhBgNVHREEGjAYggsqLnZpbWVvLmNvbYIJdmltZW8uY29tMA4GA1UdDwEB/wQEAwIFoDAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwawYDVR0fBGQwYjAvoC2gK4YpaHR0cDovL2NybDMuZGlnaWNlcnQuY29tL3NzY2Etc2hhMi1nNi5jcmwwL6AtoCuGKWh0dHA6Ly9jcmw0LmRpZ2ljZXJ0LmNvbS9zc2NhLXNoYTItZzYuY3JsMEwGA1UdIARFMEMwNwYJYIZIAYb9bAEBMCowKAYIKwYBBQUHAgEWHGh0dHBzOi8vd3d3LmRpZ2ljZXJ0LmNvbS9DUFMwCAYGZ4EMAQICMHwGCCsGAQUFBwEBBHAwbjAkBggrBgEFBQcwAYYYaHR0cDovL29jc3AuZGlnaWNlcnQuY29tMEYGCCsGAQUFBzAChjpodHRwOi8vY2FjZXJ0cy5kaWdpY2VydC5jb20vRGlnaUNlcnRTSEEyU2VjdXJlU2VydmVyQ0EuY3J0MAwGA1UdEwEB/wQCMAAwggF9BgorBgEEAdZ5AgQCBIIBbQSCAWkBZwB2AKS5CZC0GFgUh7sTosxncAo8NZgE+RvfuON3zQ7IDdwQAAABZWyX6G4AAAQDAEcwRQIhAPwDFjuKlEm+zUyRn3PvA5I3YgamRrEbMMnY+IcWOR3lAiBb5GlNGDAI4LYY/gnlWQIjenIhfq9bAay2paMwzHfVLAB2AId1v+dZfPiMQ5lfvfNu/1aNR1Y2/0q1YMG06v9eoIMPAAABZWyX6G4AAAQDAEcwRQIgLARzuiPmv7bduu5M0hvKwpMdnqZdslLfpXNZLm+A6cgCIQD5XsLbcd42bVhofRJ+EbeiCiwslOMeHlwsni4abZD/AQB1ALvZ37wfinG1k5Qjl6qSe0c4V5UKq1LoGpCWZDaOHtGFAAABZWyX56EAAAQDAEYwRAIgTctw2guun/asVLNbDeIhv2nqFLDezQB5aIhzbf13QhYCIEevrRV+w20kyxQ5/ujQtTbjKjYfrEwOwp1oHhjbAJJuMA0GCSqGSIb3DQEBCwUAA4IBAQAnRC6rW/JPfntMo/scqBV/52WMHt3+cLCWYZBrxG4sNj29wuzFwHBdpdlqD9GNLElu9vcllnAqzmria6KsZ0lLeU1WWb5vl5u7Q5k6o4OVuziFF9O7198prtuf2u+tUG/zHEL0KhkPD0mu+UzispcYkuntD2kSiZ3LCrKxL5zpUuFC9D2r4P6b32fmg53Fck76P/qZe+niplaV8rrMGgFbPreCTrlyd4F1Xm5/0tyyLPsnIDN/uBjzuvkgvmw4DkoYOCwMCJftC7Ajix7vs0/KoYgc5r8Iz8twzdacEM62ZWR0obQ9du8Qys7TLlKa1eiiXVJ27zyMjxA8svFmUmBc"},{"base64":"MIIElDCCA3ygAwIBAgIQAf2j627KdciIQ4tyS8+8kTANBgkqhkiG9w0BAQsFADBhMQswCQYDVQQGEwJVUzEVMBMGA1UEChMMRGlnaUNlcnQgSW5jMRkwFwYDVQQLExB3d3cuZGlnaWNlcnQuY29tMSAwHgYDVQQDExdEaWdpQ2VydCBHbG9iYWwgUm9vdCBDQTAeFw0xMzAzMDgxMjAwMDBaFw0yMzAzMDgxMjAwMDBaME0xCzAJBgNVBAYTAlVTMRUwEwYDVQQKEwxEaWdpQ2VydCBJbmMxJzAlBgNVBAMTHkRpZ2lDZXJ0IFNIQTIgU2VjdXJlIFNlcnZlciBDQTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANyuWJBNwcQwFZA1W248ghX1LFy949v/cUP6ZCWA1O4Yok3wZtAKc24RmDYXZK83nf36QYSvx6+M/hpzTc8zl5CilodTgyu5pnVILR1WN3vaMTIa16yrBvSqXUu3R0bdKpPDkC55gIDvEwRqFDu1m5K+wgdlTvza/P96rtxcflUxDOg5B6TXvi/TC2rSsd9f/ld0Uzs1gN2ujkSYs58O09rg1/RrKatEp0tYhG2SS4HD2nOLEpdIkARFdRrdNzGXkujNVA075ME/OV4uuPNcfhCOhkEAjUVmR7ChZc6gqikJTvOX6+guqw9ypzAO+sf0/RR3w6RbKFfCs/mC/bdFWJsCAwEAAaOCAVowggFWMBIGA1UdEwEB/wQIMAYBAf8CAQAwDgYDVR0PAQH/BAQDAgGGMDQGCCsGAQUFBwEBBCgwJjAkBggrBgEFBQcwAYYYaHR0cDovL29jc3AuZGlnaWNlcnQuY29tMHsGA1UdHwR0MHIwN6A1oDOGMWh0dHA6Ly9jcmwzLmRpZ2ljZXJ0LmNvbS9EaWdpQ2VydEdsb2JhbFJvb3RDQS5jcmwwN6A1oDOGMWh0dHA6Ly9jcmw0LmRpZ2ljZXJ0LmNvbS9EaWdpQ2VydEdsb2JhbFJvb3RDQS5jcmwwPQYDVR0gBDYwNDAyBgRVHSAAMCowKAYIKwYBBQUHAgEWHGh0dHBzOi8vd3d3LmRpZ2ljZXJ0LmNvbS9DUFMwHQYDVR0OBBYEFA+AYRyCMWHVLyjnjUY4tCzhxtniMB8GA1UdIwQYMBaAFAPeUDVW0Uy7ZvCj4hsbw5eyPdFVMA0GCSqGSIb3DQEBCwUAA4IBAQAjPt9L0jFCpbZ+QlwaRMxp0Wi0XUvgBCFsS+JtzLHgl4+mUwnNqipl5TlPHoOlblyYoiQm5vuh7ZPHLgLGTUq/sELfeNqzqPlt/yGFUzZgTHbO7Djc1lGA8MXW5dRNJ2Srm8c+cftIl7gzbckTB+6WohsYFfZcTEDts8Ls/3HB40f/1LkAtDdC2iDJ6m6K7hQGrn2iWZiIqBtvLfTyyRRfJs8sjX7tN8Cp1Tm5gr8ZDOo0rwAhaPitc+LJMto4JQtV05od8GiG7S5BNO98pVAdvzr508EIDObtHopYJeS4d60tbvVS3bR0j6tJLp07kzQoH3jOlOrHvdPJbRzeXDLz"}],"version":"0303","random":"610dceeeca81e81ea1d98337d66a05c089725f817b663bf3e23e5309d2211f99","selected_cipher_suite":"c02f","compression_method":"00","session_ticket":""}},"reassembly_properties":{"reassembled":true},"src_ip":"151.101.192.217","dst_ip":"192.168.113.237","protocol":6,"src_port":443,"dst_port":42748,"event_start":1565200337.374968} -{"ip":{"version":4,"ttl":64,"id":"d7c3"},"dns":{"base64":"QQ0BAAABAAAAAAAACXdvcmRwcmVzcwNvcmcAAAEAAQ=="},"src_ip":"192.168.113.237","dst_ip":"192.168.113.2","protocol":17,"src_port":34196,"dst_port":53,"event_start":1565200337.743967} -{"ip":{"version":4,"ttl":64,"id":"d7c4"},"dns":{"base64":"+6UBAAABAAAAAAAACXdvcmRwcmVzcwNvcmcAABwAAQ=="},"src_ip":"192.168.113.237","dst_ip":"192.168.113.2","protocol":17,"src_port":53401,"dst_port":53,"event_start":1565200337.744164} -{"ip":{"version":4,"ttl":128,"id":"a65f"},"dns":{"base64":"+6WBgAABAAAAAQAACXdvcmRwcmVzcwNvcmcAABwAAcAMAAYAAQAAAAUAJwNuczHADApob3N0bWFzdGVywAwBMw8YAAAcIAAAHCAAEnUAAAFRgA=="},"src_ip":"192.168.113.2","dst_ip":"192.168.113.237","protocol":17,"src_port":53,"dst_port":53401,"event_start":1565200337.780365} -{"ip":{"version":4,"ttl":128,"id":"a660"},"dns":{"base64":"QQ2BgAABAAEABgAMCXdvcmRwcmVzcwNvcmcAAAEAAcAMAAEAAQAAAAUABMaPpPzAFgACAAEAAAAFABUCYjADb3JnC2FmaWxpYXMtbnN0wBbAFgACAAEAAAAFABkCYTIDb3JnC2FmaWxpYXMtbnN0BGluZm8AwBYAAgABAAAABQAFAmIywD7AFgACAAEAAAAFAAUCYTDAX8AWAAIAAQAAAAUABQJkMMA+wBYAAgABAAAABQAFAmMwwF/AkgABAAEAAAAFAATHEzgBwFwAAQABAAAABQAEx/lwAcA7AAEAAQAAAAUABMcTNgHAgQABAAEAAAAFAATH+XgBwLQAAQABAAAABQAExxM1AcCjAAEAAQAAAAUABMcTOQHAkgAcAAEAAAAFABAgAQUAAA4AAAAAAAAAAAABwFwAHAABAAAABQAQIAEFAABAAAAAAAAAAAAAAcA7ABwAAQAAAAUAECABBQAADAAAAAAAAAAAAAHAgQAcAAEAAAAFABAgAQUAAEgAAAAAAAAAAAABwLQAHAABAAAABQAQIAEFAAALAAAAAAAAAAAAAcCjABwAAQAAAAUAECABBQAADwAAAAAAAAAAAAE="},"src_ip":"192.168.113.2","dst_ip":"192.168.113.237","protocol":17,"src_port":53,"dst_port":34196,"event_start":1565200337.780928} -{"ip":{"version":4,"ttl":64,"id":"5b51"},"fingerprints":{"tcp":"tcp/(40)()(40)(faf0)((020405b4)(04)(08)(01)(030307))"},"tcp":{"seq":1326353786,"timestamp":{"ts_val":2184601652}},"src_ip":"192.168.113.237","dst_ip":"198.143.164.252","protocol":6,"src_port":52446,"dst_port":443,"event_start":1565200337.781283} -{"ip":{"version":4,"ttl":128,"id":"a661"},"fingerprints":{"tcp_server":"tcp_server/(40)()(80)(faf0)((020405b4))"},"tcp_server":{"seq":3318278290},"src_ip":"198.143.164.252","dst_ip":"192.168.113.237","protocol":6,"src_port":443,"dst_port":52446,"event_start":1565200337.846204} -{"ip":{"version":4,"ttl":64,"id":"5b53"},"fingerprints":{"tls":"tls/(0303)(130213031301c02cc030009fcca9cca8ccaac02bc02f009ec024c028006bc023c0270067c00ac0140039c009c0130033009d009c003d003c0035002f00ff)((0000)(000b000403000102)(000a000c000a001d0017001e00190018)(0023)(0016)(0017)(000d0030002e040305030603080708080809080a080b080408050806040105010601030302030301020103020202040205020602)(002b0009080304030303020301)(002d00020101)(0033))"},"tls":{"client":{"version":"0303","random":"70058e4ffa327703f64a40bc6b3544e8c8411bd863c8715e42163a182c9e1f5e","session_id":"ffc122eb536c80ec997410ceab8c4fff6726f30582f641e8d6634baa87c33edc","cipher_suites":"130213031301c02cc030009fcca9cca8ccaac02bc02f009ec024c028006bc023c0270067c00ac0140039c009c0130033009d009c003d003c0035002f00ff","compression_methods":"00","server_name":"wordpress.org","session_ticket":"","features":"[\"0303\",\"130213031301c02cc030009fcca9cca8ccaac02bc02f009ec024c028006bc023c0270067c00ac0140039c009c0130033009d009c003d003c0035002f00ff\",[[\"0000\",\"001000000d776f726470726573732e6f7267\"],[\"000b\",\"03000102\"],[\"000a\",\"000a001d0017001e00190018\"],[\"0023\",\"\"],[\"0016\",\"\"],[\"0017\",\"\"],[\"000d\",\"002e040305030603080708080809080a080b080408050806040105010601030302030301020103020202040205020602\"],[\"002b\",\"080304030303020301\"],[\"002d\",\"0101\"],[\"0033\",\"0024001d0020ad8b88074c5443a95ea8aa8142e9902a1a33f90458a8439105b0dd2c66c9c75d\"]]]"}},"src_ip":"192.168.113.237","dst_ip":"198.143.164.252","protocol":6,"src_port":52446,"dst_port":443,"event_start":1565200337.846617} -{"ip":{"version":4,"ttl":128,"id":"a663"},"fingerprints":{"tls_server":"tls_server/(0303)(1302)((002b00020304)(0033))"},"tls":{"server":{"version":"0303","random":"b13216d13e703a9b398a93ee6d88767c9763787a93931bf18fabd01baf04d456","selected_cipher_suite":"1302","compression_method":"00"}},"src_ip":"198.143.164.252","dst_ip":"192.168.113.237","protocol":6,"src_port":443,"dst_port":52446,"event_start":1565200337.919145} -{"ip":{"version":4,"ttl":64,"id":"d800"},"dns":{"base64":"kPoBAAABAAAAAAAABGRvY3MGZ29vZ2xlA2NvbQAAAQAB"},"src_ip":"192.168.113.237","dst_ip":"192.168.113.2","protocol":17,"src_port":57660,"dst_port":53,"event_start":1565200338.169716} -{"ip":{"version":4,"ttl":64,"id":"d801"},"dns":{"base64":"nE4BAAABAAAAAAAABGRvY3MGZ29vZ2xlA2NvbQAAHAAB"},"src_ip":"192.168.113.237","dst_ip":"192.168.113.2","protocol":17,"src_port":53745,"dst_port":53,"event_start":1565200338.169885} -{"ip":{"version":4,"ttl":128,"id":"a68d"},"dns":{"base64":"nE6BgAABAAEADQANBGRvY3MGZ29vZ2xlA2NvbQAAHAABwAwAHAABAAAABQAQJgf4sEAECBUAAAAAAAAgDsAYAAIAAQAAAAUAFAFoDGd0bGQtc2VydmVycwNuZXQAwBgAAgABAAAABQAEAWbAS8AYAAIAAQAAAAUABAFlwEvAGAACAAEAAAAFAAQBa8BLwBgAAgABAAAABQAEAWTAS8AYAAIAAQAAAAUABAFpwEvAGAACAAEAAAAFAAQBY8BLwBgAAgABAAAABQAEAWLAS8AYAAIAAQAAAAUABAFswEvAGAACAAEAAAAFAAQBasBLwBgAAgABAAAABQAEAWHAS8AYAAIAAQAAAAUABAFtwEvAGAACAAEAAAAFAAQBZ8BLwPkAAQABAAAABQAEwAUGHsDJAAEAAQAAAAUABMAhDh7AuQABAAEAAAAFAATAGlwewJkAAQABAAAABQAEwB9QHsB5AAEAAQAAAAUABMAMXh7AaQABAAEAAAAFAATAIzMewRkAAQABAAAABQAEwCpdHsBJAAEAAQAAAAUABMA2cB7AqQABAAEAAAAFAATAK6wewOkAAQABAAAABQAEwDBPHsCJAAEAAQAAAAUABMA0sh7A2QABAAEAAAAFAATAKaIewQkAAQABAAAABQAEwDdTHg=="},"src_ip":"192.168.113.2","dst_ip":"192.168.113.237","protocol":17,"src_port":53,"dst_port":53745,"event_start":1565200338.206117} -{"ip":{"version":4,"ttl":128,"id":"a68e"},"dns":{"base64":"kPqBgAABAAEADQAOBGRvY3MGZ29vZ2xlA2NvbQAAAQABwAwAAQABAAAABQAErNmkrsAYAAIAAQAAAAUAFAFiDGd0bGQtc2VydmVycwNuZXQAwBgAAgABAAAABQAEAWPAP8AYAAIAAQAAAAUABAFpwD/AGAACAAEAAAAFAAQBZMA/wBgAAgABAAAABQAEAWzAP8AYAAIAAQAAAAUABAFrwD/AGAACAAEAAAAFAAQBaMA/wBgAAgABAAAABQAEAWfAP8AYAAIAAQAAAAUABAFmwD/AGAACAAEAAAAFAAQBbcA/wBgAAgABAAAABQAEAWrAP8AYAAIAAQAAAAUABAFhwD/AGAACAAEAAAAFAAQBZcA/wP0AAQABAAAABQAEwAUGHsA9AAEAAQAAAAUABMAhDh7AXQABAAEAAAAFAATAGlwewH0AAQABAAAABQAEwB9QHsENAAEAAQAAAAUABMAMXh7AzQABAAEAAAAFAATAIzMewL0AAQABAAAABQAEwCpdHsCtAAEAAQAAAAUABMA2cB7AbQABAAEAAAAFAATAK6wewO0AAQABAAAABQAEwDBPHsCdAAEAAQAAAAUABMA0sh7AjQABAAEAAAAFAATAKaIewN0AAQABAAAABQAEwDdTHsD9ABwAAQAAAAUAECABBQOoPgAAAAAAAAACADA="},"src_ip":"192.168.113.2","dst_ip":"192.168.113.237","protocol":17,"src_port":53,"dst_port":57660,"event_start":1565200338.206741} -{"ip":{"version":4,"ttl":64,"id":"b24f"},"fingerprints":{"tcp":"tcp/(40)()(40)(faf0)((020405b4)(04)(08)(01)(030307))"},"tcp":{"seq":4039075033,"timestamp":{"ts_val":4199249707}},"src_ip":"192.168.113.237","dst_ip":"172.217.164.174","protocol":6,"src_port":56368,"dst_port":443,"event_start":1565200338.207021} -{"ip":{"version":4,"ttl":128,"id":"a68f"},"fingerprints":{"tcp_server":"tcp_server/(40)()(80)(faf0)((020405b4))"},"tcp_server":{"seq":2468074485},"src_ip":"172.217.164.174","dst_ip":"192.168.113.237","protocol":6,"src_port":443,"dst_port":56368,"event_start":1565200338.250631} -{"ip":{"version":4,"ttl":64,"id":"b251"},"fingerprints":{"tls":"tls/(0303)(130213031301c02cc030009fcca9cca8ccaac02bc02f009ec024c028006bc023c0270067c00ac0140039c009c0130033009d009c003d003c0035002f00ff)((0000)(000b000403000102)(000a000c000a001d0017001e00190018)(0023)(0016)(0017)(000d0030002e040305030603080708080809080a080b080408050806040105010601030302030301020103020202040205020602)(002b0009080304030303020301)(002d00020101)(0033))"},"tls":{"client":{"version":"0303","random":"469b54635829715d0627f37f067c5ff2d4688f5da38af37a88d4ff457a7165d9","session_id":"88ffd8226cb7e9296787385b81f3fa1219d5e10f1b676adacfcb72dd791030d7","cipher_suites":"130213031301c02cc030009fcca9cca8ccaac02bc02f009ec024c028006bc023c0270067c00ac0140039c009c0130033009d009c003d003c0035002f00ff","compression_methods":"00","server_name":"docs.google.com","session_ticket":"","features":"[\"0303\",\"130213031301c02cc030009fcca9cca8ccaac02bc02f009ec024c028006bc023c0270067c00ac0140039c009c0130033009d009c003d003c0035002f00ff\",[[\"0000\",\"001200000f646f63732e676f6f676c652e636f6d\"],[\"000b\",\"03000102\"],[\"000a\",\"000a001d0017001e00190018\"],[\"0023\",\"\"],[\"0016\",\"\"],[\"0017\",\"\"],[\"000d\",\"002e040305030603080708080809080a080b080408050806040105010601030302030301020103020202040205020602\"],[\"002b\",\"080304030303020301\"],[\"002d\",\"0101\"],[\"0033\",\"0024001d0020a1df7539430b1b25cafec779367a27154f589a1a07911f02a72b82812afd8852\"]]]"}},"src_ip":"192.168.113.237","dst_ip":"172.217.164.174","protocol":6,"src_port":56368,"dst_port":443,"event_start":1565200338.250877} -{"ip":{"version":4,"ttl":128,"id":"a691"},"fingerprints":{"tls_server":"tls_server/(0303)(1302)((0033)(002b00020304))"},"tls":{"server":{"version":"0303","random":"85754c347b09c679fbb692c95d2f47098ae9c4288497f0e739efcf03cef61733","selected_cipher_suite":"1302","compression_method":"00"}},"src_ip":"172.217.164.174","dst_ip":"192.168.113.237","protocol":6,"src_port":443,"dst_port":56368,"event_start":1565200338.300072} -{"ip":{"version":4,"ttl":64,"id":"002d"},"fingerprints":{"tcp":"tcp/(40)()(40)(faf0)((020405b4)(04)(08)(01)(030307))"},"tcp":{"seq":1579603710,"timestamp":{"ts_val":1677004856}},"src_ip":"192.168.113.237","dst_ip":"172.217.164.141","protocol":6,"src_port":57056,"dst_port":443,"event_start":1565200338.450418} -{"ip":{"version":4,"ttl":128,"id":"a699"},"fingerprints":{"tcp_server":"tcp_server/(40)()(80)(faf0)((020405b4))"},"tcp_server":{"seq":3242076241},"src_ip":"172.217.164.141","dst_ip":"192.168.113.237","protocol":6,"src_port":443,"dst_port":57056,"event_start":1565200338.490246} -{"ip":{"version":4,"ttl":64,"id":"002f"},"fingerprints":{"tls":"tls/(0303)(130213031301c02cc030009fcca9cca8ccaac02bc02f009ec024c028006bc023c0270067c00ac0140039c009c0130033009d009c003d003c0035002f00ff)((0000)(000b000403000102)(000a000c000a001d0017001e00190018)(0023)(0016)(0017)(000d0030002e040305030603080708080809080a080b080408050806040105010601030302030301020103020202040205020602)(002b0009080304030303020301)(002d00020101)(0033))"},"tls":{"client":{"version":"0303","random":"8c02654a2eea497b09658cba201faa6a521b383dc7c7cfee4d1e736de6cb78a2","session_id":"21818e58c040f41d20aeb18ea833c95ef68b606b78af431217fb29fd7df3801b","cipher_suites":"130213031301c02cc030009fcca9cca8ccaac02bc02f009ec024c028006bc023c0270067c00ac0140039c009c0130033009d009c003d003c0035002f00ff","compression_methods":"00","server_name":"accounts.google.com","session_ticket":"","features":"[\"0303\",\"130213031301c02cc030009fcca9cca8ccaac02bc02f009ec024c028006bc023c0270067c00ac0140039c009c0130033009d009c003d003c0035002f00ff\",[[\"0000\",\"00160000136163636f756e74732e676f6f676c652e636f6d\"],[\"000b\",\"03000102\"],[\"000a\",\"000a001d0017001e00190018\"],[\"0023\",\"\"],[\"0016\",\"\"],[\"0017\",\"\"],[\"000d\",\"002e040305030603080708080809080a080b080408050806040105010601030302030301020103020202040205020602\"],[\"002b\",\"080304030303020301\"],[\"002d\",\"0101\"],[\"0033\",\"0024001d0020689f808d0bb7c3b2b8e3ea3387b201a421425aa9be2fcbbd29d720f8c7b8443b\"]]]"}},"src_ip":"192.168.113.237","dst_ip":"172.217.164.141","protocol":6,"src_port":57056,"dst_port":443,"event_start":1565200338.490563} -{"ip":{"version":4,"ttl":128,"id":"a69c"},"fingerprints":{"tls_server":"tls_server/(0303)(1302)((0033)(002b00020304))"},"tls":{"server":{"version":"0303","random":"e055f2c946eb00e0f104020c013f8ee7d66146b69f15a23bd5764c5d50bb782a","selected_cipher_suite":"1302","compression_method":"00"}},"src_ip":"172.217.164.141","dst_ip":"192.168.113.237","protocol":6,"src_port":443,"dst_port":57056,"event_start":1565200338.540860} -{"ip":{"version":4,"ttl":64,"id":"d815"},"dns":{"base64":"g6oBAAABAAAAAAAABmdpdGh1YgNjb20AAAEAAQ=="},"src_ip":"192.168.113.237","dst_ip":"192.168.113.2","protocol":17,"src_port":45592,"dst_port":53,"event_start":1565200338.822401} -{"ip":{"version":4,"ttl":64,"id":"d816"},"dns":{"base64":"438BAAABAAAAAAAABmdpdGh1YgNjb20AABwAAQ=="},"src_ip":"192.168.113.237","dst_ip":"192.168.113.2","protocol":17,"src_port":42496,"dst_port":53,"event_start":1565200338.822579} -{"ip":{"version":4,"ttl":128,"id":"a6d5"},"dns":{"base64":"43+BgAABAAAAAQAABmdpdGh1YgNjb20AABwAAcAMAAYAAQAAAAUASAducy0xNzA3CWF3c2Rucy0yMQJjbwJ1awARYXdzZG5zLWhvc3RtYXN0ZXIGYW1hem9uwBMAAAABAAAcIAAAA4QAEnUAAAFRgA=="},"src_ip":"192.168.113.2","dst_ip":"192.168.113.237","protocol":17,"src_port":53,"dst_port":42496,"event_start":1565200338.857920} -{"ip":{"version":4,"ttl":128,"id":"a6d6"},"dns":{"base64":"g6qBgAABAAEADQAOBmdpdGh1YgNjb20AAAEAAcAMAAEAAQAAAAUABIxScQTAEwACAAEAAAAFABQBaQxndGxkLXNlcnZlcnMDbmV0AMATAAIAAQAAAAUABAFtwDrAEwACAAEAAAAFAAQBZsA6wBMAAgABAAAABQAEAWjAOsATAAIAAQAAAAUABAFjwDrAEwACAAEAAAAFAAQBYcA6wBMAAgABAAAABQAEAWXAOsATAAIAAQAAAAUABAFrwDrAEwACAAEAAAAFAAQBYsA6wBMAAgABAAAABQAEAWzAOsATAAIAAQAAAAUABAFqwDrAEwACAAEAAAAFAAQBZ8A6wBMAAgABAAAABQAEAWTAOsCYAAEAAQAAAAUABMAFBh7AyAABAAEAAAAFAATAIQ4ewIgAAQABAAAABQAEwBpcHsEIAAEAAQAAAAUABMAfUB7AqAABAAEAAAAFAATADF4ewGgAAQABAAAABQAEwCMzHsD4AAEAAQAAAAUABMAqXR7AeAABAAEAAAAFAATANnAewDgAAQABAAAABQAEwCusHsDoAAEAAQAAAAUABMAwTx7AuAABAAEAAAAFAATANLIewNgAAQABAAAABQAEwCmiHsBYAAEAAQAAAAUABMA3Ux7AmAAcAAEAAAAFABAgAQUDqD4AAAAAAAAAAgAw"},"src_ip":"192.168.113.2","dst_ip":"192.168.113.237","protocol":17,"src_port":53,"dst_port":45592,"event_start":1565200338.858443} -{"ip":{"version":4,"ttl":64,"id":"9d55"},"fingerprints":{"tcp":"tcp/(40)()(40)(faf0)((020405b4)(04)(08)(01)(030307))"},"tcp":{"seq":2032618092,"timestamp":{"ts_val":3500565545}},"src_ip":"192.168.113.237","dst_ip":"140.82.113.4","protocol":6,"src_port":59600,"dst_port":443,"event_start":1565200338.858724} -{"ip":{"version":4,"ttl":128,"id":"a6d7"},"fingerprints":{"tcp_server":"tcp_server/(40)()(80)(faf0)((020405b4))"},"tcp_server":{"seq":2248953850},"src_ip":"140.82.113.4","dst_ip":"192.168.113.237","protocol":6,"src_port":443,"dst_port":59600,"event_start":1565200338.898700} -{"ip":{"version":4,"ttl":64,"id":"9d57"},"fingerprints":{"tls":"tls/(0303)(130213031301c02cc030009fcca9cca8ccaac02bc02f009ec024c028006bc023c0270067c00ac0140039c009c0130033009d009c003d003c0035002f00ff)((0000)(000b000403000102)(000a000c000a001d0017001e00190018)(0023)(0016)(0017)(000d0030002e040305030603080708080809080a080b080408050806040105010601030302030301020103020202040205020602)(002b0009080304030303020301)(002d00020101)(0033))"},"tls":{"client":{"version":"0303","random":"aef3e97a13e48c7e6d44784867553bacbc0842631dad9006d50a06f5ba3c676e","session_id":"6365ad637b1e10e9f6bc743364c16475775c66540d5de43080537c0d6d14cd5f","cipher_suites":"130213031301c02cc030009fcca9cca8ccaac02bc02f009ec024c028006bc023c0270067c00ac0140039c009c0130033009d009c003d003c0035002f00ff","compression_methods":"00","server_name":"github.com","session_ticket":"","features":"[\"0303\",\"130213031301c02cc030009fcca9cca8ccaac02bc02f009ec024c028006bc023c0270067c00ac0140039c009c0130033009d009c003d003c0035002f00ff\",[[\"0000\",\"000d00000a6769746875622e636f6d\"],[\"000b\",\"03000102\"],[\"000a\",\"000a001d0017001e00190018\"],[\"0023\",\"\"],[\"0016\",\"\"],[\"0017\",\"\"],[\"000d\",\"002e040305030603080708080809080a080b080408050806040105010601030302030301020103020202040205020602\"],[\"002b\",\"080304030303020301\"],[\"002d\",\"0101\"],[\"0033\",\"0024001d0020b5fd97c2cc66b2ea288634f5fcece8cc02d95129dc8164dfe683f4df858a4770\"]]]"}},"src_ip":"192.168.113.237","dst_ip":"140.82.113.4","protocol":6,"src_port":59600,"dst_port":443,"event_start":1565200338.899369} -{"ip":{"version":4,"ttl":128,"id":"a6d9"},"fingerprints":{"tls_server":"tls_server/(0303)(1301)((002b00020304)(0033))"},"tls":{"server":{"version":"0303","random":"4137e38ca29d0d964495160b5f5b8ba6a2d25b59f3c884162c0133b4a8390ea7","selected_cipher_suite":"1301","compression_method":"00"}},"src_ip":"140.82.113.4","dst_ip":"192.168.113.237","protocol":6,"src_port":443,"dst_port":59600,"event_start":1565200338.941311} -{"ip":{"version":4,"ttl":64,"id":"d830"},"dns":{"base64":"s6sBAAABAAAAAAAAB2dvZGFkZHkDY29tAAABAAE="},"src_ip":"192.168.113.237","dst_ip":"192.168.113.2","protocol":17,"src_port":35658,"dst_port":53,"event_start":1565200339.284116} -{"ip":{"version":4,"ttl":64,"id":"d831"},"dns":{"base64":"PikBAAABAAAAAAAAB2dvZGFkZHkDY29tAAAcAAE="},"src_ip":"192.168.113.237","dst_ip":"192.168.113.2","protocol":17,"src_port":34584,"dst_port":53,"event_start":1565200339.284260} -{"ip":{"version":4,"ttl":128,"id":"a72c"},"dns":{"base64":"s6uBgAABAAEADQAOB2dvZGFkZHkDY29tAAABAAHADAABAAEAAAAFAATQbcBGwBQAAgABAAAABQAUAW0MZ3RsZC1zZXJ2ZXJzA25ldADAFAACAAEAAAAFAAQBZMA7wBQAAgABAAAABQAEAWbAO8AUAAIAAQAAAAUABAFrwDvAFAACAAEAAAAFAAQBZ8A7wBQAAgABAAAABQAEAWPAO8AUAAIAAQAAAAUABAFlwDvAFAACAAEAAAAFAAQBacA7wBQAAgABAAAABQAEAWzAO8AUAAIAAQAAAAUABAFqwDvAFAACAAEAAAAFAAQBYcA7wBQAAgABAAAABQAEAWLAO8AUAAIAAQAAAAUABAFowDvA6QABAAEAAAAFAATABQYewPkAAQABAAAABQAEwCEOHsCZAAEAAQAAAAUABMAaXB7AWQABAAEAAAAFAATAH1AewKkAAQABAAAABQAEwAxeHsBpAAEAAQAAAAUABMAjMx7AiQABAAEAAAAFAATAKl0ewQkAAQABAAAABQAEwDZwHsC5AAEAAQAAAAUABMArrB7A2QABAAEAAAAFAATAME8ewHkAAQABAAAABQAEwDSyHsDJAAEAAQAAAAUABMApoh7AOQABAAEAAAAFAATAN1MewOkAHAABAAAABQAQIAEFA6g+AAAAAAAAAAIAMA=="},"src_ip":"192.168.113.2","dst_ip":"192.168.113.237","protocol":17,"src_port":53,"dst_port":35658,"event_start":1565200339.326158} -{"ip":{"version":4,"ttl":128,"id":"a72d"},"dns":{"base64":"PimBgAABAAAAAQAAB2dvZGFkZHkDY29tAAAcAAHADAAGAAEAAAAFACoEY25zMcAMA2RucwVqb21heANuZXQAeFi6AgAAASwAAAJYABJ1AAAADhA="},"src_ip":"192.168.113.2","dst_ip":"192.168.113.237","protocol":17,"src_port":53,"dst_port":34584,"event_start":1565200339.326612} -{"ip":{"version":4,"ttl":64,"id":"e0ae"},"fingerprints":{"tcp":"tcp/(40)()(40)(faf0)((020405b4)(04)(08)(01)(030307))"},"tcp":{"seq":974862080,"timestamp":{"ts_val":786846702}},"src_ip":"192.168.113.237","dst_ip":"208.109.192.70","protocol":6,"src_port":57146,"dst_port":443,"event_start":1565200339.326786} -{"ip":{"version":4,"ttl":128,"id":"a72e"},"fingerprints":{"tcp_server":"tcp_server/(40)()(80)(faf0)((020405b4))"},"tcp_server":{"seq":2839404527},"src_ip":"208.109.192.70","dst_ip":"192.168.113.237","protocol":6,"src_port":443,"dst_port":57146,"event_start":1565200339.414383} -{"ip":{"version":4,"ttl":64,"id":"e0b0"},"fingerprints":{"tls":"tls/(0303)(130213031301c02cc030009fcca9cca8ccaac02bc02f009ec024c028006bc023c0270067c00ac0140039c009c0130033009d009c003d003c0035002f00ff)((0000)(000b000403000102)(000a000c000a001d0017001e00190018)(0023)(0016)(0017)(000d0030002e040305030603080708080809080a080b080408050806040105010601030302030301020103020202040205020602)(002b0009080304030303020301)(002d00020101)(0033))"},"tls":{"client":{"version":"0303","random":"c06e58eb73695cea8c26e7a0010edd9dfc1c8b56b4e0c09d0c2900a54cb5f0c5","session_id":"af675f2dc757a5d4b6159e8949d312bbaa07d4d2d17b879b7748c5679cc3c026","cipher_suites":"130213031301c02cc030009fcca9cca8ccaac02bc02f009ec024c028006bc023c0270067c00ac0140039c009c0130033009d009c003d003c0035002f00ff","compression_methods":"00","server_name":"godaddy.com","session_ticket":"","features":"[\"0303\",\"130213031301c02cc030009fcca9cca8ccaac02bc02f009ec024c028006bc023c0270067c00ac0140039c009c0130033009d009c003d003c0035002f00ff\",[[\"0000\",\"000e00000b676f64616464792e636f6d\"],[\"000b\",\"03000102\"],[\"000a\",\"000a001d0017001e00190018\"],[\"0023\",\"\"],[\"0016\",\"\"],[\"0017\",\"\"],[\"000d\",\"002e040305030603080708080809080a080b080408050806040105010601030302030301020103020202040205020602\"],[\"002b\",\"080304030303020301\"],[\"002d\",\"0101\"],[\"0033\",\"0024001d002092c338c2276102f117484adea3cde74582a5d4436205205637c7bde6bbb0a967\"]]]"}},"src_ip":"192.168.113.237","dst_ip":"208.109.192.70","protocol":6,"src_port":57146,"dst_port":443,"event_start":1565200339.414630} -{"ip":{"version":4,"ttl":128,"id":"a732"},"fingerprints":{"tls_server":"tls_server/(0303)(cca8)((ff01)(0000)(000b000403000102)(0023)(0017))"},"tls":{"server":{"certs":[{"base64":"MIIFLDCCBBSgAwIBAgIIXhtVcggAOKYwDQYJKoZIhvcNAQELBQAwgbQxCzAJBgNVBAYTAlVTMRAwDgYDVQQIEwdBcml6b25hMRMwEQYDVQQHEwpTY290dHNkYWxlMRowGAYDVQQKExFHb0RhZGR5LmNvbSwgSW5jLjEtMCsGA1UECxMkaHR0cDovL2NlcnRzLmdvZGFkZHkuY29tL3JlcG9zaXRvcnkvMTMwMQYDVQQDEypHbyBEYWRkeSBTZWN1cmUgQ2VydGlmaWNhdGUgQXV0aG9yaXR5IC0gRzIwHhcNMTgwMjA3MTgxMDAxWhcNMjAwMjA3MTgxMDAxWjA7MSEwHwYDVQQLExhEb21haW4gQ29udHJvbCBWYWxpZGF0ZWQxFjAUBgNVBAMMDSouZ29kYWRkeS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQCz+x0UeLIgIzBP9FiQTAypkoBRh3J46xjS3WFK68HZ+rG4JRd3QtonEbVpzqJ2+eSd2ZIjfalcRTX1QyzDpbg7pMeFKooSlnIZuPekHtyzAjjBMQICfJy9IXJDKTUiHch6/rPtnM/lNZWqKinxq1kDLAMrg0l7/u6syj6DZaqtPUHcY259CgHqVQzqBp5lerMiYo/d8oE41d6/VvKVfzfCgHV3pUMdt1P97TbghRLN56TQPuh7fgLXpdLzxwTzrIyWpDAZREfL1eZkdWgN2uObsiARbDvE81pgsrxFJdBHZ1acI4OCzA3ypK2IfzTM8XnTedH4vZ4/zitHflV/KOBHAgMBAAGjggG4MIIBtDAMBgNVHRMBAf8EAjAAMB0GA1UdJQQWMBQGCCsGAQUFBwMBBggrBgEFBQcDAjAOBgNVHQ8BAf8EBAMCBaAwNwYDVR0fBDAwLjAsoCqgKIYmaHR0cDovL2NybC5nb2RhZGR5LmNvbS9nZGlnMnMxLTgwNi5jcmwwXQYDVR0gBFYwVDBIBgtghkgBhv1tAQcXATA5MDcGCCsGAQUFBwIBFitodHRwOi8vY2VydGlmaWNhdGVzLmdvZGFkZHkuY29tL3JlcG9zaXRvcnkvMAgGBmeBDAECATB2BggrBgEFBQcBAQRqMGgwJAYIKwYBBQUHMAGGGGh0dHA6Ly9vY3NwLmdvZGFkZHkuY29tLzBABggrBgEFBQcwAoY0aHR0cDovL2NlcnRpZmljYXRlcy5nb2RhZGR5LmNvbS9yZXBvc2l0b3J5L2dkaWcyLmNydDAfBgNVHSMEGDAWgBRAwr0njsw0gzCiM9f7bLPwtCyAzjAlBgNVHREEHjAcgg0qLmdvZGFkZHkuY29tggtnb2RhZGR5LmNvbTAdBgNVHQ4EFgQUaw2x1LFk8L8KgjaWi8Y8BGrIWAYwDQYJKoZIhvcNAQELBQADggEBAEyKqcvdOrH5m+flLshCsmx7aQveFmEasVfImhAV4ZFHpcBIygaOOi+sO7uDoH1ZtpatgD+vhYml7zLObOn+zO8pLxREd7gAMP6DcfxSauP1C/DOJC4QBUPnloSjS3lIaWaEVsktj6wGZzZm7Nya9dMlLgGZ3Zen5g2NlPJZpY/hsnMe7zJfIntQYaPgwDR8Mzb6YlcZF28w7fiss5GfjHP/V0QCVMOQ5QOV3Fu49y72qa5Vm2RJI7P/KJqOgEir9LgK0qF1tcFVRjp1MYEUnSKT14AJh2vJ+qWvOGy7HNIIC2p5ct3JItHUJaHrlNWBKmDD8S+xNe/rjBhFOUfrudM="},{"base64":"MIIE0DCCA7igAwIBAgIBBzANBgkqhkiG9w0BAQsFADCBgzELMAkGA1UEBhMCVVMxEDAOBgNVBAgTB0FyaXpvbmExEzARBgNVBAcTClNjb3R0c2RhbGUxGjAYBgNVBAoTEUdvRGFkZHkuY29tLCBJbmMuMTEwLwYDVQQDEyhHbyBEYWRkeSBSb290IENlcnRpZmljYXRlIEF1dGhvcml0eSAtIEcyMB4XDTExMDUwMzA3MDAwMFoXDTMxMDUwMzA3MDAwMFowgbQxCzAJBgNVBAYTAlVTMRAwDgYDVQQIEwdBcml6b25hMRMwEQYDVQQHEwpTY290dHNkYWxlMRowGAYDVQQKExFHb0RhZGR5LmNvbSwgSW5jLjEtMCsGA1UECxMkaHR0cDovL2NlcnRzLmdvZGFkZHkuY29tL3JlcG9zaXRvcnkvMTMwMQYDVQQDEypHbyBEYWRkeSBTZWN1cmUgQ2VydGlmaWNhdGUgQXV0aG9yaXR5IC0gRzIwggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQC54MsQ1K92vdSTYuswZLiBCGzDBNliF44v/z5lz4/OYuY8UhzaFkVLVat4a2ODYpDOD2lsmcgaFItMzEUz6ojcnqOvK/6AYZ15V8TPLvQ/MDxdR/yaFrzDN5ZBUY4RS1T4KL7QjL7wMDge87Am+GZHY23ecSZHjzhHU9FGHbTj3ADqRay9vHHZqm8A29vNMDp5T19MR/gd71vCxJ1gO7GyQ5HYpDNO6rPWJ0+tJYqlxvTV0KaudAVkV4i1RFXULSo6Pvi4vekyCgKUZMQWOlDxSq7neTOvDCAHf+jfBDnCaQJsY1L6d8EbyHSHyLmTGFBUNUtpTrw700kuH9zB0lL7AgMBAAGjggEaMIIBFjAPBgNVHRMBAf8EBTADAQH/MA4GA1UdDwEB/wQEAwIBBjAdBgNVHQ4EFgQUQMK9J47MNIMwojPX+2yz8LQsgM4wHwYDVR0jBBgwFoAUOpqFBxBnKLbv9r0FQW4gwZTaD94wNAYIKwYBBQUHAQEEKDAmMCQGCCsGAQUFBzABhhhodHRwOi8vb2NzcC5nb2RhZGR5LmNvbS8wNQYDVR0fBC4wLDAqoCigJoYkaHR0cDovL2NybC5nb2RhZGR5LmNvbS9nZHJvb3QtZzIuY3JsMEYGA1UdIAQ/MD0wOwYEVR0gADAzMDEGCCsGAQUFBwIBFiVodHRwczovL2NlcnRzLmdvZGFkZHkuY29tL3JlcG9zaXRvcnkvMA0GCSqGSIb3DQEBCwUAA4IBAQAIfmyTEMg4uJapkEv/oV9PBO9sPpyIBslQj6Zz91cxG7685C/b+LrTW+C05+Z5Yg4MotdqY3MxtfWoSKQ7CC2iXZDXtHwlTxFWMMS2RJ17LJ3lXubvDGGqv+QqG+6EnriDfcFDzkSnE3ANkR/0yBOtg2DZ2HKocyQetawiDsoXiWJYRBuriSUBAA/NxBti21G00w9RKpv0vHP8ds42pM3Z2Czqrpv1KrKQ0U11GIo/ikGQI31bS/6kA1ibRrLDYGCD+H1QQc7CoZDDu+8CL9IVVO5EFdkKrqeKM+2xLXY2JtwE65/3YR8V3Idv7kaWKK2hJn0KCacuBKONvPi8BDAB"}],"version":"0303","random":"bcfcc237eb9d6bd8d59ffddc6796819cbd19892ed6aacc9f124940812d57faa6","selected_cipher_suite":"cca8","compression_method":"00","session_ticket":""}},"reassembly_properties":{"reassembled":true},"src_ip":"208.109.192.70","dst_ip":"192.168.113.237","protocol":6,"src_port":443,"dst_port":57146,"event_start":1565200339.505244} -{"ip":{"version":4,"ttl":64,"id":"d868"},"dns":{"base64":"UugBAAABAAAAAAAAA3d3dwdnb2RhZGR5A2NvbQAAAQAB"},"src_ip":"192.168.113.237","dst_ip":"192.168.113.2","protocol":17,"src_port":35405,"dst_port":53,"event_start":1565200339.688659} -{"ip":{"version":4,"ttl":64,"id":"d869"},"dns":{"base64":"JK4BAAABAAAAAAAAA3d3dwdnb2RhZGR5A2NvbQAAHAAB"},"src_ip":"192.168.113.237","dst_ip":"192.168.113.2","protocol":17,"src_port":39616,"dst_port":53,"event_start":1565200339.688840} -{"ip":{"version":4,"ttl":128,"id":"a73b"},"dns":{"base64":"JK6BgAABAAQADQAEA3d3dwdnb2RhZGR5A2NvbQAAHAABwAwABQABAAAABQAiCHd3dy1pcHY2B2dvZGFkZHkDY29tB2VkZ2VrZXkDbmV0AMAtAAUAAQAAAAUAGAVlODgwNARkc2N4CmFrYW1haWVkZ2XASsBbABwAAQAAAAUAECYAFB4AAgGvAAAAAAAAImTAWwAcAAEAAAAFABAmABQeAAIBhAAAAAAAACJkwGYAAgABAAAABQAKB2ExMS0xOTLAZsBmAAIAAQAAAAUACgdhMjgtMTkywGbAZgACAAEAAAAFAAoHbnMzLTE5NMBmwGYAAgABAAAABQAKB2ExMy0xOTLAZsBmAAIAAQAAAAUACgduczUtMTk0wGbAZgACAAEAAAAFAAkGYTEtMTkywGbAZgACAAEAAAAFAAoHYTEyLTE5MsBmwGYAAgABAAAABQAHBGxhcjLAZsBmAAIAAQAAAAUABgNsYTHAZsBmAAIAAQAAAAUABgNsYTPAZsBmAAIAAQAAAAUACgduczctMTk0wGbAZgACAAEAAAAFAAoHbnM2LTE5NMBmwGYAAgABAAAABQAJBmE2LTE5MsBmwWMAAQABAAAABQAEuBqhwMF1AAEAAQAAAAUABF9lJMDBUAABAAEAAAAFAAQCECjAwSUAAQABAAAABQAEwWxYAA=="},"src_ip":"192.168.113.2","dst_ip":"192.168.113.237","protocol":17,"src_port":53,"dst_port":39616,"event_start":1565200339.856504} -{"ip":{"version":4,"ttl":128,"id":"a73c"},"dns":{"base64":"UuiBgAABAAMADQAKA3d3dwdnb2RhZGR5A2NvbQAAAQABwAwABQABAAAABQAiCHd3dy1pcHY2B2dvZGFkZHkDY29tB2VkZ2VrZXkDbmV0AMAtAAUAAQAAAAUAGAVlODgwNARkc2N4CmFrYW1haWVkZ2XASsBbAAEAAQAAAAUABLgy/NnASgACAAEAAAAFABEBZQxndGxkLXNlcnZlcnPASsBKAAIAAQAAAAUABAFpwJHASgACAAEAAAAFAAQBasCRwEoAAgABAAAABQAEAWTAkcBKAAIAAQAAAAUABAFjwJHASgACAAEAAAAFAAQBaMCRwEoAAgABAAAABQAEAWvAkcBKAAIAAQAAAAUABAFmwJHASgACAAEAAAAFAAQBYsCRwEoAAgABAAAABQAEAWHAkcBKAAIAAQAAAAUABAFnwJHASgACAAEAAAAFAAQBbMCRwEoAAgABAAAABQAEAW3AkcEsAAEAAQAAAAUABMAFBh7BHAABAAEAAAAFAATAIQ4ewNwAAQABAAAABQAEwBpcHsDMAAEAAQAAAAUABMAfUB7AjwABAAEAAAAFAATADF4ewQwAAQABAAAABQAEwCMzHsE8AAEAAQAAAAUABMAqXR7A7AABAAEAAAAFAATANnAewKwAAQABAAAABQAEwCusHsC8AAEAAQAAAAUABMAwTx4="},"src_ip":"192.168.113.2","dst_ip":"192.168.113.237","protocol":17,"src_port":53,"dst_port":35405,"event_start":1565200340.185373} -{"ip":{"version":4,"ttl":64,"id":"1460"},"fingerprints":{"tcp":"tcp/(40)()(40)(faf0)((020405b4)(04)(08)(01)(030307))"},"tcp":{"seq":2379468005,"timestamp":{"ts_val":1967378203}},"src_ip":"192.168.113.237","dst_ip":"184.50.252.217","protocol":6,"src_port":54678,"dst_port":443,"event_start":1565200340.185836} -{"ip":{"version":4,"ttl":128,"id":"a73d"},"fingerprints":{"tcp_server":"tcp_server/(40)()(80)(faf0)((020405b4))"},"tcp_server":{"seq":2493890507},"src_ip":"184.50.252.217","dst_ip":"192.168.113.237","protocol":6,"src_port":443,"dst_port":54678,"event_start":1565200340.222709} -{"ip":{"version":4,"ttl":64,"id":"1462"},"fingerprints":{"tls":"tls/(0303)(130213031301c02cc030009fcca9cca8ccaac02bc02f009ec024c028006bc023c0270067c00ac0140039c009c0130033009d009c003d003c0035002f00ff)((0000)(000b000403000102)(000a000c000a001d0017001e00190018)(0023)(0016)(0017)(000d0030002e040305030603080708080809080a080b080408050806040105010601030302030301020103020202040205020602)(002b0009080304030303020301)(002d00020101)(0033))"},"tls":{"client":{"version":"0303","random":"2339e0adb854018853d0e6e3d2a6bee5848552b9fe8864dae95f22fd5128935c","session_id":"26b9d0809ae1a4369f26659fa135de513ba60773bf949e1e306b2086ef51177a","cipher_suites":"130213031301c02cc030009fcca9cca8ccaac02bc02f009ec024c028006bc023c0270067c00ac0140039c009c0130033009d009c003d003c0035002f00ff","compression_methods":"00","server_name":"www.godaddy.com","session_ticket":"","features":"[\"0303\",\"130213031301c02cc030009fcca9cca8ccaac02bc02f009ec024c028006bc023c0270067c00ac0140039c009c0130033009d009c003d003c0035002f00ff\",[[\"0000\",\"001200000f7777772e676f64616464792e636f6d\"],[\"000b\",\"03000102\"],[\"000a\",\"000a001d0017001e00190018\"],[\"0023\",\"\"],[\"0016\",\"\"],[\"0017\",\"\"],[\"000d\",\"002e040305030603080708080809080a080b080408050806040105010601030302030301020103020202040205020602\"],[\"002b\",\"080304030303020301\"],[\"002d\",\"0101\"],[\"0033\",\"0024001d0020958aa938c22d809229e91cbf766f42a063f7f0c1760b752492a40412158ed00b\"]]]"}},"src_ip":"192.168.113.237","dst_ip":"184.50.252.217","protocol":6,"src_port":54678,"dst_port":443,"event_start":1565200340.222942} -{"ip":{"version":4,"ttl":128,"id":"a741"},"fingerprints":{"tls_server":"tls_server/(0303)(c030)((ff01)(0000)(000b000403000102)(0023))"},"tls":{"server":{"certs":[{"base64":"MIIHOzCCBiOgAwIBAgIJANWT1NXH0e1KMA0GCSqGSIb3DQEBCwUAMIG0MQswCQYDVQQGEwJVUzEQMA4GA1UECBMHQXJpem9uYTETMBEGA1UEBxMKU2NvdHRzZGFsZTEaMBgGA1UEChMRR29EYWRkeS5jb20sIEluYy4xLTArBgNVBAsTJGh0dHA6Ly9jZXJ0cy5nb2RhZGR5LmNvbS9yZXBvc2l0b3J5LzEzMDEGA1UEAxMqR28gRGFkZHkgU2VjdXJlIENlcnRpZmljYXRlIEF1dGhvcml0eSAtIEcyMB4XDTE5MDIxMjIyNTAzN1oXDTIxMDIxMjIyNTAzN1owgcYxEzARBgsrBgEEAYI3PAIBAxMCVVMxGTAXBgsrBgEEAYI3PAIBAhMIRGVsYXdhcmUxHTAbBgNVBA8TFFByaXZhdGUgT3JnYW5pemF0aW9uMRAwDgYDVQQFEwc1NTEwOTIyMQswCQYDVQQGEwJVUzEQMA4GA1UECBMHQXJpem9uYTETMBEGA1UEBxMKU2NvdHRzZGFsZTEVMBMGA1UEChMMR29EYWRkeSBJTkMuMRgwFgYDVQQDEw93d3cuZ29kYWRkeS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQC9zwL3ngi1HeLwA/+0EH8fo7lBinxeuQ/qnk0A4z9Ch5I/Tb6VRJa/AnTIG2K2hgbMNVgMKzhUFLhEqmvPsUbHYRXz3PEshysY9HVqGqLFi9pwcYACX64fltYQHoA5os25X7TWbvGBxPKzAmHcrMGEaEnvffQU4XQf3iklqbs1ntoiZfioKK/dUV1T2TsnGdIXpYr8jV8Hm7svUdHc3OLm+9+w5n3aZeo8QHOu3bYGSYDGZwV5Jellpw9WAmwmm4sGFj5pZPecUMAShsUsPfz1WMWLLLpoh9hAbEeMNbuQKbyolXoyJz3x0fA3RBnPWrfkK3kIC7A07nIZLvZ7ZKJPAgMBAAGjggM6MIIDNjAMBgNVHRMBAf8EAjAAMB0GA1UdJQQWMBQGCCsGAQUFBwMBBggrBgEFBQcDAjAOBgNVHQ8BAf8EBAMCBaAwNgYDVR0fBC8wLTAroCmgJ4YlaHR0cDovL2NybC5nb2RhZGR5LmNvbS9nZGlnMnMzLTE0LmNybDBcBgNVHSAEVTBTMEgGC2CGSAGG/W0BBxcDMDkwNwYIKwYBBQUHAgEWK2h0dHA6Ly9jZXJ0aWZpY2F0ZXMuZ29kYWRkeS5jb20vcmVwb3NpdG9yeS8wBwYFZ4EMAQEwdgYIKwYBBQUHAQEEajBoMCQGCCsGAQUFBzABhhhodHRwOi8vb2NzcC5nb2RhZGR5LmNvbS8wQAYIKwYBBQUHMAKGNGh0dHA6Ly9jZXJ0aWZpY2F0ZXMuZ29kYWRkeS5jb20vcmVwb3NpdG9yeS9nZGlnMi5jcnQwHwYDVR0jBBgwFoAUQMK9J47MNIMwojPX+2yz8LQsgM4wJwYDVR0RBCAwHoIPd3d3LmdvZGFkZHkuY29tggtnb2RhZGR5LmNvbTAdBgNVHQ4EFgQU5kzQPyBNw9M5tOpWYGYNuhlhjT4wggF+BgorBgEEAdZ5AgQCBIIBbgSCAWoBaAB2AKS5CZC0GFgUh7sTosxncAo8NZgE+RvfuON3zQ7IDdwQAAABaOPnrYsAAAQDAEcwRQIhAL07mGyJ020pWHfRxQdzN40x7lvp11qQGxJnJGBNW+dtAiBbpOBWhkybElubsl+jJm4smddfmuTAolrUTmsnAj6UYwB2AO5Lvbd1zmC64UJpH6vhnmajD35fsHLYgwDEe4l6qP3LAAABaOPnsL0AAAQDAEcwRQIhAK7oygdKktE5ix4hL1y6LnlFcjBMW/n91XrSvrmRwhI3AiBM0FrcPSkTNsKoqUGFV5yrDzSdFlo0pzW9N7C0WCFUHAB2AESUZS6w7s6vxEAH2Kj+KMDa5oK+2MsxtT/TM5a1toGoAAABaOPnswYAAAQDAEcwRQIgcAsViDwtRhQh0BYNN6DbnmQd/UAs5wTdbAo5xiZXkhQCIQCQ9alomPuVH7ogkPuFnwfD3xI+z0aEHU71jx1CtgDOGjANBgkqhkiG9w0BAQsFAAOCAQEAi3wPs5nE9ki835LsQdZrBy9X4mO13SdJ2qY+IYwArRmnN8IcX4Xq8FeUbYib3FsjwCKR4V3V1pIPQX6lve8OAaXRhrtLubfUwCEgnQQUaZ/VvwZvHEhoBLji/h87MsblhmxtQ6t3wb9l11+s//Vc7w7ddjWXQ4kYIUENk18WYzGpPjxykrsO3KFnE/nydqbqihqpJ15fMP8buReI45IMCr6RlARl7w2HPTQium4CNvYbYSOGY8jsD29hukN15pqGqwPZ/z/ORTcMXYbVajDhtdDjuaAFK6Nm7dpxaccjWKRn+Rz3S8TaBBmV+A89PxusOnLTBJg8hf/xTPvodV122g=="},{"base64":"MIIE0DCCA7igAwIBAgIBBzANBgkqhkiG9w0BAQsFADCBgzELMAkGA1UEBhMCVVMxEDAOBgNVBAgTB0FyaXpvbmExEzARBgNVBAcTClNjb3R0c2RhbGUxGjAYBgNVBAoTEUdvRGFkZHkuY29tLCBJbmMuMTEwLwYDVQQDEyhHbyBEYWRkeSBSb290IENlcnRpZmljYXRlIEF1dGhvcml0eSAtIEcyMB4XDTExMDUwMzA3MDAwMFoXDTMxMDUwMzA3MDAwMFowgbQxCzAJBgNVBAYTAlVTMRAwDgYDVQQIEwdBcml6b25hMRMwEQYDVQQHEwpTY290dHNkYWxlMRowGAYDVQQKExFHb0RhZGR5LmNvbSwgSW5jLjEtMCsGA1UECxMkaHR0cDovL2NlcnRzLmdvZGFkZHkuY29tL3JlcG9zaXRvcnkvMTMwMQYDVQQDEypHbyBEYWRkeSBTZWN1cmUgQ2VydGlmaWNhdGUgQXV0aG9yaXR5IC0gRzIwggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQC54MsQ1K92vdSTYuswZLiBCGzDBNliF44v/z5lz4/OYuY8UhzaFkVLVat4a2ODYpDOD2lsmcgaFItMzEUz6ojcnqOvK/6AYZ15V8TPLvQ/MDxdR/yaFrzDN5ZBUY4RS1T4KL7QjL7wMDge87Am+GZHY23ecSZHjzhHU9FGHbTj3ADqRay9vHHZqm8A29vNMDp5T19MR/gd71vCxJ1gO7GyQ5HYpDNO6rPWJ0+tJYqlxvTV0KaudAVkV4i1RFXULSo6Pvi4vekyCgKUZMQWOlDxSq7neTOvDCAHf+jfBDnCaQJsY1L6d8EbyHSHyLmTGFBUNUtpTrw700kuH9zB0lL7AgMBAAGjggEaMIIBFjAPBgNVHRMBAf8EBTADAQH/MA4GA1UdDwEB/wQEAwIBBjAdBgNVHQ4EFgQUQMK9J47MNIMwojPX+2yz8LQsgM4wHwYDVR0jBBgwFoAUOpqFBxBnKLbv9r0FQW4gwZTaD94wNAYIKwYBBQUHAQEEKDAmMCQGCCsGAQUFBzABhhhodHRwOi8vb2NzcC5nb2RhZGR5LmNvbS8wNQYDVR0fBC4wLDAqoCigJoYkaHR0cDovL2NybC5nb2RhZGR5LmNvbS9nZHJvb3QtZzIuY3JsMEYGA1UdIAQ/MD0wOwYEVR0gADAzMDEGCCsGAQUFBwIBFiVodHRwczovL2NlcnRzLmdvZGFkZHkuY29tL3JlcG9zaXRvcnkvMA0GCSqGSIb3DQEBCwUAA4IBAQAIfmyTEMg4uJapkEv/oV9PBO9sPpyIBslQj6Zz91cxG7685C/b+LrTW+C05+Z5Yg4MotdqY3MxtfWoSKQ7CC2iXZDXtHwlTxFWMMS2RJ17LJ3lXubvDGGqv+QqG+6EnriDfcFDzkSnE3ANkR/0yBOtg2DZ2HKocyQetawiDsoXiWJYRBuriSUBAA/NxBti21G00w9RKpv0vHP8ds42pM3Z2Czqrpv1KrKQ0U11GIo/ikGQI31bS/6kA1ibRrLDYGCD+H1QQc7CoZDDu+8CL9IVVO5EFdkKrqeKM+2xLXY2JtwE65/3YR8V3Idv7kaWKK2hJn0KCacuBKONvPi8BDAB"}],"version":"0303","random":"a8f066fa82f9d8c6e0bc9efa5defce2468a114ab9b5cc9cbfed19d0ca89edbe5","selected_cipher_suite":"c030","compression_method":"00","session_ticket":""}},"reassembly_properties":{"reassembled":true},"src_ip":"184.50.252.217","dst_ip":"192.168.113.237","protocol":6,"src_port":443,"dst_port":54678,"event_start":1565200340.268037} -{"ip":{"version":4,"ttl":64,"id":"d8d9"},"dns":{"base64":"UvYBAAABAAAAAAAABnR1bWJscgNjb20AAAEAAQ=="},"src_ip":"192.168.113.237","dst_ip":"192.168.113.2","protocol":17,"src_port":38828,"dst_port":53,"event_start":1565200340.902209} -{"ip":{"version":4,"ttl":64,"id":"d8da"},"dns":{"base64":"EKgBAAABAAAAAAAABnR1bWJscgNjb20AABwAAQ=="},"src_ip":"192.168.113.237","dst_ip":"192.168.113.2","protocol":17,"src_port":36002,"dst_port":53,"event_start":1565200340.902368} -{"ip":{"version":4,"ttl":128,"id":"a89c"},"dns":{"base64":"UvaBgAABAAMADQANBnR1bWJscgNjb20AAAEAAcAMAAEAAQAAAAUABEIGIR/ADAABAAEAAAAFAARCBiGfwAwAAQABAAAABQAEQgYgH8ATAAIAAQAAAAUAFAFhDGd0bGQtc2VydmVycwNuZXQAwBMAAgABAAAABQAEAWPAWsATAAIAAQAAAAUABAFiwFrAEwACAAEAAAAFAAQBZ8BawBMAAgABAAAABQAEAWzAWsATAAIAAQAAAAUABAFlwFrAEwACAAEAAAAFAAQBZsBawBMAAgABAAAABQAEAWvAWsATAAIAAQAAAAUABAFtwFrAEwACAAEAAAAFAAQBasBawBMAAgABAAAABQAEAWjAWsATAAIAAQAAAAUABAFkwFrAEwACAAEAAAAFAAQBacBawFgAAQABAAAABQAEwAUGHsCIAAEAAQAAAAUABMAhDh7AeAABAAEAAAAFAATAGlwewRgAAQABAAAABQAEwB9QHsC4AAEAAQAAAAUABMAMXh7AyAABAAEAAAAFAATAIzMewJgAAQABAAAABQAEwCpdHsEIAAEAAQAAAAUABMA2cB7BKAABAAEAAAAFAATAK6wewPgAAQABAAAABQAEwDBPHsDYAAEAAQAAAAUABMA0sh7AqAABAAEAAAAFAATAKaIewOgAAQABAAAABQAEwDdTHg=="},"src_ip":"192.168.113.2","dst_ip":"192.168.113.237","protocol":17,"src_port":53,"dst_port":38828,"event_start":1565200340.939499} -{"ip":{"version":4,"ttl":128,"id":"a89d"},"dns":{"base64":"EKiBgAABAAAAAQAABnR1bWJscgNjb20AABwAAcAMAAYAAQAAAAUAQQ1oaWRkZW4tbWFzdGVyBXlhaG9vwBMKaG9zdG1hc3Rlcgl5YWhvby1pbmPAE3hYufwAAHCAAAAcIAAJOoAAAAJY"},"src_ip":"192.168.113.2","dst_ip":"192.168.113.237","protocol":17,"src_port":53,"dst_port":36002,"event_start":1565200340.939528} -{"ip":{"version":4,"ttl":64,"id":"7e1e"},"fingerprints":{"tcp":"tcp/(40)()(40)(faf0)((020405b4)(04)(08)(01)(030307))"},"tcp":{"seq":392931167,"timestamp":{"ts_val":4045860940}},"src_ip":"192.168.113.237","dst_ip":"66.6.33.31","protocol":6,"src_port":36216,"dst_port":443,"event_start":1565200340.940202} -{"ip":{"version":4,"ttl":128,"id":"a89e"},"fingerprints":{"tcp_server":"tcp_server/(40)()(80)(faf0)((020405b4))"},"tcp_server":{"seq":2804185541},"src_ip":"66.6.33.31","dst_ip":"192.168.113.237","protocol":6,"src_port":443,"dst_port":36216,"event_start":1565200340.998341} -{"ip":{"version":4,"ttl":64,"id":"7e20"},"fingerprints":{"tls":"tls/(0303)(130213031301c02cc030009fcca9cca8ccaac02bc02f009ec024c028006bc023c0270067c00ac0140039c009c0130033009d009c003d003c0035002f00ff)((0000)(000b000403000102)(000a000c000a001d0017001e00190018)(0023)(0016)(0017)(000d0030002e040305030603080708080809080a080b080408050806040105010601030302030301020103020202040205020602)(002b0009080304030303020301)(002d00020101)(0033))"},"tls":{"client":{"version":"0303","random":"f3e36941f3b9de78888f757dcc4abe52b505e1e0d4969d30918666bfe72db22d","session_id":"c3f977b5ed385cd086530db06b2ac635a6581e0a678dac389f504e143398a04e","cipher_suites":"130213031301c02cc030009fcca9cca8ccaac02bc02f009ec024c028006bc023c0270067c00ac0140039c009c0130033009d009c003d003c0035002f00ff","compression_methods":"00","server_name":"tumblr.com","session_ticket":"","features":"[\"0303\",\"130213031301c02cc030009fcca9cca8ccaac02bc02f009ec024c028006bc023c0270067c00ac0140039c009c0130033009d009c003d003c0035002f00ff\",[[\"0000\",\"000d00000a74756d626c722e636f6d\"],[\"000b\",\"03000102\"],[\"000a\",\"000a001d0017001e00190018\"],[\"0023\",\"\"],[\"0016\",\"\"],[\"0017\",\"\"],[\"000d\",\"002e040305030603080708080809080a080b080408050806040105010601030302030301020103020202040205020602\"],[\"002b\",\"080304030303020301\"],[\"002d\",\"0101\"],[\"0033\",\"0024001d0020f611f1395aa86d5873ac4cabb4d73dfab00632a51acd49071910b276a71e1645\"]]]"}},"src_ip":"192.168.113.237","dst_ip":"66.6.33.31","protocol":6,"src_port":36216,"dst_port":443,"event_start":1565200340.998738} -{"ip":{"version":4,"ttl":128,"id":"a8a2"},"fingerprints":{"tls_server":"tls_server/(0303)(cca8)((ff01)(0000)(000b000403000102)(0023)(0017))"},"tls":{"server":{"certs":[{"base64":"MIIGqTCCBZGgAwIBAgIQASwszwgUXWUqe7Pw5GbUaDANBgkqhkiG9w0BAQsFADBwMQswCQYDVQQGEwJVUzEVMBMGA1UEChMMRGlnaUNlcnQgSW5jMRkwFwYDVQQLExB3d3cuZGlnaWNlcnQuY29tMS8wLQYDVQQDEyZEaWdpQ2VydCBTSEEyIEhpZ2ggQXNzdXJhbmNlIFNlcnZlciBDQTAeFw0xOTA1MDkwMDAwMDBaFw0xOTExMDUxMjAwMDBaMGIxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRIwEAYDVQQHEwlTdW5ueXZhbGUxETAPBgNVBAoTCE9hdGggSW5jMRcwFQYDVQQDEw53d3cudHVtYmxyLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALSZIjnZx6K5GBdsUXl410/iEsj83gSu4XIHFdKVLmrsbhmc1C/Do2iY1leaRgyA5ERN4NNdAtB7TWr83d9qKFEP49X7lpLZdhineOXKmTVIabB3izePgTnulW7UJhduuMLS1GNsMRy0goc7ZKLMqdqRSXflNtf+SLMjYEh9RUysDpf3aayAFOS785nSAAyGXjMa+LeXQ59wBdXHqgcLPPpQo5RMFHSHwiA8Ls9TbM1Ni7vNOSQG7kndqbHAr05EoU3ICTqcuTJf4drUNx1e/FWwQL/6BOqSa9EntDqtHrTfwvAsTuX/M/TyEQ41TAKwLGve6NHSd1bjz40OnMDhu2MCAwEAAaOCA0swggNHMB8GA1UdIwQYMBaAFFFo/5CvAgd1PMzZZWRiohK4WXI7MB0GA1UdDgQWBBQVXsvCCVK7H1Meob7yyrm8GkI/CTB0BgNVHREEbTBrgg53d3cudHVtYmxyLmNvbYIOYXBpLnR1bWJsci5jb22CCnR1bWJsci5jb22CFGFwaS1odHRwMi50dW1ibHIuY29tghR3d3ctaHR0cDIudHVtYmxyLmNvbYIRc2VjdXJlLnR1bWJsci5jb20wDgYDVR0PAQH/BAQDAgWgMB0GA1UdJQQWMBQGCCsGAQUFBwMBBggrBgEFBQcDAjB1BgNVHR8EbjBsMDSgMqAwhi5odHRwOi8vY3JsMy5kaWdpY2VydC5jb20vc2hhMi1oYS1zZXJ2ZXItZzYuY3JsMDSgMqAwhi5odHRwOi8vY3JsNC5kaWdpY2VydC5jb20vc2hhMi1oYS1zZXJ2ZXItZzYuY3JsMEwGA1UdIARFMEMwNwYJYIZIAYb9bAEBMCowKAYIKwYBBQUHAgEWHGh0dHBzOi8vd3d3LmRpZ2ljZXJ0LmNvbS9DUFMwCAYGZ4EMAQICMIGDBggrBgEFBQcBAQR3MHUwJAYIKwYBBQUHMAGGGGh0dHA6Ly9vY3NwLmRpZ2ljZXJ0LmNvbTBNBggrBgEFBQcwAoZBaHR0cDovL2NhY2VydHMuZGlnaWNlcnQuY29tL0RpZ2lDZXJ0U0hBMkhpZ2hBc3N1cmFuY2VTZXJ2ZXJDQS5jcnQwDAYDVR0TAQH/BAIwADCCAQUGCisGAQQB1nkCBAIEgfYEgfMA8QB2ALvZ37wfinG1k5Qjl6qSe0c4V5UKq1LoGpCWZDaOHtGFAAABap313p0AAAQDAEcwRQIhANVofPFX5mQKVeRPr3rhJpf+JqY1DxDjR3LFOhTFPzaOAiA70OhjmYMCvYTP0f2PEv32f2G9O+tkNnprKd4NWOZMTwB3AHR+2oMxrTMQkSGcziVPQnDCv/1eQiAIxjc1eeYQe8xWAAABap313jkAAAQDAEgwRgIhAK3a3PtW8P12o8iv4n6MmPua4eK+iG2i1w4kucaYCFo+AiEAh2jZ1qxBSgCUn1DpTfzluyQvyRCbegb8E53FP6pFOcswDQYJKoZIhvcNAQELBQADggEBAE76XgXofG7wP8KIsddTu/2OIO3/9pKNrxdiarH6ijCl7A9ic9nKeNOjO9RIrhdmzPscailD7LVfTh4c/v68SAvJsy8nnnMzCG5mjar9tPsdowWyEvz1GyvflGQxez4NTz3mUkh9sSOyFxZs+DavihCsWvfBXPcrmX115hzd3LiDMvUliOKs3YHqzyvAdk8HkkmPEE9rF/xrzrHMeUwSkXVvG0T92nXJq/2cVUWzBNs9QuqWj3LsbX+lyqi3hJ9vRdQfM8g8OxrKMAoORrBiKdNCamlJ4AtETwuAFtUeqQUcwsPeR+TcJh/X7eWOSNvbCPxYn6JwGa/puKUTA6u/qmI="},{"base64":"MIIEsTCCA5mgAwIBAgIQBOHnpNxc8vNtwCtCuF0VnzANBgkqhkiG9w0BAQsFADBsMQswCQYDVQQGEwJVUzEVMBMGA1UEChMMRGlnaUNlcnQgSW5jMRkwFwYDVQQLExB3d3cuZGlnaWNlcnQuY29tMSswKQYDVQQDEyJEaWdpQ2VydCBIaWdoIEFzc3VyYW5jZSBFViBSb290IENBMB4XDTEzMTAyMjEyMDAwMFoXDTI4MTAyMjEyMDAwMFowcDELMAkGA1UEBhMCVVMxFTATBgNVBAoTDERpZ2lDZXJ0IEluYzEZMBcGA1UECxMQd3d3LmRpZ2ljZXJ0LmNvbTEvMC0GA1UEAxMmRGlnaUNlcnQgU0hBMiBIaWdoIEFzc3VyYW5jZSBTZXJ2ZXIgQ0EwggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQC24C/CJAbIbQRf1+8KZAayfSImZRauQkCbztyfn3YHPsMwVYcZuU+UDlqUH1VWtMICKq/QmO4LQNfE0DtyyBSe75CxEamu0si4QzrZCwvV1ZX1QK/IHe1NnF9Xt4ZQaJn1itrSxwUfqJfJ3KSxgoQtxq2lnMcZgqaFD15EWCo3j/018QsIJzJa9buLnqS9UdAn4t07QjOjBSjEuyjMmqwrIw14xnvmXnG3Sj4I+4G3FhahnSMSTeXXkgisdaScus0Xsh5ENWV/UyU50RwKmmMbGZJ0aAo3wsJSSMs5WqK24V3B3aAguCGikyZvFEohQcftbZvySC/zA/WiaJJTL17jAgMBAAGjggFJMIIBRTASBgNVHRMBAf8ECDAGAQH/AgEAMA4GA1UdDwEB/wQEAwIBhjAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwNAYIKwYBBQUHAQEEKDAmMCQGCCsGAQUFBzABhhhodHRwOi8vb2NzcC5kaWdpY2VydC5jb20wSwYDVR0fBEQwQjBAoD6gPIY6aHR0cDovL2NybDQuZGlnaWNlcnQuY29tL0RpZ2lDZXJ0SGlnaEFzc3VyYW5jZUVWUm9vdENBLmNybDA9BgNVHSAENjA0MDIGBFUdIAAwKjAoBggrBgEFBQcCARYcaHR0cHM6Ly93d3cuZGlnaWNlcnQuY29tL0NQUzAdBgNVHQ4EFgQUUWj/kK8CB3U8zNllZGKiErhZcjswHwYDVR0jBBgwFoAUsT7DaQP4v0cB1JgmGggC72NkK8MwDQYJKoZIhvcNAQELBQADggEBABiKlYkD5m3fXPwdaOpKj4PWUS+Na0QWnqxj9dJubISZi6qBcYRb7TROsLd5kinMLYBq8I4g4Xmk/gNHE+r1hspZcX30BJZr01lYPf7TMSVcGDiEo+afgv2MW5gxTs14nhr9hctJqvIni5ly/D6q1UEL2tU2ob8cbkdJf17ZSHwD2f2LSaCYJkJA69aSEaRkCldUxPUd1gJea6zuxICaEnL6VpPX/78whQYwvwt/Tv9XBZ0k7YXDK/umdaisLRbvfXknsuvCnQsH6qqF0wGjIChBWUMo0oHjqvbsezt3tkBigAVBRQHvFwY+3sAzm2fTYS5yh+Rp/BIAV0AecPUeybQ="}],"version":"0303","random":"ff0604f56f291dfe9f169a4ad21326e402de094a82de57577d15c03b562f76ab","selected_cipher_suite":"cca8","compression_method":"00","session_ticket":""}},"reassembly_properties":{"reassembled":true},"src_ip":"66.6.33.31","dst_ip":"192.168.113.237","protocol":6,"src_port":443,"dst_port":36216,"event_start":1565200341.063940} -{"ip":{"version":4,"ttl":64,"id":"d8e7"},"dns":{"base64":"3TUBAAABAAAAAAAAA3d3dwZ0dW1ibHIDY29tAAABAAE="},"src_ip":"192.168.113.237","dst_ip":"192.168.113.2","protocol":17,"src_port":44906,"dst_port":53,"event_start":1565200341.199091} -{"ip":{"version":4,"ttl":64,"id":"d8e8"},"dns":{"base64":"c3kBAAABAAAAAAAAA3d3dwZ0dW1ibHIDY29tAAAcAAE="},"src_ip":"192.168.113.237","dst_ip":"192.168.113.2","protocol":17,"src_port":34581,"dst_port":53,"event_start":1565200341.199256} -{"ip":{"version":4,"ttl":128,"id":"a8a9"},"dns":{"base64":"3TWBgAABAAMADQALA3d3dwZ0dW1ibHIDY29tAAABAAHADAAFAAEAAAAFABsFZWRnZTIEZ3ljcwFiCHlhaG9vZG5zA25ldADALAABAAEAAAAFAARFk1wOwCwAAQABAAAABQAERZNcDcBCAAIAAQAAAAUAEQFiDGd0bGQtc2VydmVyc8BCwEIAAgABAAAABQAEAWHAdcBCAAIAAQAAAAUABAFpwHXAQgACAAEAAAAFAAQBaMB1wEIAAgABAAAABQAEAWXAdcBCAAIAAQAAAAUABAFrwHXAQgACAAEAAAAFAAQBasB1wEIAAgABAAAABQAEAW3AdcBCAAIAAQAAAAUABAFkwHXAQgACAAEAAAAFAAQBZ8B1wEIAAgABAAAABQAEAWzAdcBCAAIAAQAAAAUABAFjwHXAQgACAAEAAAAFAAQBZsB1wJAAAQABAAAABQAEwAUGHsBzAAEAAQAAAAUABMAhDh7BMAABAAEAAAAFAATAGlwewQAAAQABAAAABQAEwB9QHsDAAAEAAQAAAAUABMAMXh7BQAABAAEAAAAFAATAIzMewRAAAQABAAAABQAEwCpdHsCwAAEAAQAAAAUABMA2cB7AoAABAAEAAAAFAATAK6wewOAAAQABAAAABQAEwDBPHsDQAAEAAQAAAAUABMA0sh4="},"src_ip":"192.168.113.2","dst_ip":"192.168.113.237","protocol":17,"src_port":53,"dst_port":44906,"event_start":1565200341.229494} -{"ip":{"version":4,"ttl":128,"id":"a8aa"},"dns":{"base64":"c3mBgAABAAMADQAKA3d3dwZ0dW1ibHIDY29tAAAcAAHADAAFAAEAAAAFABsFZWRnZTIEZ3ljcwFiCHlhaG9vZG5zA25ldADALAAcAAEAAAAFABAgAUmYABQIAAAAAAAAACAAwCwAHAABAAAABQAQIAFJmAAUCAAAAAAAAABAAMBCAAIAAQAAAAUAEQFqDGd0bGQtc2VydmVyc8BCwEIAAgABAAAABQAEAWvAjcBCAAIAAQAAAAUABAFtwI3AQgACAAEAAAAFAAQBbMCNwEIAAgABAAAABQAEAWPAjcBCAAIAAQAAAAUABAFiwI3AQgACAAEAAAAFAAQBYcCNwEIAAgABAAAABQAEAWbAjcBCAAIAAQAAAAUABAFkwI3AQgACAAEAAAAFAAQBacCNwEIAAgABAAAABQAEAWjAjcBCAAIAAQAAAAUABAFnwI3AQgACAAEAAAAFAAQBZcCNwPgAAQABAAAABQAEwAUGHsDoAAEAAQAAAAUABMAhDh7A2AABAAEAAAAFAATAGlwewRgAAQABAAAABQAEwB9QHsFYAAEAAQAAAAUABMAMXh7BCAABAAEAAAAFAATAIzMewUgAAQABAAAABQAEwCpdHsE4AAEAAQAAAAUABMA2cB7BKAABAAEAAAAFAATAK6wewIsAAQABAAAABQAEwDBPHg=="},"src_ip":"192.168.113.2","dst_ip":"192.168.113.237","protocol":17,"src_port":53,"dst_port":34581,"event_start":1565200341.229511} -{"ip":{"version":4,"ttl":64,"id":"6fa9"},"fingerprints":{"tcp":"tcp/(40)()(40)(faf0)((020405b4)(04)(08)(01)(030307))"},"tcp":{"seq":3511727651,"timestamp":{"ts_val":3976491827}},"src_ip":"192.168.113.237","dst_ip":"69.147.92.13","protocol":6,"src_port":58334,"dst_port":443,"event_start":1565200341.230033} -{"ip":{"version":4,"ttl":128,"id":"a8ac"},"fingerprints":{"tcp_server":"tcp_server/(40)()(80)(faf0)((020405b4))"},"tcp_server":{"seq":2461728365},"src_ip":"69.147.92.13","dst_ip":"192.168.113.237","protocol":6,"src_port":443,"dst_port":58334,"event_start":1565200341.267442} -{"ip":{"version":4,"ttl":64,"id":"6fab"},"fingerprints":{"tls":"tls/(0303)(130213031301c02cc030009fcca9cca8ccaac02bc02f009ec024c028006bc023c0270067c00ac0140039c009c0130033009d009c003d003c0035002f00ff)((0000)(000b000403000102)(000a000c000a001d0017001e00190018)(0023)(0016)(0017)(000d0030002e040305030603080708080809080a080b080408050806040105010601030302030301020103020202040205020602)(002b0009080304030303020301)(002d00020101)(0033))"},"tls":{"client":{"version":"0303","random":"4118de8ef48eff8e4bb1a68d3e68681b07fcdaaba85939f8b5ab5589a46d7a08","session_id":"ca3478f882fcae5a7e2679a164f952c87560e8e2b9f7680289cb310afe2bd515","cipher_suites":"130213031301c02cc030009fcca9cca8ccaac02bc02f009ec024c028006bc023c0270067c00ac0140039c009c0130033009d009c003d003c0035002f00ff","compression_methods":"00","server_name":"www.tumblr.com","session_ticket":"","features":"[\"0303\",\"130213031301c02cc030009fcca9cca8ccaac02bc02f009ec024c028006bc023c0270067c00ac0140039c009c0130033009d009c003d003c0035002f00ff\",[[\"0000\",\"001100000e7777772e74756d626c722e636f6d\"],[\"000b\",\"03000102\"],[\"000a\",\"000a001d0017001e00190018\"],[\"0023\",\"\"],[\"0016\",\"\"],[\"0017\",\"\"],[\"000d\",\"002e040305030603080708080809080a080b080408050806040105010601030302030301020103020202040205020602\"],[\"002b\",\"080304030303020301\"],[\"002d\",\"0101\"],[\"0033\",\"0024001d0020ad5a01ad30edf3e10a5e0cdbc0baca88c83e122dae2bce2570a12a52cea94126\"]]]"}},"src_ip":"192.168.113.237","dst_ip":"69.147.92.13","protocol":6,"src_port":58334,"dst_port":443,"event_start":1565200341.267702} -{"ip":{"version":4,"ttl":128,"id":"a8ae"},"fingerprints":{"tls_server":"tls_server/(0303)(1303)((002b00020304)(0033))"},"tls":{"server":{"version":"0303","random":"d716942f79133fd238a9c5f656bf3ad2f9ea74c360c4062a9d383792d4de4e5f","selected_cipher_suite":"1303","compression_method":"00"}},"src_ip":"69.147.92.13","dst_ip":"192.168.113.237","protocol":6,"src_port":443,"dst_port":58334,"event_start":1565200341.309324} -{"ip":{"version":4,"ttl":64,"id":"d8f5"},"dns":{"base64":"6IUBAAABAAAAAAAAB21vemlsbGEDb3JnAAABAAE="},"src_ip":"192.168.113.237","dst_ip":"192.168.113.2","protocol":17,"src_port":46873,"dst_port":53,"event_start":1565200341.589698} -{"ip":{"version":4,"ttl":64,"id":"d8f6"},"dns":{"base64":"W8IBAAABAAAAAAAAB21vemlsbGEDb3JnAAAcAAE="},"src_ip":"192.168.113.237","dst_ip":"192.168.113.2","protocol":17,"src_port":34583,"dst_port":53,"event_start":1565200341.589880} -{"ip":{"version":4,"ttl":128,"id":"a8fa"},"dns":{"base64":"W8KBgAABAAAAAQAAB21vemlsbGEDb3JnAAAcAAHADAAGAAEAAAAFAEQJaW5mb2Jsb3gxB3ByaXZhdGUEbWRjMgdtb3ppbGxhA2NvbQAJc3lzYWRtaW5zwAx4WBy8AAAAtAAAALQAEnUAAAAAPA=="},"src_ip":"192.168.113.2","dst_ip":"192.168.113.237","protocol":17,"src_port":53,"dst_port":34583,"event_start":1565200341.628360} -{"ip":{"version":4,"ttl":128,"id":"a8fb"},"dns":{"base64":"6IWBgAABAAEABgAKB21vemlsbGEDb3JnAAABAAHADAABAAEAAAAFAAQ/9dDDwBQAAgABAAAABQAZAmMwA29yZwthZmlsaWFzLW5zdARpbmZvAMAUAAIAAQAAAAUABQJhMMA8wBQAAgABAAAABQAVAmIyA29yZwthZmlsaWFzLW5zdMAUwBQAAgABAAAABQAFAmIwwHLAFAACAAEAAAAFAAUCYTLAPMAUAAIAAQAAAAUABQJkMMBywF4AAQABAAAABQAExxM4AcChAAEAAQAAAAUABMf5cAHAOQABAAEAAAAFAATHEzUBwLIAAQABAAAABQAExxM5AcBeABwAAQAAAAUAECABBQAADgAAAAAAAAAAAAHAoQAcAAEAAAAFABAgAQUAAEAAAAAAAAAAAAABwJAAHAABAAAABQAQIAEFAAAMAAAAAAAAAAAAAcBvABwAAQAAAAUAECABBQAASAAAAAAAAAAAAAHAOQAcAAEAAAAFABAgAQUAAAsAAAAAAAAAAAABwLIAHAABAAAABQAQIAEFAAAPAAAAAAAAAAAAAQ=="},"src_ip":"192.168.113.2","dst_ip":"192.168.113.237","protocol":17,"src_port":53,"dst_port":46873,"event_start":1565200341.630639} -{"ip":{"version":4,"ttl":64,"id":"c305"},"fingerprints":{"tcp":"tcp/(40)()(40)(faf0)((020405b4)(04)(08)(01)(030307))"},"tcp":{"seq":3066567403,"timestamp":{"ts_val":254554759}},"src_ip":"192.168.113.237","dst_ip":"63.245.208.195","protocol":6,"src_port":47714,"dst_port":443,"event_start":1565200341.630930} -{"ip":{"version":4,"ttl":128,"id":"a8fc"},"fingerprints":{"tcp_server":"tcp_server/(40)()(80)(faf0)((020405b4))"},"tcp_server":{"seq":4292743777},"src_ip":"63.245.208.195","dst_ip":"192.168.113.237","protocol":6,"src_port":443,"dst_port":47714,"event_start":1565200341.735879} -{"ip":{"version":4,"ttl":64,"id":"c307"},"fingerprints":{"tls":"tls/(0303)(130213031301c02cc030009fcca9cca8ccaac02bc02f009ec024c028006bc023c0270067c00ac0140039c009c0130033009d009c003d003c0035002f00ff)((0000)(000b000403000102)(000a000c000a001d0017001e00190018)(0023)(0016)(0017)(000d0030002e040305030603080708080809080a080b080408050806040105010601030302030301020103020202040205020602)(002b0009080304030303020301)(002d00020101)(0033))"},"tls":{"client":{"version":"0303","random":"d415c3d862df77f0055c018b411a63bd2c9589118008056ff3eca32886fac0aa","session_id":"5003ed3c29fee412f533a7d0261c415b55682f5c9ba72f7d882b453a3809e796","cipher_suites":"130213031301c02cc030009fcca9cca8ccaac02bc02f009ec024c028006bc023c0270067c00ac0140039c009c0130033009d009c003d003c0035002f00ff","compression_methods":"00","server_name":"mozilla.org","session_ticket":"","features":"[\"0303\",\"130213031301c02cc030009fcca9cca8ccaac02bc02f009ec024c028006bc023c0270067c00ac0140039c009c0130033009d009c003d003c0035002f00ff\",[[\"0000\",\"000e00000b6d6f7a696c6c612e6f7267\"],[\"000b\",\"03000102\"],[\"000a\",\"000a001d0017001e00190018\"],[\"0023\",\"\"],[\"0016\",\"\"],[\"0017\",\"\"],[\"000d\",\"002e040305030603080708080809080a080b080408050806040105010601030302030301020103020202040205020602\"],[\"002b\",\"080304030303020301\"],[\"002d\",\"0101\"],[\"0033\",\"0024001d00204c83d14095f998bc09e0a0f2875617fa5ee77d4e35e7d91e018ed8ae3e8dfc68\"]]]"}},"src_ip":"192.168.113.237","dst_ip":"63.245.208.195","protocol":6,"src_port":47714,"dst_port":443,"event_start":1565200341.736152} -{"ip":{"version":4,"ttl":128,"id":"a900"},"fingerprints":{"tls_server":"tls_server/(0303)(c030)((0000)(ff01)(000b00020100))"},"tls":{"server":{"certs":[{"base64":"MIIGvjCCBaagAwIBAgIQAQkZedZ/mwORduNQcrUeHTANBgkqhkiG9w0BAQsFADBNMQswCQYDVQQGEwJVUzEVMBMGA1UEChMMRGlnaUNlcnQgSW5jMScwJQYDVQQDEx5EaWdpQ2VydCBTSEEyIFNlY3VyZSBTZXJ2ZXIgQ0EwHhcNMTgxMTA5MDAwMDAwWhcNMjAxMTEzMTIwMDAwWjB+MQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNTW91bnRhaW4gVmlldzEbMBkGA1UEChMSTW96aWxsYSBGb3VuZGF0aW9uMQ8wDQYDVQQLEwZXZWJPcHMxFDASBgNVBAMTC21vemlsbGEub3JnMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEArcZLC5z6y00SWoKmAWDDKPBhLyv3TX5dc6cwxXb0FxPJXJshKF39TKWisDqAU+SZ+31vVbVOwqPzcFJqRYb/38XvWzgOXS5ssNk+v+ec651M1jmFKFg0nvFDLFTaxmKVUr2chlyTHarWyFGv20B18RIj/gWFyc4GDHs+QK4IeUMQCTCUen9TYul6nJBpYtWi1lZijRYvtpZsAGiGpI+fdZxPcDl+4sXHJrNOpnpZSuvwo7OltOIoUDpxBXAtdMqQ1jyKEiV5TsBg/rHl49zpkepLhPML/i+H3HN3p45cTsLz8L7ZrO+XwmWzxj3Zl65IXVTDsgrWlSwn9HcGNz5oaQIDAQABo4IDZzCCA2MwHwYDVR0jBBgwFoAUD4BhHIIxYdUvKOeNRji0LOHG2eIwHQYDVR0OBBYEFCMzT98RYeCKouko3+wezZMuuXYJMCcGA1UdEQQgMB6CC21vemlsbGEub3Jngg93d3cubW96aWxsYS5vcmcwDgYDVR0PAQH/BAQDAgWgMB0GA1UdJQQWMBQGCCsGAQUFBwMBBggrBgEFBQcDAjBrBgNVHR8EZDBiMC+gLaArhilodHRwOi8vY3JsMy5kaWdpY2VydC5jb20vc3NjYS1zaGEyLWc2LmNybDAvoC2gK4YpaHR0cDovL2NybDQuZGlnaWNlcnQuY29tL3NzY2Etc2hhMi1nNi5jcmwwTAYDVR0gBEUwQzA3BglghkgBhv1sAQEwKjAoBggrBgEFBQcCARYcaHR0cHM6Ly93d3cuZGlnaWNlcnQuY29tL0NQUzAIBgZngQwBAgIwfAYIKwYBBQUHAQEEcDBuMCQGCCsGAQUFBzABhhhodHRwOi8vb2NzcC5kaWdpY2VydC5jb20wRgYIKwYBBQUHMAKGOmh0dHA6Ly9jYWNlcnRzLmRpZ2ljZXJ0LmNvbS9EaWdpQ2VydFNIQTJTZWN1cmVTZXJ2ZXJDQS5jcnQwDAYDVR0TAQH/BAIwADCCAYAGCisGAQQB1nkCBAIEggFwBIIBbAFqAHYApLkJkLQYWBSHuxOizGdwCjw1mAT5G9+443fNDsgN3BAAAAFm+VxxQwAABAMARzBFAiEAtVpz1SXULqMJz96+u77Rymgzr1GgIDBlRsTOQ5r04MsCIFNI2JfrcBFjJIgf5F7nJ2UdRy9aBZmjzvd0cmfnyKKNAHcAh3W/51l8+IxDmV+9827/Vo1HVjb/SrVgwbTq/16ggw8AAAFm+VxyHgAABAMASDBGAiEAtYF/lHwWUOJO/4PCvs6cillJJdAH7KU1RKZPX9Blwq4CIQCwDhKgUgZFub8buET0KHfJ0Zcg99G/kAD3REU2c7nKhwB3ALvZ37wfinG1k5Qjl6qSe0c4V5UKq1LoGpCWZDaOHtGFAAABZvlcclgAAAQDAEgwRgIhANIUfGM+SGSXMCaZoSBWz9Yi1mZCdWVvqPuexLMBNB5dAiEA/Jit+3955q9R5kBaPhsx+wVKn2usHjmvkjkFq5Iqy+wwDQYJKoZIhvcNAQELBQADggEBAEr076DEJq0tbxoqT53jHlIl42pf1oyCdqy6uORlNqh7tMmPDg29yb3Uq9T/7YuZ6cfEEftSnJSS2LFAccBcNLEHViIlM/3yCpuy3TKKhQ4+q3l8GHqT659JJqCEB7I6VtbuCDWBPq3wRrc37MRTVAhDlAhbaN6UjAjsaterNY4jXfHfdV9EUdadJSw0LNGk8qFeW/+IAuIYPm7qhOgxWM7VD+FT+4V3DlT0SSbDwXosBIbZqwP20/TNr2fyX3b+dpHaHxAkCof679iCS+TxVpRgm8yMFOLWG2Mok51OKzbhwKQv90Qm2QODmYPazftz0YoYtVxDmMCYUmkGlQK/Sqg="},{"base64":"MIIElDCCA3ygAwIBAgIQAf2j627KdciIQ4tyS8+8kTANBgkqhkiG9w0BAQsFADBhMQswCQYDVQQGEwJVUzEVMBMGA1UEChMMRGlnaUNlcnQgSW5jMRkwFwYDVQQLExB3d3cuZGlnaWNlcnQuY29tMSAwHgYDVQQDExdEaWdpQ2VydCBHbG9iYWwgUm9vdCBDQTAeFw0xMzAzMDgxMjAwMDBaFw0yMzAzMDgxMjAwMDBaME0xCzAJBgNVBAYTAlVTMRUwEwYDVQQKEwxEaWdpQ2VydCBJbmMxJzAlBgNVBAMTHkRpZ2lDZXJ0IFNIQTIgU2VjdXJlIFNlcnZlciBDQTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANyuWJBNwcQwFZA1W248ghX1LFy949v/cUP6ZCWA1O4Yok3wZtAKc24RmDYXZK83nf36QYSvx6+M/hpzTc8zl5CilodTgyu5pnVILR1WN3vaMTIa16yrBvSqXUu3R0bdKpPDkC55gIDvEwRqFDu1m5K+wgdlTvza/P96rtxcflUxDOg5B6TXvi/TC2rSsd9f/ld0Uzs1gN2ujkSYs58O09rg1/RrKatEp0tYhG2SS4HD2nOLEpdIkARFdRrdNzGXkujNVA075ME/OV4uuPNcfhCOhkEAjUVmR7ChZc6gqikJTvOX6+guqw9ypzAO+sf0/RR3w6RbKFfCs/mC/bdFWJsCAwEAAaOCAVowggFWMBIGA1UdEwEB/wQIMAYBAf8CAQAwDgYDVR0PAQH/BAQDAgGGMDQGCCsGAQUFBwEBBCgwJjAkBggrBgEFBQcwAYYYaHR0cDovL29jc3AuZGlnaWNlcnQuY29tMHsGA1UdHwR0MHIwN6A1oDOGMWh0dHA6Ly9jcmwzLmRpZ2ljZXJ0LmNvbS9EaWdpQ2VydEdsb2JhbFJvb3RDQS5jcmwwN6A1oDOGMWh0dHA6Ly9jcmw0LmRpZ2ljZXJ0LmNvbS9EaWdpQ2VydEdsb2JhbFJvb3RDQS5jcmwwPQYDVR0gBDYwNDAyBgRVHSAAMCowKAYIKwYBBQUHAgEWHGh0dHBzOi8vd3d3LmRpZ2ljZXJ0LmNvbS9DUFMwHQYDVR0OBBYEFA+AYRyCMWHVLyjnjUY4tCzhxtniMB8GA1UdIwQYMBaAFAPeUDVW0Uy7ZvCj4hsbw5eyPdFVMA0GCSqGSIb3DQEBCwUAA4IBAQAjPt9L0jFCpbZ+QlwaRMxp0Wi0XUvgBCFsS+JtzLHgl4+mUwnNqipl5TlPHoOlblyYoiQm5vuh7ZPHLgLGTUq/sELfeNqzqPlt/yGFUzZgTHbO7Djc1lGA8MXW5dRNJ2Srm8c+cftIl7gzbckTB+6WohsYFfZcTEDts8Ls/3HB40f/1LkAtDdC2iDJ6m6K7hQGrn2iWZiIqBtvLfTyyRRfJs8sjX7tN8Cp1Tm5gr8ZDOo0rwAhaPitc+LJMto4JQtV05od8GiG7S5BNO98pVAdvzr508EIDObtHopYJeS4d60tbvVS3bR0j6tJLp07kzQoH3jOlOrHvdPJbRzeXDLz"}],"version":"0303","random":"5d4b0fd5aa4d1e2a6546fe2906a39dbab6e16e5aa3d5577531aed21e8d30c518","selected_cipher_suite":"c030","compression_method":"00"}},"reassembly_properties":{"reassembled":true},"src_ip":"63.245.208.195","dst_ip":"192.168.113.237","protocol":6,"src_port":443,"dst_port":47714,"event_start":1565200341.846619} -{"ip":{"version":4,"ttl":64,"id":"d916"},"dns":{"base64":"NKIBAAABAAAAAAAAA3d3dwdtb3ppbGxhA29yZwAAAQAB"},"src_ip":"192.168.113.237","dst_ip":"192.168.113.2","protocol":17,"src_port":59091,"dst_port":53,"event_start":1565200342.063360} -{"ip":{"version":4,"ttl":64,"id":"d917"},"dns":{"base64":"0Y0BAAABAAAAAAAAA3d3dwdtb3ppbGxhA29yZwAAHAAB"},"src_ip":"192.168.113.237","dst_ip":"192.168.113.2","protocol":17,"src_port":32866,"dst_port":53,"event_start":1565200342.063596} -{"ip":{"version":4,"ttl":128,"id":"a908"},"dns":{"base64":"NKKBgAABAAMABQAJA3d3dwdtb3ppbGxhA29yZwAAAQABwAwABQABAAAABQAkA3d3dwdtb3ppbGxhA29yZwNjZG4KY2xvdWRmbGFyZQNuZXQAwC0AAQABAAAABQAEaBAoAsAtAAEAAQAAAAUABGgQKQLAQQACAAEAAAAFAAYDbnM1wEHAQQACAAEAAAAFAAYDbnMywEHAQQACAAEAAAAFAAYDbnMzwEHAQQACAAEAAAAFAAYDbnM0wEHAQQACAAEAAAAFAAYDbnMxwEHAxQABAAEAAAAFAASt9TsfwI8AAQABAAAABQAExineg8ChAAEAAQAAAAUABMYp3h/AfQABAAEAAAAFAATGKd8fwMUAHAABAAAABQAQJADLACBJAAEAAAAArfU7H8CPABwAAQAAAAUAECQAywAgSQABAAAAAMYp3oPAoQAcAAEAAAAFABAkAMsAIEkAAQAAAADGKd4fwLMAHAABAAAABQAQJADLACBJAAEAAAAAxinfg8B9ABwAAQAAAAUAECQAywAgSQABAAAAAMYp3x8="},"src_ip":"192.168.113.2","dst_ip":"192.168.113.237","protocol":17,"src_port":53,"dst_port":59091,"event_start":1565200342.097632} -{"ip":{"version":4,"ttl":128,"id":"a909"},"dns":{"base64":"0Y2BgAABAAMABQAJA3d3dwdtb3ppbGxhA29yZwAAHAABwAwABQABAAAABQAkA3d3dwdtb3ppbGxhA29yZwNjZG4KY2xvdWRmbGFyZQNuZXQAwC0AHAABAAAABQAQJgZHAAAAAAAAAAAAaBAoAsAtABwAAQAAAAUAECYGRwAAAAAAAAAAAGgQKQLAQQACAAEAAAAFAAYDbnMywEHAQQACAAEAAAAFAAYDbnM0wEHAQQACAAEAAAAFAAYDbnMxwEHAQQACAAEAAAAFAAYDbnMzwEHAQQACAAEAAAAFAAYDbnM1wEHAuQABAAEAAAAFAASt9TsfwJUAAQABAAAABQAExineg8DLAAEAAQAAAAUABMYp3h/A3QABAAEAAAAFAATGKd8fwLkAHAABAAAABQAQJADLACBJAAEAAAAArfU7H8CVABwAAQAAAAUAECQAywAgSQABAAAAAMYp3oPAywAcAAEAAAAFABAkAMsAIEkAAQAAAADGKd4fwKcAHAABAAAABQAQJADLACBJAAEAAAAAxinfg8DdABwAAQAAAAUAECQAywAgSQABAAAAAMYp3x8="},"src_ip":"192.168.113.2","dst_ip":"192.168.113.237","protocol":17,"src_port":53,"dst_port":32866,"event_start":1565200342.097885} -{"ip":{"version":4,"ttl":64,"id":"c803"},"fingerprints":{"tcp":"tcp/(40)()(40)(faf0)((020405b4)(04)(08)(01)(030307))"},"tcp":{"seq":1461850720,"timestamp":{"ts_val":3803419657}},"src_ip":"192.168.113.237","dst_ip":"104.16.41.2","protocol":6,"src_port":38792,"dst_port":443,"event_start":1565200342.098302} -{"ip":{"version":4,"ttl":128,"id":"a90a"},"fingerprints":{"tcp_server":"tcp_server/(40)()(80)(faf0)((020405b4))"},"tcp_server":{"seq":3370518291},"src_ip":"104.16.41.2","dst_ip":"192.168.113.237","protocol":6,"src_port":443,"dst_port":38792,"event_start":1565200342.138175} -{"ip":{"version":4,"ttl":64,"id":"c805"},"fingerprints":{"tls":"tls/(0303)(130213031301c02cc030009fcca9cca8ccaac02bc02f009ec024c028006bc023c0270067c00ac0140039c009c0130033009d009c003d003c0035002f00ff)((0000)(000b000403000102)(000a000c000a001d0017001e00190018)(0023)(0016)(0017)(000d0030002e040305030603080708080809080a080b080408050806040105010601030302030301020103020202040205020602)(002b0009080304030303020301)(002d00020101)(0033))"},"tls":{"client":{"version":"0303","random":"33c1b9a51fa3945856f4afadd7e116ddacda10fe480e182f62d9ef1ff9bed7c8","session_id":"9d2df1ec106a1b7ec971785f0a7b284808e26343051f4bcd145da87b21ea0d3d","cipher_suites":"130213031301c02cc030009fcca9cca8ccaac02bc02f009ec024c028006bc023c0270067c00ac0140039c009c0130033009d009c003d003c0035002f00ff","compression_methods":"00","server_name":"www.mozilla.org","session_ticket":"","features":"[\"0303\",\"130213031301c02cc030009fcca9cca8ccaac02bc02f009ec024c028006bc023c0270067c00ac0140039c009c0130033009d009c003d003c0035002f00ff\",[[\"0000\",\"001200000f7777772e6d6f7a696c6c612e6f7267\"],[\"000b\",\"03000102\"],[\"000a\",\"000a001d0017001e00190018\"],[\"0023\",\"\"],[\"0016\",\"\"],[\"0017\",\"\"],[\"000d\",\"002e040305030603080708080809080a080b080408050806040105010601030302030301020103020202040205020602\"],[\"002b\",\"080304030303020301\"],[\"002d\",\"0101\"],[\"0033\",\"0024001d0020dc82de30b71e57ebd080feb0abff1a3d9dc81e225810fb59fe5fbfe974ce7156\"]]]"}},"src_ip":"192.168.113.237","dst_ip":"104.16.41.2","protocol":6,"src_port":38792,"dst_port":443,"event_start":1565200342.138433} -{"ip":{"version":4,"ttl":128,"id":"a90c"},"fingerprints":{"tls_server":"tls_server/(0303)(1302)((0033)(002b00020304))"},"tls":{"server":{"version":"0303","random":"1e2c3b7c8250fb23611c60dcf4ebb780d6587277bd6e468ee3ebc8d946a44705","selected_cipher_suite":"1302","compression_method":"00"}},"src_ip":"104.16.41.2","dst_ip":"192.168.113.237","protocol":6,"src_port":443,"dst_port":38792,"event_start":1565200342.192345} -{"ip":{"version":4,"ttl":64,"id":"d937"},"dns":{"base64":"EkYBAAABAAAAAAAABmZsaWNrcgNjb20AAAEAAQ=="},"src_ip":"192.168.113.237","dst_ip":"192.168.113.2","protocol":17,"src_port":47017,"dst_port":53,"event_start":1565200342.409482} -{"ip":{"version":4,"ttl":64,"id":"d938"},"dns":{"base64":"kFIBAAABAAAAAAAABmZsaWNrcgNjb20AABwAAQ=="},"src_ip":"192.168.113.237","dst_ip":"192.168.113.2","protocol":17,"src_port":52389,"dst_port":53,"event_start":1565200342.409653} -{"ip":{"version":4,"ttl":128,"id":"a99d"},"dns":{"base64":"EkaBgAABAAEADQAOBmZsaWNrcgNjb20AAAEAAcAMAAEAAQAAAAUABGNU1/LAEwACAAEAAAAFABQBZAxndGxkLXNlcnZlcnMDbmV0AMATAAIAAQAAAAUABAFnwDrAEwACAAEAAAAFAAQBbMA6wBMAAgABAAAABQAEAWnAOsATAAIAAQAAAAUABAFtwDrAEwACAAEAAAAFAAQBZsA6wBMAAgABAAAABQAEAWrAOsATAAIAAQAAAAUABAFrwDrAEwACAAEAAAAFAAQBYsA6wBMAAgABAAAABQAEAWXAOsATAAIAAQAAAAUABAFjwDrAEwACAAEAAAAFAAQBaMA6wBMAAgABAAAABQAEAWHAOsEIAAEAAQAAAAUABMAFBh7AyAABAAEAAAAFAATAIQ4ewOgAAQABAAAABQAEwBpcHsA4AAEAAQAAAAUABMAfUB7A2AABAAEAAAAFAATADF4ewJgAAQABAAAABQAEwCMzHsBYAAEAAQAAAAUABMAqXR7A+AABAAEAAAAFAATANnAewHgAAQABAAAABQAEwCusHsCoAAEAAQAAAAUABMAwTx7AuAABAAEAAAAFAATANLIewGgAAQABAAAABQAEwCmiHsCIAAEAAQAAAAUABMA3Ux7BCAAcAAEAAAAFABAgAQUDqD4AAAAAAAAAAgAw"},"src_ip":"192.168.113.2","dst_ip":"192.168.113.237","protocol":17,"src_port":53,"dst_port":47017,"event_start":1565200342.447554} -{"ip":{"version":4,"ttl":128,"id":"a99e"},"dns":{"base64":"kFKBgAABAAAAAQAABmZsaWNrcgNjb20AABwAAcAMAAYAAQAAAAUARQZucy01NzMJYXdzZG5zLTA3A25ldAARYXdzZG5zLWhvc3RtYXN0ZXIGYW1hem9uwBMAAAABAAAcIAAAA4QAEnUAAAFRgA=="},"src_ip":"192.168.113.2","dst_ip":"192.168.113.237","protocol":17,"src_port":53,"dst_port":52389,"event_start":1565200342.447574} -{"ip":{"version":4,"ttl":64,"id":"64dc"},"fingerprints":{"tcp":"tcp/(40)()(40)(faf0)((020405b4)(04)(08)(01)(030307))"},"tcp":{"seq":53984870,"timestamp":{"ts_val":3957416442}},"src_ip":"192.168.113.237","dst_ip":"99.84.215.242","protocol":6,"src_port":56402,"dst_port":443,"event_start":1565200342.447924} -{"ip":{"version":4,"ttl":128,"id":"a99f"},"fingerprints":{"tcp_server":"tcp_server/(40)()(80)(faf0)((020405b4))"},"tcp_server":{"seq":2009727413},"src_ip":"99.84.215.242","dst_ip":"192.168.113.237","protocol":6,"src_port":443,"dst_port":56402,"event_start":1565200342.493006} -{"ip":{"version":4,"ttl":64,"id":"64de"},"fingerprints":{"tls":"tls/(0303)(130213031301c02cc030009fcca9cca8ccaac02bc02f009ec024c028006bc023c0270067c00ac0140039c009c0130033009d009c003d003c0035002f00ff)((0000)(000b000403000102)(000a000c000a001d0017001e00190018)(0023)(0016)(0017)(000d0030002e040305030603080708080809080a080b080408050806040105010601030302030301020103020202040205020602)(002b0009080304030303020301)(002d00020101)(0033))"},"tls":{"client":{"version":"0303","random":"aeca6f28bc7439c04a55d2c06ca39956427031bf9a1a91e3c91e7799728cfb24","session_id":"b7f0318ee15f190afdba6140a45baeb931cb1698a5d67709766991984a090da6","cipher_suites":"130213031301c02cc030009fcca9cca8ccaac02bc02f009ec024c028006bc023c0270067c00ac0140039c009c0130033009d009c003d003c0035002f00ff","compression_methods":"00","server_name":"flickr.com","session_ticket":"","features":"[\"0303\",\"130213031301c02cc030009fcca9cca8ccaac02bc02f009ec024c028006bc023c0270067c00ac0140039c009c0130033009d009c003d003c0035002f00ff\",[[\"0000\",\"000d00000a666c69636b722e636f6d\"],[\"000b\",\"03000102\"],[\"000a\",\"000a001d0017001e00190018\"],[\"0023\",\"\"],[\"0016\",\"\"],[\"0017\",\"\"],[\"000d\",\"002e040305030603080708080809080a080b080408050806040105010601030302030301020103020202040205020602\"],[\"002b\",\"080304030303020301\"],[\"002d\",\"0101\"],[\"0033\",\"0024001d0020492805c6e5f0f63bd0d377bba3bb33f0870424c1e584cebe7c0dc752e1b84137\"]]]"}},"src_ip":"192.168.113.237","dst_ip":"99.84.215.242","protocol":6,"src_port":56402,"dst_port":443,"event_start":1565200342.493276} -{"ip":{"version":4,"ttl":128,"id":"a9a4"},"fingerprints":{"tls_server":"tls_server/(0303)(c02f)((0000)(ff01)(000b000403000102)(0023))"},"tls":{"server":{"certs":[{"base64":"MIIFdTCCBF2gAwIBAgIQDt4YzuELQpTapoK7bNnpZjANBgkqhkiG9w0BAQsFADBGMQswCQYDVQQGEwJVUzEPMA0GA1UEChMGQW1hem9uMRUwEwYDVQQLEwxTZXJ2ZXIgQ0EgMUIxDzANBgNVBAMTBkFtYXpvbjAeFw0xOTA3MDIwMDAwMDBaFw0yMDA4MDIxMjAwMDBaMBUxEzARBgNVBAMTCmZsaWNrci5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDZ7uaOoNvCN+/ert5b3wZh0CGCmd165UwVC3B1pgEhnt1iyUvM6xczMpkSTxc9w5gvPa/Ne1GPyGOHuY66z9XW50w+Sxjiykbceu+0yYRutkDPv8BhtqKBZgxPJI/3XBvVPyuHQS36IPy+Wjl5EULe9i2KmJMyJfnyE1i7Sb6y4TSk0U4TNi7MGJppXb2e33cgxetihDu00KADE27bXcEWTMstcfBLwdG5/X4x2z/owEvDKNvtolO6SoGwgwQ4l83smKWytETJCljGDTQYnW5SAsW0qy4s1SRf8Tfw+rpETg0muMt6s+satyHzpjoGaXohkDjRnATtx1+J21C3QE9nAgMBAAGjggKOMIICijAfBgNVHSMEGDAWgBRZpGYGUqB7lZI8o5QHJ5Z0W/k90DAdBgNVHQ4EFgQUSWmklGLUX9CtIPn/1pCbKBIdUEUwLAYDVR0RBCUwI4IKZmxpY2tyLmNvbYIHZmxpYy5rcoIMKi5mbGlja3IuY29tMA4GA1UdDwEB/wQEAwIFoDAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwOwYDVR0fBDQwMjAwoC6gLIYqaHR0cDovL2NybC5zY2ExYi5hbWF6b250cnVzdC5jb20vc2NhMWIuY3JsMCAGA1UdIAQZMBcwCwYJYIZIAYb9bAECMAgGBmeBDAECATB1BggrBgEFBQcBAQRpMGcwLQYIKwYBBQUHMAGGIWh0dHA6Ly9vY3NwLnNjYTFiLmFtYXpvbnRydXN0LmNvbTA2BggrBgEFBQcwAoYqaHR0cDovL2NydC5zY2ExYi5hbWF6b250cnVzdC5jb20vc2NhMWIuY3J0MAwGA1UdEwEB/wQCMAAwggEFBgorBgEEAdZ5AgQCBIH2BIHzAPEAdwCkuQmQtBhYFIe7E6LMZ3AKPDWYBPkb37jjd80OyA3cEAAAAWuzwcABAAAEAwBIMEYCIQDVms5k3rQNRh/BDGWUbIgaznl1rFWhhS2mbijASsTlWgIhAJLUcmNRZgbp9oseu+zUDHDGUV05trWyejCkYqeMf89zAHYAh3W/51l8+IxDmV+9827/Vo1HVjb/SrVgwbTq/16ggw8AAAFrs8HAUQAABAMARzBFAiEA1dWKmUVBHr1IKCuT5BdfpjdOwLvNn1JfK3AF34iAltMCICPBNPQBQy0fgbTwN9oTwXHesKMl4CbyyTOuzkJuuqPgMA0GCSqGSIb3DQEBCwUAA4IBAQBKYdDCdJU5SY1BejLwpgbyfrisQ7VfzHi0IMaKwskPC9YBIO2AvdYJCcIutNcyCukriQDkYeUinsXYmtZb4B4XLto/XP2lqn9pNqBxS6CPKr7DmPy6SpU5RcYWHrKLGvjM4WA2GSD0nabz/yS7Mm+D+txilKh8pwpVMgYPS2AMdX2pnFFWCN58DT6zyt0isjtFoR773gByvPP8W+B4qBqKVdxhtdpo+JDn0/LMpUCrMwppy0/c1jfcEmNSGrgDsSp6E55oeqjKnGCNU3jwsaeeAQAWmm76vW/39r3p+XoP3XSbYNswO0ZumoHjrye63xKOulLY5Z2wv7WAfjjObtjK"},{"base64":"MIIESTCCAzGgAwIBAgITBn+UV4WH6Kx33rJTMlu8mYtWDTANBgkqhkiG9w0BAQsFADA5MQswCQYDVQQGEwJVUzEPMA0GA1UEChMGQW1hem9uMRkwFwYDVQQDExBBbWF6b24gUm9vdCBDQSAxMB4XDTE1MTAyMjAwMDAwMFoXDTI1MTAxOTAwMDAwMFowRjELMAkGA1UEBhMCVVMxDzANBgNVBAoTBkFtYXpvbjEVMBMGA1UECxMMU2VydmVyIENBIDFCMQ8wDQYDVQQDEwZBbWF6b24wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDCThZn3c68asg3Wuw6MLAd5tES6BIoSMzoKcG5blPVo+sDORrMd4f2AbnZcMzPa43j4wNxhplty6aUKk4T1qe9BOwKFjwK6zmxxLVYo7bHViXsPlJ6qOMpFge5blDP+18x+B26A0piiQOuPkfyDyeR4xQghfj66Yo19V+emU3nazfvpFA+ROz6WoVmB5x+F2pV8xeKNR7u6azDdU5YVX1TawprmxRC1+WsAYmz6qP+z8ArDITC2FMVy2fw0IjKOtEXc/VfmtTFch5+AfGYMGMqqvJ6LcXiAhqG5TI+Dr0RtM88k+8XUBCeQ8IGKuANaL7TiItKZYxK1MMuTJtV9IblAgMBAAGjggE7MIIBNzASBgNVHRMBAf8ECDAGAQH/AgEAMA4GA1UdDwEB/wQEAwIBhjAdBgNVHQ4EFgQUWaRmBlKge5WSPKOUByeWdFv5PdAwHwYDVR0jBBgwFoAUhBjMhTTsvAyUlC4IWZzHshBOCggwewYIKwYBBQUHAQEEbzBtMC8GCCsGAQUFBzABhiNodHRwOi8vb2NzcC5yb290Y2ExLmFtYXpvbnRydXN0LmNvbTA6BggrBgEFBQcwAoYuaHR0cDovL2NydC5yb290Y2ExLmFtYXpvbnRydXN0LmNvbS9yb290Y2ExLmNlcjA/BgNVHR8EODA2MDSgMqAwhi5odHRwOi8vY3JsLnJvb3RjYTEuYW1hem9udHJ1c3QuY29tL3Jvb3RjYTEuY3JsMBMGA1UdIAQMMAowCAYGZ4EMAQIBMA0GCSqGSIb3DQEBCwUAA4IBAQCFkr41u3nPo4FCHOTjY3NTOVI159Gt/a6ZiqyJEi+752+a1U5y6iAwYfmXss2lJwJFqMp2PphKg5625kXg8kP2CN5t6G7bMQcT8C8xDZNtYTd7WPD8UZiRKAJPBXa30/AbwuZe0GaFEQ8ugcYQgSn+IGBI8/LwhBNTZTUVEWuCUUBVV18YtbAiPq3yXqMB48Oz+ctBWuZSkbvkNodPLamkB2g1upRyzQ7qDn1X8nn8N8V7YJ6y68AtkHcNSRAnpTitxBKjtKPISLMVCx7i4hncxHZSyLyKQXhw2W2Xs0qLeC1etA+jTGDK4UfLeC0SF7FSi8o5LL21L8IzApar2pR/"},{"base64":"MIIEkjCCA3qgAwIBAgITBn+USionzfP6wq4rAfkI7rnExjANBgkqhkiG9w0BAQsFADCBmDELMAkGA1UEBhMCVVMxEDAOBgNVBAgTB0FyaXpvbmExEzARBgNVBAcTClNjb3R0c2RhbGUxJTAjBgNVBAoTHFN0YXJmaWVsZCBUZWNobm9sb2dpZXMsIEluYy4xOzA5BgNVBAMTMlN0YXJmaWVsZCBTZXJ2aWNlcyBSb290IENlcnRpZmljYXRlIEF1dGhvcml0eSAtIEcyMB4XDTE1MDUyNTEyMDAwMFoXDTM3MTIzMTAxMDAwMFowOTELMAkGA1UEBhMCVVMxDzANBgNVBAoTBkFtYXpvbjEZMBcGA1UEAxMQQW1hem9uIFJvb3QgQ0EgMTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALJ4gHHKeNXjca9HgFB0fW7Y14h29Jlo91ghYPl0hAEvrAIthtOgQ3pOsqTQNroBvo3bSMgHFzZM9O6II8c+6zf1tRn4SWiw3te5djgdYZ6k/oI2peVKVuRF4fn9tBb6dNqcmzU5L/qwIFAGbHrQgLKm+a/sRxmPUDgH3KKHOVj4utWp+UhnMJbulHheb4mjUcAwhmahRWa6VOujw5H5SNz/0egwLX0tdHA114gk957EWW67c4cX8jJGKLhD+rcdqsq08p8kDi1L93FcXmn/6pUCyziKrlA4b9v7LWIbxcceVOF34GfID5yHI9Y/QCB/IIDEgEw+OyQmjgSubJrIqg0CAwEAAaOCATEwggEtMA8GA1UdEwEB/wQFMAMBAf8wDgYDVR0PAQH/BAQDAgGGMB0GA1UdDgQWBBSEGMyFNOy8DJSULghZnMeyEE4KCDAfBgNVHSMEGDAWgBScXwDfqgHXMCs4iKK4bUqc8hGRgzB4BggrBgEFBQcBAQRsMGowLgYIKwYBBQUHMAGGImh0dHA6Ly9vY3NwLnJvb3RnMi5hbWF6b250cnVzdC5jb20wOAYIKwYBBQUHMAKGLGh0dHA6Ly9jcnQucm9vdGcyLmFtYXpvbnRydXN0LmNvbS9yb290ZzIuY2VyMD0GA1UdHwQ2MDQwMqAwoC6GLGh0dHA6Ly9jcmwucm9vdGcyLmFtYXpvbnRydXN0LmNvbS9yb290ZzIuY3JsMBEGA1UdIAQKMAgwBgYEVR0gADANBgkqhkiG9w0BAQsFAAOCAQEAYjdCXLwQtT6LLOkMm2xF4gcAevnFWAu5CIw+7bMlPLVvUOTNNWqnkzSWMiGpSESrnO09tKpzbeR/FoCJbM8oAxiDR3mjEH4wW6w7sGDgd9QIpuEdfF7Au/maeyKdpwAJfqxGF4PcnCZXmTA5YpaP7dreqsXMGz7KQ2hsVxa81Q4gLv7/wmpdLqBKbRRYh5TmOTFffHPLkIhqhBGWJ6bt2YFGpn6jcgAKUj6DiAdjd4lpFw85hdKrCEVN0FE6/V1dN2RMfjCyVSRCnTawXZwXgWHxyvkQAiSr6w10kY17RSlQOYiypok1JR4UakcjMS9cmvqtmg5iUaQqqcT5NJ0hGA=="},{"base64":"MIIEdTCCA12gAwIBAgIJAKcOSkw0grd/MA0GCSqGSIb3DQEBCwUAMGgxCzAJBgNVBAYTAlVTMSUwIwYDVQQKExxTdGFyZmllbGQgVGVjaG5vbG9naWVzLCBJbmMuMTIwMAYDVQQLEylTdGFyZmllbGQgQ2xhc3MgMiBDZXJ0aWZpY2F0aW9uIEF1dGhvcml0eTAeFw0wOTA5MDIwMDAwMDBaFw0zNDA2MjgxNzM5MTZaMIGYMQswCQYDVQQGEwJVUzEQMA4GA1UECBMHQXJpem9uYTETMBEGA1UEBxMKU2NvdHRzZGFsZTElMCMGA1UEChMcU3RhcmZpZWxkIFRlY2hub2xvZ2llcywgSW5jLjE7MDkGA1UEAxMyU3RhcmZpZWxkIFNlcnZpY2VzIFJvb3QgQ2VydGlmaWNhdGUgQXV0aG9yaXR5IC0gRzIwggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDVDDrEKvlO4vW+GZdfjohTsR8/y8+fIBNtKTrID30892t2OGPZNmCom15cAICyL1l/9of5JUOG52kbUpqQ4XHj2C0NTm/2yEnZtvMaVq4rtnQU68/7JuMauh2WLmo7WJSJR1b/JaCTcFOD2oR0FMNnngRoOt+OQFodSk7PQ5E751bWAHDLUu57fa4657wx+UX2wmDPE1kCK4DMNEffud6QZW0CzyyRpqbn3oUYSXxmTqM6bam17jQuug0DuDPfR+uxa40l2ZvOgdFFRjKWcIfeAg5JQ4W2bHO7ZOphQazJ1FTfhy/HIrImzJ9ZVGif/L4qL8RVHHVAYBeFAlU5i38FAgMBAAGjgfAwge0wDwYDVR0TAQH/BAUwAwEB/zAOBgNVHQ8BAf8EBAMCAYYwHQYDVR0OBBYEFJxfAN+qAdcwKziIorhtSpzyEZGDMB8GA1UdIwQYMBaAFL9ft9HO3R+G9FtVrNzXEMIOqYjnME8GCCsGAQUFBwEBBEMwQTAcBggrBgEFBQcwAYYQaHR0cDovL28uc3MyLnVzLzAhBggrBgEFBQcwAoYVaHR0cDovL3guc3MyLnVzL3guY2VyMCYGA1UdHwQfMB0wG6AZoBeGFWh0dHA6Ly9zLnNzMi51cy9yLmNybDARBgNVHSAECjAIMAYGBFUdIAAwDQYJKoZIhvcNAQELBQADggEBACMd44pXyn3pF3lM8R5V/cxTbj5HD9/GVfKyBDbtgB9TxF00KGu+x1X8Z+rLP3+QsjPNG1gQggL4+C/1E2DUBc7xgQjB3ad1l08YuW3e95ORCLp+QCztweq7dp4zBncdDQh/U90bZKuCJ/Fp1U1ervShw3WnWEQt8jxwmKy6abaVd38PMV4s/KCHOkdp8Hlf9BRUpJVeEXgSYCfOn8J3/yNTd126/+pZ59vPr5KW7ySaNRB6nJHGDn2Z9j8Z3/VyVOEVqQdZe4O/Ui5GjLIAZHYcSNPYeehuVsyuLAOQ1xk4meTKCRlb/weWsKh/NEnfVqn3sF/tM+2MR7cwA130A4w="}],"version":"0303","random":"8b215ad57c246b0631c5f06f6d4a0dcac7107a0a3e08ea195045ea5f3c53bc8d","selected_cipher_suite":"c02f","compression_method":"00","session_ticket":""}},"reassembly_properties":{"reassembled":true},"src_ip":"99.84.215.242","dst_ip":"192.168.113.237","protocol":6,"src_port":443,"dst_port":56402,"event_start":1565200342.535844} -{"ip":{"version":4,"ttl":64,"id":"d970"},"dns":{"base64":"BRYBAAABAAAAAAAAA3d3dwZmbGlja3IDY29tAAABAAE="},"src_ip":"192.168.113.237","dst_ip":"192.168.113.2","protocol":17,"src_port":42238,"dst_port":53,"event_start":1565200342.633499} -{"ip":{"version":4,"ttl":64,"id":"d971"},"dns":{"base64":"zxQBAAABAAAAAAAAA3d3dwZmbGlja3IDY29tAAAcAAE="},"src_ip":"192.168.113.237","dst_ip":"192.168.113.2","protocol":17,"src_port":56785,"dst_port":53,"event_start":1565200342.633692} -{"ip":{"version":4,"ttl":128,"id":"a9ac"},"dns":{"base64":"zxSBgAABAAkABAAEA3d3dwZmbGlja3IDY29tAAAcAAHADAAFAAEAAAAFAB8OZDIwYjg2aW51cjE0bGwKY2xvdWRmcm9udANuZXQAwCwAHAABAAAABQAQJgCQACAV/AAAGz08IkoSYcAsABwAAQAAAAUAECYAkAAgFTgAABs9PCJKEmHALAAcAAEAAAAFABAmAJAAIBV0AAAbPTwiShJhwCwAHAABAAAABQAQJgCQACAVBgAAGz08IkoSYcAsABwAAQAAAAUAECYAkAAgFVAAABs9PCJKEmHALAAcAAEAAAAFABAmAJAAIBVaAAAbPTwiShJhwCwAHAABAAAABQAQJgCQACAV1AAAGz08IkoSYcAsABwAAQAAAAUAECYAkAAgFS4AABs9PCJKEmHAOwACAAEAAAAFABMGbnMtNjY2CWF3c2Rucy0xOcBGwDsAAgABAAAABQAZB25zLTE1OTcJYXdzZG5zLTA3AmNvAnVrAMA7AAIAAQAAAAUAEwZucy00MTgJYXdzZG5zLTUywBfAOwACAAEAAAAFABcHbnMtMTMwNglhd3NkbnMtMzUDb3JnAMF7AAEAAQAAAAUABM37waLBNwABAAEAAAAFAATN+8KawZoAAQABAAAABQAEzfvFGsFWAAEAAQAAAAUABM37xj0="},"src_ip":"192.168.113.2","dst_ip":"192.168.113.237","protocol":17,"src_port":53,"dst_port":56785,"event_start":1565200342.667074} -{"ip":{"version":4,"ttl":128,"id":"a9ad"},"dns":{"base64":"BRaBgAABAAIABAAIA3d3dwZmbGlja3IDY29tAAABAAHADAAFAAEAAAAFAB8OZDIwYjg2aW51cjE0bGwKY2xvdWRmcm9udANuZXQAwCwAAQABAAAABQAEY1TX8sA7AAIAAQAAAAUAGQducy0xNTk3CWF3c2Rucy0wNwJjbwJ1awDAOwACAAEAAAAFABMGbnMtNjY2CWF3c2Rucy0xOcBGwDsAAgABAAAABQAXB25zLTEzMDYJYXdzZG5zLTM1A29yZwDAOwACAAEAAAAFABMGbnMtNDE4CWF3c2Rucy01MsAXwM4AAQABAAAABQAEzfvBosCMAAEAAQAAAAUABM37wprAqwABAAEAAAAFAATN+8UawGcAAQABAAAABQAEzfvGPcDOABwAAQAAAAUAECYAkABTAaIAAAAAAAAAAAHAjAAcAAEAAAAFABAmAJAAUwKaAAAAAAAAAAABwKsAHAABAAAABQAQJgCQAFMFGgAAAAAAAAAAAcBnABwAAQAAAAUAECYAkABTBj0AAAAAAAAAAAE="},"src_ip":"192.168.113.2","dst_ip":"192.168.113.237","protocol":17,"src_port":53,"dst_port":42238,"event_start":1565200342.667094} -{"ip":{"version":4,"ttl":64,"id":"c0c0"},"fingerprints":{"tcp":"tcp/(40)()(40)(faf0)((020405b4)(04)(08)(01)(030307))"},"tcp":{"seq":3209042481,"timestamp":{"ts_val":3957416662}},"src_ip":"192.168.113.237","dst_ip":"99.84.215.242","protocol":6,"src_port":56404,"dst_port":443,"event_start":1565200342.667949} -{"ip":{"version":4,"ttl":128,"id":"a9af"},"fingerprints":{"tcp_server":"tcp_server/(40)()(80)(faf0)((020405b4))"},"tcp_server":{"seq":152899688},"src_ip":"99.84.215.242","dst_ip":"192.168.113.237","protocol":6,"src_port":443,"dst_port":56404,"event_start":1565200342.707098} -{"ip":{"version":4,"ttl":64,"id":"c0c2"},"fingerprints":{"tls":"tls/(0303)(130213031301c02cc030009fcca9cca8ccaac02bc02f009ec024c028006bc023c0270067c00ac0140039c009c0130033009d009c003d003c0035002f00ff)((0000)(000b000403000102)(000a000c000a001d0017001e00190018)(0023)(0016)(0017)(000d0030002e040305030603080708080809080a080b080408050806040105010601030302030301020103020202040205020602)(002b0009080304030303020301)(002d00020101)(0033))"},"tls":{"client":{"version":"0303","random":"fae85c8b91e5df7127a5dd1b3ae8090d88a406cd6452d488ee7c92a4844fb14f","session_id":"996d723c707e8ae92ea880ab59ae609d24d818461e18542b3a8ec72298317862","cipher_suites":"130213031301c02cc030009fcca9cca8ccaac02bc02f009ec024c028006bc023c0270067c00ac0140039c009c0130033009d009c003d003c0035002f00ff","compression_methods":"00","server_name":"www.flickr.com","session_ticket":"","features":"[\"0303\",\"130213031301c02cc030009fcca9cca8ccaac02bc02f009ec024c028006bc023c0270067c00ac0140039c009c0130033009d009c003d003c0035002f00ff\",[[\"0000\",\"001100000e7777772e666c69636b722e636f6d\"],[\"000b\",\"03000102\"],[\"000a\",\"000a001d0017001e00190018\"],[\"0023\",\"\"],[\"0016\",\"\"],[\"0017\",\"\"],[\"000d\",\"002e040305030603080708080809080a080b080408050806040105010601030302030301020103020202040205020602\"],[\"002b\",\"080304030303020301\"],[\"002d\",\"0101\"],[\"0033\",\"0024001d00206b70a388c45203710106c6d37102a5d9ae654e0b003f9f636308f6e86fb39a0a\"]]]"}},"src_ip":"192.168.113.237","dst_ip":"99.84.215.242","protocol":6,"src_port":56404,"dst_port":443,"event_start":1565200342.707540} -{"ip":{"version":4,"ttl":128,"id":"a9b4"},"fingerprints":{"tls_server":"tls_server/(0303)(c02f)((0000)(ff01)(000b000403000102)(0023))"},"tls":{"server":{"certs":[{"base64":"MIIFdTCCBF2gAwIBAgIQDt4YzuELQpTapoK7bNnpZjANBgkqhkiG9w0BAQsFADBGMQswCQYDVQQGEwJVUzEPMA0GA1UEChMGQW1hem9uMRUwEwYDVQQLEwxTZXJ2ZXIgQ0EgMUIxDzANBgNVBAMTBkFtYXpvbjAeFw0xOTA3MDIwMDAwMDBaFw0yMDA4MDIxMjAwMDBaMBUxEzARBgNVBAMTCmZsaWNrci5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDZ7uaOoNvCN+/ert5b3wZh0CGCmd165UwVC3B1pgEhnt1iyUvM6xczMpkSTxc9w5gvPa/Ne1GPyGOHuY66z9XW50w+Sxjiykbceu+0yYRutkDPv8BhtqKBZgxPJI/3XBvVPyuHQS36IPy+Wjl5EULe9i2KmJMyJfnyE1i7Sb6y4TSk0U4TNi7MGJppXb2e33cgxetihDu00KADE27bXcEWTMstcfBLwdG5/X4x2z/owEvDKNvtolO6SoGwgwQ4l83smKWytETJCljGDTQYnW5SAsW0qy4s1SRf8Tfw+rpETg0muMt6s+satyHzpjoGaXohkDjRnATtx1+J21C3QE9nAgMBAAGjggKOMIICijAfBgNVHSMEGDAWgBRZpGYGUqB7lZI8o5QHJ5Z0W/k90DAdBgNVHQ4EFgQUSWmklGLUX9CtIPn/1pCbKBIdUEUwLAYDVR0RBCUwI4IKZmxpY2tyLmNvbYIHZmxpYy5rcoIMKi5mbGlja3IuY29tMA4GA1UdDwEB/wQEAwIFoDAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwOwYDVR0fBDQwMjAwoC6gLIYqaHR0cDovL2NybC5zY2ExYi5hbWF6b250cnVzdC5jb20vc2NhMWIuY3JsMCAGA1UdIAQZMBcwCwYJYIZIAYb9bAECMAgGBmeBDAECATB1BggrBgEFBQcBAQRpMGcwLQYIKwYBBQUHMAGGIWh0dHA6Ly9vY3NwLnNjYTFiLmFtYXpvbnRydXN0LmNvbTA2BggrBgEFBQcwAoYqaHR0cDovL2NydC5zY2ExYi5hbWF6b250cnVzdC5jb20vc2NhMWIuY3J0MAwGA1UdEwEB/wQCMAAwggEFBgorBgEEAdZ5AgQCBIH2BIHzAPEAdwCkuQmQtBhYFIe7E6LMZ3AKPDWYBPkb37jjd80OyA3cEAAAAWuzwcABAAAEAwBIMEYCIQDVms5k3rQNRh/BDGWUbIgaznl1rFWhhS2mbijASsTlWgIhAJLUcmNRZgbp9oseu+zUDHDGUV05trWyejCkYqeMf89zAHYAh3W/51l8+IxDmV+9827/Vo1HVjb/SrVgwbTq/16ggw8AAAFrs8HAUQAABAMARzBFAiEA1dWKmUVBHr1IKCuT5BdfpjdOwLvNn1JfK3AF34iAltMCICPBNPQBQy0fgbTwN9oTwXHesKMl4CbyyTOuzkJuuqPgMA0GCSqGSIb3DQEBCwUAA4IBAQBKYdDCdJU5SY1BejLwpgbyfrisQ7VfzHi0IMaKwskPC9YBIO2AvdYJCcIutNcyCukriQDkYeUinsXYmtZb4B4XLto/XP2lqn9pNqBxS6CPKr7DmPy6SpU5RcYWHrKLGvjM4WA2GSD0nabz/yS7Mm+D+txilKh8pwpVMgYPS2AMdX2pnFFWCN58DT6zyt0isjtFoR773gByvPP8W+B4qBqKVdxhtdpo+JDn0/LMpUCrMwppy0/c1jfcEmNSGrgDsSp6E55oeqjKnGCNU3jwsaeeAQAWmm76vW/39r3p+XoP3XSbYNswO0ZumoHjrye63xKOulLY5Z2wv7WAfjjObtjK"},{"base64":"MIIESTCCAzGgAwIBAgITBn+UV4WH6Kx33rJTMlu8mYtWDTANBgkqhkiG9w0BAQsFADA5MQswCQYDVQQGEwJVUzEPMA0GA1UEChMGQW1hem9uMRkwFwYDVQQDExBBbWF6b24gUm9vdCBDQSAxMB4XDTE1MTAyMjAwMDAwMFoXDTI1MTAxOTAwMDAwMFowRjELMAkGA1UEBhMCVVMxDzANBgNVBAoTBkFtYXpvbjEVMBMGA1UECxMMU2VydmVyIENBIDFCMQ8wDQYDVQQDEwZBbWF6b24wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDCThZn3c68asg3Wuw6MLAd5tES6BIoSMzoKcG5blPVo+sDORrMd4f2AbnZcMzPa43j4wNxhplty6aUKk4T1qe9BOwKFjwK6zmxxLVYo7bHViXsPlJ6qOMpFge5blDP+18x+B26A0piiQOuPkfyDyeR4xQghfj66Yo19V+emU3nazfvpFA+ROz6WoVmB5x+F2pV8xeKNR7u6azDdU5YVX1TawprmxRC1+WsAYmz6qP+z8ArDITC2FMVy2fw0IjKOtEXc/VfmtTFch5+AfGYMGMqqvJ6LcXiAhqG5TI+Dr0RtM88k+8XUBCeQ8IGKuANaL7TiItKZYxK1MMuTJtV9IblAgMBAAGjggE7MIIBNzASBgNVHRMBAf8ECDAGAQH/AgEAMA4GA1UdDwEB/wQEAwIBhjAdBgNVHQ4EFgQUWaRmBlKge5WSPKOUByeWdFv5PdAwHwYDVR0jBBgwFoAUhBjMhTTsvAyUlC4IWZzHshBOCggwewYIKwYBBQUHAQEEbzBtMC8GCCsGAQUFBzABhiNodHRwOi8vb2NzcC5yb290Y2ExLmFtYXpvbnRydXN0LmNvbTA6BggrBgEFBQcwAoYuaHR0cDovL2NydC5yb290Y2ExLmFtYXpvbnRydXN0LmNvbS9yb290Y2ExLmNlcjA/BgNVHR8EODA2MDSgMqAwhi5odHRwOi8vY3JsLnJvb3RjYTEuYW1hem9udHJ1c3QuY29tL3Jvb3RjYTEuY3JsMBMGA1UdIAQMMAowCAYGZ4EMAQIBMA0GCSqGSIb3DQEBCwUAA4IBAQCFkr41u3nPo4FCHOTjY3NTOVI159Gt/a6ZiqyJEi+752+a1U5y6iAwYfmXss2lJwJFqMp2PphKg5625kXg8kP2CN5t6G7bMQcT8C8xDZNtYTd7WPD8UZiRKAJPBXa30/AbwuZe0GaFEQ8ugcYQgSn+IGBI8/LwhBNTZTUVEWuCUUBVV18YtbAiPq3yXqMB48Oz+ctBWuZSkbvkNodPLamkB2g1upRyzQ7qDn1X8nn8N8V7YJ6y68AtkHcNSRAnpTitxBKjtKPISLMVCx7i4hncxHZSyLyKQXhw2W2Xs0qLeC1etA+jTGDK4UfLeC0SF7FSi8o5LL21L8IzApar2pR/"},{"base64":"MIIEkjCCA3qgAwIBAgITBn+USionzfP6wq4rAfkI7rnExjANBgkqhkiG9w0BAQsFADCBmDELMAkGA1UEBhMCVVMxEDAOBgNVBAgTB0FyaXpvbmExEzARBgNVBAcTClNjb3R0c2RhbGUxJTAjBgNVBAoTHFN0YXJmaWVsZCBUZWNobm9sb2dpZXMsIEluYy4xOzA5BgNVBAMTMlN0YXJmaWVsZCBTZXJ2aWNlcyBSb290IENlcnRpZmljYXRlIEF1dGhvcml0eSAtIEcyMB4XDTE1MDUyNTEyMDAwMFoXDTM3MTIzMTAxMDAwMFowOTELMAkGA1UEBhMCVVMxDzANBgNVBAoTBkFtYXpvbjEZMBcGA1UEAxMQQW1hem9uIFJvb3QgQ0EgMTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALJ4gHHKeNXjca9HgFB0fW7Y14h29Jlo91ghYPl0hAEvrAIthtOgQ3pOsqTQNroBvo3bSMgHFzZM9O6II8c+6zf1tRn4SWiw3te5djgdYZ6k/oI2peVKVuRF4fn9tBb6dNqcmzU5L/qwIFAGbHrQgLKm+a/sRxmPUDgH3KKHOVj4utWp+UhnMJbulHheb4mjUcAwhmahRWa6VOujw5H5SNz/0egwLX0tdHA114gk957EWW67c4cX8jJGKLhD+rcdqsq08p8kDi1L93FcXmn/6pUCyziKrlA4b9v7LWIbxcceVOF34GfID5yHI9Y/QCB/IIDEgEw+OyQmjgSubJrIqg0CAwEAAaOCATEwggEtMA8GA1UdEwEB/wQFMAMBAf8wDgYDVR0PAQH/BAQDAgGGMB0GA1UdDgQWBBSEGMyFNOy8DJSULghZnMeyEE4KCDAfBgNVHSMEGDAWgBScXwDfqgHXMCs4iKK4bUqc8hGRgzB4BggrBgEFBQcBAQRsMGowLgYIKwYBBQUHMAGGImh0dHA6Ly9vY3NwLnJvb3RnMi5hbWF6b250cnVzdC5jb20wOAYIKwYBBQUHMAKGLGh0dHA6Ly9jcnQucm9vdGcyLmFtYXpvbnRydXN0LmNvbS9yb290ZzIuY2VyMD0GA1UdHwQ2MDQwMqAwoC6GLGh0dHA6Ly9jcmwucm9vdGcyLmFtYXpvbnRydXN0LmNvbS9yb290ZzIuY3JsMBEGA1UdIAQKMAgwBgYEVR0gADANBgkqhkiG9w0BAQsFAAOCAQEAYjdCXLwQtT6LLOkMm2xF4gcAevnFWAu5CIw+7bMlPLVvUOTNNWqnkzSWMiGpSESrnO09tKpzbeR/FoCJbM8oAxiDR3mjEH4wW6w7sGDgd9QIpuEdfF7Au/maeyKdpwAJfqxGF4PcnCZXmTA5YpaP7dreqsXMGz7KQ2hsVxa81Q4gLv7/wmpdLqBKbRRYh5TmOTFffHPLkIhqhBGWJ6bt2YFGpn6jcgAKUj6DiAdjd4lpFw85hdKrCEVN0FE6/V1dN2RMfjCyVSRCnTawXZwXgWHxyvkQAiSr6w10kY17RSlQOYiypok1JR4UakcjMS9cmvqtmg5iUaQqqcT5NJ0hGA=="},{"base64":"MIIEdTCCA12gAwIBAgIJAKcOSkw0grd/MA0GCSqGSIb3DQEBCwUAMGgxCzAJBgNVBAYTAlVTMSUwIwYDVQQKExxTdGFyZmllbGQgVGVjaG5vbG9naWVzLCBJbmMuMTIwMAYDVQQLEylTdGFyZmllbGQgQ2xhc3MgMiBDZXJ0aWZpY2F0aW9uIEF1dGhvcml0eTAeFw0wOTA5MDIwMDAwMDBaFw0zNDA2MjgxNzM5MTZaMIGYMQswCQYDVQQGEwJVUzEQMA4GA1UECBMHQXJpem9uYTETMBEGA1UEBxMKU2NvdHRzZGFsZTElMCMGA1UEChMcU3RhcmZpZWxkIFRlY2hub2xvZ2llcywgSW5jLjE7MDkGA1UEAxMyU3RhcmZpZWxkIFNlcnZpY2VzIFJvb3QgQ2VydGlmaWNhdGUgQXV0aG9yaXR5IC0gRzIwggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDVDDrEKvlO4vW+GZdfjohTsR8/y8+fIBNtKTrID30892t2OGPZNmCom15cAICyL1l/9of5JUOG52kbUpqQ4XHj2C0NTm/2yEnZtvMaVq4rtnQU68/7JuMauh2WLmo7WJSJR1b/JaCTcFOD2oR0FMNnngRoOt+OQFodSk7PQ5E751bWAHDLUu57fa4657wx+UX2wmDPE1kCK4DMNEffud6QZW0CzyyRpqbn3oUYSXxmTqM6bam17jQuug0DuDPfR+uxa40l2ZvOgdFFRjKWcIfeAg5JQ4W2bHO7ZOphQazJ1FTfhy/HIrImzJ9ZVGif/L4qL8RVHHVAYBeFAlU5i38FAgMBAAGjgfAwge0wDwYDVR0TAQH/BAUwAwEB/zAOBgNVHQ8BAf8EBAMCAYYwHQYDVR0OBBYEFJxfAN+qAdcwKziIorhtSpzyEZGDMB8GA1UdIwQYMBaAFL9ft9HO3R+G9FtVrNzXEMIOqYjnME8GCCsGAQUFBwEBBEMwQTAcBggrBgEFBQcwAYYQaHR0cDovL28uc3MyLnVzLzAhBggrBgEFBQcwAoYVaHR0cDovL3guc3MyLnVzL3guY2VyMCYGA1UdHwQfMB0wG6AZoBeGFWh0dHA6Ly9zLnNzMi51cy9yLmNybDARBgNVHSAECjAIMAYGBFUdIAAwDQYJKoZIhvcNAQELBQADggEBACMd44pXyn3pF3lM8R5V/cxTbj5HD9/GVfKyBDbtgB9TxF00KGu+x1X8Z+rLP3+QsjPNG1gQggL4+C/1E2DUBc7xgQjB3ad1l08YuW3e95ORCLp+QCztweq7dp4zBncdDQh/U90bZKuCJ/Fp1U1ervShw3WnWEQt8jxwmKy6abaVd38PMV4s/KCHOkdp8Hlf9BRUpJVeEXgSYCfOn8J3/yNTd126/+pZ59vPr5KW7ySaNRB6nJHGDn2Z9j8Z3/VyVOEVqQdZe4O/Ui5GjLIAZHYcSNPYeehuVsyuLAOQ1xk4meTKCRlb/weWsKh/NEnfVqn3sF/tM+2MR7cwA130A4w="}],"version":"0303","random":"ea5b849493d1b0d409671d52ff40937d964817534ffbdb4b15ba3ba4d6143f96","selected_cipher_suite":"c02f","compression_method":"00","session_ticket":""}},"reassembly_properties":{"reassembled":true},"src_ip":"99.84.215.242","dst_ip":"192.168.113.237","protocol":6,"src_port":443,"dst_port":56404,"event_start":1565200342.753049} -{"ip":{"version":4,"ttl":64,"id":"d978"},"dns":{"base64":"oV4BAAABAAAAAAAACGdyYXZhdGFyA2NvbQAAAQAB"},"src_ip":"192.168.113.237","dst_ip":"192.168.113.2","protocol":17,"src_port":55844,"dst_port":53,"event_start":1565200343.139712} -{"ip":{"version":4,"ttl":64,"id":"d979"},"dns":{"base64":"krYBAAABAAAAAAAACGdyYXZhdGFyA2NvbQAAHAAB"},"src_ip":"192.168.113.237","dst_ip":"192.168.113.2","protocol":17,"src_port":56525,"dst_port":53,"event_start":1565200343.139875} -{"ip":{"version":4,"ttl":128,"id":"aa93"},"dns":{"base64":"kraBgAABAAAAAQAACGdyYXZhdGFyA2NvbQAAHAABwAwABgABAAAABQAyA25zMQphdXRvbWF0dGljwBUKaG9zdG1hc3RlcsAueFi3pAAAcIAAABwgAAk6gAABUYA="},"src_ip":"192.168.113.2","dst_ip":"192.168.113.237","protocol":17,"src_port":53,"dst_port":56525,"event_start":1565200343.175964} -{"ip":{"version":4,"ttl":128,"id":"aa94"},"dns":{"base64":"oV6BgAABAAQADQAMCGdyYXZhdGFyA2NvbQAAAQABwAwAAQABAAAABQAEwABQ8MAMAAEAAQAAAAUABMAAUO/ADAABAAEAAAAFAATAAFDxwAwAAQABAAAABQAEwABQ8sAVAAIAAQAAAAUAFAFjDGd0bGQtc2VydmVycwNuZXQAwBUAAgABAAAABQAEAWfAbMAVAAIAAQAAAAUABAFiwGzAFQACAAEAAAAFAAQBacBswBUAAgABAAAABQAEAW3AbMAVAAIAAQAAAAUABAFmwGzAFQACAAEAAAAFAAQBa8BswBUAAgABAAAABQAEAWXAbMAVAAIAAQAAAAUABAFowGzAFQACAAEAAAAFAAQBasBswBUAAgABAAAABQAEAWHAbMAVAAIAAQAAAAUABAFkwGzAFQACAAEAAAAFAAQBbMBswRoAAQABAAAABQAEwAUGHsCaAAEAAQAAAAUABMAhDh7AagABAAEAAAAFAATAGlwewSoAAQABAAAABQAEwB9QHsDqAAEAAQAAAAUABMAMXh7AygABAAEAAAAFAATAIzMewIoAAQABAAAABQAEwCpdHsD6AAEAAQAAAAUABMA2cB7AqgABAAEAAAAFAATAK6wewQoAAQABAAAABQAEwDBPHsDaAAEAAQAAAAUABMA0sh7BOgABAAEAAAAFAATAKaIe"},"src_ip":"192.168.113.2","dst_ip":"192.168.113.237","protocol":17,"src_port":53,"dst_port":55844,"event_start":1565200343.185395} -{"ip":{"version":4,"ttl":64,"id":"9424"},"fingerprints":{"tcp":"tcp/(40)()(40)(faf0)((020405b4)(04)(08)(01)(030307))"},"tcp":{"seq":2467516247,"timestamp":{"ts_val":3021056028}},"src_ip":"192.168.113.237","dst_ip":"192.0.80.240","protocol":6,"src_port":49766,"dst_port":443,"event_start":1565200343.185751} -{"ip":{"version":4,"ttl":128,"id":"aa95"},"fingerprints":{"tcp_server":"tcp_server/(40)()(80)(faf0)((020405b4))"},"tcp_server":{"seq":1933834876},"src_ip":"192.0.80.240","dst_ip":"192.168.113.237","protocol":6,"src_port":443,"dst_port":49766,"event_start":1565200343.256569} -{"ip":{"version":4,"ttl":64,"id":"9426"},"fingerprints":{"tls":"tls/(0303)(130213031301c02cc030009fcca9cca8ccaac02bc02f009ec024c028006bc023c0270067c00ac0140039c009c0130033009d009c003d003c0035002f00ff)((0000)(000b000403000102)(000a000c000a001d0017001e00190018)(0023)(0016)(0017)(000d0030002e040305030603080708080809080a080b080408050806040105010601030302030301020103020202040205020602)(002b0009080304030303020301)(002d00020101)(0033))"},"tls":{"client":{"version":"0303","random":"bcb851d13d30e74ef2c56d7c57d3f6c3d6d19789f98adb1bf9c1467fcf5a530e","session_id":"c4fc13292bddadb76b304411b49bb3a237c0c308ecdb23073d6f4861a6ba3d2a","cipher_suites":"130213031301c02cc030009fcca9cca8ccaac02bc02f009ec024c028006bc023c0270067c00ac0140039c009c0130033009d009c003d003c0035002f00ff","compression_methods":"00","server_name":"gravatar.com","session_ticket":"","features":"[\"0303\",\"130213031301c02cc030009fcca9cca8ccaac02bc02f009ec024c028006bc023c0270067c00ac0140039c009c0130033009d009c003d003c0035002f00ff\",[[\"0000\",\"000f00000c67726176617461722e636f6d\"],[\"000b\",\"03000102\"],[\"000a\",\"000a001d0017001e00190018\"],[\"0023\",\"\"],[\"0016\",\"\"],[\"0017\",\"\"],[\"000d\",\"002e040305030603080708080809080a080b080408050806040105010601030302030301020103020202040205020602\"],[\"002b\",\"080304030303020301\"],[\"002d\",\"0101\"],[\"0033\",\"0024001d0020872663e1448200709885d2310741bc2229f8985cd034d93229587fdcc3bd752e\"]]]"}},"src_ip":"192.168.113.237","dst_ip":"192.0.80.240","protocol":6,"src_port":49766,"dst_port":443,"event_start":1565200343.256831} -{"ip":{"version":4,"ttl":128,"id":"aa97"},"fingerprints":{"tls_server":"tls_server/(0303)(1302)((002b00020304)(0033))"},"tls":{"server":{"version":"0303","random":"ba26cadd8c7227cc3880eda7502f27b4118ac4b935686585dad7227387035ea6","selected_cipher_suite":"1302","compression_method":"00"}},"src_ip":"192.0.80.240","dst_ip":"192.168.113.237","protocol":6,"src_port":443,"dst_port":49766,"event_start":1565200343.329185} -{"ip":{"version":4,"ttl":64,"id":"d99d"},"dns":{"base64":"+AsBAAABAAAAAAAAAmVuCGdyYXZhdGFyA2NvbQAAAQAB"},"src_ip":"192.168.113.237","dst_ip":"192.168.113.2","protocol":17,"src_port":49777,"dst_port":53,"event_start":1565200343.485495} -{"ip":{"version":4,"ttl":64,"id":"d99e"},"dns":{"base64":"BIYBAAABAAAAAAAAAmVuCGdyYXZhdGFyA2NvbQAAHAAB"},"src_ip":"192.168.113.237","dst_ip":"192.168.113.2","protocol":17,"src_port":44022,"dst_port":53,"event_start":1565200343.485724} -{"ip":{"version":4,"ttl":128,"id":"aaa3"},"dns":{"base64":"+AuBgAABAAUADQAKAmVuCGdyYXZhdGFyA2NvbQAAAQABwAwABQABAAAABQAFAmxiwA/ALQABAAEAAAAFAATAAFDvwC0AAQABAAAABQAEwABQ8MAtAAEAAQAAAAUABMAAUPHALQABAAEAAAAFAATAAFDywBgAAgABAAAABQAUAWwMZ3RsZC1zZXJ2ZXJzA25ldADAGAACAAEAAAAFAAQBa8CAwBgAAgABAAAABQAEAWjAgMAYAAIAAQAAAAUABAFnwIDAGAACAAEAAAAFAAQBZsCAwBgAAgABAAAABQAEAWLAgMAYAAIAAQAAAAUABAFkwIDAGAACAAEAAAAFAAQBZcCAwBgAAgABAAAABQAEAWrAgMAYAAIAAQAAAAUABAFjwIDAGAACAAEAAAAFAAQBbcCAwBgAAgABAAAABQAEAWHAgMAYAAIAAQAAAAUABAFpwIDBPgABAAEAAAAFAATABQYewN4AAQABAAAABQAEwCEOHsEeAAEAAQAAAAUABMAaXB7A7gABAAEAAAAFAATAH1AewP4AAQABAAAABQAEwAxeHsDOAAEAAQAAAAUABMAjMx7AvgABAAEAAAAFAATAKl0ewK4AAQABAAAABQAEwDZwHsFOAAEAAQAAAAUABMArrB7BDgABAAEAAAAFAATAME8e"},"src_ip":"192.168.113.2","dst_ip":"192.168.113.237","protocol":17,"src_port":53,"dst_port":49777,"event_start":1565200343.540768} -{"ip":{"version":4,"ttl":128,"id":"aaa4"},"dns":{"base64":"BIaBgAABAAEAAQAAAmVuCGdyYXZhdGFyA2NvbQAAHAABwAwABQABAAAABQAFAmxiwA/ADwAGAAEAAAAFADIDbnMxCmF1dG9tYXR0aWPAGApob3N0bWFzdGVywEJ4WLekAABwgAAAHCAACTqAAAFRgA=="},"src_ip":"192.168.113.2","dst_ip":"192.168.113.237","protocol":17,"src_port":53,"dst_port":44022,"event_start":1565200343.541950} -{"ip":{"version":4,"ttl":64,"id":"d99f"},"dns":{"base64":"4CoBAAABAAAAAAAAAmxiCGdyYXZhdGFyA2NvbQAAHAAB"},"src_ip":"192.168.113.237","dst_ip":"192.168.113.2","protocol":17,"src_port":37802,"dst_port":53,"event_start":1565200343.542135} -{"ip":{"version":4,"ttl":128,"id":"aaa5"},"dns":{"base64":"4CqBgAABAAAAAQAAAmxiCGdyYXZhdGFyA2NvbQAAHAABwA8ABgABAAAABQAyA25zMQphdXRvbWF0dGljwBgKaG9zdG1hc3RlcsAxeFi3pAAAcIAAABwgAAk6gAABUYA="},"src_ip":"192.168.113.2","dst_ip":"192.168.113.237","protocol":17,"src_port":53,"dst_port":37802,"event_start":1565200343.574363} -{"ip":{"version":4,"ttl":64,"id":"1f40"},"fingerprints":{"tcp":"tcp/(40)()(40)(faf0)((020405b4)(04)(08)(01)(030307))"},"tcp":{"seq":1330037908,"timestamp":{"ts_val":3699012059}},"src_ip":"192.168.113.237","dst_ip":"192.0.80.242","protocol":6,"src_port":40364,"dst_port":443,"event_start":1565200343.574650} -{"ip":{"version":4,"ttl":128,"id":"aaa6"},"fingerprints":{"tcp_server":"tcp_server/(40)()(80)(faf0)((020405b4))"},"tcp_server":{"seq":4142719719},"src_ip":"192.0.80.242","dst_ip":"192.168.113.237","protocol":6,"src_port":443,"dst_port":40364,"event_start":1565200343.652712} -{"ip":{"version":4,"ttl":64,"id":"1f42"},"fingerprints":{"tls":"tls/(0303)(130213031301c02cc030009fcca9cca8ccaac02bc02f009ec024c028006bc023c0270067c00ac0140039c009c0130033009d009c003d003c0035002f00ff)((0000)(000b000403000102)(000a000c000a001d0017001e00190018)(0023)(0016)(0017)(000d0030002e040305030603080708080809080a080b080408050806040105010601030302030301020103020202040205020602)(002b0009080304030303020301)(002d00020101)(0033))"},"tls":{"client":{"version":"0303","random":"61623a993982be594dfe66a1636fac36739fd25d139171ae0723f4b4b76762d0","session_id":"e04a713039ccd69c86c8f082c87ea69da0d8b1c4087f3a4c2a7cd7fc4c7cbd71","cipher_suites":"130213031301c02cc030009fcca9cca8ccaac02bc02f009ec024c028006bc023c0270067c00ac0140039c009c0130033009d009c003d003c0035002f00ff","compression_methods":"00","server_name":"en.gravatar.com","session_ticket":"","features":"[\"0303\",\"130213031301c02cc030009fcca9cca8ccaac02bc02f009ec024c028006bc023c0270067c00ac0140039c009c0130033009d009c003d003c0035002f00ff\",[[\"0000\",\"001200000f656e2e67726176617461722e636f6d\"],[\"000b\",\"03000102\"],[\"000a\",\"000a001d0017001e00190018\"],[\"0023\",\"\"],[\"0016\",\"\"],[\"0017\",\"\"],[\"000d\",\"002e040305030603080708080809080a080b080408050806040105010601030302030301020103020202040205020602\"],[\"002b\",\"080304030303020301\"],[\"002d\",\"0101\"],[\"0033\",\"0024001d00205b7bc03502da42254709fc60a5c4f17607386d3dfb3f9260fb42fca774ffa456\"]]]"}},"src_ip":"192.168.113.237","dst_ip":"192.0.80.242","protocol":6,"src_port":40364,"dst_port":443,"event_start":1565200343.652953} -{"ip":{"version":4,"ttl":128,"id":"aaa8"},"fingerprints":{"tls_server":"tls_server/(0303)(1302)((002b00020304)(0033))"},"tls":{"server":{"version":"0303","random":"8f8334d3efeb4266f0723aa8d8e5dd185b3f34ee0dcfca11da01423839180486","selected_cipher_suite":"1302","compression_method":"00"}},"src_ip":"192.0.80.242","dst_ip":"192.168.113.237","protocol":6,"src_port":443,"dst_port":40364,"event_start":1565200343.727052} -{"ip":{"version":4,"ttl":64,"id":"d9fc"},"dns":{"base64":"iAIBAAABAAAAAAAADnBhcmtlZC1jb250ZW50B2dvZGFkZHkDY29tAAABAAE="},"src_ip":"192.168.113.237","dst_ip":"192.168.113.2","protocol":17,"src_port":50935,"dst_port":53,"event_start":1565200343.956873} -{"ip":{"version":4,"ttl":64,"id":"d9fd"},"dns":{"base64":"FEQBAAABAAAAAAAADnBhcmtlZC1jb250ZW50B2dvZGFkZHkDY29tAAAcAAE="},"src_ip":"192.168.113.237","dst_ip":"192.168.113.2","protocol":17,"src_port":35338,"dst_port":53,"event_start":1565200343.957135} -{"ip":{"version":4,"ttl":128,"id":"aac6"},"dns":{"base64":"iAKBgAABAAMADQAJDnBhcmtlZC1jb250ZW50B2dvZGFkZHkDY29tAAABAAHADAAFAAEAAAAFACgOcGFya2VkLWNvbnRlbnQHZ29kYWRkeQNjb20HZWRnZWtleQNuZXQAwDgABQABAAAABQAVBWU2MDAxAWEKYWthbWFpZWRnZcBbwGwAAQABAAAABQAEF0NiasBbAAIAAQAAAAUAEQFhDGd0bGQtc2VydmVyc8BbwFsAAgABAAAABQAEAWrAn8BbAAIAAQAAAAUABAFtwJ/AWwACAAEAAAAFAAQBacCfwFsAAgABAAAABQAEAWzAn8BbAAIAAQAAAAUABAFnwJ/AWwACAAEAAAAFAAQBZsCfwFsAAgABAAAABQAEAWjAn8BbAAIAAQAAAAUABAFrwJ/AWwACAAEAAAAFAAQBZcCfwFsAAgABAAAABQAEAWLAn8BbAAIAAQAAAAUABAFjwJ/AWwACAAEAAAAFAAQBZMCfwJ0AAQABAAAABQAEwAUGHsFKAAEAAQAAAAUABMAhDh7BWgABAAEAAAAFAATAGlwewWoAAQABAAAABQAEwB9QHsE6AAEAAQAAAAUABMAMXh7BCgABAAEAAAAFAATAIzMewPoAAQABAAAABQAEwCpdHsEaAAEAAQAAAAUABMA2cB7A2gABAAEAAAAFAATAK6we"},"src_ip":"192.168.113.2","dst_ip":"192.168.113.237","protocol":17,"src_port":53,"dst_port":50935,"event_start":1565200344.004925} -{"ip":{"version":4,"ttl":128,"id":"aac8"},"dns":{"base64":"FESBgAABAAIAAQAADnBhcmtlZC1jb250ZW50B2dvZGFkZHkDY29tAAAcAAHADAAFAAEAAAAFACgOcGFya2VkLWNvbnRlbnQHZ29kYWRkeQNjb20HZWRnZWtleQNuZXQAwDgABQABAAAABQAVBWU2MDAxAWEKYWthbWFpZWRnZcBbwHIABgABAAAABQAuA24wYcB0Cmhvc3RtYXN0ZXIGYWthbWFpwCNdSwygAAAD6AAAA+gAAAPoAAAHCA=="},"src_ip":"192.168.113.2","dst_ip":"192.168.113.237","protocol":17,"src_port":53,"dst_port":35338,"event_start":1565200344.069921} -{"ip":{"version":4,"ttl":64,"id":"da0b"},"dns":{"base64":"s8cBAAABAAAAAAAABWU2MDAxAWEKYWthbWFpZWRnZQNuZXQAABwAAQ=="},"src_ip":"192.168.113.237","dst_ip":"192.168.113.2","protocol":17,"src_port":47901,"dst_port":53,"event_start":1565200344.070252} -{"ip":{"version":4,"ttl":128,"id":"aac9"},"dns":{"base64":"s8eBgAABAAAAAQAABWU2MDAxAWEKYWthbWFpZWRnZQNuZXQAABwAAcASAAYAAQAAAAUAMQNuMGHAFApob3N0bWFzdGVyBmFrYW1haQNjb20AXUsMoAAAA+gAAAPoAAAD6AAABwg="},"src_ip":"192.168.113.2","dst_ip":"192.168.113.237","protocol":17,"src_port":53,"dst_port":47901,"event_start":1565200344.104356} -{"ip":{"version":4,"ttl":64,"id":"0fd2"},"fingerprints":{"tcp":"tcp/(40)()(40)(faf0)((020405b4)(04)(08)(01)(030307))"},"tcp":{"seq":3636646794,"timestamp":{"ts_val":2594833852}},"src_ip":"192.168.113.237","dst_ip":"23.67.98.106","protocol":6,"src_port":58940,"dst_port":443,"event_start":1565200344.104576} -{"ip":{"version":4,"ttl":128,"id":"aaca"},"fingerprints":{"tcp_server":"tcp_server/(40)()(80)(faf0)((020405b4))"},"tcp_server":{"seq":1017992412},"src_ip":"23.67.98.106","dst_ip":"192.168.113.237","protocol":6,"src_port":443,"dst_port":58940,"event_start":1565200344.148997} -{"ip":{"version":4,"ttl":64,"id":"0fd4"},"fingerprints":{"tls":"tls/(0303)(130213031301c02cc030009fcca9cca8ccaac02bc02f009ec024c028006bc023c0270067c00ac0140039c009c0130033009d009c003d003c0035002f00ff)((0000)(000b000403000102)(000a000c000a001d0017001e00190018)(0023)(0016)(0017)(000d0030002e040305030603080708080809080a080b080408050806040105010601030302030301020103020202040205020602)(002b0009080304030303020301)(002d00020101)(0033))"},"tls":{"client":{"version":"0303","random":"87579905baaf56dd50abade03edbe540d95f9bb7ce775317980429717da67810","session_id":"206fabaa0563a9a125084fdcab4dc405c8ab9f8593c5bf896fa65b0881d8291a","cipher_suites":"130213031301c02cc030009fcca9cca8ccaac02bc02f009ec024c028006bc023c0270067c00ac0140039c009c0130033009d009c003d003c0035002f00ff","compression_methods":"00","server_name":"parked-content.godaddy.com","session_ticket":"","features":"[\"0303\",\"130213031301c02cc030009fcca9cca8ccaac02bc02f009ec024c028006bc023c0270067c00ac0140039c009c0130033009d009c003d003c0035002f00ff\",[[\"0000\",\"001d00001a7061726b65642d636f6e74656e742e676f64616464792e636f6d\"],[\"000b\",\"03000102\"],[\"000a\",\"000a001d0017001e00190018\"],[\"0023\",\"\"],[\"0016\",\"\"],[\"0017\",\"\"],[\"000d\",\"002e040305030603080708080809080a080b080408050806040105010601030302030301020103020202040205020602\"],[\"002b\",\"080304030303020301\"],[\"002d\",\"0101\"],[\"0033\",\"0024001d002043bca9facd867ce6904b317183416e2bdd11a0e8d43546e7ea617d13da03b77b\"]]]"}},"src_ip":"192.168.113.237","dst_ip":"23.67.98.106","protocol":6,"src_port":58940,"dst_port":443,"event_start":1565200344.149261} -{"ip":{"version":4,"ttl":128,"id":"aace"},"fingerprints":{"tls_server":"tls_server/(0303)(c030)((ff01)(0000)(000b000403000102)(0023))"},"tls":{"server":{"certs":[{"base64":"MIIG1DCCBbygAwIBAgIIGC58kEbr9U0wDQYJKoZIhvcNAQELBQAwgbQxCzAJBgNVBAYTAlVTMRAwDgYDVQQIEwdBcml6b25hMRMwEQYDVQQHEwpTY290dHNkYWxlMRowGAYDVQQKExFHb0RhZGR5LmNvbSwgSW5jLjEtMCsGA1UECxMkaHR0cDovL2NlcnRzLmdvZGFkZHkuY29tL3JlcG9zaXRvcnkvMTMwMQYDVQQDEypHbyBEYWRkeSBTZWN1cmUgQ2VydGlmaWNhdGUgQXV0aG9yaXR5IC0gRzIwHhcNMTkwMjEyMjIzOTA0WhcNMjEwMjEyMjIzOTA0WjBjMQswCQYDVQQGEwJVUzEQMA4GA1UECBMHQXJpem9uYTETMBEGA1UEBxMKU2NvdHRzZGFsZTEVMBMGA1UEChMMR29EYWRkeSBJTkMuMRYwFAYDVQQDDA0qLmdvZGFkZHkuY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAr6Rks2Tbs+DYreyTFDcitH1PN4FdPmW8C8h/AYXAdG9csWK6YUe+pCRutxMLgaz0a/Ky85BG7kawIgKUjZILJxsD0W9sC/GHLdFXi5NtTJUK6WOViVHeiPj+Ov0i/7IlrVP6s6oqokBA66TLLVw0MnZOTVLkmOlYnxOkj/C+bhZf4MU/9Zy8z2J/v/mXBsPhfI73faVXhTChCRuQX0FA5fFhXjd2ipi3SP20mhWDLp008FxOGvSSDhXQnSWAF5jsgZ6DgoNqnrUzw/3uP5/3fAj3QqlZ1xw0cZVOuuoTwZMsxjH8dQrMz8PjGk7DriD3VXAzzMHupDML6R+r533SgwIDAQABo4IDODCCAzQwDAYDVR0TAQH/BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH/BAQDAgWgMDYGA1UdHwQvMC0wK6ApoCeGJWh0dHA6Ly9jcmwuZ29kYWRkeS5jb20vZ2RpZzJzMi0xMy5jcmwwXQYDVR0gBFYwVDBIBgtghkgBhv1tAQcXAjA5MDcGCCsGAQUFBwIBFitodHRwOi8vY2VydGlmaWNhdGVzLmdvZGFkZHkuY29tL3JlcG9zaXRvcnkvMAgGBmeBDAECAjB2BggrBgEFBQcBAQRqMGgwJAYIKwYBBQUHMAGGGGh0dHA6Ly9vY3NwLmdvZGFkZHkuY29tLzBABggrBgEFBQcwAoY0aHR0cDovL2NlcnRpZmljYXRlcy5nb2RhZGR5LmNvbS9yZXBvc2l0b3J5L2dkaWcyLmNydDAfBgNVHSMEGDAWgBRAwr0njsw0gzCiM9f7bLPwtCyAzjAlBgNVHREEHjAcgg0qLmdvZGFkZHkuY29tggtnb2RhZGR5LmNvbTAdBgNVHQ4EFgQUt6ZsfAL5i/ofSFphx3Gp2BdmMmIwggF9BgorBgEEAdZ5AgQCBIIBbQSCAWkBZwB2AKS5CZC0GFgUh7sTosxncAo8NZgE+RvfuON3zQ7IDdwQAAABaOPdGowAAAQDAEcwRQIhAMxX2XWyBa9Tn2kbG6o4HKnnYUZX35JOq57J+IpvZBx/AiAhyVYLWtPilAGU+p/F0YA/vkmayeEWStu/CjUfYsp0sQB1AO5Lvbd1zmC64UJpH6vhnmajD35fsHLYgwDEe4l6qP3LAAABaOPdHjsAAAQDAEYwRAIgWkQUZ163dVmbri6YWXhiABP2sT4+0deGa68TBuyOnMICIFxRtvIH3BmjhyymOOQTV2TQKmRGkvnFWVM06U0Ymv9ZAHYARJRlLrDuzq/EQAfYqP4owNrmgr7YyzG1P9MzlrW2gagAAAFo490ivAAABAMARzBFAiA3u9e2u7/zy6bmvj1mtciIEAIi7Tght5t2dKtMr6Oo8QIhAOI7Ylq0KUDCvFJUTFJ9BtcPDmAUcHiFHN6YX7cNgkm4MA0GCSqGSIb3DQEBCwUAA4IBAQCuEZMYHRyIsl5gftGz6R5DMDUaGDeshChb5oWMTErkuqJ+vqG4rnHy6RI2MZoMRD0MsdFBv49guEhJChqNQO++A1BW+AYSJqY/tWuE/KD0VcwmVjtPFer1tt6pYZYHqVqSaoRuUlnxiAv7YqiT3ledmIhgr3GLjuXe4nAfRSYK423rHWDhbdsZm+u9n8Hb70Sk9W49CXEyM3IqwYkMTH81HbMcWLHI3Ctp7hDnvvRyJ7tRIvvva5ZNCl1ruzm8ud+LJzEY9em/t2/41nzr9C1rK6nOiGRPkVFtqHGCxi+uR+PTnlM9E0QexuziCIS5xArv8fH5OjDxJJLrELIrex92"},{"base64":"MIIE0DCCA7igAwIBAgIBBzANBgkqhkiG9w0BAQsFADCBgzELMAkGA1UEBhMCVVMxEDAOBgNVBAgTB0FyaXpvbmExEzARBgNVBAcTClNjb3R0c2RhbGUxGjAYBgNVBAoTEUdvRGFkZHkuY29tLCBJbmMuMTEwLwYDVQQDEyhHbyBEYWRkeSBSb290IENlcnRpZmljYXRlIEF1dGhvcml0eSAtIEcyMB4XDTExMDUwMzA3MDAwMFoXDTMxMDUwMzA3MDAwMFowgbQxCzAJBgNVBAYTAlVTMRAwDgYDVQQIEwdBcml6b25hMRMwEQYDVQQHEwpTY290dHNkYWxlMRowGAYDVQQKExFHb0RhZGR5LmNvbSwgSW5jLjEtMCsGA1UECxMkaHR0cDovL2NlcnRzLmdvZGFkZHkuY29tL3JlcG9zaXRvcnkvMTMwMQYDVQQDEypHbyBEYWRkeSBTZWN1cmUgQ2VydGlmaWNhdGUgQXV0aG9yaXR5IC0gRzIwggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQC54MsQ1K92vdSTYuswZLiBCGzDBNliF44v/z5lz4/OYuY8UhzaFkVLVat4a2ODYpDOD2lsmcgaFItMzEUz6ojcnqOvK/6AYZ15V8TPLvQ/MDxdR/yaFrzDN5ZBUY4RS1T4KL7QjL7wMDge87Am+GZHY23ecSZHjzhHU9FGHbTj3ADqRay9vHHZqm8A29vNMDp5T19MR/gd71vCxJ1gO7GyQ5HYpDNO6rPWJ0+tJYqlxvTV0KaudAVkV4i1RFXULSo6Pvi4vekyCgKUZMQWOlDxSq7neTOvDCAHf+jfBDnCaQJsY1L6d8EbyHSHyLmTGFBUNUtpTrw700kuH9zB0lL7AgMBAAGjggEaMIIBFjAPBgNVHRMBAf8EBTADAQH/MA4GA1UdDwEB/wQEAwIBBjAdBgNVHQ4EFgQUQMK9J47MNIMwojPX+2yz8LQsgM4wHwYDVR0jBBgwFoAUOpqFBxBnKLbv9r0FQW4gwZTaD94wNAYIKwYBBQUHAQEEKDAmMCQGCCsGAQUFBzABhhhodHRwOi8vb2NzcC5nb2RhZGR5LmNvbS8wNQYDVR0fBC4wLDAqoCigJoYkaHR0cDovL2NybC5nb2RhZGR5LmNvbS9nZHJvb3QtZzIuY3JsMEYGA1UdIAQ/MD0wOwYEVR0gADAzMDEGCCsGAQUFBwIBFiVodHRwczovL2NlcnRzLmdvZGFkZHkuY29tL3JlcG9zaXRvcnkvMA0GCSqGSIb3DQEBCwUAA4IBAQAIfmyTEMg4uJapkEv/oV9PBO9sPpyIBslQj6Zz91cxG7685C/b+LrTW+C05+Z5Yg4MotdqY3MxtfWoSKQ7CC2iXZDXtHwlTxFWMMS2RJ17LJ3lXubvDGGqv+QqG+6EnriDfcFDzkSnE3ANkR/0yBOtg2DZ2HKocyQetawiDsoXiWJYRBuriSUBAA/NxBti21G00w9RKpv0vHP8ds42pM3Z2Czqrpv1KrKQ0U11GIo/ikGQI31bS/6kA1ibRrLDYGCD+H1QQc7CoZDDu+8CL9IVVO5EFdkKrqeKM+2xLXY2JtwE65/3YR8V3Idv7kaWKK2hJn0KCacuBKONvPi8BDAB"}],"version":"0303","random":"67ad1a7bb0556e9520178ed3fd98f1374a10a1942e319c774347392a52998b79","selected_cipher_suite":"c030","compression_method":"00","session_ticket":""}},"reassembly_properties":{"reassembled":true},"src_ip":"23.67.98.106","dst_ip":"192.168.113.237","protocol":6,"src_port":443,"dst_port":58940,"event_start":1565200344.194201} -{"ip":{"version":4,"ttl":64,"id":"da39"},"dns":{"base64":"z/IBAAABAAAAAAAAAnczA29yZwAAAQAB"},"src_ip":"192.168.113.237","dst_ip":"192.168.113.2","protocol":17,"src_port":35956,"dst_port":53,"event_start":1565200344.560780} -{"ip":{"version":4,"ttl":64,"id":"da3a"},"dns":{"base64":"aEIBAAABAAAAAAAAAnczA29yZwAAHAAB"},"src_ip":"192.168.113.237","dst_ip":"192.168.113.2","protocol":17,"src_port":51954,"dst_port":53,"event_start":1565200344.560938} -{"ip":{"version":4,"ttl":128,"id":"aad5"},"dns":{"base64":"z/KBgAABAAEABgAFAnczA29yZwAAAQABwAwAAQABAAAABQAEgB40ZMAPAAIAAQAAAAUAGQJhMANvcmcLYWZpbGlhcy1uc3QEaW5mbwDADwACAAEAAAAFAAUCYzDAN8APAAIAAQAAAAUAFQJkMANvcmcLYWZpbGlhcy1uc3TAD8APAAIAAQAAAAUABQJiMMBtwA8AAgABAAAABQAFAmEywDfADwACAAEAAAAFAAUCYjLAbcCLAAEAAQAAAAUABMcTNgHAWQABAAEAAAAFAATHEzUBwJwAHAABAAAABQAQIAEFAABAAAAAAAAAAAAAAcCLABwAAQAAAAUAECABBQAADAAAAAAAAAAAAAHAWQAcAAEAAAAFABAgAQUAAAsAAAAAAAAAAAAB"},"src_ip":"192.168.113.2","dst_ip":"192.168.113.237","protocol":17,"src_port":53,"dst_port":35956,"event_start":1565200344.561545} -{"ip":{"version":4,"ttl":128,"id":"aad6"},"dns":{"base64":"aEKBgAABAAEABgAMAnczA29yZwAAHAABwAwAHAABAAAABQAQJgNACv//CASAHgA0AAAAZMAPAAIAAQAAAAUAFQJiMANvcmcLYWZpbGlhcy1uc3TAD8APAAIAAQAAAAUABQJiMsBDwA8AAgABAAAABQAZAmMwA29yZwthZmlsaWFzLW5zdARpbmZvAMAPAAIAAQAAAAUABQJhMMB1wA8AAgABAAAABQAFAmEywHXADwACAAEAAAAFAAUCZDDAQ8CXAAEAAQAAAAUABMcTOAHAqAABAAEAAAAFAATH+XABwEAAAQABAAAABQAExxM2AcBhAAEAAQAAAAUABMf5eAHAcgABAAEAAAAFAATHEzUBwLkAAQABAAAABQAExxM5AcCXABwAAQAAAAUAECABBQAADgAAAAAAAAAAAAHAqAAcAAEAAAAFABAgAQUAAEAAAAAAAAAAAAABwEAAHAABAAAABQAQIAEFAAAMAAAAAAAAAAAAAcBhABwAAQAAAAUAECABBQAASAAAAAAAAAAAAAHAcgAcAAEAAAAFABAgAQUAAAsAAAAAAAAAAAABwLkAHAABAAAABQAQIAEFAAAPAAAAAAAAAAAAAQ=="},"src_ip":"192.168.113.2","dst_ip":"192.168.113.237","protocol":17,"src_port":53,"dst_port":51954,"event_start":1565200344.561553} -{"ip":{"version":4,"ttl":64,"id":"cb13"},"fingerprints":{"tcp":"tcp/(40)()(40)(faf0)((020405b4)(04)(08)(01)(030307))"},"tcp":{"seq":3099400152,"timestamp":{"ts_val":2052283734}},"src_ip":"192.168.113.237","dst_ip":"128.30.52.100","protocol":6,"src_port":39040,"dst_port":443,"event_start":1565200344.561952} -{"ip":{"version":4,"ttl":64,"id":"cb14"},"fingerprints":{"tcp":"tcp/(40)()(40)(faf0)((020405b4)(04)(08)(01)(030307))"},"tcp":{"seq":3099400152,"timestamp":{"ts_val":2052284746}},"src_ip":"192.168.113.237","dst_ip":"128.30.52.100","protocol":6,"src_port":39040,"dst_port":443,"event_start":1565200345.573818} -{"ip":{"version":4,"ttl":64,"id":"cb15"},"fingerprints":{"tcp":"tcp/(40)()(40)(faf0)((020405b4)(04)(08)(01)(030307))"},"tcp":{"seq":3099400152,"timestamp":{"ts_val":2052286762}},"src_ip":"192.168.113.237","dst_ip":"128.30.52.100","protocol":6,"src_port":39040,"dst_port":443,"event_start":1565200347.589756} -{"ip":{"version":4,"ttl":64,"id":"cb16"},"fingerprints":{"tcp":"tcp/(40)()(40)(faf0)((020405b4)(04)(08)(01)(030307))"},"tcp":{"seq":3099400152,"timestamp":{"ts_val":2052290859}},"src_ip":"192.168.113.237","dst_ip":"128.30.52.100","protocol":6,"src_port":39040,"dst_port":443,"event_start":1565200351.686850} -{"ip":{"version":4,"ttl":64,"id":"cb17"},"fingerprints":{"tcp":"tcp/(40)()(40)(faf0)((020405b4)(04)(08)(01)(030307))"},"tcp":{"seq":3099400152,"timestamp":{"ts_val":2052299050}},"src_ip":"192.168.113.237","dst_ip":"128.30.52.100","protocol":6,"src_port":39040,"dst_port":443,"event_start":1565200359.877877} -{"ip":{"version":4,"ttl":64,"id":"cb18"},"fingerprints":{"tcp":"tcp/(40)()(40)(faf0)((020405b4)(04)(08)(01)(030307))"},"tcp":{"seq":3099400152,"timestamp":{"ts_val":2052315180}},"src_ip":"192.168.113.237","dst_ip":"128.30.52.100","protocol":6,"src_port":39040,"dst_port":443,"event_start":1565200376.007624} -{"ip":{"version":4,"ttl":64,"id":"cb19"},"fingerprints":{"tcp":"tcp/(40)()(40)(faf0)((020405b4)(04)(08)(01)(030307))"},"tcp":{"seq":3099400152,"timestamp":{"ts_val":2052348459}},"src_ip":"192.168.113.237","dst_ip":"128.30.52.100","protocol":6,"src_port":39040,"dst_port":443,"event_start":1565200409.286036} +{"dns":{"base64":"2PsBAAABAAAAAAAABmdvb2dsZQNjb20AAAEAAQ=="},"ip":{"version":4,"ttl":64,"id":"cb33"},"src_ip":"192.168.113.237","dst_ip":"192.168.113.2","protocol":17,"src_port":40385,"dst_port":53,"event_start":1565200314.189422} +{"dns":{"base64":"90ABAAABAAAAAAAABmdvb2dsZQNjb20AABwAAQ=="},"ip":{"version":4,"ttl":64,"id":"cb34"},"src_ip":"192.168.113.237","dst_ip":"192.168.113.2","protocol":17,"src_port":37225,"dst_port":53,"event_start":1565200314.189603} +{"dns":{"base64":"90CBgAABAAEADQANBmdvb2dsZQNjb20AABwAAcAMABwAAQAAAAUAECYH+LBABAgQAAAAAAAAIA7AEwACAAEAAAAFABQBYwxndGxkLXNlcnZlcnMDbmV0AMATAAIAAQAAAAUABAFpwEbAEwACAAEAAAAFAAQBZsBGwBMAAgABAAAABQAEAWHARsATAAIAAQAAAAUABAFswEbAEwACAAEAAAAFAAQBa8BGwBMAAgABAAAABQAEAW3ARsATAAIAAQAAAAUABAFlwEbAEwACAAEAAAAFAAQBYsBGwBMAAgABAAAABQAEAWjARsATAAIAAQAAAAUABAFnwEbAEwACAAEAAAAFAAQBasBGwBMAAgABAAAABQAEAWTARsCEAAEAAQAAAAUABMAFBh7A1AABAAEAAAAFAATAIQ4ewEQAAQABAAAABQAEwBpcHsEUAAEAAQAAAAUABMAfUB7AxAABAAEAAAAFAATADF4ewHQAAQABAAAABQAEwCMzHsD0AAEAAQAAAAUABMAqXR7A5AABAAEAAAAFAATANnAewGQAAQABAAAABQAEwCusHsEEAAEAAQAAAAUABMAwTx7ApAABAAEAAAAFAATANLIewJQAAQABAAAABQAEwCmiHsC0AAEAAQAAAAUABMA3Ux4="},"ip":{"version":4,"ttl":128,"id":"95ad"},"src_ip":"192.168.113.2","dst_ip":"192.168.113.237","protocol":17,"src_port":53,"dst_port":37225,"event_start":1565200314.223537} +{"dns":{"base64":"2PuBgAABAAEADQAOBmdvb2dsZQNjb20AAAEAAcAMAAEAAQAAAAUABKzZD07AEwACAAEAAAAFABQBaQxndGxkLXNlcnZlcnMDbmV0AMATAAIAAQAAAAUABAFhwDrAEwACAAEAAAAFAAQBbcA6wBMAAgABAAAABQAEAWvAOsATAAIAAQAAAAUABAFqwDrAEwACAAEAAAAFAAQBY8A6wBMAAgABAAAABQAEAWLAOsATAAIAAQAAAAUABAFnwDrAEwACAAEAAAAFAAQBbMA6wBMAAgABAAAABQAEAWXAOsATAAIAAQAAAAUABAFowDrAEwACAAEAAAAFAAQBZMA6wBMAAgABAAAABQAEAWbAOsBYAAEAAQAAAAUABMAFBh7AqAABAAEAAAAFAATAIQ4ewJgAAQABAAAABQAEwBpcHsD4AAEAAQAAAAUABMAfUB7A2AABAAEAAAAFAATADF4ewQgAAQABAAAABQAEwCMzHsC4AAEAAQAAAAUABMAqXR7A6AABAAEAAAAFAATANnAewDgAAQABAAAABQAEwCusHsCIAAEAAQAAAAUABMAwTx7AeAABAAEAAAAFAATANLIewMgAAQABAAAABQAEwCmiHsBoAAEAAQAAAAUABMA3Ux7AWAAcAAEAAAAFABAgAQUDqD4AAAAAAAAAAgAw"},"ip":{"version":4,"ttl":128,"id":"95ae"},"src_ip":"192.168.113.2","dst_ip":"192.168.113.237","protocol":17,"src_port":53,"dst_port":40385,"event_start":1565200314.223559} +{"fingerprints":{"tcp":"tcp/(40)()(40)(faf0)((020405b4)(04)(08)(01)(030307))"},"tcp":{"seq":2628505832,"timestamp":{"ts_val":3222370320}},"ip":{"version":4,"ttl":64,"id":"6fc2"},"src_ip":"192.168.113.237","dst_ip":"172.217.15.78","protocol":6,"src_port":38790,"dst_port":443,"event_start":1565200314.224204} +{"fingerprints":{"tcp_server":"tcp_server/(40)()(80)(faf0)((020405b4))"},"tcp_server":{"seq":1565659668},"ip":{"version":4,"ttl":128,"id":"95af"},"src_ip":"172.217.15.78","dst_ip":"192.168.113.237","protocol":6,"src_port":443,"dst_port":38790,"event_start":1565200314.265142} +{"fingerprints":{"tls":"tls/(0303)(130213031301c02cc030009fcca9cca8ccaac02bc02f009ec024c028006bc023c0270067c00ac0140039c009c0130033009d009c003d003c0035002f00ff)((0000)(000b000403000102)(000a000c000a001d0017001e00190018)(0023)(0016)(0017)(000d0030002e040305030603080708080809080a080b080408050806040105010601030302030301020103020202040205020602)(002b0009080304030303020301)(002d00020101)(0033))"},"tls":{"client":{"version":"0303","random":"b3afd945f15e47a81a8c87eb4a8f47b04cd087a2e4b67f3bbefae8ab4c472f0c","session_id":"e5d2be5888a873a7753789438a91eafe22564432b617a5ebcadc7f026d37238f","cipher_suites":"130213031301c02cc030009fcca9cca8ccaac02bc02f009ec024c028006bc023c0270067c00ac0140039c009c0130033009d009c003d003c0035002f00ff","compression_methods":"00","server_name":"google.com","session_ticket":"","features":"[\"0303\",\"130213031301c02cc030009fcca9cca8ccaac02bc02f009ec024c028006bc023c0270067c00ac0140039c009c0130033009d009c003d003c0035002f00ff\",[[\"0000\",\"000d00000a676f6f676c652e636f6d\"],[\"000b\",\"03000102\"],[\"000a\",\"000a001d0017001e00190018\"],[\"0023\",\"\"],[\"0016\",\"\"],[\"0017\",\"\"],[\"000d\",\"002e040305030603080708080809080a080b080408050806040105010601030302030301020103020202040205020602\"],[\"002b\",\"080304030303020301\"],[\"002d\",\"0101\"],[\"0033\",\"0024001d0020805c0a9ffdbbf9105e81c0d7b1bcccf206d0c67996badc5bf4ff673caa8e3f3c\"]]]"}},"ip":{"version":4,"ttl":64,"id":"6fc4"},"src_ip":"192.168.113.237","dst_ip":"172.217.15.78","protocol":6,"src_port":38790,"dst_port":443,"event_start":1565200314.266206} +{"fingerprints":{"tls_server":"tls_server/(0303)(1302)((0033)(002b00020304))"},"tls":{"server":{"version":"0303","random":"ca69e50980b662ea2b56531b55751af5717e9edc7baf2c1cbd43338aa0f0c860","selected_cipher_suite":"1302","compression_method":"00"}},"ip":{"version":4,"ttl":128,"id":"95b1"},"src_ip":"172.217.15.78","dst_ip":"192.168.113.237","protocol":6,"src_port":443,"dst_port":38790,"event_start":1565200314.317713} +{"dns":{"base64":"luQBAAABAAAAAAAAA3d3dwZnb29nbGUDY29tAAABAAE="},"ip":{"version":4,"ttl":64,"id":"cb66"},"src_ip":"192.168.113.237","dst_ip":"192.168.113.2","protocol":17,"src_port":46063,"dst_port":53,"event_start":1565200314.423451} +{"dns":{"base64":"k/4BAAABAAAAAAAAA3d3dwZnb29nbGUDY29tAAAcAAE="},"ip":{"version":4,"ttl":64,"id":"cb67"},"src_ip":"192.168.113.237","dst_ip":"192.168.113.2","protocol":17,"src_port":56316,"dst_port":53,"event_start":1565200314.423636} +{"dns":{"base64":"k/6BgAABAAEADQANA3d3dwZnb29nbGUDY29tAAAcAAHADAAcAAEAAAAFABAmB/iwQAQIAgAAAAAAACAEwBcAAgABAAAABQAUAWsMZ3RsZC1zZXJ2ZXJzA25ldADAFwACAAEAAAAFAAQBbcBKwBcAAgABAAAABQAEAWnASsAXAAIAAQAAAAUABAFowErAFwACAAEAAAAFAAQBasBKwBcAAgABAAAABQAEAWLASsAXAAIAAQAAAAUABAFhwErAFwACAAEAAAAFAAQBY8BKwBcAAgABAAAABQAEAWbASsAXAAIAAQAAAAUABAFswErAFwACAAEAAAAFAAQBZMBKwBcAAgABAAAABQAEAWfASsAXAAIAAQAAAAUABAFlwErAuAABAAEAAAAFAATABQYewKgAAQABAAAABQAEwCEOHsDIAAEAAQAAAAUABMAaXB7A+AABAAEAAAAFAATAH1AewRgAAQABAAAABQAEwAxeHsDYAAEAAQAAAAUABMAjMx7BCAABAAEAAAAFAATAKl0ewIgAAQABAAAABQAEwDZwHsB4AAEAAQAAAAUABMArrB7AmAABAAEAAAAFAATAME8ewEgAAQABAAAABQAEwDSyHsDoAAEAAQAAAAUABMApoh7AaAABAAEAAAAFAATAN1Me"},"ip":{"version":4,"ttl":128,"id":"95b7"},"src_ip":"192.168.113.2","dst_ip":"192.168.113.237","protocol":17,"src_port":53,"dst_port":56316,"event_start":1565200314.453475} +{"dns":{"base64":"luSBgAABAAEADQAOA3d3dwZnb29nbGUDY29tAAABAAHADAABAAEAAAAFAASs2QfkwBcAAgABAAAABQAUAWkMZ3RsZC1zZXJ2ZXJzA25ldADAFwACAAEAAAAFAAQBY8A+wBcAAgABAAAABQAEAW3APsAXAAIAAQAAAAUABAFowD7AFwACAAEAAAAFAAQBZcA+wBcAAgABAAAABQAEAWvAPsAXAAIAAQAAAAUABAFhwD7AFwACAAEAAAAFAAQBYsA+wBcAAgABAAAABQAEAWzAPsAXAAIAAQAAAAUABAFqwD7AFwACAAEAAAAFAAQBZMA+wBcAAgABAAAABQAEAWfAPsAXAAIAAQAAAAUABAFmwD7ArAABAAEAAAAFAATABQYewLwAAQABAAAABQAEwCEOHsBcAAEAAQAAAAUABMAaXB7A7AABAAEAAAAFAATAH1AewIwAAQABAAAABQAEwAxeHsEMAAEAAQAAAAUABMAjMx7A/AABAAEAAAAFAATAKl0ewHwAAQABAAAABQAEwDZwHsA8AAEAAQAAAAUABMArrB7A3AABAAEAAAAFAATAME8ewJwAAQABAAAABQAEwDSyHsDMAAEAAQAAAAUABMApoh7AbAABAAEAAAAFAATAN1MewKwAHAABAAAABQAQIAEFA6g+AAAAAAAAAAIAMA=="},"ip":{"version":4,"ttl":128,"id":"95b8"},"src_ip":"192.168.113.2","dst_ip":"192.168.113.237","protocol":17,"src_port":53,"dst_port":46063,"event_start":1565200314.456423} +{"fingerprints":{"tcp":"tcp/(40)()(40)(faf0)((020405b4)(04)(08)(01)(030307))"},"tcp":{"seq":4039626618,"timestamp":{"ts_val":2521247006}},"ip":{"version":4,"ttl":64,"id":"701e"},"src_ip":"192.168.113.237","dst_ip":"172.217.7.228","protocol":6,"src_port":55912,"dst_port":443,"event_start":1565200314.456864} +{"fingerprints":{"tcp_server":"tcp_server/(40)()(80)(faf0)((020405b4))"},"tcp_server":{"seq":1859150137},"ip":{"version":4,"ttl":128,"id":"95b9"},"src_ip":"172.217.7.228","dst_ip":"192.168.113.237","protocol":6,"src_port":443,"dst_port":55912,"event_start":1565200314.495636} +{"fingerprints":{"tls":"tls/(0303)(130213031301c02cc030009fcca9cca8ccaac02bc02f009ec024c028006bc023c0270067c00ac0140039c009c0130033009d009c003d003c0035002f00ff)((0000)(000b000403000102)(000a000c000a001d0017001e00190018)(0023)(0016)(0017)(000d0030002e040305030603080708080809080a080b080408050806040105010601030302030301020103020202040205020602)(002b0009080304030303020301)(002d00020101)(0033))"},"tls":{"client":{"version":"0303","random":"5dd16d6f6b9bc04aa3112fad30f2dbcad01fa5bca2a8475a2588f9832b48e665","session_id":"b5243f5add1d65f4432d99a47c0484e34e8ceaa798689de737ed3353ea173119","cipher_suites":"130213031301c02cc030009fcca9cca8ccaac02bc02f009ec024c028006bc023c0270067c00ac0140039c009c0130033009d009c003d003c0035002f00ff","compression_methods":"00","server_name":"www.google.com","session_ticket":"","features":"[\"0303\",\"130213031301c02cc030009fcca9cca8ccaac02bc02f009ec024c028006bc023c0270067c00ac0140039c009c0130033009d009c003d003c0035002f00ff\",[[\"0000\",\"001100000e7777772e676f6f676c652e636f6d\"],[\"000b\",\"03000102\"],[\"000a\",\"000a001d0017001e00190018\"],[\"0023\",\"\"],[\"0016\",\"\"],[\"0017\",\"\"],[\"000d\",\"002e040305030603080708080809080a080b080408050806040105010601030302030301020103020202040205020602\"],[\"002b\",\"080304030303020301\"],[\"002d\",\"0101\"],[\"0033\",\"0024001d00204492fb896193e839ecc7241e09656e38ca2b30f7505385a2fceed992bd150029\"]]]"}},"ip":{"version":4,"ttl":64,"id":"7020"},"src_ip":"192.168.113.237","dst_ip":"172.217.7.228","protocol":6,"src_port":55912,"dst_port":443,"event_start":1565200314.496049} +{"fingerprints":{"tls_server":"tls_server/(0303)(1302)((0033)(002b00020304))"},"tls":{"server":{"version":"0303","random":"4873766451cd7ea7f40aa4015ec9eb69106f6c3637ebc43257baa5b9ea065cfa","selected_cipher_suite":"1302","compression_method":"00"}},"ip":{"version":4,"ttl":128,"id":"95bb"},"src_ip":"172.217.7.228","dst_ip":"192.168.113.237","protocol":6,"src_port":443,"dst_port":55912,"event_start":1565200314.548679} +{"dns":{"base64":"/x8BAAABAAAAAAAACGZhY2Vib29rA2NvbQAAAQAB"},"ip":{"version":4,"ttl":64,"id":"cb99"},"src_ip":"192.168.113.237","dst_ip":"192.168.113.2","protocol":17,"src_port":53467,"dst_port":53,"event_start":1565200314.706119} +{"dns":{"base64":"K9EBAAABAAAAAAAACGZhY2Vib29rA2NvbQAAHAAB"},"ip":{"version":4,"ttl":64,"id":"cb9a"},"src_ip":"192.168.113.237","dst_ip":"192.168.113.2","protocol":17,"src_port":43273,"dst_port":53,"event_start":1565200314.706323} +{"dns":{"base64":"/x+BgAABAAEADQAOCGZhY2Vib29rA2NvbQAAAQABwAwAAQABAAAABQAEHw1CI8AVAAIAAQAAAAUAFAFiDGd0bGQtc2VydmVycwNuZXQAwBUAAgABAAAABQAEAWfAPMAVAAIAAQAAAAUABAFpwDzAFQACAAEAAAAFAAQBZcA8wBUAAgABAAAABQAEAWjAPMAVAAIAAQAAAAUABAFswDzAFQACAAEAAAAFAAQBasA8wBUAAgABAAAABQAEAW3APMAVAAIAAQAAAAUABAFkwDzAFQACAAEAAAAFAAQBY8A8wBUAAgABAAAABQAEAWvAPMAVAAIAAQAAAAUABAFmwDzAFQACAAEAAAAFAAQBYcA8wQoAAQABAAAABQAEwAUGHsA6AAEAAQAAAAUABMAhDh7A2gABAAEAAAAFAATAGlwewMoAAQABAAAABQAEwB9QHsB6AAEAAQAAAAUABMAMXh7A+gABAAEAAAAFAATAIzMewFoAAQABAAAABQAEwCpdHsCKAAEAAQAAAAUABMA2cB7AagABAAEAAAAFAATAK6wewKoAAQABAAAABQAEwDBPHsDqAAEAAQAAAAUABMA0sh7AmgABAAEAAAAFAATAKaIewLoAAQABAAAABQAEwDdTHsEKABwAAQAAAAUAECABBQOoPgAAAAAAAAACADA="},"ip":{"version":4,"ttl":128,"id":"95ce"},"src_ip":"192.168.113.2","dst_ip":"192.168.113.237","protocol":17,"src_port":53,"dst_port":53467,"event_start":1565200314.741388} +{"dns":{"base64":"K9GBgAABAAEADQANCGZhY2Vib29rA2NvbQAAHAABwAwAHAABAAAABQAQKgMogPEDAIP6zrAMAAAl3sAVAAIAAQAAAAUAFAFrDGd0bGQtc2VydmVycwNuZXQAwBUAAgABAAAABQAEAWbASMAVAAIAAQAAAAUABAFswEjAFQACAAEAAAAFAAQBZ8BIwBUAAgABAAAABQAEAWrASMAVAAIAAQAAAAUABAFpwEjAFQACAAEAAAAFAAQBaMBIwBUAAgABAAAABQAEAWLASMAVAAIAAQAAAAUABAFhwEjAFQACAAEAAAAFAAQBbcBIwBUAAgABAAAABQAEAWPASMAVAAIAAQAAAAUABAFkwEjAFQACAAEAAAAFAAQBZcBIwNYAAQABAAAABQAEwAUGHsDGAAEAAQAAAAUABMAhDh7A9gABAAEAAAAFAATAGlwewQYAAQABAAAABQAEwB9QHsEWAAEAAQAAAAUABMAMXh7AZgABAAEAAAAFAATAIzMewIYAAQABAAAABQAEwCpdHsC2AAEAAQAAAAUABMA2cB7ApgABAAEAAAAFAATAK6wewJYAAQABAAAABQAEwDBPHsBGAAEAAQAAAAUABMA0sh7AdgABAAEAAAAFAATAKaIewOYAAQABAAAABQAEwDdTHg=="},"ip":{"version":4,"ttl":128,"id":"95cf"},"src_ip":"192.168.113.2","dst_ip":"192.168.113.237","protocol":17,"src_port":53,"dst_port":43273,"event_start":1565200314.742571} +{"fingerprints":{"tcp":"tcp/(40)()(40)(faf0)((020405b4)(04)(08)(01)(030307))"},"tcp":{"seq":2047854834,"timestamp":{"ts_val":3642583269}},"ip":{"version":4,"ttl":64,"id":"775e"},"src_ip":"192.168.113.237","dst_ip":"31.13.66.35","protocol":6,"src_port":47178,"dst_port":443,"event_start":1565200314.743008} +{"fingerprints":{"tcp_server":"tcp_server/(40)()(80)(faf0)((020405b4))"},"tcp_server":{"seq":1774665050},"ip":{"version":4,"ttl":128,"id":"95d0"},"src_ip":"31.13.66.35","dst_ip":"192.168.113.237","protocol":6,"src_port":443,"dst_port":47178,"event_start":1565200314.784952} +{"fingerprints":{"tls":"tls/(0303)(130213031301c02cc030009fcca9cca8ccaac02bc02f009ec024c028006bc023c0270067c00ac0140039c009c0130033009d009c003d003c0035002f00ff)((0000)(000b000403000102)(000a000c000a001d0017001e00190018)(0023)(0016)(0017)(000d0030002e040305030603080708080809080a080b080408050806040105010601030302030301020103020202040205020602)(002b0009080304030303020301)(002d00020101)(0033))"},"tls":{"client":{"version":"0303","random":"4b04fdb02370e872dc701222088536830be3e73348a7dfb13e8ac1525d4148d0","session_id":"cb58a8b4122a03be3f855c42f3e9415bed627224db23b329476a8c9cb3e77031","cipher_suites":"130213031301c02cc030009fcca9cca8ccaac02bc02f009ec024c028006bc023c0270067c00ac0140039c009c0130033009d009c003d003c0035002f00ff","compression_methods":"00","server_name":"facebook.com","session_ticket":"","features":"[\"0303\",\"130213031301c02cc030009fcca9cca8ccaac02bc02f009ec024c028006bc023c0270067c00ac0140039c009c0130033009d009c003d003c0035002f00ff\",[[\"0000\",\"000f00000c66616365626f6f6b2e636f6d\"],[\"000b\",\"03000102\"],[\"000a\",\"000a001d0017001e00190018\"],[\"0023\",\"\"],[\"0016\",\"\"],[\"0017\",\"\"],[\"000d\",\"002e040305030603080708080809080a080b080408050806040105010601030302030301020103020202040205020602\"],[\"002b\",\"080304030303020301\"],[\"002d\",\"0101\"],[\"0033\",\"0024001d0020569c09730bb312fcb3796ff7d656c45a3236a81eaca707befac515bce1c6cd16\"]]]"}},"ip":{"version":4,"ttl":64,"id":"7760"},"src_ip":"192.168.113.237","dst_ip":"31.13.66.35","protocol":6,"src_port":47178,"dst_port":443,"event_start":1565200314.785467} +{"fingerprints":{"tls_server":"tls_server/(0303)(1303)((002b00020304)(0033))"},"tls":{"server":{"version":"0303","random":"c870fd9811700e5c2d419e251dce54614bb32d317c1897c63cde5c88f89b425c","selected_cipher_suite":"1303","compression_method":"00"}},"ip":{"version":4,"ttl":128,"id":"95d2"},"src_ip":"31.13.66.35","dst_ip":"192.168.113.237","protocol":6,"src_port":443,"dst_port":47178,"event_start":1565200314.828378} +{"dns":{"base64":"jiwBAAABAAAAAAAAA3d3dwhmYWNlYm9vawNjb20AAAEAAQ=="},"ip":{"version":4,"ttl":64,"id":"cb9c"},"src_ip":"192.168.113.237","dst_ip":"192.168.113.2","protocol":17,"src_port":55332,"dst_port":53,"event_start":1565200314.962244} +{"dns":{"base64":"ddcBAAABAAAAAAAAA3d3dwhmYWNlYm9vawNjb20AABwAAQ=="},"ip":{"version":4,"ttl":64,"id":"cb9d"},"src_ip":"192.168.113.237","dst_ip":"192.168.113.2","protocol":17,"src_port":45008,"dst_port":53,"event_start":1565200314.962424} +{"dns":{"base64":"jiyBgAABAAIADQANA3d3dwhmYWNlYm9vawNjb20AAAEAAcAMAAUAAQAAAAUAEQlzdGFyLW1pbmkEYzEwcsAQwC4AAQABAAAABQAEHw1dI8AZAAIAAQAAAAUAFAFlDGd0bGQtc2VydmVycwNuZXQAwBkAAgABAAAABQAEAWfAXcAZAAIAAQAAAAUABAFhwF3AGQACAAEAAAAFAAQBaMBdwBkAAgABAAAABQAEAWrAXcAZAAIAAQAAAAUABAFjwF3AGQACAAEAAAAFAAQBbcBdwBkAAgABAAAABQAEAWnAXcAZAAIAAQAAAAUABAFiwF3AGQACAAEAAAAFAAQBZsBdwBkAAgABAAAABQAEAWTAXcAZAAIAAQAAAAUABAFrwF3AGQACAAEAAAAFAAQBbMBdwIsAAQABAAAABQAEwAUGHsDrAAEAAQAAAAUABMAhDh7AuwABAAEAAAAFAATAGlwewQsAAQABAAAABQAEwB9QHsBbAAEAAQAAAAUABMAMXh7A+wABAAEAAAAFAATAIzMewHsAAQABAAAABQAEwCpdHsCbAAEAAQAAAAUABMA2cB7A2wABAAEAAAAFAATAK6wewKsAAQABAAAABQAEwDBPHsEbAAEAAQAAAAUABMA0sh7BKwABAAEAAAAFAATAKaIewMsAAQABAAAABQAEwDdTHg=="},"ip":{"version":4,"ttl":128,"id":"95db"},"src_ip":"192.168.113.2","dst_ip":"192.168.113.237","protocol":17,"src_port":53,"dst_port":55332,"event_start":1565200314.996736} +{"dns":{"base64":"ddeBgAABAAIADQAMA3d3dwhmYWNlYm9vawNjb20AABwAAcAMAAUAAQAAAAUAEQlzdGFyLW1pbmkEYzEwcsAQwC4AHAABAAAABQAQKgMogPE0AYP6zrAMAAAl3sAZAAIAAQAAAAUAFAFjDGd0bGQtc2VydmVycwNuZXQAwBkAAgABAAAABQAEAWLAacAZAAIAAQAAAAUABAFtwGnAGQACAAEAAAAFAAQBYcBpwBkAAgABAAAABQAEAWzAacAZAAIAAQAAAAUABAFmwGnAGQACAAEAAAAFAAQBZcBpwBkAAgABAAAABQAEAWnAacAZAAIAAQAAAAUABAFqwGnAGQACAAEAAAAFAAQBa8BpwBkAAgABAAAABQAEAWjAacAZAAIAAQAAAAUABAFkwGnAGQACAAEAAAAFAAQBZ8BpwKcAAQABAAAABQAEwAUGHsCHAAEAAQAAAAUABMAhDh7AZwABAAEAAAAFAATAGlwewScAAQABAAAABQAEwB9QHsDXAAEAAQAAAAUABMAMXh7AxwABAAEAAAAFAATAIzMewTcAAQABAAAABQAEwCpdHsEXAAEAAQAAAAUABMA2cB7A5wABAAEAAAAFAATAK6wewPcAAQABAAAABQAEwDBPHsEHAAEAAQAAAAUABMA0sh7AtwABAAEAAAAFAATAKaIe"},"ip":{"version":4,"ttl":128,"id":"95dd"},"src_ip":"192.168.113.2","dst_ip":"192.168.113.237","protocol":17,"src_port":53,"dst_port":45008,"event_start":1565200314.997173} +{"fingerprints":{"tcp":"tcp/(40)()(40)(faf0)((020405b4)(04)(08)(01)(030307))"},"tcp":{"seq":2701436393,"timestamp":{"ts_val":849766611}},"ip":{"version":4,"ttl":64,"id":"1a05"},"src_ip":"192.168.113.237","dst_ip":"31.13.93.35","protocol":6,"src_port":38876,"dst_port":443,"event_start":1565200314.997544} +{"fingerprints":{"tcp_server":"tcp_server/(40)()(80)(faf0)((020405b4))"},"tcp_server":{"seq":3469444087},"ip":{"version":4,"ttl":128,"id":"95de"},"src_ip":"31.13.93.35","dst_ip":"192.168.113.237","protocol":6,"src_port":443,"dst_port":38876,"event_start":1565200315.059454} +{"fingerprints":{"tls":"tls/(0303)(130213031301c02cc030009fcca9cca8ccaac02bc02f009ec024c028006bc023c0270067c00ac0140039c009c0130033009d009c003d003c0035002f00ff)((0000)(000b000403000102)(000a000c000a001d0017001e00190018)(0023)(0016)(0017)(000d0030002e040305030603080708080809080a080b080408050806040105010601030302030301020103020202040205020602)(002b0009080304030303020301)(002d00020101)(0033))"},"tls":{"client":{"version":"0303","random":"e702da1c4dc1ec292cf6eec967e43122acad882070a9d1a3e314cf6b01045d34","session_id":"b18cee90b75b575c2abee04e3dea6298df086e676b78747c723daeff65447f37","cipher_suites":"130213031301c02cc030009fcca9cca8ccaac02bc02f009ec024c028006bc023c0270067c00ac0140039c009c0130033009d009c003d003c0035002f00ff","compression_methods":"00","server_name":"www.facebook.com","session_ticket":"","features":"[\"0303\",\"130213031301c02cc030009fcca9cca8ccaac02bc02f009ec024c028006bc023c0270067c00ac0140039c009c0130033009d009c003d003c0035002f00ff\",[[\"0000\",\"00130000107777772e66616365626f6f6b2e636f6d\"],[\"000b\",\"03000102\"],[\"000a\",\"000a001d0017001e00190018\"],[\"0023\",\"\"],[\"0016\",\"\"],[\"0017\",\"\"],[\"000d\",\"002e040305030603080708080809080a080b080408050806040105010601030302030301020103020202040205020602\"],[\"002b\",\"080304030303020301\"],[\"002d\",\"0101\"],[\"0033\",\"0024001d0020734e8bd196f7ee93eb2c76656e6ceab1da394d08107573b2bbe3d0818ca02620\"]]]"}},"ip":{"version":4,"ttl":64,"id":"1a07"},"src_ip":"192.168.113.237","dst_ip":"31.13.93.35","protocol":6,"src_port":38876,"dst_port":443,"event_start":1565200315.059717} +{"fingerprints":{"tls_server":"tls_server/(0303)(1303)((002b00020304)(0033))"},"tls":{"server":{"version":"0303","random":"2aaf98e831eba0a5db049e6bac363f3d1f132e1d27da3e49fb40451731c0fbd2","selected_cipher_suite":"1303","compression_method":"00"}},"ip":{"version":4,"ttl":128,"id":"95e0"},"src_ip":"31.13.93.35","dst_ip":"192.168.113.237","protocol":6,"src_port":443,"dst_port":38876,"event_start":1565200315.118917} +{"dns":{"base64":"1MsBAAABAAAAAAAAB3lvdXR1YmUDY29tAAABAAE="},"ip":{"version":4,"ttl":64,"id":"cb9f"},"src_ip":"192.168.113.237","dst_ip":"192.168.113.2","protocol":17,"src_port":46227,"dst_port":53,"event_start":1565200315.629697} +{"dns":{"base64":"MY4BAAABAAAAAAAAB3lvdXR1YmUDY29tAAAcAAE="},"ip":{"version":4,"ttl":64,"id":"cba0"},"src_ip":"192.168.113.237","dst_ip":"192.168.113.2","protocol":17,"src_port":36848,"dst_port":53,"event_start":1565200315.629866} +{"dns":{"base64":"1MuBgAABAAEADQAOB3lvdXR1YmUDY29tAAABAAHADAABAAEAAAAFAASs2Q9OwBQAAgABAAAABQAUAWwMZ3RsZC1zZXJ2ZXJzA25ldADAFAACAAEAAAAFAAQBasA7wBQAAgABAAAABQAEAWfAO8AUAAIAAQAAAAUABAFowDvAFAACAAEAAAAFAAQBa8A7wBQAAgABAAAABQAEAWHAO8AUAAIAAQAAAAUABAFlwDvAFAACAAEAAAAFAAQBY8A7wBQAAgABAAAABQAEAWTAO8AUAAIAAQAAAAUABAFmwDvAFAACAAEAAAAFAAQBYsA7wBQAAgABAAAABQAEAWnAO8AUAAIAAQAAAAUABAFtwDvAmQABAAEAAAAFAATABQYewOkAAQABAAAABQAEwCEOHsC5AAEAAQAAAAUABMAaXB7AyQABAAEAAAAFAATAH1AewKkAAQABAAAABQAEwAxeHsDZAAEAAQAAAAUABMAjMx7AaQABAAEAAAAFAATAKl0ewHkAAQABAAAABQAEwDZwHsD5AAEAAQAAAAUABMArrB7AWQABAAEAAAAFAATAME8ewIkAAQABAAAABQAEwDSyHsA5AAEAAQAAAAUABMApoh7BCQABAAEAAAAFAATAN1MewJkAHAABAAAABQAQIAEFA6g+AAAAAAAAAAIAMA=="},"ip":{"version":4,"ttl":128,"id":"961d"},"src_ip":"192.168.113.2","dst_ip":"192.168.113.237","protocol":17,"src_port":53,"dst_port":46227,"event_start":1565200315.666539} +{"dns":{"base64":"MY6BgAABAAEADQANB3lvdXR1YmUDY29tAAAcAAHADAAcAAEAAAAFABAmB/iwQAQIEAAAAAAAACAOwBQAAgABAAAABQAUAWMMZ3RsZC1zZXJ2ZXJzA25ldADAFAACAAEAAAAFAAQBasBHwBQAAgABAAAABQAEAWHAR8AUAAIAAQAAAAUABAFtwEfAFAACAAEAAAAFAAQBZcBHwBQAAgABAAAABQAEAWvAR8AUAAIAAQAAAAUABAFpwEfAFAACAAEAAAAFAAQBZ8BHwBQAAgABAAAABQAEAWjAR8AUAAIAAQAAAAUABAFiwEfAFAACAAEAAAAFAAQBZsBHwBQAAgABAAAABQAEAWTAR8AUAAIAAQAAAAUABAFswEfAdQABAAEAAAAFAATABQYewOUAAQABAAAABQAEwCEOHsBFAAEAAQAAAAUABMAaXB7BBQABAAEAAAAFAATAH1AewJUAAQABAAAABQAEwAxeHsD1AAEAAQAAAAUABMAjMx7AxQABAAEAAAAFAATAKl0ewNUAAQABAAAABQAEwDZwHsC1AAEAAQAAAAUABMArrB7AZQABAAEAAAAFAATAME8ewKUAAQABAAAABQAEwDSyHsEVAAEAAQAAAAUABMApoh7AhQABAAEAAAAFAATAN1Me"},"ip":{"version":4,"ttl":128,"id":"961e"},"src_ip":"192.168.113.2","dst_ip":"192.168.113.237","protocol":17,"src_port":53,"dst_port":36848,"event_start":1565200315.688744} +{"fingerprints":{"tcp":"tcp/(40)()(40)(faf0)((020405b4)(04)(08)(01)(030307))"},"tcp":{"seq":3802355094,"timestamp":{"ts_val":3222371785}},"ip":{"version":4,"ttl":64,"id":"950e"},"src_ip":"192.168.113.237","dst_ip":"172.217.15.78","protocol":6,"src_port":38798,"dst_port":443,"event_start":1565200315.689080} +{"fingerprints":{"tcp_server":"tcp_server/(40)()(80)(faf0)((020405b4))"},"tcp_server":{"seq":2676836908},"ip":{"version":4,"ttl":128,"id":"961f"},"src_ip":"172.217.15.78","dst_ip":"192.168.113.237","protocol":6,"src_port":443,"dst_port":38798,"event_start":1565200315.728622} +{"fingerprints":{"tls":"tls/(0303)(130213031301c02cc030009fcca9cca8ccaac02bc02f009ec024c028006bc023c0270067c00ac0140039c009c0130033009d009c003d003c0035002f00ff)((0000)(000b000403000102)(000a000c000a001d0017001e00190018)(0023)(0016)(0017)(000d0030002e040305030603080708080809080a080b080408050806040105010601030302030301020103020202040205020602)(002b0009080304030303020301)(002d00020101)(0033))"},"tls":{"client":{"version":"0303","random":"3ba609bdbe8e320574509cd5f290b204db2bc870cde95ab3c323a197dac61ee4","session_id":"e86852d8e797a669084370c7e54505a823a18d9363744d8290f5add7721190cd","cipher_suites":"130213031301c02cc030009fcca9cca8ccaac02bc02f009ec024c028006bc023c0270067c00ac0140039c009c0130033009d009c003d003c0035002f00ff","compression_methods":"00","server_name":"youtube.com","session_ticket":"","features":"[\"0303\",\"130213031301c02cc030009fcca9cca8ccaac02bc02f009ec024c028006bc023c0270067c00ac0140039c009c0130033009d009c003d003c0035002f00ff\",[[\"0000\",\"000e00000b796f75747562652e636f6d\"],[\"000b\",\"03000102\"],[\"000a\",\"000a001d0017001e00190018\"],[\"0023\",\"\"],[\"0016\",\"\"],[\"0017\",\"\"],[\"000d\",\"002e040305030603080708080809080a080b080408050806040105010601030302030301020103020202040205020602\"],[\"002b\",\"080304030303020301\"],[\"002d\",\"0101\"],[\"0033\",\"0024001d0020c9381923c2a00340a86633eb0882beb83504a6265e8aed883570a2c87ef5d00e\"]]]"}},"ip":{"version":4,"ttl":64,"id":"9510"},"src_ip":"192.168.113.237","dst_ip":"172.217.15.78","protocol":6,"src_port":38798,"dst_port":443,"event_start":1565200315.728867} +{"fingerprints":{"tls_server":"tls_server/(0303)(1302)((0033)(002b00020304))"},"tls":{"server":{"version":"0303","random":"be8ebfe59f0fb5b30f750160b0b2e81ec698301e338485e521c969da3334509e","selected_cipher_suite":"1302","compression_method":"00"}},"ip":{"version":4,"ttl":128,"id":"9621"},"src_ip":"172.217.15.78","dst_ip":"192.168.113.237","protocol":6,"src_port":443,"dst_port":38798,"event_start":1565200315.778220} +{"dns":{"base64":"gCQBAAABAAAAAAAAA3d3dwd5b3V0dWJlA2NvbQAAAQAB"},"ip":{"version":4,"ttl":64,"id":"cbbf"},"src_ip":"192.168.113.237","dst_ip":"192.168.113.2","protocol":17,"src_port":50189,"dst_port":53,"event_start":1565200315.890089} +{"dns":{"base64":"mcgBAAABAAAAAAAAA3d3dwd5b3V0dWJlA2NvbQAAHAAB"},"ip":{"version":4,"ttl":64,"id":"cbc0"},"src_ip":"192.168.113.237","dst_ip":"192.168.113.2","protocol":17,"src_port":56627,"dst_port":53,"event_start":1565200315.890272} +{"dns":{"base64":"mciBgAABAAIADQAMA3d3dwd5b3V0dWJlA2NvbQAAHAABwAwABQABAAAABQAWCnlvdXR1YmUtdWkBbAZnb29nbGXAGMAtABwAAQAAAAUAECYH+LBABAgHAAAAAAAAIA7AGAACAAEAAAAFABQBZwxndGxkLXNlcnZlcnMDbmV0AMAYAAIAAQAAAAUABAFpwG3AGAACAAEAAAAFAAQBYcBtwBgAAgABAAAABQAEAWbAbcAYAAIAAQAAAAUABAFiwG3AGAACAAEAAAAFAAQBa8BtwBgAAgABAAAABQAEAWPAbcAYAAIAAQAAAAUABAFlwG3AGAACAAEAAAAFAAQBZMBtwBgAAgABAAAABQAEAWrAbcAYAAIAAQAAAAUABAFtwG3AGAACAAEAAAAFAAQBbMBtwBgAAgABAAAABQAEAWjAbcCbAAEAAQAAAAUABMAFBh7AuwABAAEAAAAFAATAIQ4ewNsAAQABAAAABQAEwBpcHsD7AAEAAQAAAAUABMAfUB7A6wABAAEAAAAFAATADF4ewKsAAQABAAAABQAEwCMzHsBrAAEAAQAAAAUABMAqXR7BOwABAAEAAAAFAATANnAewIsAAQABAAAABQAEwCusHsELAAEAAQAAAAUABMAwTx7AywABAAEAAAAFAATANLIewSsAAQABAAAABQAEwCmiHg=="},"ip":{"version":4,"ttl":128,"id":"9629"},"src_ip":"192.168.113.2","dst_ip":"192.168.113.237","protocol":17,"src_port":53,"dst_port":56627,"event_start":1565200315.920843} +{"dns":{"base64":"gCSBgAABAA0ADQABA3d3dwd5b3V0dWJlA2NvbQAAAQABwAwABQABAAAABQAWCnlvdXR1YmUtdWkBbAZnb29nbGXAGMAtAAEAAQAAAAUABKzZDO7ALQABAAEAAAAFAASs2Q9uwC0AAQABAAAABQAErNkHzsAtAAEAAQAAAAUABKzZDU7ALQABAAEAAAAFAASs2aSOwC0AAQABAAAABQAErNkN7sAtAAEAAQAAAAUABKzZpK7ALQABAAEAAAAFAASs2QnOwC0AAQABAAAABQAErNkHrsAtAAEAAQAAAAUABKzZB47ALQABAAEAAAAFAASs2Q9OwC0AAQABAAAABQAErNkF7sAYAAIAAQAAAAUAFAFnDGd0bGQtc2VydmVycwNuZXQAwBgAAgABAAAABQAEAWHBEcAYAAIAAQAAAAUABAFswRHAGAACAAEAAAAFAAQBasERwBgAAgABAAAABQAEAW3BEcAYAAIAAQAAAAUABAFkwRHAGAACAAEAAAAFAAQBacERwBgAAgABAAAABQAEAWvBEcAYAAIAAQAAAAUABAFjwRHAGAACAAEAAAAFAAQBZsERwBgAAgABAAAABQAEAWXBEcAYAAIAAQAAAAUABAFiwRHAGAACAAEAAAAFAAQBaMERwS8AAQABAAAABQAEwAUGHg=="},"ip":{"version":4,"ttl":128,"id":"962a"},"src_ip":"192.168.113.2","dst_ip":"192.168.113.237","protocol":17,"src_port":53,"dst_port":50189,"event_start":1565200315.920880} +{"fingerprints":{"tcp":"tcp/(40)()(40)(faf0)((020405b4)(04)(08)(01)(030307))"},"tcp":{"seq":1862725750,"timestamp":{"ts_val":276715049}},"ip":{"version":4,"ttl":64,"id":"30a5"},"src_ip":"192.168.113.237","dst_ip":"172.217.5.238","protocol":6,"src_port":39104,"dst_port":443,"event_start":1565200315.921718} +{"fingerprints":{"tcp_server":"tcp_server/(40)()(80)(faf0)((020405b4))"},"tcp_server":{"seq":4075597862},"ip":{"version":4,"ttl":128,"id":"962d"},"src_ip":"172.217.5.238","dst_ip":"192.168.113.237","protocol":6,"src_port":443,"dst_port":39104,"event_start":1565200315.967115} +{"fingerprints":{"tls":"tls/(0303)(130213031301c02cc030009fcca9cca8ccaac02bc02f009ec024c028006bc023c0270067c00ac0140039c009c0130033009d009c003d003c0035002f00ff)((0000)(000b000403000102)(000a000c000a001d0017001e00190018)(0023)(0016)(0017)(000d0030002e040305030603080708080809080a080b080408050806040105010601030302030301020103020202040205020602)(002b0009080304030303020301)(002d00020101)(0033))"},"tls":{"client":{"version":"0303","random":"1d4c72afdf687fed8ccfb0f6b1e8d649e2abe9e3045d5df1d4e784928a15b2c8","session_id":"420264ca0855710d7afb250858b7a55e2763be9148729cd5326aeed6aa7536f7","cipher_suites":"130213031301c02cc030009fcca9cca8ccaac02bc02f009ec024c028006bc023c0270067c00ac0140039c009c0130033009d009c003d003c0035002f00ff","compression_methods":"00","server_name":"www.youtube.com","session_ticket":"","features":"[\"0303\",\"130213031301c02cc030009fcca9cca8ccaac02bc02f009ec024c028006bc023c0270067c00ac0140039c009c0130033009d009c003d003c0035002f00ff\",[[\"0000\",\"001200000f7777772e796f75747562652e636f6d\"],[\"000b\",\"03000102\"],[\"000a\",\"000a001d0017001e00190018\"],[\"0023\",\"\"],[\"0016\",\"\"],[\"0017\",\"\"],[\"000d\",\"002e040305030603080708080809080a080b080408050806040105010601030302030301020103020202040205020602\"],[\"002b\",\"080304030303020301\"],[\"002d\",\"0101\"],[\"0033\",\"0024001d0020be0b45ef01e460e963be6c6a6b4a3a417b32b6e3948eb2446a2e3056b49b457f\"]]]"}},"ip":{"version":4,"ttl":64,"id":"30a7"},"src_ip":"192.168.113.237","dst_ip":"172.217.5.238","protocol":6,"src_port":39104,"dst_port":443,"event_start":1565200315.967432} +{"fingerprints":{"tls_server":"tls_server/(0303)(1302)((0033)(002b00020304))"},"tls":{"server":{"version":"0303","random":"207b6cedb5af7aefa6f3b9ba10581589d801b15cff8b93ec113106fefe4a8e63","selected_cipher_suite":"1302","compression_method":"00"}},"ip":{"version":4,"ttl":128,"id":"962f"},"src_ip":"172.217.5.238","dst_ip":"192.168.113.237","protocol":6,"src_port":443,"dst_port":39104,"event_start":1565200316.015600} +{"dns":{"base64":"10oBAAABAAAAAAAAB3R3aXR0ZXIDY29tAAABAAE="},"ip":{"version":4,"ttl":64,"id":"ccaa"},"src_ip":"192.168.113.237","dst_ip":"192.168.113.2","protocol":17,"src_port":36511,"dst_port":53,"event_start":1565200317.289839} +{"dns":{"base64":"1DgBAAABAAAAAAAAB3R3aXR0ZXIDY29tAAAcAAE="},"ip":{"version":4,"ttl":64,"id":"ccab"},"src_ip":"192.168.113.237","dst_ip":"192.168.113.2","protocol":17,"src_port":35429,"dst_port":53,"event_start":1565200317.289914} +{"dns":{"base64":"10qBgAABAAIADQANB3R3aXR0ZXIDY29tAAABAAHADAABAAEAAAAFAARo9CpBwAwAAQABAAAABQAEaPQqAcAUAAIAAQAAAAUAFAFhDGd0bGQtc2VydmVycwNuZXQAwBQAAgABAAAABQAEAWbAS8AUAAIAAQAAAAUABAFiwEvAFAACAAEAAAAFAAQBZ8BLwBQAAgABAAAABQAEAWnAS8AUAAIAAQAAAAUABAFqwEvAFAACAAEAAAAFAAQBbMBLwBQAAgABAAAABQAEAWvAS8AUAAIAAQAAAAUABAFtwEvAFAACAAEAAAAFAAQBaMBLwBQAAgABAAAABQAEAWXAS8AUAAIAAQAAAAUABAFjwEvAFAACAAEAAAAFAAQBZMBLwEkAAQABAAAABQAEwAUGHsB5AAEAAQAAAAUABMAhDh7BCQABAAEAAAAFAATAGlwewRkAAQABAAAABQAEwB9QHsD5AAEAAQAAAAUABMAMXh7AaQABAAEAAAAFAATAIzMewIkAAQABAAAABQAEwCpdHsDpAAEAAQAAAAUABMA2cB7AmQABAAEAAAAFAATAK6wewKkAAQABAAAABQAEwDBPHsDJAAEAAQAAAAUABMA0sh7AuQABAAEAAAAFAATAKaIewNkAAQABAAAABQAEwDdTHg=="},"ip":{"version":4,"ttl":128,"id":"9746"},"src_ip":"192.168.113.2","dst_ip":"192.168.113.237","protocol":17,"src_port":53,"dst_port":36511,"event_start":1565200317.290768} +{"dns":{"base64":"1DiBgAABAAAAAQAAB3R3aXR0ZXIDY29tAAAcAAHADAAGAAEAAAAFADwDbnMxA3AyNgZkeW5lY3QDbmV0AAp6b25lLWFkbWluBmR5bmRuc8AUd6KRMQAADhAAAAJYAAk6gAAAADw="},"ip":{"version":4,"ttl":128,"id":"9747"},"src_ip":"192.168.113.2","dst_ip":"192.168.113.237","protocol":17,"src_port":53,"dst_port":35429,"event_start":1565200317.321305} +{"fingerprints":{"tcp":"tcp/(40)()(40)(faf0)((020405b4)(04)(08)(01)(030307))"},"tcp":{"seq":2404143520,"timestamp":{"ts_val":1378593247}},"ip":{"version":4,"ttl":64,"id":"9391"},"src_ip":"192.168.113.237","dst_ip":"104.244.42.65","protocol":6,"src_port":42708,"dst_port":443,"event_start":1565200317.321610} +{"fingerprints":{"tcp_server":"tcp_server/(40)()(80)(faf0)((020405b4))"},"tcp_server":{"seq":3021344055},"ip":{"version":4,"ttl":128,"id":"9748"},"src_ip":"104.244.42.65","dst_ip":"192.168.113.237","protocol":6,"src_port":443,"dst_port":42708,"event_start":1565200317.364977} +{"fingerprints":{"tls":"tls/(0303)(130213031301c02cc030009fcca9cca8ccaac02bc02f009ec024c028006bc023c0270067c00ac0140039c009c0130033009d009c003d003c0035002f00ff)((0000)(000b000403000102)(000a000c000a001d0017001e00190018)(0023)(0016)(0017)(000d0030002e040305030603080708080809080a080b080408050806040105010601030302030301020103020202040205020602)(002b0009080304030303020301)(002d00020101)(0033))"},"tls":{"client":{"version":"0303","random":"3c340112ce0595c36b0c9c284b35bd1a46e15b4b772e2a85e15a12eb709cc27d","session_id":"d5c067b2ecb87070a6e89fe3e7e1b63d8ec2bd2f9ac7df71891118d3b443acb8","cipher_suites":"130213031301c02cc030009fcca9cca8ccaac02bc02f009ec024c028006bc023c0270067c00ac0140039c009c0130033009d009c003d003c0035002f00ff","compression_methods":"00","server_name":"twitter.com","session_ticket":"","features":"[\"0303\",\"130213031301c02cc030009fcca9cca8ccaac02bc02f009ec024c028006bc023c0270067c00ac0140039c009c0130033009d009c003d003c0035002f00ff\",[[\"0000\",\"000e00000b747769747465722e636f6d\"],[\"000b\",\"03000102\"],[\"000a\",\"000a001d0017001e00190018\"],[\"0023\",\"\"],[\"0016\",\"\"],[\"0017\",\"\"],[\"000d\",\"002e040305030603080708080809080a080b080408050806040105010601030302030301020103020202040205020602\"],[\"002b\",\"080304030303020301\"],[\"002d\",\"0101\"],[\"0033\",\"0024001d0020c81253b2a53f659ff93c558972a49012973e7492b2b48a32925f260de3b0c93b\"]]]"}},"ip":{"version":4,"ttl":64,"id":"9393"},"src_ip":"192.168.113.237","dst_ip":"104.244.42.65","protocol":6,"src_port":42708,"dst_port":443,"event_start":1565200317.365401} +{"fingerprints":{"tls_server":"tls_server/(0303)(c02f)((ff01)(000b000403000102)(0023))"},"tls":{"server":{"certs":[{"base64":"MIIGcTCCBVmgAwIBAgIQB6JxQM/Z/JSUJ1FPhVVCbzANBgkqhkiG9w0BAQsFADBwMQswCQYDVQQGEwJVUzEVMBMGA1UEChMMRGlnaUNlcnQgSW5jMRkwFwYDVQQLExB3d3cuZGlnaWNlcnQuY29tMS8wLQYDVQQDEyZEaWdpQ2VydCBTSEEyIEhpZ2ggQXNzdXJhbmNlIFNlcnZlciBDQTAeFw0xOTAzMDcwMDAwMDBaFw0yMDAzMDcxMjAwMDBaMHcxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1TYW4gRnJhbmNpc2NvMRYwFAYDVQQKEw1Ud2l0dGVyLCBJbmMuMQ0wCwYDVQQLEwRhdGxhMRQwEgYDVQQDEwt0d2l0dGVyLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAOZX2kcltfrcPTyfAAFtIAgTueiAqeU/k6M3OArrOTRJGLuLCsvj3a+O2Y4cxBvPyhsAgbM+nLlXtf0ziH5SDjJzLO6mVK6T71xZOjI8z01HVkbwqOnFVGPD82XygX4W1oajOt4d1wMpOZoc6B/Lh+y7QCFUvM+xdMD085JyrWZvaGw3oQQq4DbrDBaoWCbSzdbbuRk1xpgctN2xd5rF/n5Mg4UkGByTR/NEfB9luVio+bbTo4tPiKRbwO2nzoGGWMaS8T+UEtTpel3YXPpUsP2fkcPFzpht6eYrOi7qhtaugW8pes3jyPhxxp93tvNH2Or7SaBg6cM6mEiIjN2Ez8sCAwEAAaOCAv4wggL6MB8GA1UdIwQYMBaAFFFo/5CvAgd1PMzZZWRiohK4WXI7MB0GA1UdDgQWBBSENo9/S2lF5zjBaIIQ7RVsnpEMaTAnBgNVHREEIDAeggt0d2l0dGVyLmNvbYIPd3d3LnR3aXR0ZXIuY29tMA4GA1UdDwEB/wQEAwIFoDAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwdQYDVR0fBG4wbDA0oDKgMIYuaHR0cDovL2NybDMuZGlnaWNlcnQuY29tL3NoYTItaGEtc2VydmVyLWc2LmNybDA0oDKgMIYuaHR0cDovL2NybDQuZGlnaWNlcnQuY29tL3NoYTItaGEtc2VydmVyLWc2LmNybDBMBgNVHSAERTBDMDcGCWCGSAGG/WwBATAqMCgGCCsGAQUFBwIBFhxodHRwczovL3d3dy5kaWdpY2VydC5jb20vQ1BTMAgGBmeBDAECAjCBgwYIKwYBBQUHAQEEdzB1MCQGCCsGAQUFBzABhhhodHRwOi8vb2NzcC5kaWdpY2VydC5jb20wTQYIKwYBBQUHMAKGQWh0dHA6Ly9jYWNlcnRzLmRpZ2ljZXJ0LmNvbS9EaWdpQ2VydFNIQTJIaWdoQXNzdXJhbmNlU2VydmVyQ0EuY3J0MAwGA1UdEwEB/wQCMAAwggEFBgorBgEEAdZ5AgQCBIH2BIHzAPEAdwC72d+8H4pxtZOUI5eqkntHOFeVCqtS6BqQlmQ2jh7RhQAAAWlZVWG+AAAEAwBIMEYCIQCZOt2dMF/436CEFe7BC/fYroy24FfWkERqHaL2fSOmSgIhAKmrYz3oS314+5Mt3tvlAtKZtUMACoNIkUdQ8Wzqpir8AHYAh3W/51l8+IxDmV+9827/Vo1HVjb/SrVgwbTq/16ggw8AAAFpWVVjAwAABAMARzBFAiAQbTBEz6oSpOcpBz1JnXW4hWGRGkV2pwssM9ITkAA81QIhAJPBH6YLyk8idL0ntAig+St39IOsIRyKAosS+wqOwyOCMA0GCSqGSIb3DQEBCwUAA4IBAQCh0yFFh1vTQMpEgFLa6I5hoheo/LkG6MuWHrRI4raGkQtGbXdbYtudOx8bpb3K12l/B9OcZZWhWiW47pjOgxdny1zkJjyaAc1iye0gt/dKBc8WRtlagBlC9C8tWkhvanppbnc02DvwX97kDWwUFhqFcHLTZhWIB3Q2ztp2XAFMqGFR9YzxmgCugJGVa1RuyY/VViiOFManXW0aPilm8o+cjWN94x510w6osrwiOSpZAJyMQgPCFaCVcLO/2OIPj4SMYsW1Tx9CGdqz5fufSavzmE+t1FJYWgn0YSZ5G3+I4tkMM4rbmDZQIQatunC9SRfZte4tT4yg6LSsLwoQRCjZ"},{"base64":"MIIEsTCCA5mgAwIBAgIQBOHnpNxc8vNtwCtCuF0VnzANBgkqhkiG9w0BAQsFADBsMQswCQYDVQQGEwJVUzEVMBMGA1UEChMMRGlnaUNlcnQgSW5jMRkwFwYDVQQLExB3d3cuZGlnaWNlcnQuY29tMSswKQYDVQQDEyJEaWdpQ2VydCBIaWdoIEFzc3VyYW5jZSBFViBSb290IENBMB4XDTEzMTAyMjEyMDAwMFoXDTI4MTAyMjEyMDAwMFowcDELMAkGA1UEBhMCVVMxFTATBgNVBAoTDERpZ2lDZXJ0IEluYzEZMBcGA1UECxMQd3d3LmRpZ2ljZXJ0LmNvbTEvMC0GA1UEAxMmRGlnaUNlcnQgU0hBMiBIaWdoIEFzc3VyYW5jZSBTZXJ2ZXIgQ0EwggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQC24C/CJAbIbQRf1+8KZAayfSImZRauQkCbztyfn3YHPsMwVYcZuU+UDlqUH1VWtMICKq/QmO4LQNfE0DtyyBSe75CxEamu0si4QzrZCwvV1ZX1QK/IHe1NnF9Xt4ZQaJn1itrSxwUfqJfJ3KSxgoQtxq2lnMcZgqaFD15EWCo3j/018QsIJzJa9buLnqS9UdAn4t07QjOjBSjEuyjMmqwrIw14xnvmXnG3Sj4I+4G3FhahnSMSTeXXkgisdaScus0Xsh5ENWV/UyU50RwKmmMbGZJ0aAo3wsJSSMs5WqK24V3B3aAguCGikyZvFEohQcftbZvySC/zA/WiaJJTL17jAgMBAAGjggFJMIIBRTASBgNVHRMBAf8ECDAGAQH/AgEAMA4GA1UdDwEB/wQEAwIBhjAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwNAYIKwYBBQUHAQEEKDAmMCQGCCsGAQUFBzABhhhodHRwOi8vb2NzcC5kaWdpY2VydC5jb20wSwYDVR0fBEQwQjBAoD6gPIY6aHR0cDovL2NybDQuZGlnaWNlcnQuY29tL0RpZ2lDZXJ0SGlnaEFzc3VyYW5jZUVWUm9vdENBLmNybDA9BgNVHSAENjA0MDIGBFUdIAAwKjAoBggrBgEFBQcCARYcaHR0cHM6Ly93d3cuZGlnaWNlcnQuY29tL0NQUzAdBgNVHQ4EFgQUUWj/kK8CB3U8zNllZGKiErhZcjswHwYDVR0jBBgwFoAUsT7DaQP4v0cB1JgmGggC72NkK8MwDQYJKoZIhvcNAQELBQADggEBABiKlYkD5m3fXPwdaOpKj4PWUS+Na0QWnqxj9dJubISZi6qBcYRb7TROsLd5kinMLYBq8I4g4Xmk/gNHE+r1hspZcX30BJZr01lYPf7TMSVcGDiEo+afgv2MW5gxTs14nhr9hctJqvIni5ly/D6q1UEL2tU2ob8cbkdJf17ZSHwD2f2LSaCYJkJA69aSEaRkCldUxPUd1gJea6zuxICaEnL6VpPX/78whQYwvwt/Tv9XBZ0k7YXDK/umdaisLRbvfXknsuvCnQsH6qqF0wGjIChBWUMo0oHjqvbsezt3tkBigAVBRQHvFwY+3sAzm2fTYS5yh+Rp/BIAV0AecPUeybQ="}],"version":"0303","random":"53f71560f2ae266be5e8806cde4ff0c59682ef85ecd579beb3c8fb516f69f367","selected_cipher_suite":"c02f","compression_method":"00","session_ticket":""}},"reassembly_properties":{"reassembled":true},"ip":{"version":4,"ttl":128,"id":"974c"},"src_ip":"104.244.42.65","dst_ip":"192.168.113.237","protocol":6,"src_port":443,"dst_port":42708,"event_start":1565200317.419555} +{"dns":{"base64":"mYUBAAABAAAAAAAACW1pY3Jvc29mdANjb20AAAEAAQ=="},"ip":{"version":4,"ttl":64,"id":"cd28"},"src_ip":"192.168.113.237","dst_ip":"192.168.113.2","protocol":17,"src_port":51332,"dst_port":53,"event_start":1565200317.804832} +{"dns":{"base64":"G5oBAAABAAAAAAAACW1pY3Jvc29mdANjb20AABwAAQ=="},"ip":{"version":4,"ttl":64,"id":"cd29"},"src_ip":"192.168.113.237","dst_ip":"192.168.113.2","protocol":17,"src_port":59157,"dst_port":53,"event_start":1565200317.805019} +{"dns":{"base64":"mYWBgAABAAUABAAFCW1pY3Jvc29mdANjb20AAAEAAcAMAAEAAQAAAAUABA1NobPADAABAAEAAAAFAAQoccjJwAwAAQABAAAABQAEKHBIzcAMAAEAAQAAAAUABChMBA/ADAABAAEAAAAFAARo15Q/wAwAAgABAAAABQAOA25zMgRtc2Z0A25ldADADAACAAEAAAAFAAYDbnM0wH/ADAACAAEAAAAFAAYDbnMxwH/ADAACAAEAAAAFAAYDbnMzwH/AewABAAEAAAAFAATQVAI1wLkAAQABAAAABQAEwd1xNcCnABwAAQAAAAUAECYgAAAAMAAAAAAAAAAAAFPAewAcAAEAAAAFABAmIAAAADIAAAAAAAAAAABTwLkAHAABAAAABQAQJiAAAAA0AAAAAAAAAAAAUw=="},"ip":{"version":4,"ttl":128,"id":"982d"},"src_ip":"192.168.113.2","dst_ip":"192.168.113.237","protocol":17,"src_port":53,"dst_port":51332,"event_start":1565200317.805690} +{"dns":{"base64":"G5qBgAABAAAAAQAACW1pY3Jvc29mdANjb20AABwAAcAMAAYAAQAAAAUAKwNuczEEbXNmdANuZXQABm1zbmhzdMAMeFi6BgAAHCAAAAJYACTqAAAADhA="},"ip":{"version":4,"ttl":128,"id":"982e"},"src_ip":"192.168.113.2","dst_ip":"192.168.113.237","protocol":17,"src_port":53,"dst_port":59157,"event_start":1565200317.836652} +{"fingerprints":{"tcp":"tcp/(40)()(40)(faf0)((020405b4)(04)(08)(01)(030307))"},"tcp":{"seq":2820986476,"timestamp":{"ts_val":2626480894}},"ip":{"version":4,"ttl":64,"id":"14dd"},"src_ip":"192.168.113.237","dst_ip":"13.77.161.179","protocol":6,"src_port":60570,"dst_port":443,"event_start":1565200317.837161} +{"fingerprints":{"tcp_server":"tcp_server/(40)()(80)(faf0)((020405b4))"},"tcp_server":{"seq":3167476385},"ip":{"version":4,"ttl":128,"id":"982f"},"src_ip":"13.77.161.179","dst_ip":"192.168.113.237","protocol":6,"src_port":443,"dst_port":60570,"event_start":1565200317.942614} +{"fingerprints":{"tls":"tls/(0303)(130213031301c02cc030009fcca9cca8ccaac02bc02f009ec024c028006bc023c0270067c00ac0140039c009c0130033009d009c003d003c0035002f00ff)((0000)(000b000403000102)(000a000c000a001d0017001e00190018)(0023)(0016)(0017)(000d0030002e040305030603080708080809080a080b080408050806040105010601030302030301020103020202040205020602)(002b0009080304030303020301)(002d00020101)(0033))"},"tls":{"client":{"version":"0303","random":"49a61bd3aaf0ada9ccda313537f7690be28bed61a40d5d055ee627193813cf76","session_id":"770d8db85111ec7971456b0afea3a3e3932e35e4aca2d934a1e7d6fa1436acc1","cipher_suites":"130213031301c02cc030009fcca9cca8ccaac02bc02f009ec024c028006bc023c0270067c00ac0140039c009c0130033009d009c003d003c0035002f00ff","compression_methods":"00","server_name":"microsoft.com","session_ticket":"","features":"[\"0303\",\"130213031301c02cc030009fcca9cca8ccaac02bc02f009ec024c028006bc023c0270067c00ac0140039c009c0130033009d009c003d003c0035002f00ff\",[[\"0000\",\"001000000d6d6963726f736f66742e636f6d\"],[\"000b\",\"03000102\"],[\"000a\",\"000a001d0017001e00190018\"],[\"0023\",\"\"],[\"0016\",\"\"],[\"0017\",\"\"],[\"000d\",\"002e040305030603080708080809080a080b080408050806040105010601030302030301020103020202040205020602\"],[\"002b\",\"080304030303020301\"],[\"002d\",\"0101\"],[\"0033\",\"0024001d0020891dd88c9a9dc1eb37f35c68408e0307e50d5eea2882257bb90ee7b6e000d401\"]]]"}},"ip":{"version":4,"ttl":64,"id":"14df"},"src_ip":"192.168.113.237","dst_ip":"13.77.161.179","protocol":6,"src_port":60570,"dst_port":443,"event_start":1565200317.943160} +{"fingerprints":{"tls_server":"tls_server/(0303)(c030)((ff01)(000b000403000102)(0023))"},"tls":{"server":{"certs":[{"base64":"MIISXDCCEESgAwIBAgITFgAFDAsp4tFASrt9zwAAAAUMCzANBgkqhkiG9w0BAQsFADCBizELMAkGA1UEBhMCVVMxEzARBgNVBAgTCldhc2hpbmd0b24xEDAOBgNVBAcTB1JlZG1vbmQxHjAcBgNVBAoTFU1pY3Jvc29mdCBDb3Jwb3JhdGlvbjEVMBMGA1UECxMMTWljcm9zb2Z0IElUMR4wHAYDVQQDExVNaWNyb3NvZnQgSVQgVExTIENBIDQwHhcNMTkwNTE3MDIyOTE1WhcNMjEwNTE3MDIyOTE1WjAaMRgwFgYDVQQDDA8qLm1pY3Jvc29mdC5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDmepkIe+jvvXqtZVvd5Gt1L0xFOI+0SniOz35tKL8glkd5X2iUcuN4mPYlNC3LzhDv2H5JeTq0YrRKdfZPb8IzJCgmwELeNySYndxkUTw2HURcPj9o7AyANqviu9b6qR4A6WI6KTkyyc2lojPiuXKtQ10jBtCHNi03UqrLN1i0ZTa4KlfoSEOu39aT/pakk7RrFC57Tqnx48zKOazmBLUOxfaIrCux3JTOaM77VMunfJfSS2R+mMrWr+TQ1s0vyZqf+eBmC3367185InVjNkr7H900I3QVkrATuX2rEOVLwfUF2DurJEazSZDU0SmoTu00Pd4g2SlVSo9xCJqpWtSJAgMBAAGjgg4nMIIOIzB4BgkqhkiG9w0BCQ8EazBpMA4GCCqGSIb3DQMCAgIAgDAOBggqhkiG9w0DBAICAIAwCwYJYIZIAWUDBAEqMAsGCWCGSAFlAwQBLTALBglghkgBZQMEAQIwCwYJYIZIAWUDBAEFMAcGBSsOAwIHMAoGCCqGSIb3DQMHMIIB9wYKKwYBBAHWeQIEAgSCAecEggHjAeEAdwDuS723dc5guuFCaR+r4Z5mow9+X7By2IMAxHuJeqj9ywAAAWrDqHFNAAAEAwBIMEYCIQD0dwPwU8gcb9ykPsUQ950AxBU1+EHkeJggADmu7bZTKAIhAOU36VVQj80s9Mpk4GLViRJ93sytOdczGm3kfL/6VWFmAHYA9lyUL9F3MCIUVBgIMJRWjuNNExkzv98MLyALzE7xZOMAAAFqw6hxSgAABAMARzBFAiEAiDoIHVLz/u85x/JYsnNb/Yntc9kpd6D6at50Y0euGtwCIFfJLvQPHvrjEzGDJQ3ldUKG63aIBPKTE/M9SkEJ41W5AHYAXNxDkv7mq0VEsV6a1FbmEDf71fpH3KFzlLJe5vbHDsoAAAFqw6hxYQAABAMARzBFAiEA+r5693PaDGW3WBBz1/aQ8V/LuFF4WLkwhaHWsQrPPF0CIFBrAZYpgqAiOf5enLTqpMk9FTDtJHhegtocUWCCaNRtAHYAVYHUwhaQNgFK6gubVzxT8MDkOHhwJQgXL6OqHQcT0wwAAAFqw6hyMAAABAMARzBFAiEAtGpR5a6NxYG4jDqqjKRptlN/4oKgcG3NddgjY85aiQoCIDtZfPIsKvvi7Dp915kJN2KWpSAjxRyrj3f9VYRdO3HSMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwIwCgYIKwYBBQUHAwEwPgYJKwYBBAGCNxUHBDEwLwYnKwYBBAGCNxUIh9qGdYPu2QGCyYUbgbWeYYX062CBXYTS30KC55N6AgFkAgEdMIGFBggrBgEFBQcBAQR5MHcwUQYIKwYBBQUHMAKGRWh0dHA6Ly93d3cubWljcm9zb2Z0LmNvbS9wa2kvbXNjb3JwL01pY3Jvc29mdCUyMElUJTIwVExTJTIwQ0ElMjA0LmNydDAiBggrBgEFBQcwAYYWaHR0cDovL29jc3AubXNvY3NwLmNvbTAdBgNVHQ4EFgQUDy1hz6AvvPkrcPW9hiSibjry2agwCwYDVR0PBAQDAgSwMIIJTwYDVR0RBIIJRjCCCUKCCG1zZG4uY29tggh4Ym94LmNvbYIKKi5saXZlLmNvbYIKKi5tc2RuLmNvbYIKZ2lnamFtLmNvbYIKd2luZG93cy5ubIIKd2luaGVjLmNvbYIKd2luaGVjLm5ldIILKi5henVyZS5iaXqCCyouYXp1cmUubmV0ggsqLmdldGllLmNvbYILKi5tc2RuMi5jb22CCyoubmV0ZnguY29tggsqLnZzc2RrLmNvbYILc3VyZmFjZS5jb22CC3dpbmRvd3MuY29tggwqLmdpZ2phbS5jb22CDCoubXNkbnR2LmNvbYIMKi53aW5kb3dzLm5sggwqLndpbmhlYy5jb22CDCoud2luaGVjLm5ldIIMaG9sb2xlbnMuY29tggxtaWNyb3NvZnQuYXqCDG1pY3Jvc29mdC5iZYIMbWljcm9zb2Z0LmJ5ggxtaWNyb3NvZnQuY2GCDG1pY3Jvc29mdC5jaIIMbWljcm9zb2Z0LmNsggxtaWNyb3NvZnQuY3qCDG1pY3Jvc29mdC5kZYIMbWljcm9zb2Z0LmRrggxtaWNyb3NvZnQuZWWCDG1pY3Jvc29mdC5lc4IMbWljcm9zb2Z0LmV1ggxtaWNyb3NvZnQuZmmCDG1pY3Jvc29mdC5nZYIMbWljcm9zb2Z0LmdyggxtaWNyb3NvZnQuaHWCDG1pY3Jvc29mdC5pc4IMbWljcm9zb2Z0Lml0ggxtaWNyb3NvZnQuanCCDG1pY3Jvc29mdC5sdIIMbWljcm9zb2Z0Lmx1ggxtaWNyb3NvZnQubHaCDG1pY3Jvc29mdC5tZIIMbWljcm9zb2Z0LnBsggxtaWNyb3NvZnQucHSCDG1pY3Jvc29mdC5yb4IMbWljcm9zb2Z0LnJzggxtaWNyb3NvZnQucnWCDG1pY3Jvc29mdC5zZYIMbWljcm9zb2Z0LnNpggxtaWNyb3NvZnQudHaCDG1pY3Jvc29mdC51YYIMbWljcm9zb2Z0LnV6ggxtaWNyb3NvZnQudm6CDSouYml6dGFsay5vcmeCDSouaHlwZXItdi5jb22CDSoubXNkbm1hZy5jb22CDSouc3VyZmFjZS5jb22CDSoudm9ydC1leC5jb22CDSoud2luZG93cy5iaXqCDSoud2luZG93cy5jb22CDWltYWdpbmVjdXAucGyCDW1pY3Jvc29mdC5jYXSCDW1pY3Jvc29mdC5jb22CDiouZnVzZWxhYnMuY29tgg4qLmhvbG9sZW5zLmNvbYIOKi5taWNyb3NvZnQuY2GCDioubWljcm9zb2Z0LmN6gg4qLm1pY3Jvc29mdC5kZYIOKi5taWNyb3NvZnQuZXWCDioubWljcm9zb2Z0Lml0gg4qLm1pY3Jvc29mdC5qcIIOKi5taWNyb3NvZnQucGyCDioubWljcm9zb2Z0LnJ1gg4qLm1zZG53aWtpLmNvbYIPKi5nYW1ldm9pY2UuY29tgg8qLmltYWdpbmVjdXAucGyCDyoubWFjb2ZmaWNlLmNvbYIPKi5taWNyb3NvZnQuY29tghAqLm1pY3Jvc29mdC5iYW5kghAqLm1zbGVhcm5pbmcuY29tghAqLm1zbGVhcm5pbmcub3JnghAqLnBvd2VycG9pbnQuY29tghAqLnNoYXJlcG9pbnQubmV0ghEqLm15bWljcm9zb2Z0LmNvbYIRbWljcm9zb2Z0ZWRnZS5jb22CEW1pY3Jvc29mdGxpbmMuY29tghIqLmFwcHJlYWRpbmVzcy5jb22CEiouZGVwbG95b2ZmaWNlLmNvbYISKi5vZmZpY2V3ZWJhcHAuY29tghIqLnBhcnRuZXJndWlkZS5jb22CEiouc2NyaXB0anVua2llLmNvbYISKi5zeXNpbnRlcm5hbHMuY29tghJtaWNyb3NvZnRjbG91ZC5jb22CEyoubGFzdGRldmVsb3Blci5jb22CEyoubWljcm9zb2Z0YmFuZC5jb22CEyoubWljcm9zb2Z0ZWRnZS5jb22CEyoubWljcm9zb2Z0bGluYy5jb22CEyoubXNkbmdlZWtzcGVhay5jb22CEyouc3RhcnR1cGNlbnRlci5jb22CEyoud2luZG93c21vYmlsZS5jb22CFCouY2xpZW50c2VjdXJpdHkuY29tghQqLmNsaWVudHNlY3VyaXR5Lm5ldIIUKi5jbGllbnRzZWN1cml0eS5vcmeCFCoubWljcm9zb2Z0Y2xvdWQuY29tghQqLnBvd2VycG9pbnRsaXZlLmNvbYIUKi53aW5kb3dzY2F0YWxvZy5jb22CFSoubWljcm9zb2Z0aGVhbHRoLmNvbYIVKi5teXdpbmRvd3Ntb2JpbGUuY29tghUqLnBvd2VycG9pbnRyYWRpby5jb22CFSouc2hhcmVwb2ludHBlZGlhLmNvbYIVKi53aW5kb3dzZGVmZW5kZXIuY29tghUqLndpbmRvd3NkZWZlbmRlci5uZXSCFSoud2luZG93c2RlZmVuZGVyLm9yZ4IVKi53aW5kb3dzZW1iZWRkZWQuY29tghYqLm1pY3Jvc29mdHN1cmZhY2UuY29tghYqLm1pY3Jvc29mdHdpbmRvd3MuY29tghYqLm1vYmlsZXBjcGFydG5lcnMuY29tghZ3aW5kb3dzbWFya2V0cGxhY2UuY29tghcqLmRldmVsb3BvbmJpbmdtYXBzLmNvbYIXKi5taWNyb3NvZnRiaXpzcGFyay5jb22CFyoubWljcm9zb2Z0ZHluYW1pY3MuY29tghcqLm1pY3Jvc29mdGxlYXJuaW5nLm5ldIIXKi5taWNyb3NvZnRsZWFybmluZy5vcmeCFyoud2luZG93c3Bvd2Vyc2hlbGwub3JnghgqLm1pY3Jvc29mdGl0YWNhZGVteS5jb22CGCoucGFydG5lcnNpbmxlYXJuaW5nLmNvbYIYKi53aW5kb3dzbWFya2V0cGxhY2UuY29tghoqLm1pY3Jvc29mdGdhbWVzdHVkaW9zLmNvbYIbKi5tc3NoYXJlcG9pbnRjb21tdW5pdHkuY29tghsqLm15c2hhcmVwb2ludGNvbW11bml0eS5jb22CHCouYnVzaW5lc3NyZWFkeWxpY2Vuc2luZy5jb22CHCoucmV0YWlsZXhwZXJpZW5jZWNlbnRlci5jb20wgawGA1UdHwSBpDCBoTCBnqCBm6CBmIZLaHR0cDovL21zY3JsLm1pY3Jvc29mdC5jb20vcGtpL21zY29ycC9jcmwvTWljcm9zb2Z0JTIwSVQlMjBUTFMlMjBDQSUyMDQuY3JshklodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpL21zY29ycC9jcmwvTWljcm9zb2Z0JTIwSVQlMjBUTFMlMjBDQSUyMDQuY3JsME0GA1UdIARGMEQwQgYJKwYBBAGCNyoBMDUwMwYIKwYBBQUHAgEWJ2h0dHA6Ly93d3cubWljcm9zb2Z0LmNvbS9wa2kvbXNjb3JwL2NwczAfBgNVHSMEGDAWgBR6e4zBz+egyhzUa/r74TPDDxqinTAdBgNVHSUEFjAUBggrBgEFBQcDAgYIKwYBBQUHAwEwDQYJKoZIhvcNAQELBQADggIBACrMnCZR6pFRSGNDpUy1NYBlfZBFb94OgEhu+Prmq390badYhGb9opwkd+1TohltyGTAJqdaxP7ubmqYjAquEj6eZ1B9JvgelFNhDxeyaE5imUSH/J2+P7HXh4hE/acZAQtE6J6AhohLogWgvjidwlocqdlD7RT14RFW4faLgvAGJAa1zyNAlIhOY2LAb/VA6jmKv13XKnxA+iQ0dMQFBmvEpuH5bX3D8BQ3R3WLlZN6NJ9HuVhvJ7lv9UT0nYAWNGf2jOwH2MsBOeEN9q0mXTeEizfJUc2O9JOUPiJXtvvVvHmnZdF3Mk8ENL/f5k/jk+2PagfjFBQqVJJ1XBH+ndXesbEp6RkBytF/8ubvIAa9Kuel7FJjQTN8eVik2GNnQICHISgYXj8V5MKd/AmrWwBivRY5PAL0IKWjlZ39WWH7smocPgCuHqM7usme7I5ToujwomY9Z7XoewARy+sOt9qgZJ9QaPlKVXB3m+8fxjGtnyP+kBkBtX6ATkai4lcQg/Au+w9JWZZqNjCjU2dRq2GVz2uSAq/k8kKMcEr7kUlS96k9OxkH4LMhcaF/6/fZzEK/urLWlydQ8QuGlfgZkU3L8iFxVtZETFZQNYPR1KjylPhWKR3V1FtM2dtJ6nWC5UNhJHDkPsRnfp7gEvH7VgqVqMgAxIOxGqicYL66amu/"},{"base64":"MIIFtDCCBJygAwIBAgIQC2qzsD6xqfbEYJJqqM3+szANBgkqhkiG9w0BAQsFADBaMQswCQYDVQQGEwJJRTESMBAGA1UEChMJQmFsdGltb3JlMRMwEQYDVQQLEwpDeWJlclRydXN0MSIwIAYDVQQDExlCYWx0aW1vcmUgQ3liZXJUcnVzdCBSb290MB4XDTE2MDUyMDEyNTIzOFoXDTI0MDUyMDEyNTIzOFowgYsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpXYXNoaW5ndG9uMRAwDgYDVQQHEwdSZWRtb25kMR4wHAYDVQQKExVNaWNyb3NvZnQgQ29ycG9yYXRpb24xFTATBgNVBAsTDE1pY3Jvc29mdCBJVDEeMBwGA1UEAxMVTWljcm9zb2Z0IElUIFRMUyBDQSA0MIICIjANBgkqhkiG9w0BAQEFAAOCAg8AMIICCgKCAgEAq+XrXaNrOZ71NIgSux1SJl19CQvGeY6rtw7fGbLd7g/27vRW5Ebikg/iZwvjHHGk1EFztMuZFo6/d32wrx5s7XEuwwh3Sl6Sruxa0EiB0MXpoPV6jx6NXtOtksDaxpE1MSC5OQTNECo8lx0AnpkYGAnPS5fkyfwA8AxanTboskDBSqyEKKo9Rhgrp4qs9K9LqH5JQsdiIMDmpztd65Afu4rYnJDjOrFswpTOPjJry3GzQS65xeFd2FkngvvhSA1+6ATx+QEnQfqUWn3FMLu2utcRm4j6AcxuS5K5+Hg8y5xomhZmiNCTsCqDLpcRHX6BIGHksLmbnG5TlZUixtm9dRC62XWMPD8d0Jb4M0V7ex9UM+VIl6cFJKLb0dyVriAqfZaJSHuSetAksd5IEfdnPLTf+Fhg9U97NGjm/awmCLbzLEPbT8QW0JsMcYexB2uG3Y+gsftm2tjL6fLwZeWO2BzqL7otZPFe0BtQsgyFSs87yC4qanWMwK5c2enAfH182pzjvUqwYAeCK31dyBCvLmKM3Jr94dm5WUiXQhrDUIELH4Mia+SbvCkigv2AUVx1Xw41wt1/L3pnnz2OW4y7r530zAz7qB+dIcHz51IaXc4UV21QuEnusQsn0uJpJxJuxsAmPuekKxuLUzgG+hqHOuBLf5kWTlk9WWnxcadlZRsCAwEAAaOCAUIwggE+MB0GA1UdDgQWBBR6e4zBz+egyhzUa/r74TPDDxqinTAfBgNVHSMEGDAWgBTlnVkwgkdYzKz6CFQ2hns6tQRN8DASBgNVHRMBAf8ECDAGAQH/AgEAMA4GA1UdDwEB/wQEAwIBhjAnBgNVHSUEIDAeBggrBgEFBQcDAQYIKwYBBQUHAwIGCCsGAQUFBwMJMDQGCCsGAQUFBwEBBCgwJjAkBggrBgEFBQcwAYYYaHR0cDovL29jc3AuZGlnaWNlcnQuY29tMDoGA1UdHwQzMDEwL6AtoCuGKWh0dHA6Ly9jcmwzLmRpZ2ljZXJ0LmNvbS9PbW5pcm9vdDIwMjUuY3JsMD0GA1UdIAQ2MDQwMgYEVR0gADAqMCgGCCsGAQUFBwIBFhxodHRwczovL3d3dy5kaWdpY2VydC5jb20vQ1BTMA0GCSqGSIb3DQEBCwUAA4IBAQAR/nIGOiEKN27I9SkiAmKeRQ7t+gaf77+eJDUX/jmIsrsB4Xjf0YuX/bd38YpyT0k66LMp13SH5LnzF2CHiJJVgr3ZfRNIfwaQOolm552W95XNYA/X4cr2du76mzVIoZh90pMqT4EWx6iWu9El86ZvUNoAmyqo9DUA4/0sO+3lFZt/Fg/Hjsk2IJTwHQG5ElBQmYHgKEIsjnj/7cae1eTK6aCqs0hPpF/kixj/EwItkBE2GGYoOiKa3pXxWe6fbSoXdZNQwwUS1d5ktLa829d2Wf6l1uVW4f5GXDuK+OwO++8SkJHOIBKBujxS43/jQPQMQSBmhxjaMmng9tyPKPK9"}],"version":"0303","random":"a03596a7f91fe037e190fa94f64228c7b9e96b4c4fb12a612c106f3c939aee2e","selected_cipher_suite":"c030","compression_method":"00","session_ticket":""}},"reassembly_properties":{"reassembled":true},"ip":{"version":4,"ttl":128,"id":"9836"},"src_ip":"13.77.161.179","dst_ip":"192.168.113.237","protocol":6,"src_port":443,"dst_port":60570,"event_start":1565200318.068724} +{"dns":{"base64":"CNIBAAABAAAAAAAAA3d3dwltaWNyb3NvZnQDY29tAAABAAE="},"ip":{"version":4,"ttl":64,"id":"cda3"},"src_ip":"192.168.113.237","dst_ip":"192.168.113.2","protocol":17,"src_port":40531,"dst_port":53,"event_start":1565200318.294385} +{"dns":{"base64":"WnUBAAABAAAAAAAAA3d3dwltaWNyb3NvZnQDY29tAAAcAAE="},"ip":{"version":4,"ttl":64,"id":"cda4"},"src_ip":"192.168.113.237","dst_ip":"192.168.113.2","protocol":17,"src_port":43609,"dst_port":53,"event_start":1565200318.294704} +{"dns":{"base64":"CNKBgAABAAQADQAFA3d3dwltaWNyb3NvZnQDY29tAAABAAHADAAFAAEAAAAFACMDd3d3CW1pY3Jvc29mdAdjb20tYy0zB2VkZ2VrZXkDbmV0AMAvAAUAAQAAAAUANwN3d3cJbWljcm9zb2Z0B2NvbS1jLTMHZWRnZWtleQNuZXQLZ2xvYmFscmVkaXIGYWthZG5zwE3AXgAFAAEAAAAFABkGZTEzNjc4BGRzcGIKYWthbWFpZWRnZcBNwKEAAQABAAAABQAEF8EmYMBNAAIAAQAAAAUAEQFnDGd0bGQtc2VydmVyc8BNwE0AAgABAAAABQAEAWzA2MBNAAIAAQAAAAUABAFmwNjATQACAAEAAAAFAAQBYsDYwE0AAgABAAAABQAEAWTA2MBNAAIAAQAAAAUABAFtwNjATQACAAEAAAAFAAQBYcDYwE0AAgABAAAABQAEAWrA2MBNAAIAAQAAAAUABAFowNjATQACAAEAAAAFAAQBY8DYwE0AAgABAAAABQAEAWnA2MBNAAIAAQAAAAUABAFrwNjATQACAAEAAAAFAAQBZcDYwUMAAQABAAAABQAEwAUGHsETAAEAAQAAAAUABMAhDh7BcwABAAEAAAAFAATAGlwewSMAAQABAAAABQAEwB9QHsGjAAEAAQAAAAUABMAMXh4="},"ip":{"version":4,"ttl":128,"id":"983d"},"src_ip":"192.168.113.2","dst_ip":"192.168.113.237","protocol":17,"src_port":53,"dst_port":40531,"event_start":1565200318.328999} +{"dns":{"base64":"WnWBgAABAAUADAAAA3d3dwltaWNyb3NvZnQDY29tAAAcAAHADAAFAAEAAAAFACMDd3d3CW1pY3Jvc29mdAdjb20tYy0zB2VkZ2VrZXkDbmV0AMAvAAUAAQAAAAUANwN3d3cJbWljcm9zb2Z0B2NvbS1jLTMHZWRnZWtleQNuZXQLZ2xvYmFscmVkaXIGYWthZG5zwE3AXgAFAAEAAAAFABkGZTEzNjc4BGRzcGIKYWthbWFpZWRnZcBNwKEAHAABAAAABQAQJgAUHgACAagAAAAAAAA1bsChABwAAQAAAAUAECYAFB4AAgGKAAAAAAAANW7ArQACAAEAAAAFAAoHbnM3LTE5NMCtwK0AAgABAAAABQAJBmExLTE5MsCtwK0AAgABAAAABQAKB25zMy0xOTTArcCtAAIAAQAAAAUACgdhMTEtMTkywK3ArQACAAEAAAAFAAYDbGEzwK3ArQACAAEAAAAFAAYDbGExwK3ArQACAAEAAAAFAAoHbnM1LTE5NMCtwK0AAgABAAAABQAKB2ExMy0xOTLArcCtAAIAAQAAAAUABwRsYXIywK3ArQACAAEAAAAFAAkGYTYtMTkywK3ArQACAAEAAAAFAAoHYTEyLTE5MsCtwK0AAgABAAAABQAKB25zNi0xOTTArQ=="},"ip":{"version":4,"ttl":128,"id":"9840"},"src_ip":"192.168.113.2","dst_ip":"192.168.113.237","protocol":17,"src_port":53,"dst_port":43609,"event_start":1565200318.397349} +{"fingerprints":{"tcp":"tcp/(40)()(40)(faf0)((020405b4)(04)(08)(01)(030307))"},"tcp":{"seq":2794935574,"timestamp":{"ts_val":180163712}},"ip":{"version":4,"ttl":64,"id":"9628"},"src_ip":"192.168.113.237","dst_ip":"23.193.38.96","protocol":6,"src_port":33868,"dst_port":443,"event_start":1565200318.398426} +{"fingerprints":{"tcp_server":"tcp_server/(40)()(80)(faf0)((020405b4))"},"tcp_server":{"seq":3532302099},"ip":{"version":4,"ttl":128,"id":"9841"},"src_ip":"23.193.38.96","dst_ip":"192.168.113.237","protocol":6,"src_port":443,"dst_port":33868,"event_start":1565200318.436480} +{"fingerprints":{"tls":"tls/(0303)(130213031301c02cc030009fcca9cca8ccaac02bc02f009ec024c028006bc023c0270067c00ac0140039c009c0130033009d009c003d003c0035002f00ff)((0000)(000b000403000102)(000a000c000a001d0017001e00190018)(0023)(0016)(0017)(000d0030002e040305030603080708080809080a080b080408050806040105010601030302030301020103020202040205020602)(002b0009080304030303020301)(002d00020101)(0033))"},"tls":{"client":{"version":"0303","random":"04ecf70d0dfaaebce1219fc4115676c2732ac8496d6a7dd725f5e02e5cada271","session_id":"3cd0a764d0d55ef357d7e18e7f7dd1d9af44c55b9ce27078282758de8d9625f4","cipher_suites":"130213031301c02cc030009fcca9cca8ccaac02bc02f009ec024c028006bc023c0270067c00ac0140039c009c0130033009d009c003d003c0035002f00ff","compression_methods":"00","server_name":"www.microsoft.com","session_ticket":"","features":"[\"0303\",\"130213031301c02cc030009fcca9cca8ccaac02bc02f009ec024c028006bc023c0270067c00ac0140039c009c0130033009d009c003d003c0035002f00ff\",[[\"0000\",\"00140000117777772e6d6963726f736f66742e636f6d\"],[\"000b\",\"03000102\"],[\"000a\",\"000a001d0017001e00190018\"],[\"0023\",\"\"],[\"0016\",\"\"],[\"0017\",\"\"],[\"000d\",\"002e040305030603080708080809080a080b080408050806040105010601030302030301020103020202040205020602\"],[\"002b\",\"080304030303020301\"],[\"002d\",\"0101\"],[\"0033\",\"0024001d00205404f78b395491165a10d41833fec7fb2d67649f669b59b21e2800c240c69e16\"]]]"}},"ip":{"version":4,"ttl":64,"id":"962a"},"src_ip":"192.168.113.237","dst_ip":"23.193.38.96","protocol":6,"src_port":33868,"dst_port":443,"event_start":1565200318.436809} +{"fingerprints":{"tls_server":"tls_server/(0303)(c030)((ff01)(0000)(000b000403000102)(0023))"},"tls":{"server":{"certs":[{"base64":"MIIHnzCCBYegAwIBAgITFgAAoiZScXH3VKzEFgAAAACiJjANBgkqhkiG9w0BAQsFADCBizELMAkGA1UEBhMCVVMxEzARBgNVBAgTCldhc2hpbmd0b24xEDAOBgNVBAcTB1JlZG1vbmQxHjAcBgNVBAoTFU1pY3Jvc29mdCBDb3Jwb3JhdGlvbjEVMBMGA1UECxMMTWljcm9zb2Z0IElUMR4wHAYDVQQDExVNaWNyb3NvZnQgSVQgVExTIENBIDQwHhcNMTgwMTE2MjEyNDAyWhcNMjAwMTE2MjEyNDAyWjCBiDELMAkGA1UEBhMCVVMxCzAJBgNVBAgTAldBMRAwDgYDVQQHEwdSZWRtb25kMR4wHAYDVQQKExVNaWNyb3NvZnQgQ29ycG9yYXRpb24xHjAcBgNVBAsTFU1pY3Jvc29mdCBDb3Jwb3JhdGlvbjEaMBgGA1UEAxMRd3d3Lm1pY3Jvc29mdC5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDM6uKEPBupNS4BXRWdhU6RzawVP27lFo4eiAOloEHaXYM1DoPUJxxt+uyhwkk8yIZFKLK9AKX0qtqTVFOh3TFk77uGJKlfyugpVs+5sGGffhd0y2cGSyOltJLcf/v31tRjeN/xNi9CeHtcK46ksqgp9kdTDd1IuxDO9fN45LRPZkRuOpNyyXAHlMyVDO4Xfgt8CYH/ssmr1ZqYr98dO9iAiU+eFrz6huBCAJfFzMXWznbpwrsd41TjE5zPJkHaB9BOKuLZySfEQhIRewexFtJXlT88Kj6SfIoe2naZxqDW/tQVVzRxID092mXdVEjL2MZ6GocNk1pPezqY8wOUjgA7AgMBAAGjggL7MIIC9zCBmQYDVR0RBIGRMIGOghVwcml2YWN5Lm1pY3Jvc29mdC5jb22CEWMucy1taWNyb3NvZnQuY29tgg1taWNyb3NvZnQuY29tghFpLnMtbWljcm9zb2Z0LmNvbYIYc3RhdGljdmlldy5taWNyb3NvZnQuY29tghF3d3cubWljcm9zb2Z0LmNvbYITd3d3cWEubWljcm9zb2Z0LmNvbTAdBgNVHQ4EFgQUMqJLlf7sAXZDo1IX+BIPkeyx9OcwHwYDVR0jBBgwFoAUenuMwc/noMoc1Gv6++Ezww8aop0wgawGA1UdHwSBpDCBoTCBnqCBm6CBmIZLaHR0cDovL21zY3JsLm1pY3Jvc29mdC5jb20vcGtpL21zY29ycC9jcmwvTWljcm9zb2Z0JTIwSVQlMjBUTFMlMjBDQSUyMDQuY3JshklodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpL21zY29ycC9jcmwvTWljcm9zb2Z0JTIwSVQlMjBUTFMlMjBDQSUyMDQuY3JsMIGFBggrBgEFBQcBAQR5MHcwUQYIKwYBBQUHMAKGRWh0dHA6Ly93d3cubWljcm9zb2Z0LmNvbS9wa2kvbXNjb3JwL01pY3Jvc29mdCUyMElUJTIwVExTJTIwQ0ElMjA0LmNydDAiBggrBgEFBQcwAYYWaHR0cDovL29jc3AubXNvY3NwLmNvbTA+BgkrBgEEAYI3FQcEMTAvBicrBgEEAYI3FQiH2oZ1g+7ZAYLJhRuBtZ5hhfTrYIFdhNLfQoLnk3oCAWQCARowHQYDVR0lBBYwFAYIKwYBBQUHAwIGCCsGAQUFBwMBMAsGA1UdDwQEAwIEsDBNBgNVHSAERjBEMEIGCSsGAQQBgjcqATA1MDMGCCsGAQUFBwIBFidodHRwOi8vd3d3Lm1pY3Jvc29mdC5jb20vcGtpL21zY29ycC9jcHMwJwYJKwYBBAGCNxUKBBowGDAKBggrBgEFBQcDAjAKBggrBgEFBQcDATANBgkqhkiG9w0BAQsFAAOCAgEAZQDBGHkYWARoiApsKcns0lfEuovFuh9CQ3ZMVTDjDhvls0IcuddtEvETXdB+h8+vgIx4jC7SmsRrpEH28X06qEZCMd1vPP/rEI9ZYwAnzabB/HRkGsPHv/hkjVbhcsqYVkPyD9MYc+cgRE0Nggh+l2fIuSxrMvFw0iLsE/7ZkyiZFWfLkddu/be7gjoYIbNyS6E2HQkHlexz9QBUMHERUYBuqey+c1l45WTgLJUWsqeIZJ01oekLkdkR4tg1pZbnFjDeRBqFLnUU1RMHlgKodJYPMzBCkZGRk0mCZJDJcZv62HNdT/Zuz4yHLz6KQcjpVZacYyqeBBqJtus5zSJKP8l9MqZYbihsmAlXZdeXPwiB+YEeGGEGi2iDV39eSs6rPCL1BYZ5kvfoBdSfTAPmviK4ezCUuBL/k4YulsrquoAC/Sz+xFVEBK+qdYXczxgFMxXnx6XjxkKGYrf33g6e/9XexHsyWolQhrmbZE3GrTmH9hbqh0bg+95qhk0oq+iDWy3Lj5ZnexabBg/r+szxTNmPp0LIvMcM1YW9hkAyDYuDSB0Yee/p+ByJUeMIT55F/YO/Qtqc7Z2vNvnq/229nly2lg8AVwDliH30hloIffEXMY3xJWwDUG6Uj++g+838tBwUOF9wrBIwh9pI8EQLW9HUROzSg8ALy7tgVWuowFo="},{"base64":"MIIFtDCCBJygAwIBAgIQC2qzsD6xqfbEYJJqqM3+szANBgkqhkiG9w0BAQsFADBaMQswCQYDVQQGEwJJRTESMBAGA1UEChMJQmFsdGltb3JlMRMwEQYDVQQLEwpDeWJlclRydXN0MSIwIAYDVQQDExlCYWx0aW1vcmUgQ3liZXJUcnVzdCBSb290MB4XDTE2MDUyMDEyNTIzOFoXDTI0MDUyMDEyNTIzOFowgYsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpXYXNoaW5ndG9uMRAwDgYDVQQHEwdSZWRtb25kMR4wHAYDVQQKExVNaWNyb3NvZnQgQ29ycG9yYXRpb24xFTATBgNVBAsTDE1pY3Jvc29mdCBJVDEeMBwGA1UEAxMVTWljcm9zb2Z0IElUIFRMUyBDQSA0MIICIjANBgkqhkiG9w0BAQEFAAOCAg8AMIICCgKCAgEAq+XrXaNrOZ71NIgSux1SJl19CQvGeY6rtw7fGbLd7g/27vRW5Ebikg/iZwvjHHGk1EFztMuZFo6/d32wrx5s7XEuwwh3Sl6Sruxa0EiB0MXpoPV6jx6NXtOtksDaxpE1MSC5OQTNECo8lx0AnpkYGAnPS5fkyfwA8AxanTboskDBSqyEKKo9Rhgrp4qs9K9LqH5JQsdiIMDmpztd65Afu4rYnJDjOrFswpTOPjJry3GzQS65xeFd2FkngvvhSA1+6ATx+QEnQfqUWn3FMLu2utcRm4j6AcxuS5K5+Hg8y5xomhZmiNCTsCqDLpcRHX6BIGHksLmbnG5TlZUixtm9dRC62XWMPD8d0Jb4M0V7ex9UM+VIl6cFJKLb0dyVriAqfZaJSHuSetAksd5IEfdnPLTf+Fhg9U97NGjm/awmCLbzLEPbT8QW0JsMcYexB2uG3Y+gsftm2tjL6fLwZeWO2BzqL7otZPFe0BtQsgyFSs87yC4qanWMwK5c2enAfH182pzjvUqwYAeCK31dyBCvLmKM3Jr94dm5WUiXQhrDUIELH4Mia+SbvCkigv2AUVx1Xw41wt1/L3pnnz2OW4y7r530zAz7qB+dIcHz51IaXc4UV21QuEnusQsn0uJpJxJuxsAmPuekKxuLUzgG+hqHOuBLf5kWTlk9WWnxcadlZRsCAwEAAaOCAUIwggE+MB0GA1UdDgQWBBR6e4zBz+egyhzUa/r74TPDDxqinTAfBgNVHSMEGDAWgBTlnVkwgkdYzKz6CFQ2hns6tQRN8DASBgNVHRMBAf8ECDAGAQH/AgEAMA4GA1UdDwEB/wQEAwIBhjAnBgNVHSUEIDAeBggrBgEFBQcDAQYIKwYBBQUHAwIGCCsGAQUFBwMJMDQGCCsGAQUFBwEBBCgwJjAkBggrBgEFBQcwAYYYaHR0cDovL29jc3AuZGlnaWNlcnQuY29tMDoGA1UdHwQzMDEwL6AtoCuGKWh0dHA6Ly9jcmwzLmRpZ2ljZXJ0LmNvbS9PbW5pcm9vdDIwMjUuY3JsMD0GA1UdIAQ2MDQwMgYEVR0gADAqMCgGCCsGAQUFBwIBFhxodHRwczovL3d3dy5kaWdpY2VydC5jb20vQ1BTMA0GCSqGSIb3DQEBCwUAA4IBAQAR/nIGOiEKN27I9SkiAmKeRQ7t+gaf77+eJDUX/jmIsrsB4Xjf0YuX/bd38YpyT0k66LMp13SH5LnzF2CHiJJVgr3ZfRNIfwaQOolm552W95XNYA/X4cr2du76mzVIoZh90pMqT4EWx6iWu9El86ZvUNoAmyqo9DUA4/0sO+3lFZt/Fg/Hjsk2IJTwHQG5ElBQmYHgKEIsjnj/7cae1eTK6aCqs0hPpF/kixj/EwItkBE2GGYoOiKa3pXxWe6fbSoXdZNQwwUS1d5ktLa829d2Wf6l1uVW4f5GXDuK+OwO++8SkJHOIBKBujxS43/jQPQMQSBmhxjaMmng9tyPKPK9"}],"version":"0303","random":"65537a41ae7b9dc8668799acf927e92d0903fbe1491e627a45f8c125e1987dd0","selected_cipher_suite":"c030","compression_method":"00","session_ticket":""}},"reassembly_properties":{"reassembled":true},"ip":{"version":4,"ttl":128,"id":"9845"},"src_ip":"23.193.38.96","dst_ip":"192.168.113.237","protocol":6,"src_port":443,"dst_port":33868,"event_start":1565200318.475686} +{"dns":{"base64":"95cBAAABAAAAAAAACGxpbmtlZGluA2NvbQAAAQAB"},"ip":{"version":4,"ttl":64,"id":"cde2"},"src_ip":"192.168.113.237","dst_ip":"192.168.113.2","protocol":17,"src_port":44500,"dst_port":53,"event_start":1565200318.887409} +{"dns":{"base64":"2z4BAAABAAAAAAAACGxpbmtlZGluA2NvbQAAHAAB"},"ip":{"version":4,"ttl":64,"id":"cde3"},"src_ip":"192.168.113.237","dst_ip":"192.168.113.2","protocol":17,"src_port":34101,"dst_port":53,"event_start":1565200318.887566} +{"dns":{"base64":"95eBgAABAAEADQAOCGxpbmtlZGluA2NvbQAAAQABwAwAAQABAAAABQAEbK4KCsAVAAIAAQAAAAUAFAFqDGd0bGQtc2VydmVycwNuZXQAwBUAAgABAAAABQAEAWPAPMAVAAIAAQAAAAUABAFnwDzAFQACAAEAAAAFAAQBaMA8wBUAAgABAAAABQAEAWvAPMAVAAIAAQAAAAUABAFkwDzAFQACAAEAAAAFAAQBZcA8wBUAAgABAAAABQAEAWHAPMAVAAIAAQAAAAUABAFtwDzAFQACAAEAAAAFAAQBacA8wBUAAgABAAAABQAEAWzAPMAVAAIAAQAAAAUABAFmwDzAFQACAAEAAAAFAAQBYsA8wLoAAQABAAAABQAEwAUGHsEKAAEAAQAAAAUABMAhDh7AWgABAAEAAAAFAATAGlwewJoAAQABAAAABQAEwB9QHsCqAAEAAQAAAAUABMAMXh7A+gABAAEAAAAFAATAIzMewGoAAQABAAAABQAEwCpdHsB6AAEAAQAAAAUABMA2cB7A2gABAAEAAAAFAATAK6wewDoAAQABAAAABQAEwDBPHsCKAAEAAQAAAAUABMA0sh7A6gABAAEAAAAFAATAKaIewMoAAQABAAAABQAEwDdTHsC6ABwAAQAAAAUAECABBQOoPgAAAAAAAAACADA="},"ip":{"version":4,"ttl":128,"id":"98e2"},"src_ip":"192.168.113.2","dst_ip":"192.168.113.237","protocol":17,"src_port":53,"dst_port":44500,"event_start":1565200318.888279} +{"dns":{"base64":"2z6BgAABAAEADQANCGxpbmtlZGluA2NvbQAAHAABwAwAHAABAAAABQAQJiABCcACAAAAAAAAbK4KCsAVAAIAAQAAAAUAFAFpDGd0bGQtc2VydmVycwNuZXQAwBUAAgABAAAABQAEAWPASMAVAAIAAQAAAAUABAFqwEjAFQACAAEAAAAFAAQBYcBIwBUAAgABAAAABQAEAWjASMAVAAIAAQAAAAUABAFtwEjAFQACAAEAAAAFAAQBZcBIwBUAAgABAAAABQAEAWbASMAVAAIAAQAAAAUABAFrwEjAFQACAAEAAAAFAAQBZ8BIwBUAAgABAAAABQAEAWLASMAVAAIAAQAAAAUABAFswEjAFQACAAEAAAAFAAQBZMBIwIYAAQABAAAABQAEwAUGHsD2AAEAAQAAAAUABMAhDh7AZgABAAEAAAAFAATAGlwewRYAAQABAAAABQAEwB9QHsC2AAEAAQAAAAUABMAMXh7AxgABAAEAAAAFAATAIzMewOYAAQABAAAABQAEwCpdHsCWAAEAAQAAAAUABMA2cB7ARgABAAEAAAAFAATAK6wewHYAAQABAAAABQAEwDBPHsDWAAEAAQAAAAUABMA0sh7BBgABAAEAAAAFAATAKaIewKYAAQABAAAABQAEwDdTHg=="},"ip":{"version":4,"ttl":128,"id":"98e3"},"src_ip":"192.168.113.2","dst_ip":"192.168.113.237","protocol":17,"src_port":53,"dst_port":34101,"event_start":1565200318.924396} +{"fingerprints":{"tcp":"tcp/(40)()(40)(faf0)((020405b4)(04)(08)(01)(030307))"},"tcp":{"seq":579365839,"timestamp":{"ts_val":2949628754}},"ip":{"version":4,"ttl":64,"id":"a80e"},"src_ip":"192.168.113.237","dst_ip":"108.174.10.10","protocol":6,"src_port":38906,"dst_port":443,"event_start":1565200318.924781} +{"fingerprints":{"tcp_server":"tcp_server/(40)()(80)(faf0)((020405b4))"},"tcp_server":{"seq":828354526},"ip":{"version":4,"ttl":128,"id":"98e4"},"src_ip":"108.174.10.10","dst_ip":"192.168.113.237","protocol":6,"src_port":443,"dst_port":38906,"event_start":1565200318.962619} +{"fingerprints":{"tls":"tls/(0303)(130213031301c02cc030009fcca9cca8ccaac02bc02f009ec024c028006bc023c0270067c00ac0140039c009c0130033009d009c003d003c0035002f00ff)((0000)(000b000403000102)(000a000c000a001d0017001e00190018)(0023)(0016)(0017)(000d0030002e040305030603080708080809080a080b080408050806040105010601030302030301020103020202040205020602)(002b0009080304030303020301)(002d00020101)(0033))"},"tls":{"client":{"version":"0303","random":"0062324d9b4e25e284bc05deb5d039d0ea61376993a8a3b5bf1fe280e9da4559","session_id":"e7ba3c4cb64ed46b911af8e23e721c1d9c24b81cd8aea29dbe39084452a47731","cipher_suites":"130213031301c02cc030009fcca9cca8ccaac02bc02f009ec024c028006bc023c0270067c00ac0140039c009c0130033009d009c003d003c0035002f00ff","compression_methods":"00","server_name":"linkedin.com","session_ticket":"","features":"[\"0303\",\"130213031301c02cc030009fcca9cca8ccaac02bc02f009ec024c028006bc023c0270067c00ac0140039c009c0130033009d009c003d003c0035002f00ff\",[[\"0000\",\"000f00000c6c696e6b6564696e2e636f6d\"],[\"000b\",\"03000102\"],[\"000a\",\"000a001d0017001e00190018\"],[\"0023\",\"\"],[\"0016\",\"\"],[\"0017\",\"\"],[\"000d\",\"002e040305030603080708080809080a080b080408050806040105010601030302030301020103020202040205020602\"],[\"002b\",\"080304030303020301\"],[\"002d\",\"0101\"],[\"0033\",\"0024001d00201d194f31d76a937d4000fd482165c70888bf544bd9b3b774dd333e1f00a90850\"]]]"}},"ip":{"version":4,"ttl":64,"id":"a810"},"src_ip":"192.168.113.237","dst_ip":"108.174.10.10","protocol":6,"src_port":38906,"dst_port":443,"event_start":1565200318.963027} +{"fingerprints":{"tls_server":"tls_server/(0303)(c02f)((ff01)(0000)(000b000403000102)(0023)(0017))"},"tls":{"server":{"certs":[{"base64":"MIIHTTCCBjWgAwIBAgIQAXBEMNrkYNTuijQQnLcKBDANBgkqhkiG9w0BAQsFADBNMQswCQYDVQQGEwJVUzEVMBMGA1UEChMMRGlnaUNlcnQgSW5jMScwJQYDVQQDEx5EaWdpQ2VydCBTSEEyIFNlY3VyZSBTZXJ2ZXIgQ0EwHhcNMTgwNTMwMDAwMDAwWhcNMjAwOTAxMDAwMDAwWjB0MQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNTW91bnRhaW4gVmlldzEdMBsGA1UEChMUTGlua2VkSW4gQ29ycG9yYXRpb24xGTAXBgNVBAMTEHd3dy5saW5rZWRpbi5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQC7EIO7ZCS57AL7mW79kZ0rR3rfWYksMQnt1NQGfbLI88qxIqg6DMp8TNteTfeWQKpy0JFm4zTNjaSmA0UxKLBPERe67/gGAT1xjINNUx/iOFcj1H7y/1gs7SVsJ6JFmCgPIXID8AeOtHYe8dzVpYPAEXIYi93H58menJa11h5gl3Pfh9nkp9J5B3YK9reXIulcu6Kp8YCLcVT+LIrQzO8S46mHsh9sjLOoDeM5nk7C2+kjgFPE00wYweECBFjnzDaFimJa7W6NiZdrTMbJiV0QSlYWCtBm/ex8oRnv69aHwqGU9aFDYXXYe8soq4UzBoxUeUKrILYdTX4csK+VHoMLAgMBAAGjggQAMIID/DAfBgNVHSMEGDAWgBQPgGEcgjFh1S8o541GOLQs4cbZ4jAdBgNVHQ4EFgQUlN2Cs4TYrUJ+AeD/6tPeT+VBk80wTAYDVR0RBEUwQ4IQd3d3LmxpbmtlZGluLmNvbYIPbWVkaWEubGljZG4uY29tghBzdGF0aWMubGljZG4uY29tggxsaW5rZWRpbi5jb20wDgYDVR0PAQH/BAQDAgWgMB0GA1UdJQQWMBQGCCsGAQUFBwMBBggrBgEFBQcDAjBrBgNVHR8EZDBiMC+gLaArhilodHRwOi8vY3JsMy5kaWdpY2VydC5jb20vc3NjYS1zaGEyLWc2LmNybDAvoC2gK4YpaHR0cDovL2NybDQuZGlnaWNlcnQuY29tL3NzY2Etc2hhMi1nNi5jcmwwTAYDVR0gBEUwQzA3BglghkgBhv1sAQEwKjAoBggrBgEFBQcCARYcaHR0cHM6Ly93d3cuZGlnaWNlcnQuY29tL0NQUzAIBgZngQwBAgIwfAYIKwYBBQUHAQEEcDBuMCQGCCsGAQUFBzABhhhodHRwOi8vb2NzcC5kaWdpY2VydC5jb20wRgYIKwYBBQUHMAKGOmh0dHA6Ly9jYWNlcnRzLmRpZ2ljZXJ0LmNvbS9EaWdpQ2VydFNIQTJTZWN1cmVTZXJ2ZXJDQS5jcnQwDAYDVR0TAQH/BAIwADCCAfQGCisGAQQB1nkCBAIEggHkBIIB4AHeAHYApLkJkLQYWBSHuxOizGdwCjw1mAT5G9+443fNDsgN3BAAAAFjskR9OAAABAMARzBFAiApWVtfQZ+QMpPq3tkEwLmmHnjQnwsQhJ464m1ibJbwyAIhAORfUeW72J63+NpMIXi+AGfoBQ9xeYNwbXfxKlTLmDgHAHUAh3W/51l8+IxDmV+9827/Vo1HVjb/SrVgwbTq/16ggw8AAAFjskR+DQAABAMARjBEAiAK5UFiJQhsItiNIhbXgGWA7QeY0Bf22ZM2s1PYJppHkQIgTGViCUQ8gNEqBBl66H1M9t34DzpHObUkzVMqVVJejV4AdAC72d+8H4pxtZOUI5eqkntHOFeVCqtS6BqQlmQ2jh7RhQAAAWOyRH4EAAAEAwBFMEMCHz9v4I8sB4+5kYsyF3ZhCj9qq32Cl08uxKCguUuGeAQCIF0bVhp2DAoQuY3ZGURzxUFYb3nH88AmTZLetYEDlm0nAHcAVYHUwhaQNgFK6gubVzxT8MDkOHhwJQgXL6OqHQcT0wwAAAFjskR/igAABAMASDBGAiEAoAXrwTz48+EEBF+8CnLw8FAT938F+kve/9m6XjuxFdECIQCU6M6OSiUCxlV3y06YoCPqaFpLDpTAujd8x5o2xIRs2TANBgkqhkiG9w0BAQsFAAOCAQEAERzOZXblnmBzczHgqL1Mcr9bt1tkYc9LwHF31Lf2Ky2UR09Dl9p/dWYPxJeVkuEYYhdFyeFBOCW2Xc/S4QtyBRxXFof/AvCoDImEShLI4YazoqBZGgfJsilc9bcVGuULdXuFUgc0HZYbOBD1zLms99NdPKiJQTAFF67cey0Uy9WPQStyxQ3am+wkQrlmtqb2pltH+ZXFGHP6CZ+4cirf85/KseKqffZ4eGxNYn9ZEwzNiCk9lTiZzp0eO7ovzH2FTHI8EZEbfid0EaULYN0YbGLHhdrZq8tPbXNl6ghkH2UFHp/EglHQS2mbwlv6WjourfH/qEzcgeANfrNMEgMicQ=="},{"base64":"MIIElDCCA3ygAwIBAgIQAf2j627KdciIQ4tyS8+8kTANBgkqhkiG9w0BAQsFADBhMQswCQYDVQQGEwJVUzEVMBMGA1UEChMMRGlnaUNlcnQgSW5jMRkwFwYDVQQLExB3d3cuZGlnaWNlcnQuY29tMSAwHgYDVQQDExdEaWdpQ2VydCBHbG9iYWwgUm9vdCBDQTAeFw0xMzAzMDgxMjAwMDBaFw0yMzAzMDgxMjAwMDBaME0xCzAJBgNVBAYTAlVTMRUwEwYDVQQKEwxEaWdpQ2VydCBJbmMxJzAlBgNVBAMTHkRpZ2lDZXJ0IFNIQTIgU2VjdXJlIFNlcnZlciBDQTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANyuWJBNwcQwFZA1W248ghX1LFy949v/cUP6ZCWA1O4Yok3wZtAKc24RmDYXZK83nf36QYSvx6+M/hpzTc8zl5CilodTgyu5pnVILR1WN3vaMTIa16yrBvSqXUu3R0bdKpPDkC55gIDvEwRqFDu1m5K+wgdlTvza/P96rtxcflUxDOg5B6TXvi/TC2rSsd9f/ld0Uzs1gN2ujkSYs58O09rg1/RrKatEp0tYhG2SS4HD2nOLEpdIkARFdRrdNzGXkujNVA075ME/OV4uuPNcfhCOhkEAjUVmR7ChZc6gqikJTvOX6+guqw9ypzAO+sf0/RR3w6RbKFfCs/mC/bdFWJsCAwEAAaOCAVowggFWMBIGA1UdEwEB/wQIMAYBAf8CAQAwDgYDVR0PAQH/BAQDAgGGMDQGCCsGAQUFBwEBBCgwJjAkBggrBgEFBQcwAYYYaHR0cDovL29jc3AuZGlnaWNlcnQuY29tMHsGA1UdHwR0MHIwN6A1oDOGMWh0dHA6Ly9jcmwzLmRpZ2ljZXJ0LmNvbS9EaWdpQ2VydEdsb2JhbFJvb3RDQS5jcmwwN6A1oDOGMWh0dHA6Ly9jcmw0LmRpZ2ljZXJ0LmNvbS9EaWdpQ2VydEdsb2JhbFJvb3RDQS5jcmwwPQYDVR0gBDYwNDAyBgRVHSAAMCowKAYIKwYBBQUHAgEWHGh0dHBzOi8vd3d3LmRpZ2ljZXJ0LmNvbS9DUFMwHQYDVR0OBBYEFA+AYRyCMWHVLyjnjUY4tCzhxtniMB8GA1UdIwQYMBaAFAPeUDVW0Uy7ZvCj4hsbw5eyPdFVMA0GCSqGSIb3DQEBCwUAA4IBAQAjPt9L0jFCpbZ+QlwaRMxp0Wi0XUvgBCFsS+JtzLHgl4+mUwnNqipl5TlPHoOlblyYoiQm5vuh7ZPHLgLGTUq/sELfeNqzqPlt/yGFUzZgTHbO7Djc1lGA8MXW5dRNJ2Srm8c+cftIl7gzbckTB+6WohsYFfZcTEDts8Ls/3HB40f/1LkAtDdC2iDJ6m6K7hQGrn2iWZiIqBtvLfTyyRRfJs8sjX7tN8Cp1Tm5gr8ZDOo0rwAhaPitc+LJMto4JQtV05od8GiG7S5BNO98pVAdvzr508EIDObtHopYJeS4d60tbvVS3bR0j6tJLp07kzQoH3jOlOrHvdPJbRzeXDLz"}],"version":"0303","random":"25c27c467847aa03f197dfef7f15920f0f124c6bdc32ff73377ae799b24d7a89","selected_cipher_suite":"c02f","compression_method":"00","session_ticket":""}},"reassembly_properties":{"reassembled":true},"ip":{"version":4,"ttl":128,"id":"98e8"},"src_ip":"108.174.10.10","dst_ip":"192.168.113.237","protocol":6,"src_port":443,"dst_port":38906,"event_start":1565200319.004903} +{"dns":{"base64":"mG4BAAABAAAAAAAAA3d3dwhsaW5rZWRpbgNjb20AAAEAAQ=="},"ip":{"version":4,"ttl":64,"id":"cdff"},"src_ip":"192.168.113.237","dst_ip":"192.168.113.2","protocol":17,"src_port":43639,"dst_port":53,"event_start":1565200319.095856} +{"dns":{"base64":"M3IBAAABAAAAAAAAA3d3dwhsaW5rZWRpbgNjb20AABwAAQ=="},"ip":{"version":4,"ttl":64,"id":"ce00"},"src_ip":"192.168.113.237","dst_ip":"192.168.113.2","protocol":17,"src_port":53706,"dst_port":53,"event_start":1565200319.096015} +{"dns":{"base64":"mG6BgAABAAMADQAMA3d3dwhsaW5rZWRpbgNjb20AAAEAAcAMAAUAAQAAAAUACgd3d3ctc3JjwBDALgAFAAEAAAAFAAsIcG9wLWVkYTbADMBEAAEAAQAAAAUABGyuC0HAGQACAAEAAAAFABQBZQxndGxkLXNlcnZlcnMDbmV0AMAZAAIAAQAAAAUABAFrwG3AGQACAAEAAAAFAAQBacBtwBkAAgABAAAABQAEAW3AbcAZAAIAAQAAAAUABAFmwG3AGQACAAEAAAAFAAQBY8BtwBkAAgABAAAABQAEAWTAbcAZAAIAAQAAAAUABAFqwG3AGQACAAEAAAAFAAQBaMBtwBkAAgABAAAABQAEAWHAbcAZAAIAAQAAAAUABAFnwG3AGQACAAEAAAAFAAQBbMBtwBkAAgABAAAABQAEAWLAbcELAAEAAQAAAAUABMAFBh7BOwABAAEAAAAFAATAIQ4ewMsAAQABAAAABQAEwBpcHsDbAAEAAQAAAAUABMAfUB7AawABAAEAAAAFAATADF4ewLsAAQABAAAABQAEwCMzHsEbAAEAAQAAAAUABMAqXR7A+wABAAEAAAAFAATANnAewJsAAQABAAAABQAEwCusHsDrAAEAAQAAAAUABMAwTx7AiwABAAEAAAAFAATANLIewSsAAQABAAAABQAEwCmiHg=="},"ip":{"version":4,"ttl":128,"id":"98f1"},"src_ip":"192.168.113.2","dst_ip":"192.168.113.237","protocol":17,"src_port":53,"dst_port":43639,"event_start":1565200319.096641} +{"dns":{"base64":"M3KBgAABAAMADQALA3d3dwhsaW5rZWRpbgNjb20AABwAAcAMAAUAAQAAAAUACgd3d3ctc3JjwBDALgAFAAEAAAAFAAsIcG9wLWVkYTbADMBEABwAAQAAAAUAECYgARlQ4wEBAAAAAGyuC0HAGQACAAEAAAAFABQBYgxndGxkLXNlcnZlcnMDbmV0AMAZAAIAAQAAAAUABAFnwHnAGQACAAEAAAAFAAQBZsB5wBkAAgABAAAABQAEAWHAecAZAAIAAQAAAAUABAFkwHnAGQACAAEAAAAFAAQBa8B5wBkAAgABAAAABQAEAWXAecAZAAIAAQAAAAUABAFjwHnAGQACAAEAAAAFAAQBbcB5wBkAAgABAAAABQAEAWrAecAZAAIAAQAAAAUABAFswHnAGQACAAEAAAAFAAQBacB5wBkAAgABAAAABQAEAWjAecC3AAEAAQAAAAUABMAFBh7AdwABAAEAAAAFAATAIQ4ewPcAAQABAAAABQAEwBpcHsDHAAEAAQAAAAUABMAfUB7A5wABAAEAAAAFAATADF4ewKcAAQABAAAABQAEwCMzHsCXAAEAAQAAAAUABMAqXR7BRwABAAEAAAAFAATANnAewTcAAQABAAAABQAEwCusHsEXAAEAAQAAAAUABMAwTx7A1wABAAEAAAAFAATANLIe"},"ip":{"version":4,"ttl":128,"id":"98f2"},"src_ip":"192.168.113.2","dst_ip":"192.168.113.237","protocol":17,"src_port":53,"dst_port":53706,"event_start":1565200319.096651} +{"fingerprints":{"tcp":"tcp/(40)()(40)(faf0)((020405b4)(04)(08)(01)(030307))"},"tcp":{"seq":3690800819,"timestamp":{"ts_val":2114887834}},"ip":{"version":4,"ttl":64,"id":"e55f"},"src_ip":"192.168.113.237","dst_ip":"108.174.11.65","protocol":6,"src_port":47924,"dst_port":443,"event_start":1565200319.097269} +{"fingerprints":{"tcp_server":"tcp_server/(40)()(80)(faf0)((020405b4))"},"tcp_server":{"seq":2840064753},"ip":{"version":4,"ttl":128,"id":"98f4"},"src_ip":"108.174.11.65","dst_ip":"192.168.113.237","protocol":6,"src_port":443,"dst_port":47924,"event_start":1565200319.166221} +{"fingerprints":{"tls":"tls/(0303)(130213031301c02cc030009fcca9cca8ccaac02bc02f009ec024c028006bc023c0270067c00ac0140039c009c0130033009d009c003d003c0035002f00ff)((0000)(000b000403000102)(000a000c000a001d0017001e00190018)(0023)(0016)(0017)(000d0030002e040305030603080708080809080a080b080408050806040105010601030302030301020103020202040205020602)(002b0009080304030303020301)(002d00020101)(0033))"},"tls":{"client":{"version":"0303","random":"b448d31d4e72a8d5e71b9a16350ce182406549518bb67a376a6cb1b95f99ed75","session_id":"16f6c8bf08a72135c0fbba9d6347fbf976ee05804d2c48c32a06c401b8230b32","cipher_suites":"130213031301c02cc030009fcca9cca8ccaac02bc02f009ec024c028006bc023c0270067c00ac0140039c009c0130033009d009c003d003c0035002f00ff","compression_methods":"00","server_name":"www.linkedin.com","session_ticket":"","features":"[\"0303\",\"130213031301c02cc030009fcca9cca8ccaac02bc02f009ec024c028006bc023c0270067c00ac0140039c009c0130033009d009c003d003c0035002f00ff\",[[\"0000\",\"00130000107777772e6c696e6b6564696e2e636f6d\"],[\"000b\",\"03000102\"],[\"000a\",\"000a001d0017001e00190018\"],[\"0023\",\"\"],[\"0016\",\"\"],[\"0017\",\"\"],[\"000d\",\"002e040305030603080708080809080a080b080408050806040105010601030302030301020103020202040205020602\"],[\"002b\",\"080304030303020301\"],[\"002d\",\"0101\"],[\"0033\",\"0024001d00207ed8d57dc1127c2bb147f3fbe1af8ff6113761463e905bf8be337b178af0171e\"]]]"}},"ip":{"version":4,"ttl":64,"id":"e561"},"src_ip":"192.168.113.237","dst_ip":"108.174.11.65","protocol":6,"src_port":47924,"dst_port":443,"event_start":1565200319.166463} +{"fingerprints":{"tls_server":"tls_server/(0303)(c02f)((ff01)(0000)(000b000403000102)(0023)(0017))"},"tls":{"server":{"certs":[{"base64":"MIIHTTCCBjWgAwIBAgIQAXBEMNrkYNTuijQQnLcKBDANBgkqhkiG9w0BAQsFADBNMQswCQYDVQQGEwJVUzEVMBMGA1UEChMMRGlnaUNlcnQgSW5jMScwJQYDVQQDEx5EaWdpQ2VydCBTSEEyIFNlY3VyZSBTZXJ2ZXIgQ0EwHhcNMTgwNTMwMDAwMDAwWhcNMjAwOTAxMDAwMDAwWjB0MQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNTW91bnRhaW4gVmlldzEdMBsGA1UEChMUTGlua2VkSW4gQ29ycG9yYXRpb24xGTAXBgNVBAMTEHd3dy5saW5rZWRpbi5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQC7EIO7ZCS57AL7mW79kZ0rR3rfWYksMQnt1NQGfbLI88qxIqg6DMp8TNteTfeWQKpy0JFm4zTNjaSmA0UxKLBPERe67/gGAT1xjINNUx/iOFcj1H7y/1gs7SVsJ6JFmCgPIXID8AeOtHYe8dzVpYPAEXIYi93H58menJa11h5gl3Pfh9nkp9J5B3YK9reXIulcu6Kp8YCLcVT+LIrQzO8S46mHsh9sjLOoDeM5nk7C2+kjgFPE00wYweECBFjnzDaFimJa7W6NiZdrTMbJiV0QSlYWCtBm/ex8oRnv69aHwqGU9aFDYXXYe8soq4UzBoxUeUKrILYdTX4csK+VHoMLAgMBAAGjggQAMIID/DAfBgNVHSMEGDAWgBQPgGEcgjFh1S8o541GOLQs4cbZ4jAdBgNVHQ4EFgQUlN2Cs4TYrUJ+AeD/6tPeT+VBk80wTAYDVR0RBEUwQ4IQd3d3LmxpbmtlZGluLmNvbYIPbWVkaWEubGljZG4uY29tghBzdGF0aWMubGljZG4uY29tggxsaW5rZWRpbi5jb20wDgYDVR0PAQH/BAQDAgWgMB0GA1UdJQQWMBQGCCsGAQUFBwMBBggrBgEFBQcDAjBrBgNVHR8EZDBiMC+gLaArhilodHRwOi8vY3JsMy5kaWdpY2VydC5jb20vc3NjYS1zaGEyLWc2LmNybDAvoC2gK4YpaHR0cDovL2NybDQuZGlnaWNlcnQuY29tL3NzY2Etc2hhMi1nNi5jcmwwTAYDVR0gBEUwQzA3BglghkgBhv1sAQEwKjAoBggrBgEFBQcCARYcaHR0cHM6Ly93d3cuZGlnaWNlcnQuY29tL0NQUzAIBgZngQwBAgIwfAYIKwYBBQUHAQEEcDBuMCQGCCsGAQUFBzABhhhodHRwOi8vb2NzcC5kaWdpY2VydC5jb20wRgYIKwYBBQUHMAKGOmh0dHA6Ly9jYWNlcnRzLmRpZ2ljZXJ0LmNvbS9EaWdpQ2VydFNIQTJTZWN1cmVTZXJ2ZXJDQS5jcnQwDAYDVR0TAQH/BAIwADCCAfQGCisGAQQB1nkCBAIEggHkBIIB4AHeAHYApLkJkLQYWBSHuxOizGdwCjw1mAT5G9+443fNDsgN3BAAAAFjskR9OAAABAMARzBFAiApWVtfQZ+QMpPq3tkEwLmmHnjQnwsQhJ464m1ibJbwyAIhAORfUeW72J63+NpMIXi+AGfoBQ9xeYNwbXfxKlTLmDgHAHUAh3W/51l8+IxDmV+9827/Vo1HVjb/SrVgwbTq/16ggw8AAAFjskR+DQAABAMARjBEAiAK5UFiJQhsItiNIhbXgGWA7QeY0Bf22ZM2s1PYJppHkQIgTGViCUQ8gNEqBBl66H1M9t34DzpHObUkzVMqVVJejV4AdAC72d+8H4pxtZOUI5eqkntHOFeVCqtS6BqQlmQ2jh7RhQAAAWOyRH4EAAAEAwBFMEMCHz9v4I8sB4+5kYsyF3ZhCj9qq32Cl08uxKCguUuGeAQCIF0bVhp2DAoQuY3ZGURzxUFYb3nH88AmTZLetYEDlm0nAHcAVYHUwhaQNgFK6gubVzxT8MDkOHhwJQgXL6OqHQcT0wwAAAFjskR/igAABAMASDBGAiEAoAXrwTz48+EEBF+8CnLw8FAT938F+kve/9m6XjuxFdECIQCU6M6OSiUCxlV3y06YoCPqaFpLDpTAujd8x5o2xIRs2TANBgkqhkiG9w0BAQsFAAOCAQEAERzOZXblnmBzczHgqL1Mcr9bt1tkYc9LwHF31Lf2Ky2UR09Dl9p/dWYPxJeVkuEYYhdFyeFBOCW2Xc/S4QtyBRxXFof/AvCoDImEShLI4YazoqBZGgfJsilc9bcVGuULdXuFUgc0HZYbOBD1zLms99NdPKiJQTAFF67cey0Uy9WPQStyxQ3am+wkQrlmtqb2pltH+ZXFGHP6CZ+4cirf85/KseKqffZ4eGxNYn9ZEwzNiCk9lTiZzp0eO7ovzH2FTHI8EZEbfid0EaULYN0YbGLHhdrZq8tPbXNl6ghkH2UFHp/EglHQS2mbwlv6WjourfH/qEzcgeANfrNMEgMicQ=="},{"base64":"MIIElDCCA3ygAwIBAgIQAf2j627KdciIQ4tyS8+8kTANBgkqhkiG9w0BAQsFADBhMQswCQYDVQQGEwJVUzEVMBMGA1UEChMMRGlnaUNlcnQgSW5jMRkwFwYDVQQLExB3d3cuZGlnaWNlcnQuY29tMSAwHgYDVQQDExdEaWdpQ2VydCBHbG9iYWwgUm9vdCBDQTAeFw0xMzAzMDgxMjAwMDBaFw0yMzAzMDgxMjAwMDBaME0xCzAJBgNVBAYTAlVTMRUwEwYDVQQKEwxEaWdpQ2VydCBJbmMxJzAlBgNVBAMTHkRpZ2lDZXJ0IFNIQTIgU2VjdXJlIFNlcnZlciBDQTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANyuWJBNwcQwFZA1W248ghX1LFy949v/cUP6ZCWA1O4Yok3wZtAKc24RmDYXZK83nf36QYSvx6+M/hpzTc8zl5CilodTgyu5pnVILR1WN3vaMTIa16yrBvSqXUu3R0bdKpPDkC55gIDvEwRqFDu1m5K+wgdlTvza/P96rtxcflUxDOg5B6TXvi/TC2rSsd9f/ld0Uzs1gN2ujkSYs58O09rg1/RrKatEp0tYhG2SS4HD2nOLEpdIkARFdRrdNzGXkujNVA075ME/OV4uuPNcfhCOhkEAjUVmR7ChZc6gqikJTvOX6+guqw9ypzAO+sf0/RR3w6RbKFfCs/mC/bdFWJsCAwEAAaOCAVowggFWMBIGA1UdEwEB/wQIMAYBAf8CAQAwDgYDVR0PAQH/BAQDAgGGMDQGCCsGAQUFBwEBBCgwJjAkBggrBgEFBQcwAYYYaHR0cDovL29jc3AuZGlnaWNlcnQuY29tMHsGA1UdHwR0MHIwN6A1oDOGMWh0dHA6Ly9jcmwzLmRpZ2ljZXJ0LmNvbS9EaWdpQ2VydEdsb2JhbFJvb3RDQS5jcmwwN6A1oDOGMWh0dHA6Ly9jcmw0LmRpZ2ljZXJ0LmNvbS9EaWdpQ2VydEdsb2JhbFJvb3RDQS5jcmwwPQYDVR0gBDYwNDAyBgRVHSAAMCowKAYIKwYBBQUHAgEWHGh0dHBzOi8vd3d3LmRpZ2ljZXJ0LmNvbS9DUFMwHQYDVR0OBBYEFA+AYRyCMWHVLyjnjUY4tCzhxtniMB8GA1UdIwQYMBaAFAPeUDVW0Uy7ZvCj4hsbw5eyPdFVMA0GCSqGSIb3DQEBCwUAA4IBAQAjPt9L0jFCpbZ+QlwaRMxp0Wi0XUvgBCFsS+JtzLHgl4+mUwnNqipl5TlPHoOlblyYoiQm5vuh7ZPHLgLGTUq/sELfeNqzqPlt/yGFUzZgTHbO7Djc1lGA8MXW5dRNJ2Srm8c+cftIl7gzbckTB+6WohsYFfZcTEDts8Ls/3HB40f/1LkAtDdC2iDJ6m6K7hQGrn2iWZiIqBtvLfTyyRRfJs8sjX7tN8Cp1Tm5gr8ZDOo0rwAhaPitc+LJMto4JQtV05od8GiG7S5BNO98pVAdvzr508EIDObtHopYJeS4d60tbvVS3bR0j6tJLp07kzQoH3jOlOrHvdPJbRzeXDLz"}],"version":"0303","random":"795e675d39a04160e7bd59265ed469cc485cdbe742adba54c04a1dc3580d74ca","selected_cipher_suite":"c02f","compression_method":"00","session_ticket":""}},"reassembly_properties":{"reassembled":true},"ip":{"version":4,"ttl":128,"id":"98f8"},"src_ip":"108.174.11.65","dst_ip":"192.168.113.237","protocol":6,"src_port":443,"dst_port":47924,"event_start":1565200319.231660} +{"dns":{"base64":"q7UBAAABAAAAAAAACWluc3RhZ3JhbQNjb20AAAEAAQ=="},"ip":{"version":4,"ttl":64,"id":"ce0c"},"src_ip":"192.168.113.237","dst_ip":"192.168.113.2","protocol":17,"src_port":42910,"dst_port":53,"event_start":1565200319.813362} +{"dns":{"base64":"PW4BAAABAAAAAAAACWluc3RhZ3JhbQNjb20AABwAAQ=="},"ip":{"version":4,"ttl":64,"id":"ce0d"},"src_ip":"192.168.113.237","dst_ip":"192.168.113.2","protocol":17,"src_port":50970,"dst_port":53,"event_start":1565200319.813552} +{"dns":{"base64":"PW6BgAABAAgADQACCWluc3RhZ3JhbQNjb20AABwAAcAMABwAAQAAAAUAECQG2gD/AAAAAAAAAGsXC33ADAAcAAEAAAAFABAkBtoA/wAAAAAAAAA0FqRWwAwAHAABAAAABQAQJAbaAP8AAAAAAAAAEtHyZsAMABwAAQAAAAUAECQG2gD/AAAAAAAAADQXkOjADAAcAAEAAAAFABAkBtoA/wAAAAAAAAA0BvAwwAwAHAABAAAABQAQJAbaAP8AAAAAAAAAA9BSHsAMABwAAQAAAAUAECQG2gD/AAAAAAAAADZZH7/ADAAcAAEAAAAFABAkBtoA/wAAAAAAAAA27LMfwBYAAgABAAAABQAUAWUMZ3RsZC1zZXJ2ZXJzA25ldADAFgACAAEAAAAFAAQBasENwBYAAgABAAAABQAEAWLBDcAWAAIAAQAAAAUABAFmwQ3AFgACAAEAAAAFAAQBY8ENwBYAAgABAAAABQAEAWjBDcAWAAIAAQAAAAUABAFpwQ3AFgACAAEAAAAFAAQBZ8ENwBYAAgABAAAABQAEAWTBDcAWAAIAAQAAAAUABAFswQ3AFgACAAEAAAAFAAQBbcENwBYAAgABAAAABQAEAWHBDcAWAAIAAQAAAAUABAFrwQ3BywABAAEAAAAFAATABQYewTsAAQABAAAABQAEwCEOHg=="},"ip":{"version":4,"ttl":128,"id":"9938"},"src_ip":"192.168.113.2","dst_ip":"192.168.113.237","protocol":17,"src_port":53,"dst_port":50970,"event_start":1565200319.844569} +{"dns":{"base64":"q7WBgAABAAgADQAICWluc3RhZ3JhbQNjb20AAAEAAcAMAAEAAQAAAAUABDQsMCbADAABAAEAAAAFAAQ0A2ZYwAwAAQABAAAABQAEA1uH18AMAAEAAQAAAAUABAPTtdjADAABAAEAAAAFAAQDXGuJwAwAAQABAAAABQAEIsVczMAMAAEAAQAAAAUABAPREtDADAABAAEAAAAFAAQDXHeAwBYAAgABAAAABQAUAWQMZ3RsZC1zZXJ2ZXJzA25ldADAFgACAAEAAAAFAAQBa8CtwBYAAgABAAAABQAEAWXArcAWAAIAAQAAAAUABAFtwK3AFgACAAEAAAAFAAQBbMCtwBYAAgABAAAABQAEAWLArcAWAAIAAQAAAAUABAFjwK3AFgACAAEAAAAFAAQBZ8CtwBYAAgABAAAABQAEAWbArcAWAAIAAQAAAAUABAFpwK3AFgACAAEAAAAFAAQBYcCtwBYAAgABAAAABQAEAWrArcAWAAIAAQAAAAUABAFowK3BWwABAAEAAAAFAATABQYewQsAAQABAAAABQAEwCEOHsEbAAEAAQAAAAUABMAaXB7AqwABAAEAAAAFAATAH1AewNsAAQABAAAABQAEwAxeHsE7AAEAAQAAAAUABMAjMx7BKwABAAEAAAAFAATAKl0ewXsAAQABAAAABQAEwDZwHg=="},"ip":{"version":4,"ttl":128,"id":"9939"},"src_ip":"192.168.113.2","dst_ip":"192.168.113.237","protocol":17,"src_port":53,"dst_port":42910,"event_start":1565200319.844591} +{"fingerprints":{"tcp":"tcp/(40)()(40)(faf0)((020405b4)(04)(08)(01)(030307))"},"tcp":{"seq":104063285,"timestamp":{"ts_val":2567642952}},"ip":{"version":4,"ttl":64,"id":"2592"},"src_ip":"192.168.113.237","dst_ip":"52.44.48.38","protocol":6,"src_port":53570,"dst_port":443,"event_start":1565200319.845155} +{"fingerprints":{"tcp_server":"tcp_server/(40)()(80)(faf0)((020405b4))"},"tcp_server":{"seq":638667298},"ip":{"version":4,"ttl":128,"id":"993a"},"src_ip":"52.44.48.38","dst_ip":"192.168.113.237","protocol":6,"src_port":443,"dst_port":53570,"event_start":1565200319.884813} +{"fingerprints":{"tls":"tls/(0303)(130213031301c02cc030009fcca9cca8ccaac02bc02f009ec024c028006bc023c0270067c00ac0140039c009c0130033009d009c003d003c0035002f00ff)((0000)(000b000403000102)(000a000c000a001d0017001e00190018)(0023)(0016)(0017)(000d0030002e040305030603080708080809080a080b080408050806040105010601030302030301020103020202040205020602)(002b0009080304030303020301)(002d00020101)(0033))"},"tls":{"client":{"version":"0303","random":"75cfab3e94baea9c62ddc2ef594fe792681bee7b15b0786c19fa987b9600d622","session_id":"a3afe31538654c4db0d5268a8c8e7a7169f86537682ba133c3119c9fce620892","cipher_suites":"130213031301c02cc030009fcca9cca8ccaac02bc02f009ec024c028006bc023c0270067c00ac0140039c009c0130033009d009c003d003c0035002f00ff","compression_methods":"00","server_name":"instagram.com","session_ticket":"","features":"[\"0303\",\"130213031301c02cc030009fcca9cca8ccaac02bc02f009ec024c028006bc023c0270067c00ac0140039c009c0130033009d009c003d003c0035002f00ff\",[[\"0000\",\"001000000d696e7374616772616d2e636f6d\"],[\"000b\",\"03000102\"],[\"000a\",\"000a001d0017001e00190018\"],[\"0023\",\"\"],[\"0016\",\"\"],[\"0017\",\"\"],[\"000d\",\"002e040305030603080708080809080a080b080408050806040105010601030302030301020103020202040205020602\"],[\"002b\",\"080304030303020301\"],[\"002d\",\"0101\"],[\"0033\",\"0024001d0020e7e0dcde0a046cfcab1237bd8136818a96c5e00e4a80972f23a12fcac4f74349\"]]]"}},"ip":{"version":4,"ttl":64,"id":"2594"},"src_ip":"192.168.113.237","dst_ip":"52.44.48.38","protocol":6,"src_port":53570,"dst_port":443,"event_start":1565200319.885187} +{"fingerprints":{"tls_server":"tls_server/(0303)(1303)((002b00020304)(0033))"},"tls":{"server":{"version":"0303","random":"e677d44fbea383103e3be729bc5636f6f503e82dad9f9c80b15018195a1d3657","selected_cipher_suite":"1303","compression_method":"00"}},"ip":{"version":4,"ttl":128,"id":"993c"},"src_ip":"52.44.48.38","dst_ip":"192.168.113.237","protocol":6,"src_port":443,"dst_port":53570,"event_start":1565200319.935389} +{"dns":{"base64":"oGMBAAABAAAAAAAAA3d3dwlpbnN0YWdyYW0DY29tAAABAAE="},"ip":{"version":4,"ttl":64,"id":"ce42"},"src_ip":"192.168.113.237","dst_ip":"192.168.113.2","protocol":17,"src_port":40723,"dst_port":53,"event_start":1565200320.049847} +{"dns":{"base64":"bdQBAAABAAAAAAAAA3d3dwlpbnN0YWdyYW0DY29tAAAcAAE="},"ip":{"version":4,"ttl":64,"id":"ce43"},"src_ip":"192.168.113.237","dst_ip":"192.168.113.2","protocol":17,"src_port":54015,"dst_port":53,"event_start":1565200320.050025} +{"dns":{"base64":"bdSBgAABAAIADQALA3d3dwlpbnN0YWdyYW0DY29tAAAcAAHADAAFAAEAAAAFACAPei1wNDItaW5zdGFncmFtBGMxMHIIZmFjZWJvb2vAGsAvABwAAQAAAAUAECoDKIDyNAHl+s6wDAAARCDAGgACAAEAAAAFABQBaQxndGxkLXNlcnZlcnMDbmV0AMAaAAIAAQAAAAUABAFlwHnAGgACAAEAAAAFAAQBYsB5wBoAAgABAAAABQAEAWfAecAaAAIAAQAAAAUABAFrwHnAGgACAAEAAAAFAAQBYcB5wBoAAgABAAAABQAEAWzAecAaAAIAAQAAAAUABAFtwHnAGgACAAEAAAAFAAQBZsB5wBoAAgABAAAABQAEAWPAecAaAAIAAQAAAAUABAFkwHnAGgACAAEAAAAFAAQBasB5wBoAAgABAAAABQAEAWjAecDXAAEAAQAAAAUABMAFBh7ApwABAAEAAAAFAATAIQ4ewRcAAQABAAAABQAEwBpcHsEnAAEAAQAAAAUABMAfUB7AlwABAAEAAAAFAATADF4ewQcAAQABAAAABQAEwCMzHsC3AAEAAQAAAAUABMAqXR7BRwABAAEAAAAFAATANnAewHcAAQABAAAABQAEwCusHsE3AAEAAQAAAAUABMAwTx7AxwABAAEAAAAFAATANLIe"},"ip":{"version":4,"ttl":128,"id":"9948"},"src_ip":"192.168.113.2","dst_ip":"192.168.113.237","protocol":17,"src_port":53,"dst_port":54015,"event_start":1565200320.084374} +{"dns":{"base64":"oGOBgAABAAIADQAMA3d3dwlpbnN0YWdyYW0DY29tAAABAAHADAAFAAEAAAAFACAPei1wNDItaW5zdGFncmFtBGMxMHIIZmFjZWJvb2vAGsAvAAEAAQAAAAUABB8NXa7AGgACAAEAAAAFABQBaQxndGxkLXNlcnZlcnMDbmV0AMAaAAIAAQAAAAUABAFqwG3AGgACAAEAAAAFAAQBa8BtwBoAAgABAAAABQAEAWPAbcAaAAIAAQAAAAUABAFhwG3AGgACAAEAAAAFAAQBbcBtwBoAAgABAAAABQAEAWbAbcAaAAIAAQAAAAUABAFlwG3AGgACAAEAAAAFAAQBaMBtwBoAAgABAAAABQAEAWfAbcAaAAIAAQAAAAUABAFkwG3AGgACAAEAAAAFAAQBbMBtwBoAAgABAAAABQAEAWLAbcC7AAEAAQAAAAUABMAFBh7BOwABAAEAAAAFAATAIQ4ewKsAAQABAAAABQAEwBpcHsEbAAEAAQAAAAUABMAfUB7A6wABAAEAAAAFAATADF4ewNsAAQABAAAABQAEwCMzHsELAAEAAQAAAAUABMAqXR7A+wABAAEAAAAFAATANnAewGsAAQABAAAABQAEwCusHsCLAAEAAQAAAAUABMAwTx7AmwABAAEAAAAFAATANLIewSsAAQABAAAABQAEwCmiHg=="},"ip":{"version":4,"ttl":128,"id":"9949"},"src_ip":"192.168.113.2","dst_ip":"192.168.113.237","protocol":17,"src_port":53,"dst_port":40723,"event_start":1565200320.084392} +{"fingerprints":{"tcp":"tcp/(40)()(40)(faf0)((020405b4)(04)(08)(01)(030307))"},"tcp":{"seq":3891445656,"timestamp":{"ts_val":3143358125}},"ip":{"version":4,"ttl":64,"id":"7b7b"},"src_ip":"192.168.113.237","dst_ip":"31.13.93.174","protocol":6,"src_port":50634,"dst_port":443,"event_start":1565200320.084987} +{"fingerprints":{"tcp_server":"tcp_server/(40)()(80)(faf0)((020405b4))"},"tcp_server":{"seq":2804834445},"ip":{"version":4,"ttl":128,"id":"994b"},"src_ip":"31.13.93.174","dst_ip":"192.168.113.237","protocol":6,"src_port":443,"dst_port":50634,"event_start":1565200320.139379} +{"fingerprints":{"tls":"tls/(0303)(130213031301c02cc030009fcca9cca8ccaac02bc02f009ec024c028006bc023c0270067c00ac0140039c009c0130033009d009c003d003c0035002f00ff)((0000)(000b000403000102)(000a000c000a001d0017001e00190018)(0023)(0016)(0017)(000d0030002e040305030603080708080809080a080b080408050806040105010601030302030301020103020202040205020602)(002b0009080304030303020301)(002d00020101)(0033))"},"tls":{"client":{"version":"0303","random":"d01f5eb3575366cd09d162ab63dca297d18428a7cc4729fd243abf778f2b4eaa","session_id":"f9426344393c6e3292c63d89d3ae753f43e08e85f567baf5117a6ca53241b274","cipher_suites":"130213031301c02cc030009fcca9cca8ccaac02bc02f009ec024c028006bc023c0270067c00ac0140039c009c0130033009d009c003d003c0035002f00ff","compression_methods":"00","server_name":"www.instagram.com","session_ticket":"","features":"[\"0303\",\"130213031301c02cc030009fcca9cca8ccaac02bc02f009ec024c028006bc023c0270067c00ac0140039c009c0130033009d009c003d003c0035002f00ff\",[[\"0000\",\"00140000117777772e696e7374616772616d2e636f6d\"],[\"000b\",\"03000102\"],[\"000a\",\"000a001d0017001e00190018\"],[\"0023\",\"\"],[\"0016\",\"\"],[\"0017\",\"\"],[\"000d\",\"002e040305030603080708080809080a080b080408050806040105010601030302030301020103020202040205020602\"],[\"002b\",\"080304030303020301\"],[\"002d\",\"0101\"],[\"0033\",\"0024001d002059c042390c82040fa8f9da8dd4d9568690aa6b04055c23aa250739d75383e559\"]]]"}},"ip":{"version":4,"ttl":64,"id":"7b7d"},"src_ip":"192.168.113.237","dst_ip":"31.13.93.174","protocol":6,"src_port":50634,"dst_port":443,"event_start":1565200320.139625} +{"fingerprints":{"tls_server":"tls_server/(0303)(1303)((002b00020304)(0033))"},"tls":{"server":{"version":"0303","random":"e26e8fd4f34c913fb5ef2af18f21feb6faf39ad5f9a187bca4013bef4dd0ad0e","selected_cipher_suite":"1303","compression_method":"00"}},"ip":{"version":4,"ttl":128,"id":"994d"},"src_ip":"31.13.93.174","dst_ip":"192.168.113.237","protocol":6,"src_port":443,"dst_port":50634,"event_start":1565200320.196482} +{"dns":{"base64":"tpEBAAABAAAAAAAACXdpa2lwZWRpYQNvcmcAAAEAAQ=="},"ip":{"version":4,"ttl":64,"id":"ce73"},"src_ip":"192.168.113.237","dst_ip":"192.168.113.2","protocol":17,"src_port":45506,"dst_port":53,"event_start":1565200320.441793} +{"dns":{"base64":"IBEBAAABAAAAAAAACXdpa2lwZWRpYQNvcmcAABwAAQ=="},"ip":{"version":4,"ttl":64,"id":"ce74"},"src_ip":"192.168.113.237","dst_ip":"192.168.113.2","protocol":17,"src_port":36230,"dst_port":53,"event_start":1565200320.441976} +{"dns":{"base64":"tpGBgAABAAEABgAKCXdpa2lwZWRpYQNvcmcAAAEAAcAMAAEAAQAAAAUABNBQmuDAFgACAAEAAAAFABkCYTADb3JnC2FmaWxpYXMtbnN0BGluZm8AwBYAAgABAAAABQAFAmMwwD7AFgACAAEAAAAFABUCZDADb3JnC2FmaWxpYXMtbnN0wBbAFgACAAEAAAAFAAUCYTLAPsAWAAIAAQAAAAUABQJiMMB0wBYAAgABAAAABQAFAmIywHTAOwABAAEAAAAFAATHEzgBwJIAAQABAAAABQAEx/lwAcBgAAEAAQAAAAUABMcTNQHAcQABAAEAAAAFAATHEzkBwDsAHAABAAAABQAQIAEFAAAOAAAAAAAAAAAAAcCSABwAAQAAAAUAECABBQAAQAAAAAAAAAAAAAHAowAcAAEAAAAFABAgAQUAAAwAAAAAAAAAAAABwLQAHAABAAAABQAQIAEFAABIAAAAAAAAAAAAAcBgABwAAQAAAAUAECABBQAACwAAAAAAAAAAAAHAcQAcAAEAAAAFABAgAQUAAA8AAAAAAAAAAAAB"},"ip":{"version":4,"ttl":128,"id":"9977"},"src_ip":"192.168.113.2","dst_ip":"192.168.113.237","protocol":17,"src_port":53,"dst_port":45506,"event_start":1565200320.487189} +{"dns":{"base64":"IBGBgAABAAEABgAMCXdpa2lwZWRpYQNvcmcAABwAAcAMABwAAQAAAAUAECYgAAAIYe0aAAAAAAAAAAHAFgACAAEAAAAFABkCYTADb3JnC2FmaWxpYXMtbnN0BGluZm8AwBYAAgABAAAABQAFAmEywErAFgACAAEAAAAFABUCZDADb3JnC2FmaWxpYXMtbnN0wBbAFgACAAEAAAAFAAUCYzDASsAWAAIAAQAAAAUABQJiMMCAwBYAAgABAAAABQAFAmIywIDARwABAAEAAAAFAATHEzgBwGwAAQABAAAABQAEx/lwAcCvAAEAAQAAAAUABMcTNgHAwAABAAEAAAAFAATH+XgBwJ4AAQABAAAABQAExxM1AcB9AAEAAQAAAAUABMcTOQHARwAcAAEAAAAFABAgAQUAAA4AAAAAAAAAAAABwGwAHAABAAAABQAQIAEFAABAAAAAAAAAAAAAAcCvABwAAQAAAAUAECABBQAADAAAAAAAAAAAAAHAwAAcAAEAAAAFABAgAQUAAEgAAAAAAAAAAAABwJ4AHAABAAAABQAQIAEFAAALAAAAAAAAAAAAAcB9ABwAAQAAAAUAECABBQAADwAAAAAAAAAAAAE="},"ip":{"version":4,"ttl":128,"id":"9978"},"src_ip":"192.168.113.2","dst_ip":"192.168.113.237","protocol":17,"src_port":53,"dst_port":36230,"event_start":1565200320.525287} +{"fingerprints":{"tcp":"tcp/(40)()(40)(faf0)((020405b4)(04)(08)(01)(030307))"},"tcp":{"seq":4217997259,"timestamp":{"ts_val":1954733578}},"ip":{"version":4,"ttl":64,"id":"4299"},"src_ip":"192.168.113.237","dst_ip":"208.80.154.224","protocol":6,"src_port":51344,"dst_port":443,"event_start":1565200320.525880} +{"fingerprints":{"tcp_server":"tcp_server/(40)()(80)(faf0)((020405b4))"},"tcp_server":{"seq":66709320},"ip":{"version":4,"ttl":128,"id":"9979"},"src_ip":"208.80.154.224","dst_ip":"192.168.113.237","protocol":6,"src_port":443,"dst_port":51344,"event_start":1565200320.565532} +{"fingerprints":{"tls":"tls/(0303)(130213031301c02cc030009fcca9cca8ccaac02bc02f009ec024c028006bc023c0270067c00ac0140039c009c0130033009d009c003d003c0035002f00ff)((0000)(000b000403000102)(000a000c000a001d0017001e00190018)(0023)(0016)(0017)(000d0030002e040305030603080708080809080a080b080408050806040105010601030302030301020103020202040205020602)(002b0009080304030303020301)(002d00020101)(0033))"},"tls":{"client":{"version":"0303","random":"79248ea73f50617e6974a9295e51975d56c07a022fbe746e24cac2831e25411e","session_id":"1568f70d249f09756b7c34074760fa15ead755de54677402ff25e06a094b502f","cipher_suites":"130213031301c02cc030009fcca9cca8ccaac02bc02f009ec024c028006bc023c0270067c00ac0140039c009c0130033009d009c003d003c0035002f00ff","compression_methods":"00","server_name":"wikipedia.org","session_ticket":"","features":"[\"0303\",\"130213031301c02cc030009fcca9cca8ccaac02bc02f009ec024c028006bc023c0270067c00ac0140039c009c0130033009d009c003d003c0035002f00ff\",[[\"0000\",\"001000000d77696b6970656469612e6f7267\"],[\"000b\",\"03000102\"],[\"000a\",\"000a001d0017001e00190018\"],[\"0023\",\"\"],[\"0016\",\"\"],[\"0017\",\"\"],[\"000d\",\"002e040305030603080708080809080a080b080408050806040105010601030302030301020103020202040205020602\"],[\"002b\",\"080304030303020301\"],[\"002d\",\"0101\"],[\"0033\",\"0024001d0020107f7f807a8a19e09a5f5fd659f73f5ebc0a3269212aaae9a86e2b31234a1018\"]]]"}},"ip":{"version":4,"ttl":64,"id":"429b"},"src_ip":"192.168.113.237","dst_ip":"208.80.154.224","protocol":6,"src_port":51344,"dst_port":443,"event_start":1565200320.565853} +{"fingerprints":{"tls_server":"tls_server/(0303)(cca9)((ff01)(000b000403000102)(0017))"},"tls":{"server":{"certs":[{"base64":"MIIIMTCCBxmgAwIBAgIMFkDF1F0uxNlMfXxqMA0GCSqGSIb3DQEBCwUAMGYxCzAJBgNVBAYTAkJFMRkwFwYDVQQKExBHbG9iYWxTaWduIG52LXNhMTwwOgYDVQQDEzNHbG9iYWxTaWduIE9yZ2FuaXphdGlvbiBWYWxpZGF0aW9uIENBIC0gU0hBMjU2IC0gRzIwHhcNMTgxMTA4MjEyMTA0WhcNMTkxMTIyMDc1OTU5WjB5MQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZyYW5jaXNjbzEjMCEGA1UEChMaV2lraW1lZGlhIEZvdW5kYXRpb24sIEluYy4xGDAWBgNVBAMMDyoud2lraXBlZGlhLm9yZzBZMBMGByqGSM49AgEGCCqGSM49AwEHA0IABGd1rS7GauMxJ15BmViShjVMjwQJNjjw+OUhnIaqE5QF/q6c/LIvVh4N3473a7J52JcfmlfCrXvDthHzaZNEneKjggWVMIIFkTAOBgNVHQ8BAf8EBAMCA4gwgaAGCCsGAQUFBwEBBIGTMIGQME0GCCsGAQUFBzAChkFodHRwOi8vc2VjdXJlLmdsb2JhbHNpZ24uY29tL2NhY2VydC9nc29yZ2FuaXphdGlvbnZhbHNoYTJnMnIxLmNydDA/BggrBgEFBQcwAYYzaHR0cDovL29jc3AyLmdsb2JhbHNpZ24uY29tL2dzb3JnYW5pemF0aW9udmFsc2hhMmcyMFYGA1UdIARPME0wQQYJKwYBBAGgMgEUMDQwMgYIKwYBBQUHAgEWJmh0dHBzOi8vd3d3Lmdsb2JhbHNpZ24uY29tL3JlcG9zaXRvcnkvMAgGBmeBDAECAjAJBgNVHRMEAjAAMEkGA1UdHwRCMEAwPqA8oDqGOGh0dHA6Ly9jcmwuZ2xvYmFsc2lnbi5jb20vZ3MvZ3Nvcmdhbml6YXRpb252YWxzaGEyZzIuY3JsMIICxQYDVR0RBIICvDCCAriCDyoud2lraXBlZGlhLm9yZ4INd2lraW1lZGlhLm9yZ4INbWVkaWF3aWtpLm9yZ4INd2lraWJvb2tzLm9yZ4IMd2lraWRhdGEub3Jnggx3aWtpbmV3cy5vcmeCDXdpa2lxdW90ZS5vcmeCDndpa2lzb3VyY2Uub3Jngg93aWtpdmVyc2l0eS5vcmeCDndpa2l2b3lhZ2Uub3Jngg53aWt0aW9uYXJ5Lm9yZ4IXd2lraW1lZGlhZm91bmRhdGlvbi5vcmeCBncud2lraYISd21mdXNlcmNvbnRlbnQub3JnghEqLm0ud2lraXBlZGlhLm9yZ4IPKi53aWtpbWVkaWEub3JnghEqLm0ud2lraW1lZGlhLm9yZ4IWKi5wbGFuZXQud2lraW1lZGlhLm9yZ4IPKi5tZWRpYXdpa2kub3JnghEqLm0ubWVkaWF3aWtpLm9yZ4IPKi53aWtpYm9va3Mub3JnghEqLm0ud2lraWJvb2tzLm9yZ4IOKi53aWtpZGF0YS5vcmeCECoubS53aWtpZGF0YS5vcmeCDioud2lraW5ld3Mub3JnghAqLm0ud2lraW5ld3Mub3Jngg8qLndpa2lxdW90ZS5vcmeCESoubS53aWtpcXVvdGUub3JnghAqLndpa2lzb3VyY2Uub3JnghIqLm0ud2lraXNvdXJjZS5vcmeCESoud2lraXZlcnNpdHkub3JnghMqLm0ud2lraXZlcnNpdHkub3JnghAqLndpa2l2b3lhZ2Uub3JnghIqLm0ud2lraXZveWFnZS5vcmeCECoud2lrdGlvbmFyeS5vcmeCEioubS53aWt0aW9uYXJ5Lm9yZ4IZKi53aWtpbWVkaWFmb3VuZGF0aW9uLm9yZ4IUKi53bWZ1c2VyY29udGVudC5vcmeCDXdpa2lwZWRpYS5vcmcwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMB0GA1UdDgQWBBSt4NNfC33t2i98DfZjjYpZGMJsijAfBgNVHSMEGDAWgBSW3mHxvRwWKVMcwMx9O4MAQOYafDCCAQQGCisGAQQB1nkCBAIEgfUEgfIA8AB2AKS5CZC0GFgUh7sTosxncAo8NZgE+RvfuON3zQ7IDdwQAAABZvUzN/YAAAQDAEcwRQIgBATdvSzbd5NwGdtkmJ5SEvEPn6A8hgAsk6GSP6hzWcgCIQDKfHQNtObs/hHPfLgXsVkcnHIbjlNwmWeiukGtGHZFMgB2AG9Tdqwx8DEZ2JkApFEV/3cVHBHZAsEAKQaNsgiaN9kTAAABZvUzN8cAAAQDAEcwRQIgYalEnXtd/fPhjq9SXPoSPRhaMmeDs0IMN5o5Y6QTKfUCIQClR1uj+B56K4tGh/mws4qugG1qSD9zfvmx8roKik3HHDANBgkqhkiG9w0BAQsFAAOCAQEAUEJyg/AZo+owG5J/LIk8EIDnyOcanmfgvdjMg8KnpBvh8l3Wb4HmOudluJhIeIbCUMwzEzSGqYQQ78n4wtjLaLwaDgL4WzHOVec2k+rbfmPT6MUCtdlz1PK5/WY9JQyQq6vy+tm3a6Wijy6M8U/TdrJubK5X03SFfRb0pDuFdr2fnkctLRnyCb1w0XHwGXjEcGm1LY42YKwdvbj3WIqumeSEuG4MZtquW6NURKELSil03G/hRHRAHHGx3zXes/jJcpH2GPX9eY9B+R1oHmCE2QF5Y/Bh+uNA2+2Iuj/6UJAOw/Z/8+qZcnLWWnK2Dwzc34C/AUD+Wb71oUcr60+pPg=="},{"base64":"MIIEYjCCA0qgAwIBAgILBAAAAAABMYnGRMkwDQYJKoZIhvcNAQELBQAwTDEgMB4GA1UECxMXR2xvYmFsU2lnbiBSb290IENBIC0gUjMxEzARBgNVBAoTCkdsb2JhbFNpZ24xEzARBgNVBAMTCkdsb2JhbFNpZ24wHhcNMTEwODAyMTAwMDAwWhcNMjIwODAyMTAwMDAwWjBmMQswCQYDVQQGEwJCRTEZMBcGA1UEChMQR2xvYmFsU2lnbiBudi1zYTE8MDoGA1UEAxMzR2xvYmFsU2lnbiBPcmdhbml6YXRpb24gVmFsaWRhdGlvbiBDQSAtIFNIQTI1NiAtIEcyMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAxw5sPyOTf8xwpZ0gww5TP37ATsKYScpH1SPvAzSFdMijAi5GXAt9yYidT4vw+JxsjFU127/ys+r741bnSkbZEyLKNtWbwajjlkOT8gy85vnm6JnIY0h4f1c2aRoZHVrR1H3CnNR/4YASrnrqiOpX2MoKCjoSSaJiGXoNJPc367RzknsFI5sStc7rKd+kFAK5AaXUppxDZIje+H7+4/Ue5f7co6jkZjHZTCXpGLmJWQmu6Z0cbTcPSh41ICjir9QhiwHERa1uK2OrkmthCk0g7XO6fM7+FrXbn4Dw1ots2Qh5Sk94ZdqSvL41+bPE+SeATv+WUuYCIOEHc+ldK72y8QIDAQABo4IBKTCCASUwDgYDVR0PAQH/BAQDAgEGMBIGA1UdEwEB/wQIMAYBAf8CAQAwHQYDVR0OBBYEFJbeYfG9HBYpUxzAzH07gwBA5hp8MEcGA1UdIARAMD4wPAYEVR0gADA0MDIGCCsGAQUFBwIBFiZodHRwczovL3d3dy5nbG9iYWxzaWduLmNvbS9yZXBvc2l0b3J5LzA2BgNVHR8ELzAtMCugKaAnhiVodHRwOi8vY3JsLmdsb2JhbHNpZ24ubmV0L3Jvb3QtcjMuY3JsMD4GCCsGAQUFBwEBBDIwMDAuBggrBgEFBQcwAYYiaHR0cDovL29jc3AyLmdsb2JhbHNpZ24uY29tL3Jvb3RyMzAfBgNVHSMEGDAWgBSP8Et/qC5FJK5NUPpjmove4t0bvDANBgkqhkiG9w0BAQsFAAOCAQEAugYpwLQZjCERwJQRnrs91NVDQPafuyULI2i1Gvf6VGTMKxP5IfBEreHoFVjb7v3bok3MGI8Nmm3DawGhMfCNvABAzDlfh2FRbfSV6uoVNT5AhcBi1aE0/niqqLJaOfM3Qfuc6D5xSlvr+GlYoeDGk3fpumeS62VYkHBzQn2v9CMmeReq+qS7meVEb2WB58rrVcj0ticRIXSUvGu3dGIpxM2uR/LmQlt4hgVhy5CqeYnfBH6xJnBLjUAfhHvA+wfmyLdOkfQ1A+3o60EQF0m0YsinLPLhTI8DLPMWN11n8aQ5eUmjwF3MVfkhgA/7zuIpalhQ6abX6xwyNrVip8H65g=="}],"version":"0303","random":"0a56169bfa450910cc9182209e5f9fd94050467e7875b481f2e9faaeae58c315","selected_cipher_suite":"cca9","compression_method":"00"}},"reassembly_properties":{"reassembled":true},"ip":{"version":4,"ttl":128,"id":"997d"},"src_ip":"208.80.154.224","dst_ip":"192.168.113.237","protocol":6,"src_port":443,"dst_port":51344,"event_start":1565200320.614434} +{"dns":{"base64":"xBoBAAABAAAAAAAAA3d3dwl3aWtpcGVkaWEDb3JnAAABAAE="},"ip":{"version":4,"ttl":64,"id":"cea1"},"src_ip":"192.168.113.237","dst_ip":"192.168.113.2","protocol":17,"src_port":42538,"dst_port":53,"event_start":1565200320.713805} +{"dns":{"base64":"jPoBAAABAAAAAAAAA3d3dwl3aWtpcGVkaWEDb3JnAAAcAAE="},"ip":{"version":4,"ttl":64,"id":"cea2"},"src_ip":"192.168.113.237","dst_ip":"192.168.113.2","protocol":17,"src_port":44457,"dst_port":53,"event_start":1565200320.713972} +{"dns":{"base64":"xBqBgAABAAIABgAMA3d3dwl3aWtpcGVkaWEDb3JnAAABAAHADAAFAAEAAAAFABEEZHluYQl3aWtpbWVkaWHAGsAvAAEAAQAAAAUABNBQmuDAGgACAAEAAAAFABUCYjIDb3JnC2FmaWxpYXMtbnN0wBrAGgACAAEAAAAFABkCYTIDb3JnC2FmaWxpYXMtbnN0BGluZm8AwBoAAgABAAAABQAFAmMwwIDAGgACAAEAAAAFAAUCZDDAX8AaAAIAAQAAAAUABQJhMMCAwBoAAgABAAAABQAFAmIwwF/AxAABAAEAAAAFAATHEzgBwH0AAQABAAAABQAEx/lwAcDVAAEAAQAAAAUABMcTNgHAXAABAAEAAAAFAATH+XgBwKIAAQABAAAABQAExxM1AcCzAAEAAQAAAAUABMcTOQHAxAAcAAEAAAAFABAgAQUAAA4AAAAAAAAAAAABwH0AHAABAAAABQAQIAEFAABAAAAAAAAAAAAAAcDVABwAAQAAAAUAECABBQAADAAAAAAAAAAAAAHAXAAcAAEAAAAFABAgAQUAAEgAAAAAAAAAAAABwKIAHAABAAAABQAQIAEFAAALAAAAAAAAAAAAAcCzABwAAQAAAAUAECABBQAADwAAAAAAAAAAAAE="},"ip":{"version":4,"ttl":128,"id":"9984"},"src_ip":"192.168.113.2","dst_ip":"192.168.113.237","protocol":17,"src_port":53,"dst_port":42538,"event_start":1565200320.745323} +{"dns":{"base64":"jPqBgAABAAIABgAMA3d3dwl3aWtpcGVkaWEDb3JnAAAcAAHADAAFAAEAAAAFABEEZHluYQl3aWtpbWVkaWHAGsAvABwAAQAAAAUAECYgAAAIYe0aAAAAAAAAAAHAGgACAAEAAAAFABkCYzADb3JnC2FmaWxpYXMtbnN0BGluZm8AwBoAAgABAAAABQAVAmIyA29yZwthZmlsaWFzLW5zdMAawBoAAgABAAAABQAFAmIwwJDAGgACAAEAAAAFAAUCYTLAa8AaAAIAAQAAAAUABQJkMMCQwBoAAgABAAAABQAFAmEwwGvA4QABAAEAAAAFAATHEzgBwL8AAQABAAAABQAEx/lwAcCuAAEAAQAAAAUABMcTNgHAjQABAAEAAAAFAATH+XgBwGgAAQABAAAABQAExxM1AcDQAAEAAQAAAAUABMcTOQHA4QAcAAEAAAAFABAgAQUAAA4AAAAAAAAAAAABwL8AHAABAAAABQAQIAEFAABAAAAAAAAAAAAAAcCuABwAAQAAAAUAECABBQAADAAAAAAAAAAAAAHAjQAcAAEAAAAFABAgAQUAAEgAAAAAAAAAAAABwGgAHAABAAAABQAQIAEFAAALAAAAAAAAAAAAAcDQABwAAQAAAAUAECABBQAADwAAAAAAAAAAAAE="},"ip":{"version":4,"ttl":128,"id":"9985"},"src_ip":"192.168.113.2","dst_ip":"192.168.113.237","protocol":17,"src_port":53,"dst_port":44457,"event_start":1565200320.756902} +{"fingerprints":{"tcp":"tcp/(40)()(40)(faf0)((020405b4)(04)(08)(01)(030307))"},"tcp":{"seq":68273967,"timestamp":{"ts_val":1954733810}},"ip":{"version":4,"ttl":64,"id":"02a3"},"src_ip":"192.168.113.237","dst_ip":"208.80.154.224","protocol":6,"src_port":51346,"dst_port":443,"event_start":1565200320.757754} +{"fingerprints":{"tcp_server":"tcp_server/(40)()(80)(faf0)((020405b4))"},"tcp_server":{"seq":4170683750},"ip":{"version":4,"ttl":128,"id":"9987"},"src_ip":"208.80.154.224","dst_ip":"192.168.113.237","protocol":6,"src_port":443,"dst_port":51346,"event_start":1565200320.804157} +{"fingerprints":{"tls":"tls/(0303)(130213031301c02cc030009fcca9cca8ccaac02bc02f009ec024c028006bc023c0270067c00ac0140039c009c0130033009d009c003d003c0035002f00ff)((0000)(000b000403000102)(000a000c000a001d0017001e00190018)(0023)(0016)(0017)(000d0030002e040305030603080708080809080a080b080408050806040105010601030302030301020103020202040205020602)(002b0009080304030303020301)(002d00020101)(0033))"},"tls":{"client":{"version":"0303","random":"843afd6da899068ab043dd5c222948154b6016ad95c5de6ca5535e18f753ae3c","session_id":"9d952eb9e631f8ce021581d45eba9cad6e38cd4d4125702f7bdf69900976755e","cipher_suites":"130213031301c02cc030009fcca9cca8ccaac02bc02f009ec024c028006bc023c0270067c00ac0140039c009c0130033009d009c003d003c0035002f00ff","compression_methods":"00","server_name":"www.wikipedia.org","session_ticket":"","features":"[\"0303\",\"130213031301c02cc030009fcca9cca8ccaac02bc02f009ec024c028006bc023c0270067c00ac0140039c009c0130033009d009c003d003c0035002f00ff\",[[\"0000\",\"00140000117777772e77696b6970656469612e6f7267\"],[\"000b\",\"03000102\"],[\"000a\",\"000a001d0017001e00190018\"],[\"0023\",\"\"],[\"0016\",\"\"],[\"0017\",\"\"],[\"000d\",\"002e040305030603080708080809080a080b080408050806040105010601030302030301020103020202040205020602\"],[\"002b\",\"080304030303020301\"],[\"002d\",\"0101\"],[\"0033\",\"0024001d00205b3a195bb238e48f49cbbc354f02d157ce3e8b542570be130dec4dc6e68bf16f\"]]]"}},"ip":{"version":4,"ttl":64,"id":"02a5"},"src_ip":"192.168.113.237","dst_ip":"208.80.154.224","protocol":6,"src_port":51346,"dst_port":443,"event_start":1565200320.804450} +{"fingerprints":{"tls_server":"tls_server/(0303)(cca9)((ff01)(000b000403000102)(0017))"},"tls":{"server":{"certs":[{"base64":"MIIIMTCCBxmgAwIBAgIMFkDF1F0uxNlMfXxqMA0GCSqGSIb3DQEBCwUAMGYxCzAJBgNVBAYTAkJFMRkwFwYDVQQKExBHbG9iYWxTaWduIG52LXNhMTwwOgYDVQQDEzNHbG9iYWxTaWduIE9yZ2FuaXphdGlvbiBWYWxpZGF0aW9uIENBIC0gU0hBMjU2IC0gRzIwHhcNMTgxMTA4MjEyMTA0WhcNMTkxMTIyMDc1OTU5WjB5MQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZyYW5jaXNjbzEjMCEGA1UEChMaV2lraW1lZGlhIEZvdW5kYXRpb24sIEluYy4xGDAWBgNVBAMMDyoud2lraXBlZGlhLm9yZzBZMBMGByqGSM49AgEGCCqGSM49AwEHA0IABGd1rS7GauMxJ15BmViShjVMjwQJNjjw+OUhnIaqE5QF/q6c/LIvVh4N3473a7J52JcfmlfCrXvDthHzaZNEneKjggWVMIIFkTAOBgNVHQ8BAf8EBAMCA4gwgaAGCCsGAQUFBwEBBIGTMIGQME0GCCsGAQUFBzAChkFodHRwOi8vc2VjdXJlLmdsb2JhbHNpZ24uY29tL2NhY2VydC9nc29yZ2FuaXphdGlvbnZhbHNoYTJnMnIxLmNydDA/BggrBgEFBQcwAYYzaHR0cDovL29jc3AyLmdsb2JhbHNpZ24uY29tL2dzb3JnYW5pemF0aW9udmFsc2hhMmcyMFYGA1UdIARPME0wQQYJKwYBBAGgMgEUMDQwMgYIKwYBBQUHAgEWJmh0dHBzOi8vd3d3Lmdsb2JhbHNpZ24uY29tL3JlcG9zaXRvcnkvMAgGBmeBDAECAjAJBgNVHRMEAjAAMEkGA1UdHwRCMEAwPqA8oDqGOGh0dHA6Ly9jcmwuZ2xvYmFsc2lnbi5jb20vZ3MvZ3Nvcmdhbml6YXRpb252YWxzaGEyZzIuY3JsMIICxQYDVR0RBIICvDCCAriCDyoud2lraXBlZGlhLm9yZ4INd2lraW1lZGlhLm9yZ4INbWVkaWF3aWtpLm9yZ4INd2lraWJvb2tzLm9yZ4IMd2lraWRhdGEub3Jnggx3aWtpbmV3cy5vcmeCDXdpa2lxdW90ZS5vcmeCDndpa2lzb3VyY2Uub3Jngg93aWtpdmVyc2l0eS5vcmeCDndpa2l2b3lhZ2Uub3Jngg53aWt0aW9uYXJ5Lm9yZ4IXd2lraW1lZGlhZm91bmRhdGlvbi5vcmeCBncud2lraYISd21mdXNlcmNvbnRlbnQub3JnghEqLm0ud2lraXBlZGlhLm9yZ4IPKi53aWtpbWVkaWEub3JnghEqLm0ud2lraW1lZGlhLm9yZ4IWKi5wbGFuZXQud2lraW1lZGlhLm9yZ4IPKi5tZWRpYXdpa2kub3JnghEqLm0ubWVkaWF3aWtpLm9yZ4IPKi53aWtpYm9va3Mub3JnghEqLm0ud2lraWJvb2tzLm9yZ4IOKi53aWtpZGF0YS5vcmeCECoubS53aWtpZGF0YS5vcmeCDioud2lraW5ld3Mub3JnghAqLm0ud2lraW5ld3Mub3Jngg8qLndpa2lxdW90ZS5vcmeCESoubS53aWtpcXVvdGUub3JnghAqLndpa2lzb3VyY2Uub3JnghIqLm0ud2lraXNvdXJjZS5vcmeCESoud2lraXZlcnNpdHkub3JnghMqLm0ud2lraXZlcnNpdHkub3JnghAqLndpa2l2b3lhZ2Uub3JnghIqLm0ud2lraXZveWFnZS5vcmeCECoud2lrdGlvbmFyeS5vcmeCEioubS53aWt0aW9uYXJ5Lm9yZ4IZKi53aWtpbWVkaWFmb3VuZGF0aW9uLm9yZ4IUKi53bWZ1c2VyY29udGVudC5vcmeCDXdpa2lwZWRpYS5vcmcwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMB0GA1UdDgQWBBSt4NNfC33t2i98DfZjjYpZGMJsijAfBgNVHSMEGDAWgBSW3mHxvRwWKVMcwMx9O4MAQOYafDCCAQQGCisGAQQB1nkCBAIEgfUEgfIA8AB2AKS5CZC0GFgUh7sTosxncAo8NZgE+RvfuON3zQ7IDdwQAAABZvUzN/YAAAQDAEcwRQIgBATdvSzbd5NwGdtkmJ5SEvEPn6A8hgAsk6GSP6hzWcgCIQDKfHQNtObs/hHPfLgXsVkcnHIbjlNwmWeiukGtGHZFMgB2AG9Tdqwx8DEZ2JkApFEV/3cVHBHZAsEAKQaNsgiaN9kTAAABZvUzN8cAAAQDAEcwRQIgYalEnXtd/fPhjq9SXPoSPRhaMmeDs0IMN5o5Y6QTKfUCIQClR1uj+B56K4tGh/mws4qugG1qSD9zfvmx8roKik3HHDANBgkqhkiG9w0BAQsFAAOCAQEAUEJyg/AZo+owG5J/LIk8EIDnyOcanmfgvdjMg8KnpBvh8l3Wb4HmOudluJhIeIbCUMwzEzSGqYQQ78n4wtjLaLwaDgL4WzHOVec2k+rbfmPT6MUCtdlz1PK5/WY9JQyQq6vy+tm3a6Wijy6M8U/TdrJubK5X03SFfRb0pDuFdr2fnkctLRnyCb1w0XHwGXjEcGm1LY42YKwdvbj3WIqumeSEuG4MZtquW6NURKELSil03G/hRHRAHHGx3zXes/jJcpH2GPX9eY9B+R1oHmCE2QF5Y/Bh+uNA2+2Iuj/6UJAOw/Z/8+qZcnLWWnK2Dwzc34C/AUD+Wb71oUcr60+pPg=="},{"base64":"MIIEYjCCA0qgAwIBAgILBAAAAAABMYnGRMkwDQYJKoZIhvcNAQELBQAwTDEgMB4GA1UECxMXR2xvYmFsU2lnbiBSb290IENBIC0gUjMxEzARBgNVBAoTCkdsb2JhbFNpZ24xEzARBgNVBAMTCkdsb2JhbFNpZ24wHhcNMTEwODAyMTAwMDAwWhcNMjIwODAyMTAwMDAwWjBmMQswCQYDVQQGEwJCRTEZMBcGA1UEChMQR2xvYmFsU2lnbiBudi1zYTE8MDoGA1UEAxMzR2xvYmFsU2lnbiBPcmdhbml6YXRpb24gVmFsaWRhdGlvbiBDQSAtIFNIQTI1NiAtIEcyMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAxw5sPyOTf8xwpZ0gww5TP37ATsKYScpH1SPvAzSFdMijAi5GXAt9yYidT4vw+JxsjFU127/ys+r741bnSkbZEyLKNtWbwajjlkOT8gy85vnm6JnIY0h4f1c2aRoZHVrR1H3CnNR/4YASrnrqiOpX2MoKCjoSSaJiGXoNJPc367RzknsFI5sStc7rKd+kFAK5AaXUppxDZIje+H7+4/Ue5f7co6jkZjHZTCXpGLmJWQmu6Z0cbTcPSh41ICjir9QhiwHERa1uK2OrkmthCk0g7XO6fM7+FrXbn4Dw1ots2Qh5Sk94ZdqSvL41+bPE+SeATv+WUuYCIOEHc+ldK72y8QIDAQABo4IBKTCCASUwDgYDVR0PAQH/BAQDAgEGMBIGA1UdEwEB/wQIMAYBAf8CAQAwHQYDVR0OBBYEFJbeYfG9HBYpUxzAzH07gwBA5hp8MEcGA1UdIARAMD4wPAYEVR0gADA0MDIGCCsGAQUFBwIBFiZodHRwczovL3d3dy5nbG9iYWxzaWduLmNvbS9yZXBvc2l0b3J5LzA2BgNVHR8ELzAtMCugKaAnhiVodHRwOi8vY3JsLmdsb2JhbHNpZ24ubmV0L3Jvb3QtcjMuY3JsMD4GCCsGAQUFBwEBBDIwMDAuBggrBgEFBQcwAYYiaHR0cDovL29jc3AyLmdsb2JhbHNpZ24uY29tL3Jvb3RyMzAfBgNVHSMEGDAWgBSP8Et/qC5FJK5NUPpjmove4t0bvDANBgkqhkiG9w0BAQsFAAOCAQEAugYpwLQZjCERwJQRnrs91NVDQPafuyULI2i1Gvf6VGTMKxP5IfBEreHoFVjb7v3bok3MGI8Nmm3DawGhMfCNvABAzDlfh2FRbfSV6uoVNT5AhcBi1aE0/niqqLJaOfM3Qfuc6D5xSlvr+GlYoeDGk3fpumeS62VYkHBzQn2v9CMmeReq+qS7meVEb2WB58rrVcj0ticRIXSUvGu3dGIpxM2uR/LmQlt4hgVhy5CqeYnfBH6xJnBLjUAfhHvA+wfmyLdOkfQ1A+3o60EQF0m0YsinLPLhTI8DLPMWN11n8aQ5eUmjwF3MVfkhgA/7zuIpalhQ6abX6xwyNrVip8H65g=="}],"version":"0303","random":"24f56da73df3ef0fdd7b18c8c4df7ca2042345dd028c02045ba114d8f689ab9f","selected_cipher_suite":"cca9","compression_method":"00"}},"reassembly_properties":{"reassembled":true},"ip":{"version":4,"ttl":128,"id":"998b"},"src_ip":"208.80.154.224","dst_ip":"192.168.113.237","protocol":6,"src_port":443,"dst_port":51346,"event_start":1565200320.851714} +{"dns":{"base64":"FOMBAAABAAAAAAAABWFwcGxlA2NvbQAAAQAB"},"ip":{"version":4,"ttl":64,"id":"ced2"},"src_ip":"192.168.113.237","dst_ip":"192.168.113.2","protocol":17,"src_port":49777,"dst_port":53,"event_start":1565200321.058045} +{"dns":{"base64":"BvoBAAABAAAAAAAABWFwcGxlA2NvbQAAHAAB"},"ip":{"version":4,"ttl":64,"id":"ced3"},"src_ip":"192.168.113.237","dst_ip":"192.168.113.2","protocol":17,"src_port":53304,"dst_port":53,"event_start":1565200321.058223} +{"dns":{"base64":"FOOBgAABAAMADQANBWFwcGxlA2NvbQAAAQABwAwAAQABAAAABQAEEbJgO8AMAAEAAQAAAAUABBGOoDvADAABAAEAAAAFAAQRrOAvwBIAAgABAAAABQAUAWEMZ3RsZC1zZXJ2ZXJzA25ldADAEgACAAEAAAAFAAQBYsBZwBIAAgABAAAABQAEAWXAWcASAAIAAQAAAAUABAFnwFnAEgACAAEAAAAFAAQBbcBZwBIAAgABAAAABQAEAWjAWcASAAIAAQAAAAUABAFqwFnAEgACAAEAAAAFAAQBbMBZwBIAAgABAAAABQAEAWvAWcASAAIAAQAAAAUABAFjwFnAEgACAAEAAAAFAAQBacBZwBIAAgABAAAABQAEAWTAWcASAAIAAQAAAAUABAFmwFnAVwABAAEAAAAFAATABQYewHcAAQABAAAABQAEwCEOHsD3AAEAAQAAAAUABMAaXB7BFwABAAEAAAAFAATAH1AewIcAAQABAAAABQAEwAxeHsEnAAEAAQAAAAUABMAjMx7AlwABAAEAAAAFAATAKl0ewLcAAQABAAAABQAEwDZwHsEHAAEAAQAAAAUABMArrB7AxwABAAEAAAAFAATAME8ewOcAAQABAAAABQAEwDSyHsDXAAEAAQAAAAUABMApoh7ApwABAAEAAAAFAATAN1Me"},"ip":{"version":4,"ttl":128,"id":"99d1"},"src_ip":"192.168.113.2","dst_ip":"192.168.113.237","protocol":17,"src_port":53,"dst_port":49777,"event_start":1565200321.094171} +{"dns":{"base64":"BvqBgAABAAAAAQAABWFwcGxlA2NvbQAAHAABwAwABgABAAAABQApBWFkbnMxwAwKaG9zdG1hc3RlcsAMd8/meAAAA4QAAAOEAB7DAAABUeQ="},"ip":{"version":4,"ttl":128,"id":"99d2"},"src_ip":"192.168.113.2","dst_ip":"192.168.113.237","protocol":17,"src_port":53,"dst_port":53304,"event_start":1565200321.094206} +{"fingerprints":{"tcp":"tcp/(40)()(40)(faf0)((020405b4)(04)(08)(01)(030307))"},"tcp":{"seq":2500484259,"timestamp":{"ts_val":854234832}},"ip":{"version":4,"ttl":64,"id":"9943"},"src_ip":"192.168.113.237","dst_ip":"17.178.96.59","protocol":6,"src_port":47956,"dst_port":443,"event_start":1565200321.094698} +{"fingerprints":{"tcp_server":"tcp_server/(40)()(80)(faf0)((020405b4))"},"tcp_server":{"seq":2673968364},"ip":{"version":4,"ttl":128,"id":"99d3"},"src_ip":"17.178.96.59","dst_ip":"192.168.113.237","protocol":6,"src_port":443,"dst_port":47956,"event_start":1565200321.185356} +{"fingerprints":{"tls":"tls/(0303)(130213031301c02cc030009fcca9cca8ccaac02bc02f009ec024c028006bc023c0270067c00ac0140039c009c0130033009d009c003d003c0035002f00ff)((0000)(000b000403000102)(000a000c000a001d0017001e00190018)(0023)(0016)(0017)(000d0030002e040305030603080708080809080a080b080408050806040105010601030302030301020103020202040205020602)(002b0009080304030303020301)(002d00020101)(0033))"},"tls":{"client":{"version":"0303","random":"4f546d3b919c0e2ec8ee9a4fe98ac12242d20c933a5029196e87555ffa66d841","session_id":"a7c02de3247ea2a564f51a1669583ec57aae8854c14a2cd8dec5636028710a34","cipher_suites":"130213031301c02cc030009fcca9cca8ccaac02bc02f009ec024c028006bc023c0270067c00ac0140039c009c0130033009d009c003d003c0035002f00ff","compression_methods":"00","server_name":"apple.com","session_ticket":"","features":"[\"0303\",\"130213031301c02cc030009fcca9cca8ccaac02bc02f009ec024c028006bc023c0270067c00ac0140039c009c0130033009d009c003d003c0035002f00ff\",[[\"0000\",\"000c0000096170706c652e636f6d\"],[\"000b\",\"03000102\"],[\"000a\",\"000a001d0017001e00190018\"],[\"0023\",\"\"],[\"0016\",\"\"],[\"0017\",\"\"],[\"000d\",\"002e040305030603080708080809080a080b080408050806040105010601030302030301020103020202040205020602\"],[\"002b\",\"080304030303020301\"],[\"002d\",\"0101\"],[\"0033\",\"0024001d002045856ffc4ea1684f0e913b38752627e148856378d48f1f61d49335a43458d827\"]]]"}},"ip":{"version":4,"ttl":64,"id":"9945"},"src_ip":"192.168.113.237","dst_ip":"17.178.96.59","protocol":6,"src_port":47956,"dst_port":443,"event_start":1565200321.185602} +{"fingerprints":{"tls_server":"tls_server/(0303)(c02f)((000b00020100))"},"tls":{"server":{"certs":[{"base64":"MIIH8zCCBtugAwIBAgIQCntZYuAq75f9bqCozf4GOzANBgkqhkiG9w0BAQsFADB1MQswCQYDVQQGEwJVUzEVMBMGA1UEChMMRGlnaUNlcnQgSW5jMRkwFwYDVQQLExB3d3cuZGlnaWNlcnQuY29tMTQwMgYDVQQDEytEaWdpQ2VydCBTSEEyIEV4dGVuZGVkIFZhbGlkYXRpb24gU2VydmVyIENBMB4XDTE5MDcyMDAwMDAwMFoXDTIwMDcyMDEyMDAwMFowgeMxHTAbBgNVBA8MFFByaXZhdGUgT3JnYW5pemF0aW9uMRMwEQYLKwYBBAGCNzwCAQMTAlVTMRswGQYLKwYBBAGCNzwCAQITCkNhbGlmb3JuaWExETAPBgNVBAUTCEMwODA2NTkyMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTESMBAGA1UEBxMJQ3VwZXJ0aW5vMRMwEQYDVQQKEwpBcHBsZSBJbmMuMRowGAYDVQQLExFJbnRlcm5ldCBTZXJ2aWNlczEWMBQGA1UEAxMNd3d3LmFwcGxlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAOJVaWbq7ReuQNs4LNpYlxNwolxVkFREluDtvvHdC0dEGXxyl1Htd77fa3WdGsXrckZm/WA6OrGFDi0oxqGsmzqt8UhoL/8u0cMtLo22L3SakDlZNVdsZzHfuWwRkYRWiazWn8y90SECimUDM71NfqdrZAmYtWTah/EIeH0c4W3bv1ZD9qbXlGog3rlqTY2oi2faxAZuTJY2snOgnX50LvNUiHo5IzUuweD/dhPun02Y6hUd0FIJQ4ekA+CtBsf7Ji2Sc42nXeGtiW+0WYsmLzTxSnPdUcp+ad8S9ndCeWokM6dl3Iv177dJIn4aQ71x1TgagkjBYZ1GWjFo2hcbKJ0CAwEAAaOCBA4wggQKMB8GA1UdIwQYMBaAFD3TUKXWoK3u80pgCmXTIdT4+NYPMB0GA1UdDgQWBBT2nT+05RGAUUXkbIsK8871kncHUjCCATYGA1UdEQSCAS0wggEpghRleHRlbnNpb25zLmFwcGxlLmNvbYISZmVlZGJhY2suYXBwbGUuY29tghFnZW5zZXJ2LmFwcGxlLmNvbYIOaGVscC5hcHBsZS5jb22CEWhlbHBvc3guYXBwbGUuY29tghBoZWxwcXQuYXBwbGUuY29tghBpbWFnZXMuYXBwbGUuY29tghdpdHVuZXNwYXJ0bmVyLmFwcGxlLmNvbYIRcHJvaGVscC5hcHBsZS5jb22CEHJlYmF0ZS5hcHBsZS5jb22CG3NhZmFyaS1leHRlbnNpb25zLmFwcGxlLmNvbYIadHJhY2tpbmdzaGlwbWVudC5hcHBsZS5jb22CEnRyYWlsZXJzLmFwcGxlLmNvbYIJYXBwbGUuY29tgg13d3cuYXBwbGUuY29tMA4GA1UdDwEB/wQEAwIFoDAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwdQYDVR0fBG4wbDA0oDKgMIYuaHR0cDovL2NybDMuZGlnaWNlcnQuY29tL3NoYTItZXYtc2VydmVyLWcyLmNybDA0oDKgMIYuaHR0cDovL2NybDQuZGlnaWNlcnQuY29tL3NoYTItZXYtc2VydmVyLWcyLmNybDBLBgNVHSAERDBCMDcGCWCGSAGG/WwCATAqMCgGCCsGAQUFBwIBFhxodHRwczovL3d3dy5kaWdpY2VydC5jb20vQ1BTMAcGBWeBDAEBMIGIBggrBgEFBQcBAQR8MHowJAYIKwYBBQUHMAGGGGh0dHA6Ly9vY3NwLmRpZ2ljZXJ0LmNvbTBSBggrBgEFBQcwAoZGaHR0cDovL2NhY2VydHMuZGlnaWNlcnQuY29tL0RpZ2lDZXJ0U0hBMkV4dGVuZGVkVmFsaWRhdGlvblNlcnZlckNBLmNydDAJBgNVHRMEAjAAMIIBAwYKKwYBBAHWeQIEAgSB9ASB8QDvAHYApLkJkLQYWBSHuxOizGdwCjw1mAT5G9+443fNDsgN3BAAAAFsDybfogAABAMARzBFAiANYeCK4RsTjJyWm00Myizu96qqHAW1JHwjyO7TihtGiQIhAIzHukiG871pfYoOc2B2JqRwcH+BkLZVkCkIfTcrDl9LAHUAVhQGmi/XwuzT9eG9RLI+x0Z2ubyZEVzA75SYVdaJ0N0AAAFsDybf4AAABAMARjBEAiA+YJNS/bLKIyT+cpt9NtxKSQSW4/ctVA7wcTBjv2jlLQIgLKt5ld2x1FFDSjldkX+u/mfaIzk8apZ9F/lJeTTf3KIwDQYJKoZIhvcNAQELBQADggEBAGcYjzS/MA7CsV+3FgW5qoz7hNp3M1H1kha1PipJY32edcbWR6DhraZwpb1xfcB8NCIi6IZ/66rhMQvljs4eK5dGMDD25qMeWnFxeby6eqvGig7deN2vZkUoqMElv+WTDwZMy+W+QxZWgRzi5u0x/oM3iIAdSjZ2Oihb7QLMj4li+cIEXv70G8DftG5W7za1+lgySo9kK72mKwbmAr5OEDirSatO9MINGFFqVlIzP1z87wqenvj/13NYjHILzAzhkMlhA2EynbpnoJHlrjLlCOe+HMz1PGzvTa7sA4eBJ0vhcolQ8Tg0K01oglkzQpg3PENgk2pJWaToKO2SB1C7Dgo="},{"base64":"MIIEtjCCA56gAwIBAgIQDHmpRLCMEZUgkmFf4msdgzANBgkqhkiG9w0BAQsFADBsMQswCQYDVQQGEwJVUzEVMBMGA1UEChMMRGlnaUNlcnQgSW5jMRkwFwYDVQQLExB3d3cuZGlnaWNlcnQuY29tMSswKQYDVQQDEyJEaWdpQ2VydCBIaWdoIEFzc3VyYW5jZSBFViBSb290IENBMB4XDTEzMTAyMjEyMDAwMFoXDTI4MTAyMjEyMDAwMFowdTELMAkGA1UEBhMCVVMxFTATBgNVBAoTDERpZ2lDZXJ0IEluYzEZMBcGA1UECxMQd3d3LmRpZ2ljZXJ0LmNvbTE0MDIGA1UEAxMrRGlnaUNlcnQgU0hBMiBFeHRlbmRlZCBWYWxpZGF0aW9uIFNlcnZlciBDQTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANdTpARR+JmmFkhLZyeqk0nQOe0MsLAAh/FnKIaFjI5j2ryxQDji0/XspQUYuD0+xZkXMuwYjPrxDKZkIYXLBxA0sFKIKx9om9KxjxKws9LniB8f7zh3VFNfgHk/LhqqqB5LKw2rt2O5Nbd9FLxZS99RStKh4gzikIKHaq7q12TWmFXo/a8aUGxUvBHy/Urynbt/DvTVvo4WiRJV2MBxNO723C3sxIclho3YIeSwTQyJ3DkmF93215SF2AQhcJ1vb/9cuhnhRctWVyh+HA1BV6q3uCe7seT6Ku8hI3UarS2bhjWMnHe1c63YlC3k8wyd7sFOYn4XwHGeLN7x+RAoGTMCAwEAAaOCAUkwggFFMBIGA1UdEwEB/wQIMAYBAf8CAQAwDgYDVR0PAQH/BAQDAgGGMB0GA1UdJQQWMBQGCCsGAQUFBwMBBggrBgEFBQcDAjA0BggrBgEFBQcBAQQoMCYwJAYIKwYBBQUHMAGGGGh0dHA6Ly9vY3NwLmRpZ2ljZXJ0LmNvbTBLBgNVHR8ERDBCMECgPqA8hjpodHRwOi8vY3JsNC5kaWdpY2VydC5jb20vRGlnaUNlcnRIaWdoQXNzdXJhbmNlRVZSb290Q0EuY3JsMD0GA1UdIAQ2MDQwMgYEVR0gADAqMCgGCCsGAQUFBwIBFhxodHRwczovL3d3dy5kaWdpY2VydC5jb20vQ1BTMB0GA1UdDgQWBBQ901Cl1qCt7vNKYApl0yHU+PjWDzAfBgNVHSMEGDAWgBSxPsNpA/i/RwHUmCYaCALvY2QrwzANBgkqhkiG9w0BAQsFAAOCAQEAnbbQkIbhhgLtxaDwNBx0wY12zIYKqPBKikLWP8ipTa18CK3mtlC4ohpNiAexKSHc59rGPCHg4xFJcKx6HQGkyhE6V6t9VypAdP3THYUYUN9XR3WhfVUgLkc3UHKMf4Ib0mKPLQNa2sPIoc4sUqIAY+tzunHISScjl2SFnjgOrWNoPLpSgVh5oywM395t6zHyuqB8bPEs1OG9d4Q3A84ytciagRpKkk47RpqF/oOi+Z6Mo8wNXrM9zwR4jxQUezKcxwCmXMS1oVWNWlZopCJwqjyBcdmdqEU79OX2olHdx3ti6G8MdOu42vi/hw15UJGQmxg7kVkn8TUoE6smftX3eg=="}],"version":"0303","random":"5d4b0fc183f43ce9fdf74b73b59249f080cd18495eb603ffa0a3674480ce68a3","selected_cipher_suite":"c02f","compression_method":"00"}},"reassembly_properties":{"reassembled":true},"ip":{"version":4,"ttl":128,"id":"99d7"},"src_ip":"17.178.96.59","dst_ip":"192.168.113.237","protocol":6,"src_port":443,"dst_port":47956,"event_start":1565200321.283427} +{"dns":{"base64":"xd4BAAABAAAAAAAAA3d3dwVhcHBsZQNjb20AAAEAAQ=="},"ip":{"version":4,"ttl":64,"id":"ced4"},"src_ip":"192.168.113.237","dst_ip":"192.168.113.2","protocol":17,"src_port":37364,"dst_port":53,"event_start":1565200321.512636} +{"dns":{"base64":"J3EBAAABAAAAAAAAA3d3dwVhcHBsZQNjb20AABwAAQ=="},"ip":{"version":4,"ttl":64,"id":"ced5"},"src_ip":"192.168.113.237","dst_ip":"192.168.113.2","protocol":17,"src_port":56935,"dst_port":53,"event_start":1565200321.512806} +{"dns":{"base64":"J3GBgAABAAUADQABA3d3dwVhcHBsZQNjb20AABwAAcAMAAUAAQAAAAUAGwN3d3cFYXBwbGUDY29tB2VkZ2VrZXkDbmV0AMArAAUAAQAAAAUALwN3d3cFYXBwbGUDY29tB2VkZ2VrZXkDbmV0C2dsb2JhbHJlZGlyBmFrYWRuc8BBwFIABQABAAAABQAZBWU2ODU4BWRzY2U5CmFrYW1haWVkZ2XAQcCNABwAAQAAAAUAECYAFB4AAgGYAAAAAAAAGsrAjQAcAAEAAAAFABAmABQeAAIBhAAAAAAAABrKwJkAAgABAAAABQAKB25zNy0xOTTAmcCZAAIAAQAAAAUACgdhMTItMTkywJnAmQACAAEAAAAFAAoHYTI4LTE5MsCZwJkAAgABAAAABQAKB25zNS0xOTTAmcCZAAIAAQAAAAUACgduczYtMTk0wJnAmQACAAEAAAAFAAYDbGExwJnAmQACAAEAAAAFAAoHbnMzLTE5NMCZwJkAAgABAAAABQAJBmExLTE5MsCZwJkAAgABAAAABQAKB2ExMy0xOTLAmcCZAAIAAQAAAAUABwRsYXIywJnAmQACAAEAAAAFAAYDbGEzwJnAmQACAAEAAAAFAAkGYTYtMTkywJnAmQACAAEAAAAFAAoHYTExLTE5MsCZwVgAAQABAAAABQAEuBqhwA=="},"ip":{"version":4,"ttl":128,"id":"99df"},"src_ip":"192.168.113.2","dst_ip":"192.168.113.237","protocol":17,"src_port":53,"dst_port":56935,"event_start":1565200321.548794} +{"dns":{"base64":"xd6BgAABAAQADQAGA3d3dwVhcHBsZQNjb20AAAEAAcAMAAUAAQAAAAUAGwN3d3cFYXBwbGUDY29tB2VkZ2VrZXkDbmV0AMArAAUAAQAAAAUALwN3d3cFYXBwbGUDY29tB2VkZ2VrZXkDbmV0C2dsb2JhbHJlZGlyBmFrYWRuc8BBwFIABQABAAAABQAZBWU2ODU4BWRzY2U5CmFrYW1haWVkZ2XAQcCNAAEAAQAAAAUABLgzga7AQQACAAEAAAAFABEBZgxndGxkLXNlcnZlcnPAQcBBAAIAAQAAAAUABAFtwMTAQQACAAEAAAAFAAQBZcDEwEEAAgABAAAABQAEAWLAxMBBAAIAAQAAAAUABAFhwMTAQQACAAEAAAAFAAQBbMDEwEEAAgABAAAABQAEAWjAxMBBAAIAAQAAAAUABAFpwMTAQQACAAEAAAAFAAQBa8DEwEEAAgABAAAABQAEAWTAxMBBAAIAAQAAAAUABAFqwMTAQQACAAEAAAAFAAQBZ8DEwEEAAgABAAAABQAEAWPAxMEPAAEAAQAAAAUABMAFBh7A/wABAAEAAAAFAATAIQ4ewY8AAQABAAAABQAEwBpcHsFfAAEAAQAAAAUABMAfUB7A7wABAAEAAAAFAATADF4ewMIAAQABAAAABQAEwCMzHg=="},"ip":{"version":4,"ttl":128,"id":"99e0"},"src_ip":"192.168.113.2","dst_ip":"192.168.113.237","protocol":17,"src_port":53,"dst_port":37364,"event_start":1565200321.548812} +{"fingerprints":{"tcp":"tcp/(40)()(40)(faf0)((020405b4)(04)(08)(01)(030307))"},"tcp":{"seq":4216949584,"timestamp":{"ts_val":666308825}},"ip":{"version":4,"ttl":64,"id":"4d02"},"src_ip":"192.168.113.237","dst_ip":"184.51.129.174","protocol":6,"src_port":50196,"dst_port":443,"event_start":1565200321.549929} +{"fingerprints":{"tcp_server":"tcp_server/(40)()(80)(faf0)((020405b4))"},"tcp_server":{"seq":1399490350},"ip":{"version":4,"ttl":128,"id":"99e1"},"src_ip":"184.51.129.174","dst_ip":"192.168.113.237","protocol":6,"src_port":443,"dst_port":50196,"event_start":1565200321.585408} +{"fingerprints":{"tls":"tls/(0303)(130213031301c02cc030009fcca9cca8ccaac02bc02f009ec024c028006bc023c0270067c00ac0140039c009c0130033009d009c003d003c0035002f00ff)((0000)(000b000403000102)(000a000c000a001d0017001e00190018)(0023)(0016)(0017)(000d0030002e040305030603080708080809080a080b080408050806040105010601030302030301020103020202040205020602)(002b0009080304030303020301)(002d00020101)(0033))"},"tls":{"client":{"version":"0303","random":"b33e4e1a33c8204b94e704f8498a2512dde96b5a7867334ac94a2cbbea12911c","session_id":"a19d9ddbd41479e6df1bd4ccedea1eacbb607b53941e588341572224a9d35b75","cipher_suites":"130213031301c02cc030009fcca9cca8ccaac02bc02f009ec024c028006bc023c0270067c00ac0140039c009c0130033009d009c003d003c0035002f00ff","compression_methods":"00","server_name":"www.apple.com","session_ticket":"","features":"[\"0303\",\"130213031301c02cc030009fcca9cca8ccaac02bc02f009ec024c028006bc023c0270067c00ac0140039c009c0130033009d009c003d003c0035002f00ff\",[[\"0000\",\"001000000d7777772e6170706c652e636f6d\"],[\"000b\",\"03000102\"],[\"000a\",\"000a001d0017001e00190018\"],[\"0023\",\"\"],[\"0016\",\"\"],[\"0017\",\"\"],[\"000d\",\"002e040305030603080708080809080a080b080408050806040105010601030302030301020103020202040205020602\"],[\"002b\",\"080304030303020301\"],[\"002d\",\"0101\"],[\"0033\",\"0024001d002013a4af48a5b3d8f4ee0d73b2c581b8ab96fab3df1ae41ca74266ca7f8e137613\"]]]"}},"ip":{"version":4,"ttl":64,"id":"4d04"},"src_ip":"192.168.113.237","dst_ip":"184.51.129.174","protocol":6,"src_port":50196,"dst_port":443,"event_start":1565200321.585675} +{"fingerprints":{"tls_server":"tls_server/(0303)(c030)((ff01)(0000)(000b000403000102)(0023))"},"tls":{"server":{"certs":[{"base64":"MIIG8TCCBdmgAwIBAgIQD45OTJz1XqX+Lpsrfv/ejzANBgkqhkiG9w0BAQsFADB1MQswCQYDVQQGEwJVUzEVMBMGA1UEChMMRGlnaUNlcnQgSW5jMRkwFwYDVQQLExB3d3cuZGlnaWNlcnQuY29tMTQwMgYDVQQDEytEaWdpQ2VydCBTSEEyIEV4dGVuZGVkIFZhbGlkYXRpb24gU2VydmVyIENBMB4XDTE5MDMwNzAwMDAwMFoXDTIwMDMwNzEyMDAwMFowge4xHTAbBgNVBA8MFFByaXZhdGUgT3JnYW5pemF0aW9uMRMwEQYLKwYBBAGCNzwCAQMTAlVTMRswGQYLKwYBBAGCNzwCAQITCkNhbGlmb3JuaWExETAPBgNVBAUTCEMwODA2NTkyMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTESMBAGA1UEBxMJQ3VwZXJ0aW5vMRMwEQYDVQQKEwpBcHBsZSBJbmMuMSUwIwYDVQQLExxJbnRlcm5ldCBTZXJ2aWNlcyBmb3IgQWthbWFpMRYwFAYDVQQDEw13d3cuYXBwbGUuY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEA7V5dxoW+5Sp4eh93H0IX6sHjda7JOHrgz5/rukdCz2N1JtNMjmwvx7wcuzfJpaDTj+o9AsjoBqGnK0x7kVW8UavnyLiopkk+lEXxAJAmubWvtaAiQSwQUovZ8JHlQHZg/cKx/tBVw08YfSAADItBLC3BCsDhLt74R4SyNk4DX3eQ9vVg2KolEOs3OAN/S0Y2di5m/hjkmzHs1SrbYJDXoNWreZwB9qyHiHNDCOBI8AmsQUBg5JynzL0vx10yMi5C12kvRjDTbhe6HKa6vLViU4nHSu+5+A8lL7R6XAX75P0TRxv/YG9A8g8tUzg/IYdNCLEb09qr1Z6UaUOjol7x6QIDAQABo4IDATCCAv0wHwYDVR0jBBgwFoAUPdNQpdagre7zSmAKZdMh1Pj41g8wHQYDVR0OBBYEFNj1/23cljBcrYB1/87F950Wc8sWMCoGA1UdEQQjMCGCEGltYWdlcy5hcHBsZS5jb22CDXd3dy5hcHBsZS5jb20wDgYDVR0PAQH/BAQDAgWgMB0GA1UdJQQWMBQGCCsGAQUFBwMBBggrBgEFBQcDAjB1BgNVHR8EbjBsMDSgMqAwhi5odHRwOi8vY3JsMy5kaWdpY2VydC5jb20vc2hhMi1ldi1zZXJ2ZXItZzIuY3JsMDSgMqAwhi5odHRwOi8vY3JsNC5kaWdpY2VydC5jb20vc2hhMi1ldi1zZXJ2ZXItZzIuY3JsMEsGA1UdIAREMEIwNwYJYIZIAYb9bAIBMCowKAYIKwYBBQUHAgEWHGh0dHBzOi8vd3d3LmRpZ2ljZXJ0LmNvbS9DUFMwBwYFZ4EMAQEwgYgGCCsGAQUFBwEBBHwwejAkBggrBgEFBQcwAYYYaHR0cDovL29jc3AuZGlnaWNlcnQuY29tMFIGCCsGAQUFBzAChkZodHRwOi8vY2FjZXJ0cy5kaWdpY2VydC5jb20vRGlnaUNlcnRTSEEyRXh0ZW5kZWRWYWxpZGF0aW9uU2VydmVyQ0EuY3J0MAkGA1UdEwQCMAAwggEEBgorBgEEAdZ5AgQCBIH1BIHyAPAAdgC72d+8H4pxtZOUI5eqkntHOFeVCqtS6BqQlmQ2jh7RhQAAAWlYQtEGAAAEAwBHMEUCIGiBDFSIRXrGhLhlm/2cNID2OJHvz1j5/fNQb62OoK3oAiEAzjKdWz2ii7YESO4BJmzTUKHqfyUMACpCbUINE8CphbwAdgBWFAaaL9fC7NP14b1Esj7HRna5vJkRXMDvlJhV1onQ3QAAAWlYQtFEAAAEAwBHMEUCIEvUZFLTUvA+2NQ9xUBy7cMEjDwWRl04ArqiHlKq4dq2AiEAo14va8y5NNmkAHDhOpm0DSVt01l3wpiMaqCup+EGczIwDQYJKoZIhvcNAQELBQADggEBAD/ZoRmzfFalieWiMzPj/Lsp29dpdjEvaZeQoQwRC1rLq0FmspvfcdbckpG2F4vTnIM83HynKV26OJebDQfgRsonX0GgwIQeRwDch3n9rz40wm2xRwxSFIGssmy0MLJBYXcHlgVbJjailMJww83BFawzDWBo+hmVPigU3hkV8ktDqwC/VOOvWikPMsvMvn8HMPbZSeYnH8A7nD0u0WzFtg6NF9xIXB/Bfku6jEPKr5l2iJukaGD6wtOH7zkWjEk2LAn5Byoue2E+dnbvdJalrv9rTPd/lkG+nAlBuooc/cJK4QqofnuomKgBXavv2zaz5pNdJwwmwzOTdK95geXURk4="},{"base64":"MIIEtjCCA56gAwIBAgIQDHmpRLCMEZUgkmFf4msdgzANBgkqhkiG9w0BAQsFADBsMQswCQYDVQQGEwJVUzEVMBMGA1UEChMMRGlnaUNlcnQgSW5jMRkwFwYDVQQLExB3d3cuZGlnaWNlcnQuY29tMSswKQYDVQQDEyJEaWdpQ2VydCBIaWdoIEFzc3VyYW5jZSBFViBSb290IENBMB4XDTEzMTAyMjEyMDAwMFoXDTI4MTAyMjEyMDAwMFowdTELMAkGA1UEBhMCVVMxFTATBgNVBAoTDERpZ2lDZXJ0IEluYzEZMBcGA1UECxMQd3d3LmRpZ2ljZXJ0LmNvbTE0MDIGA1UEAxMrRGlnaUNlcnQgU0hBMiBFeHRlbmRlZCBWYWxpZGF0aW9uIFNlcnZlciBDQTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANdTpARR+JmmFkhLZyeqk0nQOe0MsLAAh/FnKIaFjI5j2ryxQDji0/XspQUYuD0+xZkXMuwYjPrxDKZkIYXLBxA0sFKIKx9om9KxjxKws9LniB8f7zh3VFNfgHk/LhqqqB5LKw2rt2O5Nbd9FLxZS99RStKh4gzikIKHaq7q12TWmFXo/a8aUGxUvBHy/Urynbt/DvTVvo4WiRJV2MBxNO723C3sxIclho3YIeSwTQyJ3DkmF93215SF2AQhcJ1vb/9cuhnhRctWVyh+HA1BV6q3uCe7seT6Ku8hI3UarS2bhjWMnHe1c63YlC3k8wyd7sFOYn4XwHGeLN7x+RAoGTMCAwEAAaOCAUkwggFFMBIGA1UdEwEB/wQIMAYBAf8CAQAwDgYDVR0PAQH/BAQDAgGGMB0GA1UdJQQWMBQGCCsGAQUFBwMBBggrBgEFBQcDAjA0BggrBgEFBQcBAQQoMCYwJAYIKwYBBQUHMAGGGGh0dHA6Ly9vY3NwLmRpZ2ljZXJ0LmNvbTBLBgNVHR8ERDBCMECgPqA8hjpodHRwOi8vY3JsNC5kaWdpY2VydC5jb20vRGlnaUNlcnRIaWdoQXNzdXJhbmNlRVZSb290Q0EuY3JsMD0GA1UdIAQ2MDQwMgYEVR0gADAqMCgGCCsGAQUFBwIBFhxodHRwczovL3d3dy5kaWdpY2VydC5jb20vQ1BTMB0GA1UdDgQWBBQ901Cl1qCt7vNKYApl0yHU+PjWDzAfBgNVHSMEGDAWgBSxPsNpA/i/RwHUmCYaCALvY2QrwzANBgkqhkiG9w0BAQsFAAOCAQEAnbbQkIbhhgLtxaDwNBx0wY12zIYKqPBKikLWP8ipTa18CK3mtlC4ohpNiAexKSHc59rGPCHg4xFJcKx6HQGkyhE6V6t9VypAdP3THYUYUN9XR3WhfVUgLkc3UHKMf4Ib0mKPLQNa2sPIoc4sUqIAY+tzunHISScjl2SFnjgOrWNoPLpSgVh5oywM395t6zHyuqB8bPEs1OG9d4Q3A84ytciagRpKkk47RpqF/oOi+Z6Mo8wNXrM9zwR4jxQUezKcxwCmXMS1oVWNWlZopCJwqjyBcdmdqEU79OX2olHdx3ti6G8MdOu42vi/hw15UJGQmxg7kVkn8TUoE6smftX3eg=="}],"version":"0303","random":"003648961a96fa52c7c8c80c1992c1587f277cdd9e294cd0f8cd090ee1c92ac5","selected_cipher_suite":"c030","compression_method":"00","session_ticket":""}},"reassembly_properties":{"reassembled":true},"ip":{"version":4,"ttl":128,"id":"99e5"},"src_ip":"184.51.129.174","dst_ip":"192.168.113.237","protocol":6,"src_port":443,"dst_port":50196,"event_start":1565200321.628488} +{"dns":{"base64":"gpYBAAABAAAAAAAABHBsdXMGZ29vZ2xlA2NvbQAAAQAB"},"ip":{"version":4,"ttl":64,"id":"ceed"},"src_ip":"192.168.113.237","dst_ip":"192.168.113.2","protocol":17,"src_port":49368,"dst_port":53,"event_start":1565200321.807857} +{"dns":{"base64":"/zMBAAABAAAAAAAABHBsdXMGZ29vZ2xlA2NvbQAAHAAB"},"ip":{"version":4,"ttl":64,"id":"ceee"},"src_ip":"192.168.113.237","dst_ip":"192.168.113.2","protocol":17,"src_port":50088,"dst_port":53,"event_start":1565200321.808041} +{"dns":{"base64":"/zOBgAABAAEADQANBHBsdXMGZ29vZ2xlA2NvbQAAHAABwAwAHAABAAAABQAQJgf4sEAECBAAAAAAAAAgDsAYAAIAAQAAAAUAFAFhDGd0bGQtc2VydmVycwNuZXQAwBgAAgABAAAABQAEAWrAS8AYAAIAAQAAAAUABAFpwEvAGAACAAEAAAAFAAQBbMBLwBgAAgABAAAABQAEAWfAS8AYAAIAAQAAAAUABAFiwEvAGAACAAEAAAAFAAQBZcBLwBgAAgABAAAABQAEAWTAS8AYAAIAAQAAAAUABAFowEvAGAACAAEAAAAFAAQBY8BLwBgAAgABAAAABQAEAW3AS8AYAAIAAQAAAAUABAFrwEvAGAACAAEAAAAFAAQBZsBLwEkAAQABAAAABQAEwAUGHsCpAAEAAQAAAAUABMAhDh7A6QABAAEAAAAFAATAGlwewMkAAQABAAAABQAEwB9QHsC5AAEAAQAAAAUABMAMXh7BGQABAAEAAAAFAATAIzMewJkAAQABAAAABQAEwCpdHsDZAAEAAQAAAAUABMA2cB7AeQABAAEAAAAFAATAK6wewGkAAQABAAAABQAEwDBPHsEJAAEAAQAAAAUABMA0sh7AiQABAAEAAAAFAATAKaIewPkAAQABAAAABQAEwDdTHg=="},"ip":{"version":4,"ttl":128,"id":"9a1a"},"src_ip":"192.168.113.2","dst_ip":"192.168.113.237","protocol":17,"src_port":53,"dst_port":50088,"event_start":1565200321.844081} +{"dns":{"base64":"gpaBgAABAAEADQAOBHBsdXMGZ29vZ2xlA2NvbQAAAQABwAwAAQABAAAABQAErNkPTsAYAAIAAQAAAAUAFAFtDGd0bGQtc2VydmVycwNuZXQAwBgAAgABAAAABQAEAWbAP8AYAAIAAQAAAAUABAFswD/AGAACAAEAAAAFAAQBYcA/wBgAAgABAAAABQAEAWnAP8AYAAIAAQAAAAUABAFlwD/AGAACAAEAAAAFAAQBY8A/wBgAAgABAAAABQAEAWfAP8AYAAIAAQAAAAUABAFowD/AGAACAAEAAAAFAAQBYsA/wBgAAgABAAAABQAEAWTAP8AYAAIAAQAAAAUABAFqwD/AGAACAAEAAAAFAAQBa8A/wH0AAQABAAAABQAEwAUGHsDdAAEAAQAAAAUABMAhDh7ArQABAAEAAAAFAATAGlwewO0AAQABAAAABQAEwB9QHsCdAAEAAQAAAAUABMAMXh7AXQABAAEAAAAFAATAIzMewL0AAQABAAAABQAEwCpdHsDNAAEAAQAAAAUABMA2cB7AjQABAAEAAAAFAATAK6wewP0AAQABAAAABQAEwDBPHsENAAEAAQAAAAUABMA0sh7AbQABAAEAAAAFAATAKaIewD0AAQABAAAABQAEwDdTHsB9ABwAAQAAAAUAECABBQOoPgAAAAAAAAACADA="},"ip":{"version":4,"ttl":128,"id":"9a1b"},"src_ip":"192.168.113.2","dst_ip":"192.168.113.237","protocol":17,"src_port":53,"dst_port":49368,"event_start":1565200321.844379} +{"fingerprints":{"tcp":"tcp/(40)()(40)(faf0)((020405b4)(04)(08)(01)(030307))"},"tcp":{"seq":3537948531,"timestamp":{"ts_val":3222377940}},"ip":{"version":4,"ttl":64,"id":"09e8"},"src_ip":"192.168.113.237","dst_ip":"172.217.15.78","protocol":6,"src_port":38824,"dst_port":443,"event_start":1565200321.844698} +{"fingerprints":{"tcp_server":"tcp_server/(40)()(80)(faf0)((020405b4))"},"tcp_server":{"seq":1836631840},"ip":{"version":4,"ttl":128,"id":"9a1c"},"src_ip":"172.217.15.78","dst_ip":"192.168.113.237","protocol":6,"src_port":443,"dst_port":38824,"event_start":1565200321.884212} +{"fingerprints":{"tls":"tls/(0303)(130213031301c02cc030009fcca9cca8ccaac02bc02f009ec024c028006bc023c0270067c00ac0140039c009c0130033009d009c003d003c0035002f00ff)((0000)(000b000403000102)(000a000c000a001d0017001e00190018)(0023)(0016)(0017)(000d0030002e040305030603080708080809080a080b080408050806040105010601030302030301020103020202040205020602)(002b0009080304030303020301)(002d00020101)(0033))"},"tls":{"client":{"version":"0303","random":"c928b52d51d22a09d8725a96338eb72bfc1723d797993420686fb3b635c3c32f","session_id":"8341541c1a8c7c5278ac3d1c3a39085d4c5c19b6e116441bd969dc65dad15365","cipher_suites":"130213031301c02cc030009fcca9cca8ccaac02bc02f009ec024c028006bc023c0270067c00ac0140039c009c0130033009d009c003d003c0035002f00ff","compression_methods":"00","server_name":"plus.google.com","session_ticket":"","features":"[\"0303\",\"130213031301c02cc030009fcca9cca8ccaac02bc02f009ec024c028006bc023c0270067c00ac0140039c009c0130033009d009c003d003c0035002f00ff\",[[\"0000\",\"001200000f706c75732e676f6f676c652e636f6d\"],[\"000b\",\"03000102\"],[\"000a\",\"000a001d0017001e00190018\"],[\"0023\",\"\"],[\"0016\",\"\"],[\"0017\",\"\"],[\"000d\",\"002e040305030603080708080809080a080b080408050806040105010601030302030301020103020202040205020602\"],[\"002b\",\"080304030303020301\"],[\"002d\",\"0101\"],[\"0033\",\"0024001d0020a9445473edce2a37860c07d18bec5e5a4e61d19317405323b0c75c4095271546\"]]]"}},"ip":{"version":4,"ttl":64,"id":"09ea"},"src_ip":"192.168.113.237","dst_ip":"172.217.15.78","protocol":6,"src_port":38824,"dst_port":443,"event_start":1565200321.884634} +{"fingerprints":{"tls_server":"tls_server/(0303)(1302)((0033)(002b00020304))"},"tls":{"server":{"version":"0303","random":"192a68c2d0163403d380912d7d6e022b58ef362a4d84cb7bb64ed2db194a9d49","selected_cipher_suite":"1302","compression_method":"00"}},"ip":{"version":4,"ttl":128,"id":"9a1e"},"src_ip":"172.217.15.78","dst_ip":"192.168.113.237","protocol":6,"src_port":443,"dst_port":38824,"event_start":1565200321.934416} +{"dns":{"base64":"eDwBAAABAAAAAAAACGFjY291bnRzBmdvb2dsZQNjb20AAAEAAQ=="},"ip":{"version":4,"ttl":64,"id":"cf1d"},"src_ip":"192.168.113.237","dst_ip":"192.168.113.2","protocol":17,"src_port":39152,"dst_port":53,"event_start":1565200322.061311} +{"dns":{"base64":"vTUBAAABAAAAAAAACGFjY291bnRzBmdvb2dsZQNjb20AABwAAQ=="},"ip":{"version":4,"ttl":64,"id":"cf1e"},"src_ip":"192.168.113.237","dst_ip":"192.168.113.2","protocol":17,"src_port":51559,"dst_port":53,"event_start":1565200322.061512} +{"dns":{"base64":"vTWBgAABAAEADQANCGFjY291bnRzBmdvb2dsZQNjb20AABwAAcAMABwAAQAAAAUAECYH+LBABAgUAAAAAAAAIA3AHAACAAEAAAAFABQBZgxndGxkLXNlcnZlcnMDbmV0AMAcAAIAAQAAAAUABAFowE/AHAACAAEAAAAFAAQBY8BPwBwAAgABAAAABQAEAWHAT8AcAAIAAQAAAAUABAFswE/AHAACAAEAAAAFAAQBZcBPwBwAAgABAAAABQAEAWrAT8AcAAIAAQAAAAUABAFkwE/AHAACAAEAAAAFAAQBbcBPwBwAAgABAAAABQAEAWfAT8AcAAIAAQAAAAUABAFiwE/AHAACAAEAAAAFAAQBacBPwBwAAgABAAAABQAEAWvAT8CNAAEAAQAAAAUABMAFBh7A/QABAAEAAAAFAATAIQ4ewH0AAQABAAAABQAEwBpcHsDNAAEAAQAAAAUABMAfUB7ArQABAAEAAAAFAATADF4ewE0AAQABAAAABQAEwCMzHsDtAAEAAQAAAAUABMAqXR7AbQABAAEAAAAFAATANnAewQ0AAQABAAAABQAEwCusHsC9AAEAAQAAAAUABMAwTx7BHQABAAEAAAAFAATANLIewJ0AAQABAAAABQAEwCmiHsDdAAEAAQAAAAUABMA3Ux4="},"ip":{"version":4,"ttl":128,"id":"9a28"},"src_ip":"192.168.113.2","dst_ip":"192.168.113.237","protocol":17,"src_port":53,"dst_port":51559,"event_start":1565200322.111139} +{"dns":{"base64":"eDyBgAABAAEADQANCGFjY291bnRzBmdvb2dsZQNjb20AAAEAAcAMAAEAAQAAAAUABKzZpI3AHAACAAEAAAAFABQBagxndGxkLXNlcnZlcnMDbmV0AMAcAAIAAQAAAAUABAFiwEPAHAACAAEAAAAFAAQBZsBDwBwAAgABAAAABQAEAWTAQ8AcAAIAAQAAAAUABAFowEPAHAACAAEAAAAFAAQBa8BDwBwAAgABAAAABQAEAWfAQ8AcAAIAAQAAAAUABAFpwEPAHAACAAEAAAAFAAQBYcBDwBwAAgABAAAABQAEAWzAQ8AcAAIAAQAAAAUABAFjwEPAHAACAAEAAAAFAAQBbcBDwBwAAgABAAAABQAEAWXAQ8DRAAEAAQAAAAUABMAFBh7AYQABAAEAAAAFAATAIQ4ewPEAAQABAAAABQAEwBpcHsCBAAEAAQAAAAUABMAfUB7BEQABAAEAAAAFAATADF4ewHEAAQABAAAABQAEwCMzHsCxAAEAAQAAAAUABMAqXR7AkQABAAEAAAAFAATANnAewMEAAQABAAAABQAEwCusHsBBAAEAAQAAAAUABMAwTx7AoQABAAEAAAAFAATANLIewOEAAQABAAAABQAEwCmiHsEBAAEAAQAAAAUABMA3Ux4="},"ip":{"version":4,"ttl":128,"id":"9a29"},"src_ip":"192.168.113.2","dst_ip":"192.168.113.237","protocol":17,"src_port":53,"dst_port":39152,"event_start":1565200322.115491} +{"fingerprints":{"tcp":"tcp/(40)()(40)(faf0)((020405b4)(04)(08)(01)(030307))"},"tcp":{"seq":3915701525,"timestamp":{"ts_val":1676988521}},"ip":{"version":4,"ttl":64,"id":"1bca"},"src_ip":"192.168.113.237","dst_ip":"172.217.164.141","protocol":6,"src_port":56988,"dst_port":443,"event_start":1565200322.115771} +{"fingerprints":{"tcp_server":"tcp_server/(40)()(80)(faf0)((020405b4))"},"tcp_server":{"seq":977773468},"ip":{"version":4,"ttl":128,"id":"9a2a"},"src_ip":"172.217.164.141","dst_ip":"192.168.113.237","protocol":6,"src_port":443,"dst_port":56988,"event_start":1565200322.155366} +{"fingerprints":{"tls":"tls/(0303)(130213031301c02cc030009fcca9cca8ccaac02bc02f009ec024c028006bc023c0270067c00ac0140039c009c0130033009d009c003d003c0035002f00ff)((0000)(000b000403000102)(000a000c000a001d0017001e00190018)(0023)(0016)(0017)(000d0030002e040305030603080708080809080a080b080408050806040105010601030302030301020103020202040205020602)(002b0009080304030303020301)(002d00020101)(0033))"},"tls":{"client":{"version":"0303","random":"b6485be724383ef9ac81d8bc51995ead11c16b954c79fc4417cfc95207fcd7fb","session_id":"63a82af4e84b4bd3e591b4ae7cc18b98ba17079f5d453a427e36baaaeab50c97","cipher_suites":"130213031301c02cc030009fcca9cca8ccaac02bc02f009ec024c028006bc023c0270067c00ac0140039c009c0130033009d009c003d003c0035002f00ff","compression_methods":"00","server_name":"accounts.google.com","session_ticket":"","features":"[\"0303\",\"130213031301c02cc030009fcca9cca8ccaac02bc02f009ec024c028006bc023c0270067c00ac0140039c009c0130033009d009c003d003c0035002f00ff\",[[\"0000\",\"00160000136163636f756e74732e676f6f676c652e636f6d\"],[\"000b\",\"03000102\"],[\"000a\",\"000a001d0017001e00190018\"],[\"0023\",\"\"],[\"0016\",\"\"],[\"0017\",\"\"],[\"000d\",\"002e040305030603080708080809080a080b080408050806040105010601030302030301020103020202040205020602\"],[\"002b\",\"080304030303020301\"],[\"002d\",\"0101\"],[\"0033\",\"0024001d00201e555491cc0242c0953ca912855820368a58ac54645bc8632cdd57ed92fea327\"]]]"}},"ip":{"version":4,"ttl":64,"id":"1bcc"},"src_ip":"192.168.113.237","dst_ip":"172.217.164.141","protocol":6,"src_port":56988,"dst_port":443,"event_start":1565200322.155639} +{"fingerprints":{"tls_server":"tls_server/(0303)(1302)((0033)(002b00020304))"},"tls":{"server":{"version":"0303","random":"9c41c355ab498d066eee83ca65b04f4451d832099205c268773871fd7cde9f65","selected_cipher_suite":"1302","compression_method":"00"}},"ip":{"version":4,"ttl":128,"id":"9a2c"},"src_ip":"172.217.164.141","dst_ip":"192.168.113.237","protocol":6,"src_port":443,"dst_port":56988,"event_start":1565200322.206517} +{"dns":{"base64":"mjsBAAABAAAAAAAABWFkb2JlA2NvbQAAAQAB"},"ip":{"version":4,"ttl":64,"id":"cf63"},"src_ip":"192.168.113.237","dst_ip":"192.168.113.2","protocol":17,"src_port":33679,"dst_port":53,"event_start":1565200322.506985} +{"dns":{"base64":"cD0BAAABAAAAAAAABWFkb2JlA2NvbQAAHAAB"},"ip":{"version":4,"ttl":64,"id":"cf64"},"src_ip":"192.168.113.237","dst_ip":"192.168.113.2","protocol":17,"src_port":58319,"dst_port":53,"event_start":1565200322.507159} +{"dns":{"base64":"cD2BgAABAAAAAQAABWFkb2JlA2NvbQAAHAABwAwABgABAAAABQAwDGFkb2JlLWRucy0wMcAMCmhvc3RtYXN0ZXLADAAAF30AAAcIAAACWAAk6gAAAAEs"},"ip":{"version":4,"ttl":128,"id":"9a65"},"src_ip":"192.168.113.2","dst_ip":"192.168.113.237","protocol":17,"src_port":53,"dst_port":58319,"event_start":1565200322.541163} +{"dns":{"base64":"mjuBgAABAAIADQANBWFkb2JlA2NvbQAAAQABwAwAAQABAAAABQAEwWjXOsAMAAEAAQAAAAUABMCTgszAEgACAAEAAAAFABQBZgxndGxkLXNlcnZlcnMDbmV0AMASAAIAAQAAAAUABAFowEnAEgACAAEAAAAFAAQBbcBJwBIAAgABAAAABQAEAWLAScASAAIAAQAAAAUABAFlwEnAEgACAAEAAAAFAAQBasBJwBIAAgABAAAABQAEAWvAScASAAIAAQAAAAUABAFkwEnAEgACAAEAAAAFAAQBacBJwBIAAgABAAAABQAEAWHAScASAAIAAQAAAAUABAFjwEnAEgACAAEAAAAFAAQBbMBJwBIAAgABAAAABQAEAWfAScDnAAEAAQAAAAUABMAFBh7AhwABAAEAAAAFAATAIQ4ewPcAAQABAAAABQAEwBpcHsDHAAEAAQAAAAUABMAfUB7AlwABAAEAAAAFAATADF4ewEcAAQABAAAABQAEwCMzHsEXAAEAAQAAAAUABMAqXR7AZwABAAEAAAAFAATANnAewNcAAQABAAAABQAEwCusHsCnAAEAAQAAAAUABMAwTx7AtwABAAEAAAAFAATANLIewQcAAQABAAAABQAEwCmiHsB3AAEAAQAAAAUABMA3Ux4="},"ip":{"version":4,"ttl":128,"id":"9a66"},"src_ip":"192.168.113.2","dst_ip":"192.168.113.237","protocol":17,"src_port":53,"dst_port":33679,"event_start":1565200322.541182} +{"fingerprints":{"tcp":"tcp/(40)()(40)(faf0)((020405b4)(04)(08)(01)(030307))"},"tcp":{"seq":1858420565,"timestamp":{"ts_val":1202247453}},"ip":{"version":4,"ttl":64,"id":"f81f"},"src_ip":"192.168.113.237","dst_ip":"193.104.215.58","protocol":6,"src_port":60736,"dst_port":443,"event_start":1565200322.541707} +{"fingerprints":{"tcp_server":"tcp_server/(40)()(80)(faf0)((020405b4))"},"tcp_server":{"seq":488071443},"ip":{"version":4,"ttl":128,"id":"9a67"},"src_ip":"193.104.215.58","dst_ip":"192.168.113.237","protocol":6,"src_port":443,"dst_port":60736,"event_start":1565200322.673846} +{"fingerprints":{"tls":"tls/(0303)(130213031301c02cc030009fcca9cca8ccaac02bc02f009ec024c028006bc023c0270067c00ac0140039c009c0130033009d009c003d003c0035002f00ff)((0000)(000b000403000102)(000a000c000a001d0017001e00190018)(0023)(0016)(0017)(000d0030002e040305030603080708080809080a080b080408050806040105010601030302030301020103020202040205020602)(002b0009080304030303020301)(002d00020101)(0033))"},"tls":{"client":{"version":"0303","random":"df7934df9ee8dd9c27a0d6ead5b2f47efc65cae8bfd546d18a7f5b7c825a221c","session_id":"5cde22c190030bf2f95a48be185a7d6b3cf82adf7bddb2feab3f6b5a159dc424","cipher_suites":"130213031301c02cc030009fcca9cca8ccaac02bc02f009ec024c028006bc023c0270067c00ac0140039c009c0130033009d009c003d003c0035002f00ff","compression_methods":"00","server_name":"adobe.com","session_ticket":"","features":"[\"0303\",\"130213031301c02cc030009fcca9cca8ccaac02bc02f009ec024c028006bc023c0270067c00ac0140039c009c0130033009d009c003d003c0035002f00ff\",[[\"0000\",\"000c00000961646f62652e636f6d\"],[\"000b\",\"03000102\"],[\"000a\",\"000a001d0017001e00190018\"],[\"0023\",\"\"],[\"0016\",\"\"],[\"0017\",\"\"],[\"000d\",\"002e040305030603080708080809080a080b080408050806040105010601030302030301020103020202040205020602\"],[\"002b\",\"080304030303020301\"],[\"002d\",\"0101\"],[\"0033\",\"0024001d0020d80b8a18cc803147148e087943847b3d267727668a757d71ba17e6ef21ee6f65\"]]]"}},"ip":{"version":4,"ttl":64,"id":"f821"},"src_ip":"192.168.113.237","dst_ip":"193.104.215.58","protocol":6,"src_port":60736,"dst_port":443,"event_start":1565200322.674115} +{"fingerprints":{"tls_server":"tls_server/(0303)(c030)((ff01)(000a000400020017)(000b00020100))"},"tls":{"server":{"certs":[{"base64":"MIIGLzCCBRegAwIBAgIQBLgdEPzovoRDZiFcyFagRzANBgkqhkiG9w0BAQsFADBNMQswCQYDVQQGEwJVUzEVMBMGA1UEChMMRGlnaUNlcnQgSW5jMScwJQYDVQQDEx5EaWdpQ2VydCBTSEEyIFNlY3VyZSBTZXJ2ZXIgQ0EwHhcNMTcxMjAxMDAwMDAwWhcNMTkxMjA2MTIwMDAwWjCBmjELMAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExETAPBgNVBAcTCFNhbiBKb3NlMSMwIQYDVQQKExpBZG9iZSBTeXN0ZW1zIEluY29ycG9yYXRlZDEhMB8GA1UECxMYSVQgTG9hZCBCYWxhbmNlciBTZXJ2aWNlMRswGQYDVQQDExJyZWRpcmVjdC5hZG9iZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDQ+AXhfq3SFNOkC/hISYptY/6WjBD8HyijBSxrMRcAk+k7CeE3LYMDzKZR8/Zir91LSgrDNI5XscKxdGHRC7kYHZpSLwGjkficBCOj+7RKhyzYErI6Q+M2NjeYz2+enCzFo2CLhymNDBHpzL1jTAokdOV1CB4oeo0WJoLNLXXG/H7QdNCpEgt1RwWO/xO6/ZAVyHe8UOHJ0xS09NXGVV/8prkTPtZZOyjEPdMxInYGWjuSCLcaRUE+1wfjSErUwiUOMWR2M1DjuunAy+tD0pXnWcR186H4iWQJ66bc0ihsm6zIo2v9b6cm0vvT+zV7zCNwMzrHrq8mYuA5lAQS0fLbAgMBAAGjggK7MIICtzAfBgNVHSMEGDAWgBQPgGEcgjFh1S8o541GOLQs4cbZ4jAdBgNVHQ4EFgQUVNfxXsNkIlFAdWmRw+BrlbXXo5owgf4GA1UdEQSB9jCB84IScmVkaXJlY3QuYWRvYmUuY29tghl0cmlnZ2VyY2FtcGFpZ24uYWRvYmUuY29tghJjYW1wYWlnbi5hZG9iZS5jb22CFnd3dy5lY2hvc2lnbi5hZG9iZS5jb22CEmVjaG9zaWduLmFkb2JlLmNvbYIVY29tbXVuaXRpZXMuYWRvYmUuY29tgg5lcmVnLmFkb2JlLmNvbYIWd3d3LmNyZWF0aXZlLmFkb2JlLmNvbYIJYWRvYmUuY29tghJ3aWtpZG9jcy5hZG9iZS5jb22CE3RyYW5zbGF0ZS5hZG9iZS5jb22CD3RydXN0LmFkb2JlLmNvbTAOBgNVHQ8BAf8EBAMCBaAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMGsGA1UdHwRkMGIwL6AtoCuGKWh0dHA6Ly9jcmwzLmRpZ2ljZXJ0LmNvbS9zc2NhLXNoYTItZzYuY3JsMC+gLaArhilodHRwOi8vY3JsNC5kaWdpY2VydC5jb20vc3NjYS1zaGEyLWc2LmNybDBMBgNVHSAERTBDMDcGCWCGSAGG/WwBATAqMCgGCCsGAQUFBwIBFhxodHRwczovL3d3dy5kaWdpY2VydC5jb20vQ1BTMAgGBmeBDAECAjB8BggrBgEFBQcBAQRwMG4wJAYIKwYBBQUHMAGGGGh0dHA6Ly9vY3NwLmRpZ2ljZXJ0LmNvbTBGBggrBgEFBQcwAoY6aHR0cDovL2NhY2VydHMuZGlnaWNlcnQuY29tL0RpZ2lDZXJ0U0hBMlNlY3VyZVNlcnZlckNBLmNydDAMBgNVHRMBAf8EAjAAMA0GCSqGSIb3DQEBCwUAA4IBAQB9/prkxMFbQ9c1ZU8AWEtaUYGrdBMxwUZ/0z3KJaQA26/tsaWnKmTE0819bNhbKzyNnBAJqY670FLLiNnH1uPhLtSKFIK08j6+3gNWV+b1xCsr62oOHaH30T3Z6l1X8mVhsESR77opxYH4qEPKbAijh8xR0nS9mGVTqtOj3sCqWgU3C4JysqHzVeoudR+EmJTGPDcXXiwijaBINOGw6S7/hwqikQQZ9UG3euBAIB9IGoDurpvMmuR+ElFtEZY+Vm3hDIePuM2EN6ahoYYSE4PATAlxDmiQ7Yst7BdCAEyzqxeELmguQ9UyxRWsw9LGy9ZyVt1znk8iiO5a17FT50uc"},{"base64":"MIIElDCCA3ygAwIBAgIQAf2j627KdciIQ4tyS8+8kTANBgkqhkiG9w0BAQsFADBhMQswCQYDVQQGEwJVUzEVMBMGA1UEChMMRGlnaUNlcnQgSW5jMRkwFwYDVQQLExB3d3cuZGlnaWNlcnQuY29tMSAwHgYDVQQDExdEaWdpQ2VydCBHbG9iYWwgUm9vdCBDQTAeFw0xMzAzMDgxMjAwMDBaFw0yMzAzMDgxMjAwMDBaME0xCzAJBgNVBAYTAlVTMRUwEwYDVQQKEwxEaWdpQ2VydCBJbmMxJzAlBgNVBAMTHkRpZ2lDZXJ0IFNIQTIgU2VjdXJlIFNlcnZlciBDQTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANyuWJBNwcQwFZA1W248ghX1LFy949v/cUP6ZCWA1O4Yok3wZtAKc24RmDYXZK83nf36QYSvx6+M/hpzTc8zl5CilodTgyu5pnVILR1WN3vaMTIa16yrBvSqXUu3R0bdKpPDkC55gIDvEwRqFDu1m5K+wgdlTvza/P96rtxcflUxDOg5B6TXvi/TC2rSsd9f/ld0Uzs1gN2ujkSYs58O09rg1/RrKatEp0tYhG2SS4HD2nOLEpdIkARFdRrdNzGXkujNVA075ME/OV4uuPNcfhCOhkEAjUVmR7ChZc6gqikJTvOX6+guqw9ypzAO+sf0/RR3w6RbKFfCs/mC/bdFWJsCAwEAAaOCAVowggFWMBIGA1UdEwEB/wQIMAYBAf8CAQAwDgYDVR0PAQH/BAQDAgGGMDQGCCsGAQUFBwEBBCgwJjAkBggrBgEFBQcwAYYYaHR0cDovL29jc3AuZGlnaWNlcnQuY29tMHsGA1UdHwR0MHIwN6A1oDOGMWh0dHA6Ly9jcmwzLmRpZ2ljZXJ0LmNvbS9EaWdpQ2VydEdsb2JhbFJvb3RDQS5jcmwwN6A1oDOGMWh0dHA6Ly9jcmw0LmRpZ2ljZXJ0LmNvbS9EaWdpQ2VydEdsb2JhbFJvb3RDQS5jcmwwPQYDVR0gBDYwNDAyBgRVHSAAMCowKAYIKwYBBQUHAgEWHGh0dHBzOi8vd3d3LmRpZ2ljZXJ0LmNvbS9DUFMwHQYDVR0OBBYEFA+AYRyCMWHVLyjnjUY4tCzhxtniMB8GA1UdIwQYMBaAFAPeUDVW0Uy7ZvCj4hsbw5eyPdFVMA0GCSqGSIb3DQEBCwUAA4IBAQAjPt9L0jFCpbZ+QlwaRMxp0Wi0XUvgBCFsS+JtzLHgl4+mUwnNqipl5TlPHoOlblyYoiQm5vuh7ZPHLgLGTUq/sELfeNqzqPlt/yGFUzZgTHbO7Djc1lGA8MXW5dRNJ2Srm8c+cftIl7gzbckTB+6WohsYFfZcTEDts8Ls/3HB40f/1LkAtDdC2iDJ6m6K7hQGrn2iWZiIqBtvLfTyyRRfJs8sjX7tN8Cp1Tm5gr8ZDOo0rwAhaPitc+LJMto4JQtV05od8GiG7S5BNO98pVAdvzr508EIDObtHopYJeS4d60tbvVS3bR0j6tJLp07kzQoH3jOlOrHvdPJbRzeXDLz"}],"version":"0303","random":"3cb9a232a937306d72aa5674ae726c52cc0e6b0b59541214a448547cc52ae901","selected_cipher_suite":"c030","compression_method":"00"}},"reassembly_properties":{"reassembled":true},"ip":{"version":4,"ttl":128,"id":"9a6b"},"src_ip":"193.104.215.58","dst_ip":"192.168.113.237","protocol":6,"src_port":443,"dst_port":60736,"event_start":1565200322.813848} +{"dns":{"base64":"N34BAAABAAAAAAAAA3d3dwVhZG9iZQNjb20AAAEAAQ=="},"ip":{"version":4,"ttl":64,"id":"cfed"},"src_ip":"192.168.113.237","dst_ip":"192.168.113.2","protocol":17,"src_port":34513,"dst_port":53,"event_start":1565200323.091225} +{"dns":{"base64":"LX8BAAABAAAAAAAAA3d3dwVhZG9iZQNjb20AABwAAQ=="},"ip":{"version":4,"ttl":64,"id":"cfee"},"src_ip":"192.168.113.237","dst_ip":"192.168.113.2","protocol":17,"src_port":58696,"dst_port":53,"event_start":1565200323.091384} +{"dns":{"base64":"N36BgAABAAQADQAEA3d3dwVhZG9iZQNjb20AAAEAAcAMAAUAAQAAAAUAKwxzc2wtZGVsaXZlcnkFYWRvYmUKY29tLWlvbi1jbgdlZGdla2V5A25ldADAKwAFAAEAAAAFAD8Mc3NsLWRlbGl2ZXJ5BWFkb2JlCmNvbS1pb24tY24HZWRnZWtleQNuZXQLZ2xvYmFscmVkaXIGYWthZG5zwFHAYgAFAAEAAAAFABgFZTc5MzMEZHNjYQpha2FtYWllZGdlwFHArQABAAEAAAAFAAS4MiOhwFEAAgABAAAABQARAWsMZ3RsZC1zZXJ2ZXJzwFHAUQACAAEAAAAFAAQBbcDjwFEAAgABAAAABQAEAWbA48BRAAIAAQAAAAUABAFnwOPAUQACAAEAAAAFAAQBasDjwFEAAgABAAAABQAEAWnA48BRAAIAAQAAAAUABAFowOPAUQACAAEAAAAFAAQBYcDjwFEAAgABAAAABQAEAWzA48BRAAIAAQAAAAUABAFiwOPAUQACAAEAAAAFAAQBY8DjwFEAAgABAAAABQAEAWXA48BRAAIAAQAAAAUABAFkwOPBXgABAAEAAAAFAATABQYewX4AAQABAAAABQAEwCEOHsGOAAEAAQAAAAUABMAaXB7BrgABAAEAAAAFAATAH1Ae"},"ip":{"version":4,"ttl":128,"id":"9a74"},"src_ip":"192.168.113.2","dst_ip":"192.168.113.237","protocol":17,"src_port":53,"dst_port":34513,"event_start":1565200323.137992} +{"dns":{"base64":"LX+BgAABAAUADAAAA3d3dwVhZG9iZQNjb20AABwAAcAMAAUAAQAAAAUAKwxzc2wtZGVsaXZlcnkFYWRvYmUKY29tLWlvbi1jbgdlZGdla2V5A25ldADAKwAFAAEAAAAFAD8Mc3NsLWRlbGl2ZXJ5BWFkb2JlCmNvbS1pb24tY24HZWRnZWtleQNuZXQLZ2xvYmFscmVkaXIGYWthZG5zwFHAYgAFAAEAAAAFABgFZTc5MzMEZHNjYQpha2FtYWllZGdlwFHArQAcAAEAAAAFABAmABQeAAIBkwAAAAAAAB79wK0AHAABAAAABQAQJgAUHgACAaUAAAAAAAAe/cC4AAIAAQAAAAUABgNsYTPAuMC4AAIAAQAAAAUACgduczYtMTk0wLjAuAACAAEAAAAFAAoHbnM3LTE5NMC4wLgAAgABAAAABQAJBmE2LTE5MsC4wLgAAgABAAAABQAKB25zNS0xOTTAuMC4AAIAAQAAAAUACgdhMTMtMTkywLjAuAACAAEAAAAFAAoHYTExLTE5MsC4wLgAAgABAAAABQAKB2EyOC0xOTLAuMC4AAIAAQAAAAUACgdhMTItMTkywLjAuAACAAEAAAAFAAkGYTEtMTkywLjAuAACAAEAAAAFAAcEbGFyMsC4wLgAAgABAAAABQAGA2xhMcC4"},"ip":{"version":4,"ttl":128,"id":"9a75"},"src_ip":"192.168.113.2","dst_ip":"192.168.113.237","protocol":17,"src_port":53,"dst_port":58696,"event_start":1565200323.187086} +{"fingerprints":{"tcp":"tcp/(40)()(40)(faf0)((020405b4)(04)(08)(01)(030307))"},"tcp":{"seq":3591224221,"timestamp":{"ts_val":1586469797}},"ip":{"version":4,"ttl":64,"id":"7c76"},"src_ip":"192.168.113.237","dst_ip":"184.50.35.161","protocol":6,"src_port":56932,"dst_port":443,"event_start":1565200323.187537} +{"fingerprints":{"tcp_server":"tcp_server/(40)()(80)(faf0)((020405b4))"},"tcp_server":{"seq":4252048381},"ip":{"version":4,"ttl":128,"id":"9a76"},"src_ip":"184.50.35.161","dst_ip":"192.168.113.237","protocol":6,"src_port":443,"dst_port":56932,"event_start":1565200323.227854} +{"fingerprints":{"tls":"tls/(0303)(130213031301c02cc030009fcca9cca8ccaac02bc02f009ec024c028006bc023c0270067c00ac0140039c009c0130033009d009c003d003c0035002f00ff)((0000)(000b000403000102)(000a000c000a001d0017001e00190018)(0023)(0016)(0017)(000d0030002e040305030603080708080809080a080b080408050806040105010601030302030301020103020202040205020602)(002b0009080304030303020301)(002d00020101)(0033))"},"tls":{"client":{"version":"0303","random":"dc01a04078883e4d20ce98d8307794d8c3f1d9ef1cf343df8a68cbc197dae866","session_id":"05822196ec8beefba36749d9e7e24c09a3160beb652f900d08ad9a2b5548bb93","cipher_suites":"130213031301c02cc030009fcca9cca8ccaac02bc02f009ec024c028006bc023c0270067c00ac0140039c009c0130033009d009c003d003c0035002f00ff","compression_methods":"00","server_name":"www.adobe.com","session_ticket":"","features":"[\"0303\",\"130213031301c02cc030009fcca9cca8ccaac02bc02f009ec024c028006bc023c0270067c00ac0140039c009c0130033009d009c003d003c0035002f00ff\",[[\"0000\",\"001000000d7777772e61646f62652e636f6d\"],[\"000b\",\"03000102\"],[\"000a\",\"000a001d0017001e00190018\"],[\"0023\",\"\"],[\"0016\",\"\"],[\"0017\",\"\"],[\"000d\",\"002e040305030603080708080809080a080b080408050806040105010601030302030301020103020202040205020602\"],[\"002b\",\"080304030303020301\"],[\"002d\",\"0101\"],[\"0033\",\"0024001d0020630f931821f5bdc7ead78e5a86f3ed13c4d45971aca1ed84eae8f4e5aed02e1f\"]]]"}},"ip":{"version":4,"ttl":64,"id":"7c78"},"src_ip":"192.168.113.237","dst_ip":"184.50.35.161","protocol":6,"src_port":56932,"dst_port":443,"event_start":1565200323.228088} +{"fingerprints":{"tls_server":"tls_server/(0303)(c030)((ff01)(0000)(000b000403000102)(0023))"},"tls":{"server":{"certs":[{"base64":"MIIGNzCCBR+gAwIBAgIQCg503M6e7LVhG69g0BbsbzANBgkqhkiG9w0BAQsFADBNMQswCQYDVQQGEwJVUzEVMBMGA1UEChMMRGlnaUNlcnQgSW5jMScwJQYDVQQDEx5EaWdpQ2VydCBTSEEyIFNlY3VyZSBTZXJ2ZXIgQ0EwHhcNMTgxMTA2MDAwMDAwWhcNMjAwMjA1MTIwMDAwWjB9MQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTERMA8GA1UEBxMIU2FuIEpvc2UxIzAhBgNVBAoTGkFkb2JlIFN5c3RlbXMgSW5jb3Jwb3JhdGVkMQswCQYDVQQLEwJJUzEUMBIGA1UEAwwLKi5hZG9iZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDxHy02hH5awt6eB0ZB5yfF3ZQO+955tDn+W6IfR+yLQFIi931YwkIxAM7M2VD1bm760h29lI6RiYFpiW0oPUnkt8zEpdayi2OHH5Ap6nQSDlEHW9BQpMXLBVep0HG6e8Qz2uiW84K8qlERWRBoDf7LZkJ+j3VGVPX50rD4BW1SjiHw5Hil+mb9tR6z2OMHFhoMYMYhOL4HSRnv3Nj4Xg1f1BfKwYVt4KZe1rnUmqJFVXk0iwdPv71JYh96Rj1CeaYCSG3PhL1CctmEtzfeVFX++kCM1PXeQsJtGEGiITu2FBBFzdheqTxdC9/LOnM9WgmqhVYoScwqo43O34sUx2oJAgMBAAGjggLhMIIC3TAfBgNVHSMEGDAWgBQPgGEcgjFh1S8o541GOLQs4cbZ4jAdBgNVHQ4EFgQUKL0O8nlF4pVkpaFcldo1cKl5FJQwIQYDVR0RBBowGIILKi5hZG9iZS5jb22CCWFkb2JlLmNvbTAOBgNVHQ8BAf8EBAMCBaAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMGsGA1UdHwRkMGIwL6AtoCuGKWh0dHA6Ly9jcmwzLmRpZ2ljZXJ0LmNvbS9zc2NhLXNoYTItZzYuY3JsMC+gLaArhilodHRwOi8vY3JsNC5kaWdpY2VydC5jb20vc3NjYS1zaGEyLWc2LmNybDBMBgNVHSAERTBDMDcGCWCGSAGG/WwBATAqMCgGCCsGAQUFBwIBFhxodHRwczovL3d3dy5kaWdpY2VydC5jb20vQ1BTMAgGBmeBDAECAjB8BggrBgEFBQcBAQRwMG4wJAYIKwYBBQUHMAGGGGh0dHA6Ly9vY3NwLmRpZ2ljZXJ0LmNvbTBGBggrBgEFBQcwAoY6aHR0cDovL2NhY2VydHMuZGlnaWNlcnQuY29tL0RpZ2lDZXJ0U0hBMlNlY3VyZVNlcnZlckNBLmNydDAJBgNVHRMEAjAAMIIBAwYKKwYBBAHWeQIEAgSB9ASB8QDvAHUApLkJkLQYWBSHuxOizGdwCjw1mAT5G9+443fNDsgN3BAAAAFm6OYBSAAABAMARjBEAiAGzoFtL3H38sDIqCoGUtHh+mft+u6+95qWVkiz6tckEAIgNIqKfTS1ssN9aslsQmNTqxw00g0VQRqLRx/yqDpOEmAAdgCHdb/nWXz4jEOZX73zbv9WjUdWNv9KtWDBtOr/XqCDDwAAAWbo5gIhAAAEAwBHMEUCIFCsSzZXC6mRE0/g7xTRXY94byQOwpjY13VAd0nv+VdIAiEA0hop7zM0YHyWGkiK1emLlPEj8tpv2L0uo/eC5AfqdMAwDQYJKoZIhvcNAQELBQADggEBAApznoYz6ONoMxctjevgb6j9S3Nne3QdHSbAHzQeYzClDxIJNp/Ob+38tShcMwpu2lBFb0QL3QNRwOZ5xQk4O0h+ul0t1YVDKJw9Mz2qwuOt4mUp+u764vmHDrvZxJxGQ/c6oTsm4biRKBZbI6PTXwz61DhsQ2jtWNATNGWDsdv6MS2F12blpNFdOVzXVOWRb+E7fbZC9VU0l760VFrYB/UuLJ7xb7+3fN04l1KFQE2wtfwdbVZEdYe72eNxIZDmIPxFFotlyzhdsWoGV3WGXTbjVzc3vb3SRQ3E4QTouANow1YA3wwRJWEarmiPN7L+P4sMrDAYF2im1b2YY2Iem+Y="},{"base64":"MIIElDCCA3ygAwIBAgIQAf2j627KdciIQ4tyS8+8kTANBgkqhkiG9w0BAQsFADBhMQswCQYDVQQGEwJVUzEVMBMGA1UEChMMRGlnaUNlcnQgSW5jMRkwFwYDVQQLExB3d3cuZGlnaWNlcnQuY29tMSAwHgYDVQQDExdEaWdpQ2VydCBHbG9iYWwgUm9vdCBDQTAeFw0xMzAzMDgxMjAwMDBaFw0yMzAzMDgxMjAwMDBaME0xCzAJBgNVBAYTAlVTMRUwEwYDVQQKEwxEaWdpQ2VydCBJbmMxJzAlBgNVBAMTHkRpZ2lDZXJ0IFNIQTIgU2VjdXJlIFNlcnZlciBDQTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANyuWJBNwcQwFZA1W248ghX1LFy949v/cUP6ZCWA1O4Yok3wZtAKc24RmDYXZK83nf36QYSvx6+M/hpzTc8zl5CilodTgyu5pnVILR1WN3vaMTIa16yrBvSqXUu3R0bdKpPDkC55gIDvEwRqFDu1m5K+wgdlTvza/P96rtxcflUxDOg5B6TXvi/TC2rSsd9f/ld0Uzs1gN2ujkSYs58O09rg1/RrKatEp0tYhG2SS4HD2nOLEpdIkARFdRrdNzGXkujNVA075ME/OV4uuPNcfhCOhkEAjUVmR7ChZc6gqikJTvOX6+guqw9ypzAO+sf0/RR3w6RbKFfCs/mC/bdFWJsCAwEAAaOCAVowggFWMBIGA1UdEwEB/wQIMAYBAf8CAQAwDgYDVR0PAQH/BAQDAgGGMDQGCCsGAQUFBwEBBCgwJjAkBggrBgEFBQcwAYYYaHR0cDovL29jc3AuZGlnaWNlcnQuY29tMHsGA1UdHwR0MHIwN6A1oDOGMWh0dHA6Ly9jcmwzLmRpZ2ljZXJ0LmNvbS9EaWdpQ2VydEdsb2JhbFJvb3RDQS5jcmwwN6A1oDOGMWh0dHA6Ly9jcmw0LmRpZ2ljZXJ0LmNvbS9EaWdpQ2VydEdsb2JhbFJvb3RDQS5jcmwwPQYDVR0gBDYwNDAyBgRVHSAAMCowKAYIKwYBBQUHAgEWHGh0dHBzOi8vd3d3LmRpZ2ljZXJ0LmNvbS9DUFMwHQYDVR0OBBYEFA+AYRyCMWHVLyjnjUY4tCzhxtniMB8GA1UdIwQYMBaAFAPeUDVW0Uy7ZvCj4hsbw5eyPdFVMA0GCSqGSIb3DQEBCwUAA4IBAQAjPt9L0jFCpbZ+QlwaRMxp0Wi0XUvgBCFsS+JtzLHgl4+mUwnNqipl5TlPHoOlblyYoiQm5vuh7ZPHLgLGTUq/sELfeNqzqPlt/yGFUzZgTHbO7Djc1lGA8MXW5dRNJ2Srm8c+cftIl7gzbckTB+6WohsYFfZcTEDts8Ls/3HB40f/1LkAtDdC2iDJ6m6K7hQGrn2iWZiIqBtvLfTyyRRfJs8sjX7tN8Cp1Tm5gr8ZDOo0rwAhaPitc+LJMto4JQtV05od8GiG7S5BNO98pVAdvzr508EIDObtHopYJeS4d60tbvVS3bR0j6tJLp07kzQoH3jOlOrHvdPJbRzeXDLz"}],"version":"0303","random":"f2a1328e6d17c0d21c2edc47828acfff0bf50d2516418292e92527b46e1799d5","selected_cipher_suite":"c030","compression_method":"00","session_ticket":""}},"reassembly_properties":{"reassembled":true},"ip":{"version":4,"ttl":128,"id":"9a7a"},"src_ip":"184.50.35.161","dst_ip":"192.168.113.237","protocol":6,"src_port":443,"dst_port":56932,"event_start":1565200323.270041} +{"dns":{"base64":"ZTwBAAABAAAAAAAAAmVuCXdpa2lwZWRpYQNvcmcAAAEAAQ=="},"ip":{"version":4,"ttl":64,"id":"d014"},"src_ip":"192.168.113.237","dst_ip":"192.168.113.2","protocol":17,"src_port":58038,"dst_port":53,"event_start":1565200323.465109} +{"dns":{"base64":"oo0BAAABAAAAAAAAAmVuCXdpa2lwZWRpYQNvcmcAABwAAQ=="},"ip":{"version":4,"ttl":64,"id":"d015"},"src_ip":"192.168.113.237","dst_ip":"192.168.113.2","protocol":17,"src_port":60058,"dst_port":53,"event_start":1565200323.465267} +{"dns":{"base64":"oo2BgAABAAIABgAMAmVuCXdpa2lwZWRpYQNvcmcAABwAAcAMAAUAAQAAAAUAEQRkeW5hCXdpa2ltZWRpYcAZwC4AHAABAAAABQAQJiAAAAhh7RoAAAAAAAAAAcAZAAIAAQAAAAUAFQJiMANvcmcLYWZpbGlhcy1uc3TAGcAZAAIAAQAAAAUABQJkMMBqwBkAAgABAAAABQAZAmEyA29yZwthZmlsaWFzLW5zdARpbmZvAMAZAAIAAQAAAAUABQJhMMCcwBkAAgABAAAABQAFAmMwwJzAGQACAAEAAAAFAAUCYjLAasC+AAEAAQAAAAUABMcTOAHAmQABAAEAAAAFAATH+XABwGcAAQABAAAABQAExxM2AcDgAAEAAQAAAAUABMf5eAHAzwABAAEAAAAFAATHEzUBwIgAAQABAAAABQAExxM5AcC+ABwAAQAAAAUAECABBQAADgAAAAAAAAAAAAHAmQAcAAEAAAAFABAgAQUAAEAAAAAAAAAAAAABwGcAHAABAAAABQAQIAEFAAAMAAAAAAAAAAAAAcDgABwAAQAAAAUAECABBQAASAAAAAAAAAAAAAHAzwAcAAEAAAAFABAgAQUAAAsAAAAAAAAAAAABwIgAHAABAAAABQAQIAEFAAAPAAAAAAAAAAAAAQ=="},"ip":{"version":4,"ttl":128,"id":"9ac9"},"src_ip":"192.168.113.2","dst_ip":"192.168.113.237","protocol":17,"src_port":53,"dst_port":60058,"event_start":1565200323.504307} +{"dns":{"base64":"ZTyBgAABAAIABgAKAmVuCXdpa2lwZWRpYQNvcmcAAAEAAcAMAAUAAQAAAAUAEQRkeW5hCXdpa2ltZWRpYcAZwC4AAQABAAAABQAE0FCa4MAZAAIAAQAAAAUAGQJhMANvcmcLYWZpbGlhcy1uc3QEaW5mbwDAGQACAAEAAAAFABUCYjIDb3JnC2FmaWxpYXMtbnN0wBnAGQACAAEAAAAFAAUCZDDAg8AZAAIAAQAAAAUABQJiMMCDwBkAAgABAAAABQAFAmMwwF7AGQACAAEAAAAFAAUCYTLAXsBbAAEAAQAAAAUABMcTOAHA1AABAAEAAAAFAATH+XABwMMAAQABAAAABQAExxM1AcChAAEAAQAAAAUABMcTOQHAWwAcAAEAAAAFABAgAQUAAA4AAAAAAAAAAAABwNQAHAABAAAABQAQIAEFAABAAAAAAAAAAAAAAcCyABwAAQAAAAUAECABBQAADAAAAAAAAAAAAAHAgAAcAAEAAAAFABAgAQUAAEgAAAAAAAAAAAABwMMAHAABAAAABQAQIAEFAAALAAAAAAAAAAAAAcChABwAAQAAAAUAECABBQAADwAAAAAAAAAAAAE="},"ip":{"version":4,"ttl":128,"id":"9aca"},"src_ip":"192.168.113.2","dst_ip":"192.168.113.237","protocol":17,"src_port":53,"dst_port":58038,"event_start":1565200323.504438} +{"fingerprints":{"tcp":"tcp/(40)()(40)(faf0)((020405b4)(04)(08)(01)(030307))"},"tcp":{"seq":3439207535,"timestamp":{"ts_val":1954736558}},"ip":{"version":4,"ttl":64,"id":"ec55"},"src_ip":"192.168.113.237","dst_ip":"208.80.154.224","protocol":6,"src_port":51360,"dst_port":443,"event_start":1565200323.504965} +{"fingerprints":{"tcp_server":"tcp_server/(40)()(80)(faf0)((020405b4))"},"tcp_server":{"seq":1013583992},"ip":{"version":4,"ttl":128,"id":"9acb"},"src_ip":"208.80.154.224","dst_ip":"192.168.113.237","protocol":6,"src_port":443,"dst_port":51360,"event_start":1565200323.548040} +{"fingerprints":{"tls":"tls/(0303)(130213031301c02cc030009fcca9cca8ccaac02bc02f009ec024c028006bc023c0270067c00ac0140039c009c0130033009d009c003d003c0035002f00ff)((0000)(000b000403000102)(000a000c000a001d0017001e00190018)(0023)(0016)(0017)(000d0030002e040305030603080708080809080a080b080408050806040105010601030302030301020103020202040205020602)(002b0009080304030303020301)(002d00020101)(0033))"},"tls":{"client":{"version":"0303","random":"29a6d65e8a914457b9a09e5e00eec3aba1a12aef8e6513e49a7cb0c902ac2cf3","session_id":"7d56638586c2d0f4769a5cfae81d9000e40113c134682fb636bc225926106322","cipher_suites":"130213031301c02cc030009fcca9cca8ccaac02bc02f009ec024c028006bc023c0270067c00ac0140039c009c0130033009d009c003d003c0035002f00ff","compression_methods":"00","server_name":"en.wikipedia.org","session_ticket":"","features":"[\"0303\",\"130213031301c02cc030009fcca9cca8ccaac02bc02f009ec024c028006bc023c0270067c00ac0140039c009c0130033009d009c003d003c0035002f00ff\",[[\"0000\",\"0013000010656e2e77696b6970656469612e6f7267\"],[\"000b\",\"03000102\"],[\"000a\",\"000a001d0017001e00190018\"],[\"0023\",\"\"],[\"0016\",\"\"],[\"0017\",\"\"],[\"000d\",\"002e040305030603080708080809080a080b080408050806040105010601030302030301020103020202040205020602\"],[\"002b\",\"080304030303020301\"],[\"002d\",\"0101\"],[\"0033\",\"0024001d0020e4eb77be4c7492c02105cdc0d48f89179ef37f27b3366f2860c120183e546d58\"]]]"}},"ip":{"version":4,"ttl":64,"id":"ec57"},"src_ip":"192.168.113.237","dst_ip":"208.80.154.224","protocol":6,"src_port":51360,"dst_port":443,"event_start":1565200323.548513} +{"fingerprints":{"tls_server":"tls_server/(0303)(cca9)((ff01)(000b000403000102)(0017))"},"tls":{"server":{"certs":[{"base64":"MIIIMTCCBxmgAwIBAgIMFkDF1F0uxNlMfXxqMA0GCSqGSIb3DQEBCwUAMGYxCzAJBgNVBAYTAkJFMRkwFwYDVQQKExBHbG9iYWxTaWduIG52LXNhMTwwOgYDVQQDEzNHbG9iYWxTaWduIE9yZ2FuaXphdGlvbiBWYWxpZGF0aW9uIENBIC0gU0hBMjU2IC0gRzIwHhcNMTgxMTA4MjEyMTA0WhcNMTkxMTIyMDc1OTU5WjB5MQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZyYW5jaXNjbzEjMCEGA1UEChMaV2lraW1lZGlhIEZvdW5kYXRpb24sIEluYy4xGDAWBgNVBAMMDyoud2lraXBlZGlhLm9yZzBZMBMGByqGSM49AgEGCCqGSM49AwEHA0IABGd1rS7GauMxJ15BmViShjVMjwQJNjjw+OUhnIaqE5QF/q6c/LIvVh4N3473a7J52JcfmlfCrXvDthHzaZNEneKjggWVMIIFkTAOBgNVHQ8BAf8EBAMCA4gwgaAGCCsGAQUFBwEBBIGTMIGQME0GCCsGAQUFBzAChkFodHRwOi8vc2VjdXJlLmdsb2JhbHNpZ24uY29tL2NhY2VydC9nc29yZ2FuaXphdGlvbnZhbHNoYTJnMnIxLmNydDA/BggrBgEFBQcwAYYzaHR0cDovL29jc3AyLmdsb2JhbHNpZ24uY29tL2dzb3JnYW5pemF0aW9udmFsc2hhMmcyMFYGA1UdIARPME0wQQYJKwYBBAGgMgEUMDQwMgYIKwYBBQUHAgEWJmh0dHBzOi8vd3d3Lmdsb2JhbHNpZ24uY29tL3JlcG9zaXRvcnkvMAgGBmeBDAECAjAJBgNVHRMEAjAAMEkGA1UdHwRCMEAwPqA8oDqGOGh0dHA6Ly9jcmwuZ2xvYmFsc2lnbi5jb20vZ3MvZ3Nvcmdhbml6YXRpb252YWxzaGEyZzIuY3JsMIICxQYDVR0RBIICvDCCAriCDyoud2lraXBlZGlhLm9yZ4INd2lraW1lZGlhLm9yZ4INbWVkaWF3aWtpLm9yZ4INd2lraWJvb2tzLm9yZ4IMd2lraWRhdGEub3Jnggx3aWtpbmV3cy5vcmeCDXdpa2lxdW90ZS5vcmeCDndpa2lzb3VyY2Uub3Jngg93aWtpdmVyc2l0eS5vcmeCDndpa2l2b3lhZ2Uub3Jngg53aWt0aW9uYXJ5Lm9yZ4IXd2lraW1lZGlhZm91bmRhdGlvbi5vcmeCBncud2lraYISd21mdXNlcmNvbnRlbnQub3JnghEqLm0ud2lraXBlZGlhLm9yZ4IPKi53aWtpbWVkaWEub3JnghEqLm0ud2lraW1lZGlhLm9yZ4IWKi5wbGFuZXQud2lraW1lZGlhLm9yZ4IPKi5tZWRpYXdpa2kub3JnghEqLm0ubWVkaWF3aWtpLm9yZ4IPKi53aWtpYm9va3Mub3JnghEqLm0ud2lraWJvb2tzLm9yZ4IOKi53aWtpZGF0YS5vcmeCECoubS53aWtpZGF0YS5vcmeCDioud2lraW5ld3Mub3JnghAqLm0ud2lraW5ld3Mub3Jngg8qLndpa2lxdW90ZS5vcmeCESoubS53aWtpcXVvdGUub3JnghAqLndpa2lzb3VyY2Uub3JnghIqLm0ud2lraXNvdXJjZS5vcmeCESoud2lraXZlcnNpdHkub3JnghMqLm0ud2lraXZlcnNpdHkub3JnghAqLndpa2l2b3lhZ2Uub3JnghIqLm0ud2lraXZveWFnZS5vcmeCECoud2lrdGlvbmFyeS5vcmeCEioubS53aWt0aW9uYXJ5Lm9yZ4IZKi53aWtpbWVkaWFmb3VuZGF0aW9uLm9yZ4IUKi53bWZ1c2VyY29udGVudC5vcmeCDXdpa2lwZWRpYS5vcmcwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMB0GA1UdDgQWBBSt4NNfC33t2i98DfZjjYpZGMJsijAfBgNVHSMEGDAWgBSW3mHxvRwWKVMcwMx9O4MAQOYafDCCAQQGCisGAQQB1nkCBAIEgfUEgfIA8AB2AKS5CZC0GFgUh7sTosxncAo8NZgE+RvfuON3zQ7IDdwQAAABZvUzN/YAAAQDAEcwRQIgBATdvSzbd5NwGdtkmJ5SEvEPn6A8hgAsk6GSP6hzWcgCIQDKfHQNtObs/hHPfLgXsVkcnHIbjlNwmWeiukGtGHZFMgB2AG9Tdqwx8DEZ2JkApFEV/3cVHBHZAsEAKQaNsgiaN9kTAAABZvUzN8cAAAQDAEcwRQIgYalEnXtd/fPhjq9SXPoSPRhaMmeDs0IMN5o5Y6QTKfUCIQClR1uj+B56K4tGh/mws4qugG1qSD9zfvmx8roKik3HHDANBgkqhkiG9w0BAQsFAAOCAQEAUEJyg/AZo+owG5J/LIk8EIDnyOcanmfgvdjMg8KnpBvh8l3Wb4HmOudluJhIeIbCUMwzEzSGqYQQ78n4wtjLaLwaDgL4WzHOVec2k+rbfmPT6MUCtdlz1PK5/WY9JQyQq6vy+tm3a6Wijy6M8U/TdrJubK5X03SFfRb0pDuFdr2fnkctLRnyCb1w0XHwGXjEcGm1LY42YKwdvbj3WIqumeSEuG4MZtquW6NURKELSil03G/hRHRAHHGx3zXes/jJcpH2GPX9eY9B+R1oHmCE2QF5Y/Bh+uNA2+2Iuj/6UJAOw/Z/8+qZcnLWWnK2Dwzc34C/AUD+Wb71oUcr60+pPg=="},{"base64":"MIIEYjCCA0qgAwIBAgILBAAAAAABMYnGRMkwDQYJKoZIhvcNAQELBQAwTDEgMB4GA1UECxMXR2xvYmFsU2lnbiBSb290IENBIC0gUjMxEzARBgNVBAoTCkdsb2JhbFNpZ24xEzARBgNVBAMTCkdsb2JhbFNpZ24wHhcNMTEwODAyMTAwMDAwWhcNMjIwODAyMTAwMDAwWjBmMQswCQYDVQQGEwJCRTEZMBcGA1UEChMQR2xvYmFsU2lnbiBudi1zYTE8MDoGA1UEAxMzR2xvYmFsU2lnbiBPcmdhbml6YXRpb24gVmFsaWRhdGlvbiBDQSAtIFNIQTI1NiAtIEcyMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAxw5sPyOTf8xwpZ0gww5TP37ATsKYScpH1SPvAzSFdMijAi5GXAt9yYidT4vw+JxsjFU127/ys+r741bnSkbZEyLKNtWbwajjlkOT8gy85vnm6JnIY0h4f1c2aRoZHVrR1H3CnNR/4YASrnrqiOpX2MoKCjoSSaJiGXoNJPc367RzknsFI5sStc7rKd+kFAK5AaXUppxDZIje+H7+4/Ue5f7co6jkZjHZTCXpGLmJWQmu6Z0cbTcPSh41ICjir9QhiwHERa1uK2OrkmthCk0g7XO6fM7+FrXbn4Dw1ots2Qh5Sk94ZdqSvL41+bPE+SeATv+WUuYCIOEHc+ldK72y8QIDAQABo4IBKTCCASUwDgYDVR0PAQH/BAQDAgEGMBIGA1UdEwEB/wQIMAYBAf8CAQAwHQYDVR0OBBYEFJbeYfG9HBYpUxzAzH07gwBA5hp8MEcGA1UdIARAMD4wPAYEVR0gADA0MDIGCCsGAQUFBwIBFiZodHRwczovL3d3dy5nbG9iYWxzaWduLmNvbS9yZXBvc2l0b3J5LzA2BgNVHR8ELzAtMCugKaAnhiVodHRwOi8vY3JsLmdsb2JhbHNpZ24ubmV0L3Jvb3QtcjMuY3JsMD4GCCsGAQUFBwEBBDIwMDAuBggrBgEFBQcwAYYiaHR0cDovL29jc3AyLmdsb2JhbHNpZ24uY29tL3Jvb3RyMzAfBgNVHSMEGDAWgBSP8Et/qC5FJK5NUPpjmove4t0bvDANBgkqhkiG9w0BAQsFAAOCAQEAugYpwLQZjCERwJQRnrs91NVDQPafuyULI2i1Gvf6VGTMKxP5IfBEreHoFVjb7v3bok3MGI8Nmm3DawGhMfCNvABAzDlfh2FRbfSV6uoVNT5AhcBi1aE0/niqqLJaOfM3Qfuc6D5xSlvr+GlYoeDGk3fpumeS62VYkHBzQn2v9CMmeReq+qS7meVEb2WB58rrVcj0ticRIXSUvGu3dGIpxM2uR/LmQlt4hgVhy5CqeYnfBH6xJnBLjUAfhHvA+wfmyLdOkfQ1A+3o60EQF0m0YsinLPLhTI8DLPMWN11n8aQ5eUmjwF3MVfkhgA/7zuIpalhQ6abX6xwyNrVip8H65g=="}],"version":"0303","random":"1bf2993a23632c1bd464b4440c7973193c8defd6773a17762e677429b06f7aa6","selected_cipher_suite":"cca9","compression_method":"00"}},"reassembly_properties":{"reassembled":true},"ip":{"version":4,"ttl":128,"id":"9acf"},"src_ip":"208.80.154.224","dst_ip":"192.168.113.237","protocol":6,"src_port":443,"dst_port":51360,"event_start":1565200323.593859} +{"dns":{"base64":"YvYBAAABAAAAAAAABml0dW5lcwVhcHBsZQNjb20AAAEAAQ=="},"ip":{"version":4,"ttl":64,"id":"d039"},"src_ip":"192.168.113.237","dst_ip":"192.168.113.2","protocol":17,"src_port":52922,"dst_port":53,"event_start":1565200323.996782} +{"dns":{"base64":"wOABAAABAAAAAAAABml0dW5lcwVhcHBsZQNjb20AABwAAQ=="},"ip":{"version":4,"ttl":64,"id":"d03a"},"src_ip":"192.168.113.237","dst_ip":"192.168.113.2","protocol":17,"src_port":51162,"dst_port":53,"event_start":1565200323.996974} +{"dns":{"base64":"YvaBgAABAAQADQAHBml0dW5lcwVhcHBsZQNjb20AAAEAAcAMAAUAAQAAAAUAKAppdHVuZXMtY2RuDGl0dW5lcy1hcHBsZQNjb20GYWthZG5zA25ldADALgAFAAEAAAAFABsGaXR1bmVzBWFwcGxlA2NvbQdlZGdla2V5wFHAYgAFAAEAAAAFABgEZTY3MwVkc2NlOQpha2FtYWllZGdlwFHAiQABAAEAAAAFAAS4MvbFwFEAAgABAAAABQARAWsMZ3RsZC1zZXJ2ZXJzwFHAUQACAAEAAAAFAAQBZcC/wFEAAgABAAAABQAEAW3Av8BRAAIAAQAAAAUABAFhwL/AUQACAAEAAAAFAAQBZsC/wFEAAgABAAAABQAEAWrAv8BRAAIAAQAAAAUABAFowL/AUQACAAEAAAAFAAQBZ8C/wFEAAgABAAAABQAEAWnAv8BRAAIAAQAAAAUABAFiwL/AUQACAAEAAAAFAAQBZMC/wFEAAgABAAAABQAEAWPAv8BRAAIAAQAAAAUABAFswL/A+gABAAEAAAAFAATABQYewVoAAQABAAAABQAEwCEOHsF6AAEAAQAAAAUABMAaXB7BagABAAEAAAAFAATAH1AewNoAAQABAAAABQAEwAxeHsEKAAEAAQAAAAUABMAjMx7BOgABAAEAAAAFAATAKl0e"},"ip":{"version":4,"ttl":128,"id":"9b18"},"src_ip":"192.168.113.2","dst_ip":"192.168.113.237","protocol":17,"src_port":53,"dst_port":52922,"event_start":1565200324.034333} +{"dns":{"base64":"wOCBgAABAAYADQACBml0dW5lcwVhcHBsZQNjb20AABwAAcAMAAUAAQAAAAUAKAppdHVuZXMtY2RuDGl0dW5lcy1hcHBsZQNjb20GYWthZG5zA25ldADALgAFAAEAAAAFABsGaXR1bmVzBWFwcGxlA2NvbQdlZGdla2V5wFHAYgAFAAEAAAAFABgEZTY3MwVkc2NlOQpha2FtYWllZGdlwFHAiQAcAAEAAAAFABAmABQeAAIBigAAAAAAAAKhwIkAHAABAAAABQAQJgAUHgACAYgAAAAAAAACocCJABwAAQAAAAUAECYAFB4AAgGJAAAAAAAAAqHAUQACAAEAAAAFABEBagxndGxkLXNlcnZlcnPAUcBRAAIAAQAAAAUABAFiwQPAUQACAAEAAAAFAAQBbMEDwFEAAgABAAAABQAEAWjBA8BRAAIAAQAAAAUABAFpwQPAUQACAAEAAAAFAAQBZcEDwFEAAgABAAAABQAEAWPBA8BRAAIAAQAAAAUABAFmwQPAUQACAAEAAAAFAAQBZ8EDwFEAAgABAAAABQAEAWvBA8BRAAIAAQAAAAUABAFtwQPAUQACAAEAAAAFAAQBYcEDwFEAAgABAAAABQAEAWTBA8G+AAEAAQAAAAUABMAFBh7BHgABAAEAAAAFAATAIQ4e"},"ip":{"version":4,"ttl":128,"id":"9b19"},"src_ip":"192.168.113.2","dst_ip":"192.168.113.237","protocol":17,"src_port":53,"dst_port":51162,"event_start":1565200324.034356} +{"fingerprints":{"tcp":"tcp/(40)()(40)(faf0)((020405b4)(04)(08)(01)(030307))"},"tcp":{"seq":2178676307,"timestamp":{"ts_val":3000943747}},"ip":{"version":4,"ttl":64,"id":"3eec"},"src_ip":"192.168.113.237","dst_ip":"184.50.246.197","protocol":6,"src_port":46026,"dst_port":443,"event_start":1565200324.035181} +{"fingerprints":{"tcp_server":"tcp_server/(40)()(80)(faf0)((020405b4))"},"tcp_server":{"seq":2523962835},"ip":{"version":4,"ttl":128,"id":"9b1a"},"src_ip":"184.50.246.197","dst_ip":"192.168.113.237","protocol":6,"src_port":443,"dst_port":46026,"event_start":1565200324.068083} +{"fingerprints":{"tls":"tls/(0303)(130213031301c02cc030009fcca9cca8ccaac02bc02f009ec024c028006bc023c0270067c00ac0140039c009c0130033009d009c003d003c0035002f00ff)((0000)(000b000403000102)(000a000c000a001d0017001e00190018)(0023)(0016)(0017)(000d0030002e040305030603080708080809080a080b080408050806040105010601030302030301020103020202040205020602)(002b0009080304030303020301)(002d00020101)(0033))"},"tls":{"client":{"version":"0303","random":"e8587d959a5ed9b9cb6057c679034ce1a052ac1c215b8b9903cb3aa0d00019ae","session_id":"93a845e708aefaded517f86d6703f93ef184538eedea60211e803cb75cf0d7fd","cipher_suites":"130213031301c02cc030009fcca9cca8ccaac02bc02f009ec024c028006bc023c0270067c00ac0140039c009c0130033009d009c003d003c0035002f00ff","compression_methods":"00","server_name":"itunes.apple.com","session_ticket":"","features":"[\"0303\",\"130213031301c02cc030009fcca9cca8ccaac02bc02f009ec024c028006bc023c0270067c00ac0140039c009c0130033009d009c003d003c0035002f00ff\",[[\"0000\",\"00130000106974756e65732e6170706c652e636f6d\"],[\"000b\",\"03000102\"],[\"000a\",\"000a001d0017001e00190018\"],[\"0023\",\"\"],[\"0016\",\"\"],[\"0017\",\"\"],[\"000d\",\"002e040305030603080708080809080a080b080408050806040105010601030302030301020103020202040205020602\"],[\"002b\",\"080304030303020301\"],[\"002d\",\"0101\"],[\"0033\",\"0024001d00208770101eaeb3548b8b17443ae8696b9ad326dcbdbb9cb23686eebafab77b730b\"]]]"}},"ip":{"version":4,"ttl":64,"id":"3eee"},"src_ip":"192.168.113.237","dst_ip":"184.50.246.197","protocol":6,"src_port":46026,"dst_port":443,"event_start":1565200324.068345} +{"fingerprints":{"tls_server":"tls_server/(0303)(1302)((002b00020304)(0033))"},"tls":{"server":{"version":"0303","random":"e6d40ebc4d9bad4b77a0c3712a2ca431353afc191394a1cea3d72793581c7f9d","selected_cipher_suite":"1302","compression_method":"00"}},"ip":{"version":4,"ttl":128,"id":"9b1c"},"src_ip":"184.50.246.197","dst_ip":"192.168.113.237","protocol":6,"src_port":443,"dst_port":46026,"event_start":1565200324.110532} +{"fingerprints":{"tcp":"tcp/(40)()(40)(faf0)((020405b4)(04)(08)(01)(030307))"},"tcp":{"seq":605380874,"timestamp":{"ts_val":854238022}},"ip":{"version":4,"ttl":64,"id":"a9f7"},"src_ip":"192.168.113.237","dst_ip":"17.178.96.59","protocol":6,"src_port":47972,"dst_port":443,"event_start":1565200324.284597} +{"fingerprints":{"tcp_server":"tcp_server/(40)()(80)(faf0)((020405b4))"},"tcp_server":{"seq":4058164071},"ip":{"version":4,"ttl":128,"id":"9b2a"},"src_ip":"17.178.96.59","dst_ip":"192.168.113.237","protocol":6,"src_port":443,"dst_port":47972,"event_start":1565200324.382099} +{"fingerprints":{"tls":"tls/(0303)(130213031301c02cc030009fcca9cca8ccaac02bc02f009ec024c028006bc023c0270067c00ac0140039c009c0130033009d009c003d003c0035002f00ff)((0000)(000b000403000102)(000a000c000a001d0017001e00190018)(0023)(0016)(0017)(000d0030002e040305030603080708080809080a080b080408050806040105010601030302030301020103020202040205020602)(002b0009080304030303020301)(002d00020101)(0033))"},"tls":{"client":{"version":"0303","random":"66ad7141465d8be5d32fcdab725f057485d4cd38f9a74e80beb1fb284e588ec3","session_id":"17f0d996a1820a0ffeed614203a1d2470b4d23c8b1a72b1cd509e292e1bab498","cipher_suites":"130213031301c02cc030009fcca9cca8ccaac02bc02f009ec024c028006bc023c0270067c00ac0140039c009c0130033009d009c003d003c0035002f00ff","compression_methods":"00","server_name":"apple.com","session_ticket":"","features":"[\"0303\",\"130213031301c02cc030009fcca9cca8ccaac02bc02f009ec024c028006bc023c0270067c00ac0140039c009c0130033009d009c003d003c0035002f00ff\",[[\"0000\",\"000c0000096170706c652e636f6d\"],[\"000b\",\"03000102\"],[\"000a\",\"000a001d0017001e00190018\"],[\"0023\",\"\"],[\"0016\",\"\"],[\"0017\",\"\"],[\"000d\",\"002e040305030603080708080809080a080b080408050806040105010601030302030301020103020202040205020602\"],[\"002b\",\"080304030303020301\"],[\"002d\",\"0101\"],[\"0033\",\"0024001d00201bb8cbeec336637a43d044af887fb9b7bf4b09fdd3769ffe7199e6e6c549a20d\"]]]"}},"ip":{"version":4,"ttl":64,"id":"a9f9"},"src_ip":"192.168.113.237","dst_ip":"17.178.96.59","protocol":6,"src_port":47972,"dst_port":443,"event_start":1565200324.382348} +{"fingerprints":{"tls_server":"tls_server/(0303)(c02f)((000b00020100))"},"tls":{"server":{"certs":[{"base64":"MIIH8zCCBtugAwIBAgIQCntZYuAq75f9bqCozf4GOzANBgkqhkiG9w0BAQsFADB1MQswCQYDVQQGEwJVUzEVMBMGA1UEChMMRGlnaUNlcnQgSW5jMRkwFwYDVQQLExB3d3cuZGlnaWNlcnQuY29tMTQwMgYDVQQDEytEaWdpQ2VydCBTSEEyIEV4dGVuZGVkIFZhbGlkYXRpb24gU2VydmVyIENBMB4XDTE5MDcyMDAwMDAwMFoXDTIwMDcyMDEyMDAwMFowgeMxHTAbBgNVBA8MFFByaXZhdGUgT3JnYW5pemF0aW9uMRMwEQYLKwYBBAGCNzwCAQMTAlVTMRswGQYLKwYBBAGCNzwCAQITCkNhbGlmb3JuaWExETAPBgNVBAUTCEMwODA2NTkyMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTESMBAGA1UEBxMJQ3VwZXJ0aW5vMRMwEQYDVQQKEwpBcHBsZSBJbmMuMRowGAYDVQQLExFJbnRlcm5ldCBTZXJ2aWNlczEWMBQGA1UEAxMNd3d3LmFwcGxlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAOJVaWbq7ReuQNs4LNpYlxNwolxVkFREluDtvvHdC0dEGXxyl1Htd77fa3WdGsXrckZm/WA6OrGFDi0oxqGsmzqt8UhoL/8u0cMtLo22L3SakDlZNVdsZzHfuWwRkYRWiazWn8y90SECimUDM71NfqdrZAmYtWTah/EIeH0c4W3bv1ZD9qbXlGog3rlqTY2oi2faxAZuTJY2snOgnX50LvNUiHo5IzUuweD/dhPun02Y6hUd0FIJQ4ekA+CtBsf7Ji2Sc42nXeGtiW+0WYsmLzTxSnPdUcp+ad8S9ndCeWokM6dl3Iv177dJIn4aQ71x1TgagkjBYZ1GWjFo2hcbKJ0CAwEAAaOCBA4wggQKMB8GA1UdIwQYMBaAFD3TUKXWoK3u80pgCmXTIdT4+NYPMB0GA1UdDgQWBBT2nT+05RGAUUXkbIsK8871kncHUjCCATYGA1UdEQSCAS0wggEpghRleHRlbnNpb25zLmFwcGxlLmNvbYISZmVlZGJhY2suYXBwbGUuY29tghFnZW5zZXJ2LmFwcGxlLmNvbYIOaGVscC5hcHBsZS5jb22CEWhlbHBvc3guYXBwbGUuY29tghBoZWxwcXQuYXBwbGUuY29tghBpbWFnZXMuYXBwbGUuY29tghdpdHVuZXNwYXJ0bmVyLmFwcGxlLmNvbYIRcHJvaGVscC5hcHBsZS5jb22CEHJlYmF0ZS5hcHBsZS5jb22CG3NhZmFyaS1leHRlbnNpb25zLmFwcGxlLmNvbYIadHJhY2tpbmdzaGlwbWVudC5hcHBsZS5jb22CEnRyYWlsZXJzLmFwcGxlLmNvbYIJYXBwbGUuY29tgg13d3cuYXBwbGUuY29tMA4GA1UdDwEB/wQEAwIFoDAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwdQYDVR0fBG4wbDA0oDKgMIYuaHR0cDovL2NybDMuZGlnaWNlcnQuY29tL3NoYTItZXYtc2VydmVyLWcyLmNybDA0oDKgMIYuaHR0cDovL2NybDQuZGlnaWNlcnQuY29tL3NoYTItZXYtc2VydmVyLWcyLmNybDBLBgNVHSAERDBCMDcGCWCGSAGG/WwCATAqMCgGCCsGAQUFBwIBFhxodHRwczovL3d3dy5kaWdpY2VydC5jb20vQ1BTMAcGBWeBDAEBMIGIBggrBgEFBQcBAQR8MHowJAYIKwYBBQUHMAGGGGh0dHA6Ly9vY3NwLmRpZ2ljZXJ0LmNvbTBSBggrBgEFBQcwAoZGaHR0cDovL2NhY2VydHMuZGlnaWNlcnQuY29tL0RpZ2lDZXJ0U0hBMkV4dGVuZGVkVmFsaWRhdGlvblNlcnZlckNBLmNydDAJBgNVHRMEAjAAMIIBAwYKKwYBBAHWeQIEAgSB9ASB8QDvAHYApLkJkLQYWBSHuxOizGdwCjw1mAT5G9+443fNDsgN3BAAAAFsDybfogAABAMARzBFAiANYeCK4RsTjJyWm00Myizu96qqHAW1JHwjyO7TihtGiQIhAIzHukiG871pfYoOc2B2JqRwcH+BkLZVkCkIfTcrDl9LAHUAVhQGmi/XwuzT9eG9RLI+x0Z2ubyZEVzA75SYVdaJ0N0AAAFsDybf4AAABAMARjBEAiA+YJNS/bLKIyT+cpt9NtxKSQSW4/ctVA7wcTBjv2jlLQIgLKt5ld2x1FFDSjldkX+u/mfaIzk8apZ9F/lJeTTf3KIwDQYJKoZIhvcNAQELBQADggEBAGcYjzS/MA7CsV+3FgW5qoz7hNp3M1H1kha1PipJY32edcbWR6DhraZwpb1xfcB8NCIi6IZ/66rhMQvljs4eK5dGMDD25qMeWnFxeby6eqvGig7deN2vZkUoqMElv+WTDwZMy+W+QxZWgRzi5u0x/oM3iIAdSjZ2Oihb7QLMj4li+cIEXv70G8DftG5W7za1+lgySo9kK72mKwbmAr5OEDirSatO9MINGFFqVlIzP1z87wqenvj/13NYjHILzAzhkMlhA2EynbpnoJHlrjLlCOe+HMz1PGzvTa7sA4eBJ0vhcolQ8Tg0K01oglkzQpg3PENgk2pJWaToKO2SB1C7Dgo="},{"base64":"MIIEtjCCA56gAwIBAgIQDHmpRLCMEZUgkmFf4msdgzANBgkqhkiG9w0BAQsFADBsMQswCQYDVQQGEwJVUzEVMBMGA1UEChMMRGlnaUNlcnQgSW5jMRkwFwYDVQQLExB3d3cuZGlnaWNlcnQuY29tMSswKQYDVQQDEyJEaWdpQ2VydCBIaWdoIEFzc3VyYW5jZSBFViBSb290IENBMB4XDTEzMTAyMjEyMDAwMFoXDTI4MTAyMjEyMDAwMFowdTELMAkGA1UEBhMCVVMxFTATBgNVBAoTDERpZ2lDZXJ0IEluYzEZMBcGA1UECxMQd3d3LmRpZ2ljZXJ0LmNvbTE0MDIGA1UEAxMrRGlnaUNlcnQgU0hBMiBFeHRlbmRlZCBWYWxpZGF0aW9uIFNlcnZlciBDQTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANdTpARR+JmmFkhLZyeqk0nQOe0MsLAAh/FnKIaFjI5j2ryxQDji0/XspQUYuD0+xZkXMuwYjPrxDKZkIYXLBxA0sFKIKx9om9KxjxKws9LniB8f7zh3VFNfgHk/LhqqqB5LKw2rt2O5Nbd9FLxZS99RStKh4gzikIKHaq7q12TWmFXo/a8aUGxUvBHy/Urynbt/DvTVvo4WiRJV2MBxNO723C3sxIclho3YIeSwTQyJ3DkmF93215SF2AQhcJ1vb/9cuhnhRctWVyh+HA1BV6q3uCe7seT6Ku8hI3UarS2bhjWMnHe1c63YlC3k8wyd7sFOYn4XwHGeLN7x+RAoGTMCAwEAAaOCAUkwggFFMBIGA1UdEwEB/wQIMAYBAf8CAQAwDgYDVR0PAQH/BAQDAgGGMB0GA1UdJQQWMBQGCCsGAQUFBwMBBggrBgEFBQcDAjA0BggrBgEFBQcBAQQoMCYwJAYIKwYBBQUHMAGGGGh0dHA6Ly9vY3NwLmRpZ2ljZXJ0LmNvbTBLBgNVHR8ERDBCMECgPqA8hjpodHRwOi8vY3JsNC5kaWdpY2VydC5jb20vRGlnaUNlcnRIaWdoQXNzdXJhbmNlRVZSb290Q0EuY3JsMD0GA1UdIAQ2MDQwMgYEVR0gADAqMCgGCCsGAQUFBwIBFhxodHRwczovL3d3dy5kaWdpY2VydC5jb20vQ1BTMB0GA1UdDgQWBBQ901Cl1qCt7vNKYApl0yHU+PjWDzAfBgNVHSMEGDAWgBSxPsNpA/i/RwHUmCYaCALvY2QrwzANBgkqhkiG9w0BAQsFAAOCAQEAnbbQkIbhhgLtxaDwNBx0wY12zIYKqPBKikLWP8ipTa18CK3mtlC4ohpNiAexKSHc59rGPCHg4xFJcKx6HQGkyhE6V6t9VypAdP3THYUYUN9XR3WhfVUgLkc3UHKMf4Ib0mKPLQNa2sPIoc4sUqIAY+tzunHISScjl2SFnjgOrWNoPLpSgVh5oywM395t6zHyuqB8bPEs1OG9d4Q3A84ytciagRpKkk47RpqF/oOi+Z6Mo8wNXrM9zwR4jxQUezKcxwCmXMS1oVWNWlZopCJwqjyBcdmdqEU79OX2olHdx3ti6G8MdOu42vi/hw15UJGQmxg7kVkn8TUoE6smftX3eg=="}],"version":"0303","random":"5d4b0fc4b4d3461cc5bb6f3fbf44cf046316b038b1292a3acd72eacb64cb36ef","selected_cipher_suite":"c02f","compression_method":"00"}},"reassembly_properties":{"reassembled":true},"ip":{"version":4,"ttl":128,"id":"9b2e"},"src_ip":"17.178.96.59","dst_ip":"192.168.113.237","protocol":6,"src_port":443,"dst_port":47972,"event_start":1565200324.478364} +{"fingerprints":{"tcp":"tcp/(40)()(40)(faf0)((020405b4)(04)(08)(01)(030307))"},"tcp":{"seq":2240071965,"timestamp":{"ts_val":666311986}},"ip":{"version":4,"ttl":64,"id":"0075"},"src_ip":"192.168.113.237","dst_ip":"184.51.129.174","protocol":6,"src_port":50212,"dst_port":443,"event_start":1565200324.710898} +{"fingerprints":{"tcp_server":"tcp_server/(40)()(80)(faf0)((020405b4))"},"tcp_server":{"seq":2258297707},"ip":{"version":4,"ttl":128,"id":"9b36"},"src_ip":"184.51.129.174","dst_ip":"192.168.113.237","protocol":6,"src_port":443,"dst_port":50212,"event_start":1565200324.750130} +{"fingerprints":{"tls":"tls/(0303)(130213031301c02cc030009fcca9cca8ccaac02bc02f009ec024c028006bc023c0270067c00ac0140039c009c0130033009d009c003d003c0035002f00ff)((0000)(000b000403000102)(000a000c000a001d0017001e00190018)(0023)(0016)(0017)(000d0030002e040305030603080708080809080a080b080408050806040105010601030302030301020103020202040205020602)(002b0009080304030303020301)(002d00020101)(0033))"},"tls":{"client":{"version":"0303","random":"5a53edebffa80cdc8f2fe5c2f65dcdafd4a0f7717b9a97b6a46b0e7a091def58","session_id":"313312e96be8a86aa80aa6f0087f4fbe3db6f156adf84a945f7af8e5faa4bbd0","cipher_suites":"130213031301c02cc030009fcca9cca8ccaac02bc02f009ec024c028006bc023c0270067c00ac0140039c009c0130033009d009c003d003c0035002f00ff","compression_methods":"00","server_name":"www.apple.com","session_ticket":"","features":"[\"0303\",\"130213031301c02cc030009fcca9cca8ccaac02bc02f009ec024c028006bc023c0270067c00ac0140039c009c0130033009d009c003d003c0035002f00ff\",[[\"0000\",\"001000000d7777772e6170706c652e636f6d\"],[\"000b\",\"03000102\"],[\"000a\",\"000a001d0017001e00190018\"],[\"0023\",\"\"],[\"0016\",\"\"],[\"0017\",\"\"],[\"000d\",\"002e040305030603080708080809080a080b080408050806040105010601030302030301020103020202040205020602\"],[\"002b\",\"080304030303020301\"],[\"002d\",\"0101\"],[\"0033\",\"0024001d0020af1843fbbd508d2f3bcd4acbab14c4cb92bc85d7b1130892bfee46209cadb419\"]]]"}},"ip":{"version":4,"ttl":64,"id":"0077"},"src_ip":"192.168.113.237","dst_ip":"184.51.129.174","protocol":6,"src_port":50212,"dst_port":443,"event_start":1565200324.750395} +{"fingerprints":{"tls_server":"tls_server/(0303)(c030)((ff01)(0000)(000b000403000102)(0023))"},"tls":{"server":{"certs":[{"base64":"MIIG8TCCBdmgAwIBAgIQD45OTJz1XqX+Lpsrfv/ejzANBgkqhkiG9w0BAQsFADB1MQswCQYDVQQGEwJVUzEVMBMGA1UEChMMRGlnaUNlcnQgSW5jMRkwFwYDVQQLExB3d3cuZGlnaWNlcnQuY29tMTQwMgYDVQQDEytEaWdpQ2VydCBTSEEyIEV4dGVuZGVkIFZhbGlkYXRpb24gU2VydmVyIENBMB4XDTE5MDMwNzAwMDAwMFoXDTIwMDMwNzEyMDAwMFowge4xHTAbBgNVBA8MFFByaXZhdGUgT3JnYW5pemF0aW9uMRMwEQYLKwYBBAGCNzwCAQMTAlVTMRswGQYLKwYBBAGCNzwCAQITCkNhbGlmb3JuaWExETAPBgNVBAUTCEMwODA2NTkyMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTESMBAGA1UEBxMJQ3VwZXJ0aW5vMRMwEQYDVQQKEwpBcHBsZSBJbmMuMSUwIwYDVQQLExxJbnRlcm5ldCBTZXJ2aWNlcyBmb3IgQWthbWFpMRYwFAYDVQQDEw13d3cuYXBwbGUuY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEA7V5dxoW+5Sp4eh93H0IX6sHjda7JOHrgz5/rukdCz2N1JtNMjmwvx7wcuzfJpaDTj+o9AsjoBqGnK0x7kVW8UavnyLiopkk+lEXxAJAmubWvtaAiQSwQUovZ8JHlQHZg/cKx/tBVw08YfSAADItBLC3BCsDhLt74R4SyNk4DX3eQ9vVg2KolEOs3OAN/S0Y2di5m/hjkmzHs1SrbYJDXoNWreZwB9qyHiHNDCOBI8AmsQUBg5JynzL0vx10yMi5C12kvRjDTbhe6HKa6vLViU4nHSu+5+A8lL7R6XAX75P0TRxv/YG9A8g8tUzg/IYdNCLEb09qr1Z6UaUOjol7x6QIDAQABo4IDATCCAv0wHwYDVR0jBBgwFoAUPdNQpdagre7zSmAKZdMh1Pj41g8wHQYDVR0OBBYEFNj1/23cljBcrYB1/87F950Wc8sWMCoGA1UdEQQjMCGCEGltYWdlcy5hcHBsZS5jb22CDXd3dy5hcHBsZS5jb20wDgYDVR0PAQH/BAQDAgWgMB0GA1UdJQQWMBQGCCsGAQUFBwMBBggrBgEFBQcDAjB1BgNVHR8EbjBsMDSgMqAwhi5odHRwOi8vY3JsMy5kaWdpY2VydC5jb20vc2hhMi1ldi1zZXJ2ZXItZzIuY3JsMDSgMqAwhi5odHRwOi8vY3JsNC5kaWdpY2VydC5jb20vc2hhMi1ldi1zZXJ2ZXItZzIuY3JsMEsGA1UdIAREMEIwNwYJYIZIAYb9bAIBMCowKAYIKwYBBQUHAgEWHGh0dHBzOi8vd3d3LmRpZ2ljZXJ0LmNvbS9DUFMwBwYFZ4EMAQEwgYgGCCsGAQUFBwEBBHwwejAkBggrBgEFBQcwAYYYaHR0cDovL29jc3AuZGlnaWNlcnQuY29tMFIGCCsGAQUFBzAChkZodHRwOi8vY2FjZXJ0cy5kaWdpY2VydC5jb20vRGlnaUNlcnRTSEEyRXh0ZW5kZWRWYWxpZGF0aW9uU2VydmVyQ0EuY3J0MAkGA1UdEwQCMAAwggEEBgorBgEEAdZ5AgQCBIH1BIHyAPAAdgC72d+8H4pxtZOUI5eqkntHOFeVCqtS6BqQlmQ2jh7RhQAAAWlYQtEGAAAEAwBHMEUCIGiBDFSIRXrGhLhlm/2cNID2OJHvz1j5/fNQb62OoK3oAiEAzjKdWz2ii7YESO4BJmzTUKHqfyUMACpCbUINE8CphbwAdgBWFAaaL9fC7NP14b1Esj7HRna5vJkRXMDvlJhV1onQ3QAAAWlYQtFEAAAEAwBHMEUCIEvUZFLTUvA+2NQ9xUBy7cMEjDwWRl04ArqiHlKq4dq2AiEAo14va8y5NNmkAHDhOpm0DSVt01l3wpiMaqCup+EGczIwDQYJKoZIhvcNAQELBQADggEBAD/ZoRmzfFalieWiMzPj/Lsp29dpdjEvaZeQoQwRC1rLq0FmspvfcdbckpG2F4vTnIM83HynKV26OJebDQfgRsonX0GgwIQeRwDch3n9rz40wm2xRwxSFIGssmy0MLJBYXcHlgVbJjailMJww83BFawzDWBo+hmVPigU3hkV8ktDqwC/VOOvWikPMsvMvn8HMPbZSeYnH8A7nD0u0WzFtg6NF9xIXB/Bfku6jEPKr5l2iJukaGD6wtOH7zkWjEk2LAn5Byoue2E+dnbvdJalrv9rTPd/lkG+nAlBuooc/cJK4QqofnuomKgBXavv2zaz5pNdJwwmwzOTdK95geXURk4="},{"base64":"MIIEtjCCA56gAwIBAgIQDHmpRLCMEZUgkmFf4msdgzANBgkqhkiG9w0BAQsFADBsMQswCQYDVQQGEwJVUzEVMBMGA1UEChMMRGlnaUNlcnQgSW5jMRkwFwYDVQQLExB3d3cuZGlnaWNlcnQuY29tMSswKQYDVQQDEyJEaWdpQ2VydCBIaWdoIEFzc3VyYW5jZSBFViBSb290IENBMB4XDTEzMTAyMjEyMDAwMFoXDTI4MTAyMjEyMDAwMFowdTELMAkGA1UEBhMCVVMxFTATBgNVBAoTDERpZ2lDZXJ0IEluYzEZMBcGA1UECxMQd3d3LmRpZ2ljZXJ0LmNvbTE0MDIGA1UEAxMrRGlnaUNlcnQgU0hBMiBFeHRlbmRlZCBWYWxpZGF0aW9uIFNlcnZlciBDQTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANdTpARR+JmmFkhLZyeqk0nQOe0MsLAAh/FnKIaFjI5j2ryxQDji0/XspQUYuD0+xZkXMuwYjPrxDKZkIYXLBxA0sFKIKx9om9KxjxKws9LniB8f7zh3VFNfgHk/LhqqqB5LKw2rt2O5Nbd9FLxZS99RStKh4gzikIKHaq7q12TWmFXo/a8aUGxUvBHy/Urynbt/DvTVvo4WiRJV2MBxNO723C3sxIclho3YIeSwTQyJ3DkmF93215SF2AQhcJ1vb/9cuhnhRctWVyh+HA1BV6q3uCe7seT6Ku8hI3UarS2bhjWMnHe1c63YlC3k8wyd7sFOYn4XwHGeLN7x+RAoGTMCAwEAAaOCAUkwggFFMBIGA1UdEwEB/wQIMAYBAf8CAQAwDgYDVR0PAQH/BAQDAgGGMB0GA1UdJQQWMBQGCCsGAQUFBwMBBggrBgEFBQcDAjA0BggrBgEFBQcBAQQoMCYwJAYIKwYBBQUHMAGGGGh0dHA6Ly9vY3NwLmRpZ2ljZXJ0LmNvbTBLBgNVHR8ERDBCMECgPqA8hjpodHRwOi8vY3JsNC5kaWdpY2VydC5jb20vRGlnaUNlcnRIaWdoQXNzdXJhbmNlRVZSb290Q0EuY3JsMD0GA1UdIAQ2MDQwMgYEVR0gADAqMCgGCCsGAQUFBwIBFhxodHRwczovL3d3dy5kaWdpY2VydC5jb20vQ1BTMB0GA1UdDgQWBBQ901Cl1qCt7vNKYApl0yHU+PjWDzAfBgNVHSMEGDAWgBSxPsNpA/i/RwHUmCYaCALvY2QrwzANBgkqhkiG9w0BAQsFAAOCAQEAnbbQkIbhhgLtxaDwNBx0wY12zIYKqPBKikLWP8ipTa18CK3mtlC4ohpNiAexKSHc59rGPCHg4xFJcKx6HQGkyhE6V6t9VypAdP3THYUYUN9XR3WhfVUgLkc3UHKMf4Ib0mKPLQNa2sPIoc4sUqIAY+tzunHISScjl2SFnjgOrWNoPLpSgVh5oywM395t6zHyuqB8bPEs1OG9d4Q3A84ytciagRpKkk47RpqF/oOi+Z6Mo8wNXrM9zwR4jxQUezKcxwCmXMS1oVWNWlZopCJwqjyBcdmdqEU79OX2olHdx3ti6G8MdOu42vi/hw15UJGQmxg7kVkn8TUoE6smftX3eg=="}],"version":"0303","random":"77b555cb5a305d1c3f22a64a35223099986be5e74f4c7a1fd4ef8678f2be8f83","selected_cipher_suite":"c030","compression_method":"00","session_ticket":""}},"reassembly_properties":{"reassembled":true},"ip":{"version":4,"ttl":128,"id":"9b3a"},"src_ip":"184.51.129.174","dst_ip":"192.168.113.237","protocol":6,"src_port":443,"dst_port":50212,"event_start":1565200324.790053} +{"dns":{"base64":"rXEBAAABAAAAAAAABXlvdXR1AmJlAAABAAE="},"ip":{"version":4,"ttl":64,"id":"d0e3"},"src_ip":"192.168.113.237","dst_ip":"192.168.113.2","protocol":17,"src_port":55237,"dst_port":53,"event_start":1565200324.977294} +{"dns":{"base64":"e4EBAAABAAAAAAAABXlvdXR1AmJlAAAcAAE="},"ip":{"version":4,"ttl":64,"id":"d0e4"},"src_ip":"192.168.113.237","dst_ip":"192.168.113.2","protocol":17,"src_port":42980,"dst_port":53,"event_start":1565200324.978085} +{"dns":{"base64":"rXGBgAABAAEABgAMBXlvdXR1AmJlAAABAAHADAABAAEAAAAFAASs2aSuwBIAAgABAAAABQALAXkCbnMDZG5zwBLAEgACAAEAAAAFAAQBYsA4wBIAAgABAAAABQAEAXjAOMASAAIAAQAAAAUABAFjwDjAEgACAAEAAAAFAAQBZMA4wBIAAgABAAAABQAEAWHAOMCNAAEAAQAAAAUABMIABgHATQABAAEAAAAFAATCACUBwG0AAQABAAAABQAEwgArAcB9AAEAAQAAAAUABMIALAHAXQABAAEAAAAFAATCAAEKwDYAAQABAAAABQAEeB39CMCNABwAAQAAAAUAECABBngACQAAAAAAAAAAAAHATQAcAAEAAAAFABAgAQZ4AGQAAAAAAAAAAAABwG0AHAABAAAABQAQIAEGeABoAAAAAAAAAAAAAcB9ABwAAQAAAAUAECABBngAbAAAAAAAAAAAAAHAXQAcAAEAAAAFABAgAQZ4AAQAAAAAAAAAAAAKwDYAHAABAAAABQAQIAENzQAHAAAAAAAAAAAACA=="},"ip":{"version":4,"ttl":128,"id":"9b6d"},"src_ip":"192.168.113.2","dst_ip":"192.168.113.237","protocol":17,"src_port":53,"dst_port":55237,"event_start":1565200325.011218} +{"dns":{"base64":"e4GBgAABAAEABgAMBXlvdXR1AmJlAAAcAAHADAAcAAEAAAAFABAmB/iwQAQIFQAAAAAAACAOwBIAAgABAAAABQALAXkCbnMDZG5zwBLAEgACAAEAAAAFAAQBYsBEwBIAAgABAAAABQAEAWTARMASAAIAAQAAAAUABAFhwETAEgACAAEAAAAFAAQBY8BEwBIAAgABAAAABQAEAXjARMB5AAEAAQAAAAUABMIABgHAWQABAAEAAAAFAATCACUBwIkAAQABAAAABQAEwgArAcBpAAEAAQAAAAUABMIALAHAmQABAAEAAAAFAATCAAEKwEIAAQABAAAABQAEeB39CMB5ABwAAQAAAAUAECABBngACQAAAAAAAAAAAAHAWQAcAAEAAAAFABAgAQZ4AGQAAAAAAAAAAAABwIkAHAABAAAABQAQIAEGeABoAAAAAAAAAAAAAcBpABwAAQAAAAUAECABBngAbAAAAAAAAAAAAAHAmQAcAAEAAAAFABAgAQZ4AAQAAAAAAAAAAAAKwEIAHAABAAAABQAQIAENzQAHAAAAAAAAAAAACA=="},"ip":{"version":4,"ttl":128,"id":"9b6e"},"src_ip":"192.168.113.2","dst_ip":"192.168.113.237","protocol":17,"src_port":53,"dst_port":42980,"event_start":1565200325.017370} +{"fingerprints":{"tcp":"tcp/(40)()(40)(faf0)((020405b4)(04)(08)(01)(030307))"},"tcp":{"seq":1669296412,"timestamp":{"ts_val":4199236518}},"ip":{"version":4,"ttl":64,"id":"b8a9"},"src_ip":"192.168.113.237","dst_ip":"172.217.164.174","protocol":6,"src_port":56316,"dst_port":443,"event_start":1565200325.018107} +{"fingerprints":{"tcp_server":"tcp_server/(40)()(80)(faf0)((020405b4))"},"tcp_server":{"seq":3506010352},"ip":{"version":4,"ttl":128,"id":"9b6f"},"src_ip":"172.217.164.174","dst_ip":"192.168.113.237","protocol":6,"src_port":443,"dst_port":56316,"event_start":1565200325.063708} +{"fingerprints":{"tls":"tls/(0303)(130213031301c02cc030009fcca9cca8ccaac02bc02f009ec024c028006bc023c0270067c00ac0140039c009c0130033009d009c003d003c0035002f00ff)((0000)(000b000403000102)(000a000c000a001d0017001e00190018)(0023)(0016)(0017)(000d0030002e040305030603080708080809080a080b080408050806040105010601030302030301020103020202040205020602)(002b0009080304030303020301)(002d00020101)(0033))"},"tls":{"client":{"version":"0303","random":"a912afacdb5db486c7067b03e1a799389051cdafe826d5686b1fad624548c023","session_id":"1f4e3e7f3d43ef68cde0572a55093e3c9936e449757951df72acee84cd368dba","cipher_suites":"130213031301c02cc030009fcca9cca8ccaac02bc02f009ec024c028006bc023c0270067c00ac0140039c009c0130033009d009c003d003c0035002f00ff","compression_methods":"00","server_name":"youtu.be","session_ticket":"","features":"[\"0303\",\"130213031301c02cc030009fcca9cca8ccaac02bc02f009ec024c028006bc023c0270067c00ac0140039c009c0130033009d009c003d003c0035002f00ff\",[[\"0000\",\"000b000008796f7574752e6265\"],[\"000b\",\"03000102\"],[\"000a\",\"000a001d0017001e00190018\"],[\"0023\",\"\"],[\"0016\",\"\"],[\"0017\",\"\"],[\"000d\",\"002e040305030603080708080809080a080b080408050806040105010601030302030301020103020202040205020602\"],[\"002b\",\"080304030303020301\"],[\"002d\",\"0101\"],[\"0033\",\"0024001d00200b413b1e288ef52604da2688b49ac96d5433922704512b77322e69abd9053a27\"]]]"}},"ip":{"version":4,"ttl":64,"id":"b8ab"},"src_ip":"192.168.113.237","dst_ip":"172.217.164.174","protocol":6,"src_port":56316,"dst_port":443,"event_start":1565200325.064000} +{"fingerprints":{"tls_server":"tls_server/(0303)(1302)((0033)(002b00020304))"},"tls":{"server":{"version":"0303","random":"b8da5fc8bac5f849acc89c89e78850544d1c44b247db72170adde643e8d031f0","selected_cipher_suite":"1302","compression_method":"00"}},"ip":{"version":4,"ttl":128,"id":"9b71"},"src_ip":"172.217.164.174","dst_ip":"192.168.113.237","protocol":6,"src_port":443,"dst_port":56316,"event_start":1565200325.111150} +{"fingerprints":{"tcp":"tcp/(40)()(40)(faf0)((020405b4)(04)(08)(01)(030307))"},"tcp":{"seq":3260187884,"timestamp":{"ts_val":276724388}},"ip":{"version":4,"ttl":64,"id":"4d1d"},"src_ip":"192.168.113.237","dst_ip":"172.217.5.238","protocol":6,"src_port":39146,"dst_port":443,"event_start":1565200325.260947} +{"fingerprints":{"tcp_server":"tcp_server/(40)()(80)(faf0)((020405b4))"},"tcp_server":{"seq":2040238499},"ip":{"version":4,"ttl":128,"id":"9b7b"},"src_ip":"172.217.5.238","dst_ip":"192.168.113.237","protocol":6,"src_port":443,"dst_port":39146,"event_start":1565200325.300769} +{"fingerprints":{"tls":"tls/(0303)(130213031301c02cc030009fcca9cca8ccaac02bc02f009ec024c028006bc023c0270067c00ac0140039c009c0130033009d009c003d003c0035002f00ff)((0000)(000b000403000102)(000a000c000a001d0017001e00190018)(0023)(0016)(0017)(000d0030002e040305030603080708080809080a080b080408050806040105010601030302030301020103020202040205020602)(002b0009080304030303020301)(002d00020101)(0033))"},"tls":{"client":{"version":"0303","random":"aa55e771e2a15500a3589b35d2c13d06d93823e25e9fe47c331763c7ab500fb0","session_id":"4c96534c0ffc38b19e2101a52d9b33409d90361b2b09757bbb7a5b0e41b3ef8f","cipher_suites":"130213031301c02cc030009fcca9cca8ccaac02bc02f009ec024c028006bc023c0270067c00ac0140039c009c0130033009d009c003d003c0035002f00ff","compression_methods":"00","server_name":"www.youtube.com","session_ticket":"","features":"[\"0303\",\"130213031301c02cc030009fcca9cca8ccaac02bc02f009ec024c028006bc023c0270067c00ac0140039c009c0130033009d009c003d003c0035002f00ff\",[[\"0000\",\"001200000f7777772e796f75747562652e636f6d\"],[\"000b\",\"03000102\"],[\"000a\",\"000a001d0017001e00190018\"],[\"0023\",\"\"],[\"0016\",\"\"],[\"0017\",\"\"],[\"000d\",\"002e040305030603080708080809080a080b080408050806040105010601030302030301020103020202040205020602\"],[\"002b\",\"080304030303020301\"],[\"002d\",\"0101\"],[\"0033\",\"0024001d0020d29bdbc7144ee4c5f8ae47e1aed24d80956a9204db2bca8f34cc7f008216ab48\"]]]"}},"ip":{"version":4,"ttl":64,"id":"4d1f"},"src_ip":"192.168.113.237","dst_ip":"172.217.5.238","protocol":6,"src_port":39146,"dst_port":443,"event_start":1565200325.300999} +{"fingerprints":{"tls_server":"tls_server/(0303)(1302)((0033)(002b00020304))"},"tls":{"server":{"version":"0303","random":"9fcc95b48016f472277841aab3222c3487dd548a7714b40bc5c294d22fb0090e","selected_cipher_suite":"1302","compression_method":"00"}},"ip":{"version":4,"ttl":128,"id":"9b7d"},"src_ip":"172.217.5.238","dst_ip":"192.168.113.237","protocol":6,"src_port":443,"dst_port":39146,"event_start":1565200325.350827} +{"dns":{"base64":"V+wBAAABAAAAAAAABXZpbWVvA2NvbQAAAQAB"},"ip":{"version":4,"ttl":64,"id":"d15b"},"src_ip":"192.168.113.237","dst_ip":"192.168.113.2","protocol":17,"src_port":45620,"dst_port":53,"event_start":1565200326.897365} +{"dns":{"base64":"Nf8BAAABAAAAAAAABXZpbWVvA2NvbQAAHAAB"},"ip":{"version":4,"ttl":64,"id":"d15c"},"src_ip":"192.168.113.237","dst_ip":"192.168.113.2","protocol":17,"src_port":40905,"dst_port":53,"event_start":1565200326.897562} +{"dns":{"base64":"V+yBgAABAAQADQAMBXZpbWVvA2NvbQAAAQABwAwAAQABAAAABQAEl2XA2cAMAAEAAQAAAAUABJdlQNnADAABAAEAAAAFAASXZQDZwAwAAQABAAAABQAEl2WA2cASAAIAAQAAAAUAFAFmDGd0bGQtc2VydmVycwNuZXQAwBIAAgABAAAABQAEAWLAacASAAIAAQAAAAUABAFhwGnAEgACAAEAAAAFAAQBY8BpwBIAAgABAAAABQAEAWzAacASAAIAAQAAAAUABAFtwGnAEgACAAEAAAAFAAQBa8BpwBIAAgABAAAABQAEAWTAacASAAIAAQAAAAUABAFowGnAEgACAAEAAAAFAAQBZcBpwBIAAgABAAAABQAEAWrAacASAAIAAQAAAAUABAFnwGnAEgACAAEAAAAFAAQBacBpwJcAAQABAAAABQAEwAUGHsCHAAEAAQAAAAUABMAhDh7ApwABAAEAAAAFAATAGlwewOcAAQABAAAABQAEwB9QHsEHAAEAAQAAAAUABMAMXh7AZwABAAEAAAAFAATAIzMewScAAQABAAAABQAEwCpdHsD3AAEAAQAAAAUABMA2cB7BNwABAAEAAAAFAATAK6wewRcAAQABAAAABQAEwDBPHsDXAAEAAQAAAAUABMA0sh7AtwABAAEAAAAFAATAKaIe"},"ip":{"version":4,"ttl":128,"id":"9ca2"},"src_ip":"192.168.113.2","dst_ip":"192.168.113.237","protocol":17,"src_port":53,"dst_port":45620,"event_start":1565200326.928861} +{"dns":{"base64":"Nf+BgAABAAAAAQAABXZpbWVvA2NvbQAAHAABwAwABgABAAAABQBBBW5zLTcwCWF3c2Rucy0wOMASEWF3c2Rucy1ob3N0bWFzdGVyBmFtYXpvbsASeAuCBAABUYAAABwgAAk6gAAAASw="},"ip":{"version":4,"ttl":128,"id":"9ca3"},"src_ip":"192.168.113.2","dst_ip":"192.168.113.237","protocol":17,"src_port":53,"dst_port":40905,"event_start":1565200326.929205} +{"fingerprints":{"tcp":"tcp/(40)()(40)(faf0)((020405b4)(04)(08)(01)(030307))"},"tcp":{"seq":2207276539,"timestamp":{"ts_val":4096469444}},"ip":{"version":4,"ttl":64,"id":"9668"},"src_ip":"192.168.113.237","dst_ip":"151.101.192.217","protocol":6,"src_port":42704,"dst_port":443,"event_start":1565200326.929453} +{"fingerprints":{"tcp_server":"tcp_server/(40)()(80)(faf0)((020405b4))"},"tcp_server":{"seq":3639605945},"ip":{"version":4,"ttl":128,"id":"9ca4"},"src_ip":"151.101.192.217","dst_ip":"192.168.113.237","protocol":6,"src_port":443,"dst_port":42704,"event_start":1565200326.966419} +{"fingerprints":{"tls":"tls/(0303)(130213031301c02cc030009fcca9cca8ccaac02bc02f009ec024c028006bc023c0270067c00ac0140039c009c0130033009d009c003d003c0035002f00ff)((0000)(000b000403000102)(000a000c000a001d0017001e00190018)(0023)(0016)(0017)(000d0030002e040305030603080708080809080a080b080408050806040105010601030302030301020103020202040205020602)(002b0009080304030303020301)(002d00020101)(0033))"},"tls":{"client":{"version":"0303","random":"4368a24e8cf95ac05b85778bdddcf6041d58bed47345a2b6ffc9122374bb8405","session_id":"9a27a12c2f191da4e17b70a8c5a780f6f736e1d4578abb9d4a97979fb1d9604d","cipher_suites":"130213031301c02cc030009fcca9cca8ccaac02bc02f009ec024c028006bc023c0270067c00ac0140039c009c0130033009d009c003d003c0035002f00ff","compression_methods":"00","server_name":"vimeo.com","session_ticket":"","features":"[\"0303\",\"130213031301c02cc030009fcca9cca8ccaac02bc02f009ec024c028006bc023c0270067c00ac0140039c009c0130033009d009c003d003c0035002f00ff\",[[\"0000\",\"000c00000976696d656f2e636f6d\"],[\"000b\",\"03000102\"],[\"000a\",\"000a001d0017001e00190018\"],[\"0023\",\"\"],[\"0016\",\"\"],[\"0017\",\"\"],[\"000d\",\"002e040305030603080708080809080a080b080408050806040105010601030302030301020103020202040205020602\"],[\"002b\",\"080304030303020301\"],[\"002d\",\"0101\"],[\"0033\",\"0024001d00203fc8d9559545b2bc77eae93fb8230fad3c88bdab711b069564d4d6d49372d43a\"]]]"}},"ip":{"version":4,"ttl":64,"id":"966a"},"src_ip":"192.168.113.237","dst_ip":"151.101.192.217","protocol":6,"src_port":42704,"dst_port":443,"event_start":1565200326.966862} +{"fingerprints":{"tls_server":"tls_server/(0303)(c02f)((ff01)(0000)(000b000403000102)(0023)(0017))"},"tls":{"server":{"certs":[{"base64":"MIIGlTCCBX2gAwIBAgIQAaiOYIyyE8CWikH8FKdkezANBgkqhkiG9w0BAQsFADBNMQswCQYDVQQGEwJVUzEVMBMGA1UEChMMRGlnaUNlcnQgSW5jMScwJQYDVQQDEx5EaWdpQ2VydCBTSEEyIFNlY3VyZSBTZXJ2ZXIgQ0EwHhcNMTgwODI0MDAwMDAwWhcNMjAwNDAyMTIwMDAwWjBeMQswCQYDVQQGEwJVUzERMA8GA1UECBMITmV3IFlvcmsxETAPBgNVBAcTCE5ldyBZb3JrMRMwEQYDVQQKEwpWaW1lbywgTExDMRQwEgYDVQQDDAsqLnZpbWVvLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAN46nW41HzlpbDbnAO56ngIsavFmnUd5yiJxZqoA6HaDRiGsKkZxAHZSlQJ49ZFEF9iFbqywT4vhjf2x3yLAwwxBbNpP1j3qOIiFZJvJUE8F6wQO7vG5xGTQAQXuiZTUPNpm1Jv/b1jT86S8MXVQCR8uaBa5XcIlvWQykg72NFkMOH+8IlraeUQl03dHSz5t08NranCT6MLhpvMxH2mBZhANWTqV2yWKnAqjb+h8vHbNsKC75P9KukK38mY2f9xPQaVvzezf2Tv/M/N0Oc8DUzkikT5AjkUUr3uas8lb39tFRdXAbB0o+UECt3StONweQJtlOO1j8vLb4weVE10pOw0CAwEAAaOCA14wggNaMB8GA1UdIwQYMBaAFA+AYRyCMWHVLyjnjUY4tCzhxtniMB0GA1UdDgQWBBQX+FWhE5Fzd2lShQjYOnW6cEsVZDAhBgNVHREEGjAYggsqLnZpbWVvLmNvbYIJdmltZW8uY29tMA4GA1UdDwEB/wQEAwIFoDAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwawYDVR0fBGQwYjAvoC2gK4YpaHR0cDovL2NybDMuZGlnaWNlcnQuY29tL3NzY2Etc2hhMi1nNi5jcmwwL6AtoCuGKWh0dHA6Ly9jcmw0LmRpZ2ljZXJ0LmNvbS9zc2NhLXNoYTItZzYuY3JsMEwGA1UdIARFMEMwNwYJYIZIAYb9bAEBMCowKAYIKwYBBQUHAgEWHGh0dHBzOi8vd3d3LmRpZ2ljZXJ0LmNvbS9DUFMwCAYGZ4EMAQICMHwGCCsGAQUFBwEBBHAwbjAkBggrBgEFBQcwAYYYaHR0cDovL29jc3AuZGlnaWNlcnQuY29tMEYGCCsGAQUFBzAChjpodHRwOi8vY2FjZXJ0cy5kaWdpY2VydC5jb20vRGlnaUNlcnRTSEEyU2VjdXJlU2VydmVyQ0EuY3J0MAwGA1UdEwEB/wQCMAAwggF9BgorBgEEAdZ5AgQCBIIBbQSCAWkBZwB2AKS5CZC0GFgUh7sTosxncAo8NZgE+RvfuON3zQ7IDdwQAAABZWyX6G4AAAQDAEcwRQIhAPwDFjuKlEm+zUyRn3PvA5I3YgamRrEbMMnY+IcWOR3lAiBb5GlNGDAI4LYY/gnlWQIjenIhfq9bAay2paMwzHfVLAB2AId1v+dZfPiMQ5lfvfNu/1aNR1Y2/0q1YMG06v9eoIMPAAABZWyX6G4AAAQDAEcwRQIgLARzuiPmv7bduu5M0hvKwpMdnqZdslLfpXNZLm+A6cgCIQD5XsLbcd42bVhofRJ+EbeiCiwslOMeHlwsni4abZD/AQB1ALvZ37wfinG1k5Qjl6qSe0c4V5UKq1LoGpCWZDaOHtGFAAABZWyX56EAAAQDAEYwRAIgTctw2guun/asVLNbDeIhv2nqFLDezQB5aIhzbf13QhYCIEevrRV+w20kyxQ5/ujQtTbjKjYfrEwOwp1oHhjbAJJuMA0GCSqGSIb3DQEBCwUAA4IBAQAnRC6rW/JPfntMo/scqBV/52WMHt3+cLCWYZBrxG4sNj29wuzFwHBdpdlqD9GNLElu9vcllnAqzmria6KsZ0lLeU1WWb5vl5u7Q5k6o4OVuziFF9O7198prtuf2u+tUG/zHEL0KhkPD0mu+UzispcYkuntD2kSiZ3LCrKxL5zpUuFC9D2r4P6b32fmg53Fck76P/qZe+niplaV8rrMGgFbPreCTrlyd4F1Xm5/0tyyLPsnIDN/uBjzuvkgvmw4DkoYOCwMCJftC7Ajix7vs0/KoYgc5r8Iz8twzdacEM62ZWR0obQ9du8Qys7TLlKa1eiiXVJ27zyMjxA8svFmUmBc"},{"base64":"MIIElDCCA3ygAwIBAgIQAf2j627KdciIQ4tyS8+8kTANBgkqhkiG9w0BAQsFADBhMQswCQYDVQQGEwJVUzEVMBMGA1UEChMMRGlnaUNlcnQgSW5jMRkwFwYDVQQLExB3d3cuZGlnaWNlcnQuY29tMSAwHgYDVQQDExdEaWdpQ2VydCBHbG9iYWwgUm9vdCBDQTAeFw0xMzAzMDgxMjAwMDBaFw0yMzAzMDgxMjAwMDBaME0xCzAJBgNVBAYTAlVTMRUwEwYDVQQKEwxEaWdpQ2VydCBJbmMxJzAlBgNVBAMTHkRpZ2lDZXJ0IFNIQTIgU2VjdXJlIFNlcnZlciBDQTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANyuWJBNwcQwFZA1W248ghX1LFy949v/cUP6ZCWA1O4Yok3wZtAKc24RmDYXZK83nf36QYSvx6+M/hpzTc8zl5CilodTgyu5pnVILR1WN3vaMTIa16yrBvSqXUu3R0bdKpPDkC55gIDvEwRqFDu1m5K+wgdlTvza/P96rtxcflUxDOg5B6TXvi/TC2rSsd9f/ld0Uzs1gN2ujkSYs58O09rg1/RrKatEp0tYhG2SS4HD2nOLEpdIkARFdRrdNzGXkujNVA075ME/OV4uuPNcfhCOhkEAjUVmR7ChZc6gqikJTvOX6+guqw9ypzAO+sf0/RR3w6RbKFfCs/mC/bdFWJsCAwEAAaOCAVowggFWMBIGA1UdEwEB/wQIMAYBAf8CAQAwDgYDVR0PAQH/BAQDAgGGMDQGCCsGAQUFBwEBBCgwJjAkBggrBgEFBQcwAYYYaHR0cDovL29jc3AuZGlnaWNlcnQuY29tMHsGA1UdHwR0MHIwN6A1oDOGMWh0dHA6Ly9jcmwzLmRpZ2ljZXJ0LmNvbS9EaWdpQ2VydEdsb2JhbFJvb3RDQS5jcmwwN6A1oDOGMWh0dHA6Ly9jcmw0LmRpZ2ljZXJ0LmNvbS9EaWdpQ2VydEdsb2JhbFJvb3RDQS5jcmwwPQYDVR0gBDYwNDAyBgRVHSAAMCowKAYIKwYBBQUHAgEWHGh0dHBzOi8vd3d3LmRpZ2ljZXJ0LmNvbS9DUFMwHQYDVR0OBBYEFA+AYRyCMWHVLyjnjUY4tCzhxtniMB8GA1UdIwQYMBaAFAPeUDVW0Uy7ZvCj4hsbw5eyPdFVMA0GCSqGSIb3DQEBCwUAA4IBAQAjPt9L0jFCpbZ+QlwaRMxp0Wi0XUvgBCFsS+JtzLHgl4+mUwnNqipl5TlPHoOlblyYoiQm5vuh7ZPHLgLGTUq/sELfeNqzqPlt/yGFUzZgTHbO7Djc1lGA8MXW5dRNJ2Srm8c+cftIl7gzbckTB+6WohsYFfZcTEDts8Ls/3HB40f/1LkAtDdC2iDJ6m6K7hQGrn2iWZiIqBtvLfTyyRRfJs8sjX7tN8Cp1Tm5gr8ZDOo0rwAhaPitc+LJMto4JQtV05od8GiG7S5BNO98pVAdvzr508EIDObtHopYJeS4d60tbvVS3bR0j6tJLp07kzQoH3jOlOrHvdPJbRzeXDLz"}],"version":"0303","random":"76c3077be4e2818f7ee95c5395268d2c1ccb1909d15cb6a386c20421f618b37d","selected_cipher_suite":"c02f","compression_method":"00","session_ticket":""}},"reassembly_properties":{"reassembled":true},"ip":{"version":4,"ttl":128,"id":"9ca8"},"src_ip":"151.101.192.217","dst_ip":"192.168.113.237","protocol":6,"src_port":443,"dst_port":42704,"event_start":1565200327.008493} +{"dns":{"base64":"dFoBAAABAAAAAAAAA2dvbwJnbAAAAQAB"},"ip":{"version":4,"ttl":64,"id":"d172"},"src_ip":"192.168.113.237","dst_ip":"192.168.113.2","protocol":17,"src_port":51350,"dst_port":53,"event_start":1565200327.245395} +{"dns":{"base64":"B04BAAABAAAAAAAAA2dvbwJnbAAAHAAB"},"ip":{"version":4,"ttl":64,"id":"d173"},"src_ip":"192.168.113.237","dst_ip":"192.168.113.2","protocol":17,"src_port":41171,"dst_port":53,"event_start":1565200327.245574} +{"dns":{"base64":"dFqBgAABAAEADQAOA2dvbwJnbAAAAQABwAwAAQABAAAABQAErNkPbgAAAgABAAAABQAUAWkMcm9vdC1zZXJ2ZXJzA25ldAAAAAIAAQAAAAUABAFqwDUAAAIAAQAAAAUABAFhwDUAAAIAAQAAAAUABAFowDUAAAIAAQAAAAUABAFtwDUAAAIAAQAAAAUABAFlwDUAAAIAAQAAAAUABAFkwDUAAAIAAQAAAAUABAFiwDUAAAIAAQAAAAUABAFrwDUAAAIAAQAAAAUABAFmwDUAAAIAAQAAAAUABAFswDUAAAIAAQAAAAUABAFjwDUAAAIAAQAAAAUABAFnwDXAYQABAAEAAAAFAATGKQAEwKwAAQABAAAABQAExwkOycDoAAEAAQAAAAUABMAhBAzAnQABAAEAAAAFAATHB1sNwI4AAQABAAAABQAEwMvmCsDKAAEAAQAAAAUABMAFBfHA9wABAAEAAAAFAATAcCQEwHAAAQABAAAABQAExmG+NcAzAAEAAQAAAAUABMAklBHAUgABAAEAAAAFAATAOoAewLsAAQABAAAABQAEwQAOgcDZAAEAAQAAAAUABMcHUyrAfwABAAEAAAAFAATKDBshwGEAHAABAAAABQAQIAEFA7o+AAAAAAAAAAIAMA=="},"ip":{"version":4,"ttl":128,"id":"9cc8"},"src_ip":"192.168.113.2","dst_ip":"192.168.113.237","protocol":17,"src_port":53,"dst_port":51350,"event_start":1565200327.277125} +{"dns":{"base64":"B06BgAABAAEADQAOA2dvbwJnbAAAHAABwAwAHAABAAAABQAQJgf4sEAECBEAAAAAAAAgDgAAAgABAAAABQAUAWUMcm9vdC1zZXJ2ZXJzA25ldAAAAAIAAQAAAAUABAFkwEEAAAIAAQAAAAUABAFrwEEAAAIAAQAAAAUABAFhwEEAAAIAAQAAAAUABAFowEEAAAIAAQAAAAUABAFjwEEAAAIAAQAAAAUABAFiwEEAAAIAAQAAAAUABAFmwEEAAAIAAQAAAAUABAFpwEEAAAIAAQAAAAUABAFswEEAAAIAAQAAAAUABAFqwEEAAAIAAQAAAAUABAFtwEEAAAIAAQAAAAUABAFnwEHAfAABAAEAAAAFAATGKQAEwKkAAQABAAAABQAExwkOycCaAAEAAQAAAAUABMAhBAzAXgABAAEAAAAFAATHB1sNwD8AAQABAAAABQAEwMvmCsC4AAEAAQAAAAUABMAFBfHBAwABAAEAAAAFAATAcCQEwIsAAQABAAAABQAExmG+NcDHAAEAAQAAAAUABMAklBHA5QABAAEAAAAFAATAOoAewG0AAQABAAAABQAEwQAOgcDWAAEAAQAAAAUABMcHUyrA9AABAAEAAAAFAATKDBshwHwAHAABAAAABQAQIAEFA7o+AAAAAAAAAAIAMA=="},"ip":{"version":4,"ttl":128,"id":"9cc9"},"src_ip":"192.168.113.2","dst_ip":"192.168.113.237","protocol":17,"src_port":53,"dst_port":41171,"event_start":1565200327.277462} +{"fingerprints":{"tcp":"tcp/(40)()(40)(faf0)((020405b4)(04)(08)(01)(030307))"},"tcp":{"seq":2448227943,"timestamp":{"ts_val":1522252343}},"ip":{"version":4,"ttl":64,"id":"358d"},"src_ip":"192.168.113.237","dst_ip":"172.217.15.110","protocol":6,"src_port":57322,"dst_port":443,"event_start":1565200327.277725} +{"fingerprints":{"tcp_server":"tcp_server/(40)()(80)(faf0)((020405b4))"},"tcp_server":{"seq":2519073457},"ip":{"version":4,"ttl":128,"id":"9cca"},"src_ip":"172.217.15.110","dst_ip":"192.168.113.237","protocol":6,"src_port":443,"dst_port":57322,"event_start":1565200327.316354} +{"fingerprints":{"tls":"tls/(0303)(130213031301c02cc030009fcca9cca8ccaac02bc02f009ec024c028006bc023c0270067c00ac0140039c009c0130033009d009c003d003c0035002f00ff)((0000)(000b000403000102)(000a000c000a001d0017001e00190018)(0023)(0016)(0017)(000d0030002e040305030603080708080809080a080b080408050806040105010601030302030301020103020202040205020602)(002b0009080304030303020301)(002d00020101)(0033))"},"tls":{"client":{"version":"0303","random":"af7bf1e9c51bc0ccc3bfb2ab2b674039f63eb4b5e5387faea38a9dbf02027397","session_id":"af58bb5b32f02069b81eb25341aac329f5ef2470671e7e0a33bdb08fc3204b14","cipher_suites":"130213031301c02cc030009fcca9cca8ccaac02bc02f009ec024c028006bc023c0270067c00ac0140039c009c0130033009d009c003d003c0035002f00ff","compression_methods":"00","server_name":"goo.gl","session_ticket":"","features":"[\"0303\",\"130213031301c02cc030009fcca9cca8ccaac02bc02f009ec024c028006bc023c0270067c00ac0140039c009c0130033009d009c003d003c0035002f00ff\",[[\"0000\",\"0009000006676f6f2e676c\"],[\"000b\",\"03000102\"],[\"000a\",\"000a001d0017001e00190018\"],[\"0023\",\"\"],[\"0016\",\"\"],[\"0017\",\"\"],[\"000d\",\"002e040305030603080708080809080a080b080408050806040105010601030302030301020103020202040205020602\"],[\"002b\",\"080304030303020301\"],[\"002d\",\"0101\"],[\"0033\",\"0024001d0020814ffc046fc6a01ed2bade792aaca3369434bf87114b8fc19c6ca58e76861f3c\"]]]"}},"ip":{"version":4,"ttl":64,"id":"358f"},"src_ip":"192.168.113.237","dst_ip":"172.217.15.110","protocol":6,"src_port":57322,"dst_port":443,"event_start":1565200327.316662} +{"fingerprints":{"tls_server":"tls_server/(0303)(1302)((0033)(002b00020304))"},"tls":{"server":{"version":"0303","random":"dd66b79a9e14c6c292ae6dcb6b54d3d2533a524c77892d1cba0b1c224cf0ecdb","selected_cipher_suite":"1302","compression_method":"00"}},"ip":{"version":4,"ttl":128,"id":"9ccc"},"src_ip":"172.217.15.110","dst_ip":"192.168.113.237","protocol":6,"src_port":443,"dst_port":57322,"event_start":1565200327.367706} +{"fingerprints":{"tcp":"tcp/(40)()(40)(faf0)((020405b4)(04)(08)(01)(030307))"},"tcp":{"seq":3433058465,"timestamp":{"ts_val":1676994050}},"ip":{"version":4,"ttl":64,"id":"9ce4"},"src_ip":"192.168.113.237","dst_ip":"172.217.164.141","protocol":6,"src_port":57010,"dst_port":443,"event_start":1565200327.644536} +{"fingerprints":{"tcp_server":"tcp_server/(40)()(80)(faf0)((020405b4))"},"tcp_server":{"seq":1342043468},"ip":{"version":4,"ttl":128,"id":"9cd7"},"src_ip":"172.217.164.141","dst_ip":"192.168.113.237","protocol":6,"src_port":443,"dst_port":57010,"event_start":1565200327.684676} +{"fingerprints":{"tls":"tls/(0303)(130213031301c02cc030009fcca9cca8ccaac02bc02f009ec024c028006bc023c0270067c00ac0140039c009c0130033009d009c003d003c0035002f00ff)((0000)(000b000403000102)(000a000c000a001d0017001e00190018)(0023)(0016)(0017)(000d0030002e040305030603080708080809080a080b080408050806040105010601030302030301020103020202040205020602)(002b0009080304030303020301)(002d00020101)(0033))"},"tls":{"client":{"version":"0303","random":"d44fe7d6ad1cef012c9b846f5c87cada8301430193dffe01d278161bc86ebf8a","session_id":"df42d7c64d3a333d4b18e7252247b9d95da2cfe4260e429f64d0af50773c6f63","cipher_suites":"130213031301c02cc030009fcca9cca8ccaac02bc02f009ec024c028006bc023c0270067c00ac0140039c009c0130033009d009c003d003c0035002f00ff","compression_methods":"00","server_name":"accounts.google.com","session_ticket":"","features":"[\"0303\",\"130213031301c02cc030009fcca9cca8ccaac02bc02f009ec024c028006bc023c0270067c00ac0140039c009c0130033009d009c003d003c0035002f00ff\",[[\"0000\",\"00160000136163636f756e74732e676f6f676c652e636f6d\"],[\"000b\",\"03000102\"],[\"000a\",\"000a001d0017001e00190018\"],[\"0023\",\"\"],[\"0016\",\"\"],[\"0017\",\"\"],[\"000d\",\"002e040305030603080708080809080a080b080408050806040105010601030302030301020103020202040205020602\"],[\"002b\",\"080304030303020301\"],[\"002d\",\"0101\"],[\"0033\",\"0024001d0020df846f0a13b813b7594be1536b4cc99004b56029a07a051a66ef052d9c7cf06d\"]]]"}},"ip":{"version":4,"ttl":64,"id":"9ce6"},"src_ip":"192.168.113.237","dst_ip":"172.217.164.141","protocol":6,"src_port":57010,"dst_port":443,"event_start":1565200327.684929} +{"fingerprints":{"tls_server":"tls_server/(0303)(1302)((0033)(002b00020304))"},"tls":{"server":{"version":"0303","random":"c36a3beba9c83491d1b466ab48f0cc9844ff7e5b59dcc8cc8e22a3b359bf8392","selected_cipher_suite":"1302","compression_method":"00"}},"ip":{"version":4,"ttl":128,"id":"9cd9"},"src_ip":"172.217.164.141","dst_ip":"192.168.113.237","protocol":6,"src_port":443,"dst_port":57010,"event_start":1565200327.734937} +{"fingerprints":{"tcp":"tcp/(40)()(40)(faf0)((020405b4)(04)(08)(01)(030307))"},"tcp":{"seq":4234773277,"timestamp":{"ts_val":1522252968}},"ip":{"version":4,"ttl":64,"id":"4f9b"},"src_ip":"192.168.113.237","dst_ip":"172.217.15.110","protocol":6,"src_port":57326,"dst_port":443,"event_start":1565200327.902597} +{"fingerprints":{"tcp_server":"tcp_server/(40)()(80)(faf0)((020405b4))"},"tcp_server":{"seq":1143616927},"ip":{"version":4,"ttl":128,"id":"9ce3"},"src_ip":"172.217.15.110","dst_ip":"192.168.113.237","protocol":6,"src_port":443,"dst_port":57326,"event_start":1565200327.941362} +{"fingerprints":{"tls":"tls/(0303)(130213031301c02cc030009fcca9cca8ccaac02bc02f009ec024c028006bc023c0270067c00ac0140039c009c0130033009d009c003d003c0035002f00ff)((0000)(000b000403000102)(000a000c000a001d0017001e00190018)(0023)(0016)(0017)(000d0030002e040305030603080708080809080a080b080408050806040105010601030302030301020103020202040205020602)(002b0009080304030303020301)(002d00020101)(0033))"},"tls":{"client":{"version":"0303","random":"8aa6bf92038a3c830527baac712b101638a5145e3c21ca1e4633df5d15856ae5","session_id":"f4ac263cb775867f88f5d9909af6de25450e60dc8784bce70fff320aba46f03e","cipher_suites":"130213031301c02cc030009fcca9cca8ccaac02bc02f009ec024c028006bc023c0270067c00ac0140039c009c0130033009d009c003d003c0035002f00ff","compression_methods":"00","server_name":"goo.gl","session_ticket":"","features":"[\"0303\",\"130213031301c02cc030009fcca9cca8ccaac02bc02f009ec024c028006bc023c0270067c00ac0140039c009c0130033009d009c003d003c0035002f00ff\",[[\"0000\",\"0009000006676f6f2e676c\"],[\"000b\",\"03000102\"],[\"000a\",\"000a001d0017001e00190018\"],[\"0023\",\"\"],[\"0016\",\"\"],[\"0017\",\"\"],[\"000d\",\"002e040305030603080708080809080a080b080408050806040105010601030302030301020103020202040205020602\"],[\"002b\",\"080304030303020301\"],[\"002d\",\"0101\"],[\"0033\",\"0024001d00208d68f699d31857f16cd77113a66799a600cd385647ada863883334d563412d70\"]]]"}},"ip":{"version":4,"ttl":64,"id":"4f9d"},"src_ip":"192.168.113.237","dst_ip":"172.217.15.110","protocol":6,"src_port":57326,"dst_port":443,"event_start":1565200327.941710} +{"fingerprints":{"tls_server":"tls_server/(0303)(1302)((0033)(002b00020304))"},"tls":{"server":{"version":"0303","random":"12cb5aca2d6548988db0af85c097d122d214d1daa75b6e8e5580daa0886c2d0c","selected_cipher_suite":"1302","compression_method":"00"}},"ip":{"version":4,"ttl":128,"id":"9ce5"},"src_ip":"172.217.15.110","dst_ip":"192.168.113.237","protocol":6,"src_port":443,"dst_port":57326,"event_start":1565200327.994358} +{"dns":{"base64":"i8ABAAABAAAAAAAACXdvcmRwcmVzcwNjb20AAAEAAQ=="},"ip":{"version":4,"ttl":64,"id":"d279"},"src_ip":"192.168.113.237","dst_ip":"192.168.113.2","protocol":17,"src_port":37846,"dst_port":53,"event_start":1565200328.438704} +{"dns":{"base64":"37ABAAABAAAAAAAACXdvcmRwcmVzcwNjb20AABwAAQ=="},"ip":{"version":4,"ttl":64,"id":"d27a"},"src_ip":"192.168.113.237","dst_ip":"192.168.113.2","protocol":17,"src_port":37128,"dst_port":53,"event_start":1565200328.438882} +{"dns":{"base64":"i8CBgAABAAIADQANCXdvcmRwcmVzcwNjb20AAAEAAcAMAAEAAQAAAAUABMAATgnADAABAAEAAAAFAATAAE4RwBYAAgABAAAABQAUAWQMZ3RsZC1zZXJ2ZXJzA25ldADAFgACAAEAAAAFAAQBasBNwBYAAgABAAAABQAEAWHATcAWAAIAAQAAAAUABAFmwE3AFgACAAEAAAAFAAQBacBNwBYAAgABAAAABQAEAWPATcAWAAIAAQAAAAUABAFowE3AFgACAAEAAAAFAAQBYsBNwBYAAgABAAAABQAEAWvATcAWAAIAAQAAAAUABAFlwE3AFgACAAEAAAAFAAQBZ8BNwBYAAgABAAAABQAEAW3ATcAWAAIAAQAAAAUABAFswE3AewABAAEAAAAFAATABQYewMsAAQABAAAABQAEwCEOHsCrAAEAAQAAAAUABMAaXB7ASwABAAEAAAAFAATAH1AewOsAAQABAAAABQAEwAxeHsCLAAEAAQAAAAUABMAjMx7A+wABAAEAAAAFAATAKl0ewLsAAQABAAAABQAEwDZwHsCbAAEAAQAAAAUABMArrB7AawABAAEAAAAFAATAME8ewNsAAQABAAAABQAEwDSyHsEbAAEAAQAAAAUABMApoh7BCwABAAEAAAAFAATAN1Me"},"ip":{"version":4,"ttl":128,"id":"9d62"},"src_ip":"192.168.113.2","dst_ip":"192.168.113.237","protocol":17,"src_port":53,"dst_port":37846,"event_start":1565200328.479678} +{"dns":{"base64":"37CBgAABAAAAAQAACXdvcmRwcmVzcwNjb20AABwAAcAMAAYAAQAAAAUAKQNuczHADAZtbW1tbW0FZ21haWzAFneC9/IAADhAAAAcIAAJOoAAAAA8"},"ip":{"version":4,"ttl":128,"id":"9d63"},"src_ip":"192.168.113.2","dst_ip":"192.168.113.237","protocol":17,"src_port":53,"dst_port":37128,"event_start":1565200328.479701} +{"fingerprints":{"tcp":"tcp/(40)()(40)(faf0)((020405b4)(04)(08)(01)(030307))"},"tcp":{"seq":2420267641,"timestamp":{"ts_val":882224523}},"ip":{"version":4,"ttl":64,"id":"976f"},"src_ip":"192.168.113.237","dst_ip":"192.0.78.9","protocol":6,"src_port":54866,"dst_port":443,"event_start":1565200328.480251} +{"fingerprints":{"tcp_server":"tcp_server/(40)()(80)(faf0)((020405b4))"},"tcp_server":{"seq":4069200342},"ip":{"version":4,"ttl":128,"id":"9d64"},"src_ip":"192.0.78.9","dst_ip":"192.168.113.237","protocol":6,"src_port":443,"dst_port":54866,"event_start":1565200328.525386} +{"fingerprints":{"tls":"tls/(0303)(130213031301c02cc030009fcca9cca8ccaac02bc02f009ec024c028006bc023c0270067c00ac0140039c009c0130033009d009c003d003c0035002f00ff)((0000)(000b000403000102)(000a000c000a001d0017001e00190018)(0023)(0016)(0017)(000d0030002e040305030603080708080809080a080b080408050806040105010601030302030301020103020202040205020602)(002b0009080304030303020301)(002d00020101)(0033))"},"tls":{"client":{"version":"0303","random":"0a5ca3f1f795c47a3ad3cc77d87345084aee66e3255b10c0e20524a1152119c9","session_id":"5f5a0783761ea317171a9a3f2d6d5471abca9eaa08a30cce1ad89594a224f84e","cipher_suites":"130213031301c02cc030009fcca9cca8ccaac02bc02f009ec024c028006bc023c0270067c00ac0140039c009c0130033009d009c003d003c0035002f00ff","compression_methods":"00","server_name":"wordpress.com","session_ticket":"","features":"[\"0303\",\"130213031301c02cc030009fcca9cca8ccaac02bc02f009ec024c028006bc023c0270067c00ac0140039c009c0130033009d009c003d003c0035002f00ff\",[[\"0000\",\"001000000d776f726470726573732e636f6d\"],[\"000b\",\"03000102\"],[\"000a\",\"000a001d0017001e00190018\"],[\"0023\",\"\"],[\"0016\",\"\"],[\"0017\",\"\"],[\"000d\",\"002e040305030603080708080809080a080b080408050806040105010601030302030301020103020202040205020602\"],[\"002b\",\"080304030303020301\"],[\"002d\",\"0101\"],[\"0033\",\"0024001d00207ad06e339dd5744e0865a05810b0543748e001fc784133627df50dd684860f47\"]]]"}},"ip":{"version":4,"ttl":64,"id":"9771"},"src_ip":"192.168.113.237","dst_ip":"192.0.78.9","protocol":6,"src_port":54866,"dst_port":443,"event_start":1565200328.525820} +{"fingerprints":{"tls_server":"tls_server/(0303)(1302)((002b00020304)(0033))"},"tls":{"server":{"version":"0303","random":"3c82daf54878e3749911dce89a6d42ab49ebf1be71f2d142d1f7a0b64d444a08","selected_cipher_suite":"1302","compression_method":"00"}},"ip":{"version":4,"ttl":128,"id":"9d66"},"src_ip":"192.0.78.9","dst_ip":"192.168.113.237","protocol":6,"src_port":443,"dst_port":54866,"event_start":1565200328.567318} +{"dns":{"base64":"deABAAABAAAAAAAACXBpbnRlcmVzdANjb20AAAEAAQ=="},"ip":{"version":4,"ttl":64,"id":"d2b0"},"src_ip":"192.168.113.237","dst_ip":"192.168.113.2","protocol":17,"src_port":42347,"dst_port":53,"event_start":1565200328.758730} +{"dns":{"base64":"To0BAAABAAAAAAAACXBpbnRlcmVzdANjb20AABwAAQ=="},"ip":{"version":4,"ttl":64,"id":"d2b1"},"src_ip":"192.168.113.237","dst_ip":"192.168.113.2","protocol":17,"src_port":34119,"dst_port":53,"event_start":1565200328.758912} +{"dns":{"base64":"deCBgAABAAQADQAMCXBpbnRlcmVzdANjb20AAAEAAcAMAAEAAQAAAAUABJdlgFTADAABAAEAAAAFAASXZcBUwAwAAQABAAAABQAEl2VAVMAMAAEAAQAAAAUABJdlAFTAFgACAAEAAAAFABQBaAxndGxkLXNlcnZlcnMDbmV0AMAWAAIAAQAAAAUABAFkwG3AFgACAAEAAAAFAAQBasBtwBYAAgABAAAABQAEAWLAbcAWAAIAAQAAAAUABAFrwG3AFgACAAEAAAAFAAQBY8BtwBYAAgABAAAABQAEAWnAbcAWAAIAAQAAAAUABAFlwG3AFgACAAEAAAAFAAQBbMBtwBYAAgABAAAABQAEAWfAbcAWAAIAAQAAAAUABAFmwG3AFgACAAEAAAAFAAQBbcBtwBYAAgABAAAABQAEAWHAbcE7AAEAAQAAAAUABMAFBh7AqwABAAEAAAAFAATAIQ4ewMsAAQABAAAABQAEwBpcHsCLAAEAAQAAAAUABMAfUB7A6wABAAEAAAAFAATADF4ewRsAAQABAAAABQAEwCMzHsELAAEAAQAAAAUABMAqXR7AawABAAEAAAAFAATANnAewNsAAQABAAAABQAEwCusHsCbAAEAAQAAAAUABMAwTx7AuwABAAEAAAAFAATANLIewPsAAQABAAAABQAEwCmiHg=="},"ip":{"version":4,"ttl":128,"id":"9daf"},"src_ip":"192.168.113.2","dst_ip":"192.168.113.237","protocol":17,"src_port":53,"dst_port":42347,"event_start":1565200328.788749} +{"dns":{"base64":"To2BgAABAAAAAQAACXBpbnRlcmVzdANjb20AABwAAcAMAAYAAQAAAAUANQRkbnMxA3AwOQVuc29uZQNuZXQACmhvc3RtYXN0ZXLANF07NSQAAFRgAAAOEAAJOoAAAAcI"},"ip":{"version":4,"ttl":128,"id":"9db0"},"src_ip":"192.168.113.2","dst_ip":"192.168.113.237","protocol":17,"src_port":53,"dst_port":34119,"event_start":1565200328.789459} +{"fingerprints":{"tcp":"tcp/(40)()(40)(faf0)((020405b4)(04)(08)(01)(030307))"},"tcp":{"seq":4036602919,"timestamp":{"ts_val":1676800283}},"ip":{"version":4,"ttl":64,"id":"6143"},"src_ip":"192.168.113.237","dst_ip":"151.101.128.84","protocol":6,"src_port":41224,"dst_port":443,"event_start":1565200328.789680} +{"fingerprints":{"tcp_server":"tcp_server/(40)()(80)(faf0)((020405b4))"},"tcp_server":{"seq":2832800200},"ip":{"version":4,"ttl":128,"id":"9db1"},"src_ip":"151.101.128.84","dst_ip":"192.168.113.237","protocol":6,"src_port":443,"dst_port":41224,"event_start":1565200328.828495} +{"fingerprints":{"tls":"tls/(0303)(130213031301c02cc030009fcca9cca8ccaac02bc02f009ec024c028006bc023c0270067c00ac0140039c009c0130033009d009c003d003c0035002f00ff)((0000)(000b000403000102)(000a000c000a001d0017001e00190018)(0023)(0016)(0017)(000d0030002e040305030603080708080809080a080b080408050806040105010601030302030301020103020202040205020602)(002b0009080304030303020301)(002d00020101)(0033))"},"tls":{"client":{"version":"0303","random":"e0fcb186f94fe02dbfb62a82530526fe0c89a7e58ff4c132583195b63323b5d8","session_id":"7568bf6aadf43aac2a7e77c6a3cac3864ee7810b6ec2c90640869c4b9f2fb671","cipher_suites":"130213031301c02cc030009fcca9cca8ccaac02bc02f009ec024c028006bc023c0270067c00ac0140039c009c0130033009d009c003d003c0035002f00ff","compression_methods":"00","server_name":"pinterest.com","session_ticket":"","features":"[\"0303\",\"130213031301c02cc030009fcca9cca8ccaac02bc02f009ec024c028006bc023c0270067c00ac0140039c009c0130033009d009c003d003c0035002f00ff\",[[\"0000\",\"001000000d70696e7465726573742e636f6d\"],[\"000b\",\"03000102\"],[\"000a\",\"000a001d0017001e00190018\"],[\"0023\",\"\"],[\"0016\",\"\"],[\"0017\",\"\"],[\"000d\",\"002e040305030603080708080809080a080b080408050806040105010601030302030301020103020202040205020602\"],[\"002b\",\"080304030303020301\"],[\"002d\",\"0101\"],[\"0033\",\"0024001d0020133305248c91271a585a63add0363f180788c78bf835d969e46a06cc00ab1325\"]]]"}},"ip":{"version":4,"ttl":64,"id":"6145"},"src_ip":"192.168.113.237","dst_ip":"151.101.128.84","protocol":6,"src_port":41224,"dst_port":443,"event_start":1565200328.828760} +{"fingerprints":{"tls_server":"tls_server/(0303)(c02f)((ff01)(0000)(000b000403000102)(0023)(0017))"},"tls":{"server":{"certs":[{"base64":"MIIMjTCCC3WgAwIBAgIQCGY+vEVuw5mUM8/1pacz4TANBgkqhkiG9w0BAQsFADBwMQswCQYDVQQGEwJVUzEVMBMGA1UEChMMRGlnaUNlcnQgSW5jMRkwFwYDVQQLExB3d3cuZGlnaWNlcnQuY29tMS8wLQYDVQQDEyZEaWdpQ2VydCBTSEEyIEhpZ2ggQXNzdXJhbmNlIFNlcnZlciBDQTAeFw0xOTA2MDUwMDAwMDBaFw0yMDA3MjIxMjAwMDBaMG4xCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1TYW4gRnJhbmNpc2NvMRgwFgYDVQQKEw9QaW50ZXJlc3QsIEluYy4xGDAWBgNVBAMMDyoucGludGVyZXN0LmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANkhv7I4WhMZQvgZAF11mLNfGTz4waZri4nOlRGlEZfA0/9jtBRCw98wADg9QG4Ur4HeRYCQWN0o9mP3XBtdguuP1qB6bOKr3KXtXrasQ6d0ZLTekwCyjBR+pG90QChIw0J5L/rGJlNJcbtqi93cbcpXS6O+DJ6ibF4GRCaczCu8bXbEgt2Ktl70cCrFfqMWqBO1YlXOEP7CeTN1K4znwBidkcrZHvju7Ub8ZTG274+6IkEmzveUGXgdigPz8R/rnX1Qzp8UMSh0lQqTXOboH0/zQX4QT681uR1aKnJvLrw0BgeXpzNReNhGnmR5msh2fiXnlarhuc5KRH3EcsbId3sCAwEAAaOCCSMwggkfMB8GA1UdIwQYMBaAFFFo/5CvAgd1PMzZZWRiohK4WXI7MB0GA1UdDgQWBBRhD8DeFSE2Vt03bW3bog/FxUqXyzCCBkoGA1UdEQSCBkEwggY9gg8qLnBpbnRlcmVzdC5jb22CDCoucGluaW1nLmNvbYIQKi5waW50ZXJlc3QuaW5mb4IXKi5waW50ZXJlc3QuZW5naW5lZXJpbmeCEyoucGludGVyZXN0bWFpbC5jb22CDioucGludGVyZXN0LmF0gg4qLnBpbnRlcmVzdC5jaIIOKi5waW50ZXJlc3QuZGWCDioucGludGVyZXN0LmRrgg4qLnBpbnRlcmVzdC5pZYIOKi5waW50ZXJlc3QuanCCDioucGludGVyZXN0Lmtygg4qLnBpbnRlcmVzdC5teIIOKi5waW50ZXJlc3QucHSCDioucGludGVyZXN0LnNlghEqLnBpbnRlcmVzdC5jby5hdIIRKi5waW50ZXJlc3QuY28ua3KCESoucGludGVyZXN0LmNvLnVrghIqLnBpbnRlcmVzdC5jb20ubXiCBnBpbi5pdIINcGludGVyZXN0LmNvbYIKcGluaW1nLmNvbYIOcGludGVyZXN0LmluZm+CFXBpbnRlcmVzdC5lbmdpbmVlcmluZ4IRcGludGVyZXN0bWFpbC5jb22CDHBpbnRlcmVzdC5hdIIMcGludGVyZXN0LmNoggxwaW50ZXJlc3QuZGWCDHBpbnRlcmVzdC5ka4IMcGludGVyZXN0LmllggxwaW50ZXJlc3QuanCCDHBpbnRlcmVzdC5rcoIMcGludGVyZXN0Lm14ggxwaW50ZXJlc3QucHSCDHBpbnRlcmVzdC5zZYIPcGludGVyZXN0LmNvLmF0gg9waW50ZXJlc3QuY28ua3KCD3BpbnRlcmVzdC5jby51a4IQcGludGVyZXN0LmNvbS5teIIOKi5waW50ZXJlc3QuY2GCDioucGludGVyZXN0LmZyggxwaW50ZXJlc3QuY2GCDHBpbnRlcmVzdC5mcoIQcGludGVyZXN0LmNvbS5hdYISKi5waW50ZXJlc3QuY29tLmF1ggxwaW50ZXJlc3QubnqCDioucGludGVyZXN0Lm56ggxwaW50ZXJlc3QuZXOCDioucGludGVyZXN0LmVzggxwaW50ZXJlc3QuY2yCDioucGludGVyZXN0LmNsggxwaW50ZXJlc3QucGiCDioucGludGVyZXN0LnBoggxwaW50ZXJlc3QuaW6CDioucGludGVyZXN0Lmlugg9waW50ZXJlc3QuY28uaW6CESoucGludGVyZXN0LmNvLmluggxwaW50ZXJlc3QuYmWCDioucGludGVyZXN0LmJlggxwaW50ZXJlc3QucGWCDioucGludGVyZXN0LnBlggxwaW50ZXJlc3QuY2+CDioucGludGVyZXN0LmNvghBwaW50ZXJlc3QuY29tLnB5ghIqLnBpbnRlcmVzdC5jb20ucHmCEHBpbnRlcmVzdC5jb20uYm+CEioucGludGVyZXN0LmNvbS5ib4IQcGludGVyZXN0LmNvbS5lY4ISKi5waW50ZXJlc3QuY29tLmVjggxwaW50ZXJlc3QuZWOCDioucGludGVyZXN0LmVjggxwaW50ZXJlc3QuaHWCDioucGludGVyZXN0Lmh1ghBwaW50ZXJlc3QuY29tLnZughIqLnBpbnRlcmVzdC5jb20udm6CDHBpbnRlcmVzdC5pdIIOKi5waW50ZXJlc3QuaXSCDHBpbnRlcmVzdC5ydYIOKi5waW50ZXJlc3QucnWCEHBpbnRlcmVzdC5jb20ucGWCEioucGludGVyZXN0LmNvbS5wZYIQcGludGVyZXN0LmNvbS51eYISKi5waW50ZXJlc3QuY29tLnV5gg9waW50ZXJlc3QuY28ubnqCESoucGludGVyZXN0LmNvLm56ggxwaW50ZXJlc3QudWuCDioucGludGVyZXN0LnVrggxwaW50ZXJlc3Qudm6CDioucGludGVyZXN0LnZuggxwaW50ZXJlc3QuaWSCDioucGludGVyZXN0LmlkggxwaW50ZXJlc3QudGiCDioucGludGVyZXN0LnRoggxwaW50ZXJlc3QudHeCDioucGludGVyZXN0LnR3ggxwaW50ZXJlc3QubmyCDioucGludGVyZXN0Lm5sghcqLnRlc3RpbmcucGludGVyZXN0LmNvbTAOBgNVHQ8BAf8EBAMCBaAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMHUGA1UdHwRuMGwwNKAyoDCGLmh0dHA6Ly9jcmwzLmRpZ2ljZXJ0LmNvbS9zaGEyLWhhLXNlcnZlci1nNi5jcmwwNKAyoDCGLmh0dHA6Ly9jcmw0LmRpZ2ljZXJ0LmNvbS9zaGEyLWhhLXNlcnZlci1nNi5jcmwwTAYDVR0gBEUwQzA3BglghkgBhv1sAQEwKjAoBggrBgEFBQcCARYcaHR0cHM6Ly93d3cuZGlnaWNlcnQuY29tL0NQUzAIBgZngQwBAgIwgYMGCCsGAQUFBwEBBHcwdTAkBggrBgEFBQcwAYYYaHR0cDovL29jc3AuZGlnaWNlcnQuY29tME0GCCsGAQUFBzAChkFodHRwOi8vY2FjZXJ0cy5kaWdpY2VydC5jb20vRGlnaUNlcnRTSEEySGlnaEFzc3VyYW5jZVNlcnZlckNBLmNydDAMBgNVHRMBAf8EAjAAMIIBBQYKKwYBBAHWeQIEAgSB9gSB8wDxAHYApLkJkLQYWBSHuxOizGdwCjw1mAT5G9+443fNDsgN3BAAAAFrKNL+mgAABAMARzBFAiEArmUaVzEV4/sfmgxudtHKXaLrxUSLEZW3SI0h+kZG8dQCIE9avQtifguGleicGI+OrQTENAkLRD2h2lHcdq5vN3fSAHcAh3W/51l8+IxDmV+9827/Vo1HVjb/SrVgwbTq/16ggw8AAAFrKNL/tgAABAMASDBGAiEAzSi2aDTh1b6DJ61mmc2lRXZfx68orgji7x58ge5F+FYCIQDQ+SxUAju2+MP8W2iS0m1XinZITOwPFEakM4GZoL1GzDANBgkqhkiG9w0BAQsFAAOCAQEAaCRt+7t8x1ZeKmzWn2qsch/VndkGzIxFVi5UteyGfKgMWj7UzxD7/BW2WgGgfFTmolhdQd8kX9yQzJ19PkFF5PIrTLTx5tqbYzkRzgOqV8Oc52SC9AEhJgAr7OfAHBlb4uuy8+U/imnU2wQ1oCsJ9GU5fhoezvhU8nnFusdU6wf1vXZyfDTFiy71iW3eh5u4d5sbc5xVJgUuDgjel89+e02R47S3GAHovjFMqfg4S7HjXtk4C9fXAKHuPK7ZZ64ctePiPK8l+/5VpACFrAr56PiXGyty9o61tfs0XSXmEux1VZxQMJjX4Pmjx5ZZIWhhKPTntm0EGMKawmwa2kHu3w=="},{"base64":"MIIEsTCCA5mgAwIBAgIQBOHnpNxc8vNtwCtCuF0VnzANBgkqhkiG9w0BAQsFADBsMQswCQYDVQQGEwJVUzEVMBMGA1UEChMMRGlnaUNlcnQgSW5jMRkwFwYDVQQLExB3d3cuZGlnaWNlcnQuY29tMSswKQYDVQQDEyJEaWdpQ2VydCBIaWdoIEFzc3VyYW5jZSBFViBSb290IENBMB4XDTEzMTAyMjEyMDAwMFoXDTI4MTAyMjEyMDAwMFowcDELMAkGA1UEBhMCVVMxFTATBgNVBAoTDERpZ2lDZXJ0IEluYzEZMBcGA1UECxMQd3d3LmRpZ2ljZXJ0LmNvbTEvMC0GA1UEAxMmRGlnaUNlcnQgU0hBMiBIaWdoIEFzc3VyYW5jZSBTZXJ2ZXIgQ0EwggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQC24C/CJAbIbQRf1+8KZAayfSImZRauQkCbztyfn3YHPsMwVYcZuU+UDlqUH1VWtMICKq/QmO4LQNfE0DtyyBSe75CxEamu0si4QzrZCwvV1ZX1QK/IHe1NnF9Xt4ZQaJn1itrSxwUfqJfJ3KSxgoQtxq2lnMcZgqaFD15EWCo3j/018QsIJzJa9buLnqS9UdAn4t07QjOjBSjEuyjMmqwrIw14xnvmXnG3Sj4I+4G3FhahnSMSTeXXkgisdaScus0Xsh5ENWV/UyU50RwKmmMbGZJ0aAo3wsJSSMs5WqK24V3B3aAguCGikyZvFEohQcftbZvySC/zA/WiaJJTL17jAgMBAAGjggFJMIIBRTASBgNVHRMBAf8ECDAGAQH/AgEAMA4GA1UdDwEB/wQEAwIBhjAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwNAYIKwYBBQUHAQEEKDAmMCQGCCsGAQUFBzABhhhodHRwOi8vb2NzcC5kaWdpY2VydC5jb20wSwYDVR0fBEQwQjBAoD6gPIY6aHR0cDovL2NybDQuZGlnaWNlcnQuY29tL0RpZ2lDZXJ0SGlnaEFzc3VyYW5jZUVWUm9vdENBLmNybDA9BgNVHSAENjA0MDIGBFUdIAAwKjAoBggrBgEFBQcCARYcaHR0cHM6Ly93d3cuZGlnaWNlcnQuY29tL0NQUzAdBgNVHQ4EFgQUUWj/kK8CB3U8zNllZGKiErhZcjswHwYDVR0jBBgwFoAUsT7DaQP4v0cB1JgmGggC72NkK8MwDQYJKoZIhvcNAQELBQADggEBABiKlYkD5m3fXPwdaOpKj4PWUS+Na0QWnqxj9dJubISZi6qBcYRb7TROsLd5kinMLYBq8I4g4Xmk/gNHE+r1hspZcX30BJZr01lYPf7TMSVcGDiEo+afgv2MW5gxTs14nhr9hctJqvIni5ly/D6q1UEL2tU2ob8cbkdJf17ZSHwD2f2LSaCYJkJA69aSEaRkCldUxPUd1gJea6zuxICaEnL6VpPX/78whQYwvwt/Tv9XBZ0k7YXDK/umdaisLRbvfXknsuvCnQsH6qqF0wGjIChBWUMo0oHjqvbsezt3tkBigAVBRQHvFwY+3sAzm2fTYS5yh+Rp/BIAV0AecPUeybQ="}],"version":"0303","random":"bf68357f61106e944fe9fd6bb9f9b22391387a39aeb3605bdc2e861f7815383a","selected_cipher_suite":"c02f","compression_method":"00","session_ticket":""}},"reassembly_properties":{"reassembled":true},"ip":{"version":4,"ttl":128,"id":"9db6"},"src_ip":"151.101.128.84","dst_ip":"192.168.113.237","protocol":6,"src_port":443,"dst_port":41224,"event_start":1565200328.872734} +{"dns":{"base64":"42gBAAABAAAAAAAAA3d3dwlwaW50ZXJlc3QDY29tAAABAAE="},"ip":{"version":4,"ttl":64,"id":"d2b4"},"src_ip":"192.168.113.237","dst_ip":"192.168.113.2","protocol":17,"src_port":47727,"dst_port":53,"event_start":1565200328.964290} +{"dns":{"base64":"IFsBAAABAAAAAAAAA3d3dwlwaW50ZXJlc3QDY29tAAAcAAE="},"ip":{"version":4,"ttl":64,"id":"d2b5"},"src_ip":"192.168.113.237","dst_ip":"192.168.113.2","protocol":17,"src_port":43919,"dst_port":53,"event_start":1565200328.964478} +{"dns":{"base64":"42iBgAABAAcADQAEA3d3dwlwaW50ZXJlc3QDY29tAAABAAHADAAFAAEAAAAFABkDd3d3CXBpbnRlcmVzdANjb20EZ3NsYsAQwC8ABQABAAAABQAgDjItMDEtMzdkMi0wMDE4A2NkeAdjZWRleGlzA25ldADAVAAFAAEAAAAFACMEcHJvZAlwaW50ZXJlc3QGZ2xvYmFsA21hcAZmYXN0bHnAb8CAAAEAAQAAAAUABJdlAFTAgAABAAEAAAAFAASXZUBUwIAAAQABAAAABQAEl2XAVMCAAAEAAQAAAAUABJdlgFTAbwACAAEAAAAFABEBbAxndGxkLXNlcnZlcnPAb8BvAAIAAQAAAAUABAFrwPHAbwACAAEAAAAFAAQBY8DxwG8AAgABAAAABQAEAW3A8cBvAAIAAQAAAAUABAFqwPHAbwACAAEAAAAFAAQBacDxwG8AAgABAAAABQAEAWHA8cBvAAIAAQAAAAUABAFkwPHAbwACAAEAAAAFAAQBZsDxwG8AAgABAAAABQAEAWfA8cBvAAIAAQAAAAUABAFowPHAbwACAAEAAAAFAAQBYsDxwG8AAgABAAAABQAEAWXA8cFcAAEAAQAAAAUABMAFBh7BrAABAAEAAAAFAATAIQ4ewRwAAQABAAAABQAEwBpcHsFsAAEAAQAAAAUABMAfUB4="},"ip":{"version":4,"ttl":128,"id":"9dbc"},"src_ip":"192.168.113.2","dst_ip":"192.168.113.237","protocol":17,"src_port":53,"dst_port":47727,"event_start":1565200329.000132} +{"dns":{"base64":"IFuBgAABAAQAAQAAA3d3dwlwaW50ZXJlc3QDY29tAAAcAAHADAAFAAEAAAAFABkDd3d3CXBpbnRlcmVzdANjb20EZ3NsYsAQwC8ABQABAAAABQAgDjItMDEtMzdkMi0wMDE4A2NkeAdjZWRleGlzA25ldADAVAAFAAEAAAAFABwDd3d3CXBpbnRlcmVzdANjb20HZWRnZWtlecBvwIAABQABAAAABQAVBWU2NDQ5AWEKYWthbWFpZWRnZcBvwK4ABgABAAAABQAuA24wYcCwCmhvc3RtYXN0ZXIGYWthbWFpwBpdSw8CAAAD6AAAA+gAAAPoAAAHCA=="},"ip":{"version":4,"ttl":128,"id":"9dbd"},"src_ip":"192.168.113.2","dst_ip":"192.168.113.237","protocol":17,"src_port":53,"dst_port":43919,"event_start":1565200329.000160} +{"dns":{"base64":"bmsBAAABAAAAAAAABWU2NDQ5AWEKYWthbWFpZWRnZQNuZXQAABwAAQ=="},"ip":{"version":4,"ttl":64,"id":"d2bc"},"src_ip":"192.168.113.237","dst_ip":"192.168.113.2","protocol":17,"src_port":33532,"dst_port":53,"event_start":1565200329.001141} +{"dns":{"base64":"bmuBgAABAAAAAQAABWU2NDQ5AWEKYWthbWFpZWRnZQNuZXQAABwAAcASAAYAAQAAAAUAMQNuMGHAFApob3N0bWFzdGVyBmFrYW1haQNjb20AXUsPAgAAA+gAAAPoAAAD6AAABwg="},"ip":{"version":4,"ttl":128,"id":"9dbe"},"src_ip":"192.168.113.2","dst_ip":"192.168.113.237","protocol":17,"src_port":53,"dst_port":33532,"event_start":1565200329.036374} +{"fingerprints":{"tcp":"tcp/(40)()(40)(faf0)((020405b4)(04)(08)(01)(030307))"},"tcp":{"seq":289531354,"timestamp":{"ts_val":1676800530}},"ip":{"version":4,"ttl":64,"id":"287b"},"src_ip":"192.168.113.237","dst_ip":"151.101.128.84","protocol":6,"src_port":41226,"dst_port":443,"event_start":1565200329.036843} +{"fingerprints":{"tcp_server":"tcp_server/(40)()(80)(faf0)((020405b4))"},"tcp_server":{"seq":265966808},"ip":{"version":4,"ttl":128,"id":"9dbf"},"src_ip":"151.101.128.84","dst_ip":"192.168.113.237","protocol":6,"src_port":443,"dst_port":41226,"event_start":1565200329.075373} +{"fingerprints":{"tls":"tls/(0303)(130213031301c02cc030009fcca9cca8ccaac02bc02f009ec024c028006bc023c0270067c00ac0140039c009c0130033009d009c003d003c0035002f00ff)((0000)(000b000403000102)(000a000c000a001d0017001e00190018)(0023)(0016)(0017)(000d0030002e040305030603080708080809080a080b080408050806040105010601030302030301020103020202040205020602)(002b0009080304030303020301)(002d00020101)(0033))"},"tls":{"client":{"version":"0303","random":"e30e344a8d09da2ca1eb1854cd5588c2adaa06291e68e894e7f0bed3285f4756","session_id":"5aa9f03024520f62ee7bc702c7bc82c72af8b692df87ae4021bc17a388a9b97a","cipher_suites":"130213031301c02cc030009fcca9cca8ccaac02bc02f009ec024c028006bc023c0270067c00ac0140039c009c0130033009d009c003d003c0035002f00ff","compression_methods":"00","server_name":"www.pinterest.com","session_ticket":"","features":"[\"0303\",\"130213031301c02cc030009fcca9cca8ccaac02bc02f009ec024c028006bc023c0270067c00ac0140039c009c0130033009d009c003d003c0035002f00ff\",[[\"0000\",\"00140000117777772e70696e7465726573742e636f6d\"],[\"000b\",\"03000102\"],[\"000a\",\"000a001d0017001e00190018\"],[\"0023\",\"\"],[\"0016\",\"\"],[\"0017\",\"\"],[\"000d\",\"002e040305030603080708080809080a080b080408050806040105010601030302030301020103020202040205020602\"],[\"002b\",\"080304030303020301\"],[\"002d\",\"0101\"],[\"0033\",\"0024001d0020a4e7188886dbbd295f2c716a38a7493b029d11c857bc9ea2cac879dad020dd4e\"]]]"}},"ip":{"version":4,"ttl":64,"id":"287d"},"src_ip":"192.168.113.237","dst_ip":"151.101.128.84","protocol":6,"src_port":41226,"dst_port":443,"event_start":1565200329.075644} +{"fingerprints":{"tls_server":"tls_server/(0303)(c02f)((ff01)(0000)(000b000403000102)(0023)(0017))"},"tls":{"server":{"certs":[{"base64":"MIIMjTCCC3WgAwIBAgIQCGY+vEVuw5mUM8/1pacz4TANBgkqhkiG9w0BAQsFADBwMQswCQYDVQQGEwJVUzEVMBMGA1UEChMMRGlnaUNlcnQgSW5jMRkwFwYDVQQLExB3d3cuZGlnaWNlcnQuY29tMS8wLQYDVQQDEyZEaWdpQ2VydCBTSEEyIEhpZ2ggQXNzdXJhbmNlIFNlcnZlciBDQTAeFw0xOTA2MDUwMDAwMDBaFw0yMDA3MjIxMjAwMDBaMG4xCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1TYW4gRnJhbmNpc2NvMRgwFgYDVQQKEw9QaW50ZXJlc3QsIEluYy4xGDAWBgNVBAMMDyoucGludGVyZXN0LmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANkhv7I4WhMZQvgZAF11mLNfGTz4waZri4nOlRGlEZfA0/9jtBRCw98wADg9QG4Ur4HeRYCQWN0o9mP3XBtdguuP1qB6bOKr3KXtXrasQ6d0ZLTekwCyjBR+pG90QChIw0J5L/rGJlNJcbtqi93cbcpXS6O+DJ6ibF4GRCaczCu8bXbEgt2Ktl70cCrFfqMWqBO1YlXOEP7CeTN1K4znwBidkcrZHvju7Ub8ZTG274+6IkEmzveUGXgdigPz8R/rnX1Qzp8UMSh0lQqTXOboH0/zQX4QT681uR1aKnJvLrw0BgeXpzNReNhGnmR5msh2fiXnlarhuc5KRH3EcsbId3sCAwEAAaOCCSMwggkfMB8GA1UdIwQYMBaAFFFo/5CvAgd1PMzZZWRiohK4WXI7MB0GA1UdDgQWBBRhD8DeFSE2Vt03bW3bog/FxUqXyzCCBkoGA1UdEQSCBkEwggY9gg8qLnBpbnRlcmVzdC5jb22CDCoucGluaW1nLmNvbYIQKi5waW50ZXJlc3QuaW5mb4IXKi5waW50ZXJlc3QuZW5naW5lZXJpbmeCEyoucGludGVyZXN0bWFpbC5jb22CDioucGludGVyZXN0LmF0gg4qLnBpbnRlcmVzdC5jaIIOKi5waW50ZXJlc3QuZGWCDioucGludGVyZXN0LmRrgg4qLnBpbnRlcmVzdC5pZYIOKi5waW50ZXJlc3QuanCCDioucGludGVyZXN0Lmtygg4qLnBpbnRlcmVzdC5teIIOKi5waW50ZXJlc3QucHSCDioucGludGVyZXN0LnNlghEqLnBpbnRlcmVzdC5jby5hdIIRKi5waW50ZXJlc3QuY28ua3KCESoucGludGVyZXN0LmNvLnVrghIqLnBpbnRlcmVzdC5jb20ubXiCBnBpbi5pdIINcGludGVyZXN0LmNvbYIKcGluaW1nLmNvbYIOcGludGVyZXN0LmluZm+CFXBpbnRlcmVzdC5lbmdpbmVlcmluZ4IRcGludGVyZXN0bWFpbC5jb22CDHBpbnRlcmVzdC5hdIIMcGludGVyZXN0LmNoggxwaW50ZXJlc3QuZGWCDHBpbnRlcmVzdC5ka4IMcGludGVyZXN0LmllggxwaW50ZXJlc3QuanCCDHBpbnRlcmVzdC5rcoIMcGludGVyZXN0Lm14ggxwaW50ZXJlc3QucHSCDHBpbnRlcmVzdC5zZYIPcGludGVyZXN0LmNvLmF0gg9waW50ZXJlc3QuY28ua3KCD3BpbnRlcmVzdC5jby51a4IQcGludGVyZXN0LmNvbS5teIIOKi5waW50ZXJlc3QuY2GCDioucGludGVyZXN0LmZyggxwaW50ZXJlc3QuY2GCDHBpbnRlcmVzdC5mcoIQcGludGVyZXN0LmNvbS5hdYISKi5waW50ZXJlc3QuY29tLmF1ggxwaW50ZXJlc3QubnqCDioucGludGVyZXN0Lm56ggxwaW50ZXJlc3QuZXOCDioucGludGVyZXN0LmVzggxwaW50ZXJlc3QuY2yCDioucGludGVyZXN0LmNsggxwaW50ZXJlc3QucGiCDioucGludGVyZXN0LnBoggxwaW50ZXJlc3QuaW6CDioucGludGVyZXN0Lmlugg9waW50ZXJlc3QuY28uaW6CESoucGludGVyZXN0LmNvLmluggxwaW50ZXJlc3QuYmWCDioucGludGVyZXN0LmJlggxwaW50ZXJlc3QucGWCDioucGludGVyZXN0LnBlggxwaW50ZXJlc3QuY2+CDioucGludGVyZXN0LmNvghBwaW50ZXJlc3QuY29tLnB5ghIqLnBpbnRlcmVzdC5jb20ucHmCEHBpbnRlcmVzdC5jb20uYm+CEioucGludGVyZXN0LmNvbS5ib4IQcGludGVyZXN0LmNvbS5lY4ISKi5waW50ZXJlc3QuY29tLmVjggxwaW50ZXJlc3QuZWOCDioucGludGVyZXN0LmVjggxwaW50ZXJlc3QuaHWCDioucGludGVyZXN0Lmh1ghBwaW50ZXJlc3QuY29tLnZughIqLnBpbnRlcmVzdC5jb20udm6CDHBpbnRlcmVzdC5pdIIOKi5waW50ZXJlc3QuaXSCDHBpbnRlcmVzdC5ydYIOKi5waW50ZXJlc3QucnWCEHBpbnRlcmVzdC5jb20ucGWCEioucGludGVyZXN0LmNvbS5wZYIQcGludGVyZXN0LmNvbS51eYISKi5waW50ZXJlc3QuY29tLnV5gg9waW50ZXJlc3QuY28ubnqCESoucGludGVyZXN0LmNvLm56ggxwaW50ZXJlc3QudWuCDioucGludGVyZXN0LnVrggxwaW50ZXJlc3Qudm6CDioucGludGVyZXN0LnZuggxwaW50ZXJlc3QuaWSCDioucGludGVyZXN0LmlkggxwaW50ZXJlc3QudGiCDioucGludGVyZXN0LnRoggxwaW50ZXJlc3QudHeCDioucGludGVyZXN0LnR3ggxwaW50ZXJlc3QubmyCDioucGludGVyZXN0Lm5sghcqLnRlc3RpbmcucGludGVyZXN0LmNvbTAOBgNVHQ8BAf8EBAMCBaAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMHUGA1UdHwRuMGwwNKAyoDCGLmh0dHA6Ly9jcmwzLmRpZ2ljZXJ0LmNvbS9zaGEyLWhhLXNlcnZlci1nNi5jcmwwNKAyoDCGLmh0dHA6Ly9jcmw0LmRpZ2ljZXJ0LmNvbS9zaGEyLWhhLXNlcnZlci1nNi5jcmwwTAYDVR0gBEUwQzA3BglghkgBhv1sAQEwKjAoBggrBgEFBQcCARYcaHR0cHM6Ly93d3cuZGlnaWNlcnQuY29tL0NQUzAIBgZngQwBAgIwgYMGCCsGAQUFBwEBBHcwdTAkBggrBgEFBQcwAYYYaHR0cDovL29jc3AuZGlnaWNlcnQuY29tME0GCCsGAQUFBzAChkFodHRwOi8vY2FjZXJ0cy5kaWdpY2VydC5jb20vRGlnaUNlcnRTSEEySGlnaEFzc3VyYW5jZVNlcnZlckNBLmNydDAMBgNVHRMBAf8EAjAAMIIBBQYKKwYBBAHWeQIEAgSB9gSB8wDxAHYApLkJkLQYWBSHuxOizGdwCjw1mAT5G9+443fNDsgN3BAAAAFrKNL+mgAABAMARzBFAiEArmUaVzEV4/sfmgxudtHKXaLrxUSLEZW3SI0h+kZG8dQCIE9avQtifguGleicGI+OrQTENAkLRD2h2lHcdq5vN3fSAHcAh3W/51l8+IxDmV+9827/Vo1HVjb/SrVgwbTq/16ggw8AAAFrKNL/tgAABAMASDBGAiEAzSi2aDTh1b6DJ61mmc2lRXZfx68orgji7x58ge5F+FYCIQDQ+SxUAju2+MP8W2iS0m1XinZITOwPFEakM4GZoL1GzDANBgkqhkiG9w0BAQsFAAOCAQEAaCRt+7t8x1ZeKmzWn2qsch/VndkGzIxFVi5UteyGfKgMWj7UzxD7/BW2WgGgfFTmolhdQd8kX9yQzJ19PkFF5PIrTLTx5tqbYzkRzgOqV8Oc52SC9AEhJgAr7OfAHBlb4uuy8+U/imnU2wQ1oCsJ9GU5fhoezvhU8nnFusdU6wf1vXZyfDTFiy71iW3eh5u4d5sbc5xVJgUuDgjel89+e02R47S3GAHovjFMqfg4S7HjXtk4C9fXAKHuPK7ZZ64ctePiPK8l+/5VpACFrAr56PiXGyty9o61tfs0XSXmEux1VZxQMJjX4Pmjx5ZZIWhhKPTntm0EGMKawmwa2kHu3w=="},{"base64":"MIIEsTCCA5mgAwIBAgIQBOHnpNxc8vNtwCtCuF0VnzANBgkqhkiG9w0BAQsFADBsMQswCQYDVQQGEwJVUzEVMBMGA1UEChMMRGlnaUNlcnQgSW5jMRkwFwYDVQQLExB3d3cuZGlnaWNlcnQuY29tMSswKQYDVQQDEyJEaWdpQ2VydCBIaWdoIEFzc3VyYW5jZSBFViBSb290IENBMB4XDTEzMTAyMjEyMDAwMFoXDTI4MTAyMjEyMDAwMFowcDELMAkGA1UEBhMCVVMxFTATBgNVBAoTDERpZ2lDZXJ0IEluYzEZMBcGA1UECxMQd3d3LmRpZ2ljZXJ0LmNvbTEvMC0GA1UEAxMmRGlnaUNlcnQgU0hBMiBIaWdoIEFzc3VyYW5jZSBTZXJ2ZXIgQ0EwggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQC24C/CJAbIbQRf1+8KZAayfSImZRauQkCbztyfn3YHPsMwVYcZuU+UDlqUH1VWtMICKq/QmO4LQNfE0DtyyBSe75CxEamu0si4QzrZCwvV1ZX1QK/IHe1NnF9Xt4ZQaJn1itrSxwUfqJfJ3KSxgoQtxq2lnMcZgqaFD15EWCo3j/018QsIJzJa9buLnqS9UdAn4t07QjOjBSjEuyjMmqwrIw14xnvmXnG3Sj4I+4G3FhahnSMSTeXXkgisdaScus0Xsh5ENWV/UyU50RwKmmMbGZJ0aAo3wsJSSMs5WqK24V3B3aAguCGikyZvFEohQcftbZvySC/zA/WiaJJTL17jAgMBAAGjggFJMIIBRTASBgNVHRMBAf8ECDAGAQH/AgEAMA4GA1UdDwEB/wQEAwIBhjAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwNAYIKwYBBQUHAQEEKDAmMCQGCCsGAQUFBzABhhhodHRwOi8vb2NzcC5kaWdpY2VydC5jb20wSwYDVR0fBEQwQjBAoD6gPIY6aHR0cDovL2NybDQuZGlnaWNlcnQuY29tL0RpZ2lDZXJ0SGlnaEFzc3VyYW5jZUVWUm9vdENBLmNybDA9BgNVHSAENjA0MDIGBFUdIAAwKjAoBggrBgEFBQcCARYcaHR0cHM6Ly93d3cuZGlnaWNlcnQuY29tL0NQUzAdBgNVHQ4EFgQUUWj/kK8CB3U8zNllZGKiErhZcjswHwYDVR0jBBgwFoAUsT7DaQP4v0cB1JgmGggC72NkK8MwDQYJKoZIhvcNAQELBQADggEBABiKlYkD5m3fXPwdaOpKj4PWUS+Na0QWnqxj9dJubISZi6qBcYRb7TROsLd5kinMLYBq8I4g4Xmk/gNHE+r1hspZcX30BJZr01lYPf7TMSVcGDiEo+afgv2MW5gxTs14nhr9hctJqvIni5ly/D6q1UEL2tU2ob8cbkdJf17ZSHwD2f2LSaCYJkJA69aSEaRkCldUxPUd1gJea6zuxICaEnL6VpPX/78whQYwvwt/Tv9XBZ0k7YXDK/umdaisLRbvfXknsuvCnQsH6qqF0wGjIChBWUMo0oHjqvbsezt3tkBigAVBRQHvFwY+3sAzm2fTYS5yh+Rp/BIAV0AecPUeybQ="}],"version":"0303","random":"e1f34fbbfbb5dc48b8e25c00cc41f8ff499e15698c0caef117530884e36443ec","selected_cipher_suite":"c02f","compression_method":"00","session_ticket":""}},"reassembly_properties":{"reassembled":true},"ip":{"version":4,"ttl":128,"id":"9dc4"},"src_ip":"151.101.128.84","dst_ip":"192.168.113.237","protocol":6,"src_port":443,"dst_port":41226,"event_start":1565200329.120859} +{"dns":{"base64":"zRQBAAABAAAAAAAABHBsYXkGZ29vZ2xlA2NvbQAAAQAB"},"ip":{"version":4,"ttl":64,"id":"d2fb"},"src_ip":"192.168.113.237","dst_ip":"192.168.113.2","protocol":17,"src_port":54769,"dst_port":53,"event_start":1565200329.530603} +{"dns":{"base64":"/9UBAAABAAAAAAAABHBsYXkGZ29vZ2xlA2NvbQAAHAAB"},"ip":{"version":4,"ttl":64,"id":"d2fc"},"src_ip":"192.168.113.237","dst_ip":"192.168.113.2","protocol":17,"src_port":53320,"dst_port":53,"event_start":1565200329.530795} +{"dns":{"base64":"zRSBgAABAAEADQAOBHBsYXkGZ29vZ2xlA2NvbQAAAQABwAwAAQABAAAABQAErNkHzsAYAAIAAQAAAAUAFAFlDGd0bGQtc2VydmVycwNuZXQAwBgAAgABAAAABQAEAWPAP8AYAAIAAQAAAAUABAFnwD/AGAACAAEAAAAFAAQBZsA/wBgAAgABAAAABQAEAW3AP8AYAAIAAQAAAAUABAFkwD/AGAACAAEAAAAFAAQBaMA/wBgAAgABAAAABQAEAWLAP8AYAAIAAQAAAAUABAFhwD/AGAACAAEAAAAFAAQBa8A/wBgAAgABAAAABQAEAWnAP8AYAAIAAQAAAAUABAFqwD/AGAACAAEAAAAFAAQBbMA/wM0AAQABAAAABQAEwAUGHsC9AAEAAQAAAAUABMAhDh7AXQABAAEAAAAFAATAGlwewJ0AAQABAAAABQAEwB9QHsA9AAEAAQAAAAUABMAMXh7AfQABAAEAAAAFAATAIzMewG0AAQABAAAABQAEwCpdHsCtAAEAAQAAAAUABMA2cB7A7QABAAEAAAAFAATAK6wewP0AAQABAAAABQAEwDBPHsDdAAEAAQAAAAUABMA0sh7BDQABAAEAAAAFAATAKaIewI0AAQABAAAABQAEwDdTHsDNABwAAQAAAAUAECABBQOoPgAAAAAAAAACADA="},"ip":{"version":4,"ttl":128,"id":"9df4"},"src_ip":"192.168.113.2","dst_ip":"192.168.113.237","protocol":17,"src_port":53,"dst_port":54769,"event_start":1565200329.563999} +{"dns":{"base64":"/9WBgAABAAEADQANBHBsYXkGZ29vZ2xlA2NvbQAAHAABwAwAHAABAAAABQAQJgf4sEAECAEAAAAAAAAgDsAYAAIAAQAAAAUAFAFmDGd0bGQtc2VydmVycwNuZXQAwBgAAgABAAAABQAEAWnAS8AYAAIAAQAAAAUABAFlwEvAGAACAAEAAAAFAAQBaMBLwBgAAgABAAAABQAEAWTAS8AYAAIAAQAAAAUABAFtwEvAGAACAAEAAAAFAAQBY8BLwBgAAgABAAAABQAEAWzAS8AYAAIAAQAAAAUABAFhwEvAGAACAAEAAAAFAAQBa8BLwBgAAgABAAAABQAEAWLAS8AYAAIAAQAAAAUABAFnwEvAGAACAAEAAAAFAAQBasBLwNkAAQABAAAABQAEwAUGHsD5AAEAAQAAAAUABMAhDh7AuQABAAEAAAAFAATAGlwewJkAAQABAAAABQAEwB9QHsB5AAEAAQAAAAUABMAMXh7ASQABAAEAAAAFAATAIzMewQkAAQABAAAABQAEwCpdHsCJAAEAAQAAAAUABMA2cB7AaQABAAEAAAAFAATAK6wewRkAAQABAAAABQAEwDBPHsDpAAEAAQAAAAUABMA0sh7AyQABAAEAAAAFAATAKaIewKkAAQABAAAABQAEwDdTHg=="},"ip":{"version":4,"ttl":128,"id":"9df5"},"src_ip":"192.168.113.2","dst_ip":"192.168.113.237","protocol":17,"src_port":53,"dst_port":53320,"event_start":1565200329.564016} +{"fingerprints":{"tcp":"tcp/(40)()(40)(faf0)((020405b4)(04)(08)(01)(030307))"},"tcp":{"seq":3729423561,"timestamp":{"ts_val":853140185}},"ip":{"version":4,"ttl":64,"id":"b2ec"},"src_ip":"192.168.113.237","dst_ip":"172.217.7.206","protocol":6,"src_port":60726,"dst_port":443,"event_start":1565200329.564525} +{"fingerprints":{"tcp_server":"tcp_server/(40)()(80)(faf0)((020405b4))"},"tcp_server":{"seq":4157823385},"ip":{"version":4,"ttl":128,"id":"9df6"},"src_ip":"172.217.7.206","dst_ip":"192.168.113.237","protocol":6,"src_port":443,"dst_port":60726,"event_start":1565200329.603878} +{"fingerprints":{"tls":"tls/(0303)(130213031301c02cc030009fcca9cca8ccaac02bc02f009ec024c028006bc023c0270067c00ac0140039c009c0130033009d009c003d003c0035002f00ff)((0000)(000b000403000102)(000a000c000a001d0017001e00190018)(0023)(0016)(0017)(000d0030002e040305030603080708080809080a080b080408050806040105010601030302030301020103020202040205020602)(002b0009080304030303020301)(002d00020101)(0033))"},"tls":{"client":{"version":"0303","random":"e212d08313468e02841b54c0fc9f1790262252bfe2d620c86d44ab54970fa17a","session_id":"dfdabb09e68908ad2159120b0a06dfcc080e75b027a642aaefd811a1bbfb5cf7","cipher_suites":"130213031301c02cc030009fcca9cca8ccaac02bc02f009ec024c028006bc023c0270067c00ac0140039c009c0130033009d009c003d003c0035002f00ff","compression_methods":"00","server_name":"play.google.com","session_ticket":"","features":"[\"0303\",\"130213031301c02cc030009fcca9cca8ccaac02bc02f009ec024c028006bc023c0270067c00ac0140039c009c0130033009d009c003d003c0035002f00ff\",[[\"0000\",\"001200000f706c61792e676f6f676c652e636f6d\"],[\"000b\",\"03000102\"],[\"000a\",\"000a001d0017001e00190018\"],[\"0023\",\"\"],[\"0016\",\"\"],[\"0017\",\"\"],[\"000d\",\"002e040305030603080708080809080a080b080408050806040105010601030302030301020103020202040205020602\"],[\"002b\",\"080304030303020301\"],[\"002d\",\"0101\"],[\"0033\",\"0024001d0020f3dff61fe5deca1f4d3c6f8ea30196e5f3736452d8c663646b2d855379244229\"]]]"}},"ip":{"version":4,"ttl":64,"id":"b2ee"},"src_ip":"192.168.113.237","dst_ip":"172.217.7.206","protocol":6,"src_port":60726,"dst_port":443,"event_start":1565200329.604144} +{"fingerprints":{"tls_server":"tls_server/(0303)(1302)((0033)(002b00020304))"},"tls":{"server":{"version":"0303","random":"edf68c7ff1619b2a1d803dcc90446250bf1278e164634d570ed37c8c0c4e0e07","selected_cipher_suite":"1302","compression_method":"00"}},"ip":{"version":4,"ttl":128,"id":"9df8"},"src_ip":"172.217.7.206","dst_ip":"192.168.113.237","protocol":6,"src_port":443,"dst_port":60726,"event_start":1565200329.653408} +{"dns":{"base64":"dMoBAAABAAAAAAAAEGdvb2dsZXRhZ21hbmFnZXIDY29tAAABAAE="},"ip":{"version":4,"ttl":64,"id":"d347"},"src_ip":"192.168.113.237","dst_ip":"192.168.113.2","protocol":17,"src_port":53971,"dst_port":53,"event_start":1565200330.265257} +{"dns":{"base64":"S0oBAAABAAAAAAAAEGdvb2dsZXRhZ21hbmFnZXIDY29tAAAcAAE="},"ip":{"version":4,"ttl":64,"id":"d348"},"src_ip":"192.168.113.237","dst_ip":"192.168.113.2","protocol":17,"src_port":39524,"dst_port":53,"event_start":1565200330.265331} +{"dns":{"base64":"dMqBgAABAAEADQANEGdvb2dsZXRhZ21hbmFnZXIDY29tAAABAAHADAABAAEAAAAFAASs2aSIwB0AAgABAAAABQAUAWEMZ3RsZC1zZXJ2ZXJzA25ldADAHQACAAEAAAAFAAQBasBEwB0AAgABAAAABQAEAWTARMAdAAIAAQAAAAUABAFswETAHQACAAEAAAAFAAQBZcBEwB0AAgABAAAABQAEAWvARMAdAAIAAQAAAAUABAFtwETAHQACAAEAAAAFAAQBZsBEwB0AAgABAAAABQAEAWPARMAdAAIAAQAAAAUABAFpwETAHQACAAEAAAAFAAQBYsBEwB0AAgABAAAABQAEAWjARMAdAAIAAQAAAAUABAFnwETAQgABAAEAAAAFAATABQYewPIAAQABAAAABQAEwCEOHsDSAAEAAQAAAAUABMAaXB7AcgABAAEAAAAFAATAH1AewJIAAQABAAAABQAEwAxeHsDCAAEAAQAAAAUABMAjMx7BEgABAAEAAAAFAATAKl0ewQIAAQABAAAABQAEwDZwHsDiAAEAAQAAAAUABMArrB7AYgABAAEAAAAFAATAME8ewKIAAQABAAAABQAEwDSyHsCCAAEAAQAAAAUABMApoh7AsgABAAEAAAAFAATAN1Me"},"ip":{"version":4,"ttl":128,"id":"a1a8"},"src_ip":"192.168.113.2","dst_ip":"192.168.113.237","protocol":17,"src_port":53,"dst_port":53971,"event_start":1565200330.303206} +{"dns":{"base64":"S0qBgAABAAEADQANEGdvb2dsZXRhZ21hbmFnZXIDY29tAAAcAAHADAAcAAEAAAAFABAmB/iwQAQIFAAAAAAAACAIwB0AAgABAAAABQAUAWoMZ3RsZC1zZXJ2ZXJzA25ldADAHQACAAEAAAAFAAQBZ8BQwB0AAgABAAAABQAEAWHAUMAdAAIAAQAAAAUABAFowFDAHQACAAEAAAAFAAQBYsBQwB0AAgABAAAABQAEAW3AUMAdAAIAAQAAAAUABAFrwFDAHQACAAEAAAAFAAQBacBQwB0AAgABAAAABQAEAWTAUMAdAAIAAQAAAAUABAFjwFDAHQACAAEAAAAFAAQBZsBQwB0AAgABAAAABQAEAWXAUMAdAAIAAQAAAAUABAFswFDAfgABAAEAAAAFAATABQYewJ4AAQABAAAABQAEwCEOHsDuAAEAAQAAAAUABMAaXB7A3gABAAEAAAAFAATAH1AewQ4AAQABAAAABQAEwAxeHsD+AAEAAQAAAAUABMAjMx7AbgABAAEAAAAFAATAKl0ewI4AAQABAAAABQAEwDZwHsDOAAEAAQAAAAUABMArrB7ATgABAAEAAAAFAATAME8ewL4AAQABAAAABQAEwDSyHsEeAAEAAQAAAAUABMApoh7ArgABAAEAAAAFAATAN1Me"},"ip":{"version":4,"ttl":128,"id":"a1a9"},"src_ip":"192.168.113.2","dst_ip":"192.168.113.237","protocol":17,"src_port":53,"dst_port":39524,"event_start":1565200330.303460} +{"fingerprints":{"tcp":"tcp/(40)()(40)(faf0)((020405b4)(04)(08)(01)(030307))"},"tcp":{"seq":2304560503,"timestamp":{"ts_val":2077471733}},"ip":{"version":4,"ttl":64,"id":"03a9"},"src_ip":"192.168.113.237","dst_ip":"172.217.164.136","protocol":6,"src_port":35238,"dst_port":443,"event_start":1565200330.303681} +{"fingerprints":{"tcp_server":"tcp_server/(40)()(80)(faf0)((020405b4))"},"tcp_server":{"seq":3404121544},"ip":{"version":4,"ttl":128,"id":"a1aa"},"src_ip":"172.217.164.136","dst_ip":"192.168.113.237","protocol":6,"src_port":443,"dst_port":35238,"event_start":1565200330.346191} +{"fingerprints":{"tls":"tls/(0303)(130213031301c02cc030009fcca9cca8ccaac02bc02f009ec024c028006bc023c0270067c00ac0140039c009c0130033009d009c003d003c0035002f00ff)((0000)(000b000403000102)(000a000c000a001d0017001e00190018)(0023)(0016)(0017)(000d0030002e040305030603080708080809080a080b080408050806040105010601030302030301020103020202040205020602)(002b0009080304030303020301)(002d00020101)(0033))"},"tls":{"client":{"version":"0303","random":"bc98139e3da3d4ac1e3920ced02e64227493a7000a88b69b35422dd4c19cdd74","session_id":"6ebfb93d4f05a313ecbbc7acb38e701570fa46b6d9b99e8d6abe6f02104dae58","cipher_suites":"130213031301c02cc030009fcca9cca8ccaac02bc02f009ec024c028006bc023c0270067c00ac0140039c009c0130033009d009c003d003c0035002f00ff","compression_methods":"00","server_name":"googletagmanager.com","session_ticket":"","features":"[\"0303\",\"130213031301c02cc030009fcca9cca8ccaac02bc02f009ec024c028006bc023c0270067c00ac0140039c009c0130033009d009c003d003c0035002f00ff\",[[\"0000\",\"0017000014676f6f676c657461676d616e616765722e636f6d\"],[\"000b\",\"03000102\"],[\"000a\",\"000a001d0017001e00190018\"],[\"0023\",\"\"],[\"0016\",\"\"],[\"0017\",\"\"],[\"000d\",\"002e040305030603080708080809080a080b080408050806040105010601030302030301020103020202040205020602\"],[\"002b\",\"080304030303020301\"],[\"002d\",\"0101\"],[\"0033\",\"0024001d00201de99f348a140b800dd089c5fd34cf200d48dbc1b4a6b04f0a26a9d14088707d\"]]]"}},"ip":{"version":4,"ttl":64,"id":"03ab"},"src_ip":"192.168.113.237","dst_ip":"172.217.164.136","protocol":6,"src_port":35238,"dst_port":443,"event_start":1565200330.346586} +{"fingerprints":{"tls_server":"tls_server/(0303)(1302)((0033)(002b00020304))"},"tls":{"server":{"version":"0303","random":"406a5dd776aa1b5cc5e0c6e0f20f7461954614eb09e8d3b08a00dd72ce057fc1","selected_cipher_suite":"1302","compression_method":"00"}},"ip":{"version":4,"ttl":128,"id":"a1ac"},"src_ip":"172.217.164.136","dst_ip":"192.168.113.237","protocol":6,"src_port":443,"dst_port":35238,"event_start":1565200330.397378} +{"dns":{"base64":"3JUBAAABAAAAAAAABG1hcHMGZ29vZ2xlA2NvbQAAAQAB"},"ip":{"version":4,"ttl":64,"id":"d386"},"src_ip":"192.168.113.237","dst_ip":"192.168.113.2","protocol":17,"src_port":36423,"dst_port":53,"event_start":1565200330.543852} +{"dns":{"base64":"czYBAAABAAAAAAAABG1hcHMGZ29vZ2xlA2NvbQAAHAAB"},"ip":{"version":4,"ttl":64,"id":"d387"},"src_ip":"192.168.113.237","dst_ip":"192.168.113.2","protocol":17,"src_port":53887,"dst_port":53,"event_start":1565200330.544060} +{"dns":{"base64":"3JWBgAABAAEADQAOBG1hcHMGZ29vZ2xlA2NvbQAAAQABwAwAAQABAAAABQAErNkHzsAYAAIAAQAAAAUAFAFpDGd0bGQtc2VydmVycwNuZXQAwBgAAgABAAAABQAEAWLAP8AYAAIAAQAAAAUABAFtwD/AGAACAAEAAAAFAAQBZMA/wBgAAgABAAAABQAEAWbAP8AYAAIAAQAAAAUABAFrwD/AGAACAAEAAAAFAAQBY8A/wBgAAgABAAAABQAEAWfAP8AYAAIAAQAAAAUABAFlwD/AGAACAAEAAAAFAAQBasA/wBgAAgABAAAABQAEAWHAP8AYAAIAAQAAAAUABAFswD/AGAACAAEAAAAFAAQBaMA/wO0AAQABAAAABQAEwAUGHsBdAAEAAQAAAAUABMAhDh7ArQABAAEAAAAFAATAGlwewH0AAQABAAAABQAEwB9QHsDNAAEAAQAAAAUABMAMXh7AjQABAAEAAAAFAATAIzMewL0AAQABAAAABQAEwCpdHsENAAEAAQAAAAUABMA2cB7APQABAAEAAAAFAATAK6wewN0AAQABAAAABQAEwDBPHsCdAAEAAQAAAAUABMA0sh7A/QABAAEAAAAFAATAKaIewG0AAQABAAAABQAEwDdTHsDtABwAAQAAAAUAECABBQOoPgAAAAAAAAACADA="},"ip":{"version":4,"ttl":128,"id":"a1b7"},"src_ip":"192.168.113.2","dst_ip":"192.168.113.237","protocol":17,"src_port":53,"dst_port":36423,"event_start":1565200330.578912} +{"dns":{"base64":"czaBgAABAAEADQANBG1hcHMGZ29vZ2xlA2NvbQAAHAABwAwAHAABAAAABQAQJgf4sEAECAEAAAAAAAAgDsAYAAIAAQAAAAUAFAFsDGd0bGQtc2VydmVycwNuZXQAwBgAAgABAAAABQAEAWnAS8AYAAIAAQAAAAUABAFjwEvAGAACAAEAAAAFAAQBYcBLwBgAAgABAAAABQAEAWXAS8AYAAIAAQAAAAUABAFowEvAGAACAAEAAAAFAAQBYsBLwBgAAgABAAAABQAEAW3AS8AYAAIAAQAAAAUABAFrwEvAGAACAAEAAAAFAAQBasBLwBgAAgABAAAABQAEAWfAS8AYAAIAAQAAAAUABAFkwEvAGAACAAEAAAAFAAQBZsBLwIkAAQABAAAABQAEwAUGHsC5AAEAAQAAAAUABMAhDh7AeQABAAEAAAAFAATAGlwewQkAAQABAAAABQAEwB9QHsCZAAEAAQAAAAUABMAMXh7BGQABAAEAAAAFAATAIzMewPkAAQABAAAABQAEwCpdHsCpAAEAAQAAAAUABMA2cB7AaQABAAEAAAAFAATAK6wewOkAAQABAAAABQAEwDBPHsDZAAEAAQAAAAUABMA0sh7ASQABAAEAAAAFAATAKaIewMkAAQABAAAABQAEwDdTHg=="},"ip":{"version":4,"ttl":128,"id":"a1b8"},"src_ip":"192.168.113.2","dst_ip":"192.168.113.237","protocol":17,"src_port":53,"dst_port":53887,"event_start":1565200330.578926} +{"fingerprints":{"tcp":"tcp/(40)()(40)(faf0)((020405b4)(04)(08)(01)(030307))"},"tcp":{"seq":3414963931,"timestamp":{"ts_val":853141200}},"ip":{"version":4,"ttl":64,"id":"f9f8"},"src_ip":"192.168.113.237","dst_ip":"172.217.7.206","protocol":6,"src_port":60730,"dst_port":443,"event_start":1565200330.579553} +{"fingerprints":{"tcp_server":"tcp_server/(40)()(80)(faf0)((020405b4))"},"tcp_server":{"seq":3478050292},"ip":{"version":4,"ttl":128,"id":"a1b9"},"src_ip":"172.217.7.206","dst_ip":"192.168.113.237","protocol":6,"src_port":443,"dst_port":60730,"event_start":1565200330.619349} +{"fingerprints":{"tls":"tls/(0303)(130213031301c02cc030009fcca9cca8ccaac02bc02f009ec024c028006bc023c0270067c00ac0140039c009c0130033009d009c003d003c0035002f00ff)((0000)(000b000403000102)(000a000c000a001d0017001e00190018)(0023)(0016)(0017)(000d0030002e040305030603080708080809080a080b080408050806040105010601030302030301020103020202040205020602)(002b0009080304030303020301)(002d00020101)(0033))"},"tls":{"client":{"version":"0303","random":"cf8b061405bf01576cfa396462724237b1299467cc45accb2da23bc61df95a2d","session_id":"0dbf7e8e26aff83621e5d847c70e898635c1bb759dc6c9aea1c85460eb6464a1","cipher_suites":"130213031301c02cc030009fcca9cca8ccaac02bc02f009ec024c028006bc023c0270067c00ac0140039c009c0130033009d009c003d003c0035002f00ff","compression_methods":"00","server_name":"maps.google.com","session_ticket":"","features":"[\"0303\",\"130213031301c02cc030009fcca9cca8ccaac02bc02f009ec024c028006bc023c0270067c00ac0140039c009c0130033009d009c003d003c0035002f00ff\",[[\"0000\",\"001200000f6d6170732e676f6f676c652e636f6d\"],[\"000b\",\"03000102\"],[\"000a\",\"000a001d0017001e00190018\"],[\"0023\",\"\"],[\"0016\",\"\"],[\"0017\",\"\"],[\"000d\",\"002e040305030603080708080809080a080b080408050806040105010601030302030301020103020202040205020602\"],[\"002b\",\"080304030303020301\"],[\"002d\",\"0101\"],[\"0033\",\"0024001d0020782d69987de27def316838a79bb8500f048e43757ff29229c375bda4fd85ce71\"]]]"}},"ip":{"version":4,"ttl":64,"id":"f9fa"},"src_ip":"192.168.113.237","dst_ip":"172.217.7.206","protocol":6,"src_port":60730,"dst_port":443,"event_start":1565200330.619674} +{"fingerprints":{"tls_server":"tls_server/(0303)(1302)((0033)(002b00020304))"},"tls":{"server":{"version":"0303","random":"986ea5111b77e494b72d64747f9f2caea3d37baa0a7155425a5d16dd427a1a96","selected_cipher_suite":"1302","compression_method":"00"}},"ip":{"version":4,"ttl":128,"id":"a1bb"},"src_ip":"172.217.7.206","dst_ip":"192.168.113.237","protocol":6,"src_port":443,"dst_port":60730,"event_start":1565200330.671147} +{"fingerprints":{"tcp":"tcp/(40)()(40)(faf0)((020405b4)(04)(08)(01)(030307))"},"tcp":{"seq":101603264,"timestamp":{"ts_val":2521263406}},"ip":{"version":4,"ttl":64,"id":"98a8"},"src_ip":"192.168.113.237","dst_ip":"172.217.7.228","protocol":6,"src_port":55984,"dst_port":443,"event_start":1565200330.856177} +{"fingerprints":{"tcp_server":"tcp_server/(40)()(80)(faf0)((020405b4))"},"tcp_server":{"seq":2626088878},"ip":{"version":4,"ttl":128,"id":"a1c5"},"src_ip":"172.217.7.228","dst_ip":"192.168.113.237","protocol":6,"src_port":443,"dst_port":55984,"event_start":1565200330.895271} +{"fingerprints":{"tls":"tls/(0303)(130213031301c02cc030009fcca9cca8ccaac02bc02f009ec024c028006bc023c0270067c00ac0140039c009c0130033009d009c003d003c0035002f00ff)((0000)(000b000403000102)(000a000c000a001d0017001e00190018)(0023)(0016)(0017)(000d0030002e040305030603080708080809080a080b080408050806040105010601030302030301020103020202040205020602)(002b0009080304030303020301)(002d00020101)(0033))"},"tls":{"client":{"version":"0303","random":"d031fca6b07973a066ca9fa3a5cc2448e9efadffa4d2e1339f387a1ba98bae8d","session_id":"03326a57be129e7aa82f86dbe24c89db4e589f333bf70c0703c203fb277f00d2","cipher_suites":"130213031301c02cc030009fcca9cca8ccaac02bc02f009ec024c028006bc023c0270067c00ac0140039c009c0130033009d009c003d003c0035002f00ff","compression_methods":"00","server_name":"www.google.com","session_ticket":"","features":"[\"0303\",\"130213031301c02cc030009fcca9cca8ccaac02bc02f009ec024c028006bc023c0270067c00ac0140039c009c0130033009d009c003d003c0035002f00ff\",[[\"0000\",\"001100000e7777772e676f6f676c652e636f6d\"],[\"000b\",\"03000102\"],[\"000a\",\"000a001d0017001e00190018\"],[\"0023\",\"\"],[\"0016\",\"\"],[\"0017\",\"\"],[\"000d\",\"002e040305030603080708080809080a080b080408050806040105010601030302030301020103020202040205020602\"],[\"002b\",\"080304030303020301\"],[\"002d\",\"0101\"],[\"0033\",\"0024001d0020de7c059e00a1d1d34f2422c07d964e0851e1d216e7459508ba5ef8e3387c530c\"]]]"}},"ip":{"version":4,"ttl":64,"id":"98aa"},"src_ip":"192.168.113.237","dst_ip":"172.217.7.228","protocol":6,"src_port":55984,"dst_port":443,"event_start":1565200330.895541} +{"fingerprints":{"tls_server":"tls_server/(0303)(1302)((0033)(002b00020304))"},"tls":{"server":{"version":"0303","random":"eb701e980d3a7076d2a5ccd9fe037da7127a4bca3bb2959d786044ca68c6bd2d","selected_cipher_suite":"1302","compression_method":"00"}},"ip":{"version":4,"ttl":128,"id":"a1c7"},"src_ip":"172.217.7.228","dst_ip":"192.168.113.237","protocol":6,"src_port":443,"dst_port":55984,"event_start":1565200331.112443} +{"dns":{"base64":"eUgBAAABAAAAAAAACGJsb2dzcG90A2NvbQAAAQAB"},"ip":{"version":4,"ttl":64,"id":"d425"},"src_ip":"192.168.113.237","dst_ip":"192.168.113.2","protocol":17,"src_port":48131,"dst_port":53,"event_start":1565200331.419731} +{"dns":{"base64":"M6kBAAABAAAAAAAACGJsb2dzcG90A2NvbQAAHAAB"},"ip":{"version":4,"ttl":64,"id":"d426"},"src_ip":"192.168.113.237","dst_ip":"192.168.113.2","protocol":17,"src_port":43599,"dst_port":53,"event_start":1565200331.419926} +{"dns":{"base64":"eUiBgAABAAEABAAICGJsb2dzcG90A2NvbQAAAQABwAwAAQABAAAABQAErNkH6cAMAAIAAQAAAAUADQNuczQGZ29vZ2xlwBXADAACAAEAAAAFAAYDbnMzwD7ADAACAAEAAAAFAAYDbnMywD7ADAACAAEAAAAFAAYDbnMxwD7AdwABAAEAAAAFAATY7yAKwGUAAQABAAAABQAE2O8iCsBTAAEAAQAAAAUABNjvJArAOgABAAEAAAAFAATY7yYKwHcAHAABAAAABQAQIAFIYEgCADIAAAAAAAAACsBlABwAAQAAAAUAECABSGBIAgA0AAAAAAAAAArAUwAcAAEAAAAFABAgAUhgSAIANgAAAAAAAAAKwDoAHAABAAAABQAQIAFIYEgCADgAAAAAAAAACg=="},"ip":{"version":4,"ttl":128,"id":"a1f3"},"src_ip":"192.168.113.2","dst_ip":"192.168.113.237","protocol":17,"src_port":53,"dst_port":48131,"event_start":1565200331.472656} +{"dns":{"base64":"M6mBgAABAAEADQANCGJsb2dzcG90A2NvbQAAHAABwAwAHAABAAAABQAQJgf4sEAECAIAAAAAAAAgCcAVAAIAAQAAAAUAFAFkDGd0bGQtc2VydmVycwNuZXQAwBUAAgABAAAABQAEAWPASMAVAAIAAQAAAAUABAFtwEjAFQACAAEAAAAFAAQBbMBIwBUAAgABAAAABQAEAWfASMAVAAIAAQAAAAUABAFqwEjAFQACAAEAAAAFAAQBZcBIwBUAAgABAAAABQAEAWvASMAVAAIAAQAAAAUABAFiwEjAFQACAAEAAAAFAAQBaMBIwBUAAgABAAAABQAEAWbASMAVAAIAAQAAAAUABAFhwEjAFQACAAEAAAAFAAQBacBIwQYAAQABAAAABQAEwAUGHsDWAAEAAQAAAAUABMAhDh7AZgABAAEAAAAFAATAGlwewEYAAQABAAAABQAEwB9QHsC2AAEAAQAAAAUABMAMXh7A9gABAAEAAAAFAATAIzMewJYAAQABAAAABQAEwCpdHsDmAAEAAQAAAAUABMA2cB7BFgABAAEAAAAFAATAK6wewKYAAQABAAAABQAEwDBPHsDGAAEAAQAAAAUABMA0sh7AhgABAAEAAAAFAATAKaIewHYAAQABAAAABQAEwDdTHg=="},"ip":{"version":4,"ttl":128,"id":"a1f4"},"src_ip":"192.168.113.2","dst_ip":"192.168.113.237","protocol":17,"src_port":53,"dst_port":43599,"event_start":1565200331.472677} +{"fingerprints":{"tcp":"tcp/(40)()(40)(faf0)((020405b4)(04)(08)(01)(030307))"},"tcp":{"seq":1453174003,"timestamp":{"ts_val":2641815692}},"ip":{"version":4,"ttl":64,"id":"7cf1"},"src_ip":"192.168.113.237","dst_ip":"172.217.7.233","protocol":6,"src_port":59916,"dst_port":443,"event_start":1565200331.473374} +{"fingerprints":{"tcp_server":"tcp_server/(40)()(80)(faf0)((020405b4))"},"tcp_server":{"seq":3532055911},"ip":{"version":4,"ttl":128,"id":"a1f5"},"src_ip":"172.217.7.233","dst_ip":"192.168.113.237","protocol":6,"src_port":443,"dst_port":59916,"event_start":1565200331.510841} +{"fingerprints":{"tls":"tls/(0303)(130213031301c02cc030009fcca9cca8ccaac02bc02f009ec024c028006bc023c0270067c00ac0140039c009c0130033009d009c003d003c0035002f00ff)((0000)(000b000403000102)(000a000c000a001d0017001e00190018)(0023)(0016)(0017)(000d0030002e040305030603080708080809080a080b080408050806040105010601030302030301020103020202040205020602)(002b0009080304030303020301)(002d00020101)(0033))"},"tls":{"client":{"version":"0303","random":"163567252eee635bc5f1ac4aeac4bb671b890c340db9db5919b3e72c1b4acf41","session_id":"c9bc460e05394f2d566256a2a0b4ea945488e86d52c635f0797da017e0069b80","cipher_suites":"130213031301c02cc030009fcca9cca8ccaac02bc02f009ec024c028006bc023c0270067c00ac0140039c009c0130033009d009c003d003c0035002f00ff","compression_methods":"00","server_name":"blogspot.com","session_ticket":"","features":"[\"0303\",\"130213031301c02cc030009fcca9cca8ccaac02bc02f009ec024c028006bc023c0270067c00ac0140039c009c0130033009d009c003d003c0035002f00ff\",[[\"0000\",\"000f00000c626c6f6773706f742e636f6d\"],[\"000b\",\"03000102\"],[\"000a\",\"000a001d0017001e00190018\"],[\"0023\",\"\"],[\"0016\",\"\"],[\"0017\",\"\"],[\"000d\",\"002e040305030603080708080809080a080b080408050806040105010601030302030301020103020202040205020602\"],[\"002b\",\"080304030303020301\"],[\"002d\",\"0101\"],[\"0033\",\"0024001d0020a43fcd9509b7b13636409817edd7e4ec49a1f7519b9f9c7604a003d60a4f9f79\"]]]"}},"ip":{"version":4,"ttl":64,"id":"7cf3"},"src_ip":"192.168.113.237","dst_ip":"172.217.7.233","protocol":6,"src_port":59916,"dst_port":443,"event_start":1565200331.511219} +{"fingerprints":{"tls_server":"tls_server/(0303)(1302)((0033)(002b00020304))"},"tls":{"server":{"version":"0303","random":"768b8ad9494da4d8dfadb53a6f0498253622ec9583d52a04d207788d9eab26b7","selected_cipher_suite":"1302","compression_method":"00"}},"ip":{"version":4,"ttl":128,"id":"a1f8"},"src_ip":"172.217.7.233","dst_ip":"192.168.113.237","protocol":6,"src_port":443,"dst_port":59916,"event_start":1565200331.560478} +{"dns":{"base64":"5BYBAAABAAAAAAAAA3d3dwdibG9nZ2VyA2NvbQAAAQAB"},"ip":{"version":4,"ttl":64,"id":"d45e"},"src_ip":"192.168.113.237","dst_ip":"192.168.113.2","protocol":17,"src_port":43627,"dst_port":53,"event_start":1565200331.656650} +{"dns":{"base64":"HvMBAAABAAAAAAAAA3d3dwdibG9nZ2VyA2NvbQAAHAAB"},"ip":{"version":4,"ttl":64,"id":"d45f"},"src_ip":"192.168.113.237","dst_ip":"192.168.113.2","protocol":17,"src_port":55611,"dst_port":53,"event_start":1565200331.656831} +{"dns":{"base64":"HvOBgAABAAIADQAMA3d3dwdibG9nZ2VyA2NvbQAAHAABwAwABQABAAAABQATB2Jsb2dnZXIBbAZnb29nbGXAGMAtABwAAQAAAAUAECYH+LBABAgJAAAAAAAAIAnAGAACAAEAAAAFABQBbAxndGxkLXNlcnZlcnMDbmV0AMAYAAIAAQAAAAUABAFqwGrAGAACAAEAAAAFAAQBYsBqwBgAAgABAAAABQAEAWPAasAYAAIAAQAAAAUABAFhwGrAGAACAAEAAAAFAAQBa8BqwBgAAgABAAAABQAEAWfAasAYAAIAAQAAAAUABAFlwGrAGAACAAEAAAAFAAQBZsBqwBgAAgABAAAABQAEAWjAasAYAAIAAQAAAAUABAFpwGrAGAACAAEAAAAFAAQBbcBqwBgAAgABAAAABQAEAWTAasC4AAEAAQAAAAUABMAFBh7AmAABAAEAAAAFAATAIQ4ewKgAAQABAAAABQAEwBpcHsE4AAEAAQAAAAUABMAfUB7A6AABAAEAAAAFAATADF4ewPgAAQABAAAABQAEwCMzHsDYAAEAAQAAAAUABMAqXR7BCAABAAEAAAAFAATANnAewRgAAQABAAAABQAEwCusHsCIAAEAAQAAAAUABMAwTx7AyAABAAEAAAAFAATANLIewGgAAQABAAAABQAEwCmiHg=="},"ip":{"version":4,"ttl":128,"id":"a202"},"src_ip":"192.168.113.2","dst_ip":"192.168.113.237","protocol":17,"src_port":53,"dst_port":55611,"event_start":1565200331.693952} +{"dns":{"base64":"5BaBgAABAAIADQANA3d3dwdibG9nZ2VyA2NvbQAAAQABwAwABQABAAAABQATB2Jsb2dnZXIBbAZnb29nbGXAGMAtAAEAAQAAAAUABKzZDenAGAACAAEAAAAFABQBawxndGxkLXNlcnZlcnMDbmV0AMAYAAIAAQAAAAUABAFlwF7AGAACAAEAAAAFAAQBacBewBgAAgABAAAABQAEAWPAXsAYAAIAAQAAAAUABAFmwF7AGAACAAEAAAAFAAQBZMBewBgAAgABAAAABQAEAW3AXsAYAAIAAQAAAAUABAFiwF7AGAACAAEAAAAFAAQBbMBewBgAAgABAAAABQAEAWjAXsAYAAIAAQAAAAUABAFhwF7AGAACAAEAAAAFAAQBZ8BewBgAAgABAAAABQAEAWrAXsEMAAEAAQAAAAUABMAFBh7A3AABAAEAAAAFAATAIQ4ewJwAAQABAAAABQAEwBpcHsC8AAEAAQAAAAUABMAfUB7AfAABAAEAAAAFAATADF4ewKwAAQABAAAABQAEwCMzHsEcAAEAAQAAAAUABMAqXR7A/AABAAEAAAAFAATANnAewIwAAQABAAAABQAEwCusHsEsAAEAAQAAAAUABMAwTx7AXAABAAEAAAAFAATANLIewOwAAQABAAAABQAEwCmiHsDMAAEAAQAAAAUABMA3Ux4="},"ip":{"version":4,"ttl":128,"id":"a203"},"src_ip":"192.168.113.2","dst_ip":"192.168.113.237","protocol":17,"src_port":53,"dst_port":43627,"event_start":1565200331.694249} +{"fingerprints":{"tcp":"tcp/(40)()(40)(faf0)((020405b4)(04)(08)(01)(030307))"},"tcp":{"seq":2821653192,"timestamp":{"ts_val":3864219783}},"ip":{"version":4,"ttl":64,"id":"d2f2"},"src_ip":"192.168.113.237","dst_ip":"172.217.13.233","protocol":6,"src_port":46882,"dst_port":443,"event_start":1565200331.694531} +{"fingerprints":{"tcp_server":"tcp_server/(40)()(80)(faf0)((020405b4))"},"tcp_server":{"seq":1801488011},"ip":{"version":4,"ttl":128,"id":"a204"},"src_ip":"172.217.13.233","dst_ip":"192.168.113.237","protocol":6,"src_port":443,"dst_port":46882,"event_start":1565200331.732986} +{"fingerprints":{"tls":"tls/(0303)(130213031301c02cc030009fcca9cca8ccaac02bc02f009ec024c028006bc023c0270067c00ac0140039c009c0130033009d009c003d003c0035002f00ff)((0000)(000b000403000102)(000a000c000a001d0017001e00190018)(0023)(0016)(0017)(000d0030002e040305030603080708080809080a080b080408050806040105010601030302030301020103020202040205020602)(002b0009080304030303020301)(002d00020101)(0033))"},"tls":{"client":{"version":"0303","random":"802d28b5a7009f36c038fc3e6675a6569a810bdb8825b847eae71d9f771342fa","session_id":"a6cd15d91b44014f64bd100f426bfc700b700ef86b32f40e5c03a565c2dac241","cipher_suites":"130213031301c02cc030009fcca9cca8ccaac02bc02f009ec024c028006bc023c0270067c00ac0140039c009c0130033009d009c003d003c0035002f00ff","compression_methods":"00","server_name":"www.blogger.com","session_ticket":"","features":"[\"0303\",\"130213031301c02cc030009fcca9cca8ccaac02bc02f009ec024c028006bc023c0270067c00ac0140039c009c0130033009d009c003d003c0035002f00ff\",[[\"0000\",\"001200000f7777772e626c6f676765722e636f6d\"],[\"000b\",\"03000102\"],[\"000a\",\"000a001d0017001e00190018\"],[\"0023\",\"\"],[\"0016\",\"\"],[\"0017\",\"\"],[\"000d\",\"002e040305030603080708080809080a080b080408050806040105010601030302030301020103020202040205020602\"],[\"002b\",\"080304030303020301\"],[\"002d\",\"0101\"],[\"0033\",\"0024001d0020fae4a63e375e25e8547a10f85893152fa90b4171b9330b8d594e6f5b8cf56c11\"]]]"}},"ip":{"version":4,"ttl":64,"id":"d2f4"},"src_ip":"192.168.113.237","dst_ip":"172.217.13.233","protocol":6,"src_port":46882,"dst_port":443,"event_start":1565200331.733407} +{"fingerprints":{"tls_server":"tls_server/(0303)(1302)((0033)(002b00020304))"},"tls":{"server":{"version":"0303","random":"a6ec3a81d8b59aa27f2e240d5a265c00cbc9781cf5117bd46b4c532d804e8d2a","selected_cipher_suite":"1302","compression_method":"00"}},"ip":{"version":4,"ttl":128,"id":"a206"},"src_ip":"172.217.13.233","dst_ip":"192.168.113.237","protocol":6,"src_port":443,"dst_port":46882,"event_start":1565200331.783406} +{"fingerprints":{"tcp":"tcp/(40)()(40)(faf0)((020405b4)(04)(08)(01)(030307))"},"tcp":{"seq":4077023014,"timestamp":{"ts_val":1676998298}},"ip":{"version":4,"ttl":64,"id":"bf4d"},"src_ip":"192.168.113.237","dst_ip":"172.217.164.141","protocol":6,"src_port":57032,"dst_port":443,"event_start":1565200331.892552} +{"fingerprints":{"tcp_server":"tcp_server/(40)()(80)(faf0)((020405b4))"},"tcp_server":{"seq":1026623531},"ip":{"version":4,"ttl":128,"id":"a210"},"src_ip":"172.217.164.141","dst_ip":"192.168.113.237","protocol":6,"src_port":443,"dst_port":57032,"event_start":1565200331.933204} +{"fingerprints":{"tls":"tls/(0303)(130213031301c02cc030009fcca9cca8ccaac02bc02f009ec024c028006bc023c0270067c00ac0140039c009c0130033009d009c003d003c0035002f00ff)((0000)(000b000403000102)(000a000c000a001d0017001e00190018)(0023)(0016)(0017)(000d0030002e040305030603080708080809080a080b080408050806040105010601030302030301020103020202040205020602)(002b0009080304030303020301)(002d00020101)(0033))"},"tls":{"client":{"version":"0303","random":"79c946e10e30d974934199db0dc0d0822d7ae856d279ed41627c91a2fe950382","session_id":"3e861c401aa7e552ede4429a55bd33a77048d2e5283a4633befde89b9c294e71","cipher_suites":"130213031301c02cc030009fcca9cca8ccaac02bc02f009ec024c028006bc023c0270067c00ac0140039c009c0130033009d009c003d003c0035002f00ff","compression_methods":"00","server_name":"accounts.google.com","session_ticket":"","features":"[\"0303\",\"130213031301c02cc030009fcca9cca8ccaac02bc02f009ec024c028006bc023c0270067c00ac0140039c009c0130033009d009c003d003c0035002f00ff\",[[\"0000\",\"00160000136163636f756e74732e676f6f676c652e636f6d\"],[\"000b\",\"03000102\"],[\"000a\",\"000a001d0017001e00190018\"],[\"0023\",\"\"],[\"0016\",\"\"],[\"0017\",\"\"],[\"000d\",\"002e040305030603080708080809080a080b080408050806040105010601030302030301020103020202040205020602\"],[\"002b\",\"080304030303020301\"],[\"002d\",\"0101\"],[\"0033\",\"0024001d002070280ffb1f7b0e80a54647dc3dd899378926285894bf2d68b6f6ac6bb51c2762\"]]]"}},"ip":{"version":4,"ttl":64,"id":"bf4f"},"src_ip":"192.168.113.237","dst_ip":"172.217.164.141","protocol":6,"src_port":57032,"dst_port":443,"event_start":1565200331.933519} +{"fingerprints":{"tls_server":"tls_server/(0303)(1302)((0033)(002b00020304))"},"tls":{"server":{"version":"0303","random":"2cf976e3a4cf201053f3dced9d535cbda673233e7f16604f917562f36dabfb96","selected_cipher_suite":"1302","compression_method":"00"}},"ip":{"version":4,"ttl":128,"id":"a212"},"src_ip":"172.217.164.141","dst_ip":"192.168.113.237","protocol":6,"src_port":443,"dst_port":57032,"event_start":1565200331.984414} +{"fingerprints":{"tcp":"tcp/(40)()(40)(faf0)((020405b4)(04)(08)(01)(030307))"},"tcp":{"seq":3708213749,"timestamp":{"ts_val":3864220243}},"ip":{"version":4,"ttl":64,"id":"0958"},"src_ip":"192.168.113.237","dst_ip":"172.217.13.233","protocol":6,"src_port":46886,"dst_port":443,"event_start":1565200332.154185} +{"fingerprints":{"tcp_server":"tcp_server/(40)()(80)(faf0)((020405b4))"},"tcp_server":{"seq":392017097},"ip":{"version":4,"ttl":128,"id":"a21c"},"src_ip":"172.217.13.233","dst_ip":"192.168.113.237","protocol":6,"src_port":443,"dst_port":46886,"event_start":1565200332.196110} +{"fingerprints":{"tls":"tls/(0303)(130213031301c02cc030009fcca9cca8ccaac02bc02f009ec024c028006bc023c0270067c00ac0140039c009c0130033009d009c003d003c0035002f00ff)((0000)(000b000403000102)(000a000c000a001d0017001e00190018)(0023)(0016)(0017)(000d0030002e040305030603080708080809080a080b080408050806040105010601030302030301020103020202040205020602)(002b0009080304030303020301)(002d00020101)(0033))"},"tls":{"client":{"version":"0303","random":"11970d8af6853d4c492a4bc7f3adb0825098c4b982044755d507ab7a1850e58a","session_id":"79f8d1e264adf5151bd70230d019696f4607f7aae037a395fc70747c10c50979","cipher_suites":"130213031301c02cc030009fcca9cca8ccaac02bc02f009ec024c028006bc023c0270067c00ac0140039c009c0130033009d009c003d003c0035002f00ff","compression_methods":"00","server_name":"www.blogger.com","session_ticket":"","features":"[\"0303\",\"130213031301c02cc030009fcca9cca8ccaac02bc02f009ec024c028006bc023c0270067c00ac0140039c009c0130033009d009c003d003c0035002f00ff\",[[\"0000\",\"001200000f7777772e626c6f676765722e636f6d\"],[\"000b\",\"03000102\"],[\"000a\",\"000a001d0017001e00190018\"],[\"0023\",\"\"],[\"0016\",\"\"],[\"0017\",\"\"],[\"000d\",\"002e040305030603080708080809080a080b080408050806040105010601030302030301020103020202040205020602\"],[\"002b\",\"080304030303020301\"],[\"002d\",\"0101\"],[\"0033\",\"0024001d002068868f2225f8e9836556dc0820df9750fc3bb00b892fdc39e28de936ba2d4231\"]]]"}},"ip":{"version":4,"ttl":64,"id":"095a"},"src_ip":"192.168.113.237","dst_ip":"172.217.13.233","protocol":6,"src_port":46886,"dst_port":443,"event_start":1565200332.196377} +{"fingerprints":{"tls_server":"tls_server/(0303)(1302)((0033)(002b00020304))"},"tls":{"server":{"version":"0303","random":"99f461a76f04b6819fa26510b7c35085eac1bc0d5aed4288425d68c1d58afd6c","selected_cipher_suite":"1302","compression_method":"00"}},"ip":{"version":4,"ttl":128,"id":"a21e"},"src_ip":"172.217.13.233","dst_ip":"192.168.113.237","protocol":6,"src_port":443,"dst_port":46886,"event_start":1565200332.244799} +{"dns":{"base64":"68YBAAABAAAAAAAAA2JpdAJseQAAAQAB"},"ip":{"version":4,"ttl":64,"id":"d4a0"},"src_ip":"192.168.113.237","dst_ip":"192.168.113.2","protocol":17,"src_port":49963,"dst_port":53,"event_start":1565200332.519537} +{"dns":{"base64":"nYgBAAABAAAAAAAAA2JpdAJseQAAHAAB"},"ip":{"version":4,"ttl":64,"id":"d4a1"},"src_ip":"192.168.113.237","dst_ip":"192.168.113.2","protocol":17,"src_port":46108,"dst_port":53,"event_start":1565200332.519723} +{"dns":{"base64":"nYiBgAABAAAAAQAAA2JpdAJseQAAHAABwAwABgABAAAABQBJB25zLTEzNzIJYXdzZG5zLTQzA29yZwARYXdzZG5zLWhvc3RtYXN0ZXIGYW1hem9uA2NvbQAAAAABAAAcIAAAA4QAEnUAAAFRgA=="},"ip":{"version":4,"ttl":128,"id":"a277"},"src_ip":"192.168.113.2","dst_ip":"192.168.113.237","protocol":17,"src_port":53,"dst_port":46108,"event_start":1565200332.554746} +{"dns":{"base64":"68aBgAABAAIABQAIA2JpdAJseQAAAQABwAwAAQABAAAABQAEQ8f4CsAMAAEAAQAAAAUABEPH+AvAEAACAAEAAAAFAAoDcGNoA2x0dMAQwBAAAgABAAAABQAUBnBobG9lbQd1b3JlZ29uA2VkdQDAEAACAAEAAAAFABADZG5zBmx0dG5ldANuZXQAwBAAAgABAAAABQAQBW5zLWx5B2FmcmluaWPAhcAQAAIAAQAAAAUABwRkbnMxwH7AegABAAEAAAAFAAQ+8CQJwEQAAQABAAAABQAEzD3YQ8CyAAEAAQAAAAUABD5EKgnAlgABAAEAAAAFAATE2KgYwFoAAQABAAAABQAEgN8gI8BEABwAAQAAAAUAECABBQAAFGBnAK0AAAAAAAHAlgAcAAEAAAAFABAgAUP4ASAAAAAAAAAAAAAkwFoAHAABAAAABQAQIAEEaA0BACAAAAAAgN8gIw=="},"ip":{"version":4,"ttl":128,"id":"a278"},"src_ip":"192.168.113.2","dst_ip":"192.168.113.237","protocol":17,"src_port":53,"dst_port":49963,"event_start":1565200332.566308} +{"fingerprints":{"tcp":"tcp/(40)()(40)(faf0)((020405b4)(04)(08)(01)(030307))"},"tcp":{"seq":3220380341,"timestamp":{"ts_val":3135905820}},"ip":{"version":4,"ttl":64,"id":"cba1"},"src_ip":"192.168.113.237","dst_ip":"67.199.248.10","protocol":6,"src_port":55156,"dst_port":443,"event_start":1565200332.566732} +{"fingerprints":{"tcp_server":"tcp_server/(40)()(80)(faf0)((020405b4))"},"tcp_server":{"seq":3434929317},"ip":{"version":4,"ttl":128,"id":"a279"},"src_ip":"67.199.248.10","dst_ip":"192.168.113.237","protocol":6,"src_port":443,"dst_port":55156,"event_start":1565200332.677735} +{"fingerprints":{"tls":"tls/(0303)(130213031301c02cc030009fcca9cca8ccaac02bc02f009ec024c028006bc023c0270067c00ac0140039c009c0130033009d009c003d003c0035002f00ff)((0000)(000b000403000102)(000a000c000a001d0017001e00190018)(0023)(0016)(0017)(000d0030002e040305030603080708080809080a080b080408050806040105010601030302030301020103020202040205020602)(002b0009080304030303020301)(002d00020101)(0033))"},"tls":{"client":{"version":"0303","random":"9ef1219130c8600abc208f7f1eb3f1e57339c542552930dad00f4d6aec24ea00","session_id":"dc36e321e4be8d986182161dfc3c155e89de88b60de2ba1525aaab97479dc670","cipher_suites":"130213031301c02cc030009fcca9cca8ccaac02bc02f009ec024c028006bc023c0270067c00ac0140039c009c0130033009d009c003d003c0035002f00ff","compression_methods":"00","server_name":"bit.ly","session_ticket":"","features":"[\"0303\",\"130213031301c02cc030009fcca9cca8ccaac02bc02f009ec024c028006bc023c0270067c00ac0140039c009c0130033009d009c003d003c0035002f00ff\",[[\"0000\",\"00090000066269742e6c79\"],[\"000b\",\"03000102\"],[\"000a\",\"000a001d0017001e00190018\"],[\"0023\",\"\"],[\"0016\",\"\"],[\"0017\",\"\"],[\"000d\",\"002e040305030603080708080809080a080b080408050806040105010601030302030301020103020202040205020602\"],[\"002b\",\"080304030303020301\"],[\"002d\",\"0101\"],[\"0033\",\"0024001d0020dd9fba07f642d2419e292f01c37fb79a5ebbf3aed47af8c083b5c6be2ac2b567\"]]]"}},"ip":{"version":4,"ttl":64,"id":"cba3"},"src_ip":"192.168.113.237","dst_ip":"67.199.248.10","protocol":6,"src_port":55156,"dst_port":443,"event_start":1565200332.678111} +{"fingerprints":{"tls_server":"tls_server/(0303)(c030)((ff01)(000b000403000102)(0023))"},"tls":{"server":{"certs":[{"base64":"MIIGszCCBZugAwIBAgIQDWR3s57NlhtLxB5iD5etfjANBgkqhkiG9w0BAQsFADB1MQswCQYDVQQGEwJVUzEVMBMGA1UEChMMRGlnaUNlcnQgSW5jMRkwFwYDVQQLExB3d3cuZGlnaWNlcnQuY29tMTQwMgYDVQQDEytEaWdpQ2VydCBTSEEyIEV4dGVuZGVkIFZhbGlkYXRpb24gU2VydmVyIENBMB4XDTE4MDcwMzAwMDAwMFoXDTE5MDgyMDEyMDAwMFowgbsxHTAbBgNVBA8MFFByaXZhdGUgT3JnYW5pemF0aW9uMRMwEQYLKwYBBAGCNzwCAQMTAlVTMRkwFwYLKwYBBAGCNzwCAQITCERlbGF3YXJlMRAwDgYDVQQFEwc0NjI3MDEzMQswCQYDVQQGEwJVUzERMA8GA1UECBMITmV3IFlvcmsxETAPBgNVBAcTCE5ldyBZb3JrMRQwEgYDVQQKEwtCaXRseSwgSW5jLjEPMA0GA1UEAxMGYml0Lmx5MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAznd+dJC+0jK0zgnPKkp5TqfwlPS1hafMINVKQBTMBzLoA786NkCFMG7rAV7P3J4a0PQkTz6hbBTfF4d6nld6k98tIyFzH4cRIVU7yx+Ebat2GY/fFNjtgKdsmUZrd9hfBqXxAKWtoOfNtIPQSTDh0Lq8FXzVkeompoz0v+MczgNeoSq5ieTxtS2CoemP89dhOFXXq5uHJOS7OqjD1zNnWxBXltWtMN+2yWo6/NGzkiq7F2nfRInf97MSCmSMH5nK7L1G6xNo+qfvGWgZVBznNaygX7avYuHvgRZ1YN/1BGflQ3hidAsYWMW5s49jUx/Di0CcRL6mf+Xz8wpOMk4/kwIDAQABo4IC9jCCAvIwHwYDVR0jBBgwFoAUPdNQpdagre7zSmAKZdMh1Pj41g8wHQYDVR0OBBYEFCHl30RIen6Sr8lKfr84jyIjaHLJMB0GA1UdEQQWMBSCBmJpdC5seYIKd3d3LmJpdC5seTAOBgNVHQ8BAf8EBAMCBaAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMHUGA1UdHwRuMGwwNKAyoDCGLmh0dHA6Ly9jcmwzLmRpZ2ljZXJ0LmNvbS9zaGEyLWV2LXNlcnZlci1nMi5jcmwwNKAyoDCGLmh0dHA6Ly9jcmw0LmRpZ2ljZXJ0LmNvbS9zaGEyLWV2LXNlcnZlci1nMi5jcmwwSwYDVR0gBEQwQjA3BglghkgBhv1sAgEwKjAoBggrBgEFBQcCARYcaHR0cHM6Ly93d3cuZGlnaWNlcnQuY29tL0NQUzAHBgVngQwBATCBiAYIKwYBBQUHAQEEfDB6MCQGCCsGAQUFBzABhhhodHRwOi8vb2NzcC5kaWdpY2VydC5jb20wUgYIKwYBBQUHMAKGRmh0dHA6Ly9jYWNlcnRzLmRpZ2ljZXJ0LmNvbS9EaWdpQ2VydFNIQTJFeHRlbmRlZFZhbGlkYXRpb25TZXJ2ZXJDQS5jcnQwDAYDVR0TAQH/BAIwADCCAQMGCisGAQQB1nkCBAIEgfQEgfEA7wB2AO5Lvbd1zmC64UJpH6vhnmajD35fsHLYgwDEe4l6qP3LAAABZF6i2GcAAAQDAEcwRQIgRFgqLABzUHkbLvr95JZbCjc+DMCKb1GAeEV8llFkePMCIQCst8gB/SAjkLpb9HsnXo4T98+2vENa+qu0fodWfqVvWwB1AFYUBpov18Ls0/XhvUSyPsdGdrm8mRFcwO+UmFXWidDdAAABZF6i19oAAAQDAEYwRAIgbmrJyI2amsTHWy31ejWA+p/3lVfhpgpjbVmGHqD96HkCIEid5T6yI11UyVV1HVbKV3V0d/LR7GraugLARjr0ByzwMA0GCSqGSIb3DQEBCwUAA4IBAQDGyFbf+EbxHAs65YFOq1wPA5sRnPs50am+sBVFsMBJ8d6zHPwER/vquEtuuzlA87abnN5dOW+cIujGdaorO8sXuEh+bKj7jQ8DM+Vae/kDCLpszkiBfxyFwgoFrXgX3Zvy9ccnQlHgDptgF/Jd5y/KQax9/w7HuRwuVW7oBTi67LZYRa8+hkS1d3B6Zo7OXnCgg2vIFYo96I5roGWDxfcWvHg88oGp3XpEfUssWgRJizpKYB6t4rGgqbzlcqRqa0oHntk4daSegITewFiLKPlQenthNq73BKVpQd5rmLt7YAAGFYUg6gKyx4sQNl0EeOesgF35cg71fRyfdnWyqL1x"},{"base64":"MIIEtjCCA56gAwIBAgIQDHmpRLCMEZUgkmFf4msdgzANBgkqhkiG9w0BAQsFADBsMQswCQYDVQQGEwJVUzEVMBMGA1UEChMMRGlnaUNlcnQgSW5jMRkwFwYDVQQLExB3d3cuZGlnaWNlcnQuY29tMSswKQYDVQQDEyJEaWdpQ2VydCBIaWdoIEFzc3VyYW5jZSBFViBSb290IENBMB4XDTEzMTAyMjEyMDAwMFoXDTI4MTAyMjEyMDAwMFowdTELMAkGA1UEBhMCVVMxFTATBgNVBAoTDERpZ2lDZXJ0IEluYzEZMBcGA1UECxMQd3d3LmRpZ2ljZXJ0LmNvbTE0MDIGA1UEAxMrRGlnaUNlcnQgU0hBMiBFeHRlbmRlZCBWYWxpZGF0aW9uIFNlcnZlciBDQTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANdTpARR+JmmFkhLZyeqk0nQOe0MsLAAh/FnKIaFjI5j2ryxQDji0/XspQUYuD0+xZkXMuwYjPrxDKZkIYXLBxA0sFKIKx9om9KxjxKws9LniB8f7zh3VFNfgHk/LhqqqB5LKw2rt2O5Nbd9FLxZS99RStKh4gzikIKHaq7q12TWmFXo/a8aUGxUvBHy/Urynbt/DvTVvo4WiRJV2MBxNO723C3sxIclho3YIeSwTQyJ3DkmF93215SF2AQhcJ1vb/9cuhnhRctWVyh+HA1BV6q3uCe7seT6Ku8hI3UarS2bhjWMnHe1c63YlC3k8wyd7sFOYn4XwHGeLN7x+RAoGTMCAwEAAaOCAUkwggFFMBIGA1UdEwEB/wQIMAYBAf8CAQAwDgYDVR0PAQH/BAQDAgGGMB0GA1UdJQQWMBQGCCsGAQUFBwMBBggrBgEFBQcDAjA0BggrBgEFBQcBAQQoMCYwJAYIKwYBBQUHMAGGGGh0dHA6Ly9vY3NwLmRpZ2ljZXJ0LmNvbTBLBgNVHR8ERDBCMECgPqA8hjpodHRwOi8vY3JsNC5kaWdpY2VydC5jb20vRGlnaUNlcnRIaWdoQXNzdXJhbmNlRVZSb290Q0EuY3JsMD0GA1UdIAQ2MDQwMgYEVR0gADAqMCgGCCsGAQUFBwIBFhxodHRwczovL3d3dy5kaWdpY2VydC5jb20vQ1BTMB0GA1UdDgQWBBQ901Cl1qCt7vNKYApl0yHU+PjWDzAfBgNVHSMEGDAWgBSxPsNpA/i/RwHUmCYaCALvY2QrwzANBgkqhkiG9w0BAQsFAAOCAQEAnbbQkIbhhgLtxaDwNBx0wY12zIYKqPBKikLWP8ipTa18CK3mtlC4ohpNiAexKSHc59rGPCHg4xFJcKx6HQGkyhE6V6t9VypAdP3THYUYUN9XR3WhfVUgLkc3UHKMf4Ib0mKPLQNa2sPIoc4sUqIAY+tzunHISScjl2SFnjgOrWNoPLpSgVh5oywM395t6zHyuqB8bPEs1OG9d4Q3A84ytciagRpKkk47RpqF/oOi+Z6Mo8wNXrM9zwR4jxQUezKcxwCmXMS1oVWNWlZopCJwqjyBcdmdqEU79OX2olHdx3ti6G8MdOu42vi/hw15UJGQmxg7kVkn8TUoE6smftX3eg=="}],"version":"0303","random":"116a0026e35b521f3741841513b25f66c213f46dcbabcef813f2177697137704","selected_cipher_suite":"c030","compression_method":"00","session_ticket":""}},"reassembly_properties":{"reassembled":true},"ip":{"version":4,"ttl":128,"id":"a27d"},"src_ip":"67.199.248.10","dst_ip":"192.168.113.237","protocol":6,"src_port":443,"dst_port":55156,"event_start":1565200332.784752} +{"dns":{"base64":"AiMBAAABAAAAAAAABWJpdGx5A2NvbQAAAQAB"},"ip":{"version":4,"ttl":64,"id":"d4ee"},"src_ip":"192.168.113.237","dst_ip":"192.168.113.2","protocol":17,"src_port":36233,"dst_port":53,"event_start":1565200333.006126} +{"dns":{"base64":"WmUBAAABAAAAAAAABWJpdGx5A2NvbQAAHAAB"},"ip":{"version":4,"ttl":64,"id":"d4ef"},"src_ip":"192.168.113.237","dst_ip":"192.168.113.2","protocol":17,"src_port":48534,"dst_port":53,"event_start":1565200333.006301} +{"dns":{"base64":"AiOBgAABAAIADQANBWJpdGx5A2NvbQAAAQABwAwAAQABAAAABQAEQ8f4DsAMAAEAAQAAAAUABEPH+A/AEgACAAEAAAAFABQBbAxndGxkLXNlcnZlcnMDbmV0AMASAAIAAQAAAAUABAFrwEnAEgACAAEAAAAFAAQBYsBJwBIAAgABAAAABQAEAWnAScASAAIAAQAAAAUABAFnwEnAEgACAAEAAAAFAAQBZsBJwBIAAgABAAAABQAEAWjAScASAAIAAQAAAAUABAFqwEnAEgACAAEAAAAFAAQBYcBJwBIAAgABAAAABQAEAW3AScASAAIAAQAAAAUABAFjwEnAEgACAAEAAAAFAAQBZMBJwBIAAgABAAAABQAEAWXAScDXAAEAAQAAAAUABMAFBh7AdwABAAEAAAAFAATAIQ4ewPcAAQABAAAABQAEwBpcHsEHAAEAAQAAAAUABMAfUB7BFwABAAEAAAAFAATADF4ewKcAAQABAAAABQAEwCMzHsCXAAEAAQAAAAUABMAqXR7AtwABAAEAAAAFAATANnAewIcAAQABAAAABQAEwCusHsDHAAEAAQAAAAUABMAwTx7AZwABAAEAAAAFAATANLIewEcAAQABAAAABQAEwCmiHsDnAAEAAQAAAAUABMA3Ux4="},"ip":{"version":4,"ttl":128,"id":"a286"},"src_ip":"192.168.113.2","dst_ip":"192.168.113.237","protocol":17,"src_port":53,"dst_port":36233,"event_start":1565200333.069379} +{"dns":{"base64":"WmWBgAABAAAAAQAABWJpdGx5A2NvbQAAHAABwAwABgABAAAABQBOC25zLWNsb3VkLWIxDWdvb2dsZWRvbWFpbnPAEhRjbG91ZC1kbnMtaG9zdG1hc3RlcgZnb29nbGXAEgAAAAEAAFRgAAAOEAAD9IAAAAEs"},"ip":{"version":4,"ttl":128,"id":"a287"},"src_ip":"192.168.113.2","dst_ip":"192.168.113.237","protocol":17,"src_port":53,"dst_port":48534,"event_start":1565200333.070744} +{"fingerprints":{"tcp":"tcp/(40)()(40)(faf0)((020405b4)(04)(08)(01)(030307))"},"tcp":{"seq":3737118679,"timestamp":{"ts_val":3946451935}},"ip":{"version":4,"ttl":64,"id":"3645"},"src_ip":"192.168.113.237","dst_ip":"67.199.248.14","protocol":6,"src_port":41982,"dst_port":443,"event_start":1565200333.070960} +{"fingerprints":{"tcp":"tcp/(40)()(40)(faf0)((020405b4)(04)(08)(01)(030307))"},"tcp":{"seq":3737118679,"timestamp":{"ts_val":3946452950}},"ip":{"version":4,"ttl":64,"id":"3646"},"src_ip":"192.168.113.237","dst_ip":"67.199.248.14","protocol":6,"src_port":41982,"dst_port":443,"event_start":1565200334.085917} +{"fingerprints":{"tcp_server":"tcp_server/(40)()(80)(faf0)((020405b4))"},"tcp_server":{"seq":1730747976},"ip":{"version":4,"ttl":128,"id":"a288"},"src_ip":"67.199.248.14","dst_ip":"192.168.113.237","protocol":6,"src_port":443,"dst_port":41982,"event_start":1565200334.216782} +{"fingerprints":{"tls":"tls/(0303)(130213031301c02cc030009fcca9cca8ccaac02bc02f009ec024c028006bc023c0270067c00ac0140039c009c0130033009d009c003d003c0035002f00ff)((0000)(000b000403000102)(000a000c000a001d0017001e00190018)(0023)(0016)(0017)(000d0030002e040305030603080708080809080a080b080408050806040105010601030302030301020103020202040205020602)(002b0009080304030303020301)(002d00020101)(0033))"},"tls":{"client":{"version":"0303","random":"53f798e920761010f6a258076b2db3419adeb98926cc99466b4696ea2d39d317","session_id":"dcd976629402a8cd5da459a084d8670feb5b08c0bb0463ad5a83bd5931f02546","cipher_suites":"130213031301c02cc030009fcca9cca8ccaac02bc02f009ec024c028006bc023c0270067c00ac0140039c009c0130033009d009c003d003c0035002f00ff","compression_methods":"00","server_name":"bitly.com","session_ticket":"","features":"[\"0303\",\"130213031301c02cc030009fcca9cca8ccaac02bc02f009ec024c028006bc023c0270067c00ac0140039c009c0130033009d009c003d003c0035002f00ff\",[[\"0000\",\"000c0000096269746c792e636f6d\"],[\"000b\",\"03000102\"],[\"000a\",\"000a001d0017001e00190018\"],[\"0023\",\"\"],[\"0016\",\"\"],[\"0017\",\"\"],[\"000d\",\"002e040305030603080708080809080a080b080408050806040105010601030302030301020103020202040205020602\"],[\"002b\",\"080304030303020301\"],[\"002d\",\"0101\"],[\"0033\",\"0024001d00209c512289864dcfcd32498f8865ccfb05ec05d0f2ee077a72d24d71af4c497118\"]]]"}},"ip":{"version":4,"ttl":64,"id":"3648"},"src_ip":"192.168.113.237","dst_ip":"67.199.248.14","protocol":6,"src_port":41982,"dst_port":443,"event_start":1565200334.217016} +{"fingerprints":{"tls_server":"tls_server/(0303)(c030)((ff01)(000b000403000102)(0023))"},"tls":{"server":{"certs":[{"base64":"MIIG4zCCBcugAwIBAgIQDWINzIIdaLjR4RD3jzgHSTANBgkqhkiG9w0BAQsFADBwMQswCQYDVQQGEwJVUzEVMBMGA1UEChMMRGlnaUNlcnQgSW5jMRkwFwYDVQQLExB3d3cuZGlnaWNlcnQuY29tMS8wLQYDVQQDEyZEaWdpQ2VydCBTSEEyIEhpZ2ggQXNzdXJhbmNlIFNlcnZlciBDQTAeFw0xODA4MjcwMDAwMDBaFw0yMDA5MDgxMjAwMDBaMHQxCzAJBgNVBAYTAlVTMREwDwYDVQQIEwhOZXcgWW9yazERMA8GA1UEBxMITmV3IFlvcmsxFDASBgNVBAoTC0JpdGx5LCBJbmMuMRMwEQYDVQQLEwpPcGVyYXRpb25zMRQwEgYDVQQDDAsqLmJpdGx5LmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAN/qidwToSGhNX6Bb0gP03RZq7L92Ut3iJgdGPBwwndspJGTVa2kkkQpbcM7mbG3bvvk3JaAH0A6CE78FN65YacWfbrAR1w2P62jobapbJ37Wn1wY4Wd8AgQIJIM37L5oHMXwGpxYu+1yzJ8o2wTYTDdHat8y0INxy0NXLzEC4ySNTHhBDQIW8ufPUaSdJZkehTs7zH/TOUCAlhjXMmSmiLcyCqzwrUg3Rq3/+6hIRU0cBqVBRy6fHv6RtLcII8HmALXmA2aV1fZWO8FqgabIi7eFHPsJiBkGGoOb0Y7OqWK7XYYJbwfjKo3LchjDJVCAknwvbrOJPOQSlxEItGJwfsCAwEAAaOCA3MwggNvMB8GA1UdIwQYMBaAFFFo/5CvAgd1PMzZZWRiohK4WXI7MB0GA1UdDgQWBBQ7EDxxmfdjgjJ2p9by+facoK9fkTAhBgNVHREEGjAYggsqLmJpdGx5LmNvbYIJYml0bHkuY29tMA4GA1UdDwEB/wQEAwIFoDAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwdQYDVR0fBG4wbDA0oDKgMIYuaHR0cDovL2NybDMuZGlnaWNlcnQuY29tL3NoYTItaGEtc2VydmVyLWc2LmNybDA0oDKgMIYuaHR0cDovL2NybDQuZGlnaWNlcnQuY29tL3NoYTItaGEtc2VydmVyLWc2LmNybDBMBgNVHSAERTBDMDcGCWCGSAGG/WwBATAqMCgGCCsGAQUFBwIBFhxodHRwczovL3d3dy5kaWdpY2VydC5jb20vQ1BTMAgGBmeBDAECAjCBgwYIKwYBBQUHAQEEdzB1MCQGCCsGAQUFBzABhhhodHRwOi8vb2NzcC5kaWdpY2VydC5jb20wTQYIKwYBBQUHMAKGQWh0dHA6Ly9jYWNlcnRzLmRpZ2ljZXJ0LmNvbS9EaWdpQ2VydFNIQTJIaWdoQXNzdXJhbmNlU2VydmVyQ0EuY3J0MAwGA1UdEwEB/wQCMAAwggGABgorBgEEAdZ5AgQCBIIBcASCAWwBagB3AKS5CZC0GFgUh7sTosxncAo8NZgE+RvfuON3zQ7IDdwQAAABZXx/YAYAAAQDAEgwRgIhAIFD4oEZXrLNxMruEFIfoV28ZKZefWWq4eC9Zx5WibmPAiEAq7sQiGHv4gzIJ+VwYhHE1Dsl0sj4hZgSX5m/yag5M4YAdwCHdb/nWXz4jEOZX73zbv9WjUdWNv9KtWDBtOr/XqCDDwAAAWV8f2DIAAAEAwBIMEYCIQCQ5eMnd6CzaYM1U6E5jTE+mVVgC3wqS3+pk16TFWFkxgIhAO9eGwJIPbzLlDT9fpjhmHMx6wFsqqZ9lrgOthDmWvsvAHYA7ku9t3XOYLrhQmkfq+GeZqMPfl+wctiDAMR7iXqo/csAAAFlfH9gMwAABAMARzBFAiEAi19tXp6F0lwZFYgToZVHTSjpkrUpLL+dgOQUd7KDoQ4CIFLu3fUU/W5s3WYUf/mwxYOqqwxe+qEiifgn8LEreE27MA0GCSqGSIb3DQEBCwUAA4IBAQAd9K9mdg9VA2uPFQDjJpIkGYvEVlbz9nUaqxMLP4anttngfqRorn4p28A3DhKQCT83/5TEWqE+esNI1Nhz2b4yA7LRhqaEkJVY8OHWBVf9blsaBZ4gZlCxC26V/7U6U5BqEGSzydSFHnhOVsCBTHe8/UvWNW8kDiswXUgk+GxW2T+ypEB+gbUaI06drBVUtwGIftxSOdy49c4jFGrDFaPjhHKn9oZ2oQOR5lu+ZQOPXt2LNuuvKmxLzVmCd59ysPmIGn558kk3TOjHcVRB3DoYNsBp3lCLX0fYLfevGerFolvraa0AywvzbHDKa4JQ7g2h498IkovdPXEW8hQ8Xy7f"},{"base64":"MIIEsTCCA5mgAwIBAgIQBOHnpNxc8vNtwCtCuF0VnzANBgkqhkiG9w0BAQsFADBsMQswCQYDVQQGEwJVUzEVMBMGA1UEChMMRGlnaUNlcnQgSW5jMRkwFwYDVQQLExB3d3cuZGlnaWNlcnQuY29tMSswKQYDVQQDEyJEaWdpQ2VydCBIaWdoIEFzc3VyYW5jZSBFViBSb290IENBMB4XDTEzMTAyMjEyMDAwMFoXDTI4MTAyMjEyMDAwMFowcDELMAkGA1UEBhMCVVMxFTATBgNVBAoTDERpZ2lDZXJ0IEluYzEZMBcGA1UECxMQd3d3LmRpZ2ljZXJ0LmNvbTEvMC0GA1UEAxMmRGlnaUNlcnQgU0hBMiBIaWdoIEFzc3VyYW5jZSBTZXJ2ZXIgQ0EwggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQC24C/CJAbIbQRf1+8KZAayfSImZRauQkCbztyfn3YHPsMwVYcZuU+UDlqUH1VWtMICKq/QmO4LQNfE0DtyyBSe75CxEamu0si4QzrZCwvV1ZX1QK/IHe1NnF9Xt4ZQaJn1itrSxwUfqJfJ3KSxgoQtxq2lnMcZgqaFD15EWCo3j/018QsIJzJa9buLnqS9UdAn4t07QjOjBSjEuyjMmqwrIw14xnvmXnG3Sj4I+4G3FhahnSMSTeXXkgisdaScus0Xsh5ENWV/UyU50RwKmmMbGZJ0aAo3wsJSSMs5WqK24V3B3aAguCGikyZvFEohQcftbZvySC/zA/WiaJJTL17jAgMBAAGjggFJMIIBRTASBgNVHRMBAf8ECDAGAQH/AgEAMA4GA1UdDwEB/wQEAwIBhjAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwNAYIKwYBBQUHAQEEKDAmMCQGCCsGAQUFBzABhhhodHRwOi8vb2NzcC5kaWdpY2VydC5jb20wSwYDVR0fBEQwQjBAoD6gPIY6aHR0cDovL2NybDQuZGlnaWNlcnQuY29tL0RpZ2lDZXJ0SGlnaEFzc3VyYW5jZUVWUm9vdENBLmNybDA9BgNVHSAENjA0MDIGBFUdIAAwKjAoBggrBgEFBQcCARYcaHR0cHM6Ly93d3cuZGlnaWNlcnQuY29tL0NQUzAdBgNVHQ4EFgQUUWj/kK8CB3U8zNllZGKiErhZcjswHwYDVR0jBBgwFoAUsT7DaQP4v0cB1JgmGggC72NkK8MwDQYJKoZIhvcNAQELBQADggEBABiKlYkD5m3fXPwdaOpKj4PWUS+Na0QWnqxj9dJubISZi6qBcYRb7TROsLd5kinMLYBq8I4g4Xmk/gNHE+r1hspZcX30BJZr01lYPf7TMSVcGDiEo+afgv2MW5gxTs14nhr9hctJqvIni5ly/D6q1UEL2tU2ob8cbkdJf17ZSHwD2f2LSaCYJkJA69aSEaRkCldUxPUd1gJea6zuxICaEnL6VpPX/78whQYwvwt/Tv9XBZ0k7YXDK/umdaisLRbvfXknsuvCnQsH6qqF0wGjIChBWUMo0oHjqvbsezt3tkBigAVBRQHvFwY+3sAzm2fTYS5yh+Rp/BIAV0AecPUeybQ="}],"version":"0303","random":"baec1659a9169613c0c30881f8a9faea0abb2580a85aa5cd579ed9c5d17d794f","selected_cipher_suite":"c030","compression_method":"00","session_ticket":""}},"reassembly_properties":{"reassembled":true},"ip":{"version":4,"ttl":128,"id":"a28c"},"src_ip":"67.199.248.14","dst_ip":"192.168.113.237","protocol":6,"src_port":443,"dst_port":41982,"event_start":1565200334.338224} +{"dns":{"base64":"FSMBAAABAAAAAAAABXlhaG9vA2NvbQAAAQAB"},"ip":{"version":4,"ttl":64,"id":"d6a3"},"src_ip":"192.168.113.237","dst_ip":"192.168.113.2","protocol":17,"src_port":50783,"dst_port":53,"event_start":1565200334.828074} +{"dns":{"base64":"rkQBAAABAAAAAAAABXlhaG9vA2NvbQAAHAAB"},"ip":{"version":4,"ttl":64,"id":"d6a4"},"src_ip":"192.168.113.237","dst_ip":"192.168.113.2","protocol":17,"src_port":38416,"dst_port":53,"event_start":1565200334.828333} +{"dns":{"base64":"rkSBgAABAAYADQAFBXlhaG9vA2NvbQAAHAABwAwAHAABAAAABQAQIAFJmAAMECMAAAAAAAAABcAMABwAAQAAAAUAECABSZgAWBg2AAAAAAAAABDADAAcAAEAAAAFABAgAUmYAAwQIwAAAAAAAAAEwAwAHAABAAAABQAQIAFJmABYGDYAAAAAAAAAEcAMABwAAQAAAAUAECABSZgARAQdAAAAAAAAAATADAAcAAEAAAAFABAgAUmYAEQEHQAAAAAAAAADwBIAAgABAAAABQAUAWcMZ3RsZC1zZXJ2ZXJzA25ldADAEgACAAEAAAAFAAQBaMDRwBIAAgABAAAABQAEAWPA0cASAAIAAQAAAAUABAFtwNHAEgACAAEAAAAFAAQBZcDRwBIAAgABAAAABQAEAWzA0cASAAIAAQAAAAUABAFpwNHAEgACAAEAAAAFAAQBa8DRwBIAAgABAAAABQAEAWLA0cASAAIAAQAAAAUABAFhwNHAEgACAAEAAAAFAAQBZsDRwBIAAgABAAAABQAEAWTA0cASAAIAAQAAAAUABAFqwNHBbwABAAEAAAAFAATABQYewV8AAQABAAAABQAEwCEOHsD/AAEAAQAAAAUABMAaXB7BjwABAAEAAAAFAATAH1AewR8AAQABAAAABQAEwAxeHg=="},"ip":{"version":4,"ttl":128,"id":"a2b5"},"src_ip":"192.168.113.2","dst_ip":"192.168.113.237","protocol":17,"src_port":53,"dst_port":38416,"event_start":1565200334.829079} +{"dns":{"base64":"FSOBgAABAAYADQAKBXlhaG9vA2NvbQAAAQABwAwAAQABAAAABQAESB4jCcAMAAEAAQAAAAUABGKK2+jADAABAAEAAAAFAARiifYIwAwAAQABAAAABQAEYon2B8AMAAEAAQAAAAUABGKK2+fADAABAAEAAAAFAARIHiMKwBIAAgABAAAABQAUAWcMZ3RsZC1zZXJ2ZXJzA25ldADAEgACAAEAAAAFAAQBYsCJwBIAAgABAAAABQAEAWvAicASAAIAAQAAAAUABAFjwInAEgACAAEAAAAFAAQBaMCJwBIAAgABAAAABQAEAWbAicASAAIAAQAAAAUABAFkwInAEgACAAEAAAAFAAQBacCJwBIAAgABAAAABQAEAWzAicASAAIAAQAAAAUABAFlwInAEgACAAEAAAAFAAQBbcCJwBIAAgABAAAABQAEAWHAicASAAIAAQAAAAUABAFqwInBRwABAAEAAAAFAATABQYewKcAAQABAAAABQAEwCEOHsDHAAEAAQAAAAUABMAaXB7A9wABAAEAAAAFAATAH1AewScAAQABAAAABQAEwAxeHsDnAAEAAQAAAAUABMAjMx7AhwABAAEAAAAFAATAKl0ewNcAAQABAAAABQAEwDZwHsEHAAEAAQAAAAUABMArrB7BVwABAAEAAAAFAATAME8e"},"ip":{"version":4,"ttl":128,"id":"a2b6"},"src_ip":"192.168.113.2","dst_ip":"192.168.113.237","protocol":17,"src_port":53,"dst_port":50783,"event_start":1565200334.864301} +{"fingerprints":{"tcp":"tcp/(40)()(40)(faf0)((020405b4)(04)(08)(01)(030307))"},"tcp":{"seq":1895835432,"timestamp":{"ts_val":2775439277}},"ip":{"version":4,"ttl":64,"id":"f47a"},"src_ip":"192.168.113.237","dst_ip":"72.30.35.9","protocol":6,"src_port":37050,"dst_port":443,"event_start":1565200334.865000} +{"fingerprints":{"tcp_server":"tcp_server/(40)()(80)(faf0)((020405b4))"},"tcp_server":{"seq":356457717},"ip":{"version":4,"ttl":128,"id":"a2b7"},"src_ip":"72.30.35.9","dst_ip":"192.168.113.237","protocol":6,"src_port":443,"dst_port":37050,"event_start":1565200334.923629} +{"fingerprints":{"tls":"tls/(0303)(130213031301c02cc030009fcca9cca8ccaac02bc02f009ec024c028006bc023c0270067c00ac0140039c009c0130033009d009c003d003c0035002f00ff)((0000)(000b000403000102)(000a000c000a001d0017001e00190018)(0023)(0016)(0017)(000d0030002e040305030603080708080809080a080b080408050806040105010601030302030301020103020202040205020602)(002b0009080304030303020301)(002d00020101)(0033))"},"tls":{"client":{"version":"0303","random":"f9401167669fdff027a36fceaa74c163ab8fe4b1c68dda1436de0a8465922319","session_id":"3d3470166c817ca28fa2c20366c64a45e6d1cd75ce6fea0a4a5d9a277380568c","cipher_suites":"130213031301c02cc030009fcca9cca8ccaac02bc02f009ec024c028006bc023c0270067c00ac0140039c009c0130033009d009c003d003c0035002f00ff","compression_methods":"00","server_name":"yahoo.com","session_ticket":"","features":"[\"0303\",\"130213031301c02cc030009fcca9cca8ccaac02bc02f009ec024c028006bc023c0270067c00ac0140039c009c0130033009d009c003d003c0035002f00ff\",[[\"0000\",\"000c0000097961686f6f2e636f6d\"],[\"000b\",\"03000102\"],[\"000a\",\"000a001d0017001e00190018\"],[\"0023\",\"\"],[\"0016\",\"\"],[\"0017\",\"\"],[\"000d\",\"002e040305030603080708080809080a080b080408050806040105010601030302030301020103020202040205020602\"],[\"002b\",\"080304030303020301\"],[\"002d\",\"0101\"],[\"0033\",\"0024001d00200830920a46453a2b8852f53c183381b93b32f8d428814e8f267c0a3b19664860\"]]]"}},"ip":{"version":4,"ttl":64,"id":"f47c"},"src_ip":"192.168.113.237","dst_ip":"72.30.35.9","protocol":6,"src_port":37050,"dst_port":443,"event_start":1565200334.923897} +{"fingerprints":{"tls_server":"tls_server/(0303)(c02f)((0000)(ff01)(000b000403000102)(0023))"},"tls":{"server":{"certs":[{"base64":"MIIHCzCCBfOgAwIBAgIQC8M2wJUf1+pWw3jShdD6bTANBgkqhkiG9w0BAQsFADBwMQswCQYDVQQGEwJVUzEVMBMGA1UEChMMRGlnaUNlcnQgSW5jMRkwFwYDVQQLExB3d3cuZGlnaWNlcnQuY29tMS8wLQYDVQQDEyZEaWdpQ2VydCBTSEEyIEhpZ2ggQXNzdXJhbmNlIFNlcnZlciBDQTAeFw0xOTA4MDYwMDAwMDBaFw0yMDAyMDIxMjAwMDBaMGMxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRIwEAYDVQQHEwlTdW5ueXZhbGUxETAPBgNVBAoTCE9hdGggSW5jMRgwFgYDVQQDDA8qLnd3dy55YWhvby5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQCirs4sQ7vEOfujfIii5gGWEOlqKc9yHNbAoyN96STzjihj56QK3Uzl7fiShiKiD04OAE1RLOrVObCwrWJi+C3XybKlOAwVvKD1gkkyuGZaunygg4H+TfvRICZV5pRMNNbacko0Ji/Xv5r9+epnHAeGXSp0LxQiH3wyJCBtLPuBI6A3wxd1iaWiFAWNR2WUMyU3uENLnbMjr0j462/+kYdhZ0+phZ9auThabOOR8TA61NwTofCJ5Xq0cMk9h6kWN7FcpMEMrid2qPqYTQcvVBgFipPZRNIO7ymRPEmnWQo21PtgiRfnILqg+Lwd95A5RYg2XeRhmXBa22Sh+J/b1im/AgMBAAGjggOsMIIDqDAfBgNVHSMEGDAWgBRRaP+QrwIHdTzM2WVkYqISuFlyOzAdBgNVHQ4EFgQUaekEkRuDKAqyMmsIHXgRzibqObswgdYGA1UdEQSBzjCBy4IPKi53d3cueWFob28uY29tgg4qLmFtcC55aW1nLmNvbYILKi55YWhvby5jb22CEGFkZC5teS55YWhvby5jb22CD2NhLm15LnlhaG9vLmNvbYITY2Eucm9nZXJzLnlhaG9vLmNvbYIQZGRsLmZwLnlhaG9vLmNvbYIWZnItY2Eucm9nZXJzLnlhaG9vLmNvbYIPaGsucmQueWFob28uY29tggxtYnAueWltZy5jb22CD3R3LnJkLnlhaG9vLmNvbYIJeWFob28uY29tMA4GA1UdDwEB/wQEAwIFoDAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwdQYDVR0fBG4wbDA0oDKgMIYuaHR0cDovL2NybDMuZGlnaWNlcnQuY29tL3NoYTItaGEtc2VydmVyLWc2LmNybDA0oDKgMIYuaHR0cDovL2NybDQuZGlnaWNlcnQuY29tL3NoYTItaGEtc2VydmVyLWc2LmNybDBMBgNVHSAERTBDMDcGCWCGSAGG/WwBATAqMCgGCCsGAQUFBwIBFhxodHRwczovL3d3dy5kaWdpY2VydC5jb20vQ1BTMAgGBmeBDAECAjCBgwYIKwYBBQUHAQEEdzB1MCQGCCsGAQUFBzABhhhodHRwOi8vb2NzcC5kaWdpY2VydC5jb20wTQYIKwYBBQUHMAKGQWh0dHA6Ly9jYWNlcnRzLmRpZ2ljZXJ0LmNvbS9EaWdpQ2VydFNIQTJIaWdoQXNzdXJhbmNlU2VydmVyQ0EuY3J0MAwGA1UdEwEB/wQCMAAwggEDBgorBgEEAdZ5AgQCBIH0BIHxAO8AdgC72d+8H4pxtZOUI5eqkntHOFeVCqtS6BqQlmQ2jh7RhQAAAWxoP1bRAAAEAwBHMEUCIQDdmgmiG/EpnvAnBdg3XCQTGLs8lNSIDGHDaQWgBq9VCgIgZsZ3m6pXNI//TS8XhYh8PCWIjBokKJvm1Tn1ST6L3ckAdQCHdb/nWXz4jEOZX73zbv9WjUdWNv9KtWDBtOr/XqCDDwAAAWxoP1ccAAAEAwBGMEQCIEHpkO5+0ht224fAM6owijpPlRfcO+YwaVQDkgI1mIDAAiBtpay6WdE9oAc9pF31Je1sgbaDFGD0q5Yx22QwmFvxZDANBgkqhkiG9w0BAQsFAAOCAQEAnINtMIB149N31+iHLGR4/lXGfKmKjUibQR6WaD0lNANjChxDiFXPQieobLfkWkaMfKBbGSg8h7WMdCsCkIMnN+z8KmmTnY4MN+m8wR0QOXKHvWXX6HG3sSORtJ7EI9uxFvBOlEHmj4HBrQVs0iiVOp5gcOAfCcphMtNBp3gIy8eqi7HeUrsiVwJal/vz2V+zlaHgXJ86eVOqvE1H30hdiQYXi23+sbfkTfZh119xiJ9c591HgYrUy4vWdAdPD0Eoo1JVIxDRpNHxIIDpnxYehlCU921fOJqwL1ShquSF59UzV7DDnIxdkYTmPY5H5kjlbhNU99k/dnkWSpecKP0m8Q=="},{"base64":"MIIEsTCCA5mgAwIBAgIQBOHnpNxc8vNtwCtCuF0VnzANBgkqhkiG9w0BAQsFADBsMQswCQYDVQQGEwJVUzEVMBMGA1UEChMMRGlnaUNlcnQgSW5jMRkwFwYDVQQLExB3d3cuZGlnaWNlcnQuY29tMSswKQYDVQQDEyJEaWdpQ2VydCBIaWdoIEFzc3VyYW5jZSBFViBSb290IENBMB4XDTEzMTAyMjEyMDAwMFoXDTI4MTAyMjEyMDAwMFowcDELMAkGA1UEBhMCVVMxFTATBgNVBAoTDERpZ2lDZXJ0IEluYzEZMBcGA1UECxMQd3d3LmRpZ2ljZXJ0LmNvbTEvMC0GA1UEAxMmRGlnaUNlcnQgU0hBMiBIaWdoIEFzc3VyYW5jZSBTZXJ2ZXIgQ0EwggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQC24C/CJAbIbQRf1+8KZAayfSImZRauQkCbztyfn3YHPsMwVYcZuU+UDlqUH1VWtMICKq/QmO4LQNfE0DtyyBSe75CxEamu0si4QzrZCwvV1ZX1QK/IHe1NnF9Xt4ZQaJn1itrSxwUfqJfJ3KSxgoQtxq2lnMcZgqaFD15EWCo3j/018QsIJzJa9buLnqS9UdAn4t07QjOjBSjEuyjMmqwrIw14xnvmXnG3Sj4I+4G3FhahnSMSTeXXkgisdaScus0Xsh5ENWV/UyU50RwKmmMbGZJ0aAo3wsJSSMs5WqK24V3B3aAguCGikyZvFEohQcftbZvySC/zA/WiaJJTL17jAgMBAAGjggFJMIIBRTASBgNVHRMBAf8ECDAGAQH/AgEAMA4GA1UdDwEB/wQEAwIBhjAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwNAYIKwYBBQUHAQEEKDAmMCQGCCsGAQUFBzABhhhodHRwOi8vb2NzcC5kaWdpY2VydC5jb20wSwYDVR0fBEQwQjBAoD6gPIY6aHR0cDovL2NybDQuZGlnaWNlcnQuY29tL0RpZ2lDZXJ0SGlnaEFzc3VyYW5jZUVWUm9vdENBLmNybDA9BgNVHSAENjA0MDIGBFUdIAAwKjAoBggrBgEFBQcCARYcaHR0cHM6Ly93d3cuZGlnaWNlcnQuY29tL0NQUzAdBgNVHQ4EFgQUUWj/kK8CB3U8zNllZGKiErhZcjswHwYDVR0jBBgwFoAUsT7DaQP4v0cB1JgmGggC72NkK8MwDQYJKoZIhvcNAQELBQADggEBABiKlYkD5m3fXPwdaOpKj4PWUS+Na0QWnqxj9dJubISZi6qBcYRb7TROsLd5kinMLYBq8I4g4Xmk/gNHE+r1hspZcX30BJZr01lYPf7TMSVcGDiEo+afgv2MW5gxTs14nhr9hctJqvIni5ly/D6q1UEL2tU2ob8cbkdJf17ZSHwD2f2LSaCYJkJA69aSEaRkCldUxPUd1gJea6zuxICaEnL6VpPX/78whQYwvwt/Tv9XBZ0k7YXDK/umdaisLRbvfXknsuvCnQsH6qqF0wGjIChBWUMo0oHjqvbsezt3tkBigAVBRQHvFwY+3sAzm2fTYS5yh+Rp/BIAV0AecPUeybQ="},{"base64":"MIIEsTCCA5mgAwIBAgIQBOHnpNxc8vNtwCtCuF0VnzANBgkqhkiG9w0BAQsFADBsMQswCQYDVQQGEwJVUzEVMBMGA1UEChMMRGlnaUNlcnQgSW5jMRkwFwYDVQQLExB3d3cuZGlnaWNlcnQuY29tMSswKQYDVQQDEyJEaWdpQ2VydCBIaWdoIEFzc3VyYW5jZSBFViBSb290IENBMB4XDTEzMTAyMjEyMDAwMFoXDTI4MTAyMjEyMDAwMFowcDELMAkGA1UEBhMCVVMxFTATBgNVBAoTDERpZ2lDZXJ0IEluYzEZMBcGA1UECxMQd3d3LmRpZ2ljZXJ0LmNvbTEvMC0GA1UEAxMmRGlnaUNlcnQgU0hBMiBIaWdoIEFzc3VyYW5jZSBTZXJ2ZXIgQ0EwggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQC24C/CJAbIbQRf1+8KZAayfSImZRauQkCbztyfn3YHPsMwVYcZuU+UDlqUH1VWtMICKq/QmO4LQNfE0DtyyBSe75CxEamu0si4QzrZCwvV1ZX1QK/IHe1NnF9Xt4ZQaJn1itrSxwUfqJfJ3KSxgoQtxq2lnMcZgqaFD15EWCo3j/018QsIJzJa9buLnqS9UdAn4t07QjOjBSjEuyjMmqwrIw14xnvmXnG3Sj4I+4G3FhahnSMSTeXXkgisdaScus0Xsh5ENWV/UyU50RwKmmMbGZJ0aAo3wsJSSMs5WqK24V3B3aAguCGikyZvFEohQcftbZvySC/zA/WiaJJTL17jAgMBAAGjggFJMIIBRTASBgNVHRMBAf8ECDAGAQH/AgEAMA4GA1UdDwEB/wQEAwIBhjAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwNAYIKwYBBQUHAQEEKDAmMCQGCCsGAQUFBzABhhhodHRwOi8vb2NzcC5kaWdpY2VydC5jb20wSwYDVR0fBEQwQjBAoD6gPIY6aHR0cDovL2NybDQuZGlnaWNlcnQuY29tL0RpZ2lDZXJ0SGlnaEFzc3VyYW5jZUVWUm9vdENBLmNybDA9BgNVHSAENjA0MDIGBFUdIAAwKjAoBggrBgEFBQcCARYcaHR0cHM6Ly93d3cuZGlnaWNlcnQuY29tL0NQUzAdBgNVHQ4EFgQUUWj/kK8CB3U8zNllZGKiErhZcjswHwYDVR0jBBgwFoAUsT7DaQP4v0cB1JgmGggC72NkK8MwDQYJKoZIhvcNAQELBQADggEBABiKlYkD5m3fXPwdaOpKj4PWUS+Na0QWnqxj9dJubISZi6qBcYRb7TROsLd5kinMLYBq8I4g4Xmk/gNHE+r1hspZcX30BJZr01lYPf7TMSVcGDiEo+afgv2MW5gxTs14nhr9hctJqvIni5ly/D6q1UEL2tU2ob8cbkdJf17ZSHwD2f2LSaCYJkJA69aSEaRkCldUxPUd1gJea6zuxICaEnL6VpPX/78whQYwvwt/Tv9XBZ0k7YXDK/umdaisLRbvfXknsuvCnQsH6qqF0wGjIChBWUMo0oHjqvbsezt3tkBigAVBRQHvFwY+3sAzm2fTYS5yh+Rp/BIAV0AecPUeybQ="}],"version":"0303","random":"66aa18f8da19b975137584f8acf2fe5641aa54c23fef9bef2b1a96299826526f","selected_cipher_suite":"c02f","compression_method":"00","session_ticket":""}},"reassembly_properties":{"reassembled":true},"ip":{"version":4,"ttl":128,"id":"a2bd"},"src_ip":"72.30.35.9","dst_ip":"192.168.113.237","protocol":6,"src_port":443,"dst_port":37050,"event_start":1565200334.983206} +{"dns":{"base64":"rPQBAAABAAAAAAAAA3d3dwV5YWhvbwNjb20AAAEAAQ=="},"ip":{"version":4,"ttl":64,"id":"d6aa"},"src_ip":"192.168.113.237","dst_ip":"192.168.113.2","protocol":17,"src_port":54985,"dst_port":53,"event_start":1565200335.120651} +{"dns":{"base64":"DxIBAAABAAAAAAAAA3d3dwV5YWhvbwNjb20AABwAAQ=="},"ip":{"version":4,"ttl":64,"id":"d6ab"},"src_ip":"192.168.113.237","dst_ip":"192.168.113.2","protocol":17,"src_port":46072,"dst_port":53,"event_start":1565200335.120836} +{"dns":{"base64":"DxKBgAABAAUADQAGA3d3dwV5YWhvbwNjb20AABwAAcAMAAUAAQAAAAUAFg1hdHN2Mi1mcC1zaGVkA3dnMQFiwBDAKwAcAAEAAAAFABAgAUmYAEQEHQAAAAAAAAADwCsAHAABAAAABQAQIAFJmABYGDYAAAAAAAAAEMArABwAAQAAAAUAECABSZgAWBg2AAAAAAAAABHAKwAcAAEAAAAFABAgAUmYAEQEHQAAAAAAAAAEwBYAAgABAAAABQAUAWUMZ3RsZC1zZXJ2ZXJzA25ldADAFgACAAEAAAAFAAQBYsC/wBYAAgABAAAABQAEAWvAv8AWAAIAAQAAAAUABAFkwL/AFgACAAEAAAAFAAQBasC/wBYAAgABAAAABQAEAWHAv8AWAAIAAQAAAAUABAFswL/AFgACAAEAAAAFAAQBaMC/wBYAAgABAAAABQAEAWbAv8AWAAIAAQAAAAUABAFtwL/AFgACAAEAAAAFAAQBY8C/wBYAAgABAAAABQAEAWnAv8AWAAIAAQAAAAUABAFnwL/BHQABAAEAAAAFAATABQYewN0AAQABAAAABQAEwCEOHsFtAAEAAQAAAAUABMAaXB7A/QABAAEAAAAFAATAH1AewL0AAQABAAAABQAEwAxeHsFNAAEAAQAAAAUABMAjMx4="},"ip":{"version":4,"ttl":128,"id":"a2c4"},"src_ip":"192.168.113.2","dst_ip":"192.168.113.237","protocol":17,"src_port":53,"dst_port":46072,"event_start":1565200335.157761} +{"dns":{"base64":"rPSBgAABAAUADQAJA3d3dwV5YWhvbwNjb20AAAEAAcAMAAUAAQAAAAUAFg1hdHN2Mi1mcC1zaGVkA3dnMQFiwBDAKwABAAEAAAAFAARIHiMJwCsAAQABAAAABQAEYorb6MArAAEAAQAAAAUABEgeIwrAKwABAAEAAAAFAARiitvnwBYAAgABAAAABQAUAWoMZ3RsZC1zZXJ2ZXJzA25ldADAFgACAAEAAAAFAAQBZMCPwBYAAgABAAAABQAEAWnAj8AWAAIAAQAAAAUABAFrwI/AFgACAAEAAAAFAAQBZ8CPwBYAAgABAAAABQAEAWbAj8AWAAIAAQAAAAUABAFowI/AFgACAAEAAAAFAAQBYsCPwBYAAgABAAAABQAEAWPAj8AWAAIAAQAAAAUABAFswI/AFgACAAEAAAAFAAQBYcCPwBYAAgABAAAABQAEAWXAj8AWAAIAAQAAAAUABAFtwI/BPQABAAEAAAAFAATABQYewQ0AAQABAAAABQAEwCEOHsEdAAEAAQAAAAUABMAaXB7ArQABAAEAAAAFAATAH1AewU0AAQABAAAABQAEwAxeHsDtAAEAAQAAAAUABMAjMx7A3QABAAEAAAAFAATAKl0ewP0AAQABAAAABQAEwDZwHsC9AAEAAQAAAAUABMArrB4="},"ip":{"version":4,"ttl":128,"id":"a2c5"},"src_ip":"192.168.113.2","dst_ip":"192.168.113.237","protocol":17,"src_port":53,"dst_port":54985,"event_start":1565200335.158060} +{"fingerprints":{"tcp":"tcp/(40)()(40)(faf0)((020405b4)(04)(08)(01)(030307))"},"tcp":{"seq":3967614597,"timestamp":{"ts_val":3377255874}},"ip":{"version":4,"ttl":64,"id":"2d19"},"src_ip":"192.168.113.237","dst_ip":"98.138.219.231","protocol":6,"src_port":59128,"dst_port":443,"event_start":1565200335.158395} +{"fingerprints":{"tcp_server":"tcp_server/(40)()(80)(faf0)((020405b4))"},"tcp_server":{"seq":2260420228},"ip":{"version":4,"ttl":128,"id":"a2c7"},"src_ip":"98.138.219.231","dst_ip":"192.168.113.237","protocol":6,"src_port":443,"dst_port":59128,"event_start":1565200335.242087} +{"fingerprints":{"tls":"tls/(0303)(130213031301c02cc030009fcca9cca8ccaac02bc02f009ec024c028006bc023c0270067c00ac0140039c009c0130033009d009c003d003c0035002f00ff)((0000)(000b000403000102)(000a000c000a001d0017001e00190018)(0023)(0016)(0017)(000d0030002e040305030603080708080809080a080b080408050806040105010601030302030301020103020202040205020602)(002b0009080304030303020301)(002d00020101)(0033))"},"tls":{"client":{"version":"0303","random":"dc47ec765151ba9349e3f25ff7da7348edbbcbc801af5f02100b5ca354c4356c","session_id":"ddd41a3c4486fd113da42a21378d90a42b6fa56a0958c08f47ff6fe55adeeaed","cipher_suites":"130213031301c02cc030009fcca9cca8ccaac02bc02f009ec024c028006bc023c0270067c00ac0140039c009c0130033009d009c003d003c0035002f00ff","compression_methods":"00","server_name":"www.yahoo.com","session_ticket":"","features":"[\"0303\",\"130213031301c02cc030009fcca9cca8ccaac02bc02f009ec024c028006bc023c0270067c00ac0140039c009c0130033009d009c003d003c0035002f00ff\",[[\"0000\",\"001000000d7777772e7961686f6f2e636f6d\"],[\"000b\",\"03000102\"],[\"000a\",\"000a001d0017001e00190018\"],[\"0023\",\"\"],[\"0016\",\"\"],[\"0017\",\"\"],[\"000d\",\"002e040305030603080708080809080a080b080408050806040105010601030302030301020103020202040205020602\"],[\"002b\",\"080304030303020301\"],[\"002d\",\"0101\"],[\"0033\",\"0024001d00202b602dcd972bb03a0a7fda1e4765b7b05da3de7ccfbdd17ba579dccfbfec3927\"]]]"}},"ip":{"version":4,"ttl":64,"id":"2d1b"},"src_ip":"192.168.113.237","dst_ip":"98.138.219.231","protocol":6,"src_port":59128,"dst_port":443,"event_start":1565200335.242324} +{"fingerprints":{"tls_server":"tls_server/(0303)(c02f)((0000)(ff01)(000b000403000102)(0023))"},"tls":{"server":{"certs":[{"base64":"MIIHCzCCBfOgAwIBAgIQC8M2wJUf1+pWw3jShdD6bTANBgkqhkiG9w0BAQsFADBwMQswCQYDVQQGEwJVUzEVMBMGA1UEChMMRGlnaUNlcnQgSW5jMRkwFwYDVQQLExB3d3cuZGlnaWNlcnQuY29tMS8wLQYDVQQDEyZEaWdpQ2VydCBTSEEyIEhpZ2ggQXNzdXJhbmNlIFNlcnZlciBDQTAeFw0xOTA4MDYwMDAwMDBaFw0yMDAyMDIxMjAwMDBaMGMxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRIwEAYDVQQHEwlTdW5ueXZhbGUxETAPBgNVBAoTCE9hdGggSW5jMRgwFgYDVQQDDA8qLnd3dy55YWhvby5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQCirs4sQ7vEOfujfIii5gGWEOlqKc9yHNbAoyN96STzjihj56QK3Uzl7fiShiKiD04OAE1RLOrVObCwrWJi+C3XybKlOAwVvKD1gkkyuGZaunygg4H+TfvRICZV5pRMNNbacko0Ji/Xv5r9+epnHAeGXSp0LxQiH3wyJCBtLPuBI6A3wxd1iaWiFAWNR2WUMyU3uENLnbMjr0j462/+kYdhZ0+phZ9auThabOOR8TA61NwTofCJ5Xq0cMk9h6kWN7FcpMEMrid2qPqYTQcvVBgFipPZRNIO7ymRPEmnWQo21PtgiRfnILqg+Lwd95A5RYg2XeRhmXBa22Sh+J/b1im/AgMBAAGjggOsMIIDqDAfBgNVHSMEGDAWgBRRaP+QrwIHdTzM2WVkYqISuFlyOzAdBgNVHQ4EFgQUaekEkRuDKAqyMmsIHXgRzibqObswgdYGA1UdEQSBzjCBy4IPKi53d3cueWFob28uY29tgg4qLmFtcC55aW1nLmNvbYILKi55YWhvby5jb22CEGFkZC5teS55YWhvby5jb22CD2NhLm15LnlhaG9vLmNvbYITY2Eucm9nZXJzLnlhaG9vLmNvbYIQZGRsLmZwLnlhaG9vLmNvbYIWZnItY2Eucm9nZXJzLnlhaG9vLmNvbYIPaGsucmQueWFob28uY29tggxtYnAueWltZy5jb22CD3R3LnJkLnlhaG9vLmNvbYIJeWFob28uY29tMA4GA1UdDwEB/wQEAwIFoDAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwdQYDVR0fBG4wbDA0oDKgMIYuaHR0cDovL2NybDMuZGlnaWNlcnQuY29tL3NoYTItaGEtc2VydmVyLWc2LmNybDA0oDKgMIYuaHR0cDovL2NybDQuZGlnaWNlcnQuY29tL3NoYTItaGEtc2VydmVyLWc2LmNybDBMBgNVHSAERTBDMDcGCWCGSAGG/WwBATAqMCgGCCsGAQUFBwIBFhxodHRwczovL3d3dy5kaWdpY2VydC5jb20vQ1BTMAgGBmeBDAECAjCBgwYIKwYBBQUHAQEEdzB1MCQGCCsGAQUFBzABhhhodHRwOi8vb2NzcC5kaWdpY2VydC5jb20wTQYIKwYBBQUHMAKGQWh0dHA6Ly9jYWNlcnRzLmRpZ2ljZXJ0LmNvbS9EaWdpQ2VydFNIQTJIaWdoQXNzdXJhbmNlU2VydmVyQ0EuY3J0MAwGA1UdEwEB/wQCMAAwggEDBgorBgEEAdZ5AgQCBIH0BIHxAO8AdgC72d+8H4pxtZOUI5eqkntHOFeVCqtS6BqQlmQ2jh7RhQAAAWxoP1bRAAAEAwBHMEUCIQDdmgmiG/EpnvAnBdg3XCQTGLs8lNSIDGHDaQWgBq9VCgIgZsZ3m6pXNI//TS8XhYh8PCWIjBokKJvm1Tn1ST6L3ckAdQCHdb/nWXz4jEOZX73zbv9WjUdWNv9KtWDBtOr/XqCDDwAAAWxoP1ccAAAEAwBGMEQCIEHpkO5+0ht224fAM6owijpPlRfcO+YwaVQDkgI1mIDAAiBtpay6WdE9oAc9pF31Je1sgbaDFGD0q5Yx22QwmFvxZDANBgkqhkiG9w0BAQsFAAOCAQEAnINtMIB149N31+iHLGR4/lXGfKmKjUibQR6WaD0lNANjChxDiFXPQieobLfkWkaMfKBbGSg8h7WMdCsCkIMnN+z8KmmTnY4MN+m8wR0QOXKHvWXX6HG3sSORtJ7EI9uxFvBOlEHmj4HBrQVs0iiVOp5gcOAfCcphMtNBp3gIy8eqi7HeUrsiVwJal/vz2V+zlaHgXJ86eVOqvE1H30hdiQYXi23+sbfkTfZh119xiJ9c591HgYrUy4vWdAdPD0Eoo1JVIxDRpNHxIIDpnxYehlCU921fOJqwL1ShquSF59UzV7DDnIxdkYTmPY5H5kjlbhNU99k/dnkWSpecKP0m8Q=="},{"base64":"MIIEsTCCA5mgAwIBAgIQBOHnpNxc8vNtwCtCuF0VnzANBgkqhkiG9w0BAQsFADBsMQswCQYDVQQGEwJVUzEVMBMGA1UEChMMRGlnaUNlcnQgSW5jMRkwFwYDVQQLExB3d3cuZGlnaWNlcnQuY29tMSswKQYDVQQDEyJEaWdpQ2VydCBIaWdoIEFzc3VyYW5jZSBFViBSb290IENBMB4XDTEzMTAyMjEyMDAwMFoXDTI4MTAyMjEyMDAwMFowcDELMAkGA1UEBhMCVVMxFTATBgNVBAoTDERpZ2lDZXJ0IEluYzEZMBcGA1UECxMQd3d3LmRpZ2ljZXJ0LmNvbTEvMC0GA1UEAxMmRGlnaUNlcnQgU0hBMiBIaWdoIEFzc3VyYW5jZSBTZXJ2ZXIgQ0EwggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQC24C/CJAbIbQRf1+8KZAayfSImZRauQkCbztyfn3YHPsMwVYcZuU+UDlqUH1VWtMICKq/QmO4LQNfE0DtyyBSe75CxEamu0si4QzrZCwvV1ZX1QK/IHe1NnF9Xt4ZQaJn1itrSxwUfqJfJ3KSxgoQtxq2lnMcZgqaFD15EWCo3j/018QsIJzJa9buLnqS9UdAn4t07QjOjBSjEuyjMmqwrIw14xnvmXnG3Sj4I+4G3FhahnSMSTeXXkgisdaScus0Xsh5ENWV/UyU50RwKmmMbGZJ0aAo3wsJSSMs5WqK24V3B3aAguCGikyZvFEohQcftbZvySC/zA/WiaJJTL17jAgMBAAGjggFJMIIBRTASBgNVHRMBAf8ECDAGAQH/AgEAMA4GA1UdDwEB/wQEAwIBhjAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwNAYIKwYBBQUHAQEEKDAmMCQGCCsGAQUFBzABhhhodHRwOi8vb2NzcC5kaWdpY2VydC5jb20wSwYDVR0fBEQwQjBAoD6gPIY6aHR0cDovL2NybDQuZGlnaWNlcnQuY29tL0RpZ2lDZXJ0SGlnaEFzc3VyYW5jZUVWUm9vdENBLmNybDA9BgNVHSAENjA0MDIGBFUdIAAwKjAoBggrBgEFBQcCARYcaHR0cHM6Ly93d3cuZGlnaWNlcnQuY29tL0NQUzAdBgNVHQ4EFgQUUWj/kK8CB3U8zNllZGKiErhZcjswHwYDVR0jBBgwFoAUsT7DaQP4v0cB1JgmGggC72NkK8MwDQYJKoZIhvcNAQELBQADggEBABiKlYkD5m3fXPwdaOpKj4PWUS+Na0QWnqxj9dJubISZi6qBcYRb7TROsLd5kinMLYBq8I4g4Xmk/gNHE+r1hspZcX30BJZr01lYPf7TMSVcGDiEo+afgv2MW5gxTs14nhr9hctJqvIni5ly/D6q1UEL2tU2ob8cbkdJf17ZSHwD2f2LSaCYJkJA69aSEaRkCldUxPUd1gJea6zuxICaEnL6VpPX/78whQYwvwt/Tv9XBZ0k7YXDK/umdaisLRbvfXknsuvCnQsH6qqF0wGjIChBWUMo0oHjqvbsezt3tkBigAVBRQHvFwY+3sAzm2fTYS5yh+Rp/BIAV0AecPUeybQ="},{"base64":"MIIEsTCCA5mgAwIBAgIQBOHnpNxc8vNtwCtCuF0VnzANBgkqhkiG9w0BAQsFADBsMQswCQYDVQQGEwJVUzEVMBMGA1UEChMMRGlnaUNlcnQgSW5jMRkwFwYDVQQLExB3d3cuZGlnaWNlcnQuY29tMSswKQYDVQQDEyJEaWdpQ2VydCBIaWdoIEFzc3VyYW5jZSBFViBSb290IENBMB4XDTEzMTAyMjEyMDAwMFoXDTI4MTAyMjEyMDAwMFowcDELMAkGA1UEBhMCVVMxFTATBgNVBAoTDERpZ2lDZXJ0IEluYzEZMBcGA1UECxMQd3d3LmRpZ2ljZXJ0LmNvbTEvMC0GA1UEAxMmRGlnaUNlcnQgU0hBMiBIaWdoIEFzc3VyYW5jZSBTZXJ2ZXIgQ0EwggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQC24C/CJAbIbQRf1+8KZAayfSImZRauQkCbztyfn3YHPsMwVYcZuU+UDlqUH1VWtMICKq/QmO4LQNfE0DtyyBSe75CxEamu0si4QzrZCwvV1ZX1QK/IHe1NnF9Xt4ZQaJn1itrSxwUfqJfJ3KSxgoQtxq2lnMcZgqaFD15EWCo3j/018QsIJzJa9buLnqS9UdAn4t07QjOjBSjEuyjMmqwrIw14xnvmXnG3Sj4I+4G3FhahnSMSTeXXkgisdaScus0Xsh5ENWV/UyU50RwKmmMbGZJ0aAo3wsJSSMs5WqK24V3B3aAguCGikyZvFEohQcftbZvySC/zA/WiaJJTL17jAgMBAAGjggFJMIIBRTASBgNVHRMBAf8ECDAGAQH/AgEAMA4GA1UdDwEB/wQEAwIBhjAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwNAYIKwYBBQUHAQEEKDAmMCQGCCsGAQUFBzABhhhodHRwOi8vb2NzcC5kaWdpY2VydC5jb20wSwYDVR0fBEQwQjBAoD6gPIY6aHR0cDovL2NybDQuZGlnaWNlcnQuY29tL0RpZ2lDZXJ0SGlnaEFzc3VyYW5jZUVWUm9vdENBLmNybDA9BgNVHSAENjA0MDIGBFUdIAAwKjAoBggrBgEFBQcCARYcaHR0cHM6Ly93d3cuZGlnaWNlcnQuY29tL0NQUzAdBgNVHQ4EFgQUUWj/kK8CB3U8zNllZGKiErhZcjswHwYDVR0jBBgwFoAUsT7DaQP4v0cB1JgmGggC72NkK8MwDQYJKoZIhvcNAQELBQADggEBABiKlYkD5m3fXPwdaOpKj4PWUS+Na0QWnqxj9dJubISZi6qBcYRb7TROsLd5kinMLYBq8I4g4Xmk/gNHE+r1hspZcX30BJZr01lYPf7TMSVcGDiEo+afgv2MW5gxTs14nhr9hctJqvIni5ly/D6q1UEL2tU2ob8cbkdJf17ZSHwD2f2LSaCYJkJA69aSEaRkCldUxPUd1gJea6zuxICaEnL6VpPX/78whQYwvwt/Tv9XBZ0k7YXDK/umdaisLRbvfXknsuvCnQsH6qqF0wGjIChBWUMo0oHjqvbsezt3tkBigAVBRQHvFwY+3sAzm2fTYS5yh+Rp/BIAV0AecPUeybQ="}],"version":"0303","random":"8bdb627960cb621da3240c3f1660b272d909aee9b2bdedd1b69b80f50c50fc42","selected_cipher_suite":"c02f","compression_method":"00","session_ticket":""}},"reassembly_properties":{"reassembled":true},"ip":{"version":4,"ttl":128,"id":"a2cd"},"src_ip":"98.138.219.231","dst_ip":"192.168.113.237","protocol":6,"src_port":443,"dst_port":59128,"event_start":1565200335.333809} +{"dns":{"base64":"hR0BAAABAAAAAAAABmFtYXpvbgNjb20AAAEAAQ=="},"ip":{"version":4,"ttl":64,"id":"d6df"},"src_ip":"192.168.113.237","dst_ip":"192.168.113.2","protocol":17,"src_port":53662,"dst_port":53,"event_start":1565200336.134566} +{"dns":{"base64":"U8kBAAABAAAAAAAABmFtYXpvbgNjb20AABwAAQ=="},"ip":{"version":4,"ttl":64,"id":"d6e0"},"src_ip":"192.168.113.237","dst_ip":"192.168.113.2","protocol":17,"src_port":50727,"dst_port":53,"event_start":1565200336.134719} +{"dns":{"base64":"hR2BgAABAAMABgAKBmFtYXpvbgNjb20AAAEAAcAMAAEAAQAAAAUABLAgYqbADAABAAEAAAAFAASwIGfNwAwAAQABAAAABQAEzfvyZ8AMAAIAAQAAAAUAFAVwZG5zMQh1bHRyYWRucwNuZXQAwAwAAgABAAAABQARA25zMwNwMzEGZHluZWN0wGfADAACAAEAAAAFABYFcGRuczYIdWx0cmFkbnMCY28CdWsAwAwAAgABAAAABQAGA25zNMB8wAwAAgABAAAABQAGA25zMcB8wAwAAgABAAAABQAGA25zMsB8wMkAAQABAAAABQAE0E5GH8DbAAEAAQAAAAUABMwN+h/AeAABAAEAAAAFAATQTkcfwLcAAQABAAAABQAEzA37H8BYAAEAAQAAAAUABMxKbAHAlQABAAEAAAAFAATMSnMBwMkAHAABAAAABQAQIAEFAACQAAEAAAAAAAAAMcB4ABwAAQAAAAUAECABBQAAlAABAAAAAAAAADHAWAAcAAEAAAAFABAgAQUC8/8AAAAAAAAAAAABwJUAHAABAAAABQAQJhAAoRAXAAAAAAAAAAAAAQ=="},"ip":{"version":4,"ttl":128,"id":"a480"},"src_ip":"192.168.113.2","dst_ip":"192.168.113.237","protocol":17,"src_port":53,"dst_port":53662,"event_start":1565200336.175444} +{"dns":{"base64":"U8mBgAABAAAAAQAABmFtYXpvbgNjb20AABwAAcAMAAYAAQAAAAUAMRNkbnMtZXh0ZXJuYWwtbWFzdGVywAwEcm9vdMAMd9AASgAAALQAAAA8AC4kgAAAADw="},"ip":{"version":4,"ttl":128,"id":"a481"},"src_ip":"192.168.113.2","dst_ip":"192.168.113.237","protocol":17,"src_port":53,"dst_port":50727,"event_start":1565200336.175898} +{"fingerprints":{"tcp":"tcp/(40)()(40)(faf0)((020405b4)(04)(08)(01)(030307))"},"tcp":{"seq":623246215,"timestamp":{"ts_val":215980203}},"ip":{"version":4,"ttl":64,"id":"2f1d"},"src_ip":"192.168.113.237","dst_ip":"176.32.98.166","protocol":6,"src_port":52744,"dst_port":443,"event_start":1565200336.176117} +{"fingerprints":{"tcp_server":"tcp_server/(40)()(80)(faf0)((020405b4))"},"tcp_server":{"seq":2792447645},"ip":{"version":4,"ttl":128,"id":"a482"},"src_ip":"176.32.98.166","dst_ip":"192.168.113.237","protocol":6,"src_port":443,"dst_port":52744,"event_start":1565200336.223597} +{"fingerprints":{"tls":"tls/(0303)(130213031301c02cc030009fcca9cca8ccaac02bc02f009ec024c028006bc023c0270067c00ac0140039c009c0130033009d009c003d003c0035002f00ff)((0000)(000b000403000102)(000a000c000a001d0017001e00190018)(0023)(0016)(0017)(000d0030002e040305030603080708080809080a080b080408050806040105010601030302030301020103020202040205020602)(002b0009080304030303020301)(002d00020101)(0033))"},"tls":{"client":{"version":"0303","random":"27fd08445febb2e3753384004c43803878d9306e3522c808b91fd97f91df59b8","session_id":"ff2a500926c97bfb0e31578ea6ccaa70342c495ba769b4e5a3cf32b775df8c94","cipher_suites":"130213031301c02cc030009fcca9cca8ccaac02bc02f009ec024c028006bc023c0270067c00ac0140039c009c0130033009d009c003d003c0035002f00ff","compression_methods":"00","server_name":"amazon.com","session_ticket":"","features":"[\"0303\",\"130213031301c02cc030009fcca9cca8ccaac02bc02f009ec024c028006bc023c0270067c00ac0140039c009c0130033009d009c003d003c0035002f00ff\",[[\"0000\",\"000d00000a616d617a6f6e2e636f6d\"],[\"000b\",\"03000102\"],[\"000a\",\"000a001d0017001e00190018\"],[\"0023\",\"\"],[\"0016\",\"\"],[\"0017\",\"\"],[\"000d\",\"002e040305030603080708080809080a080b080408050806040105010601030302030301020103020202040205020602\"],[\"002b\",\"080304030303020301\"],[\"002d\",\"0101\"],[\"0033\",\"0024001d00201d2361db2e415e444dea7130192848cba7f633366403600ab0dd2edebc7d5148\"]]]"}},"ip":{"version":4,"ttl":64,"id":"2f1f"},"src_ip":"192.168.113.237","dst_ip":"176.32.98.166","protocol":6,"src_port":52744,"dst_port":443,"event_start":1565200336.223970} +{"fingerprints":{"tls_server":"tls_server/(0303)(c02f)((ff01)(000b000403000102))"},"tls":{"server":{"certs":[{"base64":"MIIIITCCBwmgAwIBAgIQBgbZf4Ao3WgcJWbIhYPjZjANBgkqhkiG9w0BAQsFADBEMQswCQYDVQQGEwJVUzEVMBMGA1UEChMMRGlnaUNlcnQgSW5jMR4wHAYDVQQDExVEaWdpQ2VydCBHbG9iYWwgQ0EgRzIwHhcNMTkwNDMwMDAwMDAwWhcNMjAwNDAxMTIwMDAwWjBnMQswCQYDVQQGEwJVUzETMBEGA1UECBMKV2FzaGluZ3RvbjEQMA4GA1UEBxMHU2VhdHRsZTEZMBcGA1UEChMQQW1hem9uLmNvbSwgSW5jLjEWMBQGA1UEAwwNKi5wZWcuYTJ6LmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALFgxFvUh6c5p4HmPB4BjoRVRU9zT3/3GW7IxJRqc94R+BCvzWqI3hK7rfo8Vn6IDwOMVsfrJhSS6IPs+a0TAIyygJ5wFSjYkPtLfkfgKXMyP/c6MhxrYbxuATIX5dcJZ5kLEiGSlb9FBOIl9ILZqewA2aXAZV9kGG+dwe2f+tnW2cCho3gd29+HcRM4swvX1Q/6y+AkjPzLgET//E/UR7k98Bz6bY2bSwIg7N0dyysRSfQe7WpFJr5GwLTnEkrTz2SKgtk7H4SxkK0Sm6MLhIA6zlgQCW+gdKnZWijWiR7eFZwGKBC0AmTOPSraaDvb31D6syjzgMvkKR9IFUWA8BUCAwEAAaOCBOowggTmMB8GA1UdIwQYMBaAFCRuKy3QapJRUSVpAaqaR6aJ50AgMB0GA1UdDgQWBBQaXzAyaZXZcFEDaE8X9EnhptybGjCCAiMGA1UdEQSCAhowggIWggxhbWF6b24uY28udWuCE3VlZGF0YS5hbWF6b24uY28udWuCEHd3dy5hbWF6b24uY28udWuCF29yaWdpbi13d3cuYW1hem9uLmNvLnVrgg0qLnBlZy5hMnouY29tggphbWF6b24uY29tgghhbXpuLmNvbYIRdWVkYXRhLmFtYXpvbi5jb22CDXVzLmFtYXpvbi5jb22CDnd3dy5hbWF6b24uY29tggx3d3cuYW16bi5jb22CFGNvcnBvcmF0ZS5hbWF6b24uY29tghFidXlib3guYW1hem9uLmNvbYIRaXBob25lLmFtYXpvbi5jb22CDXlwLmFtYXpvbi5jb22CD2hvbWUuYW1hem9uLmNvbYIVb3JpZ2luLXd3dy5hbWF6b24uY29tgiFidWNrZXllLXJldGFpbC13ZWJzaXRlLmFtYXpvbi5jb22CEmh1ZGRsZXMuYW1hem9uLmNvbYIJYW1hem9uLmRlgg13d3cuYW1hem9uLmRlghRvcmlnaW4td3d3LmFtYXpvbi5kZYIMYW1hem9uLmNvLmpwgglhbWF6b24uanCCDXd3dy5hbWF6b24uanCCEHd3dy5hbWF6b24uY28uanCCF29yaWdpbi13d3cuYW1hem9uLmNvLmpwghAqLmFhLnBlZy5hMnouY29tghAqLmFiLnBlZy5hMnouY29tghAqLmFjLnBlZy5hMnouY29tMA4GA1UdDwEB/wQEAwIFoDAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwdwYDVR0fBHAwbjA1oDOgMYYvaHR0cDovL2NybDMuZGlnaWNlcnQuY29tL0RpZ2lDZXJ0R2xvYmFsQ0FHMi5jcmwwNaAzoDGGL2h0dHA6Ly9jcmw0LmRpZ2ljZXJ0LmNvbS9EaWdpQ2VydEdsb2JhbENBRzIuY3JsMEwGA1UdIARFMEMwNwYJYIZIAYb9bAEBMCowKAYIKwYBBQUHAgEWHGh0dHBzOi8vd3d3LmRpZ2ljZXJ0LmNvbS9DUFMwCAYGZ4EMAQICMHQGCCsGAQUFBwEBBGgwZjAkBggrBgEFBQcwAYYYaHR0cDovL29jc3AuZGlnaWNlcnQuY29tMD4GCCsGAQUFBzAChjJodHRwOi8vY2FjZXJ0cy5kaWdpY2VydC5jb20vRGlnaUNlcnRHbG9iYWxDQUcyLmNydDAJBgNVHRMEAjAAMIIBBAYKKwYBBAHWeQIEAgSB9QSB8gDwAHcA7ku9t3XOYLrhQmkfq+GeZqMPfl+wctiDAMR7iXqo/csAAAFqbA26bQAABAMASDBGAiEAolsv5iHlTTpF3kJTj/mGWrTm775kYt6O9enHc2+IWisCIQC4yqet/vmnRcOZpDo4/cYpJbIJp0XkD9nfwxOopnvp9gB1AId1v+dZfPiMQ5lfvfNu/1aNR1Y2/0q1YMG06v9eoIMPAAABamwNtjgAAAQDAEYwRAIgTsND30lAbIjVGm8JJ/7jAq8s418JQgRE1z3pN3/8v4sCID1rsUiBMGkT0OjBuvo0AnBCJqqoN56TY3JmFlqMqFVsMA0GCSqGSIb3DQEBCwUAA4IBAQAmqfhGKyfkUG8TDiyP/+kX6tQbZ+V6kYq5sMR3ny4MFPI8Wf/kLWgFSQyaU82o4dGlqzEBLYd9WCCyr0Lr2j+KPbcwn+dQpBkqCgkER3FnM79Aoc9Xs74nbapMZ2w/nK/WVc66dtO/k7LVbEREJksAPC6tAn2FqRxDPUJShmHpsgpi/A8TXtviGll1NzdUG5DLD/8cg3pig9ZmyAvYjXlEtemWv2Y11q9NtKk7GkqA5hFMAVZEUxVzUXquFAKeKnCXlPmjpVmq6vXY7JAmu2ys+AprOtpISKNrhX/gaotw2yEXVmNaC3uURYpeKCRw5NUgjx6UgEfg6L+UbLCirxCM"},{"base64":"MIIEizCCA3OgAwIBAgIQDI7gyQ1qiRWIBAYe4kH5rzANBgkqhkiG9w0BAQsFADBhMQswCQYDVQQGEwJVUzEVMBMGA1UEChMMRGlnaUNlcnQgSW5jMRkwFwYDVQQLExB3d3cuZGlnaWNlcnQuY29tMSAwHgYDVQQDExdEaWdpQ2VydCBHbG9iYWwgUm9vdCBHMjAeFw0xMzA4MDExMjAwMDBaFw0yODA4MDExMjAwMDBaMEQxCzAJBgNVBAYTAlVTMRUwEwYDVQQKEwxEaWdpQ2VydCBJbmMxHjAcBgNVBAMTFURpZ2lDZXJ0IEdsb2JhbCBDQSBHMjCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANNIfL7zBYZdW9UvhU5L4IatFaxhz1uvPmoKR/uadpFgC4przc/cV35gmAvkVNlW7SHMArZagV+Xau4CLyMnuG3UsOcGAngLH1ypmTb+u6wbBfpXzYEQQGfWMItYNdSWYb7QjHqXnxr5IuYUL6nG6AEfq/gmD6yOTSwyOR2Bm40cZbIc22GoiS9g5+vCShjEbyrpEJIJ7RfRACvmfe8EiRROM6GyD5eHn7OgzS+8LOy4g2gxPR/VSpAQGQuBldYpdlH5NnbQtwl6OErXb4y/E3w57bqukPyV93t4CTZedJMeJfD/1K2uaGvG/w/VNfFVbkhJ+Pi474j48V4Rd6rfArMCAwEAAaOCAVowggFWMBIGA1UdEwEB/wQIMAYBAf8CAQAwDgYDVR0PAQH/BAQDAgGGMDQGCCsGAQUFBwEBBCgwJjAkBggrBgEFBQcwAYYYaHR0cDovL29jc3AuZGlnaWNlcnQuY29tMHsGA1UdHwR0MHIwN6A1oDOGMWh0dHA6Ly9jcmw0LmRpZ2ljZXJ0LmNvbS9EaWdpQ2VydEdsb2JhbFJvb3RHMi5jcmwwN6A1oDOGMWh0dHA6Ly9jcmwzLmRpZ2ljZXJ0LmNvbS9EaWdpQ2VydEdsb2JhbFJvb3RHMi5jcmwwPQYDVR0gBDYwNDAyBgRVHSAAMCowKAYIKwYBBQUHAgEWHGh0dHBzOi8vd3d3LmRpZ2ljZXJ0LmNvbS9DUFMwHQYDVR0OBBYEFCRuKy3QapJRUSVpAaqaR6aJ50AgMB8GA1UdIwQYMBaAFE4iVCAYlebjbuYP+vq5Eu0GF485MA0GCSqGSIb3DQEBCwUAA4IBAQALOYSR+ZfrqoGvhOlaOJL84mxZvzbIRacxAxHhBsCsMsdaVSnaT0AC9aHesO3ewPj2dZ12uYf+QYB6z13jAMZbAuabeGLJ3LhimnftiQjXS8X9Q9ViIyfEBFltcT8jW+rZ8uckJ2/0lYDblizkVIvP6hnZf1WZUXoOLRg9eFhSvGNoVwvdRLNXSmDmyHBwW4coatc7TlJFGa8kBpJIERqLrqwYElesA8u49L3KJg6nwd3jM+/AVTANlVlOnAM2BvjAjxSZnE0qnsHhfTuvcqdFuhOWKU4Z0BqYBvQ3lBetoxi6PrABDJXWKTUgNX31EGDk92hiHuwZ4STyhxGs6QiA"},{"base64":"MIIE3zCCA8egAwIBAgIQYxgNOPuAl3ip0DWjFhj4QDANBgkqhkiG9w0BAQsFADCByjELMAkGA1UEBhMCVVMxFzAVBgNVBAoTDlZlcmlTaWduLCBJbmMuMR8wHQYDVQQLExZWZXJpU2lnbiBUcnVzdCBOZXR3b3JrMTowOAYDVQQLEzEoYykgMjAwNiBWZXJpU2lnbiwgSW5jLiAtIEZvciBhdXRob3JpemVkIHVzZSBvbmx5MUUwQwYDVQQDEzxWZXJpU2lnbiBDbGFzcyAzIFB1YmxpYyBQcmltYXJ5IENlcnRpZmljYXRpb24gQXV0aG9yaXR5IC0gRzUwHhcNMTcxMTA2MDAwMDAwWhcNMjIxMTA1MjM1OTU5WjBhMQswCQYDVQQGEwJVUzEVMBMGA1UEChMMRGlnaUNlcnQgSW5jMRkwFwYDVQQLExB3d3cuZGlnaWNlcnQuY29tMSAwHgYDVQQDExdEaWdpQ2VydCBHbG9iYWwgUm9vdCBHMjCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALs3zTTce2vJsmiQrUp1/0a6IQoIjfUZVMn7iNvzrvI6iZE8euarBhprz6wt6F4JJES6Ypp+1qOofuBUdSAFrFC3nGMabDDc2h8Zsdce3v3X4MuUgzeu7B9DTt17LNK9LqUv5Km4rTrUmaS2JembawBgkmD/TyFJGPdnkKthBpyP8rrptOmSMmu181foXRvNjB2rlQSVSfM1LZbjSW3dd+P7SUu0rFUHqY+Vs7Qju0xtRfD2qbKVMLT9TFWMJ0pXFHyCnc1zktMWSgYMjFDRjx4Jvheh5iHK/YPlELyDpQrEZyj2cxQUPUZ2w4cUiSE0Ta8PRQymSaG6u5zFsTODKYUCAwEAAaOCAScwggEjMB0GA1UdDgQWBBROIlQgGJXm427mD/r6uRLtBhePOTAPBgNVHRMBAf8EBTADAQH/MF8GA1UdIARYMFYwVAYEVR0gADBMMCMGCCsGAQUFBwIBFhdodHRwczovL2Quc3ltY2IuY29tL2NwczAlBggrBgEFBQcCAjAZDBdodHRwczovL2Quc3ltY2IuY29tL3JwYTAvBgNVHR8EKDAmMCSgIqAghh5odHRwOi8vcy5zeW1jYi5jb20vcGNhMy1nNS5jcmwwDgYDVR0PAQH/BAQDAgGGMC4GCCsGAQUFBwEBBCIwIDAeBggrBgEFBQcwAYYSaHR0cDovL3Muc3ltY2QuY29tMB8GA1UdIwQYMBaAFH/TZafC3ey78DAJ80M5+gKvMzEzMA0GCSqGSIb3DQEBCwUAA4IBAQBQ3dNWKSUBip6n5X1Nua8bjKLSJzXlnescavPECMpFBlIIKH2mc6mL2Xr/wkSIBDrsqAO3sBcmoJN+n8V30O5JelrtEAFYSyRDXfu78ZlHn6kvV5/jPUFECEM/hdN0x8WdLpGjJMqfs0EG5qHj+UaxpucWD445wea4zlK7hUR+MA8fq0Yd1HEKj4c8TcgaQIHMa4KHr448cQ69e3CPECRhRNg+RAKT2I7SlaVzLvaB/8yym2oMCEsoqiRT8dbXg35aKEYmmzn3O/mnB7bGUd/EUrkIf7FVamgYZd1fSzQeg1cHqf0ja6eHpvq2bTl+cWFHaq/84KlHe5Rh0CsmpZzn"}],"version":"0303","random":"e7335500cd009f55ddd3b72016bf4efa3330b6252596838158add52e47eaea50","selected_cipher_suite":"c02f","compression_method":"00"}},"reassembly_properties":{"reassembled":true},"ip":{"version":4,"ttl":128,"id":"a487"},"src_ip":"176.32.98.166","dst_ip":"192.168.113.237","protocol":6,"src_port":443,"dst_port":52744,"event_start":1565200336.271389} +{"dns":{"base64":"fpkBAAABAAAAAAAAA3d3dwZhbWF6b24DY29tAAABAAE="},"ip":{"version":4,"ttl":64,"id":"d6f2"},"src_ip":"192.168.113.237","dst_ip":"192.168.113.2","protocol":17,"src_port":59476,"dst_port":53,"event_start":1565200336.356162} +{"dns":{"base64":"mTkBAAABAAAAAAAAA3d3dwZhbWF6b24DY29tAAAcAAE="},"ip":{"version":4,"ttl":64,"id":"d6f3"},"src_ip":"192.168.113.237","dst_ip":"192.168.113.2","protocol":17,"src_port":45391,"dst_port":53,"event_start":1565200336.356346} +{"dns":{"base64":"mTmBgAABAAIAAQAAA3d3dwZhbWF6b24DY29tAAAcAAHADAAFAAEAAAAFAAoDd3d3A2NkbsAQwCwABQABAAAABQAfDmQzYWc0aHVra2g2MnluCmNsb3VkZnJvbnQDbmV0AMBCAAYAAQAAAAUAOwZucy0xMzAJYXdzZG5zLTE2wBcRYXdzZG5zLWhvc3RtYXN0ZXLAEAAAAAEAABwgAAADhAASdQAAAVGA"},"ip":{"version":4,"ttl":128,"id":"a48e"},"src_ip":"192.168.113.2","dst_ip":"192.168.113.237","protocol":17,"src_port":53,"dst_port":45391,"event_start":1565200336.388761} +{"dns":{"base64":"fpmBgAABAAMABAAIA3d3dwZhbWF6b24DY29tAAABAAHADAAFAAEAAAAFAAoDd3d3A2NkbsAQwCwABQABAAAABQAfDmQzYWc0aHVra2g2MnluCmNsb3VkZnJvbnQDbmV0AMBCAAEAAQAAAAUABGNU3BjAUQACAAEAAAAFABkHbnMtMTU5Nwlhd3NkbnMtMDcCY28CdWsAwFEAAgABAAAABQATBm5zLTY2Nglhd3NkbnMtMTnAXMBRAAIAAQAAAAUAEwZucy00MTgJYXdzZG5zLTUywBfAUQACAAEAAAAFABcHbnMtMTMwNglhd3NkbnMtMzUDb3JnAMDBAAEAAQAAAAUABM37waLAogABAAEAAAAFAATN+8KawOAAAQABAAAABQAEzfvFGsB9AAEAAQAAAAUABM37xj3AwQAcAAEAAAAFABAmAJAAUwGiAAAAAAAAAAABwKIAHAABAAAABQAQJgCQAFMCmgAAAAAAAAAAAcDgABwAAQAAAAUAECYAkABTBRoAAAAAAAAAAAHAfQAcAAEAAAAFABAmAJAAUwY9AAAAAAAAAAAB"},"ip":{"version":4,"ttl":128,"id":"a48f"},"src_ip":"192.168.113.2","dst_ip":"192.168.113.237","protocol":17,"src_port":53,"dst_port":59476,"event_start":1565200336.388790} +{"dns":{"base64":"x2sBAAABAAAAAAAADmQzYWc0aHVra2g2MnluCmNsb3VkZnJvbnQDbmV0AAAcAAE="},"ip":{"version":4,"ttl":64,"id":"d6f6"},"src_ip":"192.168.113.237","dst_ip":"192.168.113.2","protocol":17,"src_port":40095,"dst_port":53,"event_start":1565200336.389163} +{"dns":{"base64":"x2uBgAABAAAAAQAADmQzYWc0aHVra2g2MnluCmNsb3VkZnJvbnQDbmV0AAAcAAHADAAGAAEAAAAFAEUGbnMtMTMwCWF3c2Rucy0xNgNjb20AEWF3c2Rucy1ob3N0bWFzdGVyBmFtYXpvbsBMAAAAAQAAHCAAAAOEABJ1AAABUYA="},"ip":{"version":4,"ttl":128,"id":"a490"},"src_ip":"192.168.113.2","dst_ip":"192.168.113.237","protocol":17,"src_port":53,"dst_port":40095,"event_start":1565200336.420956} +{"fingerprints":{"tcp":"tcp/(40)()(40)(faf0)((020405b4)(04)(08)(01)(030307))"},"tcp":{"seq":3781662039,"timestamp":{"ts_val":913929803}},"ip":{"version":4,"ttl":64,"id":"4180"},"src_ip":"192.168.113.237","dst_ip":"99.84.220.24","protocol":6,"src_port":49224,"dst_port":443,"event_start":1565200336.421383} +{"fingerprints":{"tcp_server":"tcp_server/(40)()(80)(faf0)((020405b4))"},"tcp_server":{"seq":1126402127},"ip":{"version":4,"ttl":128,"id":"a492"},"src_ip":"99.84.220.24","dst_ip":"192.168.113.237","protocol":6,"src_port":443,"dst_port":49224,"event_start":1565200336.459201} +{"fingerprints":{"tls":"tls/(0303)(130213031301c02cc030009fcca9cca8ccaac02bc02f009ec024c028006bc023c0270067c00ac0140039c009c0130033009d009c003d003c0035002f00ff)((0000)(000b000403000102)(000a000c000a001d0017001e00190018)(0023)(0016)(0017)(000d0030002e040305030603080708080809080a080b080408050806040105010601030302030301020103020202040205020602)(002b0009080304030303020301)(002d00020101)(0033))"},"tls":{"client":{"version":"0303","random":"6964f2cb7217dae683073c74464ba162bb3cd50395a3fb896435218fa5595371","session_id":"2722d9e17ed9d6dd3043054f708c5101d194acdb5faabb0eb2d30207f7eca1a5","cipher_suites":"130213031301c02cc030009fcca9cca8ccaac02bc02f009ec024c028006bc023c0270067c00ac0140039c009c0130033009d009c003d003c0035002f00ff","compression_methods":"00","server_name":"www.amazon.com","session_ticket":"","features":"[\"0303\",\"130213031301c02cc030009fcca9cca8ccaac02bc02f009ec024c028006bc023c0270067c00ac0140039c009c0130033009d009c003d003c0035002f00ff\",[[\"0000\",\"001100000e7777772e616d617a6f6e2e636f6d\"],[\"000b\",\"03000102\"],[\"000a\",\"000a001d0017001e00190018\"],[\"0023\",\"\"],[\"0016\",\"\"],[\"0017\",\"\"],[\"000d\",\"002e040305030603080708080809080a080b080408050806040105010601030302030301020103020202040205020602\"],[\"002b\",\"080304030303020301\"],[\"002d\",\"0101\"],[\"0033\",\"0024001d00201565779a4152b43074dad5ddb4c47fce3675d50e38f72cd7a67238c424a7d602\"]]]"}},"ip":{"version":4,"ttl":64,"id":"4182"},"src_ip":"192.168.113.237","dst_ip":"99.84.220.24","protocol":6,"src_port":49224,"dst_port":443,"event_start":1565200336.459535} +{"fingerprints":{"tls_server":"tls_server/(0303)(c02f)((0000)(ff01)(000b000403000102)(0023))"},"tls":{"server":{"certs":[{"base64":"MIIHgjCCBmqgAwIBAgIQB4di2kRD0yIued1fqA/gJDANBgkqhkiG9w0BAQsFADBEMQswCQYDVQQGEwJVUzEVMBMGA1UEChMMRGlnaUNlcnQgSW5jMR4wHAYDVQQDExVEaWdpQ2VydCBHbG9iYWwgQ0EgRzIwHhcNMTkwMzI5MDAwMDAwWhcNMTkxMjE1MTIwMDAwWjBoMQswCQYDVQQGEwJVUzETMBEGA1UECBMKV2FzaGluZ3RvbjEQMA4GA1UEBxMHU2VhdHRsZTEZMBcGA1UEChMQQW1hem9uLmNvbSwgSW5jLjEXMBUGA1UEAxMOd3d3LmFtYXpvbi5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDVx5YP0mZBxSSAZGbhvJaYx7eBEl4gpVF3M4j8uk5jtPcPtq07f5Gltumil3cpM2teuW9687x3BKoX1h9uyLq3jMQSV2TxlPXd59ZTPXXNMXlTCk8JoFn7atM9Z/9b4kGthlfAgf49ZrRpiZUL6qX/NyyuHbD2fGcw5YgrvVIRPYWyztxlknKQMknHy28o25/Wvne0OeCTdWnEZQuvLKtbiS25/a1vX+ZK4srX6rPi0U5I5lfUBwt4pvBCOahIYJvGHVjCMv2Xe8ewZYP430gsSep6KiFIZTvzX2zj8dV0Ns3iiKH4OAZW5rekGIBRzDlgOM9rs4DqpiE5kK/MWsAVAgMBAAGjggRKMIIERjAfBgNVHSMEGDAWgBQkbist0GqSUVElaQGqmkemiedAIDAdBgNVHQ4EFgQUqA11y8YrIoyghAcMz9DLYo26Ws4wggGCBgNVHREEggF5MIIBdYIKYW1hem9uLmNvbYIIYW16bi5jb22CEXVlZGF0YS5hbWF6b24uY29tgg11cy5hbWF6b24uY29tgg53d3cuYW1hem9uLmNvbYIMd3d3LmFtem4uY29tghRjb3Jwb3JhdGUuYW1hem9uLmNvbYIRYnV5Ym94LmFtYXpvbi5jb22CEWlwaG9uZS5hbWF6b24uY29tgg15cC5hbWF6b24uY29tgg9ob21lLmFtYXpvbi5jb22CFW9yaWdpbi13d3cuYW1hem9uLmNvbYIhYnVja2V5ZS1yZXRhaWwtd2Vic2l0ZS5hbWF6b24uY29tghJodWRkbGVzLmFtYXpvbi5jb22CJXAtbnQtd3d3LWFtYXpvbi1jb20ta2FsaWFzLmFtYXpvbi5jb22CJXAteW8td3d3LWFtYXpvbi1jb20ta2FsaWFzLmFtYXpvbi5jb22CJXAteTMtd3d3LWFtYXpvbi1jb20ta2FsaWFzLmFtYXpvbi5jb20wDgYDVR0PAQH/BAQDAgWgMB0GA1UdJQQWMBQGCCsGAQUFBwMBBggrBgEFBQcDAjB3BgNVHR8EcDBuMDWgM6Axhi9odHRwOi8vY3JsMy5kaWdpY2VydC5jb20vRGlnaUNlcnRHbG9iYWxDQUcyLmNybDA1oDOgMYYvaHR0cDovL2NybDQuZGlnaWNlcnQuY29tL0RpZ2lDZXJ0R2xvYmFsQ0FHMi5jcmwwTAYDVR0gBEUwQzA3BglghkgBhv1sAQEwKjAoBggrBgEFBQcCARYcaHR0cHM6Ly93d3cuZGlnaWNlcnQuY29tL0NQUzAIBgZngQwBAgIwdAYIKwYBBQUHAQEEaDBmMCQGCCsGAQUFBzABhhhodHRwOi8vb2NzcC5kaWdpY2VydC5jb20wPgYIKwYBBQUHMAKGMmh0dHA6Ly9jYWNlcnRzLmRpZ2ljZXJ0LmNvbS9EaWdpQ2VydEdsb2JhbENBRzIuY3J0MAkGA1UdEwQCMAAwggEFBgorBgEEAdZ5AgQCBIH2BIHzAPEAdwDuS723dc5guuFCaR+r4Z5mow9+X7By2IMAxHuJeqj9ywAAAWnJKGXMAAAEAwBIMEYCIQDW4rda28H2PYEzT70WkFyphM9fBxeiGY6TV1N4uEjHPwIhALvUGOyZa+js+suhmdBxxMC9teo3hvKaXYOAwR3NgzkAAHYAh3W/51l8+IxDmV+9827/Vo1HVjb/SrVgwbTq/16ggw8AAAFpyShm8QAABAMARzBFAiBnsPt6GIeXSKW60Ugr3w0NTQ2CpTFhK2Ng9C+CcecNhQIhAKwvu5T4oWWBDket4XTCk80vFBaKeR5/H1wzoEjZGqZvMA0GCSqGSIb3DQEBCwUAA4IBAQBY7j0CiHNIvSIGW/8V9SWvf7radfw0abSYJQd48UuXrUonsDJpM2f4W95ELtgkO+T9VFZaSoXwb18SBfcg79nP7LpxvlrYr7gtn3DR/q4e7n3U8boEFgmuNMWMe9MslzJVqDBC5DoDOhwue9MoUQKvNW/dCSJ0i/xgMqbt59nbfRpK0RidWqf2404htmMvftvwjGZW8rSf4Vxu5fVskPms1CDcRCuXCEUQYulF5od1XiF9zyNyyMg5w25d5tIgRdeQa1nammFbvTcx7jL05Efmb6tikZY8A9HJPo4X3/QK7ohvDY3580NXDh7p+BinCLpxLczOQeZjVn7ZBUYEo2nm"},{"base64":"MIIEizCCA3OgAwIBAgIQDI7gyQ1qiRWIBAYe4kH5rzANBgkqhkiG9w0BAQsFADBhMQswCQYDVQQGEwJVUzEVMBMGA1UEChMMRGlnaUNlcnQgSW5jMRkwFwYDVQQLExB3d3cuZGlnaWNlcnQuY29tMSAwHgYDVQQDExdEaWdpQ2VydCBHbG9iYWwgUm9vdCBHMjAeFw0xMzA4MDExMjAwMDBaFw0yODA4MDExMjAwMDBaMEQxCzAJBgNVBAYTAlVTMRUwEwYDVQQKEwxEaWdpQ2VydCBJbmMxHjAcBgNVBAMTFURpZ2lDZXJ0IEdsb2JhbCBDQSBHMjCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANNIfL7zBYZdW9UvhU5L4IatFaxhz1uvPmoKR/uadpFgC4przc/cV35gmAvkVNlW7SHMArZagV+Xau4CLyMnuG3UsOcGAngLH1ypmTb+u6wbBfpXzYEQQGfWMItYNdSWYb7QjHqXnxr5IuYUL6nG6AEfq/gmD6yOTSwyOR2Bm40cZbIc22GoiS9g5+vCShjEbyrpEJIJ7RfRACvmfe8EiRROM6GyD5eHn7OgzS+8LOy4g2gxPR/VSpAQGQuBldYpdlH5NnbQtwl6OErXb4y/E3w57bqukPyV93t4CTZedJMeJfD/1K2uaGvG/w/VNfFVbkhJ+Pi474j48V4Rd6rfArMCAwEAAaOCAVowggFWMBIGA1UdEwEB/wQIMAYBAf8CAQAwDgYDVR0PAQH/BAQDAgGGMDQGCCsGAQUFBwEBBCgwJjAkBggrBgEFBQcwAYYYaHR0cDovL29jc3AuZGlnaWNlcnQuY29tMHsGA1UdHwR0MHIwN6A1oDOGMWh0dHA6Ly9jcmw0LmRpZ2ljZXJ0LmNvbS9EaWdpQ2VydEdsb2JhbFJvb3RHMi5jcmwwN6A1oDOGMWh0dHA6Ly9jcmwzLmRpZ2ljZXJ0LmNvbS9EaWdpQ2VydEdsb2JhbFJvb3RHMi5jcmwwPQYDVR0gBDYwNDAyBgRVHSAAMCowKAYIKwYBBQUHAgEWHGh0dHBzOi8vd3d3LmRpZ2ljZXJ0LmNvbS9DUFMwHQYDVR0OBBYEFCRuKy3QapJRUSVpAaqaR6aJ50AgMB8GA1UdIwQYMBaAFE4iVCAYlebjbuYP+vq5Eu0GF485MA0GCSqGSIb3DQEBCwUAA4IBAQALOYSR+ZfrqoGvhOlaOJL84mxZvzbIRacxAxHhBsCsMsdaVSnaT0AC9aHesO3ewPj2dZ12uYf+QYB6z13jAMZbAuabeGLJ3LhimnftiQjXS8X9Q9ViIyfEBFltcT8jW+rZ8uckJ2/0lYDblizkVIvP6hnZf1WZUXoOLRg9eFhSvGNoVwvdRLNXSmDmyHBwW4coatc7TlJFGa8kBpJIERqLrqwYElesA8u49L3KJg6nwd3jM+/AVTANlVlOnAM2BvjAjxSZnE0qnsHhfTuvcqdFuhOWKU4Z0BqYBvQ3lBetoxi6PrABDJXWKTUgNX31EGDk92hiHuwZ4STyhxGs6QiA"},{"base64":"MIIE3zCCA8egAwIBAgIQYxgNOPuAl3ip0DWjFhj4QDANBgkqhkiG9w0BAQsFADCByjELMAkGA1UEBhMCVVMxFzAVBgNVBAoTDlZlcmlTaWduLCBJbmMuMR8wHQYDVQQLExZWZXJpU2lnbiBUcnVzdCBOZXR3b3JrMTowOAYDVQQLEzEoYykgMjAwNiBWZXJpU2lnbiwgSW5jLiAtIEZvciBhdXRob3JpemVkIHVzZSBvbmx5MUUwQwYDVQQDEzxWZXJpU2lnbiBDbGFzcyAzIFB1YmxpYyBQcmltYXJ5IENlcnRpZmljYXRpb24gQXV0aG9yaXR5IC0gRzUwHhcNMTcxMTA2MDAwMDAwWhcNMjIxMTA1MjM1OTU5WjBhMQswCQYDVQQGEwJVUzEVMBMGA1UEChMMRGlnaUNlcnQgSW5jMRkwFwYDVQQLExB3d3cuZGlnaWNlcnQuY29tMSAwHgYDVQQDExdEaWdpQ2VydCBHbG9iYWwgUm9vdCBHMjCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALs3zTTce2vJsmiQrUp1/0a6IQoIjfUZVMn7iNvzrvI6iZE8euarBhprz6wt6F4JJES6Ypp+1qOofuBUdSAFrFC3nGMabDDc2h8Zsdce3v3X4MuUgzeu7B9DTt17LNK9LqUv5Km4rTrUmaS2JembawBgkmD/TyFJGPdnkKthBpyP8rrptOmSMmu181foXRvNjB2rlQSVSfM1LZbjSW3dd+P7SUu0rFUHqY+Vs7Qju0xtRfD2qbKVMLT9TFWMJ0pXFHyCnc1zktMWSgYMjFDRjx4Jvheh5iHK/YPlELyDpQrEZyj2cxQUPUZ2w4cUiSE0Ta8PRQymSaG6u5zFsTODKYUCAwEAAaOCAScwggEjMB0GA1UdDgQWBBROIlQgGJXm427mD/r6uRLtBhePOTAPBgNVHRMBAf8EBTADAQH/MF8GA1UdIARYMFYwVAYEVR0gADBMMCMGCCsGAQUFBwIBFhdodHRwczovL2Quc3ltY2IuY29tL2NwczAlBggrBgEFBQcCAjAZDBdodHRwczovL2Quc3ltY2IuY29tL3JwYTAvBgNVHR8EKDAmMCSgIqAghh5odHRwOi8vcy5zeW1jYi5jb20vcGNhMy1nNS5jcmwwDgYDVR0PAQH/BAQDAgGGMC4GCCsGAQUFBwEBBCIwIDAeBggrBgEFBQcwAYYSaHR0cDovL3Muc3ltY2QuY29tMB8GA1UdIwQYMBaAFH/TZafC3ey78DAJ80M5+gKvMzEzMA0GCSqGSIb3DQEBCwUAA4IBAQBQ3dNWKSUBip6n5X1Nua8bjKLSJzXlnescavPECMpFBlIIKH2mc6mL2Xr/wkSIBDrsqAO3sBcmoJN+n8V30O5JelrtEAFYSyRDXfu78ZlHn6kvV5/jPUFECEM/hdN0x8WdLpGjJMqfs0EG5qHj+UaxpucWD445wea4zlK7hUR+MA8fq0Yd1HEKj4c8TcgaQIHMa4KHr448cQ69e3CPECRhRNg+RAKT2I7SlaVzLvaB/8yym2oMCEsoqiRT8dbXg35aKEYmmzn3O/mnB7bGUd/EUrkIf7FVamgYZd1fSzQeg1cHqf0ja6eHpvq2bTl+cWFHaq/84KlHe5Rh0CsmpZzn"}],"version":"0303","random":"da0a295bee149f1055747dbb83950ec3eed05f8bd69ef4d1d146e177bde697b4","selected_cipher_suite":"c02f","compression_method":"00","session_ticket":""}},"reassembly_properties":{"reassembled":true},"ip":{"version":4,"ttl":128,"id":"a497"},"src_ip":"99.84.220.24","dst_ip":"192.168.113.237","protocol":6,"src_port":443,"dst_port":49224,"event_start":1565200336.503142} +{"dns":{"base64":"gOgBAAABAAAAAAAABnBsYXllcgV2aW1lbwNjb20AAAEAAQ=="},"ip":{"version":4,"ttl":64,"id":"d71a"},"src_ip":"192.168.113.237","dst_ip":"192.168.113.2","protocol":17,"src_port":36118,"dst_port":53,"event_start":1565200337.042309} +{"dns":{"base64":"P/wBAAABAAAAAAAABnBsYXllcgV2aW1lbwNjb20AABwAAQ=="},"ip":{"version":4,"ttl":64,"id":"d71b"},"src_ip":"192.168.113.237","dst_ip":"192.168.113.2","protocol":17,"src_port":54837,"dst_port":53,"event_start":1565200337.042481} +{"dns":{"base64":"P/yBgAABAAEAAQAABnBsYXllcgV2aW1lbwNjb20AABwAAcAMAAUAAQAAAAUAFgV2aW1lbwNtYXAGZmFzdGx5A25ldADAOAAGAAEAAAAFAC4DbnMxwDgKaG9zdG1hc3RlcgZmYXN0bHnAGXg5xikAAA4QAAACWAAJOoAAAAAe"},"ip":{"version":4,"ttl":128,"id":"a607"},"src_ip":"192.168.113.2","dst_ip":"192.168.113.237","protocol":17,"src_port":53,"dst_port":54837,"event_start":1565200337.080170} +{"dns":{"base64":"yWQBAAABAAAAAAAABXZpbWVvA21hcAZmYXN0bHkDbmV0AAAcAAE="},"ip":{"version":4,"ttl":64,"id":"d71f"},"src_ip":"192.168.113.237","dst_ip":"192.168.113.2","protocol":17,"src_port":60235,"dst_port":53,"event_start":1565200337.080409} +{"dns":{"base64":"gOiBgAABAAUADQAJBnBsYXllcgV2aW1lbwNjb20AAAEAAcAMAAUAAQAAAAUAFgV2aW1lbwNtYXAGZmFzdGx5A25ldADALgABAAEAAAAFAASXZYDZwC4AAQABAAAABQAEl2VA2cAuAAEAAQAAAAUABJdlANnALgABAAEAAAAFAASXZcDZwD8AAgABAAAABQARAWgMZ3RsZC1zZXJ2ZXJzwD/APwACAAEAAAAFAAQBZMCSwD8AAgABAAAABQAEAW3AksA/AAIAAQAAAAUABAFpwJLAPwACAAEAAAAFAAQBasCSwD8AAgABAAAABQAEAWXAksA/AAIAAQAAAAUABAFiwJLAPwACAAEAAAAFAAQBZsCSwD8AAgABAAAABQAEAWfAksA/AAIAAQAAAAUABAFswJLAPwACAAEAAAAFAAQBY8CSwD8AAgABAAAABQAEAWHAksA/AAIAAQAAAAUABAFrwJLBTQABAAEAAAAFAATABQYewP0AAQABAAAABQAEwCEOHsE9AAEAAQAAAAUABMAaXB7ArQABAAEAAAAFAATAH1AewO0AAQABAAAABQAEwAxeHsENAAEAAQAAAAUABMAjMx7BHQABAAEAAAAFAATAKl0ewJAAAQABAAAABQAEwDZwHsDNAAEAAQAAAAUABMArrB4="},"ip":{"version":4,"ttl":128,"id":"a608"},"src_ip":"192.168.113.2","dst_ip":"192.168.113.237","protocol":17,"src_port":53,"dst_port":36118,"event_start":1565200337.080476} +{"dns":{"base64":"yWSBgAABAAAAAQAABXZpbWVvA21hcAZmYXN0bHkDbmV0AAAcAAHAFgAGAAEAAAAFADEDbnMxwBYKaG9zdG1hc3RlcgZmYXN0bHkDY29tAHg5xikAAA4QAAACWAAJOoAAAAAe"},"ip":{"version":4,"ttl":128,"id":"a609"},"src_ip":"192.168.113.2","dst_ip":"192.168.113.237","protocol":17,"src_port":53,"dst_port":60235,"event_start":1565200337.119253} +{"fingerprints":{"tcp":"tcp/(40)()(40)(faf0)((020405b4)(04)(08)(01)(030307))"},"tcp":{"seq":1008893151,"timestamp":{"ts_val":4096479634}},"ip":{"version":4,"ttl":64,"id":"a959"},"src_ip":"192.168.113.237","dst_ip":"151.101.192.217","protocol":6,"src_port":42746,"dst_port":443,"event_start":1565200337.119533} +{"fingerprints":{"tcp_server":"tcp_server/(40)()(80)(faf0)((020405b4))"},"tcp_server":{"seq":3274138878},"ip":{"version":4,"ttl":128,"id":"a60a"},"src_ip":"151.101.192.217","dst_ip":"192.168.113.237","protocol":6,"src_port":443,"dst_port":42746,"event_start":1565200337.165179} +{"fingerprints":{"tls":"tls/(0303)(130213031301c02cc030009fcca9cca8ccaac02bc02f009ec024c028006bc023c0270067c00ac0140039c009c0130033009d009c003d003c0035002f00ff)((0000)(000b000403000102)(000a000c000a001d0017001e00190018)(0023)(0016)(0017)(000d0030002e040305030603080708080809080a080b080408050806040105010601030302030301020103020202040205020602)(002b0009080304030303020301)(002d00020101)(0033))"},"tls":{"client":{"version":"0303","random":"e096fcab088d6370333ef57cad7a64c16060a05bd5585a387cc28c4e3a384479","session_id":"15146dc877ef6a75d93fa2b0fa5a018f395d2547aab4abd1928edeb2ab22abbd","cipher_suites":"130213031301c02cc030009fcca9cca8ccaac02bc02f009ec024c028006bc023c0270067c00ac0140039c009c0130033009d009c003d003c0035002f00ff","compression_methods":"00","server_name":"player.vimeo.com","session_ticket":"","features":"[\"0303\",\"130213031301c02cc030009fcca9cca8ccaac02bc02f009ec024c028006bc023c0270067c00ac0140039c009c0130033009d009c003d003c0035002f00ff\",[[\"0000\",\"0013000010706c617965722e76696d656f2e636f6d\"],[\"000b\",\"03000102\"],[\"000a\",\"000a001d0017001e00190018\"],[\"0023\",\"\"],[\"0016\",\"\"],[\"0017\",\"\"],[\"000d\",\"002e040305030603080708080809080a080b080408050806040105010601030302030301020103020202040205020602\"],[\"002b\",\"080304030303020301\"],[\"002d\",\"0101\"],[\"0033\",\"0024001d00208040ef7f60c132442d3680166096e5d550fff0fc8c2cb5e1300546fcdcd3a738\"]]]"}},"ip":{"version":4,"ttl":64,"id":"a95b"},"src_ip":"192.168.113.237","dst_ip":"151.101.192.217","protocol":6,"src_port":42746,"dst_port":443,"event_start":1565200337.165411} +{"fingerprints":{"tls_server":"tls_server/(0303)(c02f)((ff01)(0000)(000b000403000102)(0023)(0017))"},"tls":{"server":{"certs":[{"base64":"MIIGlTCCBX2gAwIBAgIQAaiOYIyyE8CWikH8FKdkezANBgkqhkiG9w0BAQsFADBNMQswCQYDVQQGEwJVUzEVMBMGA1UEChMMRGlnaUNlcnQgSW5jMScwJQYDVQQDEx5EaWdpQ2VydCBTSEEyIFNlY3VyZSBTZXJ2ZXIgQ0EwHhcNMTgwODI0MDAwMDAwWhcNMjAwNDAyMTIwMDAwWjBeMQswCQYDVQQGEwJVUzERMA8GA1UECBMITmV3IFlvcmsxETAPBgNVBAcTCE5ldyBZb3JrMRMwEQYDVQQKEwpWaW1lbywgTExDMRQwEgYDVQQDDAsqLnZpbWVvLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAN46nW41HzlpbDbnAO56ngIsavFmnUd5yiJxZqoA6HaDRiGsKkZxAHZSlQJ49ZFEF9iFbqywT4vhjf2x3yLAwwxBbNpP1j3qOIiFZJvJUE8F6wQO7vG5xGTQAQXuiZTUPNpm1Jv/b1jT86S8MXVQCR8uaBa5XcIlvWQykg72NFkMOH+8IlraeUQl03dHSz5t08NranCT6MLhpvMxH2mBZhANWTqV2yWKnAqjb+h8vHbNsKC75P9KukK38mY2f9xPQaVvzezf2Tv/M/N0Oc8DUzkikT5AjkUUr3uas8lb39tFRdXAbB0o+UECt3StONweQJtlOO1j8vLb4weVE10pOw0CAwEAAaOCA14wggNaMB8GA1UdIwQYMBaAFA+AYRyCMWHVLyjnjUY4tCzhxtniMB0GA1UdDgQWBBQX+FWhE5Fzd2lShQjYOnW6cEsVZDAhBgNVHREEGjAYggsqLnZpbWVvLmNvbYIJdmltZW8uY29tMA4GA1UdDwEB/wQEAwIFoDAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwawYDVR0fBGQwYjAvoC2gK4YpaHR0cDovL2NybDMuZGlnaWNlcnQuY29tL3NzY2Etc2hhMi1nNi5jcmwwL6AtoCuGKWh0dHA6Ly9jcmw0LmRpZ2ljZXJ0LmNvbS9zc2NhLXNoYTItZzYuY3JsMEwGA1UdIARFMEMwNwYJYIZIAYb9bAEBMCowKAYIKwYBBQUHAgEWHGh0dHBzOi8vd3d3LmRpZ2ljZXJ0LmNvbS9DUFMwCAYGZ4EMAQICMHwGCCsGAQUFBwEBBHAwbjAkBggrBgEFBQcwAYYYaHR0cDovL29jc3AuZGlnaWNlcnQuY29tMEYGCCsGAQUFBzAChjpodHRwOi8vY2FjZXJ0cy5kaWdpY2VydC5jb20vRGlnaUNlcnRTSEEyU2VjdXJlU2VydmVyQ0EuY3J0MAwGA1UdEwEB/wQCMAAwggF9BgorBgEEAdZ5AgQCBIIBbQSCAWkBZwB2AKS5CZC0GFgUh7sTosxncAo8NZgE+RvfuON3zQ7IDdwQAAABZWyX6G4AAAQDAEcwRQIhAPwDFjuKlEm+zUyRn3PvA5I3YgamRrEbMMnY+IcWOR3lAiBb5GlNGDAI4LYY/gnlWQIjenIhfq9bAay2paMwzHfVLAB2AId1v+dZfPiMQ5lfvfNu/1aNR1Y2/0q1YMG06v9eoIMPAAABZWyX6G4AAAQDAEcwRQIgLARzuiPmv7bduu5M0hvKwpMdnqZdslLfpXNZLm+A6cgCIQD5XsLbcd42bVhofRJ+EbeiCiwslOMeHlwsni4abZD/AQB1ALvZ37wfinG1k5Qjl6qSe0c4V5UKq1LoGpCWZDaOHtGFAAABZWyX56EAAAQDAEYwRAIgTctw2guun/asVLNbDeIhv2nqFLDezQB5aIhzbf13QhYCIEevrRV+w20kyxQ5/ujQtTbjKjYfrEwOwp1oHhjbAJJuMA0GCSqGSIb3DQEBCwUAA4IBAQAnRC6rW/JPfntMo/scqBV/52WMHt3+cLCWYZBrxG4sNj29wuzFwHBdpdlqD9GNLElu9vcllnAqzmria6KsZ0lLeU1WWb5vl5u7Q5k6o4OVuziFF9O7198prtuf2u+tUG/zHEL0KhkPD0mu+UzispcYkuntD2kSiZ3LCrKxL5zpUuFC9D2r4P6b32fmg53Fck76P/qZe+niplaV8rrMGgFbPreCTrlyd4F1Xm5/0tyyLPsnIDN/uBjzuvkgvmw4DkoYOCwMCJftC7Ajix7vs0/KoYgc5r8Iz8twzdacEM62ZWR0obQ9du8Qys7TLlKa1eiiXVJ27zyMjxA8svFmUmBc"},{"base64":"MIIElDCCA3ygAwIBAgIQAf2j627KdciIQ4tyS8+8kTANBgkqhkiG9w0BAQsFADBhMQswCQYDVQQGEwJVUzEVMBMGA1UEChMMRGlnaUNlcnQgSW5jMRkwFwYDVQQLExB3d3cuZGlnaWNlcnQuY29tMSAwHgYDVQQDExdEaWdpQ2VydCBHbG9iYWwgUm9vdCBDQTAeFw0xMzAzMDgxMjAwMDBaFw0yMzAzMDgxMjAwMDBaME0xCzAJBgNVBAYTAlVTMRUwEwYDVQQKEwxEaWdpQ2VydCBJbmMxJzAlBgNVBAMTHkRpZ2lDZXJ0IFNIQTIgU2VjdXJlIFNlcnZlciBDQTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANyuWJBNwcQwFZA1W248ghX1LFy949v/cUP6ZCWA1O4Yok3wZtAKc24RmDYXZK83nf36QYSvx6+M/hpzTc8zl5CilodTgyu5pnVILR1WN3vaMTIa16yrBvSqXUu3R0bdKpPDkC55gIDvEwRqFDu1m5K+wgdlTvza/P96rtxcflUxDOg5B6TXvi/TC2rSsd9f/ld0Uzs1gN2ujkSYs58O09rg1/RrKatEp0tYhG2SS4HD2nOLEpdIkARFdRrdNzGXkujNVA075ME/OV4uuPNcfhCOhkEAjUVmR7ChZc6gqikJTvOX6+guqw9ypzAO+sf0/RR3w6RbKFfCs/mC/bdFWJsCAwEAAaOCAVowggFWMBIGA1UdEwEB/wQIMAYBAf8CAQAwDgYDVR0PAQH/BAQDAgGGMDQGCCsGAQUFBwEBBCgwJjAkBggrBgEFBQcwAYYYaHR0cDovL29jc3AuZGlnaWNlcnQuY29tMHsGA1UdHwR0MHIwN6A1oDOGMWh0dHA6Ly9jcmwzLmRpZ2ljZXJ0LmNvbS9EaWdpQ2VydEdsb2JhbFJvb3RDQS5jcmwwN6A1oDOGMWh0dHA6Ly9jcmw0LmRpZ2ljZXJ0LmNvbS9EaWdpQ2VydEdsb2JhbFJvb3RDQS5jcmwwPQYDVR0gBDYwNDAyBgRVHSAAMCowKAYIKwYBBQUHAgEWHGh0dHBzOi8vd3d3LmRpZ2ljZXJ0LmNvbS9DUFMwHQYDVR0OBBYEFA+AYRyCMWHVLyjnjUY4tCzhxtniMB8GA1UdIwQYMBaAFAPeUDVW0Uy7ZvCj4hsbw5eyPdFVMA0GCSqGSIb3DQEBCwUAA4IBAQAjPt9L0jFCpbZ+QlwaRMxp0Wi0XUvgBCFsS+JtzLHgl4+mUwnNqipl5TlPHoOlblyYoiQm5vuh7ZPHLgLGTUq/sELfeNqzqPlt/yGFUzZgTHbO7Djc1lGA8MXW5dRNJ2Srm8c+cftIl7gzbckTB+6WohsYFfZcTEDts8Ls/3HB40f/1LkAtDdC2iDJ6m6K7hQGrn2iWZiIqBtvLfTyyRRfJs8sjX7tN8Cp1Tm5gr8ZDOo0rwAhaPitc+LJMto4JQtV05od8GiG7S5BNO98pVAdvzr508EIDObtHopYJeS4d60tbvVS3bR0j6tJLp07kzQoH3jOlOrHvdPJbRzeXDLz"}],"version":"0303","random":"c76e1e3677968b3d5abffa2038777b4de1d3e7ffaad918b8510a2e3e5df1eff5","selected_cipher_suite":"c02f","compression_method":"00","session_ticket":""}},"reassembly_properties":{"reassembled":true},"ip":{"version":4,"ttl":128,"id":"a60e"},"src_ip":"151.101.192.217","dst_ip":"192.168.113.237","protocol":6,"src_port":443,"dst_port":42746,"event_start":1565200337.207438} +{"fingerprints":{"tcp":"tcp/(40)()(40)(faf0)((020405b4)(04)(08)(01)(030307))"},"tcp":{"seq":2424328083,"timestamp":{"ts_val":4096479808}},"ip":{"version":4,"ttl":64,"id":"9a21"},"src_ip":"192.168.113.237","dst_ip":"151.101.192.217","protocol":6,"src_port":42748,"dst_port":443,"event_start":1565200337.293823} +{"fingerprints":{"tcp_server":"tcp_server/(40)()(80)(faf0)((020405b4))"},"tcp_server":{"seq":2617204280},"ip":{"version":4,"ttl":128,"id":"a616"},"src_ip":"151.101.192.217","dst_ip":"192.168.113.237","protocol":6,"src_port":443,"dst_port":42748,"event_start":1565200337.332883} +{"fingerprints":{"tls":"tls/(0303)(130213031301c02cc030009fcca9cca8ccaac02bc02f009ec024c028006bc023c0270067c00ac0140039c009c0130033009d009c003d003c0035002f00ff)((0000)(000b000403000102)(000a000c000a001d0017001e00190018)(0023)(0016)(0017)(000d0030002e040305030603080708080809080a080b080408050806040105010601030302030301020103020202040205020602)(002b0009080304030303020301)(002d00020101)(0033))"},"tls":{"client":{"version":"0303","random":"c87690e9c3ff8a6f868a8e351f7a0add7226f728685a62f8391051a836bd2219","session_id":"25ec7f7633d7d9805b2ce9dd91a0c68bd077ba5e51b695b8a7fccf9ff509cb6e","cipher_suites":"130213031301c02cc030009fcca9cca8ccaac02bc02f009ec024c028006bc023c0270067c00ac0140039c009c0130033009d009c003d003c0035002f00ff","compression_methods":"00","server_name":"vimeo.com","session_ticket":"","features":"[\"0303\",\"130213031301c02cc030009fcca9cca8ccaac02bc02f009ec024c028006bc023c0270067c00ac0140039c009c0130033009d009c003d003c0035002f00ff\",[[\"0000\",\"000c00000976696d656f2e636f6d\"],[\"000b\",\"03000102\"],[\"000a\",\"000a001d0017001e00190018\"],[\"0023\",\"\"],[\"0016\",\"\"],[\"0017\",\"\"],[\"000d\",\"002e040305030603080708080809080a080b080408050806040105010601030302030301020103020202040205020602\"],[\"002b\",\"080304030303020301\"],[\"002d\",\"0101\"],[\"0033\",\"0024001d002036da7077c0b851d7aea54650cf91311219e953a98385d2f69d9d3c0791a4702f\"]]]"}},"ip":{"version":4,"ttl":64,"id":"9a23"},"src_ip":"192.168.113.237","dst_ip":"151.101.192.217","protocol":6,"src_port":42748,"dst_port":443,"event_start":1565200337.333104} +{"fingerprints":{"tls_server":"tls_server/(0303)(c02f)((ff01)(0000)(000b000403000102)(0023)(0017))"},"tls":{"server":{"certs":[{"base64":"MIIGlTCCBX2gAwIBAgIQAaiOYIyyE8CWikH8FKdkezANBgkqhkiG9w0BAQsFADBNMQswCQYDVQQGEwJVUzEVMBMGA1UEChMMRGlnaUNlcnQgSW5jMScwJQYDVQQDEx5EaWdpQ2VydCBTSEEyIFNlY3VyZSBTZXJ2ZXIgQ0EwHhcNMTgwODI0MDAwMDAwWhcNMjAwNDAyMTIwMDAwWjBeMQswCQYDVQQGEwJVUzERMA8GA1UECBMITmV3IFlvcmsxETAPBgNVBAcTCE5ldyBZb3JrMRMwEQYDVQQKEwpWaW1lbywgTExDMRQwEgYDVQQDDAsqLnZpbWVvLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAN46nW41HzlpbDbnAO56ngIsavFmnUd5yiJxZqoA6HaDRiGsKkZxAHZSlQJ49ZFEF9iFbqywT4vhjf2x3yLAwwxBbNpP1j3qOIiFZJvJUE8F6wQO7vG5xGTQAQXuiZTUPNpm1Jv/b1jT86S8MXVQCR8uaBa5XcIlvWQykg72NFkMOH+8IlraeUQl03dHSz5t08NranCT6MLhpvMxH2mBZhANWTqV2yWKnAqjb+h8vHbNsKC75P9KukK38mY2f9xPQaVvzezf2Tv/M/N0Oc8DUzkikT5AjkUUr3uas8lb39tFRdXAbB0o+UECt3StONweQJtlOO1j8vLb4weVE10pOw0CAwEAAaOCA14wggNaMB8GA1UdIwQYMBaAFA+AYRyCMWHVLyjnjUY4tCzhxtniMB0GA1UdDgQWBBQX+FWhE5Fzd2lShQjYOnW6cEsVZDAhBgNVHREEGjAYggsqLnZpbWVvLmNvbYIJdmltZW8uY29tMA4GA1UdDwEB/wQEAwIFoDAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwawYDVR0fBGQwYjAvoC2gK4YpaHR0cDovL2NybDMuZGlnaWNlcnQuY29tL3NzY2Etc2hhMi1nNi5jcmwwL6AtoCuGKWh0dHA6Ly9jcmw0LmRpZ2ljZXJ0LmNvbS9zc2NhLXNoYTItZzYuY3JsMEwGA1UdIARFMEMwNwYJYIZIAYb9bAEBMCowKAYIKwYBBQUHAgEWHGh0dHBzOi8vd3d3LmRpZ2ljZXJ0LmNvbS9DUFMwCAYGZ4EMAQICMHwGCCsGAQUFBwEBBHAwbjAkBggrBgEFBQcwAYYYaHR0cDovL29jc3AuZGlnaWNlcnQuY29tMEYGCCsGAQUFBzAChjpodHRwOi8vY2FjZXJ0cy5kaWdpY2VydC5jb20vRGlnaUNlcnRTSEEyU2VjdXJlU2VydmVyQ0EuY3J0MAwGA1UdEwEB/wQCMAAwggF9BgorBgEEAdZ5AgQCBIIBbQSCAWkBZwB2AKS5CZC0GFgUh7sTosxncAo8NZgE+RvfuON3zQ7IDdwQAAABZWyX6G4AAAQDAEcwRQIhAPwDFjuKlEm+zUyRn3PvA5I3YgamRrEbMMnY+IcWOR3lAiBb5GlNGDAI4LYY/gnlWQIjenIhfq9bAay2paMwzHfVLAB2AId1v+dZfPiMQ5lfvfNu/1aNR1Y2/0q1YMG06v9eoIMPAAABZWyX6G4AAAQDAEcwRQIgLARzuiPmv7bduu5M0hvKwpMdnqZdslLfpXNZLm+A6cgCIQD5XsLbcd42bVhofRJ+EbeiCiwslOMeHlwsni4abZD/AQB1ALvZ37wfinG1k5Qjl6qSe0c4V5UKq1LoGpCWZDaOHtGFAAABZWyX56EAAAQDAEYwRAIgTctw2guun/asVLNbDeIhv2nqFLDezQB5aIhzbf13QhYCIEevrRV+w20kyxQ5/ujQtTbjKjYfrEwOwp1oHhjbAJJuMA0GCSqGSIb3DQEBCwUAA4IBAQAnRC6rW/JPfntMo/scqBV/52WMHt3+cLCWYZBrxG4sNj29wuzFwHBdpdlqD9GNLElu9vcllnAqzmria6KsZ0lLeU1WWb5vl5u7Q5k6o4OVuziFF9O7198prtuf2u+tUG/zHEL0KhkPD0mu+UzispcYkuntD2kSiZ3LCrKxL5zpUuFC9D2r4P6b32fmg53Fck76P/qZe+niplaV8rrMGgFbPreCTrlyd4F1Xm5/0tyyLPsnIDN/uBjzuvkgvmw4DkoYOCwMCJftC7Ajix7vs0/KoYgc5r8Iz8twzdacEM62ZWR0obQ9du8Qys7TLlKa1eiiXVJ27zyMjxA8svFmUmBc"},{"base64":"MIIElDCCA3ygAwIBAgIQAf2j627KdciIQ4tyS8+8kTANBgkqhkiG9w0BAQsFADBhMQswCQYDVQQGEwJVUzEVMBMGA1UEChMMRGlnaUNlcnQgSW5jMRkwFwYDVQQLExB3d3cuZGlnaWNlcnQuY29tMSAwHgYDVQQDExdEaWdpQ2VydCBHbG9iYWwgUm9vdCBDQTAeFw0xMzAzMDgxMjAwMDBaFw0yMzAzMDgxMjAwMDBaME0xCzAJBgNVBAYTAlVTMRUwEwYDVQQKEwxEaWdpQ2VydCBJbmMxJzAlBgNVBAMTHkRpZ2lDZXJ0IFNIQTIgU2VjdXJlIFNlcnZlciBDQTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANyuWJBNwcQwFZA1W248ghX1LFy949v/cUP6ZCWA1O4Yok3wZtAKc24RmDYXZK83nf36QYSvx6+M/hpzTc8zl5CilodTgyu5pnVILR1WN3vaMTIa16yrBvSqXUu3R0bdKpPDkC55gIDvEwRqFDu1m5K+wgdlTvza/P96rtxcflUxDOg5B6TXvi/TC2rSsd9f/ld0Uzs1gN2ujkSYs58O09rg1/RrKatEp0tYhG2SS4HD2nOLEpdIkARFdRrdNzGXkujNVA075ME/OV4uuPNcfhCOhkEAjUVmR7ChZc6gqikJTvOX6+guqw9ypzAO+sf0/RR3w6RbKFfCs/mC/bdFWJsCAwEAAaOCAVowggFWMBIGA1UdEwEB/wQIMAYBAf8CAQAwDgYDVR0PAQH/BAQDAgGGMDQGCCsGAQUFBwEBBCgwJjAkBggrBgEFBQcwAYYYaHR0cDovL29jc3AuZGlnaWNlcnQuY29tMHsGA1UdHwR0MHIwN6A1oDOGMWh0dHA6Ly9jcmwzLmRpZ2ljZXJ0LmNvbS9EaWdpQ2VydEdsb2JhbFJvb3RDQS5jcmwwN6A1oDOGMWh0dHA6Ly9jcmw0LmRpZ2ljZXJ0LmNvbS9EaWdpQ2VydEdsb2JhbFJvb3RDQS5jcmwwPQYDVR0gBDYwNDAyBgRVHSAAMCowKAYIKwYBBQUHAgEWHGh0dHBzOi8vd3d3LmRpZ2ljZXJ0LmNvbS9DUFMwHQYDVR0OBBYEFA+AYRyCMWHVLyjnjUY4tCzhxtniMB8GA1UdIwQYMBaAFAPeUDVW0Uy7ZvCj4hsbw5eyPdFVMA0GCSqGSIb3DQEBCwUAA4IBAQAjPt9L0jFCpbZ+QlwaRMxp0Wi0XUvgBCFsS+JtzLHgl4+mUwnNqipl5TlPHoOlblyYoiQm5vuh7ZPHLgLGTUq/sELfeNqzqPlt/yGFUzZgTHbO7Djc1lGA8MXW5dRNJ2Srm8c+cftIl7gzbckTB+6WohsYFfZcTEDts8Ls/3HB40f/1LkAtDdC2iDJ6m6K7hQGrn2iWZiIqBtvLfTyyRRfJs8sjX7tN8Cp1Tm5gr8ZDOo0rwAhaPitc+LJMto4JQtV05od8GiG7S5BNO98pVAdvzr508EIDObtHopYJeS4d60tbvVS3bR0j6tJLp07kzQoH3jOlOrHvdPJbRzeXDLz"}],"version":"0303","random":"610dceeeca81e81ea1d98337d66a05c089725f817b663bf3e23e5309d2211f99","selected_cipher_suite":"c02f","compression_method":"00","session_ticket":""}},"reassembly_properties":{"reassembled":true},"ip":{"version":4,"ttl":128,"id":"a61a"},"src_ip":"151.101.192.217","dst_ip":"192.168.113.237","protocol":6,"src_port":443,"dst_port":42748,"event_start":1565200337.374968} +{"dns":{"base64":"QQ0BAAABAAAAAAAACXdvcmRwcmVzcwNvcmcAAAEAAQ=="},"ip":{"version":4,"ttl":64,"id":"d7c3"},"src_ip":"192.168.113.237","dst_ip":"192.168.113.2","protocol":17,"src_port":34196,"dst_port":53,"event_start":1565200337.743967} +{"dns":{"base64":"+6UBAAABAAAAAAAACXdvcmRwcmVzcwNvcmcAABwAAQ=="},"ip":{"version":4,"ttl":64,"id":"d7c4"},"src_ip":"192.168.113.237","dst_ip":"192.168.113.2","protocol":17,"src_port":53401,"dst_port":53,"event_start":1565200337.744164} +{"dns":{"base64":"+6WBgAABAAAAAQAACXdvcmRwcmVzcwNvcmcAABwAAcAMAAYAAQAAAAUAJwNuczHADApob3N0bWFzdGVywAwBMw8YAAAcIAAAHCAAEnUAAAFRgA=="},"ip":{"version":4,"ttl":128,"id":"a65f"},"src_ip":"192.168.113.2","dst_ip":"192.168.113.237","protocol":17,"src_port":53,"dst_port":53401,"event_start":1565200337.780365} +{"dns":{"base64":"QQ2BgAABAAEABgAMCXdvcmRwcmVzcwNvcmcAAAEAAcAMAAEAAQAAAAUABMaPpPzAFgACAAEAAAAFABUCYjADb3JnC2FmaWxpYXMtbnN0wBbAFgACAAEAAAAFABkCYTIDb3JnC2FmaWxpYXMtbnN0BGluZm8AwBYAAgABAAAABQAFAmIywD7AFgACAAEAAAAFAAUCYTDAX8AWAAIAAQAAAAUABQJkMMA+wBYAAgABAAAABQAFAmMwwF/AkgABAAEAAAAFAATHEzgBwFwAAQABAAAABQAEx/lwAcA7AAEAAQAAAAUABMcTNgHAgQABAAEAAAAFAATH+XgBwLQAAQABAAAABQAExxM1AcCjAAEAAQAAAAUABMcTOQHAkgAcAAEAAAAFABAgAQUAAA4AAAAAAAAAAAABwFwAHAABAAAABQAQIAEFAABAAAAAAAAAAAAAAcA7ABwAAQAAAAUAECABBQAADAAAAAAAAAAAAAHAgQAcAAEAAAAFABAgAQUAAEgAAAAAAAAAAAABwLQAHAABAAAABQAQIAEFAAALAAAAAAAAAAAAAcCjABwAAQAAAAUAECABBQAADwAAAAAAAAAAAAE="},"ip":{"version":4,"ttl":128,"id":"a660"},"src_ip":"192.168.113.2","dst_ip":"192.168.113.237","protocol":17,"src_port":53,"dst_port":34196,"event_start":1565200337.780928} +{"fingerprints":{"tcp":"tcp/(40)()(40)(faf0)((020405b4)(04)(08)(01)(030307))"},"tcp":{"seq":1326353786,"timestamp":{"ts_val":2184601652}},"ip":{"version":4,"ttl":64,"id":"5b51"},"src_ip":"192.168.113.237","dst_ip":"198.143.164.252","protocol":6,"src_port":52446,"dst_port":443,"event_start":1565200337.781283} +{"fingerprints":{"tcp_server":"tcp_server/(40)()(80)(faf0)((020405b4))"},"tcp_server":{"seq":3318278290},"ip":{"version":4,"ttl":128,"id":"a661"},"src_ip":"198.143.164.252","dst_ip":"192.168.113.237","protocol":6,"src_port":443,"dst_port":52446,"event_start":1565200337.846204} +{"fingerprints":{"tls":"tls/(0303)(130213031301c02cc030009fcca9cca8ccaac02bc02f009ec024c028006bc023c0270067c00ac0140039c009c0130033009d009c003d003c0035002f00ff)((0000)(000b000403000102)(000a000c000a001d0017001e00190018)(0023)(0016)(0017)(000d0030002e040305030603080708080809080a080b080408050806040105010601030302030301020103020202040205020602)(002b0009080304030303020301)(002d00020101)(0033))"},"tls":{"client":{"version":"0303","random":"70058e4ffa327703f64a40bc6b3544e8c8411bd863c8715e42163a182c9e1f5e","session_id":"ffc122eb536c80ec997410ceab8c4fff6726f30582f641e8d6634baa87c33edc","cipher_suites":"130213031301c02cc030009fcca9cca8ccaac02bc02f009ec024c028006bc023c0270067c00ac0140039c009c0130033009d009c003d003c0035002f00ff","compression_methods":"00","server_name":"wordpress.org","session_ticket":"","features":"[\"0303\",\"130213031301c02cc030009fcca9cca8ccaac02bc02f009ec024c028006bc023c0270067c00ac0140039c009c0130033009d009c003d003c0035002f00ff\",[[\"0000\",\"001000000d776f726470726573732e6f7267\"],[\"000b\",\"03000102\"],[\"000a\",\"000a001d0017001e00190018\"],[\"0023\",\"\"],[\"0016\",\"\"],[\"0017\",\"\"],[\"000d\",\"002e040305030603080708080809080a080b080408050806040105010601030302030301020103020202040205020602\"],[\"002b\",\"080304030303020301\"],[\"002d\",\"0101\"],[\"0033\",\"0024001d0020ad8b88074c5443a95ea8aa8142e9902a1a33f90458a8439105b0dd2c66c9c75d\"]]]"}},"ip":{"version":4,"ttl":64,"id":"5b53"},"src_ip":"192.168.113.237","dst_ip":"198.143.164.252","protocol":6,"src_port":52446,"dst_port":443,"event_start":1565200337.846617} +{"fingerprints":{"tls_server":"tls_server/(0303)(1302)((002b00020304)(0033))"},"tls":{"server":{"version":"0303","random":"b13216d13e703a9b398a93ee6d88767c9763787a93931bf18fabd01baf04d456","selected_cipher_suite":"1302","compression_method":"00"}},"ip":{"version":4,"ttl":128,"id":"a663"},"src_ip":"198.143.164.252","dst_ip":"192.168.113.237","protocol":6,"src_port":443,"dst_port":52446,"event_start":1565200337.919145} +{"dns":{"base64":"kPoBAAABAAAAAAAABGRvY3MGZ29vZ2xlA2NvbQAAAQAB"},"ip":{"version":4,"ttl":64,"id":"d800"},"src_ip":"192.168.113.237","dst_ip":"192.168.113.2","protocol":17,"src_port":57660,"dst_port":53,"event_start":1565200338.169716} +{"dns":{"base64":"nE4BAAABAAAAAAAABGRvY3MGZ29vZ2xlA2NvbQAAHAAB"},"ip":{"version":4,"ttl":64,"id":"d801"},"src_ip":"192.168.113.237","dst_ip":"192.168.113.2","protocol":17,"src_port":53745,"dst_port":53,"event_start":1565200338.169885} +{"dns":{"base64":"nE6BgAABAAEADQANBGRvY3MGZ29vZ2xlA2NvbQAAHAABwAwAHAABAAAABQAQJgf4sEAECBUAAAAAAAAgDsAYAAIAAQAAAAUAFAFoDGd0bGQtc2VydmVycwNuZXQAwBgAAgABAAAABQAEAWbAS8AYAAIAAQAAAAUABAFlwEvAGAACAAEAAAAFAAQBa8BLwBgAAgABAAAABQAEAWTAS8AYAAIAAQAAAAUABAFpwEvAGAACAAEAAAAFAAQBY8BLwBgAAgABAAAABQAEAWLAS8AYAAIAAQAAAAUABAFswEvAGAACAAEAAAAFAAQBasBLwBgAAgABAAAABQAEAWHAS8AYAAIAAQAAAAUABAFtwEvAGAACAAEAAAAFAAQBZ8BLwPkAAQABAAAABQAEwAUGHsDJAAEAAQAAAAUABMAhDh7AuQABAAEAAAAFAATAGlwewJkAAQABAAAABQAEwB9QHsB5AAEAAQAAAAUABMAMXh7AaQABAAEAAAAFAATAIzMewRkAAQABAAAABQAEwCpdHsBJAAEAAQAAAAUABMA2cB7AqQABAAEAAAAFAATAK6wewOkAAQABAAAABQAEwDBPHsCJAAEAAQAAAAUABMA0sh7A2QABAAEAAAAFAATAKaIewQkAAQABAAAABQAEwDdTHg=="},"ip":{"version":4,"ttl":128,"id":"a68d"},"src_ip":"192.168.113.2","dst_ip":"192.168.113.237","protocol":17,"src_port":53,"dst_port":53745,"event_start":1565200338.206117} +{"dns":{"base64":"kPqBgAABAAEADQAOBGRvY3MGZ29vZ2xlA2NvbQAAAQABwAwAAQABAAAABQAErNmkrsAYAAIAAQAAAAUAFAFiDGd0bGQtc2VydmVycwNuZXQAwBgAAgABAAAABQAEAWPAP8AYAAIAAQAAAAUABAFpwD/AGAACAAEAAAAFAAQBZMA/wBgAAgABAAAABQAEAWzAP8AYAAIAAQAAAAUABAFrwD/AGAACAAEAAAAFAAQBaMA/wBgAAgABAAAABQAEAWfAP8AYAAIAAQAAAAUABAFmwD/AGAACAAEAAAAFAAQBbcA/wBgAAgABAAAABQAEAWrAP8AYAAIAAQAAAAUABAFhwD/AGAACAAEAAAAFAAQBZcA/wP0AAQABAAAABQAEwAUGHsA9AAEAAQAAAAUABMAhDh7AXQABAAEAAAAFAATAGlwewH0AAQABAAAABQAEwB9QHsENAAEAAQAAAAUABMAMXh7AzQABAAEAAAAFAATAIzMewL0AAQABAAAABQAEwCpdHsCtAAEAAQAAAAUABMA2cB7AbQABAAEAAAAFAATAK6wewO0AAQABAAAABQAEwDBPHsCdAAEAAQAAAAUABMA0sh7AjQABAAEAAAAFAATAKaIewN0AAQABAAAABQAEwDdTHsD9ABwAAQAAAAUAECABBQOoPgAAAAAAAAACADA="},"ip":{"version":4,"ttl":128,"id":"a68e"},"src_ip":"192.168.113.2","dst_ip":"192.168.113.237","protocol":17,"src_port":53,"dst_port":57660,"event_start":1565200338.206741} +{"fingerprints":{"tcp":"tcp/(40)()(40)(faf0)((020405b4)(04)(08)(01)(030307))"},"tcp":{"seq":4039075033,"timestamp":{"ts_val":4199249707}},"ip":{"version":4,"ttl":64,"id":"b24f"},"src_ip":"192.168.113.237","dst_ip":"172.217.164.174","protocol":6,"src_port":56368,"dst_port":443,"event_start":1565200338.207021} +{"fingerprints":{"tcp_server":"tcp_server/(40)()(80)(faf0)((020405b4))"},"tcp_server":{"seq":2468074485},"ip":{"version":4,"ttl":128,"id":"a68f"},"src_ip":"172.217.164.174","dst_ip":"192.168.113.237","protocol":6,"src_port":443,"dst_port":56368,"event_start":1565200338.250631} +{"fingerprints":{"tls":"tls/(0303)(130213031301c02cc030009fcca9cca8ccaac02bc02f009ec024c028006bc023c0270067c00ac0140039c009c0130033009d009c003d003c0035002f00ff)((0000)(000b000403000102)(000a000c000a001d0017001e00190018)(0023)(0016)(0017)(000d0030002e040305030603080708080809080a080b080408050806040105010601030302030301020103020202040205020602)(002b0009080304030303020301)(002d00020101)(0033))"},"tls":{"client":{"version":"0303","random":"469b54635829715d0627f37f067c5ff2d4688f5da38af37a88d4ff457a7165d9","session_id":"88ffd8226cb7e9296787385b81f3fa1219d5e10f1b676adacfcb72dd791030d7","cipher_suites":"130213031301c02cc030009fcca9cca8ccaac02bc02f009ec024c028006bc023c0270067c00ac0140039c009c0130033009d009c003d003c0035002f00ff","compression_methods":"00","server_name":"docs.google.com","session_ticket":"","features":"[\"0303\",\"130213031301c02cc030009fcca9cca8ccaac02bc02f009ec024c028006bc023c0270067c00ac0140039c009c0130033009d009c003d003c0035002f00ff\",[[\"0000\",\"001200000f646f63732e676f6f676c652e636f6d\"],[\"000b\",\"03000102\"],[\"000a\",\"000a001d0017001e00190018\"],[\"0023\",\"\"],[\"0016\",\"\"],[\"0017\",\"\"],[\"000d\",\"002e040305030603080708080809080a080b080408050806040105010601030302030301020103020202040205020602\"],[\"002b\",\"080304030303020301\"],[\"002d\",\"0101\"],[\"0033\",\"0024001d0020a1df7539430b1b25cafec779367a27154f589a1a07911f02a72b82812afd8852\"]]]"}},"ip":{"version":4,"ttl":64,"id":"b251"},"src_ip":"192.168.113.237","dst_ip":"172.217.164.174","protocol":6,"src_port":56368,"dst_port":443,"event_start":1565200338.250877} +{"fingerprints":{"tls_server":"tls_server/(0303)(1302)((0033)(002b00020304))"},"tls":{"server":{"version":"0303","random":"85754c347b09c679fbb692c95d2f47098ae9c4288497f0e739efcf03cef61733","selected_cipher_suite":"1302","compression_method":"00"}},"ip":{"version":4,"ttl":128,"id":"a691"},"src_ip":"172.217.164.174","dst_ip":"192.168.113.237","protocol":6,"src_port":443,"dst_port":56368,"event_start":1565200338.300072} +{"fingerprints":{"tcp":"tcp/(40)()(40)(faf0)((020405b4)(04)(08)(01)(030307))"},"tcp":{"seq":1579603710,"timestamp":{"ts_val":1677004856}},"ip":{"version":4,"ttl":64,"id":"002d"},"src_ip":"192.168.113.237","dst_ip":"172.217.164.141","protocol":6,"src_port":57056,"dst_port":443,"event_start":1565200338.450418} +{"fingerprints":{"tcp_server":"tcp_server/(40)()(80)(faf0)((020405b4))"},"tcp_server":{"seq":3242076241},"ip":{"version":4,"ttl":128,"id":"a699"},"src_ip":"172.217.164.141","dst_ip":"192.168.113.237","protocol":6,"src_port":443,"dst_port":57056,"event_start":1565200338.490246} +{"fingerprints":{"tls":"tls/(0303)(130213031301c02cc030009fcca9cca8ccaac02bc02f009ec024c028006bc023c0270067c00ac0140039c009c0130033009d009c003d003c0035002f00ff)((0000)(000b000403000102)(000a000c000a001d0017001e00190018)(0023)(0016)(0017)(000d0030002e040305030603080708080809080a080b080408050806040105010601030302030301020103020202040205020602)(002b0009080304030303020301)(002d00020101)(0033))"},"tls":{"client":{"version":"0303","random":"8c02654a2eea497b09658cba201faa6a521b383dc7c7cfee4d1e736de6cb78a2","session_id":"21818e58c040f41d20aeb18ea833c95ef68b606b78af431217fb29fd7df3801b","cipher_suites":"130213031301c02cc030009fcca9cca8ccaac02bc02f009ec024c028006bc023c0270067c00ac0140039c009c0130033009d009c003d003c0035002f00ff","compression_methods":"00","server_name":"accounts.google.com","session_ticket":"","features":"[\"0303\",\"130213031301c02cc030009fcca9cca8ccaac02bc02f009ec024c028006bc023c0270067c00ac0140039c009c0130033009d009c003d003c0035002f00ff\",[[\"0000\",\"00160000136163636f756e74732e676f6f676c652e636f6d\"],[\"000b\",\"03000102\"],[\"000a\",\"000a001d0017001e00190018\"],[\"0023\",\"\"],[\"0016\",\"\"],[\"0017\",\"\"],[\"000d\",\"002e040305030603080708080809080a080b080408050806040105010601030302030301020103020202040205020602\"],[\"002b\",\"080304030303020301\"],[\"002d\",\"0101\"],[\"0033\",\"0024001d0020689f808d0bb7c3b2b8e3ea3387b201a421425aa9be2fcbbd29d720f8c7b8443b\"]]]"}},"ip":{"version":4,"ttl":64,"id":"002f"},"src_ip":"192.168.113.237","dst_ip":"172.217.164.141","protocol":6,"src_port":57056,"dst_port":443,"event_start":1565200338.490563} +{"fingerprints":{"tls_server":"tls_server/(0303)(1302)((0033)(002b00020304))"},"tls":{"server":{"version":"0303","random":"e055f2c946eb00e0f104020c013f8ee7d66146b69f15a23bd5764c5d50bb782a","selected_cipher_suite":"1302","compression_method":"00"}},"ip":{"version":4,"ttl":128,"id":"a69c"},"src_ip":"172.217.164.141","dst_ip":"192.168.113.237","protocol":6,"src_port":443,"dst_port":57056,"event_start":1565200338.540860} +{"dns":{"base64":"g6oBAAABAAAAAAAABmdpdGh1YgNjb20AAAEAAQ=="},"ip":{"version":4,"ttl":64,"id":"d815"},"src_ip":"192.168.113.237","dst_ip":"192.168.113.2","protocol":17,"src_port":45592,"dst_port":53,"event_start":1565200338.822401} +{"dns":{"base64":"438BAAABAAAAAAAABmdpdGh1YgNjb20AABwAAQ=="},"ip":{"version":4,"ttl":64,"id":"d816"},"src_ip":"192.168.113.237","dst_ip":"192.168.113.2","protocol":17,"src_port":42496,"dst_port":53,"event_start":1565200338.822579} +{"dns":{"base64":"43+BgAABAAAAAQAABmdpdGh1YgNjb20AABwAAcAMAAYAAQAAAAUASAducy0xNzA3CWF3c2Rucy0yMQJjbwJ1awARYXdzZG5zLWhvc3RtYXN0ZXIGYW1hem9uwBMAAAABAAAcIAAAA4QAEnUAAAFRgA=="},"ip":{"version":4,"ttl":128,"id":"a6d5"},"src_ip":"192.168.113.2","dst_ip":"192.168.113.237","protocol":17,"src_port":53,"dst_port":42496,"event_start":1565200338.857920} +{"dns":{"base64":"g6qBgAABAAEADQAOBmdpdGh1YgNjb20AAAEAAcAMAAEAAQAAAAUABIxScQTAEwACAAEAAAAFABQBaQxndGxkLXNlcnZlcnMDbmV0AMATAAIAAQAAAAUABAFtwDrAEwACAAEAAAAFAAQBZsA6wBMAAgABAAAABQAEAWjAOsATAAIAAQAAAAUABAFjwDrAEwACAAEAAAAFAAQBYcA6wBMAAgABAAAABQAEAWXAOsATAAIAAQAAAAUABAFrwDrAEwACAAEAAAAFAAQBYsA6wBMAAgABAAAABQAEAWzAOsATAAIAAQAAAAUABAFqwDrAEwACAAEAAAAFAAQBZ8A6wBMAAgABAAAABQAEAWTAOsCYAAEAAQAAAAUABMAFBh7AyAABAAEAAAAFAATAIQ4ewIgAAQABAAAABQAEwBpcHsEIAAEAAQAAAAUABMAfUB7AqAABAAEAAAAFAATADF4ewGgAAQABAAAABQAEwCMzHsD4AAEAAQAAAAUABMAqXR7AeAABAAEAAAAFAATANnAewDgAAQABAAAABQAEwCusHsDoAAEAAQAAAAUABMAwTx7AuAABAAEAAAAFAATANLIewNgAAQABAAAABQAEwCmiHsBYAAEAAQAAAAUABMA3Ux7AmAAcAAEAAAAFABAgAQUDqD4AAAAAAAAAAgAw"},"ip":{"version":4,"ttl":128,"id":"a6d6"},"src_ip":"192.168.113.2","dst_ip":"192.168.113.237","protocol":17,"src_port":53,"dst_port":45592,"event_start":1565200338.858443} +{"fingerprints":{"tcp":"tcp/(40)()(40)(faf0)((020405b4)(04)(08)(01)(030307))"},"tcp":{"seq":2032618092,"timestamp":{"ts_val":3500565545}},"ip":{"version":4,"ttl":64,"id":"9d55"},"src_ip":"192.168.113.237","dst_ip":"140.82.113.4","protocol":6,"src_port":59600,"dst_port":443,"event_start":1565200338.858724} +{"fingerprints":{"tcp_server":"tcp_server/(40)()(80)(faf0)((020405b4))"},"tcp_server":{"seq":2248953850},"ip":{"version":4,"ttl":128,"id":"a6d7"},"src_ip":"140.82.113.4","dst_ip":"192.168.113.237","protocol":6,"src_port":443,"dst_port":59600,"event_start":1565200338.898700} +{"fingerprints":{"tls":"tls/(0303)(130213031301c02cc030009fcca9cca8ccaac02bc02f009ec024c028006bc023c0270067c00ac0140039c009c0130033009d009c003d003c0035002f00ff)((0000)(000b000403000102)(000a000c000a001d0017001e00190018)(0023)(0016)(0017)(000d0030002e040305030603080708080809080a080b080408050806040105010601030302030301020103020202040205020602)(002b0009080304030303020301)(002d00020101)(0033))"},"tls":{"client":{"version":"0303","random":"aef3e97a13e48c7e6d44784867553bacbc0842631dad9006d50a06f5ba3c676e","session_id":"6365ad637b1e10e9f6bc743364c16475775c66540d5de43080537c0d6d14cd5f","cipher_suites":"130213031301c02cc030009fcca9cca8ccaac02bc02f009ec024c028006bc023c0270067c00ac0140039c009c0130033009d009c003d003c0035002f00ff","compression_methods":"00","server_name":"github.com","session_ticket":"","features":"[\"0303\",\"130213031301c02cc030009fcca9cca8ccaac02bc02f009ec024c028006bc023c0270067c00ac0140039c009c0130033009d009c003d003c0035002f00ff\",[[\"0000\",\"000d00000a6769746875622e636f6d\"],[\"000b\",\"03000102\"],[\"000a\",\"000a001d0017001e00190018\"],[\"0023\",\"\"],[\"0016\",\"\"],[\"0017\",\"\"],[\"000d\",\"002e040305030603080708080809080a080b080408050806040105010601030302030301020103020202040205020602\"],[\"002b\",\"080304030303020301\"],[\"002d\",\"0101\"],[\"0033\",\"0024001d0020b5fd97c2cc66b2ea288634f5fcece8cc02d95129dc8164dfe683f4df858a4770\"]]]"}},"ip":{"version":4,"ttl":64,"id":"9d57"},"src_ip":"192.168.113.237","dst_ip":"140.82.113.4","protocol":6,"src_port":59600,"dst_port":443,"event_start":1565200338.899369} +{"fingerprints":{"tls_server":"tls_server/(0303)(1301)((002b00020304)(0033))"},"tls":{"server":{"version":"0303","random":"4137e38ca29d0d964495160b5f5b8ba6a2d25b59f3c884162c0133b4a8390ea7","selected_cipher_suite":"1301","compression_method":"00"}},"ip":{"version":4,"ttl":128,"id":"a6d9"},"src_ip":"140.82.113.4","dst_ip":"192.168.113.237","protocol":6,"src_port":443,"dst_port":59600,"event_start":1565200338.941311} +{"dns":{"base64":"s6sBAAABAAAAAAAAB2dvZGFkZHkDY29tAAABAAE="},"ip":{"version":4,"ttl":64,"id":"d830"},"src_ip":"192.168.113.237","dst_ip":"192.168.113.2","protocol":17,"src_port":35658,"dst_port":53,"event_start":1565200339.284116} +{"dns":{"base64":"PikBAAABAAAAAAAAB2dvZGFkZHkDY29tAAAcAAE="},"ip":{"version":4,"ttl":64,"id":"d831"},"src_ip":"192.168.113.237","dst_ip":"192.168.113.2","protocol":17,"src_port":34584,"dst_port":53,"event_start":1565200339.284260} +{"dns":{"base64":"s6uBgAABAAEADQAOB2dvZGFkZHkDY29tAAABAAHADAABAAEAAAAFAATQbcBGwBQAAgABAAAABQAUAW0MZ3RsZC1zZXJ2ZXJzA25ldADAFAACAAEAAAAFAAQBZMA7wBQAAgABAAAABQAEAWbAO8AUAAIAAQAAAAUABAFrwDvAFAACAAEAAAAFAAQBZ8A7wBQAAgABAAAABQAEAWPAO8AUAAIAAQAAAAUABAFlwDvAFAACAAEAAAAFAAQBacA7wBQAAgABAAAABQAEAWzAO8AUAAIAAQAAAAUABAFqwDvAFAACAAEAAAAFAAQBYcA7wBQAAgABAAAABQAEAWLAO8AUAAIAAQAAAAUABAFowDvA6QABAAEAAAAFAATABQYewPkAAQABAAAABQAEwCEOHsCZAAEAAQAAAAUABMAaXB7AWQABAAEAAAAFAATAH1AewKkAAQABAAAABQAEwAxeHsBpAAEAAQAAAAUABMAjMx7AiQABAAEAAAAFAATAKl0ewQkAAQABAAAABQAEwDZwHsC5AAEAAQAAAAUABMArrB7A2QABAAEAAAAFAATAME8ewHkAAQABAAAABQAEwDSyHsDJAAEAAQAAAAUABMApoh7AOQABAAEAAAAFAATAN1MewOkAHAABAAAABQAQIAEFA6g+AAAAAAAAAAIAMA=="},"ip":{"version":4,"ttl":128,"id":"a72c"},"src_ip":"192.168.113.2","dst_ip":"192.168.113.237","protocol":17,"src_port":53,"dst_port":35658,"event_start":1565200339.326158} +{"dns":{"base64":"PimBgAABAAAAAQAAB2dvZGFkZHkDY29tAAAcAAHADAAGAAEAAAAFACoEY25zMcAMA2RucwVqb21heANuZXQAeFi6AgAAASwAAAJYABJ1AAAADhA="},"ip":{"version":4,"ttl":128,"id":"a72d"},"src_ip":"192.168.113.2","dst_ip":"192.168.113.237","protocol":17,"src_port":53,"dst_port":34584,"event_start":1565200339.326612} +{"fingerprints":{"tcp":"tcp/(40)()(40)(faf0)((020405b4)(04)(08)(01)(030307))"},"tcp":{"seq":974862080,"timestamp":{"ts_val":786846702}},"ip":{"version":4,"ttl":64,"id":"e0ae"},"src_ip":"192.168.113.237","dst_ip":"208.109.192.70","protocol":6,"src_port":57146,"dst_port":443,"event_start":1565200339.326786} +{"fingerprints":{"tcp_server":"tcp_server/(40)()(80)(faf0)((020405b4))"},"tcp_server":{"seq":2839404527},"ip":{"version":4,"ttl":128,"id":"a72e"},"src_ip":"208.109.192.70","dst_ip":"192.168.113.237","protocol":6,"src_port":443,"dst_port":57146,"event_start":1565200339.414383} +{"fingerprints":{"tls":"tls/(0303)(130213031301c02cc030009fcca9cca8ccaac02bc02f009ec024c028006bc023c0270067c00ac0140039c009c0130033009d009c003d003c0035002f00ff)((0000)(000b000403000102)(000a000c000a001d0017001e00190018)(0023)(0016)(0017)(000d0030002e040305030603080708080809080a080b080408050806040105010601030302030301020103020202040205020602)(002b0009080304030303020301)(002d00020101)(0033))"},"tls":{"client":{"version":"0303","random":"c06e58eb73695cea8c26e7a0010edd9dfc1c8b56b4e0c09d0c2900a54cb5f0c5","session_id":"af675f2dc757a5d4b6159e8949d312bbaa07d4d2d17b879b7748c5679cc3c026","cipher_suites":"130213031301c02cc030009fcca9cca8ccaac02bc02f009ec024c028006bc023c0270067c00ac0140039c009c0130033009d009c003d003c0035002f00ff","compression_methods":"00","server_name":"godaddy.com","session_ticket":"","features":"[\"0303\",\"130213031301c02cc030009fcca9cca8ccaac02bc02f009ec024c028006bc023c0270067c00ac0140039c009c0130033009d009c003d003c0035002f00ff\",[[\"0000\",\"000e00000b676f64616464792e636f6d\"],[\"000b\",\"03000102\"],[\"000a\",\"000a001d0017001e00190018\"],[\"0023\",\"\"],[\"0016\",\"\"],[\"0017\",\"\"],[\"000d\",\"002e040305030603080708080809080a080b080408050806040105010601030302030301020103020202040205020602\"],[\"002b\",\"080304030303020301\"],[\"002d\",\"0101\"],[\"0033\",\"0024001d002092c338c2276102f117484adea3cde74582a5d4436205205637c7bde6bbb0a967\"]]]"}},"ip":{"version":4,"ttl":64,"id":"e0b0"},"src_ip":"192.168.113.237","dst_ip":"208.109.192.70","protocol":6,"src_port":57146,"dst_port":443,"event_start":1565200339.414630} +{"fingerprints":{"tls_server":"tls_server/(0303)(cca8)((ff01)(0000)(000b000403000102)(0023)(0017))"},"tls":{"server":{"certs":[{"base64":"MIIFLDCCBBSgAwIBAgIIXhtVcggAOKYwDQYJKoZIhvcNAQELBQAwgbQxCzAJBgNVBAYTAlVTMRAwDgYDVQQIEwdBcml6b25hMRMwEQYDVQQHEwpTY290dHNkYWxlMRowGAYDVQQKExFHb0RhZGR5LmNvbSwgSW5jLjEtMCsGA1UECxMkaHR0cDovL2NlcnRzLmdvZGFkZHkuY29tL3JlcG9zaXRvcnkvMTMwMQYDVQQDEypHbyBEYWRkeSBTZWN1cmUgQ2VydGlmaWNhdGUgQXV0aG9yaXR5IC0gRzIwHhcNMTgwMjA3MTgxMDAxWhcNMjAwMjA3MTgxMDAxWjA7MSEwHwYDVQQLExhEb21haW4gQ29udHJvbCBWYWxpZGF0ZWQxFjAUBgNVBAMMDSouZ29kYWRkeS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQCz+x0UeLIgIzBP9FiQTAypkoBRh3J46xjS3WFK68HZ+rG4JRd3QtonEbVpzqJ2+eSd2ZIjfalcRTX1QyzDpbg7pMeFKooSlnIZuPekHtyzAjjBMQICfJy9IXJDKTUiHch6/rPtnM/lNZWqKinxq1kDLAMrg0l7/u6syj6DZaqtPUHcY259CgHqVQzqBp5lerMiYo/d8oE41d6/VvKVfzfCgHV3pUMdt1P97TbghRLN56TQPuh7fgLXpdLzxwTzrIyWpDAZREfL1eZkdWgN2uObsiARbDvE81pgsrxFJdBHZ1acI4OCzA3ypK2IfzTM8XnTedH4vZ4/zitHflV/KOBHAgMBAAGjggG4MIIBtDAMBgNVHRMBAf8EAjAAMB0GA1UdJQQWMBQGCCsGAQUFBwMBBggrBgEFBQcDAjAOBgNVHQ8BAf8EBAMCBaAwNwYDVR0fBDAwLjAsoCqgKIYmaHR0cDovL2NybC5nb2RhZGR5LmNvbS9nZGlnMnMxLTgwNi5jcmwwXQYDVR0gBFYwVDBIBgtghkgBhv1tAQcXATA5MDcGCCsGAQUFBwIBFitodHRwOi8vY2VydGlmaWNhdGVzLmdvZGFkZHkuY29tL3JlcG9zaXRvcnkvMAgGBmeBDAECATB2BggrBgEFBQcBAQRqMGgwJAYIKwYBBQUHMAGGGGh0dHA6Ly9vY3NwLmdvZGFkZHkuY29tLzBABggrBgEFBQcwAoY0aHR0cDovL2NlcnRpZmljYXRlcy5nb2RhZGR5LmNvbS9yZXBvc2l0b3J5L2dkaWcyLmNydDAfBgNVHSMEGDAWgBRAwr0njsw0gzCiM9f7bLPwtCyAzjAlBgNVHREEHjAcgg0qLmdvZGFkZHkuY29tggtnb2RhZGR5LmNvbTAdBgNVHQ4EFgQUaw2x1LFk8L8KgjaWi8Y8BGrIWAYwDQYJKoZIhvcNAQELBQADggEBAEyKqcvdOrH5m+flLshCsmx7aQveFmEasVfImhAV4ZFHpcBIygaOOi+sO7uDoH1ZtpatgD+vhYml7zLObOn+zO8pLxREd7gAMP6DcfxSauP1C/DOJC4QBUPnloSjS3lIaWaEVsktj6wGZzZm7Nya9dMlLgGZ3Zen5g2NlPJZpY/hsnMe7zJfIntQYaPgwDR8Mzb6YlcZF28w7fiss5GfjHP/V0QCVMOQ5QOV3Fu49y72qa5Vm2RJI7P/KJqOgEir9LgK0qF1tcFVRjp1MYEUnSKT14AJh2vJ+qWvOGy7HNIIC2p5ct3JItHUJaHrlNWBKmDD8S+xNe/rjBhFOUfrudM="},{"base64":"MIIE0DCCA7igAwIBAgIBBzANBgkqhkiG9w0BAQsFADCBgzELMAkGA1UEBhMCVVMxEDAOBgNVBAgTB0FyaXpvbmExEzARBgNVBAcTClNjb3R0c2RhbGUxGjAYBgNVBAoTEUdvRGFkZHkuY29tLCBJbmMuMTEwLwYDVQQDEyhHbyBEYWRkeSBSb290IENlcnRpZmljYXRlIEF1dGhvcml0eSAtIEcyMB4XDTExMDUwMzA3MDAwMFoXDTMxMDUwMzA3MDAwMFowgbQxCzAJBgNVBAYTAlVTMRAwDgYDVQQIEwdBcml6b25hMRMwEQYDVQQHEwpTY290dHNkYWxlMRowGAYDVQQKExFHb0RhZGR5LmNvbSwgSW5jLjEtMCsGA1UECxMkaHR0cDovL2NlcnRzLmdvZGFkZHkuY29tL3JlcG9zaXRvcnkvMTMwMQYDVQQDEypHbyBEYWRkeSBTZWN1cmUgQ2VydGlmaWNhdGUgQXV0aG9yaXR5IC0gRzIwggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQC54MsQ1K92vdSTYuswZLiBCGzDBNliF44v/z5lz4/OYuY8UhzaFkVLVat4a2ODYpDOD2lsmcgaFItMzEUz6ojcnqOvK/6AYZ15V8TPLvQ/MDxdR/yaFrzDN5ZBUY4RS1T4KL7QjL7wMDge87Am+GZHY23ecSZHjzhHU9FGHbTj3ADqRay9vHHZqm8A29vNMDp5T19MR/gd71vCxJ1gO7GyQ5HYpDNO6rPWJ0+tJYqlxvTV0KaudAVkV4i1RFXULSo6Pvi4vekyCgKUZMQWOlDxSq7neTOvDCAHf+jfBDnCaQJsY1L6d8EbyHSHyLmTGFBUNUtpTrw700kuH9zB0lL7AgMBAAGjggEaMIIBFjAPBgNVHRMBAf8EBTADAQH/MA4GA1UdDwEB/wQEAwIBBjAdBgNVHQ4EFgQUQMK9J47MNIMwojPX+2yz8LQsgM4wHwYDVR0jBBgwFoAUOpqFBxBnKLbv9r0FQW4gwZTaD94wNAYIKwYBBQUHAQEEKDAmMCQGCCsGAQUFBzABhhhodHRwOi8vb2NzcC5nb2RhZGR5LmNvbS8wNQYDVR0fBC4wLDAqoCigJoYkaHR0cDovL2NybC5nb2RhZGR5LmNvbS9nZHJvb3QtZzIuY3JsMEYGA1UdIAQ/MD0wOwYEVR0gADAzMDEGCCsGAQUFBwIBFiVodHRwczovL2NlcnRzLmdvZGFkZHkuY29tL3JlcG9zaXRvcnkvMA0GCSqGSIb3DQEBCwUAA4IBAQAIfmyTEMg4uJapkEv/oV9PBO9sPpyIBslQj6Zz91cxG7685C/b+LrTW+C05+Z5Yg4MotdqY3MxtfWoSKQ7CC2iXZDXtHwlTxFWMMS2RJ17LJ3lXubvDGGqv+QqG+6EnriDfcFDzkSnE3ANkR/0yBOtg2DZ2HKocyQetawiDsoXiWJYRBuriSUBAA/NxBti21G00w9RKpv0vHP8ds42pM3Z2Czqrpv1KrKQ0U11GIo/ikGQI31bS/6kA1ibRrLDYGCD+H1QQc7CoZDDu+8CL9IVVO5EFdkKrqeKM+2xLXY2JtwE65/3YR8V3Idv7kaWKK2hJn0KCacuBKONvPi8BDAB"}],"version":"0303","random":"bcfcc237eb9d6bd8d59ffddc6796819cbd19892ed6aacc9f124940812d57faa6","selected_cipher_suite":"cca8","compression_method":"00","session_ticket":""}},"reassembly_properties":{"reassembled":true},"ip":{"version":4,"ttl":128,"id":"a732"},"src_ip":"208.109.192.70","dst_ip":"192.168.113.237","protocol":6,"src_port":443,"dst_port":57146,"event_start":1565200339.505244} +{"dns":{"base64":"UugBAAABAAAAAAAAA3d3dwdnb2RhZGR5A2NvbQAAAQAB"},"ip":{"version":4,"ttl":64,"id":"d868"},"src_ip":"192.168.113.237","dst_ip":"192.168.113.2","protocol":17,"src_port":35405,"dst_port":53,"event_start":1565200339.688659} +{"dns":{"base64":"JK4BAAABAAAAAAAAA3d3dwdnb2RhZGR5A2NvbQAAHAAB"},"ip":{"version":4,"ttl":64,"id":"d869"},"src_ip":"192.168.113.237","dst_ip":"192.168.113.2","protocol":17,"src_port":39616,"dst_port":53,"event_start":1565200339.688840} +{"dns":{"base64":"JK6BgAABAAQADQAEA3d3dwdnb2RhZGR5A2NvbQAAHAABwAwABQABAAAABQAiCHd3dy1pcHY2B2dvZGFkZHkDY29tB2VkZ2VrZXkDbmV0AMAtAAUAAQAAAAUAGAVlODgwNARkc2N4CmFrYW1haWVkZ2XASsBbABwAAQAAAAUAECYAFB4AAgGvAAAAAAAAImTAWwAcAAEAAAAFABAmABQeAAIBhAAAAAAAACJkwGYAAgABAAAABQAKB2ExMS0xOTLAZsBmAAIAAQAAAAUACgdhMjgtMTkywGbAZgACAAEAAAAFAAoHbnMzLTE5NMBmwGYAAgABAAAABQAKB2ExMy0xOTLAZsBmAAIAAQAAAAUACgduczUtMTk0wGbAZgACAAEAAAAFAAkGYTEtMTkywGbAZgACAAEAAAAFAAoHYTEyLTE5MsBmwGYAAgABAAAABQAHBGxhcjLAZsBmAAIAAQAAAAUABgNsYTHAZsBmAAIAAQAAAAUABgNsYTPAZsBmAAIAAQAAAAUACgduczctMTk0wGbAZgACAAEAAAAFAAoHbnM2LTE5NMBmwGYAAgABAAAABQAJBmE2LTE5MsBmwWMAAQABAAAABQAEuBqhwMF1AAEAAQAAAAUABF9lJMDBUAABAAEAAAAFAAQCECjAwSUAAQABAAAABQAEwWxYAA=="},"ip":{"version":4,"ttl":128,"id":"a73b"},"src_ip":"192.168.113.2","dst_ip":"192.168.113.237","protocol":17,"src_port":53,"dst_port":39616,"event_start":1565200339.856504} +{"dns":{"base64":"UuiBgAABAAMADQAKA3d3dwdnb2RhZGR5A2NvbQAAAQABwAwABQABAAAABQAiCHd3dy1pcHY2B2dvZGFkZHkDY29tB2VkZ2VrZXkDbmV0AMAtAAUAAQAAAAUAGAVlODgwNARkc2N4CmFrYW1haWVkZ2XASsBbAAEAAQAAAAUABLgy/NnASgACAAEAAAAFABEBZQxndGxkLXNlcnZlcnPASsBKAAIAAQAAAAUABAFpwJHASgACAAEAAAAFAAQBasCRwEoAAgABAAAABQAEAWTAkcBKAAIAAQAAAAUABAFjwJHASgACAAEAAAAFAAQBaMCRwEoAAgABAAAABQAEAWvAkcBKAAIAAQAAAAUABAFmwJHASgACAAEAAAAFAAQBYsCRwEoAAgABAAAABQAEAWHAkcBKAAIAAQAAAAUABAFnwJHASgACAAEAAAAFAAQBbMCRwEoAAgABAAAABQAEAW3AkcEsAAEAAQAAAAUABMAFBh7BHAABAAEAAAAFAATAIQ4ewNwAAQABAAAABQAEwBpcHsDMAAEAAQAAAAUABMAfUB7AjwABAAEAAAAFAATADF4ewQwAAQABAAAABQAEwCMzHsE8AAEAAQAAAAUABMAqXR7A7AABAAEAAAAFAATANnAewKwAAQABAAAABQAEwCusHsC8AAEAAQAAAAUABMAwTx4="},"ip":{"version":4,"ttl":128,"id":"a73c"},"src_ip":"192.168.113.2","dst_ip":"192.168.113.237","protocol":17,"src_port":53,"dst_port":35405,"event_start":1565200340.185373} +{"fingerprints":{"tcp":"tcp/(40)()(40)(faf0)((020405b4)(04)(08)(01)(030307))"},"tcp":{"seq":2379468005,"timestamp":{"ts_val":1967378203}},"ip":{"version":4,"ttl":64,"id":"1460"},"src_ip":"192.168.113.237","dst_ip":"184.50.252.217","protocol":6,"src_port":54678,"dst_port":443,"event_start":1565200340.185836} +{"fingerprints":{"tcp_server":"tcp_server/(40)()(80)(faf0)((020405b4))"},"tcp_server":{"seq":2493890507},"ip":{"version":4,"ttl":128,"id":"a73d"},"src_ip":"184.50.252.217","dst_ip":"192.168.113.237","protocol":6,"src_port":443,"dst_port":54678,"event_start":1565200340.222709} +{"fingerprints":{"tls":"tls/(0303)(130213031301c02cc030009fcca9cca8ccaac02bc02f009ec024c028006bc023c0270067c00ac0140039c009c0130033009d009c003d003c0035002f00ff)((0000)(000b000403000102)(000a000c000a001d0017001e00190018)(0023)(0016)(0017)(000d0030002e040305030603080708080809080a080b080408050806040105010601030302030301020103020202040205020602)(002b0009080304030303020301)(002d00020101)(0033))"},"tls":{"client":{"version":"0303","random":"2339e0adb854018853d0e6e3d2a6bee5848552b9fe8864dae95f22fd5128935c","session_id":"26b9d0809ae1a4369f26659fa135de513ba60773bf949e1e306b2086ef51177a","cipher_suites":"130213031301c02cc030009fcca9cca8ccaac02bc02f009ec024c028006bc023c0270067c00ac0140039c009c0130033009d009c003d003c0035002f00ff","compression_methods":"00","server_name":"www.godaddy.com","session_ticket":"","features":"[\"0303\",\"130213031301c02cc030009fcca9cca8ccaac02bc02f009ec024c028006bc023c0270067c00ac0140039c009c0130033009d009c003d003c0035002f00ff\",[[\"0000\",\"001200000f7777772e676f64616464792e636f6d\"],[\"000b\",\"03000102\"],[\"000a\",\"000a001d0017001e00190018\"],[\"0023\",\"\"],[\"0016\",\"\"],[\"0017\",\"\"],[\"000d\",\"002e040305030603080708080809080a080b080408050806040105010601030302030301020103020202040205020602\"],[\"002b\",\"080304030303020301\"],[\"002d\",\"0101\"],[\"0033\",\"0024001d0020958aa938c22d809229e91cbf766f42a063f7f0c1760b752492a40412158ed00b\"]]]"}},"ip":{"version":4,"ttl":64,"id":"1462"},"src_ip":"192.168.113.237","dst_ip":"184.50.252.217","protocol":6,"src_port":54678,"dst_port":443,"event_start":1565200340.222942} +{"fingerprints":{"tls_server":"tls_server/(0303)(c030)((ff01)(0000)(000b000403000102)(0023))"},"tls":{"server":{"certs":[{"base64":"MIIHOzCCBiOgAwIBAgIJANWT1NXH0e1KMA0GCSqGSIb3DQEBCwUAMIG0MQswCQYDVQQGEwJVUzEQMA4GA1UECBMHQXJpem9uYTETMBEGA1UEBxMKU2NvdHRzZGFsZTEaMBgGA1UEChMRR29EYWRkeS5jb20sIEluYy4xLTArBgNVBAsTJGh0dHA6Ly9jZXJ0cy5nb2RhZGR5LmNvbS9yZXBvc2l0b3J5LzEzMDEGA1UEAxMqR28gRGFkZHkgU2VjdXJlIENlcnRpZmljYXRlIEF1dGhvcml0eSAtIEcyMB4XDTE5MDIxMjIyNTAzN1oXDTIxMDIxMjIyNTAzN1owgcYxEzARBgsrBgEEAYI3PAIBAxMCVVMxGTAXBgsrBgEEAYI3PAIBAhMIRGVsYXdhcmUxHTAbBgNVBA8TFFByaXZhdGUgT3JnYW5pemF0aW9uMRAwDgYDVQQFEwc1NTEwOTIyMQswCQYDVQQGEwJVUzEQMA4GA1UECBMHQXJpem9uYTETMBEGA1UEBxMKU2NvdHRzZGFsZTEVMBMGA1UEChMMR29EYWRkeSBJTkMuMRgwFgYDVQQDEw93d3cuZ29kYWRkeS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQC9zwL3ngi1HeLwA/+0EH8fo7lBinxeuQ/qnk0A4z9Ch5I/Tb6VRJa/AnTIG2K2hgbMNVgMKzhUFLhEqmvPsUbHYRXz3PEshysY9HVqGqLFi9pwcYACX64fltYQHoA5os25X7TWbvGBxPKzAmHcrMGEaEnvffQU4XQf3iklqbs1ntoiZfioKK/dUV1T2TsnGdIXpYr8jV8Hm7svUdHc3OLm+9+w5n3aZeo8QHOu3bYGSYDGZwV5Jellpw9WAmwmm4sGFj5pZPecUMAShsUsPfz1WMWLLLpoh9hAbEeMNbuQKbyolXoyJz3x0fA3RBnPWrfkK3kIC7A07nIZLvZ7ZKJPAgMBAAGjggM6MIIDNjAMBgNVHRMBAf8EAjAAMB0GA1UdJQQWMBQGCCsGAQUFBwMBBggrBgEFBQcDAjAOBgNVHQ8BAf8EBAMCBaAwNgYDVR0fBC8wLTAroCmgJ4YlaHR0cDovL2NybC5nb2RhZGR5LmNvbS9nZGlnMnMzLTE0LmNybDBcBgNVHSAEVTBTMEgGC2CGSAGG/W0BBxcDMDkwNwYIKwYBBQUHAgEWK2h0dHA6Ly9jZXJ0aWZpY2F0ZXMuZ29kYWRkeS5jb20vcmVwb3NpdG9yeS8wBwYFZ4EMAQEwdgYIKwYBBQUHAQEEajBoMCQGCCsGAQUFBzABhhhodHRwOi8vb2NzcC5nb2RhZGR5LmNvbS8wQAYIKwYBBQUHMAKGNGh0dHA6Ly9jZXJ0aWZpY2F0ZXMuZ29kYWRkeS5jb20vcmVwb3NpdG9yeS9nZGlnMi5jcnQwHwYDVR0jBBgwFoAUQMK9J47MNIMwojPX+2yz8LQsgM4wJwYDVR0RBCAwHoIPd3d3LmdvZGFkZHkuY29tggtnb2RhZGR5LmNvbTAdBgNVHQ4EFgQU5kzQPyBNw9M5tOpWYGYNuhlhjT4wggF+BgorBgEEAdZ5AgQCBIIBbgSCAWoBaAB2AKS5CZC0GFgUh7sTosxncAo8NZgE+RvfuON3zQ7IDdwQAAABaOPnrYsAAAQDAEcwRQIhAL07mGyJ020pWHfRxQdzN40x7lvp11qQGxJnJGBNW+dtAiBbpOBWhkybElubsl+jJm4smddfmuTAolrUTmsnAj6UYwB2AO5Lvbd1zmC64UJpH6vhnmajD35fsHLYgwDEe4l6qP3LAAABaOPnsL0AAAQDAEcwRQIhAK7oygdKktE5ix4hL1y6LnlFcjBMW/n91XrSvrmRwhI3AiBM0FrcPSkTNsKoqUGFV5yrDzSdFlo0pzW9N7C0WCFUHAB2AESUZS6w7s6vxEAH2Kj+KMDa5oK+2MsxtT/TM5a1toGoAAABaOPnswYAAAQDAEcwRQIgcAsViDwtRhQh0BYNN6DbnmQd/UAs5wTdbAo5xiZXkhQCIQCQ9alomPuVH7ogkPuFnwfD3xI+z0aEHU71jx1CtgDOGjANBgkqhkiG9w0BAQsFAAOCAQEAi3wPs5nE9ki835LsQdZrBy9X4mO13SdJ2qY+IYwArRmnN8IcX4Xq8FeUbYib3FsjwCKR4V3V1pIPQX6lve8OAaXRhrtLubfUwCEgnQQUaZ/VvwZvHEhoBLji/h87MsblhmxtQ6t3wb9l11+s//Vc7w7ddjWXQ4kYIUENk18WYzGpPjxykrsO3KFnE/nydqbqihqpJ15fMP8buReI45IMCr6RlARl7w2HPTQium4CNvYbYSOGY8jsD29hukN15pqGqwPZ/z/ORTcMXYbVajDhtdDjuaAFK6Nm7dpxaccjWKRn+Rz3S8TaBBmV+A89PxusOnLTBJg8hf/xTPvodV122g=="},{"base64":"MIIE0DCCA7igAwIBAgIBBzANBgkqhkiG9w0BAQsFADCBgzELMAkGA1UEBhMCVVMxEDAOBgNVBAgTB0FyaXpvbmExEzARBgNVBAcTClNjb3R0c2RhbGUxGjAYBgNVBAoTEUdvRGFkZHkuY29tLCBJbmMuMTEwLwYDVQQDEyhHbyBEYWRkeSBSb290IENlcnRpZmljYXRlIEF1dGhvcml0eSAtIEcyMB4XDTExMDUwMzA3MDAwMFoXDTMxMDUwMzA3MDAwMFowgbQxCzAJBgNVBAYTAlVTMRAwDgYDVQQIEwdBcml6b25hMRMwEQYDVQQHEwpTY290dHNkYWxlMRowGAYDVQQKExFHb0RhZGR5LmNvbSwgSW5jLjEtMCsGA1UECxMkaHR0cDovL2NlcnRzLmdvZGFkZHkuY29tL3JlcG9zaXRvcnkvMTMwMQYDVQQDEypHbyBEYWRkeSBTZWN1cmUgQ2VydGlmaWNhdGUgQXV0aG9yaXR5IC0gRzIwggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQC54MsQ1K92vdSTYuswZLiBCGzDBNliF44v/z5lz4/OYuY8UhzaFkVLVat4a2ODYpDOD2lsmcgaFItMzEUz6ojcnqOvK/6AYZ15V8TPLvQ/MDxdR/yaFrzDN5ZBUY4RS1T4KL7QjL7wMDge87Am+GZHY23ecSZHjzhHU9FGHbTj3ADqRay9vHHZqm8A29vNMDp5T19MR/gd71vCxJ1gO7GyQ5HYpDNO6rPWJ0+tJYqlxvTV0KaudAVkV4i1RFXULSo6Pvi4vekyCgKUZMQWOlDxSq7neTOvDCAHf+jfBDnCaQJsY1L6d8EbyHSHyLmTGFBUNUtpTrw700kuH9zB0lL7AgMBAAGjggEaMIIBFjAPBgNVHRMBAf8EBTADAQH/MA4GA1UdDwEB/wQEAwIBBjAdBgNVHQ4EFgQUQMK9J47MNIMwojPX+2yz8LQsgM4wHwYDVR0jBBgwFoAUOpqFBxBnKLbv9r0FQW4gwZTaD94wNAYIKwYBBQUHAQEEKDAmMCQGCCsGAQUFBzABhhhodHRwOi8vb2NzcC5nb2RhZGR5LmNvbS8wNQYDVR0fBC4wLDAqoCigJoYkaHR0cDovL2NybC5nb2RhZGR5LmNvbS9nZHJvb3QtZzIuY3JsMEYGA1UdIAQ/MD0wOwYEVR0gADAzMDEGCCsGAQUFBwIBFiVodHRwczovL2NlcnRzLmdvZGFkZHkuY29tL3JlcG9zaXRvcnkvMA0GCSqGSIb3DQEBCwUAA4IBAQAIfmyTEMg4uJapkEv/oV9PBO9sPpyIBslQj6Zz91cxG7685C/b+LrTW+C05+Z5Yg4MotdqY3MxtfWoSKQ7CC2iXZDXtHwlTxFWMMS2RJ17LJ3lXubvDGGqv+QqG+6EnriDfcFDzkSnE3ANkR/0yBOtg2DZ2HKocyQetawiDsoXiWJYRBuriSUBAA/NxBti21G00w9RKpv0vHP8ds42pM3Z2Czqrpv1KrKQ0U11GIo/ikGQI31bS/6kA1ibRrLDYGCD+H1QQc7CoZDDu+8CL9IVVO5EFdkKrqeKM+2xLXY2JtwE65/3YR8V3Idv7kaWKK2hJn0KCacuBKONvPi8BDAB"}],"version":"0303","random":"a8f066fa82f9d8c6e0bc9efa5defce2468a114ab9b5cc9cbfed19d0ca89edbe5","selected_cipher_suite":"c030","compression_method":"00","session_ticket":""}},"reassembly_properties":{"reassembled":true},"ip":{"version":4,"ttl":128,"id":"a741"},"src_ip":"184.50.252.217","dst_ip":"192.168.113.237","protocol":6,"src_port":443,"dst_port":54678,"event_start":1565200340.268037} +{"dns":{"base64":"UvYBAAABAAAAAAAABnR1bWJscgNjb20AAAEAAQ=="},"ip":{"version":4,"ttl":64,"id":"d8d9"},"src_ip":"192.168.113.237","dst_ip":"192.168.113.2","protocol":17,"src_port":38828,"dst_port":53,"event_start":1565200340.902209} +{"dns":{"base64":"EKgBAAABAAAAAAAABnR1bWJscgNjb20AABwAAQ=="},"ip":{"version":4,"ttl":64,"id":"d8da"},"src_ip":"192.168.113.237","dst_ip":"192.168.113.2","protocol":17,"src_port":36002,"dst_port":53,"event_start":1565200340.902368} +{"dns":{"base64":"UvaBgAABAAMADQANBnR1bWJscgNjb20AAAEAAcAMAAEAAQAAAAUABEIGIR/ADAABAAEAAAAFAARCBiGfwAwAAQABAAAABQAEQgYgH8ATAAIAAQAAAAUAFAFhDGd0bGQtc2VydmVycwNuZXQAwBMAAgABAAAABQAEAWPAWsATAAIAAQAAAAUABAFiwFrAEwACAAEAAAAFAAQBZ8BawBMAAgABAAAABQAEAWzAWsATAAIAAQAAAAUABAFlwFrAEwACAAEAAAAFAAQBZsBawBMAAgABAAAABQAEAWvAWsATAAIAAQAAAAUABAFtwFrAEwACAAEAAAAFAAQBasBawBMAAgABAAAABQAEAWjAWsATAAIAAQAAAAUABAFkwFrAEwACAAEAAAAFAAQBacBawFgAAQABAAAABQAEwAUGHsCIAAEAAQAAAAUABMAhDh7AeAABAAEAAAAFAATAGlwewRgAAQABAAAABQAEwB9QHsC4AAEAAQAAAAUABMAMXh7AyAABAAEAAAAFAATAIzMewJgAAQABAAAABQAEwCpdHsEIAAEAAQAAAAUABMA2cB7BKAABAAEAAAAFAATAK6wewPgAAQABAAAABQAEwDBPHsDYAAEAAQAAAAUABMA0sh7AqAABAAEAAAAFAATAKaIewOgAAQABAAAABQAEwDdTHg=="},"ip":{"version":4,"ttl":128,"id":"a89c"},"src_ip":"192.168.113.2","dst_ip":"192.168.113.237","protocol":17,"src_port":53,"dst_port":38828,"event_start":1565200340.939499} +{"dns":{"base64":"EKiBgAABAAAAAQAABnR1bWJscgNjb20AABwAAcAMAAYAAQAAAAUAQQ1oaWRkZW4tbWFzdGVyBXlhaG9vwBMKaG9zdG1hc3Rlcgl5YWhvby1pbmPAE3hYufwAAHCAAAAcIAAJOoAAAAJY"},"ip":{"version":4,"ttl":128,"id":"a89d"},"src_ip":"192.168.113.2","dst_ip":"192.168.113.237","protocol":17,"src_port":53,"dst_port":36002,"event_start":1565200340.939528} +{"fingerprints":{"tcp":"tcp/(40)()(40)(faf0)((020405b4)(04)(08)(01)(030307))"},"tcp":{"seq":392931167,"timestamp":{"ts_val":4045860940}},"ip":{"version":4,"ttl":64,"id":"7e1e"},"src_ip":"192.168.113.237","dst_ip":"66.6.33.31","protocol":6,"src_port":36216,"dst_port":443,"event_start":1565200340.940202} +{"fingerprints":{"tcp_server":"tcp_server/(40)()(80)(faf0)((020405b4))"},"tcp_server":{"seq":2804185541},"ip":{"version":4,"ttl":128,"id":"a89e"},"src_ip":"66.6.33.31","dst_ip":"192.168.113.237","protocol":6,"src_port":443,"dst_port":36216,"event_start":1565200340.998341} +{"fingerprints":{"tls":"tls/(0303)(130213031301c02cc030009fcca9cca8ccaac02bc02f009ec024c028006bc023c0270067c00ac0140039c009c0130033009d009c003d003c0035002f00ff)((0000)(000b000403000102)(000a000c000a001d0017001e00190018)(0023)(0016)(0017)(000d0030002e040305030603080708080809080a080b080408050806040105010601030302030301020103020202040205020602)(002b0009080304030303020301)(002d00020101)(0033))"},"tls":{"client":{"version":"0303","random":"f3e36941f3b9de78888f757dcc4abe52b505e1e0d4969d30918666bfe72db22d","session_id":"c3f977b5ed385cd086530db06b2ac635a6581e0a678dac389f504e143398a04e","cipher_suites":"130213031301c02cc030009fcca9cca8ccaac02bc02f009ec024c028006bc023c0270067c00ac0140039c009c0130033009d009c003d003c0035002f00ff","compression_methods":"00","server_name":"tumblr.com","session_ticket":"","features":"[\"0303\",\"130213031301c02cc030009fcca9cca8ccaac02bc02f009ec024c028006bc023c0270067c00ac0140039c009c0130033009d009c003d003c0035002f00ff\",[[\"0000\",\"000d00000a74756d626c722e636f6d\"],[\"000b\",\"03000102\"],[\"000a\",\"000a001d0017001e00190018\"],[\"0023\",\"\"],[\"0016\",\"\"],[\"0017\",\"\"],[\"000d\",\"002e040305030603080708080809080a080b080408050806040105010601030302030301020103020202040205020602\"],[\"002b\",\"080304030303020301\"],[\"002d\",\"0101\"],[\"0033\",\"0024001d0020f611f1395aa86d5873ac4cabb4d73dfab00632a51acd49071910b276a71e1645\"]]]"}},"ip":{"version":4,"ttl":64,"id":"7e20"},"src_ip":"192.168.113.237","dst_ip":"66.6.33.31","protocol":6,"src_port":36216,"dst_port":443,"event_start":1565200340.998738} +{"fingerprints":{"tls_server":"tls_server/(0303)(cca8)((ff01)(0000)(000b000403000102)(0023)(0017))"},"tls":{"server":{"certs":[{"base64":"MIIGqTCCBZGgAwIBAgIQASwszwgUXWUqe7Pw5GbUaDANBgkqhkiG9w0BAQsFADBwMQswCQYDVQQGEwJVUzEVMBMGA1UEChMMRGlnaUNlcnQgSW5jMRkwFwYDVQQLExB3d3cuZGlnaWNlcnQuY29tMS8wLQYDVQQDEyZEaWdpQ2VydCBTSEEyIEhpZ2ggQXNzdXJhbmNlIFNlcnZlciBDQTAeFw0xOTA1MDkwMDAwMDBaFw0xOTExMDUxMjAwMDBaMGIxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRIwEAYDVQQHEwlTdW5ueXZhbGUxETAPBgNVBAoTCE9hdGggSW5jMRcwFQYDVQQDEw53d3cudHVtYmxyLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALSZIjnZx6K5GBdsUXl410/iEsj83gSu4XIHFdKVLmrsbhmc1C/Do2iY1leaRgyA5ERN4NNdAtB7TWr83d9qKFEP49X7lpLZdhineOXKmTVIabB3izePgTnulW7UJhduuMLS1GNsMRy0goc7ZKLMqdqRSXflNtf+SLMjYEh9RUysDpf3aayAFOS785nSAAyGXjMa+LeXQ59wBdXHqgcLPPpQo5RMFHSHwiA8Ls9TbM1Ni7vNOSQG7kndqbHAr05EoU3ICTqcuTJf4drUNx1e/FWwQL/6BOqSa9EntDqtHrTfwvAsTuX/M/TyEQ41TAKwLGve6NHSd1bjz40OnMDhu2MCAwEAAaOCA0swggNHMB8GA1UdIwQYMBaAFFFo/5CvAgd1PMzZZWRiohK4WXI7MB0GA1UdDgQWBBQVXsvCCVK7H1Meob7yyrm8GkI/CTB0BgNVHREEbTBrgg53d3cudHVtYmxyLmNvbYIOYXBpLnR1bWJsci5jb22CCnR1bWJsci5jb22CFGFwaS1odHRwMi50dW1ibHIuY29tghR3d3ctaHR0cDIudHVtYmxyLmNvbYIRc2VjdXJlLnR1bWJsci5jb20wDgYDVR0PAQH/BAQDAgWgMB0GA1UdJQQWMBQGCCsGAQUFBwMBBggrBgEFBQcDAjB1BgNVHR8EbjBsMDSgMqAwhi5odHRwOi8vY3JsMy5kaWdpY2VydC5jb20vc2hhMi1oYS1zZXJ2ZXItZzYuY3JsMDSgMqAwhi5odHRwOi8vY3JsNC5kaWdpY2VydC5jb20vc2hhMi1oYS1zZXJ2ZXItZzYuY3JsMEwGA1UdIARFMEMwNwYJYIZIAYb9bAEBMCowKAYIKwYBBQUHAgEWHGh0dHBzOi8vd3d3LmRpZ2ljZXJ0LmNvbS9DUFMwCAYGZ4EMAQICMIGDBggrBgEFBQcBAQR3MHUwJAYIKwYBBQUHMAGGGGh0dHA6Ly9vY3NwLmRpZ2ljZXJ0LmNvbTBNBggrBgEFBQcwAoZBaHR0cDovL2NhY2VydHMuZGlnaWNlcnQuY29tL0RpZ2lDZXJ0U0hBMkhpZ2hBc3N1cmFuY2VTZXJ2ZXJDQS5jcnQwDAYDVR0TAQH/BAIwADCCAQUGCisGAQQB1nkCBAIEgfYEgfMA8QB2ALvZ37wfinG1k5Qjl6qSe0c4V5UKq1LoGpCWZDaOHtGFAAABap313p0AAAQDAEcwRQIhANVofPFX5mQKVeRPr3rhJpf+JqY1DxDjR3LFOhTFPzaOAiA70OhjmYMCvYTP0f2PEv32f2G9O+tkNnprKd4NWOZMTwB3AHR+2oMxrTMQkSGcziVPQnDCv/1eQiAIxjc1eeYQe8xWAAABap313jkAAAQDAEgwRgIhAK3a3PtW8P12o8iv4n6MmPua4eK+iG2i1w4kucaYCFo+AiEAh2jZ1qxBSgCUn1DpTfzluyQvyRCbegb8E53FP6pFOcswDQYJKoZIhvcNAQELBQADggEBAE76XgXofG7wP8KIsddTu/2OIO3/9pKNrxdiarH6ijCl7A9ic9nKeNOjO9RIrhdmzPscailD7LVfTh4c/v68SAvJsy8nnnMzCG5mjar9tPsdowWyEvz1GyvflGQxez4NTz3mUkh9sSOyFxZs+DavihCsWvfBXPcrmX115hzd3LiDMvUliOKs3YHqzyvAdk8HkkmPEE9rF/xrzrHMeUwSkXVvG0T92nXJq/2cVUWzBNs9QuqWj3LsbX+lyqi3hJ9vRdQfM8g8OxrKMAoORrBiKdNCamlJ4AtETwuAFtUeqQUcwsPeR+TcJh/X7eWOSNvbCPxYn6JwGa/puKUTA6u/qmI="},{"base64":"MIIEsTCCA5mgAwIBAgIQBOHnpNxc8vNtwCtCuF0VnzANBgkqhkiG9w0BAQsFADBsMQswCQYDVQQGEwJVUzEVMBMGA1UEChMMRGlnaUNlcnQgSW5jMRkwFwYDVQQLExB3d3cuZGlnaWNlcnQuY29tMSswKQYDVQQDEyJEaWdpQ2VydCBIaWdoIEFzc3VyYW5jZSBFViBSb290IENBMB4XDTEzMTAyMjEyMDAwMFoXDTI4MTAyMjEyMDAwMFowcDELMAkGA1UEBhMCVVMxFTATBgNVBAoTDERpZ2lDZXJ0IEluYzEZMBcGA1UECxMQd3d3LmRpZ2ljZXJ0LmNvbTEvMC0GA1UEAxMmRGlnaUNlcnQgU0hBMiBIaWdoIEFzc3VyYW5jZSBTZXJ2ZXIgQ0EwggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQC24C/CJAbIbQRf1+8KZAayfSImZRauQkCbztyfn3YHPsMwVYcZuU+UDlqUH1VWtMICKq/QmO4LQNfE0DtyyBSe75CxEamu0si4QzrZCwvV1ZX1QK/IHe1NnF9Xt4ZQaJn1itrSxwUfqJfJ3KSxgoQtxq2lnMcZgqaFD15EWCo3j/018QsIJzJa9buLnqS9UdAn4t07QjOjBSjEuyjMmqwrIw14xnvmXnG3Sj4I+4G3FhahnSMSTeXXkgisdaScus0Xsh5ENWV/UyU50RwKmmMbGZJ0aAo3wsJSSMs5WqK24V3B3aAguCGikyZvFEohQcftbZvySC/zA/WiaJJTL17jAgMBAAGjggFJMIIBRTASBgNVHRMBAf8ECDAGAQH/AgEAMA4GA1UdDwEB/wQEAwIBhjAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwNAYIKwYBBQUHAQEEKDAmMCQGCCsGAQUFBzABhhhodHRwOi8vb2NzcC5kaWdpY2VydC5jb20wSwYDVR0fBEQwQjBAoD6gPIY6aHR0cDovL2NybDQuZGlnaWNlcnQuY29tL0RpZ2lDZXJ0SGlnaEFzc3VyYW5jZUVWUm9vdENBLmNybDA9BgNVHSAENjA0MDIGBFUdIAAwKjAoBggrBgEFBQcCARYcaHR0cHM6Ly93d3cuZGlnaWNlcnQuY29tL0NQUzAdBgNVHQ4EFgQUUWj/kK8CB3U8zNllZGKiErhZcjswHwYDVR0jBBgwFoAUsT7DaQP4v0cB1JgmGggC72NkK8MwDQYJKoZIhvcNAQELBQADggEBABiKlYkD5m3fXPwdaOpKj4PWUS+Na0QWnqxj9dJubISZi6qBcYRb7TROsLd5kinMLYBq8I4g4Xmk/gNHE+r1hspZcX30BJZr01lYPf7TMSVcGDiEo+afgv2MW5gxTs14nhr9hctJqvIni5ly/D6q1UEL2tU2ob8cbkdJf17ZSHwD2f2LSaCYJkJA69aSEaRkCldUxPUd1gJea6zuxICaEnL6VpPX/78whQYwvwt/Tv9XBZ0k7YXDK/umdaisLRbvfXknsuvCnQsH6qqF0wGjIChBWUMo0oHjqvbsezt3tkBigAVBRQHvFwY+3sAzm2fTYS5yh+Rp/BIAV0AecPUeybQ="}],"version":"0303","random":"ff0604f56f291dfe9f169a4ad21326e402de094a82de57577d15c03b562f76ab","selected_cipher_suite":"cca8","compression_method":"00","session_ticket":""}},"reassembly_properties":{"reassembled":true},"ip":{"version":4,"ttl":128,"id":"a8a2"},"src_ip":"66.6.33.31","dst_ip":"192.168.113.237","protocol":6,"src_port":443,"dst_port":36216,"event_start":1565200341.063940} +{"dns":{"base64":"3TUBAAABAAAAAAAAA3d3dwZ0dW1ibHIDY29tAAABAAE="},"ip":{"version":4,"ttl":64,"id":"d8e7"},"src_ip":"192.168.113.237","dst_ip":"192.168.113.2","protocol":17,"src_port":44906,"dst_port":53,"event_start":1565200341.199091} +{"dns":{"base64":"c3kBAAABAAAAAAAAA3d3dwZ0dW1ibHIDY29tAAAcAAE="},"ip":{"version":4,"ttl":64,"id":"d8e8"},"src_ip":"192.168.113.237","dst_ip":"192.168.113.2","protocol":17,"src_port":34581,"dst_port":53,"event_start":1565200341.199256} +{"dns":{"base64":"3TWBgAABAAMADQALA3d3dwZ0dW1ibHIDY29tAAABAAHADAAFAAEAAAAFABsFZWRnZTIEZ3ljcwFiCHlhaG9vZG5zA25ldADALAABAAEAAAAFAARFk1wOwCwAAQABAAAABQAERZNcDcBCAAIAAQAAAAUAEQFiDGd0bGQtc2VydmVyc8BCwEIAAgABAAAABQAEAWHAdcBCAAIAAQAAAAUABAFpwHXAQgACAAEAAAAFAAQBaMB1wEIAAgABAAAABQAEAWXAdcBCAAIAAQAAAAUABAFrwHXAQgACAAEAAAAFAAQBasB1wEIAAgABAAAABQAEAW3AdcBCAAIAAQAAAAUABAFkwHXAQgACAAEAAAAFAAQBZ8B1wEIAAgABAAAABQAEAWzAdcBCAAIAAQAAAAUABAFjwHXAQgACAAEAAAAFAAQBZsB1wJAAAQABAAAABQAEwAUGHsBzAAEAAQAAAAUABMAhDh7BMAABAAEAAAAFAATAGlwewQAAAQABAAAABQAEwB9QHsDAAAEAAQAAAAUABMAMXh7BQAABAAEAAAAFAATAIzMewRAAAQABAAAABQAEwCpdHsCwAAEAAQAAAAUABMA2cB7AoAABAAEAAAAFAATAK6wewOAAAQABAAAABQAEwDBPHsDQAAEAAQAAAAUABMA0sh4="},"ip":{"version":4,"ttl":128,"id":"a8a9"},"src_ip":"192.168.113.2","dst_ip":"192.168.113.237","protocol":17,"src_port":53,"dst_port":44906,"event_start":1565200341.229494} +{"dns":{"base64":"c3mBgAABAAMADQAKA3d3dwZ0dW1ibHIDY29tAAAcAAHADAAFAAEAAAAFABsFZWRnZTIEZ3ljcwFiCHlhaG9vZG5zA25ldADALAAcAAEAAAAFABAgAUmYABQIAAAAAAAAACAAwCwAHAABAAAABQAQIAFJmAAUCAAAAAAAAABAAMBCAAIAAQAAAAUAEQFqDGd0bGQtc2VydmVyc8BCwEIAAgABAAAABQAEAWvAjcBCAAIAAQAAAAUABAFtwI3AQgACAAEAAAAFAAQBbMCNwEIAAgABAAAABQAEAWPAjcBCAAIAAQAAAAUABAFiwI3AQgACAAEAAAAFAAQBYcCNwEIAAgABAAAABQAEAWbAjcBCAAIAAQAAAAUABAFkwI3AQgACAAEAAAAFAAQBacCNwEIAAgABAAAABQAEAWjAjcBCAAIAAQAAAAUABAFnwI3AQgACAAEAAAAFAAQBZcCNwPgAAQABAAAABQAEwAUGHsDoAAEAAQAAAAUABMAhDh7A2AABAAEAAAAFAATAGlwewRgAAQABAAAABQAEwB9QHsFYAAEAAQAAAAUABMAMXh7BCAABAAEAAAAFAATAIzMewUgAAQABAAAABQAEwCpdHsE4AAEAAQAAAAUABMA2cB7BKAABAAEAAAAFAATAK6wewIsAAQABAAAABQAEwDBPHg=="},"ip":{"version":4,"ttl":128,"id":"a8aa"},"src_ip":"192.168.113.2","dst_ip":"192.168.113.237","protocol":17,"src_port":53,"dst_port":34581,"event_start":1565200341.229511} +{"fingerprints":{"tcp":"tcp/(40)()(40)(faf0)((020405b4)(04)(08)(01)(030307))"},"tcp":{"seq":3511727651,"timestamp":{"ts_val":3976491827}},"ip":{"version":4,"ttl":64,"id":"6fa9"},"src_ip":"192.168.113.237","dst_ip":"69.147.92.13","protocol":6,"src_port":58334,"dst_port":443,"event_start":1565200341.230033} +{"fingerprints":{"tcp_server":"tcp_server/(40)()(80)(faf0)((020405b4))"},"tcp_server":{"seq":2461728365},"ip":{"version":4,"ttl":128,"id":"a8ac"},"src_ip":"69.147.92.13","dst_ip":"192.168.113.237","protocol":6,"src_port":443,"dst_port":58334,"event_start":1565200341.267442} +{"fingerprints":{"tls":"tls/(0303)(130213031301c02cc030009fcca9cca8ccaac02bc02f009ec024c028006bc023c0270067c00ac0140039c009c0130033009d009c003d003c0035002f00ff)((0000)(000b000403000102)(000a000c000a001d0017001e00190018)(0023)(0016)(0017)(000d0030002e040305030603080708080809080a080b080408050806040105010601030302030301020103020202040205020602)(002b0009080304030303020301)(002d00020101)(0033))"},"tls":{"client":{"version":"0303","random":"4118de8ef48eff8e4bb1a68d3e68681b07fcdaaba85939f8b5ab5589a46d7a08","session_id":"ca3478f882fcae5a7e2679a164f952c87560e8e2b9f7680289cb310afe2bd515","cipher_suites":"130213031301c02cc030009fcca9cca8ccaac02bc02f009ec024c028006bc023c0270067c00ac0140039c009c0130033009d009c003d003c0035002f00ff","compression_methods":"00","server_name":"www.tumblr.com","session_ticket":"","features":"[\"0303\",\"130213031301c02cc030009fcca9cca8ccaac02bc02f009ec024c028006bc023c0270067c00ac0140039c009c0130033009d009c003d003c0035002f00ff\",[[\"0000\",\"001100000e7777772e74756d626c722e636f6d\"],[\"000b\",\"03000102\"],[\"000a\",\"000a001d0017001e00190018\"],[\"0023\",\"\"],[\"0016\",\"\"],[\"0017\",\"\"],[\"000d\",\"002e040305030603080708080809080a080b080408050806040105010601030302030301020103020202040205020602\"],[\"002b\",\"080304030303020301\"],[\"002d\",\"0101\"],[\"0033\",\"0024001d0020ad5a01ad30edf3e10a5e0cdbc0baca88c83e122dae2bce2570a12a52cea94126\"]]]"}},"ip":{"version":4,"ttl":64,"id":"6fab"},"src_ip":"192.168.113.237","dst_ip":"69.147.92.13","protocol":6,"src_port":58334,"dst_port":443,"event_start":1565200341.267702} +{"fingerprints":{"tls_server":"tls_server/(0303)(1303)((002b00020304)(0033))"},"tls":{"server":{"version":"0303","random":"d716942f79133fd238a9c5f656bf3ad2f9ea74c360c4062a9d383792d4de4e5f","selected_cipher_suite":"1303","compression_method":"00"}},"ip":{"version":4,"ttl":128,"id":"a8ae"},"src_ip":"69.147.92.13","dst_ip":"192.168.113.237","protocol":6,"src_port":443,"dst_port":58334,"event_start":1565200341.309324} +{"dns":{"base64":"6IUBAAABAAAAAAAAB21vemlsbGEDb3JnAAABAAE="},"ip":{"version":4,"ttl":64,"id":"d8f5"},"src_ip":"192.168.113.237","dst_ip":"192.168.113.2","protocol":17,"src_port":46873,"dst_port":53,"event_start":1565200341.589698} +{"dns":{"base64":"W8IBAAABAAAAAAAAB21vemlsbGEDb3JnAAAcAAE="},"ip":{"version":4,"ttl":64,"id":"d8f6"},"src_ip":"192.168.113.237","dst_ip":"192.168.113.2","protocol":17,"src_port":34583,"dst_port":53,"event_start":1565200341.589880} +{"dns":{"base64":"W8KBgAABAAAAAQAAB21vemlsbGEDb3JnAAAcAAHADAAGAAEAAAAFAEQJaW5mb2Jsb3gxB3ByaXZhdGUEbWRjMgdtb3ppbGxhA2NvbQAJc3lzYWRtaW5zwAx4WBy8AAAAtAAAALQAEnUAAAAAPA=="},"ip":{"version":4,"ttl":128,"id":"a8fa"},"src_ip":"192.168.113.2","dst_ip":"192.168.113.237","protocol":17,"src_port":53,"dst_port":34583,"event_start":1565200341.628360} +{"dns":{"base64":"6IWBgAABAAEABgAKB21vemlsbGEDb3JnAAABAAHADAABAAEAAAAFAAQ/9dDDwBQAAgABAAAABQAZAmMwA29yZwthZmlsaWFzLW5zdARpbmZvAMAUAAIAAQAAAAUABQJhMMA8wBQAAgABAAAABQAVAmIyA29yZwthZmlsaWFzLW5zdMAUwBQAAgABAAAABQAFAmIwwHLAFAACAAEAAAAFAAUCYTLAPMAUAAIAAQAAAAUABQJkMMBywF4AAQABAAAABQAExxM4AcChAAEAAQAAAAUABMf5cAHAOQABAAEAAAAFAATHEzUBwLIAAQABAAAABQAExxM5AcBeABwAAQAAAAUAECABBQAADgAAAAAAAAAAAAHAoQAcAAEAAAAFABAgAQUAAEAAAAAAAAAAAAABwJAAHAABAAAABQAQIAEFAAAMAAAAAAAAAAAAAcBvABwAAQAAAAUAECABBQAASAAAAAAAAAAAAAHAOQAcAAEAAAAFABAgAQUAAAsAAAAAAAAAAAABwLIAHAABAAAABQAQIAEFAAAPAAAAAAAAAAAAAQ=="},"ip":{"version":4,"ttl":128,"id":"a8fb"},"src_ip":"192.168.113.2","dst_ip":"192.168.113.237","protocol":17,"src_port":53,"dst_port":46873,"event_start":1565200341.630639} +{"fingerprints":{"tcp":"tcp/(40)()(40)(faf0)((020405b4)(04)(08)(01)(030307))"},"tcp":{"seq":3066567403,"timestamp":{"ts_val":254554759}},"ip":{"version":4,"ttl":64,"id":"c305"},"src_ip":"192.168.113.237","dst_ip":"63.245.208.195","protocol":6,"src_port":47714,"dst_port":443,"event_start":1565200341.630930} +{"fingerprints":{"tcp_server":"tcp_server/(40)()(80)(faf0)((020405b4))"},"tcp_server":{"seq":4292743777},"ip":{"version":4,"ttl":128,"id":"a8fc"},"src_ip":"63.245.208.195","dst_ip":"192.168.113.237","protocol":6,"src_port":443,"dst_port":47714,"event_start":1565200341.735879} +{"fingerprints":{"tls":"tls/(0303)(130213031301c02cc030009fcca9cca8ccaac02bc02f009ec024c028006bc023c0270067c00ac0140039c009c0130033009d009c003d003c0035002f00ff)((0000)(000b000403000102)(000a000c000a001d0017001e00190018)(0023)(0016)(0017)(000d0030002e040305030603080708080809080a080b080408050806040105010601030302030301020103020202040205020602)(002b0009080304030303020301)(002d00020101)(0033))"},"tls":{"client":{"version":"0303","random":"d415c3d862df77f0055c018b411a63bd2c9589118008056ff3eca32886fac0aa","session_id":"5003ed3c29fee412f533a7d0261c415b55682f5c9ba72f7d882b453a3809e796","cipher_suites":"130213031301c02cc030009fcca9cca8ccaac02bc02f009ec024c028006bc023c0270067c00ac0140039c009c0130033009d009c003d003c0035002f00ff","compression_methods":"00","server_name":"mozilla.org","session_ticket":"","features":"[\"0303\",\"130213031301c02cc030009fcca9cca8ccaac02bc02f009ec024c028006bc023c0270067c00ac0140039c009c0130033009d009c003d003c0035002f00ff\",[[\"0000\",\"000e00000b6d6f7a696c6c612e6f7267\"],[\"000b\",\"03000102\"],[\"000a\",\"000a001d0017001e00190018\"],[\"0023\",\"\"],[\"0016\",\"\"],[\"0017\",\"\"],[\"000d\",\"002e040305030603080708080809080a080b080408050806040105010601030302030301020103020202040205020602\"],[\"002b\",\"080304030303020301\"],[\"002d\",\"0101\"],[\"0033\",\"0024001d00204c83d14095f998bc09e0a0f2875617fa5ee77d4e35e7d91e018ed8ae3e8dfc68\"]]]"}},"ip":{"version":4,"ttl":64,"id":"c307"},"src_ip":"192.168.113.237","dst_ip":"63.245.208.195","protocol":6,"src_port":47714,"dst_port":443,"event_start":1565200341.736152} +{"fingerprints":{"tls_server":"tls_server/(0303)(c030)((0000)(ff01)(000b00020100))"},"tls":{"server":{"certs":[{"base64":"MIIGvjCCBaagAwIBAgIQAQkZedZ/mwORduNQcrUeHTANBgkqhkiG9w0BAQsFADBNMQswCQYDVQQGEwJVUzEVMBMGA1UEChMMRGlnaUNlcnQgSW5jMScwJQYDVQQDEx5EaWdpQ2VydCBTSEEyIFNlY3VyZSBTZXJ2ZXIgQ0EwHhcNMTgxMTA5MDAwMDAwWhcNMjAxMTEzMTIwMDAwWjB+MQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNTW91bnRhaW4gVmlldzEbMBkGA1UEChMSTW96aWxsYSBGb3VuZGF0aW9uMQ8wDQYDVQQLEwZXZWJPcHMxFDASBgNVBAMTC21vemlsbGEub3JnMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEArcZLC5z6y00SWoKmAWDDKPBhLyv3TX5dc6cwxXb0FxPJXJshKF39TKWisDqAU+SZ+31vVbVOwqPzcFJqRYb/38XvWzgOXS5ssNk+v+ec651M1jmFKFg0nvFDLFTaxmKVUr2chlyTHarWyFGv20B18RIj/gWFyc4GDHs+QK4IeUMQCTCUen9TYul6nJBpYtWi1lZijRYvtpZsAGiGpI+fdZxPcDl+4sXHJrNOpnpZSuvwo7OltOIoUDpxBXAtdMqQ1jyKEiV5TsBg/rHl49zpkepLhPML/i+H3HN3p45cTsLz8L7ZrO+XwmWzxj3Zl65IXVTDsgrWlSwn9HcGNz5oaQIDAQABo4IDZzCCA2MwHwYDVR0jBBgwFoAUD4BhHIIxYdUvKOeNRji0LOHG2eIwHQYDVR0OBBYEFCMzT98RYeCKouko3+wezZMuuXYJMCcGA1UdEQQgMB6CC21vemlsbGEub3Jngg93d3cubW96aWxsYS5vcmcwDgYDVR0PAQH/BAQDAgWgMB0GA1UdJQQWMBQGCCsGAQUFBwMBBggrBgEFBQcDAjBrBgNVHR8EZDBiMC+gLaArhilodHRwOi8vY3JsMy5kaWdpY2VydC5jb20vc3NjYS1zaGEyLWc2LmNybDAvoC2gK4YpaHR0cDovL2NybDQuZGlnaWNlcnQuY29tL3NzY2Etc2hhMi1nNi5jcmwwTAYDVR0gBEUwQzA3BglghkgBhv1sAQEwKjAoBggrBgEFBQcCARYcaHR0cHM6Ly93d3cuZGlnaWNlcnQuY29tL0NQUzAIBgZngQwBAgIwfAYIKwYBBQUHAQEEcDBuMCQGCCsGAQUFBzABhhhodHRwOi8vb2NzcC5kaWdpY2VydC5jb20wRgYIKwYBBQUHMAKGOmh0dHA6Ly9jYWNlcnRzLmRpZ2ljZXJ0LmNvbS9EaWdpQ2VydFNIQTJTZWN1cmVTZXJ2ZXJDQS5jcnQwDAYDVR0TAQH/BAIwADCCAYAGCisGAQQB1nkCBAIEggFwBIIBbAFqAHYApLkJkLQYWBSHuxOizGdwCjw1mAT5G9+443fNDsgN3BAAAAFm+VxxQwAABAMARzBFAiEAtVpz1SXULqMJz96+u77Rymgzr1GgIDBlRsTOQ5r04MsCIFNI2JfrcBFjJIgf5F7nJ2UdRy9aBZmjzvd0cmfnyKKNAHcAh3W/51l8+IxDmV+9827/Vo1HVjb/SrVgwbTq/16ggw8AAAFm+VxyHgAABAMASDBGAiEAtYF/lHwWUOJO/4PCvs6cillJJdAH7KU1RKZPX9Blwq4CIQCwDhKgUgZFub8buET0KHfJ0Zcg99G/kAD3REU2c7nKhwB3ALvZ37wfinG1k5Qjl6qSe0c4V5UKq1LoGpCWZDaOHtGFAAABZvlcclgAAAQDAEgwRgIhANIUfGM+SGSXMCaZoSBWz9Yi1mZCdWVvqPuexLMBNB5dAiEA/Jit+3955q9R5kBaPhsx+wVKn2usHjmvkjkFq5Iqy+wwDQYJKoZIhvcNAQELBQADggEBAEr076DEJq0tbxoqT53jHlIl42pf1oyCdqy6uORlNqh7tMmPDg29yb3Uq9T/7YuZ6cfEEftSnJSS2LFAccBcNLEHViIlM/3yCpuy3TKKhQ4+q3l8GHqT659JJqCEB7I6VtbuCDWBPq3wRrc37MRTVAhDlAhbaN6UjAjsaterNY4jXfHfdV9EUdadJSw0LNGk8qFeW/+IAuIYPm7qhOgxWM7VD+FT+4V3DlT0SSbDwXosBIbZqwP20/TNr2fyX3b+dpHaHxAkCof679iCS+TxVpRgm8yMFOLWG2Mok51OKzbhwKQv90Qm2QODmYPazftz0YoYtVxDmMCYUmkGlQK/Sqg="},{"base64":"MIIElDCCA3ygAwIBAgIQAf2j627KdciIQ4tyS8+8kTANBgkqhkiG9w0BAQsFADBhMQswCQYDVQQGEwJVUzEVMBMGA1UEChMMRGlnaUNlcnQgSW5jMRkwFwYDVQQLExB3d3cuZGlnaWNlcnQuY29tMSAwHgYDVQQDExdEaWdpQ2VydCBHbG9iYWwgUm9vdCBDQTAeFw0xMzAzMDgxMjAwMDBaFw0yMzAzMDgxMjAwMDBaME0xCzAJBgNVBAYTAlVTMRUwEwYDVQQKEwxEaWdpQ2VydCBJbmMxJzAlBgNVBAMTHkRpZ2lDZXJ0IFNIQTIgU2VjdXJlIFNlcnZlciBDQTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANyuWJBNwcQwFZA1W248ghX1LFy949v/cUP6ZCWA1O4Yok3wZtAKc24RmDYXZK83nf36QYSvx6+M/hpzTc8zl5CilodTgyu5pnVILR1WN3vaMTIa16yrBvSqXUu3R0bdKpPDkC55gIDvEwRqFDu1m5K+wgdlTvza/P96rtxcflUxDOg5B6TXvi/TC2rSsd9f/ld0Uzs1gN2ujkSYs58O09rg1/RrKatEp0tYhG2SS4HD2nOLEpdIkARFdRrdNzGXkujNVA075ME/OV4uuPNcfhCOhkEAjUVmR7ChZc6gqikJTvOX6+guqw9ypzAO+sf0/RR3w6RbKFfCs/mC/bdFWJsCAwEAAaOCAVowggFWMBIGA1UdEwEB/wQIMAYBAf8CAQAwDgYDVR0PAQH/BAQDAgGGMDQGCCsGAQUFBwEBBCgwJjAkBggrBgEFBQcwAYYYaHR0cDovL29jc3AuZGlnaWNlcnQuY29tMHsGA1UdHwR0MHIwN6A1oDOGMWh0dHA6Ly9jcmwzLmRpZ2ljZXJ0LmNvbS9EaWdpQ2VydEdsb2JhbFJvb3RDQS5jcmwwN6A1oDOGMWh0dHA6Ly9jcmw0LmRpZ2ljZXJ0LmNvbS9EaWdpQ2VydEdsb2JhbFJvb3RDQS5jcmwwPQYDVR0gBDYwNDAyBgRVHSAAMCowKAYIKwYBBQUHAgEWHGh0dHBzOi8vd3d3LmRpZ2ljZXJ0LmNvbS9DUFMwHQYDVR0OBBYEFA+AYRyCMWHVLyjnjUY4tCzhxtniMB8GA1UdIwQYMBaAFAPeUDVW0Uy7ZvCj4hsbw5eyPdFVMA0GCSqGSIb3DQEBCwUAA4IBAQAjPt9L0jFCpbZ+QlwaRMxp0Wi0XUvgBCFsS+JtzLHgl4+mUwnNqipl5TlPHoOlblyYoiQm5vuh7ZPHLgLGTUq/sELfeNqzqPlt/yGFUzZgTHbO7Djc1lGA8MXW5dRNJ2Srm8c+cftIl7gzbckTB+6WohsYFfZcTEDts8Ls/3HB40f/1LkAtDdC2iDJ6m6K7hQGrn2iWZiIqBtvLfTyyRRfJs8sjX7tN8Cp1Tm5gr8ZDOo0rwAhaPitc+LJMto4JQtV05od8GiG7S5BNO98pVAdvzr508EIDObtHopYJeS4d60tbvVS3bR0j6tJLp07kzQoH3jOlOrHvdPJbRzeXDLz"}],"version":"0303","random":"5d4b0fd5aa4d1e2a6546fe2906a39dbab6e16e5aa3d5577531aed21e8d30c518","selected_cipher_suite":"c030","compression_method":"00"}},"reassembly_properties":{"reassembled":true},"ip":{"version":4,"ttl":128,"id":"a900"},"src_ip":"63.245.208.195","dst_ip":"192.168.113.237","protocol":6,"src_port":443,"dst_port":47714,"event_start":1565200341.846619} +{"dns":{"base64":"NKIBAAABAAAAAAAAA3d3dwdtb3ppbGxhA29yZwAAAQAB"},"ip":{"version":4,"ttl":64,"id":"d916"},"src_ip":"192.168.113.237","dst_ip":"192.168.113.2","protocol":17,"src_port":59091,"dst_port":53,"event_start":1565200342.063360} +{"dns":{"base64":"0Y0BAAABAAAAAAAAA3d3dwdtb3ppbGxhA29yZwAAHAAB"},"ip":{"version":4,"ttl":64,"id":"d917"},"src_ip":"192.168.113.237","dst_ip":"192.168.113.2","protocol":17,"src_port":32866,"dst_port":53,"event_start":1565200342.063596} +{"dns":{"base64":"NKKBgAABAAMABQAJA3d3dwdtb3ppbGxhA29yZwAAAQABwAwABQABAAAABQAkA3d3dwdtb3ppbGxhA29yZwNjZG4KY2xvdWRmbGFyZQNuZXQAwC0AAQABAAAABQAEaBAoAsAtAAEAAQAAAAUABGgQKQLAQQACAAEAAAAFAAYDbnM1wEHAQQACAAEAAAAFAAYDbnMywEHAQQACAAEAAAAFAAYDbnMzwEHAQQACAAEAAAAFAAYDbnM0wEHAQQACAAEAAAAFAAYDbnMxwEHAxQABAAEAAAAFAASt9TsfwI8AAQABAAAABQAExineg8ChAAEAAQAAAAUABMYp3h/AfQABAAEAAAAFAATGKd8fwMUAHAABAAAABQAQJADLACBJAAEAAAAArfU7H8CPABwAAQAAAAUAECQAywAgSQABAAAAAMYp3oPAoQAcAAEAAAAFABAkAMsAIEkAAQAAAADGKd4fwLMAHAABAAAABQAQJADLACBJAAEAAAAAxinfg8B9ABwAAQAAAAUAECQAywAgSQABAAAAAMYp3x8="},"ip":{"version":4,"ttl":128,"id":"a908"},"src_ip":"192.168.113.2","dst_ip":"192.168.113.237","protocol":17,"src_port":53,"dst_port":59091,"event_start":1565200342.097632} +{"dns":{"base64":"0Y2BgAABAAMABQAJA3d3dwdtb3ppbGxhA29yZwAAHAABwAwABQABAAAABQAkA3d3dwdtb3ppbGxhA29yZwNjZG4KY2xvdWRmbGFyZQNuZXQAwC0AHAABAAAABQAQJgZHAAAAAAAAAAAAaBAoAsAtABwAAQAAAAUAECYGRwAAAAAAAAAAAGgQKQLAQQACAAEAAAAFAAYDbnMywEHAQQACAAEAAAAFAAYDbnM0wEHAQQACAAEAAAAFAAYDbnMxwEHAQQACAAEAAAAFAAYDbnMzwEHAQQACAAEAAAAFAAYDbnM1wEHAuQABAAEAAAAFAASt9TsfwJUAAQABAAAABQAExineg8DLAAEAAQAAAAUABMYp3h/A3QABAAEAAAAFAATGKd8fwLkAHAABAAAABQAQJADLACBJAAEAAAAArfU7H8CVABwAAQAAAAUAECQAywAgSQABAAAAAMYp3oPAywAcAAEAAAAFABAkAMsAIEkAAQAAAADGKd4fwKcAHAABAAAABQAQJADLACBJAAEAAAAAxinfg8DdABwAAQAAAAUAECQAywAgSQABAAAAAMYp3x8="},"ip":{"version":4,"ttl":128,"id":"a909"},"src_ip":"192.168.113.2","dst_ip":"192.168.113.237","protocol":17,"src_port":53,"dst_port":32866,"event_start":1565200342.097885} +{"fingerprints":{"tcp":"tcp/(40)()(40)(faf0)((020405b4)(04)(08)(01)(030307))"},"tcp":{"seq":1461850720,"timestamp":{"ts_val":3803419657}},"ip":{"version":4,"ttl":64,"id":"c803"},"src_ip":"192.168.113.237","dst_ip":"104.16.41.2","protocol":6,"src_port":38792,"dst_port":443,"event_start":1565200342.098302} +{"fingerprints":{"tcp_server":"tcp_server/(40)()(80)(faf0)((020405b4))"},"tcp_server":{"seq":3370518291},"ip":{"version":4,"ttl":128,"id":"a90a"},"src_ip":"104.16.41.2","dst_ip":"192.168.113.237","protocol":6,"src_port":443,"dst_port":38792,"event_start":1565200342.138175} +{"fingerprints":{"tls":"tls/(0303)(130213031301c02cc030009fcca9cca8ccaac02bc02f009ec024c028006bc023c0270067c00ac0140039c009c0130033009d009c003d003c0035002f00ff)((0000)(000b000403000102)(000a000c000a001d0017001e00190018)(0023)(0016)(0017)(000d0030002e040305030603080708080809080a080b080408050806040105010601030302030301020103020202040205020602)(002b0009080304030303020301)(002d00020101)(0033))"},"tls":{"client":{"version":"0303","random":"33c1b9a51fa3945856f4afadd7e116ddacda10fe480e182f62d9ef1ff9bed7c8","session_id":"9d2df1ec106a1b7ec971785f0a7b284808e26343051f4bcd145da87b21ea0d3d","cipher_suites":"130213031301c02cc030009fcca9cca8ccaac02bc02f009ec024c028006bc023c0270067c00ac0140039c009c0130033009d009c003d003c0035002f00ff","compression_methods":"00","server_name":"www.mozilla.org","session_ticket":"","features":"[\"0303\",\"130213031301c02cc030009fcca9cca8ccaac02bc02f009ec024c028006bc023c0270067c00ac0140039c009c0130033009d009c003d003c0035002f00ff\",[[\"0000\",\"001200000f7777772e6d6f7a696c6c612e6f7267\"],[\"000b\",\"03000102\"],[\"000a\",\"000a001d0017001e00190018\"],[\"0023\",\"\"],[\"0016\",\"\"],[\"0017\",\"\"],[\"000d\",\"002e040305030603080708080809080a080b080408050806040105010601030302030301020103020202040205020602\"],[\"002b\",\"080304030303020301\"],[\"002d\",\"0101\"],[\"0033\",\"0024001d0020dc82de30b71e57ebd080feb0abff1a3d9dc81e225810fb59fe5fbfe974ce7156\"]]]"}},"ip":{"version":4,"ttl":64,"id":"c805"},"src_ip":"192.168.113.237","dst_ip":"104.16.41.2","protocol":6,"src_port":38792,"dst_port":443,"event_start":1565200342.138433} +{"fingerprints":{"tls_server":"tls_server/(0303)(1302)((0033)(002b00020304))"},"tls":{"server":{"version":"0303","random":"1e2c3b7c8250fb23611c60dcf4ebb780d6587277bd6e468ee3ebc8d946a44705","selected_cipher_suite":"1302","compression_method":"00"}},"ip":{"version":4,"ttl":128,"id":"a90c"},"src_ip":"104.16.41.2","dst_ip":"192.168.113.237","protocol":6,"src_port":443,"dst_port":38792,"event_start":1565200342.192345} +{"dns":{"base64":"EkYBAAABAAAAAAAABmZsaWNrcgNjb20AAAEAAQ=="},"ip":{"version":4,"ttl":64,"id":"d937"},"src_ip":"192.168.113.237","dst_ip":"192.168.113.2","protocol":17,"src_port":47017,"dst_port":53,"event_start":1565200342.409482} +{"dns":{"base64":"kFIBAAABAAAAAAAABmZsaWNrcgNjb20AABwAAQ=="},"ip":{"version":4,"ttl":64,"id":"d938"},"src_ip":"192.168.113.237","dst_ip":"192.168.113.2","protocol":17,"src_port":52389,"dst_port":53,"event_start":1565200342.409653} +{"dns":{"base64":"EkaBgAABAAEADQAOBmZsaWNrcgNjb20AAAEAAcAMAAEAAQAAAAUABGNU1/LAEwACAAEAAAAFABQBZAxndGxkLXNlcnZlcnMDbmV0AMATAAIAAQAAAAUABAFnwDrAEwACAAEAAAAFAAQBbMA6wBMAAgABAAAABQAEAWnAOsATAAIAAQAAAAUABAFtwDrAEwACAAEAAAAFAAQBZsA6wBMAAgABAAAABQAEAWrAOsATAAIAAQAAAAUABAFrwDrAEwACAAEAAAAFAAQBYsA6wBMAAgABAAAABQAEAWXAOsATAAIAAQAAAAUABAFjwDrAEwACAAEAAAAFAAQBaMA6wBMAAgABAAAABQAEAWHAOsEIAAEAAQAAAAUABMAFBh7AyAABAAEAAAAFAATAIQ4ewOgAAQABAAAABQAEwBpcHsA4AAEAAQAAAAUABMAfUB7A2AABAAEAAAAFAATADF4ewJgAAQABAAAABQAEwCMzHsBYAAEAAQAAAAUABMAqXR7A+AABAAEAAAAFAATANnAewHgAAQABAAAABQAEwCusHsCoAAEAAQAAAAUABMAwTx7AuAABAAEAAAAFAATANLIewGgAAQABAAAABQAEwCmiHsCIAAEAAQAAAAUABMA3Ux7BCAAcAAEAAAAFABAgAQUDqD4AAAAAAAAAAgAw"},"ip":{"version":4,"ttl":128,"id":"a99d"},"src_ip":"192.168.113.2","dst_ip":"192.168.113.237","protocol":17,"src_port":53,"dst_port":47017,"event_start":1565200342.447554} +{"dns":{"base64":"kFKBgAABAAAAAQAABmZsaWNrcgNjb20AABwAAcAMAAYAAQAAAAUARQZucy01NzMJYXdzZG5zLTA3A25ldAARYXdzZG5zLWhvc3RtYXN0ZXIGYW1hem9uwBMAAAABAAAcIAAAA4QAEnUAAAFRgA=="},"ip":{"version":4,"ttl":128,"id":"a99e"},"src_ip":"192.168.113.2","dst_ip":"192.168.113.237","protocol":17,"src_port":53,"dst_port":52389,"event_start":1565200342.447574} +{"fingerprints":{"tcp":"tcp/(40)()(40)(faf0)((020405b4)(04)(08)(01)(030307))"},"tcp":{"seq":53984870,"timestamp":{"ts_val":3957416442}},"ip":{"version":4,"ttl":64,"id":"64dc"},"src_ip":"192.168.113.237","dst_ip":"99.84.215.242","protocol":6,"src_port":56402,"dst_port":443,"event_start":1565200342.447924} +{"fingerprints":{"tcp_server":"tcp_server/(40)()(80)(faf0)((020405b4))"},"tcp_server":{"seq":2009727413},"ip":{"version":4,"ttl":128,"id":"a99f"},"src_ip":"99.84.215.242","dst_ip":"192.168.113.237","protocol":6,"src_port":443,"dst_port":56402,"event_start":1565200342.493006} +{"fingerprints":{"tls":"tls/(0303)(130213031301c02cc030009fcca9cca8ccaac02bc02f009ec024c028006bc023c0270067c00ac0140039c009c0130033009d009c003d003c0035002f00ff)((0000)(000b000403000102)(000a000c000a001d0017001e00190018)(0023)(0016)(0017)(000d0030002e040305030603080708080809080a080b080408050806040105010601030302030301020103020202040205020602)(002b0009080304030303020301)(002d00020101)(0033))"},"tls":{"client":{"version":"0303","random":"aeca6f28bc7439c04a55d2c06ca39956427031bf9a1a91e3c91e7799728cfb24","session_id":"b7f0318ee15f190afdba6140a45baeb931cb1698a5d67709766991984a090da6","cipher_suites":"130213031301c02cc030009fcca9cca8ccaac02bc02f009ec024c028006bc023c0270067c00ac0140039c009c0130033009d009c003d003c0035002f00ff","compression_methods":"00","server_name":"flickr.com","session_ticket":"","features":"[\"0303\",\"130213031301c02cc030009fcca9cca8ccaac02bc02f009ec024c028006bc023c0270067c00ac0140039c009c0130033009d009c003d003c0035002f00ff\",[[\"0000\",\"000d00000a666c69636b722e636f6d\"],[\"000b\",\"03000102\"],[\"000a\",\"000a001d0017001e00190018\"],[\"0023\",\"\"],[\"0016\",\"\"],[\"0017\",\"\"],[\"000d\",\"002e040305030603080708080809080a080b080408050806040105010601030302030301020103020202040205020602\"],[\"002b\",\"080304030303020301\"],[\"002d\",\"0101\"],[\"0033\",\"0024001d0020492805c6e5f0f63bd0d377bba3bb33f0870424c1e584cebe7c0dc752e1b84137\"]]]"}},"ip":{"version":4,"ttl":64,"id":"64de"},"src_ip":"192.168.113.237","dst_ip":"99.84.215.242","protocol":6,"src_port":56402,"dst_port":443,"event_start":1565200342.493276} +{"fingerprints":{"tls_server":"tls_server/(0303)(c02f)((0000)(ff01)(000b000403000102)(0023))"},"tls":{"server":{"certs":[{"base64":"MIIFdTCCBF2gAwIBAgIQDt4YzuELQpTapoK7bNnpZjANBgkqhkiG9w0BAQsFADBGMQswCQYDVQQGEwJVUzEPMA0GA1UEChMGQW1hem9uMRUwEwYDVQQLEwxTZXJ2ZXIgQ0EgMUIxDzANBgNVBAMTBkFtYXpvbjAeFw0xOTA3MDIwMDAwMDBaFw0yMDA4MDIxMjAwMDBaMBUxEzARBgNVBAMTCmZsaWNrci5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDZ7uaOoNvCN+/ert5b3wZh0CGCmd165UwVC3B1pgEhnt1iyUvM6xczMpkSTxc9w5gvPa/Ne1GPyGOHuY66z9XW50w+Sxjiykbceu+0yYRutkDPv8BhtqKBZgxPJI/3XBvVPyuHQS36IPy+Wjl5EULe9i2KmJMyJfnyE1i7Sb6y4TSk0U4TNi7MGJppXb2e33cgxetihDu00KADE27bXcEWTMstcfBLwdG5/X4x2z/owEvDKNvtolO6SoGwgwQ4l83smKWytETJCljGDTQYnW5SAsW0qy4s1SRf8Tfw+rpETg0muMt6s+satyHzpjoGaXohkDjRnATtx1+J21C3QE9nAgMBAAGjggKOMIICijAfBgNVHSMEGDAWgBRZpGYGUqB7lZI8o5QHJ5Z0W/k90DAdBgNVHQ4EFgQUSWmklGLUX9CtIPn/1pCbKBIdUEUwLAYDVR0RBCUwI4IKZmxpY2tyLmNvbYIHZmxpYy5rcoIMKi5mbGlja3IuY29tMA4GA1UdDwEB/wQEAwIFoDAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwOwYDVR0fBDQwMjAwoC6gLIYqaHR0cDovL2NybC5zY2ExYi5hbWF6b250cnVzdC5jb20vc2NhMWIuY3JsMCAGA1UdIAQZMBcwCwYJYIZIAYb9bAECMAgGBmeBDAECATB1BggrBgEFBQcBAQRpMGcwLQYIKwYBBQUHMAGGIWh0dHA6Ly9vY3NwLnNjYTFiLmFtYXpvbnRydXN0LmNvbTA2BggrBgEFBQcwAoYqaHR0cDovL2NydC5zY2ExYi5hbWF6b250cnVzdC5jb20vc2NhMWIuY3J0MAwGA1UdEwEB/wQCMAAwggEFBgorBgEEAdZ5AgQCBIH2BIHzAPEAdwCkuQmQtBhYFIe7E6LMZ3AKPDWYBPkb37jjd80OyA3cEAAAAWuzwcABAAAEAwBIMEYCIQDVms5k3rQNRh/BDGWUbIgaznl1rFWhhS2mbijASsTlWgIhAJLUcmNRZgbp9oseu+zUDHDGUV05trWyejCkYqeMf89zAHYAh3W/51l8+IxDmV+9827/Vo1HVjb/SrVgwbTq/16ggw8AAAFrs8HAUQAABAMARzBFAiEA1dWKmUVBHr1IKCuT5BdfpjdOwLvNn1JfK3AF34iAltMCICPBNPQBQy0fgbTwN9oTwXHesKMl4CbyyTOuzkJuuqPgMA0GCSqGSIb3DQEBCwUAA4IBAQBKYdDCdJU5SY1BejLwpgbyfrisQ7VfzHi0IMaKwskPC9YBIO2AvdYJCcIutNcyCukriQDkYeUinsXYmtZb4B4XLto/XP2lqn9pNqBxS6CPKr7DmPy6SpU5RcYWHrKLGvjM4WA2GSD0nabz/yS7Mm+D+txilKh8pwpVMgYPS2AMdX2pnFFWCN58DT6zyt0isjtFoR773gByvPP8W+B4qBqKVdxhtdpo+JDn0/LMpUCrMwppy0/c1jfcEmNSGrgDsSp6E55oeqjKnGCNU3jwsaeeAQAWmm76vW/39r3p+XoP3XSbYNswO0ZumoHjrye63xKOulLY5Z2wv7WAfjjObtjK"},{"base64":"MIIESTCCAzGgAwIBAgITBn+UV4WH6Kx33rJTMlu8mYtWDTANBgkqhkiG9w0BAQsFADA5MQswCQYDVQQGEwJVUzEPMA0GA1UEChMGQW1hem9uMRkwFwYDVQQDExBBbWF6b24gUm9vdCBDQSAxMB4XDTE1MTAyMjAwMDAwMFoXDTI1MTAxOTAwMDAwMFowRjELMAkGA1UEBhMCVVMxDzANBgNVBAoTBkFtYXpvbjEVMBMGA1UECxMMU2VydmVyIENBIDFCMQ8wDQYDVQQDEwZBbWF6b24wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDCThZn3c68asg3Wuw6MLAd5tES6BIoSMzoKcG5blPVo+sDORrMd4f2AbnZcMzPa43j4wNxhplty6aUKk4T1qe9BOwKFjwK6zmxxLVYo7bHViXsPlJ6qOMpFge5blDP+18x+B26A0piiQOuPkfyDyeR4xQghfj66Yo19V+emU3nazfvpFA+ROz6WoVmB5x+F2pV8xeKNR7u6azDdU5YVX1TawprmxRC1+WsAYmz6qP+z8ArDITC2FMVy2fw0IjKOtEXc/VfmtTFch5+AfGYMGMqqvJ6LcXiAhqG5TI+Dr0RtM88k+8XUBCeQ8IGKuANaL7TiItKZYxK1MMuTJtV9IblAgMBAAGjggE7MIIBNzASBgNVHRMBAf8ECDAGAQH/AgEAMA4GA1UdDwEB/wQEAwIBhjAdBgNVHQ4EFgQUWaRmBlKge5WSPKOUByeWdFv5PdAwHwYDVR0jBBgwFoAUhBjMhTTsvAyUlC4IWZzHshBOCggwewYIKwYBBQUHAQEEbzBtMC8GCCsGAQUFBzABhiNodHRwOi8vb2NzcC5yb290Y2ExLmFtYXpvbnRydXN0LmNvbTA6BggrBgEFBQcwAoYuaHR0cDovL2NydC5yb290Y2ExLmFtYXpvbnRydXN0LmNvbS9yb290Y2ExLmNlcjA/BgNVHR8EODA2MDSgMqAwhi5odHRwOi8vY3JsLnJvb3RjYTEuYW1hem9udHJ1c3QuY29tL3Jvb3RjYTEuY3JsMBMGA1UdIAQMMAowCAYGZ4EMAQIBMA0GCSqGSIb3DQEBCwUAA4IBAQCFkr41u3nPo4FCHOTjY3NTOVI159Gt/a6ZiqyJEi+752+a1U5y6iAwYfmXss2lJwJFqMp2PphKg5625kXg8kP2CN5t6G7bMQcT8C8xDZNtYTd7WPD8UZiRKAJPBXa30/AbwuZe0GaFEQ8ugcYQgSn+IGBI8/LwhBNTZTUVEWuCUUBVV18YtbAiPq3yXqMB48Oz+ctBWuZSkbvkNodPLamkB2g1upRyzQ7qDn1X8nn8N8V7YJ6y68AtkHcNSRAnpTitxBKjtKPISLMVCx7i4hncxHZSyLyKQXhw2W2Xs0qLeC1etA+jTGDK4UfLeC0SF7FSi8o5LL21L8IzApar2pR/"},{"base64":"MIIEkjCCA3qgAwIBAgITBn+USionzfP6wq4rAfkI7rnExjANBgkqhkiG9w0BAQsFADCBmDELMAkGA1UEBhMCVVMxEDAOBgNVBAgTB0FyaXpvbmExEzARBgNVBAcTClNjb3R0c2RhbGUxJTAjBgNVBAoTHFN0YXJmaWVsZCBUZWNobm9sb2dpZXMsIEluYy4xOzA5BgNVBAMTMlN0YXJmaWVsZCBTZXJ2aWNlcyBSb290IENlcnRpZmljYXRlIEF1dGhvcml0eSAtIEcyMB4XDTE1MDUyNTEyMDAwMFoXDTM3MTIzMTAxMDAwMFowOTELMAkGA1UEBhMCVVMxDzANBgNVBAoTBkFtYXpvbjEZMBcGA1UEAxMQQW1hem9uIFJvb3QgQ0EgMTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALJ4gHHKeNXjca9HgFB0fW7Y14h29Jlo91ghYPl0hAEvrAIthtOgQ3pOsqTQNroBvo3bSMgHFzZM9O6II8c+6zf1tRn4SWiw3te5djgdYZ6k/oI2peVKVuRF4fn9tBb6dNqcmzU5L/qwIFAGbHrQgLKm+a/sRxmPUDgH3KKHOVj4utWp+UhnMJbulHheb4mjUcAwhmahRWa6VOujw5H5SNz/0egwLX0tdHA114gk957EWW67c4cX8jJGKLhD+rcdqsq08p8kDi1L93FcXmn/6pUCyziKrlA4b9v7LWIbxcceVOF34GfID5yHI9Y/QCB/IIDEgEw+OyQmjgSubJrIqg0CAwEAAaOCATEwggEtMA8GA1UdEwEB/wQFMAMBAf8wDgYDVR0PAQH/BAQDAgGGMB0GA1UdDgQWBBSEGMyFNOy8DJSULghZnMeyEE4KCDAfBgNVHSMEGDAWgBScXwDfqgHXMCs4iKK4bUqc8hGRgzB4BggrBgEFBQcBAQRsMGowLgYIKwYBBQUHMAGGImh0dHA6Ly9vY3NwLnJvb3RnMi5hbWF6b250cnVzdC5jb20wOAYIKwYBBQUHMAKGLGh0dHA6Ly9jcnQucm9vdGcyLmFtYXpvbnRydXN0LmNvbS9yb290ZzIuY2VyMD0GA1UdHwQ2MDQwMqAwoC6GLGh0dHA6Ly9jcmwucm9vdGcyLmFtYXpvbnRydXN0LmNvbS9yb290ZzIuY3JsMBEGA1UdIAQKMAgwBgYEVR0gADANBgkqhkiG9w0BAQsFAAOCAQEAYjdCXLwQtT6LLOkMm2xF4gcAevnFWAu5CIw+7bMlPLVvUOTNNWqnkzSWMiGpSESrnO09tKpzbeR/FoCJbM8oAxiDR3mjEH4wW6w7sGDgd9QIpuEdfF7Au/maeyKdpwAJfqxGF4PcnCZXmTA5YpaP7dreqsXMGz7KQ2hsVxa81Q4gLv7/wmpdLqBKbRRYh5TmOTFffHPLkIhqhBGWJ6bt2YFGpn6jcgAKUj6DiAdjd4lpFw85hdKrCEVN0FE6/V1dN2RMfjCyVSRCnTawXZwXgWHxyvkQAiSr6w10kY17RSlQOYiypok1JR4UakcjMS9cmvqtmg5iUaQqqcT5NJ0hGA=="},{"base64":"MIIEdTCCA12gAwIBAgIJAKcOSkw0grd/MA0GCSqGSIb3DQEBCwUAMGgxCzAJBgNVBAYTAlVTMSUwIwYDVQQKExxTdGFyZmllbGQgVGVjaG5vbG9naWVzLCBJbmMuMTIwMAYDVQQLEylTdGFyZmllbGQgQ2xhc3MgMiBDZXJ0aWZpY2F0aW9uIEF1dGhvcml0eTAeFw0wOTA5MDIwMDAwMDBaFw0zNDA2MjgxNzM5MTZaMIGYMQswCQYDVQQGEwJVUzEQMA4GA1UECBMHQXJpem9uYTETMBEGA1UEBxMKU2NvdHRzZGFsZTElMCMGA1UEChMcU3RhcmZpZWxkIFRlY2hub2xvZ2llcywgSW5jLjE7MDkGA1UEAxMyU3RhcmZpZWxkIFNlcnZpY2VzIFJvb3QgQ2VydGlmaWNhdGUgQXV0aG9yaXR5IC0gRzIwggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDVDDrEKvlO4vW+GZdfjohTsR8/y8+fIBNtKTrID30892t2OGPZNmCom15cAICyL1l/9of5JUOG52kbUpqQ4XHj2C0NTm/2yEnZtvMaVq4rtnQU68/7JuMauh2WLmo7WJSJR1b/JaCTcFOD2oR0FMNnngRoOt+OQFodSk7PQ5E751bWAHDLUu57fa4657wx+UX2wmDPE1kCK4DMNEffud6QZW0CzyyRpqbn3oUYSXxmTqM6bam17jQuug0DuDPfR+uxa40l2ZvOgdFFRjKWcIfeAg5JQ4W2bHO7ZOphQazJ1FTfhy/HIrImzJ9ZVGif/L4qL8RVHHVAYBeFAlU5i38FAgMBAAGjgfAwge0wDwYDVR0TAQH/BAUwAwEB/zAOBgNVHQ8BAf8EBAMCAYYwHQYDVR0OBBYEFJxfAN+qAdcwKziIorhtSpzyEZGDMB8GA1UdIwQYMBaAFL9ft9HO3R+G9FtVrNzXEMIOqYjnME8GCCsGAQUFBwEBBEMwQTAcBggrBgEFBQcwAYYQaHR0cDovL28uc3MyLnVzLzAhBggrBgEFBQcwAoYVaHR0cDovL3guc3MyLnVzL3guY2VyMCYGA1UdHwQfMB0wG6AZoBeGFWh0dHA6Ly9zLnNzMi51cy9yLmNybDARBgNVHSAECjAIMAYGBFUdIAAwDQYJKoZIhvcNAQELBQADggEBACMd44pXyn3pF3lM8R5V/cxTbj5HD9/GVfKyBDbtgB9TxF00KGu+x1X8Z+rLP3+QsjPNG1gQggL4+C/1E2DUBc7xgQjB3ad1l08YuW3e95ORCLp+QCztweq7dp4zBncdDQh/U90bZKuCJ/Fp1U1ervShw3WnWEQt8jxwmKy6abaVd38PMV4s/KCHOkdp8Hlf9BRUpJVeEXgSYCfOn8J3/yNTd126/+pZ59vPr5KW7ySaNRB6nJHGDn2Z9j8Z3/VyVOEVqQdZe4O/Ui5GjLIAZHYcSNPYeehuVsyuLAOQ1xk4meTKCRlb/weWsKh/NEnfVqn3sF/tM+2MR7cwA130A4w="}],"version":"0303","random":"8b215ad57c246b0631c5f06f6d4a0dcac7107a0a3e08ea195045ea5f3c53bc8d","selected_cipher_suite":"c02f","compression_method":"00","session_ticket":""}},"reassembly_properties":{"reassembled":true},"ip":{"version":4,"ttl":128,"id":"a9a4"},"src_ip":"99.84.215.242","dst_ip":"192.168.113.237","protocol":6,"src_port":443,"dst_port":56402,"event_start":1565200342.535844} +{"dns":{"base64":"BRYBAAABAAAAAAAAA3d3dwZmbGlja3IDY29tAAABAAE="},"ip":{"version":4,"ttl":64,"id":"d970"},"src_ip":"192.168.113.237","dst_ip":"192.168.113.2","protocol":17,"src_port":42238,"dst_port":53,"event_start":1565200342.633499} +{"dns":{"base64":"zxQBAAABAAAAAAAAA3d3dwZmbGlja3IDY29tAAAcAAE="},"ip":{"version":4,"ttl":64,"id":"d971"},"src_ip":"192.168.113.237","dst_ip":"192.168.113.2","protocol":17,"src_port":56785,"dst_port":53,"event_start":1565200342.633692} +{"dns":{"base64":"zxSBgAABAAkABAAEA3d3dwZmbGlja3IDY29tAAAcAAHADAAFAAEAAAAFAB8OZDIwYjg2aW51cjE0bGwKY2xvdWRmcm9udANuZXQAwCwAHAABAAAABQAQJgCQACAV/AAAGz08IkoSYcAsABwAAQAAAAUAECYAkAAgFTgAABs9PCJKEmHALAAcAAEAAAAFABAmAJAAIBV0AAAbPTwiShJhwCwAHAABAAAABQAQJgCQACAVBgAAGz08IkoSYcAsABwAAQAAAAUAECYAkAAgFVAAABs9PCJKEmHALAAcAAEAAAAFABAmAJAAIBVaAAAbPTwiShJhwCwAHAABAAAABQAQJgCQACAV1AAAGz08IkoSYcAsABwAAQAAAAUAECYAkAAgFS4AABs9PCJKEmHAOwACAAEAAAAFABMGbnMtNjY2CWF3c2Rucy0xOcBGwDsAAgABAAAABQAZB25zLTE1OTcJYXdzZG5zLTA3AmNvAnVrAMA7AAIAAQAAAAUAEwZucy00MTgJYXdzZG5zLTUywBfAOwACAAEAAAAFABcHbnMtMTMwNglhd3NkbnMtMzUDb3JnAMF7AAEAAQAAAAUABM37waLBNwABAAEAAAAFAATN+8KawZoAAQABAAAABQAEzfvFGsFWAAEAAQAAAAUABM37xj0="},"ip":{"version":4,"ttl":128,"id":"a9ac"},"src_ip":"192.168.113.2","dst_ip":"192.168.113.237","protocol":17,"src_port":53,"dst_port":56785,"event_start":1565200342.667074} +{"dns":{"base64":"BRaBgAABAAIABAAIA3d3dwZmbGlja3IDY29tAAABAAHADAAFAAEAAAAFAB8OZDIwYjg2aW51cjE0bGwKY2xvdWRmcm9udANuZXQAwCwAAQABAAAABQAEY1TX8sA7AAIAAQAAAAUAGQducy0xNTk3CWF3c2Rucy0wNwJjbwJ1awDAOwACAAEAAAAFABMGbnMtNjY2CWF3c2Rucy0xOcBGwDsAAgABAAAABQAXB25zLTEzMDYJYXdzZG5zLTM1A29yZwDAOwACAAEAAAAFABMGbnMtNDE4CWF3c2Rucy01MsAXwM4AAQABAAAABQAEzfvBosCMAAEAAQAAAAUABM37wprAqwABAAEAAAAFAATN+8UawGcAAQABAAAABQAEzfvGPcDOABwAAQAAAAUAECYAkABTAaIAAAAAAAAAAAHAjAAcAAEAAAAFABAmAJAAUwKaAAAAAAAAAAABwKsAHAABAAAABQAQJgCQAFMFGgAAAAAAAAAAAcBnABwAAQAAAAUAECYAkABTBj0AAAAAAAAAAAE="},"ip":{"version":4,"ttl":128,"id":"a9ad"},"src_ip":"192.168.113.2","dst_ip":"192.168.113.237","protocol":17,"src_port":53,"dst_port":42238,"event_start":1565200342.667094} +{"fingerprints":{"tcp":"tcp/(40)()(40)(faf0)((020405b4)(04)(08)(01)(030307))"},"tcp":{"seq":3209042481,"timestamp":{"ts_val":3957416662}},"ip":{"version":4,"ttl":64,"id":"c0c0"},"src_ip":"192.168.113.237","dst_ip":"99.84.215.242","protocol":6,"src_port":56404,"dst_port":443,"event_start":1565200342.667949} +{"fingerprints":{"tcp_server":"tcp_server/(40)()(80)(faf0)((020405b4))"},"tcp_server":{"seq":152899688},"ip":{"version":4,"ttl":128,"id":"a9af"},"src_ip":"99.84.215.242","dst_ip":"192.168.113.237","protocol":6,"src_port":443,"dst_port":56404,"event_start":1565200342.707098} +{"fingerprints":{"tls":"tls/(0303)(130213031301c02cc030009fcca9cca8ccaac02bc02f009ec024c028006bc023c0270067c00ac0140039c009c0130033009d009c003d003c0035002f00ff)((0000)(000b000403000102)(000a000c000a001d0017001e00190018)(0023)(0016)(0017)(000d0030002e040305030603080708080809080a080b080408050806040105010601030302030301020103020202040205020602)(002b0009080304030303020301)(002d00020101)(0033))"},"tls":{"client":{"version":"0303","random":"fae85c8b91e5df7127a5dd1b3ae8090d88a406cd6452d488ee7c92a4844fb14f","session_id":"996d723c707e8ae92ea880ab59ae609d24d818461e18542b3a8ec72298317862","cipher_suites":"130213031301c02cc030009fcca9cca8ccaac02bc02f009ec024c028006bc023c0270067c00ac0140039c009c0130033009d009c003d003c0035002f00ff","compression_methods":"00","server_name":"www.flickr.com","session_ticket":"","features":"[\"0303\",\"130213031301c02cc030009fcca9cca8ccaac02bc02f009ec024c028006bc023c0270067c00ac0140039c009c0130033009d009c003d003c0035002f00ff\",[[\"0000\",\"001100000e7777772e666c69636b722e636f6d\"],[\"000b\",\"03000102\"],[\"000a\",\"000a001d0017001e00190018\"],[\"0023\",\"\"],[\"0016\",\"\"],[\"0017\",\"\"],[\"000d\",\"002e040305030603080708080809080a080b080408050806040105010601030302030301020103020202040205020602\"],[\"002b\",\"080304030303020301\"],[\"002d\",\"0101\"],[\"0033\",\"0024001d00206b70a388c45203710106c6d37102a5d9ae654e0b003f9f636308f6e86fb39a0a\"]]]"}},"ip":{"version":4,"ttl":64,"id":"c0c2"},"src_ip":"192.168.113.237","dst_ip":"99.84.215.242","protocol":6,"src_port":56404,"dst_port":443,"event_start":1565200342.707540} +{"fingerprints":{"tls_server":"tls_server/(0303)(c02f)((0000)(ff01)(000b000403000102)(0023))"},"tls":{"server":{"certs":[{"base64":"MIIFdTCCBF2gAwIBAgIQDt4YzuELQpTapoK7bNnpZjANBgkqhkiG9w0BAQsFADBGMQswCQYDVQQGEwJVUzEPMA0GA1UEChMGQW1hem9uMRUwEwYDVQQLEwxTZXJ2ZXIgQ0EgMUIxDzANBgNVBAMTBkFtYXpvbjAeFw0xOTA3MDIwMDAwMDBaFw0yMDA4MDIxMjAwMDBaMBUxEzARBgNVBAMTCmZsaWNrci5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDZ7uaOoNvCN+/ert5b3wZh0CGCmd165UwVC3B1pgEhnt1iyUvM6xczMpkSTxc9w5gvPa/Ne1GPyGOHuY66z9XW50w+Sxjiykbceu+0yYRutkDPv8BhtqKBZgxPJI/3XBvVPyuHQS36IPy+Wjl5EULe9i2KmJMyJfnyE1i7Sb6y4TSk0U4TNi7MGJppXb2e33cgxetihDu00KADE27bXcEWTMstcfBLwdG5/X4x2z/owEvDKNvtolO6SoGwgwQ4l83smKWytETJCljGDTQYnW5SAsW0qy4s1SRf8Tfw+rpETg0muMt6s+satyHzpjoGaXohkDjRnATtx1+J21C3QE9nAgMBAAGjggKOMIICijAfBgNVHSMEGDAWgBRZpGYGUqB7lZI8o5QHJ5Z0W/k90DAdBgNVHQ4EFgQUSWmklGLUX9CtIPn/1pCbKBIdUEUwLAYDVR0RBCUwI4IKZmxpY2tyLmNvbYIHZmxpYy5rcoIMKi5mbGlja3IuY29tMA4GA1UdDwEB/wQEAwIFoDAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwOwYDVR0fBDQwMjAwoC6gLIYqaHR0cDovL2NybC5zY2ExYi5hbWF6b250cnVzdC5jb20vc2NhMWIuY3JsMCAGA1UdIAQZMBcwCwYJYIZIAYb9bAECMAgGBmeBDAECATB1BggrBgEFBQcBAQRpMGcwLQYIKwYBBQUHMAGGIWh0dHA6Ly9vY3NwLnNjYTFiLmFtYXpvbnRydXN0LmNvbTA2BggrBgEFBQcwAoYqaHR0cDovL2NydC5zY2ExYi5hbWF6b250cnVzdC5jb20vc2NhMWIuY3J0MAwGA1UdEwEB/wQCMAAwggEFBgorBgEEAdZ5AgQCBIH2BIHzAPEAdwCkuQmQtBhYFIe7E6LMZ3AKPDWYBPkb37jjd80OyA3cEAAAAWuzwcABAAAEAwBIMEYCIQDVms5k3rQNRh/BDGWUbIgaznl1rFWhhS2mbijASsTlWgIhAJLUcmNRZgbp9oseu+zUDHDGUV05trWyejCkYqeMf89zAHYAh3W/51l8+IxDmV+9827/Vo1HVjb/SrVgwbTq/16ggw8AAAFrs8HAUQAABAMARzBFAiEA1dWKmUVBHr1IKCuT5BdfpjdOwLvNn1JfK3AF34iAltMCICPBNPQBQy0fgbTwN9oTwXHesKMl4CbyyTOuzkJuuqPgMA0GCSqGSIb3DQEBCwUAA4IBAQBKYdDCdJU5SY1BejLwpgbyfrisQ7VfzHi0IMaKwskPC9YBIO2AvdYJCcIutNcyCukriQDkYeUinsXYmtZb4B4XLto/XP2lqn9pNqBxS6CPKr7DmPy6SpU5RcYWHrKLGvjM4WA2GSD0nabz/yS7Mm+D+txilKh8pwpVMgYPS2AMdX2pnFFWCN58DT6zyt0isjtFoR773gByvPP8W+B4qBqKVdxhtdpo+JDn0/LMpUCrMwppy0/c1jfcEmNSGrgDsSp6E55oeqjKnGCNU3jwsaeeAQAWmm76vW/39r3p+XoP3XSbYNswO0ZumoHjrye63xKOulLY5Z2wv7WAfjjObtjK"},{"base64":"MIIESTCCAzGgAwIBAgITBn+UV4WH6Kx33rJTMlu8mYtWDTANBgkqhkiG9w0BAQsFADA5MQswCQYDVQQGEwJVUzEPMA0GA1UEChMGQW1hem9uMRkwFwYDVQQDExBBbWF6b24gUm9vdCBDQSAxMB4XDTE1MTAyMjAwMDAwMFoXDTI1MTAxOTAwMDAwMFowRjELMAkGA1UEBhMCVVMxDzANBgNVBAoTBkFtYXpvbjEVMBMGA1UECxMMU2VydmVyIENBIDFCMQ8wDQYDVQQDEwZBbWF6b24wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDCThZn3c68asg3Wuw6MLAd5tES6BIoSMzoKcG5blPVo+sDORrMd4f2AbnZcMzPa43j4wNxhplty6aUKk4T1qe9BOwKFjwK6zmxxLVYo7bHViXsPlJ6qOMpFge5blDP+18x+B26A0piiQOuPkfyDyeR4xQghfj66Yo19V+emU3nazfvpFA+ROz6WoVmB5x+F2pV8xeKNR7u6azDdU5YVX1TawprmxRC1+WsAYmz6qP+z8ArDITC2FMVy2fw0IjKOtEXc/VfmtTFch5+AfGYMGMqqvJ6LcXiAhqG5TI+Dr0RtM88k+8XUBCeQ8IGKuANaL7TiItKZYxK1MMuTJtV9IblAgMBAAGjggE7MIIBNzASBgNVHRMBAf8ECDAGAQH/AgEAMA4GA1UdDwEB/wQEAwIBhjAdBgNVHQ4EFgQUWaRmBlKge5WSPKOUByeWdFv5PdAwHwYDVR0jBBgwFoAUhBjMhTTsvAyUlC4IWZzHshBOCggwewYIKwYBBQUHAQEEbzBtMC8GCCsGAQUFBzABhiNodHRwOi8vb2NzcC5yb290Y2ExLmFtYXpvbnRydXN0LmNvbTA6BggrBgEFBQcwAoYuaHR0cDovL2NydC5yb290Y2ExLmFtYXpvbnRydXN0LmNvbS9yb290Y2ExLmNlcjA/BgNVHR8EODA2MDSgMqAwhi5odHRwOi8vY3JsLnJvb3RjYTEuYW1hem9udHJ1c3QuY29tL3Jvb3RjYTEuY3JsMBMGA1UdIAQMMAowCAYGZ4EMAQIBMA0GCSqGSIb3DQEBCwUAA4IBAQCFkr41u3nPo4FCHOTjY3NTOVI159Gt/a6ZiqyJEi+752+a1U5y6iAwYfmXss2lJwJFqMp2PphKg5625kXg8kP2CN5t6G7bMQcT8C8xDZNtYTd7WPD8UZiRKAJPBXa30/AbwuZe0GaFEQ8ugcYQgSn+IGBI8/LwhBNTZTUVEWuCUUBVV18YtbAiPq3yXqMB48Oz+ctBWuZSkbvkNodPLamkB2g1upRyzQ7qDn1X8nn8N8V7YJ6y68AtkHcNSRAnpTitxBKjtKPISLMVCx7i4hncxHZSyLyKQXhw2W2Xs0qLeC1etA+jTGDK4UfLeC0SF7FSi8o5LL21L8IzApar2pR/"},{"base64":"MIIEkjCCA3qgAwIBAgITBn+USionzfP6wq4rAfkI7rnExjANBgkqhkiG9w0BAQsFADCBmDELMAkGA1UEBhMCVVMxEDAOBgNVBAgTB0FyaXpvbmExEzARBgNVBAcTClNjb3R0c2RhbGUxJTAjBgNVBAoTHFN0YXJmaWVsZCBUZWNobm9sb2dpZXMsIEluYy4xOzA5BgNVBAMTMlN0YXJmaWVsZCBTZXJ2aWNlcyBSb290IENlcnRpZmljYXRlIEF1dGhvcml0eSAtIEcyMB4XDTE1MDUyNTEyMDAwMFoXDTM3MTIzMTAxMDAwMFowOTELMAkGA1UEBhMCVVMxDzANBgNVBAoTBkFtYXpvbjEZMBcGA1UEAxMQQW1hem9uIFJvb3QgQ0EgMTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALJ4gHHKeNXjca9HgFB0fW7Y14h29Jlo91ghYPl0hAEvrAIthtOgQ3pOsqTQNroBvo3bSMgHFzZM9O6II8c+6zf1tRn4SWiw3te5djgdYZ6k/oI2peVKVuRF4fn9tBb6dNqcmzU5L/qwIFAGbHrQgLKm+a/sRxmPUDgH3KKHOVj4utWp+UhnMJbulHheb4mjUcAwhmahRWa6VOujw5H5SNz/0egwLX0tdHA114gk957EWW67c4cX8jJGKLhD+rcdqsq08p8kDi1L93FcXmn/6pUCyziKrlA4b9v7LWIbxcceVOF34GfID5yHI9Y/QCB/IIDEgEw+OyQmjgSubJrIqg0CAwEAAaOCATEwggEtMA8GA1UdEwEB/wQFMAMBAf8wDgYDVR0PAQH/BAQDAgGGMB0GA1UdDgQWBBSEGMyFNOy8DJSULghZnMeyEE4KCDAfBgNVHSMEGDAWgBScXwDfqgHXMCs4iKK4bUqc8hGRgzB4BggrBgEFBQcBAQRsMGowLgYIKwYBBQUHMAGGImh0dHA6Ly9vY3NwLnJvb3RnMi5hbWF6b250cnVzdC5jb20wOAYIKwYBBQUHMAKGLGh0dHA6Ly9jcnQucm9vdGcyLmFtYXpvbnRydXN0LmNvbS9yb290ZzIuY2VyMD0GA1UdHwQ2MDQwMqAwoC6GLGh0dHA6Ly9jcmwucm9vdGcyLmFtYXpvbnRydXN0LmNvbS9yb290ZzIuY3JsMBEGA1UdIAQKMAgwBgYEVR0gADANBgkqhkiG9w0BAQsFAAOCAQEAYjdCXLwQtT6LLOkMm2xF4gcAevnFWAu5CIw+7bMlPLVvUOTNNWqnkzSWMiGpSESrnO09tKpzbeR/FoCJbM8oAxiDR3mjEH4wW6w7sGDgd9QIpuEdfF7Au/maeyKdpwAJfqxGF4PcnCZXmTA5YpaP7dreqsXMGz7KQ2hsVxa81Q4gLv7/wmpdLqBKbRRYh5TmOTFffHPLkIhqhBGWJ6bt2YFGpn6jcgAKUj6DiAdjd4lpFw85hdKrCEVN0FE6/V1dN2RMfjCyVSRCnTawXZwXgWHxyvkQAiSr6w10kY17RSlQOYiypok1JR4UakcjMS9cmvqtmg5iUaQqqcT5NJ0hGA=="},{"base64":"MIIEdTCCA12gAwIBAgIJAKcOSkw0grd/MA0GCSqGSIb3DQEBCwUAMGgxCzAJBgNVBAYTAlVTMSUwIwYDVQQKExxTdGFyZmllbGQgVGVjaG5vbG9naWVzLCBJbmMuMTIwMAYDVQQLEylTdGFyZmllbGQgQ2xhc3MgMiBDZXJ0aWZpY2F0aW9uIEF1dGhvcml0eTAeFw0wOTA5MDIwMDAwMDBaFw0zNDA2MjgxNzM5MTZaMIGYMQswCQYDVQQGEwJVUzEQMA4GA1UECBMHQXJpem9uYTETMBEGA1UEBxMKU2NvdHRzZGFsZTElMCMGA1UEChMcU3RhcmZpZWxkIFRlY2hub2xvZ2llcywgSW5jLjE7MDkGA1UEAxMyU3RhcmZpZWxkIFNlcnZpY2VzIFJvb3QgQ2VydGlmaWNhdGUgQXV0aG9yaXR5IC0gRzIwggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDVDDrEKvlO4vW+GZdfjohTsR8/y8+fIBNtKTrID30892t2OGPZNmCom15cAICyL1l/9of5JUOG52kbUpqQ4XHj2C0NTm/2yEnZtvMaVq4rtnQU68/7JuMauh2WLmo7WJSJR1b/JaCTcFOD2oR0FMNnngRoOt+OQFodSk7PQ5E751bWAHDLUu57fa4657wx+UX2wmDPE1kCK4DMNEffud6QZW0CzyyRpqbn3oUYSXxmTqM6bam17jQuug0DuDPfR+uxa40l2ZvOgdFFRjKWcIfeAg5JQ4W2bHO7ZOphQazJ1FTfhy/HIrImzJ9ZVGif/L4qL8RVHHVAYBeFAlU5i38FAgMBAAGjgfAwge0wDwYDVR0TAQH/BAUwAwEB/zAOBgNVHQ8BAf8EBAMCAYYwHQYDVR0OBBYEFJxfAN+qAdcwKziIorhtSpzyEZGDMB8GA1UdIwQYMBaAFL9ft9HO3R+G9FtVrNzXEMIOqYjnME8GCCsGAQUFBwEBBEMwQTAcBggrBgEFBQcwAYYQaHR0cDovL28uc3MyLnVzLzAhBggrBgEFBQcwAoYVaHR0cDovL3guc3MyLnVzL3guY2VyMCYGA1UdHwQfMB0wG6AZoBeGFWh0dHA6Ly9zLnNzMi51cy9yLmNybDARBgNVHSAECjAIMAYGBFUdIAAwDQYJKoZIhvcNAQELBQADggEBACMd44pXyn3pF3lM8R5V/cxTbj5HD9/GVfKyBDbtgB9TxF00KGu+x1X8Z+rLP3+QsjPNG1gQggL4+C/1E2DUBc7xgQjB3ad1l08YuW3e95ORCLp+QCztweq7dp4zBncdDQh/U90bZKuCJ/Fp1U1ervShw3WnWEQt8jxwmKy6abaVd38PMV4s/KCHOkdp8Hlf9BRUpJVeEXgSYCfOn8J3/yNTd126/+pZ59vPr5KW7ySaNRB6nJHGDn2Z9j8Z3/VyVOEVqQdZe4O/Ui5GjLIAZHYcSNPYeehuVsyuLAOQ1xk4meTKCRlb/weWsKh/NEnfVqn3sF/tM+2MR7cwA130A4w="}],"version":"0303","random":"ea5b849493d1b0d409671d52ff40937d964817534ffbdb4b15ba3ba4d6143f96","selected_cipher_suite":"c02f","compression_method":"00","session_ticket":""}},"reassembly_properties":{"reassembled":true},"ip":{"version":4,"ttl":128,"id":"a9b4"},"src_ip":"99.84.215.242","dst_ip":"192.168.113.237","protocol":6,"src_port":443,"dst_port":56404,"event_start":1565200342.753049} +{"dns":{"base64":"oV4BAAABAAAAAAAACGdyYXZhdGFyA2NvbQAAAQAB"},"ip":{"version":4,"ttl":64,"id":"d978"},"src_ip":"192.168.113.237","dst_ip":"192.168.113.2","protocol":17,"src_port":55844,"dst_port":53,"event_start":1565200343.139712} +{"dns":{"base64":"krYBAAABAAAAAAAACGdyYXZhdGFyA2NvbQAAHAAB"},"ip":{"version":4,"ttl":64,"id":"d979"},"src_ip":"192.168.113.237","dst_ip":"192.168.113.2","protocol":17,"src_port":56525,"dst_port":53,"event_start":1565200343.139875} +{"dns":{"base64":"kraBgAABAAAAAQAACGdyYXZhdGFyA2NvbQAAHAABwAwABgABAAAABQAyA25zMQphdXRvbWF0dGljwBUKaG9zdG1hc3RlcsAueFi3pAAAcIAAABwgAAk6gAABUYA="},"ip":{"version":4,"ttl":128,"id":"aa93"},"src_ip":"192.168.113.2","dst_ip":"192.168.113.237","protocol":17,"src_port":53,"dst_port":56525,"event_start":1565200343.175964} +{"dns":{"base64":"oV6BgAABAAQADQAMCGdyYXZhdGFyA2NvbQAAAQABwAwAAQABAAAABQAEwABQ8MAMAAEAAQAAAAUABMAAUO/ADAABAAEAAAAFAATAAFDxwAwAAQABAAAABQAEwABQ8sAVAAIAAQAAAAUAFAFjDGd0bGQtc2VydmVycwNuZXQAwBUAAgABAAAABQAEAWfAbMAVAAIAAQAAAAUABAFiwGzAFQACAAEAAAAFAAQBacBswBUAAgABAAAABQAEAW3AbMAVAAIAAQAAAAUABAFmwGzAFQACAAEAAAAFAAQBa8BswBUAAgABAAAABQAEAWXAbMAVAAIAAQAAAAUABAFowGzAFQACAAEAAAAFAAQBasBswBUAAgABAAAABQAEAWHAbMAVAAIAAQAAAAUABAFkwGzAFQACAAEAAAAFAAQBbMBswRoAAQABAAAABQAEwAUGHsCaAAEAAQAAAAUABMAhDh7AagABAAEAAAAFAATAGlwewSoAAQABAAAABQAEwB9QHsDqAAEAAQAAAAUABMAMXh7AygABAAEAAAAFAATAIzMewIoAAQABAAAABQAEwCpdHsD6AAEAAQAAAAUABMA2cB7AqgABAAEAAAAFAATAK6wewQoAAQABAAAABQAEwDBPHsDaAAEAAQAAAAUABMA0sh7BOgABAAEAAAAFAATAKaIe"},"ip":{"version":4,"ttl":128,"id":"aa94"},"src_ip":"192.168.113.2","dst_ip":"192.168.113.237","protocol":17,"src_port":53,"dst_port":55844,"event_start":1565200343.185395} +{"fingerprints":{"tcp":"tcp/(40)()(40)(faf0)((020405b4)(04)(08)(01)(030307))"},"tcp":{"seq":2467516247,"timestamp":{"ts_val":3021056028}},"ip":{"version":4,"ttl":64,"id":"9424"},"src_ip":"192.168.113.237","dst_ip":"192.0.80.240","protocol":6,"src_port":49766,"dst_port":443,"event_start":1565200343.185751} +{"fingerprints":{"tcp_server":"tcp_server/(40)()(80)(faf0)((020405b4))"},"tcp_server":{"seq":1933834876},"ip":{"version":4,"ttl":128,"id":"aa95"},"src_ip":"192.0.80.240","dst_ip":"192.168.113.237","protocol":6,"src_port":443,"dst_port":49766,"event_start":1565200343.256569} +{"fingerprints":{"tls":"tls/(0303)(130213031301c02cc030009fcca9cca8ccaac02bc02f009ec024c028006bc023c0270067c00ac0140039c009c0130033009d009c003d003c0035002f00ff)((0000)(000b000403000102)(000a000c000a001d0017001e00190018)(0023)(0016)(0017)(000d0030002e040305030603080708080809080a080b080408050806040105010601030302030301020103020202040205020602)(002b0009080304030303020301)(002d00020101)(0033))"},"tls":{"client":{"version":"0303","random":"bcb851d13d30e74ef2c56d7c57d3f6c3d6d19789f98adb1bf9c1467fcf5a530e","session_id":"c4fc13292bddadb76b304411b49bb3a237c0c308ecdb23073d6f4861a6ba3d2a","cipher_suites":"130213031301c02cc030009fcca9cca8ccaac02bc02f009ec024c028006bc023c0270067c00ac0140039c009c0130033009d009c003d003c0035002f00ff","compression_methods":"00","server_name":"gravatar.com","session_ticket":"","features":"[\"0303\",\"130213031301c02cc030009fcca9cca8ccaac02bc02f009ec024c028006bc023c0270067c00ac0140039c009c0130033009d009c003d003c0035002f00ff\",[[\"0000\",\"000f00000c67726176617461722e636f6d\"],[\"000b\",\"03000102\"],[\"000a\",\"000a001d0017001e00190018\"],[\"0023\",\"\"],[\"0016\",\"\"],[\"0017\",\"\"],[\"000d\",\"002e040305030603080708080809080a080b080408050806040105010601030302030301020103020202040205020602\"],[\"002b\",\"080304030303020301\"],[\"002d\",\"0101\"],[\"0033\",\"0024001d0020872663e1448200709885d2310741bc2229f8985cd034d93229587fdcc3bd752e\"]]]"}},"ip":{"version":4,"ttl":64,"id":"9426"},"src_ip":"192.168.113.237","dst_ip":"192.0.80.240","protocol":6,"src_port":49766,"dst_port":443,"event_start":1565200343.256831} +{"fingerprints":{"tls_server":"tls_server/(0303)(1302)((002b00020304)(0033))"},"tls":{"server":{"version":"0303","random":"ba26cadd8c7227cc3880eda7502f27b4118ac4b935686585dad7227387035ea6","selected_cipher_suite":"1302","compression_method":"00"}},"ip":{"version":4,"ttl":128,"id":"aa97"},"src_ip":"192.0.80.240","dst_ip":"192.168.113.237","protocol":6,"src_port":443,"dst_port":49766,"event_start":1565200343.329185} +{"dns":{"base64":"+AsBAAABAAAAAAAAAmVuCGdyYXZhdGFyA2NvbQAAAQAB"},"ip":{"version":4,"ttl":64,"id":"d99d"},"src_ip":"192.168.113.237","dst_ip":"192.168.113.2","protocol":17,"src_port":49777,"dst_port":53,"event_start":1565200343.485495} +{"dns":{"base64":"BIYBAAABAAAAAAAAAmVuCGdyYXZhdGFyA2NvbQAAHAAB"},"ip":{"version":4,"ttl":64,"id":"d99e"},"src_ip":"192.168.113.237","dst_ip":"192.168.113.2","protocol":17,"src_port":44022,"dst_port":53,"event_start":1565200343.485724} +{"dns":{"base64":"+AuBgAABAAUADQAKAmVuCGdyYXZhdGFyA2NvbQAAAQABwAwABQABAAAABQAFAmxiwA/ALQABAAEAAAAFAATAAFDvwC0AAQABAAAABQAEwABQ8MAtAAEAAQAAAAUABMAAUPHALQABAAEAAAAFAATAAFDywBgAAgABAAAABQAUAWwMZ3RsZC1zZXJ2ZXJzA25ldADAGAACAAEAAAAFAAQBa8CAwBgAAgABAAAABQAEAWjAgMAYAAIAAQAAAAUABAFnwIDAGAACAAEAAAAFAAQBZsCAwBgAAgABAAAABQAEAWLAgMAYAAIAAQAAAAUABAFkwIDAGAACAAEAAAAFAAQBZcCAwBgAAgABAAAABQAEAWrAgMAYAAIAAQAAAAUABAFjwIDAGAACAAEAAAAFAAQBbcCAwBgAAgABAAAABQAEAWHAgMAYAAIAAQAAAAUABAFpwIDBPgABAAEAAAAFAATABQYewN4AAQABAAAABQAEwCEOHsEeAAEAAQAAAAUABMAaXB7A7gABAAEAAAAFAATAH1AewP4AAQABAAAABQAEwAxeHsDOAAEAAQAAAAUABMAjMx7AvgABAAEAAAAFAATAKl0ewK4AAQABAAAABQAEwDZwHsFOAAEAAQAAAAUABMArrB7BDgABAAEAAAAFAATAME8e"},"ip":{"version":4,"ttl":128,"id":"aaa3"},"src_ip":"192.168.113.2","dst_ip":"192.168.113.237","protocol":17,"src_port":53,"dst_port":49777,"event_start":1565200343.540768} +{"dns":{"base64":"BIaBgAABAAEAAQAAAmVuCGdyYXZhdGFyA2NvbQAAHAABwAwABQABAAAABQAFAmxiwA/ADwAGAAEAAAAFADIDbnMxCmF1dG9tYXR0aWPAGApob3N0bWFzdGVywEJ4WLekAABwgAAAHCAACTqAAAFRgA=="},"ip":{"version":4,"ttl":128,"id":"aaa4"},"src_ip":"192.168.113.2","dst_ip":"192.168.113.237","protocol":17,"src_port":53,"dst_port":44022,"event_start":1565200343.541950} +{"dns":{"base64":"4CoBAAABAAAAAAAAAmxiCGdyYXZhdGFyA2NvbQAAHAAB"},"ip":{"version":4,"ttl":64,"id":"d99f"},"src_ip":"192.168.113.237","dst_ip":"192.168.113.2","protocol":17,"src_port":37802,"dst_port":53,"event_start":1565200343.542135} +{"dns":{"base64":"4CqBgAABAAAAAQAAAmxiCGdyYXZhdGFyA2NvbQAAHAABwA8ABgABAAAABQAyA25zMQphdXRvbWF0dGljwBgKaG9zdG1hc3RlcsAxeFi3pAAAcIAAABwgAAk6gAABUYA="},"ip":{"version":4,"ttl":128,"id":"aaa5"},"src_ip":"192.168.113.2","dst_ip":"192.168.113.237","protocol":17,"src_port":53,"dst_port":37802,"event_start":1565200343.574363} +{"fingerprints":{"tcp":"tcp/(40)()(40)(faf0)((020405b4)(04)(08)(01)(030307))"},"tcp":{"seq":1330037908,"timestamp":{"ts_val":3699012059}},"ip":{"version":4,"ttl":64,"id":"1f40"},"src_ip":"192.168.113.237","dst_ip":"192.0.80.242","protocol":6,"src_port":40364,"dst_port":443,"event_start":1565200343.574650} +{"fingerprints":{"tcp_server":"tcp_server/(40)()(80)(faf0)((020405b4))"},"tcp_server":{"seq":4142719719},"ip":{"version":4,"ttl":128,"id":"aaa6"},"src_ip":"192.0.80.242","dst_ip":"192.168.113.237","protocol":6,"src_port":443,"dst_port":40364,"event_start":1565200343.652712} +{"fingerprints":{"tls":"tls/(0303)(130213031301c02cc030009fcca9cca8ccaac02bc02f009ec024c028006bc023c0270067c00ac0140039c009c0130033009d009c003d003c0035002f00ff)((0000)(000b000403000102)(000a000c000a001d0017001e00190018)(0023)(0016)(0017)(000d0030002e040305030603080708080809080a080b080408050806040105010601030302030301020103020202040205020602)(002b0009080304030303020301)(002d00020101)(0033))"},"tls":{"client":{"version":"0303","random":"61623a993982be594dfe66a1636fac36739fd25d139171ae0723f4b4b76762d0","session_id":"e04a713039ccd69c86c8f082c87ea69da0d8b1c4087f3a4c2a7cd7fc4c7cbd71","cipher_suites":"130213031301c02cc030009fcca9cca8ccaac02bc02f009ec024c028006bc023c0270067c00ac0140039c009c0130033009d009c003d003c0035002f00ff","compression_methods":"00","server_name":"en.gravatar.com","session_ticket":"","features":"[\"0303\",\"130213031301c02cc030009fcca9cca8ccaac02bc02f009ec024c028006bc023c0270067c00ac0140039c009c0130033009d009c003d003c0035002f00ff\",[[\"0000\",\"001200000f656e2e67726176617461722e636f6d\"],[\"000b\",\"03000102\"],[\"000a\",\"000a001d0017001e00190018\"],[\"0023\",\"\"],[\"0016\",\"\"],[\"0017\",\"\"],[\"000d\",\"002e040305030603080708080809080a080b080408050806040105010601030302030301020103020202040205020602\"],[\"002b\",\"080304030303020301\"],[\"002d\",\"0101\"],[\"0033\",\"0024001d00205b7bc03502da42254709fc60a5c4f17607386d3dfb3f9260fb42fca774ffa456\"]]]"}},"ip":{"version":4,"ttl":64,"id":"1f42"},"src_ip":"192.168.113.237","dst_ip":"192.0.80.242","protocol":6,"src_port":40364,"dst_port":443,"event_start":1565200343.652953} +{"fingerprints":{"tls_server":"tls_server/(0303)(1302)((002b00020304)(0033))"},"tls":{"server":{"version":"0303","random":"8f8334d3efeb4266f0723aa8d8e5dd185b3f34ee0dcfca11da01423839180486","selected_cipher_suite":"1302","compression_method":"00"}},"ip":{"version":4,"ttl":128,"id":"aaa8"},"src_ip":"192.0.80.242","dst_ip":"192.168.113.237","protocol":6,"src_port":443,"dst_port":40364,"event_start":1565200343.727052} +{"dns":{"base64":"iAIBAAABAAAAAAAADnBhcmtlZC1jb250ZW50B2dvZGFkZHkDY29tAAABAAE="},"ip":{"version":4,"ttl":64,"id":"d9fc"},"src_ip":"192.168.113.237","dst_ip":"192.168.113.2","protocol":17,"src_port":50935,"dst_port":53,"event_start":1565200343.956873} +{"dns":{"base64":"FEQBAAABAAAAAAAADnBhcmtlZC1jb250ZW50B2dvZGFkZHkDY29tAAAcAAE="},"ip":{"version":4,"ttl":64,"id":"d9fd"},"src_ip":"192.168.113.237","dst_ip":"192.168.113.2","protocol":17,"src_port":35338,"dst_port":53,"event_start":1565200343.957135} +{"dns":{"base64":"iAKBgAABAAMADQAJDnBhcmtlZC1jb250ZW50B2dvZGFkZHkDY29tAAABAAHADAAFAAEAAAAFACgOcGFya2VkLWNvbnRlbnQHZ29kYWRkeQNjb20HZWRnZWtleQNuZXQAwDgABQABAAAABQAVBWU2MDAxAWEKYWthbWFpZWRnZcBbwGwAAQABAAAABQAEF0NiasBbAAIAAQAAAAUAEQFhDGd0bGQtc2VydmVyc8BbwFsAAgABAAAABQAEAWrAn8BbAAIAAQAAAAUABAFtwJ/AWwACAAEAAAAFAAQBacCfwFsAAgABAAAABQAEAWzAn8BbAAIAAQAAAAUABAFnwJ/AWwACAAEAAAAFAAQBZsCfwFsAAgABAAAABQAEAWjAn8BbAAIAAQAAAAUABAFrwJ/AWwACAAEAAAAFAAQBZcCfwFsAAgABAAAABQAEAWLAn8BbAAIAAQAAAAUABAFjwJ/AWwACAAEAAAAFAAQBZMCfwJ0AAQABAAAABQAEwAUGHsFKAAEAAQAAAAUABMAhDh7BWgABAAEAAAAFAATAGlwewWoAAQABAAAABQAEwB9QHsE6AAEAAQAAAAUABMAMXh7BCgABAAEAAAAFAATAIzMewPoAAQABAAAABQAEwCpdHsEaAAEAAQAAAAUABMA2cB7A2gABAAEAAAAFAATAK6we"},"ip":{"version":4,"ttl":128,"id":"aac6"},"src_ip":"192.168.113.2","dst_ip":"192.168.113.237","protocol":17,"src_port":53,"dst_port":50935,"event_start":1565200344.004925} +{"dns":{"base64":"FESBgAABAAIAAQAADnBhcmtlZC1jb250ZW50B2dvZGFkZHkDY29tAAAcAAHADAAFAAEAAAAFACgOcGFya2VkLWNvbnRlbnQHZ29kYWRkeQNjb20HZWRnZWtleQNuZXQAwDgABQABAAAABQAVBWU2MDAxAWEKYWthbWFpZWRnZcBbwHIABgABAAAABQAuA24wYcB0Cmhvc3RtYXN0ZXIGYWthbWFpwCNdSwygAAAD6AAAA+gAAAPoAAAHCA=="},"ip":{"version":4,"ttl":128,"id":"aac8"},"src_ip":"192.168.113.2","dst_ip":"192.168.113.237","protocol":17,"src_port":53,"dst_port":35338,"event_start":1565200344.069921} +{"dns":{"base64":"s8cBAAABAAAAAAAABWU2MDAxAWEKYWthbWFpZWRnZQNuZXQAABwAAQ=="},"ip":{"version":4,"ttl":64,"id":"da0b"},"src_ip":"192.168.113.237","dst_ip":"192.168.113.2","protocol":17,"src_port":47901,"dst_port":53,"event_start":1565200344.070252} +{"dns":{"base64":"s8eBgAABAAAAAQAABWU2MDAxAWEKYWthbWFpZWRnZQNuZXQAABwAAcASAAYAAQAAAAUAMQNuMGHAFApob3N0bWFzdGVyBmFrYW1haQNjb20AXUsMoAAAA+gAAAPoAAAD6AAABwg="},"ip":{"version":4,"ttl":128,"id":"aac9"},"src_ip":"192.168.113.2","dst_ip":"192.168.113.237","protocol":17,"src_port":53,"dst_port":47901,"event_start":1565200344.104356} +{"fingerprints":{"tcp":"tcp/(40)()(40)(faf0)((020405b4)(04)(08)(01)(030307))"},"tcp":{"seq":3636646794,"timestamp":{"ts_val":2594833852}},"ip":{"version":4,"ttl":64,"id":"0fd2"},"src_ip":"192.168.113.237","dst_ip":"23.67.98.106","protocol":6,"src_port":58940,"dst_port":443,"event_start":1565200344.104576} +{"fingerprints":{"tcp_server":"tcp_server/(40)()(80)(faf0)((020405b4))"},"tcp_server":{"seq":1017992412},"ip":{"version":4,"ttl":128,"id":"aaca"},"src_ip":"23.67.98.106","dst_ip":"192.168.113.237","protocol":6,"src_port":443,"dst_port":58940,"event_start":1565200344.148997} +{"fingerprints":{"tls":"tls/(0303)(130213031301c02cc030009fcca9cca8ccaac02bc02f009ec024c028006bc023c0270067c00ac0140039c009c0130033009d009c003d003c0035002f00ff)((0000)(000b000403000102)(000a000c000a001d0017001e00190018)(0023)(0016)(0017)(000d0030002e040305030603080708080809080a080b080408050806040105010601030302030301020103020202040205020602)(002b0009080304030303020301)(002d00020101)(0033))"},"tls":{"client":{"version":"0303","random":"87579905baaf56dd50abade03edbe540d95f9bb7ce775317980429717da67810","session_id":"206fabaa0563a9a125084fdcab4dc405c8ab9f8593c5bf896fa65b0881d8291a","cipher_suites":"130213031301c02cc030009fcca9cca8ccaac02bc02f009ec024c028006bc023c0270067c00ac0140039c009c0130033009d009c003d003c0035002f00ff","compression_methods":"00","server_name":"parked-content.godaddy.com","session_ticket":"","features":"[\"0303\",\"130213031301c02cc030009fcca9cca8ccaac02bc02f009ec024c028006bc023c0270067c00ac0140039c009c0130033009d009c003d003c0035002f00ff\",[[\"0000\",\"001d00001a7061726b65642d636f6e74656e742e676f64616464792e636f6d\"],[\"000b\",\"03000102\"],[\"000a\",\"000a001d0017001e00190018\"],[\"0023\",\"\"],[\"0016\",\"\"],[\"0017\",\"\"],[\"000d\",\"002e040305030603080708080809080a080b080408050806040105010601030302030301020103020202040205020602\"],[\"002b\",\"080304030303020301\"],[\"002d\",\"0101\"],[\"0033\",\"0024001d002043bca9facd867ce6904b317183416e2bdd11a0e8d43546e7ea617d13da03b77b\"]]]"}},"ip":{"version":4,"ttl":64,"id":"0fd4"},"src_ip":"192.168.113.237","dst_ip":"23.67.98.106","protocol":6,"src_port":58940,"dst_port":443,"event_start":1565200344.149261} +{"fingerprints":{"tls_server":"tls_server/(0303)(c030)((ff01)(0000)(000b000403000102)(0023))"},"tls":{"server":{"certs":[{"base64":"MIIG1DCCBbygAwIBAgIIGC58kEbr9U0wDQYJKoZIhvcNAQELBQAwgbQxCzAJBgNVBAYTAlVTMRAwDgYDVQQIEwdBcml6b25hMRMwEQYDVQQHEwpTY290dHNkYWxlMRowGAYDVQQKExFHb0RhZGR5LmNvbSwgSW5jLjEtMCsGA1UECxMkaHR0cDovL2NlcnRzLmdvZGFkZHkuY29tL3JlcG9zaXRvcnkvMTMwMQYDVQQDEypHbyBEYWRkeSBTZWN1cmUgQ2VydGlmaWNhdGUgQXV0aG9yaXR5IC0gRzIwHhcNMTkwMjEyMjIzOTA0WhcNMjEwMjEyMjIzOTA0WjBjMQswCQYDVQQGEwJVUzEQMA4GA1UECBMHQXJpem9uYTETMBEGA1UEBxMKU2NvdHRzZGFsZTEVMBMGA1UEChMMR29EYWRkeSBJTkMuMRYwFAYDVQQDDA0qLmdvZGFkZHkuY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAr6Rks2Tbs+DYreyTFDcitH1PN4FdPmW8C8h/AYXAdG9csWK6YUe+pCRutxMLgaz0a/Ky85BG7kawIgKUjZILJxsD0W9sC/GHLdFXi5NtTJUK6WOViVHeiPj+Ov0i/7IlrVP6s6oqokBA66TLLVw0MnZOTVLkmOlYnxOkj/C+bhZf4MU/9Zy8z2J/v/mXBsPhfI73faVXhTChCRuQX0FA5fFhXjd2ipi3SP20mhWDLp008FxOGvSSDhXQnSWAF5jsgZ6DgoNqnrUzw/3uP5/3fAj3QqlZ1xw0cZVOuuoTwZMsxjH8dQrMz8PjGk7DriD3VXAzzMHupDML6R+r533SgwIDAQABo4IDODCCAzQwDAYDVR0TAQH/BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH/BAQDAgWgMDYGA1UdHwQvMC0wK6ApoCeGJWh0dHA6Ly9jcmwuZ29kYWRkeS5jb20vZ2RpZzJzMi0xMy5jcmwwXQYDVR0gBFYwVDBIBgtghkgBhv1tAQcXAjA5MDcGCCsGAQUFBwIBFitodHRwOi8vY2VydGlmaWNhdGVzLmdvZGFkZHkuY29tL3JlcG9zaXRvcnkvMAgGBmeBDAECAjB2BggrBgEFBQcBAQRqMGgwJAYIKwYBBQUHMAGGGGh0dHA6Ly9vY3NwLmdvZGFkZHkuY29tLzBABggrBgEFBQcwAoY0aHR0cDovL2NlcnRpZmljYXRlcy5nb2RhZGR5LmNvbS9yZXBvc2l0b3J5L2dkaWcyLmNydDAfBgNVHSMEGDAWgBRAwr0njsw0gzCiM9f7bLPwtCyAzjAlBgNVHREEHjAcgg0qLmdvZGFkZHkuY29tggtnb2RhZGR5LmNvbTAdBgNVHQ4EFgQUt6ZsfAL5i/ofSFphx3Gp2BdmMmIwggF9BgorBgEEAdZ5AgQCBIIBbQSCAWkBZwB2AKS5CZC0GFgUh7sTosxncAo8NZgE+RvfuON3zQ7IDdwQAAABaOPdGowAAAQDAEcwRQIhAMxX2XWyBa9Tn2kbG6o4HKnnYUZX35JOq57J+IpvZBx/AiAhyVYLWtPilAGU+p/F0YA/vkmayeEWStu/CjUfYsp0sQB1AO5Lvbd1zmC64UJpH6vhnmajD35fsHLYgwDEe4l6qP3LAAABaOPdHjsAAAQDAEYwRAIgWkQUZ163dVmbri6YWXhiABP2sT4+0deGa68TBuyOnMICIFxRtvIH3BmjhyymOOQTV2TQKmRGkvnFWVM06U0Ymv9ZAHYARJRlLrDuzq/EQAfYqP4owNrmgr7YyzG1P9MzlrW2gagAAAFo490ivAAABAMARzBFAiA3u9e2u7/zy6bmvj1mtciIEAIi7Tght5t2dKtMr6Oo8QIhAOI7Ylq0KUDCvFJUTFJ9BtcPDmAUcHiFHN6YX7cNgkm4MA0GCSqGSIb3DQEBCwUAA4IBAQCuEZMYHRyIsl5gftGz6R5DMDUaGDeshChb5oWMTErkuqJ+vqG4rnHy6RI2MZoMRD0MsdFBv49guEhJChqNQO++A1BW+AYSJqY/tWuE/KD0VcwmVjtPFer1tt6pYZYHqVqSaoRuUlnxiAv7YqiT3ledmIhgr3GLjuXe4nAfRSYK423rHWDhbdsZm+u9n8Hb70Sk9W49CXEyM3IqwYkMTH81HbMcWLHI3Ctp7hDnvvRyJ7tRIvvva5ZNCl1ruzm8ud+LJzEY9em/t2/41nzr9C1rK6nOiGRPkVFtqHGCxi+uR+PTnlM9E0QexuziCIS5xArv8fH5OjDxJJLrELIrex92"},{"base64":"MIIE0DCCA7igAwIBAgIBBzANBgkqhkiG9w0BAQsFADCBgzELMAkGA1UEBhMCVVMxEDAOBgNVBAgTB0FyaXpvbmExEzARBgNVBAcTClNjb3R0c2RhbGUxGjAYBgNVBAoTEUdvRGFkZHkuY29tLCBJbmMuMTEwLwYDVQQDEyhHbyBEYWRkeSBSb290IENlcnRpZmljYXRlIEF1dGhvcml0eSAtIEcyMB4XDTExMDUwMzA3MDAwMFoXDTMxMDUwMzA3MDAwMFowgbQxCzAJBgNVBAYTAlVTMRAwDgYDVQQIEwdBcml6b25hMRMwEQYDVQQHEwpTY290dHNkYWxlMRowGAYDVQQKExFHb0RhZGR5LmNvbSwgSW5jLjEtMCsGA1UECxMkaHR0cDovL2NlcnRzLmdvZGFkZHkuY29tL3JlcG9zaXRvcnkvMTMwMQYDVQQDEypHbyBEYWRkeSBTZWN1cmUgQ2VydGlmaWNhdGUgQXV0aG9yaXR5IC0gRzIwggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQC54MsQ1K92vdSTYuswZLiBCGzDBNliF44v/z5lz4/OYuY8UhzaFkVLVat4a2ODYpDOD2lsmcgaFItMzEUz6ojcnqOvK/6AYZ15V8TPLvQ/MDxdR/yaFrzDN5ZBUY4RS1T4KL7QjL7wMDge87Am+GZHY23ecSZHjzhHU9FGHbTj3ADqRay9vHHZqm8A29vNMDp5T19MR/gd71vCxJ1gO7GyQ5HYpDNO6rPWJ0+tJYqlxvTV0KaudAVkV4i1RFXULSo6Pvi4vekyCgKUZMQWOlDxSq7neTOvDCAHf+jfBDnCaQJsY1L6d8EbyHSHyLmTGFBUNUtpTrw700kuH9zB0lL7AgMBAAGjggEaMIIBFjAPBgNVHRMBAf8EBTADAQH/MA4GA1UdDwEB/wQEAwIBBjAdBgNVHQ4EFgQUQMK9J47MNIMwojPX+2yz8LQsgM4wHwYDVR0jBBgwFoAUOpqFBxBnKLbv9r0FQW4gwZTaD94wNAYIKwYBBQUHAQEEKDAmMCQGCCsGAQUFBzABhhhodHRwOi8vb2NzcC5nb2RhZGR5LmNvbS8wNQYDVR0fBC4wLDAqoCigJoYkaHR0cDovL2NybC5nb2RhZGR5LmNvbS9nZHJvb3QtZzIuY3JsMEYGA1UdIAQ/MD0wOwYEVR0gADAzMDEGCCsGAQUFBwIBFiVodHRwczovL2NlcnRzLmdvZGFkZHkuY29tL3JlcG9zaXRvcnkvMA0GCSqGSIb3DQEBCwUAA4IBAQAIfmyTEMg4uJapkEv/oV9PBO9sPpyIBslQj6Zz91cxG7685C/b+LrTW+C05+Z5Yg4MotdqY3MxtfWoSKQ7CC2iXZDXtHwlTxFWMMS2RJ17LJ3lXubvDGGqv+QqG+6EnriDfcFDzkSnE3ANkR/0yBOtg2DZ2HKocyQetawiDsoXiWJYRBuriSUBAA/NxBti21G00w9RKpv0vHP8ds42pM3Z2Czqrpv1KrKQ0U11GIo/ikGQI31bS/6kA1ibRrLDYGCD+H1QQc7CoZDDu+8CL9IVVO5EFdkKrqeKM+2xLXY2JtwE65/3YR8V3Idv7kaWKK2hJn0KCacuBKONvPi8BDAB"}],"version":"0303","random":"67ad1a7bb0556e9520178ed3fd98f1374a10a1942e319c774347392a52998b79","selected_cipher_suite":"c030","compression_method":"00","session_ticket":""}},"reassembly_properties":{"reassembled":true},"ip":{"version":4,"ttl":128,"id":"aace"},"src_ip":"23.67.98.106","dst_ip":"192.168.113.237","protocol":6,"src_port":443,"dst_port":58940,"event_start":1565200344.194201} +{"dns":{"base64":"z/IBAAABAAAAAAAAAnczA29yZwAAAQAB"},"ip":{"version":4,"ttl":64,"id":"da39"},"src_ip":"192.168.113.237","dst_ip":"192.168.113.2","protocol":17,"src_port":35956,"dst_port":53,"event_start":1565200344.560780} +{"dns":{"base64":"aEIBAAABAAAAAAAAAnczA29yZwAAHAAB"},"ip":{"version":4,"ttl":64,"id":"da3a"},"src_ip":"192.168.113.237","dst_ip":"192.168.113.2","protocol":17,"src_port":51954,"dst_port":53,"event_start":1565200344.560938} +{"dns":{"base64":"z/KBgAABAAEABgAFAnczA29yZwAAAQABwAwAAQABAAAABQAEgB40ZMAPAAIAAQAAAAUAGQJhMANvcmcLYWZpbGlhcy1uc3QEaW5mbwDADwACAAEAAAAFAAUCYzDAN8APAAIAAQAAAAUAFQJkMANvcmcLYWZpbGlhcy1uc3TAD8APAAIAAQAAAAUABQJiMMBtwA8AAgABAAAABQAFAmEywDfADwACAAEAAAAFAAUCYjLAbcCLAAEAAQAAAAUABMcTNgHAWQABAAEAAAAFAATHEzUBwJwAHAABAAAABQAQIAEFAABAAAAAAAAAAAAAAcCLABwAAQAAAAUAECABBQAADAAAAAAAAAAAAAHAWQAcAAEAAAAFABAgAQUAAAsAAAAAAAAAAAAB"},"ip":{"version":4,"ttl":128,"id":"aad5"},"src_ip":"192.168.113.2","dst_ip":"192.168.113.237","protocol":17,"src_port":53,"dst_port":35956,"event_start":1565200344.561545} +{"dns":{"base64":"aEKBgAABAAEABgAMAnczA29yZwAAHAABwAwAHAABAAAABQAQJgNACv//CASAHgA0AAAAZMAPAAIAAQAAAAUAFQJiMANvcmcLYWZpbGlhcy1uc3TAD8APAAIAAQAAAAUABQJiMsBDwA8AAgABAAAABQAZAmMwA29yZwthZmlsaWFzLW5zdARpbmZvAMAPAAIAAQAAAAUABQJhMMB1wA8AAgABAAAABQAFAmEywHXADwACAAEAAAAFAAUCZDDAQ8CXAAEAAQAAAAUABMcTOAHAqAABAAEAAAAFAATH+XABwEAAAQABAAAABQAExxM2AcBhAAEAAQAAAAUABMf5eAHAcgABAAEAAAAFAATHEzUBwLkAAQABAAAABQAExxM5AcCXABwAAQAAAAUAECABBQAADgAAAAAAAAAAAAHAqAAcAAEAAAAFABAgAQUAAEAAAAAAAAAAAAABwEAAHAABAAAABQAQIAEFAAAMAAAAAAAAAAAAAcBhABwAAQAAAAUAECABBQAASAAAAAAAAAAAAAHAcgAcAAEAAAAFABAgAQUAAAsAAAAAAAAAAAABwLkAHAABAAAABQAQIAEFAAAPAAAAAAAAAAAAAQ=="},"ip":{"version":4,"ttl":128,"id":"aad6"},"src_ip":"192.168.113.2","dst_ip":"192.168.113.237","protocol":17,"src_port":53,"dst_port":51954,"event_start":1565200344.561553} +{"fingerprints":{"tcp":"tcp/(40)()(40)(faf0)((020405b4)(04)(08)(01)(030307))"},"tcp":{"seq":3099400152,"timestamp":{"ts_val":2052283734}},"ip":{"version":4,"ttl":64,"id":"cb13"},"src_ip":"192.168.113.237","dst_ip":"128.30.52.100","protocol":6,"src_port":39040,"dst_port":443,"event_start":1565200344.561952} +{"fingerprints":{"tcp":"tcp/(40)()(40)(faf0)((020405b4)(04)(08)(01)(030307))"},"tcp":{"seq":3099400152,"timestamp":{"ts_val":2052284746}},"ip":{"version":4,"ttl":64,"id":"cb14"},"src_ip":"192.168.113.237","dst_ip":"128.30.52.100","protocol":6,"src_port":39040,"dst_port":443,"event_start":1565200345.573818} +{"fingerprints":{"tcp":"tcp/(40)()(40)(faf0)((020405b4)(04)(08)(01)(030307))"},"tcp":{"seq":3099400152,"timestamp":{"ts_val":2052286762}},"ip":{"version":4,"ttl":64,"id":"cb15"},"src_ip":"192.168.113.237","dst_ip":"128.30.52.100","protocol":6,"src_port":39040,"dst_port":443,"event_start":1565200347.589756} +{"fingerprints":{"tcp":"tcp/(40)()(40)(faf0)((020405b4)(04)(08)(01)(030307))"},"tcp":{"seq":3099400152,"timestamp":{"ts_val":2052290859}},"ip":{"version":4,"ttl":64,"id":"cb16"},"src_ip":"192.168.113.237","dst_ip":"128.30.52.100","protocol":6,"src_port":39040,"dst_port":443,"event_start":1565200351.686850} +{"fingerprints":{"tcp":"tcp/(40)()(40)(faf0)((020405b4)(04)(08)(01)(030307))"},"tcp":{"seq":3099400152,"timestamp":{"ts_val":2052299050}},"ip":{"version":4,"ttl":64,"id":"cb17"},"src_ip":"192.168.113.237","dst_ip":"128.30.52.100","protocol":6,"src_port":39040,"dst_port":443,"event_start":1565200359.877877} +{"fingerprints":{"tcp":"tcp/(40)()(40)(faf0)((020405b4)(04)(08)(01)(030307))"},"tcp":{"seq":3099400152,"timestamp":{"ts_val":2052315180}},"ip":{"version":4,"ttl":64,"id":"cb18"},"src_ip":"192.168.113.237","dst_ip":"128.30.52.100","protocol":6,"src_port":39040,"dst_port":443,"event_start":1565200376.007624} +{"fingerprints":{"tcp":"tcp/(40)()(40)(faf0)((020405b4)(04)(08)(01)(030307))"},"tcp":{"seq":3099400152,"timestamp":{"ts_val":2052348459}},"ip":{"version":4,"ttl":64,"id":"cb19"},"src_ip":"192.168.113.237","dst_ip":"128.30.52.100","protocol":6,"src_port":39040,"dst_port":443,"event_start":1565200409.286036} {"arp":{"hwtype":1,"protocol":2048,"hw_addr_len":6,"proto_addr_len":4,"opcode":"REQUEST","sender_hw_addr":"000c2974822f","sender_proto_addr":"192.168.113.237","target_hw_addr":"000000000000","target_proto_addr":"192.168.113.2"},"event_start":1565200414.406543} {"arp":{"hwtype":1,"protocol":2048,"hw_addr_len":6,"proto_addr_len":4,"opcode":"REPLY","sender_hw_addr":"005056e0b0bc","sender_proto_addr":"192.168.113.2","target_hw_addr":"000c2974822f","target_proto_addr":"192.168.113.237"},"event_start":1565200414.406825} {"arp":{"hwtype":1,"protocol":2048,"hw_addr_len":6,"proto_addr_len":4,"opcode":"REQUEST","sender_hw_addr":"000c2974822f","sender_proto_addr":"192.168.113.237","target_hw_addr":"000000000000","target_proto_addr":"192.168.113.254"},"event_start":1565200417.989952} {"arp":{"hwtype":1,"protocol":2048,"hw_addr_len":6,"proto_addr_len":4,"opcode":"REPLY","sender_hw_addr":"005056e64e80","sender_proto_addr":"192.168.113.254","target_hw_addr":"000c2974822f","target_proto_addr":"192.168.113.237"},"event_start":1565200417.990340} -{"ip":{"version":4,"ttl":64,"id":"0003"},"dns":{"base64":"1DIBAAABAAAAAAAAA2dldAVhZG9iZQNjb20AAAEAAQ=="},"src_ip":"192.168.113.237","dst_ip":"192.168.113.2","protocol":17,"src_port":32824,"dst_port":53,"event_start":1565200421.753494} -{"ip":{"version":4,"ttl":64,"id":"0004"},"dns":{"base64":"BVEBAAABAAAAAAAAA2dldAVhZG9iZQNjb20AABwAAQ=="},"src_ip":"192.168.113.237","dst_ip":"192.168.113.2","protocol":17,"src_port":50515,"dst_port":53,"event_start":1565200421.753716} -{"ip":{"version":4,"ttl":128,"id":"aad9"},"dns":{"base64":"BVGBgAABAAEAAQAAA2dldAVhZG9iZQNjb20AABwAAcAMAAUAAQAAAAUACwNnZXQEd2lwNMAQwC8ABgABAAAABQAtCW9yMWd0bTAwM8AQCmhvc3RtYXN0ZXLAQnhYS3EAACowAAAOEAAJOoAAAAA8"},"src_ip":"192.168.113.2","dst_ip":"192.168.113.237","protocol":17,"src_port":53,"dst_port":50515,"event_start":1565200421.800736} -{"ip":{"version":4,"ttl":64,"id":"000e"},"dns":{"base64":"Vg0BAAABAAAAAAAAA2dldAR3aXA0BWFkb2JlA2NvbQAAHAAB"},"src_ip":"192.168.113.237","dst_ip":"192.168.113.2","protocol":17,"src_port":52579,"dst_port":53,"event_start":1565200421.800928} -{"ip":{"version":4,"ttl":128,"id":"aada"},"dns":{"base64":"1DKBgAABAAIADQANA2dldAVhZG9iZQNjb20AAAEAAcAMAAUAAQAAAAUACwNnZXQEd2lwNMAQwCsAAQABAAAABQAEwJOCP8AWAAIAAQAAAAUAFAFiDGd0bGQtc2VydmVycwNuZXQAwBYAAgABAAAABQAEAWPAVMAWAAIAAQAAAAUABAFqwFTAFgACAAEAAAAFAAQBYcBUwBYAAgABAAAABQAEAWTAVMAWAAIAAQAAAAUABAFpwFTAFgACAAEAAAAFAAQBZcBUwBYAAgABAAAABQAEAWvAVMAWAAIAAQAAAAUABAFnwFTAFgACAAEAAAAFAAQBbcBUwBYAAgABAAAABQAEAWjAVMAWAAIAAQAAAAUABAFswFTAFgACAAEAAAAFAAQBZsBUwJIAAQABAAAABQAEwAUGHsBSAAEAAQAAAAUABMAhDh7AcgABAAEAAAAFAATAGlwewKIAAQABAAAABQAEwB9QHsDCAAEAAQAAAAUABMAMXh7BIgABAAEAAAAFAATAIzMewOIAAQABAAAABQAEwCpdHsECAAEAAQAAAAUABMA2cB7AsgABAAEAAAAFAATAK6wewIIAAQABAAAABQAEwDBPHsDSAAEAAQAAAAUABMA0sh7BEgABAAEAAAAFAATAKaIewPIAAQABAAAABQAEwDdTHg=="},"src_ip":"192.168.113.2","dst_ip":"192.168.113.237","protocol":17,"src_port":53,"dst_port":32824,"event_start":1565200421.802254} -{"ip":{"version":4,"ttl":128,"id":"aadb"},"dns":{"base64":"Vg2BgAABAAAAAQAAA2dldAR3aXA0BWFkb2JlA2NvbQAAHAABwBAABgABAAAABQAtCW9yMWd0bTAwM8AVCmhvc3RtYXN0ZXLAMHhYS3EAACowAAAOEAAJOoAAAAA8"},"src_ip":"192.168.113.2","dst_ip":"192.168.113.237","protocol":17,"src_port":53,"dst_port":52579,"event_start":1565200421.835676} -{"ip":{"version":4,"ttl":64,"id":"0d76"},"fingerprints":{"tcp":"tcp/(40)()(40)(faf0)((020405b4)(04)(08)(01)(030307))"},"tcp":{"seq":1929389367,"timestamp":{"ts_val":3155188397}},"src_ip":"192.168.113.237","dst_ip":"192.147.130.63","protocol":6,"src_port":56050,"dst_port":443,"event_start":1565200421.836043} -{"ip":{"version":4,"ttl":128,"id":"aadc"},"fingerprints":{"tcp_server":"tcp_server/(40)()(80)(faf0)((020405b4))"},"tcp_server":{"seq":4232032521},"src_ip":"192.147.130.63","dst_ip":"192.168.113.237","protocol":6,"src_port":443,"dst_port":56050,"event_start":1565200421.938667} -{"ip":{"version":4,"ttl":64,"id":"0d78"},"fingerprints":{"tls":"tls/(0303)(130213031301c02cc030009fcca9cca8ccaac02bc02f009ec024c028006bc023c0270067c00ac0140039c009c0130033009d009c003d003c0035002f00ff)((0000)(000b000403000102)(000a000c000a001d0017001e00190018)(0023)(0016)(0017)(000d0030002e040305030603080708080809080a080b080408050806040105010601030302030301020103020202040205020602)(002b0009080304030303020301)(002d00020101)(0033))"},"tls":{"client":{"version":"0303","random":"4580e8982c46320e8c3ebebd8fcb5f04e70b3465a920e6ea1927e5581dbd80db","session_id":"4f42d576c572bf119e2a4d1a90d6b485ace32f382c8390b8f2fd5a420bf8d44e","cipher_suites":"130213031301c02cc030009fcca9cca8ccaac02bc02f009ec024c028006bc023c0270067c00ac0140039c009c0130033009d009c003d003c0035002f00ff","compression_methods":"00","server_name":"get.adobe.com","session_ticket":"","features":"[\"0303\",\"130213031301c02cc030009fcca9cca8ccaac02bc02f009ec024c028006bc023c0270067c00ac0140039c009c0130033009d009c003d003c0035002f00ff\",[[\"0000\",\"001000000d6765742e61646f62652e636f6d\"],[\"000b\",\"03000102\"],[\"000a\",\"000a001d0017001e00190018\"],[\"0023\",\"\"],[\"0016\",\"\"],[\"0017\",\"\"],[\"000d\",\"002e040305030603080708080809080a080b080408050806040105010601030302030301020103020202040205020602\"],[\"002b\",\"080304030303020301\"],[\"002d\",\"0101\"],[\"0033\",\"0024001d002016f7837fd37587def563e0ed687ab228534f13f5ba10be95d9b2614393219e26\"]]]"}},"src_ip":"192.168.113.237","dst_ip":"192.147.130.63","protocol":6,"src_port":56050,"dst_port":443,"event_start":1565200421.939433} -{"ip":{"version":4,"ttl":128,"id":"aae0"},"fingerprints":{"tls_server":"tls_server/(0303)(c030)((ff01)(0000)(000b00020100))"},"tls":{"server":{"certs":[{"base64":"MIIFLzCCBBegAwIBAgIQB0B1cdqi3EvrQNMDvCLFLzANBgkqhkiG9w0BAQsFADBNMQswCQYDVQQGEwJVUzEVMBMGA1UEChMMRGlnaUNlcnQgSW5jMScwJQYDVQQDEx5EaWdpQ2VydCBTSEEyIFNlY3VyZSBTZXJ2ZXIgQ0EwHhcNMTYwOTIzMDAwMDAwWhcNMTkwOTI3MTIwMDAwWjByMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTERMA8GA1UEBxMIU2FuIEpvc2UxIzAhBgNVBAoTGkFkb2JlIFN5c3RlbXMgSW5jb3Jwb3JhdGVkMRYwFAYDVQQDEw1nZXQuYWRvYmUuY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAveM8fv/wEUZyOU3P1HZbEfXssMIqSVViH1GmY4WTN4BjXvKAqhyZZ4d9L9cwwc0wYpZd0eBiKDm82JXN6z1cXvTP9P8DKS91R2FYuk5EFHnLQDI/hHD6Akrw1oO+3Jl9TCnP9ERtJ+ym/QCARGUi+0drECWRnLFUB6pp+OjXEBW4ksqQSMu+5gcJBGLaHGA7FoaPPZiBflGiSYtleD59yTFdn1gExGUjAEV0vtRyn78xLfIm4BjH4ig5ourSePT4sukw+pl7byg1oHlvRBXdivKISGeGDDp4iRgn6o3EeHHv8+SqbtKYN5O2Lt/6nIOAeSBUHgAwMuXjbgbYOTbEZwIDAQABo4IB5DCCAeAwHwYDVR0jBBgwFoAUD4BhHIIxYdUvKOeNRji0LOHG2eIwHQYDVR0OBBYEFL0p+ADBly695ldqsOYJRJDY3p3eMCgGA1UdEQQhMB+CDWdldC5hZG9iZS5jb22CDmdldDIuYWRvYmUuY29tMA4GA1UdDwEB/wQEAwIFoDAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwawYDVR0fBGQwYjAvoC2gK4YpaHR0cDovL2NybDMuZGlnaWNlcnQuY29tL3NzY2Etc2hhMi1nNS5jcmwwL6AtoCuGKWh0dHA6Ly9jcmw0LmRpZ2ljZXJ0LmNvbS9zc2NhLXNoYTItZzUuY3JsMEwGA1UdIARFMEMwNwYJYIZIAYb9bAEBMCowKAYIKwYBBQUHAgEWHGh0dHBzOi8vd3d3LmRpZ2ljZXJ0LmNvbS9DUFMwCAYGZ4EMAQICMHwGCCsGAQUFBwEBBHAwbjAkBggrBgEFBQcwAYYYaHR0cDovL29jc3AuZGlnaWNlcnQuY29tMEYGCCsGAQUFBzAChjpodHRwOi8vY2FjZXJ0cy5kaWdpY2VydC5jb20vRGlnaUNlcnRTSEEyU2VjdXJlU2VydmVyQ0EuY3J0MAwGA1UdEwEB/wQCMAAwDQYJKoZIhvcNAQELBQADggEBAGFvKSUJ3FHGYnmuPNFfUJ9TUF38sGQI3LYN4fxiTkFyt+KzxI465di9ik7gC+IpyPHZkHd4Xt8U5s4xe9v1OCnhrpKsmG+jUYq4VVHZZ9JJhhpdpPqKgkCYc3ulUM981/59HH74HzOQpSifdceEh+i1jVuVbWTEKkIV0yzW8W18fGCWmWD922P7Vi0be2EnvLDlilWDRfTnECAt5b/PpJmt9ww7X2NmAQaIlU++zkaQO635jNqdrxoTEq7Ae6Am6aIbazcGjgohFhoE0dzl2L6/cl8kbEWo+cbfUvIpMRvFaP962YyXFq8D7il10tVgmBQUkY4BNn5cZ9eEqmePPnw="},{"base64":"MIIElDCCA3ygAwIBAgIQAf2j627KdciIQ4tyS8+8kTANBgkqhkiG9w0BAQsFADBhMQswCQYDVQQGEwJVUzEVMBMGA1UEChMMRGlnaUNlcnQgSW5jMRkwFwYDVQQLExB3d3cuZGlnaWNlcnQuY29tMSAwHgYDVQQDExdEaWdpQ2VydCBHbG9iYWwgUm9vdCBDQTAeFw0xMzAzMDgxMjAwMDBaFw0yMzAzMDgxMjAwMDBaME0xCzAJBgNVBAYTAlVTMRUwEwYDVQQKEwxEaWdpQ2VydCBJbmMxJzAlBgNVBAMTHkRpZ2lDZXJ0IFNIQTIgU2VjdXJlIFNlcnZlciBDQTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANyuWJBNwcQwFZA1W248ghX1LFy949v/cUP6ZCWA1O4Yok3wZtAKc24RmDYXZK83nf36QYSvx6+M/hpzTc8zl5CilodTgyu5pnVILR1WN3vaMTIa16yrBvSqXUu3R0bdKpPDkC55gIDvEwRqFDu1m5K+wgdlTvza/P96rtxcflUxDOg5B6TXvi/TC2rSsd9f/ld0Uzs1gN2ujkSYs58O09rg1/RrKatEp0tYhG2SS4HD2nOLEpdIkARFdRrdNzGXkujNVA075ME/OV4uuPNcfhCOhkEAjUVmR7ChZc6gqikJTvOX6+guqw9ypzAO+sf0/RR3w6RbKFfCs/mC/bdFWJsCAwEAAaOCAVowggFWMBIGA1UdEwEB/wQIMAYBAf8CAQAwDgYDVR0PAQH/BAQDAgGGMDQGCCsGAQUFBwEBBCgwJjAkBggrBgEFBQcwAYYYaHR0cDovL29jc3AuZGlnaWNlcnQuY29tMHsGA1UdHwR0MHIwN6A1oDOGMWh0dHA6Ly9jcmwzLmRpZ2ljZXJ0LmNvbS9EaWdpQ2VydEdsb2JhbFJvb3RDQS5jcmwwN6A1oDOGMWh0dHA6Ly9jcmw0LmRpZ2ljZXJ0LmNvbS9EaWdpQ2VydEdsb2JhbFJvb3RDQS5jcmwwPQYDVR0gBDYwNDAyBgRVHSAAMCowKAYIKwYBBQUHAgEWHGh0dHBzOi8vd3d3LmRpZ2ljZXJ0LmNvbS9DUFMwHQYDVR0OBBYEFA+AYRyCMWHVLyjnjUY4tCzhxtniMB8GA1UdIwQYMBaAFAPeUDVW0Uy7ZvCj4hsbw5eyPdFVMA0GCSqGSIb3DQEBCwUAA4IBAQAjPt9L0jFCpbZ+QlwaRMxp0Wi0XUvgBCFsS+JtzLHgl4+mUwnNqipl5TlPHoOlblyYoiQm5vuh7ZPHLgLGTUq/sELfeNqzqPlt/yGFUzZgTHbO7Djc1lGA8MXW5dRNJ2Srm8c+cftIl7gzbckTB+6WohsYFfZcTEDts8Ls/3HB40f/1LkAtDdC2iDJ6m6K7hQGrn2iWZiIqBtvLfTyyRRfJs8sjX7tN8Cp1Tm5gr8ZDOo0rwAhaPitc+LJMto4JQtV05od8GiG7S5BNO98pVAdvzr508EIDObtHopYJeS4d60tbvVS3bR0j6tJLp07kzQoH3jOlOrHvdPJbRzeXDLz"}],"version":"0303","random":"62c0266d995d81e3c19e41b7f9e7f613e987422560332299cf8f63fb3bdd7ad5","selected_cipher_suite":"c030","compression_method":"00"}},"reassembly_properties":{"reassembled":true},"src_ip":"192.147.130.63","dst_ip":"192.168.113.237","protocol":6,"src_port":443,"dst_port":56050,"event_start":1565200422.054770} -{"ip":{"version":4,"ttl":64,"id":"2131"},"fingerprints":{"tcp":"tcp/(40)()(40)(faf0)((020405b4)(04)(08)(01)(030307))"},"tcp":{"seq":393677304,"timestamp":{"ts_val":1586568989}},"src_ip":"192.168.113.237","dst_ip":"184.50.35.161","protocol":6,"src_port":57026,"dst_port":443,"event_start":1565200422.379884} -{"ip":{"version":4,"ttl":128,"id":"aae8"},"fingerprints":{"tcp_server":"tcp_server/(40)()(80)(faf0)((020405b4))"},"tcp_server":{"seq":3018673429},"src_ip":"184.50.35.161","dst_ip":"192.168.113.237","protocol":6,"src_port":443,"dst_port":57026,"event_start":1565200422.420718} -{"ip":{"version":4,"ttl":64,"id":"2133"},"fingerprints":{"tls":"tls/(0303)(130213031301c02cc030009fcca9cca8ccaac02bc02f009ec024c028006bc023c0270067c00ac0140039c009c0130033009d009c003d003c0035002f00ff)((0000)(000b000403000102)(000a000c000a001d0017001e00190018)(0023)(0016)(0017)(000d0030002e040305030603080708080809080a080b080408050806040105010601030302030301020103020202040205020602)(002b0009080304030303020301)(002d00020101)(0033))"},"tls":{"client":{"version":"0303","random":"980a449850fdcf8f05f22863f49f01aeeb444f5e751bfab06bf53109a6b7b159","session_id":"3b17d8dbacaaa05faef48543a1361152326d7f86ecbf00e116f6c8a6c66109a0","cipher_suites":"130213031301c02cc030009fcca9cca8ccaac02bc02f009ec024c028006bc023c0270067c00ac0140039c009c0130033009d009c003d003c0035002f00ff","compression_methods":"00","server_name":"www.adobe.com","session_ticket":"","features":"[\"0303\",\"130213031301c02cc030009fcca9cca8ccaac02bc02f009ec024c028006bc023c0270067c00ac0140039c009c0130033009d009c003d003c0035002f00ff\",[[\"0000\",\"001000000d7777772e61646f62652e636f6d\"],[\"000b\",\"03000102\"],[\"000a\",\"000a001d0017001e00190018\"],[\"0023\",\"\"],[\"0016\",\"\"],[\"0017\",\"\"],[\"000d\",\"002e040305030603080708080809080a080b080408050806040105010601030302030301020103020202040205020602\"],[\"002b\",\"080304030303020301\"],[\"002d\",\"0101\"],[\"0033\",\"0024001d0020c721a112f780736cc9ed2adede8ee7a71ce61321cfe76245631c177995ee8b3a\"]]]"}},"src_ip":"192.168.113.237","dst_ip":"184.50.35.161","protocol":6,"src_port":57026,"dst_port":443,"event_start":1565200422.420984} -{"ip":{"version":4,"ttl":128,"id":"aaed"},"fingerprints":{"tls_server":"tls_server/(0303)(c030)((ff01)(0000)(000b000403000102)(0023))"},"tls":{"server":{"certs":[{"base64":"MIIGNzCCBR+gAwIBAgIQCg503M6e7LVhG69g0BbsbzANBgkqhkiG9w0BAQsFADBNMQswCQYDVQQGEwJVUzEVMBMGA1UEChMMRGlnaUNlcnQgSW5jMScwJQYDVQQDEx5EaWdpQ2VydCBTSEEyIFNlY3VyZSBTZXJ2ZXIgQ0EwHhcNMTgxMTA2MDAwMDAwWhcNMjAwMjA1MTIwMDAwWjB9MQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTERMA8GA1UEBxMIU2FuIEpvc2UxIzAhBgNVBAoTGkFkb2JlIFN5c3RlbXMgSW5jb3Jwb3JhdGVkMQswCQYDVQQLEwJJUzEUMBIGA1UEAwwLKi5hZG9iZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDxHy02hH5awt6eB0ZB5yfF3ZQO+955tDn+W6IfR+yLQFIi931YwkIxAM7M2VD1bm760h29lI6RiYFpiW0oPUnkt8zEpdayi2OHH5Ap6nQSDlEHW9BQpMXLBVep0HG6e8Qz2uiW84K8qlERWRBoDf7LZkJ+j3VGVPX50rD4BW1SjiHw5Hil+mb9tR6z2OMHFhoMYMYhOL4HSRnv3Nj4Xg1f1BfKwYVt4KZe1rnUmqJFVXk0iwdPv71JYh96Rj1CeaYCSG3PhL1CctmEtzfeVFX++kCM1PXeQsJtGEGiITu2FBBFzdheqTxdC9/LOnM9WgmqhVYoScwqo43O34sUx2oJAgMBAAGjggLhMIIC3TAfBgNVHSMEGDAWgBQPgGEcgjFh1S8o541GOLQs4cbZ4jAdBgNVHQ4EFgQUKL0O8nlF4pVkpaFcldo1cKl5FJQwIQYDVR0RBBowGIILKi5hZG9iZS5jb22CCWFkb2JlLmNvbTAOBgNVHQ8BAf8EBAMCBaAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMGsGA1UdHwRkMGIwL6AtoCuGKWh0dHA6Ly9jcmwzLmRpZ2ljZXJ0LmNvbS9zc2NhLXNoYTItZzYuY3JsMC+gLaArhilodHRwOi8vY3JsNC5kaWdpY2VydC5jb20vc3NjYS1zaGEyLWc2LmNybDBMBgNVHSAERTBDMDcGCWCGSAGG/WwBATAqMCgGCCsGAQUFBwIBFhxodHRwczovL3d3dy5kaWdpY2VydC5jb20vQ1BTMAgGBmeBDAECAjB8BggrBgEFBQcBAQRwMG4wJAYIKwYBBQUHMAGGGGh0dHA6Ly9vY3NwLmRpZ2ljZXJ0LmNvbTBGBggrBgEFBQcwAoY6aHR0cDovL2NhY2VydHMuZGlnaWNlcnQuY29tL0RpZ2lDZXJ0U0hBMlNlY3VyZVNlcnZlckNBLmNydDAJBgNVHRMEAjAAMIIBAwYKKwYBBAHWeQIEAgSB9ASB8QDvAHUApLkJkLQYWBSHuxOizGdwCjw1mAT5G9+443fNDsgN3BAAAAFm6OYBSAAABAMARjBEAiAGzoFtL3H38sDIqCoGUtHh+mft+u6+95qWVkiz6tckEAIgNIqKfTS1ssN9aslsQmNTqxw00g0VQRqLRx/yqDpOEmAAdgCHdb/nWXz4jEOZX73zbv9WjUdWNv9KtWDBtOr/XqCDDwAAAWbo5gIhAAAEAwBHMEUCIFCsSzZXC6mRE0/g7xTRXY94byQOwpjY13VAd0nv+VdIAiEA0hop7zM0YHyWGkiK1emLlPEj8tpv2L0uo/eC5AfqdMAwDQYJKoZIhvcNAQELBQADggEBAApznoYz6ONoMxctjevgb6j9S3Nne3QdHSbAHzQeYzClDxIJNp/Ob+38tShcMwpu2lBFb0QL3QNRwOZ5xQk4O0h+ul0t1YVDKJw9Mz2qwuOt4mUp+u764vmHDrvZxJxGQ/c6oTsm4biRKBZbI6PTXwz61DhsQ2jtWNATNGWDsdv6MS2F12blpNFdOVzXVOWRb+E7fbZC9VU0l760VFrYB/UuLJ7xb7+3fN04l1KFQE2wtfwdbVZEdYe72eNxIZDmIPxFFotlyzhdsWoGV3WGXTbjVzc3vb3SRQ3E4QTouANow1YA3wwRJWEarmiPN7L+P4sMrDAYF2im1b2YY2Iem+Y="},{"base64":"MIIElDCCA3ygAwIBAgIQAf2j627KdciIQ4tyS8+8kTANBgkqhkiG9w0BAQsFADBhMQswCQYDVQQGEwJVUzEVMBMGA1UEChMMRGlnaUNlcnQgSW5jMRkwFwYDVQQLExB3d3cuZGlnaWNlcnQuY29tMSAwHgYDVQQDExdEaWdpQ2VydCBHbG9iYWwgUm9vdCBDQTAeFw0xMzAzMDgxMjAwMDBaFw0yMzAzMDgxMjAwMDBaME0xCzAJBgNVBAYTAlVTMRUwEwYDVQQKEwxEaWdpQ2VydCBJbmMxJzAlBgNVBAMTHkRpZ2lDZXJ0IFNIQTIgU2VjdXJlIFNlcnZlciBDQTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANyuWJBNwcQwFZA1W248ghX1LFy949v/cUP6ZCWA1O4Yok3wZtAKc24RmDYXZK83nf36QYSvx6+M/hpzTc8zl5CilodTgyu5pnVILR1WN3vaMTIa16yrBvSqXUu3R0bdKpPDkC55gIDvEwRqFDu1m5K+wgdlTvza/P96rtxcflUxDOg5B6TXvi/TC2rSsd9f/ld0Uzs1gN2ujkSYs58O09rg1/RrKatEp0tYhG2SS4HD2nOLEpdIkARFdRrdNzGXkujNVA075ME/OV4uuPNcfhCOhkEAjUVmR7ChZc6gqikJTvOX6+guqw9ypzAO+sf0/RR3w6RbKFfCs/mC/bdFWJsCAwEAAaOCAVowggFWMBIGA1UdEwEB/wQIMAYBAf8CAQAwDgYDVR0PAQH/BAQDAgGGMDQGCCsGAQUFBwEBBCgwJjAkBggrBgEFBQcwAYYYaHR0cDovL29jc3AuZGlnaWNlcnQuY29tMHsGA1UdHwR0MHIwN6A1oDOGMWh0dHA6Ly9jcmwzLmRpZ2ljZXJ0LmNvbS9EaWdpQ2VydEdsb2JhbFJvb3RDQS5jcmwwN6A1oDOGMWh0dHA6Ly9jcmw0LmRpZ2ljZXJ0LmNvbS9EaWdpQ2VydEdsb2JhbFJvb3RDQS5jcmwwPQYDVR0gBDYwNDAyBgRVHSAAMCowKAYIKwYBBQUHAgEWHGh0dHBzOi8vd3d3LmRpZ2ljZXJ0LmNvbS9DUFMwHQYDVR0OBBYEFA+AYRyCMWHVLyjnjUY4tCzhxtniMB8GA1UdIwQYMBaAFAPeUDVW0Uy7ZvCj4hsbw5eyPdFVMA0GCSqGSIb3DQEBCwUAA4IBAQAjPt9L0jFCpbZ+QlwaRMxp0Wi0XUvgBCFsS+JtzLHgl4+mUwnNqipl5TlPHoOlblyYoiQm5vuh7ZPHLgLGTUq/sELfeNqzqPlt/yGFUzZgTHbO7Djc1lGA8MXW5dRNJ2Srm8c+cftIl7gzbckTB+6WohsYFfZcTEDts8Ls/3HB40f/1LkAtDdC2iDJ6m6K7hQGrn2iWZiIqBtvLfTyyRRfJs8sjX7tN8Cp1Tm5gr8ZDOo0rwAhaPitc+LJMto4JQtV05od8GiG7S5BNO98pVAdvzr508EIDObtHopYJeS4d60tbvVS3bR0j6tJLp07kzQoH3jOlOrHvdPJbRzeXDLz"}],"version":"0303","random":"58e1f5f3abc204ba923a604041270da71dece2af5303e1320a74587977ca1a7e","selected_cipher_suite":"c030","compression_method":"00","session_ticket":""}},"reassembly_properties":{"reassembled":true},"src_ip":"184.50.35.161","dst_ip":"192.168.113.237","protocol":6,"src_port":443,"dst_port":57026,"event_start":1565200422.462963} -{"ip":{"version":4,"ttl":64,"id":"00b5"},"dns":{"base64":"Dg8BAAABAAAAAAAABmFwYWNoZQNvcmcAAAEAAQ=="},"src_ip":"192.168.113.237","dst_ip":"192.168.113.2","protocol":17,"src_port":42949,"dst_port":53,"event_start":1565200422.709093} -{"ip":{"version":4,"ttl":64,"id":"00b6"},"dns":{"base64":"q/0BAAABAAAAAAAABmFwYWNoZQNvcmcAABwAAQ=="},"src_ip":"192.168.113.237","dst_ip":"192.168.113.2","protocol":17,"src_port":36419,"dst_port":53,"event_start":1565200422.709264} -{"ip":{"version":4,"ttl":128,"id":"ab3c"},"dns":{"base64":"Dg+BgAABAAIABgAMBmFwYWNoZQNvcmcAAAEAAcAMAAEAAQAAAAUABF/YGCDADAABAAEAAAAFAAQoT04BwBMAAgABAAAABQAZAmEwA29yZwthZmlsaWFzLW5zdARpbmZvAMATAAIAAQAAAAUABQJjMMBLwBMAAgABAAAABQAVAmIwA29yZwthZmlsaWFzLW5zdMATwBMAAgABAAAABQAFAmEywEvAEwACAAEAAAAFAAUCZDDAgcATAAIAAQAAAAUABQJiMsCBwEgAAQABAAAABQAExxM4AcCfAAEAAQAAAAUABMf5cAHAfgABAAEAAAAFAATHEzYBwMEAAQABAAAABQAEx/l4AcBtAAEAAQAAAAUABMcTNQHAsAABAAEAAAAFAATHEzkBwEgAHAABAAAABQAQIAEFAAAOAAAAAAAAAAAAAcCfABwAAQAAAAUAECABBQAAQAAAAAAAAAAAAAHAfgAcAAEAAAAFABAgAQUAAAwAAAAAAAAAAAABwMEAHAABAAAABQAQIAEFAABIAAAAAAAAAAAAAcBtABwAAQAAAAUAECABBQAACwAAAAAAAAAAAAHAsAAcAAEAAAAFABAgAQUAAA8AAAAAAAAAAAAB"},"src_ip":"192.168.113.2","dst_ip":"192.168.113.237","protocol":17,"src_port":53,"dst_port":42949,"event_start":1565200422.753323} -{"ip":{"version":4,"ttl":128,"id":"ab3d"},"dns":{"base64":"q/2BgAABAAAAAQAABmFwYWNoZQNvcmcAABwAAcAMAAYAAQAAAAUAPANuczIHc3VyZm5ldAJubAAVaG9zdG1hc3Rlci0yMDA1LWFscGhhwAx4WLk0AAAOEAAAA4QACTqAAAAOEA=="},"src_ip":"192.168.113.2","dst_ip":"192.168.113.237","protocol":17,"src_port":53,"dst_port":36419,"event_start":1565200422.755408} -{"ip":{"version":4,"ttl":64,"id":"9451"},"fingerprints":{"tcp":"tcp/(40)()(40)(faf0)((020405b4)(04)(08)(01)(030307))"},"tcp":{"seq":3762142582,"timestamp":{"ts_val":2887492374}},"src_ip":"192.168.113.237","dst_ip":"95.216.24.32","protocol":6,"src_port":50428,"dst_port":443,"event_start":1565200422.755645} -{"ip":{"version":4,"ttl":128,"id":"ab3e"},"fingerprints":{"tcp_server":"tcp_server/(40)()(80)(faf0)((020405b4))"},"tcp_server":{"seq":3162854891},"src_ip":"95.216.24.32","dst_ip":"192.168.113.237","protocol":6,"src_port":443,"dst_port":50428,"event_start":1565200422.920099} -{"ip":{"version":4,"ttl":64,"id":"9453"},"fingerprints":{"tls":"tls/(0303)(130213031301c02cc030009fcca9cca8ccaac02bc02f009ec024c028006bc023c0270067c00ac0140039c009c0130033009d009c003d003c0035002f00ff)((0000)(000b000403000102)(000a000c000a001d0017001e00190018)(0023)(0016)(0017)(000d0030002e040305030603080708080809080a080b080408050806040105010601030302030301020103020202040205020602)(002b0009080304030303020301)(002d00020101)(0033))"},"tls":{"client":{"version":"0303","random":"b8829b1e58430c0b2e71f20970fcf39e8a7237831552f4ed8a3a2f9c397362c3","session_id":"c5e23f0851e7802e50338689b971db694fbc86a3bd3baed466a86c177467019a","cipher_suites":"130213031301c02cc030009fcca9cca8ccaac02bc02f009ec024c028006bc023c0270067c00ac0140039c009c0130033009d009c003d003c0035002f00ff","compression_methods":"00","server_name":"apache.org","session_ticket":"","features":"[\"0303\",\"130213031301c02cc030009fcca9cca8ccaac02bc02f009ec024c028006bc023c0270067c00ac0140039c009c0130033009d009c003d003c0035002f00ff\",[[\"0000\",\"000d00000a6170616368652e6f7267\"],[\"000b\",\"03000102\"],[\"000a\",\"000a001d0017001e00190018\"],[\"0023\",\"\"],[\"0016\",\"\"],[\"0017\",\"\"],[\"000d\",\"002e040305030603080708080809080a080b080408050806040105010601030302030301020103020202040205020602\"],[\"002b\",\"080304030303020301\"],[\"002d\",\"0101\"],[\"0033\",\"0024001d00209546be59b60942dbbfd5044a20ee7f5925c88112d06816010e77a16c56ffea4f\"]]]"}},"src_ip":"192.168.113.237","dst_ip":"95.216.24.32","protocol":6,"src_port":50428,"dst_port":443,"event_start":1565200422.920415} -{"ip":{"version":4,"ttl":128,"id":"ab44"},"fingerprints":{"tls_server":"tls_server/(0303)(c030)((0000)(ff01)(000b000403000102)(0023))"},"tls":{"server":{"certs":[{"base64":"MIIGbzCCBVegAwIBAgIRAIk8VkaPe0wk+AMX0nAFalswDQYJKoZIhvcNAQELBQAwgY8xCzAJBgNVBAYTAkdCMRswGQYDVQQIExJHcmVhdGVyIE1hbmNoZXN0ZXIxEDAOBgNVBAcTB1NhbGZvcmQxGDAWBgNVBAoTD1NlY3RpZ28gTGltaXRlZDE3MDUGA1UEAxMuU2VjdGlnbyBSU0EgRG9tYWluIFZhbGlkYXRpb24gU2VjdXJlIFNlcnZlciBDQTAeFw0xOTA3MDEwMDAwMDBaFw0yMTA2MzAyMzU5NTlaMFkxITAfBgNVBAsTGERvbWFpbiBDb250cm9sIFZhbGlkYXRlZDEdMBsGA1UECxMUUG9zaXRpdmVTU0wgV2lsZGNhcmQxFTATBgNVBAMMDCouYXBhY2hlLm9yZzCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANCOPYE/2bjXXHBCii4IappWRj1rvuNtPfN4CyBvSeT8PX8GzgioOv6/QNBQ8xMQyFQoQOKAQ3kKY1VbHtyHBnXB7PVENeXF9ATB8D/G1b2Mh7D7HXHFgKH4oDEIRZABak4kuOcplgnqV8dhIvpdyN7bUkDzGutKS5cKROIMG7k6VrcdxsFrmnaYedh/mqEEGTz/WF3cWKiWIQftHNMvuqF/CWLqkuQFt2IPHr/Flg70HxSYpMW+ZhLZ0VSJTXf6Bs0XRUk3ADuZJhQY5bPAh3xzvpVCY7C1c7F3kbX9X2MKvJDzpcMgLQ9zvjFfqAsGehTC1pm9SC/QBu0yHCqnVykCAwEAAaOCAvkwggL1MB8GA1UdIwQYMBaAFI2MXsRUrYrhd+mb+ZsF4bgBjWHhMB0GA1UdDgQWBBRe2N1Z7wYz82ZGAeeh++C/zsujhTAOBgNVHQ8BAf8EBAMCBaAwDAYDVR0TAQH/BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwSQYDVR0gBEIwQDA0BgsrBgEEAbIxAQICBzAlMCMGCCsGAQUFBwIBFhdodHRwczovL3NlY3RpZ28uY29tL0NQUzAIBgZngQwBAgEwgYQGCCsGAQUFBwEBBHgwdjBPBggrBgEFBQcwAoZDaHR0cDovL2NydC5zZWN0aWdvLmNvbS9TZWN0aWdvUlNBRG9tYWluVmFsaWRhdGlvblNlY3VyZVNlcnZlckNBLmNydDAjBggrBgEFBQcwAYYXaHR0cDovL29jc3Auc2VjdGlnby5jb20wIwYDVR0RBBwwGoIMKi5hcGFjaGUub3JnggphcGFjaGUub3JnMIIBfQYKKwYBBAHWeQIEAgSCAW0EggFpAWcAdwC72d+8H4pxtZOUI5eqkntHOFeVCqtS6BqQlmQ2jh7RhQAAAWuvQIWkAAAEAwBIMEYCIQCitZL3CSKKG5roV4KZhA7D/nDIpnehh3ewg/kUekofkwIhALTO4DcZ297TxvHvJCyvI9KLuFAVZqPwKBJJpREKRWmQAHUARJRlLrDuzq/EQAfYqP4owNrmgr7YyzG1P9MzlrW2gagAAAFrr0CFzgAABAMARjBEAiA2YAeKi+G8qGoeDL8Zy63z2sglcYthlhiACASoFlI5EQIgFWoG+X3ZoD+V+Yt1nSj/DEoplgCea7yumRzGyEJqE/8AdQBvU3asMfAxGdiZAKRRFf93FRwR2QLBACkGjbIImjfZEwAAAWuvQIYVAAAEAwBGMEQCICsBcD3xmBKyEmPFCsH3rnXjrpaRr+CbPhUSrvgViIuGAiAmaGGhyn97cREmFO0sCK2Kcejh9pxreGNC0wxm7T/ZtzANBgkqhkiG9w0BAQsFAAOCAQEAHBUIUmW7N3FMHGJ7UTEdvcWSHv1IpyeIa2FC6iUV1+GDmbyXAwFB2sXTWcqkxg64U0uvlE+Iu1jcypmEPaPUK7QPDko6kGH4Iuq7L/kA2dc9jngs8Ks0zbUx489lCw3WllkVEsa6NRWZLrNusGh7NnYBDTaaT8vmGU1VbMoEbUAc1lTeZ2zVYUkhS0SxTDK0L2pxmOowjUVp9AeMm/pR9Zt1fyKhO4gOAinR0Z33Cu2hRgH4eho2yCUEKGuNDYOqqQgOlta0b+t88lOps24Soq1A+W6dVVOwjf1g/gHcMZ6eYIFFXpFH6WLd8jsUrdP6CeJDRhUBeSQQADUcKc+lLA=="},{"base64":"MIIGEzCCA/ugAwIBAgIQfVtRJrR2uhHbdBYLvFMNpzANBgkqhkiG9w0BAQwFADCBiDELMAkGA1UEBhMCVVMxEzARBgNVBAgTCk5ldyBKZXJzZXkxFDASBgNVBAcTC0plcnNleSBDaXR5MR4wHAYDVQQKExVUaGUgVVNFUlRSVVNUIE5ldHdvcmsxLjAsBgNVBAMTJVVTRVJUcnVzdCBSU0EgQ2VydGlmaWNhdGlvbiBBdXRob3JpdHkwHhcNMTgxMTAyMDAwMDAwWhcNMzAxMjMxMjM1OTU5WjCBjzELMAkGA1UEBhMCR0IxGzAZBgNVBAgTEkdyZWF0ZXIgTWFuY2hlc3RlcjEQMA4GA1UEBxMHU2FsZm9yZDEYMBYGA1UEChMPU2VjdGlnbyBMaW1pdGVkMTcwNQYDVQQDEy5TZWN0aWdvIFJTQSBEb21haW4gVmFsaWRhdGlvbiBTZWN1cmUgU2VydmVyIENBMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEA1nMz1tc8INAA0hdFuNY+B6I/x0HuMjDJsGz99J/LEpgPLT+NTQEMgg8Xf2Iu6bhIefsWg06t1zIlk7cHv7lQP6lMw0Aq6Tn/2YHKHxYyQdqAJrkjeocgHuP/IJo8lURvh3UGkEC0MpMWCRAIIz7S3YcPb11RFGoKacVPAXJpz9OTTG0EoKMbgn6xmrntxZ7FN3ifmgg0+1YuWMQJDgZkW7w33PGfKGioVrCSo1yfu4iYCBskHaswha6vsC6eep3BwEIc4gLw6uBK0u+QDrTBQBbwb4VCSmT3pDCg/r8uoydajotYuK3DGReEY+1vVv2Dy2A0xHS+5p3b4eTlygxfFQIDAQABo4IBbjCCAWowHwYDVR0jBBgwFoAUU3m/WqorSs9UgOHYm8Cd8rIDZsswHQYDVR0OBBYEFI2MXsRUrYrhd+mb+ZsF4bgBjWHhMA4GA1UdDwEB/wQEAwIBhjASBgNVHRMBAf8ECDAGAQH/AgEAMB0GA1UdJQQWMBQGCCsGAQUFBwMBBggrBgEFBQcDAjAbBgNVHSAEFDASMAYGBFUdIAAwCAYGZ4EMAQIBMFAGA1UdHwRJMEcwRaBDoEGGP2h0dHA6Ly9jcmwudXNlcnRydXN0LmNvbS9VU0VSVHJ1c3RSU0FDZXJ0aWZpY2F0aW9uQXV0aG9yaXR5LmNybDB2BggrBgEFBQcBAQRqMGgwPwYIKwYBBQUHMAKGM2h0dHA6Ly9jcnQudXNlcnRydXN0LmNvbS9VU0VSVHJ1c3RSU0FBZGRUcnVzdENBLmNydDAlBggrBgEFBQcwAYYZaHR0cDovL29jc3AudXNlcnRydXN0LmNvbTANBgkqhkiG9w0BAQwFAAOCAgEAMr9hvQ5Iw0/HukdN+Jx4GQHcEx2Ab/zDcLRSmjEzmldS+zGea6TvVKqJjUAXaPgREHzSyrHxVYbH7rM2kYb2OVG/Rr8PoLq0935JxCo2F57kaDl6r5ROVm+yezu/Coa9zcV3HAO4OLGiH19+24rcRki2aArPsrW04jTkZ6k4Zgle0rj8nSg6F0AnwnJOKf0hPHzPE/uWLMUxRP0T7dWbqWlod3zu4f+k+TY4CFM5ooQ0nBnzvg6s1SQ36yOoeNDT5++SR2RiOSLvxvcRviKFxmZEJCaOEDKNyJOuB56DPi/Z+fVGjmO+wea03KbNIaiGCpXZLoUmGv38sbZXQm2V0TP2ORQGgkE49Y9Y3IBbpNV9lXj9p5v//cWoaasm56ekBYdbqbe4oyALl6lFhd2zi+WJN44pDfwGF/Y4QA5C5BIG+3vzxhFoYt/jmPQT2BVPi7Fp2RBgvGQq6jG35LWjOhSbJuMLe/0CjraZwTiXWTb2qHSihrZe68Zk6s+go/lunrotEbaGmAhYLcmsJWTyXnW0OMGuf1pGg+pRyrbxmRE1a6Vqe8YAsOf4vmSyrcjC8azjUeqkk+B5yOGBQMkKW+ESPMFgKuOXwIlCypTPRpgSabuY0MLTDXJLR27lk8QyKGOHQ+SwMj4K00u/I5sUKUErmgQfky3xxzlIPK1aEn8="}],"version":"0303","random":"8537b3517230045a262f23a438a835dc01ecb370a316445b03345a7eacdebeb7","selected_cipher_suite":"c030","compression_method":"00","session_ticket":""}},"reassembly_properties":{"reassembled":true},"src_ip":"95.216.24.32","dst_ip":"192.168.113.237","protocol":6,"src_port":443,"dst_port":50428,"event_start":1565200423.090512} -{"ip":{"version":4,"ttl":64,"id":"00e8"},"dns":{"base64":"f28BAAABAAAAAAAABWRyaXZlBmdvb2dsZQNjb20AAAEAAQ=="},"src_ip":"192.168.113.237","dst_ip":"192.168.113.2","protocol":17,"src_port":50142,"dst_port":53,"event_start":1565200423.942464} -{"ip":{"version":4,"ttl":64,"id":"00e9"},"dns":{"base64":"hSkBAAABAAAAAAAABWRyaXZlBmdvb2dsZQNjb20AABwAAQ=="},"src_ip":"192.168.113.237","dst_ip":"192.168.113.2","protocol":17,"src_port":51736,"dst_port":53,"event_start":1565200423.942653} -{"ip":{"version":4,"ttl":128,"id":"aba6"},"dns":{"base64":"f2+BgAABAAEADQAOBWRyaXZlBmdvb2dsZQNjb20AAAEAAcAMAAEAAQAAAAUABKzZDe7AGQACAAEAAAAFABQBYgxndGxkLXNlcnZlcnMDbmV0AMAZAAIAAQAAAAUABAFnwEDAGQACAAEAAAAFAAQBaMBAwBkAAgABAAAABQAEAWHAQMAZAAIAAQAAAAUABAFkwEDAGQACAAEAAAAFAAQBZsBAwBkAAgABAAAABQAEAWzAQMAZAAIAAQAAAAUABAFjwEDAGQACAAEAAAAFAAQBacBAwBkAAgABAAAABQAEAWvAQMAZAAIAAQAAAAUABAFlwEDAGQACAAEAAAAFAAQBasBAwBkAAgABAAAABQAEAW3AQMB+AAEAAQAAAAUABMAFBh7APgABAAEAAAAFAATAIQ4ewL4AAQABAAAABQAEwBpcHsCOAAEAAQAAAAUABMAfUB7A7gABAAEAAAAFAATADF4ewJ4AAQABAAAABQAEwCMzHsBeAAEAAQAAAAUABMAqXR7AbgABAAEAAAAFAATANnAewM4AAQABAAAABQAEwCusHsD+AAEAAQAAAAUABMAwTx7A3gABAAEAAAAFAATANLIewK4AAQABAAAABQAEwCmiHsEOAAEAAQAAAAUABMA3Ux7AfgAcAAEAAAAFABAgAQUDqD4AAAAAAAAAAgAw"},"src_ip":"192.168.113.2","dst_ip":"192.168.113.237","protocol":17,"src_port":53,"dst_port":50142,"event_start":1565200423.978069} -{"ip":{"version":4,"ttl":128,"id":"aba7"},"dns":{"base64":"hSmBgAABAAEADQANBWRyaXZlBmdvb2dsZQNjb20AABwAAcAMABwAAQAAAAUAECYH+LBABAgJAAAAAAAAIA7AGQACAAEAAAAFABQBZgxndGxkLXNlcnZlcnMDbmV0AMAZAAIAAQAAAAUABAFpwEzAGQACAAEAAAAFAAQBbcBMwBkAAgABAAAABQAEAWfATMAZAAIAAQAAAAUABAFowEzAGQACAAEAAAAFAAQBYcBMwBkAAgABAAAABQAEAWrATMAZAAIAAQAAAAUABAFkwEzAGQACAAEAAAAFAAQBbMBMwBkAAgABAAAABQAEAWLATMAZAAIAAQAAAAUABAFrwEzAGQACAAEAAAAFAAQBY8BMwBkAAgABAAAABQAEAWXATMCqAAEAAQAAAAUABMAFBh7A6gABAAEAAAAFAATAIQ4ewQoAAQABAAAABQAEwBpcHsDKAAEAAQAAAAUABMAfUB7BGgABAAEAAAAFAATADF4ewEoAAQABAAAABQAEwCMzHsCKAAEAAQAAAAUABMAqXR7AmgABAAEAAAAFAATANnAewGoAAQABAAAABQAEwCusHsC6AAEAAQAAAAUABMAwTx7A+gABAAEAAAAFAATANLIewNoAAQABAAAABQAEwCmiHsB6AAEAAQAAAAUABMA3Ux4="},"src_ip":"192.168.113.2","dst_ip":"192.168.113.237","protocol":17,"src_port":53,"dst_port":51736,"event_start":1565200423.978091} -{"ip":{"version":4,"ttl":64,"id":"c3b1"},"fingerprints":{"tcp":"tcp/(40)()(40)(faf0)((020405b4)(04)(08)(01)(030307))"},"tcp":{"seq":4038781416,"timestamp":{"ts_val":231533530}},"src_ip":"192.168.113.237","dst_ip":"172.217.13.238","protocol":6,"src_port":48740,"dst_port":443,"event_start":1565200423.978696} -{"ip":{"version":4,"ttl":128,"id":"aba8"},"fingerprints":{"tcp_server":"tcp_server/(40)()(80)(faf0)((020405b4))"},"tcp_server":{"seq":1226687890},"src_ip":"172.217.13.238","dst_ip":"192.168.113.237","protocol":6,"src_port":443,"dst_port":48740,"event_start":1565200424.018638} -{"ip":{"version":4,"ttl":64,"id":"c3b3"},"fingerprints":{"tls":"tls/(0303)(130213031301c02cc030009fcca9cca8ccaac02bc02f009ec024c028006bc023c0270067c00ac0140039c009c0130033009d009c003d003c0035002f00ff)((0000)(000b000403000102)(000a000c000a001d0017001e00190018)(0023)(0016)(0017)(000d0030002e040305030603080708080809080a080b080408050806040105010601030302030301020103020202040205020602)(002b0009080304030303020301)(002d00020101)(0033))"},"tls":{"client":{"version":"0303","random":"edfae165671ab170ec319be20998139fa4000cd73c144facc8a73bd325ec3517","session_id":"59f72a9bc9bd0824e924314bc6550c7f847f39f661f4c1d3ced4b7ee2461fe6f","cipher_suites":"130213031301c02cc030009fcca9cca8ccaac02bc02f009ec024c028006bc023c0270067c00ac0140039c009c0130033009d009c003d003c0035002f00ff","compression_methods":"00","server_name":"drive.google.com","session_ticket":"","features":"[\"0303\",\"130213031301c02cc030009fcca9cca8ccaac02bc02f009ec024c028006bc023c0270067c00ac0140039c009c0130033009d009c003d003c0035002f00ff\",[[\"0000\",\"001300001064726976652e676f6f676c652e636f6d\"],[\"000b\",\"03000102\"],[\"000a\",\"000a001d0017001e00190018\"],[\"0023\",\"\"],[\"0016\",\"\"],[\"0017\",\"\"],[\"000d\",\"002e040305030603080708080809080a080b080408050806040105010601030302030301020103020202040205020602\"],[\"002b\",\"080304030303020301\"],[\"002d\",\"0101\"],[\"0033\",\"0024001d0020a8bfde82da7962d3127f3c909d0cda59d5464c2fd380ceb81567ad9ba2eb8d39\"]]]"}},"src_ip":"192.168.113.237","dst_ip":"172.217.13.238","protocol":6,"src_port":48740,"dst_port":443,"event_start":1565200424.019036} -{"ip":{"version":4,"ttl":128,"id":"abaa"},"fingerprints":{"tls_server":"tls_server/(0303)(1302)((0033)(002b00020304))"},"tls":{"server":{"version":"0303","random":"f000ea240f8821a6645af5c9ad11212f0270533403119628f004cc3395313d22","selected_cipher_suite":"1302","compression_method":"00"}},"src_ip":"172.217.13.238","dst_ip":"192.168.113.237","protocol":6,"src_port":443,"dst_port":48740,"event_start":1565200424.075206} -{"ip":{"version":4,"ttl":64,"id":"bf13"},"fingerprints":{"tcp":"tcp/(40)()(40)(faf0)((020405b4)(04)(08)(01)(030307))"},"tcp":{"seq":2389611935,"timestamp":{"ts_val":1677090589}},"src_ip":"192.168.113.237","dst_ip":"172.217.164.141","protocol":6,"src_port":57092,"dst_port":443,"event_start":1565200424.183956} -{"ip":{"version":4,"ttl":128,"id":"abb2"},"fingerprints":{"tcp_server":"tcp_server/(40)()(80)(faf0)((020405b4))"},"tcp_server":{"seq":1273390716},"src_ip":"172.217.164.141","dst_ip":"192.168.113.237","protocol":6,"src_port":443,"dst_port":57092,"event_start":1565200424.222884} -{"ip":{"version":4,"ttl":64,"id":"bf15"},"fingerprints":{"tls":"tls/(0303)(130213031301c02cc030009fcca9cca8ccaac02bc02f009ec024c028006bc023c0270067c00ac0140039c009c0130033009d009c003d003c0035002f00ff)((0000)(000b000403000102)(000a000c000a001d0017001e00190018)(0023)(0016)(0017)(000d0030002e040305030603080708080809080a080b080408050806040105010601030302030301020103020202040205020602)(002b0009080304030303020301)(002d00020101)(0033))"},"tls":{"client":{"version":"0303","random":"c477c1ed1df39e9d6dc559bdf101fc172d88b31f89d4a4b3121c2f692443ae68","session_id":"1bd207898d672ef9d42e3f723b11c68e540787b4b223467db3592485b4e79d02","cipher_suites":"130213031301c02cc030009fcca9cca8ccaac02bc02f009ec024c028006bc023c0270067c00ac0140039c009c0130033009d009c003d003c0035002f00ff","compression_methods":"00","server_name":"accounts.google.com","session_ticket":"","features":"[\"0303\",\"130213031301c02cc030009fcca9cca8ccaac02bc02f009ec024c028006bc023c0270067c00ac0140039c009c0130033009d009c003d003c0035002f00ff\",[[\"0000\",\"00160000136163636f756e74732e676f6f676c652e636f6d\"],[\"000b\",\"03000102\"],[\"000a\",\"000a001d0017001e00190018\"],[\"0023\",\"\"],[\"0016\",\"\"],[\"0017\",\"\"],[\"000d\",\"002e040305030603080708080809080a080b080408050806040105010601030302030301020103020202040205020602\"],[\"002b\",\"080304030303020301\"],[\"002d\",\"0101\"],[\"0033\",\"0024001d00207238a2fdd5f44b414659ce951f80bdd6e0207483ccff8b3225592cb7e6bd406f\"]]]"}},"src_ip":"192.168.113.237","dst_ip":"172.217.164.141","protocol":6,"src_port":57092,"dst_port":443,"event_start":1565200424.223156} -{"ip":{"version":4,"ttl":128,"id":"abb4"},"fingerprints":{"tls_server":"tls_server/(0303)(1302)((0033)(002b00020304))"},"tls":{"server":{"version":"0303","random":"53acd13738ea9ffe330836680d1511069127822c9092b8bbc5e930b36ccc4d3c","selected_cipher_suite":"1302","compression_method":"00"}},"src_ip":"172.217.164.141","dst_ip":"192.168.113.237","protocol":6,"src_port":443,"dst_port":57092,"event_start":1565200424.273936} -{"ip":{"version":4,"ttl":64,"id":"0131"},"dns":{"base64":"VBUBAAABAAAAAAAAC3NvdXJjZWZvcmdlA25ldAAAAQAB"},"src_ip":"192.168.113.237","dst_ip":"192.168.113.2","protocol":17,"src_port":48267,"dst_port":53,"event_start":1565200424.554433} -{"ip":{"version":4,"ttl":64,"id":"0132"},"dns":{"base64":"mNwBAAABAAAAAAAAC3NvdXJjZWZvcmdlA25ldAAAHAAB"},"src_ip":"192.168.113.237","dst_ip":"192.168.113.2","protocol":17,"src_port":36467,"dst_port":53,"event_start":1565200424.554614} -{"ip":{"version":4,"ttl":128,"id":"abed"},"dns":{"base64":"VBWBgAABAAEADQAOC3NvdXJjZWZvcmdlA25ldAAAAQABwAwAAQABAAAABQAE2GkmDcAYAAIAAQAAAAUAEQFhDGd0bGQtc2VydmVyc8AYwBgAAgABAAAABQAEAWrAP8AYAAIAAQAAAAUABAFiwD/AGAACAAEAAAAFAAQBZ8A/wBgAAgABAAAABQAEAWPAP8AYAAIAAQAAAAUABAFpwD/AGAACAAEAAAAFAAQBZsA/wBgAAgABAAAABQAEAWTAP8AYAAIAAQAAAAUABAFrwD/AGAACAAEAAAAFAAQBbMA/wBgAAgABAAAABQAEAW3AP8AYAAIAAQAAAAUABAFowD/AGAACAAEAAAAFAAQBZcA/wD0AAQABAAAABQAEwAUGHsBqAAEAAQAAAAUABMAhDh7AigABAAEAAAAFAATAGlwewLoAAQABAAAABQAEwB9QHsEKAAEAAQAAAAUABMAMXh7AqgABAAEAAAAFAATAIzMewHoAAQABAAAABQAEwCpdHsD6AAEAAQAAAAUABMA2cB7AmgABAAEAAAAFAATAK6wewFoAAQABAAAABQAEwDBPHsDKAAEAAQAAAAUABMA0sh7A2gABAAEAAAAFAATAKaIewOoAAQABAAAABQAEwDdTHsA9ABwAAQAAAAUAECABBQOoPgAAAAAAAAACADA="},"src_ip":"192.168.113.2","dst_ip":"192.168.113.237","protocol":17,"src_port":53,"dst_port":48267,"event_start":1565200424.589642} -{"ip":{"version":4,"ttl":128,"id":"abee"},"dns":{"base64":"mNyBgAABAAAAAQAAC3NvdXJjZWZvcmdlA25ldAAAHAABwAwABgABAAAABQBEA25zMAtkbnNtYWRlZWFzeQNjb20ACmhvc3RtYXN0ZXINc2xhc2hkb3RtZWRpYcA9eDCKtAAAOEAAAAJYAAk6gAAAASw="},"src_ip":"192.168.113.2","dst_ip":"192.168.113.237","protocol":17,"src_port":53,"dst_port":36467,"event_start":1565200424.589661} -{"ip":{"version":4,"ttl":64,"id":"c7a3"},"fingerprints":{"tcp":"tcp/(40)()(40)(faf0)((020405b4)(04)(08)(01)(030307))"},"tcp":{"seq":3663588689,"timestamp":{"ts_val":937917985}},"src_ip":"192.168.113.237","dst_ip":"216.105.38.13","protocol":6,"src_port":38020,"dst_port":443,"event_start":1565200424.590092} -{"ip":{"version":4,"ttl":128,"id":"abef"},"fingerprints":{"tcp_server":"tcp_server/(40)()(80)(faf0)((020405b4))"},"tcp_server":{"seq":185670585},"src_ip":"216.105.38.13","dst_ip":"192.168.113.237","protocol":6,"src_port":443,"dst_port":38020,"event_start":1565200424.692303} -{"ip":{"version":4,"ttl":64,"id":"c7a5"},"fingerprints":{"tls":"tls/(0303)(130213031301c02cc030009fcca9cca8ccaac02bc02f009ec024c028006bc023c0270067c00ac0140039c009c0130033009d009c003d003c0035002f00ff)((0000)(000b000403000102)(000a000c000a001d0017001e00190018)(0023)(0016)(0017)(000d0030002e040305030603080708080809080a080b080408050806040105010601030302030301020103020202040205020602)(002b0009080304030303020301)(002d00020101)(0033))"},"tls":{"client":{"version":"0303","random":"8bf0e799293cc6a01799675ed037bf65e1344b7279ff951303fb1ad7c753d4c7","session_id":"aecdcc063609e5a20fc018fc4dd4a29448f419b065a763c9c92cbad94cb3426d","cipher_suites":"130213031301c02cc030009fcca9cca8ccaac02bc02f009ec024c028006bc023c0270067c00ac0140039c009c0130033009d009c003d003c0035002f00ff","compression_methods":"00","server_name":"sourceforge.net","session_ticket":"","features":"[\"0303\",\"130213031301c02cc030009fcca9cca8ccaac02bc02f009ec024c028006bc023c0270067c00ac0140039c009c0130033009d009c003d003c0035002f00ff\",[[\"0000\",\"001200000f736f75726365666f7267652e6e6574\"],[\"000b\",\"03000102\"],[\"000a\",\"000a001d0017001e00190018\"],[\"0023\",\"\"],[\"0016\",\"\"],[\"0017\",\"\"],[\"000d\",\"002e040305030603080708080809080a080b080408050806040105010601030302030301020103020202040205020602\"],[\"002b\",\"080304030303020301\"],[\"002d\",\"0101\"],[\"0033\",\"0024001d002035c8d6bc5fb8131789a03c37193407efe3ac28878ff68254c63827dce318423d\"]]]"}},"src_ip":"192.168.113.237","dst_ip":"216.105.38.13","protocol":6,"src_port":38020,"dst_port":443,"event_start":1565200424.693022} -{"ip":{"version":4,"ttl":128,"id":"abf2"},"fingerprints":{"tls_server":"tls_server/(0303)(c02c)((ff01)(0000)(000b000403000102)(0017))"},"tls":{"server":{"certs":[{"base64":"MIIEoDCCA4igAwIBAgISBKbL6QrgO3xDTJZOO3tXGmUvMA0GCSqGSIb3DQEBCwUAMEoxCzAJBgNVBAYTAlVTMRYwFAYDVQQKEw1MZXQncyBFbmNyeXB0MSMwIQYDVQQDExpMZXQncyBFbmNyeXB0IEF1dGhvcml0eSBYMzAeFw0xOTA3MDEwNDI1MDJaFw0xOTA5MjkwNDI1MDJaMBoxGDAWBgNVBAMTD3NvdXJjZWZvcmdlLm5ldDBZMBMGByqGSM49AgEGCCqGSM49AwEHA0IABDjTvn1kq6tYg6aY+N9LbwE7Z1LrGaiic+r55oOrh3/d30LYpUqE33eayUf+8vPXkC1cC4cpEf/ZgaS5zJPm3cijggJ5MIICdTAOBgNVHQ8BAf8EBAMCB4AwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMAwGA1UdEwEB/wQCMAAwHQYDVR0OBBYEFAtiZwF/pwuFNKll1NpJF0u4GAZXMB8GA1UdIwQYMBaAFKhKamMEfd265tE5t6ZFZe/zqOyhMG8GCCsGAQUFBwEBBGMwYTAuBggrBgEFBQcwAYYiaHR0cDovL29jc3AuaW50LXgzLmxldHNlbmNyeXB0Lm9yZzAvBggrBgEFBQcwAoYjaHR0cDovL2NlcnQuaW50LXgzLmxldHNlbmNyeXB0Lm9yZy8wLQYDVR0RBCYwJIIRKi5zb3VyY2Vmb3JnZS5uZXSCD3NvdXJjZWZvcmdlLm5ldDBMBgNVHSAERTBDMAgGBmeBDAECATA3BgsrBgEEAYLfEwEBATAoMCYGCCsGAQUFBwIBFhpodHRwOi8vY3BzLmxldHNlbmNyeXB0Lm9yZzCCAQYGCisGAQQB1nkCBAIEgfcEgfQA8gB3AG9Tdqwx8DEZ2JkApFEV/3cVHBHZAsEAKQaNsgiaN9kTAAABa6v+XZ0AAAQDAEgwRgIhAMGoaiHGWej89vxqnqxUT6x5ueZ+hCHan11o6QB0zMs1AiEA47PrK3t+kqZ9Nac7uZLzxRGDgJEb0net+TO7cW43f3oAdwApPFGWVMg5ZbqqUPxYB9S3b79Yeily3KTDDPTlRUf0eAAAAWur/l1pAAAEAwBIMEYCIQDzDZUXOPY9hBGjyp1joEoi84Do1u/ECBjTFDWVWRicygIhAK6GvHud6ooxSeP2S79OnqFOePMsgZla2mVFTgMxM9vGMA0GCSqGSIb3DQEBCwUAA4IBAQAM3uIbCfc1nkCLpLR6YyeLMiqQa06toFC6C0WhAYR+72s530m3Ak25kLB/XoXm2C41SkA1UC0vBcwRFdzkK2dbxz3+iHt282zMntVXVY90aKoRTEh/9IdwbdrdaHYJveuF/pEcIxV4UymD/RiT3cIg+B0Ebpju96HiktQC4Si+Z8g79EeoDtH2/au9F9N0H2Z3XROHRlz672Jp6DEJ3xardlzdmHDiyxM0rg1s402rGGYIf/4zhT0ffEfksrr3tM6tSw4OynzjWVAIUCvA6qmUoIg7Wt/NhaFKF9mpyZU/tmjTwiDMVU6v4/bQEgyS3tz3IRfXbYs9S6K/DKSGDMDZ"},{"base64":"MIIEkjCCA3qgAwIBAgIQCgFBQgAAAVOFc2oLheynCDANBgkqhkiG9w0BAQsFADA/MSQwIgYDVQQKExtEaWdpdGFsIFNpZ25hdHVyZSBUcnVzdCBDby4xFzAVBgNVBAMTDkRTVCBSb290IENBIFgzMB4XDTE2MDMxNzE2NDA0NloXDTIxMDMxNzE2NDA0NlowSjELMAkGA1UEBhMCVVMxFjAUBgNVBAoTDUxldCdzIEVuY3J5cHQxIzAhBgNVBAMTGkxldCdzIEVuY3J5cHQgQXV0aG9yaXR5IFgzMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAnNMM8FrlLke3cl03g7NoYzDq1zUmGSXhvb418XCSL7e4S0EFq6meNQhY7LEqxGiHC6PjdeTm86dicbp5gWAf15Gan/PQeGdxyGkOlZHP/uaZ6WA8SMx+yk13EiSdRxta67nsHjcAHJyse6cF6s5K671B5TaYucv9bTyWaN8jKkKQDIZ0Z8h/pZq4UmEUEz9l6YKHy9v6Dlb2honzhT+Xhq+w3Brvaw2VFn3EK6BlspkENnWAa6xK8xuQSXgvopZPKiAlKQTGdMDQMc2PMTiVFrqoM7hD8bEfwzB/onkxEz0tNvjj/PIzark5McWvxI0NHWQWM6r6hCm21AvA2H3DkwIDAQABo4IBfTCCAXkwEgYDVR0TAQH/BAgwBgEB/wIBADAOBgNVHQ8BAf8EBAMCAYYwfwYIKwYBBQUHAQEEczBxMDIGCCsGAQUFBzABhiZodHRwOi8vaXNyZy50cnVzdGlkLm9jc3AuaWRlbnRydXN0LmNvbTA7BggrBgEFBQcwAoYvaHR0cDovL2FwcHMuaWRlbnRydXN0LmNvbS9yb290cy9kc3Ryb290Y2F4My5wN2MwHwYDVR0jBBgwFoAUxKexpHsscfrb4UuQdf/EFWCFiRAwVAYDVR0gBE0wSzAIBgZngQwBAgEwPwYLKwYBBAGC3xMBAQEwMDAuBggrBgEFBQcCARYiaHR0cDovL2Nwcy5yb290LXgxLmxldHNlbmNyeXB0Lm9yZzA8BgNVHR8ENTAzMDGgL6AthitodHRwOi8vY3JsLmlkZW50cnVzdC5jb20vRFNUUk9PVENBWDNDUkwuY3JsMB0GA1UdDgQWBBSoSmpjBH3duubRObemRWXv86jsoTANBgkqhkiG9w0BAQsFAAOCAQEA3TPXEfNjWDjdGBX7CVW+dla5cEilaUcne8IkCJLxWh9KEik3JHRRHGJouM2VcGfl96S8TihRzZvoroed6ti6WqEBmtzw3Wodatg+VyOeph4EYpr/1wXKtx8/wApIvJSwtmVi4MFU5aMqrSDE6ea73Mj2tcMyo5jMd6jmeWUHK8so/joWUoHOUgwuX4Po1QYz+3dszkDqMp4fklxBwXRsW10KXzPMTZ+sOPAveyxindmjkW8lGy+QsRlGPfZ+G6Z6h7mjem0Y+iWlkYcV4PIWL1iwBi8saCbGS5jN2p8M+X+Q7UNKEkROb3N6KOqkqm57TH2H3eDJAkSnh6/DNFu0Qg=="}],"version":"0303","random":"54b9f112604af252ff8accc28019756ca974833fc4d3887a3a916925811015c5","selected_cipher_suite":"c02c","compression_method":"00"}},"reassembly_properties":{"reassembled":true},"src_ip":"216.105.38.13","dst_ip":"192.168.113.237","protocol":6,"src_port":443,"dst_port":38020,"event_start":1565200424.792424} -{"ip":{"version":4,"ttl":64,"id":"015e"},"dns":{"base64":"CMoBAAABAAAAAAAAB255dGltZXMDY29tAAABAAE="},"src_ip":"192.168.113.237","dst_ip":"192.168.113.2","protocol":17,"src_port":36113,"dst_port":53,"event_start":1565200425.457399} -{"ip":{"version":4,"ttl":64,"id":"015f"},"dns":{"base64":"kacBAAABAAAAAAAAB255dGltZXMDY29tAAAcAAE="},"src_ip":"192.168.113.237","dst_ip":"192.168.113.2","protocol":17,"src_port":36967,"dst_port":53,"event_start":1565200425.457601} -{"ip":{"version":4,"ttl":128,"id":"ac76"},"dns":{"base64":"CMqBgAABAAQABAAFB255dGltZXMDY29tAAABAAHADAABAAEAAAAFAASXZUGkwAwAAQABAAAABQAEl2WBpMAMAAEAAQAAAAUABJdlAaTADAABAAEAAAAFAASXZcGkwAwAAgABAAAABQAUA25zMgNwMjQGZHluZWN0A25ldADADAACAAEAAAAFAAYDbnMzwG3ADAACAAEAAAAFAAYDbnM0wG3ADAACAAEAAAAFAAYDbnMxwG3ArQABAAEAAAAFAATQTkYYwGkAAQABAAAABQAEzA36GMCJAAEAAQAAAAUABNBORxjAmwABAAEAAAAFAATMDfsYwIkAHAABAAAABQAQIAEFAACUAAEAAAAAAAAAJA=="},"src_ip":"192.168.113.2","dst_ip":"192.168.113.237","protocol":17,"src_port":53,"dst_port":36113,"event_start":1565200425.502400} -{"ip":{"version":4,"ttl":128,"id":"ac77"},"dns":{"base64":"kaeBgAABAAAAAQAAB255dGltZXMDY29tAAAcAAHADAAGAAEAAAAFADUDbnMxA3AyNAZkeW5lY3QDbmV0AApob3N0bWFzdGVywAx4OmA/AAABLAAAAJYAEnUAAAABLA=="},"src_ip":"192.168.113.2","dst_ip":"192.168.113.237","protocol":17,"src_port":53,"dst_port":36967,"event_start":1565200425.503786} -{"ip":{"version":4,"ttl":64,"id":"d5e9"},"fingerprints":{"tcp":"tcp/(40)()(40)(faf0)((020405b4)(04)(08)(01)(030307))"},"tcp":{"seq":3708288575,"timestamp":{"ts_val":1392169900}},"src_ip":"192.168.113.237","dst_ip":"151.101.65.164","protocol":6,"src_port":32810,"dst_port":443,"event_start":1565200425.504157} -{"ip":{"version":4,"ttl":128,"id":"ac78"},"fingerprints":{"tcp_server":"tcp_server/(40)()(80)(faf0)((020405b4))"},"tcp_server":{"seq":620768866},"src_ip":"151.101.65.164","dst_ip":"192.168.113.237","protocol":6,"src_port":443,"dst_port":32810,"event_start":1565200425.541377} -{"ip":{"version":4,"ttl":64,"id":"d5eb"},"fingerprints":{"tls":"tls/(0303)(130213031301c02cc030009fcca9cca8ccaac02bc02f009ec024c028006bc023c0270067c00ac0140039c009c0130033009d009c003d003c0035002f00ff)((0000)(000b000403000102)(000a000c000a001d0017001e00190018)(0023)(0016)(0017)(000d0030002e040305030603080708080809080a080b080408050806040105010601030302030301020103020202040205020602)(002b0009080304030303020301)(002d00020101)(0033))"},"tls":{"client":{"version":"0303","random":"5b1f433b2f091c61ffd51d3d8f008fea863fb6c3726e7f056b019ec768cd1258","session_id":"f0a3043a4f60897b1689f746cf3c6903f9f606a77f5336d4e21633e98848ff14","cipher_suites":"130213031301c02cc030009fcca9cca8ccaac02bc02f009ec024c028006bc023c0270067c00ac0140039c009c0130033009d009c003d003c0035002f00ff","compression_methods":"00","server_name":"nytimes.com","session_ticket":"","features":"[\"0303\",\"130213031301c02cc030009fcca9cca8ccaac02bc02f009ec024c028006bc023c0270067c00ac0140039c009c0130033009d009c003d003c0035002f00ff\",[[\"0000\",\"000e00000b6e7974696d65732e636f6d\"],[\"000b\",\"03000102\"],[\"000a\",\"000a001d0017001e00190018\"],[\"0023\",\"\"],[\"0016\",\"\"],[\"0017\",\"\"],[\"000d\",\"002e040305030603080708080809080a080b080408050806040105010601030302030301020103020202040205020602\"],[\"002b\",\"080304030303020301\"],[\"002d\",\"0101\"],[\"0033\",\"0024001d00207f367d60250655cabb18d34c84cc5b14cd0a95e906135dd76aee622b2b541c17\"]]]"}},"src_ip":"192.168.113.237","dst_ip":"151.101.65.164","protocol":6,"src_port":32810,"dst_port":443,"event_start":1565200425.542021} -{"ip":{"version":4,"ttl":128,"id":"ac7e"},"fingerprints":{"tls_server":"tls_server/(0303)(c02f)((ff01)(0000)(000b000403000102)(0023)(0017))"},"tls":{"server":{"certs":[{"base64":"MIIJhTCCCG2gAwIBAgIRAL/WIxvqWarWy1Zu0IeNYO0wDQYJKoZIhvcNAQELBQAwgZYxCzAJBgNVBAYTAkdCMRswGQYDVQQIExJHcmVhdGVyIE1hbmNoZXN0ZXIxEDAOBgNVBAcTB1NhbGZvcmQxGjAYBgNVBAoTEUNPTU9ETyBDQSBMaW1pdGVkMTwwOgYDVQQDEzNDT01PRE8gUlNBIE9yZ2FuaXphdGlvbiBWYWxpZGF0aW9uIFNlY3VyZSBTZXJ2ZXIgQ0EwHhcNMTgxMTI5MDAwMDAwWhcNMjAwMTE4MjM1OTU5WjCBxDELMAkGA1UEBhMCVVMxDjAMBgNVBBETBTEwMDE4MREwDwYDVQQIEwhOZXcgWW9yazERMA8GA1UEBxMITmV3IFlvcmsxFDASBgNVBAkTCzYyMCA4dGggQXZlMRswGQYDVQQKExJUaGUgTmV3IFlvcmsgVGltZXMxGzAZBgNVBAsTElRoZSBOZXcgWW9yayBUaW1lczEZMBcGA1UECxMQTXVsdGktRG9tYWluIFNTTDEUMBIGA1UEAxMLbnl0aW1lcy5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQCqpbxBef7yIpiL7/xkUbY2RvDRMmjPiv/HMaFM4KjqowJg2JTbqJmFhiJFuzKndVcUIpO37lVQ/Oallob9fPBYcqAf0e6gFgueeucjHXPnID44qnZGFwj0wtnNmy7ItckEEVhT2OaCpROaeUI4jWHj83NkAnxKHDDuH472BfRNeBgmsoXwdywV421vL9A1yhOpkvNrZBrj6u32i3Fz1+GtSnh4j4LvVC8ewXz3k70YH32gnkAaPOW/X0xTGJ63cqMIuVKq6dBCmhzCbPzVBerr581FuXJ2Cyq/7242H/+XOu+h86nbETzG44TuoxOG2fnd+WhuUUKGKo6M5D3zjlw9AgMBAAGjggWcMIIFmDAfBgNVHSMEGDAWgBSa8yvaz61Pti+7KkhIKhK3G0LBJDAdBgNVHQ4EFgQUhiKsBlfdhdBgPQMAt93uFtyZBTQwDgYDVR0PAQH/BAQDAgWgMAwGA1UdEwEB/wQCMAAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMFAGA1UdIARJMEcwOwYMKwYBBAGyMQECAQMEMCswKQYIKwYBBQUHAgEWHWh0dHBzOi8vc2VjdXJlLmNvbW9kby5jb20vQ1BTMAgGBmeBDAECAjBaBgNVHR8EUzBRME+gTaBLhklodHRwOi8vY3JsLmNvbW9kb2NhLmNvbS9DT01PRE9SU0FPcmdhbml6YXRpb25WYWxpZGF0aW9uU2VjdXJlU2VydmVyQ0EuY3JsMIGLBggrBgEFBQcBAQR/MH0wVQYIKwYBBQUHMAKGSWh0dHA6Ly9jcnQuY29tb2RvY2EuY29tL0NPTU9ET1JTQU9yZ2FuaXphdGlvblZhbGlkYXRpb25TZWN1cmVTZXJ2ZXJDQS5jcnQwJAYIKwYBBQUHMAGGGGh0dHA6Ly9vY3NwLmNvbW9kb2NhLmNvbTCCAtQGA1UdEQSCAsswggLHggtueXRpbWVzLmNvbYIVKi5hcGkuZGV2Lm55dGltZXMuY29tghEqLmFwaS5ueXRpbWVzLmNvbYIVKi5hcGkuc3RnLm55dGltZXMuY29tgg4qLmJldGEubnl0Lm5ldIITKi5ibG9ncy5ueXRpbWVzLmNvbYIXKi5ibG9ncy5zdGcubnl0aW1lcy5jb22CGCouYmxvZ3M1LnN0Zy5ueXRpbWVzLmNvbYISKi5kZXYuYmV0YS5ueXQubmV0ghcqLmRldi5ibG9ncy5ueXRpbWVzLmNvbYINKi5kZXYubnl0LmNvbYINKi5kZXYubnl0Lm5ldIIRKi5kZXYubnl0aW1lcy5jb22CDSoubmV3c2Rldi5uZXSCESoubmV3c2Rldi5ueXQubmV0ghUqLm5ld3NkZXYubnl0aW1lcy5jb22CCSoubnl0LmNvbYIJKi5ueXQubmV0ggsqLm55dGNvLmNvbYINKi5ueXRpbWVzLmNvbYIZKi5wYXlmbG93LnNieC5ueXRpbWVzLmNvbYIRKi5zYngubnl0aW1lcy5jb22CEiouc3RnLmJldGEubnl0Lm5ldIIXKi5zdGcuYmxvZ3Mubnl0aW1lcy5jb22CESouc3RnLm5ld3NkZXYubmV0ghUqLnN0Zy5uZXdzZGV2Lm55dC5uZXSCGSouc3RnLm5ld3NkZXYubnl0aW1lcy5jb22CDSouc3RnLm55dC5jb22CDSouc3RnLm55dC5uZXSCESouc3RnLm55dGltZXMuY29tghAqLnRpbWVzdGFsa3MuY29tggtuZXdzZGV2Lm5ldIIHbnl0LmNvbYIHbnl0Lm5ldIIJbnl0Y28uY29tgg50aW1lc3RhbGtzLmNvbYIbd3d3LmJlc3RzZWxsZXJzLm55dGltZXMuY29tghx3d3cuaG9tZWRlbGl2ZXJ5Lm55dGltZXMuY29tMIIBAwYKKwYBBAHWeQIEAgSB9ASB8QDvAHYAu9nfvB+KcbWTlCOXqpJ7RzhXlQqrUugakJZkNo4e0YUAAAFnYAxysQAABAMARzBFAiBsjMEzQ01LJnfg8SWtJi+wQ/2NrVih667zOk9JD/KAxwIhAOvJND92OVh2cozY7QXv0vsfzWszxn9tEVaNc3ezXlQDAHUAXqdz+d9WwOe1Nkh90EngMnqRmgyEoRIShBh1loFxRVgAAAFnYAxzBgAABAMARjBEAiBFD4mv+quaSJL/sb4Jb0zh1w6xe+NBCLxCgr2DLtCZIwIgICd9NO8Mj0obKpS0eB49ZNlj3J7JjKMXCQJGGSlfyIgwDQYJKoZIhvcNAQELBQADggEBAEdGZx2Iilb59sTUqgyo92XdwUxpEXUD25W06NhOezqUJHfw7YxsCuXdSNPAcoMgVuvEo2A4JG9skf62rBFar6sdsBy1OucP/njdSXTN5XuTOwaxO/g4uF8iGGrdR6pYjyeh9DcaIPCPagOxMi0QLd32twYeBzRuZG4sc6JGdmEo9z4Xw5SHkm+x88cLuBiTlcsYgVTFhW+LFwNbILArbP+BCRCTJvOfyevlPpxHGRs2HA/k0LUOvx6MjCj7Xk8i36OxwBkYLr5HDZ2dapAOGKy+tZrOX2z13u4v0J/Ctz93eUTpt9nCObmbPHxOlP3MRRQwnUyMbFh8qrnLPXjl23o="},{"base64":"MIIGDjCCA/agAwIBAgIQNoJef7WkgZN+9tFza7k8pjANBgkqhkiG9w0BAQwFADCBhTELMAkGA1UEBhMCR0IxGzAZBgNVBAgTEkdyZWF0ZXIgTWFuY2hlc3RlcjEQMA4GA1UEBxMHU2FsZm9yZDEaMBgGA1UEChMRQ09NT0RPIENBIExpbWl0ZWQxKzApBgNVBAMTIkNPTU9ETyBSU0EgQ2VydGlmaWNhdGlvbiBBdXRob3JpdHkwHhcNMTQwMjEyMDAwMDAwWhcNMjkwMjExMjM1OTU5WjCBljELMAkGA1UEBhMCR0IxGzAZBgNVBAgTEkdyZWF0ZXIgTWFuY2hlc3RlcjEQMA4GA1UEBxMHU2FsZm9yZDEaMBgGA1UEChMRQ09NT0RPIENBIExpbWl0ZWQxPDA6BgNVBAMTM0NPTU9ETyBSU0EgT3JnYW5pemF0aW9uIFZhbGlkYXRpb24gU2VjdXJlIFNlcnZlciBDQTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALkU2YXyQURX/zBEHtw8RKMXuG4B+KNfwqkhHc5Z9OzziKkJMjyxi2OkPic284/5OGYuB5dBj0um3cNfnnM858ogDU98MgXPwS5IZUqF0B9WMW2O5cYy1Bu8n32W/JjXT/j0WFb440W+kRiC5Iq+r81SN1GHTx6Xweg6rvn/RuRlPz/DR4MvzLhCXi1+91porl1LwKY1IfWGo8hJi5hjYA3JIUjCkjBlRrKGNQRCJX6tp05LEkAAeohoXG+fo6R4ESGuPQsOvkUUI8/rddf2oPG8RWxevKEy7PNYeEIoCzoBdvDFoJ7BaXDej0umed/ydrbjDxN8GDuxUWxqIDnOnmkCAwEAAaOCAWUwggFhMB8GA1UdIwQYMBaAFLuvfgI9+qbxPISOre44mOzZMjLUMB0GA1UdDgQWBBSa8yvaz61Pti+7KkhIKhK3G0LBJDAOBgNVHQ8BAf8EBAMCAYYwEgYDVR0TAQH/BAgwBgEB/wIBADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwGwYDVR0gBBQwEjAGBgRVHSAAMAgGBmeBDAECAjBMBgNVHR8ERTBDMEGgP6A9hjtodHRwOi8vY3JsLmNvbW9kb2NhLmNvbS9DT01PRE9SU0FDZXJ0aWZpY2F0aW9uQXV0aG9yaXR5LmNybDBxBggrBgEFBQcBAQRlMGMwOwYIKwYBBQUHMAKGL2h0dHA6Ly9jcnQuY29tb2RvY2EuY29tL0NPTU9ET1JTQUFkZFRydXN0Q0EuY3J0MCQGCCsGAQUFBzABhhhodHRwOi8vb2NzcC5jb21vZG9jYS5jb20wDQYJKoZIhvcNAQEMBQADggIBAGmKNmiaHjtlC+B8z6arcTuvYaQ/5GQBSRDTHY/i1e1n055bl71CHgf50Ltt9zKVWiIpYvgMnFlWJzagIhIR+kf0UclZeylKpUg1fMWXZuAnJTsVejJ1SpH7pmue4lP6DYwT+yO4CxIsru3bHUeQ1dCTaXaROBU01xjqfrxrWN4qOZADRARKVtho5fV8aX6efVRL0NiGq2dmE1deiSoXrS2uvUAOZu2K/1S0wQHLqeBHuhFhj62uI0gqxiV5iRxBBJXAEepXK9a0l/qx6RVi7Epxd/3zoZza9msAKcUy5/pO6rMqpxiXHFinQjZf7BTP+HsO993MiBWamlzI8SDH0YZyoRebrrr+bKgy0QB2SXP3PyeHPLbJLfqqkJDJCgmfyWkfBxmpv966+AuIgkQWEH8HwIAiX3+8MN66zQd5ZFbY//NPnDC7bh5RS+bNvRfExb/IP46xH4pGtwZDb2Itz1GdRcqK6ROLwMeRvlu2+jdKif7wndoTJiIsBpA+ixOYoBnW3dpKSH89D4mdJHJLDntE/9Q2toN2I1iLFGy4XfdhbTl27d0SPWuHiJeRvsBGAh52HN22r1xP9QDWnE2p4J6ijvyxFnlcIdNFgZoMOWxtKNcl0rcRkND23m9e9Pqki2Z3ci+bkEAsUhJg+f+1cC6JmnkJiYEt7Fx4b4GH8fxV"},{"base64":"MIIFdDCCBFygAwIBAgIQJ2buVutJ846r13Ci/ITeIjANBgkqhkiG9w0BAQwFADBvMQswCQYDVQQGEwJTRTEUMBIGA1UEChMLQWRkVHJ1c3QgQUIxJjAkBgNVBAsTHUFkZFRydXN0IEV4dGVybmFsIFRUUCBOZXR3b3JrMSIwIAYDVQQDExlBZGRUcnVzdCBFeHRlcm5hbCBDQSBSb290MB4XDTAwMDUzMDEwNDgzOFoXDTIwMDUzMDEwNDgzOFowgYUxCzAJBgNVBAYTAkdCMRswGQYDVQQIExJHcmVhdGVyIE1hbmNoZXN0ZXIxEDAOBgNVBAcTB1NhbGZvcmQxGjAYBgNVBAoTEUNPTU9ETyBDQSBMaW1pdGVkMSswKQYDVQQDEyJDT01PRE8gUlNBIENlcnRpZmljYXRpb24gQXV0aG9yaXR5MIICIjANBgkqhkiG9w0BAQEFAAOCAg8AMIICCgKCAgEAkehUktIKVrGsDSTdxc9EZ3SZKzejfSNwAHG8U9/E+ioSj0t/EFa9n3Byt2F/yUsPF6c947AEYe7/EZfH9IY+Cvo+XPmT5jR62RRr55yzhaCCenavcZDX7P0N+pxs+t+wgvQUfvm+xKYvT3+Zf7X8Z0NyvQwA1onrayzT7Y+YHBSrfuXjbvzYqOSSJNpDa2K4Vf3qwbxstovzDo2a5JtsaZn4eEgwRdWt4Q08RWD8MpZRJ7xnw8outmvqRsfHIKCxH2XeSAi6pE6p8oNGN4Tr6MyBSENnTnIqm1y9TBsoilwie7SrmNnu4FGDwwlGTm0+mfqVF9p8M1dBPI1R7Qu2XK8sYxrfV8g/vOldxJuvRZnio1oktLqpVj3Pb6r/SVi+8Kj/9Lit6Tf7urj0Czr56ENCHonYhMsT8dm74YlguIwoVqwUHZwK53Hrzw7dPamWoUi9PPevtQ0iTMARgexWO/bTouJbt7IEIlKVgJNp6I5MZfGRAy1wdALqi2cVKWlSArvX31BqVUa/oKMoYX9w0MOiqiwhqkfOKJwGRXa/ghgntNWutMtQ5mv0TIZxMOmm3xaG4Nj/QN370EKIf6MzOi5cHkERgWPOGHFrK+ymircxXDpqR+DDeVnWIBqv8mqYqnK8V0rSS527EPywTEHl7R09XiidnMy/s1Hap0flhFMCAwEAAaOB9DCB8TAfBgNVHSMEGDAWgBStvZh6NLQm9/rEJlTvA73gJMtUGjAdBgNVHQ4EFgQUu69+Aj36pvE8hI6t7jiY7NkyMtQwDgYDVR0PAQH/BAQDAgGGMA8GA1UdEwEB/wQFMAMBAf8wEQYDVR0gBAowCDAGBgRVHSAAMEQGA1UdHwQ9MDswOaA3oDWGM2h0dHA6Ly9jcmwudXNlcnRydXN0LmNvbS9BZGRUcnVzdEV4dGVybmFsQ0FSb290LmNybDA1BggrBgEFBQcBAQQpMCcwJQYIKwYBBQUHMAGGGWh0dHA6Ly9vY3NwLnVzZXJ0cnVzdC5jb20wDQYJKoZIhvcNAQEMBQADggEBAGS/g/FfmoXQzbihKVcN6Fr30ek+8nYEbvFScLsePP9NDXRqzIGCJdPDoCpdTPW6i6FtxFQJdcfjJw5dhHk3QBN39bSsHNA7qxcS1u80GH4r6XnTq1dFDK8o+tDb5VCViLvfhVdpfZLYUspzgb8c8+a4bmYRBbMelC1/kZWSWfFMzqORcUx8Rww7Cxn2obFshj5cqsQugsv5B5a6SE2Q8pTIqXOi6wZ7I53eovNNVZ96YUWYGGjHXkBrI/V5eu+MtWuLt29G9HvxPUsE2JOAWVrgQSQdso8VYFhH2+9uRv0V9dlfmrPb2LjkQLPNlzmuhbsdjrzch5vRpu/xO28QOG8="}],"version":"0303","random":"a56d41784e30d62a4aa393b8ce5b6c47f05951e3dabcb6544485462983b8a6fb","selected_cipher_suite":"c02f","compression_method":"00","session_ticket":""}},"reassembly_properties":{"reassembled":true},"src_ip":"151.101.65.164","dst_ip":"192.168.113.237","protocol":6,"src_port":443,"dst_port":32810,"event_start":1565200425.583059} -{"ip":{"version":4,"ttl":64,"id":"0186"},"dns":{"base64":"dA4BAAABAAAAAAAAA3d3dwdueXRpbWVzA2NvbQAAAQAB"},"src_ip":"192.168.113.237","dst_ip":"192.168.113.2","protocol":17,"src_port":58499,"dst_port":53,"event_start":1565200425.677119} -{"ip":{"version":4,"ttl":64,"id":"0187"},"dns":{"base64":"yMcBAAABAAAAAAAAA3d3dwdueXRpbWVzA2NvbQAAHAAB"},"src_ip":"192.168.113.237","dst_ip":"192.168.113.2","protocol":17,"src_port":56888,"dst_port":53,"event_start":1565200425.677305} -{"ip":{"version":4,"ttl":128,"id":"ac84"},"dns":{"base64":"dA6BgAABAAYADQAIA3d3dwdueXRpbWVzA2NvbQAAAQABwAwABQABAAAABQAOA3d3dwNwcmQDbWFwwBDALQAFAAEAAAAFABgHbnl0aW1lcwNtYXAGZmFzdGx5A25ldADARwABAAEAAAAFAASXZQGkwEcAAQABAAAABQAEl2VBpMBHAAEAAQAAAAUABJdlwaTARwABAAEAAAAFAASXZYGkwFoAAgABAAAABQARAWcMZ3RsZC1zZXJ2ZXJzwFrAWgACAAEAAAAFAAQBa8CtwFoAAgABAAAABQAEAWnArcBaAAIAAQAAAAUABAFlwK3AWgACAAEAAAAFAAQBbcCtwFoAAgABAAAABQAEAWzArcBaAAIAAQAAAAUABAFiwK3AWgACAAEAAAAFAAQBZsCtwFoAAgABAAAABQAEAWHArcBaAAIAAQAAAAUABAFowK3AWgACAAEAAAAFAAQBZMCtwFoAAgABAAAABQAEAWPArcBaAAIAAQAAAAUABAFqwK3BOAABAAEAAAAFAATABQYewRgAAQABAAAABQAEwCEOHsFoAAEAAQAAAAUABMAaXB7BWAABAAEAAAAFAATAH1AewOgAAQABAAAABQAEwAxeHsEoAAEAAQAAAAUABMAjMx7AqwABAAEAAAAFAATAKl0ewUgAAQABAAAABQAEwDZwHg=="},"src_ip":"192.168.113.2","dst_ip":"192.168.113.237","protocol":17,"src_port":53,"dst_port":58499,"event_start":1565200425.707420} -{"ip":{"version":4,"ttl":128,"id":"ac85"},"dns":{"base64":"yMeBgAABAAIAAQAAA3d3dwdueXRpbWVzA2NvbQAAHAABwAwABQABAAAABQAOA3d3dwNwcmQDbWFwwBDALQAFAAEAAAAFABgHbnl0aW1lcwNtYXAGZmFzdGx5A25ldADAUwAGAAEAAAAFAC4DbnMxwFMKaG9zdG1hc3RlcgZmYXN0bHnAGHg5xikAAA4QAAACWAAJOoAAAAAe"},"src_ip":"192.168.113.2","dst_ip":"192.168.113.237","protocol":17,"src_port":53,"dst_port":56888,"event_start":1565200425.717289} -{"ip":{"version":4,"ttl":64,"id":"018f"},"dns":{"base64":"incBAAABAAAAAAAAB255dGltZXMDbWFwBmZhc3RseQNuZXQAABwAAQ=="},"src_ip":"192.168.113.237","dst_ip":"192.168.113.2","protocol":17,"src_port":55471,"dst_port":53,"event_start":1565200425.717892} -{"ip":{"version":4,"ttl":128,"id":"ac86"},"dns":{"base64":"ineBgAABAAAAAQAAB255dGltZXMDbWFwBmZhc3RseQNuZXQAABwAAcAYAAYAAQAAAAUAMQNuczHAGApob3N0bWFzdGVyBmZhc3RseQNjb20AeDnGKQAADhAAAAJYAAk6gAAAAB4="},"src_ip":"192.168.113.2","dst_ip":"192.168.113.237","protocol":17,"src_port":53,"dst_port":55471,"event_start":1565200425.758737} -{"ip":{"version":4,"ttl":64,"id":"4448"},"fingerprints":{"tcp":"tcp/(40)()(40)(faf0)((020405b4)(04)(08)(01)(030307))"},"tcp":{"seq":2835900510,"timestamp":{"ts_val":2718006413}},"src_ip":"192.168.113.237","dst_ip":"151.101.129.164","protocol":6,"src_port":53270,"dst_port":443,"event_start":1565200425.759152} -{"ip":{"version":4,"ttl":128,"id":"ac87"},"fingerprints":{"tcp_server":"tcp_server/(40)()(80)(faf0)((020405b4))"},"tcp_server":{"seq":1297282016},"src_ip":"151.101.129.164","dst_ip":"192.168.113.237","protocol":6,"src_port":443,"dst_port":53270,"event_start":1565200425.802314} -{"ip":{"version":4,"ttl":64,"id":"444a"},"fingerprints":{"tls":"tls/(0303)(130213031301c02cc030009fcca9cca8ccaac02bc02f009ec024c028006bc023c0270067c00ac0140039c009c0130033009d009c003d003c0035002f00ff)((0000)(000b000403000102)(000a000c000a001d0017001e00190018)(0023)(0016)(0017)(000d0030002e040305030603080708080809080a080b080408050806040105010601030302030301020103020202040205020602)(002b0009080304030303020301)(002d00020101)(0033))"},"tls":{"client":{"version":"0303","random":"81dc79cdaaf1de6dc9da5740cb7bb7dd01870efdcf32b083d9e19db7244259a7","session_id":"b7080c84eb887b3dd97f5fb943bb8ae76c03283e8730a7d6fb6379715a36722f","cipher_suites":"130213031301c02cc030009fcca9cca8ccaac02bc02f009ec024c028006bc023c0270067c00ac0140039c009c0130033009d009c003d003c0035002f00ff","compression_methods":"00","server_name":"www.nytimes.com","session_ticket":"","features":"[\"0303\",\"130213031301c02cc030009fcca9cca8ccaac02bc02f009ec024c028006bc023c0270067c00ac0140039c009c0130033009d009c003d003c0035002f00ff\",[[\"0000\",\"001200000f7777772e6e7974696d65732e636f6d\"],[\"000b\",\"03000102\"],[\"000a\",\"000a001d0017001e00190018\"],[\"0023\",\"\"],[\"0016\",\"\"],[\"0017\",\"\"],[\"000d\",\"002e040305030603080708080809080a080b080408050806040105010601030302030301020103020202040205020602\"],[\"002b\",\"080304030303020301\"],[\"002d\",\"0101\"],[\"0033\",\"0024001d0020c9385781db5b38086f3afa475726b0d6bb82273789049e413d157b01cd0f7d21\"]]]"}},"src_ip":"192.168.113.237","dst_ip":"151.101.129.164","protocol":6,"src_port":53270,"dst_port":443,"event_start":1565200425.802611} -{"ip":{"version":4,"ttl":128,"id":"ac8d"},"fingerprints":{"tls_server":"tls_server/(0303)(c02f)((ff01)(0000)(000b000403000102)(0023)(0017))"},"tls":{"server":{"certs":[{"base64":"MIIJhTCCCG2gAwIBAgIRAL/WIxvqWarWy1Zu0IeNYO0wDQYJKoZIhvcNAQELBQAwgZYxCzAJBgNVBAYTAkdCMRswGQYDVQQIExJHcmVhdGVyIE1hbmNoZXN0ZXIxEDAOBgNVBAcTB1NhbGZvcmQxGjAYBgNVBAoTEUNPTU9ETyBDQSBMaW1pdGVkMTwwOgYDVQQDEzNDT01PRE8gUlNBIE9yZ2FuaXphdGlvbiBWYWxpZGF0aW9uIFNlY3VyZSBTZXJ2ZXIgQ0EwHhcNMTgxMTI5MDAwMDAwWhcNMjAwMTE4MjM1OTU5WjCBxDELMAkGA1UEBhMCVVMxDjAMBgNVBBETBTEwMDE4MREwDwYDVQQIEwhOZXcgWW9yazERMA8GA1UEBxMITmV3IFlvcmsxFDASBgNVBAkTCzYyMCA4dGggQXZlMRswGQYDVQQKExJUaGUgTmV3IFlvcmsgVGltZXMxGzAZBgNVBAsTElRoZSBOZXcgWW9yayBUaW1lczEZMBcGA1UECxMQTXVsdGktRG9tYWluIFNTTDEUMBIGA1UEAxMLbnl0aW1lcy5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQCqpbxBef7yIpiL7/xkUbY2RvDRMmjPiv/HMaFM4KjqowJg2JTbqJmFhiJFuzKndVcUIpO37lVQ/Oallob9fPBYcqAf0e6gFgueeucjHXPnID44qnZGFwj0wtnNmy7ItckEEVhT2OaCpROaeUI4jWHj83NkAnxKHDDuH472BfRNeBgmsoXwdywV421vL9A1yhOpkvNrZBrj6u32i3Fz1+GtSnh4j4LvVC8ewXz3k70YH32gnkAaPOW/X0xTGJ63cqMIuVKq6dBCmhzCbPzVBerr581FuXJ2Cyq/7242H/+XOu+h86nbETzG44TuoxOG2fnd+WhuUUKGKo6M5D3zjlw9AgMBAAGjggWcMIIFmDAfBgNVHSMEGDAWgBSa8yvaz61Pti+7KkhIKhK3G0LBJDAdBgNVHQ4EFgQUhiKsBlfdhdBgPQMAt93uFtyZBTQwDgYDVR0PAQH/BAQDAgWgMAwGA1UdEwEB/wQCMAAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMFAGA1UdIARJMEcwOwYMKwYBBAGyMQECAQMEMCswKQYIKwYBBQUHAgEWHWh0dHBzOi8vc2VjdXJlLmNvbW9kby5jb20vQ1BTMAgGBmeBDAECAjBaBgNVHR8EUzBRME+gTaBLhklodHRwOi8vY3JsLmNvbW9kb2NhLmNvbS9DT01PRE9SU0FPcmdhbml6YXRpb25WYWxpZGF0aW9uU2VjdXJlU2VydmVyQ0EuY3JsMIGLBggrBgEFBQcBAQR/MH0wVQYIKwYBBQUHMAKGSWh0dHA6Ly9jcnQuY29tb2RvY2EuY29tL0NPTU9ET1JTQU9yZ2FuaXphdGlvblZhbGlkYXRpb25TZWN1cmVTZXJ2ZXJDQS5jcnQwJAYIKwYBBQUHMAGGGGh0dHA6Ly9vY3NwLmNvbW9kb2NhLmNvbTCCAtQGA1UdEQSCAsswggLHggtueXRpbWVzLmNvbYIVKi5hcGkuZGV2Lm55dGltZXMuY29tghEqLmFwaS5ueXRpbWVzLmNvbYIVKi5hcGkuc3RnLm55dGltZXMuY29tgg4qLmJldGEubnl0Lm5ldIITKi5ibG9ncy5ueXRpbWVzLmNvbYIXKi5ibG9ncy5zdGcubnl0aW1lcy5jb22CGCouYmxvZ3M1LnN0Zy5ueXRpbWVzLmNvbYISKi5kZXYuYmV0YS5ueXQubmV0ghcqLmRldi5ibG9ncy5ueXRpbWVzLmNvbYINKi5kZXYubnl0LmNvbYINKi5kZXYubnl0Lm5ldIIRKi5kZXYubnl0aW1lcy5jb22CDSoubmV3c2Rldi5uZXSCESoubmV3c2Rldi5ueXQubmV0ghUqLm5ld3NkZXYubnl0aW1lcy5jb22CCSoubnl0LmNvbYIJKi5ueXQubmV0ggsqLm55dGNvLmNvbYINKi5ueXRpbWVzLmNvbYIZKi5wYXlmbG93LnNieC5ueXRpbWVzLmNvbYIRKi5zYngubnl0aW1lcy5jb22CEiouc3RnLmJldGEubnl0Lm5ldIIXKi5zdGcuYmxvZ3Mubnl0aW1lcy5jb22CESouc3RnLm5ld3NkZXYubmV0ghUqLnN0Zy5uZXdzZGV2Lm55dC5uZXSCGSouc3RnLm5ld3NkZXYubnl0aW1lcy5jb22CDSouc3RnLm55dC5jb22CDSouc3RnLm55dC5uZXSCESouc3RnLm55dGltZXMuY29tghAqLnRpbWVzdGFsa3MuY29tggtuZXdzZGV2Lm5ldIIHbnl0LmNvbYIHbnl0Lm5ldIIJbnl0Y28uY29tgg50aW1lc3RhbGtzLmNvbYIbd3d3LmJlc3RzZWxsZXJzLm55dGltZXMuY29tghx3d3cuaG9tZWRlbGl2ZXJ5Lm55dGltZXMuY29tMIIBAwYKKwYBBAHWeQIEAgSB9ASB8QDvAHYAu9nfvB+KcbWTlCOXqpJ7RzhXlQqrUugakJZkNo4e0YUAAAFnYAxysQAABAMARzBFAiBsjMEzQ01LJnfg8SWtJi+wQ/2NrVih667zOk9JD/KAxwIhAOvJND92OVh2cozY7QXv0vsfzWszxn9tEVaNc3ezXlQDAHUAXqdz+d9WwOe1Nkh90EngMnqRmgyEoRIShBh1loFxRVgAAAFnYAxzBgAABAMARjBEAiBFD4mv+quaSJL/sb4Jb0zh1w6xe+NBCLxCgr2DLtCZIwIgICd9NO8Mj0obKpS0eB49ZNlj3J7JjKMXCQJGGSlfyIgwDQYJKoZIhvcNAQELBQADggEBAEdGZx2Iilb59sTUqgyo92XdwUxpEXUD25W06NhOezqUJHfw7YxsCuXdSNPAcoMgVuvEo2A4JG9skf62rBFar6sdsBy1OucP/njdSXTN5XuTOwaxO/g4uF8iGGrdR6pYjyeh9DcaIPCPagOxMi0QLd32twYeBzRuZG4sc6JGdmEo9z4Xw5SHkm+x88cLuBiTlcsYgVTFhW+LFwNbILArbP+BCRCTJvOfyevlPpxHGRs2HA/k0LUOvx6MjCj7Xk8i36OxwBkYLr5HDZ2dapAOGKy+tZrOX2z13u4v0J/Ctz93eUTpt9nCObmbPHxOlP3MRRQwnUyMbFh8qrnLPXjl23o="},{"base64":"MIIGDjCCA/agAwIBAgIQNoJef7WkgZN+9tFza7k8pjANBgkqhkiG9w0BAQwFADCBhTELMAkGA1UEBhMCR0IxGzAZBgNVBAgTEkdyZWF0ZXIgTWFuY2hlc3RlcjEQMA4GA1UEBxMHU2FsZm9yZDEaMBgGA1UEChMRQ09NT0RPIENBIExpbWl0ZWQxKzApBgNVBAMTIkNPTU9ETyBSU0EgQ2VydGlmaWNhdGlvbiBBdXRob3JpdHkwHhcNMTQwMjEyMDAwMDAwWhcNMjkwMjExMjM1OTU5WjCBljELMAkGA1UEBhMCR0IxGzAZBgNVBAgTEkdyZWF0ZXIgTWFuY2hlc3RlcjEQMA4GA1UEBxMHU2FsZm9yZDEaMBgGA1UEChMRQ09NT0RPIENBIExpbWl0ZWQxPDA6BgNVBAMTM0NPTU9ETyBSU0EgT3JnYW5pemF0aW9uIFZhbGlkYXRpb24gU2VjdXJlIFNlcnZlciBDQTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALkU2YXyQURX/zBEHtw8RKMXuG4B+KNfwqkhHc5Z9OzziKkJMjyxi2OkPic284/5OGYuB5dBj0um3cNfnnM858ogDU98MgXPwS5IZUqF0B9WMW2O5cYy1Bu8n32W/JjXT/j0WFb440W+kRiC5Iq+r81SN1GHTx6Xweg6rvn/RuRlPz/DR4MvzLhCXi1+91porl1LwKY1IfWGo8hJi5hjYA3JIUjCkjBlRrKGNQRCJX6tp05LEkAAeohoXG+fo6R4ESGuPQsOvkUUI8/rddf2oPG8RWxevKEy7PNYeEIoCzoBdvDFoJ7BaXDej0umed/ydrbjDxN8GDuxUWxqIDnOnmkCAwEAAaOCAWUwggFhMB8GA1UdIwQYMBaAFLuvfgI9+qbxPISOre44mOzZMjLUMB0GA1UdDgQWBBSa8yvaz61Pti+7KkhIKhK3G0LBJDAOBgNVHQ8BAf8EBAMCAYYwEgYDVR0TAQH/BAgwBgEB/wIBADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwGwYDVR0gBBQwEjAGBgRVHSAAMAgGBmeBDAECAjBMBgNVHR8ERTBDMEGgP6A9hjtodHRwOi8vY3JsLmNvbW9kb2NhLmNvbS9DT01PRE9SU0FDZXJ0aWZpY2F0aW9uQXV0aG9yaXR5LmNybDBxBggrBgEFBQcBAQRlMGMwOwYIKwYBBQUHMAKGL2h0dHA6Ly9jcnQuY29tb2RvY2EuY29tL0NPTU9ET1JTQUFkZFRydXN0Q0EuY3J0MCQGCCsGAQUFBzABhhhodHRwOi8vb2NzcC5jb21vZG9jYS5jb20wDQYJKoZIhvcNAQEMBQADggIBAGmKNmiaHjtlC+B8z6arcTuvYaQ/5GQBSRDTHY/i1e1n055bl71CHgf50Ltt9zKVWiIpYvgMnFlWJzagIhIR+kf0UclZeylKpUg1fMWXZuAnJTsVejJ1SpH7pmue4lP6DYwT+yO4CxIsru3bHUeQ1dCTaXaROBU01xjqfrxrWN4qOZADRARKVtho5fV8aX6efVRL0NiGq2dmE1deiSoXrS2uvUAOZu2K/1S0wQHLqeBHuhFhj62uI0gqxiV5iRxBBJXAEepXK9a0l/qx6RVi7Epxd/3zoZza9msAKcUy5/pO6rMqpxiXHFinQjZf7BTP+HsO993MiBWamlzI8SDH0YZyoRebrrr+bKgy0QB2SXP3PyeHPLbJLfqqkJDJCgmfyWkfBxmpv966+AuIgkQWEH8HwIAiX3+8MN66zQd5ZFbY//NPnDC7bh5RS+bNvRfExb/IP46xH4pGtwZDb2Itz1GdRcqK6ROLwMeRvlu2+jdKif7wndoTJiIsBpA+ixOYoBnW3dpKSH89D4mdJHJLDntE/9Q2toN2I1iLFGy4XfdhbTl27d0SPWuHiJeRvsBGAh52HN22r1xP9QDWnE2p4J6ijvyxFnlcIdNFgZoMOWxtKNcl0rcRkND23m9e9Pqki2Z3ci+bkEAsUhJg+f+1cC6JmnkJiYEt7Fx4b4GH8fxV"},{"base64":"MIIFdDCCBFygAwIBAgIQJ2buVutJ846r13Ci/ITeIjANBgkqhkiG9w0BAQwFADBvMQswCQYDVQQGEwJTRTEUMBIGA1UEChMLQWRkVHJ1c3QgQUIxJjAkBgNVBAsTHUFkZFRydXN0IEV4dGVybmFsIFRUUCBOZXR3b3JrMSIwIAYDVQQDExlBZGRUcnVzdCBFeHRlcm5hbCBDQSBSb290MB4XDTAwMDUzMDEwNDgzOFoXDTIwMDUzMDEwNDgzOFowgYUxCzAJBgNVBAYTAkdCMRswGQYDVQQIExJHcmVhdGVyIE1hbmNoZXN0ZXIxEDAOBgNVBAcTB1NhbGZvcmQxGjAYBgNVBAoTEUNPTU9ETyBDQSBMaW1pdGVkMSswKQYDVQQDEyJDT01PRE8gUlNBIENlcnRpZmljYXRpb24gQXV0aG9yaXR5MIICIjANBgkqhkiG9w0BAQEFAAOCAg8AMIICCgKCAgEAkehUktIKVrGsDSTdxc9EZ3SZKzejfSNwAHG8U9/E+ioSj0t/EFa9n3Byt2F/yUsPF6c947AEYe7/EZfH9IY+Cvo+XPmT5jR62RRr55yzhaCCenavcZDX7P0N+pxs+t+wgvQUfvm+xKYvT3+Zf7X8Z0NyvQwA1onrayzT7Y+YHBSrfuXjbvzYqOSSJNpDa2K4Vf3qwbxstovzDo2a5JtsaZn4eEgwRdWt4Q08RWD8MpZRJ7xnw8outmvqRsfHIKCxH2XeSAi6pE6p8oNGN4Tr6MyBSENnTnIqm1y9TBsoilwie7SrmNnu4FGDwwlGTm0+mfqVF9p8M1dBPI1R7Qu2XK8sYxrfV8g/vOldxJuvRZnio1oktLqpVj3Pb6r/SVi+8Kj/9Lit6Tf7urj0Czr56ENCHonYhMsT8dm74YlguIwoVqwUHZwK53Hrzw7dPamWoUi9PPevtQ0iTMARgexWO/bTouJbt7IEIlKVgJNp6I5MZfGRAy1wdALqi2cVKWlSArvX31BqVUa/oKMoYX9w0MOiqiwhqkfOKJwGRXa/ghgntNWutMtQ5mv0TIZxMOmm3xaG4Nj/QN370EKIf6MzOi5cHkERgWPOGHFrK+ymircxXDpqR+DDeVnWIBqv8mqYqnK8V0rSS527EPywTEHl7R09XiidnMy/s1Hap0flhFMCAwEAAaOB9DCB8TAfBgNVHSMEGDAWgBStvZh6NLQm9/rEJlTvA73gJMtUGjAdBgNVHQ4EFgQUu69+Aj36pvE8hI6t7jiY7NkyMtQwDgYDVR0PAQH/BAQDAgGGMA8GA1UdEwEB/wQFMAMBAf8wEQYDVR0gBAowCDAGBgRVHSAAMEQGA1UdHwQ9MDswOaA3oDWGM2h0dHA6Ly9jcmwudXNlcnRydXN0LmNvbS9BZGRUcnVzdEV4dGVybmFsQ0FSb290LmNybDA1BggrBgEFBQcBAQQpMCcwJQYIKwYBBQUHMAGGGWh0dHA6Ly9vY3NwLnVzZXJ0cnVzdC5jb20wDQYJKoZIhvcNAQEMBQADggEBAGS/g/FfmoXQzbihKVcN6Fr30ek+8nYEbvFScLsePP9NDXRqzIGCJdPDoCpdTPW6i6FtxFQJdcfjJw5dhHk3QBN39bSsHNA7qxcS1u80GH4r6XnTq1dFDK8o+tDb5VCViLvfhVdpfZLYUspzgb8c8+a4bmYRBbMelC1/kZWSWfFMzqORcUx8Rww7Cxn2obFshj5cqsQugsv5B5a6SE2Q8pTIqXOi6wZ7I53eovNNVZ96YUWYGGjHXkBrI/V5eu+MtWuLt29G9HvxPUsE2JOAWVrgQSQdso8VYFhH2+9uRv0V9dlfmrPb2LjkQLPNlzmuhbsdjrzch5vRpu/xO28QOG8="}],"version":"0303","random":"47a7e253140c6549036dae139b4de224e42bfd91a8c2150f9dab71ffdcc2daa1","selected_cipher_suite":"c02f","compression_method":"00","session_ticket":""}},"reassembly_properties":{"reassembled":true},"src_ip":"151.101.129.164","dst_ip":"192.168.113.237","protocol":6,"src_port":443,"dst_port":53270,"event_start":1565200425.846286} -{"ip":{"version":4,"ttl":64,"id":"020a"},"dns":{"base64":"MUcBAAABAAAAAAAABmV1cm9wYQJldQAAAQAB"},"src_ip":"192.168.113.237","dst_ip":"192.168.113.2","protocol":17,"src_port":56461,"dst_port":53,"event_start":1565200426.811933} -{"ip":{"version":4,"ttl":64,"id":"020b"},"dns":{"base64":"7t0BAAABAAAAAAAABmV1cm9wYQJldQAAHAAB"},"src_ip":"192.168.113.237","dst_ip":"192.168.113.2","protocol":17,"src_port":33812,"dst_port":53,"event_start":1565200426.812123} -{"ip":{"version":4,"ttl":128,"id":"b05d"},"dns":{"base64":"MUeBgAABAAIABQAIBmV1cm9wYQJldQAAAQABwAwAAQABAAAABQAEk0MiLcAMAAEAAQAAAAUABJND0i3AEwACAAEAAAAFAAkCdWsDZG5zwBPAEwACAAEAAAAFAAUCbmzASsATAAIAAQAAAAUABAF5wErAEwACAAEAAAAFAAQBeMBKwBMAAgABAAAABQAFAnNpwErAfQABAAEAAAAFAAS5l40BwG0AAQABAAAABQAEwpJqWsBcAAEAAQAAAAUABFvIEGTAjQABAAEAAAAFAATBAt08wEcAAQABAAAABQAEw0LxssB9ABwAAQAAAAUAECoCBWj+AAAAAAAAAAAAZXXAbQAcAAEAAAAFABAgAQZ8EBAAIwAAAAAAAABTwI0AHAABAAAABQAQIAEUcIAAAQAAAAAAAAAAAQ=="},"src_ip":"192.168.113.2","dst_ip":"192.168.113.237","protocol":17,"src_port":53,"dst_port":56461,"event_start":1565200426.854686} -{"ip":{"version":4,"ttl":128,"id":"b05e"},"dns":{"base64":"7t2BgAABAAIABQAIBmV1cm9wYQJldQAAHAABwAwAHAABAAAABQAQKgFwgAAkAQAAAAAABmYARcAMABwAAQAAAAUAECoBcIAAFAEAAAAAAAZmAEXAEwACAAEAAAAFAAkCdWsDZG5zwBPAEwACAAEAAAAFAAQBecBiwBMAAgABAAAABQAEAXjAYsATAAIAAQAAAAUABQJzacBiwBMAAgABAAAABQAFAm5swGLAhAABAAEAAAAFAAS5l40BwHQAAQABAAAABQAEwpJqWsClAAEAAQAAAAUABFvIEGTAlAABAAEAAAAFAATBAt08wF8AAQABAAAABQAEw0LxssCEABwAAQAAAAUAECoCBWj+AAAAAAAAAAAAZXXAdAAcAAEAAAAFABAgAQZ8EBAAIwAAAAAAAABTwJQAHAABAAAABQAQIAEUcIAAAQAAAAAAAAAAAQ=="},"src_ip":"192.168.113.2","dst_ip":"192.168.113.237","protocol":17,"src_port":53,"dst_port":33812,"event_start":1565200426.947227} -{"ip":{"version":4,"ttl":64,"id":"074f"},"fingerprints":{"tcp":"tcp/(40)()(40)(faf0)((020405b4)(04)(08)(01)(030307))"},"tcp":{"seq":413346416,"timestamp":{"ts_val":4243513275}},"src_ip":"192.168.113.237","dst_ip":"147.67.34.45","protocol":6,"src_port":34564,"dst_port":443,"event_start":1565200426.947850} -{"ip":{"version":4,"ttl":128,"id":"b05f"},"fingerprints":{"tcp_server":"tcp_server/(40)()(80)(faf0)((020405b4))"},"tcp_server":{"seq":513519800},"src_ip":"147.67.34.45","dst_ip":"192.168.113.237","protocol":6,"src_port":443,"dst_port":34564,"event_start":1565200427.077699} -{"ip":{"version":4,"ttl":64,"id":"0751"},"fingerprints":{"tls":"tls/(0303)(130213031301c02cc030009fcca9cca8ccaac02bc02f009ec024c028006bc023c0270067c00ac0140039c009c0130033009d009c003d003c0035002f00ff)((0000)(000b000403000102)(000a000c000a001d0017001e00190018)(0023)(0016)(0017)(000d0030002e040305030603080708080809080a080b080408050806040105010601030302030301020103020202040205020602)(002b0009080304030303020301)(002d00020101)(0033))"},"tls":{"client":{"version":"0303","random":"f90c0aa0066dcbecf32ee2d9f08c64f978f01b4fb2660b527ab4e792ce6c787e","session_id":"2e3b8c4d26c92f0be0bd402d9505141fea753d6987224ae791311c5925832b8f","cipher_suites":"130213031301c02cc030009fcca9cca8ccaac02bc02f009ec024c028006bc023c0270067c00ac0140039c009c0130033009d009c003d003c0035002f00ff","compression_methods":"00","server_name":"europa.eu","session_ticket":"","features":"[\"0303\",\"130213031301c02cc030009fcca9cca8ccaac02bc02f009ec024c028006bc023c0270067c00ac0140039c009c0130033009d009c003d003c0035002f00ff\",[[\"0000\",\"000c0000096575726f70612e6575\"],[\"000b\",\"03000102\"],[\"000a\",\"000a001d0017001e00190018\"],[\"0023\",\"\"],[\"0016\",\"\"],[\"0017\",\"\"],[\"000d\",\"002e040305030603080708080809080a080b080408050806040105010601030302030301020103020202040205020602\"],[\"002b\",\"080304030303020301\"],[\"002d\",\"0101\"],[\"0033\",\"0024001d00203f055f811cd36508aba7d6d457811d36843b764f69fc54319fec964e6fe38e29\"]]]"}},"src_ip":"192.168.113.237","dst_ip":"147.67.34.45","protocol":6,"src_port":34564,"dst_port":443,"event_start":1565200427.078109} -{"ip":{"version":4,"ttl":128,"id":"b063"},"fingerprints":{"tls_server":"tls_server/(0303)(c02f)((ff01)(000b00020100)(0017))"},"tls":{"server":{"certs":[{"base64":"MIIHJTCCBg2gAwIBAgIMd0nv2yasK3XL7I9wMA0GCSqGSIb3DQEBCwUAMGYxCzAJBgNVBAYTAkJFMRkwFwYDVQQKExBHbG9iYWxTaWduIG52LXNhMTwwOgYDVQQDEzNHbG9iYWxTaWduIE9yZ2FuaXphdGlvbiBWYWxpZGF0aW9uIENBIC0gU0hBMjU2IC0gRzIwHhcNMTgwMzI3MTIwMTA0WhcNMjAwNTIwMTAxNTAyWjBlMQswCQYDVQQGEwJCRTERMA8GA1UECBMIQnJ1c3NlbHMxETAPBgNVBAcTCEJydXNzZWxzMRwwGgYDVQQKExNFdXJvcGVhbiBDb21taXNzaW9uMRIwEAYDVQQDEwlldXJvcGEuZXUwggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDQPY1KTxUA4oUUhOen+zKWa5rK+1/5bddmU7v3Zezm1L2ai7q18zm7tnCzK4j2iUbFEzKOdGI3Tzt4+9nFBmM5xPUy2G0qRuZ3ySzcS5QAZJQK6cCwA6sWUYhqvpDcSc1osxPHBKjn7cABk7LXAbHfEONEg+90ZwW5seCgtBG0mV6Tu9OOIGVBbfO4CAPBAzGX2DFsw8mW9VRKz/HAikDlskOMLNWlwtrh+4DYxEic9q3WU9xOVYLzCeC1QoBTPkdE56ACJeAENPdWYcXfORfoCxmCT2TNkbBKaoMsWJvtNcWWzGmva41KdnL1GQAxrItZhAYLQNQ3SR+YPoLVSL0xAgMBAAGjggPSMIIDzjAOBgNVHQ8BAf8EBAMCBaAwgaAGCCsGAQUFBwEBBIGTMIGQME0GCCsGAQUFBzAChkFodHRwOi8vc2VjdXJlLmdsb2JhbHNpZ24uY29tL2NhY2VydC9nc29yZ2FuaXphdGlvbnZhbHNoYTJnMnIxLmNydDA/BggrBgEFBQcwAYYzaHR0cDovL29jc3AyLmdsb2JhbHNpZ24uY29tL2dzb3JnYW5pemF0aW9udmFsc2hhMmcyMFYGA1UdIARPME0wQQYJKwYBBAGgMgEUMDQwMgYIKwYBBQUHAgEWJmh0dHBzOi8vd3d3Lmdsb2JhbHNpZ24uY29tL3JlcG9zaXRvcnkvMAgGBmeBDAECAjAJBgNVHRMEAjAAMEkGA1UdHwRCMEAwPqA8oDqGOGh0dHA6Ly9jcmwuZ2xvYmFsc2lnbi5jb20vZ3MvZ3Nvcmdhbml6YXRpb252YWxzaGEyZzIuY3JsMBQGA1UdEQQNMAuCCWV1cm9wYS5ldTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwHQYDVR0OBBYEFNtSkcbZ0FxkMPm0QBidhAk+OUcVMB8GA1UdIwQYMBaAFJbeYfG9HBYpUxzAzH07gwBA5hp8MIIB9AYKKwYBBAHWeQIEAgSCAeQEggHgAd4AdQBvU3asMfAxGdiZAKRRFf93FRwR2QLBACkGjbIImjfZEwAAAWJnVU1oAAAEAwBGMEQCIEhSJBZ29XcNILkGQDUCBHCnx+/GaiCR7aHYjIr5sJ9LAiAzsjDjo53+gy+E0vhFJjbBh1bxFOFGzUac/I73vcnpHQB1AId1v+dZfPiMQ5lfvfNu/1aNR1Y2/0q1YMG06v9eoIMPAAABYmdVTe8AAAQDAEYwRAIgSxJnW+hIGUyMrpKsIsGdT6j+BGaijGF5NO9xocJm4Z0CIBz0zWJXXkDlMqb6sjvGpAwpB0t4SzgM3DHETAYGYV+kAHYApLkJkLQYWBSHuxOizGdwCjw1mAT5G9+443fNDsgN3BAAAAFiZ1VNzQAABAMARzBFAiA7q/H3L6S7zGut9me6GLicWD3J0Iu1Ni9JZZC0MvZVvgIhALag+3P33Q0hA83sStZAHppu4gXNcZBCsKuMs4qW7KuzAHYAu9nfvB+KcbWTlCOXqpJ7RzhXlQqrUugakJZkNo4e0YUAAAFiZ1VPOwAABAMARzBFAiEAreQTpIcYxnr39P0H47Motp7QLdHqTi2ibt1bjTpk01YCIGP5P8pyfRf1TdFz202jvpSmBpVGqIVr7HmMcvU39M4IMA0GCSqGSIb3DQEBCwUAA4IBAQCmn0XKJPWSgaHnL7uuLJ5Ckox8c14NJP7Oj6WoD1KubzfSPYJh+dELmAXAkPrCLy0GVHGfSqN3DgZQhkx2teVvr0luXLJVjsTf8cLTBkAnMP783p6Zwgwbfdf3hbhPHcUbjvbR5qtEFbyDl2yksbUaPSJnoIuy8v0pyeXEd4YxJaSiSjQ+8Tp8ILcuIrmCZEGS4IKKSRzBkmOT6OX2PdVs9ow0+9RRCFHmXceQNa5qjRXs22QjCTE45mcF2ajbDyg5b9sueL93pWvN3ihJcxa3lCd5FHIG3b3GctksRAusVvMhSI26kMZJBLyvfwvphqQjVoaOYAx4mVejLA7L7fqK"},{"base64":"MIIEaTCCA1GgAwIBAgILBAAAAAABRE7wQkcwDQYJKoZIhvcNAQELBQAwVzELMAkGA1UEBhMCQkUxGTAXBgNVBAoTEEdsb2JhbFNpZ24gbnYtc2ExEDAOBgNVBAsTB1Jvb3QgQ0ExGzAZBgNVBAMTEkdsb2JhbFNpZ24gUm9vdCBDQTAeFw0xNDAyMjAxMDAwMDBaFw0yNDAyMjAxMDAwMDBaMGYxCzAJBgNVBAYTAkJFMRkwFwYDVQQKExBHbG9iYWxTaWduIG52LXNhMTwwOgYDVQQDEzNHbG9iYWxTaWduIE9yZ2FuaXphdGlvbiBWYWxpZGF0aW9uIENBIC0gU0hBMjU2IC0gRzIwggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDHDmw/I5N/zHClnSDDDlM/fsBOwphJykfVI+8DNIV0yKMCLkZcC33JiJ1Pi/D4nGyMVTXbv/Kz6vvjVudKRtkTIso21ZvBqOOWQ5PyDLzm+ebomchjSHh/VzZpGhkdWtHUfcKc1H/hgBKueuqI6lfYygoKOhJJomIZeg0k9zfrtHOSewUjmxK1zusp36QUArkBpdSmnENkiN74fv7j9R7l/tyjqORmMdlMJekYuYlZCa7pnRxtNw9KHjUgKOKv1CGLAcRFrW4rY6uSa2EKTSDtc7p8zv4WtdufgPDWi2zZCHlKT3hl2pK8vjX5s8T5J4BO/5ZS5gIg4Qdz6V0rvbLxAgMBAAGjggElMIIBITAOBgNVHQ8BAf8EBAMCAQYwEgYDVR0TAQH/BAgwBgEB/wIBADAdBgNVHQ4EFgQUlt5h8b0cFilTHMDMfTuDAEDmGnwwRwYDVR0gBEAwPjA8BgRVHSAAMDQwMgYIKwYBBQUHAgEWJmh0dHBzOi8vd3d3Lmdsb2JhbHNpZ24uY29tL3JlcG9zaXRvcnkvMDMGA1UdHwQsMCowKKAmoCSGImh0dHA6Ly9jcmwuZ2xvYmFsc2lnbi5uZXQvcm9vdC5jcmwwPQYIKwYBBQUHAQEEMTAvMC0GCCsGAQUFBzABhiFodHRwOi8vb2NzcC5nbG9iYWxzaWduLmNvbS9yb290cjEwHwYDVR0jBBgwFoAUYHtmGkUNl8qJUC99BM00qP/8/UswDQYJKoZIhvcNAQELBQADggEBAEYq7l69rgFgNzERhnF0tkZJyBAW/i9iIxerH4f4gu3K3w4s32R1juUYcqeMOovJrKV3UPfvnqTgoI8UV6MqX+x+bRDmuo2wCId2Dkyy2VG7EQLyXN0cvfNVlg/UBsD84iOKJHDTu/B5GqdhcIOKrwbFINihY9Bsrk8y1658GEV1BSl330JAZGSGvip2CTFvHST0mdCF/vIhCPnG9vHQWe3WVjwIKANnuvD58ZAWR65n5ryASOlCdjSXVWkkDoPWoC209fN5ikkodBpBocLTJIg1MGCUF7ThBCIxPTsvFwayuJ2GK1pp74P1S8SqtCr4fKGxhZSM9AyHDPSsQPhZSZg="}],"version":"0303","random":"aa069ecafb341eeceb452d8daa09b9cef1c591c9cdea3dc76ab4f6c0a7b3cdad","selected_cipher_suite":"c02f","compression_method":"00"}},"reassembly_properties":{"reassembled":true},"src_ip":"147.67.34.45","dst_ip":"192.168.113.237","protocol":6,"src_port":443,"dst_port":34564,"event_start":1565200427.209015} -{"ip":{"version":4,"ttl":64,"id":"0294"},"dns":{"base64":"T1UBAAABAAAAAAAAB3N1cHBvcnQGZ29vZ2xlA2NvbQAAAQAB"},"src_ip":"192.168.113.237","dst_ip":"192.168.113.2","protocol":17,"src_port":41110,"dst_port":53,"event_start":1565200427.622713} -{"ip":{"version":4,"ttl":64,"id":"0295"},"dns":{"base64":"h64BAAABAAAAAAAAB3N1cHBvcnQGZ29vZ2xlA2NvbQAAHAAB"},"src_ip":"192.168.113.237","dst_ip":"192.168.113.2","protocol":17,"src_port":60189,"dst_port":53,"event_start":1565200427.622892} -{"ip":{"version":4,"ttl":128,"id":"b076"},"dns":{"base64":"h66BgAABAAEADQANB3N1cHBvcnQGZ29vZ2xlA2NvbQAAHAABwAwAHAABAAAABQAQJgf4sEAECBQAAAAAAAAgDsAbAAIAAQAAAAUAFAFsDGd0bGQtc2VydmVycwNuZXQAwBsAAgABAAAABQAEAWjATsAbAAIAAQAAAAUABAFhwE7AGwACAAEAAAAFAAQBZ8BOwBsAAgABAAAABQAEAW3ATsAbAAIAAQAAAAUABAFmwE7AGwACAAEAAAAFAAQBacBOwBsAAgABAAAABQAEAWrATsAbAAIAAQAAAAUABAFiwE7AGwACAAEAAAAFAAQBZcBOwBsAAgABAAAABQAEAWPATsAbAAIAAQAAAAUABAFrwE7AGwACAAEAAAAFAAQBZMBOwHwAAQABAAAABQAEwAUGHsDcAAEAAQAAAAUABMAhDh7A/AABAAEAAAAFAATAGlwewRwAAQABAAAABQAEwB9QHsDsAAEAAQAAAAUABMAMXh7ArAABAAEAAAAFAATAIzMewIwAAQABAAAABQAEwCpdHsBsAAEAAQAAAAUABMA2cB7AvAABAAEAAAAFAATAK6wewMwAAQABAAAABQAEwDBPHsEMAAEAAQAAAAUABMA0sh7ATAABAAEAAAAFAATAKaIewJwAAQABAAAABQAEwDdTHg=="},"src_ip":"192.168.113.2","dst_ip":"192.168.113.237","protocol":17,"src_port":53,"dst_port":60189,"event_start":1565200427.657997} -{"ip":{"version":4,"ttl":128,"id":"b077"},"dns":{"base64":"T1WBgAABAAEADQAOB3N1cHBvcnQGZ29vZ2xlA2NvbQAAAQABwAwAAQABAAAABQAErNmkjsAbAAIAAQAAAAUAFAFtDGd0bGQtc2VydmVycwNuZXQAwBsAAgABAAAABQAEAWXAQsAbAAIAAQAAAAUABAFjwELAGwACAAEAAAAFAAQBZ8BCwBsAAgABAAAABQAEAWjAQsAbAAIAAQAAAAUABAFiwELAGwACAAEAAAAFAAQBZsBCwBsAAgABAAAABQAEAWnAQsAbAAIAAQAAAAUABAFrwELAGwACAAEAAAAFAAQBYcBCwBsAAgABAAAABQAEAWzAQsAbAAIAAQAAAAUABAFqwELAGwACAAEAAAAFAAQBZMBCwOAAAQABAAAABQAEwAUGHsCgAAEAAQAAAAUABMAhDh7AcAABAAEAAAAFAATAGlwewRAAAQABAAAABQAEwB9QHsBgAAEAAQAAAAUABMAMXh7AsAABAAEAAAAFAATAIzMewIAAAQABAAAABQAEwCpdHsCQAAEAAQAAAAUABMA2cB7AwAABAAEAAAAFAATAK6wewQAAAQABAAAABQAEwDBPHsDQAAEAAQAAAAUABMA0sh7A8AABAAEAAAAFAATAKaIewEAAAQABAAAABQAEwDdTHsDgABwAAQAAAAUAECABBQOoPgAAAAAAAAACADA="},"src_ip":"192.168.113.2","dst_ip":"192.168.113.237","protocol":17,"src_port":53,"dst_port":41110,"event_start":1565200427.658241} -{"ip":{"version":4,"ttl":64,"id":"20ee"},"fingerprints":{"tcp":"tcp/(40)()(40)(faf0)((020405b4)(04)(08)(01)(030307))"},"tcp":{"seq":1800342815,"timestamp":{"ts_val":1555200525}},"src_ip":"192.168.113.237","dst_ip":"172.217.164.142","protocol":6,"src_port":39552,"dst_port":443,"event_start":1565200427.658489} -{"ip":{"version":4,"ttl":128,"id":"b078"},"fingerprints":{"tcp_server":"tcp_server/(40)()(80)(faf0)((020405b4))"},"tcp_server":{"seq":2908696000},"src_ip":"172.217.164.142","dst_ip":"192.168.113.237","protocol":6,"src_port":443,"dst_port":39552,"event_start":1565200427.696804} -{"ip":{"version":4,"ttl":64,"id":"20f0"},"fingerprints":{"tls":"tls/(0303)(130213031301c02cc030009fcca9cca8ccaac02bc02f009ec024c028006bc023c0270067c00ac0140039c009c0130033009d009c003d003c0035002f00ff)((0000)(000b000403000102)(000a000c000a001d0017001e00190018)(0023)(0016)(0017)(000d0030002e040305030603080708080809080a080b080408050806040105010601030302030301020103020202040205020602)(002b0009080304030303020301)(002d00020101)(0033))"},"tls":{"client":{"version":"0303","random":"fc7bfc84755fa943452917ea69ce86bace30b7c8ee3cd8db18173b280f0d2bd8","session_id":"70ca14ca5034d284a0469e8c7ee9ef4493c9818b588fc3b85e7f09ad86088b29","cipher_suites":"130213031301c02cc030009fcca9cca8ccaac02bc02f009ec024c028006bc023c0270067c00ac0140039c009c0130033009d009c003d003c0035002f00ff","compression_methods":"00","server_name":"support.google.com","session_ticket":"","features":"[\"0303\",\"130213031301c02cc030009fcca9cca8ccaac02bc02f009ec024c028006bc023c0270067c00ac0140039c009c0130033009d009c003d003c0035002f00ff\",[[\"0000\",\"0015000012737570706f72742e676f6f676c652e636f6d\"],[\"000b\",\"03000102\"],[\"000a\",\"000a001d0017001e00190018\"],[\"0023\",\"\"],[\"0016\",\"\"],[\"0017\",\"\"],[\"000d\",\"002e040305030603080708080809080a080b080408050806040105010601030302030301020103020202040205020602\"],[\"002b\",\"080304030303020301\"],[\"002d\",\"0101\"],[\"0033\",\"0024001d00209195fec150bee62ecec6fcc6bfa26c4c71bc01b809081070ac6bcceefdd97773\"]]]"}},"src_ip":"192.168.113.237","dst_ip":"172.217.164.142","protocol":6,"src_port":39552,"dst_port":443,"event_start":1565200427.697257} -{"ip":{"version":4,"ttl":128,"id":"b07a"},"fingerprints":{"tls_server":"tls_server/(0303)(1302)((0033)(002b00020304))"},"tls":{"server":{"version":"0303","random":"3fa0b3287674891f392fd1ba8639629c818f928ef2b3326b43087d61534ae1be","selected_cipher_suite":"1302","compression_method":"00"}},"src_ip":"172.217.164.142","dst_ip":"192.168.113.237","protocol":6,"src_port":443,"dst_port":39552,"event_start":1565200427.747470} -{"ip":{"version":4,"ttl":64,"id":"0302"},"dns":{"base64":"O9MBAAABAAAAAAAABnJlZGRpdANjb20AAAEAAQ=="},"src_ip":"192.168.113.237","dst_ip":"192.168.113.2","protocol":17,"src_port":54670,"dst_port":53,"event_start":1565200428.199247} -{"ip":{"version":4,"ttl":64,"id":"0303"},"dns":{"base64":"IaMBAAABAAAAAAAABnJlZGRpdANjb20AABwAAQ=="},"src_ip":"192.168.113.237","dst_ip":"192.168.113.2","protocol":17,"src_port":59242,"dst_port":53,"event_start":1565200428.199423} -{"ip":{"version":4,"ttl":128,"id":"b1d2"},"dns":{"base64":"IaOBgAABAAAAAQAABnJlZGRpdANjb20AABwAAcAMAAYAAQAAAAUARQZucy01NTcJYXdzZG5zLTA1A25ldAARYXdzZG5zLWhvc3RtYXN0ZXIGYW1hem9uwBMAAAABAAAcIAAAA4QAEnUAAAFRgA=="},"src_ip":"192.168.113.2","dst_ip":"192.168.113.237","protocol":17,"src_port":53,"dst_port":59242,"event_start":1565200428.230722} -{"ip":{"version":4,"ttl":128,"id":"b1d3"},"dns":{"base64":"O9OBgAABAAQADQAMBnJlZGRpdANjb20AAAEAAcAMAAEAAQAAAAUABJdlwYzADAABAAEAAAAFAASXZQGMwAwAAQABAAAABQAEl2VBjMAMAAEAAQAAAAUABJdlgYzAEwACAAEAAAAFABQBZAxndGxkLXNlcnZlcnMDbmV0AMATAAIAAQAAAAUABAFowGrAEwACAAEAAAAFAAQBZcBqwBMAAgABAAAABQAEAWzAasATAAIAAQAAAAUABAFjwGrAEwACAAEAAAAFAAQBasBqwBMAAgABAAAABQAEAWvAasATAAIAAQAAAAUABAFpwGrAEwACAAEAAAAFAAQBZsBqwBMAAgABAAAABQAEAW3AasATAAIAAQAAAAUABAFnwGrAEwACAAEAAAAFAAQBYcBqwBMAAgABAAAABQAEAWLAasEoAAEAAQAAAAUABMAFBh7BOAABAAEAAAAFAATAIQ4ewLgAAQABAAAABQAEwBpcHsBoAAEAAQAAAAUABMAfUB7AmAABAAEAAAAFAATADF4ewPgAAQABAAAABQAEwCMzHsEYAAEAAQAAAAUABMAqXR7AiAABAAEAAAAFAATANnAewOgAAQABAAAABQAEwCusHsDIAAEAAQAAAAUABMAwTx7A2AABAAEAAAAFAATANLIewKgAAQABAAAABQAEwCmiHg=="},"src_ip":"192.168.113.2","dst_ip":"192.168.113.237","protocol":17,"src_port":53,"dst_port":54670,"event_start":1565200428.230914} -{"ip":{"version":4,"ttl":64,"id":"f8b1"},"fingerprints":{"tcp":"tcp/(40)()(40)(faf0)((020405b4)(04)(08)(01)(030307))"},"tcp":{"seq":3012744753,"timestamp":{"ts_val":2410227559}},"src_ip":"192.168.113.237","dst_ip":"151.101.193.140","protocol":6,"src_port":47852,"dst_port":443,"event_start":1565200428.231162} -{"ip":{"version":4,"ttl":128,"id":"b1d4"},"fingerprints":{"tcp_server":"tcp_server/(40)()(80)(faf0)((020405b4))"},"tcp_server":{"seq":1546257305},"src_ip":"151.101.193.140","dst_ip":"192.168.113.237","protocol":6,"src_port":443,"dst_port":47852,"event_start":1565200428.274385} -{"ip":{"version":4,"ttl":64,"id":"f8b3"},"fingerprints":{"tls":"tls/(0303)(130213031301c02cc030009fcca9cca8ccaac02bc02f009ec024c028006bc023c0270067c00ac0140039c009c0130033009d009c003d003c0035002f00ff)((0000)(000b000403000102)(000a000c000a001d0017001e00190018)(0023)(0016)(0017)(000d0030002e040305030603080708080809080a080b080408050806040105010601030302030301020103020202040205020602)(002b0009080304030303020301)(002d00020101)(0033))"},"tls":{"client":{"version":"0303","random":"45fb47c329d8ca41c031e85e4da72a90c2ff33d3c572256d5a08f4b6edd89269","session_id":"69c7cff1f2c63f352d736d218ea8ef5150aef09f4cddf60845d860d5d7b6e298","cipher_suites":"130213031301c02cc030009fcca9cca8ccaac02bc02f009ec024c028006bc023c0270067c00ac0140039c009c0130033009d009c003d003c0035002f00ff","compression_methods":"00","server_name":"reddit.com","session_ticket":"","features":"[\"0303\",\"130213031301c02cc030009fcca9cca8ccaac02bc02f009ec024c028006bc023c0270067c00ac0140039c009c0130033009d009c003d003c0035002f00ff\",[[\"0000\",\"000d00000a7265646469742e636f6d\"],[\"000b\",\"03000102\"],[\"000a\",\"000a001d0017001e00190018\"],[\"0023\",\"\"],[\"0016\",\"\"],[\"0017\",\"\"],[\"000d\",\"002e040305030603080708080809080a080b080408050806040105010601030302030301020103020202040205020602\"],[\"002b\",\"080304030303020301\"],[\"002d\",\"0101\"],[\"0033\",\"0024001d0020e69bff27c71bd5c46e0b1a4d53566f7c8284a56059a4e2e14a33760cf672563d\"]]]"}},"src_ip":"192.168.113.237","dst_ip":"151.101.193.140","protocol":6,"src_port":47852,"dst_port":443,"event_start":1565200428.274631} -{"ip":{"version":4,"ttl":128,"id":"b1d8"},"fingerprints":{"tls_server":"tls_server/(0303)(c02f)((ff01)(0000)(000b000403000102)(0023)(0017))"},"tls":{"server":{"certs":[{"base64":"MIIHQzCCBiugAwIBAgIQB1sC352kFlEvZM5wcfyMBzANBgkqhkiG9w0BAQsFADBNMQswCQYDVQQGEwJVUzEVMBMGA1UEChMMRGlnaUNlcnQgSW5jMScwJQYDVQQDEx5EaWdpQ2VydCBTSEEyIFNlY3VyZSBTZXJ2ZXIgQ0EwHhcNMTgwODE3MDAwMDAwWhcNMjAwOTAyMTIwMDAwWjBnMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZyYW5jaXNjbzEUMBIGA1UEChMLUmVkZGl0IEluYy4xFTATBgNVBAMMDCoucmVkZGl0LmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAM/pmlSjpBriKS1FgXKzqItMziu7otc9nmls8zLRaKwDHRpwVfiGWkLckOfvhn79U2zqwDilJ7TKepbjXgpa7mUgs5bX5DqZPXhyfV1hFD66RRQi2wVbvdbJdBGL3VrKZVJRIIpTtc3Q169FIslNKbc9eGq1nwO/REhI5dxDCHAoHwLpp+XfbjkBJGzlgKIBdBHed67KFVUKFvh1RVanVJUNG6IkAXXnPZSigwfA2wBH3QguOc1YxswPB4cOH5sdZeAJQ6j9rSxNqjZthoV43La5nsVYxRtreJ8ooV5ZX/dsL7BBBkWfF/acVSU3f7X7XiFz23vruQyBNQKT2HKXwgcCAwEAAaOCBAMwggP/MB8GA1UdIwQYMBaAFA+AYRyCMWHVLyjnjUY4tCzhxtniMB0GA1UdDgQWBBRx4FDR54BS+yMUZZ1Dp40xqlZpJjCBxAYDVR0RBIG8MIG5ggwqLnJlZGRpdC5jb22CCnJlZGRpdC5jb22CESoucmVkZGl0bWVkaWEuY29tgg9yZWRkaXRtZWRpYS5jb22CCSoucmVkZC5pdIIHcmVkZC5pdIIUd3d3LnJlZGRpdHN0YXRpYy5jb22CE2kucmVkZGl0dXBsb2Fkcy5jb22CGCoudGh1bWJzLnJlZGRpdG1lZGlhLmNvbYIRd3d3LnJlZGRpdGluYy5jb22CDXJlZGRpdGluYy5jb20wDgYDVR0PAQH/BAQDAgWgMB0GA1UdJQQWMBQGCCsGAQUFBwMBBggrBgEFBQcDAjBrBgNVHR8EZDBiMC+gLaArhilodHRwOi8vY3JsMy5kaWdpY2VydC5jb20vc3NjYS1zaGEyLWc2LmNybDAvoC2gK4YpaHR0cDovL2NybDQuZGlnaWNlcnQuY29tL3NzY2Etc2hhMi1nNi5jcmwwTAYDVR0gBEUwQzA3BglghkgBhv1sAQEwKjAoBggrBgEFBQcCARYcaHR0cHM6Ly93d3cuZGlnaWNlcnQuY29tL0NQUzAIBgZngQwBAgIwfAYIKwYBBQUHAQEEcDBuMCQGCCsGAQUFBzABhhhodHRwOi8vb2NzcC5kaWdpY2VydC5jb20wRgYIKwYBBQUHMAKGOmh0dHA6Ly9jYWNlcnRzLmRpZ2ljZXJ0LmNvbS9EaWdpQ2VydFNIQTJTZWN1cmVTZXJ2ZXJDQS5jcnQwDAYDVR0TAQH/BAIwADCCAX4GCisGAQQB1nkCBAIEggFuBIIBagFoAHUApLkJkLQYWBSHuxOizGdwCjw1mAT5G9+443fNDsgN3BAAAAFlRULTsAAABAMARjBEAiBcrugEb8o8AymzIh0fUN/F0i9SHl/xCQnCIMbXoSd+rwIgVwN50xsjJVuBP7cVxR5oSlj2USU3KVkZoAq+PIwMHucAdgCHdb/nWXz4jEOZX73zbv9WjUdWNv9KtWDBtOr/XqCDDwAAAWVFQtSDAAAEAwBHMEUCIGo9XmyFN5b38sdORa5NThm594MGPYK4se987nB8WsvPAiEA8Imvn9QF63D4vIwY8d+aticvw2dbwHdoZFpCj96yRn8AdwC72d+8H4pxtZOUI5eqkntHOFeVCqtS6BqQlmQ2jh7RhQAAAWVFQtSGAAAEAwBIMEYCIQCH+S3U0ac6/F5Bsc5xyHpO+UTpgz8DKiJSCfaObn3u5wIhANl9+8L/zSfwf7KPUhdPWfNnkMUFaFgRY1/HdOej6a4UMA0GCSqGSIb3DQEBCwUAA4IBAQC9OsE5bjOOvx0VowfFacujFxU1kYDikX90BH106XP7YQIExGmjZ9mo5Ai6UgMHUSIYO4sNFcZYYk6N7bd75K0i8U8X2AcoIfiC6VYdrw4e2rNMXW10CzIh1Co/t65QZ9KtuWXWwxQJYJuIcLsQT7MG7+K48ZJNSsB9VuuzqNebxSZTyhEBMsN030/Oy1CiUsq+nekZfibcAHxc5L6JG8sFnW6R4uTuGg1qZsvr95KZi5lpoUOE2UkdOK2TG7ntn7JLY4C4Yv2VGKrnxGiqajcKwkdh0a6xC1EXY9JObNczgauCO56+f8+xcRoZpTAE/JtywwVl++brUeoLLUdCVthx"},{"base64":"MIIElDCCA3ygAwIBAgIQAf2j627KdciIQ4tyS8+8kTANBgkqhkiG9w0BAQsFADBhMQswCQYDVQQGEwJVUzEVMBMGA1UEChMMRGlnaUNlcnQgSW5jMRkwFwYDVQQLExB3d3cuZGlnaWNlcnQuY29tMSAwHgYDVQQDExdEaWdpQ2VydCBHbG9iYWwgUm9vdCBDQTAeFw0xMzAzMDgxMjAwMDBaFw0yMzAzMDgxMjAwMDBaME0xCzAJBgNVBAYTAlVTMRUwEwYDVQQKEwxEaWdpQ2VydCBJbmMxJzAlBgNVBAMTHkRpZ2lDZXJ0IFNIQTIgU2VjdXJlIFNlcnZlciBDQTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANyuWJBNwcQwFZA1W248ghX1LFy949v/cUP6ZCWA1O4Yok3wZtAKc24RmDYXZK83nf36QYSvx6+M/hpzTc8zl5CilodTgyu5pnVILR1WN3vaMTIa16yrBvSqXUu3R0bdKpPDkC55gIDvEwRqFDu1m5K+wgdlTvza/P96rtxcflUxDOg5B6TXvi/TC2rSsd9f/ld0Uzs1gN2ujkSYs58O09rg1/RrKatEp0tYhG2SS4HD2nOLEpdIkARFdRrdNzGXkujNVA075ME/OV4uuPNcfhCOhkEAjUVmR7ChZc6gqikJTvOX6+guqw9ypzAO+sf0/RR3w6RbKFfCs/mC/bdFWJsCAwEAAaOCAVowggFWMBIGA1UdEwEB/wQIMAYBAf8CAQAwDgYDVR0PAQH/BAQDAgGGMDQGCCsGAQUFBwEBBCgwJjAkBggrBgEFBQcwAYYYaHR0cDovL29jc3AuZGlnaWNlcnQuY29tMHsGA1UdHwR0MHIwN6A1oDOGMWh0dHA6Ly9jcmwzLmRpZ2ljZXJ0LmNvbS9EaWdpQ2VydEdsb2JhbFJvb3RDQS5jcmwwN6A1oDOGMWh0dHA6Ly9jcmw0LmRpZ2ljZXJ0LmNvbS9EaWdpQ2VydEdsb2JhbFJvb3RDQS5jcmwwPQYDVR0gBDYwNDAyBgRVHSAAMCowKAYIKwYBBQUHAgEWHGh0dHBzOi8vd3d3LmRpZ2ljZXJ0LmNvbS9DUFMwHQYDVR0OBBYEFA+AYRyCMWHVLyjnjUY4tCzhxtniMB8GA1UdIwQYMBaAFAPeUDVW0Uy7ZvCj4hsbw5eyPdFVMA0GCSqGSIb3DQEBCwUAA4IBAQAjPt9L0jFCpbZ+QlwaRMxp0Wi0XUvgBCFsS+JtzLHgl4+mUwnNqipl5TlPHoOlblyYoiQm5vuh7ZPHLgLGTUq/sELfeNqzqPlt/yGFUzZgTHbO7Djc1lGA8MXW5dRNJ2Srm8c+cftIl7gzbckTB+6WohsYFfZcTEDts8Ls/3HB40f/1LkAtDdC2iDJ6m6K7hQGrn2iWZiIqBtvLfTyyRRfJs8sjX7tN8Cp1Tm5gr8ZDOo0rwAhaPitc+LJMto4JQtV05od8GiG7S5BNO98pVAdvzr508EIDObtHopYJeS4d60tbvVS3bR0j6tJLp07kzQoH3jOlOrHvdPJbRzeXDLz"}],"version":"0303","random":"b48a627faac16e61c70c2f8fc7db52a26616f5f9f26bdd1f07ab93fa38fbc5a0","selected_cipher_suite":"c02f","compression_method":"00","session_ticket":""}},"reassembly_properties":{"reassembled":true},"src_ip":"151.101.193.140","dst_ip":"192.168.113.237","protocol":6,"src_port":443,"dst_port":47852,"event_start":1565200428.313665} -{"ip":{"version":4,"ttl":64,"id":"031c"},"dns":{"base64":"qs4BAAABAAAAAAAAA3d3dwZyZWRkaXQDY29tAAABAAE="},"src_ip":"192.168.113.237","dst_ip":"192.168.113.2","protocol":17,"src_port":34264,"dst_port":53,"event_start":1565200428.403266} -{"ip":{"version":4,"ttl":64,"id":"031d"},"dns":{"base64":"sO0BAAABAAAAAAAAA3d3dwZyZWRkaXQDY29tAAAcAAE="},"src_ip":"192.168.113.237","dst_ip":"192.168.113.2","protocol":17,"src_port":40557,"dst_port":53,"event_start":1565200428.403543} -{"ip":{"version":4,"ttl":128,"id":"b1df"},"dns":{"base64":"qs6BgAABAAUADQAKA3d3dwZyZWRkaXQDY29tAAABAAHADAAFAAEAAAAFABcGcmVkZGl0A21hcAZmYXN0bHkDbmV0AMAsAAEAAQAAAAUABJdlwYzALAABAAEAAAAFAASXZQGMwCwAAQABAAAABQAEl2VBjMAsAAEAAQAAAAUABJdlgYzAPgACAAEAAAAFABEBZQxndGxkLXNlcnZlcnPAPsA+AAIAAQAAAAUABAFkwJHAPgACAAEAAAAFAAQBbcCRwD4AAgABAAAABQAEAWfAkcA+AAIAAQAAAAUABAFiwJHAPgACAAEAAAAFAAQBacCRwD4AAgABAAAABQAEAWbAkcA+AAIAAQAAAAUABAFswJHAPgACAAEAAAAFAAQBYcCRwD4AAgABAAAABQAEAWrAkcA+AAIAAQAAAAUABAFjwJHAPgACAAEAAAAFAAQBa8CRwD4AAgABAAAABQAEAWjAkcEcAAEAAQAAAAUABMAFBh7A3AABAAEAAAAFAATAIQ4ewTwAAQABAAAABQAEwBpcHsCsAAEAAQAAAAUABMAfUB7AjwABAAEAAAAFAATADF4ewPwAAQABAAAABQAEwCMzHsDMAAEAAQAAAAUABMAqXR7BXAABAAEAAAAFAATANnAewOwAAQABAAAABQAEwCusHsEsAAEAAQAAAAUABMAwTx4="},"src_ip":"192.168.113.2","dst_ip":"192.168.113.237","protocol":17,"src_port":53,"dst_port":34264,"event_start":1565200428.439351} -{"ip":{"version":4,"ttl":128,"id":"b1e0"},"dns":{"base64":"sO2BgAABAAEAAQAAA3d3dwZyZWRkaXQDY29tAAAcAAHADAAFAAEAAAAFABcGcmVkZGl0A21hcAZmYXN0bHkDbmV0AMA3AAYAAQAAAAUALgNuczHANwpob3N0bWFzdGVyBmZhc3RsecAXeDnGKQAADhAAAAJYAAk6gAAAAB4="},"src_ip":"192.168.113.2","dst_ip":"192.168.113.237","protocol":17,"src_port":53,"dst_port":40557,"event_start":1565200428.440603} -{"ip":{"version":4,"ttl":64,"id":"0324"},"dns":{"base64":"q9wBAAABAAAAAAAABnJlZGRpdANtYXAGZmFzdGx5A25ldAAAHAAB"},"src_ip":"192.168.113.237","dst_ip":"192.168.113.2","protocol":17,"src_port":60293,"dst_port":53,"event_start":1565200428.440887} -{"ip":{"version":4,"ttl":128,"id":"b1e1"},"dns":{"base64":"q9yBgAABAAAAAQAABnJlZGRpdANtYXAGZmFzdGx5A25ldAAAHAABwBcABgABAAAABQAxA25zMcAXCmhvc3RtYXN0ZXIGZmFzdGx5A2NvbQB4OcYpAAAOEAAAAlgACTqAAAAAHg=="},"src_ip":"192.168.113.2","dst_ip":"192.168.113.237","protocol":17,"src_port":53,"dst_port":60293,"event_start":1565200428.478180} -{"ip":{"version":4,"ttl":64,"id":"5d6b"},"fingerprints":{"tcp":"tcp/(40)()(40)(faf0)((020405b4)(04)(08)(01)(030307))"},"tcp":{"seq":2527163349,"timestamp":{"ts_val":941756443}},"src_ip":"192.168.113.237","dst_ip":"151.101.129.140","protocol":6,"src_port":42288,"dst_port":443,"event_start":1565200428.478770} -{"ip":{"version":4,"ttl":128,"id":"b1e2"},"fingerprints":{"tcp_server":"tcp_server/(40)()(80)(faf0)((020405b4))"},"tcp_server":{"seq":2158677407},"src_ip":"151.101.129.140","dst_ip":"192.168.113.237","protocol":6,"src_port":443,"dst_port":42288,"event_start":1565200428.517838} -{"ip":{"version":4,"ttl":64,"id":"5d6d"},"fingerprints":{"tls":"tls/(0303)(130213031301c02cc030009fcca9cca8ccaac02bc02f009ec024c028006bc023c0270067c00ac0140039c009c0130033009d009c003d003c0035002f00ff)((0000)(000b000403000102)(000a000c000a001d0017001e00190018)(0023)(0016)(0017)(000d0030002e040305030603080708080809080a080b080408050806040105010601030302030301020103020202040205020602)(002b0009080304030303020301)(002d00020101)(0033))"},"tls":{"client":{"version":"0303","random":"440ec5f6bbf739a48bb997b48f2458e378528fefb766860170cd4699429dc09a","session_id":"8187fdd8471acf8e2fb3cada60f93d5fe10b6a29325ea80f2810d8b8d00fa648","cipher_suites":"130213031301c02cc030009fcca9cca8ccaac02bc02f009ec024c028006bc023c0270067c00ac0140039c009c0130033009d009c003d003c0035002f00ff","compression_methods":"00","server_name":"www.reddit.com","session_ticket":"","features":"[\"0303\",\"130213031301c02cc030009fcca9cca8ccaac02bc02f009ec024c028006bc023c0270067c00ac0140039c009c0130033009d009c003d003c0035002f00ff\",[[\"0000\",\"001100000e7777772e7265646469742e636f6d\"],[\"000b\",\"03000102\"],[\"000a\",\"000a001d0017001e00190018\"],[\"0023\",\"\"],[\"0016\",\"\"],[\"0017\",\"\"],[\"000d\",\"002e040305030603080708080809080a080b080408050806040105010601030302030301020103020202040205020602\"],[\"002b\",\"080304030303020301\"],[\"002d\",\"0101\"],[\"0033\",\"0024001d0020c5501d6c04065f060ff5dc823d450b0e29ed48e8e8d7a504a9ebec2248ba180e\"]]]"}},"src_ip":"192.168.113.237","dst_ip":"151.101.129.140","protocol":6,"src_port":42288,"dst_port":443,"event_start":1565200428.518183} -{"ip":{"version":4,"ttl":128,"id":"b1e6"},"fingerprints":{"tls_server":"tls_server/(0303)(c02f)((ff01)(0000)(000b000403000102)(0023)(0017))"},"tls":{"server":{"certs":[{"base64":"MIIHQzCCBiugAwIBAgIQB1sC352kFlEvZM5wcfyMBzANBgkqhkiG9w0BAQsFADBNMQswCQYDVQQGEwJVUzEVMBMGA1UEChMMRGlnaUNlcnQgSW5jMScwJQYDVQQDEx5EaWdpQ2VydCBTSEEyIFNlY3VyZSBTZXJ2ZXIgQ0EwHhcNMTgwODE3MDAwMDAwWhcNMjAwOTAyMTIwMDAwWjBnMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZyYW5jaXNjbzEUMBIGA1UEChMLUmVkZGl0IEluYy4xFTATBgNVBAMMDCoucmVkZGl0LmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAM/pmlSjpBriKS1FgXKzqItMziu7otc9nmls8zLRaKwDHRpwVfiGWkLckOfvhn79U2zqwDilJ7TKepbjXgpa7mUgs5bX5DqZPXhyfV1hFD66RRQi2wVbvdbJdBGL3VrKZVJRIIpTtc3Q169FIslNKbc9eGq1nwO/REhI5dxDCHAoHwLpp+XfbjkBJGzlgKIBdBHed67KFVUKFvh1RVanVJUNG6IkAXXnPZSigwfA2wBH3QguOc1YxswPB4cOH5sdZeAJQ6j9rSxNqjZthoV43La5nsVYxRtreJ8ooV5ZX/dsL7BBBkWfF/acVSU3f7X7XiFz23vruQyBNQKT2HKXwgcCAwEAAaOCBAMwggP/MB8GA1UdIwQYMBaAFA+AYRyCMWHVLyjnjUY4tCzhxtniMB0GA1UdDgQWBBRx4FDR54BS+yMUZZ1Dp40xqlZpJjCBxAYDVR0RBIG8MIG5ggwqLnJlZGRpdC5jb22CCnJlZGRpdC5jb22CESoucmVkZGl0bWVkaWEuY29tgg9yZWRkaXRtZWRpYS5jb22CCSoucmVkZC5pdIIHcmVkZC5pdIIUd3d3LnJlZGRpdHN0YXRpYy5jb22CE2kucmVkZGl0dXBsb2Fkcy5jb22CGCoudGh1bWJzLnJlZGRpdG1lZGlhLmNvbYIRd3d3LnJlZGRpdGluYy5jb22CDXJlZGRpdGluYy5jb20wDgYDVR0PAQH/BAQDAgWgMB0GA1UdJQQWMBQGCCsGAQUFBwMBBggrBgEFBQcDAjBrBgNVHR8EZDBiMC+gLaArhilodHRwOi8vY3JsMy5kaWdpY2VydC5jb20vc3NjYS1zaGEyLWc2LmNybDAvoC2gK4YpaHR0cDovL2NybDQuZGlnaWNlcnQuY29tL3NzY2Etc2hhMi1nNi5jcmwwTAYDVR0gBEUwQzA3BglghkgBhv1sAQEwKjAoBggrBgEFBQcCARYcaHR0cHM6Ly93d3cuZGlnaWNlcnQuY29tL0NQUzAIBgZngQwBAgIwfAYIKwYBBQUHAQEEcDBuMCQGCCsGAQUFBzABhhhodHRwOi8vb2NzcC5kaWdpY2VydC5jb20wRgYIKwYBBQUHMAKGOmh0dHA6Ly9jYWNlcnRzLmRpZ2ljZXJ0LmNvbS9EaWdpQ2VydFNIQTJTZWN1cmVTZXJ2ZXJDQS5jcnQwDAYDVR0TAQH/BAIwADCCAX4GCisGAQQB1nkCBAIEggFuBIIBagFoAHUApLkJkLQYWBSHuxOizGdwCjw1mAT5G9+443fNDsgN3BAAAAFlRULTsAAABAMARjBEAiBcrugEb8o8AymzIh0fUN/F0i9SHl/xCQnCIMbXoSd+rwIgVwN50xsjJVuBP7cVxR5oSlj2USU3KVkZoAq+PIwMHucAdgCHdb/nWXz4jEOZX73zbv9WjUdWNv9KtWDBtOr/XqCDDwAAAWVFQtSDAAAEAwBHMEUCIGo9XmyFN5b38sdORa5NThm594MGPYK4se987nB8WsvPAiEA8Imvn9QF63D4vIwY8d+aticvw2dbwHdoZFpCj96yRn8AdwC72d+8H4pxtZOUI5eqkntHOFeVCqtS6BqQlmQ2jh7RhQAAAWVFQtSGAAAEAwBIMEYCIQCH+S3U0ac6/F5Bsc5xyHpO+UTpgz8DKiJSCfaObn3u5wIhANl9+8L/zSfwf7KPUhdPWfNnkMUFaFgRY1/HdOej6a4UMA0GCSqGSIb3DQEBCwUAA4IBAQC9OsE5bjOOvx0VowfFacujFxU1kYDikX90BH106XP7YQIExGmjZ9mo5Ai6UgMHUSIYO4sNFcZYYk6N7bd75K0i8U8X2AcoIfiC6VYdrw4e2rNMXW10CzIh1Co/t65QZ9KtuWXWwxQJYJuIcLsQT7MG7+K48ZJNSsB9VuuzqNebxSZTyhEBMsN030/Oy1CiUsq+nekZfibcAHxc5L6JG8sFnW6R4uTuGg1qZsvr95KZi5lpoUOE2UkdOK2TG7ntn7JLY4C4Yv2VGKrnxGiqajcKwkdh0a6xC1EXY9JObNczgauCO56+f8+xcRoZpTAE/JtywwVl++brUeoLLUdCVthx"},{"base64":"MIIElDCCA3ygAwIBAgIQAf2j627KdciIQ4tyS8+8kTANBgkqhkiG9w0BAQsFADBhMQswCQYDVQQGEwJVUzEVMBMGA1UEChMMRGlnaUNlcnQgSW5jMRkwFwYDVQQLExB3d3cuZGlnaWNlcnQuY29tMSAwHgYDVQQDExdEaWdpQ2VydCBHbG9iYWwgUm9vdCBDQTAeFw0xMzAzMDgxMjAwMDBaFw0yMzAzMDgxMjAwMDBaME0xCzAJBgNVBAYTAlVTMRUwEwYDVQQKEwxEaWdpQ2VydCBJbmMxJzAlBgNVBAMTHkRpZ2lDZXJ0IFNIQTIgU2VjdXJlIFNlcnZlciBDQTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANyuWJBNwcQwFZA1W248ghX1LFy949v/cUP6ZCWA1O4Yok3wZtAKc24RmDYXZK83nf36QYSvx6+M/hpzTc8zl5CilodTgyu5pnVILR1WN3vaMTIa16yrBvSqXUu3R0bdKpPDkC55gIDvEwRqFDu1m5K+wgdlTvza/P96rtxcflUxDOg5B6TXvi/TC2rSsd9f/ld0Uzs1gN2ujkSYs58O09rg1/RrKatEp0tYhG2SS4HD2nOLEpdIkARFdRrdNzGXkujNVA075ME/OV4uuPNcfhCOhkEAjUVmR7ChZc6gqikJTvOX6+guqw9ypzAO+sf0/RR3w6RbKFfCs/mC/bdFWJsCAwEAAaOCAVowggFWMBIGA1UdEwEB/wQIMAYBAf8CAQAwDgYDVR0PAQH/BAQDAgGGMDQGCCsGAQUFBwEBBCgwJjAkBggrBgEFBQcwAYYYaHR0cDovL29jc3AuZGlnaWNlcnQuY29tMHsGA1UdHwR0MHIwN6A1oDOGMWh0dHA6Ly9jcmwzLmRpZ2ljZXJ0LmNvbS9EaWdpQ2VydEdsb2JhbFJvb3RDQS5jcmwwN6A1oDOGMWh0dHA6Ly9jcmw0LmRpZ2ljZXJ0LmNvbS9EaWdpQ2VydEdsb2JhbFJvb3RDQS5jcmwwPQYDVR0gBDYwNDAyBgRVHSAAMCowKAYIKwYBBQUHAgEWHGh0dHBzOi8vd3d3LmRpZ2ljZXJ0LmNvbS9DUFMwHQYDVR0OBBYEFA+AYRyCMWHVLyjnjUY4tCzhxtniMB8GA1UdIwQYMBaAFAPeUDVW0Uy7ZvCj4hsbw5eyPdFVMA0GCSqGSIb3DQEBCwUAA4IBAQAjPt9L0jFCpbZ+QlwaRMxp0Wi0XUvgBCFsS+JtzLHgl4+mUwnNqipl5TlPHoOlblyYoiQm5vuh7ZPHLgLGTUq/sELfeNqzqPlt/yGFUzZgTHbO7Djc1lGA8MXW5dRNJ2Srm8c+cftIl7gzbckTB+6WohsYFfZcTEDts8Ls/3HB40f/1LkAtDdC2iDJ6m6K7hQGrn2iWZiIqBtvLfTyyRRfJs8sjX7tN8Cp1Tm5gr8ZDOo0rwAhaPitc+LJMto4JQtV05od8GiG7S5BNO98pVAdvzr508EIDObtHopYJeS4d60tbvVS3bR0j6tJLp07kzQoH3jOlOrHvdPJbRzeXDLz"}],"version":"0303","random":"872791c10538c588198d077f26496c7ec9bd9a5e06f114b5877cea78163e5d21","selected_cipher_suite":"c02f","compression_method":"00","session_ticket":""}},"reassembly_properties":{"reassembled":true},"src_ip":"151.101.129.140","dst_ip":"192.168.113.237","protocol":6,"src_port":443,"dst_port":42288,"event_start":1565200428.561330} -{"ip":{"version":4,"ttl":64,"id":"0405"},"dns":{"base64":"A1sBAAABAAAAAAAACnNvdW5kY2xvdWQDY29tAAABAAE="},"src_ip":"192.168.113.237","dst_ip":"192.168.113.2","protocol":17,"src_port":56882,"dst_port":53,"event_start":1565200429.814534} -{"ip":{"version":4,"ttl":64,"id":"0406"},"dns":{"base64":"K8UBAAABAAAAAAAACnNvdW5kY2xvdWQDY29tAAAcAAE="},"src_ip":"192.168.113.237","dst_ip":"192.168.113.2","protocol":17,"src_port":47231,"dst_port":53,"event_start":1565200429.814713} -{"ip":{"version":4,"ttl":128,"id":"b38e"},"dns":{"base64":"K8WBgAABAAAAAQAACnNvdW5kY2xvdWQDY29tAAAcAAHADAAGAAEAAAAFAEgHbnMtMTY1OQlhd3NkbnMtMTUCY28CdWsAEWF3c2Rucy1ob3N0bWFzdGVyBmFtYXpvbsAXAAAAAQAAHCAAAAOEAAk6gAABUYA="},"src_ip":"192.168.113.2","dst_ip":"192.168.113.237","protocol":17,"src_port":53,"dst_port":47231,"event_start":1565200429.846267} -{"ip":{"version":4,"ttl":128,"id":"b38f"},"dns":{"base64":"A1uBgAABAAQADQAMCnNvdW5kY2xvdWQDY29tAAABAAHADAABAAEAAAAFAARjVNMswAwAAQABAAAABQAEY1TTKcAMAAEAAQAAAAUABGNU0yTADAABAAEAAAAFAARjVNM0wBcAAgABAAAABQAUAWsMZ3RsZC1zZXJ2ZXJzA25ldADAFwACAAEAAAAFAAQBZsBuwBcAAgABAAAABQAEAWrAbsAXAAIAAQAAAAUABAFhwG7AFwACAAEAAAAFAAQBbMBuwBcAAgABAAAABQAEAWjAbsAXAAIAAQAAAAUABAFiwG7AFwACAAEAAAAFAAQBY8BuwBcAAgABAAAABQAEAWTAbsAXAAIAAQAAAAUABAFnwG7AFwACAAEAAAAFAAQBbcBuwBcAAgABAAAABQAEAWXAbsAXAAIAAQAAAAUABAFpwG7ArAABAAEAAAAFAATABQYewNwAAQABAAAABQAEwCEOHsDsAAEAAQAAAAUABMAaXB7A/AABAAEAAAAFAATAH1AewSwAAQABAAAABQAEwAxeHsCMAAEAAQAAAAUABMAjMx7BDAABAAEAAAAFAATAKl0ewMwAAQABAAAABQAEwDZwHsE8AAEAAQAAAAUABMArrB7AnAABAAEAAAAFAATAME8ewGwAAQABAAAABQAEwDSyHsC8AAEAAQAAAAUABMApoh4="},"src_ip":"192.168.113.2","dst_ip":"192.168.113.237","protocol":17,"src_port":53,"dst_port":56882,"event_start":1565200429.846469} -{"ip":{"version":4,"ttl":64,"id":"94d3"},"fingerprints":{"tcp":"tcp/(40)()(40)(faf0)((020405b4)(04)(08)(01)(030307))"},"tcp":{"seq":1406117063,"timestamp":{"ts_val":1518401238}},"src_ip":"192.168.113.237","dst_ip":"99.84.211.44","protocol":6,"src_port":44258,"dst_port":443,"event_start":1565200429.846814} -{"ip":{"version":4,"ttl":128,"id":"b390"},"fingerprints":{"tcp_server":"tcp_server/(40)()(80)(faf0)((020405b4))"},"tcp_server":{"seq":3613011334},"src_ip":"99.84.211.44","dst_ip":"192.168.113.237","protocol":6,"src_port":443,"dst_port":44258,"event_start":1565200429.890567} -{"ip":{"version":4,"ttl":64,"id":"94d5"},"fingerprints":{"tls":"tls/(0303)(130213031301c02cc030009fcca9cca8ccaac02bc02f009ec024c028006bc023c0270067c00ac0140039c009c0130033009d009c003d003c0035002f00ff)((0000)(000b000403000102)(000a000c000a001d0017001e00190018)(0023)(0016)(0017)(000d0030002e040305030603080708080809080a080b080408050806040105010601030302030301020103020202040205020602)(002b0009080304030303020301)(002d00020101)(0033))"},"tls":{"client":{"version":"0303","random":"62e4cb4eda9c91e08ed4899dfbe947764ef781c89c79d31ca91ab4b9eb7a3ac1","session_id":"324f725af04bbf341d996eac11238df1979397e716239d505e28b8efdf304f22","cipher_suites":"130213031301c02cc030009fcca9cca8ccaac02bc02f009ec024c028006bc023c0270067c00ac0140039c009c0130033009d009c003d003c0035002f00ff","compression_methods":"00","server_name":"soundcloud.com","session_ticket":"","features":"[\"0303\",\"130213031301c02cc030009fcca9cca8ccaac02bc02f009ec024c028006bc023c0270067c00ac0140039c009c0130033009d009c003d003c0035002f00ff\",[[\"0000\",\"001100000e736f756e64636c6f75642e636f6d\"],[\"000b\",\"03000102\"],[\"000a\",\"000a001d0017001e00190018\"],[\"0023\",\"\"],[\"0016\",\"\"],[\"0017\",\"\"],[\"000d\",\"002e040305030603080708080809080a080b080408050806040105010601030302030301020103020202040205020602\"],[\"002b\",\"080304030303020301\"],[\"002d\",\"0101\"],[\"0033\",\"0024001d002035afc638b9133424046800cc419eea28e0be9a26880415e3aec3dc448ae1b62d\"]]]"}},"src_ip":"192.168.113.237","dst_ip":"99.84.211.44","protocol":6,"src_port":44258,"dst_port":443,"event_start":1565200429.890835} -{"ip":{"version":4,"ttl":128,"id":"b394"},"fingerprints":{"tls_server":"tls_server/(0303)(c02f)((0000)(ff01)(000b000403000102)(0023))"},"tls":{"server":{"certs":[{"base64":"MIIGiDCCBXCgAwIBAgIMX9V1QajyD2DHViFbMA0GCSqGSIb3DQEBCwUAMGAxCzAJBgNVBAYTAkJFMRkwFwYDVQQKExBHbG9iYWxTaWduIG52LXNhMTYwNAYDVQQDEy1HbG9iYWxTaWduIERvbWFpbiBWYWxpZGF0aW9uIENBIC0gU0hBMjU2IC0gRzIwHhcNMTgwNDEyMTEwMTE3WhcNMjAwNjA4MTAwODQ4WjA+MSEwHwYDVQQLExhEb21haW4gQ29udHJvbCBWYWxpZGF0ZWQxGTAXBgNVBAMMECouc291bmRjbG91ZC5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQCsR4qP16sZBEqdjVLnmk228XH1//F6mhBLWTCy3YStrinvLhX1fzl/DrHfMN8LLvJnX6QR+eaTlKKZ26OmrkFCwC5PzOsSRyCNMBsWOaAsdK4KBSI9gPdedshCRa4DyZxg6dezowTZeD87d+/wW+nuPbvtd2+xUVCP2xf3FtVZY/AfVBQ8Zp5yuKU7Af+kNYouDSGowkL85zDT3Pi0lbr/Vguh+yLlYArTriTst0HbqqXE78IGL2/yqjVsIhyju004Xkl0xUt1KK3ags8Q5mCEL81OkC8rCMm4I08NjXP9Hl5GtlAFLkz+8JvD1ktGeO4bcAUVjazhe1sLmsbphhPDAgMBAAGjggNiMIIDXjAOBgNVHQ8BAf8EBAMCBaAwgZQGCCsGAQUFBwEBBIGHMIGEMEcGCCsGAQUFBzAChjtodHRwOi8vc2VjdXJlLmdsb2JhbHNpZ24uY29tL2NhY2VydC9nc2RvbWFpbnZhbHNoYTJnMnIxLmNydDA5BggrBgEFBQcwAYYtaHR0cDovL29jc3AyLmdsb2JhbHNpZ24uY29tL2dzZG9tYWludmFsc2hhMmcyMFYGA1UdIARPME0wQQYJKwYBBAGgMgEKMDQwMgYIKwYBBQUHAgEWJmh0dHBzOi8vd3d3Lmdsb2JhbHNpZ24uY29tL3JlcG9zaXRvcnkvMAgGBmeBDAECATAJBgNVHRMEAjAAMEMGA1UdHwQ8MDowOKA2oDSGMmh0dHA6Ly9jcmwuZ2xvYmFsc2lnbi5jb20vZ3MvZ3Nkb21haW52YWxzaGEyZzIuY3JsMCsGA1UdEQQkMCKCECouc291bmRjbG91ZC5jb22CDnNvdW5kY2xvdWQuY29tMB0GA1UdJQQWMBQGCCsGAQUFBwMBBggrBgEFBQcDAjAdBgNVHQ4EFgQUIjN2mq9izXkQSwgkrbTsXyoG330wHwYDVR0jBBgwFoAU6k581IAt5RWBhiaMgm3AmKTPlw8wggF/BgorBgEEAdZ5AgQCBIIBbwSCAWsBaQB2AId1v+dZfPiMQ5lfvfNu/1aNR1Y2/0q1YMG06v9eoIMPAAABYrmEUCcAAAQDAEcwRQIgGA5TTonGf9B75rB9dri4AhAj4v3uGo2FBrBJi4OXksoCIQCZGEsia4o6Hj8Vgnmi5/TO8Fg8iosCr6iowXM/SGfY9QB2AKS5CZC0GFgUh7sTosxncAo8NZgE+RvfuON3zQ7IDdwQAAABYrmEU5IAAAQDAEcwRQIhAMn4lH1VJVO1W3qnuYq6e6Ckz17x2DPORbjXzVvrKQk5AiAXa0ZU1+SggVkR5whHBpjDAbs9b1N3KoVnWkXXAgr39QB3AG9Tdqwx8DEZ2JkApFEV/3cVHBHZAsEAKQaNsgiaN9kTAAABYrmEUGYAAAQDAEgwRgIhAKDoi5dmaUESH6HUFGlTFABBM/Av16ZehG2uAXsHcVEwAiEA+XfvmAjbP5pbhYQ32VJyfEAKHmz7Dx1vjiovmFdTFPowDQYJKoZIhvcNAQELBQADggEBAAzRFkpGQeSW4IlCLdJbiWUJpTFeSoqyuyPoBokrNpIk0fL0lkFj9Y4dgae8XKoKkbe28ovt8cYuA08VhrFWPvZHcjtcZgkHoXuNBj42zAkeumCc8QTQVN0Oiwf3ImE5AiYyPa+URyRMSBYNdttOwnqnmQj3OEFFnLBlREQamUFs4hQpu1ymbqNUwbrA/o9O1mkqwoD0klvo+d5aBvmVvigw3TgjMCDxAaYQ+5vYY5n3s3GrrikbISumqJ1VDEBz4LqZoAHaDrs78daelXrJjPFJGREvFqguh3qOIUYsJ/SksLiw2wPuzzeZNTO2ZMB9rzTCSbk5LGcRrGuEdQMaQJk="},{"base64":"MIIEYzCCA0ugAwIBAgILBAAAAAABRE7wPiAwDQYJKoZIhvcNAQELBQAwVzELMAkGA1UEBhMCQkUxGTAXBgNVBAoTEEdsb2JhbFNpZ24gbnYtc2ExEDAOBgNVBAsTB1Jvb3QgQ0ExGzAZBgNVBAMTEkdsb2JhbFNpZ24gUm9vdCBDQTAeFw0xNDAyMjAxMDAwMDBaFw0yNDAyMjAxMDAwMDBaMGAxCzAJBgNVBAYTAkJFMRkwFwYDVQQKExBHbG9iYWxTaWduIG52LXNhMTYwNAYDVQQDEy1HbG9iYWxTaWduIERvbWFpbiBWYWxpZGF0aW9uIENBIC0gU0hBMjU2IC0gRzIwggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQCp3cwOs+IyOd1JIqgTaZOHiOEM7nF9vZCHll1Z8syz0lhXV/lG72wm2DZCjn4wsy+aPlN7H262okxFHzzTFZMcie089Ffeyr3sBppqKqAZUn9R0XQ5CJ+r69eGExWXrjbDVGYOWvKgc4Ux47JkFGr/paKOJLu9hVIVonnu8LXuPbj0fYC82ZA1ZbgXqa2zmJ+gfn1u+z+tfMIbWTaW2jcyS0tdNQJjjtunz2LuzC7Ujcm9PGqRcqIip3ItINH6yjfaGJjmFiRxJUvE5XuJUgkC/VkrBG7KB4HUs9ra2+PMgKhWBwZ8lgg3nds4tmI0kWIHdAE42HIw4uuQcSZiwFfzAgMBAAGjggElMIIBITAOBgNVHQ8BAf8EBAMCAQYwEgYDVR0TAQH/BAgwBgEB/wIBADAdBgNVHQ4EFgQU6k581IAt5RWBhiaMgm3AmKTPlw8wRwYDVR0gBEAwPjA8BgRVHSAAMDQwMgYIKwYBBQUHAgEWJmh0dHBzOi8vd3d3Lmdsb2JhbHNpZ24uY29tL3JlcG9zaXRvcnkvMDMGA1UdHwQsMCowKKAmoCSGImh0dHA6Ly9jcmwuZ2xvYmFsc2lnbi5uZXQvcm9vdC5jcmwwPQYIKwYBBQUHAQEEMTAvMC0GCCsGAQUFBzABhiFodHRwOi8vb2NzcC5nbG9iYWxzaWduLmNvbS9yb290cjEwHwYDVR0jBBgwFoAUYHtmGkUNl8qJUC99BM00qP/8/UswDQYJKoZIhvcNAQELBQADggEBANdFnqDc4ONhWgt9d4QXLWVagpqNoycqhffJ7+mG/dRHzQFSlsVDvTex4bjyqdKKEYRxkRWJ3AKdC8tsM4U0KJ4gsrGX3G0LEME8zV/qXdeYMcU0mVwAYVXEGwJbxeOJyLS4bx448lYm6UHvPc2smU9ZSlctS32ux4j71pg79eXw6ImJuYsDy1ojH6T9uOr7Lp2uanMJvPzVoLVEgqtEkS5QLlfBQ9iRBIvpES5ftD953x77PzAAi1PjtywdO02L3ORkHQRYM68bVeerDL8wBHTk8w4vMDmNSwSMHnVmZkngvkA0x1xaUZK6EjxS1QSCVS1npd+3lXzuP8MIugS+wEY="}],"version":"0303","random":"4149541bef5bb1882d268692b6f40b9669982df07c1f6aa1e4a1c481ea41825e","selected_cipher_suite":"c02f","compression_method":"00","session_ticket":""}},"reassembly_properties":{"reassembled":true},"src_ip":"99.84.211.44","dst_ip":"192.168.113.237","protocol":6,"src_port":443,"dst_port":44258,"event_start":1565200429.932332} -{"ip":{"version":4,"ttl":64,"id":"044e"},"dns":{"base64":"+4gBAAABAAAAAAAAAXQCY28AAAEAAQ=="},"src_ip":"192.168.113.237","dst_ip":"192.168.113.2","protocol":17,"src_port":42127,"dst_port":53,"event_start":1565200430.189814} -{"ip":{"version":4,"ttl":64,"id":"044f"},"dns":{"base64":"6MQBAAABAAAAAAAAAXQCY28AABwAAQ=="},"src_ip":"192.168.113.237","dst_ip":"192.168.113.2","protocol":17,"src_port":45036,"dst_port":53,"event_start":1565200430.190010} -{"ip":{"version":4,"ttl":128,"id":"b3a9"},"dns":{"base64":"+4iBgAABAAQABgAMAXQCY28AAAEAAcAMAAEAAQAAAAUABGj0KsXADAABAAEAAAAFAARo9CpFwAwAAQABAAAABQAEaPQqhcAMAAEAAQAAAAUABGj0KgXADgACAAEAAAAFAAwDbnMzBWNjdGxkwA7ADgACAAEAAAAFAAYDbnMxwGbADgACAAEAAAAFAAYDbnM1wGbADgACAAEAAAAFAAYDbnM2wGbADgACAAEAAAAFAAYDbnM0wGbADgACAAEAAAAFAAYDbnMywGbAegABAAEAAAAFAAScmmQZwMIAAQABAAAABQAEnJplGcBiAAEAAQAAAAUABJyaZhnAsAABAAEAAAAFAAScmmcZwIwAAQABAAAABQAEnJpoGcCeAAEAAQAAAAUABJyaaRnAegAcAAEAAAAFABAgAQUCLtoAAAAAAAAAAAAhwMIAHAABAAAABQAQIAEFAq0JAAAAAAAAAAAAIcBiABwAAQAAAAUAECYQAKEQCQAAAAAAAAAAACHAsAAcAAEAAAAFABAmEAChEBAAAAAAAAAAAAAhwIwAHAABAAAABQAQJhAAoRARAAAAAAAAAAAAIcCeABwAAQAAAAUAECYQAKEQEgAAAAAAAAAAACE="},"src_ip":"192.168.113.2","dst_ip":"192.168.113.237","protocol":17,"src_port":53,"dst_port":42127,"event_start":1565200430.190943} -{"ip":{"version":4,"ttl":128,"id":"b3ac"},"dns":{"base64":"6MSBgAABAAAAAQAAAXQCY28AABwAAcAMAAYAAQAAAAUAOQNuczEDcDI2BmR5bmVjdANuZXQAC29wc0B0d2l0dGVyA2NvbQAAAAm7AAAOEAAAAlgACTqAAAAAPA=="},"src_ip":"192.168.113.2","dst_ip":"192.168.113.237","protocol":17,"src_port":53,"dst_port":45036,"event_start":1565200430.223296} -{"ip":{"version":4,"ttl":64,"id":"080d"},"fingerprints":{"tcp":"tcp/(40)()(40)(faf0)((020405b4)(04)(08)(01)(030307))"},"tcp":{"seq":3225958527,"timestamp":{"ts_val":2001617856}},"src_ip":"192.168.113.237","dst_ip":"104.244.42.197","protocol":6,"src_port":42970,"dst_port":443,"event_start":1565200430.223621} -{"ip":{"version":4,"ttl":128,"id":"b3ad"},"fingerprints":{"tcp_server":"tcp_server/(40)()(80)(faf0)((020405b4))"},"tcp_server":{"seq":552645502},"src_ip":"104.244.42.197","dst_ip":"192.168.113.237","protocol":6,"src_port":443,"dst_port":42970,"event_start":1565200430.274617} -{"ip":{"version":4,"ttl":64,"id":"080f"},"fingerprints":{"tls":"tls/(0303)(130213031301c02cc030009fcca9cca8ccaac02bc02f009ec024c028006bc023c0270067c00ac0140039c009c0130033009d009c003d003c0035002f00ff)((0000)(000b000403000102)(000a000c000a001d0017001e00190018)(0023)(0016)(0017)(000d0030002e040305030603080708080809080a080b080408050806040105010601030302030301020103020202040205020602)(002b0009080304030303020301)(002d00020101)(0033))"},"tls":{"client":{"version":"0303","random":"81dc85dbf7d05dccc3eca2c60c25c25dc8d67a23ab88441b2834659d1806b203","session_id":"fa4aeff38aaf61f88cd56fa06c6774c314a3f8fefc4c3ebb24f82bf8ae77f9e5","cipher_suites":"130213031301c02cc030009fcca9cca8ccaac02bc02f009ec024c028006bc023c0270067c00ac0140039c009c0130033009d009c003d003c0035002f00ff","compression_methods":"00","server_name":"t.co","session_ticket":"","features":"[\"0303\",\"130213031301c02cc030009fcca9cca8ccaac02bc02f009ec024c028006bc023c0270067c00ac0140039c009c0130033009d009c003d003c0035002f00ff\",[[\"0000\",\"0007000004742e636f\"],[\"000b\",\"03000102\"],[\"000a\",\"000a001d0017001e00190018\"],[\"0023\",\"\"],[\"0016\",\"\"],[\"0017\",\"\"],[\"000d\",\"002e040305030603080708080809080a080b080408050806040105010601030302030301020103020202040205020602\"],[\"002b\",\"080304030303020301\"],[\"002d\",\"0101\"],[\"0033\",\"0024001d00202b2057beedc7298448ddd2f78a8faed3cef91faa80a7a3063107f5da55acd86a\"]]]"}},"src_ip":"192.168.113.237","dst_ip":"104.244.42.197","protocol":6,"src_port":42970,"dst_port":443,"event_start":1565200430.274862} -{"ip":{"version":4,"ttl":128,"id":"b3b1"},"fingerprints":{"tls_server":"tls_server/(0303)(c02f)((ff01)(000b000403000102)(0023))"},"tls":{"server":{"certs":[{"base64":"MIIGXDCCBUSgAwIBAgIQC7Nk8BsA68WaJkeDtWr17jANBgkqhkiG9w0BAQsFADBwMQswCQYDVQQGEwJVUzEVMBMGA1UEChMMRGlnaUNlcnQgSW5jMRkwFwYDVQQLExB3d3cuZGlnaWNlcnQuY29tMS8wLQYDVQQDEyZEaWdpQ2VydCBTSEEyIEhpZ2ggQXNzdXJhbmNlIFNlcnZlciBDQTAeFw0xOTA1MjQwMDAwMDBaFw0yMDA1MjMxMjAwMDBaMHAxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1TYW4gRnJhbmNpc2NvMRYwFAYDVQQKEw1Ud2l0dGVyLCBJbmMuMQ0wCwYDVQQLEwRhdGxhMQ0wCwYDVQQDEwR0LmNvMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEApS1xDTCZvIEaPzioBNHvpSoyPd/8Gk6myTcKKXKw8icBR19T+XfTEKk3hnwPk14ZAruiBPd7vMsUkD2HtOUdrkNjDpUV9NKTYgLhlB2RxP5RsO2PdPeaPPXIg9NtHOlVUgkThoxqEDavgpMYoNb1K12gzFxYp9LQT4rUsK0F4QdU/FHq/3GBRAnauZx3KYbWnJjGdxUIySQnAXmvGhgqjLBVLjGNRJWifglzds8AIZpo8COJHp3SuMLaBFZycZiIe84Q0uJ/C5OD+2m9YvXWXG2isTVrSAMOuBSy3ssUfw/MUWCMHz3ZwjxqNVT4X+Q7nxQjHi1g9LgNmMIAO9jezwIDAQABo4IC8DCCAuwwHwYDVR0jBBgwFoAUUWj/kK8CB3U8zNllZGKiErhZcjswHQYDVR0OBBYEFFxj/fM0WMmyQTpAZCOhG8USFol4MBkGA1UdEQQSMBCCBHQuY2+CCHd3dy50LmNvMA4GA1UdDwEB/wQEAwIFoDAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwdQYDVR0fBG4wbDA0oDKgMIYuaHR0cDovL2NybDMuZGlnaWNlcnQuY29tL3NoYTItaGEtc2VydmVyLWc2LmNybDA0oDKgMIYuaHR0cDovL2NybDQuZGlnaWNlcnQuY29tL3NoYTItaGEtc2VydmVyLWc2LmNybDBMBgNVHSAERTBDMDcGCWCGSAGG/WwBATAqMCgGCCsGAQUFBwIBFhxodHRwczovL3d3dy5kaWdpY2VydC5jb20vQ1BTMAgGBmeBDAECAjCBgwYIKwYBBQUHAQEEdzB1MCQGCCsGAQUFBzABhhhodHRwOi8vb2NzcC5kaWdpY2VydC5jb20wTQYIKwYBBQUHMAKGQWh0dHA6Ly9jYWNlcnRzLmRpZ2ljZXJ0LmNvbS9EaWdpQ2VydFNIQTJIaWdoQXNzdXJhbmNlU2VydmVyQ0EuY3J0MAwGA1UdEwEB/wQCMAAwggEFBgorBgEEAdZ5AgQCBIH2BIHzAPEAdgCkuQmQtBhYFIe7E6LMZ3AKPDWYBPkb37jjd80OyA3cEAAAAWrrDaPPAAAEAwBHMEUCIGrY2nK+yCnTjjFZfrrprBCQnEgvylwAgxwuR0/13mOhAiEAwaXpcztuZ3hguP3aPFN3smGh/KZ0HkOMwVt4ipraoJsAdwBep3P531bA57U2SH3QSeAyepGaDIShEhKEGHWWgXFFWAAAAWrrDaNNAAAEAwBIMEYCIQDY/CK+7BOV7qSytUQX5bT0Pmdx1SHQxLg3p3YPIklpDwIhAK7sJrCDJXhJB7LEEHkJkqbsq34KbjW3K/eSorLnrFQTMA0GCSqGSIb3DQEBCwUAA4IBAQAT9sfHyYtR8SwuhBrFaN5rgce3ZKUdN30GXuT8yGxV+SRILTmZ3ttK76HLnmCPQ7VrcHUVcCx5stYT0sQaeylMKuJdyOCHocEy+M1/5/r87q4fucvNQrjDG1TF16VWKc08Sf/nEIkDlHUYN8W1AspK1r2M8PmnvdUNVC2CxitQNWFX3cb/fD9pbJ6T6TDEP+DdkabelLQmAC3Ix0yO7N4vbtGqn4U79V/rZ9PDFdUrPhGKTyOHW4Fo5+Ps4VVm9cYrKo/qS8Sn6+ErRtxS09BlXJlzqDX/IXTx0QJJ6e+6iILJtBOF6RRplkzIBwHdIpQipkazO1ltUlC5dVLVFLq2"},{"base64":"MIIEsTCCA5mgAwIBAgIQBOHnpNxc8vNtwCtCuF0VnzANBgkqhkiG9w0BAQsFADBsMQswCQYDVQQGEwJVUzEVMBMGA1UEChMMRGlnaUNlcnQgSW5jMRkwFwYDVQQLExB3d3cuZGlnaWNlcnQuY29tMSswKQYDVQQDEyJEaWdpQ2VydCBIaWdoIEFzc3VyYW5jZSBFViBSb290IENBMB4XDTEzMTAyMjEyMDAwMFoXDTI4MTAyMjEyMDAwMFowcDELMAkGA1UEBhMCVVMxFTATBgNVBAoTDERpZ2lDZXJ0IEluYzEZMBcGA1UECxMQd3d3LmRpZ2ljZXJ0LmNvbTEvMC0GA1UEAxMmRGlnaUNlcnQgU0hBMiBIaWdoIEFzc3VyYW5jZSBTZXJ2ZXIgQ0EwggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQC24C/CJAbIbQRf1+8KZAayfSImZRauQkCbztyfn3YHPsMwVYcZuU+UDlqUH1VWtMICKq/QmO4LQNfE0DtyyBSe75CxEamu0si4QzrZCwvV1ZX1QK/IHe1NnF9Xt4ZQaJn1itrSxwUfqJfJ3KSxgoQtxq2lnMcZgqaFD15EWCo3j/018QsIJzJa9buLnqS9UdAn4t07QjOjBSjEuyjMmqwrIw14xnvmXnG3Sj4I+4G3FhahnSMSTeXXkgisdaScus0Xsh5ENWV/UyU50RwKmmMbGZJ0aAo3wsJSSMs5WqK24V3B3aAguCGikyZvFEohQcftbZvySC/zA/WiaJJTL17jAgMBAAGjggFJMIIBRTASBgNVHRMBAf8ECDAGAQH/AgEAMA4GA1UdDwEB/wQEAwIBhjAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwNAYIKwYBBQUHAQEEKDAmMCQGCCsGAQUFBzABhhhodHRwOi8vb2NzcC5kaWdpY2VydC5jb20wSwYDVR0fBEQwQjBAoD6gPIY6aHR0cDovL2NybDQuZGlnaWNlcnQuY29tL0RpZ2lDZXJ0SGlnaEFzc3VyYW5jZUVWUm9vdENBLmNybDA9BgNVHSAENjA0MDIGBFUdIAAwKjAoBggrBgEFBQcCARYcaHR0cHM6Ly93d3cuZGlnaWNlcnQuY29tL0NQUzAdBgNVHQ4EFgQUUWj/kK8CB3U8zNllZGKiErhZcjswHwYDVR0jBBgwFoAUsT7DaQP4v0cB1JgmGggC72NkK8MwDQYJKoZIhvcNAQELBQADggEBABiKlYkD5m3fXPwdaOpKj4PWUS+Na0QWnqxj9dJubISZi6qBcYRb7TROsLd5kinMLYBq8I4g4Xmk/gNHE+r1hspZcX30BJZr01lYPf7TMSVcGDiEo+afgv2MW5gxTs14nhr9hctJqvIni5ly/D6q1UEL2tU2ob8cbkdJf17ZSHwD2f2LSaCYJkJA69aSEaRkCldUxPUd1gJea6zuxICaEnL6VpPX/78whQYwvwt/Tv9XBZ0k7YXDK/umdaisLRbvfXknsuvCnQsH6qqF0wGjIChBWUMo0oHjqvbsezt3tkBigAVBRQHvFwY+3sAzm2fTYS5yh+Rp/BIAV0AecPUeybQ="}],"version":"0303","random":"67bbbc777daef477e4c6f925c1a674e99d3ae43f7ea0e0672c9b88da5b1ad7d6","selected_cipher_suite":"c02f","compression_method":"00","session_ticket":""}},"reassembly_properties":{"reassembled":true},"src_ip":"104.244.42.197","dst_ip":"192.168.113.237","protocol":6,"src_port":443,"dst_port":42970,"event_start":1565200430.334371} -{"ip":{"version":4,"ttl":64,"id":"0470"},"dns":{"base64":"HiABAAABAAAAAAAABXNpdGVzBmdvb2dsZQNjb20AAAEAAQ=="},"src_ip":"192.168.113.237","dst_ip":"192.168.113.2","protocol":17,"src_port":58257,"dst_port":53,"event_start":1565200430.455097} -{"ip":{"version":4,"ttl":64,"id":"0471"},"dns":{"base64":"GlkBAAABAAAAAAAABXNpdGVzBmdvb2dsZQNjb20AABwAAQ=="},"src_ip":"192.168.113.237","dst_ip":"192.168.113.2","protocol":17,"src_port":58815,"dst_port":53,"event_start":1565200430.455310} -{"ip":{"version":4,"ttl":128,"id":"b3bb"},"dns":{"base64":"GlmBgAABAAIADQAMBXNpdGVzBmdvb2dsZQNjb20AABwAAcAMAAUAAQAAAAUACQR3d3czAWzAEsAuABwAAQAAAAUAECYH+LBABAgAAAAAAAAAIA7AGQACAAEAAAAFABQBaQxndGxkLXNlcnZlcnMDbmV0AMAZAAIAAQAAAAUABAFswGHAGQACAAEAAAAFAAQBasBhwBkAAgABAAAABQAEAWXAYcAZAAIAAQAAAAUABAFtwGHAGQACAAEAAAAFAAQBZsBhwBkAAgABAAAABQAEAWHAYcAZAAIAAQAAAAUABAFnwGHAGQACAAEAAAAFAAQBZMBhwBkAAgABAAAABQAEAWLAYcAZAAIAAQAAAAUABAFrwGHAGQACAAEAAAAFAAQBY8BhwBkAAgABAAAABQAEAWjAYcDPAAEAAQAAAAUABMAFBh7A/wABAAEAAAAFAATAIQ4ewR8AAQABAAAABQAEwBpcHsDvAAEAAQAAAAUABMAfUB7AnwABAAEAAAAFAATADF4ewL8AAQABAAAABQAEwCMzHsDfAAEAAQAAAAUABMAqXR7BLwABAAEAAAAFAATANnAewF8AAQABAAAABQAEwCusHsCPAAEAAQAAAAUABMAwTx7BDwABAAEAAAAFAATANLIewH8AAQABAAAABQAEwCmiHg=="},"src_ip":"192.168.113.2","dst_ip":"192.168.113.237","protocol":17,"src_port":53,"dst_port":58815,"event_start":1565200430.486959} -{"ip":{"version":4,"ttl":128,"id":"b3bc"},"dns":{"base64":"HiCBgAABAAIADQANBXNpdGVzBmdvb2dsZQNjb20AAAEAAcAMAAUAAQAAAAUACQR3d3czAWzAEsAuAAEAAQAAAAUABKzZB67AGQACAAEAAAAFABQBawxndGxkLXNlcnZlcnMDbmV0AMAZAAIAAQAAAAUABAFlwFXAGQACAAEAAAAFAAQBYsBVwBkAAgABAAAABQAEAWrAVcAZAAIAAQAAAAUABAFhwFXAGQACAAEAAAAFAAQBacBVwBkAAgABAAAABQAEAWjAVcAZAAIAAQAAAAUABAFnwFXAGQACAAEAAAAFAAQBbcBVwBkAAgABAAAABQAEAWbAVcAZAAIAAQAAAAUABAFswFXAGQACAAEAAAAFAAQBY8BVwBkAAgABAAAABQAEAWTAVcCjAAEAAQAAAAUABMAFBh7AgwABAAEAAAAFAATAIQ4ewRMAAQABAAAABQAEwBpcHsEjAAEAAQAAAAUABMAfUB7AcwABAAEAAAAFAATADF4ewPMAAQABAAAABQAEwCMzHsDTAAEAAQAAAAUABMAqXR7AwwABAAEAAAAFAATANnAewLMAAQABAAAABQAEwCusHsCTAAEAAQAAAAUABMAwTx7AUwABAAEAAAAFAATANLIewQMAAQABAAAABQAEwCmiHsDjAAEAAQAAAAUABMA3Ux4="},"src_ip":"192.168.113.2","dst_ip":"192.168.113.237","protocol":17,"src_port":53,"dst_port":58257,"event_start":1565200430.486972} -{"ip":{"version":4,"ttl":64,"id":"7dd1"},"fingerprints":{"tcp":"tcp/(40)()(40)(faf0)((020405b4)(04)(08)(01)(030307))"},"tcp":{"seq":1664568677,"timestamp":{"ts_val":142098801}},"src_ip":"192.168.113.237","dst_ip":"172.217.7.174","protocol":6,"src_port":33408,"dst_port":443,"event_start":1565200430.487673} -{"ip":{"version":4,"ttl":128,"id":"b3bd"},"fingerprints":{"tcp_server":"tcp_server/(40)()(80)(faf0)((020405b4))"},"tcp_server":{"seq":729427656},"src_ip":"172.217.7.174","dst_ip":"192.168.113.237","protocol":6,"src_port":443,"dst_port":33408,"event_start":1565200430.531504} -{"ip":{"version":4,"ttl":64,"id":"7dd3"},"fingerprints":{"tls":"tls/(0303)(130213031301c02cc030009fcca9cca8ccaac02bc02f009ec024c028006bc023c0270067c00ac0140039c009c0130033009d009c003d003c0035002f00ff)((0000)(000b000403000102)(000a000c000a001d0017001e00190018)(0023)(0016)(0017)(000d0030002e040305030603080708080809080a080b080408050806040105010601030302030301020103020202040205020602)(002b0009080304030303020301)(002d00020101)(0033))"},"tls":{"client":{"version":"0303","random":"ac0cdd37ff232bc4f6dafa5feddc7d2f6852ae28f8d472100ba62cc6eea6ff20","session_id":"ede255213f8588ad5d4a283d223c86a0e148280341fdbec45758c1fcb9fcf521","cipher_suites":"130213031301c02cc030009fcca9cca8ccaac02bc02f009ec024c028006bc023c0270067c00ac0140039c009c0130033009d009c003d003c0035002f00ff","compression_methods":"00","server_name":"sites.google.com","session_ticket":"","features":"[\"0303\",\"130213031301c02cc030009fcca9cca8ccaac02bc02f009ec024c028006bc023c0270067c00ac0140039c009c0130033009d009c003d003c0035002f00ff\",[[\"0000\",\"001300001073697465732e676f6f676c652e636f6d\"],[\"000b\",\"03000102\"],[\"000a\",\"000a001d0017001e00190018\"],[\"0023\",\"\"],[\"0016\",\"\"],[\"0017\",\"\"],[\"000d\",\"002e040305030603080708080809080a080b080408050806040105010601030302030301020103020202040205020602\"],[\"002b\",\"080304030303020301\"],[\"002d\",\"0101\"],[\"0033\",\"0024001d00203fa5769c97be4064e6dde3cc1212becae13f0fd500bda6070fc322a23683a247\"]]]"}},"src_ip":"192.168.113.237","dst_ip":"172.217.7.174","protocol":6,"src_port":33408,"dst_port":443,"event_start":1565200430.531812} -{"ip":{"version":4,"ttl":128,"id":"b3bf"},"fingerprints":{"tls_server":"tls_server/(0303)(1302)((0033)(002b00020304))"},"tls":{"server":{"version":"0303","random":"1029a20d4d4c0757966666c6d20e4e80bace395024a899127d191d32828ef03e","selected_cipher_suite":"1302","compression_method":"00"}},"src_ip":"172.217.7.174","dst_ip":"192.168.113.237","protocol":6,"src_port":443,"dst_port":33408,"event_start":1565200430.583466} -{"ip":{"version":4,"ttl":64,"id":"2964"},"fingerprints":{"tcp":"tcp/(40)()(40)(faf0)((020405b4)(04)(08)(01)(030307))"},"tcp":{"seq":741349778,"timestamp":{"ts_val":1677097159}},"src_ip":"192.168.113.237","dst_ip":"172.217.164.141","protocol":6,"src_port":57114,"dst_port":443,"event_start":1565200430.753214} -{"ip":{"version":4,"ttl":128,"id":"b3c8"},"fingerprints":{"tcp_server":"tcp_server/(40)()(80)(faf0)((020405b4))"},"tcp_server":{"seq":3362324552},"src_ip":"172.217.164.141","dst_ip":"192.168.113.237","protocol":6,"src_port":443,"dst_port":57114,"event_start":1565200430.794671} -{"ip":{"version":4,"ttl":64,"id":"2966"},"fingerprints":{"tls":"tls/(0303)(130213031301c02cc030009fcca9cca8ccaac02bc02f009ec024c028006bc023c0270067c00ac0140039c009c0130033009d009c003d003c0035002f00ff)((0000)(000b000403000102)(000a000c000a001d0017001e00190018)(0023)(0016)(0017)(000d0030002e040305030603080708080809080a080b080408050806040105010601030302030301020103020202040205020602)(002b0009080304030303020301)(002d00020101)(0033))"},"tls":{"client":{"version":"0303","random":"f9c07ccc0fea290c8d0694add9fc68f33747ddf968eef2f5c2a4f688eb9a1596","session_id":"9568057bc0377a7d7e692aa7545b229a2012ea59f57c062f97efbac45e48981f","cipher_suites":"130213031301c02cc030009fcca9cca8ccaac02bc02f009ec024c028006bc023c0270067c00ac0140039c009c0130033009d009c003d003c0035002f00ff","compression_methods":"00","server_name":"accounts.google.com","session_ticket":"","features":"[\"0303\",\"130213031301c02cc030009fcca9cca8ccaac02bc02f009ec024c028006bc023c0270067c00ac0140039c009c0130033009d009c003d003c0035002f00ff\",[[\"0000\",\"00160000136163636f756e74732e676f6f676c652e636f6d\"],[\"000b\",\"03000102\"],[\"000a\",\"000a001d0017001e00190018\"],[\"0023\",\"\"],[\"0016\",\"\"],[\"0017\",\"\"],[\"000d\",\"002e040305030603080708080809080a080b080408050806040105010601030302030301020103020202040205020602\"],[\"002b\",\"080304030303020301\"],[\"002d\",\"0101\"],[\"0033\",\"0024001d0020c41f1c449d80e477f60f3c3ff5e8cf29e319d93460be883a81d5337e6a68611f\"]]]"}},"src_ip":"192.168.113.237","dst_ip":"172.217.164.141","protocol":6,"src_port":57114,"dst_port":443,"event_start":1565200430.794920} -{"ip":{"version":4,"ttl":128,"id":"b3cc"},"fingerprints":{"tls_server":"tls_server/(0303)(1302)((0033)(002b00020304))"},"tls":{"server":{"version":"0303","random":"ccecbafd209d6d04fe595466c07c335adf07db0d7154d22b34b51d89db401111","selected_cipher_suite":"1302","compression_method":"00"}},"src_ip":"172.217.164.141","dst_ip":"192.168.113.237","protocol":6,"src_port":443,"dst_port":57114,"event_start":1565200430.844009} -{"ip":{"version":4,"ttl":64,"id":"04d2"},"dns":{"base64":"CWkBAAABAAAAAAAACWFtYXpvbmF3cwNjb20AAAEAAQ=="},"src_ip":"192.168.113.237","dst_ip":"192.168.113.2","protocol":17,"src_port":48886,"dst_port":53,"event_start":1565200431.127787} -{"ip":{"version":4,"ttl":64,"id":"04d3"},"dns":{"base64":"hvMBAAABAAAAAAAACWFtYXpvbmF3cwNjb20AABwAAQ=="},"src_ip":"192.168.113.237","dst_ip":"192.168.113.2","protocol":17,"src_port":36267,"dst_port":53,"event_start":1565200431.128058} -{"ip":{"version":4,"ttl":128,"id":"b406"},"dns":{"base64":"hvOBgAABAAAAAQAACWFtYXpvbmF3cwNjb20AABwAAcAMAAYAAQAAAAUAPhNkbnMtZXh0ZXJuYWwtbWFzdGVyBmFtYXpvbsAWCmhvc3RtYXN0ZXLAP3f3fukAAAC0AAAAPAAnjQAAAA4J"},"src_ip":"192.168.113.2","dst_ip":"192.168.113.237","protocol":17,"src_port":53,"dst_port":36267,"event_start":1565200431.161355} -{"ip":{"version":4,"ttl":128,"id":"b407"},"dns":{"base64":"CWmBgAABAAMABAAICWFtYXpvbmF3cwNjb20AAAEAAcAMAAEAAQAAAAUABM+rphbADAABAAEAAAAFAARIFdIdwAwAAQABAAAABQAESBXOUMAMAAIAAQAAAAUABQJyMcAMwAwAAgABAAAABQAFAnIywAzADAACAAEAAAAFAAUCdTHADMAMAAIAAQAAAAUABQJ1MsAMwFsAAQABAAAABQAEzfvAG8BsAAEAAQAAAAUABM37w8fAfQABAAEAAAAFAAScmkAKwI4AAQABAAAABQAEnJpBCsBbABwAAQAAAAUAECYAkABTABsAAAAAAAAAAAHAbAAcAAEAAAAFABAmAJAAUwPHAAAAAAAAAAABwH0AHAABAAAABQAQIAEFAvP/AAAAAAAAAAAAEMCOABwAAQAAAAUAECYQAKEQFAAAAAAAAAAAABA="},"src_ip":"192.168.113.2","dst_ip":"192.168.113.237","protocol":17,"src_port":53,"dst_port":48886,"event_start":1565200431.172167} -{"ip":{"version":4,"ttl":64,"id":"f3d9"},"fingerprints":{"tcp":"tcp/(40)()(40)(faf0)((020405b4)(04)(08)(01)(030307))"},"tcp":{"seq":2929443462,"timestamp":{"ts_val":1073958153}},"src_ip":"192.168.113.237","dst_ip":"207.171.166.22","protocol":6,"src_port":53408,"dst_port":443,"event_start":1565200431.172487} -{"ip":{"version":4,"ttl":64,"id":"9b4c"},"fingerprints":{"tcp":"tcp/(40)()(40)(faf0)((020405b4)(04)(08)(01)(030307))"},"tcp":{"seq":1856285223,"timestamp":{"ts_val":3658040163}},"src_ip":"192.168.113.237","dst_ip":"72.21.210.29","protocol":6,"src_port":50234,"dst_port":443,"event_start":1565200431.217536} -{"ip":{"version":4,"ttl":64,"id":"5685"},"fingerprints":{"tcp":"tcp/(40)()(40)(faf0)((020405b4)(04)(08)(01)(030307))"},"tcp":{"seq":4050544627,"timestamp":{"ts_val":2097722686}},"src_ip":"192.168.113.237","dst_ip":"72.21.206.80","protocol":6,"src_port":33300,"dst_port":443,"event_start":1565200431.263607} -{"ip":{"version":4,"ttl":64,"id":"4369"},"dns":{"base64":"VuEBAAABAAAAAAAAEmNvbm5lY3Rpdml0eS1jaGVjawZ1YnVudHUDY29tAAABAAE="},"src_ip":"192.168.113.237","dst_ip":"192.168.113.2","protocol":17,"src_port":35986,"dst_port":53,"event_start":1565200503.588326} -{"ip":{"version":4,"ttl":64,"id":"436a"},"dns":{"base64":"UpsBAAABAAAAAAAAEmNvbm5lY3Rpdml0eS1jaGVjawZ1YnVudHUDY29tAAAcAAE="},"src_ip":"192.168.113.237","dst_ip":"192.168.113.2","protocol":17,"src_port":33455,"dst_port":53,"event_start":1565200503.588531} -{"ip":{"version":4,"ttl":128,"id":"b40d"},"dns":{"base64":"VuGBgAABAAIADQANEmNvbm5lY3Rpdml0eS1jaGVjawZ1YnVudHUDY29tAAABAAHADAABAAEAAAAFAAQj4GOcwAwAAQABAAAABQAEI95VBcAmAAIAAQAAAAUAFAFjDGd0bGQtc2VydmVycwNuZXQAwCYAAgABAAAABQAEAWjAXcAmAAIAAQAAAAUABAFlwF3AJgACAAEAAAAFAAQBZsBdwCYAAgABAAAABQAEAWTAXcAmAAIAAQAAAAUABAFiwF3AJgACAAEAAAAFAAQBa8BdwCYAAgABAAAABQAEAWnAXcAmAAIAAQAAAAUABAFqwF3AJgACAAEAAAAFAAQBZ8BdwCYAAgABAAAABQAEAWHAXcAmAAIAAQAAAAUABAFswF3AJgACAAEAAAAFAAQBbcBdwQsAAQABAAAABQAEwAUGHsC7AAEAAQAAAAUABMAhDh7AWwABAAEAAAAFAATAGlwewKsAAQABAAAABQAEwB9QHsCLAAEAAQAAAAUABMAMXh7AmwABAAEAAAAFAATAIzMewPsAAQABAAAABQAEwCpdHsB7AAEAAQAAAAUABMA2cB7A2wABAAEAAAAFAATAK6wewOsAAQABAAAABQAEwDBPHsDLAAEAAQAAAAUABMA0sh7BGwABAAEAAAAFAATAKaIewSsAAQABAAAABQAEwDdTHg=="},"src_ip":"192.168.113.2","dst_ip":"192.168.113.237","protocol":17,"src_port":53,"dst_port":35986,"event_start":1565200503.589672} -{"ip":{"version":4,"ttl":128,"id":"b40e"},"dns":{"base64":"UpuBgAABAAAAAQAAEmNvbm5lY3Rpdml0eS1jaGVjawZ1YnVudHUDY29tAAAcAAHAHwAGAAEAAAAFADEDbnMxCWNhbm9uaWNhbMAmCmhvc3RtYXN0ZXLAP3hJBp0AACowAAAOEAAJOoAAAA4Q"},"src_ip":"192.168.113.2","dst_ip":"192.168.113.237","protocol":17,"src_port":53,"dst_port":33455,"event_start":1565200503.619649} -{"ip":{"version":4,"ttl":64,"id":"2885"},"fingerprints":{"tcp":"tcp/(40)()(40)(faf0)((020405b4)(04)(08)(01)(030307))"},"tcp":{"seq":3601944730,"timestamp":{"ts_val":995898471}},"src_ip":"192.168.113.237","dst_ip":"35.224.99.156","protocol":6,"src_port":53560,"dst_port":80,"event_start":1565200503.621385} -{"ip":{"version":4,"ttl":128,"id":"b40f"},"fingerprints":{"tcp_server":"tcp_server/(40)()(80)(faf0)((020405b4))"},"tcp_server":{"seq":2578226004},"src_ip":"35.224.99.156","dst_ip":"192.168.113.237","protocol":6,"src_port":80,"dst_port":53560,"event_start":1565200503.657862} -{"ip":{"version":4,"ttl":64,"id":"2887"},"fingerprints":{"http":"http/(474554)(485454502f312e31)((486f7374)(4163636570743a202a2f2a)(436f6e6e656374696f6e3a20636c6f7365))"},"http":{"request":{"method":"GET","uri":"/","protocol":"HTTP/1.1","host":"connectivity-check.ubuntu.com","headers":[{"name":"Host","value":"connectivity-check.ubuntu.com","delimiter":"\u000d\u000a"},{"name":"Accept","value":"*/*","delimiter":"\u000d\u000a"},{"name":"Connection","value":"close","delimiter":"\u000d\u000a"}]}},"src_ip":"192.168.113.237","dst_ip":"35.224.99.156","protocol":6,"src_port":53560,"dst_port":80,"event_start":1565200503.658237} -{"ip":{"version":4,"ttl":128,"id":"b411"},"fingerprints":{"http_server":"http_server/(485454502f312e31)(323034)(4e6f20436f6e74656e74)((44617465)(5365727665723a204170616368652f322e342e313820285562756e747529)(436f6e6e656374696f6e3a20636c6f7365))"},"http":{"response":{"version":"HTTP/1.1","status_code":"204","status_reason":"No Content","server":"Apache/2.4.18 (Ubuntu)","via":"1.1 rtp10-dmz-wsa-3.cisco.com:80 (Cisco-WSA/X)","headers":[{"name":"Date","value":"Wed, 07 Aug 2019 17:55:03 GMT","delimiter":"\u000d\u000a"},{"name":"Server","value":"Apache/2.4.18 (Ubuntu)","delimiter":"\u000d\u000a"},{"name":"X-NetworkManager-Status","value":"online","delimiter":"\u000d\u000a"},{"name":"Keep-Alive","value":"timeout=5, max=100","delimiter":"\u000d\u000a"},{"name":"Via","value":"1.1 rtp10-dmz-wsa-3.cisco.com:80 (Cisco-WSA/X)","delimiter":"\u000d\u000a"},{"name":"Connection","value":"close","delimiter":"\u000d\u000a"}]}},"src_ip":"35.224.99.156","dst_ip":"192.168.113.237","protocol":6,"src_port":80,"dst_port":53560,"event_start":1565200503.759359} -{"ip":{"version":6,"ttl":128,"id":"0f026"},"fingerprints":{"http":"http/(474554)(485454502f312e31)()"},"http":{"request":{"method":"GET","uri":"/connecttest.txt","protocol":"HTTP/1.1"}},"src_ip":"2001:420:c0c4:1004::4be","dst_ip":"2600:1408:5400:1c::173d:b40","protocol":6,"src_port":59852,"dst_port":80,"event_start":1576249528.552293} +{"dns":{"base64":"1DIBAAABAAAAAAAAA2dldAVhZG9iZQNjb20AAAEAAQ=="},"ip":{"version":4,"ttl":64,"id":"0003"},"src_ip":"192.168.113.237","dst_ip":"192.168.113.2","protocol":17,"src_port":32824,"dst_port":53,"event_start":1565200421.753494} +{"dns":{"base64":"BVEBAAABAAAAAAAAA2dldAVhZG9iZQNjb20AABwAAQ=="},"ip":{"version":4,"ttl":64,"id":"0004"},"src_ip":"192.168.113.237","dst_ip":"192.168.113.2","protocol":17,"src_port":50515,"dst_port":53,"event_start":1565200421.753716} +{"dns":{"base64":"BVGBgAABAAEAAQAAA2dldAVhZG9iZQNjb20AABwAAcAMAAUAAQAAAAUACwNnZXQEd2lwNMAQwC8ABgABAAAABQAtCW9yMWd0bTAwM8AQCmhvc3RtYXN0ZXLAQnhYS3EAACowAAAOEAAJOoAAAAA8"},"ip":{"version":4,"ttl":128,"id":"aad9"},"src_ip":"192.168.113.2","dst_ip":"192.168.113.237","protocol":17,"src_port":53,"dst_port":50515,"event_start":1565200421.800736} +{"dns":{"base64":"Vg0BAAABAAAAAAAAA2dldAR3aXA0BWFkb2JlA2NvbQAAHAAB"},"ip":{"version":4,"ttl":64,"id":"000e"},"src_ip":"192.168.113.237","dst_ip":"192.168.113.2","protocol":17,"src_port":52579,"dst_port":53,"event_start":1565200421.800928} +{"dns":{"base64":"1DKBgAABAAIADQANA2dldAVhZG9iZQNjb20AAAEAAcAMAAUAAQAAAAUACwNnZXQEd2lwNMAQwCsAAQABAAAABQAEwJOCP8AWAAIAAQAAAAUAFAFiDGd0bGQtc2VydmVycwNuZXQAwBYAAgABAAAABQAEAWPAVMAWAAIAAQAAAAUABAFqwFTAFgACAAEAAAAFAAQBYcBUwBYAAgABAAAABQAEAWTAVMAWAAIAAQAAAAUABAFpwFTAFgACAAEAAAAFAAQBZcBUwBYAAgABAAAABQAEAWvAVMAWAAIAAQAAAAUABAFnwFTAFgACAAEAAAAFAAQBbcBUwBYAAgABAAAABQAEAWjAVMAWAAIAAQAAAAUABAFswFTAFgACAAEAAAAFAAQBZsBUwJIAAQABAAAABQAEwAUGHsBSAAEAAQAAAAUABMAhDh7AcgABAAEAAAAFAATAGlwewKIAAQABAAAABQAEwB9QHsDCAAEAAQAAAAUABMAMXh7BIgABAAEAAAAFAATAIzMewOIAAQABAAAABQAEwCpdHsECAAEAAQAAAAUABMA2cB7AsgABAAEAAAAFAATAK6wewIIAAQABAAAABQAEwDBPHsDSAAEAAQAAAAUABMA0sh7BEgABAAEAAAAFAATAKaIewPIAAQABAAAABQAEwDdTHg=="},"ip":{"version":4,"ttl":128,"id":"aada"},"src_ip":"192.168.113.2","dst_ip":"192.168.113.237","protocol":17,"src_port":53,"dst_port":32824,"event_start":1565200421.802254} +{"dns":{"base64":"Vg2BgAABAAAAAQAAA2dldAR3aXA0BWFkb2JlA2NvbQAAHAABwBAABgABAAAABQAtCW9yMWd0bTAwM8AVCmhvc3RtYXN0ZXLAMHhYS3EAACowAAAOEAAJOoAAAAA8"},"ip":{"version":4,"ttl":128,"id":"aadb"},"src_ip":"192.168.113.2","dst_ip":"192.168.113.237","protocol":17,"src_port":53,"dst_port":52579,"event_start":1565200421.835676} +{"fingerprints":{"tcp":"tcp/(40)()(40)(faf0)((020405b4)(04)(08)(01)(030307))"},"tcp":{"seq":1929389367,"timestamp":{"ts_val":3155188397}},"ip":{"version":4,"ttl":64,"id":"0d76"},"src_ip":"192.168.113.237","dst_ip":"192.147.130.63","protocol":6,"src_port":56050,"dst_port":443,"event_start":1565200421.836043} +{"fingerprints":{"tcp_server":"tcp_server/(40)()(80)(faf0)((020405b4))"},"tcp_server":{"seq":4232032521},"ip":{"version":4,"ttl":128,"id":"aadc"},"src_ip":"192.147.130.63","dst_ip":"192.168.113.237","protocol":6,"src_port":443,"dst_port":56050,"event_start":1565200421.938667} +{"fingerprints":{"tls":"tls/(0303)(130213031301c02cc030009fcca9cca8ccaac02bc02f009ec024c028006bc023c0270067c00ac0140039c009c0130033009d009c003d003c0035002f00ff)((0000)(000b000403000102)(000a000c000a001d0017001e00190018)(0023)(0016)(0017)(000d0030002e040305030603080708080809080a080b080408050806040105010601030302030301020103020202040205020602)(002b0009080304030303020301)(002d00020101)(0033))"},"tls":{"client":{"version":"0303","random":"4580e8982c46320e8c3ebebd8fcb5f04e70b3465a920e6ea1927e5581dbd80db","session_id":"4f42d576c572bf119e2a4d1a90d6b485ace32f382c8390b8f2fd5a420bf8d44e","cipher_suites":"130213031301c02cc030009fcca9cca8ccaac02bc02f009ec024c028006bc023c0270067c00ac0140039c009c0130033009d009c003d003c0035002f00ff","compression_methods":"00","server_name":"get.adobe.com","session_ticket":"","features":"[\"0303\",\"130213031301c02cc030009fcca9cca8ccaac02bc02f009ec024c028006bc023c0270067c00ac0140039c009c0130033009d009c003d003c0035002f00ff\",[[\"0000\",\"001000000d6765742e61646f62652e636f6d\"],[\"000b\",\"03000102\"],[\"000a\",\"000a001d0017001e00190018\"],[\"0023\",\"\"],[\"0016\",\"\"],[\"0017\",\"\"],[\"000d\",\"002e040305030603080708080809080a080b080408050806040105010601030302030301020103020202040205020602\"],[\"002b\",\"080304030303020301\"],[\"002d\",\"0101\"],[\"0033\",\"0024001d002016f7837fd37587def563e0ed687ab228534f13f5ba10be95d9b2614393219e26\"]]]"}},"ip":{"version":4,"ttl":64,"id":"0d78"},"src_ip":"192.168.113.237","dst_ip":"192.147.130.63","protocol":6,"src_port":56050,"dst_port":443,"event_start":1565200421.939433} +{"fingerprints":{"tls_server":"tls_server/(0303)(c030)((ff01)(0000)(000b00020100))"},"tls":{"server":{"certs":[{"base64":"MIIFLzCCBBegAwIBAgIQB0B1cdqi3EvrQNMDvCLFLzANBgkqhkiG9w0BAQsFADBNMQswCQYDVQQGEwJVUzEVMBMGA1UEChMMRGlnaUNlcnQgSW5jMScwJQYDVQQDEx5EaWdpQ2VydCBTSEEyIFNlY3VyZSBTZXJ2ZXIgQ0EwHhcNMTYwOTIzMDAwMDAwWhcNMTkwOTI3MTIwMDAwWjByMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTERMA8GA1UEBxMIU2FuIEpvc2UxIzAhBgNVBAoTGkFkb2JlIFN5c3RlbXMgSW5jb3Jwb3JhdGVkMRYwFAYDVQQDEw1nZXQuYWRvYmUuY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAveM8fv/wEUZyOU3P1HZbEfXssMIqSVViH1GmY4WTN4BjXvKAqhyZZ4d9L9cwwc0wYpZd0eBiKDm82JXN6z1cXvTP9P8DKS91R2FYuk5EFHnLQDI/hHD6Akrw1oO+3Jl9TCnP9ERtJ+ym/QCARGUi+0drECWRnLFUB6pp+OjXEBW4ksqQSMu+5gcJBGLaHGA7FoaPPZiBflGiSYtleD59yTFdn1gExGUjAEV0vtRyn78xLfIm4BjH4ig5ourSePT4sukw+pl7byg1oHlvRBXdivKISGeGDDp4iRgn6o3EeHHv8+SqbtKYN5O2Lt/6nIOAeSBUHgAwMuXjbgbYOTbEZwIDAQABo4IB5DCCAeAwHwYDVR0jBBgwFoAUD4BhHIIxYdUvKOeNRji0LOHG2eIwHQYDVR0OBBYEFL0p+ADBly695ldqsOYJRJDY3p3eMCgGA1UdEQQhMB+CDWdldC5hZG9iZS5jb22CDmdldDIuYWRvYmUuY29tMA4GA1UdDwEB/wQEAwIFoDAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwawYDVR0fBGQwYjAvoC2gK4YpaHR0cDovL2NybDMuZGlnaWNlcnQuY29tL3NzY2Etc2hhMi1nNS5jcmwwL6AtoCuGKWh0dHA6Ly9jcmw0LmRpZ2ljZXJ0LmNvbS9zc2NhLXNoYTItZzUuY3JsMEwGA1UdIARFMEMwNwYJYIZIAYb9bAEBMCowKAYIKwYBBQUHAgEWHGh0dHBzOi8vd3d3LmRpZ2ljZXJ0LmNvbS9DUFMwCAYGZ4EMAQICMHwGCCsGAQUFBwEBBHAwbjAkBggrBgEFBQcwAYYYaHR0cDovL29jc3AuZGlnaWNlcnQuY29tMEYGCCsGAQUFBzAChjpodHRwOi8vY2FjZXJ0cy5kaWdpY2VydC5jb20vRGlnaUNlcnRTSEEyU2VjdXJlU2VydmVyQ0EuY3J0MAwGA1UdEwEB/wQCMAAwDQYJKoZIhvcNAQELBQADggEBAGFvKSUJ3FHGYnmuPNFfUJ9TUF38sGQI3LYN4fxiTkFyt+KzxI465di9ik7gC+IpyPHZkHd4Xt8U5s4xe9v1OCnhrpKsmG+jUYq4VVHZZ9JJhhpdpPqKgkCYc3ulUM981/59HH74HzOQpSifdceEh+i1jVuVbWTEKkIV0yzW8W18fGCWmWD922P7Vi0be2EnvLDlilWDRfTnECAt5b/PpJmt9ww7X2NmAQaIlU++zkaQO635jNqdrxoTEq7Ae6Am6aIbazcGjgohFhoE0dzl2L6/cl8kbEWo+cbfUvIpMRvFaP962YyXFq8D7il10tVgmBQUkY4BNn5cZ9eEqmePPnw="},{"base64":"MIIElDCCA3ygAwIBAgIQAf2j627KdciIQ4tyS8+8kTANBgkqhkiG9w0BAQsFADBhMQswCQYDVQQGEwJVUzEVMBMGA1UEChMMRGlnaUNlcnQgSW5jMRkwFwYDVQQLExB3d3cuZGlnaWNlcnQuY29tMSAwHgYDVQQDExdEaWdpQ2VydCBHbG9iYWwgUm9vdCBDQTAeFw0xMzAzMDgxMjAwMDBaFw0yMzAzMDgxMjAwMDBaME0xCzAJBgNVBAYTAlVTMRUwEwYDVQQKEwxEaWdpQ2VydCBJbmMxJzAlBgNVBAMTHkRpZ2lDZXJ0IFNIQTIgU2VjdXJlIFNlcnZlciBDQTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANyuWJBNwcQwFZA1W248ghX1LFy949v/cUP6ZCWA1O4Yok3wZtAKc24RmDYXZK83nf36QYSvx6+M/hpzTc8zl5CilodTgyu5pnVILR1WN3vaMTIa16yrBvSqXUu3R0bdKpPDkC55gIDvEwRqFDu1m5K+wgdlTvza/P96rtxcflUxDOg5B6TXvi/TC2rSsd9f/ld0Uzs1gN2ujkSYs58O09rg1/RrKatEp0tYhG2SS4HD2nOLEpdIkARFdRrdNzGXkujNVA075ME/OV4uuPNcfhCOhkEAjUVmR7ChZc6gqikJTvOX6+guqw9ypzAO+sf0/RR3w6RbKFfCs/mC/bdFWJsCAwEAAaOCAVowggFWMBIGA1UdEwEB/wQIMAYBAf8CAQAwDgYDVR0PAQH/BAQDAgGGMDQGCCsGAQUFBwEBBCgwJjAkBggrBgEFBQcwAYYYaHR0cDovL29jc3AuZGlnaWNlcnQuY29tMHsGA1UdHwR0MHIwN6A1oDOGMWh0dHA6Ly9jcmwzLmRpZ2ljZXJ0LmNvbS9EaWdpQ2VydEdsb2JhbFJvb3RDQS5jcmwwN6A1oDOGMWh0dHA6Ly9jcmw0LmRpZ2ljZXJ0LmNvbS9EaWdpQ2VydEdsb2JhbFJvb3RDQS5jcmwwPQYDVR0gBDYwNDAyBgRVHSAAMCowKAYIKwYBBQUHAgEWHGh0dHBzOi8vd3d3LmRpZ2ljZXJ0LmNvbS9DUFMwHQYDVR0OBBYEFA+AYRyCMWHVLyjnjUY4tCzhxtniMB8GA1UdIwQYMBaAFAPeUDVW0Uy7ZvCj4hsbw5eyPdFVMA0GCSqGSIb3DQEBCwUAA4IBAQAjPt9L0jFCpbZ+QlwaRMxp0Wi0XUvgBCFsS+JtzLHgl4+mUwnNqipl5TlPHoOlblyYoiQm5vuh7ZPHLgLGTUq/sELfeNqzqPlt/yGFUzZgTHbO7Djc1lGA8MXW5dRNJ2Srm8c+cftIl7gzbckTB+6WohsYFfZcTEDts8Ls/3HB40f/1LkAtDdC2iDJ6m6K7hQGrn2iWZiIqBtvLfTyyRRfJs8sjX7tN8Cp1Tm5gr8ZDOo0rwAhaPitc+LJMto4JQtV05od8GiG7S5BNO98pVAdvzr508EIDObtHopYJeS4d60tbvVS3bR0j6tJLp07kzQoH3jOlOrHvdPJbRzeXDLz"}],"version":"0303","random":"62c0266d995d81e3c19e41b7f9e7f613e987422560332299cf8f63fb3bdd7ad5","selected_cipher_suite":"c030","compression_method":"00"}},"reassembly_properties":{"reassembled":true},"ip":{"version":4,"ttl":128,"id":"aae0"},"src_ip":"192.147.130.63","dst_ip":"192.168.113.237","protocol":6,"src_port":443,"dst_port":56050,"event_start":1565200422.054770} +{"fingerprints":{"tcp":"tcp/(40)()(40)(faf0)((020405b4)(04)(08)(01)(030307))"},"tcp":{"seq":393677304,"timestamp":{"ts_val":1586568989}},"ip":{"version":4,"ttl":64,"id":"2131"},"src_ip":"192.168.113.237","dst_ip":"184.50.35.161","protocol":6,"src_port":57026,"dst_port":443,"event_start":1565200422.379884} +{"fingerprints":{"tcp_server":"tcp_server/(40)()(80)(faf0)((020405b4))"},"tcp_server":{"seq":3018673429},"ip":{"version":4,"ttl":128,"id":"aae8"},"src_ip":"184.50.35.161","dst_ip":"192.168.113.237","protocol":6,"src_port":443,"dst_port":57026,"event_start":1565200422.420718} +{"fingerprints":{"tls":"tls/(0303)(130213031301c02cc030009fcca9cca8ccaac02bc02f009ec024c028006bc023c0270067c00ac0140039c009c0130033009d009c003d003c0035002f00ff)((0000)(000b000403000102)(000a000c000a001d0017001e00190018)(0023)(0016)(0017)(000d0030002e040305030603080708080809080a080b080408050806040105010601030302030301020103020202040205020602)(002b0009080304030303020301)(002d00020101)(0033))"},"tls":{"client":{"version":"0303","random":"980a449850fdcf8f05f22863f49f01aeeb444f5e751bfab06bf53109a6b7b159","session_id":"3b17d8dbacaaa05faef48543a1361152326d7f86ecbf00e116f6c8a6c66109a0","cipher_suites":"130213031301c02cc030009fcca9cca8ccaac02bc02f009ec024c028006bc023c0270067c00ac0140039c009c0130033009d009c003d003c0035002f00ff","compression_methods":"00","server_name":"www.adobe.com","session_ticket":"","features":"[\"0303\",\"130213031301c02cc030009fcca9cca8ccaac02bc02f009ec024c028006bc023c0270067c00ac0140039c009c0130033009d009c003d003c0035002f00ff\",[[\"0000\",\"001000000d7777772e61646f62652e636f6d\"],[\"000b\",\"03000102\"],[\"000a\",\"000a001d0017001e00190018\"],[\"0023\",\"\"],[\"0016\",\"\"],[\"0017\",\"\"],[\"000d\",\"002e040305030603080708080809080a080b080408050806040105010601030302030301020103020202040205020602\"],[\"002b\",\"080304030303020301\"],[\"002d\",\"0101\"],[\"0033\",\"0024001d0020c721a112f780736cc9ed2adede8ee7a71ce61321cfe76245631c177995ee8b3a\"]]]"}},"ip":{"version":4,"ttl":64,"id":"2133"},"src_ip":"192.168.113.237","dst_ip":"184.50.35.161","protocol":6,"src_port":57026,"dst_port":443,"event_start":1565200422.420984} +{"fingerprints":{"tls_server":"tls_server/(0303)(c030)((ff01)(0000)(000b000403000102)(0023))"},"tls":{"server":{"certs":[{"base64":"MIIGNzCCBR+gAwIBAgIQCg503M6e7LVhG69g0BbsbzANBgkqhkiG9w0BAQsFADBNMQswCQYDVQQGEwJVUzEVMBMGA1UEChMMRGlnaUNlcnQgSW5jMScwJQYDVQQDEx5EaWdpQ2VydCBTSEEyIFNlY3VyZSBTZXJ2ZXIgQ0EwHhcNMTgxMTA2MDAwMDAwWhcNMjAwMjA1MTIwMDAwWjB9MQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTERMA8GA1UEBxMIU2FuIEpvc2UxIzAhBgNVBAoTGkFkb2JlIFN5c3RlbXMgSW5jb3Jwb3JhdGVkMQswCQYDVQQLEwJJUzEUMBIGA1UEAwwLKi5hZG9iZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDxHy02hH5awt6eB0ZB5yfF3ZQO+955tDn+W6IfR+yLQFIi931YwkIxAM7M2VD1bm760h29lI6RiYFpiW0oPUnkt8zEpdayi2OHH5Ap6nQSDlEHW9BQpMXLBVep0HG6e8Qz2uiW84K8qlERWRBoDf7LZkJ+j3VGVPX50rD4BW1SjiHw5Hil+mb9tR6z2OMHFhoMYMYhOL4HSRnv3Nj4Xg1f1BfKwYVt4KZe1rnUmqJFVXk0iwdPv71JYh96Rj1CeaYCSG3PhL1CctmEtzfeVFX++kCM1PXeQsJtGEGiITu2FBBFzdheqTxdC9/LOnM9WgmqhVYoScwqo43O34sUx2oJAgMBAAGjggLhMIIC3TAfBgNVHSMEGDAWgBQPgGEcgjFh1S8o541GOLQs4cbZ4jAdBgNVHQ4EFgQUKL0O8nlF4pVkpaFcldo1cKl5FJQwIQYDVR0RBBowGIILKi5hZG9iZS5jb22CCWFkb2JlLmNvbTAOBgNVHQ8BAf8EBAMCBaAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMGsGA1UdHwRkMGIwL6AtoCuGKWh0dHA6Ly9jcmwzLmRpZ2ljZXJ0LmNvbS9zc2NhLXNoYTItZzYuY3JsMC+gLaArhilodHRwOi8vY3JsNC5kaWdpY2VydC5jb20vc3NjYS1zaGEyLWc2LmNybDBMBgNVHSAERTBDMDcGCWCGSAGG/WwBATAqMCgGCCsGAQUFBwIBFhxodHRwczovL3d3dy5kaWdpY2VydC5jb20vQ1BTMAgGBmeBDAECAjB8BggrBgEFBQcBAQRwMG4wJAYIKwYBBQUHMAGGGGh0dHA6Ly9vY3NwLmRpZ2ljZXJ0LmNvbTBGBggrBgEFBQcwAoY6aHR0cDovL2NhY2VydHMuZGlnaWNlcnQuY29tL0RpZ2lDZXJ0U0hBMlNlY3VyZVNlcnZlckNBLmNydDAJBgNVHRMEAjAAMIIBAwYKKwYBBAHWeQIEAgSB9ASB8QDvAHUApLkJkLQYWBSHuxOizGdwCjw1mAT5G9+443fNDsgN3BAAAAFm6OYBSAAABAMARjBEAiAGzoFtL3H38sDIqCoGUtHh+mft+u6+95qWVkiz6tckEAIgNIqKfTS1ssN9aslsQmNTqxw00g0VQRqLRx/yqDpOEmAAdgCHdb/nWXz4jEOZX73zbv9WjUdWNv9KtWDBtOr/XqCDDwAAAWbo5gIhAAAEAwBHMEUCIFCsSzZXC6mRE0/g7xTRXY94byQOwpjY13VAd0nv+VdIAiEA0hop7zM0YHyWGkiK1emLlPEj8tpv2L0uo/eC5AfqdMAwDQYJKoZIhvcNAQELBQADggEBAApznoYz6ONoMxctjevgb6j9S3Nne3QdHSbAHzQeYzClDxIJNp/Ob+38tShcMwpu2lBFb0QL3QNRwOZ5xQk4O0h+ul0t1YVDKJw9Mz2qwuOt4mUp+u764vmHDrvZxJxGQ/c6oTsm4biRKBZbI6PTXwz61DhsQ2jtWNATNGWDsdv6MS2F12blpNFdOVzXVOWRb+E7fbZC9VU0l760VFrYB/UuLJ7xb7+3fN04l1KFQE2wtfwdbVZEdYe72eNxIZDmIPxFFotlyzhdsWoGV3WGXTbjVzc3vb3SRQ3E4QTouANow1YA3wwRJWEarmiPN7L+P4sMrDAYF2im1b2YY2Iem+Y="},{"base64":"MIIElDCCA3ygAwIBAgIQAf2j627KdciIQ4tyS8+8kTANBgkqhkiG9w0BAQsFADBhMQswCQYDVQQGEwJVUzEVMBMGA1UEChMMRGlnaUNlcnQgSW5jMRkwFwYDVQQLExB3d3cuZGlnaWNlcnQuY29tMSAwHgYDVQQDExdEaWdpQ2VydCBHbG9iYWwgUm9vdCBDQTAeFw0xMzAzMDgxMjAwMDBaFw0yMzAzMDgxMjAwMDBaME0xCzAJBgNVBAYTAlVTMRUwEwYDVQQKEwxEaWdpQ2VydCBJbmMxJzAlBgNVBAMTHkRpZ2lDZXJ0IFNIQTIgU2VjdXJlIFNlcnZlciBDQTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANyuWJBNwcQwFZA1W248ghX1LFy949v/cUP6ZCWA1O4Yok3wZtAKc24RmDYXZK83nf36QYSvx6+M/hpzTc8zl5CilodTgyu5pnVILR1WN3vaMTIa16yrBvSqXUu3R0bdKpPDkC55gIDvEwRqFDu1m5K+wgdlTvza/P96rtxcflUxDOg5B6TXvi/TC2rSsd9f/ld0Uzs1gN2ujkSYs58O09rg1/RrKatEp0tYhG2SS4HD2nOLEpdIkARFdRrdNzGXkujNVA075ME/OV4uuPNcfhCOhkEAjUVmR7ChZc6gqikJTvOX6+guqw9ypzAO+sf0/RR3w6RbKFfCs/mC/bdFWJsCAwEAAaOCAVowggFWMBIGA1UdEwEB/wQIMAYBAf8CAQAwDgYDVR0PAQH/BAQDAgGGMDQGCCsGAQUFBwEBBCgwJjAkBggrBgEFBQcwAYYYaHR0cDovL29jc3AuZGlnaWNlcnQuY29tMHsGA1UdHwR0MHIwN6A1oDOGMWh0dHA6Ly9jcmwzLmRpZ2ljZXJ0LmNvbS9EaWdpQ2VydEdsb2JhbFJvb3RDQS5jcmwwN6A1oDOGMWh0dHA6Ly9jcmw0LmRpZ2ljZXJ0LmNvbS9EaWdpQ2VydEdsb2JhbFJvb3RDQS5jcmwwPQYDVR0gBDYwNDAyBgRVHSAAMCowKAYIKwYBBQUHAgEWHGh0dHBzOi8vd3d3LmRpZ2ljZXJ0LmNvbS9DUFMwHQYDVR0OBBYEFA+AYRyCMWHVLyjnjUY4tCzhxtniMB8GA1UdIwQYMBaAFAPeUDVW0Uy7ZvCj4hsbw5eyPdFVMA0GCSqGSIb3DQEBCwUAA4IBAQAjPt9L0jFCpbZ+QlwaRMxp0Wi0XUvgBCFsS+JtzLHgl4+mUwnNqipl5TlPHoOlblyYoiQm5vuh7ZPHLgLGTUq/sELfeNqzqPlt/yGFUzZgTHbO7Djc1lGA8MXW5dRNJ2Srm8c+cftIl7gzbckTB+6WohsYFfZcTEDts8Ls/3HB40f/1LkAtDdC2iDJ6m6K7hQGrn2iWZiIqBtvLfTyyRRfJs8sjX7tN8Cp1Tm5gr8ZDOo0rwAhaPitc+LJMto4JQtV05od8GiG7S5BNO98pVAdvzr508EIDObtHopYJeS4d60tbvVS3bR0j6tJLp07kzQoH3jOlOrHvdPJbRzeXDLz"}],"version":"0303","random":"58e1f5f3abc204ba923a604041270da71dece2af5303e1320a74587977ca1a7e","selected_cipher_suite":"c030","compression_method":"00","session_ticket":""}},"reassembly_properties":{"reassembled":true},"ip":{"version":4,"ttl":128,"id":"aaed"},"src_ip":"184.50.35.161","dst_ip":"192.168.113.237","protocol":6,"src_port":443,"dst_port":57026,"event_start":1565200422.462963} +{"dns":{"base64":"Dg8BAAABAAAAAAAABmFwYWNoZQNvcmcAAAEAAQ=="},"ip":{"version":4,"ttl":64,"id":"00b5"},"src_ip":"192.168.113.237","dst_ip":"192.168.113.2","protocol":17,"src_port":42949,"dst_port":53,"event_start":1565200422.709093} +{"dns":{"base64":"q/0BAAABAAAAAAAABmFwYWNoZQNvcmcAABwAAQ=="},"ip":{"version":4,"ttl":64,"id":"00b6"},"src_ip":"192.168.113.237","dst_ip":"192.168.113.2","protocol":17,"src_port":36419,"dst_port":53,"event_start":1565200422.709264} +{"dns":{"base64":"Dg+BgAABAAIABgAMBmFwYWNoZQNvcmcAAAEAAcAMAAEAAQAAAAUABF/YGCDADAABAAEAAAAFAAQoT04BwBMAAgABAAAABQAZAmEwA29yZwthZmlsaWFzLW5zdARpbmZvAMATAAIAAQAAAAUABQJjMMBLwBMAAgABAAAABQAVAmIwA29yZwthZmlsaWFzLW5zdMATwBMAAgABAAAABQAFAmEywEvAEwACAAEAAAAFAAUCZDDAgcATAAIAAQAAAAUABQJiMsCBwEgAAQABAAAABQAExxM4AcCfAAEAAQAAAAUABMf5cAHAfgABAAEAAAAFAATHEzYBwMEAAQABAAAABQAEx/l4AcBtAAEAAQAAAAUABMcTNQHAsAABAAEAAAAFAATHEzkBwEgAHAABAAAABQAQIAEFAAAOAAAAAAAAAAAAAcCfABwAAQAAAAUAECABBQAAQAAAAAAAAAAAAAHAfgAcAAEAAAAFABAgAQUAAAwAAAAAAAAAAAABwMEAHAABAAAABQAQIAEFAABIAAAAAAAAAAAAAcBtABwAAQAAAAUAECABBQAACwAAAAAAAAAAAAHAsAAcAAEAAAAFABAgAQUAAA8AAAAAAAAAAAAB"},"ip":{"version":4,"ttl":128,"id":"ab3c"},"src_ip":"192.168.113.2","dst_ip":"192.168.113.237","protocol":17,"src_port":53,"dst_port":42949,"event_start":1565200422.753323} +{"dns":{"base64":"q/2BgAABAAAAAQAABmFwYWNoZQNvcmcAABwAAcAMAAYAAQAAAAUAPANuczIHc3VyZm5ldAJubAAVaG9zdG1hc3Rlci0yMDA1LWFscGhhwAx4WLk0AAAOEAAAA4QACTqAAAAOEA=="},"ip":{"version":4,"ttl":128,"id":"ab3d"},"src_ip":"192.168.113.2","dst_ip":"192.168.113.237","protocol":17,"src_port":53,"dst_port":36419,"event_start":1565200422.755408} +{"fingerprints":{"tcp":"tcp/(40)()(40)(faf0)((020405b4)(04)(08)(01)(030307))"},"tcp":{"seq":3762142582,"timestamp":{"ts_val":2887492374}},"ip":{"version":4,"ttl":64,"id":"9451"},"src_ip":"192.168.113.237","dst_ip":"95.216.24.32","protocol":6,"src_port":50428,"dst_port":443,"event_start":1565200422.755645} +{"fingerprints":{"tcp_server":"tcp_server/(40)()(80)(faf0)((020405b4))"},"tcp_server":{"seq":3162854891},"ip":{"version":4,"ttl":128,"id":"ab3e"},"src_ip":"95.216.24.32","dst_ip":"192.168.113.237","protocol":6,"src_port":443,"dst_port":50428,"event_start":1565200422.920099} +{"fingerprints":{"tls":"tls/(0303)(130213031301c02cc030009fcca9cca8ccaac02bc02f009ec024c028006bc023c0270067c00ac0140039c009c0130033009d009c003d003c0035002f00ff)((0000)(000b000403000102)(000a000c000a001d0017001e00190018)(0023)(0016)(0017)(000d0030002e040305030603080708080809080a080b080408050806040105010601030302030301020103020202040205020602)(002b0009080304030303020301)(002d00020101)(0033))"},"tls":{"client":{"version":"0303","random":"b8829b1e58430c0b2e71f20970fcf39e8a7237831552f4ed8a3a2f9c397362c3","session_id":"c5e23f0851e7802e50338689b971db694fbc86a3bd3baed466a86c177467019a","cipher_suites":"130213031301c02cc030009fcca9cca8ccaac02bc02f009ec024c028006bc023c0270067c00ac0140039c009c0130033009d009c003d003c0035002f00ff","compression_methods":"00","server_name":"apache.org","session_ticket":"","features":"[\"0303\",\"130213031301c02cc030009fcca9cca8ccaac02bc02f009ec024c028006bc023c0270067c00ac0140039c009c0130033009d009c003d003c0035002f00ff\",[[\"0000\",\"000d00000a6170616368652e6f7267\"],[\"000b\",\"03000102\"],[\"000a\",\"000a001d0017001e00190018\"],[\"0023\",\"\"],[\"0016\",\"\"],[\"0017\",\"\"],[\"000d\",\"002e040305030603080708080809080a080b080408050806040105010601030302030301020103020202040205020602\"],[\"002b\",\"080304030303020301\"],[\"002d\",\"0101\"],[\"0033\",\"0024001d00209546be59b60942dbbfd5044a20ee7f5925c88112d06816010e77a16c56ffea4f\"]]]"}},"ip":{"version":4,"ttl":64,"id":"9453"},"src_ip":"192.168.113.237","dst_ip":"95.216.24.32","protocol":6,"src_port":50428,"dst_port":443,"event_start":1565200422.920415} +{"fingerprints":{"tls_server":"tls_server/(0303)(c030)((0000)(ff01)(000b000403000102)(0023))"},"tls":{"server":{"certs":[{"base64":"MIIGbzCCBVegAwIBAgIRAIk8VkaPe0wk+AMX0nAFalswDQYJKoZIhvcNAQELBQAwgY8xCzAJBgNVBAYTAkdCMRswGQYDVQQIExJHcmVhdGVyIE1hbmNoZXN0ZXIxEDAOBgNVBAcTB1NhbGZvcmQxGDAWBgNVBAoTD1NlY3RpZ28gTGltaXRlZDE3MDUGA1UEAxMuU2VjdGlnbyBSU0EgRG9tYWluIFZhbGlkYXRpb24gU2VjdXJlIFNlcnZlciBDQTAeFw0xOTA3MDEwMDAwMDBaFw0yMTA2MzAyMzU5NTlaMFkxITAfBgNVBAsTGERvbWFpbiBDb250cm9sIFZhbGlkYXRlZDEdMBsGA1UECxMUUG9zaXRpdmVTU0wgV2lsZGNhcmQxFTATBgNVBAMMDCouYXBhY2hlLm9yZzCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANCOPYE/2bjXXHBCii4IappWRj1rvuNtPfN4CyBvSeT8PX8GzgioOv6/QNBQ8xMQyFQoQOKAQ3kKY1VbHtyHBnXB7PVENeXF9ATB8D/G1b2Mh7D7HXHFgKH4oDEIRZABak4kuOcplgnqV8dhIvpdyN7bUkDzGutKS5cKROIMG7k6VrcdxsFrmnaYedh/mqEEGTz/WF3cWKiWIQftHNMvuqF/CWLqkuQFt2IPHr/Flg70HxSYpMW+ZhLZ0VSJTXf6Bs0XRUk3ADuZJhQY5bPAh3xzvpVCY7C1c7F3kbX9X2MKvJDzpcMgLQ9zvjFfqAsGehTC1pm9SC/QBu0yHCqnVykCAwEAAaOCAvkwggL1MB8GA1UdIwQYMBaAFI2MXsRUrYrhd+mb+ZsF4bgBjWHhMB0GA1UdDgQWBBRe2N1Z7wYz82ZGAeeh++C/zsujhTAOBgNVHQ8BAf8EBAMCBaAwDAYDVR0TAQH/BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwSQYDVR0gBEIwQDA0BgsrBgEEAbIxAQICBzAlMCMGCCsGAQUFBwIBFhdodHRwczovL3NlY3RpZ28uY29tL0NQUzAIBgZngQwBAgEwgYQGCCsGAQUFBwEBBHgwdjBPBggrBgEFBQcwAoZDaHR0cDovL2NydC5zZWN0aWdvLmNvbS9TZWN0aWdvUlNBRG9tYWluVmFsaWRhdGlvblNlY3VyZVNlcnZlckNBLmNydDAjBggrBgEFBQcwAYYXaHR0cDovL29jc3Auc2VjdGlnby5jb20wIwYDVR0RBBwwGoIMKi5hcGFjaGUub3JnggphcGFjaGUub3JnMIIBfQYKKwYBBAHWeQIEAgSCAW0EggFpAWcAdwC72d+8H4pxtZOUI5eqkntHOFeVCqtS6BqQlmQ2jh7RhQAAAWuvQIWkAAAEAwBIMEYCIQCitZL3CSKKG5roV4KZhA7D/nDIpnehh3ewg/kUekofkwIhALTO4DcZ297TxvHvJCyvI9KLuFAVZqPwKBJJpREKRWmQAHUARJRlLrDuzq/EQAfYqP4owNrmgr7YyzG1P9MzlrW2gagAAAFrr0CFzgAABAMARjBEAiA2YAeKi+G8qGoeDL8Zy63z2sglcYthlhiACASoFlI5EQIgFWoG+X3ZoD+V+Yt1nSj/DEoplgCea7yumRzGyEJqE/8AdQBvU3asMfAxGdiZAKRRFf93FRwR2QLBACkGjbIImjfZEwAAAWuvQIYVAAAEAwBGMEQCICsBcD3xmBKyEmPFCsH3rnXjrpaRr+CbPhUSrvgViIuGAiAmaGGhyn97cREmFO0sCK2Kcejh9pxreGNC0wxm7T/ZtzANBgkqhkiG9w0BAQsFAAOCAQEAHBUIUmW7N3FMHGJ7UTEdvcWSHv1IpyeIa2FC6iUV1+GDmbyXAwFB2sXTWcqkxg64U0uvlE+Iu1jcypmEPaPUK7QPDko6kGH4Iuq7L/kA2dc9jngs8Ks0zbUx489lCw3WllkVEsa6NRWZLrNusGh7NnYBDTaaT8vmGU1VbMoEbUAc1lTeZ2zVYUkhS0SxTDK0L2pxmOowjUVp9AeMm/pR9Zt1fyKhO4gOAinR0Z33Cu2hRgH4eho2yCUEKGuNDYOqqQgOlta0b+t88lOps24Soq1A+W6dVVOwjf1g/gHcMZ6eYIFFXpFH6WLd8jsUrdP6CeJDRhUBeSQQADUcKc+lLA=="},{"base64":"MIIGEzCCA/ugAwIBAgIQfVtRJrR2uhHbdBYLvFMNpzANBgkqhkiG9w0BAQwFADCBiDELMAkGA1UEBhMCVVMxEzARBgNVBAgTCk5ldyBKZXJzZXkxFDASBgNVBAcTC0plcnNleSBDaXR5MR4wHAYDVQQKExVUaGUgVVNFUlRSVVNUIE5ldHdvcmsxLjAsBgNVBAMTJVVTRVJUcnVzdCBSU0EgQ2VydGlmaWNhdGlvbiBBdXRob3JpdHkwHhcNMTgxMTAyMDAwMDAwWhcNMzAxMjMxMjM1OTU5WjCBjzELMAkGA1UEBhMCR0IxGzAZBgNVBAgTEkdyZWF0ZXIgTWFuY2hlc3RlcjEQMA4GA1UEBxMHU2FsZm9yZDEYMBYGA1UEChMPU2VjdGlnbyBMaW1pdGVkMTcwNQYDVQQDEy5TZWN0aWdvIFJTQSBEb21haW4gVmFsaWRhdGlvbiBTZWN1cmUgU2VydmVyIENBMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEA1nMz1tc8INAA0hdFuNY+B6I/x0HuMjDJsGz99J/LEpgPLT+NTQEMgg8Xf2Iu6bhIefsWg06t1zIlk7cHv7lQP6lMw0Aq6Tn/2YHKHxYyQdqAJrkjeocgHuP/IJo8lURvh3UGkEC0MpMWCRAIIz7S3YcPb11RFGoKacVPAXJpz9OTTG0EoKMbgn6xmrntxZ7FN3ifmgg0+1YuWMQJDgZkW7w33PGfKGioVrCSo1yfu4iYCBskHaswha6vsC6eep3BwEIc4gLw6uBK0u+QDrTBQBbwb4VCSmT3pDCg/r8uoydajotYuK3DGReEY+1vVv2Dy2A0xHS+5p3b4eTlygxfFQIDAQABo4IBbjCCAWowHwYDVR0jBBgwFoAUU3m/WqorSs9UgOHYm8Cd8rIDZsswHQYDVR0OBBYEFI2MXsRUrYrhd+mb+ZsF4bgBjWHhMA4GA1UdDwEB/wQEAwIBhjASBgNVHRMBAf8ECDAGAQH/AgEAMB0GA1UdJQQWMBQGCCsGAQUFBwMBBggrBgEFBQcDAjAbBgNVHSAEFDASMAYGBFUdIAAwCAYGZ4EMAQIBMFAGA1UdHwRJMEcwRaBDoEGGP2h0dHA6Ly9jcmwudXNlcnRydXN0LmNvbS9VU0VSVHJ1c3RSU0FDZXJ0aWZpY2F0aW9uQXV0aG9yaXR5LmNybDB2BggrBgEFBQcBAQRqMGgwPwYIKwYBBQUHMAKGM2h0dHA6Ly9jcnQudXNlcnRydXN0LmNvbS9VU0VSVHJ1c3RSU0FBZGRUcnVzdENBLmNydDAlBggrBgEFBQcwAYYZaHR0cDovL29jc3AudXNlcnRydXN0LmNvbTANBgkqhkiG9w0BAQwFAAOCAgEAMr9hvQ5Iw0/HukdN+Jx4GQHcEx2Ab/zDcLRSmjEzmldS+zGea6TvVKqJjUAXaPgREHzSyrHxVYbH7rM2kYb2OVG/Rr8PoLq0935JxCo2F57kaDl6r5ROVm+yezu/Coa9zcV3HAO4OLGiH19+24rcRki2aArPsrW04jTkZ6k4Zgle0rj8nSg6F0AnwnJOKf0hPHzPE/uWLMUxRP0T7dWbqWlod3zu4f+k+TY4CFM5ooQ0nBnzvg6s1SQ36yOoeNDT5++SR2RiOSLvxvcRviKFxmZEJCaOEDKNyJOuB56DPi/Z+fVGjmO+wea03KbNIaiGCpXZLoUmGv38sbZXQm2V0TP2ORQGgkE49Y9Y3IBbpNV9lXj9p5v//cWoaasm56ekBYdbqbe4oyALl6lFhd2zi+WJN44pDfwGF/Y4QA5C5BIG+3vzxhFoYt/jmPQT2BVPi7Fp2RBgvGQq6jG35LWjOhSbJuMLe/0CjraZwTiXWTb2qHSihrZe68Zk6s+go/lunrotEbaGmAhYLcmsJWTyXnW0OMGuf1pGg+pRyrbxmRE1a6Vqe8YAsOf4vmSyrcjC8azjUeqkk+B5yOGBQMkKW+ESPMFgKuOXwIlCypTPRpgSabuY0MLTDXJLR27lk8QyKGOHQ+SwMj4K00u/I5sUKUErmgQfky3xxzlIPK1aEn8="}],"version":"0303","random":"8537b3517230045a262f23a438a835dc01ecb370a316445b03345a7eacdebeb7","selected_cipher_suite":"c030","compression_method":"00","session_ticket":""}},"reassembly_properties":{"reassembled":true},"ip":{"version":4,"ttl":128,"id":"ab44"},"src_ip":"95.216.24.32","dst_ip":"192.168.113.237","protocol":6,"src_port":443,"dst_port":50428,"event_start":1565200423.090512} +{"dns":{"base64":"f28BAAABAAAAAAAABWRyaXZlBmdvb2dsZQNjb20AAAEAAQ=="},"ip":{"version":4,"ttl":64,"id":"00e8"},"src_ip":"192.168.113.237","dst_ip":"192.168.113.2","protocol":17,"src_port":50142,"dst_port":53,"event_start":1565200423.942464} +{"dns":{"base64":"hSkBAAABAAAAAAAABWRyaXZlBmdvb2dsZQNjb20AABwAAQ=="},"ip":{"version":4,"ttl":64,"id":"00e9"},"src_ip":"192.168.113.237","dst_ip":"192.168.113.2","protocol":17,"src_port":51736,"dst_port":53,"event_start":1565200423.942653} +{"dns":{"base64":"f2+BgAABAAEADQAOBWRyaXZlBmdvb2dsZQNjb20AAAEAAcAMAAEAAQAAAAUABKzZDe7AGQACAAEAAAAFABQBYgxndGxkLXNlcnZlcnMDbmV0AMAZAAIAAQAAAAUABAFnwEDAGQACAAEAAAAFAAQBaMBAwBkAAgABAAAABQAEAWHAQMAZAAIAAQAAAAUABAFkwEDAGQACAAEAAAAFAAQBZsBAwBkAAgABAAAABQAEAWzAQMAZAAIAAQAAAAUABAFjwEDAGQACAAEAAAAFAAQBacBAwBkAAgABAAAABQAEAWvAQMAZAAIAAQAAAAUABAFlwEDAGQACAAEAAAAFAAQBasBAwBkAAgABAAAABQAEAW3AQMB+AAEAAQAAAAUABMAFBh7APgABAAEAAAAFAATAIQ4ewL4AAQABAAAABQAEwBpcHsCOAAEAAQAAAAUABMAfUB7A7gABAAEAAAAFAATADF4ewJ4AAQABAAAABQAEwCMzHsBeAAEAAQAAAAUABMAqXR7AbgABAAEAAAAFAATANnAewM4AAQABAAAABQAEwCusHsD+AAEAAQAAAAUABMAwTx7A3gABAAEAAAAFAATANLIewK4AAQABAAAABQAEwCmiHsEOAAEAAQAAAAUABMA3Ux7AfgAcAAEAAAAFABAgAQUDqD4AAAAAAAAAAgAw"},"ip":{"version":4,"ttl":128,"id":"aba6"},"src_ip":"192.168.113.2","dst_ip":"192.168.113.237","protocol":17,"src_port":53,"dst_port":50142,"event_start":1565200423.978069} +{"dns":{"base64":"hSmBgAABAAEADQANBWRyaXZlBmdvb2dsZQNjb20AABwAAcAMABwAAQAAAAUAECYH+LBABAgJAAAAAAAAIA7AGQACAAEAAAAFABQBZgxndGxkLXNlcnZlcnMDbmV0AMAZAAIAAQAAAAUABAFpwEzAGQACAAEAAAAFAAQBbcBMwBkAAgABAAAABQAEAWfATMAZAAIAAQAAAAUABAFowEzAGQACAAEAAAAFAAQBYcBMwBkAAgABAAAABQAEAWrATMAZAAIAAQAAAAUABAFkwEzAGQACAAEAAAAFAAQBbMBMwBkAAgABAAAABQAEAWLATMAZAAIAAQAAAAUABAFrwEzAGQACAAEAAAAFAAQBY8BMwBkAAgABAAAABQAEAWXATMCqAAEAAQAAAAUABMAFBh7A6gABAAEAAAAFAATAIQ4ewQoAAQABAAAABQAEwBpcHsDKAAEAAQAAAAUABMAfUB7BGgABAAEAAAAFAATADF4ewEoAAQABAAAABQAEwCMzHsCKAAEAAQAAAAUABMAqXR7AmgABAAEAAAAFAATANnAewGoAAQABAAAABQAEwCusHsC6AAEAAQAAAAUABMAwTx7A+gABAAEAAAAFAATANLIewNoAAQABAAAABQAEwCmiHsB6AAEAAQAAAAUABMA3Ux4="},"ip":{"version":4,"ttl":128,"id":"aba7"},"src_ip":"192.168.113.2","dst_ip":"192.168.113.237","protocol":17,"src_port":53,"dst_port":51736,"event_start":1565200423.978091} +{"fingerprints":{"tcp":"tcp/(40)()(40)(faf0)((020405b4)(04)(08)(01)(030307))"},"tcp":{"seq":4038781416,"timestamp":{"ts_val":231533530}},"ip":{"version":4,"ttl":64,"id":"c3b1"},"src_ip":"192.168.113.237","dst_ip":"172.217.13.238","protocol":6,"src_port":48740,"dst_port":443,"event_start":1565200423.978696} +{"fingerprints":{"tcp_server":"tcp_server/(40)()(80)(faf0)((020405b4))"},"tcp_server":{"seq":1226687890},"ip":{"version":4,"ttl":128,"id":"aba8"},"src_ip":"172.217.13.238","dst_ip":"192.168.113.237","protocol":6,"src_port":443,"dst_port":48740,"event_start":1565200424.018638} +{"fingerprints":{"tls":"tls/(0303)(130213031301c02cc030009fcca9cca8ccaac02bc02f009ec024c028006bc023c0270067c00ac0140039c009c0130033009d009c003d003c0035002f00ff)((0000)(000b000403000102)(000a000c000a001d0017001e00190018)(0023)(0016)(0017)(000d0030002e040305030603080708080809080a080b080408050806040105010601030302030301020103020202040205020602)(002b0009080304030303020301)(002d00020101)(0033))"},"tls":{"client":{"version":"0303","random":"edfae165671ab170ec319be20998139fa4000cd73c144facc8a73bd325ec3517","session_id":"59f72a9bc9bd0824e924314bc6550c7f847f39f661f4c1d3ced4b7ee2461fe6f","cipher_suites":"130213031301c02cc030009fcca9cca8ccaac02bc02f009ec024c028006bc023c0270067c00ac0140039c009c0130033009d009c003d003c0035002f00ff","compression_methods":"00","server_name":"drive.google.com","session_ticket":"","features":"[\"0303\",\"130213031301c02cc030009fcca9cca8ccaac02bc02f009ec024c028006bc023c0270067c00ac0140039c009c0130033009d009c003d003c0035002f00ff\",[[\"0000\",\"001300001064726976652e676f6f676c652e636f6d\"],[\"000b\",\"03000102\"],[\"000a\",\"000a001d0017001e00190018\"],[\"0023\",\"\"],[\"0016\",\"\"],[\"0017\",\"\"],[\"000d\",\"002e040305030603080708080809080a080b080408050806040105010601030302030301020103020202040205020602\"],[\"002b\",\"080304030303020301\"],[\"002d\",\"0101\"],[\"0033\",\"0024001d0020a8bfde82da7962d3127f3c909d0cda59d5464c2fd380ceb81567ad9ba2eb8d39\"]]]"}},"ip":{"version":4,"ttl":64,"id":"c3b3"},"src_ip":"192.168.113.237","dst_ip":"172.217.13.238","protocol":6,"src_port":48740,"dst_port":443,"event_start":1565200424.019036} +{"fingerprints":{"tls_server":"tls_server/(0303)(1302)((0033)(002b00020304))"},"tls":{"server":{"version":"0303","random":"f000ea240f8821a6645af5c9ad11212f0270533403119628f004cc3395313d22","selected_cipher_suite":"1302","compression_method":"00"}},"ip":{"version":4,"ttl":128,"id":"abaa"},"src_ip":"172.217.13.238","dst_ip":"192.168.113.237","protocol":6,"src_port":443,"dst_port":48740,"event_start":1565200424.075206} +{"fingerprints":{"tcp":"tcp/(40)()(40)(faf0)((020405b4)(04)(08)(01)(030307))"},"tcp":{"seq":2389611935,"timestamp":{"ts_val":1677090589}},"ip":{"version":4,"ttl":64,"id":"bf13"},"src_ip":"192.168.113.237","dst_ip":"172.217.164.141","protocol":6,"src_port":57092,"dst_port":443,"event_start":1565200424.183956} +{"fingerprints":{"tcp_server":"tcp_server/(40)()(80)(faf0)((020405b4))"},"tcp_server":{"seq":1273390716},"ip":{"version":4,"ttl":128,"id":"abb2"},"src_ip":"172.217.164.141","dst_ip":"192.168.113.237","protocol":6,"src_port":443,"dst_port":57092,"event_start":1565200424.222884} +{"fingerprints":{"tls":"tls/(0303)(130213031301c02cc030009fcca9cca8ccaac02bc02f009ec024c028006bc023c0270067c00ac0140039c009c0130033009d009c003d003c0035002f00ff)((0000)(000b000403000102)(000a000c000a001d0017001e00190018)(0023)(0016)(0017)(000d0030002e040305030603080708080809080a080b080408050806040105010601030302030301020103020202040205020602)(002b0009080304030303020301)(002d00020101)(0033))"},"tls":{"client":{"version":"0303","random":"c477c1ed1df39e9d6dc559bdf101fc172d88b31f89d4a4b3121c2f692443ae68","session_id":"1bd207898d672ef9d42e3f723b11c68e540787b4b223467db3592485b4e79d02","cipher_suites":"130213031301c02cc030009fcca9cca8ccaac02bc02f009ec024c028006bc023c0270067c00ac0140039c009c0130033009d009c003d003c0035002f00ff","compression_methods":"00","server_name":"accounts.google.com","session_ticket":"","features":"[\"0303\",\"130213031301c02cc030009fcca9cca8ccaac02bc02f009ec024c028006bc023c0270067c00ac0140039c009c0130033009d009c003d003c0035002f00ff\",[[\"0000\",\"00160000136163636f756e74732e676f6f676c652e636f6d\"],[\"000b\",\"03000102\"],[\"000a\",\"000a001d0017001e00190018\"],[\"0023\",\"\"],[\"0016\",\"\"],[\"0017\",\"\"],[\"000d\",\"002e040305030603080708080809080a080b080408050806040105010601030302030301020103020202040205020602\"],[\"002b\",\"080304030303020301\"],[\"002d\",\"0101\"],[\"0033\",\"0024001d00207238a2fdd5f44b414659ce951f80bdd6e0207483ccff8b3225592cb7e6bd406f\"]]]"}},"ip":{"version":4,"ttl":64,"id":"bf15"},"src_ip":"192.168.113.237","dst_ip":"172.217.164.141","protocol":6,"src_port":57092,"dst_port":443,"event_start":1565200424.223156} +{"fingerprints":{"tls_server":"tls_server/(0303)(1302)((0033)(002b00020304))"},"tls":{"server":{"version":"0303","random":"53acd13738ea9ffe330836680d1511069127822c9092b8bbc5e930b36ccc4d3c","selected_cipher_suite":"1302","compression_method":"00"}},"ip":{"version":4,"ttl":128,"id":"abb4"},"src_ip":"172.217.164.141","dst_ip":"192.168.113.237","protocol":6,"src_port":443,"dst_port":57092,"event_start":1565200424.273936} +{"dns":{"base64":"VBUBAAABAAAAAAAAC3NvdXJjZWZvcmdlA25ldAAAAQAB"},"ip":{"version":4,"ttl":64,"id":"0131"},"src_ip":"192.168.113.237","dst_ip":"192.168.113.2","protocol":17,"src_port":48267,"dst_port":53,"event_start":1565200424.554433} +{"dns":{"base64":"mNwBAAABAAAAAAAAC3NvdXJjZWZvcmdlA25ldAAAHAAB"},"ip":{"version":4,"ttl":64,"id":"0132"},"src_ip":"192.168.113.237","dst_ip":"192.168.113.2","protocol":17,"src_port":36467,"dst_port":53,"event_start":1565200424.554614} +{"dns":{"base64":"VBWBgAABAAEADQAOC3NvdXJjZWZvcmdlA25ldAAAAQABwAwAAQABAAAABQAE2GkmDcAYAAIAAQAAAAUAEQFhDGd0bGQtc2VydmVyc8AYwBgAAgABAAAABQAEAWrAP8AYAAIAAQAAAAUABAFiwD/AGAACAAEAAAAFAAQBZ8A/wBgAAgABAAAABQAEAWPAP8AYAAIAAQAAAAUABAFpwD/AGAACAAEAAAAFAAQBZsA/wBgAAgABAAAABQAEAWTAP8AYAAIAAQAAAAUABAFrwD/AGAACAAEAAAAFAAQBbMA/wBgAAgABAAAABQAEAW3AP8AYAAIAAQAAAAUABAFowD/AGAACAAEAAAAFAAQBZcA/wD0AAQABAAAABQAEwAUGHsBqAAEAAQAAAAUABMAhDh7AigABAAEAAAAFAATAGlwewLoAAQABAAAABQAEwB9QHsEKAAEAAQAAAAUABMAMXh7AqgABAAEAAAAFAATAIzMewHoAAQABAAAABQAEwCpdHsD6AAEAAQAAAAUABMA2cB7AmgABAAEAAAAFAATAK6wewFoAAQABAAAABQAEwDBPHsDKAAEAAQAAAAUABMA0sh7A2gABAAEAAAAFAATAKaIewOoAAQABAAAABQAEwDdTHsA9ABwAAQAAAAUAECABBQOoPgAAAAAAAAACADA="},"ip":{"version":4,"ttl":128,"id":"abed"},"src_ip":"192.168.113.2","dst_ip":"192.168.113.237","protocol":17,"src_port":53,"dst_port":48267,"event_start":1565200424.589642} +{"dns":{"base64":"mNyBgAABAAAAAQAAC3NvdXJjZWZvcmdlA25ldAAAHAABwAwABgABAAAABQBEA25zMAtkbnNtYWRlZWFzeQNjb20ACmhvc3RtYXN0ZXINc2xhc2hkb3RtZWRpYcA9eDCKtAAAOEAAAAJYAAk6gAAAASw="},"ip":{"version":4,"ttl":128,"id":"abee"},"src_ip":"192.168.113.2","dst_ip":"192.168.113.237","protocol":17,"src_port":53,"dst_port":36467,"event_start":1565200424.589661} +{"fingerprints":{"tcp":"tcp/(40)()(40)(faf0)((020405b4)(04)(08)(01)(030307))"},"tcp":{"seq":3663588689,"timestamp":{"ts_val":937917985}},"ip":{"version":4,"ttl":64,"id":"c7a3"},"src_ip":"192.168.113.237","dst_ip":"216.105.38.13","protocol":6,"src_port":38020,"dst_port":443,"event_start":1565200424.590092} +{"fingerprints":{"tcp_server":"tcp_server/(40)()(80)(faf0)((020405b4))"},"tcp_server":{"seq":185670585},"ip":{"version":4,"ttl":128,"id":"abef"},"src_ip":"216.105.38.13","dst_ip":"192.168.113.237","protocol":6,"src_port":443,"dst_port":38020,"event_start":1565200424.692303} +{"fingerprints":{"tls":"tls/(0303)(130213031301c02cc030009fcca9cca8ccaac02bc02f009ec024c028006bc023c0270067c00ac0140039c009c0130033009d009c003d003c0035002f00ff)((0000)(000b000403000102)(000a000c000a001d0017001e00190018)(0023)(0016)(0017)(000d0030002e040305030603080708080809080a080b080408050806040105010601030302030301020103020202040205020602)(002b0009080304030303020301)(002d00020101)(0033))"},"tls":{"client":{"version":"0303","random":"8bf0e799293cc6a01799675ed037bf65e1344b7279ff951303fb1ad7c753d4c7","session_id":"aecdcc063609e5a20fc018fc4dd4a29448f419b065a763c9c92cbad94cb3426d","cipher_suites":"130213031301c02cc030009fcca9cca8ccaac02bc02f009ec024c028006bc023c0270067c00ac0140039c009c0130033009d009c003d003c0035002f00ff","compression_methods":"00","server_name":"sourceforge.net","session_ticket":"","features":"[\"0303\",\"130213031301c02cc030009fcca9cca8ccaac02bc02f009ec024c028006bc023c0270067c00ac0140039c009c0130033009d009c003d003c0035002f00ff\",[[\"0000\",\"001200000f736f75726365666f7267652e6e6574\"],[\"000b\",\"03000102\"],[\"000a\",\"000a001d0017001e00190018\"],[\"0023\",\"\"],[\"0016\",\"\"],[\"0017\",\"\"],[\"000d\",\"002e040305030603080708080809080a080b080408050806040105010601030302030301020103020202040205020602\"],[\"002b\",\"080304030303020301\"],[\"002d\",\"0101\"],[\"0033\",\"0024001d002035c8d6bc5fb8131789a03c37193407efe3ac28878ff68254c63827dce318423d\"]]]"}},"ip":{"version":4,"ttl":64,"id":"c7a5"},"src_ip":"192.168.113.237","dst_ip":"216.105.38.13","protocol":6,"src_port":38020,"dst_port":443,"event_start":1565200424.693022} +{"fingerprints":{"tls_server":"tls_server/(0303)(c02c)((ff01)(0000)(000b000403000102)(0017))"},"tls":{"server":{"certs":[{"base64":"MIIEoDCCA4igAwIBAgISBKbL6QrgO3xDTJZOO3tXGmUvMA0GCSqGSIb3DQEBCwUAMEoxCzAJBgNVBAYTAlVTMRYwFAYDVQQKEw1MZXQncyBFbmNyeXB0MSMwIQYDVQQDExpMZXQncyBFbmNyeXB0IEF1dGhvcml0eSBYMzAeFw0xOTA3MDEwNDI1MDJaFw0xOTA5MjkwNDI1MDJaMBoxGDAWBgNVBAMTD3NvdXJjZWZvcmdlLm5ldDBZMBMGByqGSM49AgEGCCqGSM49AwEHA0IABDjTvn1kq6tYg6aY+N9LbwE7Z1LrGaiic+r55oOrh3/d30LYpUqE33eayUf+8vPXkC1cC4cpEf/ZgaS5zJPm3cijggJ5MIICdTAOBgNVHQ8BAf8EBAMCB4AwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMAwGA1UdEwEB/wQCMAAwHQYDVR0OBBYEFAtiZwF/pwuFNKll1NpJF0u4GAZXMB8GA1UdIwQYMBaAFKhKamMEfd265tE5t6ZFZe/zqOyhMG8GCCsGAQUFBwEBBGMwYTAuBggrBgEFBQcwAYYiaHR0cDovL29jc3AuaW50LXgzLmxldHNlbmNyeXB0Lm9yZzAvBggrBgEFBQcwAoYjaHR0cDovL2NlcnQuaW50LXgzLmxldHNlbmNyeXB0Lm9yZy8wLQYDVR0RBCYwJIIRKi5zb3VyY2Vmb3JnZS5uZXSCD3NvdXJjZWZvcmdlLm5ldDBMBgNVHSAERTBDMAgGBmeBDAECATA3BgsrBgEEAYLfEwEBATAoMCYGCCsGAQUFBwIBFhpodHRwOi8vY3BzLmxldHNlbmNyeXB0Lm9yZzCCAQYGCisGAQQB1nkCBAIEgfcEgfQA8gB3AG9Tdqwx8DEZ2JkApFEV/3cVHBHZAsEAKQaNsgiaN9kTAAABa6v+XZ0AAAQDAEgwRgIhAMGoaiHGWej89vxqnqxUT6x5ueZ+hCHan11o6QB0zMs1AiEA47PrK3t+kqZ9Nac7uZLzxRGDgJEb0net+TO7cW43f3oAdwApPFGWVMg5ZbqqUPxYB9S3b79Yeily3KTDDPTlRUf0eAAAAWur/l1pAAAEAwBIMEYCIQDzDZUXOPY9hBGjyp1joEoi84Do1u/ECBjTFDWVWRicygIhAK6GvHud6ooxSeP2S79OnqFOePMsgZla2mVFTgMxM9vGMA0GCSqGSIb3DQEBCwUAA4IBAQAM3uIbCfc1nkCLpLR6YyeLMiqQa06toFC6C0WhAYR+72s530m3Ak25kLB/XoXm2C41SkA1UC0vBcwRFdzkK2dbxz3+iHt282zMntVXVY90aKoRTEh/9IdwbdrdaHYJveuF/pEcIxV4UymD/RiT3cIg+B0Ebpju96HiktQC4Si+Z8g79EeoDtH2/au9F9N0H2Z3XROHRlz672Jp6DEJ3xardlzdmHDiyxM0rg1s402rGGYIf/4zhT0ffEfksrr3tM6tSw4OynzjWVAIUCvA6qmUoIg7Wt/NhaFKF9mpyZU/tmjTwiDMVU6v4/bQEgyS3tz3IRfXbYs9S6K/DKSGDMDZ"},{"base64":"MIIEkjCCA3qgAwIBAgIQCgFBQgAAAVOFc2oLheynCDANBgkqhkiG9w0BAQsFADA/MSQwIgYDVQQKExtEaWdpdGFsIFNpZ25hdHVyZSBUcnVzdCBDby4xFzAVBgNVBAMTDkRTVCBSb290IENBIFgzMB4XDTE2MDMxNzE2NDA0NloXDTIxMDMxNzE2NDA0NlowSjELMAkGA1UEBhMCVVMxFjAUBgNVBAoTDUxldCdzIEVuY3J5cHQxIzAhBgNVBAMTGkxldCdzIEVuY3J5cHQgQXV0aG9yaXR5IFgzMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAnNMM8FrlLke3cl03g7NoYzDq1zUmGSXhvb418XCSL7e4S0EFq6meNQhY7LEqxGiHC6PjdeTm86dicbp5gWAf15Gan/PQeGdxyGkOlZHP/uaZ6WA8SMx+yk13EiSdRxta67nsHjcAHJyse6cF6s5K671B5TaYucv9bTyWaN8jKkKQDIZ0Z8h/pZq4UmEUEz9l6YKHy9v6Dlb2honzhT+Xhq+w3Brvaw2VFn3EK6BlspkENnWAa6xK8xuQSXgvopZPKiAlKQTGdMDQMc2PMTiVFrqoM7hD8bEfwzB/onkxEz0tNvjj/PIzark5McWvxI0NHWQWM6r6hCm21AvA2H3DkwIDAQABo4IBfTCCAXkwEgYDVR0TAQH/BAgwBgEB/wIBADAOBgNVHQ8BAf8EBAMCAYYwfwYIKwYBBQUHAQEEczBxMDIGCCsGAQUFBzABhiZodHRwOi8vaXNyZy50cnVzdGlkLm9jc3AuaWRlbnRydXN0LmNvbTA7BggrBgEFBQcwAoYvaHR0cDovL2FwcHMuaWRlbnRydXN0LmNvbS9yb290cy9kc3Ryb290Y2F4My5wN2MwHwYDVR0jBBgwFoAUxKexpHsscfrb4UuQdf/EFWCFiRAwVAYDVR0gBE0wSzAIBgZngQwBAgEwPwYLKwYBBAGC3xMBAQEwMDAuBggrBgEFBQcCARYiaHR0cDovL2Nwcy5yb290LXgxLmxldHNlbmNyeXB0Lm9yZzA8BgNVHR8ENTAzMDGgL6AthitodHRwOi8vY3JsLmlkZW50cnVzdC5jb20vRFNUUk9PVENBWDNDUkwuY3JsMB0GA1UdDgQWBBSoSmpjBH3duubRObemRWXv86jsoTANBgkqhkiG9w0BAQsFAAOCAQEA3TPXEfNjWDjdGBX7CVW+dla5cEilaUcne8IkCJLxWh9KEik3JHRRHGJouM2VcGfl96S8TihRzZvoroed6ti6WqEBmtzw3Wodatg+VyOeph4EYpr/1wXKtx8/wApIvJSwtmVi4MFU5aMqrSDE6ea73Mj2tcMyo5jMd6jmeWUHK8so/joWUoHOUgwuX4Po1QYz+3dszkDqMp4fklxBwXRsW10KXzPMTZ+sOPAveyxindmjkW8lGy+QsRlGPfZ+G6Z6h7mjem0Y+iWlkYcV4PIWL1iwBi8saCbGS5jN2p8M+X+Q7UNKEkROb3N6KOqkqm57TH2H3eDJAkSnh6/DNFu0Qg=="}],"version":"0303","random":"54b9f112604af252ff8accc28019756ca974833fc4d3887a3a916925811015c5","selected_cipher_suite":"c02c","compression_method":"00"}},"reassembly_properties":{"reassembled":true},"ip":{"version":4,"ttl":128,"id":"abf2"},"src_ip":"216.105.38.13","dst_ip":"192.168.113.237","protocol":6,"src_port":443,"dst_port":38020,"event_start":1565200424.792424} +{"dns":{"base64":"CMoBAAABAAAAAAAAB255dGltZXMDY29tAAABAAE="},"ip":{"version":4,"ttl":64,"id":"015e"},"src_ip":"192.168.113.237","dst_ip":"192.168.113.2","protocol":17,"src_port":36113,"dst_port":53,"event_start":1565200425.457399} +{"dns":{"base64":"kacBAAABAAAAAAAAB255dGltZXMDY29tAAAcAAE="},"ip":{"version":4,"ttl":64,"id":"015f"},"src_ip":"192.168.113.237","dst_ip":"192.168.113.2","protocol":17,"src_port":36967,"dst_port":53,"event_start":1565200425.457601} +{"dns":{"base64":"CMqBgAABAAQABAAFB255dGltZXMDY29tAAABAAHADAABAAEAAAAFAASXZUGkwAwAAQABAAAABQAEl2WBpMAMAAEAAQAAAAUABJdlAaTADAABAAEAAAAFAASXZcGkwAwAAgABAAAABQAUA25zMgNwMjQGZHluZWN0A25ldADADAACAAEAAAAFAAYDbnMzwG3ADAACAAEAAAAFAAYDbnM0wG3ADAACAAEAAAAFAAYDbnMxwG3ArQABAAEAAAAFAATQTkYYwGkAAQABAAAABQAEzA36GMCJAAEAAQAAAAUABNBORxjAmwABAAEAAAAFAATMDfsYwIkAHAABAAAABQAQIAEFAACUAAEAAAAAAAAAJA=="},"ip":{"version":4,"ttl":128,"id":"ac76"},"src_ip":"192.168.113.2","dst_ip":"192.168.113.237","protocol":17,"src_port":53,"dst_port":36113,"event_start":1565200425.502400} +{"dns":{"base64":"kaeBgAABAAAAAQAAB255dGltZXMDY29tAAAcAAHADAAGAAEAAAAFADUDbnMxA3AyNAZkeW5lY3QDbmV0AApob3N0bWFzdGVywAx4OmA/AAABLAAAAJYAEnUAAAABLA=="},"ip":{"version":4,"ttl":128,"id":"ac77"},"src_ip":"192.168.113.2","dst_ip":"192.168.113.237","protocol":17,"src_port":53,"dst_port":36967,"event_start":1565200425.503786} +{"fingerprints":{"tcp":"tcp/(40)()(40)(faf0)((020405b4)(04)(08)(01)(030307))"},"tcp":{"seq":3708288575,"timestamp":{"ts_val":1392169900}},"ip":{"version":4,"ttl":64,"id":"d5e9"},"src_ip":"192.168.113.237","dst_ip":"151.101.65.164","protocol":6,"src_port":32810,"dst_port":443,"event_start":1565200425.504157} +{"fingerprints":{"tcp_server":"tcp_server/(40)()(80)(faf0)((020405b4))"},"tcp_server":{"seq":620768866},"ip":{"version":4,"ttl":128,"id":"ac78"},"src_ip":"151.101.65.164","dst_ip":"192.168.113.237","protocol":6,"src_port":443,"dst_port":32810,"event_start":1565200425.541377} +{"fingerprints":{"tls":"tls/(0303)(130213031301c02cc030009fcca9cca8ccaac02bc02f009ec024c028006bc023c0270067c00ac0140039c009c0130033009d009c003d003c0035002f00ff)((0000)(000b000403000102)(000a000c000a001d0017001e00190018)(0023)(0016)(0017)(000d0030002e040305030603080708080809080a080b080408050806040105010601030302030301020103020202040205020602)(002b0009080304030303020301)(002d00020101)(0033))"},"tls":{"client":{"version":"0303","random":"5b1f433b2f091c61ffd51d3d8f008fea863fb6c3726e7f056b019ec768cd1258","session_id":"f0a3043a4f60897b1689f746cf3c6903f9f606a77f5336d4e21633e98848ff14","cipher_suites":"130213031301c02cc030009fcca9cca8ccaac02bc02f009ec024c028006bc023c0270067c00ac0140039c009c0130033009d009c003d003c0035002f00ff","compression_methods":"00","server_name":"nytimes.com","session_ticket":"","features":"[\"0303\",\"130213031301c02cc030009fcca9cca8ccaac02bc02f009ec024c028006bc023c0270067c00ac0140039c009c0130033009d009c003d003c0035002f00ff\",[[\"0000\",\"000e00000b6e7974696d65732e636f6d\"],[\"000b\",\"03000102\"],[\"000a\",\"000a001d0017001e00190018\"],[\"0023\",\"\"],[\"0016\",\"\"],[\"0017\",\"\"],[\"000d\",\"002e040305030603080708080809080a080b080408050806040105010601030302030301020103020202040205020602\"],[\"002b\",\"080304030303020301\"],[\"002d\",\"0101\"],[\"0033\",\"0024001d00207f367d60250655cabb18d34c84cc5b14cd0a95e906135dd76aee622b2b541c17\"]]]"}},"ip":{"version":4,"ttl":64,"id":"d5eb"},"src_ip":"192.168.113.237","dst_ip":"151.101.65.164","protocol":6,"src_port":32810,"dst_port":443,"event_start":1565200425.542021} +{"fingerprints":{"tls_server":"tls_server/(0303)(c02f)((ff01)(0000)(000b000403000102)(0023)(0017))"},"tls":{"server":{"certs":[{"base64":"MIIJhTCCCG2gAwIBAgIRAL/WIxvqWarWy1Zu0IeNYO0wDQYJKoZIhvcNAQELBQAwgZYxCzAJBgNVBAYTAkdCMRswGQYDVQQIExJHcmVhdGVyIE1hbmNoZXN0ZXIxEDAOBgNVBAcTB1NhbGZvcmQxGjAYBgNVBAoTEUNPTU9ETyBDQSBMaW1pdGVkMTwwOgYDVQQDEzNDT01PRE8gUlNBIE9yZ2FuaXphdGlvbiBWYWxpZGF0aW9uIFNlY3VyZSBTZXJ2ZXIgQ0EwHhcNMTgxMTI5MDAwMDAwWhcNMjAwMTE4MjM1OTU5WjCBxDELMAkGA1UEBhMCVVMxDjAMBgNVBBETBTEwMDE4MREwDwYDVQQIEwhOZXcgWW9yazERMA8GA1UEBxMITmV3IFlvcmsxFDASBgNVBAkTCzYyMCA4dGggQXZlMRswGQYDVQQKExJUaGUgTmV3IFlvcmsgVGltZXMxGzAZBgNVBAsTElRoZSBOZXcgWW9yayBUaW1lczEZMBcGA1UECxMQTXVsdGktRG9tYWluIFNTTDEUMBIGA1UEAxMLbnl0aW1lcy5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQCqpbxBef7yIpiL7/xkUbY2RvDRMmjPiv/HMaFM4KjqowJg2JTbqJmFhiJFuzKndVcUIpO37lVQ/Oallob9fPBYcqAf0e6gFgueeucjHXPnID44qnZGFwj0wtnNmy7ItckEEVhT2OaCpROaeUI4jWHj83NkAnxKHDDuH472BfRNeBgmsoXwdywV421vL9A1yhOpkvNrZBrj6u32i3Fz1+GtSnh4j4LvVC8ewXz3k70YH32gnkAaPOW/X0xTGJ63cqMIuVKq6dBCmhzCbPzVBerr581FuXJ2Cyq/7242H/+XOu+h86nbETzG44TuoxOG2fnd+WhuUUKGKo6M5D3zjlw9AgMBAAGjggWcMIIFmDAfBgNVHSMEGDAWgBSa8yvaz61Pti+7KkhIKhK3G0LBJDAdBgNVHQ4EFgQUhiKsBlfdhdBgPQMAt93uFtyZBTQwDgYDVR0PAQH/BAQDAgWgMAwGA1UdEwEB/wQCMAAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMFAGA1UdIARJMEcwOwYMKwYBBAGyMQECAQMEMCswKQYIKwYBBQUHAgEWHWh0dHBzOi8vc2VjdXJlLmNvbW9kby5jb20vQ1BTMAgGBmeBDAECAjBaBgNVHR8EUzBRME+gTaBLhklodHRwOi8vY3JsLmNvbW9kb2NhLmNvbS9DT01PRE9SU0FPcmdhbml6YXRpb25WYWxpZGF0aW9uU2VjdXJlU2VydmVyQ0EuY3JsMIGLBggrBgEFBQcBAQR/MH0wVQYIKwYBBQUHMAKGSWh0dHA6Ly9jcnQuY29tb2RvY2EuY29tL0NPTU9ET1JTQU9yZ2FuaXphdGlvblZhbGlkYXRpb25TZWN1cmVTZXJ2ZXJDQS5jcnQwJAYIKwYBBQUHMAGGGGh0dHA6Ly9vY3NwLmNvbW9kb2NhLmNvbTCCAtQGA1UdEQSCAsswggLHggtueXRpbWVzLmNvbYIVKi5hcGkuZGV2Lm55dGltZXMuY29tghEqLmFwaS5ueXRpbWVzLmNvbYIVKi5hcGkuc3RnLm55dGltZXMuY29tgg4qLmJldGEubnl0Lm5ldIITKi5ibG9ncy5ueXRpbWVzLmNvbYIXKi5ibG9ncy5zdGcubnl0aW1lcy5jb22CGCouYmxvZ3M1LnN0Zy5ueXRpbWVzLmNvbYISKi5kZXYuYmV0YS5ueXQubmV0ghcqLmRldi5ibG9ncy5ueXRpbWVzLmNvbYINKi5kZXYubnl0LmNvbYINKi5kZXYubnl0Lm5ldIIRKi5kZXYubnl0aW1lcy5jb22CDSoubmV3c2Rldi5uZXSCESoubmV3c2Rldi5ueXQubmV0ghUqLm5ld3NkZXYubnl0aW1lcy5jb22CCSoubnl0LmNvbYIJKi5ueXQubmV0ggsqLm55dGNvLmNvbYINKi5ueXRpbWVzLmNvbYIZKi5wYXlmbG93LnNieC5ueXRpbWVzLmNvbYIRKi5zYngubnl0aW1lcy5jb22CEiouc3RnLmJldGEubnl0Lm5ldIIXKi5zdGcuYmxvZ3Mubnl0aW1lcy5jb22CESouc3RnLm5ld3NkZXYubmV0ghUqLnN0Zy5uZXdzZGV2Lm55dC5uZXSCGSouc3RnLm5ld3NkZXYubnl0aW1lcy5jb22CDSouc3RnLm55dC5jb22CDSouc3RnLm55dC5uZXSCESouc3RnLm55dGltZXMuY29tghAqLnRpbWVzdGFsa3MuY29tggtuZXdzZGV2Lm5ldIIHbnl0LmNvbYIHbnl0Lm5ldIIJbnl0Y28uY29tgg50aW1lc3RhbGtzLmNvbYIbd3d3LmJlc3RzZWxsZXJzLm55dGltZXMuY29tghx3d3cuaG9tZWRlbGl2ZXJ5Lm55dGltZXMuY29tMIIBAwYKKwYBBAHWeQIEAgSB9ASB8QDvAHYAu9nfvB+KcbWTlCOXqpJ7RzhXlQqrUugakJZkNo4e0YUAAAFnYAxysQAABAMARzBFAiBsjMEzQ01LJnfg8SWtJi+wQ/2NrVih667zOk9JD/KAxwIhAOvJND92OVh2cozY7QXv0vsfzWszxn9tEVaNc3ezXlQDAHUAXqdz+d9WwOe1Nkh90EngMnqRmgyEoRIShBh1loFxRVgAAAFnYAxzBgAABAMARjBEAiBFD4mv+quaSJL/sb4Jb0zh1w6xe+NBCLxCgr2DLtCZIwIgICd9NO8Mj0obKpS0eB49ZNlj3J7JjKMXCQJGGSlfyIgwDQYJKoZIhvcNAQELBQADggEBAEdGZx2Iilb59sTUqgyo92XdwUxpEXUD25W06NhOezqUJHfw7YxsCuXdSNPAcoMgVuvEo2A4JG9skf62rBFar6sdsBy1OucP/njdSXTN5XuTOwaxO/g4uF8iGGrdR6pYjyeh9DcaIPCPagOxMi0QLd32twYeBzRuZG4sc6JGdmEo9z4Xw5SHkm+x88cLuBiTlcsYgVTFhW+LFwNbILArbP+BCRCTJvOfyevlPpxHGRs2HA/k0LUOvx6MjCj7Xk8i36OxwBkYLr5HDZ2dapAOGKy+tZrOX2z13u4v0J/Ctz93eUTpt9nCObmbPHxOlP3MRRQwnUyMbFh8qrnLPXjl23o="},{"base64":"MIIGDjCCA/agAwIBAgIQNoJef7WkgZN+9tFza7k8pjANBgkqhkiG9w0BAQwFADCBhTELMAkGA1UEBhMCR0IxGzAZBgNVBAgTEkdyZWF0ZXIgTWFuY2hlc3RlcjEQMA4GA1UEBxMHU2FsZm9yZDEaMBgGA1UEChMRQ09NT0RPIENBIExpbWl0ZWQxKzApBgNVBAMTIkNPTU9ETyBSU0EgQ2VydGlmaWNhdGlvbiBBdXRob3JpdHkwHhcNMTQwMjEyMDAwMDAwWhcNMjkwMjExMjM1OTU5WjCBljELMAkGA1UEBhMCR0IxGzAZBgNVBAgTEkdyZWF0ZXIgTWFuY2hlc3RlcjEQMA4GA1UEBxMHU2FsZm9yZDEaMBgGA1UEChMRQ09NT0RPIENBIExpbWl0ZWQxPDA6BgNVBAMTM0NPTU9ETyBSU0EgT3JnYW5pemF0aW9uIFZhbGlkYXRpb24gU2VjdXJlIFNlcnZlciBDQTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALkU2YXyQURX/zBEHtw8RKMXuG4B+KNfwqkhHc5Z9OzziKkJMjyxi2OkPic284/5OGYuB5dBj0um3cNfnnM858ogDU98MgXPwS5IZUqF0B9WMW2O5cYy1Bu8n32W/JjXT/j0WFb440W+kRiC5Iq+r81SN1GHTx6Xweg6rvn/RuRlPz/DR4MvzLhCXi1+91porl1LwKY1IfWGo8hJi5hjYA3JIUjCkjBlRrKGNQRCJX6tp05LEkAAeohoXG+fo6R4ESGuPQsOvkUUI8/rddf2oPG8RWxevKEy7PNYeEIoCzoBdvDFoJ7BaXDej0umed/ydrbjDxN8GDuxUWxqIDnOnmkCAwEAAaOCAWUwggFhMB8GA1UdIwQYMBaAFLuvfgI9+qbxPISOre44mOzZMjLUMB0GA1UdDgQWBBSa8yvaz61Pti+7KkhIKhK3G0LBJDAOBgNVHQ8BAf8EBAMCAYYwEgYDVR0TAQH/BAgwBgEB/wIBADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwGwYDVR0gBBQwEjAGBgRVHSAAMAgGBmeBDAECAjBMBgNVHR8ERTBDMEGgP6A9hjtodHRwOi8vY3JsLmNvbW9kb2NhLmNvbS9DT01PRE9SU0FDZXJ0aWZpY2F0aW9uQXV0aG9yaXR5LmNybDBxBggrBgEFBQcBAQRlMGMwOwYIKwYBBQUHMAKGL2h0dHA6Ly9jcnQuY29tb2RvY2EuY29tL0NPTU9ET1JTQUFkZFRydXN0Q0EuY3J0MCQGCCsGAQUFBzABhhhodHRwOi8vb2NzcC5jb21vZG9jYS5jb20wDQYJKoZIhvcNAQEMBQADggIBAGmKNmiaHjtlC+B8z6arcTuvYaQ/5GQBSRDTHY/i1e1n055bl71CHgf50Ltt9zKVWiIpYvgMnFlWJzagIhIR+kf0UclZeylKpUg1fMWXZuAnJTsVejJ1SpH7pmue4lP6DYwT+yO4CxIsru3bHUeQ1dCTaXaROBU01xjqfrxrWN4qOZADRARKVtho5fV8aX6efVRL0NiGq2dmE1deiSoXrS2uvUAOZu2K/1S0wQHLqeBHuhFhj62uI0gqxiV5iRxBBJXAEepXK9a0l/qx6RVi7Epxd/3zoZza9msAKcUy5/pO6rMqpxiXHFinQjZf7BTP+HsO993MiBWamlzI8SDH0YZyoRebrrr+bKgy0QB2SXP3PyeHPLbJLfqqkJDJCgmfyWkfBxmpv966+AuIgkQWEH8HwIAiX3+8MN66zQd5ZFbY//NPnDC7bh5RS+bNvRfExb/IP46xH4pGtwZDb2Itz1GdRcqK6ROLwMeRvlu2+jdKif7wndoTJiIsBpA+ixOYoBnW3dpKSH89D4mdJHJLDntE/9Q2toN2I1iLFGy4XfdhbTl27d0SPWuHiJeRvsBGAh52HN22r1xP9QDWnE2p4J6ijvyxFnlcIdNFgZoMOWxtKNcl0rcRkND23m9e9Pqki2Z3ci+bkEAsUhJg+f+1cC6JmnkJiYEt7Fx4b4GH8fxV"},{"base64":"MIIFdDCCBFygAwIBAgIQJ2buVutJ846r13Ci/ITeIjANBgkqhkiG9w0BAQwFADBvMQswCQYDVQQGEwJTRTEUMBIGA1UEChMLQWRkVHJ1c3QgQUIxJjAkBgNVBAsTHUFkZFRydXN0IEV4dGVybmFsIFRUUCBOZXR3b3JrMSIwIAYDVQQDExlBZGRUcnVzdCBFeHRlcm5hbCBDQSBSb290MB4XDTAwMDUzMDEwNDgzOFoXDTIwMDUzMDEwNDgzOFowgYUxCzAJBgNVBAYTAkdCMRswGQYDVQQIExJHcmVhdGVyIE1hbmNoZXN0ZXIxEDAOBgNVBAcTB1NhbGZvcmQxGjAYBgNVBAoTEUNPTU9ETyBDQSBMaW1pdGVkMSswKQYDVQQDEyJDT01PRE8gUlNBIENlcnRpZmljYXRpb24gQXV0aG9yaXR5MIICIjANBgkqhkiG9w0BAQEFAAOCAg8AMIICCgKCAgEAkehUktIKVrGsDSTdxc9EZ3SZKzejfSNwAHG8U9/E+ioSj0t/EFa9n3Byt2F/yUsPF6c947AEYe7/EZfH9IY+Cvo+XPmT5jR62RRr55yzhaCCenavcZDX7P0N+pxs+t+wgvQUfvm+xKYvT3+Zf7X8Z0NyvQwA1onrayzT7Y+YHBSrfuXjbvzYqOSSJNpDa2K4Vf3qwbxstovzDo2a5JtsaZn4eEgwRdWt4Q08RWD8MpZRJ7xnw8outmvqRsfHIKCxH2XeSAi6pE6p8oNGN4Tr6MyBSENnTnIqm1y9TBsoilwie7SrmNnu4FGDwwlGTm0+mfqVF9p8M1dBPI1R7Qu2XK8sYxrfV8g/vOldxJuvRZnio1oktLqpVj3Pb6r/SVi+8Kj/9Lit6Tf7urj0Czr56ENCHonYhMsT8dm74YlguIwoVqwUHZwK53Hrzw7dPamWoUi9PPevtQ0iTMARgexWO/bTouJbt7IEIlKVgJNp6I5MZfGRAy1wdALqi2cVKWlSArvX31BqVUa/oKMoYX9w0MOiqiwhqkfOKJwGRXa/ghgntNWutMtQ5mv0TIZxMOmm3xaG4Nj/QN370EKIf6MzOi5cHkERgWPOGHFrK+ymircxXDpqR+DDeVnWIBqv8mqYqnK8V0rSS527EPywTEHl7R09XiidnMy/s1Hap0flhFMCAwEAAaOB9DCB8TAfBgNVHSMEGDAWgBStvZh6NLQm9/rEJlTvA73gJMtUGjAdBgNVHQ4EFgQUu69+Aj36pvE8hI6t7jiY7NkyMtQwDgYDVR0PAQH/BAQDAgGGMA8GA1UdEwEB/wQFMAMBAf8wEQYDVR0gBAowCDAGBgRVHSAAMEQGA1UdHwQ9MDswOaA3oDWGM2h0dHA6Ly9jcmwudXNlcnRydXN0LmNvbS9BZGRUcnVzdEV4dGVybmFsQ0FSb290LmNybDA1BggrBgEFBQcBAQQpMCcwJQYIKwYBBQUHMAGGGWh0dHA6Ly9vY3NwLnVzZXJ0cnVzdC5jb20wDQYJKoZIhvcNAQEMBQADggEBAGS/g/FfmoXQzbihKVcN6Fr30ek+8nYEbvFScLsePP9NDXRqzIGCJdPDoCpdTPW6i6FtxFQJdcfjJw5dhHk3QBN39bSsHNA7qxcS1u80GH4r6XnTq1dFDK8o+tDb5VCViLvfhVdpfZLYUspzgb8c8+a4bmYRBbMelC1/kZWSWfFMzqORcUx8Rww7Cxn2obFshj5cqsQugsv5B5a6SE2Q8pTIqXOi6wZ7I53eovNNVZ96YUWYGGjHXkBrI/V5eu+MtWuLt29G9HvxPUsE2JOAWVrgQSQdso8VYFhH2+9uRv0V9dlfmrPb2LjkQLPNlzmuhbsdjrzch5vRpu/xO28QOG8="}],"version":"0303","random":"a56d41784e30d62a4aa393b8ce5b6c47f05951e3dabcb6544485462983b8a6fb","selected_cipher_suite":"c02f","compression_method":"00","session_ticket":""}},"reassembly_properties":{"reassembled":true},"ip":{"version":4,"ttl":128,"id":"ac7e"},"src_ip":"151.101.65.164","dst_ip":"192.168.113.237","protocol":6,"src_port":443,"dst_port":32810,"event_start":1565200425.583059} +{"dns":{"base64":"dA4BAAABAAAAAAAAA3d3dwdueXRpbWVzA2NvbQAAAQAB"},"ip":{"version":4,"ttl":64,"id":"0186"},"src_ip":"192.168.113.237","dst_ip":"192.168.113.2","protocol":17,"src_port":58499,"dst_port":53,"event_start":1565200425.677119} +{"dns":{"base64":"yMcBAAABAAAAAAAAA3d3dwdueXRpbWVzA2NvbQAAHAAB"},"ip":{"version":4,"ttl":64,"id":"0187"},"src_ip":"192.168.113.237","dst_ip":"192.168.113.2","protocol":17,"src_port":56888,"dst_port":53,"event_start":1565200425.677305} +{"dns":{"base64":"dA6BgAABAAYADQAIA3d3dwdueXRpbWVzA2NvbQAAAQABwAwABQABAAAABQAOA3d3dwNwcmQDbWFwwBDALQAFAAEAAAAFABgHbnl0aW1lcwNtYXAGZmFzdGx5A25ldADARwABAAEAAAAFAASXZQGkwEcAAQABAAAABQAEl2VBpMBHAAEAAQAAAAUABJdlwaTARwABAAEAAAAFAASXZYGkwFoAAgABAAAABQARAWcMZ3RsZC1zZXJ2ZXJzwFrAWgACAAEAAAAFAAQBa8CtwFoAAgABAAAABQAEAWnArcBaAAIAAQAAAAUABAFlwK3AWgACAAEAAAAFAAQBbcCtwFoAAgABAAAABQAEAWzArcBaAAIAAQAAAAUABAFiwK3AWgACAAEAAAAFAAQBZsCtwFoAAgABAAAABQAEAWHArcBaAAIAAQAAAAUABAFowK3AWgACAAEAAAAFAAQBZMCtwFoAAgABAAAABQAEAWPArcBaAAIAAQAAAAUABAFqwK3BOAABAAEAAAAFAATABQYewRgAAQABAAAABQAEwCEOHsFoAAEAAQAAAAUABMAaXB7BWAABAAEAAAAFAATAH1AewOgAAQABAAAABQAEwAxeHsEoAAEAAQAAAAUABMAjMx7AqwABAAEAAAAFAATAKl0ewUgAAQABAAAABQAEwDZwHg=="},"ip":{"version":4,"ttl":128,"id":"ac84"},"src_ip":"192.168.113.2","dst_ip":"192.168.113.237","protocol":17,"src_port":53,"dst_port":58499,"event_start":1565200425.707420} +{"dns":{"base64":"yMeBgAABAAIAAQAAA3d3dwdueXRpbWVzA2NvbQAAHAABwAwABQABAAAABQAOA3d3dwNwcmQDbWFwwBDALQAFAAEAAAAFABgHbnl0aW1lcwNtYXAGZmFzdGx5A25ldADAUwAGAAEAAAAFAC4DbnMxwFMKaG9zdG1hc3RlcgZmYXN0bHnAGHg5xikAAA4QAAACWAAJOoAAAAAe"},"ip":{"version":4,"ttl":128,"id":"ac85"},"src_ip":"192.168.113.2","dst_ip":"192.168.113.237","protocol":17,"src_port":53,"dst_port":56888,"event_start":1565200425.717289} +{"dns":{"base64":"incBAAABAAAAAAAAB255dGltZXMDbWFwBmZhc3RseQNuZXQAABwAAQ=="},"ip":{"version":4,"ttl":64,"id":"018f"},"src_ip":"192.168.113.237","dst_ip":"192.168.113.2","protocol":17,"src_port":55471,"dst_port":53,"event_start":1565200425.717892} +{"dns":{"base64":"ineBgAABAAAAAQAAB255dGltZXMDbWFwBmZhc3RseQNuZXQAABwAAcAYAAYAAQAAAAUAMQNuczHAGApob3N0bWFzdGVyBmZhc3RseQNjb20AeDnGKQAADhAAAAJYAAk6gAAAAB4="},"ip":{"version":4,"ttl":128,"id":"ac86"},"src_ip":"192.168.113.2","dst_ip":"192.168.113.237","protocol":17,"src_port":53,"dst_port":55471,"event_start":1565200425.758737} +{"fingerprints":{"tcp":"tcp/(40)()(40)(faf0)((020405b4)(04)(08)(01)(030307))"},"tcp":{"seq":2835900510,"timestamp":{"ts_val":2718006413}},"ip":{"version":4,"ttl":64,"id":"4448"},"src_ip":"192.168.113.237","dst_ip":"151.101.129.164","protocol":6,"src_port":53270,"dst_port":443,"event_start":1565200425.759152} +{"fingerprints":{"tcp_server":"tcp_server/(40)()(80)(faf0)((020405b4))"},"tcp_server":{"seq":1297282016},"ip":{"version":4,"ttl":128,"id":"ac87"},"src_ip":"151.101.129.164","dst_ip":"192.168.113.237","protocol":6,"src_port":443,"dst_port":53270,"event_start":1565200425.802314} +{"fingerprints":{"tls":"tls/(0303)(130213031301c02cc030009fcca9cca8ccaac02bc02f009ec024c028006bc023c0270067c00ac0140039c009c0130033009d009c003d003c0035002f00ff)((0000)(000b000403000102)(000a000c000a001d0017001e00190018)(0023)(0016)(0017)(000d0030002e040305030603080708080809080a080b080408050806040105010601030302030301020103020202040205020602)(002b0009080304030303020301)(002d00020101)(0033))"},"tls":{"client":{"version":"0303","random":"81dc79cdaaf1de6dc9da5740cb7bb7dd01870efdcf32b083d9e19db7244259a7","session_id":"b7080c84eb887b3dd97f5fb943bb8ae76c03283e8730a7d6fb6379715a36722f","cipher_suites":"130213031301c02cc030009fcca9cca8ccaac02bc02f009ec024c028006bc023c0270067c00ac0140039c009c0130033009d009c003d003c0035002f00ff","compression_methods":"00","server_name":"www.nytimes.com","session_ticket":"","features":"[\"0303\",\"130213031301c02cc030009fcca9cca8ccaac02bc02f009ec024c028006bc023c0270067c00ac0140039c009c0130033009d009c003d003c0035002f00ff\",[[\"0000\",\"001200000f7777772e6e7974696d65732e636f6d\"],[\"000b\",\"03000102\"],[\"000a\",\"000a001d0017001e00190018\"],[\"0023\",\"\"],[\"0016\",\"\"],[\"0017\",\"\"],[\"000d\",\"002e040305030603080708080809080a080b080408050806040105010601030302030301020103020202040205020602\"],[\"002b\",\"080304030303020301\"],[\"002d\",\"0101\"],[\"0033\",\"0024001d0020c9385781db5b38086f3afa475726b0d6bb82273789049e413d157b01cd0f7d21\"]]]"}},"ip":{"version":4,"ttl":64,"id":"444a"},"src_ip":"192.168.113.237","dst_ip":"151.101.129.164","protocol":6,"src_port":53270,"dst_port":443,"event_start":1565200425.802611} +{"fingerprints":{"tls_server":"tls_server/(0303)(c02f)((ff01)(0000)(000b000403000102)(0023)(0017))"},"tls":{"server":{"certs":[{"base64":"MIIJhTCCCG2gAwIBAgIRAL/WIxvqWarWy1Zu0IeNYO0wDQYJKoZIhvcNAQELBQAwgZYxCzAJBgNVBAYTAkdCMRswGQYDVQQIExJHcmVhdGVyIE1hbmNoZXN0ZXIxEDAOBgNVBAcTB1NhbGZvcmQxGjAYBgNVBAoTEUNPTU9ETyBDQSBMaW1pdGVkMTwwOgYDVQQDEzNDT01PRE8gUlNBIE9yZ2FuaXphdGlvbiBWYWxpZGF0aW9uIFNlY3VyZSBTZXJ2ZXIgQ0EwHhcNMTgxMTI5MDAwMDAwWhcNMjAwMTE4MjM1OTU5WjCBxDELMAkGA1UEBhMCVVMxDjAMBgNVBBETBTEwMDE4MREwDwYDVQQIEwhOZXcgWW9yazERMA8GA1UEBxMITmV3IFlvcmsxFDASBgNVBAkTCzYyMCA4dGggQXZlMRswGQYDVQQKExJUaGUgTmV3IFlvcmsgVGltZXMxGzAZBgNVBAsTElRoZSBOZXcgWW9yayBUaW1lczEZMBcGA1UECxMQTXVsdGktRG9tYWluIFNTTDEUMBIGA1UEAxMLbnl0aW1lcy5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQCqpbxBef7yIpiL7/xkUbY2RvDRMmjPiv/HMaFM4KjqowJg2JTbqJmFhiJFuzKndVcUIpO37lVQ/Oallob9fPBYcqAf0e6gFgueeucjHXPnID44qnZGFwj0wtnNmy7ItckEEVhT2OaCpROaeUI4jWHj83NkAnxKHDDuH472BfRNeBgmsoXwdywV421vL9A1yhOpkvNrZBrj6u32i3Fz1+GtSnh4j4LvVC8ewXz3k70YH32gnkAaPOW/X0xTGJ63cqMIuVKq6dBCmhzCbPzVBerr581FuXJ2Cyq/7242H/+XOu+h86nbETzG44TuoxOG2fnd+WhuUUKGKo6M5D3zjlw9AgMBAAGjggWcMIIFmDAfBgNVHSMEGDAWgBSa8yvaz61Pti+7KkhIKhK3G0LBJDAdBgNVHQ4EFgQUhiKsBlfdhdBgPQMAt93uFtyZBTQwDgYDVR0PAQH/BAQDAgWgMAwGA1UdEwEB/wQCMAAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMFAGA1UdIARJMEcwOwYMKwYBBAGyMQECAQMEMCswKQYIKwYBBQUHAgEWHWh0dHBzOi8vc2VjdXJlLmNvbW9kby5jb20vQ1BTMAgGBmeBDAECAjBaBgNVHR8EUzBRME+gTaBLhklodHRwOi8vY3JsLmNvbW9kb2NhLmNvbS9DT01PRE9SU0FPcmdhbml6YXRpb25WYWxpZGF0aW9uU2VjdXJlU2VydmVyQ0EuY3JsMIGLBggrBgEFBQcBAQR/MH0wVQYIKwYBBQUHMAKGSWh0dHA6Ly9jcnQuY29tb2RvY2EuY29tL0NPTU9ET1JTQU9yZ2FuaXphdGlvblZhbGlkYXRpb25TZWN1cmVTZXJ2ZXJDQS5jcnQwJAYIKwYBBQUHMAGGGGh0dHA6Ly9vY3NwLmNvbW9kb2NhLmNvbTCCAtQGA1UdEQSCAsswggLHggtueXRpbWVzLmNvbYIVKi5hcGkuZGV2Lm55dGltZXMuY29tghEqLmFwaS5ueXRpbWVzLmNvbYIVKi5hcGkuc3RnLm55dGltZXMuY29tgg4qLmJldGEubnl0Lm5ldIITKi5ibG9ncy5ueXRpbWVzLmNvbYIXKi5ibG9ncy5zdGcubnl0aW1lcy5jb22CGCouYmxvZ3M1LnN0Zy5ueXRpbWVzLmNvbYISKi5kZXYuYmV0YS5ueXQubmV0ghcqLmRldi5ibG9ncy5ueXRpbWVzLmNvbYINKi5kZXYubnl0LmNvbYINKi5kZXYubnl0Lm5ldIIRKi5kZXYubnl0aW1lcy5jb22CDSoubmV3c2Rldi5uZXSCESoubmV3c2Rldi5ueXQubmV0ghUqLm5ld3NkZXYubnl0aW1lcy5jb22CCSoubnl0LmNvbYIJKi5ueXQubmV0ggsqLm55dGNvLmNvbYINKi5ueXRpbWVzLmNvbYIZKi5wYXlmbG93LnNieC5ueXRpbWVzLmNvbYIRKi5zYngubnl0aW1lcy5jb22CEiouc3RnLmJldGEubnl0Lm5ldIIXKi5zdGcuYmxvZ3Mubnl0aW1lcy5jb22CESouc3RnLm5ld3NkZXYubmV0ghUqLnN0Zy5uZXdzZGV2Lm55dC5uZXSCGSouc3RnLm5ld3NkZXYubnl0aW1lcy5jb22CDSouc3RnLm55dC5jb22CDSouc3RnLm55dC5uZXSCESouc3RnLm55dGltZXMuY29tghAqLnRpbWVzdGFsa3MuY29tggtuZXdzZGV2Lm5ldIIHbnl0LmNvbYIHbnl0Lm5ldIIJbnl0Y28uY29tgg50aW1lc3RhbGtzLmNvbYIbd3d3LmJlc3RzZWxsZXJzLm55dGltZXMuY29tghx3d3cuaG9tZWRlbGl2ZXJ5Lm55dGltZXMuY29tMIIBAwYKKwYBBAHWeQIEAgSB9ASB8QDvAHYAu9nfvB+KcbWTlCOXqpJ7RzhXlQqrUugakJZkNo4e0YUAAAFnYAxysQAABAMARzBFAiBsjMEzQ01LJnfg8SWtJi+wQ/2NrVih667zOk9JD/KAxwIhAOvJND92OVh2cozY7QXv0vsfzWszxn9tEVaNc3ezXlQDAHUAXqdz+d9WwOe1Nkh90EngMnqRmgyEoRIShBh1loFxRVgAAAFnYAxzBgAABAMARjBEAiBFD4mv+quaSJL/sb4Jb0zh1w6xe+NBCLxCgr2DLtCZIwIgICd9NO8Mj0obKpS0eB49ZNlj3J7JjKMXCQJGGSlfyIgwDQYJKoZIhvcNAQELBQADggEBAEdGZx2Iilb59sTUqgyo92XdwUxpEXUD25W06NhOezqUJHfw7YxsCuXdSNPAcoMgVuvEo2A4JG9skf62rBFar6sdsBy1OucP/njdSXTN5XuTOwaxO/g4uF8iGGrdR6pYjyeh9DcaIPCPagOxMi0QLd32twYeBzRuZG4sc6JGdmEo9z4Xw5SHkm+x88cLuBiTlcsYgVTFhW+LFwNbILArbP+BCRCTJvOfyevlPpxHGRs2HA/k0LUOvx6MjCj7Xk8i36OxwBkYLr5HDZ2dapAOGKy+tZrOX2z13u4v0J/Ctz93eUTpt9nCObmbPHxOlP3MRRQwnUyMbFh8qrnLPXjl23o="},{"base64":"MIIGDjCCA/agAwIBAgIQNoJef7WkgZN+9tFza7k8pjANBgkqhkiG9w0BAQwFADCBhTELMAkGA1UEBhMCR0IxGzAZBgNVBAgTEkdyZWF0ZXIgTWFuY2hlc3RlcjEQMA4GA1UEBxMHU2FsZm9yZDEaMBgGA1UEChMRQ09NT0RPIENBIExpbWl0ZWQxKzApBgNVBAMTIkNPTU9ETyBSU0EgQ2VydGlmaWNhdGlvbiBBdXRob3JpdHkwHhcNMTQwMjEyMDAwMDAwWhcNMjkwMjExMjM1OTU5WjCBljELMAkGA1UEBhMCR0IxGzAZBgNVBAgTEkdyZWF0ZXIgTWFuY2hlc3RlcjEQMA4GA1UEBxMHU2FsZm9yZDEaMBgGA1UEChMRQ09NT0RPIENBIExpbWl0ZWQxPDA6BgNVBAMTM0NPTU9ETyBSU0EgT3JnYW5pemF0aW9uIFZhbGlkYXRpb24gU2VjdXJlIFNlcnZlciBDQTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALkU2YXyQURX/zBEHtw8RKMXuG4B+KNfwqkhHc5Z9OzziKkJMjyxi2OkPic284/5OGYuB5dBj0um3cNfnnM858ogDU98MgXPwS5IZUqF0B9WMW2O5cYy1Bu8n32W/JjXT/j0WFb440W+kRiC5Iq+r81SN1GHTx6Xweg6rvn/RuRlPz/DR4MvzLhCXi1+91porl1LwKY1IfWGo8hJi5hjYA3JIUjCkjBlRrKGNQRCJX6tp05LEkAAeohoXG+fo6R4ESGuPQsOvkUUI8/rddf2oPG8RWxevKEy7PNYeEIoCzoBdvDFoJ7BaXDej0umed/ydrbjDxN8GDuxUWxqIDnOnmkCAwEAAaOCAWUwggFhMB8GA1UdIwQYMBaAFLuvfgI9+qbxPISOre44mOzZMjLUMB0GA1UdDgQWBBSa8yvaz61Pti+7KkhIKhK3G0LBJDAOBgNVHQ8BAf8EBAMCAYYwEgYDVR0TAQH/BAgwBgEB/wIBADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwGwYDVR0gBBQwEjAGBgRVHSAAMAgGBmeBDAECAjBMBgNVHR8ERTBDMEGgP6A9hjtodHRwOi8vY3JsLmNvbW9kb2NhLmNvbS9DT01PRE9SU0FDZXJ0aWZpY2F0aW9uQXV0aG9yaXR5LmNybDBxBggrBgEFBQcBAQRlMGMwOwYIKwYBBQUHMAKGL2h0dHA6Ly9jcnQuY29tb2RvY2EuY29tL0NPTU9ET1JTQUFkZFRydXN0Q0EuY3J0MCQGCCsGAQUFBzABhhhodHRwOi8vb2NzcC5jb21vZG9jYS5jb20wDQYJKoZIhvcNAQEMBQADggIBAGmKNmiaHjtlC+B8z6arcTuvYaQ/5GQBSRDTHY/i1e1n055bl71CHgf50Ltt9zKVWiIpYvgMnFlWJzagIhIR+kf0UclZeylKpUg1fMWXZuAnJTsVejJ1SpH7pmue4lP6DYwT+yO4CxIsru3bHUeQ1dCTaXaROBU01xjqfrxrWN4qOZADRARKVtho5fV8aX6efVRL0NiGq2dmE1deiSoXrS2uvUAOZu2K/1S0wQHLqeBHuhFhj62uI0gqxiV5iRxBBJXAEepXK9a0l/qx6RVi7Epxd/3zoZza9msAKcUy5/pO6rMqpxiXHFinQjZf7BTP+HsO993MiBWamlzI8SDH0YZyoRebrrr+bKgy0QB2SXP3PyeHPLbJLfqqkJDJCgmfyWkfBxmpv966+AuIgkQWEH8HwIAiX3+8MN66zQd5ZFbY//NPnDC7bh5RS+bNvRfExb/IP46xH4pGtwZDb2Itz1GdRcqK6ROLwMeRvlu2+jdKif7wndoTJiIsBpA+ixOYoBnW3dpKSH89D4mdJHJLDntE/9Q2toN2I1iLFGy4XfdhbTl27d0SPWuHiJeRvsBGAh52HN22r1xP9QDWnE2p4J6ijvyxFnlcIdNFgZoMOWxtKNcl0rcRkND23m9e9Pqki2Z3ci+bkEAsUhJg+f+1cC6JmnkJiYEt7Fx4b4GH8fxV"},{"base64":"MIIFdDCCBFygAwIBAgIQJ2buVutJ846r13Ci/ITeIjANBgkqhkiG9w0BAQwFADBvMQswCQYDVQQGEwJTRTEUMBIGA1UEChMLQWRkVHJ1c3QgQUIxJjAkBgNVBAsTHUFkZFRydXN0IEV4dGVybmFsIFRUUCBOZXR3b3JrMSIwIAYDVQQDExlBZGRUcnVzdCBFeHRlcm5hbCBDQSBSb290MB4XDTAwMDUzMDEwNDgzOFoXDTIwMDUzMDEwNDgzOFowgYUxCzAJBgNVBAYTAkdCMRswGQYDVQQIExJHcmVhdGVyIE1hbmNoZXN0ZXIxEDAOBgNVBAcTB1NhbGZvcmQxGjAYBgNVBAoTEUNPTU9ETyBDQSBMaW1pdGVkMSswKQYDVQQDEyJDT01PRE8gUlNBIENlcnRpZmljYXRpb24gQXV0aG9yaXR5MIICIjANBgkqhkiG9w0BAQEFAAOCAg8AMIICCgKCAgEAkehUktIKVrGsDSTdxc9EZ3SZKzejfSNwAHG8U9/E+ioSj0t/EFa9n3Byt2F/yUsPF6c947AEYe7/EZfH9IY+Cvo+XPmT5jR62RRr55yzhaCCenavcZDX7P0N+pxs+t+wgvQUfvm+xKYvT3+Zf7X8Z0NyvQwA1onrayzT7Y+YHBSrfuXjbvzYqOSSJNpDa2K4Vf3qwbxstovzDo2a5JtsaZn4eEgwRdWt4Q08RWD8MpZRJ7xnw8outmvqRsfHIKCxH2XeSAi6pE6p8oNGN4Tr6MyBSENnTnIqm1y9TBsoilwie7SrmNnu4FGDwwlGTm0+mfqVF9p8M1dBPI1R7Qu2XK8sYxrfV8g/vOldxJuvRZnio1oktLqpVj3Pb6r/SVi+8Kj/9Lit6Tf7urj0Czr56ENCHonYhMsT8dm74YlguIwoVqwUHZwK53Hrzw7dPamWoUi9PPevtQ0iTMARgexWO/bTouJbt7IEIlKVgJNp6I5MZfGRAy1wdALqi2cVKWlSArvX31BqVUa/oKMoYX9w0MOiqiwhqkfOKJwGRXa/ghgntNWutMtQ5mv0TIZxMOmm3xaG4Nj/QN370EKIf6MzOi5cHkERgWPOGHFrK+ymircxXDpqR+DDeVnWIBqv8mqYqnK8V0rSS527EPywTEHl7R09XiidnMy/s1Hap0flhFMCAwEAAaOB9DCB8TAfBgNVHSMEGDAWgBStvZh6NLQm9/rEJlTvA73gJMtUGjAdBgNVHQ4EFgQUu69+Aj36pvE8hI6t7jiY7NkyMtQwDgYDVR0PAQH/BAQDAgGGMA8GA1UdEwEB/wQFMAMBAf8wEQYDVR0gBAowCDAGBgRVHSAAMEQGA1UdHwQ9MDswOaA3oDWGM2h0dHA6Ly9jcmwudXNlcnRydXN0LmNvbS9BZGRUcnVzdEV4dGVybmFsQ0FSb290LmNybDA1BggrBgEFBQcBAQQpMCcwJQYIKwYBBQUHMAGGGWh0dHA6Ly9vY3NwLnVzZXJ0cnVzdC5jb20wDQYJKoZIhvcNAQEMBQADggEBAGS/g/FfmoXQzbihKVcN6Fr30ek+8nYEbvFScLsePP9NDXRqzIGCJdPDoCpdTPW6i6FtxFQJdcfjJw5dhHk3QBN39bSsHNA7qxcS1u80GH4r6XnTq1dFDK8o+tDb5VCViLvfhVdpfZLYUspzgb8c8+a4bmYRBbMelC1/kZWSWfFMzqORcUx8Rww7Cxn2obFshj5cqsQugsv5B5a6SE2Q8pTIqXOi6wZ7I53eovNNVZ96YUWYGGjHXkBrI/V5eu+MtWuLt29G9HvxPUsE2JOAWVrgQSQdso8VYFhH2+9uRv0V9dlfmrPb2LjkQLPNlzmuhbsdjrzch5vRpu/xO28QOG8="}],"version":"0303","random":"47a7e253140c6549036dae139b4de224e42bfd91a8c2150f9dab71ffdcc2daa1","selected_cipher_suite":"c02f","compression_method":"00","session_ticket":""}},"reassembly_properties":{"reassembled":true},"ip":{"version":4,"ttl":128,"id":"ac8d"},"src_ip":"151.101.129.164","dst_ip":"192.168.113.237","protocol":6,"src_port":443,"dst_port":53270,"event_start":1565200425.846286} +{"dns":{"base64":"MUcBAAABAAAAAAAABmV1cm9wYQJldQAAAQAB"},"ip":{"version":4,"ttl":64,"id":"020a"},"src_ip":"192.168.113.237","dst_ip":"192.168.113.2","protocol":17,"src_port":56461,"dst_port":53,"event_start":1565200426.811933} +{"dns":{"base64":"7t0BAAABAAAAAAAABmV1cm9wYQJldQAAHAAB"},"ip":{"version":4,"ttl":64,"id":"020b"},"src_ip":"192.168.113.237","dst_ip":"192.168.113.2","protocol":17,"src_port":33812,"dst_port":53,"event_start":1565200426.812123} +{"dns":{"base64":"MUeBgAABAAIABQAIBmV1cm9wYQJldQAAAQABwAwAAQABAAAABQAEk0MiLcAMAAEAAQAAAAUABJND0i3AEwACAAEAAAAFAAkCdWsDZG5zwBPAEwACAAEAAAAFAAUCbmzASsATAAIAAQAAAAUABAF5wErAEwACAAEAAAAFAAQBeMBKwBMAAgABAAAABQAFAnNpwErAfQABAAEAAAAFAAS5l40BwG0AAQABAAAABQAEwpJqWsBcAAEAAQAAAAUABFvIEGTAjQABAAEAAAAFAATBAt08wEcAAQABAAAABQAEw0LxssB9ABwAAQAAAAUAECoCBWj+AAAAAAAAAAAAZXXAbQAcAAEAAAAFABAgAQZ8EBAAIwAAAAAAAABTwI0AHAABAAAABQAQIAEUcIAAAQAAAAAAAAAAAQ=="},"ip":{"version":4,"ttl":128,"id":"b05d"},"src_ip":"192.168.113.2","dst_ip":"192.168.113.237","protocol":17,"src_port":53,"dst_port":56461,"event_start":1565200426.854686} +{"dns":{"base64":"7t2BgAABAAIABQAIBmV1cm9wYQJldQAAHAABwAwAHAABAAAABQAQKgFwgAAkAQAAAAAABmYARcAMABwAAQAAAAUAECoBcIAAFAEAAAAAAAZmAEXAEwACAAEAAAAFAAkCdWsDZG5zwBPAEwACAAEAAAAFAAQBecBiwBMAAgABAAAABQAEAXjAYsATAAIAAQAAAAUABQJzacBiwBMAAgABAAAABQAFAm5swGLAhAABAAEAAAAFAAS5l40BwHQAAQABAAAABQAEwpJqWsClAAEAAQAAAAUABFvIEGTAlAABAAEAAAAFAATBAt08wF8AAQABAAAABQAEw0LxssCEABwAAQAAAAUAECoCBWj+AAAAAAAAAAAAZXXAdAAcAAEAAAAFABAgAQZ8EBAAIwAAAAAAAABTwJQAHAABAAAABQAQIAEUcIAAAQAAAAAAAAAAAQ=="},"ip":{"version":4,"ttl":128,"id":"b05e"},"src_ip":"192.168.113.2","dst_ip":"192.168.113.237","protocol":17,"src_port":53,"dst_port":33812,"event_start":1565200426.947227} +{"fingerprints":{"tcp":"tcp/(40)()(40)(faf0)((020405b4)(04)(08)(01)(030307))"},"tcp":{"seq":413346416,"timestamp":{"ts_val":4243513275}},"ip":{"version":4,"ttl":64,"id":"074f"},"src_ip":"192.168.113.237","dst_ip":"147.67.34.45","protocol":6,"src_port":34564,"dst_port":443,"event_start":1565200426.947850} +{"fingerprints":{"tcp_server":"tcp_server/(40)()(80)(faf0)((020405b4))"},"tcp_server":{"seq":513519800},"ip":{"version":4,"ttl":128,"id":"b05f"},"src_ip":"147.67.34.45","dst_ip":"192.168.113.237","protocol":6,"src_port":443,"dst_port":34564,"event_start":1565200427.077699} +{"fingerprints":{"tls":"tls/(0303)(130213031301c02cc030009fcca9cca8ccaac02bc02f009ec024c028006bc023c0270067c00ac0140039c009c0130033009d009c003d003c0035002f00ff)((0000)(000b000403000102)(000a000c000a001d0017001e00190018)(0023)(0016)(0017)(000d0030002e040305030603080708080809080a080b080408050806040105010601030302030301020103020202040205020602)(002b0009080304030303020301)(002d00020101)(0033))"},"tls":{"client":{"version":"0303","random":"f90c0aa0066dcbecf32ee2d9f08c64f978f01b4fb2660b527ab4e792ce6c787e","session_id":"2e3b8c4d26c92f0be0bd402d9505141fea753d6987224ae791311c5925832b8f","cipher_suites":"130213031301c02cc030009fcca9cca8ccaac02bc02f009ec024c028006bc023c0270067c00ac0140039c009c0130033009d009c003d003c0035002f00ff","compression_methods":"00","server_name":"europa.eu","session_ticket":"","features":"[\"0303\",\"130213031301c02cc030009fcca9cca8ccaac02bc02f009ec024c028006bc023c0270067c00ac0140039c009c0130033009d009c003d003c0035002f00ff\",[[\"0000\",\"000c0000096575726f70612e6575\"],[\"000b\",\"03000102\"],[\"000a\",\"000a001d0017001e00190018\"],[\"0023\",\"\"],[\"0016\",\"\"],[\"0017\",\"\"],[\"000d\",\"002e040305030603080708080809080a080b080408050806040105010601030302030301020103020202040205020602\"],[\"002b\",\"080304030303020301\"],[\"002d\",\"0101\"],[\"0033\",\"0024001d00203f055f811cd36508aba7d6d457811d36843b764f69fc54319fec964e6fe38e29\"]]]"}},"ip":{"version":4,"ttl":64,"id":"0751"},"src_ip":"192.168.113.237","dst_ip":"147.67.34.45","protocol":6,"src_port":34564,"dst_port":443,"event_start":1565200427.078109} +{"fingerprints":{"tls_server":"tls_server/(0303)(c02f)((ff01)(000b00020100)(0017))"},"tls":{"server":{"certs":[{"base64":"MIIHJTCCBg2gAwIBAgIMd0nv2yasK3XL7I9wMA0GCSqGSIb3DQEBCwUAMGYxCzAJBgNVBAYTAkJFMRkwFwYDVQQKExBHbG9iYWxTaWduIG52LXNhMTwwOgYDVQQDEzNHbG9iYWxTaWduIE9yZ2FuaXphdGlvbiBWYWxpZGF0aW9uIENBIC0gU0hBMjU2IC0gRzIwHhcNMTgwMzI3MTIwMTA0WhcNMjAwNTIwMTAxNTAyWjBlMQswCQYDVQQGEwJCRTERMA8GA1UECBMIQnJ1c3NlbHMxETAPBgNVBAcTCEJydXNzZWxzMRwwGgYDVQQKExNFdXJvcGVhbiBDb21taXNzaW9uMRIwEAYDVQQDEwlldXJvcGEuZXUwggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDQPY1KTxUA4oUUhOen+zKWa5rK+1/5bddmU7v3Zezm1L2ai7q18zm7tnCzK4j2iUbFEzKOdGI3Tzt4+9nFBmM5xPUy2G0qRuZ3ySzcS5QAZJQK6cCwA6sWUYhqvpDcSc1osxPHBKjn7cABk7LXAbHfEONEg+90ZwW5seCgtBG0mV6Tu9OOIGVBbfO4CAPBAzGX2DFsw8mW9VRKz/HAikDlskOMLNWlwtrh+4DYxEic9q3WU9xOVYLzCeC1QoBTPkdE56ACJeAENPdWYcXfORfoCxmCT2TNkbBKaoMsWJvtNcWWzGmva41KdnL1GQAxrItZhAYLQNQ3SR+YPoLVSL0xAgMBAAGjggPSMIIDzjAOBgNVHQ8BAf8EBAMCBaAwgaAGCCsGAQUFBwEBBIGTMIGQME0GCCsGAQUFBzAChkFodHRwOi8vc2VjdXJlLmdsb2JhbHNpZ24uY29tL2NhY2VydC9nc29yZ2FuaXphdGlvbnZhbHNoYTJnMnIxLmNydDA/BggrBgEFBQcwAYYzaHR0cDovL29jc3AyLmdsb2JhbHNpZ24uY29tL2dzb3JnYW5pemF0aW9udmFsc2hhMmcyMFYGA1UdIARPME0wQQYJKwYBBAGgMgEUMDQwMgYIKwYBBQUHAgEWJmh0dHBzOi8vd3d3Lmdsb2JhbHNpZ24uY29tL3JlcG9zaXRvcnkvMAgGBmeBDAECAjAJBgNVHRMEAjAAMEkGA1UdHwRCMEAwPqA8oDqGOGh0dHA6Ly9jcmwuZ2xvYmFsc2lnbi5jb20vZ3MvZ3Nvcmdhbml6YXRpb252YWxzaGEyZzIuY3JsMBQGA1UdEQQNMAuCCWV1cm9wYS5ldTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwHQYDVR0OBBYEFNtSkcbZ0FxkMPm0QBidhAk+OUcVMB8GA1UdIwQYMBaAFJbeYfG9HBYpUxzAzH07gwBA5hp8MIIB9AYKKwYBBAHWeQIEAgSCAeQEggHgAd4AdQBvU3asMfAxGdiZAKRRFf93FRwR2QLBACkGjbIImjfZEwAAAWJnVU1oAAAEAwBGMEQCIEhSJBZ29XcNILkGQDUCBHCnx+/GaiCR7aHYjIr5sJ9LAiAzsjDjo53+gy+E0vhFJjbBh1bxFOFGzUac/I73vcnpHQB1AId1v+dZfPiMQ5lfvfNu/1aNR1Y2/0q1YMG06v9eoIMPAAABYmdVTe8AAAQDAEYwRAIgSxJnW+hIGUyMrpKsIsGdT6j+BGaijGF5NO9xocJm4Z0CIBz0zWJXXkDlMqb6sjvGpAwpB0t4SzgM3DHETAYGYV+kAHYApLkJkLQYWBSHuxOizGdwCjw1mAT5G9+443fNDsgN3BAAAAFiZ1VNzQAABAMARzBFAiA7q/H3L6S7zGut9me6GLicWD3J0Iu1Ni9JZZC0MvZVvgIhALag+3P33Q0hA83sStZAHppu4gXNcZBCsKuMs4qW7KuzAHYAu9nfvB+KcbWTlCOXqpJ7RzhXlQqrUugakJZkNo4e0YUAAAFiZ1VPOwAABAMARzBFAiEAreQTpIcYxnr39P0H47Motp7QLdHqTi2ibt1bjTpk01YCIGP5P8pyfRf1TdFz202jvpSmBpVGqIVr7HmMcvU39M4IMA0GCSqGSIb3DQEBCwUAA4IBAQCmn0XKJPWSgaHnL7uuLJ5Ckox8c14NJP7Oj6WoD1KubzfSPYJh+dELmAXAkPrCLy0GVHGfSqN3DgZQhkx2teVvr0luXLJVjsTf8cLTBkAnMP783p6Zwgwbfdf3hbhPHcUbjvbR5qtEFbyDl2yksbUaPSJnoIuy8v0pyeXEd4YxJaSiSjQ+8Tp8ILcuIrmCZEGS4IKKSRzBkmOT6OX2PdVs9ow0+9RRCFHmXceQNa5qjRXs22QjCTE45mcF2ajbDyg5b9sueL93pWvN3ihJcxa3lCd5FHIG3b3GctksRAusVvMhSI26kMZJBLyvfwvphqQjVoaOYAx4mVejLA7L7fqK"},{"base64":"MIIEaTCCA1GgAwIBAgILBAAAAAABRE7wQkcwDQYJKoZIhvcNAQELBQAwVzELMAkGA1UEBhMCQkUxGTAXBgNVBAoTEEdsb2JhbFNpZ24gbnYtc2ExEDAOBgNVBAsTB1Jvb3QgQ0ExGzAZBgNVBAMTEkdsb2JhbFNpZ24gUm9vdCBDQTAeFw0xNDAyMjAxMDAwMDBaFw0yNDAyMjAxMDAwMDBaMGYxCzAJBgNVBAYTAkJFMRkwFwYDVQQKExBHbG9iYWxTaWduIG52LXNhMTwwOgYDVQQDEzNHbG9iYWxTaWduIE9yZ2FuaXphdGlvbiBWYWxpZGF0aW9uIENBIC0gU0hBMjU2IC0gRzIwggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDHDmw/I5N/zHClnSDDDlM/fsBOwphJykfVI+8DNIV0yKMCLkZcC33JiJ1Pi/D4nGyMVTXbv/Kz6vvjVudKRtkTIso21ZvBqOOWQ5PyDLzm+ebomchjSHh/VzZpGhkdWtHUfcKc1H/hgBKueuqI6lfYygoKOhJJomIZeg0k9zfrtHOSewUjmxK1zusp36QUArkBpdSmnENkiN74fv7j9R7l/tyjqORmMdlMJekYuYlZCa7pnRxtNw9KHjUgKOKv1CGLAcRFrW4rY6uSa2EKTSDtc7p8zv4WtdufgPDWi2zZCHlKT3hl2pK8vjX5s8T5J4BO/5ZS5gIg4Qdz6V0rvbLxAgMBAAGjggElMIIBITAOBgNVHQ8BAf8EBAMCAQYwEgYDVR0TAQH/BAgwBgEB/wIBADAdBgNVHQ4EFgQUlt5h8b0cFilTHMDMfTuDAEDmGnwwRwYDVR0gBEAwPjA8BgRVHSAAMDQwMgYIKwYBBQUHAgEWJmh0dHBzOi8vd3d3Lmdsb2JhbHNpZ24uY29tL3JlcG9zaXRvcnkvMDMGA1UdHwQsMCowKKAmoCSGImh0dHA6Ly9jcmwuZ2xvYmFsc2lnbi5uZXQvcm9vdC5jcmwwPQYIKwYBBQUHAQEEMTAvMC0GCCsGAQUFBzABhiFodHRwOi8vb2NzcC5nbG9iYWxzaWduLmNvbS9yb290cjEwHwYDVR0jBBgwFoAUYHtmGkUNl8qJUC99BM00qP/8/UswDQYJKoZIhvcNAQELBQADggEBAEYq7l69rgFgNzERhnF0tkZJyBAW/i9iIxerH4f4gu3K3w4s32R1juUYcqeMOovJrKV3UPfvnqTgoI8UV6MqX+x+bRDmuo2wCId2Dkyy2VG7EQLyXN0cvfNVlg/UBsD84iOKJHDTu/B5GqdhcIOKrwbFINihY9Bsrk8y1658GEV1BSl330JAZGSGvip2CTFvHST0mdCF/vIhCPnG9vHQWe3WVjwIKANnuvD58ZAWR65n5ryASOlCdjSXVWkkDoPWoC209fN5ikkodBpBocLTJIg1MGCUF7ThBCIxPTsvFwayuJ2GK1pp74P1S8SqtCr4fKGxhZSM9AyHDPSsQPhZSZg="}],"version":"0303","random":"aa069ecafb341eeceb452d8daa09b9cef1c591c9cdea3dc76ab4f6c0a7b3cdad","selected_cipher_suite":"c02f","compression_method":"00"}},"reassembly_properties":{"reassembled":true},"ip":{"version":4,"ttl":128,"id":"b063"},"src_ip":"147.67.34.45","dst_ip":"192.168.113.237","protocol":6,"src_port":443,"dst_port":34564,"event_start":1565200427.209015} +{"dns":{"base64":"T1UBAAABAAAAAAAAB3N1cHBvcnQGZ29vZ2xlA2NvbQAAAQAB"},"ip":{"version":4,"ttl":64,"id":"0294"},"src_ip":"192.168.113.237","dst_ip":"192.168.113.2","protocol":17,"src_port":41110,"dst_port":53,"event_start":1565200427.622713} +{"dns":{"base64":"h64BAAABAAAAAAAAB3N1cHBvcnQGZ29vZ2xlA2NvbQAAHAAB"},"ip":{"version":4,"ttl":64,"id":"0295"},"src_ip":"192.168.113.237","dst_ip":"192.168.113.2","protocol":17,"src_port":60189,"dst_port":53,"event_start":1565200427.622892} +{"dns":{"base64":"h66BgAABAAEADQANB3N1cHBvcnQGZ29vZ2xlA2NvbQAAHAABwAwAHAABAAAABQAQJgf4sEAECBQAAAAAAAAgDsAbAAIAAQAAAAUAFAFsDGd0bGQtc2VydmVycwNuZXQAwBsAAgABAAAABQAEAWjATsAbAAIAAQAAAAUABAFhwE7AGwACAAEAAAAFAAQBZ8BOwBsAAgABAAAABQAEAW3ATsAbAAIAAQAAAAUABAFmwE7AGwACAAEAAAAFAAQBacBOwBsAAgABAAAABQAEAWrATsAbAAIAAQAAAAUABAFiwE7AGwACAAEAAAAFAAQBZcBOwBsAAgABAAAABQAEAWPATsAbAAIAAQAAAAUABAFrwE7AGwACAAEAAAAFAAQBZMBOwHwAAQABAAAABQAEwAUGHsDcAAEAAQAAAAUABMAhDh7A/AABAAEAAAAFAATAGlwewRwAAQABAAAABQAEwB9QHsDsAAEAAQAAAAUABMAMXh7ArAABAAEAAAAFAATAIzMewIwAAQABAAAABQAEwCpdHsBsAAEAAQAAAAUABMA2cB7AvAABAAEAAAAFAATAK6wewMwAAQABAAAABQAEwDBPHsEMAAEAAQAAAAUABMA0sh7ATAABAAEAAAAFAATAKaIewJwAAQABAAAABQAEwDdTHg=="},"ip":{"version":4,"ttl":128,"id":"b076"},"src_ip":"192.168.113.2","dst_ip":"192.168.113.237","protocol":17,"src_port":53,"dst_port":60189,"event_start":1565200427.657997} +{"dns":{"base64":"T1WBgAABAAEADQAOB3N1cHBvcnQGZ29vZ2xlA2NvbQAAAQABwAwAAQABAAAABQAErNmkjsAbAAIAAQAAAAUAFAFtDGd0bGQtc2VydmVycwNuZXQAwBsAAgABAAAABQAEAWXAQsAbAAIAAQAAAAUABAFjwELAGwACAAEAAAAFAAQBZ8BCwBsAAgABAAAABQAEAWjAQsAbAAIAAQAAAAUABAFiwELAGwACAAEAAAAFAAQBZsBCwBsAAgABAAAABQAEAWnAQsAbAAIAAQAAAAUABAFrwELAGwACAAEAAAAFAAQBYcBCwBsAAgABAAAABQAEAWzAQsAbAAIAAQAAAAUABAFqwELAGwACAAEAAAAFAAQBZMBCwOAAAQABAAAABQAEwAUGHsCgAAEAAQAAAAUABMAhDh7AcAABAAEAAAAFAATAGlwewRAAAQABAAAABQAEwB9QHsBgAAEAAQAAAAUABMAMXh7AsAABAAEAAAAFAATAIzMewIAAAQABAAAABQAEwCpdHsCQAAEAAQAAAAUABMA2cB7AwAABAAEAAAAFAATAK6wewQAAAQABAAAABQAEwDBPHsDQAAEAAQAAAAUABMA0sh7A8AABAAEAAAAFAATAKaIewEAAAQABAAAABQAEwDdTHsDgABwAAQAAAAUAECABBQOoPgAAAAAAAAACADA="},"ip":{"version":4,"ttl":128,"id":"b077"},"src_ip":"192.168.113.2","dst_ip":"192.168.113.237","protocol":17,"src_port":53,"dst_port":41110,"event_start":1565200427.658241} +{"fingerprints":{"tcp":"tcp/(40)()(40)(faf0)((020405b4)(04)(08)(01)(030307))"},"tcp":{"seq":1800342815,"timestamp":{"ts_val":1555200525}},"ip":{"version":4,"ttl":64,"id":"20ee"},"src_ip":"192.168.113.237","dst_ip":"172.217.164.142","protocol":6,"src_port":39552,"dst_port":443,"event_start":1565200427.658489} +{"fingerprints":{"tcp_server":"tcp_server/(40)()(80)(faf0)((020405b4))"},"tcp_server":{"seq":2908696000},"ip":{"version":4,"ttl":128,"id":"b078"},"src_ip":"172.217.164.142","dst_ip":"192.168.113.237","protocol":6,"src_port":443,"dst_port":39552,"event_start":1565200427.696804} +{"fingerprints":{"tls":"tls/(0303)(130213031301c02cc030009fcca9cca8ccaac02bc02f009ec024c028006bc023c0270067c00ac0140039c009c0130033009d009c003d003c0035002f00ff)((0000)(000b000403000102)(000a000c000a001d0017001e00190018)(0023)(0016)(0017)(000d0030002e040305030603080708080809080a080b080408050806040105010601030302030301020103020202040205020602)(002b0009080304030303020301)(002d00020101)(0033))"},"tls":{"client":{"version":"0303","random":"fc7bfc84755fa943452917ea69ce86bace30b7c8ee3cd8db18173b280f0d2bd8","session_id":"70ca14ca5034d284a0469e8c7ee9ef4493c9818b588fc3b85e7f09ad86088b29","cipher_suites":"130213031301c02cc030009fcca9cca8ccaac02bc02f009ec024c028006bc023c0270067c00ac0140039c009c0130033009d009c003d003c0035002f00ff","compression_methods":"00","server_name":"support.google.com","session_ticket":"","features":"[\"0303\",\"130213031301c02cc030009fcca9cca8ccaac02bc02f009ec024c028006bc023c0270067c00ac0140039c009c0130033009d009c003d003c0035002f00ff\",[[\"0000\",\"0015000012737570706f72742e676f6f676c652e636f6d\"],[\"000b\",\"03000102\"],[\"000a\",\"000a001d0017001e00190018\"],[\"0023\",\"\"],[\"0016\",\"\"],[\"0017\",\"\"],[\"000d\",\"002e040305030603080708080809080a080b080408050806040105010601030302030301020103020202040205020602\"],[\"002b\",\"080304030303020301\"],[\"002d\",\"0101\"],[\"0033\",\"0024001d00209195fec150bee62ecec6fcc6bfa26c4c71bc01b809081070ac6bcceefdd97773\"]]]"}},"ip":{"version":4,"ttl":64,"id":"20f0"},"src_ip":"192.168.113.237","dst_ip":"172.217.164.142","protocol":6,"src_port":39552,"dst_port":443,"event_start":1565200427.697257} +{"fingerprints":{"tls_server":"tls_server/(0303)(1302)((0033)(002b00020304))"},"tls":{"server":{"version":"0303","random":"3fa0b3287674891f392fd1ba8639629c818f928ef2b3326b43087d61534ae1be","selected_cipher_suite":"1302","compression_method":"00"}},"ip":{"version":4,"ttl":128,"id":"b07a"},"src_ip":"172.217.164.142","dst_ip":"192.168.113.237","protocol":6,"src_port":443,"dst_port":39552,"event_start":1565200427.747470} +{"dns":{"base64":"O9MBAAABAAAAAAAABnJlZGRpdANjb20AAAEAAQ=="},"ip":{"version":4,"ttl":64,"id":"0302"},"src_ip":"192.168.113.237","dst_ip":"192.168.113.2","protocol":17,"src_port":54670,"dst_port":53,"event_start":1565200428.199247} +{"dns":{"base64":"IaMBAAABAAAAAAAABnJlZGRpdANjb20AABwAAQ=="},"ip":{"version":4,"ttl":64,"id":"0303"},"src_ip":"192.168.113.237","dst_ip":"192.168.113.2","protocol":17,"src_port":59242,"dst_port":53,"event_start":1565200428.199423} +{"dns":{"base64":"IaOBgAABAAAAAQAABnJlZGRpdANjb20AABwAAcAMAAYAAQAAAAUARQZucy01NTcJYXdzZG5zLTA1A25ldAARYXdzZG5zLWhvc3RtYXN0ZXIGYW1hem9uwBMAAAABAAAcIAAAA4QAEnUAAAFRgA=="},"ip":{"version":4,"ttl":128,"id":"b1d2"},"src_ip":"192.168.113.2","dst_ip":"192.168.113.237","protocol":17,"src_port":53,"dst_port":59242,"event_start":1565200428.230722} +{"dns":{"base64":"O9OBgAABAAQADQAMBnJlZGRpdANjb20AAAEAAcAMAAEAAQAAAAUABJdlwYzADAABAAEAAAAFAASXZQGMwAwAAQABAAAABQAEl2VBjMAMAAEAAQAAAAUABJdlgYzAEwACAAEAAAAFABQBZAxndGxkLXNlcnZlcnMDbmV0AMATAAIAAQAAAAUABAFowGrAEwACAAEAAAAFAAQBZcBqwBMAAgABAAAABQAEAWzAasATAAIAAQAAAAUABAFjwGrAEwACAAEAAAAFAAQBasBqwBMAAgABAAAABQAEAWvAasATAAIAAQAAAAUABAFpwGrAEwACAAEAAAAFAAQBZsBqwBMAAgABAAAABQAEAW3AasATAAIAAQAAAAUABAFnwGrAEwACAAEAAAAFAAQBYcBqwBMAAgABAAAABQAEAWLAasEoAAEAAQAAAAUABMAFBh7BOAABAAEAAAAFAATAIQ4ewLgAAQABAAAABQAEwBpcHsBoAAEAAQAAAAUABMAfUB7AmAABAAEAAAAFAATADF4ewPgAAQABAAAABQAEwCMzHsEYAAEAAQAAAAUABMAqXR7AiAABAAEAAAAFAATANnAewOgAAQABAAAABQAEwCusHsDIAAEAAQAAAAUABMAwTx7A2AABAAEAAAAFAATANLIewKgAAQABAAAABQAEwCmiHg=="},"ip":{"version":4,"ttl":128,"id":"b1d3"},"src_ip":"192.168.113.2","dst_ip":"192.168.113.237","protocol":17,"src_port":53,"dst_port":54670,"event_start":1565200428.230914} +{"fingerprints":{"tcp":"tcp/(40)()(40)(faf0)((020405b4)(04)(08)(01)(030307))"},"tcp":{"seq":3012744753,"timestamp":{"ts_val":2410227559}},"ip":{"version":4,"ttl":64,"id":"f8b1"},"src_ip":"192.168.113.237","dst_ip":"151.101.193.140","protocol":6,"src_port":47852,"dst_port":443,"event_start":1565200428.231162} +{"fingerprints":{"tcp_server":"tcp_server/(40)()(80)(faf0)((020405b4))"},"tcp_server":{"seq":1546257305},"ip":{"version":4,"ttl":128,"id":"b1d4"},"src_ip":"151.101.193.140","dst_ip":"192.168.113.237","protocol":6,"src_port":443,"dst_port":47852,"event_start":1565200428.274385} +{"fingerprints":{"tls":"tls/(0303)(130213031301c02cc030009fcca9cca8ccaac02bc02f009ec024c028006bc023c0270067c00ac0140039c009c0130033009d009c003d003c0035002f00ff)((0000)(000b000403000102)(000a000c000a001d0017001e00190018)(0023)(0016)(0017)(000d0030002e040305030603080708080809080a080b080408050806040105010601030302030301020103020202040205020602)(002b0009080304030303020301)(002d00020101)(0033))"},"tls":{"client":{"version":"0303","random":"45fb47c329d8ca41c031e85e4da72a90c2ff33d3c572256d5a08f4b6edd89269","session_id":"69c7cff1f2c63f352d736d218ea8ef5150aef09f4cddf60845d860d5d7b6e298","cipher_suites":"130213031301c02cc030009fcca9cca8ccaac02bc02f009ec024c028006bc023c0270067c00ac0140039c009c0130033009d009c003d003c0035002f00ff","compression_methods":"00","server_name":"reddit.com","session_ticket":"","features":"[\"0303\",\"130213031301c02cc030009fcca9cca8ccaac02bc02f009ec024c028006bc023c0270067c00ac0140039c009c0130033009d009c003d003c0035002f00ff\",[[\"0000\",\"000d00000a7265646469742e636f6d\"],[\"000b\",\"03000102\"],[\"000a\",\"000a001d0017001e00190018\"],[\"0023\",\"\"],[\"0016\",\"\"],[\"0017\",\"\"],[\"000d\",\"002e040305030603080708080809080a080b080408050806040105010601030302030301020103020202040205020602\"],[\"002b\",\"080304030303020301\"],[\"002d\",\"0101\"],[\"0033\",\"0024001d0020e69bff27c71bd5c46e0b1a4d53566f7c8284a56059a4e2e14a33760cf672563d\"]]]"}},"ip":{"version":4,"ttl":64,"id":"f8b3"},"src_ip":"192.168.113.237","dst_ip":"151.101.193.140","protocol":6,"src_port":47852,"dst_port":443,"event_start":1565200428.274631} +{"fingerprints":{"tls_server":"tls_server/(0303)(c02f)((ff01)(0000)(000b000403000102)(0023)(0017))"},"tls":{"server":{"certs":[{"base64":"MIIHQzCCBiugAwIBAgIQB1sC352kFlEvZM5wcfyMBzANBgkqhkiG9w0BAQsFADBNMQswCQYDVQQGEwJVUzEVMBMGA1UEChMMRGlnaUNlcnQgSW5jMScwJQYDVQQDEx5EaWdpQ2VydCBTSEEyIFNlY3VyZSBTZXJ2ZXIgQ0EwHhcNMTgwODE3MDAwMDAwWhcNMjAwOTAyMTIwMDAwWjBnMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZyYW5jaXNjbzEUMBIGA1UEChMLUmVkZGl0IEluYy4xFTATBgNVBAMMDCoucmVkZGl0LmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAM/pmlSjpBriKS1FgXKzqItMziu7otc9nmls8zLRaKwDHRpwVfiGWkLckOfvhn79U2zqwDilJ7TKepbjXgpa7mUgs5bX5DqZPXhyfV1hFD66RRQi2wVbvdbJdBGL3VrKZVJRIIpTtc3Q169FIslNKbc9eGq1nwO/REhI5dxDCHAoHwLpp+XfbjkBJGzlgKIBdBHed67KFVUKFvh1RVanVJUNG6IkAXXnPZSigwfA2wBH3QguOc1YxswPB4cOH5sdZeAJQ6j9rSxNqjZthoV43La5nsVYxRtreJ8ooV5ZX/dsL7BBBkWfF/acVSU3f7X7XiFz23vruQyBNQKT2HKXwgcCAwEAAaOCBAMwggP/MB8GA1UdIwQYMBaAFA+AYRyCMWHVLyjnjUY4tCzhxtniMB0GA1UdDgQWBBRx4FDR54BS+yMUZZ1Dp40xqlZpJjCBxAYDVR0RBIG8MIG5ggwqLnJlZGRpdC5jb22CCnJlZGRpdC5jb22CESoucmVkZGl0bWVkaWEuY29tgg9yZWRkaXRtZWRpYS5jb22CCSoucmVkZC5pdIIHcmVkZC5pdIIUd3d3LnJlZGRpdHN0YXRpYy5jb22CE2kucmVkZGl0dXBsb2Fkcy5jb22CGCoudGh1bWJzLnJlZGRpdG1lZGlhLmNvbYIRd3d3LnJlZGRpdGluYy5jb22CDXJlZGRpdGluYy5jb20wDgYDVR0PAQH/BAQDAgWgMB0GA1UdJQQWMBQGCCsGAQUFBwMBBggrBgEFBQcDAjBrBgNVHR8EZDBiMC+gLaArhilodHRwOi8vY3JsMy5kaWdpY2VydC5jb20vc3NjYS1zaGEyLWc2LmNybDAvoC2gK4YpaHR0cDovL2NybDQuZGlnaWNlcnQuY29tL3NzY2Etc2hhMi1nNi5jcmwwTAYDVR0gBEUwQzA3BglghkgBhv1sAQEwKjAoBggrBgEFBQcCARYcaHR0cHM6Ly93d3cuZGlnaWNlcnQuY29tL0NQUzAIBgZngQwBAgIwfAYIKwYBBQUHAQEEcDBuMCQGCCsGAQUFBzABhhhodHRwOi8vb2NzcC5kaWdpY2VydC5jb20wRgYIKwYBBQUHMAKGOmh0dHA6Ly9jYWNlcnRzLmRpZ2ljZXJ0LmNvbS9EaWdpQ2VydFNIQTJTZWN1cmVTZXJ2ZXJDQS5jcnQwDAYDVR0TAQH/BAIwADCCAX4GCisGAQQB1nkCBAIEggFuBIIBagFoAHUApLkJkLQYWBSHuxOizGdwCjw1mAT5G9+443fNDsgN3BAAAAFlRULTsAAABAMARjBEAiBcrugEb8o8AymzIh0fUN/F0i9SHl/xCQnCIMbXoSd+rwIgVwN50xsjJVuBP7cVxR5oSlj2USU3KVkZoAq+PIwMHucAdgCHdb/nWXz4jEOZX73zbv9WjUdWNv9KtWDBtOr/XqCDDwAAAWVFQtSDAAAEAwBHMEUCIGo9XmyFN5b38sdORa5NThm594MGPYK4se987nB8WsvPAiEA8Imvn9QF63D4vIwY8d+aticvw2dbwHdoZFpCj96yRn8AdwC72d+8H4pxtZOUI5eqkntHOFeVCqtS6BqQlmQ2jh7RhQAAAWVFQtSGAAAEAwBIMEYCIQCH+S3U0ac6/F5Bsc5xyHpO+UTpgz8DKiJSCfaObn3u5wIhANl9+8L/zSfwf7KPUhdPWfNnkMUFaFgRY1/HdOej6a4UMA0GCSqGSIb3DQEBCwUAA4IBAQC9OsE5bjOOvx0VowfFacujFxU1kYDikX90BH106XP7YQIExGmjZ9mo5Ai6UgMHUSIYO4sNFcZYYk6N7bd75K0i8U8X2AcoIfiC6VYdrw4e2rNMXW10CzIh1Co/t65QZ9KtuWXWwxQJYJuIcLsQT7MG7+K48ZJNSsB9VuuzqNebxSZTyhEBMsN030/Oy1CiUsq+nekZfibcAHxc5L6JG8sFnW6R4uTuGg1qZsvr95KZi5lpoUOE2UkdOK2TG7ntn7JLY4C4Yv2VGKrnxGiqajcKwkdh0a6xC1EXY9JObNczgauCO56+f8+xcRoZpTAE/JtywwVl++brUeoLLUdCVthx"},{"base64":"MIIElDCCA3ygAwIBAgIQAf2j627KdciIQ4tyS8+8kTANBgkqhkiG9w0BAQsFADBhMQswCQYDVQQGEwJVUzEVMBMGA1UEChMMRGlnaUNlcnQgSW5jMRkwFwYDVQQLExB3d3cuZGlnaWNlcnQuY29tMSAwHgYDVQQDExdEaWdpQ2VydCBHbG9iYWwgUm9vdCBDQTAeFw0xMzAzMDgxMjAwMDBaFw0yMzAzMDgxMjAwMDBaME0xCzAJBgNVBAYTAlVTMRUwEwYDVQQKEwxEaWdpQ2VydCBJbmMxJzAlBgNVBAMTHkRpZ2lDZXJ0IFNIQTIgU2VjdXJlIFNlcnZlciBDQTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANyuWJBNwcQwFZA1W248ghX1LFy949v/cUP6ZCWA1O4Yok3wZtAKc24RmDYXZK83nf36QYSvx6+M/hpzTc8zl5CilodTgyu5pnVILR1WN3vaMTIa16yrBvSqXUu3R0bdKpPDkC55gIDvEwRqFDu1m5K+wgdlTvza/P96rtxcflUxDOg5B6TXvi/TC2rSsd9f/ld0Uzs1gN2ujkSYs58O09rg1/RrKatEp0tYhG2SS4HD2nOLEpdIkARFdRrdNzGXkujNVA075ME/OV4uuPNcfhCOhkEAjUVmR7ChZc6gqikJTvOX6+guqw9ypzAO+sf0/RR3w6RbKFfCs/mC/bdFWJsCAwEAAaOCAVowggFWMBIGA1UdEwEB/wQIMAYBAf8CAQAwDgYDVR0PAQH/BAQDAgGGMDQGCCsGAQUFBwEBBCgwJjAkBggrBgEFBQcwAYYYaHR0cDovL29jc3AuZGlnaWNlcnQuY29tMHsGA1UdHwR0MHIwN6A1oDOGMWh0dHA6Ly9jcmwzLmRpZ2ljZXJ0LmNvbS9EaWdpQ2VydEdsb2JhbFJvb3RDQS5jcmwwN6A1oDOGMWh0dHA6Ly9jcmw0LmRpZ2ljZXJ0LmNvbS9EaWdpQ2VydEdsb2JhbFJvb3RDQS5jcmwwPQYDVR0gBDYwNDAyBgRVHSAAMCowKAYIKwYBBQUHAgEWHGh0dHBzOi8vd3d3LmRpZ2ljZXJ0LmNvbS9DUFMwHQYDVR0OBBYEFA+AYRyCMWHVLyjnjUY4tCzhxtniMB8GA1UdIwQYMBaAFAPeUDVW0Uy7ZvCj4hsbw5eyPdFVMA0GCSqGSIb3DQEBCwUAA4IBAQAjPt9L0jFCpbZ+QlwaRMxp0Wi0XUvgBCFsS+JtzLHgl4+mUwnNqipl5TlPHoOlblyYoiQm5vuh7ZPHLgLGTUq/sELfeNqzqPlt/yGFUzZgTHbO7Djc1lGA8MXW5dRNJ2Srm8c+cftIl7gzbckTB+6WohsYFfZcTEDts8Ls/3HB40f/1LkAtDdC2iDJ6m6K7hQGrn2iWZiIqBtvLfTyyRRfJs8sjX7tN8Cp1Tm5gr8ZDOo0rwAhaPitc+LJMto4JQtV05od8GiG7S5BNO98pVAdvzr508EIDObtHopYJeS4d60tbvVS3bR0j6tJLp07kzQoH3jOlOrHvdPJbRzeXDLz"}],"version":"0303","random":"b48a627faac16e61c70c2f8fc7db52a26616f5f9f26bdd1f07ab93fa38fbc5a0","selected_cipher_suite":"c02f","compression_method":"00","session_ticket":""}},"reassembly_properties":{"reassembled":true},"ip":{"version":4,"ttl":128,"id":"b1d8"},"src_ip":"151.101.193.140","dst_ip":"192.168.113.237","protocol":6,"src_port":443,"dst_port":47852,"event_start":1565200428.313665} +{"dns":{"base64":"qs4BAAABAAAAAAAAA3d3dwZyZWRkaXQDY29tAAABAAE="},"ip":{"version":4,"ttl":64,"id":"031c"},"src_ip":"192.168.113.237","dst_ip":"192.168.113.2","protocol":17,"src_port":34264,"dst_port":53,"event_start":1565200428.403266} +{"dns":{"base64":"sO0BAAABAAAAAAAAA3d3dwZyZWRkaXQDY29tAAAcAAE="},"ip":{"version":4,"ttl":64,"id":"031d"},"src_ip":"192.168.113.237","dst_ip":"192.168.113.2","protocol":17,"src_port":40557,"dst_port":53,"event_start":1565200428.403543} +{"dns":{"base64":"qs6BgAABAAUADQAKA3d3dwZyZWRkaXQDY29tAAABAAHADAAFAAEAAAAFABcGcmVkZGl0A21hcAZmYXN0bHkDbmV0AMAsAAEAAQAAAAUABJdlwYzALAABAAEAAAAFAASXZQGMwCwAAQABAAAABQAEl2VBjMAsAAEAAQAAAAUABJdlgYzAPgACAAEAAAAFABEBZQxndGxkLXNlcnZlcnPAPsA+AAIAAQAAAAUABAFkwJHAPgACAAEAAAAFAAQBbcCRwD4AAgABAAAABQAEAWfAkcA+AAIAAQAAAAUABAFiwJHAPgACAAEAAAAFAAQBacCRwD4AAgABAAAABQAEAWbAkcA+AAIAAQAAAAUABAFswJHAPgACAAEAAAAFAAQBYcCRwD4AAgABAAAABQAEAWrAkcA+AAIAAQAAAAUABAFjwJHAPgACAAEAAAAFAAQBa8CRwD4AAgABAAAABQAEAWjAkcEcAAEAAQAAAAUABMAFBh7A3AABAAEAAAAFAATAIQ4ewTwAAQABAAAABQAEwBpcHsCsAAEAAQAAAAUABMAfUB7AjwABAAEAAAAFAATADF4ewPwAAQABAAAABQAEwCMzHsDMAAEAAQAAAAUABMAqXR7BXAABAAEAAAAFAATANnAewOwAAQABAAAABQAEwCusHsEsAAEAAQAAAAUABMAwTx4="},"ip":{"version":4,"ttl":128,"id":"b1df"},"src_ip":"192.168.113.2","dst_ip":"192.168.113.237","protocol":17,"src_port":53,"dst_port":34264,"event_start":1565200428.439351} +{"dns":{"base64":"sO2BgAABAAEAAQAAA3d3dwZyZWRkaXQDY29tAAAcAAHADAAFAAEAAAAFABcGcmVkZGl0A21hcAZmYXN0bHkDbmV0AMA3AAYAAQAAAAUALgNuczHANwpob3N0bWFzdGVyBmZhc3RsecAXeDnGKQAADhAAAAJYAAk6gAAAAB4="},"ip":{"version":4,"ttl":128,"id":"b1e0"},"src_ip":"192.168.113.2","dst_ip":"192.168.113.237","protocol":17,"src_port":53,"dst_port":40557,"event_start":1565200428.440603} +{"dns":{"base64":"q9wBAAABAAAAAAAABnJlZGRpdANtYXAGZmFzdGx5A25ldAAAHAAB"},"ip":{"version":4,"ttl":64,"id":"0324"},"src_ip":"192.168.113.237","dst_ip":"192.168.113.2","protocol":17,"src_port":60293,"dst_port":53,"event_start":1565200428.440887} +{"dns":{"base64":"q9yBgAABAAAAAQAABnJlZGRpdANtYXAGZmFzdGx5A25ldAAAHAABwBcABgABAAAABQAxA25zMcAXCmhvc3RtYXN0ZXIGZmFzdGx5A2NvbQB4OcYpAAAOEAAAAlgACTqAAAAAHg=="},"ip":{"version":4,"ttl":128,"id":"b1e1"},"src_ip":"192.168.113.2","dst_ip":"192.168.113.237","protocol":17,"src_port":53,"dst_port":60293,"event_start":1565200428.478180} +{"fingerprints":{"tcp":"tcp/(40)()(40)(faf0)((020405b4)(04)(08)(01)(030307))"},"tcp":{"seq":2527163349,"timestamp":{"ts_val":941756443}},"ip":{"version":4,"ttl":64,"id":"5d6b"},"src_ip":"192.168.113.237","dst_ip":"151.101.129.140","protocol":6,"src_port":42288,"dst_port":443,"event_start":1565200428.478770} +{"fingerprints":{"tcp_server":"tcp_server/(40)()(80)(faf0)((020405b4))"},"tcp_server":{"seq":2158677407},"ip":{"version":4,"ttl":128,"id":"b1e2"},"src_ip":"151.101.129.140","dst_ip":"192.168.113.237","protocol":6,"src_port":443,"dst_port":42288,"event_start":1565200428.517838} +{"fingerprints":{"tls":"tls/(0303)(130213031301c02cc030009fcca9cca8ccaac02bc02f009ec024c028006bc023c0270067c00ac0140039c009c0130033009d009c003d003c0035002f00ff)((0000)(000b000403000102)(000a000c000a001d0017001e00190018)(0023)(0016)(0017)(000d0030002e040305030603080708080809080a080b080408050806040105010601030302030301020103020202040205020602)(002b0009080304030303020301)(002d00020101)(0033))"},"tls":{"client":{"version":"0303","random":"440ec5f6bbf739a48bb997b48f2458e378528fefb766860170cd4699429dc09a","session_id":"8187fdd8471acf8e2fb3cada60f93d5fe10b6a29325ea80f2810d8b8d00fa648","cipher_suites":"130213031301c02cc030009fcca9cca8ccaac02bc02f009ec024c028006bc023c0270067c00ac0140039c009c0130033009d009c003d003c0035002f00ff","compression_methods":"00","server_name":"www.reddit.com","session_ticket":"","features":"[\"0303\",\"130213031301c02cc030009fcca9cca8ccaac02bc02f009ec024c028006bc023c0270067c00ac0140039c009c0130033009d009c003d003c0035002f00ff\",[[\"0000\",\"001100000e7777772e7265646469742e636f6d\"],[\"000b\",\"03000102\"],[\"000a\",\"000a001d0017001e00190018\"],[\"0023\",\"\"],[\"0016\",\"\"],[\"0017\",\"\"],[\"000d\",\"002e040305030603080708080809080a080b080408050806040105010601030302030301020103020202040205020602\"],[\"002b\",\"080304030303020301\"],[\"002d\",\"0101\"],[\"0033\",\"0024001d0020c5501d6c04065f060ff5dc823d450b0e29ed48e8e8d7a504a9ebec2248ba180e\"]]]"}},"ip":{"version":4,"ttl":64,"id":"5d6d"},"src_ip":"192.168.113.237","dst_ip":"151.101.129.140","protocol":6,"src_port":42288,"dst_port":443,"event_start":1565200428.518183} +{"fingerprints":{"tls_server":"tls_server/(0303)(c02f)((ff01)(0000)(000b000403000102)(0023)(0017))"},"tls":{"server":{"certs":[{"base64":"MIIHQzCCBiugAwIBAgIQB1sC352kFlEvZM5wcfyMBzANBgkqhkiG9w0BAQsFADBNMQswCQYDVQQGEwJVUzEVMBMGA1UEChMMRGlnaUNlcnQgSW5jMScwJQYDVQQDEx5EaWdpQ2VydCBTSEEyIFNlY3VyZSBTZXJ2ZXIgQ0EwHhcNMTgwODE3MDAwMDAwWhcNMjAwOTAyMTIwMDAwWjBnMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZyYW5jaXNjbzEUMBIGA1UEChMLUmVkZGl0IEluYy4xFTATBgNVBAMMDCoucmVkZGl0LmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAM/pmlSjpBriKS1FgXKzqItMziu7otc9nmls8zLRaKwDHRpwVfiGWkLckOfvhn79U2zqwDilJ7TKepbjXgpa7mUgs5bX5DqZPXhyfV1hFD66RRQi2wVbvdbJdBGL3VrKZVJRIIpTtc3Q169FIslNKbc9eGq1nwO/REhI5dxDCHAoHwLpp+XfbjkBJGzlgKIBdBHed67KFVUKFvh1RVanVJUNG6IkAXXnPZSigwfA2wBH3QguOc1YxswPB4cOH5sdZeAJQ6j9rSxNqjZthoV43La5nsVYxRtreJ8ooV5ZX/dsL7BBBkWfF/acVSU3f7X7XiFz23vruQyBNQKT2HKXwgcCAwEAAaOCBAMwggP/MB8GA1UdIwQYMBaAFA+AYRyCMWHVLyjnjUY4tCzhxtniMB0GA1UdDgQWBBRx4FDR54BS+yMUZZ1Dp40xqlZpJjCBxAYDVR0RBIG8MIG5ggwqLnJlZGRpdC5jb22CCnJlZGRpdC5jb22CESoucmVkZGl0bWVkaWEuY29tgg9yZWRkaXRtZWRpYS5jb22CCSoucmVkZC5pdIIHcmVkZC5pdIIUd3d3LnJlZGRpdHN0YXRpYy5jb22CE2kucmVkZGl0dXBsb2Fkcy5jb22CGCoudGh1bWJzLnJlZGRpdG1lZGlhLmNvbYIRd3d3LnJlZGRpdGluYy5jb22CDXJlZGRpdGluYy5jb20wDgYDVR0PAQH/BAQDAgWgMB0GA1UdJQQWMBQGCCsGAQUFBwMBBggrBgEFBQcDAjBrBgNVHR8EZDBiMC+gLaArhilodHRwOi8vY3JsMy5kaWdpY2VydC5jb20vc3NjYS1zaGEyLWc2LmNybDAvoC2gK4YpaHR0cDovL2NybDQuZGlnaWNlcnQuY29tL3NzY2Etc2hhMi1nNi5jcmwwTAYDVR0gBEUwQzA3BglghkgBhv1sAQEwKjAoBggrBgEFBQcCARYcaHR0cHM6Ly93d3cuZGlnaWNlcnQuY29tL0NQUzAIBgZngQwBAgIwfAYIKwYBBQUHAQEEcDBuMCQGCCsGAQUFBzABhhhodHRwOi8vb2NzcC5kaWdpY2VydC5jb20wRgYIKwYBBQUHMAKGOmh0dHA6Ly9jYWNlcnRzLmRpZ2ljZXJ0LmNvbS9EaWdpQ2VydFNIQTJTZWN1cmVTZXJ2ZXJDQS5jcnQwDAYDVR0TAQH/BAIwADCCAX4GCisGAQQB1nkCBAIEggFuBIIBagFoAHUApLkJkLQYWBSHuxOizGdwCjw1mAT5G9+443fNDsgN3BAAAAFlRULTsAAABAMARjBEAiBcrugEb8o8AymzIh0fUN/F0i9SHl/xCQnCIMbXoSd+rwIgVwN50xsjJVuBP7cVxR5oSlj2USU3KVkZoAq+PIwMHucAdgCHdb/nWXz4jEOZX73zbv9WjUdWNv9KtWDBtOr/XqCDDwAAAWVFQtSDAAAEAwBHMEUCIGo9XmyFN5b38sdORa5NThm594MGPYK4se987nB8WsvPAiEA8Imvn9QF63D4vIwY8d+aticvw2dbwHdoZFpCj96yRn8AdwC72d+8H4pxtZOUI5eqkntHOFeVCqtS6BqQlmQ2jh7RhQAAAWVFQtSGAAAEAwBIMEYCIQCH+S3U0ac6/F5Bsc5xyHpO+UTpgz8DKiJSCfaObn3u5wIhANl9+8L/zSfwf7KPUhdPWfNnkMUFaFgRY1/HdOej6a4UMA0GCSqGSIb3DQEBCwUAA4IBAQC9OsE5bjOOvx0VowfFacujFxU1kYDikX90BH106XP7YQIExGmjZ9mo5Ai6UgMHUSIYO4sNFcZYYk6N7bd75K0i8U8X2AcoIfiC6VYdrw4e2rNMXW10CzIh1Co/t65QZ9KtuWXWwxQJYJuIcLsQT7MG7+K48ZJNSsB9VuuzqNebxSZTyhEBMsN030/Oy1CiUsq+nekZfibcAHxc5L6JG8sFnW6R4uTuGg1qZsvr95KZi5lpoUOE2UkdOK2TG7ntn7JLY4C4Yv2VGKrnxGiqajcKwkdh0a6xC1EXY9JObNczgauCO56+f8+xcRoZpTAE/JtywwVl++brUeoLLUdCVthx"},{"base64":"MIIElDCCA3ygAwIBAgIQAf2j627KdciIQ4tyS8+8kTANBgkqhkiG9w0BAQsFADBhMQswCQYDVQQGEwJVUzEVMBMGA1UEChMMRGlnaUNlcnQgSW5jMRkwFwYDVQQLExB3d3cuZGlnaWNlcnQuY29tMSAwHgYDVQQDExdEaWdpQ2VydCBHbG9iYWwgUm9vdCBDQTAeFw0xMzAzMDgxMjAwMDBaFw0yMzAzMDgxMjAwMDBaME0xCzAJBgNVBAYTAlVTMRUwEwYDVQQKEwxEaWdpQ2VydCBJbmMxJzAlBgNVBAMTHkRpZ2lDZXJ0IFNIQTIgU2VjdXJlIFNlcnZlciBDQTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANyuWJBNwcQwFZA1W248ghX1LFy949v/cUP6ZCWA1O4Yok3wZtAKc24RmDYXZK83nf36QYSvx6+M/hpzTc8zl5CilodTgyu5pnVILR1WN3vaMTIa16yrBvSqXUu3R0bdKpPDkC55gIDvEwRqFDu1m5K+wgdlTvza/P96rtxcflUxDOg5B6TXvi/TC2rSsd9f/ld0Uzs1gN2ujkSYs58O09rg1/RrKatEp0tYhG2SS4HD2nOLEpdIkARFdRrdNzGXkujNVA075ME/OV4uuPNcfhCOhkEAjUVmR7ChZc6gqikJTvOX6+guqw9ypzAO+sf0/RR3w6RbKFfCs/mC/bdFWJsCAwEAAaOCAVowggFWMBIGA1UdEwEB/wQIMAYBAf8CAQAwDgYDVR0PAQH/BAQDAgGGMDQGCCsGAQUFBwEBBCgwJjAkBggrBgEFBQcwAYYYaHR0cDovL29jc3AuZGlnaWNlcnQuY29tMHsGA1UdHwR0MHIwN6A1oDOGMWh0dHA6Ly9jcmwzLmRpZ2ljZXJ0LmNvbS9EaWdpQ2VydEdsb2JhbFJvb3RDQS5jcmwwN6A1oDOGMWh0dHA6Ly9jcmw0LmRpZ2ljZXJ0LmNvbS9EaWdpQ2VydEdsb2JhbFJvb3RDQS5jcmwwPQYDVR0gBDYwNDAyBgRVHSAAMCowKAYIKwYBBQUHAgEWHGh0dHBzOi8vd3d3LmRpZ2ljZXJ0LmNvbS9DUFMwHQYDVR0OBBYEFA+AYRyCMWHVLyjnjUY4tCzhxtniMB8GA1UdIwQYMBaAFAPeUDVW0Uy7ZvCj4hsbw5eyPdFVMA0GCSqGSIb3DQEBCwUAA4IBAQAjPt9L0jFCpbZ+QlwaRMxp0Wi0XUvgBCFsS+JtzLHgl4+mUwnNqipl5TlPHoOlblyYoiQm5vuh7ZPHLgLGTUq/sELfeNqzqPlt/yGFUzZgTHbO7Djc1lGA8MXW5dRNJ2Srm8c+cftIl7gzbckTB+6WohsYFfZcTEDts8Ls/3HB40f/1LkAtDdC2iDJ6m6K7hQGrn2iWZiIqBtvLfTyyRRfJs8sjX7tN8Cp1Tm5gr8ZDOo0rwAhaPitc+LJMto4JQtV05od8GiG7S5BNO98pVAdvzr508EIDObtHopYJeS4d60tbvVS3bR0j6tJLp07kzQoH3jOlOrHvdPJbRzeXDLz"}],"version":"0303","random":"872791c10538c588198d077f26496c7ec9bd9a5e06f114b5877cea78163e5d21","selected_cipher_suite":"c02f","compression_method":"00","session_ticket":""}},"reassembly_properties":{"reassembled":true},"ip":{"version":4,"ttl":128,"id":"b1e6"},"src_ip":"151.101.129.140","dst_ip":"192.168.113.237","protocol":6,"src_port":443,"dst_port":42288,"event_start":1565200428.561330} +{"dns":{"base64":"A1sBAAABAAAAAAAACnNvdW5kY2xvdWQDY29tAAABAAE="},"ip":{"version":4,"ttl":64,"id":"0405"},"src_ip":"192.168.113.237","dst_ip":"192.168.113.2","protocol":17,"src_port":56882,"dst_port":53,"event_start":1565200429.814534} +{"dns":{"base64":"K8UBAAABAAAAAAAACnNvdW5kY2xvdWQDY29tAAAcAAE="},"ip":{"version":4,"ttl":64,"id":"0406"},"src_ip":"192.168.113.237","dst_ip":"192.168.113.2","protocol":17,"src_port":47231,"dst_port":53,"event_start":1565200429.814713} +{"dns":{"base64":"K8WBgAABAAAAAQAACnNvdW5kY2xvdWQDY29tAAAcAAHADAAGAAEAAAAFAEgHbnMtMTY1OQlhd3NkbnMtMTUCY28CdWsAEWF3c2Rucy1ob3N0bWFzdGVyBmFtYXpvbsAXAAAAAQAAHCAAAAOEAAk6gAABUYA="},"ip":{"version":4,"ttl":128,"id":"b38e"},"src_ip":"192.168.113.2","dst_ip":"192.168.113.237","protocol":17,"src_port":53,"dst_port":47231,"event_start":1565200429.846267} +{"dns":{"base64":"A1uBgAABAAQADQAMCnNvdW5kY2xvdWQDY29tAAABAAHADAABAAEAAAAFAARjVNMswAwAAQABAAAABQAEY1TTKcAMAAEAAQAAAAUABGNU0yTADAABAAEAAAAFAARjVNM0wBcAAgABAAAABQAUAWsMZ3RsZC1zZXJ2ZXJzA25ldADAFwACAAEAAAAFAAQBZsBuwBcAAgABAAAABQAEAWrAbsAXAAIAAQAAAAUABAFhwG7AFwACAAEAAAAFAAQBbMBuwBcAAgABAAAABQAEAWjAbsAXAAIAAQAAAAUABAFiwG7AFwACAAEAAAAFAAQBY8BuwBcAAgABAAAABQAEAWTAbsAXAAIAAQAAAAUABAFnwG7AFwACAAEAAAAFAAQBbcBuwBcAAgABAAAABQAEAWXAbsAXAAIAAQAAAAUABAFpwG7ArAABAAEAAAAFAATABQYewNwAAQABAAAABQAEwCEOHsDsAAEAAQAAAAUABMAaXB7A/AABAAEAAAAFAATAH1AewSwAAQABAAAABQAEwAxeHsCMAAEAAQAAAAUABMAjMx7BDAABAAEAAAAFAATAKl0ewMwAAQABAAAABQAEwDZwHsE8AAEAAQAAAAUABMArrB7AnAABAAEAAAAFAATAME8ewGwAAQABAAAABQAEwDSyHsC8AAEAAQAAAAUABMApoh4="},"ip":{"version":4,"ttl":128,"id":"b38f"},"src_ip":"192.168.113.2","dst_ip":"192.168.113.237","protocol":17,"src_port":53,"dst_port":56882,"event_start":1565200429.846469} +{"fingerprints":{"tcp":"tcp/(40)()(40)(faf0)((020405b4)(04)(08)(01)(030307))"},"tcp":{"seq":1406117063,"timestamp":{"ts_val":1518401238}},"ip":{"version":4,"ttl":64,"id":"94d3"},"src_ip":"192.168.113.237","dst_ip":"99.84.211.44","protocol":6,"src_port":44258,"dst_port":443,"event_start":1565200429.846814} +{"fingerprints":{"tcp_server":"tcp_server/(40)()(80)(faf0)((020405b4))"},"tcp_server":{"seq":3613011334},"ip":{"version":4,"ttl":128,"id":"b390"},"src_ip":"99.84.211.44","dst_ip":"192.168.113.237","protocol":6,"src_port":443,"dst_port":44258,"event_start":1565200429.890567} +{"fingerprints":{"tls":"tls/(0303)(130213031301c02cc030009fcca9cca8ccaac02bc02f009ec024c028006bc023c0270067c00ac0140039c009c0130033009d009c003d003c0035002f00ff)((0000)(000b000403000102)(000a000c000a001d0017001e00190018)(0023)(0016)(0017)(000d0030002e040305030603080708080809080a080b080408050806040105010601030302030301020103020202040205020602)(002b0009080304030303020301)(002d00020101)(0033))"},"tls":{"client":{"version":"0303","random":"62e4cb4eda9c91e08ed4899dfbe947764ef781c89c79d31ca91ab4b9eb7a3ac1","session_id":"324f725af04bbf341d996eac11238df1979397e716239d505e28b8efdf304f22","cipher_suites":"130213031301c02cc030009fcca9cca8ccaac02bc02f009ec024c028006bc023c0270067c00ac0140039c009c0130033009d009c003d003c0035002f00ff","compression_methods":"00","server_name":"soundcloud.com","session_ticket":"","features":"[\"0303\",\"130213031301c02cc030009fcca9cca8ccaac02bc02f009ec024c028006bc023c0270067c00ac0140039c009c0130033009d009c003d003c0035002f00ff\",[[\"0000\",\"001100000e736f756e64636c6f75642e636f6d\"],[\"000b\",\"03000102\"],[\"000a\",\"000a001d0017001e00190018\"],[\"0023\",\"\"],[\"0016\",\"\"],[\"0017\",\"\"],[\"000d\",\"002e040305030603080708080809080a080b080408050806040105010601030302030301020103020202040205020602\"],[\"002b\",\"080304030303020301\"],[\"002d\",\"0101\"],[\"0033\",\"0024001d002035afc638b9133424046800cc419eea28e0be9a26880415e3aec3dc448ae1b62d\"]]]"}},"ip":{"version":4,"ttl":64,"id":"94d5"},"src_ip":"192.168.113.237","dst_ip":"99.84.211.44","protocol":6,"src_port":44258,"dst_port":443,"event_start":1565200429.890835} +{"fingerprints":{"tls_server":"tls_server/(0303)(c02f)((0000)(ff01)(000b000403000102)(0023))"},"tls":{"server":{"certs":[{"base64":"MIIGiDCCBXCgAwIBAgIMX9V1QajyD2DHViFbMA0GCSqGSIb3DQEBCwUAMGAxCzAJBgNVBAYTAkJFMRkwFwYDVQQKExBHbG9iYWxTaWduIG52LXNhMTYwNAYDVQQDEy1HbG9iYWxTaWduIERvbWFpbiBWYWxpZGF0aW9uIENBIC0gU0hBMjU2IC0gRzIwHhcNMTgwNDEyMTEwMTE3WhcNMjAwNjA4MTAwODQ4WjA+MSEwHwYDVQQLExhEb21haW4gQ29udHJvbCBWYWxpZGF0ZWQxGTAXBgNVBAMMECouc291bmRjbG91ZC5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQCsR4qP16sZBEqdjVLnmk228XH1//F6mhBLWTCy3YStrinvLhX1fzl/DrHfMN8LLvJnX6QR+eaTlKKZ26OmrkFCwC5PzOsSRyCNMBsWOaAsdK4KBSI9gPdedshCRa4DyZxg6dezowTZeD87d+/wW+nuPbvtd2+xUVCP2xf3FtVZY/AfVBQ8Zp5yuKU7Af+kNYouDSGowkL85zDT3Pi0lbr/Vguh+yLlYArTriTst0HbqqXE78IGL2/yqjVsIhyju004Xkl0xUt1KK3ags8Q5mCEL81OkC8rCMm4I08NjXP9Hl5GtlAFLkz+8JvD1ktGeO4bcAUVjazhe1sLmsbphhPDAgMBAAGjggNiMIIDXjAOBgNVHQ8BAf8EBAMCBaAwgZQGCCsGAQUFBwEBBIGHMIGEMEcGCCsGAQUFBzAChjtodHRwOi8vc2VjdXJlLmdsb2JhbHNpZ24uY29tL2NhY2VydC9nc2RvbWFpbnZhbHNoYTJnMnIxLmNydDA5BggrBgEFBQcwAYYtaHR0cDovL29jc3AyLmdsb2JhbHNpZ24uY29tL2dzZG9tYWludmFsc2hhMmcyMFYGA1UdIARPME0wQQYJKwYBBAGgMgEKMDQwMgYIKwYBBQUHAgEWJmh0dHBzOi8vd3d3Lmdsb2JhbHNpZ24uY29tL3JlcG9zaXRvcnkvMAgGBmeBDAECATAJBgNVHRMEAjAAMEMGA1UdHwQ8MDowOKA2oDSGMmh0dHA6Ly9jcmwuZ2xvYmFsc2lnbi5jb20vZ3MvZ3Nkb21haW52YWxzaGEyZzIuY3JsMCsGA1UdEQQkMCKCECouc291bmRjbG91ZC5jb22CDnNvdW5kY2xvdWQuY29tMB0GA1UdJQQWMBQGCCsGAQUFBwMBBggrBgEFBQcDAjAdBgNVHQ4EFgQUIjN2mq9izXkQSwgkrbTsXyoG330wHwYDVR0jBBgwFoAU6k581IAt5RWBhiaMgm3AmKTPlw8wggF/BgorBgEEAdZ5AgQCBIIBbwSCAWsBaQB2AId1v+dZfPiMQ5lfvfNu/1aNR1Y2/0q1YMG06v9eoIMPAAABYrmEUCcAAAQDAEcwRQIgGA5TTonGf9B75rB9dri4AhAj4v3uGo2FBrBJi4OXksoCIQCZGEsia4o6Hj8Vgnmi5/TO8Fg8iosCr6iowXM/SGfY9QB2AKS5CZC0GFgUh7sTosxncAo8NZgE+RvfuON3zQ7IDdwQAAABYrmEU5IAAAQDAEcwRQIhAMn4lH1VJVO1W3qnuYq6e6Ckz17x2DPORbjXzVvrKQk5AiAXa0ZU1+SggVkR5whHBpjDAbs9b1N3KoVnWkXXAgr39QB3AG9Tdqwx8DEZ2JkApFEV/3cVHBHZAsEAKQaNsgiaN9kTAAABYrmEUGYAAAQDAEgwRgIhAKDoi5dmaUESH6HUFGlTFABBM/Av16ZehG2uAXsHcVEwAiEA+XfvmAjbP5pbhYQ32VJyfEAKHmz7Dx1vjiovmFdTFPowDQYJKoZIhvcNAQELBQADggEBAAzRFkpGQeSW4IlCLdJbiWUJpTFeSoqyuyPoBokrNpIk0fL0lkFj9Y4dgae8XKoKkbe28ovt8cYuA08VhrFWPvZHcjtcZgkHoXuNBj42zAkeumCc8QTQVN0Oiwf3ImE5AiYyPa+URyRMSBYNdttOwnqnmQj3OEFFnLBlREQamUFs4hQpu1ymbqNUwbrA/o9O1mkqwoD0klvo+d5aBvmVvigw3TgjMCDxAaYQ+5vYY5n3s3GrrikbISumqJ1VDEBz4LqZoAHaDrs78daelXrJjPFJGREvFqguh3qOIUYsJ/SksLiw2wPuzzeZNTO2ZMB9rzTCSbk5LGcRrGuEdQMaQJk="},{"base64":"MIIEYzCCA0ugAwIBAgILBAAAAAABRE7wPiAwDQYJKoZIhvcNAQELBQAwVzELMAkGA1UEBhMCQkUxGTAXBgNVBAoTEEdsb2JhbFNpZ24gbnYtc2ExEDAOBgNVBAsTB1Jvb3QgQ0ExGzAZBgNVBAMTEkdsb2JhbFNpZ24gUm9vdCBDQTAeFw0xNDAyMjAxMDAwMDBaFw0yNDAyMjAxMDAwMDBaMGAxCzAJBgNVBAYTAkJFMRkwFwYDVQQKExBHbG9iYWxTaWduIG52LXNhMTYwNAYDVQQDEy1HbG9iYWxTaWduIERvbWFpbiBWYWxpZGF0aW9uIENBIC0gU0hBMjU2IC0gRzIwggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQCp3cwOs+IyOd1JIqgTaZOHiOEM7nF9vZCHll1Z8syz0lhXV/lG72wm2DZCjn4wsy+aPlN7H262okxFHzzTFZMcie089Ffeyr3sBppqKqAZUn9R0XQ5CJ+r69eGExWXrjbDVGYOWvKgc4Ux47JkFGr/paKOJLu9hVIVonnu8LXuPbj0fYC82ZA1ZbgXqa2zmJ+gfn1u+z+tfMIbWTaW2jcyS0tdNQJjjtunz2LuzC7Ujcm9PGqRcqIip3ItINH6yjfaGJjmFiRxJUvE5XuJUgkC/VkrBG7KB4HUs9ra2+PMgKhWBwZ8lgg3nds4tmI0kWIHdAE42HIw4uuQcSZiwFfzAgMBAAGjggElMIIBITAOBgNVHQ8BAf8EBAMCAQYwEgYDVR0TAQH/BAgwBgEB/wIBADAdBgNVHQ4EFgQU6k581IAt5RWBhiaMgm3AmKTPlw8wRwYDVR0gBEAwPjA8BgRVHSAAMDQwMgYIKwYBBQUHAgEWJmh0dHBzOi8vd3d3Lmdsb2JhbHNpZ24uY29tL3JlcG9zaXRvcnkvMDMGA1UdHwQsMCowKKAmoCSGImh0dHA6Ly9jcmwuZ2xvYmFsc2lnbi5uZXQvcm9vdC5jcmwwPQYIKwYBBQUHAQEEMTAvMC0GCCsGAQUFBzABhiFodHRwOi8vb2NzcC5nbG9iYWxzaWduLmNvbS9yb290cjEwHwYDVR0jBBgwFoAUYHtmGkUNl8qJUC99BM00qP/8/UswDQYJKoZIhvcNAQELBQADggEBANdFnqDc4ONhWgt9d4QXLWVagpqNoycqhffJ7+mG/dRHzQFSlsVDvTex4bjyqdKKEYRxkRWJ3AKdC8tsM4U0KJ4gsrGX3G0LEME8zV/qXdeYMcU0mVwAYVXEGwJbxeOJyLS4bx448lYm6UHvPc2smU9ZSlctS32ux4j71pg79eXw6ImJuYsDy1ojH6T9uOr7Lp2uanMJvPzVoLVEgqtEkS5QLlfBQ9iRBIvpES5ftD953x77PzAAi1PjtywdO02L3ORkHQRYM68bVeerDL8wBHTk8w4vMDmNSwSMHnVmZkngvkA0x1xaUZK6EjxS1QSCVS1npd+3lXzuP8MIugS+wEY="}],"version":"0303","random":"4149541bef5bb1882d268692b6f40b9669982df07c1f6aa1e4a1c481ea41825e","selected_cipher_suite":"c02f","compression_method":"00","session_ticket":""}},"reassembly_properties":{"reassembled":true},"ip":{"version":4,"ttl":128,"id":"b394"},"src_ip":"99.84.211.44","dst_ip":"192.168.113.237","protocol":6,"src_port":443,"dst_port":44258,"event_start":1565200429.932332} +{"dns":{"base64":"+4gBAAABAAAAAAAAAXQCY28AAAEAAQ=="},"ip":{"version":4,"ttl":64,"id":"044e"},"src_ip":"192.168.113.237","dst_ip":"192.168.113.2","protocol":17,"src_port":42127,"dst_port":53,"event_start":1565200430.189814} +{"dns":{"base64":"6MQBAAABAAAAAAAAAXQCY28AABwAAQ=="},"ip":{"version":4,"ttl":64,"id":"044f"},"src_ip":"192.168.113.237","dst_ip":"192.168.113.2","protocol":17,"src_port":45036,"dst_port":53,"event_start":1565200430.190010} +{"dns":{"base64":"+4iBgAABAAQABgAMAXQCY28AAAEAAcAMAAEAAQAAAAUABGj0KsXADAABAAEAAAAFAARo9CpFwAwAAQABAAAABQAEaPQqhcAMAAEAAQAAAAUABGj0KgXADgACAAEAAAAFAAwDbnMzBWNjdGxkwA7ADgACAAEAAAAFAAYDbnMxwGbADgACAAEAAAAFAAYDbnM1wGbADgACAAEAAAAFAAYDbnM2wGbADgACAAEAAAAFAAYDbnM0wGbADgACAAEAAAAFAAYDbnMywGbAegABAAEAAAAFAAScmmQZwMIAAQABAAAABQAEnJplGcBiAAEAAQAAAAUABJyaZhnAsAABAAEAAAAFAAScmmcZwIwAAQABAAAABQAEnJpoGcCeAAEAAQAAAAUABJyaaRnAegAcAAEAAAAFABAgAQUCLtoAAAAAAAAAAAAhwMIAHAABAAAABQAQIAEFAq0JAAAAAAAAAAAAIcBiABwAAQAAAAUAECYQAKEQCQAAAAAAAAAAACHAsAAcAAEAAAAFABAmEAChEBAAAAAAAAAAAAAhwIwAHAABAAAABQAQJhAAoRARAAAAAAAAAAAAIcCeABwAAQAAAAUAECYQAKEQEgAAAAAAAAAAACE="},"ip":{"version":4,"ttl":128,"id":"b3a9"},"src_ip":"192.168.113.2","dst_ip":"192.168.113.237","protocol":17,"src_port":53,"dst_port":42127,"event_start":1565200430.190943} +{"dns":{"base64":"6MSBgAABAAAAAQAAAXQCY28AABwAAcAMAAYAAQAAAAUAOQNuczEDcDI2BmR5bmVjdANuZXQAC29wc0B0d2l0dGVyA2NvbQAAAAm7AAAOEAAAAlgACTqAAAAAPA=="},"ip":{"version":4,"ttl":128,"id":"b3ac"},"src_ip":"192.168.113.2","dst_ip":"192.168.113.237","protocol":17,"src_port":53,"dst_port":45036,"event_start":1565200430.223296} +{"fingerprints":{"tcp":"tcp/(40)()(40)(faf0)((020405b4)(04)(08)(01)(030307))"},"tcp":{"seq":3225958527,"timestamp":{"ts_val":2001617856}},"ip":{"version":4,"ttl":64,"id":"080d"},"src_ip":"192.168.113.237","dst_ip":"104.244.42.197","protocol":6,"src_port":42970,"dst_port":443,"event_start":1565200430.223621} +{"fingerprints":{"tcp_server":"tcp_server/(40)()(80)(faf0)((020405b4))"},"tcp_server":{"seq":552645502},"ip":{"version":4,"ttl":128,"id":"b3ad"},"src_ip":"104.244.42.197","dst_ip":"192.168.113.237","protocol":6,"src_port":443,"dst_port":42970,"event_start":1565200430.274617} +{"fingerprints":{"tls":"tls/(0303)(130213031301c02cc030009fcca9cca8ccaac02bc02f009ec024c028006bc023c0270067c00ac0140039c009c0130033009d009c003d003c0035002f00ff)((0000)(000b000403000102)(000a000c000a001d0017001e00190018)(0023)(0016)(0017)(000d0030002e040305030603080708080809080a080b080408050806040105010601030302030301020103020202040205020602)(002b0009080304030303020301)(002d00020101)(0033))"},"tls":{"client":{"version":"0303","random":"81dc85dbf7d05dccc3eca2c60c25c25dc8d67a23ab88441b2834659d1806b203","session_id":"fa4aeff38aaf61f88cd56fa06c6774c314a3f8fefc4c3ebb24f82bf8ae77f9e5","cipher_suites":"130213031301c02cc030009fcca9cca8ccaac02bc02f009ec024c028006bc023c0270067c00ac0140039c009c0130033009d009c003d003c0035002f00ff","compression_methods":"00","server_name":"t.co","session_ticket":"","features":"[\"0303\",\"130213031301c02cc030009fcca9cca8ccaac02bc02f009ec024c028006bc023c0270067c00ac0140039c009c0130033009d009c003d003c0035002f00ff\",[[\"0000\",\"0007000004742e636f\"],[\"000b\",\"03000102\"],[\"000a\",\"000a001d0017001e00190018\"],[\"0023\",\"\"],[\"0016\",\"\"],[\"0017\",\"\"],[\"000d\",\"002e040305030603080708080809080a080b080408050806040105010601030302030301020103020202040205020602\"],[\"002b\",\"080304030303020301\"],[\"002d\",\"0101\"],[\"0033\",\"0024001d00202b2057beedc7298448ddd2f78a8faed3cef91faa80a7a3063107f5da55acd86a\"]]]"}},"ip":{"version":4,"ttl":64,"id":"080f"},"src_ip":"192.168.113.237","dst_ip":"104.244.42.197","protocol":6,"src_port":42970,"dst_port":443,"event_start":1565200430.274862} +{"fingerprints":{"tls_server":"tls_server/(0303)(c02f)((ff01)(000b000403000102)(0023))"},"tls":{"server":{"certs":[{"base64":"MIIGXDCCBUSgAwIBAgIQC7Nk8BsA68WaJkeDtWr17jANBgkqhkiG9w0BAQsFADBwMQswCQYDVQQGEwJVUzEVMBMGA1UEChMMRGlnaUNlcnQgSW5jMRkwFwYDVQQLExB3d3cuZGlnaWNlcnQuY29tMS8wLQYDVQQDEyZEaWdpQ2VydCBTSEEyIEhpZ2ggQXNzdXJhbmNlIFNlcnZlciBDQTAeFw0xOTA1MjQwMDAwMDBaFw0yMDA1MjMxMjAwMDBaMHAxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1TYW4gRnJhbmNpc2NvMRYwFAYDVQQKEw1Ud2l0dGVyLCBJbmMuMQ0wCwYDVQQLEwRhdGxhMQ0wCwYDVQQDEwR0LmNvMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEApS1xDTCZvIEaPzioBNHvpSoyPd/8Gk6myTcKKXKw8icBR19T+XfTEKk3hnwPk14ZAruiBPd7vMsUkD2HtOUdrkNjDpUV9NKTYgLhlB2RxP5RsO2PdPeaPPXIg9NtHOlVUgkThoxqEDavgpMYoNb1K12gzFxYp9LQT4rUsK0F4QdU/FHq/3GBRAnauZx3KYbWnJjGdxUIySQnAXmvGhgqjLBVLjGNRJWifglzds8AIZpo8COJHp3SuMLaBFZycZiIe84Q0uJ/C5OD+2m9YvXWXG2isTVrSAMOuBSy3ssUfw/MUWCMHz3ZwjxqNVT4X+Q7nxQjHi1g9LgNmMIAO9jezwIDAQABo4IC8DCCAuwwHwYDVR0jBBgwFoAUUWj/kK8CB3U8zNllZGKiErhZcjswHQYDVR0OBBYEFFxj/fM0WMmyQTpAZCOhG8USFol4MBkGA1UdEQQSMBCCBHQuY2+CCHd3dy50LmNvMA4GA1UdDwEB/wQEAwIFoDAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwdQYDVR0fBG4wbDA0oDKgMIYuaHR0cDovL2NybDMuZGlnaWNlcnQuY29tL3NoYTItaGEtc2VydmVyLWc2LmNybDA0oDKgMIYuaHR0cDovL2NybDQuZGlnaWNlcnQuY29tL3NoYTItaGEtc2VydmVyLWc2LmNybDBMBgNVHSAERTBDMDcGCWCGSAGG/WwBATAqMCgGCCsGAQUFBwIBFhxodHRwczovL3d3dy5kaWdpY2VydC5jb20vQ1BTMAgGBmeBDAECAjCBgwYIKwYBBQUHAQEEdzB1MCQGCCsGAQUFBzABhhhodHRwOi8vb2NzcC5kaWdpY2VydC5jb20wTQYIKwYBBQUHMAKGQWh0dHA6Ly9jYWNlcnRzLmRpZ2ljZXJ0LmNvbS9EaWdpQ2VydFNIQTJIaWdoQXNzdXJhbmNlU2VydmVyQ0EuY3J0MAwGA1UdEwEB/wQCMAAwggEFBgorBgEEAdZ5AgQCBIH2BIHzAPEAdgCkuQmQtBhYFIe7E6LMZ3AKPDWYBPkb37jjd80OyA3cEAAAAWrrDaPPAAAEAwBHMEUCIGrY2nK+yCnTjjFZfrrprBCQnEgvylwAgxwuR0/13mOhAiEAwaXpcztuZ3hguP3aPFN3smGh/KZ0HkOMwVt4ipraoJsAdwBep3P531bA57U2SH3QSeAyepGaDIShEhKEGHWWgXFFWAAAAWrrDaNNAAAEAwBIMEYCIQDY/CK+7BOV7qSytUQX5bT0Pmdx1SHQxLg3p3YPIklpDwIhAK7sJrCDJXhJB7LEEHkJkqbsq34KbjW3K/eSorLnrFQTMA0GCSqGSIb3DQEBCwUAA4IBAQAT9sfHyYtR8SwuhBrFaN5rgce3ZKUdN30GXuT8yGxV+SRILTmZ3ttK76HLnmCPQ7VrcHUVcCx5stYT0sQaeylMKuJdyOCHocEy+M1/5/r87q4fucvNQrjDG1TF16VWKc08Sf/nEIkDlHUYN8W1AspK1r2M8PmnvdUNVC2CxitQNWFX3cb/fD9pbJ6T6TDEP+DdkabelLQmAC3Ix0yO7N4vbtGqn4U79V/rZ9PDFdUrPhGKTyOHW4Fo5+Ps4VVm9cYrKo/qS8Sn6+ErRtxS09BlXJlzqDX/IXTx0QJJ6e+6iILJtBOF6RRplkzIBwHdIpQipkazO1ltUlC5dVLVFLq2"},{"base64":"MIIEsTCCA5mgAwIBAgIQBOHnpNxc8vNtwCtCuF0VnzANBgkqhkiG9w0BAQsFADBsMQswCQYDVQQGEwJVUzEVMBMGA1UEChMMRGlnaUNlcnQgSW5jMRkwFwYDVQQLExB3d3cuZGlnaWNlcnQuY29tMSswKQYDVQQDEyJEaWdpQ2VydCBIaWdoIEFzc3VyYW5jZSBFViBSb290IENBMB4XDTEzMTAyMjEyMDAwMFoXDTI4MTAyMjEyMDAwMFowcDELMAkGA1UEBhMCVVMxFTATBgNVBAoTDERpZ2lDZXJ0IEluYzEZMBcGA1UECxMQd3d3LmRpZ2ljZXJ0LmNvbTEvMC0GA1UEAxMmRGlnaUNlcnQgU0hBMiBIaWdoIEFzc3VyYW5jZSBTZXJ2ZXIgQ0EwggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQC24C/CJAbIbQRf1+8KZAayfSImZRauQkCbztyfn3YHPsMwVYcZuU+UDlqUH1VWtMICKq/QmO4LQNfE0DtyyBSe75CxEamu0si4QzrZCwvV1ZX1QK/IHe1NnF9Xt4ZQaJn1itrSxwUfqJfJ3KSxgoQtxq2lnMcZgqaFD15EWCo3j/018QsIJzJa9buLnqS9UdAn4t07QjOjBSjEuyjMmqwrIw14xnvmXnG3Sj4I+4G3FhahnSMSTeXXkgisdaScus0Xsh5ENWV/UyU50RwKmmMbGZJ0aAo3wsJSSMs5WqK24V3B3aAguCGikyZvFEohQcftbZvySC/zA/WiaJJTL17jAgMBAAGjggFJMIIBRTASBgNVHRMBAf8ECDAGAQH/AgEAMA4GA1UdDwEB/wQEAwIBhjAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwNAYIKwYBBQUHAQEEKDAmMCQGCCsGAQUFBzABhhhodHRwOi8vb2NzcC5kaWdpY2VydC5jb20wSwYDVR0fBEQwQjBAoD6gPIY6aHR0cDovL2NybDQuZGlnaWNlcnQuY29tL0RpZ2lDZXJ0SGlnaEFzc3VyYW5jZUVWUm9vdENBLmNybDA9BgNVHSAENjA0MDIGBFUdIAAwKjAoBggrBgEFBQcCARYcaHR0cHM6Ly93d3cuZGlnaWNlcnQuY29tL0NQUzAdBgNVHQ4EFgQUUWj/kK8CB3U8zNllZGKiErhZcjswHwYDVR0jBBgwFoAUsT7DaQP4v0cB1JgmGggC72NkK8MwDQYJKoZIhvcNAQELBQADggEBABiKlYkD5m3fXPwdaOpKj4PWUS+Na0QWnqxj9dJubISZi6qBcYRb7TROsLd5kinMLYBq8I4g4Xmk/gNHE+r1hspZcX30BJZr01lYPf7TMSVcGDiEo+afgv2MW5gxTs14nhr9hctJqvIni5ly/D6q1UEL2tU2ob8cbkdJf17ZSHwD2f2LSaCYJkJA69aSEaRkCldUxPUd1gJea6zuxICaEnL6VpPX/78whQYwvwt/Tv9XBZ0k7YXDK/umdaisLRbvfXknsuvCnQsH6qqF0wGjIChBWUMo0oHjqvbsezt3tkBigAVBRQHvFwY+3sAzm2fTYS5yh+Rp/BIAV0AecPUeybQ="}],"version":"0303","random":"67bbbc777daef477e4c6f925c1a674e99d3ae43f7ea0e0672c9b88da5b1ad7d6","selected_cipher_suite":"c02f","compression_method":"00","session_ticket":""}},"reassembly_properties":{"reassembled":true},"ip":{"version":4,"ttl":128,"id":"b3b1"},"src_ip":"104.244.42.197","dst_ip":"192.168.113.237","protocol":6,"src_port":443,"dst_port":42970,"event_start":1565200430.334371} +{"dns":{"base64":"HiABAAABAAAAAAAABXNpdGVzBmdvb2dsZQNjb20AAAEAAQ=="},"ip":{"version":4,"ttl":64,"id":"0470"},"src_ip":"192.168.113.237","dst_ip":"192.168.113.2","protocol":17,"src_port":58257,"dst_port":53,"event_start":1565200430.455097} +{"dns":{"base64":"GlkBAAABAAAAAAAABXNpdGVzBmdvb2dsZQNjb20AABwAAQ=="},"ip":{"version":4,"ttl":64,"id":"0471"},"src_ip":"192.168.113.237","dst_ip":"192.168.113.2","protocol":17,"src_port":58815,"dst_port":53,"event_start":1565200430.455310} +{"dns":{"base64":"GlmBgAABAAIADQAMBXNpdGVzBmdvb2dsZQNjb20AABwAAcAMAAUAAQAAAAUACQR3d3czAWzAEsAuABwAAQAAAAUAECYH+LBABAgAAAAAAAAAIA7AGQACAAEAAAAFABQBaQxndGxkLXNlcnZlcnMDbmV0AMAZAAIAAQAAAAUABAFswGHAGQACAAEAAAAFAAQBasBhwBkAAgABAAAABQAEAWXAYcAZAAIAAQAAAAUABAFtwGHAGQACAAEAAAAFAAQBZsBhwBkAAgABAAAABQAEAWHAYcAZAAIAAQAAAAUABAFnwGHAGQACAAEAAAAFAAQBZMBhwBkAAgABAAAABQAEAWLAYcAZAAIAAQAAAAUABAFrwGHAGQACAAEAAAAFAAQBY8BhwBkAAgABAAAABQAEAWjAYcDPAAEAAQAAAAUABMAFBh7A/wABAAEAAAAFAATAIQ4ewR8AAQABAAAABQAEwBpcHsDvAAEAAQAAAAUABMAfUB7AnwABAAEAAAAFAATADF4ewL8AAQABAAAABQAEwCMzHsDfAAEAAQAAAAUABMAqXR7BLwABAAEAAAAFAATANnAewF8AAQABAAAABQAEwCusHsCPAAEAAQAAAAUABMAwTx7BDwABAAEAAAAFAATANLIewH8AAQABAAAABQAEwCmiHg=="},"ip":{"version":4,"ttl":128,"id":"b3bb"},"src_ip":"192.168.113.2","dst_ip":"192.168.113.237","protocol":17,"src_port":53,"dst_port":58815,"event_start":1565200430.486959} +{"dns":{"base64":"HiCBgAABAAIADQANBXNpdGVzBmdvb2dsZQNjb20AAAEAAcAMAAUAAQAAAAUACQR3d3czAWzAEsAuAAEAAQAAAAUABKzZB67AGQACAAEAAAAFABQBawxndGxkLXNlcnZlcnMDbmV0AMAZAAIAAQAAAAUABAFlwFXAGQACAAEAAAAFAAQBYsBVwBkAAgABAAAABQAEAWrAVcAZAAIAAQAAAAUABAFhwFXAGQACAAEAAAAFAAQBacBVwBkAAgABAAAABQAEAWjAVcAZAAIAAQAAAAUABAFnwFXAGQACAAEAAAAFAAQBbcBVwBkAAgABAAAABQAEAWbAVcAZAAIAAQAAAAUABAFswFXAGQACAAEAAAAFAAQBY8BVwBkAAgABAAAABQAEAWTAVcCjAAEAAQAAAAUABMAFBh7AgwABAAEAAAAFAATAIQ4ewRMAAQABAAAABQAEwBpcHsEjAAEAAQAAAAUABMAfUB7AcwABAAEAAAAFAATADF4ewPMAAQABAAAABQAEwCMzHsDTAAEAAQAAAAUABMAqXR7AwwABAAEAAAAFAATANnAewLMAAQABAAAABQAEwCusHsCTAAEAAQAAAAUABMAwTx7AUwABAAEAAAAFAATANLIewQMAAQABAAAABQAEwCmiHsDjAAEAAQAAAAUABMA3Ux4="},"ip":{"version":4,"ttl":128,"id":"b3bc"},"src_ip":"192.168.113.2","dst_ip":"192.168.113.237","protocol":17,"src_port":53,"dst_port":58257,"event_start":1565200430.486972} +{"fingerprints":{"tcp":"tcp/(40)()(40)(faf0)((020405b4)(04)(08)(01)(030307))"},"tcp":{"seq":1664568677,"timestamp":{"ts_val":142098801}},"ip":{"version":4,"ttl":64,"id":"7dd1"},"src_ip":"192.168.113.237","dst_ip":"172.217.7.174","protocol":6,"src_port":33408,"dst_port":443,"event_start":1565200430.487673} +{"fingerprints":{"tcp_server":"tcp_server/(40)()(80)(faf0)((020405b4))"},"tcp_server":{"seq":729427656},"ip":{"version":4,"ttl":128,"id":"b3bd"},"src_ip":"172.217.7.174","dst_ip":"192.168.113.237","protocol":6,"src_port":443,"dst_port":33408,"event_start":1565200430.531504} +{"fingerprints":{"tls":"tls/(0303)(130213031301c02cc030009fcca9cca8ccaac02bc02f009ec024c028006bc023c0270067c00ac0140039c009c0130033009d009c003d003c0035002f00ff)((0000)(000b000403000102)(000a000c000a001d0017001e00190018)(0023)(0016)(0017)(000d0030002e040305030603080708080809080a080b080408050806040105010601030302030301020103020202040205020602)(002b0009080304030303020301)(002d00020101)(0033))"},"tls":{"client":{"version":"0303","random":"ac0cdd37ff232bc4f6dafa5feddc7d2f6852ae28f8d472100ba62cc6eea6ff20","session_id":"ede255213f8588ad5d4a283d223c86a0e148280341fdbec45758c1fcb9fcf521","cipher_suites":"130213031301c02cc030009fcca9cca8ccaac02bc02f009ec024c028006bc023c0270067c00ac0140039c009c0130033009d009c003d003c0035002f00ff","compression_methods":"00","server_name":"sites.google.com","session_ticket":"","features":"[\"0303\",\"130213031301c02cc030009fcca9cca8ccaac02bc02f009ec024c028006bc023c0270067c00ac0140039c009c0130033009d009c003d003c0035002f00ff\",[[\"0000\",\"001300001073697465732e676f6f676c652e636f6d\"],[\"000b\",\"03000102\"],[\"000a\",\"000a001d0017001e00190018\"],[\"0023\",\"\"],[\"0016\",\"\"],[\"0017\",\"\"],[\"000d\",\"002e040305030603080708080809080a080b080408050806040105010601030302030301020103020202040205020602\"],[\"002b\",\"080304030303020301\"],[\"002d\",\"0101\"],[\"0033\",\"0024001d00203fa5769c97be4064e6dde3cc1212becae13f0fd500bda6070fc322a23683a247\"]]]"}},"ip":{"version":4,"ttl":64,"id":"7dd3"},"src_ip":"192.168.113.237","dst_ip":"172.217.7.174","protocol":6,"src_port":33408,"dst_port":443,"event_start":1565200430.531812} +{"fingerprints":{"tls_server":"tls_server/(0303)(1302)((0033)(002b00020304))"},"tls":{"server":{"version":"0303","random":"1029a20d4d4c0757966666c6d20e4e80bace395024a899127d191d32828ef03e","selected_cipher_suite":"1302","compression_method":"00"}},"ip":{"version":4,"ttl":128,"id":"b3bf"},"src_ip":"172.217.7.174","dst_ip":"192.168.113.237","protocol":6,"src_port":443,"dst_port":33408,"event_start":1565200430.583466} +{"fingerprints":{"tcp":"tcp/(40)()(40)(faf0)((020405b4)(04)(08)(01)(030307))"},"tcp":{"seq":741349778,"timestamp":{"ts_val":1677097159}},"ip":{"version":4,"ttl":64,"id":"2964"},"src_ip":"192.168.113.237","dst_ip":"172.217.164.141","protocol":6,"src_port":57114,"dst_port":443,"event_start":1565200430.753214} +{"fingerprints":{"tcp_server":"tcp_server/(40)()(80)(faf0)((020405b4))"},"tcp_server":{"seq":3362324552},"ip":{"version":4,"ttl":128,"id":"b3c8"},"src_ip":"172.217.164.141","dst_ip":"192.168.113.237","protocol":6,"src_port":443,"dst_port":57114,"event_start":1565200430.794671} +{"fingerprints":{"tls":"tls/(0303)(130213031301c02cc030009fcca9cca8ccaac02bc02f009ec024c028006bc023c0270067c00ac0140039c009c0130033009d009c003d003c0035002f00ff)((0000)(000b000403000102)(000a000c000a001d0017001e00190018)(0023)(0016)(0017)(000d0030002e040305030603080708080809080a080b080408050806040105010601030302030301020103020202040205020602)(002b0009080304030303020301)(002d00020101)(0033))"},"tls":{"client":{"version":"0303","random":"f9c07ccc0fea290c8d0694add9fc68f33747ddf968eef2f5c2a4f688eb9a1596","session_id":"9568057bc0377a7d7e692aa7545b229a2012ea59f57c062f97efbac45e48981f","cipher_suites":"130213031301c02cc030009fcca9cca8ccaac02bc02f009ec024c028006bc023c0270067c00ac0140039c009c0130033009d009c003d003c0035002f00ff","compression_methods":"00","server_name":"accounts.google.com","session_ticket":"","features":"[\"0303\",\"130213031301c02cc030009fcca9cca8ccaac02bc02f009ec024c028006bc023c0270067c00ac0140039c009c0130033009d009c003d003c0035002f00ff\",[[\"0000\",\"00160000136163636f756e74732e676f6f676c652e636f6d\"],[\"000b\",\"03000102\"],[\"000a\",\"000a001d0017001e00190018\"],[\"0023\",\"\"],[\"0016\",\"\"],[\"0017\",\"\"],[\"000d\",\"002e040305030603080708080809080a080b080408050806040105010601030302030301020103020202040205020602\"],[\"002b\",\"080304030303020301\"],[\"002d\",\"0101\"],[\"0033\",\"0024001d0020c41f1c449d80e477f60f3c3ff5e8cf29e319d93460be883a81d5337e6a68611f\"]]]"}},"ip":{"version":4,"ttl":64,"id":"2966"},"src_ip":"192.168.113.237","dst_ip":"172.217.164.141","protocol":6,"src_port":57114,"dst_port":443,"event_start":1565200430.794920} +{"fingerprints":{"tls_server":"tls_server/(0303)(1302)((0033)(002b00020304))"},"tls":{"server":{"version":"0303","random":"ccecbafd209d6d04fe595466c07c335adf07db0d7154d22b34b51d89db401111","selected_cipher_suite":"1302","compression_method":"00"}},"ip":{"version":4,"ttl":128,"id":"b3cc"},"src_ip":"172.217.164.141","dst_ip":"192.168.113.237","protocol":6,"src_port":443,"dst_port":57114,"event_start":1565200430.844009} +{"dns":{"base64":"CWkBAAABAAAAAAAACWFtYXpvbmF3cwNjb20AAAEAAQ=="},"ip":{"version":4,"ttl":64,"id":"04d2"},"src_ip":"192.168.113.237","dst_ip":"192.168.113.2","protocol":17,"src_port":48886,"dst_port":53,"event_start":1565200431.127787} +{"dns":{"base64":"hvMBAAABAAAAAAAACWFtYXpvbmF3cwNjb20AABwAAQ=="},"ip":{"version":4,"ttl":64,"id":"04d3"},"src_ip":"192.168.113.237","dst_ip":"192.168.113.2","protocol":17,"src_port":36267,"dst_port":53,"event_start":1565200431.128058} +{"dns":{"base64":"hvOBgAABAAAAAQAACWFtYXpvbmF3cwNjb20AABwAAcAMAAYAAQAAAAUAPhNkbnMtZXh0ZXJuYWwtbWFzdGVyBmFtYXpvbsAWCmhvc3RtYXN0ZXLAP3f3fukAAAC0AAAAPAAnjQAAAA4J"},"ip":{"version":4,"ttl":128,"id":"b406"},"src_ip":"192.168.113.2","dst_ip":"192.168.113.237","protocol":17,"src_port":53,"dst_port":36267,"event_start":1565200431.161355} +{"dns":{"base64":"CWmBgAABAAMABAAICWFtYXpvbmF3cwNjb20AAAEAAcAMAAEAAQAAAAUABM+rphbADAABAAEAAAAFAARIFdIdwAwAAQABAAAABQAESBXOUMAMAAIAAQAAAAUABQJyMcAMwAwAAgABAAAABQAFAnIywAzADAACAAEAAAAFAAUCdTHADMAMAAIAAQAAAAUABQJ1MsAMwFsAAQABAAAABQAEzfvAG8BsAAEAAQAAAAUABM37w8fAfQABAAEAAAAFAAScmkAKwI4AAQABAAAABQAEnJpBCsBbABwAAQAAAAUAECYAkABTABsAAAAAAAAAAAHAbAAcAAEAAAAFABAmAJAAUwPHAAAAAAAAAAABwH0AHAABAAAABQAQIAEFAvP/AAAAAAAAAAAAEMCOABwAAQAAAAUAECYQAKEQFAAAAAAAAAAAABA="},"ip":{"version":4,"ttl":128,"id":"b407"},"src_ip":"192.168.113.2","dst_ip":"192.168.113.237","protocol":17,"src_port":53,"dst_port":48886,"event_start":1565200431.172167} +{"fingerprints":{"tcp":"tcp/(40)()(40)(faf0)((020405b4)(04)(08)(01)(030307))"},"tcp":{"seq":2929443462,"timestamp":{"ts_val":1073958153}},"ip":{"version":4,"ttl":64,"id":"f3d9"},"src_ip":"192.168.113.237","dst_ip":"207.171.166.22","protocol":6,"src_port":53408,"dst_port":443,"event_start":1565200431.172487} +{"fingerprints":{"tcp":"tcp/(40)()(40)(faf0)((020405b4)(04)(08)(01)(030307))"},"tcp":{"seq":1856285223,"timestamp":{"ts_val":3658040163}},"ip":{"version":4,"ttl":64,"id":"9b4c"},"src_ip":"192.168.113.237","dst_ip":"72.21.210.29","protocol":6,"src_port":50234,"dst_port":443,"event_start":1565200431.217536} +{"fingerprints":{"tcp":"tcp/(40)()(40)(faf0)((020405b4)(04)(08)(01)(030307))"},"tcp":{"seq":4050544627,"timestamp":{"ts_val":2097722686}},"ip":{"version":4,"ttl":64,"id":"5685"},"src_ip":"192.168.113.237","dst_ip":"72.21.206.80","protocol":6,"src_port":33300,"dst_port":443,"event_start":1565200431.263607} +{"dns":{"base64":"VuEBAAABAAAAAAAAEmNvbm5lY3Rpdml0eS1jaGVjawZ1YnVudHUDY29tAAABAAE="},"ip":{"version":4,"ttl":64,"id":"4369"},"src_ip":"192.168.113.237","dst_ip":"192.168.113.2","protocol":17,"src_port":35986,"dst_port":53,"event_start":1565200503.588326} +{"dns":{"base64":"UpsBAAABAAAAAAAAEmNvbm5lY3Rpdml0eS1jaGVjawZ1YnVudHUDY29tAAAcAAE="},"ip":{"version":4,"ttl":64,"id":"436a"},"src_ip":"192.168.113.237","dst_ip":"192.168.113.2","protocol":17,"src_port":33455,"dst_port":53,"event_start":1565200503.588531} +{"dns":{"base64":"VuGBgAABAAIADQANEmNvbm5lY3Rpdml0eS1jaGVjawZ1YnVudHUDY29tAAABAAHADAABAAEAAAAFAAQj4GOcwAwAAQABAAAABQAEI95VBcAmAAIAAQAAAAUAFAFjDGd0bGQtc2VydmVycwNuZXQAwCYAAgABAAAABQAEAWjAXcAmAAIAAQAAAAUABAFlwF3AJgACAAEAAAAFAAQBZsBdwCYAAgABAAAABQAEAWTAXcAmAAIAAQAAAAUABAFiwF3AJgACAAEAAAAFAAQBa8BdwCYAAgABAAAABQAEAWnAXcAmAAIAAQAAAAUABAFqwF3AJgACAAEAAAAFAAQBZ8BdwCYAAgABAAAABQAEAWHAXcAmAAIAAQAAAAUABAFswF3AJgACAAEAAAAFAAQBbcBdwQsAAQABAAAABQAEwAUGHsC7AAEAAQAAAAUABMAhDh7AWwABAAEAAAAFAATAGlwewKsAAQABAAAABQAEwB9QHsCLAAEAAQAAAAUABMAMXh7AmwABAAEAAAAFAATAIzMewPsAAQABAAAABQAEwCpdHsB7AAEAAQAAAAUABMA2cB7A2wABAAEAAAAFAATAK6wewOsAAQABAAAABQAEwDBPHsDLAAEAAQAAAAUABMA0sh7BGwABAAEAAAAFAATAKaIewSsAAQABAAAABQAEwDdTHg=="},"ip":{"version":4,"ttl":128,"id":"b40d"},"src_ip":"192.168.113.2","dst_ip":"192.168.113.237","protocol":17,"src_port":53,"dst_port":35986,"event_start":1565200503.589672} +{"dns":{"base64":"UpuBgAABAAAAAQAAEmNvbm5lY3Rpdml0eS1jaGVjawZ1YnVudHUDY29tAAAcAAHAHwAGAAEAAAAFADEDbnMxCWNhbm9uaWNhbMAmCmhvc3RtYXN0ZXLAP3hJBp0AACowAAAOEAAJOoAAAA4Q"},"ip":{"version":4,"ttl":128,"id":"b40e"},"src_ip":"192.168.113.2","dst_ip":"192.168.113.237","protocol":17,"src_port":53,"dst_port":33455,"event_start":1565200503.619649} +{"fingerprints":{"tcp":"tcp/(40)()(40)(faf0)((020405b4)(04)(08)(01)(030307))"},"tcp":{"seq":3601944730,"timestamp":{"ts_val":995898471}},"ip":{"version":4,"ttl":64,"id":"2885"},"src_ip":"192.168.113.237","dst_ip":"35.224.99.156","protocol":6,"src_port":53560,"dst_port":80,"event_start":1565200503.621385} +{"fingerprints":{"tcp_server":"tcp_server/(40)()(80)(faf0)((020405b4))"},"tcp_server":{"seq":2578226004},"ip":{"version":4,"ttl":128,"id":"b40f"},"src_ip":"35.224.99.156","dst_ip":"192.168.113.237","protocol":6,"src_port":80,"dst_port":53560,"event_start":1565200503.657862} +{"fingerprints":{"http":"http/(474554)(485454502f312e31)((486f7374)(4163636570743a202a2f2a)(436f6e6e656374696f6e3a20636c6f7365))"},"http":{"request":{"method":"GET","uri":"/","protocol":"HTTP/1.1","host":"connectivity-check.ubuntu.com","headers":[{"name":"Host","value":"connectivity-check.ubuntu.com","delimiter":"\u000d\u000a"},{"name":"Accept","value":"*/*","delimiter":"\u000d\u000a"},{"name":"Connection","value":"close","delimiter":"\u000d\u000a"}]}},"ip":{"version":4,"ttl":64,"id":"2887"},"src_ip":"192.168.113.237","dst_ip":"35.224.99.156","protocol":6,"src_port":53560,"dst_port":80,"event_start":1565200503.658237} +{"fingerprints":{"http_server":"http_server/(485454502f312e31)(323034)(4e6f20436f6e74656e74)((44617465)(5365727665723a204170616368652f322e342e313820285562756e747529)(436f6e6e656374696f6e3a20636c6f7365))"},"http":{"response":{"version":"HTTP/1.1","status_code":"204","status_reason":"No Content","server":"Apache/2.4.18 (Ubuntu)","via":"1.1 rtp10-dmz-wsa-3.cisco.com:80 (Cisco-WSA/X)","headers":[{"name":"Date","value":"Wed, 07 Aug 2019 17:55:03 GMT","delimiter":"\u000d\u000a"},{"name":"Server","value":"Apache/2.4.18 (Ubuntu)","delimiter":"\u000d\u000a"},{"name":"X-NetworkManager-Status","value":"online","delimiter":"\u000d\u000a"},{"name":"Keep-Alive","value":"timeout=5, max=100","delimiter":"\u000d\u000a"},{"name":"Via","value":"1.1 rtp10-dmz-wsa-3.cisco.com:80 (Cisco-WSA/X)","delimiter":"\u000d\u000a"},{"name":"Connection","value":"close","delimiter":"\u000d\u000a"}]}},"ip":{"version":4,"ttl":128,"id":"b411"},"src_ip":"35.224.99.156","dst_ip":"192.168.113.237","protocol":6,"src_port":80,"dst_port":53560,"event_start":1565200503.759359} +{"fingerprints":{"http":"http/(474554)(485454502f312e31)()"},"http":{"request":{"method":"GET","uri":"/connecttest.txt","protocol":"HTTP/1.1"}},"ip":{"version":6,"ttl":128,"id":"0f026"},"src_ip":"2001:420:c0c4:1004::4be","dst_ip":"2600:1408:5400:1c::173d:b40","protocol":6,"src_port":59852,"dst_port":80,"event_start":1576249528.552293} diff --git a/test/mercury-json-validity-check.sh b/test/mercury-json-validity-check.sh index 6ae715f9..2bb7ea66 100755 --- a/test/mercury-json-validity-check.sh +++ b/test/mercury-json-validity-check.sh @@ -37,7 +37,7 @@ for (( length=1; length <= "${#option_array[@]}"; ++length )); do done # test with all permutations of options, with --analysis and --resources -extra_options="--analysis --resources=../resources/resources.tgz" +extra_options="--analysis --resources=data/resources-test.tgz" for (( length=1; length <= "${#option_array[@]}"; ++length )); do for (( start=0; start + length <= "${#option_array[@]}"; ++start )); do options="${option_array[@]:start:length}" diff --git a/unit_tests/functional_unit_test.cc b/unit_tests/functional_unit_test.cc index 000e9f15..3df460dd 100644 --- a/unit_tests/functional_unit_test.cc +++ b/unit_tests/functional_unit_test.cc @@ -12,6 +12,7 @@ #include "tofsee.hpp" #include "utf8.hpp" #include "tsc_clock.hpp" +#include "json_string.hpp" /* * The unit_test() functions defined in header files @@ -25,5 +26,7 @@ TEST_CASE("Testing unit_test() defined in class") { CHECK(tofsee_initial_message::unit_test() == true); CHECK(tls_extensions::unit_test() == true); CHECK(utf8_string::unit_test() == true); + CHECK(utf8_safe_string_unit_test() == true); CHECK(tsc_clock::unit_test() == true); + CHECK(json_string::unit_test() == true); } diff --git a/unit_tests/libmerc_dbmultiprotocol_test.cc b/unit_tests/libmerc_dbmultiprotocol_test.cc index 419ebd3a..1adb9c14 100644 --- a/unit_tests/libmerc_dbmultiprotocol_test.cc +++ b/unit_tests/libmerc_dbmultiprotocol_test.cc @@ -514,12 +514,12 @@ TEST_CASE_METHOD(LibmercTestFixture, "test attributes with resources-mp") }; std::vector> test_set_up{ - {test_config{ - .m_lc{.do_analysis = true, .resources = resources_mp_path, - .packet_filter_cfg = (char *)"all"}, - .m_pc{"surfshark.pcap"}}, - 3 // encrypted_dns, evasive_vpn, external_proxy as attributes - }, + // {test_config{ + // .m_lc{.do_analysis = true, .resources = resources_mp_path, + // .packet_filter_cfg = (char *)"all"}, + // .m_pc{"surfshark.pcap"}}, + // 3 // encrypted_dns, evasive_vpn, external_proxy as attributes + // }, {test_config{ .m_lc{.do_analysis = true, .resources = resources_mp_path, .packet_filter_cfg = (char *)"all"}, diff --git a/unit_tests/libmerc_driver_helper.cc b/unit_tests/libmerc_driver_helper.cc index 80af70a6..e94d6430 100644 --- a/unit_tests/libmerc_driver_helper.cc +++ b/unit_tests/libmerc_driver_helper.cc @@ -167,8 +167,8 @@ unsigned char unlabeled_data[] = { int verbosity = 0; -char default_resources_path[] = "../resources/resources.tgz"; -char resources_lite_path[] = "../resources/resources_lite.tgz"; +char default_resources_path[] = "../test/data/resources-test.tgz"; +char resources_lite_path[] = "../test/data/resources-test.tgz"; char resources_mp_path[] = "./xtra/resources/resources-mp.tgz"; const char * path_to_libmerc_library = LIBMERC_SO_PATH; diff --git a/unit_tests/pdu_verifier.cc b/unit_tests/pdu_verifier.cc index 0b31fb8e..e368a039 100644 --- a/unit_tests/pdu_verifier.cc +++ b/unit_tests/pdu_verifier.cc @@ -111,7 +111,7 @@ int main(int argc, char** argv) config.report_os = false; config.output_tcp_initial_data = false; config.output_udp_initial_data = false; - config.resources = (char *)"../resources/resources.tgz"; + config.resources = (char *)"../test/data/resources-test.tgz"; config.packet_filter_cfg = _filter; auto context = mercury_init(&config, 0);